diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml new file mode 100644 index 0000000..c2020e9 --- /dev/null +++ b/.github/workflows/publish.yml @@ -0,0 +1,103 @@ +name: Release + +on: + workflow_run: + workflows: ["CI"] + branches: + - master + types: + - completed + +jobs: + release: + runs-on: ubuntu-latest + steps: + - name: Checkout code + uses: actions/checkout@v3 + with: + fetch-depth: 0 + + - name: Get previous commit SHA + id: get_previous_commit + run: | + LATEST_TAG=$(git describe --tags --abbrev=0) + if [[ -z "$LATEST_TAG" ]]; then + echo "No tag found. Failing..." + exit 1 + fi + echo "latest_tag=${LATEST_TAG#v}" >> "$GITHUB_ENV" # Remove 'v' prefix from the tag + + - name: Check if version changed and is greater than the previous + id: version_check + run: | + # Compare the current version with the version from the previous commit + PREVIOUS_NPM_VERSION=${{ env.latest_tag }} + CURRENT_NPM_VERSION=$(jq -r '.version' package.json) + CURRENT_CARGO_VERSION=$(awk -F '"' '/^version/ {print $2}' Cargo.toml) + if [[ "$CURRENT_NPM_VERSION" != "$CURRENT_CARGO_VERSION" ]]; then # Cargo.toml and package.json versions must match + echo "Mismatch: NPM version ($CURRENT_NPM_VERSION) and Cargo.toml version ($CURRENT_CARGO_VERSION)" + echo "version_changed=false" >> "$GITHUB_ENV" + else + if [[ "$PREVIOUS_NPM_VERSION" == "$CURRENT_NPM_VERSION" ]]; then + echo "version_changed=" >> "$GITHUB_ENV" + else + IFS='.' read -ra PREVIOUS_VERSION_PARTS <<< "$PREVIOUS_NPM_VERSION" + IFS='.' read -ra CURRENT_VERSION_PARTS <<< "$CURRENT_NPM_VERSION" + VERSION_CHANGED=false + for i in "${!PREVIOUS_VERSION_PARTS[@]}"; do + if [[ ${CURRENT_VERSION_PARTS[i]} -gt ${PREVIOUS_VERSION_PARTS[i]} ]]; then + VERSION_CHANGED=true + break + elif [[ ${CURRENT_VERSION_PARTS[i]} -lt ${PREVIOUS_VERSION_PARTS[i]} ]]; then + break + fi + done + + echo "version_changed=$VERSION_CHANGED" >> "$GITHUB_ENV" + echo "current_version=${CURRENT_NPM_VERSION}" >> "$GITHUB_ENV" + fi + fi + + - name: Display result + run: | + echo "Version bump detected: ${{ env.version_changed }}" + + - name: Fail if version is lower + if: env.version_changed == 'false' + run: exit 1 + + - name: Setup Node + if: env.version_changed == 'true' + uses: actions/setup-node@v3 + with: + node-version: 18 + registry-url: "https://registry.npmjs.org" + - name: Publish to NPM + if: env.version_changed == 'true' + env: + NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}} + run: npm publish + + - name: Setup Rust + if: env.version_changed == 'true' + uses: actions-rs/toolchain@v1 + with: + profile: minimal + toolchain: stable + override: true + - name: Publish to Crates.io + if: env.version_changed == 'true' + uses: katyo/publish-crates@v2 + with: + registry-token: ${{ secrets.CARGO_REGISTRY_TOKEN }} + + - name: Tag versions + if: env.version_changed == 'true' + run: | + git checkout master + git config user.name github-actions[bot] + git config user.email github-actions[bot]@users.noreply.github.com + git tag -d "v${{ env.current_version }}" || true + git push origin --delete "v${{ env.current_version }}" || true + git tag -a "v${{ env.current_version }}" -m "Version ${{ env.current_version }}" + git push origin "v${{ env.current_version }}" diff --git a/.github/workflows/publish_crate.yml b/.github/workflows/publish_crate.yml deleted file mode 100644 index cec684b..0000000 --- a/.github/workflows/publish_crate.yml +++ /dev/null @@ -1,33 +0,0 @@ -name: Publish on crates.io - -on: - push: - tags: - - v* - -env: - CARGO_TERM_COLOR: always - CARGO_INCREMENTAL: 0 - -jobs: - publish: - - runs-on: ubuntu-latest - - steps: - - name: Checkout repository - uses: actions/checkout@v3 - - - name: Install Rust stable - run: | - rustup toolchain install stable --profile minimal --no-self-update - - - name: Verify publish crate - uses: katyo/publish-crates@v1 - with: - dry-run: true - - - name: Publish crate - uses: katyo/publish-crates@v1 - with: - registry-token: ${{ secrets.CARGO_REGISTRY_TOKEN }} diff --git a/grammar.js b/grammar.js index e5dade8..acfd264 100644 --- a/grammar.js +++ b/grammar.js @@ -44,6 +44,7 @@ module.exports = grammar(C, { conflicts: ($, original) => original.concat([ [$.template_function, $.template_type], [$.template_function, $.template_type, $._expression], + [$.template_function, $.template_type, $._expression_not_binary], [$.template_function, $.template_type, $.qualified_identifier], [$.template_method, $.field_expression], [$.template_type, $.qualified_type_identifier], @@ -51,8 +52,11 @@ module.exports = grammar(C, { [$.dependent_type_identifier, $.dependent_identifier], [$.comma_expression, $.initializer_list], [$._expression, $._declarator], + [$._expression_not_binary, $._declarator], [$._expression, $.structured_binding_declarator], + [$._expression_not_binary, $.structured_binding_declarator], [$._expression, $._declarator, $._type_specifier], + [$._expression_not_binary, $._declarator, $._type_specifier], [$.parameter_list, $.argument_list], [$._type_specifier, $.call_expression], [$._declaration_specifiers, $._constructor_specifiers], @@ -62,6 +66,7 @@ module.exports = grammar(C, { [$._binary_fold_operator, $._fold_operator], [$.expression_statement, $.for_statement], [$.init_statement, $.for_statement], + [$._typedef_type_specifier, $.sized_type_specifier], ]), inline: ($, original) => original.concat([ @@ -84,6 +89,21 @@ module.exports = grammar(C, { alias($.operator_cast_declaration, $.declaration), ), + _block_item: ($, original) => choice( + original, + $.namespace_definition, + $.concept_definition, + $.namespace_alias_definition, + $.using_declaration, + $.alias_declaration, + $.static_assert_declaration, + $.template_declaration, + $.template_instantiation, + alias($.constructor_or_destructor_definition, $.function_definition), + alias($.operator_cast_definition, $.function_definition), + alias($.operator_cast_declaration, $.declaration), + ), + // Types placeholder_type_specifier: $ => prec(1, seq( @@ -125,7 +145,6 @@ module.exports = grammar(C, { type_qualifier: (_, original) => choice( original, 'mutable', - 'constexpr', 'constinit', 'consteval', ), @@ -249,6 +268,25 @@ module.exports = grammar(C, { // Declarations + _typedef_type_specifier: $ => choice( + $.macro_type_specifier, + alias($._typedef_sized_type_specifier, $.sized_type_specifier), + $.struct_specifier, + $.union_specifier, + $.enum_specifier, + $.class_specifier, + $.sized_type_specifier, + $.primitive_type, + $.template_type, + $.dependent_type, + $.placeholder_type_specifier, + $.decltype, + prec.right(choice( + alias($.qualified_type_identifier, $.qualified_identifier), + $._type_identifier, + )), + ), + template_declaration: $ => seq( 'template', field('parameters', $.template_parameter_list), @@ -694,6 +732,15 @@ module.exports = grammar(C, { // Statements + _top_level_statement: ($, original) => choice( + original, + $.co_return_statement, + $.co_yield_statement, + $.for_range_loop, + $.try_statement, + $.throw_statement, + ), + _non_case_statement: ($, original) => choice( original, $.co_return_statement, @@ -810,7 +857,7 @@ module.exports = grammar(C, { // Expressions - _expression: ($, original) => choice( + _expression_not_binary: ($, original) => choice( original, $.co_await_expression, $.requires_expression, @@ -821,7 +868,6 @@ module.exports = grammar(C, { $.delete_expression, $.lambda_expression, $.parameter_pack_expansion, - $.nullptr, $.this, $.raw_string_literal, $.user_defined_literal, @@ -1191,7 +1237,6 @@ module.exports = grammar(C, { )), this: _ => 'this', - nullptr: _ => 'nullptr', concatenated_string: $ => seq( choice($.raw_string_literal, $.string_literal), diff --git a/package.json b/package.json index 85f1579..1e6cae2 100644 --- a/package.json +++ b/package.json @@ -19,8 +19,8 @@ "devDependencies": { "eslint": "^8.43.0", "eslint-config-google": "^0.14.0", - "tree-sitter-c": "^0.20.2", - "tree-sitter-cli": "^0.20.0" + "tree-sitter-c": "^0.20.3", + "tree-sitter-cli": "^0.20.8" }, "scripts": { "build": "tree-sitter generate && node-gyp build", diff --git a/queries/highlights.scm b/queries/highlights.scm index a508d36..4d1f1c0 100644 --- a/queries/highlights.scm +++ b/queries/highlights.scm @@ -34,7 +34,7 @@ ; Constants (this) @variable.builtin -(nullptr) @constant +(null "nullptr" @constant) ; Keywords diff --git a/src/grammar.json b/src/grammar.json index c9a723c..4ab45de 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -10,6 +10,127 @@ } }, "_top_level_item": { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "function_definition" + }, + { + "type": "SYMBOL", + "name": "linkage_specification" + }, + { + "type": "SYMBOL", + "name": "declaration" + }, + { + "type": "SYMBOL", + "name": "_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": "namespace_definition" + }, + { + "type": "SYMBOL", + "name": "concept_definition" + }, + { + "type": "SYMBOL", + "name": "namespace_alias_definition" + }, + { + "type": "SYMBOL", + "name": "using_declaration" + }, + { + "type": "SYMBOL", + "name": "alias_declaration" + }, + { + "type": "SYMBOL", + "name": "static_assert_declaration" + }, + { + "type": "SYMBOL", + "name": "template_declaration" + }, + { + "type": "SYMBOL", + "name": "template_instantiation" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "constructor_or_destructor_definition" + }, + "named": true, + "value": "function_definition" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "operator_cast_definition" + }, + "named": true, + "value": "function_definition" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "operator_cast_declaration" + }, + "named": true, + "value": "declaration" + } + ] + }, + "_block_item": { "type": "CHOICE", "members": [ { @@ -398,7 +519,7 @@ "type": "REPEAT", "content": { "type": "SYMBOL", - "name": "_top_level_item" + "name": "_block_item" } }, { @@ -475,7 +596,7 @@ "type": "REPEAT", "content": { "type": "SYMBOL", - "name": "_top_level_item" + "name": "_block_item" } }, { @@ -488,12 +609,21 @@ "type": "CHOICE", "members": [ { - "type": "SYMBOL", - "name": "preproc_else" + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "preproc_else" + }, + { + "type": "SYMBOL", + "name": "preproc_elif" + } + ] }, { "type": "SYMBOL", - "name": "preproc_elif" + "name": "preproc_elifdef" } ] }, @@ -530,7 +660,7 @@ "type": "REPEAT", "content": { "type": "SYMBOL", - "name": "_top_level_item" + "name": "_block_item" } } ] @@ -563,7 +693,75 @@ "type": "REPEAT", "content": { "type": "SYMBOL", - "name": "_top_level_item" + "name": "_block_item" + } + }, + { + "type": "FIELD", + "name": "alternative", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "preproc_else" + }, + { + "type": "SYMBOL", + "name": "preproc_elif" + } + ] + }, + { + "type": "BLANK" + } + ] + } + } + ] + }, + "preproc_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": "SYMBOL", + "name": "_block_item" } }, { @@ -721,22 +919,31 @@ "type": "CHOICE", "members": [ { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "preproc_else_in_field_declaration_list" - }, - "named": true, - "value": "preproc_else" + "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_elif_in_field_declaration_list" - }, - "named": true, - "value": "preproc_elif" + "type": "SYMBOL", + "name": "preproc_elifdef" } ] }, @@ -846,40 +1053,115 @@ } ] }, - "preproc_directive": { - "type": "PATTERN", - "value": "#[ \\t]*[a-zA-Z]\\w*" - }, - "preproc_arg": { - "type": "TOKEN", - "content": { - "type": "PREC", - "value": -1, - "content": { - "type": "REPEAT1", - "content": { - "type": "PATTERN", - "value": ".|\\\\\\r?\\n" - } - } - } - }, - "_preproc_expression": { - "type": "CHOICE", + "preproc_elifdef_in_field_declaration_list": { + "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "identifier" - }, - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "preproc_call_expression" - }, - "named": true, - "value": "call_expression" - }, + "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": "BLANK" + } + ] + } + } + ] + }, + "preproc_arg": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": -1, + "content": { + "type": "PATTERN", + "value": "\\S(.|\\\\\\r?\\n)*" + } + } + }, + "preproc_directive": { + "type": "PATTERN", + "value": "#[ \\t]*[a-zA-Z0-9]\\w*" + }, + "_preproc_expression": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "preproc_call_expression" + }, + "named": true, + "value": "call_expression" + }, { "type": "SYMBOL", "name": "number_literal" @@ -943,7 +1225,7 @@ "members": [ { "type": "PREC", - "value": 14, + "value": 15, "content": { "type": "SEQ", "members": [ @@ -983,7 +1265,7 @@ }, "preproc_unary_expression": { "type": "PREC_LEFT", - "value": 13, + "value": 14, "content": { "type": "SEQ", "members": [ @@ -1025,7 +1307,7 @@ }, "preproc_call_expression": { "type": "PREC", - "value": 14, + "value": 15, "content": { "type": "SEQ", "members": [ @@ -1104,7 +1386,7 @@ "members": [ { "type": "PREC_LEFT", - "value": 10, + "value": 11, "content": { "type": "SEQ", "members": [ @@ -1137,7 +1419,7 @@ }, { "type": "PREC_LEFT", - "value": 10, + "value": 11, "content": { "type": "SEQ", "members": [ @@ -1170,7 +1452,7 @@ }, { "type": "PREC_LEFT", - "value": 11, + "value": 12, "content": { "type": "SEQ", "members": [ @@ -1203,7 +1485,7 @@ }, { "type": "PREC_LEFT", - "value": 11, + "value": 12, "content": { "type": "SEQ", "members": [ @@ -1236,7 +1518,7 @@ }, { "type": "PREC_LEFT", - "value": 11, + "value": 12, "content": { "type": "SEQ", "members": [ @@ -1632,7 +1914,7 @@ }, { "type": "PREC_LEFT", - "value": 9, + "value": 10, "content": { "type": "SEQ", "members": [ @@ -1665,7 +1947,7 @@ }, { "type": "PREC_LEFT", - "value": 9, + "value": 10, "content": { "type": "SEQ", "members": [ @@ -1827,7 +2109,14 @@ "name": "type", "content": { "type": "SYMBOL", - "name": "_type_specifier" + "name": "_typedef_type_specifier" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "type_qualifier" } }, { @@ -1904,31 +2193,35 @@ ] }, "_declaration_specifiers": { - "type": "SEQ", - "members": [ - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "_declaration_modifiers" - } - }, - { - "type": "FIELD", - "name": "type", - "content": { - "type": "SYMBOL", - "name": "_type_specifier" - } - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "_declaration_modifiers" + "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", @@ -2197,7 +2490,7 @@ "type": "REPEAT", "content": { "type": "SYMBOL", - "name": "_top_level_item" + "name": "_block_item" } }, { @@ -3172,7 +3465,7 @@ "type": "REPEAT", "content": { "type": "SYMBOL", - "name": "_top_level_item" + "name": "_block_item" } }, { @@ -3201,6 +3494,10 @@ "type": "STRING", "value": "inline" }, + { + "type": "STRING", + "value": "thread_local" + }, { "type": "STRING", "value": "thread_local" @@ -3217,6 +3514,10 @@ "type": "STRING", "value": "const" }, + { + "type": "STRING", + "value": "constexpr" + }, { "type": "STRING", "value": "volatile" @@ -3225,9 +3526,21 @@ "type": "STRING", "value": "restrict" }, + { + "type": "STRING", + "value": "__restrict__" + }, { "type": "STRING", "value": "_Atomic" + }, + { + "type": "STRING", + "value": "_Noreturn" + }, + { + "type": "STRING", + "value": "noreturn" } ] }, @@ -3235,10 +3548,6 @@ "type": "STRING", "value": "mutable" }, - { - "type": "STRING", - "value": "constexpr" - }, { "type": "STRING", "value": "constinit" @@ -3249,9 +3558,22 @@ } ] }, - "_type_specifier": { + "_typedef_type_specifier": { "type": "CHOICE", "members": [ + { + "type": "SYMBOL", + "name": "macro_type_specifier" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_typedef_sized_type_specifier" + }, + "named": true, + "value": "sized_type_specifier" + }, { "type": "SYMBOL", "name": "struct_specifier" @@ -3316,21 +3638,112 @@ } ] }, - "sized_type_specifier": { - "type": "SEQ", + "_type_specifier": { + "type": "CHOICE", "members": [ { - "type": "REPEAT1", + "type": "SYMBOL", + "name": "struct_specifier" + }, + { + "type": "SYMBOL", + "name": "union_specifier" + }, + { + "type": "SYMBOL", + "name": "enum_specifier" + }, + { + "type": "SYMBOL", + "name": "class_specifier" + }, + { + "type": "SYMBOL", + "name": "sized_type_specifier" + }, + { + "type": "SYMBOL", + "name": "primitive_type" + }, + { + "type": "SYMBOL", + "name": "template_type" + }, + { + "type": "SYMBOL", + "name": "dependent_type" + }, + { + "type": "SYMBOL", + "name": "placeholder_type_specifier" + }, + { + "type": "SYMBOL", + "name": "decltype" + }, + { + "type": "PREC_RIGHT", + "value": 0, "content": { "type": "CHOICE", "members": [ { - "type": "STRING", - "value": "signed" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "qualified_type_identifier" + }, + "named": true, + "value": "qualified_identifier" }, { - "type": "STRING", - "value": "unsigned" + "type": "SYMBOL", + "name": "_type_identifier" + } + ] + } + } + ] + }, + "_typedef_sized_type_specifier": { + "type": "REPEAT1", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "signed" + }, + { + "type": "STRING", + "value": "unsigned" + }, + { + "type": "STRING", + "value": "long" + }, + { + "type": "STRING", + "value": "short" + } + ] + } + }, + "sized_type_specifier": { + "type": "SEQ", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "signed" + }, + { + "type": "STRING", + "value": "unsigned" }, { "type": "STRING", @@ -3411,6 +3824,10 @@ "type": "STRING", "value": "ssize_t" }, + { + "type": "STRING", + "value": "ptrdiff_t" + }, { "type": "STRING", "value": "intptr_t" @@ -3423,6 +3840,14 @@ "type": "STRING", "value": "charptr_t" }, + { + "type": "STRING", + "value": "nullptr_t" + }, + { + "type": "STRING", + "value": "max_align_t" + }, { "type": "STRING", "value": "int8_t" @@ -4182,6 +4607,97 @@ } ] }, + "_top_level_statement": { + "type": "CHOICE", + "members": [ + { + "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" + } + ] + }, + { + "type": "SYMBOL", + "name": "co_return_statement" + }, + { + "type": "SYMBOL", + "name": "co_yield_statement" + }, + { + "type": "SYMBOL", + "name": "for_range_loop" + }, + { + "type": "SYMBOL", + "name": "try_statement" + }, + { + "type": "SYMBOL", + "name": "throw_statement" + } + ] + }, "labeled_statement": { "type": "SEQ", "members": [ @@ -4203,6 +4719,19 @@ } ] }, + "_top_level_expression_statement": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_expression_not_binary" + }, + { + "type": "STRING", + "value": ";" + } + ] + }, "expression_statement": { "type": "SEQ", "members": [ @@ -4299,6 +4828,19 @@ ] } }, + "else_clause": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "else" + }, + { + "type": "SYMBOL", + "name": "_statement" + } + ] + }, "switch_statement": { "type": "SEQ", "members": [ @@ -4676,6 +5218,19 @@ ] }, "_expression": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_expression_not_binary" + }, + { + "type": "SYMBOL", + "name": "binary_expression" + } + ] + }, + "_expression_not_binary": { "type": "CHOICE", "members": [ { @@ -4689,10 +5244,6 @@ "type": "SYMBOL", "name": "assignment_expression" }, - { - "type": "SYMBOL", - "name": "binary_expression" - }, { "type": "SYMBOL", "name": "unary_expression" @@ -4713,6 +5264,14 @@ "type": "SYMBOL", "name": "sizeof_expression" }, + { + "type": "SYMBOL", + "name": "offsetof_expression" + }, + { + "type": "SYMBOL", + "name": "generic_expression" + }, { "type": "SYMBOL", "name": "subscript_expression" @@ -4764,6 +5323,10 @@ { "type": "SYMBOL", "name": "parenthesized_expression" + }, + { + "type": "SYMBOL", + "name": "gnu_asm_expression" } ] }, @@ -4803,10 +5366,6 @@ "type": "SYMBOL", "name": "parameter_pack_expansion" }, - { - "type": "SYMBOL", - "name": "nullptr" - }, { "type": "SYMBOL", "name": "this" @@ -4878,12 +5437,20 @@ "value": "?" }, { - "type": "FIELD", - "name": "consequence", - "content": { - "type": "SYMBOL", - "name": "_expression" - } + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "consequence", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + }, + { + "type": "BLANK" + } + ] }, { "type": "STRING", @@ -5069,7 +5636,7 @@ }, "pointer_expression": { "type": "PREC_LEFT", - "value": 12, + "value": 13, "content": { "type": "SEQ", "members": [ @@ -5106,7 +5673,7 @@ "members": [ { "type": "PREC_LEFT", - "value": 13, + "value": 14, "content": { "type": "SEQ", "members": [ @@ -5148,7 +5715,7 @@ }, { "type": "PREC_LEFT", - "value": 13, + "value": 14, "content": { "type": "SEQ", "members": [ @@ -5187,7 +5754,7 @@ "members": [ { "type": "PREC_LEFT", - "value": 10, + "value": 11, "content": { "type": "SEQ", "members": [ @@ -5220,7 +5787,7 @@ }, { "type": "PREC_LEFT", - "value": 10, + "value": 11, "content": { "type": "SEQ", "members": [ @@ -5253,7 +5820,7 @@ }, { "type": "PREC_LEFT", - "value": 11, + "value": 12, "content": { "type": "SEQ", "members": [ @@ -5286,7 +5853,7 @@ }, { "type": "PREC_LEFT", - "value": 11, + "value": 12, "content": { "type": "SEQ", "members": [ @@ -5319,7 +5886,7 @@ }, { "type": "PREC_LEFT", - "value": 11, + "value": 12, "content": { "type": "SEQ", "members": [ @@ -5715,7 +6282,7 @@ }, { "type": "PREC_LEFT", - "value": 9, + "value": 10, "content": { "type": "SEQ", "members": [ @@ -5748,7 +6315,7 @@ }, { "type": "PREC_LEFT", - "value": 9, + "value": 10, "content": { "type": "SEQ", "members": [ @@ -6014,7 +6581,7 @@ }, "update_expression": { "type": "PREC_RIGHT", - "value": 13, + "value": 14, "content": { "type": "CHOICE", "members": [ @@ -6083,7 +6650,7 @@ }, "cast_expression": { "type": "PREC", - "value": 12, + "value": 13, "content": { "type": "SEQ", "members": [ @@ -6246,94 +6813,686 @@ ] } }, - "subscript_expression": { + "offsetof_expression": { "type": "PREC", - "value": 16, + "value": 9, "content": { "type": "SEQ", "members": [ { - "type": "FIELD", - "name": "argument", - "content": { - "type": "SYMBOL", - "name": "_expression" + "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": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_expression" + }, + { + "type": "SYMBOL", + "name": "initializer_list" + } + ] + } + }, + { + "type": "STRING", + "value": "]" + } + ] + } + }, + "call_expression": { + "type": "CHOICE", + "members": [ + { + "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" + } + } + ] + } + }, + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "function", + "content": { + "type": "SYMBOL", + "name": "primitive_type" + } + }, + { + "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": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "gnu_asm_qualifier" + } + }, + { + "type": "STRING", + "value": "(" + }, + { + "type": "FIELD", + "name": "assembly_code", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "string_literal" + }, + { + "type": "SYMBOL", + "name": "concatenated_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": "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": "identifier" + } + }, + { + "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" } - }, - { - "type": "STRING", - "value": "[" - }, - { - "type": "FIELD", - "name": "index", - "content": { - "type": "CHOICE", + ] + } + ] + }, + "gnu_asm_input_operand": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "_expression" + "type": "STRING", + "value": "[" }, { - "type": "SYMBOL", - "name": "initializer_list" + "type": "FIELD", + "name": "symbol", + "content": { + "type": "SYMBOL", + "name": "identifier" + } + }, + { + "type": "STRING", + "value": "]" } ] + }, + { + "type": "BLANK" } - }, - { - "type": "STRING", - "value": "]" + ] + }, + { + "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": ")" + } + ] }, - "call_expression": { - "type": "CHOICE", + "gnu_asm_clobber_list": { + "type": "SEQ", "members": [ { - "type": "PREC", - "value": 14, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "function", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - }, - { - "type": "FIELD", - "name": "arguments", - "content": { - "type": "SYMBOL", - "name": "argument_list" + "type": "STRING", + "value": ":" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "register", + "content": { + "type": "SYMBOL", + "name": "string_literal" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "FIELD", + "name": "register", + "content": { + "type": "SYMBOL", + "name": "string_literal" + } + } + ] + } } - } - ] - } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + }, + "gnu_asm_goto_list": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": ":" }, { - "type": "SEQ", + "type": "CHOICE", "members": [ { - "type": "FIELD", - "name": "function", - "content": { - "type": "SYMBOL", - "name": "primitive_type" - } + "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": "FIELD", - "name": "arguments", - "content": { - "type": "SYMBOL", - "name": "argument_list" - } + "type": "BLANK" } ] } @@ -6411,7 +7570,7 @@ "members": [ { "type": "PREC", - "value": 15, + "value": 16, "content": { "type": "SEQ", "members": [ @@ -6458,7 +7617,7 @@ "members": [ { "type": "PREC", - "value": 15, + "value": 16, "content": { "type": "SEQ", "members": [ @@ -7161,11 +8320,16 @@ "name": "escape_sequence" }, { - "type": "IMMEDIATE_TOKEN", + "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "[^\\n']" - } + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "PATTERN", + "value": "[^\\n']" + } + }, + "named": true, + "value": "character" } ] }, @@ -7243,15 +8407,20 @@ "type": "CHOICE", "members": [ { - "type": "IMMEDIATE_TOKEN", + "type": "ALIAS", "content": { - "type": "PREC", - "value": 1, + "type": "IMMEDIATE_TOKEN", "content": { - "type": "PATTERN", - "value": "[^\\\\\"\\n]+" + "type": "PREC", + "value": 1, + "content": { + "type": "PATTERN", + "value": "[^\\\\\"\\n]+" + } } - } + }, + "named": true, + "value": "string_content" }, { "type": "SYMBOL", @@ -7372,12 +8541,21 @@ } }, "null": { - "type": "STRING", - "value": "NULL" + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "NULL" + }, + { + "type": "STRING", + "value": "nullptr" + } + ] }, "identifier": { "type": "PATTERN", - "value": "[a-zA-Z_]\\w*" + "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})*" }, "_type_identifier": { "type": "ALIAS", @@ -7466,7 +8644,7 @@ }, { "type": "PATTERN", - "value": "(\\\\(.|\\r?\\n)|[^\\\\\\n])*" + "value": "(\\\\+(.|\\r?\\n)|[^\\\\\\n])*" } ] }, @@ -7743,7 +8921,7 @@ }, { "type": "PREC", - "value": 14, + "value": 15, "content": { "type": "SEQ", "members": [ @@ -10322,7 +11500,7 @@ }, "co_await_expression": { "type": "PREC_LEFT", - "value": 13, + "value": 14, "content": { "type": "SEQ", "members": [ @@ -10347,7 +11525,7 @@ }, "new_expression": { "type": "PREC_RIGHT", - "value": 15, + "value": 16, "content": { "type": "SEQ", "members": [ @@ -12720,10 +13898,6 @@ "type": "STRING", "value": "this" }, - "nullptr": { - "type": "STRING", - "value": "nullptr" - }, "literal_suffix": { "type": "IMMEDIATE_TOKEN", "content": { @@ -12806,6 +13980,19 @@ ], [ "_type_specifier", + "_expression_not_binary" + ], + [ + "_type_specifier", + "_expression_not_binary", + "macro_type_specifier" + ], + [ + "_type_specifier", + "macro_type_specifier" + ], + [ + "_typedef_type_specifier", "macro_type_specifier" ], [ @@ -12818,6 +14005,9 @@ "_declaration_modifiers", "attributed_statement" ], + [ + "enum_specifier" + ], [ "template_function", "template_type" @@ -12827,6 +14017,11 @@ "template_type", "_expression" ], + [ + "template_function", + "template_type", + "_expression_not_binary" + ], [ "template_function", "template_type", @@ -12856,15 +14051,28 @@ "_expression", "_declarator" ], + [ + "_expression_not_binary", + "_declarator" + ], [ "_expression", "structured_binding_declarator" ], + [ + "_expression_not_binary", + "structured_binding_declarator" + ], [ "_expression", "_declarator", "_type_specifier" ], + [ + "_expression_not_binary", + "_declarator", + "_type_specifier" + ], [ "parameter_list", "argument_list" @@ -12907,6 +14115,10 @@ [ "init_statement", "for_statement" + ], + [ + "_typedef_type_specifier", + "sized_type_specifier" ] ], "precedences": [], @@ -12922,7 +14134,9 @@ ], "inline": [ "_statement", + "_block_item", "_top_level_item", + "_top_level_statement", "_type_identifier", "_field_identifier", "_statement_identifier", diff --git a/src/node-types.json b/src/node-types.json index 7b5345d..9744ffd 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -135,6 +135,14 @@ "type": "fold_expression", "named": true }, + { + "type": "generic_expression", + "named": true + }, + { + "type": "gnu_asm_expression", + "named": true + }, { "type": "identifier", "named": true @@ -152,11 +160,11 @@ "named": true }, { - "type": "nullptr", + "type": "number_literal", "named": true }, { - "type": "number_literal", + "type": "offsetof_expression", "named": true }, { @@ -1318,8 +1326,12 @@ "fields": {}, "children": { "multiple": false, - "required": false, + "required": true, "types": [ + { + "type": "character", + "named": true + }, { "type": "escape_sequence", "named": true @@ -1722,7 +1734,7 @@ }, "consequence": { "multiple": false, - "required": true, + "required": false, "types": [ { "type": "_expression", @@ -3157,6 +3169,236 @@ ] } }, + { + "type": "generic_expression", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "_expression", + "named": true + }, + { + "type": "type_descriptor", + "named": true + } + ] + } + }, + { + "type": "gnu_asm_clobber_list", + "named": true, + "fields": { + "register": { + "multiple": true, + "required": false, + "types": [ + { + "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": "identifier", + "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, @@ -3467,6 +3709,32 @@ } } }, + { + "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": "ms_based_modifier", "named": true, @@ -3705,15 +3973,20 @@ } }, { - "type": "operator_cast", + "type": "null", + "named": true, + "fields": {} + }, + { + "type": "offsetof_expression", "named": true, "fields": { - "declarator": { + "member": { "multiple": false, "required": true, "types": [ { - "type": "_abstract_declarator", + "type": "field_identifier", "named": true } ] @@ -3723,12 +3996,38 @@ "required": true, "types": [ { - "type": "_type_specifier", + "type": "type_descriptor", "named": true } ] } - }, + } + }, + { + "type": "operator_cast", + "named": true, + "fields": { + "declarator": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_abstract_declarator", + "named": true + } + ] + }, + "type": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_type_specifier", + "named": true + } + ] + } + }, "children": { "multiple": true, "required": false, @@ -4341,6 +4640,122 @@ ] } }, + { + "type": "preproc_elifdef", + "named": true, + "fields": { + "alternative": { + "multiple": false, + "required": false, + "types": [ + { + "type": "preproc_elif", + "named": true + }, + { + "type": "preproc_else", + "named": true + } + ] + }, + "name": { + "multiple": false, + "required": true, + "types": [ + { + "type": "identifier", + "named": true + } + ] + } + }, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "_statement", + "named": true + }, + { + "type": "_type_specifier", + "named": true + }, + { + "type": "alias_declaration", + "named": true + }, + { + "type": "concept_definition", + "named": true + }, + { + "type": "declaration", + "named": true + }, + { + "type": "function_definition", + "named": true + }, + { + "type": "linkage_specification", + "named": true + }, + { + "type": "namespace_alias_definition", + "named": true + }, + { + "type": "namespace_definition", + "named": true + }, + { + "type": "preproc_call", + "named": true + }, + { + "type": "preproc_def", + "named": true + }, + { + "type": "preproc_function_def", + "named": true + }, + { + "type": "preproc_if", + "named": true + }, + { + "type": "preproc_ifdef", + "named": true + }, + { + "type": "preproc_include", + "named": true + }, + { + "type": "static_assert_declaration", + "named": true + }, + { + "type": "template_declaration", + "named": true + }, + { + "type": "template_instantiation", + "named": true + }, + { + "type": "type_definition", + "named": true + }, + { + "type": "using_declaration", + "named": true + } + ] + } + }, { "type": "preproc_else", "named": true, @@ -4648,6 +5063,10 @@ "type": "preproc_elif", "named": true }, + { + "type": "preproc_elifdef", + "named": true + }, { "type": "preproc_else", "named": true @@ -5170,6 +5589,10 @@ { "type": "escape_sequence", "named": true + }, + { + "type": "string_content", + "named": true } ] } @@ -5650,29 +6073,81 @@ "required": false, "types": [ { - "type": "_statement", + "type": "_type_specifier", "named": true }, { - "type": "_type_specifier", + "type": "alias_declaration", "named": true }, { - "type": "alias_declaration", + "type": "attributed_statement", + "named": true + }, + { + "type": "break_statement", + "named": true + }, + { + "type": "case_statement", + "named": true + }, + { + "type": "co_return_statement", + "named": true + }, + { + "type": "co_yield_statement", + "named": true + }, + { + "type": "compound_statement", "named": true }, { "type": "concept_definition", "named": true }, + { + "type": "continue_statement", + "named": true + }, { "type": "declaration", "named": true }, + { + "type": "do_statement", + "named": true + }, + { + "type": "expression_statement", + "named": true + }, + { + "type": "for_range_loop", + "named": true + }, + { + "type": "for_statement", + "named": true + }, { "type": "function_definition", "named": true }, + { + "type": "goto_statement", + "named": true + }, + { + "type": "if_statement", + "named": true + }, + { + "type": "labeled_statement", + "named": true + }, { "type": "linkage_specification", "named": true @@ -5709,10 +6184,18 @@ "type": "preproc_include", "named": true }, + { + "type": "return_statement", + "named": true + }, { "type": "static_assert_declaration", "named": true }, + { + "type": "switch_statement", + "named": true + }, { "type": "template_declaration", "named": true @@ -5721,6 +6204,14 @@ "type": "template_instantiation", "named": true }, + { + "type": "throw_statement", + "named": true + }, + { + "type": "try_statement", + "named": true + }, { "type": "type_definition", "named": true @@ -5728,6 +6219,10 @@ { "type": "using_declaration", "named": true + }, + { + "type": "while_statement", + "named": true } ] } @@ -5781,7 +6276,55 @@ "required": true, "types": [ { - "type": "_type_specifier", + "type": "class_specifier", + "named": true + }, + { + "type": "decltype", + "named": true + }, + { + "type": "dependent_type", + "named": true + }, + { + "type": "enum_specifier", + "named": true + }, + { + "type": "macro_type_specifier", + "named": true + }, + { + "type": "placeholder_type_specifier", + "named": true + }, + { + "type": "primitive_type", + "named": true + }, + { + "type": "qualified_identifier", + "named": true + }, + { + "type": "sized_type_specifier", + "named": true + }, + { + "type": "struct_specifier", + "named": true + }, + { + "type": "template_type", + "named": true + }, + { + "type": "type_identifier", + "named": true + }, + { + "type": "union_specifier", "named": true } ] @@ -6221,6 +6764,14 @@ "type": "#elif", "named": false }, + { + "type": "#elifdef", + "named": false + }, + { + "type": "#elifndef", + "named": false + }, { "type": "#else", "named": false @@ -6417,6 +6968,10 @@ "type": "LR\"", "named": false }, + { + "type": "NULL", + "named": false + }, { "type": "R\"", "named": false @@ -6465,6 +7020,18 @@ "type": "_Atomic", "named": false }, + { + "type": "_Generic", + "named": false + }, + { + "type": "_Noreturn", + "named": false + }, + { + "type": "__asm__", + "named": false + }, { "type": "__attribute__", "named": false @@ -6489,6 +7056,10 @@ "type": "__fastcall", "named": false }, + { + "type": "__restrict__", + "named": false + }, { "type": "__stdcall", "named": false @@ -6517,6 +7088,10 @@ "type": "and_eq", "named": false }, + { + "type": "asm", + "named": false + }, { "type": "auto", "named": true @@ -6541,6 +7116,10 @@ "type": "catch", "named": false }, + { + "type": "character", + "named": true + }, { "type": "class", "named": false @@ -6706,25 +7285,29 @@ "named": false }, { - "type": "not", + "type": "noreturn", "named": false }, { - "type": "not_eq", + "type": "not", "named": false }, { - "type": "null", - "named": true + "type": "not_eq", + "named": false }, { "type": "nullptr", - "named": true + "named": false }, { "type": "number_literal", "named": true }, + { + "type": "offsetof", + "named": false + }, { "type": "operator", "named": false @@ -6813,6 +7396,10 @@ "type": "static_assert", "named": false }, + { + "type": "string_content", + "named": true + }, { "type": "struct", "named": false diff --git a/src/parser.c b/src/parser.c index 9154e0f..dbcd991 100644 --- a/src/parser.c +++ b/src/parser.c @@ -14,15 +14,15 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 6631 -#define LARGE_STATE_COUNT 1859 -#define SYMBOL_COUNT 440 +#define STATE_COUNT 7728 +#define LARGE_STATE_COUNT 2221 +#define SYMBOL_COUNT 473 #define ALIAS_COUNT 5 -#define TOKEN_COUNT 188 +#define TOKEN_COUNT 197 #define EXTERNAL_TOKEN_COUNT 2 -#define FIELD_COUNT 38 +#define FIELD_COUNT 47 #define MAX_ALIAS_SEQUENCE_LENGTH 9 -#define PRODUCTION_ID_COUNT 179 +#define PRODUCTION_ID_COUNT 207 enum { sym_identifier = 1, @@ -39,436 +39,469 @@ enum { aux_sym_preproc_ifdef_token2 = 12, aux_sym_preproc_else_token1 = 13, aux_sym_preproc_elif_token1 = 14, - sym_preproc_directive = 15, - sym_preproc_arg = 16, - anon_sym_LPAREN2 = 17, - anon_sym_defined = 18, - anon_sym_BANG = 19, - anon_sym_TILDE = 20, - anon_sym_DASH = 21, - anon_sym_PLUS = 22, - anon_sym_STAR = 23, - anon_sym_SLASH = 24, - anon_sym_PERCENT = 25, - anon_sym_PIPE_PIPE = 26, - anon_sym_AMP_AMP = 27, - anon_sym_PIPE = 28, - anon_sym_CARET = 29, - anon_sym_AMP = 30, - anon_sym_EQ_EQ = 31, - anon_sym_BANG_EQ = 32, - anon_sym_GT = 33, - anon_sym_GT_EQ = 34, - anon_sym_LT_EQ = 35, - anon_sym_LT = 36, - anon_sym_LT_LT = 37, - anon_sym_GT_GT = 38, - anon_sym_SEMI = 39, - anon_sym_typedef = 40, - anon_sym_extern = 41, - anon_sym___attribute__ = 42, - anon_sym_COLON_COLON = 43, - anon_sym_LBRACK_LBRACK = 44, - anon_sym_RBRACK_RBRACK = 45, - anon_sym___declspec = 46, - anon_sym___based = 47, - anon_sym___cdecl = 48, - anon_sym___clrcall = 49, - anon_sym___stdcall = 50, - anon_sym___fastcall = 51, - anon_sym___thiscall = 52, - anon_sym___vectorcall = 53, - sym_ms_restrict_modifier = 54, - sym_ms_unsigned_ptr_modifier = 55, - sym_ms_signed_ptr_modifier = 56, - anon_sym__unaligned = 57, - anon_sym___unaligned = 58, - anon_sym_LBRACE = 59, - anon_sym_RBRACE = 60, - anon_sym_LBRACK = 61, - anon_sym_RBRACK = 62, - anon_sym_EQ = 63, - anon_sym_static = 64, - anon_sym_register = 65, - anon_sym_inline = 66, - anon_sym_thread_local = 67, - anon_sym_const = 68, - anon_sym_volatile = 69, - anon_sym_restrict = 70, - anon_sym__Atomic = 71, - anon_sym_mutable = 72, - anon_sym_constexpr = 73, - anon_sym_constinit = 74, - anon_sym_consteval = 75, - anon_sym_signed = 76, - anon_sym_unsigned = 77, - anon_sym_long = 78, - anon_sym_short = 79, - sym_primitive_type = 80, - anon_sym_enum = 81, - anon_sym_class = 82, - anon_sym_struct = 83, - anon_sym_union = 84, - anon_sym_COLON = 85, - anon_sym_if = 86, - anon_sym_else = 87, - anon_sym_switch = 88, - anon_sym_case = 89, - anon_sym_default = 90, - anon_sym_while = 91, - anon_sym_do = 92, - anon_sym_for = 93, - anon_sym_return = 94, - anon_sym_break = 95, - anon_sym_continue = 96, - anon_sym_goto = 97, - anon_sym_QMARK = 98, - anon_sym_STAR_EQ = 99, - anon_sym_SLASH_EQ = 100, - anon_sym_PERCENT_EQ = 101, - anon_sym_PLUS_EQ = 102, - anon_sym_DASH_EQ = 103, - anon_sym_LT_LT_EQ = 104, - anon_sym_GT_GT_EQ = 105, - anon_sym_AMP_EQ = 106, - anon_sym_CARET_EQ = 107, - anon_sym_PIPE_EQ = 108, - anon_sym_and_eq = 109, - anon_sym_or_eq = 110, - anon_sym_xor_eq = 111, - anon_sym_not = 112, - anon_sym_compl = 113, - anon_sym_LT_EQ_GT = 114, - anon_sym_or = 115, - anon_sym_and = 116, - anon_sym_bitor = 117, - anon_sym_xor = 118, - anon_sym_bitand = 119, - anon_sym_not_eq = 120, - anon_sym_DASH_DASH = 121, - anon_sym_PLUS_PLUS = 122, - anon_sym_sizeof = 123, - anon_sym_DOT = 124, - anon_sym_DASH_GT = 125, - sym_number_literal = 126, - anon_sym_L_SQUOTE = 127, - anon_sym_u_SQUOTE = 128, - anon_sym_U_SQUOTE = 129, - anon_sym_u8_SQUOTE = 130, - anon_sym_SQUOTE = 131, - aux_sym_char_literal_token1 = 132, - anon_sym_L_DQUOTE = 133, - anon_sym_u_DQUOTE = 134, - anon_sym_U_DQUOTE = 135, - anon_sym_u8_DQUOTE = 136, - anon_sym_DQUOTE = 137, - aux_sym_string_literal_token1 = 138, - sym_escape_sequence = 139, - sym_system_lib_string = 140, - sym_true = 141, - sym_false = 142, - sym_null = 143, - sym_comment = 144, - sym_auto = 145, - anon_sym_decltype = 146, - anon_sym_final = 147, - anon_sym_override = 148, - anon_sym_virtual = 149, - anon_sym_explicit = 150, - anon_sym_typename = 151, - anon_sym_template = 152, - anon_sym_GT2 = 153, - anon_sym_operator = 154, - anon_sym_try = 155, - anon_sym_delete = 156, - anon_sym_friend = 157, - anon_sym_public = 158, - anon_sym_private = 159, - anon_sym_protected = 160, - anon_sym_noexcept = 161, - anon_sym_throw = 162, - anon_sym_namespace = 163, - anon_sym_using = 164, - anon_sym_static_assert = 165, - anon_sym_concept = 166, - anon_sym_co_return = 167, - anon_sym_co_yield = 168, - anon_sym_catch = 169, - anon_sym_R_DQUOTE = 170, - anon_sym_LR_DQUOTE = 171, - anon_sym_uR_DQUOTE = 172, - anon_sym_UR_DQUOTE = 173, - anon_sym_u8R_DQUOTE = 174, - anon_sym_co_await = 175, - anon_sym_new = 176, - anon_sym_requires = 177, - anon_sym_DOT_STAR = 178, - anon_sym_DASH_GT_STAR = 179, - anon_sym_LPAREN_RPAREN = 180, - anon_sym_LBRACK_RBRACK = 181, - anon_sym_DQUOTE_DQUOTE = 182, - sym_this = 183, - sym_nullptr = 184, - sym_literal_suffix = 185, - sym_raw_string_delimiter = 186, - sym_raw_string_content = 187, - sym_translation_unit = 188, - sym_preproc_include = 189, - sym_preproc_def = 190, - sym_preproc_function_def = 191, - sym_preproc_params = 192, - sym_preproc_call = 193, - sym_preproc_if = 194, - sym_preproc_ifdef = 195, - sym_preproc_else = 196, - sym_preproc_elif = 197, - sym_preproc_if_in_field_declaration_list = 198, - sym_preproc_ifdef_in_field_declaration_list = 199, - sym_preproc_else_in_field_declaration_list = 200, - sym_preproc_elif_in_field_declaration_list = 201, - sym__preproc_expression = 202, - sym_preproc_parenthesized_expression = 203, - sym_preproc_defined = 204, - sym_preproc_unary_expression = 205, - sym_preproc_call_expression = 206, - sym_preproc_argument_list = 207, - sym_preproc_binary_expression = 208, - sym_function_definition = 209, - sym_declaration = 210, - sym_type_definition = 211, - sym__declaration_modifiers = 212, - sym__declaration_specifiers = 213, - sym_linkage_specification = 214, - sym_attribute_specifier = 215, - sym_attribute = 216, - sym_attribute_declaration = 217, - sym_ms_declspec_modifier = 218, - sym_ms_based_modifier = 219, - sym_ms_call_modifier = 220, - sym_ms_unaligned_ptr_modifier = 221, - sym_ms_pointer_modifier = 222, - sym_declaration_list = 223, - sym__declarator = 224, - sym__field_declarator = 225, - sym__type_declarator = 226, - sym__abstract_declarator = 227, - sym_parenthesized_declarator = 228, - sym_parenthesized_field_declarator = 229, - sym_parenthesized_type_declarator = 230, - sym_abstract_parenthesized_declarator = 231, - sym_attributed_declarator = 232, - sym_attributed_field_declarator = 233, - sym_attributed_type_declarator = 234, - sym_pointer_declarator = 235, - sym_pointer_field_declarator = 236, - sym_pointer_type_declarator = 237, - sym_abstract_pointer_declarator = 238, - sym_function_declarator = 239, - sym_function_field_declarator = 240, - sym_function_type_declarator = 241, - sym_abstract_function_declarator = 242, - sym_array_declarator = 243, - sym_array_field_declarator = 244, - sym_array_type_declarator = 245, - sym_abstract_array_declarator = 246, - sym_init_declarator = 247, - sym_compound_statement = 248, - sym_storage_class_specifier = 249, - sym_type_qualifier = 250, - sym__type_specifier = 251, - sym_sized_type_specifier = 252, - sym_enum_specifier = 253, - sym_enumerator_list = 254, - sym_struct_specifier = 255, - sym_union_specifier = 256, - sym_field_declaration_list = 257, - sym__field_declaration_list_item = 258, - sym_field_declaration = 259, - sym_bitfield_clause = 260, - sym_enumerator = 261, - sym_parameter_list = 262, - sym_parameter_declaration = 263, - sym_attributed_statement = 264, - sym_labeled_statement = 265, - sym_expression_statement = 266, - sym_if_statement = 267, - sym_switch_statement = 268, - sym_case_statement = 269, - sym_while_statement = 270, - sym_do_statement = 271, - sym_for_statement = 272, - sym_return_statement = 273, - sym_break_statement = 274, - sym_continue_statement = 275, - sym_goto_statement = 276, - sym__expression = 277, - sym_comma_expression = 278, - sym_conditional_expression = 279, - sym_assignment_expression = 280, - sym_pointer_expression = 281, - sym_unary_expression = 282, - sym_binary_expression = 283, - sym_update_expression = 284, - sym_cast_expression = 285, - sym_type_descriptor = 286, - sym_sizeof_expression = 287, - sym_subscript_expression = 288, - sym_call_expression = 289, - sym_argument_list = 290, - sym_field_expression = 291, - sym_compound_literal_expression = 292, - sym_parenthesized_expression = 293, - sym_initializer_list = 294, - sym_initializer_pair = 295, - sym_subscript_designator = 296, - sym_field_designator = 297, - sym_char_literal = 298, - sym_concatenated_string = 299, - sym_string_literal = 300, - sym__empty_declaration = 301, - sym_placeholder_type_specifier = 302, - sym_decltype_auto = 303, - sym_decltype = 304, - sym__class_declaration = 305, - sym_class_specifier = 306, - sym__class_name = 307, - sym_virtual_specifier = 308, - sym_virtual = 309, - sym_explicit_function_specifier = 310, - sym_base_class_clause = 311, - sym__enum_base_clause = 312, - sym_dependent_type = 313, - sym_template_declaration = 314, - sym_template_instantiation = 315, - sym_template_parameter_list = 316, - sym_type_parameter_declaration = 317, - sym_variadic_type_parameter_declaration = 318, - sym_optional_type_parameter_declaration = 319, - sym_template_template_parameter_declaration = 320, - sym_optional_parameter_declaration = 321, - sym_variadic_parameter_declaration = 322, - sym_variadic_declarator = 323, - sym_variadic_reference_declarator = 324, - sym_operator_cast = 325, - sym_field_initializer_list = 326, - sym_field_initializer = 327, - sym_inline_method_definition = 328, - sym__constructor_specifiers = 329, - sym_operator_cast_definition = 330, - sym_operator_cast_declaration = 331, - sym_constructor_try_statement = 332, - sym_constructor_or_destructor_definition = 333, - sym_constructor_or_destructor_declaration = 334, - sym_default_method_clause = 335, - sym_delete_method_clause = 336, - sym_friend_declaration = 337, - sym_access_specifier = 338, - sym_reference_declarator = 339, - sym_reference_field_declarator = 340, - sym_abstract_reference_declarator = 341, - sym_structured_binding_declarator = 342, - sym_ref_qualifier = 343, - sym__function_declarator_seq = 344, - sym_trailing_return_type = 345, - sym_noexcept = 346, - sym_throw_specifier = 347, - sym_template_type = 348, - sym_template_method = 349, - sym_template_function = 350, - sym_template_argument_list = 351, - sym_namespace_definition = 352, - sym_namespace_alias_definition = 353, - sym__namespace_specifier = 354, - sym_nested_namespace_specifier = 355, - sym_using_declaration = 356, - sym_alias_declaration = 357, - sym_static_assert_declaration = 358, - sym_concept_definition = 359, - sym_for_range_loop = 360, - sym_init_statement = 361, - sym_condition_clause = 362, - sym_condition_declaration = 363, - sym_co_return_statement = 364, - sym_co_yield_statement = 365, - sym_throw_statement = 366, - sym_try_statement = 367, - sym_catch_clause = 368, - sym_raw_string_literal = 369, - sym_co_await_expression = 370, - sym_new_expression = 371, - sym_new_declarator = 372, - sym_delete_expression = 373, - sym_type_requirement = 374, - sym_compound_requirement = 375, - sym__requirement = 376, - sym_requirement_seq = 377, - sym_constraint_conjunction = 378, - sym_constraint_disjunction = 379, - sym__requirement_clause_constraint = 380, - sym_requires_clause = 381, - sym_requires_parameter_list = 382, - sym_requires_expression = 383, - sym_lambda_expression = 384, - sym_lambda_capture_specifier = 385, - sym_lambda_default_capture = 386, - sym__fold_operator = 387, - sym__binary_fold_operator = 388, - sym__unary_left_fold = 389, - sym__unary_right_fold = 390, - sym__binary_fold = 391, - sym_fold_expression = 392, - sym_parameter_pack_expansion = 393, - sym_type_parameter_pack_expansion = 394, - sym_destructor_name = 395, - sym_dependent_identifier = 396, - sym_dependent_field_identifier = 397, - sym_dependent_type_identifier = 398, - sym__scope_resolution = 399, - sym_qualified_field_identifier = 400, - sym_qualified_identifier = 401, - sym_qualified_type_identifier = 402, - sym_qualified_operator_cast_identifier = 403, - sym_operator_name = 404, - sym_user_defined_literal = 405, - aux_sym_translation_unit_repeat1 = 406, - aux_sym_preproc_params_repeat1 = 407, - aux_sym_preproc_if_in_field_declaration_list_repeat1 = 408, - aux_sym_preproc_argument_list_repeat1 = 409, - aux_sym_declaration_repeat1 = 410, - aux_sym_type_definition_repeat1 = 411, - aux_sym_type_definition_repeat2 = 412, - aux_sym__declaration_specifiers_repeat1 = 413, - aux_sym_attribute_declaration_repeat1 = 414, - aux_sym_attributed_declarator_repeat1 = 415, - aux_sym_pointer_declarator_repeat1 = 416, - aux_sym_sized_type_specifier_repeat1 = 417, - aux_sym_enumerator_list_repeat1 = 418, - aux_sym_field_declaration_repeat1 = 419, - aux_sym_parameter_list_repeat1 = 420, - aux_sym_case_statement_repeat1 = 421, - aux_sym_argument_list_repeat1 = 422, - aux_sym_initializer_list_repeat1 = 423, - aux_sym_initializer_pair_repeat1 = 424, - aux_sym_concatenated_string_repeat1 = 425, - aux_sym_string_literal_repeat1 = 426, - aux_sym_base_class_clause_repeat1 = 427, - aux_sym_template_parameter_list_repeat1 = 428, - aux_sym_field_initializer_list_repeat1 = 429, - aux_sym_operator_cast_definition_repeat1 = 430, - aux_sym_constructor_try_statement_repeat1 = 431, - aux_sym_structured_binding_declarator_repeat1 = 432, - aux_sym__function_declarator_seq_repeat1 = 433, - aux_sym__function_declarator_seq_repeat2 = 434, - aux_sym_throw_specifier_repeat1 = 435, - aux_sym_template_argument_list_repeat1 = 436, - aux_sym_requirement_seq_repeat1 = 437, - aux_sym_requires_parameter_list_repeat1 = 438, - aux_sym_lambda_capture_specifier_repeat1 = 439, - alias_sym_field_identifier = 440, - alias_sym_namespace_identifier = 441, - alias_sym_simple_requirement = 442, - alias_sym_statement_identifier = 443, - alias_sym_type_identifier = 444, + aux_sym_preproc_elifdef_token1 = 15, + aux_sym_preproc_elifdef_token2 = 16, + sym_preproc_arg = 17, + sym_preproc_directive = 18, + anon_sym_LPAREN2 = 19, + anon_sym_defined = 20, + anon_sym_BANG = 21, + anon_sym_TILDE = 22, + anon_sym_DASH = 23, + anon_sym_PLUS = 24, + anon_sym_STAR = 25, + anon_sym_SLASH = 26, + anon_sym_PERCENT = 27, + anon_sym_PIPE_PIPE = 28, + anon_sym_AMP_AMP = 29, + anon_sym_PIPE = 30, + anon_sym_CARET = 31, + anon_sym_AMP = 32, + anon_sym_EQ_EQ = 33, + anon_sym_BANG_EQ = 34, + anon_sym_GT = 35, + anon_sym_GT_EQ = 36, + anon_sym_LT_EQ = 37, + anon_sym_LT = 38, + anon_sym_LT_LT = 39, + anon_sym_GT_GT = 40, + anon_sym_SEMI = 41, + anon_sym_typedef = 42, + anon_sym_extern = 43, + anon_sym___attribute__ = 44, + anon_sym_COLON_COLON = 45, + anon_sym_LBRACK_LBRACK = 46, + anon_sym_RBRACK_RBRACK = 47, + anon_sym___declspec = 48, + anon_sym___based = 49, + anon_sym___cdecl = 50, + anon_sym___clrcall = 51, + anon_sym___stdcall = 52, + anon_sym___fastcall = 53, + anon_sym___thiscall = 54, + anon_sym___vectorcall = 55, + sym_ms_restrict_modifier = 56, + sym_ms_unsigned_ptr_modifier = 57, + sym_ms_signed_ptr_modifier = 58, + anon_sym__unaligned = 59, + anon_sym___unaligned = 60, + anon_sym_LBRACE = 61, + anon_sym_RBRACE = 62, + anon_sym_LBRACK = 63, + anon_sym_RBRACK = 64, + anon_sym_EQ = 65, + anon_sym_static = 66, + anon_sym_register = 67, + anon_sym_inline = 68, + anon_sym_thread_local = 69, + anon_sym_const = 70, + anon_sym_constexpr = 71, + anon_sym_volatile = 72, + anon_sym_restrict = 73, + anon_sym___restrict__ = 74, + anon_sym__Atomic = 75, + anon_sym__Noreturn = 76, + anon_sym_noreturn = 77, + anon_sym_mutable = 78, + anon_sym_constinit = 79, + anon_sym_consteval = 80, + anon_sym_signed = 81, + anon_sym_unsigned = 82, + anon_sym_long = 83, + anon_sym_short = 84, + sym_primitive_type = 85, + anon_sym_enum = 86, + anon_sym_class = 87, + anon_sym_struct = 88, + anon_sym_union = 89, + anon_sym_COLON = 90, + anon_sym_if = 91, + anon_sym_else = 92, + anon_sym_switch = 93, + anon_sym_case = 94, + anon_sym_default = 95, + anon_sym_while = 96, + anon_sym_do = 97, + anon_sym_for = 98, + anon_sym_return = 99, + anon_sym_break = 100, + anon_sym_continue = 101, + anon_sym_goto = 102, + anon_sym_QMARK = 103, + anon_sym_STAR_EQ = 104, + anon_sym_SLASH_EQ = 105, + anon_sym_PERCENT_EQ = 106, + anon_sym_PLUS_EQ = 107, + anon_sym_DASH_EQ = 108, + anon_sym_LT_LT_EQ = 109, + anon_sym_GT_GT_EQ = 110, + anon_sym_AMP_EQ = 111, + anon_sym_CARET_EQ = 112, + anon_sym_PIPE_EQ = 113, + anon_sym_and_eq = 114, + anon_sym_or_eq = 115, + anon_sym_xor_eq = 116, + anon_sym_not = 117, + anon_sym_compl = 118, + anon_sym_LT_EQ_GT = 119, + anon_sym_or = 120, + anon_sym_and = 121, + anon_sym_bitor = 122, + anon_sym_xor = 123, + anon_sym_bitand = 124, + anon_sym_not_eq = 125, + anon_sym_DASH_DASH = 126, + anon_sym_PLUS_PLUS = 127, + anon_sym_sizeof = 128, + anon_sym_offsetof = 129, + anon_sym__Generic = 130, + anon_sym_asm = 131, + anon_sym___asm__ = 132, + anon_sym_DOT = 133, + anon_sym_DASH_GT = 134, + sym_number_literal = 135, + anon_sym_L_SQUOTE = 136, + anon_sym_u_SQUOTE = 137, + anon_sym_U_SQUOTE = 138, + anon_sym_u8_SQUOTE = 139, + anon_sym_SQUOTE = 140, + aux_sym_char_literal_token1 = 141, + anon_sym_L_DQUOTE = 142, + anon_sym_u_DQUOTE = 143, + anon_sym_U_DQUOTE = 144, + anon_sym_u8_DQUOTE = 145, + anon_sym_DQUOTE = 146, + aux_sym_string_literal_token1 = 147, + sym_escape_sequence = 148, + sym_system_lib_string = 149, + sym_true = 150, + sym_false = 151, + anon_sym_NULL = 152, + anon_sym_nullptr = 153, + sym_comment = 154, + sym_auto = 155, + anon_sym_decltype = 156, + anon_sym_final = 157, + anon_sym_override = 158, + anon_sym_virtual = 159, + anon_sym_explicit = 160, + anon_sym_typename = 161, + anon_sym_template = 162, + anon_sym_GT2 = 163, + anon_sym_operator = 164, + anon_sym_try = 165, + anon_sym_delete = 166, + anon_sym_friend = 167, + anon_sym_public = 168, + anon_sym_private = 169, + anon_sym_protected = 170, + anon_sym_noexcept = 171, + anon_sym_throw = 172, + anon_sym_namespace = 173, + anon_sym_using = 174, + anon_sym_static_assert = 175, + anon_sym_concept = 176, + anon_sym_co_return = 177, + anon_sym_co_yield = 178, + anon_sym_catch = 179, + anon_sym_R_DQUOTE = 180, + anon_sym_LR_DQUOTE = 181, + anon_sym_uR_DQUOTE = 182, + anon_sym_UR_DQUOTE = 183, + anon_sym_u8R_DQUOTE = 184, + anon_sym_co_await = 185, + anon_sym_new = 186, + anon_sym_requires = 187, + anon_sym_DOT_STAR = 188, + anon_sym_DASH_GT_STAR = 189, + anon_sym_LPAREN_RPAREN = 190, + anon_sym_LBRACK_RBRACK = 191, + anon_sym_DQUOTE_DQUOTE = 192, + sym_this = 193, + sym_literal_suffix = 194, + sym_raw_string_delimiter = 195, + sym_raw_string_content = 196, + sym_translation_unit = 197, + sym_preproc_include = 198, + sym_preproc_def = 199, + sym_preproc_function_def = 200, + sym_preproc_params = 201, + sym_preproc_call = 202, + sym_preproc_if = 203, + sym_preproc_ifdef = 204, + sym_preproc_else = 205, + sym_preproc_elif = 206, + sym_preproc_elifdef = 207, + sym_preproc_if_in_field_declaration_list = 208, + sym_preproc_ifdef_in_field_declaration_list = 209, + sym_preproc_else_in_field_declaration_list = 210, + sym_preproc_elif_in_field_declaration_list = 211, + sym__preproc_expression = 212, + sym_preproc_parenthesized_expression = 213, + sym_preproc_defined = 214, + sym_preproc_unary_expression = 215, + sym_preproc_call_expression = 216, + sym_preproc_argument_list = 217, + sym_preproc_binary_expression = 218, + sym_function_definition = 219, + sym_declaration = 220, + sym_type_definition = 221, + sym__declaration_modifiers = 222, + sym__declaration_specifiers = 223, + sym_linkage_specification = 224, + sym_attribute_specifier = 225, + sym_attribute = 226, + sym_attribute_declaration = 227, + sym_ms_declspec_modifier = 228, + sym_ms_based_modifier = 229, + sym_ms_call_modifier = 230, + sym_ms_unaligned_ptr_modifier = 231, + sym_ms_pointer_modifier = 232, + sym_declaration_list = 233, + sym__declarator = 234, + sym__field_declarator = 235, + sym__type_declarator = 236, + sym__abstract_declarator = 237, + sym_parenthesized_declarator = 238, + sym_parenthesized_field_declarator = 239, + sym_parenthesized_type_declarator = 240, + sym_abstract_parenthesized_declarator = 241, + sym_attributed_declarator = 242, + sym_attributed_field_declarator = 243, + sym_attributed_type_declarator = 244, + sym_pointer_declarator = 245, + sym_pointer_field_declarator = 246, + sym_pointer_type_declarator = 247, + sym_abstract_pointer_declarator = 248, + sym_function_declarator = 249, + sym_function_field_declarator = 250, + sym_function_type_declarator = 251, + sym_abstract_function_declarator = 252, + sym_array_declarator = 253, + sym_array_field_declarator = 254, + sym_array_type_declarator = 255, + sym_abstract_array_declarator = 256, + sym_init_declarator = 257, + sym_compound_statement = 258, + sym_storage_class_specifier = 259, + sym_type_qualifier = 260, + sym__typedef_type_specifier = 261, + sym__type_specifier = 262, + aux_sym__typedef_sized_type_specifier = 263, + sym_sized_type_specifier = 264, + sym_enum_specifier = 265, + sym_enumerator_list = 266, + sym_struct_specifier = 267, + sym_union_specifier = 268, + sym_field_declaration_list = 269, + sym__field_declaration_list_item = 270, + sym_field_declaration = 271, + sym_bitfield_clause = 272, + sym_enumerator = 273, + sym_parameter_list = 274, + sym_parameter_declaration = 275, + sym_attributed_statement = 276, + sym_labeled_statement = 277, + sym__top_level_expression_statement = 278, + sym_expression_statement = 279, + sym_if_statement = 280, + sym_switch_statement = 281, + sym_case_statement = 282, + sym_while_statement = 283, + sym_do_statement = 284, + sym_for_statement = 285, + sym_return_statement = 286, + sym_break_statement = 287, + sym_continue_statement = 288, + sym_goto_statement = 289, + sym__expression = 290, + sym__expression_not_binary = 291, + sym_comma_expression = 292, + sym_conditional_expression = 293, + sym_assignment_expression = 294, + sym_pointer_expression = 295, + sym_unary_expression = 296, + sym_binary_expression = 297, + sym_update_expression = 298, + sym_cast_expression = 299, + sym_type_descriptor = 300, + sym_sizeof_expression = 301, + sym_offsetof_expression = 302, + sym_generic_expression = 303, + sym_subscript_expression = 304, + sym_call_expression = 305, + sym_gnu_asm_expression = 306, + sym_gnu_asm_qualifier = 307, + sym_gnu_asm_output_operand_list = 308, + sym_gnu_asm_output_operand = 309, + sym_gnu_asm_input_operand_list = 310, + sym_gnu_asm_input_operand = 311, + sym_gnu_asm_clobber_list = 312, + sym_gnu_asm_goto_list = 313, + sym_argument_list = 314, + sym_field_expression = 315, + sym_compound_literal_expression = 316, + sym_parenthesized_expression = 317, + sym_initializer_list = 318, + sym_initializer_pair = 319, + sym_subscript_designator = 320, + sym_field_designator = 321, + sym_char_literal = 322, + sym_concatenated_string = 323, + sym_string_literal = 324, + sym_null = 325, + sym__empty_declaration = 326, + sym_macro_type_specifier = 327, + sym_placeholder_type_specifier = 328, + sym_decltype_auto = 329, + sym_decltype = 330, + sym__class_declaration = 331, + sym_class_specifier = 332, + sym__class_name = 333, + sym_virtual_specifier = 334, + sym_virtual = 335, + sym_explicit_function_specifier = 336, + sym_base_class_clause = 337, + sym__enum_base_clause = 338, + sym_dependent_type = 339, + sym_template_declaration = 340, + sym_template_instantiation = 341, + sym_template_parameter_list = 342, + sym_type_parameter_declaration = 343, + sym_variadic_type_parameter_declaration = 344, + sym_optional_type_parameter_declaration = 345, + sym_template_template_parameter_declaration = 346, + sym_optional_parameter_declaration = 347, + sym_variadic_parameter_declaration = 348, + sym_variadic_declarator = 349, + sym_variadic_reference_declarator = 350, + sym_operator_cast = 351, + sym_field_initializer_list = 352, + sym_field_initializer = 353, + sym_inline_method_definition = 354, + sym__constructor_specifiers = 355, + sym_operator_cast_definition = 356, + sym_operator_cast_declaration = 357, + sym_constructor_try_statement = 358, + sym_constructor_or_destructor_definition = 359, + sym_constructor_or_destructor_declaration = 360, + sym_default_method_clause = 361, + sym_delete_method_clause = 362, + sym_friend_declaration = 363, + sym_access_specifier = 364, + sym_reference_declarator = 365, + sym_reference_field_declarator = 366, + sym_abstract_reference_declarator = 367, + sym_structured_binding_declarator = 368, + sym_ref_qualifier = 369, + sym__function_declarator_seq = 370, + sym_trailing_return_type = 371, + sym_noexcept = 372, + sym_throw_specifier = 373, + sym_template_type = 374, + sym_template_method = 375, + sym_template_function = 376, + sym_template_argument_list = 377, + sym_namespace_definition = 378, + sym_namespace_alias_definition = 379, + sym__namespace_specifier = 380, + sym_nested_namespace_specifier = 381, + sym_using_declaration = 382, + sym_alias_declaration = 383, + sym_static_assert_declaration = 384, + sym_concept_definition = 385, + sym_for_range_loop = 386, + sym_init_statement = 387, + sym_condition_clause = 388, + sym_condition_declaration = 389, + sym_co_return_statement = 390, + sym_co_yield_statement = 391, + sym_throw_statement = 392, + sym_try_statement = 393, + sym_catch_clause = 394, + sym_raw_string_literal = 395, + sym_co_await_expression = 396, + sym_new_expression = 397, + sym_new_declarator = 398, + sym_delete_expression = 399, + sym_type_requirement = 400, + sym_compound_requirement = 401, + sym__requirement = 402, + sym_requirement_seq = 403, + sym_constraint_conjunction = 404, + sym_constraint_disjunction = 405, + sym__requirement_clause_constraint = 406, + sym_requires_clause = 407, + sym_requires_parameter_list = 408, + sym_requires_expression = 409, + sym_lambda_expression = 410, + sym_lambda_capture_specifier = 411, + sym_lambda_default_capture = 412, + sym__fold_operator = 413, + sym__binary_fold_operator = 414, + sym__unary_left_fold = 415, + sym__unary_right_fold = 416, + sym__binary_fold = 417, + sym_fold_expression = 418, + sym_parameter_pack_expansion = 419, + sym_type_parameter_pack_expansion = 420, + sym_destructor_name = 421, + sym_dependent_identifier = 422, + sym_dependent_field_identifier = 423, + sym_dependent_type_identifier = 424, + sym__scope_resolution = 425, + sym_qualified_field_identifier = 426, + sym_qualified_identifier = 427, + sym_qualified_type_identifier = 428, + sym_qualified_operator_cast_identifier = 429, + sym_operator_name = 430, + sym_user_defined_literal = 431, + aux_sym_translation_unit_repeat1 = 432, + aux_sym_preproc_params_repeat1 = 433, + aux_sym_preproc_if_repeat1 = 434, + aux_sym_preproc_if_in_field_declaration_list_repeat1 = 435, + aux_sym_preproc_argument_list_repeat1 = 436, + aux_sym_declaration_repeat1 = 437, + aux_sym_type_definition_repeat1 = 438, + aux_sym_type_definition_repeat2 = 439, + aux_sym__declaration_specifiers_repeat1 = 440, + aux_sym_attribute_declaration_repeat1 = 441, + aux_sym_attributed_declarator_repeat1 = 442, + aux_sym_pointer_declarator_repeat1 = 443, + aux_sym_sized_type_specifier_repeat1 = 444, + aux_sym_enumerator_list_repeat1 = 445, + aux_sym_field_declaration_repeat1 = 446, + aux_sym_parameter_list_repeat1 = 447, + aux_sym_case_statement_repeat1 = 448, + aux_sym_generic_expression_repeat1 = 449, + aux_sym_gnu_asm_expression_repeat1 = 450, + aux_sym_gnu_asm_output_operand_list_repeat1 = 451, + aux_sym_gnu_asm_input_operand_list_repeat1 = 452, + aux_sym_gnu_asm_clobber_list_repeat1 = 453, + aux_sym_gnu_asm_goto_list_repeat1 = 454, + aux_sym_argument_list_repeat1 = 455, + aux_sym_initializer_list_repeat1 = 456, + aux_sym_initializer_pair_repeat1 = 457, + aux_sym_concatenated_string_repeat1 = 458, + aux_sym_string_literal_repeat1 = 459, + aux_sym_base_class_clause_repeat1 = 460, + aux_sym_template_parameter_list_repeat1 = 461, + aux_sym_field_initializer_list_repeat1 = 462, + aux_sym_operator_cast_definition_repeat1 = 463, + aux_sym_constructor_try_statement_repeat1 = 464, + aux_sym_structured_binding_declarator_repeat1 = 465, + aux_sym__function_declarator_seq_repeat1 = 466, + aux_sym__function_declarator_seq_repeat2 = 467, + aux_sym_throw_specifier_repeat1 = 468, + aux_sym_template_argument_list_repeat1 = 469, + aux_sym_requirement_seq_repeat1 = 470, + aux_sym_requires_parameter_list_repeat1 = 471, + aux_sym_lambda_capture_specifier_repeat1 = 472, + alias_sym_field_identifier = 473, + alias_sym_namespace_identifier = 474, + alias_sym_simple_requirement = 475, + alias_sym_statement_identifier = 476, + alias_sym_type_identifier = 477, }; static const char * const ts_symbol_names[] = { @@ -487,8 +520,10 @@ static const char * const ts_symbol_names[] = { [aux_sym_preproc_ifdef_token2] = "#ifndef", [aux_sym_preproc_else_token1] = "#else", [aux_sym_preproc_elif_token1] = "#elif", - [sym_preproc_directive] = "preproc_directive", + [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] = "!", @@ -541,11 +576,14 @@ static const char * const ts_symbol_names[] = { [anon_sym_inline] = "inline", [anon_sym_thread_local] = "thread_local", [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_noreturn] = "noreturn", [anon_sym_mutable] = "mutable", - [anon_sym_constexpr] = "constexpr", [anon_sym_constinit] = "constinit", [anon_sym_consteval] = "consteval", [anon_sym_signed] = "signed", @@ -596,6 +634,10 @@ static const char * const ts_symbol_names[] = { [anon_sym_DASH_DASH] = "--", [anon_sym_PLUS_PLUS] = "++", [anon_sym_sizeof] = "sizeof", + [anon_sym_offsetof] = "offsetof", + [anon_sym__Generic] = "_Generic", + [anon_sym_asm] = "asm", + [anon_sym___asm__] = "__asm__", [anon_sym_DOT] = ".", [anon_sym_DASH_GT] = "->", [sym_number_literal] = "number_literal", @@ -604,18 +646,19 @@ static const char * const ts_symbol_names[] = { [anon_sym_U_SQUOTE] = "U'", [anon_sym_u8_SQUOTE] = "u8'", [anon_sym_SQUOTE] = "'", - [aux_sym_char_literal_token1] = "char_literal_token1", + [aux_sym_char_literal_token1] = "character", [anon_sym_L_DQUOTE] = "L\"", [anon_sym_u_DQUOTE] = "u\"", [anon_sym_U_DQUOTE] = "U\"", [anon_sym_u8_DQUOTE] = "u8\"", [anon_sym_DQUOTE] = "\"", - [aux_sym_string_literal_token1] = "string_literal_token1", + [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", - [sym_null] = "null", + [anon_sym_NULL] = "NULL", + [anon_sym_nullptr] = "nullptr", [sym_comment] = "comment", [sym_auto] = "auto", [anon_sym_decltype] = "decltype", @@ -656,7 +699,6 @@ static const char * const ts_symbol_names[] = { [anon_sym_LBRACK_RBRACK] = "[]", [anon_sym_DQUOTE_DQUOTE] = "\"\"", [sym_this] = "this", - [sym_nullptr] = "nullptr", [sym_literal_suffix] = "literal_suffix", [sym_raw_string_delimiter] = "raw_string_delimiter", [sym_raw_string_content] = "raw_string_content", @@ -670,6 +712,7 @@ static const char * const ts_symbol_names[] = { [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", @@ -723,7 +766,9 @@ static const char * const ts_symbol_names[] = { [sym_compound_statement] = "compound_statement", [sym_storage_class_specifier] = "storage_class_specifier", [sym_type_qualifier] = "type_qualifier", + [sym__typedef_type_specifier] = "_typedef_type_specifier", [sym__type_specifier] = "_type_specifier", + [aux_sym__typedef_sized_type_specifier] = "_typedef_sized_type_specifier", [sym_sized_type_specifier] = "sized_type_specifier", [sym_enum_specifier] = "enum_specifier", [sym_enumerator_list] = "enumerator_list", @@ -738,6 +783,7 @@ static const char * const ts_symbol_names[] = { [sym_parameter_declaration] = "parameter_declaration", [sym_attributed_statement] = "attributed_statement", [sym_labeled_statement] = "labeled_statement", + [sym__top_level_expression_statement] = "expression_statement", [sym_expression_statement] = "expression_statement", [sym_if_statement] = "if_statement", [sym_switch_statement] = "switch_statement", @@ -750,6 +796,7 @@ static const char * const ts_symbol_names[] = { [sym_continue_statement] = "continue_statement", [sym_goto_statement] = "goto_statement", [sym__expression] = "_expression", + [sym__expression_not_binary] = "_expression_not_binary", [sym_comma_expression] = "comma_expression", [sym_conditional_expression] = "conditional_expression", [sym_assignment_expression] = "assignment_expression", @@ -760,8 +807,18 @@ static const char * const ts_symbol_names[] = { [sym_cast_expression] = "cast_expression", [sym_type_descriptor] = "type_descriptor", [sym_sizeof_expression] = "sizeof_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_argument_list] = "argument_list", [sym_field_expression] = "field_expression", [sym_compound_literal_expression] = "compound_literal_expression", @@ -773,7 +830,9 @@ static const char * const ts_symbol_names[] = { [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_placeholder_type_specifier] = "placeholder_type_specifier", [sym_decltype_auto] = "decltype", [sym_decltype] = "decltype", @@ -880,6 +939,7 @@ static const char * const ts_symbol_names[] = { [sym_user_defined_literal] = "user_defined_literal", [aux_sym_translation_unit_repeat1] = "translation_unit_repeat1", [aux_sym_preproc_params_repeat1] = "preproc_params_repeat1", + [aux_sym_preproc_if_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_declaration_repeat1] = "declaration_repeat1", @@ -894,6 +954,12 @@ static const char * const ts_symbol_names[] = { [aux_sym_field_declaration_repeat1] = "field_declaration_repeat1", [aux_sym_parameter_list_repeat1] = "parameter_list_repeat1", [aux_sym_case_statement_repeat1] = "case_statement_repeat1", + [aux_sym_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_initializer_list_repeat1] = "initializer_list_repeat1", [aux_sym_initializer_pair_repeat1] = "initializer_pair_repeat1", @@ -935,8 +1001,10 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym_preproc_ifdef_token2] = aux_sym_preproc_ifdef_token2, [aux_sym_preproc_else_token1] = aux_sym_preproc_else_token1, [aux_sym_preproc_elif_token1] = aux_sym_preproc_elif_token1, - [sym_preproc_directive] = sym_preproc_directive, + [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, @@ -989,11 +1057,14 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_inline] = anon_sym_inline, [anon_sym_thread_local] = anon_sym_thread_local, [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_noreturn] = anon_sym_noreturn, [anon_sym_mutable] = anon_sym_mutable, - [anon_sym_constexpr] = anon_sym_constexpr, [anon_sym_constinit] = anon_sym_constinit, [anon_sym_consteval] = anon_sym_consteval, [anon_sym_signed] = anon_sym_signed, @@ -1044,6 +1115,10 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_DASH_DASH] = anon_sym_DASH_DASH, [anon_sym_PLUS_PLUS] = anon_sym_PLUS_PLUS, [anon_sym_sizeof] = anon_sym_sizeof, + [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_DOT] = anon_sym_DOT, [anon_sym_DASH_GT] = anon_sym_DASH_GT, [sym_number_literal] = sym_number_literal, @@ -1063,7 +1138,8 @@ static const TSSymbol ts_symbol_map[] = { [sym_system_lib_string] = sym_system_lib_string, [sym_true] = sym_true, [sym_false] = sym_false, - [sym_null] = sym_null, + [anon_sym_NULL] = anon_sym_NULL, + [anon_sym_nullptr] = anon_sym_nullptr, [sym_comment] = sym_comment, [sym_auto] = sym_auto, [anon_sym_decltype] = anon_sym_decltype, @@ -1104,7 +1180,6 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_LBRACK_RBRACK] = anon_sym_LBRACK_RBRACK, [anon_sym_DQUOTE_DQUOTE] = anon_sym_DQUOTE_DQUOTE, [sym_this] = sym_this, - [sym_nullptr] = sym_nullptr, [sym_literal_suffix] = sym_literal_suffix, [sym_raw_string_delimiter] = sym_raw_string_delimiter, [sym_raw_string_content] = sym_raw_string_content, @@ -1118,6 +1193,7 @@ static const TSSymbol ts_symbol_map[] = { [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, @@ -1171,7 +1247,9 @@ static const TSSymbol ts_symbol_map[] = { [sym_compound_statement] = sym_compound_statement, [sym_storage_class_specifier] = sym_storage_class_specifier, [sym_type_qualifier] = sym_type_qualifier, + [sym__typedef_type_specifier] = sym__typedef_type_specifier, [sym__type_specifier] = sym__type_specifier, + [aux_sym__typedef_sized_type_specifier] = aux_sym__typedef_sized_type_specifier, [sym_sized_type_specifier] = sym_sized_type_specifier, [sym_enum_specifier] = sym_enum_specifier, [sym_enumerator_list] = sym_enumerator_list, @@ -1186,6 +1264,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_parameter_declaration] = sym_parameter_declaration, [sym_attributed_statement] = sym_attributed_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_switch_statement] = sym_switch_statement, @@ -1198,6 +1277,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_continue_statement] = sym_continue_statement, [sym_goto_statement] = sym_goto_statement, [sym__expression] = sym__expression, + [sym__expression_not_binary] = sym__expression_not_binary, [sym_comma_expression] = sym_comma_expression, [sym_conditional_expression] = sym_conditional_expression, [sym_assignment_expression] = sym_assignment_expression, @@ -1208,8 +1288,18 @@ static const TSSymbol ts_symbol_map[] = { [sym_cast_expression] = sym_cast_expression, [sym_type_descriptor] = sym_type_descriptor, [sym_sizeof_expression] = sym_sizeof_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_argument_list] = sym_argument_list, [sym_field_expression] = sym_field_expression, [sym_compound_literal_expression] = sym_compound_literal_expression, @@ -1221,7 +1311,9 @@ static const TSSymbol ts_symbol_map[] = { [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_placeholder_type_specifier] = sym_placeholder_type_specifier, [sym_decltype_auto] = sym_decltype, [sym_decltype] = sym_decltype, @@ -1328,6 +1420,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_user_defined_literal] = sym_user_defined_literal, [aux_sym_translation_unit_repeat1] = aux_sym_translation_unit_repeat1, [aux_sym_preproc_params_repeat1] = aux_sym_preproc_params_repeat1, + [aux_sym_preproc_if_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_declaration_repeat1] = aux_sym_declaration_repeat1, @@ -1342,6 +1435,12 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym_field_declaration_repeat1] = aux_sym_field_declaration_repeat1, [aux_sym_parameter_list_repeat1] = aux_sym_parameter_list_repeat1, [aux_sym_case_statement_repeat1] = aux_sym_case_statement_repeat1, + [aux_sym_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_initializer_list_repeat1] = aux_sym_initializer_list_repeat1, [aux_sym_initializer_pair_repeat1] = aux_sym_initializer_pair_repeat1, @@ -1428,14 +1527,22 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [sym_preproc_directive] = { + [aux_sym_preproc_elifdef_token1] = { .visible = true, - .named = 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, @@ -1644,6 +1751,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_constexpr] = { + .visible = true, + .named = false, + }, [anon_sym_volatile] = { .visible = true, .named = false, @@ -1652,15 +1763,23 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym___restrict__] = { + .visible = true, + .named = false, + }, [anon_sym__Atomic] = { .visible = true, .named = false, }, - [anon_sym_mutable] = { + [anon_sym__Noreturn] = { .visible = true, .named = false, }, - [anon_sym_constexpr] = { + [anon_sym_noreturn] = { + .visible = true, + .named = false, + }, + [anon_sym_mutable] = { .visible = true, .named = false, }, @@ -1864,6 +1983,22 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .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_DOT] = { .visible = true, .named = false, @@ -1897,8 +2032,8 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .named = false, }, [aux_sym_char_literal_token1] = { - .visible = false, - .named = false, + .visible = true, + .named = true, }, [anon_sym_L_DQUOTE] = { .visible = true, @@ -1921,8 +2056,8 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .named = false, }, [aux_sym_string_literal_token1] = { - .visible = false, - .named = false, + .visible = true, + .named = true, }, [sym_escape_sequence] = { .visible = true, @@ -1940,9 +2075,13 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym_null] = { + [anon_sym_NULL] = { .visible = true, - .named = true, + .named = false, + }, + [anon_sym_nullptr] = { + .visible = true, + .named = false, }, [sym_comment] = { .visible = true, @@ -2104,10 +2243,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym_nullptr] = { - .visible = true, - .named = true, - }, [sym_literal_suffix] = { .visible = true, .named = true, @@ -2160,6 +2295,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_preproc_elifdef] = { + .visible = true, + .named = true, + }, [sym_preproc_if_in_field_declaration_list] = { .visible = true, .named = true, @@ -2376,11 +2515,19 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym__typedef_type_specifier] = { + .visible = false, + .named = true, + }, [sym__type_specifier] = { .visible = false, .named = true, .supertype = true, }, + [aux_sym__typedef_sized_type_specifier] = { + .visible = false, + .named = false, + }, [sym_sized_type_specifier] = { .visible = true, .named = true, @@ -2437,6 +2584,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym__top_level_expression_statement] = { + .visible = true, + .named = true, + }, [sym_expression_statement] = { .visible = true, .named = true, @@ -2486,6 +2637,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .named = true, .supertype = true, }, + [sym__expression_not_binary] = { + .visible = false, + .named = true, + }, [sym_comma_expression] = { .visible = true, .named = true, @@ -2526,6 +2681,14 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .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, @@ -2534,6 +2697,38 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .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_argument_list] = { .visible = true, .named = true, @@ -2578,10 +2773,18 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .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_placeholder_type_specifier] = { .visible = true, .named = true, @@ -3006,6 +3209,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .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, @@ -3062,6 +3269,30 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .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, @@ -3160,41 +3391,50 @@ enum { field_alternative = 1, field_argument = 2, field_arguments = 3, - field_base = 4, - field_body = 5, - field_captures = 6, - field_condition = 7, - field_consequence = 8, - field_constraint = 9, - field_declarator = 10, - field_default_type = 11, - field_default_value = 12, - field_delimiter = 13, - field_designator = 14, - field_directive = 15, - field_field = 16, - field_function = 17, - field_index = 18, - field_initializer = 19, - field_label = 20, - field_left = 21, - field_length = 22, - field_message = 23, - field_name = 24, - field_operator = 25, - field_parameters = 26, - field_path = 27, - field_pattern = 28, - field_placement = 29, - field_prefix = 30, - field_requirements = 31, - field_right = 32, - field_scope = 33, - field_size = 34, - field_template_parameters = 35, - field_type = 36, - field_update = 37, - field_value = 38, + field_assembly_code = 4, + field_base = 5, + field_body = 6, + field_captures = 7, + field_clobbers = 8, + field_condition = 9, + field_consequence = 10, + field_constraint = 11, + field_declarator = 12, + field_default_type = 13, + field_default_value = 14, + field_delimiter = 15, + field_designator = 16, + field_directive = 17, + field_field = 18, + field_function = 19, + field_goto_labels = 20, + field_index = 21, + field_initializer = 22, + field_input_operands = 23, + field_label = 24, + field_left = 25, + field_length = 26, + field_member = 27, + field_message = 28, + field_name = 29, + field_operand = 30, + field_operator = 31, + field_output_operands = 32, + field_parameters = 33, + field_path = 34, + field_pattern = 35, + field_placement = 36, + field_prefix = 37, + field_register = 38, + field_requirements = 39, + field_right = 40, + field_scope = 41, + field_size = 42, + field_symbol = 43, + field_template_parameters = 44, + field_type = 45, + field_update = 46, + field_value = 47, }; static const char * const ts_field_names[] = { @@ -3202,9 +3442,11 @@ static const char * const ts_field_names[] = { [field_alternative] = "alternative", [field_argument] = "argument", [field_arguments] = "arguments", + [field_assembly_code] = "assembly_code", [field_base] = "base", [field_body] = "body", [field_captures] = "captures", + [field_clobbers] = "clobbers", [field_condition] = "condition", [field_consequence] = "consequence", [field_constraint] = "constraint", @@ -3216,23 +3458,30 @@ static const char * const ts_field_names[] = { [field_directive] = "directive", [field_field] = "field", [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_length] = "length", + [field_member] = "member", [field_message] = "message", [field_name] = "name", + [field_operand] = "operand", [field_operator] = "operator", + [field_output_operands] = "output_operands", [field_parameters] = "parameters", [field_path] = "path", [field_pattern] = "pattern", [field_placement] = "placement", [field_prefix] = "prefix", + [field_register] = "register", [field_requirements] = "requirements", [field_right] = "right", [field_scope] = "scope", [field_size] = "size", + [field_symbol] = "symbol", [field_template_parameters] = "template_parameters", [field_type] = "type", [field_update] = "update", @@ -3244,172 +3493,199 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [3] = {.index = 1, .length = 1}, [4] = {.index = 2, .length = 2}, [5] = {.index = 4, .length = 1}, - [6] = {.index = 5, .length = 1}, - [7] = {.index = 6, .length = 2}, - [8] = {.index = 8, .length = 1}, - [9] = {.index = 9, .length = 1}, - [10] = {.index = 10, .length = 1}, - [11] = {.index = 11, .length = 2}, - [12] = {.index = 13, .length = 1}, - [13] = {.index = 14, .length = 1}, - [14] = {.index = 15, .length = 2}, + [7] = {.index = 5, .length = 1}, + [8] = {.index = 6, .length = 2}, + [9] = {.index = 8, .length = 1}, + [10] = {.index = 9, .length = 1}, + [11] = {.index = 10, .length = 1}, + [12] = {.index = 11, .length = 2}, + [13] = {.index = 13, .length = 1}, + [14] = {.index = 14, .length = 1}, [15] = {.index = 15, .length = 2}, - [17] = {.index = 17, .length = 1}, - [18] = {.index = 18, .length = 1}, - [19] = {.index = 19, .length = 1}, - [20] = {.index = 20, .length = 1}, - [21] = {.index = 21, .length = 2}, - [22] = {.index = 23, .length = 2}, - [23] = {.index = 25, .length = 1}, - [24] = {.index = 26, .length = 1}, - [25] = {.index = 27, .length = 1}, - [26] = {.index = 28, .length = 2}, - [27] = {.index = 14, .length = 1}, - [28] = {.index = 30, .length = 2}, - [29] = {.index = 32, .length = 2}, - [30] = {.index = 34, .length = 1}, - [31] = {.index = 35, .length = 2}, + [16] = {.index = 15, .length = 2}, + [18] = {.index = 17, .length = 1}, + [19] = {.index = 18, .length = 1}, + [20] = {.index = 19, .length = 1}, + [21] = {.index = 20, .length = 1}, + [22] = {.index = 21, .length = 2}, + [23] = {.index = 23, .length = 2}, + [24] = {.index = 25, .length = 1}, + [25] = {.index = 26, .length = 1}, + [26] = {.index = 27, .length = 1}, + [27] = {.index = 28, .length = 2}, + [28] = {.index = 14, .length = 1}, + [29] = {.index = 30, .length = 2}, + [30] = {.index = 32, .length = 2}, + [31] = {.index = 34, .length = 1}, [32] = {.index = 35, .length = 2}, - [33] = {.index = 17, .length = 1}, - [34] = {.index = 37, .length = 1}, - [35] = {.index = 38, .length = 2}, - [36] = {.index = 40, .length = 2}, - [37] = {.index = 42, .length = 3}, - [38] = {.index = 45, .length = 1}, - [39] = {.index = 46, .length = 2}, - [40] = {.index = 48, .length = 1}, - [41] = {.index = 49, .length = 1}, - [42] = {.index = 50, .length = 1}, - [43] = {.index = 51, .length = 2}, - [44] = {.index = 53, .length = 2}, - [45] = {.index = 55, .length = 2}, - [46] = {.index = 57, .length = 2}, - [47] = {.index = 59, .length = 2}, - [48] = {.index = 61, .length = 1}, - [49] = {.index = 62, .length = 3}, - [50] = {.index = 65, .length = 1}, - [51] = {.index = 66, .length = 1}, - [52] = {.index = 67, .length = 1}, - [53] = {.index = 68, .length = 2}, - [55] = {.index = 51, .length = 2}, - [56] = {.index = 70, .length = 2}, - [57] = {.index = 72, .length = 2}, - [58] = {.index = 74, .length = 2}, - [60] = {.index = 76, .length = 2}, - [61] = {.index = 78, .length = 2}, - [62] = {.index = 80, .length = 3}, - [63] = {.index = 83, .length = 2}, - [64] = {.index = 85, .length = 2}, - [65] = {.index = 87, .length = 2}, - [66] = {.index = 89, .length = 3}, - [67] = {.index = 92, .length = 2}, - [68] = {.index = 94, .length = 3}, - [69] = {.index = 97, .length = 3}, - [70] = {.index = 100, .length = 2}, - [71] = {.index = 102, .length = 2}, - [72] = {.index = 104, .length = 2}, - [73] = {.index = 106, .length = 1}, - [74] = {.index = 107, .length = 2}, - [75] = {.index = 109, .length = 2}, - [76] = {.index = 111, .length = 3}, - [77] = {.index = 114, .length = 2}, - [78] = {.index = 116, .length = 1}, - [79] = {.index = 117, .length = 2}, - [80] = {.index = 119, .length = 2}, - [81] = {.index = 121, .length = 2}, - [82] = {.index = 123, .length = 2}, - [83] = {.index = 125, .length = 2}, - [84] = {.index = 127, .length = 2}, + [33] = {.index = 35, .length = 2}, + [34] = {.index = 17, .length = 1}, + [35] = {.index = 37, .length = 1}, + [36] = {.index = 38, .length = 2}, + [37] = {.index = 40, .length = 2}, + [38] = {.index = 42, .length = 3}, + [39] = {.index = 45, .length = 1}, + [40] = {.index = 46, .length = 2}, + [41] = {.index = 48, .length = 1}, + [42] = {.index = 49, .length = 1}, + [43] = {.index = 50, .length = 1}, + [44] = {.index = 51, .length = 2}, + [45] = {.index = 53, .length = 2}, + [46] = {.index = 55, .length = 2}, + [47] = {.index = 57, .length = 2}, + [48] = {.index = 59, .length = 2}, + [49] = {.index = 61, .length = 1}, + [50] = {.index = 62, .length = 3}, + [51] = {.index = 65, .length = 1}, + [52] = {.index = 66, .length = 1}, + [53] = {.index = 67, .length = 1}, + [54] = {.index = 68, .length = 2}, + [56] = {.index = 51, .length = 2}, + [57] = {.index = 70, .length = 2}, + [58] = {.index = 72, .length = 2}, + [59] = {.index = 74, .length = 2}, + [61] = {.index = 76, .length = 2}, + [62] = {.index = 78, .length = 2}, + [63] = {.index = 80, .length = 3}, + [64] = {.index = 83, .length = 2}, + [65] = {.index = 85, .length = 2}, + [66] = {.index = 87, .length = 3}, + [67] = {.index = 90, .length = 2}, + [68] = {.index = 92, .length = 3}, + [69] = {.index = 95, .length = 3}, + [70] = {.index = 98, .length = 2}, + [71] = {.index = 100, .length = 2}, + [72] = {.index = 102, .length = 2}, + [73] = {.index = 104, .length = 1}, + [74] = {.index = 105, .length = 2}, + [75] = {.index = 107, .length = 2}, + [76] = {.index = 109, .length = 2}, + [77] = {.index = 111, .length = 3}, + [78] = {.index = 114, .length = 2}, + [79] = {.index = 116, .length = 1}, + [80] = {.index = 117, .length = 2}, + [81] = {.index = 119, .length = 2}, + [82] = {.index = 121, .length = 2}, + [83] = {.index = 123, .length = 2}, + [84] = {.index = 125, .length = 2}, [85] = {.index = 127, .length = 2}, - [86] = {.index = 129, .length = 2}, - [87] = {.index = 131, .length = 1}, + [86] = {.index = 127, .length = 2}, + [87] = {.index = 129, .length = 2}, [88] = {.index = 131, .length = 1}, - [89] = {.index = 132, .length = 3}, - [91] = {.index = 135, .length = 2}, - [92] = {.index = 137, .length = 2}, - [95] = {.index = 139, .length = 3}, - [96] = {.index = 142, .length = 3}, - [97] = {.index = 145, .length = 3}, - [98] = {.index = 148, .length = 2}, - [99] = {.index = 150, .length = 3}, - [100] = {.index = 153, .length = 2}, - [101] = {.index = 155, .length = 3}, - [102] = {.index = 158, .length = 2}, - [103] = {.index = 15, .length = 2}, - [104] = {.index = 35, .length = 2}, - [105] = {.index = 160, .length = 2}, - [106] = {.index = 162, .length = 2}, - [107] = {.index = 164, .length = 1}, - [108] = {.index = 165, .length = 4}, - [109] = {.index = 169, .length = 4}, - [110] = {.index = 173, .length = 2}, - [111] = {.index = 175, .length = 3}, - [112] = {.index = 178, .length = 2}, - [113] = {.index = 180, .length = 2}, - [114] = {.index = 182, .length = 1}, - [115] = {.index = 183, .length = 2}, - [116] = {.index = 185, .length = 3}, - [117] = {.index = 188, .length = 3}, - [118] = {.index = 191, .length = 3}, - [119] = {.index = 194, .length = 3}, - [120] = {.index = 197, .length = 2}, - [121] = {.index = 199, .length = 3}, - [122] = {.index = 202, .length = 2}, - [123] = {.index = 204, .length = 2}, - [124] = {.index = 206, .length = 1}, - [125] = {.index = 207, .length = 2}, - [126] = {.index = 209, .length = 3}, - [127] = {.index = 212, .length = 2}, - [128] = {.index = 214, .length = 3}, - [129] = {.index = 217, .length = 2}, - [130] = {.index = 219, .length = 2}, - [131] = {.index = 221, .length = 1}, - [133] = {.index = 222, .length = 1}, - [134] = {.index = 223, .length = 2}, - [135] = {.index = 225, .length = 2}, - [136] = {.index = 9, .length = 1}, - [137] = {.index = 9, .length = 1}, - [138] = {.index = 227, .length = 2}, - [139] = {.index = 229, .length = 1}, - [140] = {.index = 230, .length = 1}, - [141] = {.index = 231, .length = 4}, - [142] = {.index = 235, .length = 1}, - [143] = {.index = 236, .length = 2}, - [144] = {.index = 238, .length = 3}, - [145] = {.index = 241, .length = 1}, - [146] = {.index = 242, .length = 5}, - [147] = {.index = 247, .length = 2}, - [148] = {.index = 249, .length = 2}, - [149] = {.index = 251, .length = 3}, - [150] = {.index = 254, .length = 4}, - [151] = {.index = 258, .length = 3}, - [152] = {.index = 261, .length = 2}, - [153] = {.index = 263, .length = 2}, - [154] = {.index = 265, .length = 1}, - [155] = {.index = 266, .length = 3}, - [156] = {.index = 269, .length = 3}, - [157] = {.index = 272, .length = 1}, - [158] = {.index = 273, .length = 2}, - [159] = {.index = 275, .length = 2}, - [160] = {.index = 277, .length = 3}, - [161] = {.index = 280, .length = 2}, - [162] = {.index = 282, .length = 4}, - [163] = {.index = 286, .length = 2}, - [164] = {.index = 288, .length = 2}, - [165] = {.index = 290, .length = 2}, - [166] = {.index = 292, .length = 3}, - [167] = {.index = 295, .length = 3}, - [168] = {.index = 298, .length = 2}, - [169] = {.index = 300, .length = 2}, - [170] = {.index = 302, .length = 1}, - [171] = {.index = 303, .length = 4}, - [172] = {.index = 307, .length = 3}, - [173] = {.index = 310, .length = 4}, - [174] = {.index = 314, .length = 4}, - [175] = {.index = 318, .length = 3}, - [176] = {.index = 321, .length = 3}, - [177] = {.index = 324, .length = 4}, - [178] = {.index = 328, .length = 5}, + [89] = {.index = 131, .length = 1}, + [90] = {.index = 132, .length = 3}, + [92] = {.index = 135, .length = 2}, + [93] = {.index = 137, .length = 2}, + [95] = {.index = 139, .length = 1}, + [97] = {.index = 140, .length = 3}, + [98] = {.index = 143, .length = 3}, + [99] = {.index = 146, .length = 3}, + [100] = {.index = 149, .length = 2}, + [101] = {.index = 151, .length = 3}, + [102] = {.index = 154, .length = 2}, + [103] = {.index = 156, .length = 3}, + [104] = {.index = 159, .length = 2}, + [105] = {.index = 15, .length = 2}, + [106] = {.index = 35, .length = 2}, + [107] = {.index = 161, .length = 2}, + [108] = {.index = 163, .length = 2}, + [109] = {.index = 165, .length = 2}, + [110] = {.index = 167, .length = 1}, + [111] = {.index = 168, .length = 4}, + [112] = {.index = 172, .length = 4}, + [113] = {.index = 176, .length = 2}, + [114] = {.index = 178, .length = 3}, + [115] = {.index = 181, .length = 2}, + [116] = {.index = 183, .length = 2}, + [117] = {.index = 185, .length = 1}, + [118] = {.index = 186, .length = 2}, + [119] = {.index = 188, .length = 2}, + [120] = {.index = 190, .length = 3}, + [121] = {.index = 193, .length = 3}, + [122] = {.index = 196, .length = 3}, + [123] = {.index = 199, .length = 3}, + [124] = {.index = 202, .length = 2}, + [125] = {.index = 204, .length = 3}, + [126] = {.index = 207, .length = 2}, + [127] = {.index = 209, .length = 2}, + [128] = {.index = 211, .length = 1}, + [129] = {.index = 212, .length = 2}, + [130] = {.index = 214, .length = 3}, + [131] = {.index = 217, .length = 2}, + [132] = {.index = 219, .length = 3}, + [133] = {.index = 222, .length = 2}, + [134] = {.index = 224, .length = 2}, + [135] = {.index = 226, .length = 1}, + [136] = {.index = 227, .length = 1}, + [137] = {.index = 228, .length = 2}, + [138] = {.index = 230, .length = 1}, + [140] = {.index = 231, .length = 1}, + [141] = {.index = 232, .length = 2}, + [142] = {.index = 234, .length = 2}, + [143] = {.index = 9, .length = 1}, + [144] = {.index = 9, .length = 1}, + [145] = {.index = 236, .length = 2}, + [146] = {.index = 238, .length = 1}, + [147] = {.index = 239, .length = 1}, + [148] = {.index = 240, .length = 4}, + [149] = {.index = 244, .length = 1}, + [150] = {.index = 245, .length = 2}, + [151] = {.index = 247, .length = 3}, + [152] = {.index = 250, .length = 1}, + [153] = {.index = 251, .length = 5}, + [154] = {.index = 256, .length = 2}, + [155] = {.index = 258, .length = 2}, + [156] = {.index = 260, .length = 3}, + [157] = {.index = 263, .length = 3}, + [158] = {.index = 266, .length = 2}, + [159] = {.index = 268, .length = 4}, + [160] = {.index = 272, .length = 3}, + [161] = {.index = 275, .length = 2}, + [162] = {.index = 277, .length = 2}, + [163] = {.index = 279, .length = 1}, + [164] = {.index = 280, .length = 3}, + [165] = {.index = 283, .length = 3}, + [166] = {.index = 286, .length = 1}, + [167] = {.index = 287, .length = 2}, + [168] = {.index = 289, .length = 2}, + [169] = {.index = 291, .length = 2}, + [170] = {.index = 293, .length = 3}, + [171] = {.index = 296, .length = 2}, + [172] = {.index = 298, .length = 2}, + [173] = {.index = 300, .length = 3}, + [174] = {.index = 303, .length = 2}, + [175] = {.index = 305, .length = 3}, + [176] = {.index = 308, .length = 4}, + [177] = {.index = 312, .length = 2}, + [178] = {.index = 314, .length = 2}, + [179] = {.index = 316, .length = 2}, + [180] = {.index = 318, .length = 3}, + [181] = {.index = 321, .length = 3}, + [182] = {.index = 324, .length = 2}, + [183] = {.index = 326, .length = 2}, + [184] = {.index = 328, .length = 1}, + [185] = {.index = 329, .length = 4}, + [186] = {.index = 333, .length = 3}, + [187] = {.index = 336, .length = 2}, + [188] = {.index = 338, .length = 1}, + [189] = {.index = 339, .length = 4}, + [190] = {.index = 343, .length = 3}, + [191] = {.index = 346, .length = 4}, + [192] = {.index = 350, .length = 4}, + [193] = {.index = 354, .length = 3}, + [194] = {.index = 357, .length = 3}, + [195] = {.index = 360, .length = 2}, + [196] = {.index = 362, .length = 2}, + [197] = {.index = 61, .length = 1}, + [198] = {.index = 364, .length = 5}, + [199] = {.index = 369, .length = 4}, + [200] = {.index = 373, .length = 4}, + [201] = {.index = 377, .length = 5}, + [202] = {.index = 382, .length = 2}, + [203] = {.index = 384, .length = 2}, + [204] = {.index = 386, .length = 5}, + [205] = {.index = 391, .length = 2}, + [206] = {.index = 393, .length = 3}, }; static const TSFieldMapEntry ts_field_map_entries[] = { @@ -3556,40 +3832,40 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_body, 2}, {field_declarator, 0}, [87] = - {field_left, 0}, - {field_right, 2}, - [89] = {field_argument, 0}, {field_field, 2}, {field_operator, 1}, - [92] = + [90] = {field_argument, 0}, {field_field, 2}, - [94] = + [92] = {field_body, 2}, {field_captures, 0}, {field_declarator, 1}, - [97] = + [95] = {field_body, 2}, {field_captures, 0}, {field_template_parameters, 1}, - [100] = + [98] = {field_body, 2}, {field_declarator, 1}, - [102] = + [100] = {field_name, 1}, {field_value, 2}, - [104] = + [102] = {field_name, 1}, {field_parameters, 2}, - [106] = + [104] = {field_condition, 1}, - [107] = + [105] = {field_alternative, 2}, {field_name, 1}, - [109] = + [107] = {field_declarator, 2}, {field_type, 0}, + [109] = + {field_left, 0}, + {field_right, 2}, [111] = {field_left, 0}, {field_operator, 1, .inherited = true}, @@ -3633,278 +3909,367 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_condition, 2}, {field_consequence, 3}, [139] = + {field_assembly_code, 2}, + [140] = {field_arguments, 3}, {field_declarator, 2}, {field_type, 1}, - [142] = + [143] = {field_arguments, 3}, {field_placement, 1}, {field_type, 2}, - [145] = + [146] = {field_declarator, 3}, {field_placement, 1}, {field_type, 2}, - [148] = + [149] = {field_declarator, 0}, {field_value, 2}, - [150] = + [151] = {field_declarator, 1}, {field_declarator, 2, .inherited = true}, {field_type, 0, .inherited = true}, - [153] = + [154] = {field_declarator, 0, .inherited = true}, {field_declarator, 1, .inherited = true}, - [155] = + [156] = {field_body, 3}, {field_declarator, 2}, {field_type, 1, .inherited = true}, - [158] = + [159] = {field_declarator, 0}, {field_size, 2}, - [160] = + [161] = {field_argument, 0}, {field_index, 2}, - [162] = + [163] = + {field_alternative, 3}, + {field_condition, 0}, + [165] = {field_declarator, 0}, {field_default_value, 2}, - [164] = + [167] = {field_size, 1}, - [165] = + [168] = {field_body, 3}, {field_captures, 0}, {field_declarator, 2}, {field_template_parameters, 1}, - [169] = + [172] = {field_body, 3}, {field_captures, 0}, {field_constraint, 2}, {field_template_parameters, 1}, - [173] = + [176] = {field_body, 3}, {field_declarator, 1}, - [175] = + [178] = {field_name, 1}, {field_parameters, 2}, {field_value, 3}, - [178] = + [181] = {field_alternative, 3}, {field_condition, 1}, - [180] = + [183] = {field_alternative, 3}, {field_name, 1}, - [182] = + [185] = {field_operator, 0}, - [183] = + [186] = {field_declarator, 3}, {field_type, 1}, - [185] = + [188] = + {field_name, 0}, + {field_type, 2}, + [190] = {field_declarator, 2}, {field_declarator, 3, .inherited = true}, {field_type, 1}, - [188] = + [193] = {field_arguments, 4}, {field_declarator, 3}, {field_type, 2}, - [191] = + [196] = {field_arguments, 4}, {field_placement, 2}, {field_type, 3}, - [194] = + [199] = {field_declarator, 4}, {field_placement, 2}, {field_type, 3}, - [197] = + [202] = {field_name, 0}, {field_value, 2}, - [199] = + [204] = {field_base, 3, .inherited = true}, {field_body, 4}, {field_name, 2}, - [202] = + [207] = {field_default_value, 1}, {field_type, 0, .inherited = true}, - [204] = + [209] = {field_body, 3}, {field_name, 1}, - [206] = + [211] = {field_body, 3}, - [207] = + [212] = {field_body, 3}, {field_name, 0}, - [209] = + [214] = {field_declarator, 1}, {field_type, 0, .inherited = true}, {field_value, 2}, - [212] = + [217] = {field_initializer, 1}, {field_value, 2}, - [214] = + [219] = {field_alternative, 4}, {field_condition, 1}, {field_consequence, 2}, - [217] = + [222] = {field_body, 1}, {field_condition, 3}, - [219] = + [224] = {field_designator, 0}, {field_value, 2}, - [221] = + [226] = {field_value, 3}, - [222] = + [227] = + {field_operand, 1}, + [228] = + {field_assembly_code, 2}, + {field_output_operands, 3}, + [230] = + {field_assembly_code, 3}, + [231] = {field_default_type, 2}, - [223] = + [232] = {field_default_value, 2}, {field_type, 0, .inherited = true}, - [225] = + [234] = {field_body, 2}, {field_parameters, 1}, - [227] = + [236] = {field_name, 1}, {field_type, 3}, - [229] = + [238] = {field_condition, 2}, - [230] = + [239] = {field_length, 1}, - [231] = + [240] = {field_arguments, 4}, {field_declarator, 3}, {field_placement, 1}, {field_type, 2}, - [235] = + [244] = {field_declarator, 4}, - [236] = + [245] = {field_declarator, 0}, {field_size, 3}, - [238] = + [247] = {field_alternative, 4}, {field_condition, 0}, {field_consequence, 2}, - [241] = + [250] = {field_size, 2}, - [242] = + [251] = {field_body, 4}, {field_captures, 0}, {field_constraint, 2}, {field_declarator, 3}, {field_template_parameters, 1}, - [247] = + [256] = {field_declarator, 1}, {field_default_value, 3}, - [249] = + [258] = {field_alternative, 4}, {field_condition, 1}, - [251] = + [260] = + {field_declarator, 3}, + {field_declarator, 4, .inherited = true}, + {field_type, 1}, + [263] = {field_declarator, 3}, {field_declarator, 4, .inherited = true}, {field_type, 2}, - [254] = + [266] = + {field_declarator, 4}, + {field_type, 2}, + [268] = {field_arguments, 5}, {field_declarator, 4}, {field_placement, 2}, {field_type, 3}, - [258] = + [272] = {field_declarator, 1}, {field_default_value, 2}, {field_type, 0, .inherited = true}, - [261] = + [275] = {field_body, 4}, {field_name, 1}, - [263] = + [277] = {field_body, 4}, {field_name, 2}, - [265] = + [279] = {field_body, 4}, - [266] = + [280] = {field_declarator, 1}, {field_type, 0, .inherited = true}, {field_value, 3}, - [269] = + [283] = {field_alternative, 5}, {field_condition, 2}, {field_consequence, 3}, - [272] = + [286] = {field_body, 5}, - [273] = + [287] = {field_body, 5}, {field_initializer, 2}, - [275] = + [289] = + {field_member, 4}, + {field_type, 2}, + [291] = + {field_operand, 1}, + {field_operand, 2, .inherited = true}, + [293] = + {field_assembly_code, 2}, + {field_input_operands, 4}, + {field_output_operands, 3}, + [296] = + {field_assembly_code, 3}, + {field_output_operands, 4}, + [298] = {field_default_type, 3}, {field_name, 1}, - [277] = + [300] = {field_declarator, 1}, {field_default_value, 3}, {field_type, 0, .inherited = true}, - [280] = + [303] = {field_name, 1}, {field_type, 4}, - [282] = + [305] = + {field_declarator, 4}, + {field_declarator, 5, .inherited = true}, + {field_type, 2}, + [308] = {field_declarator, 1}, {field_declarator, 2, .inherited = true}, {field_default_value, 3}, {field_type, 0, .inherited = true}, - [286] = + [312] = {field_body, 5}, {field_name, 2}, - [288] = + [314] = {field_body, 6}, {field_update, 4}, - [290] = + [316] = {field_body, 6}, {field_condition, 3}, - [292] = + [318] = {field_body, 6}, {field_initializer, 2}, {field_update, 4}, - [295] = + [321] = {field_body, 6}, {field_condition, 3}, {field_initializer, 2}, - [298] = + [324] = {field_body, 6}, {field_initializer, 2}, - [300] = + [326] = + {field_operand, 0, .inherited = true}, + {field_operand, 1, .inherited = true}, + [328] = + {field_register, 1}, + [329] = + {field_assembly_code, 2}, + {field_clobbers, 5}, + {field_input_operands, 4}, + {field_output_operands, 3}, + [333] = + {field_assembly_code, 3}, + {field_input_operands, 5}, + {field_output_operands, 4}, + [336] = {field_condition, 2}, {field_message, 4}, - [302] = + [338] = {field_delimiter, 1}, - [303] = + [339] = {field_declarator, 1}, {field_declarator, 2, .inherited = true}, {field_default_value, 4}, {field_type, 0, .inherited = true}, - [307] = + [343] = {field_body, 7}, {field_condition, 3}, {field_update, 5}, - [310] = + [346] = {field_body, 7}, {field_condition, 3}, {field_initializer, 2}, {field_update, 5}, - [314] = + [350] = {field_body, 7}, {field_declarator, 3}, {field_right, 5}, {field_type, 2, .inherited = true}, - [318] = + [354] = {field_body, 7}, {field_initializer, 2}, {field_update, 5}, - [321] = + [357] = {field_body, 7}, {field_condition, 4}, {field_initializer, 2}, - [324] = + [360] = + {field_constraint, 0}, + {field_value, 2}, + [362] = + {field_register, 1}, + {field_register, 2, .inherited = true}, + [364] = + {field_assembly_code, 2}, + {field_clobbers, 5}, + {field_goto_labels, 6}, + {field_input_operands, 4}, + {field_output_operands, 3}, + [369] = + {field_assembly_code, 3}, + {field_clobbers, 6}, + {field_input_operands, 5}, + {field_output_operands, 4}, + [373] = {field_body, 8}, {field_condition, 4}, {field_initializer, 2}, {field_update, 6}, - [328] = + [377] = {field_body, 8}, {field_declarator, 4}, {field_initializer, 2}, {field_right, 6}, {field_type, 3, .inherited = true}, + [382] = + {field_register, 0, .inherited = true}, + {field_register, 1, .inherited = true}, + [384] = + {field_label, 1}, + {field_label, 2, .inherited = true}, + [386] = + {field_assembly_code, 3}, + {field_clobbers, 6}, + {field_goto_labels, 7}, + {field_input_operands, 5}, + {field_output_operands, 4}, + [391] = + {field_label, 0, .inherited = true}, + {field_label, 1, .inherited = true}, + [393] = + {field_constraint, 3}, + {field_symbol, 1}, + {field_value, 5}, }; static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE_LENGTH] = { @@ -3912,82 +4277,91 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [1] = { [0] = alias_sym_type_identifier, }, - [13] = { - [0] = alias_sym_namespace_identifier, + [6] = { + [0] = sym_sized_type_specifier, }, [14] = { + [0] = alias_sym_namespace_identifier, + }, + [15] = { [0] = alias_sym_type_identifier, }, - [16] = { + [17] = { [0] = alias_sym_namespace_identifier, }, - [32] = { + [33] = { [1] = alias_sym_type_identifier, }, - [33] = { + [34] = { [1] = alias_sym_type_identifier, }, - [48] = { + [49] = { [1] = alias_sym_statement_identifier, }, - [50] = { + [51] = { [0] = alias_sym_statement_identifier, }, - [54] = { + [55] = { [1] = alias_sym_namespace_identifier, }, - [55] = { + [56] = { [1] = alias_sym_namespace_identifier, }, - [59] = { + [60] = { [0] = alias_sym_simple_requirement, }, [66] = { [2] = alias_sym_field_identifier, }, - [84] = { + [85] = { [2] = alias_sym_namespace_identifier, }, - [87] = { + [88] = { [1] = alias_sym_type_identifier, }, - [90] = { + [91] = { [0] = alias_sym_field_identifier, }, - [93] = { + [94] = { [1] = alias_sym_field_identifier, }, - [94] = { + [96] = { [1] = alias_sym_type_identifier, }, - [103] = { + [105] = { [0] = alias_sym_field_identifier, }, - [104] = { + [106] = { [1] = alias_sym_field_identifier, }, - [132] = { + [139] = { [2] = alias_sym_type_identifier, }, - [136] = { + [143] = { [1] = alias_sym_namespace_identifier, [3] = alias_sym_namespace_identifier, }, - [137] = { + [144] = { [1] = alias_sym_namespace_identifier, }, - [138] = { + [145] = { [1] = alias_sym_type_identifier, }, - [159] = { + [168] = { + [4] = alias_sym_field_identifier, + }, + [172] = { [1] = alias_sym_type_identifier, }, - [161] = { + [174] = { [1] = alias_sym_type_identifier, }, }; static const uint16_t ts_non_terminal_alias_map[] = { + aux_sym__typedef_sized_type_specifier, 2, + aux_sym__typedef_sized_type_specifier, + sym_sized_type_specifier, sym_expression_statement, 2, sym_expression_statement, alias_sym_simple_requirement, @@ -3998,390 +4372,390 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [0] = 0, [1] = 1, [2] = 2, - [3] = 2, - [4] = 2, - [5] = 2, + [3] = 3, + [4] = 4, + [5] = 4, [6] = 2, [7] = 2, - [8] = 2, + [8] = 4, [9] = 2, - [10] = 10, - [11] = 11, - [12] = 12, - [13] = 13, - [14] = 12, - [15] = 15, - [16] = 15, - [17] = 17, - [18] = 10, - [19] = 11, - [20] = 10, - [21] = 12, - [22] = 15, - [23] = 11, - [24] = 12, - [25] = 15, - [26] = 11, - [27] = 10, - [28] = 28, - [29] = 28, - [30] = 30, - [31] = 30, - [32] = 32, - [33] = 28, - [34] = 34, - [35] = 35, - [36] = 36, - [37] = 37, - [38] = 30, - [39] = 37, - [40] = 35, - [41] = 37, - [42] = 30, - [43] = 35, - [44] = 35, - [45] = 30, - [46] = 30, - [47] = 35, - [48] = 30, - [49] = 35, - [50] = 30, - [51] = 35, - [52] = 35, - [53] = 30, - [54] = 30, - [55] = 35, - [56] = 30, - [57] = 30, - [58] = 36, - [59] = 35, - [60] = 30, - [61] = 36, - [62] = 35, - [63] = 30, - [64] = 35, - [65] = 30, - [66] = 35, - [67] = 35, - [68] = 30, - [69] = 36, - [70] = 35, - [71] = 35, - [72] = 28, - [73] = 73, - [74] = 37, - [75] = 35, - [76] = 30, - [77] = 77, - [78] = 78, - [79] = 79, - [80] = 80, - [81] = 81, - [82] = 79, - [83] = 77, - [84] = 77, - [85] = 80, - [86] = 78, - [87] = 77, - [88] = 79, - [89] = 81, - [90] = 78, - [91] = 79, - [92] = 80, - [93] = 78, - [94] = 80, - [95] = 81, - [96] = 81, - [97] = 81, - [98] = 77, - [99] = 80, - [100] = 78, - [101] = 79, - [102] = 102, - [103] = 103, - [104] = 103, - [105] = 103, - [106] = 103, - [107] = 103, - [108] = 103, - [109] = 109, - [110] = 109, - [111] = 109, - [112] = 109, - [113] = 109, - [114] = 109, - [115] = 115, - [116] = 116, - [117] = 116, - [118] = 116, - [119] = 116, - [120] = 120, - [121] = 121, - [122] = 121, - [123] = 121, - [124] = 121, - [125] = 121, - [126] = 126, - [127] = 127, - [128] = 128, - [129] = 129, - [130] = 126, - [131] = 131, - [132] = 132, - [133] = 133, - [134] = 131, - [135] = 128, - [136] = 127, - [137] = 127, - [138] = 138, - [139] = 128, - [140] = 131, - [141] = 126, + [10] = 3, + [11] = 3, + [12] = 3, + [13] = 2, + [14] = 2, + [15] = 2, + [16] = 2, + [17] = 2, + [18] = 4, + [19] = 3, + [20] = 2, + [21] = 4, + [22] = 22, + [23] = 22, + [24] = 24, + [25] = 25, + [26] = 26, + [27] = 27, + [28] = 22, + [29] = 22, + [30] = 26, + [31] = 31, + [32] = 22, + [33] = 33, + [34] = 26, + [35] = 26, + [36] = 26, + [37] = 33, + [38] = 38, + [39] = 38, + [40] = 38, + [41] = 38, + [42] = 42, + [43] = 42, + [44] = 38, + [45] = 38, + [46] = 38, + [47] = 42, + [48] = 38, + [49] = 49, + [50] = 38, + [51] = 42, + [52] = 38, + [53] = 38, + [54] = 42, + [55] = 38, + [56] = 42, + [57] = 57, + [58] = 38, + [59] = 57, + [60] = 42, + [61] = 57, + [62] = 42, + [63] = 42, + [64] = 33, + [65] = 57, + [66] = 38, + [67] = 42, + [68] = 49, + [69] = 49, + [70] = 70, + [71] = 42, + [72] = 42, + [73] = 42, + [74] = 38, + [75] = 49, + [76] = 49, + [77] = 38, + [78] = 38, + [79] = 33, + [80] = 42, + [81] = 42, + [82] = 38, + [83] = 57, + [84] = 42, + [85] = 42, + [86] = 86, + [87] = 42, + [88] = 42, + [89] = 38, + [90] = 90, + [91] = 91, + [92] = 92, + [93] = 93, + [94] = 94, + [95] = 95, + [96] = 96, + [97] = 94, + [98] = 95, + [99] = 92, + [100] = 93, + [101] = 96, + [102] = 95, + [103] = 96, + [104] = 94, + [105] = 96, + [106] = 96, + [107] = 95, + [108] = 93, + [109] = 92, + [110] = 93, + [111] = 92, + [112] = 94, + [113] = 92, + [114] = 95, + [115] = 93, + [116] = 94, + [117] = 92, + [118] = 93, + [119] = 95, + [120] = 94, + [121] = 96, + [122] = 122, + [123] = 123, + [124] = 123, + [125] = 123, + [126] = 123, + [127] = 123, + [128] = 123, + [129] = 123, + [130] = 130, + [131] = 130, + [132] = 130, + [133] = 130, + [134] = 130, + [135] = 130, + [136] = 136, + [137] = 137, + [138] = 137, + [139] = 137, + [140] = 137, + [141] = 141, [142] = 142, - [143] = 143, - [144] = 144, - [145] = 145, - [146] = 146, + [143] = 142, + [144] = 142, + [145] = 142, + [146] = 142, [147] = 147, [148] = 148, [149] = 149, [150] = 150, [151] = 149, [152] = 152, - [153] = 153, - [154] = 154, + [153] = 152, + [154] = 152, [155] = 155, - [156] = 156, - [157] = 157, + [156] = 155, + [157] = 155, [158] = 158, [159] = 159, - [160] = 157, - [161] = 157, - [162] = 146, - [163] = 156, + [160] = 158, + [161] = 147, + [162] = 162, + [163] = 158, [164] = 164, - [165] = 165, - [166] = 143, - [167] = 155, - [168] = 145, - [169] = 154, - [170] = 170, - [171] = 158, - [172] = 149, - [173] = 142, - [174] = 174, - [175] = 175, + [165] = 147, + [166] = 166, + [167] = 162, + [168] = 168, + [169] = 169, + [170] = 150, + [171] = 168, + [172] = 169, + [173] = 173, + [174] = 168, + [175] = 148, [176] = 176, - [177] = 150, + [177] = 177, [178] = 178, - [179] = 170, - [180] = 143, - [181] = 165, - [182] = 164, - [183] = 159, - [184] = 144, - [185] = 148, - [186] = 147, - [187] = 187, - [188] = 145, - [189] = 154, - [190] = 152, - [191] = 150, - [192] = 153, - [193] = 155, - [194] = 150, - [195] = 154, - [196] = 146, - [197] = 156, - [198] = 175, - [199] = 153, - [200] = 152, - [201] = 178, - [202] = 146, - [203] = 176, - [204] = 187, - [205] = 145, - [206] = 149, - [207] = 147, - [208] = 176, - [209] = 148, - [210] = 187, - [211] = 144, - [212] = 146, - [213] = 159, - [214] = 178, - [215] = 158, - [216] = 158, - [217] = 156, - [218] = 155, - [219] = 174, - [220] = 157, + [179] = 179, + [180] = 180, + [181] = 147, + [182] = 150, + [183] = 183, + [184] = 184, + [185] = 164, + [186] = 150, + [187] = 149, + [188] = 188, + [189] = 179, + [190] = 168, + [191] = 191, + [192] = 184, + [193] = 191, + [194] = 173, + [195] = 183, + [196] = 173, + [197] = 183, + [198] = 198, + [199] = 198, + [200] = 149, + [201] = 168, + [202] = 150, + [203] = 177, + [204] = 177, + [205] = 158, + [206] = 159, + [207] = 183, + [208] = 162, + [209] = 149, + [210] = 166, + [211] = 147, + [212] = 159, + [213] = 188, + [214] = 188, + [215] = 183, + [216] = 166, + [217] = 166, + [218] = 152, + [219] = 180, + [220] = 149, [221] = 164, - [222] = 170, - [223] = 175, - [224] = 157, - [225] = 165, - [226] = 156, - [227] = 187, - [228] = 143, - [229] = 165, - [230] = 170, - [231] = 154, - [232] = 150, - [233] = 153, - [234] = 155, - [235] = 164, - [236] = 178, - [237] = 174, - [238] = 149, - [239] = 142, - [240] = 176, - [241] = 158, - [242] = 159, - [243] = 153, - [244] = 144, + [222] = 162, + [223] = 152, + [224] = 155, + [225] = 177, + [226] = 150, + [227] = 169, + [228] = 169, + [229] = 180, + [230] = 179, + [231] = 155, + [232] = 177, + [233] = 159, + [234] = 234, + [235] = 198, + [236] = 158, + [237] = 148, + [238] = 180, + [239] = 234, + [240] = 158, + [241] = 183, + [242] = 191, + [243] = 198, + [244] = 179, [245] = 152, - [246] = 146, - [247] = 175, - [248] = 174, - [249] = 142, - [250] = 152, - [251] = 176, - [252] = 148, - [253] = 149, - [254] = 147, - [255] = 187, - [256] = 175, - [257] = 150, - [258] = 178, - [259] = 145, - [260] = 154, - [261] = 174, - [262] = 142, - [263] = 152, - [264] = 158, - [265] = 156, - [266] = 153, - [267] = 170, - [268] = 155, - [269] = 143, - [270] = 165, - [271] = 164, - [272] = 142, - [273] = 174, - [274] = 175, - [275] = 159, - [276] = 144, - [277] = 176, - [278] = 148, - [279] = 157, - [280] = 178, - [281] = 170, - [282] = 143, - [283] = 165, - [284] = 164, - [285] = 159, - [286] = 144, - [287] = 148, - [288] = 147, - [289] = 187, - [290] = 147, - [291] = 291, - [292] = 292, - [293] = 293, - [294] = 294, - [295] = 292, - [296] = 292, - [297] = 292, - [298] = 294, - [299] = 292, - [300] = 300, - [301] = 291, - [302] = 294, - [303] = 292, - [304] = 292, - [305] = 294, - [306] = 292, - [307] = 292, - [308] = 294, - [309] = 294, - [310] = 294, - [311] = 294, - [312] = 294, - [313] = 291, - [314] = 314, - [315] = 314, - [316] = 316, - [317] = 314, - [318] = 318, - [319] = 314, - [320] = 316, - [321] = 314, - [322] = 316, - [323] = 316, + [246] = 155, + [247] = 198, + [248] = 159, + [249] = 234, + [250] = 147, + [251] = 179, + [252] = 184, + [253] = 234, + [254] = 178, + [255] = 149, + [256] = 188, + [257] = 164, + [258] = 162, + [259] = 173, + [260] = 179, + [261] = 191, + [262] = 162, + [263] = 234, + [264] = 184, + [265] = 183, + [266] = 169, + [267] = 166, + [268] = 177, + [269] = 148, + [270] = 178, + [271] = 169, + [272] = 148, + [273] = 176, + [274] = 198, + [275] = 164, + [276] = 176, + [277] = 168, + [278] = 176, + [279] = 166, + [280] = 180, + [281] = 178, + [282] = 148, + [283] = 176, + [284] = 148, + [285] = 178, + [286] = 188, + [287] = 176, + [288] = 178, + [289] = 173, + [290] = 166, + [291] = 180, + [292] = 176, + [293] = 178, + [294] = 234, + [295] = 169, + [296] = 173, + [297] = 188, + [298] = 162, + [299] = 180, + [300] = 147, + [301] = 158, + [302] = 164, + [303] = 191, + [304] = 198, + [305] = 184, + [306] = 184, + [307] = 191, + [308] = 173, + [309] = 179, + [310] = 164, + [311] = 168, + [312] = 191, + [313] = 184, + [314] = 159, + [315] = 155, + [316] = 152, + [317] = 177, + [318] = 159, + [319] = 150, + [320] = 234, + [321] = 321, + [322] = 322, + [323] = 322, [324] = 324, - [325] = 316, - [326] = 316, - [327] = 314, - [328] = 314, - [329] = 314, - [330] = 316, - [331] = 316, - [332] = 316, - [333] = 314, - [334] = 334, - [335] = 335, - [336] = 318, - [337] = 324, - [338] = 324, - [339] = 318, - [340] = 129, - [341] = 132, - [342] = 324, - [343] = 318, - [344] = 344, - [345] = 345, - [346] = 346, - [347] = 347, - [348] = 348, + [325] = 324, + [326] = 322, + [327] = 322, + [328] = 324, + [329] = 322, + [330] = 324, + [331] = 331, + [332] = 324, + [333] = 324, + [334] = 324, + [335] = 324, + [336] = 322, + [337] = 322, + [338] = 322, + [339] = 324, + [340] = 322, + [341] = 341, + [342] = 342, + [343] = 341, + [344] = 342, + [345] = 341, + [346] = 342, + [347] = 341, + [348] = 342, [349] = 349, - [350] = 350, - [351] = 351, - [352] = 352, + [350] = 349, + [351] = 349, + [352] = 349, [353] = 353, - [354] = 354, - [355] = 355, - [356] = 356, - [357] = 357, - [358] = 358, - [359] = 359, - [360] = 360, - [361] = 361, - [362] = 362, - [363] = 335, - [364] = 364, - [365] = 365, - [366] = 366, + [354] = 349, + [355] = 349, + [356] = 349, + [357] = 349, + [358] = 349, + [359] = 349, + [360] = 349, + [361] = 349, + [362] = 349, + [363] = 363, + [364] = 349, + [365] = 349, + [366] = 349, [367] = 367, - [368] = 334, + [368] = 368, [369] = 369, [370] = 370, [371] = 371, [372] = 372, [373] = 373, - [374] = 374, + [374] = 369, [375] = 375, - [376] = 376, - [377] = 377, + [376] = 372, + [377] = 368, [378] = 378, - [379] = 379, - [380] = 380, - [381] = 381, - [382] = 382, - [383] = 383, - [384] = 384, - [385] = 385, - [386] = 345, + [379] = 368, + [380] = 369, + [381] = 368, + [382] = 369, + [383] = 331, + [384] = 353, + [385] = 363, + [386] = 321, [387] = 387, [388] = 388, [389] = 389, @@ -4389,24 +4763,24 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [391] = 391, [392] = 392, [393] = 393, - [394] = 345, + [394] = 394, [395] = 395, [396] = 396, [397] = 397, - [398] = 398, - [399] = 345, + [398] = 371, + [399] = 399, [400] = 400, [401] = 401, - [402] = 345, + [402] = 402, [403] = 403, [404] = 404, - [405] = 405, + [405] = 367, [406] = 406, [407] = 407, - [408] = 345, + [408] = 408, [409] = 409, [410] = 410, - [411] = 345, + [411] = 411, [412] = 412, [413] = 413, [414] = 414, @@ -4415,42 +4789,42 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [417] = 417, [418] = 418, [419] = 419, - [420] = 345, - [421] = 345, + [420] = 420, + [421] = 421, [422] = 422, - [423] = 345, + [423] = 423, [424] = 424, [425] = 425, [426] = 426, [427] = 427, [428] = 428, [429] = 429, - [430] = 430, + [430] = 370, [431] = 431, [432] = 432, [433] = 433, [434] = 434, [435] = 435, - [436] = 334, + [436] = 436, [437] = 437, - [438] = 345, - [439] = 345, + [438] = 438, + [439] = 439, [440] = 440, [441] = 441, [442] = 442, [443] = 443, - [444] = 345, + [444] = 444, [445] = 445, [446] = 446, - [447] = 335, - [448] = 345, + [447] = 447, + [448] = 448, [449] = 449, [450] = 450, [451] = 451, [452] = 452, [453] = 453, [454] = 454, - [455] = 335, + [455] = 455, [456] = 456, [457] = 457, [458] = 458, @@ -4473,34 +4847,34 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [475] = 475, [476] = 476, [477] = 477, - [478] = 334, + [478] = 478, [479] = 479, [480] = 480, - [481] = 345, + [481] = 481, [482] = 482, [483] = 483, - [484] = 345, + [484] = 484, [485] = 485, [486] = 486, [487] = 487, [488] = 488, [489] = 489, - [490] = 129, + [490] = 490, [491] = 491, - [492] = 344, + [492] = 492, [493] = 493, [494] = 494, - [495] = 132, + [495] = 495, [496] = 496, [497] = 497, - [498] = 344, + [498] = 498, [499] = 499, [500] = 500, [501] = 501, [502] = 502, [503] = 503, - [504] = 129, - [505] = 132, + [504] = 504, + [505] = 505, [506] = 506, [507] = 507, [508] = 508, @@ -4514,14 +4888,14 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [516] = 516, [517] = 517, [518] = 518, - [519] = 519, + [519] = 516, [520] = 520, [521] = 521, - [522] = 522, + [522] = 387, [523] = 523, [524] = 524, [525] = 525, - [526] = 344, + [526] = 526, [527] = 527, [528] = 528, [529] = 529, @@ -4531,13 +4905,13 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [533] = 533, [534] = 534, [535] = 535, - [536] = 536, + [536] = 331, [537] = 537, - [538] = 538, - [539] = 503, - [540] = 540, - [541] = 541, - [542] = 542, + [538] = 321, + [539] = 516, + [540] = 530, + [541] = 528, + [542] = 528, [543] = 543, [544] = 544, [545] = 545, @@ -4547,6255 +4921,21848 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [549] = 549, [550] = 550, [551] = 551, - [552] = 552, - [553] = 553, - [554] = 554, - [555] = 555, - [556] = 372, - [557] = 458, - [558] = 405, - [559] = 412, - [560] = 360, - [561] = 406, - [562] = 441, - [563] = 366, - [564] = 407, - [565] = 397, - [566] = 396, - [567] = 395, - [568] = 410, - [569] = 415, - [570] = 416, - [571] = 392, - [572] = 418, - [573] = 419, - [574] = 365, - [575] = 352, - [576] = 413, - [577] = 422, - [578] = 375, - [579] = 483, - [580] = 472, - [581] = 425, - [582] = 426, - [583] = 468, - [584] = 453, - [585] = 427, - [586] = 428, - [587] = 348, - [588] = 348, - [589] = 352, - [590] = 453, - [591] = 468, - [592] = 365, - [593] = 429, - [594] = 441, - [595] = 430, - [596] = 360, - [597] = 431, - [598] = 432, - [599] = 433, - [600] = 480, - [601] = 375, - [602] = 483, - [603] = 434, - [604] = 435, - [605] = 437, - [606] = 440, - [607] = 450, - [608] = 442, - [609] = 443, - [610] = 445, - [611] = 446, - [612] = 449, - [613] = 364, - [614] = 451, - [615] = 454, - [616] = 456, - [617] = 458, - [618] = 459, - [619] = 460, - [620] = 461, - [621] = 464, - [622] = 391, - [623] = 393, - [624] = 466, - [625] = 467, - [626] = 471, - [627] = 472, - [628] = 473, - [629] = 406, - [630] = 407, - [631] = 410, - [632] = 474, - [633] = 415, - [634] = 416, - [635] = 418, - [636] = 419, - [637] = 475, - [638] = 477, - [639] = 422, - [640] = 425, - [641] = 426, - [642] = 427, - [643] = 428, - [644] = 429, - [645] = 430, - [646] = 431, - [647] = 432, - [648] = 433, - [649] = 434, - [650] = 435, - [651] = 437, - [652] = 440, - [653] = 442, - [654] = 443, - [655] = 445, - [656] = 446, - [657] = 449, - [658] = 451, - [659] = 454, - [660] = 456, - [661] = 458, - [662] = 459, - [663] = 460, - [664] = 461, - [665] = 464, - [666] = 466, - [667] = 479, - [668] = 668, - [669] = 467, - [670] = 471, - [671] = 465, - [672] = 473, - [673] = 482, - [674] = 474, - [675] = 475, - [676] = 477, - [677] = 470, - [678] = 479, - [679] = 469, - [680] = 393, - [681] = 482, - [682] = 465, - [683] = 470, - [684] = 469, - [685] = 372, - [686] = 463, - [687] = 391, - [688] = 463, - [689] = 462, - [690] = 457, - [691] = 424, - [692] = 462, - [693] = 417, - [694] = 414, - [695] = 346, - [696] = 409, - [697] = 457, - [698] = 424, - [699] = 404, - [700] = 403, - [701] = 401, - [702] = 400, - [703] = 398, - [704] = 390, - [705] = 387, - [706] = 385, - [707] = 417, - [708] = 414, - [709] = 384, - [710] = 383, - [711] = 382, - [712] = 381, - [713] = 380, - [714] = 379, - [715] = 378, - [716] = 346, - [717] = 476, - [718] = 377, - [719] = 373, - [720] = 409, - [721] = 371, - [722] = 370, - [723] = 369, - [724] = 367, - [725] = 362, - [726] = 361, - [727] = 452, - [728] = 347, + [552] = 516, + [553] = 530, + [554] = 530, + [555] = 528, + [556] = 363, + [557] = 557, + [558] = 558, + [559] = 559, + [560] = 560, + [561] = 528, + [562] = 562, + [563] = 530, + [564] = 564, + [565] = 565, + [566] = 566, + [567] = 567, + [568] = 363, + [569] = 569, + [570] = 353, + [571] = 571, + [572] = 516, + [573] = 353, + [574] = 574, + [575] = 575, + [576] = 516, + [577] = 577, + [578] = 578, + [579] = 579, + [580] = 580, + [581] = 581, + [582] = 582, + [583] = 353, + [584] = 584, + [585] = 585, + [586] = 586, + [587] = 587, + [588] = 530, + [589] = 589, + [590] = 363, + [591] = 591, + [592] = 592, + [593] = 516, + [594] = 594, + [595] = 595, + [596] = 528, + [597] = 528, + [598] = 530, + [599] = 599, + [600] = 600, + [601] = 601, + [602] = 602, + [603] = 603, + [604] = 462, + [605] = 402, + [606] = 489, + [607] = 607, + [608] = 490, + [609] = 492, + [610] = 610, + [611] = 496, + [612] = 612, + [613] = 610, + [614] = 503, + [615] = 511, + [616] = 389, + [617] = 610, + [618] = 512, + [619] = 371, + [620] = 479, + [621] = 472, + [622] = 469, + [623] = 468, + [624] = 624, + [625] = 466, + [626] = 427, + [627] = 426, + [628] = 425, + [629] = 399, + [630] = 394, + [631] = 463, + [632] = 470, + [633] = 461, + [634] = 486, + [635] = 624, + [636] = 423, + [637] = 401, + [638] = 429, + [639] = 400, + [640] = 393, + [641] = 460, + [642] = 624, + [643] = 431, + [644] = 458, + [645] = 457, + [646] = 367, + [647] = 456, + [648] = 449, + [649] = 448, + [650] = 447, + [651] = 390, + [652] = 432, + [653] = 391, + [654] = 434, + [655] = 446, + [656] = 445, + [657] = 440, + [658] = 437, + [659] = 438, + [660] = 488, + [661] = 498, + [662] = 624, + [663] = 367, + [664] = 436, + [665] = 435, + [666] = 433, + [667] = 424, + [668] = 439, + [669] = 421, + [670] = 504, + [671] = 441, + [672] = 487, + [673] = 485, + [674] = 443, + [675] = 484, + [676] = 610, + [677] = 388, + [678] = 610, + [679] = 428, + [680] = 624, + [681] = 508, + [682] = 444, + [683] = 465, + [684] = 494, + [685] = 419, + [686] = 509, + [687] = 392, + [688] = 624, + [689] = 510, + [690] = 507, + [691] = 395, + [692] = 407, + [693] = 411, + [694] = 412, + [695] = 396, + [696] = 413, + [697] = 624, + [698] = 142, + [699] = 483, + [700] = 414, + [701] = 397, + [702] = 420, + [703] = 415, + [704] = 482, + [705] = 416, + [706] = 417, + [707] = 506, + [708] = 418, + [709] = 422, + [710] = 408, + [711] = 409, + [712] = 370, + [713] = 410, + [714] = 450, + [715] = 451, + [716] = 371, + [717] = 610, + [718] = 452, + [719] = 453, + [720] = 370, + [721] = 505, + [722] = 478, + [723] = 502, + [724] = 442, + [725] = 501, + [726] = 454, + [727] = 455, + [728] = 476, [729] = 404, - [730] = 403, - [731] = 349, - [732] = 350, - [733] = 351, - [734] = 353, - [735] = 354, - [736] = 355, - [737] = 356, - [738] = 357, - [739] = 358, - [740] = 401, - [741] = 400, - [742] = 398, - [743] = 390, - [744] = 387, - [745] = 385, - [746] = 413, - [747] = 384, - [748] = 383, - [749] = 382, - [750] = 381, - [751] = 380, - [752] = 480, - [753] = 450, - [754] = 379, - [755] = 378, - [756] = 377, - [757] = 373, - [758] = 371, - [759] = 370, - [760] = 369, - [761] = 367, - [762] = 362, - [763] = 359, - [764] = 361, - [765] = 452, - [766] = 347, - [767] = 349, - [768] = 350, - [769] = 374, - [770] = 376, - [771] = 351, - [772] = 353, - [773] = 354, - [774] = 355, - [775] = 356, - [776] = 357, - [777] = 358, - [778] = 412, - [779] = 366, - [780] = 397, - [781] = 396, - [782] = 395, - [783] = 392, - [784] = 412, - [785] = 372, - [786] = 359, - [787] = 413, - [788] = 389, - [789] = 388, - [790] = 468, - [791] = 453, - [792] = 348, - [793] = 476, - [794] = 352, - [795] = 365, - [796] = 441, - [797] = 360, - [798] = 375, - [799] = 397, - [800] = 358, - [801] = 388, - [802] = 357, - [803] = 356, - [804] = 355, - [805] = 354, - [806] = 353, - [807] = 351, - [808] = 350, - [809] = 349, - [810] = 347, - [811] = 452, - [812] = 361, - [813] = 362, - [814] = 367, - [815] = 369, - [816] = 370, - [817] = 371, - [818] = 373, - [819] = 377, - [820] = 378, - [821] = 379, - [822] = 380, - [823] = 389, - [824] = 381, - [825] = 382, - [826] = 383, - [827] = 384, - [828] = 385, - [829] = 387, - [830] = 390, - [831] = 398, - [832] = 400, - [833] = 401, - [834] = 403, - [835] = 404, - [836] = 409, - [837] = 346, - [838] = 414, - [839] = 417, - [840] = 424, - [841] = 392, - [842] = 483, - [843] = 405, - [844] = 457, - [845] = 462, - [846] = 463, - [847] = 364, - [848] = 480, - [849] = 450, - [850] = 465, - [851] = 359, - [852] = 469, - [853] = 470, - [854] = 482, - [855] = 479, - [856] = 477, - [857] = 475, - [858] = 474, - [859] = 473, - [860] = 472, - [861] = 364, - [862] = 471, - [863] = 467, - [864] = 466, - [865] = 464, - [866] = 461, - [867] = 460, - [868] = 459, - [869] = 476, - [870] = 456, - [871] = 454, - [872] = 121, - [873] = 374, - [874] = 451, - [875] = 449, - [876] = 446, - [877] = 445, - [878] = 443, - [879] = 442, - [880] = 440, - [881] = 437, - [882] = 435, - [883] = 434, - [884] = 433, - [885] = 432, - [886] = 431, - [887] = 430, - [888] = 429, - [889] = 428, - [890] = 376, - [891] = 427, - [892] = 426, - [893] = 376, - [894] = 425, - [895] = 374, - [896] = 388, - [897] = 668, - [898] = 422, - [899] = 395, - [900] = 389, - [901] = 476, - [902] = 366, - [903] = 419, - [904] = 391, - [905] = 418, - [906] = 393, - [907] = 396, - [908] = 405, - [909] = 416, - [910] = 415, - [911] = 406, - [912] = 407, - [913] = 410, - [914] = 507, - [915] = 547, - [916] = 531, - [917] = 497, - [918] = 555, - [919] = 507, - [920] = 502, - [921] = 493, - [922] = 532, - [923] = 507, - [924] = 508, - [925] = 540, - [926] = 509, - [927] = 510, - [928] = 511, - [929] = 512, - [930] = 543, - [931] = 542, - [932] = 502, - [933] = 514, - [934] = 541, - [935] = 530, - [936] = 533, - [937] = 534, - [938] = 489, - [939] = 535, - [940] = 488, - [941] = 509, - [942] = 514, - [943] = 516, - [944] = 499, - [945] = 517, - [946] = 510, - [947] = 518, - [948] = 529, - [949] = 528, - [950] = 485, - [951] = 523, - [952] = 524, - [953] = 554, - [954] = 525, - [955] = 527, - [956] = 528, - [957] = 529, - [958] = 511, - [959] = 512, - [960] = 513, - [961] = 531, - [962] = 532, - [963] = 499, - [964] = 533, - [965] = 534, - [966] = 553, - [967] = 501, - [968] = 497, - [969] = 527, - [970] = 525, - [971] = 543, - [972] = 542, - [973] = 541, - [974] = 521, - [975] = 487, - [976] = 538, - [977] = 544, - [978] = 519, - [979] = 545, - [980] = 546, - [981] = 519, - [982] = 547, - [983] = 548, - [984] = 549, - [985] = 550, - [986] = 551, - [987] = 552, - [988] = 524, - [989] = 496, - [990] = 494, - [991] = 491, - [992] = 491, - [993] = 519, - [994] = 502, - [995] = 511, - [996] = 493, - [997] = 535, - [998] = 491, - [999] = 541, - [1000] = 542, - [1001] = 543, - [1002] = 523, - [1003] = 547, - [1004] = 546, - [1005] = 555, - [1006] = 497, - [1007] = 545, - [1008] = 489, - [1009] = 488, - [1010] = 485, - [1011] = 544, - [1012] = 518, - [1013] = 517, - [1014] = 538, - [1015] = 534, - [1016] = 516, - [1017] = 532, - [1018] = 521, - [1019] = 538, - [1020] = 529, - [1021] = 501, - [1022] = 528, - [1023] = 553, - [1024] = 522, - [1025] = 540, - [1026] = 486, - [1027] = 518, - [1028] = 544, - [1029] = 554, - [1030] = 487, - [1031] = 517, - [1032] = 516, - [1033] = 506, - [1034] = 537, - [1035] = 536, - [1036] = 501, - [1037] = 530, - [1038] = 520, - [1039] = 515, - [1040] = 499, - [1041] = 514, - [1042] = 515, - [1043] = 513, - [1044] = 520, - [1045] = 530, - [1046] = 508, - [1047] = 512, - [1048] = 513, - [1049] = 509, - [1050] = 494, - [1051] = 553, - [1052] = 493, - [1053] = 506, - [1054] = 496, - [1055] = 552, - [1056] = 510, - [1057] = 508, - [1058] = 551, - [1059] = 485, - [1060] = 523, - [1061] = 524, - [1062] = 525, - [1063] = 527, - [1064] = 536, - [1065] = 531, - [1066] = 537, - [1067] = 533, - [1068] = 550, - [1069] = 549, - [1070] = 548, - [1071] = 489, - [1072] = 548, - [1073] = 549, - [1074] = 550, - [1075] = 551, - [1076] = 552, - [1077] = 496, - [1078] = 494, - [1079] = 535, - [1080] = 555, - [1081] = 522, - [1082] = 486, - [1083] = 537, - [1084] = 536, - [1085] = 520, - [1086] = 515, - [1087] = 554, - [1088] = 506, - [1089] = 486, - [1090] = 487, - [1091] = 521, - [1092] = 540, - [1093] = 522, - [1094] = 545, - [1095] = 546, - [1096] = 488, - [1097] = 1097, - [1098] = 1098, - [1099] = 1099, - [1100] = 1098, - [1101] = 1097, - [1102] = 121, - [1103] = 1097, - [1104] = 1099, - [1105] = 1098, - [1106] = 1099, - [1107] = 1098, - [1108] = 1097, - [1109] = 1098, - [1110] = 1099, - [1111] = 1098, - [1112] = 1097, - [1113] = 121, - [1114] = 1099, - [1115] = 1099, - [1116] = 1097, - [1117] = 121, - [1118] = 1118, - [1119] = 1118, - [1120] = 1118, - [1121] = 1118, - [1122] = 1118, - [1123] = 1118, - [1124] = 1118, - [1125] = 1125, - [1126] = 1125, - [1127] = 1125, - [1128] = 1125, - [1129] = 1125, - [1130] = 1125, - [1131] = 1125, - [1132] = 1132, - [1133] = 1133, - [1134] = 1134, - [1135] = 1134, - [1136] = 1136, - [1137] = 318, - [1138] = 1138, - [1139] = 1139, - [1140] = 1140, - [1141] = 1139, - [1142] = 1142, - [1143] = 1143, - [1144] = 1144, - [1145] = 1140, - [1146] = 1146, - [1147] = 1147, - [1148] = 1147, - [1149] = 1146, - [1150] = 324, - [1151] = 1151, - [1152] = 1152, - [1153] = 1153, - [1154] = 1154, - [1155] = 1155, - [1156] = 1156, - [1157] = 1155, - [1158] = 1156, - [1159] = 1155, - [1160] = 1155, - [1161] = 1156, - [1162] = 1156, - [1163] = 1155, - [1164] = 1155, - [1165] = 1165, - [1166] = 1155, - [1167] = 1156, - [1168] = 1155, - [1169] = 1156, - [1170] = 1156, - [1171] = 1156, - [1172] = 1156, - [1173] = 1155, - [1174] = 132, - [1175] = 1175, - [1176] = 1175, - [1177] = 344, - [1178] = 1178, - [1179] = 1175, - [1180] = 1175, - [1181] = 129, - [1182] = 1175, - [1183] = 1175, - [1184] = 357, - [1185] = 443, - [1186] = 1136, - [1187] = 1187, - [1188] = 450, - [1189] = 480, - [1190] = 1190, - [1191] = 1190, - [1192] = 1187, - [1193] = 358, - [1194] = 356, - [1195] = 355, - [1196] = 372, - [1197] = 374, - [1198] = 354, - [1199] = 376, - [1200] = 412, - [1201] = 353, - [1202] = 351, - [1203] = 350, - [1204] = 1187, - [1205] = 349, - [1206] = 347, - [1207] = 452, - [1208] = 361, - [1209] = 362, - [1210] = 367, - [1211] = 369, - [1212] = 1187, - [1213] = 370, - [1214] = 1190, - [1215] = 371, - [1216] = 373, - [1217] = 377, - [1218] = 1190, - [1219] = 1187, - [1220] = 1187, - [1221] = 378, - [1222] = 379, - [1223] = 1190, - [1224] = 366, - [1225] = 397, - [1226] = 380, - [1227] = 396, - [1228] = 395, - [1229] = 392, - [1230] = 413, - [1231] = 468, - [1232] = 381, - [1233] = 453, - [1234] = 348, - [1235] = 352, - [1236] = 365, - [1237] = 441, - [1238] = 382, - [1239] = 383, - [1240] = 360, - [1241] = 375, - [1242] = 483, - [1243] = 1133, - [1244] = 384, - [1245] = 359, - [1246] = 385, - [1247] = 364, - [1248] = 388, - [1249] = 389, - [1250] = 387, - [1251] = 390, - [1252] = 391, - [1253] = 393, - [1254] = 398, - [1255] = 400, - [1256] = 405, - [1257] = 406, - [1258] = 401, - [1259] = 407, - [1260] = 410, - [1261] = 415, - [1262] = 416, - [1263] = 418, - [1264] = 1132, - [1265] = 419, - [1266] = 422, - [1267] = 403, - [1268] = 425, - [1269] = 426, - [1270] = 427, - [1271] = 428, - [1272] = 429, - [1273] = 430, - [1274] = 431, - [1275] = 432, - [1276] = 433, - [1277] = 434, - [1278] = 404, - [1279] = 435, - [1280] = 437, - [1281] = 440, - [1282] = 409, - [1283] = 442, - [1284] = 1190, - [1285] = 445, - [1286] = 446, - [1287] = 449, - [1288] = 451, - [1289] = 454, - [1290] = 456, - [1291] = 458, - [1292] = 459, - [1293] = 460, - [1294] = 461, - [1295] = 464, - [1296] = 466, - [1297] = 467, - [1298] = 471, - [1299] = 472, - [1300] = 473, - [1301] = 474, - [1302] = 475, - [1303] = 477, - [1304] = 479, - [1305] = 482, - [1306] = 470, - [1307] = 469, - [1308] = 465, - [1309] = 463, - [1310] = 462, - [1311] = 457, - [1312] = 424, - [1313] = 417, - [1314] = 414, - [1315] = 346, - [1316] = 1316, - [1317] = 1317, - [1318] = 1317, - [1319] = 1319, - [1320] = 1319, - [1321] = 1319, - [1322] = 1319, - [1323] = 1319, - [1324] = 1319, - [1325] = 1317, - [1326] = 1319, - [1327] = 1319, - [1328] = 1317, - [1329] = 1319, - [1330] = 1317, - [1331] = 1331, - [1332] = 1332, - [1333] = 1331, - [1334] = 1334, - [1335] = 1331, - [1336] = 1332, - [1337] = 1337, - [1338] = 1338, - [1339] = 1334, - [1340] = 1337, - [1341] = 1334, - [1342] = 1338, - [1343] = 1337, - [1344] = 1338, - [1345] = 1338, - [1346] = 1337, - [1347] = 1337, - [1348] = 1334, - [1349] = 1338, - [1350] = 1350, - [1351] = 1351, - [1352] = 1338, - [1353] = 1332, - [1354] = 1334, - [1355] = 1334, - [1356] = 1331, - [1357] = 1357, - [1358] = 1337, - [1359] = 1332, - [1360] = 1331, - [1361] = 1361, - [1362] = 1332, - [1363] = 1338, - [1364] = 1332, - [1365] = 1357, - [1366] = 1332, - [1367] = 1331, - [1368] = 1337, - [1369] = 1338, - [1370] = 1331, - [1371] = 1331, - [1372] = 1334, - [1373] = 1332, - [1374] = 1331, - [1375] = 1338, - [1376] = 1337, - [1377] = 1332, - [1378] = 1378, - [1379] = 1357, - [1380] = 1337, - [1381] = 1381, - [1382] = 1382, - [1383] = 1383, - [1384] = 1384, - [1385] = 1383, - [1386] = 1386, - [1387] = 1387, - [1388] = 1383, - [1389] = 1383, - [1390] = 1383, - [1391] = 1391, - [1392] = 1384, - [1393] = 1393, - [1394] = 1394, - [1395] = 1387, - [1396] = 1391, - [1397] = 1393, - [1398] = 1386, - [1399] = 1382, + [730] = 624, + [731] = 403, + [732] = 406, + [733] = 610, + [734] = 500, + [735] = 495, + [736] = 610, + [737] = 491, + [738] = 475, + [739] = 499, + [740] = 624, + [741] = 477, + [742] = 473, + [743] = 610, + [744] = 471, + [745] = 474, + [746] = 493, + [747] = 497, + [748] = 464, + [749] = 480, + [750] = 481, + [751] = 459, + [752] = 467, + [753] = 603, + [754] = 578, + [755] = 589, + [756] = 548, + [757] = 547, + [758] = 577, + [759] = 575, + [760] = 584, + [761] = 520, + [762] = 579, + [763] = 521, + [764] = 524, + [765] = 558, + [766] = 557, + [767] = 546, + [768] = 535, + [769] = 525, + [770] = 565, + [771] = 566, + [772] = 331, + [773] = 580, + [774] = 587, + [775] = 600, + [776] = 601, + [777] = 599, + [778] = 602, + [779] = 514, + [780] = 592, + [781] = 571, + [782] = 513, + [783] = 591, + [784] = 532, + [785] = 387, + [786] = 529, + [787] = 567, + [788] = 564, + [789] = 586, + [790] = 562, + [791] = 594, + [792] = 559, + [793] = 549, + [794] = 543, + [795] = 534, + [796] = 518, + [797] = 523, + [798] = 550, + [799] = 551, + [800] = 321, + [801] = 367, + [802] = 595, + [803] = 585, + [804] = 387, + [805] = 545, + [806] = 582, + [807] = 515, + [808] = 517, + [809] = 533, + [810] = 331, + [811] = 371, + [812] = 526, + [813] = 387, + [814] = 537, + [815] = 544, + [816] = 321, + [817] = 527, + [818] = 560, + [819] = 531, + [820] = 569, + [821] = 581, + [822] = 574, + [823] = 444, + [824] = 422, + [825] = 455, + [826] = 459, + [827] = 470, + [828] = 471, + [829] = 409, + [830] = 410, + [831] = 473, + [832] = 475, + [833] = 491, + [834] = 476, + [835] = 478, + [836] = 482, + [837] = 483, + [838] = 484, + [839] = 485, + [840] = 487, + [841] = 414, + [842] = 488, + [843] = 489, + [844] = 490, + [845] = 492, + [846] = 496, + [847] = 503, + [848] = 504, + [849] = 399, + [850] = 402, + [851] = 508, + [852] = 509, + [853] = 510, + [854] = 425, + [855] = 397, + [856] = 426, + [857] = 396, + [858] = 395, + [859] = 427, + [860] = 442, + [861] = 142, + [862] = 402, + [863] = 391, + [864] = 507, + [865] = 506, + [866] = 505, + [867] = 502, + [868] = 501, + [869] = 500, + [870] = 499, + [871] = 390, + [872] = 498, + [873] = 497, + [874] = 495, + [875] = 494, + [876] = 493, + [877] = 486, + [878] = 481, + [879] = 480, + [880] = 479, + [881] = 472, + [882] = 512, + [883] = 389, + [884] = 442, + [885] = 399, + [886] = 393, + [887] = 511, + [888] = 406, + [889] = 469, + [890] = 468, + [891] = 466, + [892] = 465, + [893] = 463, + [894] = 462, + [895] = 400, + [896] = 460, + [897] = 458, + [898] = 428, + [899] = 457, + [900] = 456, + [901] = 449, + [902] = 448, + [903] = 429, + [904] = 447, + [905] = 446, + [906] = 445, + [907] = 440, + [908] = 437, + [909] = 431, + [910] = 436, + [911] = 432, + [912] = 418, + [913] = 435, + [914] = 433, + [915] = 424, + [916] = 421, + [917] = 417, + [918] = 388, + [919] = 419, + [920] = 451, + [921] = 408, + [922] = 394, + [923] = 401, + [924] = 404, + [925] = 392, + [926] = 453, + [927] = 407, + [928] = 416, + [929] = 392, + [930] = 452, + [931] = 423, + [932] = 423, + [933] = 434, + [934] = 438, + [935] = 415, + [936] = 394, + [937] = 439, + [938] = 395, + [939] = 441, + [940] = 396, + [941] = 397, + [942] = 399, + [943] = 428, + [944] = 413, + [945] = 412, + [946] = 443, + [947] = 419, + [948] = 444, + [949] = 388, + [950] = 411, + [951] = 450, + [952] = 451, + [953] = 411, + [954] = 424, + [955] = 433, + [956] = 435, + [957] = 452, + [958] = 436, + [959] = 437, + [960] = 453, + [961] = 407, + [962] = 425, + [963] = 408, + [964] = 454, + [965] = 426, + [966] = 455, + [967] = 409, + [968] = 410, + [969] = 459, + [970] = 440, + [971] = 425, + [972] = 426, + [973] = 427, + [974] = 427, + [975] = 445, + [976] = 391, + [977] = 470, + [978] = 450, + [979] = 446, + [980] = 447, + [981] = 444, + [982] = 397, + [983] = 403, + [984] = 448, + [985] = 449, + [986] = 456, + [987] = 443, + [988] = 464, + [989] = 396, + [990] = 467, + [991] = 457, + [992] = 471, + [993] = 473, + [994] = 458, + [995] = 412, + [996] = 395, + [997] = 394, + [998] = 413, + [999] = 410, + [1000] = 441, + [1001] = 460, + [1002] = 461, + [1003] = 402, + [1004] = 462, + [1005] = 463, + [1006] = 465, + [1007] = 401, + [1008] = 475, + [1009] = 474, + [1010] = 422, + [1011] = 477, + [1012] = 491, + [1013] = 476, + [1014] = 454, + [1015] = 478, + [1016] = 482, + [1017] = 466, + [1018] = 468, + [1019] = 483, + [1020] = 420, + [1021] = 469, + [1022] = 472, + [1023] = 479, + [1024] = 512, + [1025] = 439, + [1026] = 389, + [1027] = 438, + [1028] = 511, + [1029] = 480, + [1030] = 414, + [1031] = 392, + [1032] = 415, + [1033] = 484, + [1034] = 485, + [1035] = 390, + [1036] = 434, + [1037] = 481, + [1038] = 393, + [1039] = 400, + [1040] = 406, + [1041] = 432, + [1042] = 431, + [1043] = 487, + [1044] = 486, + [1045] = 493, + [1046] = 391, + [1047] = 488, + [1048] = 401, + [1049] = 494, + [1050] = 495, + [1051] = 489, + [1052] = 474, + [1053] = 497, + [1054] = 498, + [1055] = 490, + [1056] = 429, + [1057] = 492, + [1058] = 496, + [1059] = 503, + [1060] = 504, + [1061] = 499, + [1062] = 390, + [1063] = 508, + [1064] = 500, + [1065] = 418, + [1066] = 417, + [1067] = 393, + [1068] = 416, + [1069] = 477, + [1070] = 400, + [1071] = 509, + [1072] = 420, + [1073] = 510, + [1074] = 419, + [1075] = 388, + [1076] = 511, + [1077] = 501, + [1078] = 389, + [1079] = 502, + [1080] = 512, + [1081] = 421, + [1082] = 424, + [1083] = 433, + [1084] = 435, + [1085] = 505, + [1086] = 506, + [1087] = 436, + [1088] = 437, + [1089] = 467, + [1090] = 464, + [1091] = 403, + [1092] = 403, + [1093] = 440, + [1094] = 507, + [1095] = 510, + [1096] = 445, + [1097] = 509, + [1098] = 508, + [1099] = 504, + [1100] = 446, + [1101] = 503, + [1102] = 404, + [1103] = 496, + [1104] = 447, + [1105] = 416, + [1106] = 448, + [1107] = 449, + [1108] = 456, + [1109] = 457, + [1110] = 492, + [1111] = 464, + [1112] = 458, + [1113] = 417, + [1114] = 490, + [1115] = 489, + [1116] = 467, + [1117] = 488, + [1118] = 415, + [1119] = 460, + [1120] = 487, + [1121] = 403, + [1122] = 461, + [1123] = 442, + [1124] = 414, + [1125] = 462, + [1126] = 422, + [1127] = 485, + [1128] = 409, + [1129] = 463, + [1130] = 484, + [1131] = 483, + [1132] = 482, + [1133] = 478, + [1134] = 476, + [1135] = 491, + [1136] = 418, + [1137] = 423, + [1138] = 475, + [1139] = 413, + [1140] = 465, + [1141] = 473, + [1142] = 471, + [1143] = 507, + [1144] = 506, + [1145] = 406, + [1146] = 466, + [1147] = 468, + [1148] = 470, + [1149] = 459, + [1150] = 412, + [1151] = 455, + [1152] = 454, + [1153] = 453, + [1154] = 411, + [1155] = 477, + [1156] = 452, + [1157] = 474, + [1158] = 407, + [1159] = 469, + [1160] = 505, + [1161] = 461, + [1162] = 502, + [1163] = 421, + [1164] = 451, + [1165] = 472, + [1166] = 479, + [1167] = 480, + [1168] = 481, + [1169] = 450, + [1170] = 486, + [1171] = 443, + [1172] = 441, + [1173] = 501, + [1174] = 500, + [1175] = 499, + [1176] = 439, + [1177] = 438, + [1178] = 434, + [1179] = 432, + [1180] = 431, + [1181] = 429, + [1182] = 428, + [1183] = 420, + [1184] = 493, + [1185] = 494, + [1186] = 498, + [1187] = 404, + [1188] = 497, + [1189] = 142, + [1190] = 495, + [1191] = 408, + [1192] = 575, + [1193] = 586, + [1194] = 571, + [1195] = 545, + [1196] = 513, + [1197] = 532, + [1198] = 600, + [1199] = 578, + [1200] = 581, + [1201] = 585, + [1202] = 595, + [1203] = 594, + [1204] = 591, + [1205] = 565, + [1206] = 514, + [1207] = 602, + [1208] = 599, + [1209] = 520, + [1210] = 558, + [1211] = 601, + [1212] = 600, + [1213] = 599, + [1214] = 521, + [1215] = 574, + [1216] = 587, + [1217] = 584, + [1218] = 569, + [1219] = 524, + [1220] = 548, + [1221] = 580, + [1222] = 547, + [1223] = 579, + [1224] = 578, + [1225] = 579, + [1226] = 567, + [1227] = 581, + [1228] = 566, + [1229] = 584, + [1230] = 585, + [1231] = 545, + [1232] = 547, + [1233] = 548, + [1234] = 601, + [1235] = 589, + [1236] = 557, + [1237] = 557, + [1238] = 602, + [1239] = 564, + [1240] = 562, + [1241] = 514, + [1242] = 532, + [1243] = 529, + [1244] = 546, + [1245] = 523, + [1246] = 546, + [1247] = 535, + [1248] = 535, + [1249] = 525, + [1250] = 518, + [1251] = 550, + [1252] = 574, + [1253] = 529, + [1254] = 558, + [1255] = 569, + [1256] = 595, + [1257] = 592, + [1258] = 560, + [1259] = 560, + [1260] = 525, + [1261] = 559, + [1262] = 524, + [1263] = 523, + [1264] = 577, + [1265] = 521, + [1266] = 520, + [1267] = 575, + [1268] = 577, + [1269] = 582, + [1270] = 586, + [1271] = 589, + [1272] = 534, + [1273] = 543, + [1274] = 603, + [1275] = 592, + [1276] = 549, + [1277] = 551, + [1278] = 533, + [1279] = 559, + [1280] = 562, + [1281] = 603, + [1282] = 531, + [1283] = 515, + [1284] = 517, + [1285] = 515, + [1286] = 517, + [1287] = 518, + [1288] = 551, + [1289] = 142, + [1290] = 564, + [1291] = 567, + [1292] = 526, + [1293] = 565, + [1294] = 527, + [1295] = 513, + [1296] = 549, + [1297] = 571, + [1298] = 566, + [1299] = 526, + [1300] = 527, + [1301] = 582, + [1302] = 531, + [1303] = 580, + [1304] = 587, + [1305] = 544, + [1306] = 543, + [1307] = 550, + [1308] = 534, + [1309] = 537, + [1310] = 533, + [1311] = 591, + [1312] = 594, + [1313] = 544, + [1314] = 537, + [1315] = 557, + [1316] = 518, + [1317] = 600, + [1318] = 595, + [1319] = 531, + [1320] = 599, + [1321] = 585, + [1322] = 581, + [1323] = 578, + [1324] = 514, + [1325] = 594, + [1326] = 549, + [1327] = 574, + [1328] = 603, + [1329] = 587, + [1330] = 584, + [1331] = 543, + [1332] = 580, + [1333] = 523, + [1334] = 534, + [1335] = 601, + [1336] = 545, + [1337] = 550, + [1338] = 591, + [1339] = 566, + [1340] = 565, + [1341] = 571, + [1342] = 558, + [1343] = 529, + [1344] = 537, + [1345] = 532, + [1346] = 513, + [1347] = 546, + [1348] = 544, + [1349] = 535, + [1350] = 527, + [1351] = 525, + [1352] = 524, + [1353] = 521, + [1354] = 526, + [1355] = 1355, + [1356] = 592, + [1357] = 517, + [1358] = 520, + [1359] = 515, + [1360] = 602, + [1361] = 569, + [1362] = 567, + [1363] = 575, + [1364] = 579, + [1365] = 564, + [1366] = 533, + [1367] = 562, + [1368] = 589, + [1369] = 560, + [1370] = 559, + [1371] = 547, + [1372] = 548, + [1373] = 586, + [1374] = 582, + [1375] = 577, + [1376] = 551, + [1377] = 1377, + [1378] = 1377, + [1379] = 1379, + [1380] = 1379, + [1381] = 1379, + [1382] = 1379, + [1383] = 1379, + [1384] = 1379, + [1385] = 1379, + [1386] = 1379, + [1387] = 1379, + [1388] = 1388, + [1389] = 1388, + [1390] = 1388, + [1391] = 1388, + [1392] = 1388, + [1393] = 1388, + [1394] = 1388, + [1395] = 1388, + [1396] = 1388, + [1397] = 1397, + [1398] = 1398, + [1399] = 1398, [1400] = 1400, [1401] = 1401, - [1402] = 1381, - [1403] = 1384, - [1404] = 1400, - [1405] = 1394, - [1406] = 1401, + [1402] = 1402, + [1403] = 1403, + [1404] = 1404, + [1405] = 1405, + [1406] = 1405, [1407] = 1401, - [1408] = 1400, - [1409] = 1381, - [1410] = 1386, + [1408] = 1404, + [1409] = 1409, + [1410] = 1410, [1411] = 1411, - [1412] = 1412, - [1413] = 1382, - [1414] = 1391, + [1412] = 1410, + [1413] = 1413, + [1414] = 1414, [1415] = 1415, - [1416] = 1401, - [1417] = 1411, - [1418] = 1391, - [1419] = 1391, - [1420] = 1387, - [1421] = 1421, - [1422] = 1393, - [1423] = 1393, - [1424] = 1393, - [1425] = 1425, - [1426] = 1394, - [1427] = 1387, - [1428] = 1401, - [1429] = 1394, - [1430] = 1430, - [1431] = 1383, - [1432] = 1383, - [1433] = 1400, - [1434] = 1411, - [1435] = 1435, - [1436] = 1387, - [1437] = 1383, - [1438] = 1394, - [1439] = 1387, - [1440] = 1382, - [1441] = 1381, - [1442] = 1400, - [1443] = 1400, - [1444] = 1382, - [1445] = 1401, - [1446] = 1381, - [1447] = 1394, - [1448] = 1393, - [1449] = 1391, - [1450] = 1383, - [1451] = 1381, - [1452] = 1382, - [1453] = 1453, - [1454] = 1454, - [1455] = 1455, - [1456] = 1456, - [1457] = 1454, - [1458] = 1456, - [1459] = 1455, - [1460] = 1454, - [1461] = 1461, - [1462] = 1462, - [1463] = 1463, - [1464] = 1464, - [1465] = 1465, - [1466] = 1465, - [1467] = 1454, - [1468] = 1468, - [1469] = 1469, - [1470] = 1470, - [1471] = 1471, - [1472] = 1472, - [1473] = 1473, - [1474] = 1455, - [1475] = 1465, - [1476] = 1476, - [1477] = 1477, - [1478] = 1478, - [1479] = 1479, - [1480] = 1480, - [1481] = 1481, - [1482] = 1482, - [1483] = 1463, - [1484] = 1484, - [1485] = 1485, - [1486] = 1486, - [1487] = 1487, - [1488] = 1465, - [1489] = 1473, - [1490] = 1472, - [1491] = 1454, - [1492] = 1492, - [1493] = 1456, - [1494] = 1494, - [1495] = 1455, - [1496] = 1454, - [1497] = 1454, - [1498] = 1465, - [1499] = 1456, - [1500] = 1455, - [1501] = 1456, - [1502] = 1502, - [1503] = 1503, - [1504] = 1504, - [1505] = 1505, - [1506] = 1454, - [1507] = 1507, - [1508] = 1508, - [1509] = 1465, - [1510] = 1510, - [1511] = 1504, - [1512] = 1512, - [1513] = 1465, - [1514] = 1514, - [1515] = 1515, - [1516] = 1465, - [1517] = 1454, - [1518] = 1518, - [1519] = 1519, - [1520] = 1515, - [1521] = 1521, - [1522] = 1522, - [1523] = 1465, - [1524] = 1463, - [1525] = 1525, - [1526] = 1526, - [1527] = 1527, - [1528] = 1528, - [1529] = 1529, - [1530] = 1530, - [1531] = 1531, - [1532] = 1526, - [1533] = 1533, - [1534] = 1534, - [1535] = 1535, - [1536] = 1533, - [1537] = 1537, - [1538] = 1538, - [1539] = 1534, - [1540] = 1540, - [1541] = 1530, - [1542] = 1533, - [1543] = 1534, - [1544] = 1544, - [1545] = 1545, - [1546] = 1546, - [1547] = 1533, - [1548] = 1534, - [1549] = 1544, - [1550] = 1527, - [1551] = 1529, - [1552] = 1531, - [1553] = 1526, - [1554] = 1537, - [1555] = 1544, - [1556] = 1556, - [1557] = 1530, - [1558] = 1527, - [1559] = 1527, - [1560] = 1529, - [1561] = 1556, - [1562] = 1529, - [1563] = 1538, - [1564] = 1564, - [1565] = 1544, - [1566] = 1527, - [1567] = 1567, - [1568] = 1568, - [1569] = 1569, - [1570] = 1545, - [1571] = 1564, - [1572] = 1545, - [1573] = 1529, - [1574] = 1531, - [1575] = 1567, - [1576] = 1576, - [1577] = 1577, - [1578] = 1568, - [1579] = 1530, - [1580] = 1580, - [1581] = 1540, - [1582] = 1525, - [1583] = 1576, - [1584] = 1577, - [1585] = 1534, - [1586] = 1546, - [1587] = 1528, - [1588] = 1531, - [1589] = 1530, - [1590] = 1526, - [1591] = 1526, - [1592] = 1545, - [1593] = 1537, - [1594] = 1533, - [1595] = 1546, - [1596] = 1576, - [1597] = 1540, - [1598] = 1567, - [1599] = 1556, - [1600] = 1564, + [1416] = 1416, + [1417] = 1416, + [1418] = 1418, + [1419] = 1416, + [1420] = 1420, + [1421] = 1420, + [1422] = 1416, + [1423] = 1420, + [1424] = 1416, + [1425] = 1420, + [1426] = 1416, + [1427] = 1427, + [1428] = 1416, + [1429] = 1420, + [1430] = 1416, + [1431] = 1420, + [1432] = 1416, + [1433] = 1420, + [1434] = 1420, + [1435] = 1420, + [1436] = 1436, + [1437] = 1436, + [1438] = 1438, + [1439] = 1436, + [1440] = 353, + [1441] = 1436, + [1442] = 363, + [1443] = 1436, + [1444] = 1436, + [1445] = 1445, + [1446] = 1446, + [1447] = 1445, + [1448] = 1445, + [1449] = 1445, + [1450] = 1446, + [1451] = 1446, + [1452] = 1445, + [1453] = 1446, + [1454] = 1445, + [1455] = 1446, + [1456] = 1446, + [1457] = 1457, + [1458] = 321, + [1459] = 331, + [1460] = 387, + [1461] = 496, + [1462] = 509, + [1463] = 389, + [1464] = 483, + [1465] = 482, + [1466] = 478, + [1467] = 476, + [1468] = 491, + [1469] = 475, + [1470] = 473, + [1471] = 471, + [1472] = 470, + [1473] = 459, + [1474] = 455, + [1475] = 454, + [1476] = 453, + [1477] = 452, + [1478] = 451, + [1479] = 397, + [1480] = 450, + [1481] = 396, + [1482] = 395, + [1483] = 438, + [1484] = 444, + [1485] = 443, + [1486] = 393, + [1487] = 441, + [1488] = 439, + [1489] = 400, + [1490] = 401, + [1491] = 431, + [1492] = 429, + [1493] = 408, + [1494] = 428, + [1495] = 485, + [1496] = 481, + [1497] = 494, + [1498] = 488, + [1499] = 489, + [1500] = 495, + [1501] = 490, + [1502] = 394, + [1503] = 420, + [1504] = 492, + [1505] = 511, + [1506] = 497, + [1507] = 392, + [1508] = 503, + [1509] = 418, + [1510] = 417, + [1511] = 504, + [1512] = 402, + [1513] = 512, + [1514] = 464, + [1515] = 508, + [1516] = 486, + [1517] = 493, + [1518] = 467, + [1519] = 419, + [1520] = 388, + [1521] = 416, + [1522] = 423, + [1523] = 399, + [1524] = 484, + [1525] = 477, + [1526] = 421, + [1527] = 474, + [1528] = 424, + [1529] = 510, + [1530] = 422, + [1531] = 433, + [1532] = 406, + [1533] = 1414, + [1534] = 415, + [1535] = 435, + [1536] = 436, + [1537] = 437, + [1538] = 390, + [1539] = 440, + [1540] = 427, + [1541] = 426, + [1542] = 445, + [1543] = 425, + [1544] = 446, + [1545] = 391, + [1546] = 487, + [1547] = 447, + [1548] = 507, + [1549] = 506, + [1550] = 448, + [1551] = 505, + [1552] = 449, + [1553] = 414, + [1554] = 502, + [1555] = 413, + [1556] = 456, + [1557] = 457, + [1558] = 432, + [1559] = 458, + [1560] = 460, + [1561] = 461, + [1562] = 412, + [1563] = 480, + [1564] = 462, + [1565] = 501, + [1566] = 404, + [1567] = 500, + [1568] = 411, + [1569] = 463, + [1570] = 407, + [1571] = 465, + [1572] = 410, + [1573] = 409, + [1574] = 499, + [1575] = 434, + [1576] = 498, + [1577] = 466, + [1578] = 468, + [1579] = 442, + [1580] = 469, + [1581] = 1413, + [1582] = 472, + [1583] = 1427, + [1584] = 479, + [1585] = 1585, + [1586] = 1586, + [1587] = 1586, + [1588] = 1586, + [1589] = 1589, + [1590] = 1586, + [1591] = 1589, + [1592] = 1589, + [1593] = 1589, + [1594] = 1586, + [1595] = 1586, + [1596] = 1586, + [1597] = 1586, + [1598] = 1589, + [1599] = 1586, + [1600] = 1589, [1601] = 1601, - [1602] = 1537, - [1603] = 1576, - [1604] = 1604, - [1605] = 1546, - [1606] = 1525, - [1607] = 1546, - [1608] = 1608, + [1602] = 1602, + [1603] = 1603, + [1604] = 1601, + [1605] = 1601, + [1606] = 1606, + [1607] = 1607, + [1608] = 1607, [1609] = 1609, - [1610] = 1533, - [1611] = 1568, - [1612] = 1545, - [1613] = 1528, - [1614] = 1556, - [1615] = 1567, - [1616] = 1546, - [1617] = 1609, - [1618] = 1618, - [1619] = 1567, - [1620] = 1533, - [1621] = 1567, - [1622] = 1576, - [1623] = 1525, - [1624] = 1577, - [1625] = 1538, - [1626] = 1534, - [1627] = 1580, - [1628] = 1544, - [1629] = 1528, - [1630] = 1528, - [1631] = 1545, - [1632] = 1545, - [1633] = 1546, - [1634] = 1540, - [1635] = 1564, - [1636] = 1601, - [1637] = 1618, - [1638] = 1609, - [1639] = 1639, - [1640] = 1609, - [1641] = 1534, + [1610] = 1607, + [1611] = 1603, + [1612] = 1603, + [1613] = 1607, + [1614] = 1614, + [1615] = 1601, + [1616] = 1609, + [1617] = 1617, + [1618] = 1606, + [1619] = 1609, + [1620] = 1617, + [1621] = 1603, + [1622] = 1606, + [1623] = 1607, + [1624] = 1603, + [1625] = 1609, + [1626] = 1606, + [1627] = 1606, + [1628] = 1601, + [1629] = 1603, + [1630] = 1617, + [1631] = 1603, + [1632] = 1607, + [1633] = 1607, + [1634] = 1603, + [1635] = 1609, + [1636] = 1609, + [1637] = 1607, + [1638] = 1603, + [1639] = 1609, + [1640] = 1640, + [1641] = 1606, [1642] = 1601, - [1643] = 1533, - [1644] = 1534, - [1645] = 1525, - [1646] = 1540, - [1647] = 1618, - [1648] = 1540, - [1649] = 1544, - [1650] = 1527, - [1651] = 1601, - [1652] = 1529, - [1653] = 1538, - [1654] = 1531, - [1655] = 1531, - [1656] = 1580, - [1657] = 1526, - [1658] = 1577, - [1659] = 1576, - [1660] = 1537, - [1661] = 1544, - [1662] = 1556, - [1663] = 1568, + [1643] = 1606, + [1644] = 1601, + [1645] = 1617, + [1646] = 1609, + [1647] = 1606, + [1648] = 1606, + [1649] = 1609, + [1650] = 1650, + [1651] = 1607, + [1652] = 1652, + [1653] = 1653, + [1654] = 1653, + [1655] = 1652, + [1656] = 1656, + [1657] = 1652, + [1658] = 1656, + [1659] = 1652, + [1660] = 1660, + [1661] = 1652, + [1662] = 1662, + [1663] = 1662, [1664] = 1664, - [1665] = 1639, - [1666] = 1527, - [1667] = 1601, - [1668] = 1604, - [1669] = 1601, - [1670] = 1609, - [1671] = 1527, - [1672] = 1537, - [1673] = 1618, + [1665] = 1660, + [1666] = 1666, + [1667] = 1666, + [1668] = 1662, + [1669] = 1669, + [1670] = 1670, + [1671] = 1671, + [1672] = 1656, + [1673] = 1673, [1674] = 1674, - [1675] = 1544, - [1676] = 1609, - [1677] = 1677, - [1678] = 1537, - [1679] = 1529, - [1680] = 1618, - [1681] = 1525, - [1682] = 1682, - [1683] = 1540, - [1684] = 1556, - [1685] = 1685, - [1686] = 1674, - [1687] = 1580, - [1688] = 1564, - [1689] = 1689, - [1690] = 1604, - [1691] = 1564, - [1692] = 1580, - [1693] = 1564, - [1694] = 1546, - [1695] = 1695, - [1696] = 1576, - [1697] = 1526, - [1698] = 1577, - [1699] = 1577, - [1700] = 1567, - [1701] = 1577, - [1702] = 1529, - [1703] = 1703, - [1704] = 1531, - [1705] = 1531, - [1706] = 1568, - [1707] = 1529, - [1708] = 1604, - [1709] = 1677, - [1710] = 1528, - [1711] = 1576, - [1712] = 1677, - [1713] = 1556, - [1714] = 1580, - [1715] = 1577, - [1716] = 1526, - [1717] = 1677, - [1718] = 1530, - [1719] = 1537, - [1720] = 1580, - [1721] = 1577, - [1722] = 1601, - [1723] = 1618, - [1724] = 1609, - [1725] = 1576, - [1726] = 1674, - [1727] = 1695, - [1728] = 1545, - [1729] = 1525, - [1730] = 1531, - [1731] = 1580, - [1732] = 1540, - [1733] = 1580, - [1734] = 1527, + [1675] = 1675, + [1676] = 1653, + [1677] = 1671, + [1678] = 1675, + [1679] = 1679, + [1680] = 1674, + [1681] = 1673, + [1682] = 1656, + [1683] = 1679, + [1684] = 1660, + [1685] = 1666, + [1686] = 1662, + [1687] = 1666, + [1688] = 1679, + [1689] = 1652, + [1690] = 1660, + [1691] = 1679, + [1692] = 1669, + [1693] = 1671, + [1694] = 1656, + [1695] = 1656, + [1696] = 1652, + [1697] = 1697, + [1698] = 1673, + [1699] = 1674, + [1700] = 1675, + [1701] = 1674, + [1702] = 1673, + [1703] = 1671, + [1704] = 1704, + [1705] = 1662, + [1706] = 1662, + [1707] = 1666, + [1708] = 1708, + [1709] = 1660, + [1710] = 1660, + [1711] = 1656, + [1712] = 1679, + [1713] = 1671, + [1714] = 1679, + [1715] = 1666, + [1716] = 1669, + [1717] = 1674, + [1718] = 1673, + [1719] = 1673, + [1720] = 1675, + [1721] = 1671, + [1722] = 1674, + [1723] = 1669, + [1724] = 1679, + [1725] = 1725, + [1726] = 1679, + [1727] = 1666, + [1728] = 1671, + [1729] = 1674, + [1730] = 1660, + [1731] = 1662, + [1732] = 1679, + [1733] = 1673, + [1734] = 1734, [1735] = 1735, - [1736] = 1703, - [1737] = 1544, - [1738] = 1738, - [1739] = 1556, - [1740] = 1564, - [1741] = 1528, - [1742] = 1530, - [1743] = 1639, - [1744] = 1545, + [1736] = 1736, + [1737] = 1737, + [1738] = 1736, + [1739] = 1739, + [1740] = 1736, + [1741] = 1736, + [1742] = 1742, + [1743] = 1736, + [1744] = 1744, [1745] = 1745, - [1746] = 1540, - [1747] = 1530, - [1748] = 1556, - [1749] = 1534, + [1746] = 1746, + [1747] = 1736, + [1748] = 1748, + [1749] = 1736, [1750] = 1750, - [1751] = 1537, - [1752] = 1528, - [1753] = 1526, - [1754] = 1528, - [1755] = 1677, - [1756] = 1564, - [1757] = 1639, - [1758] = 1530, - [1759] = 1546, - [1760] = 1533, - [1761] = 1674, - [1762] = 1604, + [1751] = 1739, + [1752] = 1746, + [1753] = 1744, + [1754] = 1744, + [1755] = 1737, + [1756] = 1737, + [1757] = 1744, + [1758] = 1758, + [1759] = 1759, + [1760] = 1739, + [1761] = 1761, + [1762] = 1736, [1763] = 1763, - [1764] = 1764, - [1765] = 1765, - [1766] = 1765, + [1764] = 1737, + [1765] = 1744, + [1766] = 1737, [1767] = 1767, - [1768] = 1764, + [1768] = 1737, [1769] = 1769, [1770] = 1770, [1771] = 1771, [1772] = 1772, [1773] = 1773, - [1774] = 1763, - [1775] = 1767, - [1776] = 1776, + [1774] = 1748, + [1775] = 1775, + [1776] = 1745, [1777] = 1777, - [1778] = 1777, - [1779] = 1770, - [1780] = 1767, + [1778] = 1745, + [1779] = 1746, + [1780] = 1739, [1781] = 1781, - [1782] = 1769, - [1783] = 1781, - [1784] = 1771, - [1785] = 1763, - [1786] = 1776, - [1787] = 1763, - [1788] = 1764, - [1789] = 1773, - [1790] = 1767, - [1791] = 1767, - [1792] = 1765, - [1793] = 1772, - [1794] = 1772, - [1795] = 1764, - [1796] = 1772, - [1797] = 1781, - [1798] = 1773, - [1799] = 1772, - [1800] = 1777, - [1801] = 1769, - [1802] = 1770, + [1782] = 1782, + [1783] = 1783, + [1784] = 1784, + [1785] = 1777, + [1786] = 1745, + [1787] = 1787, + [1788] = 1744, + [1789] = 1789, + [1790] = 1736, + [1791] = 1737, + [1792] = 1775, + [1793] = 1793, + [1794] = 1759, + [1795] = 1795, + [1796] = 1746, + [1797] = 1797, + [1798] = 1798, + [1799] = 1799, + [1800] = 1744, + [1801] = 1801, + [1802] = 1746, [1803] = 1803, - [1804] = 1776, - [1805] = 1771, - [1806] = 1803, - [1807] = 502, - [1808] = 511, + [1804] = 1804, + [1805] = 1737, + [1806] = 1745, + [1807] = 1807, + [1808] = 1808, [1809] = 1809, - [1810] = 1771, - [1811] = 1769, - [1812] = 1770, - [1813] = 1781, - [1814] = 1773, - [1815] = 1777, - [1816] = 1776, - [1817] = 1817, + [1810] = 1810, + [1811] = 1811, + [1812] = 1744, + [1813] = 1813, + [1814] = 1746, + [1815] = 1745, + [1816] = 1744, + [1817] = 1737, [1818] = 1818, - [1819] = 1818, + [1819] = 1819, [1820] = 1820, [1821] = 1821, - [1822] = 1818, - [1823] = 1818, - [1824] = 1777, + [1822] = 1822, + [1823] = 1823, + [1824] = 1824, [1825] = 1825, - [1826] = 1825, - [1827] = 1825, - [1828] = 1825, - [1829] = 1773, - [1830] = 1769, - [1831] = 1825, - [1832] = 1825, - [1833] = 1770, - [1834] = 1776, - [1835] = 1825, - [1836] = 1781, - [1837] = 1771, - [1838] = 1764, - [1839] = 1839, - [1840] = 1820, - [1841] = 1821, - [1842] = 1817, - [1843] = 1776, - [1844] = 1844, - [1845] = 1770, - [1846] = 1772, - [1847] = 1777, - [1848] = 1769, - [1849] = 1764, - [1850] = 1781, - [1851] = 1771, + [1826] = 1826, + [1827] = 1827, + [1828] = 1828, + [1829] = 1829, + [1830] = 1830, + [1831] = 1831, + [1832] = 1826, + [1833] = 1833, + [1834] = 1823, + [1835] = 1830, + [1836] = 1836, + [1837] = 1837, + [1838] = 1831, + [1839] = 1823, + [1840] = 1840, + [1841] = 1841, + [1842] = 1842, + [1843] = 1825, + [1844] = 1837, + [1845] = 1845, + [1846] = 1822, + [1847] = 1847, + [1848] = 1823, + [1849] = 1822, + [1850] = 1850, + [1851] = 1818, [1852] = 1852, - [1853] = 1765, - [1854] = 1852, + [1853] = 1827, + [1854] = 1854, [1855] = 1855, [1856] = 1856, - [1857] = 1857, - [1858] = 1773, + [1857] = 1826, + [1858] = 1818, [1859] = 1859, - [1860] = 1860, - [1861] = 1820, - [1862] = 1862, - [1863] = 1863, + [1860] = 1836, + [1861] = 1852, + [1862] = 1825, + [1863] = 1854, [1864] = 1864, - [1865] = 1772, + [1865] = 1833, [1866] = 1866, - [1867] = 1771, + [1867] = 1836, [1868] = 1868, - [1869] = 1869, - [1870] = 1870, - [1871] = 1781, - [1872] = 1872, - [1873] = 1873, + [1869] = 1847, + [1870] = 1831, + [1871] = 1837, + [1872] = 1825, + [1873] = 1855, [1874] = 1874, - [1875] = 1776, - [1876] = 1773, - [1877] = 1777, + [1875] = 1831, + [1876] = 1856, + [1877] = 1833, [1878] = 1878, - [1879] = 1879, - [1880] = 1770, - [1881] = 1821, - [1882] = 1882, - [1883] = 1883, - [1884] = 1884, - [1885] = 1817, + [1879] = 1828, + [1880] = 1837, + [1881] = 1859, + [1882] = 1836, + [1883] = 1829, + [1884] = 1854, + [1885] = 1836, [1886] = 1886, - [1887] = 1769, - [1888] = 1817, - [1889] = 1772, - [1890] = 1772, - [1891] = 1857, - [1892] = 1821, - [1893] = 1772, - [1894] = 1855, - [1895] = 1844, - [1896] = 1765, - [1897] = 1856, - [1898] = 1764, - [1899] = 1772, - [1900] = 1820, - [1901] = 1772, + [1887] = 1847, + [1888] = 1822, + [1889] = 1820, + [1890] = 1890, + [1891] = 1886, + [1892] = 1823, + [1893] = 1820, + [1894] = 1837, + [1895] = 1828, + [1896] = 1820, + [1897] = 1827, + [1898] = 1829, + [1899] = 1899, + [1900] = 1829, + [1901] = 1823, [1902] = 1902, - [1903] = 1866, - [1904] = 1904, - [1905] = 1878, - [1906] = 1906, - [1907] = 1907, - [1908] = 1908, - [1909] = 1909, - [1910] = 1857, - [1911] = 1904, - [1912] = 1912, - [1913] = 1913, - [1914] = 1914, - [1915] = 1878, - [1916] = 1902, - [1917] = 1917, - [1918] = 1855, - [1919] = 1844, - [1920] = 1920, - [1921] = 1772, - [1922] = 1866, - [1923] = 1856, - [1924] = 1924, - [1925] = 1909, + [1903] = 1859, + [1904] = 1856, + [1905] = 1905, + [1906] = 1828, + [1907] = 1874, + [1908] = 1829, + [1909] = 1823, + [1910] = 1910, + [1911] = 1850, + [1912] = 1855, + [1913] = 1819, + [1914] = 1828, + [1915] = 1852, + [1916] = 1886, + [1917] = 1837, + [1918] = 1918, + [1919] = 1868, + [1920] = 1819, + [1921] = 1910, + [1922] = 1818, + [1923] = 1859, + [1924] = 1826, + [1925] = 1836, [1926] = 1926, [1927] = 1927, - [1928] = 1928, - [1929] = 1929, - [1930] = 1920, - [1931] = 1777, - [1932] = 1932, - [1933] = 1933, - [1934] = 1773, - [1935] = 1932, - [1936] = 1929, - [1937] = 1855, - [1938] = 1857, - [1939] = 1769, - [1940] = 1776, - [1941] = 1770, - [1942] = 1878, - [1943] = 318, - [1944] = 1781, - [1945] = 1932, - [1946] = 1866, - [1947] = 1932, - [1948] = 324, - [1949] = 335, - [1950] = 334, - [1951] = 1951, - [1952] = 1771, - [1953] = 1932, - [1954] = 1954, - [1955] = 1924, - [1956] = 1844, - [1957] = 1957, - [1958] = 1929, - [1959] = 1932, - [1960] = 1960, - [1961] = 1932, - [1962] = 1929, - [1963] = 1856, - [1964] = 1951, - [1965] = 1902, - [1966] = 1966, - [1967] = 1960, - [1968] = 1917, - [1969] = 1912, - [1970] = 476, - [1971] = 1926, - [1972] = 1909, - [1973] = 1878, + [1928] = 1868, + [1929] = 1847, + [1930] = 1837, + [1931] = 1850, + [1932] = 1856, + [1933] = 1918, + [1934] = 1822, + [1935] = 1827, + [1936] = 1829, + [1937] = 1828, + [1938] = 1829, + [1939] = 1831, + [1940] = 1855, + [1941] = 1874, + [1942] = 1852, + [1943] = 1830, + [1944] = 1864, + [1945] = 1830, + [1946] = 1823, + [1947] = 1826, + [1948] = 1833, + [1949] = 1820, + [1950] = 1818, + [1951] = 1886, + [1952] = 1902, + [1953] = 1918, + [1954] = 1833, + [1955] = 1859, + [1956] = 1902, + [1957] = 1856, + [1958] = 1831, + [1959] = 1864, + [1960] = 1830, + [1961] = 1902, + [1962] = 1910, + [1963] = 1827, + [1964] = 1819, + [1965] = 1864, + [1966] = 1828, + [1967] = 1918, + [1968] = 1918, + [1969] = 1910, + [1970] = 1855, + [1971] = 1818, + [1972] = 1852, + [1973] = 1852, [1974] = 1974, - [1975] = 1975, - [1976] = 1866, - [1977] = 1957, - [1978] = 1978, - [1979] = 1933, - [1980] = 1954, - [1981] = 1904, - [1982] = 1982, - [1983] = 1914, - [1984] = 1902, - [1985] = 1909, - [1986] = 335, - [1987] = 1974, - [1988] = 1924, - [1989] = 334, - [1990] = 1982, - [1991] = 344, - [1992] = 1992, - [1993] = 1992, - [1994] = 318, - [1995] = 1995, - [1996] = 1996, - [1997] = 1904, - [1998] = 1975, - [1999] = 334, - [2000] = 1951, + [1975] = 1826, + [1976] = 1976, + [1977] = 1910, + [1978] = 1833, + [1979] = 1836, + [1980] = 1830, + [1981] = 1825, + [1982] = 1819, + [1983] = 1918, + [1984] = 1829, + [1985] = 1833, + [1986] = 1826, + [1987] = 1827, + [1988] = 1868, + [1989] = 1825, + [1990] = 1874, + [1991] = 1850, + [1992] = 1850, + [1993] = 1993, + [1994] = 1910, + [1995] = 1927, + [1996] = 1828, + [1997] = 1864, + [1998] = 1886, + [1999] = 1845, + [2000] = 1820, [2001] = 2001, - [2002] = 2002, - [2003] = 129, - [2004] = 132, - [2005] = 1920, - [2006] = 324, - [2007] = 318, - [2008] = 324, - [2009] = 335, - [2010] = 2010, - [2011] = 2011, - [2012] = 2012, - [2013] = 2013, - [2014] = 1902, - [2015] = 2015, - [2016] = 2016, - [2017] = 2017, - [2018] = 2012, - [2019] = 2019, - [2020] = 2020, - [2021] = 1992, - [2022] = 1866, - [2023] = 1917, - [2024] = 515, - [2025] = 520, - [2026] = 2026, - [2027] = 530, - [2028] = 488, - [2029] = 2012, - [2030] = 2030, - [2031] = 489, - [2032] = 1933, - [2033] = 480, - [2034] = 2034, - [2035] = 2035, - [2036] = 2036, - [2037] = 450, - [2038] = 2038, - [2039] = 502, - [2040] = 2012, - [2041] = 2041, - [2042] = 2042, - [2043] = 405, - [2044] = 1924, - [2045] = 2045, - [2046] = 2046, - [2047] = 2047, - [2048] = 2048, - [2049] = 2049, - [2050] = 2050, - [2051] = 499, - [2052] = 2052, - [2053] = 536, - [2054] = 2054, - [2055] = 537, - [2056] = 511, - [2057] = 548, - [2058] = 2012, - [2059] = 508, - [2060] = 509, - [2061] = 549, - [2062] = 2062, - [2063] = 1878, - [2064] = 1978, - [2065] = 2012, - [2066] = 486, - [2067] = 2067, - [2068] = 2068, - [2069] = 2069, - [2070] = 522, - [2071] = 510, - [2072] = 2072, - [2073] = 2073, - [2074] = 1912, - [2075] = 2075, - [2076] = 2012, + [2002] = 1830, + [2003] = 1902, + [2004] = 1823, + [2005] = 1827, + [2006] = 1831, + [2007] = 1902, + [2008] = 1902, + [2009] = 1886, + [2010] = 1822, + [2011] = 1822, + [2012] = 1820, + [2013] = 1874, + [2014] = 1918, + [2015] = 1836, + [2016] = 1886, + [2017] = 1859, + [2018] = 1854, + [2019] = 1828, + [2020] = 1874, + [2021] = 1855, + [2022] = 1910, + [2023] = 1886, + [2024] = 1856, + [2025] = 1833, + [2026] = 1918, + [2027] = 1910, + [2028] = 1859, + [2029] = 1856, + [2030] = 1855, + [2031] = 1902, + [2032] = 1852, + [2033] = 1818, + [2034] = 1826, + [2035] = 1829, + [2036] = 1836, + [2037] = 1837, + [2038] = 1830, + [2039] = 1854, + [2040] = 1864, + [2041] = 1827, + [2042] = 1855, + [2043] = 1845, + [2044] = 1820, + [2045] = 1852, + [2046] = 1831, + [2047] = 1868, + [2048] = 1818, + [2049] = 1868, + [2050] = 1856, + [2051] = 1918, + [2052] = 1819, + [2053] = 1822, + [2054] = 1831, + [2055] = 1820, + [2056] = 1837, + [2057] = 1845, + [2058] = 1833, + [2059] = 1886, + [2060] = 1859, + [2061] = 1856, + [2062] = 1855, + [2063] = 1852, + [2064] = 1818, + [2065] = 1826, + [2066] = 1830, + [2067] = 1827, + [2068] = 1854, + [2069] = 1910, + [2070] = 1868, + [2071] = 1822, + [2072] = 1905, + [2073] = 1859, + [2074] = 1868, + [2075] = 1868, + [2076] = 1902, [2077] = 2077, - [2078] = 2078, - [2079] = 389, - [2080] = 2080, - [2081] = 2081, + [2078] = 2077, + [2079] = 2077, + [2080] = 2077, + [2081] = 2077, [2082] = 2082, - [2083] = 388, + [2083] = 2083, [2084] = 2084, [2085] = 2085, - [2086] = 1914, - [2087] = 476, - [2088] = 374, + [2086] = 2086, + [2087] = 2085, + [2088] = 2088, [2089] = 2089, - [2090] = 2090, - [2091] = 376, - [2092] = 550, - [2093] = 493, - [2094] = 2094, - [2095] = 2095, - [2096] = 2096, + [2090] = 2085, + [2091] = 2091, + [2092] = 2082, + [2093] = 2093, + [2094] = 2084, + [2095] = 2085, + [2096] = 2085, [2097] = 2097, [2098] = 2098, - [2099] = 2099, - [2100] = 2100, - [2101] = 2101, - [2102] = 1904, - [2103] = 485, - [2104] = 2104, - [2105] = 1909, - [2106] = 555, - [2107] = 2107, - [2108] = 2108, - [2109] = 523, - [2110] = 506, - [2111] = 2111, - [2112] = 2112, - [2113] = 359, - [2114] = 2054, - [2115] = 2115, - [2116] = 2116, - [2117] = 2117, - [2118] = 2118, + [2099] = 2085, + [2100] = 2084, + [2101] = 2091, + [2102] = 2089, + [2103] = 2097, + [2104] = 2083, + [2105] = 2105, + [2106] = 2105, + [2107] = 2093, + [2108] = 2088, + [2109] = 2082, + [2110] = 2086, + [2111] = 2082, + [2112] = 2083, + [2113] = 2084, + [2114] = 2098, + [2115] = 2082, + [2116] = 2098, + [2117] = 2098, + [2118] = 533, [2119] = 2119, - [2120] = 1966, - [2121] = 2121, - [2122] = 524, - [2123] = 535, - [2124] = 487, - [2125] = 2054, - [2126] = 2126, - [2127] = 2127, - [2128] = 2128, - [2129] = 2129, - [2130] = 1764, - [2131] = 2131, - [2132] = 521, - [2133] = 2133, - [2134] = 1926, - [2135] = 2135, - [2136] = 2136, - [2137] = 2137, + [2120] = 2119, + [2121] = 2091, + [2122] = 2122, + [2123] = 2088, + [2124] = 2093, + [2125] = 2097, + [2126] = 2105, + [2127] = 2086, + [2128] = 2089, + [2129] = 582, + [2130] = 2098, + [2131] = 2093, + [2132] = 2105, + [2133] = 2088, + [2134] = 2086, + [2135] = 2091, + [2136] = 2089, + [2137] = 2097, [2138] = 2138, - [2139] = 2054, - [2140] = 551, - [2141] = 2141, - [2142] = 2142, - [2143] = 525, - [2144] = 2054, - [2145] = 533, - [2146] = 1951, - [2147] = 2147, - [2148] = 527, - [2149] = 519, - [2150] = 491, - [2151] = 1920, - [2152] = 528, - [2153] = 1954, - [2154] = 1957, - [2155] = 476, - [2156] = 529, - [2157] = 531, - [2158] = 494, - [2159] = 1960, - [2160] = 496, - [2161] = 2054, - [2162] = 552, - [2163] = 2163, - [2164] = 1982, - [2165] = 1975, - [2166] = 1764, - [2167] = 1924, - [2168] = 1920, - [2169] = 129, - [2170] = 1996, - [2171] = 1957, - [2172] = 1954, + [2139] = 2138, + [2140] = 2138, + [2141] = 2138, + [2142] = 2138, + [2143] = 2105, + [2144] = 2144, + [2145] = 2144, + [2146] = 2088, + [2147] = 2093, + [2148] = 2086, + [2149] = 2144, + [2150] = 2144, + [2151] = 2144, + [2152] = 2144, + [2153] = 2097, + [2154] = 2144, + [2155] = 2144, + [2156] = 2091, + [2157] = 2144, + [2158] = 2089, + [2159] = 2159, + [2160] = 2084, + [2161] = 2084, + [2162] = 2162, + [2163] = 2097, + [2164] = 2105, + [2165] = 2086, + [2166] = 2093, + [2167] = 2098, + [2168] = 2162, + [2169] = 2083, + [2170] = 2170, + [2171] = 2091, + [2172] = 2089, [2173] = 2173, [2174] = 2174, - [2175] = 2175, - [2176] = 2176, - [2177] = 132, - [2178] = 2001, - [2179] = 2173, + [2175] = 2088, + [2176] = 2098, + [2177] = 2177, + [2178] = 2178, + [2179] = 2179, [2180] = 2180, - [2181] = 1926, + [2181] = 2089, [2182] = 2182, - [2183] = 2173, - [2184] = 1974, - [2185] = 132, + [2183] = 2088, + [2184] = 2184, + [2185] = 2097, [2186] = 2186, [2187] = 2187, [2188] = 2188, - [2189] = 1917, - [2190] = 1912, - [2191] = 2173, - [2192] = 1933, + [2189] = 2105, + [2190] = 2190, + [2191] = 2191, + [2192] = 2192, [2193] = 2193, - [2194] = 1982, - [2195] = 2010, - [2196] = 344, - [2197] = 344, - [2198] = 1772, - [2199] = 2174, + [2194] = 2091, + [2195] = 2195, + [2196] = 2196, + [2197] = 2197, + [2198] = 2086, + [2199] = 2093, [2200] = 2200, - [2201] = 1772, - [2202] = 1960, - [2203] = 1914, - [2204] = 1995, - [2205] = 129, - [2206] = 2002, - [2207] = 2207, - [2208] = 2111, - [2209] = 509, - [2210] = 376, - [2211] = 1773, - [2212] = 374, - [2213] = 1978, - [2214] = 450, - [2215] = 2078, - [2216] = 2090, - [2217] = 480, - [2218] = 2035, - [2219] = 359, - [2220] = 489, - [2221] = 528, - [2222] = 529, - [2223] = 2223, - [2224] = 548, - [2225] = 549, - [2226] = 550, - [2227] = 551, - [2228] = 552, - [2229] = 496, - [2230] = 2137, - [2231] = 494, - [2232] = 2135, - [2233] = 2104, - [2234] = 1951, - [2235] = 2020, - [2236] = 2098, - [2237] = 2097, - [2238] = 535, - [2239] = 2095, - [2240] = 2094, - [2241] = 1982, - [2242] = 2242, - [2243] = 555, - [2244] = 2242, - [2245] = 2245, - [2246] = 499, - [2247] = 1995, - [2248] = 493, - [2249] = 508, - [2250] = 2250, - [2251] = 509, - [2252] = 1975, - [2253] = 510, - [2254] = 2062, - [2255] = 1933, - [2256] = 489, - [2257] = 488, - [2258] = 2062, - [2259] = 522, - [2260] = 486, - [2261] = 2073, - [2262] = 485, - [2263] = 523, - [2264] = 524, - [2265] = 2002, - [2266] = 1772, - [2267] = 527, - [2268] = 491, - [2269] = 519, + [2201] = 2098, + [2202] = 2173, + [2203] = 2203, + [2204] = 2170, + [2205] = 2098, + [2206] = 2098, + [2207] = 2174, + [2208] = 2083, + [2209] = 2098, + [2210] = 2084, + [2211] = 2211, + [2212] = 353, + [2213] = 2213, + [2214] = 2214, + [2215] = 371, + [2216] = 2216, + [2217] = 2217, + [2218] = 2098, + [2219] = 363, + [2220] = 367, + [2221] = 2221, + [2222] = 2222, + [2223] = 403, + [2224] = 2174, + [2225] = 2173, + [2226] = 2226, + [2227] = 2170, + [2228] = 2098, + [2229] = 2222, + [2230] = 2230, + [2231] = 2230, + [2232] = 387, + [2233] = 367, + [2234] = 2234, + [2235] = 2234, + [2236] = 2234, + [2237] = 2234, + [2238] = 2238, + [2239] = 2211, + [2240] = 2238, + [2241] = 2234, + [2242] = 2213, + [2243] = 2234, + [2244] = 2244, + [2245] = 331, + [2246] = 2234, + [2247] = 2234, + [2248] = 2173, + [2249] = 2234, + [2250] = 2238, + [2251] = 321, + [2252] = 363, + [2253] = 2174, + [2254] = 2214, + [2255] = 2217, + [2256] = 2238, + [2257] = 371, + [2258] = 2170, + [2259] = 2238, + [2260] = 353, + [2261] = 560, + [2262] = 425, + [2263] = 2263, + [2264] = 2264, + [2265] = 2265, + [2266] = 578, + [2267] = 2230, + [2268] = 581, + [2269] = 585, [2270] = 2270, - [2271] = 2072, - [2272] = 2147, - [2273] = 528, - [2274] = 529, - [2275] = 2075, - [2276] = 2276, - [2277] = 531, - [2278] = 2089, - [2279] = 1764, - [2280] = 2099, - [2281] = 537, - [2282] = 536, - [2283] = 2174, - [2284] = 533, - [2285] = 2049, - [2286] = 2042, - [2287] = 2011, - [2288] = 1954, - [2289] = 520, - [2290] = 515, - [2291] = 533, - [2292] = 531, - [2293] = 2036, - [2294] = 1769, - [2295] = 1770, - [2296] = 1777, - [2297] = 2038, - [2298] = 1957, - [2299] = 521, - [2300] = 487, - [2301] = 2034, - [2302] = 487, - [2303] = 2077, - [2304] = 2089, - [2305] = 525, - [2306] = 2174, - [2307] = 2030, - [2308] = 527, - [2309] = 525, - [2310] = 524, - [2311] = 548, - [2312] = 549, - [2313] = 521, - [2314] = 530, - [2315] = 2099, - [2316] = 502, - [2317] = 405, - [2318] = 550, - [2319] = 2015, - [2320] = 2017, - [2321] = 511, - [2322] = 1974, - [2323] = 493, - [2324] = 551, - [2325] = 389, - [2326] = 1960, - [2327] = 2080, - [2328] = 523, - [2329] = 2081, - [2330] = 552, - [2331] = 2068, - [2332] = 496, - [2333] = 2045, - [2334] = 2046, - [2335] = 2047, - [2336] = 2082, - [2337] = 494, - [2338] = 2016, - [2339] = 2062, - [2340] = 506, - [2341] = 491, - [2342] = 2048, - [2343] = 2052, - [2344] = 485, - [2345] = 519, - [2346] = 2073, - [2347] = 535, - [2348] = 2094, - [2349] = 2095, - [2350] = 2097, - [2351] = 2098, - [2352] = 2104, - [2353] = 2135, - [2354] = 2137, - [2355] = 388, - [2356] = 2001, - [2357] = 389, - [2358] = 2067, - [2359] = 1764, - [2360] = 2096, - [2361] = 374, - [2362] = 2100, - [2363] = 2101, - [2364] = 555, - [2365] = 2242, - [2366] = 359, - [2367] = 1776, - [2368] = 1781, - [2369] = 1771, - [2370] = 522, - [2371] = 486, - [2372] = 537, - [2373] = 536, - [2374] = 530, - [2375] = 2175, - [2376] = 2118, - [2377] = 2119, - [2378] = 511, - [2379] = 2126, - [2380] = 510, - [2381] = 2242, - [2382] = 2128, - [2383] = 2129, - [2384] = 520, - [2385] = 515, - [2386] = 2138, - [2387] = 508, - [2388] = 488, - [2389] = 405, - [2390] = 1966, - [2391] = 2082, - [2392] = 2081, - [2393] = 2080, + [2271] = 2271, + [2272] = 511, + [2273] = 547, + [2274] = 2274, + [2275] = 2275, + [2276] = 548, + [2277] = 557, + [2278] = 389, + [2279] = 545, + [2280] = 512, + [2281] = 422, + [2282] = 574, + [2283] = 595, + [2284] = 2284, + [2285] = 420, + [2286] = 594, + [2287] = 546, + [2288] = 535, + [2289] = 2289, + [2290] = 2290, + [2291] = 2291, + [2292] = 2292, + [2293] = 2293, + [2294] = 525, + [2295] = 515, + [2296] = 550, + [2297] = 582, + [2298] = 2298, + [2299] = 2299, + [2300] = 2300, + [2301] = 2301, + [2302] = 571, + [2303] = 2303, + [2304] = 2304, + [2305] = 513, + [2306] = 2306, + [2307] = 586, + [2308] = 558, + [2309] = 2309, + [2310] = 517, + [2311] = 403, + [2312] = 427, + [2313] = 2313, + [2314] = 2314, + [2315] = 426, + [2316] = 2316, + [2317] = 591, + [2318] = 533, + [2319] = 399, + [2320] = 2320, + [2321] = 2321, + [2322] = 464, + [2323] = 2323, + [2324] = 584, + [2325] = 467, + [2326] = 2326, + [2327] = 569, + [2328] = 518, + [2329] = 579, + [2330] = 526, + [2331] = 527, + [2332] = 532, + [2333] = 529, + [2334] = 531, + [2335] = 565, + [2336] = 2336, + [2337] = 423, + [2338] = 537, + [2339] = 544, + [2340] = 603, + [2341] = 2222, + [2342] = 2342, + [2343] = 589, + [2344] = 2344, + [2345] = 2345, + [2346] = 566, + [2347] = 2347, + [2348] = 367, + [2349] = 363, + [2350] = 2306, + [2351] = 2351, + [2352] = 2213, + [2353] = 2271, + [2354] = 2354, + [2355] = 2355, + [2356] = 2214, + [2357] = 371, + [2358] = 2211, + [2359] = 2359, + [2360] = 353, + [2361] = 2284, + [2362] = 2362, + [2363] = 387, + [2364] = 2364, + [2365] = 321, + [2366] = 2217, + [2367] = 331, + [2368] = 363, + [2369] = 367, + [2370] = 371, + [2371] = 2355, + [2372] = 353, + [2373] = 595, + [2374] = 2320, + [2375] = 548, + [2376] = 2211, + [2377] = 518, + [2378] = 517, + [2379] = 423, + [2380] = 515, + [2381] = 2381, + [2382] = 403, + [2383] = 2381, + [2384] = 511, + [2385] = 389, + [2386] = 512, + [2387] = 2387, + [2388] = 582, + [2389] = 427, + [2390] = 426, + [2391] = 425, + [2392] = 533, + [2393] = 399, [2394] = 2394, - [2395] = 2078, - [2396] = 2077, - [2397] = 2075, - [2398] = 2147, - [2399] = 2072, - [2400] = 506, - [2401] = 480, - [2402] = 450, - [2403] = 502, - [2404] = 2404, - [2405] = 2242, - [2406] = 499, - [2407] = 2242, - [2408] = 2050, - [2409] = 2019, - [2410] = 2013, - [2411] = 2133, - [2412] = 2041, - [2413] = 2413, - [2414] = 2085, - [2415] = 2084, - [2416] = 2142, - [2417] = 2049, - [2418] = 2042, - [2419] = 2011, - [2420] = 2038, - [2421] = 2035, - [2422] = 2034, - [2423] = 2030, - [2424] = 2141, - [2425] = 2116, - [2426] = 2115, - [2427] = 2112, - [2428] = 2107, - [2429] = 2026, - [2430] = 2131, - [2431] = 2108, - [2432] = 2127, - [2433] = 2069, - [2434] = 2121, - [2435] = 388, - [2436] = 2010, - [2437] = 2136, - [2438] = 2117, - [2439] = 376, - [2440] = 2016, - [2441] = 2013, - [2442] = 2108, - [2443] = 1996, - [2444] = 2068, - [2445] = 2445, - [2446] = 2446, - [2447] = 2107, - [2448] = 2112, - [2449] = 2115, - [2450] = 2116, - [2451] = 1870, - [2452] = 2452, - [2453] = 2141, - [2454] = 2142, - [2455] = 2455, - [2456] = 1904, - [2457] = 2084, - [2458] = 2085, - [2459] = 2459, - [2460] = 2250, - [2461] = 1996, - [2462] = 2462, - [2463] = 2463, - [2464] = 1817, - [2465] = 2465, - [2466] = 2466, - [2467] = 2276, - [2468] = 2468, - [2469] = 2111, - [2470] = 2117, - [2471] = 2136, - [2472] = 2472, - [2473] = 2121, - [2474] = 1872, - [2475] = 2475, - [2476] = 1821, - [2477] = 2127, - [2478] = 1868, - [2479] = 2479, - [2480] = 2131, - [2481] = 1883, - [2482] = 1933, - [2483] = 2479, - [2484] = 1863, - [2485] = 2479, - [2486] = 1772, - [2487] = 2487, - [2488] = 2488, - [2489] = 2489, - [2490] = 2490, - [2491] = 2491, - [2492] = 2002, - [2493] = 2493, - [2494] = 2479, - [2495] = 2495, - [2496] = 1902, - [2497] = 2180, - [2498] = 1869, - [2499] = 2499, + [2395] = 545, + [2396] = 2306, + [2397] = 2359, + [2398] = 531, + [2399] = 550, + [2400] = 2400, + [2401] = 2387, + [2402] = 2381, + [2403] = 2364, + [2404] = 2222, + [2405] = 2314, + [2406] = 527, + [2407] = 2313, + [2408] = 603, + [2409] = 420, + [2410] = 2217, + [2411] = 589, + [2412] = 2222, + [2413] = 586, + [2414] = 2414, + [2415] = 2230, + [2416] = 537, + [2417] = 544, + [2418] = 2088, + [2419] = 2093, + [2420] = 560, + [2421] = 2304, + [2422] = 2309, + [2423] = 2298, + [2424] = 422, + [2425] = 2425, + [2426] = 2426, + [2427] = 2289, + [2428] = 2290, + [2429] = 569, + [2430] = 513, + [2431] = 2381, + [2432] = 571, + [2433] = 2291, + [2434] = 2381, + [2435] = 557, + [2436] = 2381, + [2437] = 578, + [2438] = 581, + [2439] = 2381, + [2440] = 585, + [2441] = 2292, + [2442] = 2089, + [2443] = 594, + [2444] = 591, + [2445] = 2293, + [2446] = 574, + [2447] = 2275, + [2448] = 2274, + [2449] = 2270, + [2450] = 2316, + [2451] = 2271, + [2452] = 547, + [2453] = 2387, + [2454] = 2381, + [2455] = 2086, + [2456] = 2105, + [2457] = 2091, + [2458] = 2097, + [2459] = 2387, + [2460] = 2213, + [2461] = 2299, + [2462] = 2381, + [2463] = 403, + [2464] = 584, + [2465] = 467, + [2466] = 464, + [2467] = 2355, + [2468] = 2263, + [2469] = 529, + [2470] = 2214, + [2471] = 2387, + [2472] = 579, + [2473] = 532, + [2474] = 2264, + [2475] = 2387, + [2476] = 2300, + [2477] = 566, + [2478] = 565, + [2479] = 2265, + [2480] = 2342, + [2481] = 2387, + [2482] = 2344, + [2483] = 2230, + [2484] = 2484, + [2485] = 558, + [2486] = 546, + [2487] = 2303, + [2488] = 535, + [2489] = 525, + [2490] = 2284, + [2491] = 526, + [2492] = 2345, + [2493] = 2321, + [2494] = 2323, + [2495] = 2326, + [2496] = 2336, + [2497] = 2497, + [2498] = 2359, + [2499] = 2284, [2500] = 2500, - [2501] = 2501, - [2502] = 129, - [2503] = 2503, - [2504] = 2026, - [2505] = 2505, - [2506] = 1982, - [2507] = 2069, - [2508] = 2508, - [2509] = 2509, - [2510] = 2479, - [2511] = 2041, - [2512] = 2133, + [2501] = 2425, + [2502] = 2347, + [2503] = 2484, + [2504] = 2230, + [2505] = 321, + [2506] = 331, + [2507] = 387, + [2508] = 2362, + [2509] = 2497, + [2510] = 2510, + [2511] = 2414, + [2512] = 2222, [2513] = 2513, - [2514] = 2019, - [2515] = 2515, - [2516] = 2516, + [2514] = 2497, + [2515] = 2271, + [2516] = 331, [2517] = 2517, - [2518] = 2200, - [2519] = 2001, - [2520] = 2193, - [2521] = 2188, - [2522] = 1874, - [2523] = 2459, - [2524] = 2138, - [2525] = 1960, - [2526] = 1909, - [2527] = 2129, - [2528] = 2128, - [2529] = 1879, - [2530] = 2176, - [2531] = 1954, - [2532] = 2050, - [2533] = 2533, - [2534] = 2126, - [2535] = 2270, - [2536] = 2119, - [2537] = 2118, - [2538] = 2394, - [2539] = 2187, - [2540] = 2015, - [2541] = 2017, - [2542] = 1978, - [2543] = 2186, - [2544] = 2544, - [2545] = 2545, - [2546] = 1873, - [2547] = 2547, - [2548] = 1862, - [2549] = 2549, - [2550] = 132, - [2551] = 1882, - [2552] = 1860, - [2553] = 2553, - [2554] = 2554, - [2555] = 1820, - [2556] = 1995, - [2557] = 2557, - [2558] = 1957, - [2559] = 2533, - [2560] = 1884, - [2561] = 1859, - [2562] = 2101, - [2563] = 2100, - [2564] = 2010, - [2565] = 2455, - [2566] = 1886, - [2567] = 2567, - [2568] = 2479, - [2569] = 2569, - [2570] = 2570, + [2518] = 2354, + [2519] = 2519, + [2520] = 321, + [2521] = 2306, + [2522] = 2426, + [2523] = 2394, + [2524] = 2400, + [2525] = 2500, + [2526] = 2351, + [2527] = 2527, + [2528] = 2364, + [2529] = 387, + [2530] = 2497, + [2531] = 565, + [2532] = 581, + [2533] = 603, + [2534] = 2513, + [2535] = 586, + [2536] = 2426, + [2537] = 582, + [2538] = 2527, + [2539] = 2265, + [2540] = 529, + [2541] = 2342, + [2542] = 2264, + [2543] = 2344, + [2544] = 2091, + [2545] = 2089, + [2546] = 2088, + [2547] = 2263, + [2548] = 2345, + [2549] = 2336, + [2550] = 2326, + [2551] = 2323, + [2552] = 2316, + [2553] = 2270, + [2554] = 2321, + [2555] = 2342, + [2556] = 2274, + [2557] = 2275, + [2558] = 2320, + [2559] = 512, + [2560] = 589, + [2561] = 389, + [2562] = 511, + [2563] = 2344, + [2564] = 420, + [2565] = 2093, + [2566] = 525, + [2567] = 535, + [2568] = 546, + [2569] = 557, + [2570] = 558, [2571] = 2571, - [2572] = 2572, - [2573] = 132, - [2574] = 2574, - [2575] = 2575, - [2576] = 1951, - [2577] = 129, - [2578] = 2578, - [2579] = 2579, - [2580] = 1966, - [2581] = 2067, - [2582] = 1773, - [2583] = 2583, - [2584] = 2584, - [2585] = 2585, - [2586] = 2586, + [2572] = 2345, + [2573] = 2336, + [2574] = 579, + [2575] = 584, + [2576] = 2097, + [2577] = 2105, + [2578] = 2086, + [2579] = 2326, + [2580] = 2580, + [2581] = 422, + [2582] = 2323, + [2583] = 2321, + [2584] = 2580, + [2585] = 532, + [2586] = 399, [2587] = 2587, - [2588] = 1769, - [2589] = 1770, - [2590] = 1777, - [2591] = 1776, - [2592] = 2592, - [2593] = 1781, - [2594] = 2594, - [2595] = 2052, - [2596] = 2048, - [2597] = 1771, - [2598] = 2047, - [2599] = 2046, - [2600] = 2600, - [2601] = 2601, - [2602] = 2045, - [2603] = 2100, - [2604] = 2010, - [2605] = 2186, - [2606] = 1996, - [2607] = 2116, - [2608] = 2002, - [2609] = 2115, - [2610] = 2112, - [2611] = 2107, - [2612] = 2111, - [2613] = 2069, - [2614] = 2270, - [2615] = 2117, - [2616] = 1995, - [2617] = 2200, - [2618] = 2567, - [2619] = 2188, - [2620] = 1764, - [2621] = 2572, - [2622] = 2187, - [2623] = 2193, - [2624] = 2136, - [2625] = 2594, - [2626] = 2121, - [2627] = 2127, - [2628] = 2465, - [2629] = 2141, - [2630] = 2131, - [2631] = 2495, - [2632] = 2096, - [2633] = 2585, - [2634] = 2583, - [2635] = 2084, - [2636] = 2085, - [2637] = 2270, - [2638] = 2062, - [2639] = 2639, - [2640] = 2026, - [2641] = 2068, - [2642] = 2579, - [2643] = 2041, - [2644] = 2062, - [2645] = 2133, - [2646] = 2019, - [2647] = 2639, - [2648] = 2050, - [2649] = 2649, - [2650] = 2587, - [2651] = 2207, - [2652] = 2163, - [2653] = 2446, - [2654] = 2452, - [2655] = 2138, - [2656] = 2129, - [2657] = 2128, - [2658] = 2126, - [2659] = 2142, - [2660] = 2118, - [2661] = 2062, - [2662] = 2101, - [2663] = 2547, - [2664] = 2067, - [2665] = 2245, - [2666] = 2499, - [2667] = 2487, - [2668] = 2488, - [2669] = 2489, - [2670] = 2490, - [2671] = 2493, - [2672] = 2503, - [2673] = 2505, - [2674] = 2508, - [2675] = 2509, - [2676] = 2513, - [2677] = 2517, - [2678] = 2052, - [2679] = 2515, - [2680] = 2048, - [2681] = 2047, - [2682] = 2046, - [2683] = 2462, - [2684] = 2045, - [2685] = 2020, - [2686] = 2601, - [2687] = 2017, - [2688] = 2413, - [2689] = 2001, - [2690] = 2176, - [2691] = 2015, - [2692] = 2090, - [2693] = 2036, - [2694] = 2119, - [2695] = 1868, - [2696] = 2250, - [2697] = 2101, - [2698] = 2553, - [2699] = 1872, - [2700] = 2062, - [2701] = 1874, - [2702] = 1879, - [2703] = 2100, - [2704] = 2200, - [2705] = 2705, - [2706] = 2515, - [2707] = 2067, - [2708] = 2193, - [2709] = 2709, - [2710] = 2705, - [2711] = 2188, - [2712] = 2187, - [2713] = 2578, - [2714] = 2600, - [2715] = 2036, - [2716] = 2186, - [2717] = 2592, - [2718] = 2069, - [2719] = 2547, - [2720] = 2587, - [2721] = 2475, - [2722] = 132, - [2723] = 1870, - [2724] = 2052, - [2725] = 2569, - [2726] = 2048, - [2727] = 2047, - [2728] = 2046, - [2729] = 2045, - [2730] = 2468, - [2731] = 2472, - [2732] = 2639, - [2733] = 2404, - [2734] = 2587, - [2735] = 2639, - [2736] = 2649, - [2737] = 2017, - [2738] = 2015, - [2739] = 2500, - [2740] = 1883, - [2741] = 1863, - [2742] = 2575, - [2743] = 2709, - [2744] = 1954, - [2745] = 1873, - [2746] = 2549, - [2747] = 2554, - [2748] = 2557, - [2749] = 1957, - [2750] = 1960, - [2751] = 1951, - [2752] = 2533, - [2753] = 2547, - [2754] = 1884, - [2755] = 2571, - [2756] = 2570, - [2757] = 2578, - [2758] = 1862, - [2759] = 1886, - [2760] = 2455, - [2761] = 1859, - [2762] = 2111, - [2763] = 2117, - [2764] = 2394, - [2765] = 2136, - [2766] = 2121, - [2767] = 2127, - [2768] = 2131, - [2769] = 1773, - [2770] = 1772, - [2771] = 2586, - [2772] = 2709, - [2773] = 2107, - [2774] = 1769, - [2775] = 2709, - [2776] = 2090, - [2777] = 1860, - [2778] = 1882, - [2779] = 2709, - [2780] = 129, - [2781] = 1770, - [2782] = 1777, - [2783] = 2112, - [2784] = 2578, - [2785] = 2020, - [2786] = 2574, - [2787] = 2545, - [2788] = 2544, + [2588] = 533, + [2589] = 2320, + [2590] = 425, + [2591] = 426, + [2592] = 427, + [2593] = 582, + [2594] = 512, + [2595] = 2271, + [2596] = 389, + [2597] = 464, + [2598] = 511, + [2599] = 423, + [2600] = 2298, + [2601] = 467, + [2602] = 2304, + [2603] = 426, + [2604] = 2571, + [2605] = 425, + [2606] = 2303, + [2607] = 423, + [2608] = 2300, + [2609] = 2299, + [2610] = 467, + [2611] = 464, + [2612] = 591, + [2613] = 422, + [2614] = 420, + [2615] = 2364, + [2616] = 531, + [2617] = 550, + [2618] = 594, + [2619] = 2289, + [2620] = 595, + [2621] = 585, + [2622] = 2394, + [2623] = 603, + [2624] = 578, + [2625] = 586, + [2626] = 2293, + [2627] = 2292, + [2628] = 2291, + [2629] = 2290, + [2630] = 2290, + [2631] = 529, + [2632] = 2289, + [2633] = 532, + [2634] = 427, + [2635] = 533, + [2636] = 2309, + [2637] = 574, + [2638] = 399, + [2639] = 2265, + [2640] = 525, + [2641] = 2313, + [2642] = 535, + [2643] = 2314, + [2644] = 2264, + [2645] = 546, + [2646] = 557, + [2647] = 558, + [2648] = 2400, + [2649] = 2263, + [2650] = 565, + [2651] = 2316, + [2652] = 2270, + [2653] = 566, + [2654] = 2274, + [2655] = 2275, + [2656] = 569, + [2657] = 579, + [2658] = 550, + [2659] = 2425, + [2660] = 589, + [2661] = 584, + [2662] = 2662, + [2663] = 513, + [2664] = 571, + [2665] = 560, + [2666] = 2500, + [2667] = 2303, + [2668] = 2284, + [2669] = 2669, + [2670] = 531, + [2671] = 547, + [2672] = 548, + [2673] = 560, + [2674] = 2669, + [2675] = 571, + [2676] = 591, + [2677] = 2309, + [2678] = 2313, + [2679] = 2314, + [2680] = 594, + [2681] = 2662, + [2682] = 595, + [2683] = 585, + [2684] = 581, + [2685] = 545, + [2686] = 2300, + [2687] = 578, + [2688] = 574, + [2689] = 518, + [2690] = 2298, + [2691] = 566, + [2692] = 513, + [2693] = 544, + [2694] = 547, + [2695] = 537, + [2696] = 2299, + [2697] = 2291, + [2698] = 2306, + [2699] = 2304, + [2700] = 2293, + [2701] = 548, + [2702] = 545, + [2703] = 569, + [2704] = 2425, + [2705] = 2292, + [2706] = 527, + [2707] = 2359, + [2708] = 526, + [2709] = 515, + [2710] = 517, + [2711] = 2587, + [2712] = 518, + [2713] = 526, + [2714] = 527, + [2715] = 544, + [2716] = 517, + [2717] = 515, + [2718] = 2414, + [2719] = 537, + [2720] = 2720, + [2721] = 2721, + [2722] = 2722, + [2723] = 2500, + [2724] = 2425, + [2725] = 2725, + [2726] = 2726, + [2727] = 2727, + [2728] = 2728, + [2729] = 2729, + [2730] = 2730, + [2731] = 2727, + [2732] = 2732, + [2733] = 2733, + [2734] = 2734, + [2735] = 2347, + [2736] = 2736, + [2737] = 2088, + [2738] = 2738, + [2739] = 2414, + [2740] = 2740, + [2741] = 2089, + [2742] = 2742, + [2743] = 2743, + [2744] = 2744, + [2745] = 2745, + [2746] = 2746, + [2747] = 2747, + [2748] = 2748, + [2749] = 2749, + [2750] = 2091, + [2751] = 2751, + [2752] = 2364, + [2753] = 2271, + [2754] = 2097, + [2755] = 2755, + [2756] = 2751, + [2757] = 2757, + [2758] = 2758, + [2759] = 2759, + [2760] = 2760, + [2761] = 2761, + [2762] = 2762, + [2763] = 2721, + [2764] = 2105, + [2765] = 2765, + [2766] = 2766, + [2767] = 2767, + [2768] = 2086, + [2769] = 2769, + [2770] = 2770, + [2771] = 2093, + [2772] = 2748, + [2773] = 2749, + [2774] = 2730, + [2775] = 2775, + [2776] = 2759, + [2777] = 2777, + [2778] = 2761, + [2779] = 2762, + [2780] = 2426, + [2781] = 2765, + [2782] = 321, + [2783] = 331, + [2784] = 2362, + [2785] = 2394, + [2786] = 2786, + [2787] = 2787, + [2788] = 2351, [2789] = 2789, - [2790] = 2115, - [2791] = 1776, - [2792] = 1781, - [2793] = 1771, - [2794] = 2118, - [2795] = 1933, - [2796] = 2119, - [2797] = 2026, - [2798] = 2515, - [2799] = 2041, - [2800] = 2133, - [2801] = 2019, - [2802] = 2802, - [2803] = 2276, - [2804] = 2445, - [2805] = 2516, - [2806] = 2180, - [2807] = 2050, - [2808] = 2808, - [2809] = 2116, - [2810] = 2463, - [2811] = 2141, - [2812] = 2142, - [2813] = 2084, - [2814] = 2126, - [2815] = 2128, - [2816] = 2085, - [2817] = 2501, - [2818] = 2129, - [2819] = 2138, - [2820] = 2709, - [2821] = 2466, - [2822] = 2068, - [2823] = 1869, - [2824] = 2584, - [2825] = 2176, - [2826] = 2705, - [2827] = 2491, - [2828] = 2096, - [2829] = 2709, - [2830] = 2709, - [2831] = 2709, - [2832] = 2505, - [2833] = 1844, - [2834] = 2452, - [2835] = 1996, - [2836] = 2572, - [2837] = 2495, - [2838] = 2499, - [2839] = 1772, - [2840] = 2002, - [2841] = 2462, - [2842] = 2446, - [2843] = 1855, - [2844] = 2270, - [2845] = 2207, - [2846] = 2601, - [2847] = 2583, - [2848] = 2413, - [2849] = 2567, - [2850] = 2245, - [2851] = 1995, - [2852] = 1856, - [2853] = 2010, - [2854] = 2594, - [2855] = 2513, - [2856] = 2517, - [2857] = 2465, - [2858] = 2508, - [2859] = 1982, - [2860] = 2180, - [2861] = 2001, - [2862] = 2487, - [2863] = 2488, - [2864] = 1857, - [2865] = 2509, - [2866] = 2579, - [2867] = 2585, - [2868] = 2489, - [2869] = 2490, - [2870] = 2493, - [2871] = 2503, - [2872] = 2069, - [2873] = 1859, - [2874] = 2446, - [2875] = 2085, - [2876] = 2084, - [2877] = 2142, - [2878] = 2141, - [2879] = 2116, - [2880] = 2115, - [2881] = 2112, - [2882] = 2594, - [2883] = 2121, - [2884] = 2585, - [2885] = 2583, - [2886] = 2250, - [2887] = 2107, - [2888] = 2579, - [2889] = 129, - [2890] = 1868, - [2891] = 132, - [2892] = 1883, - [2893] = 2594, - [2894] = 1863, - [2895] = 2487, - [2896] = 2200, - [2897] = 2193, - [2898] = 1872, - [2899] = 2188, - [2900] = 2187, - [2901] = 2186, - [2902] = 2501, - [2903] = 2413, - [2904] = 1873, - [2905] = 2488, - [2906] = 2549, - [2907] = 2138, - [2908] = 2554, - [2909] = 2517, - [2910] = 2557, - [2911] = 2513, - [2912] = 2509, - [2913] = 2508, - [2914] = 2129, - [2915] = 1884, - [2916] = 2495, - [2917] = 2505, - [2918] = 2503, - [2919] = 2493, - [2920] = 2128, - [2921] = 2490, - [2922] = 2489, - [2923] = 2586, - [2924] = 2488, - [2925] = 2487, - [2926] = 2489, - [2927] = 1874, - [2928] = 1870, - [2929] = 2126, - [2930] = 1879, - [2931] = 2455, - [2932] = 2176, - [2933] = 2578, - [2934] = 2490, - [2935] = 2567, - [2936] = 2119, - [2937] = 2118, - [2938] = 2472, - [2939] = 2569, - [2940] = 2574, - [2941] = 2499, - [2942] = 2942, - [2943] = 2462, - [2944] = 2942, - [2945] = 2600, - [2946] = 1920, - [2947] = 2446, - [2948] = 1862, - [2949] = 2466, - [2950] = 2101, - [2951] = 2592, - [2952] = 2100, - [2953] = 2493, - [2954] = 2578, - [2955] = 1820, - [2956] = 2452, - [2957] = 2465, - [2958] = 2516, - [2959] = 2587, - [2960] = 2553, - [2961] = 2503, - [2962] = 2445, - [2963] = 1817, - [2964] = 2505, - [2965] = 2463, - [2966] = 2508, - [2967] = 2491, - [2968] = 2111, - [2969] = 2067, - [2970] = 2499, - [2971] = 2533, - [2972] = 2567, - [2973] = 2452, - [2974] = 2572, - [2975] = 2601, - [2976] = 2052, - [2977] = 2048, - [2978] = 2404, - [2979] = 2468, - [2980] = 2547, - [2981] = 2394, - [2982] = 2575, - [2983] = 2117, - [2984] = 2578, - [2985] = 1869, - [2986] = 2601, - [2987] = 1924, - [2988] = 2584, - [2989] = 2047, - [2990] = 2046, - [2991] = 2585, - [2992] = 2571, - [2993] = 2570, - [2994] = 2515, - [2995] = 1886, - [2996] = 2500, - [2997] = 2050, - [2998] = 2045, - [2999] = 2136, - [3000] = 2068, - [3001] = 2276, - [3002] = 2019, - [3003] = 2017, - [3004] = 2133, - [3005] = 2041, - [3006] = 1821, - [3007] = 2026, - [3008] = 2015, - [3009] = 2465, - [3010] = 2475, - [3011] = 2517, - [3012] = 2513, - [3013] = 2207, - [3014] = 2649, - [3015] = 2572, - [3016] = 2579, - [3017] = 1860, - [3018] = 1882, - [3019] = 2583, - [3020] = 2509, - [3021] = 2545, - [3022] = 2131, - [3023] = 2127, - [3024] = 2245, - [3025] = 2544, - [3026] = 1872, - [3027] = 2491, - [3028] = 2554, - [3029] = 2533, - [3030] = 2549, - [3031] = 2575, - [3032] = 2571, - [3033] = 2570, - [3034] = 1862, - [3035] = 2574, - [3036] = 2578, - [3037] = 1886, - [3038] = 2250, - [3039] = 1873, - [3040] = 129, - [3041] = 2455, - [3042] = 1859, - [3043] = 2394, - [3044] = 1884, - [3045] = 1863, - [3046] = 132, - [3047] = 1860, - [3048] = 1883, - [3049] = 1868, - [3050] = 1882, - [3051] = 2545, - [3052] = 2544, - [3053] = 2553, - [3054] = 2592, - [3055] = 2445, - [3056] = 2276, - [3057] = 2569, - [3058] = 2516, - [3059] = 2942, - [3060] = 1870, - [3061] = 2600, - [3062] = 2501, - [3063] = 2586, - [3064] = 1869, - [3065] = 1879, - [3066] = 2557, - [3067] = 1874, - [3068] = 1771, - [3069] = 1781, - [3070] = 1776, - [3071] = 1777, - [3072] = 1770, - [3073] = 2466, - [3074] = 1769, - [3075] = 1773, - [3076] = 1772, - [3077] = 3077, + [2790] = 2720, + [2791] = 2791, + [2792] = 2792, + [2793] = 2284, + [2794] = 2747, + [2795] = 2770, + [2796] = 2769, + [2797] = 2775, + [2798] = 2767, + [2799] = 2400, + [2800] = 2425, + [2801] = 2746, + [2802] = 2757, + [2803] = 2745, + [2804] = 2755, + [2805] = 2805, + [2806] = 2740, + [2807] = 2744, + [2808] = 2738, + [2809] = 2400, + [2810] = 2414, + [2811] = 2354, + [2812] = 2743, + [2813] = 2742, + [2814] = 2394, + [2815] = 2517, + [2816] = 2792, + [2817] = 2426, + [2818] = 2306, + [2819] = 2760, + [2820] = 2084, + [2821] = 2359, + [2822] = 2733, + [2823] = 2725, + [2824] = 2732, + [2825] = 2729, + [2826] = 2728, + [2827] = 2726, + [2828] = 2510, + [2829] = 2787, + [2830] = 2789, + [2831] = 2791, + [2832] = 2777, + [2833] = 2587, + [2834] = 2084, + [2835] = 2571, + [2836] = 2669, + [2837] = 2837, + [2838] = 2400, + [2839] = 2394, + [2840] = 2351, + [2841] = 2426, + [2842] = 2500, + [2843] = 2843, + [2844] = 2347, + [2845] = 2098, + [2846] = 2414, + [2847] = 2362, + [2848] = 2580, + [2849] = 2513, + [2850] = 2850, + [2851] = 2851, + [2852] = 2852, + [2853] = 2837, + [2854] = 2854, + [2855] = 2855, + [2856] = 2856, + [2857] = 2662, + [2858] = 2354, + [2859] = 2859, + [2860] = 2527, + [2861] = 2098, + [2862] = 2720, + [2863] = 2098, + [2864] = 2721, + [2865] = 2394, + [2866] = 2805, + [2867] = 2730, + [2868] = 2747, + [2869] = 2091, + [2870] = 2740, + [2871] = 2738, + [2872] = 2746, + [2873] = 2751, + [2874] = 2726, + [2875] = 2097, + [2876] = 2876, + [2877] = 2877, + [2878] = 2742, + [2879] = 2725, + [2880] = 2789, + [2881] = 2733, + [2882] = 2758, + [2883] = 2883, + [2884] = 2769, + [2885] = 2105, + [2886] = 2527, + [2887] = 2722, + [2888] = 2888, + [2889] = 2876, + [2890] = 2876, + [2891] = 2891, + [2892] = 2736, + [2893] = 2876, + [2894] = 2837, + [2895] = 2843, + [2896] = 2086, + [2897] = 2837, + [2898] = 2758, + [2899] = 2786, + [2900] = 2513, + [2901] = 2901, + [2902] = 2084, + [2903] = 2770, + [2904] = 2904, + [2905] = 2093, + [2906] = 2084, + [2907] = 2748, + [2908] = 2749, + [2909] = 2767, + [2910] = 2727, + [2911] = 2755, + [2912] = 2792, + [2913] = 2089, + [2914] = 2425, + [2915] = 2915, + [2916] = 2916, + [2917] = 2791, + [2918] = 2728, + [2919] = 2876, + [2920] = 2765, + [2921] = 2787, + [2922] = 2510, + [2923] = 2762, + [2924] = 2924, + [2925] = 2761, + [2926] = 2926, + [2927] = 2400, + [2928] = 2777, + [2929] = 2729, + [2930] = 2732, + [2931] = 2876, + [2932] = 2743, + [2933] = 2517, + [2934] = 2744, + [2935] = 2935, + [2936] = 2745, + [2937] = 2426, + [2938] = 2758, + [2939] = 2500, + [2940] = 2088, + [2941] = 2760, + [2942] = 2757, + [2943] = 2759, + [2944] = 2775, + [2945] = 2414, + [2946] = 2186, + [2947] = 2587, + [2948] = 2571, + [2949] = 2891, + [2950] = 2950, + [2951] = 2951, + [2952] = 2952, + [2953] = 2953, + [2954] = 331, + [2955] = 2955, + [2956] = 2580, + [2957] = 2662, + [2958] = 2924, + [2959] = 2959, + [2960] = 321, + [2961] = 2170, + [2962] = 2962, + [2963] = 2963, + [2964] = 2964, + [2965] = 2855, + [2966] = 2966, + [2967] = 2967, + [2968] = 2968, + [2969] = 2174, + [2970] = 2970, + [2971] = 2971, + [2972] = 2972, + [2973] = 2926, + [2974] = 2974, + [2975] = 2975, + [2976] = 2500, + [2977] = 2510, + [2978] = 2959, + [2979] = 2979, + [2980] = 2178, + [2981] = 2195, + [2982] = 2935, + [2983] = 2856, + [2984] = 2984, + [2985] = 2985, + [2986] = 2173, + [2987] = 2987, + [2988] = 2988, + [2989] = 2989, + [2990] = 2179, + [2991] = 2669, + [2992] = 2187, + [2993] = 2993, + [2994] = 2994, + [2995] = 2995, + [2996] = 2996, + [2997] = 2580, + [2998] = 2959, + [2999] = 2364, + [3000] = 3000, + [3001] = 3001, + [3002] = 3002, + [3003] = 2587, + [3004] = 2359, + [3005] = 3005, + [3006] = 3006, + [3007] = 2177, + [3008] = 2571, + [3009] = 2188, + [3010] = 2734, + [3011] = 3011, + [3012] = 2184, + [3013] = 3013, + [3014] = 3014, + [3015] = 2182, + [3016] = 3016, + [3017] = 2959, + [3018] = 3018, + [3019] = 3019, + [3020] = 3020, + [3021] = 3021, + [3022] = 2959, + [3023] = 2959, + [3024] = 3024, + [3025] = 3025, + [3026] = 3026, + [3027] = 2662, + [3028] = 2190, + [3029] = 2191, + [3030] = 2193, + [3031] = 3031, + [3032] = 3032, + [3033] = 2959, + [3034] = 3034, + [3035] = 2180, + [3036] = 3036, + [3037] = 3037, + [3038] = 2766, + [3039] = 3039, + [3040] = 2517, + [3041] = 3041, + [3042] = 3042, + [3043] = 3043, + [3044] = 3044, + [3045] = 3045, + [3046] = 2669, + [3047] = 2979, + [3048] = 3048, + [3049] = 3049, + [3050] = 3050, + [3051] = 3051, + [3052] = 3052, + [3053] = 2196, + [3054] = 3054, + [3055] = 3055, + [3056] = 3056, + [3057] = 3057, + [3058] = 2859, + [3059] = 3059, + [3060] = 3060, + [3061] = 2197, + [3062] = 2098, + [3063] = 3063, + [3064] = 3064, + [3065] = 3065, + [3066] = 3066, + [3067] = 2850, + [3068] = 2851, + [3069] = 2852, + [3070] = 2854, + [3071] = 3071, + [3072] = 2761, + [3073] = 3071, + [3074] = 2762, + [3075] = 2765, + [3076] = 2901, + [3077] = 2760, [3078] = 3078, [3079] = 3079, - [3080] = 3080, - [3081] = 3080, - [3082] = 3079, - [3083] = 3083, - [3084] = 3077, - [3085] = 3078, - [3086] = 1924, - [3087] = 372, - [3088] = 1878, - [3089] = 3077, - [3090] = 1933, - [3091] = 3083, - [3092] = 3092, - [3093] = 1954, - [3094] = 3080, - [3095] = 3095, - [3096] = 1957, - [3097] = 1920, - [3098] = 3079, - [3099] = 3078, - [3100] = 1951, - [3101] = 3083, - [3102] = 3078, - [3103] = 3080, - [3104] = 3079, - [3105] = 3105, - [3106] = 3106, - [3107] = 3077, - [3108] = 1769, - [3109] = 3083, - [3110] = 1770, - [3111] = 1777, - [3112] = 1776, - [3113] = 1781, - [3114] = 1771, - [3115] = 3079, - [3116] = 1773, - [3117] = 3083, - [3118] = 1982, - [3119] = 1960, - [3120] = 412, - [3121] = 3077, - [3122] = 3078, - [3123] = 3123, - [3124] = 1856, - [3125] = 1855, - [3126] = 1920, - [3127] = 1924, - [3128] = 1857, - [3129] = 1844, - [3130] = 1132, - [3131] = 1133, - [3132] = 1777, - [3133] = 1933, - [3134] = 1954, - [3135] = 1951, - [3136] = 1960, - [3137] = 1773, - [3138] = 1924, - [3139] = 1771, - [3140] = 1769, - [3141] = 1781, - [3142] = 1982, - [3143] = 1776, - [3144] = 1957, - [3145] = 1920, - [3146] = 1770, - [3147] = 1926, - [3148] = 3148, - [3149] = 1966, - [3150] = 1912, - [3151] = 1975, - [3152] = 1978, - [3153] = 1917, - [3154] = 1978, - [3155] = 1974, - [3156] = 3156, - [3157] = 1966, - [3158] = 3158, - [3159] = 1914, - [3160] = 1912, - [3161] = 3161, - [3162] = 1868, - [3163] = 1863, - [3164] = 1924, - [3165] = 132, - [3166] = 1904, - [3167] = 1917, - [3168] = 1902, - [3169] = 1869, - [3170] = 1883, - [3171] = 1866, - [3172] = 1920, - [3173] = 1870, - [3174] = 1872, - [3175] = 1874, - [3176] = 1873, - [3177] = 1862, - [3178] = 1914, - [3179] = 1886, - [3180] = 1882, - [3181] = 1860, - [3182] = 1909, - [3183] = 1884, - [3184] = 129, - [3185] = 1859, - [3186] = 1879, - [3187] = 3187, - [3188] = 3187, - [3189] = 1926, - [3190] = 1917, - [3191] = 3191, - [3192] = 1914, - [3193] = 3193, - [3194] = 3194, - [3195] = 3191, - [3196] = 2001, - [3197] = 1996, - [3198] = 1995, - [3199] = 2002, - [3200] = 1878, - [3201] = 3201, - [3202] = 2010, - [3203] = 3191, - [3204] = 1912, - [3205] = 1926, - [3206] = 3191, - [3207] = 3207, - [3208] = 1975, - [3209] = 1982, - [3210] = 2117, - [3211] = 3211, - [3212] = 2136, + [3080] = 3018, + [3081] = 3025, + [3082] = 3031, + [3083] = 3032, + [3084] = 2757, + [3085] = 2891, + [3086] = 2587, + [3087] = 2725, + [3088] = 2726, + [3089] = 2728, + [3090] = 2729, + [3091] = 3000, + [3092] = 2732, + [3093] = 2733, + [3094] = 2738, + [3095] = 2759, + [3096] = 2751, + [3097] = 2745, + [3098] = 2994, + [3099] = 2744, + [3100] = 2792, + [3101] = 2749, + [3102] = 2662, + [3103] = 2722, + [3104] = 2740, + [3105] = 2736, + [3106] = 3024, + [3107] = 2755, + [3108] = 2084, + [3109] = 2743, + [3110] = 2758, + [3111] = 2748, + [3112] = 2721, + [3113] = 2791, + [3114] = 2789, + [3115] = 2787, + [3116] = 2580, + [3117] = 2742, + [3118] = 2775, + [3119] = 2767, + [3120] = 2747, + [3121] = 2730, + [3122] = 2950, + [3123] = 2769, + [3124] = 2746, + [3125] = 2758, + [3126] = 2727, + [3127] = 2916, + [3128] = 2746, + [3129] = 2747, + [3130] = 2951, + [3131] = 2669, + [3132] = 2727, + [3133] = 2786, + [3134] = 2770, + [3135] = 2730, + [3136] = 2962, + [3137] = 2740, + [3138] = 2963, + [3139] = 2748, + [3140] = 2749, + [3141] = 2742, + [3142] = 2571, + [3143] = 2743, + [3144] = 2744, + [3145] = 2745, + [3146] = 2759, + [3147] = 2964, + [3148] = 2751, + [3149] = 2966, + [3150] = 2970, + [3151] = 2761, + [3152] = 2762, + [3153] = 2891, + [3154] = 2971, + [3155] = 2765, + [3156] = 2757, + [3157] = 2974, + [3158] = 2975, + [3159] = 2760, + [3160] = 2775, + [3161] = 2738, + [3162] = 2787, + [3163] = 2789, + [3164] = 2791, + [3165] = 3079, + [3166] = 2792, + [3167] = 3039, + [3168] = 2725, + [3169] = 2984, + [3170] = 2726, + [3171] = 2728, + [3172] = 3016, + [3173] = 2720, + [3174] = 2729, + [3175] = 2732, + [3176] = 2733, + [3177] = 2955, + [3178] = 2805, + [3179] = 2952, + [3180] = 3050, + [3181] = 2877, + [3182] = 2777, + [3183] = 2850, + [3184] = 2851, + [3185] = 2852, + [3186] = 2856, + [3187] = 3060, + [3188] = 2854, + [3189] = 2967, + [3190] = 3013, + [3191] = 2777, + [3192] = 2720, + [3193] = 2758, + [3194] = 2770, + [3195] = 2769, + [3196] = 2953, + [3197] = 2972, + [3198] = 2767, + [3199] = 2721, + [3200] = 2755, + [3201] = 2859, + [3202] = 2760, + [3203] = 3011, + [3204] = 2851, + [3205] = 2852, + [3206] = 3020, + [3207] = 406, + [3208] = 2179, + [3209] = 2854, + [3210] = 3210, + [3211] = 2859, + [3212] = 3014, [3213] = 3213, - [3214] = 3214, - [3215] = 2121, - [3216] = 2127, - [3217] = 3214, - [3218] = 3213, - [3219] = 2111, - [3220] = 2180, - [3221] = 2138, - [3222] = 3211, - [3223] = 2069, - [3224] = 3224, - [3225] = 3225, - [3226] = 2118, - [3227] = 2119, - [3228] = 3213, - [3229] = 2067, - [3230] = 3224, - [3231] = 1974, - [3232] = 2017, - [3233] = 3233, - [3234] = 3211, - [3235] = 2126, - [3236] = 3214, - [3237] = 2019, - [3238] = 3213, - [3239] = 3239, - [3240] = 2133, - [3241] = 2041, - [3242] = 2052, - [3243] = 3211, - [3244] = 3214, - [3245] = 1132, - [3246] = 2131, - [3247] = 3247, - [3248] = 3211, - [3249] = 2100, - [3250] = 2048, - [3251] = 3214, - [3252] = 2101, - [3253] = 3214, - [3254] = 2050, - [3255] = 1772, - [3256] = 3211, - [3257] = 2084, - [3258] = 2026, - [3259] = 2068, - [3260] = 2047, - [3261] = 2128, - [3262] = 2107, - [3263] = 3213, - [3264] = 2129, - [3265] = 1133, - [3266] = 2046, - [3267] = 2112, - [3268] = 3213, - [3269] = 2045, - [3270] = 2115, - [3271] = 2142, - [3272] = 1866, - [3273] = 2141, - [3274] = 3213, - [3275] = 2085, - [3276] = 3211, - [3277] = 3214, - [3278] = 3213, - [3279] = 2015, - [3280] = 2116, - [3281] = 3211, - [3282] = 3214, - [3283] = 3211, - [3284] = 3214, - [3285] = 3285, - [3286] = 3286, - [3287] = 2445, - [3288] = 1978, - [3289] = 3285, - [3290] = 2245, - [3291] = 3291, - [3292] = 3292, - [3293] = 2466, - [3294] = 3294, - [3295] = 1966, - [3296] = 2413, - [3297] = 3292, - [3298] = 3292, - [3299] = 3291, - [3300] = 3300, - [3301] = 3285, - [3302] = 2096, - [3303] = 2553, - [3304] = 2020, - [3305] = 3291, - [3306] = 3291, - [3307] = 3286, - [3308] = 3285, - [3309] = 3286, - [3310] = 3291, - [3311] = 3286, - [3312] = 3285, - [3313] = 3286, - [3314] = 3285, - [3315] = 3291, - [3316] = 2036, - [3317] = 3292, - [3318] = 3286, - [3319] = 3286, - [3320] = 3320, - [3321] = 3285, - [3322] = 3292, - [3323] = 2575, - [3324] = 3291, - [3325] = 3292, - [3326] = 3286, - [3327] = 3207, - [3328] = 2207, - [3329] = 3329, - [3330] = 2090, - [3331] = 3285, - [3332] = 1966, - [3333] = 3286, - [3334] = 3292, - [3335] = 3285, - [3336] = 3336, - [3337] = 3156, - [3338] = 2579, - [3339] = 2545, - [3340] = 3239, - [3341] = 2096, - [3342] = 3342, - [3343] = 3342, - [3344] = 2036, - [3345] = 1909, - [3346] = 3346, - [3347] = 2491, - [3348] = 2488, - [3349] = 3349, - [3350] = 1844, - [3351] = 2557, - [3352] = 2592, - [3353] = 2583, - [3354] = 2455, - [3355] = 1855, - [3356] = 2516, - [3357] = 1902, - [3358] = 2501, - [3359] = 2020, - [3360] = 2533, - [3361] = 1904, - [3362] = 3300, - [3363] = 3346, - [3364] = 3349, - [3365] = 2574, - [3366] = 2569, - [3367] = 3342, - [3368] = 1975, - [3369] = 3349, - [3370] = 3346, - [3371] = 3371, - [3372] = 2090, - [3373] = 3346, - [3374] = 3346, - [3375] = 2554, - [3376] = 1974, - [3377] = 2567, - [3378] = 3342, - [3379] = 2570, - [3380] = 2549, - [3381] = 3349, - [3382] = 3336, - [3383] = 2601, - [3384] = 2600, - [3385] = 2571, - [3386] = 2586, - [3387] = 3342, - [3388] = 3349, - [3389] = 2544, - [3390] = 3148, - [3391] = 3320, - [3392] = 2594, - [3393] = 2446, - [3394] = 3394, - [3395] = 1883, - [3396] = 1902, - [3397] = 2585, - [3398] = 1870, - [3399] = 129, - [3400] = 2465, - [3401] = 1874, - [3402] = 2090, - [3403] = 1859, - [3404] = 3394, - [3405] = 1873, - [3406] = 2490, - [3407] = 3336, - [3408] = 2487, - [3409] = 1882, - [3410] = 3394, - [3411] = 2499, - [3412] = 2503, - [3413] = 2096, - [3414] = 2489, - [3415] = 3394, - [3416] = 1872, - [3417] = 3394, - [3418] = 1879, - [3419] = 1909, - [3420] = 2493, - [3421] = 1869, - [3422] = 2020, - [3423] = 2505, - [3424] = 2508, - [3425] = 2509, - [3426] = 2513, - [3427] = 132, - [3428] = 1860, - [3429] = 2572, - [3430] = 2517, - [3431] = 1904, - [3432] = 3432, - [3433] = 1886, - [3434] = 1884, - [3435] = 3394, - [3436] = 2452, - [3437] = 1868, - [3438] = 1863, - [3439] = 1862, - [3440] = 3394, - [3441] = 2036, - [3442] = 3442, - [3443] = 3443, - [3444] = 2182, - [3445] = 3445, - [3446] = 3442, - [3447] = 2180, - [3448] = 2010, - [3449] = 3445, - [3450] = 3445, - [3451] = 3451, - [3452] = 1772, - [3453] = 3442, - [3454] = 3454, - [3455] = 3451, - [3456] = 3442, - [3457] = 3457, - [3458] = 3458, - [3459] = 3445, - [3460] = 3451, - [3461] = 3300, - [3462] = 3442, - [3463] = 3451, - [3464] = 3464, - [3465] = 3442, - [3466] = 2002, - [3467] = 3442, - [3468] = 3445, - [3469] = 3469, - [3470] = 3442, - [3471] = 3442, - [3472] = 3442, - [3473] = 3473, - [3474] = 3442, - [3475] = 3451, - [3476] = 3476, - [3477] = 3477, - [3478] = 3442, - [3479] = 2001, - [3480] = 3442, - [3481] = 3320, - [3482] = 3300, - [3483] = 3320, - [3484] = 3445, - [3485] = 3485, - [3486] = 3451, - [3487] = 3442, - [3488] = 2163, - [3489] = 3320, - [3490] = 3300, - [3491] = 3442, - [3492] = 3492, - [3493] = 3442, - [3494] = 2649, - [3495] = 3445, - [3496] = 2465, - [3497] = 3497, - [3498] = 3498, - [3499] = 3499, - [3500] = 3499, - [3501] = 3501, - [3502] = 3497, - [3503] = 3503, - [3504] = 3504, - [3505] = 3505, - [3506] = 3506, - [3507] = 3507, - [3508] = 2276, - [3509] = 3509, - [3510] = 3510, - [3511] = 3511, - [3512] = 3469, - [3513] = 3503, - [3514] = 3505, - [3515] = 3509, - [3516] = 3516, - [3517] = 3506, - [3518] = 3518, - [3519] = 2250, - [3520] = 3499, - [3521] = 3507, - [3522] = 3497, - [3523] = 3499, - [3524] = 3504, - [3525] = 3525, - [3526] = 3499, - [3527] = 3497, - [3528] = 3528, - [3529] = 3506, - [3530] = 3511, - [3531] = 3473, - [3532] = 3498, - [3533] = 3525, - [3534] = 3506, - [3535] = 3535, - [3536] = 3503, - [3537] = 3505, - [3538] = 3504, - [3539] = 3510, - [3540] = 3511, - [3541] = 3506, - [3542] = 3511, - [3543] = 3543, - [3544] = 3509, - [3545] = 3497, - [3546] = 3509, - [3547] = 3505, - [3548] = 3503, - [3549] = 3498, - [3550] = 3525, - [3551] = 3525, - [3552] = 3498, - [3553] = 2394, - [3554] = 2068, - [3555] = 3528, - [3556] = 3300, - [3557] = 2207, - [3558] = 2015, - [3559] = 3516, - [3560] = 3503, - [3561] = 3511, - [3562] = 3509, - [3563] = 3505, - [3564] = 3505, - [3565] = 3503, - [3566] = 2499, - [3567] = 3507, - [3568] = 3525, - [3569] = 3509, - [3570] = 3498, - [3571] = 2452, - [3572] = 2579, - [3573] = 3573, - [3574] = 3511, - [3575] = 2045, - [3576] = 3504, - [3577] = 3577, - [3578] = 2046, - [3579] = 2047, - [3580] = 3580, - [3581] = 2572, - [3582] = 3510, - [3583] = 3543, - [3584] = 1866, - [3585] = 3510, - [3586] = 2048, - [3587] = 3543, - [3588] = 2052, - [3589] = 3589, - [3590] = 2583, - [3591] = 2585, - [3592] = 3543, - [3593] = 3593, - [3594] = 3510, - [3595] = 3507, - [3596] = 2594, - [3597] = 3507, - [3598] = 2567, - [3599] = 2517, - [3600] = 3600, - [3601] = 2017, - [3602] = 3504, - [3603] = 2245, - [3604] = 2513, - [3605] = 2509, - [3606] = 2067, - [3607] = 2508, - [3608] = 3608, - [3609] = 3320, - [3610] = 3498, - [3611] = 3611, - [3612] = 2505, - [3613] = 2503, - [3614] = 2493, - [3615] = 3504, - [3616] = 2490, - [3617] = 3458, - [3618] = 2489, - [3619] = 2487, - [3620] = 2100, - [3621] = 2101, - [3622] = 3497, - [3623] = 3504, - [3624] = 2446, - [3625] = 2118, - [3626] = 2119, - [3627] = 2126, - [3628] = 2128, - [3629] = 2129, - [3630] = 2138, - [3631] = 3543, - [3632] = 1764, - [3633] = 2446, - [3634] = 2488, - [3635] = 2489, - [3636] = 2490, - [3637] = 2493, - [3638] = 2503, - [3639] = 2505, - [3640] = 2508, - [3641] = 2509, - [3642] = 2513, - [3643] = 2465, - [3644] = 2517, - [3645] = 3645, - [3646] = 3646, - [3647] = 2601, - [3648] = 2085, - [3649] = 2084, - [3650] = 3194, - [3651] = 2142, - [3652] = 2141, - [3653] = 3207, - [3654] = 2116, - [3655] = 2115, - [3656] = 2112, - [3657] = 3657, - [3658] = 2050, - [3659] = 3193, - [3660] = 2107, - [3661] = 2413, - [3662] = 2585, - [3663] = 3525, - [3664] = 2019, - [3665] = 2133, - [3666] = 2041, - [3667] = 2069, - [3668] = 2572, - [3669] = 2594, - [3670] = 2026, - [3671] = 2487, - [3672] = 3506, - [3673] = 2499, - [3674] = 3454, - [3675] = 2131, - [3676] = 2127, - [3677] = 2121, - [3678] = 2136, - [3679] = 3510, - [3680] = 2117, - [3681] = 2111, - [3682] = 3543, - [3683] = 2452, - [3684] = 3507, - [3685] = 3685, - [3686] = 3686, + [3214] = 2187, + [3215] = 2953, + [3216] = 3216, + [3217] = 2850, + [3218] = 3064, + [3219] = 3210, + [3220] = 3213, + [3221] = 3221, + [3222] = 3065, + [3223] = 321, + [3224] = 2926, + [3225] = 2972, + [3226] = 2414, + [3227] = 2738, + [3228] = 2740, + [3229] = 3210, + [3230] = 2755, + [3231] = 3210, + [3232] = 2721, + [3233] = 3066, + [3234] = 2952, + [3235] = 2952, + [3236] = 3236, + [3237] = 2748, + [3238] = 3001, + [3239] = 3036, + [3240] = 2765, + [3241] = 2400, + [3242] = 2762, + [3243] = 2761, + [3244] = 2769, + [3245] = 2770, + [3246] = 404, + [3247] = 2394, + [3248] = 2426, + [3249] = 3079, + [3250] = 2178, + [3251] = 2425, + [3252] = 2759, + [3253] = 2749, + [3254] = 331, + [3255] = 3037, + [3256] = 2720, + [3257] = 2500, + [3258] = 2924, + [3259] = 3042, + [3260] = 2805, + [3261] = 2777, + [3262] = 3051, + [3263] = 3052, + [3264] = 3236, + [3265] = 2767, + [3266] = 2993, + [3267] = 3210, + [3268] = 2093, + [3269] = 3269, + [3270] = 2935, + [3271] = 2195, + [3272] = 2086, + [3273] = 2105, + [3274] = 2856, + [3275] = 2953, + [3276] = 2733, + [3277] = 2732, + [3278] = 2729, + [3279] = 2728, + [3280] = 3044, + [3281] = 2726, + [3282] = 2747, + [3283] = 2746, + [3284] = 2722, + [3285] = 2985, + [3286] = 2097, + [3287] = 2725, + [3288] = 2789, + [3289] = 2987, + [3290] = 2757, + [3291] = 2091, + [3292] = 3002, + [3293] = 2792, + [3294] = 2791, + [3295] = 2089, + [3296] = 3063, + [3297] = 2088, + [3298] = 2787, + [3299] = 2995, + [3300] = 3005, + [3301] = 3054, + [3302] = 3055, + [3303] = 3043, + [3304] = 3056, + [3305] = 3059, + [3306] = 3210, + [3307] = 2098, + [3308] = 3078, + [3309] = 2775, + [3310] = 2915, + [3311] = 2758, + [3312] = 3019, + [3313] = 2855, + [3314] = 2186, + [3315] = 2968, + [3316] = 2182, + [3317] = 3210, + [3318] = 3021, + [3319] = 2988, + [3320] = 2727, + [3321] = 3006, + [3322] = 3026, + [3323] = 2177, + [3324] = 3079, + [3325] = 2180, + [3326] = 3045, + [3327] = 2989, + [3328] = 2766, + [3329] = 2190, + [3330] = 2736, + [3331] = 3057, + [3332] = 3332, + [3333] = 3041, + [3334] = 3048, + [3335] = 2972, + [3336] = 3236, + [3337] = 3210, + [3338] = 2184, + [3339] = 2730, + [3340] = 3049, + [3341] = 2188, + [3342] = 2734, + [3343] = 2996, + [3344] = 2751, + [3345] = 3345, + [3346] = 2197, + [3347] = 2193, + [3348] = 2191, + [3349] = 2742, + [3350] = 2743, + [3351] = 3071, + [3352] = 2744, + [3353] = 2745, + [3354] = 3034, + [3355] = 2786, + [3356] = 2196, + [3357] = 3210, + [3358] = 2974, + [3359] = 3018, + [3360] = 2916, + [3361] = 3361, + [3362] = 3362, + [3363] = 3363, + [3364] = 3364, + [3365] = 3362, + [3366] = 3366, + [3367] = 2222, + [3368] = 2950, + [3369] = 2951, + [3370] = 2955, + [3371] = 2962, + [3372] = 2364, + [3373] = 2963, + [3374] = 2964, + [3375] = 2966, + [3376] = 3039, + [3377] = 2970, + [3378] = 2971, + [3379] = 3364, + [3380] = 3050, + [3381] = 2891, + [3382] = 3000, + [3383] = 2877, + [3384] = 3364, + [3385] = 2901, + [3386] = 3363, + [3387] = 2211, + [3388] = 3366, + [3389] = 2217, + [3390] = 3024, + [3391] = 2098, + [3392] = 2975, + [3393] = 2967, + [3394] = 3366, + [3395] = 3362, + [3396] = 3361, + [3397] = 2213, + [3398] = 2994, + [3399] = 3363, + [3400] = 3025, + [3401] = 3366, + [3402] = 2984, + [3403] = 3016, + [3404] = 2098, + [3405] = 3363, + [3406] = 2855, + [3407] = 2214, + [3408] = 3364, + [3409] = 3366, + [3410] = 3361, + [3411] = 3361, + [3412] = 3013, + [3413] = 3364, + [3414] = 3031, + [3415] = 3361, + [3416] = 3362, + [3417] = 3363, + [3418] = 2359, + [3419] = 3032, + [3420] = 3060, + [3421] = 3362, + [3422] = 3051, + [3423] = 3032, + [3424] = 2916, + [3425] = 3005, + [3426] = 3002, + [3427] = 3001, + [3428] = 3006, + [3429] = 2901, + [3430] = 2188, + [3431] = 3050, + [3432] = 3078, + [3433] = 3039, + [3434] = 2186, + [3435] = 2987, + [3436] = 2182, + [3437] = 3050, + [3438] = 2985, + [3439] = 3016, + [3440] = 3018, + [3441] = 3019, + [3442] = 3020, + [3443] = 3013, + [3444] = 2856, + [3445] = 2195, + [3446] = 3016, + [3447] = 2178, + [3448] = 3036, + [3449] = 3037, + [3450] = 3042, + [3451] = 3044, + [3452] = 2952, + [3453] = 2984, + [3454] = 2975, + [3455] = 3013, + [3456] = 3045, + [3457] = 2196, + [3458] = 2955, + [3459] = 2974, + [3460] = 2953, + [3461] = 2971, + [3462] = 3057, + [3463] = 2970, + [3464] = 2966, + [3465] = 2964, + [3466] = 2963, + [3467] = 2962, + [3468] = 3034, + [3469] = 2179, + [3470] = 2187, + [3471] = 3060, + [3472] = 3024, + [3473] = 3066, + [3474] = 2993, + [3475] = 3025, + [3476] = 3065, + [3477] = 3064, + [3478] = 3063, + [3479] = 1414, + [3480] = 2955, + [3481] = 3031, + [3482] = 2951, + [3483] = 3032, + [3484] = 2935, + [3485] = 2984, + [3486] = 2995, + [3487] = 2950, + [3488] = 3043, + [3489] = 3059, + [3490] = 2994, + [3491] = 2177, + [3492] = 3000, + [3493] = 2924, + [3494] = 3031, + [3495] = 3025, + [3496] = 2972, + [3497] = 3024, + [3498] = 3018, + [3499] = 3056, + [3500] = 3055, + [3501] = 3054, + [3502] = 2975, + [3503] = 3060, + [3504] = 3041, + [3505] = 2974, + [3506] = 2996, + [3507] = 3011, + [3508] = 2971, + [3509] = 3213, + [3510] = 2970, + [3511] = 2966, + [3512] = 2964, + [3513] = 3021, + [3514] = 2963, + [3515] = 2988, + [3516] = 3048, + [3517] = 2962, + [3518] = 2967, + [3519] = 2926, + [3520] = 1413, + [3521] = 2951, + [3522] = 2950, + [3523] = 2184, + [3524] = 3049, + [3525] = 3000, + [3526] = 2193, + [3527] = 2197, + [3528] = 3052, + [3529] = 3014, + [3530] = 2850, + [3531] = 2851, + [3532] = 2852, + [3533] = 2191, + [3534] = 2854, + [3535] = 2190, + [3536] = 2174, + [3537] = 2915, + [3538] = 3026, + [3539] = 2989, + [3540] = 2859, + [3541] = 3213, + [3542] = 2173, + [3543] = 321, + [3544] = 331, + [3545] = 2766, + [3546] = 2877, + [3547] = 2994, + [3548] = 2968, + [3549] = 2734, + [3550] = 2170, + [3551] = 2180, + [3552] = 2187, + [3553] = 2088, + [3554] = 2097, + [3555] = 2105, + [3556] = 3057, + [3557] = 3065, + [3558] = 3064, + [3559] = 3063, + [3560] = 2400, + [3561] = 2926, + [3562] = 2196, + [3563] = 3011, + [3564] = 2178, + [3565] = 3021, + [3566] = 3059, + [3567] = 2086, + [3568] = 3048, + [3569] = 2179, + [3570] = 2364, + [3571] = 3045, + [3572] = 3044, + [3573] = 2993, + [3574] = 3056, + [3575] = 3042, + [3576] = 2924, + [3577] = 2995, + [3578] = 2414, + [3579] = 3213, + [3580] = 3037, + [3581] = 3055, + [3582] = 3054, + [3583] = 3052, + [3584] = 2190, + [3585] = 2191, + [3586] = 2193, + [3587] = 2088, + [3588] = 2089, + [3589] = 2091, + [3590] = 2097, + [3591] = 2105, + [3592] = 2086, + [3593] = 3036, + [3594] = 3020, + [3595] = 2426, + [3596] = 3019, + [3597] = 2195, + [3598] = 2093, + [3599] = 2093, + [3600] = 2197, + [3601] = 2394, + [3602] = 2500, + [3603] = 3049, + [3604] = 331, + [3605] = 2182, + [3606] = 3041, + [3607] = 2186, + [3608] = 2425, + [3609] = 3051, + [3610] = 2766, + [3611] = 2091, + [3612] = 2180, + [3613] = 2985, + [3614] = 2177, + [3615] = 2089, + [3616] = 2987, + [3617] = 3066, + [3618] = 2359, + [3619] = 2935, + [3620] = 2184, + [3621] = 321, + [3622] = 3026, + [3623] = 2734, + [3624] = 2188, + [3625] = 3001, + [3626] = 3002, + [3627] = 3006, + [3628] = 3043, + [3629] = 3005, + [3630] = 2517, + [3631] = 3631, + [3632] = 2510, + [3633] = 3633, + [3634] = 3634, + [3635] = 3635, + [3636] = 3636, + [3637] = 3637, + [3638] = 2364, + [3639] = 3637, + [3640] = 3636, + [3641] = 2217, + [3642] = 3636, + [3643] = 3637, + [3644] = 2284, + [3645] = 3637, + [3646] = 2211, + [3647] = 3636, + [3648] = 3637, + [3649] = 3637, + [3650] = 2271, + [3651] = 2306, + [3652] = 3636, + [3653] = 3637, + [3654] = 2213, + [3655] = 3636, + [3656] = 2359, + [3657] = 2230, + [3658] = 2214, + [3659] = 3637, + [3660] = 3637, + [3661] = 3637, + [3662] = 3636, + [3663] = 3636, + [3664] = 3636, + [3665] = 3636, + [3666] = 3637, + [3667] = 3636, + [3668] = 3668, + [3669] = 3669, + [3670] = 3668, + [3671] = 2669, + [3672] = 3672, + [3673] = 2580, + [3674] = 2571, + [3675] = 3668, + [3676] = 3668, + [3677] = 2587, + [3678] = 3668, + [3679] = 3679, + [3680] = 2662, + [3681] = 3681, + [3682] = 2222, + [3683] = 2742, + [3684] = 1413, + [3685] = 2762, + [3686] = 2738, [3687] = 3687, [3688] = 3688, - [3689] = 3689, - [3690] = 2601, - [3691] = 3691, - [3692] = 3692, - [3693] = 3158, - [3694] = 3694, + [3689] = 3688, + [3690] = 1414, + [3691] = 2765, + [3692] = 2727, + [3693] = 3693, + [3694] = 2730, [3695] = 3695, - [3696] = 3696, - [3697] = 3687, - [3698] = 3686, - [3699] = 3699, - [3700] = 2501, - [3701] = 3701, - [3702] = 3686, - [3703] = 2544, - [3704] = 3247, - [3705] = 2545, - [3706] = 2516, - [3707] = 2491, - [3708] = 3708, - [3709] = 3688, - [3710] = 3710, + [3696] = 2740, + [3697] = 2792, + [3698] = 3695, + [3699] = 2777, + [3700] = 3693, + [3701] = 3687, + [3702] = 3687, + [3703] = 3695, + [3704] = 3704, + [3705] = 3693, + [3706] = 3706, + [3707] = 3707, + [3708] = 2351, + [3709] = 2755, + [3710] = 2761, [3711] = 3711, - [3712] = 2445, - [3713] = 3713, - [3714] = 2455, - [3715] = 2488, - [3716] = 2570, - [3717] = 2571, - [3718] = 3718, - [3719] = 3719, - [3720] = 3720, - [3721] = 3721, - [3722] = 3722, - [3723] = 2276, + [3712] = 2721, + [3713] = 3687, + [3714] = 3714, + [3715] = 3688, + [3716] = 2751, + [3717] = 2760, + [3718] = 3693, + [3719] = 3695, + [3720] = 3711, + [3721] = 3687, + [3722] = 2791, + [3723] = 2757, [3724] = 3688, - [3725] = 3725, - [3726] = 3726, - [3727] = 3535, - [3728] = 3699, - [3729] = 3688, - [3730] = 3730, - [3731] = 2575, - [3732] = 3685, - [3733] = 3685, - [3734] = 3734, - [3735] = 3708, - [3736] = 3685, - [3737] = 2567, - [3738] = 1975, - [3739] = 3685, - [3740] = 3692, - [3741] = 2583, - [3742] = 2182, - [3743] = 3687, - [3744] = 3686, - [3745] = 3699, - [3746] = 1133, - [3747] = 2592, - [3748] = 3748, - [3749] = 3699, - [3750] = 3687, - [3751] = 2579, - [3752] = 2600, - [3753] = 3692, - [3754] = 3754, - [3755] = 3755, - [3756] = 3756, - [3757] = 3687, - [3758] = 3685, - [3759] = 3686, + [3725] = 3687, + [3726] = 3711, + [3727] = 3695, + [3728] = 2789, + [3729] = 2747, + [3730] = 3711, + [3731] = 2746, + [3732] = 2787, + [3733] = 3688, + [3734] = 3688, + [3735] = 3711, + [3736] = 3688, + [3737] = 3693, + [3738] = 2347, + [3739] = 2759, + [3740] = 3711, + [3741] = 3688, + [3742] = 2745, + [3743] = 3695, + [3744] = 2733, + [3745] = 3745, + [3746] = 2732, + [3747] = 2500, + [3748] = 2775, + [3749] = 2749, + [3750] = 2744, + [3751] = 2230, + [3752] = 3688, + [3753] = 3711, + [3754] = 2527, + [3755] = 2517, + [3756] = 2510, + [3757] = 2767, + [3758] = 3711, + [3759] = 3687, [3760] = 3688, - [3761] = 3711, - [3762] = 3695, - [3763] = 3689, - [3764] = 3764, - [3765] = 3688, - [3766] = 2533, - [3767] = 3764, - [3768] = 2569, - [3769] = 3711, - [3770] = 3770, - [3771] = 3771, - [3772] = 3688, - [3773] = 2553, - [3774] = 3774, - [3775] = 3764, - [3776] = 2163, - [3777] = 3711, - [3778] = 3688, - [3779] = 3711, - [3780] = 3722, - [3781] = 3755, - [3782] = 3708, - [3783] = 3783, - [3784] = 2250, - [3785] = 2594, - [3786] = 1132, - [3787] = 3722, - [3788] = 3694, - [3789] = 2585, - [3790] = 3722, - [3791] = 3695, - [3792] = 3711, - [3793] = 3771, - [3794] = 3695, - [3795] = 3689, - [3796] = 2499, - [3797] = 3708, - [3798] = 2549, - [3799] = 2554, - [3800] = 3685, - [3801] = 2557, - [3802] = 2452, - [3803] = 3803, - [3804] = 2572, - [3805] = 2517, - [3806] = 3806, - [3807] = 2513, - [3808] = 3694, - [3809] = 3721, - [3810] = 1772, - [3811] = 3692, - [3812] = 3719, - [3813] = 3720, - [3814] = 3726, - [3815] = 2509, - [3816] = 2586, - [3817] = 2508, - [3818] = 3694, - [3819] = 2394, - [3820] = 2505, - [3821] = 3821, - [3822] = 3783, - [3823] = 3692, - [3824] = 3806, - [3825] = 3694, - [3826] = 3826, - [3827] = 3699, - [3828] = 3803, - [3829] = 3685, - [3830] = 2503, - [3831] = 3689, - [3832] = 2466, - [3833] = 2493, - [3834] = 3689, - [3835] = 2465, - [3836] = 2446, - [3837] = 3720, - [3838] = 3695, - [3839] = 3711, - [3840] = 1974, - [3841] = 3722, - [3842] = 2490, - [3843] = 3688, - [3844] = 3695, - [3845] = 3695, - [3846] = 3755, - [3847] = 3694, - [3848] = 2487, - [3849] = 3694, - [3850] = 3708, - [3851] = 3689, - [3852] = 3708, - [3853] = 2489, - [3854] = 3722, - [3855] = 2574, - [3856] = 3721, - [3857] = 3696, - [3858] = 3713, - [3859] = 3469, - [3860] = 3469, - [3861] = 3501, - [3862] = 3300, - [3863] = 3473, - [3864] = 3320, - [3865] = 3865, - [3866] = 3454, - [3867] = 3473, - [3868] = 3868, - [3869] = 3458, - [3870] = 3473, - [3871] = 3871, - [3872] = 1975, - [3873] = 1764, - [3874] = 3874, - [3875] = 3875, - [3876] = 3469, - [3877] = 1974, - [3878] = 3874, - [3879] = 3148, - [3880] = 3501, - [3881] = 3875, - [3882] = 3469, - [3883] = 3883, - [3884] = 3458, - [3885] = 3156, - [3886] = 3871, - [3887] = 1764, - [3888] = 3454, - [3889] = 3458, - [3890] = 3473, - [3891] = 3501, - [3892] = 1764, - [3893] = 3865, - [3894] = 3454, - [3895] = 3895, - [3896] = 502, - [3897] = 3895, - [3898] = 3898, - [3899] = 3895, - [3900] = 405, - [3901] = 3898, - [3902] = 1809, - [3903] = 3454, - [3904] = 388, - [3905] = 1866, - [3906] = 3898, - [3907] = 511, - [3908] = 3895, - [3909] = 3895, - [3910] = 3895, - [3911] = 3898, - [3912] = 3912, - [3913] = 3898, - [3914] = 359, - [3915] = 1974, - [3916] = 3898, - [3917] = 3895, - [3918] = 3458, - [3919] = 389, - [3920] = 3898, - [3921] = 1975, - [3922] = 1772, - [3923] = 3469, - [3924] = 3593, - [3925] = 2163, - [3926] = 3454, - [3927] = 3875, - [3928] = 3874, - [3929] = 3458, - [3930] = 3871, - [3931] = 3865, - [3932] = 1772, - [3933] = 3473, - [3934] = 3608, - [3935] = 3935, - [3936] = 3936, - [3937] = 3875, - [3938] = 3936, - [3939] = 3936, - [3940] = 3936, - [3941] = 3941, - [3942] = 3942, - [3943] = 3943, - [3944] = 3936, - [3945] = 3865, - [3946] = 3935, - [3947] = 3942, - [3948] = 3943, - [3949] = 3949, - [3950] = 3936, - [3951] = 3951, - [3952] = 3943, - [3953] = 3953, - [3954] = 3936, - [3955] = 3955, - [3956] = 3949, - [3957] = 3943, - [3958] = 3194, - [3959] = 3955, - [3960] = 3936, - [3961] = 3961, - [3962] = 3935, - [3963] = 3936, - [3964] = 3935, - [3965] = 3936, - [3966] = 3942, - [3967] = 3967, - [3968] = 3942, - [3969] = 3942, - [3970] = 3874, - [3971] = 3936, - [3972] = 3943, - [3973] = 3875, - [3974] = 3955, - [3975] = 3955, - [3976] = 3865, - [3977] = 3935, - [3978] = 3978, - [3979] = 3949, - [3980] = 3942, - [3981] = 3955, - [3982] = 3874, - [3983] = 3871, - [3984] = 3936, - [3985] = 3936, - [3986] = 3943, - [3987] = 3871, - [3988] = 3988, - [3989] = 3942, - [3990] = 3935, - [3991] = 3936, - [3992] = 3936, - [3993] = 3935, - [3994] = 3207, - [3995] = 3995, - [3996] = 2223, - [3997] = 3936, - [3998] = 3936, - [3999] = 3949, - [4000] = 3955, - [4001] = 3955, - [4002] = 3193, - [4003] = 3949, - [4004] = 4004, - [4005] = 4005, - [4006] = 3875, - [4007] = 4007, - [4008] = 4007, - [4009] = 1978, + [3761] = 3688, + [3762] = 2513, + [3763] = 2354, + [3764] = 3711, + [3765] = 3711, + [3766] = 3687, + [3767] = 3687, + [3768] = 2769, + [3769] = 3693, + [3770] = 2729, + [3771] = 2728, + [3772] = 2770, + [3773] = 2726, + [3774] = 2725, + [3775] = 2748, + [3776] = 2362, + [3777] = 2743, + [3778] = 3711, + [3779] = 3779, + [3780] = 2720, + [3781] = 3781, + [3782] = 2177, + [3783] = 2359, + [3784] = 2354, + [3785] = 3781, + [3786] = 2187, + [3787] = 321, + [3788] = 331, + [3789] = 2179, + [3790] = 2180, + [3791] = 3781, + [3792] = 2188, + [3793] = 3793, + [3794] = 3781, + [3795] = 3795, + [3796] = 2178, + [3797] = 2195, + [3798] = 2351, + [3799] = 3679, + [3800] = 3800, + [3801] = 3800, + [3802] = 2184, + [3803] = 3781, + [3804] = 2182, + [3805] = 2197, + [3806] = 2186, + [3807] = 2364, + [3808] = 3800, + [3809] = 3800, + [3810] = 3781, + [3811] = 3781, + [3812] = 2362, + [3813] = 3813, + [3814] = 3814, + [3815] = 3795, + [3816] = 3800, + [3817] = 3817, + [3818] = 2190, + [3819] = 2191, + [3820] = 3800, + [3821] = 2517, + [3822] = 2193, + [3823] = 2347, + [3824] = 3800, + [3825] = 3781, + [3826] = 3800, + [3827] = 3800, + [3828] = 2196, + [3829] = 2513, + [3830] = 2271, + [3831] = 3704, + [3832] = 3832, + [3833] = 3833, + [3834] = 2354, + [3835] = 2527, + [3836] = 3833, + [3837] = 2211, + [3838] = 3838, + [3839] = 3793, + [3840] = 3833, + [3841] = 3838, + [3842] = 2284, + [3843] = 3832, + [3844] = 3833, + [3845] = 3633, + [3846] = 3838, + [3847] = 3838, + [3848] = 3813, + [3849] = 2347, + [3850] = 2306, + [3851] = 2362, + [3852] = 3832, + [3853] = 3833, + [3854] = 3832, + [3855] = 3838, + [3856] = 3635, + [3857] = 3832, + [3858] = 2351, + [3859] = 2214, + [3860] = 3860, + [3861] = 3860, + [3862] = 2306, + [3863] = 3860, + [3864] = 2098, + [3865] = 2284, + [3866] = 3860, + [3867] = 2513, + [3868] = 3860, + [3869] = 3860, + [3870] = 3870, + [3871] = 3870, + [3872] = 3860, + [3873] = 2527, + [3874] = 3860, + [3875] = 2855, + [3876] = 3860, + [3877] = 2271, + [3878] = 2805, + [3879] = 2916, + [3880] = 3880, + [3881] = 2587, + [3882] = 3882, + [3883] = 3813, + [3884] = 2901, + [3885] = 2519, + [3886] = 2517, + [3887] = 3793, + [3888] = 3793, + [3889] = 3066, + [3890] = 3890, + [3891] = 3813, + [3892] = 2877, + [3893] = 3001, + [3894] = 3813, + [3895] = 2510, + [3896] = 3896, + [3897] = 3036, + [3898] = 2571, + [3899] = 2736, + [3900] = 3793, + [3901] = 2722, + [3902] = 2995, + [3903] = 2669, + [3904] = 2484, + [3905] = 2786, + [3906] = 3044, + [3907] = 3679, + [3908] = 3908, + [3909] = 3063, + [3910] = 2786, + [3911] = 2734, + [3912] = 3669, + [3913] = 3913, + [3914] = 3006, + [3915] = 3915, + [3916] = 2760, + [3917] = 3052, + [3918] = 2757, + [3919] = 2733, + [3920] = 3005, + [3921] = 3921, + [3922] = 2732, + [3923] = 3065, + [3924] = 2729, + [3925] = 2728, + [3926] = 3037, + [3927] = 2726, + [3928] = 2993, + [3929] = 2725, + [3930] = 3032, + [3931] = 3011, + [3932] = 3932, + [3933] = 3018, + [3934] = 2805, + [3935] = 3882, + [3936] = 3890, + [3937] = 3042, + [3938] = 2751, + [3939] = 2745, + [3940] = 3051, + [3941] = 3896, + [3942] = 2744, + [3943] = 2743, + [3944] = 2951, + [3945] = 2742, + [3946] = 2766, + [3947] = 2791, + [3948] = 3880, + [3949] = 3681, + [3950] = 3049, + [3951] = 2749, + [3952] = 2765, + [3953] = 3064, + [3954] = 2738, + [3955] = 2762, + [3956] = 2761, + [3957] = 3054, + [3958] = 2740, + [3959] = 2755, + [3960] = 2759, + [3961] = 2722, + [3962] = 2721, + [3963] = 2748, + [3964] = 3793, + [3965] = 3965, + [3966] = 2730, + [3967] = 3055, + [3968] = 3048, + [3969] = 3056, + [3970] = 2767, + [3971] = 2769, + [3972] = 3045, + [3973] = 3024, + [3974] = 2775, + [3975] = 2736, + [3976] = 3021, + [3977] = 2770, + [3978] = 3041, + [3979] = 2720, + [3980] = 3908, + [3981] = 2230, + [3982] = 3020, + [3983] = 3019, + [3984] = 2727, + [3985] = 3057, + [3986] = 3813, + [3987] = 3026, + [3988] = 2987, + [3989] = 3002, + [3990] = 2084, + [3991] = 2792, + [3992] = 3992, + [3993] = 2777, + [3994] = 2747, + [3995] = 2787, + [3996] = 2746, + [3997] = 2789, + [3998] = 3043, + [3999] = 2984, + [4000] = 3059, + [4001] = 2985, + [4002] = 2190, + [4003] = 2513, + [4004] = 3050, + [4005] = 3913, + [4006] = 2964, + [4007] = 3000, + [4008] = 2188, + [4009] = 2994, [4010] = 4010, - [4011] = 1924, - [4012] = 3874, - [4013] = 1920, - [4014] = 1920, - [4015] = 3871, - [4016] = 4007, - [4017] = 4004, - [4018] = 4018, - [4019] = 4007, - [4020] = 4018, - [4021] = 4021, - [4022] = 4005, - [4023] = 4023, - [4024] = 4024, - [4025] = 4018, - [4026] = 4018, - [4027] = 1920, - [4028] = 3865, - [4029] = 1924, - [4030] = 4005, - [4031] = 4004, - [4032] = 4032, - [4033] = 1878, - [4034] = 4007, - [4035] = 1974, - [4036] = 4036, - [4037] = 4037, - [4038] = 4018, - [4039] = 1975, - [4040] = 1866, + [4011] = 2484, + [4012] = 2736, + [4013] = 2177, + [4014] = 3908, + [4015] = 3025, + [4016] = 2196, + [4017] = 3016, + [4018] = 2193, + [4019] = 4019, + [4020] = 3013, + [4021] = 2191, + [4022] = 2975, + [4023] = 2180, + [4024] = 2974, + [4025] = 1414, + [4026] = 2971, + [4027] = 2970, + [4028] = 2966, + [4029] = 2786, + [4030] = 1413, + [4031] = 2195, + [4032] = 2178, + [4033] = 2098, + [4034] = 4010, + [4035] = 3060, + [4036] = 2184, + [4037] = 2197, + [4038] = 2527, + [4039] = 2963, + [4040] = 2962, [4041] = 4041, - [4042] = 4042, - [4043] = 4005, - [4044] = 4005, - [4045] = 4004, - [4046] = 4007, - [4047] = 4007, - [4048] = 1924, - [4049] = 4005, - [4050] = 3239, - [4051] = 3874, - [4052] = 3247, - [4053] = 3978, - [4054] = 3875, - [4055] = 3865, - [4056] = 4056, - [4057] = 3158, - [4058] = 3871, - [4059] = 2223, - [4060] = 1951, - [4061] = 1769, - [4062] = 4062, - [4063] = 1933, - [4064] = 1954, - [4065] = 1957, - [4066] = 1960, - [4067] = 4067, - [4068] = 1975, - [4069] = 1974, + [4042] = 2955, + [4043] = 2186, + [4044] = 2179, + [4045] = 4045, + [4046] = 2950, + [4047] = 2187, + [4048] = 2805, + [4049] = 2519, + [4050] = 3745, + [4051] = 3631, + [4052] = 3031, + [4053] = 2182, + [4054] = 321, + [4055] = 331, + [4056] = 4045, + [4057] = 2722, + [4058] = 4058, + [4059] = 4019, + [4060] = 4041, + [4061] = 4061, + [4062] = 3882, + [4063] = 4063, + [4064] = 4063, + [4065] = 4065, + [4066] = 3078, + [4067] = 4063, + [4068] = 4068, + [4069] = 3890, [4070] = 4070, - [4071] = 1771, - [4072] = 1770, - [4073] = 1781, + [4071] = 4063, + [4072] = 4063, + [4073] = 3896, [4074] = 4074, - [4075] = 4074, - [4076] = 1777, - [4077] = 1776, - [4078] = 4067, - [4079] = 4062, - [4080] = 1773, - [4081] = 1982, - [4082] = 1904, - [4083] = 1909, - [4084] = 2223, + [4075] = 2513, + [4076] = 4063, + [4077] = 3992, + [4078] = 4063, + [4079] = 4065, + [4080] = 2527, + [4081] = 4065, + [4082] = 4070, + [4083] = 4063, + [4084] = 4070, [4085] = 4085, - [4086] = 1902, - [4087] = 4087, - [4088] = 1966, - [4089] = 1974, - [4090] = 4090, - [4091] = 4091, - [4092] = 1975, - [4093] = 1975, - [4094] = 4090, - [4095] = 1974, - [4096] = 4090, - [4097] = 1966, - [4098] = 2223, - [4099] = 1975, - [4100] = 1974, - [4101] = 4090, - [4102] = 4090, - [4103] = 4103, - [4104] = 2223, - [4105] = 4090, - [4106] = 1966, - [4107] = 4107, - [4108] = 4108, - [4109] = 4109, - [4110] = 4110, - [4111] = 4111, - [4112] = 4112, - [4113] = 4113, + [4086] = 4070, + [4087] = 4065, + [4088] = 2084, + [4089] = 4089, + [4090] = 4063, + [4091] = 3813, + [4092] = 4092, + [4093] = 4093, + [4094] = 3896, + [4095] = 4070, + [4096] = 4063, + [4097] = 4097, + [4098] = 4070, + [4099] = 4099, + [4100] = 4100, + [4101] = 2855, + [4102] = 4070, + [4103] = 4061, + [4104] = 3813, + [4105] = 3880, + [4106] = 4061, + [4107] = 4063, + [4108] = 3793, + [4109] = 4063, + [4110] = 4061, + [4111] = 3882, + [4112] = 4063, + [4113] = 4061, [4114] = 4114, [4115] = 4115, - [4116] = 1995, - [4117] = 4111, - [4118] = 4112, - [4119] = 4115, - [4120] = 4112, - [4121] = 4121, - [4122] = 4113, - [4123] = 4114, - [4124] = 4121, - [4125] = 4111, - [4126] = 4113, - [4127] = 4121, - [4128] = 4113, - [4129] = 4114, - [4130] = 1996, - [4131] = 4121, - [4132] = 4114, - [4133] = 4121, - [4134] = 4113, - [4135] = 1975, - [4136] = 4121, - [4137] = 4121, - [4138] = 4113, - [4139] = 4114, - [4140] = 4114, - [4141] = 1974, - [4142] = 4111, - [4143] = 4115, - [4144] = 4112, - [4145] = 4111, - [4146] = 4121, - [4147] = 4113, - [4148] = 4114, - [4149] = 4113, - [4150] = 4121, - [4151] = 4114, - [4152] = 4109, - [4153] = 4113, - [4154] = 4121, - [4155] = 4114, - [4156] = 4114, - [4157] = 4121, - [4158] = 4113, - [4159] = 2002, - [4160] = 4114, - [4161] = 4113, - [4162] = 4111, - [4163] = 4112, - [4164] = 4115, - [4165] = 4114, - [4166] = 4166, - [4167] = 4113, - [4168] = 4112, - [4169] = 4121, - [4170] = 4113, - [4171] = 4114, - [4172] = 4115, - [4173] = 4121, - [4174] = 4114, - [4175] = 4115, - [4176] = 4112, - [4177] = 4107, - [4178] = 4113, - [4179] = 4121, - [4180] = 4166, - [4181] = 4121, - [4182] = 4113, - [4183] = 2010, - [4184] = 4110, - [4185] = 4114, - [4186] = 4113, - [4187] = 4114, - [4188] = 2001, - [4189] = 4108, - [4190] = 4166, - [4191] = 4121, - [4192] = 4111, - [4193] = 4115, - [4194] = 2048, - [4195] = 4195, - [4196] = 4196, - [4197] = 4197, - [4198] = 4197, - [4199] = 4195, - [4200] = 4197, - [4201] = 2136, - [4202] = 2129, - [4203] = 4197, - [4204] = 4195, - [4205] = 2138, - [4206] = 4196, - [4207] = 4195, - [4208] = 4195, - [4209] = 2121, - [4210] = 4197, - [4211] = 4197, - [4212] = 4195, - [4213] = 4213, - [4214] = 4196, - [4215] = 4195, - [4216] = 2126, - [4217] = 2085, - [4218] = 2084, - [4219] = 4195, - [4220] = 4197, - [4221] = 4197, - [4222] = 2142, - [4223] = 2141, - [4224] = 4196, - [4225] = 2119, - [4226] = 2127, - [4227] = 4195, - [4228] = 2131, - [4229] = 4197, - [4230] = 2116, - [4231] = 2118, - [4232] = 2117, - [4233] = 2115, - [4234] = 4195, - [4235] = 4197, - [4236] = 4195, - [4237] = 2101, - [4238] = 4197, - [4239] = 2100, - [4240] = 2026, - [4241] = 2112, - [4242] = 2128, - [4243] = 2067, - [4244] = 2041, - [4245] = 4195, - [4246] = 4197, - [4247] = 4196, - [4248] = 2069, - [4249] = 2133, - [4250] = 2019, - [4251] = 2052, - [4252] = 4197, - [4253] = 2047, - [4254] = 4196, - [4255] = 2046, - [4256] = 2107, - [4257] = 4197, - [4258] = 4195, - [4259] = 4196, - [4260] = 2111, - [4261] = 2045, - [4262] = 2068, - [4263] = 2050, - [4264] = 2017, - [4265] = 2015, - [4266] = 4196, - [4267] = 4195, - [4268] = 4197, - [4269] = 4195, - [4270] = 4196, - [4271] = 4271, - [4272] = 4272, - [4273] = 4108, - [4274] = 4110, - [4275] = 4272, - [4276] = 4109, - [4277] = 4107, - [4278] = 4108, - [4279] = 4110, - [4280] = 4280, - [4281] = 4281, - [4282] = 4213, - [4283] = 4110, + [4116] = 4065, + [4117] = 3882, + [4118] = 4063, + [4119] = 3896, + [4120] = 2098, + [4121] = 3793, + [4122] = 4063, + [4123] = 4065, + [4124] = 4061, + [4125] = 4063, + [4126] = 4126, + [4127] = 4127, + [4128] = 3896, + [4129] = 4129, + [4130] = 3882, + [4131] = 2901, + [4132] = 3018, + [4133] = 3024, + [4134] = 3025, + [4135] = 3031, + [4136] = 4136, + [4137] = 3032, + [4138] = 4136, + [4139] = 4129, + [4140] = 2084, + [4141] = 4141, + [4142] = 4142, + [4143] = 4127, + [4144] = 4142, + [4145] = 4145, + [4146] = 4146, + [4147] = 3000, + [4148] = 2994, + [4149] = 4149, + [4150] = 4150, + [4151] = 4151, + [4152] = 4136, + [4153] = 2950, + [4154] = 2951, + [4155] = 4145, + [4156] = 2955, + [4157] = 4149, + [4158] = 2962, + [4159] = 2963, + [4160] = 4126, + [4161] = 4161, + [4162] = 4162, + [4163] = 4162, + [4164] = 4161, + [4165] = 4150, + [4166] = 4150, + [4167] = 2964, + [4168] = 3890, + [4169] = 4126, + [4170] = 4149, + [4171] = 2966, + [4172] = 4172, + [4173] = 2970, + [4174] = 2971, + [4175] = 2974, + [4176] = 2975, + [4177] = 4177, + [4178] = 4145, + [4179] = 4179, + [4180] = 2984, + [4181] = 4141, + [4182] = 4126, + [4183] = 4161, + [4184] = 3060, + [4185] = 4162, + [4186] = 3992, + [4187] = 3013, + [4188] = 3050, + [4189] = 4177, + [4190] = 4136, + [4191] = 2916, + [4192] = 4192, + [4193] = 3992, + [4194] = 4194, + [4195] = 4177, + [4196] = 4162, + [4197] = 4161, + [4198] = 3016, + [4199] = 4092, + [4200] = 4142, + [4201] = 4150, + [4202] = 4099, + [4203] = 4149, + [4204] = 4127, + [4205] = 4145, + [4206] = 4151, + [4207] = 4142, + [4208] = 4089, + [4209] = 4129, + [4210] = 4210, + [4211] = 4141, + [4212] = 4126, + [4213] = 2924, + [4214] = 3635, + [4215] = 4085, + [4216] = 4151, + [4217] = 2926, + [4218] = 4129, + [4219] = 4141, + [4220] = 4151, + [4221] = 4129, + [4222] = 4141, + [4223] = 4136, + [4224] = 4224, + [4225] = 4142, + [4226] = 3890, + [4227] = 4126, + [4228] = 4177, + [4229] = 3880, + [4230] = 3633, + [4231] = 2935, + [4232] = 3880, + [4233] = 4177, + [4234] = 4126, + [4235] = 4192, + [4236] = 4145, + [4237] = 4149, + [4238] = 4150, + [4239] = 3050, + [4240] = 4151, + [4241] = 4129, + [4242] = 4141, + [4243] = 3000, + [4244] = 4136, + [4245] = 2994, + [4246] = 4127, + [4247] = 4136, + [4248] = 4127, + [4249] = 2950, + [4250] = 3031, + [4251] = 3025, + [4252] = 2955, + [4253] = 2962, + [4254] = 2963, + [4255] = 2964, + [4256] = 2966, + [4257] = 2970, + [4258] = 2971, + [4259] = 2974, + [4260] = 2975, + [4261] = 4194, + [4262] = 4129, + [4263] = 4263, + [4264] = 3060, + [4265] = 3013, + [4266] = 4162, + [4267] = 4161, + [4268] = 3016, + [4269] = 4150, + [4270] = 4162, + [4271] = 4149, + [4272] = 4177, + [4273] = 4145, + [4274] = 4142, + [4275] = 4127, + [4276] = 4276, + [4277] = 4161, + [4278] = 4278, + [4279] = 4151, + [4280] = 4151, + [4281] = 4161, + [4282] = 4127, + [4283] = 4162, [4284] = 4284, - [4285] = 4284, - [4286] = 4107, - [4287] = 4107, - [4288] = 3608, - [4289] = 4108, - [4290] = 4290, + [4285] = 4150, + [4286] = 4149, + [4287] = 2084, + [4288] = 4145, + [4289] = 4142, + [4290] = 2877, [4291] = 4291, [4292] = 4292, - [4293] = 4293, - [4294] = 4293, - [4295] = 4295, - [4296] = 4296, + [4293] = 4127, + [4294] = 4127, + [4295] = 4141, + [4296] = 3032, [4297] = 4297, - [4298] = 4298, - [4299] = 4299, + [4298] = 3024, + [4299] = 3018, [4300] = 4300, [4301] = 4301, [4302] = 4302, - [4303] = 4293, + [4303] = 4303, [4304] = 4304, - [4305] = 4296, - [4306] = 4296, - [4307] = 4307, - [4308] = 4308, - [4309] = 4309, + [4305] = 4305, + [4306] = 4306, + [4307] = 4301, + [4308] = 4306, + [4309] = 4301, [4310] = 4310, - [4311] = 4311, + [4311] = 3056, [4312] = 4312, - [4313] = 4313, - [4314] = 4314, - [4315] = 4109, - [4316] = 4316, + [4313] = 3055, + [4314] = 3054, + [4315] = 4315, + [4316] = 4303, [4317] = 4317, - [4318] = 4318, - [4319] = 4319, - [4320] = 4320, - [4321] = 2245, - [4322] = 4308, - [4323] = 4323, - [4324] = 4308, + [4318] = 4306, + [4319] = 4303, + [4320] = 4315, + [4321] = 4321, + [4322] = 4322, + [4323] = 4317, + [4324] = 4324, [4325] = 4325, - [4326] = 4293, - [4327] = 4296, - [4328] = 4308, - [4329] = 4329, - [4330] = 4298, - [4331] = 4308, - [4332] = 4329, - [4333] = 4333, - [4334] = 4296, + [4326] = 3052, + [4327] = 4297, + [4328] = 4324, + [4329] = 2935, + [4330] = 4300, + [4331] = 4300, + [4332] = 4322, + [4333] = 2513, + [4334] = 4302, [4335] = 4335, - [4336] = 4293, + [4336] = 4305, [4337] = 4337, - [4338] = 4333, - [4339] = 4308, - [4340] = 4329, + [4338] = 4338, + [4339] = 4324, + [4340] = 4317, [4341] = 4341, - [4342] = 4342, - [4343] = 4296, - [4344] = 4344, - [4345] = 4293, - [4346] = 4346, - [4347] = 4347, - [4348] = 4344, - [4349] = 4346, - [4350] = 4296, - [4351] = 4351, - [4352] = 4298, - [4353] = 4308, - [4354] = 4293, - [4355] = 4308, - [4356] = 3593, - [4357] = 4357, - [4358] = 4296, - [4359] = 4310, - [4360] = 4300, - [4361] = 4299, - [4362] = 4297, - [4363] = 4295, - [4364] = 4290, - [4365] = 4301, - [4366] = 4304, - [4367] = 4367, - [4368] = 4296, - [4369] = 4302, - [4370] = 4293, - [4371] = 4371, - [4372] = 4293, - [4373] = 4373, - [4374] = 4298, - [4375] = 4296, - [4376] = 4293, - [4377] = 4296, - [4378] = 4293, - [4379] = 4308, - [4380] = 4380, - [4381] = 4381, - [4382] = 4382, - [4383] = 4293, - [4384] = 4384, - [4385] = 4296, - [4386] = 4296, - [4387] = 4387, - [4388] = 4344, - [4389] = 4109, - [4390] = 4308, - [4391] = 4391, - [4392] = 4296, - [4393] = 4293, - [4394] = 4394, - [4395] = 4308, - [4396] = 4308, - [4397] = 4110, - [4398] = 4308, - [4399] = 4308, - [4400] = 4308, - [4401] = 4293, - [4402] = 4108, - [4403] = 4296, - [4404] = 4293, - [4405] = 4296, - [4406] = 4293, - [4407] = 4308, - [4408] = 4367, - [4409] = 4107, - [4410] = 4410, - [4411] = 4357, - [4412] = 4325, - [4413] = 4323, - [4414] = 4414, - [4415] = 4347, - [4416] = 4109, - [4417] = 4414, - [4418] = 4291, - [4419] = 4317, - [4420] = 4351, - [4421] = 4410, - [4422] = 4387, - [4423] = 4423, - [4424] = 4410, - [4425] = 4292, - [4426] = 4426, - [4427] = 4427, - [4428] = 4414, - [4429] = 4380, - [4430] = 4410, - [4431] = 4341, - [4432] = 4432, - [4433] = 4318, - [4434] = 4434, - [4435] = 4335, - [4436] = 4314, - [4437] = 4373, - [4438] = 4438, - [4439] = 4434, - [4440] = 2245, - [4441] = 4307, - [4442] = 4309, - [4443] = 4312, - [4444] = 4384, - [4445] = 4381, - [4446] = 4446, - [4447] = 4311, - [4448] = 4316, - [4449] = 3535, - [4450] = 4319, - [4451] = 4337, - [4452] = 4320, - [4453] = 4382, - [4454] = 4313, + [4342] = 4317, + [4343] = 4341, + [4344] = 4304, + [4345] = 3011, + [4346] = 4324, + [4347] = 4317, + [4348] = 4337, + [4349] = 2926, + [4350] = 2122, + [4351] = 4310, + [4352] = 4352, + [4353] = 4325, + [4354] = 4341, + [4355] = 4337, + [4356] = 3059, + [4357] = 4300, + [4358] = 3043, + [4359] = 4302, + [4360] = 3063, + [4361] = 4337, + [4362] = 4315, + [4363] = 2527, + [4364] = 3064, + [4365] = 3051, + [4366] = 4324, + [4367] = 4315, + [4368] = 4315, + [4369] = 3021, + [4370] = 4337, + [4371] = 4302, + [4372] = 4372, + [4373] = 4300, + [4374] = 4305, + [4375] = 3065, + [4376] = 3066, + [4377] = 4377, + [4378] = 423, + [4379] = 4379, + [4380] = 4305, + [4381] = 3057, + [4382] = 3045, + [4383] = 4325, + [4384] = 3026, + [4385] = 4385, + [4386] = 3031, + [4387] = 3025, + [4388] = 4388, + [4389] = 4304, + [4390] = 2924, + [4391] = 4297, + [4392] = 3044, + [4393] = 2766, + [4394] = 4315, + [4395] = 3050, + [4396] = 3042, + [4397] = 4324, + [4398] = 3041, + [4399] = 2098, + [4400] = 3048, + [4401] = 3049, + [4402] = 4300, + [4403] = 4403, + [4404] = 4325, + [4405] = 3016, + [4406] = 3880, + [4407] = 3013, + [4408] = 3060, + [4409] = 4325, + [4410] = 4297, + [4411] = 2975, + [4412] = 2974, + [4413] = 2971, + [4414] = 4325, + [4415] = 2970, + [4416] = 4297, + [4417] = 2966, + [4418] = 4305, + [4419] = 4304, + [4420] = 2964, + [4421] = 4324, + [4422] = 4300, + [4423] = 4335, + [4424] = 2963, + [4425] = 4305, + [4426] = 2962, + [4427] = 4377, + [4428] = 3037, + [4429] = 3036, + [4430] = 2955, + [4431] = 4431, + [4432] = 4324, + [4433] = 4301, + [4434] = 4306, + [4435] = 2993, + [4436] = 2950, + [4437] = 2994, + [4438] = 4302, + [4439] = 4310, + [4440] = 4297, + [4441] = 4317, + [4442] = 4303, + [4443] = 4306, + [4444] = 4444, + [4445] = 4303, + [4446] = 4315, + [4447] = 4447, + [4448] = 3000, + [4449] = 4305, + [4450] = 511, + [4451] = 4301, + [4452] = 4297, + [4453] = 389, + [4454] = 4454, [4455] = 4455, - [4456] = 4108, - [4457] = 4109, - [4458] = 4455, - [4459] = 4459, - [4460] = 4455, - [4461] = 4107, - [4462] = 4110, - [4463] = 4463, - [4464] = 4464, - [4465] = 4464, - [4466] = 3535, - [4467] = 4351, - [4468] = 4291, - [4469] = 4351, - [4470] = 4335, - [4471] = 4317, - [4472] = 4472, - [4473] = 4347, - [4474] = 4474, - [4475] = 4475, - [4476] = 4475, - [4477] = 4464, - [4478] = 4478, - [4479] = 4464, - [4480] = 4335, - [4481] = 4313, - [4482] = 4335, - [4483] = 4307, - [4484] = 4464, - [4485] = 4464, - [4486] = 4486, - [4487] = 4475, - [4488] = 4472, - [4489] = 4351, - [4490] = 4347, - [4491] = 4464, - [4492] = 4325, - [4493] = 4323, - [4494] = 4307, - [4495] = 4317, - [4496] = 4313, - [4497] = 4475, - [4498] = 4313, - [4499] = 4307, - [4500] = 4464, - [4501] = 4464, - [4502] = 4472, - [4503] = 4475, - [4504] = 4317, - [4505] = 4475, - [4506] = 2533, - [4507] = 4325, - [4508] = 4323, - [4509] = 4464, - [4510] = 4478, - [4511] = 4475, - [4512] = 4323, - [4513] = 4475, - [4514] = 4472, - [4515] = 4475, - [4516] = 4291, - [4517] = 4325, - [4518] = 4475, - [4519] = 4472, - [4520] = 2455, - [4521] = 4347, - [4522] = 4472, - [4523] = 4472, - [4524] = 4291, - [4525] = 1872, - [4526] = 4526, - [4527] = 1879, - [4528] = 4528, - [4529] = 4529, - [4530] = 1884, - [4531] = 1886, - [4532] = 2533, - [4533] = 4533, - [4534] = 4534, - [4535] = 1860, - [4536] = 1924, - [4537] = 4534, - [4538] = 4538, - [4539] = 4539, - [4540] = 4534, - [4541] = 4541, - [4542] = 4542, - [4543] = 1859, - [4544] = 4534, - [4545] = 4545, - [4546] = 4546, - [4547] = 132, + [4456] = 4337, + [4457] = 512, + [4458] = 4304, + [4459] = 3020, + [4460] = 3019, + [4461] = 4321, + [4462] = 4300, + [4463] = 2734, + [4464] = 2230, + [4465] = 4335, + [4466] = 582, + [4467] = 4379, + [4468] = 2995, + [4469] = 4325, + [4470] = 3006, + [4471] = 4471, + [4472] = 4304, + [4473] = 427, + [4474] = 4305, + [4475] = 2951, + [4476] = 4317, + [4477] = 4321, + [4478] = 426, + [4479] = 425, + [4480] = 2984, + [4481] = 3005, + [4482] = 4303, + [4483] = 4483, + [4484] = 4335, + [4485] = 2985, + [4486] = 4483, + [4487] = 4487, + [4488] = 3002, + [4489] = 4315, + [4490] = 533, + [4491] = 2987, + [4492] = 4492, + [4493] = 399, + [4494] = 4310, + [4495] = 4306, + [4496] = 4317, + [4497] = 4301, + [4498] = 4305, + [4499] = 4499, + [4500] = 4321, + [4501] = 4302, + [4502] = 4317, + [4503] = 3890, + [4504] = 3001, + [4505] = 4300, + [4506] = 4506, + [4507] = 4324, + [4508] = 3915, + [4509] = 3882, + [4510] = 3896, + [4511] = 3896, + [4512] = 4512, + [4513] = 3882, + [4514] = 4514, + [4515] = 4089, + [4516] = 3890, + [4517] = 3921, + [4518] = 4092, + [4519] = 4099, + [4520] = 2484, + [4521] = 4085, + [4522] = 2098, + [4523] = 3880, + [4524] = 4524, + [4525] = 4525, + [4526] = 3669, + [4527] = 2301, + [4528] = 4089, + [4529] = 3679, + [4530] = 3890, + [4531] = 4531, + [4532] = 4092, + [4533] = 4099, + [4534] = 4092, + [4535] = 4089, + [4536] = 3681, + [4537] = 4537, + [4538] = 4099, + [4539] = 2510, + [4540] = 3880, + [4541] = 4085, + [4542] = 4085, + [4543] = 4543, + [4544] = 4544, + [4545] = 4544, + [4546] = 2230, + [4547] = 2359, [4548] = 4548, - [4549] = 4549, - [4550] = 4550, - [4551] = 4534, - [4552] = 4534, - [4553] = 1882, - [4554] = 4351, - [4555] = 4291, - [4556] = 2455, - [4557] = 1873, - [4558] = 1874, - [4559] = 1863, + [4549] = 4544, + [4550] = 4544, + [4551] = 4551, + [4552] = 4552, + [4553] = 4089, + [4554] = 4554, + [4555] = 2364, + [4556] = 4544, + [4557] = 4552, + [4558] = 4558, + [4559] = 4559, [4560] = 4560, - [4561] = 1862, - [4562] = 4534, - [4563] = 4347, - [4564] = 1883, - [4565] = 4534, - [4566] = 1870, - [4567] = 4567, - [4568] = 4335, - [4569] = 1868, - [4570] = 4534, - [4571] = 4571, - [4572] = 4572, - [4573] = 129, - [4574] = 4574, - [4575] = 4307, - [4576] = 4313, - [4577] = 4534, - [4578] = 4578, - [4579] = 1920, - [4580] = 4534, - [4581] = 4317, - [4582] = 4323, - [4583] = 4583, - [4584] = 4534, - [4585] = 4534, - [4586] = 4325, - [4587] = 1869, - [4588] = 4588, + [4561] = 2222, + [4562] = 4552, + [4563] = 4085, + [4564] = 4092, + [4565] = 4544, + [4566] = 4544, + [4567] = 2359, + [4568] = 4552, + [4569] = 4569, + [4570] = 4552, + [4571] = 4552, + [4572] = 2359, + [4573] = 2527, + [4574] = 2364, + [4575] = 4552, + [4576] = 2513, + [4577] = 2364, + [4578] = 4099, + [4579] = 3745, + [4580] = 4580, + [4581] = 4525, + [4582] = 3631, + [4583] = 4085, + [4584] = 4089, + [4585] = 2301, + [4586] = 4099, + [4587] = 4092, + [4588] = 3704, [4589] = 4589, [4590] = 4590, - [4591] = 4550, + [4591] = 4589, [4592] = 4592, [4593] = 4593, - [4594] = 4528, - [4595] = 4593, - [4596] = 4592, - [4597] = 4589, - [4598] = 4590, - [4599] = 4560, - [4600] = 4593, - [4601] = 4583, - [4602] = 4589, - [4603] = 4592, - [4604] = 4533, - [4605] = 4590, - [4606] = 4606, + [4594] = 2088, + [4595] = 2527, + [4596] = 2089, + [4597] = 4597, + [4598] = 2091, + [4599] = 2097, + [4600] = 2105, + [4601] = 2086, + [4602] = 2093, + [4603] = 2513, + [4604] = 4604, + [4605] = 4592, + [4606] = 4592, [4607] = 4607, - [4608] = 4545, - [4609] = 4541, - [4610] = 4610, - [4611] = 4611, - [4612] = 4548, - [4613] = 4613, - [4614] = 4592, - [4615] = 4593, - [4616] = 4589, - [4617] = 4593, - [4618] = 4589, - [4619] = 4589, - [4620] = 4620, - [4621] = 4593, - [4622] = 4578, - [4623] = 4589, - [4624] = 4593, - [4625] = 4085, - [4626] = 4549, - [4627] = 4593, - [4628] = 4593, - [4629] = 4589, - [4630] = 4593, - [4631] = 4546, - [4632] = 4589, - [4633] = 4593, - [4634] = 4529, - [4635] = 4593, - [4636] = 4589, - [4637] = 4592, - [4638] = 4593, - [4639] = 4590, - [4640] = 4592, - [4641] = 4538, - [4642] = 4593, - [4643] = 4593, - [4644] = 4593, - [4645] = 4571, - [4646] = 4646, - [4647] = 4647, - [4648] = 4648, - [4649] = 4649, - [4650] = 4650, - [4651] = 4651, - [4652] = 4607, - [4653] = 4653, - [4654] = 4654, - [4655] = 4655, - [4656] = 4656, - [4657] = 4657, - [4658] = 4647, - [4659] = 4659, - [4660] = 4335, - [4661] = 4651, - [4662] = 4347, - [4663] = 4651, - [4664] = 4651, - [4665] = 4665, - [4666] = 4606, - [4667] = 4667, - [4668] = 4647, - [4669] = 4669, - [4670] = 4325, - [4671] = 4651, - [4672] = 4323, - [4673] = 4613, - [4674] = 4674, - [4675] = 4647, - [4676] = 4647, - [4677] = 4667, + [4608] = 4607, + [4609] = 4592, + [4610] = 4592, + [4611] = 4592, + [4612] = 4592, + [4613] = 4607, + [4614] = 4614, + [4615] = 4614, + [4616] = 4590, + [4617] = 4614, + [4618] = 4607, + [4619] = 4592, + [4620] = 4592, + [4621] = 4592, + [4622] = 4607, + [4623] = 4623, + [4624] = 4623, + [4625] = 4614, + [4626] = 4592, + [4627] = 4627, + [4628] = 4590, + [4629] = 4590, + [4630] = 4592, + [4631] = 4631, + [4632] = 4089, + [4633] = 4623, + [4634] = 4623, + [4635] = 4590, + [4636] = 4592, + [4637] = 4637, + [4638] = 2414, + [4639] = 4592, + [4640] = 4589, + [4641] = 4593, + [4642] = 4623, + [4643] = 4623, + [4644] = 2426, + [4645] = 4592, + [4646] = 4085, + [4647] = 2394, + [4648] = 2400, + [4649] = 4589, + [4650] = 2425, + [4651] = 4623, + [4652] = 4592, + [4653] = 4589, + [4654] = 4614, + [4655] = 4099, + [4656] = 4607, + [4657] = 4589, + [4658] = 4607, + [4659] = 4631, + [4660] = 4092, + [4661] = 4607, + [4662] = 4614, + [4663] = 4590, + [4664] = 4607, + [4665] = 4592, + [4666] = 4597, + [4667] = 4589, + [4668] = 4668, + [4669] = 4614, + [4670] = 4670, + [4671] = 4671, + [4672] = 4670, + [4673] = 4673, + [4674] = 2306, + [4675] = 4671, + [4676] = 4673, + [4677] = 4673, [4678] = 4678, - [4679] = 4656, - [4680] = 4651, - [4681] = 4651, - [4682] = 4611, - [4683] = 4683, - [4684] = 4684, - [4685] = 4685, - [4686] = 4686, - [4687] = 4651, - [4688] = 4667, - [4689] = 4651, - [4690] = 4690, - [4691] = 4691, - [4692] = 4692, - [4693] = 4657, - [4694] = 4647, - [4695] = 4657, - [4696] = 4610, - [4697] = 4651, - [4698] = 4651, - [4699] = 4657, - [4700] = 4657, - [4701] = 4647, - [4702] = 4656, - [4703] = 4667, - [4704] = 4657, - [4705] = 4307, - [4706] = 4651, - [4707] = 4657, - [4708] = 4708, - [4709] = 4657, - [4710] = 4710, - [4711] = 4667, - [4712] = 4656, - [4713] = 4317, - [4714] = 4647, - [4715] = 4651, - [4716] = 4716, + [4679] = 4678, + [4680] = 4678, + [4681] = 4681, + [4682] = 4670, + [4683] = 4670, + [4684] = 4673, + [4685] = 4678, + [4686] = 2500, + [4687] = 2517, + [4688] = 4673, + [4689] = 2301, + [4690] = 4678, + [4691] = 4678, + [4692] = 4678, + [4693] = 2284, + [4694] = 4673, + [4695] = 4695, + [4696] = 4670, + [4697] = 4671, + [4698] = 4678, + [4699] = 4673, + [4700] = 4700, + [4701] = 4678, + [4702] = 4671, + [4703] = 2271, + [4704] = 4671, + [4705] = 2513, + [4706] = 2301, + [4707] = 2527, + [4708] = 2527, + [4709] = 2513, + [4710] = 2527, + [4711] = 2513, + [4712] = 4712, + [4713] = 2517, + [4714] = 4714, + [4715] = 2301, + [4716] = 2517, [4717] = 4717, - [4718] = 4718, - [4719] = 4667, - [4720] = 4667, - [4721] = 4651, - [4722] = 4620, - [4723] = 4723, - [4724] = 4724, - [4725] = 4651, - [4726] = 2533, - [4727] = 4656, - [4728] = 4728, - [4729] = 2455, - [4730] = 4730, - [4731] = 4651, - [4732] = 4291, - [4733] = 4651, - [4734] = 4313, - [4735] = 4735, - [4736] = 4588, - [4737] = 4647, - [4738] = 4351, - [4739] = 4657, - [4740] = 1859, - [4741] = 4741, - [4742] = 4742, - [4743] = 4560, - [4744] = 4744, - [4745] = 4683, - [4746] = 4684, - [4747] = 2455, - [4748] = 4744, - [4749] = 4749, - [4750] = 4744, - [4751] = 4728, - [4752] = 4752, - [4753] = 2455, - [4754] = 1869, - [4755] = 4548, - [4756] = 4749, - [4757] = 4752, - [4758] = 4752, - [4759] = 4759, - [4760] = 1882, - [4761] = 4749, - [4762] = 4744, - [4763] = 4653, - [4764] = 4686, - [4765] = 4690, - [4766] = 1886, - [4767] = 4691, - [4768] = 1862, - [4769] = 132, - [4770] = 129, - [4771] = 4771, - [4772] = 4529, - [4773] = 4749, - [4774] = 1879, - [4775] = 4649, - [4776] = 4692, - [4777] = 4730, - [4778] = 1874, - [4779] = 4550, - [4780] = 4780, - [4781] = 1872, - [4782] = 4752, - [4783] = 4749, - [4784] = 4744, - [4785] = 4646, - [4786] = 1870, - [4787] = 2533, - [4788] = 4749, - [4789] = 4716, - [4790] = 1860, - [4791] = 4549, - [4792] = 4752, - [4793] = 4744, - [4794] = 4718, - [4795] = 4795, - [4796] = 4674, - [4797] = 1909, - [4798] = 4749, - [4799] = 4752, - [4800] = 1868, - [4801] = 4801, - [4802] = 1883, - [4803] = 1863, - [4804] = 4648, - [4805] = 1873, - [4806] = 4669, - [4807] = 4659, - [4808] = 4735, - [4809] = 4655, - [4810] = 4571, - [4811] = 1884, - [4812] = 1904, - [4813] = 4723, - [4814] = 4708, - [4815] = 1902, - [4816] = 4744, - [4817] = 2533, - [4818] = 4752, - [4819] = 4819, - [4820] = 4529, - [4821] = 4821, - [4822] = 4819, - [4823] = 4823, - [4824] = 4823, - [4825] = 4550, - [4826] = 4548, - [4827] = 4685, - [4828] = 2533, - [4829] = 4819, - [4830] = 4819, - [4831] = 4819, - [4832] = 4819, - [4833] = 4833, - [4834] = 4819, - [4835] = 4823, - [4836] = 4819, - [4837] = 4529, - [4838] = 4560, - [4839] = 4819, - [4840] = 2270, - [4841] = 4606, - [4842] = 4607, - [4843] = 4819, - [4844] = 2455, - [4845] = 4560, - [4846] = 4549, - [4847] = 4821, - [4848] = 4654, - [4849] = 4849, - [4850] = 4850, - [4851] = 4610, - [4852] = 4571, - [4853] = 4611, - [4854] = 4613, - [4855] = 4821, - [4856] = 4550, - [4857] = 4588, - [4858] = 4650, - [4859] = 4819, - [4860] = 1772, - [4861] = 4819, - [4862] = 4549, - [4863] = 4819, - [4864] = 4548, - [4865] = 4865, - [4866] = 4819, - [4867] = 4665, - [4868] = 4620, - [4869] = 4821, - [4870] = 4823, - [4871] = 4571, - [4872] = 4819, - [4873] = 4819, - [4874] = 4874, - [4875] = 4875, - [4876] = 4819, - [4877] = 4085, - [4878] = 4678, - [4879] = 4611, - [4880] = 4650, - [4881] = 4610, - [4882] = 4882, - [4883] = 4883, - [4884] = 4884, - [4885] = 4678, - [4886] = 4884, - [4887] = 4882, - [4888] = 4882, - [4889] = 2515, - [4890] = 4884, - [4891] = 4891, - [4892] = 4685, - [4893] = 4884, - [4894] = 4894, - [4895] = 2587, - [4896] = 4549, - [4897] = 2547, - [4898] = 4607, - [4899] = 4620, - [4900] = 2455, - [4901] = 4901, - [4902] = 2187, - [4903] = 4903, - [4904] = 4904, - [4905] = 4560, - [4906] = 4906, - [4907] = 4907, - [4908] = 2188, - [4909] = 4606, - [4910] = 4884, - [4911] = 2533, - [4912] = 4548, - [4913] = 2193, - [4914] = 2200, - [4915] = 4620, - [4916] = 4529, - [4917] = 4613, - [4918] = 4918, - [4919] = 4607, - [4920] = 4882, - [4921] = 2186, - [4922] = 4613, - [4923] = 4923, - [4924] = 4882, - [4925] = 4588, - [4926] = 4611, - [4927] = 4571, - [4928] = 4928, - [4929] = 4588, - [4930] = 4882, - [4931] = 2176, - [4932] = 4610, - [4933] = 4606, + [4718] = 2513, + [4719] = 2662, + [4720] = 4720, + [4721] = 2571, + [4722] = 2527, + [4723] = 2580, + [4724] = 2587, + [4725] = 2669, + [4726] = 2740, + [4727] = 4727, + [4728] = 2728, + [4729] = 2727, + [4730] = 2720, + [4731] = 4727, + [4732] = 2726, + [4733] = 2725, + [4734] = 2746, + [4735] = 4727, + [4736] = 2751, + [4737] = 2721, + [4738] = 2760, + [4739] = 2755, + [4740] = 2738, + [4741] = 2770, + [4742] = 2792, + [4743] = 2791, + [4744] = 2789, + [4745] = 2787, + [4746] = 2775, + [4747] = 2757, + [4748] = 2745, + [4749] = 2744, + [4750] = 2767, + [4751] = 2769, + [4752] = 2729, + [4753] = 2777, + [4754] = 2743, + [4755] = 2742, + [4756] = 4727, + [4757] = 2747, + [4758] = 2765, + [4759] = 4727, + [4760] = 2732, + [4761] = 2730, + [4762] = 2748, + [4763] = 2759, + [4764] = 2749, + [4765] = 2733, + [4766] = 2762, + [4767] = 4727, + [4768] = 2761, + [4769] = 4769, + [4770] = 4769, + [4771] = 3921, + [4772] = 4769, + [4773] = 2306, + [4774] = 4774, + [4775] = 4775, + [4776] = 4776, + [4777] = 4774, + [4778] = 4778, + [4779] = 4778, + [4780] = 4774, + [4781] = 4769, + [4782] = 4775, + [4783] = 4775, + [4784] = 4774, + [4785] = 2284, + [4786] = 4769, + [4787] = 4769, + [4788] = 4778, + [4789] = 4774, + [4790] = 4778, + [4791] = 4778, + [4792] = 2271, + [4793] = 4775, + [4794] = 4774, + [4795] = 4775, + [4796] = 4769, + [4797] = 4797, + [4798] = 4778, + [4799] = 4774, + [4800] = 4775, + [4801] = 4769, + [4802] = 4774, + [4803] = 4774, + [4804] = 4778, + [4805] = 4775, + [4806] = 4775, + [4807] = 4807, + [4808] = 4808, + [4809] = 4809, + [4810] = 4775, + [4811] = 4775, + [4812] = 4774, + [4813] = 4813, + [4814] = 4774, + [4815] = 4815, + [4816] = 4778, + [4817] = 4769, + [4818] = 4769, + [4819] = 4769, + [4820] = 4778, + [4821] = 4778, + [4822] = 4775, + [4823] = 4778, + [4824] = 4824, + [4825] = 4825, + [4826] = 4826, + [4827] = 4827, + [4828] = 4825, + [4829] = 4827, + [4830] = 4830, + [4831] = 4831, + [4832] = 4827, + [4833] = 4825, + [4834] = 4809, + [4835] = 4825, + [4836] = 4808, + [4837] = 4830, + [4838] = 4824, + [4839] = 4827, + [4840] = 4840, + [4841] = 4830, + [4842] = 4825, + [4843] = 4824, + [4844] = 4826, + [4845] = 4825, + [4846] = 4827, + [4847] = 4824, + [4848] = 4826, + [4849] = 4824, + [4850] = 4826, + [4851] = 4827, + [4852] = 4826, + [4853] = 4831, + [4854] = 4825, + [4855] = 4825, + [4856] = 4826, + [4857] = 4840, + [4858] = 4825, + [4859] = 4824, + [4860] = 4840, + [4861] = 4830, + [4862] = 4840, + [4863] = 4830, + [4864] = 4827, + [4865] = 4825, + [4866] = 4827, + [4867] = 4827, + [4868] = 4826, + [4869] = 4826, + [4870] = 4826, + [4871] = 4840, + [4872] = 4827, + [4873] = 4826, + [4874] = 4825, + [4875] = 4827, + [4876] = 4825, + [4877] = 4826, + [4878] = 4825, + [4879] = 4831, + [4880] = 4840, + [4881] = 4827, + [4882] = 4824, + [4883] = 4831, + [4884] = 4827, + [4885] = 4826, + [4886] = 4830, + [4887] = 4825, + [4888] = 4826, + [4889] = 4840, + [4890] = 3915, + [4891] = 4840, + [4892] = 4830, + [4893] = 4824, + [4894] = 4826, + [4895] = 4825, + [4896] = 4807, + [4897] = 4840, + [4898] = 4830, + [4899] = 4824, + [4900] = 4797, + [4901] = 4827, + [4902] = 4827, + [4903] = 4826, + [4904] = 4825, + [4905] = 4830, + [4906] = 4827, + [4907] = 4826, + [4908] = 4908, + [4909] = 4908, + [4910] = 4910, + [4911] = 4911, + [4912] = 4912, + [4913] = 4911, + [4914] = 4911, + [4915] = 4908, + [4916] = 4912, + [4917] = 4911, + [4918] = 4911, + [4919] = 4912, + [4920] = 4911, + [4921] = 4912, + [4922] = 4912, + [4923] = 4911, + [4924] = 4911, + [4925] = 4908, + [4926] = 4912, + [4927] = 4912, + [4928] = 4911, + [4929] = 4912, + [4930] = 4912, + [4931] = 4908, + [4932] = 4908, + [4933] = 4908, [4934] = 4934, - [4935] = 4935, - [4936] = 4936, - [4937] = 4665, - [4938] = 4882, - [4939] = 4654, - [4940] = 4884, - [4941] = 4884, - [4942] = 4550, - [4943] = 4943, - [4944] = 4944, - [4945] = 4550, - [4946] = 4560, - [4947] = 4947, - [4948] = 4948, - [4949] = 4949, - [4950] = 4950, - [4951] = 2472, + [4935] = 3913, + [4936] = 4911, + [4937] = 2301, + [4938] = 4908, + [4939] = 4911, + [4940] = 4911, + [4941] = 4912, + [4942] = 4912, + [4943] = 4912, + [4944] = 4912, + [4945] = 4911, + [4946] = 4911, + [4947] = 4908, + [4948] = 4912, + [4949] = 4912, + [4950] = 4911, + [4951] = 4808, [4952] = 4952, - [4953] = 4948, - [4954] = 4954, - [4955] = 4613, - [4956] = 4956, - [4957] = 4606, - [4958] = 4607, - [4959] = 4549, - [4960] = 4960, - [4961] = 4961, - [4962] = 4874, - [4963] = 4963, - [4964] = 4964, - [4965] = 4588, - [4966] = 4966, - [4967] = 4611, - [4968] = 4571, - [4969] = 4529, - [4970] = 4548, + [4953] = 4953, + [4954] = 4809, + [4955] = 4808, + [4956] = 4807, + [4957] = 4953, + [4958] = 4809, + [4959] = 4808, + [4960] = 2527, + [4961] = 4910, + [4962] = 4807, + [4963] = 4809, + [4964] = 4807, + [4965] = 4797, + [4966] = 4952, + [4967] = 2513, + [4968] = 4968, + [4969] = 2877, + [4970] = 4970, [4971] = 4971, - [4972] = 4610, - [4973] = 1974, - [4974] = 4620, - [4975] = 4975, - [4976] = 1975, - [4977] = 1770, + [4972] = 4972, + [4973] = 4973, + [4974] = 4972, + [4975] = 4808, + [4976] = 4976, + [4977] = 4977, [4978] = 4978, - [4979] = 4979, - [4980] = 4979, + [4979] = 4809, + [4980] = 4980, [4981] = 4981, - [4982] = 4606, - [4983] = 4983, - [4984] = 4983, - [4985] = 4978, - [4986] = 4983, + [4982] = 4982, + [4983] = 4968, + [4984] = 4984, + [4985] = 4968, + [4986] = 4986, [4987] = 4987, - [4988] = 2533, - [4989] = 4979, - [4990] = 4979, - [4991] = 4607, - [4992] = 4992, - [4993] = 4978, - [4994] = 4992, - [4995] = 4983, - [4996] = 4978, - [4997] = 4979, - [4998] = 4710, - [4999] = 4987, - [5000] = 1769, - [5001] = 4979, - [5002] = 4987, - [5003] = 4979, - [5004] = 1777, - [5005] = 4983, - [5006] = 4979, - [5007] = 4978, - [5008] = 4983, - [5009] = 4588, - [5010] = 4610, - [5011] = 4611, - [5012] = 4992, - [5013] = 4620, - [5014] = 4978, - [5015] = 4987, - [5016] = 4992, - [5017] = 4983, - [5018] = 4992, - [5019] = 5019, - [5020] = 4979, - [5021] = 4983, - [5022] = 4979, + [4988] = 4988, + [4989] = 4797, + [4990] = 4968, + [4991] = 4991, + [4992] = 4972, + [4993] = 4971, + [4994] = 4986, + [4995] = 4986, + [4996] = 4996, + [4997] = 4972, + [4998] = 4998, + [4999] = 4972, + [5000] = 4968, + [5001] = 5001, + [5002] = 4972, + [5003] = 4986, + [5004] = 4968, + [5005] = 4998, + [5006] = 4986, + [5007] = 3913, + [5008] = 5001, + [5009] = 4972, + [5010] = 4976, + [5011] = 4971, + [5012] = 4986, + [5013] = 5013, + [5014] = 4972, + [5015] = 4797, + [5016] = 4968, + [5017] = 2484, + [5018] = 5018, + [5019] = 4986, + [5020] = 4972, + [5021] = 4986, + [5022] = 4986, [5023] = 5023, - [5024] = 4979, - [5025] = 4979, - [5026] = 4613, - [5027] = 4992, - [5028] = 4992, - [5029] = 4979, - [5030] = 4992, - [5031] = 4978, - [5032] = 4983, - [5033] = 1773, - [5034] = 4979, - [5035] = 4979, - [5036] = 4979, + [5024] = 4807, + [5025] = 4986, + [5026] = 4986, + [5027] = 4968, + [5028] = 4972, + [5029] = 5029, + [5030] = 5030, + [5031] = 4986, + [5032] = 5032, + [5033] = 4972, + [5034] = 5034, + [5035] = 5035, + [5036] = 5036, [5037] = 5037, - [5038] = 4992, - [5039] = 1776, - [5040] = 4979, - [5041] = 2455, - [5042] = 1771, - [5043] = 4724, + [5038] = 5038, + [5039] = 5039, + [5040] = 4978, + [5041] = 5041, + [5042] = 5042, + [5043] = 5041, [5044] = 5044, - [5045] = 1781, - [5046] = 5046, - [5047] = 4759, - [5048] = 4795, - [5049] = 5049, - [5050] = 4780, - [5051] = 5049, - [5052] = 4801, - [5053] = 5049, - [5054] = 4678, + [5045] = 5045, + [5046] = 4986, + [5047] = 5047, + [5048] = 4998, + [5049] = 4968, + [5050] = 5050, + [5051] = 4972, + [5052] = 4980, + [5053] = 5053, + [5054] = 5054, [5055] = 5055, - [5056] = 5056, - [5057] = 4685, - [5058] = 5058, - [5059] = 5058, - [5060] = 5060, - [5061] = 5061, - [5062] = 4710, - [5063] = 5063, - [5064] = 5049, - [5065] = 4650, - [5066] = 5056, - [5067] = 5058, - [5068] = 5056, - [5069] = 5056, - [5070] = 5056, - [5071] = 4665, - [5072] = 5058, - [5073] = 5055, - [5074] = 5046, - [5075] = 4741, - [5076] = 4654, - [5077] = 5046, - [5078] = 5049, - [5079] = 5063, - [5080] = 5049, - [5081] = 5081, - [5082] = 5049, - [5083] = 5055, - [5084] = 5056, - [5085] = 5056, - [5086] = 5058, - [5087] = 4724, + [5056] = 4981, + [5057] = 5057, + [5058] = 4982, + [5059] = 4972, + [5060] = 5018, + [5061] = 5029, + [5062] = 4986, + [5063] = 4971, + [5064] = 5034, + [5065] = 5037, + [5066] = 5039, + [5067] = 5067, + [5068] = 5001, + [5069] = 5069, + [5070] = 5070, + [5071] = 5001, + [5072] = 4968, + [5073] = 5073, + [5074] = 5074, + [5075] = 4968, + [5076] = 4968, + [5077] = 5077, + [5078] = 4968, + [5079] = 4971, + [5080] = 4986, + [5081] = 4968, + [5082] = 4998, + [5083] = 4968, + [5084] = 4972, + [5085] = 5085, + [5086] = 5044, + [5087] = 4972, [5088] = 5088, [5089] = 5089, - [5090] = 5056, - [5091] = 5056, - [5092] = 5055, - [5093] = 5058, - [5094] = 5046, - [5095] = 5063, - [5096] = 5096, - [5097] = 5097, + [5090] = 5090, + [5091] = 4986, + [5092] = 4972, + [5093] = 4968, + [5094] = 5094, + [5095] = 5047, + [5096] = 5054, + [5097] = 5045, [5098] = 5098, - [5099] = 5099, - [5100] = 2802, - [5101] = 5096, - [5102] = 5096, - [5103] = 5103, + [5099] = 5042, + [5100] = 5100, + [5101] = 5101, + [5102] = 5038, + [5103] = 5090, [5104] = 5104, - [5105] = 2808, - [5106] = 5097, + [5105] = 5089, + [5106] = 5101, [5107] = 5107, - [5108] = 5108, + [5108] = 5035, [5109] = 5109, - [5110] = 5096, - [5111] = 5097, - [5112] = 2789, + [5110] = 5057, + [5111] = 5085, + [5112] = 5112, [5113] = 5113, - [5114] = 5097, - [5115] = 5115, - [5116] = 5116, - [5117] = 5117, - [5118] = 5116, - [5119] = 5119, - [5120] = 5120, - [5121] = 5121, - [5122] = 5122, - [5123] = 5123, - [5124] = 5124, - [5125] = 5125, - [5126] = 5120, - [5127] = 5127, - [5128] = 5119, - [5129] = 5117, - [5130] = 5120, - [5131] = 5131, - [5132] = 5132, - [5133] = 5116, - [5134] = 5120, - [5135] = 5135, - [5136] = 5136, - [5137] = 4923, - [5138] = 4894, - [5139] = 5119, - [5140] = 5120, - [5141] = 5116, - [5142] = 5119, - [5143] = 5119, - [5144] = 5120, - [5145] = 5119, - [5146] = 5120, - [5147] = 5119, - [5148] = 5148, - [5149] = 5149, - [5150] = 5150, - [5151] = 5151, - [5152] = 5152, - [5153] = 5153, + [5114] = 4977, + [5115] = 5074, + [5116] = 5030, + [5117] = 4970, + [5118] = 5053, + [5119] = 4973, + [5120] = 5032, + [5121] = 5101, + [5122] = 4984, + [5123] = 5109, + [5124] = 4991, + [5125] = 4797, + [5126] = 5109, + [5127] = 5077, + [5128] = 2877, + [5129] = 4987, + [5130] = 5113, + [5131] = 4988, + [5132] = 5013, + [5133] = 5133, + [5134] = 5055, + [5135] = 5023, + [5136] = 5109, + [5137] = 5109, + [5138] = 5036, + [5139] = 5139, + [5140] = 5101, + [5141] = 5050, + [5142] = 5142, + [5143] = 5143, + [5144] = 4809, + [5145] = 5145, + [5146] = 5143, + [5147] = 4808, + [5148] = 4809, + [5149] = 4807, + [5150] = 4807, + [5151] = 5143, + [5152] = 4808, + [5153] = 4797, [5154] = 5154, - [5155] = 5154, - [5156] = 5156, + [5155] = 5074, + [5156] = 5055, [5157] = 5157, - [5158] = 5158, - [5159] = 5154, - [5160] = 5154, - [5161] = 5161, + [5158] = 5074, + [5159] = 5159, + [5160] = 5050, + [5161] = 5077, [5162] = 5162, - [5163] = 5163, - [5164] = 5162, - [5165] = 5165, - [5166] = 5166, - [5167] = 5167, - [5168] = 5168, + [5163] = 5154, + [5164] = 4977, + [5165] = 5157, + [5166] = 5157, + [5167] = 4991, + [5168] = 5077, [5169] = 5169, - [5170] = 5170, - [5171] = 5171, - [5172] = 5172, - [5173] = 5173, - [5174] = 5172, - [5175] = 5175, - [5176] = 5176, - [5177] = 5177, - [5178] = 5178, - [5179] = 5179, - [5180] = 5180, - [5181] = 5181, - [5182] = 5169, - [5183] = 5183, - [5184] = 5167, + [5170] = 4977, + [5171] = 4991, + [5172] = 5050, + [5173] = 5157, + [5174] = 5154, + [5175] = 5045, + [5176] = 5042, + [5177] = 5074, + [5178] = 5157, + [5179] = 5162, + [5180] = 5035, + [5181] = 5055, + [5182] = 5154, + [5183] = 5162, + [5184] = 5184, [5185] = 5185, - [5186] = 5177, - [5187] = 5169, - [5188] = 5188, - [5189] = 5179, - [5190] = 5165, - [5191] = 5191, - [5192] = 5192, - [5193] = 5188, - [5194] = 5166, - [5195] = 5177, - [5196] = 5178, - [5197] = 5197, - [5198] = 5173, - [5199] = 5173, - [5200] = 5177, - [5201] = 5201, - [5202] = 5202, - [5203] = 5180, - [5204] = 5204, - [5205] = 5179, - [5206] = 5183, - [5207] = 5180, - [5208] = 5191, - [5209] = 5177, - [5210] = 5169, - [5211] = 5191, - [5212] = 5178, - [5213] = 5213, - [5214] = 5214, - [5215] = 5188, - [5216] = 5167, - [5217] = 5191, - [5218] = 5202, - [5219] = 5219, - [5220] = 5204, - [5221] = 5192, - [5222] = 5175, - [5223] = 5168, - [5224] = 5177, - [5225] = 5183, - [5226] = 5226, - [5227] = 5173, - [5228] = 5177, - [5229] = 5179, - [5230] = 5166, - [5231] = 5191, - [5232] = 5165, - [5233] = 5201, - [5234] = 5172, - [5235] = 5213, - [5236] = 5236, - [5237] = 5180, - [5238] = 5191, - [5239] = 5178, - [5240] = 5179, - [5241] = 5177, - [5242] = 5167, - [5243] = 5166, - [5244] = 5173, - [5245] = 5165, - [5246] = 5180, - [5247] = 5168, - [5248] = 5183, - [5249] = 5167, - [5250] = 5178, - [5251] = 5178, - [5252] = 5172, - [5253] = 5202, - [5254] = 5202, - [5255] = 5201, - [5256] = 5165, - [5257] = 5172, - [5258] = 5166, - [5259] = 5188, - [5260] = 5177, - [5261] = 5213, - [5262] = 5183, - [5263] = 5167, - [5264] = 5170, - [5265] = 5177, - [5266] = 5180, - [5267] = 5167, - [5268] = 5175, - [5269] = 5169, - [5270] = 5204, - [5271] = 5192, - [5272] = 5177, - [5273] = 5168, - [5274] = 5175, - [5275] = 5183, - [5276] = 5172, - [5277] = 5173, - [5278] = 5204, - [5279] = 5167, - [5280] = 5179, - [5281] = 5180, - [5282] = 5202, - [5283] = 5191, - [5284] = 5191, - [5285] = 5188, - [5286] = 5177, - [5287] = 5192, - [5288] = 5173, - [5289] = 5166, - [5290] = 5165, - [5291] = 5201, - [5292] = 5175, - [5293] = 5178, - [5294] = 5175, - [5295] = 5295, - [5296] = 5179, - [5297] = 5172, - [5298] = 5170, - [5299] = 5173, - [5300] = 5188, - [5301] = 5204, - [5302] = 5168, - [5303] = 5201, - [5304] = 5178, - [5305] = 5202, - [5306] = 5188, - [5307] = 5168, - [5308] = 5188, - [5309] = 5202, - [5310] = 5180, - [5311] = 5311, - [5312] = 5192, - [5313] = 5192, - [5314] = 5183, - [5315] = 5192, - [5316] = 5168, - [5317] = 5213, - [5318] = 5170, - [5319] = 5177, - [5320] = 5175, - [5321] = 5172, - [5322] = 5175, - [5323] = 5178, - [5324] = 5324, - [5325] = 5183, - [5326] = 5201, - [5327] = 5183, - [5328] = 5173, - [5329] = 5179, - [5330] = 5166, - [5331] = 5177, - [5332] = 5332, - [5333] = 5169, - [5334] = 5165, - [5335] = 5165, - [5336] = 5178, - [5337] = 5192, - [5338] = 5213, - [5339] = 5191, - [5340] = 5340, - [5341] = 5201, - [5342] = 5177, - [5343] = 5166, - [5344] = 5213, - [5345] = 5167, - [5346] = 5166, - [5347] = 5204, - [5348] = 5202, - [5349] = 4710, - [5350] = 5213, - [5351] = 5188, - [5352] = 5175, - [5353] = 5204, - [5354] = 5202, - [5355] = 5169, - [5356] = 5191, - [5357] = 5168, + [5186] = 5077, + [5187] = 5162, + [5188] = 5162, + [5189] = 5154, + [5190] = 5157, + [5191] = 5162, + [5192] = 5035, + [5193] = 5154, + [5194] = 5162, + [5195] = 5042, + [5196] = 5162, + [5197] = 5035, + [5198] = 5045, + [5199] = 4991, + [5200] = 5200, + [5201] = 5157, + [5202] = 5050, + [5203] = 2766, + [5204] = 5162, + [5205] = 2359, + [5206] = 5200, + [5207] = 5207, + [5208] = 5162, + [5209] = 5157, + [5210] = 5055, + [5211] = 5042, + [5212] = 5045, + [5213] = 2364, + [5214] = 5154, + [5215] = 5154, + [5216] = 2734, + [5217] = 5154, + [5218] = 5154, + [5219] = 4797, + [5220] = 4977, + [5221] = 5157, + [5222] = 5222, + [5223] = 5223, + [5224] = 4991, + [5225] = 4977, + [5226] = 2187, + [5227] = 2177, + [5228] = 5228, + [5229] = 5229, + [5230] = 2178, + [5231] = 2195, + [5232] = 5232, + [5233] = 5077, + [5234] = 2179, + [5235] = 2191, + [5236] = 5074, + [5237] = 5237, + [5238] = 5055, + [5239] = 5050, + [5240] = 5045, + [5241] = 2193, + [5242] = 5242, + [5243] = 5228, + [5244] = 2190, + [5245] = 2186, + [5246] = 5042, + [5247] = 5247, + [5248] = 2197, + [5249] = 5242, + [5250] = 2182, + [5251] = 2196, + [5252] = 2180, + [5253] = 5035, + [5254] = 5254, + [5255] = 5242, + [5256] = 5232, + [5257] = 5257, + [5258] = 5257, + [5259] = 2184, + [5260] = 2188, + [5261] = 5223, + [5262] = 5262, + [5263] = 5232, + [5264] = 5264, + [5265] = 5232, + [5266] = 2734, + [5267] = 2766, + [5268] = 5232, + [5269] = 5262, + [5270] = 5232, + [5271] = 5271, + [5272] = 5232, + [5273] = 5232, + [5274] = 5232, + [5275] = 5228, + [5276] = 5276, + [5277] = 5277, + [5278] = 5222, + [5279] = 5279, + [5280] = 5280, + [5281] = 5228, + [5282] = 5282, + [5283] = 5283, + [5284] = 331, + [5285] = 5228, + [5286] = 5232, + [5287] = 321, + [5288] = 5254, + [5289] = 5232, + [5290] = 5290, + [5291] = 5291, + [5292] = 5292, + [5293] = 5232, + [5294] = 5242, + [5295] = 5277, + [5296] = 5228, + [5297] = 5297, + [5298] = 5242, + [5299] = 5242, + [5300] = 5290, + [5301] = 5229, + [5302] = 5232, + [5303] = 5303, + [5304] = 5304, + [5305] = 5305, + [5306] = 5237, + [5307] = 5304, + [5308] = 5305, + [5309] = 5305, + [5310] = 5291, + [5311] = 5304, + [5312] = 5304, + [5313] = 5304, + [5314] = 5247, + [5315] = 5304, + [5316] = 5303, + [5317] = 5292, + [5318] = 5304, + [5319] = 5319, + [5320] = 5320, + [5321] = 5321, + [5322] = 5322, + [5323] = 5323, + [5324] = 5319, + [5325] = 5325, + [5326] = 5326, + [5327] = 5319, + [5328] = 5319, + [5329] = 5319, + [5330] = 5303, + [5331] = 5305, + [5332] = 5305, + [5333] = 5333, + [5334] = 5304, + [5335] = 5335, + [5336] = 5304, + [5337] = 5305, + [5338] = 5319, + [5339] = 5304, + [5340] = 5304, + [5341] = 5283, + [5342] = 5304, + [5343] = 5305, + [5344] = 5276, + [5345] = 5304, + [5346] = 5305, + [5347] = 5305, + [5348] = 5319, + [5349] = 4720, + [5350] = 5304, + [5351] = 5304, + [5352] = 5303, + [5353] = 5305, + [5354] = 5304, + [5355] = 5355, + [5356] = 4977, + [5357] = 5355, [5358] = 5358, - [5359] = 5359, - [5360] = 5177, - [5361] = 5180, - [5362] = 5179, - [5363] = 5183, - [5364] = 5172, - [5365] = 5165, - [5366] = 5366, + [5359] = 5074, + [5360] = 5360, + [5361] = 5361, + [5362] = 5362, + [5363] = 5361, + [5364] = 5050, + [5365] = 5360, + [5366] = 5055, [5367] = 5367, - [5368] = 5368, + [5368] = 5361, [5369] = 5369, - [5370] = 5370, - [5371] = 5371, - [5372] = 5372, + [5370] = 5369, + [5371] = 5050, + [5372] = 2734, [5373] = 5373, - [5374] = 5374, - [5375] = 5368, - [5376] = 5376, + [5374] = 5361, + [5375] = 5375, + [5376] = 5369, [5377] = 5377, [5378] = 5378, - [5379] = 5372, - [5380] = 5380, + [5379] = 5335, + [5380] = 5362, [5381] = 5381, - [5382] = 5382, - [5383] = 5383, + [5382] = 5369, + [5383] = 5361, [5384] = 5384, - [5385] = 5385, - [5386] = 5386, + [5385] = 5355, + [5386] = 5077, [5387] = 5387, [5388] = 5388, - [5389] = 5378, - [5390] = 5377, + [5389] = 5361, + [5390] = 5390, [5391] = 5391, - [5392] = 5368, - [5393] = 5393, - [5394] = 5387, - [5395] = 5395, - [5396] = 5380, - [5397] = 5380, + [5392] = 5392, + [5393] = 5042, + [5394] = 5377, + [5395] = 5361, + [5396] = 5396, + [5397] = 5397, [5398] = 5398, - [5399] = 5367, + [5399] = 5320, [5400] = 5400, - [5401] = 5401, - [5402] = 5402, - [5403] = 5403, - [5404] = 5404, - [5405] = 5405, + [5401] = 5392, + [5402] = 5369, + [5403] = 5355, + [5404] = 4991, + [5405] = 5369, [5406] = 5406, - [5407] = 5405, - [5408] = 5406, - [5409] = 5404, - [5410] = 5388, - [5411] = 5401, - [5412] = 5369, - [5413] = 5403, - [5414] = 5400, - [5415] = 5367, - [5416] = 5398, - [5417] = 5417, - [5418] = 5418, + [5407] = 5387, + [5408] = 5375, + [5409] = 5384, + [5410] = 5378, + [5411] = 5361, + [5412] = 5321, + [5413] = 5400, + [5414] = 5333, + [5415] = 5415, + [5416] = 5045, + [5417] = 5358, + [5418] = 5035, [5419] = 5419, - [5420] = 5380, - [5421] = 5385, - [5422] = 5401, + [5420] = 5388, + [5421] = 5421, + [5422] = 5422, [5423] = 5423, - [5424] = 5368, - [5425] = 5377, - [5426] = 5378, - [5427] = 5387, - [5428] = 5428, - [5429] = 5395, - [5430] = 5388, - [5431] = 5384, - [5432] = 5369, - [5433] = 5433, - [5434] = 5381, - [5435] = 5372, - [5436] = 5436, - [5437] = 5386, - [5438] = 5438, - [5439] = 5403, + [5424] = 5361, + [5425] = 5361, + [5426] = 5373, + [5427] = 2766, + [5428] = 5361, + [5429] = 5361, + [5430] = 5419, + [5431] = 5391, + [5432] = 5432, + [5433] = 5361, + [5434] = 4991, + [5435] = 4977, + [5436] = 5422, + [5437] = 5055, + [5438] = 5432, + [5439] = 2766, [5440] = 5440, - [5441] = 5367, - [5442] = 5442, - [5443] = 5398, - [5444] = 5444, - [5445] = 5401, - [5446] = 5446, - [5447] = 5382, - [5448] = 5387, - [5449] = 5372, - [5450] = 5450, - [5451] = 5451, - [5452] = 5381, - [5453] = 5384, - [5454] = 5438, - [5455] = 5395, - [5456] = 5456, + [5441] = 5355, + [5442] = 5361, + [5443] = 5361, + [5444] = 5322, + [5445] = 5445, + [5446] = 5042, + [5447] = 5326, + [5448] = 5396, + [5449] = 5361, + [5450] = 5397, + [5451] = 5361, + [5452] = 5367, + [5453] = 5045, + [5454] = 5369, + [5455] = 2734, + [5456] = 5369, [5457] = 5457, - [5458] = 5393, - [5459] = 5423, - [5460] = 5388, - [5461] = 5461, - [5462] = 5462, - [5463] = 5463, - [5464] = 5378, - [5465] = 5377, - [5466] = 5385, - [5467] = 5368, - [5468] = 5393, - [5469] = 5382, + [5458] = 5369, + [5459] = 5074, + [5460] = 5323, + [5461] = 5390, + [5462] = 5077, + [5463] = 5355, + [5464] = 5457, + [5465] = 5035, + [5466] = 2178, + [5467] = 5467, + [5468] = 5276, + [5469] = 5469, [5470] = 5470, [5471] = 5471, - [5472] = 5472, - [5473] = 5386, - [5474] = 5386, + [5472] = 5291, + [5473] = 5473, + [5474] = 5292, [5475] = 5475, - [5476] = 5388, - [5477] = 5423, - [5478] = 5478, - [5479] = 5398, - [5480] = 5380, + [5476] = 5237, + [5477] = 5473, + [5478] = 5471, + [5479] = 5471, + [5480] = 5473, [5481] = 5481, - [5482] = 5400, - [5483] = 5483, - [5484] = 5484, - [5485] = 5403, - [5486] = 5486, + [5482] = 5482, + [5483] = 5475, + [5484] = 5247, + [5485] = 5475, + [5486] = 5469, [5487] = 5487, - [5488] = 5401, - [5489] = 5423, - [5490] = 5490, + [5488] = 5469, + [5489] = 5469, + [5490] = 5473, [5491] = 5491, - [5492] = 5386, - [5493] = 5423, - [5494] = 5406, - [5495] = 5405, - [5496] = 5496, - [5497] = 5406, - [5498] = 5498, - [5499] = 5499, - [5500] = 5403, - [5501] = 5501, - [5502] = 5367, - [5503] = 5398, - [5504] = 5405, - [5505] = 5404, - [5506] = 5506, - [5507] = 5388, - [5508] = 5508, - [5509] = 5368, - [5510] = 5377, - [5511] = 5378, - [5512] = 5512, - [5513] = 5462, - [5514] = 5405, - [5515] = 5381, - [5516] = 5372, - [5517] = 5378, - [5518] = 5406, - [5519] = 5377, - [5520] = 5388, - [5521] = 5404, - [5522] = 5401, - [5523] = 5523, - [5524] = 5372, - [5525] = 5388, - [5526] = 5382, - [5527] = 5372, - [5528] = 5401, - [5529] = 5381, - [5530] = 5388, - [5531] = 5388, - [5532] = 5369, - [5533] = 5382, - [5534] = 5483, - [5535] = 5483, - [5536] = 5384, + [5492] = 5283, + [5493] = 5491, + [5494] = 5491, + [5495] = 5469, + [5496] = 5491, + [5497] = 5491, + [5498] = 5471, + [5499] = 5247, + [5500] = 5471, + [5501] = 5475, + [5502] = 5491, + [5503] = 5237, + [5504] = 5504, + [5505] = 5276, + [5506] = 5291, + [5507] = 5469, + [5508] = 5473, + [5509] = 5292, + [5510] = 5491, + [5511] = 5511, + [5512] = 5491, + [5513] = 5473, + [5514] = 2180, + [5515] = 2766, + [5516] = 2197, + [5517] = 2193, + [5518] = 2191, + [5519] = 5475, + [5520] = 2190, + [5521] = 5471, + [5522] = 2179, + [5523] = 2195, + [5524] = 2177, + [5525] = 2188, + [5526] = 2184, + [5527] = 5471, + [5528] = 2186, + [5529] = 2182, + [5530] = 2196, + [5531] = 5469, + [5532] = 2734, + [5533] = 2187, + [5534] = 5491, + [5535] = 331, + [5536] = 321, [5537] = 5537, - [5538] = 5538, - [5539] = 5381, - [5540] = 5540, - [5541] = 5377, - [5542] = 5483, - [5543] = 5378, - [5544] = 5544, + [5538] = 5475, + [5539] = 5469, + [5540] = 5283, + [5541] = 5469, + [5542] = 5471, + [5543] = 5471, + [5544] = 5292, [5545] = 5545, - [5546] = 5456, - [5547] = 5368, - [5548] = 5380, + [5546] = 5321, + [5547] = 2766, + [5548] = 5545, [5549] = 5549, - [5550] = 5388, - [5551] = 5393, - [5552] = 5387, - [5553] = 5553, - [5554] = 5380, - [5555] = 5555, - [5556] = 5388, - [5557] = 5384, - [5558] = 5406, - [5559] = 5378, - [5560] = 5395, - [5561] = 5405, - [5562] = 5401, - [5563] = 5384, - [5564] = 5388, - [5565] = 5377, - [5566] = 5423, - [5567] = 5387, - [5568] = 5380, - [5569] = 5368, - [5570] = 5403, - [5571] = 5386, - [5572] = 5367, - [5573] = 5398, - [5574] = 5574, - [5575] = 5401, - [5576] = 5576, - [5577] = 5381, - [5578] = 5578, - [5579] = 5368, - [5580] = 5377, - [5581] = 5378, - [5582] = 5582, - [5583] = 5382, - [5584] = 5381, - [5585] = 5372, - [5586] = 5398, - [5587] = 5369, - [5588] = 5367, - [5589] = 5400, - [5590] = 5403, - [5591] = 5591, - [5592] = 5401, - [5593] = 5388, - [5594] = 5388, - [5595] = 5404, - [5596] = 5457, - [5597] = 5597, - [5598] = 5378, - [5599] = 5406, - [5600] = 5405, - [5601] = 5406, - [5602] = 5388, - [5603] = 5405, - [5604] = 5404, - [5605] = 5382, - [5606] = 5377, - [5607] = 5403, - [5608] = 5403, - [5609] = 5401, - [5610] = 5400, - [5611] = 5367, - [5612] = 5368, - [5613] = 5368, - [5614] = 5377, - [5615] = 5378, - [5616] = 5398, - [5617] = 5401, - [5618] = 5400, - [5619] = 5367, - [5620] = 5400, - [5621] = 5401, - [5622] = 5388, - [5623] = 5398, - [5624] = 5369, - [5625] = 5462, - [5626] = 5388, - [5627] = 5378, - [5628] = 5393, - [5629] = 5401, - [5630] = 5368, - [5631] = 5377, - [5632] = 5378, - [5633] = 5377, - [5634] = 5368, - [5635] = 5377, - [5636] = 5636, - [5637] = 5378, - [5638] = 5380, - [5639] = 5368, + [5550] = 5445, + [5551] = 5320, + [5552] = 5323, + [5553] = 5322, + [5554] = 5333, + [5555] = 5545, + [5556] = 5335, + [5557] = 5557, + [5558] = 5558, + [5559] = 2098, + [5560] = 5560, + [5561] = 5549, + [5562] = 5562, + [5563] = 5545, + [5564] = 5421, + [5565] = 5545, + [5566] = 5549, + [5567] = 5545, + [5568] = 5440, + [5569] = 5545, + [5570] = 5557, + [5571] = 5571, + [5572] = 5572, + [5573] = 5545, + [5574] = 5549, + [5575] = 5291, + [5576] = 5283, + [5577] = 5545, + [5578] = 4720, + [5579] = 2891, + [5580] = 5580, + [5581] = 2734, + [5582] = 5276, + [5583] = 5545, + [5584] = 5406, + [5585] = 5545, + [5586] = 5545, + [5587] = 5545, + [5588] = 5549, + [5589] = 5237, + [5590] = 5557, + [5591] = 5545, + [5592] = 5557, + [5593] = 5545, + [5594] = 5381, + [5595] = 5545, + [5596] = 5557, + [5597] = 5326, + [5598] = 5545, + [5599] = 5247, + [5600] = 5600, + [5601] = 2859, + [5602] = 5326, + [5603] = 5603, + [5604] = 5604, + [5605] = 5283, + [5606] = 5606, + [5607] = 5322, + [5608] = 5321, + [5609] = 5600, + [5610] = 5333, + [5611] = 5440, + [5612] = 5612, + [5613] = 5421, + [5614] = 5445, + [5615] = 2953, + [5616] = 5616, + [5617] = 5617, + [5618] = 5247, + [5619] = 5237, + [5620] = 5616, + [5621] = 2972, + [5622] = 5276, + [5623] = 5291, + [5624] = 5600, + [5625] = 5320, + [5626] = 5600, + [5627] = 2952, + [5628] = 5292, + [5629] = 5629, + [5630] = 5600, + [5631] = 5600, + [5632] = 2851, + [5633] = 2852, + [5634] = 2854, + [5635] = 5335, + [5636] = 2850, + [5637] = 2856, + [5638] = 5616, + [5639] = 5600, [5640] = 5640, - [5641] = 5385, - [5642] = 5642, - [5643] = 5401, - [5644] = 5368, - [5645] = 5377, - [5646] = 5378, - [5647] = 5387, - [5648] = 5648, - [5649] = 5462, - [5650] = 5395, + [5641] = 5600, + [5642] = 5616, + [5643] = 5323, + [5644] = 5644, + [5645] = 2734, + [5646] = 5381, + [5647] = 5647, + [5648] = 2766, + [5649] = 5649, + [5650] = 5326, [5651] = 5651, - [5652] = 5384, - [5653] = 5462, + [5652] = 5652, + [5653] = 5320, [5654] = 5654, - [5655] = 5388, + [5655] = 5333, [5656] = 5656, - [5657] = 5381, - [5658] = 5372, - [5659] = 5401, - [5660] = 5368, - [5661] = 5377, - [5662] = 5378, - [5663] = 5386, - [5664] = 5404, + [5657] = 5616, + [5658] = 5658, + [5659] = 5616, + [5660] = 5616, + [5661] = 5335, + [5662] = 5616, + [5663] = 5321, + [5664] = 5616, [5665] = 5665, - [5666] = 5393, - [5667] = 5386, - [5668] = 5382, - [5669] = 5669, - [5670] = 5670, - [5671] = 5388, + [5666] = 5323, + [5667] = 5600, + [5668] = 5406, + [5669] = 5322, + [5670] = 5321, + [5671] = 5292, [5672] = 5672, [5673] = 5673, - [5674] = 5673, + [5674] = 5326, [5675] = 5675, - [5676] = 5673, - [5677] = 5677, - [5678] = 5678, - [5679] = 5675, + [5676] = 5676, + [5677] = 5333, + [5678] = 5247, + [5679] = 5679, [5680] = 5680, - [5681] = 5675, - [5682] = 5673, + [5681] = 5681, + [5682] = 5682, [5683] = 5683, - [5684] = 5673, + [5684] = 5684, [5685] = 5685, - [5686] = 5686, - [5687] = 5687, - [5688] = 5688, + [5686] = 5323, + [5687] = 5283, + [5688] = 2988, [5689] = 5689, - [5690] = 5690, + [5690] = 5322, [5691] = 5691, [5692] = 5692, [5693] = 5693, - [5694] = 5694, - [5695] = 5673, - [5696] = 5696, - [5697] = 5673, - [5698] = 5698, - [5699] = 5699, - [5700] = 5700, - [5701] = 5675, - [5702] = 5685, + [5694] = 5291, + [5695] = 5560, + [5696] = 5335, + [5697] = 5693, + [5698] = 5320, + [5699] = 5237, + [5700] = 5276, + [5701] = 5701, + [5702] = 5702, [5703] = 5703, [5704] = 5704, - [5705] = 5686, - [5706] = 5673, - [5707] = 5687, - [5708] = 5689, - [5709] = 5690, - [5710] = 5691, + [5705] = 5705, + [5706] = 5702, + [5707] = 5703, + [5708] = 2766, + [5709] = 5335, + [5710] = 5326, [5711] = 5711, - [5712] = 5673, - [5713] = 5673, - [5714] = 5673, - [5715] = 5673, - [5716] = 5716, - [5717] = 5693, - [5718] = 5694, - [5719] = 5678, - [5720] = 5696, - [5721] = 5673, - [5722] = 5722, - [5723] = 5699, - [5724] = 5700, - [5725] = 5725, - [5726] = 5675, - [5727] = 5727, - [5728] = 5711, + [5712] = 5712, + [5713] = 5712, + [5714] = 5703, + [5715] = 5702, + [5716] = 5703, + [5717] = 5711, + [5718] = 5712, + [5719] = 5719, + [5720] = 5704, + [5721] = 5704, + [5722] = 5704, + [5723] = 5702, + [5724] = 5724, + [5725] = 5724, + [5726] = 5712, + [5727] = 5703, + [5728] = 5703, [5729] = 5711, - [5730] = 5673, - [5731] = 5678, - [5732] = 5722, - [5733] = 5725, - [5734] = 5734, - [5735] = 5704, + [5730] = 5702, + [5731] = 5702, + [5732] = 5711, + [5733] = 5712, + [5734] = 5724, + [5735] = 5712, [5736] = 5711, - [5737] = 5678, - [5738] = 5686, - [5739] = 5687, - [5740] = 5686, - [5741] = 5689, - [5742] = 5690, - [5743] = 5691, - [5744] = 5680, - [5745] = 5716, - [5746] = 5693, - [5747] = 5694, - [5748] = 5748, - [5749] = 5696, - [5750] = 5750, - [5751] = 5725, - [5752] = 5704, - [5753] = 5753, - [5754] = 5688, - [5755] = 5698, - [5756] = 5672, - [5757] = 5699, + [5737] = 5712, + [5738] = 5711, + [5739] = 5704, + [5740] = 5333, + [5741] = 5712, + [5742] = 5703, + [5743] = 5724, + [5744] = 5719, + [5745] = 5711, + [5746] = 5702, + [5747] = 5702, + [5748] = 5711, + [5749] = 5704, + [5750] = 5724, + [5751] = 5724, + [5752] = 5752, + [5753] = 5712, + [5754] = 5323, + [5755] = 5415, + [5756] = 2093, + [5757] = 5711, [5758] = 5758, - [5759] = 5700, - [5760] = 5675, - [5761] = 5761, - [5762] = 5762, - [5763] = 5763, - [5764] = 5685, - [5765] = 5680, - [5766] = 5703, - [5767] = 5722, - [5768] = 5704, - [5769] = 5686, - [5770] = 5770, - [5771] = 5687, - [5772] = 5689, - [5773] = 5690, - [5774] = 5691, + [5759] = 5719, + [5760] = 5704, + [5761] = 5719, + [5762] = 5322, + [5763] = 5724, + [5764] = 5703, + [5765] = 5712, + [5766] = 5712, + [5767] = 2734, + [5768] = 5703, + [5769] = 2086, + [5770] = 5712, + [5771] = 2105, + [5772] = 5423, + [5773] = 5724, + [5774] = 2097, [5775] = 5711, - [5776] = 5678, - [5777] = 5716, - [5778] = 5693, - [5779] = 5694, - [5780] = 5696, - [5781] = 5750, - [5782] = 5673, - [5783] = 5783, - [5784] = 5680, - [5785] = 5785, - [5786] = 5699, - [5787] = 5700, - [5788] = 5698, - [5789] = 5789, - [5790] = 5675, - [5791] = 5761, - [5792] = 5763, - [5793] = 5685, - [5794] = 5703, - [5795] = 5795, - [5796] = 468, - [5797] = 5688, - [5798] = 5698, - [5799] = 5686, - [5800] = 5711, - [5801] = 5753, - [5802] = 5698, - [5803] = 5678, - [5804] = 5750, - [5805] = 5673, - [5806] = 5770, - [5807] = 5680, - [5808] = 5808, - [5809] = 5687, - [5810] = 5698, - [5811] = 5811, - [5812] = 5703, - [5813] = 5689, - [5814] = 5690, - [5815] = 5691, - [5816] = 5816, - [5817] = 5703, - [5818] = 5703, - [5819] = 5696, - [5820] = 5694, - [5821] = 5716, - [5822] = 5693, - [5823] = 5693, - [5824] = 5694, - [5825] = 5696, - [5826] = 5750, - [5827] = 5673, - [5828] = 5711, - [5829] = 5678, - [5830] = 5686, - [5831] = 5831, - [5832] = 5699, - [5833] = 5700, - [5834] = 5834, - [5835] = 5675, - [5836] = 5761, - [5837] = 5763, - [5838] = 5685, - [5839] = 5839, - [5840] = 364, - [5841] = 5704, + [5776] = 5702, + [5777] = 5703, + [5778] = 5704, + [5779] = 5712, + [5780] = 5711, + [5781] = 5712, + [5782] = 5724, + [5783] = 2091, + [5784] = 5704, + [5785] = 2089, + [5786] = 5786, + [5787] = 5719, + [5788] = 2088, + [5789] = 5712, + [5790] = 5703, + [5791] = 5712, + [5792] = 5704, + [5793] = 5724, + [5794] = 5794, + [5795] = 5321, + [5796] = 5724, + [5797] = 5712, + [5798] = 5320, + [5799] = 5704, + [5800] = 5800, + [5801] = 5406, + [5802] = 5802, + [5803] = 5320, + [5804] = 5321, + [5805] = 5445, + [5806] = 5802, + [5807] = 5807, + [5808] = 5322, + [5809] = 5800, + [5810] = 5810, + [5811] = 5335, + [5812] = 5470, + [5813] = 5810, + [5814] = 5467, + [5815] = 5415, + [5816] = 5800, + [5817] = 5537, + [5818] = 5818, + [5819] = 5800, + [5820] = 5810, + [5821] = 5821, + [5822] = 5822, + [5823] = 5802, + [5824] = 5802, + [5825] = 5825, + [5826] = 5818, + [5827] = 5827, + [5828] = 5821, + [5829] = 5821, + [5830] = 5423, + [5831] = 5807, + [5832] = 5832, + [5833] = 5810, + [5834] = 5818, + [5835] = 5481, + [5836] = 5836, + [5837] = 5807, + [5838] = 5818, + [5839] = 5810, + [5840] = 5840, + [5841] = 5810, [5842] = 5842, - [5843] = 5686, - [5844] = 5753, - [5845] = 5698, - [5846] = 5727, - [5847] = 5847, - [5848] = 5848, - [5849] = 5770, - [5850] = 5763, - [5851] = 5851, - [5852] = 5852, - [5853] = 5687, - [5854] = 5699, - [5855] = 5808, - [5856] = 5689, - [5857] = 5690, - [5858] = 5734, - [5859] = 5691, - [5860] = 5700, - [5861] = 5861, - [5862] = 5716, - [5863] = 5688, - [5864] = 5693, - [5865] = 5694, - [5866] = 5696, + [5843] = 5821, + [5844] = 5821, + [5845] = 5807, + [5846] = 5821, + [5847] = 5504, + [5848] = 5802, + [5849] = 5849, + [5850] = 5810, + [5851] = 5333, + [5852] = 5326, + [5853] = 5818, + [5854] = 5440, + [5855] = 5802, + [5856] = 5802, + [5857] = 5421, + [5858] = 5802, + [5859] = 5821, + [5860] = 5821, + [5861] = 5802, + [5862] = 5821, + [5863] = 5800, + [5864] = 5381, + [5865] = 5323, + [5866] = 5866, [5867] = 5867, - [5868] = 5750, - [5869] = 5673, - [5870] = 5699, - [5871] = 5700, - [5872] = 5872, + [5868] = 5867, + [5869] = 5869, + [5870] = 5866, + [5871] = 2883, + [5872] = 5866, [5873] = 5873, - [5874] = 5873, - [5875] = 5675, - [5876] = 5761, + [5874] = 5866, + [5875] = 2904, + [5876] = 5866, [5877] = 5877, - [5878] = 5685, + [5878] = 5867, [5879] = 5879, [5880] = 5880, - [5881] = 5839, - [5882] = 5716, - [5883] = 5672, - [5884] = 5861, - [5885] = 5704, - [5886] = 5703, + [5881] = 5881, + [5882] = 5867, + [5883] = 5867, + [5884] = 5884, + [5885] = 2888, + [5886] = 5886, [5887] = 5887, - [5888] = 5691, - [5889] = 5686, - [5890] = 5690, - [5891] = 5753, - [5892] = 5689, + [5888] = 5888, + [5889] = 5889, + [5890] = 5887, + [5891] = 5891, + [5892] = 5887, [5893] = 5893, - [5894] = 5727, - [5895] = 5770, - [5896] = 5896, - [5897] = 5897, - [5898] = 5898, - [5899] = 5687, - [5900] = 5700, + [5894] = 5894, + [5895] = 5895, + [5896] = 5888, + [5897] = 5887, + [5898] = 5889, + [5899] = 5887, + [5900] = 5900, [5901] = 5901, - [5902] = 5689, - [5903] = 5690, + [5902] = 5888, + [5903] = 5903, [5904] = 5904, - [5905] = 5691, - [5906] = 5906, - [5907] = 5761, - [5908] = 5734, - [5909] = 5909, - [5910] = 5722, - [5911] = 5861, - [5912] = 5716, - [5913] = 5675, - [5914] = 5693, - [5915] = 5694, - [5916] = 5696, - [5917] = 5917, - [5918] = 5750, - [5919] = 5673, - [5920] = 5808, + [5905] = 5905, + [5906] = 5888, + [5907] = 5894, + [5908] = 5894, + [5909] = 5895, + [5910] = 5910, + [5911] = 5911, + [5912] = 5912, + [5913] = 5894, + [5914] = 5895, + [5915] = 5606, + [5916] = 5887, + [5917] = 5887, + [5918] = 5887, + [5919] = 5919, + [5920] = 5888, [5921] = 5921, - [5922] = 5748, - [5923] = 5699, - [5924] = 5770, - [5925] = 5873, - [5926] = 5763, - [5927] = 5680, - [5928] = 5675, - [5929] = 5761, - [5930] = 5763, - [5931] = 5685, - [5932] = 5877, - [5933] = 5686, - [5934] = 5698, - [5935] = 5935, - [5936] = 5936, - [5937] = 5685, - [5938] = 5839, - [5939] = 5672, - [5940] = 5704, + [5922] = 5922, + [5923] = 5923, + [5924] = 5911, + [5925] = 5889, + [5926] = 5895, + [5927] = 5927, + [5928] = 5888, + [5929] = 5894, + [5930] = 5888, + [5931] = 5888, + [5932] = 5888, + [5933] = 5649, + [5934] = 5934, + [5935] = 5894, + [5936] = 5895, + [5937] = 5887, + [5938] = 5895, + [5939] = 5939, + [5940] = 5889, [5941] = 5941, - [5942] = 5867, - [5943] = 5686, - [5944] = 5753, - [5945] = 5727, - [5946] = 5683, - [5947] = 5839, - [5948] = 5704, - [5949] = 5727, - [5950] = 5687, - [5951] = 5672, - [5952] = 5952, - [5953] = 5689, - [5954] = 5690, - [5955] = 5691, - [5956] = 5956, - [5957] = 5734, - [5958] = 5687, - [5959] = 5861, - [5960] = 5716, - [5961] = 5693, - [5962] = 5694, - [5963] = 5696, + [5942] = 5942, + [5943] = 5943, + [5944] = 5944, + [5945] = 5945, + [5946] = 5946, + [5947] = 5947, + [5948] = 5948, + [5949] = 5949, + [5950] = 5950, + [5951] = 5942, + [5952] = 5946, + [5953] = 5953, + [5954] = 5942, + [5955] = 5955, + [5956] = 5942, + [5957] = 5942, + [5958] = 5958, + [5959] = 5959, + [5960] = 5960, + [5961] = 5961, + [5962] = 5962, + [5963] = 5963, [5964] = 5964, - [5965] = 5725, - [5966] = 5750, - [5967] = 5673, - [5968] = 5808, - [5969] = 5867, - [5970] = 5699, - [5971] = 5700, - [5972] = 5688, - [5973] = 5877, - [5974] = 5873, + [5965] = 5965, + [5966] = 5960, + [5967] = 5967, + [5968] = 5968, + [5969] = 5968, + [5970] = 5970, + [5971] = 5971, + [5972] = 5972, + [5973] = 5963, + [5974] = 5961, [5975] = 5975, - [5976] = 5976, - [5977] = 5722, - [5978] = 5770, - [5979] = 5725, - [5980] = 5727, - [5981] = 5675, - [5982] = 5711, - [5983] = 5683, - [5984] = 5678, - [5985] = 5761, - [5986] = 5763, - [5987] = 5987, - [5988] = 5685, - [5989] = 5989, - [5990] = 5753, - [5991] = 5683, - [5992] = 5877, - [5993] = 5683, - [5994] = 5795, - [5995] = 5995, - [5996] = 5748, - [5997] = 5997, - [5998] = 5683, + [5976] = 5964, + [5977] = 5977, + [5978] = 5960, + [5979] = 5964, + [5980] = 5980, + [5981] = 5960, + [5982] = 5982, + [5983] = 5968, + [5984] = 5967, + [5985] = 5959, + [5986] = 5986, + [5987] = 5977, + [5988] = 5970, + [5989] = 5971, + [5990] = 5990, + [5991] = 5964, + [5992] = 5960, + [5993] = 5993, + [5994] = 5994, + [5995] = 5968, + [5996] = 5982, + [5997] = 5965, + [5998] = 5993, [5999] = 5999, - [6000] = 5686, - [6001] = 6001, - [6002] = 5680, - [6003] = 5839, - [6004] = 5672, - [6005] = 5704, - [6006] = 5770, + [6000] = 6000, + [6001] = 5993, + [6002] = 5965, + [6003] = 5964, + [6004] = 5960, + [6005] = 5972, + [6006] = 5964, [6007] = 6007, [6008] = 6008, - [6009] = 6009, - [6010] = 6010, - [6011] = 6011, - [6012] = 6012, - [6013] = 6013, + [6009] = 5968, + [6010] = 5971, + [6011] = 5999, + [6012] = 5971, + [6013] = 5970, [6014] = 6014, - [6015] = 6015, - [6016] = 6016, - [6017] = 6017, - [6018] = 6018, - [6019] = 6019, - [6020] = 6020, - [6021] = 6021, - [6022] = 6022, + [6015] = 5962, + [6016] = 5982, + [6017] = 5972, + [6018] = 5967, + [6019] = 5999, + [6020] = 5980, + [6021] = 6014, + [6022] = 6014, [6023] = 6023, - [6024] = 6024, - [6025] = 6025, - [6026] = 6026, - [6027] = 6027, - [6028] = 6028, - [6029] = 6029, - [6030] = 6030, - [6031] = 6031, - [6032] = 6032, - [6033] = 6033, - [6034] = 6034, - [6035] = 6035, - [6036] = 6036, - [6037] = 6037, - [6038] = 6013, - [6039] = 6039, - [6040] = 6040, - [6041] = 6041, - [6042] = 6036, - [6043] = 6034, - [6044] = 6033, - [6045] = 6032, + [6024] = 5999, + [6025] = 5970, + [6026] = 5993, + [6027] = 5961, + [6028] = 5993, + [6029] = 6008, + [6030] = 5965, + [6031] = 5971, + [6032] = 5964, + [6033] = 5967, + [6034] = 5960, + [6035] = 6008, + [6036] = 5977, + [6037] = 5990, + [6038] = 5982, + [6039] = 5968, + [6040] = 5961, + [6041] = 6008, + [6042] = 6042, + [6043] = 5972, + [6044] = 6044, + [6045] = 6045, [6046] = 6046, - [6047] = 6031, - [6048] = 6036, - [6049] = 6034, - [6050] = 6050, - [6051] = 6051, - [6052] = 6023, + [6047] = 5968, + [6048] = 5968, + [6049] = 5965, + [6050] = 5980, + [6051] = 5970, + [6052] = 6014, [6053] = 6053, - [6054] = 6017, - [6055] = 6055, - [6056] = 6016, - [6057] = 6014, - [6058] = 6011, - [6059] = 6046, - [6060] = 6060, - [6061] = 6061, - [6062] = 6009, - [6063] = 6063, - [6064] = 6008, - [6065] = 6013, - [6066] = 6010, + [6054] = 5999, + [6055] = 6008, + [6056] = 5999, + [6057] = 5959, + [6058] = 6058, + [6059] = 5982, + [6060] = 5967, + [6061] = 5959, + [6062] = 5982, + [6063] = 5964, + [6064] = 5986, + [6065] = 5970, + [6066] = 6066, [6067] = 6067, - [6068] = 6068, - [6069] = 6069, - [6070] = 6014, - [6071] = 6016, - [6072] = 6010, - [6073] = 6013, - [6074] = 6074, - [6075] = 6075, - [6076] = 6076, - [6077] = 6077, - [6078] = 6078, - [6079] = 6079, - [6080] = 6080, - [6081] = 6081, - [6082] = 6082, - [6083] = 6083, - [6084] = 6009, - [6085] = 6085, - [6086] = 6086, - [6087] = 6087, - [6088] = 6088, - [6089] = 6089, - [6090] = 6090, - [6091] = 6091, - [6092] = 6092, - [6093] = 6022, - [6094] = 6017, - [6095] = 6095, - [6096] = 6096, - [6097] = 6097, - [6098] = 6091, - [6099] = 6099, - [6100] = 6023, - [6101] = 6101, - [6102] = 6102, - [6103] = 6103, - [6104] = 6010, - [6105] = 6105, - [6106] = 6106, - [6107] = 6107, - [6108] = 6034, - [6109] = 6109, - [6110] = 6036, - [6111] = 6092, - [6112] = 6022, - [6113] = 6095, - [6114] = 6114, + [6068] = 5960, + [6069] = 5962, + [6070] = 5986, + [6071] = 5965, + [6072] = 6008, + [6073] = 5968, + [6074] = 5990, + [6075] = 5971, + [6076] = 5967, + [6077] = 5986, + [6078] = 5993, + [6079] = 5990, + [6080] = 5963, + [6081] = 6014, + [6082] = 5971, + [6083] = 5980, + [6084] = 6084, + [6085] = 5964, + [6086] = 5986, + [6087] = 5960, + [6088] = 5993, + [6089] = 5959, + [6090] = 6008, + [6091] = 5968, + [6092] = 5980, + [6093] = 5959, + [6094] = 5968, + [6095] = 5967, + [6096] = 5993, + [6097] = 5999, + [6098] = 6014, + [6099] = 5970, + [6100] = 5960, + [6101] = 5977, + [6102] = 6014, + [6103] = 5967, + [6104] = 5965, + [6105] = 5999, + [6106] = 5977, + [6107] = 5986, + [6108] = 5968, + [6109] = 5990, + [6110] = 5977, + [6111] = 5993, + [6112] = 6112, + [6113] = 5961, + [6114] = 5971, [6115] = 6115, - [6116] = 6033, - [6117] = 6032, - [6118] = 6118, - [6119] = 6031, + [6116] = 5972, + [6117] = 5977, + [6118] = 5968, + [6119] = 5972, [6120] = 6120, - [6121] = 6016, - [6122] = 6122, - [6123] = 6102, - [6124] = 6124, + [6121] = 5961, + [6122] = 5968, + [6123] = 5961, + [6124] = 5968, [6125] = 6125, - [6126] = 6013, + [6126] = 5972, [6127] = 6127, - [6128] = 6128, - [6129] = 6106, - [6130] = 6107, - [6131] = 6109, - [6132] = 6010, - [6133] = 6133, + [6128] = 5986, + [6129] = 5977, + [6130] = 5962, + [6131] = 5982, + [6132] = 5961, + [6133] = 5972, [6134] = 6134, - [6135] = 6092, - [6136] = 6136, - [6137] = 6137, - [6138] = 6138, - [6139] = 6021, - [6140] = 6022, - [6141] = 6009, - [6142] = 6061, - [6143] = 6143, + [6135] = 6135, + [6136] = 5959, + [6137] = 5965, + [6138] = 5982, + [6139] = 5990, + [6140] = 5970, + [6141] = 6141, + [6142] = 5993, + [6143] = 5962, [6144] = 6144, - [6145] = 6095, + [6145] = 5415, [6146] = 6146, - [6147] = 6147, - [6148] = 6148, - [6149] = 6149, - [6150] = 6150, - [6151] = 6017, - [6152] = 6152, - [6153] = 6091, + [6147] = 5980, + [6148] = 5977, + [6149] = 5972, + [6150] = 6008, + [6151] = 5990, + [6152] = 6014, + [6153] = 5968, [6154] = 6154, - [6155] = 6102, - [6156] = 6023, + [6155] = 5999, + [6156] = 5980, [6157] = 6157, - [6158] = 6158, - [6159] = 6159, - [6160] = 6127, - [6161] = 6161, - [6162] = 6162, - [6163] = 6163, - [6164] = 6034, - [6165] = 6106, - [6166] = 6036, - [6167] = 6107, - [6168] = 6109, - [6169] = 6124, - [6170] = 6170, - [6171] = 6134, - [6172] = 6033, - [6173] = 6032, - [6174] = 6092, - [6175] = 6031, - [6176] = 6176, - [6177] = 6016, - [6178] = 6019, - [6179] = 6021, - [6180] = 6022, - [6181] = 6039, - [6182] = 6061, - [6183] = 6143, - [6184] = 6095, - [6185] = 6146, - [6186] = 6147, - [6187] = 6149, - [6188] = 6009, + [6158] = 6014, + [6159] = 5990, + [6160] = 5982, + [6161] = 5963, + [6162] = 5964, + [6163] = 5967, + [6164] = 5971, + [6165] = 5986, + [6166] = 5965, + [6167] = 5959, + [6168] = 5967, + [6169] = 5962, + [6170] = 5986, + [6171] = 5962, + [6172] = 5963, + [6173] = 5959, + [6174] = 5990, + [6175] = 5962, + [6176] = 6008, + [6177] = 5970, + [6178] = 5980, + [6179] = 5960, + [6180] = 5965, + [6181] = 5964, + [6182] = 5961, + [6183] = 6183, + [6184] = 6184, + [6185] = 6185, + [6186] = 6186, + [6187] = 6184, + [6188] = 6188, [6189] = 6189, - [6190] = 1855, - [6191] = 6091, + [6190] = 6190, + [6191] = 6191, [6192] = 6192, [6193] = 6193, [6194] = 6194, - [6195] = 6017, + [6195] = 6195, [6196] = 6196, - [6197] = 6102, - [6198] = 6143, + [6197] = 6190, + [6198] = 6198, [6199] = 6199, - [6200] = 6023, - [6201] = 6157, - [6202] = 6158, - [6203] = 6203, - [6204] = 6127, - [6205] = 6091, + [6200] = 6200, + [6201] = 6193, + [6202] = 6202, + [6203] = 6194, + [6204] = 6196, + [6205] = 6205, [6206] = 6206, - [6207] = 6106, - [6208] = 6107, - [6209] = 6032, - [6210] = 6109, - [6211] = 6031, - [6212] = 6016, + [6207] = 6207, + [6208] = 6192, + [6209] = 6190, + [6210] = 6210, + [6211] = 6211, + [6212] = 6212, [6213] = 6213, - [6214] = 6124, - [6215] = 6125, - [6216] = 6024, - [6217] = 6025, - [6218] = 6170, - [6219] = 6134, - [6220] = 6026, - [6221] = 6028, - [6222] = 6029, - [6223] = 6009, - [6224] = 6030, - [6225] = 6225, - [6226] = 6092, + [6214] = 6192, + [6215] = 6190, + [6216] = 6216, + [6217] = 6217, + [6218] = 6218, + [6219] = 6219, + [6220] = 6220, + [6221] = 6196, + [6222] = 6222, + [6223] = 6191, + [6224] = 6218, + [6225] = 6190, + [6226] = 6226, [6227] = 6227, - [6228] = 6035, - [6229] = 6095, - [6230] = 6012, - [6231] = 6019, - [6232] = 6021, - [6233] = 6022, - [6234] = 6039, - [6235] = 6146, - [6236] = 6147, - [6237] = 6050, - [6238] = 6032, - [6239] = 6061, - [6240] = 6143, - [6241] = 6095, - [6242] = 6146, - [6243] = 6147, - [6244] = 6009, - [6245] = 6149, + [6228] = 6219, + [6229] = 6226, + [6230] = 6226, + [6231] = 6231, + [6232] = 6226, + [6233] = 6233, + [6234] = 6234, + [6235] = 6235, + [6236] = 6202, + [6237] = 6237, + [6238] = 6211, + [6239] = 6239, + [6240] = 6240, + [6241] = 6198, + [6242] = 6211, + [6243] = 6219, + [6244] = 6244, + [6245] = 6245, [6246] = 6246, - [6247] = 6196, - [6248] = 6193, - [6249] = 6028, - [6250] = 6102, - [6251] = 6157, - [6252] = 6252, - [6253] = 6009, + [6247] = 6247, + [6248] = 6211, + [6249] = 6249, + [6250] = 6250, + [6251] = 6233, + [6252] = 6227, + [6253] = 6226, [6254] = 6254, - [6255] = 6158, - [6256] = 6023, - [6257] = 6203, - [6258] = 6213, - [6259] = 6109, - [6260] = 6127, + [6255] = 6255, + [6256] = 6222, + [6257] = 6218, + [6258] = 6195, + [6259] = 6218, + [6260] = 6213, [6261] = 6261, - [6262] = 6107, - [6263] = 6263, - [6264] = 6264, + [6262] = 6202, + [6263] = 6198, + [6264] = 6212, [6265] = 6265, - [6266] = 6149, - [6267] = 6106, - [6268] = 6206, - [6269] = 6106, - [6270] = 6077, - [6271] = 6107, - [6272] = 6109, - [6273] = 6213, - [6274] = 6274, - [6275] = 6124, - [6276] = 6125, - [6277] = 6213, - [6278] = 6040, - [6279] = 6041, - [6280] = 6037, - [6281] = 6091, + [6266] = 6211, + [6267] = 6185, + [6268] = 6186, + [6269] = 6216, + [6270] = 6233, + [6271] = 6190, + [6272] = 6227, + [6273] = 6233, + [6274] = 6196, + [6275] = 6227, + [6276] = 6184, + [6277] = 6188, + [6278] = 6189, + [6279] = 6279, + [6280] = 6231, + [6281] = 6222, [6282] = 6282, - [6283] = 6193, + [6283] = 6191, [6284] = 6284, - [6285] = 6017, - [6286] = 1844, - [6287] = 6287, - [6288] = 6024, - [6289] = 6289, - [6290] = 6290, - [6291] = 6025, - [6292] = 6196, - [6293] = 6170, - [6294] = 6134, - [6295] = 6295, - [6296] = 6296, - [6297] = 6026, - [6298] = 6298, - [6299] = 6157, - [6300] = 6295, - [6301] = 6193, - [6302] = 6029, - [6303] = 6296, - [6304] = 6304, - [6305] = 6030, - [6306] = 6092, - [6307] = 6035, - [6308] = 6012, - [6309] = 6199, - [6310] = 6034, - [6311] = 6019, - [6312] = 6036, - [6313] = 6021, - [6314] = 6022, - [6315] = 6027, - [6316] = 6020, - [6317] = 6039, - [6318] = 6050, - [6319] = 6061, - [6320] = 6176, - [6321] = 6033, - [6322] = 6192, - [6323] = 6143, - [6324] = 6324, - [6325] = 6095, - [6326] = 6146, - [6327] = 6147, - [6328] = 5150, - [6329] = 6329, - [6330] = 6149, - [6331] = 6011, - [6332] = 6091, - [6333] = 6333, - [6334] = 6193, - [6335] = 6196, - [6336] = 6102, - [6337] = 6102, - [6338] = 6338, + [6285] = 6222, + [6286] = 6193, + [6287] = 6194, + [6288] = 6192, + [6289] = 6195, + [6290] = 6233, + [6291] = 6227, + [6292] = 6292, + [6293] = 6293, + [6294] = 6294, + [6295] = 6265, + [6296] = 6200, + [6297] = 6297, + [6298] = 6213, + [6299] = 6185, + [6300] = 6212, + [6301] = 6200, + [6302] = 6302, + [6303] = 6303, + [6304] = 6297, + [6305] = 6185, + [6306] = 6306, + [6307] = 6186, + [6308] = 6190, + [6309] = 6212, + [6310] = 6186, + [6311] = 6311, + [6312] = 6312, + [6313] = 6313, + [6314] = 6184, + [6315] = 6315, + [6316] = 6316, + [6317] = 6188, + [6318] = 6189, + [6319] = 6319, + [6320] = 6188, + [6321] = 6222, + [6322] = 6322, + [6323] = 6190, + [6324] = 6191, + [6325] = 6279, + [6326] = 6326, + [6327] = 6192, + [6328] = 6328, + [6329] = 6231, + [6330] = 6330, + [6331] = 6293, + [6332] = 6195, + [6333] = 6194, + [6334] = 6196, + [6335] = 6193, + [6336] = 6294, + [6337] = 6200, + [6338] = 6190, [6339] = 6339, - [6340] = 6158, - [6341] = 6341, - [6342] = 6203, - [6343] = 6343, - [6344] = 6127, - [6345] = 6345, - [6346] = 6264, - [6347] = 6265, - [6348] = 6206, - [6349] = 6349, - [6350] = 6350, - [6351] = 6206, - [6352] = 6106, - [6353] = 6107, - [6354] = 6109, - [6355] = 6213, - [6356] = 6124, - [6357] = 6189, - [6358] = 6125, - [6359] = 6359, - [6360] = 6360, - [6361] = 6040, - [6362] = 6041, - [6363] = 6037, - [6364] = 6364, - [6365] = 6012, - [6366] = 6035, - [6367] = 6033, - [6368] = 6368, - [6369] = 6369, - [6370] = 6370, + [6340] = 6340, + [6341] = 6202, + [6342] = 6302, + [6343] = 6303, + [6344] = 6191, + [6345] = 6226, + [6346] = 6279, + [6347] = 6347, + [6348] = 6348, + [6349] = 6193, + [6350] = 6194, + [6351] = 6351, + [6352] = 6352, + [6353] = 6353, + [6354] = 6195, + [6355] = 6211, + [6356] = 6190, + [6357] = 6311, + [6358] = 6195, + [6359] = 6194, + [6360] = 6190, + [6361] = 6193, + [6362] = 6362, + [6363] = 6233, + [6364] = 6227, + [6365] = 6220, + [6366] = 6191, + [6367] = 6189, + [6368] = 6222, + [6369] = 6188, + [6370] = 6184, [6371] = 6371, - [6372] = 6372, - [6373] = 6373, - [6374] = 6374, - [6375] = 6375, - [6376] = 6376, - [6377] = 6377, - [6378] = 6378, - [6379] = 6024, - [6380] = 6380, - [6381] = 6025, - [6382] = 6382, - [6383] = 6383, - [6384] = 6384, - [6385] = 6170, - [6386] = 6134, - [6387] = 6026, - [6388] = 6193, - [6389] = 6389, - [6390] = 6028, - [6391] = 6338, - [6392] = 6029, - [6393] = 6030, - [6394] = 6394, - [6395] = 6107, - [6396] = 6102, - [6397] = 6397, - [6398] = 6398, - [6399] = 6092, - [6400] = 6035, - [6401] = 6401, - [6402] = 6012, - [6403] = 6274, - [6404] = 6333, - [6405] = 6329, - [6406] = 6060, - [6407] = 6304, - [6408] = 6199, - [6409] = 6261, - [6410] = 6263, - [6411] = 6077, - [6412] = 6157, - [6413] = 6213, - [6414] = 6263, - [6415] = 6019, - [6416] = 6282, - [6417] = 6021, - [6418] = 6284, - [6419] = 6419, - [6420] = 6024, - [6421] = 6025, - [6422] = 6289, - [6423] = 6290, - [6424] = 6022, - [6425] = 6027, - [6426] = 6295, - [6427] = 6193, - [6428] = 6039, - [6429] = 6050, - [6430] = 6053, - [6431] = 6055, - [6432] = 6020, - [6433] = 6061, - [6434] = 6176, - [6435] = 6192, - [6436] = 6077, - [6437] = 6032, - [6438] = 6143, - [6439] = 6282, - [6440] = 6225, - [6441] = 6284, - [6442] = 6031, - [6443] = 6289, - [6444] = 6290, - [6445] = 6095, - [6446] = 6295, - [6447] = 6146, - [6448] = 6147, - [6449] = 6149, - [6450] = 6091, - [6451] = 6020, - [6452] = 6193, - [6453] = 6453, - [6454] = 6077, - [6455] = 6196, - [6456] = 6324, - [6457] = 6282, - [6458] = 6261, - [6459] = 6284, - [6460] = 6041, - [6461] = 6289, - [6462] = 6290, - [6463] = 6343, - [6464] = 6295, - [6465] = 6009, - [6466] = 6389, - [6467] = 6338, - [6468] = 6157, - [6469] = 6020, - [6470] = 6470, - [6471] = 6158, - [6472] = 6077, - [6473] = 6203, - [6474] = 6383, - [6475] = 6284, - [6476] = 6127, - [6477] = 6289, - [6478] = 6290, - [6479] = 6264, - [6480] = 6265, - [6481] = 6481, - [6482] = 6020, - [6483] = 6206, - [6484] = 6077, - [6485] = 6158, - [6486] = 6289, - [6487] = 6106, - [6488] = 6289, - [6489] = 6107, - [6490] = 6109, - [6491] = 6213, - [6492] = 6384, - [6493] = 6077, - [6494] = 6252, - [6495] = 6124, - [6496] = 6189, - [6497] = 6125, - [6498] = 6077, - [6499] = 6499, - [6500] = 6290, - [6501] = 6040, - [6502] = 6015, - [6503] = 6085, - [6504] = 6086, - [6505] = 6008, - [6506] = 6037, - [6507] = 6012, - [6508] = 6024, - [6509] = 6025, - [6510] = 6383, - [6511] = 6384, - [6512] = 6170, - [6513] = 6134, - [6514] = 6026, - [6515] = 6028, - [6516] = 6029, - [6517] = 6296, - [6518] = 6030, - [6519] = 6519, - [6520] = 6295, - [6521] = 6227, - [6522] = 6394, - [6523] = 6007, - [6524] = 6375, - [6525] = 6397, - [6526] = 6398, - [6527] = 6170, - [6528] = 6134, - [6529] = 6092, - [6530] = 6035, - [6531] = 6149, - [6532] = 6274, - [6533] = 6026, - [6534] = 6333, - [6535] = 6028, - [6536] = 6029, - [6537] = 6329, - [6538] = 6282, - [6539] = 6030, - [6540] = 6304, - [6541] = 6199, - [6542] = 6265, - [6543] = 6543, - [6544] = 6019, - [6545] = 6021, - [6546] = 6022, - [6547] = 6213, - [6548] = 6027, - [6549] = 6039, - [6550] = 6050, - [6551] = 6264, - [6552] = 6053, - [6553] = 6055, - [6554] = 6061, - [6555] = 6176, - [6556] = 6394, - [6557] = 6007, - [6558] = 6375, - [6559] = 6092, - [6560] = 6284, - [6561] = 6192, - [6562] = 6194, - [6563] = 6143, - [6564] = 6225, - [6565] = 6397, - [6566] = 6095, - [6567] = 6398, - [6568] = 6146, - [6569] = 6147, - [6570] = 6127, - [6571] = 6106, - [6572] = 6091, - [6573] = 6193, - [6574] = 6196, + [6372] = 6313, + [6373] = 6312, + [6374] = 6311, + [6375] = 6312, + [6376] = 6212, + [6377] = 6313, + [6378] = 6303, + [6379] = 6185, + [6380] = 6186, + [6381] = 6381, + [6382] = 6184, + [6383] = 6189, + [6384] = 6188, + [6385] = 6184, + [6386] = 6302, + [6387] = 6313, + [6388] = 6297, + [6389] = 6188, + [6390] = 6189, + [6391] = 6303, + [6392] = 6302, + [6393] = 6393, + [6394] = 6312, + [6395] = 6191, + [6396] = 6200, + [6397] = 6311, + [6398] = 6193, + [6399] = 6194, + [6400] = 6400, + [6401] = 6195, + [6402] = 6190, + [6403] = 6294, + [6404] = 6293, + [6405] = 6186, + [6406] = 6185, + [6407] = 6407, + [6408] = 6200, + [6409] = 6188, + [6410] = 6410, + [6411] = 6411, + [6412] = 6186, + [6413] = 6185, + [6414] = 6414, + [6415] = 6297, + [6416] = 6212, + [6417] = 6189, + [6418] = 6297, + [6419] = 6235, + [6420] = 6231, + [6421] = 6231, + [6422] = 6422, + [6423] = 6192, + [6424] = 6196, + [6425] = 6212, + [6426] = 6279, + [6427] = 6427, + [6428] = 6218, + [6429] = 6429, + [6430] = 6222, + [6431] = 6211, + [6432] = 6190, + [6433] = 6233, + [6434] = 6227, + [6435] = 6435, + [6436] = 6196, + [6437] = 6437, + [6438] = 6212, + [6439] = 6220, + [6440] = 6227, + [6441] = 6184, + [6442] = 6188, + [6443] = 6189, + [6444] = 6222, + [6445] = 6233, + [6446] = 6265, + [6447] = 6193, + [6448] = 6194, + [6449] = 6211, + [6450] = 6227, + [6451] = 6200, + [6452] = 6452, + [6453] = 6233, + [6454] = 6198, + [6455] = 6202, + [6456] = 6190, + [6457] = 6191, + [6458] = 6458, + [6459] = 6192, + [6460] = 6211, + [6461] = 6461, + [6462] = 6429, + [6463] = 6198, + [6464] = 6226, + [6465] = 6465, + [6466] = 6211, + [6467] = 6192, + [6468] = 6212, + [6469] = 6193, + [6470] = 6212, + [6471] = 6184, + [6472] = 6188, + [6473] = 6189, + [6474] = 6255, + [6475] = 6193, + [6476] = 6194, + [6477] = 6196, + [6478] = 6190, + [6479] = 6200, + [6480] = 6480, + [6481] = 6213, + [6482] = 6190, + [6483] = 6483, + [6484] = 6484, + [6485] = 6218, + [6486] = 6193, + [6487] = 6219, + [6488] = 6194, + [6489] = 6226, + [6490] = 6490, + [6491] = 6491, + [6492] = 6196, + [6493] = 6211, + [6494] = 6235, + [6495] = 6184, + [6496] = 6188, + [6497] = 6189, + [6498] = 6219, + [6499] = 6218, + [6500] = 6195, + [6501] = 6213, + [6502] = 6190, + [6503] = 6226, + [6504] = 6504, + [6505] = 6297, + [6506] = 6202, + [6507] = 6198, + [6508] = 6192, + [6509] = 6211, + [6510] = 6211, + [6511] = 6511, + [6512] = 6184, + [6513] = 6188, + [6514] = 6189, + [6515] = 6190, + [6516] = 6235, + [6517] = 6517, + [6518] = 6233, + [6519] = 6227, + [6520] = 6196, + [6521] = 6521, + [6522] = 6235, + [6523] = 6189, + [6524] = 6303, + [6525] = 6222, + [6526] = 6211, + [6527] = 6185, + [6528] = 6184, + [6529] = 6188, + [6530] = 6189, + [6531] = 6531, + [6532] = 6532, + [6533] = 6302, + [6534] = 6265, + [6535] = 6192, + [6536] = 6186, + [6537] = 6212, + [6538] = 6297, + [6539] = 6211, + [6540] = 6200, + [6541] = 6184, + [6542] = 6188, + [6543] = 6189, + [6544] = 6544, + [6545] = 6545, + [6546] = 6185, + [6547] = 6547, + [6548] = 6548, + [6549] = 6186, + [6550] = 6211, + [6551] = 6190, + [6552] = 6184, + [6553] = 6188, + [6554] = 6189, + [6555] = 6184, + [6556] = 6293, + [6557] = 6557, + [6558] = 6294, + [6559] = 6313, + [6560] = 6311, + [6561] = 6312, + [6562] = 6562, + [6563] = 6312, + [6564] = 6200, + [6565] = 6265, + [6566] = 6313, + [6567] = 6567, + [6568] = 6294, + [6569] = 6184, + [6570] = 6188, + [6571] = 6235, + [6572] = 6572, + [6573] = 6293, + [6574] = 6189, [6575] = 6575, - [6576] = 6324, - [6577] = 6102, - [6578] = 6343, - [6579] = 6579, - [6580] = 6389, - [6581] = 6015, - [6582] = 6085, - [6583] = 6086, - [6584] = 6037, - [6585] = 6014, - [6586] = 6041, - [6587] = 6296, - [6588] = 6338, - [6589] = 6227, - [6590] = 6040, - [6591] = 6157, - [6592] = 6015, - [6593] = 6085, - [6594] = 6086, - [6595] = 6125, - [6596] = 6296, - [6597] = 6158, - [6598] = 6227, + [6576] = 6220, + [6577] = 6577, + [6578] = 6578, + [6579] = 6200, + [6580] = 6311, + [6581] = 6302, + [6582] = 6582, + [6583] = 6303, + [6584] = 6220, + [6585] = 6191, + [6586] = 6195, + [6587] = 6231, + [6588] = 6293, + [6589] = 6279, + [6590] = 6294, + [6591] = 6194, + [6592] = 6190, + [6593] = 6279, + [6594] = 6235, + [6595] = 6595, + [6596] = 6596, + [6597] = 6597, + [6598] = 6598, [6599] = 6599, - [6600] = 6016, - [6601] = 6015, - [6602] = 6085, - [6603] = 6086, - [6604] = 6189, - [6605] = 6296, - [6606] = 6203, - [6607] = 6227, - [6608] = 6127, - [6609] = 6085, - [6610] = 6086, - [6611] = 6264, - [6612] = 6296, - [6613] = 6227, - [6614] = 6085, - [6615] = 6086, - [6616] = 6296, - [6617] = 6296, - [6618] = 6015, - [6619] = 6481, - [6620] = 6265, - [6621] = 6124, - [6622] = 6203, - [6623] = 6481, - [6624] = 6252, - [6625] = 6481, - [6626] = 6213, - [6627] = 6481, - [6628] = 6109, - [6629] = 6481, - [6630] = 6206, + [6600] = 6600, + [6601] = 6597, + [6602] = 6602, + [6603] = 6599, + [6604] = 6604, + [6605] = 6605, + [6606] = 6606, + [6607] = 6607, + [6608] = 6608, + [6609] = 6605, + [6610] = 6606, + [6611] = 6611, + [6612] = 6598, + [6613] = 6613, + [6614] = 6605, + [6615] = 6615, + [6616] = 6616, + [6617] = 6611, + [6618] = 6618, + [6619] = 6619, + [6620] = 6613, + [6621] = 6613, + [6622] = 6615, + [6623] = 6616, + [6624] = 6613, + [6625] = 6625, + [6626] = 6613, + [6627] = 6627, + [6628] = 6628, + [6629] = 6628, + [6630] = 6615, + [6631] = 6607, + [6632] = 6632, + [6633] = 6628, + [6634] = 6634, + [6635] = 6635, + [6636] = 6628, + [6637] = 6628, + [6638] = 6608, + [6639] = 6639, + [6640] = 6625, + [6641] = 6628, + [6642] = 6642, + [6643] = 6628, + [6644] = 6644, + [6645] = 6645, + [6646] = 6628, + [6647] = 6647, + [6648] = 6648, + [6649] = 6649, + [6650] = 6650, + [6651] = 6651, + [6652] = 6628, + [6653] = 6653, + [6654] = 6654, + [6655] = 6655, + [6656] = 6656, + [6657] = 6657, + [6658] = 6658, + [6659] = 6659, + [6660] = 6660, + [6661] = 6642, + [6662] = 6632, + [6663] = 6628, + [6664] = 6654, + [6665] = 6665, + [6666] = 6608, + [6667] = 6639, + [6668] = 6595, + [6669] = 6654, + [6670] = 6670, + [6671] = 6671, + [6672] = 6672, + [6673] = 6628, + [6674] = 6674, + [6675] = 6654, + [6676] = 6676, + [6677] = 6677, + [6678] = 6613, + [6679] = 6600, + [6680] = 6680, + [6681] = 6615, + [6682] = 6644, + [6683] = 6683, + [6684] = 6684, + [6685] = 6685, + [6686] = 6653, + [6687] = 6607, + [6688] = 6688, + [6689] = 6671, + [6690] = 6690, + [6691] = 6649, + [6692] = 6692, + [6693] = 6659, + [6694] = 6694, + [6695] = 6628, + [6696] = 6696, + [6697] = 6697, + [6698] = 6619, + [6699] = 6660, + [6700] = 6700, + [6701] = 6701, + [6702] = 6671, + [6703] = 6703, + [6704] = 6700, + [6705] = 6683, + [6706] = 6700, + [6707] = 6703, + [6708] = 6671, + [6709] = 6688, + [6710] = 442, + [6711] = 6711, + [6712] = 6683, + [6713] = 6701, + [6714] = 6714, + [6715] = 6703, + [6716] = 6701, + [6717] = 6642, + [6718] = 6659, + [6719] = 6696, + [6720] = 6595, + [6721] = 6628, + [6722] = 6649, + [6723] = 6607, + [6724] = 6696, + [6725] = 6628, + [6726] = 6692, + [6727] = 6597, + [6728] = 6728, + [6729] = 6729, + [6730] = 6649, + [6731] = 407, + [6732] = 6659, + [6733] = 6680, + [6734] = 6642, + [6735] = 6676, + [6736] = 6736, + [6737] = 6670, + [6738] = 6670, + [6739] = 6616, + [6740] = 6680, + [6741] = 6676, + [6742] = 6700, + [6743] = 6654, + [6744] = 6615, + [6745] = 6660, + [6746] = 6653, + [6747] = 6660, + [6748] = 6654, + [6749] = 6632, + [6750] = 6654, + [6751] = 6595, + [6752] = 6632, + [6753] = 6615, + [6754] = 6676, + [6755] = 6639, + [6756] = 6597, + [6757] = 6692, + [6758] = 6607, + [6759] = 6680, + [6760] = 6760, + [6761] = 6650, + [6762] = 6649, + [6763] = 6644, + [6764] = 6659, + [6765] = 6642, + [6766] = 6653, + [6767] = 6644, + [6768] = 6653, + [6769] = 6671, + [6770] = 6703, + [6771] = 6696, + [6772] = 6701, + [6773] = 6660, + [6774] = 6595, + [6775] = 6654, + [6776] = 6696, + [6777] = 6628, + [6778] = 6778, + [6779] = 6615, + [6780] = 6639, + [6781] = 6608, + [6782] = 6782, + [6783] = 6670, + [6784] = 6632, + [6785] = 6676, + [6786] = 6680, + [6787] = 6656, + [6788] = 6680, + [6789] = 6676, + [6790] = 6790, + [6791] = 6656, + [6792] = 6654, + [6793] = 6595, + [6794] = 6794, + [6795] = 6598, + [6796] = 6660, + [6797] = 6653, + [6798] = 6625, + [6799] = 6628, + [6800] = 6800, + [6801] = 6632, + [6802] = 6802, + [6803] = 6803, + [6804] = 6696, + [6805] = 6665, + [6806] = 6656, + [6807] = 6615, + [6808] = 6701, + [6809] = 6700, + [6810] = 6597, + [6811] = 6619, + [6812] = 6607, + [6813] = 6703, + [6814] = 6649, + [6815] = 6659, + [6816] = 6642, + [6817] = 6671, + [6818] = 6598, + [6819] = 6688, + [6820] = 6671, + [6821] = 6703, + [6822] = 6700, + [6823] = 6701, + [6824] = 6665, + [6825] = 6665, + [6826] = 6656, + [6827] = 6628, + [6828] = 6615, + [6829] = 6627, + [6830] = 6619, + [6831] = 6642, + [6832] = 6659, + [6833] = 6599, + [6834] = 6649, + [6835] = 6598, + [6836] = 6606, + [6837] = 6611, + [6838] = 6605, + [6839] = 6628, + [6840] = 6611, + [6841] = 6696, + [6842] = 6842, + [6843] = 6598, + [6844] = 6680, + [6845] = 6845, + [6846] = 6676, + [6847] = 6616, + [6848] = 6848, + [6849] = 6654, + [6850] = 6595, + [6851] = 6665, + [6852] = 6660, + [6853] = 6653, + [6854] = 6656, + [6855] = 6600, + [6856] = 6607, + [6857] = 6608, + [6858] = 6605, + [6859] = 6632, + [6860] = 6619, + [6861] = 6597, + [6862] = 6598, + [6863] = 6611, + [6864] = 6619, + [6865] = 6615, + [6866] = 6866, + [6867] = 6683, + [6868] = 6665, + [6869] = 6656, + [6870] = 6870, + [6871] = 6871, + [6872] = 6616, + [6873] = 6597, + [6874] = 6874, + [6875] = 6650, + [6876] = 6650, + [6877] = 6615, + [6878] = 6619, + [6879] = 6598, + [6880] = 6656, + [6881] = 6611, + [6882] = 6607, + [6883] = 6606, + [6884] = 6597, + [6885] = 6692, + [6886] = 6649, + [6887] = 6659, + [6888] = 6665, + [6889] = 6642, + [6890] = 6665, + [6891] = 6632, + [6892] = 6656, + [6893] = 6671, + [6894] = 6632, + [6895] = 6639, + [6896] = 6703, + [6897] = 6700, + [6898] = 6650, + [6899] = 6701, + [6900] = 6644, + [6901] = 6653, + [6902] = 6619, + [6903] = 6660, + [6904] = 6696, + [6905] = 6905, + [6906] = 6628, + [6907] = 6907, + [6908] = 6595, + [6909] = 6654, + [6910] = 6608, + [6911] = 6670, + [6912] = 6912, + [6913] = 6676, + [6914] = 6680, + [6915] = 6915, + [6916] = 6598, + [6917] = 6611, + [6918] = 6605, + [6919] = 6606, + [6920] = 6599, + [6921] = 6628, + [6922] = 6696, + [6923] = 6701, + [6924] = 6700, + [6925] = 6925, + [6926] = 6703, + [6927] = 6671, + [6928] = 6688, + [6929] = 6642, + [6930] = 6701, + [6931] = 6688, + [6932] = 6671, + [6933] = 6700, + [6934] = 6680, + [6935] = 6676, + [6936] = 6659, + [6937] = 6649, + [6938] = 6703, + [6939] = 6654, + [6940] = 6595, + [6941] = 6665, + [6942] = 6660, + [6943] = 6653, + [6944] = 6607, + [6945] = 6656, + [6946] = 6650, + [6947] = 6598, + [6948] = 6619, + [6949] = 6599, + [6950] = 6608, + [6951] = 6597, + [6952] = 6606, + [6953] = 6639, + [6954] = 6605, + [6955] = 6615, + [6956] = 6611, + [6957] = 6616, + [6958] = 6958, + [6959] = 6959, + [6960] = 6960, + [6961] = 6961, + [6962] = 6962, + [6963] = 6963, + [6964] = 6964, + [6965] = 6965, + [6966] = 6966, + [6967] = 6967, + [6968] = 6968, + [6969] = 6969, + [6970] = 6970, + [6971] = 6971, + [6972] = 6972, + [6973] = 6973, + [6974] = 6974, + [6975] = 6975, + [6976] = 6976, + [6977] = 6977, + [6978] = 6978, + [6979] = 6979, + [6980] = 6958, + [6981] = 6981, + [6982] = 6982, + [6983] = 6983, + [6984] = 6984, + [6985] = 6985, + [6986] = 6986, + [6987] = 6987, + [6988] = 6988, + [6989] = 6989, + [6990] = 6990, + [6991] = 6991, + [6992] = 6992, + [6993] = 6993, + [6994] = 6994, + [6995] = 6995, + [6996] = 6996, + [6997] = 6997, + [6998] = 6998, + [6999] = 6999, + [7000] = 7000, + [7001] = 7001, + [7002] = 7002, + [7003] = 7003, + [7004] = 7004, + [7005] = 6971, + [7006] = 6985, + [7007] = 7007, + [7008] = 7008, + [7009] = 7008, + [7010] = 7010, + [7011] = 7011, + [7012] = 6973, + [7013] = 7013, + [7014] = 7014, + [7015] = 7015, + [7016] = 7016, + [7017] = 6990, + [7018] = 7018, + [7019] = 7019, + [7020] = 7020, + [7021] = 7021, + [7022] = 7022, + [7023] = 7020, + [7024] = 7021, + [7025] = 7011, + [7026] = 7026, + [7027] = 7002, + [7028] = 7028, + [7029] = 7026, + [7030] = 7030, + [7031] = 7000, + [7032] = 7032, + [7033] = 6998, + [7034] = 7007, + [7035] = 6995, + [7036] = 6991, + [7037] = 6974, + [7038] = 7038, + [7039] = 7039, + [7040] = 7040, + [7041] = 7041, + [7042] = 7018, + [7043] = 7039, + [7044] = 7041, + [7045] = 6963, + [7046] = 7016, + [7047] = 6966, + [7048] = 7048, + [7049] = 7019, + [7050] = 6985, + [7051] = 7001, + [7052] = 6967, + [7053] = 7053, + [7054] = 7004, + [7055] = 7055, + [7056] = 6999, + [7057] = 7013, + [7058] = 7040, + [7059] = 7059, + [7060] = 7060, + [7061] = 7010, + [7062] = 6997, + [7063] = 7038, + [7064] = 6971, + [7065] = 7032, + [7066] = 6978, + [7067] = 6988, + [7068] = 6981, + [7069] = 7069, + [7070] = 6960, + [7071] = 6961, + [7072] = 6962, + [7073] = 7026, + [7074] = 6986, + [7075] = 6984, + [7076] = 6990, + [7077] = 7007, + [7078] = 7078, + [7079] = 6964, + [7080] = 6965, + [7081] = 6993, + [7082] = 7082, + [7083] = 6988, + [7084] = 7084, + [7085] = 7085, + [7086] = 7086, + [7087] = 7087, + [7088] = 7088, + [7089] = 7089, + [7090] = 7090, + [7091] = 6971, + [7092] = 7092, + [7093] = 7093, + [7094] = 7094, + [7095] = 7010, + [7096] = 7096, + [7097] = 7097, + [7098] = 7013, + [7099] = 7099, + [7100] = 7004, + [7101] = 7016, + [7102] = 6993, + [7103] = 7018, + [7104] = 7104, + [7105] = 7021, + [7106] = 7106, + [7107] = 7020, + [7108] = 7108, + [7109] = 7011, + [7110] = 7110, + [7111] = 7002, + [7112] = 7112, + [7113] = 7113, + [7114] = 7114, + [7115] = 7000, + [7116] = 7116, + [7117] = 6998, + [7118] = 6995, + [7119] = 6996, + [7120] = 7120, + [7121] = 6963, + [7122] = 6994, + [7123] = 6989, + [7124] = 6968, + [7125] = 7125, + [7126] = 7126, + [7127] = 7127, + [7128] = 6969, + [7129] = 7129, + [7130] = 6970, + [7131] = 7131, + [7132] = 6987, + [7133] = 6986, + [7134] = 6978, + [7135] = 7135, + [7136] = 6972, + [7137] = 7137, + [7138] = 7138, + [7139] = 7139, + [7140] = 7140, + [7141] = 6983, + [7142] = 6986, + [7143] = 6958, + [7144] = 6982, + [7145] = 7145, + [7146] = 7146, + [7147] = 7147, + [7148] = 6993, + [7149] = 7149, + [7150] = 2211, + [7151] = 7151, + [7152] = 6972, + [7153] = 7153, + [7154] = 6975, + [7155] = 7028, + [7156] = 6971, + [7157] = 6976, + [7158] = 6977, + [7159] = 7016, + [7160] = 7003, + [7161] = 7018, + [7162] = 7002, + [7163] = 6995, + [7164] = 6978, + [7165] = 6969, + [7166] = 6983, + [7167] = 6968, + [7168] = 7168, + [7169] = 7169, + [7170] = 6987, + [7171] = 6989, + [7172] = 6966, + [7173] = 6977, + [7174] = 6978, + [7175] = 6964, + [7176] = 6976, + [7177] = 6975, + [7178] = 6960, + [7179] = 7179, + [7180] = 7180, + [7181] = 7181, + [7182] = 7030, + [7183] = 7183, + [7184] = 7184, + [7185] = 6991, + [7186] = 7032, + [7187] = 6997, + [7188] = 7188, + [7189] = 6999, + [7190] = 7190, + [7191] = 6967, + [7192] = 6974, + [7193] = 7016, + [7194] = 6994, + [7195] = 6995, + [7196] = 6963, + [7197] = 7039, + [7198] = 6996, + [7199] = 7139, + [7200] = 7041, + [7201] = 7003, + [7202] = 7202, + [7203] = 7203, + [7204] = 7040, + [7205] = 7205, + [7206] = 6978, + [7207] = 7207, + [7208] = 7038, + [7209] = 7209, + [7210] = 7038, + [7211] = 6972, + [7212] = 6966, + [7213] = 6995, + [7214] = 7214, + [7215] = 7038, + [7216] = 6973, + [7217] = 7032, + [7218] = 7218, + [7219] = 7004, + [7220] = 6985, + [7221] = 7007, + [7222] = 7008, + [7223] = 7040, + [7224] = 7041, + [7225] = 7016, + [7226] = 7026, + [7227] = 6995, + [7228] = 7007, + [7229] = 6985, + [7230] = 6973, + [7231] = 6969, + [7232] = 6990, + [7233] = 6968, + [7234] = 2214, + [7235] = 6994, + [7236] = 6989, + [7237] = 6978, + [7238] = 7238, + [7239] = 7014, + [7240] = 7240, + [7241] = 7015, + [7242] = 6972, + [7243] = 7026, + [7244] = 6966, + [7245] = 7028, + [7246] = 6969, + [7247] = 7030, + [7248] = 7032, + [7249] = 6968, + [7250] = 6966, + [7251] = 7251, + [7252] = 6960, + [7253] = 7016, + [7254] = 6968, + [7255] = 6988, + [7256] = 7256, + [7257] = 6993, + [7258] = 7258, + [7259] = 6997, + [7260] = 7040, + [7261] = 7039, + [7262] = 7041, + [7263] = 6965, + [7264] = 7039, + [7265] = 6964, + [7266] = 6999, + [7267] = 6974, + [7268] = 7019, + [7269] = 7001, + [7270] = 7270, + [7271] = 6974, + [7272] = 7272, + [7273] = 7273, + [7274] = 7274, + [7275] = 7275, + [7276] = 7039, + [7277] = 6999, + [7278] = 7278, + [7279] = 7041, + [7280] = 6974, + [7281] = 7040, + [7282] = 7282, + [7283] = 6962, + [7284] = 6961, + [7285] = 6960, + [7286] = 7038, + [7287] = 6970, + [7288] = 7060, + [7289] = 7032, + [7290] = 6997, + [7291] = 7069, + [7292] = 7026, + [7293] = 7209, + [7294] = 7294, + [7295] = 7295, + [7296] = 7296, + [7297] = 7019, + [7298] = 7007, + [7299] = 6986, + [7300] = 6988, + [7301] = 6985, + [7302] = 7302, + [7303] = 7303, + [7304] = 7304, + [7305] = 6988, + [7306] = 7306, + [7307] = 7001, + [7308] = 7308, + [7309] = 7069, + [7310] = 7310, + [7311] = 7207, + [7312] = 7312, + [7313] = 7205, + [7314] = 7308, + [7315] = 7019, + [7316] = 7295, + [7317] = 6970, + [7318] = 6960, + [7319] = 7310, + [7320] = 7203, + [7321] = 6994, + [7322] = 6961, + [7323] = 6962, + [7324] = 6989, + [7325] = 6997, + [7326] = 6984, + [7327] = 6958, + [7328] = 6981, + [7329] = 6972, + [7330] = 6969, + [7331] = 6964, + [7332] = 7053, + [7333] = 7060, + [7334] = 6968, + [7335] = 6965, + [7336] = 6966, + [7337] = 7048, + [7338] = 6972, + [7339] = 7339, + [7340] = 6969, + [7341] = 6970, + [7342] = 7021, + [7343] = 7069, + [7344] = 6988, + [7345] = 7345, + [7346] = 7275, + [7347] = 6997, + [7348] = 5949, + [7349] = 7349, + [7350] = 6982, + [7351] = 7139, + [7352] = 6999, + [7353] = 6998, + [7354] = 6999, + [7355] = 6999, + [7356] = 6974, + [7357] = 7275, + [7358] = 6975, + [7359] = 6976, + [7360] = 6977, + [7361] = 7000, + [7362] = 7362, + [7363] = 7039, + [7364] = 7349, + [7365] = 7365, + [7366] = 7002, + [7367] = 7011, + [7368] = 7368, + [7369] = 6959, + [7370] = 7001, + [7371] = 7041, + [7372] = 7019, + [7373] = 6974, + [7374] = 7039, + [7375] = 7019, + [7376] = 7376, + [7377] = 6958, + [7378] = 6983, + [7379] = 6998, + [7380] = 7041, + [7381] = 7000, + [7382] = 7040, + [7383] = 7383, + [7384] = 7384, + [7385] = 7385, + [7386] = 7386, + [7387] = 7387, + [7388] = 7388, + [7389] = 7389, + [7390] = 7390, + [7391] = 7391, + [7392] = 7392, + [7393] = 7393, + [7394] = 7394, + [7395] = 7038, + [7396] = 7396, + [7397] = 7272, + [7398] = 7274, + [7399] = 7214, + [7400] = 7282, + [7401] = 7401, + [7402] = 6970, + [7403] = 7020, + [7404] = 7168, + [7405] = 7294, + [7406] = 7169, + [7407] = 7296, + [7408] = 7060, + [7409] = 6987, + [7410] = 7410, + [7411] = 6989, + [7412] = 7302, + [7413] = 7303, + [7414] = 7002, + [7415] = 7040, + [7416] = 7011, + [7417] = 7032, + [7418] = 7308, + [7419] = 7019, + [7420] = 7295, + [7421] = 7020, + [7422] = 7032, + [7423] = 7021, + [7424] = 6984, + [7425] = 7030, + [7426] = 6981, + [7427] = 7028, + [7428] = 7038, + [7429] = 7179, + [7430] = 7053, + [7431] = 7180, + [7432] = 7184, + [7433] = 7048, + [7434] = 7188, + [7435] = 7339, + [7436] = 7190, + [7437] = 6994, + [7438] = 6996, + [7439] = 7013, + [7440] = 7282, + [7441] = 7026, + [7442] = 7010, + [7443] = 7294, + [7444] = 7296, + [7445] = 7015, + [7446] = 7446, + [7447] = 7302, + [7448] = 7303, + [7449] = 7014, + [7450] = 7013, + [7451] = 7048, + [7452] = 7295, + [7453] = 7018, + [7454] = 7016, + [7455] = 6997, + [7456] = 6984, + [7457] = 7203, + [7458] = 6981, + [7459] = 7205, + [7460] = 7207, + [7461] = 7053, + [7462] = 7048, + [7463] = 7209, + [7464] = 7048, + [7465] = 7339, + [7466] = 6959, + [7467] = 7003, + [7468] = 7468, + [7469] = 7469, + [7470] = 7282, + [7471] = 7026, + [7472] = 7013, + [7473] = 7294, + [7474] = 7296, + [7475] = 6990, + [7476] = 7004, + [7477] = 7302, + [7478] = 7303, + [7479] = 6985, + [7480] = 7007, + [7481] = 7295, + [7482] = 7008, + [7483] = 6996, + [7484] = 7010, + [7485] = 6984, + [7486] = 6973, + [7487] = 6981, + [7488] = 6973, + [7489] = 6990, + [7490] = 7053, + [7491] = 7339, + [7492] = 7492, + [7493] = 7048, + [7494] = 7339, + [7495] = 7495, + [7496] = 6978, + [7497] = 7014, + [7498] = 7282, + [7499] = 7007, + [7500] = 7015, + [7501] = 7294, + [7502] = 7296, + [7503] = 7026, + [7504] = 7028, + [7505] = 7302, + [7506] = 7303, + [7507] = 7295, + [7508] = 7183, + [7509] = 7030, + [7510] = 7032, + [7511] = 7053, + [7512] = 7339, + [7513] = 7010, + [7514] = 7282, + [7515] = 6971, + [7516] = 6985, + [7517] = 6981, + [7518] = 7302, + [7519] = 6984, + [7520] = 7214, + [7521] = 6994, + [7522] = 7038, + [7523] = 7282, + [7524] = 7022, + [7525] = 7040, + [7526] = 7303, + [7527] = 7302, + [7528] = 7041, + [7529] = 7008, + [7530] = 7007, + [7531] = 7531, + [7532] = 7282, + [7533] = 7302, + [7534] = 6988, + [7535] = 6985, + [7536] = 7302, + [7537] = 7004, + [7538] = 7039, + [7539] = 6989, + [7540] = 6974, + [7541] = 7541, + [7542] = 7019, + [7543] = 7001, + [7544] = 7544, + [7545] = 7003, + [7546] = 6994, + [7547] = 7016, + [7548] = 7548, + [7549] = 7549, + [7550] = 7550, + [7551] = 6983, + [7552] = 7018, + [7553] = 7275, + [7554] = 6999, + [7555] = 7069, + [7556] = 7556, + [7557] = 7349, + [7558] = 7209, + [7559] = 6994, + [7560] = 7310, + [7561] = 7207, + [7562] = 6960, + [7563] = 7308, + [7564] = 7258, + [7565] = 7205, + [7566] = 7007, + [7567] = 7203, + [7568] = 7060, + [7569] = 6994, + [7570] = 7296, + [7571] = 6961, + [7572] = 6962, + [7573] = 7294, + [7574] = 7000, + [7575] = 7575, + [7576] = 6997, + [7577] = 7577, + [7578] = 6993, + [7579] = 7007, + [7580] = 6994, + [7581] = 6998, + [7582] = 6986, + [7583] = 7010, + [7584] = 7013, + [7585] = 7168, + [7586] = 7169, + [7587] = 6996, + [7588] = 6988, + [7589] = 6970, + [7590] = 6964, + [7591] = 7591, + [7592] = 7181, + [7593] = 6982, + [7594] = 6983, + [7595] = 7011, + [7596] = 7069, + [7597] = 6960, + [7598] = 6961, + [7599] = 6962, + [7600] = 7190, + [7601] = 7188, + [7602] = 7184, + [7603] = 7180, + [7604] = 6987, + [7605] = 7179, + [7606] = 7606, + [7607] = 6965, + [7608] = 6989, + [7609] = 7609, + [7610] = 7446, + [7611] = 7611, + [7612] = 6966, + [7613] = 7021, + [7614] = 6968, + [7615] = 6969, + [7616] = 6970, + [7617] = 7218, + [7618] = 6964, + [7619] = 7619, + [7620] = 6972, + [7621] = 7020, + [7622] = 7011, + [7623] = 7002, + [7624] = 7624, + [7625] = 7548, + [7626] = 7549, + [7627] = 7550, + [7628] = 6995, + [7629] = 6965, + [7630] = 6991, + [7631] = 6989, + [7632] = 7310, + [7633] = 7139, + [7634] = 6987, + [7635] = 7308, + [7636] = 7258, + [7637] = 6966, + [7638] = 7638, + [7639] = 6968, + [7640] = 6969, + [7641] = 6970, + [7642] = 7549, + [7643] = 7550, + [7644] = 7644, + [7645] = 7190, + [7646] = 7218, + [7647] = 7310, + [7648] = 7169, + [7649] = 7308, + [7650] = 7258, + [7651] = 7651, + [7652] = 6972, + [7653] = 7168, + [7654] = 6967, + [7655] = 7549, + [7656] = 7550, + [7657] = 7188, + [7658] = 7658, + [7659] = 6978, + [7660] = 7310, + [7661] = 7550, + [7662] = 7308, + [7663] = 7258, + [7664] = 7139, + [7665] = 7549, + [7666] = 7000, + [7667] = 7667, + [7668] = 7549, + [7669] = 7550, + [7670] = 6963, + [7671] = 6998, + [7672] = 7310, + [7673] = 7258, + [7674] = 7674, + [7675] = 7549, + [7676] = 7550, + [7677] = 7310, + [7678] = 7549, + [7679] = 7550, + [7680] = 7310, + [7681] = 7549, + [7682] = 7550, + [7683] = 7310, + [7684] = 7310, + [7685] = 7548, + [7686] = 7686, + [7687] = 7531, + [7688] = 7282, + [7689] = 6958, + [7690] = 7184, + [7691] = 6975, + [7692] = 7548, + [7693] = 7686, + [7694] = 7531, + [7695] = 7695, + [7696] = 7686, + [7697] = 6963, + [7698] = 6975, + [7699] = 7548, + [7700] = 7686, + [7701] = 7531, + [7702] = 6976, + [7703] = 7548, + [7704] = 7180, + [7705] = 7548, + [7706] = 7686, + [7707] = 7531, + [7708] = 6977, + [7709] = 7179, + [7710] = 6976, + [7711] = 7686, + [7712] = 7531, + [7713] = 6967, + [7714] = 7714, + [7715] = 7274, + [7716] = 7021, + [7717] = 6977, + [7718] = 7272, + [7719] = 7181, + [7720] = 6991, + [7721] = 7020, + [7722] = 6995, + [7723] = 7695, + [7724] = 7695, + [7725] = 7695, + [7726] = 7695, + [7727] = 7695, }; +static inline bool sym_identifier_character_set_1(int32_t c) { + return (c < 43588 + ? (c < 4186 + ? (c < 2674 + ? (c < 1808 + ? (c < 895 + ? (c < 186 + ? (c < 'o' + ? (c < 'e' + ? (c < 'a' + ? (c >= 'A' && c <= '_') + : c <= 'a') + : (c <= 'e' || (c < 'j' + ? (c >= 'g' && c <= 'h') + : c <= 'l'))) + : (c <= 'o' || (c < 170 + ? (c < 'w' + ? (c >= 'q' && c <= 'r') + : c <= 'z') + : (c <= 170 || c == 181)))) + : (c <= 186 || (c < 748 + ? (c < 248 + ? (c < 216 + ? (c >= 192 && c <= 214) + : c <= 246) + : (c <= 705 || (c < 736 + ? (c >= 710 && c <= 721) + : c <= 740))) + : (c <= 748 || (c < 886 + ? (c < 880 + ? c == 750 + : c <= 884) + : (c <= 887 || (c >= 891 && c <= 893))))))) + : (c <= 895 || (c < 1488 + ? (c < 1015 + ? (c < 908 + ? (c < 904 + ? c == 902 + : c <= 906) + : (c <= 908 || (c < 931 + ? (c >= 910 && c <= 929) + : c <= 1013))) + : (c <= 1153 || (c < 1369 + ? (c < 1329 + ? (c >= 1162 && c <= 1327) + : c <= 1366) + : (c <= 1369 || (c >= 1376 && c <= 1416))))) + : (c <= 1514 || (c < 1749 + ? (c < 1646 + ? (c < 1568 + ? (c >= 1519 && c <= 1522) + : c <= 1610) + : (c <= 1647 || (c >= 1649 && c <= 1747))) + : (c <= 1749 || (c < 1786 + ? (c < 1774 + ? (c >= 1765 && c <= 1766) + : c <= 1775) + : (c <= 1788 || c == 1791)))))))) + : (c <= 1808 || (c < 2437 + ? (c < 2112 + ? (c < 2042 + ? (c < 1969 + ? (c < 1869 + ? (c >= 1810 && c <= 1839) + : c <= 1957) + : (c <= 1969 || (c < 2036 + ? (c >= 1994 && c <= 2026) + : c <= 2037))) + : (c <= 2042 || (c < 2084 + ? (c < 2074 + ? (c >= 2048 && c <= 2069) + : c <= 2074) + : (c <= 2084 || c == 2088)))) + : (c <= 2136 || (c < 2308 + ? (c < 2185 + ? (c < 2160 + ? (c >= 2144 && c <= 2154) + : c <= 2183) + : (c <= 2190 || (c >= 2208 && c <= 2249))) + : (c <= 2361 || (c < 2392 + ? (c < 2384 + ? c == 2365 + : c <= 2384) + : (c <= 2401 || (c >= 2417 && c <= 2432))))))) + : (c <= 2444 || (c < 2556 + ? (c < 2493 + ? (c < 2474 + ? (c < 2451 + ? (c >= 2447 && c <= 2448) + : c <= 2472) + : (c <= 2480 || (c < 2486 + ? c == 2482 + : c <= 2489))) + : (c <= 2493 || (c < 2527 + ? (c < 2524 + ? c == 2510 + : c <= 2525) + : (c <= 2529 || (c >= 2544 && c <= 2545))))) + : (c <= 2556 || (c < 2610 + ? (c < 2579 + ? (c < 2575 + ? (c >= 2565 && c <= 2570) + : c <= 2576) + : (c <= 2600 || (c >= 2602 && c <= 2608))) + : (c <= 2611 || (c < 2649 + ? (c < 2616 + ? (c >= 2613 && c <= 2614) + : c <= 2617) + : (c <= 2652 || c == 2654)))))))))) + : (c <= 2676 || (c < 3214 + ? (c < 2947 + ? (c < 2821 + ? (c < 2741 + ? (c < 2707 + ? (c < 2703 + ? (c >= 2693 && c <= 2701) + : c <= 2705) + : (c <= 2728 || (c < 2738 + ? (c >= 2730 && c <= 2736) + : c <= 2739))) + : (c <= 2745 || (c < 2784 + ? (c < 2768 + ? c == 2749 + : c <= 2768) + : (c <= 2785 || c == 2809)))) + : (c <= 2828 || (c < 2869 + ? (c < 2858 + ? (c < 2835 + ? (c >= 2831 && c <= 2832) + : c <= 2856) + : (c <= 2864 || (c >= 2866 && c <= 2867))) + : (c <= 2873 || (c < 2911 + ? (c < 2908 + ? c == 2877 + : c <= 2909) + : (c <= 2913 || c == 2929)))))) + : (c <= 2947 || (c < 3077 + ? (c < 2974 + ? (c < 2962 + ? (c < 2958 + ? (c >= 2949 && c <= 2954) + : c <= 2960) + : (c <= 2965 || (c < 2972 + ? (c >= 2969 && c <= 2970) + : c <= 2972))) + : (c <= 2975 || (c < 2990 + ? (c < 2984 + ? (c >= 2979 && c <= 2980) + : c <= 2986) + : (c <= 3001 || c == 3024)))) + : (c <= 3084 || (c < 3160 + ? (c < 3114 + ? (c < 3090 + ? (c >= 3086 && c <= 3088) + : c <= 3112) + : (c <= 3129 || c == 3133)) + : (c <= 3162 || (c < 3200 + ? (c < 3168 + ? c == 3165 + : c <= 3169) + : (c <= 3200 || (c >= 3205 && c <= 3212))))))))) + : (c <= 3216 || (c < 3585 + ? (c < 3389 + ? (c < 3296 + ? (c < 3253 + ? (c < 3242 + ? (c >= 3218 && c <= 3240) + : c <= 3251) + : (c <= 3257 || (c < 3293 + ? c == 3261 + : c <= 3294))) + : (c <= 3297 || (c < 3342 + ? (c < 3332 + ? (c >= 3313 && c <= 3314) + : c <= 3340) + : (c <= 3344 || (c >= 3346 && c <= 3386))))) + : (c <= 3389 || (c < 3461 + ? (c < 3423 + ? (c < 3412 + ? c == 3406 + : c <= 3414) + : (c <= 3425 || (c >= 3450 && c <= 3455))) + : (c <= 3478 || (c < 3517 + ? (c < 3507 + ? (c >= 3482 && c <= 3505) + : c <= 3515) + : (c <= 3517 || (c >= 3520 && c <= 3526))))))) + : (c <= 3632 || (c < 3776 + ? (c < 3724 + ? (c < 3713 + ? (c < 3648 + ? c == 3634 + : c <= 3654) + : (c <= 3714 || (c < 3718 + ? c == 3716 + : c <= 3722))) + : (c <= 3747 || (c < 3762 + ? (c < 3751 + ? c == 3749 + : c <= 3760) + : (c <= 3762 || c == 3773)))) + : (c <= 3780 || (c < 3913 + ? (c < 3840 + ? (c < 3804 + ? c == 3782 + : c <= 3807) + : (c <= 3840 || (c >= 3904 && c <= 3911))) + : (c <= 3948 || (c < 4159 + ? (c < 4096 + ? (c >= 3976 && c <= 3980) + : c <= 4138) + : (c <= 4159 || (c >= 4176 && c <= 4181))))))))))))) + : (c <= 4189 || (c < 8144 + ? (c < 6176 + ? (c < 4802 + ? (c < 4682 + ? (c < 4256 + ? (c < 4206 + ? (c < 4197 + ? c == 4193 + : c <= 4198) + : (c <= 4208 || (c < 4238 + ? (c >= 4213 && c <= 4225) + : c <= 4238))) + : (c <= 4293 || (c < 4304 + ? (c < 4301 + ? c == 4295 + : c <= 4301) + : (c <= 4346 || (c >= 4348 && c <= 4680))))) + : (c <= 4685 || (c < 4746 + ? (c < 4698 + ? (c < 4696 + ? (c >= 4688 && c <= 4694) + : c <= 4696) + : (c <= 4701 || (c >= 4704 && c <= 4744))) + : (c <= 4749 || (c < 4792 + ? (c < 4786 + ? (c >= 4752 && c <= 4784) + : c <= 4789) + : (c <= 4798 || c == 4800)))))) + : (c <= 4805 || (c < 5792 + ? (c < 5024 + ? (c < 4882 + ? (c < 4824 + ? (c >= 4808 && c <= 4822) + : c <= 4880) + : (c <= 4885 || (c < 4992 + ? (c >= 4888 && c <= 4954) + : c <= 5007))) + : (c <= 5109 || (c < 5743 + ? (c < 5121 + ? (c >= 5112 && c <= 5117) + : c <= 5740) + : (c <= 5759 || (c >= 5761 && c <= 5786))))) + : (c <= 5866 || (c < 5984 + ? (c < 5919 + ? (c < 5888 + ? (c >= 5870 && c <= 5880) + : c <= 5905) + : (c <= 5937 || (c >= 5952 && c <= 5969))) + : (c <= 5996 || (c < 6103 + ? (c < 6016 + ? (c >= 5998 && c <= 6000) + : c <= 6067) + : (c <= 6103 || c == 6108)))))))) + : (c <= 6264 || (c < 7312 + ? (c < 6823 + ? (c < 6512 + ? (c < 6320 + ? (c < 6314 + ? (c >= 6272 && c <= 6312) + : c <= 6314) + : (c <= 6389 || (c < 6480 + ? (c >= 6400 && c <= 6430) + : c <= 6509))) + : (c <= 6516 || (c < 6656 + ? (c < 6576 + ? (c >= 6528 && c <= 6571) + : c <= 6601) + : (c <= 6678 || (c >= 6688 && c <= 6740))))) + : (c <= 6823 || (c < 7098 + ? (c < 7043 + ? (c < 6981 + ? (c >= 6917 && c <= 6963) + : c <= 6988) + : (c <= 7072 || (c >= 7086 && c <= 7087))) + : (c <= 7141 || (c < 7258 + ? (c < 7245 + ? (c >= 7168 && c <= 7203) + : c <= 7247) + : (c <= 7293 || (c >= 7296 && c <= 7304))))))) + : (c <= 7354 || (c < 8016 + ? (c < 7424 + ? (c < 7406 + ? (c < 7401 + ? (c >= 7357 && c <= 7359) + : c <= 7404) + : (c <= 7411 || (c < 7418 + ? (c >= 7413 && c <= 7414) + : c <= 7418))) + : (c <= 7615 || (c < 7968 + ? (c < 7960 + ? (c >= 7680 && c <= 7957) + : c <= 7965) + : (c <= 8005 || (c >= 8008 && c <= 8013))))) + : (c <= 8023 || (c < 8064 + ? (c < 8029 + ? (c < 8027 + ? c == 8025 + : c <= 8027) + : (c <= 8029 || (c >= 8031 && c <= 8061))) + : (c <= 8116 || (c < 8130 + ? (c < 8126 + ? (c >= 8118 && c <= 8124) + : c <= 8126) + : (c <= 8132 || (c >= 8134 && c <= 8140))))))))))) + : (c <= 8147 || (c < 12353 + ? (c < 11264 + ? (c < 8469 + ? (c < 8319 + ? (c < 8178 + ? (c < 8160 + ? (c >= 8150 && c <= 8155) + : c <= 8172) + : (c <= 8180 || (c < 8305 + ? (c >= 8182 && c <= 8188) + : c <= 8305))) + : (c <= 8319 || (c < 8455 + ? (c < 8450 + ? (c >= 8336 && c <= 8348) + : c <= 8450) + : (c <= 8455 || (c >= 8458 && c <= 8467))))) + : (c <= 8469 || (c < 8490 + ? (c < 8486 + ? (c < 8484 + ? (c >= 8472 && c <= 8477) + : c <= 8484) + : (c <= 8486 || c == 8488)) + : (c <= 8505 || (c < 8526 + ? (c < 8517 + ? (c >= 8508 && c <= 8511) + : c <= 8521) + : (c <= 8526 || (c >= 8544 && c <= 8584))))))) + : (c <= 11492 || (c < 11696 + ? (c < 11568 + ? (c < 11520 + ? (c < 11506 + ? (c >= 11499 && c <= 11502) + : c <= 11507) + : (c <= 11557 || (c < 11565 + ? c == 11559 + : c <= 11565))) + : (c <= 11623 || (c < 11680 + ? (c < 11648 + ? c == 11631 + : c <= 11670) + : (c <= 11686 || (c >= 11688 && c <= 11694))))) + : (c <= 11702 || (c < 11736 + ? (c < 11720 + ? (c < 11712 + ? (c >= 11704 && c <= 11710) + : c <= 11718) + : (c <= 11726 || (c >= 11728 && c <= 11734))) + : (c <= 11742 || (c < 12337 + ? (c < 12321 + ? (c >= 12293 && c <= 12295) + : c <= 12329) + : (c <= 12341 || (c >= 12344 && c <= 12348))))))))) + : (c <= 12438 || (c < 42963 + ? (c < 42240 + ? (c < 12704 + ? (c < 12540 + ? (c < 12449 + ? (c >= 12445 && c <= 12447) + : c <= 12538) + : (c <= 12543 || (c < 12593 + ? (c >= 12549 && c <= 12591) + : c <= 12686))) + : (c <= 12735 || (c < 19968 + ? (c < 13312 + ? (c >= 12784 && c <= 12799) + : c <= 19903) + : (c <= 42124 || (c >= 42192 && c <= 42237))))) + : (c <= 42508 || (c < 42656 + ? (c < 42560 + ? (c < 42538 + ? (c >= 42512 && c <= 42527) + : c <= 42539) + : (c <= 42606 || (c >= 42623 && c <= 42653))) + : (c <= 42735 || (c < 42891 + ? (c < 42786 + ? (c >= 42775 && c <= 42783) + : c <= 42888) + : (c <= 42954 || (c >= 42960 && c <= 42961))))))) + : (c <= 42963 || (c < 43274 + ? (c < 43072 + ? (c < 43011 + ? (c < 42994 + ? (c >= 42965 && c <= 42969) + : c <= 43009) + : (c <= 43013 || (c < 43020 + ? (c >= 43015 && c <= 43018) + : c <= 43042))) + : (c <= 43123 || (c < 43259 + ? (c < 43250 + ? (c >= 43138 && c <= 43187) + : c <= 43255) + : (c <= 43259 || (c >= 43261 && c <= 43262))))) + : (c <= 43301 || (c < 43488 + ? (c < 43396 + ? (c < 43360 + ? (c >= 43312 && c <= 43334) + : c <= 43388) + : (c <= 43442 || c == 43471)) + : (c <= 43492 || (c < 43520 + ? (c < 43514 + ? (c >= 43494 && c <= 43503) + : c <= 43518) + : (c <= 43560 || (c >= 43584 && c <= 43586))))))))))))))) + : (c <= 43595 || (c < 71128 + ? (c < 67003 + ? (c < 65143 + ? (c < 55216 + ? (c < 43762 + ? (c < 43705 + ? (c < 43646 + ? (c < 43642 + ? (c >= 43616 && c <= 43638) + : c <= 43642) + : (c <= 43695 || (c < 43701 + ? c == 43697 + : c <= 43702))) + : (c <= 43709 || (c < 43739 + ? (c < 43714 + ? c == 43712 + : c <= 43714) + : (c <= 43741 || (c >= 43744 && c <= 43754))))) + : (c <= 43764 || (c < 43816 + ? (c < 43793 + ? (c < 43785 + ? (c >= 43777 && c <= 43782) + : c <= 43790) + : (c <= 43798 || (c >= 43808 && c <= 43814))) + : (c <= 43822 || (c < 43888 + ? (c < 43868 + ? (c >= 43824 && c <= 43866) + : c <= 43881) + : (c <= 44002 || (c >= 44032 && c <= 55203))))))) + : (c <= 55238 || (c < 64320 + ? (c < 64285 + ? (c < 64112 + ? (c < 63744 + ? (c >= 55243 && c <= 55291) + : c <= 64109) + : (c <= 64217 || (c < 64275 + ? (c >= 64256 && c <= 64262) + : c <= 64279))) + : (c <= 64285 || (c < 64312 + ? (c < 64298 + ? (c >= 64287 && c <= 64296) + : c <= 64310) + : (c <= 64316 || c == 64318)))) + : (c <= 64321 || (c < 64848 + ? (c < 64467 + ? (c < 64326 + ? (c >= 64323 && c <= 64324) + : c <= 64433) + : (c <= 64605 || (c >= 64612 && c <= 64829))) + : (c <= 64911 || (c < 65137 + ? (c < 65008 + ? (c >= 64914 && c <= 64967) + : c <= 65017) + : (c <= 65137 || c == 65139)))))))) + : (c <= 65143 || (c < 66176 + ? (c < 65490 + ? (c < 65345 + ? (c < 65149 + ? (c < 65147 + ? c == 65145 + : c <= 65147) + : (c <= 65149 || (c < 65313 + ? (c >= 65151 && c <= 65276) + : c <= 65338))) + : (c <= 65370 || (c < 65474 + ? (c < 65440 + ? (c >= 65382 && c <= 65437) + : c <= 65470) + : (c <= 65479 || (c >= 65482 && c <= 65487))))) + : (c <= 65495 || (c < 65596 + ? (c < 65549 + ? (c < 65536 + ? (c >= 65498 && c <= 65500) + : c <= 65547) + : (c <= 65574 || (c >= 65576 && c <= 65594))) + : (c <= 65597 || (c < 65664 + ? (c < 65616 + ? (c >= 65599 && c <= 65613) + : c <= 65629) + : (c <= 65786 || (c >= 65856 && c <= 65908))))))) + : (c <= 66204 || (c < 66776 + ? (c < 66464 + ? (c < 66349 + ? (c < 66304 + ? (c >= 66208 && c <= 66256) + : c <= 66335) + : (c <= 66378 || (c < 66432 + ? (c >= 66384 && c <= 66421) + : c <= 66461))) + : (c <= 66499 || (c < 66560 + ? (c < 66513 + ? (c >= 66504 && c <= 66511) + : c <= 66517) + : (c <= 66717 || (c >= 66736 && c <= 66771))))) + : (c <= 66811 || (c < 66956 + ? (c < 66928 + ? (c < 66864 + ? (c >= 66816 && c <= 66855) + : c <= 66915) + : (c <= 66938 || (c >= 66940 && c <= 66954))) + : (c <= 66962 || (c < 66979 + ? (c < 66967 + ? (c >= 66964 && c <= 66965) + : c <= 66977) + : (c <= 66993 || (c >= 66995 && c <= 67001))))))))))) + : (c <= 67004 || (c < 69488 + ? (c < 68096 + ? (c < 67644 + ? (c < 67506 + ? (c < 67424 + ? (c < 67392 + ? (c >= 67072 && c <= 67382) + : c <= 67413) + : (c <= 67431 || (c < 67463 + ? (c >= 67456 && c <= 67461) + : c <= 67504))) + : (c <= 67514 || (c < 67594 + ? (c < 67592 + ? (c >= 67584 && c <= 67589) + : c <= 67592) + : (c <= 67637 || (c >= 67639 && c <= 67640))))) + : (c <= 67644 || (c < 67828 + ? (c < 67712 + ? (c < 67680 + ? (c >= 67647 && c <= 67669) + : c <= 67702) + : (c <= 67742 || (c >= 67808 && c <= 67826))) + : (c <= 67829 || (c < 67968 + ? (c < 67872 + ? (c >= 67840 && c <= 67861) + : c <= 67897) + : (c <= 68023 || (c >= 68030 && c <= 68031))))))) + : (c <= 68096 || (c < 68480 + ? (c < 68288 + ? (c < 68121 + ? (c < 68117 + ? (c >= 68112 && c <= 68115) + : c <= 68119) + : (c <= 68149 || (c < 68224 + ? (c >= 68192 && c <= 68220) + : c <= 68252))) + : (c <= 68295 || (c < 68416 + ? (c < 68352 + ? (c >= 68297 && c <= 68324) + : c <= 68405) + : (c <= 68437 || (c >= 68448 && c <= 68466))))) + : (c <= 68497 || (c < 69248 + ? (c < 68800 + ? (c < 68736 + ? (c >= 68608 && c <= 68680) + : c <= 68786) + : (c <= 68850 || (c >= 68864 && c <= 68899))) + : (c <= 69289 || (c < 69415 + ? (c < 69376 + ? (c >= 69296 && c <= 69297) + : c <= 69404) + : (c <= 69415 || (c >= 69424 && c <= 69445))))))))) + : (c <= 69505 || (c < 70280 + ? (c < 69968 + ? (c < 69763 + ? (c < 69635 + ? (c < 69600 + ? (c >= 69552 && c <= 69572) + : c <= 69622) + : (c <= 69687 || (c < 69749 + ? (c >= 69745 && c <= 69746) + : c <= 69749))) + : (c <= 69807 || (c < 69956 + ? (c < 69891 + ? (c >= 69840 && c <= 69864) + : c <= 69926) + : (c <= 69956 || c == 69959)))) + : (c <= 70002 || (c < 70108 + ? (c < 70081 + ? (c < 70019 + ? c == 70006 + : c <= 70066) + : (c <= 70084 || c == 70106)) + : (c <= 70108 || (c < 70207 + ? (c < 70163 + ? (c >= 70144 && c <= 70161) + : c <= 70187) + : (c <= 70208 || (c >= 70272 && c <= 70278))))))) + : (c <= 70280 || (c < 70461 + ? (c < 70415 + ? (c < 70303 + ? (c < 70287 + ? (c >= 70282 && c <= 70285) + : c <= 70301) + : (c <= 70312 || (c < 70405 + ? (c >= 70320 && c <= 70366) + : c <= 70412))) + : (c <= 70416 || (c < 70450 + ? (c < 70442 + ? (c >= 70419 && c <= 70440) + : c <= 70448) + : (c <= 70451 || (c >= 70453 && c <= 70457))))) + : (c <= 70461 || (c < 70751 + ? (c < 70656 + ? (c < 70493 + ? c == 70480 + : c <= 70497) + : (c <= 70708 || (c >= 70727 && c <= 70730))) + : (c <= 70753 || (c < 70855 + ? (c < 70852 + ? (c >= 70784 && c <= 70831) + : c <= 70853) + : (c <= 70855 || (c >= 71040 && c <= 71086))))))))))))) + : (c <= 71131 || (c < 119970 + ? (c < 73490 + ? (c < 72203 + ? (c < 71948 + ? (c < 71488 + ? (c < 71296 + ? (c < 71236 + ? (c >= 71168 && c <= 71215) + : c <= 71236) + : (c <= 71338 || (c < 71424 + ? c == 71352 + : c <= 71450))) + : (c <= 71494 || (c < 71935 + ? (c < 71840 + ? (c >= 71680 && c <= 71723) + : c <= 71903) + : (c <= 71942 || c == 71945)))) + : (c <= 71955 || (c < 72096 + ? (c < 71999 + ? (c < 71960 + ? (c >= 71957 && c <= 71958) + : c <= 71983) + : (c <= 71999 || c == 72001)) + : (c <= 72103 || (c < 72163 + ? (c < 72161 + ? (c >= 72106 && c <= 72144) + : c <= 72161) + : (c <= 72163 || c == 72192)))))) + : (c <= 72242 || (c < 72968 + ? (c < 72704 + ? (c < 72284 + ? (c < 72272 + ? c == 72250 + : c <= 72272) + : (c <= 72329 || (c < 72368 + ? c == 72349 + : c <= 72440))) + : (c <= 72712 || (c < 72818 + ? (c < 72768 + ? (c >= 72714 && c <= 72750) + : c <= 72768) + : (c <= 72847 || (c >= 72960 && c <= 72966))))) + : (c <= 72969 || (c < 73066 + ? (c < 73056 + ? (c < 73030 + ? (c >= 72971 && c <= 73008) + : c <= 73030) + : (c <= 73061 || (c >= 73063 && c <= 73064))) + : (c <= 73097 || (c < 73474 + ? (c < 73440 + ? c == 73112 + : c <= 73458) + : (c <= 73474 || (c >= 73476 && c <= 73488))))))))) + : (c <= 73523 || (c < 94176 + ? (c < 92784 + ? (c < 77824 + ? (c < 74752 + ? (c < 73728 + ? c == 73648 + : c <= 74649) + : (c <= 74862 || (c < 77712 + ? (c >= 74880 && c <= 75075) + : c <= 77808))) + : (c <= 78895 || (c < 92160 + ? (c < 82944 + ? (c >= 78913 && c <= 78918) + : c <= 83526) + : (c <= 92728 || (c >= 92736 && c <= 92766))))) + : (c <= 92862 || (c < 93053 + ? (c < 92992 + ? (c < 92928 + ? (c >= 92880 && c <= 92909) + : c <= 92975) + : (c <= 92995 || (c >= 93027 && c <= 93047))) + : (c <= 93071 || (c < 94032 + ? (c < 93952 + ? (c >= 93760 && c <= 93823) + : c <= 94026) + : (c <= 94032 || (c >= 94099 && c <= 94111))))))) + : (c <= 94177 || (c < 110933 + ? (c < 110581 + ? (c < 100352 + ? (c < 94208 + ? c == 94179 + : c <= 100343) + : (c <= 101589 || (c < 110576 + ? (c >= 101632 && c <= 101640) + : c <= 110579))) + : (c <= 110587 || (c < 110898 + ? (c < 110592 + ? (c >= 110589 && c <= 110590) + : c <= 110882) + : (c <= 110898 || (c >= 110928 && c <= 110930))))) + : (c <= 110933 || (c < 113792 + ? (c < 113664 + ? (c < 110960 + ? (c >= 110948 && c <= 110951) + : c <= 111355) + : (c <= 113770 || (c >= 113776 && c <= 113788))) + : (c <= 113800 || (c < 119894 + ? (c < 119808 + ? (c >= 113808 && c <= 113817) + : c <= 119892) + : (c <= 119964 || (c >= 119966 && c <= 119967))))))))))) + : (c <= 119970 || (c < 125259 + ? (c < 120630 + ? (c < 120123 + ? (c < 120005 + ? (c < 119982 + ? (c < 119977 + ? (c >= 119973 && c <= 119974) + : c <= 119980) + : (c <= 119993 || (c < 119997 + ? c == 119995 + : c <= 120003))) + : (c <= 120069 || (c < 120086 + ? (c < 120077 + ? (c >= 120071 && c <= 120074) + : c <= 120084) + : (c <= 120092 || (c >= 120094 && c <= 120121))))) + : (c <= 120126 || (c < 120488 + ? (c < 120138 + ? (c < 120134 + ? (c >= 120128 && c <= 120132) + : c <= 120134) + : (c <= 120144 || (c >= 120146 && c <= 120485))) + : (c <= 120512 || (c < 120572 + ? (c < 120540 + ? (c >= 120514 && c <= 120538) + : c <= 120570) + : (c <= 120596 || (c >= 120598 && c <= 120628))))))) + : (c <= 120654 || (c < 123214 + ? (c < 122624 + ? (c < 120714 + ? (c < 120688 + ? (c >= 120656 && c <= 120686) + : c <= 120712) + : (c <= 120744 || (c < 120772 + ? (c >= 120746 && c <= 120770) + : c <= 120779))) + : (c <= 122654 || (c < 123136 + ? (c < 122928 + ? (c >= 122661 && c <= 122666) + : c <= 122989) + : (c <= 123180 || (c >= 123191 && c <= 123197))))) + : (c <= 123214 || (c < 124904 + ? (c < 124112 + ? (c < 123584 + ? (c >= 123536 && c <= 123565) + : c <= 123627) + : (c <= 124139 || (c >= 124896 && c <= 124902))) + : (c <= 124907 || (c < 124928 + ? (c < 124912 + ? (c >= 124909 && c <= 124910) + : c <= 124926) + : (c <= 125124 || (c >= 125184 && c <= 125251))))))))) + : (c <= 125259 || (c < 126559 + ? (c < 126535 + ? (c < 126505 + ? (c < 126497 + ? (c < 126469 + ? (c >= 126464 && c <= 126467) + : c <= 126495) + : (c <= 126498 || (c < 126503 + ? c == 126500 + : c <= 126503))) + : (c <= 126514 || (c < 126523 + ? (c < 126521 + ? (c >= 126516 && c <= 126519) + : c <= 126521) + : (c <= 126523 || c == 126530)))) + : (c <= 126535 || (c < 126548 + ? (c < 126541 + ? (c < 126539 + ? c == 126537 + : c <= 126539) + : (c <= 126543 || (c >= 126545 && c <= 126546))) + : (c <= 126548 || (c < 126555 + ? (c < 126553 + ? c == 126551 + : c <= 126553) + : (c <= 126555 || c == 126557)))))) + : (c <= 126559 || (c < 126629 + ? (c < 126585 + ? (c < 126567 + ? (c < 126564 + ? (c >= 126561 && c <= 126562) + : c <= 126564) + : (c <= 126570 || (c < 126580 + ? (c >= 126572 && c <= 126578) + : c <= 126583))) + : (c <= 126588 || (c < 126603 + ? (c < 126592 + ? c == 126590 + : c <= 126601) + : (c <= 126619 || (c >= 126625 && c <= 126627))))) + : (c <= 126633 || (c < 178208 + ? (c < 173824 + ? (c < 131072 + ? (c >= 126635 && c <= 126651) + : c <= 173791) + : (c <= 177977 || (c >= 177984 && c <= 178205))) + : (c <= 183969 || (c < 196608 + ? (c < 194560 + ? (c >= 183984 && c <= 191456) + : c <= 195101) + : (c <= 201546 || (c >= 201552 && c <= 205743))))))))))))))))); +} + +static inline bool sym_identifier_character_set_2(int32_t c) { + return (c < 43584 + ? (c < 4176 + ? (c < 2654 + ? (c < 1791 + ? (c < 891 + ? (c < 181 + ? (c < 'j' + ? (c < 'a' + ? (c < '_' + ? (c >= 'A' && c <= 'Z') + : c <= '_') + : (c <= 'a' || (c < 'g' + ? c == 'e' + : c <= 'h'))) + : (c <= 'l' || (c < 'w' + ? (c < 'q' + ? c == 'o' + : c <= 'r') + : (c <= 'z' || c == 170)))) + : (c <= 181 || (c < 736 + ? (c < 216 + ? (c < 192 + ? c == 186 + : c <= 214) + : (c <= 246 || (c < 710 + ? (c >= 248 && c <= 705) + : c <= 721))) + : (c <= 740 || (c < 880 + ? (c < 750 + ? c == 748 + : c <= 750) + : (c <= 884 || (c >= 886 && c <= 887))))))) + : (c <= 893 || (c < 1376 + ? (c < 931 + ? (c < 904 + ? (c < 902 + ? c == 895 + : c <= 902) + : (c <= 906 || (c < 910 + ? c == 908 + : c <= 929))) + : (c <= 1013 || (c < 1329 + ? (c < 1162 + ? (c >= 1015 && c <= 1153) + : c <= 1327) + : (c <= 1366 || c == 1369)))) + : (c <= 1416 || (c < 1649 + ? (c < 1568 + ? (c < 1519 + ? (c >= 1488 && c <= 1514) + : c <= 1522) + : (c <= 1610 || (c >= 1646 && c <= 1647))) + : (c <= 1747 || (c < 1774 + ? (c < 1765 + ? c == 1749 + : c <= 1766) + : (c <= 1775 || (c >= 1786 && c <= 1788))))))))) + : (c <= 1791 || (c < 2417 + ? (c < 2088 + ? (c < 2036 + ? (c < 1869 + ? (c < 1810 + ? c == 1808 + : c <= 1839) + : (c <= 1957 || (c < 1994 + ? c == 1969 + : c <= 2026))) + : (c <= 2037 || (c < 2074 + ? (c < 2048 + ? c == 2042 + : c <= 2069) + : (c <= 2074 || c == 2084)))) + : (c <= 2088 || (c < 2208 + ? (c < 2160 + ? (c < 2144 + ? (c >= 2112 && c <= 2136) + : c <= 2154) + : (c <= 2183 || (c >= 2185 && c <= 2190))) + : (c <= 2249 || (c < 2384 + ? (c < 2365 + ? (c >= 2308 && c <= 2361) + : c <= 2365) + : (c <= 2384 || (c >= 2392 && c <= 2401))))))) + : (c <= 2432 || (c < 2544 + ? (c < 2486 + ? (c < 2451 + ? (c < 2447 + ? (c >= 2437 && c <= 2444) + : c <= 2448) + : (c <= 2472 || (c < 2482 + ? (c >= 2474 && c <= 2480) + : c <= 2482))) + : (c <= 2489 || (c < 2524 + ? (c < 2510 + ? c == 2493 + : c <= 2510) + : (c <= 2525 || (c >= 2527 && c <= 2529))))) + : (c <= 2545 || (c < 2602 + ? (c < 2575 + ? (c < 2565 + ? c == 2556 + : c <= 2570) + : (c <= 2576 || (c >= 2579 && c <= 2600))) + : (c <= 2608 || (c < 2616 + ? (c < 2613 + ? (c >= 2610 && c <= 2611) + : c <= 2614) + : (c <= 2617 || (c >= 2649 && c <= 2652))))))))))) + : (c <= 2654 || (c < 3205 + ? (c < 2929 + ? (c < 2809 + ? (c < 2738 + ? (c < 2703 + ? (c < 2693 + ? (c >= 2674 && c <= 2676) + : c <= 2701) + : (c <= 2705 || (c < 2730 + ? (c >= 2707 && c <= 2728) + : c <= 2736))) + : (c <= 2739 || (c < 2768 + ? (c < 2749 + ? (c >= 2741 && c <= 2745) + : c <= 2749) + : (c <= 2768 || (c >= 2784 && c <= 2785))))) + : (c <= 2809 || (c < 2866 + ? (c < 2835 + ? (c < 2831 + ? (c >= 2821 && c <= 2828) + : c <= 2832) + : (c <= 2856 || (c >= 2858 && c <= 2864))) + : (c <= 2867 || (c < 2908 + ? (c < 2877 + ? (c >= 2869 && c <= 2873) + : c <= 2877) + : (c <= 2909 || (c >= 2911 && c <= 2913))))))) + : (c <= 2929 || (c < 3024 + ? (c < 2972 + ? (c < 2958 + ? (c < 2949 + ? c == 2947 + : c <= 2954) + : (c <= 2960 || (c < 2969 + ? (c >= 2962 && c <= 2965) + : c <= 2970))) + : (c <= 2972 || (c < 2984 + ? (c < 2979 + ? (c >= 2974 && c <= 2975) + : c <= 2980) + : (c <= 2986 || (c >= 2990 && c <= 3001))))) + : (c <= 3024 || (c < 3133 + ? (c < 3090 + ? (c < 3086 + ? (c >= 3077 && c <= 3084) + : c <= 3088) + : (c <= 3112 || (c >= 3114 && c <= 3129))) + : (c <= 3133 || (c < 3168 + ? (c < 3165 + ? (c >= 3160 && c <= 3162) + : c <= 3165) + : (c <= 3169 || c == 3200)))))))) + : (c <= 3212 || (c < 3520 + ? (c < 3346 + ? (c < 3293 + ? (c < 3242 + ? (c < 3218 + ? (c >= 3214 && c <= 3216) + : c <= 3240) + : (c <= 3251 || (c < 3261 + ? (c >= 3253 && c <= 3257) + : c <= 3261))) + : (c <= 3294 || (c < 3332 + ? (c < 3313 + ? (c >= 3296 && c <= 3297) + : c <= 3314) + : (c <= 3340 || (c >= 3342 && c <= 3344))))) + : (c <= 3386 || (c < 3450 + ? (c < 3412 + ? (c < 3406 + ? c == 3389 + : c <= 3406) + : (c <= 3414 || (c >= 3423 && c <= 3425))) + : (c <= 3455 || (c < 3507 + ? (c < 3482 + ? (c >= 3461 && c <= 3478) + : c <= 3505) + : (c <= 3515 || c == 3517)))))) + : (c <= 3526 || (c < 3773 + ? (c < 3718 + ? (c < 3648 + ? (c < 3634 + ? (c >= 3585 && c <= 3632) + : c <= 3634) + : (c <= 3654 || (c < 3716 + ? (c >= 3713 && c <= 3714) + : c <= 3716))) + : (c <= 3722 || (c < 3751 + ? (c < 3749 + ? (c >= 3724 && c <= 3747) + : c <= 3749) + : (c <= 3760 || c == 3762)))) + : (c <= 3773 || (c < 3904 + ? (c < 3804 + ? (c < 3782 + ? (c >= 3776 && c <= 3780) + : c <= 3782) + : (c <= 3807 || c == 3840)) + : (c <= 3911 || (c < 4096 + ? (c < 3976 + ? (c >= 3913 && c <= 3948) + : c <= 3980) + : (c <= 4138 || c == 4159)))))))))))) + : (c <= 4181 || (c < 8134 + ? (c < 6108 + ? (c < 4800 + ? (c < 4348 + ? (c < 4238 + ? (c < 4197 + ? (c < 4193 + ? (c >= 4186 && c <= 4189) + : c <= 4193) + : (c <= 4198 || (c < 4213 + ? (c >= 4206 && c <= 4208) + : c <= 4225))) + : (c <= 4238 || (c < 4301 + ? (c < 4295 + ? (c >= 4256 && c <= 4293) + : c <= 4295) + : (c <= 4301 || (c >= 4304 && c <= 4346))))) + : (c <= 4680 || (c < 4704 + ? (c < 4696 + ? (c < 4688 + ? (c >= 4682 && c <= 4685) + : c <= 4694) + : (c <= 4696 || (c >= 4698 && c <= 4701))) + : (c <= 4744 || (c < 4786 + ? (c < 4752 + ? (c >= 4746 && c <= 4749) + : c <= 4784) + : (c <= 4789 || (c >= 4792 && c <= 4798))))))) + : (c <= 4800 || (c < 5761 + ? (c < 4992 + ? (c < 4824 + ? (c < 4808 + ? (c >= 4802 && c <= 4805) + : c <= 4822) + : (c <= 4880 || (c < 4888 + ? (c >= 4882 && c <= 4885) + : c <= 4954))) + : (c <= 5007 || (c < 5121 + ? (c < 5112 + ? (c >= 5024 && c <= 5109) + : c <= 5117) + : (c <= 5740 || (c >= 5743 && c <= 5759))))) + : (c <= 5786 || (c < 5952 + ? (c < 5888 + ? (c < 5870 + ? (c >= 5792 && c <= 5866) + : c <= 5880) + : (c <= 5905 || (c >= 5919 && c <= 5937))) + : (c <= 5969 || (c < 6016 + ? (c < 5998 + ? (c >= 5984 && c <= 5996) + : c <= 6000) + : (c <= 6067 || c == 6103)))))))) + : (c <= 6108 || (c < 7296 + ? (c < 6688 + ? (c < 6480 + ? (c < 6314 + ? (c < 6272 + ? (c >= 6176 && c <= 6264) + : c <= 6312) + : (c <= 6314 || (c < 6400 + ? (c >= 6320 && c <= 6389) + : c <= 6430))) + : (c <= 6509 || (c < 6576 + ? (c < 6528 + ? (c >= 6512 && c <= 6516) + : c <= 6571) + : (c <= 6601 || (c >= 6656 && c <= 6678))))) + : (c <= 6740 || (c < 7086 + ? (c < 6981 + ? (c < 6917 + ? c == 6823 + : c <= 6963) + : (c <= 6988 || (c >= 7043 && c <= 7072))) + : (c <= 7087 || (c < 7245 + ? (c < 7168 + ? (c >= 7098 && c <= 7141) + : c <= 7203) + : (c <= 7247 || (c >= 7258 && c <= 7293))))))) + : (c <= 7304 || (c < 8008 + ? (c < 7418 + ? (c < 7401 + ? (c < 7357 + ? (c >= 7312 && c <= 7354) + : c <= 7359) + : (c <= 7404 || (c < 7413 + ? (c >= 7406 && c <= 7411) + : c <= 7414))) + : (c <= 7418 || (c < 7960 + ? (c < 7680 + ? (c >= 7424 && c <= 7615) + : c <= 7957) + : (c <= 7965 || (c >= 7968 && c <= 8005))))) + : (c <= 8013 || (c < 8031 + ? (c < 8027 + ? (c < 8025 + ? (c >= 8016 && c <= 8023) + : c <= 8025) + : (c <= 8027 || c == 8029)) + : (c <= 8061 || (c < 8126 + ? (c < 8118 + ? (c >= 8064 && c <= 8116) + : c <= 8124) + : (c <= 8126 || (c >= 8130 && c <= 8132))))))))))) + : (c <= 8140 || (c < 12344 + ? (c < 8544 + ? (c < 8458 + ? (c < 8305 + ? (c < 8160 + ? (c < 8150 + ? (c >= 8144 && c <= 8147) + : c <= 8155) + : (c <= 8172 || (c < 8182 + ? (c >= 8178 && c <= 8180) + : c <= 8188))) + : (c <= 8305 || (c < 8450 + ? (c < 8336 + ? c == 8319 + : c <= 8348) + : (c <= 8450 || c == 8455)))) + : (c <= 8467 || (c < 8488 + ? (c < 8484 + ? (c < 8472 + ? c == 8469 + : c <= 8477) + : (c <= 8484 || c == 8486)) + : (c <= 8488 || (c < 8517 + ? (c < 8508 + ? (c >= 8490 && c <= 8505) + : c <= 8511) + : (c <= 8521 || c == 8526)))))) + : (c <= 8584 || (c < 11688 + ? (c < 11565 + ? (c < 11506 + ? (c < 11499 + ? (c >= 11264 && c <= 11492) + : c <= 11502) + : (c <= 11507 || (c < 11559 + ? (c >= 11520 && c <= 11557) + : c <= 11559))) + : (c <= 11565 || (c < 11648 + ? (c < 11631 + ? (c >= 11568 && c <= 11623) + : c <= 11631) + : (c <= 11670 || (c >= 11680 && c <= 11686))))) + : (c <= 11694 || (c < 11728 + ? (c < 11712 + ? (c < 11704 + ? (c >= 11696 && c <= 11702) + : c <= 11710) + : (c <= 11718 || (c >= 11720 && c <= 11726))) + : (c <= 11734 || (c < 12321 + ? (c < 12293 + ? (c >= 11736 && c <= 11742) + : c <= 12295) + : (c <= 12329 || (c >= 12337 && c <= 12341))))))))) + : (c <= 12348 || (c < 42960 + ? (c < 42192 + ? (c < 12593 + ? (c < 12449 + ? (c < 12445 + ? (c >= 12353 && c <= 12438) + : c <= 12447) + : (c <= 12538 || (c < 12549 + ? (c >= 12540 && c <= 12543) + : c <= 12591))) + : (c <= 12686 || (c < 13312 + ? (c < 12784 + ? (c >= 12704 && c <= 12735) + : c <= 12799) + : (c <= 19903 || (c >= 19968 && c <= 42124))))) + : (c <= 42237 || (c < 42623 + ? (c < 42538 + ? (c < 42512 + ? (c >= 42240 && c <= 42508) + : c <= 42527) + : (c <= 42539 || (c >= 42560 && c <= 42606))) + : (c <= 42653 || (c < 42786 + ? (c < 42775 + ? (c >= 42656 && c <= 42735) + : c <= 42783) + : (c <= 42888 || (c >= 42891 && c <= 42954))))))) + : (c <= 42961 || (c < 43261 + ? (c < 43020 + ? (c < 42994 + ? (c < 42965 + ? c == 42963 + : c <= 42969) + : (c <= 43009 || (c < 43015 + ? (c >= 43011 && c <= 43013) + : c <= 43018))) + : (c <= 43042 || (c < 43250 + ? (c < 43138 + ? (c >= 43072 && c <= 43123) + : c <= 43187) + : (c <= 43255 || c == 43259)))) + : (c <= 43262 || (c < 43471 + ? (c < 43360 + ? (c < 43312 + ? (c >= 43274 && c <= 43301) + : c <= 43334) + : (c <= 43388 || (c >= 43396 && c <= 43442))) + : (c <= 43471 || (c < 43514 + ? (c < 43494 + ? (c >= 43488 && c <= 43492) + : c <= 43503) + : (c <= 43518 || (c >= 43520 && c <= 43560))))))))))))))) + : (c <= 43586 || (c < 71128 + ? (c < 67003 + ? (c < 65143 + ? (c < 55216 + ? (c < 43744 + ? (c < 43701 + ? (c < 43642 + ? (c < 43616 + ? (c >= 43588 && c <= 43595) + : c <= 43638) + : (c <= 43642 || (c < 43697 + ? (c >= 43646 && c <= 43695) + : c <= 43697))) + : (c <= 43702 || (c < 43714 + ? (c < 43712 + ? (c >= 43705 && c <= 43709) + : c <= 43712) + : (c <= 43714 || (c >= 43739 && c <= 43741))))) + : (c <= 43754 || (c < 43816 + ? (c < 43785 + ? (c < 43777 + ? (c >= 43762 && c <= 43764) + : c <= 43782) + : (c <= 43790 || (c < 43808 + ? (c >= 43793 && c <= 43798) + : c <= 43814))) + : (c <= 43822 || (c < 43888 + ? (c < 43868 + ? (c >= 43824 && c <= 43866) + : c <= 43881) + : (c <= 44002 || (c >= 44032 && c <= 55203))))))) + : (c <= 55238 || (c < 64320 + ? (c < 64285 + ? (c < 64112 + ? (c < 63744 + ? (c >= 55243 && c <= 55291) + : c <= 64109) + : (c <= 64217 || (c < 64275 + ? (c >= 64256 && c <= 64262) + : c <= 64279))) + : (c <= 64285 || (c < 64312 + ? (c < 64298 + ? (c >= 64287 && c <= 64296) + : c <= 64310) + : (c <= 64316 || c == 64318)))) + : (c <= 64321 || (c < 64848 + ? (c < 64467 + ? (c < 64326 + ? (c >= 64323 && c <= 64324) + : c <= 64433) + : (c <= 64605 || (c >= 64612 && c <= 64829))) + : (c <= 64911 || (c < 65137 + ? (c < 65008 + ? (c >= 64914 && c <= 64967) + : c <= 65017) + : (c <= 65137 || c == 65139)))))))) + : (c <= 65143 || (c < 66176 + ? (c < 65490 + ? (c < 65345 + ? (c < 65149 + ? (c < 65147 + ? c == 65145 + : c <= 65147) + : (c <= 65149 || (c < 65313 + ? (c >= 65151 && c <= 65276) + : c <= 65338))) + : (c <= 65370 || (c < 65474 + ? (c < 65440 + ? (c >= 65382 && c <= 65437) + : c <= 65470) + : (c <= 65479 || (c >= 65482 && c <= 65487))))) + : (c <= 65495 || (c < 65596 + ? (c < 65549 + ? (c < 65536 + ? (c >= 65498 && c <= 65500) + : c <= 65547) + : (c <= 65574 || (c >= 65576 && c <= 65594))) + : (c <= 65597 || (c < 65664 + ? (c < 65616 + ? (c >= 65599 && c <= 65613) + : c <= 65629) + : (c <= 65786 || (c >= 65856 && c <= 65908))))))) + : (c <= 66204 || (c < 66776 + ? (c < 66464 + ? (c < 66349 + ? (c < 66304 + ? (c >= 66208 && c <= 66256) + : c <= 66335) + : (c <= 66378 || (c < 66432 + ? (c >= 66384 && c <= 66421) + : c <= 66461))) + : (c <= 66499 || (c < 66560 + ? (c < 66513 + ? (c >= 66504 && c <= 66511) + : c <= 66517) + : (c <= 66717 || (c >= 66736 && c <= 66771))))) + : (c <= 66811 || (c < 66956 + ? (c < 66928 + ? (c < 66864 + ? (c >= 66816 && c <= 66855) + : c <= 66915) + : (c <= 66938 || (c >= 66940 && c <= 66954))) + : (c <= 66962 || (c < 66979 + ? (c < 66967 + ? (c >= 66964 && c <= 66965) + : c <= 66977) + : (c <= 66993 || (c >= 66995 && c <= 67001))))))))))) + : (c <= 67004 || (c < 69488 + ? (c < 68096 + ? (c < 67644 + ? (c < 67506 + ? (c < 67424 + ? (c < 67392 + ? (c >= 67072 && c <= 67382) + : c <= 67413) + : (c <= 67431 || (c < 67463 + ? (c >= 67456 && c <= 67461) + : c <= 67504))) + : (c <= 67514 || (c < 67594 + ? (c < 67592 + ? (c >= 67584 && c <= 67589) + : c <= 67592) + : (c <= 67637 || (c >= 67639 && c <= 67640))))) + : (c <= 67644 || (c < 67828 + ? (c < 67712 + ? (c < 67680 + ? (c >= 67647 && c <= 67669) + : c <= 67702) + : (c <= 67742 || (c >= 67808 && c <= 67826))) + : (c <= 67829 || (c < 67968 + ? (c < 67872 + ? (c >= 67840 && c <= 67861) + : c <= 67897) + : (c <= 68023 || (c >= 68030 && c <= 68031))))))) + : (c <= 68096 || (c < 68480 + ? (c < 68288 + ? (c < 68121 + ? (c < 68117 + ? (c >= 68112 && c <= 68115) + : c <= 68119) + : (c <= 68149 || (c < 68224 + ? (c >= 68192 && c <= 68220) + : c <= 68252))) + : (c <= 68295 || (c < 68416 + ? (c < 68352 + ? (c >= 68297 && c <= 68324) + : c <= 68405) + : (c <= 68437 || (c >= 68448 && c <= 68466))))) + : (c <= 68497 || (c < 69248 + ? (c < 68800 + ? (c < 68736 + ? (c >= 68608 && c <= 68680) + : c <= 68786) + : (c <= 68850 || (c >= 68864 && c <= 68899))) + : (c <= 69289 || (c < 69415 + ? (c < 69376 + ? (c >= 69296 && c <= 69297) + : c <= 69404) + : (c <= 69415 || (c >= 69424 && c <= 69445))))))))) + : (c <= 69505 || (c < 70280 + ? (c < 69968 + ? (c < 69763 + ? (c < 69635 + ? (c < 69600 + ? (c >= 69552 && c <= 69572) + : c <= 69622) + : (c <= 69687 || (c < 69749 + ? (c >= 69745 && c <= 69746) + : c <= 69749))) + : (c <= 69807 || (c < 69956 + ? (c < 69891 + ? (c >= 69840 && c <= 69864) + : c <= 69926) + : (c <= 69956 || c == 69959)))) + : (c <= 70002 || (c < 70108 + ? (c < 70081 + ? (c < 70019 + ? c == 70006 + : c <= 70066) + : (c <= 70084 || c == 70106)) + : (c <= 70108 || (c < 70207 + ? (c < 70163 + ? (c >= 70144 && c <= 70161) + : c <= 70187) + : (c <= 70208 || (c >= 70272 && c <= 70278))))))) + : (c <= 70280 || (c < 70461 + ? (c < 70415 + ? (c < 70303 + ? (c < 70287 + ? (c >= 70282 && c <= 70285) + : c <= 70301) + : (c <= 70312 || (c < 70405 + ? (c >= 70320 && c <= 70366) + : c <= 70412))) + : (c <= 70416 || (c < 70450 + ? (c < 70442 + ? (c >= 70419 && c <= 70440) + : c <= 70448) + : (c <= 70451 || (c >= 70453 && c <= 70457))))) + : (c <= 70461 || (c < 70751 + ? (c < 70656 + ? (c < 70493 + ? c == 70480 + : c <= 70497) + : (c <= 70708 || (c >= 70727 && c <= 70730))) + : (c <= 70753 || (c < 70855 + ? (c < 70852 + ? (c >= 70784 && c <= 70831) + : c <= 70853) + : (c <= 70855 || (c >= 71040 && c <= 71086))))))))))))) + : (c <= 71131 || (c < 119970 + ? (c < 73490 + ? (c < 72203 + ? (c < 71948 + ? (c < 71488 + ? (c < 71296 + ? (c < 71236 + ? (c >= 71168 && c <= 71215) + : c <= 71236) + : (c <= 71338 || (c < 71424 + ? c == 71352 + : c <= 71450))) + : (c <= 71494 || (c < 71935 + ? (c < 71840 + ? (c >= 71680 && c <= 71723) + : c <= 71903) + : (c <= 71942 || c == 71945)))) + : (c <= 71955 || (c < 72096 + ? (c < 71999 + ? (c < 71960 + ? (c >= 71957 && c <= 71958) + : c <= 71983) + : (c <= 71999 || c == 72001)) + : (c <= 72103 || (c < 72163 + ? (c < 72161 + ? (c >= 72106 && c <= 72144) + : c <= 72161) + : (c <= 72163 || c == 72192)))))) + : (c <= 72242 || (c < 72968 + ? (c < 72704 + ? (c < 72284 + ? (c < 72272 + ? c == 72250 + : c <= 72272) + : (c <= 72329 || (c < 72368 + ? c == 72349 + : c <= 72440))) + : (c <= 72712 || (c < 72818 + ? (c < 72768 + ? (c >= 72714 && c <= 72750) + : c <= 72768) + : (c <= 72847 || (c >= 72960 && c <= 72966))))) + : (c <= 72969 || (c < 73066 + ? (c < 73056 + ? (c < 73030 + ? (c >= 72971 && c <= 73008) + : c <= 73030) + : (c <= 73061 || (c >= 73063 && c <= 73064))) + : (c <= 73097 || (c < 73474 + ? (c < 73440 + ? c == 73112 + : c <= 73458) + : (c <= 73474 || (c >= 73476 && c <= 73488))))))))) + : (c <= 73523 || (c < 94176 + ? (c < 92784 + ? (c < 77824 + ? (c < 74752 + ? (c < 73728 + ? c == 73648 + : c <= 74649) + : (c <= 74862 || (c < 77712 + ? (c >= 74880 && c <= 75075) + : c <= 77808))) + : (c <= 78895 || (c < 92160 + ? (c < 82944 + ? (c >= 78913 && c <= 78918) + : c <= 83526) + : (c <= 92728 || (c >= 92736 && c <= 92766))))) + : (c <= 92862 || (c < 93053 + ? (c < 92992 + ? (c < 92928 + ? (c >= 92880 && c <= 92909) + : c <= 92975) + : (c <= 92995 || (c >= 93027 && c <= 93047))) + : (c <= 93071 || (c < 94032 + ? (c < 93952 + ? (c >= 93760 && c <= 93823) + : c <= 94026) + : (c <= 94032 || (c >= 94099 && c <= 94111))))))) + : (c <= 94177 || (c < 110933 + ? (c < 110581 + ? (c < 100352 + ? (c < 94208 + ? c == 94179 + : c <= 100343) + : (c <= 101589 || (c < 110576 + ? (c >= 101632 && c <= 101640) + : c <= 110579))) + : (c <= 110587 || (c < 110898 + ? (c < 110592 + ? (c >= 110589 && c <= 110590) + : c <= 110882) + : (c <= 110898 || (c >= 110928 && c <= 110930))))) + : (c <= 110933 || (c < 113792 + ? (c < 113664 + ? (c < 110960 + ? (c >= 110948 && c <= 110951) + : c <= 111355) + : (c <= 113770 || (c >= 113776 && c <= 113788))) + : (c <= 113800 || (c < 119894 + ? (c < 119808 + ? (c >= 113808 && c <= 113817) + : c <= 119892) + : (c <= 119964 || (c >= 119966 && c <= 119967))))))))))) + : (c <= 119970 || (c < 125259 + ? (c < 120630 + ? (c < 120123 + ? (c < 120005 + ? (c < 119982 + ? (c < 119977 + ? (c >= 119973 && c <= 119974) + : c <= 119980) + : (c <= 119993 || (c < 119997 + ? c == 119995 + : c <= 120003))) + : (c <= 120069 || (c < 120086 + ? (c < 120077 + ? (c >= 120071 && c <= 120074) + : c <= 120084) + : (c <= 120092 || (c >= 120094 && c <= 120121))))) + : (c <= 120126 || (c < 120488 + ? (c < 120138 + ? (c < 120134 + ? (c >= 120128 && c <= 120132) + : c <= 120134) + : (c <= 120144 || (c >= 120146 && c <= 120485))) + : (c <= 120512 || (c < 120572 + ? (c < 120540 + ? (c >= 120514 && c <= 120538) + : c <= 120570) + : (c <= 120596 || (c >= 120598 && c <= 120628))))))) + : (c <= 120654 || (c < 123214 + ? (c < 122624 + ? (c < 120714 + ? (c < 120688 + ? (c >= 120656 && c <= 120686) + : c <= 120712) + : (c <= 120744 || (c < 120772 + ? (c >= 120746 && c <= 120770) + : c <= 120779))) + : (c <= 122654 || (c < 123136 + ? (c < 122928 + ? (c >= 122661 && c <= 122666) + : c <= 122989) + : (c <= 123180 || (c >= 123191 && c <= 123197))))) + : (c <= 123214 || (c < 124904 + ? (c < 124112 + ? (c < 123584 + ? (c >= 123536 && c <= 123565) + : c <= 123627) + : (c <= 124139 || (c >= 124896 && c <= 124902))) + : (c <= 124907 || (c < 124928 + ? (c < 124912 + ? (c >= 124909 && c <= 124910) + : c <= 124926) + : (c <= 125124 || (c >= 125184 && c <= 125251))))))))) + : (c <= 125259 || (c < 126559 + ? (c < 126535 + ? (c < 126505 + ? (c < 126497 + ? (c < 126469 + ? (c >= 126464 && c <= 126467) + : c <= 126495) + : (c <= 126498 || (c < 126503 + ? c == 126500 + : c <= 126503))) + : (c <= 126514 || (c < 126523 + ? (c < 126521 + ? (c >= 126516 && c <= 126519) + : c <= 126521) + : (c <= 126523 || c == 126530)))) + : (c <= 126535 || (c < 126548 + ? (c < 126541 + ? (c < 126539 + ? c == 126537 + : c <= 126539) + : (c <= 126543 || (c >= 126545 && c <= 126546))) + : (c <= 126548 || (c < 126555 + ? (c < 126553 + ? c == 126551 + : c <= 126553) + : (c <= 126555 || c == 126557)))))) + : (c <= 126559 || (c < 126629 + ? (c < 126585 + ? (c < 126567 + ? (c < 126564 + ? (c >= 126561 && c <= 126562) + : c <= 126564) + : (c <= 126570 || (c < 126580 + ? (c >= 126572 && c <= 126578) + : c <= 126583))) + : (c <= 126588 || (c < 126603 + ? (c < 126592 + ? c == 126590 + : c <= 126601) + : (c <= 126619 || (c >= 126625 && c <= 126627))))) + : (c <= 126633 || (c < 178208 + ? (c < 173824 + ? (c < 131072 + ? (c >= 126635 && c <= 126651) + : c <= 173791) + : (c <= 177977 || (c >= 177984 && c <= 178205))) + : (c <= 183969 || (c < 196608 + ? (c < 194560 + ? (c >= 183984 && c <= 191456) + : c <= 195101) + : (c <= 201546 || (c >= 201552 && c <= 205743))))))))))))))))); +} + +static inline bool sym_identifier_character_set_3(int32_t c) { + return (c < 43584 + ? (c < 4159 + ? (c < 2649 + ? (c < 1786 + ? (c < 886 + ? (c < 170 + ? (c < 'j' + ? (c < 'a' + ? (c < '_' + ? (c >= 'A' && c <= 'Z') + : c <= '_') + : (c <= 'a' || (c < 'g' + ? c == 'e' + : c <= 'h'))) + : (c <= 'l' || (c < 't' + ? (c < 'q' + ? c == 'o' + : c <= 'r') + : (c <= 't' || (c >= 'w' && c <= 'z'))))) + : (c <= 170 || (c < 710 + ? (c < 192 + ? (c < 186 + ? c == 181 + : c <= 186) + : (c <= 214 || (c < 248 + ? (c >= 216 && c <= 246) + : c <= 705))) + : (c <= 721 || (c < 750 + ? (c < 748 + ? (c >= 736 && c <= 740) + : c <= 748) + : (c <= 750 || (c >= 880 && c <= 884))))))) + : (c <= 887 || (c < 1369 + ? (c < 910 + ? (c < 902 + ? (c < 895 + ? (c >= 891 && c <= 893) + : c <= 895) + : (c <= 902 || (c < 908 + ? (c >= 904 && c <= 906) + : c <= 908))) + : (c <= 929 || (c < 1162 + ? (c < 1015 + ? (c >= 931 && c <= 1013) + : c <= 1153) + : (c <= 1327 || (c >= 1329 && c <= 1366))))) + : (c <= 1369 || (c < 1646 + ? (c < 1519 + ? (c < 1488 + ? (c >= 1376 && c <= 1416) + : c <= 1514) + : (c <= 1522 || (c >= 1568 && c <= 1610))) + : (c <= 1647 || (c < 1765 + ? (c < 1749 + ? (c >= 1649 && c <= 1747) + : c <= 1749) + : (c <= 1766 || (c >= 1774 && c <= 1775))))))))) + : (c <= 1788 || (c < 2392 + ? (c < 2084 + ? (c < 1994 + ? (c < 1810 + ? (c < 1808 + ? c == 1791 + : c <= 1808) + : (c <= 1839 || (c < 1969 + ? (c >= 1869 && c <= 1957) + : c <= 1969))) + : (c <= 2026 || (c < 2048 + ? (c < 2042 + ? (c >= 2036 && c <= 2037) + : c <= 2042) + : (c <= 2069 || c == 2074)))) + : (c <= 2084 || (c < 2185 + ? (c < 2144 + ? (c < 2112 + ? c == 2088 + : c <= 2136) + : (c <= 2154 || (c >= 2160 && c <= 2183))) + : (c <= 2190 || (c < 2365 + ? (c < 2308 + ? (c >= 2208 && c <= 2249) + : c <= 2361) + : (c <= 2365 || c == 2384)))))) + : (c <= 2401 || (c < 2527 + ? (c < 2482 + ? (c < 2447 + ? (c < 2437 + ? (c >= 2417 && c <= 2432) + : c <= 2444) + : (c <= 2448 || (c < 2474 + ? (c >= 2451 && c <= 2472) + : c <= 2480))) + : (c <= 2482 || (c < 2510 + ? (c < 2493 + ? (c >= 2486 && c <= 2489) + : c <= 2493) + : (c <= 2510 || (c >= 2524 && c <= 2525))))) + : (c <= 2529 || (c < 2579 + ? (c < 2565 + ? (c < 2556 + ? (c >= 2544 && c <= 2545) + : c <= 2556) + : (c <= 2570 || (c >= 2575 && c <= 2576))) + : (c <= 2600 || (c < 2613 + ? (c < 2610 + ? (c >= 2602 && c <= 2608) + : c <= 2611) + : (c <= 2614 || (c >= 2616 && c <= 2617))))))))))) + : (c <= 2652 || (c < 3200 + ? (c < 2911 + ? (c < 2784 + ? (c < 2730 + ? (c < 2693 + ? (c < 2674 + ? c == 2654 + : c <= 2676) + : (c <= 2701 || (c < 2707 + ? (c >= 2703 && c <= 2705) + : c <= 2728))) + : (c <= 2736 || (c < 2749 + ? (c < 2741 + ? (c >= 2738 && c <= 2739) + : c <= 2745) + : (c <= 2749 || c == 2768)))) + : (c <= 2785 || (c < 2858 + ? (c < 2831 + ? (c < 2821 + ? c == 2809 + : c <= 2828) + : (c <= 2832 || (c >= 2835 && c <= 2856))) + : (c <= 2864 || (c < 2877 + ? (c < 2869 + ? (c >= 2866 && c <= 2867) + : c <= 2873) + : (c <= 2877 || (c >= 2908 && c <= 2909))))))) + : (c <= 2913 || (c < 2990 + ? (c < 2969 + ? (c < 2949 + ? (c < 2947 + ? c == 2929 + : c <= 2947) + : (c <= 2954 || (c < 2962 + ? (c >= 2958 && c <= 2960) + : c <= 2965))) + : (c <= 2970 || (c < 2979 + ? (c < 2974 + ? c == 2972 + : c <= 2975) + : (c <= 2980 || (c >= 2984 && c <= 2986))))) + : (c <= 3001 || (c < 3114 + ? (c < 3086 + ? (c < 3077 + ? c == 3024 + : c <= 3084) + : (c <= 3088 || (c >= 3090 && c <= 3112))) + : (c <= 3129 || (c < 3165 + ? (c < 3160 + ? c == 3133 + : c <= 3162) + : (c <= 3165 || (c >= 3168 && c <= 3169))))))))) + : (c <= 3200 || (c < 3517 + ? (c < 3342 + ? (c < 3261 + ? (c < 3218 + ? (c < 3214 + ? (c >= 3205 && c <= 3212) + : c <= 3216) + : (c <= 3240 || (c < 3253 + ? (c >= 3242 && c <= 3251) + : c <= 3257))) + : (c <= 3261 || (c < 3313 + ? (c < 3296 + ? (c >= 3293 && c <= 3294) + : c <= 3297) + : (c <= 3314 || (c >= 3332 && c <= 3340))))) + : (c <= 3344 || (c < 3423 + ? (c < 3406 + ? (c < 3389 + ? (c >= 3346 && c <= 3386) + : c <= 3389) + : (c <= 3406 || (c >= 3412 && c <= 3414))) + : (c <= 3425 || (c < 3482 + ? (c < 3461 + ? (c >= 3450 && c <= 3455) + : c <= 3478) + : (c <= 3505 || (c >= 3507 && c <= 3515))))))) + : (c <= 3517 || (c < 3762 + ? (c < 3716 + ? (c < 3634 + ? (c < 3585 + ? (c >= 3520 && c <= 3526) + : c <= 3632) + : (c <= 3634 || (c < 3713 + ? (c >= 3648 && c <= 3654) + : c <= 3714))) + : (c <= 3716 || (c < 3749 + ? (c < 3724 + ? (c >= 3718 && c <= 3722) + : c <= 3747) + : (c <= 3749 || (c >= 3751 && c <= 3760))))) + : (c <= 3762 || (c < 3840 + ? (c < 3782 + ? (c < 3776 + ? c == 3773 + : c <= 3780) + : (c <= 3782 || (c >= 3804 && c <= 3807))) + : (c <= 3840 || (c < 3976 + ? (c < 3913 + ? (c >= 3904 && c <= 3911) + : c <= 3948) + : (c <= 3980 || (c >= 4096 && c <= 4138))))))))))))) + : (c <= 4159 || (c < 8134 + ? (c < 6108 + ? (c < 4800 + ? (c < 4304 + ? (c < 4213 + ? (c < 4193 + ? (c < 4186 + ? (c >= 4176 && c <= 4181) + : c <= 4189) + : (c <= 4193 || (c < 4206 + ? (c >= 4197 && c <= 4198) + : c <= 4208))) + : (c <= 4225 || (c < 4295 + ? (c < 4256 + ? c == 4238 + : c <= 4293) + : (c <= 4295 || c == 4301)))) + : (c <= 4346 || (c < 4704 + ? (c < 4688 + ? (c < 4682 + ? (c >= 4348 && c <= 4680) + : c <= 4685) + : (c <= 4694 || (c < 4698 + ? c == 4696 + : c <= 4701))) + : (c <= 4744 || (c < 4786 + ? (c < 4752 + ? (c >= 4746 && c <= 4749) + : c <= 4784) + : (c <= 4789 || (c >= 4792 && c <= 4798))))))) + : (c <= 4800 || (c < 5761 + ? (c < 4992 + ? (c < 4824 + ? (c < 4808 + ? (c >= 4802 && c <= 4805) + : c <= 4822) + : (c <= 4880 || (c < 4888 + ? (c >= 4882 && c <= 4885) + : c <= 4954))) + : (c <= 5007 || (c < 5121 + ? (c < 5112 + ? (c >= 5024 && c <= 5109) + : c <= 5117) + : (c <= 5740 || (c >= 5743 && c <= 5759))))) + : (c <= 5786 || (c < 5952 + ? (c < 5888 + ? (c < 5870 + ? (c >= 5792 && c <= 5866) + : c <= 5880) + : (c <= 5905 || (c >= 5919 && c <= 5937))) + : (c <= 5969 || (c < 6016 + ? (c < 5998 + ? (c >= 5984 && c <= 5996) + : c <= 6000) + : (c <= 6067 || c == 6103)))))))) + : (c <= 6108 || (c < 7296 + ? (c < 6688 + ? (c < 6480 + ? (c < 6314 + ? (c < 6272 + ? (c >= 6176 && c <= 6264) + : c <= 6312) + : (c <= 6314 || (c < 6400 + ? (c >= 6320 && c <= 6389) + : c <= 6430))) + : (c <= 6509 || (c < 6576 + ? (c < 6528 + ? (c >= 6512 && c <= 6516) + : c <= 6571) + : (c <= 6601 || (c >= 6656 && c <= 6678))))) + : (c <= 6740 || (c < 7086 + ? (c < 6981 + ? (c < 6917 + ? c == 6823 + : c <= 6963) + : (c <= 6988 || (c >= 7043 && c <= 7072))) + : (c <= 7087 || (c < 7245 + ? (c < 7168 + ? (c >= 7098 && c <= 7141) + : c <= 7203) + : (c <= 7247 || (c >= 7258 && c <= 7293))))))) + : (c <= 7304 || (c < 8008 + ? (c < 7418 + ? (c < 7401 + ? (c < 7357 + ? (c >= 7312 && c <= 7354) + : c <= 7359) + : (c <= 7404 || (c < 7413 + ? (c >= 7406 && c <= 7411) + : c <= 7414))) + : (c <= 7418 || (c < 7960 + ? (c < 7680 + ? (c >= 7424 && c <= 7615) + : c <= 7957) + : (c <= 7965 || (c >= 7968 && c <= 8005))))) + : (c <= 8013 || (c < 8031 + ? (c < 8027 + ? (c < 8025 + ? (c >= 8016 && c <= 8023) + : c <= 8025) + : (c <= 8027 || c == 8029)) + : (c <= 8061 || (c < 8126 + ? (c < 8118 + ? (c >= 8064 && c <= 8116) + : c <= 8124) + : (c <= 8126 || (c >= 8130 && c <= 8132))))))))))) + : (c <= 8140 || (c < 12344 + ? (c < 8544 + ? (c < 8458 + ? (c < 8305 + ? (c < 8160 + ? (c < 8150 + ? (c >= 8144 && c <= 8147) + : c <= 8155) + : (c <= 8172 || (c < 8182 + ? (c >= 8178 && c <= 8180) + : c <= 8188))) + : (c <= 8305 || (c < 8450 + ? (c < 8336 + ? c == 8319 + : c <= 8348) + : (c <= 8450 || c == 8455)))) + : (c <= 8467 || (c < 8488 + ? (c < 8484 + ? (c < 8472 + ? c == 8469 + : c <= 8477) + : (c <= 8484 || c == 8486)) + : (c <= 8488 || (c < 8517 + ? (c < 8508 + ? (c >= 8490 && c <= 8505) + : c <= 8511) + : (c <= 8521 || c == 8526)))))) + : (c <= 8584 || (c < 11688 + ? (c < 11565 + ? (c < 11506 + ? (c < 11499 + ? (c >= 11264 && c <= 11492) + : c <= 11502) + : (c <= 11507 || (c < 11559 + ? (c >= 11520 && c <= 11557) + : c <= 11559))) + : (c <= 11565 || (c < 11648 + ? (c < 11631 + ? (c >= 11568 && c <= 11623) + : c <= 11631) + : (c <= 11670 || (c >= 11680 && c <= 11686))))) + : (c <= 11694 || (c < 11728 + ? (c < 11712 + ? (c < 11704 + ? (c >= 11696 && c <= 11702) + : c <= 11710) + : (c <= 11718 || (c >= 11720 && c <= 11726))) + : (c <= 11734 || (c < 12321 + ? (c < 12293 + ? (c >= 11736 && c <= 11742) + : c <= 12295) + : (c <= 12329 || (c >= 12337 && c <= 12341))))))))) + : (c <= 12348 || (c < 42960 + ? (c < 42192 + ? (c < 12593 + ? (c < 12449 + ? (c < 12445 + ? (c >= 12353 && c <= 12438) + : c <= 12447) + : (c <= 12538 || (c < 12549 + ? (c >= 12540 && c <= 12543) + : c <= 12591))) + : (c <= 12686 || (c < 13312 + ? (c < 12784 + ? (c >= 12704 && c <= 12735) + : c <= 12799) + : (c <= 19903 || (c >= 19968 && c <= 42124))))) + : (c <= 42237 || (c < 42623 + ? (c < 42538 + ? (c < 42512 + ? (c >= 42240 && c <= 42508) + : c <= 42527) + : (c <= 42539 || (c >= 42560 && c <= 42606))) + : (c <= 42653 || (c < 42786 + ? (c < 42775 + ? (c >= 42656 && c <= 42735) + : c <= 42783) + : (c <= 42888 || (c >= 42891 && c <= 42954))))))) + : (c <= 42961 || (c < 43261 + ? (c < 43020 + ? (c < 42994 + ? (c < 42965 + ? c == 42963 + : c <= 42969) + : (c <= 43009 || (c < 43015 + ? (c >= 43011 && c <= 43013) + : c <= 43018))) + : (c <= 43042 || (c < 43250 + ? (c < 43138 + ? (c >= 43072 && c <= 43123) + : c <= 43187) + : (c <= 43255 || c == 43259)))) + : (c <= 43262 || (c < 43471 + ? (c < 43360 + ? (c < 43312 + ? (c >= 43274 && c <= 43301) + : c <= 43334) + : (c <= 43388 || (c >= 43396 && c <= 43442))) + : (c <= 43471 || (c < 43514 + ? (c < 43494 + ? (c >= 43488 && c <= 43492) + : c <= 43503) + : (c <= 43518 || (c >= 43520 && c <= 43560))))))))))))))) + : (c <= 43586 || (c < 71128 + ? (c < 67003 + ? (c < 65143 + ? (c < 55216 + ? (c < 43744 + ? (c < 43701 + ? (c < 43642 + ? (c < 43616 + ? (c >= 43588 && c <= 43595) + : c <= 43638) + : (c <= 43642 || (c < 43697 + ? (c >= 43646 && c <= 43695) + : c <= 43697))) + : (c <= 43702 || (c < 43714 + ? (c < 43712 + ? (c >= 43705 && c <= 43709) + : c <= 43712) + : (c <= 43714 || (c >= 43739 && c <= 43741))))) + : (c <= 43754 || (c < 43816 + ? (c < 43785 + ? (c < 43777 + ? (c >= 43762 && c <= 43764) + : c <= 43782) + : (c <= 43790 || (c < 43808 + ? (c >= 43793 && c <= 43798) + : c <= 43814))) + : (c <= 43822 || (c < 43888 + ? (c < 43868 + ? (c >= 43824 && c <= 43866) + : c <= 43881) + : (c <= 44002 || (c >= 44032 && c <= 55203))))))) + : (c <= 55238 || (c < 64320 + ? (c < 64285 + ? (c < 64112 + ? (c < 63744 + ? (c >= 55243 && c <= 55291) + : c <= 64109) + : (c <= 64217 || (c < 64275 + ? (c >= 64256 && c <= 64262) + : c <= 64279))) + : (c <= 64285 || (c < 64312 + ? (c < 64298 + ? (c >= 64287 && c <= 64296) + : c <= 64310) + : (c <= 64316 || c == 64318)))) + : (c <= 64321 || (c < 64848 + ? (c < 64467 + ? (c < 64326 + ? (c >= 64323 && c <= 64324) + : c <= 64433) + : (c <= 64605 || (c >= 64612 && c <= 64829))) + : (c <= 64911 || (c < 65137 + ? (c < 65008 + ? (c >= 64914 && c <= 64967) + : c <= 65017) + : (c <= 65137 || c == 65139)))))))) + : (c <= 65143 || (c < 66176 + ? (c < 65490 + ? (c < 65345 + ? (c < 65149 + ? (c < 65147 + ? c == 65145 + : c <= 65147) + : (c <= 65149 || (c < 65313 + ? (c >= 65151 && c <= 65276) + : c <= 65338))) + : (c <= 65370 || (c < 65474 + ? (c < 65440 + ? (c >= 65382 && c <= 65437) + : c <= 65470) + : (c <= 65479 || (c >= 65482 && c <= 65487))))) + : (c <= 65495 || (c < 65596 + ? (c < 65549 + ? (c < 65536 + ? (c >= 65498 && c <= 65500) + : c <= 65547) + : (c <= 65574 || (c >= 65576 && c <= 65594))) + : (c <= 65597 || (c < 65664 + ? (c < 65616 + ? (c >= 65599 && c <= 65613) + : c <= 65629) + : (c <= 65786 || (c >= 65856 && c <= 65908))))))) + : (c <= 66204 || (c < 66776 + ? (c < 66464 + ? (c < 66349 + ? (c < 66304 + ? (c >= 66208 && c <= 66256) + : c <= 66335) + : (c <= 66378 || (c < 66432 + ? (c >= 66384 && c <= 66421) + : c <= 66461))) + : (c <= 66499 || (c < 66560 + ? (c < 66513 + ? (c >= 66504 && c <= 66511) + : c <= 66517) + : (c <= 66717 || (c >= 66736 && c <= 66771))))) + : (c <= 66811 || (c < 66956 + ? (c < 66928 + ? (c < 66864 + ? (c >= 66816 && c <= 66855) + : c <= 66915) + : (c <= 66938 || (c >= 66940 && c <= 66954))) + : (c <= 66962 || (c < 66979 + ? (c < 66967 + ? (c >= 66964 && c <= 66965) + : c <= 66977) + : (c <= 66993 || (c >= 66995 && c <= 67001))))))))))) + : (c <= 67004 || (c < 69488 + ? (c < 68096 + ? (c < 67644 + ? (c < 67506 + ? (c < 67424 + ? (c < 67392 + ? (c >= 67072 && c <= 67382) + : c <= 67413) + : (c <= 67431 || (c < 67463 + ? (c >= 67456 && c <= 67461) + : c <= 67504))) + : (c <= 67514 || (c < 67594 + ? (c < 67592 + ? (c >= 67584 && c <= 67589) + : c <= 67592) + : (c <= 67637 || (c >= 67639 && c <= 67640))))) + : (c <= 67644 || (c < 67828 + ? (c < 67712 + ? (c < 67680 + ? (c >= 67647 && c <= 67669) + : c <= 67702) + : (c <= 67742 || (c >= 67808 && c <= 67826))) + : (c <= 67829 || (c < 67968 + ? (c < 67872 + ? (c >= 67840 && c <= 67861) + : c <= 67897) + : (c <= 68023 || (c >= 68030 && c <= 68031))))))) + : (c <= 68096 || (c < 68480 + ? (c < 68288 + ? (c < 68121 + ? (c < 68117 + ? (c >= 68112 && c <= 68115) + : c <= 68119) + : (c <= 68149 || (c < 68224 + ? (c >= 68192 && c <= 68220) + : c <= 68252))) + : (c <= 68295 || (c < 68416 + ? (c < 68352 + ? (c >= 68297 && c <= 68324) + : c <= 68405) + : (c <= 68437 || (c >= 68448 && c <= 68466))))) + : (c <= 68497 || (c < 69248 + ? (c < 68800 + ? (c < 68736 + ? (c >= 68608 && c <= 68680) + : c <= 68786) + : (c <= 68850 || (c >= 68864 && c <= 68899))) + : (c <= 69289 || (c < 69415 + ? (c < 69376 + ? (c >= 69296 && c <= 69297) + : c <= 69404) + : (c <= 69415 || (c >= 69424 && c <= 69445))))))))) + : (c <= 69505 || (c < 70280 + ? (c < 69968 + ? (c < 69763 + ? (c < 69635 + ? (c < 69600 + ? (c >= 69552 && c <= 69572) + : c <= 69622) + : (c <= 69687 || (c < 69749 + ? (c >= 69745 && c <= 69746) + : c <= 69749))) + : (c <= 69807 || (c < 69956 + ? (c < 69891 + ? (c >= 69840 && c <= 69864) + : c <= 69926) + : (c <= 69956 || c == 69959)))) + : (c <= 70002 || (c < 70108 + ? (c < 70081 + ? (c < 70019 + ? c == 70006 + : c <= 70066) + : (c <= 70084 || c == 70106)) + : (c <= 70108 || (c < 70207 + ? (c < 70163 + ? (c >= 70144 && c <= 70161) + : c <= 70187) + : (c <= 70208 || (c >= 70272 && c <= 70278))))))) + : (c <= 70280 || (c < 70461 + ? (c < 70415 + ? (c < 70303 + ? (c < 70287 + ? (c >= 70282 && c <= 70285) + : c <= 70301) + : (c <= 70312 || (c < 70405 + ? (c >= 70320 && c <= 70366) + : c <= 70412))) + : (c <= 70416 || (c < 70450 + ? (c < 70442 + ? (c >= 70419 && c <= 70440) + : c <= 70448) + : (c <= 70451 || (c >= 70453 && c <= 70457))))) + : (c <= 70461 || (c < 70751 + ? (c < 70656 + ? (c < 70493 + ? c == 70480 + : c <= 70497) + : (c <= 70708 || (c >= 70727 && c <= 70730))) + : (c <= 70753 || (c < 70855 + ? (c < 70852 + ? (c >= 70784 && c <= 70831) + : c <= 70853) + : (c <= 70855 || (c >= 71040 && c <= 71086))))))))))))) + : (c <= 71131 || (c < 119970 + ? (c < 73490 + ? (c < 72203 + ? (c < 71948 + ? (c < 71488 + ? (c < 71296 + ? (c < 71236 + ? (c >= 71168 && c <= 71215) + : c <= 71236) + : (c <= 71338 || (c < 71424 + ? c == 71352 + : c <= 71450))) + : (c <= 71494 || (c < 71935 + ? (c < 71840 + ? (c >= 71680 && c <= 71723) + : c <= 71903) + : (c <= 71942 || c == 71945)))) + : (c <= 71955 || (c < 72096 + ? (c < 71999 + ? (c < 71960 + ? (c >= 71957 && c <= 71958) + : c <= 71983) + : (c <= 71999 || c == 72001)) + : (c <= 72103 || (c < 72163 + ? (c < 72161 + ? (c >= 72106 && c <= 72144) + : c <= 72161) + : (c <= 72163 || c == 72192)))))) + : (c <= 72242 || (c < 72968 + ? (c < 72704 + ? (c < 72284 + ? (c < 72272 + ? c == 72250 + : c <= 72272) + : (c <= 72329 || (c < 72368 + ? c == 72349 + : c <= 72440))) + : (c <= 72712 || (c < 72818 + ? (c < 72768 + ? (c >= 72714 && c <= 72750) + : c <= 72768) + : (c <= 72847 || (c >= 72960 && c <= 72966))))) + : (c <= 72969 || (c < 73066 + ? (c < 73056 + ? (c < 73030 + ? (c >= 72971 && c <= 73008) + : c <= 73030) + : (c <= 73061 || (c >= 73063 && c <= 73064))) + : (c <= 73097 || (c < 73474 + ? (c < 73440 + ? c == 73112 + : c <= 73458) + : (c <= 73474 || (c >= 73476 && c <= 73488))))))))) + : (c <= 73523 || (c < 94176 + ? (c < 92784 + ? (c < 77824 + ? (c < 74752 + ? (c < 73728 + ? c == 73648 + : c <= 74649) + : (c <= 74862 || (c < 77712 + ? (c >= 74880 && c <= 75075) + : c <= 77808))) + : (c <= 78895 || (c < 92160 + ? (c < 82944 + ? (c >= 78913 && c <= 78918) + : c <= 83526) + : (c <= 92728 || (c >= 92736 && c <= 92766))))) + : (c <= 92862 || (c < 93053 + ? (c < 92992 + ? (c < 92928 + ? (c >= 92880 && c <= 92909) + : c <= 92975) + : (c <= 92995 || (c >= 93027 && c <= 93047))) + : (c <= 93071 || (c < 94032 + ? (c < 93952 + ? (c >= 93760 && c <= 93823) + : c <= 94026) + : (c <= 94032 || (c >= 94099 && c <= 94111))))))) + : (c <= 94177 || (c < 110933 + ? (c < 110581 + ? (c < 100352 + ? (c < 94208 + ? c == 94179 + : c <= 100343) + : (c <= 101589 || (c < 110576 + ? (c >= 101632 && c <= 101640) + : c <= 110579))) + : (c <= 110587 || (c < 110898 + ? (c < 110592 + ? (c >= 110589 && c <= 110590) + : c <= 110882) + : (c <= 110898 || (c >= 110928 && c <= 110930))))) + : (c <= 110933 || (c < 113792 + ? (c < 113664 + ? (c < 110960 + ? (c >= 110948 && c <= 110951) + : c <= 111355) + : (c <= 113770 || (c >= 113776 && c <= 113788))) + : (c <= 113800 || (c < 119894 + ? (c < 119808 + ? (c >= 113808 && c <= 113817) + : c <= 119892) + : (c <= 119964 || (c >= 119966 && c <= 119967))))))))))) + : (c <= 119970 || (c < 125259 + ? (c < 120630 + ? (c < 120123 + ? (c < 120005 + ? (c < 119982 + ? (c < 119977 + ? (c >= 119973 && c <= 119974) + : c <= 119980) + : (c <= 119993 || (c < 119997 + ? c == 119995 + : c <= 120003))) + : (c <= 120069 || (c < 120086 + ? (c < 120077 + ? (c >= 120071 && c <= 120074) + : c <= 120084) + : (c <= 120092 || (c >= 120094 && c <= 120121))))) + : (c <= 120126 || (c < 120488 + ? (c < 120138 + ? (c < 120134 + ? (c >= 120128 && c <= 120132) + : c <= 120134) + : (c <= 120144 || (c >= 120146 && c <= 120485))) + : (c <= 120512 || (c < 120572 + ? (c < 120540 + ? (c >= 120514 && c <= 120538) + : c <= 120570) + : (c <= 120596 || (c >= 120598 && c <= 120628))))))) + : (c <= 120654 || (c < 123214 + ? (c < 122624 + ? (c < 120714 + ? (c < 120688 + ? (c >= 120656 && c <= 120686) + : c <= 120712) + : (c <= 120744 || (c < 120772 + ? (c >= 120746 && c <= 120770) + : c <= 120779))) + : (c <= 122654 || (c < 123136 + ? (c < 122928 + ? (c >= 122661 && c <= 122666) + : c <= 122989) + : (c <= 123180 || (c >= 123191 && c <= 123197))))) + : (c <= 123214 || (c < 124904 + ? (c < 124112 + ? (c < 123584 + ? (c >= 123536 && c <= 123565) + : c <= 123627) + : (c <= 124139 || (c >= 124896 && c <= 124902))) + : (c <= 124907 || (c < 124928 + ? (c < 124912 + ? (c >= 124909 && c <= 124910) + : c <= 124926) + : (c <= 125124 || (c >= 125184 && c <= 125251))))))))) + : (c <= 125259 || (c < 126559 + ? (c < 126535 + ? (c < 126505 + ? (c < 126497 + ? (c < 126469 + ? (c >= 126464 && c <= 126467) + : c <= 126495) + : (c <= 126498 || (c < 126503 + ? c == 126500 + : c <= 126503))) + : (c <= 126514 || (c < 126523 + ? (c < 126521 + ? (c >= 126516 && c <= 126519) + : c <= 126521) + : (c <= 126523 || c == 126530)))) + : (c <= 126535 || (c < 126548 + ? (c < 126541 + ? (c < 126539 + ? c == 126537 + : c <= 126539) + : (c <= 126543 || (c >= 126545 && c <= 126546))) + : (c <= 126548 || (c < 126555 + ? (c < 126553 + ? c == 126551 + : c <= 126553) + : (c <= 126555 || c == 126557)))))) + : (c <= 126559 || (c < 126629 + ? (c < 126585 + ? (c < 126567 + ? (c < 126564 + ? (c >= 126561 && c <= 126562) + : c <= 126564) + : (c <= 126570 || (c < 126580 + ? (c >= 126572 && c <= 126578) + : c <= 126583))) + : (c <= 126588 || (c < 126603 + ? (c < 126592 + ? c == 126590 + : c <= 126601) + : (c <= 126619 || (c >= 126625 && c <= 126627))))) + : (c <= 126633 || (c < 178208 + ? (c < 173824 + ? (c < 131072 + ? (c >= 126635 && c <= 126651) + : c <= 173791) + : (c <= 177977 || (c >= 177984 && c <= 178205))) + : (c <= 183969 || (c < 196608 + ? (c < 194560 + ? (c >= 183984 && c <= 191456) + : c <= 195101) + : (c <= 201546 || (c >= 201552 && c <= 205743))))))))))))))))); +} + +static inline bool sym_identifier_character_set_4(int32_t c) { + return (c < 43642 + ? (c < 4206 + ? (c < 2730 + ? (c < 1994 + ? (c < 910 + ? (c < 736 + ? (c < 186 + ? (c < 'a' + ? (c < '_' + ? (c >= 'A' && c <= 'Z') + : c <= '_') + : (c <= 'z' || (c < 181 + ? c == 170 + : c <= 181))) + : (c <= 186 || (c < 248 + ? (c < 216 + ? (c >= 192 && c <= 214) + : c <= 246) + : (c <= 705 || (c >= 710 && c <= 721))))) + : (c <= 740 || (c < 891 + ? (c < 880 + ? (c < 750 + ? c == 748 + : c <= 750) + : (c <= 884 || (c >= 886 && c <= 887))) + : (c <= 893 || (c < 904 + ? (c < 902 + ? c == 895 + : c <= 902) + : (c <= 906 || c == 908)))))) + : (c <= 929 || (c < 1649 + ? (c < 1376 + ? (c < 1162 + ? (c < 1015 + ? (c >= 931 && c <= 1013) + : c <= 1153) + : (c <= 1327 || (c < 1369 + ? (c >= 1329 && c <= 1366) + : c <= 1369))) + : (c <= 1416 || (c < 1568 + ? (c < 1519 + ? (c >= 1488 && c <= 1514) + : c <= 1522) + : (c <= 1610 || (c >= 1646 && c <= 1647))))) + : (c <= 1747 || (c < 1791 + ? (c < 1774 + ? (c < 1765 + ? c == 1749 + : c <= 1766) + : (c <= 1775 || (c >= 1786 && c <= 1788))) + : (c <= 1791 || (c < 1869 + ? (c < 1810 + ? c == 1808 + : c <= 1839) + : (c <= 1957 || c == 1969)))))))) + : (c <= 2026 || (c < 2482 + ? (c < 2208 + ? (c < 2088 + ? (c < 2048 + ? (c < 2042 + ? (c >= 2036 && c <= 2037) + : c <= 2042) + : (c <= 2069 || (c < 2084 + ? c == 2074 + : c <= 2084))) + : (c <= 2088 || (c < 2160 + ? (c < 2144 + ? (c >= 2112 && c <= 2136) + : c <= 2154) + : (c <= 2183 || (c >= 2185 && c <= 2190))))) + : (c <= 2249 || (c < 2417 + ? (c < 2384 + ? (c < 2365 + ? (c >= 2308 && c <= 2361) + : c <= 2365) + : (c <= 2384 || (c >= 2392 && c <= 2401))) + : (c <= 2432 || (c < 2451 + ? (c < 2447 + ? (c >= 2437 && c <= 2444) + : c <= 2448) + : (c <= 2472 || (c >= 2474 && c <= 2480))))))) + : (c <= 2482 || (c < 2602 + ? (c < 2544 + ? (c < 2510 + ? (c < 2493 + ? (c >= 2486 && c <= 2489) + : c <= 2493) + : (c <= 2510 || (c < 2527 + ? (c >= 2524 && c <= 2525) + : c <= 2529))) + : (c <= 2545 || (c < 2575 + ? (c < 2565 + ? c == 2556 + : c <= 2570) + : (c <= 2576 || (c >= 2579 && c <= 2600))))) + : (c <= 2608 || (c < 2654 + ? (c < 2616 + ? (c < 2613 + ? (c >= 2610 && c <= 2611) + : c <= 2614) + : (c <= 2617 || (c >= 2649 && c <= 2652))) + : (c <= 2654 || (c < 2703 + ? (c < 2693 + ? (c >= 2674 && c <= 2676) + : c <= 2701) + : (c <= 2705 || (c >= 2707 && c <= 2728))))))))))) + : (c <= 2736 || (c < 3261 + ? (c < 2969 + ? (c < 2866 + ? (c < 2809 + ? (c < 2749 + ? (c < 2741 + ? (c >= 2738 && c <= 2739) + : c <= 2745) + : (c <= 2749 || (c < 2784 + ? c == 2768 + : c <= 2785))) + : (c <= 2809 || (c < 2835 + ? (c < 2831 + ? (c >= 2821 && c <= 2828) + : c <= 2832) + : (c <= 2856 || (c >= 2858 && c <= 2864))))) + : (c <= 2867 || (c < 2929 + ? (c < 2908 + ? (c < 2877 + ? (c >= 2869 && c <= 2873) + : c <= 2877) + : (c <= 2909 || (c >= 2911 && c <= 2913))) + : (c <= 2929 || (c < 2958 + ? (c < 2949 + ? c == 2947 + : c <= 2954) + : (c <= 2960 || (c >= 2962 && c <= 2965))))))) + : (c <= 2970 || (c < 3133 + ? (c < 3024 + ? (c < 2979 + ? (c < 2974 + ? c == 2972 + : c <= 2975) + : (c <= 2980 || (c < 2990 + ? (c >= 2984 && c <= 2986) + : c <= 3001))) + : (c <= 3024 || (c < 3090 + ? (c < 3086 + ? (c >= 3077 && c <= 3084) + : c <= 3088) + : (c <= 3112 || (c >= 3114 && c <= 3129))))) + : (c <= 3133 || (c < 3205 + ? (c < 3168 + ? (c < 3165 + ? (c >= 3160 && c <= 3162) + : c <= 3165) + : (c <= 3169 || c == 3200)) + : (c <= 3212 || (c < 3242 + ? (c < 3218 + ? (c >= 3214 && c <= 3216) + : c <= 3240) + : (c <= 3251 || (c >= 3253 && c <= 3257))))))))) + : (c <= 3261 || (c < 3716 + ? (c < 3450 + ? (c < 3346 + ? (c < 3313 + ? (c < 3296 + ? (c >= 3293 && c <= 3294) + : c <= 3297) + : (c <= 3314 || (c < 3342 + ? (c >= 3332 && c <= 3340) + : c <= 3344))) + : (c <= 3386 || (c < 3412 + ? (c < 3406 + ? c == 3389 + : c <= 3406) + : (c <= 3414 || (c >= 3423 && c <= 3425))))) + : (c <= 3455 || (c < 3520 + ? (c < 3507 + ? (c < 3482 + ? (c >= 3461 && c <= 3478) + : c <= 3505) + : (c <= 3515 || c == 3517)) + : (c <= 3526 || (c < 3648 + ? (c < 3634 + ? (c >= 3585 && c <= 3632) + : c <= 3634) + : (c <= 3654 || (c >= 3713 && c <= 3714))))))) + : (c <= 3716 || (c < 3840 + ? (c < 3762 + ? (c < 3749 + ? (c < 3724 + ? (c >= 3718 && c <= 3722) + : c <= 3747) + : (c <= 3749 || (c >= 3751 && c <= 3760))) + : (c <= 3762 || (c < 3782 + ? (c < 3776 + ? c == 3773 + : c <= 3780) + : (c <= 3782 || (c >= 3804 && c <= 3807))))) + : (c <= 3840 || (c < 4159 + ? (c < 3976 + ? (c < 3913 + ? (c >= 3904 && c <= 3911) + : c <= 3948) + : (c <= 3980 || (c >= 4096 && c <= 4138))) + : (c <= 4159 || (c < 4193 + ? (c < 4186 + ? (c >= 4176 && c <= 4181) + : c <= 4189) + : (c <= 4193 || (c >= 4197 && c <= 4198))))))))))))) + : (c <= 4208 || (c < 8178 + ? (c < 6320 + ? (c < 4882 + ? (c < 4698 + ? (c < 4304 + ? (c < 4256 + ? (c < 4238 + ? (c >= 4213 && c <= 4225) + : c <= 4238) + : (c <= 4293 || (c < 4301 + ? c == 4295 + : c <= 4301))) + : (c <= 4346 || (c < 4688 + ? (c < 4682 + ? (c >= 4348 && c <= 4680) + : c <= 4685) + : (c <= 4694 || c == 4696)))) + : (c <= 4701 || (c < 4792 + ? (c < 4752 + ? (c < 4746 + ? (c >= 4704 && c <= 4744) + : c <= 4749) + : (c <= 4784 || (c >= 4786 && c <= 4789))) + : (c <= 4798 || (c < 4808 + ? (c < 4802 + ? c == 4800 + : c <= 4805) + : (c <= 4822 || (c >= 4824 && c <= 4880))))))) + : (c <= 4885 || (c < 5919 + ? (c < 5743 + ? (c < 5024 + ? (c < 4992 + ? (c >= 4888 && c <= 4954) + : c <= 5007) + : (c <= 5109 || (c < 5121 + ? (c >= 5112 && c <= 5117) + : c <= 5740))) + : (c <= 5759 || (c < 5870 + ? (c < 5792 + ? (c >= 5761 && c <= 5786) + : c <= 5866) + : (c <= 5880 || (c >= 5888 && c <= 5905))))) + : (c <= 5937 || (c < 6103 + ? (c < 5998 + ? (c < 5984 + ? (c >= 5952 && c <= 5969) + : c <= 5996) + : (c <= 6000 || (c >= 6016 && c <= 6067))) + : (c <= 6103 || (c < 6272 + ? (c < 6176 + ? c == 6108 + : c <= 6264) + : (c <= 6312 || c == 6314)))))))) + : (c <= 6389 || (c < 7406 + ? (c < 7043 + ? (c < 6656 + ? (c < 6512 + ? (c < 6480 + ? (c >= 6400 && c <= 6430) + : c <= 6509) + : (c <= 6516 || (c < 6576 + ? (c >= 6528 && c <= 6571) + : c <= 6601))) + : (c <= 6678 || (c < 6917 + ? (c < 6823 + ? (c >= 6688 && c <= 6740) + : c <= 6823) + : (c <= 6963 || (c >= 6981 && c <= 6988))))) + : (c <= 7072 || (c < 7258 + ? (c < 7168 + ? (c < 7098 + ? (c >= 7086 && c <= 7087) + : c <= 7141) + : (c <= 7203 || (c >= 7245 && c <= 7247))) + : (c <= 7293 || (c < 7357 + ? (c < 7312 + ? (c >= 7296 && c <= 7304) + : c <= 7354) + : (c <= 7359 || (c >= 7401 && c <= 7404))))))) + : (c <= 7411 || (c < 8029 + ? (c < 7968 + ? (c < 7424 + ? (c < 7418 + ? (c >= 7413 && c <= 7414) + : c <= 7418) + : (c <= 7615 || (c < 7960 + ? (c >= 7680 && c <= 7957) + : c <= 7965))) + : (c <= 8005 || (c < 8025 + ? (c < 8016 + ? (c >= 8008 && c <= 8013) + : c <= 8023) + : (c <= 8025 || c == 8027)))) + : (c <= 8029 || (c < 8130 + ? (c < 8118 + ? (c < 8064 + ? (c >= 8031 && c <= 8061) + : c <= 8116) + : (c <= 8124 || c == 8126)) + : (c <= 8132 || (c < 8150 + ? (c < 8144 + ? (c >= 8134 && c <= 8140) + : c <= 8147) + : (c <= 8155 || (c >= 8160 && c <= 8172))))))))))) + : (c <= 8180 || (c < 12540 + ? (c < 11520 + ? (c < 8486 + ? (c < 8455 + ? (c < 8319 + ? (c < 8305 + ? (c >= 8182 && c <= 8188) + : c <= 8305) + : (c <= 8319 || (c < 8450 + ? (c >= 8336 && c <= 8348) + : c <= 8450))) + : (c <= 8455 || (c < 8472 + ? (c < 8469 + ? (c >= 8458 && c <= 8467) + : c <= 8469) + : (c <= 8477 || c == 8484)))) + : (c <= 8486 || (c < 8526 + ? (c < 8508 + ? (c < 8490 + ? c == 8488 + : c <= 8505) + : (c <= 8511 || (c >= 8517 && c <= 8521))) + : (c <= 8526 || (c < 11499 + ? (c < 11264 + ? (c >= 8544 && c <= 8584) + : c <= 11492) + : (c <= 11502 || (c >= 11506 && c <= 11507))))))) + : (c <= 11557 || (c < 11720 + ? (c < 11680 + ? (c < 11568 + ? (c < 11565 + ? c == 11559 + : c <= 11565) + : (c <= 11623 || (c < 11648 + ? c == 11631 + : c <= 11670))) + : (c <= 11686 || (c < 11704 + ? (c < 11696 + ? (c >= 11688 && c <= 11694) + : c <= 11702) + : (c <= 11710 || (c >= 11712 && c <= 11718))))) + : (c <= 11726 || (c < 12337 + ? (c < 12293 + ? (c < 11736 + ? (c >= 11728 && c <= 11734) + : c <= 11742) + : (c <= 12295 || (c >= 12321 && c <= 12329))) + : (c <= 12341 || (c < 12445 + ? (c < 12353 + ? (c >= 12344 && c <= 12348) + : c <= 12438) + : (c <= 12447 || (c >= 12449 && c <= 12538))))))))) + : (c <= 12543 || (c < 43011 + ? (c < 42560 + ? (c < 19968 + ? (c < 12704 + ? (c < 12593 + ? (c >= 12549 && c <= 12591) + : c <= 12686) + : (c <= 12735 || (c < 13312 + ? (c >= 12784 && c <= 12799) + : c <= 19903))) + : (c <= 42124 || (c < 42512 + ? (c < 42240 + ? (c >= 42192 && c <= 42237) + : c <= 42508) + : (c <= 42527 || (c >= 42538 && c <= 42539))))) + : (c <= 42606 || (c < 42891 + ? (c < 42775 + ? (c < 42656 + ? (c >= 42623 && c <= 42653) + : c <= 42735) + : (c <= 42783 || (c >= 42786 && c <= 42888))) + : (c <= 42954 || (c < 42965 + ? (c < 42963 + ? (c >= 42960 && c <= 42961) + : c <= 42963) + : (c <= 42969 || (c >= 42994 && c <= 43009))))))) + : (c <= 43013 || (c < 43360 + ? (c < 43250 + ? (c < 43072 + ? (c < 43020 + ? (c >= 43015 && c <= 43018) + : c <= 43042) + : (c <= 43123 || (c >= 43138 && c <= 43187))) + : (c <= 43255 || (c < 43274 + ? (c < 43261 + ? c == 43259 + : c <= 43262) + : (c <= 43301 || (c >= 43312 && c <= 43334))))) + : (c <= 43388 || (c < 43514 + ? (c < 43488 + ? (c < 43471 + ? (c >= 43396 && c <= 43442) + : c <= 43471) + : (c <= 43492 || (c >= 43494 && c <= 43503))) + : (c <= 43518 || (c < 43588 + ? (c < 43584 + ? (c >= 43520 && c <= 43560) + : c <= 43586) + : (c <= 43595 || (c >= 43616 && c <= 43638))))))))))))))) + : (c <= 43642 || (c < 71168 + ? (c < 67392 + ? (c < 65147 + ? (c < 63744 + ? (c < 43785 + ? (c < 43714 + ? (c < 43701 + ? (c < 43697 + ? (c >= 43646 && c <= 43695) + : c <= 43697) + : (c <= 43702 || (c < 43712 + ? (c >= 43705 && c <= 43709) + : c <= 43712))) + : (c <= 43714 || (c < 43762 + ? (c < 43744 + ? (c >= 43739 && c <= 43741) + : c <= 43754) + : (c <= 43764 || (c >= 43777 && c <= 43782))))) + : (c <= 43790 || (c < 43868 + ? (c < 43816 + ? (c < 43808 + ? (c >= 43793 && c <= 43798) + : c <= 43814) + : (c <= 43822 || (c >= 43824 && c <= 43866))) + : (c <= 43881 || (c < 55216 + ? (c < 44032 + ? (c >= 43888 && c <= 44002) + : c <= 55203) + : (c <= 55238 || (c >= 55243 && c <= 55291))))))) + : (c <= 64109 || (c < 64326 + ? (c < 64298 + ? (c < 64275 + ? (c < 64256 + ? (c >= 64112 && c <= 64217) + : c <= 64262) + : (c <= 64279 || (c < 64287 + ? c == 64285 + : c <= 64296))) + : (c <= 64310 || (c < 64320 + ? (c < 64318 + ? (c >= 64312 && c <= 64316) + : c <= 64318) + : (c <= 64321 || (c >= 64323 && c <= 64324))))) + : (c <= 64433 || (c < 65008 + ? (c < 64848 + ? (c < 64612 + ? (c >= 64467 && c <= 64605) + : c <= 64829) + : (c <= 64911 || (c >= 64914 && c <= 64967))) + : (c <= 65017 || (c < 65143 + ? (c < 65139 + ? c == 65137 + : c <= 65139) + : (c <= 65143 || c == 65145)))))))) + : (c <= 65147 || (c < 66304 + ? (c < 65536 + ? (c < 65440 + ? (c < 65313 + ? (c < 65151 + ? c == 65149 + : c <= 65276) + : (c <= 65338 || (c < 65382 + ? (c >= 65345 && c <= 65370) + : c <= 65437))) + : (c <= 65470 || (c < 65490 + ? (c < 65482 + ? (c >= 65474 && c <= 65479) + : c <= 65487) + : (c <= 65495 || (c >= 65498 && c <= 65500))))) + : (c <= 65547 || (c < 65616 + ? (c < 65596 + ? (c < 65576 + ? (c >= 65549 && c <= 65574) + : c <= 65594) + : (c <= 65597 || (c >= 65599 && c <= 65613))) + : (c <= 65629 || (c < 66176 + ? (c < 65856 + ? (c >= 65664 && c <= 65786) + : c <= 65908) + : (c <= 66204 || (c >= 66208 && c <= 66256))))))) + : (c <= 66335 || (c < 66864 + ? (c < 66513 + ? (c < 66432 + ? (c < 66384 + ? (c >= 66349 && c <= 66378) + : c <= 66421) + : (c <= 66461 || (c < 66504 + ? (c >= 66464 && c <= 66499) + : c <= 66511))) + : (c <= 66517 || (c < 66776 + ? (c < 66736 + ? (c >= 66560 && c <= 66717) + : c <= 66771) + : (c <= 66811 || (c >= 66816 && c <= 66855))))) + : (c <= 66915 || (c < 66967 + ? (c < 66956 + ? (c < 66940 + ? (c >= 66928 && c <= 66938) + : c <= 66954) + : (c <= 66962 || (c >= 66964 && c <= 66965))) + : (c <= 66977 || (c < 67003 + ? (c < 66995 + ? (c >= 66979 && c <= 66993) + : c <= 67001) + : (c <= 67004 || (c >= 67072 && c <= 67382))))))))))) + : (c <= 67413 || (c < 69600 + ? (c < 68117 + ? (c < 67680 + ? (c < 67592 + ? (c < 67463 + ? (c < 67456 + ? (c >= 67424 && c <= 67431) + : c <= 67461) + : (c <= 67504 || (c < 67584 + ? (c >= 67506 && c <= 67514) + : c <= 67589))) + : (c <= 67592 || (c < 67644 + ? (c < 67639 + ? (c >= 67594 && c <= 67637) + : c <= 67640) + : (c <= 67644 || (c >= 67647 && c <= 67669))))) + : (c <= 67702 || (c < 67872 + ? (c < 67828 + ? (c < 67808 + ? (c >= 67712 && c <= 67742) + : c <= 67826) + : (c <= 67829 || (c >= 67840 && c <= 67861))) + : (c <= 67897 || (c < 68096 + ? (c < 68030 + ? (c >= 67968 && c <= 68023) + : c <= 68031) + : (c <= 68096 || (c >= 68112 && c <= 68115))))))) + : (c <= 68119 || (c < 68736 + ? (c < 68352 + ? (c < 68224 + ? (c < 68192 + ? (c >= 68121 && c <= 68149) + : c <= 68220) + : (c <= 68252 || (c < 68297 + ? (c >= 68288 && c <= 68295) + : c <= 68324))) + : (c <= 68405 || (c < 68480 + ? (c < 68448 + ? (c >= 68416 && c <= 68437) + : c <= 68466) + : (c <= 68497 || (c >= 68608 && c <= 68680))))) + : (c <= 68786 || (c < 69376 + ? (c < 69248 + ? (c < 68864 + ? (c >= 68800 && c <= 68850) + : c <= 68899) + : (c <= 69289 || (c >= 69296 && c <= 69297))) + : (c <= 69404 || (c < 69488 + ? (c < 69424 + ? c == 69415 + : c <= 69445) + : (c <= 69505 || (c >= 69552 && c <= 69572))))))))) + : (c <= 69622 || (c < 70287 + ? (c < 70019 + ? (c < 69891 + ? (c < 69749 + ? (c < 69745 + ? (c >= 69635 && c <= 69687) + : c <= 69746) + : (c <= 69749 || (c < 69840 + ? (c >= 69763 && c <= 69807) + : c <= 69864))) + : (c <= 69926 || (c < 69968 + ? (c < 69959 + ? c == 69956 + : c <= 69959) + : (c <= 70002 || c == 70006)))) + : (c <= 70066 || (c < 70163 + ? (c < 70108 + ? (c < 70106 + ? (c >= 70081 && c <= 70084) + : c <= 70106) + : (c <= 70108 || (c >= 70144 && c <= 70161))) + : (c <= 70187 || (c < 70280 + ? (c < 70272 + ? (c >= 70207 && c <= 70208) + : c <= 70278) + : (c <= 70280 || (c >= 70282 && c <= 70285))))))) + : (c <= 70301 || (c < 70480 + ? (c < 70419 + ? (c < 70405 + ? (c < 70320 + ? (c >= 70303 && c <= 70312) + : c <= 70366) + : (c <= 70412 || (c >= 70415 && c <= 70416))) + : (c <= 70440 || (c < 70453 + ? (c < 70450 + ? (c >= 70442 && c <= 70448) + : c <= 70451) + : (c <= 70457 || c == 70461)))) + : (c <= 70480 || (c < 70784 + ? (c < 70727 + ? (c < 70656 + ? (c >= 70493 && c <= 70497) + : c <= 70708) + : (c <= 70730 || (c >= 70751 && c <= 70753))) + : (c <= 70831 || (c < 71040 + ? (c < 70855 + ? (c >= 70852 && c <= 70853) + : c <= 70855) + : (c <= 71086 || (c >= 71128 && c <= 71131))))))))))))) + : (c <= 71215 || (c < 119973 + ? (c < 73648 + ? (c < 72250 + ? (c < 71957 + ? (c < 71680 + ? (c < 71352 + ? (c < 71296 + ? c == 71236 + : c <= 71338) + : (c <= 71352 || (c < 71488 + ? (c >= 71424 && c <= 71450) + : c <= 71494))) + : (c <= 71723 || (c < 71945 + ? (c < 71935 + ? (c >= 71840 && c <= 71903) + : c <= 71942) + : (c <= 71945 || (c >= 71948 && c <= 71955))))) + : (c <= 71958 || (c < 72106 + ? (c < 72001 + ? (c < 71999 + ? (c >= 71960 && c <= 71983) + : c <= 71999) + : (c <= 72001 || (c >= 72096 && c <= 72103))) + : (c <= 72144 || (c < 72192 + ? (c < 72163 + ? c == 72161 + : c <= 72163) + : (c <= 72192 || (c >= 72203 && c <= 72242))))))) + : (c <= 72250 || (c < 72971 + ? (c < 72714 + ? (c < 72349 + ? (c < 72284 + ? c == 72272 + : c <= 72329) + : (c <= 72349 || (c < 72704 + ? (c >= 72368 && c <= 72440) + : c <= 72712))) + : (c <= 72750 || (c < 72960 + ? (c < 72818 + ? c == 72768 + : c <= 72847) + : (c <= 72966 || (c >= 72968 && c <= 72969))))) + : (c <= 73008 || (c < 73112 + ? (c < 73063 + ? (c < 73056 + ? c == 73030 + : c <= 73061) + : (c <= 73064 || (c >= 73066 && c <= 73097))) + : (c <= 73112 || (c < 73476 + ? (c < 73474 + ? (c >= 73440 && c <= 73458) + : c <= 73474) + : (c <= 73488 || (c >= 73490 && c <= 73523))))))))) + : (c <= 73648 || (c < 94179 + ? (c < 92880 + ? (c < 78913 + ? (c < 74880 + ? (c < 74752 + ? (c >= 73728 && c <= 74649) + : c <= 74862) + : (c <= 75075 || (c < 77824 + ? (c >= 77712 && c <= 77808) + : c <= 78895))) + : (c <= 78918 || (c < 92736 + ? (c < 92160 + ? (c >= 82944 && c <= 83526) + : c <= 92728) + : (c <= 92766 || (c >= 92784 && c <= 92862))))) + : (c <= 92909 || (c < 93760 + ? (c < 93027 + ? (c < 92992 + ? (c >= 92928 && c <= 92975) + : c <= 92995) + : (c <= 93047 || (c >= 93053 && c <= 93071))) + : (c <= 93823 || (c < 94099 + ? (c < 94032 + ? (c >= 93952 && c <= 94026) + : c <= 94032) + : (c <= 94111 || (c >= 94176 && c <= 94177))))))) + : (c <= 94179 || (c < 110948 + ? (c < 110589 + ? (c < 101632 + ? (c < 100352 + ? (c >= 94208 && c <= 100343) + : c <= 101589) + : (c <= 101640 || (c < 110581 + ? (c >= 110576 && c <= 110579) + : c <= 110587))) + : (c <= 110590 || (c < 110928 + ? (c < 110898 + ? (c >= 110592 && c <= 110882) + : c <= 110898) + : (c <= 110930 || c == 110933)))) + : (c <= 110951 || (c < 113808 + ? (c < 113776 + ? (c < 113664 + ? (c >= 110960 && c <= 111355) + : c <= 113770) + : (c <= 113788 || (c >= 113792 && c <= 113800))) + : (c <= 113817 || (c < 119966 + ? (c < 119894 + ? (c >= 119808 && c <= 119892) + : c <= 119964) + : (c <= 119967 || c == 119970)))))))))) + : (c <= 119974 || (c < 126464 + ? (c < 120656 + ? (c < 120128 + ? (c < 120071 + ? (c < 119995 + ? (c < 119982 + ? (c >= 119977 && c <= 119980) + : c <= 119993) + : (c <= 119995 || (c < 120005 + ? (c >= 119997 && c <= 120003) + : c <= 120069))) + : (c <= 120074 || (c < 120094 + ? (c < 120086 + ? (c >= 120077 && c <= 120084) + : c <= 120092) + : (c <= 120121 || (c >= 120123 && c <= 120126))))) + : (c <= 120132 || (c < 120514 + ? (c < 120146 + ? (c < 120138 + ? c == 120134 + : c <= 120144) + : (c <= 120485 || (c >= 120488 && c <= 120512))) + : (c <= 120538 || (c < 120598 + ? (c < 120572 + ? (c >= 120540 && c <= 120570) + : c <= 120596) + : (c <= 120628 || (c >= 120630 && c <= 120654))))))) + : (c <= 120686 || (c < 123536 + ? (c < 122661 + ? (c < 120746 + ? (c < 120714 + ? (c >= 120688 && c <= 120712) + : c <= 120744) + : (c <= 120770 || (c < 122624 + ? (c >= 120772 && c <= 120779) + : c <= 122654))) + : (c <= 122666 || (c < 123191 + ? (c < 123136 + ? (c >= 122928 && c <= 122989) + : c <= 123180) + : (c <= 123197 || c == 123214)))) + : (c <= 123565 || (c < 124909 + ? (c < 124896 + ? (c < 124112 + ? (c >= 123584 && c <= 123627) + : c <= 124139) + : (c <= 124902 || (c >= 124904 && c <= 124907))) + : (c <= 124910 || (c < 125184 + ? (c < 124928 + ? (c >= 124912 && c <= 124926) + : c <= 125124) + : (c <= 125251 || c == 125259)))))))) + : (c <= 126467 || (c < 126561 + ? (c < 126537 + ? (c < 126516 + ? (c < 126500 + ? (c < 126497 + ? (c >= 126469 && c <= 126495) + : c <= 126498) + : (c <= 126500 || (c < 126505 + ? c == 126503 + : c <= 126514))) + : (c <= 126519 || (c < 126530 + ? (c < 126523 + ? c == 126521 + : c <= 126523) + : (c <= 126530 || c == 126535)))) + : (c <= 126537 || (c < 126551 + ? (c < 126545 + ? (c < 126541 + ? c == 126539 + : c <= 126543) + : (c <= 126546 || c == 126548)) + : (c <= 126551 || (c < 126557 + ? (c < 126555 + ? c == 126553 + : c <= 126555) + : (c <= 126557 || c == 126559)))))) + : (c <= 126562 || (c < 126629 + ? (c < 126585 + ? (c < 126572 + ? (c < 126567 + ? c == 126564 + : c <= 126570) + : (c <= 126578 || (c >= 126580 && c <= 126583))) + : (c <= 126588 || (c < 126603 + ? (c < 126592 + ? c == 126590 + : c <= 126601) + : (c <= 126619 || (c >= 126625 && c <= 126627))))) + : (c <= 126633 || (c < 178208 + ? (c < 173824 + ? (c < 131072 + ? (c >= 126635 && c <= 126651) + : c <= 173791) + : (c <= 177977 || (c >= 177984 && c <= 178205))) + : (c <= 183969 || (c < 196608 + ? (c < 194560 + ? (c >= 183984 && c <= 191456) + : c <= 195101) + : (c <= 201546 || (c >= 201552 && c <= 205743))))))))))))))))); +} + +static inline bool sym_identifier_character_set_5(int32_t c) { + return (c < 43642 + ? (c < 4206 + ? (c < 2707 + ? (c < 1969 + ? (c < 908 + ? (c < 710 + ? (c < 181 + ? (c < 'a' + ? (c < '_' + ? (c >= 'A' && c <= 'Z') + : c <= '_') + : (c <= 't' || (c < 170 + ? (c >= 'v' && c <= 'z') + : c <= 170))) + : (c <= 181 || (c < 216 + ? (c < 192 + ? c == 186 + : c <= 214) + : (c <= 246 || (c >= 248 && c <= 705))))) + : (c <= 721 || (c < 886 + ? (c < 750 + ? (c < 748 + ? (c >= 736 && c <= 740) + : c <= 748) + : (c <= 750 || (c >= 880 && c <= 884))) + : (c <= 887 || (c < 902 + ? (c < 895 + ? (c >= 891 && c <= 893) + : c <= 895) + : (c <= 902 || (c >= 904 && c <= 906))))))) + : (c <= 908 || (c < 1646 + ? (c < 1369 + ? (c < 1015 + ? (c < 931 + ? (c >= 910 && c <= 929) + : c <= 1013) + : (c <= 1153 || (c < 1329 + ? (c >= 1162 && c <= 1327) + : c <= 1366))) + : (c <= 1369 || (c < 1519 + ? (c < 1488 + ? (c >= 1376 && c <= 1416) + : c <= 1514) + : (c <= 1522 || (c >= 1568 && c <= 1610))))) + : (c <= 1647 || (c < 1786 + ? (c < 1765 + ? (c < 1749 + ? (c >= 1649 && c <= 1747) + : c <= 1749) + : (c <= 1766 || (c >= 1774 && c <= 1775))) + : (c <= 1788 || (c < 1810 + ? (c < 1808 + ? c == 1791 + : c <= 1808) + : (c <= 1839 || (c >= 1869 && c <= 1957))))))))) + : (c <= 1969 || (c < 2474 + ? (c < 2185 + ? (c < 2084 + ? (c < 2042 + ? (c < 2036 + ? (c >= 1994 && c <= 2026) + : c <= 2037) + : (c <= 2042 || (c < 2074 + ? (c >= 2048 && c <= 2069) + : c <= 2074))) + : (c <= 2084 || (c < 2144 + ? (c < 2112 + ? c == 2088 + : c <= 2136) + : (c <= 2154 || (c >= 2160 && c <= 2183))))) + : (c <= 2190 || (c < 2392 + ? (c < 2365 + ? (c < 2308 + ? (c >= 2208 && c <= 2249) + : c <= 2361) + : (c <= 2365 || c == 2384)) + : (c <= 2401 || (c < 2447 + ? (c < 2437 + ? (c >= 2417 && c <= 2432) + : c <= 2444) + : (c <= 2448 || (c >= 2451 && c <= 2472))))))) + : (c <= 2480 || (c < 2579 + ? (c < 2527 + ? (c < 2493 + ? (c < 2486 + ? c == 2482 + : c <= 2489) + : (c <= 2493 || (c < 2524 + ? c == 2510 + : c <= 2525))) + : (c <= 2529 || (c < 2565 + ? (c < 2556 + ? (c >= 2544 && c <= 2545) + : c <= 2556) + : (c <= 2570 || (c >= 2575 && c <= 2576))))) + : (c <= 2600 || (c < 2649 + ? (c < 2613 + ? (c < 2610 + ? (c >= 2602 && c <= 2608) + : c <= 2611) + : (c <= 2614 || (c >= 2616 && c <= 2617))) + : (c <= 2652 || (c < 2693 + ? (c < 2674 + ? c == 2654 + : c <= 2676) + : (c <= 2701 || (c >= 2703 && c <= 2705))))))))))) + : (c <= 2728 || (c < 3253 + ? (c < 2962 + ? (c < 2858 + ? (c < 2784 + ? (c < 2741 + ? (c < 2738 + ? (c >= 2730 && c <= 2736) + : c <= 2739) + : (c <= 2745 || (c < 2768 + ? c == 2749 + : c <= 2768))) + : (c <= 2785 || (c < 2831 + ? (c < 2821 + ? c == 2809 + : c <= 2828) + : (c <= 2832 || (c >= 2835 && c <= 2856))))) + : (c <= 2864 || (c < 2911 + ? (c < 2877 + ? (c < 2869 + ? (c >= 2866 && c <= 2867) + : c <= 2873) + : (c <= 2877 || (c >= 2908 && c <= 2909))) + : (c <= 2913 || (c < 2949 + ? (c < 2947 + ? c == 2929 + : c <= 2947) + : (c <= 2954 || (c >= 2958 && c <= 2960))))))) + : (c <= 2965 || (c < 3114 + ? (c < 2990 + ? (c < 2974 + ? (c < 2972 + ? (c >= 2969 && c <= 2970) + : c <= 2972) + : (c <= 2975 || (c < 2984 + ? (c >= 2979 && c <= 2980) + : c <= 2986))) + : (c <= 3001 || (c < 3086 + ? (c < 3077 + ? c == 3024 + : c <= 3084) + : (c <= 3088 || (c >= 3090 && c <= 3112))))) + : (c <= 3129 || (c < 3200 + ? (c < 3165 + ? (c < 3160 + ? c == 3133 + : c <= 3162) + : (c <= 3165 || (c >= 3168 && c <= 3169))) + : (c <= 3200 || (c < 3218 + ? (c < 3214 + ? (c >= 3205 && c <= 3212) + : c <= 3216) + : (c <= 3240 || (c >= 3242 && c <= 3251))))))))) + : (c <= 3257 || (c < 3713 + ? (c < 3423 + ? (c < 3342 + ? (c < 3296 + ? (c < 3293 + ? c == 3261 + : c <= 3294) + : (c <= 3297 || (c < 3332 + ? (c >= 3313 && c <= 3314) + : c <= 3340))) + : (c <= 3344 || (c < 3406 + ? (c < 3389 + ? (c >= 3346 && c <= 3386) + : c <= 3389) + : (c <= 3406 || (c >= 3412 && c <= 3414))))) + : (c <= 3425 || (c < 3517 + ? (c < 3482 + ? (c < 3461 + ? (c >= 3450 && c <= 3455) + : c <= 3478) + : (c <= 3505 || (c >= 3507 && c <= 3515))) + : (c <= 3517 || (c < 3634 + ? (c < 3585 + ? (c >= 3520 && c <= 3526) + : c <= 3632) + : (c <= 3634 || (c >= 3648 && c <= 3654))))))) + : (c <= 3714 || (c < 3840 + ? (c < 3762 + ? (c < 3724 + ? (c < 3718 + ? c == 3716 + : c <= 3722) + : (c <= 3747 || (c < 3751 + ? c == 3749 + : c <= 3760))) + : (c <= 3762 || (c < 3782 + ? (c < 3776 + ? c == 3773 + : c <= 3780) + : (c <= 3782 || (c >= 3804 && c <= 3807))))) + : (c <= 3840 || (c < 4159 + ? (c < 3976 + ? (c < 3913 + ? (c >= 3904 && c <= 3911) + : c <= 3948) + : (c <= 3980 || (c >= 4096 && c <= 4138))) + : (c <= 4159 || (c < 4193 + ? (c < 4186 + ? (c >= 4176 && c <= 4181) + : c <= 4189) + : (c <= 4193 || (c >= 4197 && c <= 4198))))))))))))) + : (c <= 4208 || (c < 8178 + ? (c < 6320 + ? (c < 4882 + ? (c < 4698 + ? (c < 4304 + ? (c < 4256 + ? (c < 4238 + ? (c >= 4213 && c <= 4225) + : c <= 4238) + : (c <= 4293 || (c < 4301 + ? c == 4295 + : c <= 4301))) + : (c <= 4346 || (c < 4688 + ? (c < 4682 + ? (c >= 4348 && c <= 4680) + : c <= 4685) + : (c <= 4694 || c == 4696)))) + : (c <= 4701 || (c < 4792 + ? (c < 4752 + ? (c < 4746 + ? (c >= 4704 && c <= 4744) + : c <= 4749) + : (c <= 4784 || (c >= 4786 && c <= 4789))) + : (c <= 4798 || (c < 4808 + ? (c < 4802 + ? c == 4800 + : c <= 4805) + : (c <= 4822 || (c >= 4824 && c <= 4880))))))) + : (c <= 4885 || (c < 5919 + ? (c < 5743 + ? (c < 5024 + ? (c < 4992 + ? (c >= 4888 && c <= 4954) + : c <= 5007) + : (c <= 5109 || (c < 5121 + ? (c >= 5112 && c <= 5117) + : c <= 5740))) + : (c <= 5759 || (c < 5870 + ? (c < 5792 + ? (c >= 5761 && c <= 5786) + : c <= 5866) + : (c <= 5880 || (c >= 5888 && c <= 5905))))) + : (c <= 5937 || (c < 6103 + ? (c < 5998 + ? (c < 5984 + ? (c >= 5952 && c <= 5969) + : c <= 5996) + : (c <= 6000 || (c >= 6016 && c <= 6067))) + : (c <= 6103 || (c < 6272 + ? (c < 6176 + ? c == 6108 + : c <= 6264) + : (c <= 6312 || c == 6314)))))))) + : (c <= 6389 || (c < 7406 + ? (c < 7043 + ? (c < 6656 + ? (c < 6512 + ? (c < 6480 + ? (c >= 6400 && c <= 6430) + : c <= 6509) + : (c <= 6516 || (c < 6576 + ? (c >= 6528 && c <= 6571) + : c <= 6601))) + : (c <= 6678 || (c < 6917 + ? (c < 6823 + ? (c >= 6688 && c <= 6740) + : c <= 6823) + : (c <= 6963 || (c >= 6981 && c <= 6988))))) + : (c <= 7072 || (c < 7258 + ? (c < 7168 + ? (c < 7098 + ? (c >= 7086 && c <= 7087) + : c <= 7141) + : (c <= 7203 || (c >= 7245 && c <= 7247))) + : (c <= 7293 || (c < 7357 + ? (c < 7312 + ? (c >= 7296 && c <= 7304) + : c <= 7354) + : (c <= 7359 || (c >= 7401 && c <= 7404))))))) + : (c <= 7411 || (c < 8029 + ? (c < 7968 + ? (c < 7424 + ? (c < 7418 + ? (c >= 7413 && c <= 7414) + : c <= 7418) + : (c <= 7615 || (c < 7960 + ? (c >= 7680 && c <= 7957) + : c <= 7965))) + : (c <= 8005 || (c < 8025 + ? (c < 8016 + ? (c >= 8008 && c <= 8013) + : c <= 8023) + : (c <= 8025 || c == 8027)))) + : (c <= 8029 || (c < 8130 + ? (c < 8118 + ? (c < 8064 + ? (c >= 8031 && c <= 8061) + : c <= 8116) + : (c <= 8124 || c == 8126)) + : (c <= 8132 || (c < 8150 + ? (c < 8144 + ? (c >= 8134 && c <= 8140) + : c <= 8147) + : (c <= 8155 || (c >= 8160 && c <= 8172))))))))))) + : (c <= 8180 || (c < 12540 + ? (c < 11520 + ? (c < 8486 + ? (c < 8455 + ? (c < 8319 + ? (c < 8305 + ? (c >= 8182 && c <= 8188) + : c <= 8305) + : (c <= 8319 || (c < 8450 + ? (c >= 8336 && c <= 8348) + : c <= 8450))) + : (c <= 8455 || (c < 8472 + ? (c < 8469 + ? (c >= 8458 && c <= 8467) + : c <= 8469) + : (c <= 8477 || c == 8484)))) + : (c <= 8486 || (c < 8526 + ? (c < 8508 + ? (c < 8490 + ? c == 8488 + : c <= 8505) + : (c <= 8511 || (c >= 8517 && c <= 8521))) + : (c <= 8526 || (c < 11499 + ? (c < 11264 + ? (c >= 8544 && c <= 8584) + : c <= 11492) + : (c <= 11502 || (c >= 11506 && c <= 11507))))))) + : (c <= 11557 || (c < 11720 + ? (c < 11680 + ? (c < 11568 + ? (c < 11565 + ? c == 11559 + : c <= 11565) + : (c <= 11623 || (c < 11648 + ? c == 11631 + : c <= 11670))) + : (c <= 11686 || (c < 11704 + ? (c < 11696 + ? (c >= 11688 && c <= 11694) + : c <= 11702) + : (c <= 11710 || (c >= 11712 && c <= 11718))))) + : (c <= 11726 || (c < 12337 + ? (c < 12293 + ? (c < 11736 + ? (c >= 11728 && c <= 11734) + : c <= 11742) + : (c <= 12295 || (c >= 12321 && c <= 12329))) + : (c <= 12341 || (c < 12445 + ? (c < 12353 + ? (c >= 12344 && c <= 12348) + : c <= 12438) + : (c <= 12447 || (c >= 12449 && c <= 12538))))))))) + : (c <= 12543 || (c < 43011 + ? (c < 42560 + ? (c < 19968 + ? (c < 12704 + ? (c < 12593 + ? (c >= 12549 && c <= 12591) + : c <= 12686) + : (c <= 12735 || (c < 13312 + ? (c >= 12784 && c <= 12799) + : c <= 19903))) + : (c <= 42124 || (c < 42512 + ? (c < 42240 + ? (c >= 42192 && c <= 42237) + : c <= 42508) + : (c <= 42527 || (c >= 42538 && c <= 42539))))) + : (c <= 42606 || (c < 42891 + ? (c < 42775 + ? (c < 42656 + ? (c >= 42623 && c <= 42653) + : c <= 42735) + : (c <= 42783 || (c >= 42786 && c <= 42888))) + : (c <= 42954 || (c < 42965 + ? (c < 42963 + ? (c >= 42960 && c <= 42961) + : c <= 42963) + : (c <= 42969 || (c >= 42994 && c <= 43009))))))) + : (c <= 43013 || (c < 43360 + ? (c < 43250 + ? (c < 43072 + ? (c < 43020 + ? (c >= 43015 && c <= 43018) + : c <= 43042) + : (c <= 43123 || (c >= 43138 && c <= 43187))) + : (c <= 43255 || (c < 43274 + ? (c < 43261 + ? c == 43259 + : c <= 43262) + : (c <= 43301 || (c >= 43312 && c <= 43334))))) + : (c <= 43388 || (c < 43514 + ? (c < 43488 + ? (c < 43471 + ? (c >= 43396 && c <= 43442) + : c <= 43471) + : (c <= 43492 || (c >= 43494 && c <= 43503))) + : (c <= 43518 || (c < 43588 + ? (c < 43584 + ? (c >= 43520 && c <= 43560) + : c <= 43586) + : (c <= 43595 || (c >= 43616 && c <= 43638))))))))))))))) + : (c <= 43642 || (c < 71168 + ? (c < 67392 + ? (c < 65147 + ? (c < 63744 + ? (c < 43785 + ? (c < 43714 + ? (c < 43701 + ? (c < 43697 + ? (c >= 43646 && c <= 43695) + : c <= 43697) + : (c <= 43702 || (c < 43712 + ? (c >= 43705 && c <= 43709) + : c <= 43712))) + : (c <= 43714 || (c < 43762 + ? (c < 43744 + ? (c >= 43739 && c <= 43741) + : c <= 43754) + : (c <= 43764 || (c >= 43777 && c <= 43782))))) + : (c <= 43790 || (c < 43868 + ? (c < 43816 + ? (c < 43808 + ? (c >= 43793 && c <= 43798) + : c <= 43814) + : (c <= 43822 || (c >= 43824 && c <= 43866))) + : (c <= 43881 || (c < 55216 + ? (c < 44032 + ? (c >= 43888 && c <= 44002) + : c <= 55203) + : (c <= 55238 || (c >= 55243 && c <= 55291))))))) + : (c <= 64109 || (c < 64326 + ? (c < 64298 + ? (c < 64275 + ? (c < 64256 + ? (c >= 64112 && c <= 64217) + : c <= 64262) + : (c <= 64279 || (c < 64287 + ? c == 64285 + : c <= 64296))) + : (c <= 64310 || (c < 64320 + ? (c < 64318 + ? (c >= 64312 && c <= 64316) + : c <= 64318) + : (c <= 64321 || (c >= 64323 && c <= 64324))))) + : (c <= 64433 || (c < 65008 + ? (c < 64848 + ? (c < 64612 + ? (c >= 64467 && c <= 64605) + : c <= 64829) + : (c <= 64911 || (c >= 64914 && c <= 64967))) + : (c <= 65017 || (c < 65143 + ? (c < 65139 + ? c == 65137 + : c <= 65139) + : (c <= 65143 || c == 65145)))))))) + : (c <= 65147 || (c < 66304 + ? (c < 65536 + ? (c < 65440 + ? (c < 65313 + ? (c < 65151 + ? c == 65149 + : c <= 65276) + : (c <= 65338 || (c < 65382 + ? (c >= 65345 && c <= 65370) + : c <= 65437))) + : (c <= 65470 || (c < 65490 + ? (c < 65482 + ? (c >= 65474 && c <= 65479) + : c <= 65487) + : (c <= 65495 || (c >= 65498 && c <= 65500))))) + : (c <= 65547 || (c < 65616 + ? (c < 65596 + ? (c < 65576 + ? (c >= 65549 && c <= 65574) + : c <= 65594) + : (c <= 65597 || (c >= 65599 && c <= 65613))) + : (c <= 65629 || (c < 66176 + ? (c < 65856 + ? (c >= 65664 && c <= 65786) + : c <= 65908) + : (c <= 66204 || (c >= 66208 && c <= 66256))))))) + : (c <= 66335 || (c < 66864 + ? (c < 66513 + ? (c < 66432 + ? (c < 66384 + ? (c >= 66349 && c <= 66378) + : c <= 66421) + : (c <= 66461 || (c < 66504 + ? (c >= 66464 && c <= 66499) + : c <= 66511))) + : (c <= 66517 || (c < 66776 + ? (c < 66736 + ? (c >= 66560 && c <= 66717) + : c <= 66771) + : (c <= 66811 || (c >= 66816 && c <= 66855))))) + : (c <= 66915 || (c < 66967 + ? (c < 66956 + ? (c < 66940 + ? (c >= 66928 && c <= 66938) + : c <= 66954) + : (c <= 66962 || (c >= 66964 && c <= 66965))) + : (c <= 66977 || (c < 67003 + ? (c < 66995 + ? (c >= 66979 && c <= 66993) + : c <= 67001) + : (c <= 67004 || (c >= 67072 && c <= 67382))))))))))) + : (c <= 67413 || (c < 69600 + ? (c < 68117 + ? (c < 67680 + ? (c < 67592 + ? (c < 67463 + ? (c < 67456 + ? (c >= 67424 && c <= 67431) + : c <= 67461) + : (c <= 67504 || (c < 67584 + ? (c >= 67506 && c <= 67514) + : c <= 67589))) + : (c <= 67592 || (c < 67644 + ? (c < 67639 + ? (c >= 67594 && c <= 67637) + : c <= 67640) + : (c <= 67644 || (c >= 67647 && c <= 67669))))) + : (c <= 67702 || (c < 67872 + ? (c < 67828 + ? (c < 67808 + ? (c >= 67712 && c <= 67742) + : c <= 67826) + : (c <= 67829 || (c >= 67840 && c <= 67861))) + : (c <= 67897 || (c < 68096 + ? (c < 68030 + ? (c >= 67968 && c <= 68023) + : c <= 68031) + : (c <= 68096 || (c >= 68112 && c <= 68115))))))) + : (c <= 68119 || (c < 68736 + ? (c < 68352 + ? (c < 68224 + ? (c < 68192 + ? (c >= 68121 && c <= 68149) + : c <= 68220) + : (c <= 68252 || (c < 68297 + ? (c >= 68288 && c <= 68295) + : c <= 68324))) + : (c <= 68405 || (c < 68480 + ? (c < 68448 + ? (c >= 68416 && c <= 68437) + : c <= 68466) + : (c <= 68497 || (c >= 68608 && c <= 68680))))) + : (c <= 68786 || (c < 69376 + ? (c < 69248 + ? (c < 68864 + ? (c >= 68800 && c <= 68850) + : c <= 68899) + : (c <= 69289 || (c >= 69296 && c <= 69297))) + : (c <= 69404 || (c < 69488 + ? (c < 69424 + ? c == 69415 + : c <= 69445) + : (c <= 69505 || (c >= 69552 && c <= 69572))))))))) + : (c <= 69622 || (c < 70287 + ? (c < 70019 + ? (c < 69891 + ? (c < 69749 + ? (c < 69745 + ? (c >= 69635 && c <= 69687) + : c <= 69746) + : (c <= 69749 || (c < 69840 + ? (c >= 69763 && c <= 69807) + : c <= 69864))) + : (c <= 69926 || (c < 69968 + ? (c < 69959 + ? c == 69956 + : c <= 69959) + : (c <= 70002 || c == 70006)))) + : (c <= 70066 || (c < 70163 + ? (c < 70108 + ? (c < 70106 + ? (c >= 70081 && c <= 70084) + : c <= 70106) + : (c <= 70108 || (c >= 70144 && c <= 70161))) + : (c <= 70187 || (c < 70280 + ? (c < 70272 + ? (c >= 70207 && c <= 70208) + : c <= 70278) + : (c <= 70280 || (c >= 70282 && c <= 70285))))))) + : (c <= 70301 || (c < 70480 + ? (c < 70419 + ? (c < 70405 + ? (c < 70320 + ? (c >= 70303 && c <= 70312) + : c <= 70366) + : (c <= 70412 || (c >= 70415 && c <= 70416))) + : (c <= 70440 || (c < 70453 + ? (c < 70450 + ? (c >= 70442 && c <= 70448) + : c <= 70451) + : (c <= 70457 || c == 70461)))) + : (c <= 70480 || (c < 70784 + ? (c < 70727 + ? (c < 70656 + ? (c >= 70493 && c <= 70497) + : c <= 70708) + : (c <= 70730 || (c >= 70751 && c <= 70753))) + : (c <= 70831 || (c < 71040 + ? (c < 70855 + ? (c >= 70852 && c <= 70853) + : c <= 70855) + : (c <= 71086 || (c >= 71128 && c <= 71131))))))))))))) + : (c <= 71215 || (c < 119973 + ? (c < 73648 + ? (c < 72250 + ? (c < 71957 + ? (c < 71680 + ? (c < 71352 + ? (c < 71296 + ? c == 71236 + : c <= 71338) + : (c <= 71352 || (c < 71488 + ? (c >= 71424 && c <= 71450) + : c <= 71494))) + : (c <= 71723 || (c < 71945 + ? (c < 71935 + ? (c >= 71840 && c <= 71903) + : c <= 71942) + : (c <= 71945 || (c >= 71948 && c <= 71955))))) + : (c <= 71958 || (c < 72106 + ? (c < 72001 + ? (c < 71999 + ? (c >= 71960 && c <= 71983) + : c <= 71999) + : (c <= 72001 || (c >= 72096 && c <= 72103))) + : (c <= 72144 || (c < 72192 + ? (c < 72163 + ? c == 72161 + : c <= 72163) + : (c <= 72192 || (c >= 72203 && c <= 72242))))))) + : (c <= 72250 || (c < 72971 + ? (c < 72714 + ? (c < 72349 + ? (c < 72284 + ? c == 72272 + : c <= 72329) + : (c <= 72349 || (c < 72704 + ? (c >= 72368 && c <= 72440) + : c <= 72712))) + : (c <= 72750 || (c < 72960 + ? (c < 72818 + ? c == 72768 + : c <= 72847) + : (c <= 72966 || (c >= 72968 && c <= 72969))))) + : (c <= 73008 || (c < 73112 + ? (c < 73063 + ? (c < 73056 + ? c == 73030 + : c <= 73061) + : (c <= 73064 || (c >= 73066 && c <= 73097))) + : (c <= 73112 || (c < 73476 + ? (c < 73474 + ? (c >= 73440 && c <= 73458) + : c <= 73474) + : (c <= 73488 || (c >= 73490 && c <= 73523))))))))) + : (c <= 73648 || (c < 94179 + ? (c < 92880 + ? (c < 78913 + ? (c < 74880 + ? (c < 74752 + ? (c >= 73728 && c <= 74649) + : c <= 74862) + : (c <= 75075 || (c < 77824 + ? (c >= 77712 && c <= 77808) + : c <= 78895))) + : (c <= 78918 || (c < 92736 + ? (c < 92160 + ? (c >= 82944 && c <= 83526) + : c <= 92728) + : (c <= 92766 || (c >= 92784 && c <= 92862))))) + : (c <= 92909 || (c < 93760 + ? (c < 93027 + ? (c < 92992 + ? (c >= 92928 && c <= 92975) + : c <= 92995) + : (c <= 93047 || (c >= 93053 && c <= 93071))) + : (c <= 93823 || (c < 94099 + ? (c < 94032 + ? (c >= 93952 && c <= 94026) + : c <= 94032) + : (c <= 94111 || (c >= 94176 && c <= 94177))))))) + : (c <= 94179 || (c < 110948 + ? (c < 110589 + ? (c < 101632 + ? (c < 100352 + ? (c >= 94208 && c <= 100343) + : c <= 101589) + : (c <= 101640 || (c < 110581 + ? (c >= 110576 && c <= 110579) + : c <= 110587))) + : (c <= 110590 || (c < 110928 + ? (c < 110898 + ? (c >= 110592 && c <= 110882) + : c <= 110898) + : (c <= 110930 || c == 110933)))) + : (c <= 110951 || (c < 113808 + ? (c < 113776 + ? (c < 113664 + ? (c >= 110960 && c <= 111355) + : c <= 113770) + : (c <= 113788 || (c >= 113792 && c <= 113800))) + : (c <= 113817 || (c < 119966 + ? (c < 119894 + ? (c >= 119808 && c <= 119892) + : c <= 119964) + : (c <= 119967 || c == 119970)))))))))) + : (c <= 119974 || (c < 126464 + ? (c < 120656 + ? (c < 120128 + ? (c < 120071 + ? (c < 119995 + ? (c < 119982 + ? (c >= 119977 && c <= 119980) + : c <= 119993) + : (c <= 119995 || (c < 120005 + ? (c >= 119997 && c <= 120003) + : c <= 120069))) + : (c <= 120074 || (c < 120094 + ? (c < 120086 + ? (c >= 120077 && c <= 120084) + : c <= 120092) + : (c <= 120121 || (c >= 120123 && c <= 120126))))) + : (c <= 120132 || (c < 120514 + ? (c < 120146 + ? (c < 120138 + ? c == 120134 + : c <= 120144) + : (c <= 120485 || (c >= 120488 && c <= 120512))) + : (c <= 120538 || (c < 120598 + ? (c < 120572 + ? (c >= 120540 && c <= 120570) + : c <= 120596) + : (c <= 120628 || (c >= 120630 && c <= 120654))))))) + : (c <= 120686 || (c < 123536 + ? (c < 122661 + ? (c < 120746 + ? (c < 120714 + ? (c >= 120688 && c <= 120712) + : c <= 120744) + : (c <= 120770 || (c < 122624 + ? (c >= 120772 && c <= 120779) + : c <= 122654))) + : (c <= 122666 || (c < 123191 + ? (c < 123136 + ? (c >= 122928 && c <= 122989) + : c <= 123180) + : (c <= 123197 || c == 123214)))) + : (c <= 123565 || (c < 124909 + ? (c < 124896 + ? (c < 124112 + ? (c >= 123584 && c <= 123627) + : c <= 124139) + : (c <= 124902 || (c >= 124904 && c <= 124907))) + : (c <= 124910 || (c < 125184 + ? (c < 124928 + ? (c >= 124912 && c <= 124926) + : c <= 125124) + : (c <= 125251 || c == 125259)))))))) + : (c <= 126467 || (c < 126561 + ? (c < 126537 + ? (c < 126516 + ? (c < 126500 + ? (c < 126497 + ? (c >= 126469 && c <= 126495) + : c <= 126498) + : (c <= 126500 || (c < 126505 + ? c == 126503 + : c <= 126514))) + : (c <= 126519 || (c < 126530 + ? (c < 126523 + ? c == 126521 + : c <= 126523) + : (c <= 126530 || c == 126535)))) + : (c <= 126537 || (c < 126551 + ? (c < 126545 + ? (c < 126541 + ? c == 126539 + : c <= 126543) + : (c <= 126546 || c == 126548)) + : (c <= 126551 || (c < 126557 + ? (c < 126555 + ? c == 126553 + : c <= 126555) + : (c <= 126557 || c == 126559)))))) + : (c <= 126562 || (c < 126629 + ? (c < 126585 + ? (c < 126572 + ? (c < 126567 + ? c == 126564 + : c <= 126570) + : (c <= 126578 || (c >= 126580 && c <= 126583))) + : (c <= 126588 || (c < 126603 + ? (c < 126592 + ? c == 126590 + : c <= 126601) + : (c <= 126619 || (c >= 126625 && c <= 126627))))) + : (c <= 126633 || (c < 178208 + ? (c < 173824 + ? (c < 131072 + ? (c >= 126635 && c <= 126651) + : c <= 173791) + : (c <= 177977 || (c >= 177984 && c <= 178205))) + : (c <= 183969 || (c < 196608 + ? (c < 194560 + ? (c >= 183984 && c <= 191456) + : c <= 195101) + : (c <= 201546 || (c >= 201552 && c <= 205743))))))))))))))))); +} + +static inline bool sym_identifier_character_set_6(int32_t c) { + return (c < 43697 + ? (c < 4256 + ? (c < 2749 + ? (c < 2048 + ? (c < 1162 + ? (c < 880 + ? (c < 248 + ? (c < 186 + ? (c < 181 + ? c == 170 + : c <= 181) + : (c <= 186 || (c < 216 + ? (c >= 192 && c <= 214) + : c <= 246))) + : (c <= 705 || (c < 748 + ? (c < 736 + ? (c >= 710 && c <= 721) + : c <= 740) + : (c <= 748 || c == 750)))) + : (c <= 884 || (c < 904 + ? (c < 895 + ? (c < 891 + ? (c >= 886 && c <= 887) + : c <= 893) + : (c <= 895 || c == 902)) + : (c <= 906 || (c < 931 + ? (c < 910 + ? c == 908 + : c <= 929) + : (c <= 1013 || (c >= 1015 && c <= 1153))))))) + : (c <= 1327 || (c < 1774 + ? (c < 1568 + ? (c < 1376 + ? (c < 1369 + ? (c >= 1329 && c <= 1366) + : c <= 1369) + : (c <= 1416 || (c < 1519 + ? (c >= 1488 && c <= 1514) + : c <= 1522))) + : (c <= 1610 || (c < 1749 + ? (c < 1649 + ? (c >= 1646 && c <= 1647) + : c <= 1747) + : (c <= 1749 || (c >= 1765 && c <= 1766))))) + : (c <= 1775 || (c < 1869 + ? (c < 1808 + ? (c < 1791 + ? (c >= 1786 && c <= 1788) + : c <= 1791) + : (c <= 1808 || (c >= 1810 && c <= 1839))) + : (c <= 1957 || (c < 2036 + ? (c < 1994 + ? c == 1969 + : c <= 2026) + : (c <= 2037 || c == 2042)))))))) + : (c <= 2069 || (c < 2510 + ? (c < 2384 + ? (c < 2160 + ? (c < 2088 + ? (c < 2084 + ? c == 2074 + : c <= 2084) + : (c <= 2088 || (c < 2144 + ? (c >= 2112 && c <= 2136) + : c <= 2154))) + : (c <= 2183 || (c < 2308 + ? (c < 2208 + ? (c >= 2185 && c <= 2190) + : c <= 2249) + : (c <= 2361 || c == 2365)))) + : (c <= 2384 || (c < 2451 + ? (c < 2437 + ? (c < 2417 + ? (c >= 2392 && c <= 2401) + : c <= 2432) + : (c <= 2444 || (c >= 2447 && c <= 2448))) + : (c <= 2472 || (c < 2486 + ? (c < 2482 + ? (c >= 2474 && c <= 2480) + : c <= 2482) + : (c <= 2489 || c == 2493)))))) + : (c <= 2510 || (c < 2616 + ? (c < 2575 + ? (c < 2544 + ? (c < 2527 + ? (c >= 2524 && c <= 2525) + : c <= 2529) + : (c <= 2545 || (c < 2565 + ? c == 2556 + : c <= 2570))) + : (c <= 2576 || (c < 2610 + ? (c < 2602 + ? (c >= 2579 && c <= 2600) + : c <= 2608) + : (c <= 2611 || (c >= 2613 && c <= 2614))))) + : (c <= 2617 || (c < 2703 + ? (c < 2674 + ? (c < 2654 + ? (c >= 2649 && c <= 2652) + : c <= 2654) + : (c <= 2676 || (c >= 2693 && c <= 2701))) + : (c <= 2705 || (c < 2738 + ? (c < 2730 + ? (c >= 2707 && c <= 2728) + : c <= 2736) + : (c <= 2739 || (c >= 2741 && c <= 2745))))))))))) + : (c <= 2749 || (c < 3313 + ? (c < 2979 + ? (c < 2908 + ? (c < 2835 + ? (c < 2809 + ? (c < 2784 + ? c == 2768 + : c <= 2785) + : (c <= 2809 || (c < 2831 + ? (c >= 2821 && c <= 2828) + : c <= 2832))) + : (c <= 2856 || (c < 2869 + ? (c < 2866 + ? (c >= 2858 && c <= 2864) + : c <= 2867) + : (c <= 2873 || c == 2877)))) + : (c <= 2909 || (c < 2958 + ? (c < 2947 + ? (c < 2929 + ? (c >= 2911 && c <= 2913) + : c <= 2929) + : (c <= 2947 || (c >= 2949 && c <= 2954))) + : (c <= 2960 || (c < 2972 + ? (c < 2969 + ? (c >= 2962 && c <= 2965) + : c <= 2970) + : (c <= 2972 || (c >= 2974 && c <= 2975))))))) + : (c <= 2980 || (c < 3168 + ? (c < 3090 + ? (c < 3024 + ? (c < 2990 + ? (c >= 2984 && c <= 2986) + : c <= 3001) + : (c <= 3024 || (c < 3086 + ? (c >= 3077 && c <= 3084) + : c <= 3088))) + : (c <= 3112 || (c < 3160 + ? (c < 3133 + ? (c >= 3114 && c <= 3129) + : c <= 3133) + : (c <= 3162 || c == 3165)))) + : (c <= 3169 || (c < 3242 + ? (c < 3214 + ? (c < 3205 + ? c == 3200 + : c <= 3212) + : (c <= 3216 || (c >= 3218 && c <= 3240))) + : (c <= 3251 || (c < 3293 + ? (c < 3261 + ? (c >= 3253 && c <= 3257) + : c <= 3261) + : (c <= 3294 || (c >= 3296 && c <= 3297))))))))) + : (c <= 3314 || (c < 3749 + ? (c < 3507 + ? (c < 3412 + ? (c < 3346 + ? (c < 3342 + ? (c >= 3332 && c <= 3340) + : c <= 3344) + : (c <= 3386 || (c < 3406 + ? c == 3389 + : c <= 3406))) + : (c <= 3414 || (c < 3461 + ? (c < 3450 + ? (c >= 3423 && c <= 3425) + : c <= 3455) + : (c <= 3478 || (c >= 3482 && c <= 3505))))) + : (c <= 3515 || (c < 3648 + ? (c < 3585 + ? (c < 3520 + ? c == 3517 + : c <= 3526) + : (c <= 3632 || c == 3634)) + : (c <= 3654 || (c < 3718 + ? (c < 3716 + ? (c >= 3713 && c <= 3714) + : c <= 3716) + : (c <= 3722 || (c >= 3724 && c <= 3747))))))) + : (c <= 3749 || (c < 3976 + ? (c < 3782 + ? (c < 3773 + ? (c < 3762 + ? (c >= 3751 && c <= 3760) + : c <= 3762) + : (c <= 3773 || (c >= 3776 && c <= 3780))) + : (c <= 3782 || (c < 3904 + ? (c < 3840 + ? (c >= 3804 && c <= 3807) + : c <= 3840) + : (c <= 3911 || (c >= 3913 && c <= 3948))))) + : (c <= 3980 || (c < 4193 + ? (c < 4176 + ? (c < 4159 + ? (c >= 4096 && c <= 4138) + : c <= 4159) + : (c <= 4181 || (c >= 4186 && c <= 4189))) + : (c <= 4193 || (c < 4213 + ? (c < 4206 + ? (c >= 4197 && c <= 4198) + : c <= 4208) + : (c <= 4225 || c == 4238)))))))))))) + : (c <= 4293 || (c < 8305 + ? (c < 6512 + ? (c < 5024 + ? (c < 4752 + ? (c < 4688 + ? (c < 4304 + ? (c < 4301 + ? c == 4295 + : c <= 4301) + : (c <= 4346 || (c < 4682 + ? (c >= 4348 && c <= 4680) + : c <= 4685))) + : (c <= 4694 || (c < 4704 + ? (c < 4698 + ? c == 4696 + : c <= 4701) + : (c <= 4744 || (c >= 4746 && c <= 4749))))) + : (c <= 4784 || (c < 4808 + ? (c < 4800 + ? (c < 4792 + ? (c >= 4786 && c <= 4789) + : c <= 4798) + : (c <= 4800 || (c >= 4802 && c <= 4805))) + : (c <= 4822 || (c < 4888 + ? (c < 4882 + ? (c >= 4824 && c <= 4880) + : c <= 4885) + : (c <= 4954 || (c >= 4992 && c <= 5007))))))) + : (c <= 5109 || (c < 5998 + ? (c < 5870 + ? (c < 5743 + ? (c < 5121 + ? (c >= 5112 && c <= 5117) + : c <= 5740) + : (c <= 5759 || (c < 5792 + ? (c >= 5761 && c <= 5786) + : c <= 5866))) + : (c <= 5880 || (c < 5952 + ? (c < 5919 + ? (c >= 5888 && c <= 5905) + : c <= 5937) + : (c <= 5969 || (c >= 5984 && c <= 5996))))) + : (c <= 6000 || (c < 6272 + ? (c < 6108 + ? (c < 6103 + ? (c >= 6016 && c <= 6067) + : c <= 6103) + : (c <= 6108 || (c >= 6176 && c <= 6264))) + : (c <= 6312 || (c < 6400 + ? (c < 6320 + ? c == 6314 + : c <= 6389) + : (c <= 6430 || (c >= 6480 && c <= 6509))))))))) + : (c <= 6516 || (c < 7424 + ? (c < 7168 + ? (c < 6917 + ? (c < 6656 + ? (c < 6576 + ? (c >= 6528 && c <= 6571) + : c <= 6601) + : (c <= 6678 || (c < 6823 + ? (c >= 6688 && c <= 6740) + : c <= 6823))) + : (c <= 6963 || (c < 7086 + ? (c < 7043 + ? (c >= 6981 && c <= 6988) + : c <= 7072) + : (c <= 7087 || (c >= 7098 && c <= 7141))))) + : (c <= 7203 || (c < 7357 + ? (c < 7296 + ? (c < 7258 + ? (c >= 7245 && c <= 7247) + : c <= 7293) + : (c <= 7304 || (c >= 7312 && c <= 7354))) + : (c <= 7359 || (c < 7413 + ? (c < 7406 + ? (c >= 7401 && c <= 7404) + : c <= 7411) + : (c <= 7414 || c == 7418)))))) + : (c <= 7615 || (c < 8064 + ? (c < 8016 + ? (c < 7968 + ? (c < 7960 + ? (c >= 7680 && c <= 7957) + : c <= 7965) + : (c <= 8005 || (c >= 8008 && c <= 8013))) + : (c <= 8023 || (c < 8029 + ? (c < 8027 + ? c == 8025 + : c <= 8027) + : (c <= 8029 || (c >= 8031 && c <= 8061))))) + : (c <= 8116 || (c < 8144 + ? (c < 8130 + ? (c < 8126 + ? (c >= 8118 && c <= 8124) + : c <= 8126) + : (c <= 8132 || (c >= 8134 && c <= 8140))) + : (c <= 8147 || (c < 8178 + ? (c < 8160 + ? (c >= 8150 && c <= 8155) + : c <= 8172) + : (c <= 8180 || (c >= 8182 && c <= 8188))))))))))) + : (c <= 8305 || (c < 12593 + ? (c < 11565 + ? (c < 8490 + ? (c < 8469 + ? (c < 8450 + ? (c < 8336 + ? c == 8319 + : c <= 8348) + : (c <= 8450 || (c < 8458 + ? c == 8455 + : c <= 8467))) + : (c <= 8469 || (c < 8486 + ? (c < 8484 + ? (c >= 8472 && c <= 8477) + : c <= 8484) + : (c <= 8486 || c == 8488)))) + : (c <= 8505 || (c < 11264 + ? (c < 8526 + ? (c < 8517 + ? (c >= 8508 && c <= 8511) + : c <= 8521) + : (c <= 8526 || (c >= 8544 && c <= 8584))) + : (c <= 11492 || (c < 11520 + ? (c < 11506 + ? (c >= 11499 && c <= 11502) + : c <= 11507) + : (c <= 11557 || c == 11559)))))) + : (c <= 11565 || (c < 11736 + ? (c < 11696 + ? (c < 11648 + ? (c < 11631 + ? (c >= 11568 && c <= 11623) + : c <= 11631) + : (c <= 11670 || (c < 11688 + ? (c >= 11680 && c <= 11686) + : c <= 11694))) + : (c <= 11702 || (c < 11720 + ? (c < 11712 + ? (c >= 11704 && c <= 11710) + : c <= 11718) + : (c <= 11726 || (c >= 11728 && c <= 11734))))) + : (c <= 11742 || (c < 12353 + ? (c < 12337 + ? (c < 12321 + ? (c >= 12293 && c <= 12295) + : c <= 12329) + : (c <= 12341 || (c >= 12344 && c <= 12348))) + : (c <= 12438 || (c < 12540 + ? (c < 12449 + ? (c >= 12445 && c <= 12447) + : c <= 12538) + : (c <= 12543 || (c >= 12549 && c <= 12591))))))))) + : (c <= 12686 || (c < 43020 + ? (c < 42656 + ? (c < 42240 + ? (c < 13312 + ? (c < 12784 + ? (c >= 12704 && c <= 12735) + : c <= 12799) + : (c <= 19903 || (c < 42192 + ? (c >= 19968 && c <= 42124) + : c <= 42237))) + : (c <= 42508 || (c < 42560 + ? (c < 42538 + ? (c >= 42512 && c <= 42527) + : c <= 42539) + : (c <= 42606 || (c >= 42623 && c <= 42653))))) + : (c <= 42735 || (c < 42963 + ? (c < 42891 + ? (c < 42786 + ? (c >= 42775 && c <= 42783) + : c <= 42888) + : (c <= 42954 || (c >= 42960 && c <= 42961))) + : (c <= 42963 || (c < 43011 + ? (c < 42994 + ? (c >= 42965 && c <= 42969) + : c <= 43009) + : (c <= 43013 || (c >= 43015 && c <= 43018))))))) + : (c <= 43042 || (c < 43471 + ? (c < 43261 + ? (c < 43250 + ? (c < 43138 + ? (c >= 43072 && c <= 43123) + : c <= 43187) + : (c <= 43255 || c == 43259)) + : (c <= 43262 || (c < 43360 + ? (c < 43312 + ? (c >= 43274 && c <= 43301) + : c <= 43334) + : (c <= 43388 || (c >= 43396 && c <= 43442))))) + : (c <= 43471 || (c < 43584 + ? (c < 43514 + ? (c < 43494 + ? (c >= 43488 && c <= 43492) + : c <= 43503) + : (c <= 43518 || (c >= 43520 && c <= 43560))) + : (c <= 43586 || (c < 43642 + ? (c < 43616 + ? (c >= 43588 && c <= 43595) + : c <= 43638) + : (c <= 43642 || (c >= 43646 && c <= 43695))))))))))))))) + : (c <= 43697 || (c < 71236 + ? (c < 67424 + ? (c < 65151 + ? (c < 64256 + ? (c < 43808 + ? (c < 43744 + ? (c < 43712 + ? (c < 43705 + ? (c >= 43701 && c <= 43702) + : c <= 43709) + : (c <= 43712 || (c < 43739 + ? c == 43714 + : c <= 43741))) + : (c <= 43754 || (c < 43785 + ? (c < 43777 + ? (c >= 43762 && c <= 43764) + : c <= 43782) + : (c <= 43790 || (c >= 43793 && c <= 43798))))) + : (c <= 43814 || (c < 44032 + ? (c < 43868 + ? (c < 43824 + ? (c >= 43816 && c <= 43822) + : c <= 43866) + : (c <= 43881 || (c >= 43888 && c <= 44002))) + : (c <= 55203 || (c < 63744 + ? (c < 55243 + ? (c >= 55216 && c <= 55238) + : c <= 55291) + : (c <= 64109 || (c >= 64112 && c <= 64217))))))) + : (c <= 64262 || (c < 64612 + ? (c < 64318 + ? (c < 64287 + ? (c < 64285 + ? (c >= 64275 && c <= 64279) + : c <= 64285) + : (c <= 64296 || (c < 64312 + ? (c >= 64298 && c <= 64310) + : c <= 64316))) + : (c <= 64318 || (c < 64326 + ? (c < 64323 + ? (c >= 64320 && c <= 64321) + : c <= 64324) + : (c <= 64433 || (c >= 64467 && c <= 64605))))) + : (c <= 64829 || (c < 65139 + ? (c < 65008 + ? (c < 64914 + ? (c >= 64848 && c <= 64911) + : c <= 64967) + : (c <= 65017 || c == 65137)) + : (c <= 65139 || (c < 65147 + ? (c < 65145 + ? c == 65143 + : c <= 65145) + : (c <= 65147 || c == 65149)))))))) + : (c <= 65276 || (c < 66384 + ? (c < 65576 + ? (c < 65482 + ? (c < 65382 + ? (c < 65345 + ? (c >= 65313 && c <= 65338) + : c <= 65370) + : (c <= 65437 || (c < 65474 + ? (c >= 65440 && c <= 65470) + : c <= 65479))) + : (c <= 65487 || (c < 65536 + ? (c < 65498 + ? (c >= 65490 && c <= 65495) + : c <= 65500) + : (c <= 65547 || (c >= 65549 && c <= 65574))))) + : (c <= 65594 || (c < 65856 + ? (c < 65616 + ? (c < 65599 + ? (c >= 65596 && c <= 65597) + : c <= 65613) + : (c <= 65629 || (c >= 65664 && c <= 65786))) + : (c <= 65908 || (c < 66304 + ? (c < 66208 + ? (c >= 66176 && c <= 66204) + : c <= 66256) + : (c <= 66335 || (c >= 66349 && c <= 66378))))))) + : (c <= 66421 || (c < 66928 + ? (c < 66560 + ? (c < 66504 + ? (c < 66464 + ? (c >= 66432 && c <= 66461) + : c <= 66499) + : (c <= 66511 || (c >= 66513 && c <= 66517))) + : (c <= 66717 || (c < 66816 + ? (c < 66776 + ? (c >= 66736 && c <= 66771) + : c <= 66811) + : (c <= 66855 || (c >= 66864 && c <= 66915))))) + : (c <= 66938 || (c < 66979 + ? (c < 66964 + ? (c < 66956 + ? (c >= 66940 && c <= 66954) + : c <= 66962) + : (c <= 66965 || (c >= 66967 && c <= 66977))) + : (c <= 66993 || (c < 67072 + ? (c < 67003 + ? (c >= 66995 && c <= 67001) + : c <= 67004) + : (c <= 67382 || (c >= 67392 && c <= 67413))))))))))) + : (c <= 67431 || (c < 69635 + ? (c < 68121 + ? (c < 67712 + ? (c < 67594 + ? (c < 67506 + ? (c < 67463 + ? (c >= 67456 && c <= 67461) + : c <= 67504) + : (c <= 67514 || (c < 67592 + ? (c >= 67584 && c <= 67589) + : c <= 67592))) + : (c <= 67637 || (c < 67647 + ? (c < 67644 + ? (c >= 67639 && c <= 67640) + : c <= 67644) + : (c <= 67669 || (c >= 67680 && c <= 67702))))) + : (c <= 67742 || (c < 67968 + ? (c < 67840 + ? (c < 67828 + ? (c >= 67808 && c <= 67826) + : c <= 67829) + : (c <= 67861 || (c >= 67872 && c <= 67897))) + : (c <= 68023 || (c < 68112 + ? (c < 68096 + ? (c >= 68030 && c <= 68031) + : c <= 68096) + : (c <= 68115 || (c >= 68117 && c <= 68119))))))) + : (c <= 68149 || (c < 68800 + ? (c < 68416 + ? (c < 68288 + ? (c < 68224 + ? (c >= 68192 && c <= 68220) + : c <= 68252) + : (c <= 68295 || (c < 68352 + ? (c >= 68297 && c <= 68324) + : c <= 68405))) + : (c <= 68437 || (c < 68608 + ? (c < 68480 + ? (c >= 68448 && c <= 68466) + : c <= 68497) + : (c <= 68680 || (c >= 68736 && c <= 68786))))) + : (c <= 68850 || (c < 69415 + ? (c < 69296 + ? (c < 69248 + ? (c >= 68864 && c <= 68899) + : c <= 69289) + : (c <= 69297 || (c >= 69376 && c <= 69404))) + : (c <= 69415 || (c < 69552 + ? (c < 69488 + ? (c >= 69424 && c <= 69445) + : c <= 69505) + : (c <= 69572 || (c >= 69600 && c <= 69622))))))))) + : (c <= 69687 || (c < 70303 + ? (c < 70081 + ? (c < 69956 + ? (c < 69763 + ? (c < 69749 + ? (c >= 69745 && c <= 69746) + : c <= 69749) + : (c <= 69807 || (c < 69891 + ? (c >= 69840 && c <= 69864) + : c <= 69926))) + : (c <= 69956 || (c < 70006 + ? (c < 69968 + ? c == 69959 + : c <= 70002) + : (c <= 70006 || (c >= 70019 && c <= 70066))))) + : (c <= 70084 || (c < 70207 + ? (c < 70144 + ? (c < 70108 + ? c == 70106 + : c <= 70108) + : (c <= 70161 || (c >= 70163 && c <= 70187))) + : (c <= 70208 || (c < 70282 + ? (c < 70280 + ? (c >= 70272 && c <= 70278) + : c <= 70280) + : (c <= 70285 || (c >= 70287 && c <= 70301))))))) + : (c <= 70312 || (c < 70493 + ? (c < 70442 + ? (c < 70415 + ? (c < 70405 + ? (c >= 70320 && c <= 70366) + : c <= 70412) + : (c <= 70416 || (c >= 70419 && c <= 70440))) + : (c <= 70448 || (c < 70461 + ? (c < 70453 + ? (c >= 70450 && c <= 70451) + : c <= 70457) + : (c <= 70461 || c == 70480)))) + : (c <= 70497 || (c < 70852 + ? (c < 70751 + ? (c < 70727 + ? (c >= 70656 && c <= 70708) + : c <= 70730) + : (c <= 70753 || (c >= 70784 && c <= 70831))) + : (c <= 70853 || (c < 71128 + ? (c < 71040 + ? c == 70855 + : c <= 71086) + : (c <= 71131 || (c >= 71168 && c <= 71215))))))))))))) + : (c <= 71236 || (c < 119973 + ? (c < 73728 + ? (c < 72272 + ? (c < 71960 + ? (c < 71840 + ? (c < 71424 + ? (c < 71352 + ? (c >= 71296 && c <= 71338) + : c <= 71352) + : (c <= 71450 || (c < 71680 + ? (c >= 71488 && c <= 71494) + : c <= 71723))) + : (c <= 71903 || (c < 71948 + ? (c < 71945 + ? (c >= 71935 && c <= 71942) + : c <= 71945) + : (c <= 71955 || (c >= 71957 && c <= 71958))))) + : (c <= 71983 || (c < 72161 + ? (c < 72096 + ? (c < 72001 + ? c == 71999 + : c <= 72001) + : (c <= 72103 || (c >= 72106 && c <= 72144))) + : (c <= 72161 || (c < 72203 + ? (c < 72192 + ? c == 72163 + : c <= 72192) + : (c <= 72242 || c == 72250)))))) + : (c <= 72272 || (c < 73030 + ? (c < 72768 + ? (c < 72368 + ? (c < 72349 + ? (c >= 72284 && c <= 72329) + : c <= 72349) + : (c <= 72440 || (c < 72714 + ? (c >= 72704 && c <= 72712) + : c <= 72750))) + : (c <= 72768 || (c < 72968 + ? (c < 72960 + ? (c >= 72818 && c <= 72847) + : c <= 72966) + : (c <= 72969 || (c >= 72971 && c <= 73008))))) + : (c <= 73030 || (c < 73440 + ? (c < 73066 + ? (c < 73063 + ? (c >= 73056 && c <= 73061) + : c <= 73064) + : (c <= 73097 || c == 73112)) + : (c <= 73458 || (c < 73490 + ? (c < 73476 + ? c == 73474 + : c <= 73488) + : (c <= 73523 || c == 73648)))))))) + : (c <= 74649 || (c < 94208 + ? (c < 92928 + ? (c < 82944 + ? (c < 77712 + ? (c < 74880 + ? (c >= 74752 && c <= 74862) + : c <= 75075) + : (c <= 77808 || (c < 78913 + ? (c >= 77824 && c <= 78895) + : c <= 78918))) + : (c <= 83526 || (c < 92784 + ? (c < 92736 + ? (c >= 92160 && c <= 92728) + : c <= 92766) + : (c <= 92862 || (c >= 92880 && c <= 92909))))) + : (c <= 92975 || (c < 93952 + ? (c < 93053 + ? (c < 93027 + ? (c >= 92992 && c <= 92995) + : c <= 93047) + : (c <= 93071 || (c >= 93760 && c <= 93823))) + : (c <= 94026 || (c < 94176 + ? (c < 94099 + ? c == 94032 + : c <= 94111) + : (c <= 94177 || c == 94179)))))) + : (c <= 100343 || (c < 110948 + ? (c < 110589 + ? (c < 110576 + ? (c < 101632 + ? (c >= 100352 && c <= 101589) + : c <= 101640) + : (c <= 110579 || (c >= 110581 && c <= 110587))) + : (c <= 110590 || (c < 110928 + ? (c < 110898 + ? (c >= 110592 && c <= 110882) + : c <= 110898) + : (c <= 110930 || c == 110933)))) + : (c <= 110951 || (c < 113808 + ? (c < 113776 + ? (c < 113664 + ? (c >= 110960 && c <= 111355) + : c <= 113770) + : (c <= 113788 || (c >= 113792 && c <= 113800))) + : (c <= 113817 || (c < 119966 + ? (c < 119894 + ? (c >= 119808 && c <= 119892) + : c <= 119964) + : (c <= 119967 || c == 119970)))))))))) + : (c <= 119974 || (c < 126464 + ? (c < 120656 + ? (c < 120128 + ? (c < 120071 + ? (c < 119995 + ? (c < 119982 + ? (c >= 119977 && c <= 119980) + : c <= 119993) + : (c <= 119995 || (c < 120005 + ? (c >= 119997 && c <= 120003) + : c <= 120069))) + : (c <= 120074 || (c < 120094 + ? (c < 120086 + ? (c >= 120077 && c <= 120084) + : c <= 120092) + : (c <= 120121 || (c >= 120123 && c <= 120126))))) + : (c <= 120132 || (c < 120514 + ? (c < 120146 + ? (c < 120138 + ? c == 120134 + : c <= 120144) + : (c <= 120485 || (c >= 120488 && c <= 120512))) + : (c <= 120538 || (c < 120598 + ? (c < 120572 + ? (c >= 120540 && c <= 120570) + : c <= 120596) + : (c <= 120628 || (c >= 120630 && c <= 120654))))))) + : (c <= 120686 || (c < 123536 + ? (c < 122661 + ? (c < 120746 + ? (c < 120714 + ? (c >= 120688 && c <= 120712) + : c <= 120744) + : (c <= 120770 || (c < 122624 + ? (c >= 120772 && c <= 120779) + : c <= 122654))) + : (c <= 122666 || (c < 123191 + ? (c < 123136 + ? (c >= 122928 && c <= 122989) + : c <= 123180) + : (c <= 123197 || c == 123214)))) + : (c <= 123565 || (c < 124909 + ? (c < 124896 + ? (c < 124112 + ? (c >= 123584 && c <= 123627) + : c <= 124139) + : (c <= 124902 || (c >= 124904 && c <= 124907))) + : (c <= 124910 || (c < 125184 + ? (c < 124928 + ? (c >= 124912 && c <= 124926) + : c <= 125124) + : (c <= 125251 || c == 125259)))))))) + : (c <= 126467 || (c < 126561 + ? (c < 126537 + ? (c < 126516 + ? (c < 126500 + ? (c < 126497 + ? (c >= 126469 && c <= 126495) + : c <= 126498) + : (c <= 126500 || (c < 126505 + ? c == 126503 + : c <= 126514))) + : (c <= 126519 || (c < 126530 + ? (c < 126523 + ? c == 126521 + : c <= 126523) + : (c <= 126530 || c == 126535)))) + : (c <= 126537 || (c < 126551 + ? (c < 126545 + ? (c < 126541 + ? c == 126539 + : c <= 126543) + : (c <= 126546 || c == 126548)) + : (c <= 126551 || (c < 126557 + ? (c < 126555 + ? c == 126553 + : c <= 126555) + : (c <= 126557 || c == 126559)))))) + : (c <= 126562 || (c < 126629 + ? (c < 126585 + ? (c < 126572 + ? (c < 126567 + ? c == 126564 + : c <= 126570) + : (c <= 126578 || (c >= 126580 && c <= 126583))) + : (c <= 126588 || (c < 126603 + ? (c < 126592 + ? c == 126590 + : c <= 126601) + : (c <= 126619 || (c >= 126625 && c <= 126627))))) + : (c <= 126633 || (c < 178208 + ? (c < 173824 + ? (c < 131072 + ? (c >= 126635 && c <= 126651) + : c <= 173791) + : (c <= 177977 || (c >= 177984 && c <= 178205))) + : (c <= 183969 || (c < 196608 + ? (c < 194560 + ? (c >= 183984 && c <= 191456) + : c <= 195101) + : (c <= 201546 || (c >= 201552 && c <= 205743))))))))))))))))); +} + +static inline bool sym_identifier_character_set_7(int32_t c) { + return (c < 43642 + ? (c < 4206 + ? (c < 2730 + ? (c < 1994 + ? (c < 910 + ? (c < 736 + ? (c < 186 + ? (c < 'v' + ? (c < 'a' + ? (c >= 'A' && c <= '_') + : c <= 't') + : (c <= 'z' || (c < 181 + ? c == 170 + : c <= 181))) + : (c <= 186 || (c < 248 + ? (c < 216 + ? (c >= 192 && c <= 214) + : c <= 246) + : (c <= 705 || (c >= 710 && c <= 721))))) + : (c <= 740 || (c < 891 + ? (c < 880 + ? (c < 750 + ? c == 748 + : c <= 750) + : (c <= 884 || (c >= 886 && c <= 887))) + : (c <= 893 || (c < 904 + ? (c < 902 + ? c == 895 + : c <= 902) + : (c <= 906 || c == 908)))))) + : (c <= 929 || (c < 1649 + ? (c < 1376 + ? (c < 1162 + ? (c < 1015 + ? (c >= 931 && c <= 1013) + : c <= 1153) + : (c <= 1327 || (c < 1369 + ? (c >= 1329 && c <= 1366) + : c <= 1369))) + : (c <= 1416 || (c < 1568 + ? (c < 1519 + ? (c >= 1488 && c <= 1514) + : c <= 1522) + : (c <= 1610 || (c >= 1646 && c <= 1647))))) + : (c <= 1747 || (c < 1791 + ? (c < 1774 + ? (c < 1765 + ? c == 1749 + : c <= 1766) + : (c <= 1775 || (c >= 1786 && c <= 1788))) + : (c <= 1791 || (c < 1869 + ? (c < 1810 + ? c == 1808 + : c <= 1839) + : (c <= 1957 || c == 1969)))))))) + : (c <= 2026 || (c < 2482 + ? (c < 2208 + ? (c < 2088 + ? (c < 2048 + ? (c < 2042 + ? (c >= 2036 && c <= 2037) + : c <= 2042) + : (c <= 2069 || (c < 2084 + ? c == 2074 + : c <= 2084))) + : (c <= 2088 || (c < 2160 + ? (c < 2144 + ? (c >= 2112 && c <= 2136) + : c <= 2154) + : (c <= 2183 || (c >= 2185 && c <= 2190))))) + : (c <= 2249 || (c < 2417 + ? (c < 2384 + ? (c < 2365 + ? (c >= 2308 && c <= 2361) + : c <= 2365) + : (c <= 2384 || (c >= 2392 && c <= 2401))) + : (c <= 2432 || (c < 2451 + ? (c < 2447 + ? (c >= 2437 && c <= 2444) + : c <= 2448) + : (c <= 2472 || (c >= 2474 && c <= 2480))))))) + : (c <= 2482 || (c < 2602 + ? (c < 2544 + ? (c < 2510 + ? (c < 2493 + ? (c >= 2486 && c <= 2489) + : c <= 2493) + : (c <= 2510 || (c < 2527 + ? (c >= 2524 && c <= 2525) + : c <= 2529))) + : (c <= 2545 || (c < 2575 + ? (c < 2565 + ? c == 2556 + : c <= 2570) + : (c <= 2576 || (c >= 2579 && c <= 2600))))) + : (c <= 2608 || (c < 2654 + ? (c < 2616 + ? (c < 2613 + ? (c >= 2610 && c <= 2611) + : c <= 2614) + : (c <= 2617 || (c >= 2649 && c <= 2652))) + : (c <= 2654 || (c < 2703 + ? (c < 2693 + ? (c >= 2674 && c <= 2676) + : c <= 2701) + : (c <= 2705 || (c >= 2707 && c <= 2728))))))))))) + : (c <= 2736 || (c < 3261 + ? (c < 2969 + ? (c < 2866 + ? (c < 2809 + ? (c < 2749 + ? (c < 2741 + ? (c >= 2738 && c <= 2739) + : c <= 2745) + : (c <= 2749 || (c < 2784 + ? c == 2768 + : c <= 2785))) + : (c <= 2809 || (c < 2835 + ? (c < 2831 + ? (c >= 2821 && c <= 2828) + : c <= 2832) + : (c <= 2856 || (c >= 2858 && c <= 2864))))) + : (c <= 2867 || (c < 2929 + ? (c < 2908 + ? (c < 2877 + ? (c >= 2869 && c <= 2873) + : c <= 2877) + : (c <= 2909 || (c >= 2911 && c <= 2913))) + : (c <= 2929 || (c < 2958 + ? (c < 2949 + ? c == 2947 + : c <= 2954) + : (c <= 2960 || (c >= 2962 && c <= 2965))))))) + : (c <= 2970 || (c < 3133 + ? (c < 3024 + ? (c < 2979 + ? (c < 2974 + ? c == 2972 + : c <= 2975) + : (c <= 2980 || (c < 2990 + ? (c >= 2984 && c <= 2986) + : c <= 3001))) + : (c <= 3024 || (c < 3090 + ? (c < 3086 + ? (c >= 3077 && c <= 3084) + : c <= 3088) + : (c <= 3112 || (c >= 3114 && c <= 3129))))) + : (c <= 3133 || (c < 3205 + ? (c < 3168 + ? (c < 3165 + ? (c >= 3160 && c <= 3162) + : c <= 3165) + : (c <= 3169 || c == 3200)) + : (c <= 3212 || (c < 3242 + ? (c < 3218 + ? (c >= 3214 && c <= 3216) + : c <= 3240) + : (c <= 3251 || (c >= 3253 && c <= 3257))))))))) + : (c <= 3261 || (c < 3716 + ? (c < 3450 + ? (c < 3346 + ? (c < 3313 + ? (c < 3296 + ? (c >= 3293 && c <= 3294) + : c <= 3297) + : (c <= 3314 || (c < 3342 + ? (c >= 3332 && c <= 3340) + : c <= 3344))) + : (c <= 3386 || (c < 3412 + ? (c < 3406 + ? c == 3389 + : c <= 3406) + : (c <= 3414 || (c >= 3423 && c <= 3425))))) + : (c <= 3455 || (c < 3520 + ? (c < 3507 + ? (c < 3482 + ? (c >= 3461 && c <= 3478) + : c <= 3505) + : (c <= 3515 || c == 3517)) + : (c <= 3526 || (c < 3648 + ? (c < 3634 + ? (c >= 3585 && c <= 3632) + : c <= 3634) + : (c <= 3654 || (c >= 3713 && c <= 3714))))))) + : (c <= 3716 || (c < 3840 + ? (c < 3762 + ? (c < 3749 + ? (c < 3724 + ? (c >= 3718 && c <= 3722) + : c <= 3747) + : (c <= 3749 || (c >= 3751 && c <= 3760))) + : (c <= 3762 || (c < 3782 + ? (c < 3776 + ? c == 3773 + : c <= 3780) + : (c <= 3782 || (c >= 3804 && c <= 3807))))) + : (c <= 3840 || (c < 4159 + ? (c < 3976 + ? (c < 3913 + ? (c >= 3904 && c <= 3911) + : c <= 3948) + : (c <= 3980 || (c >= 4096 && c <= 4138))) + : (c <= 4159 || (c < 4193 + ? (c < 4186 + ? (c >= 4176 && c <= 4181) + : c <= 4189) + : (c <= 4193 || (c >= 4197 && c <= 4198))))))))))))) + : (c <= 4208 || (c < 8178 + ? (c < 6320 + ? (c < 4882 + ? (c < 4698 + ? (c < 4304 + ? (c < 4256 + ? (c < 4238 + ? (c >= 4213 && c <= 4225) + : c <= 4238) + : (c <= 4293 || (c < 4301 + ? c == 4295 + : c <= 4301))) + : (c <= 4346 || (c < 4688 + ? (c < 4682 + ? (c >= 4348 && c <= 4680) + : c <= 4685) + : (c <= 4694 || c == 4696)))) + : (c <= 4701 || (c < 4792 + ? (c < 4752 + ? (c < 4746 + ? (c >= 4704 && c <= 4744) + : c <= 4749) + : (c <= 4784 || (c >= 4786 && c <= 4789))) + : (c <= 4798 || (c < 4808 + ? (c < 4802 + ? c == 4800 + : c <= 4805) + : (c <= 4822 || (c >= 4824 && c <= 4880))))))) + : (c <= 4885 || (c < 5919 + ? (c < 5743 + ? (c < 5024 + ? (c < 4992 + ? (c >= 4888 && c <= 4954) + : c <= 5007) + : (c <= 5109 || (c < 5121 + ? (c >= 5112 && c <= 5117) + : c <= 5740))) + : (c <= 5759 || (c < 5870 + ? (c < 5792 + ? (c >= 5761 && c <= 5786) + : c <= 5866) + : (c <= 5880 || (c >= 5888 && c <= 5905))))) + : (c <= 5937 || (c < 6103 + ? (c < 5998 + ? (c < 5984 + ? (c >= 5952 && c <= 5969) + : c <= 5996) + : (c <= 6000 || (c >= 6016 && c <= 6067))) + : (c <= 6103 || (c < 6272 + ? (c < 6176 + ? c == 6108 + : c <= 6264) + : (c <= 6312 || c == 6314)))))))) + : (c <= 6389 || (c < 7406 + ? (c < 7043 + ? (c < 6656 + ? (c < 6512 + ? (c < 6480 + ? (c >= 6400 && c <= 6430) + : c <= 6509) + : (c <= 6516 || (c < 6576 + ? (c >= 6528 && c <= 6571) + : c <= 6601))) + : (c <= 6678 || (c < 6917 + ? (c < 6823 + ? (c >= 6688 && c <= 6740) + : c <= 6823) + : (c <= 6963 || (c >= 6981 && c <= 6988))))) + : (c <= 7072 || (c < 7258 + ? (c < 7168 + ? (c < 7098 + ? (c >= 7086 && c <= 7087) + : c <= 7141) + : (c <= 7203 || (c >= 7245 && c <= 7247))) + : (c <= 7293 || (c < 7357 + ? (c < 7312 + ? (c >= 7296 && c <= 7304) + : c <= 7354) + : (c <= 7359 || (c >= 7401 && c <= 7404))))))) + : (c <= 7411 || (c < 8029 + ? (c < 7968 + ? (c < 7424 + ? (c < 7418 + ? (c >= 7413 && c <= 7414) + : c <= 7418) + : (c <= 7615 || (c < 7960 + ? (c >= 7680 && c <= 7957) + : c <= 7965))) + : (c <= 8005 || (c < 8025 + ? (c < 8016 + ? (c >= 8008 && c <= 8013) + : c <= 8023) + : (c <= 8025 || c == 8027)))) + : (c <= 8029 || (c < 8130 + ? (c < 8118 + ? (c < 8064 + ? (c >= 8031 && c <= 8061) + : c <= 8116) + : (c <= 8124 || c == 8126)) + : (c <= 8132 || (c < 8150 + ? (c < 8144 + ? (c >= 8134 && c <= 8140) + : c <= 8147) + : (c <= 8155 || (c >= 8160 && c <= 8172))))))))))) + : (c <= 8180 || (c < 12540 + ? (c < 11520 + ? (c < 8486 + ? (c < 8455 + ? (c < 8319 + ? (c < 8305 + ? (c >= 8182 && c <= 8188) + : c <= 8305) + : (c <= 8319 || (c < 8450 + ? (c >= 8336 && c <= 8348) + : c <= 8450))) + : (c <= 8455 || (c < 8472 + ? (c < 8469 + ? (c >= 8458 && c <= 8467) + : c <= 8469) + : (c <= 8477 || c == 8484)))) + : (c <= 8486 || (c < 8526 + ? (c < 8508 + ? (c < 8490 + ? c == 8488 + : c <= 8505) + : (c <= 8511 || (c >= 8517 && c <= 8521))) + : (c <= 8526 || (c < 11499 + ? (c < 11264 + ? (c >= 8544 && c <= 8584) + : c <= 11492) + : (c <= 11502 || (c >= 11506 && c <= 11507))))))) + : (c <= 11557 || (c < 11720 + ? (c < 11680 + ? (c < 11568 + ? (c < 11565 + ? c == 11559 + : c <= 11565) + : (c <= 11623 || (c < 11648 + ? c == 11631 + : c <= 11670))) + : (c <= 11686 || (c < 11704 + ? (c < 11696 + ? (c >= 11688 && c <= 11694) + : c <= 11702) + : (c <= 11710 || (c >= 11712 && c <= 11718))))) + : (c <= 11726 || (c < 12337 + ? (c < 12293 + ? (c < 11736 + ? (c >= 11728 && c <= 11734) + : c <= 11742) + : (c <= 12295 || (c >= 12321 && c <= 12329))) + : (c <= 12341 || (c < 12445 + ? (c < 12353 + ? (c >= 12344 && c <= 12348) + : c <= 12438) + : (c <= 12447 || (c >= 12449 && c <= 12538))))))))) + : (c <= 12543 || (c < 43011 + ? (c < 42560 + ? (c < 19968 + ? (c < 12704 + ? (c < 12593 + ? (c >= 12549 && c <= 12591) + : c <= 12686) + : (c <= 12735 || (c < 13312 + ? (c >= 12784 && c <= 12799) + : c <= 19903))) + : (c <= 42124 || (c < 42512 + ? (c < 42240 + ? (c >= 42192 && c <= 42237) + : c <= 42508) + : (c <= 42527 || (c >= 42538 && c <= 42539))))) + : (c <= 42606 || (c < 42891 + ? (c < 42775 + ? (c < 42656 + ? (c >= 42623 && c <= 42653) + : c <= 42735) + : (c <= 42783 || (c >= 42786 && c <= 42888))) + : (c <= 42954 || (c < 42965 + ? (c < 42963 + ? (c >= 42960 && c <= 42961) + : c <= 42963) + : (c <= 42969 || (c >= 42994 && c <= 43009))))))) + : (c <= 43013 || (c < 43360 + ? (c < 43250 + ? (c < 43072 + ? (c < 43020 + ? (c >= 43015 && c <= 43018) + : c <= 43042) + : (c <= 43123 || (c >= 43138 && c <= 43187))) + : (c <= 43255 || (c < 43274 + ? (c < 43261 + ? c == 43259 + : c <= 43262) + : (c <= 43301 || (c >= 43312 && c <= 43334))))) + : (c <= 43388 || (c < 43514 + ? (c < 43488 + ? (c < 43471 + ? (c >= 43396 && c <= 43442) + : c <= 43471) + : (c <= 43492 || (c >= 43494 && c <= 43503))) + : (c <= 43518 || (c < 43588 + ? (c < 43584 + ? (c >= 43520 && c <= 43560) + : c <= 43586) + : (c <= 43595 || (c >= 43616 && c <= 43638))))))))))))))) + : (c <= 43642 || (c < 71168 + ? (c < 67392 + ? (c < 65147 + ? (c < 63744 + ? (c < 43785 + ? (c < 43714 + ? (c < 43701 + ? (c < 43697 + ? (c >= 43646 && c <= 43695) + : c <= 43697) + : (c <= 43702 || (c < 43712 + ? (c >= 43705 && c <= 43709) + : c <= 43712))) + : (c <= 43714 || (c < 43762 + ? (c < 43744 + ? (c >= 43739 && c <= 43741) + : c <= 43754) + : (c <= 43764 || (c >= 43777 && c <= 43782))))) + : (c <= 43790 || (c < 43868 + ? (c < 43816 + ? (c < 43808 + ? (c >= 43793 && c <= 43798) + : c <= 43814) + : (c <= 43822 || (c >= 43824 && c <= 43866))) + : (c <= 43881 || (c < 55216 + ? (c < 44032 + ? (c >= 43888 && c <= 44002) + : c <= 55203) + : (c <= 55238 || (c >= 55243 && c <= 55291))))))) + : (c <= 64109 || (c < 64326 + ? (c < 64298 + ? (c < 64275 + ? (c < 64256 + ? (c >= 64112 && c <= 64217) + : c <= 64262) + : (c <= 64279 || (c < 64287 + ? c == 64285 + : c <= 64296))) + : (c <= 64310 || (c < 64320 + ? (c < 64318 + ? (c >= 64312 && c <= 64316) + : c <= 64318) + : (c <= 64321 || (c >= 64323 && c <= 64324))))) + : (c <= 64433 || (c < 65008 + ? (c < 64848 + ? (c < 64612 + ? (c >= 64467 && c <= 64605) + : c <= 64829) + : (c <= 64911 || (c >= 64914 && c <= 64967))) + : (c <= 65017 || (c < 65143 + ? (c < 65139 + ? c == 65137 + : c <= 65139) + : (c <= 65143 || c == 65145)))))))) + : (c <= 65147 || (c < 66304 + ? (c < 65536 + ? (c < 65440 + ? (c < 65313 + ? (c < 65151 + ? c == 65149 + : c <= 65276) + : (c <= 65338 || (c < 65382 + ? (c >= 65345 && c <= 65370) + : c <= 65437))) + : (c <= 65470 || (c < 65490 + ? (c < 65482 + ? (c >= 65474 && c <= 65479) + : c <= 65487) + : (c <= 65495 || (c >= 65498 && c <= 65500))))) + : (c <= 65547 || (c < 65616 + ? (c < 65596 + ? (c < 65576 + ? (c >= 65549 && c <= 65574) + : c <= 65594) + : (c <= 65597 || (c >= 65599 && c <= 65613))) + : (c <= 65629 || (c < 66176 + ? (c < 65856 + ? (c >= 65664 && c <= 65786) + : c <= 65908) + : (c <= 66204 || (c >= 66208 && c <= 66256))))))) + : (c <= 66335 || (c < 66864 + ? (c < 66513 + ? (c < 66432 + ? (c < 66384 + ? (c >= 66349 && c <= 66378) + : c <= 66421) + : (c <= 66461 || (c < 66504 + ? (c >= 66464 && c <= 66499) + : c <= 66511))) + : (c <= 66517 || (c < 66776 + ? (c < 66736 + ? (c >= 66560 && c <= 66717) + : c <= 66771) + : (c <= 66811 || (c >= 66816 && c <= 66855))))) + : (c <= 66915 || (c < 66967 + ? (c < 66956 + ? (c < 66940 + ? (c >= 66928 && c <= 66938) + : c <= 66954) + : (c <= 66962 || (c >= 66964 && c <= 66965))) + : (c <= 66977 || (c < 67003 + ? (c < 66995 + ? (c >= 66979 && c <= 66993) + : c <= 67001) + : (c <= 67004 || (c >= 67072 && c <= 67382))))))))))) + : (c <= 67413 || (c < 69600 + ? (c < 68117 + ? (c < 67680 + ? (c < 67592 + ? (c < 67463 + ? (c < 67456 + ? (c >= 67424 && c <= 67431) + : c <= 67461) + : (c <= 67504 || (c < 67584 + ? (c >= 67506 && c <= 67514) + : c <= 67589))) + : (c <= 67592 || (c < 67644 + ? (c < 67639 + ? (c >= 67594 && c <= 67637) + : c <= 67640) + : (c <= 67644 || (c >= 67647 && c <= 67669))))) + : (c <= 67702 || (c < 67872 + ? (c < 67828 + ? (c < 67808 + ? (c >= 67712 && c <= 67742) + : c <= 67826) + : (c <= 67829 || (c >= 67840 && c <= 67861))) + : (c <= 67897 || (c < 68096 + ? (c < 68030 + ? (c >= 67968 && c <= 68023) + : c <= 68031) + : (c <= 68096 || (c >= 68112 && c <= 68115))))))) + : (c <= 68119 || (c < 68736 + ? (c < 68352 + ? (c < 68224 + ? (c < 68192 + ? (c >= 68121 && c <= 68149) + : c <= 68220) + : (c <= 68252 || (c < 68297 + ? (c >= 68288 && c <= 68295) + : c <= 68324))) + : (c <= 68405 || (c < 68480 + ? (c < 68448 + ? (c >= 68416 && c <= 68437) + : c <= 68466) + : (c <= 68497 || (c >= 68608 && c <= 68680))))) + : (c <= 68786 || (c < 69376 + ? (c < 69248 + ? (c < 68864 + ? (c >= 68800 && c <= 68850) + : c <= 68899) + : (c <= 69289 || (c >= 69296 && c <= 69297))) + : (c <= 69404 || (c < 69488 + ? (c < 69424 + ? c == 69415 + : c <= 69445) + : (c <= 69505 || (c >= 69552 && c <= 69572))))))))) + : (c <= 69622 || (c < 70287 + ? (c < 70019 + ? (c < 69891 + ? (c < 69749 + ? (c < 69745 + ? (c >= 69635 && c <= 69687) + : c <= 69746) + : (c <= 69749 || (c < 69840 + ? (c >= 69763 && c <= 69807) + : c <= 69864))) + : (c <= 69926 || (c < 69968 + ? (c < 69959 + ? c == 69956 + : c <= 69959) + : (c <= 70002 || c == 70006)))) + : (c <= 70066 || (c < 70163 + ? (c < 70108 + ? (c < 70106 + ? (c >= 70081 && c <= 70084) + : c <= 70106) + : (c <= 70108 || (c >= 70144 && c <= 70161))) + : (c <= 70187 || (c < 70280 + ? (c < 70272 + ? (c >= 70207 && c <= 70208) + : c <= 70278) + : (c <= 70280 || (c >= 70282 && c <= 70285))))))) + : (c <= 70301 || (c < 70480 + ? (c < 70419 + ? (c < 70405 + ? (c < 70320 + ? (c >= 70303 && c <= 70312) + : c <= 70366) + : (c <= 70412 || (c >= 70415 && c <= 70416))) + : (c <= 70440 || (c < 70453 + ? (c < 70450 + ? (c >= 70442 && c <= 70448) + : c <= 70451) + : (c <= 70457 || c == 70461)))) + : (c <= 70480 || (c < 70784 + ? (c < 70727 + ? (c < 70656 + ? (c >= 70493 && c <= 70497) + : c <= 70708) + : (c <= 70730 || (c >= 70751 && c <= 70753))) + : (c <= 70831 || (c < 71040 + ? (c < 70855 + ? (c >= 70852 && c <= 70853) + : c <= 70855) + : (c <= 71086 || (c >= 71128 && c <= 71131))))))))))))) + : (c <= 71215 || (c < 119973 + ? (c < 73648 + ? (c < 72250 + ? (c < 71957 + ? (c < 71680 + ? (c < 71352 + ? (c < 71296 + ? c == 71236 + : c <= 71338) + : (c <= 71352 || (c < 71488 + ? (c >= 71424 && c <= 71450) + : c <= 71494))) + : (c <= 71723 || (c < 71945 + ? (c < 71935 + ? (c >= 71840 && c <= 71903) + : c <= 71942) + : (c <= 71945 || (c >= 71948 && c <= 71955))))) + : (c <= 71958 || (c < 72106 + ? (c < 72001 + ? (c < 71999 + ? (c >= 71960 && c <= 71983) + : c <= 71999) + : (c <= 72001 || (c >= 72096 && c <= 72103))) + : (c <= 72144 || (c < 72192 + ? (c < 72163 + ? c == 72161 + : c <= 72163) + : (c <= 72192 || (c >= 72203 && c <= 72242))))))) + : (c <= 72250 || (c < 72971 + ? (c < 72714 + ? (c < 72349 + ? (c < 72284 + ? c == 72272 + : c <= 72329) + : (c <= 72349 || (c < 72704 + ? (c >= 72368 && c <= 72440) + : c <= 72712))) + : (c <= 72750 || (c < 72960 + ? (c < 72818 + ? c == 72768 + : c <= 72847) + : (c <= 72966 || (c >= 72968 && c <= 72969))))) + : (c <= 73008 || (c < 73112 + ? (c < 73063 + ? (c < 73056 + ? c == 73030 + : c <= 73061) + : (c <= 73064 || (c >= 73066 && c <= 73097))) + : (c <= 73112 || (c < 73476 + ? (c < 73474 + ? (c >= 73440 && c <= 73458) + : c <= 73474) + : (c <= 73488 || (c >= 73490 && c <= 73523))))))))) + : (c <= 73648 || (c < 94179 + ? (c < 92880 + ? (c < 78913 + ? (c < 74880 + ? (c < 74752 + ? (c >= 73728 && c <= 74649) + : c <= 74862) + : (c <= 75075 || (c < 77824 + ? (c >= 77712 && c <= 77808) + : c <= 78895))) + : (c <= 78918 || (c < 92736 + ? (c < 92160 + ? (c >= 82944 && c <= 83526) + : c <= 92728) + : (c <= 92766 || (c >= 92784 && c <= 92862))))) + : (c <= 92909 || (c < 93760 + ? (c < 93027 + ? (c < 92992 + ? (c >= 92928 && c <= 92975) + : c <= 92995) + : (c <= 93047 || (c >= 93053 && c <= 93071))) + : (c <= 93823 || (c < 94099 + ? (c < 94032 + ? (c >= 93952 && c <= 94026) + : c <= 94032) + : (c <= 94111 || (c >= 94176 && c <= 94177))))))) + : (c <= 94179 || (c < 110948 + ? (c < 110589 + ? (c < 101632 + ? (c < 100352 + ? (c >= 94208 && c <= 100343) + : c <= 101589) + : (c <= 101640 || (c < 110581 + ? (c >= 110576 && c <= 110579) + : c <= 110587))) + : (c <= 110590 || (c < 110928 + ? (c < 110898 + ? (c >= 110592 && c <= 110882) + : c <= 110898) + : (c <= 110930 || c == 110933)))) + : (c <= 110951 || (c < 113808 + ? (c < 113776 + ? (c < 113664 + ? (c >= 110960 && c <= 111355) + : c <= 113770) + : (c <= 113788 || (c >= 113792 && c <= 113800))) + : (c <= 113817 || (c < 119966 + ? (c < 119894 + ? (c >= 119808 && c <= 119892) + : c <= 119964) + : (c <= 119967 || c == 119970)))))))))) + : (c <= 119974 || (c < 126464 + ? (c < 120656 + ? (c < 120128 + ? (c < 120071 + ? (c < 119995 + ? (c < 119982 + ? (c >= 119977 && c <= 119980) + : c <= 119993) + : (c <= 119995 || (c < 120005 + ? (c >= 119997 && c <= 120003) + : c <= 120069))) + : (c <= 120074 || (c < 120094 + ? (c < 120086 + ? (c >= 120077 && c <= 120084) + : c <= 120092) + : (c <= 120121 || (c >= 120123 && c <= 120126))))) + : (c <= 120132 || (c < 120514 + ? (c < 120146 + ? (c < 120138 + ? c == 120134 + : c <= 120144) + : (c <= 120485 || (c >= 120488 && c <= 120512))) + : (c <= 120538 || (c < 120598 + ? (c < 120572 + ? (c >= 120540 && c <= 120570) + : c <= 120596) + : (c <= 120628 || (c >= 120630 && c <= 120654))))))) + : (c <= 120686 || (c < 123536 + ? (c < 122661 + ? (c < 120746 + ? (c < 120714 + ? (c >= 120688 && c <= 120712) + : c <= 120744) + : (c <= 120770 || (c < 122624 + ? (c >= 120772 && c <= 120779) + : c <= 122654))) + : (c <= 122666 || (c < 123191 + ? (c < 123136 + ? (c >= 122928 && c <= 122989) + : c <= 123180) + : (c <= 123197 || c == 123214)))) + : (c <= 123565 || (c < 124909 + ? (c < 124896 + ? (c < 124112 + ? (c >= 123584 && c <= 123627) + : c <= 124139) + : (c <= 124902 || (c >= 124904 && c <= 124907))) + : (c <= 124910 || (c < 125184 + ? (c < 124928 + ? (c >= 124912 && c <= 124926) + : c <= 125124) + : (c <= 125251 || c == 125259)))))))) + : (c <= 126467 || (c < 126561 + ? (c < 126537 + ? (c < 126516 + ? (c < 126500 + ? (c < 126497 + ? (c >= 126469 && c <= 126495) + : c <= 126498) + : (c <= 126500 || (c < 126505 + ? c == 126503 + : c <= 126514))) + : (c <= 126519 || (c < 126530 + ? (c < 126523 + ? c == 126521 + : c <= 126523) + : (c <= 126530 || c == 126535)))) + : (c <= 126537 || (c < 126551 + ? (c < 126545 + ? (c < 126541 + ? c == 126539 + : c <= 126543) + : (c <= 126546 || c == 126548)) + : (c <= 126551 || (c < 126557 + ? (c < 126555 + ? c == 126553 + : c <= 126555) + : (c <= 126557 || c == 126559)))))) + : (c <= 126562 || (c < 126629 + ? (c < 126585 + ? (c < 126572 + ? (c < 126567 + ? c == 126564 + : c <= 126570) + : (c <= 126578 || (c >= 126580 && c <= 126583))) + : (c <= 126588 || (c < 126603 + ? (c < 126592 + ? c == 126590 + : c <= 126601) + : (c <= 126619 || (c >= 126625 && c <= 126627))))) + : (c <= 126633 || (c < 178208 + ? (c < 173824 + ? (c < 131072 + ? (c >= 126635 && c <= 126651) + : c <= 173791) + : (c <= 177977 || (c >= 177984 && c <= 178205))) + : (c <= 183969 || (c < 196608 + ? (c < 194560 + ? (c >= 183984 && c <= 191456) + : c <= 195101) + : (c <= 201546 || (c >= 201552 && c <= 205743))))))))))))))))); +} + +static inline bool sym_identifier_character_set_8(int32_t c) { + return (c < 43646 + ? (c < 4213 + ? (c < 2738 + ? (c < 2036 + ? (c < 931 + ? (c < 748 + ? (c < 192 + ? (c < 170 + ? (c < 'a' + ? (c >= 'A' && c <= '_') + : c <= 'z') + : (c <= 170 || (c < 186 + ? c == 181 + : c <= 186))) + : (c <= 214 || (c < 710 + ? (c < 248 + ? (c >= 216 && c <= 246) + : c <= 705) + : (c <= 721 || (c >= 736 && c <= 740))))) + : (c <= 748 || (c < 895 + ? (c < 886 + ? (c < 880 + ? c == 750 + : c <= 884) + : (c <= 887 || (c >= 891 && c <= 893))) + : (c <= 895 || (c < 908 + ? (c < 904 + ? c == 902 + : c <= 906) + : (c <= 908 || (c >= 910 && c <= 929))))))) + : (c <= 1013 || (c < 1749 + ? (c < 1488 + ? (c < 1329 + ? (c < 1162 + ? (c >= 1015 && c <= 1153) + : c <= 1327) + : (c <= 1366 || (c < 1376 + ? c == 1369 + : c <= 1416))) + : (c <= 1514 || (c < 1646 + ? (c < 1568 + ? (c >= 1519 && c <= 1522) + : c <= 1610) + : (c <= 1647 || (c >= 1649 && c <= 1747))))) + : (c <= 1749 || (c < 1808 + ? (c < 1786 + ? (c < 1774 + ? (c >= 1765 && c <= 1766) + : c <= 1775) + : (c <= 1788 || c == 1791)) + : (c <= 1808 || (c < 1969 + ? (c < 1869 + ? (c >= 1810 && c <= 1839) + : c <= 1957) + : (c <= 1969 || (c >= 1994 && c <= 2026))))))))) + : (c <= 2037 || (c < 2486 + ? (c < 2308 + ? (c < 2112 + ? (c < 2074 + ? (c < 2048 + ? c == 2042 + : c <= 2069) + : (c <= 2074 || (c < 2088 + ? c == 2084 + : c <= 2088))) + : (c <= 2136 || (c < 2185 + ? (c < 2160 + ? (c >= 2144 && c <= 2154) + : c <= 2183) + : (c <= 2190 || (c >= 2208 && c <= 2249))))) + : (c <= 2361 || (c < 2437 + ? (c < 2392 + ? (c < 2384 + ? c == 2365 + : c <= 2384) + : (c <= 2401 || (c >= 2417 && c <= 2432))) + : (c <= 2444 || (c < 2474 + ? (c < 2451 + ? (c >= 2447 && c <= 2448) + : c <= 2472) + : (c <= 2480 || c == 2482)))))) + : (c <= 2489 || (c < 2610 + ? (c < 2556 + ? (c < 2524 + ? (c < 2510 + ? c == 2493 + : c <= 2510) + : (c <= 2525 || (c < 2544 + ? (c >= 2527 && c <= 2529) + : c <= 2545))) + : (c <= 2556 || (c < 2579 + ? (c < 2575 + ? (c >= 2565 && c <= 2570) + : c <= 2576) + : (c <= 2600 || (c >= 2602 && c <= 2608))))) + : (c <= 2611 || (c < 2674 + ? (c < 2649 + ? (c < 2616 + ? (c >= 2613 && c <= 2614) + : c <= 2617) + : (c <= 2652 || c == 2654)) + : (c <= 2676 || (c < 2707 + ? (c < 2703 + ? (c >= 2693 && c <= 2701) + : c <= 2705) + : (c <= 2728 || (c >= 2730 && c <= 2736))))))))))) + : (c <= 2739 || (c < 3293 + ? (c < 2972 + ? (c < 2869 + ? (c < 2821 + ? (c < 2768 + ? (c < 2749 + ? (c >= 2741 && c <= 2745) + : c <= 2749) + : (c <= 2768 || (c < 2809 + ? (c >= 2784 && c <= 2785) + : c <= 2809))) + : (c <= 2828 || (c < 2858 + ? (c < 2835 + ? (c >= 2831 && c <= 2832) + : c <= 2856) + : (c <= 2864 || (c >= 2866 && c <= 2867))))) + : (c <= 2873 || (c < 2947 + ? (c < 2911 + ? (c < 2908 + ? c == 2877 + : c <= 2909) + : (c <= 2913 || c == 2929)) + : (c <= 2947 || (c < 2962 + ? (c < 2958 + ? (c >= 2949 && c <= 2954) + : c <= 2960) + : (c <= 2965 || (c >= 2969 && c <= 2970))))))) + : (c <= 2972 || (c < 3160 + ? (c < 3077 + ? (c < 2984 + ? (c < 2979 + ? (c >= 2974 && c <= 2975) + : c <= 2980) + : (c <= 2986 || (c < 3024 + ? (c >= 2990 && c <= 3001) + : c <= 3024))) + : (c <= 3084 || (c < 3114 + ? (c < 3090 + ? (c >= 3086 && c <= 3088) + : c <= 3112) + : (c <= 3129 || c == 3133)))) + : (c <= 3162 || (c < 3214 + ? (c < 3200 + ? (c < 3168 + ? c == 3165 + : c <= 3169) + : (c <= 3200 || (c >= 3205 && c <= 3212))) + : (c <= 3216 || (c < 3253 + ? (c < 3242 + ? (c >= 3218 && c <= 3240) + : c <= 3251) + : (c <= 3257 || c == 3261)))))))) + : (c <= 3294 || (c < 3718 + ? (c < 3461 + ? (c < 3389 + ? (c < 3332 + ? (c < 3313 + ? (c >= 3296 && c <= 3297) + : c <= 3314) + : (c <= 3340 || (c < 3346 + ? (c >= 3342 && c <= 3344) + : c <= 3386))) + : (c <= 3389 || (c < 3423 + ? (c < 3412 + ? c == 3406 + : c <= 3414) + : (c <= 3425 || (c >= 3450 && c <= 3455))))) + : (c <= 3478 || (c < 3585 + ? (c < 3517 + ? (c < 3507 + ? (c >= 3482 && c <= 3505) + : c <= 3515) + : (c <= 3517 || (c >= 3520 && c <= 3526))) + : (c <= 3632 || (c < 3713 + ? (c < 3648 + ? c == 3634 + : c <= 3654) + : (c <= 3714 || c == 3716)))))) + : (c <= 3722 || (c < 3904 + ? (c < 3773 + ? (c < 3751 + ? (c < 3749 + ? (c >= 3724 && c <= 3747) + : c <= 3749) + : (c <= 3760 || c == 3762)) + : (c <= 3773 || (c < 3804 + ? (c < 3782 + ? (c >= 3776 && c <= 3780) + : c <= 3782) + : (c <= 3807 || c == 3840)))) + : (c <= 3911 || (c < 4176 + ? (c < 4096 + ? (c < 3976 + ? (c >= 3913 && c <= 3948) + : c <= 3980) + : (c <= 4138 || c == 4159)) + : (c <= 4181 || (c < 4197 + ? (c < 4193 + ? (c >= 4186 && c <= 4189) + : c <= 4193) + : (c <= 4198 || (c >= 4206 && c <= 4208))))))))))))) + : (c <= 4225 || (c < 8182 + ? (c < 6400 + ? (c < 4888 + ? (c < 4704 + ? (c < 4348 + ? (c < 4295 + ? (c < 4256 + ? c == 4238 + : c <= 4293) + : (c <= 4295 || (c < 4304 + ? c == 4301 + : c <= 4346))) + : (c <= 4680 || (c < 4696 + ? (c < 4688 + ? (c >= 4682 && c <= 4685) + : c <= 4694) + : (c <= 4696 || (c >= 4698 && c <= 4701))))) + : (c <= 4744 || (c < 4800 + ? (c < 4786 + ? (c < 4752 + ? (c >= 4746 && c <= 4749) + : c <= 4784) + : (c <= 4789 || (c >= 4792 && c <= 4798))) + : (c <= 4800 || (c < 4824 + ? (c < 4808 + ? (c >= 4802 && c <= 4805) + : c <= 4822) + : (c <= 4880 || (c >= 4882 && c <= 4885))))))) + : (c <= 4954 || (c < 5952 + ? (c < 5761 + ? (c < 5112 + ? (c < 5024 + ? (c >= 4992 && c <= 5007) + : c <= 5109) + : (c <= 5117 || (c < 5743 + ? (c >= 5121 && c <= 5740) + : c <= 5759))) + : (c <= 5786 || (c < 5888 + ? (c < 5870 + ? (c >= 5792 && c <= 5866) + : c <= 5880) + : (c <= 5905 || (c >= 5919 && c <= 5937))))) + : (c <= 5969 || (c < 6108 + ? (c < 6016 + ? (c < 5998 + ? (c >= 5984 && c <= 5996) + : c <= 6000) + : (c <= 6067 || c == 6103)) + : (c <= 6108 || (c < 6314 + ? (c < 6272 + ? (c >= 6176 && c <= 6264) + : c <= 6312) + : (c <= 6314 || (c >= 6320 && c <= 6389))))))))) + : (c <= 6430 || (c < 7413 + ? (c < 7086 + ? (c < 6688 + ? (c < 6528 + ? (c < 6512 + ? (c >= 6480 && c <= 6509) + : c <= 6516) + : (c <= 6571 || (c < 6656 + ? (c >= 6576 && c <= 6601) + : c <= 6678))) + : (c <= 6740 || (c < 6981 + ? (c < 6917 + ? c == 6823 + : c <= 6963) + : (c <= 6988 || (c >= 7043 && c <= 7072))))) + : (c <= 7087 || (c < 7296 + ? (c < 7245 + ? (c < 7168 + ? (c >= 7098 && c <= 7141) + : c <= 7203) + : (c <= 7247 || (c >= 7258 && c <= 7293))) + : (c <= 7304 || (c < 7401 + ? (c < 7357 + ? (c >= 7312 && c <= 7354) + : c <= 7359) + : (c <= 7404 || (c >= 7406 && c <= 7411))))))) + : (c <= 7414 || (c < 8031 + ? (c < 8008 + ? (c < 7680 + ? (c < 7424 + ? c == 7418 + : c <= 7615) + : (c <= 7957 || (c < 7968 + ? (c >= 7960 && c <= 7965) + : c <= 8005))) + : (c <= 8013 || (c < 8027 + ? (c < 8025 + ? (c >= 8016 && c <= 8023) + : c <= 8025) + : (c <= 8027 || c == 8029)))) + : (c <= 8061 || (c < 8134 + ? (c < 8126 + ? (c < 8118 + ? (c >= 8064 && c <= 8116) + : c <= 8124) + : (c <= 8126 || (c >= 8130 && c <= 8132))) + : (c <= 8140 || (c < 8160 + ? (c < 8150 + ? (c >= 8144 && c <= 8147) + : c <= 8155) + : (c <= 8172 || (c >= 8178 && c <= 8180))))))))))) + : (c <= 8188 || (c < 12549 + ? (c < 11559 + ? (c < 8488 + ? (c < 8458 + ? (c < 8336 + ? (c < 8319 + ? c == 8305 + : c <= 8319) + : (c <= 8348 || (c < 8455 + ? c == 8450 + : c <= 8455))) + : (c <= 8467 || (c < 8484 + ? (c < 8472 + ? c == 8469 + : c <= 8477) + : (c <= 8484 || c == 8486)))) + : (c <= 8488 || (c < 8544 + ? (c < 8517 + ? (c < 8508 + ? (c >= 8490 && c <= 8505) + : c <= 8511) + : (c <= 8521 || c == 8526)) + : (c <= 8584 || (c < 11506 + ? (c < 11499 + ? (c >= 11264 && c <= 11492) + : c <= 11502) + : (c <= 11507 || (c >= 11520 && c <= 11557))))))) + : (c <= 11559 || (c < 11728 + ? (c < 11688 + ? (c < 11631 + ? (c < 11568 + ? c == 11565 + : c <= 11623) + : (c <= 11631 || (c < 11680 + ? (c >= 11648 && c <= 11670) + : c <= 11686))) + : (c <= 11694 || (c < 11712 + ? (c < 11704 + ? (c >= 11696 && c <= 11702) + : c <= 11710) + : (c <= 11718 || (c >= 11720 && c <= 11726))))) + : (c <= 11734 || (c < 12344 + ? (c < 12321 + ? (c < 12293 + ? (c >= 11736 && c <= 11742) + : c <= 12295) + : (c <= 12329 || (c >= 12337 && c <= 12341))) + : (c <= 12348 || (c < 12449 + ? (c < 12445 + ? (c >= 12353 && c <= 12438) + : c <= 12447) + : (c <= 12538 || (c >= 12540 && c <= 12543))))))))) + : (c <= 12591 || (c < 43015 + ? (c < 42623 + ? (c < 42192 + ? (c < 12784 + ? (c < 12704 + ? (c >= 12593 && c <= 12686) + : c <= 12735) + : (c <= 12799 || (c < 19968 + ? (c >= 13312 && c <= 19903) + : c <= 42124))) + : (c <= 42237 || (c < 42538 + ? (c < 42512 + ? (c >= 42240 && c <= 42508) + : c <= 42527) + : (c <= 42539 || (c >= 42560 && c <= 42606))))) + : (c <= 42653 || (c < 42960 + ? (c < 42786 + ? (c < 42775 + ? (c >= 42656 && c <= 42735) + : c <= 42783) + : (c <= 42888 || (c >= 42891 && c <= 42954))) + : (c <= 42961 || (c < 42994 + ? (c < 42965 + ? c == 42963 + : c <= 42969) + : (c <= 43009 || (c >= 43011 && c <= 43013))))))) + : (c <= 43018 || (c < 43396 + ? (c < 43259 + ? (c < 43138 + ? (c < 43072 + ? (c >= 43020 && c <= 43042) + : c <= 43123) + : (c <= 43187 || (c >= 43250 && c <= 43255))) + : (c <= 43259 || (c < 43312 + ? (c < 43274 + ? (c >= 43261 && c <= 43262) + : c <= 43301) + : (c <= 43334 || (c >= 43360 && c <= 43388))))) + : (c <= 43442 || (c < 43520 + ? (c < 43494 + ? (c < 43488 + ? c == 43471 + : c <= 43492) + : (c <= 43503 || (c >= 43514 && c <= 43518))) + : (c <= 43560 || (c < 43616 + ? (c < 43588 + ? (c >= 43584 && c <= 43586) + : c <= 43595) + : (c <= 43638 || c == 43642)))))))))))))) + : (c <= 43695 || (c < 71236 + ? (c < 67424 + ? (c < 65149 + ? (c < 64112 + ? (c < 43793 + ? (c < 43739 + ? (c < 43705 + ? (c < 43701 + ? c == 43697 + : c <= 43702) + : (c <= 43709 || (c < 43714 + ? c == 43712 + : c <= 43714))) + : (c <= 43741 || (c < 43777 + ? (c < 43762 + ? (c >= 43744 && c <= 43754) + : c <= 43764) + : (c <= 43782 || (c >= 43785 && c <= 43790))))) + : (c <= 43798 || (c < 43888 + ? (c < 43824 + ? (c < 43816 + ? (c >= 43808 && c <= 43814) + : c <= 43822) + : (c <= 43866 || (c >= 43868 && c <= 43881))) + : (c <= 44002 || (c < 55243 + ? (c < 55216 + ? (c >= 44032 && c <= 55203) + : c <= 55238) + : (c <= 55291 || (c >= 63744 && c <= 64109))))))) + : (c <= 64217 || (c < 64467 + ? (c < 64312 + ? (c < 64285 + ? (c < 64275 + ? (c >= 64256 && c <= 64262) + : c <= 64279) + : (c <= 64285 || (c < 64298 + ? (c >= 64287 && c <= 64296) + : c <= 64310))) + : (c <= 64316 || (c < 64323 + ? (c < 64320 + ? c == 64318 + : c <= 64321) + : (c <= 64324 || (c >= 64326 && c <= 64433))))) + : (c <= 64605 || (c < 65137 + ? (c < 64914 + ? (c < 64848 + ? (c >= 64612 && c <= 64829) + : c <= 64911) + : (c <= 64967 || (c >= 65008 && c <= 65017))) + : (c <= 65137 || (c < 65145 + ? (c < 65143 + ? c == 65139 + : c <= 65143) + : (c <= 65145 || c == 65147)))))))) + : (c <= 65149 || (c < 66349 + ? (c < 65549 + ? (c < 65474 + ? (c < 65345 + ? (c < 65313 + ? (c >= 65151 && c <= 65276) + : c <= 65338) + : (c <= 65370 || (c < 65440 + ? (c >= 65382 && c <= 65437) + : c <= 65470))) + : (c <= 65479 || (c < 65498 + ? (c < 65490 + ? (c >= 65482 && c <= 65487) + : c <= 65495) + : (c <= 65500 || (c >= 65536 && c <= 65547))))) + : (c <= 65574 || (c < 65664 + ? (c < 65599 + ? (c < 65596 + ? (c >= 65576 && c <= 65594) + : c <= 65597) + : (c <= 65613 || (c >= 65616 && c <= 65629))) + : (c <= 65786 || (c < 66208 + ? (c < 66176 + ? (c >= 65856 && c <= 65908) + : c <= 66204) + : (c <= 66256 || (c >= 66304 && c <= 66335))))))) + : (c <= 66378 || (c < 66928 + ? (c < 66560 + ? (c < 66464 + ? (c < 66432 + ? (c >= 66384 && c <= 66421) + : c <= 66461) + : (c <= 66499 || (c < 66513 + ? (c >= 66504 && c <= 66511) + : c <= 66517))) + : (c <= 66717 || (c < 66816 + ? (c < 66776 + ? (c >= 66736 && c <= 66771) + : c <= 66811) + : (c <= 66855 || (c >= 66864 && c <= 66915))))) + : (c <= 66938 || (c < 66979 + ? (c < 66964 + ? (c < 66956 + ? (c >= 66940 && c <= 66954) + : c <= 66962) + : (c <= 66965 || (c >= 66967 && c <= 66977))) + : (c <= 66993 || (c < 67072 + ? (c < 67003 + ? (c >= 66995 && c <= 67001) + : c <= 67004) + : (c <= 67382 || (c >= 67392 && c <= 67413))))))))))) + : (c <= 67431 || (c < 69635 + ? (c < 68121 + ? (c < 67712 + ? (c < 67594 + ? (c < 67506 + ? (c < 67463 + ? (c >= 67456 && c <= 67461) + : c <= 67504) + : (c <= 67514 || (c < 67592 + ? (c >= 67584 && c <= 67589) + : c <= 67592))) + : (c <= 67637 || (c < 67647 + ? (c < 67644 + ? (c >= 67639 && c <= 67640) + : c <= 67644) + : (c <= 67669 || (c >= 67680 && c <= 67702))))) + : (c <= 67742 || (c < 67968 + ? (c < 67840 + ? (c < 67828 + ? (c >= 67808 && c <= 67826) + : c <= 67829) + : (c <= 67861 || (c >= 67872 && c <= 67897))) + : (c <= 68023 || (c < 68112 + ? (c < 68096 + ? (c >= 68030 && c <= 68031) + : c <= 68096) + : (c <= 68115 || (c >= 68117 && c <= 68119))))))) + : (c <= 68149 || (c < 68800 + ? (c < 68416 + ? (c < 68288 + ? (c < 68224 + ? (c >= 68192 && c <= 68220) + : c <= 68252) + : (c <= 68295 || (c < 68352 + ? (c >= 68297 && c <= 68324) + : c <= 68405))) + : (c <= 68437 || (c < 68608 + ? (c < 68480 + ? (c >= 68448 && c <= 68466) + : c <= 68497) + : (c <= 68680 || (c >= 68736 && c <= 68786))))) + : (c <= 68850 || (c < 69415 + ? (c < 69296 + ? (c < 69248 + ? (c >= 68864 && c <= 68899) + : c <= 69289) + : (c <= 69297 || (c >= 69376 && c <= 69404))) + : (c <= 69415 || (c < 69552 + ? (c < 69488 + ? (c >= 69424 && c <= 69445) + : c <= 69505) + : (c <= 69572 || (c >= 69600 && c <= 69622))))))))) + : (c <= 69687 || (c < 70303 + ? (c < 70081 + ? (c < 69956 + ? (c < 69763 + ? (c < 69749 + ? (c >= 69745 && c <= 69746) + : c <= 69749) + : (c <= 69807 || (c < 69891 + ? (c >= 69840 && c <= 69864) + : c <= 69926))) + : (c <= 69956 || (c < 70006 + ? (c < 69968 + ? c == 69959 + : c <= 70002) + : (c <= 70006 || (c >= 70019 && c <= 70066))))) + : (c <= 70084 || (c < 70207 + ? (c < 70144 + ? (c < 70108 + ? c == 70106 + : c <= 70108) + : (c <= 70161 || (c >= 70163 && c <= 70187))) + : (c <= 70208 || (c < 70282 + ? (c < 70280 + ? (c >= 70272 && c <= 70278) + : c <= 70280) + : (c <= 70285 || (c >= 70287 && c <= 70301))))))) + : (c <= 70312 || (c < 70493 + ? (c < 70442 + ? (c < 70415 + ? (c < 70405 + ? (c >= 70320 && c <= 70366) + : c <= 70412) + : (c <= 70416 || (c >= 70419 && c <= 70440))) + : (c <= 70448 || (c < 70461 + ? (c < 70453 + ? (c >= 70450 && c <= 70451) + : c <= 70457) + : (c <= 70461 || c == 70480)))) + : (c <= 70497 || (c < 70852 + ? (c < 70751 + ? (c < 70727 + ? (c >= 70656 && c <= 70708) + : c <= 70730) + : (c <= 70753 || (c >= 70784 && c <= 70831))) + : (c <= 70853 || (c < 71128 + ? (c < 71040 + ? c == 70855 + : c <= 71086) + : (c <= 71131 || (c >= 71168 && c <= 71215))))))))))))) + : (c <= 71236 || (c < 119973 + ? (c < 73728 + ? (c < 72272 + ? (c < 71960 + ? (c < 71840 + ? (c < 71424 + ? (c < 71352 + ? (c >= 71296 && c <= 71338) + : c <= 71352) + : (c <= 71450 || (c < 71680 + ? (c >= 71488 && c <= 71494) + : c <= 71723))) + : (c <= 71903 || (c < 71948 + ? (c < 71945 + ? (c >= 71935 && c <= 71942) + : c <= 71945) + : (c <= 71955 || (c >= 71957 && c <= 71958))))) + : (c <= 71983 || (c < 72161 + ? (c < 72096 + ? (c < 72001 + ? c == 71999 + : c <= 72001) + : (c <= 72103 || (c >= 72106 && c <= 72144))) + : (c <= 72161 || (c < 72203 + ? (c < 72192 + ? c == 72163 + : c <= 72192) + : (c <= 72242 || c == 72250)))))) + : (c <= 72272 || (c < 73030 + ? (c < 72768 + ? (c < 72368 + ? (c < 72349 + ? (c >= 72284 && c <= 72329) + : c <= 72349) + : (c <= 72440 || (c < 72714 + ? (c >= 72704 && c <= 72712) + : c <= 72750))) + : (c <= 72768 || (c < 72968 + ? (c < 72960 + ? (c >= 72818 && c <= 72847) + : c <= 72966) + : (c <= 72969 || (c >= 72971 && c <= 73008))))) + : (c <= 73030 || (c < 73440 + ? (c < 73066 + ? (c < 73063 + ? (c >= 73056 && c <= 73061) + : c <= 73064) + : (c <= 73097 || c == 73112)) + : (c <= 73458 || (c < 73490 + ? (c < 73476 + ? c == 73474 + : c <= 73488) + : (c <= 73523 || c == 73648)))))))) + : (c <= 74649 || (c < 94208 + ? (c < 92928 + ? (c < 82944 + ? (c < 77712 + ? (c < 74880 + ? (c >= 74752 && c <= 74862) + : c <= 75075) + : (c <= 77808 || (c < 78913 + ? (c >= 77824 && c <= 78895) + : c <= 78918))) + : (c <= 83526 || (c < 92784 + ? (c < 92736 + ? (c >= 92160 && c <= 92728) + : c <= 92766) + : (c <= 92862 || (c >= 92880 && c <= 92909))))) + : (c <= 92975 || (c < 93952 + ? (c < 93053 + ? (c < 93027 + ? (c >= 92992 && c <= 92995) + : c <= 93047) + : (c <= 93071 || (c >= 93760 && c <= 93823))) + : (c <= 94026 || (c < 94176 + ? (c < 94099 + ? c == 94032 + : c <= 94111) + : (c <= 94177 || c == 94179)))))) + : (c <= 100343 || (c < 110948 + ? (c < 110589 + ? (c < 110576 + ? (c < 101632 + ? (c >= 100352 && c <= 101589) + : c <= 101640) + : (c <= 110579 || (c >= 110581 && c <= 110587))) + : (c <= 110590 || (c < 110928 + ? (c < 110898 + ? (c >= 110592 && c <= 110882) + : c <= 110898) + : (c <= 110930 || c == 110933)))) + : (c <= 110951 || (c < 113808 + ? (c < 113776 + ? (c < 113664 + ? (c >= 110960 && c <= 111355) + : c <= 113770) + : (c <= 113788 || (c >= 113792 && c <= 113800))) + : (c <= 113817 || (c < 119966 + ? (c < 119894 + ? (c >= 119808 && c <= 119892) + : c <= 119964) + : (c <= 119967 || c == 119970)))))))))) + : (c <= 119974 || (c < 126464 + ? (c < 120656 + ? (c < 120128 + ? (c < 120071 + ? (c < 119995 + ? (c < 119982 + ? (c >= 119977 && c <= 119980) + : c <= 119993) + : (c <= 119995 || (c < 120005 + ? (c >= 119997 && c <= 120003) + : c <= 120069))) + : (c <= 120074 || (c < 120094 + ? (c < 120086 + ? (c >= 120077 && c <= 120084) + : c <= 120092) + : (c <= 120121 || (c >= 120123 && c <= 120126))))) + : (c <= 120132 || (c < 120514 + ? (c < 120146 + ? (c < 120138 + ? c == 120134 + : c <= 120144) + : (c <= 120485 || (c >= 120488 && c <= 120512))) + : (c <= 120538 || (c < 120598 + ? (c < 120572 + ? (c >= 120540 && c <= 120570) + : c <= 120596) + : (c <= 120628 || (c >= 120630 && c <= 120654))))))) + : (c <= 120686 || (c < 123536 + ? (c < 122661 + ? (c < 120746 + ? (c < 120714 + ? (c >= 120688 && c <= 120712) + : c <= 120744) + : (c <= 120770 || (c < 122624 + ? (c >= 120772 && c <= 120779) + : c <= 122654))) + : (c <= 122666 || (c < 123191 + ? (c < 123136 + ? (c >= 122928 && c <= 122989) + : c <= 123180) + : (c <= 123197 || c == 123214)))) + : (c <= 123565 || (c < 124909 + ? (c < 124896 + ? (c < 124112 + ? (c >= 123584 && c <= 123627) + : c <= 124139) + : (c <= 124902 || (c >= 124904 && c <= 124907))) + : (c <= 124910 || (c < 125184 + ? (c < 124928 + ? (c >= 124912 && c <= 124926) + : c <= 125124) + : (c <= 125251 || c == 125259)))))))) + : (c <= 126467 || (c < 126561 + ? (c < 126537 + ? (c < 126516 + ? (c < 126500 + ? (c < 126497 + ? (c >= 126469 && c <= 126495) + : c <= 126498) + : (c <= 126500 || (c < 126505 + ? c == 126503 + : c <= 126514))) + : (c <= 126519 || (c < 126530 + ? (c < 126523 + ? c == 126521 + : c <= 126523) + : (c <= 126530 || c == 126535)))) + : (c <= 126537 || (c < 126551 + ? (c < 126545 + ? (c < 126541 + ? c == 126539 + : c <= 126543) + : (c <= 126546 || c == 126548)) + : (c <= 126551 || (c < 126557 + ? (c < 126555 + ? c == 126553 + : c <= 126555) + : (c <= 126557 || c == 126559)))))) + : (c <= 126562 || (c < 126629 + ? (c < 126585 + ? (c < 126572 + ? (c < 126567 + ? c == 126564 + : c <= 126570) + : (c <= 126578 || (c >= 126580 && c <= 126583))) + : (c <= 126588 || (c < 126603 + ? (c < 126592 + ? c == 126590 + : c <= 126601) + : (c <= 126619 || (c >= 126625 && c <= 126627))))) + : (c <= 126633 || (c < 178208 + ? (c < 173824 + ? (c < 131072 + ? (c >= 126635 && c <= 126651) + : c <= 173791) + : (c <= 177977 || (c >= 177984 && c <= 178205))) + : (c <= 183969 || (c < 196608 + ? (c < 194560 + ? (c >= 183984 && c <= 191456) + : c <= 195101) + : (c <= 201546 || (c >= 201552 && c <= 205743))))))))))))))))); +} + +static inline bool sym_identifier_character_set_9(int32_t c) { + return (c < 43584 + ? (c < 4176 + ? (c < 2654 + ? (c < 1791 + ? (c < 891 + ? (c < 181 + ? (c < 'o' + ? (c < 'e' + ? (c < 'a' + ? (c >= 'A' && c <= '_') + : c <= 'a') + : (c <= 'e' || (c < 'j' + ? (c >= 'g' && c <= 'h') + : c <= 'l'))) + : (c <= 'o' || (c < 'w' + ? (c < 't' + ? (c >= 'q' && c <= 'r') + : c <= 't') + : (c <= 'z' || c == 170)))) + : (c <= 181 || (c < 736 + ? (c < 216 + ? (c < 192 + ? c == 186 + : c <= 214) + : (c <= 246 || (c < 710 + ? (c >= 248 && c <= 705) + : c <= 721))) + : (c <= 740 || (c < 880 + ? (c < 750 + ? c == 748 + : c <= 750) + : (c <= 884 || (c >= 886 && c <= 887))))))) + : (c <= 893 || (c < 1376 + ? (c < 931 + ? (c < 904 + ? (c < 902 + ? c == 895 + : c <= 902) + : (c <= 906 || (c < 910 + ? c == 908 + : c <= 929))) + : (c <= 1013 || (c < 1329 + ? (c < 1162 + ? (c >= 1015 && c <= 1153) + : c <= 1327) + : (c <= 1366 || c == 1369)))) + : (c <= 1416 || (c < 1649 + ? (c < 1568 + ? (c < 1519 + ? (c >= 1488 && c <= 1514) + : c <= 1522) + : (c <= 1610 || (c >= 1646 && c <= 1647))) + : (c <= 1747 || (c < 1774 + ? (c < 1765 + ? c == 1749 + : c <= 1766) + : (c <= 1775 || (c >= 1786 && c <= 1788))))))))) + : (c <= 1791 || (c < 2417 + ? (c < 2088 + ? (c < 2036 + ? (c < 1869 + ? (c < 1810 + ? c == 1808 + : c <= 1839) + : (c <= 1957 || (c < 1994 + ? c == 1969 + : c <= 2026))) + : (c <= 2037 || (c < 2074 + ? (c < 2048 + ? c == 2042 + : c <= 2069) + : (c <= 2074 || c == 2084)))) + : (c <= 2088 || (c < 2208 + ? (c < 2160 + ? (c < 2144 + ? (c >= 2112 && c <= 2136) + : c <= 2154) + : (c <= 2183 || (c >= 2185 && c <= 2190))) + : (c <= 2249 || (c < 2384 + ? (c < 2365 + ? (c >= 2308 && c <= 2361) + : c <= 2365) + : (c <= 2384 || (c >= 2392 && c <= 2401))))))) + : (c <= 2432 || (c < 2544 + ? (c < 2486 + ? (c < 2451 + ? (c < 2447 + ? (c >= 2437 && c <= 2444) + : c <= 2448) + : (c <= 2472 || (c < 2482 + ? (c >= 2474 && c <= 2480) + : c <= 2482))) + : (c <= 2489 || (c < 2524 + ? (c < 2510 + ? c == 2493 + : c <= 2510) + : (c <= 2525 || (c >= 2527 && c <= 2529))))) + : (c <= 2545 || (c < 2602 + ? (c < 2575 + ? (c < 2565 + ? c == 2556 + : c <= 2570) + : (c <= 2576 || (c >= 2579 && c <= 2600))) + : (c <= 2608 || (c < 2616 + ? (c < 2613 + ? (c >= 2610 && c <= 2611) + : c <= 2614) + : (c <= 2617 || (c >= 2649 && c <= 2652))))))))))) + : (c <= 2654 || (c < 3205 + ? (c < 2929 + ? (c < 2809 + ? (c < 2738 + ? (c < 2703 + ? (c < 2693 + ? (c >= 2674 && c <= 2676) + : c <= 2701) + : (c <= 2705 || (c < 2730 + ? (c >= 2707 && c <= 2728) + : c <= 2736))) + : (c <= 2739 || (c < 2768 + ? (c < 2749 + ? (c >= 2741 && c <= 2745) + : c <= 2749) + : (c <= 2768 || (c >= 2784 && c <= 2785))))) + : (c <= 2809 || (c < 2866 + ? (c < 2835 + ? (c < 2831 + ? (c >= 2821 && c <= 2828) + : c <= 2832) + : (c <= 2856 || (c >= 2858 && c <= 2864))) + : (c <= 2867 || (c < 2908 + ? (c < 2877 + ? (c >= 2869 && c <= 2873) + : c <= 2877) + : (c <= 2909 || (c >= 2911 && c <= 2913))))))) + : (c <= 2929 || (c < 3024 + ? (c < 2972 + ? (c < 2958 + ? (c < 2949 + ? c == 2947 + : c <= 2954) + : (c <= 2960 || (c < 2969 + ? (c >= 2962 && c <= 2965) + : c <= 2970))) + : (c <= 2972 || (c < 2984 + ? (c < 2979 + ? (c >= 2974 && c <= 2975) + : c <= 2980) + : (c <= 2986 || (c >= 2990 && c <= 3001))))) + : (c <= 3024 || (c < 3133 + ? (c < 3090 + ? (c < 3086 + ? (c >= 3077 && c <= 3084) + : c <= 3088) + : (c <= 3112 || (c >= 3114 && c <= 3129))) + : (c <= 3133 || (c < 3168 + ? (c < 3165 + ? (c >= 3160 && c <= 3162) + : c <= 3165) + : (c <= 3169 || c == 3200)))))))) + : (c <= 3212 || (c < 3520 + ? (c < 3346 + ? (c < 3293 + ? (c < 3242 + ? (c < 3218 + ? (c >= 3214 && c <= 3216) + : c <= 3240) + : (c <= 3251 || (c < 3261 + ? (c >= 3253 && c <= 3257) + : c <= 3261))) + : (c <= 3294 || (c < 3332 + ? (c < 3313 + ? (c >= 3296 && c <= 3297) + : c <= 3314) + : (c <= 3340 || (c >= 3342 && c <= 3344))))) + : (c <= 3386 || (c < 3450 + ? (c < 3412 + ? (c < 3406 + ? c == 3389 + : c <= 3406) + : (c <= 3414 || (c >= 3423 && c <= 3425))) + : (c <= 3455 || (c < 3507 + ? (c < 3482 + ? (c >= 3461 && c <= 3478) + : c <= 3505) + : (c <= 3515 || c == 3517)))))) + : (c <= 3526 || (c < 3773 + ? (c < 3718 + ? (c < 3648 + ? (c < 3634 + ? (c >= 3585 && c <= 3632) + : c <= 3634) + : (c <= 3654 || (c < 3716 + ? (c >= 3713 && c <= 3714) + : c <= 3716))) + : (c <= 3722 || (c < 3751 + ? (c < 3749 + ? (c >= 3724 && c <= 3747) + : c <= 3749) + : (c <= 3760 || c == 3762)))) + : (c <= 3773 || (c < 3904 + ? (c < 3804 + ? (c < 3782 + ? (c >= 3776 && c <= 3780) + : c <= 3782) + : (c <= 3807 || c == 3840)) + : (c <= 3911 || (c < 4096 + ? (c < 3976 + ? (c >= 3913 && c <= 3948) + : c <= 3980) + : (c <= 4138 || c == 4159)))))))))))) + : (c <= 4181 || (c < 8134 + ? (c < 6108 + ? (c < 4800 + ? (c < 4348 + ? (c < 4238 + ? (c < 4197 + ? (c < 4193 + ? (c >= 4186 && c <= 4189) + : c <= 4193) + : (c <= 4198 || (c < 4213 + ? (c >= 4206 && c <= 4208) + : c <= 4225))) + : (c <= 4238 || (c < 4301 + ? (c < 4295 + ? (c >= 4256 && c <= 4293) + : c <= 4295) + : (c <= 4301 || (c >= 4304 && c <= 4346))))) + : (c <= 4680 || (c < 4704 + ? (c < 4696 + ? (c < 4688 + ? (c >= 4682 && c <= 4685) + : c <= 4694) + : (c <= 4696 || (c >= 4698 && c <= 4701))) + : (c <= 4744 || (c < 4786 + ? (c < 4752 + ? (c >= 4746 && c <= 4749) + : c <= 4784) + : (c <= 4789 || (c >= 4792 && c <= 4798))))))) + : (c <= 4800 || (c < 5761 + ? (c < 4992 + ? (c < 4824 + ? (c < 4808 + ? (c >= 4802 && c <= 4805) + : c <= 4822) + : (c <= 4880 || (c < 4888 + ? (c >= 4882 && c <= 4885) + : c <= 4954))) + : (c <= 5007 || (c < 5121 + ? (c < 5112 + ? (c >= 5024 && c <= 5109) + : c <= 5117) + : (c <= 5740 || (c >= 5743 && c <= 5759))))) + : (c <= 5786 || (c < 5952 + ? (c < 5888 + ? (c < 5870 + ? (c >= 5792 && c <= 5866) + : c <= 5880) + : (c <= 5905 || (c >= 5919 && c <= 5937))) + : (c <= 5969 || (c < 6016 + ? (c < 5998 + ? (c >= 5984 && c <= 5996) + : c <= 6000) + : (c <= 6067 || c == 6103)))))))) + : (c <= 6108 || (c < 7296 + ? (c < 6688 + ? (c < 6480 + ? (c < 6314 + ? (c < 6272 + ? (c >= 6176 && c <= 6264) + : c <= 6312) + : (c <= 6314 || (c < 6400 + ? (c >= 6320 && c <= 6389) + : c <= 6430))) + : (c <= 6509 || (c < 6576 + ? (c < 6528 + ? (c >= 6512 && c <= 6516) + : c <= 6571) + : (c <= 6601 || (c >= 6656 && c <= 6678))))) + : (c <= 6740 || (c < 7086 + ? (c < 6981 + ? (c < 6917 + ? c == 6823 + : c <= 6963) + : (c <= 6988 || (c >= 7043 && c <= 7072))) + : (c <= 7087 || (c < 7245 + ? (c < 7168 + ? (c >= 7098 && c <= 7141) + : c <= 7203) + : (c <= 7247 || (c >= 7258 && c <= 7293))))))) + : (c <= 7304 || (c < 8008 + ? (c < 7418 + ? (c < 7401 + ? (c < 7357 + ? (c >= 7312 && c <= 7354) + : c <= 7359) + : (c <= 7404 || (c < 7413 + ? (c >= 7406 && c <= 7411) + : c <= 7414))) + : (c <= 7418 || (c < 7960 + ? (c < 7680 + ? (c >= 7424 && c <= 7615) + : c <= 7957) + : (c <= 7965 || (c >= 7968 && c <= 8005))))) + : (c <= 8013 || (c < 8031 + ? (c < 8027 + ? (c < 8025 + ? (c >= 8016 && c <= 8023) + : c <= 8025) + : (c <= 8027 || c == 8029)) + : (c <= 8061 || (c < 8126 + ? (c < 8118 + ? (c >= 8064 && c <= 8116) + : c <= 8124) + : (c <= 8126 || (c >= 8130 && c <= 8132))))))))))) + : (c <= 8140 || (c < 12344 + ? (c < 8544 + ? (c < 8458 + ? (c < 8305 + ? (c < 8160 + ? (c < 8150 + ? (c >= 8144 && c <= 8147) + : c <= 8155) + : (c <= 8172 || (c < 8182 + ? (c >= 8178 && c <= 8180) + : c <= 8188))) + : (c <= 8305 || (c < 8450 + ? (c < 8336 + ? c == 8319 + : c <= 8348) + : (c <= 8450 || c == 8455)))) + : (c <= 8467 || (c < 8488 + ? (c < 8484 + ? (c < 8472 + ? c == 8469 + : c <= 8477) + : (c <= 8484 || c == 8486)) + : (c <= 8488 || (c < 8517 + ? (c < 8508 + ? (c >= 8490 && c <= 8505) + : c <= 8511) + : (c <= 8521 || c == 8526)))))) + : (c <= 8584 || (c < 11688 + ? (c < 11565 + ? (c < 11506 + ? (c < 11499 + ? (c >= 11264 && c <= 11492) + : c <= 11502) + : (c <= 11507 || (c < 11559 + ? (c >= 11520 && c <= 11557) + : c <= 11559))) + : (c <= 11565 || (c < 11648 + ? (c < 11631 + ? (c >= 11568 && c <= 11623) + : c <= 11631) + : (c <= 11670 || (c >= 11680 && c <= 11686))))) + : (c <= 11694 || (c < 11728 + ? (c < 11712 + ? (c < 11704 + ? (c >= 11696 && c <= 11702) + : c <= 11710) + : (c <= 11718 || (c >= 11720 && c <= 11726))) + : (c <= 11734 || (c < 12321 + ? (c < 12293 + ? (c >= 11736 && c <= 11742) + : c <= 12295) + : (c <= 12329 || (c >= 12337 && c <= 12341))))))))) + : (c <= 12348 || (c < 42960 + ? (c < 42192 + ? (c < 12593 + ? (c < 12449 + ? (c < 12445 + ? (c >= 12353 && c <= 12438) + : c <= 12447) + : (c <= 12538 || (c < 12549 + ? (c >= 12540 && c <= 12543) + : c <= 12591))) + : (c <= 12686 || (c < 13312 + ? (c < 12784 + ? (c >= 12704 && c <= 12735) + : c <= 12799) + : (c <= 19903 || (c >= 19968 && c <= 42124))))) + : (c <= 42237 || (c < 42623 + ? (c < 42538 + ? (c < 42512 + ? (c >= 42240 && c <= 42508) + : c <= 42527) + : (c <= 42539 || (c >= 42560 && c <= 42606))) + : (c <= 42653 || (c < 42786 + ? (c < 42775 + ? (c >= 42656 && c <= 42735) + : c <= 42783) + : (c <= 42888 || (c >= 42891 && c <= 42954))))))) + : (c <= 42961 || (c < 43261 + ? (c < 43020 + ? (c < 42994 + ? (c < 42965 + ? c == 42963 + : c <= 42969) + : (c <= 43009 || (c < 43015 + ? (c >= 43011 && c <= 43013) + : c <= 43018))) + : (c <= 43042 || (c < 43250 + ? (c < 43138 + ? (c >= 43072 && c <= 43123) + : c <= 43187) + : (c <= 43255 || c == 43259)))) + : (c <= 43262 || (c < 43471 + ? (c < 43360 + ? (c < 43312 + ? (c >= 43274 && c <= 43301) + : c <= 43334) + : (c <= 43388 || (c >= 43396 && c <= 43442))) + : (c <= 43471 || (c < 43514 + ? (c < 43494 + ? (c >= 43488 && c <= 43492) + : c <= 43503) + : (c <= 43518 || (c >= 43520 && c <= 43560))))))))))))))) + : (c <= 43586 || (c < 71128 + ? (c < 67003 + ? (c < 65143 + ? (c < 55216 + ? (c < 43744 + ? (c < 43701 + ? (c < 43642 + ? (c < 43616 + ? (c >= 43588 && c <= 43595) + : c <= 43638) + : (c <= 43642 || (c < 43697 + ? (c >= 43646 && c <= 43695) + : c <= 43697))) + : (c <= 43702 || (c < 43714 + ? (c < 43712 + ? (c >= 43705 && c <= 43709) + : c <= 43712) + : (c <= 43714 || (c >= 43739 && c <= 43741))))) + : (c <= 43754 || (c < 43816 + ? (c < 43785 + ? (c < 43777 + ? (c >= 43762 && c <= 43764) + : c <= 43782) + : (c <= 43790 || (c < 43808 + ? (c >= 43793 && c <= 43798) + : c <= 43814))) + : (c <= 43822 || (c < 43888 + ? (c < 43868 + ? (c >= 43824 && c <= 43866) + : c <= 43881) + : (c <= 44002 || (c >= 44032 && c <= 55203))))))) + : (c <= 55238 || (c < 64320 + ? (c < 64285 + ? (c < 64112 + ? (c < 63744 + ? (c >= 55243 && c <= 55291) + : c <= 64109) + : (c <= 64217 || (c < 64275 + ? (c >= 64256 && c <= 64262) + : c <= 64279))) + : (c <= 64285 || (c < 64312 + ? (c < 64298 + ? (c >= 64287 && c <= 64296) + : c <= 64310) + : (c <= 64316 || c == 64318)))) + : (c <= 64321 || (c < 64848 + ? (c < 64467 + ? (c < 64326 + ? (c >= 64323 && c <= 64324) + : c <= 64433) + : (c <= 64605 || (c >= 64612 && c <= 64829))) + : (c <= 64911 || (c < 65137 + ? (c < 65008 + ? (c >= 64914 && c <= 64967) + : c <= 65017) + : (c <= 65137 || c == 65139)))))))) + : (c <= 65143 || (c < 66176 + ? (c < 65490 + ? (c < 65345 + ? (c < 65149 + ? (c < 65147 + ? c == 65145 + : c <= 65147) + : (c <= 65149 || (c < 65313 + ? (c >= 65151 && c <= 65276) + : c <= 65338))) + : (c <= 65370 || (c < 65474 + ? (c < 65440 + ? (c >= 65382 && c <= 65437) + : c <= 65470) + : (c <= 65479 || (c >= 65482 && c <= 65487))))) + : (c <= 65495 || (c < 65596 + ? (c < 65549 + ? (c < 65536 + ? (c >= 65498 && c <= 65500) + : c <= 65547) + : (c <= 65574 || (c >= 65576 && c <= 65594))) + : (c <= 65597 || (c < 65664 + ? (c < 65616 + ? (c >= 65599 && c <= 65613) + : c <= 65629) + : (c <= 65786 || (c >= 65856 && c <= 65908))))))) + : (c <= 66204 || (c < 66776 + ? (c < 66464 + ? (c < 66349 + ? (c < 66304 + ? (c >= 66208 && c <= 66256) + : c <= 66335) + : (c <= 66378 || (c < 66432 + ? (c >= 66384 && c <= 66421) + : c <= 66461))) + : (c <= 66499 || (c < 66560 + ? (c < 66513 + ? (c >= 66504 && c <= 66511) + : c <= 66517) + : (c <= 66717 || (c >= 66736 && c <= 66771))))) + : (c <= 66811 || (c < 66956 + ? (c < 66928 + ? (c < 66864 + ? (c >= 66816 && c <= 66855) + : c <= 66915) + : (c <= 66938 || (c >= 66940 && c <= 66954))) + : (c <= 66962 || (c < 66979 + ? (c < 66967 + ? (c >= 66964 && c <= 66965) + : c <= 66977) + : (c <= 66993 || (c >= 66995 && c <= 67001))))))))))) + : (c <= 67004 || (c < 69488 + ? (c < 68096 + ? (c < 67644 + ? (c < 67506 + ? (c < 67424 + ? (c < 67392 + ? (c >= 67072 && c <= 67382) + : c <= 67413) + : (c <= 67431 || (c < 67463 + ? (c >= 67456 && c <= 67461) + : c <= 67504))) + : (c <= 67514 || (c < 67594 + ? (c < 67592 + ? (c >= 67584 && c <= 67589) + : c <= 67592) + : (c <= 67637 || (c >= 67639 && c <= 67640))))) + : (c <= 67644 || (c < 67828 + ? (c < 67712 + ? (c < 67680 + ? (c >= 67647 && c <= 67669) + : c <= 67702) + : (c <= 67742 || (c >= 67808 && c <= 67826))) + : (c <= 67829 || (c < 67968 + ? (c < 67872 + ? (c >= 67840 && c <= 67861) + : c <= 67897) + : (c <= 68023 || (c >= 68030 && c <= 68031))))))) + : (c <= 68096 || (c < 68480 + ? (c < 68288 + ? (c < 68121 + ? (c < 68117 + ? (c >= 68112 && c <= 68115) + : c <= 68119) + : (c <= 68149 || (c < 68224 + ? (c >= 68192 && c <= 68220) + : c <= 68252))) + : (c <= 68295 || (c < 68416 + ? (c < 68352 + ? (c >= 68297 && c <= 68324) + : c <= 68405) + : (c <= 68437 || (c >= 68448 && c <= 68466))))) + : (c <= 68497 || (c < 69248 + ? (c < 68800 + ? (c < 68736 + ? (c >= 68608 && c <= 68680) + : c <= 68786) + : (c <= 68850 || (c >= 68864 && c <= 68899))) + : (c <= 69289 || (c < 69415 + ? (c < 69376 + ? (c >= 69296 && c <= 69297) + : c <= 69404) + : (c <= 69415 || (c >= 69424 && c <= 69445))))))))) + : (c <= 69505 || (c < 70280 + ? (c < 69968 + ? (c < 69763 + ? (c < 69635 + ? (c < 69600 + ? (c >= 69552 && c <= 69572) + : c <= 69622) + : (c <= 69687 || (c < 69749 + ? (c >= 69745 && c <= 69746) + : c <= 69749))) + : (c <= 69807 || (c < 69956 + ? (c < 69891 + ? (c >= 69840 && c <= 69864) + : c <= 69926) + : (c <= 69956 || c == 69959)))) + : (c <= 70002 || (c < 70108 + ? (c < 70081 + ? (c < 70019 + ? c == 70006 + : c <= 70066) + : (c <= 70084 || c == 70106)) + : (c <= 70108 || (c < 70207 + ? (c < 70163 + ? (c >= 70144 && c <= 70161) + : c <= 70187) + : (c <= 70208 || (c >= 70272 && c <= 70278))))))) + : (c <= 70280 || (c < 70461 + ? (c < 70415 + ? (c < 70303 + ? (c < 70287 + ? (c >= 70282 && c <= 70285) + : c <= 70301) + : (c <= 70312 || (c < 70405 + ? (c >= 70320 && c <= 70366) + : c <= 70412))) + : (c <= 70416 || (c < 70450 + ? (c < 70442 + ? (c >= 70419 && c <= 70440) + : c <= 70448) + : (c <= 70451 || (c >= 70453 && c <= 70457))))) + : (c <= 70461 || (c < 70751 + ? (c < 70656 + ? (c < 70493 + ? c == 70480 + : c <= 70497) + : (c <= 70708 || (c >= 70727 && c <= 70730))) + : (c <= 70753 || (c < 70855 + ? (c < 70852 + ? (c >= 70784 && c <= 70831) + : c <= 70853) + : (c <= 70855 || (c >= 71040 && c <= 71086))))))))))))) + : (c <= 71131 || (c < 119970 + ? (c < 73490 + ? (c < 72203 + ? (c < 71948 + ? (c < 71488 + ? (c < 71296 + ? (c < 71236 + ? (c >= 71168 && c <= 71215) + : c <= 71236) + : (c <= 71338 || (c < 71424 + ? c == 71352 + : c <= 71450))) + : (c <= 71494 || (c < 71935 + ? (c < 71840 + ? (c >= 71680 && c <= 71723) + : c <= 71903) + : (c <= 71942 || c == 71945)))) + : (c <= 71955 || (c < 72096 + ? (c < 71999 + ? (c < 71960 + ? (c >= 71957 && c <= 71958) + : c <= 71983) + : (c <= 71999 || c == 72001)) + : (c <= 72103 || (c < 72163 + ? (c < 72161 + ? (c >= 72106 && c <= 72144) + : c <= 72161) + : (c <= 72163 || c == 72192)))))) + : (c <= 72242 || (c < 72968 + ? (c < 72704 + ? (c < 72284 + ? (c < 72272 + ? c == 72250 + : c <= 72272) + : (c <= 72329 || (c < 72368 + ? c == 72349 + : c <= 72440))) + : (c <= 72712 || (c < 72818 + ? (c < 72768 + ? (c >= 72714 && c <= 72750) + : c <= 72768) + : (c <= 72847 || (c >= 72960 && c <= 72966))))) + : (c <= 72969 || (c < 73066 + ? (c < 73056 + ? (c < 73030 + ? (c >= 72971 && c <= 73008) + : c <= 73030) + : (c <= 73061 || (c >= 73063 && c <= 73064))) + : (c <= 73097 || (c < 73474 + ? (c < 73440 + ? c == 73112 + : c <= 73458) + : (c <= 73474 || (c >= 73476 && c <= 73488))))))))) + : (c <= 73523 || (c < 94176 + ? (c < 92784 + ? (c < 77824 + ? (c < 74752 + ? (c < 73728 + ? c == 73648 + : c <= 74649) + : (c <= 74862 || (c < 77712 + ? (c >= 74880 && c <= 75075) + : c <= 77808))) + : (c <= 78895 || (c < 92160 + ? (c < 82944 + ? (c >= 78913 && c <= 78918) + : c <= 83526) + : (c <= 92728 || (c >= 92736 && c <= 92766))))) + : (c <= 92862 || (c < 93053 + ? (c < 92992 + ? (c < 92928 + ? (c >= 92880 && c <= 92909) + : c <= 92975) + : (c <= 92995 || (c >= 93027 && c <= 93047))) + : (c <= 93071 || (c < 94032 + ? (c < 93952 + ? (c >= 93760 && c <= 93823) + : c <= 94026) + : (c <= 94032 || (c >= 94099 && c <= 94111))))))) + : (c <= 94177 || (c < 110933 + ? (c < 110581 + ? (c < 100352 + ? (c < 94208 + ? c == 94179 + : c <= 100343) + : (c <= 101589 || (c < 110576 + ? (c >= 101632 && c <= 101640) + : c <= 110579))) + : (c <= 110587 || (c < 110898 + ? (c < 110592 + ? (c >= 110589 && c <= 110590) + : c <= 110882) + : (c <= 110898 || (c >= 110928 && c <= 110930))))) + : (c <= 110933 || (c < 113792 + ? (c < 113664 + ? (c < 110960 + ? (c >= 110948 && c <= 110951) + : c <= 111355) + : (c <= 113770 || (c >= 113776 && c <= 113788))) + : (c <= 113800 || (c < 119894 + ? (c < 119808 + ? (c >= 113808 && c <= 113817) + : c <= 119892) + : (c <= 119964 || (c >= 119966 && c <= 119967))))))))))) + : (c <= 119970 || (c < 125259 + ? (c < 120630 + ? (c < 120123 + ? (c < 120005 + ? (c < 119982 + ? (c < 119977 + ? (c >= 119973 && c <= 119974) + : c <= 119980) + : (c <= 119993 || (c < 119997 + ? c == 119995 + : c <= 120003))) + : (c <= 120069 || (c < 120086 + ? (c < 120077 + ? (c >= 120071 && c <= 120074) + : c <= 120084) + : (c <= 120092 || (c >= 120094 && c <= 120121))))) + : (c <= 120126 || (c < 120488 + ? (c < 120138 + ? (c < 120134 + ? (c >= 120128 && c <= 120132) + : c <= 120134) + : (c <= 120144 || (c >= 120146 && c <= 120485))) + : (c <= 120512 || (c < 120572 + ? (c < 120540 + ? (c >= 120514 && c <= 120538) + : c <= 120570) + : (c <= 120596 || (c >= 120598 && c <= 120628))))))) + : (c <= 120654 || (c < 123214 + ? (c < 122624 + ? (c < 120714 + ? (c < 120688 + ? (c >= 120656 && c <= 120686) + : c <= 120712) + : (c <= 120744 || (c < 120772 + ? (c >= 120746 && c <= 120770) + : c <= 120779))) + : (c <= 122654 || (c < 123136 + ? (c < 122928 + ? (c >= 122661 && c <= 122666) + : c <= 122989) + : (c <= 123180 || (c >= 123191 && c <= 123197))))) + : (c <= 123214 || (c < 124904 + ? (c < 124112 + ? (c < 123584 + ? (c >= 123536 && c <= 123565) + : c <= 123627) + : (c <= 124139 || (c >= 124896 && c <= 124902))) + : (c <= 124907 || (c < 124928 + ? (c < 124912 + ? (c >= 124909 && c <= 124910) + : c <= 124926) + : (c <= 125124 || (c >= 125184 && c <= 125251))))))))) + : (c <= 125259 || (c < 126559 + ? (c < 126535 + ? (c < 126505 + ? (c < 126497 + ? (c < 126469 + ? (c >= 126464 && c <= 126467) + : c <= 126495) + : (c <= 126498 || (c < 126503 + ? c == 126500 + : c <= 126503))) + : (c <= 126514 || (c < 126523 + ? (c < 126521 + ? (c >= 126516 && c <= 126519) + : c <= 126521) + : (c <= 126523 || c == 126530)))) + : (c <= 126535 || (c < 126548 + ? (c < 126541 + ? (c < 126539 + ? c == 126537 + : c <= 126539) + : (c <= 126543 || (c >= 126545 && c <= 126546))) + : (c <= 126548 || (c < 126555 + ? (c < 126553 + ? c == 126551 + : c <= 126553) + : (c <= 126555 || c == 126557)))))) + : (c <= 126559 || (c < 126629 + ? (c < 126585 + ? (c < 126567 + ? (c < 126564 + ? (c >= 126561 && c <= 126562) + : c <= 126564) + : (c <= 126570 || (c < 126580 + ? (c >= 126572 && c <= 126578) + : c <= 126583))) + : (c <= 126588 || (c < 126603 + ? (c < 126592 + ? c == 126590 + : c <= 126601) + : (c <= 126619 || (c >= 126625 && c <= 126627))))) + : (c <= 126633 || (c < 178208 + ? (c < 173824 + ? (c < 131072 + ? (c >= 126635 && c <= 126651) + : c <= 173791) + : (c <= 177977 || (c >= 177984 && c <= 178205))) + : (c <= 183969 || (c < 196608 + ? (c < 194560 + ? (c >= 183984 && c <= 191456) + : c <= 195101) + : (c <= 201546 || (c >= 201552 && c <= 205743))))))))))))))))); +} + +static inline bool sym_identifier_character_set_10(int32_t c) { + return (c < 43616 + ? (c < 4197 + ? (c < 2703 + ? (c < 1869 + ? (c < 904 + ? (c < 248 + ? (c < 170 + ? (c < 'a' + ? (c < '_' + ? (c >= 'A' && c <= 'Z') + : c <= '_') + : (c <= 'e' || (c < 'u' + ? (c >= 'g' && c <= 's') + : c <= 'z'))) + : (c <= 170 || (c < 192 + ? (c < 186 + ? c == 181 + : c <= 186) + : (c <= 214 || (c >= 216 && c <= 246))))) + : (c <= 705 || (c < 880 + ? (c < 748 + ? (c < 736 + ? (c >= 710 && c <= 721) + : c <= 740) + : (c <= 748 || c == 750)) + : (c <= 884 || (c < 895 + ? (c < 891 + ? (c >= 886 && c <= 887) + : c <= 893) + : (c <= 895 || c == 902)))))) + : (c <= 906 || (c < 1568 + ? (c < 1329 + ? (c < 931 + ? (c < 910 + ? c == 908 + : c <= 929) + : (c <= 1013 || (c < 1162 + ? (c >= 1015 && c <= 1153) + : c <= 1327))) + : (c <= 1366 || (c < 1488 + ? (c < 1376 + ? c == 1369 + : c <= 1416) + : (c <= 1514 || (c >= 1519 && c <= 1522))))) + : (c <= 1610 || (c < 1774 + ? (c < 1749 + ? (c < 1649 + ? (c >= 1646 && c <= 1647) + : c <= 1747) + : (c <= 1749 || (c >= 1765 && c <= 1766))) + : (c <= 1775 || (c < 1808 + ? (c < 1791 + ? (c >= 1786 && c <= 1788) + : c <= 1791) + : (c <= 1808 || (c >= 1810 && c <= 1839))))))))) + : (c <= 1957 || (c < 2451 + ? (c < 2160 + ? (c < 2074 + ? (c < 2036 + ? (c < 1994 + ? c == 1969 + : c <= 2026) + : (c <= 2037 || (c < 2048 + ? c == 2042 + : c <= 2069))) + : (c <= 2074 || (c < 2112 + ? (c < 2088 + ? c == 2084 + : c <= 2088) + : (c <= 2136 || (c >= 2144 && c <= 2154))))) + : (c <= 2183 || (c < 2384 + ? (c < 2308 + ? (c < 2208 + ? (c >= 2185 && c <= 2190) + : c <= 2249) + : (c <= 2361 || c == 2365)) + : (c <= 2384 || (c < 2437 + ? (c < 2417 + ? (c >= 2392 && c <= 2401) + : c <= 2432) + : (c <= 2444 || (c >= 2447 && c <= 2448))))))) + : (c <= 2472 || (c < 2575 + ? (c < 2524 + ? (c < 2486 + ? (c < 2482 + ? (c >= 2474 && c <= 2480) + : c <= 2482) + : (c <= 2489 || (c < 2510 + ? c == 2493 + : c <= 2510))) + : (c <= 2525 || (c < 2556 + ? (c < 2544 + ? (c >= 2527 && c <= 2529) + : c <= 2545) + : (c <= 2556 || (c >= 2565 && c <= 2570))))) + : (c <= 2576 || (c < 2616 + ? (c < 2610 + ? (c < 2602 + ? (c >= 2579 && c <= 2600) + : c <= 2608) + : (c <= 2611 || (c >= 2613 && c <= 2614))) + : (c <= 2617 || (c < 2674 + ? (c < 2654 + ? (c >= 2649 && c <= 2652) + : c <= 2654) + : (c <= 2676 || (c >= 2693 && c <= 2701))))))))))) + : (c <= 2705 || (c < 3242 + ? (c < 2958 + ? (c < 2835 + ? (c < 2768 + ? (c < 2738 + ? (c < 2730 + ? (c >= 2707 && c <= 2728) + : c <= 2736) + : (c <= 2739 || (c < 2749 + ? (c >= 2741 && c <= 2745) + : c <= 2749))) + : (c <= 2768 || (c < 2821 + ? (c < 2809 + ? (c >= 2784 && c <= 2785) + : c <= 2809) + : (c <= 2828 || (c >= 2831 && c <= 2832))))) + : (c <= 2856 || (c < 2908 + ? (c < 2869 + ? (c < 2866 + ? (c >= 2858 && c <= 2864) + : c <= 2867) + : (c <= 2873 || c == 2877)) + : (c <= 2909 || (c < 2947 + ? (c < 2929 + ? (c >= 2911 && c <= 2913) + : c <= 2929) + : (c <= 2947 || (c >= 2949 && c <= 2954))))))) + : (c <= 2960 || (c < 3090 + ? (c < 2984 + ? (c < 2972 + ? (c < 2969 + ? (c >= 2962 && c <= 2965) + : c <= 2970) + : (c <= 2972 || (c < 2979 + ? (c >= 2974 && c <= 2975) + : c <= 2980))) + : (c <= 2986 || (c < 3077 + ? (c < 3024 + ? (c >= 2990 && c <= 3001) + : c <= 3024) + : (c <= 3084 || (c >= 3086 && c <= 3088))))) + : (c <= 3112 || (c < 3168 + ? (c < 3160 + ? (c < 3133 + ? (c >= 3114 && c <= 3129) + : c <= 3133) + : (c <= 3162 || c == 3165)) + : (c <= 3169 || (c < 3214 + ? (c < 3205 + ? c == 3200 + : c <= 3212) + : (c <= 3216 || (c >= 3218 && c <= 3240))))))))) + : (c <= 3251 || (c < 3648 + ? (c < 3412 + ? (c < 3332 + ? (c < 3293 + ? (c < 3261 + ? (c >= 3253 && c <= 3257) + : c <= 3261) + : (c <= 3294 || (c < 3313 + ? (c >= 3296 && c <= 3297) + : c <= 3314))) + : (c <= 3340 || (c < 3389 + ? (c < 3346 + ? (c >= 3342 && c <= 3344) + : c <= 3386) + : (c <= 3389 || c == 3406)))) + : (c <= 3414 || (c < 3507 + ? (c < 3461 + ? (c < 3450 + ? (c >= 3423 && c <= 3425) + : c <= 3455) + : (c <= 3478 || (c >= 3482 && c <= 3505))) + : (c <= 3515 || (c < 3585 + ? (c < 3520 + ? c == 3517 + : c <= 3526) + : (c <= 3632 || c == 3634)))))) + : (c <= 3654 || (c < 3804 + ? (c < 3751 + ? (c < 3718 + ? (c < 3716 + ? (c >= 3713 && c <= 3714) + : c <= 3716) + : (c <= 3722 || (c < 3749 + ? (c >= 3724 && c <= 3747) + : c <= 3749))) + : (c <= 3760 || (c < 3776 + ? (c < 3773 + ? c == 3762 + : c <= 3773) + : (c <= 3780 || c == 3782)))) + : (c <= 3807 || (c < 4096 + ? (c < 3913 + ? (c < 3904 + ? c == 3840 + : c <= 3911) + : (c <= 3948 || (c >= 3976 && c <= 3980))) + : (c <= 4138 || (c < 4186 + ? (c < 4176 + ? c == 4159 + : c <= 4181) + : (c <= 4189 || c == 4193)))))))))))) + : (c <= 4198 || (c < 8160 + ? (c < 6314 + ? (c < 4824 + ? (c < 4696 + ? (c < 4301 + ? (c < 4238 + ? (c < 4213 + ? (c >= 4206 && c <= 4208) + : c <= 4225) + : (c <= 4238 || (c < 4295 + ? (c >= 4256 && c <= 4293) + : c <= 4295))) + : (c <= 4301 || (c < 4682 + ? (c < 4348 + ? (c >= 4304 && c <= 4346) + : c <= 4680) + : (c <= 4685 || (c >= 4688 && c <= 4694))))) + : (c <= 4696 || (c < 4786 + ? (c < 4746 + ? (c < 4704 + ? (c >= 4698 && c <= 4701) + : c <= 4744) + : (c <= 4749 || (c >= 4752 && c <= 4784))) + : (c <= 4789 || (c < 4802 + ? (c < 4800 + ? (c >= 4792 && c <= 4798) + : c <= 4800) + : (c <= 4805 || (c >= 4808 && c <= 4822))))))) + : (c <= 4880 || (c < 5888 + ? (c < 5121 + ? (c < 4992 + ? (c < 4888 + ? (c >= 4882 && c <= 4885) + : c <= 4954) + : (c <= 5007 || (c < 5112 + ? (c >= 5024 && c <= 5109) + : c <= 5117))) + : (c <= 5740 || (c < 5792 + ? (c < 5761 + ? (c >= 5743 && c <= 5759) + : c <= 5786) + : (c <= 5866 || (c >= 5870 && c <= 5880))))) + : (c <= 5905 || (c < 6016 + ? (c < 5984 + ? (c < 5952 + ? (c >= 5919 && c <= 5937) + : c <= 5969) + : (c <= 5996 || (c >= 5998 && c <= 6000))) + : (c <= 6067 || (c < 6176 + ? (c < 6108 + ? c == 6103 + : c <= 6108) + : (c <= 6264 || (c >= 6272 && c <= 6312))))))))) + : (c <= 6314 || (c < 7401 + ? (c < 6981 + ? (c < 6576 + ? (c < 6480 + ? (c < 6400 + ? (c >= 6320 && c <= 6389) + : c <= 6430) + : (c <= 6509 || (c < 6528 + ? (c >= 6512 && c <= 6516) + : c <= 6571))) + : (c <= 6601 || (c < 6823 + ? (c < 6688 + ? (c >= 6656 && c <= 6678) + : c <= 6740) + : (c <= 6823 || (c >= 6917 && c <= 6963))))) + : (c <= 6988 || (c < 7245 + ? (c < 7098 + ? (c < 7086 + ? (c >= 7043 && c <= 7072) + : c <= 7087) + : (c <= 7141 || (c >= 7168 && c <= 7203))) + : (c <= 7247 || (c < 7312 + ? (c < 7296 + ? (c >= 7258 && c <= 7293) + : c <= 7304) + : (c <= 7354 || (c >= 7357 && c <= 7359))))))) + : (c <= 7404 || (c < 8027 + ? (c < 7960 + ? (c < 7418 + ? (c < 7413 + ? (c >= 7406 && c <= 7411) + : c <= 7414) + : (c <= 7418 || (c < 7680 + ? (c >= 7424 && c <= 7615) + : c <= 7957))) + : (c <= 7965 || (c < 8016 + ? (c < 8008 + ? (c >= 7968 && c <= 8005) + : c <= 8013) + : (c <= 8023 || c == 8025)))) + : (c <= 8027 || (c < 8126 + ? (c < 8064 + ? (c < 8031 + ? c == 8029 + : c <= 8061) + : (c <= 8116 || (c >= 8118 && c <= 8124))) + : (c <= 8126 || (c < 8144 + ? (c < 8134 + ? (c >= 8130 && c <= 8132) + : c <= 8140) + : (c <= 8147 || (c >= 8150 && c <= 8155))))))))))) + : (c <= 8172 || (c < 12449 + ? (c < 11506 + ? (c < 8484 + ? (c < 8450 + ? (c < 8305 + ? (c < 8182 + ? (c >= 8178 && c <= 8180) + : c <= 8188) + : (c <= 8305 || (c < 8336 + ? c == 8319 + : c <= 8348))) + : (c <= 8450 || (c < 8469 + ? (c < 8458 + ? c == 8455 + : c <= 8467) + : (c <= 8469 || (c >= 8472 && c <= 8477))))) + : (c <= 8484 || (c < 8517 + ? (c < 8490 + ? (c < 8488 + ? c == 8486 + : c <= 8488) + : (c <= 8505 || (c >= 8508 && c <= 8511))) + : (c <= 8521 || (c < 11264 + ? (c < 8544 + ? c == 8526 + : c <= 8584) + : (c <= 11492 || (c >= 11499 && c <= 11502))))))) + : (c <= 11507 || (c < 11712 + ? (c < 11648 + ? (c < 11565 + ? (c < 11559 + ? (c >= 11520 && c <= 11557) + : c <= 11559) + : (c <= 11565 || (c < 11631 + ? (c >= 11568 && c <= 11623) + : c <= 11631))) + : (c <= 11670 || (c < 11696 + ? (c < 11688 + ? (c >= 11680 && c <= 11686) + : c <= 11694) + : (c <= 11702 || (c >= 11704 && c <= 11710))))) + : (c <= 11718 || (c < 12321 + ? (c < 11736 + ? (c < 11728 + ? (c >= 11720 && c <= 11726) + : c <= 11734) + : (c <= 11742 || (c >= 12293 && c <= 12295))) + : (c <= 12329 || (c < 12353 + ? (c < 12344 + ? (c >= 12337 && c <= 12341) + : c <= 12348) + : (c <= 12438 || (c >= 12445 && c <= 12447))))))))) + : (c <= 12538 || (c < 42994 + ? (c < 42538 + ? (c < 13312 + ? (c < 12593 + ? (c < 12549 + ? (c >= 12540 && c <= 12543) + : c <= 12591) + : (c <= 12686 || (c < 12784 + ? (c >= 12704 && c <= 12735) + : c <= 12799))) + : (c <= 19903 || (c < 42240 + ? (c < 42192 + ? (c >= 19968 && c <= 42124) + : c <= 42237) + : (c <= 42508 || (c >= 42512 && c <= 42527))))) + : (c <= 42539 || (c < 42786 + ? (c < 42656 + ? (c < 42623 + ? (c >= 42560 && c <= 42606) + : c <= 42653) + : (c <= 42735 || (c >= 42775 && c <= 42783))) + : (c <= 42888 || (c < 42963 + ? (c < 42960 + ? (c >= 42891 && c <= 42954) + : c <= 42961) + : (c <= 42963 || (c >= 42965 && c <= 42969))))))) + : (c <= 43009 || (c < 43312 + ? (c < 43138 + ? (c < 43020 + ? (c < 43015 + ? (c >= 43011 && c <= 43013) + : c <= 43018) + : (c <= 43042 || (c >= 43072 && c <= 43123))) + : (c <= 43187 || (c < 43261 + ? (c < 43259 + ? (c >= 43250 && c <= 43255) + : c <= 43259) + : (c <= 43262 || (c >= 43274 && c <= 43301))))) + : (c <= 43334 || (c < 43494 + ? (c < 43471 + ? (c < 43396 + ? (c >= 43360 && c <= 43388) + : c <= 43442) + : (c <= 43471 || (c >= 43488 && c <= 43492))) + : (c <= 43503 || (c < 43584 + ? (c < 43520 + ? (c >= 43514 && c <= 43518) + : c <= 43560) + : (c <= 43586 || (c >= 43588 && c <= 43595))))))))))))))) + : (c <= 43638 || (c < 71168 + ? (c < 67072 + ? (c < 65145 + ? (c < 55243 + ? (c < 43777 + ? (c < 43712 + ? (c < 43697 + ? (c < 43646 + ? c == 43642 + : c <= 43695) + : (c <= 43697 || (c < 43705 + ? (c >= 43701 && c <= 43702) + : c <= 43709))) + : (c <= 43712 || (c < 43744 + ? (c < 43739 + ? c == 43714 + : c <= 43741) + : (c <= 43754 || (c >= 43762 && c <= 43764))))) + : (c <= 43782 || (c < 43824 + ? (c < 43808 + ? (c < 43793 + ? (c >= 43785 && c <= 43790) + : c <= 43798) + : (c <= 43814 || (c >= 43816 && c <= 43822))) + : (c <= 43866 || (c < 44032 + ? (c < 43888 + ? (c >= 43868 && c <= 43881) + : c <= 44002) + : (c <= 55203 || (c >= 55216 && c <= 55238))))))) + : (c <= 55291 || (c < 64323 + ? (c < 64287 + ? (c < 64256 + ? (c < 64112 + ? (c >= 63744 && c <= 64109) + : c <= 64217) + : (c <= 64262 || (c < 64285 + ? (c >= 64275 && c <= 64279) + : c <= 64285))) + : (c <= 64296 || (c < 64318 + ? (c < 64312 + ? (c >= 64298 && c <= 64310) + : c <= 64316) + : (c <= 64318 || (c >= 64320 && c <= 64321))))) + : (c <= 64324 || (c < 64914 + ? (c < 64612 + ? (c < 64467 + ? (c >= 64326 && c <= 64433) + : c <= 64605) + : (c <= 64829 || (c >= 64848 && c <= 64911))) + : (c <= 64967 || (c < 65139 + ? (c < 65137 + ? (c >= 65008 && c <= 65017) + : c <= 65137) + : (c <= 65139 || c == 65143)))))))) + : (c <= 65145 || (c < 66208 + ? (c < 65498 + ? (c < 65382 + ? (c < 65151 + ? (c < 65149 + ? c == 65147 + : c <= 65149) + : (c <= 65276 || (c < 65345 + ? (c >= 65313 && c <= 65338) + : c <= 65370))) + : (c <= 65437 || (c < 65482 + ? (c < 65474 + ? (c >= 65440 && c <= 65470) + : c <= 65479) + : (c <= 65487 || (c >= 65490 && c <= 65495))))) + : (c <= 65500 || (c < 65599 + ? (c < 65576 + ? (c < 65549 + ? (c >= 65536 && c <= 65547) + : c <= 65574) + : (c <= 65594 || (c >= 65596 && c <= 65597))) + : (c <= 65613 || (c < 65856 + ? (c < 65664 + ? (c >= 65616 && c <= 65629) + : c <= 65786) + : (c <= 65908 || (c >= 66176 && c <= 66204))))))) + : (c <= 66256 || (c < 66816 + ? (c < 66504 + ? (c < 66384 + ? (c < 66349 + ? (c >= 66304 && c <= 66335) + : c <= 66378) + : (c <= 66421 || (c < 66464 + ? (c >= 66432 && c <= 66461) + : c <= 66499))) + : (c <= 66511 || (c < 66736 + ? (c < 66560 + ? (c >= 66513 && c <= 66517) + : c <= 66717) + : (c <= 66771 || (c >= 66776 && c <= 66811))))) + : (c <= 66855 || (c < 66964 + ? (c < 66940 + ? (c < 66928 + ? (c >= 66864 && c <= 66915) + : c <= 66938) + : (c <= 66954 || (c >= 66956 && c <= 66962))) + : (c <= 66965 || (c < 66995 + ? (c < 66979 + ? (c >= 66967 && c <= 66977) + : c <= 66993) + : (c <= 67001 || (c >= 67003 && c <= 67004))))))))))) + : (c <= 67382 || (c < 69552 + ? (c < 68112 + ? (c < 67647 + ? (c < 67584 + ? (c < 67456 + ? (c < 67424 + ? (c >= 67392 && c <= 67413) + : c <= 67431) + : (c <= 67461 || (c < 67506 + ? (c >= 67463 && c <= 67504) + : c <= 67514))) + : (c <= 67589 || (c < 67639 + ? (c < 67594 + ? c == 67592 + : c <= 67637) + : (c <= 67640 || c == 67644)))) + : (c <= 67669 || (c < 67840 + ? (c < 67808 + ? (c < 67712 + ? (c >= 67680 && c <= 67702) + : c <= 67742) + : (c <= 67826 || (c >= 67828 && c <= 67829))) + : (c <= 67861 || (c < 68030 + ? (c < 67968 + ? (c >= 67872 && c <= 67897) + : c <= 68023) + : (c <= 68031 || c == 68096)))))) + : (c <= 68115 || (c < 68608 + ? (c < 68297 + ? (c < 68192 + ? (c < 68121 + ? (c >= 68117 && c <= 68119) + : c <= 68149) + : (c <= 68220 || (c < 68288 + ? (c >= 68224 && c <= 68252) + : c <= 68295))) + : (c <= 68324 || (c < 68448 + ? (c < 68416 + ? (c >= 68352 && c <= 68405) + : c <= 68437) + : (c <= 68466 || (c >= 68480 && c <= 68497))))) + : (c <= 68680 || (c < 69296 + ? (c < 68864 + ? (c < 68800 + ? (c >= 68736 && c <= 68786) + : c <= 68850) + : (c <= 68899 || (c >= 69248 && c <= 69289))) + : (c <= 69297 || (c < 69424 + ? (c < 69415 + ? (c >= 69376 && c <= 69404) + : c <= 69415) + : (c <= 69445 || (c >= 69488 && c <= 69505))))))))) + : (c <= 69572 || (c < 70282 + ? (c < 70006 + ? (c < 69840 + ? (c < 69745 + ? (c < 69635 + ? (c >= 69600 && c <= 69622) + : c <= 69687) + : (c <= 69746 || (c < 69763 + ? c == 69749 + : c <= 69807))) + : (c <= 69864 || (c < 69959 + ? (c < 69956 + ? (c >= 69891 && c <= 69926) + : c <= 69956) + : (c <= 69959 || (c >= 69968 && c <= 70002))))) + : (c <= 70006 || (c < 70144 + ? (c < 70106 + ? (c < 70081 + ? (c >= 70019 && c <= 70066) + : c <= 70084) + : (c <= 70106 || c == 70108)) + : (c <= 70161 || (c < 70272 + ? (c < 70207 + ? (c >= 70163 && c <= 70187) + : c <= 70208) + : (c <= 70278 || c == 70280)))))) + : (c <= 70285 || (c < 70480 + ? (c < 70419 + ? (c < 70320 + ? (c < 70303 + ? (c >= 70287 && c <= 70301) + : c <= 70312) + : (c <= 70366 || (c < 70415 + ? (c >= 70405 && c <= 70412) + : c <= 70416))) + : (c <= 70440 || (c < 70453 + ? (c < 70450 + ? (c >= 70442 && c <= 70448) + : c <= 70451) + : (c <= 70457 || c == 70461)))) + : (c <= 70480 || (c < 70784 + ? (c < 70727 + ? (c < 70656 + ? (c >= 70493 && c <= 70497) + : c <= 70708) + : (c <= 70730 || (c >= 70751 && c <= 70753))) + : (c <= 70831 || (c < 71040 + ? (c < 70855 + ? (c >= 70852 && c <= 70853) + : c <= 70855) + : (c <= 71086 || (c >= 71128 && c <= 71131))))))))))))) + : (c <= 71215 || (c < 119973 + ? (c < 73648 + ? (c < 72250 + ? (c < 71957 + ? (c < 71680 + ? (c < 71352 + ? (c < 71296 + ? c == 71236 + : c <= 71338) + : (c <= 71352 || (c < 71488 + ? (c >= 71424 && c <= 71450) + : c <= 71494))) + : (c <= 71723 || (c < 71945 + ? (c < 71935 + ? (c >= 71840 && c <= 71903) + : c <= 71942) + : (c <= 71945 || (c >= 71948 && c <= 71955))))) + : (c <= 71958 || (c < 72106 + ? (c < 72001 + ? (c < 71999 + ? (c >= 71960 && c <= 71983) + : c <= 71999) + : (c <= 72001 || (c >= 72096 && c <= 72103))) + : (c <= 72144 || (c < 72192 + ? (c < 72163 + ? c == 72161 + : c <= 72163) + : (c <= 72192 || (c >= 72203 && c <= 72242))))))) + : (c <= 72250 || (c < 72971 + ? (c < 72714 + ? (c < 72349 + ? (c < 72284 + ? c == 72272 + : c <= 72329) + : (c <= 72349 || (c < 72704 + ? (c >= 72368 && c <= 72440) + : c <= 72712))) + : (c <= 72750 || (c < 72960 + ? (c < 72818 + ? c == 72768 + : c <= 72847) + : (c <= 72966 || (c >= 72968 && c <= 72969))))) + : (c <= 73008 || (c < 73112 + ? (c < 73063 + ? (c < 73056 + ? c == 73030 + : c <= 73061) + : (c <= 73064 || (c >= 73066 && c <= 73097))) + : (c <= 73112 || (c < 73476 + ? (c < 73474 + ? (c >= 73440 && c <= 73458) + : c <= 73474) + : (c <= 73488 || (c >= 73490 && c <= 73523))))))))) + : (c <= 73648 || (c < 94179 + ? (c < 92880 + ? (c < 78913 + ? (c < 74880 + ? (c < 74752 + ? (c >= 73728 && c <= 74649) + : c <= 74862) + : (c <= 75075 || (c < 77824 + ? (c >= 77712 && c <= 77808) + : c <= 78895))) + : (c <= 78918 || (c < 92736 + ? (c < 92160 + ? (c >= 82944 && c <= 83526) + : c <= 92728) + : (c <= 92766 || (c >= 92784 && c <= 92862))))) + : (c <= 92909 || (c < 93760 + ? (c < 93027 + ? (c < 92992 + ? (c >= 92928 && c <= 92975) + : c <= 92995) + : (c <= 93047 || (c >= 93053 && c <= 93071))) + : (c <= 93823 || (c < 94099 + ? (c < 94032 + ? (c >= 93952 && c <= 94026) + : c <= 94032) + : (c <= 94111 || (c >= 94176 && c <= 94177))))))) + : (c <= 94179 || (c < 110948 + ? (c < 110589 + ? (c < 101632 + ? (c < 100352 + ? (c >= 94208 && c <= 100343) + : c <= 101589) + : (c <= 101640 || (c < 110581 + ? (c >= 110576 && c <= 110579) + : c <= 110587))) + : (c <= 110590 || (c < 110928 + ? (c < 110898 + ? (c >= 110592 && c <= 110882) + : c <= 110898) + : (c <= 110930 || c == 110933)))) + : (c <= 110951 || (c < 113808 + ? (c < 113776 + ? (c < 113664 + ? (c >= 110960 && c <= 111355) + : c <= 113770) + : (c <= 113788 || (c >= 113792 && c <= 113800))) + : (c <= 113817 || (c < 119966 + ? (c < 119894 + ? (c >= 119808 && c <= 119892) + : c <= 119964) + : (c <= 119967 || c == 119970)))))))))) + : (c <= 119974 || (c < 126464 + ? (c < 120656 + ? (c < 120128 + ? (c < 120071 + ? (c < 119995 + ? (c < 119982 + ? (c >= 119977 && c <= 119980) + : c <= 119993) + : (c <= 119995 || (c < 120005 + ? (c >= 119997 && c <= 120003) + : c <= 120069))) + : (c <= 120074 || (c < 120094 + ? (c < 120086 + ? (c >= 120077 && c <= 120084) + : c <= 120092) + : (c <= 120121 || (c >= 120123 && c <= 120126))))) + : (c <= 120132 || (c < 120514 + ? (c < 120146 + ? (c < 120138 + ? c == 120134 + : c <= 120144) + : (c <= 120485 || (c >= 120488 && c <= 120512))) + : (c <= 120538 || (c < 120598 + ? (c < 120572 + ? (c >= 120540 && c <= 120570) + : c <= 120596) + : (c <= 120628 || (c >= 120630 && c <= 120654))))))) + : (c <= 120686 || (c < 123536 + ? (c < 122661 + ? (c < 120746 + ? (c < 120714 + ? (c >= 120688 && c <= 120712) + : c <= 120744) + : (c <= 120770 || (c < 122624 + ? (c >= 120772 && c <= 120779) + : c <= 122654))) + : (c <= 122666 || (c < 123191 + ? (c < 123136 + ? (c >= 122928 && c <= 122989) + : c <= 123180) + : (c <= 123197 || c == 123214)))) + : (c <= 123565 || (c < 124909 + ? (c < 124896 + ? (c < 124112 + ? (c >= 123584 && c <= 123627) + : c <= 124139) + : (c <= 124902 || (c >= 124904 && c <= 124907))) + : (c <= 124910 || (c < 125184 + ? (c < 124928 + ? (c >= 124912 && c <= 124926) + : c <= 125124) + : (c <= 125251 || c == 125259)))))))) + : (c <= 126467 || (c < 126561 + ? (c < 126537 + ? (c < 126516 + ? (c < 126500 + ? (c < 126497 + ? (c >= 126469 && c <= 126495) + : c <= 126498) + : (c <= 126500 || (c < 126505 + ? c == 126503 + : c <= 126514))) + : (c <= 126519 || (c < 126530 + ? (c < 126523 + ? c == 126521 + : c <= 126523) + : (c <= 126530 || c == 126535)))) + : (c <= 126537 || (c < 126551 + ? (c < 126545 + ? (c < 126541 + ? c == 126539 + : c <= 126543) + : (c <= 126546 || c == 126548)) + : (c <= 126551 || (c < 126557 + ? (c < 126555 + ? c == 126553 + : c <= 126555) + : (c <= 126557 || c == 126559)))))) + : (c <= 126562 || (c < 126629 + ? (c < 126585 + ? (c < 126572 + ? (c < 126567 + ? c == 126564 + : c <= 126570) + : (c <= 126578 || (c >= 126580 && c <= 126583))) + : (c <= 126588 || (c < 126603 + ? (c < 126592 + ? c == 126590 + : c <= 126601) + : (c <= 126619 || (c >= 126625 && c <= 126627))))) + : (c <= 126633 || (c < 178208 + ? (c < 173824 + ? (c < 131072 + ? (c >= 126635 && c <= 126651) + : c <= 173791) + : (c <= 177977 || (c >= 177984 && c <= 178205))) + : (c <= 183969 || (c < 196608 + ? (c < 194560 + ? (c >= 183984 && c <= 191456) + : c <= 195101) + : (c <= 201546 || (c >= 201552 && c <= 205743))))))))))))))))); +} + +static inline bool sym_identifier_character_set_11(int32_t c) { + return (c < 43785 + ? (c < 3804 + ? (c < 2759 + ? (c < 2048 + ? (c < 1155 + ? (c < 736 + ? (c < 183 + ? (c < 'a' + ? (c < 'A' + ? (c >= '0' && c <= '9') + : (c <= 'Z' || c == '_')) + : (c <= 'z' || (c < 181 + ? c == 170 + : c <= 181))) + : (c <= 183 || (c < 216 + ? (c < 192 + ? c == 186 + : c <= 214) + : (c <= 246 || (c < 710 + ? (c >= 248 && c <= 705) + : c <= 721))))) + : (c <= 740 || (c < 895 + ? (c < 768 + ? (c < 750 + ? c == 748 + : c <= 750) + : (c <= 884 || (c < 891 + ? (c >= 886 && c <= 887) + : c <= 893))) + : (c <= 895 || (c < 910 + ? (c < 908 + ? (c >= 902 && c <= 906) + : c <= 908) + : (c <= 929 || (c < 1015 + ? (c >= 931 && c <= 1013) + : c <= 1153))))))) + : (c <= 1159 || (c < 1552 + ? (c < 1471 + ? (c < 1369 + ? (c < 1329 + ? (c >= 1162 && c <= 1327) + : c <= 1366) + : (c <= 1369 || (c < 1425 + ? (c >= 1376 && c <= 1416) + : c <= 1469))) + : (c <= 1471 || (c < 1479 + ? (c < 1476 + ? (c >= 1473 && c <= 1474) + : c <= 1477) + : (c <= 1479 || (c < 1519 + ? (c >= 1488 && c <= 1514) + : c <= 1522))))) + : (c <= 1562 || (c < 1791 + ? (c < 1749 + ? (c < 1646 + ? (c >= 1568 && c <= 1641) + : c <= 1747) + : (c <= 1756 || (c < 1770 + ? (c >= 1759 && c <= 1768) + : c <= 1788))) + : (c <= 1791 || (c < 1984 + ? (c < 1869 + ? (c >= 1808 && c <= 1866) + : c <= 1969) + : (c <= 2037 || (c < 2045 + ? c == 2042 + : c <= 2045))))))))) + : (c <= 2093 || (c < 2561 + ? (c < 2474 + ? (c < 2275 + ? (c < 2160 + ? (c < 2144 + ? (c >= 2112 && c <= 2139) + : c <= 2154) + : (c <= 2183 || (c < 2200 + ? (c >= 2185 && c <= 2190) + : c <= 2273))) + : (c <= 2403 || (c < 2437 + ? (c < 2417 + ? (c >= 2406 && c <= 2415) + : c <= 2435) + : (c <= 2444 || (c < 2451 + ? (c >= 2447 && c <= 2448) + : c <= 2472))))) + : (c <= 2480 || (c < 2519 + ? (c < 2492 + ? (c < 2486 + ? c == 2482 + : c <= 2489) + : (c <= 2500 || (c < 2507 + ? (c >= 2503 && c <= 2504) + : c <= 2510))) + : (c <= 2519 || (c < 2534 + ? (c < 2527 + ? (c >= 2524 && c <= 2525) + : c <= 2531) + : (c <= 2545 || (c < 2558 + ? c == 2556 + : c <= 2558))))))) + : (c <= 2563 || (c < 2641 + ? (c < 2613 + ? (c < 2579 + ? (c < 2575 + ? (c >= 2565 && c <= 2570) + : c <= 2576) + : (c <= 2600 || (c < 2610 + ? (c >= 2602 && c <= 2608) + : c <= 2611))) + : (c <= 2614 || (c < 2622 + ? (c < 2620 + ? (c >= 2616 && c <= 2617) + : c <= 2620) + : (c <= 2626 || (c < 2635 + ? (c >= 2631 && c <= 2632) + : c <= 2637))))) + : (c <= 2641 || (c < 2703 + ? (c < 2662 + ? (c < 2654 + ? (c >= 2649 && c <= 2652) + : c <= 2654) + : (c <= 2677 || (c < 2693 + ? (c >= 2689 && c <= 2691) + : c <= 2701))) + : (c <= 2705 || (c < 2738 + ? (c < 2730 + ? (c >= 2707 && c <= 2728) + : c <= 2736) + : (c <= 2739 || (c < 2748 + ? (c >= 2741 && c <= 2745) + : c <= 2757))))))))))) + : (c <= 2761 || (c < 3200 + ? (c < 2969 + ? (c < 2876 + ? (c < 2821 + ? (c < 2790 + ? (c < 2768 + ? (c >= 2763 && c <= 2765) + : (c <= 2768 || (c >= 2784 && c <= 2787))) + : (c <= 2799 || (c < 2817 + ? (c >= 2809 && c <= 2815) + : c <= 2819))) + : (c <= 2828 || (c < 2858 + ? (c < 2835 + ? (c >= 2831 && c <= 2832) + : c <= 2856) + : (c <= 2864 || (c < 2869 + ? (c >= 2866 && c <= 2867) + : c <= 2873))))) + : (c <= 2884 || (c < 2918 + ? (c < 2901 + ? (c < 2891 + ? (c >= 2887 && c <= 2888) + : c <= 2893) + : (c <= 2903 || (c < 2911 + ? (c >= 2908 && c <= 2909) + : c <= 2915))) + : (c <= 2927 || (c < 2949 + ? (c < 2946 + ? c == 2929 + : c <= 2947) + : (c <= 2954 || (c < 2962 + ? (c >= 2958 && c <= 2960) + : c <= 2965))))))) + : (c <= 2970 || (c < 3072 + ? (c < 3006 + ? (c < 2979 + ? (c < 2974 + ? c == 2972 + : c <= 2975) + : (c <= 2980 || (c < 2990 + ? (c >= 2984 && c <= 2986) + : c <= 3001))) + : (c <= 3010 || (c < 3024 + ? (c < 3018 + ? (c >= 3014 && c <= 3016) + : c <= 3021) + : (c <= 3024 || (c < 3046 + ? c == 3031 + : c <= 3055))))) + : (c <= 3084 || (c < 3146 + ? (c < 3114 + ? (c < 3090 + ? (c >= 3086 && c <= 3088) + : c <= 3112) + : (c <= 3129 || (c < 3142 + ? (c >= 3132 && c <= 3140) + : c <= 3144))) + : (c <= 3149 || (c < 3165 + ? (c < 3160 + ? (c >= 3157 && c <= 3158) + : c <= 3162) + : (c <= 3165 || (c < 3174 + ? (c >= 3168 && c <= 3171) + : c <= 3183))))))))) + : (c <= 3203 || (c < 3461 + ? (c < 3302 + ? (c < 3260 + ? (c < 3218 + ? (c < 3214 + ? (c >= 3205 && c <= 3212) + : c <= 3216) + : (c <= 3240 || (c < 3253 + ? (c >= 3242 && c <= 3251) + : c <= 3257))) + : (c <= 3268 || (c < 3285 + ? (c < 3274 + ? (c >= 3270 && c <= 3272) + : c <= 3277) + : (c <= 3286 || (c < 3296 + ? (c >= 3293 && c <= 3294) + : c <= 3299))))) + : (c <= 3311 || (c < 3402 + ? (c < 3342 + ? (c < 3328 + ? (c >= 3313 && c <= 3315) + : c <= 3340) + : (c <= 3344 || (c < 3398 + ? (c >= 3346 && c <= 3396) + : c <= 3400))) + : (c <= 3406 || (c < 3430 + ? (c < 3423 + ? (c >= 3412 && c <= 3415) + : c <= 3427) + : (c <= 3439 || (c < 3457 + ? (c >= 3450 && c <= 3455) + : c <= 3459))))))) + : (c <= 3478 || (c < 3648 + ? (c < 3535 + ? (c < 3517 + ? (c < 3507 + ? (c >= 3482 && c <= 3505) + : c <= 3515) + : (c <= 3517 || (c < 3530 + ? (c >= 3520 && c <= 3526) + : c <= 3530))) + : (c <= 3540 || (c < 3558 + ? (c < 3544 + ? c == 3542 + : c <= 3551) + : (c <= 3567 || (c < 3585 + ? (c >= 3570 && c <= 3571) + : c <= 3642))))) + : (c <= 3662 || (c < 3749 + ? (c < 3716 + ? (c < 3713 + ? (c >= 3664 && c <= 3673) + : c <= 3714) + : (c <= 3716 || (c < 3724 + ? (c >= 3718 && c <= 3722) + : c <= 3747))) + : (c <= 3749 || (c < 3782 + ? (c < 3776 + ? (c >= 3751 && c <= 3773) + : c <= 3780) + : (c <= 3782 || (c < 3792 + ? (c >= 3784 && c <= 3790) + : c <= 3801))))))))))))) + : (c <= 3807 || (c < 8064 + ? (c < 5998 + ? (c < 4746 + ? (c < 4096 + ? (c < 3902 + ? (c < 3893 + ? (c < 3864 + ? c == 3840 + : (c <= 3865 || (c >= 3872 && c <= 3881))) + : (c <= 3893 || (c < 3897 + ? c == 3895 + : c <= 3897))) + : (c <= 3911 || (c < 3974 + ? (c < 3953 + ? (c >= 3913 && c <= 3948) + : c <= 3972) + : (c <= 3991 || (c < 4038 + ? (c >= 3993 && c <= 4028) + : c <= 4038))))) + : (c <= 4169 || (c < 4348 + ? (c < 4295 + ? (c < 4256 + ? (c >= 4176 && c <= 4253) + : c <= 4293) + : (c <= 4295 || (c < 4304 + ? c == 4301 + : c <= 4346))) + : (c <= 4680 || (c < 4696 + ? (c < 4688 + ? (c >= 4682 && c <= 4685) + : c <= 4694) + : (c <= 4696 || (c < 4704 + ? (c >= 4698 && c <= 4701) + : c <= 4744))))))) + : (c <= 4749 || (c < 4992 + ? (c < 4808 + ? (c < 4792 + ? (c < 4786 + ? (c >= 4752 && c <= 4784) + : c <= 4789) + : (c <= 4798 || (c < 4802 + ? c == 4800 + : c <= 4805))) + : (c <= 4822 || (c < 4888 + ? (c < 4882 + ? (c >= 4824 && c <= 4880) + : c <= 4885) + : (c <= 4954 || (c < 4969 + ? (c >= 4957 && c <= 4959) + : c <= 4977))))) + : (c <= 5007 || (c < 5792 + ? (c < 5121 + ? (c < 5112 + ? (c >= 5024 && c <= 5109) + : c <= 5117) + : (c <= 5740 || (c < 5761 + ? (c >= 5743 && c <= 5759) + : c <= 5786))) + : (c <= 5866 || (c < 5919 + ? (c < 5888 + ? (c >= 5870 && c <= 5880) + : c <= 5909) + : (c <= 5940 || (c < 5984 + ? (c >= 5952 && c <= 5971) + : c <= 5996))))))))) + : (c <= 6000 || (c < 6823 + ? (c < 6432 + ? (c < 6155 + ? (c < 6103 + ? (c < 6016 + ? (c >= 6002 && c <= 6003) + : c <= 6099) + : (c <= 6103 || (c < 6112 + ? (c >= 6108 && c <= 6109) + : c <= 6121))) + : (c <= 6157 || (c < 6272 + ? (c < 6176 + ? (c >= 6159 && c <= 6169) + : c <= 6264) + : (c <= 6314 || (c < 6400 + ? (c >= 6320 && c <= 6389) + : c <= 6430))))) + : (c <= 6443 || (c < 6608 + ? (c < 6512 + ? (c < 6470 + ? (c >= 6448 && c <= 6459) + : c <= 6509) + : (c <= 6516 || (c < 6576 + ? (c >= 6528 && c <= 6571) + : c <= 6601))) + : (c <= 6618 || (c < 6752 + ? (c < 6688 + ? (c >= 6656 && c <= 6683) + : c <= 6750) + : (c <= 6780 || (c < 6800 + ? (c >= 6783 && c <= 6793) + : c <= 6809))))))) + : (c <= 6823 || (c < 7357 + ? (c < 7040 + ? (c < 6912 + ? (c < 6847 + ? (c >= 6832 && c <= 6845) + : c <= 6862) + : (c <= 6988 || (c < 7019 + ? (c >= 6992 && c <= 7001) + : c <= 7027))) + : (c <= 7155 || (c < 7245 + ? (c < 7232 + ? (c >= 7168 && c <= 7223) + : c <= 7241) + : (c <= 7293 || (c < 7312 + ? (c >= 7296 && c <= 7304) + : c <= 7354))))) + : (c <= 7359 || (c < 8008 + ? (c < 7424 + ? (c < 7380 + ? (c >= 7376 && c <= 7378) + : c <= 7418) + : (c <= 7957 || (c < 7968 + ? (c >= 7960 && c <= 7965) + : c <= 8005))) + : (c <= 8013 || (c < 8027 + ? (c < 8025 + ? (c >= 8016 && c <= 8023) + : c <= 8025) + : (c <= 8027 || (c < 8031 + ? c == 8029 + : c <= 8061))))))))))) + : (c <= 8116 || (c < 12321 + ? (c < 8488 + ? (c < 8319 + ? (c < 8160 + ? (c < 8134 + ? (c < 8126 + ? (c >= 8118 && c <= 8124) + : (c <= 8126 || (c >= 8130 && c <= 8132))) + : (c <= 8140 || (c < 8150 + ? (c >= 8144 && c <= 8147) + : c <= 8155))) + : (c <= 8172 || (c < 8255 + ? (c < 8182 + ? (c >= 8178 && c <= 8180) + : c <= 8188) + : (c <= 8256 || (c < 8305 + ? c == 8276 + : c <= 8305))))) + : (c <= 8319 || (c < 8455 + ? (c < 8417 + ? (c < 8400 + ? (c >= 8336 && c <= 8348) + : c <= 8412) + : (c <= 8417 || (c < 8450 + ? (c >= 8421 && c <= 8432) + : c <= 8450))) + : (c <= 8455 || (c < 8472 + ? (c < 8469 + ? (c >= 8458 && c <= 8467) + : c <= 8469) + : (c <= 8477 || (c < 8486 + ? c == 8484 + : c <= 8486))))))) + : (c <= 8488 || (c < 11631 + ? (c < 11264 + ? (c < 8517 + ? (c < 8508 + ? (c >= 8490 && c <= 8505) + : c <= 8511) + : (c <= 8521 || (c < 8544 + ? c == 8526 + : c <= 8584))) + : (c <= 11492 || (c < 11559 + ? (c < 11520 + ? (c >= 11499 && c <= 11507) + : c <= 11557) + : (c <= 11559 || (c < 11568 + ? c == 11565 + : c <= 11623))))) + : (c <= 11631 || (c < 11712 + ? (c < 11688 + ? (c < 11680 + ? (c >= 11647 && c <= 11670) + : c <= 11686) + : (c <= 11694 || (c < 11704 + ? (c >= 11696 && c <= 11702) + : c <= 11710))) + : (c <= 11718 || (c < 11736 + ? (c < 11728 + ? (c >= 11720 && c <= 11726) + : c <= 11734) + : (c <= 11742 || (c < 12293 + ? (c >= 11744 && c <= 11775) + : c <= 12295))))))))) + : (c <= 12335 || (c < 42963 + ? (c < 13312 + ? (c < 12449 + ? (c < 12353 + ? (c < 12344 + ? (c >= 12337 && c <= 12341) + : c <= 12348) + : (c <= 12438 || (c < 12445 + ? (c >= 12441 && c <= 12442) + : c <= 12447))) + : (c <= 12538 || (c < 12593 + ? (c < 12549 + ? (c >= 12540 && c <= 12543) + : c <= 12591) + : (c <= 12686 || (c < 12784 + ? (c >= 12704 && c <= 12735) + : c <= 12799))))) + : (c <= 19903 || (c < 42612 + ? (c < 42240 + ? (c < 42192 + ? (c >= 19968 && c <= 42124) + : c <= 42237) + : (c <= 42508 || (c < 42560 + ? (c >= 42512 && c <= 42539) + : c <= 42607))) + : (c <= 42621 || (c < 42786 + ? (c < 42775 + ? (c >= 42623 && c <= 42737) + : c <= 42783) + : (c <= 42888 || (c < 42960 + ? (c >= 42891 && c <= 42954) + : c <= 42961))))))) + : (c <= 42963 || (c < 43392 + ? (c < 43216 + ? (c < 43052 + ? (c < 42994 + ? (c >= 42965 && c <= 42969) + : c <= 43047) + : (c <= 43052 || (c < 43136 + ? (c >= 43072 && c <= 43123) + : c <= 43205))) + : (c <= 43225 || (c < 43261 + ? (c < 43259 + ? (c >= 43232 && c <= 43255) + : c <= 43259) + : (c <= 43309 || (c < 43360 + ? (c >= 43312 && c <= 43347) + : c <= 43388))))) + : (c <= 43456 || (c < 43616 + ? (c < 43520 + ? (c < 43488 + ? (c >= 43471 && c <= 43481) + : c <= 43518) + : (c <= 43574 || (c < 43600 + ? (c >= 43584 && c <= 43597) + : c <= 43609))) + : (c <= 43638 || (c < 43744 + ? (c < 43739 + ? (c >= 43642 && c <= 43714) + : c <= 43741) + : (c <= 43759 || (c < 43777 + ? (c >= 43762 && c <= 43766) + : c <= 43782))))))))))))))) + : (c <= 43790 || (c < 71960 + ? (c < 67840 + ? (c < 65549 + ? (c < 64848 + ? (c < 64112 + ? (c < 44012 + ? (c < 43824 + ? (c < 43808 + ? (c >= 43793 && c <= 43798) + : (c <= 43814 || (c >= 43816 && c <= 43822))) + : (c <= 43866 || (c < 43888 + ? (c >= 43868 && c <= 43881) + : c <= 44010))) + : (c <= 44013 || (c < 55216 + ? (c < 44032 + ? (c >= 44016 && c <= 44025) + : c <= 55203) + : (c <= 55238 || (c < 63744 + ? (c >= 55243 && c <= 55291) + : c <= 64109))))) + : (c <= 64217 || (c < 64318 + ? (c < 64285 + ? (c < 64275 + ? (c >= 64256 && c <= 64262) + : c <= 64279) + : (c <= 64296 || (c < 64312 + ? (c >= 64298 && c <= 64310) + : c <= 64316))) + : (c <= 64318 || (c < 64326 + ? (c < 64323 + ? (c >= 64320 && c <= 64321) + : c <= 64324) + : (c <= 64433 || (c < 64612 + ? (c >= 64467 && c <= 64605) + : c <= 64829))))))) + : (c <= 64911 || (c < 65149 + ? (c < 65101 + ? (c < 65024 + ? (c < 65008 + ? (c >= 64914 && c <= 64967) + : c <= 65017) + : (c <= 65039 || (c < 65075 + ? (c >= 65056 && c <= 65071) + : c <= 65076))) + : (c <= 65103 || (c < 65143 + ? (c < 65139 + ? c == 65137 + : c <= 65139) + : (c <= 65143 || (c < 65147 + ? c == 65145 + : c <= 65147))))) + : (c <= 65149 || (c < 65382 + ? (c < 65313 + ? (c < 65296 + ? (c >= 65151 && c <= 65276) + : c <= 65305) + : (c <= 65338 || (c < 65345 + ? c == 65343 + : c <= 65370))) + : (c <= 65470 || (c < 65490 + ? (c < 65482 + ? (c >= 65474 && c <= 65479) + : c <= 65487) + : (c <= 65495 || (c < 65536 + ? (c >= 65498 && c <= 65500) + : c <= 65547))))))))) + : (c <= 65574 || (c < 66928 + ? (c < 66349 + ? (c < 65856 + ? (c < 65599 + ? (c < 65596 + ? (c >= 65576 && c <= 65594) + : c <= 65597) + : (c <= 65613 || (c < 65664 + ? (c >= 65616 && c <= 65629) + : c <= 65786))) + : (c <= 65908 || (c < 66208 + ? (c < 66176 + ? c == 66045 + : c <= 66204) + : (c <= 66256 || (c < 66304 + ? c == 66272 + : c <= 66335))))) + : (c <= 66378 || (c < 66560 + ? (c < 66464 + ? (c < 66432 + ? (c >= 66384 && c <= 66426) + : c <= 66461) + : (c <= 66499 || (c < 66513 + ? (c >= 66504 && c <= 66511) + : c <= 66517))) + : (c <= 66717 || (c < 66776 + ? (c < 66736 + ? (c >= 66720 && c <= 66729) + : c <= 66771) + : (c <= 66811 || (c < 66864 + ? (c >= 66816 && c <= 66855) + : c <= 66915))))))) + : (c <= 66938 || (c < 67463 + ? (c < 66995 + ? (c < 66964 + ? (c < 66956 + ? (c >= 66940 && c <= 66954) + : c <= 66962) + : (c <= 66965 || (c < 66979 + ? (c >= 66967 && c <= 66977) + : c <= 66993))) + : (c <= 67001 || (c < 67392 + ? (c < 67072 + ? (c >= 67003 && c <= 67004) + : c <= 67382) + : (c <= 67413 || (c < 67456 + ? (c >= 67424 && c <= 67431) + : c <= 67461))))) + : (c <= 67504 || (c < 67644 + ? (c < 67592 + ? (c < 67584 + ? (c >= 67506 && c <= 67514) + : c <= 67589) + : (c <= 67592 || (c < 67639 + ? (c >= 67594 && c <= 67637) + : c <= 67640))) + : (c <= 67644 || (c < 67712 + ? (c < 67680 + ? (c >= 67647 && c <= 67669) + : c <= 67702) + : (c <= 67742 || (c < 67828 + ? (c >= 67808 && c <= 67826) + : c <= 67829))))))))))) + : (c <= 67861 || (c < 70163 + ? (c < 69291 + ? (c < 68288 + ? (c < 68117 + ? (c < 68096 + ? (c < 67968 + ? (c >= 67872 && c <= 67897) + : (c <= 68023 || (c >= 68030 && c <= 68031))) + : (c <= 68099 || (c < 68108 + ? (c >= 68101 && c <= 68102) + : c <= 68115))) + : (c <= 68119 || (c < 68159 + ? (c < 68152 + ? (c >= 68121 && c <= 68149) + : c <= 68154) + : (c <= 68159 || (c < 68224 + ? (c >= 68192 && c <= 68220) + : c <= 68252))))) + : (c <= 68295 || (c < 68608 + ? (c < 68416 + ? (c < 68352 + ? (c >= 68297 && c <= 68326) + : c <= 68405) + : (c <= 68437 || (c < 68480 + ? (c >= 68448 && c <= 68466) + : c <= 68497))) + : (c <= 68680 || (c < 68864 + ? (c < 68800 + ? (c >= 68736 && c <= 68786) + : c <= 68850) + : (c <= 68903 || (c < 69248 + ? (c >= 68912 && c <= 68921) + : c <= 69289))))))) + : (c <= 69292 || (c < 69840 + ? (c < 69552 + ? (c < 69415 + ? (c < 69373 + ? (c >= 69296 && c <= 69297) + : c <= 69404) + : (c <= 69415 || (c < 69488 + ? (c >= 69424 && c <= 69456) + : c <= 69509))) + : (c <= 69572 || (c < 69734 + ? (c < 69632 + ? (c >= 69600 && c <= 69622) + : c <= 69702) + : (c <= 69749 || (c < 69826 + ? (c >= 69759 && c <= 69818) + : c <= 69826))))) + : (c <= 69864 || (c < 70006 + ? (c < 69942 + ? (c < 69888 + ? (c >= 69872 && c <= 69881) + : c <= 69940) + : (c <= 69951 || (c < 69968 + ? (c >= 69956 && c <= 69959) + : c <= 70003))) + : (c <= 70006 || (c < 70094 + ? (c < 70089 + ? (c >= 70016 && c <= 70084) + : c <= 70092) + : (c <= 70106 || (c < 70144 + ? c == 70108 + : c <= 70161))))))))) + : (c <= 70199 || (c < 70656 + ? (c < 70419 + ? (c < 70303 + ? (c < 70280 + ? (c < 70272 + ? (c >= 70206 && c <= 70209) + : c <= 70278) + : (c <= 70280 || (c < 70287 + ? (c >= 70282 && c <= 70285) + : c <= 70301))) + : (c <= 70312 || (c < 70400 + ? (c < 70384 + ? (c >= 70320 && c <= 70378) + : c <= 70393) + : (c <= 70403 || (c < 70415 + ? (c >= 70405 && c <= 70412) + : c <= 70416))))) + : (c <= 70440 || (c < 70475 + ? (c < 70453 + ? (c < 70450 + ? (c >= 70442 && c <= 70448) + : c <= 70451) + : (c <= 70457 || (c < 70471 + ? (c >= 70459 && c <= 70468) + : c <= 70472))) + : (c <= 70477 || (c < 70493 + ? (c < 70487 + ? c == 70480 + : c <= 70487) + : (c <= 70499 || (c < 70512 + ? (c >= 70502 && c <= 70508) + : c <= 70516))))))) + : (c <= 70730 || (c < 71296 + ? (c < 71040 + ? (c < 70784 + ? (c < 70750 + ? (c >= 70736 && c <= 70745) + : c <= 70753) + : (c <= 70853 || (c < 70864 + ? c == 70855 + : c <= 70873))) + : (c <= 71093 || (c < 71168 + ? (c < 71128 + ? (c >= 71096 && c <= 71104) + : c <= 71133) + : (c <= 71232 || (c < 71248 + ? c == 71236 + : c <= 71257))))) + : (c <= 71352 || (c < 71680 + ? (c < 71453 + ? (c < 71424 + ? (c >= 71360 && c <= 71369) + : c <= 71450) + : (c <= 71467 || (c < 71488 + ? (c >= 71472 && c <= 71481) + : c <= 71494))) + : (c <= 71738 || (c < 71945 + ? (c < 71935 + ? (c >= 71840 && c <= 71913) + : c <= 71942) + : (c <= 71945 || (c < 71957 + ? (c >= 71948 && c <= 71955) + : c <= 71958))))))))))))) + : (c <= 71989 || (c < 119995 + ? (c < 92784 + ? (c < 73023 + ? (c < 72704 + ? (c < 72163 + ? (c < 72096 + ? (c < 71995 + ? (c >= 71991 && c <= 71992) + : (c <= 72003 || (c >= 72016 && c <= 72025))) + : (c <= 72103 || (c < 72154 + ? (c >= 72106 && c <= 72151) + : c <= 72161))) + : (c <= 72164 || (c < 72272 + ? (c < 72263 + ? (c >= 72192 && c <= 72254) + : c <= 72263) + : (c <= 72345 || (c < 72368 + ? c == 72349 + : c <= 72440))))) + : (c <= 72712 || (c < 72873 + ? (c < 72784 + ? (c < 72760 + ? (c >= 72714 && c <= 72758) + : c <= 72768) + : (c <= 72793 || (c < 72850 + ? (c >= 72818 && c <= 72847) + : c <= 72871))) + : (c <= 72886 || (c < 72971 + ? (c < 72968 + ? (c >= 72960 && c <= 72966) + : c <= 72969) + : (c <= 73014 || (c < 73020 + ? c == 73018 + : c <= 73021))))))) + : (c <= 73031 || (c < 73552 + ? (c < 73107 + ? (c < 73063 + ? (c < 73056 + ? (c >= 73040 && c <= 73049) + : c <= 73061) + : (c <= 73064 || (c < 73104 + ? (c >= 73066 && c <= 73102) + : c <= 73105))) + : (c <= 73112 || (c < 73472 + ? (c < 73440 + ? (c >= 73120 && c <= 73129) + : c <= 73462) + : (c <= 73488 || (c < 73534 + ? (c >= 73490 && c <= 73530) + : c <= 73538))))) + : (c <= 73561 || (c < 77824 + ? (c < 74752 + ? (c < 73728 + ? c == 73648 + : c <= 74649) + : (c <= 74862 || (c < 77712 + ? (c >= 74880 && c <= 75075) + : c <= 77808))) + : (c <= 78895 || (c < 92160 + ? (c < 82944 + ? (c >= 78912 && c <= 78933) + : c <= 83526) + : (c <= 92728 || (c < 92768 + ? (c >= 92736 && c <= 92766) + : c <= 92777))))))))) + : (c <= 92862 || (c < 110928 + ? (c < 94095 + ? (c < 93008 + ? (c < 92912 + ? (c < 92880 + ? (c >= 92864 && c <= 92873) + : c <= 92909) + : (c <= 92916 || (c < 92992 + ? (c >= 92928 && c <= 92982) + : c <= 92995))) + : (c <= 93017 || (c < 93760 + ? (c < 93053 + ? (c >= 93027 && c <= 93047) + : c <= 93071) + : (c <= 93823 || (c < 94031 + ? (c >= 93952 && c <= 94026) + : c <= 94087))))) + : (c <= 94111 || (c < 101632 + ? (c < 94192 + ? (c < 94179 + ? (c >= 94176 && c <= 94177) + : c <= 94180) + : (c <= 94193 || (c < 100352 + ? (c >= 94208 && c <= 100343) + : c <= 101589))) + : (c <= 101640 || (c < 110589 + ? (c < 110581 + ? (c >= 110576 && c <= 110579) + : c <= 110587) + : (c <= 110590 || (c < 110898 + ? (c >= 110592 && c <= 110882) + : c <= 110898))))))) + : (c <= 110930 || (c < 119149 + ? (c < 113792 + ? (c < 110960 + ? (c < 110948 + ? c == 110933 + : c <= 110951) + : (c <= 111355 || (c < 113776 + ? (c >= 113664 && c <= 113770) + : c <= 113788))) + : (c <= 113800 || (c < 118528 + ? (c < 113821 + ? (c >= 113808 && c <= 113817) + : c <= 113822) + : (c <= 118573 || (c < 119141 + ? (c >= 118576 && c <= 118598) + : c <= 119145))))) + : (c <= 119154 || (c < 119894 + ? (c < 119210 + ? (c < 119173 + ? (c >= 119163 && c <= 119170) + : c <= 119179) + : (c <= 119213 || (c < 119808 + ? (c >= 119362 && c <= 119364) + : c <= 119892))) + : (c <= 119964 || (c < 119973 + ? (c < 119970 + ? (c >= 119966 && c <= 119967) + : c <= 119970) + : (c <= 119974 || (c < 119982 + ? (c >= 119977 && c <= 119980) + : c <= 119993))))))))))) + : (c <= 119995 || (c < 124912 + ? (c < 121403 + ? (c < 120514 + ? (c < 120123 + ? (c < 120077 + ? (c < 120005 + ? (c >= 119997 && c <= 120003) + : (c <= 120069 || (c >= 120071 && c <= 120074))) + : (c <= 120084 || (c < 120094 + ? (c >= 120086 && c <= 120092) + : c <= 120121))) + : (c <= 120126 || (c < 120138 + ? (c < 120134 + ? (c >= 120128 && c <= 120132) + : c <= 120134) + : (c <= 120144 || (c < 120488 + ? (c >= 120146 && c <= 120485) + : c <= 120512))))) + : (c <= 120538 || (c < 120688 + ? (c < 120598 + ? (c < 120572 + ? (c >= 120540 && c <= 120570) + : c <= 120596) + : (c <= 120628 || (c < 120656 + ? (c >= 120630 && c <= 120654) + : c <= 120686))) + : (c <= 120712 || (c < 120772 + ? (c < 120746 + ? (c >= 120714 && c <= 120744) + : c <= 120770) + : (c <= 120779 || (c < 121344 + ? (c >= 120782 && c <= 120831) + : c <= 121398))))))) + : (c <= 121452 || (c < 122928 + ? (c < 122661 + ? (c < 121499 + ? (c < 121476 + ? c == 121461 + : c <= 121476) + : (c <= 121503 || (c < 122624 + ? (c >= 121505 && c <= 121519) + : c <= 122654))) + : (c <= 122666 || (c < 122907 + ? (c < 122888 + ? (c >= 122880 && c <= 122886) + : c <= 122904) + : (c <= 122913 || (c < 122918 + ? (c >= 122915 && c <= 122916) + : c <= 122922))))) + : (c <= 122989 || (c < 123536 + ? (c < 123184 + ? (c < 123136 + ? c == 123023 + : c <= 123180) + : (c <= 123197 || (c < 123214 + ? (c >= 123200 && c <= 123209) + : c <= 123214))) + : (c <= 123566 || (c < 124896 + ? (c < 124112 + ? (c >= 123584 && c <= 123641) + : c <= 124153) + : (c <= 124902 || (c < 124909 + ? (c >= 124904 && c <= 124907) + : c <= 124910))))))))) + : (c <= 124926 || (c < 126557 + ? (c < 126521 + ? (c < 126469 + ? (c < 125184 + ? (c < 125136 + ? (c >= 124928 && c <= 125124) + : c <= 125142) + : (c <= 125259 || (c < 126464 + ? (c >= 125264 && c <= 125273) + : c <= 126467))) + : (c <= 126495 || (c < 126503 + ? (c < 126500 + ? (c >= 126497 && c <= 126498) + : c <= 126500) + : (c <= 126503 || (c < 126516 + ? (c >= 126505 && c <= 126514) + : c <= 126519))))) + : (c <= 126521 || (c < 126541 + ? (c < 126535 + ? (c < 126530 + ? c == 126523 + : c <= 126530) + : (c <= 126535 || (c < 126539 + ? c == 126537 + : c <= 126539))) + : (c <= 126543 || (c < 126551 + ? (c < 126548 + ? (c >= 126545 && c <= 126546) + : c <= 126548) + : (c <= 126551 || (c < 126555 + ? c == 126553 + : c <= 126555))))))) + : (c <= 126557 || (c < 126629 + ? (c < 126580 + ? (c < 126564 + ? (c < 126561 + ? c == 126559 + : c <= 126562) + : (c <= 126564 || (c < 126572 + ? (c >= 126567 && c <= 126570) + : c <= 126578))) + : (c <= 126583 || (c < 126592 + ? (c < 126590 + ? (c >= 126585 && c <= 126588) + : c <= 126590) + : (c <= 126601 || (c < 126625 + ? (c >= 126603 && c <= 126619) + : c <= 126627))))) + : (c <= 126633 || (c < 178208 + ? (c < 131072 + ? (c < 130032 + ? (c >= 126635 && c <= 126651) + : c <= 130041) + : (c <= 173791 || (c < 177984 + ? (c >= 173824 && c <= 177977) + : c <= 178205))) + : (c <= 183969 || (c < 196608 + ? (c < 194560 + ? (c >= 183984 && c <= 191456) + : c <= 195101) + : (c <= 201546 || (c < 917760 + ? (c >= 201552 && c <= 205743) + : c <= 917999))))))))))))))))); +} + +static inline bool sym_identifier_character_set_12(int32_t c) { + return (c < 43785 + ? (c < 3804 + ? (c < 2759 + ? (c < 2048 + ? (c < 1155 + ? (c < 736 + ? (c < 183 + ? (c < 'a' + ? (c < 'B' + ? (c >= '0' && c <= '9') + : (c <= 'Z' || c == '_')) + : (c <= 'z' || (c < 181 + ? c == 170 + : c <= 181))) + : (c <= 183 || (c < 216 + ? (c < 192 + ? c == 186 + : c <= 214) + : (c <= 246 || (c < 710 + ? (c >= 248 && c <= 705) + : c <= 721))))) + : (c <= 740 || (c < 895 + ? (c < 768 + ? (c < 750 + ? c == 748 + : c <= 750) + : (c <= 884 || (c < 891 + ? (c >= 886 && c <= 887) + : c <= 893))) + : (c <= 895 || (c < 910 + ? (c < 908 + ? (c >= 902 && c <= 906) + : c <= 908) + : (c <= 929 || (c < 1015 + ? (c >= 931 && c <= 1013) + : c <= 1153))))))) + : (c <= 1159 || (c < 1552 + ? (c < 1471 + ? (c < 1369 + ? (c < 1329 + ? (c >= 1162 && c <= 1327) + : c <= 1366) + : (c <= 1369 || (c < 1425 + ? (c >= 1376 && c <= 1416) + : c <= 1469))) + : (c <= 1471 || (c < 1479 + ? (c < 1476 + ? (c >= 1473 && c <= 1474) + : c <= 1477) + : (c <= 1479 || (c < 1519 + ? (c >= 1488 && c <= 1514) + : c <= 1522))))) + : (c <= 1562 || (c < 1791 + ? (c < 1749 + ? (c < 1646 + ? (c >= 1568 && c <= 1641) + : c <= 1747) + : (c <= 1756 || (c < 1770 + ? (c >= 1759 && c <= 1768) + : c <= 1788))) + : (c <= 1791 || (c < 1984 + ? (c < 1869 + ? (c >= 1808 && c <= 1866) + : c <= 1969) + : (c <= 2037 || (c < 2045 + ? c == 2042 + : c <= 2045))))))))) + : (c <= 2093 || (c < 2561 + ? (c < 2474 + ? (c < 2275 + ? (c < 2160 + ? (c < 2144 + ? (c >= 2112 && c <= 2139) + : c <= 2154) + : (c <= 2183 || (c < 2200 + ? (c >= 2185 && c <= 2190) + : c <= 2273))) + : (c <= 2403 || (c < 2437 + ? (c < 2417 + ? (c >= 2406 && c <= 2415) + : c <= 2435) + : (c <= 2444 || (c < 2451 + ? (c >= 2447 && c <= 2448) + : c <= 2472))))) + : (c <= 2480 || (c < 2519 + ? (c < 2492 + ? (c < 2486 + ? c == 2482 + : c <= 2489) + : (c <= 2500 || (c < 2507 + ? (c >= 2503 && c <= 2504) + : c <= 2510))) + : (c <= 2519 || (c < 2534 + ? (c < 2527 + ? (c >= 2524 && c <= 2525) + : c <= 2531) + : (c <= 2545 || (c < 2558 + ? c == 2556 + : c <= 2558))))))) + : (c <= 2563 || (c < 2641 + ? (c < 2613 + ? (c < 2579 + ? (c < 2575 + ? (c >= 2565 && c <= 2570) + : c <= 2576) + : (c <= 2600 || (c < 2610 + ? (c >= 2602 && c <= 2608) + : c <= 2611))) + : (c <= 2614 || (c < 2622 + ? (c < 2620 + ? (c >= 2616 && c <= 2617) + : c <= 2620) + : (c <= 2626 || (c < 2635 + ? (c >= 2631 && c <= 2632) + : c <= 2637))))) + : (c <= 2641 || (c < 2703 + ? (c < 2662 + ? (c < 2654 + ? (c >= 2649 && c <= 2652) + : c <= 2654) + : (c <= 2677 || (c < 2693 + ? (c >= 2689 && c <= 2691) + : c <= 2701))) + : (c <= 2705 || (c < 2738 + ? (c < 2730 + ? (c >= 2707 && c <= 2728) + : c <= 2736) + : (c <= 2739 || (c < 2748 + ? (c >= 2741 && c <= 2745) + : c <= 2757))))))))))) + : (c <= 2761 || (c < 3200 + ? (c < 2969 + ? (c < 2876 + ? (c < 2821 + ? (c < 2790 + ? (c < 2768 + ? (c >= 2763 && c <= 2765) + : (c <= 2768 || (c >= 2784 && c <= 2787))) + : (c <= 2799 || (c < 2817 + ? (c >= 2809 && c <= 2815) + : c <= 2819))) + : (c <= 2828 || (c < 2858 + ? (c < 2835 + ? (c >= 2831 && c <= 2832) + : c <= 2856) + : (c <= 2864 || (c < 2869 + ? (c >= 2866 && c <= 2867) + : c <= 2873))))) + : (c <= 2884 || (c < 2918 + ? (c < 2901 + ? (c < 2891 + ? (c >= 2887 && c <= 2888) + : c <= 2893) + : (c <= 2903 || (c < 2911 + ? (c >= 2908 && c <= 2909) + : c <= 2915))) + : (c <= 2927 || (c < 2949 + ? (c < 2946 + ? c == 2929 + : c <= 2947) + : (c <= 2954 || (c < 2962 + ? (c >= 2958 && c <= 2960) + : c <= 2965))))))) + : (c <= 2970 || (c < 3072 + ? (c < 3006 + ? (c < 2979 + ? (c < 2974 + ? c == 2972 + : c <= 2975) + : (c <= 2980 || (c < 2990 + ? (c >= 2984 && c <= 2986) + : c <= 3001))) + : (c <= 3010 || (c < 3024 + ? (c < 3018 + ? (c >= 3014 && c <= 3016) + : c <= 3021) + : (c <= 3024 || (c < 3046 + ? c == 3031 + : c <= 3055))))) + : (c <= 3084 || (c < 3146 + ? (c < 3114 + ? (c < 3090 + ? (c >= 3086 && c <= 3088) + : c <= 3112) + : (c <= 3129 || (c < 3142 + ? (c >= 3132 && c <= 3140) + : c <= 3144))) + : (c <= 3149 || (c < 3165 + ? (c < 3160 + ? (c >= 3157 && c <= 3158) + : c <= 3162) + : (c <= 3165 || (c < 3174 + ? (c >= 3168 && c <= 3171) + : c <= 3183))))))))) + : (c <= 3203 || (c < 3461 + ? (c < 3302 + ? (c < 3260 + ? (c < 3218 + ? (c < 3214 + ? (c >= 3205 && c <= 3212) + : c <= 3216) + : (c <= 3240 || (c < 3253 + ? (c >= 3242 && c <= 3251) + : c <= 3257))) + : (c <= 3268 || (c < 3285 + ? (c < 3274 + ? (c >= 3270 && c <= 3272) + : c <= 3277) + : (c <= 3286 || (c < 3296 + ? (c >= 3293 && c <= 3294) + : c <= 3299))))) + : (c <= 3311 || (c < 3402 + ? (c < 3342 + ? (c < 3328 + ? (c >= 3313 && c <= 3315) + : c <= 3340) + : (c <= 3344 || (c < 3398 + ? (c >= 3346 && c <= 3396) + : c <= 3400))) + : (c <= 3406 || (c < 3430 + ? (c < 3423 + ? (c >= 3412 && c <= 3415) + : c <= 3427) + : (c <= 3439 || (c < 3457 + ? (c >= 3450 && c <= 3455) + : c <= 3459))))))) + : (c <= 3478 || (c < 3648 + ? (c < 3535 + ? (c < 3517 + ? (c < 3507 + ? (c >= 3482 && c <= 3505) + : c <= 3515) + : (c <= 3517 || (c < 3530 + ? (c >= 3520 && c <= 3526) + : c <= 3530))) + : (c <= 3540 || (c < 3558 + ? (c < 3544 + ? c == 3542 + : c <= 3551) + : (c <= 3567 || (c < 3585 + ? (c >= 3570 && c <= 3571) + : c <= 3642))))) + : (c <= 3662 || (c < 3749 + ? (c < 3716 + ? (c < 3713 + ? (c >= 3664 && c <= 3673) + : c <= 3714) + : (c <= 3716 || (c < 3724 + ? (c >= 3718 && c <= 3722) + : c <= 3747))) + : (c <= 3749 || (c < 3782 + ? (c < 3776 + ? (c >= 3751 && c <= 3773) + : c <= 3780) + : (c <= 3782 || (c < 3792 + ? (c >= 3784 && c <= 3790) + : c <= 3801))))))))))))) + : (c <= 3807 || (c < 8064 + ? (c < 5998 + ? (c < 4746 + ? (c < 4096 + ? (c < 3902 + ? (c < 3893 + ? (c < 3864 + ? c == 3840 + : (c <= 3865 || (c >= 3872 && c <= 3881))) + : (c <= 3893 || (c < 3897 + ? c == 3895 + : c <= 3897))) + : (c <= 3911 || (c < 3974 + ? (c < 3953 + ? (c >= 3913 && c <= 3948) + : c <= 3972) + : (c <= 3991 || (c < 4038 + ? (c >= 3993 && c <= 4028) + : c <= 4038))))) + : (c <= 4169 || (c < 4348 + ? (c < 4295 + ? (c < 4256 + ? (c >= 4176 && c <= 4253) + : c <= 4293) + : (c <= 4295 || (c < 4304 + ? c == 4301 + : c <= 4346))) + : (c <= 4680 || (c < 4696 + ? (c < 4688 + ? (c >= 4682 && c <= 4685) + : c <= 4694) + : (c <= 4696 || (c < 4704 + ? (c >= 4698 && c <= 4701) + : c <= 4744))))))) + : (c <= 4749 || (c < 4992 + ? (c < 4808 + ? (c < 4792 + ? (c < 4786 + ? (c >= 4752 && c <= 4784) + : c <= 4789) + : (c <= 4798 || (c < 4802 + ? c == 4800 + : c <= 4805))) + : (c <= 4822 || (c < 4888 + ? (c < 4882 + ? (c >= 4824 && c <= 4880) + : c <= 4885) + : (c <= 4954 || (c < 4969 + ? (c >= 4957 && c <= 4959) + : c <= 4977))))) + : (c <= 5007 || (c < 5792 + ? (c < 5121 + ? (c < 5112 + ? (c >= 5024 && c <= 5109) + : c <= 5117) + : (c <= 5740 || (c < 5761 + ? (c >= 5743 && c <= 5759) + : c <= 5786))) + : (c <= 5866 || (c < 5919 + ? (c < 5888 + ? (c >= 5870 && c <= 5880) + : c <= 5909) + : (c <= 5940 || (c < 5984 + ? (c >= 5952 && c <= 5971) + : c <= 5996))))))))) + : (c <= 6000 || (c < 6823 + ? (c < 6432 + ? (c < 6155 + ? (c < 6103 + ? (c < 6016 + ? (c >= 6002 && c <= 6003) + : c <= 6099) + : (c <= 6103 || (c < 6112 + ? (c >= 6108 && c <= 6109) + : c <= 6121))) + : (c <= 6157 || (c < 6272 + ? (c < 6176 + ? (c >= 6159 && c <= 6169) + : c <= 6264) + : (c <= 6314 || (c < 6400 + ? (c >= 6320 && c <= 6389) + : c <= 6430))))) + : (c <= 6443 || (c < 6608 + ? (c < 6512 + ? (c < 6470 + ? (c >= 6448 && c <= 6459) + : c <= 6509) + : (c <= 6516 || (c < 6576 + ? (c >= 6528 && c <= 6571) + : c <= 6601))) + : (c <= 6618 || (c < 6752 + ? (c < 6688 + ? (c >= 6656 && c <= 6683) + : c <= 6750) + : (c <= 6780 || (c < 6800 + ? (c >= 6783 && c <= 6793) + : c <= 6809))))))) + : (c <= 6823 || (c < 7357 + ? (c < 7040 + ? (c < 6912 + ? (c < 6847 + ? (c >= 6832 && c <= 6845) + : c <= 6862) + : (c <= 6988 || (c < 7019 + ? (c >= 6992 && c <= 7001) + : c <= 7027))) + : (c <= 7155 || (c < 7245 + ? (c < 7232 + ? (c >= 7168 && c <= 7223) + : c <= 7241) + : (c <= 7293 || (c < 7312 + ? (c >= 7296 && c <= 7304) + : c <= 7354))))) + : (c <= 7359 || (c < 8008 + ? (c < 7424 + ? (c < 7380 + ? (c >= 7376 && c <= 7378) + : c <= 7418) + : (c <= 7957 || (c < 7968 + ? (c >= 7960 && c <= 7965) + : c <= 8005))) + : (c <= 8013 || (c < 8027 + ? (c < 8025 + ? (c >= 8016 && c <= 8023) + : c <= 8025) + : (c <= 8027 || (c < 8031 + ? c == 8029 + : c <= 8061))))))))))) + : (c <= 8116 || (c < 12321 + ? (c < 8488 + ? (c < 8319 + ? (c < 8160 + ? (c < 8134 + ? (c < 8126 + ? (c >= 8118 && c <= 8124) + : (c <= 8126 || (c >= 8130 && c <= 8132))) + : (c <= 8140 || (c < 8150 + ? (c >= 8144 && c <= 8147) + : c <= 8155))) + : (c <= 8172 || (c < 8255 + ? (c < 8182 + ? (c >= 8178 && c <= 8180) + : c <= 8188) + : (c <= 8256 || (c < 8305 + ? c == 8276 + : c <= 8305))))) + : (c <= 8319 || (c < 8455 + ? (c < 8417 + ? (c < 8400 + ? (c >= 8336 && c <= 8348) + : c <= 8412) + : (c <= 8417 || (c < 8450 + ? (c >= 8421 && c <= 8432) + : c <= 8450))) + : (c <= 8455 || (c < 8472 + ? (c < 8469 + ? (c >= 8458 && c <= 8467) + : c <= 8469) + : (c <= 8477 || (c < 8486 + ? c == 8484 + : c <= 8486))))))) + : (c <= 8488 || (c < 11631 + ? (c < 11264 + ? (c < 8517 + ? (c < 8508 + ? (c >= 8490 && c <= 8505) + : c <= 8511) + : (c <= 8521 || (c < 8544 + ? c == 8526 + : c <= 8584))) + : (c <= 11492 || (c < 11559 + ? (c < 11520 + ? (c >= 11499 && c <= 11507) + : c <= 11557) + : (c <= 11559 || (c < 11568 + ? c == 11565 + : c <= 11623))))) + : (c <= 11631 || (c < 11712 + ? (c < 11688 + ? (c < 11680 + ? (c >= 11647 && c <= 11670) + : c <= 11686) + : (c <= 11694 || (c < 11704 + ? (c >= 11696 && c <= 11702) + : c <= 11710))) + : (c <= 11718 || (c < 11736 + ? (c < 11728 + ? (c >= 11720 && c <= 11726) + : c <= 11734) + : (c <= 11742 || (c < 12293 + ? (c >= 11744 && c <= 11775) + : c <= 12295))))))))) + : (c <= 12335 || (c < 42963 + ? (c < 13312 + ? (c < 12449 + ? (c < 12353 + ? (c < 12344 + ? (c >= 12337 && c <= 12341) + : c <= 12348) + : (c <= 12438 || (c < 12445 + ? (c >= 12441 && c <= 12442) + : c <= 12447))) + : (c <= 12538 || (c < 12593 + ? (c < 12549 + ? (c >= 12540 && c <= 12543) + : c <= 12591) + : (c <= 12686 || (c < 12784 + ? (c >= 12704 && c <= 12735) + : c <= 12799))))) + : (c <= 19903 || (c < 42612 + ? (c < 42240 + ? (c < 42192 + ? (c >= 19968 && c <= 42124) + : c <= 42237) + : (c <= 42508 || (c < 42560 + ? (c >= 42512 && c <= 42539) + : c <= 42607))) + : (c <= 42621 || (c < 42786 + ? (c < 42775 + ? (c >= 42623 && c <= 42737) + : c <= 42783) + : (c <= 42888 || (c < 42960 + ? (c >= 42891 && c <= 42954) + : c <= 42961))))))) + : (c <= 42963 || (c < 43392 + ? (c < 43216 + ? (c < 43052 + ? (c < 42994 + ? (c >= 42965 && c <= 42969) + : c <= 43047) + : (c <= 43052 || (c < 43136 + ? (c >= 43072 && c <= 43123) + : c <= 43205))) + : (c <= 43225 || (c < 43261 + ? (c < 43259 + ? (c >= 43232 && c <= 43255) + : c <= 43259) + : (c <= 43309 || (c < 43360 + ? (c >= 43312 && c <= 43347) + : c <= 43388))))) + : (c <= 43456 || (c < 43616 + ? (c < 43520 + ? (c < 43488 + ? (c >= 43471 && c <= 43481) + : c <= 43518) + : (c <= 43574 || (c < 43600 + ? (c >= 43584 && c <= 43597) + : c <= 43609))) + : (c <= 43638 || (c < 43744 + ? (c < 43739 + ? (c >= 43642 && c <= 43714) + : c <= 43741) + : (c <= 43759 || (c < 43777 + ? (c >= 43762 && c <= 43766) + : c <= 43782))))))))))))))) + : (c <= 43790 || (c < 71960 + ? (c < 67840 + ? (c < 65549 + ? (c < 64848 + ? (c < 64112 + ? (c < 44012 + ? (c < 43824 + ? (c < 43808 + ? (c >= 43793 && c <= 43798) + : (c <= 43814 || (c >= 43816 && c <= 43822))) + : (c <= 43866 || (c < 43888 + ? (c >= 43868 && c <= 43881) + : c <= 44010))) + : (c <= 44013 || (c < 55216 + ? (c < 44032 + ? (c >= 44016 && c <= 44025) + : c <= 55203) + : (c <= 55238 || (c < 63744 + ? (c >= 55243 && c <= 55291) + : c <= 64109))))) + : (c <= 64217 || (c < 64318 + ? (c < 64285 + ? (c < 64275 + ? (c >= 64256 && c <= 64262) + : c <= 64279) + : (c <= 64296 || (c < 64312 + ? (c >= 64298 && c <= 64310) + : c <= 64316))) + : (c <= 64318 || (c < 64326 + ? (c < 64323 + ? (c >= 64320 && c <= 64321) + : c <= 64324) + : (c <= 64433 || (c < 64612 + ? (c >= 64467 && c <= 64605) + : c <= 64829))))))) + : (c <= 64911 || (c < 65149 + ? (c < 65101 + ? (c < 65024 + ? (c < 65008 + ? (c >= 64914 && c <= 64967) + : c <= 65017) + : (c <= 65039 || (c < 65075 + ? (c >= 65056 && c <= 65071) + : c <= 65076))) + : (c <= 65103 || (c < 65143 + ? (c < 65139 + ? c == 65137 + : c <= 65139) + : (c <= 65143 || (c < 65147 + ? c == 65145 + : c <= 65147))))) + : (c <= 65149 || (c < 65382 + ? (c < 65313 + ? (c < 65296 + ? (c >= 65151 && c <= 65276) + : c <= 65305) + : (c <= 65338 || (c < 65345 + ? c == 65343 + : c <= 65370))) + : (c <= 65470 || (c < 65490 + ? (c < 65482 + ? (c >= 65474 && c <= 65479) + : c <= 65487) + : (c <= 65495 || (c < 65536 + ? (c >= 65498 && c <= 65500) + : c <= 65547))))))))) + : (c <= 65574 || (c < 66928 + ? (c < 66349 + ? (c < 65856 + ? (c < 65599 + ? (c < 65596 + ? (c >= 65576 && c <= 65594) + : c <= 65597) + : (c <= 65613 || (c < 65664 + ? (c >= 65616 && c <= 65629) + : c <= 65786))) + : (c <= 65908 || (c < 66208 + ? (c < 66176 + ? c == 66045 + : c <= 66204) + : (c <= 66256 || (c < 66304 + ? c == 66272 + : c <= 66335))))) + : (c <= 66378 || (c < 66560 + ? (c < 66464 + ? (c < 66432 + ? (c >= 66384 && c <= 66426) + : c <= 66461) + : (c <= 66499 || (c < 66513 + ? (c >= 66504 && c <= 66511) + : c <= 66517))) + : (c <= 66717 || (c < 66776 + ? (c < 66736 + ? (c >= 66720 && c <= 66729) + : c <= 66771) + : (c <= 66811 || (c < 66864 + ? (c >= 66816 && c <= 66855) + : c <= 66915))))))) + : (c <= 66938 || (c < 67463 + ? (c < 66995 + ? (c < 66964 + ? (c < 66956 + ? (c >= 66940 && c <= 66954) + : c <= 66962) + : (c <= 66965 || (c < 66979 + ? (c >= 66967 && c <= 66977) + : c <= 66993))) + : (c <= 67001 || (c < 67392 + ? (c < 67072 + ? (c >= 67003 && c <= 67004) + : c <= 67382) + : (c <= 67413 || (c < 67456 + ? (c >= 67424 && c <= 67431) + : c <= 67461))))) + : (c <= 67504 || (c < 67644 + ? (c < 67592 + ? (c < 67584 + ? (c >= 67506 && c <= 67514) + : c <= 67589) + : (c <= 67592 || (c < 67639 + ? (c >= 67594 && c <= 67637) + : c <= 67640))) + : (c <= 67644 || (c < 67712 + ? (c < 67680 + ? (c >= 67647 && c <= 67669) + : c <= 67702) + : (c <= 67742 || (c < 67828 + ? (c >= 67808 && c <= 67826) + : c <= 67829))))))))))) + : (c <= 67861 || (c < 70163 + ? (c < 69291 + ? (c < 68288 + ? (c < 68117 + ? (c < 68096 + ? (c < 67968 + ? (c >= 67872 && c <= 67897) + : (c <= 68023 || (c >= 68030 && c <= 68031))) + : (c <= 68099 || (c < 68108 + ? (c >= 68101 && c <= 68102) + : c <= 68115))) + : (c <= 68119 || (c < 68159 + ? (c < 68152 + ? (c >= 68121 && c <= 68149) + : c <= 68154) + : (c <= 68159 || (c < 68224 + ? (c >= 68192 && c <= 68220) + : c <= 68252))))) + : (c <= 68295 || (c < 68608 + ? (c < 68416 + ? (c < 68352 + ? (c >= 68297 && c <= 68326) + : c <= 68405) + : (c <= 68437 || (c < 68480 + ? (c >= 68448 && c <= 68466) + : c <= 68497))) + : (c <= 68680 || (c < 68864 + ? (c < 68800 + ? (c >= 68736 && c <= 68786) + : c <= 68850) + : (c <= 68903 || (c < 69248 + ? (c >= 68912 && c <= 68921) + : c <= 69289))))))) + : (c <= 69292 || (c < 69840 + ? (c < 69552 + ? (c < 69415 + ? (c < 69373 + ? (c >= 69296 && c <= 69297) + : c <= 69404) + : (c <= 69415 || (c < 69488 + ? (c >= 69424 && c <= 69456) + : c <= 69509))) + : (c <= 69572 || (c < 69734 + ? (c < 69632 + ? (c >= 69600 && c <= 69622) + : c <= 69702) + : (c <= 69749 || (c < 69826 + ? (c >= 69759 && c <= 69818) + : c <= 69826))))) + : (c <= 69864 || (c < 70006 + ? (c < 69942 + ? (c < 69888 + ? (c >= 69872 && c <= 69881) + : c <= 69940) + : (c <= 69951 || (c < 69968 + ? (c >= 69956 && c <= 69959) + : c <= 70003))) + : (c <= 70006 || (c < 70094 + ? (c < 70089 + ? (c >= 70016 && c <= 70084) + : c <= 70092) + : (c <= 70106 || (c < 70144 + ? c == 70108 + : c <= 70161))))))))) + : (c <= 70199 || (c < 70656 + ? (c < 70419 + ? (c < 70303 + ? (c < 70280 + ? (c < 70272 + ? (c >= 70206 && c <= 70209) + : c <= 70278) + : (c <= 70280 || (c < 70287 + ? (c >= 70282 && c <= 70285) + : c <= 70301))) + : (c <= 70312 || (c < 70400 + ? (c < 70384 + ? (c >= 70320 && c <= 70378) + : c <= 70393) + : (c <= 70403 || (c < 70415 + ? (c >= 70405 && c <= 70412) + : c <= 70416))))) + : (c <= 70440 || (c < 70475 + ? (c < 70453 + ? (c < 70450 + ? (c >= 70442 && c <= 70448) + : c <= 70451) + : (c <= 70457 || (c < 70471 + ? (c >= 70459 && c <= 70468) + : c <= 70472))) + : (c <= 70477 || (c < 70493 + ? (c < 70487 + ? c == 70480 + : c <= 70487) + : (c <= 70499 || (c < 70512 + ? (c >= 70502 && c <= 70508) + : c <= 70516))))))) + : (c <= 70730 || (c < 71296 + ? (c < 71040 + ? (c < 70784 + ? (c < 70750 + ? (c >= 70736 && c <= 70745) + : c <= 70753) + : (c <= 70853 || (c < 70864 + ? c == 70855 + : c <= 70873))) + : (c <= 71093 || (c < 71168 + ? (c < 71128 + ? (c >= 71096 && c <= 71104) + : c <= 71133) + : (c <= 71232 || (c < 71248 + ? c == 71236 + : c <= 71257))))) + : (c <= 71352 || (c < 71680 + ? (c < 71453 + ? (c < 71424 + ? (c >= 71360 && c <= 71369) + : c <= 71450) + : (c <= 71467 || (c < 71488 + ? (c >= 71472 && c <= 71481) + : c <= 71494))) + : (c <= 71738 || (c < 71945 + ? (c < 71935 + ? (c >= 71840 && c <= 71913) + : c <= 71942) + : (c <= 71945 || (c < 71957 + ? (c >= 71948 && c <= 71955) + : c <= 71958))))))))))))) + : (c <= 71989 || (c < 119995 + ? (c < 92784 + ? (c < 73023 + ? (c < 72704 + ? (c < 72163 + ? (c < 72096 + ? (c < 71995 + ? (c >= 71991 && c <= 71992) + : (c <= 72003 || (c >= 72016 && c <= 72025))) + : (c <= 72103 || (c < 72154 + ? (c >= 72106 && c <= 72151) + : c <= 72161))) + : (c <= 72164 || (c < 72272 + ? (c < 72263 + ? (c >= 72192 && c <= 72254) + : c <= 72263) + : (c <= 72345 || (c < 72368 + ? c == 72349 + : c <= 72440))))) + : (c <= 72712 || (c < 72873 + ? (c < 72784 + ? (c < 72760 + ? (c >= 72714 && c <= 72758) + : c <= 72768) + : (c <= 72793 || (c < 72850 + ? (c >= 72818 && c <= 72847) + : c <= 72871))) + : (c <= 72886 || (c < 72971 + ? (c < 72968 + ? (c >= 72960 && c <= 72966) + : c <= 72969) + : (c <= 73014 || (c < 73020 + ? c == 73018 + : c <= 73021))))))) + : (c <= 73031 || (c < 73552 + ? (c < 73107 + ? (c < 73063 + ? (c < 73056 + ? (c >= 73040 && c <= 73049) + : c <= 73061) + : (c <= 73064 || (c < 73104 + ? (c >= 73066 && c <= 73102) + : c <= 73105))) + : (c <= 73112 || (c < 73472 + ? (c < 73440 + ? (c >= 73120 && c <= 73129) + : c <= 73462) + : (c <= 73488 || (c < 73534 + ? (c >= 73490 && c <= 73530) + : c <= 73538))))) + : (c <= 73561 || (c < 77824 + ? (c < 74752 + ? (c < 73728 + ? c == 73648 + : c <= 74649) + : (c <= 74862 || (c < 77712 + ? (c >= 74880 && c <= 75075) + : c <= 77808))) + : (c <= 78895 || (c < 92160 + ? (c < 82944 + ? (c >= 78912 && c <= 78933) + : c <= 83526) + : (c <= 92728 || (c < 92768 + ? (c >= 92736 && c <= 92766) + : c <= 92777))))))))) + : (c <= 92862 || (c < 110928 + ? (c < 94095 + ? (c < 93008 + ? (c < 92912 + ? (c < 92880 + ? (c >= 92864 && c <= 92873) + : c <= 92909) + : (c <= 92916 || (c < 92992 + ? (c >= 92928 && c <= 92982) + : c <= 92995))) + : (c <= 93017 || (c < 93760 + ? (c < 93053 + ? (c >= 93027 && c <= 93047) + : c <= 93071) + : (c <= 93823 || (c < 94031 + ? (c >= 93952 && c <= 94026) + : c <= 94087))))) + : (c <= 94111 || (c < 101632 + ? (c < 94192 + ? (c < 94179 + ? (c >= 94176 && c <= 94177) + : c <= 94180) + : (c <= 94193 || (c < 100352 + ? (c >= 94208 && c <= 100343) + : c <= 101589))) + : (c <= 101640 || (c < 110589 + ? (c < 110581 + ? (c >= 110576 && c <= 110579) + : c <= 110587) + : (c <= 110590 || (c < 110898 + ? (c >= 110592 && c <= 110882) + : c <= 110898))))))) + : (c <= 110930 || (c < 119149 + ? (c < 113792 + ? (c < 110960 + ? (c < 110948 + ? c == 110933 + : c <= 110951) + : (c <= 111355 || (c < 113776 + ? (c >= 113664 && c <= 113770) + : c <= 113788))) + : (c <= 113800 || (c < 118528 + ? (c < 113821 + ? (c >= 113808 && c <= 113817) + : c <= 113822) + : (c <= 118573 || (c < 119141 + ? (c >= 118576 && c <= 118598) + : c <= 119145))))) + : (c <= 119154 || (c < 119894 + ? (c < 119210 + ? (c < 119173 + ? (c >= 119163 && c <= 119170) + : c <= 119179) + : (c <= 119213 || (c < 119808 + ? (c >= 119362 && c <= 119364) + : c <= 119892))) + : (c <= 119964 || (c < 119973 + ? (c < 119970 + ? (c >= 119966 && c <= 119967) + : c <= 119970) + : (c <= 119974 || (c < 119982 + ? (c >= 119977 && c <= 119980) + : c <= 119993))))))))))) + : (c <= 119995 || (c < 124912 + ? (c < 121403 + ? (c < 120514 + ? (c < 120123 + ? (c < 120077 + ? (c < 120005 + ? (c >= 119997 && c <= 120003) + : (c <= 120069 || (c >= 120071 && c <= 120074))) + : (c <= 120084 || (c < 120094 + ? (c >= 120086 && c <= 120092) + : c <= 120121))) + : (c <= 120126 || (c < 120138 + ? (c < 120134 + ? (c >= 120128 && c <= 120132) + : c <= 120134) + : (c <= 120144 || (c < 120488 + ? (c >= 120146 && c <= 120485) + : c <= 120512))))) + : (c <= 120538 || (c < 120688 + ? (c < 120598 + ? (c < 120572 + ? (c >= 120540 && c <= 120570) + : c <= 120596) + : (c <= 120628 || (c < 120656 + ? (c >= 120630 && c <= 120654) + : c <= 120686))) + : (c <= 120712 || (c < 120772 + ? (c < 120746 + ? (c >= 120714 && c <= 120744) + : c <= 120770) + : (c <= 120779 || (c < 121344 + ? (c >= 120782 && c <= 120831) + : c <= 121398))))))) + : (c <= 121452 || (c < 122928 + ? (c < 122661 + ? (c < 121499 + ? (c < 121476 + ? c == 121461 + : c <= 121476) + : (c <= 121503 || (c < 122624 + ? (c >= 121505 && c <= 121519) + : c <= 122654))) + : (c <= 122666 || (c < 122907 + ? (c < 122888 + ? (c >= 122880 && c <= 122886) + : c <= 122904) + : (c <= 122913 || (c < 122918 + ? (c >= 122915 && c <= 122916) + : c <= 122922))))) + : (c <= 122989 || (c < 123536 + ? (c < 123184 + ? (c < 123136 + ? c == 123023 + : c <= 123180) + : (c <= 123197 || (c < 123214 + ? (c >= 123200 && c <= 123209) + : c <= 123214))) + : (c <= 123566 || (c < 124896 + ? (c < 124112 + ? (c >= 123584 && c <= 123641) + : c <= 124153) + : (c <= 124902 || (c < 124909 + ? (c >= 124904 && c <= 124907) + : c <= 124910))))))))) + : (c <= 124926 || (c < 126557 + ? (c < 126521 + ? (c < 126469 + ? (c < 125184 + ? (c < 125136 + ? (c >= 124928 && c <= 125124) + : c <= 125142) + : (c <= 125259 || (c < 126464 + ? (c >= 125264 && c <= 125273) + : c <= 126467))) + : (c <= 126495 || (c < 126503 + ? (c < 126500 + ? (c >= 126497 && c <= 126498) + : c <= 126500) + : (c <= 126503 || (c < 126516 + ? (c >= 126505 && c <= 126514) + : c <= 126519))))) + : (c <= 126521 || (c < 126541 + ? (c < 126535 + ? (c < 126530 + ? c == 126523 + : c <= 126530) + : (c <= 126535 || (c < 126539 + ? c == 126537 + : c <= 126539))) + : (c <= 126543 || (c < 126551 + ? (c < 126548 + ? (c >= 126545 && c <= 126546) + : c <= 126548) + : (c <= 126551 || (c < 126555 + ? c == 126553 + : c <= 126555))))))) + : (c <= 126557 || (c < 126629 + ? (c < 126580 + ? (c < 126564 + ? (c < 126561 + ? c == 126559 + : c <= 126562) + : (c <= 126564 || (c < 126572 + ? (c >= 126567 && c <= 126570) + : c <= 126578))) + : (c <= 126583 || (c < 126592 + ? (c < 126590 + ? (c >= 126585 && c <= 126588) + : c <= 126590) + : (c <= 126601 || (c < 126625 + ? (c >= 126603 && c <= 126619) + : c <= 126627))))) + : (c <= 126633 || (c < 178208 + ? (c < 131072 + ? (c < 130032 + ? (c >= 126635 && c <= 126651) + : c <= 130041) + : (c <= 173791 || (c < 177984 + ? (c >= 173824 && c <= 177977) + : c <= 178205))) + : (c <= 183969 || (c < 196608 + ? (c < 194560 + ? (c >= 183984 && c <= 191456) + : c <= 195101) + : (c <= 201546 || (c < 917760 + ? (c >= 201552 && c <= 205743) + : c <= 917999))))))))))))))))); +} + +static inline bool sym_identifier_character_set_13(int32_t c) { + return (c < 43793 + ? (c < 3840 + ? (c < 2763 + ? (c < 2112 + ? (c < 1162 + ? (c < 748 + ? (c < 186 + ? (c < 170 + ? (c < 'A' + ? (c >= '0' && c <= '9') + : (c <= 'Z' || (c >= 'a' && c <= 'z'))) + : (c <= 170 || (c < 183 + ? c == 181 + : c <= 183))) + : (c <= 186 || (c < 248 + ? (c < 216 + ? (c >= 192 && c <= 214) + : c <= 246) + : (c <= 705 || (c < 736 + ? (c >= 710 && c <= 721) + : c <= 740))))) + : (c <= 748 || (c < 902 + ? (c < 886 + ? (c < 768 + ? c == 750 + : c <= 884) + : (c <= 887 || (c < 895 + ? (c >= 891 && c <= 893) + : c <= 895))) + : (c <= 906 || (c < 931 + ? (c < 910 + ? c == 908 + : c <= 929) + : (c <= 1013 || (c < 1155 + ? (c >= 1015 && c <= 1153) + : c <= 1159))))))) + : (c <= 1327 || (c < 1568 + ? (c < 1473 + ? (c < 1376 + ? (c < 1369 + ? (c >= 1329 && c <= 1366) + : c <= 1369) + : (c <= 1416 || (c < 1471 + ? (c >= 1425 && c <= 1469) + : c <= 1471))) + : (c <= 1474 || (c < 1488 + ? (c < 1479 + ? (c >= 1476 && c <= 1477) + : c <= 1479) + : (c <= 1514 || (c < 1552 + ? (c >= 1519 && c <= 1522) + : c <= 1562))))) + : (c <= 1641 || (c < 1808 + ? (c < 1759 + ? (c < 1749 + ? (c >= 1646 && c <= 1747) + : c <= 1756) + : (c <= 1768 || (c < 1791 + ? (c >= 1770 && c <= 1788) + : c <= 1791))) + : (c <= 1866 || (c < 2042 + ? (c < 1984 + ? (c >= 1869 && c <= 1969) + : c <= 2037) + : (c <= 2042 || (c < 2048 + ? c == 2045 + : c <= 2093))))))))) + : (c <= 2139 || (c < 2565 + ? (c < 2482 + ? (c < 2406 + ? (c < 2185 + ? (c < 2160 + ? (c >= 2144 && c <= 2154) + : c <= 2183) + : (c <= 2190 || (c < 2275 + ? (c >= 2200 && c <= 2273) + : c <= 2403))) + : (c <= 2415 || (c < 2447 + ? (c < 2437 + ? (c >= 2417 && c <= 2435) + : c <= 2444) + : (c <= 2448 || (c < 2474 + ? (c >= 2451 && c <= 2472) + : c <= 2480))))) + : (c <= 2482 || (c < 2524 + ? (c < 2503 + ? (c < 2492 + ? (c >= 2486 && c <= 2489) + : c <= 2500) + : (c <= 2504 || (c < 2519 + ? (c >= 2507 && c <= 2510) + : c <= 2519))) + : (c <= 2525 || (c < 2556 + ? (c < 2534 + ? (c >= 2527 && c <= 2531) + : c <= 2545) + : (c <= 2556 || (c < 2561 + ? c == 2558 + : c <= 2563))))))) + : (c <= 2570 || (c < 2649 + ? (c < 2616 + ? (c < 2602 + ? (c < 2579 + ? (c >= 2575 && c <= 2576) + : c <= 2600) + : (c <= 2608 || (c < 2613 + ? (c >= 2610 && c <= 2611) + : c <= 2614))) + : (c <= 2617 || (c < 2631 + ? (c < 2622 + ? c == 2620 + : c <= 2626) + : (c <= 2632 || (c < 2641 + ? (c >= 2635 && c <= 2637) + : c <= 2641))))) + : (c <= 2652 || (c < 2707 + ? (c < 2689 + ? (c < 2662 + ? c == 2654 + : c <= 2677) + : (c <= 2691 || (c < 2703 + ? (c >= 2693 && c <= 2701) + : c <= 2705))) + : (c <= 2728 || (c < 2741 + ? (c < 2738 + ? (c >= 2730 && c <= 2736) + : c <= 2739) + : (c <= 2745 || (c < 2759 + ? (c >= 2748 && c <= 2757) + : c <= 2761))))))))))) + : (c <= 2765 || (c < 3205 + ? (c < 2972 + ? (c < 2887 + ? (c < 2831 + ? (c < 2809 + ? (c < 2784 + ? c == 2768 + : (c <= 2787 || (c >= 2790 && c <= 2799))) + : (c <= 2815 || (c < 2821 + ? (c >= 2817 && c <= 2819) + : c <= 2828))) + : (c <= 2832 || (c < 2866 + ? (c < 2858 + ? (c >= 2835 && c <= 2856) + : c <= 2864) + : (c <= 2867 || (c < 2876 + ? (c >= 2869 && c <= 2873) + : c <= 2884))))) + : (c <= 2888 || (c < 2929 + ? (c < 2908 + ? (c < 2901 + ? (c >= 2891 && c <= 2893) + : c <= 2903) + : (c <= 2909 || (c < 2918 + ? (c >= 2911 && c <= 2915) + : c <= 2927))) + : (c <= 2929 || (c < 2958 + ? (c < 2949 + ? (c >= 2946 && c <= 2947) + : c <= 2954) + : (c <= 2960 || (c < 2969 + ? (c >= 2962 && c <= 2965) + : c <= 2970))))))) + : (c <= 2972 || (c < 3086 + ? (c < 3014 + ? (c < 2984 + ? (c < 2979 + ? (c >= 2974 && c <= 2975) + : c <= 2980) + : (c <= 2986 || (c < 3006 + ? (c >= 2990 && c <= 3001) + : c <= 3010))) + : (c <= 3016 || (c < 3031 + ? (c < 3024 + ? (c >= 3018 && c <= 3021) + : c <= 3024) + : (c <= 3031 || (c < 3072 + ? (c >= 3046 && c <= 3055) + : c <= 3084))))) + : (c <= 3088 || (c < 3157 + ? (c < 3132 + ? (c < 3114 + ? (c >= 3090 && c <= 3112) + : c <= 3129) + : (c <= 3140 || (c < 3146 + ? (c >= 3142 && c <= 3144) + : c <= 3149))) + : (c <= 3158 || (c < 3168 + ? (c < 3165 + ? (c >= 3160 && c <= 3162) + : c <= 3165) + : (c <= 3171 || (c < 3200 + ? (c >= 3174 && c <= 3183) + : c <= 3203))))))))) + : (c <= 3212 || (c < 3482 + ? (c < 3313 + ? (c < 3270 + ? (c < 3242 + ? (c < 3218 + ? (c >= 3214 && c <= 3216) + : c <= 3240) + : (c <= 3251 || (c < 3260 + ? (c >= 3253 && c <= 3257) + : c <= 3268))) + : (c <= 3272 || (c < 3293 + ? (c < 3285 + ? (c >= 3274 && c <= 3277) + : c <= 3286) + : (c <= 3294 || (c < 3302 + ? (c >= 3296 && c <= 3299) + : c <= 3311))))) + : (c <= 3315 || (c < 3412 + ? (c < 3346 + ? (c < 3342 + ? (c >= 3328 && c <= 3340) + : c <= 3344) + : (c <= 3396 || (c < 3402 + ? (c >= 3398 && c <= 3400) + : c <= 3406))) + : (c <= 3415 || (c < 3450 + ? (c < 3430 + ? (c >= 3423 && c <= 3427) + : c <= 3439) + : (c <= 3455 || (c < 3461 + ? (c >= 3457 && c <= 3459) + : c <= 3478))))))) + : (c <= 3505 || (c < 3664 + ? (c < 3542 + ? (c < 3520 + ? (c < 3517 + ? (c >= 3507 && c <= 3515) + : c <= 3517) + : (c <= 3526 || (c < 3535 + ? c == 3530 + : c <= 3540))) + : (c <= 3542 || (c < 3570 + ? (c < 3558 + ? (c >= 3544 && c <= 3551) + : c <= 3567) + : (c <= 3571 || (c < 3648 + ? (c >= 3585 && c <= 3642) + : c <= 3662))))) + : (c <= 3673 || (c < 3751 + ? (c < 3718 + ? (c < 3716 + ? (c >= 3713 && c <= 3714) + : c <= 3716) + : (c <= 3722 || (c < 3749 + ? (c >= 3724 && c <= 3747) + : c <= 3749))) + : (c <= 3773 || (c < 3784 + ? (c < 3782 + ? (c >= 3776 && c <= 3780) + : c <= 3782) + : (c <= 3790 || (c < 3804 + ? (c >= 3792 && c <= 3801) + : c <= 3807))))))))))))) + : (c <= 3840 || (c < 8118 + ? (c < 6002 + ? (c < 4752 + ? (c < 4176 + ? (c < 3913 + ? (c < 3895 + ? (c < 3872 + ? (c >= 3864 && c <= 3865) + : (c <= 3881 || c == 3893)) + : (c <= 3895 || (c < 3902 + ? c == 3897 + : c <= 3911))) + : (c <= 3948 || (c < 3993 + ? (c < 3974 + ? (c >= 3953 && c <= 3972) + : c <= 3991) + : (c <= 4028 || (c < 4096 + ? c == 4038 + : c <= 4169))))) + : (c <= 4253 || (c < 4682 + ? (c < 4301 + ? (c < 4295 + ? (c >= 4256 && c <= 4293) + : c <= 4295) + : (c <= 4301 || (c < 4348 + ? (c >= 4304 && c <= 4346) + : c <= 4680))) + : (c <= 4685 || (c < 4698 + ? (c < 4696 + ? (c >= 4688 && c <= 4694) + : c <= 4696) + : (c <= 4701 || (c < 4746 + ? (c >= 4704 && c <= 4744) + : c <= 4749))))))) + : (c <= 4784 || (c < 5024 + ? (c < 4824 + ? (c < 4800 + ? (c < 4792 + ? (c >= 4786 && c <= 4789) + : c <= 4798) + : (c <= 4800 || (c < 4808 + ? (c >= 4802 && c <= 4805) + : c <= 4822))) + : (c <= 4880 || (c < 4957 + ? (c < 4888 + ? (c >= 4882 && c <= 4885) + : c <= 4954) + : (c <= 4959 || (c < 4992 + ? (c >= 4969 && c <= 4977) + : c <= 5007))))) + : (c <= 5109 || (c < 5870 + ? (c < 5743 + ? (c < 5121 + ? (c >= 5112 && c <= 5117) + : c <= 5740) + : (c <= 5759 || (c < 5792 + ? (c >= 5761 && c <= 5786) + : c <= 5866))) + : (c <= 5880 || (c < 5952 + ? (c < 5919 + ? (c >= 5888 && c <= 5909) + : c <= 5940) + : (c <= 5971 || (c < 5998 + ? (c >= 5984 && c <= 5996) + : c <= 6000))))))))) + : (c <= 6003 || (c < 6832 + ? (c < 6448 + ? (c < 6159 + ? (c < 6108 + ? (c < 6103 + ? (c >= 6016 && c <= 6099) + : c <= 6103) + : (c <= 6109 || (c < 6155 + ? (c >= 6112 && c <= 6121) + : c <= 6157))) + : (c <= 6169 || (c < 6320 + ? (c < 6272 + ? (c >= 6176 && c <= 6264) + : c <= 6314) + : (c <= 6389 || (c < 6432 + ? (c >= 6400 && c <= 6430) + : c <= 6443))))) + : (c <= 6459 || (c < 6656 + ? (c < 6528 + ? (c < 6512 + ? (c >= 6470 && c <= 6509) + : c <= 6516) + : (c <= 6571 || (c < 6608 + ? (c >= 6576 && c <= 6601) + : c <= 6618))) + : (c <= 6683 || (c < 6783 + ? (c < 6752 + ? (c >= 6688 && c <= 6750) + : c <= 6780) + : (c <= 6793 || (c < 6823 + ? (c >= 6800 && c <= 6809) + : c <= 6823))))))) + : (c <= 6845 || (c < 7376 + ? (c < 7168 + ? (c < 6992 + ? (c < 6912 + ? (c >= 6847 && c <= 6862) + : c <= 6988) + : (c <= 7001 || (c < 7040 + ? (c >= 7019 && c <= 7027) + : c <= 7155))) + : (c <= 7223 || (c < 7296 + ? (c < 7245 + ? (c >= 7232 && c <= 7241) + : c <= 7293) + : (c <= 7304 || (c < 7357 + ? (c >= 7312 && c <= 7354) + : c <= 7359))))) + : (c <= 7378 || (c < 8016 + ? (c < 7960 + ? (c < 7424 + ? (c >= 7380 && c <= 7418) + : c <= 7957) + : (c <= 7965 || (c < 8008 + ? (c >= 7968 && c <= 8005) + : c <= 8013))) + : (c <= 8023 || (c < 8029 + ? (c < 8027 + ? c == 8025 + : c <= 8027) + : (c <= 8029 || (c < 8064 + ? (c >= 8031 && c <= 8061) + : c <= 8116))))))))))) + : (c <= 8124 || (c < 12337 + ? (c < 8490 + ? (c < 8336 + ? (c < 8178 + ? (c < 8144 + ? (c < 8130 + ? c == 8126 + : (c <= 8132 || (c >= 8134 && c <= 8140))) + : (c <= 8147 || (c < 8160 + ? (c >= 8150 && c <= 8155) + : c <= 8172))) + : (c <= 8180 || (c < 8276 + ? (c < 8255 + ? (c >= 8182 && c <= 8188) + : c <= 8256) + : (c <= 8276 || (c < 8319 + ? c == 8305 + : c <= 8319))))) + : (c <= 8348 || (c < 8458 + ? (c < 8421 + ? (c < 8417 + ? (c >= 8400 && c <= 8412) + : c <= 8417) + : (c <= 8432 || (c < 8455 + ? c == 8450 + : c <= 8455))) + : (c <= 8467 || (c < 8484 + ? (c < 8472 + ? c == 8469 + : c <= 8477) + : (c <= 8484 || (c < 8488 + ? c == 8486 + : c <= 8488))))))) + : (c <= 8505 || (c < 11647 + ? (c < 11499 + ? (c < 8526 + ? (c < 8517 + ? (c >= 8508 && c <= 8511) + : c <= 8521) + : (c <= 8526 || (c < 11264 + ? (c >= 8544 && c <= 8584) + : c <= 11492))) + : (c <= 11507 || (c < 11565 + ? (c < 11559 + ? (c >= 11520 && c <= 11557) + : c <= 11559) + : (c <= 11565 || (c < 11631 + ? (c >= 11568 && c <= 11623) + : c <= 11631))))) + : (c <= 11670 || (c < 11720 + ? (c < 11696 + ? (c < 11688 + ? (c >= 11680 && c <= 11686) + : c <= 11694) + : (c <= 11702 || (c < 11712 + ? (c >= 11704 && c <= 11710) + : c <= 11718))) + : (c <= 11726 || (c < 11744 + ? (c < 11736 + ? (c >= 11728 && c <= 11734) + : c <= 11742) + : (c <= 11775 || (c < 12321 + ? (c >= 12293 && c <= 12295) + : c <= 12335))))))))) + : (c <= 12341 || (c < 42965 + ? (c < 19968 + ? (c < 12540 + ? (c < 12441 + ? (c < 12353 + ? (c >= 12344 && c <= 12348) + : c <= 12438) + : (c <= 12442 || (c < 12449 + ? (c >= 12445 && c <= 12447) + : c <= 12538))) + : (c <= 12543 || (c < 12704 + ? (c < 12593 + ? (c >= 12549 && c <= 12591) + : c <= 12686) + : (c <= 12735 || (c < 13312 + ? (c >= 12784 && c <= 12799) + : c <= 19903))))) + : (c <= 42124 || (c < 42623 + ? (c < 42512 + ? (c < 42240 + ? (c >= 42192 && c <= 42237) + : c <= 42508) + : (c <= 42539 || (c < 42612 + ? (c >= 42560 && c <= 42607) + : c <= 42621))) + : (c <= 42737 || (c < 42891 + ? (c < 42786 + ? (c >= 42775 && c <= 42783) + : c <= 42888) + : (c <= 42954 || (c < 42963 + ? (c >= 42960 && c <= 42961) + : c <= 42963))))))) + : (c <= 42969 || (c < 43471 + ? (c < 43232 + ? (c < 43072 + ? (c < 43052 + ? (c >= 42994 && c <= 43047) + : c <= 43052) + : (c <= 43123 || (c < 43216 + ? (c >= 43136 && c <= 43205) + : c <= 43225))) + : (c <= 43255 || (c < 43312 + ? (c < 43261 + ? c == 43259 + : c <= 43309) + : (c <= 43347 || (c < 43392 + ? (c >= 43360 && c <= 43388) + : c <= 43456))))) + : (c <= 43481 || (c < 43642 + ? (c < 43584 + ? (c < 43520 + ? (c >= 43488 && c <= 43518) + : c <= 43574) + : (c <= 43597 || (c < 43616 + ? (c >= 43600 && c <= 43609) + : c <= 43638))) + : (c <= 43714 || (c < 43762 + ? (c < 43744 + ? (c >= 43739 && c <= 43741) + : c <= 43759) + : (c <= 43766 || (c < 43785 + ? (c >= 43777 && c <= 43782) + : c <= 43790))))))))))))))) + : (c <= 43798 || (c < 71991 + ? (c < 67872 + ? (c < 65576 + ? (c < 64914 + ? (c < 64256 + ? (c < 44016 + ? (c < 43868 + ? (c < 43816 + ? (c >= 43808 && c <= 43814) + : (c <= 43822 || (c >= 43824 && c <= 43866))) + : (c <= 43881 || (c < 44012 + ? (c >= 43888 && c <= 44010) + : c <= 44013))) + : (c <= 44025 || (c < 55243 + ? (c < 55216 + ? (c >= 44032 && c <= 55203) + : c <= 55238) + : (c <= 55291 || (c < 64112 + ? (c >= 63744 && c <= 64109) + : c <= 64217))))) + : (c <= 64262 || (c < 64320 + ? (c < 64298 + ? (c < 64285 + ? (c >= 64275 && c <= 64279) + : c <= 64296) + : (c <= 64310 || (c < 64318 + ? (c >= 64312 && c <= 64316) + : c <= 64318))) + : (c <= 64321 || (c < 64467 + ? (c < 64326 + ? (c >= 64323 && c <= 64324) + : c <= 64433) + : (c <= 64605 || (c < 64848 + ? (c >= 64612 && c <= 64829) + : c <= 64911))))))) + : (c <= 64967 || (c < 65151 + ? (c < 65137 + ? (c < 65056 + ? (c < 65024 + ? (c >= 65008 && c <= 65017) + : c <= 65039) + : (c <= 65071 || (c < 65101 + ? (c >= 65075 && c <= 65076) + : c <= 65103))) + : (c <= 65137 || (c < 65145 + ? (c < 65143 + ? c == 65139 + : c <= 65143) + : (c <= 65145 || (c < 65149 + ? c == 65147 + : c <= 65149))))) + : (c <= 65276 || (c < 65474 + ? (c < 65343 + ? (c < 65313 + ? (c >= 65296 && c <= 65305) + : c <= 65338) + : (c <= 65343 || (c < 65382 + ? (c >= 65345 && c <= 65370) + : c <= 65470))) + : (c <= 65479 || (c < 65498 + ? (c < 65490 + ? (c >= 65482 && c <= 65487) + : c <= 65495) + : (c <= 65500 || (c < 65549 + ? (c >= 65536 && c <= 65547) + : c <= 65574))))))))) + : (c <= 65594 || (c < 66940 + ? (c < 66384 + ? (c < 66045 + ? (c < 65616 + ? (c < 65599 + ? (c >= 65596 && c <= 65597) + : c <= 65613) + : (c <= 65629 || (c < 65856 + ? (c >= 65664 && c <= 65786) + : c <= 65908))) + : (c <= 66045 || (c < 66272 + ? (c < 66208 + ? (c >= 66176 && c <= 66204) + : c <= 66256) + : (c <= 66272 || (c < 66349 + ? (c >= 66304 && c <= 66335) + : c <= 66378))))) + : (c <= 66426 || (c < 66720 + ? (c < 66504 + ? (c < 66464 + ? (c >= 66432 && c <= 66461) + : c <= 66499) + : (c <= 66511 || (c < 66560 + ? (c >= 66513 && c <= 66517) + : c <= 66717))) + : (c <= 66729 || (c < 66816 + ? (c < 66776 + ? (c >= 66736 && c <= 66771) + : c <= 66811) + : (c <= 66855 || (c < 66928 + ? (c >= 66864 && c <= 66915) + : c <= 66938))))))) + : (c <= 66954 || (c < 67506 + ? (c < 67003 + ? (c < 66967 + ? (c < 66964 + ? (c >= 66956 && c <= 66962) + : c <= 66965) + : (c <= 66977 || (c < 66995 + ? (c >= 66979 && c <= 66993) + : c <= 67001))) + : (c <= 67004 || (c < 67424 + ? (c < 67392 + ? (c >= 67072 && c <= 67382) + : c <= 67413) + : (c <= 67431 || (c < 67463 + ? (c >= 67456 && c <= 67461) + : c <= 67504))))) + : (c <= 67514 || (c < 67647 + ? (c < 67594 + ? (c < 67592 + ? (c >= 67584 && c <= 67589) + : c <= 67592) + : (c <= 67637 || (c < 67644 + ? (c >= 67639 && c <= 67640) + : c <= 67644))) + : (c <= 67669 || (c < 67808 + ? (c < 67712 + ? (c >= 67680 && c <= 67702) + : c <= 67742) + : (c <= 67826 || (c < 67840 + ? (c >= 67828 && c <= 67829) + : c <= 67861))))))))))) + : (c <= 67897 || (c < 70206 + ? (c < 69296 + ? (c < 68297 + ? (c < 68121 + ? (c < 68101 + ? (c < 68030 + ? (c >= 67968 && c <= 68023) + : (c <= 68031 || (c >= 68096 && c <= 68099))) + : (c <= 68102 || (c < 68117 + ? (c >= 68108 && c <= 68115) + : c <= 68119))) + : (c <= 68149 || (c < 68192 + ? (c < 68159 + ? (c >= 68152 && c <= 68154) + : c <= 68159) + : (c <= 68220 || (c < 68288 + ? (c >= 68224 && c <= 68252) + : c <= 68295))))) + : (c <= 68326 || (c < 68736 + ? (c < 68448 + ? (c < 68416 + ? (c >= 68352 && c <= 68405) + : c <= 68437) + : (c <= 68466 || (c < 68608 + ? (c >= 68480 && c <= 68497) + : c <= 68680))) + : (c <= 68786 || (c < 68912 + ? (c < 68864 + ? (c >= 68800 && c <= 68850) + : c <= 68903) + : (c <= 68921 || (c < 69291 + ? (c >= 69248 && c <= 69289) + : c <= 69292))))))) + : (c <= 69297 || (c < 69872 + ? (c < 69600 + ? (c < 69424 + ? (c < 69415 + ? (c >= 69373 && c <= 69404) + : c <= 69415) + : (c <= 69456 || (c < 69552 + ? (c >= 69488 && c <= 69509) + : c <= 69572))) + : (c <= 69622 || (c < 69759 + ? (c < 69734 + ? (c >= 69632 && c <= 69702) + : c <= 69749) + : (c <= 69818 || (c < 69840 + ? c == 69826 + : c <= 69864))))) + : (c <= 69881 || (c < 70016 + ? (c < 69956 + ? (c < 69942 + ? (c >= 69888 && c <= 69940) + : c <= 69951) + : (c <= 69959 || (c < 70006 + ? (c >= 69968 && c <= 70003) + : c <= 70006))) + : (c <= 70084 || (c < 70108 + ? (c < 70094 + ? (c >= 70089 && c <= 70092) + : c <= 70106) + : (c <= 70108 || (c < 70163 + ? (c >= 70144 && c <= 70161) + : c <= 70199))))))))) + : (c <= 70209 || (c < 70736 + ? (c < 70442 + ? (c < 70320 + ? (c < 70282 + ? (c < 70280 + ? (c >= 70272 && c <= 70278) + : c <= 70280) + : (c <= 70285 || (c < 70303 + ? (c >= 70287 && c <= 70301) + : c <= 70312))) + : (c <= 70378 || (c < 70405 + ? (c < 70400 + ? (c >= 70384 && c <= 70393) + : c <= 70403) + : (c <= 70412 || (c < 70419 + ? (c >= 70415 && c <= 70416) + : c <= 70440))))) + : (c <= 70448 || (c < 70480 + ? (c < 70459 + ? (c < 70453 + ? (c >= 70450 && c <= 70451) + : c <= 70457) + : (c <= 70468 || (c < 70475 + ? (c >= 70471 && c <= 70472) + : c <= 70477))) + : (c <= 70480 || (c < 70502 + ? (c < 70493 + ? c == 70487 + : c <= 70499) + : (c <= 70508 || (c < 70656 + ? (c >= 70512 && c <= 70516) + : c <= 70730))))))) + : (c <= 70745 || (c < 71360 + ? (c < 71096 + ? (c < 70855 + ? (c < 70784 + ? (c >= 70750 && c <= 70753) + : c <= 70853) + : (c <= 70855 || (c < 71040 + ? (c >= 70864 && c <= 70873) + : c <= 71093))) + : (c <= 71104 || (c < 71236 + ? (c < 71168 + ? (c >= 71128 && c <= 71133) + : c <= 71232) + : (c <= 71236 || (c < 71296 + ? (c >= 71248 && c <= 71257) + : c <= 71352))))) + : (c <= 71369 || (c < 71840 + ? (c < 71472 + ? (c < 71453 + ? (c >= 71424 && c <= 71450) + : c <= 71467) + : (c <= 71481 || (c < 71680 + ? (c >= 71488 && c <= 71494) + : c <= 71738))) + : (c <= 71913 || (c < 71948 + ? (c < 71945 + ? (c >= 71935 && c <= 71942) + : c <= 71945) + : (c <= 71955 || (c < 71960 + ? (c >= 71957 && c <= 71958) + : c <= 71989))))))))))))) + : (c <= 71992 || (c < 119997 + ? (c < 92864 + ? (c < 73040 + ? (c < 72714 + ? (c < 72192 + ? (c < 72106 + ? (c < 72016 + ? (c >= 71995 && c <= 72003) + : (c <= 72025 || (c >= 72096 && c <= 72103))) + : (c <= 72151 || (c < 72163 + ? (c >= 72154 && c <= 72161) + : c <= 72164))) + : (c <= 72254 || (c < 72349 + ? (c < 72272 + ? c == 72263 + : c <= 72345) + : (c <= 72349 || (c < 72704 + ? (c >= 72368 && c <= 72440) + : c <= 72712))))) + : (c <= 72758 || (c < 72960 + ? (c < 72818 + ? (c < 72784 + ? (c >= 72760 && c <= 72768) + : c <= 72793) + : (c <= 72847 || (c < 72873 + ? (c >= 72850 && c <= 72871) + : c <= 72886))) + : (c <= 72966 || (c < 73018 + ? (c < 72971 + ? (c >= 72968 && c <= 72969) + : c <= 73014) + : (c <= 73018 || (c < 73023 + ? (c >= 73020 && c <= 73021) + : c <= 73031))))))) + : (c <= 73049 || (c < 73648 + ? (c < 73120 + ? (c < 73066 + ? (c < 73063 + ? (c >= 73056 && c <= 73061) + : c <= 73064) + : (c <= 73102 || (c < 73107 + ? (c >= 73104 && c <= 73105) + : c <= 73112))) + : (c <= 73129 || (c < 73490 + ? (c < 73472 + ? (c >= 73440 && c <= 73462) + : c <= 73488) + : (c <= 73530 || (c < 73552 + ? (c >= 73534 && c <= 73538) + : c <= 73561))))) + : (c <= 73648 || (c < 78912 + ? (c < 74880 + ? (c < 74752 + ? (c >= 73728 && c <= 74649) + : c <= 74862) + : (c <= 75075 || (c < 77824 + ? (c >= 77712 && c <= 77808) + : c <= 78895))) + : (c <= 78933 || (c < 92736 + ? (c < 92160 + ? (c >= 82944 && c <= 83526) + : c <= 92728) + : (c <= 92766 || (c < 92784 + ? (c >= 92768 && c <= 92777) + : c <= 92862))))))))) + : (c <= 92873 || (c < 110933 + ? (c < 94176 + ? (c < 93027 + ? (c < 92928 + ? (c < 92912 + ? (c >= 92880 && c <= 92909) + : c <= 92916) + : (c <= 92982 || (c < 93008 + ? (c >= 92992 && c <= 92995) + : c <= 93017))) + : (c <= 93047 || (c < 93952 + ? (c < 93760 + ? (c >= 93053 && c <= 93071) + : c <= 93823) + : (c <= 94026 || (c < 94095 + ? (c >= 94031 && c <= 94087) + : c <= 94111))))) + : (c <= 94177 || (c < 110576 + ? (c < 94208 + ? (c < 94192 + ? (c >= 94179 && c <= 94180) + : c <= 94193) + : (c <= 100343 || (c < 101632 + ? (c >= 100352 && c <= 101589) + : c <= 101640))) + : (c <= 110579 || (c < 110592 + ? (c < 110589 + ? (c >= 110581 && c <= 110587) + : c <= 110590) + : (c <= 110882 || (c < 110928 + ? c == 110898 + : c <= 110930))))))) + : (c <= 110933 || (c < 119163 + ? (c < 113808 + ? (c < 113664 + ? (c < 110960 + ? (c >= 110948 && c <= 110951) + : c <= 111355) + : (c <= 113770 || (c < 113792 + ? (c >= 113776 && c <= 113788) + : c <= 113800))) + : (c <= 113817 || (c < 118576 + ? (c < 118528 + ? (c >= 113821 && c <= 113822) + : c <= 118573) + : (c <= 118598 || (c < 119149 + ? (c >= 119141 && c <= 119145) + : c <= 119154))))) + : (c <= 119170 || (c < 119966 + ? (c < 119362 + ? (c < 119210 + ? (c >= 119173 && c <= 119179) + : c <= 119213) + : (c <= 119364 || (c < 119894 + ? (c >= 119808 && c <= 119892) + : c <= 119964))) + : (c <= 119967 || (c < 119977 + ? (c < 119973 + ? c == 119970 + : c <= 119974) + : (c <= 119980 || (c < 119995 + ? (c >= 119982 && c <= 119993) + : c <= 119995))))))))))) + : (c <= 120003 || (c < 124912 + ? (c < 121403 + ? (c < 120514 + ? (c < 120123 + ? (c < 120077 + ? (c < 120071 + ? (c >= 120005 && c <= 120069) + : c <= 120074) + : (c <= 120084 || (c < 120094 + ? (c >= 120086 && c <= 120092) + : c <= 120121))) + : (c <= 120126 || (c < 120138 + ? (c < 120134 + ? (c >= 120128 && c <= 120132) + : c <= 120134) + : (c <= 120144 || (c < 120488 + ? (c >= 120146 && c <= 120485) + : c <= 120512))))) + : (c <= 120538 || (c < 120688 + ? (c < 120598 + ? (c < 120572 + ? (c >= 120540 && c <= 120570) + : c <= 120596) + : (c <= 120628 || (c < 120656 + ? (c >= 120630 && c <= 120654) + : c <= 120686))) + : (c <= 120712 || (c < 120772 + ? (c < 120746 + ? (c >= 120714 && c <= 120744) + : c <= 120770) + : (c <= 120779 || (c < 121344 + ? (c >= 120782 && c <= 120831) + : c <= 121398))))))) + : (c <= 121452 || (c < 122928 + ? (c < 122661 + ? (c < 121499 + ? (c < 121476 + ? c == 121461 + : c <= 121476) + : (c <= 121503 || (c < 122624 + ? (c >= 121505 && c <= 121519) + : c <= 122654))) + : (c <= 122666 || (c < 122907 + ? (c < 122888 + ? (c >= 122880 && c <= 122886) + : c <= 122904) + : (c <= 122913 || (c < 122918 + ? (c >= 122915 && c <= 122916) + : c <= 122922))))) + : (c <= 122989 || (c < 123536 + ? (c < 123184 + ? (c < 123136 + ? c == 123023 + : c <= 123180) + : (c <= 123197 || (c < 123214 + ? (c >= 123200 && c <= 123209) + : c <= 123214))) + : (c <= 123566 || (c < 124896 + ? (c < 124112 + ? (c >= 123584 && c <= 123641) + : c <= 124153) + : (c <= 124902 || (c < 124909 + ? (c >= 124904 && c <= 124907) + : c <= 124910))))))))) + : (c <= 124926 || (c < 126557 + ? (c < 126521 + ? (c < 126469 + ? (c < 125184 + ? (c < 125136 + ? (c >= 124928 && c <= 125124) + : c <= 125142) + : (c <= 125259 || (c < 126464 + ? (c >= 125264 && c <= 125273) + : c <= 126467))) + : (c <= 126495 || (c < 126503 + ? (c < 126500 + ? (c >= 126497 && c <= 126498) + : c <= 126500) + : (c <= 126503 || (c < 126516 + ? (c >= 126505 && c <= 126514) + : c <= 126519))))) + : (c <= 126521 || (c < 126541 + ? (c < 126535 + ? (c < 126530 + ? c == 126523 + : c <= 126530) + : (c <= 126535 || (c < 126539 + ? c == 126537 + : c <= 126539))) + : (c <= 126543 || (c < 126551 + ? (c < 126548 + ? (c >= 126545 && c <= 126546) + : c <= 126548) + : (c <= 126551 || (c < 126555 + ? c == 126553 + : c <= 126555))))))) + : (c <= 126557 || (c < 126629 + ? (c < 126580 + ? (c < 126564 + ? (c < 126561 + ? c == 126559 + : c <= 126562) + : (c <= 126564 || (c < 126572 + ? (c >= 126567 && c <= 126570) + : c <= 126578))) + : (c <= 126583 || (c < 126592 + ? (c < 126590 + ? (c >= 126585 && c <= 126588) + : c <= 126590) + : (c <= 126601 || (c < 126625 + ? (c >= 126603 && c <= 126619) + : c <= 126627))))) + : (c <= 126633 || (c < 178208 + ? (c < 131072 + ? (c < 130032 + ? (c >= 126635 && c <= 126651) + : c <= 130041) + : (c <= 173791 || (c < 177984 + ? (c >= 173824 && c <= 177977) + : c <= 178205))) + : (c <= 183969 || (c < 196608 + ? (c < 194560 + ? (c >= 183984 && c <= 191456) + : c <= 195101) + : (c <= 201546 || (c < 917760 + ? (c >= 201552 && c <= 205743) + : c <= 917999))))))))))))))))); +} + +static inline bool sym_identifier_character_set_14(int32_t c) { + return (c < 43785 + ? (c < 3804 + ? (c < 2759 + ? (c < 2048 + ? (c < 1155 + ? (c < 736 + ? (c < 183 + ? (c < 'b' + ? (c < 'A' + ? (c >= '0' && c <= '9') + : (c <= 'Z' || c == '_')) + : (c <= 'z' || (c < 181 + ? c == 170 + : c <= 181))) + : (c <= 183 || (c < 216 + ? (c < 192 + ? c == 186 + : c <= 214) + : (c <= 246 || (c < 710 + ? (c >= 248 && c <= 705) + : c <= 721))))) + : (c <= 740 || (c < 895 + ? (c < 768 + ? (c < 750 + ? c == 748 + : c <= 750) + : (c <= 884 || (c < 891 + ? (c >= 886 && c <= 887) + : c <= 893))) + : (c <= 895 || (c < 910 + ? (c < 908 + ? (c >= 902 && c <= 906) + : c <= 908) + : (c <= 929 || (c < 1015 + ? (c >= 931 && c <= 1013) + : c <= 1153))))))) + : (c <= 1159 || (c < 1552 + ? (c < 1471 + ? (c < 1369 + ? (c < 1329 + ? (c >= 1162 && c <= 1327) + : c <= 1366) + : (c <= 1369 || (c < 1425 + ? (c >= 1376 && c <= 1416) + : c <= 1469))) + : (c <= 1471 || (c < 1479 + ? (c < 1476 + ? (c >= 1473 && c <= 1474) + : c <= 1477) + : (c <= 1479 || (c < 1519 + ? (c >= 1488 && c <= 1514) + : c <= 1522))))) + : (c <= 1562 || (c < 1791 + ? (c < 1749 + ? (c < 1646 + ? (c >= 1568 && c <= 1641) + : c <= 1747) + : (c <= 1756 || (c < 1770 + ? (c >= 1759 && c <= 1768) + : c <= 1788))) + : (c <= 1791 || (c < 1984 + ? (c < 1869 + ? (c >= 1808 && c <= 1866) + : c <= 1969) + : (c <= 2037 || (c < 2045 + ? c == 2042 + : c <= 2045))))))))) + : (c <= 2093 || (c < 2561 + ? (c < 2474 + ? (c < 2275 + ? (c < 2160 + ? (c < 2144 + ? (c >= 2112 && c <= 2139) + : c <= 2154) + : (c <= 2183 || (c < 2200 + ? (c >= 2185 && c <= 2190) + : c <= 2273))) + : (c <= 2403 || (c < 2437 + ? (c < 2417 + ? (c >= 2406 && c <= 2415) + : c <= 2435) + : (c <= 2444 || (c < 2451 + ? (c >= 2447 && c <= 2448) + : c <= 2472))))) + : (c <= 2480 || (c < 2519 + ? (c < 2492 + ? (c < 2486 + ? c == 2482 + : c <= 2489) + : (c <= 2500 || (c < 2507 + ? (c >= 2503 && c <= 2504) + : c <= 2510))) + : (c <= 2519 || (c < 2534 + ? (c < 2527 + ? (c >= 2524 && c <= 2525) + : c <= 2531) + : (c <= 2545 || (c < 2558 + ? c == 2556 + : c <= 2558))))))) + : (c <= 2563 || (c < 2641 + ? (c < 2613 + ? (c < 2579 + ? (c < 2575 + ? (c >= 2565 && c <= 2570) + : c <= 2576) + : (c <= 2600 || (c < 2610 + ? (c >= 2602 && c <= 2608) + : c <= 2611))) + : (c <= 2614 || (c < 2622 + ? (c < 2620 + ? (c >= 2616 && c <= 2617) + : c <= 2620) + : (c <= 2626 || (c < 2635 + ? (c >= 2631 && c <= 2632) + : c <= 2637))))) + : (c <= 2641 || (c < 2703 + ? (c < 2662 + ? (c < 2654 + ? (c >= 2649 && c <= 2652) + : c <= 2654) + : (c <= 2677 || (c < 2693 + ? (c >= 2689 && c <= 2691) + : c <= 2701))) + : (c <= 2705 || (c < 2738 + ? (c < 2730 + ? (c >= 2707 && c <= 2728) + : c <= 2736) + : (c <= 2739 || (c < 2748 + ? (c >= 2741 && c <= 2745) + : c <= 2757))))))))))) + : (c <= 2761 || (c < 3200 + ? (c < 2969 + ? (c < 2876 + ? (c < 2821 + ? (c < 2790 + ? (c < 2768 + ? (c >= 2763 && c <= 2765) + : (c <= 2768 || (c >= 2784 && c <= 2787))) + : (c <= 2799 || (c < 2817 + ? (c >= 2809 && c <= 2815) + : c <= 2819))) + : (c <= 2828 || (c < 2858 + ? (c < 2835 + ? (c >= 2831 && c <= 2832) + : c <= 2856) + : (c <= 2864 || (c < 2869 + ? (c >= 2866 && c <= 2867) + : c <= 2873))))) + : (c <= 2884 || (c < 2918 + ? (c < 2901 + ? (c < 2891 + ? (c >= 2887 && c <= 2888) + : c <= 2893) + : (c <= 2903 || (c < 2911 + ? (c >= 2908 && c <= 2909) + : c <= 2915))) + : (c <= 2927 || (c < 2949 + ? (c < 2946 + ? c == 2929 + : c <= 2947) + : (c <= 2954 || (c < 2962 + ? (c >= 2958 && c <= 2960) + : c <= 2965))))))) + : (c <= 2970 || (c < 3072 + ? (c < 3006 + ? (c < 2979 + ? (c < 2974 + ? c == 2972 + : c <= 2975) + : (c <= 2980 || (c < 2990 + ? (c >= 2984 && c <= 2986) + : c <= 3001))) + : (c <= 3010 || (c < 3024 + ? (c < 3018 + ? (c >= 3014 && c <= 3016) + : c <= 3021) + : (c <= 3024 || (c < 3046 + ? c == 3031 + : c <= 3055))))) + : (c <= 3084 || (c < 3146 + ? (c < 3114 + ? (c < 3090 + ? (c >= 3086 && c <= 3088) + : c <= 3112) + : (c <= 3129 || (c < 3142 + ? (c >= 3132 && c <= 3140) + : c <= 3144))) + : (c <= 3149 || (c < 3165 + ? (c < 3160 + ? (c >= 3157 && c <= 3158) + : c <= 3162) + : (c <= 3165 || (c < 3174 + ? (c >= 3168 && c <= 3171) + : c <= 3183))))))))) + : (c <= 3203 || (c < 3461 + ? (c < 3302 + ? (c < 3260 + ? (c < 3218 + ? (c < 3214 + ? (c >= 3205 && c <= 3212) + : c <= 3216) + : (c <= 3240 || (c < 3253 + ? (c >= 3242 && c <= 3251) + : c <= 3257))) + : (c <= 3268 || (c < 3285 + ? (c < 3274 + ? (c >= 3270 && c <= 3272) + : c <= 3277) + : (c <= 3286 || (c < 3296 + ? (c >= 3293 && c <= 3294) + : c <= 3299))))) + : (c <= 3311 || (c < 3402 + ? (c < 3342 + ? (c < 3328 + ? (c >= 3313 && c <= 3315) + : c <= 3340) + : (c <= 3344 || (c < 3398 + ? (c >= 3346 && c <= 3396) + : c <= 3400))) + : (c <= 3406 || (c < 3430 + ? (c < 3423 + ? (c >= 3412 && c <= 3415) + : c <= 3427) + : (c <= 3439 || (c < 3457 + ? (c >= 3450 && c <= 3455) + : c <= 3459))))))) + : (c <= 3478 || (c < 3648 + ? (c < 3535 + ? (c < 3517 + ? (c < 3507 + ? (c >= 3482 && c <= 3505) + : c <= 3515) + : (c <= 3517 || (c < 3530 + ? (c >= 3520 && c <= 3526) + : c <= 3530))) + : (c <= 3540 || (c < 3558 + ? (c < 3544 + ? c == 3542 + : c <= 3551) + : (c <= 3567 || (c < 3585 + ? (c >= 3570 && c <= 3571) + : c <= 3642))))) + : (c <= 3662 || (c < 3749 + ? (c < 3716 + ? (c < 3713 + ? (c >= 3664 && c <= 3673) + : c <= 3714) + : (c <= 3716 || (c < 3724 + ? (c >= 3718 && c <= 3722) + : c <= 3747))) + : (c <= 3749 || (c < 3782 + ? (c < 3776 + ? (c >= 3751 && c <= 3773) + : c <= 3780) + : (c <= 3782 || (c < 3792 + ? (c >= 3784 && c <= 3790) + : c <= 3801))))))))))))) + : (c <= 3807 || (c < 8064 + ? (c < 5998 + ? (c < 4746 + ? (c < 4096 + ? (c < 3902 + ? (c < 3893 + ? (c < 3864 + ? c == 3840 + : (c <= 3865 || (c >= 3872 && c <= 3881))) + : (c <= 3893 || (c < 3897 + ? c == 3895 + : c <= 3897))) + : (c <= 3911 || (c < 3974 + ? (c < 3953 + ? (c >= 3913 && c <= 3948) + : c <= 3972) + : (c <= 3991 || (c < 4038 + ? (c >= 3993 && c <= 4028) + : c <= 4038))))) + : (c <= 4169 || (c < 4348 + ? (c < 4295 + ? (c < 4256 + ? (c >= 4176 && c <= 4253) + : c <= 4293) + : (c <= 4295 || (c < 4304 + ? c == 4301 + : c <= 4346))) + : (c <= 4680 || (c < 4696 + ? (c < 4688 + ? (c >= 4682 && c <= 4685) + : c <= 4694) + : (c <= 4696 || (c < 4704 + ? (c >= 4698 && c <= 4701) + : c <= 4744))))))) + : (c <= 4749 || (c < 4992 + ? (c < 4808 + ? (c < 4792 + ? (c < 4786 + ? (c >= 4752 && c <= 4784) + : c <= 4789) + : (c <= 4798 || (c < 4802 + ? c == 4800 + : c <= 4805))) + : (c <= 4822 || (c < 4888 + ? (c < 4882 + ? (c >= 4824 && c <= 4880) + : c <= 4885) + : (c <= 4954 || (c < 4969 + ? (c >= 4957 && c <= 4959) + : c <= 4977))))) + : (c <= 5007 || (c < 5792 + ? (c < 5121 + ? (c < 5112 + ? (c >= 5024 && c <= 5109) + : c <= 5117) + : (c <= 5740 || (c < 5761 + ? (c >= 5743 && c <= 5759) + : c <= 5786))) + : (c <= 5866 || (c < 5919 + ? (c < 5888 + ? (c >= 5870 && c <= 5880) + : c <= 5909) + : (c <= 5940 || (c < 5984 + ? (c >= 5952 && c <= 5971) + : c <= 5996))))))))) + : (c <= 6000 || (c < 6823 + ? (c < 6432 + ? (c < 6155 + ? (c < 6103 + ? (c < 6016 + ? (c >= 6002 && c <= 6003) + : c <= 6099) + : (c <= 6103 || (c < 6112 + ? (c >= 6108 && c <= 6109) + : c <= 6121))) + : (c <= 6157 || (c < 6272 + ? (c < 6176 + ? (c >= 6159 && c <= 6169) + : c <= 6264) + : (c <= 6314 || (c < 6400 + ? (c >= 6320 && c <= 6389) + : c <= 6430))))) + : (c <= 6443 || (c < 6608 + ? (c < 6512 + ? (c < 6470 + ? (c >= 6448 && c <= 6459) + : c <= 6509) + : (c <= 6516 || (c < 6576 + ? (c >= 6528 && c <= 6571) + : c <= 6601))) + : (c <= 6618 || (c < 6752 + ? (c < 6688 + ? (c >= 6656 && c <= 6683) + : c <= 6750) + : (c <= 6780 || (c < 6800 + ? (c >= 6783 && c <= 6793) + : c <= 6809))))))) + : (c <= 6823 || (c < 7357 + ? (c < 7040 + ? (c < 6912 + ? (c < 6847 + ? (c >= 6832 && c <= 6845) + : c <= 6862) + : (c <= 6988 || (c < 7019 + ? (c >= 6992 && c <= 7001) + : c <= 7027))) + : (c <= 7155 || (c < 7245 + ? (c < 7232 + ? (c >= 7168 && c <= 7223) + : c <= 7241) + : (c <= 7293 || (c < 7312 + ? (c >= 7296 && c <= 7304) + : c <= 7354))))) + : (c <= 7359 || (c < 8008 + ? (c < 7424 + ? (c < 7380 + ? (c >= 7376 && c <= 7378) + : c <= 7418) + : (c <= 7957 || (c < 7968 + ? (c >= 7960 && c <= 7965) + : c <= 8005))) + : (c <= 8013 || (c < 8027 + ? (c < 8025 + ? (c >= 8016 && c <= 8023) + : c <= 8025) + : (c <= 8027 || (c < 8031 + ? c == 8029 + : c <= 8061))))))))))) + : (c <= 8116 || (c < 12321 + ? (c < 8488 + ? (c < 8319 + ? (c < 8160 + ? (c < 8134 + ? (c < 8126 + ? (c >= 8118 && c <= 8124) + : (c <= 8126 || (c >= 8130 && c <= 8132))) + : (c <= 8140 || (c < 8150 + ? (c >= 8144 && c <= 8147) + : c <= 8155))) + : (c <= 8172 || (c < 8255 + ? (c < 8182 + ? (c >= 8178 && c <= 8180) + : c <= 8188) + : (c <= 8256 || (c < 8305 + ? c == 8276 + : c <= 8305))))) + : (c <= 8319 || (c < 8455 + ? (c < 8417 + ? (c < 8400 + ? (c >= 8336 && c <= 8348) + : c <= 8412) + : (c <= 8417 || (c < 8450 + ? (c >= 8421 && c <= 8432) + : c <= 8450))) + : (c <= 8455 || (c < 8472 + ? (c < 8469 + ? (c >= 8458 && c <= 8467) + : c <= 8469) + : (c <= 8477 || (c < 8486 + ? c == 8484 + : c <= 8486))))))) + : (c <= 8488 || (c < 11631 + ? (c < 11264 + ? (c < 8517 + ? (c < 8508 + ? (c >= 8490 && c <= 8505) + : c <= 8511) + : (c <= 8521 || (c < 8544 + ? c == 8526 + : c <= 8584))) + : (c <= 11492 || (c < 11559 + ? (c < 11520 + ? (c >= 11499 && c <= 11507) + : c <= 11557) + : (c <= 11559 || (c < 11568 + ? c == 11565 + : c <= 11623))))) + : (c <= 11631 || (c < 11712 + ? (c < 11688 + ? (c < 11680 + ? (c >= 11647 && c <= 11670) + : c <= 11686) + : (c <= 11694 || (c < 11704 + ? (c >= 11696 && c <= 11702) + : c <= 11710))) + : (c <= 11718 || (c < 11736 + ? (c < 11728 + ? (c >= 11720 && c <= 11726) + : c <= 11734) + : (c <= 11742 || (c < 12293 + ? (c >= 11744 && c <= 11775) + : c <= 12295))))))))) + : (c <= 12335 || (c < 42963 + ? (c < 13312 + ? (c < 12449 + ? (c < 12353 + ? (c < 12344 + ? (c >= 12337 && c <= 12341) + : c <= 12348) + : (c <= 12438 || (c < 12445 + ? (c >= 12441 && c <= 12442) + : c <= 12447))) + : (c <= 12538 || (c < 12593 + ? (c < 12549 + ? (c >= 12540 && c <= 12543) + : c <= 12591) + : (c <= 12686 || (c < 12784 + ? (c >= 12704 && c <= 12735) + : c <= 12799))))) + : (c <= 19903 || (c < 42612 + ? (c < 42240 + ? (c < 42192 + ? (c >= 19968 && c <= 42124) + : c <= 42237) + : (c <= 42508 || (c < 42560 + ? (c >= 42512 && c <= 42539) + : c <= 42607))) + : (c <= 42621 || (c < 42786 + ? (c < 42775 + ? (c >= 42623 && c <= 42737) + : c <= 42783) + : (c <= 42888 || (c < 42960 + ? (c >= 42891 && c <= 42954) + : c <= 42961))))))) + : (c <= 42963 || (c < 43392 + ? (c < 43216 + ? (c < 43052 + ? (c < 42994 + ? (c >= 42965 && c <= 42969) + : c <= 43047) + : (c <= 43052 || (c < 43136 + ? (c >= 43072 && c <= 43123) + : c <= 43205))) + : (c <= 43225 || (c < 43261 + ? (c < 43259 + ? (c >= 43232 && c <= 43255) + : c <= 43259) + : (c <= 43309 || (c < 43360 + ? (c >= 43312 && c <= 43347) + : c <= 43388))))) + : (c <= 43456 || (c < 43616 + ? (c < 43520 + ? (c < 43488 + ? (c >= 43471 && c <= 43481) + : c <= 43518) + : (c <= 43574 || (c < 43600 + ? (c >= 43584 && c <= 43597) + : c <= 43609))) + : (c <= 43638 || (c < 43744 + ? (c < 43739 + ? (c >= 43642 && c <= 43714) + : c <= 43741) + : (c <= 43759 || (c < 43777 + ? (c >= 43762 && c <= 43766) + : c <= 43782))))))))))))))) + : (c <= 43790 || (c < 71960 + ? (c < 67840 + ? (c < 65549 + ? (c < 64848 + ? (c < 64112 + ? (c < 44012 + ? (c < 43824 + ? (c < 43808 + ? (c >= 43793 && c <= 43798) + : (c <= 43814 || (c >= 43816 && c <= 43822))) + : (c <= 43866 || (c < 43888 + ? (c >= 43868 && c <= 43881) + : c <= 44010))) + : (c <= 44013 || (c < 55216 + ? (c < 44032 + ? (c >= 44016 && c <= 44025) + : c <= 55203) + : (c <= 55238 || (c < 63744 + ? (c >= 55243 && c <= 55291) + : c <= 64109))))) + : (c <= 64217 || (c < 64318 + ? (c < 64285 + ? (c < 64275 + ? (c >= 64256 && c <= 64262) + : c <= 64279) + : (c <= 64296 || (c < 64312 + ? (c >= 64298 && c <= 64310) + : c <= 64316))) + : (c <= 64318 || (c < 64326 + ? (c < 64323 + ? (c >= 64320 && c <= 64321) + : c <= 64324) + : (c <= 64433 || (c < 64612 + ? (c >= 64467 && c <= 64605) + : c <= 64829))))))) + : (c <= 64911 || (c < 65149 + ? (c < 65101 + ? (c < 65024 + ? (c < 65008 + ? (c >= 64914 && c <= 64967) + : c <= 65017) + : (c <= 65039 || (c < 65075 + ? (c >= 65056 && c <= 65071) + : c <= 65076))) + : (c <= 65103 || (c < 65143 + ? (c < 65139 + ? c == 65137 + : c <= 65139) + : (c <= 65143 || (c < 65147 + ? c == 65145 + : c <= 65147))))) + : (c <= 65149 || (c < 65382 + ? (c < 65313 + ? (c < 65296 + ? (c >= 65151 && c <= 65276) + : c <= 65305) + : (c <= 65338 || (c < 65345 + ? c == 65343 + : c <= 65370))) + : (c <= 65470 || (c < 65490 + ? (c < 65482 + ? (c >= 65474 && c <= 65479) + : c <= 65487) + : (c <= 65495 || (c < 65536 + ? (c >= 65498 && c <= 65500) + : c <= 65547))))))))) + : (c <= 65574 || (c < 66928 + ? (c < 66349 + ? (c < 65856 + ? (c < 65599 + ? (c < 65596 + ? (c >= 65576 && c <= 65594) + : c <= 65597) + : (c <= 65613 || (c < 65664 + ? (c >= 65616 && c <= 65629) + : c <= 65786))) + : (c <= 65908 || (c < 66208 + ? (c < 66176 + ? c == 66045 + : c <= 66204) + : (c <= 66256 || (c < 66304 + ? c == 66272 + : c <= 66335))))) + : (c <= 66378 || (c < 66560 + ? (c < 66464 + ? (c < 66432 + ? (c >= 66384 && c <= 66426) + : c <= 66461) + : (c <= 66499 || (c < 66513 + ? (c >= 66504 && c <= 66511) + : c <= 66517))) + : (c <= 66717 || (c < 66776 + ? (c < 66736 + ? (c >= 66720 && c <= 66729) + : c <= 66771) + : (c <= 66811 || (c < 66864 + ? (c >= 66816 && c <= 66855) + : c <= 66915))))))) + : (c <= 66938 || (c < 67463 + ? (c < 66995 + ? (c < 66964 + ? (c < 66956 + ? (c >= 66940 && c <= 66954) + : c <= 66962) + : (c <= 66965 || (c < 66979 + ? (c >= 66967 && c <= 66977) + : c <= 66993))) + : (c <= 67001 || (c < 67392 + ? (c < 67072 + ? (c >= 67003 && c <= 67004) + : c <= 67382) + : (c <= 67413 || (c < 67456 + ? (c >= 67424 && c <= 67431) + : c <= 67461))))) + : (c <= 67504 || (c < 67644 + ? (c < 67592 + ? (c < 67584 + ? (c >= 67506 && c <= 67514) + : c <= 67589) + : (c <= 67592 || (c < 67639 + ? (c >= 67594 && c <= 67637) + : c <= 67640))) + : (c <= 67644 || (c < 67712 + ? (c < 67680 + ? (c >= 67647 && c <= 67669) + : c <= 67702) + : (c <= 67742 || (c < 67828 + ? (c >= 67808 && c <= 67826) + : c <= 67829))))))))))) + : (c <= 67861 || (c < 70163 + ? (c < 69291 + ? (c < 68288 + ? (c < 68117 + ? (c < 68096 + ? (c < 67968 + ? (c >= 67872 && c <= 67897) + : (c <= 68023 || (c >= 68030 && c <= 68031))) + : (c <= 68099 || (c < 68108 + ? (c >= 68101 && c <= 68102) + : c <= 68115))) + : (c <= 68119 || (c < 68159 + ? (c < 68152 + ? (c >= 68121 && c <= 68149) + : c <= 68154) + : (c <= 68159 || (c < 68224 + ? (c >= 68192 && c <= 68220) + : c <= 68252))))) + : (c <= 68295 || (c < 68608 + ? (c < 68416 + ? (c < 68352 + ? (c >= 68297 && c <= 68326) + : c <= 68405) + : (c <= 68437 || (c < 68480 + ? (c >= 68448 && c <= 68466) + : c <= 68497))) + : (c <= 68680 || (c < 68864 + ? (c < 68800 + ? (c >= 68736 && c <= 68786) + : c <= 68850) + : (c <= 68903 || (c < 69248 + ? (c >= 68912 && c <= 68921) + : c <= 69289))))))) + : (c <= 69292 || (c < 69840 + ? (c < 69552 + ? (c < 69415 + ? (c < 69373 + ? (c >= 69296 && c <= 69297) + : c <= 69404) + : (c <= 69415 || (c < 69488 + ? (c >= 69424 && c <= 69456) + : c <= 69509))) + : (c <= 69572 || (c < 69734 + ? (c < 69632 + ? (c >= 69600 && c <= 69622) + : c <= 69702) + : (c <= 69749 || (c < 69826 + ? (c >= 69759 && c <= 69818) + : c <= 69826))))) + : (c <= 69864 || (c < 70006 + ? (c < 69942 + ? (c < 69888 + ? (c >= 69872 && c <= 69881) + : c <= 69940) + : (c <= 69951 || (c < 69968 + ? (c >= 69956 && c <= 69959) + : c <= 70003))) + : (c <= 70006 || (c < 70094 + ? (c < 70089 + ? (c >= 70016 && c <= 70084) + : c <= 70092) + : (c <= 70106 || (c < 70144 + ? c == 70108 + : c <= 70161))))))))) + : (c <= 70199 || (c < 70656 + ? (c < 70419 + ? (c < 70303 + ? (c < 70280 + ? (c < 70272 + ? (c >= 70206 && c <= 70209) + : c <= 70278) + : (c <= 70280 || (c < 70287 + ? (c >= 70282 && c <= 70285) + : c <= 70301))) + : (c <= 70312 || (c < 70400 + ? (c < 70384 + ? (c >= 70320 && c <= 70378) + : c <= 70393) + : (c <= 70403 || (c < 70415 + ? (c >= 70405 && c <= 70412) + : c <= 70416))))) + : (c <= 70440 || (c < 70475 + ? (c < 70453 + ? (c < 70450 + ? (c >= 70442 && c <= 70448) + : c <= 70451) + : (c <= 70457 || (c < 70471 + ? (c >= 70459 && c <= 70468) + : c <= 70472))) + : (c <= 70477 || (c < 70493 + ? (c < 70487 + ? c == 70480 + : c <= 70487) + : (c <= 70499 || (c < 70512 + ? (c >= 70502 && c <= 70508) + : c <= 70516))))))) + : (c <= 70730 || (c < 71296 + ? (c < 71040 + ? (c < 70784 + ? (c < 70750 + ? (c >= 70736 && c <= 70745) + : c <= 70753) + : (c <= 70853 || (c < 70864 + ? c == 70855 + : c <= 70873))) + : (c <= 71093 || (c < 71168 + ? (c < 71128 + ? (c >= 71096 && c <= 71104) + : c <= 71133) + : (c <= 71232 || (c < 71248 + ? c == 71236 + : c <= 71257))))) + : (c <= 71352 || (c < 71680 + ? (c < 71453 + ? (c < 71424 + ? (c >= 71360 && c <= 71369) + : c <= 71450) + : (c <= 71467 || (c < 71488 + ? (c >= 71472 && c <= 71481) + : c <= 71494))) + : (c <= 71738 || (c < 71945 + ? (c < 71935 + ? (c >= 71840 && c <= 71913) + : c <= 71942) + : (c <= 71945 || (c < 71957 + ? (c >= 71948 && c <= 71955) + : c <= 71958))))))))))))) + : (c <= 71989 || (c < 119995 + ? (c < 92784 + ? (c < 73023 + ? (c < 72704 + ? (c < 72163 + ? (c < 72096 + ? (c < 71995 + ? (c >= 71991 && c <= 71992) + : (c <= 72003 || (c >= 72016 && c <= 72025))) + : (c <= 72103 || (c < 72154 + ? (c >= 72106 && c <= 72151) + : c <= 72161))) + : (c <= 72164 || (c < 72272 + ? (c < 72263 + ? (c >= 72192 && c <= 72254) + : c <= 72263) + : (c <= 72345 || (c < 72368 + ? c == 72349 + : c <= 72440))))) + : (c <= 72712 || (c < 72873 + ? (c < 72784 + ? (c < 72760 + ? (c >= 72714 && c <= 72758) + : c <= 72768) + : (c <= 72793 || (c < 72850 + ? (c >= 72818 && c <= 72847) + : c <= 72871))) + : (c <= 72886 || (c < 72971 + ? (c < 72968 + ? (c >= 72960 && c <= 72966) + : c <= 72969) + : (c <= 73014 || (c < 73020 + ? c == 73018 + : c <= 73021))))))) + : (c <= 73031 || (c < 73552 + ? (c < 73107 + ? (c < 73063 + ? (c < 73056 + ? (c >= 73040 && c <= 73049) + : c <= 73061) + : (c <= 73064 || (c < 73104 + ? (c >= 73066 && c <= 73102) + : c <= 73105))) + : (c <= 73112 || (c < 73472 + ? (c < 73440 + ? (c >= 73120 && c <= 73129) + : c <= 73462) + : (c <= 73488 || (c < 73534 + ? (c >= 73490 && c <= 73530) + : c <= 73538))))) + : (c <= 73561 || (c < 77824 + ? (c < 74752 + ? (c < 73728 + ? c == 73648 + : c <= 74649) + : (c <= 74862 || (c < 77712 + ? (c >= 74880 && c <= 75075) + : c <= 77808))) + : (c <= 78895 || (c < 92160 + ? (c < 82944 + ? (c >= 78912 && c <= 78933) + : c <= 83526) + : (c <= 92728 || (c < 92768 + ? (c >= 92736 && c <= 92766) + : c <= 92777))))))))) + : (c <= 92862 || (c < 110928 + ? (c < 94095 + ? (c < 93008 + ? (c < 92912 + ? (c < 92880 + ? (c >= 92864 && c <= 92873) + : c <= 92909) + : (c <= 92916 || (c < 92992 + ? (c >= 92928 && c <= 92982) + : c <= 92995))) + : (c <= 93017 || (c < 93760 + ? (c < 93053 + ? (c >= 93027 && c <= 93047) + : c <= 93071) + : (c <= 93823 || (c < 94031 + ? (c >= 93952 && c <= 94026) + : c <= 94087))))) + : (c <= 94111 || (c < 101632 + ? (c < 94192 + ? (c < 94179 + ? (c >= 94176 && c <= 94177) + : c <= 94180) + : (c <= 94193 || (c < 100352 + ? (c >= 94208 && c <= 100343) + : c <= 101589))) + : (c <= 101640 || (c < 110589 + ? (c < 110581 + ? (c >= 110576 && c <= 110579) + : c <= 110587) + : (c <= 110590 || (c < 110898 + ? (c >= 110592 && c <= 110882) + : c <= 110898))))))) + : (c <= 110930 || (c < 119149 + ? (c < 113792 + ? (c < 110960 + ? (c < 110948 + ? c == 110933 + : c <= 110951) + : (c <= 111355 || (c < 113776 + ? (c >= 113664 && c <= 113770) + : c <= 113788))) + : (c <= 113800 || (c < 118528 + ? (c < 113821 + ? (c >= 113808 && c <= 113817) + : c <= 113822) + : (c <= 118573 || (c < 119141 + ? (c >= 118576 && c <= 118598) + : c <= 119145))))) + : (c <= 119154 || (c < 119894 + ? (c < 119210 + ? (c < 119173 + ? (c >= 119163 && c <= 119170) + : c <= 119179) + : (c <= 119213 || (c < 119808 + ? (c >= 119362 && c <= 119364) + : c <= 119892))) + : (c <= 119964 || (c < 119973 + ? (c < 119970 + ? (c >= 119966 && c <= 119967) + : c <= 119970) + : (c <= 119974 || (c < 119982 + ? (c >= 119977 && c <= 119980) + : c <= 119993))))))))))) + : (c <= 119995 || (c < 124912 + ? (c < 121403 + ? (c < 120514 + ? (c < 120123 + ? (c < 120077 + ? (c < 120005 + ? (c >= 119997 && c <= 120003) + : (c <= 120069 || (c >= 120071 && c <= 120074))) + : (c <= 120084 || (c < 120094 + ? (c >= 120086 && c <= 120092) + : c <= 120121))) + : (c <= 120126 || (c < 120138 + ? (c < 120134 + ? (c >= 120128 && c <= 120132) + : c <= 120134) + : (c <= 120144 || (c < 120488 + ? (c >= 120146 && c <= 120485) + : c <= 120512))))) + : (c <= 120538 || (c < 120688 + ? (c < 120598 + ? (c < 120572 + ? (c >= 120540 && c <= 120570) + : c <= 120596) + : (c <= 120628 || (c < 120656 + ? (c >= 120630 && c <= 120654) + : c <= 120686))) + : (c <= 120712 || (c < 120772 + ? (c < 120746 + ? (c >= 120714 && c <= 120744) + : c <= 120770) + : (c <= 120779 || (c < 121344 + ? (c >= 120782 && c <= 120831) + : c <= 121398))))))) + : (c <= 121452 || (c < 122928 + ? (c < 122661 + ? (c < 121499 + ? (c < 121476 + ? c == 121461 + : c <= 121476) + : (c <= 121503 || (c < 122624 + ? (c >= 121505 && c <= 121519) + : c <= 122654))) + : (c <= 122666 || (c < 122907 + ? (c < 122888 + ? (c >= 122880 && c <= 122886) + : c <= 122904) + : (c <= 122913 || (c < 122918 + ? (c >= 122915 && c <= 122916) + : c <= 122922))))) + : (c <= 122989 || (c < 123536 + ? (c < 123184 + ? (c < 123136 + ? c == 123023 + : c <= 123180) + : (c <= 123197 || (c < 123214 + ? (c >= 123200 && c <= 123209) + : c <= 123214))) + : (c <= 123566 || (c < 124896 + ? (c < 124112 + ? (c >= 123584 && c <= 123641) + : c <= 124153) + : (c <= 124902 || (c < 124909 + ? (c >= 124904 && c <= 124907) + : c <= 124910))))))))) + : (c <= 124926 || (c < 126557 + ? (c < 126521 + ? (c < 126469 + ? (c < 125184 + ? (c < 125136 + ? (c >= 124928 && c <= 125124) + : c <= 125142) + : (c <= 125259 || (c < 126464 + ? (c >= 125264 && c <= 125273) + : c <= 126467))) + : (c <= 126495 || (c < 126503 + ? (c < 126500 + ? (c >= 126497 && c <= 126498) + : c <= 126500) + : (c <= 126503 || (c < 126516 + ? (c >= 126505 && c <= 126514) + : c <= 126519))))) + : (c <= 126521 || (c < 126541 + ? (c < 126535 + ? (c < 126530 + ? c == 126523 + : c <= 126530) + : (c <= 126535 || (c < 126539 + ? c == 126537 + : c <= 126539))) + : (c <= 126543 || (c < 126551 + ? (c < 126548 + ? (c >= 126545 && c <= 126546) + : c <= 126548) + : (c <= 126551 || (c < 126555 + ? c == 126553 + : c <= 126555))))))) + : (c <= 126557 || (c < 126629 + ? (c < 126580 + ? (c < 126564 + ? (c < 126561 + ? c == 126559 + : c <= 126562) + : (c <= 126564 || (c < 126572 + ? (c >= 126567 && c <= 126570) + : c <= 126578))) + : (c <= 126583 || (c < 126592 + ? (c < 126590 + ? (c >= 126585 && c <= 126588) + : c <= 126590) + : (c <= 126601 || (c < 126625 + ? (c >= 126603 && c <= 126619) + : c <= 126627))))) + : (c <= 126633 || (c < 178208 + ? (c < 131072 + ? (c < 130032 + ? (c >= 126635 && c <= 126651) + : c <= 130041) + : (c <= 173791 || (c < 177984 + ? (c >= 173824 && c <= 177977) + : c <= 178205))) + : (c <= 183969 || (c < 196608 + ? (c < 194560 + ? (c >= 183984 && c <= 191456) + : c <= 195101) + : (c <= 201546 || (c < 917760 + ? (c >= 201552 && c <= 205743) + : c <= 917999))))))))))))))))); +} + +static inline bool sym_identifier_character_set_15(int32_t c) { + return (c < 43785 + ? (c < 3804 + ? (c < 2759 + ? (c < 2048 + ? (c < 1155 + ? (c < 736 + ? (c < 183 + ? (c < 'a' + ? (c < 'A' + ? (c >= '0' && c <= '9') + : (c <= 'Z' || c == '_')) + : (c <= 'y' || (c < 181 + ? c == 170 + : c <= 181))) + : (c <= 183 || (c < 216 + ? (c < 192 + ? c == 186 + : c <= 214) + : (c <= 246 || (c < 710 + ? (c >= 248 && c <= 705) + : c <= 721))))) + : (c <= 740 || (c < 895 + ? (c < 768 + ? (c < 750 + ? c == 748 + : c <= 750) + : (c <= 884 || (c < 891 + ? (c >= 886 && c <= 887) + : c <= 893))) + : (c <= 895 || (c < 910 + ? (c < 908 + ? (c >= 902 && c <= 906) + : c <= 908) + : (c <= 929 || (c < 1015 + ? (c >= 931 && c <= 1013) + : c <= 1153))))))) + : (c <= 1159 || (c < 1552 + ? (c < 1471 + ? (c < 1369 + ? (c < 1329 + ? (c >= 1162 && c <= 1327) + : c <= 1366) + : (c <= 1369 || (c < 1425 + ? (c >= 1376 && c <= 1416) + : c <= 1469))) + : (c <= 1471 || (c < 1479 + ? (c < 1476 + ? (c >= 1473 && c <= 1474) + : c <= 1477) + : (c <= 1479 || (c < 1519 + ? (c >= 1488 && c <= 1514) + : c <= 1522))))) + : (c <= 1562 || (c < 1791 + ? (c < 1749 + ? (c < 1646 + ? (c >= 1568 && c <= 1641) + : c <= 1747) + : (c <= 1756 || (c < 1770 + ? (c >= 1759 && c <= 1768) + : c <= 1788))) + : (c <= 1791 || (c < 1984 + ? (c < 1869 + ? (c >= 1808 && c <= 1866) + : c <= 1969) + : (c <= 2037 || (c < 2045 + ? c == 2042 + : c <= 2045))))))))) + : (c <= 2093 || (c < 2561 + ? (c < 2474 + ? (c < 2275 + ? (c < 2160 + ? (c < 2144 + ? (c >= 2112 && c <= 2139) + : c <= 2154) + : (c <= 2183 || (c < 2200 + ? (c >= 2185 && c <= 2190) + : c <= 2273))) + : (c <= 2403 || (c < 2437 + ? (c < 2417 + ? (c >= 2406 && c <= 2415) + : c <= 2435) + : (c <= 2444 || (c < 2451 + ? (c >= 2447 && c <= 2448) + : c <= 2472))))) + : (c <= 2480 || (c < 2519 + ? (c < 2492 + ? (c < 2486 + ? c == 2482 + : c <= 2489) + : (c <= 2500 || (c < 2507 + ? (c >= 2503 && c <= 2504) + : c <= 2510))) + : (c <= 2519 || (c < 2534 + ? (c < 2527 + ? (c >= 2524 && c <= 2525) + : c <= 2531) + : (c <= 2545 || (c < 2558 + ? c == 2556 + : c <= 2558))))))) + : (c <= 2563 || (c < 2641 + ? (c < 2613 + ? (c < 2579 + ? (c < 2575 + ? (c >= 2565 && c <= 2570) + : c <= 2576) + : (c <= 2600 || (c < 2610 + ? (c >= 2602 && c <= 2608) + : c <= 2611))) + : (c <= 2614 || (c < 2622 + ? (c < 2620 + ? (c >= 2616 && c <= 2617) + : c <= 2620) + : (c <= 2626 || (c < 2635 + ? (c >= 2631 && c <= 2632) + : c <= 2637))))) + : (c <= 2641 || (c < 2703 + ? (c < 2662 + ? (c < 2654 + ? (c >= 2649 && c <= 2652) + : c <= 2654) + : (c <= 2677 || (c < 2693 + ? (c >= 2689 && c <= 2691) + : c <= 2701))) + : (c <= 2705 || (c < 2738 + ? (c < 2730 + ? (c >= 2707 && c <= 2728) + : c <= 2736) + : (c <= 2739 || (c < 2748 + ? (c >= 2741 && c <= 2745) + : c <= 2757))))))))))) + : (c <= 2761 || (c < 3200 + ? (c < 2969 + ? (c < 2876 + ? (c < 2821 + ? (c < 2790 + ? (c < 2768 + ? (c >= 2763 && c <= 2765) + : (c <= 2768 || (c >= 2784 && c <= 2787))) + : (c <= 2799 || (c < 2817 + ? (c >= 2809 && c <= 2815) + : c <= 2819))) + : (c <= 2828 || (c < 2858 + ? (c < 2835 + ? (c >= 2831 && c <= 2832) + : c <= 2856) + : (c <= 2864 || (c < 2869 + ? (c >= 2866 && c <= 2867) + : c <= 2873))))) + : (c <= 2884 || (c < 2918 + ? (c < 2901 + ? (c < 2891 + ? (c >= 2887 && c <= 2888) + : c <= 2893) + : (c <= 2903 || (c < 2911 + ? (c >= 2908 && c <= 2909) + : c <= 2915))) + : (c <= 2927 || (c < 2949 + ? (c < 2946 + ? c == 2929 + : c <= 2947) + : (c <= 2954 || (c < 2962 + ? (c >= 2958 && c <= 2960) + : c <= 2965))))))) + : (c <= 2970 || (c < 3072 + ? (c < 3006 + ? (c < 2979 + ? (c < 2974 + ? c == 2972 + : c <= 2975) + : (c <= 2980 || (c < 2990 + ? (c >= 2984 && c <= 2986) + : c <= 3001))) + : (c <= 3010 || (c < 3024 + ? (c < 3018 + ? (c >= 3014 && c <= 3016) + : c <= 3021) + : (c <= 3024 || (c < 3046 + ? c == 3031 + : c <= 3055))))) + : (c <= 3084 || (c < 3146 + ? (c < 3114 + ? (c < 3090 + ? (c >= 3086 && c <= 3088) + : c <= 3112) + : (c <= 3129 || (c < 3142 + ? (c >= 3132 && c <= 3140) + : c <= 3144))) + : (c <= 3149 || (c < 3165 + ? (c < 3160 + ? (c >= 3157 && c <= 3158) + : c <= 3162) + : (c <= 3165 || (c < 3174 + ? (c >= 3168 && c <= 3171) + : c <= 3183))))))))) + : (c <= 3203 || (c < 3461 + ? (c < 3302 + ? (c < 3260 + ? (c < 3218 + ? (c < 3214 + ? (c >= 3205 && c <= 3212) + : c <= 3216) + : (c <= 3240 || (c < 3253 + ? (c >= 3242 && c <= 3251) + : c <= 3257))) + : (c <= 3268 || (c < 3285 + ? (c < 3274 + ? (c >= 3270 && c <= 3272) + : c <= 3277) + : (c <= 3286 || (c < 3296 + ? (c >= 3293 && c <= 3294) + : c <= 3299))))) + : (c <= 3311 || (c < 3402 + ? (c < 3342 + ? (c < 3328 + ? (c >= 3313 && c <= 3315) + : c <= 3340) + : (c <= 3344 || (c < 3398 + ? (c >= 3346 && c <= 3396) + : c <= 3400))) + : (c <= 3406 || (c < 3430 + ? (c < 3423 + ? (c >= 3412 && c <= 3415) + : c <= 3427) + : (c <= 3439 || (c < 3457 + ? (c >= 3450 && c <= 3455) + : c <= 3459))))))) + : (c <= 3478 || (c < 3648 + ? (c < 3535 + ? (c < 3517 + ? (c < 3507 + ? (c >= 3482 && c <= 3505) + : c <= 3515) + : (c <= 3517 || (c < 3530 + ? (c >= 3520 && c <= 3526) + : c <= 3530))) + : (c <= 3540 || (c < 3558 + ? (c < 3544 + ? c == 3542 + : c <= 3551) + : (c <= 3567 || (c < 3585 + ? (c >= 3570 && c <= 3571) + : c <= 3642))))) + : (c <= 3662 || (c < 3749 + ? (c < 3716 + ? (c < 3713 + ? (c >= 3664 && c <= 3673) + : c <= 3714) + : (c <= 3716 || (c < 3724 + ? (c >= 3718 && c <= 3722) + : c <= 3747))) + : (c <= 3749 || (c < 3782 + ? (c < 3776 + ? (c >= 3751 && c <= 3773) + : c <= 3780) + : (c <= 3782 || (c < 3792 + ? (c >= 3784 && c <= 3790) + : c <= 3801))))))))))))) + : (c <= 3807 || (c < 8064 + ? (c < 5998 + ? (c < 4746 + ? (c < 4096 + ? (c < 3902 + ? (c < 3893 + ? (c < 3864 + ? c == 3840 + : (c <= 3865 || (c >= 3872 && c <= 3881))) + : (c <= 3893 || (c < 3897 + ? c == 3895 + : c <= 3897))) + : (c <= 3911 || (c < 3974 + ? (c < 3953 + ? (c >= 3913 && c <= 3948) + : c <= 3972) + : (c <= 3991 || (c < 4038 + ? (c >= 3993 && c <= 4028) + : c <= 4038))))) + : (c <= 4169 || (c < 4348 + ? (c < 4295 + ? (c < 4256 + ? (c >= 4176 && c <= 4253) + : c <= 4293) + : (c <= 4295 || (c < 4304 + ? c == 4301 + : c <= 4346))) + : (c <= 4680 || (c < 4696 + ? (c < 4688 + ? (c >= 4682 && c <= 4685) + : c <= 4694) + : (c <= 4696 || (c < 4704 + ? (c >= 4698 && c <= 4701) + : c <= 4744))))))) + : (c <= 4749 || (c < 4992 + ? (c < 4808 + ? (c < 4792 + ? (c < 4786 + ? (c >= 4752 && c <= 4784) + : c <= 4789) + : (c <= 4798 || (c < 4802 + ? c == 4800 + : c <= 4805))) + : (c <= 4822 || (c < 4888 + ? (c < 4882 + ? (c >= 4824 && c <= 4880) + : c <= 4885) + : (c <= 4954 || (c < 4969 + ? (c >= 4957 && c <= 4959) + : c <= 4977))))) + : (c <= 5007 || (c < 5792 + ? (c < 5121 + ? (c < 5112 + ? (c >= 5024 && c <= 5109) + : c <= 5117) + : (c <= 5740 || (c < 5761 + ? (c >= 5743 && c <= 5759) + : c <= 5786))) + : (c <= 5866 || (c < 5919 + ? (c < 5888 + ? (c >= 5870 && c <= 5880) + : c <= 5909) + : (c <= 5940 || (c < 5984 + ? (c >= 5952 && c <= 5971) + : c <= 5996))))))))) + : (c <= 6000 || (c < 6823 + ? (c < 6432 + ? (c < 6155 + ? (c < 6103 + ? (c < 6016 + ? (c >= 6002 && c <= 6003) + : c <= 6099) + : (c <= 6103 || (c < 6112 + ? (c >= 6108 && c <= 6109) + : c <= 6121))) + : (c <= 6157 || (c < 6272 + ? (c < 6176 + ? (c >= 6159 && c <= 6169) + : c <= 6264) + : (c <= 6314 || (c < 6400 + ? (c >= 6320 && c <= 6389) + : c <= 6430))))) + : (c <= 6443 || (c < 6608 + ? (c < 6512 + ? (c < 6470 + ? (c >= 6448 && c <= 6459) + : c <= 6509) + : (c <= 6516 || (c < 6576 + ? (c >= 6528 && c <= 6571) + : c <= 6601))) + : (c <= 6618 || (c < 6752 + ? (c < 6688 + ? (c >= 6656 && c <= 6683) + : c <= 6750) + : (c <= 6780 || (c < 6800 + ? (c >= 6783 && c <= 6793) + : c <= 6809))))))) + : (c <= 6823 || (c < 7357 + ? (c < 7040 + ? (c < 6912 + ? (c < 6847 + ? (c >= 6832 && c <= 6845) + : c <= 6862) + : (c <= 6988 || (c < 7019 + ? (c >= 6992 && c <= 7001) + : c <= 7027))) + : (c <= 7155 || (c < 7245 + ? (c < 7232 + ? (c >= 7168 && c <= 7223) + : c <= 7241) + : (c <= 7293 || (c < 7312 + ? (c >= 7296 && c <= 7304) + : c <= 7354))))) + : (c <= 7359 || (c < 8008 + ? (c < 7424 + ? (c < 7380 + ? (c >= 7376 && c <= 7378) + : c <= 7418) + : (c <= 7957 || (c < 7968 + ? (c >= 7960 && c <= 7965) + : c <= 8005))) + : (c <= 8013 || (c < 8027 + ? (c < 8025 + ? (c >= 8016 && c <= 8023) + : c <= 8025) + : (c <= 8027 || (c < 8031 + ? c == 8029 + : c <= 8061))))))))))) + : (c <= 8116 || (c < 12321 + ? (c < 8488 + ? (c < 8319 + ? (c < 8160 + ? (c < 8134 + ? (c < 8126 + ? (c >= 8118 && c <= 8124) + : (c <= 8126 || (c >= 8130 && c <= 8132))) + : (c <= 8140 || (c < 8150 + ? (c >= 8144 && c <= 8147) + : c <= 8155))) + : (c <= 8172 || (c < 8255 + ? (c < 8182 + ? (c >= 8178 && c <= 8180) + : c <= 8188) + : (c <= 8256 || (c < 8305 + ? c == 8276 + : c <= 8305))))) + : (c <= 8319 || (c < 8455 + ? (c < 8417 + ? (c < 8400 + ? (c >= 8336 && c <= 8348) + : c <= 8412) + : (c <= 8417 || (c < 8450 + ? (c >= 8421 && c <= 8432) + : c <= 8450))) + : (c <= 8455 || (c < 8472 + ? (c < 8469 + ? (c >= 8458 && c <= 8467) + : c <= 8469) + : (c <= 8477 || (c < 8486 + ? c == 8484 + : c <= 8486))))))) + : (c <= 8488 || (c < 11631 + ? (c < 11264 + ? (c < 8517 + ? (c < 8508 + ? (c >= 8490 && c <= 8505) + : c <= 8511) + : (c <= 8521 || (c < 8544 + ? c == 8526 + : c <= 8584))) + : (c <= 11492 || (c < 11559 + ? (c < 11520 + ? (c >= 11499 && c <= 11507) + : c <= 11557) + : (c <= 11559 || (c < 11568 + ? c == 11565 + : c <= 11623))))) + : (c <= 11631 || (c < 11712 + ? (c < 11688 + ? (c < 11680 + ? (c >= 11647 && c <= 11670) + : c <= 11686) + : (c <= 11694 || (c < 11704 + ? (c >= 11696 && c <= 11702) + : c <= 11710))) + : (c <= 11718 || (c < 11736 + ? (c < 11728 + ? (c >= 11720 && c <= 11726) + : c <= 11734) + : (c <= 11742 || (c < 12293 + ? (c >= 11744 && c <= 11775) + : c <= 12295))))))))) + : (c <= 12335 || (c < 42963 + ? (c < 13312 + ? (c < 12449 + ? (c < 12353 + ? (c < 12344 + ? (c >= 12337 && c <= 12341) + : c <= 12348) + : (c <= 12438 || (c < 12445 + ? (c >= 12441 && c <= 12442) + : c <= 12447))) + : (c <= 12538 || (c < 12593 + ? (c < 12549 + ? (c >= 12540 && c <= 12543) + : c <= 12591) + : (c <= 12686 || (c < 12784 + ? (c >= 12704 && c <= 12735) + : c <= 12799))))) + : (c <= 19903 || (c < 42612 + ? (c < 42240 + ? (c < 42192 + ? (c >= 19968 && c <= 42124) + : c <= 42237) + : (c <= 42508 || (c < 42560 + ? (c >= 42512 && c <= 42539) + : c <= 42607))) + : (c <= 42621 || (c < 42786 + ? (c < 42775 + ? (c >= 42623 && c <= 42737) + : c <= 42783) + : (c <= 42888 || (c < 42960 + ? (c >= 42891 && c <= 42954) + : c <= 42961))))))) + : (c <= 42963 || (c < 43392 + ? (c < 43216 + ? (c < 43052 + ? (c < 42994 + ? (c >= 42965 && c <= 42969) + : c <= 43047) + : (c <= 43052 || (c < 43136 + ? (c >= 43072 && c <= 43123) + : c <= 43205))) + : (c <= 43225 || (c < 43261 + ? (c < 43259 + ? (c >= 43232 && c <= 43255) + : c <= 43259) + : (c <= 43309 || (c < 43360 + ? (c >= 43312 && c <= 43347) + : c <= 43388))))) + : (c <= 43456 || (c < 43616 + ? (c < 43520 + ? (c < 43488 + ? (c >= 43471 && c <= 43481) + : c <= 43518) + : (c <= 43574 || (c < 43600 + ? (c >= 43584 && c <= 43597) + : c <= 43609))) + : (c <= 43638 || (c < 43744 + ? (c < 43739 + ? (c >= 43642 && c <= 43714) + : c <= 43741) + : (c <= 43759 || (c < 43777 + ? (c >= 43762 && c <= 43766) + : c <= 43782))))))))))))))) + : (c <= 43790 || (c < 71960 + ? (c < 67840 + ? (c < 65549 + ? (c < 64848 + ? (c < 64112 + ? (c < 44012 + ? (c < 43824 + ? (c < 43808 + ? (c >= 43793 && c <= 43798) + : (c <= 43814 || (c >= 43816 && c <= 43822))) + : (c <= 43866 || (c < 43888 + ? (c >= 43868 && c <= 43881) + : c <= 44010))) + : (c <= 44013 || (c < 55216 + ? (c < 44032 + ? (c >= 44016 && c <= 44025) + : c <= 55203) + : (c <= 55238 || (c < 63744 + ? (c >= 55243 && c <= 55291) + : c <= 64109))))) + : (c <= 64217 || (c < 64318 + ? (c < 64285 + ? (c < 64275 + ? (c >= 64256 && c <= 64262) + : c <= 64279) + : (c <= 64296 || (c < 64312 + ? (c >= 64298 && c <= 64310) + : c <= 64316))) + : (c <= 64318 || (c < 64326 + ? (c < 64323 + ? (c >= 64320 && c <= 64321) + : c <= 64324) + : (c <= 64433 || (c < 64612 + ? (c >= 64467 && c <= 64605) + : c <= 64829))))))) + : (c <= 64911 || (c < 65149 + ? (c < 65101 + ? (c < 65024 + ? (c < 65008 + ? (c >= 64914 && c <= 64967) + : c <= 65017) + : (c <= 65039 || (c < 65075 + ? (c >= 65056 && c <= 65071) + : c <= 65076))) + : (c <= 65103 || (c < 65143 + ? (c < 65139 + ? c == 65137 + : c <= 65139) + : (c <= 65143 || (c < 65147 + ? c == 65145 + : c <= 65147))))) + : (c <= 65149 || (c < 65382 + ? (c < 65313 + ? (c < 65296 + ? (c >= 65151 && c <= 65276) + : c <= 65305) + : (c <= 65338 || (c < 65345 + ? c == 65343 + : c <= 65370))) + : (c <= 65470 || (c < 65490 + ? (c < 65482 + ? (c >= 65474 && c <= 65479) + : c <= 65487) + : (c <= 65495 || (c < 65536 + ? (c >= 65498 && c <= 65500) + : c <= 65547))))))))) + : (c <= 65574 || (c < 66928 + ? (c < 66349 + ? (c < 65856 + ? (c < 65599 + ? (c < 65596 + ? (c >= 65576 && c <= 65594) + : c <= 65597) + : (c <= 65613 || (c < 65664 + ? (c >= 65616 && c <= 65629) + : c <= 65786))) + : (c <= 65908 || (c < 66208 + ? (c < 66176 + ? c == 66045 + : c <= 66204) + : (c <= 66256 || (c < 66304 + ? c == 66272 + : c <= 66335))))) + : (c <= 66378 || (c < 66560 + ? (c < 66464 + ? (c < 66432 + ? (c >= 66384 && c <= 66426) + : c <= 66461) + : (c <= 66499 || (c < 66513 + ? (c >= 66504 && c <= 66511) + : c <= 66517))) + : (c <= 66717 || (c < 66776 + ? (c < 66736 + ? (c >= 66720 && c <= 66729) + : c <= 66771) + : (c <= 66811 || (c < 66864 + ? (c >= 66816 && c <= 66855) + : c <= 66915))))))) + : (c <= 66938 || (c < 67463 + ? (c < 66995 + ? (c < 66964 + ? (c < 66956 + ? (c >= 66940 && c <= 66954) + : c <= 66962) + : (c <= 66965 || (c < 66979 + ? (c >= 66967 && c <= 66977) + : c <= 66993))) + : (c <= 67001 || (c < 67392 + ? (c < 67072 + ? (c >= 67003 && c <= 67004) + : c <= 67382) + : (c <= 67413 || (c < 67456 + ? (c >= 67424 && c <= 67431) + : c <= 67461))))) + : (c <= 67504 || (c < 67644 + ? (c < 67592 + ? (c < 67584 + ? (c >= 67506 && c <= 67514) + : c <= 67589) + : (c <= 67592 || (c < 67639 + ? (c >= 67594 && c <= 67637) + : c <= 67640))) + : (c <= 67644 || (c < 67712 + ? (c < 67680 + ? (c >= 67647 && c <= 67669) + : c <= 67702) + : (c <= 67742 || (c < 67828 + ? (c >= 67808 && c <= 67826) + : c <= 67829))))))))))) + : (c <= 67861 || (c < 70163 + ? (c < 69291 + ? (c < 68288 + ? (c < 68117 + ? (c < 68096 + ? (c < 67968 + ? (c >= 67872 && c <= 67897) + : (c <= 68023 || (c >= 68030 && c <= 68031))) + : (c <= 68099 || (c < 68108 + ? (c >= 68101 && c <= 68102) + : c <= 68115))) + : (c <= 68119 || (c < 68159 + ? (c < 68152 + ? (c >= 68121 && c <= 68149) + : c <= 68154) + : (c <= 68159 || (c < 68224 + ? (c >= 68192 && c <= 68220) + : c <= 68252))))) + : (c <= 68295 || (c < 68608 + ? (c < 68416 + ? (c < 68352 + ? (c >= 68297 && c <= 68326) + : c <= 68405) + : (c <= 68437 || (c < 68480 + ? (c >= 68448 && c <= 68466) + : c <= 68497))) + : (c <= 68680 || (c < 68864 + ? (c < 68800 + ? (c >= 68736 && c <= 68786) + : c <= 68850) + : (c <= 68903 || (c < 69248 + ? (c >= 68912 && c <= 68921) + : c <= 69289))))))) + : (c <= 69292 || (c < 69840 + ? (c < 69552 + ? (c < 69415 + ? (c < 69373 + ? (c >= 69296 && c <= 69297) + : c <= 69404) + : (c <= 69415 || (c < 69488 + ? (c >= 69424 && c <= 69456) + : c <= 69509))) + : (c <= 69572 || (c < 69734 + ? (c < 69632 + ? (c >= 69600 && c <= 69622) + : c <= 69702) + : (c <= 69749 || (c < 69826 + ? (c >= 69759 && c <= 69818) + : c <= 69826))))) + : (c <= 69864 || (c < 70006 + ? (c < 69942 + ? (c < 69888 + ? (c >= 69872 && c <= 69881) + : c <= 69940) + : (c <= 69951 || (c < 69968 + ? (c >= 69956 && c <= 69959) + : c <= 70003))) + : (c <= 70006 || (c < 70094 + ? (c < 70089 + ? (c >= 70016 && c <= 70084) + : c <= 70092) + : (c <= 70106 || (c < 70144 + ? c == 70108 + : c <= 70161))))))))) + : (c <= 70199 || (c < 70656 + ? (c < 70419 + ? (c < 70303 + ? (c < 70280 + ? (c < 70272 + ? (c >= 70206 && c <= 70209) + : c <= 70278) + : (c <= 70280 || (c < 70287 + ? (c >= 70282 && c <= 70285) + : c <= 70301))) + : (c <= 70312 || (c < 70400 + ? (c < 70384 + ? (c >= 70320 && c <= 70378) + : c <= 70393) + : (c <= 70403 || (c < 70415 + ? (c >= 70405 && c <= 70412) + : c <= 70416))))) + : (c <= 70440 || (c < 70475 + ? (c < 70453 + ? (c < 70450 + ? (c >= 70442 && c <= 70448) + : c <= 70451) + : (c <= 70457 || (c < 70471 + ? (c >= 70459 && c <= 70468) + : c <= 70472))) + : (c <= 70477 || (c < 70493 + ? (c < 70487 + ? c == 70480 + : c <= 70487) + : (c <= 70499 || (c < 70512 + ? (c >= 70502 && c <= 70508) + : c <= 70516))))))) + : (c <= 70730 || (c < 71296 + ? (c < 71040 + ? (c < 70784 + ? (c < 70750 + ? (c >= 70736 && c <= 70745) + : c <= 70753) + : (c <= 70853 || (c < 70864 + ? c == 70855 + : c <= 70873))) + : (c <= 71093 || (c < 71168 + ? (c < 71128 + ? (c >= 71096 && c <= 71104) + : c <= 71133) + : (c <= 71232 || (c < 71248 + ? c == 71236 + : c <= 71257))))) + : (c <= 71352 || (c < 71680 + ? (c < 71453 + ? (c < 71424 + ? (c >= 71360 && c <= 71369) + : c <= 71450) + : (c <= 71467 || (c < 71488 + ? (c >= 71472 && c <= 71481) + : c <= 71494))) + : (c <= 71738 || (c < 71945 + ? (c < 71935 + ? (c >= 71840 && c <= 71913) + : c <= 71942) + : (c <= 71945 || (c < 71957 + ? (c >= 71948 && c <= 71955) + : c <= 71958))))))))))))) + : (c <= 71989 || (c < 119995 + ? (c < 92784 + ? (c < 73023 + ? (c < 72704 + ? (c < 72163 + ? (c < 72096 + ? (c < 71995 + ? (c >= 71991 && c <= 71992) + : (c <= 72003 || (c >= 72016 && c <= 72025))) + : (c <= 72103 || (c < 72154 + ? (c >= 72106 && c <= 72151) + : c <= 72161))) + : (c <= 72164 || (c < 72272 + ? (c < 72263 + ? (c >= 72192 && c <= 72254) + : c <= 72263) + : (c <= 72345 || (c < 72368 + ? c == 72349 + : c <= 72440))))) + : (c <= 72712 || (c < 72873 + ? (c < 72784 + ? (c < 72760 + ? (c >= 72714 && c <= 72758) + : c <= 72768) + : (c <= 72793 || (c < 72850 + ? (c >= 72818 && c <= 72847) + : c <= 72871))) + : (c <= 72886 || (c < 72971 + ? (c < 72968 + ? (c >= 72960 && c <= 72966) + : c <= 72969) + : (c <= 73014 || (c < 73020 + ? c == 73018 + : c <= 73021))))))) + : (c <= 73031 || (c < 73552 + ? (c < 73107 + ? (c < 73063 + ? (c < 73056 + ? (c >= 73040 && c <= 73049) + : c <= 73061) + : (c <= 73064 || (c < 73104 + ? (c >= 73066 && c <= 73102) + : c <= 73105))) + : (c <= 73112 || (c < 73472 + ? (c < 73440 + ? (c >= 73120 && c <= 73129) + : c <= 73462) + : (c <= 73488 || (c < 73534 + ? (c >= 73490 && c <= 73530) + : c <= 73538))))) + : (c <= 73561 || (c < 77824 + ? (c < 74752 + ? (c < 73728 + ? c == 73648 + : c <= 74649) + : (c <= 74862 || (c < 77712 + ? (c >= 74880 && c <= 75075) + : c <= 77808))) + : (c <= 78895 || (c < 92160 + ? (c < 82944 + ? (c >= 78912 && c <= 78933) + : c <= 83526) + : (c <= 92728 || (c < 92768 + ? (c >= 92736 && c <= 92766) + : c <= 92777))))))))) + : (c <= 92862 || (c < 110928 + ? (c < 94095 + ? (c < 93008 + ? (c < 92912 + ? (c < 92880 + ? (c >= 92864 && c <= 92873) + : c <= 92909) + : (c <= 92916 || (c < 92992 + ? (c >= 92928 && c <= 92982) + : c <= 92995))) + : (c <= 93017 || (c < 93760 + ? (c < 93053 + ? (c >= 93027 && c <= 93047) + : c <= 93071) + : (c <= 93823 || (c < 94031 + ? (c >= 93952 && c <= 94026) + : c <= 94087))))) + : (c <= 94111 || (c < 101632 + ? (c < 94192 + ? (c < 94179 + ? (c >= 94176 && c <= 94177) + : c <= 94180) + : (c <= 94193 || (c < 100352 + ? (c >= 94208 && c <= 100343) + : c <= 101589))) + : (c <= 101640 || (c < 110589 + ? (c < 110581 + ? (c >= 110576 && c <= 110579) + : c <= 110587) + : (c <= 110590 || (c < 110898 + ? (c >= 110592 && c <= 110882) + : c <= 110898))))))) + : (c <= 110930 || (c < 119149 + ? (c < 113792 + ? (c < 110960 + ? (c < 110948 + ? c == 110933 + : c <= 110951) + : (c <= 111355 || (c < 113776 + ? (c >= 113664 && c <= 113770) + : c <= 113788))) + : (c <= 113800 || (c < 118528 + ? (c < 113821 + ? (c >= 113808 && c <= 113817) + : c <= 113822) + : (c <= 118573 || (c < 119141 + ? (c >= 118576 && c <= 118598) + : c <= 119145))))) + : (c <= 119154 || (c < 119894 + ? (c < 119210 + ? (c < 119173 + ? (c >= 119163 && c <= 119170) + : c <= 119179) + : (c <= 119213 || (c < 119808 + ? (c >= 119362 && c <= 119364) + : c <= 119892))) + : (c <= 119964 || (c < 119973 + ? (c < 119970 + ? (c >= 119966 && c <= 119967) + : c <= 119970) + : (c <= 119974 || (c < 119982 + ? (c >= 119977 && c <= 119980) + : c <= 119993))))))))))) + : (c <= 119995 || (c < 124912 + ? (c < 121403 + ? (c < 120514 + ? (c < 120123 + ? (c < 120077 + ? (c < 120005 + ? (c >= 119997 && c <= 120003) + : (c <= 120069 || (c >= 120071 && c <= 120074))) + : (c <= 120084 || (c < 120094 + ? (c >= 120086 && c <= 120092) + : c <= 120121))) + : (c <= 120126 || (c < 120138 + ? (c < 120134 + ? (c >= 120128 && c <= 120132) + : c <= 120134) + : (c <= 120144 || (c < 120488 + ? (c >= 120146 && c <= 120485) + : c <= 120512))))) + : (c <= 120538 || (c < 120688 + ? (c < 120598 + ? (c < 120572 + ? (c >= 120540 && c <= 120570) + : c <= 120596) + : (c <= 120628 || (c < 120656 + ? (c >= 120630 && c <= 120654) + : c <= 120686))) + : (c <= 120712 || (c < 120772 + ? (c < 120746 + ? (c >= 120714 && c <= 120744) + : c <= 120770) + : (c <= 120779 || (c < 121344 + ? (c >= 120782 && c <= 120831) + : c <= 121398))))))) + : (c <= 121452 || (c < 122928 + ? (c < 122661 + ? (c < 121499 + ? (c < 121476 + ? c == 121461 + : c <= 121476) + : (c <= 121503 || (c < 122624 + ? (c >= 121505 && c <= 121519) + : c <= 122654))) + : (c <= 122666 || (c < 122907 + ? (c < 122888 + ? (c >= 122880 && c <= 122886) + : c <= 122904) + : (c <= 122913 || (c < 122918 + ? (c >= 122915 && c <= 122916) + : c <= 122922))))) + : (c <= 122989 || (c < 123536 + ? (c < 123184 + ? (c < 123136 + ? c == 123023 + : c <= 123180) + : (c <= 123197 || (c < 123214 + ? (c >= 123200 && c <= 123209) + : c <= 123214))) + : (c <= 123566 || (c < 124896 + ? (c < 124112 + ? (c >= 123584 && c <= 123641) + : c <= 124153) + : (c <= 124902 || (c < 124909 + ? (c >= 124904 && c <= 124907) + : c <= 124910))))))))) + : (c <= 124926 || (c < 126557 + ? (c < 126521 + ? (c < 126469 + ? (c < 125184 + ? (c < 125136 + ? (c >= 124928 && c <= 125124) + : c <= 125142) + : (c <= 125259 || (c < 126464 + ? (c >= 125264 && c <= 125273) + : c <= 126467))) + : (c <= 126495 || (c < 126503 + ? (c < 126500 + ? (c >= 126497 && c <= 126498) + : c <= 126500) + : (c <= 126503 || (c < 126516 + ? (c >= 126505 && c <= 126514) + : c <= 126519))))) + : (c <= 126521 || (c < 126541 + ? (c < 126535 + ? (c < 126530 + ? c == 126523 + : c <= 126530) + : (c <= 126535 || (c < 126539 + ? c == 126537 + : c <= 126539))) + : (c <= 126543 || (c < 126551 + ? (c < 126548 + ? (c >= 126545 && c <= 126546) + : c <= 126548) + : (c <= 126551 || (c < 126555 + ? c == 126553 + : c <= 126555))))))) + : (c <= 126557 || (c < 126629 + ? (c < 126580 + ? (c < 126564 + ? (c < 126561 + ? c == 126559 + : c <= 126562) + : (c <= 126564 || (c < 126572 + ? (c >= 126567 && c <= 126570) + : c <= 126578))) + : (c <= 126583 || (c < 126592 + ? (c < 126590 + ? (c >= 126585 && c <= 126588) + : c <= 126590) + : (c <= 126601 || (c < 126625 + ? (c >= 126603 && c <= 126619) + : c <= 126627))))) + : (c <= 126633 || (c < 178208 + ? (c < 131072 + ? (c < 130032 + ? (c >= 126635 && c <= 126651) + : c <= 130041) + : (c <= 173791 || (c < 177984 + ? (c >= 173824 && c <= 177977) + : c <= 178205))) + : (c <= 183969 || (c < 196608 + ? (c < 194560 + ? (c >= 183984 && c <= 191456) + : c <= 195101) + : (c <= 201546 || (c < 917760 + ? (c >= 201552 && c <= 205743) + : c <= 917999))))))))))))))))); +} + +static inline bool sym_identifier_character_set_16(int32_t c) { + return (c < 43808 + ? (c < 3872 + ? (c < 2790 + ? (c < 2185 + ? (c < 1376 + ? (c < 886 + ? (c < 248 + ? (c < 186 + ? (c < 181 + ? c == 170 + : (c <= 181 || c == 183)) + : (c <= 186 || (c < 216 + ? (c >= 192 && c <= 214) + : c <= 246))) + : (c <= 705 || (c < 748 + ? (c < 736 + ? (c >= 710 && c <= 721) + : c <= 740) + : (c <= 748 || (c < 768 + ? c == 750 + : c <= 884))))) + : (c <= 887 || (c < 931 + ? (c < 902 + ? (c < 895 + ? (c >= 891 && c <= 893) + : c <= 895) + : (c <= 906 || (c < 910 + ? c == 908 + : c <= 929))) + : (c <= 1013 || (c < 1162 + ? (c < 1155 + ? (c >= 1015 && c <= 1153) + : c <= 1159) + : (c <= 1327 || (c < 1369 + ? (c >= 1329 && c <= 1366) + : c <= 1369))))))) + : (c <= 1416 || (c < 1759 + ? (c < 1488 + ? (c < 1473 + ? (c < 1471 + ? (c >= 1425 && c <= 1469) + : c <= 1471) + : (c <= 1474 || (c < 1479 + ? (c >= 1476 && c <= 1477) + : c <= 1479))) + : (c <= 1514 || (c < 1568 + ? (c < 1552 + ? (c >= 1519 && c <= 1522) + : c <= 1562) + : (c <= 1641 || (c < 1749 + ? (c >= 1646 && c <= 1747) + : c <= 1756))))) + : (c <= 1768 || (c < 2042 + ? (c < 1808 + ? (c < 1791 + ? (c >= 1770 && c <= 1788) + : c <= 1791) + : (c <= 1866 || (c < 1984 + ? (c >= 1869 && c <= 1969) + : c <= 2037))) + : (c <= 2042 || (c < 2112 + ? (c < 2048 + ? c == 2045 + : c <= 2093) + : (c <= 2139 || (c < 2160 + ? (c >= 2144 && c <= 2154) + : c <= 2183))))))))) + : (c <= 2190 || (c < 2602 + ? (c < 2503 + ? (c < 2447 + ? (c < 2406 + ? (c < 2275 + ? (c >= 2200 && c <= 2273) + : c <= 2403) + : (c <= 2415 || (c < 2437 + ? (c >= 2417 && c <= 2435) + : c <= 2444))) + : (c <= 2448 || (c < 2482 + ? (c < 2474 + ? (c >= 2451 && c <= 2472) + : c <= 2480) + : (c <= 2482 || (c < 2492 + ? (c >= 2486 && c <= 2489) + : c <= 2500))))) + : (c <= 2504 || (c < 2556 + ? (c < 2524 + ? (c < 2519 + ? (c >= 2507 && c <= 2510) + : c <= 2519) + : (c <= 2525 || (c < 2534 + ? (c >= 2527 && c <= 2531) + : c <= 2545))) + : (c <= 2556 || (c < 2565 + ? (c < 2561 + ? c == 2558 + : c <= 2563) + : (c <= 2570 || (c < 2579 + ? (c >= 2575 && c <= 2576) + : c <= 2600))))))) + : (c <= 2608 || (c < 2689 + ? (c < 2631 + ? (c < 2616 + ? (c < 2613 + ? (c >= 2610 && c <= 2611) + : c <= 2614) + : (c <= 2617 || (c < 2622 + ? c == 2620 + : c <= 2626))) + : (c <= 2632 || (c < 2649 + ? (c < 2641 + ? (c >= 2635 && c <= 2637) + : c <= 2641) + : (c <= 2652 || (c < 2662 + ? c == 2654 + : c <= 2677))))) + : (c <= 2691 || (c < 2741 + ? (c < 2707 + ? (c < 2703 + ? (c >= 2693 && c <= 2701) + : c <= 2705) + : (c <= 2728 || (c < 2738 + ? (c >= 2730 && c <= 2736) + : c <= 2739))) + : (c <= 2745 || (c < 2763 + ? (c < 2759 + ? (c >= 2748 && c <= 2757) + : c <= 2761) + : (c <= 2765 || (c < 2784 + ? c == 2768 + : c <= 2787))))))))))) + : (c <= 2799 || (c < 3218 + ? (c < 2979 + ? (c < 2901 + ? (c < 2858 + ? (c < 2821 + ? (c < 2817 + ? (c >= 2809 && c <= 2815) + : c <= 2819) + : (c <= 2828 || (c < 2835 + ? (c >= 2831 && c <= 2832) + : c <= 2856))) + : (c <= 2864 || (c < 2876 + ? (c < 2869 + ? (c >= 2866 && c <= 2867) + : c <= 2873) + : (c <= 2884 || (c < 2891 + ? (c >= 2887 && c <= 2888) + : c <= 2893))))) + : (c <= 2903 || (c < 2949 + ? (c < 2918 + ? (c < 2911 + ? (c >= 2908 && c <= 2909) + : c <= 2915) + : (c <= 2927 || (c < 2946 + ? c == 2929 + : c <= 2947))) + : (c <= 2954 || (c < 2969 + ? (c < 2962 + ? (c >= 2958 && c <= 2960) + : c <= 2965) + : (c <= 2970 || (c < 2974 + ? c == 2972 + : c <= 2975))))))) + : (c <= 2980 || (c < 3114 + ? (c < 3024 + ? (c < 3006 + ? (c < 2990 + ? (c >= 2984 && c <= 2986) + : c <= 3001) + : (c <= 3010 || (c < 3018 + ? (c >= 3014 && c <= 3016) + : c <= 3021))) + : (c <= 3024 || (c < 3072 + ? (c < 3046 + ? c == 3031 + : c <= 3055) + : (c <= 3084 || (c < 3090 + ? (c >= 3086 && c <= 3088) + : c <= 3112))))) + : (c <= 3129 || (c < 3165 + ? (c < 3146 + ? (c < 3142 + ? (c >= 3132 && c <= 3140) + : c <= 3144) + : (c <= 3149 || (c < 3160 + ? (c >= 3157 && c <= 3158) + : c <= 3162))) + : (c <= 3165 || (c < 3200 + ? (c < 3174 + ? (c >= 3168 && c <= 3171) + : c <= 3183) + : (c <= 3203 || (c < 3214 + ? (c >= 3205 && c <= 3212) + : c <= 3216))))))))) + : (c <= 3240 || (c < 3517 + ? (c < 3342 + ? (c < 3285 + ? (c < 3260 + ? (c < 3253 + ? (c >= 3242 && c <= 3251) + : c <= 3257) + : (c <= 3268 || (c < 3274 + ? (c >= 3270 && c <= 3272) + : c <= 3277))) + : (c <= 3286 || (c < 3302 + ? (c < 3296 + ? (c >= 3293 && c <= 3294) + : c <= 3299) + : (c <= 3311 || (c < 3328 + ? (c >= 3313 && c <= 3315) + : c <= 3340))))) + : (c <= 3344 || (c < 3430 + ? (c < 3402 + ? (c < 3398 + ? (c >= 3346 && c <= 3396) + : c <= 3400) + : (c <= 3406 || (c < 3423 + ? (c >= 3412 && c <= 3415) + : c <= 3427))) + : (c <= 3439 || (c < 3461 + ? (c < 3457 + ? (c >= 3450 && c <= 3455) + : c <= 3459) + : (c <= 3478 || (c < 3507 + ? (c >= 3482 && c <= 3505) + : c <= 3515))))))) + : (c <= 3517 || (c < 3716 + ? (c < 3558 + ? (c < 3535 + ? (c < 3530 + ? (c >= 3520 && c <= 3526) + : c <= 3530) + : (c <= 3540 || (c < 3544 + ? c == 3542 + : c <= 3551))) + : (c <= 3567 || (c < 3648 + ? (c < 3585 + ? (c >= 3570 && c <= 3571) + : c <= 3642) + : (c <= 3662 || (c < 3713 + ? (c >= 3664 && c <= 3673) + : c <= 3714))))) + : (c <= 3716 || (c < 3782 + ? (c < 3749 + ? (c < 3724 + ? (c >= 3718 && c <= 3722) + : c <= 3747) + : (c <= 3749 || (c < 3776 + ? (c >= 3751 && c <= 3773) + : c <= 3780))) + : (c <= 3782 || (c < 3804 + ? (c < 3792 + ? (c >= 3784 && c <= 3790) + : c <= 3801) + : (c <= 3807 || (c < 3864 + ? c == 3840 + : c <= 3865))))))))))))) + : (c <= 3881 || (c < 8130 + ? (c < 6103 + ? (c < 4792 + ? (c < 4295 + ? (c < 3974 + ? (c < 3902 + ? (c < 3895 + ? c == 3893 + : (c <= 3895 || c == 3897)) + : (c <= 3911 || (c < 3953 + ? (c >= 3913 && c <= 3948) + : c <= 3972))) + : (c <= 3991 || (c < 4096 + ? (c < 4038 + ? (c >= 3993 && c <= 4028) + : c <= 4038) + : (c <= 4169 || (c < 4256 + ? (c >= 4176 && c <= 4253) + : c <= 4293))))) + : (c <= 4295 || (c < 4696 + ? (c < 4348 + ? (c < 4304 + ? c == 4301 + : c <= 4346) + : (c <= 4680 || (c < 4688 + ? (c >= 4682 && c <= 4685) + : c <= 4694))) + : (c <= 4696 || (c < 4746 + ? (c < 4704 + ? (c >= 4698 && c <= 4701) + : c <= 4744) + : (c <= 4749 || (c < 4786 + ? (c >= 4752 && c <= 4784) + : c <= 4789))))))) + : (c <= 4798 || (c < 5121 + ? (c < 4888 + ? (c < 4808 + ? (c < 4802 + ? c == 4800 + : c <= 4805) + : (c <= 4822 || (c < 4882 + ? (c >= 4824 && c <= 4880) + : c <= 4885))) + : (c <= 4954 || (c < 4992 + ? (c < 4969 + ? (c >= 4957 && c <= 4959) + : c <= 4977) + : (c <= 5007 || (c < 5112 + ? (c >= 5024 && c <= 5109) + : c <= 5117))))) + : (c <= 5740 || (c < 5919 + ? (c < 5792 + ? (c < 5761 + ? (c >= 5743 && c <= 5759) + : c <= 5786) + : (c <= 5866 || (c < 5888 + ? (c >= 5870 && c <= 5880) + : c <= 5909))) + : (c <= 5940 || (c < 5998 + ? (c < 5984 + ? (c >= 5952 && c <= 5971) + : c <= 5996) + : (c <= 6000 || (c < 6016 + ? (c >= 6002 && c <= 6003) + : c <= 6099))))))))) + : (c <= 6103 || (c < 6912 + ? (c < 6512 + ? (c < 6272 + ? (c < 6155 + ? (c < 6112 + ? (c >= 6108 && c <= 6109) + : c <= 6121) + : (c <= 6157 || (c < 6176 + ? (c >= 6159 && c <= 6169) + : c <= 6264))) + : (c <= 6314 || (c < 6432 + ? (c < 6400 + ? (c >= 6320 && c <= 6389) + : c <= 6430) + : (c <= 6443 || (c < 6470 + ? (c >= 6448 && c <= 6459) + : c <= 6509))))) + : (c <= 6516 || (c < 6752 + ? (c < 6608 + ? (c < 6576 + ? (c >= 6528 && c <= 6571) + : c <= 6601) + : (c <= 6618 || (c < 6688 + ? (c >= 6656 && c <= 6683) + : c <= 6750))) + : (c <= 6780 || (c < 6823 + ? (c < 6800 + ? (c >= 6783 && c <= 6793) + : c <= 6809) + : (c <= 6823 || (c < 6847 + ? (c >= 6832 && c <= 6845) + : c <= 6862))))))) + : (c <= 6988 || (c < 7424 + ? (c < 7245 + ? (c < 7040 + ? (c < 7019 + ? (c >= 6992 && c <= 7001) + : c <= 7027) + : (c <= 7155 || (c < 7232 + ? (c >= 7168 && c <= 7223) + : c <= 7241))) + : (c <= 7293 || (c < 7357 + ? (c < 7312 + ? (c >= 7296 && c <= 7304) + : c <= 7354) + : (c <= 7359 || (c < 7380 + ? (c >= 7376 && c <= 7378) + : c <= 7418))))) + : (c <= 7957 || (c < 8027 + ? (c < 8008 + ? (c < 7968 + ? (c >= 7960 && c <= 7965) + : c <= 8005) + : (c <= 8013 || (c < 8025 + ? (c >= 8016 && c <= 8023) + : c <= 8025))) + : (c <= 8027 || (c < 8064 + ? (c < 8031 + ? c == 8029 + : c <= 8061) + : (c <= 8116 || (c < 8126 + ? (c >= 8118 && c <= 8124) + : c <= 8126))))))))))) + : (c <= 8132 || (c < 12344 + ? (c < 8508 + ? (c < 8400 + ? (c < 8182 + ? (c < 8150 + ? (c < 8144 + ? (c >= 8134 && c <= 8140) + : c <= 8147) + : (c <= 8155 || (c < 8178 + ? (c >= 8160 && c <= 8172) + : c <= 8180))) + : (c <= 8188 || (c < 8305 + ? (c < 8276 + ? (c >= 8255 && c <= 8256) + : c <= 8276) + : (c <= 8305 || (c < 8336 + ? c == 8319 + : c <= 8348))))) + : (c <= 8412 || (c < 8469 + ? (c < 8450 + ? (c < 8421 + ? c == 8417 + : c <= 8432) + : (c <= 8450 || (c < 8458 + ? c == 8455 + : c <= 8467))) + : (c <= 8469 || (c < 8486 + ? (c < 8484 + ? (c >= 8472 && c <= 8477) + : c <= 8484) + : (c <= 8486 || (c < 8490 + ? c == 8488 + : c <= 8505))))))) + : (c <= 8511 || (c < 11680 + ? (c < 11520 + ? (c < 8544 + ? (c < 8526 + ? (c >= 8517 && c <= 8521) + : c <= 8526) + : (c <= 8584 || (c < 11499 + ? (c >= 11264 && c <= 11492) + : c <= 11507))) + : (c <= 11557 || (c < 11568 + ? (c < 11565 + ? c == 11559 + : c <= 11565) + : (c <= 11623 || (c < 11647 + ? c == 11631 + : c <= 11670))))) + : (c <= 11686 || (c < 11728 + ? (c < 11704 + ? (c < 11696 + ? (c >= 11688 && c <= 11694) + : c <= 11702) + : (c <= 11710 || (c < 11720 + ? (c >= 11712 && c <= 11718) + : c <= 11726))) + : (c <= 11734 || (c < 12293 + ? (c < 11744 + ? (c >= 11736 && c <= 11742) + : c <= 11775) + : (c <= 12295 || (c < 12337 + ? (c >= 12321 && c <= 12335) + : c <= 12341))))))))) + : (c <= 12348 || (c < 42994 + ? (c < 42192 + ? (c < 12549 + ? (c < 12445 + ? (c < 12441 + ? (c >= 12353 && c <= 12438) + : c <= 12442) + : (c <= 12447 || (c < 12540 + ? (c >= 12449 && c <= 12538) + : c <= 12543))) + : (c <= 12591 || (c < 12784 + ? (c < 12704 + ? (c >= 12593 && c <= 12686) + : c <= 12735) + : (c <= 12799 || (c < 19968 + ? (c >= 13312 && c <= 19903) + : c <= 42124))))) + : (c <= 42237 || (c < 42775 + ? (c < 42560 + ? (c < 42512 + ? (c >= 42240 && c <= 42508) + : c <= 42539) + : (c <= 42607 || (c < 42623 + ? (c >= 42612 && c <= 42621) + : c <= 42737))) + : (c <= 42783 || (c < 42960 + ? (c < 42891 + ? (c >= 42786 && c <= 42888) + : c <= 42954) + : (c <= 42961 || (c < 42965 + ? c == 42963 + : c <= 42969))))))) + : (c <= 43047 || (c < 43488 + ? (c < 43259 + ? (c < 43136 + ? (c < 43072 + ? c == 43052 + : c <= 43123) + : (c <= 43205 || (c < 43232 + ? (c >= 43216 && c <= 43225) + : c <= 43255))) + : (c <= 43259 || (c < 43360 + ? (c < 43312 + ? (c >= 43261 && c <= 43309) + : c <= 43347) + : (c <= 43388 || (c < 43471 + ? (c >= 43392 && c <= 43456) + : c <= 43481))))) + : (c <= 43518 || (c < 43739 + ? (c < 43600 + ? (c < 43584 + ? (c >= 43520 && c <= 43574) + : c <= 43597) + : (c <= 43609 || (c < 43642 + ? (c >= 43616 && c <= 43638) + : c <= 43714))) + : (c <= 43741 || (c < 43777 + ? (c < 43762 + ? (c >= 43744 && c <= 43759) + : c <= 43766) + : (c <= 43782 || (c < 43793 + ? (c >= 43785 && c <= 43790) + : c <= 43798))))))))))))))) + : (c <= 43814 || (c < 71991 + ? (c < 67968 + ? (c < 65596 + ? (c < 65008 + ? (c < 64275 + ? (c < 44032 + ? (c < 43888 + ? (c < 43824 + ? (c >= 43816 && c <= 43822) + : (c <= 43866 || (c >= 43868 && c <= 43881))) + : (c <= 44010 || (c < 44016 + ? (c >= 44012 && c <= 44013) + : c <= 44025))) + : (c <= 55203 || (c < 63744 + ? (c < 55243 + ? (c >= 55216 && c <= 55238) + : c <= 55291) + : (c <= 64109 || (c < 64256 + ? (c >= 64112 && c <= 64217) + : c <= 64262))))) + : (c <= 64279 || (c < 64323 + ? (c < 64312 + ? (c < 64298 + ? (c >= 64285 && c <= 64296) + : c <= 64310) + : (c <= 64316 || (c < 64320 + ? c == 64318 + : c <= 64321))) + : (c <= 64324 || (c < 64612 + ? (c < 64467 + ? (c >= 64326 && c <= 64433) + : c <= 64605) + : (c <= 64829 || (c < 64914 + ? (c >= 64848 && c <= 64911) + : c <= 64967))))))) + : (c <= 65017 || (c < 65296 + ? (c < 65139 + ? (c < 65075 + ? (c < 65056 + ? (c >= 65024 && c <= 65039) + : c <= 65071) + : (c <= 65076 || (c < 65137 + ? (c >= 65101 && c <= 65103) + : c <= 65137))) + : (c <= 65139 || (c < 65147 + ? (c < 65145 + ? c == 65143 + : c <= 65145) + : (c <= 65147 || (c < 65151 + ? c == 65149 + : c <= 65276))))) + : (c <= 65305 || (c < 65482 + ? (c < 65345 + ? (c < 65343 + ? (c >= 65313 && c <= 65338) + : c <= 65343) + : (c <= 65370 || (c < 65474 + ? (c >= 65382 && c <= 65470) + : c <= 65479))) + : (c <= 65487 || (c < 65536 + ? (c < 65498 + ? (c >= 65490 && c <= 65495) + : c <= 65500) + : (c <= 65547 || (c < 65576 + ? (c >= 65549 && c <= 65574) + : c <= 65594))))))))) + : (c <= 65597 || (c < 66956 + ? (c < 66432 + ? (c < 66176 + ? (c < 65664 + ? (c < 65616 + ? (c >= 65599 && c <= 65613) + : c <= 65629) + : (c <= 65786 || (c < 66045 + ? (c >= 65856 && c <= 65908) + : c <= 66045))) + : (c <= 66204 || (c < 66304 + ? (c < 66272 + ? (c >= 66208 && c <= 66256) + : c <= 66272) + : (c <= 66335 || (c < 66384 + ? (c >= 66349 && c <= 66378) + : c <= 66426))))) + : (c <= 66461 || (c < 66736 + ? (c < 66513 + ? (c < 66504 + ? (c >= 66464 && c <= 66499) + : c <= 66511) + : (c <= 66517 || (c < 66720 + ? (c >= 66560 && c <= 66717) + : c <= 66729))) + : (c <= 66771 || (c < 66864 + ? (c < 66816 + ? (c >= 66776 && c <= 66811) + : c <= 66855) + : (c <= 66915 || (c < 66940 + ? (c >= 66928 && c <= 66938) + : c <= 66954))))))) + : (c <= 66962 || (c < 67584 + ? (c < 67072 + ? (c < 66979 + ? (c < 66967 + ? (c >= 66964 && c <= 66965) + : c <= 66977) + : (c <= 66993 || (c < 67003 + ? (c >= 66995 && c <= 67001) + : c <= 67004))) + : (c <= 67382 || (c < 67456 + ? (c < 67424 + ? (c >= 67392 && c <= 67413) + : c <= 67431) + : (c <= 67461 || (c < 67506 + ? (c >= 67463 && c <= 67504) + : c <= 67514))))) + : (c <= 67589 || (c < 67680 + ? (c < 67639 + ? (c < 67594 + ? c == 67592 + : c <= 67637) + : (c <= 67640 || (c < 67647 + ? c == 67644 + : c <= 67669))) + : (c <= 67702 || (c < 67828 + ? (c < 67808 + ? (c >= 67712 && c <= 67742) + : c <= 67826) + : (c <= 67829 || (c < 67872 + ? (c >= 67840 && c <= 67861) + : c <= 67897))))))))))) + : (c <= 68023 || (c < 70206 + ? (c < 69296 + ? (c < 68297 + ? (c < 68121 + ? (c < 68101 + ? (c < 68096 + ? (c >= 68030 && c <= 68031) + : c <= 68099) + : (c <= 68102 || (c < 68117 + ? (c >= 68108 && c <= 68115) + : c <= 68119))) + : (c <= 68149 || (c < 68192 + ? (c < 68159 + ? (c >= 68152 && c <= 68154) + : c <= 68159) + : (c <= 68220 || (c < 68288 + ? (c >= 68224 && c <= 68252) + : c <= 68295))))) + : (c <= 68326 || (c < 68736 + ? (c < 68448 + ? (c < 68416 + ? (c >= 68352 && c <= 68405) + : c <= 68437) + : (c <= 68466 || (c < 68608 + ? (c >= 68480 && c <= 68497) + : c <= 68680))) + : (c <= 68786 || (c < 68912 + ? (c < 68864 + ? (c >= 68800 && c <= 68850) + : c <= 68903) + : (c <= 68921 || (c < 69291 + ? (c >= 69248 && c <= 69289) + : c <= 69292))))))) + : (c <= 69297 || (c < 69872 + ? (c < 69600 + ? (c < 69424 + ? (c < 69415 + ? (c >= 69373 && c <= 69404) + : c <= 69415) + : (c <= 69456 || (c < 69552 + ? (c >= 69488 && c <= 69509) + : c <= 69572))) + : (c <= 69622 || (c < 69759 + ? (c < 69734 + ? (c >= 69632 && c <= 69702) + : c <= 69749) + : (c <= 69818 || (c < 69840 + ? c == 69826 + : c <= 69864))))) + : (c <= 69881 || (c < 70016 + ? (c < 69956 + ? (c < 69942 + ? (c >= 69888 && c <= 69940) + : c <= 69951) + : (c <= 69959 || (c < 70006 + ? (c >= 69968 && c <= 70003) + : c <= 70006))) + : (c <= 70084 || (c < 70108 + ? (c < 70094 + ? (c >= 70089 && c <= 70092) + : c <= 70106) + : (c <= 70108 || (c < 70163 + ? (c >= 70144 && c <= 70161) + : c <= 70199))))))))) + : (c <= 70209 || (c < 70736 + ? (c < 70442 + ? (c < 70320 + ? (c < 70282 + ? (c < 70280 + ? (c >= 70272 && c <= 70278) + : c <= 70280) + : (c <= 70285 || (c < 70303 + ? (c >= 70287 && c <= 70301) + : c <= 70312))) + : (c <= 70378 || (c < 70405 + ? (c < 70400 + ? (c >= 70384 && c <= 70393) + : c <= 70403) + : (c <= 70412 || (c < 70419 + ? (c >= 70415 && c <= 70416) + : c <= 70440))))) + : (c <= 70448 || (c < 70480 + ? (c < 70459 + ? (c < 70453 + ? (c >= 70450 && c <= 70451) + : c <= 70457) + : (c <= 70468 || (c < 70475 + ? (c >= 70471 && c <= 70472) + : c <= 70477))) + : (c <= 70480 || (c < 70502 + ? (c < 70493 + ? c == 70487 + : c <= 70499) + : (c <= 70508 || (c < 70656 + ? (c >= 70512 && c <= 70516) + : c <= 70730))))))) + : (c <= 70745 || (c < 71360 + ? (c < 71096 + ? (c < 70855 + ? (c < 70784 + ? (c >= 70750 && c <= 70753) + : c <= 70853) + : (c <= 70855 || (c < 71040 + ? (c >= 70864 && c <= 70873) + : c <= 71093))) + : (c <= 71104 || (c < 71236 + ? (c < 71168 + ? (c >= 71128 && c <= 71133) + : c <= 71232) + : (c <= 71236 || (c < 71296 + ? (c >= 71248 && c <= 71257) + : c <= 71352))))) + : (c <= 71369 || (c < 71840 + ? (c < 71472 + ? (c < 71453 + ? (c >= 71424 && c <= 71450) + : c <= 71467) + : (c <= 71481 || (c < 71680 + ? (c >= 71488 && c <= 71494) + : c <= 71738))) + : (c <= 71913 || (c < 71948 + ? (c < 71945 + ? (c >= 71935 && c <= 71942) + : c <= 71945) + : (c <= 71955 || (c < 71960 + ? (c >= 71957 && c <= 71958) + : c <= 71989))))))))))))) + : (c <= 71992 || (c < 119997 + ? (c < 92864 + ? (c < 73040 + ? (c < 72714 + ? (c < 72192 + ? (c < 72106 + ? (c < 72016 + ? (c >= 71995 && c <= 72003) + : (c <= 72025 || (c >= 72096 && c <= 72103))) + : (c <= 72151 || (c < 72163 + ? (c >= 72154 && c <= 72161) + : c <= 72164))) + : (c <= 72254 || (c < 72349 + ? (c < 72272 + ? c == 72263 + : c <= 72345) + : (c <= 72349 || (c < 72704 + ? (c >= 72368 && c <= 72440) + : c <= 72712))))) + : (c <= 72758 || (c < 72960 + ? (c < 72818 + ? (c < 72784 + ? (c >= 72760 && c <= 72768) + : c <= 72793) + : (c <= 72847 || (c < 72873 + ? (c >= 72850 && c <= 72871) + : c <= 72886))) + : (c <= 72966 || (c < 73018 + ? (c < 72971 + ? (c >= 72968 && c <= 72969) + : c <= 73014) + : (c <= 73018 || (c < 73023 + ? (c >= 73020 && c <= 73021) + : c <= 73031))))))) + : (c <= 73049 || (c < 73648 + ? (c < 73120 + ? (c < 73066 + ? (c < 73063 + ? (c >= 73056 && c <= 73061) + : c <= 73064) + : (c <= 73102 || (c < 73107 + ? (c >= 73104 && c <= 73105) + : c <= 73112))) + : (c <= 73129 || (c < 73490 + ? (c < 73472 + ? (c >= 73440 && c <= 73462) + : c <= 73488) + : (c <= 73530 || (c < 73552 + ? (c >= 73534 && c <= 73538) + : c <= 73561))))) + : (c <= 73648 || (c < 78912 + ? (c < 74880 + ? (c < 74752 + ? (c >= 73728 && c <= 74649) + : c <= 74862) + : (c <= 75075 || (c < 77824 + ? (c >= 77712 && c <= 77808) + : c <= 78895))) + : (c <= 78933 || (c < 92736 + ? (c < 92160 + ? (c >= 82944 && c <= 83526) + : c <= 92728) + : (c <= 92766 || (c < 92784 + ? (c >= 92768 && c <= 92777) + : c <= 92862))))))))) + : (c <= 92873 || (c < 110933 + ? (c < 94176 + ? (c < 93027 + ? (c < 92928 + ? (c < 92912 + ? (c >= 92880 && c <= 92909) + : c <= 92916) + : (c <= 92982 || (c < 93008 + ? (c >= 92992 && c <= 92995) + : c <= 93017))) + : (c <= 93047 || (c < 93952 + ? (c < 93760 + ? (c >= 93053 && c <= 93071) + : c <= 93823) + : (c <= 94026 || (c < 94095 + ? (c >= 94031 && c <= 94087) + : c <= 94111))))) + : (c <= 94177 || (c < 110576 + ? (c < 94208 + ? (c < 94192 + ? (c >= 94179 && c <= 94180) + : c <= 94193) + : (c <= 100343 || (c < 101632 + ? (c >= 100352 && c <= 101589) + : c <= 101640))) + : (c <= 110579 || (c < 110592 + ? (c < 110589 + ? (c >= 110581 && c <= 110587) + : c <= 110590) + : (c <= 110882 || (c < 110928 + ? c == 110898 + : c <= 110930))))))) + : (c <= 110933 || (c < 119163 + ? (c < 113808 + ? (c < 113664 + ? (c < 110960 + ? (c >= 110948 && c <= 110951) + : c <= 111355) + : (c <= 113770 || (c < 113792 + ? (c >= 113776 && c <= 113788) + : c <= 113800))) + : (c <= 113817 || (c < 118576 + ? (c < 118528 + ? (c >= 113821 && c <= 113822) + : c <= 118573) + : (c <= 118598 || (c < 119149 + ? (c >= 119141 && c <= 119145) + : c <= 119154))))) + : (c <= 119170 || (c < 119966 + ? (c < 119362 + ? (c < 119210 + ? (c >= 119173 && c <= 119179) + : c <= 119213) + : (c <= 119364 || (c < 119894 + ? (c >= 119808 && c <= 119892) + : c <= 119964))) + : (c <= 119967 || (c < 119977 + ? (c < 119973 + ? c == 119970 + : c <= 119974) + : (c <= 119980 || (c < 119995 + ? (c >= 119982 && c <= 119993) + : c <= 119995))))))))))) + : (c <= 120003 || (c < 124912 + ? (c < 121403 + ? (c < 120514 + ? (c < 120123 + ? (c < 120077 + ? (c < 120071 + ? (c >= 120005 && c <= 120069) + : c <= 120074) + : (c <= 120084 || (c < 120094 + ? (c >= 120086 && c <= 120092) + : c <= 120121))) + : (c <= 120126 || (c < 120138 + ? (c < 120134 + ? (c >= 120128 && c <= 120132) + : c <= 120134) + : (c <= 120144 || (c < 120488 + ? (c >= 120146 && c <= 120485) + : c <= 120512))))) + : (c <= 120538 || (c < 120688 + ? (c < 120598 + ? (c < 120572 + ? (c >= 120540 && c <= 120570) + : c <= 120596) + : (c <= 120628 || (c < 120656 + ? (c >= 120630 && c <= 120654) + : c <= 120686))) + : (c <= 120712 || (c < 120772 + ? (c < 120746 + ? (c >= 120714 && c <= 120744) + : c <= 120770) + : (c <= 120779 || (c < 121344 + ? (c >= 120782 && c <= 120831) + : c <= 121398))))))) + : (c <= 121452 || (c < 122928 + ? (c < 122661 + ? (c < 121499 + ? (c < 121476 + ? c == 121461 + : c <= 121476) + : (c <= 121503 || (c < 122624 + ? (c >= 121505 && c <= 121519) + : c <= 122654))) + : (c <= 122666 || (c < 122907 + ? (c < 122888 + ? (c >= 122880 && c <= 122886) + : c <= 122904) + : (c <= 122913 || (c < 122918 + ? (c >= 122915 && c <= 122916) + : c <= 122922))))) + : (c <= 122989 || (c < 123536 + ? (c < 123184 + ? (c < 123136 + ? c == 123023 + : c <= 123180) + : (c <= 123197 || (c < 123214 + ? (c >= 123200 && c <= 123209) + : c <= 123214))) + : (c <= 123566 || (c < 124896 + ? (c < 124112 + ? (c >= 123584 && c <= 123641) + : c <= 124153) + : (c <= 124902 || (c < 124909 + ? (c >= 124904 && c <= 124907) + : c <= 124910))))))))) + : (c <= 124926 || (c < 126557 + ? (c < 126521 + ? (c < 126469 + ? (c < 125184 + ? (c < 125136 + ? (c >= 124928 && c <= 125124) + : c <= 125142) + : (c <= 125259 || (c < 126464 + ? (c >= 125264 && c <= 125273) + : c <= 126467))) + : (c <= 126495 || (c < 126503 + ? (c < 126500 + ? (c >= 126497 && c <= 126498) + : c <= 126500) + : (c <= 126503 || (c < 126516 + ? (c >= 126505 && c <= 126514) + : c <= 126519))))) + : (c <= 126521 || (c < 126541 + ? (c < 126535 + ? (c < 126530 + ? c == 126523 + : c <= 126530) + : (c <= 126535 || (c < 126539 + ? c == 126537 + : c <= 126539))) + : (c <= 126543 || (c < 126551 + ? (c < 126548 + ? (c >= 126545 && c <= 126546) + : c <= 126548) + : (c <= 126551 || (c < 126555 + ? c == 126553 + : c <= 126555))))))) + : (c <= 126557 || (c < 126629 + ? (c < 126580 + ? (c < 126564 + ? (c < 126561 + ? c == 126559 + : c <= 126562) + : (c <= 126564 || (c < 126572 + ? (c >= 126567 && c <= 126570) + : c <= 126578))) + : (c <= 126583 || (c < 126592 + ? (c < 126590 + ? (c >= 126585 && c <= 126588) + : c <= 126590) + : (c <= 126601 || (c < 126625 + ? (c >= 126603 && c <= 126619) + : c <= 126627))))) + : (c <= 126633 || (c < 178208 + ? (c < 131072 + ? (c < 130032 + ? (c >= 126635 && c <= 126651) + : c <= 130041) + : (c <= 173791 || (c < 177984 + ? (c >= 173824 && c <= 177977) + : c <= 178205))) + : (c <= 183969 || (c < 196608 + ? (c < 194560 + ? (c >= 183984 && c <= 191456) + : c <= 195101) + : (c <= 201546 || (c < 917760 + ? (c >= 201552 && c <= 205743) + : c <= 917999))))))))))))))))); +} + static bool ts_lex(TSLexer *lexer, TSStateId state) { START_LEXER(); eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(265); - if (lookahead == '!') ADVANCE(321); - if (lookahead == '"') ADVANCE(439); - if (lookahead == '#') ADVANCE(232); - if (lookahead == '%') ADVANCE(345); - if (lookahead == '&') ADVANCE(355); - if (lookahead == '\'') ADVANCE(430); - if (lookahead == '(') ADVANCE(270); - if (lookahead == ')') ADVANCE(273); - if (lookahead == '*') ADVANCE(341); - if (lookahead == '+') ADVANCE(335); - if (lookahead == ',') ADVANCE(272); - if (lookahead == '-') ADVANCE(324); - if (lookahead == '.') ADVANCE(405); - if (lookahead == '/') ADVANCE(343); - if (lookahead == '0') ADVANCE(415); - if (lookahead == ':') ADVANCE(389); - if (lookahead == ';') ADVANCE(373); - if (lookahead == '<') ADVANCE(365); - if (lookahead == '=') ADVANCE(385); - if (lookahead == '>') ADVANCE(531); - if (lookahead == '?') ADVANCE(390); - if (lookahead == 'F') ADVANCE(479); - if (lookahead == 'L') ADVANCE(453); - if (lookahead == 'R') ADVANCE(456); - if (lookahead == 'T') ADVANCE(483); - if (lookahead == 'U') ADVANCE(457); - if (lookahead == '[') ADVANCE(381); - if (lookahead == '\\') SKIP(260) - if (lookahead == ']') ADVANCE(383); - if (lookahead == '^') ADVANCE(352); - if (lookahead == 'b') ADVANCE(512); - if (lookahead == 'c') ADVANCE(497); - if (lookahead == 'd') ADVANCE(508); - if (lookahead == 'f') ADVANCE(487); - if (lookahead == 'i') ADVANCE(506); - if (lookahead == 's') ADVANCE(498); - if (lookahead == 't') ADVANCE(515); - if (lookahead == 'u') ADVANCE(460); - if (lookahead == 'v') ADVANCE(511); - if (lookahead == '{') ADVANCE(377); - if (lookahead == '|') ADVANCE(349); - if (lookahead == '}') ADVANCE(378); - if (lookahead == '~') ADVANCE(322); + if (eof) ADVANCE(284); + if (lookahead == '!') ADVANCE(350); + if (lookahead == '"') ADVANCE(468); + if (lookahead == '#') ADVANCE(245); + if (lookahead == '%') ADVANCE(374); + if (lookahead == '&') ADVANCE(384); + if (lookahead == '\'') ADVANCE(459); + if (lookahead == '(') ADVANCE(289); + if (lookahead == ')') ADVANCE(292); + if (lookahead == '*') ADVANCE(370); + if (lookahead == '+') ADVANCE(364); + if (lookahead == ',') ADVANCE(291); + if (lookahead == '-') ADVANCE(353); + if (lookahead == '.') ADVANCE(434); + if (lookahead == '/') ADVANCE(372); + if (lookahead == '0') ADVANCE(443); + if (lookahead == ':') ADVANCE(418); + if (lookahead == ';') ADVANCE(402); + if (lookahead == '<') ADVANCE(394); + if (lookahead == '=') ADVANCE(414); + if (lookahead == '>') ADVANCE(579); + if (lookahead == '?') ADVANCE(419); + if (lookahead == 'F') ADVANCE(508); + if (lookahead == 'L') ADVANCE(482); + if (lookahead == 'R') ADVANCE(485); + if (lookahead == 'T') ADVANCE(512); + if (lookahead == 'U') ADVANCE(486); + if (lookahead == '[') ADVANCE(410); + if (lookahead == '\\') ADVANCE(2); + if (lookahead == ']') ADVANCE(412); + if (lookahead == '^') ADVANCE(381); + if (sym_identifier_character_set_1(lookahead)) ADVANCE(571); + if (lookahead == 'b') ADVANCE(554); + if (lookahead == 'c') ADVANCE(533); + if (lookahead == 'd') ADVANCE(550); + if (lookahead == 'f') ADVANCE(517); + if (lookahead == 'i') ADVANCE(547); + if (lookahead == 'm') ADVANCE(519); + if (lookahead == 'n') ADVANCE(567); + if (lookahead == 'p') ADVANCE(564); + if (lookahead == 's') ADVANCE(534); + if (lookahead == 't') ADVANCE(559); + if (lookahead == 'u') ADVANCE(489); + if (lookahead == 'v') ADVANCE(551); + if (lookahead == '{') ADVANCE(406); + if (lookahead == '|') ADVANCE(378); + if (lookahead == '}') ADVANCE(407); + if (lookahead == '~') ADVANCE(351); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(263) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(417); - if (('A' <= lookahead && lookahead <= '_') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(524); + lookahead == ' ') SKIP(282) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(445); END_STATE(); case 1: - if (lookahead == '\n') SKIP(140) + if (lookahead == '\n') SKIP(141) END_STATE(); case 2: - if (lookahead == '\n') SKIP(140) + if (lookahead == '\n') SKIP(141) if (lookahead == '\r') SKIP(1) + if (lookahead == 'U') ADVANCE(279); + if (lookahead == 'u') ADVANCE(271); END_STATE(); case 3: - if (lookahead == '\n') SKIP(142) + if (lookahead == '\n') SKIP(150) END_STATE(); case 4: - if (lookahead == '\n') SKIP(142) + if (lookahead == '\n') SKIP(150) if (lookahead == '\r') SKIP(3) + if (lookahead == 'U') ADVANCE(279); + if (lookahead == 'u') ADVANCE(271); END_STATE(); case 5: - if (lookahead == '\n') SKIP(141) + if (lookahead == '\n') SKIP(149) END_STATE(); case 6: - if (lookahead == '\n') SKIP(141) + if (lookahead == '\n') SKIP(149) if (lookahead == '\r') SKIP(5) + if (lookahead == 'U') ADVANCE(279); + if (lookahead == 'u') ADVANCE(271); END_STATE(); case 7: - if (lookahead == '\n') SKIP(143) + if (lookahead == '\n') SKIP(153) END_STATE(); case 8: - if (lookahead == '\n') SKIP(143) + if (lookahead == '\n') SKIP(153) if (lookahead == '\r') SKIP(7) + if (lookahead == 'U') ADVANCE(279); + if (lookahead == 'u') ADVANCE(271); END_STATE(); case 9: - if (lookahead == '\n') SKIP(134) + if (lookahead == '\n') SKIP(151) END_STATE(); case 10: - if (lookahead == '\n') SKIP(134) + if (lookahead == '\n') SKIP(151) if (lookahead == '\r') SKIP(9) + if (lookahead == 'U') ADVANCE(279); + if (lookahead == 'u') ADVANCE(271); END_STATE(); case 11: - if (lookahead == '\n') SKIP(133) + if (lookahead == '\n') SKIP(154) END_STATE(); case 12: - if (lookahead == '\n') SKIP(133) + if (lookahead == '\n') SKIP(154) if (lookahead == '\r') SKIP(11) + if (lookahead == 'U') ADVANCE(279); + if (lookahead == 'u') ADVANCE(271); END_STATE(); case 13: - if (lookahead == '\n') SKIP(135) + if (lookahead == '\n') SKIP(143) END_STATE(); case 14: - if (lookahead == '\n') SKIP(135) + if (lookahead == '\n') SKIP(143) if (lookahead == '\r') SKIP(13) + if (lookahead == 'U') ADVANCE(279); + if (lookahead == 'u') ADVANCE(271); END_STATE(); case 15: - if (lookahead == '\n') SKIP(197) + if (lookahead == '\n') SKIP(142) END_STATE(); case 16: - if (lookahead == '\n') SKIP(197) + if (lookahead == '\n') SKIP(142) if (lookahead == '\r') SKIP(15) + if (lookahead == 'U') ADVANCE(279); + if (lookahead == 'u') ADVANCE(271); END_STATE(); case 17: - if (lookahead == '\n') SKIP(156) + if (lookahead == '\n') SKIP(144) END_STATE(); case 18: - if (lookahead == '\n') SKIP(156) + if (lookahead == '\n') SKIP(144) if (lookahead == '\r') SKIP(17) + if (lookahead == 'U') ADVANCE(279); + if (lookahead == 'u') ADVANCE(271); END_STATE(); case 19: - if (lookahead == '\n') SKIP(198) + if (lookahead == '\n') SKIP(155) END_STATE(); case 20: - if (lookahead == '\n') SKIP(198) + if (lookahead == '\n') SKIP(155) if (lookahead == '\r') SKIP(19) + if (lookahead == 'U') ADVANCE(279); + if (lookahead == 'u') ADVANCE(271); END_STATE(); case 21: - if (lookahead == '\n') SKIP(144) + if (lookahead == '\n') SKIP(209) END_STATE(); case 22: - if (lookahead == '\n') SKIP(144) + if (lookahead == '\n') SKIP(209) if (lookahead == '\r') SKIP(21) + if (lookahead == 'U') ADVANCE(279); + if (lookahead == 'u') ADVANCE(271); END_STATE(); case 23: - if (lookahead == '\n') SKIP(138) + if (lookahead == '\n') SKIP(167) END_STATE(); case 24: - if (lookahead == '\n') SKIP(138) + if (lookahead == '\n') SKIP(167) if (lookahead == '\r') SKIP(23) + if (lookahead == 'U') ADVANCE(279); + if (lookahead == 'u') ADVANCE(271); END_STATE(); case 25: - if (lookahead == '\n') SKIP(165) + if (lookahead == '\n') SKIP(210) END_STATE(); case 26: - if (lookahead == '\n') SKIP(165) + if (lookahead == '\n') SKIP(210) if (lookahead == '\r') SKIP(25) + if (lookahead == 'U') ADVANCE(279); + if (lookahead == 'u') ADVANCE(271); END_STATE(); case 27: - if (lookahead == '\n') SKIP(158) + if (lookahead == '\n') SKIP(208) END_STATE(); case 28: - if (lookahead == '\n') SKIP(158) + if (lookahead == '\n') SKIP(208) if (lookahead == '\r') SKIP(27) + if (lookahead == 'U') ADVANCE(279); + if (lookahead == 'u') ADVANCE(271); END_STATE(); case 29: - if (lookahead == '\n') SKIP(157) + if (lookahead == '\n') SKIP(147) END_STATE(); case 30: - if (lookahead == '\n') SKIP(157) + if (lookahead == '\n') SKIP(147) if (lookahead == '\r') SKIP(29) + if (lookahead == 'U') ADVANCE(279); + if (lookahead == 'u') ADVANCE(271); END_STATE(); case 31: - if (lookahead == '\n') SKIP(167) + if (lookahead == '\n') SKIP(176) END_STATE(); case 32: - if (lookahead == '\n') SKIP(167) + if (lookahead == '\n') SKIP(176) if (lookahead == '\r') SKIP(31) + if (lookahead == 'U') ADVANCE(279); + if (lookahead == 'u') ADVANCE(271); END_STATE(); case 33: if (lookahead == '\n') SKIP(169) @@ -10803,5047 +26770,5453 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 34: if (lookahead == '\n') SKIP(169) if (lookahead == '\r') SKIP(33) + if (lookahead == 'U') ADVANCE(279); + if (lookahead == 'u') ADVANCE(271); END_STATE(); case 35: - if (lookahead == '\n') SKIP(170) + if (lookahead == '\n') SKIP(168) END_STATE(); case 36: - if (lookahead == '\n') SKIP(170) + if (lookahead == '\n') SKIP(168) if (lookahead == '\r') SKIP(35) + if (lookahead == 'U') ADVANCE(279); + if (lookahead == 'u') ADVANCE(271); END_STATE(); case 37: - if (lookahead == '\n') SKIP(161) + if (lookahead == '\n') SKIP(178) END_STATE(); case 38: - if (lookahead == '\n') SKIP(161) + if (lookahead == '\n') SKIP(178) if (lookahead == '\r') SKIP(37) + if (lookahead == 'U') ADVANCE(279); + if (lookahead == 'u') ADVANCE(271); END_STATE(); case 39: - if (lookahead == '\n') SKIP(176) + if (lookahead == '\n') SKIP(160) END_STATE(); case 40: - if (lookahead == '\n') SKIP(176) + if (lookahead == '\n') SKIP(160) if (lookahead == '\r') SKIP(39) + if (lookahead == 'U') ADVANCE(279); + if (lookahead == 'u') ADVANCE(271); END_STATE(); case 41: - if (lookahead == '\n') SKIP(174) + if (lookahead == '\n') SKIP(158) END_STATE(); case 42: - if (lookahead == '\n') SKIP(174) + if (lookahead == '\n') SKIP(158) if (lookahead == '\r') SKIP(41) + if (lookahead == 'U') ADVANCE(279); + if (lookahead == 'u') ADVANCE(271); END_STATE(); case 43: - if (lookahead == '\n') SKIP(168) + if (lookahead == '\n') SKIP(196) END_STATE(); case 44: - if (lookahead == '\n') SKIP(168) + if (lookahead == '\n') SKIP(196) if (lookahead == '\r') SKIP(43) + if (lookahead == 'U') ADVANCE(279); + if (lookahead == 'u') ADVANCE(271); END_STATE(); case 45: - if (lookahead == '\n') SKIP(139) + if (lookahead == '\n') SKIP(162) END_STATE(); case 46: - if (lookahead == '\n') SKIP(139) + if (lookahead == '\n') SKIP(162) if (lookahead == '\r') SKIP(45) + if (lookahead == 'U') ADVANCE(279); + if (lookahead == 'u') ADVANCE(271); END_STATE(); case 47: - if (lookahead == '\n') SKIP(160) + if (lookahead == '\n') SKIP(172) END_STATE(); case 48: - if (lookahead == '\n') SKIP(160) + if (lookahead == '\n') SKIP(172) if (lookahead == '\r') SKIP(47) + if (lookahead == 'U') ADVANCE(279); + if (lookahead == 'u') ADVANCE(271); END_STATE(); case 49: - if (lookahead == '\n') SKIP(175) + if (lookahead == '\n') SKIP(181) END_STATE(); case 50: - if (lookahead == '\n') SKIP(175) + if (lookahead == '\n') SKIP(181) if (lookahead == '\r') SKIP(49) + if (lookahead == 'U') ADVANCE(279); + if (lookahead == 'u') ADVANCE(271); END_STATE(); case 51: - if (lookahead == '\n') SKIP(179) + if (lookahead == '\n') SKIP(201) END_STATE(); case 52: - if (lookahead == '\n') SKIP(179) + if (lookahead == '\n') SKIP(201) if (lookahead == '\r') SKIP(51) + if (lookahead == 'U') ADVANCE(279); + if (lookahead == 'u') ADVANCE(271); END_STATE(); case 53: - if (lookahead == '\n') SKIP(193) + if (lookahead == '\n') SKIP(185) END_STATE(); case 54: - if (lookahead == '\n') SKIP(193) + if (lookahead == '\n') SKIP(185) if (lookahead == '\r') SKIP(53) + if (lookahead == 'U') ADVANCE(279); + if (lookahead == 'u') ADVANCE(271); END_STATE(); case 55: - if (lookahead == '\n') SKIP(199) + if (lookahead == '\n') SKIP(179) END_STATE(); case 56: - if (lookahead == '\n') SKIP(199) + if (lookahead == '\n') SKIP(179) if (lookahead == '\r') SKIP(55) + if (lookahead == 'U') ADVANCE(279); + if (lookahead == 'u') ADVANCE(271); END_STATE(); case 57: - if (lookahead == '\n') SKIP(201) + if (lookahead == '\n') SKIP(148) END_STATE(); case 58: - if (lookahead == '\n') SKIP(201) + if (lookahead == '\n') SKIP(148) if (lookahead == '\r') SKIP(57) + if (lookahead == 'U') ADVANCE(279); + if (lookahead == 'u') ADVANCE(271); END_STATE(); case 59: - if (lookahead == '\n') SKIP(202) + if (lookahead == '\n') SKIP(183) END_STATE(); case 60: - if (lookahead == '\n') SKIP(202) + if (lookahead == '\n') SKIP(183) if (lookahead == '\r') SKIP(59) + if (lookahead == 'U') ADVANCE(279); + if (lookahead == 'u') ADVANCE(271); END_STATE(); case 61: - if (lookahead == '\n') SKIP(200) + if (lookahead == '\n') SKIP(171) END_STATE(); case 62: - if (lookahead == '\n') SKIP(200) + if (lookahead == '\n') SKIP(171) if (lookahead == '\r') SKIP(61) + if (lookahead == 'U') ADVANCE(279); + if (lookahead == 'u') ADVANCE(271); END_STATE(); case 63: - if (lookahead == '\n') SKIP(180) + if (lookahead == '\n') SKIP(164) END_STATE(); case 64: - if (lookahead == '\n') SKIP(180) + if (lookahead == '\n') SKIP(164) if (lookahead == '\r') SKIP(63) + if (lookahead == 'U') ADVANCE(279); + if (lookahead == 'u') ADVANCE(271); END_STATE(); case 65: - if (lookahead == '\n') SKIP(204) + if (lookahead == '\n') SKIP(186) END_STATE(); case 66: - if (lookahead == '\n') SKIP(204) + if (lookahead == '\n') SKIP(186) if (lookahead == '\r') SKIP(65) + if (lookahead == 'U') ADVANCE(279); + if (lookahead == 'u') ADVANCE(271); END_STATE(); case 67: - if (lookahead == '\n') SKIP(203) + if (lookahead == '\n') SKIP(204) END_STATE(); case 68: - if (lookahead == '\n') SKIP(203) + if (lookahead == '\n') SKIP(204) if (lookahead == '\r') SKIP(67) + if (lookahead == 'U') ADVANCE(279); + if (lookahead == 'u') ADVANCE(271); END_STATE(); case 69: - if (lookahead == '\n') SKIP(206) + if (lookahead == '\n') SKIP(211) END_STATE(); case 70: - if (lookahead == '\n') SKIP(206) + if (lookahead == '\n') SKIP(211) if (lookahead == '\r') SKIP(69) + if (lookahead == 'U') ADVANCE(279); + if (lookahead == 'u') ADVANCE(271); END_STATE(); case 71: - if (lookahead == '\n') SKIP(145) + if (lookahead == '\n') SKIP(190) END_STATE(); case 72: - if (lookahead == '\n') SKIP(145) + if (lookahead == '\n') SKIP(190) if (lookahead == '\r') SKIP(71) + if (lookahead == 'U') ADVANCE(279); + if (lookahead == 'u') ADVANCE(271); END_STATE(); case 73: - if (lookahead == '\n') SKIP(75) + if (lookahead == '\n') SKIP(215) END_STATE(); case 74: - if (lookahead == '\n') SKIP(75) + if (lookahead == '\n') SKIP(215) if (lookahead == '\r') SKIP(73) + if (lookahead == 'U') ADVANCE(279); + if (lookahead == 'u') ADVANCE(271); END_STATE(); case 75: - if (lookahead == '\n') ADVANCE(267); - if (lookahead == '!') ADVANCE(221); - if (lookahead == '%') ADVANCE(344); - if (lookahead == '&') ADVANCE(354); - if (lookahead == '(') ADVANCE(319); - if (lookahead == '*') ADVANCE(340); - if (lookahead == '+') ADVANCE(333); - if (lookahead == '-') ADVANCE(323); - if (lookahead == '/') ADVANCE(342); - if (lookahead == '<') ADVANCE(368); - if (lookahead == '=') ADVANCE(222); - if (lookahead == '>') ADVANCE(359); - if (lookahead == '\\') SKIP(74) - if (lookahead == '^') ADVANCE(351); - if (lookahead == '|') ADVANCE(350); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') SKIP(75) + if (lookahead == '\n') SKIP(212) END_STATE(); case 76: - if (lookahead == '\n') SKIP(205) + if (lookahead == '\n') SKIP(212) + if (lookahead == '\r') SKIP(75) + if (lookahead == 'U') ADVANCE(279); + if (lookahead == 'u') ADVANCE(271); END_STATE(); case 77: - if (lookahead == '\n') SKIP(205) - if (lookahead == '\r') SKIP(76) + if (lookahead == '\n') SKIP(213) END_STATE(); case 78: - if (lookahead == '\n') SKIP(194) + if (lookahead == '\n') SKIP(213) + if (lookahead == '\r') SKIP(77) + if (lookahead == 'U') ADVANCE(279); + if (lookahead == 'u') ADVANCE(271); END_STATE(); case 79: - if (lookahead == '\n') SKIP(194) - if (lookahead == '\r') SKIP(78) + if (lookahead == '\n') SKIP(191) END_STATE(); case 80: - if (lookahead == '\n') SKIP(195) - if (lookahead == '"') ADVANCE(439); - if (lookahead == '/') ADVANCE(440); - if (lookahead == '\\') ADVANCE(81); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(443); - if (lookahead != 0) ADVANCE(444); + if (lookahead == '\n') SKIP(191) + if (lookahead == '\r') SKIP(79) + if (lookahead == 'U') ADVANCE(279); + if (lookahead == 'u') ADVANCE(271); END_STATE(); case 81: - if (lookahead == '\n') ADVANCE(446); - if (lookahead == '\r') ADVANCE(445); - if (lookahead == 'U') ADVANCE(257); - if (lookahead == 'u') ADVANCE(253); - if (lookahead == 'x') ADVANCE(251); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(448); - if (lookahead != 0) ADVANCE(445); + if (lookahead == '\n') SKIP(216) END_STATE(); case 82: - if (lookahead == '\n') ADVANCE(268); - if (lookahead == '(') ADVANCE(270); - if (lookahead == '/') ADVANCE(312); - if (lookahead == '\\') ADVANCE(310); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(309); - if (lookahead != 0) ADVANCE(313); + if (lookahead == '\n') SKIP(216) + if (lookahead == '\r') SKIP(81) + if (lookahead == 'U') ADVANCE(279); + if (lookahead == 'u') ADVANCE(271); END_STATE(); case 83: - if (lookahead == '\n') ADVANCE(268); - if (lookahead == '/') ADVANCE(312); - if (lookahead == '\\') ADVANCE(310); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(309); - if (lookahead != 0) ADVANCE(313); + if (lookahead == '\n') SKIP(214) END_STATE(); case 84: - if (lookahead == '\n') SKIP(218) - if (lookahead == '/') ADVANCE(433); - if (lookahead == '\\') ADVANCE(432); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(434); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(431); + if (lookahead == '\n') SKIP(214) + if (lookahead == '\r') SKIP(83) + if (lookahead == 'U') ADVANCE(279); + if (lookahead == 'u') ADVANCE(271); END_STATE(); case 85: - if (lookahead == '\n') SKIP(136) + if (lookahead == '\n') SKIP(218) END_STATE(); case 86: - if (lookahead == '\n') SKIP(136) + if (lookahead == '\n') SKIP(218) if (lookahead == '\r') SKIP(85) + if (lookahead == 'U') ADVANCE(279); + if (lookahead == 'u') ADVANCE(271); END_STATE(); case 87: - if (lookahead == '\n') SKIP(137) + if (lookahead == '\n') SKIP(156) END_STATE(); case 88: - if (lookahead == '\n') SKIP(137) + if (lookahead == '\n') SKIP(156) if (lookahead == '\r') SKIP(87) + if (lookahead == 'U') ADVANCE(279); + if (lookahead == 'u') ADVANCE(271); END_STATE(); case 89: - if (lookahead == '\n') SKIP(181) + if (lookahead == '\n') SKIP(91) END_STATE(); case 90: - if (lookahead == '\n') SKIP(181) + if (lookahead == '\n') SKIP(91) if (lookahead == '\r') SKIP(89) END_STATE(); case 91: - if (lookahead == '\n') SKIP(182) + if (lookahead == '\n') ADVANCE(286); + if (lookahead == '!') ADVANCE(233); + if (lookahead == '%') ADVANCE(373); + if (lookahead == '&') ADVANCE(383); + if (lookahead == '(') ADVANCE(348); + if (lookahead == '*') ADVANCE(369); + if (lookahead == '+') ADVANCE(362); + if (lookahead == '-') ADVANCE(352); + if (lookahead == '/') ADVANCE(371); + if (lookahead == '<') ADVANCE(397); + if (lookahead == '=') ADVANCE(234); + if (lookahead == '>') ADVANCE(388); + if (lookahead == '\\') SKIP(90) + if (lookahead == '^') ADVANCE(380); + if (lookahead == '|') ADVANCE(379); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(91) END_STATE(); case 92: - if (lookahead == '\n') SKIP(182) - if (lookahead == '\r') SKIP(91) + if (lookahead == '\n') SKIP(217) END_STATE(); case 93: - if (lookahead == '\n') SKIP(149) + if (lookahead == '\n') SKIP(217) + if (lookahead == '\r') SKIP(92) + if (lookahead == 'U') ADVANCE(279); + if (lookahead == 'u') ADVANCE(271); END_STATE(); case 94: - if (lookahead == '\n') SKIP(149) - if (lookahead == '\r') SKIP(93) + if (lookahead == '\n') SKIP(205) END_STATE(); case 95: - if (lookahead == '\n') SKIP(147) + if (lookahead == '\n') SKIP(205) + if (lookahead == '\r') SKIP(94) + if (lookahead == 'U') ADVANCE(279); + if (lookahead == 'u') ADVANCE(271); END_STATE(); case 96: - if (lookahead == '\n') SKIP(147) - if (lookahead == '\r') SKIP(95) + if (lookahead == '\n') SKIP(206) + if (lookahead == '"') ADVANCE(468); + if (lookahead == '/') ADVANCE(469); + if (lookahead == '\\') ADVANCE(97); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(472); + if (lookahead != 0) ADVANCE(473); END_STATE(); case 97: - if (lookahead == '\n') SKIP(159) + if (lookahead == '\n') ADVANCE(475); + if (lookahead == '\r') ADVANCE(474); + if (lookahead == 'U') ADVANCE(280); + if (lookahead == 'u') ADVANCE(272); + if (lookahead == 'x') ADVANCE(268); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(477); + if (lookahead != 0) ADVANCE(474); END_STATE(); case 98: - if (lookahead == '\n') SKIP(159) - if (lookahead == '\r') SKIP(97) + if (lookahead == '\n') ADVANCE(287); + if (lookahead == '(') ADVANCE(289); + if (lookahead == '/') ADVANCE(307); + if (lookahead == '\\') ADVANCE(305); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(99) + if (lookahead != 0) ADVANCE(308); END_STATE(); case 99: - if (lookahead == '\n') SKIP(151) + if (lookahead == '\n') ADVANCE(287); + if (lookahead == '/') ADVANCE(307); + if (lookahead == '\\') ADVANCE(305); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(99) + if (lookahead != 0) ADVANCE(308); END_STATE(); case 100: - if (lookahead == '\n') SKIP(151) - if (lookahead == '\r') SKIP(99) + if (lookahead == '\n') SKIP(230) + if (lookahead == '/') ADVANCE(462); + if (lookahead == '\\') ADVANCE(461); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(463); + if (lookahead != 0 && + lookahead != '\'') ADVANCE(460); END_STATE(); case 101: - if (lookahead == '\n') SKIP(185) + if (lookahead == '\n') SKIP(152) END_STATE(); case 102: - if (lookahead == '\n') SKIP(185) + if (lookahead == '\n') SKIP(152) if (lookahead == '\r') SKIP(101) + if (lookahead == 'U') ADVANCE(279); + if (lookahead == 'u') ADVANCE(271); END_STATE(); case 103: - if (lookahead == '\n') SKIP(166) + if (lookahead == '\n') SKIP(145) END_STATE(); case 104: - if (lookahead == '\n') SKIP(166) + if (lookahead == '\n') SKIP(145) if (lookahead == '\r') SKIP(103) + if (lookahead == 'U') ADVANCE(279); + if (lookahead == 'u') ADVANCE(271); END_STATE(); case 105: - if (lookahead == '\n') SKIP(190) + if (lookahead == '\n') SKIP(146) END_STATE(); case 106: - if (lookahead == '\n') SKIP(190) + if (lookahead == '\n') SKIP(146) if (lookahead == '\r') SKIP(105) + if (lookahead == 'U') ADVANCE(279); + if (lookahead == 'u') ADVANCE(271); END_STATE(); case 107: - if (lookahead == '\n') SKIP(189) + if (lookahead == '\n') SKIP(192) END_STATE(); case 108: - if (lookahead == '\n') SKIP(189) + if (lookahead == '\n') SKIP(192) if (lookahead == '\r') SKIP(107) + if (lookahead == 'U') ADVANCE(279); + if (lookahead == 'u') ADVANCE(271); END_STATE(); case 109: - if (lookahead == '\n') SKIP(171) + if (lookahead == '\n') SKIP(193) END_STATE(); case 110: - if (lookahead == '\n') SKIP(171) + if (lookahead == '\n') SKIP(193) if (lookahead == '\r') SKIP(109) + if (lookahead == 'U') ADVANCE(279); + if (lookahead == 'u') ADVANCE(271); END_STATE(); case 111: - if (lookahead == '\n') SKIP(153) + if (lookahead == '\n') SKIP(170) END_STATE(); case 112: - if (lookahead == '\n') SKIP(153) + if (lookahead == '\n') SKIP(170) if (lookahead == '\r') SKIP(111) + if (lookahead == 'U') ADVANCE(279); + if (lookahead == 'u') ADVANCE(271); END_STATE(); case 113: - if (lookahead == '\n') SKIP(164) + if (lookahead == '\n') SKIP(180) END_STATE(); case 114: - if (lookahead == '\n') SKIP(164) + if (lookahead == '\n') SKIP(180) if (lookahead == '\r') SKIP(113) + if (lookahead == 'U') ADVANCE(279); + if (lookahead == 'u') ADVANCE(271); END_STATE(); case 115: - if (lookahead == '\n') SKIP(184) + if (lookahead == '\n') SKIP(166) END_STATE(); case 116: - if (lookahead == '\n') SKIP(184) + if (lookahead == '\n') SKIP(166) if (lookahead == '\r') SKIP(115) + if (lookahead == 'U') ADVANCE(279); + if (lookahead == 'u') ADVANCE(271); END_STATE(); case 117: - if (lookahead == '\n') SKIP(186) + if (lookahead == '\n') SKIP(177) END_STATE(); case 118: - if (lookahead == '\n') SKIP(186) + if (lookahead == '\n') SKIP(177) if (lookahead == '\r') SKIP(117) + if (lookahead == 'U') ADVANCE(279); + if (lookahead == 'u') ADVANCE(271); END_STATE(); case 119: - if (lookahead == '\n') SKIP(173) + if (lookahead == '\n') SKIP(187) END_STATE(); case 120: - if (lookahead == '\n') SKIP(173) + if (lookahead == '\n') SKIP(187) if (lookahead == '\r') SKIP(119) + if (lookahead == 'U') ADVANCE(279); + if (lookahead == 'u') ADVANCE(271); END_STATE(); case 121: - if (lookahead == '\n') SKIP(177) + if (lookahead == '\n') SKIP(200) END_STATE(); case 122: - if (lookahead == '\n') SKIP(177) + if (lookahead == '\n') SKIP(200) if (lookahead == '\r') SKIP(121) + if (lookahead == 'U') ADVANCE(279); + if (lookahead == 'u') ADVANCE(271); END_STATE(); case 123: - if (lookahead == '\n') SKIP(155) + if (lookahead == '\n') SKIP(184) END_STATE(); case 124: - if (lookahead == '\n') SKIP(155) + if (lookahead == '\n') SKIP(184) if (lookahead == '\r') SKIP(123) + if (lookahead == 'U') ADVANCE(279); + if (lookahead == 'u') ADVANCE(271); END_STATE(); case 125: - if (lookahead == '\n') SKIP(183) + if (lookahead == '\n') SKIP(174) END_STATE(); case 126: - if (lookahead == '\n') SKIP(183) + if (lookahead == '\n') SKIP(174) if (lookahead == '\r') SKIP(125) + if (lookahead == 'U') ADVANCE(279); + if (lookahead == 'u') ADVANCE(271); END_STATE(); case 127: - if (lookahead == '\n') SKIP(162) + if (lookahead == '\n') SKIP(189) END_STATE(); case 128: - if (lookahead == '\n') SKIP(162) + if (lookahead == '\n') SKIP(189) if (lookahead == '\r') SKIP(127) + if (lookahead == 'U') ADVANCE(279); + if (lookahead == 'u') ADVANCE(271); END_STATE(); case 129: - if (lookahead == '\n') SKIP(187) + if (lookahead == '\n') SKIP(195) END_STATE(); case 130: - if (lookahead == '\n') SKIP(187) + if (lookahead == '\n') SKIP(195) if (lookahead == '\r') SKIP(129) + if (lookahead == 'U') ADVANCE(279); + if (lookahead == 'u') ADVANCE(271); END_STATE(); case 131: - if (lookahead == '\n') SKIP(191) + if (lookahead == '\n') SKIP(197) END_STATE(); case 132: - if (lookahead == '\n') SKIP(191) + if (lookahead == '\n') SKIP(197) if (lookahead == '\r') SKIP(131) + if (lookahead == 'U') ADVANCE(279); + if (lookahead == 'u') ADVANCE(271); END_STATE(); case 133: - if (lookahead == '!') ADVANCE(321); - if (lookahead == '"') ADVANCE(439); - if (lookahead == '%') ADVANCE(345); - if (lookahead == '&') ADVANCE(355); - if (lookahead == '\'') ADVANCE(430); - if (lookahead == '(') ADVANCE(319); - if (lookahead == ')') ADVANCE(273); - if (lookahead == '*') ADVANCE(341); - if (lookahead == '+') ADVANCE(335); - if (lookahead == ',') ADVANCE(272); - if (lookahead == '-') ADVANCE(324); - if (lookahead == '.') ADVANCE(405); - if (lookahead == '/') ADVANCE(343); - if (lookahead == '0') ADVANCE(415); - if (lookahead == ':') ADVANCE(219); - if (lookahead == '<') ADVANCE(365); - if (lookahead == '=') ADVANCE(385); - if (lookahead == '>') ADVANCE(360); - if (lookahead == '?') ADVANCE(390); - if (lookahead == 'F') ADVANCE(479); - if (lookahead == 'L') ADVANCE(453); - if (lookahead == 'R') ADVANCE(456); - if (lookahead == 'T') ADVANCE(483); - if (lookahead == 'U') ADVANCE(457); - if (lookahead == '[') ADVANCE(379); - if (lookahead == '\\') SKIP(12) - if (lookahead == '^') ADVANCE(352); - if (lookahead == 'b') ADVANCE(512); - if (lookahead == 'c') ADVANCE(497); - if (lookahead == 'd') ADVANCE(508); - if (lookahead == 'f') ADVANCE(487); - if (lookahead == 'i') ADVANCE(506); - if (lookahead == 's') ADVANCE(498); - if (lookahead == 't') ADVANCE(515); - if (lookahead == 'u') ADVANCE(460); - if (lookahead == 'v') ADVANCE(511); - if (lookahead == '{') ADVANCE(377); - if (lookahead == '|') ADVANCE(349); - if (lookahead == '~') ADVANCE(322); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(133) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(417); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(524); + if (lookahead == '\n') SKIP(199) END_STATE(); case 134: - if (lookahead == '!') ADVANCE(321); - if (lookahead == '"') ADVANCE(439); - if (lookahead == '%') ADVANCE(345); - if (lookahead == '&') ADVANCE(355); - if (lookahead == '\'') ADVANCE(430); - if (lookahead == '(') ADVANCE(319); - if (lookahead == ')') ADVANCE(273); - if (lookahead == '*') ADVANCE(341); - if (lookahead == '+') ADVANCE(335); - if (lookahead == ',') ADVANCE(272); - if (lookahead == '-') ADVANCE(325); - if (lookahead == '.') ADVANCE(407); - if (lookahead == '/') ADVANCE(343); - if (lookahead == '0') ADVANCE(415); - if (lookahead == ':') ADVANCE(389); - if (lookahead == ';') ADVANCE(373); - if (lookahead == '<') ADVANCE(365); - if (lookahead == '=') ADVANCE(385); - if (lookahead == '>') ADVANCE(360); - if (lookahead == '?') ADVANCE(390); - if (lookahead == 'F') ADVANCE(479); - if (lookahead == 'L') ADVANCE(453); - if (lookahead == 'R') ADVANCE(456); - if (lookahead == 'T') ADVANCE(483); - if (lookahead == 'U') ADVANCE(457); - if (lookahead == '[') ADVANCE(379); - if (lookahead == '\\') SKIP(10) - if (lookahead == ']') ADVANCE(383); - if (lookahead == '^') ADVANCE(352); - if (lookahead == 'b') ADVANCE(512); - if (lookahead == 'c') ADVANCE(497); - if (lookahead == 'd') ADVANCE(508); - if (lookahead == 'f') ADVANCE(487); - if (lookahead == 'i') ADVANCE(506); - if (lookahead == 's') ADVANCE(498); - if (lookahead == 't') ADVANCE(515); - if (lookahead == 'u') ADVANCE(460); - if (lookahead == 'v') ADVANCE(511); - if (lookahead == '{') ADVANCE(377); - if (lookahead == '|') ADVANCE(349); - if (lookahead == '}') ADVANCE(378); - if (lookahead == '~') ADVANCE(322); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(134) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(417); - if (('A' <= lookahead && lookahead <= '_') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(524); + if (lookahead == '\n') SKIP(199) + if (lookahead == '\r') SKIP(133) + if (lookahead == 'U') ADVANCE(279); + if (lookahead == 'u') ADVANCE(271); END_STATE(); case 135: - if (lookahead == '!') ADVANCE(321); - if (lookahead == '"') ADVANCE(439); - if (lookahead == '%') ADVANCE(345); - if (lookahead == '&') ADVANCE(355); - if (lookahead == '\'') ADVANCE(430); - if (lookahead == '(') ADVANCE(319); - if (lookahead == '*') ADVANCE(341); - if (lookahead == '+') ADVANCE(335); - if (lookahead == ',') ADVANCE(272); - if (lookahead == '-') ADVANCE(325); - if (lookahead == '.') ADVANCE(407); - if (lookahead == '/') ADVANCE(343); - if (lookahead == '0') ADVANCE(415); - if (lookahead == ':') ADVANCE(219); - if (lookahead == '<') ADVANCE(365); - if (lookahead == '=') ADVANCE(385); - if (lookahead == '>') ADVANCE(531); - if (lookahead == '?') ADVANCE(390); - if (lookahead == 'F') ADVANCE(479); - if (lookahead == 'L') ADVANCE(453); - if (lookahead == 'R') ADVANCE(456); - if (lookahead == 'T') ADVANCE(483); - if (lookahead == 'U') ADVANCE(457); - if (lookahead == '[') ADVANCE(379); - if (lookahead == '\\') SKIP(14) - if (lookahead == '^') ADVANCE(352); - if (lookahead == 'b') ADVANCE(512); - if (lookahead == 'c') ADVANCE(497); - if (lookahead == 'd') ADVANCE(508); - if (lookahead == 'f') ADVANCE(487); - if (lookahead == 'i') ADVANCE(506); - if (lookahead == 's') ADVANCE(498); - if (lookahead == 't') ADVANCE(515); - if (lookahead == 'u') ADVANCE(460); - if (lookahead == 'v') ADVANCE(511); - if (lookahead == '{') ADVANCE(377); - if (lookahead == '|') ADVANCE(349); - if (lookahead == '~') ADVANCE(322); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(135) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(417); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(524); + if (lookahead == '\n') SKIP(175) END_STATE(); case 136: - if (lookahead == '!') ADVANCE(321); - if (lookahead == '"') ADVANCE(439); - if (lookahead == '%') ADVANCE(344); - if (lookahead == '&') ADVANCE(354); - if (lookahead == '\'') ADVANCE(430); - if (lookahead == '(') ADVANCE(319); - if (lookahead == ')') ADVANCE(273); - if (lookahead == '*') ADVANCE(340); - if (lookahead == '+') ADVANCE(336); - if (lookahead == ',') ADVANCE(272); - if (lookahead == '-') ADVANCE(326); - if (lookahead == '.') ADVANCE(407); - if (lookahead == '/') ADVANCE(342); - if (lookahead == '0') ADVANCE(415); - if (lookahead == ':') ADVANCE(389); - if (lookahead == ';') ADVANCE(373); - if (lookahead == '<') ADVANCE(367); - if (lookahead == '=') ADVANCE(222); - if (lookahead == '>') ADVANCE(359); - if (lookahead == '?') ADVANCE(390); - if (lookahead == 'F') ADVANCE(479); - if (lookahead == 'L') ADVANCE(453); - if (lookahead == 'R') ADVANCE(456); - if (lookahead == 'T') ADVANCE(483); - if (lookahead == 'U') ADVANCE(457); - if (lookahead == '[') ADVANCE(379); - if (lookahead == '\\') SKIP(86) - if (lookahead == ']') ADVANCE(383); - if (lookahead == '^') ADVANCE(351); - if (lookahead == 'b') ADVANCE(512); - if (lookahead == 'c') ADVANCE(497); - if (lookahead == 'd') ADVANCE(508); - if (lookahead == 'f') ADVANCE(487); - if (lookahead == 'i') ADVANCE(506); - if (lookahead == 's') ADVANCE(498); - if (lookahead == 't') ADVANCE(515); - if (lookahead == 'u') ADVANCE(460); - if (lookahead == 'v') ADVANCE(511); - if (lookahead == '{') ADVANCE(377); - if (lookahead == '|') ADVANCE(350); - if (lookahead == '}') ADVANCE(378); - if (lookahead == '~') ADVANCE(322); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(136) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(417); - if (('A' <= lookahead && lookahead <= '_') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(524); + if (lookahead == '\n') SKIP(175) + if (lookahead == '\r') SKIP(135) + if (lookahead == 'U') ADVANCE(279); + if (lookahead == 'u') ADVANCE(271); END_STATE(); case 137: - if (lookahead == '!') ADVANCE(321); - if (lookahead == '"') ADVANCE(439); - if (lookahead == '%') ADVANCE(344); - if (lookahead == '&') ADVANCE(354); - if (lookahead == '\'') ADVANCE(430); - if (lookahead == '(') ADVANCE(319); - if (lookahead == '*') ADVANCE(340); - if (lookahead == '+') ADVANCE(336); - if (lookahead == ',') ADVANCE(272); - if (lookahead == '-') ADVANCE(326); - if (lookahead == '.') ADVANCE(407); - if (lookahead == '/') ADVANCE(342); - if (lookahead == '0') ADVANCE(415); - if (lookahead == ':') ADVANCE(219); - if (lookahead == '<') ADVANCE(367); - if (lookahead == '=') ADVANCE(222); - if (lookahead == '>') ADVANCE(531); - if (lookahead == '?') ADVANCE(390); - if (lookahead == 'F') ADVANCE(479); - if (lookahead == 'L') ADVANCE(453); - if (lookahead == 'R') ADVANCE(456); - if (lookahead == 'T') ADVANCE(483); - if (lookahead == 'U') ADVANCE(457); - if (lookahead == '[') ADVANCE(379); - if (lookahead == '\\') SKIP(88) - if (lookahead == '^') ADVANCE(351); - if (lookahead == 'b') ADVANCE(512); - if (lookahead == 'c') ADVANCE(497); - if (lookahead == 'd') ADVANCE(508); - if (lookahead == 'f') ADVANCE(487); - if (lookahead == 'i') ADVANCE(506); - if (lookahead == 's') ADVANCE(498); - if (lookahead == 't') ADVANCE(515); - if (lookahead == 'u') ADVANCE(460); - if (lookahead == 'v') ADVANCE(511); - if (lookahead == '{') ADVANCE(377); - if (lookahead == '|') ADVANCE(350); - if (lookahead == '~') ADVANCE(322); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(137) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(417); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(524); + if (lookahead == '\n') SKIP(203) END_STATE(); case 138: - if (lookahead == '!') ADVANCE(321); - if (lookahead == '"') ADVANCE(196); - if (lookahead == '%') ADVANCE(345); - if (lookahead == '&') ADVANCE(355); - if (lookahead == '(') ADVANCE(207); - if (lookahead == '*') ADVANCE(341); - if (lookahead == '+') ADVANCE(337); - if (lookahead == ',') ADVANCE(272); - if (lookahead == '-') ADVANCE(328); - if (lookahead == '/') ADVANCE(343); - if (lookahead == ':') ADVANCE(219); - if (lookahead == '<') ADVANCE(365); - if (lookahead == '=') ADVANCE(385); - if (lookahead == '>') ADVANCE(360); - if (lookahead == '[') ADVANCE(229); - if (lookahead == '\\') SKIP(24) - if (lookahead == '^') ADVANCE(352); - if (lookahead == 'b') ADVANCE(512); - if (lookahead == 'c') ADVANCE(497); - if (lookahead == 'd') ADVANCE(508); - if (lookahead == 'f') ADVANCE(505); - if (lookahead == 'i') ADVANCE(506); - if (lookahead == 's') ADVANCE(498); - if (lookahead == 'u') ADVANCE(501); - if (lookahead == 'v') ADVANCE(511); - if (lookahead == '|') ADVANCE(349); - if (lookahead == '~') ADVANCE(322); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(138) - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(524); + if (lookahead == '\n') SKIP(203) + if (lookahead == '\r') SKIP(137) + if (lookahead == 'U') ADVANCE(279); + if (lookahead == 'u') ADVANCE(271); END_STATE(); case 139: - if (lookahead == '!') ADVANCE(321); - if (lookahead == '"') ADVANCE(196); - if (lookahead == '%') ADVANCE(345); - if (lookahead == '&') ADVANCE(355); - if (lookahead == '(') ADVANCE(207); - if (lookahead == '*') ADVANCE(341); - if (lookahead == '+') ADVANCE(337); - if (lookahead == ',') ADVANCE(272); - if (lookahead == '-') ADVANCE(328); - if (lookahead == '/') ADVANCE(343); - if (lookahead == '<') ADVANCE(365); - if (lookahead == '=') ADVANCE(385); - if (lookahead == '>') ADVANCE(360); - if (lookahead == '[') ADVANCE(230); - if (lookahead == '\\') SKIP(46) - if (lookahead == '^') ADVANCE(352); - if (lookahead == '|') ADVANCE(349); - if (lookahead == '~') ADVANCE(322); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(139) - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(524); + if (lookahead == '\n') SKIP(194) END_STATE(); case 140: - if (lookahead == '!') ADVANCE(320); - if (lookahead == '"') ADVANCE(439); - if (lookahead == '#') ADVANCE(232); - if (lookahead == '&') ADVANCE(354); - if (lookahead == '\'') ADVANCE(430); - if (lookahead == '(') ADVANCE(319); - if (lookahead == '*') ADVANCE(340); - if (lookahead == '+') ADVANCE(336); - if (lookahead == ',') ADVANCE(272); - if (lookahead == '-') ADVANCE(327); - if (lookahead == '.') ADVANCE(245); - if (lookahead == '/') ADVANCE(209); - if (lookahead == '0') ADVANCE(415); - if (lookahead == ':') ADVANCE(219); - if (lookahead == ';') ADVANCE(373); - if (lookahead == '<') ADVANCE(220); - if (lookahead == '>') ADVANCE(223); - if (lookahead == 'F') ADVANCE(479); - if (lookahead == 'L') ADVANCE(453); - if (lookahead == 'R') ADVANCE(456); - if (lookahead == 'T') ADVANCE(483); - if (lookahead == 'U') ADVANCE(457); - if (lookahead == '[') ADVANCE(380); - if (lookahead == '\\') SKIP(2) - if (lookahead == 'b') ADVANCE(512); - if (lookahead == 'c') ADVANCE(497); - if (lookahead == 'd') ADVANCE(508); - if (lookahead == 'f') ADVANCE(487); - if (lookahead == 'i') ADVANCE(506); - if (lookahead == 's') ADVANCE(498); - if (lookahead == 't') ADVANCE(515); - if (lookahead == 'u') ADVANCE(460); - if (lookahead == 'v') ADVANCE(511); - if (lookahead == '{') ADVANCE(377); - if (lookahead == '|') ADVANCE(348); - if (lookahead == '~') ADVANCE(322); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(140) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(417); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(524); + if (lookahead == '\n') SKIP(194) + if (lookahead == '\r') SKIP(139) + if (lookahead == 'U') ADVANCE(279); + if (lookahead == 'u') ADVANCE(271); END_STATE(); case 141: - if (lookahead == '!') ADVANCE(320); - if (lookahead == '"') ADVANCE(439); - if (lookahead == '#') ADVANCE(239); - if (lookahead == '&') ADVANCE(353); - if (lookahead == '\'') ADVANCE(430); - if (lookahead == '(') ADVANCE(319); - if (lookahead == ')') ADVANCE(273); - if (lookahead == '*') ADVANCE(340); - if (lookahead == '+') ADVANCE(336); - if (lookahead == '-') ADVANCE(327); - if (lookahead == '.') ADVANCE(216); - if (lookahead == '/') ADVANCE(209); - if (lookahead == '0') ADVANCE(415); - if (lookahead == ':') ADVANCE(219); - if (lookahead == ';') ADVANCE(373); - if (lookahead == '>') ADVANCE(358); - if (lookahead == 'F') ADVANCE(479); - if (lookahead == 'L') ADVANCE(453); - if (lookahead == 'R') ADVANCE(456); - if (lookahead == 'T') ADVANCE(483); - if (lookahead == 'U') ADVANCE(457); - if (lookahead == '[') ADVANCE(380); - if (lookahead == '\\') SKIP(6) - if (lookahead == 'b') ADVANCE(512); - if (lookahead == 'c') ADVANCE(497); - if (lookahead == 'd') ADVANCE(508); - if (lookahead == 'f') ADVANCE(487); - if (lookahead == 'i') ADVANCE(506); - if (lookahead == 's') ADVANCE(498); - if (lookahead == 't') ADVANCE(515); - if (lookahead == 'u') ADVANCE(460); - if (lookahead == 'v') ADVANCE(511); - if (lookahead == '{') ADVANCE(377); - if (lookahead == '~') ADVANCE(322); + if (lookahead == '!') ADVANCE(350); + if (lookahead == '"') ADVANCE(468); + if (lookahead == '#') ADVANCE(245); + if (lookahead == '%') ADVANCE(374); + if (lookahead == '&') ADVANCE(384); + if (lookahead == '\'') ADVANCE(459); + if (lookahead == '(') ADVANCE(348); + if (lookahead == ')') ADVANCE(292); + if (lookahead == '*') ADVANCE(370); + if (lookahead == '+') ADVANCE(364); + if (lookahead == ',') ADVANCE(291); + if (lookahead == '-') ADVANCE(353); + if (lookahead == '.') ADVANCE(434); + if (lookahead == '/') ADVANCE(372); + if (lookahead == '0') ADVANCE(443); + if (lookahead == ':') ADVANCE(418); + if (lookahead == ';') ADVANCE(402); + if (lookahead == '<') ADVANCE(394); + if (lookahead == '=') ADVANCE(414); + if (lookahead == '>') ADVANCE(579); + if (lookahead == '?') ADVANCE(419); + if (lookahead == 'F') ADVANCE(508); + if (lookahead == 'L') ADVANCE(482); + if (lookahead == 'R') ADVANCE(485); + if (lookahead == 'T') ADVANCE(512); + if (lookahead == 'U') ADVANCE(486); + if (lookahead == '[') ADVANCE(410); + if (lookahead == '\\') ADVANCE(2); + if (lookahead == ']') ADVANCE(412); + if (lookahead == '^') ADVANCE(381); + if (sym_identifier_character_set_1(lookahead)) ADVANCE(571); + if (lookahead == 'b') ADVANCE(554); + if (lookahead == 'c') ADVANCE(533); + if (lookahead == 'd') ADVANCE(550); + if (lookahead == 'f') ADVANCE(517); + if (lookahead == 'i') ADVANCE(547); + if (lookahead == 'm') ADVANCE(519); + if (lookahead == 'n') ADVANCE(567); + if (lookahead == 'p') ADVANCE(564); + if (lookahead == 's') ADVANCE(534); + if (lookahead == 't') ADVANCE(559); + if (lookahead == 'u') ADVANCE(489); + if (lookahead == 'v') ADVANCE(551); + if (lookahead == '{') ADVANCE(406); + if (lookahead == '|') ADVANCE(378); + if (lookahead == '}') ADVANCE(407); + if (lookahead == '~') ADVANCE(351); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(141) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(417); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(524); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(445); END_STATE(); case 142: - if (lookahead == '!') ADVANCE(320); - if (lookahead == '"') ADVANCE(439); - if (lookahead == '#') ADVANCE(234); - if (lookahead == '&') ADVANCE(354); - if (lookahead == '\'') ADVANCE(430); - if (lookahead == '(') ADVANCE(319); - if (lookahead == '*') ADVANCE(340); - if (lookahead == '+') ADVANCE(336); - if (lookahead == ',') ADVANCE(272); - if (lookahead == '-') ADVANCE(327); - if (lookahead == '.') ADVANCE(245); - if (lookahead == '/') ADVANCE(209); - if (lookahead == '0') ADVANCE(415); - if (lookahead == ':') ADVANCE(219); - if (lookahead == ';') ADVANCE(373); - if (lookahead == '>') ADVANCE(225); - if (lookahead == 'F') ADVANCE(479); - if (lookahead == 'L') ADVANCE(453); - if (lookahead == 'R') ADVANCE(456); - if (lookahead == 'T') ADVANCE(483); - if (lookahead == 'U') ADVANCE(457); - if (lookahead == '[') ADVANCE(380); - if (lookahead == '\\') SKIP(4) - if (lookahead == 'b') ADVANCE(512); - if (lookahead == 'c') ADVANCE(497); - if (lookahead == 'd') ADVANCE(508); - if (lookahead == 'f') ADVANCE(487); - if (lookahead == 'i') ADVANCE(506); - if (lookahead == 's') ADVANCE(498); - if (lookahead == 't') ADVANCE(515); - if (lookahead == 'u') ADVANCE(460); - if (lookahead == 'v') ADVANCE(511); - if (lookahead == '{') ADVANCE(377); - if (lookahead == '~') ADVANCE(322); + if (lookahead == '!') ADVANCE(350); + if (lookahead == '"') ADVANCE(468); + if (lookahead == '%') ADVANCE(374); + if (lookahead == '&') ADVANCE(384); + if (lookahead == '\'') ADVANCE(459); + if (lookahead == '(') ADVANCE(348); + if (lookahead == ')') ADVANCE(292); + if (lookahead == '*') ADVANCE(370); + if (lookahead == '+') ADVANCE(364); + if (lookahead == ',') ADVANCE(291); + if (lookahead == '-') ADVANCE(353); + if (lookahead == '.') ADVANCE(434); + if (lookahead == '/') ADVANCE(372); + if (lookahead == '0') ADVANCE(443); + if (lookahead == ':') ADVANCE(231); + if (lookahead == '<') ADVANCE(394); + if (lookahead == '=') ADVANCE(414); + if (lookahead == '>') ADVANCE(389); + if (lookahead == '?') ADVANCE(419); + if (lookahead == 'F') ADVANCE(508); + if (lookahead == 'L') ADVANCE(482); + if (lookahead == 'R') ADVANCE(485); + if (lookahead == 'T') ADVANCE(512); + if (lookahead == 'U') ADVANCE(486); + if (lookahead == '[') ADVANCE(408); + if (lookahead == '\\') ADVANCE(16); + if (lookahead == '^') ADVANCE(381); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(571); + if (lookahead == 'b') ADVANCE(554); + if (lookahead == 'c') ADVANCE(533); + if (lookahead == 'd') ADVANCE(550); + if (lookahead == 'f') ADVANCE(517); + if (lookahead == 'i') ADVANCE(547); + if (lookahead == 'm') ADVANCE(519); + if (lookahead == 'n') ADVANCE(567); + if (lookahead == 'p') ADVANCE(564); + if (lookahead == 's') ADVANCE(534); + if (lookahead == 't') ADVANCE(559); + if (lookahead == 'u') ADVANCE(489); + if (lookahead == 'v') ADVANCE(551); + if (lookahead == '{') ADVANCE(406); + if (lookahead == '|') ADVANCE(378); + if (lookahead == '~') ADVANCE(351); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(142) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(417); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(524); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(445); END_STATE(); case 143: - if (lookahead == '!') ADVANCE(320); - if (lookahead == '"') ADVANCE(439); - if (lookahead == '&') ADVANCE(354); - if (lookahead == '\'') ADVANCE(430); - if (lookahead == '(') ADVANCE(319); - if (lookahead == ')') ADVANCE(273); - if (lookahead == '*') ADVANCE(340); - if (lookahead == '+') ADVANCE(336); - if (lookahead == ',') ADVANCE(272); - if (lookahead == '-') ADVANCE(327); - if (lookahead == '.') ADVANCE(407); - if (lookahead == '/') ADVANCE(209); - if (lookahead == '0') ADVANCE(415); - if (lookahead == ':') ADVANCE(219); - if (lookahead == '<') ADVANCE(364); - if (lookahead == '=') ADVANCE(384); - if (lookahead == '>') ADVANCE(531); - if (lookahead == 'F') ADVANCE(479); - if (lookahead == 'L') ADVANCE(453); - if (lookahead == 'R') ADVANCE(456); - if (lookahead == 'T') ADVANCE(483); - if (lookahead == 'U') ADVANCE(457); - if (lookahead == '[') ADVANCE(379); - if (lookahead == '\\') SKIP(8) - if (lookahead == 'b') ADVANCE(512); - if (lookahead == 'c') ADVANCE(497); - if (lookahead == 'd') ADVANCE(508); - if (lookahead == 'f') ADVANCE(487); - if (lookahead == 'i') ADVANCE(506); - if (lookahead == 's') ADVANCE(498); - if (lookahead == 't') ADVANCE(515); - if (lookahead == 'u') ADVANCE(460); - if (lookahead == 'v') ADVANCE(511); - if (lookahead == '{') ADVANCE(377); - if (lookahead == '~') ADVANCE(322); + if (lookahead == '!') ADVANCE(350); + if (lookahead == '"') ADVANCE(468); + if (lookahead == '%') ADVANCE(374); + if (lookahead == '&') ADVANCE(384); + if (lookahead == '\'') ADVANCE(459); + if (lookahead == '(') ADVANCE(348); + if (lookahead == ')') ADVANCE(292); + if (lookahead == '*') ADVANCE(370); + if (lookahead == '+') ADVANCE(364); + if (lookahead == ',') ADVANCE(291); + if (lookahead == '-') ADVANCE(354); + if (lookahead == '.') ADVANCE(436); + if (lookahead == '/') ADVANCE(372); + if (lookahead == '0') ADVANCE(443); + if (lookahead == ':') ADVANCE(418); + if (lookahead == ';') ADVANCE(402); + if (lookahead == '<') ADVANCE(394); + if (lookahead == '=') ADVANCE(414); + if (lookahead == '>') ADVANCE(389); + if (lookahead == '?') ADVANCE(419); + if (lookahead == 'F') ADVANCE(508); + if (lookahead == 'L') ADVANCE(482); + if (lookahead == 'R') ADVANCE(485); + if (lookahead == 'T') ADVANCE(512); + if (lookahead == 'U') ADVANCE(486); + if (lookahead == '[') ADVANCE(408); + if (lookahead == '\\') ADVANCE(14); + if (lookahead == ']') ADVANCE(412); + if (lookahead == '^') ADVANCE(381); + if (sym_identifier_character_set_1(lookahead)) ADVANCE(571); + if (lookahead == 'b') ADVANCE(554); + if (lookahead == 'c') ADVANCE(533); + if (lookahead == 'd') ADVANCE(550); + if (lookahead == 'f') ADVANCE(517); + if (lookahead == 'i') ADVANCE(547); + if (lookahead == 'm') ADVANCE(519); + if (lookahead == 'n') ADVANCE(567); + if (lookahead == 'p') ADVANCE(564); + if (lookahead == 's') ADVANCE(534); + if (lookahead == 't') ADVANCE(559); + if (lookahead == 'u') ADVANCE(489); + if (lookahead == 'v') ADVANCE(551); + if (lookahead == '{') ADVANCE(406); + if (lookahead == '|') ADVANCE(378); + if (lookahead == '}') ADVANCE(407); + if (lookahead == '~') ADVANCE(351); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(143) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(417); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(524); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(445); END_STATE(); case 144: - if (lookahead == '!') ADVANCE(320); - if (lookahead == '"') ADVANCE(439); - if (lookahead == '&') ADVANCE(353); - if (lookahead == '\'') ADVANCE(430); - if (lookahead == '(') ADVANCE(319); - if (lookahead == ')') ADVANCE(273); - if (lookahead == '*') ADVANCE(340); - if (lookahead == '+') ADVANCE(336); - if (lookahead == ',') ADVANCE(272); - if (lookahead == '-') ADVANCE(327); - if (lookahead == '.') ADVANCE(407); - if (lookahead == '/') ADVANCE(209); - if (lookahead == '0') ADVANCE(415); - if (lookahead == ':') ADVANCE(219); - if (lookahead == ';') ADVANCE(373); - if (lookahead == '<') ADVANCE(364); - if (lookahead == '=') ADVANCE(384); - if (lookahead == '>') ADVANCE(531); - if (lookahead == 'F') ADVANCE(479); - if (lookahead == 'L') ADVANCE(453); - if (lookahead == 'R') ADVANCE(456); - if (lookahead == 'T') ADVANCE(483); - if (lookahead == 'U') ADVANCE(457); - if (lookahead == '[') ADVANCE(379); - if (lookahead == '\\') SKIP(22) - if (lookahead == ']') ADVANCE(383); - if (lookahead == 'b') ADVANCE(512); - if (lookahead == 'c') ADVANCE(497); - if (lookahead == 'd') ADVANCE(508); - if (lookahead == 'f') ADVANCE(487); - if (lookahead == 'i') ADVANCE(506); - if (lookahead == 's') ADVANCE(498); - if (lookahead == 't') ADVANCE(515); - if (lookahead == 'u') ADVANCE(460); - if (lookahead == 'v') ADVANCE(511); - if (lookahead == '{') ADVANCE(377); - if (lookahead == '}') ADVANCE(378); - if (lookahead == '~') ADVANCE(322); + if (lookahead == '!') ADVANCE(350); + if (lookahead == '"') ADVANCE(468); + if (lookahead == '%') ADVANCE(374); + if (lookahead == '&') ADVANCE(384); + if (lookahead == '\'') ADVANCE(459); + if (lookahead == '(') ADVANCE(348); + if (lookahead == '*') ADVANCE(370); + if (lookahead == '+') ADVANCE(364); + if (lookahead == ',') ADVANCE(291); + if (lookahead == '-') ADVANCE(354); + if (lookahead == '.') ADVANCE(436); + if (lookahead == '/') ADVANCE(372); + if (lookahead == '0') ADVANCE(443); + if (lookahead == ':') ADVANCE(231); + if (lookahead == '<') ADVANCE(394); + if (lookahead == '=') ADVANCE(414); + if (lookahead == '>') ADVANCE(579); + if (lookahead == '?') ADVANCE(419); + if (lookahead == 'F') ADVANCE(508); + if (lookahead == 'L') ADVANCE(482); + if (lookahead == 'R') ADVANCE(485); + if (lookahead == 'T') ADVANCE(512); + if (lookahead == 'U') ADVANCE(486); + if (lookahead == '[') ADVANCE(408); + if (lookahead == '\\') ADVANCE(18); + if (lookahead == '^') ADVANCE(381); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(571); + if (lookahead == 'b') ADVANCE(554); + if (lookahead == 'c') ADVANCE(533); + if (lookahead == 'd') ADVANCE(550); + if (lookahead == 'f') ADVANCE(517); + if (lookahead == 'i') ADVANCE(547); + if (lookahead == 'm') ADVANCE(519); + if (lookahead == 'n') ADVANCE(567); + if (lookahead == 'p') ADVANCE(564); + if (lookahead == 's') ADVANCE(534); + if (lookahead == 't') ADVANCE(559); + if (lookahead == 'u') ADVANCE(489); + if (lookahead == 'v') ADVANCE(551); + if (lookahead == '{') ADVANCE(406); + if (lookahead == '|') ADVANCE(378); + if (lookahead == '~') ADVANCE(351); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(144) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(417); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(524); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(445); END_STATE(); case 145: - if (lookahead == '!') ADVANCE(320); - if (lookahead == '\'') ADVANCE(430); - if (lookahead == '(') ADVANCE(319); - if (lookahead == ')') ADVANCE(273); - if (lookahead == '+') ADVANCE(338); - if (lookahead == '-') ADVANCE(331); - if (lookahead == '.') ADVANCE(245); - if (lookahead == '/') ADVANCE(209); - if (lookahead == '0') ADVANCE(415); - if (lookahead == 'L') ADVANCE(471); - if (lookahead == 'U') ADVANCE(472); - if (lookahead == '\\') SKIP(72) - if (lookahead == 'u') ADVANCE(473); - if (lookahead == '~') ADVANCE(322); + if (lookahead == '!') ADVANCE(350); + if (lookahead == '"') ADVANCE(468); + if (lookahead == '%') ADVANCE(373); + if (lookahead == '&') ADVANCE(383); + if (lookahead == '\'') ADVANCE(459); + if (lookahead == '(') ADVANCE(348); + if (lookahead == ')') ADVANCE(292); + if (lookahead == '*') ADVANCE(369); + if (lookahead == '+') ADVANCE(365); + if (lookahead == ',') ADVANCE(291); + if (lookahead == '-') ADVANCE(355); + if (lookahead == '.') ADVANCE(436); + if (lookahead == '/') ADVANCE(371); + if (lookahead == '0') ADVANCE(443); + if (lookahead == ':') ADVANCE(418); + if (lookahead == ';') ADVANCE(402); + if (lookahead == '<') ADVANCE(396); + if (lookahead == '=') ADVANCE(234); + if (lookahead == '>') ADVANCE(388); + if (lookahead == '?') ADVANCE(419); + if (lookahead == 'F') ADVANCE(508); + if (lookahead == 'L') ADVANCE(482); + if (lookahead == 'R') ADVANCE(485); + if (lookahead == 'T') ADVANCE(512); + if (lookahead == 'U') ADVANCE(486); + if (lookahead == '[') ADVANCE(408); + if (lookahead == '\\') ADVANCE(104); + if (lookahead == ']') ADVANCE(412); + if (lookahead == '^') ADVANCE(380); + if (sym_identifier_character_set_1(lookahead)) ADVANCE(571); + if (lookahead == 'b') ADVANCE(554); + if (lookahead == 'c') ADVANCE(533); + if (lookahead == 'd') ADVANCE(550); + if (lookahead == 'f') ADVANCE(517); + if (lookahead == 'i') ADVANCE(547); + if (lookahead == 'm') ADVANCE(519); + if (lookahead == 'n') ADVANCE(567); + if (lookahead == 'p') ADVANCE(564); + if (lookahead == 's') ADVANCE(534); + if (lookahead == 't') ADVANCE(559); + if (lookahead == 'u') ADVANCE(489); + if (lookahead == 'v') ADVANCE(551); + if (lookahead == '{') ADVANCE(406); + if (lookahead == '|') ADVANCE(379); + if (lookahead == '}') ADVANCE(407); + if (lookahead == '~') ADVANCE(351); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(145) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(417); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(524); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(445); END_STATE(); case 146: - if (lookahead == '!') ADVANCE(221); - if (lookahead == '"') ADVANCE(439); - if (lookahead == '%') ADVANCE(345); - if (lookahead == '&') ADVANCE(355); - if (lookahead == '(') ADVANCE(319); - if (lookahead == ')') ADVANCE(273); - if (lookahead == '*') ADVANCE(341); - if (lookahead == '+') ADVANCE(337); - if (lookahead == ',') ADVANCE(272); - if (lookahead == '-') ADVANCE(328); - if (lookahead == '.') ADVANCE(404); - if (lookahead == '/') ADVANCE(343); - if (lookahead == '<') ADVANCE(365); - if (lookahead == '=') ADVANCE(385); - if (lookahead == '>') ADVANCE(360); - if (lookahead == '?') ADVANCE(390); - if (lookahead == 'L') ADVANCE(542); - if (lookahead == 'R') ADVANCE(543); - if (lookahead == 'U') ADVANCE(544); - if (lookahead == '[') ADVANCE(379); - if (lookahead == '\\') SKIP(96) - if (lookahead == '^') ADVANCE(352); - if (lookahead == 'u') ADVANCE(545); - if (lookahead == '|') ADVANCE(349); + if (lookahead == '!') ADVANCE(350); + if (lookahead == '"') ADVANCE(468); + if (lookahead == '%') ADVANCE(373); + if (lookahead == '&') ADVANCE(383); + if (lookahead == '\'') ADVANCE(459); + if (lookahead == '(') ADVANCE(348); + if (lookahead == '*') ADVANCE(369); + if (lookahead == '+') ADVANCE(365); + if (lookahead == ',') ADVANCE(291); + if (lookahead == '-') ADVANCE(355); + if (lookahead == '.') ADVANCE(436); + if (lookahead == '/') ADVANCE(371); + if (lookahead == '0') ADVANCE(443); + if (lookahead == ':') ADVANCE(231); + if (lookahead == '<') ADVANCE(396); + if (lookahead == '=') ADVANCE(234); + if (lookahead == '>') ADVANCE(579); + if (lookahead == '?') ADVANCE(419); + if (lookahead == 'F') ADVANCE(508); + if (lookahead == 'L') ADVANCE(482); + if (lookahead == 'R') ADVANCE(485); + if (lookahead == 'T') ADVANCE(512); + if (lookahead == 'U') ADVANCE(486); + if (lookahead == '[') ADVANCE(408); + if (lookahead == '\\') ADVANCE(106); + if (lookahead == '^') ADVANCE(380); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(571); + if (lookahead == 'b') ADVANCE(554); + if (lookahead == 'c') ADVANCE(533); + if (lookahead == 'd') ADVANCE(550); + if (lookahead == 'f') ADVANCE(517); + if (lookahead == 'i') ADVANCE(547); + if (lookahead == 'm') ADVANCE(519); + if (lookahead == 'n') ADVANCE(567); + if (lookahead == 'p') ADVANCE(564); + if (lookahead == 's') ADVANCE(534); + if (lookahead == 't') ADVANCE(559); + if (lookahead == 'u') ADVANCE(489); + if (lookahead == 'v') ADVANCE(551); + if (lookahead == '{') ADVANCE(406); + if (lookahead == '|') ADVANCE(379); + if (lookahead == '~') ADVANCE(351); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(147) - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + lookahead == ' ') SKIP(146) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(445); END_STATE(); case 147: - if (lookahead == '!') ADVANCE(221); - if (lookahead == '"') ADVANCE(439); - if (lookahead == '%') ADVANCE(345); - if (lookahead == '&') ADVANCE(355); - if (lookahead == '(') ADVANCE(319); - if (lookahead == ')') ADVANCE(273); - if (lookahead == '*') ADVANCE(341); - if (lookahead == '+') ADVANCE(337); - if (lookahead == ',') ADVANCE(272); - if (lookahead == '-') ADVANCE(328); - if (lookahead == '.') ADVANCE(404); - if (lookahead == '/') ADVANCE(343); - if (lookahead == '<') ADVANCE(365); - if (lookahead == '=') ADVANCE(385); - if (lookahead == '>') ADVANCE(360); - if (lookahead == '?') ADVANCE(390); - if (lookahead == 'L') ADVANCE(454); - if (lookahead == 'R') ADVANCE(456); - if (lookahead == 'U') ADVANCE(458); - if (lookahead == '[') ADVANCE(379); - if (lookahead == '\\') SKIP(96) - if (lookahead == '^') ADVANCE(352); - if (lookahead == 'u') ADVANCE(461); - if (lookahead == '|') ADVANCE(349); + if (lookahead == '!') ADVANCE(350); + if (lookahead == '"') ADVANCE(207); + if (lookahead == '%') ADVANCE(374); + if (lookahead == '&') ADVANCE(384); + if (lookahead == '(') ADVANCE(219); + if (lookahead == '*') ADVANCE(370); + if (lookahead == '+') ADVANCE(366); + if (lookahead == ',') ADVANCE(291); + if (lookahead == '-') ADVANCE(357); + if (lookahead == '/') ADVANCE(372); + if (lookahead == ':') ADVANCE(231); + if (lookahead == '<') ADVANCE(394); + if (lookahead == '=') ADVANCE(414); + if (lookahead == '>') ADVANCE(389); + if (lookahead == '[') ADVANCE(242); + if (lookahead == '\\') ADVANCE(30); + if (lookahead == '^') ADVANCE(381); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(571); + if (lookahead == 'b') ADVANCE(554); + if (lookahead == 'c') ADVANCE(533); + if (lookahead == 'd') ADVANCE(550); + if (lookahead == 'f') ADVANCE(546); + if (lookahead == 'i') ADVANCE(547); + if (lookahead == 'm') ADVANCE(519); + if (lookahead == 'n') ADVANCE(567); + if (lookahead == 'p') ADVANCE(564); + if (lookahead == 's') ADVANCE(534); + if (lookahead == 'u') ADVANCE(539); + if (lookahead == 'v') ADVANCE(551); + if (lookahead == '|') ADVANCE(378); + if (lookahead == '~') ADVANCE(351); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(147) - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(524); END_STATE(); case 148: - if (lookahead == '!') ADVANCE(221); - if (lookahead == '"') ADVANCE(439); - if (lookahead == '%') ADVANCE(345); - if (lookahead == '&') ADVANCE(355); - if (lookahead == '(') ADVANCE(319); - if (lookahead == ')') ADVANCE(273); - if (lookahead == '*') ADVANCE(341); - if (lookahead == '+') ADVANCE(337); - if (lookahead == ',') ADVANCE(272); - if (lookahead == '-') ADVANCE(329); - if (lookahead == '.') ADVANCE(406); - if (lookahead == '/') ADVANCE(343); - if (lookahead == ':') ADVANCE(388); - if (lookahead == ';') ADVANCE(373); - if (lookahead == '<') ADVANCE(365); - if (lookahead == '=') ADVANCE(385); - if (lookahead == '>') ADVANCE(360); - if (lookahead == '?') ADVANCE(390); - if (lookahead == 'L') ADVANCE(542); - if (lookahead == 'R') ADVANCE(543); - if (lookahead == 'U') ADVANCE(544); - if (lookahead == '[') ADVANCE(379); - if (lookahead == '\\') SKIP(94) - if (lookahead == ']') ADVANCE(383); - if (lookahead == '^') ADVANCE(352); - if (lookahead == 'u') ADVANCE(545); - if (lookahead == '{') ADVANCE(377); - if (lookahead == '|') ADVANCE(349); - if (lookahead == '}') ADVANCE(378); + if (lookahead == '!') ADVANCE(350); + if (lookahead == '"') ADVANCE(207); + if (lookahead == '%') ADVANCE(374); + if (lookahead == '&') ADVANCE(384); + if (lookahead == '(') ADVANCE(219); + if (lookahead == '*') ADVANCE(370); + if (lookahead == '+') ADVANCE(366); + if (lookahead == ',') ADVANCE(291); + if (lookahead == '-') ADVANCE(357); + if (lookahead == '/') ADVANCE(372); + if (lookahead == '<') ADVANCE(394); + if (lookahead == '=') ADVANCE(414); + if (lookahead == '>') ADVANCE(389); + if (lookahead == '[') ADVANCE(243); + if (lookahead == '\\') ADVANCE(58); + if (lookahead == '^') ADVANCE(381); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(571); + if (lookahead == '|') ADVANCE(378); + if (lookahead == '~') ADVANCE(351); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(149) - if (('A' <= lookahead && lookahead <= '_') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + lookahead == ' ') SKIP(148) END_STATE(); case 149: - if (lookahead == '!') ADVANCE(221); - if (lookahead == '"') ADVANCE(439); - if (lookahead == '%') ADVANCE(345); - if (lookahead == '&') ADVANCE(355); - if (lookahead == '(') ADVANCE(319); - if (lookahead == ')') ADVANCE(273); - if (lookahead == '*') ADVANCE(341); - if (lookahead == '+') ADVANCE(337); - if (lookahead == ',') ADVANCE(272); - if (lookahead == '-') ADVANCE(329); - if (lookahead == '.') ADVANCE(406); - if (lookahead == '/') ADVANCE(343); - if (lookahead == ':') ADVANCE(388); - if (lookahead == ';') ADVANCE(373); - if (lookahead == '<') ADVANCE(365); - if (lookahead == '=') ADVANCE(385); - if (lookahead == '>') ADVANCE(360); - if (lookahead == '?') ADVANCE(390); - if (lookahead == 'L') ADVANCE(454); - if (lookahead == 'R') ADVANCE(456); - if (lookahead == 'U') ADVANCE(458); - if (lookahead == '[') ADVANCE(379); - if (lookahead == '\\') SKIP(94) - if (lookahead == ']') ADVANCE(383); - if (lookahead == '^') ADVANCE(352); - if (lookahead == 'u') ADVANCE(461); - if (lookahead == '{') ADVANCE(377); - if (lookahead == '|') ADVANCE(349); - if (lookahead == '}') ADVANCE(378); + if (lookahead == '!') ADVANCE(349); + if (lookahead == '"') ADVANCE(468); + if (lookahead == '#') ADVANCE(245); + if (lookahead == '&') ADVANCE(383); + if (lookahead == '\'') ADVANCE(459); + if (lookahead == '(') ADVANCE(348); + if (lookahead == '*') ADVANCE(369); + if (lookahead == '+') ADVANCE(365); + if (lookahead == ',') ADVANCE(291); + if (lookahead == '-') ADVANCE(356); + if (lookahead == '.') ADVANCE(260); + if (lookahead == '/') ADVANCE(221); + if (lookahead == '0') ADVANCE(443); + if (lookahead == ':') ADVANCE(231); + if (lookahead == ';') ADVANCE(402); + if (lookahead == '<') ADVANCE(232); + if (lookahead == '>') ADVANCE(235); + if (lookahead == 'F') ADVANCE(508); + if (lookahead == 'L') ADVANCE(482); + if (lookahead == 'R') ADVANCE(485); + if (lookahead == 'T') ADVANCE(512); + if (lookahead == 'U') ADVANCE(486); + if (lookahead == '[') ADVANCE(409); + if (lookahead == '\\') ADVANCE(6); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(571); + if (lookahead == 'b') ADVANCE(554); + if (lookahead == 'c') ADVANCE(533); + if (lookahead == 'd') ADVANCE(550); + if (lookahead == 'f') ADVANCE(517); + if (lookahead == 'i') ADVANCE(547); + if (lookahead == 'm') ADVANCE(519); + if (lookahead == 'n') ADVANCE(567); + if (lookahead == 'p') ADVANCE(564); + if (lookahead == 's') ADVANCE(534); + if (lookahead == 't') ADVANCE(559); + if (lookahead == 'u') ADVANCE(489); + if (lookahead == 'v') ADVANCE(551); + if (lookahead == '{') ADVANCE(406); + if (lookahead == '|') ADVANCE(377); + if (lookahead == '~') ADVANCE(351); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(149) - if (('A' <= lookahead && lookahead <= '_') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(524); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(445); END_STATE(); case 150: - if (lookahead == '!') ADVANCE(221); - if (lookahead == '"') ADVANCE(439); - if (lookahead == '%') ADVANCE(345); - if (lookahead == '&') ADVANCE(355); - if (lookahead == '(') ADVANCE(319); - if (lookahead == '*') ADVANCE(341); - if (lookahead == '+') ADVANCE(337); - if (lookahead == ',') ADVANCE(272); - if (lookahead == '-') ADVANCE(329); - if (lookahead == '.') ADVANCE(406); - if (lookahead == '/') ADVANCE(343); - if (lookahead == '<') ADVANCE(365); - if (lookahead == '=') ADVANCE(385); - if (lookahead == '>') ADVANCE(531); - if (lookahead == '?') ADVANCE(390); - if (lookahead == 'L') ADVANCE(542); - if (lookahead == 'R') ADVANCE(543); - if (lookahead == 'U') ADVANCE(544); - if (lookahead == '[') ADVANCE(379); - if (lookahead == '\\') SKIP(100) - if (lookahead == '^') ADVANCE(352); - if (lookahead == 'u') ADVANCE(545); - if (lookahead == '|') ADVANCE(349); + if (lookahead == '!') ADVANCE(349); + if (lookahead == '"') ADVANCE(468); + if (lookahead == '#') ADVANCE(251); + if (lookahead == '%') ADVANCE(373); + if (lookahead == '&') ADVANCE(383); + if (lookahead == '\'') ADVANCE(459); + if (lookahead == '(') ADVANCE(348); + if (lookahead == ')') ADVANCE(292); + if (lookahead == '*') ADVANCE(369); + if (lookahead == '+') ADVANCE(365); + if (lookahead == ',') ADVANCE(291); + if (lookahead == '-') ADVANCE(356); + if (lookahead == '.') ADVANCE(437); + if (lookahead == '/') ADVANCE(371); + if (lookahead == '0') ADVANCE(443); + if (lookahead == ':') ADVANCE(418); + if (lookahead == ';') ADVANCE(402); + if (lookahead == '<') ADVANCE(393); + if (lookahead == '=') ADVANCE(413); + if (lookahead == '>') ADVANCE(579); + if (lookahead == 'F') ADVANCE(508); + if (lookahead == 'L') ADVANCE(482); + if (lookahead == 'R') ADVANCE(485); + if (lookahead == 'T') ADVANCE(512); + if (lookahead == 'U') ADVANCE(486); + if (lookahead == '[') ADVANCE(409); + if (lookahead == '\\') ADVANCE(4); + if (lookahead == ']') ADVANCE(244); + if (lookahead == '^') ADVANCE(380); + if (sym_identifier_character_set_1(lookahead)) ADVANCE(571); + if (lookahead == 'b') ADVANCE(554); + if (lookahead == 'c') ADVANCE(533); + if (lookahead == 'd') ADVANCE(550); + if (lookahead == 'f') ADVANCE(517); + if (lookahead == 'i') ADVANCE(547); + if (lookahead == 'm') ADVANCE(519); + if (lookahead == 'n') ADVANCE(567); + if (lookahead == 'p') ADVANCE(564); + if (lookahead == 's') ADVANCE(534); + if (lookahead == 't') ADVANCE(559); + if (lookahead == 'u') ADVANCE(489); + if (lookahead == 'v') ADVANCE(551); + if (lookahead == '{') ADVANCE(406); + if (lookahead == '|') ADVANCE(258); + if (lookahead == '}') ADVANCE(407); + if (lookahead == '~') ADVANCE(351); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(151) - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + lookahead == ' ') SKIP(150) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(445); END_STATE(); case 151: - if (lookahead == '!') ADVANCE(221); - if (lookahead == '"') ADVANCE(439); - if (lookahead == '%') ADVANCE(345); - if (lookahead == '&') ADVANCE(355); - if (lookahead == '(') ADVANCE(319); - if (lookahead == '*') ADVANCE(341); - if (lookahead == '+') ADVANCE(337); - if (lookahead == ',') ADVANCE(272); - if (lookahead == '-') ADVANCE(329); - if (lookahead == '.') ADVANCE(406); - if (lookahead == '/') ADVANCE(343); - if (lookahead == '<') ADVANCE(365); - if (lookahead == '=') ADVANCE(385); - if (lookahead == '>') ADVANCE(531); - if (lookahead == '?') ADVANCE(390); - if (lookahead == 'L') ADVANCE(454); - if (lookahead == 'R') ADVANCE(456); - if (lookahead == 'U') ADVANCE(458); - if (lookahead == '[') ADVANCE(379); - if (lookahead == '\\') SKIP(100) - if (lookahead == '^') ADVANCE(352); - if (lookahead == 'u') ADVANCE(461); - if (lookahead == '|') ADVANCE(349); + if (lookahead == '!') ADVANCE(349); + if (lookahead == '"') ADVANCE(468); + if (lookahead == '#') ADVANCE(254); + if (lookahead == '&') ADVANCE(382); + if (lookahead == '\'') ADVANCE(459); + if (lookahead == '(') ADVANCE(348); + if (lookahead == ')') ADVANCE(292); + if (lookahead == '*') ADVANCE(369); + if (lookahead == '+') ADVANCE(365); + if (lookahead == '-') ADVANCE(356); + if (lookahead == '.') ADVANCE(228); + if (lookahead == '/') ADVANCE(221); + if (lookahead == '0') ADVANCE(443); + if (lookahead == ':') ADVANCE(231); + if (lookahead == ';') ADVANCE(402); + if (lookahead == 'F') ADVANCE(508); + if (lookahead == 'L') ADVANCE(482); + if (lookahead == 'R') ADVANCE(485); + if (lookahead == 'T') ADVANCE(512); + if (lookahead == 'U') ADVANCE(486); + if (lookahead == '[') ADVANCE(409); + if (lookahead == '\\') ADVANCE(10); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(571); + if (lookahead == 'b') ADVANCE(554); + if (lookahead == 'c') ADVANCE(533); + if (lookahead == 'd') ADVANCE(550); + if (lookahead == 'f') ADVANCE(517); + if (lookahead == 'i') ADVANCE(547); + if (lookahead == 'm') ADVANCE(519); + if (lookahead == 'n') ADVANCE(567); + if (lookahead == 'p') ADVANCE(564); + if (lookahead == 's') ADVANCE(534); + if (lookahead == 't') ADVANCE(559); + if (lookahead == 'u') ADVANCE(489); + if (lookahead == 'v') ADVANCE(551); + if (lookahead == '{') ADVANCE(406); + if (lookahead == '~') ADVANCE(351); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(151) - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(524); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(445); END_STATE(); case 152: - if (lookahead == '!') ADVANCE(221); - if (lookahead == '"') ADVANCE(439); - if (lookahead == '%') ADVANCE(344); - if (lookahead == '&') ADVANCE(354); - if (lookahead == '(') ADVANCE(319); - if (lookahead == ')') ADVANCE(273); - if (lookahead == '*') ADVANCE(340); - if (lookahead == '+') ADVANCE(334); - if (lookahead == ',') ADVANCE(272); - if (lookahead == '-') ADVANCE(330); - if (lookahead == '.') ADVANCE(406); - if (lookahead == '/') ADVANCE(342); - if (lookahead == ':') ADVANCE(388); - if (lookahead == ';') ADVANCE(373); - if (lookahead == '<') ADVANCE(367); - if (lookahead == '=') ADVANCE(222); - if (lookahead == '>') ADVANCE(359); - if (lookahead == '?') ADVANCE(390); - if (lookahead == 'L') ADVANCE(542); - if (lookahead == 'R') ADVANCE(543); - if (lookahead == 'U') ADVANCE(544); - if (lookahead == '[') ADVANCE(379); - if (lookahead == '\\') SKIP(112) - if (lookahead == ']') ADVANCE(383); - if (lookahead == '^') ADVANCE(351); - if (lookahead == 'u') ADVANCE(545); - if (lookahead == '|') ADVANCE(350); - if (lookahead == '}') ADVANCE(378); + if (lookahead == '!') ADVANCE(349); + if (lookahead == '"') ADVANCE(468); + if (lookahead == '#') ADVANCE(247); + if (lookahead == '&') ADVANCE(383); + if (lookahead == '\'') ADVANCE(459); + if (lookahead == '(') ADVANCE(348); + if (lookahead == '*') ADVANCE(369); + if (lookahead == '+') ADVANCE(365); + if (lookahead == ',') ADVANCE(291); + if (lookahead == '-') ADVANCE(356); + if (lookahead == '.') ADVANCE(260); + if (lookahead == '/') ADVANCE(221); + if (lookahead == '0') ADVANCE(443); + if (lookahead == ':') ADVANCE(231); + if (lookahead == ';') ADVANCE(402); + if (lookahead == '>') ADVANCE(387); + if (lookahead == 'F') ADVANCE(508); + if (lookahead == 'L') ADVANCE(482); + if (lookahead == 'R') ADVANCE(485); + if (lookahead == 'T') ADVANCE(512); + if (lookahead == 'U') ADVANCE(486); + if (lookahead == '[') ADVANCE(409); + if (lookahead == '\\') ADVANCE(102); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(571); + if (lookahead == 'b') ADVANCE(554); + if (lookahead == 'c') ADVANCE(533); + if (lookahead == 'd') ADVANCE(550); + if (lookahead == 'f') ADVANCE(517); + if (lookahead == 'i') ADVANCE(547); + if (lookahead == 'm') ADVANCE(519); + if (lookahead == 'n') ADVANCE(567); + if (lookahead == 'p') ADVANCE(564); + if (lookahead == 's') ADVANCE(534); + if (lookahead == 't') ADVANCE(559); + if (lookahead == 'u') ADVANCE(489); + if (lookahead == 'v') ADVANCE(551); + if (lookahead == '{') ADVANCE(406); + if (lookahead == '~') ADVANCE(351); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(153) - if (('A' <= lookahead && lookahead <= '_') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + lookahead == ' ') SKIP(152) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(445); END_STATE(); case 153: - if (lookahead == '!') ADVANCE(221); - if (lookahead == '"') ADVANCE(439); - if (lookahead == '%') ADVANCE(344); - if (lookahead == '&') ADVANCE(354); - if (lookahead == '(') ADVANCE(319); - if (lookahead == ')') ADVANCE(273); - if (lookahead == '*') ADVANCE(340); - if (lookahead == '+') ADVANCE(334); - if (lookahead == ',') ADVANCE(272); - if (lookahead == '-') ADVANCE(330); - if (lookahead == '.') ADVANCE(406); - if (lookahead == '/') ADVANCE(342); - if (lookahead == ':') ADVANCE(388); - if (lookahead == ';') ADVANCE(373); - if (lookahead == '<') ADVANCE(367); - if (lookahead == '=') ADVANCE(222); - if (lookahead == '>') ADVANCE(359); - if (lookahead == '?') ADVANCE(390); - if (lookahead == 'L') ADVANCE(454); - if (lookahead == 'R') ADVANCE(456); - if (lookahead == 'U') ADVANCE(458); - if (lookahead == '[') ADVANCE(379); - if (lookahead == '\\') SKIP(112) - if (lookahead == ']') ADVANCE(383); - if (lookahead == '^') ADVANCE(351); - if (lookahead == 'u') ADVANCE(461); - if (lookahead == '|') ADVANCE(350); - if (lookahead == '}') ADVANCE(378); + if (lookahead == '!') ADVANCE(349); + if (lookahead == '"') ADVANCE(468); + if (lookahead == '#') ADVANCE(249); + if (lookahead == '&') ADVANCE(383); + if (lookahead == '\'') ADVANCE(459); + if (lookahead == '(') ADVANCE(348); + if (lookahead == '*') ADVANCE(369); + if (lookahead == '+') ADVANCE(365); + if (lookahead == ',') ADVANCE(291); + if (lookahead == '-') ADVANCE(356); + if (lookahead == '.') ADVANCE(260); + if (lookahead == '/') ADVANCE(221); + if (lookahead == '0') ADVANCE(443); + if (lookahead == ':') ADVANCE(231); + if (lookahead == ';') ADVANCE(402); + if (lookahead == '>') ADVANCE(237); + if (lookahead == 'F') ADVANCE(508); + if (lookahead == 'L') ADVANCE(482); + if (lookahead == 'R') ADVANCE(485); + if (lookahead == 'T') ADVANCE(512); + if (lookahead == 'U') ADVANCE(486); + if (lookahead == '[') ADVANCE(409); + if (lookahead == '\\') ADVANCE(8); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(571); + if (lookahead == 'b') ADVANCE(554); + if (lookahead == 'c') ADVANCE(533); + if (lookahead == 'd') ADVANCE(550); + if (lookahead == 'f') ADVANCE(517); + if (lookahead == 'i') ADVANCE(547); + if (lookahead == 'm') ADVANCE(519); + if (lookahead == 'n') ADVANCE(567); + if (lookahead == 'p') ADVANCE(564); + if (lookahead == 's') ADVANCE(534); + if (lookahead == 't') ADVANCE(559); + if (lookahead == 'u') ADVANCE(489); + if (lookahead == 'v') ADVANCE(551); + if (lookahead == '{') ADVANCE(406); + if (lookahead == '~') ADVANCE(351); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(153) - if (('A' <= lookahead && lookahead <= '_') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(524); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(445); END_STATE(); case 154: - if (lookahead == '!') ADVANCE(221); - if (lookahead == '"') ADVANCE(439); - if (lookahead == '%') ADVANCE(344); - if (lookahead == '&') ADVANCE(354); - if (lookahead == '(') ADVANCE(319); - if (lookahead == '*') ADVANCE(340); - if (lookahead == '+') ADVANCE(334); - if (lookahead == ',') ADVANCE(272); - if (lookahead == '-') ADVANCE(330); - if (lookahead == '.') ADVANCE(406); - if (lookahead == '/') ADVANCE(342); - if (lookahead == '<') ADVANCE(367); - if (lookahead == '=') ADVANCE(222); - if (lookahead == '>') ADVANCE(531); - if (lookahead == '?') ADVANCE(390); - if (lookahead == 'L') ADVANCE(542); - if (lookahead == 'R') ADVANCE(543); - if (lookahead == 'U') ADVANCE(544); - if (lookahead == '[') ADVANCE(379); - if (lookahead == '\\') SKIP(124) - if (lookahead == '^') ADVANCE(351); - if (lookahead == 'u') ADVANCE(545); - if (lookahead == '|') ADVANCE(350); + if (lookahead == '!') ADVANCE(349); + if (lookahead == '"') ADVANCE(468); + if (lookahead == '&') ADVANCE(383); + if (lookahead == '\'') ADVANCE(459); + if (lookahead == '(') ADVANCE(348); + if (lookahead == ')') ADVANCE(292); + if (lookahead == '*') ADVANCE(369); + if (lookahead == '+') ADVANCE(365); + if (lookahead == ',') ADVANCE(291); + if (lookahead == '-') ADVANCE(356); + if (lookahead == '.') ADVANCE(436); + if (lookahead == '/') ADVANCE(221); + if (lookahead == '0') ADVANCE(443); + if (lookahead == ':') ADVANCE(231); + if (lookahead == '<') ADVANCE(393); + if (lookahead == '=') ADVANCE(413); + if (lookahead == '>') ADVANCE(579); + if (lookahead == 'F') ADVANCE(508); + if (lookahead == 'L') ADVANCE(482); + if (lookahead == 'R') ADVANCE(485); + if (lookahead == 'T') ADVANCE(512); + if (lookahead == 'U') ADVANCE(486); + if (lookahead == '[') ADVANCE(408); + if (lookahead == '\\') ADVANCE(12); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(571); + if (lookahead == 'b') ADVANCE(554); + if (lookahead == 'c') ADVANCE(533); + if (lookahead == 'd') ADVANCE(550); + if (lookahead == 'f') ADVANCE(517); + if (lookahead == 'i') ADVANCE(547); + if (lookahead == 'm') ADVANCE(519); + if (lookahead == 'n') ADVANCE(567); + if (lookahead == 'p') ADVANCE(564); + if (lookahead == 's') ADVANCE(534); + if (lookahead == 't') ADVANCE(559); + if (lookahead == 'u') ADVANCE(489); + if (lookahead == 'v') ADVANCE(551); + if (lookahead == '{') ADVANCE(406); + if (lookahead == '~') ADVANCE(351); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(155) - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + lookahead == ' ') SKIP(154) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(445); END_STATE(); case 155: - if (lookahead == '!') ADVANCE(221); - if (lookahead == '"') ADVANCE(439); - if (lookahead == '%') ADVANCE(344); - if (lookahead == '&') ADVANCE(354); - if (lookahead == '(') ADVANCE(319); - if (lookahead == '*') ADVANCE(340); - if (lookahead == '+') ADVANCE(334); - if (lookahead == ',') ADVANCE(272); - if (lookahead == '-') ADVANCE(330); - if (lookahead == '.') ADVANCE(406); - if (lookahead == '/') ADVANCE(342); - if (lookahead == '<') ADVANCE(367); - if (lookahead == '=') ADVANCE(222); - if (lookahead == '>') ADVANCE(531); - if (lookahead == '?') ADVANCE(390); - if (lookahead == 'L') ADVANCE(454); - if (lookahead == 'R') ADVANCE(456); - if (lookahead == 'U') ADVANCE(458); - if (lookahead == '[') ADVANCE(379); - if (lookahead == '\\') SKIP(124) - if (lookahead == '^') ADVANCE(351); - if (lookahead == 'u') ADVANCE(461); - if (lookahead == '|') ADVANCE(350); + if (lookahead == '!') ADVANCE(349); + if (lookahead == '"') ADVANCE(468); + if (lookahead == '&') ADVANCE(382); + if (lookahead == '\'') ADVANCE(459); + if (lookahead == '(') ADVANCE(348); + if (lookahead == ')') ADVANCE(292); + if (lookahead == '*') ADVANCE(369); + if (lookahead == '+') ADVANCE(365); + if (lookahead == ',') ADVANCE(291); + if (lookahead == '-') ADVANCE(356); + if (lookahead == '.') ADVANCE(436); + if (lookahead == '/') ADVANCE(221); + if (lookahead == '0') ADVANCE(443); + if (lookahead == ':') ADVANCE(418); + if (lookahead == ';') ADVANCE(402); + if (lookahead == '<') ADVANCE(393); + if (lookahead == '=') ADVANCE(413); + if (lookahead == '>') ADVANCE(579); + if (lookahead == 'F') ADVANCE(508); + if (lookahead == 'L') ADVANCE(482); + if (lookahead == 'R') ADVANCE(485); + if (lookahead == 'T') ADVANCE(512); + if (lookahead == 'U') ADVANCE(486); + if (lookahead == '[') ADVANCE(408); + if (lookahead == '\\') ADVANCE(20); + if (lookahead == ']') ADVANCE(412); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(571); + if (lookahead == 'b') ADVANCE(554); + if (lookahead == 'c') ADVANCE(533); + if (lookahead == 'd') ADVANCE(550); + if (lookahead == 'f') ADVANCE(517); + if (lookahead == 'i') ADVANCE(547); + if (lookahead == 'm') ADVANCE(519); + if (lookahead == 'n') ADVANCE(567); + if (lookahead == 'p') ADVANCE(564); + if (lookahead == 's') ADVANCE(534); + if (lookahead == 't') ADVANCE(559); + if (lookahead == 'u') ADVANCE(489); + if (lookahead == 'v') ADVANCE(551); + if (lookahead == '{') ADVANCE(406); + if (lookahead == '}') ADVANCE(407); + if (lookahead == '~') ADVANCE(351); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(155) - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(524); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(445); END_STATE(); case 156: - if (lookahead == '!') ADVANCE(221); - if (lookahead == '#') ADVANCE(237); - if (lookahead == '%') ADVANCE(344); - if (lookahead == '&') ADVANCE(354); - if (lookahead == '(') ADVANCE(319); - if (lookahead == ')') ADVANCE(273); - if (lookahead == '*') ADVANCE(340); - if (lookahead == '+') ADVANCE(333); - if (lookahead == ',') ADVANCE(272); - if (lookahead == '-') ADVANCE(323); - if (lookahead == '/') ADVANCE(342); - if (lookahead == ':') ADVANCE(219); - if (lookahead == ';') ADVANCE(373); - if (lookahead == '<') ADVANCE(368); - if (lookahead == '=') ADVANCE(222); - if (lookahead == '>') ADVANCE(359); - if (lookahead == '[') ADVANCE(380); - if (lookahead == '\\') SKIP(18) - if (lookahead == '^') ADVANCE(351); - if (lookahead == 'b') ADVANCE(512); - if (lookahead == 'c') ADVANCE(497); - if (lookahead == 'd') ADVANCE(508); - if (lookahead == 'f') ADVANCE(505); - if (lookahead == 'i') ADVANCE(506); - if (lookahead == 's') ADVANCE(498); - if (lookahead == 'u') ADVANCE(501); - if (lookahead == 'v') ADVANCE(511); - if (lookahead == '|') ADVANCE(350); - if (lookahead == '}') ADVANCE(378); - if (lookahead == '~') ADVANCE(322); + if (lookahead == '!') ADVANCE(349); + if (lookahead == '\'') ADVANCE(459); + if (lookahead == '(') ADVANCE(348); + if (lookahead == ')') ADVANCE(292); + if (lookahead == '+') ADVANCE(367); + if (lookahead == '-') ADVANCE(360); + if (lookahead == '.') ADVANCE(260); + if (lookahead == '/') ADVANCE(221); + if (lookahead == '0') ADVANCE(443); + if (lookahead == 'L') ADVANCE(500); + if (lookahead == 'U') ADVANCE(501); + if (lookahead == '\\') ADVANCE(88); + if (sym_identifier_character_set_5(lookahead)) ADVANCE(571); + if (lookahead == 'u') ADVANCE(502); + if (lookahead == '~') ADVANCE(351); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(156) - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(524); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(445); END_STATE(); case 157: - if (lookahead == '!') ADVANCE(221); - if (lookahead == '%') ADVANCE(345); - if (lookahead == '&') ADVANCE(355); - if (lookahead == '(') ADVANCE(319); - if (lookahead == ')') ADVANCE(273); - if (lookahead == '*') ADVANCE(341); - if (lookahead == '+') ADVANCE(337); - if (lookahead == ',') ADVANCE(272); - if (lookahead == '-') ADVANCE(328); - if (lookahead == '.') ADVANCE(404); - if (lookahead == '/') ADVANCE(343); - if (lookahead == ':') ADVANCE(389); - if (lookahead == ';') ADVANCE(373); - if (lookahead == '<') ADVANCE(365); - if (lookahead == '=') ADVANCE(385); - if (lookahead == '>') ADVANCE(360); - if (lookahead == '?') ADVANCE(390); - if (lookahead == '[') ADVANCE(379); - if (lookahead == '\\') SKIP(30) - if (lookahead == '^') ADVANCE(352); - if (lookahead == '{') ADVANCE(377); - if (lookahead == '|') ADVANCE(349); + if (lookahead == '!') ADVANCE(233); + if (lookahead == '"') ADVANCE(468); + if (lookahead == '%') ADVANCE(374); + if (lookahead == '&') ADVANCE(384); + if (lookahead == '(') ADVANCE(348); + if (lookahead == ')') ADVANCE(292); + if (lookahead == '*') ADVANCE(370); + if (lookahead == '+') ADVANCE(366); + if (lookahead == ',') ADVANCE(291); + if (lookahead == '-') ADVANCE(357); + if (lookahead == '.') ADVANCE(433); + if (lookahead == '/') ADVANCE(372); + if (lookahead == '<') ADVANCE(394); + if (lookahead == '=') ADVANCE(414); + if (lookahead == '>') ADVANCE(389); + if (lookahead == '?') ADVANCE(419); + if (lookahead == 'L') ADVANCE(590); + if (lookahead == 'R') ADVANCE(591); + if (lookahead == 'U') ADVANCE(592); + if (lookahead == '[') ADVANCE(408); + if (lookahead == '\\') ADVANCE(42); + if (lookahead == '^') ADVANCE(381); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 't') || + ('v' <= lookahead && lookahead <= 'z')) ADVANCE(599); + if (lookahead == 'u') ADVANCE(593); + if (lookahead == '|') ADVANCE(378); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(157) - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(524); + lookahead == ' ') SKIP(158) + if (sym_identifier_character_set_6(lookahead)) ADVANCE(571); END_STATE(); case 158: - if (lookahead == '!') ADVANCE(221); - if (lookahead == '%') ADVANCE(345); - if (lookahead == '&') ADVANCE(355); - if (lookahead == '(') ADVANCE(319); - if (lookahead == ')') ADVANCE(273); - if (lookahead == '*') ADVANCE(341); - if (lookahead == '+') ADVANCE(337); - if (lookahead == ',') ADVANCE(272); - if (lookahead == '-') ADVANCE(328); - if (lookahead == '.') ADVANCE(404); - if (lookahead == '/') ADVANCE(343); - if (lookahead == ':') ADVANCE(219); - if (lookahead == ';') ADVANCE(373); - if (lookahead == '<') ADVANCE(365); - if (lookahead == '=') ADVANCE(385); - if (lookahead == '>') ADVANCE(360); - if (lookahead == '?') ADVANCE(390); - if (lookahead == '[') ADVANCE(380); - if (lookahead == '\\') SKIP(28) - if (lookahead == '^') ADVANCE(352); - if (lookahead == '{') ADVANCE(377); - if (lookahead == '|') ADVANCE(349); - if (lookahead == '~') ADVANCE(322); + if (lookahead == '!') ADVANCE(233); + if (lookahead == '"') ADVANCE(468); + if (lookahead == '%') ADVANCE(374); + if (lookahead == '&') ADVANCE(384); + if (lookahead == '(') ADVANCE(348); + if (lookahead == ')') ADVANCE(292); + if (lookahead == '*') ADVANCE(370); + if (lookahead == '+') ADVANCE(366); + if (lookahead == ',') ADVANCE(291); + if (lookahead == '-') ADVANCE(357); + if (lookahead == '.') ADVANCE(433); + if (lookahead == '/') ADVANCE(372); + if (lookahead == '<') ADVANCE(394); + if (lookahead == '=') ADVANCE(414); + if (lookahead == '>') ADVANCE(389); + if (lookahead == '?') ADVANCE(419); + if (lookahead == 'L') ADVANCE(483); + if (lookahead == 'R') ADVANCE(485); + if (lookahead == 'U') ADVANCE(487); + if (lookahead == '[') ADVANCE(408); + if (lookahead == '\\') ADVANCE(42); + if (lookahead == '^') ADVANCE(381); + if (sym_identifier_character_set_5(lookahead)) ADVANCE(571); + if (lookahead == 'u') ADVANCE(490); + if (lookahead == '|') ADVANCE(378); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(158) - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(524); END_STATE(); case 159: - if (lookahead == '!') ADVANCE(221); - if (lookahead == '%') ADVANCE(345); - if (lookahead == '&') ADVANCE(355); - if (lookahead == '(') ADVANCE(319); - if (lookahead == ')') ADVANCE(273); - if (lookahead == '*') ADVANCE(341); - if (lookahead == '+') ADVANCE(337); - if (lookahead == ',') ADVANCE(272); - if (lookahead == '-') ADVANCE(328); - if (lookahead == '.') ADVANCE(404); - if (lookahead == '/') ADVANCE(343); - if (lookahead == ':') ADVANCE(388); - if (lookahead == '<') ADVANCE(365); - if (lookahead == '=') ADVANCE(385); - if (lookahead == '>') ADVANCE(360); - if (lookahead == '?') ADVANCE(390); - if (lookahead == '[') ADVANCE(379); - if (lookahead == '\\') SKIP(98) - if (lookahead == '^') ADVANCE(352); - if (lookahead == '{') ADVANCE(377); - if (lookahead == '|') ADVANCE(349); + if (lookahead == '!') ADVANCE(233); + if (lookahead == '"') ADVANCE(468); + if (lookahead == '%') ADVANCE(374); + if (lookahead == '&') ADVANCE(384); + if (lookahead == '(') ADVANCE(348); + if (lookahead == ')') ADVANCE(292); + if (lookahead == '*') ADVANCE(370); + if (lookahead == '+') ADVANCE(366); + if (lookahead == ',') ADVANCE(291); + if (lookahead == '-') ADVANCE(358); + if (lookahead == '.') ADVANCE(435); + if (lookahead == '/') ADVANCE(372); + if (lookahead == ':') ADVANCE(417); + if (lookahead == ';') ADVANCE(402); + if (lookahead == '<') ADVANCE(394); + if (lookahead == '=') ADVANCE(414); + if (lookahead == '>') ADVANCE(389); + if (lookahead == '?') ADVANCE(419); + if (lookahead == 'L') ADVANCE(590); + if (lookahead == 'R') ADVANCE(591); + if (lookahead == 'U') ADVANCE(592); + if (lookahead == '[') ADVANCE(408); + if (lookahead == '\\') ADVANCE(40); + if (lookahead == ']') ADVANCE(412); + if (lookahead == '^') ADVANCE(381); + if (('A' <= lookahead && lookahead <= '_') || + ('a' <= lookahead && lookahead <= 't') || + ('v' <= lookahead && lookahead <= 'z')) ADVANCE(599); + if (lookahead == 'u') ADVANCE(593); + if (lookahead == '{') ADVANCE(406); + if (lookahead == '|') ADVANCE(378); + if (lookahead == '}') ADVANCE(407); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(159) - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(524); + lookahead == ' ') SKIP(160) + if (sym_identifier_character_set_6(lookahead)) ADVANCE(571); END_STATE(); case 160: - if (lookahead == '!') ADVANCE(221); - if (lookahead == '%') ADVANCE(345); - if (lookahead == '&') ADVANCE(355); - if (lookahead == '(') ADVANCE(319); - if (lookahead == ')') ADVANCE(273); - if (lookahead == '*') ADVANCE(341); - if (lookahead == '+') ADVANCE(337); - if (lookahead == ',') ADVANCE(272); - if (lookahead == '-') ADVANCE(328); - if (lookahead == '.') ADVANCE(404); - if (lookahead == '/') ADVANCE(343); - if (lookahead == '<') ADVANCE(365); - if (lookahead == '=') ADVANCE(385); - if (lookahead == '>') ADVANCE(360); - if (lookahead == '?') ADVANCE(390); - if (lookahead == '[') ADVANCE(381); - if (lookahead == '\\') SKIP(48) - if (lookahead == '^') ADVANCE(352); - if (lookahead == '|') ADVANCE(349); + if (lookahead == '!') ADVANCE(233); + if (lookahead == '"') ADVANCE(468); + if (lookahead == '%') ADVANCE(374); + if (lookahead == '&') ADVANCE(384); + if (lookahead == '(') ADVANCE(348); + if (lookahead == ')') ADVANCE(292); + if (lookahead == '*') ADVANCE(370); + if (lookahead == '+') ADVANCE(366); + if (lookahead == ',') ADVANCE(291); + if (lookahead == '-') ADVANCE(358); + if (lookahead == '.') ADVANCE(435); + if (lookahead == '/') ADVANCE(372); + if (lookahead == ':') ADVANCE(417); + if (lookahead == ';') ADVANCE(402); + if (lookahead == '<') ADVANCE(394); + if (lookahead == '=') ADVANCE(414); + if (lookahead == '>') ADVANCE(389); + if (lookahead == '?') ADVANCE(419); + if (lookahead == 'L') ADVANCE(483); + if (lookahead == 'R') ADVANCE(485); + if (lookahead == 'U') ADVANCE(487); + if (lookahead == '[') ADVANCE(408); + if (lookahead == '\\') ADVANCE(40); + if (lookahead == ']') ADVANCE(412); + if (lookahead == '^') ADVANCE(381); + if (sym_identifier_character_set_7(lookahead)) ADVANCE(571); + if (lookahead == 'u') ADVANCE(490); + if (lookahead == '{') ADVANCE(406); + if (lookahead == '|') ADVANCE(378); + if (lookahead == '}') ADVANCE(407); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(160) - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(524); END_STATE(); case 161: - if (lookahead == '!') ADVANCE(221); - if (lookahead == '%') ADVANCE(345); - if (lookahead == '&') ADVANCE(355); - if (lookahead == '(') ADVANCE(319); - if (lookahead == ')') ADVANCE(273); - if (lookahead == '*') ADVANCE(341); - if (lookahead == '+') ADVANCE(337); - if (lookahead == ',') ADVANCE(272); - if (lookahead == '-') ADVANCE(328); - if (lookahead == '.') ADVANCE(404); - if (lookahead == '/') ADVANCE(343); - if (lookahead == '<') ADVANCE(365); - if (lookahead == '=') ADVANCE(385); - if (lookahead == '>') ADVANCE(360); - if (lookahead == '?') ADVANCE(390); - if (lookahead == '[') ADVANCE(379); - if (lookahead == '\\') SKIP(38) - if (lookahead == '^') ADVANCE(352); - if (lookahead == 'b') ADVANCE(512); - if (lookahead == 'c') ADVANCE(497); - if (lookahead == 'd') ADVANCE(508); - if (lookahead == 'f') ADVANCE(505); - if (lookahead == 'i') ADVANCE(506); - if (lookahead == 's') ADVANCE(498); - if (lookahead == 'u') ADVANCE(501); - if (lookahead == 'v') ADVANCE(511); - if (lookahead == '{') ADVANCE(377); - if (lookahead == '|') ADVANCE(349); + if (lookahead == '!') ADVANCE(233); + if (lookahead == '"') ADVANCE(468); + if (lookahead == '%') ADVANCE(374); + if (lookahead == '&') ADVANCE(384); + if (lookahead == '(') ADVANCE(348); + if (lookahead == '*') ADVANCE(370); + if (lookahead == '+') ADVANCE(366); + if (lookahead == ',') ADVANCE(291); + if (lookahead == '-') ADVANCE(358); + if (lookahead == '.') ADVANCE(435); + if (lookahead == '/') ADVANCE(372); + if (lookahead == '<') ADVANCE(394); + if (lookahead == '=') ADVANCE(414); + if (lookahead == '>') ADVANCE(579); + if (lookahead == '?') ADVANCE(419); + if (lookahead == 'L') ADVANCE(590); + if (lookahead == 'R') ADVANCE(591); + if (lookahead == 'U') ADVANCE(592); + if (lookahead == '[') ADVANCE(408); + if (lookahead == '\\') ADVANCE(46); + if (lookahead == '^') ADVANCE(381); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 't') || + ('v' <= lookahead && lookahead <= 'z')) ADVANCE(599); + if (lookahead == 'u') ADVANCE(593); + if (lookahead == '|') ADVANCE(378); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(161) - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(524); + lookahead == ' ') SKIP(162) + if (sym_identifier_character_set_6(lookahead)) ADVANCE(571); END_STATE(); case 162: - if (lookahead == '!') ADVANCE(221); - if (lookahead == '%') ADVANCE(345); - if (lookahead == '&') ADVANCE(355); - if (lookahead == '(') ADVANCE(319); - if (lookahead == ')') ADVANCE(273); - if (lookahead == '*') ADVANCE(341); - if (lookahead == '+') ADVANCE(337); - if (lookahead == ',') ADVANCE(272); - if (lookahead == '-') ADVANCE(328); - if (lookahead == '.') ADVANCE(404); - if (lookahead == '/') ADVANCE(343); - if (lookahead == '<') ADVANCE(365); - if (lookahead == '=') ADVANCE(385); - if (lookahead == '>') ADVANCE(360); - if (lookahead == '?') ADVANCE(390); - if (lookahead == '[') ADVANCE(379); - if (lookahead == '\\') SKIP(128) - if (lookahead == '^') ADVANCE(352); - if (lookahead == '|') ADVANCE(349); + if (lookahead == '!') ADVANCE(233); + if (lookahead == '"') ADVANCE(468); + if (lookahead == '%') ADVANCE(374); + if (lookahead == '&') ADVANCE(384); + if (lookahead == '(') ADVANCE(348); + if (lookahead == '*') ADVANCE(370); + if (lookahead == '+') ADVANCE(366); + if (lookahead == ',') ADVANCE(291); + if (lookahead == '-') ADVANCE(358); + if (lookahead == '.') ADVANCE(435); + if (lookahead == '/') ADVANCE(372); + if (lookahead == '<') ADVANCE(394); + if (lookahead == '=') ADVANCE(414); + if (lookahead == '>') ADVANCE(579); + if (lookahead == '?') ADVANCE(419); + if (lookahead == 'L') ADVANCE(483); + if (lookahead == 'R') ADVANCE(485); + if (lookahead == 'U') ADVANCE(487); + if (lookahead == '[') ADVANCE(408); + if (lookahead == '\\') ADVANCE(46); + if (lookahead == '^') ADVANCE(381); + if (sym_identifier_character_set_5(lookahead)) ADVANCE(571); + if (lookahead == 'u') ADVANCE(490); + if (lookahead == '|') ADVANCE(378); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(162) - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(524); END_STATE(); case 163: - if (lookahead == '!') ADVANCE(221); - if (lookahead == '%') ADVANCE(345); - if (lookahead == '&') ADVANCE(355); - if (lookahead == '(') ADVANCE(319); - if (lookahead == ')') ADVANCE(273); - if (lookahead == '*') ADVANCE(341); - if (lookahead == '+') ADVANCE(337); - if (lookahead == ',') ADVANCE(272); - if (lookahead == '-') ADVANCE(328); - if (lookahead == '.') ADVANCE(404); - if (lookahead == '/') ADVANCE(343); - if (lookahead == '<') ADVANCE(365); - if (lookahead == '=') ADVANCE(385); - if (lookahead == '>') ADVANCE(360); - if (lookahead == '?') ADVANCE(390); - if (lookahead == '[') ADVANCE(379); - if (lookahead == '\\') SKIP(128) - if (lookahead == '^') ADVANCE(352); - if (lookahead == '|') ADVANCE(349); + if (lookahead == '!') ADVANCE(233); + if (lookahead == '"') ADVANCE(468); + if (lookahead == '%') ADVANCE(373); + if (lookahead == '&') ADVANCE(383); + if (lookahead == '(') ADVANCE(348); + if (lookahead == ')') ADVANCE(292); + if (lookahead == '*') ADVANCE(369); + if (lookahead == '+') ADVANCE(363); + if (lookahead == ',') ADVANCE(291); + if (lookahead == '-') ADVANCE(359); + if (lookahead == '.') ADVANCE(435); + if (lookahead == '/') ADVANCE(371); + if (lookahead == ':') ADVANCE(417); + if (lookahead == ';') ADVANCE(402); + if (lookahead == '<') ADVANCE(396); + if (lookahead == '=') ADVANCE(234); + if (lookahead == '>') ADVANCE(388); + if (lookahead == '?') ADVANCE(419); + if (lookahead == 'L') ADVANCE(590); + if (lookahead == 'R') ADVANCE(591); + if (lookahead == 'U') ADVANCE(592); + if (lookahead == '[') ADVANCE(408); + if (lookahead == '\\') ADVANCE(64); + if (lookahead == ']') ADVANCE(412); + if (lookahead == '^') ADVANCE(380); + if (('A' <= lookahead && lookahead <= '_') || + ('a' <= lookahead && lookahead <= 't') || + ('v' <= lookahead && lookahead <= 'z')) ADVANCE(599); + if (lookahead == 'u') ADVANCE(593); + if (lookahead == '|') ADVANCE(379); + if (lookahead == '}') ADVANCE(407); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(162) - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + lookahead == ' ') SKIP(164) + if (sym_identifier_character_set_6(lookahead)) ADVANCE(571); END_STATE(); case 164: - if (lookahead == '!') ADVANCE(221); - if (lookahead == '%') ADVANCE(345); - if (lookahead == '&') ADVANCE(355); - if (lookahead == '(') ADVANCE(319); - if (lookahead == ')') ADVANCE(273); - if (lookahead == '*') ADVANCE(341); - if (lookahead == '+') ADVANCE(337); - if (lookahead == ',') ADVANCE(272); - if (lookahead == '-') ADVANCE(328); - if (lookahead == '.') ADVANCE(404); - if (lookahead == '/') ADVANCE(343); - if (lookahead == '<') ADVANCE(365); - if (lookahead == '=') ADVANCE(385); - if (lookahead == '>') ADVANCE(360); - if (lookahead == '?') ADVANCE(390); - if (lookahead == '[') ADVANCE(382); - if (lookahead == '\\') SKIP(114) - if (lookahead == '^') ADVANCE(352); - if (lookahead == '|') ADVANCE(349); + if (lookahead == '!') ADVANCE(233); + if (lookahead == '"') ADVANCE(468); + if (lookahead == '%') ADVANCE(373); + if (lookahead == '&') ADVANCE(383); + if (lookahead == '(') ADVANCE(348); + if (lookahead == ')') ADVANCE(292); + if (lookahead == '*') ADVANCE(369); + if (lookahead == '+') ADVANCE(363); + if (lookahead == ',') ADVANCE(291); + if (lookahead == '-') ADVANCE(359); + if (lookahead == '.') ADVANCE(435); + if (lookahead == '/') ADVANCE(371); + if (lookahead == ':') ADVANCE(417); + if (lookahead == ';') ADVANCE(402); + if (lookahead == '<') ADVANCE(396); + if (lookahead == '=') ADVANCE(234); + if (lookahead == '>') ADVANCE(388); + if (lookahead == '?') ADVANCE(419); + if (lookahead == 'L') ADVANCE(483); + if (lookahead == 'R') ADVANCE(485); + if (lookahead == 'U') ADVANCE(487); + if (lookahead == '[') ADVANCE(408); + if (lookahead == '\\') ADVANCE(64); + if (lookahead == ']') ADVANCE(412); + if (lookahead == '^') ADVANCE(380); + if (sym_identifier_character_set_7(lookahead)) ADVANCE(571); + if (lookahead == 'u') ADVANCE(490); + if (lookahead == '|') ADVANCE(379); + if (lookahead == '}') ADVANCE(407); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(164) - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(524); END_STATE(); case 165: - if (lookahead == '!') ADVANCE(221); - if (lookahead == '%') ADVANCE(345); - if (lookahead == '&') ADVANCE(355); - if (lookahead == '(') ADVANCE(319); - if (lookahead == ')') ADVANCE(273); - if (lookahead == '*') ADVANCE(341); - if (lookahead == '+') ADVANCE(337); - if (lookahead == ',') ADVANCE(272); - if (lookahead == '-') ADVANCE(329); - if (lookahead == '.') ADVANCE(406); - if (lookahead == '/') ADVANCE(343); - if (lookahead == ':') ADVANCE(389); - if (lookahead == ';') ADVANCE(373); - if (lookahead == '<') ADVANCE(365); - if (lookahead == '=') ADVANCE(385); - if (lookahead == '>') ADVANCE(360); - if (lookahead == '?') ADVANCE(390); - if (lookahead == '[') ADVANCE(380); - if (lookahead == '\\') SKIP(26) - if (lookahead == '^') ADVANCE(352); - if (lookahead == '{') ADVANCE(377); - if (lookahead == '|') ADVANCE(349); - if (lookahead == '}') ADVANCE(378); - if (lookahead == '~') ADVANCE(322); + if (lookahead == '!') ADVANCE(233); + if (lookahead == '"') ADVANCE(468); + if (lookahead == '%') ADVANCE(373); + if (lookahead == '&') ADVANCE(383); + if (lookahead == '(') ADVANCE(348); + if (lookahead == '*') ADVANCE(369); + if (lookahead == '+') ADVANCE(363); + if (lookahead == ',') ADVANCE(291); + if (lookahead == '-') ADVANCE(359); + if (lookahead == '.') ADVANCE(435); + if (lookahead == '/') ADVANCE(371); + if (lookahead == '<') ADVANCE(396); + if (lookahead == '=') ADVANCE(234); + if (lookahead == '>') ADVANCE(579); + if (lookahead == '?') ADVANCE(419); + if (lookahead == 'L') ADVANCE(590); + if (lookahead == 'R') ADVANCE(591); + if (lookahead == 'U') ADVANCE(592); + if (lookahead == '[') ADVANCE(408); + if (lookahead == '\\') ADVANCE(116); + if (lookahead == '^') ADVANCE(380); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 't') || + ('v' <= lookahead && lookahead <= 'z')) ADVANCE(599); + if (lookahead == 'u') ADVANCE(593); + if (lookahead == '|') ADVANCE(379); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(165) - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(524); + lookahead == ' ') SKIP(166) + if (sym_identifier_character_set_6(lookahead)) ADVANCE(571); END_STATE(); case 166: - if (lookahead == '!') ADVANCE(221); - if (lookahead == '%') ADVANCE(345); - if (lookahead == '&') ADVANCE(355); - if (lookahead == '(') ADVANCE(319); - if (lookahead == ')') ADVANCE(273); - if (lookahead == '*') ADVANCE(341); - if (lookahead == '+') ADVANCE(337); - if (lookahead == ',') ADVANCE(272); - if (lookahead == '-') ADVANCE(329); - if (lookahead == '.') ADVANCE(406); - if (lookahead == '/') ADVANCE(343); - if (lookahead == ':') ADVANCE(389); - if (lookahead == ';') ADVANCE(373); - if (lookahead == '<') ADVANCE(365); - if (lookahead == '=') ADVANCE(385); - if (lookahead == '>') ADVANCE(360); - if (lookahead == '?') ADVANCE(390); - if (lookahead == '[') ADVANCE(379); - if (lookahead == '\\') SKIP(104) - if (lookahead == ']') ADVANCE(383); - if (lookahead == '^') ADVANCE(352); - if (lookahead == '{') ADVANCE(377); - if (lookahead == '|') ADVANCE(349); - if (lookahead == '}') ADVANCE(378); + if (lookahead == '!') ADVANCE(233); + if (lookahead == '"') ADVANCE(468); + if (lookahead == '%') ADVANCE(373); + if (lookahead == '&') ADVANCE(383); + if (lookahead == '(') ADVANCE(348); + if (lookahead == '*') ADVANCE(369); + if (lookahead == '+') ADVANCE(363); + if (lookahead == ',') ADVANCE(291); + if (lookahead == '-') ADVANCE(359); + if (lookahead == '.') ADVANCE(435); + if (lookahead == '/') ADVANCE(371); + if (lookahead == '<') ADVANCE(396); + if (lookahead == '=') ADVANCE(234); + if (lookahead == '>') ADVANCE(579); + if (lookahead == '?') ADVANCE(419); + if (lookahead == 'L') ADVANCE(483); + if (lookahead == 'R') ADVANCE(485); + if (lookahead == 'U') ADVANCE(487); + if (lookahead == '[') ADVANCE(408); + if (lookahead == '\\') ADVANCE(116); + if (lookahead == '^') ADVANCE(380); + if (sym_identifier_character_set_5(lookahead)) ADVANCE(571); + if (lookahead == 'u') ADVANCE(490); + if (lookahead == '|') ADVANCE(379); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(166) - if (('A' <= lookahead && lookahead <= '_') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(524); END_STATE(); case 167: - if (lookahead == '!') ADVANCE(221); - if (lookahead == '%') ADVANCE(345); - if (lookahead == '&') ADVANCE(355); - if (lookahead == '(') ADVANCE(319); - if (lookahead == ')') ADVANCE(273); - if (lookahead == '*') ADVANCE(341); - if (lookahead == '+') ADVANCE(337); - if (lookahead == ',') ADVANCE(272); - if (lookahead == '-') ADVANCE(329); - if (lookahead == '.') ADVANCE(406); - if (lookahead == '/') ADVANCE(343); - if (lookahead == ':') ADVANCE(389); - if (lookahead == '<') ADVANCE(365); - if (lookahead == '=') ADVANCE(385); - if (lookahead == '>') ADVANCE(531); - if (lookahead == '?') ADVANCE(390); - if (lookahead == '[') ADVANCE(379); - if (lookahead == '\\') SKIP(32) - if (lookahead == '^') ADVANCE(352); - if (lookahead == '{') ADVANCE(377); - if (lookahead == '|') ADVANCE(349); + if (lookahead == '!') ADVANCE(233); + if (lookahead == '#') ADVANCE(250); + if (lookahead == '%') ADVANCE(373); + if (lookahead == '&') ADVANCE(383); + if (lookahead == '(') ADVANCE(348); + if (lookahead == ')') ADVANCE(292); + if (lookahead == '*') ADVANCE(369); + if (lookahead == '+') ADVANCE(362); + if (lookahead == ',') ADVANCE(291); + if (lookahead == '-') ADVANCE(352); + if (lookahead == '/') ADVANCE(371); + if (lookahead == ':') ADVANCE(231); + if (lookahead == ';') ADVANCE(402); + if (lookahead == '<') ADVANCE(397); + if (lookahead == '=') ADVANCE(234); + if (lookahead == '>') ADVANCE(388); + if (lookahead == '[') ADVANCE(409); + if (lookahead == '\\') ADVANCE(24); + if (lookahead == '^') ADVANCE(380); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(571); + if (lookahead == 'b') ADVANCE(554); + if (lookahead == 'c') ADVANCE(533); + if (lookahead == 'd') ADVANCE(550); + if (lookahead == 'f') ADVANCE(546); + if (lookahead == 'i') ADVANCE(547); + if (lookahead == 'm') ADVANCE(519); + if (lookahead == 'n') ADVANCE(567); + if (lookahead == 'p') ADVANCE(564); + if (lookahead == 's') ADVANCE(534); + if (lookahead == 'u') ADVANCE(539); + if (lookahead == 'v') ADVANCE(551); + if (lookahead == '|') ADVANCE(379); + if (lookahead == '~') ADVANCE(351); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(167) - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(524); END_STATE(); case 168: - if (lookahead == '!') ADVANCE(221); - if (lookahead == '%') ADVANCE(345); - if (lookahead == '&') ADVANCE(355); - if (lookahead == '(') ADVANCE(319); - if (lookahead == ')') ADVANCE(273); - if (lookahead == '*') ADVANCE(341); - if (lookahead == '+') ADVANCE(337); - if (lookahead == ',') ADVANCE(272); - if (lookahead == '-') ADVANCE(329); - if (lookahead == '.') ADVANCE(406); - if (lookahead == '/') ADVANCE(343); - if (lookahead == ':') ADVANCE(388); - if (lookahead == ';') ADVANCE(373); - if (lookahead == '<') ADVANCE(365); - if (lookahead == '=') ADVANCE(385); - if (lookahead == '>') ADVANCE(360); - if (lookahead == '?') ADVANCE(390); - if (lookahead == '[') ADVANCE(380); - if (lookahead == '\\') SKIP(44) - if (lookahead == '^') ADVANCE(352); - if (lookahead == '{') ADVANCE(377); - if (lookahead == '|') ADVANCE(349); - if (lookahead == '}') ADVANCE(378); + if (lookahead == '!') ADVANCE(233); + if (lookahead == '%') ADVANCE(374); + if (lookahead == '&') ADVANCE(384); + if (lookahead == '(') ADVANCE(348); + if (lookahead == ')') ADVANCE(292); + if (lookahead == '*') ADVANCE(370); + if (lookahead == '+') ADVANCE(366); + if (lookahead == ',') ADVANCE(291); + if (lookahead == '-') ADVANCE(357); + if (lookahead == '.') ADVANCE(433); + if (lookahead == '/') ADVANCE(372); + if (lookahead == ':') ADVANCE(418); + if (lookahead == ';') ADVANCE(402); + if (lookahead == '<') ADVANCE(394); + if (lookahead == '=') ADVANCE(414); + if (lookahead == '>') ADVANCE(389); + if (lookahead == '?') ADVANCE(419); + if (lookahead == '[') ADVANCE(408); + if (lookahead == '\\') ADVANCE(36); + if (lookahead == '^') ADVANCE(381); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(571); + if (lookahead == '{') ADVANCE(406); + if (lookahead == '|') ADVANCE(378); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(168) - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(524); END_STATE(); case 169: - if (lookahead == '!') ADVANCE(221); - if (lookahead == '%') ADVANCE(345); - if (lookahead == '&') ADVANCE(355); - if (lookahead == '(') ADVANCE(319); - if (lookahead == ')') ADVANCE(273); - if (lookahead == '*') ADVANCE(341); - if (lookahead == '+') ADVANCE(337); - if (lookahead == ',') ADVANCE(272); - if (lookahead == '-') ADVANCE(329); - if (lookahead == '.') ADVANCE(406); - if (lookahead == '/') ADVANCE(343); - if (lookahead == ':') ADVANCE(388); - if (lookahead == ';') ADVANCE(373); - if (lookahead == '<') ADVANCE(365); - if (lookahead == '=') ADVANCE(385); - if (lookahead == '>') ADVANCE(360); - if (lookahead == '?') ADVANCE(390); - if (lookahead == '[') ADVANCE(379); - if (lookahead == '\\') SKIP(34) - if (lookahead == ']') ADVANCE(383); - if (lookahead == '^') ADVANCE(352); - if (lookahead == 'b') ADVANCE(512); - if (lookahead == 'c') ADVANCE(497); - if (lookahead == 'd') ADVANCE(508); - if (lookahead == 'f') ADVANCE(505); - if (lookahead == 'i') ADVANCE(506); - if (lookahead == 's') ADVANCE(498); - if (lookahead == 'u') ADVANCE(501); - if (lookahead == 'v') ADVANCE(511); - if (lookahead == '{') ADVANCE(377); - if (lookahead == '|') ADVANCE(349); - if (lookahead == '}') ADVANCE(378); + if (lookahead == '!') ADVANCE(233); + if (lookahead == '%') ADVANCE(374); + if (lookahead == '&') ADVANCE(384); + if (lookahead == '(') ADVANCE(348); + if (lookahead == ')') ADVANCE(292); + if (lookahead == '*') ADVANCE(370); + if (lookahead == '+') ADVANCE(366); + if (lookahead == ',') ADVANCE(291); + if (lookahead == '-') ADVANCE(357); + if (lookahead == '.') ADVANCE(433); + if (lookahead == '/') ADVANCE(372); + if (lookahead == ':') ADVANCE(231); + if (lookahead == ';') ADVANCE(402); + if (lookahead == '<') ADVANCE(394); + if (lookahead == '=') ADVANCE(414); + if (lookahead == '>') ADVANCE(389); + if (lookahead == '?') ADVANCE(419); + if (lookahead == '[') ADVANCE(409); + if (lookahead == '\\') ADVANCE(34); + if (lookahead == '^') ADVANCE(381); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(571); + if (lookahead == '{') ADVANCE(406); + if (lookahead == '|') ADVANCE(378); + if (lookahead == '~') ADVANCE(351); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(169) - if (('A' <= lookahead && lookahead <= '_') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(524); END_STATE(); case 170: - if (lookahead == '!') ADVANCE(221); - if (lookahead == '%') ADVANCE(345); - if (lookahead == '&') ADVANCE(355); - if (lookahead == '(') ADVANCE(319); - if (lookahead == ')') ADVANCE(273); - if (lookahead == '*') ADVANCE(341); - if (lookahead == '+') ADVANCE(337); - if (lookahead == ',') ADVANCE(272); - if (lookahead == '-') ADVANCE(329); - if (lookahead == '.') ADVANCE(406); - if (lookahead == '/') ADVANCE(343); - if (lookahead == ':') ADVANCE(388); - if (lookahead == ';') ADVANCE(373); - if (lookahead == '<') ADVANCE(365); - if (lookahead == '=') ADVANCE(385); - if (lookahead == '>') ADVANCE(360); - if (lookahead == '?') ADVANCE(390); - if (lookahead == '[') ADVANCE(379); - if (lookahead == '\\') SKIP(36) - if (lookahead == ']') ADVANCE(383); - if (lookahead == '^') ADVANCE(352); - if (lookahead == '{') ADVANCE(377); - if (lookahead == '|') ADVANCE(349); - if (lookahead == '}') ADVANCE(378); + if (lookahead == '!') ADVANCE(233); + if (lookahead == '%') ADVANCE(374); + if (lookahead == '&') ADVANCE(384); + if (lookahead == '(') ADVANCE(348); + if (lookahead == ')') ADVANCE(292); + if (lookahead == '*') ADVANCE(370); + if (lookahead == '+') ADVANCE(366); + if (lookahead == ',') ADVANCE(291); + if (lookahead == '-') ADVANCE(357); + if (lookahead == '.') ADVANCE(433); + if (lookahead == '/') ADVANCE(372); + if (lookahead == ':') ADVANCE(417); + if (lookahead == '<') ADVANCE(394); + if (lookahead == '=') ADVANCE(414); + if (lookahead == '>') ADVANCE(389); + if (lookahead == '?') ADVANCE(419); + if (lookahead == '[') ADVANCE(408); + if (lookahead == '\\') ADVANCE(112); + if (lookahead == '^') ADVANCE(381); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(571); + if (lookahead == '{') ADVANCE(406); + if (lookahead == '|') ADVANCE(378); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(170) - if (('A' <= lookahead && lookahead <= '_') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(524); END_STATE(); case 171: - if (lookahead == '!') ADVANCE(221); - if (lookahead == '%') ADVANCE(345); - if (lookahead == '&') ADVANCE(355); - if (lookahead == '(') ADVANCE(319); - if (lookahead == ')') ADVANCE(273); - if (lookahead == '*') ADVANCE(341); - if (lookahead == '+') ADVANCE(337); - if (lookahead == ',') ADVANCE(272); - if (lookahead == '-') ADVANCE(329); - if (lookahead == '.') ADVANCE(406); - if (lookahead == '/') ADVANCE(343); - if (lookahead == ':') ADVANCE(388); - if (lookahead == ';') ADVANCE(373); - if (lookahead == '<') ADVANCE(365); - if (lookahead == '=') ADVANCE(385); - if (lookahead == '>') ADVANCE(360); - if (lookahead == '?') ADVANCE(390); - if (lookahead == '[') ADVANCE(379); - if (lookahead == '\\') SKIP(110) - if (lookahead == ']') ADVANCE(383); - if (lookahead == '^') ADVANCE(352); - if (lookahead == '|') ADVANCE(349); - if (lookahead == '}') ADVANCE(378); + if (lookahead == '!') ADVANCE(233); + if (lookahead == '%') ADVANCE(374); + if (lookahead == '&') ADVANCE(384); + if (lookahead == '(') ADVANCE(348); + if (lookahead == ')') ADVANCE(292); + if (lookahead == '*') ADVANCE(370); + if (lookahead == '+') ADVANCE(366); + if (lookahead == ',') ADVANCE(291); + if (lookahead == '-') ADVANCE(357); + if (lookahead == '.') ADVANCE(433); + if (lookahead == '/') ADVANCE(372); + if (lookahead == '<') ADVANCE(394); + if (lookahead == '=') ADVANCE(414); + if (lookahead == '>') ADVANCE(389); + if (lookahead == '?') ADVANCE(419); + if (lookahead == '[') ADVANCE(410); + if (lookahead == '\\') ADVANCE(62); + if (lookahead == '^') ADVANCE(381); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(571); + if (lookahead == '|') ADVANCE(378); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(171) - if (('A' <= lookahead && lookahead <= '_') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(524); END_STATE(); case 172: - if (lookahead == '!') ADVANCE(221); - if (lookahead == '%') ADVANCE(345); - if (lookahead == '&') ADVANCE(355); - if (lookahead == '(') ADVANCE(319); - if (lookahead == ')') ADVANCE(273); - if (lookahead == '*') ADVANCE(341); - if (lookahead == '+') ADVANCE(337); - if (lookahead == ',') ADVANCE(272); - if (lookahead == '-') ADVANCE(329); - if (lookahead == '.') ADVANCE(406); - if (lookahead == '/') ADVANCE(343); - if (lookahead == ':') ADVANCE(388); - if (lookahead == ';') ADVANCE(373); - if (lookahead == '<') ADVANCE(365); - if (lookahead == '=') ADVANCE(385); - if (lookahead == '>') ADVANCE(360); - if (lookahead == '?') ADVANCE(390); - if (lookahead == '[') ADVANCE(379); - if (lookahead == '\\') SKIP(110) - if (lookahead == ']') ADVANCE(383); - if (lookahead == '^') ADVANCE(352); - if (lookahead == '|') ADVANCE(349); - if (lookahead == '}') ADVANCE(378); + if (lookahead == '!') ADVANCE(233); + if (lookahead == '%') ADVANCE(374); + if (lookahead == '&') ADVANCE(384); + if (lookahead == '(') ADVANCE(348); + if (lookahead == ')') ADVANCE(292); + if (lookahead == '*') ADVANCE(370); + if (lookahead == '+') ADVANCE(366); + if (lookahead == ',') ADVANCE(291); + if (lookahead == '-') ADVANCE(357); + if (lookahead == '.') ADVANCE(433); + if (lookahead == '/') ADVANCE(372); + if (lookahead == '<') ADVANCE(394); + if (lookahead == '=') ADVANCE(414); + if (lookahead == '>') ADVANCE(389); + if (lookahead == '?') ADVANCE(419); + if (lookahead == '[') ADVANCE(408); + if (lookahead == '\\') ADVANCE(48); + if (lookahead == '^') ADVANCE(381); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(571); + if (lookahead == 'b') ADVANCE(554); + if (lookahead == 'c') ADVANCE(533); + if (lookahead == 'd') ADVANCE(550); + if (lookahead == 'f') ADVANCE(546); + if (lookahead == 'i') ADVANCE(547); + if (lookahead == 'm') ADVANCE(519); + if (lookahead == 'n') ADVANCE(567); + if (lookahead == 'p') ADVANCE(564); + if (lookahead == 's') ADVANCE(534); + if (lookahead == 'u') ADVANCE(539); + if (lookahead == 'v') ADVANCE(551); + if (lookahead == '{') ADVANCE(406); + if (lookahead == '|') ADVANCE(378); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(171) - if (('A' <= lookahead && lookahead <= '_') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + lookahead == ' ') SKIP(172) END_STATE(); case 173: - if (lookahead == '!') ADVANCE(221); - if (lookahead == '%') ADVANCE(345); - if (lookahead == '&') ADVANCE(355); - if (lookahead == '(') ADVANCE(319); - if (lookahead == ')') ADVANCE(273); - if (lookahead == '*') ADVANCE(341); - if (lookahead == '+') ADVANCE(337); - if (lookahead == ',') ADVANCE(272); - if (lookahead == '-') ADVANCE(329); - if (lookahead == '.') ADVANCE(406); - if (lookahead == '/') ADVANCE(343); - if (lookahead == ':') ADVANCE(388); - if (lookahead == ';') ADVANCE(373); - if (lookahead == '<') ADVANCE(365); - if (lookahead == '=') ADVANCE(385); - if (lookahead == '>') ADVANCE(360); - if (lookahead == '?') ADVANCE(390); - if (lookahead == '[') ADVANCE(382); - if (lookahead == '\\') SKIP(120) - if (lookahead == ']') ADVANCE(383); - if (lookahead == '^') ADVANCE(352); - if (lookahead == '|') ADVANCE(349); - if (lookahead == '}') ADVANCE(378); + if (lookahead == '!') ADVANCE(233); + if (lookahead == '%') ADVANCE(374); + if (lookahead == '&') ADVANCE(384); + if (lookahead == '(') ADVANCE(348); + if (lookahead == ')') ADVANCE(292); + if (lookahead == '*') ADVANCE(370); + if (lookahead == '+') ADVANCE(366); + if (lookahead == ',') ADVANCE(291); + if (lookahead == '-') ADVANCE(357); + if (lookahead == '.') ADVANCE(433); + if (lookahead == '/') ADVANCE(372); + if (lookahead == '<') ADVANCE(394); + if (lookahead == '=') ADVANCE(414); + if (lookahead == '>') ADVANCE(389); + if (lookahead == '?') ADVANCE(419); + if (lookahead == '[') ADVANCE(408); + if (lookahead == '\\') ADVANCE(126); + if (lookahead == '^') ADVANCE(381); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + if (lookahead == '|') ADVANCE(378); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(173) - if (('A' <= lookahead && lookahead <= '_') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(524); + lookahead == ' ') SKIP(174) + if (sym_identifier_character_set_6(lookahead)) ADVANCE(571); END_STATE(); case 174: - if (lookahead == '!') ADVANCE(221); - if (lookahead == '%') ADVANCE(345); - if (lookahead == '&') ADVANCE(355); - if (lookahead == '(') ADVANCE(319); - if (lookahead == '*') ADVANCE(341); - if (lookahead == '+') ADVANCE(337); - if (lookahead == ',') ADVANCE(272); - if (lookahead == '-') ADVANCE(329); - if (lookahead == '.') ADVANCE(406); - if (lookahead == '/') ADVANCE(343); - if (lookahead == ':') ADVANCE(388); - if (lookahead == '<') ADVANCE(365); - if (lookahead == '=') ADVANCE(385); - if (lookahead == '>') ADVANCE(531); - if (lookahead == '?') ADVANCE(390); - if (lookahead == '[') ADVANCE(379); - if (lookahead == '\\') SKIP(42) - if (lookahead == '^') ADVANCE(352); - if (lookahead == '{') ADVANCE(377); - if (lookahead == '|') ADVANCE(349); + if (lookahead == '!') ADVANCE(233); + if (lookahead == '%') ADVANCE(374); + if (lookahead == '&') ADVANCE(384); + if (lookahead == '(') ADVANCE(348); + if (lookahead == ')') ADVANCE(292); + if (lookahead == '*') ADVANCE(370); + if (lookahead == '+') ADVANCE(366); + if (lookahead == ',') ADVANCE(291); + if (lookahead == '-') ADVANCE(357); + if (lookahead == '.') ADVANCE(433); + if (lookahead == '/') ADVANCE(372); + if (lookahead == '<') ADVANCE(394); + if (lookahead == '=') ADVANCE(414); + if (lookahead == '>') ADVANCE(389); + if (lookahead == '?') ADVANCE(419); + if (lookahead == '[') ADVANCE(408); + if (lookahead == '\\') ADVANCE(126); + if (lookahead == '^') ADVANCE(381); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(571); + if (lookahead == '|') ADVANCE(378); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(174) - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(524); END_STATE(); case 175: - if (lookahead == '!') ADVANCE(221); - if (lookahead == '%') ADVANCE(345); - if (lookahead == '&') ADVANCE(355); - if (lookahead == '(') ADVANCE(319); - if (lookahead == '*') ADVANCE(341); - if (lookahead == '+') ADVANCE(337); - if (lookahead == ',') ADVANCE(272); - if (lookahead == '-') ADVANCE(329); - if (lookahead == '.') ADVANCE(406); - if (lookahead == '/') ADVANCE(343); - if (lookahead == ';') ADVANCE(373); - if (lookahead == '<') ADVANCE(365); - if (lookahead == '=') ADVANCE(385); - if (lookahead == '>') ADVANCE(360); - if (lookahead == '?') ADVANCE(390); - if (lookahead == '[') ADVANCE(381); - if (lookahead == '\\') SKIP(50) - if (lookahead == '^') ADVANCE(352); - if (lookahead == '|') ADVANCE(349); - if (lookahead == '}') ADVANCE(378); + if (lookahead == '!') ADVANCE(233); + if (lookahead == '%') ADVANCE(374); + if (lookahead == '&') ADVANCE(384); + if (lookahead == '(') ADVANCE(348); + if (lookahead == ')') ADVANCE(292); + if (lookahead == '*') ADVANCE(370); + if (lookahead == '+') ADVANCE(366); + if (lookahead == ',') ADVANCE(291); + if (lookahead == '-') ADVANCE(357); + if (lookahead == '.') ADVANCE(433); + if (lookahead == '/') ADVANCE(372); + if (lookahead == '<') ADVANCE(394); + if (lookahead == '=') ADVANCE(414); + if (lookahead == '>') ADVANCE(389); + if (lookahead == '?') ADVANCE(419); + if (lookahead == '[') ADVANCE(411); + if (lookahead == '\\') ADVANCE(136); + if (lookahead == '^') ADVANCE(381); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(571); + if (lookahead == '|') ADVANCE(378); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(175) - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(524); END_STATE(); case 176: - if (lookahead == '!') ADVANCE(221); - if (lookahead == '%') ADVANCE(345); - if (lookahead == '&') ADVANCE(355); - if (lookahead == '(') ADVANCE(319); - if (lookahead == '*') ADVANCE(341); - if (lookahead == '+') ADVANCE(337); - if (lookahead == ',') ADVANCE(272); - if (lookahead == '-') ADVANCE(329); - if (lookahead == '.') ADVANCE(406); - if (lookahead == '/') ADVANCE(343); - if (lookahead == '<') ADVANCE(365); - if (lookahead == '=') ADVANCE(385); - if (lookahead == '>') ADVANCE(531); - if (lookahead == '?') ADVANCE(390); - if (lookahead == '[') ADVANCE(379); - if (lookahead == '\\') SKIP(40) - if (lookahead == '^') ADVANCE(352); - if (lookahead == 'b') ADVANCE(512); - if (lookahead == 'c') ADVANCE(497); - if (lookahead == 'd') ADVANCE(508); - if (lookahead == 'f') ADVANCE(505); - if (lookahead == 'i') ADVANCE(506); - if (lookahead == 's') ADVANCE(498); - if (lookahead == 'u') ADVANCE(501); - if (lookahead == 'v') ADVANCE(511); - if (lookahead == '{') ADVANCE(377); - if (lookahead == '|') ADVANCE(349); + if (lookahead == '!') ADVANCE(233); + if (lookahead == '%') ADVANCE(374); + if (lookahead == '&') ADVANCE(384); + if (lookahead == '(') ADVANCE(348); + if (lookahead == ')') ADVANCE(292); + if (lookahead == '*') ADVANCE(370); + if (lookahead == '+') ADVANCE(366); + if (lookahead == ',') ADVANCE(291); + if (lookahead == '-') ADVANCE(358); + if (lookahead == '.') ADVANCE(435); + if (lookahead == '/') ADVANCE(372); + if (lookahead == ':') ADVANCE(418); + if (lookahead == ';') ADVANCE(402); + if (lookahead == '<') ADVANCE(394); + if (lookahead == '=') ADVANCE(414); + if (lookahead == '>') ADVANCE(389); + if (lookahead == '?') ADVANCE(419); + if (lookahead == '[') ADVANCE(409); + if (lookahead == '\\') ADVANCE(32); + if (lookahead == '^') ADVANCE(381); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(571); + if (lookahead == '{') ADVANCE(406); + if (lookahead == '|') ADVANCE(378); + if (lookahead == '}') ADVANCE(407); + if (lookahead == '~') ADVANCE(351); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(176) - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(524); END_STATE(); case 177: - if (lookahead == '!') ADVANCE(221); - if (lookahead == '%') ADVANCE(345); - if (lookahead == '&') ADVANCE(355); - if (lookahead == '(') ADVANCE(319); - if (lookahead == '*') ADVANCE(341); - if (lookahead == '+') ADVANCE(337); - if (lookahead == ',') ADVANCE(272); - if (lookahead == '-') ADVANCE(329); - if (lookahead == '.') ADVANCE(406); - if (lookahead == '/') ADVANCE(343); - if (lookahead == '<') ADVANCE(365); - if (lookahead == '=') ADVANCE(385); - if (lookahead == '>') ADVANCE(531); - if (lookahead == '?') ADVANCE(390); - if (lookahead == '[') ADVANCE(379); - if (lookahead == '\\') SKIP(122) - if (lookahead == '^') ADVANCE(352); - if (lookahead == '|') ADVANCE(349); + if (lookahead == '!') ADVANCE(233); + if (lookahead == '%') ADVANCE(374); + if (lookahead == '&') ADVANCE(384); + if (lookahead == '(') ADVANCE(348); + if (lookahead == ')') ADVANCE(292); + if (lookahead == '*') ADVANCE(370); + if (lookahead == '+') ADVANCE(366); + if (lookahead == ',') ADVANCE(291); + if (lookahead == '-') ADVANCE(358); + if (lookahead == '.') ADVANCE(435); + if (lookahead == '/') ADVANCE(372); + if (lookahead == ':') ADVANCE(418); + if (lookahead == ';') ADVANCE(402); + if (lookahead == '<') ADVANCE(394); + if (lookahead == '=') ADVANCE(414); + if (lookahead == '>') ADVANCE(389); + if (lookahead == '?') ADVANCE(419); + if (lookahead == '[') ADVANCE(408); + if (lookahead == '\\') ADVANCE(118); + if (lookahead == ']') ADVANCE(412); + if (lookahead == '^') ADVANCE(381); + if (sym_identifier_character_set_8(lookahead)) ADVANCE(571); + if (lookahead == '{') ADVANCE(406); + if (lookahead == '|') ADVANCE(378); + if (lookahead == '}') ADVANCE(407); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(177) - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(524); END_STATE(); case 178: - if (lookahead == '!') ADVANCE(221); - if (lookahead == '%') ADVANCE(345); - if (lookahead == '&') ADVANCE(355); - if (lookahead == '(') ADVANCE(319); - if (lookahead == '*') ADVANCE(341); - if (lookahead == '+') ADVANCE(337); - if (lookahead == ',') ADVANCE(272); - if (lookahead == '-') ADVANCE(329); - if (lookahead == '.') ADVANCE(406); - if (lookahead == '/') ADVANCE(343); - if (lookahead == '<') ADVANCE(365); - if (lookahead == '=') ADVANCE(385); - if (lookahead == '>') ADVANCE(531); - if (lookahead == '?') ADVANCE(390); - if (lookahead == '[') ADVANCE(379); - if (lookahead == '\\') SKIP(122) - if (lookahead == '^') ADVANCE(352); - if (lookahead == '|') ADVANCE(349); + if (lookahead == '!') ADVANCE(233); + if (lookahead == '%') ADVANCE(374); + if (lookahead == '&') ADVANCE(384); + if (lookahead == '(') ADVANCE(348); + if (lookahead == ')') ADVANCE(292); + if (lookahead == '*') ADVANCE(370); + if (lookahead == '+') ADVANCE(366); + if (lookahead == ',') ADVANCE(291); + if (lookahead == '-') ADVANCE(358); + if (lookahead == '.') ADVANCE(435); + if (lookahead == '/') ADVANCE(372); + if (lookahead == ':') ADVANCE(418); + if (lookahead == '<') ADVANCE(394); + if (lookahead == '=') ADVANCE(414); + if (lookahead == '>') ADVANCE(579); + if (lookahead == '?') ADVANCE(419); + if (lookahead == '[') ADVANCE(408); + if (lookahead == '\\') ADVANCE(38); + if (lookahead == '^') ADVANCE(381); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(571); + if (lookahead == '{') ADVANCE(406); + if (lookahead == '|') ADVANCE(378); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(177) - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + lookahead == ' ') SKIP(178) END_STATE(); case 179: - if (lookahead == '!') ADVANCE(221); - if (lookahead == '%') ADVANCE(345); - if (lookahead == '&') ADVANCE(355); - if (lookahead == '(') ADVANCE(319); - if (lookahead == '*') ADVANCE(341); - if (lookahead == '+') ADVANCE(337); - if (lookahead == ',') ADVANCE(272); - if (lookahead == '-') ADVANCE(329); - if (lookahead == '.') ADVANCE(406); - if (lookahead == '/') ADVANCE(343); - if (lookahead == '<') ADVANCE(365); - if (lookahead == '=') ADVANCE(385); - if (lookahead == '>') ADVANCE(531); - if (lookahead == '?') ADVANCE(390); - if (lookahead == '[') ADVANCE(382); - if (lookahead == '\\') SKIP(52) - if (lookahead == '^') ADVANCE(352); - if (lookahead == '|') ADVANCE(349); + if (lookahead == '!') ADVANCE(233); + if (lookahead == '%') ADVANCE(374); + if (lookahead == '&') ADVANCE(384); + if (lookahead == '(') ADVANCE(348); + if (lookahead == ')') ADVANCE(292); + if (lookahead == '*') ADVANCE(370); + if (lookahead == '+') ADVANCE(366); + if (lookahead == ',') ADVANCE(291); + if (lookahead == '-') ADVANCE(358); + if (lookahead == '.') ADVANCE(435); + if (lookahead == '/') ADVANCE(372); + if (lookahead == ':') ADVANCE(417); + if (lookahead == ';') ADVANCE(402); + if (lookahead == '<') ADVANCE(394); + if (lookahead == '=') ADVANCE(414); + if (lookahead == '>') ADVANCE(389); + if (lookahead == '?') ADVANCE(419); + if (lookahead == '[') ADVANCE(409); + if (lookahead == '\\') ADVANCE(56); + if (lookahead == '^') ADVANCE(381); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(571); + if (lookahead == '{') ADVANCE(406); + if (lookahead == '|') ADVANCE(378); + if (lookahead == '}') ADVANCE(407); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(179) - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(524); END_STATE(); case 180: - if (lookahead == '!') ADVANCE(221); - if (lookahead == '%') ADVANCE(345); - if (lookahead == '&') ADVANCE(355); - if (lookahead == '*') ADVANCE(341); - if (lookahead == '+') ADVANCE(339); - if (lookahead == ',') ADVANCE(272); - if (lookahead == '-') ADVANCE(332); - if (lookahead == '.') ADVANCE(208); - if (lookahead == '/') ADVANCE(343); - if (lookahead == '<') ADVANCE(366); - if (lookahead == '=') ADVANCE(385); - if (lookahead == '>') ADVANCE(360); - if (lookahead == '\\') SKIP(64) - if (lookahead == '^') ADVANCE(352); - if (lookahead == '|') ADVANCE(349); + if (lookahead == '!') ADVANCE(233); + if (lookahead == '%') ADVANCE(374); + if (lookahead == '&') ADVANCE(384); + if (lookahead == '(') ADVANCE(348); + if (lookahead == ')') ADVANCE(292); + if (lookahead == '*') ADVANCE(370); + if (lookahead == '+') ADVANCE(366); + if (lookahead == ',') ADVANCE(291); + if (lookahead == '-') ADVANCE(358); + if (lookahead == '.') ADVANCE(435); + if (lookahead == '/') ADVANCE(372); + if (lookahead == ':') ADVANCE(417); + if (lookahead == ';') ADVANCE(402); + if (lookahead == '<') ADVANCE(394); + if (lookahead == '=') ADVANCE(414); + if (lookahead == '>') ADVANCE(389); + if (lookahead == '?') ADVANCE(419); + if (lookahead == '[') ADVANCE(408); + if (lookahead == '\\') ADVANCE(114); + if (lookahead == ']') ADVANCE(412); + if (lookahead == '^') ADVANCE(381); + if (sym_identifier_character_set_9(lookahead)) ADVANCE(571); + if (lookahead == 'b') ADVANCE(554); + if (lookahead == 'c') ADVANCE(533); + if (lookahead == 'd') ADVANCE(550); + if (lookahead == 'f') ADVANCE(546); + if (lookahead == 'i') ADVANCE(547); + if (lookahead == 'm') ADVANCE(519); + if (lookahead == 'n') ADVANCE(567); + if (lookahead == 'p') ADVANCE(564); + if (lookahead == 's') ADVANCE(534); + if (lookahead == 'u') ADVANCE(539); + if (lookahead == 'v') ADVANCE(551); + if (lookahead == '{') ADVANCE(406); + if (lookahead == '|') ADVANCE(378); + if (lookahead == '}') ADVANCE(407); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(180) - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(524); END_STATE(); case 181: - if (lookahead == '!') ADVANCE(221); - if (lookahead == '%') ADVANCE(344); - if (lookahead == '&') ADVANCE(354); - if (lookahead == '(') ADVANCE(319); - if (lookahead == ')') ADVANCE(273); - if (lookahead == '*') ADVANCE(340); - if (lookahead == '+') ADVANCE(334); - if (lookahead == ',') ADVANCE(272); - if (lookahead == '-') ADVANCE(330); - if (lookahead == '.') ADVANCE(406); - if (lookahead == '/') ADVANCE(342); - if (lookahead == ':') ADVANCE(389); - if (lookahead == ';') ADVANCE(373); - if (lookahead == '<') ADVANCE(367); - if (lookahead == '=') ADVANCE(385); - if (lookahead == '>') ADVANCE(359); - if (lookahead == '?') ADVANCE(390); - if (lookahead == '[') ADVANCE(380); - if (lookahead == '\\') SKIP(90) - if (lookahead == '^') ADVANCE(351); - if (lookahead == '{') ADVANCE(377); - if (lookahead == '|') ADVANCE(350); - if (lookahead == '}') ADVANCE(378); - if (lookahead == '~') ADVANCE(322); + if (lookahead == '!') ADVANCE(233); + if (lookahead == '%') ADVANCE(374); + if (lookahead == '&') ADVANCE(384); + if (lookahead == '(') ADVANCE(348); + if (lookahead == ')') ADVANCE(292); + if (lookahead == '*') ADVANCE(370); + if (lookahead == '+') ADVANCE(366); + if (lookahead == ',') ADVANCE(291); + if (lookahead == '-') ADVANCE(358); + if (lookahead == '.') ADVANCE(435); + if (lookahead == '/') ADVANCE(372); + if (lookahead == ':') ADVANCE(417); + if (lookahead == ';') ADVANCE(402); + if (lookahead == '<') ADVANCE(394); + if (lookahead == '=') ADVANCE(414); + if (lookahead == '>') ADVANCE(389); + if (lookahead == '?') ADVANCE(419); + if (lookahead == '[') ADVANCE(408); + if (lookahead == '\\') ADVANCE(50); + if (lookahead == ']') ADVANCE(412); + if (lookahead == '^') ADVANCE(381); + if (sym_identifier_character_set_8(lookahead)) ADVANCE(571); + if (lookahead == '{') ADVANCE(406); + if (lookahead == '|') ADVANCE(378); + if (lookahead == '}') ADVANCE(407); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(181) - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(524); END_STATE(); case 182: - if (lookahead == '!') ADVANCE(221); - if (lookahead == '%') ADVANCE(344); - if (lookahead == '&') ADVANCE(354); - if (lookahead == '(') ADVANCE(319); - if (lookahead == ')') ADVANCE(273); - if (lookahead == '*') ADVANCE(340); - if (lookahead == '+') ADVANCE(334); - if (lookahead == ',') ADVANCE(272); - if (lookahead == '-') ADVANCE(330); - if (lookahead == '.') ADVANCE(406); - if (lookahead == '/') ADVANCE(342); - if (lookahead == ':') ADVANCE(389); - if (lookahead == ';') ADVANCE(373); - if (lookahead == '<') ADVANCE(367); - if (lookahead == '=') ADVANCE(222); - if (lookahead == '>') ADVANCE(531); - if (lookahead == '?') ADVANCE(390); - if (lookahead == '[') ADVANCE(379); - if (lookahead == '\\') SKIP(92) - if (lookahead == '^') ADVANCE(351); - if (lookahead == '{') ADVANCE(377); - if (lookahead == '|') ADVANCE(350); - if (lookahead == '~') ADVANCE(322); + if (lookahead == '!') ADVANCE(233); + if (lookahead == '%') ADVANCE(374); + if (lookahead == '&') ADVANCE(384); + if (lookahead == '(') ADVANCE(348); + if (lookahead == ')') ADVANCE(292); + if (lookahead == '*') ADVANCE(370); + if (lookahead == '+') ADVANCE(366); + if (lookahead == ',') ADVANCE(291); + if (lookahead == '-') ADVANCE(358); + if (lookahead == '.') ADVANCE(435); + if (lookahead == '/') ADVANCE(372); + if (lookahead == ':') ADVANCE(417); + if (lookahead == ';') ADVANCE(402); + if (lookahead == '<') ADVANCE(394); + if (lookahead == '=') ADVANCE(414); + if (lookahead == '>') ADVANCE(389); + if (lookahead == '?') ADVANCE(419); + if (lookahead == '[') ADVANCE(408); + if (lookahead == '\\') ADVANCE(60); + if (lookahead == ']') ADVANCE(412); + if (lookahead == '^') ADVANCE(381); + if (('A' <= lookahead && lookahead <= '_') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + if (lookahead == '|') ADVANCE(378); + if (lookahead == '}') ADVANCE(407); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(182) - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(524); + lookahead == ' ') SKIP(183) + if (sym_identifier_character_set_6(lookahead)) ADVANCE(571); END_STATE(); case 183: - if (lookahead == '!') ADVANCE(221); - if (lookahead == '%') ADVANCE(344); - if (lookahead == '&') ADVANCE(354); - if (lookahead == '(') ADVANCE(319); - if (lookahead == ')') ADVANCE(273); - if (lookahead == '*') ADVANCE(340); - if (lookahead == '+') ADVANCE(334); - if (lookahead == ',') ADVANCE(272); - if (lookahead == '-') ADVANCE(330); - if (lookahead == '.') ADVANCE(406); - if (lookahead == '/') ADVANCE(342); - if (lookahead == ':') ADVANCE(389); - if (lookahead == ';') ADVANCE(373); - if (lookahead == '<') ADVANCE(367); - if (lookahead == '=') ADVANCE(222); - if (lookahead == '>') ADVANCE(359); - if (lookahead == '?') ADVANCE(390); - if (lookahead == '[') ADVANCE(379); - if (lookahead == '\\') SKIP(126) - if (lookahead == ']') ADVANCE(383); - if (lookahead == '^') ADVANCE(351); - if (lookahead == '{') ADVANCE(377); - if (lookahead == '|') ADVANCE(350); - if (lookahead == '}') ADVANCE(378); + if (lookahead == '!') ADVANCE(233); + if (lookahead == '%') ADVANCE(374); + if (lookahead == '&') ADVANCE(384); + if (lookahead == '(') ADVANCE(348); + if (lookahead == ')') ADVANCE(292); + if (lookahead == '*') ADVANCE(370); + if (lookahead == '+') ADVANCE(366); + if (lookahead == ',') ADVANCE(291); + if (lookahead == '-') ADVANCE(358); + if (lookahead == '.') ADVANCE(435); + if (lookahead == '/') ADVANCE(372); + if (lookahead == ':') ADVANCE(417); + if (lookahead == ';') ADVANCE(402); + if (lookahead == '<') ADVANCE(394); + if (lookahead == '=') ADVANCE(414); + if (lookahead == '>') ADVANCE(389); + if (lookahead == '?') ADVANCE(419); + if (lookahead == '[') ADVANCE(408); + if (lookahead == '\\') ADVANCE(60); + if (lookahead == ']') ADVANCE(412); + if (lookahead == '^') ADVANCE(381); + if (sym_identifier_character_set_8(lookahead)) ADVANCE(571); + if (lookahead == '|') ADVANCE(378); + if (lookahead == '}') ADVANCE(407); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(183) - if (('A' <= lookahead && lookahead <= '_') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(524); END_STATE(); case 184: - if (lookahead == '!') ADVANCE(221); - if (lookahead == '%') ADVANCE(344); - if (lookahead == '&') ADVANCE(354); - if (lookahead == '(') ADVANCE(319); - if (lookahead == ')') ADVANCE(273); - if (lookahead == '*') ADVANCE(340); - if (lookahead == '+') ADVANCE(334); - if (lookahead == ',') ADVANCE(272); - if (lookahead == '-') ADVANCE(330); - if (lookahead == '.') ADVANCE(406); - if (lookahead == '/') ADVANCE(342); - if (lookahead == ':') ADVANCE(219); - if (lookahead == ';') ADVANCE(373); - if (lookahead == '<') ADVANCE(367); - if (lookahead == '=') ADVANCE(222); - if (lookahead == '>') ADVANCE(359); - if (lookahead == '?') ADVANCE(390); - if (lookahead == '[') ADVANCE(379); - if (lookahead == '\\') SKIP(116) - if (lookahead == ']') ADVANCE(231); - if (lookahead == '^') ADVANCE(351); - if (lookahead == 'b') ADVANCE(512); - if (lookahead == 'c') ADVANCE(497); - if (lookahead == 'd') ADVANCE(508); - if (lookahead == 'f') ADVANCE(505); - if (lookahead == 'i') ADVANCE(506); - if (lookahead == 's') ADVANCE(498); - if (lookahead == 'u') ADVANCE(501); - if (lookahead == 'v') ADVANCE(511); - if (lookahead == '{') ADVANCE(377); - if (lookahead == '|') ADVANCE(350); - if (lookahead == '}') ADVANCE(378); + if (lookahead == '!') ADVANCE(233); + if (lookahead == '%') ADVANCE(374); + if (lookahead == '&') ADVANCE(384); + if (lookahead == '(') ADVANCE(348); + if (lookahead == ')') ADVANCE(292); + if (lookahead == '*') ADVANCE(370); + if (lookahead == '+') ADVANCE(366); + if (lookahead == ',') ADVANCE(291); + if (lookahead == '-') ADVANCE(358); + if (lookahead == '.') ADVANCE(435); + if (lookahead == '/') ADVANCE(372); + if (lookahead == ':') ADVANCE(417); + if (lookahead == ';') ADVANCE(402); + if (lookahead == '<') ADVANCE(394); + if (lookahead == '=') ADVANCE(414); + if (lookahead == '>') ADVANCE(389); + if (lookahead == '?') ADVANCE(419); + if (lookahead == '[') ADVANCE(411); + if (lookahead == '\\') ADVANCE(124); + if (lookahead == ']') ADVANCE(412); + if (lookahead == '^') ADVANCE(381); + if (sym_identifier_character_set_8(lookahead)) ADVANCE(571); + if (lookahead == '|') ADVANCE(378); + if (lookahead == '}') ADVANCE(407); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(184) - if (('A' <= lookahead && lookahead <= '_') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(524); END_STATE(); case 185: - if (lookahead == '!') ADVANCE(221); - if (lookahead == '%') ADVANCE(344); - if (lookahead == '&') ADVANCE(354); - if (lookahead == '(') ADVANCE(319); - if (lookahead == ')') ADVANCE(273); - if (lookahead == '*') ADVANCE(340); - if (lookahead == '+') ADVANCE(334); - if (lookahead == ',') ADVANCE(272); - if (lookahead == '-') ADVANCE(330); - if (lookahead == '.') ADVANCE(406); - if (lookahead == '/') ADVANCE(342); - if (lookahead == ':') ADVANCE(388); - if (lookahead == ';') ADVANCE(373); - if (lookahead == '<') ADVANCE(367); - if (lookahead == '=') ADVANCE(222); - if (lookahead == '>') ADVANCE(359); - if (lookahead == '?') ADVANCE(390); - if (lookahead == '[') ADVANCE(379); - if (lookahead == '\\') SKIP(102) - if (lookahead == ']') ADVANCE(383); - if (lookahead == '^') ADVANCE(351); - if (lookahead == 'b') ADVANCE(512); - if (lookahead == 'c') ADVANCE(497); - if (lookahead == 'd') ADVANCE(508); - if (lookahead == 'f') ADVANCE(505); - if (lookahead == 'i') ADVANCE(506); - if (lookahead == 's') ADVANCE(498); - if (lookahead == 'u') ADVANCE(501); - if (lookahead == 'v') ADVANCE(511); - if (lookahead == '{') ADVANCE(377); - if (lookahead == '|') ADVANCE(350); - if (lookahead == '}') ADVANCE(378); + if (lookahead == '!') ADVANCE(233); + if (lookahead == '%') ADVANCE(374); + if (lookahead == '&') ADVANCE(384); + if (lookahead == '(') ADVANCE(348); + if (lookahead == '*') ADVANCE(370); + if (lookahead == '+') ADVANCE(366); + if (lookahead == ',') ADVANCE(291); + if (lookahead == '-') ADVANCE(358); + if (lookahead == '.') ADVANCE(435); + if (lookahead == '/') ADVANCE(372); + if (lookahead == ':') ADVANCE(417); + if (lookahead == '<') ADVANCE(394); + if (lookahead == '=') ADVANCE(414); + if (lookahead == '>') ADVANCE(579); + if (lookahead == '?') ADVANCE(419); + if (lookahead == '[') ADVANCE(408); + if (lookahead == '\\') ADVANCE(54); + if (lookahead == '^') ADVANCE(381); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(571); + if (lookahead == '{') ADVANCE(406); + if (lookahead == '|') ADVANCE(378); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(185) - if (('A' <= lookahead && lookahead <= '_') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(524); END_STATE(); case 186: - if (lookahead == '!') ADVANCE(221); - if (lookahead == '%') ADVANCE(344); - if (lookahead == '&') ADVANCE(354); - if (lookahead == '(') ADVANCE(319); - if (lookahead == ')') ADVANCE(273); - if (lookahead == '*') ADVANCE(340); - if (lookahead == '+') ADVANCE(334); - if (lookahead == ',') ADVANCE(272); - if (lookahead == '-') ADVANCE(330); - if (lookahead == '.') ADVANCE(406); - if (lookahead == '/') ADVANCE(342); - if (lookahead == ':') ADVANCE(388); - if (lookahead == ';') ADVANCE(373); - if (lookahead == '<') ADVANCE(367); - if (lookahead == '=') ADVANCE(222); - if (lookahead == '>') ADVANCE(359); - if (lookahead == '?') ADVANCE(390); - if (lookahead == '[') ADVANCE(379); - if (lookahead == '\\') SKIP(118) - if (lookahead == ']') ADVANCE(383); - if (lookahead == '^') ADVANCE(351); - if (lookahead == '{') ADVANCE(377); - if (lookahead == '|') ADVANCE(350); - if (lookahead == '}') ADVANCE(378); + if (lookahead == '!') ADVANCE(233); + if (lookahead == '%') ADVANCE(374); + if (lookahead == '&') ADVANCE(384); + if (lookahead == '(') ADVANCE(348); + if (lookahead == '*') ADVANCE(370); + if (lookahead == '+') ADVANCE(366); + if (lookahead == ',') ADVANCE(291); + if (lookahead == '-') ADVANCE(358); + if (lookahead == '.') ADVANCE(435); + if (lookahead == '/') ADVANCE(372); + if (lookahead == ';') ADVANCE(402); + if (lookahead == '<') ADVANCE(394); + if (lookahead == '=') ADVANCE(414); + if (lookahead == '>') ADVANCE(389); + if (lookahead == '?') ADVANCE(419); + if (lookahead == '[') ADVANCE(410); + if (lookahead == '\\') ADVANCE(66); + if (lookahead == '^') ADVANCE(381); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(571); + if (lookahead == '|') ADVANCE(378); + if (lookahead == '}') ADVANCE(407); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(186) - if (('A' <= lookahead && lookahead <= '_') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(524); END_STATE(); case 187: - if (lookahead == '!') ADVANCE(221); - if (lookahead == '%') ADVANCE(344); - if (lookahead == '&') ADVANCE(354); - if (lookahead == '(') ADVANCE(319); - if (lookahead == ')') ADVANCE(273); - if (lookahead == '*') ADVANCE(340); - if (lookahead == '+') ADVANCE(334); - if (lookahead == ',') ADVANCE(272); - if (lookahead == '-') ADVANCE(330); - if (lookahead == '.') ADVANCE(406); - if (lookahead == '/') ADVANCE(342); - if (lookahead == ':') ADVANCE(388); - if (lookahead == ';') ADVANCE(373); - if (lookahead == '<') ADVANCE(367); - if (lookahead == '=') ADVANCE(222); - if (lookahead == '>') ADVANCE(359); - if (lookahead == '?') ADVANCE(390); - if (lookahead == '[') ADVANCE(379); - if (lookahead == '\\') SKIP(130) - if (lookahead == ']') ADVANCE(383); - if (lookahead == '^') ADVANCE(351); - if (lookahead == '|') ADVANCE(350); - if (lookahead == '}') ADVANCE(378); + if (lookahead == '!') ADVANCE(233); + if (lookahead == '%') ADVANCE(374); + if (lookahead == '&') ADVANCE(384); + if (lookahead == '(') ADVANCE(348); + if (lookahead == '*') ADVANCE(370); + if (lookahead == '+') ADVANCE(366); + if (lookahead == ',') ADVANCE(291); + if (lookahead == '-') ADVANCE(358); + if (lookahead == '.') ADVANCE(435); + if (lookahead == '/') ADVANCE(372); + if (lookahead == '<') ADVANCE(394); + if (lookahead == '=') ADVANCE(414); + if (lookahead == '>') ADVANCE(579); + if (lookahead == '?') ADVANCE(419); + if (lookahead == '[') ADVANCE(408); + if (lookahead == '\\') ADVANCE(120); + if (lookahead == '^') ADVANCE(381); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(571); + if (lookahead == 'b') ADVANCE(554); + if (lookahead == 'c') ADVANCE(533); + if (lookahead == 'd') ADVANCE(550); + if (lookahead == 'f') ADVANCE(546); + if (lookahead == 'i') ADVANCE(547); + if (lookahead == 'm') ADVANCE(519); + if (lookahead == 'n') ADVANCE(567); + if (lookahead == 'p') ADVANCE(564); + if (lookahead == 's') ADVANCE(534); + if (lookahead == 'u') ADVANCE(539); + if (lookahead == 'v') ADVANCE(551); + if (lookahead == '{') ADVANCE(406); + if (lookahead == '|') ADVANCE(378); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(187) - if (('A' <= lookahead && lookahead <= '_') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(524); END_STATE(); case 188: - if (lookahead == '!') ADVANCE(221); - if (lookahead == '%') ADVANCE(344); - if (lookahead == '&') ADVANCE(354); - if (lookahead == '(') ADVANCE(319); - if (lookahead == ')') ADVANCE(273); - if (lookahead == '*') ADVANCE(340); - if (lookahead == '+') ADVANCE(334); - if (lookahead == ',') ADVANCE(272); - if (lookahead == '-') ADVANCE(330); - if (lookahead == '.') ADVANCE(406); - if (lookahead == '/') ADVANCE(342); - if (lookahead == ':') ADVANCE(388); - if (lookahead == ';') ADVANCE(373); - if (lookahead == '<') ADVANCE(367); - if (lookahead == '=') ADVANCE(222); - if (lookahead == '>') ADVANCE(359); - if (lookahead == '?') ADVANCE(390); - if (lookahead == '[') ADVANCE(379); - if (lookahead == '\\') SKIP(130) - if (lookahead == ']') ADVANCE(383); - if (lookahead == '^') ADVANCE(351); - if (lookahead == '|') ADVANCE(350); - if (lookahead == '}') ADVANCE(378); + if (lookahead == '!') ADVANCE(233); + if (lookahead == '%') ADVANCE(374); + if (lookahead == '&') ADVANCE(384); + if (lookahead == '(') ADVANCE(348); + if (lookahead == '*') ADVANCE(370); + if (lookahead == '+') ADVANCE(366); + if (lookahead == ',') ADVANCE(291); + if (lookahead == '-') ADVANCE(358); + if (lookahead == '.') ADVANCE(435); + if (lookahead == '/') ADVANCE(372); + if (lookahead == '<') ADVANCE(394); + if (lookahead == '=') ADVANCE(414); + if (lookahead == '>') ADVANCE(579); + if (lookahead == '?') ADVANCE(419); + if (lookahead == '[') ADVANCE(408); + if (lookahead == '\\') ADVANCE(128); + if (lookahead == '^') ADVANCE(381); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + if (lookahead == '|') ADVANCE(378); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(187) - if (('A' <= lookahead && lookahead <= '_') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + lookahead == ' ') SKIP(189) + if (sym_identifier_character_set_6(lookahead)) ADVANCE(571); END_STATE(); case 189: - if (lookahead == '!') ADVANCE(221); - if (lookahead == '%') ADVANCE(344); - if (lookahead == '&') ADVANCE(354); - if (lookahead == '(') ADVANCE(319); - if (lookahead == '*') ADVANCE(340); - if (lookahead == '+') ADVANCE(334); - if (lookahead == ',') ADVANCE(272); - if (lookahead == '-') ADVANCE(330); - if (lookahead == '.') ADVANCE(406); - if (lookahead == '/') ADVANCE(342); - if (lookahead == ':') ADVANCE(388); - if (lookahead == '<') ADVANCE(367); - if (lookahead == '=') ADVANCE(222); - if (lookahead == '>') ADVANCE(531); - if (lookahead == '?') ADVANCE(390); - if (lookahead == '[') ADVANCE(379); - if (lookahead == '\\') SKIP(108) - if (lookahead == '^') ADVANCE(351); - if (lookahead == '{') ADVANCE(377); - if (lookahead == '|') ADVANCE(350); + if (lookahead == '!') ADVANCE(233); + if (lookahead == '%') ADVANCE(374); + if (lookahead == '&') ADVANCE(384); + if (lookahead == '(') ADVANCE(348); + if (lookahead == '*') ADVANCE(370); + if (lookahead == '+') ADVANCE(366); + if (lookahead == ',') ADVANCE(291); + if (lookahead == '-') ADVANCE(358); + if (lookahead == '.') ADVANCE(435); + if (lookahead == '/') ADVANCE(372); + if (lookahead == '<') ADVANCE(394); + if (lookahead == '=') ADVANCE(414); + if (lookahead == '>') ADVANCE(579); + if (lookahead == '?') ADVANCE(419); + if (lookahead == '[') ADVANCE(408); + if (lookahead == '\\') ADVANCE(128); + if (lookahead == '^') ADVANCE(381); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(571); + if (lookahead == '|') ADVANCE(378); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(189) - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(524); END_STATE(); case 190: - if (lookahead == '!') ADVANCE(221); - if (lookahead == '%') ADVANCE(344); - if (lookahead == '&') ADVANCE(354); - if (lookahead == '(') ADVANCE(319); - if (lookahead == '*') ADVANCE(340); - if (lookahead == '+') ADVANCE(334); - if (lookahead == ',') ADVANCE(272); - if (lookahead == '-') ADVANCE(330); - if (lookahead == '.') ADVANCE(406); - if (lookahead == '/') ADVANCE(342); - if (lookahead == '<') ADVANCE(367); - if (lookahead == '=') ADVANCE(222); - if (lookahead == '>') ADVANCE(531); - if (lookahead == '?') ADVANCE(390); - if (lookahead == '[') ADVANCE(379); - if (lookahead == '\\') SKIP(106) - if (lookahead == '^') ADVANCE(351); - if (lookahead == 'b') ADVANCE(512); - if (lookahead == 'c') ADVANCE(497); - if (lookahead == 'd') ADVANCE(508); - if (lookahead == 'f') ADVANCE(505); - if (lookahead == 'i') ADVANCE(506); - if (lookahead == 's') ADVANCE(498); - if (lookahead == 'u') ADVANCE(501); - if (lookahead == 'v') ADVANCE(511); - if (lookahead == '{') ADVANCE(377); - if (lookahead == '|') ADVANCE(350); + if (lookahead == '!') ADVANCE(233); + if (lookahead == '%') ADVANCE(374); + if (lookahead == '&') ADVANCE(384); + if (lookahead == '(') ADVANCE(348); + if (lookahead == '*') ADVANCE(370); + if (lookahead == '+') ADVANCE(366); + if (lookahead == ',') ADVANCE(291); + if (lookahead == '-') ADVANCE(358); + if (lookahead == '.') ADVANCE(435); + if (lookahead == '/') ADVANCE(372); + if (lookahead == '<') ADVANCE(394); + if (lookahead == '=') ADVANCE(414); + if (lookahead == '>') ADVANCE(579); + if (lookahead == '?') ADVANCE(419); + if (lookahead == '[') ADVANCE(411); + if (lookahead == '\\') ADVANCE(72); + if (lookahead == '^') ADVANCE(381); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(571); + if (lookahead == '|') ADVANCE(378); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(190) - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(524); END_STATE(); case 191: - if (lookahead == '!') ADVANCE(221); - if (lookahead == '%') ADVANCE(344); - if (lookahead == '&') ADVANCE(354); - if (lookahead == '(') ADVANCE(319); - if (lookahead == '*') ADVANCE(340); - if (lookahead == '+') ADVANCE(334); - if (lookahead == ',') ADVANCE(272); - if (lookahead == '-') ADVANCE(330); - if (lookahead == '.') ADVANCE(406); - if (lookahead == '/') ADVANCE(342); - if (lookahead == '<') ADVANCE(367); - if (lookahead == '=') ADVANCE(222); - if (lookahead == '>') ADVANCE(531); - if (lookahead == '?') ADVANCE(390); - if (lookahead == '[') ADVANCE(379); - if (lookahead == '\\') SKIP(132) - if (lookahead == '^') ADVANCE(351); - if (lookahead == '|') ADVANCE(350); + if (lookahead == '!') ADVANCE(233); + if (lookahead == '%') ADVANCE(374); + if (lookahead == '&') ADVANCE(384); + if (lookahead == '*') ADVANCE(370); + if (lookahead == '+') ADVANCE(368); + if (lookahead == ',') ADVANCE(291); + if (lookahead == '-') ADVANCE(361); + if (lookahead == '.') ADVANCE(220); + if (lookahead == '/') ADVANCE(372); + if (lookahead == '<') ADVANCE(395); + if (lookahead == '=') ADVANCE(414); + if (lookahead == '>') ADVANCE(389); + if (lookahead == '\\') ADVANCE(80); + if (lookahead == '^') ADVANCE(381); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(571); + if (lookahead == '|') ADVANCE(378); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(191) - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(524); END_STATE(); case 192: - if (lookahead == '!') ADVANCE(221); - if (lookahead == '%') ADVANCE(344); - if (lookahead == '&') ADVANCE(354); - if (lookahead == '(') ADVANCE(319); - if (lookahead == '*') ADVANCE(340); - if (lookahead == '+') ADVANCE(334); - if (lookahead == ',') ADVANCE(272); - if (lookahead == '-') ADVANCE(330); - if (lookahead == '.') ADVANCE(406); - if (lookahead == '/') ADVANCE(342); - if (lookahead == '<') ADVANCE(367); - if (lookahead == '=') ADVANCE(222); - if (lookahead == '>') ADVANCE(531); - if (lookahead == '?') ADVANCE(390); - if (lookahead == '[') ADVANCE(379); - if (lookahead == '\\') SKIP(132) - if (lookahead == '^') ADVANCE(351); - if (lookahead == '|') ADVANCE(350); + if (lookahead == '!') ADVANCE(233); + if (lookahead == '%') ADVANCE(373); + if (lookahead == '&') ADVANCE(383); + if (lookahead == '(') ADVANCE(348); + if (lookahead == ')') ADVANCE(292); + if (lookahead == '*') ADVANCE(369); + if (lookahead == '+') ADVANCE(363); + if (lookahead == ',') ADVANCE(291); + if (lookahead == '-') ADVANCE(359); + if (lookahead == '.') ADVANCE(435); + if (lookahead == '/') ADVANCE(371); + if (lookahead == ':') ADVANCE(418); + if (lookahead == ';') ADVANCE(402); + if (lookahead == '<') ADVANCE(396); + if (lookahead == '=') ADVANCE(414); + if (lookahead == '>') ADVANCE(388); + if (lookahead == '?') ADVANCE(419); + if (lookahead == '[') ADVANCE(409); + if (lookahead == '\\') ADVANCE(108); + if (lookahead == '^') ADVANCE(380); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(571); + if (lookahead == '{') ADVANCE(406); + if (lookahead == '|') ADVANCE(379); + if (lookahead == '}') ADVANCE(407); + if (lookahead == '~') ADVANCE(351); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(191) - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + lookahead == ' ') SKIP(192) END_STATE(); case 193: - if (lookahead == '"') ADVANCE(439); - if (lookahead == '&') ADVANCE(354); - if (lookahead == '(') ADVANCE(319); - if (lookahead == '*') ADVANCE(340); - if (lookahead == '/') ADVANCE(209); - if (lookahead == ':') ADVANCE(219); - if (lookahead == 'L') ADVANCE(455); - if (lookahead == 'U') ADVANCE(459); - if (lookahead == '[') ADVANCE(380); - if (lookahead == '\\') SKIP(54) - if (lookahead == 'b') ADVANCE(512); - if (lookahead == 'c') ADVANCE(497); - if (lookahead == 'd') ADVANCE(508); - if (lookahead == 'f') ADVANCE(505); - if (lookahead == 'i') ADVANCE(506); - if (lookahead == 's') ADVANCE(498); - if (lookahead == 'u') ADVANCE(462); - if (lookahead == 'v') ADVANCE(511); - if (lookahead == '~') ADVANCE(322); + if (lookahead == '!') ADVANCE(233); + if (lookahead == '%') ADVANCE(373); + if (lookahead == '&') ADVANCE(383); + if (lookahead == '(') ADVANCE(348); + if (lookahead == ')') ADVANCE(292); + if (lookahead == '*') ADVANCE(369); + if (lookahead == '+') ADVANCE(363); + if (lookahead == ',') ADVANCE(291); + if (lookahead == '-') ADVANCE(359); + if (lookahead == '.') ADVANCE(435); + if (lookahead == '/') ADVANCE(371); + if (lookahead == ':') ADVANCE(418); + if (lookahead == ';') ADVANCE(402); + if (lookahead == '<') ADVANCE(396); + if (lookahead == '=') ADVANCE(234); + if (lookahead == '>') ADVANCE(579); + if (lookahead == '?') ADVANCE(419); + if (lookahead == '[') ADVANCE(408); + if (lookahead == '\\') ADVANCE(110); + if (lookahead == '^') ADVANCE(380); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(571); + if (lookahead == '{') ADVANCE(406); + if (lookahead == '|') ADVANCE(379); + if (lookahead == '~') ADVANCE(351); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(193) - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(524); END_STATE(); case 194: - if (lookahead == '"') ADVANCE(439); - if (lookahead == '/') ADVANCE(209); - if (lookahead == '<') ADVANCE(227); - if (lookahead == 'L') ADVANCE(455); - if (lookahead == 'U') ADVANCE(459); - if (lookahead == '\\') SKIP(79) - if (lookahead == 'u') ADVANCE(463); + if (lookahead == '!') ADVANCE(233); + if (lookahead == '%') ADVANCE(373); + if (lookahead == '&') ADVANCE(383); + if (lookahead == '(') ADVANCE(348); + if (lookahead == ')') ADVANCE(292); + if (lookahead == '*') ADVANCE(369); + if (lookahead == '+') ADVANCE(363); + if (lookahead == ',') ADVANCE(291); + if (lookahead == '-') ADVANCE(359); + if (lookahead == '.') ADVANCE(435); + if (lookahead == '/') ADVANCE(371); + if (lookahead == ':') ADVANCE(418); + if (lookahead == ';') ADVANCE(402); + if (lookahead == '<') ADVANCE(396); + if (lookahead == '=') ADVANCE(234); + if (lookahead == '>') ADVANCE(388); + if (lookahead == '?') ADVANCE(419); + if (lookahead == '[') ADVANCE(408); + if (lookahead == '\\') ADVANCE(140); + if (lookahead == ']') ADVANCE(412); + if (lookahead == '^') ADVANCE(380); + if (sym_identifier_character_set_8(lookahead)) ADVANCE(571); + if (lookahead == '{') ADVANCE(406); + if (lookahead == '|') ADVANCE(379); + if (lookahead == '}') ADVANCE(407); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(194) - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(524); END_STATE(); case 195: - if (lookahead == '"') ADVANCE(439); - if (lookahead == '/') ADVANCE(209); - if (lookahead == '\\') ADVANCE(81); + if (lookahead == '!') ADVANCE(233); + if (lookahead == '%') ADVANCE(373); + if (lookahead == '&') ADVANCE(383); + if (lookahead == '(') ADVANCE(348); + if (lookahead == ')') ADVANCE(292); + if (lookahead == '*') ADVANCE(369); + if (lookahead == '+') ADVANCE(363); + if (lookahead == ',') ADVANCE(291); + if (lookahead == '-') ADVANCE(359); + if (lookahead == '.') ADVANCE(435); + if (lookahead == '/') ADVANCE(371); + if (lookahead == ':') ADVANCE(231); + if (lookahead == ';') ADVANCE(402); + if (lookahead == '<') ADVANCE(396); + if (lookahead == '=') ADVANCE(234); + if (lookahead == '>') ADVANCE(388); + if (lookahead == '?') ADVANCE(419); + if (lookahead == '[') ADVANCE(408); + if (lookahead == '\\') ADVANCE(130); + if (lookahead == ']') ADVANCE(244); + if (lookahead == '^') ADVANCE(380); + if (sym_identifier_character_set_9(lookahead)) ADVANCE(571); + if (lookahead == 'b') ADVANCE(554); + if (lookahead == 'c') ADVANCE(533); + if (lookahead == 'd') ADVANCE(550); + if (lookahead == 'f') ADVANCE(546); + if (lookahead == 'i') ADVANCE(547); + if (lookahead == 'm') ADVANCE(519); + if (lookahead == 'n') ADVANCE(567); + if (lookahead == 'p') ADVANCE(564); + if (lookahead == 's') ADVANCE(534); + if (lookahead == 'u') ADVANCE(539); + if (lookahead == 'v') ADVANCE(551); + if (lookahead == '{') ADVANCE(406); + if (lookahead == '|') ADVANCE(379); + if (lookahead == '}') ADVANCE(407); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(195) END_STATE(); case 196: - if (lookahead == '"') ADVANCE(541); + if (lookahead == '!') ADVANCE(233); + if (lookahead == '%') ADVANCE(373); + if (lookahead == '&') ADVANCE(383); + if (lookahead == '(') ADVANCE(348); + if (lookahead == ')') ADVANCE(292); + if (lookahead == '*') ADVANCE(369); + if (lookahead == '+') ADVANCE(363); + if (lookahead == ',') ADVANCE(291); + if (lookahead == '-') ADVANCE(359); + if (lookahead == '.') ADVANCE(435); + if (lookahead == '/') ADVANCE(371); + if (lookahead == ':') ADVANCE(417); + if (lookahead == ';') ADVANCE(402); + if (lookahead == '<') ADVANCE(396); + if (lookahead == '=') ADVANCE(234); + if (lookahead == '>') ADVANCE(388); + if (lookahead == '?') ADVANCE(419); + if (lookahead == '[') ADVANCE(408); + if (lookahead == '\\') ADVANCE(44); + if (lookahead == ']') ADVANCE(412); + if (lookahead == '^') ADVANCE(380); + if (sym_identifier_character_set_9(lookahead)) ADVANCE(571); + if (lookahead == 'b') ADVANCE(554); + if (lookahead == 'c') ADVANCE(533); + if (lookahead == 'd') ADVANCE(550); + if (lookahead == 'f') ADVANCE(546); + if (lookahead == 'i') ADVANCE(547); + if (lookahead == 'm') ADVANCE(519); + if (lookahead == 'n') ADVANCE(567); + if (lookahead == 'p') ADVANCE(564); + if (lookahead == 's') ADVANCE(534); + if (lookahead == 'u') ADVANCE(539); + if (lookahead == 'v') ADVANCE(551); + if (lookahead == '{') ADVANCE(406); + if (lookahead == '|') ADVANCE(379); + if (lookahead == '}') ADVANCE(407); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(196) END_STATE(); case 197: - if (lookahead == '#') ADVANCE(233); - if (lookahead == '&') ADVANCE(354); - if (lookahead == '(') ADVANCE(319); - if (lookahead == ')') ADVANCE(273); - if (lookahead == '*') ADVANCE(340); - if (lookahead == '+') ADVANCE(333); - if (lookahead == ',') ADVANCE(272); - if (lookahead == '-') ADVANCE(226); - if (lookahead == '.') ADVANCE(215); - if (lookahead == '/') ADVANCE(209); - if (lookahead == ':') ADVANCE(219); - if (lookahead == ';') ADVANCE(373); - if (lookahead == '<') ADVANCE(364); - if (lookahead == '=') ADVANCE(384); - if (lookahead == '>') ADVANCE(531); - if (lookahead == '[') ADVANCE(380); - if (lookahead == '\\') SKIP(16) - if (lookahead == 'b') ADVANCE(512); - if (lookahead == 'c') ADVANCE(497); - if (lookahead == 'd') ADVANCE(508); - if (lookahead == 'f') ADVANCE(505); - if (lookahead == 'i') ADVANCE(506); - if (lookahead == 's') ADVANCE(498); - if (lookahead == 'u') ADVANCE(501); - if (lookahead == 'v') ADVANCE(511); - if (lookahead == '{') ADVANCE(377); - if (lookahead == '|') ADVANCE(243); - if (lookahead == '~') ADVANCE(322); + if (lookahead == '!') ADVANCE(233); + if (lookahead == '%') ADVANCE(373); + if (lookahead == '&') ADVANCE(383); + if (lookahead == '(') ADVANCE(348); + if (lookahead == ')') ADVANCE(292); + if (lookahead == '*') ADVANCE(369); + if (lookahead == '+') ADVANCE(363); + if (lookahead == ',') ADVANCE(291); + if (lookahead == '-') ADVANCE(359); + if (lookahead == '.') ADVANCE(435); + if (lookahead == '/') ADVANCE(371); + if (lookahead == ':') ADVANCE(417); + if (lookahead == ';') ADVANCE(402); + if (lookahead == '<') ADVANCE(396); + if (lookahead == '=') ADVANCE(234); + if (lookahead == '>') ADVANCE(388); + if (lookahead == '?') ADVANCE(419); + if (lookahead == '[') ADVANCE(408); + if (lookahead == '\\') ADVANCE(132); + if (lookahead == ']') ADVANCE(412); + if (lookahead == '^') ADVANCE(380); + if (sym_identifier_character_set_8(lookahead)) ADVANCE(571); + if (lookahead == '{') ADVANCE(406); + if (lookahead == '|') ADVANCE(379); + if (lookahead == '}') ADVANCE(407); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(197) - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(524); END_STATE(); case 198: - if (lookahead == '#') ADVANCE(235); - if (lookahead == '&') ADVANCE(354); - if (lookahead == '(') ADVANCE(319); - if (lookahead == '*') ADVANCE(340); - if (lookahead == ',') ADVANCE(272); - if (lookahead == '/') ADVANCE(209); - if (lookahead == ':') ADVANCE(219); - if (lookahead == ';') ADVANCE(373); - if (lookahead == '[') ADVANCE(380); - if (lookahead == '\\') SKIP(20) - if (lookahead == 'b') ADVANCE(512); - if (lookahead == 'c') ADVANCE(497); - if (lookahead == 'd') ADVANCE(508); - if (lookahead == 'f') ADVANCE(505); - if (lookahead == 'i') ADVANCE(506); - if (lookahead == 's') ADVANCE(498); - if (lookahead == 'u') ADVANCE(501); - if (lookahead == 'v') ADVANCE(511); - if (lookahead == '~') ADVANCE(322); + if (lookahead == '!') ADVANCE(233); + if (lookahead == '%') ADVANCE(373); + if (lookahead == '&') ADVANCE(383); + if (lookahead == '(') ADVANCE(348); + if (lookahead == ')') ADVANCE(292); + if (lookahead == '*') ADVANCE(369); + if (lookahead == '+') ADVANCE(363); + if (lookahead == ',') ADVANCE(291); + if (lookahead == '-') ADVANCE(359); + if (lookahead == '.') ADVANCE(435); + if (lookahead == '/') ADVANCE(371); + if (lookahead == ':') ADVANCE(417); + if (lookahead == ';') ADVANCE(402); + if (lookahead == '<') ADVANCE(396); + if (lookahead == '=') ADVANCE(234); + if (lookahead == '>') ADVANCE(388); + if (lookahead == '?') ADVANCE(419); + if (lookahead == '[') ADVANCE(408); + if (lookahead == '\\') ADVANCE(134); + if (lookahead == ']') ADVANCE(412); + if (lookahead == '^') ADVANCE(380); + if (('A' <= lookahead && lookahead <= '_') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + if (lookahead == '|') ADVANCE(379); + if (lookahead == '}') ADVANCE(407); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(198) - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(524); + lookahead == ' ') SKIP(199) + if (sym_identifier_character_set_6(lookahead)) ADVANCE(571); END_STATE(); case 199: - if (lookahead == '&') ADVANCE(354); - if (lookahead == '(') ADVANCE(319); - if (lookahead == ')') ADVANCE(273); - if (lookahead == '*') ADVANCE(340); - if (lookahead == ',') ADVANCE(272); - if (lookahead == '-') ADVANCE(226); - if (lookahead == '.') ADVANCE(215); - if (lookahead == '/') ADVANCE(209); - if (lookahead == ':') ADVANCE(389); - if (lookahead == ';') ADVANCE(373); - if (lookahead == '<') ADVANCE(364); - if (lookahead == '=') ADVANCE(384); - if (lookahead == '>') ADVANCE(531); - if (lookahead == '[') ADVANCE(380); - if (lookahead == '\\') SKIP(56) - if (lookahead == '{') ADVANCE(377); - if (lookahead == '|') ADVANCE(243); - if (lookahead == '~') ADVANCE(322); + if (lookahead == '!') ADVANCE(233); + if (lookahead == '%') ADVANCE(373); + if (lookahead == '&') ADVANCE(383); + if (lookahead == '(') ADVANCE(348); + if (lookahead == ')') ADVANCE(292); + if (lookahead == '*') ADVANCE(369); + if (lookahead == '+') ADVANCE(363); + if (lookahead == ',') ADVANCE(291); + if (lookahead == '-') ADVANCE(359); + if (lookahead == '.') ADVANCE(435); + if (lookahead == '/') ADVANCE(371); + if (lookahead == ':') ADVANCE(417); + if (lookahead == ';') ADVANCE(402); + if (lookahead == '<') ADVANCE(396); + if (lookahead == '=') ADVANCE(234); + if (lookahead == '>') ADVANCE(388); + if (lookahead == '?') ADVANCE(419); + if (lookahead == '[') ADVANCE(408); + if (lookahead == '\\') ADVANCE(134); + if (lookahead == ']') ADVANCE(412); + if (lookahead == '^') ADVANCE(380); + if (sym_identifier_character_set_8(lookahead)) ADVANCE(571); + if (lookahead == '|') ADVANCE(379); + if (lookahead == '}') ADVANCE(407); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(199) - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(524); END_STATE(); case 200: - if (lookahead == '&') ADVANCE(354); - if (lookahead == '(') ADVANCE(319); - if (lookahead == ')') ADVANCE(273); - if (lookahead == '*') ADVANCE(340); - if (lookahead == ',') ADVANCE(272); - if (lookahead == '-') ADVANCE(226); - if (lookahead == '.') ADVANCE(215); - if (lookahead == '/') ADVANCE(209); - if (lookahead == ':') ADVANCE(388); - if (lookahead == ';') ADVANCE(373); - if (lookahead == '<') ADVANCE(364); - if (lookahead == '=') ADVANCE(384); - if (lookahead == '>') ADVANCE(531); - if (lookahead == '[') ADVANCE(380); - if (lookahead == '\\') SKIP(62) - if (lookahead == '{') ADVANCE(377); - if (lookahead == '|') ADVANCE(243); + if (lookahead == '!') ADVANCE(233); + if (lookahead == '%') ADVANCE(373); + if (lookahead == '&') ADVANCE(383); + if (lookahead == '(') ADVANCE(348); + if (lookahead == '*') ADVANCE(369); + if (lookahead == '+') ADVANCE(363); + if (lookahead == ',') ADVANCE(291); + if (lookahead == '-') ADVANCE(359); + if (lookahead == '.') ADVANCE(435); + if (lookahead == '/') ADVANCE(371); + if (lookahead == ':') ADVANCE(417); + if (lookahead == '<') ADVANCE(396); + if (lookahead == '=') ADVANCE(234); + if (lookahead == '>') ADVANCE(579); + if (lookahead == '?') ADVANCE(419); + if (lookahead == '[') ADVANCE(408); + if (lookahead == '\\') ADVANCE(122); + if (lookahead == '^') ADVANCE(380); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(571); + if (lookahead == '{') ADVANCE(406); + if (lookahead == '|') ADVANCE(379); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(200) - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(524); END_STATE(); case 201: - if (lookahead == '&') ADVANCE(354); - if (lookahead == '(') ADVANCE(319); - if (lookahead == ')') ADVANCE(273); - if (lookahead == '*') ADVANCE(340); - if (lookahead == ',') ADVANCE(272); - if (lookahead == '.') ADVANCE(215); - if (lookahead == '/') ADVANCE(209); - if (lookahead == ':') ADVANCE(389); - if (lookahead == ';') ADVANCE(373); - if (lookahead == '<') ADVANCE(364); - if (lookahead == '=') ADVANCE(384); - if (lookahead == '>') ADVANCE(531); - if (lookahead == '[') ADVANCE(379); - if (lookahead == '\\') SKIP(58) - if (lookahead == '{') ADVANCE(377); - if (lookahead == '|') ADVANCE(243); - if (lookahead == '~') ADVANCE(322); + if (lookahead == '!') ADVANCE(233); + if (lookahead == '%') ADVANCE(373); + if (lookahead == '&') ADVANCE(383); + if (lookahead == '(') ADVANCE(348); + if (lookahead == '*') ADVANCE(369); + if (lookahead == '+') ADVANCE(363); + if (lookahead == ',') ADVANCE(291); + if (lookahead == '-') ADVANCE(359); + if (lookahead == '.') ADVANCE(435); + if (lookahead == '/') ADVANCE(371); + if (lookahead == '<') ADVANCE(396); + if (lookahead == '=') ADVANCE(234); + if (lookahead == '>') ADVANCE(579); + if (lookahead == '?') ADVANCE(419); + if (lookahead == '[') ADVANCE(408); + if (lookahead == '\\') ADVANCE(52); + if (lookahead == '^') ADVANCE(380); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(571); + if (lookahead == 'b') ADVANCE(554); + if (lookahead == 'c') ADVANCE(533); + if (lookahead == 'd') ADVANCE(550); + if (lookahead == 'f') ADVANCE(546); + if (lookahead == 'i') ADVANCE(547); + if (lookahead == 'm') ADVANCE(519); + if (lookahead == 'n') ADVANCE(567); + if (lookahead == 'p') ADVANCE(564); + if (lookahead == 's') ADVANCE(534); + if (lookahead == 'u') ADVANCE(539); + if (lookahead == 'v') ADVANCE(551); + if (lookahead == '{') ADVANCE(406); + if (lookahead == '|') ADVANCE(379); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(201) - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(524); END_STATE(); case 202: - if (lookahead == '&') ADVANCE(354); - if (lookahead == '(') ADVANCE(319); - if (lookahead == '*') ADVANCE(340); - if (lookahead == ',') ADVANCE(272); - if (lookahead == '/') ADVANCE(209); - if (lookahead == ':') ADVANCE(388); - if (lookahead == ';') ADVANCE(373); - if (lookahead == '=') ADVANCE(384); - if (lookahead == '[') ADVANCE(380); - if (lookahead == '\\') SKIP(60) - if (lookahead == 'b') ADVANCE(512); - if (lookahead == 'c') ADVANCE(497); - if (lookahead == 'd') ADVANCE(508); - if (lookahead == 'f') ADVANCE(505); - if (lookahead == 'i') ADVANCE(506); - if (lookahead == 's') ADVANCE(498); - if (lookahead == 'u') ADVANCE(501); - if (lookahead == 'v') ADVANCE(511); - if (lookahead == '{') ADVANCE(377); + if (lookahead == '!') ADVANCE(233); + if (lookahead == '%') ADVANCE(373); + if (lookahead == '&') ADVANCE(383); + if (lookahead == '(') ADVANCE(348); + if (lookahead == '*') ADVANCE(369); + if (lookahead == '+') ADVANCE(363); + if (lookahead == ',') ADVANCE(291); + if (lookahead == '-') ADVANCE(359); + if (lookahead == '.') ADVANCE(435); + if (lookahead == '/') ADVANCE(371); + if (lookahead == '<') ADVANCE(396); + if (lookahead == '=') ADVANCE(234); + if (lookahead == '>') ADVANCE(579); + if (lookahead == '?') ADVANCE(419); + if (lookahead == '[') ADVANCE(408); + if (lookahead == '\\') ADVANCE(138); + if (lookahead == '^') ADVANCE(380); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + if (lookahead == '|') ADVANCE(379); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(202) - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(524); + lookahead == ' ') SKIP(203) + if (sym_identifier_character_set_6(lookahead)) ADVANCE(571); END_STATE(); case 203: - if (lookahead == '&') ADVANCE(354); - if (lookahead == '(') ADVANCE(319); - if (lookahead == '*') ADVANCE(340); - if (lookahead == '/') ADVANCE(209); - if (lookahead == ':') ADVANCE(388); - if (lookahead == ';') ADVANCE(373); - if (lookahead == '=') ADVANCE(384); - if (lookahead == '[') ADVANCE(379); - if (lookahead == '\\') SKIP(68) - if (lookahead == '{') ADVANCE(377); - if (lookahead == '|') ADVANCE(243); + if (lookahead == '!') ADVANCE(233); + if (lookahead == '%') ADVANCE(373); + if (lookahead == '&') ADVANCE(383); + if (lookahead == '(') ADVANCE(348); + if (lookahead == '*') ADVANCE(369); + if (lookahead == '+') ADVANCE(363); + if (lookahead == ',') ADVANCE(291); + if (lookahead == '-') ADVANCE(359); + if (lookahead == '.') ADVANCE(435); + if (lookahead == '/') ADVANCE(371); + if (lookahead == '<') ADVANCE(396); + if (lookahead == '=') ADVANCE(234); + if (lookahead == '>') ADVANCE(579); + if (lookahead == '?') ADVANCE(419); + if (lookahead == '[') ADVANCE(408); + if (lookahead == '\\') ADVANCE(138); + if (lookahead == '^') ADVANCE(380); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(571); + if (lookahead == '|') ADVANCE(379); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(203) - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(524); END_STATE(); case 204: - if (lookahead == '&') ADVANCE(354); - if (lookahead == '(') ADVANCE(319); - if (lookahead == '*') ADVANCE(340); - if (lookahead == '/') ADVANCE(209); - if (lookahead == ';') ADVANCE(373); - if (lookahead == '=') ADVANCE(384); - if (lookahead == '[') ADVANCE(379); - if (lookahead == '\\') SKIP(66) - if (lookahead == 'b') ADVANCE(512); - if (lookahead == 'c') ADVANCE(497); - if (lookahead == 'd') ADVANCE(508); - if (lookahead == 'f') ADVANCE(505); - if (lookahead == 'i') ADVANCE(506); - if (lookahead == 's') ADVANCE(498); - if (lookahead == 'u') ADVANCE(501); - if (lookahead == 'v') ADVANCE(511); - if (lookahead == '{') ADVANCE(377); + if (lookahead == '"') ADVANCE(468); + if (lookahead == '&') ADVANCE(383); + if (lookahead == '(') ADVANCE(348); + if (lookahead == '*') ADVANCE(369); + if (lookahead == '/') ADVANCE(221); + if (lookahead == ':') ADVANCE(231); + if (lookahead == 'L') ADVANCE(484); + if (lookahead == 'U') ADVANCE(488); + if (lookahead == '[') ADVANCE(409); + if (lookahead == '\\') ADVANCE(68); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(571); + if (lookahead == 'b') ADVANCE(554); + if (lookahead == 'c') ADVANCE(533); + if (lookahead == 'd') ADVANCE(550); + if (lookahead == 'f') ADVANCE(546); + if (lookahead == 'i') ADVANCE(547); + if (lookahead == 'm') ADVANCE(519); + if (lookahead == 'n') ADVANCE(567); + if (lookahead == 'p') ADVANCE(564); + if (lookahead == 's') ADVANCE(534); + if (lookahead == 'u') ADVANCE(491); + if (lookahead == 'v') ADVANCE(551); + if (lookahead == '~') ADVANCE(351); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(204) - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(524); END_STATE(); case 205: - if (lookahead == '(') ADVANCE(319); - if (lookahead == ')') ADVANCE(273); - if (lookahead == ',') ADVANCE(272); - if (lookahead == '/') ADVANCE(209); - if (lookahead == ':') ADVANCE(388); - if (lookahead == ';') ADVANCE(373); - if (lookahead == '=') ADVANCE(384); - if (lookahead == '>') ADVANCE(531); - if (lookahead == '[') ADVANCE(381); - if (lookahead == '\\') SKIP(77) - if (lookahead == '{') ADVANCE(377); + if (lookahead == '"') ADVANCE(468); + if (lookahead == '/') ADVANCE(221); + if (lookahead == '<') ADVANCE(239); + if (lookahead == 'L') ADVANCE(484); + if (lookahead == 'U') ADVANCE(488); + if (lookahead == '\\') ADVANCE(95); + if (sym_identifier_character_set_5(lookahead)) ADVANCE(571); + if (lookahead == 'u') ADVANCE(492); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(205) - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(524); END_STATE(); case 206: - if (lookahead == '(') ADVANCE(319); - if (lookahead == '/') ADVANCE(209); - if (lookahead == ':') ADVANCE(219); - if (lookahead == 'F') ADVANCE(479); - if (lookahead == 'T') ADVANCE(483); - if (lookahead == '[') ADVANCE(379); - if (lookahead == '\\') SKIP(70) - if (lookahead == 'f') ADVANCE(488); - if (lookahead == 't') ADVANCE(515); - if (lookahead == '{') ADVANCE(377); + if (lookahead == '"') ADVANCE(468); + if (lookahead == '/') ADVANCE(221); + if (lookahead == '\\') ADVANCE(97); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(206) - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(524); END_STATE(); case 207: - if (lookahead == ')') ADVANCE(539); + if (lookahead == '"') ADVANCE(589); END_STATE(); case 208: - if (lookahead == '*') ADVANCE(537); + if (lookahead == '#') ADVANCE(252); + if (lookahead == '&') ADVANCE(383); + if (lookahead == '(') ADVANCE(348); + if (lookahead == '*') ADVANCE(369); + if (lookahead == ',') ADVANCE(291); + if (lookahead == '/') ADVANCE(221); + if (lookahead == ':') ADVANCE(231); + if (lookahead == ';') ADVANCE(402); + if (lookahead == '[') ADVANCE(409); + if (lookahead == '\\') ADVANCE(28); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(571); + if (lookahead == 'b') ADVANCE(554); + if (lookahead == 'c') ADVANCE(533); + if (lookahead == 'd') ADVANCE(550); + if (lookahead == 'f') ADVANCE(546); + if (lookahead == 'i') ADVANCE(547); + if (lookahead == 'm') ADVANCE(519); + if (lookahead == 'n') ADVANCE(567); + if (lookahead == 'p') ADVANCE(564); + if (lookahead == 's') ADVANCE(534); + if (lookahead == 'u') ADVANCE(539); + if (lookahead == 'v') ADVANCE(551); + if (lookahead == '}') ADVANCE(407); + if (lookahead == '~') ADVANCE(351); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(208) END_STATE(); case 209: - if (lookahead == '*') ADVANCE(212); - if (lookahead == '/') ADVANCE(527); + if (lookahead == '#') ADVANCE(246); + if (lookahead == '&') ADVANCE(383); + if (lookahead == '(') ADVANCE(348); + if (lookahead == ')') ADVANCE(292); + if (lookahead == '*') ADVANCE(369); + if (lookahead == '+') ADVANCE(362); + if (lookahead == ',') ADVANCE(291); + if (lookahead == '-') ADVANCE(238); + if (lookahead == '.') ADVANCE(227); + if (lookahead == '/') ADVANCE(221); + if (lookahead == ':') ADVANCE(231); + if (lookahead == ';') ADVANCE(402); + if (lookahead == '<') ADVANCE(393); + if (lookahead == '=') ADVANCE(413); + if (lookahead == '>') ADVANCE(579); + if (lookahead == '[') ADVANCE(409); + if (lookahead == '\\') ADVANCE(22); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(571); + if (lookahead == 'b') ADVANCE(554); + if (lookahead == 'c') ADVANCE(533); + if (lookahead == 'd') ADVANCE(550); + if (lookahead == 'f') ADVANCE(546); + if (lookahead == 'i') ADVANCE(547); + if (lookahead == 'm') ADVANCE(519); + if (lookahead == 'n') ADVANCE(567); + if (lookahead == 'p') ADVANCE(564); + if (lookahead == 's') ADVANCE(534); + if (lookahead == 'u') ADVANCE(539); + if (lookahead == 'v') ADVANCE(551); + if (lookahead == '{') ADVANCE(406); + if (lookahead == '|') ADVANCE(258); + if (lookahead == '~') ADVANCE(351); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(209) END_STATE(); case 210: - if (lookahead == '*') ADVANCE(538); + if (lookahead == '#') ADVANCE(248); + if (lookahead == '&') ADVANCE(383); + if (lookahead == '(') ADVANCE(348); + if (lookahead == '*') ADVANCE(369); + if (lookahead == ',') ADVANCE(291); + if (lookahead == '/') ADVANCE(221); + if (lookahead == ':') ADVANCE(231); + if (lookahead == ';') ADVANCE(402); + if (lookahead == '[') ADVANCE(409); + if (lookahead == '\\') ADVANCE(26); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(571); + if (lookahead == 'b') ADVANCE(554); + if (lookahead == 'c') ADVANCE(533); + if (lookahead == 'd') ADVANCE(550); + if (lookahead == 'f') ADVANCE(546); + if (lookahead == 'i') ADVANCE(547); + if (lookahead == 'm') ADVANCE(519); + if (lookahead == 'n') ADVANCE(567); + if (lookahead == 'p') ADVANCE(564); + if (lookahead == 's') ADVANCE(534); + if (lookahead == 'u') ADVANCE(539); + if (lookahead == 'v') ADVANCE(551); + if (lookahead == '~') ADVANCE(351); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(210) END_STATE(); case 211: - if (lookahead == '*') ADVANCE(211); - if (lookahead == '/') ADVANCE(525); - if (lookahead != 0) ADVANCE(212); + if (lookahead == '&') ADVANCE(383); + if (lookahead == '(') ADVANCE(348); + if (lookahead == ')') ADVANCE(292); + if (lookahead == '*') ADVANCE(369); + if (lookahead == ',') ADVANCE(291); + if (lookahead == '-') ADVANCE(238); + if (lookahead == '.') ADVANCE(227); + if (lookahead == '/') ADVANCE(221); + if (lookahead == ':') ADVANCE(418); + if (lookahead == ';') ADVANCE(402); + if (lookahead == '<') ADVANCE(393); + if (lookahead == '=') ADVANCE(413); + if (lookahead == '>') ADVANCE(579); + if (lookahead == '[') ADVANCE(409); + if (lookahead == '\\') ADVANCE(70); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(571); + if (lookahead == '{') ADVANCE(406); + if (lookahead == '|') ADVANCE(258); + if (lookahead == '~') ADVANCE(351); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(211) END_STATE(); case 212: - if (lookahead == '*') ADVANCE(211); - if (lookahead != 0) ADVANCE(212); + if (lookahead == '&') ADVANCE(383); + if (lookahead == '(') ADVANCE(348); + if (lookahead == ')') ADVANCE(292); + if (lookahead == '*') ADVANCE(369); + if (lookahead == ',') ADVANCE(291); + if (lookahead == '-') ADVANCE(238); + if (lookahead == '.') ADVANCE(227); + if (lookahead == '/') ADVANCE(221); + if (lookahead == ':') ADVANCE(417); + if (lookahead == ';') ADVANCE(402); + if (lookahead == '<') ADVANCE(393); + if (lookahead == '=') ADVANCE(413); + if (lookahead == '>') ADVANCE(579); + if (lookahead == '[') ADVANCE(409); + if (lookahead == '\\') ADVANCE(76); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(571); + if (lookahead == '{') ADVANCE(406); + if (lookahead == '|') ADVANCE(258); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(212) END_STATE(); case 213: - if (lookahead == '.') ADVANCE(245); - if (lookahead == '0') ADVANCE(413); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(414); - if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(422); + if (lookahead == '&') ADVANCE(383); + if (lookahead == '(') ADVANCE(348); + if (lookahead == ')') ADVANCE(292); + if (lookahead == '*') ADVANCE(369); + if (lookahead == ',') ADVANCE(291); + if (lookahead == '.') ADVANCE(227); + if (lookahead == '/') ADVANCE(221); + if (lookahead == ':') ADVANCE(418); + if (lookahead == ';') ADVANCE(402); + if (lookahead == '<') ADVANCE(393); + if (lookahead == '=') ADVANCE(413); + if (lookahead == '>') ADVANCE(579); + if (lookahead == '[') ADVANCE(408); + if (lookahead == '\\') ADVANCE(78); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(571); + if (lookahead == '{') ADVANCE(406); + if (lookahead == '|') ADVANCE(258); + if (lookahead == '~') ADVANCE(351); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(213) END_STATE(); case 214: - if (lookahead == '.') ADVANCE(245); - if (lookahead == '0') ADVANCE(416); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(417); + if (lookahead == '&') ADVANCE(383); + if (lookahead == '(') ADVANCE(348); + if (lookahead == ')') ADVANCE(292); + if (lookahead == '*') ADVANCE(369); + if (lookahead == ',') ADVANCE(291); + if (lookahead == '.') ADVANCE(227); + if (lookahead == '/') ADVANCE(221); + if (lookahead == ':') ADVANCE(417); + if (lookahead == ';') ADVANCE(402); + if (lookahead == '=') ADVANCE(413); + if (lookahead == '>') ADVANCE(579); + if (lookahead == '[') ADVANCE(408); + if (lookahead == '\\') ADVANCE(84); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(571); + if (lookahead == '{') ADVANCE(406); + if (lookahead == '|') ADVANCE(258); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(214) END_STATE(); case 215: - if (lookahead == '.') ADVANCE(217); + if (lookahead == '&') ADVANCE(383); + if (lookahead == '(') ADVANCE(348); + if (lookahead == '*') ADVANCE(369); + if (lookahead == ',') ADVANCE(291); + if (lookahead == '/') ADVANCE(221); + if (lookahead == ':') ADVANCE(417); + if (lookahead == ';') ADVANCE(402); + if (lookahead == '=') ADVANCE(413); + if (lookahead == '[') ADVANCE(409); + if (lookahead == '\\') ADVANCE(74); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(571); + if (lookahead == 'b') ADVANCE(554); + if (lookahead == 'c') ADVANCE(533); + if (lookahead == 'd') ADVANCE(550); + if (lookahead == 'f') ADVANCE(546); + if (lookahead == 'i') ADVANCE(547); + if (lookahead == 'm') ADVANCE(519); + if (lookahead == 'n') ADVANCE(567); + if (lookahead == 'p') ADVANCE(564); + if (lookahead == 's') ADVANCE(534); + if (lookahead == 'u') ADVANCE(539); + if (lookahead == 'v') ADVANCE(551); + if (lookahead == '{') ADVANCE(406); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(215) END_STATE(); case 216: - if (lookahead == '.') ADVANCE(217); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(411); + if (lookahead == '&') ADVANCE(383); + if (lookahead == '(') ADVANCE(348); + if (lookahead == '*') ADVANCE(369); + if (lookahead == '/') ADVANCE(221); + if (lookahead == ';') ADVANCE(402); + if (lookahead == '=') ADVANCE(413); + if (lookahead == '[') ADVANCE(408); + if (lookahead == '\\') ADVANCE(82); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(571); + if (lookahead == 'b') ADVANCE(554); + if (lookahead == 'c') ADVANCE(533); + if (lookahead == 'd') ADVANCE(550); + if (lookahead == 'f') ADVANCE(546); + if (lookahead == 'i') ADVANCE(547); + if (lookahead == 'm') ADVANCE(519); + if (lookahead == 'n') ADVANCE(567); + if (lookahead == 'p') ADVANCE(564); + if (lookahead == 's') ADVANCE(534); + if (lookahead == 'u') ADVANCE(539); + if (lookahead == 'v') ADVANCE(551); + if (lookahead == '{') ADVANCE(406); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(216) END_STATE(); case 217: - if (lookahead == '.') ADVANCE(271); + if (lookahead == '(') ADVANCE(348); + if (lookahead == ')') ADVANCE(292); + if (lookahead == ',') ADVANCE(291); + if (lookahead == '/') ADVANCE(221); + if (lookahead == ':') ADVANCE(417); + if (lookahead == ';') ADVANCE(402); + if (lookahead == '=') ADVANCE(413); + if (lookahead == '>') ADVANCE(579); + if (lookahead == '[') ADVANCE(410); + if (lookahead == '\\') ADVANCE(93); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(571); + if (lookahead == '{') ADVANCE(406); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(217) END_STATE(); case 218: - if (lookahead == '/') ADVANCE(209); - if (lookahead == '\\') ADVANCE(81); + if (lookahead == '(') ADVANCE(348); + if (lookahead == '/') ADVANCE(221); + if (lookahead == ':') ADVANCE(231); + if (lookahead == 'F') ADVANCE(508); + if (lookahead == 'T') ADVANCE(512); + if (lookahead == '[') ADVANCE(408); + if (lookahead == '\\') ADVANCE(86); + if (sym_identifier_character_set_10(lookahead)) ADVANCE(571); + if (lookahead == 'f') ADVANCE(518); + if (lookahead == 't') ADVANCE(559); + if (lookahead == '{') ADVANCE(406); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(218) END_STATE(); case 219: - if (lookahead == ':') ADVANCE(374); + if (lookahead == ')') ADVANCE(587); END_STATE(); case 220: - if (lookahead == '<') ADVANCE(369); - if (lookahead == '=') ADVANCE(362); + if (lookahead == '*') ADVANCE(585); END_STATE(); case 221: - if (lookahead == '=') ADVANCE(357); + if (lookahead == '*') ADVANCE(224); + if (lookahead == '/') ADVANCE(573); END_STATE(); case 222: - if (lookahead == '=') ADVANCE(356); + if (lookahead == '*') ADVANCE(586); END_STATE(); case 223: - if (lookahead == '=') ADVANCE(361); - if (lookahead == '>') ADVANCE(224); + if (lookahead == '*') ADVANCE(223); + if (lookahead == '/') ADVANCE(572); + if (lookahead != 0) ADVANCE(224); END_STATE(); case 224: - if (lookahead == '=') ADVANCE(397); + if (lookahead == '*') ADVANCE(223); + if (lookahead != 0) ADVANCE(224); END_STATE(); case 225: - if (lookahead == '>') ADVANCE(371); + if (lookahead == '.') ADVANCE(260); + if (lookahead == '0') ADVANCE(441); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(442); + if (('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(451); END_STATE(); case 226: - if (lookahead == '>') ADVANCE(409); + if (lookahead == '.') ADVANCE(260); + if (lookahead == '0') ADVANCE(444); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(445); END_STATE(); case 227: - if (lookahead == '>') ADVANCE(449); - if (lookahead == '\\') ADVANCE(228); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(227); + if (lookahead == '.') ADVANCE(229); END_STATE(); case 228: - if (lookahead == '>') ADVANCE(450); - if (lookahead == '\\') ADVANCE(228); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(227); + if (lookahead == '.') ADVANCE(229); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(440); END_STATE(); case 229: - if (lookahead == '[') ADVANCE(375); - if (lookahead == ']') ADVANCE(540); + if (lookahead == '.') ADVANCE(290); END_STATE(); case 230: - if (lookahead == ']') ADVANCE(540); + if (lookahead == '/') ADVANCE(221); + if (lookahead == '\\') ADVANCE(97); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(230) END_STATE(); case 231: - if (lookahead == ']') ADVANCE(376); + if (lookahead == ':') ADVANCE(403); END_STATE(); case 232: - if (lookahead == 'd') ADVANCE(285); - if (lookahead == 'e') ADVANCE(301); - if (lookahead == 'i') ADVANCE(291); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(232); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(306); + if (lookahead == '<') ADVANCE(398); + if (lookahead == '=') ADVANCE(391); END_STATE(); case 233: - if (lookahead == 'd') ADVANCE(285); - if (lookahead == 'e') ADVANCE(301); - if (lookahead == 'i') ADVANCE(292); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(233); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(306); + if (lookahead == '=') ADVANCE(386); END_STATE(); case 234: - if (lookahead == 'd') ADVANCE(285); - if (lookahead == 'e') ADVANCE(303); - if (lookahead == 'i') ADVANCE(291); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(234); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(306); + if (lookahead == '=') ADVANCE(385); END_STATE(); case 235: - if (lookahead == 'd') ADVANCE(285); - if (lookahead == 'e') ADVANCE(303); - if (lookahead == 'i') ADVANCE(292); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(235); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(306); + if (lookahead == '=') ADVANCE(390); + if (lookahead == '>') ADVANCE(236); END_STATE(); case 236: - if (lookahead == 'd') ADVANCE(285); - if (lookahead == 'i') ADVANCE(291); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(236); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(306); + if (lookahead == '=') ADVANCE(426); END_STATE(); case 237: - if (lookahead == 'd') ADVANCE(285); - if (lookahead == 'i') ADVANCE(292); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(237); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(306); + if (lookahead == '>') ADVANCE(400); END_STATE(); case 238: - if (lookahead == 'd') ADVANCE(241); + if (lookahead == '>') ADVANCE(438); END_STATE(); case 239: - if (lookahead == 'e') ADVANCE(242); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(239); + if (lookahead == '>') ADVANCE(478); + if (lookahead == '\\') ADVANCE(240); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(239); END_STATE(); case 240: - if (lookahead == 'f') ADVANCE(275); + if (lookahead == '>') ADVANCE(479); + if (lookahead == '\\') ADVANCE(240); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(239); END_STATE(); case 241: - if (lookahead == 'i') ADVANCE(240); + if (lookahead == 'U') ADVANCE(279); + if (lookahead == 'u') ADVANCE(271); END_STATE(); case 242: - if (lookahead == 'n') ADVANCE(238); + if (lookahead == '[') ADVANCE(404); + if (lookahead == ']') ADVANCE(588); END_STATE(); case 243: - if (lookahead == '|') ADVANCE(346); + if (lookahead == ']') ADVANCE(588); END_STATE(); case 244: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(417); + if (lookahead == ']') ADVANCE(405); END_STATE(); case 245: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(411); + if (lookahead == 'd') ADVANCE(319); + if (lookahead == 'e') ADVANCE(341); + if (lookahead == 'i') ADVANCE(327); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(245); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(347); END_STATE(); case 246: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(414); - if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(422); + if (lookahead == 'd') ADVANCE(319); + if (lookahead == 'e') ADVANCE(341); + if (lookahead == 'i') ADVANCE(328); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(246); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(347); END_STATE(); case 247: + if (lookahead == 'd') ADVANCE(319); + if (lookahead == 'e') ADVANCE(344); + if (lookahead == 'i') ADVANCE(327); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(247); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(419); + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(347); END_STATE(); case 248: + if (lookahead == 'd') ADVANCE(319); + if (lookahead == 'e') ADVANCE(344); + if (lookahead == 'i') ADVANCE(328); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(248); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(422); + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(347); END_STATE(); case 249: + if (lookahead == 'd') ADVANCE(319); + if (lookahead == 'e') ADVANCE(343); + if (lookahead == 'i') ADVANCE(327); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(249); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(412); + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(347); END_STATE(); case 250: + if (lookahead == 'd') ADVANCE(319); + if (lookahead == 'e') ADVANCE(343); + if (lookahead == 'i') ADVANCE(328); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(250); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(445); + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(347); END_STATE(); case 251: + if (lookahead == 'd') ADVANCE(319); + if (lookahead == 'i') ADVANCE(327); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(251); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(250); + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(347); END_STATE(); case 252: + if (lookahead == 'd') ADVANCE(319); + if (lookahead == 'i') ADVANCE(328); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(252); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(251); + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(347); END_STATE(); case 253: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(252); + if (lookahead == 'd') ADVANCE(256); END_STATE(); case 254: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(253); + if (lookahead == 'e') ADVANCE(257); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(254); END_STATE(); case 255: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(254); + if (lookahead == 'f') ADVANCE(294); END_STATE(); case 256: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(255); + if (lookahead == 'i') ADVANCE(255); END_STATE(); case 257: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(256); + if (lookahead == 'n') ADVANCE(253); END_STATE(); case 258: - if (lookahead != 0 && - lookahead != '\r') ADVANCE(527); - if (lookahead == '\r') ADVANCE(529); + if (lookahead == '|') ADVANCE(375); END_STATE(); case 259: - if (eof) ADVANCE(265); - if (lookahead == '\n') SKIP(263) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(445); END_STATE(); case 260: - if (eof) ADVANCE(265); - if (lookahead == '\n') SKIP(263) - if (lookahead == '\r') SKIP(259) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(440); END_STATE(); case 261: - if (eof) ADVANCE(265); - if (lookahead == '\n') SKIP(264) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(442); + if (('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(451); END_STATE(); case 262: - if (eof) ADVANCE(265); - if (lookahead == '\n') SKIP(264) - if (lookahead == '\r') SKIP(261) + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(571); END_STATE(); case 263: - if (eof) ADVANCE(265); - if (lookahead == '!') ADVANCE(321); - if (lookahead == '"') ADVANCE(439); - if (lookahead == '#') ADVANCE(232); - if (lookahead == '%') ADVANCE(345); - if (lookahead == '&') ADVANCE(355); - if (lookahead == '\'') ADVANCE(430); - if (lookahead == '(') ADVANCE(319); - if (lookahead == ')') ADVANCE(273); - if (lookahead == '*') ADVANCE(341); - if (lookahead == '+') ADVANCE(335); - if (lookahead == ',') ADVANCE(272); - if (lookahead == '-') ADVANCE(324); - if (lookahead == '.') ADVANCE(405); - if (lookahead == '/') ADVANCE(343); - if (lookahead == '0') ADVANCE(415); - if (lookahead == ':') ADVANCE(389); - if (lookahead == ';') ADVANCE(373); - if (lookahead == '<') ADVANCE(365); - if (lookahead == '=') ADVANCE(385); - if (lookahead == '>') ADVANCE(531); - if (lookahead == '?') ADVANCE(390); - if (lookahead == 'F') ADVANCE(479); - if (lookahead == 'L') ADVANCE(453); - if (lookahead == 'R') ADVANCE(456); - if (lookahead == 'T') ADVANCE(483); - if (lookahead == 'U') ADVANCE(457); - if (lookahead == '[') ADVANCE(381); - if (lookahead == '\\') SKIP(260) - if (lookahead == ']') ADVANCE(383); - if (lookahead == '^') ADVANCE(352); - if (lookahead == 'b') ADVANCE(512); - if (lookahead == 'c') ADVANCE(497); - if (lookahead == 'd') ADVANCE(508); - if (lookahead == 'f') ADVANCE(487); - if (lookahead == 'i') ADVANCE(506); - if (lookahead == 's') ADVANCE(498); - if (lookahead == 't') ADVANCE(515); - if (lookahead == 'u') ADVANCE(460); - if (lookahead == 'v') ADVANCE(511); - if (lookahead == '{') ADVANCE(377); - if (lookahead == '|') ADVANCE(349); - if (lookahead == '}') ADVANCE(378); - if (lookahead == '~') ADVANCE(322); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(448); + END_STATE(); + case 264: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(451); + END_STATE(); + case 265: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(446); + END_STATE(); + case 266: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(474); + END_STATE(); + case 267: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(262); + END_STATE(); + case 268: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(266); + END_STATE(); + case 269: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(267); + END_STATE(); + case 270: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(268); + END_STATE(); + case 271: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(269); + END_STATE(); + case 272: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(270); + END_STATE(); + case 273: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(271); + END_STATE(); + case 274: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(272); + END_STATE(); + case 275: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(273); + END_STATE(); + case 276: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(274); + END_STATE(); + case 277: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(275); + END_STATE(); + case 278: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(276); + END_STATE(); + case 279: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(277); + END_STATE(); + case 280: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(278); + END_STATE(); + case 281: + if (lookahead != 0 && + lookahead != '\r' && + lookahead != '\\') ADVANCE(573); + if (lookahead == '\r') ADVANCE(577); + if (lookahead == '\\') ADVANCE(575); + END_STATE(); + case 282: + if (eof) ADVANCE(284); + if (lookahead == '!') ADVANCE(350); + if (lookahead == '"') ADVANCE(468); + if (lookahead == '#') ADVANCE(245); + if (lookahead == '%') ADVANCE(374); + if (lookahead == '&') ADVANCE(384); + if (lookahead == '\'') ADVANCE(459); + if (lookahead == '(') ADVANCE(348); + if (lookahead == ')') ADVANCE(292); + if (lookahead == '*') ADVANCE(370); + if (lookahead == '+') ADVANCE(364); + if (lookahead == ',') ADVANCE(291); + if (lookahead == '-') ADVANCE(353); + if (lookahead == '.') ADVANCE(434); + if (lookahead == '/') ADVANCE(372); + if (lookahead == '0') ADVANCE(443); + if (lookahead == ':') ADVANCE(418); + if (lookahead == ';') ADVANCE(402); + if (lookahead == '<') ADVANCE(394); + if (lookahead == '=') ADVANCE(414); + if (lookahead == '>') ADVANCE(579); + if (lookahead == '?') ADVANCE(419); + if (lookahead == 'F') ADVANCE(508); + if (lookahead == 'L') ADVANCE(482); + if (lookahead == 'R') ADVANCE(485); + if (lookahead == 'T') ADVANCE(512); + if (lookahead == 'U') ADVANCE(486); + if (lookahead == '[') ADVANCE(410); + if (lookahead == '\\') ADVANCE(2); + if (lookahead == ']') ADVANCE(412); + if (lookahead == '^') ADVANCE(381); + if (sym_identifier_character_set_1(lookahead)) ADVANCE(571); + if (lookahead == 'b') ADVANCE(554); + if (lookahead == 'c') ADVANCE(533); + if (lookahead == 'd') ADVANCE(550); + if (lookahead == 'f') ADVANCE(517); + if (lookahead == 'i') ADVANCE(547); + if (lookahead == 'm') ADVANCE(519); + if (lookahead == 'n') ADVANCE(567); + if (lookahead == 'p') ADVANCE(564); + if (lookahead == 's') ADVANCE(534); + if (lookahead == 't') ADVANCE(559); + if (lookahead == 'u') ADVANCE(489); + if (lookahead == 'v') ADVANCE(551); + if (lookahead == '{') ADVANCE(406); + if (lookahead == '|') ADVANCE(378); + if (lookahead == '}') ADVANCE(407); + if (lookahead == '~') ADVANCE(351); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(263) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(417); - if (('A' <= lookahead && lookahead <= '_') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(524); + lookahead == ' ') SKIP(282) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(445); END_STATE(); - case 264: - if (eof) ADVANCE(265); - if (lookahead == '!') ADVANCE(320); - if (lookahead == '"') ADVANCE(439); - if (lookahead == '#') ADVANCE(236); - if (lookahead == '%') ADVANCE(344); - if (lookahead == '&') ADVANCE(354); - if (lookahead == '\'') ADVANCE(430); - if (lookahead == '(') ADVANCE(319); - if (lookahead == ')') ADVANCE(273); - if (lookahead == '*') ADVANCE(340); - if (lookahead == '+') ADVANCE(336); - if (lookahead == ',') ADVANCE(272); - if (lookahead == '-') ADVANCE(327); - if (lookahead == '.') ADVANCE(408); - if (lookahead == '/') ADVANCE(342); - if (lookahead == '0') ADVANCE(415); - if (lookahead == ':') ADVANCE(389); - if (lookahead == ';') ADVANCE(373); - if (lookahead == '<') ADVANCE(364); - if (lookahead == '=') ADVANCE(384); - if (lookahead == '>') ADVANCE(531); - if (lookahead == 'F') ADVANCE(479); - if (lookahead == 'L') ADVANCE(453); - if (lookahead == 'R') ADVANCE(456); - if (lookahead == 'T') ADVANCE(483); - if (lookahead == 'U') ADVANCE(457); - if (lookahead == '[') ADVANCE(380); - if (lookahead == '\\') SKIP(262) - if (lookahead == ']') ADVANCE(231); - if (lookahead == '^') ADVANCE(351); - if (lookahead == 'b') ADVANCE(512); - if (lookahead == 'c') ADVANCE(497); - if (lookahead == 'd') ADVANCE(508); - if (lookahead == 'f') ADVANCE(487); - if (lookahead == 'i') ADVANCE(506); - if (lookahead == 's') ADVANCE(498); - if (lookahead == 't') ADVANCE(515); - if (lookahead == 'u') ADVANCE(460); - if (lookahead == 'v') ADVANCE(511); - if (lookahead == '{') ADVANCE(377); - if (lookahead == '|') ADVANCE(243); - if (lookahead == '}') ADVANCE(378); - if (lookahead == '~') ADVANCE(322); + case 283: + if (eof) ADVANCE(284); + if (lookahead == '!') ADVANCE(349); + if (lookahead == '"') ADVANCE(468); + if (lookahead == '#') ADVANCE(251); + if (lookahead == '%') ADVANCE(373); + if (lookahead == '&') ADVANCE(383); + if (lookahead == '\'') ADVANCE(459); + if (lookahead == '(') ADVANCE(348); + if (lookahead == ')') ADVANCE(292); + if (lookahead == '*') ADVANCE(369); + if (lookahead == '+') ADVANCE(365); + if (lookahead == ',') ADVANCE(291); + if (lookahead == '-') ADVANCE(356); + if (lookahead == '.') ADVANCE(437); + if (lookahead == '/') ADVANCE(371); + if (lookahead == '0') ADVANCE(443); + if (lookahead == ':') ADVANCE(418); + if (lookahead == ';') ADVANCE(402); + if (lookahead == '<') ADVANCE(393); + if (lookahead == '=') ADVANCE(413); + if (lookahead == '>') ADVANCE(579); + if (lookahead == 'F') ADVANCE(508); + if (lookahead == 'L') ADVANCE(482); + if (lookahead == 'R') ADVANCE(485); + if (lookahead == 'T') ADVANCE(512); + if (lookahead == 'U') ADVANCE(486); + if (lookahead == '[') ADVANCE(409); + if (lookahead == '\\') ADVANCE(4); + if (lookahead == ']') ADVANCE(244); + if (lookahead == '^') ADVANCE(380); + if (sym_identifier_character_set_1(lookahead)) ADVANCE(571); + if (lookahead == 'b') ADVANCE(554); + if (lookahead == 'c') ADVANCE(533); + if (lookahead == 'd') ADVANCE(550); + if (lookahead == 'f') ADVANCE(517); + if (lookahead == 'i') ADVANCE(547); + if (lookahead == 'm') ADVANCE(519); + if (lookahead == 'n') ADVANCE(567); + if (lookahead == 'p') ADVANCE(564); + if (lookahead == 's') ADVANCE(534); + if (lookahead == 't') ADVANCE(559); + if (lookahead == 'u') ADVANCE(489); + if (lookahead == 'v') ADVANCE(551); + if (lookahead == '{') ADVANCE(406); + if (lookahead == '|') ADVANCE(258); + if (lookahead == '}') ADVANCE(407); + if (lookahead == '~') ADVANCE(351); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(264) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(417); - if (('A' <= lookahead && lookahead <= '_') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(524); + lookahead == ' ') SKIP(283) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(445); END_STATE(); - case 265: + case 284: ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); - case 266: + case 285: ACCEPT_TOKEN(aux_sym_preproc_include_token1); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(306); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(347); END_STATE(); - case 267: + case 286: ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(267); + if (lookahead == '\n') ADVANCE(286); END_STATE(); - case 268: + case 287: ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(268); - if (lookahead == '\\') ADVANCE(310); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(309); + if (lookahead == '\n') ADVANCE(287); + if (lookahead == '\\') ADVANCE(305); END_STATE(); - case 269: + case 288: ACCEPT_TOKEN(aux_sym_preproc_def_token1); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(306); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(347); END_STATE(); - case 270: + case 289: ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); - case 271: + case 290: ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); END_STATE(); - case 272: + case 291: ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); - case 273: + case 292: ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); - case 274: + case 293: ACCEPT_TOKEN(aux_sym_preproc_if_token1); - if (lookahead == 'd') ADVANCE(289); - if (lookahead == 'n') ADVANCE(284); + if (lookahead == 'd') ADVANCE(323); + if (lookahead == 'n') ADVANCE(317); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(306); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(347); END_STATE(); - case 275: + case 294: ACCEPT_TOKEN(aux_sym_preproc_if_token2); END_STATE(); - case 276: + case 295: ACCEPT_TOKEN(aux_sym_preproc_if_token2); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(306); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(347); END_STATE(); - case 277: + case 296: ACCEPT_TOKEN(aux_sym_preproc_ifdef_token1); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(306); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(347); END_STATE(); - case 278: + case 297: ACCEPT_TOKEN(aux_sym_preproc_ifdef_token2); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(306); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(347); END_STATE(); - case 279: + case 298: ACCEPT_TOKEN(aux_sym_preproc_else_token1); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(306); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(347); END_STATE(); - case 280: + case 299: ACCEPT_TOKEN(aux_sym_preproc_elif_token1); + if (lookahead == 'd') ADVANCE(325); + if (lookahead == 'n') ADVANCE(318); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(306); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(347); END_STATE(); - case 281: - ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'c') ADVANCE(302); + case 300: + ACCEPT_TOKEN(aux_sym_preproc_elif_token1); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(306); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(347); END_STATE(); - case 282: - ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'd') ADVANCE(300); + case 301: + ACCEPT_TOKEN(aux_sym_preproc_elifdef_token1); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(306); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(347); END_STATE(); - case 283: - ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'd') ADVANCE(288); + case 302: + ACCEPT_TOKEN(aux_sym_preproc_elifdef_token2); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(306); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(347); END_STATE(); - case 284: + case 303: + ACCEPT_TOKEN(sym_preproc_arg); + if (lookahead == '\n') ADVANCE(224); + if (lookahead == '*') ADVANCE(303); + if (lookahead == '/') ADVANCE(572); + if (lookahead == '\\') ADVANCE(309); + if (lookahead != 0) ADVANCE(304); + END_STATE(); + case 304: + ACCEPT_TOKEN(sym_preproc_arg); + if (lookahead == '\n') ADVANCE(224); + if (lookahead == '*') ADVANCE(303); + if (lookahead == '\\') ADVANCE(309); + if (lookahead != 0) ADVANCE(304); + END_STATE(); + case 305: + ACCEPT_TOKEN(sym_preproc_arg); + if (lookahead == '\n') SKIP(99) + if (lookahead == '\r') ADVANCE(306); + if (lookahead == '\\') ADVANCE(310); + if (lookahead != 0) ADVANCE(308); + END_STATE(); + case 306: + ACCEPT_TOKEN(sym_preproc_arg); + if (lookahead == '\n') SKIP(99) + if (lookahead == '\\') ADVANCE(310); + if (lookahead != 0) ADVANCE(308); + END_STATE(); + case 307: + ACCEPT_TOKEN(sym_preproc_arg); + if (lookahead == '*') ADVANCE(304); + if (lookahead == '/') ADVANCE(574); + if (lookahead == '\\') ADVANCE(310); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(308); + END_STATE(); + case 308: + ACCEPT_TOKEN(sym_preproc_arg); + if (lookahead == '\\') ADVANCE(310); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(308); + END_STATE(); + case 309: + ACCEPT_TOKEN(sym_preproc_arg); + if (lookahead != 0 && + lookahead != '\r' && + lookahead != '*' && + lookahead != '\\') ADVANCE(304); + if (lookahead == '\r') ADVANCE(312); + if (lookahead == '*') ADVANCE(303); + if (lookahead == '\\') ADVANCE(309); + END_STATE(); + case 310: + ACCEPT_TOKEN(sym_preproc_arg); + if (lookahead != 0 && + lookahead != '\r' && + lookahead != '\\') ADVANCE(308); + if (lookahead == '\r') ADVANCE(313); + if (lookahead == '\\') ADVANCE(310); + END_STATE(); + case 311: + ACCEPT_TOKEN(sym_preproc_arg); + if (lookahead != 0 && + lookahead != '\r' && + lookahead != '\\') ADVANCE(574); + if (lookahead == '\r') ADVANCE(578); + if (lookahead == '\\') ADVANCE(576); + END_STATE(); + case 312: + ACCEPT_TOKEN(sym_preproc_arg); + if (lookahead != 0 && + lookahead != '*' && + lookahead != '\\') ADVANCE(304); + if (lookahead == '*') ADVANCE(303); + if (lookahead == '\\') ADVANCE(309); + END_STATE(); + case 313: + ACCEPT_TOKEN(sym_preproc_arg); + if (lookahead != 0 && + lookahead != '\\') ADVANCE(308); + if (lookahead == '\\') ADVANCE(310); + END_STATE(); + case 314: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'd') ADVANCE(290); + if (lookahead == 'c') ADVANCE(342); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(306); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(347); END_STATE(); - case 285: + case 315: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'e') ADVANCE(293); + if (lookahead == 'd') ADVANCE(339); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(306); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(347); END_STATE(); - case 286: + case 316: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'e') ADVANCE(279); + if (lookahead == 'd') ADVANCE(322); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(306); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(347); END_STATE(); - case 287: + case 317: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'e') ADVANCE(269); + if (lookahead == 'd') ADVANCE(324); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(306); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(347); END_STATE(); - case 288: + case 318: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'e') ADVANCE(266); + if (lookahead == 'd') ADVANCE(326); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(306); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(347); END_STATE(); - case 289: + case 319: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'e') ADVANCE(296); + if (lookahead == 'e') ADVANCE(329); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(306); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(347); END_STATE(); - case 290: + case 320: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'e') ADVANCE(297); + if (lookahead == 'e') ADVANCE(298); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(306); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(347); END_STATE(); - case 291: + case 321: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'f') ADVANCE(274); - if (lookahead == 'n') ADVANCE(281); + if (lookahead == 'e') ADVANCE(288); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(306); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(347); END_STATE(); - case 292: + case 322: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'f') ADVANCE(274); + if (lookahead == 'e') ADVANCE(285); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(306); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(347); END_STATE(); - case 293: + case 323: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'f') ADVANCE(298); + if (lookahead == 'e') ADVANCE(332); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(306); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(347); END_STATE(); - case 294: + case 324: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'f') ADVANCE(280); + if (lookahead == 'e') ADVANCE(333); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(306); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(347); END_STATE(); - case 295: + case 325: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'f') ADVANCE(276); + if (lookahead == 'e') ADVANCE(334); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(306); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(347); END_STATE(); - case 296: + case 326: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'f') ADVANCE(277); + if (lookahead == 'e') ADVANCE(335); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(306); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(347); END_STATE(); - case 297: + case 327: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'f') ADVANCE(278); + if (lookahead == 'f') ADVANCE(293); + if (lookahead == 'n') ADVANCE(314); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(306); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(347); END_STATE(); - case 298: + case 328: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'i') ADVANCE(304); + if (lookahead == 'f') ADVANCE(293); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(306); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(347); END_STATE(); - case 299: + case 329: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'i') ADVANCE(294); - if (lookahead == 's') ADVANCE(286); + if (lookahead == 'f') ADVANCE(337); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(306); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(347); END_STATE(); - case 300: + case 330: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'i') ADVANCE(295); + if (lookahead == 'f') ADVANCE(299); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(306); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(347); END_STATE(); - case 301: + case 331: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'l') ADVANCE(299); - if (lookahead == 'n') ADVANCE(282); + if (lookahead == 'f') ADVANCE(295); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(306); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(347); END_STATE(); - case 302: + case 332: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'l') ADVANCE(305); + if (lookahead == 'f') ADVANCE(296); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(306); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(347); END_STATE(); - case 303: + case 333: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'n') ADVANCE(282); + if (lookahead == 'f') ADVANCE(297); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(306); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(347); END_STATE(); - case 304: + case 334: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'n') ADVANCE(287); + if (lookahead == 'f') ADVANCE(301); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(306); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(347); END_STATE(); - case 305: + case 335: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'u') ADVANCE(283); + if (lookahead == 'f') ADVANCE(302); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(306); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(347); END_STATE(); - case 306: + case 336: ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'f') ADVANCE(300); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(306); - END_STATE(); - case 307: - ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '\n') ADVANCE(212); - if (lookahead == '*') ADVANCE(307); - if (lookahead == '/') ADVANCE(525); - if (lookahead == '\\') ADVANCE(314); - if (lookahead != 0) ADVANCE(308); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(347); END_STATE(); - case 308: - ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '\n') ADVANCE(212); - if (lookahead == '*') ADVANCE(307); - if (lookahead == '\\') ADVANCE(314); - if (lookahead != 0) ADVANCE(308); + case 337: + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'i') ADVANCE(345); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(347); END_STATE(); - case 309: - ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '\n') ADVANCE(268); - if (lookahead == '/') ADVANCE(312); - if (lookahead == '\\') ADVANCE(310); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(309); - if (lookahead != 0) ADVANCE(313); + case 338: + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'i') ADVANCE(330); + if (lookahead == 's') ADVANCE(320); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(347); END_STATE(); - case 310: - ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '\n') ADVANCE(309); - if (lookahead == '\r') ADVANCE(311); - if (lookahead == '\\') ADVANCE(315); - if (lookahead != 0) ADVANCE(313); + case 339: + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'i') ADVANCE(331); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(347); END_STATE(); - case 311: - ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '\n') ADVANCE(309); - if (lookahead == '\\') ADVANCE(315); - if (lookahead != 0) ADVANCE(313); + case 340: + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'i') ADVANCE(336); + if (lookahead == 's') ADVANCE(320); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(347); END_STATE(); - case 312: - ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '*') ADVANCE(308); - if (lookahead == '/') ADVANCE(528); - if (lookahead == '\\') ADVANCE(315); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(313); + case 341: + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'l') ADVANCE(338); + if (lookahead == 'n') ADVANCE(315); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(347); END_STATE(); - case 313: - ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '\\') ADVANCE(315); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(313); + case 342: + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'l') ADVANCE(346); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(347); END_STATE(); - case 314: - ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead != 0 && - lookahead != '\r' && - lookahead != '*' && - lookahead != '\\') ADVANCE(308); - if (lookahead == '\r') ADVANCE(317); - if (lookahead == '*') ADVANCE(307); - if (lookahead == '\\') ADVANCE(314); + case 343: + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'l') ADVANCE(340); + if (lookahead == 'n') ADVANCE(315); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(347); END_STATE(); - case 315: - ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead != 0 && - lookahead != '\r' && - lookahead != '\\') ADVANCE(313); - if (lookahead == '\r') ADVANCE(318); - if (lookahead == '\\') ADVANCE(315); + case 344: + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'n') ADVANCE(315); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(347); END_STATE(); - case 316: - ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead != 0 && - lookahead != '\r' && - lookahead != '\\') ADVANCE(528); - if (lookahead == '\r') ADVANCE(530); - if (lookahead == '\\') ADVANCE(526); + case 345: + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'n') ADVANCE(321); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(347); END_STATE(); - case 317: - ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead != 0 && - lookahead != '*' && - lookahead != '\\') ADVANCE(308); - if (lookahead == '*') ADVANCE(307); - if (lookahead == '\\') ADVANCE(314); + case 346: + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'u') ADVANCE(316); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(347); END_STATE(); - case 318: - ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead != 0 && - lookahead != '\\') ADVANCE(313); - if (lookahead == '\\') ADVANCE(315); + case 347: + ACCEPT_TOKEN(sym_preproc_directive); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(347); END_STATE(); - case 319: + case 348: ACCEPT_TOKEN(anon_sym_LPAREN2); END_STATE(); - case 320: + case 349: ACCEPT_TOKEN(anon_sym_BANG); END_STATE(); - case 321: + case 350: ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '=') ADVANCE(357); + if (lookahead == '=') ADVANCE(386); END_STATE(); - case 322: + case 351: ACCEPT_TOKEN(anon_sym_TILDE); END_STATE(); - case 323: + case 352: ACCEPT_TOKEN(anon_sym_DASH); END_STATE(); - case 324: + case 353: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(402); - if (lookahead == '.') ADVANCE(245); - if (lookahead == '0') ADVANCE(415); - if (lookahead == '=') ADVANCE(395); - if (lookahead == '>') ADVANCE(410); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(417); + if (lookahead == '-') ADVANCE(431); + if (lookahead == '.') ADVANCE(260); + if (lookahead == '0') ADVANCE(443); + if (lookahead == '=') ADVANCE(424); + if (lookahead == '>') ADVANCE(439); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(445); END_STATE(); - case 325: + case 354: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(402); - if (lookahead == '.') ADVANCE(245); - if (lookahead == '0') ADVANCE(415); - if (lookahead == '=') ADVANCE(395); - if (lookahead == '>') ADVANCE(409); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(417); + if (lookahead == '-') ADVANCE(431); + if (lookahead == '.') ADVANCE(260); + if (lookahead == '0') ADVANCE(443); + if (lookahead == '=') ADVANCE(424); + if (lookahead == '>') ADVANCE(438); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(445); END_STATE(); - case 326: + case 355: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(402); - if (lookahead == '.') ADVANCE(245); - if (lookahead == '0') ADVANCE(415); - if (lookahead == '>') ADVANCE(409); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(417); + if (lookahead == '-') ADVANCE(431); + if (lookahead == '.') ADVANCE(260); + if (lookahead == '0') ADVANCE(443); + if (lookahead == '>') ADVANCE(438); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(445); END_STATE(); - case 327: + case 356: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(402); - if (lookahead == '.') ADVANCE(245); - if (lookahead == '0') ADVANCE(415); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(417); + if (lookahead == '-') ADVANCE(431); + if (lookahead == '.') ADVANCE(260); + if (lookahead == '0') ADVANCE(443); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(445); END_STATE(); - case 328: + case 357: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(402); - if (lookahead == '=') ADVANCE(395); - if (lookahead == '>') ADVANCE(410); + if (lookahead == '-') ADVANCE(431); + if (lookahead == '=') ADVANCE(424); + if (lookahead == '>') ADVANCE(439); END_STATE(); - case 329: + case 358: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(402); - if (lookahead == '=') ADVANCE(395); - if (lookahead == '>') ADVANCE(409); + if (lookahead == '-') ADVANCE(431); + if (lookahead == '=') ADVANCE(424); + if (lookahead == '>') ADVANCE(438); END_STATE(); - case 330: + case 359: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(402); - if (lookahead == '>') ADVANCE(409); + if (lookahead == '-') ADVANCE(431); + if (lookahead == '>') ADVANCE(438); END_STATE(); - case 331: + case 360: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '.') ADVANCE(245); - if (lookahead == '0') ADVANCE(415); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(417); + if (lookahead == '.') ADVANCE(260); + if (lookahead == '0') ADVANCE(443); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(445); END_STATE(); - case 332: + case 361: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '=') ADVANCE(395); - if (lookahead == '>') ADVANCE(210); + if (lookahead == '=') ADVANCE(424); + if (lookahead == '>') ADVANCE(222); END_STATE(); - case 333: + case 362: ACCEPT_TOKEN(anon_sym_PLUS); END_STATE(); - case 334: + case 363: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(403); + if (lookahead == '+') ADVANCE(432); END_STATE(); - case 335: + case 364: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(403); - if (lookahead == '.') ADVANCE(245); - if (lookahead == '0') ADVANCE(415); - if (lookahead == '=') ADVANCE(394); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(417); + if (lookahead == '+') ADVANCE(432); + if (lookahead == '.') ADVANCE(260); + if (lookahead == '0') ADVANCE(443); + if (lookahead == '=') ADVANCE(423); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(445); END_STATE(); - case 336: + case 365: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(403); - if (lookahead == '.') ADVANCE(245); - if (lookahead == '0') ADVANCE(415); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(417); + if (lookahead == '+') ADVANCE(432); + if (lookahead == '.') ADVANCE(260); + if (lookahead == '0') ADVANCE(443); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(445); END_STATE(); - case 337: + case 366: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(403); - if (lookahead == '=') ADVANCE(394); + if (lookahead == '+') ADVANCE(432); + if (lookahead == '=') ADVANCE(423); END_STATE(); - case 338: + case 367: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '.') ADVANCE(245); - if (lookahead == '0') ADVANCE(415); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(417); + if (lookahead == '.') ADVANCE(260); + if (lookahead == '0') ADVANCE(443); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(445); END_STATE(); - case 339: + case 368: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '=') ADVANCE(394); + if (lookahead == '=') ADVANCE(423); END_STATE(); - case 340: + case 369: ACCEPT_TOKEN(anon_sym_STAR); END_STATE(); - case 341: + case 370: ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '=') ADVANCE(391); + if (lookahead == '=') ADVANCE(420); END_STATE(); - case 342: + case 371: ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '*') ADVANCE(212); - if (lookahead == '/') ADVANCE(527); + if (lookahead == '*') ADVANCE(224); + if (lookahead == '/') ADVANCE(573); END_STATE(); - case 343: + case 372: ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '*') ADVANCE(212); - if (lookahead == '/') ADVANCE(527); - if (lookahead == '=') ADVANCE(392); + if (lookahead == '*') ADVANCE(224); + if (lookahead == '/') ADVANCE(573); + if (lookahead == '=') ADVANCE(421); END_STATE(); - case 344: + case 373: ACCEPT_TOKEN(anon_sym_PERCENT); END_STATE(); - case 345: + case 374: ACCEPT_TOKEN(anon_sym_PERCENT); - if (lookahead == '=') ADVANCE(393); + if (lookahead == '=') ADVANCE(422); END_STATE(); - case 346: + case 375: ACCEPT_TOKEN(anon_sym_PIPE_PIPE); END_STATE(); - case 347: + case 376: ACCEPT_TOKEN(anon_sym_AMP_AMP); END_STATE(); - case 348: + case 377: ACCEPT_TOKEN(anon_sym_PIPE); END_STATE(); - case 349: + case 378: ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '=') ADVANCE(400); - if (lookahead == '|') ADVANCE(346); + if (lookahead == '=') ADVANCE(429); + if (lookahead == '|') ADVANCE(375); END_STATE(); - case 350: + case 379: ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '|') ADVANCE(346); + if (lookahead == '|') ADVANCE(375); END_STATE(); - case 351: + case 380: ACCEPT_TOKEN(anon_sym_CARET); END_STATE(); - case 352: + case 381: ACCEPT_TOKEN(anon_sym_CARET); - if (lookahead == '=') ADVANCE(399); + if (lookahead == '=') ADVANCE(428); END_STATE(); - case 353: + case 382: ACCEPT_TOKEN(anon_sym_AMP); END_STATE(); - case 354: + case 383: ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(347); + if (lookahead == '&') ADVANCE(376); END_STATE(); - case 355: + case 384: ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(347); - if (lookahead == '=') ADVANCE(398); + if (lookahead == '&') ADVANCE(376); + if (lookahead == '=') ADVANCE(427); END_STATE(); - case 356: + case 385: ACCEPT_TOKEN(anon_sym_EQ_EQ); END_STATE(); - case 357: + case 386: ACCEPT_TOKEN(anon_sym_BANG_EQ); END_STATE(); - case 358: + case 387: ACCEPT_TOKEN(anon_sym_GT); END_STATE(); - case 359: + case 388: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(361); - if (lookahead == '>') ADVANCE(371); + if (lookahead == '=') ADVANCE(390); + if (lookahead == '>') ADVANCE(400); END_STATE(); - case 360: + case 389: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(361); - if (lookahead == '>') ADVANCE(372); + if (lookahead == '=') ADVANCE(390); + if (lookahead == '>') ADVANCE(401); END_STATE(); - case 361: + case 390: ACCEPT_TOKEN(anon_sym_GT_EQ); END_STATE(); - case 362: + case 391: ACCEPT_TOKEN(anon_sym_LT_EQ); END_STATE(); - case 363: + case 392: ACCEPT_TOKEN(anon_sym_LT_EQ); - if (lookahead == '>') ADVANCE(401); + if (lookahead == '>') ADVANCE(430); END_STATE(); - case 364: + case 393: ACCEPT_TOKEN(anon_sym_LT); END_STATE(); - case 365: + case 394: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(370); - if (lookahead == '=') ADVANCE(363); + if (lookahead == '<') ADVANCE(399); + if (lookahead == '=') ADVANCE(392); END_STATE(); - case 366: + case 395: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(370); - if (lookahead == '=') ADVANCE(362); + if (lookahead == '<') ADVANCE(399); + if (lookahead == '=') ADVANCE(391); END_STATE(); - case 367: + case 396: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(369); - if (lookahead == '=') ADVANCE(363); + if (lookahead == '<') ADVANCE(398); + if (lookahead == '=') ADVANCE(392); END_STATE(); - case 368: + case 397: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(369); - if (lookahead == '=') ADVANCE(362); + if (lookahead == '<') ADVANCE(398); + if (lookahead == '=') ADVANCE(391); END_STATE(); - case 369: + case 398: ACCEPT_TOKEN(anon_sym_LT_LT); END_STATE(); - case 370: + case 399: ACCEPT_TOKEN(anon_sym_LT_LT); - if (lookahead == '=') ADVANCE(396); + if (lookahead == '=') ADVANCE(425); END_STATE(); - case 371: + case 400: ACCEPT_TOKEN(anon_sym_GT_GT); END_STATE(); - case 372: + case 401: ACCEPT_TOKEN(anon_sym_GT_GT); - if (lookahead == '=') ADVANCE(397); + if (lookahead == '=') ADVANCE(426); END_STATE(); - case 373: + case 402: ACCEPT_TOKEN(anon_sym_SEMI); END_STATE(); - case 374: + case 403: ACCEPT_TOKEN(anon_sym_COLON_COLON); END_STATE(); - case 375: + case 404: ACCEPT_TOKEN(anon_sym_LBRACK_LBRACK); END_STATE(); - case 376: + case 405: ACCEPT_TOKEN(anon_sym_RBRACK_RBRACK); END_STATE(); - case 377: + case 406: ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); - case 378: + case 407: ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); - case 379: + case 408: ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); - case 380: + case 409: ACCEPT_TOKEN(anon_sym_LBRACK); - if (lookahead == '[') ADVANCE(375); + if (lookahead == '[') ADVANCE(404); END_STATE(); - case 381: + case 410: ACCEPT_TOKEN(anon_sym_LBRACK); - if (lookahead == '[') ADVANCE(375); - if (lookahead == ']') ADVANCE(540); + if (lookahead == '[') ADVANCE(404); + if (lookahead == ']') ADVANCE(588); END_STATE(); - case 382: + case 411: ACCEPT_TOKEN(anon_sym_LBRACK); - if (lookahead == ']') ADVANCE(540); + if (lookahead == ']') ADVANCE(588); END_STATE(); - case 383: + case 412: ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); - case 384: + case 413: ACCEPT_TOKEN(anon_sym_EQ); END_STATE(); - case 385: + case 414: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(356); + if (lookahead == '=') ADVANCE(385); END_STATE(); - case 386: + case 415: ACCEPT_TOKEN(sym_primitive_type); - if (lookahead == '1') ADVANCE(478); - if (lookahead == '3') ADVANCE(476); - if (lookahead == '6') ADVANCE(477); - if (lookahead == '8') ADVANCE(486); - if (lookahead == 'p') ADVANCE(520); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(524); + if (lookahead == '1') ADVANCE(507); + if (lookahead == '3') ADVANCE(505); + if (lookahead == '6') ADVANCE(506); + if (lookahead == '8') ADVANCE(516); + if (lookahead == '\\') ADVANCE(241); + if (lookahead == 'p') ADVANCE(565); + if (sym_identifier_character_set_11(lookahead)) ADVANCE(571); END_STATE(); - case 387: + case 416: ACCEPT_TOKEN(sym_primitive_type); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(524); + if (lookahead == '\\') ADVANCE(241); + if (sym_identifier_character_set_11(lookahead)) ADVANCE(571); END_STATE(); - case 388: + case 417: ACCEPT_TOKEN(anon_sym_COLON); END_STATE(); - case 389: + case 418: ACCEPT_TOKEN(anon_sym_COLON); - if (lookahead == ':') ADVANCE(374); + if (lookahead == ':') ADVANCE(403); END_STATE(); - case 390: + case 419: ACCEPT_TOKEN(anon_sym_QMARK); END_STATE(); - case 391: + case 420: ACCEPT_TOKEN(anon_sym_STAR_EQ); END_STATE(); - case 392: + case 421: ACCEPT_TOKEN(anon_sym_SLASH_EQ); END_STATE(); - case 393: + case 422: ACCEPT_TOKEN(anon_sym_PERCENT_EQ); END_STATE(); - case 394: + case 423: ACCEPT_TOKEN(anon_sym_PLUS_EQ); END_STATE(); - case 395: + case 424: ACCEPT_TOKEN(anon_sym_DASH_EQ); END_STATE(); - case 396: + case 425: ACCEPT_TOKEN(anon_sym_LT_LT_EQ); END_STATE(); - case 397: + case 426: ACCEPT_TOKEN(anon_sym_GT_GT_EQ); END_STATE(); - case 398: + case 427: ACCEPT_TOKEN(anon_sym_AMP_EQ); END_STATE(); - case 399: + case 428: ACCEPT_TOKEN(anon_sym_CARET_EQ); END_STATE(); - case 400: + case 429: ACCEPT_TOKEN(anon_sym_PIPE_EQ); END_STATE(); - case 401: + case 430: ACCEPT_TOKEN(anon_sym_LT_EQ_GT); END_STATE(); - case 402: + case 431: ACCEPT_TOKEN(anon_sym_DASH_DASH); END_STATE(); - case 403: + case 432: ACCEPT_TOKEN(anon_sym_PLUS_PLUS); END_STATE(); - case 404: + case 433: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '*') ADVANCE(537); - if (lookahead == '.') ADVANCE(217); + if (lookahead == '*') ADVANCE(585); + if (lookahead == '.') ADVANCE(229); END_STATE(); - case 405: + case 434: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '*') ADVANCE(537); - if (lookahead == '.') ADVANCE(217); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(411); + if (lookahead == '*') ADVANCE(585); + if (lookahead == '.') ADVANCE(229); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(440); END_STATE(); - case 406: + case 435: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(217); + if (lookahead == '.') ADVANCE(229); END_STATE(); - case 407: + case 436: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(217); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(411); + if (lookahead == '.') ADVANCE(229); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(440); END_STATE(); - case 408: + case 437: ACCEPT_TOKEN(anon_sym_DOT); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(411); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(440); END_STATE(); - case 409: + case 438: ACCEPT_TOKEN(anon_sym_DASH_GT); END_STATE(); - case 410: + case 439: ACCEPT_TOKEN(anon_sym_DASH_GT); - if (lookahead == '*') ADVANCE(538); + if (lookahead == '*') ADVANCE(586); END_STATE(); - case 411: + case 440: ACCEPT_TOKEN(sym_number_literal); - if (lookahead == '\'') ADVANCE(245); + if (lookahead == '\'') ADVANCE(260); if (lookahead == 'F' || lookahead == 'L' || lookahead == 'U' || lookahead == 'f' || lookahead == 'l' || - lookahead == 'u') ADVANCE(425); + lookahead == 'u') ADVANCE(454); if (lookahead == 'E' || lookahead == 'P' || lookahead == 'e' || - lookahead == 'p') ADVANCE(424); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(411); + lookahead == 'p') ADVANCE(453); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(440); END_STATE(); - case 412: - ACCEPT_TOKEN(sym_number_literal); - if (lookahead == '\'') ADVANCE(249); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(412); - if (lookahead == 'L' || - lookahead == 'U' || - lookahead == 'l' || - lookahead == 'u') ADVANCE(425); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'E') || - ('a' <= lookahead && lookahead <= 'e')) ADVANCE(412); - END_STATE(); - case 413: + case 441: ACCEPT_TOKEN(sym_number_literal); - if (lookahead == '\'') ADVANCE(246); - if (lookahead == '.') ADVANCE(423); + if (lookahead == '\'') ADVANCE(261); + if (lookahead == '.') ADVANCE(452); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(422); + lookahead == 'f') ADVANCE(451); if (lookahead == 'L' || lookahead == 'U' || lookahead == 'l' || - lookahead == 'u') ADVANCE(425); - if (lookahead == 'b') ADVANCE(421); - if (lookahead == 'x') ADVANCE(248); + lookahead == 'u') ADVANCE(454); + if (lookahead == 'b') ADVANCE(450); + if (lookahead == 'x') ADVANCE(264); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(420); + lookahead == 'e') ADVANCE(449); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(424); + lookahead == 'p') ADVANCE(453); if (('A' <= lookahead && lookahead <= 'D') || - ('a' <= lookahead && lookahead <= 'd')) ADVANCE(422); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(414); + ('a' <= lookahead && lookahead <= 'd')) ADVANCE(451); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(442); END_STATE(); - case 414: + case 442: ACCEPT_TOKEN(sym_number_literal); - if (lookahead == '\'') ADVANCE(246); - if (lookahead == '.') ADVANCE(423); + if (lookahead == '\'') ADVANCE(261); + if (lookahead == '.') ADVANCE(452); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(422); + lookahead == 'f') ADVANCE(451); if (lookahead == 'L' || lookahead == 'U' || lookahead == 'l' || - lookahead == 'u') ADVANCE(425); + lookahead == 'u') ADVANCE(454); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(420); + lookahead == 'e') ADVANCE(449); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(424); + lookahead == 'p') ADVANCE(453); if (('A' <= lookahead && lookahead <= 'D') || - ('a' <= lookahead && lookahead <= 'd')) ADVANCE(422); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(414); + ('a' <= lookahead && lookahead <= 'd')) ADVANCE(451); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(442); END_STATE(); - case 415: + case 443: ACCEPT_TOKEN(sym_number_literal); - if (lookahead == '\'') ADVANCE(244); - if (lookahead == '.') ADVANCE(423); + if (lookahead == '\'') ADVANCE(259); + if (lookahead == '.') ADVANCE(452); if (lookahead == 'F' || lookahead == 'L' || lookahead == 'U' || lookahead == 'f' || lookahead == 'l' || - lookahead == 'u') ADVANCE(425); - if (lookahead == 'b') ADVANCE(214); - if (lookahead == 'x') ADVANCE(213); + lookahead == 'u') ADVANCE(454); + if (lookahead == 'b') ADVANCE(226); + if (lookahead == 'x') ADVANCE(225); if (lookahead == 'E' || lookahead == 'P' || lookahead == 'e' || - lookahead == 'p') ADVANCE(424); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(417); + lookahead == 'p') ADVANCE(453); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(445); END_STATE(); - case 416: + case 444: ACCEPT_TOKEN(sym_number_literal); - if (lookahead == '\'') ADVANCE(244); - if (lookahead == '.') ADVANCE(423); + if (lookahead == '\'') ADVANCE(259); + if (lookahead == '.') ADVANCE(452); if (lookahead == 'F' || lookahead == 'L' || lookahead == 'U' || lookahead == 'f' || lookahead == 'l' || - lookahead == 'u') ADVANCE(425); - if (lookahead == 'b') ADVANCE(244); - if (lookahead == 'x') ADVANCE(248); + lookahead == 'u') ADVANCE(454); + if (lookahead == 'b') ADVANCE(259); + if (lookahead == 'x') ADVANCE(264); if (lookahead == 'E' || lookahead == 'P' || lookahead == 'e' || - lookahead == 'p') ADVANCE(424); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(417); + lookahead == 'p') ADVANCE(453); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(445); END_STATE(); - case 417: + case 445: ACCEPT_TOKEN(sym_number_literal); - if (lookahead == '\'') ADVANCE(244); - if (lookahead == '.') ADVANCE(423); + if (lookahead == '\'') ADVANCE(259); + if (lookahead == '.') ADVANCE(452); if (lookahead == 'F' || lookahead == 'L' || lookahead == 'U' || lookahead == 'f' || lookahead == 'l' || - lookahead == 'u') ADVANCE(425); + lookahead == 'u') ADVANCE(454); if (lookahead == 'E' || lookahead == 'P' || lookahead == 'e' || - lookahead == 'p') ADVANCE(424); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(417); + lookahead == 'p') ADVANCE(453); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(445); END_STATE(); - case 418: + case 446: ACCEPT_TOKEN(sym_number_literal); - if (lookahead == '\'') ADVANCE(247); + if (lookahead == '\'') ADVANCE(265); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(419); + lookahead == 'f') ADVANCE(446); if (lookahead == 'L' || lookahead == 'U' || lookahead == 'l' || - lookahead == 'u') ADVANCE(425); + lookahead == 'u') ADVANCE(454); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'E') || + ('a' <= lookahead && lookahead <= 'e')) ADVANCE(446); + END_STATE(); + case 447: + ACCEPT_TOKEN(sym_number_literal); + if (lookahead == '\'') ADVANCE(263); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(448); + if (lookahead == 'L' || + lookahead == 'U' || + lookahead == 'l' || + lookahead == 'u') ADVANCE(454); if (lookahead == '+' || - lookahead == '-') ADVANCE(249); + lookahead == '-') ADVANCE(265); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(418); + lookahead == 'e') ADVANCE(447); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(424); + lookahead == 'p') ADVANCE(453); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'D') || - ('a' <= lookahead && lookahead <= 'd')) ADVANCE(419); + ('a' <= lookahead && lookahead <= 'd')) ADVANCE(448); END_STATE(); - case 419: + case 448: ACCEPT_TOKEN(sym_number_literal); - if (lookahead == '\'') ADVANCE(247); + if (lookahead == '\'') ADVANCE(263); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(419); + lookahead == 'f') ADVANCE(448); if (lookahead == 'L' || lookahead == 'U' || lookahead == 'l' || - lookahead == 'u') ADVANCE(425); + lookahead == 'u') ADVANCE(454); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(418); + lookahead == 'e') ADVANCE(447); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(424); + lookahead == 'p') ADVANCE(453); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'D') || - ('a' <= lookahead && lookahead <= 'd')) ADVANCE(419); + ('a' <= lookahead && lookahead <= 'd')) ADVANCE(448); END_STATE(); - case 420: + case 449: ACCEPT_TOKEN(sym_number_literal); - if (lookahead == '\'') ADVANCE(248); - if (lookahead == '.') ADVANCE(423); + if (lookahead == '\'') ADVANCE(264); + if (lookahead == '.') ADVANCE(452); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(422); + lookahead == 'f') ADVANCE(451); if (lookahead == 'L' || lookahead == 'U' || lookahead == 'l' || - lookahead == 'u') ADVANCE(425); + lookahead == 'u') ADVANCE(454); if (lookahead == '+' || - lookahead == '-') ADVANCE(249); + lookahead == '-') ADVANCE(265); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(420); + lookahead == 'e') ADVANCE(449); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(424); + lookahead == 'p') ADVANCE(453); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'D') || - ('a' <= lookahead && lookahead <= 'd')) ADVANCE(422); + ('a' <= lookahead && lookahead <= 'd')) ADVANCE(451); END_STATE(); - case 421: + case 450: ACCEPT_TOKEN(sym_number_literal); - if (lookahead == '\'') ADVANCE(248); - if (lookahead == '.') ADVANCE(423); + if (lookahead == '\'') ADVANCE(264); + if (lookahead == '.') ADVANCE(452); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(422); + lookahead == 'f') ADVANCE(451); if (lookahead == 'L' || lookahead == 'U' || lookahead == 'l' || - lookahead == 'u') ADVANCE(425); + lookahead == 'u') ADVANCE(454); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(420); + lookahead == 'e') ADVANCE(449); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(424); + lookahead == 'p') ADVANCE(453); if (('A' <= lookahead && lookahead <= 'D') || - ('a' <= lookahead && lookahead <= 'd')) ADVANCE(422); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(414); + ('a' <= lookahead && lookahead <= 'd')) ADVANCE(451); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(442); END_STATE(); - case 422: + case 451: ACCEPT_TOKEN(sym_number_literal); - if (lookahead == '\'') ADVANCE(248); - if (lookahead == '.') ADVANCE(423); + if (lookahead == '\'') ADVANCE(264); + if (lookahead == '.') ADVANCE(452); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(422); + lookahead == 'f') ADVANCE(451); if (lookahead == 'L' || lookahead == 'U' || lookahead == 'l' || - lookahead == 'u') ADVANCE(425); + lookahead == 'u') ADVANCE(454); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(420); + lookahead == 'e') ADVANCE(449); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(424); + lookahead == 'p') ADVANCE(453); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'D') || - ('a' <= lookahead && lookahead <= 'd')) ADVANCE(422); + ('a' <= lookahead && lookahead <= 'd')) ADVANCE(451); END_STATE(); - case 423: + case 452: ACCEPT_TOKEN(sym_number_literal); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(419); + lookahead == 'f') ADVANCE(448); if (lookahead == 'L' || lookahead == 'U' || lookahead == 'l' || - lookahead == 'u') ADVANCE(425); + lookahead == 'u') ADVANCE(454); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(418); + lookahead == 'e') ADVANCE(447); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(424); + lookahead == 'p') ADVANCE(453); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'D') || - ('a' <= lookahead && lookahead <= 'd')) ADVANCE(419); + ('a' <= lookahead && lookahead <= 'd')) ADVANCE(448); END_STATE(); - case 424: + case 453: ACCEPT_TOKEN(sym_number_literal); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(412); + lookahead == 'f') ADVANCE(446); if (lookahead == 'L' || lookahead == 'U' || lookahead == 'l' || - lookahead == 'u') ADVANCE(425); + lookahead == 'u') ADVANCE(454); if (lookahead == '+' || - lookahead == '-') ADVANCE(249); + lookahead == '-') ADVANCE(265); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'E') || - ('a' <= lookahead && lookahead <= 'e')) ADVANCE(412); + ('a' <= lookahead && lookahead <= 'e')) ADVANCE(446); END_STATE(); - case 425: + case 454: ACCEPT_TOKEN(sym_number_literal); if (lookahead == 'F' || lookahead == 'L' || lookahead == 'U' || lookahead == 'f' || lookahead == 'l' || - lookahead == 'u') ADVANCE(425); + lookahead == 'u') ADVANCE(454); END_STATE(); - case 426: + case 455: ACCEPT_TOKEN(anon_sym_L_SQUOTE); END_STATE(); - case 427: + case 456: ACCEPT_TOKEN(anon_sym_u_SQUOTE); END_STATE(); - case 428: + case 457: ACCEPT_TOKEN(anon_sym_U_SQUOTE); END_STATE(); - case 429: + case 458: ACCEPT_TOKEN(anon_sym_u8_SQUOTE); END_STATE(); - case 430: + case 459: ACCEPT_TOKEN(anon_sym_SQUOTE); END_STATE(); - case 431: + case 460: ACCEPT_TOKEN(aux_sym_char_literal_token1); END_STATE(); - case 432: + case 461: ACCEPT_TOKEN(aux_sym_char_literal_token1); - if (lookahead == '\n') ADVANCE(446); - if (lookahead == '\r') ADVANCE(445); - if (lookahead == 'U') ADVANCE(257); - if (lookahead == 'u') ADVANCE(253); - if (lookahead == 'x') ADVANCE(251); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(448); - if (lookahead != 0) ADVANCE(445); + if (lookahead == '\n') ADVANCE(475); + if (lookahead == '\r') ADVANCE(474); + if (lookahead == 'U') ADVANCE(280); + if (lookahead == 'u') ADVANCE(272); + if (lookahead == 'x') ADVANCE(268); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(477); + if (lookahead != 0) ADVANCE(474); END_STATE(); - case 433: + case 462: ACCEPT_TOKEN(aux_sym_char_literal_token1); - if (lookahead == '*') ADVANCE(212); - if (lookahead == '/') ADVANCE(527); + if (lookahead == '*') ADVANCE(224); + if (lookahead == '/') ADVANCE(573); END_STATE(); - case 434: + case 463: ACCEPT_TOKEN(aux_sym_char_literal_token1); - if (lookahead == '\\') ADVANCE(81); + if (lookahead == '\\') ADVANCE(97); END_STATE(); - case 435: + case 464: ACCEPT_TOKEN(anon_sym_L_DQUOTE); END_STATE(); - case 436: + case 465: ACCEPT_TOKEN(anon_sym_u_DQUOTE); END_STATE(); - case 437: + case 466: ACCEPT_TOKEN(anon_sym_U_DQUOTE); END_STATE(); - case 438: + case 467: ACCEPT_TOKEN(anon_sym_u8_DQUOTE); END_STATE(); - case 439: + case 468: ACCEPT_TOKEN(anon_sym_DQUOTE); END_STATE(); - case 440: + case 469: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == '*') ADVANCE(442); - if (lookahead == '/') ADVANCE(444); + if (lookahead == '*') ADVANCE(471); + if (lookahead == '/') ADVANCE(473); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(444); + lookahead != '\\') ADVANCE(473); END_STATE(); - case 441: + case 470: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == '*') ADVANCE(441); - if (lookahead == '/') ADVANCE(444); + if (lookahead == '*') ADVANCE(470); + if (lookahead == '/') ADVANCE(473); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(442); + lookahead != '\\') ADVANCE(471); END_STATE(); - case 442: + case 471: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == '*') ADVANCE(441); + if (lookahead == '*') ADVANCE(470); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(442); + lookahead != '\\') ADVANCE(471); END_STATE(); - case 443: + case 472: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == '/') ADVANCE(440); + if (lookahead == '/') ADVANCE(469); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') ADVANCE(443); + lookahead == ' ') ADVANCE(472); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(444); + lookahead != '\\') ADVANCE(473); END_STATE(); - case 444: + case 473: ACCEPT_TOKEN(aux_sym_string_literal_token1); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(444); + lookahead != '\\') ADVANCE(473); END_STATE(); - case 445: + case 474: ACCEPT_TOKEN(sym_escape_sequence); END_STATE(); - case 446: + case 475: ACCEPT_TOKEN(sym_escape_sequence); - if (lookahead == '\\') ADVANCE(81); + if (lookahead == '\\') ADVANCE(97); END_STATE(); - case 447: + case 476: ACCEPT_TOKEN(sym_escape_sequence); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(445); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(474); END_STATE(); - case 448: + case 477: ACCEPT_TOKEN(sym_escape_sequence); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(447); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(476); END_STATE(); - case 449: + case 478: ACCEPT_TOKEN(sym_system_lib_string); END_STATE(); - case 450: + case 479: ACCEPT_TOKEN(sym_system_lib_string); - if (lookahead == '>') ADVANCE(449); - if (lookahead == '\\') ADVANCE(228); + if (lookahead == '>') ADVANCE(478); + if (lookahead == '\\') ADVANCE(240); if (lookahead != 0 && - lookahead != '\n') ADVANCE(227); + lookahead != '\n') ADVANCE(239); END_STATE(); - case 451: + case 480: ACCEPT_TOKEN(sym_true); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(524); + if (lookahead == '\\') ADVANCE(241); + if (sym_identifier_character_set_11(lookahead)) ADVANCE(571); END_STATE(); - case 452: + case 481: ACCEPT_TOKEN(sym_false); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(524); + if (lookahead == '\\') ADVANCE(241); + if (sym_identifier_character_set_11(lookahead)) ADVANCE(571); END_STATE(); - case 453: + case 482: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(435); - if (lookahead == '\'') ADVANCE(426); - if (lookahead == 'R') ADVANCE(464); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(524); + if (lookahead == '"') ADVANCE(464); + if (lookahead == '\'') ADVANCE(455); + if (lookahead == 'R') ADVANCE(493); + if (lookahead == '\\') ADVANCE(241); + if (sym_identifier_character_set_11(lookahead)) ADVANCE(571); END_STATE(); - case 454: + case 483: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(435); - if (lookahead == 'R') ADVANCE(464); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(524); + if (lookahead == '"') ADVANCE(464); + if (lookahead == 'R') ADVANCE(493); + if (lookahead == '\\') ADVANCE(241); + if (sym_identifier_character_set_11(lookahead)) ADVANCE(571); END_STATE(); - case 455: + case 484: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(435); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(524); + if (lookahead == '"') ADVANCE(464); + if (lookahead == '\\') ADVANCE(241); + if (sym_identifier_character_set_11(lookahead)) ADVANCE(571); END_STATE(); - case 456: + case 485: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(532); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(524); + if (lookahead == '"') ADVANCE(580); + if (lookahead == '\\') ADVANCE(241); + if (sym_identifier_character_set_11(lookahead)) ADVANCE(571); END_STATE(); - case 457: + case 486: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(437); - if (lookahead == '\'') ADVANCE(428); - if (lookahead == 'R') ADVANCE(465); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(524); + if (lookahead == '"') ADVANCE(466); + if (lookahead == '\'') ADVANCE(457); + if (lookahead == 'R') ADVANCE(494); + if (lookahead == '\\') ADVANCE(241); + if (sym_identifier_character_set_11(lookahead)) ADVANCE(571); END_STATE(); - case 458: + case 487: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(437); - if (lookahead == 'R') ADVANCE(465); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(524); + if (lookahead == '"') ADVANCE(466); + if (lookahead == 'R') ADVANCE(494); + if (lookahead == '\\') ADVANCE(241); + if (sym_identifier_character_set_11(lookahead)) ADVANCE(571); END_STATE(); - case 459: + case 488: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(437); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(524); + if (lookahead == '"') ADVANCE(466); + if (lookahead == '\\') ADVANCE(241); + if (sym_identifier_character_set_11(lookahead)) ADVANCE(571); END_STATE(); - case 460: + case 489: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(436); - if (lookahead == '\'') ADVANCE(427); - if (lookahead == '8') ADVANCE(466); - if (lookahead == 'R') ADVANCE(469); - if (lookahead == 'i') ADVANCE(507); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(524); + if (lookahead == '"') ADVANCE(465); + if (lookahead == '\'') ADVANCE(456); + if (lookahead == '8') ADVANCE(495); + if (lookahead == 'R') ADVANCE(498); + if (lookahead == '\\') ADVANCE(241); + if (lookahead == 'i') ADVANCE(549); + if (sym_identifier_character_set_11(lookahead)) ADVANCE(571); END_STATE(); - case 461: + case 490: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(436); - if (lookahead == '8') ADVANCE(467); - if (lookahead == 'R') ADVANCE(469); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(524); + if (lookahead == '"') ADVANCE(465); + if (lookahead == '8') ADVANCE(496); + if (lookahead == 'R') ADVANCE(498); + if (lookahead == '\\') ADVANCE(241); + if (sym_identifier_character_set_11(lookahead)) ADVANCE(571); END_STATE(); - case 462: + case 491: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(436); - if (lookahead == '8') ADVANCE(468); - if (lookahead == 'i') ADVANCE(507); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(524); + if (lookahead == '"') ADVANCE(465); + if (lookahead == '8') ADVANCE(497); + if (lookahead == '\\') ADVANCE(241); + if (lookahead == 'i') ADVANCE(549); + if (sym_identifier_character_set_11(lookahead)) ADVANCE(571); END_STATE(); - case 463: + case 492: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(436); - if (lookahead == '8') ADVANCE(468); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(524); + if (lookahead == '"') ADVANCE(465); + if (lookahead == '8') ADVANCE(497); + if (lookahead == '\\') ADVANCE(241); + if (sym_identifier_character_set_11(lookahead)) ADVANCE(571); END_STATE(); - case 464: + case 493: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(533); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(524); + if (lookahead == '"') ADVANCE(581); + if (lookahead == '\\') ADVANCE(241); + if (sym_identifier_character_set_11(lookahead)) ADVANCE(571); END_STATE(); - case 465: + case 494: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(535); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(524); + if (lookahead == '"') ADVANCE(583); + if (lookahead == '\\') ADVANCE(241); + if (sym_identifier_character_set_11(lookahead)) ADVANCE(571); END_STATE(); - case 466: + case 495: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(438); - if (lookahead == '\'') ADVANCE(429); - if (lookahead == 'R') ADVANCE(470); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(524); + if (lookahead == '"') ADVANCE(467); + if (lookahead == '\'') ADVANCE(458); + if (lookahead == 'R') ADVANCE(499); + if (lookahead == '\\') ADVANCE(241); + if (sym_identifier_character_set_11(lookahead)) ADVANCE(571); END_STATE(); - case 467: + case 496: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(438); - if (lookahead == 'R') ADVANCE(470); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(524); + if (lookahead == '"') ADVANCE(467); + if (lookahead == 'R') ADVANCE(499); + if (lookahead == '\\') ADVANCE(241); + if (sym_identifier_character_set_11(lookahead)) ADVANCE(571); END_STATE(); - case 468: + case 497: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(438); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(524); + if (lookahead == '"') ADVANCE(467); + if (lookahead == '\\') ADVANCE(241); + if (sym_identifier_character_set_11(lookahead)) ADVANCE(571); END_STATE(); - case 469: + case 498: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(534); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(524); + if (lookahead == '"') ADVANCE(582); + if (lookahead == '\\') ADVANCE(241); + if (sym_identifier_character_set_11(lookahead)) ADVANCE(571); END_STATE(); - case 470: + case 499: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(536); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(524); + if (lookahead == '"') ADVANCE(584); + if (lookahead == '\\') ADVANCE(241); + if (sym_identifier_character_set_11(lookahead)) ADVANCE(571); END_STATE(); - case 471: + case 500: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\'') ADVANCE(426); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(524); + if (lookahead == '\'') ADVANCE(455); + if (lookahead == '\\') ADVANCE(241); + if (sym_identifier_character_set_11(lookahead)) ADVANCE(571); END_STATE(); - case 472: + case 501: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\'') ADVANCE(428); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(524); + if (lookahead == '\'') ADVANCE(457); + if (lookahead == '\\') ADVANCE(241); + if (sym_identifier_character_set_11(lookahead)) ADVANCE(571); END_STATE(); - case 473: + case 502: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\'') ADVANCE(427); - if (lookahead == '8') ADVANCE(474); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(524); + if (lookahead == '\'') ADVANCE(456); + if (lookahead == '8') ADVANCE(503); + if (lookahead == '\\') ADVANCE(241); + if (sym_identifier_character_set_11(lookahead)) ADVANCE(571); END_STATE(); - case 474: + case 503: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\'') ADVANCE(429); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(524); + if (lookahead == '\'') ADVANCE(458); + if (lookahead == '\\') ADVANCE(241); + if (sym_identifier_character_set_11(lookahead)) ADVANCE(571); END_STATE(); - case 475: + case 504: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '1') ADVANCE(478); - if (lookahead == '3') ADVANCE(476); - if (lookahead == '6') ADVANCE(477); - if (lookahead == '8') ADVANCE(486); - if (lookahead == 'p') ADVANCE(520); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(524); + if (lookahead == '1') ADVANCE(507); + if (lookahead == '3') ADVANCE(505); + if (lookahead == '6') ADVANCE(506); + if (lookahead == '8') ADVANCE(516); + if (lookahead == '\\') ADVANCE(241); + if (lookahead == 'p') ADVANCE(565); + if (sym_identifier_character_set_11(lookahead)) ADVANCE(571); END_STATE(); - case 476: + case 505: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '2') ADVANCE(486); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(524); + if (lookahead == '2') ADVANCE(516); + if (lookahead == '\\') ADVANCE(241); + if (sym_identifier_character_set_11(lookahead)) ADVANCE(571); END_STATE(); - case 477: + case 506: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '4') ADVANCE(486); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(524); + if (lookahead == '4') ADVANCE(516); + if (lookahead == '\\') ADVANCE(241); + if (sym_identifier_character_set_11(lookahead)) ADVANCE(571); END_STATE(); - case 478: + case 507: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '6') ADVANCE(486); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(524); + if (lookahead == '6') ADVANCE(516); + if (lookahead == '\\') ADVANCE(241); + if (sym_identifier_character_set_11(lookahead)) ADVANCE(571); END_STATE(); - case 479: + case 508: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'A') ADVANCE(482); - if (('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(524); + if (lookahead == 'A') ADVANCE(511); + if (lookahead == '\\') ADVANCE(241); + if (sym_identifier_character_set_12(lookahead)) ADVANCE(571); END_STATE(); - case 480: + case 509: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'E') ADVANCE(451); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(524); + if (lookahead == 'E') ADVANCE(480); + if (lookahead == '\\') ADVANCE(241); + if (sym_identifier_character_set_11(lookahead)) ADVANCE(571); END_STATE(); - case 481: + case 510: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'E') ADVANCE(452); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(524); + if (lookahead == 'E') ADVANCE(481); + if (lookahead == '\\') ADVANCE(241); + if (sym_identifier_character_set_11(lookahead)) ADVANCE(571); END_STATE(); - case 482: + case 511: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'L') ADVANCE(484); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(524); + if (lookahead == 'L') ADVANCE(513); + if (lookahead == '\\') ADVANCE(241); + if (sym_identifier_character_set_11(lookahead)) ADVANCE(571); END_STATE(); - case 483: + case 512: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'R') ADVANCE(485); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(524); + if (lookahead == 'R') ADVANCE(514); + if (lookahead == '\\') ADVANCE(241); + if (sym_identifier_character_set_11(lookahead)) ADVANCE(571); END_STATE(); - case 484: + case 513: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'S') ADVANCE(481); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(524); + if (lookahead == 'S') ADVANCE(510); + if (lookahead == '\\') ADVANCE(241); + if (sym_identifier_character_set_11(lookahead)) ADVANCE(571); END_STATE(); - case 485: + case 514: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'U') ADVANCE(480); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(524); + if (lookahead == 'U') ADVANCE(509); + if (lookahead == '\\') ADVANCE(241); + if (sym_identifier_character_set_11(lookahead)) ADVANCE(571); END_STATE(); - case 486: + case 515: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(518); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(524); + if (lookahead == '\\') ADVANCE(241); + if (lookahead == '_') ADVANCE(522); + if (sym_identifier_character_set_13(lookahead)) ADVANCE(571); END_STATE(); - case 487: + case 516: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(502); - if (lookahead == 'l') ADVANCE(509); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(524); + if (lookahead == '\\') ADVANCE(241); + if (lookahead == '_') ADVANCE(562); + if (sym_identifier_character_set_13(lookahead)) ADVANCE(571); END_STATE(); - case 488: + case 517: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(502); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(524); + if (lookahead == '\\') ADVANCE(241); + if (lookahead == 'a') ADVANCE(540); + if (lookahead == 'l') ADVANCE(552); + if (sym_identifier_character_set_14(lookahead)) ADVANCE(571); END_STATE(); - case 489: + case 518: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(513); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(524); + if (lookahead == '\\') ADVANCE(241); + if (lookahead == 'a') ADVANCE(540); + if (sym_identifier_character_set_14(lookahead)) ADVANCE(571); END_STATE(); - case 490: + case 519: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(518); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(524); + if (lookahead == '\\') ADVANCE(241); + if (lookahead == 'a') ADVANCE(569); + if (sym_identifier_character_set_14(lookahead)) ADVANCE(571); END_STATE(); - case 491: + case 520: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'b') ADVANCE(504); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(524); + if (lookahead == '\\') ADVANCE(241); + if (lookahead == 'a') ADVANCE(556); + if (sym_identifier_character_set_14(lookahead)) ADVANCE(571); END_STATE(); - case 492: + case 521: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'd') ADVANCE(387); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(524); + if (lookahead == '\\') ADVANCE(241); + if (lookahead == 'a') ADVANCE(562); + if (sym_identifier_character_set_14(lookahead)) ADVANCE(571); END_STATE(); - case 493: + case 522: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(451); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(524); + if (lookahead == '\\') ADVANCE(241); + if (lookahead == 'a') ADVANCE(544); + if (sym_identifier_character_set_14(lookahead)) ADVANCE(571); END_STATE(); - case 494: + case 523: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(387); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(524); + if (lookahead == '\\') ADVANCE(241); + if (lookahead == 'b') ADVANCE(545); + if (sym_identifier_character_set_11(lookahead)) ADVANCE(571); END_STATE(); - case 495: + case 524: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(486); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(524); + if (lookahead == '\\') ADVANCE(241); + if (lookahead == 'd') ADVANCE(416); + if (sym_identifier_character_set_11(lookahead)) ADVANCE(571); END_STATE(); - case 496: + case 525: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(452); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(524); + if (lookahead == '\\') ADVANCE(241); + if (lookahead == 'd') ADVANCE(536); + if (sym_identifier_character_set_11(lookahead)) ADVANCE(571); END_STATE(); - case 497: + case 526: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'h') ADVANCE(489); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(524); + if (lookahead == '\\') ADVANCE(241); + if (lookahead == 'e') ADVANCE(480); + if (sym_identifier_character_set_11(lookahead)) ADVANCE(571); END_STATE(); - case 498: + case 527: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'i') ADVANCE(523); - if (lookahead == 's') ADVANCE(499); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(524); + if (lookahead == '\\') ADVANCE(241); + if (lookahead == 'e') ADVANCE(416); + if (sym_identifier_character_set_11(lookahead)) ADVANCE(571); END_STATE(); - case 499: + case 528: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'i') ADVANCE(523); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(524); + if (lookahead == '\\') ADVANCE(241); + if (lookahead == 'e') ADVANCE(481); + if (sym_identifier_character_set_11(lookahead)) ADVANCE(571); END_STATE(); - case 500: + case 529: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'i') ADVANCE(492); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(524); + if (lookahead == '\\') ADVANCE(241); + if (lookahead == 'e') ADVANCE(516); + if (sym_identifier_character_set_11(lookahead)) ADVANCE(571); END_STATE(); - case 501: + case 530: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'i') ADVANCE(507); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(524); + if (lookahead == '\\') ADVANCE(241); + if (lookahead == 'f') ADVANCE(516); + if (sym_identifier_character_set_11(lookahead)) ADVANCE(571); END_STATE(); - case 502: + case 531: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(516); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(524); + if (lookahead == '\\') ADVANCE(241); + if (lookahead == 'f') ADVANCE(530); + if (sym_identifier_character_set_11(lookahead)) ADVANCE(571); END_STATE(); - case 503: + case 532: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(387); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(524); + if (lookahead == '\\') ADVANCE(241); + if (lookahead == 'g') ADVANCE(548); + if (sym_identifier_character_set_11(lookahead)) ADVANCE(571); END_STATE(); - case 504: + case 533: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(494); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(524); + if (lookahead == '\\') ADVANCE(241); + if (lookahead == 'h') ADVANCE(520); + if (sym_identifier_character_set_11(lookahead)) ADVANCE(571); END_STATE(); - case 505: + case 534: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(509); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(524); + if (lookahead == '\\') ADVANCE(241); + if (lookahead == 'i') ADVANCE(570); + if (lookahead == 's') ADVANCE(535); + if (sym_identifier_character_set_11(lookahead)) ADVANCE(571); END_STATE(); - case 506: + case 535: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(517); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(524); + if (lookahead == '\\') ADVANCE(241); + if (lookahead == 'i') ADVANCE(570); + if (sym_identifier_character_set_11(lookahead)) ADVANCE(571); END_STATE(); - case 507: + case 536: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(519); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(524); + if (lookahead == '\\') ADVANCE(241); + if (lookahead == 'i') ADVANCE(531); + if (sym_identifier_character_set_11(lookahead)) ADVANCE(571); END_STATE(); - case 508: + case 537: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(241); + if (lookahead == 'i') ADVANCE(532); + if (sym_identifier_character_set_11(lookahead)) ADVANCE(571); + END_STATE(); + case 538: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(241); + if (lookahead == 'i') ADVANCE(524); + if (sym_identifier_character_set_11(lookahead)) ADVANCE(571); + END_STATE(); + case 539: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(241); + if (lookahead == 'i') ADVANCE(549); + if (sym_identifier_character_set_11(lookahead)) ADVANCE(571); + END_STATE(); + case 540: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(241); + if (lookahead == 'l') ADVANCE(560); + if (sym_identifier_character_set_11(lookahead)) ADVANCE(571); + END_STATE(); + case 541: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(241); + if (lookahead == 'l') ADVANCE(416); + if (sym_identifier_character_set_11(lookahead)) ADVANCE(571); + END_STATE(); + case 542: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(241); + if (lookahead == 'l') ADVANCE(555); + if (sym_identifier_character_set_11(lookahead)) ADVANCE(571); + END_STATE(); + case 543: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(241); + if (lookahead == 'l') ADVANCE(542); + if (sym_identifier_character_set_11(lookahead)) ADVANCE(571); + END_STATE(); + case 544: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(241); + if (lookahead == 'l') ADVANCE(537); + if (sym_identifier_character_set_11(lookahead)) ADVANCE(571); + END_STATE(); + case 545: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(241); + if (lookahead == 'l') ADVANCE(527); + if (sym_identifier_character_set_11(lookahead)) ADVANCE(571); + END_STATE(); + case 546: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(241); + if (lookahead == 'l') ADVANCE(552); + if (sym_identifier_character_set_11(lookahead)) ADVANCE(571); + END_STATE(); + case 547: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(241); + if (lookahead == 'n') ADVANCE(561); + if (sym_identifier_character_set_11(lookahead)) ADVANCE(571); + END_STATE(); + case 548: ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(241); + if (lookahead == 'n') ADVANCE(516); + if (sym_identifier_character_set_11(lookahead)) ADVANCE(571); + END_STATE(); + case 549: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(241); + if (lookahead == 'n') ADVANCE(563); + if (sym_identifier_character_set_11(lookahead)) ADVANCE(571); + END_STATE(); + case 550: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(241); + if (lookahead == 'o') ADVANCE(566); + if (sym_identifier_character_set_11(lookahead)) ADVANCE(571); + END_STATE(); + case 551: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(241); + if (lookahead == 'o') ADVANCE(538); + if (sym_identifier_character_set_11(lookahead)) ADVANCE(571); + END_STATE(); + case 552: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(241); if (lookahead == 'o') ADVANCE(521); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(524); + if (sym_identifier_character_set_11(lookahead)) ADVANCE(571); END_STATE(); - case 509: + case 553: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(490); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(524); + if (lookahead == '\\') ADVANCE(241); + if (lookahead == 'o') ADVANCE(541); + if (sym_identifier_character_set_11(lookahead)) ADVANCE(571); END_STATE(); - case 510: + case 554: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(503); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(524); + if (lookahead == '\\') ADVANCE(241); + if (lookahead == 'o') ADVANCE(553); + if (sym_identifier_character_set_11(lookahead)) ADVANCE(571); END_STATE(); - case 511: + case 555: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(500); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(524); + if (lookahead == '\\') ADVANCE(241); + if (lookahead == 'p') ADVANCE(565); + if (sym_identifier_character_set_11(lookahead)) ADVANCE(571); END_STATE(); - case 512: + case 556: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(510); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(524); + if (lookahead == '\\') ADVANCE(241); + if (lookahead == 'r') ADVANCE(415); + if (sym_identifier_character_set_11(lookahead)) ADVANCE(571); END_STATE(); - case 513: + case 557: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(386); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(524); + if (lookahead == '\\') ADVANCE(241); + if (lookahead == 'r') ADVANCE(525); + if (sym_identifier_character_set_11(lookahead)) ADVANCE(571); END_STATE(); - case 514: + case 558: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(486); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(524); + if (lookahead == '\\') ADVANCE(241); + if (lookahead == 'r') ADVANCE(516); + if (sym_identifier_character_set_11(lookahead)) ADVANCE(571); END_STATE(); - case 515: + case 559: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(522); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(524); + if (lookahead == '\\') ADVANCE(241); + if (lookahead == 'r') ADVANCE(568); + if (sym_identifier_character_set_11(lookahead)) ADVANCE(571); END_STATE(); - case 516: + case 560: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(496); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(524); + if (lookahead == '\\') ADVANCE(241); + if (lookahead == 's') ADVANCE(528); + if (sym_identifier_character_set_11(lookahead)) ADVANCE(571); END_STATE(); - case 517: + case 561: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(386); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(524); + if (lookahead == '\\') ADVANCE(241); + if (lookahead == 't') ADVANCE(415); + if (sym_identifier_character_set_11(lookahead)) ADVANCE(571); END_STATE(); - case 518: + case 562: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(387); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(524); + if (lookahead == '\\') ADVANCE(241); + if (lookahead == 't') ADVANCE(416); + if (sym_identifier_character_set_11(lookahead)) ADVANCE(571); END_STATE(); - case 519: + case 563: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(475); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(524); + if (lookahead == '\\') ADVANCE(241); + if (lookahead == 't') ADVANCE(504); + if (sym_identifier_character_set_11(lookahead)) ADVANCE(571); END_STATE(); - case 520: + case 564: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(514); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(524); + if (lookahead == '\\') ADVANCE(241); + if (lookahead == 't') ADVANCE(557); + if (sym_identifier_character_set_11(lookahead)) ADVANCE(571); END_STATE(); - case 521: + case 565: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'u') ADVANCE(491); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(524); + if (lookahead == '\\') ADVANCE(241); + if (lookahead == 't') ADVANCE(558); + if (sym_identifier_character_set_11(lookahead)) ADVANCE(571); END_STATE(); - case 522: + case 566: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'u') ADVANCE(493); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(524); + if (lookahead == '\\') ADVANCE(241); + if (lookahead == 'u') ADVANCE(523); + if (sym_identifier_character_set_11(lookahead)) ADVANCE(571); END_STATE(); - case 523: + case 567: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'z') ADVANCE(495); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'y')) ADVANCE(524); + if (lookahead == '\\') ADVANCE(241); + if (lookahead == 'u') ADVANCE(543); + if (sym_identifier_character_set_11(lookahead)) ADVANCE(571); END_STATE(); - case 524: + case 568: ACCEPT_TOKEN(sym_identifier); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(524); + if (lookahead == '\\') ADVANCE(241); + if (lookahead == 'u') ADVANCE(526); + if (sym_identifier_character_set_11(lookahead)) ADVANCE(571); END_STATE(); - case 525: + case 569: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(241); + if (lookahead == 'x') ADVANCE(515); + if (sym_identifier_character_set_11(lookahead)) ADVANCE(571); + END_STATE(); + case 570: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(241); + if (lookahead == 'z') ADVANCE(529); + if (sym_identifier_character_set_15(lookahead)) ADVANCE(571); + END_STATE(); + case 571: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(241); + if (sym_identifier_character_set_11(lookahead)) ADVANCE(571); + END_STATE(); + case 572: ACCEPT_TOKEN(sym_comment); END_STATE(); - case 526: + case 573: ACCEPT_TOKEN(sym_comment); - if (lookahead == '\r') ADVANCE(528); - if (lookahead == '\\') ADVANCE(316); + if (lookahead == '\\') ADVANCE(281); if (lookahead != 0 && - lookahead != '\n') ADVANCE(528); + lookahead != '\n') ADVANCE(573); END_STATE(); - case 527: + case 574: ACCEPT_TOKEN(sym_comment); - if (lookahead == '\\') ADVANCE(258); + if (lookahead == '\\') ADVANCE(311); if (lookahead != 0 && - lookahead != '\n') ADVANCE(527); + lookahead != '\n') ADVANCE(574); END_STATE(); - case 528: + case 575: ACCEPT_TOKEN(sym_comment); - if (lookahead == '\\') ADVANCE(316); if (lookahead != 0 && - lookahead != '\n') ADVANCE(528); + lookahead != '\r' && + lookahead != '\\') ADVANCE(573); + if (lookahead == '\r') ADVANCE(577); + if (lookahead == '\\') ADVANCE(575); END_STATE(); - case 529: + case 576: ACCEPT_TOKEN(sym_comment); if (lookahead != 0 && - lookahead != '\\') ADVANCE(527); - if (lookahead == '\\') ADVANCE(258); + lookahead != '\r' && + lookahead != '\\') ADVANCE(574); + if (lookahead == '\r') ADVANCE(578); + if (lookahead == '\\') ADVANCE(576); END_STATE(); - case 530: + case 577: ACCEPT_TOKEN(sym_comment); if (lookahead != 0 && - lookahead != '\\') ADVANCE(528); - if (lookahead == '\\') ADVANCE(316); + lookahead != '\\') ADVANCE(573); + if (lookahead == '\\') ADVANCE(281); END_STATE(); - case 531: + case 578: + ACCEPT_TOKEN(sym_comment); + if (lookahead != 0 && + lookahead != '\\') ADVANCE(574); + if (lookahead == '\\') ADVANCE(311); + END_STATE(); + case 579: ACCEPT_TOKEN(anon_sym_GT2); END_STATE(); - case 532: + case 580: ACCEPT_TOKEN(anon_sym_R_DQUOTE); END_STATE(); - case 533: + case 581: ACCEPT_TOKEN(anon_sym_LR_DQUOTE); END_STATE(); - case 534: + case 582: ACCEPT_TOKEN(anon_sym_uR_DQUOTE); END_STATE(); - case 535: + case 583: ACCEPT_TOKEN(anon_sym_UR_DQUOTE); END_STATE(); - case 536: + case 584: ACCEPT_TOKEN(anon_sym_u8R_DQUOTE); END_STATE(); - case 537: + case 585: ACCEPT_TOKEN(anon_sym_DOT_STAR); END_STATE(); - case 538: + case 586: ACCEPT_TOKEN(anon_sym_DASH_GT_STAR); END_STATE(); - case 539: + case 587: ACCEPT_TOKEN(anon_sym_LPAREN_RPAREN); END_STATE(); - case 540: + case 588: ACCEPT_TOKEN(anon_sym_LBRACK_RBRACK); END_STATE(); - case 541: + case 589: ACCEPT_TOKEN(anon_sym_DQUOTE_DQUOTE); END_STATE(); - case 542: + case 590: ACCEPT_TOKEN(sym_literal_suffix); - if (lookahead == '"') ADVANCE(435); - if (lookahead == 'R') ADVANCE(546); + if (lookahead == '"') ADVANCE(464); + if (lookahead == 'R') ADVANCE(594); + if (lookahead == '\\') ADVANCE(241); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + if (sym_identifier_character_set_16(lookahead)) ADVANCE(571); END_STATE(); - case 543: + case 591: ACCEPT_TOKEN(sym_literal_suffix); - if (lookahead == '"') ADVANCE(532); + if (lookahead == '"') ADVANCE(580); + if (lookahead == '\\') ADVANCE(241); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + if (sym_identifier_character_set_16(lookahead)) ADVANCE(571); END_STATE(); - case 544: + case 592: ACCEPT_TOKEN(sym_literal_suffix); - if (lookahead == '"') ADVANCE(437); - if (lookahead == 'R') ADVANCE(547); + if (lookahead == '"') ADVANCE(466); + if (lookahead == 'R') ADVANCE(595); + if (lookahead == '\\') ADVANCE(241); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + if (sym_identifier_character_set_16(lookahead)) ADVANCE(571); END_STATE(); - case 545: + case 593: ACCEPT_TOKEN(sym_literal_suffix); - if (lookahead == '"') ADVANCE(436); - if (lookahead == '8') ADVANCE(548); - if (lookahead == 'R') ADVANCE(549); + if (lookahead == '"') ADVANCE(465); + if (lookahead == '8') ADVANCE(596); + if (lookahead == 'R') ADVANCE(597); + if (lookahead == '\\') ADVANCE(241); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + if (sym_identifier_character_set_16(lookahead)) ADVANCE(571); END_STATE(); - case 546: + case 594: ACCEPT_TOKEN(sym_literal_suffix); - if (lookahead == '"') ADVANCE(533); + if (lookahead == '"') ADVANCE(581); + if (lookahead == '\\') ADVANCE(241); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + if (sym_identifier_character_set_16(lookahead)) ADVANCE(571); END_STATE(); - case 547: + case 595: ACCEPT_TOKEN(sym_literal_suffix); - if (lookahead == '"') ADVANCE(535); + if (lookahead == '"') ADVANCE(583); + if (lookahead == '\\') ADVANCE(241); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + if (sym_identifier_character_set_16(lookahead)) ADVANCE(571); END_STATE(); - case 548: + case 596: ACCEPT_TOKEN(sym_literal_suffix); - if (lookahead == '"') ADVANCE(438); - if (lookahead == 'R') ADVANCE(550); + if (lookahead == '"') ADVANCE(467); + if (lookahead == 'R') ADVANCE(598); + if (lookahead == '\\') ADVANCE(241); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + if (sym_identifier_character_set_16(lookahead)) ADVANCE(571); END_STATE(); - case 549: + case 597: ACCEPT_TOKEN(sym_literal_suffix); - if (lookahead == '"') ADVANCE(534); + if (lookahead == '"') ADVANCE(582); + if (lookahead == '\\') ADVANCE(241); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + if (sym_identifier_character_set_16(lookahead)) ADVANCE(571); END_STATE(); - case 550: + case 598: ACCEPT_TOKEN(sym_literal_suffix); - if (lookahead == '"') ADVANCE(536); + if (lookahead == '"') ADVANCE(584); + if (lookahead == '\\') ADVANCE(241); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + if (sym_identifier_character_set_16(lookahead)) ADVANCE(571); END_STATE(); - case 551: + case 599: ACCEPT_TOKEN(sym_literal_suffix); + if (lookahead == '\\') ADVANCE(241); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(551); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(599); + if (sym_identifier_character_set_16(lookahead)) ADVANCE(571); END_STATE(); default: return false; @@ -15892,1457 +32265,1572 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { END_STATE(); case 3: if (lookahead == 'A') ADVANCE(26); - if (lookahead == '_') ADVANCE(27); - if (lookahead == 'u') ADVANCE(28); + if (lookahead == 'G') ADVANCE(27); + if (lookahead == 'N') ADVANCE(28); + if (lookahead == '_') ADVANCE(29); + if (lookahead == 'u') ADVANCE(30); END_STATE(); case 4: - if (lookahead == 'n') ADVANCE(29); - if (lookahead == 'u') ADVANCE(30); + if (lookahead == 'n') ADVANCE(31); + if (lookahead == 's') ADVANCE(32); + if (lookahead == 'u') ADVANCE(33); END_STATE(); case 5: - if (lookahead == 'i') ADVANCE(31); - if (lookahead == 'r') ADVANCE(32); + if (lookahead == 'i') ADVANCE(34); + if (lookahead == 'r') ADVANCE(35); END_STATE(); case 6: - if (lookahead == 'a') ADVANCE(33); - if (lookahead == 'l') ADVANCE(34); - if (lookahead == 'o') ADVANCE(35); + if (lookahead == 'a') ADVANCE(36); + if (lookahead == 'l') ADVANCE(37); + if (lookahead == 'o') ADVANCE(38); END_STATE(); case 7: - if (lookahead == 'e') ADVANCE(36); - if (lookahead == 'o') ADVANCE(37); + if (lookahead == 'e') ADVANCE(39); + if (lookahead == 'o') ADVANCE(40); END_STATE(); case 8: - if (lookahead == 'l') ADVANCE(38); - if (lookahead == 'n') ADVANCE(39); - if (lookahead == 'x') ADVANCE(40); + if (lookahead == 'l') ADVANCE(41); + if (lookahead == 'n') ADVANCE(42); + if (lookahead == 'x') ADVANCE(43); END_STATE(); case 9: - if (lookahead == 'i') ADVANCE(41); - if (lookahead == 'o') ADVANCE(42); - if (lookahead == 'r') ADVANCE(43); + if (lookahead == 'i') ADVANCE(44); + if (lookahead == 'o') ADVANCE(45); + if (lookahead == 'r') ADVANCE(46); END_STATE(); case 10: - if (lookahead == 'o') ADVANCE(44); + if (lookahead == 'o') ADVANCE(47); END_STATE(); case 11: - if (lookahead == 'f') ADVANCE(45); - if (lookahead == 'n') ADVANCE(46); + if (lookahead == 'f') ADVANCE(48); + if (lookahead == 'n') ADVANCE(49); END_STATE(); case 12: - if (lookahead == 'o') ADVANCE(47); + if (lookahead == 'o') ADVANCE(50); END_STATE(); case 13: - if (lookahead == 'u') ADVANCE(48); + if (lookahead == 'u') ADVANCE(51); END_STATE(); case 14: - if (lookahead == 'a') ADVANCE(49); - if (lookahead == 'e') ADVANCE(50); - if (lookahead == 'o') ADVANCE(51); - if (lookahead == 'u') ADVANCE(52); + if (lookahead == 'a') ADVANCE(52); + if (lookahead == 'e') ADVANCE(53); + if (lookahead == 'o') ADVANCE(54); + if (lookahead == 'u') ADVANCE(55); END_STATE(); case 15: - if (lookahead == 'p') ADVANCE(53); - if (lookahead == 'r') ADVANCE(54); - if (lookahead == 'v') ADVANCE(55); + if (lookahead == 'f') ADVANCE(56); + if (lookahead == 'p') ADVANCE(57); + if (lookahead == 'r') ADVANCE(58); + if (lookahead == 'v') ADVANCE(59); END_STATE(); case 16: - if (lookahead == 'r') ADVANCE(56); - if (lookahead == 'u') ADVANCE(57); + if (lookahead == 'r') ADVANCE(60); + if (lookahead == 'u') ADVANCE(61); END_STATE(); case 17: - if (lookahead == 'e') ADVANCE(58); + if (lookahead == 'e') ADVANCE(62); END_STATE(); case 18: - if (lookahead == 'h') ADVANCE(59); - if (lookahead == 'i') ADVANCE(60); - if (lookahead == 't') ADVANCE(61); - if (lookahead == 'w') ADVANCE(62); + if (lookahead == 'h') ADVANCE(63); + if (lookahead == 'i') ADVANCE(64); + if (lookahead == 't') ADVANCE(65); + if (lookahead == 'w') ADVANCE(66); END_STATE(); case 19: - if (lookahead == 'e') ADVANCE(63); - if (lookahead == 'h') ADVANCE(64); - if (lookahead == 'r') ADVANCE(65); - if (lookahead == 'y') ADVANCE(66); + if (lookahead == 'e') ADVANCE(67); + if (lookahead == 'h') ADVANCE(68); + if (lookahead == 'r') ADVANCE(69); + if (lookahead == 'y') ADVANCE(70); END_STATE(); case 20: - if (lookahead == 'n') ADVANCE(67); - if (lookahead == 's') ADVANCE(68); + if (lookahead == 'n') ADVANCE(71); + if (lookahead == 's') ADVANCE(72); END_STATE(); case 21: - if (lookahead == 'i') ADVANCE(69); - if (lookahead == 'o') ADVANCE(70); + if (lookahead == 'i') ADVANCE(73); + if (lookahead == 'o') ADVANCE(74); END_STATE(); case 22: - if (lookahead == 'h') ADVANCE(71); + if (lookahead == 'h') ADVANCE(75); END_STATE(); case 23: - if (lookahead == 'o') ADVANCE(72); + if (lookahead == 'o') ADVANCE(76); END_STATE(); case 24: - if (lookahead == 'L') ADVANCE(73); + if (lookahead == 'L') ADVANCE(77); END_STATE(); case 25: if (lookahead == '\n') SKIP(0) END_STATE(); case 26: - if (lookahead == 't') ADVANCE(74); + if (lookahead == 't') ADVANCE(78); END_STATE(); case 27: - if (lookahead == 'a') ADVANCE(75); - if (lookahead == 'b') ADVANCE(76); - if (lookahead == 'c') ADVANCE(77); - if (lookahead == 'd') ADVANCE(78); - if (lookahead == 'f') ADVANCE(79); - if (lookahead == 'r') ADVANCE(80); - if (lookahead == 's') ADVANCE(81); - if (lookahead == 't') ADVANCE(82); - if (lookahead == 'u') ADVANCE(83); - if (lookahead == 'v') ADVANCE(84); + if (lookahead == 'e') ADVANCE(79); END_STATE(); case 28: - if (lookahead == 'n') ADVANCE(85); + if (lookahead == 'o') ADVANCE(80); END_STATE(); case 29: - if (lookahead == 'd') ADVANCE(86); + if (lookahead == 'a') ADVANCE(81); + if (lookahead == 'b') ADVANCE(82); + if (lookahead == 'c') ADVANCE(83); + if (lookahead == 'd') ADVANCE(84); + if (lookahead == 'f') ADVANCE(85); + if (lookahead == 'r') ADVANCE(86); + if (lookahead == 's') ADVANCE(87); + if (lookahead == 't') ADVANCE(88); + if (lookahead == 'u') ADVANCE(89); + if (lookahead == 'v') ADVANCE(90); END_STATE(); case 30: - if (lookahead == 't') ADVANCE(87); + if (lookahead == 'n') ADVANCE(91); END_STATE(); case 31: - if (lookahead == 't') ADVANCE(88); + if (lookahead == 'd') ADVANCE(92); END_STATE(); case 32: - if (lookahead == 'e') ADVANCE(89); + if (lookahead == 'm') ADVANCE(93); END_STATE(); case 33: - if (lookahead == 's') ADVANCE(90); - if (lookahead == 't') ADVANCE(91); + if (lookahead == 't') ADVANCE(94); END_STATE(); case 34: - if (lookahead == 'a') ADVANCE(92); + if (lookahead == 't') ADVANCE(95); END_STATE(); case 35: - if (lookahead == '_') ADVANCE(93); - if (lookahead == 'm') ADVANCE(94); - if (lookahead == 'n') ADVANCE(95); + if (lookahead == 'e') ADVANCE(96); END_STATE(); case 36: - if (lookahead == 'c') ADVANCE(96); - if (lookahead == 'f') ADVANCE(97); - if (lookahead == 'l') ADVANCE(98); + if (lookahead == 's') ADVANCE(97); + if (lookahead == 't') ADVANCE(98); END_STATE(); case 37: - ACCEPT_TOKEN(anon_sym_do); + if (lookahead == 'a') ADVANCE(99); END_STATE(); case 38: - if (lookahead == 's') ADVANCE(99); + if (lookahead == '_') ADVANCE(100); + if (lookahead == 'm') ADVANCE(101); + if (lookahead == 'n') ADVANCE(102); END_STATE(); case 39: - if (lookahead == 'u') ADVANCE(100); + if (lookahead == 'c') ADVANCE(103); + if (lookahead == 'f') ADVANCE(104); + if (lookahead == 'l') ADVANCE(105); END_STATE(); case 40: - if (lookahead == 'p') ADVANCE(101); - if (lookahead == 't') ADVANCE(102); + ACCEPT_TOKEN(anon_sym_do); END_STATE(); case 41: - if (lookahead == 'n') ADVANCE(103); + if (lookahead == 's') ADVANCE(106); END_STATE(); case 42: - if (lookahead == 'r') ADVANCE(104); + if (lookahead == 'u') ADVANCE(107); END_STATE(); case 43: - if (lookahead == 'i') ADVANCE(105); + if (lookahead == 'p') ADVANCE(108); + if (lookahead == 't') ADVANCE(109); END_STATE(); case 44: - if (lookahead == 't') ADVANCE(106); + if (lookahead == 'n') ADVANCE(110); END_STATE(); case 45: - ACCEPT_TOKEN(anon_sym_if); + if (lookahead == 'r') ADVANCE(111); END_STATE(); case 46: - if (lookahead == 'l') ADVANCE(107); + if (lookahead == 'i') ADVANCE(112); END_STATE(); case 47: - if (lookahead == 'n') ADVANCE(108); + if (lookahead == 't') ADVANCE(113); END_STATE(); case 48: - if (lookahead == 't') ADVANCE(109); + ACCEPT_TOKEN(anon_sym_if); END_STATE(); case 49: - if (lookahead == 'm') ADVANCE(110); + if (lookahead == 'l') ADVANCE(114); END_STATE(); case 50: - if (lookahead == 'w') ADVANCE(111); + if (lookahead == 'n') ADVANCE(115); END_STATE(); case 51: - if (lookahead == 'e') ADVANCE(112); - if (lookahead == 't') ADVANCE(113); + if (lookahead == 't') ADVANCE(116); END_STATE(); case 52: - if (lookahead == 'l') ADVANCE(114); + if (lookahead == 'm') ADVANCE(117); END_STATE(); case 53: - if (lookahead == 'e') ADVANCE(115); + if (lookahead == 'w') ADVANCE(118); END_STATE(); case 54: - ACCEPT_TOKEN(anon_sym_or); - if (lookahead == '_') ADVANCE(116); + if (lookahead == 'e') ADVANCE(119); + if (lookahead == 'r') ADVANCE(120); + if (lookahead == 't') ADVANCE(121); END_STATE(); case 55: - if (lookahead == 'e') ADVANCE(117); + if (lookahead == 'l') ADVANCE(122); END_STATE(); case 56: - if (lookahead == 'i') ADVANCE(118); - if (lookahead == 'o') ADVANCE(119); + if (lookahead == 'f') ADVANCE(123); END_STATE(); case 57: - if (lookahead == 'b') ADVANCE(120); + if (lookahead == 'e') ADVANCE(124); END_STATE(); case 58: - if (lookahead == 'g') ADVANCE(121); - if (lookahead == 'q') ADVANCE(122); - if (lookahead == 's') ADVANCE(123); - if (lookahead == 't') ADVANCE(124); + ACCEPT_TOKEN(anon_sym_or); + if (lookahead == '_') ADVANCE(125); END_STATE(); case 59: - if (lookahead == 'o') ADVANCE(125); + if (lookahead == 'e') ADVANCE(126); END_STATE(); case 60: - if (lookahead == 'g') ADVANCE(126); - if (lookahead == 'z') ADVANCE(127); + if (lookahead == 'i') ADVANCE(127); + if (lookahead == 'o') ADVANCE(128); END_STATE(); case 61: - if (lookahead == 'a') ADVANCE(128); - if (lookahead == 'r') ADVANCE(129); + if (lookahead == 'b') ADVANCE(129); END_STATE(); case 62: - if (lookahead == 'i') ADVANCE(130); + if (lookahead == 'g') ADVANCE(130); + if (lookahead == 'q') ADVANCE(131); + if (lookahead == 's') ADVANCE(132); + if (lookahead == 't') ADVANCE(133); END_STATE(); case 63: - if (lookahead == 'm') ADVANCE(131); + if (lookahead == 'o') ADVANCE(134); END_STATE(); case 64: - if (lookahead == 'i') ADVANCE(132); - if (lookahead == 'r') ADVANCE(133); + if (lookahead == 'g') ADVANCE(135); + if (lookahead == 'z') ADVANCE(136); END_STATE(); case 65: - if (lookahead == 'y') ADVANCE(134); + if (lookahead == 'a') ADVANCE(137); + if (lookahead == 'r') ADVANCE(138); END_STATE(); case 66: - if (lookahead == 'p') ADVANCE(135); + if (lookahead == 'i') ADVANCE(139); END_STATE(); case 67: - if (lookahead == 'i') ADVANCE(136); - if (lookahead == 's') ADVANCE(137); + if (lookahead == 'm') ADVANCE(140); END_STATE(); case 68: - if (lookahead == 'i') ADVANCE(138); + if (lookahead == 'i') ADVANCE(141); + if (lookahead == 'r') ADVANCE(142); END_STATE(); case 69: - if (lookahead == 'r') ADVANCE(139); + if (lookahead == 'y') ADVANCE(143); END_STATE(); case 70: - if (lookahead == 'l') ADVANCE(140); + if (lookahead == 'p') ADVANCE(144); END_STATE(); case 71: - if (lookahead == 'i') ADVANCE(141); + if (lookahead == 'i') ADVANCE(145); + if (lookahead == 's') ADVANCE(146); END_STATE(); case 72: - if (lookahead == 'r') ADVANCE(142); + if (lookahead == 'i') ADVANCE(147); END_STATE(); case 73: - if (lookahead == 'L') ADVANCE(143); + if (lookahead == 'r') ADVANCE(148); END_STATE(); case 74: - if (lookahead == 'o') ADVANCE(144); + if (lookahead == 'l') ADVANCE(149); END_STATE(); case 75: - if (lookahead == 't') ADVANCE(145); + if (lookahead == 'i') ADVANCE(150); END_STATE(); case 76: - if (lookahead == 'a') ADVANCE(146); + if (lookahead == 'r') ADVANCE(151); END_STATE(); case 77: - if (lookahead == 'd') ADVANCE(147); - if (lookahead == 'l') ADVANCE(148); + if (lookahead == 'L') ADVANCE(152); END_STATE(); case 78: - if (lookahead == 'e') ADVANCE(149); + if (lookahead == 'o') ADVANCE(153); END_STATE(); case 79: - if (lookahead == 'a') ADVANCE(150); + if (lookahead == 'n') ADVANCE(154); END_STATE(); case 80: - if (lookahead == 'e') ADVANCE(151); + if (lookahead == 'r') ADVANCE(155); END_STATE(); case 81: - if (lookahead == 'p') ADVANCE(152); - if (lookahead == 't') ADVANCE(153); + if (lookahead == 's') ADVANCE(156); + if (lookahead == 't') ADVANCE(157); END_STATE(); case 82: - if (lookahead == 'h') ADVANCE(154); + if (lookahead == 'a') ADVANCE(158); END_STATE(); case 83: - if (lookahead == 'n') ADVANCE(155); - if (lookahead == 'p') ADVANCE(156); + if (lookahead == 'd') ADVANCE(159); + if (lookahead == 'l') ADVANCE(160); END_STATE(); case 84: - if (lookahead == 'e') ADVANCE(157); + if (lookahead == 'e') ADVANCE(161); END_STATE(); case 85: - if (lookahead == 'a') ADVANCE(158); + if (lookahead == 'a') ADVANCE(162); END_STATE(); case 86: - ACCEPT_TOKEN(anon_sym_and); - if (lookahead == '_') ADVANCE(159); + if (lookahead == 'e') ADVANCE(163); END_STATE(); case 87: - if (lookahead == 'o') ADVANCE(160); + if (lookahead == 'p') ADVANCE(164); + if (lookahead == 't') ADVANCE(165); END_STATE(); case 88: - if (lookahead == 'a') ADVANCE(161); - if (lookahead == 'o') ADVANCE(162); + if (lookahead == 'h') ADVANCE(166); END_STATE(); case 89: - if (lookahead == 'a') ADVANCE(163); + if (lookahead == 'n') ADVANCE(167); + if (lookahead == 'p') ADVANCE(168); END_STATE(); case 90: - if (lookahead == 'e') ADVANCE(164); + if (lookahead == 'e') ADVANCE(169); END_STATE(); case 91: - if (lookahead == 'c') ADVANCE(165); + if (lookahead == 'a') ADVANCE(170); END_STATE(); case 92: - if (lookahead == 's') ADVANCE(166); + ACCEPT_TOKEN(anon_sym_and); + if (lookahead == '_') ADVANCE(171); END_STATE(); case 93: - if (lookahead == 'a') ADVANCE(167); - if (lookahead == 'r') ADVANCE(168); - if (lookahead == 'y') ADVANCE(169); + ACCEPT_TOKEN(anon_sym_asm); END_STATE(); case 94: - if (lookahead == 'p') ADVANCE(170); + if (lookahead == 'o') ADVANCE(172); END_STATE(); case 95: - if (lookahead == 'c') ADVANCE(171); - if (lookahead == 's') ADVANCE(172); - if (lookahead == 't') ADVANCE(173); + if (lookahead == 'a') ADVANCE(173); + if (lookahead == 'o') ADVANCE(174); END_STATE(); case 96: - if (lookahead == 'l') ADVANCE(174); + if (lookahead == 'a') ADVANCE(175); END_STATE(); case 97: - if (lookahead == 'a') ADVANCE(175); - if (lookahead == 'i') ADVANCE(176); + if (lookahead == 'e') ADVANCE(176); END_STATE(); case 98: - if (lookahead == 'e') ADVANCE(177); + if (lookahead == 'c') ADVANCE(177); END_STATE(); case 99: - if (lookahead == 'e') ADVANCE(178); + if (lookahead == 's') ADVANCE(178); END_STATE(); case 100: - if (lookahead == 'm') ADVANCE(179); + if (lookahead == 'a') ADVANCE(179); + if (lookahead == 'r') ADVANCE(180); + if (lookahead == 'y') ADVANCE(181); END_STATE(); case 101: - if (lookahead == 'l') ADVANCE(180); + if (lookahead == 'p') ADVANCE(182); END_STATE(); case 102: - if (lookahead == 'e') ADVANCE(181); + if (lookahead == 'c') ADVANCE(183); + if (lookahead == 's') ADVANCE(184); + if (lookahead == 't') ADVANCE(185); END_STATE(); case 103: - if (lookahead == 'a') ADVANCE(182); + if (lookahead == 'l') ADVANCE(186); END_STATE(); case 104: - ACCEPT_TOKEN(anon_sym_for); + if (lookahead == 'a') ADVANCE(187); + if (lookahead == 'i') ADVANCE(188); END_STATE(); case 105: - if (lookahead == 'e') ADVANCE(183); + if (lookahead == 'e') ADVANCE(189); END_STATE(); case 106: - if (lookahead == 'o') ADVANCE(184); + if (lookahead == 'e') ADVANCE(190); END_STATE(); case 107: - if (lookahead == 'i') ADVANCE(185); + if (lookahead == 'm') ADVANCE(191); END_STATE(); case 108: - if (lookahead == 'g') ADVANCE(186); + if (lookahead == 'l') ADVANCE(192); END_STATE(); case 109: - if (lookahead == 'a') ADVANCE(187); + if (lookahead == 'e') ADVANCE(193); END_STATE(); case 110: - if (lookahead == 'e') ADVANCE(188); + if (lookahead == 'a') ADVANCE(194); END_STATE(); case 111: - ACCEPT_TOKEN(anon_sym_new); + ACCEPT_TOKEN(anon_sym_for); END_STATE(); case 112: - if (lookahead == 'x') ADVANCE(189); + if (lookahead == 'e') ADVANCE(195); END_STATE(); case 113: - ACCEPT_TOKEN(anon_sym_not); - if (lookahead == '_') ADVANCE(190); + if (lookahead == 'o') ADVANCE(196); END_STATE(); case 114: - if (lookahead == 'l') ADVANCE(191); + if (lookahead == 'i') ADVANCE(197); END_STATE(); case 115: - if (lookahead == 'r') ADVANCE(192); + if (lookahead == 'g') ADVANCE(198); END_STATE(); case 116: - if (lookahead == 'e') ADVANCE(193); + if (lookahead == 'a') ADVANCE(199); END_STATE(); case 117: - if (lookahead == 'r') ADVANCE(194); + if (lookahead == 'e') ADVANCE(200); END_STATE(); case 118: - if (lookahead == 'v') ADVANCE(195); + ACCEPT_TOKEN(anon_sym_new); END_STATE(); case 119: - if (lookahead == 't') ADVANCE(196); + if (lookahead == 'x') ADVANCE(201); END_STATE(); case 120: - if (lookahead == 'l') ADVANCE(197); + if (lookahead == 'e') ADVANCE(202); END_STATE(); case 121: - if (lookahead == 'i') ADVANCE(198); + ACCEPT_TOKEN(anon_sym_not); + if (lookahead == '_') ADVANCE(203); END_STATE(); case 122: - if (lookahead == 'u') ADVANCE(199); + if (lookahead == 'l') ADVANCE(204); END_STATE(); case 123: - if (lookahead == 't') ADVANCE(200); + if (lookahead == 's') ADVANCE(205); END_STATE(); case 124: - if (lookahead == 'u') ADVANCE(201); + if (lookahead == 'r') ADVANCE(206); END_STATE(); case 125: - if (lookahead == 'r') ADVANCE(202); + if (lookahead == 'e') ADVANCE(207); END_STATE(); case 126: - if (lookahead == 'n') ADVANCE(203); + if (lookahead == 'r') ADVANCE(208); END_STATE(); case 127: - if (lookahead == 'e') ADVANCE(204); + if (lookahead == 'v') ADVANCE(209); END_STATE(); case 128: - if (lookahead == 't') ADVANCE(205); + if (lookahead == 't') ADVANCE(210); END_STATE(); case 129: - if (lookahead == 'u') ADVANCE(206); + if (lookahead == 'l') ADVANCE(211); END_STATE(); case 130: - if (lookahead == 't') ADVANCE(207); + if (lookahead == 'i') ADVANCE(212); END_STATE(); case 131: - if (lookahead == 'p') ADVANCE(208); + if (lookahead == 'u') ADVANCE(213); END_STATE(); case 132: - if (lookahead == 's') ADVANCE(209); + if (lookahead == 't') ADVANCE(214); END_STATE(); case 133: - if (lookahead == 'e') ADVANCE(210); - if (lookahead == 'o') ADVANCE(211); + if (lookahead == 'u') ADVANCE(215); END_STATE(); case 134: - ACCEPT_TOKEN(anon_sym_try); + if (lookahead == 'r') ADVANCE(216); END_STATE(); case 135: - if (lookahead == 'e') ADVANCE(212); + if (lookahead == 'n') ADVANCE(217); END_STATE(); case 136: - if (lookahead == 'o') ADVANCE(213); + if (lookahead == 'e') ADVANCE(218); END_STATE(); case 137: - if (lookahead == 'i') ADVANCE(214); + if (lookahead == 't') ADVANCE(219); END_STATE(); case 138: - if (lookahead == 'n') ADVANCE(215); + if (lookahead == 'u') ADVANCE(220); END_STATE(); case 139: - if (lookahead == 't') ADVANCE(216); + if (lookahead == 't') ADVANCE(221); END_STATE(); case 140: - if (lookahead == 'a') ADVANCE(217); + if (lookahead == 'p') ADVANCE(222); END_STATE(); case 141: - if (lookahead == 'l') ADVANCE(218); + if (lookahead == 's') ADVANCE(223); END_STATE(); case 142: - ACCEPT_TOKEN(anon_sym_xor); - if (lookahead == '_') ADVANCE(219); + if (lookahead == 'e') ADVANCE(224); + if (lookahead == 'o') ADVANCE(225); END_STATE(); case 143: - ACCEPT_TOKEN(sym_null); + ACCEPT_TOKEN(anon_sym_try); END_STATE(); case 144: - if (lookahead == 'm') ADVANCE(220); + if (lookahead == 'e') ADVANCE(226); END_STATE(); case 145: - if (lookahead == 't') ADVANCE(221); + if (lookahead == 'o') ADVANCE(227); END_STATE(); case 146: - if (lookahead == 's') ADVANCE(222); + if (lookahead == 'i') ADVANCE(228); END_STATE(); case 147: - if (lookahead == 'e') ADVANCE(223); + if (lookahead == 'n') ADVANCE(229); END_STATE(); case 148: - if (lookahead == 'r') ADVANCE(224); + if (lookahead == 't') ADVANCE(230); END_STATE(); case 149: - if (lookahead == 'c') ADVANCE(225); + if (lookahead == 'a') ADVANCE(231); END_STATE(); case 150: - if (lookahead == 's') ADVANCE(226); + if (lookahead == 'l') ADVANCE(232); END_STATE(); case 151: - if (lookahead == 's') ADVANCE(227); + ACCEPT_TOKEN(anon_sym_xor); + if (lookahead == '_') ADVANCE(233); END_STATE(); case 152: - if (lookahead == 't') ADVANCE(228); + ACCEPT_TOKEN(anon_sym_NULL); END_STATE(); case 153: - if (lookahead == 'd') ADVANCE(229); + if (lookahead == 'm') ADVANCE(234); END_STATE(); case 154: - if (lookahead == 'i') ADVANCE(230); + if (lookahead == 'e') ADVANCE(235); END_STATE(); case 155: - if (lookahead == 'a') ADVANCE(231); + if (lookahead == 'e') ADVANCE(236); END_STATE(); case 156: - if (lookahead == 't') ADVANCE(232); + if (lookahead == 'm') ADVANCE(237); END_STATE(); case 157: - if (lookahead == 'c') ADVANCE(233); + if (lookahead == 't') ADVANCE(238); END_STATE(); case 158: - if (lookahead == 'l') ADVANCE(234); + if (lookahead == 's') ADVANCE(239); END_STATE(); case 159: - if (lookahead == 'e') ADVANCE(235); + if (lookahead == 'e') ADVANCE(240); END_STATE(); case 160: - ACCEPT_TOKEN(sym_auto); + if (lookahead == 'r') ADVANCE(241); END_STATE(); case 161: - if (lookahead == 'n') ADVANCE(236); + if (lookahead == 'c') ADVANCE(242); END_STATE(); case 162: - if (lookahead == 'r') ADVANCE(237); + if (lookahead == 's') ADVANCE(243); END_STATE(); case 163: - if (lookahead == 'k') ADVANCE(238); + if (lookahead == 's') ADVANCE(244); END_STATE(); case 164: - ACCEPT_TOKEN(anon_sym_case); + if (lookahead == 't') ADVANCE(245); END_STATE(); case 165: - if (lookahead == 'h') ADVANCE(239); + if (lookahead == 'd') ADVANCE(246); END_STATE(); case 166: - if (lookahead == 's') ADVANCE(240); + if (lookahead == 'i') ADVANCE(247); END_STATE(); case 167: - if (lookahead == 'w') ADVANCE(241); + if (lookahead == 'a') ADVANCE(248); END_STATE(); case 168: - if (lookahead == 'e') ADVANCE(242); + if (lookahead == 't') ADVANCE(249); END_STATE(); case 169: - if (lookahead == 'i') ADVANCE(243); + if (lookahead == 'c') ADVANCE(250); END_STATE(); case 170: - if (lookahead == 'l') ADVANCE(244); + if (lookahead == 'l') ADVANCE(251); END_STATE(); case 171: - if (lookahead == 'e') ADVANCE(245); + if (lookahead == 'e') ADVANCE(252); END_STATE(); case 172: - if (lookahead == 't') ADVANCE(246); + ACCEPT_TOKEN(sym_auto); END_STATE(); case 173: - if (lookahead == 'i') ADVANCE(247); + if (lookahead == 'n') ADVANCE(253); END_STATE(); case 174: - if (lookahead == 't') ADVANCE(248); + if (lookahead == 'r') ADVANCE(254); END_STATE(); case 175: - if (lookahead == 'u') ADVANCE(249); + if (lookahead == 'k') ADVANCE(255); END_STATE(); case 176: - if (lookahead == 'n') ADVANCE(250); + ACCEPT_TOKEN(anon_sym_case); END_STATE(); case 177: - if (lookahead == 't') ADVANCE(251); + if (lookahead == 'h') ADVANCE(256); END_STATE(); case 178: - ACCEPT_TOKEN(anon_sym_else); + if (lookahead == 's') ADVANCE(257); END_STATE(); case 179: - ACCEPT_TOKEN(anon_sym_enum); + if (lookahead == 'w') ADVANCE(258); END_STATE(); case 180: - if (lookahead == 'i') ADVANCE(252); + if (lookahead == 'e') ADVANCE(259); END_STATE(); case 181: - if (lookahead == 'r') ADVANCE(253); + if (lookahead == 'i') ADVANCE(260); END_STATE(); case 182: - if (lookahead == 'l') ADVANCE(254); + if (lookahead == 'l') ADVANCE(261); END_STATE(); case 183: - if (lookahead == 'n') ADVANCE(255); + if (lookahead == 'e') ADVANCE(262); END_STATE(); case 184: - ACCEPT_TOKEN(anon_sym_goto); + if (lookahead == 't') ADVANCE(263); END_STATE(); case 185: - if (lookahead == 'n') ADVANCE(256); + if (lookahead == 'i') ADVANCE(264); END_STATE(); case 186: - ACCEPT_TOKEN(anon_sym_long); + if (lookahead == 't') ADVANCE(265); END_STATE(); case 187: - if (lookahead == 'b') ADVANCE(257); + if (lookahead == 'u') ADVANCE(266); END_STATE(); case 188: - if (lookahead == 's') ADVANCE(258); + if (lookahead == 'n') ADVANCE(267); END_STATE(); case 189: - if (lookahead == 'c') ADVANCE(259); + if (lookahead == 't') ADVANCE(268); END_STATE(); case 190: - if (lookahead == 'e') ADVANCE(260); + ACCEPT_TOKEN(anon_sym_else); END_STATE(); case 191: - if (lookahead == 'p') ADVANCE(261); + ACCEPT_TOKEN(anon_sym_enum); END_STATE(); case 192: - if (lookahead == 'a') ADVANCE(262); + if (lookahead == 'i') ADVANCE(269); END_STATE(); case 193: - if (lookahead == 'q') ADVANCE(263); + if (lookahead == 'r') ADVANCE(270); END_STATE(); case 194: - if (lookahead == 'r') ADVANCE(264); + if (lookahead == 'l') ADVANCE(271); END_STATE(); case 195: - if (lookahead == 'a') ADVANCE(265); + if (lookahead == 'n') ADVANCE(272); END_STATE(); case 196: - if (lookahead == 'e') ADVANCE(266); + ACCEPT_TOKEN(anon_sym_goto); END_STATE(); case 197: - if (lookahead == 'i') ADVANCE(267); + if (lookahead == 'n') ADVANCE(273); END_STATE(); case 198: - if (lookahead == 's') ADVANCE(268); + ACCEPT_TOKEN(anon_sym_long); END_STATE(); case 199: - if (lookahead == 'i') ADVANCE(269); + if (lookahead == 'b') ADVANCE(274); END_STATE(); case 200: - if (lookahead == 'r') ADVANCE(270); + if (lookahead == 's') ADVANCE(275); END_STATE(); case 201: - if (lookahead == 'r') ADVANCE(271); + if (lookahead == 'c') ADVANCE(276); END_STATE(); case 202: - if (lookahead == 't') ADVANCE(272); + if (lookahead == 't') ADVANCE(277); END_STATE(); case 203: - if (lookahead == 'e') ADVANCE(273); + if (lookahead == 'e') ADVANCE(278); END_STATE(); case 204: - if (lookahead == 'o') ADVANCE(274); + if (lookahead == 'p') ADVANCE(279); END_STATE(); case 205: - if (lookahead == 'i') ADVANCE(275); + if (lookahead == 'e') ADVANCE(280); END_STATE(); case 206: - if (lookahead == 'c') ADVANCE(276); + if (lookahead == 'a') ADVANCE(281); END_STATE(); case 207: - if (lookahead == 'c') ADVANCE(277); + if (lookahead == 'q') ADVANCE(282); END_STATE(); case 208: - if (lookahead == 'l') ADVANCE(278); + if (lookahead == 'r') ADVANCE(283); END_STATE(); case 209: - ACCEPT_TOKEN(sym_this); + if (lookahead == 'a') ADVANCE(284); END_STATE(); case 210: - if (lookahead == 'a') ADVANCE(279); + if (lookahead == 'e') ADVANCE(285); END_STATE(); case 211: - if (lookahead == 'w') ADVANCE(280); + if (lookahead == 'i') ADVANCE(286); END_STATE(); case 212: - if (lookahead == 'd') ADVANCE(281); - if (lookahead == 'n') ADVANCE(282); + if (lookahead == 's') ADVANCE(287); END_STATE(); case 213: - if (lookahead == 'n') ADVANCE(283); + if (lookahead == 'i') ADVANCE(288); END_STATE(); case 214: - if (lookahead == 'g') ADVANCE(284); + if (lookahead == 'r') ADVANCE(289); END_STATE(); case 215: - if (lookahead == 'g') ADVANCE(285); + if (lookahead == 'r') ADVANCE(290); END_STATE(); case 216: - if (lookahead == 'u') ADVANCE(286); + if (lookahead == 't') ADVANCE(291); END_STATE(); case 217: - if (lookahead == 't') ADVANCE(287); + if (lookahead == 'e') ADVANCE(292); END_STATE(); case 218: - if (lookahead == 'e') ADVANCE(288); + if (lookahead == 'o') ADVANCE(293); END_STATE(); case 219: - if (lookahead == 'e') ADVANCE(289); + if (lookahead == 'i') ADVANCE(294); END_STATE(); case 220: - if (lookahead == 'i') ADVANCE(290); + if (lookahead == 'c') ADVANCE(295); END_STATE(); case 221: - if (lookahead == 'r') ADVANCE(291); + if (lookahead == 'c') ADVANCE(296); END_STATE(); case 222: - if (lookahead == 'e') ADVANCE(292); + if (lookahead == 'l') ADVANCE(297); END_STATE(); case 223: - if (lookahead == 'c') ADVANCE(293); + ACCEPT_TOKEN(sym_this); END_STATE(); case 224: - if (lookahead == 'c') ADVANCE(294); + if (lookahead == 'a') ADVANCE(298); END_STATE(); case 225: - if (lookahead == 'l') ADVANCE(295); + if (lookahead == 'w') ADVANCE(299); END_STATE(); case 226: - if (lookahead == 't') ADVANCE(296); + if (lookahead == 'd') ADVANCE(300); + if (lookahead == 'n') ADVANCE(301); END_STATE(); case 227: - if (lookahead == 't') ADVANCE(297); + if (lookahead == 'n') ADVANCE(302); END_STATE(); case 228: - if (lookahead == 'r') ADVANCE(298); + if (lookahead == 'g') ADVANCE(303); END_STATE(); case 229: - if (lookahead == 'c') ADVANCE(299); + if (lookahead == 'g') ADVANCE(304); END_STATE(); case 230: - if (lookahead == 's') ADVANCE(300); + if (lookahead == 'u') ADVANCE(305); END_STATE(); case 231: - if (lookahead == 'l') ADVANCE(301); + if (lookahead == 't') ADVANCE(306); END_STATE(); case 232: - if (lookahead == 'r') ADVANCE(302); + if (lookahead == 'e') ADVANCE(307); END_STATE(); case 233: - if (lookahead == 't') ADVANCE(303); + if (lookahead == 'e') ADVANCE(308); END_STATE(); case 234: - if (lookahead == 'i') ADVANCE(304); + if (lookahead == 'i') ADVANCE(309); END_STATE(); case 235: - if (lookahead == 'q') ADVANCE(305); + if (lookahead == 'r') ADVANCE(310); END_STATE(); case 236: - if (lookahead == 'd') ADVANCE(306); + if (lookahead == 't') ADVANCE(311); END_STATE(); case 237: - ACCEPT_TOKEN(anon_sym_bitor); + if (lookahead == '_') ADVANCE(312); END_STATE(); case 238: - ACCEPT_TOKEN(anon_sym_break); + if (lookahead == 'r') ADVANCE(313); END_STATE(); case 239: - ACCEPT_TOKEN(anon_sym_catch); + if (lookahead == 'e') ADVANCE(314); END_STATE(); case 240: - ACCEPT_TOKEN(anon_sym_class); + if (lookahead == 'c') ADVANCE(315); END_STATE(); case 241: - if (lookahead == 'a') ADVANCE(307); + if (lookahead == 'c') ADVANCE(316); END_STATE(); case 242: - if (lookahead == 't') ADVANCE(308); + if (lookahead == 'l') ADVANCE(317); END_STATE(); case 243: - if (lookahead == 'e') ADVANCE(309); + if (lookahead == 't') ADVANCE(318); END_STATE(); case 244: - ACCEPT_TOKEN(anon_sym_compl); + if (lookahead == 't') ADVANCE(319); END_STATE(); case 245: - if (lookahead == 'p') ADVANCE(310); + if (lookahead == 'r') ADVANCE(320); END_STATE(); case 246: - ACCEPT_TOKEN(anon_sym_const); - if (lookahead == 'e') ADVANCE(311); - if (lookahead == 'i') ADVANCE(312); + if (lookahead == 'c') ADVANCE(321); END_STATE(); case 247: - if (lookahead == 'n') ADVANCE(313); + if (lookahead == 's') ADVANCE(322); END_STATE(); case 248: - if (lookahead == 'y') ADVANCE(314); + if (lookahead == 'l') ADVANCE(323); END_STATE(); case 249: - if (lookahead == 'l') ADVANCE(315); + if (lookahead == 'r') ADVANCE(324); END_STATE(); case 250: - if (lookahead == 'e') ADVANCE(316); + if (lookahead == 't') ADVANCE(325); END_STATE(); case 251: - if (lookahead == 'e') ADVANCE(317); + if (lookahead == 'i') ADVANCE(326); END_STATE(); case 252: - if (lookahead == 'c') ADVANCE(318); + if (lookahead == 'q') ADVANCE(327); END_STATE(); case 253: - if (lookahead == 'n') ADVANCE(319); + if (lookahead == 'd') ADVANCE(328); END_STATE(); case 254: - ACCEPT_TOKEN(anon_sym_final); + ACCEPT_TOKEN(anon_sym_bitor); END_STATE(); case 255: - if (lookahead == 'd') ADVANCE(320); + ACCEPT_TOKEN(anon_sym_break); END_STATE(); case 256: - if (lookahead == 'e') ADVANCE(321); + ACCEPT_TOKEN(anon_sym_catch); END_STATE(); case 257: - if (lookahead == 'l') ADVANCE(322); + ACCEPT_TOKEN(anon_sym_class); END_STATE(); case 258: - if (lookahead == 'p') ADVANCE(323); + if (lookahead == 'a') ADVANCE(329); END_STATE(); case 259: - if (lookahead == 'e') ADVANCE(324); + if (lookahead == 't') ADVANCE(330); END_STATE(); case 260: - if (lookahead == 'q') ADVANCE(325); + if (lookahead == 'e') ADVANCE(331); END_STATE(); case 261: - if (lookahead == 't') ADVANCE(326); + ACCEPT_TOKEN(anon_sym_compl); END_STATE(); case 262: - if (lookahead == 't') ADVANCE(327); + if (lookahead == 'p') ADVANCE(332); END_STATE(); case 263: - ACCEPT_TOKEN(anon_sym_or_eq); + ACCEPT_TOKEN(anon_sym_const); + if (lookahead == 'e') ADVANCE(333); + if (lookahead == 'i') ADVANCE(334); END_STATE(); case 264: - if (lookahead == 'i') ADVANCE(328); + if (lookahead == 'n') ADVANCE(335); END_STATE(); case 265: - if (lookahead == 't') ADVANCE(329); + if (lookahead == 'y') ADVANCE(336); END_STATE(); case 266: - if (lookahead == 'c') ADVANCE(330); + if (lookahead == 'l') ADVANCE(337); END_STATE(); case 267: - if (lookahead == 'c') ADVANCE(331); + if (lookahead == 'e') ADVANCE(338); END_STATE(); case 268: - if (lookahead == 't') ADVANCE(332); + if (lookahead == 'e') ADVANCE(339); END_STATE(); case 269: - if (lookahead == 'r') ADVANCE(333); + if (lookahead == 'c') ADVANCE(340); END_STATE(); case 270: - if (lookahead == 'i') ADVANCE(334); + if (lookahead == 'n') ADVANCE(341); END_STATE(); case 271: - if (lookahead == 'n') ADVANCE(335); + ACCEPT_TOKEN(anon_sym_final); END_STATE(); case 272: - ACCEPT_TOKEN(anon_sym_short); + if (lookahead == 'd') ADVANCE(342); END_STATE(); case 273: - if (lookahead == 'd') ADVANCE(336); + if (lookahead == 'e') ADVANCE(343); END_STATE(); case 274: - if (lookahead == 'f') ADVANCE(337); + if (lookahead == 'l') ADVANCE(344); END_STATE(); case 275: - if (lookahead == 'c') ADVANCE(338); + if (lookahead == 'p') ADVANCE(345); END_STATE(); case 276: - if (lookahead == 't') ADVANCE(339); + if (lookahead == 'e') ADVANCE(346); END_STATE(); case 277: - if (lookahead == 'h') ADVANCE(340); + if (lookahead == 'u') ADVANCE(347); END_STATE(); case 278: - if (lookahead == 'a') ADVANCE(341); + if (lookahead == 'q') ADVANCE(348); END_STATE(); case 279: - if (lookahead == 'd') ADVANCE(342); + if (lookahead == 't') ADVANCE(349); END_STATE(); case 280: - ACCEPT_TOKEN(anon_sym_throw); + if (lookahead == 't') ADVANCE(350); END_STATE(); case 281: - if (lookahead == 'e') ADVANCE(343); + if (lookahead == 't') ADVANCE(351); END_STATE(); case 282: - if (lookahead == 'a') ADVANCE(344); + ACCEPT_TOKEN(anon_sym_or_eq); END_STATE(); case 283: - ACCEPT_TOKEN(anon_sym_union); + if (lookahead == 'i') ADVANCE(352); END_STATE(); case 284: - if (lookahead == 'n') ADVANCE(345); + if (lookahead == 't') ADVANCE(353); END_STATE(); case 285: - ACCEPT_TOKEN(anon_sym_using); + if (lookahead == 'c') ADVANCE(354); END_STATE(); case 286: - if (lookahead == 'a') ADVANCE(346); + if (lookahead == 'c') ADVANCE(355); END_STATE(); case 287: - if (lookahead == 'i') ADVANCE(347); + if (lookahead == 't') ADVANCE(356); END_STATE(); case 288: - ACCEPT_TOKEN(anon_sym_while); + if (lookahead == 'r') ADVANCE(357); END_STATE(); case 289: - if (lookahead == 'q') ADVANCE(348); + if (lookahead == 'i') ADVANCE(358); END_STATE(); case 290: - if (lookahead == 'c') ADVANCE(349); + if (lookahead == 'n') ADVANCE(359); END_STATE(); case 291: - if (lookahead == 'i') ADVANCE(350); + ACCEPT_TOKEN(anon_sym_short); END_STATE(); case 292: - if (lookahead == 'd') ADVANCE(351); + if (lookahead == 'd') ADVANCE(360); END_STATE(); case 293: - if (lookahead == 'l') ADVANCE(352); + if (lookahead == 'f') ADVANCE(361); END_STATE(); case 294: - if (lookahead == 'a') ADVANCE(353); + if (lookahead == 'c') ADVANCE(362); END_STATE(); case 295: - if (lookahead == 's') ADVANCE(354); + if (lookahead == 't') ADVANCE(363); END_STATE(); case 296: - if (lookahead == 'c') ADVANCE(355); + if (lookahead == 'h') ADVANCE(364); END_STATE(); case 297: - if (lookahead == 'r') ADVANCE(356); + if (lookahead == 'a') ADVANCE(365); END_STATE(); case 298: - ACCEPT_TOKEN(sym_ms_signed_ptr_modifier); + if (lookahead == 'd') ADVANCE(366); END_STATE(); case 299: - if (lookahead == 'a') ADVANCE(357); + ACCEPT_TOKEN(anon_sym_throw); END_STATE(); case 300: - if (lookahead == 'c') ADVANCE(358); + if (lookahead == 'e') ADVANCE(367); END_STATE(); case 301: - if (lookahead == 'i') ADVANCE(359); + if (lookahead == 'a') ADVANCE(368); END_STATE(); case 302: - ACCEPT_TOKEN(sym_ms_unsigned_ptr_modifier); + ACCEPT_TOKEN(anon_sym_union); END_STATE(); case 303: - if (lookahead == 'o') ADVANCE(360); + if (lookahead == 'n') ADVANCE(369); END_STATE(); case 304: - if (lookahead == 'g') ADVANCE(361); + ACCEPT_TOKEN(anon_sym_using); END_STATE(); case 305: - ACCEPT_TOKEN(anon_sym_and_eq); + if (lookahead == 'a') ADVANCE(370); END_STATE(); case 306: - ACCEPT_TOKEN(anon_sym_bitand); + if (lookahead == 'i') ADVANCE(371); END_STATE(); case 307: - if (lookahead == 'i') ADVANCE(362); + ACCEPT_TOKEN(anon_sym_while); END_STATE(); case 308: - if (lookahead == 'u') ADVANCE(363); + if (lookahead == 'q') ADVANCE(372); END_STATE(); case 309: - if (lookahead == 'l') ADVANCE(364); + if (lookahead == 'c') ADVANCE(373); END_STATE(); case 310: - if (lookahead == 't') ADVANCE(365); + if (lookahead == 'i') ADVANCE(374); END_STATE(); case 311: - if (lookahead == 'v') ADVANCE(366); - if (lookahead == 'x') ADVANCE(367); + if (lookahead == 'u') ADVANCE(375); END_STATE(); case 312: - if (lookahead == 'n') ADVANCE(368); + if (lookahead == '_') ADVANCE(376); END_STATE(); case 313: - if (lookahead == 'u') ADVANCE(369); + if (lookahead == 'i') ADVANCE(377); END_STATE(); case 314: - if (lookahead == 'p') ADVANCE(370); + if (lookahead == 'd') ADVANCE(378); END_STATE(); case 315: - if (lookahead == 't') ADVANCE(371); + if (lookahead == 'l') ADVANCE(379); END_STATE(); case 316: - if (lookahead == 'd') ADVANCE(372); + if (lookahead == 'a') ADVANCE(380); END_STATE(); case 317: - ACCEPT_TOKEN(anon_sym_delete); + if (lookahead == 's') ADVANCE(381); END_STATE(); case 318: - if (lookahead == 'i') ADVANCE(373); + if (lookahead == 'c') ADVANCE(382); END_STATE(); case 319: - ACCEPT_TOKEN(anon_sym_extern); + if (lookahead == 'r') ADVANCE(383); END_STATE(); case 320: - ACCEPT_TOKEN(anon_sym_friend); + ACCEPT_TOKEN(sym_ms_signed_ptr_modifier); END_STATE(); case 321: - ACCEPT_TOKEN(anon_sym_inline); + if (lookahead == 'a') ADVANCE(384); END_STATE(); case 322: - if (lookahead == 'e') ADVANCE(374); + if (lookahead == 'c') ADVANCE(385); END_STATE(); case 323: - if (lookahead == 'a') ADVANCE(375); + if (lookahead == 'i') ADVANCE(386); END_STATE(); case 324: - if (lookahead == 'p') ADVANCE(376); + ACCEPT_TOKEN(sym_ms_unsigned_ptr_modifier); END_STATE(); case 325: - ACCEPT_TOKEN(anon_sym_not_eq); + if (lookahead == 'o') ADVANCE(387); END_STATE(); case 326: - if (lookahead == 'r') ADVANCE(377); + if (lookahead == 'g') ADVANCE(388); END_STATE(); case 327: - if (lookahead == 'o') ADVANCE(378); + ACCEPT_TOKEN(anon_sym_and_eq); END_STATE(); case 328: - if (lookahead == 'd') ADVANCE(379); + ACCEPT_TOKEN(anon_sym_bitand); END_STATE(); case 329: - if (lookahead == 'e') ADVANCE(380); + if (lookahead == 'i') ADVANCE(389); END_STATE(); case 330: - if (lookahead == 't') ADVANCE(381); + if (lookahead == 'u') ADVANCE(390); END_STATE(); case 331: - ACCEPT_TOKEN(anon_sym_public); + if (lookahead == 'l') ADVANCE(391); END_STATE(); case 332: - if (lookahead == 'e') ADVANCE(382); + if (lookahead == 't') ADVANCE(392); END_STATE(); case 333: - if (lookahead == 'e') ADVANCE(383); + if (lookahead == 'v') ADVANCE(393); + if (lookahead == 'x') ADVANCE(394); END_STATE(); case 334: - if (lookahead == 'c') ADVANCE(384); + if (lookahead == 'n') ADVANCE(395); END_STATE(); case 335: - ACCEPT_TOKEN(anon_sym_return); + if (lookahead == 'u') ADVANCE(396); END_STATE(); case 336: - ACCEPT_TOKEN(anon_sym_signed); + if (lookahead == 'p') ADVANCE(397); END_STATE(); case 337: - ACCEPT_TOKEN(anon_sym_sizeof); + if (lookahead == 't') ADVANCE(398); END_STATE(); case 338: - ACCEPT_TOKEN(anon_sym_static); - if (lookahead == '_') ADVANCE(385); + if (lookahead == 'd') ADVANCE(399); END_STATE(); case 339: - ACCEPT_TOKEN(anon_sym_struct); + ACCEPT_TOKEN(anon_sym_delete); END_STATE(); case 340: - ACCEPT_TOKEN(anon_sym_switch); + if (lookahead == 'i') ADVANCE(400); END_STATE(); case 341: - if (lookahead == 't') ADVANCE(386); + ACCEPT_TOKEN(anon_sym_extern); END_STATE(); case 342: - if (lookahead == '_') ADVANCE(387); + ACCEPT_TOKEN(anon_sym_friend); END_STATE(); case 343: - if (lookahead == 'f') ADVANCE(388); + ACCEPT_TOKEN(anon_sym_inline); END_STATE(); case 344: - if (lookahead == 'm') ADVANCE(389); + if (lookahead == 'e') ADVANCE(401); END_STATE(); case 345: - if (lookahead == 'e') ADVANCE(390); + if (lookahead == 'a') ADVANCE(402); END_STATE(); case 346: - if (lookahead == 'l') ADVANCE(391); + if (lookahead == 'p') ADVANCE(403); END_STATE(); case 347: - if (lookahead == 'l') ADVANCE(392); + if (lookahead == 'r') ADVANCE(404); END_STATE(); case 348: - ACCEPT_TOKEN(anon_sym_xor_eq); + ACCEPT_TOKEN(anon_sym_not_eq); END_STATE(); case 349: - ACCEPT_TOKEN(anon_sym__Atomic); + if (lookahead == 'r') ADVANCE(405); END_STATE(); case 350: - if (lookahead == 'b') ADVANCE(393); + if (lookahead == 'o') ADVANCE(406); END_STATE(); case 351: - ACCEPT_TOKEN(anon_sym___based); + if (lookahead == 'o') ADVANCE(407); END_STATE(); case 352: - ACCEPT_TOKEN(anon_sym___cdecl); + if (lookahead == 'd') ADVANCE(408); END_STATE(); case 353: - if (lookahead == 'l') ADVANCE(394); + if (lookahead == 'e') ADVANCE(409); END_STATE(); case 354: - if (lookahead == 'p') ADVANCE(395); + if (lookahead == 't') ADVANCE(410); END_STATE(); case 355: - if (lookahead == 'a') ADVANCE(396); + ACCEPT_TOKEN(anon_sym_public); END_STATE(); case 356: - if (lookahead == 'i') ADVANCE(397); + if (lookahead == 'e') ADVANCE(411); END_STATE(); case 357: - if (lookahead == 'l') ADVANCE(398); + if (lookahead == 'e') ADVANCE(412); END_STATE(); case 358: - if (lookahead == 'a') ADVANCE(399); + if (lookahead == 'c') ADVANCE(413); END_STATE(); case 359: - if (lookahead == 'g') ADVANCE(400); + ACCEPT_TOKEN(anon_sym_return); END_STATE(); case 360: - if (lookahead == 'r') ADVANCE(401); + ACCEPT_TOKEN(anon_sym_signed); END_STATE(); case 361: - if (lookahead == 'n') ADVANCE(402); + ACCEPT_TOKEN(anon_sym_sizeof); END_STATE(); case 362: - if (lookahead == 't') ADVANCE(403); + ACCEPT_TOKEN(anon_sym_static); + if (lookahead == '_') ADVANCE(414); END_STATE(); case 363: - if (lookahead == 'r') ADVANCE(404); + ACCEPT_TOKEN(anon_sym_struct); END_STATE(); case 364: - if (lookahead == 'd') ADVANCE(405); + ACCEPT_TOKEN(anon_sym_switch); END_STATE(); case 365: - ACCEPT_TOKEN(anon_sym_concept); + if (lookahead == 't') ADVANCE(415); END_STATE(); case 366: - if (lookahead == 'a') ADVANCE(406); + if (lookahead == '_') ADVANCE(416); END_STATE(); case 367: - if (lookahead == 'p') ADVANCE(407); + if (lookahead == 'f') ADVANCE(417); END_STATE(); case 368: - if (lookahead == 'i') ADVANCE(408); + if (lookahead == 'm') ADVANCE(418); END_STATE(); case 369: - if (lookahead == 'e') ADVANCE(409); + if (lookahead == 'e') ADVANCE(419); END_STATE(); case 370: - if (lookahead == 'e') ADVANCE(410); + if (lookahead == 'l') ADVANCE(420); END_STATE(); case 371: - ACCEPT_TOKEN(anon_sym_default); + if (lookahead == 'l') ADVANCE(421); END_STATE(); case 372: - ACCEPT_TOKEN(anon_sym_defined); + ACCEPT_TOKEN(anon_sym_xor_eq); END_STATE(); case 373: - if (lookahead == 't') ADVANCE(411); + ACCEPT_TOKEN(anon_sym__Atomic); END_STATE(); case 374: - ACCEPT_TOKEN(anon_sym_mutable); + if (lookahead == 'c') ADVANCE(422); END_STATE(); case 375: - if (lookahead == 'c') ADVANCE(412); + if (lookahead == 'r') ADVANCE(423); END_STATE(); case 376: - if (lookahead == 't') ADVANCE(413); + ACCEPT_TOKEN(anon_sym___asm__); END_STATE(); case 377: - ACCEPT_TOKEN(sym_nullptr); + if (lookahead == 'b') ADVANCE(424); END_STATE(); case 378: - if (lookahead == 'r') ADVANCE(414); + ACCEPT_TOKEN(anon_sym___based); END_STATE(); case 379: - if (lookahead == 'e') ADVANCE(415); + ACCEPT_TOKEN(anon_sym___cdecl); END_STATE(); case 380: - ACCEPT_TOKEN(anon_sym_private); + if (lookahead == 'l') ADVANCE(425); END_STATE(); case 381: - if (lookahead == 'e') ADVANCE(416); + if (lookahead == 'p') ADVANCE(426); END_STATE(); case 382: - if (lookahead == 'r') ADVANCE(417); + if (lookahead == 'a') ADVANCE(427); END_STATE(); case 383: - if (lookahead == 's') ADVANCE(418); + if (lookahead == 'i') ADVANCE(428); END_STATE(); case 384: - if (lookahead == 't') ADVANCE(419); + if (lookahead == 'l') ADVANCE(429); END_STATE(); case 385: - if (lookahead == 'a') ADVANCE(420); + if (lookahead == 'a') ADVANCE(430); END_STATE(); case 386: - if (lookahead == 'e') ADVANCE(421); + if (lookahead == 'g') ADVANCE(431); END_STATE(); case 387: - if (lookahead == 'l') ADVANCE(422); + if (lookahead == 'r') ADVANCE(432); END_STATE(); case 388: - ACCEPT_TOKEN(anon_sym_typedef); + if (lookahead == 'n') ADVANCE(433); END_STATE(); case 389: - if (lookahead == 'e') ADVANCE(423); + if (lookahead == 't') ADVANCE(434); END_STATE(); case 390: - if (lookahead == 'd') ADVANCE(424); + if (lookahead == 'r') ADVANCE(435); END_STATE(); case 391: - ACCEPT_TOKEN(anon_sym_virtual); + if (lookahead == 'd') ADVANCE(436); END_STATE(); case 392: - if (lookahead == 'e') ADVANCE(425); + ACCEPT_TOKEN(anon_sym_concept); END_STATE(); case 393: - if (lookahead == 'u') ADVANCE(426); + if (lookahead == 'a') ADVANCE(437); END_STATE(); case 394: - if (lookahead == 'l') ADVANCE(427); + if (lookahead == 'p') ADVANCE(438); END_STATE(); case 395: - if (lookahead == 'e') ADVANCE(428); + if (lookahead == 'i') ADVANCE(439); END_STATE(); case 396: - if (lookahead == 'l') ADVANCE(429); + if (lookahead == 'e') ADVANCE(440); END_STATE(); case 397: - if (lookahead == 'c') ADVANCE(430); + if (lookahead == 'e') ADVANCE(441); END_STATE(); case 398: - if (lookahead == 'l') ADVANCE(431); + ACCEPT_TOKEN(anon_sym_default); END_STATE(); case 399: - if (lookahead == 'l') ADVANCE(432); + ACCEPT_TOKEN(anon_sym_defined); END_STATE(); case 400: - if (lookahead == 'n') ADVANCE(433); + if (lookahead == 't') ADVANCE(442); END_STATE(); case 401: - if (lookahead == 'c') ADVANCE(434); + ACCEPT_TOKEN(anon_sym_mutable); END_STATE(); case 402: - if (lookahead == 'e') ADVANCE(435); + if (lookahead == 'c') ADVANCE(443); END_STATE(); case 403: - ACCEPT_TOKEN(anon_sym_co_await); + if (lookahead == 't') ADVANCE(444); END_STATE(); case 404: - if (lookahead == 'n') ADVANCE(436); + if (lookahead == 'n') ADVANCE(445); END_STATE(); case 405: - ACCEPT_TOKEN(anon_sym_co_yield); + ACCEPT_TOKEN(anon_sym_nullptr); END_STATE(); case 406: - if (lookahead == 'l') ADVANCE(437); + if (lookahead == 'f') ADVANCE(446); END_STATE(); case 407: - if (lookahead == 'r') ADVANCE(438); + if (lookahead == 'r') ADVANCE(447); END_STATE(); case 408: - if (lookahead == 't') ADVANCE(439); + if (lookahead == 'e') ADVANCE(448); END_STATE(); case 409: - ACCEPT_TOKEN(anon_sym_continue); + ACCEPT_TOKEN(anon_sym_private); END_STATE(); case 410: - ACCEPT_TOKEN(anon_sym_decltype); + if (lookahead == 'e') ADVANCE(449); END_STATE(); case 411: - ACCEPT_TOKEN(anon_sym_explicit); + if (lookahead == 'r') ADVANCE(450); END_STATE(); case 412: - if (lookahead == 'e') ADVANCE(440); + if (lookahead == 's') ADVANCE(451); END_STATE(); case 413: - ACCEPT_TOKEN(anon_sym_noexcept); + if (lookahead == 't') ADVANCE(452); END_STATE(); case 414: - ACCEPT_TOKEN(anon_sym_operator); + if (lookahead == 'a') ADVANCE(453); END_STATE(); case 415: - ACCEPT_TOKEN(anon_sym_override); + if (lookahead == 'e') ADVANCE(454); END_STATE(); case 416: - if (lookahead == 'd') ADVANCE(441); + if (lookahead == 'l') ADVANCE(455); END_STATE(); case 417: - ACCEPT_TOKEN(anon_sym_register); + ACCEPT_TOKEN(anon_sym_typedef); END_STATE(); case 418: - ACCEPT_TOKEN(anon_sym_requires); + if (lookahead == 'e') ADVANCE(456); END_STATE(); case 419: - ACCEPT_TOKEN(anon_sym_restrict); + if (lookahead == 'd') ADVANCE(457); END_STATE(); case 420: - if (lookahead == 's') ADVANCE(442); + ACCEPT_TOKEN(anon_sym_virtual); END_STATE(); case 421: - ACCEPT_TOKEN(anon_sym_template); + if (lookahead == 'e') ADVANCE(458); END_STATE(); case 422: - if (lookahead == 'o') ADVANCE(443); + ACCEPT_TOKEN(anon_sym__Generic); END_STATE(); case 423: - ACCEPT_TOKEN(anon_sym_typename); + if (lookahead == 'n') ADVANCE(459); END_STATE(); case 424: - ACCEPT_TOKEN(anon_sym_unsigned); + if (lookahead == 'u') ADVANCE(460); END_STATE(); case 425: - ACCEPT_TOKEN(anon_sym_volatile); + if (lookahead == 'l') ADVANCE(461); END_STATE(); case 426: - if (lookahead == 't') ADVANCE(444); + if (lookahead == 'e') ADVANCE(462); END_STATE(); case 427: - ACCEPT_TOKEN(anon_sym___clrcall); + if (lookahead == 'l') ADVANCE(463); END_STATE(); case 428: - if (lookahead == 'c') ADVANCE(445); + if (lookahead == 'c') ADVANCE(464); END_STATE(); case 429: - if (lookahead == 'l') ADVANCE(446); + if (lookahead == 'l') ADVANCE(465); END_STATE(); case 430: - if (lookahead == 't') ADVANCE(447); + if (lookahead == 'l') ADVANCE(466); END_STATE(); case 431: - ACCEPT_TOKEN(anon_sym___stdcall); + if (lookahead == 'n') ADVANCE(467); END_STATE(); case 432: - if (lookahead == 'l') ADVANCE(448); + if (lookahead == 'c') ADVANCE(468); END_STATE(); case 433: - if (lookahead == 'e') ADVANCE(449); + if (lookahead == 'e') ADVANCE(469); END_STATE(); case 434: - if (lookahead == 'a') ADVANCE(450); + ACCEPT_TOKEN(anon_sym_co_await); END_STATE(); case 435: - if (lookahead == 'd') ADVANCE(451); + if (lookahead == 'n') ADVANCE(470); END_STATE(); case 436: - ACCEPT_TOKEN(anon_sym_co_return); + ACCEPT_TOKEN(anon_sym_co_yield); END_STATE(); case 437: - ACCEPT_TOKEN(anon_sym_consteval); + if (lookahead == 'l') ADVANCE(471); END_STATE(); case 438: - ACCEPT_TOKEN(anon_sym_constexpr); + if (lookahead == 'r') ADVANCE(472); END_STATE(); case 439: - ACCEPT_TOKEN(anon_sym_constinit); + if (lookahead == 't') ADVANCE(473); END_STATE(); case 440: - ACCEPT_TOKEN(anon_sym_namespace); + ACCEPT_TOKEN(anon_sym_continue); END_STATE(); case 441: - ACCEPT_TOKEN(anon_sym_protected); + ACCEPT_TOKEN(anon_sym_decltype); END_STATE(); case 442: - if (lookahead == 's') ADVANCE(452); + ACCEPT_TOKEN(anon_sym_explicit); END_STATE(); case 443: - if (lookahead == 'c') ADVANCE(453); + if (lookahead == 'e') ADVANCE(474); END_STATE(); case 444: - if (lookahead == 'e') ADVANCE(454); + ACCEPT_TOKEN(anon_sym_noexcept); END_STATE(); case 445: - ACCEPT_TOKEN(anon_sym___declspec); + ACCEPT_TOKEN(anon_sym_noreturn); END_STATE(); case 446: - ACCEPT_TOKEN(anon_sym___fastcall); + ACCEPT_TOKEN(anon_sym_offsetof); END_STATE(); case 447: - ACCEPT_TOKEN(sym_ms_restrict_modifier); + ACCEPT_TOKEN(anon_sym_operator); END_STATE(); case 448: - ACCEPT_TOKEN(anon_sym___thiscall); + ACCEPT_TOKEN(anon_sym_override); END_STATE(); case 449: - if (lookahead == 'd') ADVANCE(455); + if (lookahead == 'd') ADVANCE(475); END_STATE(); case 450: - if (lookahead == 'l') ADVANCE(456); + ACCEPT_TOKEN(anon_sym_register); END_STATE(); case 451: - ACCEPT_TOKEN(anon_sym__unaligned); + ACCEPT_TOKEN(anon_sym_requires); END_STATE(); case 452: - if (lookahead == 'e') ADVANCE(457); + ACCEPT_TOKEN(anon_sym_restrict); END_STATE(); case 453: - if (lookahead == 'a') ADVANCE(458); + if (lookahead == 's') ADVANCE(476); END_STATE(); case 454: - if (lookahead == '_') ADVANCE(459); + ACCEPT_TOKEN(anon_sym_template); END_STATE(); case 455: - ACCEPT_TOKEN(anon_sym___unaligned); + if (lookahead == 'o') ADVANCE(477); END_STATE(); case 456: - if (lookahead == 'l') ADVANCE(460); + ACCEPT_TOKEN(anon_sym_typename); END_STATE(); case 457: - if (lookahead == 'r') ADVANCE(461); + ACCEPT_TOKEN(anon_sym_unsigned); END_STATE(); case 458: - if (lookahead == 'l') ADVANCE(462); + ACCEPT_TOKEN(anon_sym_volatile); END_STATE(); case 459: - if (lookahead == '_') ADVANCE(463); + ACCEPT_TOKEN(anon_sym__Noreturn); END_STATE(); case 460: - ACCEPT_TOKEN(anon_sym___vectorcall); + if (lookahead == 't') ADVANCE(478); END_STATE(); case 461: - if (lookahead == 't') ADVANCE(464); + ACCEPT_TOKEN(anon_sym___clrcall); END_STATE(); case 462: - ACCEPT_TOKEN(anon_sym_thread_local); + if (lookahead == 'c') ADVANCE(479); END_STATE(); case 463: - ACCEPT_TOKEN(anon_sym___attribute__); + if (lookahead == 'l') ADVANCE(480); END_STATE(); case 464: + if (lookahead == 't') ADVANCE(481); + END_STATE(); + case 465: + ACCEPT_TOKEN(anon_sym___stdcall); + END_STATE(); + case 466: + if (lookahead == 'l') ADVANCE(482); + END_STATE(); + case 467: + if (lookahead == 'e') ADVANCE(483); + END_STATE(); + case 468: + if (lookahead == 'a') ADVANCE(484); + END_STATE(); + case 469: + if (lookahead == 'd') ADVANCE(485); + END_STATE(); + case 470: + ACCEPT_TOKEN(anon_sym_co_return); + END_STATE(); + case 471: + ACCEPT_TOKEN(anon_sym_consteval); + END_STATE(); + case 472: + ACCEPT_TOKEN(anon_sym_constexpr); + END_STATE(); + case 473: + ACCEPT_TOKEN(anon_sym_constinit); + END_STATE(); + case 474: + ACCEPT_TOKEN(anon_sym_namespace); + END_STATE(); + case 475: + ACCEPT_TOKEN(anon_sym_protected); + END_STATE(); + case 476: + if (lookahead == 's') ADVANCE(486); + END_STATE(); + case 477: + if (lookahead == 'c') ADVANCE(487); + END_STATE(); + case 478: + if (lookahead == 'e') ADVANCE(488); + END_STATE(); + case 479: + ACCEPT_TOKEN(anon_sym___declspec); + END_STATE(); + case 480: + ACCEPT_TOKEN(anon_sym___fastcall); + END_STATE(); + case 481: + ACCEPT_TOKEN(sym_ms_restrict_modifier); + if (lookahead == '_') ADVANCE(489); + END_STATE(); + case 482: + ACCEPT_TOKEN(anon_sym___thiscall); + END_STATE(); + case 483: + if (lookahead == 'd') ADVANCE(490); + END_STATE(); + case 484: + if (lookahead == 'l') ADVANCE(491); + END_STATE(); + case 485: + ACCEPT_TOKEN(anon_sym__unaligned); + END_STATE(); + case 486: + if (lookahead == 'e') ADVANCE(492); + END_STATE(); + case 487: + if (lookahead == 'a') ADVANCE(493); + END_STATE(); + case 488: + if (lookahead == '_') ADVANCE(494); + END_STATE(); + case 489: + if (lookahead == '_') ADVANCE(495); + END_STATE(); + case 490: + ACCEPT_TOKEN(anon_sym___unaligned); + END_STATE(); + case 491: + if (lookahead == 'l') ADVANCE(496); + END_STATE(); + case 492: + if (lookahead == 'r') ADVANCE(497); + END_STATE(); + case 493: + if (lookahead == 'l') ADVANCE(498); + END_STATE(); + case 494: + if (lookahead == '_') ADVANCE(499); + END_STATE(); + case 495: + ACCEPT_TOKEN(anon_sym___restrict__); + END_STATE(); + case 496: + ACCEPT_TOKEN(anon_sym___vectorcall); + END_STATE(); + case 497: + if (lookahead == 't') ADVANCE(500); + END_STATE(); + case 498: + ACCEPT_TOKEN(anon_sym_thread_local); + END_STATE(); + case 499: + ACCEPT_TOKEN(anon_sym___attribute__); + END_STATE(); + case 500: ACCEPT_TOKEN(anon_sym_static_assert); END_STATE(); default: @@ -17352,6452 +33840,6452 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { static const TSLexMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0, .external_lex_state = 1}, - [1] = {.lex_state = 264}, - [2] = {.lex_state = 264}, - [3] = {.lex_state = 264}, - [4] = {.lex_state = 264}, - [5] = {.lex_state = 264}, - [6] = {.lex_state = 264}, - [7] = {.lex_state = 264}, - [8] = {.lex_state = 264}, - [9] = {.lex_state = 264}, - [10] = {.lex_state = 140}, - [11] = {.lex_state = 140}, - [12] = {.lex_state = 140}, - [13] = {.lex_state = 140}, - [14] = {.lex_state = 140}, - [15] = {.lex_state = 140}, - [16] = {.lex_state = 140}, - [17] = {.lex_state = 140}, - [18] = {.lex_state = 140}, - [19] = {.lex_state = 140}, - [20] = {.lex_state = 140}, - [21] = {.lex_state = 140}, - [22] = {.lex_state = 140}, - [23] = {.lex_state = 140}, - [24] = {.lex_state = 140}, - [25] = {.lex_state = 140}, - [26] = {.lex_state = 140}, - [27] = {.lex_state = 140}, - [28] = {.lex_state = 140}, - [29] = {.lex_state = 264}, - [30] = {.lex_state = 264}, - [31] = {.lex_state = 264}, - [32] = {.lex_state = 142}, - [33] = {.lex_state = 264}, - [34] = {.lex_state = 142}, - [35] = {.lex_state = 264}, - [36] = {.lex_state = 264}, - [37] = {.lex_state = 264}, - [38] = {.lex_state = 264}, - [39] = {.lex_state = 264}, - [40] = {.lex_state = 264}, - [41] = {.lex_state = 264}, - [42] = {.lex_state = 264}, - [43] = {.lex_state = 264}, - [44] = {.lex_state = 264}, - [45] = {.lex_state = 264}, - [46] = {.lex_state = 264}, - [47] = {.lex_state = 264}, - [48] = {.lex_state = 264}, - [49] = {.lex_state = 264}, - [50] = {.lex_state = 264}, - [51] = {.lex_state = 264}, - [52] = {.lex_state = 264}, - [53] = {.lex_state = 264}, - [54] = {.lex_state = 264}, - [55] = {.lex_state = 264}, - [56] = {.lex_state = 264}, - [57] = {.lex_state = 264}, - [58] = {.lex_state = 264}, - [59] = {.lex_state = 264}, - [60] = {.lex_state = 264}, - [61] = {.lex_state = 264}, - [62] = {.lex_state = 264}, - [63] = {.lex_state = 264}, - [64] = {.lex_state = 264}, - [65] = {.lex_state = 264}, - [66] = {.lex_state = 264}, - [67] = {.lex_state = 264}, - [68] = {.lex_state = 264}, - [69] = {.lex_state = 264}, - [70] = {.lex_state = 264}, - [71] = {.lex_state = 264}, - [72] = {.lex_state = 142}, - [73] = {.lex_state = 264}, - [74] = {.lex_state = 264}, - [75] = {.lex_state = 264}, - [76] = {.lex_state = 264}, - [77] = {.lex_state = 140}, - [78] = {.lex_state = 140}, - [79] = {.lex_state = 140}, - [80] = {.lex_state = 140}, - [81] = {.lex_state = 140}, - [82] = {.lex_state = 142}, - [83] = {.lex_state = 142}, - [84] = {.lex_state = 264}, - [85] = {.lex_state = 142}, - [86] = {.lex_state = 142}, - [87] = {.lex_state = 264}, - [88] = {.lex_state = 264}, - [89] = {.lex_state = 264}, - [90] = {.lex_state = 264}, - [91] = {.lex_state = 264}, - [92] = {.lex_state = 264}, - [93] = {.lex_state = 264}, - [94] = {.lex_state = 264}, - [95] = {.lex_state = 142}, - [96] = {.lex_state = 264}, - [97] = {.lex_state = 141}, - [98] = {.lex_state = 141}, - [99] = {.lex_state = 141}, - [100] = {.lex_state = 141}, - [101] = {.lex_state = 141}, - [102] = {.lex_state = 141}, - [103] = {.lex_state = 141}, - [104] = {.lex_state = 141}, - [105] = {.lex_state = 141}, - [106] = {.lex_state = 141}, - [107] = {.lex_state = 141}, - [108] = {.lex_state = 141}, - [109] = {.lex_state = 141}, - [110] = {.lex_state = 141}, - [111] = {.lex_state = 141}, - [112] = {.lex_state = 141}, - [113] = {.lex_state = 141}, - [114] = {.lex_state = 141}, - [115] = {.lex_state = 141}, - [116] = {.lex_state = 143}, - [117] = {.lex_state = 143}, - [118] = {.lex_state = 143}, - [119] = {.lex_state = 143}, - [120] = {.lex_state = 141}, - [121] = {.lex_state = 134}, - [122] = {.lex_state = 133}, - [123] = {.lex_state = 135}, - [124] = {.lex_state = 133}, - [125] = {.lex_state = 134}, - [126] = {.lex_state = 197}, - [127] = {.lex_state = 197}, - [128] = {.lex_state = 197}, - [129] = {.lex_state = 264}, - [130] = {.lex_state = 197}, - [131] = {.lex_state = 197}, - [132] = {.lex_state = 264}, - [133] = {.lex_state = 197}, - [134] = {.lex_state = 197}, - [135] = {.lex_state = 197}, - [136] = {.lex_state = 197}, - [137] = {.lex_state = 197}, - [138] = {.lex_state = 197}, - [139] = {.lex_state = 197}, - [140] = {.lex_state = 197}, - [141] = {.lex_state = 197}, - [142] = {.lex_state = 141}, - [143] = {.lex_state = 141}, - [144] = {.lex_state = 141}, - [145] = {.lex_state = 141}, - [146] = {.lex_state = 141}, - [147] = {.lex_state = 141}, - [148] = {.lex_state = 141}, - [149] = {.lex_state = 141}, - [150] = {.lex_state = 141}, - [151] = {.lex_state = 141}, - [152] = {.lex_state = 141}, - [153] = {.lex_state = 141}, - [154] = {.lex_state = 141}, - [155] = {.lex_state = 141}, - [156] = {.lex_state = 141}, - [157] = {.lex_state = 141}, - [158] = {.lex_state = 141}, - [159] = {.lex_state = 141}, - [160] = {.lex_state = 141}, - [161] = {.lex_state = 141}, - [162] = {.lex_state = 141}, - [163] = {.lex_state = 141}, - [164] = {.lex_state = 141}, - [165] = {.lex_state = 141}, - [166] = {.lex_state = 141}, - [167] = {.lex_state = 141}, - [168] = {.lex_state = 141}, - [169] = {.lex_state = 141}, - [170] = {.lex_state = 141}, - [171] = {.lex_state = 141}, - [172] = {.lex_state = 141}, - [173] = {.lex_state = 141}, - [174] = {.lex_state = 141}, - [175] = {.lex_state = 141}, - [176] = {.lex_state = 141}, - [177] = {.lex_state = 141}, - [178] = {.lex_state = 141}, - [179] = {.lex_state = 141}, - [180] = {.lex_state = 141}, - [181] = {.lex_state = 141}, - [182] = {.lex_state = 141}, - [183] = {.lex_state = 141}, - [184] = {.lex_state = 141}, - [185] = {.lex_state = 141}, - [186] = {.lex_state = 141}, - [187] = {.lex_state = 141}, - [188] = {.lex_state = 141}, - [189] = {.lex_state = 141}, - [190] = {.lex_state = 141}, - [191] = {.lex_state = 141}, - [192] = {.lex_state = 141}, - [193] = {.lex_state = 141}, - [194] = {.lex_state = 141}, - [195] = {.lex_state = 141}, - [196] = {.lex_state = 141}, - [197] = {.lex_state = 141}, - [198] = {.lex_state = 141}, - [199] = {.lex_state = 141}, - [200] = {.lex_state = 141}, - [201] = {.lex_state = 141}, - [202] = {.lex_state = 141}, - [203] = {.lex_state = 141}, - [204] = {.lex_state = 141}, - [205] = {.lex_state = 141}, - [206] = {.lex_state = 141}, - [207] = {.lex_state = 141}, - [208] = {.lex_state = 141}, - [209] = {.lex_state = 141}, - [210] = {.lex_state = 141}, - [211] = {.lex_state = 141}, - [212] = {.lex_state = 141}, - [213] = {.lex_state = 141}, - [214] = {.lex_state = 141}, - [215] = {.lex_state = 141}, - [216] = {.lex_state = 141}, - [217] = {.lex_state = 141}, - [218] = {.lex_state = 141}, - [219] = {.lex_state = 141}, - [220] = {.lex_state = 141}, - [221] = {.lex_state = 141}, - [222] = {.lex_state = 141}, - [223] = {.lex_state = 141}, - [224] = {.lex_state = 141}, - [225] = {.lex_state = 141}, - [226] = {.lex_state = 141}, - [227] = {.lex_state = 141}, - [228] = {.lex_state = 141}, - [229] = {.lex_state = 141}, - [230] = {.lex_state = 141}, - [231] = {.lex_state = 141}, - [232] = {.lex_state = 141}, - [233] = {.lex_state = 141}, - [234] = {.lex_state = 141}, - [235] = {.lex_state = 141}, - [236] = {.lex_state = 141}, - [237] = {.lex_state = 141}, - [238] = {.lex_state = 141}, - [239] = {.lex_state = 141}, - [240] = {.lex_state = 141}, - [241] = {.lex_state = 141}, - [242] = {.lex_state = 141}, - [243] = {.lex_state = 141}, - [244] = {.lex_state = 141}, - [245] = {.lex_state = 141}, - [246] = {.lex_state = 141}, - [247] = {.lex_state = 141}, - [248] = {.lex_state = 141}, - [249] = {.lex_state = 141}, - [250] = {.lex_state = 141}, - [251] = {.lex_state = 141}, - [252] = {.lex_state = 141}, - [253] = {.lex_state = 141}, - [254] = {.lex_state = 141}, - [255] = {.lex_state = 141}, - [256] = {.lex_state = 141}, - [257] = {.lex_state = 141}, - [258] = {.lex_state = 141}, - [259] = {.lex_state = 141}, - [260] = {.lex_state = 141}, - [261] = {.lex_state = 141}, - [262] = {.lex_state = 141}, - [263] = {.lex_state = 141}, - [264] = {.lex_state = 141}, - [265] = {.lex_state = 141}, - [266] = {.lex_state = 141}, - [267] = {.lex_state = 141}, - [268] = {.lex_state = 141}, - [269] = {.lex_state = 141}, - [270] = {.lex_state = 141}, - [271] = {.lex_state = 141}, - [272] = {.lex_state = 141}, - [273] = {.lex_state = 141}, - [274] = {.lex_state = 141}, - [275] = {.lex_state = 141}, - [276] = {.lex_state = 141}, - [277] = {.lex_state = 141}, - [278] = {.lex_state = 141}, - [279] = {.lex_state = 141}, - [280] = {.lex_state = 141}, - [281] = {.lex_state = 141}, - [282] = {.lex_state = 141}, - [283] = {.lex_state = 141}, - [284] = {.lex_state = 141}, - [285] = {.lex_state = 141}, - [286] = {.lex_state = 141}, - [287] = {.lex_state = 141}, - [288] = {.lex_state = 141}, - [289] = {.lex_state = 141}, - [290] = {.lex_state = 141}, - [291] = {.lex_state = 197}, - [292] = {.lex_state = 156}, - [293] = {.lex_state = 198}, - [294] = {.lex_state = 156}, - [295] = {.lex_state = 156}, - [296] = {.lex_state = 156}, - [297] = {.lex_state = 156}, - [298] = {.lex_state = 156}, - [299] = {.lex_state = 156}, - [300] = {.lex_state = 198}, - [301] = {.lex_state = 156}, - [302] = {.lex_state = 156}, - [303] = {.lex_state = 156}, - [304] = {.lex_state = 156}, - [305] = {.lex_state = 156}, - [306] = {.lex_state = 156}, - [307] = {.lex_state = 156}, - [308] = {.lex_state = 156}, - [309] = {.lex_state = 156}, - [310] = {.lex_state = 156}, - [311] = {.lex_state = 156}, - [312] = {.lex_state = 156}, - [313] = {.lex_state = 198}, - [314] = {.lex_state = 144}, - [315] = {.lex_state = 144}, - [316] = {.lex_state = 144}, - [317] = {.lex_state = 144}, - [318] = {.lex_state = 140}, - [319] = {.lex_state = 144}, - [320] = {.lex_state = 144}, - [321] = {.lex_state = 144}, - [322] = {.lex_state = 144}, - [323] = {.lex_state = 144}, - [324] = {.lex_state = 140}, - [325] = {.lex_state = 144}, - [326] = {.lex_state = 144}, - [327] = {.lex_state = 144}, - [328] = {.lex_state = 144}, - [329] = {.lex_state = 144}, - [330] = {.lex_state = 144}, - [331] = {.lex_state = 144}, - [332] = {.lex_state = 144}, - [333] = {.lex_state = 144}, - [334] = {.lex_state = 140}, - [335] = {.lex_state = 140}, - [336] = {.lex_state = 264}, - [337] = {.lex_state = 264}, - [338] = {.lex_state = 142}, - [339] = {.lex_state = 142}, - [340] = {.lex_state = 140}, - [341] = {.lex_state = 140}, - [342] = {.lex_state = 264}, - [343] = {.lex_state = 264}, - [344] = {.lex_state = 140}, - [345] = {.lex_state = 144}, - [346] = {.lex_state = 140}, - [347] = {.lex_state = 140}, - [348] = {.lex_state = 140}, - [349] = {.lex_state = 140}, - [350] = {.lex_state = 140}, - [351] = {.lex_state = 140}, - [352] = {.lex_state = 140}, - [353] = {.lex_state = 140}, - [354] = {.lex_state = 140}, - [355] = {.lex_state = 140}, - [356] = {.lex_state = 140}, - [357] = {.lex_state = 140}, - [358] = {.lex_state = 140}, - [359] = {.lex_state = 140}, - [360] = {.lex_state = 140}, - [361] = {.lex_state = 140}, - [362] = {.lex_state = 140}, - [363] = {.lex_state = 142}, - [364] = {.lex_state = 140}, - [365] = {.lex_state = 140}, - [366] = {.lex_state = 140}, - [367] = {.lex_state = 140}, - [368] = {.lex_state = 264}, - [369] = {.lex_state = 140}, - [370] = {.lex_state = 140}, - [371] = {.lex_state = 140}, - [372] = {.lex_state = 140}, - [373] = {.lex_state = 140}, - [374] = {.lex_state = 140}, - [375] = {.lex_state = 140}, - [376] = {.lex_state = 140}, - [377] = {.lex_state = 140}, - [378] = {.lex_state = 140}, - [379] = {.lex_state = 140}, - [380] = {.lex_state = 140}, - [381] = {.lex_state = 140}, - [382] = {.lex_state = 140}, - [383] = {.lex_state = 140}, - [384] = {.lex_state = 140}, - [385] = {.lex_state = 140}, - [386] = {.lex_state = 144}, - [387] = {.lex_state = 140}, - [388] = {.lex_state = 140}, - [389] = {.lex_state = 140}, - [390] = {.lex_state = 140}, - [391] = {.lex_state = 140}, - [392] = {.lex_state = 140}, - [393] = {.lex_state = 140}, - [394] = {.lex_state = 144}, - [395] = {.lex_state = 140}, - [396] = {.lex_state = 140}, - [397] = {.lex_state = 140}, - [398] = {.lex_state = 140}, - [399] = {.lex_state = 144}, - [400] = {.lex_state = 140}, - [401] = {.lex_state = 140}, - [402] = {.lex_state = 144}, - [403] = {.lex_state = 140}, - [404] = {.lex_state = 140}, - [405] = {.lex_state = 140}, - [406] = {.lex_state = 140}, - [407] = {.lex_state = 140}, - [408] = {.lex_state = 144}, - [409] = {.lex_state = 140}, - [410] = {.lex_state = 140}, - [411] = {.lex_state = 144}, - [412] = {.lex_state = 140}, - [413] = {.lex_state = 140}, - [414] = {.lex_state = 140}, - [415] = {.lex_state = 140}, - [416] = {.lex_state = 140}, - [417] = {.lex_state = 140}, - [418] = {.lex_state = 140}, - [419] = {.lex_state = 140}, - [420] = {.lex_state = 144}, - [421] = {.lex_state = 144}, - [422] = {.lex_state = 140}, - [423] = {.lex_state = 144}, - [424] = {.lex_state = 140}, - [425] = {.lex_state = 140}, - [426] = {.lex_state = 140}, - [427] = {.lex_state = 140}, - [428] = {.lex_state = 140}, - [429] = {.lex_state = 140}, - [430] = {.lex_state = 140}, - [431] = {.lex_state = 140}, - [432] = {.lex_state = 140}, - [433] = {.lex_state = 140}, - [434] = {.lex_state = 140}, - [435] = {.lex_state = 140}, - [436] = {.lex_state = 264}, - [437] = {.lex_state = 140}, - [438] = {.lex_state = 144}, - [439] = {.lex_state = 144}, - [440] = {.lex_state = 140}, - [441] = {.lex_state = 140}, - [442] = {.lex_state = 140}, - [443] = {.lex_state = 140}, - [444] = {.lex_state = 144}, - [445] = {.lex_state = 140}, - [446] = {.lex_state = 140}, - [447] = {.lex_state = 264}, - [448] = {.lex_state = 144}, - [449] = {.lex_state = 140}, - [450] = {.lex_state = 140}, - [451] = {.lex_state = 140}, - [452] = {.lex_state = 140}, - [453] = {.lex_state = 140}, - [454] = {.lex_state = 140}, - [455] = {.lex_state = 264}, - [456] = {.lex_state = 140}, - [457] = {.lex_state = 140}, - [458] = {.lex_state = 140}, - [459] = {.lex_state = 140}, - [460] = {.lex_state = 140}, - [461] = {.lex_state = 140}, - [462] = {.lex_state = 140}, - [463] = {.lex_state = 140}, - [464] = {.lex_state = 140}, - [465] = {.lex_state = 140}, - [466] = {.lex_state = 140}, - [467] = {.lex_state = 140}, - [468] = {.lex_state = 140}, - [469] = {.lex_state = 140}, - [470] = {.lex_state = 140}, - [471] = {.lex_state = 140}, - [472] = {.lex_state = 140}, - [473] = {.lex_state = 140}, - [474] = {.lex_state = 140}, - [475] = {.lex_state = 140}, - [476] = {.lex_state = 140}, - [477] = {.lex_state = 140}, - [478] = {.lex_state = 142}, - [479] = {.lex_state = 140}, - [480] = {.lex_state = 140}, - [481] = {.lex_state = 144}, - [482] = {.lex_state = 140}, - [483] = {.lex_state = 140}, - [484] = {.lex_state = 144}, - [485] = {.lex_state = 140}, - [486] = {.lex_state = 140}, - [487] = {.lex_state = 140}, - [488] = {.lex_state = 140}, - [489] = {.lex_state = 140}, - [490] = {.lex_state = 264}, - [491] = {.lex_state = 140}, - [492] = {.lex_state = 142}, - [493] = {.lex_state = 140}, - [494] = {.lex_state = 140}, - [495] = {.lex_state = 264}, - [496] = {.lex_state = 140}, - [497] = {.lex_state = 140}, - [498] = {.lex_state = 264}, - [499] = {.lex_state = 140}, - [500] = {.lex_state = 144}, - [501] = {.lex_state = 140}, - [502] = {.lex_state = 140}, - [503] = {.lex_state = 143}, - [504] = {.lex_state = 142}, - [505] = {.lex_state = 142}, - [506] = {.lex_state = 140}, - [507] = {.lex_state = 140}, - [508] = {.lex_state = 140}, - [509] = {.lex_state = 140}, - [510] = {.lex_state = 140}, - [511] = {.lex_state = 140}, - [512] = {.lex_state = 140}, - [513] = {.lex_state = 140}, - [514] = {.lex_state = 140}, - [515] = {.lex_state = 140}, - [516] = {.lex_state = 140}, - [517] = {.lex_state = 140}, - [518] = {.lex_state = 140}, - [519] = {.lex_state = 140}, - [520] = {.lex_state = 140}, - [521] = {.lex_state = 140}, - [522] = {.lex_state = 140}, - [523] = {.lex_state = 140}, - [524] = {.lex_state = 140}, - [525] = {.lex_state = 140}, - [526] = {.lex_state = 264}, - [527] = {.lex_state = 140}, - [528] = {.lex_state = 140}, - [529] = {.lex_state = 140}, - [530] = {.lex_state = 140}, - [531] = {.lex_state = 140}, - [532] = {.lex_state = 140}, - [533] = {.lex_state = 140}, - [534] = {.lex_state = 140}, - [535] = {.lex_state = 140}, - [536] = {.lex_state = 140}, - [537] = {.lex_state = 140}, - [538] = {.lex_state = 140}, - [539] = {.lex_state = 143}, - [540] = {.lex_state = 140}, - [541] = {.lex_state = 140}, - [542] = {.lex_state = 140}, - [543] = {.lex_state = 140}, - [544] = {.lex_state = 140}, - [545] = {.lex_state = 140}, - [546] = {.lex_state = 140}, - [547] = {.lex_state = 140}, - [548] = {.lex_state = 140}, - [549] = {.lex_state = 140}, - [550] = {.lex_state = 140}, - [551] = {.lex_state = 140}, - [552] = {.lex_state = 140}, - [553] = {.lex_state = 140}, - [554] = {.lex_state = 140}, - [555] = {.lex_state = 140}, - [556] = {.lex_state = 264}, - [557] = {.lex_state = 264}, - [558] = {.lex_state = 264}, - [559] = {.lex_state = 264}, - [560] = {.lex_state = 264}, - [561] = {.lex_state = 264}, - [562] = {.lex_state = 264}, - [563] = {.lex_state = 142}, - [564] = {.lex_state = 264}, - [565] = {.lex_state = 142}, - [566] = {.lex_state = 142}, - [567] = {.lex_state = 142}, - [568] = {.lex_state = 264}, - [569] = {.lex_state = 264}, - [570] = {.lex_state = 264}, - [571] = {.lex_state = 142}, - [572] = {.lex_state = 264}, - [573] = {.lex_state = 264}, - [574] = {.lex_state = 264}, - [575] = {.lex_state = 264}, - [576] = {.lex_state = 142}, - [577] = {.lex_state = 264}, - [578] = {.lex_state = 264}, - [579] = {.lex_state = 264}, - [580] = {.lex_state = 142}, - [581] = {.lex_state = 264}, - [582] = {.lex_state = 264}, - [583] = {.lex_state = 142}, - [584] = {.lex_state = 142}, - [585] = {.lex_state = 264}, - [586] = {.lex_state = 264}, - [587] = {.lex_state = 264}, - [588] = {.lex_state = 142}, - [589] = {.lex_state = 142}, - [590] = {.lex_state = 264}, - [591] = {.lex_state = 264}, - [592] = {.lex_state = 142}, - [593] = {.lex_state = 264}, - [594] = {.lex_state = 142}, - [595] = {.lex_state = 264}, - [596] = {.lex_state = 142}, - [597] = {.lex_state = 264}, - [598] = {.lex_state = 264}, - [599] = {.lex_state = 264}, - [600] = {.lex_state = 264}, - [601] = {.lex_state = 142}, - [602] = {.lex_state = 142}, - [603] = {.lex_state = 264}, - [604] = {.lex_state = 264}, - [605] = {.lex_state = 264}, - [606] = {.lex_state = 264}, - [607] = {.lex_state = 264}, - [608] = {.lex_state = 264}, - [609] = {.lex_state = 264}, - [610] = {.lex_state = 264}, - [611] = {.lex_state = 264}, - [612] = {.lex_state = 264}, - [613] = {.lex_state = 142}, - [614] = {.lex_state = 264}, - [615] = {.lex_state = 264}, - [616] = {.lex_state = 264}, - [617] = {.lex_state = 264}, - [618] = {.lex_state = 264}, - [619] = {.lex_state = 264}, - [620] = {.lex_state = 264}, - [621] = {.lex_state = 264}, - [622] = {.lex_state = 142}, - [623] = {.lex_state = 142}, - [624] = {.lex_state = 264}, - [625] = {.lex_state = 264}, - [626] = {.lex_state = 264}, - [627] = {.lex_state = 264}, - [628] = {.lex_state = 264}, - [629] = {.lex_state = 142}, - [630] = {.lex_state = 142}, - [631] = {.lex_state = 142}, - [632] = {.lex_state = 264}, - [633] = {.lex_state = 142}, - [634] = {.lex_state = 142}, - [635] = {.lex_state = 142}, - [636] = {.lex_state = 142}, - [637] = {.lex_state = 264}, - [638] = {.lex_state = 264}, - [639] = {.lex_state = 142}, - [640] = {.lex_state = 142}, - [641] = {.lex_state = 142}, - [642] = {.lex_state = 142}, - [643] = {.lex_state = 142}, - [644] = {.lex_state = 142}, - [645] = {.lex_state = 142}, - [646] = {.lex_state = 142}, - [647] = {.lex_state = 142}, - [648] = {.lex_state = 142}, - [649] = {.lex_state = 142}, - [650] = {.lex_state = 142}, - [651] = {.lex_state = 142}, - [652] = {.lex_state = 142}, - [653] = {.lex_state = 142}, - [654] = {.lex_state = 142}, - [655] = {.lex_state = 142}, - [656] = {.lex_state = 142}, - [657] = {.lex_state = 142}, - [658] = {.lex_state = 142}, - [659] = {.lex_state = 142}, - [660] = {.lex_state = 142}, - [661] = {.lex_state = 142}, - [662] = {.lex_state = 142}, - [663] = {.lex_state = 142}, - [664] = {.lex_state = 142}, - [665] = {.lex_state = 142}, - [666] = {.lex_state = 142}, - [667] = {.lex_state = 264}, - [668] = {.lex_state = 138}, - [669] = {.lex_state = 142}, - [670] = {.lex_state = 142}, - [671] = {.lex_state = 142}, - [672] = {.lex_state = 142}, - [673] = {.lex_state = 264}, - [674] = {.lex_state = 142}, - [675] = {.lex_state = 142}, - [676] = {.lex_state = 142}, - [677] = {.lex_state = 264}, - [678] = {.lex_state = 142}, - [679] = {.lex_state = 264}, - [680] = {.lex_state = 264}, - [681] = {.lex_state = 142}, - [682] = {.lex_state = 264}, - [683] = {.lex_state = 142}, - [684] = {.lex_state = 142}, - [685] = {.lex_state = 142}, - [686] = {.lex_state = 142}, - [687] = {.lex_state = 264}, - [688] = {.lex_state = 264}, - [689] = {.lex_state = 142}, - [690] = {.lex_state = 142}, - [691] = {.lex_state = 142}, - [692] = {.lex_state = 264}, - [693] = {.lex_state = 142}, - [694] = {.lex_state = 142}, - [695] = {.lex_state = 142}, - [696] = {.lex_state = 142}, - [697] = {.lex_state = 264}, - [698] = {.lex_state = 264}, - [699] = {.lex_state = 142}, - [700] = {.lex_state = 142}, - [701] = {.lex_state = 142}, - [702] = {.lex_state = 142}, - [703] = {.lex_state = 142}, - [704] = {.lex_state = 142}, - [705] = {.lex_state = 142}, - [706] = {.lex_state = 142}, - [707] = {.lex_state = 264}, - [708] = {.lex_state = 264}, - [709] = {.lex_state = 142}, - [710] = {.lex_state = 142}, - [711] = {.lex_state = 142}, - [712] = {.lex_state = 142}, - [713] = {.lex_state = 142}, - [714] = {.lex_state = 142}, - [715] = {.lex_state = 142}, - [716] = {.lex_state = 264}, - [717] = {.lex_state = 264}, - [718] = {.lex_state = 142}, - [719] = {.lex_state = 142}, - [720] = {.lex_state = 264}, - [721] = {.lex_state = 142}, - [722] = {.lex_state = 142}, - [723] = {.lex_state = 142}, - [724] = {.lex_state = 142}, - [725] = {.lex_state = 142}, - [726] = {.lex_state = 142}, - [727] = {.lex_state = 142}, - [728] = {.lex_state = 142}, - [729] = {.lex_state = 264}, - [730] = {.lex_state = 264}, - [731] = {.lex_state = 142}, - [732] = {.lex_state = 142}, - [733] = {.lex_state = 142}, - [734] = {.lex_state = 142}, - [735] = {.lex_state = 142}, - [736] = {.lex_state = 142}, - [737] = {.lex_state = 142}, - [738] = {.lex_state = 142}, - [739] = {.lex_state = 142}, - [740] = {.lex_state = 264}, - [741] = {.lex_state = 264}, - [742] = {.lex_state = 264}, - [743] = {.lex_state = 264}, - [744] = {.lex_state = 264}, - [745] = {.lex_state = 264}, - [746] = {.lex_state = 264}, - [747] = {.lex_state = 264}, - [748] = {.lex_state = 264}, - [749] = {.lex_state = 264}, - [750] = {.lex_state = 264}, - [751] = {.lex_state = 264}, - [752] = {.lex_state = 142}, - [753] = {.lex_state = 142}, - [754] = {.lex_state = 264}, - [755] = {.lex_state = 264}, - [756] = {.lex_state = 264}, - [757] = {.lex_state = 264}, - [758] = {.lex_state = 264}, - [759] = {.lex_state = 264}, - [760] = {.lex_state = 264}, - [761] = {.lex_state = 264}, - [762] = {.lex_state = 264}, - [763] = {.lex_state = 264}, - [764] = {.lex_state = 264}, - [765] = {.lex_state = 264}, - [766] = {.lex_state = 264}, - [767] = {.lex_state = 264}, - [768] = {.lex_state = 264}, - [769] = {.lex_state = 142}, - [770] = {.lex_state = 142}, - [771] = {.lex_state = 264}, - [772] = {.lex_state = 264}, - [773] = {.lex_state = 264}, - [774] = {.lex_state = 264}, - [775] = {.lex_state = 264}, - [776] = {.lex_state = 264}, - [777] = {.lex_state = 264}, - [778] = {.lex_state = 264}, - [779] = {.lex_state = 264}, - [780] = {.lex_state = 264}, - [781] = {.lex_state = 264}, - [782] = {.lex_state = 264}, - [783] = {.lex_state = 264}, - [784] = {.lex_state = 142}, - [785] = {.lex_state = 264}, - [786] = {.lex_state = 142}, - [787] = {.lex_state = 264}, - [788] = {.lex_state = 264}, - [789] = {.lex_state = 264}, - [790] = {.lex_state = 264}, - [791] = {.lex_state = 264}, - [792] = {.lex_state = 264}, - [793] = {.lex_state = 142}, - [794] = {.lex_state = 264}, - [795] = {.lex_state = 264}, - [796] = {.lex_state = 264}, - [797] = {.lex_state = 264}, - [798] = {.lex_state = 264}, - [799] = {.lex_state = 264}, - [800] = {.lex_state = 264}, - [801] = {.lex_state = 142}, - [802] = {.lex_state = 264}, - [803] = {.lex_state = 264}, - [804] = {.lex_state = 264}, - [805] = {.lex_state = 264}, - [806] = {.lex_state = 264}, - [807] = {.lex_state = 264}, - [808] = {.lex_state = 264}, - [809] = {.lex_state = 264}, - [810] = {.lex_state = 264}, - [811] = {.lex_state = 264}, - [812] = {.lex_state = 264}, - [813] = {.lex_state = 264}, - [814] = {.lex_state = 264}, - [815] = {.lex_state = 264}, - [816] = {.lex_state = 264}, - [817] = {.lex_state = 264}, - [818] = {.lex_state = 264}, - [819] = {.lex_state = 264}, - [820] = {.lex_state = 264}, - [821] = {.lex_state = 264}, - [822] = {.lex_state = 264}, - [823] = {.lex_state = 142}, - [824] = {.lex_state = 264}, - [825] = {.lex_state = 264}, - [826] = {.lex_state = 264}, - [827] = {.lex_state = 264}, - [828] = {.lex_state = 264}, - [829] = {.lex_state = 264}, - [830] = {.lex_state = 264}, - [831] = {.lex_state = 264}, - [832] = {.lex_state = 264}, - [833] = {.lex_state = 264}, - [834] = {.lex_state = 264}, - [835] = {.lex_state = 264}, - [836] = {.lex_state = 264}, - [837] = {.lex_state = 264}, - [838] = {.lex_state = 264}, - [839] = {.lex_state = 264}, - [840] = {.lex_state = 264}, - [841] = {.lex_state = 264}, - [842] = {.lex_state = 264}, - [843] = {.lex_state = 142}, - [844] = {.lex_state = 264}, - [845] = {.lex_state = 264}, - [846] = {.lex_state = 264}, - [847] = {.lex_state = 264}, - [848] = {.lex_state = 264}, - [849] = {.lex_state = 264}, - [850] = {.lex_state = 264}, - [851] = {.lex_state = 264}, - [852] = {.lex_state = 264}, - [853] = {.lex_state = 264}, - [854] = {.lex_state = 264}, - [855] = {.lex_state = 264}, - [856] = {.lex_state = 264}, - [857] = {.lex_state = 264}, - [858] = {.lex_state = 264}, - [859] = {.lex_state = 264}, - [860] = {.lex_state = 264}, - [861] = {.lex_state = 264}, - [862] = {.lex_state = 264}, - [863] = {.lex_state = 264}, - [864] = {.lex_state = 264}, - [865] = {.lex_state = 264}, - [866] = {.lex_state = 264}, - [867] = {.lex_state = 264}, - [868] = {.lex_state = 264}, - [869] = {.lex_state = 264}, - [870] = {.lex_state = 264}, - [871] = {.lex_state = 264}, - [872] = {.lex_state = 136}, - [873] = {.lex_state = 264}, - [874] = {.lex_state = 264}, - [875] = {.lex_state = 264}, - [876] = {.lex_state = 264}, - [877] = {.lex_state = 264}, - [878] = {.lex_state = 264}, - [879] = {.lex_state = 264}, - [880] = {.lex_state = 264}, - [881] = {.lex_state = 264}, - [882] = {.lex_state = 264}, - [883] = {.lex_state = 264}, - [884] = {.lex_state = 264}, - [885] = {.lex_state = 264}, - [886] = {.lex_state = 264}, - [887] = {.lex_state = 264}, - [888] = {.lex_state = 264}, - [889] = {.lex_state = 264}, - [890] = {.lex_state = 264}, - [891] = {.lex_state = 264}, - [892] = {.lex_state = 264}, - [893] = {.lex_state = 264}, - [894] = {.lex_state = 264}, - [895] = {.lex_state = 264}, - [896] = {.lex_state = 264}, - [897] = {.lex_state = 138}, - [898] = {.lex_state = 264}, - [899] = {.lex_state = 264}, - [900] = {.lex_state = 264}, - [901] = {.lex_state = 264}, - [902] = {.lex_state = 264}, - [903] = {.lex_state = 264}, - [904] = {.lex_state = 264}, - [905] = {.lex_state = 264}, - [906] = {.lex_state = 264}, - [907] = {.lex_state = 264}, - [908] = {.lex_state = 264}, - [909] = {.lex_state = 264}, - [910] = {.lex_state = 264}, - [911] = {.lex_state = 264}, - [912] = {.lex_state = 264}, - [913] = {.lex_state = 264}, - [914] = {.lex_state = 142}, - [915] = {.lex_state = 264}, - [916] = {.lex_state = 264}, - [917] = {.lex_state = 264}, - [918] = {.lex_state = 264}, - [919] = {.lex_state = 264}, - [920] = {.lex_state = 264}, - [921] = {.lex_state = 264}, - [922] = {.lex_state = 264}, - [923] = {.lex_state = 264}, - [924] = {.lex_state = 264}, - [925] = {.lex_state = 142}, - [926] = {.lex_state = 264}, - [927] = {.lex_state = 264}, - [928] = {.lex_state = 264}, - [929] = {.lex_state = 264}, - [930] = {.lex_state = 264}, - [931] = {.lex_state = 264}, - [932] = {.lex_state = 264}, - [933] = {.lex_state = 142}, - [934] = {.lex_state = 264}, - [935] = {.lex_state = 142}, - [936] = {.lex_state = 264}, - [937] = {.lex_state = 264}, - [938] = {.lex_state = 264}, - [939] = {.lex_state = 264}, - [940] = {.lex_state = 264}, - [941] = {.lex_state = 264}, - [942] = {.lex_state = 264}, - [943] = {.lex_state = 264}, - [944] = {.lex_state = 264}, - [945] = {.lex_state = 264}, - [946] = {.lex_state = 264}, - [947] = {.lex_state = 264}, - [948] = {.lex_state = 264}, - [949] = {.lex_state = 264}, - [950] = {.lex_state = 264}, - [951] = {.lex_state = 264}, - [952] = {.lex_state = 264}, - [953] = {.lex_state = 142}, - [954] = {.lex_state = 264}, - [955] = {.lex_state = 264}, - [956] = {.lex_state = 264}, - [957] = {.lex_state = 264}, - [958] = {.lex_state = 264}, - [959] = {.lex_state = 264}, - [960] = {.lex_state = 264}, - [961] = {.lex_state = 264}, - [962] = {.lex_state = 264}, - [963] = {.lex_state = 264}, - [964] = {.lex_state = 264}, - [965] = {.lex_state = 264}, - [966] = {.lex_state = 142}, - [967] = {.lex_state = 142}, - [968] = {.lex_state = 142}, - [969] = {.lex_state = 264}, - [970] = {.lex_state = 264}, - [971] = {.lex_state = 142}, - [972] = {.lex_state = 142}, - [973] = {.lex_state = 142}, - [974] = {.lex_state = 264}, - [975] = {.lex_state = 264}, - [976] = {.lex_state = 264}, - [977] = {.lex_state = 264}, - [978] = {.lex_state = 264}, - [979] = {.lex_state = 264}, - [980] = {.lex_state = 264}, - [981] = {.lex_state = 142}, - [982] = {.lex_state = 264}, - [983] = {.lex_state = 264}, - [984] = {.lex_state = 264}, - [985] = {.lex_state = 264}, - [986] = {.lex_state = 264}, - [987] = {.lex_state = 264}, - [988] = {.lex_state = 264}, - [989] = {.lex_state = 264}, - [990] = {.lex_state = 264}, - [991] = {.lex_state = 264}, - [992] = {.lex_state = 264}, - [993] = {.lex_state = 264}, - [994] = {.lex_state = 142}, - [995] = {.lex_state = 142}, - [996] = {.lex_state = 142}, - [997] = {.lex_state = 264}, - [998] = {.lex_state = 142}, - [999] = {.lex_state = 264}, - [1000] = {.lex_state = 264}, - [1001] = {.lex_state = 264}, - [1002] = {.lex_state = 264}, - [1003] = {.lex_state = 142}, - [1004] = {.lex_state = 142}, - [1005] = {.lex_state = 264}, - [1006] = {.lex_state = 264}, - [1007] = {.lex_state = 142}, - [1008] = {.lex_state = 142}, - [1009] = {.lex_state = 142}, - [1010] = {.lex_state = 264}, - [1011] = {.lex_state = 142}, - [1012] = {.lex_state = 264}, - [1013] = {.lex_state = 264}, - [1014] = {.lex_state = 142}, - [1015] = {.lex_state = 142}, - [1016] = {.lex_state = 264}, - [1017] = {.lex_state = 142}, - [1018] = {.lex_state = 142}, - [1019] = {.lex_state = 264}, - [1020] = {.lex_state = 142}, - [1021] = {.lex_state = 264}, - [1022] = {.lex_state = 142}, - [1023] = {.lex_state = 264}, - [1024] = {.lex_state = 264}, - [1025] = {.lex_state = 264}, - [1026] = {.lex_state = 264}, - [1027] = {.lex_state = 142}, - [1028] = {.lex_state = 264}, - [1029] = {.lex_state = 264}, - [1030] = {.lex_state = 142}, - [1031] = {.lex_state = 142}, - [1032] = {.lex_state = 142}, - [1033] = {.lex_state = 264}, - [1034] = {.lex_state = 264}, - [1035] = {.lex_state = 264}, - [1036] = {.lex_state = 264}, - [1037] = {.lex_state = 264}, - [1038] = {.lex_state = 264}, - [1039] = {.lex_state = 264}, - [1040] = {.lex_state = 142}, - [1041] = {.lex_state = 264}, - [1042] = {.lex_state = 264}, - [1043] = {.lex_state = 142}, - [1044] = {.lex_state = 264}, - [1045] = {.lex_state = 264}, - [1046] = {.lex_state = 142}, - [1047] = {.lex_state = 142}, - [1048] = {.lex_state = 264}, - [1049] = {.lex_state = 142}, - [1050] = {.lex_state = 264}, - [1051] = {.lex_state = 264}, - [1052] = {.lex_state = 264}, - [1053] = {.lex_state = 264}, - [1054] = {.lex_state = 264}, - [1055] = {.lex_state = 264}, - [1056] = {.lex_state = 142}, - [1057] = {.lex_state = 264}, - [1058] = {.lex_state = 264}, - [1059] = {.lex_state = 142}, - [1060] = {.lex_state = 142}, - [1061] = {.lex_state = 142}, - [1062] = {.lex_state = 142}, - [1063] = {.lex_state = 142}, - [1064] = {.lex_state = 264}, - [1065] = {.lex_state = 142}, - [1066] = {.lex_state = 264}, - [1067] = {.lex_state = 142}, - [1068] = {.lex_state = 264}, - [1069] = {.lex_state = 264}, - [1070] = {.lex_state = 264}, - [1071] = {.lex_state = 264}, - [1072] = {.lex_state = 142}, - [1073] = {.lex_state = 142}, - [1074] = {.lex_state = 142}, - [1075] = {.lex_state = 142}, - [1076] = {.lex_state = 142}, - [1077] = {.lex_state = 142}, - [1078] = {.lex_state = 142}, - [1079] = {.lex_state = 142}, - [1080] = {.lex_state = 142}, - [1081] = {.lex_state = 142}, - [1082] = {.lex_state = 142}, - [1083] = {.lex_state = 142}, - [1084] = {.lex_state = 142}, - [1085] = {.lex_state = 142}, - [1086] = {.lex_state = 142}, - [1087] = {.lex_state = 264}, - [1088] = {.lex_state = 142}, - [1089] = {.lex_state = 264}, - [1090] = {.lex_state = 264}, - [1091] = {.lex_state = 264}, - [1092] = {.lex_state = 264}, - [1093] = {.lex_state = 264}, - [1094] = {.lex_state = 264}, - [1095] = {.lex_state = 264}, - [1096] = {.lex_state = 264}, - [1097] = {.lex_state = 141}, - [1098] = {.lex_state = 141}, - [1099] = {.lex_state = 141}, - [1100] = {.lex_state = 141}, - [1101] = {.lex_state = 141}, - [1102] = {.lex_state = 137}, - [1103] = {.lex_state = 141}, - [1104] = {.lex_state = 141}, - [1105] = {.lex_state = 141}, - [1106] = {.lex_state = 141}, - [1107] = {.lex_state = 141}, - [1108] = {.lex_state = 141}, - [1109] = {.lex_state = 141}, - [1110] = {.lex_state = 141}, - [1111] = {.lex_state = 141}, - [1112] = {.lex_state = 141}, - [1113] = {.lex_state = 136}, - [1114] = {.lex_state = 141}, - [1115] = {.lex_state = 141}, - [1116] = {.lex_state = 141}, - [1117] = {.lex_state = 136}, - [1118] = {.lex_state = 197}, - [1119] = {.lex_state = 197}, - [1120] = {.lex_state = 197}, - [1121] = {.lex_state = 197}, - [1122] = {.lex_state = 197}, - [1123] = {.lex_state = 197}, - [1124] = {.lex_state = 197}, - [1125] = {.lex_state = 197}, - [1126] = {.lex_state = 197}, - [1127] = {.lex_state = 197}, - [1128] = {.lex_state = 197}, - [1129] = {.lex_state = 197}, - [1130] = {.lex_state = 197}, - [1131] = {.lex_state = 197}, - [1132] = {.lex_state = 264}, - [1133] = {.lex_state = 264}, - [1134] = {.lex_state = 143}, - [1135] = {.lex_state = 143}, - [1136] = {.lex_state = 264}, - [1137] = {.lex_state = 141}, - [1138] = {.lex_state = 144}, - [1139] = {.lex_state = 144}, - [1140] = {.lex_state = 144}, - [1141] = {.lex_state = 144}, - [1142] = {.lex_state = 144}, - [1143] = {.lex_state = 144}, - [1144] = {.lex_state = 144}, - [1145] = {.lex_state = 144}, - [1146] = {.lex_state = 144}, - [1147] = {.lex_state = 144}, - [1148] = {.lex_state = 144}, - [1149] = {.lex_state = 144}, - [1150] = {.lex_state = 141}, - [1151] = {.lex_state = 144}, - [1152] = {.lex_state = 144}, - [1153] = {.lex_state = 144}, - [1154] = {.lex_state = 197}, - [1155] = {.lex_state = 144}, - [1156] = {.lex_state = 144}, - [1157] = {.lex_state = 144}, - [1158] = {.lex_state = 144}, - [1159] = {.lex_state = 144}, - [1160] = {.lex_state = 144}, - [1161] = {.lex_state = 144}, - [1162] = {.lex_state = 144}, - [1163] = {.lex_state = 144}, - [1164] = {.lex_state = 144}, - [1165] = {.lex_state = 144}, - [1166] = {.lex_state = 144}, - [1167] = {.lex_state = 144}, - [1168] = {.lex_state = 144}, - [1169] = {.lex_state = 144}, - [1170] = {.lex_state = 144}, - [1171] = {.lex_state = 144}, - [1172] = {.lex_state = 144}, - [1173] = {.lex_state = 144}, - [1174] = {.lex_state = 141}, - [1175] = {.lex_state = 144}, - [1176] = {.lex_state = 144}, - [1177] = {.lex_state = 141}, - [1178] = {.lex_state = 144}, - [1179] = {.lex_state = 144}, - [1180] = {.lex_state = 144}, - [1181] = {.lex_state = 141}, - [1182] = {.lex_state = 144}, - [1183] = {.lex_state = 144}, - [1184] = {.lex_state = 141}, - [1185] = {.lex_state = 141}, - [1186] = {.lex_state = 141}, - [1187] = {.lex_state = 144}, - [1188] = {.lex_state = 141}, - [1189] = {.lex_state = 141}, - [1190] = {.lex_state = 144}, - [1191] = {.lex_state = 144}, - [1192] = {.lex_state = 144}, - [1193] = {.lex_state = 141}, - [1194] = {.lex_state = 141}, - [1195] = {.lex_state = 141}, - [1196] = {.lex_state = 141}, - [1197] = {.lex_state = 141}, - [1198] = {.lex_state = 141}, - [1199] = {.lex_state = 141}, - [1200] = {.lex_state = 141}, - [1201] = {.lex_state = 141}, - [1202] = {.lex_state = 141}, - [1203] = {.lex_state = 141}, - [1204] = {.lex_state = 144}, - [1205] = {.lex_state = 141}, - [1206] = {.lex_state = 141}, - [1207] = {.lex_state = 141}, - [1208] = {.lex_state = 141}, - [1209] = {.lex_state = 141}, - [1210] = {.lex_state = 141}, - [1211] = {.lex_state = 141}, - [1212] = {.lex_state = 144}, - [1213] = {.lex_state = 141}, - [1214] = {.lex_state = 144}, - [1215] = {.lex_state = 141}, - [1216] = {.lex_state = 141}, - [1217] = {.lex_state = 141}, - [1218] = {.lex_state = 144}, - [1219] = {.lex_state = 144}, - [1220] = {.lex_state = 144}, - [1221] = {.lex_state = 141}, - [1222] = {.lex_state = 141}, - [1223] = {.lex_state = 144}, - [1224] = {.lex_state = 141}, - [1225] = {.lex_state = 141}, - [1226] = {.lex_state = 141}, - [1227] = {.lex_state = 141}, - [1228] = {.lex_state = 141}, - [1229] = {.lex_state = 141}, - [1230] = {.lex_state = 141}, - [1231] = {.lex_state = 141}, - [1232] = {.lex_state = 141}, - [1233] = {.lex_state = 141}, - [1234] = {.lex_state = 141}, - [1235] = {.lex_state = 141}, - [1236] = {.lex_state = 141}, - [1237] = {.lex_state = 141}, - [1238] = {.lex_state = 141}, - [1239] = {.lex_state = 141}, - [1240] = {.lex_state = 141}, - [1241] = {.lex_state = 141}, - [1242] = {.lex_state = 141}, - [1243] = {.lex_state = 141}, - [1244] = {.lex_state = 141}, - [1245] = {.lex_state = 141}, - [1246] = {.lex_state = 141}, - [1247] = {.lex_state = 141}, - [1248] = {.lex_state = 141}, - [1249] = {.lex_state = 141}, - [1250] = {.lex_state = 141}, - [1251] = {.lex_state = 141}, - [1252] = {.lex_state = 141}, - [1253] = {.lex_state = 141}, - [1254] = {.lex_state = 141}, - [1255] = {.lex_state = 141}, - [1256] = {.lex_state = 141}, - [1257] = {.lex_state = 141}, - [1258] = {.lex_state = 141}, - [1259] = {.lex_state = 141}, - [1260] = {.lex_state = 141}, - [1261] = {.lex_state = 141}, - [1262] = {.lex_state = 141}, - [1263] = {.lex_state = 141}, - [1264] = {.lex_state = 141}, - [1265] = {.lex_state = 141}, - [1266] = {.lex_state = 141}, - [1267] = {.lex_state = 141}, - [1268] = {.lex_state = 141}, - [1269] = {.lex_state = 141}, - [1270] = {.lex_state = 141}, - [1271] = {.lex_state = 141}, - [1272] = {.lex_state = 141}, - [1273] = {.lex_state = 141}, - [1274] = {.lex_state = 141}, - [1275] = {.lex_state = 141}, - [1276] = {.lex_state = 141}, - [1277] = {.lex_state = 141}, - [1278] = {.lex_state = 141}, - [1279] = {.lex_state = 141}, - [1280] = {.lex_state = 141}, - [1281] = {.lex_state = 141}, - [1282] = {.lex_state = 141}, - [1283] = {.lex_state = 141}, - [1284] = {.lex_state = 144}, - [1285] = {.lex_state = 141}, - [1286] = {.lex_state = 141}, - [1287] = {.lex_state = 141}, - [1288] = {.lex_state = 141}, - [1289] = {.lex_state = 141}, - [1290] = {.lex_state = 141}, - [1291] = {.lex_state = 141}, - [1292] = {.lex_state = 141}, - [1293] = {.lex_state = 141}, - [1294] = {.lex_state = 141}, - [1295] = {.lex_state = 141}, - [1296] = {.lex_state = 141}, - [1297] = {.lex_state = 141}, - [1298] = {.lex_state = 141}, - [1299] = {.lex_state = 141}, - [1300] = {.lex_state = 141}, - [1301] = {.lex_state = 141}, - [1302] = {.lex_state = 141}, - [1303] = {.lex_state = 141}, - [1304] = {.lex_state = 141}, - [1305] = {.lex_state = 141}, - [1306] = {.lex_state = 141}, - [1307] = {.lex_state = 141}, - [1308] = {.lex_state = 141}, - [1309] = {.lex_state = 141}, - [1310] = {.lex_state = 141}, - [1311] = {.lex_state = 141}, - [1312] = {.lex_state = 141}, - [1313] = {.lex_state = 141}, - [1314] = {.lex_state = 141}, - [1315] = {.lex_state = 141}, - [1316] = {.lex_state = 144}, - [1317] = {.lex_state = 144}, - [1318] = {.lex_state = 144}, - [1319] = {.lex_state = 144}, - [1320] = {.lex_state = 144}, - [1321] = {.lex_state = 144}, - [1322] = {.lex_state = 144}, - [1323] = {.lex_state = 144}, - [1324] = {.lex_state = 144}, - [1325] = {.lex_state = 144}, - [1326] = {.lex_state = 144}, - [1327] = {.lex_state = 144}, - [1328] = {.lex_state = 144}, - [1329] = {.lex_state = 144}, - [1330] = {.lex_state = 144}, - [1331] = {.lex_state = 143}, - [1332] = {.lex_state = 143}, - [1333] = {.lex_state = 143}, - [1334] = {.lex_state = 144}, - [1335] = {.lex_state = 143}, - [1336] = {.lex_state = 143}, - [1337] = {.lex_state = 144}, - [1338] = {.lex_state = 144}, - [1339] = {.lex_state = 144}, - [1340] = {.lex_state = 144}, - [1341] = {.lex_state = 144}, - [1342] = {.lex_state = 144}, - [1343] = {.lex_state = 144}, - [1344] = {.lex_state = 144}, - [1345] = {.lex_state = 144}, - [1346] = {.lex_state = 144}, - [1347] = {.lex_state = 144}, - [1348] = {.lex_state = 144}, - [1349] = {.lex_state = 144}, - [1350] = {.lex_state = 144}, - [1351] = {.lex_state = 144}, - [1352] = {.lex_state = 144}, - [1353] = {.lex_state = 143}, - [1354] = {.lex_state = 144}, - [1355] = {.lex_state = 144}, - [1356] = {.lex_state = 143}, - [1357] = {.lex_state = 144}, - [1358] = {.lex_state = 144}, - [1359] = {.lex_state = 143}, - [1360] = {.lex_state = 143}, - [1361] = {.lex_state = 144}, - [1362] = {.lex_state = 143}, - [1363] = {.lex_state = 144}, - [1364] = {.lex_state = 143}, - [1365] = {.lex_state = 144}, - [1366] = {.lex_state = 143}, - [1367] = {.lex_state = 143}, - [1368] = {.lex_state = 144}, - [1369] = {.lex_state = 144}, - [1370] = {.lex_state = 143}, - [1371] = {.lex_state = 143}, - [1372] = {.lex_state = 144}, - [1373] = {.lex_state = 143}, - [1374] = {.lex_state = 143}, - [1375] = {.lex_state = 144}, - [1376] = {.lex_state = 144}, - [1377] = {.lex_state = 143}, - [1378] = {.lex_state = 144}, - [1379] = {.lex_state = 144}, - [1380] = {.lex_state = 144}, - [1381] = {.lex_state = 144}, - [1382] = {.lex_state = 144}, - [1383] = {.lex_state = 144}, - [1384] = {.lex_state = 144}, - [1385] = {.lex_state = 144}, - [1386] = {.lex_state = 144}, - [1387] = {.lex_state = 144}, - [1388] = {.lex_state = 144}, - [1389] = {.lex_state = 144}, - [1390] = {.lex_state = 144}, - [1391] = {.lex_state = 144}, - [1392] = {.lex_state = 144}, - [1393] = {.lex_state = 144}, - [1394] = {.lex_state = 144}, - [1395] = {.lex_state = 144}, - [1396] = {.lex_state = 144}, - [1397] = {.lex_state = 144}, - [1398] = {.lex_state = 144}, - [1399] = {.lex_state = 144}, - [1400] = {.lex_state = 144}, - [1401] = {.lex_state = 144}, - [1402] = {.lex_state = 144}, - [1403] = {.lex_state = 144}, - [1404] = {.lex_state = 144}, - [1405] = {.lex_state = 144}, - [1406] = {.lex_state = 144}, - [1407] = {.lex_state = 144}, - [1408] = {.lex_state = 144}, - [1409] = {.lex_state = 144}, - [1410] = {.lex_state = 144}, - [1411] = {.lex_state = 144}, - [1412] = {.lex_state = 144}, - [1413] = {.lex_state = 144}, - [1414] = {.lex_state = 144}, - [1415] = {.lex_state = 144}, - [1416] = {.lex_state = 144}, - [1417] = {.lex_state = 144}, - [1418] = {.lex_state = 144}, - [1419] = {.lex_state = 144}, - [1420] = {.lex_state = 144}, - [1421] = {.lex_state = 144}, - [1422] = {.lex_state = 144}, - [1423] = {.lex_state = 144}, - [1424] = {.lex_state = 144}, - [1425] = {.lex_state = 144}, - [1426] = {.lex_state = 144}, - [1427] = {.lex_state = 144}, - [1428] = {.lex_state = 144}, - [1429] = {.lex_state = 144}, - [1430] = {.lex_state = 144}, - [1431] = {.lex_state = 144}, - [1432] = {.lex_state = 144}, - [1433] = {.lex_state = 144}, - [1434] = {.lex_state = 144}, - [1435] = {.lex_state = 144}, - [1436] = {.lex_state = 144}, - [1437] = {.lex_state = 144}, - [1438] = {.lex_state = 144}, - [1439] = {.lex_state = 144}, - [1440] = {.lex_state = 144}, - [1441] = {.lex_state = 144}, - [1442] = {.lex_state = 144}, - [1443] = {.lex_state = 144}, - [1444] = {.lex_state = 144}, - [1445] = {.lex_state = 144}, - [1446] = {.lex_state = 144}, - [1447] = {.lex_state = 144}, - [1448] = {.lex_state = 144}, - [1449] = {.lex_state = 144}, - [1450] = {.lex_state = 144}, - [1451] = {.lex_state = 144}, - [1452] = {.lex_state = 144}, - [1453] = {.lex_state = 144}, - [1454] = {.lex_state = 144}, - [1455] = {.lex_state = 144}, - [1456] = {.lex_state = 144}, - [1457] = {.lex_state = 144}, - [1458] = {.lex_state = 144}, - [1459] = {.lex_state = 144}, - [1460] = {.lex_state = 144}, - [1461] = {.lex_state = 144}, - [1462] = {.lex_state = 144}, - [1463] = {.lex_state = 144}, - [1464] = {.lex_state = 144}, - [1465] = {.lex_state = 144}, - [1466] = {.lex_state = 144}, - [1467] = {.lex_state = 144}, - [1468] = {.lex_state = 144}, - [1469] = {.lex_state = 144}, - [1470] = {.lex_state = 144}, - [1471] = {.lex_state = 144}, - [1472] = {.lex_state = 144}, - [1473] = {.lex_state = 144}, - [1474] = {.lex_state = 144}, - [1475] = {.lex_state = 144}, - [1476] = {.lex_state = 144}, - [1477] = {.lex_state = 144}, - [1478] = {.lex_state = 144}, - [1479] = {.lex_state = 144}, - [1480] = {.lex_state = 144}, - [1481] = {.lex_state = 144}, - [1482] = {.lex_state = 144}, - [1483] = {.lex_state = 144}, - [1484] = {.lex_state = 144}, - [1485] = {.lex_state = 144}, - [1486] = {.lex_state = 144}, - [1487] = {.lex_state = 144}, - [1488] = {.lex_state = 144}, - [1489] = {.lex_state = 144}, - [1490] = {.lex_state = 144}, - [1491] = {.lex_state = 144}, - [1492] = {.lex_state = 144}, - [1493] = {.lex_state = 144}, - [1494] = {.lex_state = 144}, - [1495] = {.lex_state = 144}, - [1496] = {.lex_state = 144}, - [1497] = {.lex_state = 144}, - [1498] = {.lex_state = 144}, - [1499] = {.lex_state = 144}, - [1500] = {.lex_state = 144}, - [1501] = {.lex_state = 144}, - [1502] = {.lex_state = 144}, - [1503] = {.lex_state = 144}, - [1504] = {.lex_state = 144}, - [1505] = {.lex_state = 144}, - [1506] = {.lex_state = 144}, - [1507] = {.lex_state = 144}, - [1508] = {.lex_state = 144}, - [1509] = {.lex_state = 144}, - [1510] = {.lex_state = 144}, - [1511] = {.lex_state = 144}, - [1512] = {.lex_state = 144}, - [1513] = {.lex_state = 144}, - [1514] = {.lex_state = 144}, - [1515] = {.lex_state = 144}, - [1516] = {.lex_state = 144}, - [1517] = {.lex_state = 144}, - [1518] = {.lex_state = 144}, - [1519] = {.lex_state = 144}, - [1520] = {.lex_state = 144}, - [1521] = {.lex_state = 144}, - [1522] = {.lex_state = 144}, - [1523] = {.lex_state = 144}, - [1524] = {.lex_state = 144}, - [1525] = {.lex_state = 144}, - [1526] = {.lex_state = 144}, - [1527] = {.lex_state = 144}, - [1528] = {.lex_state = 144}, - [1529] = {.lex_state = 144}, - [1530] = {.lex_state = 144}, - [1531] = {.lex_state = 144}, - [1532] = {.lex_state = 144}, - [1533] = {.lex_state = 144}, - [1534] = {.lex_state = 144}, - [1535] = {.lex_state = 144}, - [1536] = {.lex_state = 144}, - [1537] = {.lex_state = 144}, - [1538] = {.lex_state = 144}, - [1539] = {.lex_state = 144}, - [1540] = {.lex_state = 144}, - [1541] = {.lex_state = 144}, - [1542] = {.lex_state = 144}, - [1543] = {.lex_state = 144}, - [1544] = {.lex_state = 144}, - [1545] = {.lex_state = 144}, - [1546] = {.lex_state = 144}, - [1547] = {.lex_state = 144}, - [1548] = {.lex_state = 144}, - [1549] = {.lex_state = 144}, - [1550] = {.lex_state = 144}, - [1551] = {.lex_state = 144}, - [1552] = {.lex_state = 144}, - [1553] = {.lex_state = 144}, - [1554] = {.lex_state = 144}, - [1555] = {.lex_state = 144}, - [1556] = {.lex_state = 144}, - [1557] = {.lex_state = 144}, - [1558] = {.lex_state = 144}, - [1559] = {.lex_state = 144}, - [1560] = {.lex_state = 144}, - [1561] = {.lex_state = 144}, - [1562] = {.lex_state = 144}, - [1563] = {.lex_state = 144}, - [1564] = {.lex_state = 144}, - [1565] = {.lex_state = 144}, - [1566] = {.lex_state = 144}, - [1567] = {.lex_state = 144}, - [1568] = {.lex_state = 144}, - [1569] = {.lex_state = 144}, - [1570] = {.lex_state = 144}, - [1571] = {.lex_state = 144}, - [1572] = {.lex_state = 144}, - [1573] = {.lex_state = 144}, - [1574] = {.lex_state = 144}, - [1575] = {.lex_state = 144}, - [1576] = {.lex_state = 144}, - [1577] = {.lex_state = 144}, - [1578] = {.lex_state = 144}, - [1579] = {.lex_state = 144}, - [1580] = {.lex_state = 144}, - [1581] = {.lex_state = 144}, - [1582] = {.lex_state = 144}, - [1583] = {.lex_state = 144}, - [1584] = {.lex_state = 144}, - [1585] = {.lex_state = 144}, - [1586] = {.lex_state = 144}, - [1587] = {.lex_state = 144}, - [1588] = {.lex_state = 144}, - [1589] = {.lex_state = 144}, - [1590] = {.lex_state = 144}, - [1591] = {.lex_state = 144}, - [1592] = {.lex_state = 144}, - [1593] = {.lex_state = 144}, - [1594] = {.lex_state = 144}, - [1595] = {.lex_state = 144}, - [1596] = {.lex_state = 144}, - [1597] = {.lex_state = 144}, - [1598] = {.lex_state = 144}, - [1599] = {.lex_state = 144}, - [1600] = {.lex_state = 144}, - [1601] = {.lex_state = 144}, - [1602] = {.lex_state = 144}, - [1603] = {.lex_state = 144}, - [1604] = {.lex_state = 144}, - [1605] = {.lex_state = 144}, - [1606] = {.lex_state = 144}, - [1607] = {.lex_state = 144}, - [1608] = {.lex_state = 144}, - [1609] = {.lex_state = 144}, - [1610] = {.lex_state = 144}, - [1611] = {.lex_state = 144}, - [1612] = {.lex_state = 144}, - [1613] = {.lex_state = 144}, - [1614] = {.lex_state = 144}, - [1615] = {.lex_state = 144}, - [1616] = {.lex_state = 144}, - [1617] = {.lex_state = 144}, - [1618] = {.lex_state = 144}, - [1619] = {.lex_state = 144}, - [1620] = {.lex_state = 144}, - [1621] = {.lex_state = 144}, - [1622] = {.lex_state = 144}, - [1623] = {.lex_state = 144}, - [1624] = {.lex_state = 144}, - [1625] = {.lex_state = 144}, - [1626] = {.lex_state = 144}, - [1627] = {.lex_state = 144}, - [1628] = {.lex_state = 144}, - [1629] = {.lex_state = 144}, - [1630] = {.lex_state = 144}, - [1631] = {.lex_state = 144}, - [1632] = {.lex_state = 144}, - [1633] = {.lex_state = 144}, - [1634] = {.lex_state = 144}, - [1635] = {.lex_state = 144}, - [1636] = {.lex_state = 144}, - [1637] = {.lex_state = 144}, - [1638] = {.lex_state = 144}, - [1639] = {.lex_state = 144}, - [1640] = {.lex_state = 144}, - [1641] = {.lex_state = 144}, - [1642] = {.lex_state = 144}, - [1643] = {.lex_state = 144}, - [1644] = {.lex_state = 144}, - [1645] = {.lex_state = 144}, - [1646] = {.lex_state = 144}, - [1647] = {.lex_state = 144}, - [1648] = {.lex_state = 144}, - [1649] = {.lex_state = 144}, - [1650] = {.lex_state = 144}, - [1651] = {.lex_state = 144}, - [1652] = {.lex_state = 144}, - [1653] = {.lex_state = 144}, - [1654] = {.lex_state = 144}, - [1655] = {.lex_state = 144}, - [1656] = {.lex_state = 144}, - [1657] = {.lex_state = 144}, - [1658] = {.lex_state = 144}, - [1659] = {.lex_state = 144}, - [1660] = {.lex_state = 144}, - [1661] = {.lex_state = 144}, - [1662] = {.lex_state = 144}, - [1663] = {.lex_state = 144}, - [1664] = {.lex_state = 144}, - [1665] = {.lex_state = 144}, - [1666] = {.lex_state = 144}, - [1667] = {.lex_state = 144}, - [1668] = {.lex_state = 144}, - [1669] = {.lex_state = 144}, - [1670] = {.lex_state = 144}, - [1671] = {.lex_state = 144}, - [1672] = {.lex_state = 144}, - [1673] = {.lex_state = 144}, - [1674] = {.lex_state = 197}, - [1675] = {.lex_state = 144}, - [1676] = {.lex_state = 144}, - [1677] = {.lex_state = 144}, - [1678] = {.lex_state = 144}, - [1679] = {.lex_state = 144}, - [1680] = {.lex_state = 144}, - [1681] = {.lex_state = 144}, - [1682] = {.lex_state = 144}, - [1683] = {.lex_state = 144}, - [1684] = {.lex_state = 144}, - [1685] = {.lex_state = 144}, - [1686] = {.lex_state = 197}, - [1687] = {.lex_state = 144}, - [1688] = {.lex_state = 144}, - [1689] = {.lex_state = 144}, - [1690] = {.lex_state = 144}, - [1691] = {.lex_state = 144}, - [1692] = {.lex_state = 144}, - [1693] = {.lex_state = 144}, - [1694] = {.lex_state = 144}, - [1695] = {.lex_state = 144}, - [1696] = {.lex_state = 144}, - [1697] = {.lex_state = 144}, - [1698] = {.lex_state = 144}, - [1699] = {.lex_state = 144}, - [1700] = {.lex_state = 144}, - [1701] = {.lex_state = 144}, - [1702] = {.lex_state = 144}, - [1703] = {.lex_state = 144}, - [1704] = {.lex_state = 144}, - [1705] = {.lex_state = 144}, - [1706] = {.lex_state = 144}, - [1707] = {.lex_state = 144}, - [1708] = {.lex_state = 144}, - [1709] = {.lex_state = 144}, - [1710] = {.lex_state = 144}, - [1711] = {.lex_state = 144}, - [1712] = {.lex_state = 144}, - [1713] = {.lex_state = 144}, - [1714] = {.lex_state = 144}, - [1715] = {.lex_state = 144}, - [1716] = {.lex_state = 144}, - [1717] = {.lex_state = 144}, - [1718] = {.lex_state = 144}, - [1719] = {.lex_state = 144}, - [1720] = {.lex_state = 144}, - [1721] = {.lex_state = 144}, - [1722] = {.lex_state = 144}, - [1723] = {.lex_state = 144}, - [1724] = {.lex_state = 144}, - [1725] = {.lex_state = 144}, - [1726] = {.lex_state = 197}, - [1727] = {.lex_state = 144}, - [1728] = {.lex_state = 144}, - [1729] = {.lex_state = 144}, - [1730] = {.lex_state = 144}, - [1731] = {.lex_state = 144}, - [1732] = {.lex_state = 144}, - [1733] = {.lex_state = 144}, - [1734] = {.lex_state = 144}, - [1735] = {.lex_state = 144}, - [1736] = {.lex_state = 144}, - [1737] = {.lex_state = 144}, - [1738] = {.lex_state = 144}, - [1739] = {.lex_state = 144}, - [1740] = {.lex_state = 144}, - [1741] = {.lex_state = 144}, - [1742] = {.lex_state = 144}, - [1743] = {.lex_state = 144}, - [1744] = {.lex_state = 144}, - [1745] = {.lex_state = 144}, - [1746] = {.lex_state = 144}, - [1747] = {.lex_state = 144}, - [1748] = {.lex_state = 144}, - [1749] = {.lex_state = 144}, - [1750] = {.lex_state = 144}, - [1751] = {.lex_state = 144}, - [1752] = {.lex_state = 144}, - [1753] = {.lex_state = 144}, - [1754] = {.lex_state = 144}, - [1755] = {.lex_state = 144}, - [1756] = {.lex_state = 144}, - [1757] = {.lex_state = 144}, - [1758] = {.lex_state = 144}, - [1759] = {.lex_state = 144}, - [1760] = {.lex_state = 144}, - [1761] = {.lex_state = 197}, - [1762] = {.lex_state = 144}, - [1763] = {.lex_state = 165}, - [1764] = {.lex_state = 158}, - [1765] = {.lex_state = 158}, - [1766] = {.lex_state = 165}, - [1767] = {.lex_state = 165}, - [1768] = {.lex_state = 165}, - [1769] = {.lex_state = 165}, - [1770] = {.lex_state = 165}, - [1771] = {.lex_state = 158}, - [1772] = {.lex_state = 158}, - [1773] = {.lex_state = 165}, - [1774] = {.lex_state = 165}, - [1775] = {.lex_state = 165}, - [1776] = {.lex_state = 158}, - [1777] = {.lex_state = 165}, - [1778] = {.lex_state = 158}, - [1779] = {.lex_state = 158}, - [1780] = {.lex_state = 165}, - [1781] = {.lex_state = 158}, - [1782] = {.lex_state = 158}, - [1783] = {.lex_state = 165}, - [1784] = {.lex_state = 165}, - [1785] = {.lex_state = 165}, - [1786] = {.lex_state = 165}, - [1787] = {.lex_state = 165}, - [1788] = {.lex_state = 165}, - [1789] = {.lex_state = 158}, - [1790] = {.lex_state = 165}, - [1791] = {.lex_state = 165}, - [1792] = {.lex_state = 165}, - [1793] = {.lex_state = 165}, - [1794] = {.lex_state = 165}, - [1795] = {.lex_state = 165}, - [1796] = {.lex_state = 165}, - [1797] = {.lex_state = 158}, - [1798] = {.lex_state = 158}, - [1799] = {.lex_state = 158}, - [1800] = {.lex_state = 158}, - [1801] = {.lex_state = 158}, - [1802] = {.lex_state = 158}, - [1803] = {.lex_state = 197}, - [1804] = {.lex_state = 158}, - [1805] = {.lex_state = 158}, - [1806] = {.lex_state = 197}, - [1807] = {.lex_state = 141}, - [1808] = {.lex_state = 141}, - [1809] = {.lex_state = 141}, - [1810] = {.lex_state = 181}, - [1811] = {.lex_state = 181}, - [1812] = {.lex_state = 181}, - [1813] = {.lex_state = 181}, - [1814] = {.lex_state = 181}, - [1815] = {.lex_state = 181}, - [1816] = {.lex_state = 181}, - [1817] = {.lex_state = 148}, - [1818] = {.lex_state = 197}, - [1819] = {.lex_state = 197}, - [1820] = {.lex_state = 148}, - [1821] = {.lex_state = 148}, - [1822] = {.lex_state = 197}, - [1823] = {.lex_state = 197}, - [1824] = {.lex_state = 157}, - [1825] = {.lex_state = 197}, - [1826] = {.lex_state = 197}, - [1827] = {.lex_state = 197}, - [1828] = {.lex_state = 197}, - [1829] = {.lex_state = 157}, - [1830] = {.lex_state = 157}, - [1831] = {.lex_state = 197}, - [1832] = {.lex_state = 197}, - [1833] = {.lex_state = 157}, - [1834] = {.lex_state = 157}, - [1835] = {.lex_state = 197}, - [1836] = {.lex_state = 157}, - [1837] = {.lex_state = 157}, - [1838] = {.lex_state = 158}, - [1839] = {.lex_state = 158}, - [1840] = {.lex_state = 146}, - [1841] = {.lex_state = 146}, - [1842] = {.lex_state = 146}, - [1843] = {.lex_state = 167}, - [1844] = {.lex_state = 148}, - [1845] = {.lex_state = 167}, - [1846] = {.lex_state = 158}, - [1847] = {.lex_state = 167}, - [1848] = {.lex_state = 167}, - [1849] = {.lex_state = 157}, - [1850] = {.lex_state = 167}, - [1851] = {.lex_state = 167}, - [1852] = {.lex_state = 197}, - [1853] = {.lex_state = 157}, - [1854] = {.lex_state = 197}, - [1855] = {.lex_state = 148}, - [1856] = {.lex_state = 148}, - [1857] = {.lex_state = 148}, - [1858] = {.lex_state = 167}, - [1859] = {.lex_state = 197}, - [1860] = {.lex_state = 197}, - [1861] = {.lex_state = 150}, - [1862] = {.lex_state = 197}, - [1863] = {.lex_state = 197}, - [1864] = {.lex_state = 197}, - [1865] = {.lex_state = 157}, - [1866] = {.lex_state = 169}, - [1867] = {.lex_state = 157}, - [1868] = {.lex_state = 197}, - [1869] = {.lex_state = 197}, - [1870] = {.lex_state = 197}, - [1871] = {.lex_state = 157}, - [1872] = {.lex_state = 197}, - [1873] = {.lex_state = 197}, - [1874] = {.lex_state = 197}, - [1875] = {.lex_state = 157}, - [1876] = {.lex_state = 157}, - [1877] = {.lex_state = 157}, - [1878] = {.lex_state = 169}, - [1879] = {.lex_state = 197}, - [1880] = {.lex_state = 157}, - [1881] = {.lex_state = 150}, - [1882] = {.lex_state = 197}, - [1883] = {.lex_state = 197}, - [1884] = {.lex_state = 197}, - [1885] = {.lex_state = 150}, - [1886] = {.lex_state = 197}, - [1887] = {.lex_state = 157}, - [1888] = {.lex_state = 146}, - [1889] = {.lex_state = 158}, - [1890] = {.lex_state = 181}, - [1891] = {.lex_state = 146}, - [1892] = {.lex_state = 146}, - [1893] = {.lex_state = 181}, - [1894] = {.lex_state = 146}, - [1895] = {.lex_state = 146}, - [1896] = {.lex_state = 167}, - [1897] = {.lex_state = 146}, - [1898] = {.lex_state = 167}, - [1899] = {.lex_state = 181}, - [1900] = {.lex_state = 146}, - [1901] = {.lex_state = 167}, - [1902] = {.lex_state = 170}, - [1903] = {.lex_state = 161}, - [1904] = {.lex_state = 170}, - [1905] = {.lex_state = 161}, - [1906] = {.lex_state = 141}, - [1907] = {.lex_state = 197}, - [1908] = {.lex_state = 141}, - [1909] = {.lex_state = 170}, - [1910] = {.lex_state = 150}, - [1911] = {.lex_state = 159}, - [1912] = {.lex_state = 170}, - [1913] = {.lex_state = 197}, - [1914] = {.lex_state = 170}, - [1915] = {.lex_state = 185}, - [1916] = {.lex_state = 159}, - [1917] = {.lex_state = 170}, - [1918] = {.lex_state = 150}, - [1919] = {.lex_state = 150}, - [1920] = {.lex_state = 166}, - [1921] = {.lex_state = 157}, - [1922] = {.lex_state = 185}, - [1923] = {.lex_state = 150}, - [1924] = {.lex_state = 166}, - [1925] = {.lex_state = 159}, - [1926] = {.lex_state = 170}, - [1927] = {.lex_state = 197}, - [1928] = {.lex_state = 197}, - [1929] = {.lex_state = 181}, - [1930] = {.lex_state = 157}, - [1931] = {.lex_state = 166}, - [1932] = {.lex_state = 181}, - [1933] = {.lex_state = 166}, - [1934] = {.lex_state = 166}, - [1935] = {.lex_state = 181}, - [1936] = {.lex_state = 181}, - [1937] = {.lex_state = 146}, - [1938] = {.lex_state = 146}, - [1939] = {.lex_state = 166}, - [1940] = {.lex_state = 166}, - [1941] = {.lex_state = 166}, - [1942] = {.lex_state = 176}, - [1943] = {.lex_state = 197}, - [1944] = {.lex_state = 166}, - [1945] = {.lex_state = 181}, - [1946] = {.lex_state = 176}, - [1947] = {.lex_state = 181}, - [1948] = {.lex_state = 197}, - [1949] = {.lex_state = 197}, - [1950] = {.lex_state = 197}, - [1951] = {.lex_state = 166}, - [1952] = {.lex_state = 166}, - [1953] = {.lex_state = 181}, - [1954] = {.lex_state = 166}, - [1955] = {.lex_state = 157}, - [1956] = {.lex_state = 146}, - [1957] = {.lex_state = 166}, - [1958] = {.lex_state = 181}, - [1959] = {.lex_state = 181}, - [1960] = {.lex_state = 166}, - [1961] = {.lex_state = 181}, - [1962] = {.lex_state = 181}, - [1963] = {.lex_state = 146}, - [1964] = {.lex_state = 157}, - [1965] = {.lex_state = 174}, - [1966] = {.lex_state = 166}, - [1967] = {.lex_state = 157}, - [1968] = {.lex_state = 157}, - [1969] = {.lex_state = 157}, - [1970] = {.lex_state = 197}, - [1971] = {.lex_state = 157}, - [1972] = {.lex_state = 174}, - [1973] = {.lex_state = 161}, - [1974] = {.lex_state = 170}, - [1975] = {.lex_state = 170}, - [1976] = {.lex_state = 161}, - [1977] = {.lex_state = 157}, - [1978] = {.lex_state = 166}, - [1979] = {.lex_state = 157}, - [1980] = {.lex_state = 157}, - [1981] = {.lex_state = 174}, - [1982] = {.lex_state = 170}, - [1983] = {.lex_state = 157}, - [1984] = {.lex_state = 159}, - [1985] = {.lex_state = 159}, - [1986] = {.lex_state = 198}, - [1987] = {.lex_state = 159}, - [1988] = {.lex_state = 167}, - [1989] = {.lex_state = 156}, - [1990] = {.lex_state = 159}, - [1991] = {.lex_state = 197}, - [1992] = {.lex_state = 182}, - [1993] = {.lex_state = 182}, - [1994] = {.lex_state = 156}, - [1995] = {.lex_state = 166}, - [1996] = {.lex_state = 166}, - [1997] = {.lex_state = 159}, - [1998] = {.lex_state = 159}, - [1999] = {.lex_state = 198}, - [2000] = {.lex_state = 157}, - [2001] = {.lex_state = 170}, - [2002] = {.lex_state = 170}, - [2003] = {.lex_state = 197}, - [2004] = {.lex_state = 197}, - [2005] = {.lex_state = 167}, - [2006] = {.lex_state = 156}, - [2007] = {.lex_state = 198}, - [2008] = {.lex_state = 198}, - [2009] = {.lex_state = 156}, - [2010] = {.lex_state = 170}, - [2011] = {.lex_state = 197}, - [2012] = {.lex_state = 197}, - [2013] = {.lex_state = 197}, - [2014] = {.lex_state = 186}, - [2015] = {.lex_state = 170}, - [2016] = {.lex_state = 197}, - [2017] = {.lex_state = 170}, - [2018] = {.lex_state = 197}, - [2019] = {.lex_state = 170}, - [2020] = {.lex_state = 170}, - [2021] = {.lex_state = 182}, - [2022] = {.lex_state = 190}, - [2023] = {.lex_state = 167}, - [2024] = {.lex_state = 197}, - [2025] = {.lex_state = 197}, - [2026] = {.lex_state = 170}, - [2027] = {.lex_state = 197}, - [2028] = {.lex_state = 197}, - [2029] = {.lex_state = 197}, - [2030] = {.lex_state = 197}, - [2031] = {.lex_state = 197}, - [2032] = {.lex_state = 167}, - [2033] = {.lex_state = 197}, - [2034] = {.lex_state = 197}, - [2035] = {.lex_state = 197}, - [2036] = {.lex_state = 170}, - [2037] = {.lex_state = 197}, - [2038] = {.lex_state = 197}, - [2039] = {.lex_state = 197}, - [2040] = {.lex_state = 197}, - [2041] = {.lex_state = 170}, - [2042] = {.lex_state = 197}, - [2043] = {.lex_state = 197}, - [2044] = {.lex_state = 157}, - [2045] = {.lex_state = 170}, - [2046] = {.lex_state = 170}, - [2047] = {.lex_state = 170}, - [2048] = {.lex_state = 170}, - [2049] = {.lex_state = 197}, - [2050] = {.lex_state = 170}, - [2051] = {.lex_state = 197}, - [2052] = {.lex_state = 170}, - [2053] = {.lex_state = 197}, - [2054] = {.lex_state = 197}, - [2055] = {.lex_state = 197}, - [2056] = {.lex_state = 197}, - [2057] = {.lex_state = 197}, - [2058] = {.lex_state = 197}, - [2059] = {.lex_state = 197}, - [2060] = {.lex_state = 197}, - [2061] = {.lex_state = 197}, - [2062] = {.lex_state = 166}, - [2063] = {.lex_state = 190}, - [2064] = {.lex_state = 157}, - [2065] = {.lex_state = 197}, - [2066] = {.lex_state = 197}, - [2067] = {.lex_state = 170}, - [2068] = {.lex_state = 170}, - [2069] = {.lex_state = 170}, - [2070] = {.lex_state = 197}, - [2071] = {.lex_state = 197}, - [2072] = {.lex_state = 197}, - [2073] = {.lex_state = 197}, - [2074] = {.lex_state = 167}, - [2075] = {.lex_state = 197}, - [2076] = {.lex_state = 197}, - [2077] = {.lex_state = 197}, - [2078] = {.lex_state = 197}, - [2079] = {.lex_state = 197}, - [2080] = {.lex_state = 197}, - [2081] = {.lex_state = 197}, - [2082] = {.lex_state = 197}, - [2083] = {.lex_state = 197}, - [2084] = {.lex_state = 170}, - [2085] = {.lex_state = 170}, - [2086] = {.lex_state = 167}, - [2087] = {.lex_state = 198}, - [2088] = {.lex_state = 197}, - [2089] = {.lex_state = 197}, - [2090] = {.lex_state = 170}, - [2091] = {.lex_state = 197}, - [2092] = {.lex_state = 197}, - [2093] = {.lex_state = 197}, - [2094] = {.lex_state = 197}, - [2095] = {.lex_state = 197}, - [2096] = {.lex_state = 170}, - [2097] = {.lex_state = 197}, - [2098] = {.lex_state = 197}, - [2099] = {.lex_state = 197}, - [2100] = {.lex_state = 170}, - [2101] = {.lex_state = 170}, - [2102] = {.lex_state = 186}, - [2103] = {.lex_state = 197}, - [2104] = {.lex_state = 197}, - [2105] = {.lex_state = 186}, - [2106] = {.lex_state = 197}, - [2107] = {.lex_state = 170}, - [2108] = {.lex_state = 197}, - [2109] = {.lex_state = 197}, - [2110] = {.lex_state = 197}, - [2111] = {.lex_state = 170}, - [2112] = {.lex_state = 170}, - [2113] = {.lex_state = 197}, - [2114] = {.lex_state = 197}, - [2115] = {.lex_state = 170}, - [2116] = {.lex_state = 170}, - [2117] = {.lex_state = 170}, - [2118] = {.lex_state = 170}, - [2119] = {.lex_state = 170}, - [2120] = {.lex_state = 157}, - [2121] = {.lex_state = 170}, - [2122] = {.lex_state = 197}, - [2123] = {.lex_state = 197}, - [2124] = {.lex_state = 197}, - [2125] = {.lex_state = 197}, - [2126] = {.lex_state = 170}, - [2127] = {.lex_state = 170}, - [2128] = {.lex_state = 170}, - [2129] = {.lex_state = 170}, - [2130] = {.lex_state = 166}, - [2131] = {.lex_state = 170}, - [2132] = {.lex_state = 197}, - [2133] = {.lex_state = 170}, - [2134] = {.lex_state = 167}, - [2135] = {.lex_state = 197}, - [2136] = {.lex_state = 170}, - [2137] = {.lex_state = 197}, - [2138] = {.lex_state = 170}, - [2139] = {.lex_state = 197}, - [2140] = {.lex_state = 197}, - [2141] = {.lex_state = 170}, - [2142] = {.lex_state = 170}, - [2143] = {.lex_state = 197}, - [2144] = {.lex_state = 197}, - [2145] = {.lex_state = 197}, - [2146] = {.lex_state = 167}, - [2147] = {.lex_state = 197}, - [2148] = {.lex_state = 197}, - [2149] = {.lex_state = 197}, - [2150] = {.lex_state = 197}, - [2151] = {.lex_state = 157}, - [2152] = {.lex_state = 197}, - [2153] = {.lex_state = 167}, - [2154] = {.lex_state = 167}, - [2155] = {.lex_state = 156}, - [2156] = {.lex_state = 197}, - [2157] = {.lex_state = 197}, - [2158] = {.lex_state = 197}, - [2159] = {.lex_state = 167}, - [2160] = {.lex_state = 197}, - [2161] = {.lex_state = 197}, - [2162] = {.lex_state = 197}, - [2163] = {.lex_state = 197}, - [2164] = {.lex_state = 174}, - [2165] = {.lex_state = 174}, - [2166] = {.lex_state = 158}, - [2167] = {.lex_state = 197}, - [2168] = {.lex_state = 197}, - [2169] = {.lex_state = 198}, - [2170] = {.lex_state = 157}, - [2171] = {.lex_state = 157}, - [2172] = {.lex_state = 157}, - [2173] = {.lex_state = 197}, - [2174] = {.lex_state = 158}, - [2175] = {.lex_state = 158}, + [1] = {.lex_state = 283}, + [2] = {.lex_state = 283}, + [3] = {.lex_state = 149}, + [4] = {.lex_state = 149}, + [5] = {.lex_state = 149}, + [6] = {.lex_state = 283}, + [7] = {.lex_state = 283}, + [8] = {.lex_state = 149}, + [9] = {.lex_state = 283}, + [10] = {.lex_state = 149}, + [11] = {.lex_state = 149}, + [12] = {.lex_state = 149}, + [13] = {.lex_state = 283}, + [14] = {.lex_state = 283}, + [15] = {.lex_state = 283}, + [16] = {.lex_state = 283}, + [17] = {.lex_state = 283}, + [18] = {.lex_state = 149}, + [19] = {.lex_state = 149}, + [20] = {.lex_state = 283}, + [21] = {.lex_state = 149}, + [22] = {.lex_state = 153}, + [23] = {.lex_state = 153}, + [24] = {.lex_state = 153}, + [25] = {.lex_state = 153}, + [26] = {.lex_state = 153}, + [27] = {.lex_state = 153}, + [28] = {.lex_state = 153}, + [29] = {.lex_state = 153}, + [30] = {.lex_state = 153}, + [31] = {.lex_state = 153}, + [32] = {.lex_state = 153}, + [33] = {.lex_state = 149}, + [34] = {.lex_state = 153}, + [35] = {.lex_state = 153}, + [36] = {.lex_state = 153}, + [37] = {.lex_state = 153}, + [38] = {.lex_state = 283}, + [39] = {.lex_state = 283}, + [40] = {.lex_state = 283}, + [41] = {.lex_state = 283}, + [42] = {.lex_state = 283}, + [43] = {.lex_state = 283}, + [44] = {.lex_state = 283}, + [45] = {.lex_state = 283}, + [46] = {.lex_state = 283}, + [47] = {.lex_state = 283}, + [48] = {.lex_state = 283}, + [49] = {.lex_state = 283}, + [50] = {.lex_state = 283}, + [51] = {.lex_state = 283}, + [52] = {.lex_state = 283}, + [53] = {.lex_state = 283}, + [54] = {.lex_state = 283}, + [55] = {.lex_state = 283}, + [56] = {.lex_state = 283}, + [57] = {.lex_state = 283}, + [58] = {.lex_state = 283}, + [59] = {.lex_state = 283}, + [60] = {.lex_state = 283}, + [61] = {.lex_state = 283}, + [62] = {.lex_state = 283}, + [63] = {.lex_state = 283}, + [64] = {.lex_state = 283}, + [65] = {.lex_state = 283}, + [66] = {.lex_state = 283}, + [67] = {.lex_state = 283}, + [68] = {.lex_state = 283}, + [69] = {.lex_state = 283}, + [70] = {.lex_state = 152}, + [71] = {.lex_state = 283}, + [72] = {.lex_state = 283}, + [73] = {.lex_state = 283}, + [74] = {.lex_state = 283}, + [75] = {.lex_state = 283}, + [76] = {.lex_state = 283}, + [77] = {.lex_state = 283}, + [78] = {.lex_state = 283}, + [79] = {.lex_state = 152}, + [80] = {.lex_state = 283}, + [81] = {.lex_state = 283}, + [82] = {.lex_state = 283}, + [83] = {.lex_state = 283}, + [84] = {.lex_state = 283}, + [85] = {.lex_state = 283}, + [86] = {.lex_state = 152}, + [87] = {.lex_state = 283}, + [88] = {.lex_state = 283}, + [89] = {.lex_state = 283}, + [90] = {.lex_state = 283}, + [91] = {.lex_state = 283}, + [92] = {.lex_state = 149}, + [93] = {.lex_state = 149}, + [94] = {.lex_state = 149}, + [95] = {.lex_state = 149}, + [96] = {.lex_state = 149}, + [97] = {.lex_state = 153}, + [98] = {.lex_state = 153}, + [99] = {.lex_state = 153}, + [100] = {.lex_state = 153}, + [101] = {.lex_state = 153}, + [102] = {.lex_state = 152}, + [103] = {.lex_state = 283}, + [104] = {.lex_state = 152}, + [105] = {.lex_state = 283}, + [106] = {.lex_state = 152}, + [107] = {.lex_state = 283}, + [108] = {.lex_state = 152}, + [109] = {.lex_state = 283}, + [110] = {.lex_state = 283}, + [111] = {.lex_state = 283}, + [112] = {.lex_state = 283}, + [113] = {.lex_state = 152}, + [114] = {.lex_state = 283}, + [115] = {.lex_state = 283}, + [116] = {.lex_state = 283}, + [117] = {.lex_state = 151}, + [118] = {.lex_state = 151}, + [119] = {.lex_state = 151}, + [120] = {.lex_state = 151}, + [121] = {.lex_state = 151}, + [122] = {.lex_state = 151}, + [123] = {.lex_state = 151}, + [124] = {.lex_state = 151}, + [125] = {.lex_state = 151}, + [126] = {.lex_state = 151}, + [127] = {.lex_state = 151}, + [128] = {.lex_state = 151}, + [129] = {.lex_state = 151}, + [130] = {.lex_state = 151}, + [131] = {.lex_state = 151}, + [132] = {.lex_state = 151}, + [133] = {.lex_state = 151}, + [134] = {.lex_state = 151}, + [135] = {.lex_state = 151}, + [136] = {.lex_state = 151}, + [137] = {.lex_state = 154}, + [138] = {.lex_state = 154}, + [139] = {.lex_state = 154}, + [140] = {.lex_state = 154}, + [141] = {.lex_state = 151}, + [142] = {.lex_state = 143}, + [143] = {.lex_state = 142}, + [144] = {.lex_state = 144}, + [145] = {.lex_state = 143}, + [146] = {.lex_state = 142}, + [147] = {.lex_state = 151}, + [148] = {.lex_state = 151}, + [149] = {.lex_state = 151}, + [150] = {.lex_state = 151}, + [151] = {.lex_state = 151}, + [152] = {.lex_state = 151}, + [153] = {.lex_state = 151}, + [154] = {.lex_state = 151}, + [155] = {.lex_state = 151}, + [156] = {.lex_state = 151}, + [157] = {.lex_state = 151}, + [158] = {.lex_state = 151}, + [159] = {.lex_state = 151}, + [160] = {.lex_state = 151}, + [161] = {.lex_state = 151}, + [162] = {.lex_state = 151}, + [163] = {.lex_state = 151}, + [164] = {.lex_state = 151}, + [165] = {.lex_state = 151}, + [166] = {.lex_state = 151}, + [167] = {.lex_state = 151}, + [168] = {.lex_state = 151}, + [169] = {.lex_state = 151}, + [170] = {.lex_state = 151}, + [171] = {.lex_state = 151}, + [172] = {.lex_state = 151}, + [173] = {.lex_state = 151}, + [174] = {.lex_state = 151}, + [175] = {.lex_state = 151}, + [176] = {.lex_state = 151}, + [177] = {.lex_state = 151}, + [178] = {.lex_state = 151}, + [179] = {.lex_state = 151}, + [180] = {.lex_state = 151}, + [181] = {.lex_state = 151}, + [182] = {.lex_state = 151}, + [183] = {.lex_state = 151}, + [184] = {.lex_state = 151}, + [185] = {.lex_state = 151}, + [186] = {.lex_state = 151}, + [187] = {.lex_state = 151}, + [188] = {.lex_state = 151}, + [189] = {.lex_state = 151}, + [190] = {.lex_state = 151}, + [191] = {.lex_state = 151}, + [192] = {.lex_state = 151}, + [193] = {.lex_state = 151}, + [194] = {.lex_state = 151}, + [195] = {.lex_state = 151}, + [196] = {.lex_state = 151}, + [197] = {.lex_state = 151}, + [198] = {.lex_state = 151}, + [199] = {.lex_state = 151}, + [200] = {.lex_state = 151}, + [201] = {.lex_state = 151}, + [202] = {.lex_state = 151}, + [203] = {.lex_state = 151}, + [204] = {.lex_state = 151}, + [205] = {.lex_state = 151}, + [206] = {.lex_state = 151}, + [207] = {.lex_state = 151}, + [208] = {.lex_state = 151}, + [209] = {.lex_state = 151}, + [210] = {.lex_state = 151}, + [211] = {.lex_state = 151}, + [212] = {.lex_state = 151}, + [213] = {.lex_state = 151}, + [214] = {.lex_state = 151}, + [215] = {.lex_state = 151}, + [216] = {.lex_state = 151}, + [217] = {.lex_state = 151}, + [218] = {.lex_state = 151}, + [219] = {.lex_state = 151}, + [220] = {.lex_state = 151}, + [221] = {.lex_state = 151}, + [222] = {.lex_state = 151}, + [223] = {.lex_state = 151}, + [224] = {.lex_state = 151}, + [225] = {.lex_state = 151}, + [226] = {.lex_state = 151}, + [227] = {.lex_state = 151}, + [228] = {.lex_state = 151}, + [229] = {.lex_state = 151}, + [230] = {.lex_state = 151}, + [231] = {.lex_state = 151}, + [232] = {.lex_state = 151}, + [233] = {.lex_state = 151}, + [234] = {.lex_state = 151}, + [235] = {.lex_state = 151}, + [236] = {.lex_state = 151}, + [237] = {.lex_state = 151}, + [238] = {.lex_state = 151}, + [239] = {.lex_state = 151}, + [240] = {.lex_state = 151}, + [241] = {.lex_state = 151}, + [242] = {.lex_state = 151}, + [243] = {.lex_state = 151}, + [244] = {.lex_state = 151}, + [245] = {.lex_state = 151}, + [246] = {.lex_state = 151}, + [247] = {.lex_state = 151}, + [248] = {.lex_state = 151}, + [249] = {.lex_state = 151}, + [250] = {.lex_state = 151}, + [251] = {.lex_state = 151}, + [252] = {.lex_state = 151}, + [253] = {.lex_state = 151}, + [254] = {.lex_state = 151}, + [255] = {.lex_state = 151}, + [256] = {.lex_state = 151}, + [257] = {.lex_state = 151}, + [258] = {.lex_state = 151}, + [259] = {.lex_state = 151}, + [260] = {.lex_state = 151}, + [261] = {.lex_state = 151}, + [262] = {.lex_state = 151}, + [263] = {.lex_state = 151}, + [264] = {.lex_state = 151}, + [265] = {.lex_state = 151}, + [266] = {.lex_state = 151}, + [267] = {.lex_state = 151}, + [268] = {.lex_state = 151}, + [269] = {.lex_state = 151}, + [270] = {.lex_state = 151}, + [271] = {.lex_state = 151}, + [272] = {.lex_state = 151}, + [273] = {.lex_state = 151}, + [274] = {.lex_state = 151}, + [275] = {.lex_state = 151}, + [276] = {.lex_state = 151}, + [277] = {.lex_state = 151}, + [278] = {.lex_state = 151}, + [279] = {.lex_state = 151}, + [280] = {.lex_state = 151}, + [281] = {.lex_state = 151}, + [282] = {.lex_state = 151}, + [283] = {.lex_state = 151}, + [284] = {.lex_state = 151}, + [285] = {.lex_state = 151}, + [286] = {.lex_state = 151}, + [287] = {.lex_state = 151}, + [288] = {.lex_state = 151}, + [289] = {.lex_state = 151}, + [290] = {.lex_state = 151}, + [291] = {.lex_state = 151}, + [292] = {.lex_state = 151}, + [293] = {.lex_state = 151}, + [294] = {.lex_state = 151}, + [295] = {.lex_state = 151}, + [296] = {.lex_state = 151}, + [297] = {.lex_state = 151}, + [298] = {.lex_state = 151}, + [299] = {.lex_state = 151}, + [300] = {.lex_state = 151}, + [301] = {.lex_state = 151}, + [302] = {.lex_state = 151}, + [303] = {.lex_state = 151}, + [304] = {.lex_state = 151}, + [305] = {.lex_state = 151}, + [306] = {.lex_state = 151}, + [307] = {.lex_state = 151}, + [308] = {.lex_state = 151}, + [309] = {.lex_state = 151}, + [310] = {.lex_state = 151}, + [311] = {.lex_state = 151}, + [312] = {.lex_state = 151}, + [313] = {.lex_state = 151}, + [314] = {.lex_state = 151}, + [315] = {.lex_state = 151}, + [316] = {.lex_state = 151}, + [317] = {.lex_state = 151}, + [318] = {.lex_state = 151}, + [319] = {.lex_state = 151}, + [320] = {.lex_state = 151}, + [321] = {.lex_state = 283}, + [322] = {.lex_state = 155}, + [323] = {.lex_state = 155}, + [324] = {.lex_state = 155}, + [325] = {.lex_state = 155}, + [326] = {.lex_state = 155}, + [327] = {.lex_state = 155}, + [328] = {.lex_state = 155}, + [329] = {.lex_state = 155}, + [330] = {.lex_state = 155}, + [331] = {.lex_state = 283}, + [332] = {.lex_state = 155}, + [333] = {.lex_state = 155}, + [334] = {.lex_state = 155}, + [335] = {.lex_state = 155}, + [336] = {.lex_state = 155}, + [337] = {.lex_state = 155}, + [338] = {.lex_state = 155}, + [339] = {.lex_state = 155}, + [340] = {.lex_state = 155}, + [341] = {.lex_state = 209}, + [342] = {.lex_state = 209}, + [343] = {.lex_state = 209}, + [344] = {.lex_state = 209}, + [345] = {.lex_state = 209}, + [346] = {.lex_state = 209}, + [347] = {.lex_state = 209}, + [348] = {.lex_state = 209}, + [349] = {.lex_state = 155}, + [350] = {.lex_state = 155}, + [351] = {.lex_state = 155}, + [352] = {.lex_state = 155}, + [353] = {.lex_state = 149}, + [354] = {.lex_state = 155}, + [355] = {.lex_state = 155}, + [356] = {.lex_state = 155}, + [357] = {.lex_state = 155}, + [358] = {.lex_state = 155}, + [359] = {.lex_state = 155}, + [360] = {.lex_state = 155}, + [361] = {.lex_state = 155}, + [362] = {.lex_state = 155}, + [363] = {.lex_state = 149}, + [364] = {.lex_state = 155}, + [365] = {.lex_state = 155}, + [366] = {.lex_state = 155}, + [367] = {.lex_state = 149}, + [368] = {.lex_state = 167}, + [369] = {.lex_state = 167}, + [370] = {.lex_state = 209}, + [371] = {.lex_state = 149}, + [372] = {.lex_state = 154}, + [373] = {.lex_state = 155}, + [374] = {.lex_state = 167}, + [375] = {.lex_state = 167}, + [376] = {.lex_state = 154}, + [377] = {.lex_state = 167}, + [378] = {.lex_state = 167}, + [379] = {.lex_state = 167}, + [380] = {.lex_state = 167}, + [381] = {.lex_state = 167}, + [382] = {.lex_state = 167}, + [383] = {.lex_state = 149}, + [384] = {.lex_state = 153}, + [385] = {.lex_state = 153}, + [386] = {.lex_state = 149}, + [387] = {.lex_state = 149}, + [388] = {.lex_state = 149}, + [389] = {.lex_state = 149}, + [390] = {.lex_state = 149}, + [391] = {.lex_state = 149}, + [392] = {.lex_state = 149}, + [393] = {.lex_state = 149}, + [394] = {.lex_state = 149}, + [395] = {.lex_state = 149}, + [396] = {.lex_state = 149}, + [397] = {.lex_state = 149}, + [398] = {.lex_state = 153}, + [399] = {.lex_state = 149}, + [400] = {.lex_state = 149}, + [401] = {.lex_state = 149}, + [402] = {.lex_state = 149}, + [403] = {.lex_state = 149}, + [404] = {.lex_state = 149}, + [405] = {.lex_state = 153}, + [406] = {.lex_state = 149}, + [407] = {.lex_state = 149}, + [408] = {.lex_state = 149}, + [409] = {.lex_state = 149}, + [410] = {.lex_state = 149}, + [411] = {.lex_state = 149}, + [412] = {.lex_state = 149}, + [413] = {.lex_state = 149}, + [414] = {.lex_state = 149}, + [415] = {.lex_state = 149}, + [416] = {.lex_state = 149}, + [417] = {.lex_state = 149}, + [418] = {.lex_state = 149}, + [419] = {.lex_state = 149}, + [420] = {.lex_state = 149}, + [421] = {.lex_state = 149}, + [422] = {.lex_state = 149}, + [423] = {.lex_state = 149}, + [424] = {.lex_state = 149}, + [425] = {.lex_state = 149}, + [426] = {.lex_state = 149}, + [427] = {.lex_state = 149}, + [428] = {.lex_state = 149}, + [429] = {.lex_state = 149}, + [430] = {.lex_state = 167}, + [431] = {.lex_state = 149}, + [432] = {.lex_state = 149}, + [433] = {.lex_state = 149}, + [434] = {.lex_state = 149}, + [435] = {.lex_state = 149}, + [436] = {.lex_state = 149}, + [437] = {.lex_state = 149}, + [438] = {.lex_state = 149}, + [439] = {.lex_state = 149}, + [440] = {.lex_state = 149}, + [441] = {.lex_state = 149}, + [442] = {.lex_state = 149}, + [443] = {.lex_state = 149}, + [444] = {.lex_state = 149}, + [445] = {.lex_state = 149}, + [446] = {.lex_state = 149}, + [447] = {.lex_state = 149}, + [448] = {.lex_state = 149}, + [449] = {.lex_state = 149}, + [450] = {.lex_state = 149}, + [451] = {.lex_state = 149}, + [452] = {.lex_state = 149}, + [453] = {.lex_state = 149}, + [454] = {.lex_state = 149}, + [455] = {.lex_state = 149}, + [456] = {.lex_state = 149}, + [457] = {.lex_state = 149}, + [458] = {.lex_state = 149}, + [459] = {.lex_state = 149}, + [460] = {.lex_state = 149}, + [461] = {.lex_state = 149}, + [462] = {.lex_state = 149}, + [463] = {.lex_state = 149}, + [464] = {.lex_state = 149}, + [465] = {.lex_state = 149}, + [466] = {.lex_state = 149}, + [467] = {.lex_state = 149}, + [468] = {.lex_state = 149}, + [469] = {.lex_state = 149}, + [470] = {.lex_state = 149}, + [471] = {.lex_state = 149}, + [472] = {.lex_state = 149}, + [473] = {.lex_state = 149}, + [474] = {.lex_state = 149}, + [475] = {.lex_state = 149}, + [476] = {.lex_state = 149}, + [477] = {.lex_state = 149}, + [478] = {.lex_state = 149}, + [479] = {.lex_state = 149}, + [480] = {.lex_state = 149}, + [481] = {.lex_state = 149}, + [482] = {.lex_state = 149}, + [483] = {.lex_state = 149}, + [484] = {.lex_state = 149}, + [485] = {.lex_state = 149}, + [486] = {.lex_state = 149}, + [487] = {.lex_state = 149}, + [488] = {.lex_state = 149}, + [489] = {.lex_state = 149}, + [490] = {.lex_state = 149}, + [491] = {.lex_state = 149}, + [492] = {.lex_state = 149}, + [493] = {.lex_state = 149}, + [494] = {.lex_state = 149}, + [495] = {.lex_state = 149}, + [496] = {.lex_state = 149}, + [497] = {.lex_state = 149}, + [498] = {.lex_state = 149}, + [499] = {.lex_state = 149}, + [500] = {.lex_state = 149}, + [501] = {.lex_state = 149}, + [502] = {.lex_state = 149}, + [503] = {.lex_state = 149}, + [504] = {.lex_state = 149}, + [505] = {.lex_state = 149}, + [506] = {.lex_state = 149}, + [507] = {.lex_state = 149}, + [508] = {.lex_state = 149}, + [509] = {.lex_state = 149}, + [510] = {.lex_state = 149}, + [511] = {.lex_state = 149}, + [512] = {.lex_state = 149}, + [513] = {.lex_state = 149}, + [514] = {.lex_state = 149}, + [515] = {.lex_state = 149}, + [516] = {.lex_state = 151}, + [517] = {.lex_state = 149}, + [518] = {.lex_state = 149}, + [519] = {.lex_state = 151}, + [520] = {.lex_state = 149}, + [521] = {.lex_state = 149}, + [522] = {.lex_state = 153}, + [523] = {.lex_state = 149}, + [524] = {.lex_state = 149}, + [525] = {.lex_state = 149}, + [526] = {.lex_state = 149}, + [527] = {.lex_state = 149}, + [528] = {.lex_state = 151}, + [529] = {.lex_state = 149}, + [530] = {.lex_state = 151}, + [531] = {.lex_state = 149}, + [532] = {.lex_state = 149}, + [533] = {.lex_state = 149}, + [534] = {.lex_state = 149}, + [535] = {.lex_state = 149}, + [536] = {.lex_state = 153}, + [537] = {.lex_state = 149}, + [538] = {.lex_state = 153}, + [539] = {.lex_state = 151}, + [540] = {.lex_state = 151}, + [541] = {.lex_state = 151}, + [542] = {.lex_state = 151}, + [543] = {.lex_state = 149}, + [544] = {.lex_state = 149}, + [545] = {.lex_state = 149}, + [546] = {.lex_state = 149}, + [547] = {.lex_state = 149}, + [548] = {.lex_state = 149}, + [549] = {.lex_state = 149}, + [550] = {.lex_state = 149}, + [551] = {.lex_state = 149}, + [552] = {.lex_state = 151}, + [553] = {.lex_state = 151}, + [554] = {.lex_state = 151}, + [555] = {.lex_state = 151}, + [556] = {.lex_state = 152}, + [557] = {.lex_state = 149}, + [558] = {.lex_state = 149}, + [559] = {.lex_state = 149}, + [560] = {.lex_state = 149}, + [561] = {.lex_state = 151}, + [562] = {.lex_state = 149}, + [563] = {.lex_state = 151}, + [564] = {.lex_state = 149}, + [565] = {.lex_state = 149}, + [566] = {.lex_state = 149}, + [567] = {.lex_state = 149}, + [568] = {.lex_state = 283}, + [569] = {.lex_state = 149}, + [570] = {.lex_state = 152}, + [571] = {.lex_state = 149}, + [572] = {.lex_state = 151}, + [573] = {.lex_state = 283}, + [574] = {.lex_state = 149}, + [575] = {.lex_state = 149}, + [576] = {.lex_state = 151}, + [577] = {.lex_state = 149}, + [578] = {.lex_state = 149}, + [579] = {.lex_state = 149}, + [580] = {.lex_state = 149}, + [581] = {.lex_state = 149}, + [582] = {.lex_state = 149}, + [583] = {.lex_state = 283}, + [584] = {.lex_state = 149}, + [585] = {.lex_state = 149}, + [586] = {.lex_state = 149}, + [587] = {.lex_state = 149}, + [588] = {.lex_state = 151}, + [589] = {.lex_state = 149}, + [590] = {.lex_state = 283}, + [591] = {.lex_state = 149}, + [592] = {.lex_state = 149}, + [593] = {.lex_state = 151}, + [594] = {.lex_state = 149}, + [595] = {.lex_state = 149}, + [596] = {.lex_state = 151}, + [597] = {.lex_state = 151}, + [598] = {.lex_state = 151}, + [599] = {.lex_state = 149}, + [600] = {.lex_state = 149}, + [601] = {.lex_state = 149}, + [602] = {.lex_state = 149}, + [603] = {.lex_state = 149}, + [604] = {.lex_state = 153}, + [605] = {.lex_state = 153}, + [606] = {.lex_state = 153}, + [607] = {.lex_state = 210}, + [608] = {.lex_state = 153}, + [609] = {.lex_state = 153}, + [610] = {.lex_state = 208}, + [611] = {.lex_state = 153}, + [612] = {.lex_state = 210}, + [613] = {.lex_state = 208}, + [614] = {.lex_state = 153}, + [615] = {.lex_state = 153}, + [616] = {.lex_state = 153}, + [617] = {.lex_state = 208}, + [618] = {.lex_state = 153}, + [619] = {.lex_state = 283}, + [620] = {.lex_state = 153}, + [621] = {.lex_state = 153}, + [622] = {.lex_state = 153}, + [623] = {.lex_state = 153}, + [624] = {.lex_state = 208}, + [625] = {.lex_state = 153}, + [626] = {.lex_state = 153}, + [627] = {.lex_state = 153}, + [628] = {.lex_state = 153}, + [629] = {.lex_state = 153}, + [630] = {.lex_state = 153}, + [631] = {.lex_state = 153}, + [632] = {.lex_state = 153}, + [633] = {.lex_state = 153}, + [634] = {.lex_state = 153}, + [635] = {.lex_state = 208}, + [636] = {.lex_state = 153}, + [637] = {.lex_state = 153}, + [638] = {.lex_state = 153}, + [639] = {.lex_state = 153}, + [640] = {.lex_state = 153}, + [641] = {.lex_state = 153}, + [642] = {.lex_state = 208}, + [643] = {.lex_state = 153}, + [644] = {.lex_state = 153}, + [645] = {.lex_state = 153}, + [646] = {.lex_state = 283}, + [647] = {.lex_state = 153}, + [648] = {.lex_state = 153}, + [649] = {.lex_state = 153}, + [650] = {.lex_state = 153}, + [651] = {.lex_state = 153}, + [652] = {.lex_state = 153}, + [653] = {.lex_state = 153}, + [654] = {.lex_state = 153}, + [655] = {.lex_state = 153}, + [656] = {.lex_state = 153}, + [657] = {.lex_state = 153}, + [658] = {.lex_state = 153}, + [659] = {.lex_state = 153}, + [660] = {.lex_state = 153}, + [661] = {.lex_state = 153}, + [662] = {.lex_state = 208}, + [663] = {.lex_state = 152}, + [664] = {.lex_state = 153}, + [665] = {.lex_state = 153}, + [666] = {.lex_state = 153}, + [667] = {.lex_state = 153}, + [668] = {.lex_state = 153}, + [669] = {.lex_state = 153}, + [670] = {.lex_state = 153}, + [671] = {.lex_state = 153}, + [672] = {.lex_state = 153}, + [673] = {.lex_state = 153}, + [674] = {.lex_state = 153}, + [675] = {.lex_state = 153}, + [676] = {.lex_state = 208}, + [677] = {.lex_state = 153}, + [678] = {.lex_state = 208}, + [679] = {.lex_state = 153}, + [680] = {.lex_state = 208}, + [681] = {.lex_state = 153}, + [682] = {.lex_state = 153}, + [683] = {.lex_state = 153}, + [684] = {.lex_state = 153}, + [685] = {.lex_state = 153}, + [686] = {.lex_state = 153}, + [687] = {.lex_state = 153}, + [688] = {.lex_state = 208}, + [689] = {.lex_state = 153}, + [690] = {.lex_state = 153}, + [691] = {.lex_state = 153}, + [692] = {.lex_state = 153}, + [693] = {.lex_state = 153}, + [694] = {.lex_state = 153}, + [695] = {.lex_state = 153}, + [696] = {.lex_state = 153}, + [697] = {.lex_state = 208}, + [698] = {.lex_state = 145}, + [699] = {.lex_state = 153}, + [700] = {.lex_state = 153}, + [701] = {.lex_state = 153}, + [702] = {.lex_state = 153}, + [703] = {.lex_state = 153}, + [704] = {.lex_state = 153}, + [705] = {.lex_state = 153}, + [706] = {.lex_state = 153}, + [707] = {.lex_state = 153}, + [708] = {.lex_state = 153}, + [709] = {.lex_state = 153}, + [710] = {.lex_state = 153}, + [711] = {.lex_state = 153}, + [712] = {.lex_state = 208}, + [713] = {.lex_state = 153}, + [714] = {.lex_state = 153}, + [715] = {.lex_state = 153}, + [716] = {.lex_state = 152}, + [717] = {.lex_state = 208}, + [718] = {.lex_state = 153}, + [719] = {.lex_state = 153}, + [720] = {.lex_state = 210}, + [721] = {.lex_state = 153}, + [722] = {.lex_state = 153}, + [723] = {.lex_state = 153}, + [724] = {.lex_state = 153}, + [725] = {.lex_state = 153}, + [726] = {.lex_state = 153}, + [727] = {.lex_state = 153}, + [728] = {.lex_state = 153}, + [729] = {.lex_state = 153}, + [730] = {.lex_state = 208}, + [731] = {.lex_state = 153}, + [732] = {.lex_state = 153}, + [733] = {.lex_state = 208}, + [734] = {.lex_state = 153}, + [735] = {.lex_state = 153}, + [736] = {.lex_state = 208}, + [737] = {.lex_state = 153}, + [738] = {.lex_state = 153}, + [739] = {.lex_state = 153}, + [740] = {.lex_state = 208}, + [741] = {.lex_state = 153}, + [742] = {.lex_state = 153}, + [743] = {.lex_state = 208}, + [744] = {.lex_state = 153}, + [745] = {.lex_state = 153}, + [746] = {.lex_state = 153}, + [747] = {.lex_state = 153}, + [748] = {.lex_state = 153}, + [749] = {.lex_state = 153}, + [750] = {.lex_state = 153}, + [751] = {.lex_state = 153}, + [752] = {.lex_state = 153}, + [753] = {.lex_state = 153}, + [754] = {.lex_state = 153}, + [755] = {.lex_state = 153}, + [756] = {.lex_state = 153}, + [757] = {.lex_state = 153}, + [758] = {.lex_state = 153}, + [759] = {.lex_state = 153}, + [760] = {.lex_state = 153}, + [761] = {.lex_state = 153}, + [762] = {.lex_state = 153}, + [763] = {.lex_state = 153}, + [764] = {.lex_state = 153}, + [765] = {.lex_state = 153}, + [766] = {.lex_state = 153}, + [767] = {.lex_state = 153}, + [768] = {.lex_state = 153}, + [769] = {.lex_state = 153}, + [770] = {.lex_state = 153}, + [771] = {.lex_state = 153}, + [772] = {.lex_state = 283}, + [773] = {.lex_state = 153}, + [774] = {.lex_state = 153}, + [775] = {.lex_state = 153}, + [776] = {.lex_state = 153}, + [777] = {.lex_state = 153}, + [778] = {.lex_state = 153}, + [779] = {.lex_state = 153}, + [780] = {.lex_state = 153}, + [781] = {.lex_state = 153}, + [782] = {.lex_state = 153}, + [783] = {.lex_state = 153}, + [784] = {.lex_state = 153}, + [785] = {.lex_state = 152}, + [786] = {.lex_state = 153}, + [787] = {.lex_state = 153}, + [788] = {.lex_state = 153}, + [789] = {.lex_state = 153}, + [790] = {.lex_state = 153}, + [791] = {.lex_state = 153}, + [792] = {.lex_state = 153}, + [793] = {.lex_state = 153}, + [794] = {.lex_state = 153}, + [795] = {.lex_state = 153}, + [796] = {.lex_state = 153}, + [797] = {.lex_state = 153}, + [798] = {.lex_state = 153}, + [799] = {.lex_state = 153}, + [800] = {.lex_state = 283}, + [801] = {.lex_state = 283}, + [802] = {.lex_state = 153}, + [803] = {.lex_state = 153}, + [804] = {.lex_state = 283}, + [805] = {.lex_state = 153}, + [806] = {.lex_state = 153}, + [807] = {.lex_state = 153}, + [808] = {.lex_state = 153}, + [809] = {.lex_state = 153}, + [810] = {.lex_state = 152}, + [811] = {.lex_state = 283}, + [812] = {.lex_state = 153}, + [813] = {.lex_state = 283}, + [814] = {.lex_state = 153}, + [815] = {.lex_state = 153}, + [816] = {.lex_state = 152}, + [817] = {.lex_state = 153}, + [818] = {.lex_state = 153}, + [819] = {.lex_state = 153}, + [820] = {.lex_state = 153}, + [821] = {.lex_state = 153}, + [822] = {.lex_state = 153}, + [823] = {.lex_state = 152}, + [824] = {.lex_state = 283}, + [825] = {.lex_state = 283}, + [826] = {.lex_state = 283}, + [827] = {.lex_state = 283}, + [828] = {.lex_state = 283}, + [829] = {.lex_state = 283}, + [830] = {.lex_state = 283}, + [831] = {.lex_state = 283}, + [832] = {.lex_state = 283}, + [833] = {.lex_state = 283}, + [834] = {.lex_state = 283}, + [835] = {.lex_state = 283}, + [836] = {.lex_state = 283}, + [837] = {.lex_state = 283}, + [838] = {.lex_state = 283}, + [839] = {.lex_state = 283}, + [840] = {.lex_state = 283}, + [841] = {.lex_state = 152}, + [842] = {.lex_state = 283}, + [843] = {.lex_state = 283}, + [844] = {.lex_state = 283}, + [845] = {.lex_state = 283}, + [846] = {.lex_state = 283}, + [847] = {.lex_state = 283}, + [848] = {.lex_state = 283}, + [849] = {.lex_state = 152}, + [850] = {.lex_state = 283}, + [851] = {.lex_state = 283}, + [852] = {.lex_state = 283}, + [853] = {.lex_state = 283}, + [854] = {.lex_state = 152}, + [855] = {.lex_state = 152}, + [856] = {.lex_state = 152}, + [857] = {.lex_state = 152}, + [858] = {.lex_state = 152}, + [859] = {.lex_state = 152}, + [860] = {.lex_state = 152}, + [861] = {.lex_state = 146}, + [862] = {.lex_state = 283}, + [863] = {.lex_state = 283}, + [864] = {.lex_state = 283}, + [865] = {.lex_state = 283}, + [866] = {.lex_state = 283}, + [867] = {.lex_state = 283}, + [868] = {.lex_state = 283}, + [869] = {.lex_state = 283}, + [870] = {.lex_state = 283}, + [871] = {.lex_state = 283}, + [872] = {.lex_state = 283}, + [873] = {.lex_state = 283}, + [874] = {.lex_state = 283}, + [875] = {.lex_state = 283}, + [876] = {.lex_state = 283}, + [877] = {.lex_state = 283}, + [878] = {.lex_state = 283}, + [879] = {.lex_state = 283}, + [880] = {.lex_state = 283}, + [881] = {.lex_state = 283}, + [882] = {.lex_state = 152}, + [883] = {.lex_state = 152}, + [884] = {.lex_state = 283}, + [885] = {.lex_state = 283}, + [886] = {.lex_state = 283}, + [887] = {.lex_state = 152}, + [888] = {.lex_state = 283}, + [889] = {.lex_state = 283}, + [890] = {.lex_state = 283}, + [891] = {.lex_state = 283}, + [892] = {.lex_state = 283}, + [893] = {.lex_state = 283}, + [894] = {.lex_state = 283}, + [895] = {.lex_state = 283}, + [896] = {.lex_state = 283}, + [897] = {.lex_state = 283}, + [898] = {.lex_state = 283}, + [899] = {.lex_state = 283}, + [900] = {.lex_state = 283}, + [901] = {.lex_state = 283}, + [902] = {.lex_state = 283}, + [903] = {.lex_state = 283}, + [904] = {.lex_state = 283}, + [905] = {.lex_state = 283}, + [906] = {.lex_state = 283}, + [907] = {.lex_state = 283}, + [908] = {.lex_state = 283}, + [909] = {.lex_state = 283}, + [910] = {.lex_state = 283}, + [911] = {.lex_state = 283}, + [912] = {.lex_state = 152}, + [913] = {.lex_state = 283}, + [914] = {.lex_state = 283}, + [915] = {.lex_state = 283}, + [916] = {.lex_state = 283}, + [917] = {.lex_state = 152}, + [918] = {.lex_state = 283}, + [919] = {.lex_state = 283}, + [920] = {.lex_state = 283}, + [921] = {.lex_state = 152}, + [922] = {.lex_state = 152}, + [923] = {.lex_state = 283}, + [924] = {.lex_state = 283}, + [925] = {.lex_state = 152}, + [926] = {.lex_state = 283}, + [927] = {.lex_state = 283}, + [928] = {.lex_state = 152}, + [929] = {.lex_state = 283}, + [930] = {.lex_state = 283}, + [931] = {.lex_state = 283}, + [932] = {.lex_state = 152}, + [933] = {.lex_state = 283}, + [934] = {.lex_state = 283}, + [935] = {.lex_state = 152}, + [936] = {.lex_state = 283}, + [937] = {.lex_state = 283}, + [938] = {.lex_state = 283}, + [939] = {.lex_state = 283}, + [940] = {.lex_state = 283}, + [941] = {.lex_state = 283}, + [942] = {.lex_state = 283}, + [943] = {.lex_state = 283}, + [944] = {.lex_state = 152}, + [945] = {.lex_state = 152}, + [946] = {.lex_state = 283}, + [947] = {.lex_state = 152}, + [948] = {.lex_state = 283}, + [949] = {.lex_state = 152}, + [950] = {.lex_state = 152}, + [951] = {.lex_state = 283}, + [952] = {.lex_state = 283}, + [953] = {.lex_state = 283}, + [954] = {.lex_state = 152}, + [955] = {.lex_state = 152}, + [956] = {.lex_state = 152}, + [957] = {.lex_state = 283}, + [958] = {.lex_state = 152}, + [959] = {.lex_state = 152}, + [960] = {.lex_state = 283}, + [961] = {.lex_state = 152}, + [962] = {.lex_state = 283}, + [963] = {.lex_state = 283}, + [964] = {.lex_state = 283}, + [965] = {.lex_state = 283}, + [966] = {.lex_state = 283}, + [967] = {.lex_state = 283}, + [968] = {.lex_state = 283}, + [969] = {.lex_state = 283}, + [970] = {.lex_state = 152}, + [971] = {.lex_state = 283}, + [972] = {.lex_state = 283}, + [973] = {.lex_state = 283}, + [974] = {.lex_state = 283}, + [975] = {.lex_state = 152}, + [976] = {.lex_state = 283}, + [977] = {.lex_state = 283}, + [978] = {.lex_state = 283}, + [979] = {.lex_state = 152}, + [980] = {.lex_state = 152}, + [981] = {.lex_state = 283}, + [982] = {.lex_state = 283}, + [983] = {.lex_state = 283}, + [984] = {.lex_state = 152}, + [985] = {.lex_state = 152}, + [986] = {.lex_state = 152}, + [987] = {.lex_state = 283}, + [988] = {.lex_state = 283}, + [989] = {.lex_state = 283}, + [990] = {.lex_state = 283}, + [991] = {.lex_state = 152}, + [992] = {.lex_state = 283}, + [993] = {.lex_state = 283}, + [994] = {.lex_state = 152}, + [995] = {.lex_state = 283}, + [996] = {.lex_state = 283}, + [997] = {.lex_state = 283}, + [998] = {.lex_state = 283}, + [999] = {.lex_state = 152}, + [1000] = {.lex_state = 283}, + [1001] = {.lex_state = 152}, + [1002] = {.lex_state = 152}, + [1003] = {.lex_state = 152}, + [1004] = {.lex_state = 152}, + [1005] = {.lex_state = 152}, + [1006] = {.lex_state = 152}, + [1007] = {.lex_state = 152}, + [1008] = {.lex_state = 283}, + [1009] = {.lex_state = 283}, + [1010] = {.lex_state = 283}, + [1011] = {.lex_state = 283}, + [1012] = {.lex_state = 283}, + [1013] = {.lex_state = 283}, + [1014] = {.lex_state = 283}, + [1015] = {.lex_state = 283}, + [1016] = {.lex_state = 283}, + [1017] = {.lex_state = 152}, + [1018] = {.lex_state = 152}, + [1019] = {.lex_state = 283}, + [1020] = {.lex_state = 283}, + [1021] = {.lex_state = 152}, + [1022] = {.lex_state = 152}, + [1023] = {.lex_state = 152}, + [1024] = {.lex_state = 283}, + [1025] = {.lex_state = 283}, + [1026] = {.lex_state = 283}, + [1027] = {.lex_state = 283}, + [1028] = {.lex_state = 283}, + [1029] = {.lex_state = 152}, + [1030] = {.lex_state = 283}, + [1031] = {.lex_state = 283}, + [1032] = {.lex_state = 283}, + [1033] = {.lex_state = 283}, + [1034] = {.lex_state = 283}, + [1035] = {.lex_state = 283}, + [1036] = {.lex_state = 283}, + [1037] = {.lex_state = 152}, + [1038] = {.lex_state = 283}, + [1039] = {.lex_state = 283}, + [1040] = {.lex_state = 283}, + [1041] = {.lex_state = 283}, + [1042] = {.lex_state = 283}, + [1043] = {.lex_state = 283}, + [1044] = {.lex_state = 152}, + [1045] = {.lex_state = 152}, + [1046] = {.lex_state = 152}, + [1047] = {.lex_state = 283}, + [1048] = {.lex_state = 283}, + [1049] = {.lex_state = 152}, + [1050] = {.lex_state = 152}, + [1051] = {.lex_state = 283}, + [1052] = {.lex_state = 152}, + [1053] = {.lex_state = 152}, + [1054] = {.lex_state = 152}, + [1055] = {.lex_state = 283}, + [1056] = {.lex_state = 283}, + [1057] = {.lex_state = 283}, + [1058] = {.lex_state = 283}, + [1059] = {.lex_state = 283}, + [1060] = {.lex_state = 283}, + [1061] = {.lex_state = 152}, + [1062] = {.lex_state = 152}, + [1063] = {.lex_state = 283}, + [1064] = {.lex_state = 152}, + [1065] = {.lex_state = 283}, + [1066] = {.lex_state = 283}, + [1067] = {.lex_state = 152}, + [1068] = {.lex_state = 283}, + [1069] = {.lex_state = 152}, + [1070] = {.lex_state = 152}, + [1071] = {.lex_state = 283}, + [1072] = {.lex_state = 152}, + [1073] = {.lex_state = 283}, + [1074] = {.lex_state = 283}, + [1075] = {.lex_state = 283}, + [1076] = {.lex_state = 283}, + [1077] = {.lex_state = 152}, + [1078] = {.lex_state = 283}, + [1079] = {.lex_state = 152}, + [1080] = {.lex_state = 283}, + [1081] = {.lex_state = 283}, + [1082] = {.lex_state = 283}, + [1083] = {.lex_state = 283}, + [1084] = {.lex_state = 283}, + [1085] = {.lex_state = 152}, + [1086] = {.lex_state = 152}, + [1087] = {.lex_state = 283}, + [1088] = {.lex_state = 283}, + [1089] = {.lex_state = 283}, + [1090] = {.lex_state = 283}, + [1091] = {.lex_state = 283}, + [1092] = {.lex_state = 152}, + [1093] = {.lex_state = 283}, + [1094] = {.lex_state = 152}, + [1095] = {.lex_state = 152}, + [1096] = {.lex_state = 283}, + [1097] = {.lex_state = 152}, + [1098] = {.lex_state = 152}, + [1099] = {.lex_state = 152}, + [1100] = {.lex_state = 283}, + [1101] = {.lex_state = 152}, + [1102] = {.lex_state = 283}, + [1103] = {.lex_state = 152}, + [1104] = {.lex_state = 283}, + [1105] = {.lex_state = 283}, + [1106] = {.lex_state = 283}, + [1107] = {.lex_state = 283}, + [1108] = {.lex_state = 283}, + [1109] = {.lex_state = 283}, + [1110] = {.lex_state = 152}, + [1111] = {.lex_state = 152}, + [1112] = {.lex_state = 283}, + [1113] = {.lex_state = 283}, + [1114] = {.lex_state = 152}, + [1115] = {.lex_state = 152}, + [1116] = {.lex_state = 152}, + [1117] = {.lex_state = 152}, + [1118] = {.lex_state = 283}, + [1119] = {.lex_state = 283}, + [1120] = {.lex_state = 152}, + [1121] = {.lex_state = 283}, + [1122] = {.lex_state = 283}, + [1123] = {.lex_state = 283}, + [1124] = {.lex_state = 283}, + [1125] = {.lex_state = 283}, + [1126] = {.lex_state = 152}, + [1127] = {.lex_state = 152}, + [1128] = {.lex_state = 152}, + [1129] = {.lex_state = 283}, + [1130] = {.lex_state = 152}, + [1131] = {.lex_state = 152}, + [1132] = {.lex_state = 152}, + [1133] = {.lex_state = 152}, + [1134] = {.lex_state = 152}, + [1135] = {.lex_state = 152}, + [1136] = {.lex_state = 283}, + [1137] = {.lex_state = 283}, + [1138] = {.lex_state = 152}, + [1139] = {.lex_state = 283}, + [1140] = {.lex_state = 283}, + [1141] = {.lex_state = 152}, + [1142] = {.lex_state = 152}, + [1143] = {.lex_state = 283}, + [1144] = {.lex_state = 283}, + [1145] = {.lex_state = 152}, + [1146] = {.lex_state = 283}, + [1147] = {.lex_state = 283}, + [1148] = {.lex_state = 152}, + [1149] = {.lex_state = 152}, + [1150] = {.lex_state = 283}, + [1151] = {.lex_state = 152}, + [1152] = {.lex_state = 152}, + [1153] = {.lex_state = 152}, + [1154] = {.lex_state = 283}, + [1155] = {.lex_state = 283}, + [1156] = {.lex_state = 152}, + [1157] = {.lex_state = 283}, + [1158] = {.lex_state = 283}, + [1159] = {.lex_state = 283}, + [1160] = {.lex_state = 283}, + [1161] = {.lex_state = 283}, + [1162] = {.lex_state = 283}, + [1163] = {.lex_state = 152}, + [1164] = {.lex_state = 152}, + [1165] = {.lex_state = 283}, + [1166] = {.lex_state = 283}, + [1167] = {.lex_state = 283}, + [1168] = {.lex_state = 283}, + [1169] = {.lex_state = 152}, + [1170] = {.lex_state = 283}, + [1171] = {.lex_state = 152}, + [1172] = {.lex_state = 152}, + [1173] = {.lex_state = 283}, + [1174] = {.lex_state = 283}, + [1175] = {.lex_state = 283}, + [1176] = {.lex_state = 152}, + [1177] = {.lex_state = 152}, + [1178] = {.lex_state = 152}, + [1179] = {.lex_state = 152}, + [1180] = {.lex_state = 152}, + [1181] = {.lex_state = 152}, + [1182] = {.lex_state = 152}, + [1183] = {.lex_state = 283}, + [1184] = {.lex_state = 283}, + [1185] = {.lex_state = 283}, + [1186] = {.lex_state = 283}, + [1187] = {.lex_state = 152}, + [1188] = {.lex_state = 283}, + [1189] = {.lex_state = 145}, + [1190] = {.lex_state = 283}, + [1191] = {.lex_state = 283}, + [1192] = {.lex_state = 152}, + [1193] = {.lex_state = 152}, + [1194] = {.lex_state = 283}, + [1195] = {.lex_state = 152}, + [1196] = {.lex_state = 283}, + [1197] = {.lex_state = 283}, + [1198] = {.lex_state = 152}, + [1199] = {.lex_state = 283}, + [1200] = {.lex_state = 283}, + [1201] = {.lex_state = 283}, + [1202] = {.lex_state = 283}, + [1203] = {.lex_state = 283}, + [1204] = {.lex_state = 283}, + [1205] = {.lex_state = 283}, + [1206] = {.lex_state = 283}, + [1207] = {.lex_state = 283}, + [1208] = {.lex_state = 283}, + [1209] = {.lex_state = 152}, + [1210] = {.lex_state = 152}, + [1211] = {.lex_state = 283}, + [1212] = {.lex_state = 283}, + [1213] = {.lex_state = 152}, + [1214] = {.lex_state = 152}, + [1215] = {.lex_state = 152}, + [1216] = {.lex_state = 283}, + [1217] = {.lex_state = 283}, + [1218] = {.lex_state = 283}, + [1219] = {.lex_state = 152}, + [1220] = {.lex_state = 152}, + [1221] = {.lex_state = 283}, + [1222] = {.lex_state = 152}, + [1223] = {.lex_state = 283}, + [1224] = {.lex_state = 152}, + [1225] = {.lex_state = 152}, + [1226] = {.lex_state = 283}, + [1227] = {.lex_state = 152}, + [1228] = {.lex_state = 283}, + [1229] = {.lex_state = 152}, + [1230] = {.lex_state = 152}, + [1231] = {.lex_state = 283}, + [1232] = {.lex_state = 283}, + [1233] = {.lex_state = 283}, + [1234] = {.lex_state = 152}, + [1235] = {.lex_state = 152}, + [1236] = {.lex_state = 283}, + [1237] = {.lex_state = 152}, + [1238] = {.lex_state = 152}, + [1239] = {.lex_state = 283}, + [1240] = {.lex_state = 283}, + [1241] = {.lex_state = 152}, + [1242] = {.lex_state = 152}, + [1243] = {.lex_state = 152}, + [1244] = {.lex_state = 283}, + [1245] = {.lex_state = 152}, + [1246] = {.lex_state = 152}, + [1247] = {.lex_state = 283}, + [1248] = {.lex_state = 152}, + [1249] = {.lex_state = 152}, + [1250] = {.lex_state = 152}, + [1251] = {.lex_state = 152}, + [1252] = {.lex_state = 283}, + [1253] = {.lex_state = 283}, + [1254] = {.lex_state = 283}, + [1255] = {.lex_state = 152}, + [1256] = {.lex_state = 152}, + [1257] = {.lex_state = 152}, + [1258] = {.lex_state = 152}, + [1259] = {.lex_state = 283}, + [1260] = {.lex_state = 283}, + [1261] = {.lex_state = 283}, + [1262] = {.lex_state = 283}, + [1263] = {.lex_state = 283}, + [1264] = {.lex_state = 152}, + [1265] = {.lex_state = 283}, + [1266] = {.lex_state = 283}, + [1267] = {.lex_state = 283}, + [1268] = {.lex_state = 283}, + [1269] = {.lex_state = 283}, + [1270] = {.lex_state = 283}, + [1271] = {.lex_state = 283}, + [1272] = {.lex_state = 152}, + [1273] = {.lex_state = 152}, + [1274] = {.lex_state = 283}, + [1275] = {.lex_state = 283}, + [1276] = {.lex_state = 152}, + [1277] = {.lex_state = 152}, + [1278] = {.lex_state = 283}, + [1279] = {.lex_state = 152}, + [1280] = {.lex_state = 152}, + [1281] = {.lex_state = 152}, + [1282] = {.lex_state = 283}, + [1283] = {.lex_state = 152}, + [1284] = {.lex_state = 152}, + [1285] = {.lex_state = 283}, + [1286] = {.lex_state = 283}, + [1287] = {.lex_state = 283}, + [1288] = {.lex_state = 283}, + [1289] = {.lex_state = 145}, + [1290] = {.lex_state = 152}, + [1291] = {.lex_state = 152}, + [1292] = {.lex_state = 283}, + [1293] = {.lex_state = 152}, + [1294] = {.lex_state = 283}, + [1295] = {.lex_state = 152}, + [1296] = {.lex_state = 283}, + [1297] = {.lex_state = 152}, + [1298] = {.lex_state = 152}, + [1299] = {.lex_state = 152}, + [1300] = {.lex_state = 152}, + [1301] = {.lex_state = 152}, + [1302] = {.lex_state = 152}, + [1303] = {.lex_state = 152}, + [1304] = {.lex_state = 152}, + [1305] = {.lex_state = 283}, + [1306] = {.lex_state = 283}, + [1307] = {.lex_state = 283}, + [1308] = {.lex_state = 283}, + [1309] = {.lex_state = 283}, + [1310] = {.lex_state = 152}, + [1311] = {.lex_state = 152}, + [1312] = {.lex_state = 152}, + [1313] = {.lex_state = 152}, + [1314] = {.lex_state = 152}, + [1315] = {.lex_state = 283}, + [1316] = {.lex_state = 283}, + [1317] = {.lex_state = 283}, + [1318] = {.lex_state = 283}, + [1319] = {.lex_state = 283}, + [1320] = {.lex_state = 283}, + [1321] = {.lex_state = 283}, + [1322] = {.lex_state = 283}, + [1323] = {.lex_state = 283}, + [1324] = {.lex_state = 283}, + [1325] = {.lex_state = 283}, + [1326] = {.lex_state = 283}, + [1327] = {.lex_state = 283}, + [1328] = {.lex_state = 283}, + [1329] = {.lex_state = 283}, + [1330] = {.lex_state = 283}, + [1331] = {.lex_state = 283}, + [1332] = {.lex_state = 283}, + [1333] = {.lex_state = 283}, + [1334] = {.lex_state = 283}, + [1335] = {.lex_state = 283}, + [1336] = {.lex_state = 283}, + [1337] = {.lex_state = 283}, + [1338] = {.lex_state = 283}, + [1339] = {.lex_state = 283}, + [1340] = {.lex_state = 283}, + [1341] = {.lex_state = 283}, + [1342] = {.lex_state = 283}, + [1343] = {.lex_state = 283}, + [1344] = {.lex_state = 283}, + [1345] = {.lex_state = 283}, + [1346] = {.lex_state = 283}, + [1347] = {.lex_state = 283}, + [1348] = {.lex_state = 283}, + [1349] = {.lex_state = 283}, + [1350] = {.lex_state = 283}, + [1351] = {.lex_state = 283}, + [1352] = {.lex_state = 283}, + [1353] = {.lex_state = 283}, + [1354] = {.lex_state = 283}, + [1355] = {.lex_state = 283}, + [1356] = {.lex_state = 283}, + [1357] = {.lex_state = 283}, + [1358] = {.lex_state = 283}, + [1359] = {.lex_state = 283}, + [1360] = {.lex_state = 283}, + [1361] = {.lex_state = 283}, + [1362] = {.lex_state = 283}, + [1363] = {.lex_state = 283}, + [1364] = {.lex_state = 283}, + [1365] = {.lex_state = 283}, + [1366] = {.lex_state = 283}, + [1367] = {.lex_state = 283}, + [1368] = {.lex_state = 283}, + [1369] = {.lex_state = 283}, + [1370] = {.lex_state = 283}, + [1371] = {.lex_state = 283}, + [1372] = {.lex_state = 283}, + [1373] = {.lex_state = 283}, + [1374] = {.lex_state = 283}, + [1375] = {.lex_state = 283}, + [1376] = {.lex_state = 283}, + [1377] = {.lex_state = 147}, + [1378] = {.lex_state = 147}, + [1379] = {.lex_state = 209}, + [1380] = {.lex_state = 209}, + [1381] = {.lex_state = 209}, + [1382] = {.lex_state = 209}, + [1383] = {.lex_state = 209}, + [1384] = {.lex_state = 209}, + [1385] = {.lex_state = 209}, + [1386] = {.lex_state = 209}, + [1387] = {.lex_state = 209}, + [1388] = {.lex_state = 209}, + [1389] = {.lex_state = 209}, + [1390] = {.lex_state = 209}, + [1391] = {.lex_state = 209}, + [1392] = {.lex_state = 209}, + [1393] = {.lex_state = 209}, + [1394] = {.lex_state = 209}, + [1395] = {.lex_state = 209}, + [1396] = {.lex_state = 209}, + [1397] = {.lex_state = 155}, + [1398] = {.lex_state = 154}, + [1399] = {.lex_state = 154}, + [1400] = {.lex_state = 155}, + [1401] = {.lex_state = 155}, + [1402] = {.lex_state = 155}, + [1403] = {.lex_state = 155}, + [1404] = {.lex_state = 155}, + [1405] = {.lex_state = 155}, + [1406] = {.lex_state = 155}, + [1407] = {.lex_state = 155}, + [1408] = {.lex_state = 155}, + [1409] = {.lex_state = 155}, + [1410] = {.lex_state = 155}, + [1411] = {.lex_state = 155}, + [1412] = {.lex_state = 155}, + [1413] = {.lex_state = 283}, + [1414] = {.lex_state = 283}, + [1415] = {.lex_state = 155}, + [1416] = {.lex_state = 155}, + [1417] = {.lex_state = 155}, + [1418] = {.lex_state = 155}, + [1419] = {.lex_state = 155}, + [1420] = {.lex_state = 155}, + [1421] = {.lex_state = 155}, + [1422] = {.lex_state = 155}, + [1423] = {.lex_state = 155}, + [1424] = {.lex_state = 155}, + [1425] = {.lex_state = 155}, + [1426] = {.lex_state = 155}, + [1427] = {.lex_state = 283}, + [1428] = {.lex_state = 155}, + [1429] = {.lex_state = 155}, + [1430] = {.lex_state = 155}, + [1431] = {.lex_state = 155}, + [1432] = {.lex_state = 155}, + [1433] = {.lex_state = 155}, + [1434] = {.lex_state = 155}, + [1435] = {.lex_state = 155}, + [1436] = {.lex_state = 155}, + [1437] = {.lex_state = 155}, + [1438] = {.lex_state = 155}, + [1439] = {.lex_state = 155}, + [1440] = {.lex_state = 151}, + [1441] = {.lex_state = 155}, + [1442] = {.lex_state = 151}, + [1443] = {.lex_state = 155}, + [1444] = {.lex_state = 155}, + [1445] = {.lex_state = 155}, + [1446] = {.lex_state = 155}, + [1447] = {.lex_state = 155}, + [1448] = {.lex_state = 155}, + [1449] = {.lex_state = 155}, + [1450] = {.lex_state = 155}, + [1451] = {.lex_state = 155}, + [1452] = {.lex_state = 155}, + [1453] = {.lex_state = 155}, + [1454] = {.lex_state = 155}, + [1455] = {.lex_state = 155}, + [1456] = {.lex_state = 155}, + [1457] = {.lex_state = 155}, + [1458] = {.lex_state = 151}, + [1459] = {.lex_state = 151}, + [1460] = {.lex_state = 151}, + [1461] = {.lex_state = 151}, + [1462] = {.lex_state = 151}, + [1463] = {.lex_state = 151}, + [1464] = {.lex_state = 151}, + [1465] = {.lex_state = 151}, + [1466] = {.lex_state = 151}, + [1467] = {.lex_state = 151}, + [1468] = {.lex_state = 151}, + [1469] = {.lex_state = 151}, + [1470] = {.lex_state = 151}, + [1471] = {.lex_state = 151}, + [1472] = {.lex_state = 151}, + [1473] = {.lex_state = 151}, + [1474] = {.lex_state = 151}, + [1475] = {.lex_state = 151}, + [1476] = {.lex_state = 151}, + [1477] = {.lex_state = 151}, + [1478] = {.lex_state = 151}, + [1479] = {.lex_state = 151}, + [1480] = {.lex_state = 151}, + [1481] = {.lex_state = 151}, + [1482] = {.lex_state = 151}, + [1483] = {.lex_state = 151}, + [1484] = {.lex_state = 151}, + [1485] = {.lex_state = 151}, + [1486] = {.lex_state = 151}, + [1487] = {.lex_state = 151}, + [1488] = {.lex_state = 151}, + [1489] = {.lex_state = 151}, + [1490] = {.lex_state = 151}, + [1491] = {.lex_state = 151}, + [1492] = {.lex_state = 151}, + [1493] = {.lex_state = 151}, + [1494] = {.lex_state = 151}, + [1495] = {.lex_state = 151}, + [1496] = {.lex_state = 151}, + [1497] = {.lex_state = 151}, + [1498] = {.lex_state = 151}, + [1499] = {.lex_state = 151}, + [1500] = {.lex_state = 151}, + [1501] = {.lex_state = 151}, + [1502] = {.lex_state = 151}, + [1503] = {.lex_state = 151}, + [1504] = {.lex_state = 151}, + [1505] = {.lex_state = 151}, + [1506] = {.lex_state = 151}, + [1507] = {.lex_state = 151}, + [1508] = {.lex_state = 151}, + [1509] = {.lex_state = 151}, + [1510] = {.lex_state = 151}, + [1511] = {.lex_state = 151}, + [1512] = {.lex_state = 151}, + [1513] = {.lex_state = 151}, + [1514] = {.lex_state = 151}, + [1515] = {.lex_state = 151}, + [1516] = {.lex_state = 151}, + [1517] = {.lex_state = 151}, + [1518] = {.lex_state = 151}, + [1519] = {.lex_state = 151}, + [1520] = {.lex_state = 151}, + [1521] = {.lex_state = 151}, + [1522] = {.lex_state = 151}, + [1523] = {.lex_state = 151}, + [1524] = {.lex_state = 151}, + [1525] = {.lex_state = 151}, + [1526] = {.lex_state = 151}, + [1527] = {.lex_state = 151}, + [1528] = {.lex_state = 151}, + [1529] = {.lex_state = 151}, + [1530] = {.lex_state = 151}, + [1531] = {.lex_state = 151}, + [1532] = {.lex_state = 151}, + [1533] = {.lex_state = 151}, + [1534] = {.lex_state = 151}, + [1535] = {.lex_state = 151}, + [1536] = {.lex_state = 151}, + [1537] = {.lex_state = 151}, + [1538] = {.lex_state = 151}, + [1539] = {.lex_state = 151}, + [1540] = {.lex_state = 151}, + [1541] = {.lex_state = 151}, + [1542] = {.lex_state = 151}, + [1543] = {.lex_state = 151}, + [1544] = {.lex_state = 151}, + [1545] = {.lex_state = 151}, + [1546] = {.lex_state = 151}, + [1547] = {.lex_state = 151}, + [1548] = {.lex_state = 151}, + [1549] = {.lex_state = 151}, + [1550] = {.lex_state = 151}, + [1551] = {.lex_state = 151}, + [1552] = {.lex_state = 151}, + [1553] = {.lex_state = 151}, + [1554] = {.lex_state = 151}, + [1555] = {.lex_state = 151}, + [1556] = {.lex_state = 151}, + [1557] = {.lex_state = 151}, + [1558] = {.lex_state = 151}, + [1559] = {.lex_state = 151}, + [1560] = {.lex_state = 151}, + [1561] = {.lex_state = 151}, + [1562] = {.lex_state = 151}, + [1563] = {.lex_state = 151}, + [1564] = {.lex_state = 151}, + [1565] = {.lex_state = 151}, + [1566] = {.lex_state = 151}, + [1567] = {.lex_state = 151}, + [1568] = {.lex_state = 151}, + [1569] = {.lex_state = 151}, + [1570] = {.lex_state = 151}, + [1571] = {.lex_state = 151}, + [1572] = {.lex_state = 151}, + [1573] = {.lex_state = 151}, + [1574] = {.lex_state = 151}, + [1575] = {.lex_state = 151}, + [1576] = {.lex_state = 151}, + [1577] = {.lex_state = 151}, + [1578] = {.lex_state = 151}, + [1579] = {.lex_state = 151}, + [1580] = {.lex_state = 151}, + [1581] = {.lex_state = 151}, + [1582] = {.lex_state = 151}, + [1583] = {.lex_state = 151}, + [1584] = {.lex_state = 151}, + [1585] = {.lex_state = 209}, + [1586] = {.lex_state = 155}, + [1587] = {.lex_state = 155}, + [1588] = {.lex_state = 155}, + [1589] = {.lex_state = 155}, + [1590] = {.lex_state = 155}, + [1591] = {.lex_state = 155}, + [1592] = {.lex_state = 155}, + [1593] = {.lex_state = 155}, + [1594] = {.lex_state = 155}, + [1595] = {.lex_state = 155}, + [1596] = {.lex_state = 155}, + [1597] = {.lex_state = 155}, + [1598] = {.lex_state = 155}, + [1599] = {.lex_state = 155}, + [1600] = {.lex_state = 155}, + [1601] = {.lex_state = 155}, + [1602] = {.lex_state = 155}, + [1603] = {.lex_state = 154}, + [1604] = {.lex_state = 155}, + [1605] = {.lex_state = 155}, + [1606] = {.lex_state = 155}, + [1607] = {.lex_state = 154}, + [1608] = {.lex_state = 154}, + [1609] = {.lex_state = 155}, + [1610] = {.lex_state = 154}, + [1611] = {.lex_state = 154}, + [1612] = {.lex_state = 154}, + [1613] = {.lex_state = 154}, + [1614] = {.lex_state = 155}, + [1615] = {.lex_state = 155}, + [1616] = {.lex_state = 155}, + [1617] = {.lex_state = 155}, + [1618] = {.lex_state = 155}, + [1619] = {.lex_state = 155}, + [1620] = {.lex_state = 155}, + [1621] = {.lex_state = 154}, + [1622] = {.lex_state = 155}, + [1623] = {.lex_state = 154}, + [1624] = {.lex_state = 154}, + [1625] = {.lex_state = 155}, + [1626] = {.lex_state = 155}, + [1627] = {.lex_state = 155}, + [1628] = {.lex_state = 155}, + [1629] = {.lex_state = 154}, + [1630] = {.lex_state = 155}, + [1631] = {.lex_state = 154}, + [1632] = {.lex_state = 154}, + [1633] = {.lex_state = 154}, + [1634] = {.lex_state = 154}, + [1635] = {.lex_state = 155}, + [1636] = {.lex_state = 155}, + [1637] = {.lex_state = 154}, + [1638] = {.lex_state = 154}, + [1639] = {.lex_state = 155}, + [1640] = {.lex_state = 155}, + [1641] = {.lex_state = 155}, + [1642] = {.lex_state = 155}, + [1643] = {.lex_state = 155}, + [1644] = {.lex_state = 155}, + [1645] = {.lex_state = 155}, + [1646] = {.lex_state = 155}, + [1647] = {.lex_state = 155}, + [1648] = {.lex_state = 155}, + [1649] = {.lex_state = 155}, + [1650] = {.lex_state = 155}, + [1651] = {.lex_state = 154}, + [1652] = {.lex_state = 155}, + [1653] = {.lex_state = 155}, + [1654] = {.lex_state = 155}, + [1655] = {.lex_state = 155}, + [1656] = {.lex_state = 155}, + [1657] = {.lex_state = 155}, + [1658] = {.lex_state = 155}, + [1659] = {.lex_state = 155}, + [1660] = {.lex_state = 155}, + [1661] = {.lex_state = 155}, + [1662] = {.lex_state = 155}, + [1663] = {.lex_state = 155}, + [1664] = {.lex_state = 155}, + [1665] = {.lex_state = 155}, + [1666] = {.lex_state = 155}, + [1667] = {.lex_state = 155}, + [1668] = {.lex_state = 155}, + [1669] = {.lex_state = 155}, + [1670] = {.lex_state = 155}, + [1671] = {.lex_state = 155}, + [1672] = {.lex_state = 155}, + [1673] = {.lex_state = 155}, + [1674] = {.lex_state = 155}, + [1675] = {.lex_state = 155}, + [1676] = {.lex_state = 155}, + [1677] = {.lex_state = 155}, + [1678] = {.lex_state = 155}, + [1679] = {.lex_state = 155}, + [1680] = {.lex_state = 155}, + [1681] = {.lex_state = 155}, + [1682] = {.lex_state = 155}, + [1683] = {.lex_state = 155}, + [1684] = {.lex_state = 155}, + [1685] = {.lex_state = 155}, + [1686] = {.lex_state = 155}, + [1687] = {.lex_state = 155}, + [1688] = {.lex_state = 155}, + [1689] = {.lex_state = 155}, + [1690] = {.lex_state = 155}, + [1691] = {.lex_state = 155}, + [1692] = {.lex_state = 155}, + [1693] = {.lex_state = 155}, + [1694] = {.lex_state = 155}, + [1695] = {.lex_state = 155}, + [1696] = {.lex_state = 155}, + [1697] = {.lex_state = 155}, + [1698] = {.lex_state = 155}, + [1699] = {.lex_state = 155}, + [1700] = {.lex_state = 155}, + [1701] = {.lex_state = 155}, + [1702] = {.lex_state = 155}, + [1703] = {.lex_state = 155}, + [1704] = {.lex_state = 155}, + [1705] = {.lex_state = 155}, + [1706] = {.lex_state = 155}, + [1707] = {.lex_state = 155}, + [1708] = {.lex_state = 155}, + [1709] = {.lex_state = 155}, + [1710] = {.lex_state = 155}, + [1711] = {.lex_state = 155}, + [1712] = {.lex_state = 155}, + [1713] = {.lex_state = 155}, + [1714] = {.lex_state = 155}, + [1715] = {.lex_state = 155}, + [1716] = {.lex_state = 155}, + [1717] = {.lex_state = 155}, + [1718] = {.lex_state = 155}, + [1719] = {.lex_state = 155}, + [1720] = {.lex_state = 155}, + [1721] = {.lex_state = 155}, + [1722] = {.lex_state = 155}, + [1723] = {.lex_state = 155}, + [1724] = {.lex_state = 155}, + [1725] = {.lex_state = 155}, + [1726] = {.lex_state = 155}, + [1727] = {.lex_state = 155}, + [1728] = {.lex_state = 155}, + [1729] = {.lex_state = 155}, + [1730] = {.lex_state = 155}, + [1731] = {.lex_state = 155}, + [1732] = {.lex_state = 155}, + [1733] = {.lex_state = 155}, + [1734] = {.lex_state = 155}, + [1735] = {.lex_state = 155}, + [1736] = {.lex_state = 155}, + [1737] = {.lex_state = 155}, + [1738] = {.lex_state = 155}, + [1739] = {.lex_state = 155}, + [1740] = {.lex_state = 155}, + [1741] = {.lex_state = 155}, + [1742] = {.lex_state = 155}, + [1743] = {.lex_state = 155}, + [1744] = {.lex_state = 155}, + [1745] = {.lex_state = 155}, + [1746] = {.lex_state = 155}, + [1747] = {.lex_state = 155}, + [1748] = {.lex_state = 155}, + [1749] = {.lex_state = 155}, + [1750] = {.lex_state = 155}, + [1751] = {.lex_state = 155}, + [1752] = {.lex_state = 155}, + [1753] = {.lex_state = 155}, + [1754] = {.lex_state = 155}, + [1755] = {.lex_state = 155}, + [1756] = {.lex_state = 155}, + [1757] = {.lex_state = 155}, + [1758] = {.lex_state = 155}, + [1759] = {.lex_state = 155}, + [1760] = {.lex_state = 155}, + [1761] = {.lex_state = 155}, + [1762] = {.lex_state = 155}, + [1763] = {.lex_state = 155}, + [1764] = {.lex_state = 155}, + [1765] = {.lex_state = 155}, + [1766] = {.lex_state = 155}, + [1767] = {.lex_state = 155}, + [1768] = {.lex_state = 155}, + [1769] = {.lex_state = 155}, + [1770] = {.lex_state = 155}, + [1771] = {.lex_state = 155}, + [1772] = {.lex_state = 155}, + [1773] = {.lex_state = 155}, + [1774] = {.lex_state = 155}, + [1775] = {.lex_state = 155}, + [1776] = {.lex_state = 155}, + [1777] = {.lex_state = 155}, + [1778] = {.lex_state = 155}, + [1779] = {.lex_state = 155}, + [1780] = {.lex_state = 155}, + [1781] = {.lex_state = 155}, + [1782] = {.lex_state = 155}, + [1783] = {.lex_state = 155}, + [1784] = {.lex_state = 155}, + [1785] = {.lex_state = 155}, + [1786] = {.lex_state = 155}, + [1787] = {.lex_state = 155}, + [1788] = {.lex_state = 155}, + [1789] = {.lex_state = 155}, + [1790] = {.lex_state = 155}, + [1791] = {.lex_state = 155}, + [1792] = {.lex_state = 155}, + [1793] = {.lex_state = 155}, + [1794] = {.lex_state = 155}, + [1795] = {.lex_state = 155}, + [1796] = {.lex_state = 155}, + [1797] = {.lex_state = 155}, + [1798] = {.lex_state = 155}, + [1799] = {.lex_state = 155}, + [1800] = {.lex_state = 155}, + [1801] = {.lex_state = 155}, + [1802] = {.lex_state = 155}, + [1803] = {.lex_state = 155}, + [1804] = {.lex_state = 155}, + [1805] = {.lex_state = 155}, + [1806] = {.lex_state = 155}, + [1807] = {.lex_state = 155}, + [1808] = {.lex_state = 155}, + [1809] = {.lex_state = 155}, + [1810] = {.lex_state = 155}, + [1811] = {.lex_state = 155}, + [1812] = {.lex_state = 155}, + [1813] = {.lex_state = 155}, + [1814] = {.lex_state = 155}, + [1815] = {.lex_state = 155}, + [1816] = {.lex_state = 155}, + [1817] = {.lex_state = 155}, + [1818] = {.lex_state = 155}, + [1819] = {.lex_state = 155}, + [1820] = {.lex_state = 155}, + [1821] = {.lex_state = 155}, + [1822] = {.lex_state = 155}, + [1823] = {.lex_state = 155}, + [1824] = {.lex_state = 155}, + [1825] = {.lex_state = 155}, + [1826] = {.lex_state = 155}, + [1827] = {.lex_state = 155}, + [1828] = {.lex_state = 155}, + [1829] = {.lex_state = 155}, + [1830] = {.lex_state = 155}, + [1831] = {.lex_state = 155}, + [1832] = {.lex_state = 155}, + [1833] = {.lex_state = 155}, + [1834] = {.lex_state = 155}, + [1835] = {.lex_state = 155}, + [1836] = {.lex_state = 155}, + [1837] = {.lex_state = 155}, + [1838] = {.lex_state = 155}, + [1839] = {.lex_state = 155}, + [1840] = {.lex_state = 155}, + [1841] = {.lex_state = 155}, + [1842] = {.lex_state = 155}, + [1843] = {.lex_state = 155}, + [1844] = {.lex_state = 155}, + [1845] = {.lex_state = 155}, + [1846] = {.lex_state = 155}, + [1847] = {.lex_state = 155}, + [1848] = {.lex_state = 155}, + [1849] = {.lex_state = 155}, + [1850] = {.lex_state = 155}, + [1851] = {.lex_state = 155}, + [1852] = {.lex_state = 155}, + [1853] = {.lex_state = 155}, + [1854] = {.lex_state = 155}, + [1855] = {.lex_state = 155}, + [1856] = {.lex_state = 155}, + [1857] = {.lex_state = 155}, + [1858] = {.lex_state = 155}, + [1859] = {.lex_state = 155}, + [1860] = {.lex_state = 155}, + [1861] = {.lex_state = 155}, + [1862] = {.lex_state = 155}, + [1863] = {.lex_state = 155}, + [1864] = {.lex_state = 155}, + [1865] = {.lex_state = 155}, + [1866] = {.lex_state = 155}, + [1867] = {.lex_state = 155}, + [1868] = {.lex_state = 155}, + [1869] = {.lex_state = 155}, + [1870] = {.lex_state = 155}, + [1871] = {.lex_state = 155}, + [1872] = {.lex_state = 155}, + [1873] = {.lex_state = 155}, + [1874] = {.lex_state = 155}, + [1875] = {.lex_state = 155}, + [1876] = {.lex_state = 155}, + [1877] = {.lex_state = 155}, + [1878] = {.lex_state = 155}, + [1879] = {.lex_state = 155}, + [1880] = {.lex_state = 155}, + [1881] = {.lex_state = 155}, + [1882] = {.lex_state = 155}, + [1883] = {.lex_state = 155}, + [1884] = {.lex_state = 155}, + [1885] = {.lex_state = 155}, + [1886] = {.lex_state = 155}, + [1887] = {.lex_state = 155}, + [1888] = {.lex_state = 155}, + [1889] = {.lex_state = 155}, + [1890] = {.lex_state = 155}, + [1891] = {.lex_state = 155}, + [1892] = {.lex_state = 155}, + [1893] = {.lex_state = 155}, + [1894] = {.lex_state = 155}, + [1895] = {.lex_state = 155}, + [1896] = {.lex_state = 155}, + [1897] = {.lex_state = 155}, + [1898] = {.lex_state = 155}, + [1899] = {.lex_state = 155}, + [1900] = {.lex_state = 155}, + [1901] = {.lex_state = 155}, + [1902] = {.lex_state = 155}, + [1903] = {.lex_state = 155}, + [1904] = {.lex_state = 155}, + [1905] = {.lex_state = 155}, + [1906] = {.lex_state = 155}, + [1907] = {.lex_state = 155}, + [1908] = {.lex_state = 155}, + [1909] = {.lex_state = 155}, + [1910] = {.lex_state = 155}, + [1911] = {.lex_state = 155}, + [1912] = {.lex_state = 155}, + [1913] = {.lex_state = 155}, + [1914] = {.lex_state = 155}, + [1915] = {.lex_state = 155}, + [1916] = {.lex_state = 155}, + [1917] = {.lex_state = 155}, + [1918] = {.lex_state = 155}, + [1919] = {.lex_state = 155}, + [1920] = {.lex_state = 155}, + [1921] = {.lex_state = 155}, + [1922] = {.lex_state = 155}, + [1923] = {.lex_state = 155}, + [1924] = {.lex_state = 155}, + [1925] = {.lex_state = 155}, + [1926] = {.lex_state = 155}, + [1927] = {.lex_state = 155}, + [1928] = {.lex_state = 155}, + [1929] = {.lex_state = 155}, + [1930] = {.lex_state = 155}, + [1931] = {.lex_state = 155}, + [1932] = {.lex_state = 155}, + [1933] = {.lex_state = 155}, + [1934] = {.lex_state = 155}, + [1935] = {.lex_state = 155}, + [1936] = {.lex_state = 155}, + [1937] = {.lex_state = 155}, + [1938] = {.lex_state = 155}, + [1939] = {.lex_state = 155}, + [1940] = {.lex_state = 155}, + [1941] = {.lex_state = 155}, + [1942] = {.lex_state = 155}, + [1943] = {.lex_state = 155}, + [1944] = {.lex_state = 155}, + [1945] = {.lex_state = 155}, + [1946] = {.lex_state = 155}, + [1947] = {.lex_state = 155}, + [1948] = {.lex_state = 155}, + [1949] = {.lex_state = 155}, + [1950] = {.lex_state = 155}, + [1951] = {.lex_state = 155}, + [1952] = {.lex_state = 155}, + [1953] = {.lex_state = 155}, + [1954] = {.lex_state = 155}, + [1955] = {.lex_state = 155}, + [1956] = {.lex_state = 155}, + [1957] = {.lex_state = 155}, + [1958] = {.lex_state = 155}, + [1959] = {.lex_state = 155}, + [1960] = {.lex_state = 155}, + [1961] = {.lex_state = 155}, + [1962] = {.lex_state = 155}, + [1963] = {.lex_state = 155}, + [1964] = {.lex_state = 155}, + [1965] = {.lex_state = 155}, + [1966] = {.lex_state = 155}, + [1967] = {.lex_state = 155}, + [1968] = {.lex_state = 155}, + [1969] = {.lex_state = 155}, + [1970] = {.lex_state = 155}, + [1971] = {.lex_state = 155}, + [1972] = {.lex_state = 155}, + [1973] = {.lex_state = 155}, + [1974] = {.lex_state = 155}, + [1975] = {.lex_state = 155}, + [1976] = {.lex_state = 155}, + [1977] = {.lex_state = 155}, + [1978] = {.lex_state = 155}, + [1979] = {.lex_state = 155}, + [1980] = {.lex_state = 155}, + [1981] = {.lex_state = 155}, + [1982] = {.lex_state = 155}, + [1983] = {.lex_state = 155}, + [1984] = {.lex_state = 155}, + [1985] = {.lex_state = 155}, + [1986] = {.lex_state = 155}, + [1987] = {.lex_state = 155}, + [1988] = {.lex_state = 155}, + [1989] = {.lex_state = 155}, + [1990] = {.lex_state = 155}, + [1991] = {.lex_state = 155}, + [1992] = {.lex_state = 155}, + [1993] = {.lex_state = 155}, + [1994] = {.lex_state = 155}, + [1995] = {.lex_state = 155}, + [1996] = {.lex_state = 155}, + [1997] = {.lex_state = 155}, + [1998] = {.lex_state = 155}, + [1999] = {.lex_state = 155}, + [2000] = {.lex_state = 155}, + [2001] = {.lex_state = 155}, + [2002] = {.lex_state = 155}, + [2003] = {.lex_state = 155}, + [2004] = {.lex_state = 155}, + [2005] = {.lex_state = 155}, + [2006] = {.lex_state = 155}, + [2007] = {.lex_state = 155}, + [2008] = {.lex_state = 155}, + [2009] = {.lex_state = 155}, + [2010] = {.lex_state = 155}, + [2011] = {.lex_state = 155}, + [2012] = {.lex_state = 155}, + [2013] = {.lex_state = 155}, + [2014] = {.lex_state = 155}, + [2015] = {.lex_state = 155}, + [2016] = {.lex_state = 155}, + [2017] = {.lex_state = 155}, + [2018] = {.lex_state = 155}, + [2019] = {.lex_state = 155}, + [2020] = {.lex_state = 155}, + [2021] = {.lex_state = 155}, + [2022] = {.lex_state = 155}, + [2023] = {.lex_state = 155}, + [2024] = {.lex_state = 155}, + [2025] = {.lex_state = 155}, + [2026] = {.lex_state = 155}, + [2027] = {.lex_state = 155}, + [2028] = {.lex_state = 155}, + [2029] = {.lex_state = 155}, + [2030] = {.lex_state = 155}, + [2031] = {.lex_state = 155}, + [2032] = {.lex_state = 155}, + [2033] = {.lex_state = 155}, + [2034] = {.lex_state = 155}, + [2035] = {.lex_state = 155}, + [2036] = {.lex_state = 155}, + [2037] = {.lex_state = 155}, + [2038] = {.lex_state = 155}, + [2039] = {.lex_state = 155}, + [2040] = {.lex_state = 155}, + [2041] = {.lex_state = 155}, + [2042] = {.lex_state = 155}, + [2043] = {.lex_state = 155}, + [2044] = {.lex_state = 155}, + [2045] = {.lex_state = 155}, + [2046] = {.lex_state = 155}, + [2047] = {.lex_state = 155}, + [2048] = {.lex_state = 155}, + [2049] = {.lex_state = 155}, + [2050] = {.lex_state = 155}, + [2051] = {.lex_state = 155}, + [2052] = {.lex_state = 155}, + [2053] = {.lex_state = 155}, + [2054] = {.lex_state = 155}, + [2055] = {.lex_state = 155}, + [2056] = {.lex_state = 155}, + [2057] = {.lex_state = 155}, + [2058] = {.lex_state = 155}, + [2059] = {.lex_state = 155}, + [2060] = {.lex_state = 155}, + [2061] = {.lex_state = 155}, + [2062] = {.lex_state = 155}, + [2063] = {.lex_state = 155}, + [2064] = {.lex_state = 155}, + [2065] = {.lex_state = 155}, + [2066] = {.lex_state = 155}, + [2067] = {.lex_state = 155}, + [2068] = {.lex_state = 155}, + [2069] = {.lex_state = 155}, + [2070] = {.lex_state = 155}, + [2071] = {.lex_state = 155}, + [2072] = {.lex_state = 155}, + [2073] = {.lex_state = 155}, + [2074] = {.lex_state = 155}, + [2075] = {.lex_state = 155}, + [2076] = {.lex_state = 155}, + [2077] = {.lex_state = 209}, + [2078] = {.lex_state = 209}, + [2079] = {.lex_state = 209}, + [2080] = {.lex_state = 209}, + [2081] = {.lex_state = 209}, + [2082] = {.lex_state = 176}, + [2083] = {.lex_state = 169}, + [2084] = {.lex_state = 169}, + [2085] = {.lex_state = 176}, + [2086] = {.lex_state = 169}, + [2087] = {.lex_state = 176}, + [2088] = {.lex_state = 176}, + [2089] = {.lex_state = 176}, + [2090] = {.lex_state = 176}, + [2091] = {.lex_state = 176}, + [2092] = {.lex_state = 176}, + [2093] = {.lex_state = 169}, + [2094] = {.lex_state = 176}, + [2095] = {.lex_state = 176}, + [2096] = {.lex_state = 176}, + [2097] = {.lex_state = 169}, + [2098] = {.lex_state = 169}, + [2099] = {.lex_state = 176}, + [2100] = {.lex_state = 176}, + [2101] = {.lex_state = 169}, + [2102] = {.lex_state = 169}, + [2103] = {.lex_state = 176}, + [2104] = {.lex_state = 176}, + [2105] = {.lex_state = 169}, + [2106] = {.lex_state = 176}, + [2107] = {.lex_state = 176}, + [2108] = {.lex_state = 169}, + [2109] = {.lex_state = 176}, + [2110] = {.lex_state = 176}, + [2111] = {.lex_state = 176}, + [2112] = {.lex_state = 176}, + [2113] = {.lex_state = 176}, + [2114] = {.lex_state = 176}, + [2115] = {.lex_state = 176}, + [2116] = {.lex_state = 176}, + [2117] = {.lex_state = 176}, + [2118] = {.lex_state = 151}, + [2119] = {.lex_state = 209}, + [2120] = {.lex_state = 209}, + [2121] = {.lex_state = 169}, + [2122] = {.lex_state = 151}, + [2123] = {.lex_state = 169}, + [2124] = {.lex_state = 169}, + [2125] = {.lex_state = 169}, + [2126] = {.lex_state = 169}, + [2127] = {.lex_state = 169}, + [2128] = {.lex_state = 169}, + [2129] = {.lex_state = 151}, + [2130] = {.lex_state = 169}, + [2131] = {.lex_state = 192}, + [2132] = {.lex_state = 192}, + [2133] = {.lex_state = 192}, + [2134] = {.lex_state = 192}, + [2135] = {.lex_state = 192}, + [2136] = {.lex_state = 192}, + [2137] = {.lex_state = 192}, + [2138] = {.lex_state = 209}, + [2139] = {.lex_state = 209}, + [2140] = {.lex_state = 209}, + [2141] = {.lex_state = 209}, + [2142] = {.lex_state = 209}, + [2143] = {.lex_state = 168}, + [2144] = {.lex_state = 209}, + [2145] = {.lex_state = 209}, + [2146] = {.lex_state = 168}, + [2147] = {.lex_state = 168}, + [2148] = {.lex_state = 168}, + [2149] = {.lex_state = 209}, + [2150] = {.lex_state = 209}, + [2151] = {.lex_state = 209}, + [2152] = {.lex_state = 209}, + [2153] = {.lex_state = 168}, + [2154] = {.lex_state = 209}, + [2155] = {.lex_state = 209}, + [2156] = {.lex_state = 168}, + [2157] = {.lex_state = 209}, + [2158] = {.lex_state = 168}, + [2159] = {.lex_state = 169}, + [2160] = {.lex_state = 169}, + [2161] = {.lex_state = 168}, + [2162] = {.lex_state = 209}, + [2163] = {.lex_state = 178}, + [2164] = {.lex_state = 178}, + [2165] = {.lex_state = 178}, + [2166] = {.lex_state = 178}, + [2167] = {.lex_state = 169}, + [2168] = {.lex_state = 209}, + [2169] = {.lex_state = 168}, + [2170] = {.lex_state = 159}, + [2171] = {.lex_state = 178}, + [2172] = {.lex_state = 178}, + [2173] = {.lex_state = 159}, + [2174] = {.lex_state = 159}, + [2175] = {.lex_state = 178}, [2176] = {.lex_state = 168}, - [2177] = {.lex_state = 198}, - [2178] = {.lex_state = 157}, - [2179] = {.lex_state = 197}, - [2180] = {.lex_state = 170}, - [2181] = {.lex_state = 157}, - [2182] = {.lex_state = 197}, - [2183] = {.lex_state = 197}, - [2184] = {.lex_state = 174}, - [2185] = {.lex_state = 156}, - [2186] = {.lex_state = 168}, - [2187] = {.lex_state = 168}, - [2188] = {.lex_state = 168}, - [2189] = {.lex_state = 157}, - [2190] = {.lex_state = 157}, - [2191] = {.lex_state = 197}, - [2192] = {.lex_state = 157}, - [2193] = {.lex_state = 168}, - [2194] = {.lex_state = 186}, - [2195] = {.lex_state = 157}, - [2196] = {.lex_state = 156}, - [2197] = {.lex_state = 198}, - [2198] = {.lex_state = 165}, - [2199] = {.lex_state = 158}, - [2200] = {.lex_state = 168}, - [2201] = {.lex_state = 166}, + [2177] = {.lex_state = 209}, + [2178] = {.lex_state = 209}, + [2179] = {.lex_state = 209}, + [2180] = {.lex_state = 209}, + [2181] = {.lex_state = 168}, + [2182] = {.lex_state = 209}, + [2183] = {.lex_state = 168}, + [2184] = {.lex_state = 209}, + [2185] = {.lex_state = 168}, + [2186] = {.lex_state = 209}, + [2187] = {.lex_state = 209}, + [2188] = {.lex_state = 209}, + [2189] = {.lex_state = 168}, + [2190] = {.lex_state = 209}, + [2191] = {.lex_state = 209}, + [2192] = {.lex_state = 209}, + [2193] = {.lex_state = 209}, + [2194] = {.lex_state = 168}, + [2195] = {.lex_state = 209}, + [2196] = {.lex_state = 209}, + [2197] = {.lex_state = 209}, + [2198] = {.lex_state = 168}, + [2199] = {.lex_state = 168}, + [2200] = {.lex_state = 151}, + [2201] = {.lex_state = 192}, [2202] = {.lex_state = 157}, - [2203] = {.lex_state = 157}, + [2203] = {.lex_state = 151}, [2204] = {.lex_state = 157}, - [2205] = {.lex_state = 156}, - [2206] = {.lex_state = 157}, - [2207] = {.lex_state = 172}, - [2208] = {.lex_state = 157}, - [2209] = {.lex_state = 156}, - [2210] = {.lex_state = 198}, - [2211] = {.lex_state = 183}, - [2212] = {.lex_state = 198}, - [2213] = {.lex_state = 167}, - [2214] = {.lex_state = 198}, - [2215] = {.lex_state = 156}, - [2216] = {.lex_state = 157}, - [2217] = {.lex_state = 198}, - [2218] = {.lex_state = 156}, - [2219] = {.lex_state = 156}, - [2220] = {.lex_state = 156}, - [2221] = {.lex_state = 156}, - [2222] = {.lex_state = 156}, - [2223] = {.lex_state = 144}, - [2224] = {.lex_state = 156}, - [2225] = {.lex_state = 156}, - [2226] = {.lex_state = 156}, - [2227] = {.lex_state = 156}, - [2228] = {.lex_state = 156}, - [2229] = {.lex_state = 156}, - [2230] = {.lex_state = 156}, - [2231] = {.lex_state = 156}, - [2232] = {.lex_state = 156}, - [2233] = {.lex_state = 156}, - [2234] = {.lex_state = 183}, - [2235] = {.lex_state = 157}, - [2236] = {.lex_state = 156}, - [2237] = {.lex_state = 156}, - [2238] = {.lex_state = 156}, - [2239] = {.lex_state = 156}, - [2240] = {.lex_state = 156}, - [2241] = {.lex_state = 159}, - [2242] = {.lex_state = 139}, - [2243] = {.lex_state = 156}, - [2244] = {.lex_state = 139}, - [2245] = {.lex_state = 172}, - [2246] = {.lex_state = 198}, - [2247] = {.lex_state = 183}, - [2248] = {.lex_state = 198}, - [2249] = {.lex_state = 198}, - [2250] = {.lex_state = 184}, - [2251] = {.lex_state = 198}, - [2252] = {.lex_state = 159}, - [2253] = {.lex_state = 198}, + [2205] = {.lex_state = 192}, + [2206] = {.lex_state = 169}, + [2207] = {.lex_state = 157}, + [2208] = {.lex_state = 178}, + [2209] = {.lex_state = 192}, + [2210] = {.lex_state = 178}, + [2211] = {.lex_state = 159}, + [2212] = {.lex_state = 209}, + [2213] = {.lex_state = 159}, + [2214] = {.lex_state = 159}, + [2215] = {.lex_state = 209}, + [2216] = {.lex_state = 209}, + [2217] = {.lex_state = 159}, + [2218] = {.lex_state = 178}, + [2219] = {.lex_state = 209}, + [2220] = {.lex_state = 209}, + [2221] = {.lex_state = 209}, + [2222] = {.lex_state = 196}, + [2223] = {.lex_state = 209}, + [2224] = {.lex_state = 161}, + [2225] = {.lex_state = 161}, + [2226] = {.lex_state = 209}, + [2227] = {.lex_state = 161}, + [2228] = {.lex_state = 168}, + [2229] = {.lex_state = 180}, + [2230] = {.lex_state = 196}, + [2231] = {.lex_state = 180}, + [2232] = {.lex_state = 209}, + [2233] = {.lex_state = 167}, + [2234] = {.lex_state = 192}, + [2235] = {.lex_state = 192}, + [2236] = {.lex_state = 192}, + [2237] = {.lex_state = 192}, + [2238] = {.lex_state = 192}, + [2239] = {.lex_state = 157}, + [2240] = {.lex_state = 192}, + [2241] = {.lex_state = 192}, + [2242] = {.lex_state = 157}, + [2243] = {.lex_state = 192}, + [2244] = {.lex_state = 209}, + [2245] = {.lex_state = 209}, + [2246] = {.lex_state = 192}, + [2247] = {.lex_state = 192}, + [2248] = {.lex_state = 157}, + [2249] = {.lex_state = 192}, + [2250] = {.lex_state = 192}, + [2251] = {.lex_state = 209}, + [2252] = {.lex_state = 167}, + [2253] = {.lex_state = 157}, [2254] = {.lex_state = 157}, - [2255] = {.lex_state = 183}, - [2256] = {.lex_state = 198}, - [2257] = {.lex_state = 198}, - [2258] = {.lex_state = 166}, - [2259] = {.lex_state = 156}, - [2260] = {.lex_state = 156}, - [2261] = {.lex_state = 156}, - [2262] = {.lex_state = 198}, - [2263] = {.lex_state = 198}, - [2264] = {.lex_state = 198}, - [2265] = {.lex_state = 186}, - [2266] = {.lex_state = 158}, - [2267] = {.lex_state = 198}, - [2268] = {.lex_state = 156}, - [2269] = {.lex_state = 156}, - [2270] = {.lex_state = 173}, - [2271] = {.lex_state = 156}, - [2272] = {.lex_state = 156}, - [2273] = {.lex_state = 198}, - [2274] = {.lex_state = 198}, - [2275] = {.lex_state = 156}, - [2276] = {.lex_state = 184}, - [2277] = {.lex_state = 198}, - [2278] = {.lex_state = 198}, - [2279] = {.lex_state = 165}, - [2280] = {.lex_state = 198}, - [2281] = {.lex_state = 156}, - [2282] = {.lex_state = 156}, - [2283] = {.lex_state = 165}, - [2284] = {.lex_state = 198}, - [2285] = {.lex_state = 156}, - [2286] = {.lex_state = 156}, - [2287] = {.lex_state = 156}, - [2288] = {.lex_state = 183}, - [2289] = {.lex_state = 156}, - [2290] = {.lex_state = 156}, - [2291] = {.lex_state = 156}, - [2292] = {.lex_state = 156}, - [2293] = {.lex_state = 157}, - [2294] = {.lex_state = 183}, - [2295] = {.lex_state = 183}, - [2296] = {.lex_state = 183}, - [2297] = {.lex_state = 156}, - [2298] = {.lex_state = 183}, - [2299] = {.lex_state = 198}, - [2300] = {.lex_state = 156}, - [2301] = {.lex_state = 156}, - [2302] = {.lex_state = 198}, - [2303] = {.lex_state = 156}, - [2304] = {.lex_state = 156}, - [2305] = {.lex_state = 198}, - [2306] = {.lex_state = 165}, - [2307] = {.lex_state = 156}, - [2308] = {.lex_state = 156}, - [2309] = {.lex_state = 156}, - [2310] = {.lex_state = 156}, - [2311] = {.lex_state = 198}, - [2312] = {.lex_state = 198}, - [2313] = {.lex_state = 156}, - [2314] = {.lex_state = 156}, - [2315] = {.lex_state = 156}, - [2316] = {.lex_state = 198}, - [2317] = {.lex_state = 198}, - [2318] = {.lex_state = 198}, - [2319] = {.lex_state = 157}, - [2320] = {.lex_state = 157}, - [2321] = {.lex_state = 198}, - [2322] = {.lex_state = 159}, - [2323] = {.lex_state = 156}, - [2324] = {.lex_state = 198}, - [2325] = {.lex_state = 198}, - [2326] = {.lex_state = 183}, - [2327] = {.lex_state = 156}, - [2328] = {.lex_state = 156}, - [2329] = {.lex_state = 156}, - [2330] = {.lex_state = 198}, - [2331] = {.lex_state = 157}, - [2332] = {.lex_state = 198}, - [2333] = {.lex_state = 157}, - [2334] = {.lex_state = 157}, - [2335] = {.lex_state = 157}, - [2336] = {.lex_state = 156}, - [2337] = {.lex_state = 198}, - [2338] = {.lex_state = 156}, - [2339] = {.lex_state = 157}, - [2340] = {.lex_state = 156}, - [2341] = {.lex_state = 198}, - [2342] = {.lex_state = 157}, - [2343] = {.lex_state = 157}, - [2344] = {.lex_state = 156}, - [2345] = {.lex_state = 198}, - [2346] = {.lex_state = 198}, - [2347] = {.lex_state = 198}, - [2348] = {.lex_state = 198}, - [2349] = {.lex_state = 198}, - [2350] = {.lex_state = 198}, - [2351] = {.lex_state = 198}, - [2352] = {.lex_state = 198}, - [2353] = {.lex_state = 198}, - [2354] = {.lex_state = 198}, - [2355] = {.lex_state = 156}, - [2356] = {.lex_state = 186}, - [2357] = {.lex_state = 156}, - [2358] = {.lex_state = 157}, - [2359] = {.lex_state = 157}, - [2360] = {.lex_state = 157}, - [2361] = {.lex_state = 156}, - [2362] = {.lex_state = 157}, - [2363] = {.lex_state = 157}, - [2364] = {.lex_state = 198}, - [2365] = {.lex_state = 139}, - [2366] = {.lex_state = 198}, - [2367] = {.lex_state = 183}, - [2368] = {.lex_state = 183}, - [2369] = {.lex_state = 183}, - [2370] = {.lex_state = 198}, - [2371] = {.lex_state = 198}, - [2372] = {.lex_state = 198}, - [2373] = {.lex_state = 198}, - [2374] = {.lex_state = 198}, - [2375] = {.lex_state = 165}, + [2255] = {.lex_state = 157}, + [2256] = {.lex_state = 192}, + [2257] = {.lex_state = 167}, + [2258] = {.lex_state = 157}, + [2259] = {.lex_state = 192}, + [2260] = {.lex_state = 167}, + [2261] = {.lex_state = 209}, + [2262] = {.lex_state = 209}, + [2263] = {.lex_state = 209}, + [2264] = {.lex_state = 209}, + [2265] = {.lex_state = 209}, + [2266] = {.lex_state = 209}, + [2267] = {.lex_state = 172}, + [2268] = {.lex_state = 209}, + [2269] = {.lex_state = 209}, + [2270] = {.lex_state = 209}, + [2271] = {.lex_state = 181}, + [2272] = {.lex_state = 209}, + [2273] = {.lex_state = 209}, + [2274] = {.lex_state = 209}, + [2275] = {.lex_state = 209}, + [2276] = {.lex_state = 209}, + [2277] = {.lex_state = 209}, + [2278] = {.lex_state = 209}, + [2279] = {.lex_state = 209}, + [2280] = {.lex_state = 209}, + [2281] = {.lex_state = 209}, + [2282] = {.lex_state = 209}, + [2283] = {.lex_state = 209}, + [2284] = {.lex_state = 181}, + [2285] = {.lex_state = 209}, + [2286] = {.lex_state = 209}, + [2287] = {.lex_state = 209}, + [2288] = {.lex_state = 209}, + [2289] = {.lex_state = 209}, + [2290] = {.lex_state = 209}, + [2291] = {.lex_state = 209}, + [2292] = {.lex_state = 209}, + [2293] = {.lex_state = 209}, + [2294] = {.lex_state = 209}, + [2295] = {.lex_state = 209}, + [2296] = {.lex_state = 209}, + [2297] = {.lex_state = 209}, + [2298] = {.lex_state = 209}, + [2299] = {.lex_state = 209}, + [2300] = {.lex_state = 209}, + [2301] = {.lex_state = 155}, + [2302] = {.lex_state = 209}, + [2303] = {.lex_state = 209}, + [2304] = {.lex_state = 209}, + [2305] = {.lex_state = 209}, + [2306] = {.lex_state = 181}, + [2307] = {.lex_state = 209}, + [2308] = {.lex_state = 209}, + [2309] = {.lex_state = 209}, + [2310] = {.lex_state = 209}, + [2311] = {.lex_state = 167}, + [2312] = {.lex_state = 209}, + [2313] = {.lex_state = 209}, + [2314] = {.lex_state = 209}, + [2315] = {.lex_state = 209}, + [2316] = {.lex_state = 209}, + [2317] = {.lex_state = 209}, + [2318] = {.lex_state = 209}, + [2319] = {.lex_state = 209}, + [2320] = {.lex_state = 209}, + [2321] = {.lex_state = 209}, + [2322] = {.lex_state = 209}, + [2323] = {.lex_state = 209}, + [2324] = {.lex_state = 209}, + [2325] = {.lex_state = 209}, + [2326] = {.lex_state = 209}, + [2327] = {.lex_state = 209}, + [2328] = {.lex_state = 209}, + [2329] = {.lex_state = 209}, + [2330] = {.lex_state = 209}, + [2331] = {.lex_state = 209}, + [2332] = {.lex_state = 209}, + [2333] = {.lex_state = 209}, + [2334] = {.lex_state = 209}, + [2335] = {.lex_state = 209}, + [2336] = {.lex_state = 209}, + [2337] = {.lex_state = 209}, + [2338] = {.lex_state = 209}, + [2339] = {.lex_state = 209}, + [2340] = {.lex_state = 209}, + [2341] = {.lex_state = 172}, + [2342] = {.lex_state = 209}, + [2343] = {.lex_state = 209}, + [2344] = {.lex_state = 209}, + [2345] = {.lex_state = 209}, + [2346] = {.lex_state = 209}, + [2347] = {.lex_state = 181}, + [2348] = {.lex_state = 208}, + [2349] = {.lex_state = 210}, + [2350] = {.lex_state = 170}, + [2351] = {.lex_state = 181}, + [2352] = {.lex_state = 161}, + [2353] = {.lex_state = 170}, + [2354] = {.lex_state = 181}, + [2355] = {.lex_state = 193}, + [2356] = {.lex_state = 161}, + [2357] = {.lex_state = 208}, + [2358] = {.lex_state = 161}, + [2359] = {.lex_state = 177}, + [2360] = {.lex_state = 210}, + [2361] = {.lex_state = 170}, + [2362] = {.lex_state = 181}, + [2363] = {.lex_state = 167}, + [2364] = {.lex_state = 177}, + [2365] = {.lex_state = 167}, + [2366] = {.lex_state = 161}, + [2367] = {.lex_state = 167}, + [2368] = {.lex_state = 208}, + [2369] = {.lex_state = 210}, + [2370] = {.lex_state = 210}, + [2371] = {.lex_state = 193}, + [2372] = {.lex_state = 208}, + [2373] = {.lex_state = 167}, + [2374] = {.lex_state = 167}, + [2375] = {.lex_state = 167}, [2376] = {.lex_state = 157}, - [2377] = {.lex_state = 157}, - [2378] = {.lex_state = 156}, - [2379] = {.lex_state = 157}, - [2380] = {.lex_state = 156}, - [2381] = {.lex_state = 139}, - [2382] = {.lex_state = 157}, - [2383] = {.lex_state = 157}, - [2384] = {.lex_state = 198}, - [2385] = {.lex_state = 198}, - [2386] = {.lex_state = 157}, - [2387] = {.lex_state = 156}, - [2388] = {.lex_state = 156}, - [2389] = {.lex_state = 156}, + [2377] = {.lex_state = 167}, + [2378] = {.lex_state = 167}, + [2379] = {.lex_state = 167}, + [2380] = {.lex_state = 167}, + [2381] = {.lex_state = 209}, + [2382] = {.lex_state = 210}, + [2383] = {.lex_state = 209}, + [2384] = {.lex_state = 167}, + [2385] = {.lex_state = 167}, + [2386] = {.lex_state = 167}, + [2387] = {.lex_state = 209}, + [2388] = {.lex_state = 167}, + [2389] = {.lex_state = 167}, [2390] = {.lex_state = 167}, - [2391] = {.lex_state = 198}, - [2392] = {.lex_state = 198}, - [2393] = {.lex_state = 198}, - [2394] = {.lex_state = 184}, - [2395] = {.lex_state = 198}, - [2396] = {.lex_state = 198}, - [2397] = {.lex_state = 198}, - [2398] = {.lex_state = 198}, - [2399] = {.lex_state = 198}, - [2400] = {.lex_state = 198}, - [2401] = {.lex_state = 156}, - [2402] = {.lex_state = 156}, - [2403] = {.lex_state = 156}, - [2404] = {.lex_state = 170}, - [2405] = {.lex_state = 139}, - [2406] = {.lex_state = 156}, - [2407] = {.lex_state = 139}, - [2408] = {.lex_state = 157}, - [2409] = {.lex_state = 157}, - [2410] = {.lex_state = 156}, - [2411] = {.lex_state = 157}, - [2412] = {.lex_state = 157}, - [2413] = {.lex_state = 170}, - [2414] = {.lex_state = 157}, - [2415] = {.lex_state = 157}, - [2416] = {.lex_state = 157}, - [2417] = {.lex_state = 198}, - [2418] = {.lex_state = 198}, - [2419] = {.lex_state = 198}, - [2420] = {.lex_state = 198}, - [2421] = {.lex_state = 198}, - [2422] = {.lex_state = 198}, - [2423] = {.lex_state = 198}, - [2424] = {.lex_state = 157}, - [2425] = {.lex_state = 157}, - [2426] = {.lex_state = 157}, - [2427] = {.lex_state = 157}, - [2428] = {.lex_state = 157}, - [2429] = {.lex_state = 157}, - [2430] = {.lex_state = 157}, - [2431] = {.lex_state = 156}, - [2432] = {.lex_state = 157}, - [2433] = {.lex_state = 157}, - [2434] = {.lex_state = 157}, - [2435] = {.lex_state = 198}, - [2436] = {.lex_state = 186}, - [2437] = {.lex_state = 157}, - [2438] = {.lex_state = 157}, - [2439] = {.lex_state = 156}, - [2440] = {.lex_state = 198}, - [2441] = {.lex_state = 198}, - [2442] = {.lex_state = 198}, - [2443] = {.lex_state = 183}, - [2444] = {.lex_state = 186}, - [2445] = {.lex_state = 170}, - [2446] = {.lex_state = 170}, - [2447] = {.lex_state = 186}, - [2448] = {.lex_state = 186}, - [2449] = {.lex_state = 186}, - [2450] = {.lex_state = 186}, - [2451] = {.lex_state = 170}, - [2452] = {.lex_state = 170}, - [2453] = {.lex_state = 186}, - [2454] = {.lex_state = 186}, - [2455] = {.lex_state = 197}, - [2456] = {.lex_state = 189}, - [2457] = {.lex_state = 186}, - [2458] = {.lex_state = 186}, - [2459] = {.lex_state = 166}, - [2460] = {.lex_state = 170}, + [2391] = {.lex_state = 167}, + [2392] = {.lex_state = 167}, + [2393] = {.lex_state = 167}, + [2394] = {.lex_state = 177}, + [2395] = {.lex_state = 167}, + [2396] = {.lex_state = 197}, + [2397] = {.lex_state = 168}, + [2398] = {.lex_state = 167}, + [2399] = {.lex_state = 167}, + [2400] = {.lex_state = 177}, + [2401] = {.lex_state = 209}, + [2402] = {.lex_state = 209}, + [2403] = {.lex_state = 168}, + [2404] = {.lex_state = 201}, + [2405] = {.lex_state = 167}, + [2406] = {.lex_state = 167}, + [2407] = {.lex_state = 167}, + [2408] = {.lex_state = 167}, + [2409] = {.lex_state = 167}, + [2410] = {.lex_state = 157}, + [2411] = {.lex_state = 167}, + [2412] = {.lex_state = 187}, + [2413] = {.lex_state = 167}, + [2414] = {.lex_state = 177}, + [2415] = {.lex_state = 187}, + [2416] = {.lex_state = 167}, + [2417] = {.lex_state = 167}, + [2418] = {.lex_state = 177}, + [2419] = {.lex_state = 177}, + [2420] = {.lex_state = 167}, + [2421] = {.lex_state = 167}, + [2422] = {.lex_state = 167}, + [2423] = {.lex_state = 167}, + [2424] = {.lex_state = 167}, + [2425] = {.lex_state = 177}, + [2426] = {.lex_state = 177}, + [2427] = {.lex_state = 167}, + [2428] = {.lex_state = 167}, + [2429] = {.lex_state = 167}, + [2430] = {.lex_state = 167}, + [2431] = {.lex_state = 209}, + [2432] = {.lex_state = 167}, + [2433] = {.lex_state = 167}, + [2434] = {.lex_state = 209}, + [2435] = {.lex_state = 167}, + [2436] = {.lex_state = 209}, + [2437] = {.lex_state = 167}, + [2438] = {.lex_state = 167}, + [2439] = {.lex_state = 209}, + [2440] = {.lex_state = 167}, + [2441] = {.lex_state = 167}, + [2442] = {.lex_state = 177}, + [2443] = {.lex_state = 167}, + [2444] = {.lex_state = 167}, + [2445] = {.lex_state = 167}, + [2446] = {.lex_state = 167}, + [2447] = {.lex_state = 167}, + [2448] = {.lex_state = 167}, + [2449] = {.lex_state = 167}, + [2450] = {.lex_state = 167}, + [2451] = {.lex_state = 197}, + [2452] = {.lex_state = 167}, + [2453] = {.lex_state = 209}, + [2454] = {.lex_state = 209}, + [2455] = {.lex_state = 177}, + [2456] = {.lex_state = 177}, + [2457] = {.lex_state = 177}, + [2458] = {.lex_state = 177}, + [2459] = {.lex_state = 209}, + [2460] = {.lex_state = 157}, [2461] = {.lex_state = 167}, - [2462] = {.lex_state = 170}, - [2463] = {.lex_state = 170}, - [2464] = {.lex_state = 152}, - [2465] = {.lex_state = 170}, - [2466] = {.lex_state = 170}, - [2467] = {.lex_state = 170}, - [2468] = {.lex_state = 170}, - [2469] = {.lex_state = 186}, - [2470] = {.lex_state = 186}, - [2471] = {.lex_state = 186}, - [2472] = {.lex_state = 170}, - [2473] = {.lex_state = 186}, - [2474] = {.lex_state = 170}, - [2475] = {.lex_state = 170}, - [2476] = {.lex_state = 152}, - [2477] = {.lex_state = 186}, - [2478] = {.lex_state = 170}, - [2479] = {.lex_state = 166}, - [2480] = {.lex_state = 186}, - [2481] = {.lex_state = 170}, - [2482] = {.lex_state = 197}, - [2483] = {.lex_state = 166}, - [2484] = {.lex_state = 170}, - [2485] = {.lex_state = 166}, - [2486] = {.lex_state = 157}, - [2487] = {.lex_state = 170}, - [2488] = {.lex_state = 170}, - [2489] = {.lex_state = 170}, - [2490] = {.lex_state = 170}, - [2491] = {.lex_state = 170}, + [2462] = {.lex_state = 209}, + [2463] = {.lex_state = 208}, + [2464] = {.lex_state = 167}, + [2465] = {.lex_state = 167}, + [2466] = {.lex_state = 167}, + [2467] = {.lex_state = 193}, + [2468] = {.lex_state = 167}, + [2469] = {.lex_state = 167}, + [2470] = {.lex_state = 157}, + [2471] = {.lex_state = 209}, + [2472] = {.lex_state = 167}, + [2473] = {.lex_state = 167}, + [2474] = {.lex_state = 167}, + [2475] = {.lex_state = 209}, + [2476] = {.lex_state = 167}, + [2477] = {.lex_state = 167}, + [2478] = {.lex_state = 167}, + [2479] = {.lex_state = 167}, + [2480] = {.lex_state = 167}, + [2481] = {.lex_state = 209}, + [2482] = {.lex_state = 167}, + [2483] = {.lex_state = 201}, + [2484] = {.lex_state = 155}, + [2485] = {.lex_state = 167}, + [2486] = {.lex_state = 167}, + [2487] = {.lex_state = 167}, + [2488] = {.lex_state = 167}, + [2489] = {.lex_state = 167}, + [2490] = {.lex_state = 197}, + [2491] = {.lex_state = 167}, [2492] = {.lex_state = 167}, - [2493] = {.lex_state = 170}, - [2494] = {.lex_state = 166}, - [2495] = {.lex_state = 170}, - [2496] = {.lex_state = 189}, - [2497] = {.lex_state = 157}, - [2498] = {.lex_state = 170}, - [2499] = {.lex_state = 170}, - [2500] = {.lex_state = 170}, - [2501] = {.lex_state = 170}, - [2502] = {.lex_state = 170}, - [2503] = {.lex_state = 170}, - [2504] = {.lex_state = 186}, - [2505] = {.lex_state = 170}, - [2506] = {.lex_state = 197}, - [2507] = {.lex_state = 186}, - [2508] = {.lex_state = 170}, - [2509] = {.lex_state = 170}, - [2510] = {.lex_state = 166}, - [2511] = {.lex_state = 186}, - [2512] = {.lex_state = 186}, - [2513] = {.lex_state = 170}, - [2514] = {.lex_state = 186}, - [2515] = {.lex_state = 170}, - [2516] = {.lex_state = 170}, - [2517] = {.lex_state = 170}, - [2518] = {.lex_state = 170}, - [2519] = {.lex_state = 167}, - [2520] = {.lex_state = 170}, - [2521] = {.lex_state = 170}, - [2522] = {.lex_state = 170}, - [2523] = {.lex_state = 166}, - [2524] = {.lex_state = 186}, - [2525] = {.lex_state = 197}, - [2526] = {.lex_state = 189}, - [2527] = {.lex_state = 186}, - [2528] = {.lex_state = 186}, - [2529] = {.lex_state = 170}, - [2530] = {.lex_state = 170}, - [2531] = {.lex_state = 197}, - [2532] = {.lex_state = 186}, - [2533] = {.lex_state = 197}, - [2534] = {.lex_state = 186}, - [2535] = {.lex_state = 160}, - [2536] = {.lex_state = 186}, - [2537] = {.lex_state = 186}, + [2493] = {.lex_state = 167}, + [2494] = {.lex_state = 167}, + [2495] = {.lex_state = 167}, + [2496] = {.lex_state = 167}, + [2497] = {.lex_state = 209}, + [2498] = {.lex_state = 209}, + [2499] = {.lex_state = 185}, + [2500] = {.lex_state = 197}, + [2501] = {.lex_state = 168}, + [2502] = {.lex_state = 168}, + [2503] = {.lex_state = 209}, + [2504] = {.lex_state = 172}, + [2505] = {.lex_state = 210}, + [2506] = {.lex_state = 210}, + [2507] = {.lex_state = 208}, + [2508] = {.lex_state = 168}, + [2509] = {.lex_state = 209}, + [2510] = {.lex_state = 177}, + [2511] = {.lex_state = 168}, + [2512] = {.lex_state = 172}, + [2513] = {.lex_state = 181}, + [2514] = {.lex_state = 209}, + [2515] = {.lex_state = 185}, + [2516] = {.lex_state = 208}, + [2517] = {.lex_state = 177}, + [2518] = {.lex_state = 168}, + [2519] = {.lex_state = 209}, + [2520] = {.lex_state = 208}, + [2521] = {.lex_state = 185}, + [2522] = {.lex_state = 168}, + [2523] = {.lex_state = 168}, + [2524] = {.lex_state = 168}, + [2525] = {.lex_state = 181}, + [2526] = {.lex_state = 168}, + [2527] = {.lex_state = 181}, + [2528] = {.lex_state = 209}, + [2529] = {.lex_state = 210}, + [2530] = {.lex_state = 209}, + [2531] = {.lex_state = 208}, + [2532] = {.lex_state = 208}, + [2533] = {.lex_state = 208}, + [2534] = {.lex_state = 170}, + [2535] = {.lex_state = 208}, + [2536] = {.lex_state = 194}, + [2537] = {.lex_state = 208}, [2538] = {.lex_state = 170}, - [2539] = {.lex_state = 170}, - [2540] = {.lex_state = 186}, - [2541] = {.lex_state = 186}, - [2542] = {.lex_state = 157}, - [2543] = {.lex_state = 170}, - [2544] = {.lex_state = 170}, - [2545] = {.lex_state = 170}, - [2546] = {.lex_state = 170}, - [2547] = {.lex_state = 170}, - [2548] = {.lex_state = 170}, - [2549] = {.lex_state = 170}, - [2550] = {.lex_state = 170}, - [2551] = {.lex_state = 170}, - [2552] = {.lex_state = 170}, - [2553] = {.lex_state = 170}, - [2554] = {.lex_state = 170}, - [2555] = {.lex_state = 152}, - [2556] = {.lex_state = 167}, - [2557] = {.lex_state = 170}, - [2558] = {.lex_state = 197}, - [2559] = {.lex_state = 170}, - [2560] = {.lex_state = 170}, - [2561] = {.lex_state = 170}, - [2562] = {.lex_state = 186}, - [2563] = {.lex_state = 186}, - [2564] = {.lex_state = 167}, - [2565] = {.lex_state = 170}, - [2566] = {.lex_state = 170}, - [2567] = {.lex_state = 170}, - [2568] = {.lex_state = 166}, - [2569] = {.lex_state = 170}, - [2570] = {.lex_state = 170}, - [2571] = {.lex_state = 170}, - [2572] = {.lex_state = 170}, - [2573] = {.lex_state = 197}, - [2574] = {.lex_state = 170}, - [2575] = {.lex_state = 170}, - [2576] = {.lex_state = 197}, - [2577] = {.lex_state = 197}, - [2578] = {.lex_state = 170}, - [2579] = {.lex_state = 170}, - [2580] = {.lex_state = 157}, - [2581] = {.lex_state = 186}, - [2582] = {.lex_state = 197}, - [2583] = {.lex_state = 170}, - [2584] = {.lex_state = 170}, - [2585] = {.lex_state = 170}, - [2586] = {.lex_state = 170}, - [2587] = {.lex_state = 170}, - [2588] = {.lex_state = 197}, - [2589] = {.lex_state = 197}, - [2590] = {.lex_state = 197}, - [2591] = {.lex_state = 197}, - [2592] = {.lex_state = 170}, - [2593] = {.lex_state = 197}, - [2594] = {.lex_state = 170}, - [2595] = {.lex_state = 186}, - [2596] = {.lex_state = 186}, - [2597] = {.lex_state = 197}, - [2598] = {.lex_state = 186}, - [2599] = {.lex_state = 186}, - [2600] = {.lex_state = 170}, - [2601] = {.lex_state = 170}, - [2602] = {.lex_state = 186}, - [2603] = {.lex_state = 167}, - [2604] = {.lex_state = 157}, - [2605] = {.lex_state = 158}, - [2606] = {.lex_state = 157}, - [2607] = {.lex_state = 167}, - [2608] = {.lex_state = 157}, - [2609] = {.lex_state = 167}, - [2610] = {.lex_state = 167}, - [2611] = {.lex_state = 167}, - [2612] = {.lex_state = 167}, - [2613] = {.lex_state = 167}, - [2614] = {.lex_state = 164}, - [2615] = {.lex_state = 167}, - [2616] = {.lex_state = 157}, - [2617] = {.lex_state = 158}, - [2618] = {.lex_state = 157}, - [2619] = {.lex_state = 158}, - [2620] = {.lex_state = 167}, - [2621] = {.lex_state = 157}, - [2622] = {.lex_state = 158}, - [2623] = {.lex_state = 158}, - [2624] = {.lex_state = 167}, - [2625] = {.lex_state = 157}, - [2626] = {.lex_state = 167}, - [2627] = {.lex_state = 167}, - [2628] = {.lex_state = 157}, - [2629] = {.lex_state = 167}, - [2630] = {.lex_state = 167}, - [2631] = {.lex_state = 157}, - [2632] = {.lex_state = 167}, - [2633] = {.lex_state = 157}, - [2634] = {.lex_state = 157}, - [2635] = {.lex_state = 167}, - [2636] = {.lex_state = 167}, - [2637] = {.lex_state = 175}, - [2638] = {.lex_state = 167}, - [2639] = {.lex_state = 158}, - [2640] = {.lex_state = 167}, - [2641] = {.lex_state = 167}, - [2642] = {.lex_state = 157}, - [2643] = {.lex_state = 167}, - [2644] = {.lex_state = 167}, - [2645] = {.lex_state = 167}, - [2646] = {.lex_state = 167}, - [2647] = {.lex_state = 158}, - [2648] = {.lex_state = 167}, - [2649] = {.lex_state = 158}, - [2650] = {.lex_state = 158}, - [2651] = {.lex_state = 163}, - [2652] = {.lex_state = 144}, - [2653] = {.lex_state = 157}, - [2654] = {.lex_state = 157}, - [2655] = {.lex_state = 167}, - [2656] = {.lex_state = 167}, - [2657] = {.lex_state = 167}, - [2658] = {.lex_state = 167}, - [2659] = {.lex_state = 167}, - [2660] = {.lex_state = 167}, - [2661] = {.lex_state = 166}, - [2662] = {.lex_state = 167}, - [2663] = {.lex_state = 158}, - [2664] = {.lex_state = 167}, - [2665] = {.lex_state = 163}, - [2666] = {.lex_state = 157}, - [2667] = {.lex_state = 157}, - [2668] = {.lex_state = 157}, - [2669] = {.lex_state = 157}, - [2670] = {.lex_state = 157}, - [2671] = {.lex_state = 157}, - [2672] = {.lex_state = 157}, - [2673] = {.lex_state = 157}, - [2674] = {.lex_state = 157}, - [2675] = {.lex_state = 157}, - [2676] = {.lex_state = 157}, - [2677] = {.lex_state = 157}, - [2678] = {.lex_state = 167}, - [2679] = {.lex_state = 158}, - [2680] = {.lex_state = 167}, - [2681] = {.lex_state = 167}, - [2682] = {.lex_state = 167}, - [2683] = {.lex_state = 157}, - [2684] = {.lex_state = 167}, - [2685] = {.lex_state = 167}, - [2686] = {.lex_state = 157}, - [2687] = {.lex_state = 167}, - [2688] = {.lex_state = 157}, - [2689] = {.lex_state = 157}, - [2690] = {.lex_state = 158}, - [2691] = {.lex_state = 167}, - [2692] = {.lex_state = 167}, - [2693] = {.lex_state = 167}, - [2694] = {.lex_state = 167}, - [2695] = {.lex_state = 157}, - [2696] = {.lex_state = 157}, - [2697] = {.lex_state = 157}, - [2698] = {.lex_state = 157}, - [2699] = {.lex_state = 157}, - [2700] = {.lex_state = 166}, - [2701] = {.lex_state = 157}, - [2702] = {.lex_state = 157}, - [2703] = {.lex_state = 157}, - [2704] = {.lex_state = 157}, - [2705] = {.lex_state = 157}, - [2706] = {.lex_state = 157}, - [2707] = {.lex_state = 157}, - [2708] = {.lex_state = 157}, - [2709] = {.lex_state = 157}, - [2710] = {.lex_state = 157}, - [2711] = {.lex_state = 157}, - [2712] = {.lex_state = 157}, - [2713] = {.lex_state = 157}, - [2714] = {.lex_state = 157}, - [2715] = {.lex_state = 157}, - [2716] = {.lex_state = 157}, - [2717] = {.lex_state = 157}, - [2718] = {.lex_state = 157}, - [2719] = {.lex_state = 165}, - [2720] = {.lex_state = 157}, - [2721] = {.lex_state = 157}, - [2722] = {.lex_state = 157}, - [2723] = {.lex_state = 157}, - [2724] = {.lex_state = 157}, - [2725] = {.lex_state = 157}, - [2726] = {.lex_state = 157}, - [2727] = {.lex_state = 157}, - [2728] = {.lex_state = 157}, - [2729] = {.lex_state = 157}, - [2730] = {.lex_state = 157}, - [2731] = {.lex_state = 157}, - [2732] = {.lex_state = 165}, - [2733] = {.lex_state = 157}, - [2734] = {.lex_state = 165}, - [2735] = {.lex_state = 165}, - [2736] = {.lex_state = 165}, - [2737] = {.lex_state = 157}, - [2738] = {.lex_state = 157}, - [2739] = {.lex_state = 157}, - [2740] = {.lex_state = 157}, - [2741] = {.lex_state = 157}, - [2742] = {.lex_state = 157}, - [2743] = {.lex_state = 157}, - [2744] = {.lex_state = 182}, - [2745] = {.lex_state = 157}, - [2746] = {.lex_state = 157}, - [2747] = {.lex_state = 157}, - [2748] = {.lex_state = 157}, - [2749] = {.lex_state = 182}, - [2750] = {.lex_state = 182}, - [2751] = {.lex_state = 182}, - [2752] = {.lex_state = 157}, - [2753] = {.lex_state = 157}, - [2754] = {.lex_state = 157}, - [2755] = {.lex_state = 157}, - [2756] = {.lex_state = 157}, - [2757] = {.lex_state = 170}, - [2758] = {.lex_state = 157}, - [2759] = {.lex_state = 157}, - [2760] = {.lex_state = 157}, - [2761] = {.lex_state = 157}, - [2762] = {.lex_state = 157}, - [2763] = {.lex_state = 157}, - [2764] = {.lex_state = 157}, - [2765] = {.lex_state = 157}, - [2766] = {.lex_state = 157}, - [2767] = {.lex_state = 157}, - [2768] = {.lex_state = 157}, - [2769] = {.lex_state = 182}, - [2770] = {.lex_state = 167}, - [2771] = {.lex_state = 157}, - [2772] = {.lex_state = 157}, - [2773] = {.lex_state = 157}, - [2774] = {.lex_state = 182}, - [2775] = {.lex_state = 157}, - [2776] = {.lex_state = 157}, - [2777] = {.lex_state = 157}, - [2778] = {.lex_state = 157}, - [2779] = {.lex_state = 157}, - [2780] = {.lex_state = 157}, - [2781] = {.lex_state = 182}, - [2782] = {.lex_state = 182}, - [2783] = {.lex_state = 157}, - [2784] = {.lex_state = 157}, - [2785] = {.lex_state = 157}, - [2786] = {.lex_state = 157}, - [2787] = {.lex_state = 157}, - [2788] = {.lex_state = 157}, + [2539] = {.lex_state = 208}, + [2540] = {.lex_state = 208}, + [2541] = {.lex_state = 210}, + [2542] = {.lex_state = 208}, + [2543] = {.lex_state = 210}, + [2544] = {.lex_state = 194}, + [2545] = {.lex_state = 194}, + [2546] = {.lex_state = 194}, + [2547] = {.lex_state = 208}, + [2548] = {.lex_state = 210}, + [2549] = {.lex_state = 210}, + [2550] = {.lex_state = 210}, + [2551] = {.lex_state = 210}, + [2552] = {.lex_state = 208}, + [2553] = {.lex_state = 208}, + [2554] = {.lex_state = 210}, + [2555] = {.lex_state = 208}, + [2556] = {.lex_state = 208}, + [2557] = {.lex_state = 208}, + [2558] = {.lex_state = 210}, + [2559] = {.lex_state = 208}, + [2560] = {.lex_state = 208}, + [2561] = {.lex_state = 208}, + [2562] = {.lex_state = 208}, + [2563] = {.lex_state = 208}, + [2564] = {.lex_state = 208}, + [2565] = {.lex_state = 194}, + [2566] = {.lex_state = 208}, + [2567] = {.lex_state = 208}, + [2568] = {.lex_state = 208}, + [2569] = {.lex_state = 208}, + [2570] = {.lex_state = 208}, + [2571] = {.lex_state = 197}, + [2572] = {.lex_state = 208}, + [2573] = {.lex_state = 208}, + [2574] = {.lex_state = 208}, + [2575] = {.lex_state = 208}, + [2576] = {.lex_state = 194}, + [2577] = {.lex_state = 194}, + [2578] = {.lex_state = 194}, + [2579] = {.lex_state = 208}, + [2580] = {.lex_state = 177}, + [2581] = {.lex_state = 208}, + [2582] = {.lex_state = 208}, + [2583] = {.lex_state = 208}, + [2584] = {.lex_state = 194}, + [2585] = {.lex_state = 208}, + [2586] = {.lex_state = 210}, + [2587] = {.lex_state = 197}, + [2588] = {.lex_state = 210}, + [2589] = {.lex_state = 208}, + [2590] = {.lex_state = 210}, + [2591] = {.lex_state = 210}, + [2592] = {.lex_state = 210}, + [2593] = {.lex_state = 210}, + [2594] = {.lex_state = 210}, + [2595] = {.lex_state = 170}, + [2596] = {.lex_state = 210}, + [2597] = {.lex_state = 208}, + [2598] = {.lex_state = 210}, + [2599] = {.lex_state = 210}, + [2600] = {.lex_state = 210}, + [2601] = {.lex_state = 208}, + [2602] = {.lex_state = 210}, + [2603] = {.lex_state = 208}, + [2604] = {.lex_state = 181}, + [2605] = {.lex_state = 208}, + [2606] = {.lex_state = 210}, + [2607] = {.lex_state = 208}, + [2608] = {.lex_state = 210}, + [2609] = {.lex_state = 210}, + [2610] = {.lex_state = 210}, + [2611] = {.lex_state = 210}, + [2612] = {.lex_state = 208}, + [2613] = {.lex_state = 210}, + [2614] = {.lex_state = 210}, + [2615] = {.lex_state = 178}, + [2616] = {.lex_state = 210}, + [2617] = {.lex_state = 210}, + [2618] = {.lex_state = 208}, + [2619] = {.lex_state = 208}, + [2620] = {.lex_state = 208}, + [2621] = {.lex_state = 208}, + [2622] = {.lex_state = 194}, + [2623] = {.lex_state = 210}, + [2624] = {.lex_state = 208}, + [2625] = {.lex_state = 210}, + [2626] = {.lex_state = 210}, + [2627] = {.lex_state = 210}, + [2628] = {.lex_state = 210}, + [2629] = {.lex_state = 208}, + [2630] = {.lex_state = 210}, + [2631] = {.lex_state = 210}, + [2632] = {.lex_state = 210}, + [2633] = {.lex_state = 210}, + [2634] = {.lex_state = 208}, + [2635] = {.lex_state = 208}, + [2636] = {.lex_state = 208}, + [2637] = {.lex_state = 208}, + [2638] = {.lex_state = 208}, + [2639] = {.lex_state = 210}, + [2640] = {.lex_state = 210}, + [2641] = {.lex_state = 208}, + [2642] = {.lex_state = 210}, + [2643] = {.lex_state = 208}, + [2644] = {.lex_state = 210}, + [2645] = {.lex_state = 210}, + [2646] = {.lex_state = 210}, + [2647] = {.lex_state = 210}, + [2648] = {.lex_state = 194}, + [2649] = {.lex_state = 210}, + [2650] = {.lex_state = 210}, + [2651] = {.lex_state = 210}, + [2652] = {.lex_state = 210}, + [2653] = {.lex_state = 210}, + [2654] = {.lex_state = 210}, + [2655] = {.lex_state = 210}, + [2656] = {.lex_state = 208}, + [2657] = {.lex_state = 210}, + [2658] = {.lex_state = 208}, + [2659] = {.lex_state = 194}, + [2660] = {.lex_state = 210}, + [2661] = {.lex_state = 210}, + [2662] = {.lex_state = 194}, + [2663] = {.lex_state = 208}, + [2664] = {.lex_state = 208}, + [2665] = {.lex_state = 208}, + [2666] = {.lex_state = 170}, + [2667] = {.lex_state = 208}, + [2668] = {.lex_state = 170}, + [2669] = {.lex_state = 181}, + [2670] = {.lex_state = 208}, + [2671] = {.lex_state = 210}, + [2672] = {.lex_state = 210}, + [2673] = {.lex_state = 210}, + [2674] = {.lex_state = 197}, + [2675] = {.lex_state = 210}, + [2676] = {.lex_state = 210}, + [2677] = {.lex_state = 210}, + [2678] = {.lex_state = 210}, + [2679] = {.lex_state = 210}, + [2680] = {.lex_state = 210}, + [2681] = {.lex_state = 177}, + [2682] = {.lex_state = 210}, + [2683] = {.lex_state = 210}, + [2684] = {.lex_state = 210}, + [2685] = {.lex_state = 208}, + [2686] = {.lex_state = 208}, + [2687] = {.lex_state = 210}, + [2688] = {.lex_state = 210}, + [2689] = {.lex_state = 208}, + [2690] = {.lex_state = 208}, + [2691] = {.lex_state = 208}, + [2692] = {.lex_state = 210}, + [2693] = {.lex_state = 208}, + [2694] = {.lex_state = 208}, + [2695] = {.lex_state = 208}, + [2696] = {.lex_state = 208}, + [2697] = {.lex_state = 208}, + [2698] = {.lex_state = 170}, + [2699] = {.lex_state = 208}, + [2700] = {.lex_state = 208}, + [2701] = {.lex_state = 208}, + [2702] = {.lex_state = 210}, + [2703] = {.lex_state = 210}, + [2704] = {.lex_state = 168}, + [2705] = {.lex_state = 208}, + [2706] = {.lex_state = 208}, + [2707] = {.lex_state = 178}, + [2708] = {.lex_state = 208}, + [2709] = {.lex_state = 210}, + [2710] = {.lex_state = 210}, + [2711] = {.lex_state = 181}, + [2712] = {.lex_state = 210}, + [2713] = {.lex_state = 210}, + [2714] = {.lex_state = 210}, + [2715] = {.lex_state = 210}, + [2716] = {.lex_state = 208}, + [2717] = {.lex_state = 208}, + [2718] = {.lex_state = 194}, + [2719] = {.lex_state = 210}, + [2720] = {.lex_state = 197}, + [2721] = {.lex_state = 181}, + [2722] = {.lex_state = 181}, + [2723] = {.lex_state = 209}, + [2724] = {.lex_state = 178}, + [2725] = {.lex_state = 181}, + [2726] = {.lex_state = 181}, + [2727] = {.lex_state = 181}, + [2728] = {.lex_state = 181}, + [2729] = {.lex_state = 181}, + [2730] = {.lex_state = 181}, + [2731] = {.lex_state = 197}, + [2732] = {.lex_state = 181}, + [2733] = {.lex_state = 181}, + [2734] = {.lex_state = 209}, + [2735] = {.lex_state = 178}, + [2736] = {.lex_state = 181}, + [2737] = {.lex_state = 209}, + [2738] = {.lex_state = 197}, + [2739] = {.lex_state = 178}, + [2740] = {.lex_state = 197}, + [2741] = {.lex_state = 209}, + [2742] = {.lex_state = 181}, + [2743] = {.lex_state = 181}, + [2744] = {.lex_state = 181}, + [2745] = {.lex_state = 181}, + [2746] = {.lex_state = 181}, + [2747] = {.lex_state = 181}, + [2748] = {.lex_state = 197}, + [2749] = {.lex_state = 197}, + [2750] = {.lex_state = 209}, + [2751] = {.lex_state = 181}, + [2752] = {.lex_state = 168}, + [2753] = {.lex_state = 200}, + [2754] = {.lex_state = 209}, + [2755] = {.lex_state = 197}, + [2756] = {.lex_state = 197}, + [2757] = {.lex_state = 181}, + [2758] = {.lex_state = 177}, + [2759] = {.lex_state = 197}, + [2760] = {.lex_state = 181}, + [2761] = {.lex_state = 197}, + [2762] = {.lex_state = 197}, + [2763] = {.lex_state = 197}, + [2764] = {.lex_state = 209}, + [2765] = {.lex_state = 197}, + [2766] = {.lex_state = 209}, + [2767] = {.lex_state = 197}, + [2768] = {.lex_state = 209}, + [2769] = {.lex_state = 197}, + [2770] = {.lex_state = 197}, + [2771] = {.lex_state = 209}, + [2772] = {.lex_state = 181}, + [2773] = {.lex_state = 181}, + [2774] = {.lex_state = 197}, + [2775] = {.lex_state = 197}, + [2776] = {.lex_state = 181}, + [2777] = {.lex_state = 181}, + [2778] = {.lex_state = 181}, + [2779] = {.lex_state = 181}, + [2780] = {.lex_state = 209}, + [2781] = {.lex_state = 181}, + [2782] = {.lex_state = 209}, + [2783] = {.lex_state = 209}, + [2784] = {.lex_state = 178}, + [2785] = {.lex_state = 209}, + [2786] = {.lex_state = 181}, + [2787] = {.lex_state = 197}, + [2788] = {.lex_state = 178}, [2789] = {.lex_state = 197}, - [2790] = {.lex_state = 157}, - [2791] = {.lex_state = 182}, - [2792] = {.lex_state = 182}, - [2793] = {.lex_state = 182}, - [2794] = {.lex_state = 157}, - [2795] = {.lex_state = 182}, - [2796] = {.lex_state = 157}, - [2797] = {.lex_state = 157}, - [2798] = {.lex_state = 165}, - [2799] = {.lex_state = 157}, - [2800] = {.lex_state = 157}, - [2801] = {.lex_state = 157}, + [2790] = {.lex_state = 181}, + [2791] = {.lex_state = 197}, + [2792] = {.lex_state = 197}, + [2793] = {.lex_state = 200}, + [2794] = {.lex_state = 197}, + [2795] = {.lex_state = 181}, + [2796] = {.lex_state = 181}, + [2797] = {.lex_state = 181}, + [2798] = {.lex_state = 181}, + [2799] = {.lex_state = 209}, + [2800] = {.lex_state = 209}, + [2801] = {.lex_state = 197}, [2802] = {.lex_state = 197}, - [2803] = {.lex_state = 157}, - [2804] = {.lex_state = 157}, - [2805] = {.lex_state = 157}, - [2806] = {.lex_state = 167}, - [2807] = {.lex_state = 157}, - [2808] = {.lex_state = 197}, - [2809] = {.lex_state = 157}, - [2810] = {.lex_state = 157}, - [2811] = {.lex_state = 157}, - [2812] = {.lex_state = 157}, - [2813] = {.lex_state = 157}, - [2814] = {.lex_state = 157}, - [2815] = {.lex_state = 157}, - [2816] = {.lex_state = 157}, - [2817] = {.lex_state = 157}, - [2818] = {.lex_state = 157}, - [2819] = {.lex_state = 157}, - [2820] = {.lex_state = 157}, - [2821] = {.lex_state = 157}, - [2822] = {.lex_state = 157}, - [2823] = {.lex_state = 157}, - [2824] = {.lex_state = 157}, - [2825] = {.lex_state = 157}, - [2826] = {.lex_state = 157}, - [2827] = {.lex_state = 157}, - [2828] = {.lex_state = 157}, - [2829] = {.lex_state = 157}, - [2830] = {.lex_state = 157}, - [2831] = {.lex_state = 157}, - [2832] = {.lex_state = 167}, - [2833] = {.lex_state = 152}, - [2834] = {.lex_state = 167}, - [2835] = {.lex_state = 182}, - [2836] = {.lex_state = 167}, - [2837] = {.lex_state = 167}, - [2838] = {.lex_state = 167}, - [2839] = {.lex_state = 157}, - [2840] = {.lex_state = 182}, - [2841] = {.lex_state = 167}, - [2842] = {.lex_state = 167}, - [2843] = {.lex_state = 152}, - [2844] = {.lex_state = 179}, - [2845] = {.lex_state = 178}, - [2846] = {.lex_state = 167}, - [2847] = {.lex_state = 167}, - [2848] = {.lex_state = 167}, - [2849] = {.lex_state = 167}, - [2850] = {.lex_state = 178}, - [2851] = {.lex_state = 182}, - [2852] = {.lex_state = 152}, - [2853] = {.lex_state = 182}, - [2854] = {.lex_state = 167}, - [2855] = {.lex_state = 167}, - [2856] = {.lex_state = 167}, - [2857] = {.lex_state = 167}, - [2858] = {.lex_state = 167}, - [2859] = {.lex_state = 189}, - [2860] = {.lex_state = 157}, - [2861] = {.lex_state = 182}, - [2862] = {.lex_state = 167}, - [2863] = {.lex_state = 167}, - [2864] = {.lex_state = 152}, - [2865] = {.lex_state = 167}, - [2866] = {.lex_state = 167}, - [2867] = {.lex_state = 167}, - [2868] = {.lex_state = 167}, - [2869] = {.lex_state = 167}, - [2870] = {.lex_state = 167}, - [2871] = {.lex_state = 167}, - [2872] = {.lex_state = 182}, - [2873] = {.lex_state = 167}, - [2874] = {.lex_state = 170}, - [2875] = {.lex_state = 182}, - [2876] = {.lex_state = 182}, + [2803] = {.lex_state = 197}, + [2804] = {.lex_state = 181}, + [2805] = {.lex_state = 181}, + [2806] = {.lex_state = 181}, + [2807] = {.lex_state = 197}, + [2808] = {.lex_state = 181}, + [2809] = {.lex_state = 178}, + [2810] = {.lex_state = 209}, + [2811] = {.lex_state = 178}, + [2812] = {.lex_state = 197}, + [2813] = {.lex_state = 197}, + [2814] = {.lex_state = 178}, + [2815] = {.lex_state = 168}, + [2816] = {.lex_state = 181}, + [2817] = {.lex_state = 178}, + [2818] = {.lex_state = 200}, + [2819] = {.lex_state = 197}, + [2820] = {.lex_state = 177}, + [2821] = {.lex_state = 168}, + [2822] = {.lex_state = 197}, + [2823] = {.lex_state = 197}, + [2824] = {.lex_state = 197}, + [2825] = {.lex_state = 197}, + [2826] = {.lex_state = 197}, + [2827] = {.lex_state = 197}, + [2828] = {.lex_state = 168}, + [2829] = {.lex_state = 181}, + [2830] = {.lex_state = 181}, + [2831] = {.lex_state = 181}, + [2832] = {.lex_state = 197}, + [2833] = {.lex_state = 168}, + [2834] = {.lex_state = 169}, + [2835] = {.lex_state = 168}, + [2836] = {.lex_state = 168}, + [2837] = {.lex_state = 169}, + [2838] = {.lex_state = 168}, + [2839] = {.lex_state = 168}, + [2840] = {.lex_state = 168}, + [2841] = {.lex_state = 168}, + [2842] = {.lex_state = 185}, + [2843] = {.lex_state = 169}, + [2844] = {.lex_state = 168}, + [2845] = {.lex_state = 176}, + [2846] = {.lex_state = 168}, + [2847] = {.lex_state = 168}, + [2848] = {.lex_state = 168}, + [2849] = {.lex_state = 185}, + [2850] = {.lex_state = 179}, + [2851] = {.lex_state = 179}, + [2852] = {.lex_state = 179}, + [2853] = {.lex_state = 169}, + [2854] = {.lex_state = 179}, + [2855] = {.lex_state = 181}, + [2856] = {.lex_state = 179}, + [2857] = {.lex_state = 168}, + [2858] = {.lex_state = 168}, + [2859] = {.lex_state = 179}, + [2860] = {.lex_state = 185}, + [2861] = {.lex_state = 177}, + [2862] = {.lex_state = 168}, + [2863] = {.lex_state = 169}, + [2864] = {.lex_state = 168}, + [2865] = {.lex_state = 193}, + [2866] = {.lex_state = 168}, + [2867] = {.lex_state = 168}, + [2868] = {.lex_state = 168}, + [2869] = {.lex_state = 193}, + [2870] = {.lex_state = 168}, + [2871] = {.lex_state = 168}, + [2872] = {.lex_state = 168}, + [2873] = {.lex_state = 168}, + [2874] = {.lex_state = 168}, + [2875] = {.lex_state = 193}, + [2876] = {.lex_state = 148}, [2877] = {.lex_state = 182}, - [2878] = {.lex_state = 182}, - [2879] = {.lex_state = 182}, - [2880] = {.lex_state = 182}, - [2881] = {.lex_state = 182}, - [2882] = {.lex_state = 170}, - [2883] = {.lex_state = 182}, - [2884] = {.lex_state = 170}, - [2885] = {.lex_state = 170}, - [2886] = {.lex_state = 167}, - [2887] = {.lex_state = 182}, - [2888] = {.lex_state = 170}, - [2889] = {.lex_state = 167}, - [2890] = {.lex_state = 167}, - [2891] = {.lex_state = 167}, - [2892] = {.lex_state = 167}, - [2893] = {.lex_state = 157}, - [2894] = {.lex_state = 167}, - [2895] = {.lex_state = 170}, - [2896] = {.lex_state = 167}, - [2897] = {.lex_state = 167}, - [2898] = {.lex_state = 167}, - [2899] = {.lex_state = 167}, - [2900] = {.lex_state = 167}, - [2901] = {.lex_state = 167}, - [2902] = {.lex_state = 167}, - [2903] = {.lex_state = 157}, - [2904] = {.lex_state = 167}, - [2905] = {.lex_state = 170}, - [2906] = {.lex_state = 167}, - [2907] = {.lex_state = 182}, - [2908] = {.lex_state = 167}, - [2909] = {.lex_state = 157}, - [2910] = {.lex_state = 167}, - [2911] = {.lex_state = 157}, - [2912] = {.lex_state = 157}, - [2913] = {.lex_state = 157}, - [2914] = {.lex_state = 182}, - [2915] = {.lex_state = 167}, - [2916] = {.lex_state = 170}, - [2917] = {.lex_state = 157}, - [2918] = {.lex_state = 157}, - [2919] = {.lex_state = 157}, - [2920] = {.lex_state = 182}, - [2921] = {.lex_state = 157}, - [2922] = {.lex_state = 157}, - [2923] = {.lex_state = 167}, - [2924] = {.lex_state = 157}, - [2925] = {.lex_state = 157}, - [2926] = {.lex_state = 170}, - [2927] = {.lex_state = 167}, - [2928] = {.lex_state = 167}, - [2929] = {.lex_state = 182}, - [2930] = {.lex_state = 167}, - [2931] = {.lex_state = 167}, - [2932] = {.lex_state = 167}, - [2933] = {.lex_state = 167}, - [2934] = {.lex_state = 170}, - [2935] = {.lex_state = 157}, - [2936] = {.lex_state = 182}, - [2937] = {.lex_state = 182}, - [2938] = {.lex_state = 167}, - [2939] = {.lex_state = 167}, - [2940] = {.lex_state = 167}, - [2941] = {.lex_state = 157}, - [2942] = {.lex_state = 182}, - [2943] = {.lex_state = 170}, - [2944] = {.lex_state = 182}, - [2945] = {.lex_state = 167}, - [2946] = {.lex_state = 144}, - [2947] = {.lex_state = 157}, - [2948] = {.lex_state = 167}, - [2949] = {.lex_state = 167}, - [2950] = {.lex_state = 182}, - [2951] = {.lex_state = 167}, - [2952] = {.lex_state = 182}, - [2953] = {.lex_state = 170}, - [2954] = {.lex_state = 167}, - [2955] = {.lex_state = 154}, - [2956] = {.lex_state = 157}, - [2957] = {.lex_state = 157}, - [2958] = {.lex_state = 167}, - [2959] = {.lex_state = 167}, - [2960] = {.lex_state = 167}, - [2961] = {.lex_state = 170}, - [2962] = {.lex_state = 167}, - [2963] = {.lex_state = 154}, - [2964] = {.lex_state = 170}, - [2965] = {.lex_state = 167}, - [2966] = {.lex_state = 170}, - [2967] = {.lex_state = 167}, - [2968] = {.lex_state = 182}, - [2969] = {.lex_state = 182}, - [2970] = {.lex_state = 170}, - [2971] = {.lex_state = 167}, - [2972] = {.lex_state = 170}, - [2973] = {.lex_state = 170}, - [2974] = {.lex_state = 170}, - [2975] = {.lex_state = 157}, - [2976] = {.lex_state = 182}, - [2977] = {.lex_state = 182}, - [2978] = {.lex_state = 167}, - [2979] = {.lex_state = 167}, - [2980] = {.lex_state = 167}, - [2981] = {.lex_state = 167}, - [2982] = {.lex_state = 167}, - [2983] = {.lex_state = 182}, - [2984] = {.lex_state = 170}, - [2985] = {.lex_state = 167}, - [2986] = {.lex_state = 170}, - [2987] = {.lex_state = 144}, - [2988] = {.lex_state = 167}, - [2989] = {.lex_state = 182}, - [2990] = {.lex_state = 182}, - [2991] = {.lex_state = 157}, - [2992] = {.lex_state = 167}, - [2993] = {.lex_state = 167}, - [2994] = {.lex_state = 167}, - [2995] = {.lex_state = 167}, - [2996] = {.lex_state = 167}, - [2997] = {.lex_state = 182}, - [2998] = {.lex_state = 182}, - [2999] = {.lex_state = 182}, - [3000] = {.lex_state = 182}, - [3001] = {.lex_state = 167}, - [3002] = {.lex_state = 182}, - [3003] = {.lex_state = 182}, - [3004] = {.lex_state = 182}, - [3005] = {.lex_state = 182}, - [3006] = {.lex_state = 154}, - [3007] = {.lex_state = 182}, - [3008] = {.lex_state = 182}, - [3009] = {.lex_state = 170}, - [3010] = {.lex_state = 167}, - [3011] = {.lex_state = 170}, - [3012] = {.lex_state = 170}, - [3013] = {.lex_state = 163}, - [3014] = {.lex_state = 158}, - [3015] = {.lex_state = 157}, - [3016] = {.lex_state = 157}, - [3017] = {.lex_state = 167}, - [3018] = {.lex_state = 167}, - [3019] = {.lex_state = 157}, - [3020] = {.lex_state = 170}, - [3021] = {.lex_state = 167}, - [3022] = {.lex_state = 182}, - [3023] = {.lex_state = 182}, - [3024] = {.lex_state = 163}, - [3025] = {.lex_state = 167}, - [3026] = {.lex_state = 157}, - [3027] = {.lex_state = 157}, - [3028] = {.lex_state = 157}, - [3029] = {.lex_state = 157}, - [3030] = {.lex_state = 157}, - [3031] = {.lex_state = 157}, - [3032] = {.lex_state = 157}, - [3033] = {.lex_state = 157}, - [3034] = {.lex_state = 157}, - [3035] = {.lex_state = 157}, - [3036] = {.lex_state = 170}, - [3037] = {.lex_state = 157}, - [3038] = {.lex_state = 157}, - [3039] = {.lex_state = 157}, - [3040] = {.lex_state = 157}, - [3041] = {.lex_state = 157}, - [3042] = {.lex_state = 157}, - [3043] = {.lex_state = 157}, - [3044] = {.lex_state = 157}, - [3045] = {.lex_state = 157}, - [3046] = {.lex_state = 157}, - [3047] = {.lex_state = 157}, - [3048] = {.lex_state = 157}, - [3049] = {.lex_state = 157}, - [3050] = {.lex_state = 157}, - [3051] = {.lex_state = 157}, - [3052] = {.lex_state = 157}, - [3053] = {.lex_state = 157}, - [3054] = {.lex_state = 157}, - [3055] = {.lex_state = 157}, - [3056] = {.lex_state = 157}, - [3057] = {.lex_state = 157}, - [3058] = {.lex_state = 157}, - [3059] = {.lex_state = 182}, - [3060] = {.lex_state = 157}, - [3061] = {.lex_state = 157}, - [3062] = {.lex_state = 157}, - [3063] = {.lex_state = 157}, - [3064] = {.lex_state = 157}, - [3065] = {.lex_state = 157}, - [3066] = {.lex_state = 157}, - [3067] = {.lex_state = 157}, - [3068] = {.lex_state = 170}, - [3069] = {.lex_state = 170}, - [3070] = {.lex_state = 170}, - [3071] = {.lex_state = 170}, - [3072] = {.lex_state = 170}, - [3073] = {.lex_state = 157}, - [3074] = {.lex_state = 170}, - [3075] = {.lex_state = 170}, - [3076] = {.lex_state = 182}, - [3077] = {.lex_state = 182}, - [3078] = {.lex_state = 182}, - [3079] = {.lex_state = 182}, - [3080] = {.lex_state = 193}, - [3081] = {.lex_state = 193}, - [3082] = {.lex_state = 182}, - [3083] = {.lex_state = 182}, - [3084] = {.lex_state = 182}, - [3085] = {.lex_state = 182}, - [3086] = {.lex_state = 199}, - [3087] = {.lex_state = 144}, - [3088] = {.lex_state = 197}, - [3089] = {.lex_state = 182}, - [3090] = {.lex_state = 144}, - [3091] = {.lex_state = 182}, - [3092] = {.lex_state = 144}, - [3093] = {.lex_state = 144}, + [2878] = {.lex_state = 168}, + [2879] = {.lex_state = 168}, + [2880] = {.lex_state = 168}, + [2881] = {.lex_state = 168}, + [2882] = {.lex_state = 177}, + [2883] = {.lex_state = 209}, + [2884] = {.lex_state = 168}, + [2885] = {.lex_state = 193}, + [2886] = {.lex_state = 170}, + [2887] = {.lex_state = 168}, + [2888] = {.lex_state = 209}, + [2889] = {.lex_state = 148}, + [2890] = {.lex_state = 148}, + [2891] = {.lex_state = 184}, + [2892] = {.lex_state = 168}, + [2893] = {.lex_state = 148}, + [2894] = {.lex_state = 176}, + [2895] = {.lex_state = 176}, + [2896] = {.lex_state = 193}, + [2897] = {.lex_state = 176}, + [2898] = {.lex_state = 168}, + [2899] = {.lex_state = 168}, + [2900] = {.lex_state = 170}, + [2901] = {.lex_state = 182}, + [2902] = {.lex_state = 168}, + [2903] = {.lex_state = 168}, + [2904] = {.lex_state = 209}, + [2905] = {.lex_state = 193}, + [2906] = {.lex_state = 176}, + [2907] = {.lex_state = 168}, + [2908] = {.lex_state = 168}, + [2909] = {.lex_state = 168}, + [2910] = {.lex_state = 168}, + [2911] = {.lex_state = 168}, + [2912] = {.lex_state = 168}, + [2913] = {.lex_state = 193}, + [2914] = {.lex_state = 193}, + [2915] = {.lex_state = 181}, + [2916] = {.lex_state = 181}, + [2917] = {.lex_state = 168}, + [2918] = {.lex_state = 168}, + [2919] = {.lex_state = 148}, + [2920] = {.lex_state = 168}, + [2921] = {.lex_state = 168}, + [2922] = {.lex_state = 178}, + [2923] = {.lex_state = 168}, + [2924] = {.lex_state = 195}, + [2925] = {.lex_state = 168}, + [2926] = {.lex_state = 195}, + [2927] = {.lex_state = 193}, + [2928] = {.lex_state = 168}, + [2929] = {.lex_state = 168}, + [2930] = {.lex_state = 168}, + [2931] = {.lex_state = 148}, + [2932] = {.lex_state = 168}, + [2933] = {.lex_state = 178}, + [2934] = {.lex_state = 168}, + [2935] = {.lex_state = 195}, + [2936] = {.lex_state = 168}, + [2937] = {.lex_state = 193}, + [2938] = {.lex_state = 168}, + [2939] = {.lex_state = 170}, + [2940] = {.lex_state = 193}, + [2941] = {.lex_state = 168}, + [2942] = {.lex_state = 168}, + [2943] = {.lex_state = 168}, + [2944] = {.lex_state = 168}, + [2945] = {.lex_state = 193}, + [2946] = {.lex_state = 181}, + [2947] = {.lex_state = 193}, + [2948] = {.lex_state = 178}, + [2949] = {.lex_state = 171}, + [2950] = {.lex_state = 181}, + [2951] = {.lex_state = 181}, + [2952] = {.lex_state = 181}, + [2953] = {.lex_state = 181}, + [2954] = {.lex_state = 181}, + [2955] = {.lex_state = 181}, + [2956] = {.lex_state = 193}, + [2957] = {.lex_state = 178}, + [2958] = {.lex_state = 181}, + [2959] = {.lex_state = 177}, + [2960] = {.lex_state = 181}, + [2961] = {.lex_state = 163}, + [2962] = {.lex_state = 181}, + [2963] = {.lex_state = 181}, + [2964] = {.lex_state = 181}, + [2965] = {.lex_state = 168}, + [2966] = {.lex_state = 181}, + [2967] = {.lex_state = 181}, + [2968] = {.lex_state = 181}, + [2969] = {.lex_state = 163}, + [2970] = {.lex_state = 181}, + [2971] = {.lex_state = 181}, + [2972] = {.lex_state = 181}, + [2973] = {.lex_state = 181}, + [2974] = {.lex_state = 181}, + [2975] = {.lex_state = 181}, + [2976] = {.lex_state = 200}, + [2977] = {.lex_state = 168}, + [2978] = {.lex_state = 177}, + [2979] = {.lex_state = 177}, + [2980] = {.lex_state = 181}, + [2981] = {.lex_state = 181}, + [2982] = {.lex_state = 181}, + [2983] = {.lex_state = 181}, + [2984] = {.lex_state = 181}, + [2985] = {.lex_state = 181}, + [2986] = {.lex_state = 163}, + [2987] = {.lex_state = 181}, + [2988] = {.lex_state = 181}, + [2989] = {.lex_state = 181}, + [2990] = {.lex_state = 181}, + [2991] = {.lex_state = 178}, + [2992] = {.lex_state = 181}, + [2993] = {.lex_state = 181}, + [2994] = {.lex_state = 181}, + [2995] = {.lex_state = 181}, + [2996] = {.lex_state = 181}, + [2997] = {.lex_state = 178}, + [2998] = {.lex_state = 177}, + [2999] = {.lex_state = 155}, + [3000] = {.lex_state = 181}, + [3001] = {.lex_state = 181}, + [3002] = {.lex_state = 181}, + [3003] = {.lex_state = 178}, + [3004] = {.lex_state = 155}, + [3005] = {.lex_state = 181}, + [3006] = {.lex_state = 181}, + [3007] = {.lex_state = 181}, + [3008] = {.lex_state = 193}, + [3009] = {.lex_state = 181}, + [3010] = {.lex_state = 181}, + [3011] = {.lex_state = 181}, + [3012] = {.lex_state = 181}, + [3013] = {.lex_state = 181}, + [3014] = {.lex_state = 181}, + [3015] = {.lex_state = 181}, + [3016] = {.lex_state = 181}, + [3017] = {.lex_state = 177}, + [3018] = {.lex_state = 181}, + [3019] = {.lex_state = 181}, + [3020] = {.lex_state = 181}, + [3021] = {.lex_state = 181}, + [3022] = {.lex_state = 177}, + [3023] = {.lex_state = 177}, + [3024] = {.lex_state = 181}, + [3025] = {.lex_state = 181}, + [3026] = {.lex_state = 181}, + [3027] = {.lex_state = 193}, + [3028] = {.lex_state = 181}, + [3029] = {.lex_state = 181}, + [3030] = {.lex_state = 181}, + [3031] = {.lex_state = 181}, + [3032] = {.lex_state = 181}, + [3033] = {.lex_state = 177}, + [3034] = {.lex_state = 181}, + [3035] = {.lex_state = 181}, + [3036] = {.lex_state = 181}, + [3037] = {.lex_state = 181}, + [3038] = {.lex_state = 181}, + [3039] = {.lex_state = 181}, + [3040] = {.lex_state = 168}, + [3041] = {.lex_state = 181}, + [3042] = {.lex_state = 181}, + [3043] = {.lex_state = 181}, + [3044] = {.lex_state = 181}, + [3045] = {.lex_state = 181}, + [3046] = {.lex_state = 193}, + [3047] = {.lex_state = 177}, + [3048] = {.lex_state = 181}, + [3049] = {.lex_state = 181}, + [3050] = {.lex_state = 181}, + [3051] = {.lex_state = 181}, + [3052] = {.lex_state = 181}, + [3053] = {.lex_state = 181}, + [3054] = {.lex_state = 181}, + [3055] = {.lex_state = 181}, + [3056] = {.lex_state = 181}, + [3057] = {.lex_state = 181}, + [3058] = {.lex_state = 181}, + [3059] = {.lex_state = 181}, + [3060] = {.lex_state = 181}, + [3061] = {.lex_state = 181}, + [3062] = {.lex_state = 168}, + [3063] = {.lex_state = 181}, + [3064] = {.lex_state = 181}, + [3065] = {.lex_state = 181}, + [3066] = {.lex_state = 181}, + [3067] = {.lex_state = 181}, + [3068] = {.lex_state = 181}, + [3069] = {.lex_state = 181}, + [3070] = {.lex_state = 181}, + [3071] = {.lex_state = 193}, + [3072] = {.lex_state = 193}, + [3073] = {.lex_state = 193}, + [3074] = {.lex_state = 193}, + [3075] = {.lex_state = 193}, + [3076] = {.lex_state = 173}, + [3077] = {.lex_state = 178}, + [3078] = {.lex_state = 169}, + [3079] = {.lex_state = 169}, + [3080] = {.lex_state = 168}, + [3081] = {.lex_state = 168}, + [3082] = {.lex_state = 168}, + [3083] = {.lex_state = 168}, + [3084] = {.lex_state = 178}, + [3085] = {.lex_state = 175}, + [3086] = {.lex_state = 168}, + [3087] = {.lex_state = 193}, + [3088] = {.lex_state = 193}, + [3089] = {.lex_state = 193}, + [3090] = {.lex_state = 193}, + [3091] = {.lex_state = 168}, + [3092] = {.lex_state = 193}, + [3093] = {.lex_state = 193}, [3094] = {.lex_state = 193}, - [3095] = {.lex_state = 144}, - [3096] = {.lex_state = 144}, - [3097] = {.lex_state = 199}, - [3098] = {.lex_state = 182}, - [3099] = {.lex_state = 182}, - [3100] = {.lex_state = 144}, - [3101] = {.lex_state = 182}, - [3102] = {.lex_state = 182}, - [3103] = {.lex_state = 193}, - [3104] = {.lex_state = 182}, - [3105] = {.lex_state = 144}, - [3106] = {.lex_state = 144}, - [3107] = {.lex_state = 182}, - [3108] = {.lex_state = 144}, - [3109] = {.lex_state = 182}, - [3110] = {.lex_state = 144}, - [3111] = {.lex_state = 144}, - [3112] = {.lex_state = 144}, - [3113] = {.lex_state = 144}, - [3114] = {.lex_state = 144}, - [3115] = {.lex_state = 182}, - [3116] = {.lex_state = 144}, - [3117] = {.lex_state = 182}, - [3118] = {.lex_state = 144}, - [3119] = {.lex_state = 144}, - [3120] = {.lex_state = 144}, - [3121] = {.lex_state = 182}, - [3122] = {.lex_state = 182}, - [3123] = {.lex_state = 144}, - [3124] = {.lex_state = 154}, - [3125] = {.lex_state = 154}, - [3126] = {.lex_state = 183}, - [3127] = {.lex_state = 183}, - [3128] = {.lex_state = 154}, - [3129] = {.lex_state = 154}, - [3130] = {.lex_state = 199}, - [3131] = {.lex_state = 199}, - [3132] = {.lex_state = 199}, - [3133] = {.lex_state = 199}, - [3134] = {.lex_state = 199}, - [3135] = {.lex_state = 199}, - [3136] = {.lex_state = 199}, - [3137] = {.lex_state = 199}, - [3138] = {.lex_state = 199}, - [3139] = {.lex_state = 199}, - [3140] = {.lex_state = 199}, - [3141] = {.lex_state = 199}, - [3142] = {.lex_state = 199}, - [3143] = {.lex_state = 199}, - [3144] = {.lex_state = 199}, - [3145] = {.lex_state = 199}, - [3146] = {.lex_state = 199}, - [3147] = {.lex_state = 186}, - [3148] = {.lex_state = 199}, - [3149] = {.lex_state = 183}, - [3150] = {.lex_state = 186}, - [3151] = {.lex_state = 186}, - [3152] = {.lex_state = 183}, + [3095] = {.lex_state = 193}, + [3096] = {.lex_state = 178}, + [3097] = {.lex_state = 178}, + [3098] = {.lex_state = 168}, + [3099] = {.lex_state = 178}, + [3100] = {.lex_state = 193}, + [3101] = {.lex_state = 193}, + [3102] = {.lex_state = 168}, + [3103] = {.lex_state = 178}, + [3104] = {.lex_state = 193}, + [3105] = {.lex_state = 178}, + [3106] = {.lex_state = 168}, + [3107] = {.lex_state = 193}, + [3108] = {.lex_state = 178}, + [3109] = {.lex_state = 178}, + [3110] = {.lex_state = 177}, + [3111] = {.lex_state = 193}, + [3112] = {.lex_state = 193}, + [3113] = {.lex_state = 193}, + [3114] = {.lex_state = 193}, + [3115] = {.lex_state = 193}, + [3116] = {.lex_state = 168}, + [3117] = {.lex_state = 178}, + [3118] = {.lex_state = 193}, + [3119] = {.lex_state = 193}, + [3120] = {.lex_state = 193}, + [3121] = {.lex_state = 193}, + [3122] = {.lex_state = 168}, + [3123] = {.lex_state = 193}, + [3124] = {.lex_state = 193}, + [3125] = {.lex_state = 178}, + [3126] = {.lex_state = 178}, + [3127] = {.lex_state = 168}, + [3128] = {.lex_state = 178}, + [3129] = {.lex_state = 178}, + [3130] = {.lex_state = 168}, + [3131] = {.lex_state = 168}, + [3132] = {.lex_state = 193}, + [3133] = {.lex_state = 178}, + [3134] = {.lex_state = 193}, + [3135] = {.lex_state = 178}, + [3136] = {.lex_state = 168}, + [3137] = {.lex_state = 178}, + [3138] = {.lex_state = 168}, + [3139] = {.lex_state = 178}, + [3140] = {.lex_state = 178}, + [3141] = {.lex_state = 193}, + [3142] = {.lex_state = 168}, + [3143] = {.lex_state = 193}, + [3144] = {.lex_state = 193}, + [3145] = {.lex_state = 193}, + [3146] = {.lex_state = 178}, + [3147] = {.lex_state = 168}, + [3148] = {.lex_state = 193}, + [3149] = {.lex_state = 168}, + [3150] = {.lex_state = 168}, + [3151] = {.lex_state = 178}, + [3152] = {.lex_state = 178}, [3153] = {.lex_state = 186}, - [3154] = {.lex_state = 199}, - [3155] = {.lex_state = 186}, - [3156] = {.lex_state = 199}, - [3157] = {.lex_state = 199}, - [3158] = {.lex_state = 197}, - [3159] = {.lex_state = 186}, - [3160] = {.lex_state = 186}, - [3161] = {.lex_state = 144}, - [3162] = {.lex_state = 186}, - [3163] = {.lex_state = 186}, - [3164] = {.lex_state = 182}, - [3165] = {.lex_state = 186}, - [3166] = {.lex_state = 199}, - [3167] = {.lex_state = 186}, - [3168] = {.lex_state = 199}, - [3169] = {.lex_state = 186}, - [3170] = {.lex_state = 186}, - [3171] = {.lex_state = 197}, - [3172] = {.lex_state = 182}, - [3173] = {.lex_state = 186}, - [3174] = {.lex_state = 186}, - [3175] = {.lex_state = 186}, - [3176] = {.lex_state = 186}, - [3177] = {.lex_state = 186}, - [3178] = {.lex_state = 186}, - [3179] = {.lex_state = 186}, - [3180] = {.lex_state = 186}, - [3181] = {.lex_state = 186}, - [3182] = {.lex_state = 199}, - [3183] = {.lex_state = 186}, - [3184] = {.lex_state = 186}, - [3185] = {.lex_state = 186}, - [3186] = {.lex_state = 186}, - [3187] = {.lex_state = 201}, - [3188] = {.lex_state = 201}, - [3189] = {.lex_state = 186}, - [3190] = {.lex_state = 182}, - [3191] = {.lex_state = 197}, - [3192] = {.lex_state = 182}, - [3193] = {.lex_state = 199}, - [3194] = {.lex_state = 199}, - [3195] = {.lex_state = 197}, - [3196] = {.lex_state = 199}, - [3197] = {.lex_state = 199}, - [3198] = {.lex_state = 199}, - [3199] = {.lex_state = 199}, - [3200] = {.lex_state = 202}, - [3201] = {.lex_state = 197}, - [3202] = {.lex_state = 199}, - [3203] = {.lex_state = 197}, - [3204] = {.lex_state = 182}, - [3205] = {.lex_state = 182}, - [3206] = {.lex_state = 197}, - [3207] = {.lex_state = 199}, - [3208] = {.lex_state = 189}, - [3209] = {.lex_state = 200}, - [3210] = {.lex_state = 199}, - [3211] = {.lex_state = 197}, - [3212] = {.lex_state = 199}, - [3213] = {.lex_state = 197}, - [3214] = {.lex_state = 197}, - [3215] = {.lex_state = 199}, - [3216] = {.lex_state = 199}, - [3217] = {.lex_state = 197}, - [3218] = {.lex_state = 197}, - [3219] = {.lex_state = 199}, - [3220] = {.lex_state = 186}, - [3221] = {.lex_state = 199}, - [3222] = {.lex_state = 197}, - [3223] = {.lex_state = 199}, - [3224] = {.lex_state = 182}, - [3225] = {.lex_state = 197}, - [3226] = {.lex_state = 199}, - [3227] = {.lex_state = 199}, - [3228] = {.lex_state = 197}, - [3229] = {.lex_state = 199}, - [3230] = {.lex_state = 182}, - [3231] = {.lex_state = 189}, - [3232] = {.lex_state = 199}, - [3233] = {.lex_state = 197}, - [3234] = {.lex_state = 197}, - [3235] = {.lex_state = 199}, - [3236] = {.lex_state = 197}, - [3237] = {.lex_state = 199}, - [3238] = {.lex_state = 197}, - [3239] = {.lex_state = 197}, - [3240] = {.lex_state = 199}, - [3241] = {.lex_state = 199}, - [3242] = {.lex_state = 199}, - [3243] = {.lex_state = 197}, - [3244] = {.lex_state = 197}, - [3245] = {.lex_state = 197}, - [3246] = {.lex_state = 199}, - [3247] = {.lex_state = 197}, - [3248] = {.lex_state = 197}, - [3249] = {.lex_state = 199}, - [3250] = {.lex_state = 199}, - [3251] = {.lex_state = 197}, - [3252] = {.lex_state = 199}, - [3253] = {.lex_state = 197}, - [3254] = {.lex_state = 199}, - [3255] = {.lex_state = 183}, - [3256] = {.lex_state = 197}, - [3257] = {.lex_state = 199}, - [3258] = {.lex_state = 199}, - [3259] = {.lex_state = 199}, - [3260] = {.lex_state = 199}, - [3261] = {.lex_state = 199}, - [3262] = {.lex_state = 199}, - [3263] = {.lex_state = 197}, - [3264] = {.lex_state = 199}, - [3265] = {.lex_state = 197}, - [3266] = {.lex_state = 199}, - [3267] = {.lex_state = 199}, - [3268] = {.lex_state = 197}, - [3269] = {.lex_state = 199}, - [3270] = {.lex_state = 199}, - [3271] = {.lex_state = 199}, - [3272] = {.lex_state = 197}, - [3273] = {.lex_state = 199}, - [3274] = {.lex_state = 197}, - [3275] = {.lex_state = 199}, - [3276] = {.lex_state = 197}, - [3277] = {.lex_state = 197}, - [3278] = {.lex_state = 197}, - [3279] = {.lex_state = 199}, - [3280] = {.lex_state = 199}, - [3281] = {.lex_state = 197}, - [3282] = {.lex_state = 197}, - [3283] = {.lex_state = 197}, - [3284] = {.lex_state = 197}, - [3285] = {.lex_state = 197}, - [3286] = {.lex_state = 197}, - [3287] = {.lex_state = 186}, - [3288] = {.lex_state = 182}, - [3289] = {.lex_state = 197}, - [3290] = {.lex_state = 188}, - [3291] = {.lex_state = 197}, - [3292] = {.lex_state = 181}, - [3293] = {.lex_state = 186}, - [3294] = {.lex_state = 181}, - [3295] = {.lex_state = 199}, - [3296] = {.lex_state = 186}, - [3297] = {.lex_state = 181}, - [3298] = {.lex_state = 181}, - [3299] = {.lex_state = 197}, - [3300] = {.lex_state = 199}, - [3301] = {.lex_state = 197}, - [3302] = {.lex_state = 186}, - [3303] = {.lex_state = 186}, - [3304] = {.lex_state = 186}, - [3305] = {.lex_state = 197}, - [3306] = {.lex_state = 197}, - [3307] = {.lex_state = 197}, - [3308] = {.lex_state = 197}, - [3309] = {.lex_state = 197}, - [3310] = {.lex_state = 197}, - [3311] = {.lex_state = 197}, - [3312] = {.lex_state = 197}, - [3313] = {.lex_state = 197}, - [3314] = {.lex_state = 197}, - [3315] = {.lex_state = 197}, - [3316] = {.lex_state = 186}, - [3317] = {.lex_state = 181}, - [3318] = {.lex_state = 197}, - [3319] = {.lex_state = 197}, - [3320] = {.lex_state = 199}, - [3321] = {.lex_state = 197}, - [3322] = {.lex_state = 181}, - [3323] = {.lex_state = 186}, - [3324] = {.lex_state = 197}, - [3325] = {.lex_state = 181}, - [3326] = {.lex_state = 197}, - [3327] = {.lex_state = 197}, - [3328] = {.lex_state = 188}, - [3329] = {.lex_state = 199}, - [3330] = {.lex_state = 186}, - [3331] = {.lex_state = 197}, - [3332] = {.lex_state = 182}, - [3333] = {.lex_state = 197}, - [3334] = {.lex_state = 181}, - [3335] = {.lex_state = 197}, - [3336] = {.lex_state = 182}, - [3337] = {.lex_state = 200}, - [3338] = {.lex_state = 186}, - [3339] = {.lex_state = 186}, - [3340] = {.lex_state = 199}, - [3341] = {.lex_state = 186}, - [3342] = {.lex_state = 182}, - [3343] = {.lex_state = 182}, - [3344] = {.lex_state = 186}, - [3345] = {.lex_state = 200}, - [3346] = {.lex_state = 182}, - [3347] = {.lex_state = 186}, - [3348] = {.lex_state = 186}, - [3349] = {.lex_state = 182}, - [3350] = {.lex_state = 197}, - [3351] = {.lex_state = 186}, - [3352] = {.lex_state = 186}, - [3353] = {.lex_state = 186}, - [3354] = {.lex_state = 186}, - [3355] = {.lex_state = 197}, - [3356] = {.lex_state = 186}, - [3357] = {.lex_state = 200}, - [3358] = {.lex_state = 186}, - [3359] = {.lex_state = 186}, - [3360] = {.lex_state = 186}, - [3361] = {.lex_state = 200}, - [3362] = {.lex_state = 200}, - [3363] = {.lex_state = 182}, - [3364] = {.lex_state = 182}, - [3365] = {.lex_state = 186}, - [3366] = {.lex_state = 186}, - [3367] = {.lex_state = 182}, - [3368] = {.lex_state = 199}, - [3369] = {.lex_state = 182}, - [3370] = {.lex_state = 182}, - [3371] = {.lex_state = 180}, - [3372] = {.lex_state = 186}, - [3373] = {.lex_state = 182}, - [3374] = {.lex_state = 182}, - [3375] = {.lex_state = 186}, - [3376] = {.lex_state = 199}, - [3377] = {.lex_state = 186}, - [3378] = {.lex_state = 182}, - [3379] = {.lex_state = 186}, - [3380] = {.lex_state = 186}, - [3381] = {.lex_state = 182}, - [3382] = {.lex_state = 182}, - [3383] = {.lex_state = 186}, - [3384] = {.lex_state = 186}, - [3385] = {.lex_state = 186}, - [3386] = {.lex_state = 186}, - [3387] = {.lex_state = 182}, - [3388] = {.lex_state = 182}, - [3389] = {.lex_state = 186}, - [3390] = {.lex_state = 200}, - [3391] = {.lex_state = 200}, - [3392] = {.lex_state = 186}, - [3393] = {.lex_state = 186}, - [3394] = {.lex_state = 181}, - [3395] = {.lex_state = 182}, - [3396] = {.lex_state = 200}, - [3397] = {.lex_state = 186}, - [3398] = {.lex_state = 182}, - [3399] = {.lex_state = 182}, - [3400] = {.lex_state = 186}, - [3401] = {.lex_state = 182}, - [3402] = {.lex_state = 182}, - [3403] = {.lex_state = 182}, - [3404] = {.lex_state = 181}, - [3405] = {.lex_state = 182}, - [3406] = {.lex_state = 186}, - [3407] = {.lex_state = 182}, - [3408] = {.lex_state = 186}, - [3409] = {.lex_state = 182}, - [3410] = {.lex_state = 181}, - [3411] = {.lex_state = 186}, - [3412] = {.lex_state = 186}, - [3413] = {.lex_state = 182}, - [3414] = {.lex_state = 186}, - [3415] = {.lex_state = 181}, - [3416] = {.lex_state = 182}, - [3417] = {.lex_state = 181}, - [3418] = {.lex_state = 182}, - [3419] = {.lex_state = 200}, - [3420] = {.lex_state = 186}, - [3421] = {.lex_state = 182}, - [3422] = {.lex_state = 182}, - [3423] = {.lex_state = 186}, - [3424] = {.lex_state = 186}, - [3425] = {.lex_state = 186}, - [3426] = {.lex_state = 186}, - [3427] = {.lex_state = 182}, - [3428] = {.lex_state = 182}, - [3429] = {.lex_state = 186}, - [3430] = {.lex_state = 186}, - [3431] = {.lex_state = 200}, - [3432] = {.lex_state = 186}, - [3433] = {.lex_state = 182}, - [3434] = {.lex_state = 182}, - [3435] = {.lex_state = 181}, - [3436] = {.lex_state = 186}, - [3437] = {.lex_state = 182}, - [3438] = {.lex_state = 182}, - [3439] = {.lex_state = 182}, - [3440] = {.lex_state = 181}, - [3441] = {.lex_state = 182}, - [3442] = {.lex_state = 182}, - [3443] = {.lex_state = 186}, - [3444] = {.lex_state = 200}, - [3445] = {.lex_state = 186}, - [3446] = {.lex_state = 182}, - [3447] = {.lex_state = 182}, - [3448] = {.lex_state = 200}, - [3449] = {.lex_state = 186}, - [3450] = {.lex_state = 186}, - [3451] = {.lex_state = 186}, - [3452] = {.lex_state = 182}, - [3453] = {.lex_state = 182}, - [3454] = {.lex_state = 199}, - [3455] = {.lex_state = 186}, - [3456] = {.lex_state = 182}, - [3457] = {.lex_state = 186}, - [3458] = {.lex_state = 199}, - [3459] = {.lex_state = 186}, - [3460] = {.lex_state = 186}, - [3461] = {.lex_state = 199}, - [3462] = {.lex_state = 182}, - [3463] = {.lex_state = 186}, - [3464] = {.lex_state = 186}, - [3465] = {.lex_state = 182}, - [3466] = {.lex_state = 200}, - [3467] = {.lex_state = 182}, - [3468] = {.lex_state = 186}, - [3469] = {.lex_state = 199}, - [3470] = {.lex_state = 182}, - [3471] = {.lex_state = 182}, - [3472] = {.lex_state = 182}, - [3473] = {.lex_state = 199}, - [3474] = {.lex_state = 182}, - [3475] = {.lex_state = 186}, - [3476] = {.lex_state = 186}, - [3477] = {.lex_state = 186}, - [3478] = {.lex_state = 182}, - [3479] = {.lex_state = 200}, - [3480] = {.lex_state = 182}, - [3481] = {.lex_state = 181}, + [3154] = {.lex_state = 168}, + [3155] = {.lex_state = 178}, + [3156] = {.lex_state = 193}, + [3157] = {.lex_state = 168}, + [3158] = {.lex_state = 168}, + [3159] = {.lex_state = 193}, + [3160] = {.lex_state = 178}, + [3161] = {.lex_state = 178}, + [3162] = {.lex_state = 178}, + [3163] = {.lex_state = 178}, + [3164] = {.lex_state = 178}, + [3165] = {.lex_state = 169}, + [3166] = {.lex_state = 178}, + [3167] = {.lex_state = 168}, + [3168] = {.lex_state = 178}, + [3169] = {.lex_state = 168}, + [3170] = {.lex_state = 178}, + [3171] = {.lex_state = 178}, + [3172] = {.lex_state = 168}, + [3173] = {.lex_state = 193}, + [3174] = {.lex_state = 178}, + [3175] = {.lex_state = 178}, + [3176] = {.lex_state = 178}, + [3177] = {.lex_state = 168}, + [3178] = {.lex_state = 178}, + [3179] = {.lex_state = 169}, + [3180] = {.lex_state = 168}, + [3181] = {.lex_state = 173}, + [3182] = {.lex_state = 193}, + [3183] = {.lex_state = 169}, + [3184] = {.lex_state = 169}, + [3185] = {.lex_state = 169}, + [3186] = {.lex_state = 169}, + [3187] = {.lex_state = 168}, + [3188] = {.lex_state = 169}, + [3189] = {.lex_state = 168}, + [3190] = {.lex_state = 168}, + [3191] = {.lex_state = 178}, + [3192] = {.lex_state = 178}, + [3193] = {.lex_state = 178}, + [3194] = {.lex_state = 178}, + [3195] = {.lex_state = 178}, + [3196] = {.lex_state = 169}, + [3197] = {.lex_state = 169}, + [3198] = {.lex_state = 178}, + [3199] = {.lex_state = 178}, + [3200] = {.lex_state = 178}, + [3201] = {.lex_state = 169}, + [3202] = {.lex_state = 168}, + [3203] = {.lex_state = 168}, + [3204] = {.lex_state = 168}, + [3205] = {.lex_state = 168}, + [3206] = {.lex_state = 168}, + [3207] = {.lex_state = 155}, + [3208] = {.lex_state = 168}, + [3209] = {.lex_state = 168}, + [3210] = {.lex_state = 168}, + [3211] = {.lex_state = 168}, + [3212] = {.lex_state = 168}, + [3213] = {.lex_state = 181}, + [3214] = {.lex_state = 168}, + [3215] = {.lex_state = 176}, + [3216] = {.lex_state = 155}, + [3217] = {.lex_state = 168}, + [3218] = {.lex_state = 168}, + [3219] = {.lex_state = 168}, + [3220] = {.lex_state = 168}, + [3221] = {.lex_state = 155}, + [3222] = {.lex_state = 168}, + [3223] = {.lex_state = 168}, + [3224] = {.lex_state = 168}, + [3225] = {.lex_state = 176}, + [3226] = {.lex_state = 155}, + [3227] = {.lex_state = 168}, + [3228] = {.lex_state = 168}, + [3229] = {.lex_state = 168}, + [3230] = {.lex_state = 168}, + [3231] = {.lex_state = 168}, + [3232] = {.lex_state = 168}, + [3233] = {.lex_state = 168}, + [3234] = {.lex_state = 168}, + [3235] = {.lex_state = 176}, + [3236] = {.lex_state = 168}, + [3237] = {.lex_state = 168}, + [3238] = {.lex_state = 168}, + [3239] = {.lex_state = 168}, + [3240] = {.lex_state = 168}, + [3241] = {.lex_state = 155}, + [3242] = {.lex_state = 168}, + [3243] = {.lex_state = 168}, + [3244] = {.lex_state = 168}, + [3245] = {.lex_state = 168}, + [3246] = {.lex_state = 155}, + [3247] = {.lex_state = 155}, + [3248] = {.lex_state = 155}, + [3249] = {.lex_state = 176}, + [3250] = {.lex_state = 168}, + [3251] = {.lex_state = 155}, + [3252] = {.lex_state = 168}, + [3253] = {.lex_state = 168}, + [3254] = {.lex_state = 168}, + [3255] = {.lex_state = 168}, + [3256] = {.lex_state = 168}, + [3257] = {.lex_state = 155}, + [3258] = {.lex_state = 168}, + [3259] = {.lex_state = 168}, + [3260] = {.lex_state = 168}, + [3261] = {.lex_state = 168}, + [3262] = {.lex_state = 168}, + [3263] = {.lex_state = 168}, + [3264] = {.lex_state = 168}, + [3265] = {.lex_state = 168}, + [3266] = {.lex_state = 168}, + [3267] = {.lex_state = 168}, + [3268] = {.lex_state = 155}, + [3269] = {.lex_state = 155}, + [3270] = {.lex_state = 168}, + [3271] = {.lex_state = 168}, + [3272] = {.lex_state = 155}, + [3273] = {.lex_state = 155}, + [3274] = {.lex_state = 168}, + [3275] = {.lex_state = 168}, + [3276] = {.lex_state = 168}, + [3277] = {.lex_state = 168}, + [3278] = {.lex_state = 168}, + [3279] = {.lex_state = 168}, + [3280] = {.lex_state = 168}, + [3281] = {.lex_state = 168}, + [3282] = {.lex_state = 168}, + [3283] = {.lex_state = 168}, + [3284] = {.lex_state = 168}, + [3285] = {.lex_state = 168}, + [3286] = {.lex_state = 155}, + [3287] = {.lex_state = 168}, + [3288] = {.lex_state = 168}, + [3289] = {.lex_state = 168}, + [3290] = {.lex_state = 168}, + [3291] = {.lex_state = 155}, + [3292] = {.lex_state = 168}, + [3293] = {.lex_state = 168}, + [3294] = {.lex_state = 168}, + [3295] = {.lex_state = 155}, + [3296] = {.lex_state = 168}, + [3297] = {.lex_state = 155}, + [3298] = {.lex_state = 168}, + [3299] = {.lex_state = 168}, + [3300] = {.lex_state = 168}, + [3301] = {.lex_state = 168}, + [3302] = {.lex_state = 168}, + [3303] = {.lex_state = 168}, + [3304] = {.lex_state = 168}, + [3305] = {.lex_state = 168}, + [3306] = {.lex_state = 168}, + [3307] = {.lex_state = 178}, + [3308] = {.lex_state = 176}, + [3309] = {.lex_state = 168}, + [3310] = {.lex_state = 168}, + [3311] = {.lex_state = 177}, + [3312] = {.lex_state = 168}, + [3313] = {.lex_state = 178}, + [3314] = {.lex_state = 168}, + [3315] = {.lex_state = 168}, + [3316] = {.lex_state = 168}, + [3317] = {.lex_state = 168}, + [3318] = {.lex_state = 168}, + [3319] = {.lex_state = 168}, + [3320] = {.lex_state = 168}, + [3321] = {.lex_state = 168}, + [3322] = {.lex_state = 168}, + [3323] = {.lex_state = 168}, + [3324] = {.lex_state = 176}, + [3325] = {.lex_state = 168}, + [3326] = {.lex_state = 168}, + [3327] = {.lex_state = 168}, + [3328] = {.lex_state = 168}, + [3329] = {.lex_state = 168}, + [3330] = {.lex_state = 168}, + [3331] = {.lex_state = 168}, + [3332] = {.lex_state = 155}, + [3333] = {.lex_state = 168}, + [3334] = {.lex_state = 168}, + [3335] = {.lex_state = 168}, + [3336] = {.lex_state = 168}, + [3337] = {.lex_state = 168}, + [3338] = {.lex_state = 168}, + [3339] = {.lex_state = 168}, + [3340] = {.lex_state = 168}, + [3341] = {.lex_state = 168}, + [3342] = {.lex_state = 168}, + [3343] = {.lex_state = 168}, + [3344] = {.lex_state = 168}, + [3345] = {.lex_state = 155}, + [3346] = {.lex_state = 168}, + [3347] = {.lex_state = 168}, + [3348] = {.lex_state = 168}, + [3349] = {.lex_state = 168}, + [3350] = {.lex_state = 168}, + [3351] = {.lex_state = 193}, + [3352] = {.lex_state = 168}, + [3353] = {.lex_state = 168}, + [3354] = {.lex_state = 168}, + [3355] = {.lex_state = 168}, + [3356] = {.lex_state = 168}, + [3357] = {.lex_state = 168}, + [3358] = {.lex_state = 178}, + [3359] = {.lex_state = 178}, + [3360] = {.lex_state = 178}, + [3361] = {.lex_state = 193}, + [3362] = {.lex_state = 193}, + [3363] = {.lex_state = 204}, + [3364] = {.lex_state = 193}, + [3365] = {.lex_state = 193}, + [3366] = {.lex_state = 193}, + [3367] = {.lex_state = 209}, + [3368] = {.lex_state = 178}, + [3369] = {.lex_state = 178}, + [3370] = {.lex_state = 178}, + [3371] = {.lex_state = 178}, + [3372] = {.lex_state = 211}, + [3373] = {.lex_state = 178}, + [3374] = {.lex_state = 178}, + [3375] = {.lex_state = 178}, + [3376] = {.lex_state = 178}, + [3377] = {.lex_state = 178}, + [3378] = {.lex_state = 178}, + [3379] = {.lex_state = 193}, + [3380] = {.lex_state = 178}, + [3381] = {.lex_state = 190}, + [3382] = {.lex_state = 178}, + [3383] = {.lex_state = 188}, + [3384] = {.lex_state = 193}, + [3385] = {.lex_state = 188}, + [3386] = {.lex_state = 204}, + [3387] = {.lex_state = 163}, + [3388] = {.lex_state = 193}, + [3389] = {.lex_state = 163}, + [3390] = {.lex_state = 178}, + [3391] = {.lex_state = 193}, + [3392] = {.lex_state = 178}, + [3393] = {.lex_state = 178}, + [3394] = {.lex_state = 193}, + [3395] = {.lex_state = 193}, + [3396] = {.lex_state = 193}, + [3397] = {.lex_state = 163}, + [3398] = {.lex_state = 178}, + [3399] = {.lex_state = 204}, + [3400] = {.lex_state = 178}, + [3401] = {.lex_state = 193}, + [3402] = {.lex_state = 178}, + [3403] = {.lex_state = 178}, + [3404] = {.lex_state = 168}, + [3405] = {.lex_state = 204}, + [3406] = {.lex_state = 168}, + [3407] = {.lex_state = 163}, + [3408] = {.lex_state = 193}, + [3409] = {.lex_state = 193}, + [3410] = {.lex_state = 193}, + [3411] = {.lex_state = 193}, + [3412] = {.lex_state = 178}, + [3413] = {.lex_state = 193}, + [3414] = {.lex_state = 178}, + [3415] = {.lex_state = 193}, + [3416] = {.lex_state = 193}, + [3417] = {.lex_state = 204}, + [3418] = {.lex_state = 211}, + [3419] = {.lex_state = 178}, + [3420] = {.lex_state = 178}, + [3421] = {.lex_state = 193}, + [3422] = {.lex_state = 178}, + [3423] = {.lex_state = 181}, + [3424] = {.lex_state = 168}, + [3425] = {.lex_state = 178}, + [3426] = {.lex_state = 178}, + [3427] = {.lex_state = 178}, + [3428] = {.lex_state = 178}, + [3429] = {.lex_state = 173}, + [3430] = {.lex_state = 178}, + [3431] = {.lex_state = 168}, + [3432] = {.lex_state = 169}, + [3433] = {.lex_state = 181}, + [3434] = {.lex_state = 178}, + [3435] = {.lex_state = 178}, + [3436] = {.lex_state = 178}, + [3437] = {.lex_state = 181}, + [3438] = {.lex_state = 178}, + [3439] = {.lex_state = 181}, + [3440] = {.lex_state = 168}, + [3441] = {.lex_state = 178}, + [3442] = {.lex_state = 178}, + [3443] = {.lex_state = 181}, + [3444] = {.lex_state = 178}, + [3445] = {.lex_state = 178}, + [3446] = {.lex_state = 168}, + [3447] = {.lex_state = 178}, + [3448] = {.lex_state = 178}, + [3449] = {.lex_state = 178}, + [3450] = {.lex_state = 178}, + [3451] = {.lex_state = 178}, + [3452] = {.lex_state = 178}, + [3453] = {.lex_state = 181}, + [3454] = {.lex_state = 181}, + [3455] = {.lex_state = 168}, + [3456] = {.lex_state = 178}, + [3457] = {.lex_state = 178}, + [3458] = {.lex_state = 168}, + [3459] = {.lex_state = 181}, + [3460] = {.lex_state = 178}, + [3461] = {.lex_state = 181}, + [3462] = {.lex_state = 178}, + [3463] = {.lex_state = 181}, + [3464] = {.lex_state = 181}, + [3465] = {.lex_state = 181}, + [3466] = {.lex_state = 181}, + [3467] = {.lex_state = 181}, + [3468] = {.lex_state = 178}, + [3469] = {.lex_state = 178}, + [3470] = {.lex_state = 178}, + [3471] = {.lex_state = 168}, + [3472] = {.lex_state = 168}, + [3473] = {.lex_state = 178}, + [3474] = {.lex_state = 178}, + [3475] = {.lex_state = 168}, + [3476] = {.lex_state = 178}, + [3477] = {.lex_state = 178}, + [3478] = {.lex_state = 178}, + [3479] = {.lex_state = 211}, + [3480] = {.lex_state = 181}, + [3481] = {.lex_state = 168}, [3482] = {.lex_state = 181}, - [3483] = {.lex_state = 199}, - [3484] = {.lex_state = 186}, - [3485] = {.lex_state = 186}, - [3486] = {.lex_state = 186}, - [3487] = {.lex_state = 182}, - [3488] = {.lex_state = 200}, - [3489] = {.lex_state = 181}, + [3483] = {.lex_state = 168}, + [3484] = {.lex_state = 178}, + [3485] = {.lex_state = 168}, + [3486] = {.lex_state = 178}, + [3487] = {.lex_state = 181}, + [3488] = {.lex_state = 178}, + [3489] = {.lex_state = 178}, [3490] = {.lex_state = 181}, - [3491] = {.lex_state = 182}, - [3492] = {.lex_state = 186}, - [3493] = {.lex_state = 182}, + [3491] = {.lex_state = 178}, + [3492] = {.lex_state = 181}, + [3493] = {.lex_state = 178}, [3494] = {.lex_state = 181}, - [3495] = {.lex_state = 186}, - [3496] = {.lex_state = 182}, - [3497] = {.lex_state = 186}, - [3498] = {.lex_state = 186}, - [3499] = {.lex_state = 186}, - [3500] = {.lex_state = 186}, - [3501] = {.lex_state = 199}, - [3502] = {.lex_state = 186}, - [3503] = {.lex_state = 186}, - [3504] = {.lex_state = 186}, - [3505] = {.lex_state = 186}, - [3506] = {.lex_state = 186}, - [3507] = {.lex_state = 186}, - [3508] = {.lex_state = 186}, - [3509] = {.lex_state = 186}, - [3510] = {.lex_state = 186}, - [3511] = {.lex_state = 186}, - [3512] = {.lex_state = 200}, - [3513] = {.lex_state = 186}, - [3514] = {.lex_state = 186}, - [3515] = {.lex_state = 186}, - [3516] = {.lex_state = 182}, - [3517] = {.lex_state = 186}, - [3518] = {.lex_state = 186}, - [3519] = {.lex_state = 186}, - [3520] = {.lex_state = 186}, - [3521] = {.lex_state = 186}, - [3522] = {.lex_state = 186}, - [3523] = {.lex_state = 186}, - [3524] = {.lex_state = 186}, - [3525] = {.lex_state = 186}, - [3526] = {.lex_state = 186}, - [3527] = {.lex_state = 186}, - [3528] = {.lex_state = 186}, - [3529] = {.lex_state = 186}, - [3530] = {.lex_state = 186}, - [3531] = {.lex_state = 200}, - [3532] = {.lex_state = 186}, - [3533] = {.lex_state = 186}, - [3534] = {.lex_state = 186}, - [3535] = {.lex_state = 199}, - [3536] = {.lex_state = 186}, - [3537] = {.lex_state = 186}, - [3538] = {.lex_state = 186}, - [3539] = {.lex_state = 186}, - [3540] = {.lex_state = 186}, - [3541] = {.lex_state = 186}, - [3542] = {.lex_state = 186}, - [3543] = {.lex_state = 186}, - [3544] = {.lex_state = 186}, - [3545] = {.lex_state = 186}, - [3546] = {.lex_state = 186}, - [3547] = {.lex_state = 186}, - [3548] = {.lex_state = 186}, - [3549] = {.lex_state = 186}, - [3550] = {.lex_state = 186}, - [3551] = {.lex_state = 186}, - [3552] = {.lex_state = 186}, - [3553] = {.lex_state = 186}, - [3554] = {.lex_state = 200}, - [3555] = {.lex_state = 182}, - [3556] = {.lex_state = 199}, - [3557] = {.lex_state = 192}, - [3558] = {.lex_state = 200}, - [3559] = {.lex_state = 186}, - [3560] = {.lex_state = 186}, - [3561] = {.lex_state = 186}, - [3562] = {.lex_state = 186}, - [3563] = {.lex_state = 186}, - [3564] = {.lex_state = 186}, - [3565] = {.lex_state = 186}, - [3566] = {.lex_state = 186}, - [3567] = {.lex_state = 186}, - [3568] = {.lex_state = 186}, - [3569] = {.lex_state = 186}, - [3570] = {.lex_state = 186}, - [3571] = {.lex_state = 186}, - [3572] = {.lex_state = 182}, - [3573] = {.lex_state = 199}, - [3574] = {.lex_state = 186}, - [3575] = {.lex_state = 200}, - [3576] = {.lex_state = 186}, - [3577] = {.lex_state = 182}, - [3578] = {.lex_state = 200}, - [3579] = {.lex_state = 200}, - [3580] = {.lex_state = 186}, - [3581] = {.lex_state = 186}, - [3582] = {.lex_state = 186}, - [3583] = {.lex_state = 186}, - [3584] = {.lex_state = 202}, - [3585] = {.lex_state = 186}, - [3586] = {.lex_state = 200}, - [3587] = {.lex_state = 186}, - [3588] = {.lex_state = 200}, - [3589] = {.lex_state = 186}, - [3590] = {.lex_state = 182}, - [3591] = {.lex_state = 182}, - [3592] = {.lex_state = 186}, - [3593] = {.lex_state = 199}, - [3594] = {.lex_state = 186}, - [3595] = {.lex_state = 186}, - [3596] = {.lex_state = 182}, - [3597] = {.lex_state = 186}, - [3598] = {.lex_state = 182}, - [3599] = {.lex_state = 186}, - [3600] = {.lex_state = 186}, - [3601] = {.lex_state = 200}, - [3602] = {.lex_state = 186}, - [3603] = {.lex_state = 192}, - [3604] = {.lex_state = 186}, - [3605] = {.lex_state = 186}, - [3606] = {.lex_state = 200}, - [3607] = {.lex_state = 186}, - [3608] = {.lex_state = 199}, - [3609] = {.lex_state = 199}, - [3610] = {.lex_state = 186}, - [3611] = {.lex_state = 186}, - [3612] = {.lex_state = 186}, - [3613] = {.lex_state = 186}, - [3614] = {.lex_state = 186}, - [3615] = {.lex_state = 186}, - [3616] = {.lex_state = 186}, - [3617] = {.lex_state = 200}, - [3618] = {.lex_state = 186}, - [3619] = {.lex_state = 186}, - [3620] = {.lex_state = 200}, - [3621] = {.lex_state = 200}, - [3622] = {.lex_state = 186}, - [3623] = {.lex_state = 186}, - [3624] = {.lex_state = 186}, - [3625] = {.lex_state = 200}, - [3626] = {.lex_state = 200}, - [3627] = {.lex_state = 200}, - [3628] = {.lex_state = 200}, - [3629] = {.lex_state = 200}, - [3630] = {.lex_state = 200}, - [3631] = {.lex_state = 186}, - [3632] = {.lex_state = 199}, - [3633] = {.lex_state = 182}, - [3634] = {.lex_state = 182}, - [3635] = {.lex_state = 182}, - [3636] = {.lex_state = 182}, - [3637] = {.lex_state = 182}, - [3638] = {.lex_state = 182}, - [3639] = {.lex_state = 182}, - [3640] = {.lex_state = 182}, - [3641] = {.lex_state = 182}, - [3642] = {.lex_state = 182}, - [3643] = {.lex_state = 186}, - [3644] = {.lex_state = 182}, - [3645] = {.lex_state = 186}, - [3646] = {.lex_state = 186}, - [3647] = {.lex_state = 182}, - [3648] = {.lex_state = 200}, - [3649] = {.lex_state = 200}, - [3650] = {.lex_state = 200}, - [3651] = {.lex_state = 200}, - [3652] = {.lex_state = 200}, - [3653] = {.lex_state = 200}, - [3654] = {.lex_state = 200}, - [3655] = {.lex_state = 200}, - [3656] = {.lex_state = 200}, - [3657] = {.lex_state = 186}, - [3658] = {.lex_state = 200}, - [3659] = {.lex_state = 200}, - [3660] = {.lex_state = 200}, - [3661] = {.lex_state = 182}, - [3662] = {.lex_state = 186}, - [3663] = {.lex_state = 186}, - [3664] = {.lex_state = 200}, - [3665] = {.lex_state = 200}, - [3666] = {.lex_state = 200}, - [3667] = {.lex_state = 200}, - [3668] = {.lex_state = 182}, - [3669] = {.lex_state = 186}, - [3670] = {.lex_state = 200}, - [3671] = {.lex_state = 182}, - [3672] = {.lex_state = 186}, - [3673] = {.lex_state = 182}, - [3674] = {.lex_state = 200}, - [3675] = {.lex_state = 200}, - [3676] = {.lex_state = 200}, - [3677] = {.lex_state = 200}, - [3678] = {.lex_state = 200}, - [3679] = {.lex_state = 186}, - [3680] = {.lex_state = 200}, - [3681] = {.lex_state = 200}, - [3682] = {.lex_state = 186}, - [3683] = {.lex_state = 182}, - [3684] = {.lex_state = 186}, - [3685] = {.lex_state = 186}, - [3686] = {.lex_state = 186}, - [3687] = {.lex_state = 186}, - [3688] = {.lex_state = 186}, - [3689] = {.lex_state = 186}, - [3690] = {.lex_state = 186}, - [3691] = {.lex_state = 186}, - [3692] = {.lex_state = 186}, - [3693] = {.lex_state = 199}, - [3694] = {.lex_state = 186}, - [3695] = {.lex_state = 186}, - [3696] = {.lex_state = 186}, - [3697] = {.lex_state = 186}, - [3698] = {.lex_state = 186}, - [3699] = {.lex_state = 186}, - [3700] = {.lex_state = 182}, - [3701] = {.lex_state = 186}, - [3702] = {.lex_state = 186}, - [3703] = {.lex_state = 182}, - [3704] = {.lex_state = 199}, - [3705] = {.lex_state = 182}, - [3706] = {.lex_state = 182}, - [3707] = {.lex_state = 182}, - [3708] = {.lex_state = 186}, - [3709] = {.lex_state = 186}, - [3710] = {.lex_state = 186}, - [3711] = {.lex_state = 186}, - [3712] = {.lex_state = 182}, - [3713] = {.lex_state = 181}, - [3714] = {.lex_state = 182}, - [3715] = {.lex_state = 186}, - [3716] = {.lex_state = 182}, - [3717] = {.lex_state = 182}, - [3718] = {.lex_state = 186}, - [3719] = {.lex_state = 181}, - [3720] = {.lex_state = 186}, - [3721] = {.lex_state = 186}, - [3722] = {.lex_state = 186}, - [3723] = {.lex_state = 182}, - [3724] = {.lex_state = 186}, - [3725] = {.lex_state = 186}, - [3726] = {.lex_state = 181}, - [3727] = {.lex_state = 199}, - [3728] = {.lex_state = 186}, - [3729] = {.lex_state = 186}, - [3730] = {.lex_state = 186}, - [3731] = {.lex_state = 182}, - [3732] = {.lex_state = 186}, - [3733] = {.lex_state = 186}, - [3734] = {.lex_state = 186}, - [3735] = {.lex_state = 186}, - [3736] = {.lex_state = 186}, - [3737] = {.lex_state = 186}, - [3738] = {.lex_state = 181}, - [3739] = {.lex_state = 186}, - [3740] = {.lex_state = 186}, - [3741] = {.lex_state = 186}, - [3742] = {.lex_state = 199}, - [3743] = {.lex_state = 186}, - [3744] = {.lex_state = 186}, - [3745] = {.lex_state = 186}, - [3746] = {.lex_state = 200}, - [3747] = {.lex_state = 182}, - [3748] = {.lex_state = 186}, - [3749] = {.lex_state = 186}, - [3750] = {.lex_state = 186}, - [3751] = {.lex_state = 186}, - [3752] = {.lex_state = 182}, - [3753] = {.lex_state = 186}, - [3754] = {.lex_state = 186}, - [3755] = {.lex_state = 186}, - [3756] = {.lex_state = 186}, - [3757] = {.lex_state = 186}, - [3758] = {.lex_state = 186}, - [3759] = {.lex_state = 186}, - [3760] = {.lex_state = 186}, - [3761] = {.lex_state = 186}, - [3762] = {.lex_state = 186}, - [3763] = {.lex_state = 186}, - [3764] = {.lex_state = 186}, - [3765] = {.lex_state = 186}, - [3766] = {.lex_state = 182}, - [3767] = {.lex_state = 186}, - [3768] = {.lex_state = 182}, - [3769] = {.lex_state = 186}, - [3770] = {.lex_state = 186}, - [3771] = {.lex_state = 186}, - [3772] = {.lex_state = 186}, - [3773] = {.lex_state = 182}, - [3774] = {.lex_state = 186}, - [3775] = {.lex_state = 186}, - [3776] = {.lex_state = 199}, - [3777] = {.lex_state = 186}, - [3778] = {.lex_state = 186}, - [3779] = {.lex_state = 186}, - [3780] = {.lex_state = 186}, - [3781] = {.lex_state = 186}, - [3782] = {.lex_state = 186}, - [3783] = {.lex_state = 181}, - [3784] = {.lex_state = 182}, - [3785] = {.lex_state = 186}, - [3786] = {.lex_state = 200}, - [3787] = {.lex_state = 186}, - [3788] = {.lex_state = 186}, - [3789] = {.lex_state = 186}, - [3790] = {.lex_state = 186}, - [3791] = {.lex_state = 186}, - [3792] = {.lex_state = 186}, - [3793] = {.lex_state = 186}, - [3794] = {.lex_state = 186}, - [3795] = {.lex_state = 186}, - [3796] = {.lex_state = 186}, - [3797] = {.lex_state = 186}, - [3798] = {.lex_state = 182}, - [3799] = {.lex_state = 182}, - [3800] = {.lex_state = 186}, - [3801] = {.lex_state = 182}, - [3802] = {.lex_state = 186}, - [3803] = {.lex_state = 186}, - [3804] = {.lex_state = 186}, - [3805] = {.lex_state = 186}, - [3806] = {.lex_state = 186}, - [3807] = {.lex_state = 186}, - [3808] = {.lex_state = 186}, - [3809] = {.lex_state = 186}, - [3810] = {.lex_state = 199}, - [3811] = {.lex_state = 186}, - [3812] = {.lex_state = 181}, - [3813] = {.lex_state = 186}, - [3814] = {.lex_state = 181}, - [3815] = {.lex_state = 186}, - [3816] = {.lex_state = 182}, - [3817] = {.lex_state = 186}, - [3818] = {.lex_state = 186}, - [3819] = {.lex_state = 182}, - [3820] = {.lex_state = 186}, - [3821] = {.lex_state = 186}, - [3822] = {.lex_state = 181}, - [3823] = {.lex_state = 186}, - [3824] = {.lex_state = 186}, - [3825] = {.lex_state = 186}, - [3826] = {.lex_state = 186}, - [3827] = {.lex_state = 186}, - [3828] = {.lex_state = 186}, - [3829] = {.lex_state = 186}, - [3830] = {.lex_state = 186}, - [3831] = {.lex_state = 186}, - [3832] = {.lex_state = 182}, - [3833] = {.lex_state = 186}, - [3834] = {.lex_state = 186}, - [3835] = {.lex_state = 186}, - [3836] = {.lex_state = 186}, - [3837] = {.lex_state = 186}, - [3838] = {.lex_state = 186}, - [3839] = {.lex_state = 186}, - [3840] = {.lex_state = 181}, - [3841] = {.lex_state = 186}, - [3842] = {.lex_state = 186}, - [3843] = {.lex_state = 186}, - [3844] = {.lex_state = 186}, - [3845] = {.lex_state = 186}, - [3846] = {.lex_state = 186}, - [3847] = {.lex_state = 186}, - [3848] = {.lex_state = 186}, - [3849] = {.lex_state = 186}, - [3850] = {.lex_state = 186}, - [3851] = {.lex_state = 186}, - [3852] = {.lex_state = 186}, - [3853] = {.lex_state = 186}, - [3854] = {.lex_state = 186}, - [3855] = {.lex_state = 182}, - [3856] = {.lex_state = 186}, - [3857] = {.lex_state = 186}, - [3858] = {.lex_state = 181}, - [3859] = {.lex_state = 181}, - [3860] = {.lex_state = 199}, - [3861] = {.lex_state = 199}, - [3862] = {.lex_state = 200}, - [3863] = {.lex_state = 181}, - [3864] = {.lex_state = 200}, - [3865] = {.lex_state = 199}, - [3866] = {.lex_state = 181}, - [3867] = {.lex_state = 199}, - [3868] = {.lex_state = 197}, - [3869] = {.lex_state = 181}, - [3870] = {.lex_state = 181}, - [3871] = {.lex_state = 199}, - [3872] = {.lex_state = 200}, - [3873] = {.lex_state = 199}, - [3874] = {.lex_state = 199}, - [3875] = {.lex_state = 199}, - [3876] = {.lex_state = 181}, - [3877] = {.lex_state = 200}, - [3878] = {.lex_state = 200}, - [3879] = {.lex_state = 181}, - [3880] = {.lex_state = 199}, - [3881] = {.lex_state = 200}, - [3882] = {.lex_state = 199}, - [3883] = {.lex_state = 199}, - [3884] = {.lex_state = 201}, - [3885] = {.lex_state = 181}, - [3886] = {.lex_state = 200}, - [3887] = {.lex_state = 199}, - [3888] = {.lex_state = 201}, - [3889] = {.lex_state = 182}, - [3890] = {.lex_state = 199}, - [3891] = {.lex_state = 199}, - [3892] = {.lex_state = 199}, - [3893] = {.lex_state = 200}, - [3894] = {.lex_state = 182}, - [3895] = {.lex_state = 197}, - [3896] = {.lex_state = 197}, + [3495] = {.lex_state = 181}, + [3496] = {.lex_state = 178}, + [3497] = {.lex_state = 181}, + [3498] = {.lex_state = 181}, + [3499] = {.lex_state = 178}, + [3500] = {.lex_state = 178}, + [3501] = {.lex_state = 178}, + [3502] = {.lex_state = 168}, + [3503] = {.lex_state = 181}, + [3504] = {.lex_state = 178}, + [3505] = {.lex_state = 168}, + [3506] = {.lex_state = 178}, + [3507] = {.lex_state = 178}, + [3508] = {.lex_state = 168}, + [3509] = {.lex_state = 181}, + [3510] = {.lex_state = 168}, + [3511] = {.lex_state = 168}, + [3512] = {.lex_state = 168}, + [3513] = {.lex_state = 178}, + [3514] = {.lex_state = 168}, + [3515] = {.lex_state = 178}, + [3516] = {.lex_state = 178}, + [3517] = {.lex_state = 168}, + [3518] = {.lex_state = 181}, + [3519] = {.lex_state = 178}, + [3520] = {.lex_state = 211}, + [3521] = {.lex_state = 168}, + [3522] = {.lex_state = 168}, + [3523] = {.lex_state = 178}, + [3524] = {.lex_state = 178}, + [3525] = {.lex_state = 168}, + [3526] = {.lex_state = 178}, + [3527] = {.lex_state = 178}, + [3528] = {.lex_state = 178}, + [3529] = {.lex_state = 178}, + [3530] = {.lex_state = 178}, + [3531] = {.lex_state = 178}, + [3532] = {.lex_state = 178}, + [3533] = {.lex_state = 178}, + [3534] = {.lex_state = 178}, + [3535] = {.lex_state = 178}, + [3536] = {.lex_state = 165}, + [3537] = {.lex_state = 178}, + [3538] = {.lex_state = 178}, + [3539] = {.lex_state = 178}, + [3540] = {.lex_state = 178}, + [3541] = {.lex_state = 178}, + [3542] = {.lex_state = 165}, + [3543] = {.lex_state = 178}, + [3544] = {.lex_state = 178}, + [3545] = {.lex_state = 178}, + [3546] = {.lex_state = 173}, + [3547] = {.lex_state = 168}, + [3548] = {.lex_state = 178}, + [3549] = {.lex_state = 178}, + [3550] = {.lex_state = 165}, + [3551] = {.lex_state = 178}, + [3552] = {.lex_state = 168}, + [3553] = {.lex_state = 211}, + [3554] = {.lex_state = 211}, + [3555] = {.lex_state = 211}, + [3556] = {.lex_state = 168}, + [3557] = {.lex_state = 168}, + [3558] = {.lex_state = 168}, + [3559] = {.lex_state = 168}, + [3560] = {.lex_state = 211}, + [3561] = {.lex_state = 168}, + [3562] = {.lex_state = 168}, + [3563] = {.lex_state = 168}, + [3564] = {.lex_state = 168}, + [3565] = {.lex_state = 168}, + [3566] = {.lex_state = 168}, + [3567] = {.lex_state = 211}, + [3568] = {.lex_state = 168}, + [3569] = {.lex_state = 168}, + [3570] = {.lex_state = 211}, + [3571] = {.lex_state = 168}, + [3572] = {.lex_state = 168}, + [3573] = {.lex_state = 168}, + [3574] = {.lex_state = 168}, + [3575] = {.lex_state = 168}, + [3576] = {.lex_state = 168}, + [3577] = {.lex_state = 168}, + [3578] = {.lex_state = 211}, + [3579] = {.lex_state = 181}, + [3580] = {.lex_state = 168}, + [3581] = {.lex_state = 168}, + [3582] = {.lex_state = 168}, + [3583] = {.lex_state = 168}, + [3584] = {.lex_state = 168}, + [3585] = {.lex_state = 168}, + [3586] = {.lex_state = 168}, + [3587] = {.lex_state = 181}, + [3588] = {.lex_state = 181}, + [3589] = {.lex_state = 181}, + [3590] = {.lex_state = 181}, + [3591] = {.lex_state = 181}, + [3592] = {.lex_state = 181}, + [3593] = {.lex_state = 168}, + [3594] = {.lex_state = 168}, + [3595] = {.lex_state = 211}, + [3596] = {.lex_state = 168}, + [3597] = {.lex_state = 168}, + [3598] = {.lex_state = 181}, + [3599] = {.lex_state = 211}, + [3600] = {.lex_state = 168}, + [3601] = {.lex_state = 211}, + [3602] = {.lex_state = 211}, + [3603] = {.lex_state = 168}, + [3604] = {.lex_state = 168}, + [3605] = {.lex_state = 168}, + [3606] = {.lex_state = 168}, + [3607] = {.lex_state = 168}, + [3608] = {.lex_state = 211}, + [3609] = {.lex_state = 168}, + [3610] = {.lex_state = 168}, + [3611] = {.lex_state = 211}, + [3612] = {.lex_state = 168}, + [3613] = {.lex_state = 168}, + [3614] = {.lex_state = 168}, + [3615] = {.lex_state = 211}, + [3616] = {.lex_state = 168}, + [3617] = {.lex_state = 168}, + [3618] = {.lex_state = 211}, + [3619] = {.lex_state = 168}, + [3620] = {.lex_state = 168}, + [3621] = {.lex_state = 168}, + [3622] = {.lex_state = 168}, + [3623] = {.lex_state = 168}, + [3624] = {.lex_state = 168}, + [3625] = {.lex_state = 168}, + [3626] = {.lex_state = 168}, + [3627] = {.lex_state = 168}, + [3628] = {.lex_state = 168}, + [3629] = {.lex_state = 168}, + [3630] = {.lex_state = 211}, + [3631] = {.lex_state = 209}, + [3632] = {.lex_state = 211}, + [3633] = {.lex_state = 211}, + [3634] = {.lex_state = 155}, + [3635] = {.lex_state = 211}, + [3636] = {.lex_state = 209}, + [3637] = {.lex_state = 209}, + [3638] = {.lex_state = 194}, + [3639] = {.lex_state = 209}, + [3640] = {.lex_state = 209}, + [3641] = {.lex_state = 165}, + [3642] = {.lex_state = 209}, + [3643] = {.lex_state = 209}, + [3644] = {.lex_state = 211}, + [3645] = {.lex_state = 209}, + [3646] = {.lex_state = 165}, + [3647] = {.lex_state = 209}, + [3648] = {.lex_state = 209}, + [3649] = {.lex_state = 209}, + [3650] = {.lex_state = 211}, + [3651] = {.lex_state = 211}, + [3652] = {.lex_state = 209}, + [3653] = {.lex_state = 209}, + [3654] = {.lex_state = 165}, + [3655] = {.lex_state = 209}, + [3656] = {.lex_state = 194}, + [3657] = {.lex_state = 209}, + [3658] = {.lex_state = 165}, + [3659] = {.lex_state = 209}, + [3660] = {.lex_state = 209}, + [3661] = {.lex_state = 209}, + [3662] = {.lex_state = 209}, + [3663] = {.lex_state = 209}, + [3664] = {.lex_state = 209}, + [3665] = {.lex_state = 209}, + [3666] = {.lex_state = 209}, + [3667] = {.lex_state = 209}, + [3668] = {.lex_state = 209}, + [3669] = {.lex_state = 211}, + [3670] = {.lex_state = 209}, + [3671] = {.lex_state = 211}, + [3672] = {.lex_state = 209}, + [3673] = {.lex_state = 211}, + [3674] = {.lex_state = 211}, + [3675] = {.lex_state = 209}, + [3676] = {.lex_state = 209}, + [3677] = {.lex_state = 211}, + [3678] = {.lex_state = 209}, + [3679] = {.lex_state = 211}, + [3680] = {.lex_state = 211}, + [3681] = {.lex_state = 211}, + [3682] = {.lex_state = 215}, + [3683] = {.lex_state = 211}, + [3684] = {.lex_state = 209}, + [3685] = {.lex_state = 211}, + [3686] = {.lex_state = 211}, + [3687] = {.lex_state = 209}, + [3688] = {.lex_state = 209}, + [3689] = {.lex_state = 209}, + [3690] = {.lex_state = 209}, + [3691] = {.lex_state = 211}, + [3692] = {.lex_state = 211}, + [3693] = {.lex_state = 209}, + [3694] = {.lex_state = 211}, + [3695] = {.lex_state = 209}, + [3696] = {.lex_state = 211}, + [3697] = {.lex_state = 211}, + [3698] = {.lex_state = 209}, + [3699] = {.lex_state = 211}, + [3700] = {.lex_state = 209}, + [3701] = {.lex_state = 209}, + [3702] = {.lex_state = 209}, + [3703] = {.lex_state = 209}, + [3704] = {.lex_state = 209}, + [3705] = {.lex_state = 209}, + [3706] = {.lex_state = 209}, + [3707] = {.lex_state = 209}, + [3708] = {.lex_state = 197}, + [3709] = {.lex_state = 211}, + [3710] = {.lex_state = 211}, + [3711] = {.lex_state = 209}, + [3712] = {.lex_state = 211}, + [3713] = {.lex_state = 209}, + [3714] = {.lex_state = 209}, + [3715] = {.lex_state = 209}, + [3716] = {.lex_state = 211}, + [3717] = {.lex_state = 211}, + [3718] = {.lex_state = 209}, + [3719] = {.lex_state = 209}, + [3720] = {.lex_state = 209}, + [3721] = {.lex_state = 209}, + [3722] = {.lex_state = 211}, + [3723] = {.lex_state = 211}, + [3724] = {.lex_state = 209}, + [3725] = {.lex_state = 209}, + [3726] = {.lex_state = 209}, + [3727] = {.lex_state = 209}, + [3728] = {.lex_state = 211}, + [3729] = {.lex_state = 211}, + [3730] = {.lex_state = 209}, + [3731] = {.lex_state = 211}, + [3732] = {.lex_state = 211}, + [3733] = {.lex_state = 209}, + [3734] = {.lex_state = 209}, + [3735] = {.lex_state = 209}, + [3736] = {.lex_state = 209}, + [3737] = {.lex_state = 209}, + [3738] = {.lex_state = 197}, + [3739] = {.lex_state = 211}, + [3740] = {.lex_state = 209}, + [3741] = {.lex_state = 209}, + [3742] = {.lex_state = 211}, + [3743] = {.lex_state = 209}, + [3744] = {.lex_state = 211}, + [3745] = {.lex_state = 209}, + [3746] = {.lex_state = 211}, + [3747] = {.lex_state = 212}, + [3748] = {.lex_state = 211}, + [3749] = {.lex_state = 211}, + [3750] = {.lex_state = 211}, + [3751] = {.lex_state = 209}, + [3752] = {.lex_state = 209}, + [3753] = {.lex_state = 209}, + [3754] = {.lex_state = 197}, + [3755] = {.lex_state = 194}, + [3756] = {.lex_state = 194}, + [3757] = {.lex_state = 211}, + [3758] = {.lex_state = 209}, + [3759] = {.lex_state = 209}, + [3760] = {.lex_state = 209}, + [3761] = {.lex_state = 209}, + [3762] = {.lex_state = 197}, + [3763] = {.lex_state = 197}, + [3764] = {.lex_state = 209}, + [3765] = {.lex_state = 209}, + [3766] = {.lex_state = 209}, + [3767] = {.lex_state = 209}, + [3768] = {.lex_state = 211}, + [3769] = {.lex_state = 209}, + [3770] = {.lex_state = 211}, + [3771] = {.lex_state = 211}, + [3772] = {.lex_state = 211}, + [3773] = {.lex_state = 211}, + [3774] = {.lex_state = 211}, + [3775] = {.lex_state = 211}, + [3776] = {.lex_state = 197}, + [3777] = {.lex_state = 211}, + [3778] = {.lex_state = 209}, + [3779] = {.lex_state = 209}, + [3780] = {.lex_state = 211}, + [3781] = {.lex_state = 209}, + [3782] = {.lex_state = 197}, + [3783] = {.lex_state = 193}, + [3784] = {.lex_state = 197}, + [3785] = {.lex_state = 209}, + [3786] = {.lex_state = 197}, + [3787] = {.lex_state = 197}, + [3788] = {.lex_state = 197}, + [3789] = {.lex_state = 197}, + [3790] = {.lex_state = 197}, + [3791] = {.lex_state = 209}, + [3792] = {.lex_state = 197}, + [3793] = {.lex_state = 211}, + [3794] = {.lex_state = 209}, + [3795] = {.lex_state = 213}, + [3796] = {.lex_state = 197}, + [3797] = {.lex_state = 197}, + [3798] = {.lex_state = 197}, + [3799] = {.lex_state = 209}, + [3800] = {.lex_state = 192}, + [3801] = {.lex_state = 192}, + [3802] = {.lex_state = 197}, + [3803] = {.lex_state = 209}, + [3804] = {.lex_state = 197}, + [3805] = {.lex_state = 197}, + [3806] = {.lex_state = 197}, + [3807] = {.lex_state = 193}, + [3808] = {.lex_state = 192}, + [3809] = {.lex_state = 192}, + [3810] = {.lex_state = 209}, + [3811] = {.lex_state = 209}, + [3812] = {.lex_state = 197}, + [3813] = {.lex_state = 211}, + [3814] = {.lex_state = 192}, + [3815] = {.lex_state = 213}, + [3816] = {.lex_state = 192}, + [3817] = {.lex_state = 211}, + [3818] = {.lex_state = 197}, + [3819] = {.lex_state = 197}, + [3820] = {.lex_state = 192}, + [3821] = {.lex_state = 211}, + [3822] = {.lex_state = 197}, + [3823] = {.lex_state = 197}, + [3824] = {.lex_state = 192}, + [3825] = {.lex_state = 209}, + [3826] = {.lex_state = 192}, + [3827] = {.lex_state = 192}, + [3828] = {.lex_state = 197}, + [3829] = {.lex_state = 211}, + [3830] = {.lex_state = 212}, + [3831] = {.lex_state = 211}, + [3832] = {.lex_state = 193}, + [3833] = {.lex_state = 193}, + [3834] = {.lex_state = 193}, + [3835] = {.lex_state = 211}, + [3836] = {.lex_state = 193}, + [3837] = {.lex_state = 209}, + [3838] = {.lex_state = 193}, + [3839] = {.lex_state = 212}, + [3840] = {.lex_state = 193}, + [3841] = {.lex_state = 193}, + [3842] = {.lex_state = 212}, + [3843] = {.lex_state = 193}, + [3844] = {.lex_state = 193}, + [3845] = {.lex_state = 212}, + [3846] = {.lex_state = 193}, + [3847] = {.lex_state = 193}, + [3848] = {.lex_state = 212}, + [3849] = {.lex_state = 193}, + [3850] = {.lex_state = 212}, + [3851] = {.lex_state = 193}, + [3852] = {.lex_state = 193}, + [3853] = {.lex_state = 193}, + [3854] = {.lex_state = 193}, + [3855] = {.lex_state = 193}, + [3856] = {.lex_state = 212}, + [3857] = {.lex_state = 193}, + [3858] = {.lex_state = 193}, + [3859] = {.lex_state = 209}, + [3860] = {.lex_state = 192}, + [3861] = {.lex_state = 192}, + [3862] = {.lex_state = 212}, + [3863] = {.lex_state = 192}, + [3864] = {.lex_state = 194}, + [3865] = {.lex_state = 212}, + [3866] = {.lex_state = 192}, + [3867] = {.lex_state = 200}, + [3868] = {.lex_state = 192}, + [3869] = {.lex_state = 192}, + [3870] = {.lex_state = 193}, + [3871] = {.lex_state = 193}, + [3872] = {.lex_state = 192}, + [3873] = {.lex_state = 200}, + [3874] = {.lex_state = 192}, + [3875] = {.lex_state = 197}, + [3876] = {.lex_state = 192}, + [3877] = {.lex_state = 212}, + [3878] = {.lex_state = 197}, + [3879] = {.lex_state = 197}, + [3880] = {.lex_state = 211}, + [3881] = {.lex_state = 212}, + [3882] = {.lex_state = 211}, + [3883] = {.lex_state = 192}, + [3884] = {.lex_state = 198}, + [3885] = {.lex_state = 212}, + [3886] = {.lex_state = 193}, + [3887] = {.lex_state = 192}, + [3888] = {.lex_state = 211}, + [3889] = {.lex_state = 197}, + [3890] = {.lex_state = 211}, + [3891] = {.lex_state = 211}, + [3892] = {.lex_state = 198}, + [3893] = {.lex_state = 197}, + [3894] = {.lex_state = 192}, + [3895] = {.lex_state = 193}, + [3896] = {.lex_state = 211}, [3897] = {.lex_state = 197}, - [3898] = {.lex_state = 197}, + [3898] = {.lex_state = 212}, [3899] = {.lex_state = 197}, - [3900] = {.lex_state = 197}, + [3900] = {.lex_state = 192}, [3901] = {.lex_state = 197}, [3902] = {.lex_state = 197}, - [3903] = {.lex_state = 182}, - [3904] = {.lex_state = 197}, - [3905] = {.lex_state = 202}, + [3903] = {.lex_state = 212}, + [3904] = {.lex_state = 212}, + [3905] = {.lex_state = 197}, [3906] = {.lex_state = 197}, - [3907] = {.lex_state = 197}, - [3908] = {.lex_state = 197}, + [3907] = {.lex_state = 212}, + [3908] = {.lex_state = 193}, [3909] = {.lex_state = 197}, [3910] = {.lex_state = 197}, [3911] = {.lex_state = 197}, - [3912] = {.lex_state = 197}, - [3913] = {.lex_state = 197}, + [3912] = {.lex_state = 212}, + [3913] = {.lex_state = 211}, [3914] = {.lex_state = 197}, - [3915] = {.lex_state = 200}, - [3916] = {.lex_state = 197}, + [3915] = {.lex_state = 211}, + [3916] = {.lex_state = 212}, [3917] = {.lex_state = 197}, - [3918] = {.lex_state = 182}, - [3919] = {.lex_state = 197}, + [3918] = {.lex_state = 212}, + [3919] = {.lex_state = 212}, [3920] = {.lex_state = 197}, - [3921] = {.lex_state = 200}, - [3922] = {.lex_state = 199}, - [3923] = {.lex_state = 200}, - [3924] = {.lex_state = 181}, - [3925] = {.lex_state = 201}, - [3926] = {.lex_state = 200}, - [3927] = {.lex_state = 181}, - [3928] = {.lex_state = 181}, - [3929] = {.lex_state = 200}, - [3930] = {.lex_state = 181}, - [3931] = {.lex_state = 181}, - [3932] = {.lex_state = 181}, - [3933] = {.lex_state = 200}, - [3934] = {.lex_state = 181}, - [3935] = {.lex_state = 182}, - [3936] = {.lex_state = 197}, - [3937] = {.lex_state = 182}, - [3938] = {.lex_state = 197}, - [3939] = {.lex_state = 197}, + [3921] = {.lex_state = 211}, + [3922] = {.lex_state = 212}, + [3923] = {.lex_state = 197}, + [3924] = {.lex_state = 212}, + [3925] = {.lex_state = 212}, + [3926] = {.lex_state = 197}, + [3927] = {.lex_state = 212}, + [3928] = {.lex_state = 197}, + [3929] = {.lex_state = 212}, + [3930] = {.lex_state = 197}, + [3931] = {.lex_state = 197}, + [3932] = {.lex_state = 191}, + [3933] = {.lex_state = 197}, + [3934] = {.lex_state = 197}, + [3935] = {.lex_state = 212}, + [3936] = {.lex_state = 212}, + [3937] = {.lex_state = 197}, + [3938] = {.lex_state = 212}, + [3939] = {.lex_state = 212}, [3940] = {.lex_state = 197}, - [3941] = {.lex_state = 182}, - [3942] = {.lex_state = 197}, - [3943] = {.lex_state = 182}, + [3941] = {.lex_state = 212}, + [3942] = {.lex_state = 212}, + [3943] = {.lex_state = 212}, [3944] = {.lex_state = 197}, - [3945] = {.lex_state = 201}, - [3946] = {.lex_state = 182}, - [3947] = {.lex_state = 197}, - [3948] = {.lex_state = 182}, - [3949] = {.lex_state = 182}, + [3945] = {.lex_state = 212}, + [3946] = {.lex_state = 197}, + [3947] = {.lex_state = 212}, + [3948] = {.lex_state = 212}, + [3949] = {.lex_state = 212}, [3950] = {.lex_state = 197}, - [3951] = {.lex_state = 197}, - [3952] = {.lex_state = 182}, - [3953] = {.lex_state = 181}, - [3954] = {.lex_state = 197}, - [3955] = {.lex_state = 197}, - [3956] = {.lex_state = 182}, - [3957] = {.lex_state = 182}, - [3958] = {.lex_state = 181}, - [3959] = {.lex_state = 197}, - [3960] = {.lex_state = 197}, - [3961] = {.lex_state = 182}, - [3962] = {.lex_state = 182}, - [3963] = {.lex_state = 197}, - [3964] = {.lex_state = 182}, - [3965] = {.lex_state = 197}, - [3966] = {.lex_state = 197}, + [3951] = {.lex_state = 212}, + [3952] = {.lex_state = 212}, + [3953] = {.lex_state = 197}, + [3954] = {.lex_state = 212}, + [3955] = {.lex_state = 212}, + [3956] = {.lex_state = 212}, + [3957] = {.lex_state = 197}, + [3958] = {.lex_state = 212}, + [3959] = {.lex_state = 212}, + [3960] = {.lex_state = 212}, + [3961] = {.lex_state = 197}, + [3962] = {.lex_state = 212}, + [3963] = {.lex_state = 212}, + [3964] = {.lex_state = 211}, + [3965] = {.lex_state = 211}, + [3966] = {.lex_state = 212}, [3967] = {.lex_state = 197}, [3968] = {.lex_state = 197}, [3969] = {.lex_state = 197}, - [3970] = {.lex_state = 182}, - [3971] = {.lex_state = 197}, - [3972] = {.lex_state = 182}, - [3973] = {.lex_state = 201}, - [3974] = {.lex_state = 197}, + [3970] = {.lex_state = 212}, + [3971] = {.lex_state = 212}, + [3972] = {.lex_state = 197}, + [3973] = {.lex_state = 197}, + [3974] = {.lex_state = 212}, [3975] = {.lex_state = 197}, - [3976] = {.lex_state = 182}, - [3977] = {.lex_state = 182}, - [3978] = {.lex_state = 199}, - [3979] = {.lex_state = 182}, - [3980] = {.lex_state = 197}, - [3981] = {.lex_state = 197}, - [3982] = {.lex_state = 201}, - [3983] = {.lex_state = 201}, - [3984] = {.lex_state = 197}, + [3976] = {.lex_state = 197}, + [3977] = {.lex_state = 212}, + [3978] = {.lex_state = 197}, + [3979] = {.lex_state = 212}, + [3980] = {.lex_state = 193}, + [3981] = {.lex_state = 215}, + [3982] = {.lex_state = 197}, + [3983] = {.lex_state = 197}, + [3984] = {.lex_state = 212}, [3985] = {.lex_state = 197}, - [3986] = {.lex_state = 182}, - [3987] = {.lex_state = 182}, - [3988] = {.lex_state = 181}, + [3986] = {.lex_state = 211}, + [3987] = {.lex_state = 197}, + [3988] = {.lex_state = 197}, [3989] = {.lex_state = 197}, - [3990] = {.lex_state = 182}, - [3991] = {.lex_state = 197}, - [3992] = {.lex_state = 197}, - [3993] = {.lex_state = 182}, - [3994] = {.lex_state = 181}, - [3995] = {.lex_state = 181}, - [3996] = {.lex_state = 199}, - [3997] = {.lex_state = 197}, + [3990] = {.lex_state = 211}, + [3991] = {.lex_state = 212}, + [3992] = {.lex_state = 211}, + [3993] = {.lex_state = 212}, + [3994] = {.lex_state = 212}, + [3995] = {.lex_state = 212}, + [3996] = {.lex_state = 212}, + [3997] = {.lex_state = 212}, [3998] = {.lex_state = 197}, - [3999] = {.lex_state = 182}, + [3999] = {.lex_state = 197}, [4000] = {.lex_state = 197}, [4001] = {.lex_state = 197}, - [4002] = {.lex_state = 181}, - [4003] = {.lex_state = 182}, - [4004] = {.lex_state = 182}, - [4005] = {.lex_state = 182}, - [4006] = {.lex_state = 182}, - [4007] = {.lex_state = 182}, - [4008] = {.lex_state = 182}, - [4009] = {.lex_state = 201}, - [4010] = {.lex_state = 182}, - [4011] = {.lex_state = 201}, - [4012] = {.lex_state = 182}, - [4013] = {.lex_state = 201}, - [4014] = {.lex_state = 201}, - [4015] = {.lex_state = 182}, - [4016] = {.lex_state = 182}, - [4017] = {.lex_state = 182}, - [4018] = {.lex_state = 182}, - [4019] = {.lex_state = 182}, - [4020] = {.lex_state = 182}, - [4021] = {.lex_state = 200}, - [4022] = {.lex_state = 182}, - [4023] = {.lex_state = 182}, - [4024] = {.lex_state = 181}, - [4025] = {.lex_state = 182}, - [4026] = {.lex_state = 182}, - [4027] = {.lex_state = 201}, - [4028] = {.lex_state = 182}, - [4029] = {.lex_state = 201}, - [4030] = {.lex_state = 182}, - [4031] = {.lex_state = 182}, - [4032] = {.lex_state = 200}, - [4033] = {.lex_state = 204}, - [4034] = {.lex_state = 182}, - [4035] = {.lex_state = 200}, - [4036] = {.lex_state = 181}, - [4037] = {.lex_state = 181}, - [4038] = {.lex_state = 182}, - [4039] = {.lex_state = 200}, - [4040] = {.lex_state = 204}, - [4041] = {.lex_state = 181}, - [4042] = {.lex_state = 200}, - [4043] = {.lex_state = 182}, - [4044] = {.lex_state = 182}, - [4045] = {.lex_state = 182}, - [4046] = {.lex_state = 182}, - [4047] = {.lex_state = 182}, - [4048] = {.lex_state = 201}, - [4049] = {.lex_state = 182}, - [4050] = {.lex_state = 200}, - [4051] = {.lex_state = 200}, - [4052] = {.lex_state = 200}, - [4053] = {.lex_state = 200}, - [4054] = {.lex_state = 200}, - [4055] = {.lex_state = 200}, - [4056] = {.lex_state = 182}, - [4057] = {.lex_state = 200}, - [4058] = {.lex_state = 200}, - [4059] = {.lex_state = 200}, - [4060] = {.lex_state = 201}, - [4061] = {.lex_state = 201}, - [4062] = {.lex_state = 181}, - [4063] = {.lex_state = 201}, - [4064] = {.lex_state = 201}, - [4065] = {.lex_state = 201}, - [4066] = {.lex_state = 201}, - [4067] = {.lex_state = 181}, - [4068] = {.lex_state = 200}, - [4069] = {.lex_state = 200}, - [4070] = {.lex_state = 199}, - [4071] = {.lex_state = 201}, - [4072] = {.lex_state = 201}, - [4073] = {.lex_state = 201}, - [4074] = {.lex_state = 181}, - [4075] = {.lex_state = 181}, - [4076] = {.lex_state = 201}, - [4077] = {.lex_state = 201}, - [4078] = {.lex_state = 181}, - [4079] = {.lex_state = 181}, - [4080] = {.lex_state = 201}, - [4081] = {.lex_state = 203}, - [4082] = {.lex_state = 203}, - [4083] = {.lex_state = 203}, - [4084] = {.lex_state = 201}, - [4085] = {.lex_state = 199}, - [4086] = {.lex_state = 203}, - [4087] = {.lex_state = 200}, - [4088] = {.lex_state = 201}, - [4089] = {.lex_state = 189}, - [4090] = {.lex_state = 206}, - [4091] = {.lex_state = 182}, - [4092] = {.lex_state = 189}, - [4093] = {.lex_state = 186}, - [4094] = {.lex_state = 206}, - [4095] = {.lex_state = 186}, - [4096] = {.lex_state = 206}, - [4097] = {.lex_state = 201}, + [4002] = {.lex_state = 193}, + [4003] = {.lex_state = 192}, + [4004] = {.lex_state = 197}, + [4005] = {.lex_state = 211}, + [4006] = {.lex_state = 197}, + [4007] = {.lex_state = 197}, + [4008] = {.lex_state = 193}, + [4009] = {.lex_state = 197}, + [4010] = {.lex_state = 192}, + [4011] = {.lex_state = 211}, + [4012] = {.lex_state = 193}, + [4013] = {.lex_state = 193}, + [4014] = {.lex_state = 193}, + [4015] = {.lex_state = 197}, + [4016] = {.lex_state = 193}, + [4017] = {.lex_state = 197}, + [4018] = {.lex_state = 193}, + [4019] = {.lex_state = 192}, + [4020] = {.lex_state = 197}, + [4021] = {.lex_state = 193}, + [4022] = {.lex_state = 197}, + [4023] = {.lex_state = 193}, + [4024] = {.lex_state = 197}, + [4025] = {.lex_state = 212}, + [4026] = {.lex_state = 197}, + [4027] = {.lex_state = 197}, + [4028] = {.lex_state = 197}, + [4029] = {.lex_state = 193}, + [4030] = {.lex_state = 212}, + [4031] = {.lex_state = 193}, + [4032] = {.lex_state = 193}, + [4033] = {.lex_state = 211}, + [4034] = {.lex_state = 192}, + [4035] = {.lex_state = 197}, + [4036] = {.lex_state = 193}, + [4037] = {.lex_state = 193}, + [4038] = {.lex_state = 192}, + [4039] = {.lex_state = 197}, + [4040] = {.lex_state = 197}, + [4041] = {.lex_state = 192}, + [4042] = {.lex_state = 197}, + [4043] = {.lex_state = 193}, + [4044] = {.lex_state = 193}, + [4045] = {.lex_state = 192}, + [4046] = {.lex_state = 197}, + [4047] = {.lex_state = 193}, + [4048] = {.lex_state = 193}, + [4049] = {.lex_state = 211}, + [4050] = {.lex_state = 211}, + [4051] = {.lex_state = 211}, + [4052] = {.lex_state = 197}, + [4053] = {.lex_state = 193}, + [4054] = {.lex_state = 193}, + [4055] = {.lex_state = 193}, + [4056] = {.lex_state = 192}, + [4057] = {.lex_state = 193}, + [4058] = {.lex_state = 197}, + [4059] = {.lex_state = 192}, + [4060] = {.lex_state = 192}, + [4061] = {.lex_state = 197}, + [4062] = {.lex_state = 192}, + [4063] = {.lex_state = 193}, + [4064] = {.lex_state = 193}, + [4065] = {.lex_state = 197}, + [4066] = {.lex_state = 192}, + [4067] = {.lex_state = 193}, + [4068] = {.lex_state = 197}, + [4069] = {.lex_state = 192}, + [4070] = {.lex_state = 197}, + [4071] = {.lex_state = 193}, + [4072] = {.lex_state = 193}, + [4073] = {.lex_state = 192}, + [4074] = {.lex_state = 197}, + [4075] = {.lex_state = 212}, + [4076] = {.lex_state = 193}, + [4077] = {.lex_state = 211}, + [4078] = {.lex_state = 193}, + [4079] = {.lex_state = 197}, + [4080] = {.lex_state = 212}, + [4081] = {.lex_state = 197}, + [4082] = {.lex_state = 197}, + [4083] = {.lex_state = 193}, + [4084] = {.lex_state = 197}, + [4085] = {.lex_state = 211}, + [4086] = {.lex_state = 197}, + [4087] = {.lex_state = 197}, + [4088] = {.lex_state = 211}, + [4089] = {.lex_state = 211}, + [4090] = {.lex_state = 193}, + [4091] = {.lex_state = 212}, + [4092] = {.lex_state = 211}, + [4093] = {.lex_state = 197}, + [4094] = {.lex_state = 192}, + [4095] = {.lex_state = 197}, + [4096] = {.lex_state = 193}, + [4097] = {.lex_state = 197}, [4098] = {.lex_state = 197}, - [4099] = {.lex_state = 203}, - [4100] = {.lex_state = 203}, - [4101] = {.lex_state = 206}, - [4102] = {.lex_state = 206}, - [4103] = {.lex_state = 182}, - [4104] = {.lex_state = 182}, - [4105] = {.lex_state = 206}, - [4106] = {.lex_state = 201}, - [4107] = {.lex_state = 199}, - [4108] = {.lex_state = 199}, - [4109] = {.lex_state = 199}, - [4110] = {.lex_state = 199}, - [4111] = {.lex_state = 165}, - [4112] = {.lex_state = 165}, - [4113] = {.lex_state = 165}, - [4114] = {.lex_state = 165}, - [4115] = {.lex_state = 165}, - [4116] = {.lex_state = 201}, - [4117] = {.lex_state = 165}, - [4118] = {.lex_state = 165}, - [4119] = {.lex_state = 165}, - [4120] = {.lex_state = 165}, - [4121] = {.lex_state = 165}, - [4122] = {.lex_state = 165}, - [4123] = {.lex_state = 165}, - [4124] = {.lex_state = 165}, - [4125] = {.lex_state = 165}, - [4126] = {.lex_state = 165}, - [4127] = {.lex_state = 165}, - [4128] = {.lex_state = 165}, - [4129] = {.lex_state = 165}, - [4130] = {.lex_state = 201}, - [4131] = {.lex_state = 165}, - [4132] = {.lex_state = 165}, - [4133] = {.lex_state = 165}, - [4134] = {.lex_state = 165}, - [4135] = {.lex_state = 200}, - [4136] = {.lex_state = 165}, - [4137] = {.lex_state = 165}, - [4138] = {.lex_state = 165}, - [4139] = {.lex_state = 165}, - [4140] = {.lex_state = 165}, - [4141] = {.lex_state = 200}, - [4142] = {.lex_state = 165}, - [4143] = {.lex_state = 165}, - [4144] = {.lex_state = 165}, - [4145] = {.lex_state = 165}, - [4146] = {.lex_state = 165}, - [4147] = {.lex_state = 165}, - [4148] = {.lex_state = 165}, - [4149] = {.lex_state = 165}, - [4150] = {.lex_state = 165}, - [4151] = {.lex_state = 165}, - [4152] = {.lex_state = 200}, - [4153] = {.lex_state = 165}, - [4154] = {.lex_state = 165}, - [4155] = {.lex_state = 165}, - [4156] = {.lex_state = 165}, - [4157] = {.lex_state = 165}, - [4158] = {.lex_state = 165}, - [4159] = {.lex_state = 201}, - [4160] = {.lex_state = 165}, - [4161] = {.lex_state = 165}, - [4162] = {.lex_state = 165}, - [4163] = {.lex_state = 165}, - [4164] = {.lex_state = 165}, - [4165] = {.lex_state = 165}, - [4166] = {.lex_state = 200}, - [4167] = {.lex_state = 165}, - [4168] = {.lex_state = 165}, - [4169] = {.lex_state = 165}, - [4170] = {.lex_state = 165}, - [4171] = {.lex_state = 165}, - [4172] = {.lex_state = 165}, - [4173] = {.lex_state = 165}, - [4174] = {.lex_state = 165}, - [4175] = {.lex_state = 165}, - [4176] = {.lex_state = 165}, - [4177] = {.lex_state = 200}, - [4178] = {.lex_state = 165}, - [4179] = {.lex_state = 165}, - [4180] = {.lex_state = 200}, - [4181] = {.lex_state = 165}, - [4182] = {.lex_state = 165}, - [4183] = {.lex_state = 201}, - [4184] = {.lex_state = 200}, - [4185] = {.lex_state = 165}, - [4186] = {.lex_state = 165}, - [4187] = {.lex_state = 165}, - [4188] = {.lex_state = 201}, - [4189] = {.lex_state = 200}, - [4190] = {.lex_state = 200}, - [4191] = {.lex_state = 165}, - [4192] = {.lex_state = 165}, - [4193] = {.lex_state = 165}, - [4194] = {.lex_state = 201}, - [4195] = {.lex_state = 206}, - [4196] = {.lex_state = 206}, - [4197] = {.lex_state = 206}, - [4198] = {.lex_state = 206}, - [4199] = {.lex_state = 206}, - [4200] = {.lex_state = 206}, - [4201] = {.lex_state = 201}, - [4202] = {.lex_state = 201}, - [4203] = {.lex_state = 206}, - [4204] = {.lex_state = 206}, - [4205] = {.lex_state = 201}, - [4206] = {.lex_state = 206}, - [4207] = {.lex_state = 206}, - [4208] = {.lex_state = 206}, - [4209] = {.lex_state = 201}, - [4210] = {.lex_state = 206}, - [4211] = {.lex_state = 206}, - [4212] = {.lex_state = 206}, - [4213] = {.lex_state = 156}, - [4214] = {.lex_state = 206}, - [4215] = {.lex_state = 206}, - [4216] = {.lex_state = 201}, - [4217] = {.lex_state = 201}, - [4218] = {.lex_state = 201}, - [4219] = {.lex_state = 206}, - [4220] = {.lex_state = 206}, - [4221] = {.lex_state = 206}, - [4222] = {.lex_state = 201}, - [4223] = {.lex_state = 201}, - [4224] = {.lex_state = 206}, - [4225] = {.lex_state = 201}, - [4226] = {.lex_state = 201}, - [4227] = {.lex_state = 206}, - [4228] = {.lex_state = 201}, - [4229] = {.lex_state = 206}, - [4230] = {.lex_state = 201}, - [4231] = {.lex_state = 201}, - [4232] = {.lex_state = 201}, - [4233] = {.lex_state = 201}, - [4234] = {.lex_state = 206}, - [4235] = {.lex_state = 206}, - [4236] = {.lex_state = 206}, - [4237] = {.lex_state = 201}, - [4238] = {.lex_state = 206}, - [4239] = {.lex_state = 201}, - [4240] = {.lex_state = 201}, - [4241] = {.lex_state = 201}, - [4242] = {.lex_state = 201}, - [4243] = {.lex_state = 201}, - [4244] = {.lex_state = 201}, - [4245] = {.lex_state = 206}, - [4246] = {.lex_state = 206}, - [4247] = {.lex_state = 206}, - [4248] = {.lex_state = 201}, - [4249] = {.lex_state = 201}, - [4250] = {.lex_state = 201}, - [4251] = {.lex_state = 201}, - [4252] = {.lex_state = 206}, - [4253] = {.lex_state = 201}, - [4254] = {.lex_state = 206}, - [4255] = {.lex_state = 201}, - [4256] = {.lex_state = 201}, - [4257] = {.lex_state = 206}, - [4258] = {.lex_state = 206}, - [4259] = {.lex_state = 206}, - [4260] = {.lex_state = 201}, - [4261] = {.lex_state = 201}, - [4262] = {.lex_state = 201}, - [4263] = {.lex_state = 201}, - [4264] = {.lex_state = 201}, - [4265] = {.lex_state = 201}, - [4266] = {.lex_state = 206}, - [4267] = {.lex_state = 206}, - [4268] = {.lex_state = 206}, - [4269] = {.lex_state = 206}, - [4270] = {.lex_state = 206}, - [4271] = {.lex_state = 181}, - [4272] = {.lex_state = 145}, - [4273] = {.lex_state = 165}, - [4274] = {.lex_state = 199}, - [4275] = {.lex_state = 145}, - [4276] = {.lex_state = 181}, - [4277] = {.lex_state = 165}, - [4278] = {.lex_state = 199}, - [4279] = {.lex_state = 165}, - [4280] = {.lex_state = 181}, - [4281] = {.lex_state = 181}, - [4282] = {.lex_state = 75}, - [4283] = {.lex_state = 165}, - [4284] = {.lex_state = 156}, - [4285] = {.lex_state = 156}, - [4286] = {.lex_state = 165}, - [4287] = {.lex_state = 199}, - [4288] = {.lex_state = 182}, - [4289] = {.lex_state = 165}, - [4290] = {.lex_state = 145}, - [4291] = {.lex_state = 199}, - [4292] = {.lex_state = 156}, - [4293] = {.lex_state = 165}, - [4294] = {.lex_state = 165}, - [4295] = {.lex_state = 145}, - [4296] = {.lex_state = 165}, - [4297] = {.lex_state = 145}, - [4298] = {.lex_state = 145}, - [4299] = {.lex_state = 145}, - [4300] = {.lex_state = 145}, - [4301] = {.lex_state = 145}, - [4302] = {.lex_state = 145}, - [4303] = {.lex_state = 165}, - [4304] = {.lex_state = 145}, - [4305] = {.lex_state = 165}, - [4306] = {.lex_state = 165}, - [4307] = {.lex_state = 199}, - [4308] = {.lex_state = 165}, - [4309] = {.lex_state = 156}, - [4310] = {.lex_state = 145}, - [4311] = {.lex_state = 156}, - [4312] = {.lex_state = 156}, - [4313] = {.lex_state = 199}, - [4314] = {.lex_state = 156}, - [4315] = {.lex_state = 182}, - [4316] = {.lex_state = 156}, - [4317] = {.lex_state = 199}, - [4318] = {.lex_state = 156}, - [4319] = {.lex_state = 156}, - [4320] = {.lex_state = 156}, - [4321] = {.lex_state = 156}, - [4322] = {.lex_state = 165}, - [4323] = {.lex_state = 199}, - [4324] = {.lex_state = 165}, - [4325] = {.lex_state = 199}, - [4326] = {.lex_state = 165}, - [4327] = {.lex_state = 165}, - [4328] = {.lex_state = 165}, - [4329] = {.lex_state = 200}, - [4330] = {.lex_state = 145}, - [4331] = {.lex_state = 165}, - [4332] = {.lex_state = 200}, - [4333] = {.lex_state = 145}, - [4334] = {.lex_state = 165}, - [4335] = {.lex_state = 199}, - [4336] = {.lex_state = 165}, - [4337] = {.lex_state = 156}, - [4338] = {.lex_state = 145}, - [4339] = {.lex_state = 165}, - [4340] = {.lex_state = 200}, - [4341] = {.lex_state = 156}, - [4342] = {.lex_state = 145}, - [4343] = {.lex_state = 165}, - [4344] = {.lex_state = 145}, - [4345] = {.lex_state = 165}, - [4346] = {.lex_state = 145}, - [4347] = {.lex_state = 199}, - [4348] = {.lex_state = 145}, - [4349] = {.lex_state = 145}, - [4350] = {.lex_state = 165}, - [4351] = {.lex_state = 199}, - [4352] = {.lex_state = 145}, - [4353] = {.lex_state = 165}, - [4354] = {.lex_state = 165}, - [4355] = {.lex_state = 165}, - [4356] = {.lex_state = 182}, - [4357] = {.lex_state = 156}, - [4358] = {.lex_state = 165}, - [4359] = {.lex_state = 145}, - [4360] = {.lex_state = 145}, - [4361] = {.lex_state = 145}, - [4362] = {.lex_state = 145}, - [4363] = {.lex_state = 145}, - [4364] = {.lex_state = 145}, - [4365] = {.lex_state = 145}, - [4366] = {.lex_state = 145}, - [4367] = {.lex_state = 145}, - [4368] = {.lex_state = 165}, - [4369] = {.lex_state = 145}, - [4370] = {.lex_state = 165}, - [4371] = {.lex_state = 145}, - [4372] = {.lex_state = 165}, - [4373] = {.lex_state = 156}, - [4374] = {.lex_state = 145}, - [4375] = {.lex_state = 165}, - [4376] = {.lex_state = 165}, - [4377] = {.lex_state = 165}, - [4378] = {.lex_state = 165}, - [4379] = {.lex_state = 165}, - [4380] = {.lex_state = 156}, - [4381] = {.lex_state = 156}, - [4382] = {.lex_state = 156}, - [4383] = {.lex_state = 165}, - [4384] = {.lex_state = 156}, - [4385] = {.lex_state = 165}, - [4386] = {.lex_state = 165}, - [4387] = {.lex_state = 156}, - [4388] = {.lex_state = 145}, - [4389] = {.lex_state = 201}, - [4390] = {.lex_state = 165}, - [4391] = {.lex_state = 145}, - [4392] = {.lex_state = 165}, - [4393] = {.lex_state = 165}, - [4394] = {.lex_state = 156}, - [4395] = {.lex_state = 165}, - [4396] = {.lex_state = 165}, - [4397] = {.lex_state = 199}, - [4398] = {.lex_state = 165}, - [4399] = {.lex_state = 165}, - [4400] = {.lex_state = 165}, - [4401] = {.lex_state = 165}, - [4402] = {.lex_state = 199}, - [4403] = {.lex_state = 165}, - [4404] = {.lex_state = 165}, - [4405] = {.lex_state = 165}, - [4406] = {.lex_state = 165}, - [4407] = {.lex_state = 165}, - [4408] = {.lex_state = 145}, - [4409] = {.lex_state = 199}, - [4410] = {.lex_state = 75}, - [4411] = {.lex_state = 75}, - [4412] = {.lex_state = 200}, - [4413] = {.lex_state = 200}, - [4414] = {.lex_state = 75}, - [4415] = {.lex_state = 200}, - [4416] = {.lex_state = 182}, - [4417] = {.lex_state = 75}, - [4418] = {.lex_state = 200}, - [4419] = {.lex_state = 200}, - [4420] = {.lex_state = 200}, - [4421] = {.lex_state = 75}, - [4422] = {.lex_state = 75}, - [4423] = {.lex_state = 75}, - [4424] = {.lex_state = 75}, - [4425] = {.lex_state = 75}, - [4426] = {.lex_state = 165}, - [4427] = {.lex_state = 165}, - [4428] = {.lex_state = 75}, - [4429] = {.lex_state = 75}, - [4430] = {.lex_state = 75}, - [4431] = {.lex_state = 75}, - [4432] = {.lex_state = 165}, - [4433] = {.lex_state = 75}, - [4434] = {.lex_state = 156}, - [4435] = {.lex_state = 200}, - [4436] = {.lex_state = 75}, - [4437] = {.lex_state = 75}, - [4438] = {.lex_state = 165}, - [4439] = {.lex_state = 156}, - [4440] = {.lex_state = 75}, - [4441] = {.lex_state = 200}, - [4442] = {.lex_state = 75}, - [4443] = {.lex_state = 75}, - [4444] = {.lex_state = 75}, - [4445] = {.lex_state = 75}, - [4446] = {.lex_state = 75}, - [4447] = {.lex_state = 75}, - [4448] = {.lex_state = 75}, - [4449] = {.lex_state = 182}, - [4450] = {.lex_state = 75}, - [4451] = {.lex_state = 75}, - [4452] = {.lex_state = 75}, - [4453] = {.lex_state = 75}, - [4454] = {.lex_state = 200}, - [4455] = {.lex_state = 165}, - [4456] = {.lex_state = 168}, - [4457] = {.lex_state = 200}, - [4458] = {.lex_state = 165}, - [4459] = {.lex_state = 200}, - [4460] = {.lex_state = 165}, - [4461] = {.lex_state = 168}, - [4462] = {.lex_state = 168}, - [4463] = {.lex_state = 181}, - [4464] = {.lex_state = 143}, - [4465] = {.lex_state = 143}, - [4466] = {.lex_state = 182}, - [4467] = {.lex_state = 165}, - [4468] = {.lex_state = 199}, - [4469] = {.lex_state = 199}, - [4470] = {.lex_state = 165}, - [4471] = {.lex_state = 165}, - [4472] = {.lex_state = 199}, - [4473] = {.lex_state = 199}, - [4474] = {.lex_state = 181}, - [4475] = {.lex_state = 182}, - [4476] = {.lex_state = 182}, - [4477] = {.lex_state = 143}, - [4478] = {.lex_state = 181}, - [4479] = {.lex_state = 143}, - [4480] = {.lex_state = 165}, - [4481] = {.lex_state = 165}, - [4482] = {.lex_state = 199}, - [4483] = {.lex_state = 199}, - [4484] = {.lex_state = 143}, - [4485] = {.lex_state = 143}, - [4486] = {.lex_state = 165}, - [4487] = {.lex_state = 182}, - [4488] = {.lex_state = 199}, - [4489] = {.lex_state = 165}, - [4490] = {.lex_state = 165}, - [4491] = {.lex_state = 143}, - [4492] = {.lex_state = 165}, - [4493] = {.lex_state = 165}, - [4494] = {.lex_state = 165}, - [4495] = {.lex_state = 165}, - [4496] = {.lex_state = 165}, - [4497] = {.lex_state = 182}, - [4498] = {.lex_state = 199}, - [4499] = {.lex_state = 165}, - [4500] = {.lex_state = 143}, - [4501] = {.lex_state = 143}, - [4502] = {.lex_state = 199}, - [4503] = {.lex_state = 182}, - [4504] = {.lex_state = 199}, - [4505] = {.lex_state = 182}, - [4506] = {.lex_state = 199}, - [4507] = {.lex_state = 199}, - [4508] = {.lex_state = 199}, - [4509] = {.lex_state = 143}, - [4510] = {.lex_state = 181}, - [4511] = {.lex_state = 182}, - [4512] = {.lex_state = 165}, - [4513] = {.lex_state = 182}, - [4514] = {.lex_state = 199}, - [4515] = {.lex_state = 182}, - [4516] = {.lex_state = 165}, - [4517] = {.lex_state = 165}, - [4518] = {.lex_state = 182}, - [4519] = {.lex_state = 199}, - [4520] = {.lex_state = 199}, - [4521] = {.lex_state = 165}, - [4522] = {.lex_state = 199}, - [4523] = {.lex_state = 199}, - [4524] = {.lex_state = 165}, - [4525] = {.lex_state = 200}, - [4526] = {.lex_state = 200}, - [4527] = {.lex_state = 200}, - [4528] = {.lex_state = 200}, - [4529] = {.lex_state = 199}, - [4530] = {.lex_state = 200}, - [4531] = {.lex_state = 200}, - [4532] = {.lex_state = 200}, - [4533] = {.lex_state = 200}, - [4534] = {.lex_state = 165}, - [4535] = {.lex_state = 200}, - [4536] = {.lex_state = 201}, - [4537] = {.lex_state = 165}, - [4538] = {.lex_state = 200}, - [4539] = {.lex_state = 200}, - [4540] = {.lex_state = 165}, - [4541] = {.lex_state = 200}, - [4542] = {.lex_state = 200}, - [4543] = {.lex_state = 200}, - [4544] = {.lex_state = 165}, - [4545] = {.lex_state = 200}, - [4546] = {.lex_state = 200}, - [4547] = {.lex_state = 200}, - [4548] = {.lex_state = 199}, - [4549] = {.lex_state = 199}, - [4550] = {.lex_state = 199}, - [4551] = {.lex_state = 165}, - [4552] = {.lex_state = 165}, - [4553] = {.lex_state = 200}, - [4554] = {.lex_state = 199}, - [4555] = {.lex_state = 199}, - [4556] = {.lex_state = 200}, - [4557] = {.lex_state = 200}, - [4558] = {.lex_state = 200}, - [4559] = {.lex_state = 200}, - [4560] = {.lex_state = 199}, - [4561] = {.lex_state = 200}, - [4562] = {.lex_state = 165}, - [4563] = {.lex_state = 199}, - [4564] = {.lex_state = 200}, - [4565] = {.lex_state = 165}, - [4566] = {.lex_state = 200}, - [4567] = {.lex_state = 200}, - [4568] = {.lex_state = 199}, - [4569] = {.lex_state = 200}, - [4570] = {.lex_state = 165}, - [4571] = {.lex_state = 199}, - [4572] = {.lex_state = 200}, - [4573] = {.lex_state = 200}, - [4574] = {.lex_state = 200}, - [4575] = {.lex_state = 199}, - [4576] = {.lex_state = 199}, - [4577] = {.lex_state = 165}, - [4578] = {.lex_state = 200}, - [4579] = {.lex_state = 201}, - [4580] = {.lex_state = 165}, - [4581] = {.lex_state = 199}, - [4582] = {.lex_state = 199}, - [4583] = {.lex_state = 200}, - [4584] = {.lex_state = 165}, - [4585] = {.lex_state = 165}, - [4586] = {.lex_state = 199}, - [4587] = {.lex_state = 200}, - [4588] = {.lex_state = 199}, - [4589] = {.lex_state = 143}, - [4590] = {.lex_state = 165}, - [4591] = {.lex_state = 200}, - [4592] = {.lex_state = 202}, - [4593] = {.lex_state = 165}, - [4594] = {.lex_state = 201}, - [4595] = {.lex_state = 165}, - [4596] = {.lex_state = 202}, - [4597] = {.lex_state = 143}, - [4598] = {.lex_state = 165}, - [4599] = {.lex_state = 200}, - [4600] = {.lex_state = 165}, - [4601] = {.lex_state = 201}, - [4602] = {.lex_state = 143}, - [4603] = {.lex_state = 202}, - [4604] = {.lex_state = 201}, - [4605] = {.lex_state = 165}, - [4606] = {.lex_state = 199}, - [4607] = {.lex_state = 199}, - [4608] = {.lex_state = 201}, - [4609] = {.lex_state = 201}, - [4610] = {.lex_state = 199}, - [4611] = {.lex_state = 199}, - [4612] = {.lex_state = 200}, - [4613] = {.lex_state = 199}, - [4614] = {.lex_state = 202}, - [4615] = {.lex_state = 165}, - [4616] = {.lex_state = 143}, - [4617] = {.lex_state = 165}, - [4618] = {.lex_state = 143}, - [4619] = {.lex_state = 143}, - [4620] = {.lex_state = 199}, - [4621] = {.lex_state = 165}, - [4622] = {.lex_state = 201}, - [4623] = {.lex_state = 143}, - [4624] = {.lex_state = 165}, - [4625] = {.lex_state = 200}, - [4626] = {.lex_state = 200}, - [4627] = {.lex_state = 165}, - [4628] = {.lex_state = 165}, - [4629] = {.lex_state = 143}, - [4630] = {.lex_state = 165}, - [4631] = {.lex_state = 201}, - [4632] = {.lex_state = 143}, - [4633] = {.lex_state = 165}, - [4634] = {.lex_state = 200}, - [4635] = {.lex_state = 165}, - [4636] = {.lex_state = 143}, - [4637] = {.lex_state = 202}, - [4638] = {.lex_state = 165}, - [4639] = {.lex_state = 165}, - [4640] = {.lex_state = 202}, - [4641] = {.lex_state = 201}, - [4642] = {.lex_state = 165}, - [4643] = {.lex_state = 165}, - [4644] = {.lex_state = 165}, - [4645] = {.lex_state = 200}, - [4646] = {.lex_state = 200}, - [4647] = {.lex_state = 181}, - [4648] = {.lex_state = 200}, - [4649] = {.lex_state = 200}, - [4650] = {.lex_state = 199}, - [4651] = {.lex_state = 165}, - [4652] = {.lex_state = 200}, - [4653] = {.lex_state = 200}, - [4654] = {.lex_state = 199}, - [4655] = {.lex_state = 200}, - [4656] = {.lex_state = 264}, - [4657] = {.lex_state = 181}, - [4658] = {.lex_state = 181}, - [4659] = {.lex_state = 200}, - [4660] = {.lex_state = 168}, - [4661] = {.lex_state = 165}, - [4662] = {.lex_state = 168}, - [4663] = {.lex_state = 165}, - [4664] = {.lex_state = 165}, - [4665] = {.lex_state = 199}, - [4666] = {.lex_state = 200}, - [4667] = {.lex_state = 0}, - [4668] = {.lex_state = 181}, - [4669] = {.lex_state = 200}, - [4670] = {.lex_state = 168}, - [4671] = {.lex_state = 165}, - [4672] = {.lex_state = 168}, - [4673] = {.lex_state = 200}, - [4674] = {.lex_state = 200}, - [4675] = {.lex_state = 181}, - [4676] = {.lex_state = 181}, - [4677] = {.lex_state = 0}, - [4678] = {.lex_state = 199}, - [4679] = {.lex_state = 264}, - [4680] = {.lex_state = 165}, - [4681] = {.lex_state = 165}, - [4682] = {.lex_state = 200}, - [4683] = {.lex_state = 200}, - [4684] = {.lex_state = 200}, - [4685] = {.lex_state = 199}, - [4686] = {.lex_state = 200}, - [4687] = {.lex_state = 165}, - [4688] = {.lex_state = 0}, - [4689] = {.lex_state = 165}, - [4690] = {.lex_state = 200}, - [4691] = {.lex_state = 200}, - [4692] = {.lex_state = 200}, - [4693] = {.lex_state = 181}, - [4694] = {.lex_state = 181}, - [4695] = {.lex_state = 181}, - [4696] = {.lex_state = 200}, - [4697] = {.lex_state = 165}, - [4698] = {.lex_state = 165}, - [4699] = {.lex_state = 181}, - [4700] = {.lex_state = 181}, - [4701] = {.lex_state = 181}, - [4702] = {.lex_state = 264}, - [4703] = {.lex_state = 0}, - [4704] = {.lex_state = 181}, - [4705] = {.lex_state = 168}, - [4706] = {.lex_state = 165}, - [4707] = {.lex_state = 181}, + [4099] = {.lex_state = 211}, + [4100] = {.lex_state = 197}, + [4101] = {.lex_state = 193}, + [4102] = {.lex_state = 197}, + [4103] = {.lex_state = 197}, + [4104] = {.lex_state = 212}, + [4105] = {.lex_state = 192}, + [4106] = {.lex_state = 197}, + [4107] = {.lex_state = 193}, + [4108] = {.lex_state = 212}, + [4109] = {.lex_state = 193}, + [4110] = {.lex_state = 197}, + [4111] = {.lex_state = 211}, + [4112] = {.lex_state = 193}, + [4113] = {.lex_state = 197}, + [4114] = {.lex_state = 197}, + [4115] = {.lex_state = 197}, + [4116] = {.lex_state = 197}, + [4117] = {.lex_state = 192}, + [4118] = {.lex_state = 193}, + [4119] = {.lex_state = 211}, + [4120] = {.lex_state = 193}, + [4121] = {.lex_state = 212}, + [4122] = {.lex_state = 193}, + [4123] = {.lex_state = 197}, + [4124] = {.lex_state = 197}, + [4125] = {.lex_state = 193}, + [4126] = {.lex_state = 197}, + [4127] = {.lex_state = 197}, + [4128] = {.lex_state = 211}, + [4129] = {.lex_state = 197}, + [4130] = {.lex_state = 211}, + [4131] = {.lex_state = 202}, + [4132] = {.lex_state = 193}, + [4133] = {.lex_state = 193}, + [4134] = {.lex_state = 193}, + [4135] = {.lex_state = 193}, + [4136] = {.lex_state = 197}, + [4137] = {.lex_state = 193}, + [4138] = {.lex_state = 197}, + [4139] = {.lex_state = 197}, + [4140] = {.lex_state = 211}, + [4141] = {.lex_state = 197}, + [4142] = {.lex_state = 197}, + [4143] = {.lex_state = 197}, + [4144] = {.lex_state = 197}, + [4145] = {.lex_state = 197}, + [4146] = {.lex_state = 197}, + [4147] = {.lex_state = 193}, + [4148] = {.lex_state = 193}, + [4149] = {.lex_state = 197}, + [4150] = {.lex_state = 197}, + [4151] = {.lex_state = 197}, + [4152] = {.lex_state = 197}, + [4153] = {.lex_state = 193}, + [4154] = {.lex_state = 193}, + [4155] = {.lex_state = 197}, + [4156] = {.lex_state = 193}, + [4157] = {.lex_state = 197}, + [4158] = {.lex_state = 193}, + [4159] = {.lex_state = 193}, + [4160] = {.lex_state = 197}, + [4161] = {.lex_state = 197}, + [4162] = {.lex_state = 197}, + [4163] = {.lex_state = 197}, + [4164] = {.lex_state = 197}, + [4165] = {.lex_state = 197}, + [4166] = {.lex_state = 197}, + [4167] = {.lex_state = 193}, + [4168] = {.lex_state = 193}, + [4169] = {.lex_state = 197}, + [4170] = {.lex_state = 197}, + [4171] = {.lex_state = 193}, + [4172] = {.lex_state = 197}, + [4173] = {.lex_state = 193}, + [4174] = {.lex_state = 193}, + [4175] = {.lex_state = 193}, + [4176] = {.lex_state = 193}, + [4177] = {.lex_state = 197}, + [4178] = {.lex_state = 197}, + [4179] = {.lex_state = 211}, + [4180] = {.lex_state = 193}, + [4181] = {.lex_state = 197}, + [4182] = {.lex_state = 197}, + [4183] = {.lex_state = 197}, + [4184] = {.lex_state = 193}, + [4185] = {.lex_state = 197}, + [4186] = {.lex_state = 211}, + [4187] = {.lex_state = 193}, + [4188] = {.lex_state = 193}, + [4189] = {.lex_state = 197}, + [4190] = {.lex_state = 197}, + [4191] = {.lex_state = 193}, + [4192] = {.lex_state = 197}, + [4193] = {.lex_state = 211}, + [4194] = {.lex_state = 197}, + [4195] = {.lex_state = 197}, + [4196] = {.lex_state = 197}, + [4197] = {.lex_state = 197}, + [4198] = {.lex_state = 193}, + [4199] = {.lex_state = 212}, + [4200] = {.lex_state = 197}, + [4201] = {.lex_state = 197}, + [4202] = {.lex_state = 212}, + [4203] = {.lex_state = 197}, + [4204] = {.lex_state = 197}, + [4205] = {.lex_state = 197}, + [4206] = {.lex_state = 197}, + [4207] = {.lex_state = 197}, + [4208] = {.lex_state = 212}, + [4209] = {.lex_state = 197}, + [4210] = {.lex_state = 197}, + [4211] = {.lex_state = 197}, + [4212] = {.lex_state = 197}, + [4213] = {.lex_state = 197}, + [4214] = {.lex_state = 192}, + [4215] = {.lex_state = 212}, + [4216] = {.lex_state = 197}, + [4217] = {.lex_state = 197}, + [4218] = {.lex_state = 197}, + [4219] = {.lex_state = 197}, + [4220] = {.lex_state = 197}, + [4221] = {.lex_state = 197}, + [4222] = {.lex_state = 197}, + [4223] = {.lex_state = 197}, + [4224] = {.lex_state = 197}, + [4225] = {.lex_state = 197}, + [4226] = {.lex_state = 213}, + [4227] = {.lex_state = 197}, + [4228] = {.lex_state = 197}, + [4229] = {.lex_state = 193}, + [4230] = {.lex_state = 192}, + [4231] = {.lex_state = 197}, + [4232] = {.lex_state = 213}, + [4233] = {.lex_state = 197}, + [4234] = {.lex_state = 197}, + [4235] = {.lex_state = 193}, + [4236] = {.lex_state = 197}, + [4237] = {.lex_state = 197}, + [4238] = {.lex_state = 197}, + [4239] = {.lex_state = 197}, + [4240] = {.lex_state = 197}, + [4241] = {.lex_state = 197}, + [4242] = {.lex_state = 197}, + [4243] = {.lex_state = 197}, + [4244] = {.lex_state = 197}, + [4245] = {.lex_state = 197}, + [4246] = {.lex_state = 197}, + [4247] = {.lex_state = 197}, + [4248] = {.lex_state = 197}, + [4249] = {.lex_state = 197}, + [4250] = {.lex_state = 197}, + [4251] = {.lex_state = 197}, + [4252] = {.lex_state = 197}, + [4253] = {.lex_state = 197}, + [4254] = {.lex_state = 197}, + [4255] = {.lex_state = 197}, + [4256] = {.lex_state = 197}, + [4257] = {.lex_state = 197}, + [4258] = {.lex_state = 197}, + [4259] = {.lex_state = 197}, + [4260] = {.lex_state = 197}, + [4261] = {.lex_state = 193}, + [4262] = {.lex_state = 197}, + [4263] = {.lex_state = 193}, + [4264] = {.lex_state = 197}, + [4265] = {.lex_state = 197}, + [4266] = {.lex_state = 197}, + [4267] = {.lex_state = 197}, + [4268] = {.lex_state = 197}, + [4269] = {.lex_state = 197}, + [4270] = {.lex_state = 197}, + [4271] = {.lex_state = 197}, + [4272] = {.lex_state = 197}, + [4273] = {.lex_state = 197}, + [4274] = {.lex_state = 197}, + [4275] = {.lex_state = 197}, + [4276] = {.lex_state = 197}, + [4277] = {.lex_state = 197}, + [4278] = {.lex_state = 197}, + [4279] = {.lex_state = 197}, + [4280] = {.lex_state = 197}, + [4281] = {.lex_state = 197}, + [4282] = {.lex_state = 197}, + [4283] = {.lex_state = 197}, + [4284] = {.lex_state = 197}, + [4285] = {.lex_state = 197}, + [4286] = {.lex_state = 197}, + [4287] = {.lex_state = 211}, + [4288] = {.lex_state = 197}, + [4289] = {.lex_state = 197}, + [4290] = {.lex_state = 202}, + [4291] = {.lex_state = 197}, + [4292] = {.lex_state = 197}, + [4293] = {.lex_state = 197}, + [4294] = {.lex_state = 197}, + [4295] = {.lex_state = 197}, + [4296] = {.lex_state = 197}, + [4297] = {.lex_state = 197}, + [4298] = {.lex_state = 197}, + [4299] = {.lex_state = 197}, + [4300] = {.lex_state = 197}, + [4301] = {.lex_state = 197}, + [4302] = {.lex_state = 197}, + [4303] = {.lex_state = 197}, + [4304] = {.lex_state = 197}, + [4305] = {.lex_state = 197}, + [4306] = {.lex_state = 197}, + [4307] = {.lex_state = 197}, + [4308] = {.lex_state = 197}, + [4309] = {.lex_state = 197}, + [4310] = {.lex_state = 197}, + [4311] = {.lex_state = 193}, + [4312] = {.lex_state = 197}, + [4313] = {.lex_state = 193}, + [4314] = {.lex_state = 193}, + [4315] = {.lex_state = 197}, + [4316] = {.lex_state = 197}, + [4317] = {.lex_state = 197}, + [4318] = {.lex_state = 197}, + [4319] = {.lex_state = 197}, + [4320] = {.lex_state = 197}, + [4321] = {.lex_state = 197}, + [4322] = {.lex_state = 197}, + [4323] = {.lex_state = 197}, + [4324] = {.lex_state = 197}, + [4325] = {.lex_state = 197}, + [4326] = {.lex_state = 193}, + [4327] = {.lex_state = 197}, + [4328] = {.lex_state = 197}, + [4329] = {.lex_state = 193}, + [4330] = {.lex_state = 197}, + [4331] = {.lex_state = 197}, + [4332] = {.lex_state = 197}, + [4333] = {.lex_state = 212}, + [4334] = {.lex_state = 197}, + [4335] = {.lex_state = 197}, + [4336] = {.lex_state = 197}, + [4337] = {.lex_state = 197}, + [4338] = {.lex_state = 209}, + [4339] = {.lex_state = 197}, + [4340] = {.lex_state = 197}, + [4341] = {.lex_state = 197}, + [4342] = {.lex_state = 197}, + [4343] = {.lex_state = 197}, + [4344] = {.lex_state = 197}, + [4345] = {.lex_state = 193}, + [4346] = {.lex_state = 197}, + [4347] = {.lex_state = 197}, + [4348] = {.lex_state = 197}, + [4349] = {.lex_state = 193}, + [4350] = {.lex_state = 209}, + [4351] = {.lex_state = 197}, + [4352] = {.lex_state = 197}, + [4353] = {.lex_state = 197}, + [4354] = {.lex_state = 197}, + [4355] = {.lex_state = 197}, + [4356] = {.lex_state = 193}, + [4357] = {.lex_state = 197}, + [4358] = {.lex_state = 193}, + [4359] = {.lex_state = 197}, + [4360] = {.lex_state = 193}, + [4361] = {.lex_state = 197}, + [4362] = {.lex_state = 197}, + [4363] = {.lex_state = 212}, + [4364] = {.lex_state = 193}, + [4365] = {.lex_state = 193}, + [4366] = {.lex_state = 197}, + [4367] = {.lex_state = 197}, + [4368] = {.lex_state = 197}, + [4369] = {.lex_state = 193}, + [4370] = {.lex_state = 197}, + [4371] = {.lex_state = 197}, + [4372] = {.lex_state = 197}, + [4373] = {.lex_state = 197}, + [4374] = {.lex_state = 197}, + [4375] = {.lex_state = 193}, + [4376] = {.lex_state = 193}, + [4377] = {.lex_state = 197}, + [4378] = {.lex_state = 209}, + [4379] = {.lex_state = 197}, + [4380] = {.lex_state = 197}, + [4381] = {.lex_state = 193}, + [4382] = {.lex_state = 193}, + [4383] = {.lex_state = 197}, + [4384] = {.lex_state = 193}, + [4385] = {.lex_state = 197}, + [4386] = {.lex_state = 197}, + [4387] = {.lex_state = 197}, + [4388] = {.lex_state = 197}, + [4389] = {.lex_state = 197}, + [4390] = {.lex_state = 193}, + [4391] = {.lex_state = 197}, + [4392] = {.lex_state = 193}, + [4393] = {.lex_state = 193}, + [4394] = {.lex_state = 197}, + [4395] = {.lex_state = 197}, + [4396] = {.lex_state = 193}, + [4397] = {.lex_state = 197}, + [4398] = {.lex_state = 193}, + [4399] = {.lex_state = 211}, + [4400] = {.lex_state = 193}, + [4401] = {.lex_state = 193}, + [4402] = {.lex_state = 197}, + [4403] = {.lex_state = 197}, + [4404] = {.lex_state = 197}, + [4405] = {.lex_state = 197}, + [4406] = {.lex_state = 193}, + [4407] = {.lex_state = 197}, + [4408] = {.lex_state = 197}, + [4409] = {.lex_state = 197}, + [4410] = {.lex_state = 197}, + [4411] = {.lex_state = 197}, + [4412] = {.lex_state = 197}, + [4413] = {.lex_state = 197}, + [4414] = {.lex_state = 197}, + [4415] = {.lex_state = 197}, + [4416] = {.lex_state = 197}, + [4417] = {.lex_state = 197}, + [4418] = {.lex_state = 197}, + [4419] = {.lex_state = 197}, + [4420] = {.lex_state = 197}, + [4421] = {.lex_state = 197}, + [4422] = {.lex_state = 197}, + [4423] = {.lex_state = 197}, + [4424] = {.lex_state = 197}, + [4425] = {.lex_state = 197}, + [4426] = {.lex_state = 197}, + [4427] = {.lex_state = 197}, + [4428] = {.lex_state = 193}, + [4429] = {.lex_state = 193}, + [4430] = {.lex_state = 197}, + [4431] = {.lex_state = 197}, + [4432] = {.lex_state = 197}, + [4433] = {.lex_state = 197}, + [4434] = {.lex_state = 197}, + [4435] = {.lex_state = 193}, + [4436] = {.lex_state = 197}, + [4437] = {.lex_state = 197}, + [4438] = {.lex_state = 197}, + [4439] = {.lex_state = 197}, + [4440] = {.lex_state = 197}, + [4441] = {.lex_state = 197}, + [4442] = {.lex_state = 197}, + [4443] = {.lex_state = 197}, + [4444] = {.lex_state = 197}, + [4445] = {.lex_state = 197}, + [4446] = {.lex_state = 197}, + [4447] = {.lex_state = 197}, + [4448] = {.lex_state = 197}, + [4449] = {.lex_state = 197}, + [4450] = {.lex_state = 209}, + [4451] = {.lex_state = 197}, + [4452] = {.lex_state = 197}, + [4453] = {.lex_state = 209}, + [4454] = {.lex_state = 197}, + [4455] = {.lex_state = 197}, + [4456] = {.lex_state = 197}, + [4457] = {.lex_state = 209}, + [4458] = {.lex_state = 197}, + [4459] = {.lex_state = 193}, + [4460] = {.lex_state = 193}, + [4461] = {.lex_state = 197}, + [4462] = {.lex_state = 197}, + [4463] = {.lex_state = 193}, + [4464] = {.lex_state = 215}, + [4465] = {.lex_state = 197}, + [4466] = {.lex_state = 209}, + [4467] = {.lex_state = 197}, + [4468] = {.lex_state = 193}, + [4469] = {.lex_state = 197}, + [4470] = {.lex_state = 193}, + [4471] = {.lex_state = 197}, + [4472] = {.lex_state = 197}, + [4473] = {.lex_state = 209}, + [4474] = {.lex_state = 197}, + [4475] = {.lex_state = 197}, + [4476] = {.lex_state = 197}, + [4477] = {.lex_state = 197}, + [4478] = {.lex_state = 209}, + [4479] = {.lex_state = 209}, + [4480] = {.lex_state = 197}, + [4481] = {.lex_state = 193}, + [4482] = {.lex_state = 197}, + [4483] = {.lex_state = 197}, + [4484] = {.lex_state = 197}, + [4485] = {.lex_state = 193}, + [4486] = {.lex_state = 197}, + [4487] = {.lex_state = 197}, + [4488] = {.lex_state = 193}, + [4489] = {.lex_state = 197}, + [4490] = {.lex_state = 209}, + [4491] = {.lex_state = 193}, + [4492] = {.lex_state = 197}, + [4493] = {.lex_state = 209}, + [4494] = {.lex_state = 197}, + [4495] = {.lex_state = 197}, + [4496] = {.lex_state = 197}, + [4497] = {.lex_state = 197}, + [4498] = {.lex_state = 197}, + [4499] = {.lex_state = 197}, + [4500] = {.lex_state = 197}, + [4501] = {.lex_state = 197}, + [4502] = {.lex_state = 197}, + [4503] = {.lex_state = 193}, + [4504] = {.lex_state = 193}, + [4505] = {.lex_state = 197}, + [4506] = {.lex_state = 197}, + [4507] = {.lex_state = 197}, + [4508] = {.lex_state = 192}, + [4509] = {.lex_state = 212}, + [4510] = {.lex_state = 212}, + [4511] = {.lex_state = 212}, + [4512] = {.lex_state = 197}, + [4513] = {.lex_state = 212}, + [4514] = {.lex_state = 197}, + [4515] = {.lex_state = 192}, + [4516] = {.lex_state = 212}, + [4517] = {.lex_state = 192}, + [4518] = {.lex_state = 192}, + [4519] = {.lex_state = 192}, + [4520] = {.lex_state = 213}, + [4521] = {.lex_state = 192}, + [4522] = {.lex_state = 192}, + [4523] = {.lex_state = 212}, + [4524] = {.lex_state = 209}, + [4525] = {.lex_state = 211}, + [4526] = {.lex_state = 192}, + [4527] = {.lex_state = 211}, + [4528] = {.lex_state = 193}, + [4529] = {.lex_state = 192}, + [4530] = {.lex_state = 197}, + [4531] = {.lex_state = 192}, + [4532] = {.lex_state = 213}, + [4533] = {.lex_state = 213}, + [4534] = {.lex_state = 193}, + [4535] = {.lex_state = 213}, + [4536] = {.lex_state = 192}, + [4537] = {.lex_state = 192}, + [4538] = {.lex_state = 193}, + [4539] = {.lex_state = 213}, + [4540] = {.lex_state = 197}, + [4541] = {.lex_state = 193}, + [4542] = {.lex_state = 213}, + [4543] = {.lex_state = 192}, + [4544] = {.lex_state = 209}, + [4545] = {.lex_state = 209}, + [4546] = {.lex_state = 216}, + [4547] = {.lex_state = 213}, + [4548] = {.lex_state = 192}, + [4549] = {.lex_state = 209}, + [4550] = {.lex_state = 209}, + [4551] = {.lex_state = 212}, + [4552] = {.lex_state = 209}, + [4553] = {.lex_state = 193}, + [4554] = {.lex_state = 192}, + [4555] = {.lex_state = 213}, + [4556] = {.lex_state = 209}, + [4557] = {.lex_state = 209}, + [4558] = {.lex_state = 212}, + [4559] = {.lex_state = 192}, + [4560] = {.lex_state = 212}, + [4561] = {.lex_state = 216}, + [4562] = {.lex_state = 209}, + [4563] = {.lex_state = 193}, + [4564] = {.lex_state = 193}, + [4565] = {.lex_state = 209}, + [4566] = {.lex_state = 209}, + [4567] = {.lex_state = 213}, + [4568] = {.lex_state = 209}, + [4569] = {.lex_state = 192}, + [4570] = {.lex_state = 209}, + [4571] = {.lex_state = 209}, + [4572] = {.lex_state = 213}, + [4573] = {.lex_state = 212}, + [4574] = {.lex_state = 213}, + [4575] = {.lex_state = 209}, + [4576] = {.lex_state = 212}, + [4577] = {.lex_state = 213}, + [4578] = {.lex_state = 193}, + [4579] = {.lex_state = 212}, + [4580] = {.lex_state = 193}, + [4581] = {.lex_state = 212}, + [4582] = {.lex_state = 212}, + [4583] = {.lex_state = 212}, + [4584] = {.lex_state = 212}, + [4585] = {.lex_state = 212}, + [4586] = {.lex_state = 212}, + [4587] = {.lex_state = 212}, + [4588] = {.lex_state = 212}, + [4589] = {.lex_state = 193}, + [4590] = {.lex_state = 193}, + [4591] = {.lex_state = 193}, + [4592] = {.lex_state = 209}, + [4593] = {.lex_state = 192}, + [4594] = {.lex_state = 213}, + [4595] = {.lex_state = 212}, + [4596] = {.lex_state = 213}, + [4597] = {.lex_state = 192}, + [4598] = {.lex_state = 213}, + [4599] = {.lex_state = 213}, + [4600] = {.lex_state = 213}, + [4601] = {.lex_state = 213}, + [4602] = {.lex_state = 213}, + [4603] = {.lex_state = 212}, + [4604] = {.lex_state = 209}, + [4605] = {.lex_state = 209}, + [4606] = {.lex_state = 209}, + [4607] = {.lex_state = 193}, + [4608] = {.lex_state = 193}, + [4609] = {.lex_state = 209}, + [4610] = {.lex_state = 209}, + [4611] = {.lex_state = 209}, + [4612] = {.lex_state = 209}, + [4613] = {.lex_state = 193}, + [4614] = {.lex_state = 209}, + [4615] = {.lex_state = 209}, + [4616] = {.lex_state = 193}, + [4617] = {.lex_state = 209}, + [4618] = {.lex_state = 193}, + [4619] = {.lex_state = 209}, + [4620] = {.lex_state = 209}, + [4621] = {.lex_state = 209}, + [4622] = {.lex_state = 193}, + [4623] = {.lex_state = 209}, + [4624] = {.lex_state = 209}, + [4625] = {.lex_state = 209}, + [4626] = {.lex_state = 209}, + [4627] = {.lex_state = 209}, + [4628] = {.lex_state = 193}, + [4629] = {.lex_state = 193}, + [4630] = {.lex_state = 209}, + [4631] = {.lex_state = 192}, + [4632] = {.lex_state = 197}, + [4633] = {.lex_state = 209}, + [4634] = {.lex_state = 209}, + [4635] = {.lex_state = 193}, + [4636] = {.lex_state = 209}, + [4637] = {.lex_state = 193}, + [4638] = {.lex_state = 213}, + [4639] = {.lex_state = 209}, + [4640] = {.lex_state = 193}, + [4641] = {.lex_state = 192}, + [4642] = {.lex_state = 209}, + [4643] = {.lex_state = 209}, + [4644] = {.lex_state = 213}, + [4645] = {.lex_state = 209}, + [4646] = {.lex_state = 197}, + [4647] = {.lex_state = 213}, + [4648] = {.lex_state = 213}, + [4649] = {.lex_state = 193}, + [4650] = {.lex_state = 213}, + [4651] = {.lex_state = 209}, + [4652] = {.lex_state = 209}, + [4653] = {.lex_state = 193}, + [4654] = {.lex_state = 209}, + [4655] = {.lex_state = 197}, + [4656] = {.lex_state = 193}, + [4657] = {.lex_state = 193}, + [4658] = {.lex_state = 193}, + [4659] = {.lex_state = 192}, + [4660] = {.lex_state = 197}, + [4661] = {.lex_state = 193}, + [4662] = {.lex_state = 209}, + [4663] = {.lex_state = 193}, + [4664] = {.lex_state = 193}, + [4665] = {.lex_state = 209}, + [4666] = {.lex_state = 192}, + [4667] = {.lex_state = 193}, + [4668] = {.lex_state = 193}, + [4669] = {.lex_state = 209}, + [4670] = {.lex_state = 193}, + [4671] = {.lex_state = 193}, + [4672] = {.lex_state = 193}, + [4673] = {.lex_state = 193}, + [4674] = {.lex_state = 214}, + [4675] = {.lex_state = 193}, + [4676] = {.lex_state = 193}, + [4677] = {.lex_state = 193}, + [4678] = {.lex_state = 193}, + [4679] = {.lex_state = 193}, + [4680] = {.lex_state = 193}, + [4681] = {.lex_state = 193}, + [4682] = {.lex_state = 193}, + [4683] = {.lex_state = 193}, + [4684] = {.lex_state = 193}, + [4685] = {.lex_state = 193}, + [4686] = {.lex_state = 214}, + [4687] = {.lex_state = 213}, + [4688] = {.lex_state = 193}, + [4689] = {.lex_state = 213}, + [4690] = {.lex_state = 193}, + [4691] = {.lex_state = 193}, + [4692] = {.lex_state = 193}, + [4693] = {.lex_state = 214}, + [4694] = {.lex_state = 193}, + [4695] = {.lex_state = 193}, + [4696] = {.lex_state = 193}, + [4697] = {.lex_state = 193}, + [4698] = {.lex_state = 193}, + [4699] = {.lex_state = 193}, + [4700] = {.lex_state = 212}, + [4701] = {.lex_state = 193}, + [4702] = {.lex_state = 193}, + [4703] = {.lex_state = 214}, + [4704] = {.lex_state = 193}, + [4705] = {.lex_state = 214}, + [4706] = {.lex_state = 193}, + [4707] = {.lex_state = 214}, [4708] = {.lex_state = 200}, - [4709] = {.lex_state = 181}, - [4710] = {.lex_state = 199}, - [4711] = {.lex_state = 0}, - [4712] = {.lex_state = 264}, - [4713] = {.lex_state = 168}, - [4714] = {.lex_state = 181}, - [4715] = {.lex_state = 165}, - [4716] = {.lex_state = 200}, - [4717] = {.lex_state = 264}, - [4718] = {.lex_state = 200}, - [4719] = {.lex_state = 0}, - [4720] = {.lex_state = 0}, - [4721] = {.lex_state = 165}, - [4722] = {.lex_state = 200}, - [4723] = {.lex_state = 200}, - [4724] = {.lex_state = 199}, - [4725] = {.lex_state = 165}, - [4726] = {.lex_state = 165}, - [4727] = {.lex_state = 264}, - [4728] = {.lex_state = 200}, - [4729] = {.lex_state = 165}, - [4730] = {.lex_state = 200}, - [4731] = {.lex_state = 165}, - [4732] = {.lex_state = 168}, - [4733] = {.lex_state = 165}, - [4734] = {.lex_state = 168}, - [4735] = {.lex_state = 200}, - [4736] = {.lex_state = 200}, - [4737] = {.lex_state = 181}, - [4738] = {.lex_state = 168}, - [4739] = {.lex_state = 181}, - [4740] = {.lex_state = 201}, - [4741] = {.lex_state = 200}, - [4742] = {.lex_state = 264}, - [4743] = {.lex_state = 165}, - [4744] = {.lex_state = 200}, - [4745] = {.lex_state = 201}, - [4746] = {.lex_state = 201}, - [4747] = {.lex_state = 201}, - [4748] = {.lex_state = 200}, - [4749] = {.lex_state = 0}, - [4750] = {.lex_state = 200}, - [4751] = {.lex_state = 201}, - [4752] = {.lex_state = 200}, - [4753] = {.lex_state = 157}, - [4754] = {.lex_state = 201}, - [4755] = {.lex_state = 165}, - [4756] = {.lex_state = 0}, - [4757] = {.lex_state = 200}, - [4758] = {.lex_state = 200}, - [4759] = {.lex_state = 200}, - [4760] = {.lex_state = 201}, - [4761] = {.lex_state = 0}, - [4762] = {.lex_state = 200}, - [4763] = {.lex_state = 201}, - [4764] = {.lex_state = 201}, - [4765] = {.lex_state = 201}, - [4766] = {.lex_state = 201}, - [4767] = {.lex_state = 201}, - [4768] = {.lex_state = 201}, - [4769] = {.lex_state = 201}, - [4770] = {.lex_state = 201}, - [4771] = {.lex_state = 143}, - [4772] = {.lex_state = 165}, - [4773] = {.lex_state = 0}, - [4774] = {.lex_state = 201}, - [4775] = {.lex_state = 201}, - [4776] = {.lex_state = 201}, - [4777] = {.lex_state = 201}, - [4778] = {.lex_state = 201}, - [4779] = {.lex_state = 165}, - [4780] = {.lex_state = 200}, - [4781] = {.lex_state = 201}, - [4782] = {.lex_state = 200}, - [4783] = {.lex_state = 0}, - [4784] = {.lex_state = 200}, - [4785] = {.lex_state = 201}, - [4786] = {.lex_state = 201}, - [4787] = {.lex_state = 157}, - [4788] = {.lex_state = 0}, - [4789] = {.lex_state = 201}, - [4790] = {.lex_state = 201}, - [4791] = {.lex_state = 165}, - [4792] = {.lex_state = 200}, - [4793] = {.lex_state = 200}, - [4794] = {.lex_state = 201}, - [4795] = {.lex_state = 200}, - [4796] = {.lex_state = 201}, - [4797] = {.lex_state = 186}, - [4798] = {.lex_state = 0}, - [4799] = {.lex_state = 200}, - [4800] = {.lex_state = 201}, - [4801] = {.lex_state = 200}, - [4802] = {.lex_state = 201}, - [4803] = {.lex_state = 201}, - [4804] = {.lex_state = 201}, - [4805] = {.lex_state = 201}, - [4806] = {.lex_state = 201}, - [4807] = {.lex_state = 201}, - [4808] = {.lex_state = 201}, - [4809] = {.lex_state = 201}, - [4810] = {.lex_state = 165}, - [4811] = {.lex_state = 201}, - [4812] = {.lex_state = 186}, - [4813] = {.lex_state = 201}, - [4814] = {.lex_state = 201}, - [4815] = {.lex_state = 186}, - [4816] = {.lex_state = 200}, - [4817] = {.lex_state = 201}, - [4818] = {.lex_state = 200}, - [4819] = {.lex_state = 165}, - [4820] = {.lex_state = 157}, - [4821] = {.lex_state = 200}, - [4822] = {.lex_state = 165}, - [4823] = {.lex_state = 200}, - [4824] = {.lex_state = 200}, - [4825] = {.lex_state = 157}, - [4826] = {.lex_state = 201}, - [4827] = {.lex_state = 202}, - [4828] = {.lex_state = 167}, - [4829] = {.lex_state = 165}, - [4830] = {.lex_state = 165}, - [4831] = {.lex_state = 165}, - [4832] = {.lex_state = 165}, - [4833] = {.lex_state = 165}, - [4834] = {.lex_state = 165}, - [4835] = {.lex_state = 200}, - [4836] = {.lex_state = 165}, - [4837] = {.lex_state = 201}, - [4838] = {.lex_state = 201}, - [4839] = {.lex_state = 165}, - [4840] = {.lex_state = 205}, - [4841] = {.lex_state = 165}, - [4842] = {.lex_state = 165}, - [4843] = {.lex_state = 165}, - [4844] = {.lex_state = 167}, - [4845] = {.lex_state = 157}, - [4846] = {.lex_state = 201}, - [4847] = {.lex_state = 200}, - [4848] = {.lex_state = 202}, - [4849] = {.lex_state = 165}, - [4850] = {.lex_state = 165}, - [4851] = {.lex_state = 165}, - [4852] = {.lex_state = 157}, - [4853] = {.lex_state = 165}, - [4854] = {.lex_state = 165}, - [4855] = {.lex_state = 200}, - [4856] = {.lex_state = 201}, - [4857] = {.lex_state = 165}, - [4858] = {.lex_state = 202}, - [4859] = {.lex_state = 165}, - [4860] = {.lex_state = 199}, - [4861] = {.lex_state = 165}, - [4862] = {.lex_state = 157}, - [4863] = {.lex_state = 165}, - [4864] = {.lex_state = 157}, - [4865] = {.lex_state = 202}, - [4866] = {.lex_state = 165}, - [4867] = {.lex_state = 202}, - [4868] = {.lex_state = 165}, - [4869] = {.lex_state = 200}, - [4870] = {.lex_state = 200}, - [4871] = {.lex_state = 201}, - [4872] = {.lex_state = 165}, - [4873] = {.lex_state = 165}, - [4874] = {.lex_state = 199}, - [4875] = {.lex_state = 165}, - [4876] = {.lex_state = 165}, - [4877] = {.lex_state = 199}, - [4878] = {.lex_state = 202}, - [4879] = {.lex_state = 201}, - [4880] = {.lex_state = 165}, - [4881] = {.lex_state = 157}, - [4882] = {.lex_state = 165}, - [4883] = {.lex_state = 200}, - [4884] = {.lex_state = 165}, - [4885] = {.lex_state = 165}, - [4886] = {.lex_state = 165}, - [4887] = {.lex_state = 165}, - [4888] = {.lex_state = 165}, - [4889] = {.lex_state = 200}, - [4890] = {.lex_state = 165}, - [4891] = {.lex_state = 181}, - [4892] = {.lex_state = 165}, - [4893] = {.lex_state = 165}, - [4894] = {.lex_state = 200}, - [4895] = {.lex_state = 200}, - [4896] = {.lex_state = 167}, - [4897] = {.lex_state = 200}, - [4898] = {.lex_state = 157}, - [4899] = {.lex_state = 201}, - [4900] = {.lex_state = 168}, - [4901] = {.lex_state = 200}, - [4902] = {.lex_state = 200}, - [4903] = {.lex_state = 200}, - [4904] = {.lex_state = 181}, - [4905] = {.lex_state = 167}, - [4906] = {.lex_state = 165}, - [4907] = {.lex_state = 165}, - [4908] = {.lex_state = 200}, - [4909] = {.lex_state = 157}, - [4910] = {.lex_state = 165}, - [4911] = {.lex_state = 168}, - [4912] = {.lex_state = 167}, - [4913] = {.lex_state = 200}, - [4914] = {.lex_state = 200}, - [4915] = {.lex_state = 157}, - [4916] = {.lex_state = 167}, - [4917] = {.lex_state = 201}, - [4918] = {.lex_state = 200}, - [4919] = {.lex_state = 201}, - [4920] = {.lex_state = 165}, - [4921] = {.lex_state = 200}, - [4922] = {.lex_state = 157}, - [4923] = {.lex_state = 200}, - [4924] = {.lex_state = 165}, - [4925] = {.lex_state = 201}, - [4926] = {.lex_state = 157}, - [4927] = {.lex_state = 167}, - [4928] = {.lex_state = 200}, - [4929] = {.lex_state = 157}, - [4930] = {.lex_state = 165}, - [4931] = {.lex_state = 200}, - [4932] = {.lex_state = 201}, - [4933] = {.lex_state = 201}, - [4934] = {.lex_state = 165}, - [4935] = {.lex_state = 200}, - [4936] = {.lex_state = 200}, - [4937] = {.lex_state = 165}, - [4938] = {.lex_state = 165}, - [4939] = {.lex_state = 165}, - [4940] = {.lex_state = 165}, - [4941] = {.lex_state = 165}, - [4942] = {.lex_state = 167}, - [4943] = {.lex_state = 200}, - [4944] = {.lex_state = 200}, - [4945] = {.lex_state = 168}, - [4946] = {.lex_state = 168}, - [4947] = {.lex_state = 200}, - [4948] = {.lex_state = 264}, - [4949] = {.lex_state = 264}, - [4950] = {.lex_state = 165}, - [4951] = {.lex_state = 200}, - [4952] = {.lex_state = 165}, - [4953] = {.lex_state = 264}, - [4954] = {.lex_state = 200}, - [4955] = {.lex_state = 167}, - [4956] = {.lex_state = 165}, + [4709] = {.lex_state = 200}, + [4710] = {.lex_state = 197}, + [4711] = {.lex_state = 197}, + [4712] = {.lex_state = 193}, + [4713] = {.lex_state = 213}, + [4714] = {.lex_state = 193}, + [4715] = {.lex_state = 209}, + [4716] = {.lex_state = 213}, + [4717] = {.lex_state = 211}, + [4718] = {.lex_state = 212}, + [4719] = {.lex_state = 213}, + [4720] = {.lex_state = 211}, + [4721] = {.lex_state = 213}, + [4722] = {.lex_state = 212}, + [4723] = {.lex_state = 213}, + [4724] = {.lex_state = 213}, + [4725] = {.lex_state = 213}, + [4726] = {.lex_state = 213}, + [4727] = {.lex_state = 218}, + [4728] = {.lex_state = 213}, + [4729] = {.lex_state = 213}, + [4730] = {.lex_state = 213}, + [4731] = {.lex_state = 218}, + [4732] = {.lex_state = 213}, + [4733] = {.lex_state = 213}, + [4734] = {.lex_state = 213}, + [4735] = {.lex_state = 218}, + [4736] = {.lex_state = 213}, + [4737] = {.lex_state = 213}, + [4738] = {.lex_state = 213}, + [4739] = {.lex_state = 213}, + [4740] = {.lex_state = 213}, + [4741] = {.lex_state = 213}, + [4742] = {.lex_state = 213}, + [4743] = {.lex_state = 213}, + [4744] = {.lex_state = 213}, + [4745] = {.lex_state = 213}, + [4746] = {.lex_state = 213}, + [4747] = {.lex_state = 213}, + [4748] = {.lex_state = 213}, + [4749] = {.lex_state = 213}, + [4750] = {.lex_state = 213}, + [4751] = {.lex_state = 213}, + [4752] = {.lex_state = 213}, + [4753] = {.lex_state = 213}, + [4754] = {.lex_state = 213}, + [4755] = {.lex_state = 213}, + [4756] = {.lex_state = 218}, + [4757] = {.lex_state = 213}, + [4758] = {.lex_state = 213}, + [4759] = {.lex_state = 218}, + [4760] = {.lex_state = 213}, + [4761] = {.lex_state = 213}, + [4762] = {.lex_state = 213}, + [4763] = {.lex_state = 213}, + [4764] = {.lex_state = 213}, + [4765] = {.lex_state = 213}, + [4766] = {.lex_state = 213}, + [4767] = {.lex_state = 218}, + [4768] = {.lex_state = 213}, + [4769] = {.lex_state = 192}, + [4770] = {.lex_state = 192}, + [4771] = {.lex_state = 193}, + [4772] = {.lex_state = 192}, + [4773] = {.lex_state = 197}, + [4774] = {.lex_state = 192}, + [4775] = {.lex_state = 192}, + [4776] = {.lex_state = 192}, + [4777] = {.lex_state = 192}, + [4778] = {.lex_state = 192}, + [4779] = {.lex_state = 192}, + [4780] = {.lex_state = 192}, + [4781] = {.lex_state = 192}, + [4782] = {.lex_state = 192}, + [4783] = {.lex_state = 192}, + [4784] = {.lex_state = 192}, + [4785] = {.lex_state = 197}, + [4786] = {.lex_state = 192}, + [4787] = {.lex_state = 192}, + [4788] = {.lex_state = 192}, + [4789] = {.lex_state = 192}, + [4790] = {.lex_state = 192}, + [4791] = {.lex_state = 192}, + [4792] = {.lex_state = 197}, + [4793] = {.lex_state = 192}, + [4794] = {.lex_state = 192}, + [4795] = {.lex_state = 192}, + [4796] = {.lex_state = 192}, + [4797] = {.lex_state = 211}, + [4798] = {.lex_state = 192}, + [4799] = {.lex_state = 192}, + [4800] = {.lex_state = 192}, + [4801] = {.lex_state = 192}, + [4802] = {.lex_state = 192}, + [4803] = {.lex_state = 192}, + [4804] = {.lex_state = 192}, + [4805] = {.lex_state = 192}, + [4806] = {.lex_state = 192}, + [4807] = {.lex_state = 211}, + [4808] = {.lex_state = 211}, + [4809] = {.lex_state = 211}, + [4810] = {.lex_state = 192}, + [4811] = {.lex_state = 192}, + [4812] = {.lex_state = 192}, + [4813] = {.lex_state = 192}, + [4814] = {.lex_state = 192}, + [4815] = {.lex_state = 192}, + [4816] = {.lex_state = 192}, + [4817] = {.lex_state = 192}, + [4818] = {.lex_state = 192}, + [4819] = {.lex_state = 192}, + [4820] = {.lex_state = 192}, + [4821] = {.lex_state = 192}, + [4822] = {.lex_state = 192}, + [4823] = {.lex_state = 192}, + [4824] = {.lex_state = 176}, + [4825] = {.lex_state = 176}, + [4826] = {.lex_state = 176}, + [4827] = {.lex_state = 176}, + [4828] = {.lex_state = 176}, + [4829] = {.lex_state = 176}, + [4830] = {.lex_state = 176}, + [4831] = {.lex_state = 212}, + [4832] = {.lex_state = 176}, + [4833] = {.lex_state = 176}, + [4834] = {.lex_state = 212}, + [4835] = {.lex_state = 176}, + [4836] = {.lex_state = 212}, + [4837] = {.lex_state = 176}, + [4838] = {.lex_state = 176}, + [4839] = {.lex_state = 176}, + [4840] = {.lex_state = 176}, + [4841] = {.lex_state = 176}, + [4842] = {.lex_state = 176}, + [4843] = {.lex_state = 176}, + [4844] = {.lex_state = 176}, + [4845] = {.lex_state = 176}, + [4846] = {.lex_state = 176}, + [4847] = {.lex_state = 176}, + [4848] = {.lex_state = 176}, + [4849] = {.lex_state = 176}, + [4850] = {.lex_state = 176}, + [4851] = {.lex_state = 176}, + [4852] = {.lex_state = 176}, + [4853] = {.lex_state = 212}, + [4854] = {.lex_state = 176}, + [4855] = {.lex_state = 176}, + [4856] = {.lex_state = 176}, + [4857] = {.lex_state = 176}, + [4858] = {.lex_state = 176}, + [4859] = {.lex_state = 176}, + [4860] = {.lex_state = 176}, + [4861] = {.lex_state = 176}, + [4862] = {.lex_state = 176}, + [4863] = {.lex_state = 176}, + [4864] = {.lex_state = 176}, + [4865] = {.lex_state = 176}, + [4866] = {.lex_state = 176}, + [4867] = {.lex_state = 176}, + [4868] = {.lex_state = 176}, + [4869] = {.lex_state = 176}, + [4870] = {.lex_state = 176}, + [4871] = {.lex_state = 176}, + [4872] = {.lex_state = 176}, + [4873] = {.lex_state = 176}, + [4874] = {.lex_state = 176}, + [4875] = {.lex_state = 176}, + [4876] = {.lex_state = 176}, + [4877] = {.lex_state = 176}, + [4878] = {.lex_state = 176}, + [4879] = {.lex_state = 212}, + [4880] = {.lex_state = 176}, + [4881] = {.lex_state = 176}, + [4882] = {.lex_state = 176}, + [4883] = {.lex_state = 212}, + [4884] = {.lex_state = 176}, + [4885] = {.lex_state = 176}, + [4886] = {.lex_state = 176}, + [4887] = {.lex_state = 176}, + [4888] = {.lex_state = 176}, + [4889] = {.lex_state = 176}, + [4890] = {.lex_state = 193}, + [4891] = {.lex_state = 176}, + [4892] = {.lex_state = 176}, + [4893] = {.lex_state = 176}, + [4894] = {.lex_state = 176}, + [4895] = {.lex_state = 176}, + [4896] = {.lex_state = 212}, + [4897] = {.lex_state = 176}, + [4898] = {.lex_state = 176}, + [4899] = {.lex_state = 176}, + [4900] = {.lex_state = 212}, + [4901] = {.lex_state = 176}, + [4902] = {.lex_state = 176}, + [4903] = {.lex_state = 176}, + [4904] = {.lex_state = 176}, + [4905] = {.lex_state = 176}, + [4906] = {.lex_state = 176}, + [4907] = {.lex_state = 176}, + [4908] = {.lex_state = 218}, + [4909] = {.lex_state = 218}, + [4910] = {.lex_state = 167}, + [4911] = {.lex_state = 218}, + [4912] = {.lex_state = 218}, + [4913] = {.lex_state = 218}, + [4914] = {.lex_state = 218}, + [4915] = {.lex_state = 218}, + [4916] = {.lex_state = 218}, + [4917] = {.lex_state = 218}, + [4918] = {.lex_state = 218}, + [4919] = {.lex_state = 218}, + [4920] = {.lex_state = 218}, + [4921] = {.lex_state = 218}, + [4922] = {.lex_state = 218}, + [4923] = {.lex_state = 218}, + [4924] = {.lex_state = 218}, + [4925] = {.lex_state = 218}, + [4926] = {.lex_state = 218}, + [4927] = {.lex_state = 218}, + [4928] = {.lex_state = 218}, + [4929] = {.lex_state = 218}, + [4930] = {.lex_state = 218}, + [4931] = {.lex_state = 218}, + [4932] = {.lex_state = 218}, + [4933] = {.lex_state = 218}, + [4934] = {.lex_state = 209}, + [4935] = {.lex_state = 193}, + [4936] = {.lex_state = 218}, + [4937] = {.lex_state = 197}, + [4938] = {.lex_state = 218}, + [4939] = {.lex_state = 218}, + [4940] = {.lex_state = 218}, + [4941] = {.lex_state = 218}, + [4942] = {.lex_state = 218}, + [4943] = {.lex_state = 218}, + [4944] = {.lex_state = 218}, + [4945] = {.lex_state = 218}, + [4946] = {.lex_state = 218}, + [4947] = {.lex_state = 218}, + [4948] = {.lex_state = 218}, + [4949] = {.lex_state = 218}, + [4950] = {.lex_state = 218}, + [4951] = {.lex_state = 176}, + [4952] = {.lex_state = 156}, + [4953] = {.lex_state = 167}, + [4954] = {.lex_state = 176}, + [4955] = {.lex_state = 176}, + [4956] = {.lex_state = 176}, [4957] = {.lex_state = 167}, - [4958] = {.lex_state = 167}, - [4959] = {.lex_state = 168}, - [4960] = {.lex_state = 200}, - [4961] = {.lex_state = 165}, - [4962] = {.lex_state = 202}, - [4963] = {.lex_state = 165}, - [4964] = {.lex_state = 200}, - [4965] = {.lex_state = 167}, - [4966] = {.lex_state = 200}, - [4967] = {.lex_state = 167}, - [4968] = {.lex_state = 168}, - [4969] = {.lex_state = 168}, - [4970] = {.lex_state = 168}, - [4971] = {.lex_state = 200}, - [4972] = {.lex_state = 167}, - [4973] = {.lex_state = 186}, - [4974] = {.lex_state = 167}, - [4975] = {.lex_state = 200}, - [4976] = {.lex_state = 186}, - [4977] = {.lex_state = 200}, - [4978] = {.lex_state = 165}, - [4979] = {.lex_state = 165}, - [4980] = {.lex_state = 165}, - [4981] = {.lex_state = 264}, - [4982] = {.lex_state = 168}, - [4983] = {.lex_state = 264}, - [4984] = {.lex_state = 264}, - [4985] = {.lex_state = 165}, - [4986] = {.lex_state = 264}, - [4987] = {.lex_state = 194}, - [4988] = {.lex_state = 182}, - [4989] = {.lex_state = 165}, - [4990] = {.lex_state = 165}, - [4991] = {.lex_state = 168}, - [4992] = {.lex_state = 264}, - [4993] = {.lex_state = 165}, - [4994] = {.lex_state = 264}, - [4995] = {.lex_state = 264}, - [4996] = {.lex_state = 165}, - [4997] = {.lex_state = 165}, - [4998] = {.lex_state = 264}, - [4999] = {.lex_state = 194}, - [5000] = {.lex_state = 200}, - [5001] = {.lex_state = 165}, - [5002] = {.lex_state = 194}, - [5003] = {.lex_state = 165}, - [5004] = {.lex_state = 200}, - [5005] = {.lex_state = 264}, - [5006] = {.lex_state = 165}, - [5007] = {.lex_state = 165}, - [5008] = {.lex_state = 264}, - [5009] = {.lex_state = 168}, - [5010] = {.lex_state = 168}, - [5011] = {.lex_state = 168}, - [5012] = {.lex_state = 264}, - [5013] = {.lex_state = 168}, - [5014] = {.lex_state = 165}, - [5015] = {.lex_state = 194}, - [5016] = {.lex_state = 264}, - [5017] = {.lex_state = 264}, - [5018] = {.lex_state = 264}, - [5019] = {.lex_state = 264}, - [5020] = {.lex_state = 165}, - [5021] = {.lex_state = 264}, - [5022] = {.lex_state = 165}, - [5023] = {.lex_state = 143}, - [5024] = {.lex_state = 165}, - [5025] = {.lex_state = 165}, - [5026] = {.lex_state = 168}, - [5027] = {.lex_state = 264}, - [5028] = {.lex_state = 264}, - [5029] = {.lex_state = 165}, - [5030] = {.lex_state = 264}, - [5031] = {.lex_state = 165}, - [5032] = {.lex_state = 264}, - [5033] = {.lex_state = 200}, - [5034] = {.lex_state = 165}, - [5035] = {.lex_state = 165}, - [5036] = {.lex_state = 165}, - [5037] = {.lex_state = 264}, - [5038] = {.lex_state = 264}, - [5039] = {.lex_state = 200}, - [5040] = {.lex_state = 165}, - [5041] = {.lex_state = 182}, - [5042] = {.lex_state = 200}, - [5043] = {.lex_state = 264}, - [5044] = {.lex_state = 264}, - [5045] = {.lex_state = 200}, - [5046] = {.lex_state = 264}, - [5047] = {.lex_state = 264}, - [5048] = {.lex_state = 264}, - [5049] = {.lex_state = 264}, - [5050] = {.lex_state = 264}, - [5051] = {.lex_state = 264}, - [5052] = {.lex_state = 264}, - [5053] = {.lex_state = 264}, - [5054] = {.lex_state = 168}, - [5055] = {.lex_state = 264}, - [5056] = {.lex_state = 165}, - [5057] = {.lex_state = 168}, - [5058] = {.lex_state = 168}, - [5059] = {.lex_state = 168}, - [5060] = {.lex_state = 264}, - [5061] = {.lex_state = 264}, - [5062] = {.lex_state = 199}, - [5063] = {.lex_state = 202}, - [5064] = {.lex_state = 264}, - [5065] = {.lex_state = 168}, - [5066] = {.lex_state = 165}, - [5067] = {.lex_state = 168}, - [5068] = {.lex_state = 165}, - [5069] = {.lex_state = 165}, - [5070] = {.lex_state = 165}, - [5071] = {.lex_state = 168}, - [5072] = {.lex_state = 168}, - [5073] = {.lex_state = 264}, - [5074] = {.lex_state = 264}, - [5075] = {.lex_state = 264}, - [5076] = {.lex_state = 168}, - [5077] = {.lex_state = 264}, - [5078] = {.lex_state = 264}, - [5079] = {.lex_state = 202}, - [5080] = {.lex_state = 264}, - [5081] = {.lex_state = 264}, - [5082] = {.lex_state = 264}, - [5083] = {.lex_state = 264}, - [5084] = {.lex_state = 165}, - [5085] = {.lex_state = 165}, - [5086] = {.lex_state = 168}, - [5087] = {.lex_state = 199}, - [5088] = {.lex_state = 201}, - [5089] = {.lex_state = 264}, - [5090] = {.lex_state = 165}, - [5091] = {.lex_state = 165}, - [5092] = {.lex_state = 264}, - [5093] = {.lex_state = 168}, - [5094] = {.lex_state = 264}, - [5095] = {.lex_state = 202}, - [5096] = {.lex_state = 165}, - [5097] = {.lex_state = 165}, - [5098] = {.lex_state = 143}, - [5099] = {.lex_state = 143}, - [5100] = {.lex_state = 182}, - [5101] = {.lex_state = 165}, - [5102] = {.lex_state = 165}, - [5103] = {.lex_state = 143}, - [5104] = {.lex_state = 143}, - [5105] = {.lex_state = 182}, - [5106] = {.lex_state = 165}, - [5107] = {.lex_state = 143}, - [5108] = {.lex_state = 264}, - [5109] = {.lex_state = 264}, - [5110] = {.lex_state = 165}, - [5111] = {.lex_state = 165}, - [5112] = {.lex_state = 182}, - [5113] = {.lex_state = 264}, - [5114] = {.lex_state = 165}, - [5115] = {.lex_state = 143}, - [5116] = {.lex_state = 165}, - [5117] = {.lex_state = 143}, - [5118] = {.lex_state = 165}, - [5119] = {.lex_state = 199}, - [5120] = {.lex_state = 199}, - [5121] = {.lex_state = 165}, - [5122] = {.lex_state = 264}, - [5123] = {.lex_state = 264}, - [5124] = {.lex_state = 264}, - [5125] = {.lex_state = 202}, - [5126] = {.lex_state = 199}, - [5127] = {.lex_state = 264}, - [5128] = {.lex_state = 199}, - [5129] = {.lex_state = 143}, - [5130] = {.lex_state = 199}, - [5131] = {.lex_state = 143}, - [5132] = {.lex_state = 264}, - [5133] = {.lex_state = 165}, - [5134] = {.lex_state = 199}, - [5135] = {.lex_state = 165}, - [5136] = {.lex_state = 264}, - [5137] = {.lex_state = 264}, - [5138] = {.lex_state = 264}, - [5139] = {.lex_state = 199}, - [5140] = {.lex_state = 199}, - [5141] = {.lex_state = 165}, - [5142] = {.lex_state = 199}, - [5143] = {.lex_state = 199}, - [5144] = {.lex_state = 199}, - [5145] = {.lex_state = 199}, - [5146] = {.lex_state = 199}, - [5147] = {.lex_state = 199}, - [5148] = {.lex_state = 264}, - [5149] = {.lex_state = 264}, - [5150] = {.lex_state = 165}, - [5151] = {.lex_state = 165}, - [5152] = {.lex_state = 199}, - [5153] = {.lex_state = 167}, - [5154] = {.lex_state = 165}, - [5155] = {.lex_state = 165}, - [5156] = {.lex_state = 167}, - [5157] = {.lex_state = 165}, - [5158] = {.lex_state = 264}, - [5159] = {.lex_state = 165}, - [5160] = {.lex_state = 165}, - [5161] = {.lex_state = 264}, - [5162] = {.lex_state = 143}, - [5163] = {.lex_state = 165}, - [5164] = {.lex_state = 143}, - [5165] = {.lex_state = 148}, - [5166] = {.lex_state = 148}, - [5167] = {.lex_state = 264}, - [5168] = {.lex_state = 80}, - [5169] = {.lex_state = 148}, - [5170] = {.lex_state = 264}, - [5171] = {.lex_state = 0}, - [5172] = {.lex_state = 264}, - [5173] = {.lex_state = 148}, - [5174] = {.lex_state = 264}, - [5175] = {.lex_state = 148}, - [5176] = {.lex_state = 165}, - [5177] = {.lex_state = 0}, - [5178] = {.lex_state = 143}, - [5179] = {.lex_state = 148}, - [5180] = {.lex_state = 264}, - [5181] = {.lex_state = 165}, - [5182] = {.lex_state = 148}, - [5183] = {.lex_state = 143}, - [5184] = {.lex_state = 264}, - [5185] = {.lex_state = 264}, - [5186] = {.lex_state = 0}, - [5187] = {.lex_state = 148}, - [5188] = {.lex_state = 165}, - [5189] = {.lex_state = 148}, - [5190] = {.lex_state = 148}, - [5191] = {.lex_state = 143}, - [5192] = {.lex_state = 80}, - [5193] = {.lex_state = 165}, - [5194] = {.lex_state = 148}, - [5195] = {.lex_state = 0}, - [5196] = {.lex_state = 143}, - [5197] = {.lex_state = 143}, - [5198] = {.lex_state = 148}, - [5199] = {.lex_state = 148}, - [5200] = {.lex_state = 0}, - [5201] = {.lex_state = 82}, - [5202] = {.lex_state = 148}, - [5203] = {.lex_state = 264}, - [5204] = {.lex_state = 264}, - [5205] = {.lex_state = 148}, - [5206] = {.lex_state = 143}, - [5207] = {.lex_state = 264}, - [5208] = {.lex_state = 143}, - [5209] = {.lex_state = 0}, - [5210] = {.lex_state = 148}, - [5211] = {.lex_state = 143}, - [5212] = {.lex_state = 143}, - [5213] = {.lex_state = 199}, - [5214] = {.lex_state = 199}, - [5215] = {.lex_state = 165}, - [5216] = {.lex_state = 264}, - [5217] = {.lex_state = 143}, - [5218] = {.lex_state = 148}, - [5219] = {.lex_state = 199}, - [5220] = {.lex_state = 264}, - [5221] = {.lex_state = 80}, - [5222] = {.lex_state = 148}, - [5223] = {.lex_state = 80}, - [5224] = {.lex_state = 0}, - [5225] = {.lex_state = 143}, - [5226] = {.lex_state = 0}, - [5227] = {.lex_state = 148}, - [5228] = {.lex_state = 0}, - [5229] = {.lex_state = 148}, - [5230] = {.lex_state = 148}, - [5231] = {.lex_state = 143}, - [5232] = {.lex_state = 148}, - [5233] = {.lex_state = 82}, - [5234] = {.lex_state = 264}, - [5235] = {.lex_state = 199}, - [5236] = {.lex_state = 165}, - [5237] = {.lex_state = 264}, - [5238] = {.lex_state = 143}, - [5239] = {.lex_state = 143}, - [5240] = {.lex_state = 148}, - [5241] = {.lex_state = 0}, - [5242] = {.lex_state = 264}, - [5243] = {.lex_state = 148}, - [5244] = {.lex_state = 148}, - [5245] = {.lex_state = 148}, - [5246] = {.lex_state = 264}, - [5247] = {.lex_state = 80}, - [5248] = {.lex_state = 143}, - [5249] = {.lex_state = 264}, - [5250] = {.lex_state = 143}, - [5251] = {.lex_state = 143}, - [5252] = {.lex_state = 264}, - [5253] = {.lex_state = 148}, - [5254] = {.lex_state = 148}, - [5255] = {.lex_state = 82}, - [5256] = {.lex_state = 148}, - [5257] = {.lex_state = 264}, - [5258] = {.lex_state = 148}, - [5259] = {.lex_state = 165}, - [5260] = {.lex_state = 0}, - [5261] = {.lex_state = 199}, - [5262] = {.lex_state = 143}, - [5263] = {.lex_state = 264}, - [5264] = {.lex_state = 264}, - [5265] = {.lex_state = 0}, - [5266] = {.lex_state = 264}, - [5267] = {.lex_state = 264}, - [5268] = {.lex_state = 148}, - [5269] = {.lex_state = 148}, - [5270] = {.lex_state = 264}, - [5271] = {.lex_state = 80}, - [5272] = {.lex_state = 0}, - [5273] = {.lex_state = 80}, - [5274] = {.lex_state = 148}, - [5275] = {.lex_state = 143}, - [5276] = {.lex_state = 264}, - [5277] = {.lex_state = 148}, - [5278] = {.lex_state = 264}, - [5279] = {.lex_state = 264}, - [5280] = {.lex_state = 148}, - [5281] = {.lex_state = 264}, - [5282] = {.lex_state = 148}, - [5283] = {.lex_state = 143}, - [5284] = {.lex_state = 143}, - [5285] = {.lex_state = 165}, - [5286] = {.lex_state = 0}, - [5287] = {.lex_state = 80}, - [5288] = {.lex_state = 148}, - [5289] = {.lex_state = 148}, - [5290] = {.lex_state = 148}, - [5291] = {.lex_state = 82}, - [5292] = {.lex_state = 148}, - [5293] = {.lex_state = 143}, - [5294] = {.lex_state = 148}, - [5295] = {.lex_state = 0}, - [5296] = {.lex_state = 148}, - [5297] = {.lex_state = 264}, - [5298] = {.lex_state = 264}, - [5299] = {.lex_state = 148}, - [5300] = {.lex_state = 165}, - [5301] = {.lex_state = 264}, - [5302] = {.lex_state = 80}, - [5303] = {.lex_state = 82}, - [5304] = {.lex_state = 143}, - [5305] = {.lex_state = 148}, - [5306] = {.lex_state = 165}, - [5307] = {.lex_state = 80}, - [5308] = {.lex_state = 165}, - [5309] = {.lex_state = 148}, - [5310] = {.lex_state = 264}, - [5311] = {.lex_state = 165}, - [5312] = {.lex_state = 80}, - [5313] = {.lex_state = 80}, - [5314] = {.lex_state = 143}, - [5315] = {.lex_state = 80}, - [5316] = {.lex_state = 80}, - [5317] = {.lex_state = 199}, - [5318] = {.lex_state = 264}, - [5319] = {.lex_state = 0}, - [5320] = {.lex_state = 148}, - [5321] = {.lex_state = 264}, - [5322] = {.lex_state = 148}, - [5323] = {.lex_state = 143}, - [5324] = {.lex_state = 199}, - [5325] = {.lex_state = 143}, - [5326] = {.lex_state = 82}, - [5327] = {.lex_state = 143}, - [5328] = {.lex_state = 148}, - [5329] = {.lex_state = 148}, - [5330] = {.lex_state = 148}, - [5331] = {.lex_state = 0}, - [5332] = {.lex_state = 80}, - [5333] = {.lex_state = 148}, - [5334] = {.lex_state = 148}, - [5335] = {.lex_state = 148}, - [5336] = {.lex_state = 143}, - [5337] = {.lex_state = 80}, - [5338] = {.lex_state = 199}, - [5339] = {.lex_state = 143}, - [5340] = {.lex_state = 167}, - [5341] = {.lex_state = 82}, - [5342] = {.lex_state = 0}, - [5343] = {.lex_state = 148}, - [5344] = {.lex_state = 199}, - [5345] = {.lex_state = 264}, - [5346] = {.lex_state = 148}, - [5347] = {.lex_state = 264}, - [5348] = {.lex_state = 148}, - [5349] = {.lex_state = 264}, - [5350] = {.lex_state = 199}, - [5351] = {.lex_state = 165}, - [5352] = {.lex_state = 148}, - [5353] = {.lex_state = 264}, - [5354] = {.lex_state = 148}, - [5355] = {.lex_state = 148}, - [5356] = {.lex_state = 143}, - [5357] = {.lex_state = 80}, - [5358] = {.lex_state = 0}, - [5359] = {.lex_state = 165}, - [5360] = {.lex_state = 0}, - [5361] = {.lex_state = 264}, - [5362] = {.lex_state = 148}, - [5363] = {.lex_state = 143}, - [5364] = {.lex_state = 264}, - [5365] = {.lex_state = 148}, - [5366] = {.lex_state = 264}, - [5367] = {.lex_state = 165}, - [5368] = {.lex_state = 0}, + [4958] = {.lex_state = 176}, + [4959] = {.lex_state = 211}, + [4960] = {.lex_state = 197}, + [4961] = {.lex_state = 91}, + [4962] = {.lex_state = 211}, + [4963] = {.lex_state = 211}, + [4964] = {.lex_state = 176}, + [4965] = {.lex_state = 192}, + [4966] = {.lex_state = 156}, + [4967] = {.lex_state = 197}, + [4968] = {.lex_state = 176}, + [4969] = {.lex_state = 167}, + [4970] = {.lex_state = 167}, + [4971] = {.lex_state = 156}, + [4972] = {.lex_state = 176}, + [4973] = {.lex_state = 167}, + [4974] = {.lex_state = 176}, + [4975] = {.lex_state = 211}, + [4976] = {.lex_state = 156}, + [4977] = {.lex_state = 211}, + [4978] = {.lex_state = 156}, + [4979] = {.lex_state = 211}, + [4980] = {.lex_state = 156}, + [4981] = {.lex_state = 156}, + [4982] = {.lex_state = 156}, + [4983] = {.lex_state = 176}, + [4984] = {.lex_state = 167}, + [4985] = {.lex_state = 176}, + [4986] = {.lex_state = 176}, + [4987] = {.lex_state = 167}, + [4988] = {.lex_state = 167}, + [4989] = {.lex_state = 193}, + [4990] = {.lex_state = 176}, + [4991] = {.lex_state = 211}, + [4992] = {.lex_state = 176}, + [4993] = {.lex_state = 156}, + [4994] = {.lex_state = 176}, + [4995] = {.lex_state = 176}, + [4996] = {.lex_state = 156}, + [4997] = {.lex_state = 176}, + [4998] = {.lex_state = 212}, + [4999] = {.lex_state = 176}, + [5000] = {.lex_state = 176}, + [5001] = {.lex_state = 156}, + [5002] = {.lex_state = 176}, + [5003] = {.lex_state = 176}, + [5004] = {.lex_state = 176}, + [5005] = {.lex_state = 212}, + [5006] = {.lex_state = 176}, + [5007] = {.lex_state = 193}, + [5008] = {.lex_state = 156}, + [5009] = {.lex_state = 176}, + [5010] = {.lex_state = 156}, + [5011] = {.lex_state = 156}, + [5012] = {.lex_state = 176}, + [5013] = {.lex_state = 167}, + [5014] = {.lex_state = 176}, + [5015] = {.lex_state = 213}, + [5016] = {.lex_state = 176}, + [5017] = {.lex_state = 197}, + [5018] = {.lex_state = 156}, + [5019] = {.lex_state = 176}, + [5020] = {.lex_state = 176}, + [5021] = {.lex_state = 176}, + [5022] = {.lex_state = 176}, + [5023] = {.lex_state = 167}, + [5024] = {.lex_state = 211}, + [5025] = {.lex_state = 176}, + [5026] = {.lex_state = 176}, + [5027] = {.lex_state = 176}, + [5028] = {.lex_state = 176}, + [5029] = {.lex_state = 156}, + [5030] = {.lex_state = 167}, + [5031] = {.lex_state = 176}, + [5032] = {.lex_state = 167}, + [5033] = {.lex_state = 176}, + [5034] = {.lex_state = 156}, + [5035] = {.lex_state = 211}, + [5036] = {.lex_state = 167}, + [5037] = {.lex_state = 156}, + [5038] = {.lex_state = 167}, + [5039] = {.lex_state = 156}, + [5040] = {.lex_state = 156}, + [5041] = {.lex_state = 156}, + [5042] = {.lex_state = 211}, + [5043] = {.lex_state = 156}, + [5044] = {.lex_state = 156}, + [5045] = {.lex_state = 211}, + [5046] = {.lex_state = 176}, + [5047] = {.lex_state = 167}, + [5048] = {.lex_state = 212}, + [5049] = {.lex_state = 176}, + [5050] = {.lex_state = 211}, + [5051] = {.lex_state = 176}, + [5052] = {.lex_state = 156}, + [5053] = {.lex_state = 167}, + [5054] = {.lex_state = 167}, + [5055] = {.lex_state = 211}, + [5056] = {.lex_state = 156}, + [5057] = {.lex_state = 167}, + [5058] = {.lex_state = 156}, + [5059] = {.lex_state = 176}, + [5060] = {.lex_state = 156}, + [5061] = {.lex_state = 156}, + [5062] = {.lex_state = 176}, + [5063] = {.lex_state = 156}, + [5064] = {.lex_state = 156}, + [5065] = {.lex_state = 156}, + [5066] = {.lex_state = 156}, + [5067] = {.lex_state = 211}, + [5068] = {.lex_state = 156}, + [5069] = {.lex_state = 167}, + [5070] = {.lex_state = 192}, + [5071] = {.lex_state = 156}, + [5072] = {.lex_state = 176}, + [5073] = {.lex_state = 156}, + [5074] = {.lex_state = 211}, + [5075] = {.lex_state = 176}, + [5076] = {.lex_state = 176}, + [5077] = {.lex_state = 211}, + [5078] = {.lex_state = 176}, + [5079] = {.lex_state = 156}, + [5080] = {.lex_state = 176}, + [5081] = {.lex_state = 176}, + [5082] = {.lex_state = 212}, + [5083] = {.lex_state = 176}, + [5084] = {.lex_state = 176}, + [5085] = {.lex_state = 167}, + [5086] = {.lex_state = 156}, + [5087] = {.lex_state = 176}, + [5088] = {.lex_state = 192}, + [5089] = {.lex_state = 167}, + [5090] = {.lex_state = 167}, + [5091] = {.lex_state = 176}, + [5092] = {.lex_state = 176}, + [5093] = {.lex_state = 176}, + [5094] = {.lex_state = 156}, + [5095] = {.lex_state = 91}, + [5096] = {.lex_state = 91}, + [5097] = {.lex_state = 212}, + [5098] = {.lex_state = 176}, + [5099] = {.lex_state = 212}, + [5100] = {.lex_state = 176}, + [5101] = {.lex_state = 91}, + [5102] = {.lex_state = 91}, + [5103] = {.lex_state = 91}, + [5104] = {.lex_state = 192}, + [5105] = {.lex_state = 91}, + [5106] = {.lex_state = 91}, + [5107] = {.lex_state = 176}, + [5108] = {.lex_state = 212}, + [5109] = {.lex_state = 91}, + [5110] = {.lex_state = 91}, + [5111] = {.lex_state = 91}, + [5112] = {.lex_state = 91}, + [5113] = {.lex_state = 167}, + [5114] = {.lex_state = 212}, + [5115] = {.lex_state = 212}, + [5116] = {.lex_state = 91}, + [5117] = {.lex_state = 91}, + [5118] = {.lex_state = 91}, + [5119] = {.lex_state = 91}, + [5120] = {.lex_state = 91}, + [5121] = {.lex_state = 91}, + [5122] = {.lex_state = 91}, + [5123] = {.lex_state = 91}, + [5124] = {.lex_state = 212}, + [5125] = {.lex_state = 193}, + [5126] = {.lex_state = 91}, + [5127] = {.lex_state = 212}, + [5128] = {.lex_state = 91}, + [5129] = {.lex_state = 91}, + [5130] = {.lex_state = 167}, + [5131] = {.lex_state = 91}, + [5132] = {.lex_state = 91}, + [5133] = {.lex_state = 176}, + [5134] = {.lex_state = 212}, + [5135] = {.lex_state = 91}, + [5136] = {.lex_state = 91}, + [5137] = {.lex_state = 91}, + [5138] = {.lex_state = 91}, + [5139] = {.lex_state = 91}, + [5140] = {.lex_state = 91}, + [5141] = {.lex_state = 212}, + [5142] = {.lex_state = 212}, + [5143] = {.lex_state = 176}, + [5144] = {.lex_state = 179}, + [5145] = {.lex_state = 192}, + [5146] = {.lex_state = 176}, + [5147] = {.lex_state = 179}, + [5148] = {.lex_state = 179}, + [5149] = {.lex_state = 179}, + [5150] = {.lex_state = 179}, + [5151] = {.lex_state = 176}, + [5152] = {.lex_state = 179}, + [5153] = {.lex_state = 212}, + [5154] = {.lex_state = 193}, + [5155] = {.lex_state = 176}, + [5156] = {.lex_state = 176}, + [5157] = {.lex_state = 211}, + [5158] = {.lex_state = 211}, + [5159] = {.lex_state = 192}, + [5160] = {.lex_state = 176}, + [5161] = {.lex_state = 211}, + [5162] = {.lex_state = 154}, + [5163] = {.lex_state = 193}, + [5164] = {.lex_state = 211}, + [5165] = {.lex_state = 211}, + [5166] = {.lex_state = 211}, + [5167] = {.lex_state = 211}, + [5168] = {.lex_state = 176}, + [5169] = {.lex_state = 192}, + [5170] = {.lex_state = 176}, + [5171] = {.lex_state = 176}, + [5172] = {.lex_state = 211}, + [5173] = {.lex_state = 211}, + [5174] = {.lex_state = 193}, + [5175] = {.lex_state = 211}, + [5176] = {.lex_state = 211}, + [5177] = {.lex_state = 176}, + [5178] = {.lex_state = 211}, + [5179] = {.lex_state = 154}, + [5180] = {.lex_state = 211}, + [5181] = {.lex_state = 211}, + [5182] = {.lex_state = 193}, + [5183] = {.lex_state = 154}, + [5184] = {.lex_state = 192}, + [5185] = {.lex_state = 192}, + [5186] = {.lex_state = 176}, + [5187] = {.lex_state = 154}, + [5188] = {.lex_state = 154}, + [5189] = {.lex_state = 193}, + [5190] = {.lex_state = 211}, + [5191] = {.lex_state = 154}, + [5192] = {.lex_state = 176}, + [5193] = {.lex_state = 193}, + [5194] = {.lex_state = 154}, + [5195] = {.lex_state = 176}, + [5196] = {.lex_state = 154}, + [5197] = {.lex_state = 176}, + [5198] = {.lex_state = 176}, + [5199] = {.lex_state = 176}, + [5200] = {.lex_state = 192}, + [5201] = {.lex_state = 211}, + [5202] = {.lex_state = 176}, + [5203] = {.lex_state = 211}, + [5204] = {.lex_state = 154}, + [5205] = {.lex_state = 213}, + [5206] = {.lex_state = 192}, + [5207] = {.lex_state = 176}, + [5208] = {.lex_state = 154}, + [5209] = {.lex_state = 211}, + [5210] = {.lex_state = 176}, + [5211] = {.lex_state = 176}, + [5212] = {.lex_state = 176}, + [5213] = {.lex_state = 213}, + [5214] = {.lex_state = 193}, + [5215] = {.lex_state = 193}, + [5216] = {.lex_state = 211}, + [5217] = {.lex_state = 193}, + [5218] = {.lex_state = 193}, + [5219] = {.lex_state = 197}, + [5220] = {.lex_state = 176}, + [5221] = {.lex_state = 211}, + [5222] = {.lex_state = 214}, + [5223] = {.lex_state = 212}, + [5224] = {.lex_state = 211}, + [5225] = {.lex_state = 211}, + [5226] = {.lex_state = 212}, + [5227] = {.lex_state = 212}, + [5228] = {.lex_state = 159}, + [5229] = {.lex_state = 214}, + [5230] = {.lex_state = 212}, + [5231] = {.lex_state = 212}, + [5232] = {.lex_state = 176}, + [5233] = {.lex_state = 211}, + [5234] = {.lex_state = 212}, + [5235] = {.lex_state = 212}, + [5236] = {.lex_state = 211}, + [5237] = {.lex_state = 211}, + [5238] = {.lex_state = 211}, + [5239] = {.lex_state = 211}, + [5240] = {.lex_state = 211}, + [5241] = {.lex_state = 212}, + [5242] = {.lex_state = 159}, + [5243] = {.lex_state = 159}, + [5244] = {.lex_state = 212}, + [5245] = {.lex_state = 212}, + [5246] = {.lex_state = 211}, + [5247] = {.lex_state = 211}, + [5248] = {.lex_state = 212}, + [5249] = {.lex_state = 159}, + [5250] = {.lex_state = 212}, + [5251] = {.lex_state = 212}, + [5252] = {.lex_state = 212}, + [5253] = {.lex_state = 211}, + [5254] = {.lex_state = 214}, + [5255] = {.lex_state = 159}, + [5256] = {.lex_state = 176}, + [5257] = {.lex_state = 214}, + [5258] = {.lex_state = 212}, + [5259] = {.lex_state = 212}, + [5260] = {.lex_state = 212}, + [5261] = {.lex_state = 214}, + [5262] = {.lex_state = 214}, + [5263] = {.lex_state = 176}, + [5264] = {.lex_state = 212}, + [5265] = {.lex_state = 176}, + [5266] = {.lex_state = 212}, + [5267] = {.lex_state = 212}, + [5268] = {.lex_state = 176}, + [5269] = {.lex_state = 212}, + [5270] = {.lex_state = 176}, + [5271] = {.lex_state = 212}, + [5272] = {.lex_state = 176}, + [5273] = {.lex_state = 176}, + [5274] = {.lex_state = 176}, + [5275] = {.lex_state = 159}, + [5276] = {.lex_state = 211}, + [5277] = {.lex_state = 214}, + [5278] = {.lex_state = 212}, + [5279] = {.lex_state = 212}, + [5280] = {.lex_state = 212}, + [5281] = {.lex_state = 159}, + [5282] = {.lex_state = 212}, + [5283] = {.lex_state = 211}, + [5284] = {.lex_state = 212}, + [5285] = {.lex_state = 159}, + [5286] = {.lex_state = 176}, + [5287] = {.lex_state = 212}, + [5288] = {.lex_state = 212}, + [5289] = {.lex_state = 176}, + [5290] = {.lex_state = 214}, + [5291] = {.lex_state = 211}, + [5292] = {.lex_state = 211}, + [5293] = {.lex_state = 176}, + [5294] = {.lex_state = 159}, + [5295] = {.lex_state = 212}, + [5296] = {.lex_state = 159}, + [5297] = {.lex_state = 212}, + [5298] = {.lex_state = 159}, + [5299] = {.lex_state = 159}, + [5300] = {.lex_state = 212}, + [5301] = {.lex_state = 212}, + [5302] = {.lex_state = 176}, + [5303] = {.lex_state = 176}, + [5304] = {.lex_state = 176}, + [5305] = {.lex_state = 154}, + [5306] = {.lex_state = 212}, + [5307] = {.lex_state = 176}, + [5308] = {.lex_state = 154}, + [5309] = {.lex_state = 154}, + [5310] = {.lex_state = 212}, + [5311] = {.lex_state = 176}, + [5312] = {.lex_state = 176}, + [5313] = {.lex_state = 176}, + [5314] = {.lex_state = 212}, + [5315] = {.lex_state = 176}, + [5316] = {.lex_state = 176}, + [5317] = {.lex_state = 212}, + [5318] = {.lex_state = 176}, + [5319] = {.lex_state = 215}, + [5320] = {.lex_state = 211}, + [5321] = {.lex_state = 211}, + [5322] = {.lex_state = 211}, + [5323] = {.lex_state = 211}, + [5324] = {.lex_state = 215}, + [5325] = {.lex_state = 192}, + [5326] = {.lex_state = 211}, + [5327] = {.lex_state = 215}, + [5328] = {.lex_state = 215}, + [5329] = {.lex_state = 215}, + [5330] = {.lex_state = 176}, + [5331] = {.lex_state = 154}, + [5332] = {.lex_state = 154}, + [5333] = {.lex_state = 211}, + [5334] = {.lex_state = 176}, + [5335] = {.lex_state = 211}, + [5336] = {.lex_state = 176}, + [5337] = {.lex_state = 154}, + [5338] = {.lex_state = 215}, + [5339] = {.lex_state = 176}, + [5340] = {.lex_state = 176}, + [5341] = {.lex_state = 212}, + [5342] = {.lex_state = 176}, + [5343] = {.lex_state = 154}, + [5344] = {.lex_state = 212}, + [5345] = {.lex_state = 176}, + [5346] = {.lex_state = 154}, + [5347] = {.lex_state = 154}, + [5348] = {.lex_state = 215}, + [5349] = {.lex_state = 212}, + [5350] = {.lex_state = 176}, + [5351] = {.lex_state = 176}, + [5352] = {.lex_state = 176}, + [5353] = {.lex_state = 154}, + [5354] = {.lex_state = 176}, + [5355] = {.lex_state = 283}, + [5356] = {.lex_state = 179}, + [5357] = {.lex_state = 283}, + [5358] = {.lex_state = 212}, + [5359] = {.lex_state = 179}, + [5360] = {.lex_state = 212}, + [5361] = {.lex_state = 176}, + [5362] = {.lex_state = 214}, + [5363] = {.lex_state = 176}, + [5364] = {.lex_state = 179}, + [5365] = {.lex_state = 214}, + [5366] = {.lex_state = 179}, + [5367] = {.lex_state = 212}, + [5368] = {.lex_state = 176}, [5369] = {.lex_state = 0}, [5370] = {.lex_state = 0}, - [5371] = {.lex_state = 134}, - [5372] = {.lex_state = 165}, - [5373] = {.lex_state = 0}, - [5374] = {.lex_state = 0}, - [5375] = {.lex_state = 0}, + [5371] = {.lex_state = 179}, + [5372] = {.lex_state = 181}, + [5373] = {.lex_state = 214}, + [5374] = {.lex_state = 176}, + [5375] = {.lex_state = 214}, [5376] = {.lex_state = 0}, - [5377] = {.lex_state = 0}, - [5378] = {.lex_state = 0}, - [5379] = {.lex_state = 165}, - [5380] = {.lex_state = 0}, - [5381] = {.lex_state = 0}, - [5382] = {.lex_state = 165}, - [5383] = {.lex_state = 0}, - [5384] = {.lex_state = 165}, - [5385] = {.lex_state = 0}, - [5386] = {.lex_state = 0}, - [5387] = {.lex_state = 0}, - [5388] = {.lex_state = 165}, - [5389] = {.lex_state = 0}, - [5390] = {.lex_state = 0}, - [5391] = {.lex_state = 264}, - [5392] = {.lex_state = 0}, - [5393] = {.lex_state = 0}, - [5394] = {.lex_state = 0}, - [5395] = {.lex_state = 264}, - [5396] = {.lex_state = 0}, - [5397] = {.lex_state = 0}, - [5398] = {.lex_state = 0}, - [5399] = {.lex_state = 165}, - [5400] = {.lex_state = 0}, - [5401] = {.lex_state = 0}, + [5377] = {.lex_state = 212}, + [5378] = {.lex_state = 212}, + [5379] = {.lex_state = 212}, + [5380] = {.lex_state = 212}, + [5381] = {.lex_state = 211}, + [5382] = {.lex_state = 0}, + [5383] = {.lex_state = 176}, + [5384] = {.lex_state = 214}, + [5385] = {.lex_state = 283}, + [5386] = {.lex_state = 179}, + [5387] = {.lex_state = 212}, + [5388] = {.lex_state = 212}, + [5389] = {.lex_state = 176}, + [5390] = {.lex_state = 212}, + [5391] = {.lex_state = 214}, + [5392] = {.lex_state = 214}, + [5393] = {.lex_state = 179}, + [5394] = {.lex_state = 214}, + [5395] = {.lex_state = 176}, + [5396] = {.lex_state = 214}, + [5397] = {.lex_state = 214}, + [5398] = {.lex_state = 283}, + [5399] = {.lex_state = 212}, + [5400] = {.lex_state = 212}, + [5401] = {.lex_state = 212}, [5402] = {.lex_state = 0}, - [5403] = {.lex_state = 0}, - [5404] = {.lex_state = 165}, + [5403] = {.lex_state = 283}, + [5404] = {.lex_state = 179}, [5405] = {.lex_state = 0}, - [5406] = {.lex_state = 0}, - [5407] = {.lex_state = 0}, - [5408] = {.lex_state = 0}, - [5409] = {.lex_state = 165}, - [5410] = {.lex_state = 165}, - [5411] = {.lex_state = 0}, - [5412] = {.lex_state = 0}, - [5413] = {.lex_state = 0}, - [5414] = {.lex_state = 0}, - [5415] = {.lex_state = 165}, - [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 = 165}, - [5424] = {.lex_state = 0}, - [5425] = {.lex_state = 0}, - [5426] = {.lex_state = 0}, - [5427] = {.lex_state = 0}, - [5428] = {.lex_state = 264}, - [5429] = {.lex_state = 264}, - [5430] = {.lex_state = 165}, - [5431] = {.lex_state = 165}, - [5432] = {.lex_state = 0}, - [5433] = {.lex_state = 167}, - [5434] = {.lex_state = 0}, - [5435] = {.lex_state = 165}, - [5436] = {.lex_state = 0}, - [5437] = {.lex_state = 0}, - [5438] = {.lex_state = 0}, - [5439] = {.lex_state = 0}, - [5440] = {.lex_state = 0}, - [5441] = {.lex_state = 165}, - [5442] = {.lex_state = 0}, - [5443] = {.lex_state = 0}, - [5444] = {.lex_state = 0}, - [5445] = {.lex_state = 0}, - [5446] = {.lex_state = 0}, - [5447] = {.lex_state = 165}, - [5448] = {.lex_state = 0}, - [5449] = {.lex_state = 165}, - [5450] = {.lex_state = 0}, - [5451] = {.lex_state = 0}, - [5452] = {.lex_state = 0}, - [5453] = {.lex_state = 165}, + [5406] = {.lex_state = 211}, + [5407] = {.lex_state = 214}, + [5408] = {.lex_state = 212}, + [5409] = {.lex_state = 212}, + [5410] = {.lex_state = 214}, + [5411] = {.lex_state = 176}, + [5412] = {.lex_state = 212}, + [5413] = {.lex_state = 214}, + [5414] = {.lex_state = 212}, + [5415] = {.lex_state = 211}, + [5416] = {.lex_state = 179}, + [5417] = {.lex_state = 214}, + [5418] = {.lex_state = 179}, + [5419] = {.lex_state = 212}, + [5420] = {.lex_state = 214}, + [5421] = {.lex_state = 211}, + [5422] = {.lex_state = 212}, + [5423] = {.lex_state = 211}, + [5424] = {.lex_state = 176}, + [5425] = {.lex_state = 176}, + [5426] = {.lex_state = 212}, + [5427] = {.lex_state = 181}, + [5428] = {.lex_state = 176}, + [5429] = {.lex_state = 176}, + [5430] = {.lex_state = 214}, + [5431] = {.lex_state = 212}, + [5432] = {.lex_state = 214}, + [5433] = {.lex_state = 176}, + [5434] = {.lex_state = 179}, + [5435] = {.lex_state = 179}, + [5436] = {.lex_state = 214}, + [5437] = {.lex_state = 179}, + [5438] = {.lex_state = 212}, + [5439] = {.lex_state = 176}, + [5440] = {.lex_state = 211}, + [5441] = {.lex_state = 283}, + [5442] = {.lex_state = 176}, + [5443] = {.lex_state = 176}, + [5444] = {.lex_state = 212}, + [5445] = {.lex_state = 211}, + [5446] = {.lex_state = 179}, + [5447] = {.lex_state = 212}, + [5448] = {.lex_state = 212}, + [5449] = {.lex_state = 176}, + [5450] = {.lex_state = 212}, + [5451] = {.lex_state = 176}, + [5452] = {.lex_state = 214}, + [5453] = {.lex_state = 179}, [5454] = {.lex_state = 0}, - [5455] = {.lex_state = 264}, + [5455] = {.lex_state = 176}, [5456] = {.lex_state = 0}, - [5457] = {.lex_state = 0}, + [5457] = {.lex_state = 214}, [5458] = {.lex_state = 0}, - [5459] = {.lex_state = 165}, - [5460] = {.lex_state = 165}, - [5461] = {.lex_state = 264}, - [5462] = {.lex_state = 264}, - [5463] = {.lex_state = 0}, - [5464] = {.lex_state = 0}, - [5465] = {.lex_state = 0}, - [5466] = {.lex_state = 0}, - [5467] = {.lex_state = 0}, - [5468] = {.lex_state = 0}, - [5469] = {.lex_state = 165}, - [5470] = {.lex_state = 143}, - [5471] = {.lex_state = 143}, - [5472] = {.lex_state = 0}, + [5459] = {.lex_state = 179}, + [5460] = {.lex_state = 212}, + [5461] = {.lex_state = 214}, + [5462] = {.lex_state = 179}, + [5463] = {.lex_state = 283}, + [5464] = {.lex_state = 212}, + [5465] = {.lex_state = 179}, + [5466] = {.lex_state = 213}, + [5467] = {.lex_state = 212}, + [5468] = {.lex_state = 181}, + [5469] = {.lex_state = 212}, + [5470] = {.lex_state = 212}, + [5471] = {.lex_state = 212}, + [5472] = {.lex_state = 181}, [5473] = {.lex_state = 0}, - [5474] = {.lex_state = 0}, + [5474] = {.lex_state = 181}, [5475] = {.lex_state = 0}, - [5476] = {.lex_state = 165}, - [5477] = {.lex_state = 165}, - [5478] = {.lex_state = 0}, - [5479] = {.lex_state = 0}, + [5476] = {.lex_state = 181}, + [5477] = {.lex_state = 0}, + [5478] = {.lex_state = 212}, + [5479] = {.lex_state = 212}, [5480] = {.lex_state = 0}, - [5481] = {.lex_state = 0}, - [5482] = {.lex_state = 0}, - [5483] = {.lex_state = 75}, - [5484] = {.lex_state = 0}, + [5481] = {.lex_state = 212}, + [5482] = {.lex_state = 154}, + [5483] = {.lex_state = 0}, + [5484] = {.lex_state = 181}, [5485] = {.lex_state = 0}, - [5486] = {.lex_state = 0}, + [5486] = {.lex_state = 212}, [5487] = {.lex_state = 0}, - [5488] = {.lex_state = 0}, - [5489] = {.lex_state = 165}, + [5488] = {.lex_state = 212}, + [5489] = {.lex_state = 212}, [5490] = {.lex_state = 0}, [5491] = {.lex_state = 0}, - [5492] = {.lex_state = 0}, - [5493] = {.lex_state = 165}, + [5492] = {.lex_state = 176}, + [5493] = {.lex_state = 0}, [5494] = {.lex_state = 0}, - [5495] = {.lex_state = 0}, + [5495] = {.lex_state = 212}, [5496] = {.lex_state = 0}, [5497] = {.lex_state = 0}, - [5498] = {.lex_state = 0}, - [5499] = {.lex_state = 0}, - [5500] = {.lex_state = 0}, + [5498] = {.lex_state = 212}, + [5499] = {.lex_state = 176}, + [5500] = {.lex_state = 212}, [5501] = {.lex_state = 0}, - [5502] = {.lex_state = 165}, - [5503] = {.lex_state = 0}, - [5504] = {.lex_state = 0}, - [5505] = {.lex_state = 165}, - [5506] = {.lex_state = 0}, - [5507] = {.lex_state = 165}, + [5502] = {.lex_state = 0}, + [5503] = {.lex_state = 176}, + [5504] = {.lex_state = 212}, + [5505] = {.lex_state = 176}, + [5506] = {.lex_state = 176}, + [5507] = {.lex_state = 212}, [5508] = {.lex_state = 0}, - [5509] = {.lex_state = 0}, + [5509] = {.lex_state = 176}, [5510] = {.lex_state = 0}, - [5511] = {.lex_state = 0}, - [5512] = {.lex_state = 264}, - [5513] = {.lex_state = 264}, - [5514] = {.lex_state = 0}, - [5515] = {.lex_state = 0}, - [5516] = {.lex_state = 165}, - [5517] = {.lex_state = 0}, - [5518] = {.lex_state = 0}, + [5511] = {.lex_state = 283}, + [5512] = {.lex_state = 0}, + [5513] = {.lex_state = 0}, + [5514] = {.lex_state = 213}, + [5515] = {.lex_state = 213}, + [5516] = {.lex_state = 213}, + [5517] = {.lex_state = 213}, + [5518] = {.lex_state = 213}, [5519] = {.lex_state = 0}, - [5520] = {.lex_state = 165}, - [5521] = {.lex_state = 165}, - [5522] = {.lex_state = 0}, - [5523] = {.lex_state = 0}, - [5524] = {.lex_state = 165}, - [5525] = {.lex_state = 165}, - [5526] = {.lex_state = 165}, - [5527] = {.lex_state = 165}, - [5528] = {.lex_state = 0}, - [5529] = {.lex_state = 0}, - [5530] = {.lex_state = 165}, - [5531] = {.lex_state = 165}, - [5532] = {.lex_state = 0}, - [5533] = {.lex_state = 165}, - [5534] = {.lex_state = 75}, - [5535] = {.lex_state = 75}, - [5536] = {.lex_state = 165}, - [5537] = {.lex_state = 0}, - [5538] = {.lex_state = 165}, - [5539] = {.lex_state = 0}, - [5540] = {.lex_state = 0}, - [5541] = {.lex_state = 0}, - [5542] = {.lex_state = 75}, - [5543] = {.lex_state = 0}, - [5544] = {.lex_state = 0}, - [5545] = {.lex_state = 0}, - [5546] = {.lex_state = 0}, - [5547] = {.lex_state = 0}, - [5548] = {.lex_state = 0}, - [5549] = {.lex_state = 0}, - [5550] = {.lex_state = 165}, - [5551] = {.lex_state = 0}, - [5552] = {.lex_state = 0}, - [5553] = {.lex_state = 0}, - [5554] = {.lex_state = 0}, - [5555] = {.lex_state = 0}, - [5556] = {.lex_state = 165}, - [5557] = {.lex_state = 165}, - [5558] = {.lex_state = 0}, - [5559] = {.lex_state = 0}, - [5560] = {.lex_state = 264}, - [5561] = {.lex_state = 0}, - [5562] = {.lex_state = 0}, - [5563] = {.lex_state = 165}, - [5564] = {.lex_state = 165}, - [5565] = {.lex_state = 0}, - [5566] = {.lex_state = 165}, - [5567] = {.lex_state = 0}, - [5568] = {.lex_state = 0}, - [5569] = {.lex_state = 0}, - [5570] = {.lex_state = 0}, - [5571] = {.lex_state = 0}, - [5572] = {.lex_state = 165}, - [5573] = {.lex_state = 0}, - [5574] = {.lex_state = 0}, - [5575] = {.lex_state = 0}, - [5576] = {.lex_state = 0}, - [5577] = {.lex_state = 0}, - [5578] = {.lex_state = 0}, - [5579] = {.lex_state = 0}, - [5580] = {.lex_state = 0}, - [5581] = {.lex_state = 0}, - [5582] = {.lex_state = 0}, - [5583] = {.lex_state = 165}, - [5584] = {.lex_state = 0}, - [5585] = {.lex_state = 165}, - [5586] = {.lex_state = 0}, - [5587] = {.lex_state = 0}, - [5588] = {.lex_state = 165}, - [5589] = {.lex_state = 0}, - [5590] = {.lex_state = 0}, - [5591] = {.lex_state = 0}, - [5592] = {.lex_state = 0}, - [5593] = {.lex_state = 165}, - [5594] = {.lex_state = 165}, - [5595] = {.lex_state = 165}, - [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 = 165}, - [5603] = {.lex_state = 0}, - [5604] = {.lex_state = 165}, - [5605] = {.lex_state = 165}, - [5606] = {.lex_state = 0}, - [5607] = {.lex_state = 0}, - [5608] = {.lex_state = 0}, - [5609] = {.lex_state = 0}, - [5610] = {.lex_state = 0}, - [5611] = {.lex_state = 165}, - [5612] = {.lex_state = 0}, - [5613] = {.lex_state = 0}, - [5614] = {.lex_state = 0}, - [5615] = {.lex_state = 0}, - [5616] = {.lex_state = 0}, - [5617] = {.lex_state = 0}, - [5618] = {.lex_state = 0}, - [5619] = {.lex_state = 165}, - [5620] = {.lex_state = 0}, - [5621] = {.lex_state = 0}, - [5622] = {.lex_state = 165}, - [5623] = {.lex_state = 0}, - [5624] = {.lex_state = 0}, - [5625] = {.lex_state = 264}, - [5626] = {.lex_state = 165}, - [5627] = {.lex_state = 0}, - [5628] = {.lex_state = 0}, - [5629] = {.lex_state = 0}, - [5630] = {.lex_state = 0}, - [5631] = {.lex_state = 0}, - [5632] = {.lex_state = 0}, - [5633] = {.lex_state = 0}, - [5634] = {.lex_state = 0}, - [5635] = {.lex_state = 0}, - [5636] = {.lex_state = 0}, - [5637] = {.lex_state = 0}, - [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 = 264}, - [5650] = {.lex_state = 264}, - [5651] = {.lex_state = 0}, - [5652] = {.lex_state = 165}, - [5653] = {.lex_state = 264}, - [5654] = {.lex_state = 0}, - [5655] = {.lex_state = 165}, - [5656] = {.lex_state = 165}, - [5657] = {.lex_state = 0}, - [5658] = {.lex_state = 165}, - [5659] = {.lex_state = 0}, - [5660] = {.lex_state = 0}, - [5661] = {.lex_state = 0}, - [5662] = {.lex_state = 0}, - [5663] = {.lex_state = 0}, - [5664] = {.lex_state = 165}, - [5665] = {.lex_state = 0}, - [5666] = {.lex_state = 0}, - [5667] = {.lex_state = 0}, - [5668] = {.lex_state = 165}, - [5669] = {.lex_state = 0}, - [5670] = {.lex_state = 0}, - [5671] = {.lex_state = 165}, - [5672] = {.lex_state = 264}, - [5673] = {.lex_state = 264}, - [5674] = {.lex_state = 264}, - [5675] = {.lex_state = 264}, - [5676] = {.lex_state = 264}, - [5677] = {.lex_state = 264}, - [5678] = {.lex_state = 0}, - [5679] = {.lex_state = 264}, - [5680] = {.lex_state = 165}, - [5681] = {.lex_state = 264}, - [5682] = {.lex_state = 264}, - [5683] = {.lex_state = 264, .external_lex_state = 2}, - [5684] = {.lex_state = 264}, - [5685] = {.lex_state = 0}, - [5686] = {.lex_state = 165}, - [5687] = {.lex_state = 0}, - [5688] = {.lex_state = 264}, - [5689] = {.lex_state = 0}, - [5690] = {.lex_state = 0}, - [5691] = {.lex_state = 0}, - [5692] = {.lex_state = 264}, - [5693] = {.lex_state = 0}, - [5694] = {.lex_state = 0}, - [5695] = {.lex_state = 264}, - [5696] = {.lex_state = 0}, - [5697] = {.lex_state = 264}, - [5698] = {.lex_state = 264}, - [5699] = {.lex_state = 0}, - [5700] = {.lex_state = 0}, - [5701] = {.lex_state = 264}, - [5702] = {.lex_state = 0}, - [5703] = {.lex_state = 0}, - [5704] = {.lex_state = 0}, - [5705] = {.lex_state = 165}, - [5706] = {.lex_state = 264}, - [5707] = {.lex_state = 0}, - [5708] = {.lex_state = 0}, - [5709] = {.lex_state = 0}, - [5710] = {.lex_state = 0}, - [5711] = {.lex_state = 84}, - [5712] = {.lex_state = 264}, - [5713] = {.lex_state = 264}, - [5714] = {.lex_state = 264}, - [5715] = {.lex_state = 264}, - [5716] = {.lex_state = 0}, - [5717] = {.lex_state = 0}, - [5718] = {.lex_state = 0}, - [5719] = {.lex_state = 0}, - [5720] = {.lex_state = 0}, - [5721] = {.lex_state = 264}, - [5722] = {.lex_state = 165}, - [5723] = {.lex_state = 0}, - [5724] = {.lex_state = 0}, - [5725] = {.lex_state = 264}, - [5726] = {.lex_state = 264}, - [5727] = {.lex_state = 264}, - [5728] = {.lex_state = 84}, - [5729] = {.lex_state = 84}, - [5730] = {.lex_state = 264}, - [5731] = {.lex_state = 0}, - [5732] = {.lex_state = 165}, - [5733] = {.lex_state = 264}, - [5734] = {.lex_state = 264}, - [5735] = {.lex_state = 0}, - [5736] = {.lex_state = 84}, - [5737] = {.lex_state = 0}, - [5738] = {.lex_state = 165}, - [5739] = {.lex_state = 0}, - [5740] = {.lex_state = 165}, - [5741] = {.lex_state = 0}, - [5742] = {.lex_state = 0}, - [5743] = {.lex_state = 0}, - [5744] = {.lex_state = 165}, - [5745] = {.lex_state = 0}, - [5746] = {.lex_state = 0}, - [5747] = {.lex_state = 0}, - [5748] = {.lex_state = 264}, - [5749] = {.lex_state = 0}, - [5750] = {.lex_state = 0}, - [5751] = {.lex_state = 264}, - [5752] = {.lex_state = 0}, - [5753] = {.lex_state = 0}, - [5754] = {.lex_state = 264}, - [5755] = {.lex_state = 264}, - [5756] = {.lex_state = 264}, - [5757] = {.lex_state = 0}, - [5758] = {.lex_state = 264}, - [5759] = {.lex_state = 0}, - [5760] = {.lex_state = 264}, - [5761] = {.lex_state = 83}, - [5762] = {.lex_state = 0}, - [5763] = {.lex_state = 0}, - [5764] = {.lex_state = 0}, - [5765] = {.lex_state = 165}, - [5766] = {.lex_state = 0}, - [5767] = {.lex_state = 165}, - [5768] = {.lex_state = 0}, - [5769] = {.lex_state = 165}, - [5770] = {.lex_state = 83}, - [5771] = {.lex_state = 0}, - [5772] = {.lex_state = 0}, - [5773] = {.lex_state = 0}, - [5774] = {.lex_state = 0}, - [5775] = {.lex_state = 84}, - [5776] = {.lex_state = 0}, - [5777] = {.lex_state = 0}, - [5778] = {.lex_state = 0}, - [5779] = {.lex_state = 0}, - [5780] = {.lex_state = 0}, - [5781] = {.lex_state = 0}, - [5782] = {.lex_state = 264}, - [5783] = {.lex_state = 165}, - [5784] = {.lex_state = 165}, - [5785] = {.lex_state = 83}, - [5786] = {.lex_state = 0}, - [5787] = {.lex_state = 0}, - [5788] = {.lex_state = 264}, - [5789] = {.lex_state = 83}, - [5790] = {.lex_state = 264}, - [5791] = {.lex_state = 83}, - [5792] = {.lex_state = 0}, - [5793] = {.lex_state = 0}, - [5794] = {.lex_state = 0}, - [5795] = {.lex_state = 165}, - [5796] = {.lex_state = 165}, - [5797] = {.lex_state = 264}, - [5798] = {.lex_state = 264}, - [5799] = {.lex_state = 165}, - [5800] = {.lex_state = 84}, - [5801] = {.lex_state = 0}, - [5802] = {.lex_state = 264}, - [5803] = {.lex_state = 0}, - [5804] = {.lex_state = 0}, - [5805] = {.lex_state = 264}, - [5806] = {.lex_state = 83}, - [5807] = {.lex_state = 165}, - [5808] = {.lex_state = 165}, - [5809] = {.lex_state = 0}, - [5810] = {.lex_state = 264}, - [5811] = {.lex_state = 0}, - [5812] = {.lex_state = 0}, - [5813] = {.lex_state = 0}, - [5814] = {.lex_state = 0}, - [5815] = {.lex_state = 0}, - [5816] = {.lex_state = 264}, - [5817] = {.lex_state = 0}, - [5818] = {.lex_state = 0}, - [5819] = {.lex_state = 0}, - [5820] = {.lex_state = 0}, - [5821] = {.lex_state = 0}, - [5822] = {.lex_state = 0}, - [5823] = {.lex_state = 0}, - [5824] = {.lex_state = 0}, - [5825] = {.lex_state = 0}, - [5826] = {.lex_state = 0}, - [5827] = {.lex_state = 264}, - [5828] = {.lex_state = 84}, - [5829] = {.lex_state = 0}, - [5830] = {.lex_state = 165}, - [5831] = {.lex_state = 0}, - [5832] = {.lex_state = 0}, - [5833] = {.lex_state = 0}, - [5834] = {.lex_state = 0}, - [5835] = {.lex_state = 264}, - [5836] = {.lex_state = 83}, - [5837] = {.lex_state = 0}, - [5838] = {.lex_state = 0}, - [5839] = {.lex_state = 0}, - [5840] = {.lex_state = 165}, - [5841] = {.lex_state = 0}, - [5842] = {.lex_state = 0}, - [5843] = {.lex_state = 165}, - [5844] = {.lex_state = 0}, - [5845] = {.lex_state = 264}, - [5846] = {.lex_state = 264}, - [5847] = {.lex_state = 264}, - [5848] = {.lex_state = 0}, - [5849] = {.lex_state = 83}, - [5850] = {.lex_state = 0}, - [5851] = {.lex_state = 0}, - [5852] = {.lex_state = 0}, - [5853] = {.lex_state = 0}, - [5854] = {.lex_state = 0}, - [5855] = {.lex_state = 165}, - [5856] = {.lex_state = 0}, - [5857] = {.lex_state = 0}, - [5858] = {.lex_state = 264}, - [5859] = {.lex_state = 0}, - [5860] = {.lex_state = 0}, - [5861] = {.lex_state = 0}, - [5862] = {.lex_state = 0}, - [5863] = {.lex_state = 264}, - [5864] = {.lex_state = 0}, - [5865] = {.lex_state = 0}, - [5866] = {.lex_state = 0}, - [5867] = {.lex_state = 264}, - [5868] = {.lex_state = 0}, - [5869] = {.lex_state = 264}, - [5870] = {.lex_state = 0}, - [5871] = {.lex_state = 0}, - [5872] = {.lex_state = 0}, - [5873] = {.lex_state = 0}, - [5874] = {.lex_state = 0}, - [5875] = {.lex_state = 264}, - [5876] = {.lex_state = 83}, - [5877] = {.lex_state = 0}, - [5878] = {.lex_state = 0}, - [5879] = {.lex_state = 0}, - [5880] = {.lex_state = 165}, - [5881] = {.lex_state = 0}, - [5882] = {.lex_state = 0}, - [5883] = {.lex_state = 264}, - [5884] = {.lex_state = 0}, - [5885] = {.lex_state = 0}, - [5886] = {.lex_state = 0}, - [5887] = {.lex_state = 264}, - [5888] = {.lex_state = 0}, - [5889] = {.lex_state = 165}, - [5890] = {.lex_state = 0}, - [5891] = {.lex_state = 0}, - [5892] = {.lex_state = 0}, - [5893] = {.lex_state = 0}, - [5894] = {.lex_state = 264}, - [5895] = {.lex_state = 83}, - [5896] = {.lex_state = 0}, - [5897] = {.lex_state = 0}, - [5898] = {.lex_state = 0}, - [5899] = {.lex_state = 0}, - [5900] = {.lex_state = 0}, + [5520] = {.lex_state = 213}, + [5521] = {.lex_state = 212}, + [5522] = {.lex_state = 213}, + [5523] = {.lex_state = 213}, + [5524] = {.lex_state = 213}, + [5525] = {.lex_state = 213}, + [5526] = {.lex_state = 213}, + [5527] = {.lex_state = 212}, + [5528] = {.lex_state = 213}, + [5529] = {.lex_state = 213}, + [5530] = {.lex_state = 213}, + [5531] = {.lex_state = 212}, + [5532] = {.lex_state = 213}, + [5533] = {.lex_state = 213}, + [5534] = {.lex_state = 0}, + [5535] = {.lex_state = 213}, + [5536] = {.lex_state = 213}, + [5537] = {.lex_state = 212}, + [5538] = {.lex_state = 0}, + [5539] = {.lex_state = 212}, + [5540] = {.lex_state = 181}, + [5541] = {.lex_state = 212}, + [5542] = {.lex_state = 212}, + [5543] = {.lex_state = 212}, + [5544] = {.lex_state = 213}, + [5545] = {.lex_state = 176}, + [5546] = {.lex_state = 176}, + [5547] = {.lex_state = 178}, + [5548] = {.lex_state = 176}, + [5549] = {.lex_state = 212}, + [5550] = {.lex_state = 215}, + [5551] = {.lex_state = 176}, + [5552] = {.lex_state = 176}, + [5553] = {.lex_state = 176}, + [5554] = {.lex_state = 176}, + [5555] = {.lex_state = 176}, + [5556] = {.lex_state = 176}, + [5557] = {.lex_state = 212}, + [5558] = {.lex_state = 176}, + [5559] = {.lex_state = 211}, + [5560] = {.lex_state = 211}, + [5561] = {.lex_state = 212}, + [5562] = {.lex_state = 215}, + [5563] = {.lex_state = 176}, + [5564] = {.lex_state = 215}, + [5565] = {.lex_state = 176}, + [5566] = {.lex_state = 212}, + [5567] = {.lex_state = 176}, + [5568] = {.lex_state = 215}, + [5569] = {.lex_state = 176}, + [5570] = {.lex_state = 212}, + [5571] = {.lex_state = 176}, + [5572] = {.lex_state = 176}, + [5573] = {.lex_state = 176}, + [5574] = {.lex_state = 212}, + [5575] = {.lex_state = 213}, + [5576] = {.lex_state = 213}, + [5577] = {.lex_state = 176}, + [5578] = {.lex_state = 211}, + [5579] = {.lex_state = 217}, + [5580] = {.lex_state = 176}, + [5581] = {.lex_state = 178}, + [5582] = {.lex_state = 213}, + [5583] = {.lex_state = 176}, + [5584] = {.lex_state = 215}, + [5585] = {.lex_state = 176}, + [5586] = {.lex_state = 176}, + [5587] = {.lex_state = 176}, + [5588] = {.lex_state = 212}, + [5589] = {.lex_state = 213}, + [5590] = {.lex_state = 212}, + [5591] = {.lex_state = 176}, + [5592] = {.lex_state = 212}, + [5593] = {.lex_state = 176}, + [5594] = {.lex_state = 215}, + [5595] = {.lex_state = 176}, + [5596] = {.lex_state = 212}, + [5597] = {.lex_state = 176}, + [5598] = {.lex_state = 176}, + [5599] = {.lex_state = 213}, + [5600] = {.lex_state = 176}, + [5601] = {.lex_state = 212}, + [5602] = {.lex_state = 213}, + [5603] = {.lex_state = 212}, + [5604] = {.lex_state = 212}, + [5605] = {.lex_state = 178}, + [5606] = {.lex_state = 212}, + [5607] = {.lex_state = 213}, + [5608] = {.lex_state = 168}, + [5609] = {.lex_state = 176}, + [5610] = {.lex_state = 213}, + [5611] = {.lex_state = 176}, + [5612] = {.lex_state = 212}, + [5613] = {.lex_state = 176}, + [5614] = {.lex_state = 176}, + [5615] = {.lex_state = 212}, + [5616] = {.lex_state = 176}, + [5617] = {.lex_state = 192}, + [5618] = {.lex_state = 178}, + [5619] = {.lex_state = 178}, + [5620] = {.lex_state = 176}, + [5621] = {.lex_state = 212}, + [5622] = {.lex_state = 178}, + [5623] = {.lex_state = 178}, + [5624] = {.lex_state = 176}, + [5625] = {.lex_state = 213}, + [5626] = {.lex_state = 176}, + [5627] = {.lex_state = 212}, + [5628] = {.lex_state = 178}, + [5629] = {.lex_state = 212}, + [5630] = {.lex_state = 176}, + [5631] = {.lex_state = 176}, + [5632] = {.lex_state = 212}, + [5633] = {.lex_state = 212}, + [5634] = {.lex_state = 212}, + [5635] = {.lex_state = 168}, + [5636] = {.lex_state = 212}, + [5637] = {.lex_state = 212}, + [5638] = {.lex_state = 176}, + [5639] = {.lex_state = 176}, + [5640] = {.lex_state = 212}, + [5641] = {.lex_state = 176}, + [5642] = {.lex_state = 176}, + [5643] = {.lex_state = 168}, + [5644] = {.lex_state = 212}, + [5645] = {.lex_state = 179}, + [5646] = {.lex_state = 176}, + [5647] = {.lex_state = 212}, + [5648] = {.lex_state = 179}, + [5649] = {.lex_state = 212}, + [5650] = {.lex_state = 168}, + [5651] = {.lex_state = 212}, + [5652] = {.lex_state = 212}, + [5653] = {.lex_state = 168}, + [5654] = {.lex_state = 176}, + [5655] = {.lex_state = 168}, + [5656] = {.lex_state = 176}, + [5657] = {.lex_state = 176}, + [5658] = {.lex_state = 192}, + [5659] = {.lex_state = 176}, + [5660] = {.lex_state = 176}, + [5661] = {.lex_state = 213}, + [5662] = {.lex_state = 176}, + [5663] = {.lex_state = 213}, + [5664] = {.lex_state = 176}, + [5665] = {.lex_state = 176}, + [5666] = {.lex_state = 213}, + [5667] = {.lex_state = 176}, + [5668] = {.lex_state = 176}, + [5669] = {.lex_state = 168}, + [5670] = {.lex_state = 178}, + [5671] = {.lex_state = 179}, + [5672] = {.lex_state = 176}, + [5673] = {.lex_state = 176}, + [5674] = {.lex_state = 178}, + [5675] = {.lex_state = 212}, + [5676] = {.lex_state = 212}, + [5677] = {.lex_state = 178}, + [5678] = {.lex_state = 179}, + [5679] = {.lex_state = 283}, + [5680] = {.lex_state = 212}, + [5681] = {.lex_state = 176}, + [5682] = {.lex_state = 176}, + [5683] = {.lex_state = 159}, + [5684] = {.lex_state = 212}, + [5685] = {.lex_state = 212}, + [5686] = {.lex_state = 178}, + [5687] = {.lex_state = 179}, + [5688] = {.lex_state = 212}, + [5689] = {.lex_state = 159}, + [5690] = {.lex_state = 178}, + [5691] = {.lex_state = 212}, + [5692] = {.lex_state = 212}, + [5693] = {.lex_state = 283}, + [5694] = {.lex_state = 179}, + [5695] = {.lex_state = 215}, + [5696] = {.lex_state = 178}, + [5697] = {.lex_state = 283}, + [5698] = {.lex_state = 178}, + [5699] = {.lex_state = 179}, + [5700] = {.lex_state = 179}, + [5701] = {.lex_state = 176}, + [5702] = {.lex_state = 176}, + [5703] = {.lex_state = 283}, + [5704] = {.lex_state = 283}, + [5705] = {.lex_state = 283}, + [5706] = {.lex_state = 176}, + [5707] = {.lex_state = 283}, + [5708] = {.lex_state = 193}, + [5709] = {.lex_state = 179}, + [5710] = {.lex_state = 179}, + [5711] = {.lex_state = 283}, + [5712] = {.lex_state = 176}, + [5713] = {.lex_state = 176}, + [5714] = {.lex_state = 283}, + [5715] = {.lex_state = 176}, + [5716] = {.lex_state = 283}, + [5717] = {.lex_state = 283}, + [5718] = {.lex_state = 176}, + [5719] = {.lex_state = 205}, + [5720] = {.lex_state = 283}, + [5721] = {.lex_state = 283}, + [5722] = {.lex_state = 283}, + [5723] = {.lex_state = 176}, + [5724] = {.lex_state = 283}, + [5725] = {.lex_state = 283}, + [5726] = {.lex_state = 176}, + [5727] = {.lex_state = 283}, + [5728] = {.lex_state = 283}, + [5729] = {.lex_state = 283}, + [5730] = {.lex_state = 176}, + [5731] = {.lex_state = 176}, + [5732] = {.lex_state = 283}, + [5733] = {.lex_state = 176}, + [5734] = {.lex_state = 283}, + [5735] = {.lex_state = 176}, + [5736] = {.lex_state = 283}, + [5737] = {.lex_state = 176}, + [5738] = {.lex_state = 283}, + [5739] = {.lex_state = 283}, + [5740] = {.lex_state = 179}, + [5741] = {.lex_state = 176}, + [5742] = {.lex_state = 283}, + [5743] = {.lex_state = 283}, + [5744] = {.lex_state = 205}, + [5745] = {.lex_state = 283}, + [5746] = {.lex_state = 176}, + [5747] = {.lex_state = 176}, + [5748] = {.lex_state = 283}, + [5749] = {.lex_state = 283}, + [5750] = {.lex_state = 283}, + [5751] = {.lex_state = 283}, + [5752] = {.lex_state = 283}, + [5753] = {.lex_state = 176}, + [5754] = {.lex_state = 179}, + [5755] = {.lex_state = 283}, + [5756] = {.lex_state = 212}, + [5757] = {.lex_state = 283}, + [5758] = {.lex_state = 283}, + [5759] = {.lex_state = 205}, + [5760] = {.lex_state = 283}, + [5761] = {.lex_state = 205}, + [5762] = {.lex_state = 179}, + [5763] = {.lex_state = 283}, + [5764] = {.lex_state = 283}, + [5765] = {.lex_state = 176}, + [5766] = {.lex_state = 176}, + [5767] = {.lex_state = 193}, + [5768] = {.lex_state = 283}, + [5769] = {.lex_state = 212}, + [5770] = {.lex_state = 176}, + [5771] = {.lex_state = 212}, + [5772] = {.lex_state = 283}, + [5773] = {.lex_state = 283}, + [5774] = {.lex_state = 212}, + [5775] = {.lex_state = 283}, + [5776] = {.lex_state = 176}, + [5777] = {.lex_state = 283}, + [5778] = {.lex_state = 283}, + [5779] = {.lex_state = 176}, + [5780] = {.lex_state = 283}, + [5781] = {.lex_state = 176}, + [5782] = {.lex_state = 283}, + [5783] = {.lex_state = 212}, + [5784] = {.lex_state = 283}, + [5785] = {.lex_state = 212}, + [5786] = {.lex_state = 283}, + [5787] = {.lex_state = 205}, + [5788] = {.lex_state = 212}, + [5789] = {.lex_state = 176}, + [5790] = {.lex_state = 283}, + [5791] = {.lex_state = 176}, + [5792] = {.lex_state = 283}, + [5793] = {.lex_state = 283}, + [5794] = {.lex_state = 154}, + [5795] = {.lex_state = 179}, + [5796] = {.lex_state = 283}, + [5797] = {.lex_state = 176}, + [5798] = {.lex_state = 179}, + [5799] = {.lex_state = 283}, + [5800] = {.lex_state = 283}, + [5801] = {.lex_state = 179}, + [5802] = {.lex_state = 176}, + [5803] = {.lex_state = 181}, + [5804] = {.lex_state = 181}, + [5805] = {.lex_state = 179}, + [5806] = {.lex_state = 176}, + [5807] = {.lex_state = 215}, + [5808] = {.lex_state = 181}, + [5809] = {.lex_state = 283}, + [5810] = {.lex_state = 179}, + [5811] = {.lex_state = 181}, + [5812] = {.lex_state = 283}, + [5813] = {.lex_state = 179}, + [5814] = {.lex_state = 283}, + [5815] = {.lex_state = 211}, + [5816] = {.lex_state = 283}, + [5817] = {.lex_state = 283}, + [5818] = {.lex_state = 283}, + [5819] = {.lex_state = 283}, + [5820] = {.lex_state = 179}, + [5821] = {.lex_state = 283}, + [5822] = {.lex_state = 159}, + [5823] = {.lex_state = 176}, + [5824] = {.lex_state = 176}, + [5825] = {.lex_state = 283}, + [5826] = {.lex_state = 283}, + [5827] = {.lex_state = 154}, + [5828] = {.lex_state = 283}, + [5829] = {.lex_state = 283}, + [5830] = {.lex_state = 211}, + [5831] = {.lex_state = 215}, + [5832] = {.lex_state = 283}, + [5833] = {.lex_state = 179}, + [5834] = {.lex_state = 283}, + [5835] = {.lex_state = 283}, + [5836] = {.lex_state = 283}, + [5837] = {.lex_state = 215}, + [5838] = {.lex_state = 283}, + [5839] = {.lex_state = 179}, + [5840] = {.lex_state = 283}, + [5841] = {.lex_state = 179}, + [5842] = {.lex_state = 154}, + [5843] = {.lex_state = 283}, + [5844] = {.lex_state = 283}, + [5845] = {.lex_state = 215}, + [5846] = {.lex_state = 283}, + [5847] = {.lex_state = 283}, + [5848] = {.lex_state = 176}, + [5849] = {.lex_state = 213}, + [5850] = {.lex_state = 179}, + [5851] = {.lex_state = 181}, + [5852] = {.lex_state = 181}, + [5853] = {.lex_state = 283}, + [5854] = {.lex_state = 179}, + [5855] = {.lex_state = 176}, + [5856] = {.lex_state = 176}, + [5857] = {.lex_state = 179}, + [5858] = {.lex_state = 176}, + [5859] = {.lex_state = 283}, + [5860] = {.lex_state = 283}, + [5861] = {.lex_state = 176}, + [5862] = {.lex_state = 283}, + [5863] = {.lex_state = 283}, + [5864] = {.lex_state = 179}, + [5865] = {.lex_state = 181}, + [5866] = {.lex_state = 176}, + [5867] = {.lex_state = 176}, + [5868] = {.lex_state = 176}, + [5869] = {.lex_state = 283}, + [5870] = {.lex_state = 176}, + [5871] = {.lex_state = 193}, + [5872] = {.lex_state = 176}, + [5873] = {.lex_state = 154}, + [5874] = {.lex_state = 176}, + [5875] = {.lex_state = 193}, + [5876] = {.lex_state = 176}, + [5877] = {.lex_state = 283}, + [5878] = {.lex_state = 176}, + [5879] = {.lex_state = 154}, + [5880] = {.lex_state = 154}, + [5881] = {.lex_state = 283}, + [5882] = {.lex_state = 176}, + [5883] = {.lex_state = 176}, + [5884] = {.lex_state = 154}, + [5885] = {.lex_state = 193}, + [5886] = {.lex_state = 154}, + [5887] = {.lex_state = 211}, + [5888] = {.lex_state = 211}, + [5889] = {.lex_state = 176}, + [5890] = {.lex_state = 211}, + [5891] = {.lex_state = 154}, + [5892] = {.lex_state = 211}, + [5893] = {.lex_state = 154}, + [5894] = {.lex_state = 176}, + [5895] = {.lex_state = 176}, + [5896] = {.lex_state = 211}, + [5897] = {.lex_state = 211}, + [5898] = {.lex_state = 176}, + [5899] = {.lex_state = 211}, + [5900] = {.lex_state = 283}, [5901] = {.lex_state = 0}, - [5902] = {.lex_state = 0}, - [5903] = {.lex_state = 0}, - [5904] = {.lex_state = 0}, - [5905] = {.lex_state = 0}, - [5906] = {.lex_state = 264}, - [5907] = {.lex_state = 83}, - [5908] = {.lex_state = 264}, - [5909] = {.lex_state = 0}, - [5910] = {.lex_state = 165}, - [5911] = {.lex_state = 0}, - [5912] = {.lex_state = 0}, - [5913] = {.lex_state = 264}, - [5914] = {.lex_state = 0}, - [5915] = {.lex_state = 0}, - [5916] = {.lex_state = 0}, - [5917] = {.lex_state = 0}, - [5918] = {.lex_state = 0}, - [5919] = {.lex_state = 264}, - [5920] = {.lex_state = 165}, + [5902] = {.lex_state = 211}, + [5903] = {.lex_state = 283}, + [5904] = {.lex_state = 283}, + [5905] = {.lex_state = 283}, + [5906] = {.lex_state = 211}, + [5907] = {.lex_state = 176}, + [5908] = {.lex_state = 176}, + [5909] = {.lex_state = 176}, + [5910] = {.lex_state = 0}, + [5911] = {.lex_state = 154}, + [5912] = {.lex_state = 283}, + [5913] = {.lex_state = 176}, + [5914] = {.lex_state = 176}, + [5915] = {.lex_state = 283}, + [5916] = {.lex_state = 211}, + [5917] = {.lex_state = 211}, + [5918] = {.lex_state = 211}, + [5919] = {.lex_state = 176}, + [5920] = {.lex_state = 211}, [5921] = {.lex_state = 0}, - [5922] = {.lex_state = 264}, - [5923] = {.lex_state = 0}, - [5924] = {.lex_state = 83}, - [5925] = {.lex_state = 0}, - [5926] = {.lex_state = 0}, - [5927] = {.lex_state = 165}, - [5928] = {.lex_state = 264}, - [5929] = {.lex_state = 83}, - [5930] = {.lex_state = 0}, - [5931] = {.lex_state = 0}, - [5932] = {.lex_state = 0}, - [5933] = {.lex_state = 165}, - [5934] = {.lex_state = 264}, - [5935] = {.lex_state = 0}, - [5936] = {.lex_state = 0}, - [5937] = {.lex_state = 0}, - [5938] = {.lex_state = 0}, - [5939] = {.lex_state = 264}, - [5940] = {.lex_state = 0}, - [5941] = {.lex_state = 0}, - [5942] = {.lex_state = 264}, - [5943] = {.lex_state = 165}, - [5944] = {.lex_state = 0}, - [5945] = {.lex_state = 264}, - [5946] = {.lex_state = 264, .external_lex_state = 2}, - [5947] = {.lex_state = 0}, - [5948] = {.lex_state = 0}, - [5949] = {.lex_state = 264}, - [5950] = {.lex_state = 0}, - [5951] = {.lex_state = 264}, - [5952] = {.lex_state = 165}, - [5953] = {.lex_state = 0}, - [5954] = {.lex_state = 0}, - [5955] = {.lex_state = 0}, - [5956] = {.lex_state = 0}, - [5957] = {.lex_state = 264}, - [5958] = {.lex_state = 0}, - [5959] = {.lex_state = 0}, - [5960] = {.lex_state = 0}, - [5961] = {.lex_state = 0}, - [5962] = {.lex_state = 0}, - [5963] = {.lex_state = 0}, - [5964] = {.lex_state = 0}, - [5965] = {.lex_state = 264}, - [5966] = {.lex_state = 0}, - [5967] = {.lex_state = 264}, - [5968] = {.lex_state = 165}, - [5969] = {.lex_state = 264}, - [5970] = {.lex_state = 0}, - [5971] = {.lex_state = 0}, - [5972] = {.lex_state = 264}, - [5973] = {.lex_state = 0}, - [5974] = {.lex_state = 0}, - [5975] = {.lex_state = 83}, - [5976] = {.lex_state = 0}, - [5977] = {.lex_state = 165}, - [5978] = {.lex_state = 83}, - [5979] = {.lex_state = 264}, - [5980] = {.lex_state = 264}, - [5981] = {.lex_state = 264}, - [5982] = {.lex_state = 84}, - [5983] = {.lex_state = 264, .external_lex_state = 2}, - [5984] = {.lex_state = 0}, - [5985] = {.lex_state = 83}, - [5986] = {.lex_state = 0}, - [5987] = {.lex_state = 0}, - [5988] = {.lex_state = 0}, - [5989] = {.lex_state = 0}, - [5990] = {.lex_state = 0}, - [5991] = {.lex_state = 264, .external_lex_state = 2}, - [5992] = {.lex_state = 0}, - [5993] = {.lex_state = 264, .external_lex_state = 2}, - [5994] = {.lex_state = 165}, - [5995] = {.lex_state = 264}, - [5996] = {.lex_state = 264}, - [5997] = {.lex_state = 0}, - [5998] = {.lex_state = 264, .external_lex_state = 2}, - [5999] = {.lex_state = 0}, - [6000] = {.lex_state = 165}, - [6001] = {.lex_state = 0}, - [6002] = {.lex_state = 165}, - [6003] = {.lex_state = 0}, - [6004] = {.lex_state = 264}, - [6005] = {.lex_state = 0}, - [6006] = {.lex_state = 83}, - [6007] = {.lex_state = 0}, - [6008] = {.lex_state = 165}, - [6009] = {.lex_state = 264}, - [6010] = {.lex_state = 264}, - [6011] = {.lex_state = 165}, - [6012] = {.lex_state = 0}, - [6013] = {.lex_state = 165}, - [6014] = {.lex_state = 165}, - [6015] = {.lex_state = 264}, - [6016] = {.lex_state = 165}, - [6017] = {.lex_state = 165}, - [6018] = {.lex_state = 0}, - [6019] = {.lex_state = 0}, - [6020] = {.lex_state = 0}, - [6021] = {.lex_state = 0}, - [6022] = {.lex_state = 0}, - [6023] = {.lex_state = 0}, - [6024] = {.lex_state = 0}, - [6025] = {.lex_state = 0}, - [6026] = {.lex_state = 0}, - [6027] = {.lex_state = 0}, - [6028] = {.lex_state = 0}, - [6029] = {.lex_state = 0}, - [6030] = {.lex_state = 0}, - [6031] = {.lex_state = 0, .external_lex_state = 2}, - [6032] = {.lex_state = 0}, - [6033] = {.lex_state = 0}, - [6034] = {.lex_state = 0}, - [6035] = {.lex_state = 0}, - [6036] = {.lex_state = 0}, - [6037] = {.lex_state = 148}, - [6038] = {.lex_state = 165}, + [5922] = {.lex_state = 283}, + [5923] = {.lex_state = 215}, + [5924] = {.lex_state = 154}, + [5925] = {.lex_state = 176}, + [5926] = {.lex_state = 176}, + [5927] = {.lex_state = 176}, + [5928] = {.lex_state = 211}, + [5929] = {.lex_state = 176}, + [5930] = {.lex_state = 211}, + [5931] = {.lex_state = 211}, + [5932] = {.lex_state = 211}, + [5933] = {.lex_state = 283}, + [5934] = {.lex_state = 283}, + [5935] = {.lex_state = 176}, + [5936] = {.lex_state = 176}, + [5937] = {.lex_state = 211}, + [5938] = {.lex_state = 176}, + [5939] = {.lex_state = 176}, + [5940] = {.lex_state = 176}, + [5941] = {.lex_state = 283}, + [5942] = {.lex_state = 176}, + [5943] = {.lex_state = 176}, + [5944] = {.lex_state = 178}, + [5945] = {.lex_state = 211}, + [5946] = {.lex_state = 154}, + [5947] = {.lex_state = 176}, + [5948] = {.lex_state = 283}, + [5949] = {.lex_state = 176}, + [5950] = {.lex_state = 283}, + [5951] = {.lex_state = 176}, + [5952] = {.lex_state = 154}, + [5953] = {.lex_state = 178}, + [5954] = {.lex_state = 176}, + [5955] = {.lex_state = 176}, + [5956] = {.lex_state = 176}, + [5957] = {.lex_state = 176}, + [5958] = {.lex_state = 154}, + [5959] = {.lex_state = 159}, + [5960] = {.lex_state = 283}, + [5961] = {.lex_state = 159}, + [5962] = {.lex_state = 96}, + [5963] = {.lex_state = 283}, + [5964] = {.lex_state = 283}, + [5965] = {.lex_state = 154}, + [5966] = {.lex_state = 283}, + [5967] = {.lex_state = 154}, + [5968] = {.lex_state = 0}, + [5969] = {.lex_state = 0}, + [5970] = {.lex_state = 283}, + [5971] = {.lex_state = 159}, + [5972] = {.lex_state = 159}, + [5973] = {.lex_state = 283}, + [5974] = {.lex_state = 159}, + [5975] = {.lex_state = 159}, + [5976] = {.lex_state = 283}, + [5977] = {.lex_state = 283}, + [5978] = {.lex_state = 283}, + [5979] = {.lex_state = 283}, + [5980] = {.lex_state = 96}, + [5981] = {.lex_state = 283}, + [5982] = {.lex_state = 211}, + [5983] = {.lex_state = 0}, + [5984] = {.lex_state = 154}, + [5985] = {.lex_state = 159}, + [5986] = {.lex_state = 176}, + [5987] = {.lex_state = 283}, + [5988] = {.lex_state = 283}, + [5989] = {.lex_state = 159}, + [5990] = {.lex_state = 98}, + [5991] = {.lex_state = 283}, + [5992] = {.lex_state = 283}, + [5993] = {.lex_state = 154}, + [5994] = {.lex_state = 159}, + [5995] = {.lex_state = 0}, + [5996] = {.lex_state = 211}, + [5997] = {.lex_state = 154}, + [5998] = {.lex_state = 154}, + [5999] = {.lex_state = 159}, + [6000] = {.lex_state = 176}, + [6001] = {.lex_state = 154}, + [6002] = {.lex_state = 154}, + [6003] = {.lex_state = 283}, + [6004] = {.lex_state = 283}, + [6005] = {.lex_state = 159}, + [6006] = {.lex_state = 283}, + [6007] = {.lex_state = 283}, + [6008] = {.lex_state = 159}, + [6009] = {.lex_state = 0}, + [6010] = {.lex_state = 159}, + [6011] = {.lex_state = 159}, + [6012] = {.lex_state = 159}, + [6013] = {.lex_state = 283}, + [6014] = {.lex_state = 159}, + [6015] = {.lex_state = 96}, + [6016] = {.lex_state = 211}, + [6017] = {.lex_state = 159}, + [6018] = {.lex_state = 154}, + [6019] = {.lex_state = 159}, + [6020] = {.lex_state = 96}, + [6021] = {.lex_state = 159}, + [6022] = {.lex_state = 159}, + [6023] = {.lex_state = 159}, + [6024] = {.lex_state = 159}, + [6025] = {.lex_state = 283}, + [6026] = {.lex_state = 154}, + [6027] = {.lex_state = 159}, + [6028] = {.lex_state = 154}, + [6029] = {.lex_state = 159}, + [6030] = {.lex_state = 154}, + [6031] = {.lex_state = 159}, + [6032] = {.lex_state = 283}, + [6033] = {.lex_state = 154}, + [6034] = {.lex_state = 283}, + [6035] = {.lex_state = 159}, + [6036] = {.lex_state = 283}, + [6037] = {.lex_state = 98}, + [6038] = {.lex_state = 211}, [6039] = {.lex_state = 0}, - [6040] = {.lex_state = 0}, - [6041] = {.lex_state = 0}, - [6042] = {.lex_state = 0}, - [6043] = {.lex_state = 0}, - [6044] = {.lex_state = 0}, - [6045] = {.lex_state = 0}, - [6046] = {.lex_state = 264}, - [6047] = {.lex_state = 0, .external_lex_state = 2}, + [6040] = {.lex_state = 159}, + [6041] = {.lex_state = 159}, + [6042] = {.lex_state = 211}, + [6043] = {.lex_state = 159}, + [6044] = {.lex_state = 211}, + [6045] = {.lex_state = 176}, + [6046] = {.lex_state = 0}, + [6047] = {.lex_state = 0}, [6048] = {.lex_state = 0}, - [6049] = {.lex_state = 0}, - [6050] = {.lex_state = 0}, - [6051] = {.lex_state = 0}, - [6052] = {.lex_state = 0}, - [6053] = {.lex_state = 0}, - [6054] = {.lex_state = 165}, - [6055] = {.lex_state = 0}, - [6056] = {.lex_state = 165}, - [6057] = {.lex_state = 165}, - [6058] = {.lex_state = 165}, - [6059] = {.lex_state = 264}, - [6060] = {.lex_state = 165}, - [6061] = {.lex_state = 0}, - [6062] = {.lex_state = 264}, - [6063] = {.lex_state = 165}, - [6064] = {.lex_state = 165}, - [6065] = {.lex_state = 165}, - [6066] = {.lex_state = 264}, - [6067] = {.lex_state = 0}, - [6068] = {.lex_state = 0}, - [6069] = {.lex_state = 0}, - [6070] = {.lex_state = 165}, - [6071] = {.lex_state = 165}, - [6072] = {.lex_state = 264}, - [6073] = {.lex_state = 165}, - [6074] = {.lex_state = 0}, - [6075] = {.lex_state = 165}, - [6076] = {.lex_state = 165}, - [6077] = {.lex_state = 264}, - [6078] = {.lex_state = 165}, - [6079] = {.lex_state = 165}, - [6080] = {.lex_state = 165}, - [6081] = {.lex_state = 0}, - [6082] = {.lex_state = 0}, - [6083] = {.lex_state = 0}, - [6084] = {.lex_state = 264}, - [6085] = {.lex_state = 264}, - [6086] = {.lex_state = 165}, - [6087] = {.lex_state = 0}, - [6088] = {.lex_state = 140}, - [6089] = {.lex_state = 0}, - [6090] = {.lex_state = 0}, + [6049] = {.lex_state = 154}, + [6050] = {.lex_state = 96}, + [6051] = {.lex_state = 283}, + [6052] = {.lex_state = 159}, + [6053] = {.lex_state = 178}, + [6054] = {.lex_state = 159}, + [6055] = {.lex_state = 159}, + [6056] = {.lex_state = 159}, + [6057] = {.lex_state = 159}, + [6058] = {.lex_state = 176}, + [6059] = {.lex_state = 211}, + [6060] = {.lex_state = 154}, + [6061] = {.lex_state = 159}, + [6062] = {.lex_state = 211}, + [6063] = {.lex_state = 283}, + [6064] = {.lex_state = 176}, + [6065] = {.lex_state = 283}, + [6066] = {.lex_state = 159}, + [6067] = {.lex_state = 283}, + [6068] = {.lex_state = 283}, + [6069] = {.lex_state = 96}, + [6070] = {.lex_state = 176}, + [6071] = {.lex_state = 154}, + [6072] = {.lex_state = 159}, + [6073] = {.lex_state = 0}, + [6074] = {.lex_state = 98}, + [6075] = {.lex_state = 159}, + [6076] = {.lex_state = 154}, + [6077] = {.lex_state = 176}, + [6078] = {.lex_state = 154}, + [6079] = {.lex_state = 98}, + [6080] = {.lex_state = 283}, + [6081] = {.lex_state = 159}, + [6082] = {.lex_state = 159}, + [6083] = {.lex_state = 96}, + [6084] = {.lex_state = 159}, + [6085] = {.lex_state = 283}, + [6086] = {.lex_state = 176}, + [6087] = {.lex_state = 283}, + [6088] = {.lex_state = 154}, + [6089] = {.lex_state = 159}, + [6090] = {.lex_state = 159}, [6091] = {.lex_state = 0}, - [6092] = {.lex_state = 0}, - [6093] = {.lex_state = 0}, - [6094] = {.lex_state = 165}, - [6095] = {.lex_state = 165}, - [6096] = {.lex_state = 0}, - [6097] = {.lex_state = 0}, - [6098] = {.lex_state = 0}, - [6099] = {.lex_state = 0}, - [6100] = {.lex_state = 0}, - [6101] = {.lex_state = 264}, - [6102] = {.lex_state = 0}, - [6103] = {.lex_state = 142}, - [6104] = {.lex_state = 264}, - [6105] = {.lex_state = 140}, - [6106] = {.lex_state = 0}, - [6107] = {.lex_state = 0}, + [6092] = {.lex_state = 96}, + [6093] = {.lex_state = 159}, + [6094] = {.lex_state = 0}, + [6095] = {.lex_state = 154}, + [6096] = {.lex_state = 154}, + [6097] = {.lex_state = 159}, + [6098] = {.lex_state = 159}, + [6099] = {.lex_state = 283}, + [6100] = {.lex_state = 283}, + [6101] = {.lex_state = 283}, + [6102] = {.lex_state = 159}, + [6103] = {.lex_state = 154}, + [6104] = {.lex_state = 154}, + [6105] = {.lex_state = 159}, + [6106] = {.lex_state = 283}, + [6107] = {.lex_state = 176}, [6108] = {.lex_state = 0}, - [6109] = {.lex_state = 0}, - [6110] = {.lex_state = 0}, - [6111] = {.lex_state = 0}, - [6112] = {.lex_state = 0}, - [6113] = {.lex_state = 165}, - [6114] = {.lex_state = 264}, - [6115] = {.lex_state = 140}, - [6116] = {.lex_state = 0}, - [6117] = {.lex_state = 0}, - [6118] = {.lex_state = 140}, - [6119] = {.lex_state = 0, .external_lex_state = 2}, - [6120] = {.lex_state = 0}, - [6121] = {.lex_state = 165}, + [6109] = {.lex_state = 98}, + [6110] = {.lex_state = 283}, + [6111] = {.lex_state = 154}, + [6112] = {.lex_state = 159}, + [6113] = {.lex_state = 159}, + [6114] = {.lex_state = 159}, + [6115] = {.lex_state = 159}, + [6116] = {.lex_state = 159}, + [6117] = {.lex_state = 283}, + [6118] = {.lex_state = 0}, + [6119] = {.lex_state = 159}, + [6120] = {.lex_state = 159}, + [6121] = {.lex_state = 159}, [6122] = {.lex_state = 0}, - [6123] = {.lex_state = 0}, - [6124] = {.lex_state = 75}, + [6123] = {.lex_state = 159}, + [6124] = {.lex_state = 0}, [6125] = {.lex_state = 0}, - [6126] = {.lex_state = 165}, - [6127] = {.lex_state = 0}, - [6128] = {.lex_state = 0}, - [6129] = {.lex_state = 0}, - [6130] = {.lex_state = 0}, - [6131] = {.lex_state = 0}, - [6132] = {.lex_state = 264}, - [6133] = {.lex_state = 141}, + [6126] = {.lex_state = 159}, + [6127] = {.lex_state = 159}, + [6128] = {.lex_state = 176}, + [6129] = {.lex_state = 283}, + [6130] = {.lex_state = 96}, + [6131] = {.lex_state = 211}, + [6132] = {.lex_state = 159}, + [6133] = {.lex_state = 159}, [6134] = {.lex_state = 0}, - [6135] = {.lex_state = 0}, - [6136] = {.lex_state = 264}, - [6137] = {.lex_state = 140}, - [6138] = {.lex_state = 0}, - [6139] = {.lex_state = 0}, - [6140] = {.lex_state = 0}, - [6141] = {.lex_state = 264}, - [6142] = {.lex_state = 0}, - [6143] = {.lex_state = 75}, + [6135] = {.lex_state = 176}, + [6136] = {.lex_state = 159}, + [6137] = {.lex_state = 154}, + [6138] = {.lex_state = 211}, + [6139] = {.lex_state = 98}, + [6140] = {.lex_state = 283}, + [6141] = {.lex_state = 176}, + [6142] = {.lex_state = 154}, + [6143] = {.lex_state = 96}, [6144] = {.lex_state = 0}, - [6145] = {.lex_state = 165}, - [6146] = {.lex_state = 0}, - [6147] = {.lex_state = 0}, - [6148] = {.lex_state = 264}, - [6149] = {.lex_state = 0}, - [6150] = {.lex_state = 264}, - [6151] = {.lex_state = 165}, - [6152] = {.lex_state = 264}, + [6145] = {.lex_state = 283}, + [6146] = {.lex_state = 211}, + [6147] = {.lex_state = 96}, + [6148] = {.lex_state = 283}, + [6149] = {.lex_state = 159}, + [6150] = {.lex_state = 159}, + [6151] = {.lex_state = 98}, + [6152] = {.lex_state = 159}, [6153] = {.lex_state = 0}, - [6154] = {.lex_state = 197}, - [6155] = {.lex_state = 0}, - [6156] = {.lex_state = 0}, - [6157] = {.lex_state = 75}, - [6158] = {.lex_state = 0}, - [6159] = {.lex_state = 0}, - [6160] = {.lex_state = 0}, - [6161] = {.lex_state = 141}, - [6162] = {.lex_state = 156}, - [6163] = {.lex_state = 0}, - [6164] = {.lex_state = 0}, - [6165] = {.lex_state = 0}, - [6166] = {.lex_state = 0}, - [6167] = {.lex_state = 0}, - [6168] = {.lex_state = 0}, - [6169] = {.lex_state = 75}, - [6170] = {.lex_state = 0}, - [6171] = {.lex_state = 0}, - [6172] = {.lex_state = 0}, - [6173] = {.lex_state = 0}, - [6174] = {.lex_state = 0}, - [6175] = {.lex_state = 0, .external_lex_state = 2}, - [6176] = {.lex_state = 141}, - [6177] = {.lex_state = 165}, - [6178] = {.lex_state = 0}, - [6179] = {.lex_state = 0}, - [6180] = {.lex_state = 0}, - [6181] = {.lex_state = 0}, - [6182] = {.lex_state = 0}, - [6183] = {.lex_state = 75}, - [6184] = {.lex_state = 165}, - [6185] = {.lex_state = 0}, + [6154] = {.lex_state = 96}, + [6155] = {.lex_state = 159}, + [6156] = {.lex_state = 96}, + [6157] = {.lex_state = 176}, + [6158] = {.lex_state = 159}, + [6159] = {.lex_state = 98}, + [6160] = {.lex_state = 211}, + [6161] = {.lex_state = 283}, + [6162] = {.lex_state = 283}, + [6163] = {.lex_state = 154}, + [6164] = {.lex_state = 159}, + [6165] = {.lex_state = 176}, + [6166] = {.lex_state = 154}, + [6167] = {.lex_state = 159}, + [6168] = {.lex_state = 154}, + [6169] = {.lex_state = 96}, + [6170] = {.lex_state = 176}, + [6171] = {.lex_state = 96}, + [6172] = {.lex_state = 283}, + [6173] = {.lex_state = 159}, + [6174] = {.lex_state = 98}, + [6175] = {.lex_state = 96}, + [6176] = {.lex_state = 159}, + [6177] = {.lex_state = 283}, + [6178] = {.lex_state = 96}, + [6179] = {.lex_state = 283}, + [6180] = {.lex_state = 154}, + [6181] = {.lex_state = 283}, + [6182] = {.lex_state = 159}, + [6183] = {.lex_state = 0}, + [6184] = {.lex_state = 0}, + [6185] = {.lex_state = 176}, [6186] = {.lex_state = 0}, [6187] = {.lex_state = 0}, - [6188] = {.lex_state = 264}, - [6189] = {.lex_state = 75}, - [6190] = {.lex_state = 75}, - [6191] = {.lex_state = 0}, - [6192] = {.lex_state = 141}, + [6188] = {.lex_state = 0}, + [6189] = {.lex_state = 0}, + [6190] = {.lex_state = 176}, + [6191] = {.lex_state = 176}, + [6192] = {.lex_state = 176}, [6193] = {.lex_state = 0}, [6194] = {.lex_state = 0}, - [6195] = {.lex_state = 165}, + [6195] = {.lex_state = 176}, [6196] = {.lex_state = 0}, - [6197] = {.lex_state = 0}, - [6198] = {.lex_state = 75}, - [6199] = {.lex_state = 141}, + [6197] = {.lex_state = 176}, + [6198] = {.lex_state = 159}, + [6199] = {.lex_state = 0}, [6200] = {.lex_state = 0}, - [6201] = {.lex_state = 75}, + [6201] = {.lex_state = 0}, [6202] = {.lex_state = 0}, - [6203] = {.lex_state = 165}, + [6203] = {.lex_state = 0}, [6204] = {.lex_state = 0}, - [6205] = {.lex_state = 0}, - [6206] = {.lex_state = 165}, + [6205] = {.lex_state = 159}, + [6206] = {.lex_state = 159}, [6207] = {.lex_state = 0}, - [6208] = {.lex_state = 0}, - [6209] = {.lex_state = 0}, + [6208] = {.lex_state = 176}, + [6209] = {.lex_state = 176}, [6210] = {.lex_state = 0}, - [6211] = {.lex_state = 0, .external_lex_state = 2}, - [6212] = {.lex_state = 165}, - [6213] = {.lex_state = 0}, - [6214] = {.lex_state = 75}, - [6215] = {.lex_state = 0}, + [6211] = {.lex_state = 0}, + [6212] = {.lex_state = 0}, + [6213] = {.lex_state = 283}, + [6214] = {.lex_state = 176}, + [6215] = {.lex_state = 176}, [6216] = {.lex_state = 0}, [6217] = {.lex_state = 0}, [6218] = {.lex_state = 0}, [6219] = {.lex_state = 0}, - [6220] = {.lex_state = 0}, + [6220] = {.lex_state = 91}, [6221] = {.lex_state = 0}, - [6222] = {.lex_state = 0}, - [6223] = {.lex_state = 264}, + [6222] = {.lex_state = 176}, + [6223] = {.lex_state = 176}, [6224] = {.lex_state = 0}, - [6225] = {.lex_state = 0}, + [6225] = {.lex_state = 176}, [6226] = {.lex_state = 0}, - [6227] = {.lex_state = 0, .external_lex_state = 3}, + [6227] = {.lex_state = 0}, [6228] = {.lex_state = 0}, - [6229] = {.lex_state = 165}, + [6229] = {.lex_state = 0}, [6230] = {.lex_state = 0}, - [6231] = {.lex_state = 0}, + [6231] = {.lex_state = 159}, [6232] = {.lex_state = 0}, [6233] = {.lex_state = 0}, [6234] = {.lex_state = 0}, - [6235] = {.lex_state = 0}, + [6235] = {.lex_state = 176}, [6236] = {.lex_state = 0}, [6237] = {.lex_state = 0}, [6238] = {.lex_state = 0}, - [6239] = {.lex_state = 0}, - [6240] = {.lex_state = 75}, - [6241] = {.lex_state = 165}, + [6239] = {.lex_state = 283}, + [6240] = {.lex_state = 159}, + [6241] = {.lex_state = 159}, [6242] = {.lex_state = 0}, [6243] = {.lex_state = 0}, - [6244] = {.lex_state = 264}, + [6244] = {.lex_state = 159}, [6245] = {.lex_state = 0}, - [6246] = {.lex_state = 264}, + [6246] = {.lex_state = 0}, [6247] = {.lex_state = 0}, [6248] = {.lex_state = 0}, [6249] = {.lex_state = 0}, [6250] = {.lex_state = 0}, - [6251] = {.lex_state = 75}, + [6251] = {.lex_state = 0}, [6252] = {.lex_state = 0}, - [6253] = {.lex_state = 264}, + [6253] = {.lex_state = 0}, [6254] = {.lex_state = 0}, [6255] = {.lex_state = 0}, - [6256] = {.lex_state = 0}, - [6257] = {.lex_state = 165}, - [6258] = {.lex_state = 0}, + [6256] = {.lex_state = 176}, + [6257] = {.lex_state = 0}, + [6258] = {.lex_state = 176}, [6259] = {.lex_state = 0}, - [6260] = {.lex_state = 0}, - [6261] = {.lex_state = 264}, + [6260] = {.lex_state = 283}, + [6261] = {.lex_state = 0}, [6262] = {.lex_state = 0}, - [6263] = {.lex_state = 264}, + [6263] = {.lex_state = 159}, [6264] = {.lex_state = 0}, - [6265] = {.lex_state = 0}, + [6265] = {.lex_state = 283}, [6266] = {.lex_state = 0}, - [6267] = {.lex_state = 0}, - [6268] = {.lex_state = 165}, + [6267] = {.lex_state = 176}, + [6268] = {.lex_state = 0}, [6269] = {.lex_state = 0}, - [6270] = {.lex_state = 264}, - [6271] = {.lex_state = 0}, + [6270] = {.lex_state = 0}, + [6271] = {.lex_state = 176}, [6272] = {.lex_state = 0}, [6273] = {.lex_state = 0}, [6274] = {.lex_state = 0}, - [6275] = {.lex_state = 75}, + [6275] = {.lex_state = 0}, [6276] = {.lex_state = 0}, [6277] = {.lex_state = 0}, [6278] = {.lex_state = 0}, [6279] = {.lex_state = 0}, - [6280] = {.lex_state = 148}, - [6281] = {.lex_state = 0}, - [6282] = {.lex_state = 165}, - [6283] = {.lex_state = 0}, - [6284] = {.lex_state = 264}, - [6285] = {.lex_state = 165}, - [6286] = {.lex_state = 75}, - [6287] = {.lex_state = 165}, - [6288] = {.lex_state = 0}, - [6289] = {.lex_state = 264}, - [6290] = {.lex_state = 0, .external_lex_state = 3}, + [6280] = {.lex_state = 159}, + [6281] = {.lex_state = 176}, + [6282] = {.lex_state = 0}, + [6283] = {.lex_state = 176}, + [6284] = {.lex_state = 0}, + [6285] = {.lex_state = 176}, + [6286] = {.lex_state = 0}, + [6287] = {.lex_state = 0}, + [6288] = {.lex_state = 176}, + [6289] = {.lex_state = 176}, + [6290] = {.lex_state = 0}, [6291] = {.lex_state = 0}, [6292] = {.lex_state = 0}, - [6293] = {.lex_state = 0}, - [6294] = {.lex_state = 0}, - [6295] = {.lex_state = 0}, - [6296] = {.lex_state = 165}, + [6293] = {.lex_state = 159}, + [6294] = {.lex_state = 159}, + [6295] = {.lex_state = 283}, + [6296] = {.lex_state = 0}, [6297] = {.lex_state = 0}, - [6298] = {.lex_state = 0}, - [6299] = {.lex_state = 75}, + [6298] = {.lex_state = 283}, + [6299] = {.lex_state = 176}, [6300] = {.lex_state = 0}, [6301] = {.lex_state = 0}, - [6302] = {.lex_state = 0}, - [6303] = {.lex_state = 165}, - [6304] = {.lex_state = 141}, - [6305] = {.lex_state = 0}, + [6302] = {.lex_state = 159}, + [6303] = {.lex_state = 159}, + [6304] = {.lex_state = 0}, + [6305] = {.lex_state = 176}, [6306] = {.lex_state = 0}, [6307] = {.lex_state = 0}, - [6308] = {.lex_state = 0}, - [6309] = {.lex_state = 141}, + [6308] = {.lex_state = 176}, + [6309] = {.lex_state = 0}, [6310] = {.lex_state = 0}, [6311] = {.lex_state = 0}, - [6312] = {.lex_state = 0}, - [6313] = {.lex_state = 0}, + [6312] = {.lex_state = 159}, + [6313] = {.lex_state = 159}, [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 = 141}, - [6321] = {.lex_state = 0}, - [6322] = {.lex_state = 141}, - [6323] = {.lex_state = 75}, - [6324] = {.lex_state = 148}, - [6325] = {.lex_state = 165}, - [6326] = {.lex_state = 0}, - [6327] = {.lex_state = 0}, - [6328] = {.lex_state = 148}, - [6329] = {.lex_state = 0}, - [6330] = {.lex_state = 0}, - [6331] = {.lex_state = 165}, - [6332] = {.lex_state = 0}, + [6320] = {.lex_state = 0}, + [6321] = {.lex_state = 176}, + [6322] = {.lex_state = 159}, + [6323] = {.lex_state = 176}, + [6324] = {.lex_state = 176}, + [6325] = {.lex_state = 0}, + [6326] = {.lex_state = 159}, + [6327] = {.lex_state = 176}, + [6328] = {.lex_state = 176}, + [6329] = {.lex_state = 159}, + [6330] = {.lex_state = 176}, + [6331] = {.lex_state = 159}, + [6332] = {.lex_state = 176}, [6333] = {.lex_state = 0}, [6334] = {.lex_state = 0}, [6335] = {.lex_state = 0}, - [6336] = {.lex_state = 0}, + [6336] = {.lex_state = 159}, [6337] = {.lex_state = 0}, - [6338] = {.lex_state = 141}, + [6338] = {.lex_state = 176}, [6339] = {.lex_state = 0}, [6340] = {.lex_state = 0}, - [6341] = {.lex_state = 165}, - [6342] = {.lex_state = 165}, - [6343] = {.lex_state = 0}, - [6344] = {.lex_state = 0}, - [6345] = {.lex_state = 264}, + [6341] = {.lex_state = 0}, + [6342] = {.lex_state = 159}, + [6343] = {.lex_state = 159}, + [6344] = {.lex_state = 176}, + [6345] = {.lex_state = 0}, [6346] = {.lex_state = 0}, [6347] = {.lex_state = 0}, - [6348] = {.lex_state = 165}, - [6349] = {.lex_state = 165}, - [6350] = {.lex_state = 165}, - [6351] = {.lex_state = 165}, + [6348] = {.lex_state = 0}, + [6349] = {.lex_state = 0}, + [6350] = {.lex_state = 0}, + [6351] = {.lex_state = 283}, [6352] = {.lex_state = 0}, [6353] = {.lex_state = 0}, - [6354] = {.lex_state = 0}, + [6354] = {.lex_state = 176}, [6355] = {.lex_state = 0}, - [6356] = {.lex_state = 75}, - [6357] = {.lex_state = 75}, - [6358] = {.lex_state = 0}, - [6359] = {.lex_state = 141}, - [6360] = {.lex_state = 264}, + [6356] = {.lex_state = 176}, + [6357] = {.lex_state = 0}, + [6358] = {.lex_state = 176}, + [6359] = {.lex_state = 0}, + [6360] = {.lex_state = 176}, [6361] = {.lex_state = 0}, [6362] = {.lex_state = 0}, - [6363] = {.lex_state = 148}, + [6363] = {.lex_state = 0}, [6364] = {.lex_state = 0}, - [6365] = {.lex_state = 0}, - [6366] = {.lex_state = 0}, + [6365] = {.lex_state = 91}, + [6366] = {.lex_state = 176}, [6367] = {.lex_state = 0}, - [6368] = {.lex_state = 0}, + [6368] = {.lex_state = 176}, [6369] = {.lex_state = 0}, [6370] = {.lex_state = 0}, [6371] = {.lex_state = 0}, - [6372] = {.lex_state = 0}, - [6373] = {.lex_state = 0}, + [6372] = {.lex_state = 159}, + [6373] = {.lex_state = 159}, [6374] = {.lex_state = 0}, - [6375] = {.lex_state = 0}, + [6375] = {.lex_state = 159}, [6376] = {.lex_state = 0}, - [6377] = {.lex_state = 0}, - [6378] = {.lex_state = 0}, - [6379] = {.lex_state = 0}, + [6377] = {.lex_state = 159}, + [6378] = {.lex_state = 159}, + [6379] = {.lex_state = 176}, [6380] = {.lex_state = 0}, [6381] = {.lex_state = 0}, [6382] = {.lex_state = 0}, [6383] = {.lex_state = 0}, - [6384] = {.lex_state = 141}, + [6384] = {.lex_state = 0}, [6385] = {.lex_state = 0}, - [6386] = {.lex_state = 0}, - [6387] = {.lex_state = 0}, + [6386] = {.lex_state = 159}, + [6387] = {.lex_state = 159}, [6388] = {.lex_state = 0}, [6389] = {.lex_state = 0}, [6390] = {.lex_state = 0}, - [6391] = {.lex_state = 141}, - [6392] = {.lex_state = 0}, + [6391] = {.lex_state = 159}, + [6392] = {.lex_state = 159}, [6393] = {.lex_state = 0}, - [6394] = {.lex_state = 0}, - [6395] = {.lex_state = 0}, + [6394] = {.lex_state = 159}, + [6395] = {.lex_state = 176}, [6396] = {.lex_state = 0}, - [6397] = {.lex_state = 141}, - [6398] = {.lex_state = 141}, + [6397] = {.lex_state = 0}, + [6398] = {.lex_state = 0}, [6399] = {.lex_state = 0}, [6400] = {.lex_state = 0}, - [6401] = {.lex_state = 141}, - [6402] = {.lex_state = 0}, - [6403] = {.lex_state = 0}, - [6404] = {.lex_state = 0}, + [6401] = {.lex_state = 176}, + [6402] = {.lex_state = 176}, + [6403] = {.lex_state = 159}, + [6404] = {.lex_state = 159}, [6405] = {.lex_state = 0}, - [6406] = {.lex_state = 165}, - [6407] = {.lex_state = 141}, - [6408] = {.lex_state = 141}, - [6409] = {.lex_state = 264}, - [6410] = {.lex_state = 264}, - [6411] = {.lex_state = 264}, - [6412] = {.lex_state = 75}, - [6413] = {.lex_state = 0}, - [6414] = {.lex_state = 264}, + [6406] = {.lex_state = 176}, + [6407] = {.lex_state = 0}, + [6408] = {.lex_state = 0}, + [6409] = {.lex_state = 0}, + [6410] = {.lex_state = 0}, + [6411] = {.lex_state = 0}, + [6412] = {.lex_state = 0}, + [6413] = {.lex_state = 176}, + [6414] = {.lex_state = 0}, [6415] = {.lex_state = 0}, - [6416] = {.lex_state = 165}, + [6416] = {.lex_state = 0}, [6417] = {.lex_state = 0}, - [6418] = {.lex_state = 264}, - [6419] = {.lex_state = 0}, - [6420] = {.lex_state = 0}, - [6421] = {.lex_state = 0}, - [6422] = {.lex_state = 264}, - [6423] = {.lex_state = 0, .external_lex_state = 3}, + [6418] = {.lex_state = 0}, + [6419] = {.lex_state = 176}, + [6420] = {.lex_state = 159}, + [6421] = {.lex_state = 159}, + [6422] = {.lex_state = 0}, + [6423] = {.lex_state = 176}, [6424] = {.lex_state = 0}, [6425] = {.lex_state = 0}, [6426] = {.lex_state = 0}, [6427] = {.lex_state = 0}, [6428] = {.lex_state = 0}, [6429] = {.lex_state = 0}, - [6430] = {.lex_state = 0}, + [6430] = {.lex_state = 176}, [6431] = {.lex_state = 0}, - [6432] = {.lex_state = 0}, + [6432] = {.lex_state = 176}, [6433] = {.lex_state = 0}, - [6434] = {.lex_state = 141}, - [6435] = {.lex_state = 141}, - [6436] = {.lex_state = 264}, + [6434] = {.lex_state = 0}, + [6435] = {.lex_state = 0}, + [6436] = {.lex_state = 0}, [6437] = {.lex_state = 0}, - [6438] = {.lex_state = 75}, - [6439] = {.lex_state = 165}, + [6438] = {.lex_state = 0}, + [6439] = {.lex_state = 91}, [6440] = {.lex_state = 0}, - [6441] = {.lex_state = 264}, - [6442] = {.lex_state = 0, .external_lex_state = 2}, - [6443] = {.lex_state = 264}, - [6444] = {.lex_state = 0, .external_lex_state = 3}, - [6445] = {.lex_state = 165}, - [6446] = {.lex_state = 0}, + [6441] = {.lex_state = 0}, + [6442] = {.lex_state = 0}, + [6443] = {.lex_state = 0}, + [6444] = {.lex_state = 176}, + [6445] = {.lex_state = 0}, + [6446] = {.lex_state = 283}, [6447] = {.lex_state = 0}, [6448] = {.lex_state = 0}, [6449] = {.lex_state = 0}, @@ -23805,183 +40293,1280 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6451] = {.lex_state = 0}, [6452] = {.lex_state = 0}, [6453] = {.lex_state = 0}, - [6454] = {.lex_state = 264}, + [6454] = {.lex_state = 159}, [6455] = {.lex_state = 0}, - [6456] = {.lex_state = 148}, - [6457] = {.lex_state = 165}, - [6458] = {.lex_state = 264}, - [6459] = {.lex_state = 264}, + [6456] = {.lex_state = 176}, + [6457] = {.lex_state = 176}, + [6458] = {.lex_state = 0}, + [6459] = {.lex_state = 176}, [6460] = {.lex_state = 0}, - [6461] = {.lex_state = 264}, - [6462] = {.lex_state = 0, .external_lex_state = 3}, - [6463] = {.lex_state = 0}, + [6461] = {.lex_state = 159}, + [6462] = {.lex_state = 0}, + [6463] = {.lex_state = 159}, [6464] = {.lex_state = 0}, - [6465] = {.lex_state = 264}, + [6465] = {.lex_state = 0}, [6466] = {.lex_state = 0}, - [6467] = {.lex_state = 141}, - [6468] = {.lex_state = 75}, + [6467] = {.lex_state = 176}, + [6468] = {.lex_state = 0}, [6469] = {.lex_state = 0}, - [6470] = {.lex_state = 264}, + [6470] = {.lex_state = 0}, [6471] = {.lex_state = 0}, - [6472] = {.lex_state = 264}, - [6473] = {.lex_state = 165}, + [6472] = {.lex_state = 0}, + [6473] = {.lex_state = 0}, [6474] = {.lex_state = 0}, - [6475] = {.lex_state = 264}, + [6475] = {.lex_state = 0}, [6476] = {.lex_state = 0}, - [6477] = {.lex_state = 264}, - [6478] = {.lex_state = 0, .external_lex_state = 3}, + [6477] = {.lex_state = 0}, + [6478] = {.lex_state = 176}, [6479] = {.lex_state = 0}, [6480] = {.lex_state = 0}, - [6481] = {.lex_state = 264}, - [6482] = {.lex_state = 0}, - [6483] = {.lex_state = 165}, - [6484] = {.lex_state = 264}, + [6481] = {.lex_state = 283}, + [6482] = {.lex_state = 176}, + [6483] = {.lex_state = 0}, + [6484] = {.lex_state = 0}, [6485] = {.lex_state = 0}, - [6486] = {.lex_state = 264}, + [6486] = {.lex_state = 0}, [6487] = {.lex_state = 0}, - [6488] = {.lex_state = 264}, + [6488] = {.lex_state = 0}, [6489] = {.lex_state = 0}, [6490] = {.lex_state = 0}, [6491] = {.lex_state = 0}, - [6492] = {.lex_state = 141}, - [6493] = {.lex_state = 264}, - [6494] = {.lex_state = 0}, - [6495] = {.lex_state = 75}, - [6496] = {.lex_state = 75}, + [6492] = {.lex_state = 0}, + [6493] = {.lex_state = 0}, + [6494] = {.lex_state = 176}, + [6495] = {.lex_state = 0}, + [6496] = {.lex_state = 0}, [6497] = {.lex_state = 0}, - [6498] = {.lex_state = 264}, - [6499] = {.lex_state = 141}, - [6500] = {.lex_state = 0, .external_lex_state = 3}, - [6501] = {.lex_state = 0}, - [6502] = {.lex_state = 264}, - [6503] = {.lex_state = 264}, - [6504] = {.lex_state = 165}, - [6505] = {.lex_state = 165}, - [6506] = {.lex_state = 148}, - [6507] = {.lex_state = 0}, - [6508] = {.lex_state = 0}, + [6498] = {.lex_state = 0}, + [6499] = {.lex_state = 0}, + [6500] = {.lex_state = 176}, + [6501] = {.lex_state = 283}, + [6502] = {.lex_state = 176}, + [6503] = {.lex_state = 0}, + [6504] = {.lex_state = 283}, + [6505] = {.lex_state = 0}, + [6506] = {.lex_state = 0}, + [6507] = {.lex_state = 159}, + [6508] = {.lex_state = 176}, [6509] = {.lex_state = 0}, [6510] = {.lex_state = 0}, - [6511] = {.lex_state = 141}, + [6511] = {.lex_state = 0}, [6512] = {.lex_state = 0}, [6513] = {.lex_state = 0}, [6514] = {.lex_state = 0}, - [6515] = {.lex_state = 0}, - [6516] = {.lex_state = 0}, - [6517] = {.lex_state = 165}, + [6515] = {.lex_state = 176}, + [6516] = {.lex_state = 176}, + [6517] = {.lex_state = 178}, [6518] = {.lex_state = 0}, [6519] = {.lex_state = 0}, [6520] = {.lex_state = 0}, - [6521] = {.lex_state = 0, .external_lex_state = 3}, - [6522] = {.lex_state = 0}, + [6521] = {.lex_state = 0}, + [6522] = {.lex_state = 176}, [6523] = {.lex_state = 0}, - [6524] = {.lex_state = 0}, - [6525] = {.lex_state = 141}, - [6526] = {.lex_state = 141}, - [6527] = {.lex_state = 0}, + [6524] = {.lex_state = 159}, + [6525] = {.lex_state = 176}, + [6526] = {.lex_state = 0}, + [6527] = {.lex_state = 176}, [6528] = {.lex_state = 0}, [6529] = {.lex_state = 0}, [6530] = {.lex_state = 0}, [6531] = {.lex_state = 0}, - [6532] = {.lex_state = 0}, - [6533] = {.lex_state = 0}, - [6534] = {.lex_state = 0}, - [6535] = {.lex_state = 0}, + [6532] = {.lex_state = 154}, + [6533] = {.lex_state = 159}, + [6534] = {.lex_state = 283}, + [6535] = {.lex_state = 176}, [6536] = {.lex_state = 0}, [6537] = {.lex_state = 0}, - [6538] = {.lex_state = 165}, + [6538] = {.lex_state = 0}, [6539] = {.lex_state = 0}, - [6540] = {.lex_state = 141}, - [6541] = {.lex_state = 141}, + [6540] = {.lex_state = 0}, + [6541] = {.lex_state = 0}, [6542] = {.lex_state = 0}, [6543] = {.lex_state = 0}, - [6544] = {.lex_state = 0}, - [6545] = {.lex_state = 0}, - [6546] = {.lex_state = 0}, + [6544] = {.lex_state = 143}, + [6545] = {.lex_state = 176}, + [6546] = {.lex_state = 176}, [6547] = {.lex_state = 0}, - [6548] = {.lex_state = 0}, + [6548] = {.lex_state = 283}, [6549] = {.lex_state = 0}, [6550] = {.lex_state = 0}, - [6551] = {.lex_state = 0}, + [6551] = {.lex_state = 176}, [6552] = {.lex_state = 0}, [6553] = {.lex_state = 0}, [6554] = {.lex_state = 0}, - [6555] = {.lex_state = 141}, - [6556] = {.lex_state = 0}, + [6555] = {.lex_state = 0}, + [6556] = {.lex_state = 159}, [6557] = {.lex_state = 0}, - [6558] = {.lex_state = 0}, - [6559] = {.lex_state = 0}, - [6560] = {.lex_state = 264}, - [6561] = {.lex_state = 141}, + [6558] = {.lex_state = 159}, + [6559] = {.lex_state = 159}, + [6560] = {.lex_state = 0}, + [6561] = {.lex_state = 159}, [6562] = {.lex_state = 0}, - [6563] = {.lex_state = 75}, + [6563] = {.lex_state = 159}, [6564] = {.lex_state = 0}, - [6565] = {.lex_state = 141}, - [6566] = {.lex_state = 165}, - [6567] = {.lex_state = 141}, - [6568] = {.lex_state = 0}, + [6565] = {.lex_state = 283}, + [6566] = {.lex_state = 159}, + [6567] = {.lex_state = 0}, + [6568] = {.lex_state = 159}, [6569] = {.lex_state = 0}, [6570] = {.lex_state = 0}, - [6571] = {.lex_state = 0}, - [6572] = {.lex_state = 0}, - [6573] = {.lex_state = 0}, + [6571] = {.lex_state = 176}, + [6572] = {.lex_state = 154}, + [6573] = {.lex_state = 159}, [6574] = {.lex_state = 0}, - [6575] = {.lex_state = 141}, - [6576] = {.lex_state = 148}, + [6575] = {.lex_state = 0}, + [6576] = {.lex_state = 91}, [6577] = {.lex_state = 0}, [6578] = {.lex_state = 0}, [6579] = {.lex_state = 0}, [6580] = {.lex_state = 0}, - [6581] = {.lex_state = 264}, - [6582] = {.lex_state = 264}, - [6583] = {.lex_state = 165}, - [6584] = {.lex_state = 148}, - [6585] = {.lex_state = 165}, - [6586] = {.lex_state = 0}, - [6587] = {.lex_state = 165}, - [6588] = {.lex_state = 141}, - [6589] = {.lex_state = 0, .external_lex_state = 3}, - [6590] = {.lex_state = 0}, - [6591] = {.lex_state = 75}, - [6592] = {.lex_state = 264}, - [6593] = {.lex_state = 264}, - [6594] = {.lex_state = 165}, - [6595] = {.lex_state = 0}, - [6596] = {.lex_state = 165}, - [6597] = {.lex_state = 0}, - [6598] = {.lex_state = 0, .external_lex_state = 3}, - [6599] = {.lex_state = 165}, - [6600] = {.lex_state = 165}, - [6601] = {.lex_state = 264}, - [6602] = {.lex_state = 264}, - [6603] = {.lex_state = 165}, - [6604] = {.lex_state = 75}, - [6605] = {.lex_state = 165}, - [6606] = {.lex_state = 165}, - [6607] = {.lex_state = 0, .external_lex_state = 3}, - [6608] = {.lex_state = 0}, - [6609] = {.lex_state = 264}, - [6610] = {.lex_state = 165}, - [6611] = {.lex_state = 0}, - [6612] = {.lex_state = 165}, - [6613] = {.lex_state = 0, .external_lex_state = 3}, - [6614] = {.lex_state = 264}, - [6615] = {.lex_state = 165}, - [6616] = {.lex_state = 165}, - [6617] = {.lex_state = 165}, - [6618] = {.lex_state = 264}, - [6619] = {.lex_state = 264}, - [6620] = {.lex_state = 0}, - [6621] = {.lex_state = 75}, - [6622] = {.lex_state = 165}, - [6623] = {.lex_state = 264}, - [6624] = {.lex_state = 0}, - [6625] = {.lex_state = 264}, - [6626] = {.lex_state = 0}, - [6627] = {.lex_state = 264}, - [6628] = {.lex_state = 0}, - [6629] = {.lex_state = 264}, - [6630] = {.lex_state = 165}, + [6581] = {.lex_state = 159}, + [6582] = {.lex_state = 0}, + [6583] = {.lex_state = 159}, + [6584] = {.lex_state = 91}, + [6585] = {.lex_state = 176}, + [6586] = {.lex_state = 176}, + [6587] = {.lex_state = 159}, + [6588] = {.lex_state = 159}, + [6589] = {.lex_state = 0}, + [6590] = {.lex_state = 159}, + [6591] = {.lex_state = 0}, + [6592] = {.lex_state = 176}, + [6593] = {.lex_state = 0}, + [6594] = {.lex_state = 176}, + [6595] = {.lex_state = 99}, + [6596] = {.lex_state = 0}, + [6597] = {.lex_state = 99}, + [6598] = {.lex_state = 0}, + [6599] = {.lex_state = 176}, + [6600] = {.lex_state = 283}, + [6601] = {.lex_state = 99}, + [6602] = {.lex_state = 0}, + [6603] = {.lex_state = 176}, + [6604] = {.lex_state = 283}, + [6605] = {.lex_state = 283}, + [6606] = {.lex_state = 283}, + [6607] = {.lex_state = 0}, + [6608] = {.lex_state = 283}, + [6609] = {.lex_state = 283}, + [6610] = {.lex_state = 283}, + [6611] = {.lex_state = 100}, + [6612] = {.lex_state = 0}, + [6613] = {.lex_state = 283, .external_lex_state = 2}, + [6614] = {.lex_state = 283}, + [6615] = {.lex_state = 176}, + [6616] = {.lex_state = 0}, + [6617] = {.lex_state = 100}, + [6618] = {.lex_state = 176}, + [6619] = {.lex_state = 176}, + [6620] = {.lex_state = 283, .external_lex_state = 2}, + [6621] = {.lex_state = 283, .external_lex_state = 2}, + [6622] = {.lex_state = 176}, + [6623] = {.lex_state = 0}, + [6624] = {.lex_state = 283, .external_lex_state = 2}, + [6625] = {.lex_state = 283}, + [6626] = {.lex_state = 283, .external_lex_state = 2}, + [6627] = {.lex_state = 176}, + [6628] = {.lex_state = 283}, + [6629] = {.lex_state = 283}, + [6630] = {.lex_state = 176}, + [6631] = {.lex_state = 0}, + [6632] = {.lex_state = 0}, + [6633] = {.lex_state = 283}, + [6634] = {.lex_state = 99}, + [6635] = {.lex_state = 0}, + [6636] = {.lex_state = 283}, + [6637] = {.lex_state = 283}, + [6638] = {.lex_state = 283}, + [6639] = {.lex_state = 0}, + [6640] = {.lex_state = 283}, + [6641] = {.lex_state = 283}, + [6642] = {.lex_state = 0}, + [6643] = {.lex_state = 283}, + [6644] = {.lex_state = 0}, + [6645] = {.lex_state = 0}, + [6646] = {.lex_state = 283}, + [6647] = {.lex_state = 283}, + [6648] = {.lex_state = 0}, + [6649] = {.lex_state = 0}, + [6650] = {.lex_state = 283}, + [6651] = {.lex_state = 0}, + [6652] = {.lex_state = 283}, + [6653] = {.lex_state = 0}, + [6654] = {.lex_state = 283}, + [6655] = {.lex_state = 0}, + [6656] = {.lex_state = 283}, + [6657] = {.lex_state = 0}, + [6658] = {.lex_state = 0}, + [6659] = {.lex_state = 0}, + [6660] = {.lex_state = 0}, + [6661] = {.lex_state = 0}, + [6662] = {.lex_state = 0}, + [6663] = {.lex_state = 283}, + [6664] = {.lex_state = 283}, + [6665] = {.lex_state = 0}, + [6666] = {.lex_state = 283}, + [6667] = {.lex_state = 0}, + [6668] = {.lex_state = 99}, + [6669] = {.lex_state = 283}, + [6670] = {.lex_state = 0}, + [6671] = {.lex_state = 0}, + [6672] = {.lex_state = 0}, + [6673] = {.lex_state = 283}, + [6674] = {.lex_state = 176}, + [6675] = {.lex_state = 283}, + [6676] = {.lex_state = 0}, + [6677] = {.lex_state = 0}, + [6678] = {.lex_state = 283, .external_lex_state = 2}, + [6679] = {.lex_state = 283}, + [6680] = {.lex_state = 0}, + [6681] = {.lex_state = 176}, + [6682] = {.lex_state = 0}, + [6683] = {.lex_state = 283}, + [6684] = {.lex_state = 0}, + [6685] = {.lex_state = 0}, + [6686] = {.lex_state = 0}, + [6687] = {.lex_state = 0}, + [6688] = {.lex_state = 0}, + [6689] = {.lex_state = 0}, + [6690] = {.lex_state = 0}, + [6691] = {.lex_state = 0}, + [6692] = {.lex_state = 176}, + [6693] = {.lex_state = 0}, + [6694] = {.lex_state = 0}, + [6695] = {.lex_state = 283}, + [6696] = {.lex_state = 0}, + [6697] = {.lex_state = 0}, + [6698] = {.lex_state = 176}, + [6699] = {.lex_state = 0}, + [6700] = {.lex_state = 0}, + [6701] = {.lex_state = 0}, + [6702] = {.lex_state = 0}, + [6703] = {.lex_state = 0}, + [6704] = {.lex_state = 0}, + [6705] = {.lex_state = 283}, + [6706] = {.lex_state = 0}, + [6707] = {.lex_state = 0}, + [6708] = {.lex_state = 0}, + [6709] = {.lex_state = 0}, + [6710] = {.lex_state = 176}, + [6711] = {.lex_state = 0}, + [6712] = {.lex_state = 283}, + [6713] = {.lex_state = 0}, + [6714] = {.lex_state = 0}, + [6715] = {.lex_state = 0}, + [6716] = {.lex_state = 0}, + [6717] = {.lex_state = 0}, + [6718] = {.lex_state = 0}, + [6719] = {.lex_state = 0}, + [6720] = {.lex_state = 99}, + [6721] = {.lex_state = 283}, + [6722] = {.lex_state = 0}, + [6723] = {.lex_state = 0}, + [6724] = {.lex_state = 0}, + [6725] = {.lex_state = 283}, + [6726] = {.lex_state = 176}, + [6727] = {.lex_state = 99}, + [6728] = {.lex_state = 283}, + [6729] = {.lex_state = 176}, + [6730] = {.lex_state = 0}, + [6731] = {.lex_state = 176}, + [6732] = {.lex_state = 0}, + [6733] = {.lex_state = 0}, + [6734] = {.lex_state = 0}, + [6735] = {.lex_state = 0}, + [6736] = {.lex_state = 0}, + [6737] = {.lex_state = 0}, + [6738] = {.lex_state = 0}, + [6739] = {.lex_state = 0}, + [6740] = {.lex_state = 0}, + [6741] = {.lex_state = 0}, + [6742] = {.lex_state = 0}, + [6743] = {.lex_state = 283}, + [6744] = {.lex_state = 176}, + [6745] = {.lex_state = 0}, + [6746] = {.lex_state = 0}, + [6747] = {.lex_state = 0}, + [6748] = {.lex_state = 283}, + [6749] = {.lex_state = 0}, + [6750] = {.lex_state = 283}, + [6751] = {.lex_state = 99}, + [6752] = {.lex_state = 0}, + [6753] = {.lex_state = 176}, + [6754] = {.lex_state = 0}, + [6755] = {.lex_state = 0}, + [6756] = {.lex_state = 99}, + [6757] = {.lex_state = 176}, + [6758] = {.lex_state = 0}, + [6759] = {.lex_state = 0}, + [6760] = {.lex_state = 0}, + [6761] = {.lex_state = 283}, + [6762] = {.lex_state = 0}, + [6763] = {.lex_state = 0}, + [6764] = {.lex_state = 0}, + [6765] = {.lex_state = 0}, + [6766] = {.lex_state = 0}, + [6767] = {.lex_state = 0}, + [6768] = {.lex_state = 0}, + [6769] = {.lex_state = 0}, + [6770] = {.lex_state = 0}, + [6771] = {.lex_state = 0}, + [6772] = {.lex_state = 0}, + [6773] = {.lex_state = 0}, + [6774] = {.lex_state = 99}, + [6775] = {.lex_state = 283}, + [6776] = {.lex_state = 0}, + [6777] = {.lex_state = 283}, + [6778] = {.lex_state = 0}, + [6779] = {.lex_state = 176}, + [6780] = {.lex_state = 0}, + [6781] = {.lex_state = 283}, + [6782] = {.lex_state = 0}, + [6783] = {.lex_state = 0}, + [6784] = {.lex_state = 0}, + [6785] = {.lex_state = 0}, + [6786] = {.lex_state = 0}, + [6787] = {.lex_state = 283}, + [6788] = {.lex_state = 0}, + [6789] = {.lex_state = 0}, + [6790] = {.lex_state = 0}, + [6791] = {.lex_state = 283}, + [6792] = {.lex_state = 283}, + [6793] = {.lex_state = 99}, + [6794] = {.lex_state = 0}, + [6795] = {.lex_state = 0}, + [6796] = {.lex_state = 0}, + [6797] = {.lex_state = 0}, + [6798] = {.lex_state = 283}, + [6799] = {.lex_state = 283}, + [6800] = {.lex_state = 283}, + [6801] = {.lex_state = 0}, + [6802] = {.lex_state = 0}, + [6803] = {.lex_state = 0}, + [6804] = {.lex_state = 0}, + [6805] = {.lex_state = 0}, + [6806] = {.lex_state = 283}, + [6807] = {.lex_state = 176}, + [6808] = {.lex_state = 0}, + [6809] = {.lex_state = 0}, + [6810] = {.lex_state = 99}, + [6811] = {.lex_state = 176}, + [6812] = {.lex_state = 0}, + [6813] = {.lex_state = 0}, + [6814] = {.lex_state = 0}, + [6815] = {.lex_state = 0}, + [6816] = {.lex_state = 0}, + [6817] = {.lex_state = 0}, + [6818] = {.lex_state = 0}, + [6819] = {.lex_state = 0}, + [6820] = {.lex_state = 0}, + [6821] = {.lex_state = 0}, + [6822] = {.lex_state = 0}, + [6823] = {.lex_state = 0}, + [6824] = {.lex_state = 0}, + [6825] = {.lex_state = 0}, + [6826] = {.lex_state = 283}, + [6827] = {.lex_state = 283}, + [6828] = {.lex_state = 176}, + [6829] = {.lex_state = 176}, + [6830] = {.lex_state = 176}, + [6831] = {.lex_state = 0}, + [6832] = {.lex_state = 0}, + [6833] = {.lex_state = 176}, + [6834] = {.lex_state = 0}, + [6835] = {.lex_state = 0}, + [6836] = {.lex_state = 283}, + [6837] = {.lex_state = 100}, + [6838] = {.lex_state = 283}, + [6839] = {.lex_state = 283}, + [6840] = {.lex_state = 100}, + [6841] = {.lex_state = 0}, + [6842] = {.lex_state = 99}, + [6843] = {.lex_state = 0}, + [6844] = {.lex_state = 0}, + [6845] = {.lex_state = 176}, + [6846] = {.lex_state = 0}, + [6847] = {.lex_state = 0}, + [6848] = {.lex_state = 99}, + [6849] = {.lex_state = 283}, + [6850] = {.lex_state = 99}, + [6851] = {.lex_state = 0}, + [6852] = {.lex_state = 0}, + [6853] = {.lex_state = 0}, + [6854] = {.lex_state = 283}, + [6855] = {.lex_state = 283}, + [6856] = {.lex_state = 0}, + [6857] = {.lex_state = 283}, + [6858] = {.lex_state = 283}, + [6859] = {.lex_state = 0}, + [6860] = {.lex_state = 176}, + [6861] = {.lex_state = 99}, + [6862] = {.lex_state = 0}, + [6863] = {.lex_state = 100}, + [6864] = {.lex_state = 176}, + [6865] = {.lex_state = 176}, + [6866] = {.lex_state = 0}, + [6867] = {.lex_state = 283}, + [6868] = {.lex_state = 0}, + [6869] = {.lex_state = 283}, + [6870] = {.lex_state = 283}, + [6871] = {.lex_state = 283}, + [6872] = {.lex_state = 0}, + [6873] = {.lex_state = 99}, + [6874] = {.lex_state = 283}, + [6875] = {.lex_state = 283}, + [6876] = {.lex_state = 283}, + [6877] = {.lex_state = 176}, + [6878] = {.lex_state = 176}, + [6879] = {.lex_state = 0}, + [6880] = {.lex_state = 283}, + [6881] = {.lex_state = 100}, + [6882] = {.lex_state = 0}, + [6883] = {.lex_state = 283}, + [6884] = {.lex_state = 99}, + [6885] = {.lex_state = 176}, + [6886] = {.lex_state = 0}, + [6887] = {.lex_state = 0}, + [6888] = {.lex_state = 0}, + [6889] = {.lex_state = 0}, + [6890] = {.lex_state = 0}, + [6891] = {.lex_state = 0}, + [6892] = {.lex_state = 283}, + [6893] = {.lex_state = 0}, + [6894] = {.lex_state = 0}, + [6895] = {.lex_state = 0}, + [6896] = {.lex_state = 0}, + [6897] = {.lex_state = 0}, + [6898] = {.lex_state = 283}, + [6899] = {.lex_state = 0}, + [6900] = {.lex_state = 0}, + [6901] = {.lex_state = 0}, + [6902] = {.lex_state = 176}, + [6903] = {.lex_state = 0}, + [6904] = {.lex_state = 0}, + [6905] = {.lex_state = 0}, + [6906] = {.lex_state = 283}, + [6907] = {.lex_state = 0}, + [6908] = {.lex_state = 99}, + [6909] = {.lex_state = 283}, + [6910] = {.lex_state = 283}, + [6911] = {.lex_state = 0}, + [6912] = {.lex_state = 283}, + [6913] = {.lex_state = 0}, + [6914] = {.lex_state = 0}, + [6915] = {.lex_state = 0}, + [6916] = {.lex_state = 0}, + [6917] = {.lex_state = 100}, + [6918] = {.lex_state = 283}, + [6919] = {.lex_state = 283}, + [6920] = {.lex_state = 176}, + [6921] = {.lex_state = 283}, + [6922] = {.lex_state = 0}, + [6923] = {.lex_state = 0}, + [6924] = {.lex_state = 0}, + [6925] = {.lex_state = 0}, + [6926] = {.lex_state = 0}, + [6927] = {.lex_state = 0}, + [6928] = {.lex_state = 0}, + [6929] = {.lex_state = 0}, + [6930] = {.lex_state = 0}, + [6931] = {.lex_state = 0}, + [6932] = {.lex_state = 0}, + [6933] = {.lex_state = 0}, + [6934] = {.lex_state = 0}, + [6935] = {.lex_state = 0}, + [6936] = {.lex_state = 0}, + [6937] = {.lex_state = 0}, + [6938] = {.lex_state = 0}, + [6939] = {.lex_state = 283}, + [6940] = {.lex_state = 99}, + [6941] = {.lex_state = 0}, + [6942] = {.lex_state = 0}, + [6943] = {.lex_state = 0}, + [6944] = {.lex_state = 0}, + [6945] = {.lex_state = 283}, + [6946] = {.lex_state = 283}, + [6947] = {.lex_state = 0}, + [6948] = {.lex_state = 176}, + [6949] = {.lex_state = 176}, + [6950] = {.lex_state = 283}, + [6951] = {.lex_state = 99}, + [6952] = {.lex_state = 283}, + [6953] = {.lex_state = 0}, + [6954] = {.lex_state = 283}, + [6955] = {.lex_state = 176}, + [6956] = {.lex_state = 100}, + [6957] = {.lex_state = 0}, + [6958] = {.lex_state = 0}, + [6959] = {.lex_state = 0}, + [6960] = {.lex_state = 0}, + [6961] = {.lex_state = 0}, + [6962] = {.lex_state = 0}, + [6963] = {.lex_state = 176}, + [6964] = {.lex_state = 0}, + [6965] = {.lex_state = 176}, + [6966] = {.lex_state = 0}, + [6967] = {.lex_state = 283}, + [6968] = {.lex_state = 0}, + [6969] = {.lex_state = 0}, + [6970] = {.lex_state = 0}, + [6971] = {.lex_state = 176}, + [6972] = {.lex_state = 91}, + [6973] = {.lex_state = 0}, + [6974] = {.lex_state = 0}, + [6975] = {.lex_state = 0}, + [6976] = {.lex_state = 0}, + [6977] = {.lex_state = 159}, + [6978] = {.lex_state = 283}, + [6979] = {.lex_state = 0}, + [6980] = {.lex_state = 0}, + [6981] = {.lex_state = 0}, + [6982] = {.lex_state = 176}, + [6983] = {.lex_state = 0}, + [6984] = {.lex_state = 0}, + [6985] = {.lex_state = 0}, + [6986] = {.lex_state = 176}, + [6987] = {.lex_state = 0}, + [6988] = {.lex_state = 0}, + [6989] = {.lex_state = 0}, + [6990] = {.lex_state = 0}, + [6991] = {.lex_state = 176}, + [6992] = {.lex_state = 0}, + [6993] = {.lex_state = 0}, + [6994] = {.lex_state = 0}, + [6995] = {.lex_state = 176}, + [6996] = {.lex_state = 0}, + [6997] = {.lex_state = 91}, + [6998] = {.lex_state = 0}, + [6999] = {.lex_state = 0}, + [7000] = {.lex_state = 0}, + [7001] = {.lex_state = 0}, + [7002] = {.lex_state = 0}, + [7003] = {.lex_state = 151}, + [7004] = {.lex_state = 0}, + [7005] = {.lex_state = 176}, + [7006] = {.lex_state = 0}, + [7007] = {.lex_state = 0}, + [7008] = {.lex_state = 0}, + [7009] = {.lex_state = 0}, + [7010] = {.lex_state = 0}, + [7011] = {.lex_state = 0}, + [7012] = {.lex_state = 0}, + [7013] = {.lex_state = 0}, + [7014] = {.lex_state = 0}, + [7015] = {.lex_state = 0}, + [7016] = {.lex_state = 0}, + [7017] = {.lex_state = 0}, + [7018] = {.lex_state = 0, .external_lex_state = 2}, + [7019] = {.lex_state = 0}, + [7020] = {.lex_state = 0}, + [7021] = {.lex_state = 0}, + [7022] = {.lex_state = 283}, + [7023] = {.lex_state = 0}, + [7024] = {.lex_state = 0}, + [7025] = {.lex_state = 0}, + [7026] = {.lex_state = 0}, + [7027] = {.lex_state = 0}, + [7028] = {.lex_state = 151}, + [7029] = {.lex_state = 0}, + [7030] = {.lex_state = 151}, + [7031] = {.lex_state = 0}, + [7032] = {.lex_state = 91}, + [7033] = {.lex_state = 0}, + [7034] = {.lex_state = 0}, + [7035] = {.lex_state = 176}, + [7036] = {.lex_state = 176}, + [7037] = {.lex_state = 0}, + [7038] = {.lex_state = 176}, + [7039] = {.lex_state = 0}, + [7040] = {.lex_state = 0}, + [7041] = {.lex_state = 0}, + [7042] = {.lex_state = 0, .external_lex_state = 2}, + [7043] = {.lex_state = 0}, + [7044] = {.lex_state = 0}, + [7045] = {.lex_state = 176}, + [7046] = {.lex_state = 0}, + [7047] = {.lex_state = 0}, + [7048] = {.lex_state = 0}, + [7049] = {.lex_state = 0}, + [7050] = {.lex_state = 0}, + [7051] = {.lex_state = 0}, + [7052] = {.lex_state = 283}, + [7053] = {.lex_state = 0}, + [7054] = {.lex_state = 0}, + [7055] = {.lex_state = 0}, + [7056] = {.lex_state = 0}, + [7057] = {.lex_state = 0}, + [7058] = {.lex_state = 0}, + [7059] = {.lex_state = 0}, + [7060] = {.lex_state = 151}, + [7061] = {.lex_state = 0}, + [7062] = {.lex_state = 91}, + [7063] = {.lex_state = 176}, + [7064] = {.lex_state = 176}, + [7065] = {.lex_state = 91}, + [7066] = {.lex_state = 283}, + [7067] = {.lex_state = 0}, + [7068] = {.lex_state = 0}, + [7069] = {.lex_state = 176}, + [7070] = {.lex_state = 0}, + [7071] = {.lex_state = 0}, + [7072] = {.lex_state = 0}, + [7073] = {.lex_state = 0}, + [7074] = {.lex_state = 176}, + [7075] = {.lex_state = 0}, + [7076] = {.lex_state = 0}, + [7077] = {.lex_state = 0}, + [7078] = {.lex_state = 0}, + [7079] = {.lex_state = 0}, + [7080] = {.lex_state = 176}, + [7081] = {.lex_state = 0}, + [7082] = {.lex_state = 0}, + [7083] = {.lex_state = 0}, + [7084] = {.lex_state = 0}, + [7085] = {.lex_state = 0}, + [7086] = {.lex_state = 176}, + [7087] = {.lex_state = 176}, + [7088] = {.lex_state = 176}, + [7089] = {.lex_state = 176}, + [7090] = {.lex_state = 176}, + [7091] = {.lex_state = 176}, + [7092] = {.lex_state = 176}, + [7093] = {.lex_state = 0}, + [7094] = {.lex_state = 0}, + [7095] = {.lex_state = 0}, + [7096] = {.lex_state = 0}, + [7097] = {.lex_state = 149}, + [7098] = {.lex_state = 0}, + [7099] = {.lex_state = 0}, + [7100] = {.lex_state = 0}, + [7101] = {.lex_state = 0}, + [7102] = {.lex_state = 0}, + [7103] = {.lex_state = 0, .external_lex_state = 2}, + [7104] = {.lex_state = 0}, + [7105] = {.lex_state = 0}, + [7106] = {.lex_state = 0}, + [7107] = {.lex_state = 0}, + [7108] = {.lex_state = 0}, + [7109] = {.lex_state = 0}, + [7110] = {.lex_state = 0}, + [7111] = {.lex_state = 0}, + [7112] = {.lex_state = 283}, + [7113] = {.lex_state = 153}, + [7114] = {.lex_state = 149}, + [7115] = {.lex_state = 0}, + [7116] = {.lex_state = 283}, + [7117] = {.lex_state = 0}, + [7118] = {.lex_state = 176}, + [7119] = {.lex_state = 0}, + [7120] = {.lex_state = 149}, + [7121] = {.lex_state = 176}, + [7122] = {.lex_state = 0}, + [7123] = {.lex_state = 0}, + [7124] = {.lex_state = 0}, + [7125] = {.lex_state = 149}, + [7126] = {.lex_state = 152}, + [7127] = {.lex_state = 0}, + [7128] = {.lex_state = 0}, + [7129] = {.lex_state = 0}, + [7130] = {.lex_state = 0}, + [7131] = {.lex_state = 151}, + [7132] = {.lex_state = 0}, + [7133] = {.lex_state = 176}, + [7134] = {.lex_state = 283}, + [7135] = {.lex_state = 283}, + [7136] = {.lex_state = 91}, + [7137] = {.lex_state = 149}, + [7138] = {.lex_state = 0}, + [7139] = {.lex_state = 91}, + [7140] = {.lex_state = 0}, + [7141] = {.lex_state = 0}, + [7142] = {.lex_state = 176}, + [7143] = {.lex_state = 0}, + [7144] = {.lex_state = 176}, + [7145] = {.lex_state = 283}, + [7146] = {.lex_state = 283}, + [7147] = {.lex_state = 283}, + [7148] = {.lex_state = 0}, + [7149] = {.lex_state = 209}, + [7150] = {.lex_state = 91}, + [7151] = {.lex_state = 167}, + [7152] = {.lex_state = 91}, + [7153] = {.lex_state = 0}, + [7154] = {.lex_state = 0}, + [7155] = {.lex_state = 151}, + [7156] = {.lex_state = 176}, + [7157] = {.lex_state = 0}, + [7158] = {.lex_state = 159}, + [7159] = {.lex_state = 0}, + [7160] = {.lex_state = 151}, + [7161] = {.lex_state = 0, .external_lex_state = 2}, + [7162] = {.lex_state = 0}, + [7163] = {.lex_state = 176}, + [7164] = {.lex_state = 283}, + [7165] = {.lex_state = 0}, + [7166] = {.lex_state = 0}, + [7167] = {.lex_state = 0}, + [7168] = {.lex_state = 0}, + [7169] = {.lex_state = 151}, + [7170] = {.lex_state = 0}, + [7171] = {.lex_state = 0}, + [7172] = {.lex_state = 0}, + [7173] = {.lex_state = 159}, + [7174] = {.lex_state = 283}, + [7175] = {.lex_state = 0}, + [7176] = {.lex_state = 0}, + [7177] = {.lex_state = 0}, + [7178] = {.lex_state = 0}, + [7179] = {.lex_state = 0}, + [7180] = {.lex_state = 0}, + [7181] = {.lex_state = 176}, + [7182] = {.lex_state = 151}, + [7183] = {.lex_state = 0}, + [7184] = {.lex_state = 0}, + [7185] = {.lex_state = 176}, + [7186] = {.lex_state = 91}, + [7187] = {.lex_state = 91}, + [7188] = {.lex_state = 151}, + [7189] = {.lex_state = 0}, + [7190] = {.lex_state = 151}, + [7191] = {.lex_state = 283}, + [7192] = {.lex_state = 0}, + [7193] = {.lex_state = 0}, + [7194] = {.lex_state = 0}, + [7195] = {.lex_state = 176}, + [7196] = {.lex_state = 176}, + [7197] = {.lex_state = 0}, + [7198] = {.lex_state = 0}, + [7199] = {.lex_state = 91}, + [7200] = {.lex_state = 0}, + [7201] = {.lex_state = 151}, + [7202] = {.lex_state = 151}, + [7203] = {.lex_state = 0}, + [7204] = {.lex_state = 0}, + [7205] = {.lex_state = 0}, + [7206] = {.lex_state = 283}, + [7207] = {.lex_state = 0}, + [7208] = {.lex_state = 176}, + [7209] = {.lex_state = 151}, + [7210] = {.lex_state = 176}, + [7211] = {.lex_state = 91}, + [7212] = {.lex_state = 0}, + [7213] = {.lex_state = 176}, + [7214] = {.lex_state = 0}, + [7215] = {.lex_state = 176}, + [7216] = {.lex_state = 0}, + [7217] = {.lex_state = 91}, + [7218] = {.lex_state = 0}, + [7219] = {.lex_state = 0}, + [7220] = {.lex_state = 0}, + [7221] = {.lex_state = 0}, + [7222] = {.lex_state = 0}, + [7223] = {.lex_state = 0}, + [7224] = {.lex_state = 0}, + [7225] = {.lex_state = 0}, + [7226] = {.lex_state = 0}, + [7227] = {.lex_state = 176}, + [7228] = {.lex_state = 0}, + [7229] = {.lex_state = 0}, + [7230] = {.lex_state = 0}, + [7231] = {.lex_state = 0}, + [7232] = {.lex_state = 0}, + [7233] = {.lex_state = 0}, + [7234] = {.lex_state = 91}, + [7235] = {.lex_state = 0}, + [7236] = {.lex_state = 0}, + [7237] = {.lex_state = 283}, + [7238] = {.lex_state = 159}, + [7239] = {.lex_state = 0}, + [7240] = {.lex_state = 283}, + [7241] = {.lex_state = 0}, + [7242] = {.lex_state = 91}, + [7243] = {.lex_state = 0}, + [7244] = {.lex_state = 0}, + [7245] = {.lex_state = 151}, + [7246] = {.lex_state = 0}, + [7247] = {.lex_state = 151}, + [7248] = {.lex_state = 91}, + [7249] = {.lex_state = 0}, + [7250] = {.lex_state = 0}, + [7251] = {.lex_state = 0}, + [7252] = {.lex_state = 0}, + [7253] = {.lex_state = 0}, + [7254] = {.lex_state = 0}, + [7255] = {.lex_state = 0}, + [7256] = {.lex_state = 0}, + [7257] = {.lex_state = 0}, + [7258] = {.lex_state = 0, .external_lex_state = 3}, + [7259] = {.lex_state = 91}, + [7260] = {.lex_state = 0}, + [7261] = {.lex_state = 0}, + [7262] = {.lex_state = 0}, + [7263] = {.lex_state = 176}, + [7264] = {.lex_state = 0}, + [7265] = {.lex_state = 0}, + [7266] = {.lex_state = 0}, + [7267] = {.lex_state = 0}, + [7268] = {.lex_state = 0}, + [7269] = {.lex_state = 0}, + [7270] = {.lex_state = 176}, + [7271] = {.lex_state = 0}, + [7272] = {.lex_state = 283}, + [7273] = {.lex_state = 283}, + [7274] = {.lex_state = 283}, + [7275] = {.lex_state = 159}, + [7276] = {.lex_state = 0}, + [7277] = {.lex_state = 0}, + [7278] = {.lex_state = 176}, + [7279] = {.lex_state = 0}, + [7280] = {.lex_state = 0}, + [7281] = {.lex_state = 0}, + [7282] = {.lex_state = 283}, + [7283] = {.lex_state = 0}, + [7284] = {.lex_state = 0}, + [7285] = {.lex_state = 0}, + [7286] = {.lex_state = 176}, + [7287] = {.lex_state = 0}, + [7288] = {.lex_state = 151}, + [7289] = {.lex_state = 91}, + [7290] = {.lex_state = 91}, + [7291] = {.lex_state = 176}, + [7292] = {.lex_state = 0}, + [7293] = {.lex_state = 151}, + [7294] = {.lex_state = 176}, + [7295] = {.lex_state = 0}, + [7296] = {.lex_state = 283}, + [7297] = {.lex_state = 0}, + [7298] = {.lex_state = 0}, + [7299] = {.lex_state = 176}, + [7300] = {.lex_state = 0}, + [7301] = {.lex_state = 0}, + [7302] = {.lex_state = 283}, + [7303] = {.lex_state = 0, .external_lex_state = 3}, + [7304] = {.lex_state = 176}, + [7305] = {.lex_state = 0}, + [7306] = {.lex_state = 151}, + [7307] = {.lex_state = 0}, + [7308] = {.lex_state = 0}, + [7309] = {.lex_state = 176}, + [7310] = {.lex_state = 176}, + [7311] = {.lex_state = 0}, + [7312] = {.lex_state = 0}, + [7313] = {.lex_state = 0}, + [7314] = {.lex_state = 0}, + [7315] = {.lex_state = 0}, + [7316] = {.lex_state = 0}, + [7317] = {.lex_state = 0}, + [7318] = {.lex_state = 0}, + [7319] = {.lex_state = 176}, + [7320] = {.lex_state = 0}, + [7321] = {.lex_state = 0}, + [7322] = {.lex_state = 0}, + [7323] = {.lex_state = 0}, + [7324] = {.lex_state = 0}, + [7325] = {.lex_state = 91}, + [7326] = {.lex_state = 0}, + [7327] = {.lex_state = 0}, + [7328] = {.lex_state = 0}, + [7329] = {.lex_state = 91}, + [7330] = {.lex_state = 0}, + [7331] = {.lex_state = 0}, + [7332] = {.lex_state = 0}, + [7333] = {.lex_state = 151}, + [7334] = {.lex_state = 0}, + [7335] = {.lex_state = 176}, + [7336] = {.lex_state = 0}, + [7337] = {.lex_state = 0}, + [7338] = {.lex_state = 91}, + [7339] = {.lex_state = 159}, + [7340] = {.lex_state = 0}, + [7341] = {.lex_state = 0}, + [7342] = {.lex_state = 0}, + [7343] = {.lex_state = 176}, + [7344] = {.lex_state = 0}, + [7345] = {.lex_state = 283}, + [7346] = {.lex_state = 159}, + [7347] = {.lex_state = 91}, + [7348] = {.lex_state = 159}, + [7349] = {.lex_state = 0}, + [7350] = {.lex_state = 176}, + [7351] = {.lex_state = 91}, + [7352] = {.lex_state = 0}, + [7353] = {.lex_state = 0}, + [7354] = {.lex_state = 0}, + [7355] = {.lex_state = 0}, + [7356] = {.lex_state = 0}, + [7357] = {.lex_state = 159}, + [7358] = {.lex_state = 0}, + [7359] = {.lex_state = 0}, + [7360] = {.lex_state = 159}, + [7361] = {.lex_state = 0}, + [7362] = {.lex_state = 176}, + [7363] = {.lex_state = 0}, + [7364] = {.lex_state = 0}, + [7365] = {.lex_state = 151}, + [7366] = {.lex_state = 0}, + [7367] = {.lex_state = 0}, + [7368] = {.lex_state = 176}, + [7369] = {.lex_state = 0}, + [7370] = {.lex_state = 0}, + [7371] = {.lex_state = 0}, + [7372] = {.lex_state = 0}, + [7373] = {.lex_state = 0}, + [7374] = {.lex_state = 0}, + [7375] = {.lex_state = 0}, + [7376] = {.lex_state = 283}, + [7377] = {.lex_state = 0}, + [7378] = {.lex_state = 0}, + [7379] = {.lex_state = 0}, + [7380] = {.lex_state = 0}, + [7381] = {.lex_state = 0}, + [7382] = {.lex_state = 0}, + [7383] = {.lex_state = 0}, + [7384] = {.lex_state = 0}, + [7385] = {.lex_state = 0}, + [7386] = {.lex_state = 0}, + [7387] = {.lex_state = 0}, + [7388] = {.lex_state = 0}, + [7389] = {.lex_state = 0}, + [7390] = {.lex_state = 0}, + [7391] = {.lex_state = 0}, + [7392] = {.lex_state = 0}, + [7393] = {.lex_state = 0}, + [7394] = {.lex_state = 0}, + [7395] = {.lex_state = 176}, + [7396] = {.lex_state = 0}, + [7397] = {.lex_state = 283}, + [7398] = {.lex_state = 283}, + [7399] = {.lex_state = 0}, + [7400] = {.lex_state = 283}, + [7401] = {.lex_state = 0}, + [7402] = {.lex_state = 0}, + [7403] = {.lex_state = 0}, + [7404] = {.lex_state = 0}, + [7405] = {.lex_state = 176}, + [7406] = {.lex_state = 151}, + [7407] = {.lex_state = 283}, + [7408] = {.lex_state = 151}, + [7409] = {.lex_state = 0}, + [7410] = {.lex_state = 176}, + [7411] = {.lex_state = 0}, + [7412] = {.lex_state = 283}, + [7413] = {.lex_state = 0, .external_lex_state = 3}, + [7414] = {.lex_state = 0}, + [7415] = {.lex_state = 0}, + [7416] = {.lex_state = 0}, + [7417] = {.lex_state = 91}, + [7418] = {.lex_state = 0}, + [7419] = {.lex_state = 0}, + [7420] = {.lex_state = 0}, + [7421] = {.lex_state = 0}, + [7422] = {.lex_state = 91}, + [7423] = {.lex_state = 0}, + [7424] = {.lex_state = 0}, + [7425] = {.lex_state = 151}, + [7426] = {.lex_state = 0}, + [7427] = {.lex_state = 151}, + [7428] = {.lex_state = 176}, + [7429] = {.lex_state = 0}, + [7430] = {.lex_state = 0}, + [7431] = {.lex_state = 0}, + [7432] = {.lex_state = 0}, + [7433] = {.lex_state = 0}, + [7434] = {.lex_state = 151}, + [7435] = {.lex_state = 159}, + [7436] = {.lex_state = 151}, + [7437] = {.lex_state = 0}, + [7438] = {.lex_state = 0}, + [7439] = {.lex_state = 0}, + [7440] = {.lex_state = 283}, + [7441] = {.lex_state = 0}, + [7442] = {.lex_state = 0}, + [7443] = {.lex_state = 176}, + [7444] = {.lex_state = 283}, + [7445] = {.lex_state = 0}, + [7446] = {.lex_state = 176}, + [7447] = {.lex_state = 283}, + [7448] = {.lex_state = 0, .external_lex_state = 3}, + [7449] = {.lex_state = 0}, + [7450] = {.lex_state = 0}, + [7451] = {.lex_state = 0}, + [7452] = {.lex_state = 0}, + [7453] = {.lex_state = 0, .external_lex_state = 2}, + [7454] = {.lex_state = 0}, + [7455] = {.lex_state = 91}, + [7456] = {.lex_state = 0}, + [7457] = {.lex_state = 0}, + [7458] = {.lex_state = 0}, + [7459] = {.lex_state = 0}, + [7460] = {.lex_state = 0}, + [7461] = {.lex_state = 0}, + [7462] = {.lex_state = 0}, + [7463] = {.lex_state = 151}, + [7464] = {.lex_state = 0}, + [7465] = {.lex_state = 159}, + [7466] = {.lex_state = 0}, + [7467] = {.lex_state = 151}, + [7468] = {.lex_state = 176}, + [7469] = {.lex_state = 151}, + [7470] = {.lex_state = 283}, + [7471] = {.lex_state = 0}, + [7472] = {.lex_state = 0}, + [7473] = {.lex_state = 176}, + [7474] = {.lex_state = 283}, + [7475] = {.lex_state = 0}, + [7476] = {.lex_state = 0}, + [7477] = {.lex_state = 283}, + [7478] = {.lex_state = 0, .external_lex_state = 3}, + [7479] = {.lex_state = 0}, + [7480] = {.lex_state = 0}, + [7481] = {.lex_state = 0}, + [7482] = {.lex_state = 0}, + [7483] = {.lex_state = 0}, + [7484] = {.lex_state = 0}, + [7485] = {.lex_state = 0}, + [7486] = {.lex_state = 0}, + [7487] = {.lex_state = 0}, + [7488] = {.lex_state = 0}, + [7489] = {.lex_state = 0}, + [7490] = {.lex_state = 0}, + [7491] = {.lex_state = 159}, + [7492] = {.lex_state = 176}, + [7493] = {.lex_state = 0}, + [7494] = {.lex_state = 159}, + [7495] = {.lex_state = 283}, + [7496] = {.lex_state = 283}, + [7497] = {.lex_state = 0}, + [7498] = {.lex_state = 283}, + [7499] = {.lex_state = 0}, + [7500] = {.lex_state = 0}, + [7501] = {.lex_state = 176}, + [7502] = {.lex_state = 283}, + [7503] = {.lex_state = 0}, + [7504] = {.lex_state = 151}, + [7505] = {.lex_state = 283}, + [7506] = {.lex_state = 0, .external_lex_state = 3}, + [7507] = {.lex_state = 0}, + [7508] = {.lex_state = 0}, + [7509] = {.lex_state = 151}, + [7510] = {.lex_state = 91}, + [7511] = {.lex_state = 0}, + [7512] = {.lex_state = 159}, + [7513] = {.lex_state = 0}, + [7514] = {.lex_state = 283}, + [7515] = {.lex_state = 176}, + [7516] = {.lex_state = 0}, + [7517] = {.lex_state = 0}, + [7518] = {.lex_state = 283}, + [7519] = {.lex_state = 0}, + [7520] = {.lex_state = 0}, + [7521] = {.lex_state = 0}, + [7522] = {.lex_state = 176}, + [7523] = {.lex_state = 283}, + [7524] = {.lex_state = 283}, + [7525] = {.lex_state = 0}, + [7526] = {.lex_state = 0, .external_lex_state = 3}, + [7527] = {.lex_state = 283}, + [7528] = {.lex_state = 0}, + [7529] = {.lex_state = 0}, + [7530] = {.lex_state = 0}, + [7531] = {.lex_state = 283}, + [7532] = {.lex_state = 283}, + [7533] = {.lex_state = 283}, + [7534] = {.lex_state = 0}, + [7535] = {.lex_state = 0}, + [7536] = {.lex_state = 283}, + [7537] = {.lex_state = 0}, + [7538] = {.lex_state = 0}, + [7539] = {.lex_state = 0}, + [7540] = {.lex_state = 0}, + [7541] = {.lex_state = 0}, + [7542] = {.lex_state = 0}, + [7543] = {.lex_state = 0}, + [7544] = {.lex_state = 0}, + [7545] = {.lex_state = 151}, + [7546] = {.lex_state = 0}, + [7547] = {.lex_state = 0}, + [7548] = {.lex_state = 283}, + [7549] = {.lex_state = 283}, + [7550] = {.lex_state = 176}, + [7551] = {.lex_state = 0}, + [7552] = {.lex_state = 0, .external_lex_state = 2}, + [7553] = {.lex_state = 159}, + [7554] = {.lex_state = 0}, + [7555] = {.lex_state = 176}, + [7556] = {.lex_state = 0}, + [7557] = {.lex_state = 0}, + [7558] = {.lex_state = 151}, + [7559] = {.lex_state = 0}, + [7560] = {.lex_state = 176}, + [7561] = {.lex_state = 0}, + [7562] = {.lex_state = 0}, + [7563] = {.lex_state = 0}, + [7564] = {.lex_state = 0, .external_lex_state = 3}, + [7565] = {.lex_state = 0}, + [7566] = {.lex_state = 0}, + [7567] = {.lex_state = 0}, + [7568] = {.lex_state = 151}, + [7569] = {.lex_state = 0}, + [7570] = {.lex_state = 283}, + [7571] = {.lex_state = 0}, + [7572] = {.lex_state = 0}, + [7573] = {.lex_state = 176}, + [7574] = {.lex_state = 0}, + [7575] = {.lex_state = 0}, + [7576] = {.lex_state = 91}, + [7577] = {.lex_state = 0}, + [7578] = {.lex_state = 0}, + [7579] = {.lex_state = 0}, + [7580] = {.lex_state = 0}, + [7581] = {.lex_state = 0}, + [7582] = {.lex_state = 176}, + [7583] = {.lex_state = 0}, + [7584] = {.lex_state = 0}, + [7585] = {.lex_state = 0}, + [7586] = {.lex_state = 151}, + [7587] = {.lex_state = 0}, + [7588] = {.lex_state = 0}, + [7589] = {.lex_state = 0}, + [7590] = {.lex_state = 0}, + [7591] = {.lex_state = 283}, + [7592] = {.lex_state = 176}, + [7593] = {.lex_state = 176}, + [7594] = {.lex_state = 0}, + [7595] = {.lex_state = 0}, + [7596] = {.lex_state = 176}, + [7597] = {.lex_state = 0}, + [7598] = {.lex_state = 0}, + [7599] = {.lex_state = 0}, + [7600] = {.lex_state = 151}, + [7601] = {.lex_state = 151}, + [7602] = {.lex_state = 0}, + [7603] = {.lex_state = 0}, + [7604] = {.lex_state = 0}, + [7605] = {.lex_state = 0}, + [7606] = {.lex_state = 176}, + [7607] = {.lex_state = 176}, + [7608] = {.lex_state = 0}, + [7609] = {.lex_state = 283}, + [7610] = {.lex_state = 176}, + [7611] = {.lex_state = 151}, + [7612] = {.lex_state = 0}, + [7613] = {.lex_state = 0}, + [7614] = {.lex_state = 0}, + [7615] = {.lex_state = 0}, + [7616] = {.lex_state = 0}, + [7617] = {.lex_state = 0}, + [7618] = {.lex_state = 0}, + [7619] = {.lex_state = 151}, + [7620] = {.lex_state = 91}, + [7621] = {.lex_state = 0}, + [7622] = {.lex_state = 0}, + [7623] = {.lex_state = 0}, + [7624] = {.lex_state = 283}, + [7625] = {.lex_state = 283}, + [7626] = {.lex_state = 283}, + [7627] = {.lex_state = 176}, + [7628] = {.lex_state = 176}, + [7629] = {.lex_state = 176}, + [7630] = {.lex_state = 176}, + [7631] = {.lex_state = 0}, + [7632] = {.lex_state = 176}, + [7633] = {.lex_state = 91}, + [7634] = {.lex_state = 0}, + [7635] = {.lex_state = 0}, + [7636] = {.lex_state = 0, .external_lex_state = 3}, + [7637] = {.lex_state = 0}, + [7638] = {.lex_state = 0}, + [7639] = {.lex_state = 0}, + [7640] = {.lex_state = 0}, + [7641] = {.lex_state = 0}, + [7642] = {.lex_state = 283}, + [7643] = {.lex_state = 176}, + [7644] = {.lex_state = 176}, + [7645] = {.lex_state = 151}, + [7646] = {.lex_state = 0}, + [7647] = {.lex_state = 176}, + [7648] = {.lex_state = 151}, + [7649] = {.lex_state = 0}, + [7650] = {.lex_state = 0, .external_lex_state = 3}, + [7651] = {.lex_state = 176}, + [7652] = {.lex_state = 91}, + [7653] = {.lex_state = 0}, + [7654] = {.lex_state = 283}, + [7655] = {.lex_state = 283}, + [7656] = {.lex_state = 176}, + [7657] = {.lex_state = 151}, + [7658] = {.lex_state = 0}, + [7659] = {.lex_state = 283}, + [7660] = {.lex_state = 176}, + [7661] = {.lex_state = 176}, + [7662] = {.lex_state = 0}, + [7663] = {.lex_state = 0, .external_lex_state = 3}, + [7664] = {.lex_state = 91}, + [7665] = {.lex_state = 283}, + [7666] = {.lex_state = 0}, + [7667] = {.lex_state = 0}, + [7668] = {.lex_state = 283}, + [7669] = {.lex_state = 176}, + [7670] = {.lex_state = 176}, + [7671] = {.lex_state = 0}, + [7672] = {.lex_state = 176}, + [7673] = {.lex_state = 0, .external_lex_state = 3}, + [7674] = {.lex_state = 0}, + [7675] = {.lex_state = 283}, + [7676] = {.lex_state = 176}, + [7677] = {.lex_state = 176}, + [7678] = {.lex_state = 283}, + [7679] = {.lex_state = 176}, + [7680] = {.lex_state = 176}, + [7681] = {.lex_state = 283}, + [7682] = {.lex_state = 176}, + [7683] = {.lex_state = 176}, + [7684] = {.lex_state = 176}, + [7685] = {.lex_state = 283}, + [7686] = {.lex_state = 283}, + [7687] = {.lex_state = 283}, + [7688] = {.lex_state = 283}, + [7689] = {.lex_state = 0}, + [7690] = {.lex_state = 0}, + [7691] = {.lex_state = 0}, + [7692] = {.lex_state = 283}, + [7693] = {.lex_state = 283}, + [7694] = {.lex_state = 283}, + [7695] = {.lex_state = 283}, + [7696] = {.lex_state = 283}, + [7697] = {.lex_state = 176}, + [7698] = {.lex_state = 0}, + [7699] = {.lex_state = 283}, + [7700] = {.lex_state = 283}, + [7701] = {.lex_state = 283}, + [7702] = {.lex_state = 0}, + [7703] = {.lex_state = 283}, + [7704] = {.lex_state = 0}, + [7705] = {.lex_state = 283}, + [7706] = {.lex_state = 283}, + [7707] = {.lex_state = 283}, + [7708] = {.lex_state = 159}, + [7709] = {.lex_state = 0}, + [7710] = {.lex_state = 0}, + [7711] = {.lex_state = 283}, + [7712] = {.lex_state = 283}, + [7713] = {.lex_state = 283}, + [7714] = {.lex_state = 0}, + [7715] = {.lex_state = 283}, + [7716] = {.lex_state = 0}, + [7717] = {.lex_state = 159}, + [7718] = {.lex_state = 283}, + [7719] = {.lex_state = 176}, + [7720] = {.lex_state = 176}, + [7721] = {.lex_state = 0}, + [7722] = {.lex_state = 176}, + [7723] = {.lex_state = 283}, + [7724] = {.lex_state = 283}, + [7725] = {.lex_state = 283}, + [7726] = {.lex_state = 283}, + [7727] = {.lex_state = 283}, }; enum { @@ -24023,6 +41608,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -24075,11 +41662,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(1), [anon_sym_thread_local] = 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_noreturn] = ACTIONS(1), [anon_sym_mutable] = ACTIONS(1), - [anon_sym_constexpr] = ACTIONS(1), [anon_sym_constinit] = ACTIONS(1), [anon_sym_consteval] = ACTIONS(1), [anon_sym_signed] = ACTIONS(1), @@ -24130,6 +41720,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1), [anon_sym_PLUS_PLUS] = ACTIONS(1), [anon_sym_sizeof] = ACTIONS(1), + [anon_sym_offsetof] = ACTIONS(1), + [anon_sym__Generic] = ACTIONS(1), + [anon_sym_asm] = ACTIONS(1), + [anon_sym___asm__] = ACTIONS(1), [anon_sym_DOT] = ACTIONS(1), [anon_sym_DASH_GT] = ACTIONS(1), [sym_number_literal] = ACTIONS(1), @@ -24145,7 +41739,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(1), [sym_true] = ACTIONS(1), [sym_false] = ACTIONS(1), - [sym_null] = ACTIONS(1), + [anon_sym_NULL] = ACTIONS(1), + [anon_sym_nullptr] = ACTIONS(1), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(1), [anon_sym_decltype] = ACTIONS(1), @@ -24184,128 +41779,131 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT_STAR] = ACTIONS(1), [anon_sym_LBRACK_RBRACK] = ACTIONS(1), [sym_this] = ACTIONS(1), - [sym_nullptr] = ACTIONS(1), [sym_raw_string_delimiter] = ACTIONS(1), [sym_raw_string_content] = ACTIONS(1), }, [1] = { - [sym_translation_unit] = STATE(6096), - [sym_preproc_include] = STATE(73), - [sym_preproc_def] = STATE(73), - [sym_preproc_function_def] = STATE(73), - [sym_preproc_call] = STATE(73), - [sym_preproc_if] = STATE(73), - [sym_preproc_ifdef] = STATE(73), - [sym_function_definition] = STATE(73), - [sym_declaration] = STATE(73), - [sym_type_definition] = STATE(73), - [sym__declaration_modifiers] = STATE(3225), - [sym__declaration_specifiers] = STATE(3946), - [sym_linkage_specification] = STATE(73), - [sym_attribute_specifier] = STATE(3225), - [sym_attribute_declaration] = STATE(1136), - [sym_ms_declspec_modifier] = STATE(3225), - [sym_ms_based_modifier] = STATE(6104), - [sym_ms_call_modifier] = STATE(2076), - [sym__declarator] = STATE(5113), - [sym_parenthesized_declarator] = STATE(4918), - [sym_attributed_declarator] = STATE(4918), - [sym_pointer_declarator] = STATE(4918), - [sym_function_declarator] = STATE(4835), - [sym_array_declarator] = STATE(4918), - [sym_compound_statement] = STATE(73), - [sym_storage_class_specifier] = STATE(3225), - [sym_type_qualifier] = STATE(3225), - [sym__type_specifier] = STATE(3325), - [sym_sized_type_specifier] = STATE(3232), - [sym_enum_specifier] = STATE(3232), - [sym_struct_specifier] = STATE(3232), - [sym_union_specifier] = STATE(3232), - [sym_attributed_statement] = STATE(73), - [sym_labeled_statement] = STATE(73), - [sym_expression_statement] = STATE(73), - [sym_if_statement] = STATE(73), - [sym_switch_statement] = STATE(73), - [sym_case_statement] = STATE(73), - [sym_while_statement] = STATE(73), - [sym_do_statement] = STATE(73), - [sym_for_statement] = STATE(73), - [sym_return_statement] = STATE(73), - [sym_break_statement] = STATE(73), - [sym_continue_statement] = STATE(73), - [sym_goto_statement] = STATE(73), - [sym__expression] = STATE(3622), - [sym_comma_expression] = STATE(6125), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym__empty_declaration] = STATE(73), - [sym_placeholder_type_specifier] = STATE(3232), - [sym_decltype_auto] = STATE(3279), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3232), - [sym__class_name] = STATE(5753), - [sym_virtual] = STATE(3225), - [sym_explicit_function_specifier] = STATE(1929), - [sym_dependent_type] = STATE(3232), - [sym_template_declaration] = STATE(73), - [sym_template_instantiation] = STATE(73), - [sym_operator_cast] = STATE(5130), - [sym__constructor_specifiers] = STATE(1929), - [sym_operator_cast_definition] = STATE(73), - [sym_operator_cast_declaration] = STATE(73), - [sym_constructor_or_destructor_definition] = STATE(73), - [sym_reference_declarator] = STATE(4918), - [sym_structured_binding_declarator] = STATE(4918), - [sym_template_type] = STATE(3608), - [sym_template_function] = STATE(3494), - [sym_namespace_definition] = STATE(73), - [sym_namespace_alias_definition] = STATE(73), - [sym_using_declaration] = STATE(73), - [sym_alias_declaration] = STATE(73), - [sym_static_assert_declaration] = STATE(73), - [sym_concept_definition] = STATE(73), - [sym_for_range_loop] = STATE(73), - [sym_co_return_statement] = STATE(73), - [sym_co_yield_statement] = STATE(73), - [sym_throw_statement] = STATE(73), - [sym_try_statement] = STATE(73), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_destructor_name] = STATE(4918), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4460), - [sym_qualified_identifier] = STATE(2732), - [sym_qualified_type_identifier] = STATE(3593), - [sym_qualified_operator_cast_identifier] = STATE(5130), - [sym_operator_name] = STATE(4918), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_translation_unit_repeat1] = STATE(73), - [aux_sym__declaration_specifiers_repeat1] = STATE(2179), - [aux_sym_attributed_declarator_repeat1] = STATE(172), - [aux_sym_sized_type_specifier_repeat1] = STATE(3171), - [aux_sym_operator_cast_definition_repeat1] = STATE(1929), + [sym_translation_unit] = STATE(7658), + [sym_preproc_include] = STATE(90), + [sym_preproc_def] = STATE(90), + [sym_preproc_function_def] = STATE(90), + [sym_preproc_call] = STATE(90), + [sym_preproc_if] = STATE(90), + [sym_preproc_ifdef] = STATE(90), + [sym_function_definition] = STATE(90), + [sym_declaration] = STATE(90), + [sym_type_definition] = STATE(90), + [sym__declaration_modifiers] = STATE(3706), + [sym__declaration_specifiers] = STATE(4613), + [sym_linkage_specification] = STATE(90), + [sym_attribute_specifier] = STATE(3706), + [sym_attribute_declaration] = STATE(1427), + [sym_ms_declspec_modifier] = STATE(3706), + [sym_ms_based_modifier] = STATE(7654), + [sym_ms_call_modifier] = STATE(2381), + [sym__declarator] = STATE(5881), + [sym_parenthesized_declarator] = STATE(5640), + [sym_attributed_declarator] = STATE(5640), + [sym_pointer_declarator] = STATE(5640), + [sym_function_declarator] = STATE(5574), + [sym_array_declarator] = STATE(5640), + [sym_compound_statement] = STATE(90), + [sym_storage_class_specifier] = STATE(3706), + [sym_type_qualifier] = STATE(3706), + [sym__type_specifier] = STATE(3809), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), + [sym_attributed_statement] = STATE(90), + [sym_labeled_statement] = STATE(90), + [sym__top_level_expression_statement] = STATE(90), + [sym_if_statement] = STATE(90), + [sym_switch_statement] = STATE(90), + [sym_case_statement] = STATE(90), + [sym_while_statement] = STATE(90), + [sym_do_statement] = STATE(90), + [sym_for_statement] = STATE(90), + [sym_return_statement] = STATE(90), + [sym_break_statement] = STATE(90), + [sym_continue_statement] = STATE(90), + [sym_goto_statement] = STATE(90), + [sym__expression] = STATE(4512), + [sym__expression_not_binary] = STATE(4514), + [sym_conditional_expression] = STATE(4514), + [sym_assignment_expression] = STATE(4514), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(4514), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(4514), + [sym_cast_expression] = STATE(4514), + [sym_sizeof_expression] = STATE(4514), + [sym_offsetof_expression] = STATE(4514), + [sym_generic_expression] = STATE(4514), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(4514), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(4514), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(4514), + [sym__empty_declaration] = STATE(90), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym__class_name] = STATE(6623), + [sym_virtual] = STATE(3706), + [sym_explicit_function_specifier] = STATE(2250), + [sym_dependent_type] = STATE(3723), + [sym_template_declaration] = STATE(90), + [sym_template_instantiation] = STATE(90), + [sym_operator_cast] = STATE(5890), + [sym__constructor_specifiers] = STATE(2250), + [sym_operator_cast_definition] = STATE(90), + [sym_operator_cast_declaration] = STATE(90), + [sym_constructor_or_destructor_definition] = STATE(90), + [sym_reference_declarator] = STATE(5640), + [sym_structured_binding_declarator] = STATE(5640), + [sym_template_type] = STATE(3921), + [sym_template_function] = STATE(4066), + [sym_namespace_definition] = STATE(90), + [sym_namespace_alias_definition] = STATE(90), + [sym_using_declaration] = STATE(90), + [sym_alias_declaration] = STATE(90), + [sym_static_assert_declaration] = STATE(90), + [sym_concept_definition] = STATE(90), + [sym_for_range_loop] = STATE(90), + [sym_co_return_statement] = STATE(90), + [sym_co_yield_statement] = STATE(90), + [sym_throw_statement] = STATE(90), + [sym_try_statement] = STATE(90), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(4514), + [sym_new_expression] = STATE(4514), + [sym_delete_expression] = STATE(4514), + [sym_requires_clause] = STATE(4514), + [sym_requires_expression] = STATE(4514), + [sym_lambda_expression] = STATE(4514), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(4514), + [sym_parameter_pack_expansion] = STATE(4514), + [sym_destructor_name] = STATE(5640), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5143), + [sym_qualified_identifier] = STATE(3249), + [sym_qualified_type_identifier] = STATE(3915), + [sym_qualified_operator_cast_identifier] = STATE(5890), + [sym_operator_name] = STATE(5640), + [sym_user_defined_literal] = STATE(4514), + [aux_sym_translation_unit_repeat1] = STATE(90), + [aux_sym__declaration_specifiers_repeat1] = STATE(2514), + [aux_sym_attributed_declarator_repeat1] = STATE(260), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [aux_sym_operator_cast_definition_repeat1] = STATE(2250), [ts_builtin_sym_end] = ACTIONS(5), [sym_identifier] = ACTIONS(7), [aux_sym_preproc_include_token1] = ACTIONS(9), @@ -24322,231 +41920,242 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(33), - [anon_sym_typedef] = ACTIONS(35), - [anon_sym_extern] = ACTIONS(37), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(43), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(61), - [anon_sym_unsigned] = ACTIONS(61), - [anon_sym_long] = ACTIONS(61), - [anon_sym_short] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(63), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(73), - [anon_sym_switch] = ACTIONS(75), - [anon_sym_case] = ACTIONS(77), - [anon_sym_default] = ACTIONS(79), - [anon_sym_while] = ACTIONS(81), - [anon_sym_do] = ACTIONS(83), - [anon_sym_for] = ACTIONS(85), - [anon_sym_return] = ACTIONS(87), - [anon_sym_break] = ACTIONS(89), - [anon_sym_continue] = ACTIONS(91), - [anon_sym_goto] = ACTIONS(93), + [anon_sym_typedef] = ACTIONS(33), + [anon_sym_extern] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(45), + [anon_sym___cdecl] = ACTIONS(47), + [anon_sym___clrcall] = ACTIONS(47), + [anon_sym___stdcall] = ACTIONS(47), + [anon_sym___fastcall] = ACTIONS(47), + [anon_sym___thiscall] = ACTIONS(47), + [anon_sym___vectorcall] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACK] = ACTIONS(51), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(71), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_case] = ACTIONS(75), + [anon_sym_default] = ACTIONS(77), + [anon_sym_while] = ACTIONS(79), + [anon_sym_do] = ACTIONS(81), + [anon_sym_for] = ACTIONS(83), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(107), - [anon_sym_decltype] = ACTIONS(109), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_explicit] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(115), - [anon_sym_template] = ACTIONS(117), - [anon_sym_operator] = ACTIONS(119), - [anon_sym_try] = ACTIONS(121), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(125), - [anon_sym_namespace] = ACTIONS(127), - [anon_sym_using] = ACTIONS(129), - [anon_sym_static_assert] = ACTIONS(131), - [anon_sym_concept] = ACTIONS(133), - [anon_sym_co_return] = ACTIONS(135), - [anon_sym_co_yield] = ACTIONS(137), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(109), + [sym_false] = ACTIONS(109), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(113), + [anon_sym_decltype] = ACTIONS(115), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_explicit] = ACTIONS(119), + [anon_sym_typename] = ACTIONS(121), + [anon_sym_template] = ACTIONS(123), + [anon_sym_operator] = ACTIONS(125), + [anon_sym_try] = ACTIONS(127), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(131), + [anon_sym_namespace] = ACTIONS(133), + [anon_sym_using] = ACTIONS(135), + [anon_sym_static_assert] = ACTIONS(137), + [anon_sym_concept] = ACTIONS(139), + [anon_sym_co_return] = ACTIONS(141), + [anon_sym_co_yield] = ACTIONS(143), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(109), }, [2] = { - [sym_preproc_include] = STATE(75), - [sym_preproc_def] = STATE(75), - [sym_preproc_function_def] = STATE(75), - [sym_preproc_call] = STATE(75), - [sym_preproc_if] = STATE(75), - [sym_preproc_ifdef] = STATE(75), - [sym_function_definition] = STATE(75), - [sym_declaration] = STATE(75), - [sym_type_definition] = STATE(75), - [sym__declaration_modifiers] = STATE(3225), - [sym__declaration_specifiers] = STATE(3962), - [sym_linkage_specification] = STATE(75), - [sym_attribute_specifier] = STATE(3225), - [sym_attribute_declaration] = STATE(1136), - [sym_ms_declspec_modifier] = STATE(3225), - [sym_ms_based_modifier] = STATE(6104), - [sym_ms_call_modifier] = STATE(2065), - [sym__declarator] = STATE(5113), - [sym_parenthesized_declarator] = STATE(4918), - [sym_attributed_declarator] = STATE(4918), - [sym_pointer_declarator] = STATE(4918), - [sym_function_declarator] = STATE(4870), - [sym_array_declarator] = STATE(4918), - [sym_compound_statement] = STATE(75), - [sym_storage_class_specifier] = STATE(3225), - [sym_type_qualifier] = STATE(3225), - [sym__type_specifier] = STATE(3322), - [sym_sized_type_specifier] = STATE(3232), - [sym_enum_specifier] = STATE(3232), - [sym_struct_specifier] = STATE(3232), - [sym_union_specifier] = STATE(3232), - [sym_attributed_statement] = STATE(75), - [sym_labeled_statement] = STATE(75), - [sym_expression_statement] = STATE(75), - [sym_if_statement] = STATE(75), - [sym_switch_statement] = STATE(75), - [sym_case_statement] = STATE(75), - [sym_while_statement] = STATE(75), - [sym_do_statement] = STATE(75), - [sym_for_statement] = STATE(75), - [sym_return_statement] = STATE(75), - [sym_break_statement] = STATE(75), - [sym_continue_statement] = STATE(75), - [sym_goto_statement] = STATE(75), - [sym__expression] = STATE(3432), - [sym_comma_expression] = STATE(6595), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_initializer_list] = STATE(5369), - [sym_initializer_pair] = STATE(5369), - [sym_subscript_designator] = STATE(5115), - [sym_field_designator] = STATE(5115), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym__empty_declaration] = STATE(75), - [sym_placeholder_type_specifier] = STATE(3232), - [sym_decltype_auto] = STATE(3279), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3232), - [sym__class_name] = STATE(5753), - [sym_virtual] = STATE(3225), - [sym_explicit_function_specifier] = STATE(1936), - [sym_dependent_type] = STATE(3232), - [sym_template_declaration] = STATE(75), - [sym_template_instantiation] = STATE(75), - [sym_operator_cast] = STATE(5134), - [sym__constructor_specifiers] = STATE(1936), - [sym_operator_cast_definition] = STATE(75), - [sym_operator_cast_declaration] = STATE(75), - [sym_constructor_or_destructor_definition] = STATE(75), - [sym_reference_declarator] = STATE(4918), - [sym_structured_binding_declarator] = STATE(4918), - [sym_template_type] = STATE(3608), - [sym_template_function] = STATE(3494), - [sym_namespace_definition] = STATE(75), - [sym_namespace_alias_definition] = STATE(75), - [sym_using_declaration] = STATE(75), - [sym_alias_declaration] = STATE(75), - [sym_static_assert_declaration] = STATE(75), - [sym_concept_definition] = STATE(75), - [sym_for_range_loop] = STATE(75), - [sym_co_return_statement] = STATE(75), - [sym_co_yield_statement] = STATE(75), - [sym_throw_statement] = STATE(75), - [sym_try_statement] = STATE(75), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_destructor_name] = STATE(4918), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4460), - [sym_qualified_identifier] = STATE(2732), - [sym_qualified_type_identifier] = STATE(3593), - [sym_qualified_operator_cast_identifier] = STATE(5134), - [sym_operator_name] = STATE(4918), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_translation_unit_repeat1] = STATE(75), - [aux_sym__declaration_specifiers_repeat1] = STATE(2179), - [aux_sym_attributed_declarator_repeat1] = STATE(206), - [aux_sym_sized_type_specifier_repeat1] = STATE(3171), - [aux_sym_initializer_pair_repeat1] = STATE(5115), - [aux_sym_operator_cast_definition_repeat1] = STATE(1936), - [sym_identifier] = ACTIONS(147), - [aux_sym_preproc_include_token1] = ACTIONS(149), - [aux_sym_preproc_def_token1] = ACTIONS(151), - [anon_sym_COMMA] = ACTIONS(153), - [aux_sym_preproc_if_token1] = ACTIONS(155), - [aux_sym_preproc_ifdef_token1] = ACTIONS(157), - [aux_sym_preproc_ifdef_token2] = ACTIONS(157), - [sym_preproc_directive] = ACTIONS(159), + [sym_preproc_include] = STATE(88), + [sym_preproc_def] = STATE(88), + [sym_preproc_function_def] = STATE(88), + [sym_preproc_call] = STATE(88), + [sym_preproc_if] = STATE(88), + [sym_preproc_ifdef] = STATE(88), + [sym_function_definition] = STATE(88), + [sym_declaration] = STATE(88), + [sym_type_definition] = STATE(88), + [sym__declaration_modifiers] = STATE(3706), + [sym__declaration_specifiers] = STATE(4618), + [sym_linkage_specification] = STATE(88), + [sym_attribute_specifier] = STATE(3706), + [sym_attribute_declaration] = STATE(1427), + [sym_ms_declspec_modifier] = STATE(3706), + [sym_ms_based_modifier] = STATE(7654), + [sym_ms_call_modifier] = STATE(2462), + [sym__declarator] = STATE(5881), + [sym_parenthesized_declarator] = STATE(5640), + [sym_attributed_declarator] = STATE(5640), + [sym_pointer_declarator] = STATE(5640), + [sym_function_declarator] = STATE(5588), + [sym_array_declarator] = STATE(5640), + [sym_compound_statement] = STATE(88), + [sym_storage_class_specifier] = STATE(3706), + [sym_type_qualifier] = STATE(3706), + [sym__type_specifier] = STATE(3826), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), + [sym_attributed_statement] = STATE(88), + [sym_labeled_statement] = STATE(88), + [sym_expression_statement] = STATE(88), + [sym_if_statement] = STATE(88), + [sym_switch_statement] = STATE(88), + [sym_case_statement] = STATE(88), + [sym_while_statement] = STATE(88), + [sym_do_statement] = STATE(88), + [sym_for_statement] = STATE(88), + [sym_return_statement] = STATE(88), + [sym_break_statement] = STATE(88), + [sym_continue_statement] = STATE(88), + [sym_goto_statement] = STATE(88), + [sym__expression] = STATE(4058), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7590), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_initializer_list] = STATE(6202), + [sym_initializer_pair] = STATE(6202), + [sym_subscript_designator] = STATE(5891), + [sym_field_designator] = STATE(5891), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym__empty_declaration] = STATE(88), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym__class_name] = STATE(6623), + [sym_virtual] = STATE(3706), + [sym_explicit_function_specifier] = STATE(2240), + [sym_dependent_type] = STATE(3723), + [sym_template_declaration] = STATE(88), + [sym_template_instantiation] = STATE(88), + [sym_operator_cast] = STATE(5937), + [sym__constructor_specifiers] = STATE(2240), + [sym_operator_cast_definition] = STATE(88), + [sym_operator_cast_declaration] = STATE(88), + [sym_constructor_or_destructor_definition] = STATE(88), + [sym_reference_declarator] = STATE(5640), + [sym_structured_binding_declarator] = STATE(5640), + [sym_template_type] = STATE(3921), + [sym_template_function] = STATE(4066), + [sym_namespace_definition] = STATE(88), + [sym_namespace_alias_definition] = STATE(88), + [sym_using_declaration] = STATE(88), + [sym_alias_declaration] = STATE(88), + [sym_static_assert_declaration] = STATE(88), + [sym_concept_definition] = STATE(88), + [sym_for_range_loop] = STATE(88), + [sym_co_return_statement] = STATE(88), + [sym_co_yield_statement] = STATE(88), + [sym_throw_statement] = STATE(88), + [sym_try_statement] = STATE(88), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_destructor_name] = STATE(5640), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5143), + [sym_qualified_identifier] = STATE(3249), + [sym_qualified_type_identifier] = STATE(3915), + [sym_qualified_operator_cast_identifier] = STATE(5937), + [sym_operator_name] = STATE(5640), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_preproc_if_repeat1] = STATE(88), + [aux_sym__declaration_specifiers_repeat1] = STATE(2514), + [aux_sym_attributed_declarator_repeat1] = STATE(309), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [aux_sym_initializer_pair_repeat1] = STATE(5891), + [aux_sym_operator_cast_definition_repeat1] = STATE(2240), + [sym_identifier] = ACTIONS(153), + [aux_sym_preproc_include_token1] = ACTIONS(155), + [aux_sym_preproc_def_token1] = ACTIONS(157), + [anon_sym_COMMA] = ACTIONS(159), + [aux_sym_preproc_if_token1] = ACTIONS(161), + [aux_sym_preproc_ifdef_token1] = ACTIONS(163), + [aux_sym_preproc_ifdef_token2] = ACTIONS(163), + [sym_preproc_directive] = ACTIONS(165), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -24555,233 +42164,247 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_typedef] = ACTIONS(163), - [anon_sym_extern] = ACTIONS(165), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(43), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_RBRACE] = ACTIONS(169), - [anon_sym_LBRACK] = ACTIONS(171), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(173), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(61), - [anon_sym_unsigned] = ACTIONS(61), - [anon_sym_long] = ACTIONS(61), - [anon_sym_short] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(63), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(175), - [anon_sym_switch] = ACTIONS(177), - [anon_sym_case] = ACTIONS(179), - [anon_sym_default] = ACTIONS(181), - [anon_sym_while] = ACTIONS(183), - [anon_sym_do] = ACTIONS(185), - [anon_sym_for] = ACTIONS(187), - [anon_sym_return] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), - [anon_sym_goto] = ACTIONS(195), + [anon_sym_SEMI] = ACTIONS(167), + [anon_sym_typedef] = ACTIONS(169), + [anon_sym_extern] = ACTIONS(171), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(45), + [anon_sym___cdecl] = ACTIONS(47), + [anon_sym___clrcall] = ACTIONS(47), + [anon_sym___stdcall] = ACTIONS(47), + [anon_sym___fastcall] = ACTIONS(47), + [anon_sym___thiscall] = ACTIONS(47), + [anon_sym___vectorcall] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(173), + [anon_sym_RBRACE] = ACTIONS(175), + [anon_sym_LBRACK] = ACTIONS(177), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(179), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(181), + [anon_sym_switch] = ACTIONS(183), + [anon_sym_case] = ACTIONS(185), + [anon_sym_default] = ACTIONS(187), + [anon_sym_while] = ACTIONS(189), + [anon_sym_do] = ACTIONS(191), + [anon_sym_for] = ACTIONS(193), + [anon_sym_return] = ACTIONS(195), + [anon_sym_break] = ACTIONS(197), + [anon_sym_continue] = ACTIONS(199), + [anon_sym_goto] = ACTIONS(201), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym_DOT] = ACTIONS(197), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(107), - [anon_sym_decltype] = ACTIONS(109), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_explicit] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(115), - [anon_sym_template] = ACTIONS(199), - [anon_sym_operator] = ACTIONS(119), - [anon_sym_try] = ACTIONS(201), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(203), - [anon_sym_namespace] = ACTIONS(205), - [anon_sym_using] = ACTIONS(207), - [anon_sym_static_assert] = ACTIONS(209), - [anon_sym_concept] = ACTIONS(211), - [anon_sym_co_return] = ACTIONS(213), - [anon_sym_co_yield] = ACTIONS(215), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [anon_sym_DOT] = ACTIONS(203), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(113), + [anon_sym_decltype] = ACTIONS(115), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_explicit] = ACTIONS(119), + [anon_sym_typename] = ACTIONS(121), + [anon_sym_template] = ACTIONS(207), + [anon_sym_operator] = ACTIONS(125), + [anon_sym_try] = ACTIONS(209), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(211), + [anon_sym_namespace] = ACTIONS(213), + [anon_sym_using] = ACTIONS(215), + [anon_sym_static_assert] = ACTIONS(217), + [anon_sym_concept] = ACTIONS(219), + [anon_sym_co_return] = ACTIONS(221), + [anon_sym_co_yield] = ACTIONS(223), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [3] = { - [sym_preproc_include] = STATE(43), - [sym_preproc_def] = STATE(43), - [sym_preproc_function_def] = STATE(43), - [sym_preproc_call] = STATE(43), - [sym_preproc_if] = STATE(43), - [sym_preproc_ifdef] = STATE(43), - [sym_function_definition] = STATE(43), - [sym_declaration] = STATE(43), - [sym_type_definition] = STATE(43), - [sym__declaration_modifiers] = STATE(3225), - [sym__declaration_specifiers] = STATE(3962), - [sym_linkage_specification] = STATE(43), - [sym_attribute_specifier] = STATE(3225), - [sym_attribute_declaration] = STATE(1136), - [sym_ms_declspec_modifier] = STATE(3225), - [sym_ms_based_modifier] = STATE(6104), - [sym_ms_call_modifier] = STATE(2065), - [sym__declarator] = STATE(5113), - [sym_parenthesized_declarator] = STATE(4918), - [sym_attributed_declarator] = STATE(4918), - [sym_pointer_declarator] = STATE(4918), - [sym_function_declarator] = STATE(4870), - [sym_array_declarator] = STATE(4918), - [sym_compound_statement] = STATE(43), - [sym_storage_class_specifier] = STATE(3225), - [sym_type_qualifier] = STATE(3225), - [sym__type_specifier] = STATE(3322), - [sym_sized_type_specifier] = STATE(3232), - [sym_enum_specifier] = STATE(3232), - [sym_struct_specifier] = STATE(3232), - [sym_union_specifier] = STATE(3232), - [sym_attributed_statement] = STATE(43), - [sym_labeled_statement] = STATE(43), - [sym_expression_statement] = STATE(43), - [sym_if_statement] = STATE(43), - [sym_switch_statement] = STATE(43), - [sym_case_statement] = STATE(43), - [sym_while_statement] = STATE(43), - [sym_do_statement] = STATE(43), - [sym_for_statement] = STATE(43), - [sym_return_statement] = STATE(43), - [sym_break_statement] = STATE(43), - [sym_continue_statement] = STATE(43), - [sym_goto_statement] = STATE(43), - [sym__expression] = STATE(3432), - [sym_comma_expression] = STATE(6595), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_initializer_list] = STATE(5369), - [sym_initializer_pair] = STATE(5369), - [sym_subscript_designator] = STATE(5115), - [sym_field_designator] = STATE(5115), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym__empty_declaration] = STATE(43), - [sym_placeholder_type_specifier] = STATE(3232), - [sym_decltype_auto] = STATE(3279), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3232), - [sym__class_name] = STATE(5753), - [sym_virtual] = STATE(3225), - [sym_explicit_function_specifier] = STATE(1936), - [sym_dependent_type] = STATE(3232), - [sym_template_declaration] = STATE(43), - [sym_template_instantiation] = STATE(43), - [sym_operator_cast] = STATE(5134), - [sym__constructor_specifiers] = STATE(1936), - [sym_operator_cast_definition] = STATE(43), - [sym_operator_cast_declaration] = STATE(43), - [sym_constructor_or_destructor_definition] = STATE(43), - [sym_reference_declarator] = STATE(4918), - [sym_structured_binding_declarator] = STATE(4918), - [sym_template_type] = STATE(3608), - [sym_template_function] = STATE(3494), - [sym_namespace_definition] = STATE(43), - [sym_namespace_alias_definition] = STATE(43), - [sym_using_declaration] = STATE(43), - [sym_alias_declaration] = STATE(43), - [sym_static_assert_declaration] = STATE(43), - [sym_concept_definition] = STATE(43), - [sym_for_range_loop] = STATE(43), - [sym_co_return_statement] = STATE(43), - [sym_co_yield_statement] = STATE(43), - [sym_throw_statement] = STATE(43), - [sym_try_statement] = STATE(43), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_destructor_name] = STATE(4918), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4460), - [sym_qualified_identifier] = STATE(2732), - [sym_qualified_type_identifier] = STATE(3593), - [sym_qualified_operator_cast_identifier] = STATE(5134), - [sym_operator_name] = STATE(4918), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_translation_unit_repeat1] = STATE(43), - [aux_sym__declaration_specifiers_repeat1] = STATE(2179), - [aux_sym_attributed_declarator_repeat1] = STATE(206), - [aux_sym_sized_type_specifier_repeat1] = STATE(3171), - [aux_sym_initializer_pair_repeat1] = STATE(5115), - [aux_sym_operator_cast_definition_repeat1] = STATE(1936), - [sym_identifier] = ACTIONS(147), - [aux_sym_preproc_include_token1] = ACTIONS(149), - [aux_sym_preproc_def_token1] = ACTIONS(151), - [anon_sym_COMMA] = ACTIONS(153), - [aux_sym_preproc_if_token1] = ACTIONS(155), - [aux_sym_preproc_ifdef_token1] = ACTIONS(157), - [aux_sym_preproc_ifdef_token2] = ACTIONS(157), - [sym_preproc_directive] = ACTIONS(159), + [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(7245), + [sym_preproc_elif] = STATE(7245), + [sym_preproc_elifdef] = STATE(7245), + [sym_function_definition] = STATE(33), + [sym_declaration] = STATE(33), + [sym_type_definition] = STATE(33), + [sym__declaration_modifiers] = STATE(3706), + [sym__declaration_specifiers] = STATE(4661), + [sym_linkage_specification] = STATE(33), + [sym_attribute_specifier] = STATE(3706), + [sym_attribute_declaration] = STATE(1427), + [sym_ms_declspec_modifier] = STATE(3706), + [sym_ms_based_modifier] = STATE(7654), + [sym_ms_call_modifier] = STATE(2439), + [sym__declarator] = STATE(5881), + [sym_parenthesized_declarator] = STATE(5640), + [sym_attributed_declarator] = STATE(5640), + [sym_pointer_declarator] = STATE(5640), + [sym_function_declarator] = STATE(5566), + [sym_array_declarator] = STATE(5640), + [sym_compound_statement] = STATE(33), + [sym_storage_class_specifier] = STATE(3706), + [sym_type_qualifier] = STATE(3706), + [sym__type_specifier] = STATE(3800), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), + [sym_attributed_statement] = STATE(33), + [sym_labeled_statement] = STATE(33), + [sym_expression_statement] = STATE(33), + [sym_if_statement] = STATE(33), + [sym_switch_statement] = STATE(33), + [sym_case_statement] = STATE(33), + [sym_while_statement] = STATE(33), + [sym_do_statement] = STATE(33), + [sym_for_statement] = STATE(33), + [sym_return_statement] = STATE(33), + [sym_break_statement] = STATE(33), + [sym_continue_statement] = STATE(33), + [sym_goto_statement] = STATE(33), + [sym__expression] = STATE(4160), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7618), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym__empty_declaration] = STATE(33), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym__class_name] = STATE(6623), + [sym_virtual] = STATE(3706), + [sym_explicit_function_specifier] = STATE(2238), + [sym_dependent_type] = STATE(3723), + [sym_template_declaration] = STATE(33), + [sym_template_instantiation] = STATE(33), + [sym_operator_cast] = STATE(5918), + [sym__constructor_specifiers] = STATE(2238), + [sym_operator_cast_definition] = STATE(33), + [sym_operator_cast_declaration] = STATE(33), + [sym_constructor_or_destructor_definition] = STATE(33), + [sym_reference_declarator] = STATE(5640), + [sym_structured_binding_declarator] = STATE(5640), + [sym_template_type] = STATE(3921), + [sym_template_function] = STATE(4066), + [sym_namespace_definition] = STATE(33), + [sym_namespace_alias_definition] = STATE(33), + [sym_using_declaration] = STATE(33), + [sym_alias_declaration] = STATE(33), + [sym_static_assert_declaration] = STATE(33), + [sym_concept_definition] = STATE(33), + [sym_for_range_loop] = STATE(33), + [sym_co_return_statement] = STATE(33), + [sym_co_yield_statement] = STATE(33), + [sym_throw_statement] = STATE(33), + [sym_try_statement] = STATE(33), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_destructor_name] = STATE(5640), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5143), + [sym_qualified_identifier] = STATE(3249), + [sym_qualified_type_identifier] = STATE(3915), + [sym_qualified_operator_cast_identifier] = STATE(5918), + [sym_operator_name] = STATE(5640), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_preproc_if_repeat1] = STATE(33), + [aux_sym__declaration_specifiers_repeat1] = STATE(2514), + [aux_sym_attributed_declarator_repeat1] = STATE(244), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [aux_sym_operator_cast_definition_repeat1] = STATE(2238), + [sym_identifier] = ACTIONS(225), + [aux_sym_preproc_include_token1] = ACTIONS(227), + [aux_sym_preproc_def_token1] = ACTIONS(229), + [aux_sym_preproc_if_token1] = ACTIONS(231), + [aux_sym_preproc_if_token2] = ACTIONS(233), + [aux_sym_preproc_ifdef_token1] = ACTIONS(235), + [aux_sym_preproc_ifdef_token2] = ACTIONS(235), + [aux_sym_preproc_else_token1] = ACTIONS(237), + [aux_sym_preproc_elif_token1] = ACTIONS(239), + [aux_sym_preproc_elifdef_token1] = ACTIONS(241), + [aux_sym_preproc_elifdef_token2] = ACTIONS(241), + [sym_preproc_directive] = ACTIONS(243), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -24790,233 +42413,245 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_typedef] = ACTIONS(163), - [anon_sym_extern] = ACTIONS(165), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(43), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_RBRACE] = ACTIONS(217), - [anon_sym_LBRACK] = ACTIONS(171), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(173), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(61), - [anon_sym_unsigned] = ACTIONS(61), - [anon_sym_long] = ACTIONS(61), - [anon_sym_short] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(63), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(175), - [anon_sym_switch] = ACTIONS(177), - [anon_sym_case] = ACTIONS(179), - [anon_sym_default] = ACTIONS(181), - [anon_sym_while] = ACTIONS(183), - [anon_sym_do] = ACTIONS(185), - [anon_sym_for] = ACTIONS(187), - [anon_sym_return] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), - [anon_sym_goto] = ACTIONS(195), + [anon_sym_SEMI] = ACTIONS(245), + [anon_sym_typedef] = ACTIONS(247), + [anon_sym_extern] = ACTIONS(249), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(45), + [anon_sym___cdecl] = ACTIONS(47), + [anon_sym___clrcall] = ACTIONS(47), + [anon_sym___stdcall] = ACTIONS(47), + [anon_sym___fastcall] = ACTIONS(47), + [anon_sym___thiscall] = ACTIONS(47), + [anon_sym___vectorcall] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(251), + [anon_sym_LBRACK] = ACTIONS(51), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(253), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(255), + [anon_sym_switch] = ACTIONS(257), + [anon_sym_case] = ACTIONS(259), + [anon_sym_default] = ACTIONS(261), + [anon_sym_while] = ACTIONS(263), + [anon_sym_do] = ACTIONS(265), + [anon_sym_for] = ACTIONS(267), + [anon_sym_return] = ACTIONS(269), + [anon_sym_break] = ACTIONS(271), + [anon_sym_continue] = ACTIONS(273), + [anon_sym_goto] = ACTIONS(275), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym_DOT] = ACTIONS(197), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(107), - [anon_sym_decltype] = ACTIONS(109), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_explicit] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(115), - [anon_sym_template] = ACTIONS(199), - [anon_sym_operator] = ACTIONS(119), - [anon_sym_try] = ACTIONS(201), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(203), - [anon_sym_namespace] = ACTIONS(205), - [anon_sym_using] = ACTIONS(207), - [anon_sym_static_assert] = ACTIONS(209), - [anon_sym_concept] = ACTIONS(211), - [anon_sym_co_return] = ACTIONS(213), - [anon_sym_co_yield] = ACTIONS(215), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(113), + [anon_sym_decltype] = ACTIONS(115), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_explicit] = ACTIONS(119), + [anon_sym_typename] = ACTIONS(121), + [anon_sym_template] = ACTIONS(277), + [anon_sym_operator] = ACTIONS(125), + [anon_sym_try] = ACTIONS(279), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(281), + [anon_sym_namespace] = ACTIONS(283), + [anon_sym_using] = ACTIONS(285), + [anon_sym_static_assert] = ACTIONS(287), + [anon_sym_concept] = ACTIONS(289), + [anon_sym_co_return] = ACTIONS(291), + [anon_sym_co_yield] = ACTIONS(293), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [4] = { - [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_declaration] = STATE(66), - [sym_type_definition] = STATE(66), - [sym__declaration_modifiers] = STATE(3225), - [sym__declaration_specifiers] = STATE(3962), - [sym_linkage_specification] = STATE(66), - [sym_attribute_specifier] = STATE(3225), - [sym_attribute_declaration] = STATE(1136), - [sym_ms_declspec_modifier] = STATE(3225), - [sym_ms_based_modifier] = STATE(6104), - [sym_ms_call_modifier] = STATE(2065), - [sym__declarator] = STATE(5113), - [sym_parenthesized_declarator] = STATE(4918), - [sym_attributed_declarator] = STATE(4918), - [sym_pointer_declarator] = STATE(4918), - [sym_function_declarator] = STATE(4870), - [sym_array_declarator] = STATE(4918), - [sym_compound_statement] = STATE(66), - [sym_storage_class_specifier] = STATE(3225), - [sym_type_qualifier] = STATE(3225), - [sym__type_specifier] = STATE(3322), - [sym_sized_type_specifier] = STATE(3232), - [sym_enum_specifier] = STATE(3232), - [sym_struct_specifier] = STATE(3232), - [sym_union_specifier] = STATE(3232), - [sym_attributed_statement] = STATE(66), - [sym_labeled_statement] = STATE(66), - [sym_expression_statement] = STATE(66), - [sym_if_statement] = STATE(66), - [sym_switch_statement] = STATE(66), - [sym_case_statement] = STATE(66), - [sym_while_statement] = STATE(66), - [sym_do_statement] = STATE(66), - [sym_for_statement] = STATE(66), - [sym_return_statement] = STATE(66), - [sym_break_statement] = STATE(66), - [sym_continue_statement] = STATE(66), - [sym_goto_statement] = STATE(66), - [sym__expression] = STATE(3432), - [sym_comma_expression] = STATE(6595), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_initializer_list] = STATE(5369), - [sym_initializer_pair] = STATE(5369), - [sym_subscript_designator] = STATE(5115), - [sym_field_designator] = STATE(5115), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym__empty_declaration] = STATE(66), - [sym_placeholder_type_specifier] = STATE(3232), - [sym_decltype_auto] = STATE(3279), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3232), - [sym__class_name] = STATE(5753), - [sym_virtual] = STATE(3225), - [sym_explicit_function_specifier] = STATE(1936), - [sym_dependent_type] = STATE(3232), - [sym_template_declaration] = STATE(66), - [sym_template_instantiation] = STATE(66), - [sym_operator_cast] = STATE(5134), - [sym__constructor_specifiers] = STATE(1936), - [sym_operator_cast_definition] = STATE(66), - [sym_operator_cast_declaration] = STATE(66), - [sym_constructor_or_destructor_definition] = STATE(66), - [sym_reference_declarator] = STATE(4918), - [sym_structured_binding_declarator] = STATE(4918), - [sym_template_type] = STATE(3608), - [sym_template_function] = STATE(3494), - [sym_namespace_definition] = STATE(66), - [sym_namespace_alias_definition] = STATE(66), - [sym_using_declaration] = STATE(66), - [sym_alias_declaration] = STATE(66), - [sym_static_assert_declaration] = STATE(66), - [sym_concept_definition] = STATE(66), - [sym_for_range_loop] = STATE(66), - [sym_co_return_statement] = STATE(66), - [sym_co_yield_statement] = STATE(66), - [sym_throw_statement] = STATE(66), - [sym_try_statement] = STATE(66), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_destructor_name] = STATE(4918), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4460), - [sym_qualified_identifier] = STATE(2732), - [sym_qualified_type_identifier] = STATE(3593), - [sym_qualified_operator_cast_identifier] = STATE(5134), - [sym_operator_name] = STATE(4918), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_translation_unit_repeat1] = STATE(66), - [aux_sym__declaration_specifiers_repeat1] = STATE(2179), - [aux_sym_attributed_declarator_repeat1] = STATE(206), - [aux_sym_sized_type_specifier_repeat1] = STATE(3171), - [aux_sym_initializer_pair_repeat1] = STATE(5115), - [aux_sym_operator_cast_definition_repeat1] = STATE(1936), - [sym_identifier] = ACTIONS(147), - [aux_sym_preproc_include_token1] = ACTIONS(149), - [aux_sym_preproc_def_token1] = ACTIONS(151), - [anon_sym_COMMA] = ACTIONS(153), - [aux_sym_preproc_if_token1] = ACTIONS(155), - [aux_sym_preproc_ifdef_token1] = ACTIONS(157), - [aux_sym_preproc_ifdef_token2] = ACTIONS(157), - [sym_preproc_directive] = ACTIONS(159), + [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(7333), + [sym_preproc_elif] = STATE(7333), + [sym_preproc_elifdef] = STATE(7333), + [sym_function_definition] = STATE(10), + [sym_declaration] = STATE(10), + [sym_type_definition] = STATE(10), + [sym__declaration_modifiers] = STATE(3706), + [sym__declaration_specifiers] = STATE(4661), + [sym_linkage_specification] = STATE(10), + [sym_attribute_specifier] = STATE(3706), + [sym_attribute_declaration] = STATE(1427), + [sym_ms_declspec_modifier] = STATE(3706), + [sym_ms_based_modifier] = STATE(7654), + [sym_ms_call_modifier] = STATE(2439), + [sym__declarator] = STATE(5881), + [sym_parenthesized_declarator] = STATE(5640), + [sym_attributed_declarator] = STATE(5640), + [sym_pointer_declarator] = STATE(5640), + [sym_function_declarator] = STATE(5566), + [sym_array_declarator] = STATE(5640), + [sym_compound_statement] = STATE(10), + [sym_storage_class_specifier] = STATE(3706), + [sym_type_qualifier] = STATE(3706), + [sym__type_specifier] = STATE(3800), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), + [sym_attributed_statement] = STATE(10), + [sym_labeled_statement] = STATE(10), + [sym_expression_statement] = STATE(10), + [sym_if_statement] = STATE(10), + [sym_switch_statement] = STATE(10), + [sym_case_statement] = STATE(10), + [sym_while_statement] = STATE(10), + [sym_do_statement] = STATE(10), + [sym_for_statement] = STATE(10), + [sym_return_statement] = STATE(10), + [sym_break_statement] = STATE(10), + [sym_continue_statement] = STATE(10), + [sym_goto_statement] = STATE(10), + [sym__expression] = STATE(4160), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7618), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym__empty_declaration] = STATE(10), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym__class_name] = STATE(6623), + [sym_virtual] = STATE(3706), + [sym_explicit_function_specifier] = STATE(2238), + [sym_dependent_type] = STATE(3723), + [sym_template_declaration] = STATE(10), + [sym_template_instantiation] = STATE(10), + [sym_operator_cast] = STATE(5918), + [sym__constructor_specifiers] = STATE(2238), + [sym_operator_cast_definition] = STATE(10), + [sym_operator_cast_declaration] = STATE(10), + [sym_constructor_or_destructor_definition] = STATE(10), + [sym_reference_declarator] = STATE(5640), + [sym_structured_binding_declarator] = STATE(5640), + [sym_template_type] = STATE(3921), + [sym_template_function] = STATE(4066), + [sym_namespace_definition] = STATE(10), + [sym_namespace_alias_definition] = STATE(10), + [sym_using_declaration] = STATE(10), + [sym_alias_declaration] = STATE(10), + [sym_static_assert_declaration] = STATE(10), + [sym_concept_definition] = STATE(10), + [sym_for_range_loop] = STATE(10), + [sym_co_return_statement] = STATE(10), + [sym_co_yield_statement] = STATE(10), + [sym_throw_statement] = STATE(10), + [sym_try_statement] = STATE(10), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_destructor_name] = STATE(5640), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5143), + [sym_qualified_identifier] = STATE(3249), + [sym_qualified_type_identifier] = STATE(3915), + [sym_qualified_operator_cast_identifier] = STATE(5918), + [sym_operator_name] = STATE(5640), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_preproc_if_repeat1] = STATE(10), + [aux_sym__declaration_specifiers_repeat1] = STATE(2514), + [aux_sym_attributed_declarator_repeat1] = STATE(244), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [aux_sym_operator_cast_definition_repeat1] = STATE(2238), + [sym_identifier] = ACTIONS(225), + [aux_sym_preproc_include_token1] = ACTIONS(227), + [aux_sym_preproc_def_token1] = ACTIONS(229), + [aux_sym_preproc_if_token1] = ACTIONS(231), + [aux_sym_preproc_if_token2] = ACTIONS(295), + [aux_sym_preproc_ifdef_token1] = ACTIONS(235), + [aux_sym_preproc_ifdef_token2] = ACTIONS(235), + [aux_sym_preproc_else_token1] = ACTIONS(237), + [aux_sym_preproc_elif_token1] = ACTIONS(239), + [aux_sym_preproc_elifdef_token1] = ACTIONS(241), + [aux_sym_preproc_elifdef_token2] = ACTIONS(241), + [sym_preproc_directive] = ACTIONS(243), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -25025,233 +42660,245 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_typedef] = ACTIONS(163), - [anon_sym_extern] = ACTIONS(165), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(43), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_RBRACE] = ACTIONS(219), - [anon_sym_LBRACK] = ACTIONS(171), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(173), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(61), - [anon_sym_unsigned] = ACTIONS(61), - [anon_sym_long] = ACTIONS(61), - [anon_sym_short] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(63), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(175), - [anon_sym_switch] = ACTIONS(177), - [anon_sym_case] = ACTIONS(179), - [anon_sym_default] = ACTIONS(181), - [anon_sym_while] = ACTIONS(183), - [anon_sym_do] = ACTIONS(185), - [anon_sym_for] = ACTIONS(187), - [anon_sym_return] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), - [anon_sym_goto] = ACTIONS(195), + [anon_sym_SEMI] = ACTIONS(245), + [anon_sym_typedef] = ACTIONS(247), + [anon_sym_extern] = ACTIONS(249), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(45), + [anon_sym___cdecl] = ACTIONS(47), + [anon_sym___clrcall] = ACTIONS(47), + [anon_sym___stdcall] = ACTIONS(47), + [anon_sym___fastcall] = ACTIONS(47), + [anon_sym___thiscall] = ACTIONS(47), + [anon_sym___vectorcall] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(251), + [anon_sym_LBRACK] = ACTIONS(51), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(253), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(255), + [anon_sym_switch] = ACTIONS(257), + [anon_sym_case] = ACTIONS(259), + [anon_sym_default] = ACTIONS(261), + [anon_sym_while] = ACTIONS(263), + [anon_sym_do] = ACTIONS(265), + [anon_sym_for] = ACTIONS(267), + [anon_sym_return] = ACTIONS(269), + [anon_sym_break] = ACTIONS(271), + [anon_sym_continue] = ACTIONS(273), + [anon_sym_goto] = ACTIONS(275), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym_DOT] = ACTIONS(197), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(107), - [anon_sym_decltype] = ACTIONS(109), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_explicit] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(115), - [anon_sym_template] = ACTIONS(199), - [anon_sym_operator] = ACTIONS(119), - [anon_sym_try] = ACTIONS(201), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(203), - [anon_sym_namespace] = ACTIONS(205), - [anon_sym_using] = ACTIONS(207), - [anon_sym_static_assert] = ACTIONS(209), - [anon_sym_concept] = ACTIONS(211), - [anon_sym_co_return] = ACTIONS(213), - [anon_sym_co_yield] = ACTIONS(215), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(113), + [anon_sym_decltype] = ACTIONS(115), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_explicit] = ACTIONS(119), + [anon_sym_typename] = ACTIONS(121), + [anon_sym_template] = ACTIONS(277), + [anon_sym_operator] = ACTIONS(125), + [anon_sym_try] = ACTIONS(279), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(281), + [anon_sym_namespace] = ACTIONS(283), + [anon_sym_using] = ACTIONS(285), + [anon_sym_static_assert] = ACTIONS(287), + [anon_sym_concept] = ACTIONS(289), + [anon_sym_co_return] = ACTIONS(291), + [anon_sym_co_yield] = ACTIONS(293), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [5] = { - [sym_preproc_include] = STATE(70), - [sym_preproc_def] = STATE(70), - [sym_preproc_function_def] = STATE(70), - [sym_preproc_call] = STATE(70), - [sym_preproc_if] = STATE(70), - [sym_preproc_ifdef] = STATE(70), - [sym_function_definition] = STATE(70), - [sym_declaration] = STATE(70), - [sym_type_definition] = STATE(70), - [sym__declaration_modifiers] = STATE(3225), - [sym__declaration_specifiers] = STATE(3962), - [sym_linkage_specification] = STATE(70), - [sym_attribute_specifier] = STATE(3225), - [sym_attribute_declaration] = STATE(1136), - [sym_ms_declspec_modifier] = STATE(3225), - [sym_ms_based_modifier] = STATE(6104), - [sym_ms_call_modifier] = STATE(2065), - [sym__declarator] = STATE(5113), - [sym_parenthesized_declarator] = STATE(4918), - [sym_attributed_declarator] = STATE(4918), - [sym_pointer_declarator] = STATE(4918), - [sym_function_declarator] = STATE(4870), - [sym_array_declarator] = STATE(4918), - [sym_compound_statement] = STATE(70), - [sym_storage_class_specifier] = STATE(3225), - [sym_type_qualifier] = STATE(3225), - [sym__type_specifier] = STATE(3322), - [sym_sized_type_specifier] = STATE(3232), - [sym_enum_specifier] = STATE(3232), - [sym_struct_specifier] = STATE(3232), - [sym_union_specifier] = STATE(3232), - [sym_attributed_statement] = STATE(70), - [sym_labeled_statement] = STATE(70), - [sym_expression_statement] = STATE(70), - [sym_if_statement] = STATE(70), - [sym_switch_statement] = STATE(70), - [sym_case_statement] = STATE(70), - [sym_while_statement] = STATE(70), - [sym_do_statement] = STATE(70), - [sym_for_statement] = STATE(70), - [sym_return_statement] = STATE(70), - [sym_break_statement] = STATE(70), - [sym_continue_statement] = STATE(70), - [sym_goto_statement] = STATE(70), - [sym__expression] = STATE(3432), - [sym_comma_expression] = STATE(6595), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_initializer_list] = STATE(5369), - [sym_initializer_pair] = STATE(5369), - [sym_subscript_designator] = STATE(5115), - [sym_field_designator] = STATE(5115), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym__empty_declaration] = STATE(70), - [sym_placeholder_type_specifier] = STATE(3232), - [sym_decltype_auto] = STATE(3279), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3232), - [sym__class_name] = STATE(5753), - [sym_virtual] = STATE(3225), - [sym_explicit_function_specifier] = STATE(1936), - [sym_dependent_type] = STATE(3232), - [sym_template_declaration] = STATE(70), - [sym_template_instantiation] = STATE(70), - [sym_operator_cast] = STATE(5134), - [sym__constructor_specifiers] = STATE(1936), - [sym_operator_cast_definition] = STATE(70), - [sym_operator_cast_declaration] = STATE(70), - [sym_constructor_or_destructor_definition] = STATE(70), - [sym_reference_declarator] = STATE(4918), - [sym_structured_binding_declarator] = STATE(4918), - [sym_template_type] = STATE(3608), - [sym_template_function] = STATE(3494), - [sym_namespace_definition] = STATE(70), - [sym_namespace_alias_definition] = STATE(70), - [sym_using_declaration] = STATE(70), - [sym_alias_declaration] = STATE(70), - [sym_static_assert_declaration] = STATE(70), - [sym_concept_definition] = STATE(70), - [sym_for_range_loop] = STATE(70), - [sym_co_return_statement] = STATE(70), - [sym_co_yield_statement] = STATE(70), - [sym_throw_statement] = STATE(70), - [sym_try_statement] = STATE(70), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_destructor_name] = STATE(4918), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4460), - [sym_qualified_identifier] = STATE(2732), - [sym_qualified_type_identifier] = STATE(3593), - [sym_qualified_operator_cast_identifier] = STATE(5134), - [sym_operator_name] = STATE(4918), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_translation_unit_repeat1] = STATE(70), - [aux_sym__declaration_specifiers_repeat1] = STATE(2179), - [aux_sym_attributed_declarator_repeat1] = STATE(206), - [aux_sym_sized_type_specifier_repeat1] = STATE(3171), - [aux_sym_initializer_pair_repeat1] = STATE(5115), - [aux_sym_operator_cast_definition_repeat1] = STATE(1936), - [sym_identifier] = ACTIONS(147), - [aux_sym_preproc_include_token1] = ACTIONS(149), - [aux_sym_preproc_def_token1] = ACTIONS(151), - [anon_sym_COMMA] = ACTIONS(153), - [aux_sym_preproc_if_token1] = ACTIONS(155), - [aux_sym_preproc_ifdef_token1] = ACTIONS(157), - [aux_sym_preproc_ifdef_token2] = ACTIONS(157), - [sym_preproc_directive] = ACTIONS(159), + [sym_preproc_include] = STATE(3), + [sym_preproc_def] = STATE(3), + [sym_preproc_function_def] = STATE(3), + [sym_preproc_call] = STATE(3), + [sym_preproc_if] = STATE(3), + [sym_preproc_ifdef] = STATE(3), + [sym_preproc_else] = STATE(7288), + [sym_preproc_elif] = STATE(7288), + [sym_preproc_elifdef] = STATE(7288), + [sym_function_definition] = STATE(3), + [sym_declaration] = STATE(3), + [sym_type_definition] = STATE(3), + [sym__declaration_modifiers] = STATE(3706), + [sym__declaration_specifiers] = STATE(4661), + [sym_linkage_specification] = STATE(3), + [sym_attribute_specifier] = STATE(3706), + [sym_attribute_declaration] = STATE(1427), + [sym_ms_declspec_modifier] = STATE(3706), + [sym_ms_based_modifier] = STATE(7654), + [sym_ms_call_modifier] = STATE(2439), + [sym__declarator] = STATE(5881), + [sym_parenthesized_declarator] = STATE(5640), + [sym_attributed_declarator] = STATE(5640), + [sym_pointer_declarator] = STATE(5640), + [sym_function_declarator] = STATE(5566), + [sym_array_declarator] = STATE(5640), + [sym_compound_statement] = STATE(3), + [sym_storage_class_specifier] = STATE(3706), + [sym_type_qualifier] = STATE(3706), + [sym__type_specifier] = STATE(3800), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), + [sym_attributed_statement] = STATE(3), + [sym_labeled_statement] = STATE(3), + [sym_expression_statement] = STATE(3), + [sym_if_statement] = STATE(3), + [sym_switch_statement] = STATE(3), + [sym_case_statement] = STATE(3), + [sym_while_statement] = STATE(3), + [sym_do_statement] = STATE(3), + [sym_for_statement] = STATE(3), + [sym_return_statement] = STATE(3), + [sym_break_statement] = STATE(3), + [sym_continue_statement] = STATE(3), + [sym_goto_statement] = STATE(3), + [sym__expression] = STATE(4160), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7618), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym__empty_declaration] = STATE(3), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym__class_name] = STATE(6623), + [sym_virtual] = STATE(3706), + [sym_explicit_function_specifier] = STATE(2238), + [sym_dependent_type] = STATE(3723), + [sym_template_declaration] = STATE(3), + [sym_template_instantiation] = STATE(3), + [sym_operator_cast] = STATE(5918), + [sym__constructor_specifiers] = STATE(2238), + [sym_operator_cast_definition] = STATE(3), + [sym_operator_cast_declaration] = STATE(3), + [sym_constructor_or_destructor_definition] = STATE(3), + [sym_reference_declarator] = STATE(5640), + [sym_structured_binding_declarator] = STATE(5640), + [sym_template_type] = STATE(3921), + [sym_template_function] = STATE(4066), + [sym_namespace_definition] = STATE(3), + [sym_namespace_alias_definition] = STATE(3), + [sym_using_declaration] = STATE(3), + [sym_alias_declaration] = STATE(3), + [sym_static_assert_declaration] = STATE(3), + [sym_concept_definition] = STATE(3), + [sym_for_range_loop] = STATE(3), + [sym_co_return_statement] = STATE(3), + [sym_co_yield_statement] = STATE(3), + [sym_throw_statement] = STATE(3), + [sym_try_statement] = STATE(3), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_destructor_name] = STATE(5640), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5143), + [sym_qualified_identifier] = STATE(3249), + [sym_qualified_type_identifier] = STATE(3915), + [sym_qualified_operator_cast_identifier] = STATE(5918), + [sym_operator_name] = STATE(5640), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_preproc_if_repeat1] = STATE(3), + [aux_sym__declaration_specifiers_repeat1] = STATE(2514), + [aux_sym_attributed_declarator_repeat1] = STATE(244), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [aux_sym_operator_cast_definition_repeat1] = STATE(2238), + [sym_identifier] = ACTIONS(225), + [aux_sym_preproc_include_token1] = ACTIONS(227), + [aux_sym_preproc_def_token1] = ACTIONS(229), + [aux_sym_preproc_if_token1] = ACTIONS(231), + [aux_sym_preproc_if_token2] = ACTIONS(297), + [aux_sym_preproc_ifdef_token1] = ACTIONS(235), + [aux_sym_preproc_ifdef_token2] = ACTIONS(235), + [aux_sym_preproc_else_token1] = ACTIONS(237), + [aux_sym_preproc_elif_token1] = ACTIONS(239), + [aux_sym_preproc_elifdef_token1] = ACTIONS(241), + [aux_sym_preproc_elifdef_token2] = ACTIONS(241), + [sym_preproc_directive] = ACTIONS(243), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -25260,233 +42907,243 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_typedef] = ACTIONS(163), - [anon_sym_extern] = ACTIONS(165), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(43), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_RBRACE] = ACTIONS(221), - [anon_sym_LBRACK] = ACTIONS(171), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(173), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(61), - [anon_sym_unsigned] = ACTIONS(61), - [anon_sym_long] = ACTIONS(61), - [anon_sym_short] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(63), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(175), - [anon_sym_switch] = ACTIONS(177), - [anon_sym_case] = ACTIONS(179), - [anon_sym_default] = ACTIONS(181), - [anon_sym_while] = ACTIONS(183), - [anon_sym_do] = ACTIONS(185), - [anon_sym_for] = ACTIONS(187), - [anon_sym_return] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), - [anon_sym_goto] = ACTIONS(195), + [anon_sym_SEMI] = ACTIONS(245), + [anon_sym_typedef] = ACTIONS(247), + [anon_sym_extern] = ACTIONS(249), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(45), + [anon_sym___cdecl] = ACTIONS(47), + [anon_sym___clrcall] = ACTIONS(47), + [anon_sym___stdcall] = ACTIONS(47), + [anon_sym___fastcall] = ACTIONS(47), + [anon_sym___thiscall] = ACTIONS(47), + [anon_sym___vectorcall] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(251), + [anon_sym_LBRACK] = ACTIONS(51), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(253), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(255), + [anon_sym_switch] = ACTIONS(257), + [anon_sym_case] = ACTIONS(259), + [anon_sym_default] = ACTIONS(261), + [anon_sym_while] = ACTIONS(263), + [anon_sym_do] = ACTIONS(265), + [anon_sym_for] = ACTIONS(267), + [anon_sym_return] = ACTIONS(269), + [anon_sym_break] = ACTIONS(271), + [anon_sym_continue] = ACTIONS(273), + [anon_sym_goto] = ACTIONS(275), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym_DOT] = ACTIONS(197), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(107), - [anon_sym_decltype] = ACTIONS(109), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_explicit] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(115), - [anon_sym_template] = ACTIONS(199), - [anon_sym_operator] = ACTIONS(119), - [anon_sym_try] = ACTIONS(201), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(203), - [anon_sym_namespace] = ACTIONS(205), - [anon_sym_using] = ACTIONS(207), - [anon_sym_static_assert] = ACTIONS(209), - [anon_sym_concept] = ACTIONS(211), - [anon_sym_co_return] = ACTIONS(213), - [anon_sym_co_yield] = ACTIONS(215), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(113), + [anon_sym_decltype] = ACTIONS(115), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_explicit] = ACTIONS(119), + [anon_sym_typename] = ACTIONS(121), + [anon_sym_template] = ACTIONS(277), + [anon_sym_operator] = ACTIONS(125), + [anon_sym_try] = ACTIONS(279), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(281), + [anon_sym_namespace] = ACTIONS(283), + [anon_sym_using] = ACTIONS(285), + [anon_sym_static_assert] = ACTIONS(287), + [anon_sym_concept] = ACTIONS(289), + [anon_sym_co_return] = ACTIONS(291), + [anon_sym_co_yield] = ACTIONS(293), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [6] = { - [sym_preproc_include] = STATE(52), - [sym_preproc_def] = STATE(52), - [sym_preproc_function_def] = STATE(52), - [sym_preproc_call] = STATE(52), - [sym_preproc_if] = STATE(52), - [sym_preproc_ifdef] = STATE(52), - [sym_function_definition] = STATE(52), - [sym_declaration] = STATE(52), - [sym_type_definition] = STATE(52), - [sym__declaration_modifiers] = STATE(3225), - [sym__declaration_specifiers] = STATE(3962), - [sym_linkage_specification] = STATE(52), - [sym_attribute_specifier] = STATE(3225), - [sym_attribute_declaration] = STATE(1136), - [sym_ms_declspec_modifier] = STATE(3225), - [sym_ms_based_modifier] = STATE(6104), - [sym_ms_call_modifier] = STATE(2065), - [sym__declarator] = STATE(5113), - [sym_parenthesized_declarator] = STATE(4918), - [sym_attributed_declarator] = STATE(4918), - [sym_pointer_declarator] = STATE(4918), - [sym_function_declarator] = STATE(4870), - [sym_array_declarator] = STATE(4918), - [sym_compound_statement] = STATE(52), - [sym_storage_class_specifier] = STATE(3225), - [sym_type_qualifier] = STATE(3225), - [sym__type_specifier] = STATE(3322), - [sym_sized_type_specifier] = STATE(3232), - [sym_enum_specifier] = STATE(3232), - [sym_struct_specifier] = STATE(3232), - [sym_union_specifier] = STATE(3232), - [sym_attributed_statement] = STATE(52), - [sym_labeled_statement] = STATE(52), - [sym_expression_statement] = STATE(52), - [sym_if_statement] = STATE(52), - [sym_switch_statement] = STATE(52), - [sym_case_statement] = STATE(52), - [sym_while_statement] = STATE(52), - [sym_do_statement] = STATE(52), - [sym_for_statement] = STATE(52), - [sym_return_statement] = STATE(52), - [sym_break_statement] = STATE(52), - [sym_continue_statement] = STATE(52), - [sym_goto_statement] = STATE(52), - [sym__expression] = STATE(3432), - [sym_comma_expression] = STATE(6595), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_initializer_list] = STATE(5369), - [sym_initializer_pair] = STATE(5369), - [sym_subscript_designator] = STATE(5115), - [sym_field_designator] = STATE(5115), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym__empty_declaration] = STATE(52), - [sym_placeholder_type_specifier] = STATE(3232), - [sym_decltype_auto] = STATE(3279), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3232), - [sym__class_name] = STATE(5753), - [sym_virtual] = STATE(3225), - [sym_explicit_function_specifier] = STATE(1936), - [sym_dependent_type] = STATE(3232), - [sym_template_declaration] = STATE(52), - [sym_template_instantiation] = STATE(52), - [sym_operator_cast] = STATE(5134), - [sym__constructor_specifiers] = STATE(1936), - [sym_operator_cast_definition] = STATE(52), - [sym_operator_cast_declaration] = STATE(52), - [sym_constructor_or_destructor_definition] = STATE(52), - [sym_reference_declarator] = STATE(4918), - [sym_structured_binding_declarator] = STATE(4918), - [sym_template_type] = STATE(3608), - [sym_template_function] = STATE(3494), - [sym_namespace_definition] = STATE(52), - [sym_namespace_alias_definition] = STATE(52), - [sym_using_declaration] = STATE(52), - [sym_alias_declaration] = STATE(52), - [sym_static_assert_declaration] = STATE(52), - [sym_concept_definition] = STATE(52), - [sym_for_range_loop] = STATE(52), - [sym_co_return_statement] = STATE(52), - [sym_co_yield_statement] = STATE(52), - [sym_throw_statement] = STATE(52), - [sym_try_statement] = STATE(52), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_destructor_name] = STATE(4918), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4460), - [sym_qualified_identifier] = STATE(2732), - [sym_qualified_type_identifier] = STATE(3593), - [sym_qualified_operator_cast_identifier] = STATE(5134), - [sym_operator_name] = STATE(4918), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_translation_unit_repeat1] = STATE(52), - [aux_sym__declaration_specifiers_repeat1] = STATE(2179), - [aux_sym_attributed_declarator_repeat1] = STATE(206), - [aux_sym_sized_type_specifier_repeat1] = STATE(3171), - [aux_sym_initializer_pair_repeat1] = STATE(5115), - [aux_sym_operator_cast_definition_repeat1] = STATE(1936), - [sym_identifier] = ACTIONS(147), - [aux_sym_preproc_include_token1] = ACTIONS(149), - [aux_sym_preproc_def_token1] = ACTIONS(151), - [anon_sym_COMMA] = ACTIONS(153), - [aux_sym_preproc_if_token1] = ACTIONS(155), - [aux_sym_preproc_ifdef_token1] = ACTIONS(157), - [aux_sym_preproc_ifdef_token2] = ACTIONS(157), - [sym_preproc_directive] = ACTIONS(159), + [sym_preproc_include] = STATE(54), + [sym_preproc_def] = STATE(54), + [sym_preproc_function_def] = STATE(54), + [sym_preproc_call] = STATE(54), + [sym_preproc_if] = STATE(54), + [sym_preproc_ifdef] = STATE(54), + [sym_function_definition] = STATE(54), + [sym_declaration] = STATE(54), + [sym_type_definition] = STATE(54), + [sym__declaration_modifiers] = STATE(3706), + [sym__declaration_specifiers] = STATE(4618), + [sym_linkage_specification] = STATE(54), + [sym_attribute_specifier] = STATE(3706), + [sym_attribute_declaration] = STATE(1427), + [sym_ms_declspec_modifier] = STATE(3706), + [sym_ms_based_modifier] = STATE(7654), + [sym_ms_call_modifier] = STATE(2462), + [sym__declarator] = STATE(5881), + [sym_parenthesized_declarator] = STATE(5640), + [sym_attributed_declarator] = STATE(5640), + [sym_pointer_declarator] = STATE(5640), + [sym_function_declarator] = STATE(5588), + [sym_array_declarator] = STATE(5640), + [sym_compound_statement] = STATE(54), + [sym_storage_class_specifier] = STATE(3706), + [sym_type_qualifier] = STATE(3706), + [sym__type_specifier] = STATE(3826), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), + [sym_attributed_statement] = STATE(54), + [sym_labeled_statement] = STATE(54), + [sym_expression_statement] = STATE(54), + [sym_if_statement] = STATE(54), + [sym_switch_statement] = STATE(54), + [sym_case_statement] = STATE(54), + [sym_while_statement] = STATE(54), + [sym_do_statement] = STATE(54), + [sym_for_statement] = STATE(54), + [sym_return_statement] = STATE(54), + [sym_break_statement] = STATE(54), + [sym_continue_statement] = STATE(54), + [sym_goto_statement] = STATE(54), + [sym__expression] = STATE(4058), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7590), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_initializer_list] = STATE(6202), + [sym_initializer_pair] = STATE(6202), + [sym_subscript_designator] = STATE(5891), + [sym_field_designator] = STATE(5891), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym__empty_declaration] = STATE(54), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym__class_name] = STATE(6623), + [sym_virtual] = STATE(3706), + [sym_explicit_function_specifier] = STATE(2240), + [sym_dependent_type] = STATE(3723), + [sym_template_declaration] = STATE(54), + [sym_template_instantiation] = STATE(54), + [sym_operator_cast] = STATE(5937), + [sym__constructor_specifiers] = STATE(2240), + [sym_operator_cast_definition] = STATE(54), + [sym_operator_cast_declaration] = STATE(54), + [sym_constructor_or_destructor_definition] = STATE(54), + [sym_reference_declarator] = STATE(5640), + [sym_structured_binding_declarator] = STATE(5640), + [sym_template_type] = STATE(3921), + [sym_template_function] = STATE(4066), + [sym_namespace_definition] = STATE(54), + [sym_namespace_alias_definition] = STATE(54), + [sym_using_declaration] = STATE(54), + [sym_alias_declaration] = STATE(54), + [sym_static_assert_declaration] = STATE(54), + [sym_concept_definition] = STATE(54), + [sym_for_range_loop] = STATE(54), + [sym_co_return_statement] = STATE(54), + [sym_co_yield_statement] = STATE(54), + [sym_throw_statement] = STATE(54), + [sym_try_statement] = STATE(54), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_destructor_name] = STATE(5640), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5143), + [sym_qualified_identifier] = STATE(3249), + [sym_qualified_type_identifier] = STATE(3915), + [sym_qualified_operator_cast_identifier] = STATE(5937), + [sym_operator_name] = STATE(5640), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_preproc_if_repeat1] = STATE(54), + [aux_sym__declaration_specifiers_repeat1] = STATE(2514), + [aux_sym_attributed_declarator_repeat1] = STATE(309), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [aux_sym_initializer_pair_repeat1] = STATE(5891), + [aux_sym_operator_cast_definition_repeat1] = STATE(2240), + [sym_identifier] = ACTIONS(153), + [aux_sym_preproc_include_token1] = ACTIONS(155), + [aux_sym_preproc_def_token1] = ACTIONS(157), + [anon_sym_COMMA] = ACTIONS(159), + [aux_sym_preproc_if_token1] = ACTIONS(161), + [aux_sym_preproc_ifdef_token1] = ACTIONS(163), + [aux_sym_preproc_ifdef_token2] = ACTIONS(163), + [sym_preproc_directive] = ACTIONS(165), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -25495,233 +43152,245 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_typedef] = ACTIONS(163), - [anon_sym_extern] = ACTIONS(165), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(43), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_RBRACE] = ACTIONS(223), - [anon_sym_LBRACK] = ACTIONS(171), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(173), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(61), - [anon_sym_unsigned] = ACTIONS(61), - [anon_sym_long] = ACTIONS(61), - [anon_sym_short] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(63), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(175), - [anon_sym_switch] = ACTIONS(177), - [anon_sym_case] = ACTIONS(179), - [anon_sym_default] = ACTIONS(181), - [anon_sym_while] = ACTIONS(183), - [anon_sym_do] = ACTIONS(185), - [anon_sym_for] = ACTIONS(187), - [anon_sym_return] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), - [anon_sym_goto] = ACTIONS(195), + [anon_sym_SEMI] = ACTIONS(167), + [anon_sym_typedef] = ACTIONS(169), + [anon_sym_extern] = ACTIONS(171), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(45), + [anon_sym___cdecl] = ACTIONS(47), + [anon_sym___clrcall] = ACTIONS(47), + [anon_sym___stdcall] = ACTIONS(47), + [anon_sym___fastcall] = ACTIONS(47), + [anon_sym___thiscall] = ACTIONS(47), + [anon_sym___vectorcall] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(173), + [anon_sym_RBRACE] = ACTIONS(299), + [anon_sym_LBRACK] = ACTIONS(177), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(179), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(181), + [anon_sym_switch] = ACTIONS(183), + [anon_sym_case] = ACTIONS(185), + [anon_sym_default] = ACTIONS(187), + [anon_sym_while] = ACTIONS(189), + [anon_sym_do] = ACTIONS(191), + [anon_sym_for] = ACTIONS(193), + [anon_sym_return] = ACTIONS(195), + [anon_sym_break] = ACTIONS(197), + [anon_sym_continue] = ACTIONS(199), + [anon_sym_goto] = ACTIONS(201), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym_DOT] = ACTIONS(197), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(107), - [anon_sym_decltype] = ACTIONS(109), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_explicit] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(115), - [anon_sym_template] = ACTIONS(199), - [anon_sym_operator] = ACTIONS(119), - [anon_sym_try] = ACTIONS(201), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(203), - [anon_sym_namespace] = ACTIONS(205), - [anon_sym_using] = ACTIONS(207), - [anon_sym_static_assert] = ACTIONS(209), - [anon_sym_concept] = ACTIONS(211), - [anon_sym_co_return] = ACTIONS(213), - [anon_sym_co_yield] = ACTIONS(215), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [anon_sym_DOT] = ACTIONS(203), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(113), + [anon_sym_decltype] = ACTIONS(115), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_explicit] = ACTIONS(119), + [anon_sym_typename] = ACTIONS(121), + [anon_sym_template] = ACTIONS(207), + [anon_sym_operator] = ACTIONS(125), + [anon_sym_try] = ACTIONS(209), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(211), + [anon_sym_namespace] = ACTIONS(213), + [anon_sym_using] = ACTIONS(215), + [anon_sym_static_assert] = ACTIONS(217), + [anon_sym_concept] = ACTIONS(219), + [anon_sym_co_return] = ACTIONS(221), + [anon_sym_co_yield] = ACTIONS(223), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [7] = { - [sym_preproc_include] = STATE(35), - [sym_preproc_def] = STATE(35), - [sym_preproc_function_def] = STATE(35), - [sym_preproc_call] = STATE(35), - [sym_preproc_if] = STATE(35), - [sym_preproc_ifdef] = STATE(35), - [sym_function_definition] = STATE(35), - [sym_declaration] = STATE(35), - [sym_type_definition] = STATE(35), - [sym__declaration_modifiers] = STATE(3225), - [sym__declaration_specifiers] = STATE(3962), - [sym_linkage_specification] = STATE(35), - [sym_attribute_specifier] = STATE(3225), - [sym_attribute_declaration] = STATE(1136), - [sym_ms_declspec_modifier] = STATE(3225), - [sym_ms_based_modifier] = STATE(6104), - [sym_ms_call_modifier] = STATE(2065), - [sym__declarator] = STATE(5113), - [sym_parenthesized_declarator] = STATE(4918), - [sym_attributed_declarator] = STATE(4918), - [sym_pointer_declarator] = STATE(4918), - [sym_function_declarator] = STATE(4870), - [sym_array_declarator] = STATE(4918), - [sym_compound_statement] = STATE(35), - [sym_storage_class_specifier] = STATE(3225), - [sym_type_qualifier] = STATE(3225), - [sym__type_specifier] = STATE(3322), - [sym_sized_type_specifier] = STATE(3232), - [sym_enum_specifier] = STATE(3232), - [sym_struct_specifier] = STATE(3232), - [sym_union_specifier] = STATE(3232), - [sym_attributed_statement] = STATE(35), - [sym_labeled_statement] = STATE(35), - [sym_expression_statement] = STATE(35), - [sym_if_statement] = STATE(35), - [sym_switch_statement] = STATE(35), - [sym_case_statement] = STATE(35), - [sym_while_statement] = STATE(35), - [sym_do_statement] = STATE(35), - [sym_for_statement] = STATE(35), - [sym_return_statement] = STATE(35), - [sym_break_statement] = STATE(35), - [sym_continue_statement] = STATE(35), - [sym_goto_statement] = STATE(35), - [sym__expression] = STATE(3432), - [sym_comma_expression] = STATE(6595), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_initializer_list] = STATE(5369), - [sym_initializer_pair] = STATE(5369), - [sym_subscript_designator] = STATE(5115), - [sym_field_designator] = STATE(5115), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym__empty_declaration] = STATE(35), - [sym_placeholder_type_specifier] = STATE(3232), - [sym_decltype_auto] = STATE(3279), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3232), - [sym__class_name] = STATE(5753), - [sym_virtual] = STATE(3225), - [sym_explicit_function_specifier] = STATE(1936), - [sym_dependent_type] = STATE(3232), - [sym_template_declaration] = STATE(35), - [sym_template_instantiation] = STATE(35), - [sym_operator_cast] = STATE(5134), - [sym__constructor_specifiers] = STATE(1936), - [sym_operator_cast_definition] = STATE(35), - [sym_operator_cast_declaration] = STATE(35), - [sym_constructor_or_destructor_definition] = STATE(35), - [sym_reference_declarator] = STATE(4918), - [sym_structured_binding_declarator] = STATE(4918), - [sym_template_type] = STATE(3608), - [sym_template_function] = STATE(3494), - [sym_namespace_definition] = STATE(35), - [sym_namespace_alias_definition] = STATE(35), - [sym_using_declaration] = STATE(35), - [sym_alias_declaration] = STATE(35), - [sym_static_assert_declaration] = STATE(35), - [sym_concept_definition] = STATE(35), - [sym_for_range_loop] = STATE(35), - [sym_co_return_statement] = STATE(35), - [sym_co_yield_statement] = STATE(35), - [sym_throw_statement] = STATE(35), - [sym_try_statement] = STATE(35), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_destructor_name] = STATE(4918), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4460), - [sym_qualified_identifier] = STATE(2732), - [sym_qualified_type_identifier] = STATE(3593), - [sym_qualified_operator_cast_identifier] = STATE(5134), - [sym_operator_name] = STATE(4918), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_translation_unit_repeat1] = STATE(35), - [aux_sym__declaration_specifiers_repeat1] = STATE(2179), - [aux_sym_attributed_declarator_repeat1] = STATE(206), - [aux_sym_sized_type_specifier_repeat1] = STATE(3171), - [aux_sym_initializer_pair_repeat1] = STATE(5115), - [aux_sym_operator_cast_definition_repeat1] = STATE(1936), - [sym_identifier] = ACTIONS(147), - [aux_sym_preproc_include_token1] = ACTIONS(149), - [aux_sym_preproc_def_token1] = ACTIONS(151), - [anon_sym_COMMA] = ACTIONS(153), - [aux_sym_preproc_if_token1] = ACTIONS(155), - [aux_sym_preproc_ifdef_token1] = ACTIONS(157), - [aux_sym_preproc_ifdef_token2] = ACTIONS(157), - [sym_preproc_directive] = ACTIONS(159), + [sym_preproc_include] = STATE(63), + [sym_preproc_def] = STATE(63), + [sym_preproc_function_def] = STATE(63), + [sym_preproc_call] = STATE(63), + [sym_preproc_if] = STATE(63), + [sym_preproc_ifdef] = STATE(63), + [sym_function_definition] = STATE(63), + [sym_declaration] = STATE(63), + [sym_type_definition] = STATE(63), + [sym__declaration_modifiers] = STATE(3706), + [sym__declaration_specifiers] = STATE(4618), + [sym_linkage_specification] = STATE(63), + [sym_attribute_specifier] = STATE(3706), + [sym_attribute_declaration] = STATE(1427), + [sym_ms_declspec_modifier] = STATE(3706), + [sym_ms_based_modifier] = STATE(7654), + [sym_ms_call_modifier] = STATE(2462), + [sym__declarator] = STATE(5881), + [sym_parenthesized_declarator] = STATE(5640), + [sym_attributed_declarator] = STATE(5640), + [sym_pointer_declarator] = STATE(5640), + [sym_function_declarator] = STATE(5588), + [sym_array_declarator] = STATE(5640), + [sym_compound_statement] = STATE(63), + [sym_storage_class_specifier] = STATE(3706), + [sym_type_qualifier] = STATE(3706), + [sym__type_specifier] = STATE(3826), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), + [sym_attributed_statement] = STATE(63), + [sym_labeled_statement] = STATE(63), + [sym_expression_statement] = STATE(63), + [sym_if_statement] = STATE(63), + [sym_switch_statement] = STATE(63), + [sym_case_statement] = STATE(63), + [sym_while_statement] = STATE(63), + [sym_do_statement] = STATE(63), + [sym_for_statement] = STATE(63), + [sym_return_statement] = STATE(63), + [sym_break_statement] = STATE(63), + [sym_continue_statement] = STATE(63), + [sym_goto_statement] = STATE(63), + [sym__expression] = STATE(4058), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7590), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_initializer_list] = STATE(6202), + [sym_initializer_pair] = STATE(6202), + [sym_subscript_designator] = STATE(5891), + [sym_field_designator] = STATE(5891), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym__empty_declaration] = STATE(63), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym__class_name] = STATE(6623), + [sym_virtual] = STATE(3706), + [sym_explicit_function_specifier] = STATE(2240), + [sym_dependent_type] = STATE(3723), + [sym_template_declaration] = STATE(63), + [sym_template_instantiation] = STATE(63), + [sym_operator_cast] = STATE(5937), + [sym__constructor_specifiers] = STATE(2240), + [sym_operator_cast_definition] = STATE(63), + [sym_operator_cast_declaration] = STATE(63), + [sym_constructor_or_destructor_definition] = STATE(63), + [sym_reference_declarator] = STATE(5640), + [sym_structured_binding_declarator] = STATE(5640), + [sym_template_type] = STATE(3921), + [sym_template_function] = STATE(4066), + [sym_namespace_definition] = STATE(63), + [sym_namespace_alias_definition] = STATE(63), + [sym_using_declaration] = STATE(63), + [sym_alias_declaration] = STATE(63), + [sym_static_assert_declaration] = STATE(63), + [sym_concept_definition] = STATE(63), + [sym_for_range_loop] = STATE(63), + [sym_co_return_statement] = STATE(63), + [sym_co_yield_statement] = STATE(63), + [sym_throw_statement] = STATE(63), + [sym_try_statement] = STATE(63), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_destructor_name] = STATE(5640), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5143), + [sym_qualified_identifier] = STATE(3249), + [sym_qualified_type_identifier] = STATE(3915), + [sym_qualified_operator_cast_identifier] = STATE(5937), + [sym_operator_name] = STATE(5640), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_preproc_if_repeat1] = STATE(63), + [aux_sym__declaration_specifiers_repeat1] = STATE(2514), + [aux_sym_attributed_declarator_repeat1] = STATE(309), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [aux_sym_initializer_pair_repeat1] = STATE(5891), + [aux_sym_operator_cast_definition_repeat1] = STATE(2240), + [sym_identifier] = ACTIONS(153), + [aux_sym_preproc_include_token1] = ACTIONS(155), + [aux_sym_preproc_def_token1] = ACTIONS(157), + [anon_sym_COMMA] = ACTIONS(159), + [aux_sym_preproc_if_token1] = ACTIONS(161), + [aux_sym_preproc_ifdef_token1] = ACTIONS(163), + [aux_sym_preproc_ifdef_token2] = ACTIONS(163), + [sym_preproc_directive] = ACTIONS(165), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -25730,104 +43399,358 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_typedef] = ACTIONS(163), - [anon_sym_extern] = ACTIONS(165), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(43), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_RBRACE] = ACTIONS(225), - [anon_sym_LBRACK] = ACTIONS(171), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(173), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(61), - [anon_sym_unsigned] = ACTIONS(61), - [anon_sym_long] = ACTIONS(61), - [anon_sym_short] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(63), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(175), - [anon_sym_switch] = ACTIONS(177), - [anon_sym_case] = ACTIONS(179), - [anon_sym_default] = ACTIONS(181), - [anon_sym_while] = ACTIONS(183), - [anon_sym_do] = ACTIONS(185), - [anon_sym_for] = ACTIONS(187), - [anon_sym_return] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), - [anon_sym_goto] = ACTIONS(195), + [anon_sym_SEMI] = ACTIONS(167), + [anon_sym_typedef] = ACTIONS(169), + [anon_sym_extern] = ACTIONS(171), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(45), + [anon_sym___cdecl] = ACTIONS(47), + [anon_sym___clrcall] = ACTIONS(47), + [anon_sym___stdcall] = ACTIONS(47), + [anon_sym___fastcall] = ACTIONS(47), + [anon_sym___thiscall] = ACTIONS(47), + [anon_sym___vectorcall] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(173), + [anon_sym_RBRACE] = ACTIONS(301), + [anon_sym_LBRACK] = ACTIONS(177), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(179), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(181), + [anon_sym_switch] = ACTIONS(183), + [anon_sym_case] = ACTIONS(185), + [anon_sym_default] = ACTIONS(187), + [anon_sym_while] = ACTIONS(189), + [anon_sym_do] = ACTIONS(191), + [anon_sym_for] = ACTIONS(193), + [anon_sym_return] = ACTIONS(195), + [anon_sym_break] = ACTIONS(197), + [anon_sym_continue] = ACTIONS(199), + [anon_sym_goto] = ACTIONS(201), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym_DOT] = ACTIONS(197), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(107), - [anon_sym_decltype] = ACTIONS(109), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_explicit] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(115), - [anon_sym_template] = ACTIONS(199), - [anon_sym_operator] = ACTIONS(119), - [anon_sym_try] = ACTIONS(201), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(203), - [anon_sym_namespace] = ACTIONS(205), - [anon_sym_using] = ACTIONS(207), - [anon_sym_static_assert] = ACTIONS(209), - [anon_sym_concept] = ACTIONS(211), - [anon_sym_co_return] = ACTIONS(213), - [anon_sym_co_yield] = ACTIONS(215), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [anon_sym_DOT] = ACTIONS(203), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(113), + [anon_sym_decltype] = ACTIONS(115), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_explicit] = ACTIONS(119), + [anon_sym_typename] = ACTIONS(121), + [anon_sym_template] = ACTIONS(207), + [anon_sym_operator] = ACTIONS(125), + [anon_sym_try] = ACTIONS(209), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(211), + [anon_sym_namespace] = ACTIONS(213), + [anon_sym_using] = ACTIONS(215), + [anon_sym_static_assert] = ACTIONS(217), + [anon_sym_concept] = ACTIONS(219), + [anon_sym_co_return] = ACTIONS(221), + [anon_sym_co_yield] = ACTIONS(223), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [8] = { + [sym_preproc_include] = STATE(11), + [sym_preproc_def] = STATE(11), + [sym_preproc_function_def] = STATE(11), + [sym_preproc_call] = STATE(11), + [sym_preproc_if] = STATE(11), + [sym_preproc_ifdef] = STATE(11), + [sym_preproc_else] = STATE(7568), + [sym_preproc_elif] = STATE(7568), + [sym_preproc_elifdef] = STATE(7568), + [sym_function_definition] = STATE(11), + [sym_declaration] = STATE(11), + [sym_type_definition] = STATE(11), + [sym__declaration_modifiers] = STATE(3706), + [sym__declaration_specifiers] = STATE(4661), + [sym_linkage_specification] = STATE(11), + [sym_attribute_specifier] = STATE(3706), + [sym_attribute_declaration] = STATE(1427), + [sym_ms_declspec_modifier] = STATE(3706), + [sym_ms_based_modifier] = STATE(7654), + [sym_ms_call_modifier] = STATE(2439), + [sym__declarator] = STATE(5881), + [sym_parenthesized_declarator] = STATE(5640), + [sym_attributed_declarator] = STATE(5640), + [sym_pointer_declarator] = STATE(5640), + [sym_function_declarator] = STATE(5566), + [sym_array_declarator] = STATE(5640), + [sym_compound_statement] = STATE(11), + [sym_storage_class_specifier] = STATE(3706), + [sym_type_qualifier] = STATE(3706), + [sym__type_specifier] = STATE(3800), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), + [sym_attributed_statement] = STATE(11), + [sym_labeled_statement] = STATE(11), + [sym_expression_statement] = STATE(11), + [sym_if_statement] = STATE(11), + [sym_switch_statement] = STATE(11), + [sym_case_statement] = STATE(11), + [sym_while_statement] = STATE(11), + [sym_do_statement] = STATE(11), + [sym_for_statement] = STATE(11), + [sym_return_statement] = STATE(11), + [sym_break_statement] = STATE(11), + [sym_continue_statement] = STATE(11), + [sym_goto_statement] = STATE(11), + [sym__expression] = STATE(4160), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7618), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym__empty_declaration] = STATE(11), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym__class_name] = STATE(6623), + [sym_virtual] = STATE(3706), + [sym_explicit_function_specifier] = STATE(2238), + [sym_dependent_type] = STATE(3723), + [sym_template_declaration] = STATE(11), + [sym_template_instantiation] = STATE(11), + [sym_operator_cast] = STATE(5918), + [sym__constructor_specifiers] = STATE(2238), + [sym_operator_cast_definition] = STATE(11), + [sym_operator_cast_declaration] = STATE(11), + [sym_constructor_or_destructor_definition] = STATE(11), + [sym_reference_declarator] = STATE(5640), + [sym_structured_binding_declarator] = STATE(5640), + [sym_template_type] = STATE(3921), + [sym_template_function] = STATE(4066), + [sym_namespace_definition] = STATE(11), + [sym_namespace_alias_definition] = STATE(11), + [sym_using_declaration] = STATE(11), + [sym_alias_declaration] = STATE(11), + [sym_static_assert_declaration] = STATE(11), + [sym_concept_definition] = STATE(11), + [sym_for_range_loop] = STATE(11), + [sym_co_return_statement] = STATE(11), + [sym_co_yield_statement] = STATE(11), + [sym_throw_statement] = STATE(11), + [sym_try_statement] = STATE(11), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_destructor_name] = STATE(5640), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5143), + [sym_qualified_identifier] = STATE(3249), + [sym_qualified_type_identifier] = STATE(3915), + [sym_qualified_operator_cast_identifier] = STATE(5918), + [sym_operator_name] = STATE(5640), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_preproc_if_repeat1] = STATE(11), + [aux_sym__declaration_specifiers_repeat1] = STATE(2514), + [aux_sym_attributed_declarator_repeat1] = STATE(244), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [aux_sym_operator_cast_definition_repeat1] = STATE(2238), + [sym_identifier] = ACTIONS(225), + [aux_sym_preproc_include_token1] = ACTIONS(227), + [aux_sym_preproc_def_token1] = ACTIONS(229), + [aux_sym_preproc_if_token1] = ACTIONS(231), + [aux_sym_preproc_if_token2] = ACTIONS(303), + [aux_sym_preproc_ifdef_token1] = ACTIONS(235), + [aux_sym_preproc_ifdef_token2] = ACTIONS(235), + [aux_sym_preproc_else_token1] = ACTIONS(237), + [aux_sym_preproc_elif_token1] = ACTIONS(239), + [aux_sym_preproc_elifdef_token1] = ACTIONS(241), + [aux_sym_preproc_elifdef_token2] = ACTIONS(241), + [sym_preproc_directive] = ACTIONS(243), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(245), + [anon_sym_typedef] = ACTIONS(247), + [anon_sym_extern] = ACTIONS(249), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(45), + [anon_sym___cdecl] = ACTIONS(47), + [anon_sym___clrcall] = ACTIONS(47), + [anon_sym___stdcall] = ACTIONS(47), + [anon_sym___fastcall] = ACTIONS(47), + [anon_sym___thiscall] = ACTIONS(47), + [anon_sym___vectorcall] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(251), + [anon_sym_LBRACK] = ACTIONS(51), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(253), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(255), + [anon_sym_switch] = ACTIONS(257), + [anon_sym_case] = ACTIONS(259), + [anon_sym_default] = ACTIONS(261), + [anon_sym_while] = ACTIONS(263), + [anon_sym_do] = ACTIONS(265), + [anon_sym_for] = ACTIONS(267), + [anon_sym_return] = ACTIONS(269), + [anon_sym_break] = ACTIONS(271), + [anon_sym_continue] = ACTIONS(273), + [anon_sym_goto] = ACTIONS(275), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(113), + [anon_sym_decltype] = ACTIONS(115), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_explicit] = ACTIONS(119), + [anon_sym_typename] = ACTIONS(121), + [anon_sym_template] = ACTIONS(277), + [anon_sym_operator] = ACTIONS(125), + [anon_sym_try] = ACTIONS(279), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(281), + [anon_sym_namespace] = ACTIONS(283), + [anon_sym_using] = ACTIONS(285), + [anon_sym_static_assert] = ACTIONS(287), + [anon_sym_concept] = ACTIONS(289), + [anon_sym_co_return] = ACTIONS(291), + [anon_sym_co_yield] = ACTIONS(293), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), + }, + [9] = { [sym_preproc_include] = STATE(47), [sym_preproc_def] = STATE(47), [sym_preproc_function_def] = STATE(47), @@ -25837,28 +43760,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_definition] = STATE(47), [sym_declaration] = STATE(47), [sym_type_definition] = STATE(47), - [sym__declaration_modifiers] = STATE(3225), - [sym__declaration_specifiers] = STATE(3962), + [sym__declaration_modifiers] = STATE(3706), + [sym__declaration_specifiers] = STATE(4618), [sym_linkage_specification] = STATE(47), - [sym_attribute_specifier] = STATE(3225), - [sym_attribute_declaration] = STATE(1136), - [sym_ms_declspec_modifier] = STATE(3225), - [sym_ms_based_modifier] = STATE(6104), - [sym_ms_call_modifier] = STATE(2065), - [sym__declarator] = STATE(5113), - [sym_parenthesized_declarator] = STATE(4918), - [sym_attributed_declarator] = STATE(4918), - [sym_pointer_declarator] = STATE(4918), - [sym_function_declarator] = STATE(4870), - [sym_array_declarator] = STATE(4918), + [sym_attribute_specifier] = STATE(3706), + [sym_attribute_declaration] = STATE(1427), + [sym_ms_declspec_modifier] = STATE(3706), + [sym_ms_based_modifier] = STATE(7654), + [sym_ms_call_modifier] = STATE(2462), + [sym__declarator] = STATE(5881), + [sym_parenthesized_declarator] = STATE(5640), + [sym_attributed_declarator] = STATE(5640), + [sym_pointer_declarator] = STATE(5640), + [sym_function_declarator] = STATE(5588), + [sym_array_declarator] = STATE(5640), [sym_compound_statement] = STATE(47), - [sym_storage_class_specifier] = STATE(3225), - [sym_type_qualifier] = STATE(3225), - [sym__type_specifier] = STATE(3322), - [sym_sized_type_specifier] = STATE(3232), - [sym_enum_specifier] = STATE(3232), - [sym_struct_specifier] = STATE(3232), - [sym_union_specifier] = STATE(3232), + [sym_storage_class_specifier] = STATE(3706), + [sym_type_qualifier] = STATE(3706), + [sym__type_specifier] = STATE(3826), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), [sym_attributed_statement] = STATE(47), [sym_labeled_statement] = STATE(47), [sym_expression_statement] = STATE(47), @@ -25872,48 +43795,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(47), [sym_continue_statement] = STATE(47), [sym_goto_statement] = STATE(47), - [sym__expression] = STATE(3432), - [sym_comma_expression] = STATE(6595), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_initializer_list] = STATE(5369), - [sym_initializer_pair] = STATE(5369), - [sym_subscript_designator] = STATE(5115), - [sym_field_designator] = STATE(5115), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), + [sym__expression] = STATE(4058), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7590), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_initializer_list] = STATE(6202), + [sym_initializer_pair] = STATE(6202), + [sym_subscript_designator] = STATE(5891), + [sym_field_designator] = STATE(5891), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), [sym__empty_declaration] = STATE(47), - [sym_placeholder_type_specifier] = STATE(3232), - [sym_decltype_auto] = STATE(3279), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3232), - [sym__class_name] = STATE(5753), - [sym_virtual] = STATE(3225), - [sym_explicit_function_specifier] = STATE(1936), - [sym_dependent_type] = STATE(3232), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym__class_name] = STATE(6623), + [sym_virtual] = STATE(3706), + [sym_explicit_function_specifier] = STATE(2240), + [sym_dependent_type] = STATE(3723), [sym_template_declaration] = STATE(47), [sym_template_instantiation] = STATE(47), - [sym_operator_cast] = STATE(5134), - [sym__constructor_specifiers] = STATE(1936), + [sym_operator_cast] = STATE(5937), + [sym__constructor_specifiers] = STATE(2240), [sym_operator_cast_definition] = STATE(47), [sym_operator_cast_declaration] = STATE(47), [sym_constructor_or_destructor_definition] = STATE(47), - [sym_reference_declarator] = STATE(4918), - [sym_structured_binding_declarator] = STATE(4918), - [sym_template_type] = STATE(3608), - [sym_template_function] = STATE(3494), + [sym_reference_declarator] = STATE(5640), + [sym_structured_binding_declarator] = STATE(5640), + [sym_template_type] = STATE(3921), + [sym_template_function] = STATE(4066), [sym_namespace_definition] = STATE(47), [sym_namespace_alias_definition] = STATE(47), [sym_using_declaration] = STATE(47), @@ -25925,273 +43853,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_co_yield_statement] = STATE(47), [sym_throw_statement] = STATE(47), [sym_try_statement] = STATE(47), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_destructor_name] = STATE(4918), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4460), - [sym_qualified_identifier] = STATE(2732), - [sym_qualified_type_identifier] = STATE(3593), - [sym_qualified_operator_cast_identifier] = STATE(5134), - [sym_operator_name] = STATE(4918), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_translation_unit_repeat1] = STATE(47), - [aux_sym__declaration_specifiers_repeat1] = STATE(2179), - [aux_sym_attributed_declarator_repeat1] = STATE(206), - [aux_sym_sized_type_specifier_repeat1] = STATE(3171), - [aux_sym_initializer_pair_repeat1] = STATE(5115), - [aux_sym_operator_cast_definition_repeat1] = STATE(1936), - [sym_identifier] = ACTIONS(147), - [aux_sym_preproc_include_token1] = ACTIONS(149), - [aux_sym_preproc_def_token1] = ACTIONS(151), - [anon_sym_COMMA] = ACTIONS(153), - [aux_sym_preproc_if_token1] = ACTIONS(155), - [aux_sym_preproc_ifdef_token1] = ACTIONS(157), - [aux_sym_preproc_ifdef_token2] = ACTIONS(157), - [sym_preproc_directive] = ACTIONS(159), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_typedef] = ACTIONS(163), - [anon_sym_extern] = ACTIONS(165), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(43), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_RBRACE] = ACTIONS(227), - [anon_sym_LBRACK] = ACTIONS(171), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(173), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(61), - [anon_sym_unsigned] = ACTIONS(61), - [anon_sym_long] = ACTIONS(61), - [anon_sym_short] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(63), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(175), - [anon_sym_switch] = ACTIONS(177), - [anon_sym_case] = ACTIONS(179), - [anon_sym_default] = ACTIONS(181), - [anon_sym_while] = ACTIONS(183), - [anon_sym_do] = ACTIONS(185), - [anon_sym_for] = ACTIONS(187), - [anon_sym_return] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), - [anon_sym_goto] = ACTIONS(195), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym_DOT] = ACTIONS(197), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(107), - [anon_sym_decltype] = ACTIONS(109), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_explicit] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(115), - [anon_sym_template] = ACTIONS(199), - [anon_sym_operator] = ACTIONS(119), - [anon_sym_try] = ACTIONS(201), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(203), - [anon_sym_namespace] = ACTIONS(205), - [anon_sym_using] = ACTIONS(207), - [anon_sym_static_assert] = ACTIONS(209), - [anon_sym_concept] = ACTIONS(211), - [anon_sym_co_return] = ACTIONS(213), - [anon_sym_co_yield] = ACTIONS(215), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), - }, - [9] = { - [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_declaration] = STATE(66), - [sym_type_definition] = STATE(66), - [sym__declaration_modifiers] = STATE(3225), - [sym__declaration_specifiers] = STATE(3962), - [sym_linkage_specification] = STATE(66), - [sym_attribute_specifier] = STATE(3225), - [sym_attribute_declaration] = STATE(1136), - [sym_ms_declspec_modifier] = STATE(3225), - [sym_ms_based_modifier] = STATE(6104), - [sym_ms_call_modifier] = STATE(2065), - [sym__declarator] = STATE(5113), - [sym_parenthesized_declarator] = STATE(4918), - [sym_attributed_declarator] = STATE(4918), - [sym_pointer_declarator] = STATE(4918), - [sym_function_declarator] = STATE(4870), - [sym_array_declarator] = STATE(4918), - [sym_compound_statement] = STATE(66), - [sym_storage_class_specifier] = STATE(3225), - [sym_type_qualifier] = STATE(3225), - [sym__type_specifier] = STATE(3322), - [sym_sized_type_specifier] = STATE(3232), - [sym_enum_specifier] = STATE(3232), - [sym_struct_specifier] = STATE(3232), - [sym_union_specifier] = STATE(3232), - [sym_attributed_statement] = STATE(66), - [sym_labeled_statement] = STATE(66), - [sym_expression_statement] = STATE(66), - [sym_if_statement] = STATE(66), - [sym_switch_statement] = STATE(66), - [sym_case_statement] = STATE(66), - [sym_while_statement] = STATE(66), - [sym_do_statement] = STATE(66), - [sym_for_statement] = STATE(66), - [sym_return_statement] = STATE(66), - [sym_break_statement] = STATE(66), - [sym_continue_statement] = STATE(66), - [sym_goto_statement] = STATE(66), - [sym__expression] = STATE(3432), - [sym_comma_expression] = STATE(6595), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_initializer_list] = STATE(5369), - [sym_initializer_pair] = STATE(5369), - [sym_subscript_designator] = STATE(5115), - [sym_field_designator] = STATE(5115), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym__empty_declaration] = STATE(66), - [sym_placeholder_type_specifier] = STATE(3232), - [sym_decltype_auto] = STATE(3279), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3232), - [sym__class_name] = STATE(5753), - [sym_virtual] = STATE(3225), - [sym_explicit_function_specifier] = STATE(1936), - [sym_dependent_type] = STATE(3232), - [sym_template_declaration] = STATE(66), - [sym_template_instantiation] = STATE(66), - [sym_operator_cast] = STATE(5134), - [sym__constructor_specifiers] = STATE(1936), - [sym_operator_cast_definition] = STATE(66), - [sym_operator_cast_declaration] = STATE(66), - [sym_constructor_or_destructor_definition] = STATE(66), - [sym_reference_declarator] = STATE(4918), - [sym_structured_binding_declarator] = STATE(4918), - [sym_template_type] = STATE(3608), - [sym_template_function] = STATE(3494), - [sym_namespace_definition] = STATE(66), - [sym_namespace_alias_definition] = STATE(66), - [sym_using_declaration] = STATE(66), - [sym_alias_declaration] = STATE(66), - [sym_static_assert_declaration] = STATE(66), - [sym_concept_definition] = STATE(66), - [sym_for_range_loop] = STATE(66), - [sym_co_return_statement] = STATE(66), - [sym_co_yield_statement] = STATE(66), - [sym_throw_statement] = STATE(66), - [sym_try_statement] = STATE(66), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_destructor_name] = STATE(4918), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4460), - [sym_qualified_identifier] = STATE(2732), - [sym_qualified_type_identifier] = STATE(3593), - [sym_qualified_operator_cast_identifier] = STATE(5134), - [sym_operator_name] = STATE(4918), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_translation_unit_repeat1] = STATE(66), - [aux_sym__declaration_specifiers_repeat1] = STATE(2179), - [aux_sym_attributed_declarator_repeat1] = STATE(206), - [aux_sym_sized_type_specifier_repeat1] = STATE(3171), - [aux_sym_initializer_pair_repeat1] = STATE(5115), - [aux_sym_operator_cast_definition_repeat1] = STATE(1936), - [sym_identifier] = ACTIONS(147), - [aux_sym_preproc_include_token1] = ACTIONS(149), - [aux_sym_preproc_def_token1] = ACTIONS(151), - [anon_sym_COMMA] = ACTIONS(153), - [aux_sym_preproc_if_token1] = ACTIONS(155), - [aux_sym_preproc_ifdef_token1] = ACTIONS(157), - [aux_sym_preproc_ifdef_token2] = ACTIONS(157), - [sym_preproc_directive] = ACTIONS(159), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_destructor_name] = STATE(5640), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5143), + [sym_qualified_identifier] = STATE(3249), + [sym_qualified_type_identifier] = STATE(3915), + [sym_qualified_operator_cast_identifier] = STATE(5937), + [sym_operator_name] = STATE(5640), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_preproc_if_repeat1] = STATE(47), + [aux_sym__declaration_specifiers_repeat1] = STATE(2514), + [aux_sym_attributed_declarator_repeat1] = STATE(309), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [aux_sym_initializer_pair_repeat1] = STATE(5891), + [aux_sym_operator_cast_definition_repeat1] = STATE(2240), + [sym_identifier] = ACTIONS(153), + [aux_sym_preproc_include_token1] = ACTIONS(155), + [aux_sym_preproc_def_token1] = ACTIONS(157), + [anon_sym_COMMA] = ACTIONS(159), + [aux_sym_preproc_if_token1] = ACTIONS(161), + [aux_sym_preproc_ifdef_token1] = ACTIONS(163), + [aux_sym_preproc_ifdef_token2] = ACTIONS(163), + [sym_preproc_directive] = ACTIONS(165), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -26200,232 +43893,247 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_typedef] = ACTIONS(163), - [anon_sym_extern] = ACTIONS(165), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(43), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(167), - [anon_sym_RBRACE] = ACTIONS(229), - [anon_sym_LBRACK] = ACTIONS(171), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(173), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(61), - [anon_sym_unsigned] = ACTIONS(61), - [anon_sym_long] = ACTIONS(61), - [anon_sym_short] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(63), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(175), - [anon_sym_switch] = ACTIONS(177), - [anon_sym_case] = ACTIONS(179), - [anon_sym_default] = ACTIONS(181), - [anon_sym_while] = ACTIONS(183), - [anon_sym_do] = ACTIONS(185), - [anon_sym_for] = ACTIONS(187), - [anon_sym_return] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), - [anon_sym_goto] = ACTIONS(195), + [anon_sym_SEMI] = ACTIONS(167), + [anon_sym_typedef] = ACTIONS(169), + [anon_sym_extern] = ACTIONS(171), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(45), + [anon_sym___cdecl] = ACTIONS(47), + [anon_sym___clrcall] = ACTIONS(47), + [anon_sym___stdcall] = ACTIONS(47), + [anon_sym___fastcall] = ACTIONS(47), + [anon_sym___thiscall] = ACTIONS(47), + [anon_sym___vectorcall] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(173), + [anon_sym_RBRACE] = ACTIONS(305), + [anon_sym_LBRACK] = ACTIONS(177), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(179), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(181), + [anon_sym_switch] = ACTIONS(183), + [anon_sym_case] = ACTIONS(185), + [anon_sym_default] = ACTIONS(187), + [anon_sym_while] = ACTIONS(189), + [anon_sym_do] = ACTIONS(191), + [anon_sym_for] = ACTIONS(193), + [anon_sym_return] = ACTIONS(195), + [anon_sym_break] = ACTIONS(197), + [anon_sym_continue] = ACTIONS(199), + [anon_sym_goto] = ACTIONS(201), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym_DOT] = ACTIONS(197), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(107), - [anon_sym_decltype] = ACTIONS(109), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_explicit] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(115), - [anon_sym_template] = ACTIONS(199), - [anon_sym_operator] = ACTIONS(119), - [anon_sym_try] = ACTIONS(201), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(203), - [anon_sym_namespace] = ACTIONS(205), - [anon_sym_using] = ACTIONS(207), - [anon_sym_static_assert] = ACTIONS(209), - [anon_sym_concept] = ACTIONS(211), - [anon_sym_co_return] = ACTIONS(213), - [anon_sym_co_yield] = ACTIONS(215), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [anon_sym_DOT] = ACTIONS(203), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(113), + [anon_sym_decltype] = ACTIONS(115), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_explicit] = ACTIONS(119), + [anon_sym_typename] = ACTIONS(121), + [anon_sym_template] = ACTIONS(207), + [anon_sym_operator] = ACTIONS(125), + [anon_sym_try] = ACTIONS(209), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(211), + [anon_sym_namespace] = ACTIONS(213), + [anon_sym_using] = ACTIONS(215), + [anon_sym_static_assert] = ACTIONS(217), + [anon_sym_concept] = ACTIONS(219), + [anon_sym_co_return] = ACTIONS(221), + [anon_sym_co_yield] = ACTIONS(223), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [10] = { - [sym_preproc_include] = STATE(28), - [sym_preproc_def] = STATE(28), - [sym_preproc_function_def] = STATE(28), - [sym_preproc_call] = STATE(28), - [sym_preproc_if] = STATE(28), - [sym_preproc_ifdef] = STATE(28), - [sym_preproc_else] = STATE(6309), - [sym_preproc_elif] = STATE(6309), - [sym_function_definition] = STATE(28), - [sym_declaration] = STATE(28), - [sym_type_definition] = STATE(28), - [sym__declaration_modifiers] = STATE(3225), - [sym__declaration_specifiers] = STATE(3935), - [sym_linkage_specification] = STATE(28), - [sym_attribute_specifier] = STATE(3225), - [sym_attribute_declaration] = STATE(1136), - [sym_ms_declspec_modifier] = STATE(3225), - [sym_ms_based_modifier] = STATE(6104), - [sym_ms_call_modifier] = STATE(2012), - [sym__declarator] = STATE(5113), - [sym_parenthesized_declarator] = STATE(4918), - [sym_attributed_declarator] = STATE(4918), - [sym_pointer_declarator] = STATE(4918), - [sym_function_declarator] = STATE(4824), - [sym_array_declarator] = STATE(4918), - [sym_compound_statement] = STATE(28), - [sym_storage_class_specifier] = STATE(3225), - [sym_type_qualifier] = STATE(3225), - [sym__type_specifier] = STATE(3297), - [sym_sized_type_specifier] = STATE(3232), - [sym_enum_specifier] = STATE(3232), - [sym_struct_specifier] = STATE(3232), - [sym_union_specifier] = STATE(3232), - [sym_attributed_statement] = STATE(28), - [sym_labeled_statement] = STATE(28), - [sym_expression_statement] = STATE(28), - [sym_if_statement] = STATE(28), - [sym_switch_statement] = STATE(28), - [sym_case_statement] = STATE(28), - [sym_while_statement] = STATE(28), - [sym_do_statement] = STATE(28), - [sym_for_statement] = STATE(28), - [sym_return_statement] = STATE(28), - [sym_break_statement] = STATE(28), - [sym_continue_statement] = STATE(28), - [sym_goto_statement] = STATE(28), - [sym__expression] = STATE(3497), - [sym_comma_expression] = STATE(6497), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym__empty_declaration] = STATE(28), - [sym_placeholder_type_specifier] = STATE(3232), - [sym_decltype_auto] = STATE(3279), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3232), - [sym__class_name] = STATE(5753), - [sym_virtual] = STATE(3225), - [sym_explicit_function_specifier] = STATE(1962), - [sym_dependent_type] = STATE(3232), - [sym_template_declaration] = STATE(28), - [sym_template_instantiation] = STATE(28), - [sym_operator_cast] = STATE(5146), - [sym__constructor_specifiers] = STATE(1962), - [sym_operator_cast_definition] = STATE(28), - [sym_operator_cast_declaration] = STATE(28), - [sym_constructor_or_destructor_definition] = STATE(28), - [sym_reference_declarator] = STATE(4918), - [sym_structured_binding_declarator] = STATE(4918), - [sym_template_type] = STATE(3608), - [sym_template_function] = STATE(3494), - [sym_namespace_definition] = STATE(28), - [sym_namespace_alias_definition] = STATE(28), - [sym_using_declaration] = STATE(28), - [sym_alias_declaration] = STATE(28), - [sym_static_assert_declaration] = STATE(28), - [sym_concept_definition] = STATE(28), - [sym_for_range_loop] = STATE(28), - [sym_co_return_statement] = STATE(28), - [sym_co_yield_statement] = STATE(28), - [sym_throw_statement] = STATE(28), - [sym_try_statement] = STATE(28), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_destructor_name] = STATE(4918), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4460), - [sym_qualified_identifier] = STATE(2732), - [sym_qualified_type_identifier] = STATE(3593), - [sym_qualified_operator_cast_identifier] = STATE(5146), - [sym_operator_name] = STATE(4918), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_translation_unit_repeat1] = STATE(28), - [aux_sym__declaration_specifiers_repeat1] = STATE(2179), - [aux_sym_attributed_declarator_repeat1] = STATE(253), - [aux_sym_sized_type_specifier_repeat1] = STATE(3171), - [aux_sym_operator_cast_definition_repeat1] = STATE(1962), - [sym_identifier] = ACTIONS(231), - [aux_sym_preproc_include_token1] = ACTIONS(233), - [aux_sym_preproc_def_token1] = ACTIONS(235), - [aux_sym_preproc_if_token1] = ACTIONS(237), - [aux_sym_preproc_if_token2] = ACTIONS(239), - [aux_sym_preproc_ifdef_token1] = ACTIONS(241), - [aux_sym_preproc_ifdef_token2] = ACTIONS(241), - [aux_sym_preproc_else_token1] = ACTIONS(243), - [aux_sym_preproc_elif_token1] = ACTIONS(245), - [sym_preproc_directive] = ACTIONS(247), + [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(7427), + [sym_preproc_elif] = STATE(7427), + [sym_preproc_elifdef] = STATE(7427), + [sym_function_definition] = STATE(33), + [sym_declaration] = STATE(33), + [sym_type_definition] = STATE(33), + [sym__declaration_modifiers] = STATE(3706), + [sym__declaration_specifiers] = STATE(4661), + [sym_linkage_specification] = STATE(33), + [sym_attribute_specifier] = STATE(3706), + [sym_attribute_declaration] = STATE(1427), + [sym_ms_declspec_modifier] = STATE(3706), + [sym_ms_based_modifier] = STATE(7654), + [sym_ms_call_modifier] = STATE(2439), + [sym__declarator] = STATE(5881), + [sym_parenthesized_declarator] = STATE(5640), + [sym_attributed_declarator] = STATE(5640), + [sym_pointer_declarator] = STATE(5640), + [sym_function_declarator] = STATE(5566), + [sym_array_declarator] = STATE(5640), + [sym_compound_statement] = STATE(33), + [sym_storage_class_specifier] = STATE(3706), + [sym_type_qualifier] = STATE(3706), + [sym__type_specifier] = STATE(3800), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), + [sym_attributed_statement] = STATE(33), + [sym_labeled_statement] = STATE(33), + [sym_expression_statement] = STATE(33), + [sym_if_statement] = STATE(33), + [sym_switch_statement] = STATE(33), + [sym_case_statement] = STATE(33), + [sym_while_statement] = STATE(33), + [sym_do_statement] = STATE(33), + [sym_for_statement] = STATE(33), + [sym_return_statement] = STATE(33), + [sym_break_statement] = STATE(33), + [sym_continue_statement] = STATE(33), + [sym_goto_statement] = STATE(33), + [sym__expression] = STATE(4160), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7618), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym__empty_declaration] = STATE(33), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym__class_name] = STATE(6623), + [sym_virtual] = STATE(3706), + [sym_explicit_function_specifier] = STATE(2238), + [sym_dependent_type] = STATE(3723), + [sym_template_declaration] = STATE(33), + [sym_template_instantiation] = STATE(33), + [sym_operator_cast] = STATE(5918), + [sym__constructor_specifiers] = STATE(2238), + [sym_operator_cast_definition] = STATE(33), + [sym_operator_cast_declaration] = STATE(33), + [sym_constructor_or_destructor_definition] = STATE(33), + [sym_reference_declarator] = STATE(5640), + [sym_structured_binding_declarator] = STATE(5640), + [sym_template_type] = STATE(3921), + [sym_template_function] = STATE(4066), + [sym_namespace_definition] = STATE(33), + [sym_namespace_alias_definition] = STATE(33), + [sym_using_declaration] = STATE(33), + [sym_alias_declaration] = STATE(33), + [sym_static_assert_declaration] = STATE(33), + [sym_concept_definition] = STATE(33), + [sym_for_range_loop] = STATE(33), + [sym_co_return_statement] = STATE(33), + [sym_co_yield_statement] = STATE(33), + [sym_throw_statement] = STATE(33), + [sym_try_statement] = STATE(33), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_destructor_name] = STATE(5640), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5143), + [sym_qualified_identifier] = STATE(3249), + [sym_qualified_type_identifier] = STATE(3915), + [sym_qualified_operator_cast_identifier] = STATE(5918), + [sym_operator_name] = STATE(5640), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_preproc_if_repeat1] = STATE(33), + [aux_sym__declaration_specifiers_repeat1] = STATE(2514), + [aux_sym_attributed_declarator_repeat1] = STATE(244), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [aux_sym_operator_cast_definition_repeat1] = STATE(2238), + [sym_identifier] = ACTIONS(225), + [aux_sym_preproc_include_token1] = ACTIONS(227), + [aux_sym_preproc_def_token1] = ACTIONS(229), + [aux_sym_preproc_if_token1] = ACTIONS(231), + [aux_sym_preproc_if_token2] = ACTIONS(307), + [aux_sym_preproc_ifdef_token1] = ACTIONS(235), + [aux_sym_preproc_ifdef_token2] = ACTIONS(235), + [aux_sym_preproc_else_token1] = ACTIONS(237), + [aux_sym_preproc_elif_token1] = ACTIONS(239), + [aux_sym_preproc_elifdef_token1] = ACTIONS(241), + [aux_sym_preproc_elifdef_token2] = ACTIONS(241), + [sym_preproc_directive] = ACTIONS(243), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -26434,230 +44142,245 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(249), - [anon_sym_typedef] = ACTIONS(251), - [anon_sym_extern] = ACTIONS(253), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(43), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(255), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(257), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(61), - [anon_sym_unsigned] = ACTIONS(61), - [anon_sym_long] = ACTIONS(61), - [anon_sym_short] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(63), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(259), - [anon_sym_switch] = ACTIONS(261), - [anon_sym_case] = ACTIONS(263), - [anon_sym_default] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_do] = ACTIONS(269), - [anon_sym_for] = ACTIONS(271), - [anon_sym_return] = ACTIONS(273), - [anon_sym_break] = ACTIONS(275), - [anon_sym_continue] = ACTIONS(277), - [anon_sym_goto] = ACTIONS(279), + [anon_sym_SEMI] = ACTIONS(245), + [anon_sym_typedef] = ACTIONS(247), + [anon_sym_extern] = ACTIONS(249), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(45), + [anon_sym___cdecl] = ACTIONS(47), + [anon_sym___clrcall] = ACTIONS(47), + [anon_sym___stdcall] = ACTIONS(47), + [anon_sym___fastcall] = ACTIONS(47), + [anon_sym___thiscall] = ACTIONS(47), + [anon_sym___vectorcall] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(251), + [anon_sym_LBRACK] = ACTIONS(51), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(253), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(255), + [anon_sym_switch] = ACTIONS(257), + [anon_sym_case] = ACTIONS(259), + [anon_sym_default] = ACTIONS(261), + [anon_sym_while] = ACTIONS(263), + [anon_sym_do] = ACTIONS(265), + [anon_sym_for] = ACTIONS(267), + [anon_sym_return] = ACTIONS(269), + [anon_sym_break] = ACTIONS(271), + [anon_sym_continue] = ACTIONS(273), + [anon_sym_goto] = ACTIONS(275), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(107), - [anon_sym_decltype] = ACTIONS(109), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_explicit] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(115), - [anon_sym_template] = ACTIONS(281), - [anon_sym_operator] = ACTIONS(119), - [anon_sym_try] = ACTIONS(283), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(285), - [anon_sym_namespace] = ACTIONS(287), - [anon_sym_using] = ACTIONS(289), - [anon_sym_static_assert] = ACTIONS(291), - [anon_sym_concept] = ACTIONS(293), - [anon_sym_co_return] = ACTIONS(295), - [anon_sym_co_yield] = ACTIONS(297), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(113), + [anon_sym_decltype] = ACTIONS(115), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_explicit] = ACTIONS(119), + [anon_sym_typename] = ACTIONS(121), + [anon_sym_template] = ACTIONS(277), + [anon_sym_operator] = ACTIONS(125), + [anon_sym_try] = ACTIONS(279), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(281), + [anon_sym_namespace] = ACTIONS(283), + [anon_sym_using] = ACTIONS(285), + [anon_sym_static_assert] = ACTIONS(287), + [anon_sym_concept] = ACTIONS(289), + [anon_sym_co_return] = ACTIONS(291), + [anon_sym_co_yield] = ACTIONS(293), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [11] = { - [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(6434), - [sym_preproc_elif] = STATE(6434), - [sym_function_definition] = STATE(28), - [sym_declaration] = STATE(28), - [sym_type_definition] = STATE(28), - [sym__declaration_modifiers] = STATE(3225), - [sym__declaration_specifiers] = STATE(3935), - [sym_linkage_specification] = STATE(28), - [sym_attribute_specifier] = STATE(3225), - [sym_attribute_declaration] = STATE(1136), - [sym_ms_declspec_modifier] = STATE(3225), - [sym_ms_based_modifier] = STATE(6104), - [sym_ms_call_modifier] = STATE(2012), - [sym__declarator] = STATE(5113), - [sym_parenthesized_declarator] = STATE(4918), - [sym_attributed_declarator] = STATE(4918), - [sym_pointer_declarator] = STATE(4918), - [sym_function_declarator] = STATE(4824), - [sym_array_declarator] = STATE(4918), - [sym_compound_statement] = STATE(28), - [sym_storage_class_specifier] = STATE(3225), - [sym_type_qualifier] = STATE(3225), - [sym__type_specifier] = STATE(3297), - [sym_sized_type_specifier] = STATE(3232), - [sym_enum_specifier] = STATE(3232), - [sym_struct_specifier] = STATE(3232), - [sym_union_specifier] = STATE(3232), - [sym_attributed_statement] = STATE(28), - [sym_labeled_statement] = STATE(28), - [sym_expression_statement] = STATE(28), - [sym_if_statement] = STATE(28), - [sym_switch_statement] = STATE(28), - [sym_case_statement] = STATE(28), - [sym_while_statement] = STATE(28), - [sym_do_statement] = STATE(28), - [sym_for_statement] = STATE(28), - [sym_return_statement] = STATE(28), - [sym_break_statement] = STATE(28), - [sym_continue_statement] = STATE(28), - [sym_goto_statement] = STATE(28), - [sym__expression] = STATE(3497), - [sym_comma_expression] = STATE(6497), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym__empty_declaration] = STATE(28), - [sym_placeholder_type_specifier] = STATE(3232), - [sym_decltype_auto] = STATE(3279), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3232), - [sym__class_name] = STATE(5753), - [sym_virtual] = STATE(3225), - [sym_explicit_function_specifier] = STATE(1962), - [sym_dependent_type] = STATE(3232), - [sym_template_declaration] = STATE(28), - [sym_template_instantiation] = STATE(28), - [sym_operator_cast] = STATE(5146), - [sym__constructor_specifiers] = STATE(1962), - [sym_operator_cast_definition] = STATE(28), - [sym_operator_cast_declaration] = STATE(28), - [sym_constructor_or_destructor_definition] = STATE(28), - [sym_reference_declarator] = STATE(4918), - [sym_structured_binding_declarator] = STATE(4918), - [sym_template_type] = STATE(3608), - [sym_template_function] = STATE(3494), - [sym_namespace_definition] = STATE(28), - [sym_namespace_alias_definition] = STATE(28), - [sym_using_declaration] = STATE(28), - [sym_alias_declaration] = STATE(28), - [sym_static_assert_declaration] = STATE(28), - [sym_concept_definition] = STATE(28), - [sym_for_range_loop] = STATE(28), - [sym_co_return_statement] = STATE(28), - [sym_co_yield_statement] = STATE(28), - [sym_throw_statement] = STATE(28), - [sym_try_statement] = STATE(28), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_destructor_name] = STATE(4918), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4460), - [sym_qualified_identifier] = STATE(2732), - [sym_qualified_type_identifier] = STATE(3593), - [sym_qualified_operator_cast_identifier] = STATE(5146), - [sym_operator_name] = STATE(4918), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_translation_unit_repeat1] = STATE(28), - [aux_sym__declaration_specifiers_repeat1] = STATE(2179), - [aux_sym_attributed_declarator_repeat1] = STATE(253), - [aux_sym_sized_type_specifier_repeat1] = STATE(3171), - [aux_sym_operator_cast_definition_repeat1] = STATE(1962), - [sym_identifier] = ACTIONS(231), - [aux_sym_preproc_include_token1] = ACTIONS(233), - [aux_sym_preproc_def_token1] = ACTIONS(235), - [aux_sym_preproc_if_token1] = ACTIONS(237), - [aux_sym_preproc_if_token2] = ACTIONS(299), - [aux_sym_preproc_ifdef_token1] = ACTIONS(241), - [aux_sym_preproc_ifdef_token2] = ACTIONS(241), - [aux_sym_preproc_else_token1] = ACTIONS(243), - [aux_sym_preproc_elif_token1] = ACTIONS(245), - [sym_preproc_directive] = ACTIONS(247), + [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(7504), + [sym_preproc_elif] = STATE(7504), + [sym_preproc_elifdef] = STATE(7504), + [sym_function_definition] = STATE(33), + [sym_declaration] = STATE(33), + [sym_type_definition] = STATE(33), + [sym__declaration_modifiers] = STATE(3706), + [sym__declaration_specifiers] = STATE(4661), + [sym_linkage_specification] = STATE(33), + [sym_attribute_specifier] = STATE(3706), + [sym_attribute_declaration] = STATE(1427), + [sym_ms_declspec_modifier] = STATE(3706), + [sym_ms_based_modifier] = STATE(7654), + [sym_ms_call_modifier] = STATE(2439), + [sym__declarator] = STATE(5881), + [sym_parenthesized_declarator] = STATE(5640), + [sym_attributed_declarator] = STATE(5640), + [sym_pointer_declarator] = STATE(5640), + [sym_function_declarator] = STATE(5566), + [sym_array_declarator] = STATE(5640), + [sym_compound_statement] = STATE(33), + [sym_storage_class_specifier] = STATE(3706), + [sym_type_qualifier] = STATE(3706), + [sym__type_specifier] = STATE(3800), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), + [sym_attributed_statement] = STATE(33), + [sym_labeled_statement] = STATE(33), + [sym_expression_statement] = STATE(33), + [sym_if_statement] = STATE(33), + [sym_switch_statement] = STATE(33), + [sym_case_statement] = STATE(33), + [sym_while_statement] = STATE(33), + [sym_do_statement] = STATE(33), + [sym_for_statement] = STATE(33), + [sym_return_statement] = STATE(33), + [sym_break_statement] = STATE(33), + [sym_continue_statement] = STATE(33), + [sym_goto_statement] = STATE(33), + [sym__expression] = STATE(4160), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7618), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym__empty_declaration] = STATE(33), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym__class_name] = STATE(6623), + [sym_virtual] = STATE(3706), + [sym_explicit_function_specifier] = STATE(2238), + [sym_dependent_type] = STATE(3723), + [sym_template_declaration] = STATE(33), + [sym_template_instantiation] = STATE(33), + [sym_operator_cast] = STATE(5918), + [sym__constructor_specifiers] = STATE(2238), + [sym_operator_cast_definition] = STATE(33), + [sym_operator_cast_declaration] = STATE(33), + [sym_constructor_or_destructor_definition] = STATE(33), + [sym_reference_declarator] = STATE(5640), + [sym_structured_binding_declarator] = STATE(5640), + [sym_template_type] = STATE(3921), + [sym_template_function] = STATE(4066), + [sym_namespace_definition] = STATE(33), + [sym_namespace_alias_definition] = STATE(33), + [sym_using_declaration] = STATE(33), + [sym_alias_declaration] = STATE(33), + [sym_static_assert_declaration] = STATE(33), + [sym_concept_definition] = STATE(33), + [sym_for_range_loop] = STATE(33), + [sym_co_return_statement] = STATE(33), + [sym_co_yield_statement] = STATE(33), + [sym_throw_statement] = STATE(33), + [sym_try_statement] = STATE(33), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_destructor_name] = STATE(5640), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5143), + [sym_qualified_identifier] = STATE(3249), + [sym_qualified_type_identifier] = STATE(3915), + [sym_qualified_operator_cast_identifier] = STATE(5918), + [sym_operator_name] = STATE(5640), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_preproc_if_repeat1] = STATE(33), + [aux_sym__declaration_specifiers_repeat1] = STATE(2514), + [aux_sym_attributed_declarator_repeat1] = STATE(244), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [aux_sym_operator_cast_definition_repeat1] = STATE(2238), + [sym_identifier] = ACTIONS(225), + [aux_sym_preproc_include_token1] = ACTIONS(227), + [aux_sym_preproc_def_token1] = ACTIONS(229), + [aux_sym_preproc_if_token1] = ACTIONS(231), + [aux_sym_preproc_if_token2] = ACTIONS(309), + [aux_sym_preproc_ifdef_token1] = ACTIONS(235), + [aux_sym_preproc_ifdef_token2] = ACTIONS(235), + [aux_sym_preproc_else_token1] = ACTIONS(237), + [aux_sym_preproc_elif_token1] = ACTIONS(239), + [aux_sym_preproc_elifdef_token1] = ACTIONS(241), + [aux_sym_preproc_elifdef_token2] = ACTIONS(241), + [sym_preproc_directive] = ACTIONS(243), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -26666,230 +44389,245 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(249), - [anon_sym_typedef] = ACTIONS(251), - [anon_sym_extern] = ACTIONS(253), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(43), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(255), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(257), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(61), - [anon_sym_unsigned] = ACTIONS(61), - [anon_sym_long] = ACTIONS(61), - [anon_sym_short] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(63), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(259), - [anon_sym_switch] = ACTIONS(261), - [anon_sym_case] = ACTIONS(263), - [anon_sym_default] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_do] = ACTIONS(269), - [anon_sym_for] = ACTIONS(271), - [anon_sym_return] = ACTIONS(273), - [anon_sym_break] = ACTIONS(275), - [anon_sym_continue] = ACTIONS(277), - [anon_sym_goto] = ACTIONS(279), + [anon_sym_SEMI] = ACTIONS(245), + [anon_sym_typedef] = ACTIONS(247), + [anon_sym_extern] = ACTIONS(249), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(45), + [anon_sym___cdecl] = ACTIONS(47), + [anon_sym___clrcall] = ACTIONS(47), + [anon_sym___stdcall] = ACTIONS(47), + [anon_sym___fastcall] = ACTIONS(47), + [anon_sym___thiscall] = ACTIONS(47), + [anon_sym___vectorcall] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(251), + [anon_sym_LBRACK] = ACTIONS(51), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(253), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(255), + [anon_sym_switch] = ACTIONS(257), + [anon_sym_case] = ACTIONS(259), + [anon_sym_default] = ACTIONS(261), + [anon_sym_while] = ACTIONS(263), + [anon_sym_do] = ACTIONS(265), + [anon_sym_for] = ACTIONS(267), + [anon_sym_return] = ACTIONS(269), + [anon_sym_break] = ACTIONS(271), + [anon_sym_continue] = ACTIONS(273), + [anon_sym_goto] = ACTIONS(275), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(107), - [anon_sym_decltype] = ACTIONS(109), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_explicit] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(115), - [anon_sym_template] = ACTIONS(281), - [anon_sym_operator] = ACTIONS(119), - [anon_sym_try] = ACTIONS(283), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(285), - [anon_sym_namespace] = ACTIONS(287), - [anon_sym_using] = ACTIONS(289), - [anon_sym_static_assert] = ACTIONS(291), - [anon_sym_concept] = ACTIONS(293), - [anon_sym_co_return] = ACTIONS(295), - [anon_sym_co_yield] = ACTIONS(297), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(113), + [anon_sym_decltype] = ACTIONS(115), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_explicit] = ACTIONS(119), + [anon_sym_typename] = ACTIONS(121), + [anon_sym_template] = ACTIONS(277), + [anon_sym_operator] = ACTIONS(125), + [anon_sym_try] = ACTIONS(279), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(281), + [anon_sym_namespace] = ACTIONS(283), + [anon_sym_using] = ACTIONS(285), + [anon_sym_static_assert] = ACTIONS(287), + [anon_sym_concept] = ACTIONS(289), + [anon_sym_co_return] = ACTIONS(291), + [anon_sym_co_yield] = ACTIONS(293), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [12] = { - [sym_preproc_include] = STATE(27), - [sym_preproc_def] = STATE(27), - [sym_preproc_function_def] = STATE(27), - [sym_preproc_call] = STATE(27), - [sym_preproc_if] = STATE(27), - [sym_preproc_ifdef] = STATE(27), - [sym_preproc_else] = STATE(6192), - [sym_preproc_elif] = STATE(6192), - [sym_function_definition] = STATE(27), - [sym_declaration] = STATE(27), - [sym_type_definition] = STATE(27), - [sym__declaration_modifiers] = STATE(3225), - [sym__declaration_specifiers] = STATE(3935), - [sym_linkage_specification] = STATE(27), - [sym_attribute_specifier] = STATE(3225), - [sym_attribute_declaration] = STATE(1136), - [sym_ms_declspec_modifier] = STATE(3225), - [sym_ms_based_modifier] = STATE(6104), - [sym_ms_call_modifier] = STATE(2012), - [sym__declarator] = STATE(5113), - [sym_parenthesized_declarator] = STATE(4918), - [sym_attributed_declarator] = STATE(4918), - [sym_pointer_declarator] = STATE(4918), - [sym_function_declarator] = STATE(4824), - [sym_array_declarator] = STATE(4918), - [sym_compound_statement] = STATE(27), - [sym_storage_class_specifier] = STATE(3225), - [sym_type_qualifier] = STATE(3225), - [sym__type_specifier] = STATE(3297), - [sym_sized_type_specifier] = STATE(3232), - [sym_enum_specifier] = STATE(3232), - [sym_struct_specifier] = STATE(3232), - [sym_union_specifier] = STATE(3232), - [sym_attributed_statement] = STATE(27), - [sym_labeled_statement] = STATE(27), - [sym_expression_statement] = STATE(27), - [sym_if_statement] = STATE(27), - [sym_switch_statement] = STATE(27), - [sym_case_statement] = STATE(27), - [sym_while_statement] = STATE(27), - [sym_do_statement] = STATE(27), - [sym_for_statement] = STATE(27), - [sym_return_statement] = STATE(27), - [sym_break_statement] = STATE(27), - [sym_continue_statement] = STATE(27), - [sym_goto_statement] = STATE(27), - [sym__expression] = STATE(3497), - [sym_comma_expression] = STATE(6497), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym__empty_declaration] = STATE(27), - [sym_placeholder_type_specifier] = STATE(3232), - [sym_decltype_auto] = STATE(3279), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3232), - [sym__class_name] = STATE(5753), - [sym_virtual] = STATE(3225), - [sym_explicit_function_specifier] = STATE(1962), - [sym_dependent_type] = STATE(3232), - [sym_template_declaration] = STATE(27), - [sym_template_instantiation] = STATE(27), - [sym_operator_cast] = STATE(5146), - [sym__constructor_specifiers] = STATE(1962), - [sym_operator_cast_definition] = STATE(27), - [sym_operator_cast_declaration] = STATE(27), - [sym_constructor_or_destructor_definition] = STATE(27), - [sym_reference_declarator] = STATE(4918), - [sym_structured_binding_declarator] = STATE(4918), - [sym_template_type] = STATE(3608), - [sym_template_function] = STATE(3494), - [sym_namespace_definition] = STATE(27), - [sym_namespace_alias_definition] = STATE(27), - [sym_using_declaration] = STATE(27), - [sym_alias_declaration] = STATE(27), - [sym_static_assert_declaration] = STATE(27), - [sym_concept_definition] = STATE(27), - [sym_for_range_loop] = STATE(27), - [sym_co_return_statement] = STATE(27), - [sym_co_yield_statement] = STATE(27), - [sym_throw_statement] = STATE(27), - [sym_try_statement] = STATE(27), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_destructor_name] = STATE(4918), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4460), - [sym_qualified_identifier] = STATE(2732), - [sym_qualified_type_identifier] = STATE(3593), - [sym_qualified_operator_cast_identifier] = STATE(5146), - [sym_operator_name] = STATE(4918), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_translation_unit_repeat1] = STATE(27), - [aux_sym__declaration_specifiers_repeat1] = STATE(2179), - [aux_sym_attributed_declarator_repeat1] = STATE(253), - [aux_sym_sized_type_specifier_repeat1] = STATE(3171), - [aux_sym_operator_cast_definition_repeat1] = STATE(1962), - [sym_identifier] = ACTIONS(231), - [aux_sym_preproc_include_token1] = ACTIONS(233), - [aux_sym_preproc_def_token1] = ACTIONS(235), - [aux_sym_preproc_if_token1] = ACTIONS(237), - [aux_sym_preproc_if_token2] = ACTIONS(301), - [aux_sym_preproc_ifdef_token1] = ACTIONS(241), - [aux_sym_preproc_ifdef_token2] = ACTIONS(241), - [aux_sym_preproc_else_token1] = ACTIONS(243), - [aux_sym_preproc_elif_token1] = ACTIONS(245), - [sym_preproc_directive] = ACTIONS(247), + [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(7028), + [sym_preproc_elif] = STATE(7028), + [sym_preproc_elifdef] = STATE(7028), + [sym_function_definition] = STATE(33), + [sym_declaration] = STATE(33), + [sym_type_definition] = STATE(33), + [sym__declaration_modifiers] = STATE(3706), + [sym__declaration_specifiers] = STATE(4661), + [sym_linkage_specification] = STATE(33), + [sym_attribute_specifier] = STATE(3706), + [sym_attribute_declaration] = STATE(1427), + [sym_ms_declspec_modifier] = STATE(3706), + [sym_ms_based_modifier] = STATE(7654), + [sym_ms_call_modifier] = STATE(2439), + [sym__declarator] = STATE(5881), + [sym_parenthesized_declarator] = STATE(5640), + [sym_attributed_declarator] = STATE(5640), + [sym_pointer_declarator] = STATE(5640), + [sym_function_declarator] = STATE(5566), + [sym_array_declarator] = STATE(5640), + [sym_compound_statement] = STATE(33), + [sym_storage_class_specifier] = STATE(3706), + [sym_type_qualifier] = STATE(3706), + [sym__type_specifier] = STATE(3800), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), + [sym_attributed_statement] = STATE(33), + [sym_labeled_statement] = STATE(33), + [sym_expression_statement] = STATE(33), + [sym_if_statement] = STATE(33), + [sym_switch_statement] = STATE(33), + [sym_case_statement] = STATE(33), + [sym_while_statement] = STATE(33), + [sym_do_statement] = STATE(33), + [sym_for_statement] = STATE(33), + [sym_return_statement] = STATE(33), + [sym_break_statement] = STATE(33), + [sym_continue_statement] = STATE(33), + [sym_goto_statement] = STATE(33), + [sym__expression] = STATE(4160), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7618), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym__empty_declaration] = STATE(33), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym__class_name] = STATE(6623), + [sym_virtual] = STATE(3706), + [sym_explicit_function_specifier] = STATE(2238), + [sym_dependent_type] = STATE(3723), + [sym_template_declaration] = STATE(33), + [sym_template_instantiation] = STATE(33), + [sym_operator_cast] = STATE(5918), + [sym__constructor_specifiers] = STATE(2238), + [sym_operator_cast_definition] = STATE(33), + [sym_operator_cast_declaration] = STATE(33), + [sym_constructor_or_destructor_definition] = STATE(33), + [sym_reference_declarator] = STATE(5640), + [sym_structured_binding_declarator] = STATE(5640), + [sym_template_type] = STATE(3921), + [sym_template_function] = STATE(4066), + [sym_namespace_definition] = STATE(33), + [sym_namespace_alias_definition] = STATE(33), + [sym_using_declaration] = STATE(33), + [sym_alias_declaration] = STATE(33), + [sym_static_assert_declaration] = STATE(33), + [sym_concept_definition] = STATE(33), + [sym_for_range_loop] = STATE(33), + [sym_co_return_statement] = STATE(33), + [sym_co_yield_statement] = STATE(33), + [sym_throw_statement] = STATE(33), + [sym_try_statement] = STATE(33), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_destructor_name] = STATE(5640), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5143), + [sym_qualified_identifier] = STATE(3249), + [sym_qualified_type_identifier] = STATE(3915), + [sym_qualified_operator_cast_identifier] = STATE(5918), + [sym_operator_name] = STATE(5640), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_preproc_if_repeat1] = STATE(33), + [aux_sym__declaration_specifiers_repeat1] = STATE(2514), + [aux_sym_attributed_declarator_repeat1] = STATE(244), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [aux_sym_operator_cast_definition_repeat1] = STATE(2238), + [sym_identifier] = ACTIONS(225), + [aux_sym_preproc_include_token1] = ACTIONS(227), + [aux_sym_preproc_def_token1] = ACTIONS(229), + [aux_sym_preproc_if_token1] = ACTIONS(231), + [aux_sym_preproc_if_token2] = ACTIONS(311), + [aux_sym_preproc_ifdef_token1] = ACTIONS(235), + [aux_sym_preproc_ifdef_token2] = ACTIONS(235), + [aux_sym_preproc_else_token1] = ACTIONS(237), + [aux_sym_preproc_elif_token1] = ACTIONS(239), + [aux_sym_preproc_elifdef_token1] = ACTIONS(241), + [aux_sym_preproc_elifdef_token2] = ACTIONS(241), + [sym_preproc_directive] = ACTIONS(243), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -26898,230 +44636,243 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(249), - [anon_sym_typedef] = ACTIONS(251), - [anon_sym_extern] = ACTIONS(253), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(43), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(255), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(257), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(61), - [anon_sym_unsigned] = ACTIONS(61), - [anon_sym_long] = ACTIONS(61), - [anon_sym_short] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(63), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(259), - [anon_sym_switch] = ACTIONS(261), - [anon_sym_case] = ACTIONS(263), - [anon_sym_default] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_do] = ACTIONS(269), - [anon_sym_for] = ACTIONS(271), - [anon_sym_return] = ACTIONS(273), - [anon_sym_break] = ACTIONS(275), - [anon_sym_continue] = ACTIONS(277), - [anon_sym_goto] = ACTIONS(279), + [anon_sym_SEMI] = ACTIONS(245), + [anon_sym_typedef] = ACTIONS(247), + [anon_sym_extern] = ACTIONS(249), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(45), + [anon_sym___cdecl] = ACTIONS(47), + [anon_sym___clrcall] = ACTIONS(47), + [anon_sym___stdcall] = ACTIONS(47), + [anon_sym___fastcall] = ACTIONS(47), + [anon_sym___thiscall] = ACTIONS(47), + [anon_sym___vectorcall] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(251), + [anon_sym_LBRACK] = ACTIONS(51), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(253), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(255), + [anon_sym_switch] = ACTIONS(257), + [anon_sym_case] = ACTIONS(259), + [anon_sym_default] = ACTIONS(261), + [anon_sym_while] = ACTIONS(263), + [anon_sym_do] = ACTIONS(265), + [anon_sym_for] = ACTIONS(267), + [anon_sym_return] = ACTIONS(269), + [anon_sym_break] = ACTIONS(271), + [anon_sym_continue] = ACTIONS(273), + [anon_sym_goto] = ACTIONS(275), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(107), - [anon_sym_decltype] = ACTIONS(109), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_explicit] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(115), - [anon_sym_template] = ACTIONS(281), - [anon_sym_operator] = ACTIONS(119), - [anon_sym_try] = ACTIONS(283), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(285), - [anon_sym_namespace] = ACTIONS(287), - [anon_sym_using] = ACTIONS(289), - [anon_sym_static_assert] = ACTIONS(291), - [anon_sym_concept] = ACTIONS(293), - [anon_sym_co_return] = ACTIONS(295), - [anon_sym_co_yield] = ACTIONS(297), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(113), + [anon_sym_decltype] = ACTIONS(115), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_explicit] = ACTIONS(119), + [anon_sym_typename] = ACTIONS(121), + [anon_sym_template] = ACTIONS(277), + [anon_sym_operator] = ACTIONS(125), + [anon_sym_try] = ACTIONS(279), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(281), + [anon_sym_namespace] = ACTIONS(283), + [anon_sym_using] = ACTIONS(285), + [anon_sym_static_assert] = ACTIONS(287), + [anon_sym_concept] = ACTIONS(289), + [anon_sym_co_return] = ACTIONS(291), + [anon_sym_co_yield] = ACTIONS(293), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [13] = { - [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(6499), - [sym_preproc_elif] = STATE(6499), - [sym_function_definition] = STATE(28), - [sym_declaration] = STATE(28), - [sym_type_definition] = STATE(28), - [sym__declaration_modifiers] = STATE(3225), - [sym__declaration_specifiers] = STATE(3935), - [sym_linkage_specification] = STATE(28), - [sym_attribute_specifier] = STATE(3225), - [sym_attribute_declaration] = STATE(1136), - [sym_ms_declspec_modifier] = STATE(3225), - [sym_ms_based_modifier] = STATE(6104), - [sym_ms_call_modifier] = STATE(2012), - [sym__declarator] = STATE(5113), - [sym_parenthesized_declarator] = STATE(4918), - [sym_attributed_declarator] = STATE(4918), - [sym_pointer_declarator] = STATE(4918), - [sym_function_declarator] = STATE(4824), - [sym_array_declarator] = STATE(4918), - [sym_compound_statement] = STATE(28), - [sym_storage_class_specifier] = STATE(3225), - [sym_type_qualifier] = STATE(3225), - [sym__type_specifier] = STATE(3297), - [sym_sized_type_specifier] = STATE(3232), - [sym_enum_specifier] = STATE(3232), - [sym_struct_specifier] = STATE(3232), - [sym_union_specifier] = STATE(3232), - [sym_attributed_statement] = STATE(28), - [sym_labeled_statement] = STATE(28), - [sym_expression_statement] = STATE(28), - [sym_if_statement] = STATE(28), - [sym_switch_statement] = STATE(28), - [sym_case_statement] = STATE(28), - [sym_while_statement] = STATE(28), - [sym_do_statement] = STATE(28), - [sym_for_statement] = STATE(28), - [sym_return_statement] = STATE(28), - [sym_break_statement] = STATE(28), - [sym_continue_statement] = STATE(28), - [sym_goto_statement] = STATE(28), - [sym__expression] = STATE(3497), - [sym_comma_expression] = STATE(6497), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym__empty_declaration] = STATE(28), - [sym_placeholder_type_specifier] = STATE(3232), - [sym_decltype_auto] = STATE(3279), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3232), - [sym__class_name] = STATE(5753), - [sym_virtual] = STATE(3225), - [sym_explicit_function_specifier] = STATE(1962), - [sym_dependent_type] = STATE(3232), - [sym_template_declaration] = STATE(28), - [sym_template_instantiation] = STATE(28), - [sym_operator_cast] = STATE(5146), - [sym__constructor_specifiers] = STATE(1962), - [sym_operator_cast_definition] = STATE(28), - [sym_operator_cast_declaration] = STATE(28), - [sym_constructor_or_destructor_definition] = STATE(28), - [sym_reference_declarator] = STATE(4918), - [sym_structured_binding_declarator] = STATE(4918), - [sym_template_type] = STATE(3608), - [sym_template_function] = STATE(3494), - [sym_namespace_definition] = STATE(28), - [sym_namespace_alias_definition] = STATE(28), - [sym_using_declaration] = STATE(28), - [sym_alias_declaration] = STATE(28), - [sym_static_assert_declaration] = STATE(28), - [sym_concept_definition] = STATE(28), - [sym_for_range_loop] = STATE(28), - [sym_co_return_statement] = STATE(28), - [sym_co_yield_statement] = STATE(28), - [sym_throw_statement] = STATE(28), - [sym_try_statement] = STATE(28), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_destructor_name] = STATE(4918), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4460), - [sym_qualified_identifier] = STATE(2732), - [sym_qualified_type_identifier] = STATE(3593), - [sym_qualified_operator_cast_identifier] = STATE(5146), - [sym_operator_name] = STATE(4918), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_translation_unit_repeat1] = STATE(28), - [aux_sym__declaration_specifiers_repeat1] = STATE(2179), - [aux_sym_attributed_declarator_repeat1] = STATE(253), - [aux_sym_sized_type_specifier_repeat1] = STATE(3171), - [aux_sym_operator_cast_definition_repeat1] = STATE(1962), - [sym_identifier] = ACTIONS(231), - [aux_sym_preproc_include_token1] = ACTIONS(233), - [aux_sym_preproc_def_token1] = ACTIONS(235), - [aux_sym_preproc_if_token1] = ACTIONS(237), - [aux_sym_preproc_if_token2] = ACTIONS(303), - [aux_sym_preproc_ifdef_token1] = ACTIONS(241), - [aux_sym_preproc_ifdef_token2] = ACTIONS(241), - [aux_sym_preproc_else_token1] = ACTIONS(243), - [aux_sym_preproc_elif_token1] = ACTIONS(245), - [sym_preproc_directive] = ACTIONS(247), + [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_declaration] = STATE(87), + [sym_type_definition] = STATE(87), + [sym__declaration_modifiers] = STATE(3706), + [sym__declaration_specifiers] = STATE(4618), + [sym_linkage_specification] = STATE(87), + [sym_attribute_specifier] = STATE(3706), + [sym_attribute_declaration] = STATE(1427), + [sym_ms_declspec_modifier] = STATE(3706), + [sym_ms_based_modifier] = STATE(7654), + [sym_ms_call_modifier] = STATE(2462), + [sym__declarator] = STATE(5881), + [sym_parenthesized_declarator] = STATE(5640), + [sym_attributed_declarator] = STATE(5640), + [sym_pointer_declarator] = STATE(5640), + [sym_function_declarator] = STATE(5588), + [sym_array_declarator] = STATE(5640), + [sym_compound_statement] = STATE(87), + [sym_storage_class_specifier] = STATE(3706), + [sym_type_qualifier] = STATE(3706), + [sym__type_specifier] = STATE(3826), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), + [sym_attributed_statement] = STATE(87), + [sym_labeled_statement] = STATE(87), + [sym_expression_statement] = STATE(87), + [sym_if_statement] = STATE(87), + [sym_switch_statement] = STATE(87), + [sym_case_statement] = STATE(87), + [sym_while_statement] = STATE(87), + [sym_do_statement] = STATE(87), + [sym_for_statement] = STATE(87), + [sym_return_statement] = STATE(87), + [sym_break_statement] = STATE(87), + [sym_continue_statement] = STATE(87), + [sym_goto_statement] = STATE(87), + [sym__expression] = STATE(4058), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7590), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_initializer_list] = STATE(6202), + [sym_initializer_pair] = STATE(6202), + [sym_subscript_designator] = STATE(5891), + [sym_field_designator] = STATE(5891), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym__empty_declaration] = STATE(87), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym__class_name] = STATE(6623), + [sym_virtual] = STATE(3706), + [sym_explicit_function_specifier] = STATE(2240), + [sym_dependent_type] = STATE(3723), + [sym_template_declaration] = STATE(87), + [sym_template_instantiation] = STATE(87), + [sym_operator_cast] = STATE(5937), + [sym__constructor_specifiers] = STATE(2240), + [sym_operator_cast_definition] = STATE(87), + [sym_operator_cast_declaration] = STATE(87), + [sym_constructor_or_destructor_definition] = STATE(87), + [sym_reference_declarator] = STATE(5640), + [sym_structured_binding_declarator] = STATE(5640), + [sym_template_type] = STATE(3921), + [sym_template_function] = STATE(4066), + [sym_namespace_definition] = STATE(87), + [sym_namespace_alias_definition] = STATE(87), + [sym_using_declaration] = STATE(87), + [sym_alias_declaration] = STATE(87), + [sym_static_assert_declaration] = STATE(87), + [sym_concept_definition] = STATE(87), + [sym_for_range_loop] = STATE(87), + [sym_co_return_statement] = STATE(87), + [sym_co_yield_statement] = STATE(87), + [sym_throw_statement] = STATE(87), + [sym_try_statement] = STATE(87), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_destructor_name] = STATE(5640), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5143), + [sym_qualified_identifier] = STATE(3249), + [sym_qualified_type_identifier] = STATE(3915), + [sym_qualified_operator_cast_identifier] = STATE(5937), + [sym_operator_name] = STATE(5640), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_preproc_if_repeat1] = STATE(87), + [aux_sym__declaration_specifiers_repeat1] = STATE(2514), + [aux_sym_attributed_declarator_repeat1] = STATE(309), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [aux_sym_initializer_pair_repeat1] = STATE(5891), + [aux_sym_operator_cast_definition_repeat1] = STATE(2240), + [sym_identifier] = ACTIONS(153), + [aux_sym_preproc_include_token1] = ACTIONS(155), + [aux_sym_preproc_def_token1] = ACTIONS(157), + [anon_sym_COMMA] = ACTIONS(159), + [aux_sym_preproc_if_token1] = ACTIONS(161), + [aux_sym_preproc_ifdef_token1] = ACTIONS(163), + [aux_sym_preproc_ifdef_token2] = ACTIONS(163), + [sym_preproc_directive] = ACTIONS(165), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -27130,230 +44881,245 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(249), - [anon_sym_typedef] = ACTIONS(251), - [anon_sym_extern] = ACTIONS(253), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(43), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(255), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(257), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(61), - [anon_sym_unsigned] = ACTIONS(61), - [anon_sym_long] = ACTIONS(61), - [anon_sym_short] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(63), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(259), - [anon_sym_switch] = ACTIONS(261), - [anon_sym_case] = ACTIONS(263), - [anon_sym_default] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_do] = ACTIONS(269), - [anon_sym_for] = ACTIONS(271), - [anon_sym_return] = ACTIONS(273), - [anon_sym_break] = ACTIONS(275), - [anon_sym_continue] = ACTIONS(277), - [anon_sym_goto] = ACTIONS(279), + [anon_sym_SEMI] = ACTIONS(167), + [anon_sym_typedef] = ACTIONS(169), + [anon_sym_extern] = ACTIONS(171), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(45), + [anon_sym___cdecl] = ACTIONS(47), + [anon_sym___clrcall] = ACTIONS(47), + [anon_sym___stdcall] = ACTIONS(47), + [anon_sym___fastcall] = ACTIONS(47), + [anon_sym___thiscall] = ACTIONS(47), + [anon_sym___vectorcall] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(173), + [anon_sym_RBRACE] = ACTIONS(313), + [anon_sym_LBRACK] = ACTIONS(177), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(179), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(181), + [anon_sym_switch] = ACTIONS(183), + [anon_sym_case] = ACTIONS(185), + [anon_sym_default] = ACTIONS(187), + [anon_sym_while] = ACTIONS(189), + [anon_sym_do] = ACTIONS(191), + [anon_sym_for] = ACTIONS(193), + [anon_sym_return] = ACTIONS(195), + [anon_sym_break] = ACTIONS(197), + [anon_sym_continue] = ACTIONS(199), + [anon_sym_goto] = ACTIONS(201), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(107), - [anon_sym_decltype] = ACTIONS(109), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_explicit] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(115), - [anon_sym_template] = ACTIONS(281), - [anon_sym_operator] = ACTIONS(119), - [anon_sym_try] = ACTIONS(283), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(285), - [anon_sym_namespace] = ACTIONS(287), - [anon_sym_using] = ACTIONS(289), - [anon_sym_static_assert] = ACTIONS(291), - [anon_sym_concept] = ACTIONS(293), - [anon_sym_co_return] = ACTIONS(295), - [anon_sym_co_yield] = ACTIONS(297), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [anon_sym_DOT] = ACTIONS(203), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(113), + [anon_sym_decltype] = ACTIONS(115), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_explicit] = ACTIONS(119), + [anon_sym_typename] = ACTIONS(121), + [anon_sym_template] = ACTIONS(207), + [anon_sym_operator] = ACTIONS(125), + [anon_sym_try] = ACTIONS(209), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(211), + [anon_sym_namespace] = ACTIONS(213), + [anon_sym_using] = ACTIONS(215), + [anon_sym_static_assert] = ACTIONS(217), + [anon_sym_concept] = ACTIONS(219), + [anon_sym_co_return] = ACTIONS(221), + [anon_sym_co_yield] = ACTIONS(223), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [14] = { - [sym_preproc_include] = STATE(18), - [sym_preproc_def] = STATE(18), - [sym_preproc_function_def] = STATE(18), - [sym_preproc_call] = STATE(18), - [sym_preproc_if] = STATE(18), - [sym_preproc_ifdef] = STATE(18), - [sym_preproc_else] = STATE(6435), - [sym_preproc_elif] = STATE(6435), - [sym_function_definition] = STATE(18), - [sym_declaration] = STATE(18), - [sym_type_definition] = STATE(18), - [sym__declaration_modifiers] = STATE(3225), - [sym__declaration_specifiers] = STATE(3935), - [sym_linkage_specification] = STATE(18), - [sym_attribute_specifier] = STATE(3225), - [sym_attribute_declaration] = STATE(1136), - [sym_ms_declspec_modifier] = STATE(3225), - [sym_ms_based_modifier] = STATE(6104), - [sym_ms_call_modifier] = STATE(2012), - [sym__declarator] = STATE(5113), - [sym_parenthesized_declarator] = STATE(4918), - [sym_attributed_declarator] = STATE(4918), - [sym_pointer_declarator] = STATE(4918), - [sym_function_declarator] = STATE(4824), - [sym_array_declarator] = STATE(4918), - [sym_compound_statement] = STATE(18), - [sym_storage_class_specifier] = STATE(3225), - [sym_type_qualifier] = STATE(3225), - [sym__type_specifier] = STATE(3297), - [sym_sized_type_specifier] = STATE(3232), - [sym_enum_specifier] = STATE(3232), - [sym_struct_specifier] = STATE(3232), - [sym_union_specifier] = STATE(3232), - [sym_attributed_statement] = STATE(18), - [sym_labeled_statement] = STATE(18), - [sym_expression_statement] = STATE(18), - [sym_if_statement] = STATE(18), - [sym_switch_statement] = STATE(18), - [sym_case_statement] = STATE(18), - [sym_while_statement] = STATE(18), - [sym_do_statement] = STATE(18), - [sym_for_statement] = STATE(18), - [sym_return_statement] = STATE(18), - [sym_break_statement] = STATE(18), - [sym_continue_statement] = STATE(18), - [sym_goto_statement] = STATE(18), - [sym__expression] = STATE(3497), - [sym_comma_expression] = STATE(6497), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym__empty_declaration] = STATE(18), - [sym_placeholder_type_specifier] = STATE(3232), - [sym_decltype_auto] = STATE(3279), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3232), - [sym__class_name] = STATE(5753), - [sym_virtual] = STATE(3225), - [sym_explicit_function_specifier] = STATE(1962), - [sym_dependent_type] = STATE(3232), - [sym_template_declaration] = STATE(18), - [sym_template_instantiation] = STATE(18), - [sym_operator_cast] = STATE(5146), - [sym__constructor_specifiers] = STATE(1962), - [sym_operator_cast_definition] = STATE(18), - [sym_operator_cast_declaration] = STATE(18), - [sym_constructor_or_destructor_definition] = STATE(18), - [sym_reference_declarator] = STATE(4918), - [sym_structured_binding_declarator] = STATE(4918), - [sym_template_type] = STATE(3608), - [sym_template_function] = STATE(3494), - [sym_namespace_definition] = STATE(18), - [sym_namespace_alias_definition] = STATE(18), - [sym_using_declaration] = STATE(18), - [sym_alias_declaration] = STATE(18), - [sym_static_assert_declaration] = STATE(18), - [sym_concept_definition] = STATE(18), - [sym_for_range_loop] = STATE(18), - [sym_co_return_statement] = STATE(18), - [sym_co_yield_statement] = STATE(18), - [sym_throw_statement] = STATE(18), - [sym_try_statement] = STATE(18), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_destructor_name] = STATE(4918), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4460), - [sym_qualified_identifier] = STATE(2732), - [sym_qualified_type_identifier] = STATE(3593), - [sym_qualified_operator_cast_identifier] = STATE(5146), - [sym_operator_name] = STATE(4918), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_translation_unit_repeat1] = STATE(18), - [aux_sym__declaration_specifiers_repeat1] = STATE(2179), - [aux_sym_attributed_declarator_repeat1] = STATE(253), - [aux_sym_sized_type_specifier_repeat1] = STATE(3171), - [aux_sym_operator_cast_definition_repeat1] = STATE(1962), - [sym_identifier] = ACTIONS(231), - [aux_sym_preproc_include_token1] = ACTIONS(233), - [aux_sym_preproc_def_token1] = ACTIONS(235), - [aux_sym_preproc_if_token1] = ACTIONS(237), - [aux_sym_preproc_if_token2] = ACTIONS(305), - [aux_sym_preproc_ifdef_token1] = ACTIONS(241), - [aux_sym_preproc_ifdef_token2] = ACTIONS(241), - [aux_sym_preproc_else_token1] = ACTIONS(243), - [aux_sym_preproc_elif_token1] = ACTIONS(245), - [sym_preproc_directive] = ACTIONS(247), + [sym_preproc_include] = STATE(72), + [sym_preproc_def] = STATE(72), + [sym_preproc_function_def] = STATE(72), + [sym_preproc_call] = STATE(72), + [sym_preproc_if] = STATE(72), + [sym_preproc_ifdef] = STATE(72), + [sym_function_definition] = STATE(72), + [sym_declaration] = STATE(72), + [sym_type_definition] = STATE(72), + [sym__declaration_modifiers] = STATE(3706), + [sym__declaration_specifiers] = STATE(4618), + [sym_linkage_specification] = STATE(72), + [sym_attribute_specifier] = STATE(3706), + [sym_attribute_declaration] = STATE(1427), + [sym_ms_declspec_modifier] = STATE(3706), + [sym_ms_based_modifier] = STATE(7654), + [sym_ms_call_modifier] = STATE(2462), + [sym__declarator] = STATE(5881), + [sym_parenthesized_declarator] = STATE(5640), + [sym_attributed_declarator] = STATE(5640), + [sym_pointer_declarator] = STATE(5640), + [sym_function_declarator] = STATE(5588), + [sym_array_declarator] = STATE(5640), + [sym_compound_statement] = STATE(72), + [sym_storage_class_specifier] = STATE(3706), + [sym_type_qualifier] = STATE(3706), + [sym__type_specifier] = STATE(3826), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), + [sym_attributed_statement] = STATE(72), + [sym_labeled_statement] = STATE(72), + [sym_expression_statement] = STATE(72), + [sym_if_statement] = STATE(72), + [sym_switch_statement] = STATE(72), + [sym_case_statement] = STATE(72), + [sym_while_statement] = STATE(72), + [sym_do_statement] = STATE(72), + [sym_for_statement] = STATE(72), + [sym_return_statement] = STATE(72), + [sym_break_statement] = STATE(72), + [sym_continue_statement] = STATE(72), + [sym_goto_statement] = STATE(72), + [sym__expression] = STATE(4058), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7590), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_initializer_list] = STATE(6202), + [sym_initializer_pair] = STATE(6202), + [sym_subscript_designator] = STATE(5891), + [sym_field_designator] = STATE(5891), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym__empty_declaration] = STATE(72), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym__class_name] = STATE(6623), + [sym_virtual] = STATE(3706), + [sym_explicit_function_specifier] = STATE(2240), + [sym_dependent_type] = STATE(3723), + [sym_template_declaration] = STATE(72), + [sym_template_instantiation] = STATE(72), + [sym_operator_cast] = STATE(5937), + [sym__constructor_specifiers] = STATE(2240), + [sym_operator_cast_definition] = STATE(72), + [sym_operator_cast_declaration] = STATE(72), + [sym_constructor_or_destructor_definition] = STATE(72), + [sym_reference_declarator] = STATE(5640), + [sym_structured_binding_declarator] = STATE(5640), + [sym_template_type] = STATE(3921), + [sym_template_function] = STATE(4066), + [sym_namespace_definition] = STATE(72), + [sym_namespace_alias_definition] = STATE(72), + [sym_using_declaration] = STATE(72), + [sym_alias_declaration] = STATE(72), + [sym_static_assert_declaration] = STATE(72), + [sym_concept_definition] = STATE(72), + [sym_for_range_loop] = STATE(72), + [sym_co_return_statement] = STATE(72), + [sym_co_yield_statement] = STATE(72), + [sym_throw_statement] = STATE(72), + [sym_try_statement] = STATE(72), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_destructor_name] = STATE(5640), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5143), + [sym_qualified_identifier] = STATE(3249), + [sym_qualified_type_identifier] = STATE(3915), + [sym_qualified_operator_cast_identifier] = STATE(5937), + [sym_operator_name] = STATE(5640), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_preproc_if_repeat1] = STATE(72), + [aux_sym__declaration_specifiers_repeat1] = STATE(2514), + [aux_sym_attributed_declarator_repeat1] = STATE(309), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [aux_sym_initializer_pair_repeat1] = STATE(5891), + [aux_sym_operator_cast_definition_repeat1] = STATE(2240), + [sym_identifier] = ACTIONS(153), + [aux_sym_preproc_include_token1] = ACTIONS(155), + [aux_sym_preproc_def_token1] = ACTIONS(157), + [anon_sym_COMMA] = ACTIONS(159), + [aux_sym_preproc_if_token1] = ACTIONS(161), + [aux_sym_preproc_ifdef_token1] = ACTIONS(163), + [aux_sym_preproc_ifdef_token2] = ACTIONS(163), + [sym_preproc_directive] = ACTIONS(165), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -27362,230 +45128,245 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(249), - [anon_sym_typedef] = ACTIONS(251), - [anon_sym_extern] = ACTIONS(253), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(43), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(255), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(257), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(61), - [anon_sym_unsigned] = ACTIONS(61), - [anon_sym_long] = ACTIONS(61), - [anon_sym_short] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(63), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(259), - [anon_sym_switch] = ACTIONS(261), - [anon_sym_case] = ACTIONS(263), - [anon_sym_default] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_do] = ACTIONS(269), - [anon_sym_for] = ACTIONS(271), - [anon_sym_return] = ACTIONS(273), - [anon_sym_break] = ACTIONS(275), - [anon_sym_continue] = ACTIONS(277), - [anon_sym_goto] = ACTIONS(279), + [anon_sym_SEMI] = ACTIONS(167), + [anon_sym_typedef] = ACTIONS(169), + [anon_sym_extern] = ACTIONS(171), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(45), + [anon_sym___cdecl] = ACTIONS(47), + [anon_sym___clrcall] = ACTIONS(47), + [anon_sym___stdcall] = ACTIONS(47), + [anon_sym___fastcall] = ACTIONS(47), + [anon_sym___thiscall] = ACTIONS(47), + [anon_sym___vectorcall] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(173), + [anon_sym_RBRACE] = ACTIONS(315), + [anon_sym_LBRACK] = ACTIONS(177), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(179), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(181), + [anon_sym_switch] = ACTIONS(183), + [anon_sym_case] = ACTIONS(185), + [anon_sym_default] = ACTIONS(187), + [anon_sym_while] = ACTIONS(189), + [anon_sym_do] = ACTIONS(191), + [anon_sym_for] = ACTIONS(193), + [anon_sym_return] = ACTIONS(195), + [anon_sym_break] = ACTIONS(197), + [anon_sym_continue] = ACTIONS(199), + [anon_sym_goto] = ACTIONS(201), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(107), - [anon_sym_decltype] = ACTIONS(109), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_explicit] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(115), - [anon_sym_template] = ACTIONS(281), - [anon_sym_operator] = ACTIONS(119), - [anon_sym_try] = ACTIONS(283), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(285), - [anon_sym_namespace] = ACTIONS(287), - [anon_sym_using] = ACTIONS(289), - [anon_sym_static_assert] = ACTIONS(291), - [anon_sym_concept] = ACTIONS(293), - [anon_sym_co_return] = ACTIONS(295), - [anon_sym_co_yield] = ACTIONS(297), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [anon_sym_DOT] = ACTIONS(203), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(113), + [anon_sym_decltype] = ACTIONS(115), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_explicit] = ACTIONS(119), + [anon_sym_typename] = ACTIONS(121), + [anon_sym_template] = ACTIONS(207), + [anon_sym_operator] = ACTIONS(125), + [anon_sym_try] = ACTIONS(209), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(211), + [anon_sym_namespace] = ACTIONS(213), + [anon_sym_using] = ACTIONS(215), + [anon_sym_static_assert] = ACTIONS(217), + [anon_sym_concept] = ACTIONS(219), + [anon_sym_co_return] = ACTIONS(221), + [anon_sym_co_yield] = ACTIONS(223), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [15] = { - [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(6391), - [sym_preproc_elif] = STATE(6391), - [sym_function_definition] = STATE(26), - [sym_declaration] = STATE(26), - [sym_type_definition] = STATE(26), - [sym__declaration_modifiers] = STATE(3225), - [sym__declaration_specifiers] = STATE(3935), - [sym_linkage_specification] = STATE(26), - [sym_attribute_specifier] = STATE(3225), - [sym_attribute_declaration] = STATE(1136), - [sym_ms_declspec_modifier] = STATE(3225), - [sym_ms_based_modifier] = STATE(6104), - [sym_ms_call_modifier] = STATE(2012), - [sym__declarator] = STATE(5113), - [sym_parenthesized_declarator] = STATE(4918), - [sym_attributed_declarator] = STATE(4918), - [sym_pointer_declarator] = STATE(4918), - [sym_function_declarator] = STATE(4824), - [sym_array_declarator] = STATE(4918), - [sym_compound_statement] = STATE(26), - [sym_storage_class_specifier] = STATE(3225), - [sym_type_qualifier] = STATE(3225), - [sym__type_specifier] = STATE(3297), - [sym_sized_type_specifier] = STATE(3232), - [sym_enum_specifier] = STATE(3232), - [sym_struct_specifier] = STATE(3232), - [sym_union_specifier] = STATE(3232), - [sym_attributed_statement] = STATE(26), - [sym_labeled_statement] = STATE(26), - [sym_expression_statement] = STATE(26), - [sym_if_statement] = STATE(26), - [sym_switch_statement] = STATE(26), - [sym_case_statement] = STATE(26), - [sym_while_statement] = STATE(26), - [sym_do_statement] = STATE(26), - [sym_for_statement] = STATE(26), - [sym_return_statement] = STATE(26), - [sym_break_statement] = STATE(26), - [sym_continue_statement] = STATE(26), - [sym_goto_statement] = STATE(26), - [sym__expression] = STATE(3497), - [sym_comma_expression] = STATE(6497), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym__empty_declaration] = STATE(26), - [sym_placeholder_type_specifier] = STATE(3232), - [sym_decltype_auto] = STATE(3279), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3232), - [sym__class_name] = STATE(5753), - [sym_virtual] = STATE(3225), - [sym_explicit_function_specifier] = STATE(1962), - [sym_dependent_type] = STATE(3232), - [sym_template_declaration] = STATE(26), - [sym_template_instantiation] = STATE(26), - [sym_operator_cast] = STATE(5146), - [sym__constructor_specifiers] = STATE(1962), - [sym_operator_cast_definition] = STATE(26), - [sym_operator_cast_declaration] = STATE(26), - [sym_constructor_or_destructor_definition] = STATE(26), - [sym_reference_declarator] = STATE(4918), - [sym_structured_binding_declarator] = STATE(4918), - [sym_template_type] = STATE(3608), - [sym_template_function] = STATE(3494), - [sym_namespace_definition] = STATE(26), - [sym_namespace_alias_definition] = STATE(26), - [sym_using_declaration] = STATE(26), - [sym_alias_declaration] = STATE(26), - [sym_static_assert_declaration] = STATE(26), - [sym_concept_definition] = STATE(26), - [sym_for_range_loop] = STATE(26), - [sym_co_return_statement] = STATE(26), - [sym_co_yield_statement] = STATE(26), - [sym_throw_statement] = STATE(26), - [sym_try_statement] = STATE(26), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_destructor_name] = STATE(4918), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4460), - [sym_qualified_identifier] = STATE(2732), - [sym_qualified_type_identifier] = STATE(3593), - [sym_qualified_operator_cast_identifier] = STATE(5146), - [sym_operator_name] = STATE(4918), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_translation_unit_repeat1] = STATE(26), - [aux_sym__declaration_specifiers_repeat1] = STATE(2179), - [aux_sym_attributed_declarator_repeat1] = STATE(253), - [aux_sym_sized_type_specifier_repeat1] = STATE(3171), - [aux_sym_operator_cast_definition_repeat1] = STATE(1962), - [sym_identifier] = ACTIONS(231), - [aux_sym_preproc_include_token1] = ACTIONS(233), - [aux_sym_preproc_def_token1] = ACTIONS(235), - [aux_sym_preproc_if_token1] = ACTIONS(237), - [aux_sym_preproc_if_token2] = ACTIONS(307), - [aux_sym_preproc_ifdef_token1] = ACTIONS(241), - [aux_sym_preproc_ifdef_token2] = ACTIONS(241), - [aux_sym_preproc_else_token1] = ACTIONS(243), - [aux_sym_preproc_elif_token1] = ACTIONS(245), - [sym_preproc_directive] = ACTIONS(247), + [sym_preproc_include] = STATE(62), + [sym_preproc_def] = STATE(62), + [sym_preproc_function_def] = STATE(62), + [sym_preproc_call] = STATE(62), + [sym_preproc_if] = STATE(62), + [sym_preproc_ifdef] = STATE(62), + [sym_function_definition] = STATE(62), + [sym_declaration] = STATE(62), + [sym_type_definition] = STATE(62), + [sym__declaration_modifiers] = STATE(3706), + [sym__declaration_specifiers] = STATE(4618), + [sym_linkage_specification] = STATE(62), + [sym_attribute_specifier] = STATE(3706), + [sym_attribute_declaration] = STATE(1427), + [sym_ms_declspec_modifier] = STATE(3706), + [sym_ms_based_modifier] = STATE(7654), + [sym_ms_call_modifier] = STATE(2462), + [sym__declarator] = STATE(5881), + [sym_parenthesized_declarator] = STATE(5640), + [sym_attributed_declarator] = STATE(5640), + [sym_pointer_declarator] = STATE(5640), + [sym_function_declarator] = STATE(5588), + [sym_array_declarator] = STATE(5640), + [sym_compound_statement] = STATE(62), + [sym_storage_class_specifier] = STATE(3706), + [sym_type_qualifier] = STATE(3706), + [sym__type_specifier] = STATE(3826), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), + [sym_attributed_statement] = STATE(62), + [sym_labeled_statement] = STATE(62), + [sym_expression_statement] = STATE(62), + [sym_if_statement] = STATE(62), + [sym_switch_statement] = STATE(62), + [sym_case_statement] = STATE(62), + [sym_while_statement] = STATE(62), + [sym_do_statement] = STATE(62), + [sym_for_statement] = STATE(62), + [sym_return_statement] = STATE(62), + [sym_break_statement] = STATE(62), + [sym_continue_statement] = STATE(62), + [sym_goto_statement] = STATE(62), + [sym__expression] = STATE(4058), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7590), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_initializer_list] = STATE(6202), + [sym_initializer_pair] = STATE(6202), + [sym_subscript_designator] = STATE(5891), + [sym_field_designator] = STATE(5891), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym__empty_declaration] = STATE(62), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym__class_name] = STATE(6623), + [sym_virtual] = STATE(3706), + [sym_explicit_function_specifier] = STATE(2240), + [sym_dependent_type] = STATE(3723), + [sym_template_declaration] = STATE(62), + [sym_template_instantiation] = STATE(62), + [sym_operator_cast] = STATE(5937), + [sym__constructor_specifiers] = STATE(2240), + [sym_operator_cast_definition] = STATE(62), + [sym_operator_cast_declaration] = STATE(62), + [sym_constructor_or_destructor_definition] = STATE(62), + [sym_reference_declarator] = STATE(5640), + [sym_structured_binding_declarator] = STATE(5640), + [sym_template_type] = STATE(3921), + [sym_template_function] = STATE(4066), + [sym_namespace_definition] = STATE(62), + [sym_namespace_alias_definition] = STATE(62), + [sym_using_declaration] = STATE(62), + [sym_alias_declaration] = STATE(62), + [sym_static_assert_declaration] = STATE(62), + [sym_concept_definition] = STATE(62), + [sym_for_range_loop] = STATE(62), + [sym_co_return_statement] = STATE(62), + [sym_co_yield_statement] = STATE(62), + [sym_throw_statement] = STATE(62), + [sym_try_statement] = STATE(62), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_destructor_name] = STATE(5640), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5143), + [sym_qualified_identifier] = STATE(3249), + [sym_qualified_type_identifier] = STATE(3915), + [sym_qualified_operator_cast_identifier] = STATE(5937), + [sym_operator_name] = STATE(5640), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_preproc_if_repeat1] = STATE(62), + [aux_sym__declaration_specifiers_repeat1] = STATE(2514), + [aux_sym_attributed_declarator_repeat1] = STATE(309), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [aux_sym_initializer_pair_repeat1] = STATE(5891), + [aux_sym_operator_cast_definition_repeat1] = STATE(2240), + [sym_identifier] = ACTIONS(153), + [aux_sym_preproc_include_token1] = ACTIONS(155), + [aux_sym_preproc_def_token1] = ACTIONS(157), + [anon_sym_COMMA] = ACTIONS(159), + [aux_sym_preproc_if_token1] = ACTIONS(161), + [aux_sym_preproc_ifdef_token1] = ACTIONS(163), + [aux_sym_preproc_ifdef_token2] = ACTIONS(163), + [sym_preproc_directive] = ACTIONS(165), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -27594,230 +45375,245 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(249), - [anon_sym_typedef] = ACTIONS(251), - [anon_sym_extern] = ACTIONS(253), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(43), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(255), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(257), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(61), - [anon_sym_unsigned] = ACTIONS(61), - [anon_sym_long] = ACTIONS(61), - [anon_sym_short] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(63), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(259), - [anon_sym_switch] = ACTIONS(261), - [anon_sym_case] = ACTIONS(263), - [anon_sym_default] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_do] = ACTIONS(269), - [anon_sym_for] = ACTIONS(271), - [anon_sym_return] = ACTIONS(273), - [anon_sym_break] = ACTIONS(275), - [anon_sym_continue] = ACTIONS(277), - [anon_sym_goto] = ACTIONS(279), + [anon_sym_SEMI] = ACTIONS(167), + [anon_sym_typedef] = ACTIONS(169), + [anon_sym_extern] = ACTIONS(171), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(45), + [anon_sym___cdecl] = ACTIONS(47), + [anon_sym___clrcall] = ACTIONS(47), + [anon_sym___stdcall] = ACTIONS(47), + [anon_sym___fastcall] = ACTIONS(47), + [anon_sym___thiscall] = ACTIONS(47), + [anon_sym___vectorcall] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(173), + [anon_sym_RBRACE] = ACTIONS(317), + [anon_sym_LBRACK] = ACTIONS(177), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(179), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(181), + [anon_sym_switch] = ACTIONS(183), + [anon_sym_case] = ACTIONS(185), + [anon_sym_default] = ACTIONS(187), + [anon_sym_while] = ACTIONS(189), + [anon_sym_do] = ACTIONS(191), + [anon_sym_for] = ACTIONS(193), + [anon_sym_return] = ACTIONS(195), + [anon_sym_break] = ACTIONS(197), + [anon_sym_continue] = ACTIONS(199), + [anon_sym_goto] = ACTIONS(201), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(107), - [anon_sym_decltype] = ACTIONS(109), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_explicit] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(115), - [anon_sym_template] = ACTIONS(281), - [anon_sym_operator] = ACTIONS(119), - [anon_sym_try] = ACTIONS(283), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(285), - [anon_sym_namespace] = ACTIONS(287), - [anon_sym_using] = ACTIONS(289), - [anon_sym_static_assert] = ACTIONS(291), - [anon_sym_concept] = ACTIONS(293), - [anon_sym_co_return] = ACTIONS(295), - [anon_sym_co_yield] = ACTIONS(297), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [anon_sym_DOT] = ACTIONS(203), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(113), + [anon_sym_decltype] = ACTIONS(115), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_explicit] = ACTIONS(119), + [anon_sym_typename] = ACTIONS(121), + [anon_sym_template] = ACTIONS(207), + [anon_sym_operator] = ACTIONS(125), + [anon_sym_try] = ACTIONS(209), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(211), + [anon_sym_namespace] = ACTIONS(213), + [anon_sym_using] = ACTIONS(215), + [anon_sym_static_assert] = ACTIONS(217), + [anon_sym_concept] = ACTIONS(219), + [anon_sym_co_return] = ACTIONS(221), + [anon_sym_co_yield] = ACTIONS(223), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [16] = { - [sym_preproc_include] = STATE(11), - [sym_preproc_def] = STATE(11), - [sym_preproc_function_def] = STATE(11), - [sym_preproc_call] = STATE(11), - [sym_preproc_if] = STATE(11), - [sym_preproc_ifdef] = STATE(11), - [sym_preproc_else] = STATE(6467), - [sym_preproc_elif] = STATE(6467), - [sym_function_definition] = STATE(11), - [sym_declaration] = STATE(11), - [sym_type_definition] = STATE(11), - [sym__declaration_modifiers] = STATE(3225), - [sym__declaration_specifiers] = STATE(3935), - [sym_linkage_specification] = STATE(11), - [sym_attribute_specifier] = STATE(3225), - [sym_attribute_declaration] = STATE(1136), - [sym_ms_declspec_modifier] = STATE(3225), - [sym_ms_based_modifier] = STATE(6104), - [sym_ms_call_modifier] = STATE(2012), - [sym__declarator] = STATE(5113), - [sym_parenthesized_declarator] = STATE(4918), - [sym_attributed_declarator] = STATE(4918), - [sym_pointer_declarator] = STATE(4918), - [sym_function_declarator] = STATE(4824), - [sym_array_declarator] = STATE(4918), - [sym_compound_statement] = STATE(11), - [sym_storage_class_specifier] = STATE(3225), - [sym_type_qualifier] = STATE(3225), - [sym__type_specifier] = STATE(3297), - [sym_sized_type_specifier] = STATE(3232), - [sym_enum_specifier] = STATE(3232), - [sym_struct_specifier] = STATE(3232), - [sym_union_specifier] = STATE(3232), - [sym_attributed_statement] = STATE(11), - [sym_labeled_statement] = STATE(11), - [sym_expression_statement] = STATE(11), - [sym_if_statement] = STATE(11), - [sym_switch_statement] = STATE(11), - [sym_case_statement] = STATE(11), - [sym_while_statement] = STATE(11), - [sym_do_statement] = STATE(11), - [sym_for_statement] = STATE(11), - [sym_return_statement] = STATE(11), - [sym_break_statement] = STATE(11), - [sym_continue_statement] = STATE(11), - [sym_goto_statement] = STATE(11), - [sym__expression] = STATE(3497), - [sym_comma_expression] = STATE(6497), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym__empty_declaration] = STATE(11), - [sym_placeholder_type_specifier] = STATE(3232), - [sym_decltype_auto] = STATE(3279), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3232), - [sym__class_name] = STATE(5753), - [sym_virtual] = STATE(3225), - [sym_explicit_function_specifier] = STATE(1962), - [sym_dependent_type] = STATE(3232), - [sym_template_declaration] = STATE(11), - [sym_template_instantiation] = STATE(11), - [sym_operator_cast] = STATE(5146), - [sym__constructor_specifiers] = STATE(1962), - [sym_operator_cast_definition] = STATE(11), - [sym_operator_cast_declaration] = STATE(11), - [sym_constructor_or_destructor_definition] = STATE(11), - [sym_reference_declarator] = STATE(4918), - [sym_structured_binding_declarator] = STATE(4918), - [sym_template_type] = STATE(3608), - [sym_template_function] = STATE(3494), - [sym_namespace_definition] = STATE(11), - [sym_namespace_alias_definition] = STATE(11), - [sym_using_declaration] = STATE(11), - [sym_alias_declaration] = STATE(11), - [sym_static_assert_declaration] = STATE(11), - [sym_concept_definition] = STATE(11), - [sym_for_range_loop] = STATE(11), - [sym_co_return_statement] = STATE(11), - [sym_co_yield_statement] = STATE(11), - [sym_throw_statement] = STATE(11), - [sym_try_statement] = STATE(11), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_destructor_name] = STATE(4918), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4460), - [sym_qualified_identifier] = STATE(2732), - [sym_qualified_type_identifier] = STATE(3593), - [sym_qualified_operator_cast_identifier] = STATE(5146), - [sym_operator_name] = STATE(4918), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_translation_unit_repeat1] = STATE(11), - [aux_sym__declaration_specifiers_repeat1] = STATE(2179), - [aux_sym_attributed_declarator_repeat1] = STATE(253), - [aux_sym_sized_type_specifier_repeat1] = STATE(3171), - [aux_sym_operator_cast_definition_repeat1] = STATE(1962), - [sym_identifier] = ACTIONS(231), - [aux_sym_preproc_include_token1] = ACTIONS(233), - [aux_sym_preproc_def_token1] = ACTIONS(235), - [aux_sym_preproc_if_token1] = ACTIONS(237), - [aux_sym_preproc_if_token2] = ACTIONS(309), - [aux_sym_preproc_ifdef_token1] = ACTIONS(241), - [aux_sym_preproc_ifdef_token2] = ACTIONS(241), - [aux_sym_preproc_else_token1] = ACTIONS(243), - [aux_sym_preproc_elif_token1] = ACTIONS(245), - [sym_preproc_directive] = ACTIONS(247), + [sym_preproc_include] = STATE(62), + [sym_preproc_def] = STATE(62), + [sym_preproc_function_def] = STATE(62), + [sym_preproc_call] = STATE(62), + [sym_preproc_if] = STATE(62), + [sym_preproc_ifdef] = STATE(62), + [sym_function_definition] = STATE(62), + [sym_declaration] = STATE(62), + [sym_type_definition] = STATE(62), + [sym__declaration_modifiers] = STATE(3706), + [sym__declaration_specifiers] = STATE(4618), + [sym_linkage_specification] = STATE(62), + [sym_attribute_specifier] = STATE(3706), + [sym_attribute_declaration] = STATE(1427), + [sym_ms_declspec_modifier] = STATE(3706), + [sym_ms_based_modifier] = STATE(7654), + [sym_ms_call_modifier] = STATE(2462), + [sym__declarator] = STATE(5881), + [sym_parenthesized_declarator] = STATE(5640), + [sym_attributed_declarator] = STATE(5640), + [sym_pointer_declarator] = STATE(5640), + [sym_function_declarator] = STATE(5588), + [sym_array_declarator] = STATE(5640), + [sym_compound_statement] = STATE(62), + [sym_storage_class_specifier] = STATE(3706), + [sym_type_qualifier] = STATE(3706), + [sym__type_specifier] = STATE(3826), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), + [sym_attributed_statement] = STATE(62), + [sym_labeled_statement] = STATE(62), + [sym_expression_statement] = STATE(62), + [sym_if_statement] = STATE(62), + [sym_switch_statement] = STATE(62), + [sym_case_statement] = STATE(62), + [sym_while_statement] = STATE(62), + [sym_do_statement] = STATE(62), + [sym_for_statement] = STATE(62), + [sym_return_statement] = STATE(62), + [sym_break_statement] = STATE(62), + [sym_continue_statement] = STATE(62), + [sym_goto_statement] = STATE(62), + [sym__expression] = STATE(4058), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7590), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_initializer_list] = STATE(6202), + [sym_initializer_pair] = STATE(6202), + [sym_subscript_designator] = STATE(5891), + [sym_field_designator] = STATE(5891), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym__empty_declaration] = STATE(62), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym__class_name] = STATE(6623), + [sym_virtual] = STATE(3706), + [sym_explicit_function_specifier] = STATE(2240), + [sym_dependent_type] = STATE(3723), + [sym_template_declaration] = STATE(62), + [sym_template_instantiation] = STATE(62), + [sym_operator_cast] = STATE(5937), + [sym__constructor_specifiers] = STATE(2240), + [sym_operator_cast_definition] = STATE(62), + [sym_operator_cast_declaration] = STATE(62), + [sym_constructor_or_destructor_definition] = STATE(62), + [sym_reference_declarator] = STATE(5640), + [sym_structured_binding_declarator] = STATE(5640), + [sym_template_type] = STATE(3921), + [sym_template_function] = STATE(4066), + [sym_namespace_definition] = STATE(62), + [sym_namespace_alias_definition] = STATE(62), + [sym_using_declaration] = STATE(62), + [sym_alias_declaration] = STATE(62), + [sym_static_assert_declaration] = STATE(62), + [sym_concept_definition] = STATE(62), + [sym_for_range_loop] = STATE(62), + [sym_co_return_statement] = STATE(62), + [sym_co_yield_statement] = STATE(62), + [sym_throw_statement] = STATE(62), + [sym_try_statement] = STATE(62), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_destructor_name] = STATE(5640), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5143), + [sym_qualified_identifier] = STATE(3249), + [sym_qualified_type_identifier] = STATE(3915), + [sym_qualified_operator_cast_identifier] = STATE(5937), + [sym_operator_name] = STATE(5640), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_preproc_if_repeat1] = STATE(62), + [aux_sym__declaration_specifiers_repeat1] = STATE(2514), + [aux_sym_attributed_declarator_repeat1] = STATE(309), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [aux_sym_initializer_pair_repeat1] = STATE(5891), + [aux_sym_operator_cast_definition_repeat1] = STATE(2240), + [sym_identifier] = ACTIONS(153), + [aux_sym_preproc_include_token1] = ACTIONS(155), + [aux_sym_preproc_def_token1] = ACTIONS(157), + [anon_sym_COMMA] = ACTIONS(159), + [aux_sym_preproc_if_token1] = ACTIONS(161), + [aux_sym_preproc_ifdef_token1] = ACTIONS(163), + [aux_sym_preproc_ifdef_token2] = ACTIONS(163), + [sym_preproc_directive] = ACTIONS(165), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -27826,230 +45622,245 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(249), - [anon_sym_typedef] = ACTIONS(251), - [anon_sym_extern] = ACTIONS(253), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(43), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(255), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(257), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(61), - [anon_sym_unsigned] = ACTIONS(61), - [anon_sym_long] = ACTIONS(61), - [anon_sym_short] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(63), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(259), - [anon_sym_switch] = ACTIONS(261), - [anon_sym_case] = ACTIONS(263), - [anon_sym_default] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_do] = ACTIONS(269), - [anon_sym_for] = ACTIONS(271), - [anon_sym_return] = ACTIONS(273), - [anon_sym_break] = ACTIONS(275), - [anon_sym_continue] = ACTIONS(277), - [anon_sym_goto] = ACTIONS(279), + [anon_sym_SEMI] = ACTIONS(167), + [anon_sym_typedef] = ACTIONS(169), + [anon_sym_extern] = ACTIONS(171), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(45), + [anon_sym___cdecl] = ACTIONS(47), + [anon_sym___clrcall] = ACTIONS(47), + [anon_sym___stdcall] = ACTIONS(47), + [anon_sym___fastcall] = ACTIONS(47), + [anon_sym___thiscall] = ACTIONS(47), + [anon_sym___vectorcall] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(173), + [anon_sym_RBRACE] = ACTIONS(319), + [anon_sym_LBRACK] = ACTIONS(177), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(179), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(181), + [anon_sym_switch] = ACTIONS(183), + [anon_sym_case] = ACTIONS(185), + [anon_sym_default] = ACTIONS(187), + [anon_sym_while] = ACTIONS(189), + [anon_sym_do] = ACTIONS(191), + [anon_sym_for] = ACTIONS(193), + [anon_sym_return] = ACTIONS(195), + [anon_sym_break] = ACTIONS(197), + [anon_sym_continue] = ACTIONS(199), + [anon_sym_goto] = ACTIONS(201), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(107), - [anon_sym_decltype] = ACTIONS(109), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_explicit] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(115), - [anon_sym_template] = ACTIONS(281), - [anon_sym_operator] = ACTIONS(119), - [anon_sym_try] = ACTIONS(283), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(285), - [anon_sym_namespace] = ACTIONS(287), - [anon_sym_using] = ACTIONS(289), - [anon_sym_static_assert] = ACTIONS(291), - [anon_sym_concept] = ACTIONS(293), - [anon_sym_co_return] = ACTIONS(295), - [anon_sym_co_yield] = ACTIONS(297), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [anon_sym_DOT] = ACTIONS(203), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(113), + [anon_sym_decltype] = ACTIONS(115), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_explicit] = ACTIONS(119), + [anon_sym_typename] = ACTIONS(121), + [anon_sym_template] = ACTIONS(207), + [anon_sym_operator] = ACTIONS(125), + [anon_sym_try] = ACTIONS(209), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(211), + [anon_sym_namespace] = ACTIONS(213), + [anon_sym_using] = ACTIONS(215), + [anon_sym_static_assert] = ACTIONS(217), + [anon_sym_concept] = ACTIONS(219), + [anon_sym_co_return] = ACTIONS(221), + [anon_sym_co_yield] = ACTIONS(223), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [17] = { - [sym_preproc_include] = STATE(13), - [sym_preproc_def] = STATE(13), - [sym_preproc_function_def] = STATE(13), - [sym_preproc_call] = STATE(13), - [sym_preproc_if] = STATE(13), - [sym_preproc_ifdef] = STATE(13), - [sym_preproc_else] = STATE(6575), - [sym_preproc_elif] = STATE(6575), - [sym_function_definition] = STATE(13), - [sym_declaration] = STATE(13), - [sym_type_definition] = STATE(13), - [sym__declaration_modifiers] = STATE(3225), - [sym__declaration_specifiers] = STATE(3935), - [sym_linkage_specification] = STATE(13), - [sym_attribute_specifier] = STATE(3225), - [sym_attribute_declaration] = STATE(1136), - [sym_ms_declspec_modifier] = STATE(3225), - [sym_ms_based_modifier] = STATE(6104), - [sym_ms_call_modifier] = STATE(2012), - [sym__declarator] = STATE(5113), - [sym_parenthesized_declarator] = STATE(4918), - [sym_attributed_declarator] = STATE(4918), - [sym_pointer_declarator] = STATE(4918), - [sym_function_declarator] = STATE(4824), - [sym_array_declarator] = STATE(4918), - [sym_compound_statement] = STATE(13), - [sym_storage_class_specifier] = STATE(3225), - [sym_type_qualifier] = STATE(3225), - [sym__type_specifier] = STATE(3297), - [sym_sized_type_specifier] = STATE(3232), - [sym_enum_specifier] = STATE(3232), - [sym_struct_specifier] = STATE(3232), - [sym_union_specifier] = STATE(3232), - [sym_attributed_statement] = STATE(13), - [sym_labeled_statement] = STATE(13), - [sym_expression_statement] = STATE(13), - [sym_if_statement] = STATE(13), - [sym_switch_statement] = STATE(13), - [sym_case_statement] = STATE(13), - [sym_while_statement] = STATE(13), - [sym_do_statement] = STATE(13), - [sym_for_statement] = STATE(13), - [sym_return_statement] = STATE(13), - [sym_break_statement] = STATE(13), - [sym_continue_statement] = STATE(13), - [sym_goto_statement] = STATE(13), - [sym__expression] = STATE(3497), - [sym_comma_expression] = STATE(6497), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym__empty_declaration] = STATE(13), - [sym_placeholder_type_specifier] = STATE(3232), - [sym_decltype_auto] = STATE(3279), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3232), - [sym__class_name] = STATE(5753), - [sym_virtual] = STATE(3225), - [sym_explicit_function_specifier] = STATE(1962), - [sym_dependent_type] = STATE(3232), - [sym_template_declaration] = STATE(13), - [sym_template_instantiation] = STATE(13), - [sym_operator_cast] = STATE(5146), - [sym__constructor_specifiers] = STATE(1962), - [sym_operator_cast_definition] = STATE(13), - [sym_operator_cast_declaration] = STATE(13), - [sym_constructor_or_destructor_definition] = STATE(13), - [sym_reference_declarator] = STATE(4918), - [sym_structured_binding_declarator] = STATE(4918), - [sym_template_type] = STATE(3608), - [sym_template_function] = STATE(3494), - [sym_namespace_definition] = STATE(13), - [sym_namespace_alias_definition] = STATE(13), - [sym_using_declaration] = STATE(13), - [sym_alias_declaration] = STATE(13), - [sym_static_assert_declaration] = STATE(13), - [sym_concept_definition] = STATE(13), - [sym_for_range_loop] = STATE(13), - [sym_co_return_statement] = STATE(13), - [sym_co_yield_statement] = STATE(13), - [sym_throw_statement] = STATE(13), - [sym_try_statement] = STATE(13), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_destructor_name] = STATE(4918), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4460), - [sym_qualified_identifier] = STATE(2732), - [sym_qualified_type_identifier] = STATE(3593), - [sym_qualified_operator_cast_identifier] = STATE(5146), - [sym_operator_name] = STATE(4918), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_translation_unit_repeat1] = STATE(13), - [aux_sym__declaration_specifiers_repeat1] = STATE(2179), - [aux_sym_attributed_declarator_repeat1] = STATE(253), - [aux_sym_sized_type_specifier_repeat1] = STATE(3171), - [aux_sym_operator_cast_definition_repeat1] = STATE(1962), - [sym_identifier] = ACTIONS(231), - [aux_sym_preproc_include_token1] = ACTIONS(233), - [aux_sym_preproc_def_token1] = ACTIONS(235), - [aux_sym_preproc_if_token1] = ACTIONS(237), - [aux_sym_preproc_if_token2] = ACTIONS(311), - [aux_sym_preproc_ifdef_token1] = ACTIONS(241), - [aux_sym_preproc_ifdef_token2] = ACTIONS(241), - [aux_sym_preproc_else_token1] = ACTIONS(243), - [aux_sym_preproc_elif_token1] = ACTIONS(245), - [sym_preproc_directive] = ACTIONS(247), + [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_declaration] = STATE(85), + [sym_type_definition] = STATE(85), + [sym__declaration_modifiers] = STATE(3706), + [sym__declaration_specifiers] = STATE(4618), + [sym_linkage_specification] = STATE(85), + [sym_attribute_specifier] = STATE(3706), + [sym_attribute_declaration] = STATE(1427), + [sym_ms_declspec_modifier] = STATE(3706), + [sym_ms_based_modifier] = STATE(7654), + [sym_ms_call_modifier] = STATE(2462), + [sym__declarator] = STATE(5881), + [sym_parenthesized_declarator] = STATE(5640), + [sym_attributed_declarator] = STATE(5640), + [sym_pointer_declarator] = STATE(5640), + [sym_function_declarator] = STATE(5588), + [sym_array_declarator] = STATE(5640), + [sym_compound_statement] = STATE(85), + [sym_storage_class_specifier] = STATE(3706), + [sym_type_qualifier] = STATE(3706), + [sym__type_specifier] = STATE(3826), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), + [sym_attributed_statement] = STATE(85), + [sym_labeled_statement] = STATE(85), + [sym_expression_statement] = STATE(85), + [sym_if_statement] = STATE(85), + [sym_switch_statement] = STATE(85), + [sym_case_statement] = STATE(85), + [sym_while_statement] = STATE(85), + [sym_do_statement] = STATE(85), + [sym_for_statement] = STATE(85), + [sym_return_statement] = STATE(85), + [sym_break_statement] = STATE(85), + [sym_continue_statement] = STATE(85), + [sym_goto_statement] = STATE(85), + [sym__expression] = STATE(4058), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7590), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_initializer_list] = STATE(6202), + [sym_initializer_pair] = STATE(6202), + [sym_subscript_designator] = STATE(5891), + [sym_field_designator] = STATE(5891), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym__empty_declaration] = STATE(85), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym__class_name] = STATE(6623), + [sym_virtual] = STATE(3706), + [sym_explicit_function_specifier] = STATE(2240), + [sym_dependent_type] = STATE(3723), + [sym_template_declaration] = STATE(85), + [sym_template_instantiation] = STATE(85), + [sym_operator_cast] = STATE(5937), + [sym__constructor_specifiers] = STATE(2240), + [sym_operator_cast_definition] = STATE(85), + [sym_operator_cast_declaration] = STATE(85), + [sym_constructor_or_destructor_definition] = STATE(85), + [sym_reference_declarator] = STATE(5640), + [sym_structured_binding_declarator] = STATE(5640), + [sym_template_type] = STATE(3921), + [sym_template_function] = STATE(4066), + [sym_namespace_definition] = STATE(85), + [sym_namespace_alias_definition] = STATE(85), + [sym_using_declaration] = STATE(85), + [sym_alias_declaration] = STATE(85), + [sym_static_assert_declaration] = STATE(85), + [sym_concept_definition] = STATE(85), + [sym_for_range_loop] = STATE(85), + [sym_co_return_statement] = STATE(85), + [sym_co_yield_statement] = STATE(85), + [sym_throw_statement] = STATE(85), + [sym_try_statement] = STATE(85), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_destructor_name] = STATE(5640), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5143), + [sym_qualified_identifier] = STATE(3249), + [sym_qualified_type_identifier] = STATE(3915), + [sym_qualified_operator_cast_identifier] = STATE(5937), + [sym_operator_name] = STATE(5640), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_preproc_if_repeat1] = STATE(85), + [aux_sym__declaration_specifiers_repeat1] = STATE(2514), + [aux_sym_attributed_declarator_repeat1] = STATE(309), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [aux_sym_initializer_pair_repeat1] = STATE(5891), + [aux_sym_operator_cast_definition_repeat1] = STATE(2240), + [sym_identifier] = ACTIONS(153), + [aux_sym_preproc_include_token1] = ACTIONS(155), + [aux_sym_preproc_def_token1] = ACTIONS(157), + [anon_sym_COMMA] = ACTIONS(159), + [aux_sym_preproc_if_token1] = ACTIONS(161), + [aux_sym_preproc_ifdef_token1] = ACTIONS(163), + [aux_sym_preproc_ifdef_token2] = ACTIONS(163), + [sym_preproc_directive] = ACTIONS(165), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -28058,230 +45869,247 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(249), - [anon_sym_typedef] = ACTIONS(251), - [anon_sym_extern] = ACTIONS(253), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(43), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(255), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(257), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(61), - [anon_sym_unsigned] = ACTIONS(61), - [anon_sym_long] = ACTIONS(61), - [anon_sym_short] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(63), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(259), - [anon_sym_switch] = ACTIONS(261), - [anon_sym_case] = ACTIONS(263), - [anon_sym_default] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_do] = ACTIONS(269), - [anon_sym_for] = ACTIONS(271), - [anon_sym_return] = ACTIONS(273), - [anon_sym_break] = ACTIONS(275), - [anon_sym_continue] = ACTIONS(277), - [anon_sym_goto] = ACTIONS(279), + [anon_sym_SEMI] = ACTIONS(167), + [anon_sym_typedef] = ACTIONS(169), + [anon_sym_extern] = ACTIONS(171), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(45), + [anon_sym___cdecl] = ACTIONS(47), + [anon_sym___clrcall] = ACTIONS(47), + [anon_sym___stdcall] = ACTIONS(47), + [anon_sym___fastcall] = ACTIONS(47), + [anon_sym___thiscall] = ACTIONS(47), + [anon_sym___vectorcall] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(173), + [anon_sym_RBRACE] = ACTIONS(321), + [anon_sym_LBRACK] = ACTIONS(177), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(179), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(181), + [anon_sym_switch] = ACTIONS(183), + [anon_sym_case] = ACTIONS(185), + [anon_sym_default] = ACTIONS(187), + [anon_sym_while] = ACTIONS(189), + [anon_sym_do] = ACTIONS(191), + [anon_sym_for] = ACTIONS(193), + [anon_sym_return] = ACTIONS(195), + [anon_sym_break] = ACTIONS(197), + [anon_sym_continue] = ACTIONS(199), + [anon_sym_goto] = ACTIONS(201), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(107), - [anon_sym_decltype] = ACTIONS(109), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_explicit] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(115), - [anon_sym_template] = ACTIONS(281), - [anon_sym_operator] = ACTIONS(119), - [anon_sym_try] = ACTIONS(283), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(285), - [anon_sym_namespace] = ACTIONS(287), - [anon_sym_using] = ACTIONS(289), - [anon_sym_static_assert] = ACTIONS(291), - [anon_sym_concept] = ACTIONS(293), - [anon_sym_co_return] = ACTIONS(295), - [anon_sym_co_yield] = ACTIONS(297), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [anon_sym_DOT] = ACTIONS(203), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(113), + [anon_sym_decltype] = ACTIONS(115), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_explicit] = ACTIONS(119), + [anon_sym_typename] = ACTIONS(121), + [anon_sym_template] = ACTIONS(207), + [anon_sym_operator] = ACTIONS(125), + [anon_sym_try] = ACTIONS(209), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(211), + [anon_sym_namespace] = ACTIONS(213), + [anon_sym_using] = ACTIONS(215), + [anon_sym_static_assert] = ACTIONS(217), + [anon_sym_concept] = ACTIONS(219), + [anon_sym_co_return] = ACTIONS(221), + [anon_sym_co_yield] = ACTIONS(223), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [18] = { - [sym_preproc_include] = STATE(28), - [sym_preproc_def] = STATE(28), - [sym_preproc_function_def] = STATE(28), - [sym_preproc_call] = STATE(28), - [sym_preproc_if] = STATE(28), - [sym_preproc_ifdef] = STATE(28), - [sym_preproc_else] = STATE(6408), - [sym_preproc_elif] = STATE(6408), - [sym_function_definition] = STATE(28), - [sym_declaration] = STATE(28), - [sym_type_definition] = STATE(28), - [sym__declaration_modifiers] = STATE(3225), - [sym__declaration_specifiers] = STATE(3935), - [sym_linkage_specification] = STATE(28), - [sym_attribute_specifier] = STATE(3225), - [sym_attribute_declaration] = STATE(1136), - [sym_ms_declspec_modifier] = STATE(3225), - [sym_ms_based_modifier] = STATE(6104), - [sym_ms_call_modifier] = STATE(2012), - [sym__declarator] = STATE(5113), - [sym_parenthesized_declarator] = STATE(4918), - [sym_attributed_declarator] = STATE(4918), - [sym_pointer_declarator] = STATE(4918), - [sym_function_declarator] = STATE(4824), - [sym_array_declarator] = STATE(4918), - [sym_compound_statement] = STATE(28), - [sym_storage_class_specifier] = STATE(3225), - [sym_type_qualifier] = STATE(3225), - [sym__type_specifier] = STATE(3297), - [sym_sized_type_specifier] = STATE(3232), - [sym_enum_specifier] = STATE(3232), - [sym_struct_specifier] = STATE(3232), - [sym_union_specifier] = STATE(3232), - [sym_attributed_statement] = STATE(28), - [sym_labeled_statement] = STATE(28), - [sym_expression_statement] = STATE(28), - [sym_if_statement] = STATE(28), - [sym_switch_statement] = STATE(28), - [sym_case_statement] = STATE(28), - [sym_while_statement] = STATE(28), - [sym_do_statement] = STATE(28), - [sym_for_statement] = STATE(28), - [sym_return_statement] = STATE(28), - [sym_break_statement] = STATE(28), - [sym_continue_statement] = STATE(28), - [sym_goto_statement] = STATE(28), - [sym__expression] = STATE(3497), - [sym_comma_expression] = STATE(6497), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym__empty_declaration] = STATE(28), - [sym_placeholder_type_specifier] = STATE(3232), - [sym_decltype_auto] = STATE(3279), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3232), - [sym__class_name] = STATE(5753), - [sym_virtual] = STATE(3225), - [sym_explicit_function_specifier] = STATE(1962), - [sym_dependent_type] = STATE(3232), - [sym_template_declaration] = STATE(28), - [sym_template_instantiation] = STATE(28), - [sym_operator_cast] = STATE(5146), - [sym__constructor_specifiers] = STATE(1962), - [sym_operator_cast_definition] = STATE(28), - [sym_operator_cast_declaration] = STATE(28), - [sym_constructor_or_destructor_definition] = STATE(28), - [sym_reference_declarator] = STATE(4918), - [sym_structured_binding_declarator] = STATE(4918), - [sym_template_type] = STATE(3608), - [sym_template_function] = STATE(3494), - [sym_namespace_definition] = STATE(28), - [sym_namespace_alias_definition] = STATE(28), - [sym_using_declaration] = STATE(28), - [sym_alias_declaration] = STATE(28), - [sym_static_assert_declaration] = STATE(28), - [sym_concept_definition] = STATE(28), - [sym_for_range_loop] = STATE(28), - [sym_co_return_statement] = STATE(28), - [sym_co_yield_statement] = STATE(28), - [sym_throw_statement] = STATE(28), - [sym_try_statement] = STATE(28), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_destructor_name] = STATE(4918), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4460), - [sym_qualified_identifier] = STATE(2732), - [sym_qualified_type_identifier] = STATE(3593), - [sym_qualified_operator_cast_identifier] = STATE(5146), - [sym_operator_name] = STATE(4918), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_translation_unit_repeat1] = STATE(28), - [aux_sym__declaration_specifiers_repeat1] = STATE(2179), - [aux_sym_attributed_declarator_repeat1] = STATE(253), - [aux_sym_sized_type_specifier_repeat1] = STATE(3171), - [aux_sym_operator_cast_definition_repeat1] = STATE(1962), - [sym_identifier] = ACTIONS(231), - [aux_sym_preproc_include_token1] = ACTIONS(233), - [aux_sym_preproc_def_token1] = ACTIONS(235), - [aux_sym_preproc_if_token1] = ACTIONS(237), - [aux_sym_preproc_if_token2] = ACTIONS(313), - [aux_sym_preproc_ifdef_token1] = ACTIONS(241), - [aux_sym_preproc_ifdef_token2] = ACTIONS(241), - [aux_sym_preproc_else_token1] = ACTIONS(243), - [aux_sym_preproc_elif_token1] = ACTIONS(245), - [sym_preproc_directive] = ACTIONS(247), + [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(7060), + [sym_preproc_elif] = STATE(7060), + [sym_preproc_elifdef] = STATE(7060), + [sym_function_definition] = STATE(12), + [sym_declaration] = STATE(12), + [sym_type_definition] = STATE(12), + [sym__declaration_modifiers] = STATE(3706), + [sym__declaration_specifiers] = STATE(4661), + [sym_linkage_specification] = STATE(12), + [sym_attribute_specifier] = STATE(3706), + [sym_attribute_declaration] = STATE(1427), + [sym_ms_declspec_modifier] = STATE(3706), + [sym_ms_based_modifier] = STATE(7654), + [sym_ms_call_modifier] = STATE(2439), + [sym__declarator] = STATE(5881), + [sym_parenthesized_declarator] = STATE(5640), + [sym_attributed_declarator] = STATE(5640), + [sym_pointer_declarator] = STATE(5640), + [sym_function_declarator] = STATE(5566), + [sym_array_declarator] = STATE(5640), + [sym_compound_statement] = STATE(12), + [sym_storage_class_specifier] = STATE(3706), + [sym_type_qualifier] = STATE(3706), + [sym__type_specifier] = STATE(3800), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), + [sym_attributed_statement] = STATE(12), + [sym_labeled_statement] = STATE(12), + [sym_expression_statement] = STATE(12), + [sym_if_statement] = STATE(12), + [sym_switch_statement] = STATE(12), + [sym_case_statement] = STATE(12), + [sym_while_statement] = STATE(12), + [sym_do_statement] = STATE(12), + [sym_for_statement] = STATE(12), + [sym_return_statement] = STATE(12), + [sym_break_statement] = STATE(12), + [sym_continue_statement] = STATE(12), + [sym_goto_statement] = STATE(12), + [sym__expression] = STATE(4160), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7618), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym__empty_declaration] = STATE(12), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym__class_name] = STATE(6623), + [sym_virtual] = STATE(3706), + [sym_explicit_function_specifier] = STATE(2238), + [sym_dependent_type] = STATE(3723), + [sym_template_declaration] = STATE(12), + [sym_template_instantiation] = STATE(12), + [sym_operator_cast] = STATE(5918), + [sym__constructor_specifiers] = STATE(2238), + [sym_operator_cast_definition] = STATE(12), + [sym_operator_cast_declaration] = STATE(12), + [sym_constructor_or_destructor_definition] = STATE(12), + [sym_reference_declarator] = STATE(5640), + [sym_structured_binding_declarator] = STATE(5640), + [sym_template_type] = STATE(3921), + [sym_template_function] = STATE(4066), + [sym_namespace_definition] = STATE(12), + [sym_namespace_alias_definition] = STATE(12), + [sym_using_declaration] = STATE(12), + [sym_alias_declaration] = STATE(12), + [sym_static_assert_declaration] = STATE(12), + [sym_concept_definition] = STATE(12), + [sym_for_range_loop] = STATE(12), + [sym_co_return_statement] = STATE(12), + [sym_co_yield_statement] = STATE(12), + [sym_throw_statement] = STATE(12), + [sym_try_statement] = STATE(12), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_destructor_name] = STATE(5640), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5143), + [sym_qualified_identifier] = STATE(3249), + [sym_qualified_type_identifier] = STATE(3915), + [sym_qualified_operator_cast_identifier] = STATE(5918), + [sym_operator_name] = STATE(5640), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_preproc_if_repeat1] = STATE(12), + [aux_sym__declaration_specifiers_repeat1] = STATE(2514), + [aux_sym_attributed_declarator_repeat1] = STATE(244), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [aux_sym_operator_cast_definition_repeat1] = STATE(2238), + [sym_identifier] = ACTIONS(225), + [aux_sym_preproc_include_token1] = ACTIONS(227), + [aux_sym_preproc_def_token1] = ACTIONS(229), + [aux_sym_preproc_if_token1] = ACTIONS(231), + [aux_sym_preproc_if_token2] = ACTIONS(323), + [aux_sym_preproc_ifdef_token1] = ACTIONS(235), + [aux_sym_preproc_ifdef_token2] = ACTIONS(235), + [aux_sym_preproc_else_token1] = ACTIONS(237), + [aux_sym_preproc_elif_token1] = ACTIONS(239), + [aux_sym_preproc_elifdef_token1] = ACTIONS(241), + [aux_sym_preproc_elifdef_token2] = ACTIONS(241), + [sym_preproc_directive] = ACTIONS(243), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -28290,230 +46118,245 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(249), - [anon_sym_typedef] = ACTIONS(251), - [anon_sym_extern] = ACTIONS(253), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(43), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(255), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(257), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(61), - [anon_sym_unsigned] = ACTIONS(61), - [anon_sym_long] = ACTIONS(61), - [anon_sym_short] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(63), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(259), - [anon_sym_switch] = ACTIONS(261), - [anon_sym_case] = ACTIONS(263), - [anon_sym_default] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_do] = ACTIONS(269), - [anon_sym_for] = ACTIONS(271), - [anon_sym_return] = ACTIONS(273), - [anon_sym_break] = ACTIONS(275), - [anon_sym_continue] = ACTIONS(277), - [anon_sym_goto] = ACTIONS(279), + [anon_sym_SEMI] = ACTIONS(245), + [anon_sym_typedef] = ACTIONS(247), + [anon_sym_extern] = ACTIONS(249), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(45), + [anon_sym___cdecl] = ACTIONS(47), + [anon_sym___clrcall] = ACTIONS(47), + [anon_sym___stdcall] = ACTIONS(47), + [anon_sym___fastcall] = ACTIONS(47), + [anon_sym___thiscall] = ACTIONS(47), + [anon_sym___vectorcall] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(251), + [anon_sym_LBRACK] = ACTIONS(51), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(253), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(255), + [anon_sym_switch] = ACTIONS(257), + [anon_sym_case] = ACTIONS(259), + [anon_sym_default] = ACTIONS(261), + [anon_sym_while] = ACTIONS(263), + [anon_sym_do] = ACTIONS(265), + [anon_sym_for] = ACTIONS(267), + [anon_sym_return] = ACTIONS(269), + [anon_sym_break] = ACTIONS(271), + [anon_sym_continue] = ACTIONS(273), + [anon_sym_goto] = ACTIONS(275), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(107), - [anon_sym_decltype] = ACTIONS(109), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_explicit] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(115), - [anon_sym_template] = ACTIONS(281), - [anon_sym_operator] = ACTIONS(119), - [anon_sym_try] = ACTIONS(283), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(285), - [anon_sym_namespace] = ACTIONS(287), - [anon_sym_using] = ACTIONS(289), - [anon_sym_static_assert] = ACTIONS(291), - [anon_sym_concept] = ACTIONS(293), - [anon_sym_co_return] = ACTIONS(295), - [anon_sym_co_yield] = ACTIONS(297), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(113), + [anon_sym_decltype] = ACTIONS(115), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_explicit] = ACTIONS(119), + [anon_sym_typename] = ACTIONS(121), + [anon_sym_template] = ACTIONS(277), + [anon_sym_operator] = ACTIONS(125), + [anon_sym_try] = ACTIONS(279), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(281), + [anon_sym_namespace] = ACTIONS(283), + [anon_sym_using] = ACTIONS(285), + [anon_sym_static_assert] = ACTIONS(287), + [anon_sym_concept] = ACTIONS(289), + [anon_sym_co_return] = ACTIONS(291), + [anon_sym_co_yield] = ACTIONS(293), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [19] = { - [sym_preproc_include] = STATE(28), - [sym_preproc_def] = STATE(28), - [sym_preproc_function_def] = STATE(28), - [sym_preproc_call] = STATE(28), - [sym_preproc_if] = STATE(28), - [sym_preproc_ifdef] = STATE(28), - [sym_preproc_else] = STATE(6320), - [sym_preproc_elif] = STATE(6320), - [sym_function_definition] = STATE(28), - [sym_declaration] = STATE(28), - [sym_type_definition] = STATE(28), - [sym__declaration_modifiers] = STATE(3225), - [sym__declaration_specifiers] = STATE(3935), - [sym_linkage_specification] = STATE(28), - [sym_attribute_specifier] = STATE(3225), - [sym_attribute_declaration] = STATE(1136), - [sym_ms_declspec_modifier] = STATE(3225), - [sym_ms_based_modifier] = STATE(6104), - [sym_ms_call_modifier] = STATE(2012), - [sym__declarator] = STATE(5113), - [sym_parenthesized_declarator] = STATE(4918), - [sym_attributed_declarator] = STATE(4918), - [sym_pointer_declarator] = STATE(4918), - [sym_function_declarator] = STATE(4824), - [sym_array_declarator] = STATE(4918), - [sym_compound_statement] = STATE(28), - [sym_storage_class_specifier] = STATE(3225), - [sym_type_qualifier] = STATE(3225), - [sym__type_specifier] = STATE(3297), - [sym_sized_type_specifier] = STATE(3232), - [sym_enum_specifier] = STATE(3232), - [sym_struct_specifier] = STATE(3232), - [sym_union_specifier] = STATE(3232), - [sym_attributed_statement] = STATE(28), - [sym_labeled_statement] = STATE(28), - [sym_expression_statement] = STATE(28), - [sym_if_statement] = STATE(28), - [sym_switch_statement] = STATE(28), - [sym_case_statement] = STATE(28), - [sym_while_statement] = STATE(28), - [sym_do_statement] = STATE(28), - [sym_for_statement] = STATE(28), - [sym_return_statement] = STATE(28), - [sym_break_statement] = STATE(28), - [sym_continue_statement] = STATE(28), - [sym_goto_statement] = STATE(28), - [sym__expression] = STATE(3497), - [sym_comma_expression] = STATE(6497), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym__empty_declaration] = STATE(28), - [sym_placeholder_type_specifier] = STATE(3232), - [sym_decltype_auto] = STATE(3279), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3232), - [sym__class_name] = STATE(5753), - [sym_virtual] = STATE(3225), - [sym_explicit_function_specifier] = STATE(1962), - [sym_dependent_type] = STATE(3232), - [sym_template_declaration] = STATE(28), - [sym_template_instantiation] = STATE(28), - [sym_operator_cast] = STATE(5146), - [sym__constructor_specifiers] = STATE(1962), - [sym_operator_cast_definition] = STATE(28), - [sym_operator_cast_declaration] = STATE(28), - [sym_constructor_or_destructor_definition] = STATE(28), - [sym_reference_declarator] = STATE(4918), - [sym_structured_binding_declarator] = STATE(4918), - [sym_template_type] = STATE(3608), - [sym_template_function] = STATE(3494), - [sym_namespace_definition] = STATE(28), - [sym_namespace_alias_definition] = STATE(28), - [sym_using_declaration] = STATE(28), - [sym_alias_declaration] = STATE(28), - [sym_static_assert_declaration] = STATE(28), - [sym_concept_definition] = STATE(28), - [sym_for_range_loop] = STATE(28), - [sym_co_return_statement] = STATE(28), - [sym_co_yield_statement] = STATE(28), - [sym_throw_statement] = STATE(28), - [sym_try_statement] = STATE(28), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_destructor_name] = STATE(4918), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4460), - [sym_qualified_identifier] = STATE(2732), - [sym_qualified_type_identifier] = STATE(3593), - [sym_qualified_operator_cast_identifier] = STATE(5146), - [sym_operator_name] = STATE(4918), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_translation_unit_repeat1] = STATE(28), - [aux_sym__declaration_specifiers_repeat1] = STATE(2179), - [aux_sym_attributed_declarator_repeat1] = STATE(253), - [aux_sym_sized_type_specifier_repeat1] = STATE(3171), - [aux_sym_operator_cast_definition_repeat1] = STATE(1962), - [sym_identifier] = ACTIONS(231), - [aux_sym_preproc_include_token1] = ACTIONS(233), - [aux_sym_preproc_def_token1] = ACTIONS(235), - [aux_sym_preproc_if_token1] = ACTIONS(237), - [aux_sym_preproc_if_token2] = ACTIONS(315), - [aux_sym_preproc_ifdef_token1] = ACTIONS(241), - [aux_sym_preproc_ifdef_token2] = ACTIONS(241), - [aux_sym_preproc_else_token1] = ACTIONS(243), - [aux_sym_preproc_elif_token1] = ACTIONS(245), - [sym_preproc_directive] = ACTIONS(247), + [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(7155), + [sym_preproc_elif] = STATE(7155), + [sym_preproc_elifdef] = STATE(7155), + [sym_function_definition] = STATE(33), + [sym_declaration] = STATE(33), + [sym_type_definition] = STATE(33), + [sym__declaration_modifiers] = STATE(3706), + [sym__declaration_specifiers] = STATE(4661), + [sym_linkage_specification] = STATE(33), + [sym_attribute_specifier] = STATE(3706), + [sym_attribute_declaration] = STATE(1427), + [sym_ms_declspec_modifier] = STATE(3706), + [sym_ms_based_modifier] = STATE(7654), + [sym_ms_call_modifier] = STATE(2439), + [sym__declarator] = STATE(5881), + [sym_parenthesized_declarator] = STATE(5640), + [sym_attributed_declarator] = STATE(5640), + [sym_pointer_declarator] = STATE(5640), + [sym_function_declarator] = STATE(5566), + [sym_array_declarator] = STATE(5640), + [sym_compound_statement] = STATE(33), + [sym_storage_class_specifier] = STATE(3706), + [sym_type_qualifier] = STATE(3706), + [sym__type_specifier] = STATE(3800), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), + [sym_attributed_statement] = STATE(33), + [sym_labeled_statement] = STATE(33), + [sym_expression_statement] = STATE(33), + [sym_if_statement] = STATE(33), + [sym_switch_statement] = STATE(33), + [sym_case_statement] = STATE(33), + [sym_while_statement] = STATE(33), + [sym_do_statement] = STATE(33), + [sym_for_statement] = STATE(33), + [sym_return_statement] = STATE(33), + [sym_break_statement] = STATE(33), + [sym_continue_statement] = STATE(33), + [sym_goto_statement] = STATE(33), + [sym__expression] = STATE(4160), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7618), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym__empty_declaration] = STATE(33), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym__class_name] = STATE(6623), + [sym_virtual] = STATE(3706), + [sym_explicit_function_specifier] = STATE(2238), + [sym_dependent_type] = STATE(3723), + [sym_template_declaration] = STATE(33), + [sym_template_instantiation] = STATE(33), + [sym_operator_cast] = STATE(5918), + [sym__constructor_specifiers] = STATE(2238), + [sym_operator_cast_definition] = STATE(33), + [sym_operator_cast_declaration] = STATE(33), + [sym_constructor_or_destructor_definition] = STATE(33), + [sym_reference_declarator] = STATE(5640), + [sym_structured_binding_declarator] = STATE(5640), + [sym_template_type] = STATE(3921), + [sym_template_function] = STATE(4066), + [sym_namespace_definition] = STATE(33), + [sym_namespace_alias_definition] = STATE(33), + [sym_using_declaration] = STATE(33), + [sym_alias_declaration] = STATE(33), + [sym_static_assert_declaration] = STATE(33), + [sym_concept_definition] = STATE(33), + [sym_for_range_loop] = STATE(33), + [sym_co_return_statement] = STATE(33), + [sym_co_yield_statement] = STATE(33), + [sym_throw_statement] = STATE(33), + [sym_try_statement] = STATE(33), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_destructor_name] = STATE(5640), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5143), + [sym_qualified_identifier] = STATE(3249), + [sym_qualified_type_identifier] = STATE(3915), + [sym_qualified_operator_cast_identifier] = STATE(5918), + [sym_operator_name] = STATE(5640), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_preproc_if_repeat1] = STATE(33), + [aux_sym__declaration_specifiers_repeat1] = STATE(2514), + [aux_sym_attributed_declarator_repeat1] = STATE(244), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [aux_sym_operator_cast_definition_repeat1] = STATE(2238), + [sym_identifier] = ACTIONS(225), + [aux_sym_preproc_include_token1] = ACTIONS(227), + [aux_sym_preproc_def_token1] = ACTIONS(229), + [aux_sym_preproc_if_token1] = ACTIONS(231), + [aux_sym_preproc_if_token2] = ACTIONS(325), + [aux_sym_preproc_ifdef_token1] = ACTIONS(235), + [aux_sym_preproc_ifdef_token2] = ACTIONS(235), + [aux_sym_preproc_else_token1] = ACTIONS(237), + [aux_sym_preproc_elif_token1] = ACTIONS(239), + [aux_sym_preproc_elifdef_token1] = ACTIONS(241), + [aux_sym_preproc_elifdef_token2] = ACTIONS(241), + [sym_preproc_directive] = ACTIONS(243), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -28522,230 +46365,243 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(249), - [anon_sym_typedef] = ACTIONS(251), - [anon_sym_extern] = ACTIONS(253), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(43), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(255), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(257), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(61), - [anon_sym_unsigned] = ACTIONS(61), - [anon_sym_long] = ACTIONS(61), - [anon_sym_short] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(63), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(259), - [anon_sym_switch] = ACTIONS(261), - [anon_sym_case] = ACTIONS(263), - [anon_sym_default] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_do] = ACTIONS(269), - [anon_sym_for] = ACTIONS(271), - [anon_sym_return] = ACTIONS(273), - [anon_sym_break] = ACTIONS(275), - [anon_sym_continue] = ACTIONS(277), - [anon_sym_goto] = ACTIONS(279), + [anon_sym_SEMI] = ACTIONS(245), + [anon_sym_typedef] = ACTIONS(247), + [anon_sym_extern] = ACTIONS(249), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(45), + [anon_sym___cdecl] = ACTIONS(47), + [anon_sym___clrcall] = ACTIONS(47), + [anon_sym___stdcall] = ACTIONS(47), + [anon_sym___fastcall] = ACTIONS(47), + [anon_sym___thiscall] = ACTIONS(47), + [anon_sym___vectorcall] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(251), + [anon_sym_LBRACK] = ACTIONS(51), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(253), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(255), + [anon_sym_switch] = ACTIONS(257), + [anon_sym_case] = ACTIONS(259), + [anon_sym_default] = ACTIONS(261), + [anon_sym_while] = ACTIONS(263), + [anon_sym_do] = ACTIONS(265), + [anon_sym_for] = ACTIONS(267), + [anon_sym_return] = ACTIONS(269), + [anon_sym_break] = ACTIONS(271), + [anon_sym_continue] = ACTIONS(273), + [anon_sym_goto] = ACTIONS(275), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(107), - [anon_sym_decltype] = ACTIONS(109), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_explicit] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(115), - [anon_sym_template] = ACTIONS(281), - [anon_sym_operator] = ACTIONS(119), - [anon_sym_try] = ACTIONS(283), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(285), - [anon_sym_namespace] = ACTIONS(287), - [anon_sym_using] = ACTIONS(289), - [anon_sym_static_assert] = ACTIONS(291), - [anon_sym_concept] = ACTIONS(293), - [anon_sym_co_return] = ACTIONS(295), - [anon_sym_co_yield] = ACTIONS(297), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(113), + [anon_sym_decltype] = ACTIONS(115), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_explicit] = ACTIONS(119), + [anon_sym_typename] = ACTIONS(121), + [anon_sym_template] = ACTIONS(277), + [anon_sym_operator] = ACTIONS(125), + [anon_sym_try] = ACTIONS(279), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(281), + [anon_sym_namespace] = ACTIONS(283), + [anon_sym_using] = ACTIONS(285), + [anon_sym_static_assert] = ACTIONS(287), + [anon_sym_concept] = ACTIONS(289), + [anon_sym_co_return] = ACTIONS(291), + [anon_sym_co_yield] = ACTIONS(293), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [20] = { - [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(6541), - [sym_preproc_elif] = STATE(6541), - [sym_function_definition] = STATE(28), - [sym_declaration] = STATE(28), - [sym_type_definition] = STATE(28), - [sym__declaration_modifiers] = STATE(3225), - [sym__declaration_specifiers] = STATE(3935), - [sym_linkage_specification] = STATE(28), - [sym_attribute_specifier] = STATE(3225), - [sym_attribute_declaration] = STATE(1136), - [sym_ms_declspec_modifier] = STATE(3225), - [sym_ms_based_modifier] = STATE(6104), - [sym_ms_call_modifier] = STATE(2012), - [sym__declarator] = STATE(5113), - [sym_parenthesized_declarator] = STATE(4918), - [sym_attributed_declarator] = STATE(4918), - [sym_pointer_declarator] = STATE(4918), - [sym_function_declarator] = STATE(4824), - [sym_array_declarator] = STATE(4918), - [sym_compound_statement] = STATE(28), - [sym_storage_class_specifier] = STATE(3225), - [sym_type_qualifier] = STATE(3225), - [sym__type_specifier] = STATE(3297), - [sym_sized_type_specifier] = STATE(3232), - [sym_enum_specifier] = STATE(3232), - [sym_struct_specifier] = STATE(3232), - [sym_union_specifier] = STATE(3232), - [sym_attributed_statement] = STATE(28), - [sym_labeled_statement] = STATE(28), - [sym_expression_statement] = STATE(28), - [sym_if_statement] = STATE(28), - [sym_switch_statement] = STATE(28), - [sym_case_statement] = STATE(28), - [sym_while_statement] = STATE(28), - [sym_do_statement] = STATE(28), - [sym_for_statement] = STATE(28), - [sym_return_statement] = STATE(28), - [sym_break_statement] = STATE(28), - [sym_continue_statement] = STATE(28), - [sym_goto_statement] = STATE(28), - [sym__expression] = STATE(3497), - [sym_comma_expression] = STATE(6497), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym__empty_declaration] = STATE(28), - [sym_placeholder_type_specifier] = STATE(3232), - [sym_decltype_auto] = STATE(3279), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3232), - [sym__class_name] = STATE(5753), - [sym_virtual] = STATE(3225), - [sym_explicit_function_specifier] = STATE(1962), - [sym_dependent_type] = STATE(3232), - [sym_template_declaration] = STATE(28), - [sym_template_instantiation] = STATE(28), - [sym_operator_cast] = STATE(5146), - [sym__constructor_specifiers] = STATE(1962), - [sym_operator_cast_definition] = STATE(28), - [sym_operator_cast_declaration] = STATE(28), - [sym_constructor_or_destructor_definition] = STATE(28), - [sym_reference_declarator] = STATE(4918), - [sym_structured_binding_declarator] = STATE(4918), - [sym_template_type] = STATE(3608), - [sym_template_function] = STATE(3494), - [sym_namespace_definition] = STATE(28), - [sym_namespace_alias_definition] = STATE(28), - [sym_using_declaration] = STATE(28), - [sym_alias_declaration] = STATE(28), - [sym_static_assert_declaration] = STATE(28), - [sym_concept_definition] = STATE(28), - [sym_for_range_loop] = STATE(28), - [sym_co_return_statement] = STATE(28), - [sym_co_yield_statement] = STATE(28), - [sym_throw_statement] = STATE(28), - [sym_try_statement] = STATE(28), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_destructor_name] = STATE(4918), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4460), - [sym_qualified_identifier] = STATE(2732), - [sym_qualified_type_identifier] = STATE(3593), - [sym_qualified_operator_cast_identifier] = STATE(5146), - [sym_operator_name] = STATE(4918), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_translation_unit_repeat1] = STATE(28), - [aux_sym__declaration_specifiers_repeat1] = STATE(2179), - [aux_sym_attributed_declarator_repeat1] = STATE(253), - [aux_sym_sized_type_specifier_repeat1] = STATE(3171), - [aux_sym_operator_cast_definition_repeat1] = STATE(1962), - [sym_identifier] = ACTIONS(231), - [aux_sym_preproc_include_token1] = ACTIONS(233), - [aux_sym_preproc_def_token1] = ACTIONS(235), - [aux_sym_preproc_if_token1] = ACTIONS(237), - [aux_sym_preproc_if_token2] = ACTIONS(317), - [aux_sym_preproc_ifdef_token1] = ACTIONS(241), - [aux_sym_preproc_ifdef_token2] = ACTIONS(241), - [aux_sym_preproc_else_token1] = ACTIONS(243), - [aux_sym_preproc_elif_token1] = ACTIONS(245), - [sym_preproc_directive] = ACTIONS(247), + [sym_preproc_include] = STATE(81), + [sym_preproc_def] = STATE(81), + [sym_preproc_function_def] = STATE(81), + [sym_preproc_call] = STATE(81), + [sym_preproc_if] = STATE(81), + [sym_preproc_ifdef] = STATE(81), + [sym_function_definition] = STATE(81), + [sym_declaration] = STATE(81), + [sym_type_definition] = STATE(81), + [sym__declaration_modifiers] = STATE(3706), + [sym__declaration_specifiers] = STATE(4618), + [sym_linkage_specification] = STATE(81), + [sym_attribute_specifier] = STATE(3706), + [sym_attribute_declaration] = STATE(1427), + [sym_ms_declspec_modifier] = STATE(3706), + [sym_ms_based_modifier] = STATE(7654), + [sym_ms_call_modifier] = STATE(2462), + [sym__declarator] = STATE(5881), + [sym_parenthesized_declarator] = STATE(5640), + [sym_attributed_declarator] = STATE(5640), + [sym_pointer_declarator] = STATE(5640), + [sym_function_declarator] = STATE(5588), + [sym_array_declarator] = STATE(5640), + [sym_compound_statement] = STATE(81), + [sym_storage_class_specifier] = STATE(3706), + [sym_type_qualifier] = STATE(3706), + [sym__type_specifier] = STATE(3826), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), + [sym_attributed_statement] = STATE(81), + [sym_labeled_statement] = STATE(81), + [sym_expression_statement] = STATE(81), + [sym_if_statement] = STATE(81), + [sym_switch_statement] = STATE(81), + [sym_case_statement] = STATE(81), + [sym_while_statement] = STATE(81), + [sym_do_statement] = STATE(81), + [sym_for_statement] = STATE(81), + [sym_return_statement] = STATE(81), + [sym_break_statement] = STATE(81), + [sym_continue_statement] = STATE(81), + [sym_goto_statement] = STATE(81), + [sym__expression] = STATE(4058), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7590), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_initializer_list] = STATE(6202), + [sym_initializer_pair] = STATE(6202), + [sym_subscript_designator] = STATE(5891), + [sym_field_designator] = STATE(5891), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym__empty_declaration] = STATE(81), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym__class_name] = STATE(6623), + [sym_virtual] = STATE(3706), + [sym_explicit_function_specifier] = STATE(2240), + [sym_dependent_type] = STATE(3723), + [sym_template_declaration] = STATE(81), + [sym_template_instantiation] = STATE(81), + [sym_operator_cast] = STATE(5937), + [sym__constructor_specifiers] = STATE(2240), + [sym_operator_cast_definition] = STATE(81), + [sym_operator_cast_declaration] = STATE(81), + [sym_constructor_or_destructor_definition] = STATE(81), + [sym_reference_declarator] = STATE(5640), + [sym_structured_binding_declarator] = STATE(5640), + [sym_template_type] = STATE(3921), + [sym_template_function] = STATE(4066), + [sym_namespace_definition] = STATE(81), + [sym_namespace_alias_definition] = STATE(81), + [sym_using_declaration] = STATE(81), + [sym_alias_declaration] = STATE(81), + [sym_static_assert_declaration] = STATE(81), + [sym_concept_definition] = STATE(81), + [sym_for_range_loop] = STATE(81), + [sym_co_return_statement] = STATE(81), + [sym_co_yield_statement] = STATE(81), + [sym_throw_statement] = STATE(81), + [sym_try_statement] = STATE(81), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_destructor_name] = STATE(5640), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5143), + [sym_qualified_identifier] = STATE(3249), + [sym_qualified_type_identifier] = STATE(3915), + [sym_qualified_operator_cast_identifier] = STATE(5937), + [sym_operator_name] = STATE(5640), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_preproc_if_repeat1] = STATE(81), + [aux_sym__declaration_specifiers_repeat1] = STATE(2514), + [aux_sym_attributed_declarator_repeat1] = STATE(309), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [aux_sym_initializer_pair_repeat1] = STATE(5891), + [aux_sym_operator_cast_definition_repeat1] = STATE(2240), + [sym_identifier] = ACTIONS(153), + [aux_sym_preproc_include_token1] = ACTIONS(155), + [aux_sym_preproc_def_token1] = ACTIONS(157), + [anon_sym_COMMA] = ACTIONS(159), + [aux_sym_preproc_if_token1] = ACTIONS(161), + [aux_sym_preproc_ifdef_token1] = ACTIONS(163), + [aux_sym_preproc_ifdef_token2] = ACTIONS(163), + [sym_preproc_directive] = ACTIONS(165), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -28754,367 +46610,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(249), - [anon_sym_typedef] = ACTIONS(251), - [anon_sym_extern] = ACTIONS(253), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(43), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(255), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(257), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(61), - [anon_sym_unsigned] = ACTIONS(61), - [anon_sym_long] = ACTIONS(61), - [anon_sym_short] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(63), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(259), - [anon_sym_switch] = ACTIONS(261), - [anon_sym_case] = ACTIONS(263), - [anon_sym_default] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_do] = ACTIONS(269), - [anon_sym_for] = ACTIONS(271), - [anon_sym_return] = ACTIONS(273), - [anon_sym_break] = ACTIONS(275), - [anon_sym_continue] = ACTIONS(277), - [anon_sym_goto] = ACTIONS(279), + [anon_sym_SEMI] = ACTIONS(167), + [anon_sym_typedef] = ACTIONS(169), + [anon_sym_extern] = ACTIONS(171), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(45), + [anon_sym___cdecl] = ACTIONS(47), + [anon_sym___clrcall] = ACTIONS(47), + [anon_sym___stdcall] = ACTIONS(47), + [anon_sym___fastcall] = ACTIONS(47), + [anon_sym___thiscall] = ACTIONS(47), + [anon_sym___vectorcall] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(173), + [anon_sym_RBRACE] = ACTIONS(327), + [anon_sym_LBRACK] = ACTIONS(177), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(179), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(181), + [anon_sym_switch] = ACTIONS(183), + [anon_sym_case] = ACTIONS(185), + [anon_sym_default] = ACTIONS(187), + [anon_sym_while] = ACTIONS(189), + [anon_sym_do] = ACTIONS(191), + [anon_sym_for] = ACTIONS(193), + [anon_sym_return] = ACTIONS(195), + [anon_sym_break] = ACTIONS(197), + [anon_sym_continue] = ACTIONS(199), + [anon_sym_goto] = ACTIONS(201), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(107), - [anon_sym_decltype] = ACTIONS(109), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_explicit] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(115), - [anon_sym_template] = ACTIONS(281), - [anon_sym_operator] = ACTIONS(119), - [anon_sym_try] = ACTIONS(283), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(285), - [anon_sym_namespace] = ACTIONS(287), - [anon_sym_using] = ACTIONS(289), - [anon_sym_static_assert] = ACTIONS(291), - [anon_sym_concept] = ACTIONS(293), - [anon_sym_co_return] = ACTIONS(295), - [anon_sym_co_yield] = ACTIONS(297), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [anon_sym_DOT] = ACTIONS(203), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(113), + [anon_sym_decltype] = ACTIONS(115), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_explicit] = ACTIONS(119), + [anon_sym_typename] = ACTIONS(121), + [anon_sym_template] = ACTIONS(207), + [anon_sym_operator] = ACTIONS(125), + [anon_sym_try] = ACTIONS(209), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(211), + [anon_sym_namespace] = ACTIONS(213), + [anon_sym_using] = ACTIONS(215), + [anon_sym_static_assert] = ACTIONS(217), + [anon_sym_concept] = ACTIONS(219), + [anon_sym_co_return] = ACTIONS(221), + [anon_sym_co_yield] = ACTIONS(223), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [21] = { - [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(6322), - [sym_preproc_elif] = STATE(6322), - [sym_function_definition] = STATE(10), - [sym_declaration] = STATE(10), - [sym_type_definition] = STATE(10), - [sym__declaration_modifiers] = STATE(3225), - [sym__declaration_specifiers] = STATE(3935), - [sym_linkage_specification] = STATE(10), - [sym_attribute_specifier] = STATE(3225), - [sym_attribute_declaration] = STATE(1136), - [sym_ms_declspec_modifier] = STATE(3225), - [sym_ms_based_modifier] = STATE(6104), - [sym_ms_call_modifier] = STATE(2012), - [sym__declarator] = STATE(5113), - [sym_parenthesized_declarator] = STATE(4918), - [sym_attributed_declarator] = STATE(4918), - [sym_pointer_declarator] = STATE(4918), - [sym_function_declarator] = STATE(4824), - [sym_array_declarator] = STATE(4918), - [sym_compound_statement] = STATE(10), - [sym_storage_class_specifier] = STATE(3225), - [sym_type_qualifier] = STATE(3225), - [sym__type_specifier] = STATE(3297), - [sym_sized_type_specifier] = STATE(3232), - [sym_enum_specifier] = STATE(3232), - [sym_struct_specifier] = STATE(3232), - [sym_union_specifier] = STATE(3232), - [sym_attributed_statement] = STATE(10), - [sym_labeled_statement] = STATE(10), - [sym_expression_statement] = STATE(10), - [sym_if_statement] = STATE(10), - [sym_switch_statement] = STATE(10), - [sym_case_statement] = STATE(10), - [sym_while_statement] = STATE(10), - [sym_do_statement] = STATE(10), - [sym_for_statement] = STATE(10), - [sym_return_statement] = STATE(10), - [sym_break_statement] = STATE(10), - [sym_continue_statement] = STATE(10), - [sym_goto_statement] = STATE(10), - [sym__expression] = STATE(3497), - [sym_comma_expression] = STATE(6497), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym__empty_declaration] = STATE(10), - [sym_placeholder_type_specifier] = STATE(3232), - [sym_decltype_auto] = STATE(3279), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3232), - [sym__class_name] = STATE(5753), - [sym_virtual] = STATE(3225), - [sym_explicit_function_specifier] = STATE(1962), - [sym_dependent_type] = STATE(3232), - [sym_template_declaration] = STATE(10), - [sym_template_instantiation] = STATE(10), - [sym_operator_cast] = STATE(5146), - [sym__constructor_specifiers] = STATE(1962), - [sym_operator_cast_definition] = STATE(10), - [sym_operator_cast_declaration] = STATE(10), - [sym_constructor_or_destructor_definition] = STATE(10), - [sym_reference_declarator] = STATE(4918), - [sym_structured_binding_declarator] = STATE(4918), - [sym_template_type] = STATE(3608), - [sym_template_function] = STATE(3494), - [sym_namespace_definition] = STATE(10), - [sym_namespace_alias_definition] = STATE(10), - [sym_using_declaration] = STATE(10), - [sym_alias_declaration] = STATE(10), - [sym_static_assert_declaration] = STATE(10), - [sym_concept_definition] = STATE(10), - [sym_for_range_loop] = STATE(10), - [sym_co_return_statement] = STATE(10), - [sym_co_yield_statement] = STATE(10), - [sym_throw_statement] = STATE(10), - [sym_try_statement] = STATE(10), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_destructor_name] = STATE(4918), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4460), - [sym_qualified_identifier] = STATE(2732), - [sym_qualified_type_identifier] = STATE(3593), - [sym_qualified_operator_cast_identifier] = STATE(5146), - [sym_operator_name] = STATE(4918), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_translation_unit_repeat1] = STATE(10), - [aux_sym__declaration_specifiers_repeat1] = STATE(2179), - [aux_sym_attributed_declarator_repeat1] = STATE(253), - [aux_sym_sized_type_specifier_repeat1] = STATE(3171), - [aux_sym_operator_cast_definition_repeat1] = STATE(1962), - [sym_identifier] = ACTIONS(231), - [aux_sym_preproc_include_token1] = ACTIONS(233), - [aux_sym_preproc_def_token1] = ACTIONS(235), - [aux_sym_preproc_if_token1] = ACTIONS(237), - [aux_sym_preproc_if_token2] = ACTIONS(319), - [aux_sym_preproc_ifdef_token1] = ACTIONS(241), - [aux_sym_preproc_ifdef_token2] = ACTIONS(241), - [aux_sym_preproc_else_token1] = ACTIONS(243), - [aux_sym_preproc_elif_token1] = ACTIONS(245), - [sym_preproc_directive] = ACTIONS(247), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(249), - [anon_sym_typedef] = ACTIONS(251), - [anon_sym_extern] = ACTIONS(253), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(43), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(255), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(257), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(61), - [anon_sym_unsigned] = ACTIONS(61), - [anon_sym_long] = ACTIONS(61), - [anon_sym_short] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(63), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(259), - [anon_sym_switch] = ACTIONS(261), - [anon_sym_case] = ACTIONS(263), - [anon_sym_default] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_do] = ACTIONS(269), - [anon_sym_for] = ACTIONS(271), - [anon_sym_return] = ACTIONS(273), - [anon_sym_break] = ACTIONS(275), - [anon_sym_continue] = ACTIONS(277), - [anon_sym_goto] = ACTIONS(279), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(107), - [anon_sym_decltype] = ACTIONS(109), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_explicit] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(115), - [anon_sym_template] = ACTIONS(281), - [anon_sym_operator] = ACTIONS(119), - [anon_sym_try] = ACTIONS(283), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(285), - [anon_sym_namespace] = ACTIONS(287), - [anon_sym_using] = ACTIONS(289), - [anon_sym_static_assert] = ACTIONS(291), - [anon_sym_concept] = ACTIONS(293), - [anon_sym_co_return] = ACTIONS(295), - [anon_sym_co_yield] = ACTIONS(297), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), - }, - [22] = { [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(6338), - [sym_preproc_elif] = STATE(6338), + [sym_preproc_else] = STATE(7408), + [sym_preproc_elif] = STATE(7408), + [sym_preproc_elifdef] = STATE(7408), [sym_function_definition] = STATE(19), [sym_declaration] = STATE(19), [sym_type_definition] = STATE(19), - [sym__declaration_modifiers] = STATE(3225), - [sym__declaration_specifiers] = STATE(3935), + [sym__declaration_modifiers] = STATE(3706), + [sym__declaration_specifiers] = STATE(4661), [sym_linkage_specification] = STATE(19), - [sym_attribute_specifier] = STATE(3225), - [sym_attribute_declaration] = STATE(1136), - [sym_ms_declspec_modifier] = STATE(3225), - [sym_ms_based_modifier] = STATE(6104), - [sym_ms_call_modifier] = STATE(2012), - [sym__declarator] = STATE(5113), - [sym_parenthesized_declarator] = STATE(4918), - [sym_attributed_declarator] = STATE(4918), - [sym_pointer_declarator] = STATE(4918), - [sym_function_declarator] = STATE(4824), - [sym_array_declarator] = STATE(4918), + [sym_attribute_specifier] = STATE(3706), + [sym_attribute_declaration] = STATE(1427), + [sym_ms_declspec_modifier] = STATE(3706), + [sym_ms_based_modifier] = STATE(7654), + [sym_ms_call_modifier] = STATE(2439), + [sym__declarator] = STATE(5881), + [sym_parenthesized_declarator] = STATE(5640), + [sym_attributed_declarator] = STATE(5640), + [sym_pointer_declarator] = STATE(5640), + [sym_function_declarator] = STATE(5566), + [sym_array_declarator] = STATE(5640), [sym_compound_statement] = STATE(19), - [sym_storage_class_specifier] = STATE(3225), - [sym_type_qualifier] = STATE(3225), - [sym__type_specifier] = STATE(3297), - [sym_sized_type_specifier] = STATE(3232), - [sym_enum_specifier] = STATE(3232), - [sym_struct_specifier] = STATE(3232), - [sym_union_specifier] = STATE(3232), + [sym_storage_class_specifier] = STATE(3706), + [sym_type_qualifier] = STATE(3706), + [sym__type_specifier] = STATE(3800), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), [sym_attributed_statement] = STATE(19), [sym_labeled_statement] = STATE(19), [sym_expression_statement] = STATE(19), @@ -29128,44 +46762,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(19), [sym_continue_statement] = STATE(19), [sym_goto_statement] = STATE(19), - [sym__expression] = STATE(3497), - [sym_comma_expression] = STATE(6497), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), + [sym__expression] = STATE(4160), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7618), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), [sym__empty_declaration] = STATE(19), - [sym_placeholder_type_specifier] = STATE(3232), - [sym_decltype_auto] = STATE(3279), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3232), - [sym__class_name] = STATE(5753), - [sym_virtual] = STATE(3225), - [sym_explicit_function_specifier] = STATE(1962), - [sym_dependent_type] = STATE(3232), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym__class_name] = STATE(6623), + [sym_virtual] = STATE(3706), + [sym_explicit_function_specifier] = STATE(2238), + [sym_dependent_type] = STATE(3723), [sym_template_declaration] = STATE(19), [sym_template_instantiation] = STATE(19), - [sym_operator_cast] = STATE(5146), - [sym__constructor_specifiers] = STATE(1962), + [sym_operator_cast] = STATE(5918), + [sym__constructor_specifiers] = STATE(2238), [sym_operator_cast_definition] = STATE(19), [sym_operator_cast_declaration] = STATE(19), [sym_constructor_or_destructor_definition] = STATE(19), - [sym_reference_declarator] = STATE(4918), - [sym_structured_binding_declarator] = STATE(4918), - [sym_template_type] = STATE(3608), - [sym_template_function] = STATE(3494), + [sym_reference_declarator] = STATE(5640), + [sym_structured_binding_declarator] = STATE(5640), + [sym_template_type] = STATE(3921), + [sym_template_function] = STATE(4066), [sym_namespace_definition] = STATE(19), [sym_namespace_alias_definition] = STATE(19), [sym_using_declaration] = STATE(19), @@ -29177,271 +46816,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_co_yield_statement] = STATE(19), [sym_throw_statement] = STATE(19), [sym_try_statement] = STATE(19), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_destructor_name] = STATE(4918), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4460), - [sym_qualified_identifier] = STATE(2732), - [sym_qualified_type_identifier] = STATE(3593), - [sym_qualified_operator_cast_identifier] = STATE(5146), - [sym_operator_name] = STATE(4918), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_translation_unit_repeat1] = STATE(19), - [aux_sym__declaration_specifiers_repeat1] = STATE(2179), - [aux_sym_attributed_declarator_repeat1] = STATE(253), - [aux_sym_sized_type_specifier_repeat1] = STATE(3171), - [aux_sym_operator_cast_definition_repeat1] = STATE(1962), - [sym_identifier] = ACTIONS(231), - [aux_sym_preproc_include_token1] = ACTIONS(233), - [aux_sym_preproc_def_token1] = ACTIONS(235), - [aux_sym_preproc_if_token1] = ACTIONS(237), - [aux_sym_preproc_if_token2] = ACTIONS(321), - [aux_sym_preproc_ifdef_token1] = ACTIONS(241), - [aux_sym_preproc_ifdef_token2] = ACTIONS(241), - [aux_sym_preproc_else_token1] = ACTIONS(243), - [aux_sym_preproc_elif_token1] = ACTIONS(245), - [sym_preproc_directive] = ACTIONS(247), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(249), - [anon_sym_typedef] = ACTIONS(251), - [anon_sym_extern] = ACTIONS(253), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(43), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(255), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(257), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(61), - [anon_sym_unsigned] = ACTIONS(61), - [anon_sym_long] = ACTIONS(61), - [anon_sym_short] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(63), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(259), - [anon_sym_switch] = ACTIONS(261), - [anon_sym_case] = ACTIONS(263), - [anon_sym_default] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_do] = ACTIONS(269), - [anon_sym_for] = ACTIONS(271), - [anon_sym_return] = ACTIONS(273), - [anon_sym_break] = ACTIONS(275), - [anon_sym_continue] = ACTIONS(277), - [anon_sym_goto] = ACTIONS(279), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(107), - [anon_sym_decltype] = ACTIONS(109), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_explicit] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(115), - [anon_sym_template] = ACTIONS(281), - [anon_sym_operator] = ACTIONS(119), - [anon_sym_try] = ACTIONS(283), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(285), - [anon_sym_namespace] = ACTIONS(287), - [anon_sym_using] = ACTIONS(289), - [anon_sym_static_assert] = ACTIONS(291), - [anon_sym_concept] = ACTIONS(293), - [anon_sym_co_return] = ACTIONS(295), - [anon_sym_co_yield] = ACTIONS(297), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), - }, - [23] = { - [sym_preproc_include] = STATE(28), - [sym_preproc_def] = STATE(28), - [sym_preproc_function_def] = STATE(28), - [sym_preproc_call] = STATE(28), - [sym_preproc_if] = STATE(28), - [sym_preproc_ifdef] = STATE(28), - [sym_preproc_else] = STATE(6555), - [sym_preproc_elif] = STATE(6555), - [sym_function_definition] = STATE(28), - [sym_declaration] = STATE(28), - [sym_type_definition] = STATE(28), - [sym__declaration_modifiers] = STATE(3225), - [sym__declaration_specifiers] = STATE(3935), - [sym_linkage_specification] = STATE(28), - [sym_attribute_specifier] = STATE(3225), - [sym_attribute_declaration] = STATE(1136), - [sym_ms_declspec_modifier] = STATE(3225), - [sym_ms_based_modifier] = STATE(6104), - [sym_ms_call_modifier] = STATE(2012), - [sym__declarator] = STATE(5113), - [sym_parenthesized_declarator] = STATE(4918), - [sym_attributed_declarator] = STATE(4918), - [sym_pointer_declarator] = STATE(4918), - [sym_function_declarator] = STATE(4824), - [sym_array_declarator] = STATE(4918), - [sym_compound_statement] = STATE(28), - [sym_storage_class_specifier] = STATE(3225), - [sym_type_qualifier] = STATE(3225), - [sym__type_specifier] = STATE(3297), - [sym_sized_type_specifier] = STATE(3232), - [sym_enum_specifier] = STATE(3232), - [sym_struct_specifier] = STATE(3232), - [sym_union_specifier] = STATE(3232), - [sym_attributed_statement] = STATE(28), - [sym_labeled_statement] = STATE(28), - [sym_expression_statement] = STATE(28), - [sym_if_statement] = STATE(28), - [sym_switch_statement] = STATE(28), - [sym_case_statement] = STATE(28), - [sym_while_statement] = STATE(28), - [sym_do_statement] = STATE(28), - [sym_for_statement] = STATE(28), - [sym_return_statement] = STATE(28), - [sym_break_statement] = STATE(28), - [sym_continue_statement] = STATE(28), - [sym_goto_statement] = STATE(28), - [sym__expression] = STATE(3497), - [sym_comma_expression] = STATE(6497), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym__empty_declaration] = STATE(28), - [sym_placeholder_type_specifier] = STATE(3232), - [sym_decltype_auto] = STATE(3279), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3232), - [sym__class_name] = STATE(5753), - [sym_virtual] = STATE(3225), - [sym_explicit_function_specifier] = STATE(1962), - [sym_dependent_type] = STATE(3232), - [sym_template_declaration] = STATE(28), - [sym_template_instantiation] = STATE(28), - [sym_operator_cast] = STATE(5146), - [sym__constructor_specifiers] = STATE(1962), - [sym_operator_cast_definition] = STATE(28), - [sym_operator_cast_declaration] = STATE(28), - [sym_constructor_or_destructor_definition] = STATE(28), - [sym_reference_declarator] = STATE(4918), - [sym_structured_binding_declarator] = STATE(4918), - [sym_template_type] = STATE(3608), - [sym_template_function] = STATE(3494), - [sym_namespace_definition] = STATE(28), - [sym_namespace_alias_definition] = STATE(28), - [sym_using_declaration] = STATE(28), - [sym_alias_declaration] = STATE(28), - [sym_static_assert_declaration] = STATE(28), - [sym_concept_definition] = STATE(28), - [sym_for_range_loop] = STATE(28), - [sym_co_return_statement] = STATE(28), - [sym_co_yield_statement] = STATE(28), - [sym_throw_statement] = STATE(28), - [sym_try_statement] = STATE(28), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_destructor_name] = STATE(4918), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4460), - [sym_qualified_identifier] = STATE(2732), - [sym_qualified_type_identifier] = STATE(3593), - [sym_qualified_operator_cast_identifier] = STATE(5146), - [sym_operator_name] = STATE(4918), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_translation_unit_repeat1] = STATE(28), - [aux_sym__declaration_specifiers_repeat1] = STATE(2179), - [aux_sym_attributed_declarator_repeat1] = STATE(253), - [aux_sym_sized_type_specifier_repeat1] = STATE(3171), - [aux_sym_operator_cast_definition_repeat1] = STATE(1962), - [sym_identifier] = ACTIONS(231), - [aux_sym_preproc_include_token1] = ACTIONS(233), - [aux_sym_preproc_def_token1] = ACTIONS(235), - [aux_sym_preproc_if_token1] = ACTIONS(237), - [aux_sym_preproc_if_token2] = ACTIONS(323), - [aux_sym_preproc_ifdef_token1] = ACTIONS(241), - [aux_sym_preproc_ifdef_token2] = ACTIONS(241), - [aux_sym_preproc_else_token1] = ACTIONS(243), - [aux_sym_preproc_elif_token1] = ACTIONS(245), - [sym_preproc_directive] = ACTIONS(247), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_destructor_name] = STATE(5640), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5143), + [sym_qualified_identifier] = STATE(3249), + [sym_qualified_type_identifier] = STATE(3915), + [sym_qualified_operator_cast_identifier] = STATE(5918), + [sym_operator_name] = STATE(5640), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_preproc_if_repeat1] = STATE(19), + [aux_sym__declaration_specifiers_repeat1] = STATE(2514), + [aux_sym_attributed_declarator_repeat1] = STATE(244), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [aux_sym_operator_cast_definition_repeat1] = STATE(2238), + [sym_identifier] = ACTIONS(225), + [aux_sym_preproc_include_token1] = ACTIONS(227), + [aux_sym_preproc_def_token1] = ACTIONS(229), + [aux_sym_preproc_if_token1] = ACTIONS(231), + [aux_sym_preproc_if_token2] = ACTIONS(329), + [aux_sym_preproc_ifdef_token1] = ACTIONS(235), + [aux_sym_preproc_ifdef_token2] = ACTIONS(235), + [aux_sym_preproc_else_token1] = ACTIONS(237), + [aux_sym_preproc_elif_token1] = ACTIONS(239), + [aux_sym_preproc_elifdef_token1] = ACTIONS(241), + [aux_sym_preproc_elifdef_token2] = ACTIONS(241), + [sym_preproc_directive] = ACTIONS(243), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -29450,230 +46859,242 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(249), - [anon_sym_typedef] = ACTIONS(251), - [anon_sym_extern] = ACTIONS(253), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(43), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(255), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(257), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(61), - [anon_sym_unsigned] = ACTIONS(61), - [anon_sym_long] = ACTIONS(61), - [anon_sym_short] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(63), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(259), - [anon_sym_switch] = ACTIONS(261), - [anon_sym_case] = ACTIONS(263), - [anon_sym_default] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_do] = ACTIONS(269), - [anon_sym_for] = ACTIONS(271), - [anon_sym_return] = ACTIONS(273), - [anon_sym_break] = ACTIONS(275), - [anon_sym_continue] = ACTIONS(277), - [anon_sym_goto] = ACTIONS(279), + [anon_sym_SEMI] = ACTIONS(245), + [anon_sym_typedef] = ACTIONS(247), + [anon_sym_extern] = ACTIONS(249), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(45), + [anon_sym___cdecl] = ACTIONS(47), + [anon_sym___clrcall] = ACTIONS(47), + [anon_sym___stdcall] = ACTIONS(47), + [anon_sym___fastcall] = ACTIONS(47), + [anon_sym___thiscall] = ACTIONS(47), + [anon_sym___vectorcall] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(251), + [anon_sym_LBRACK] = ACTIONS(51), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(253), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(255), + [anon_sym_switch] = ACTIONS(257), + [anon_sym_case] = ACTIONS(259), + [anon_sym_default] = ACTIONS(261), + [anon_sym_while] = ACTIONS(263), + [anon_sym_do] = ACTIONS(265), + [anon_sym_for] = ACTIONS(267), + [anon_sym_return] = ACTIONS(269), + [anon_sym_break] = ACTIONS(271), + [anon_sym_continue] = ACTIONS(273), + [anon_sym_goto] = ACTIONS(275), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(107), - [anon_sym_decltype] = ACTIONS(109), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_explicit] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(115), - [anon_sym_template] = ACTIONS(281), - [anon_sym_operator] = ACTIONS(119), - [anon_sym_try] = ACTIONS(283), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(285), - [anon_sym_namespace] = ACTIONS(287), - [anon_sym_using] = ACTIONS(289), - [anon_sym_static_assert] = ACTIONS(291), - [anon_sym_concept] = ACTIONS(293), - [anon_sym_co_return] = ACTIONS(295), - [anon_sym_co_yield] = ACTIONS(297), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(113), + [anon_sym_decltype] = ACTIONS(115), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_explicit] = ACTIONS(119), + [anon_sym_typename] = ACTIONS(121), + [anon_sym_template] = ACTIONS(277), + [anon_sym_operator] = ACTIONS(125), + [anon_sym_try] = ACTIONS(279), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(281), + [anon_sym_namespace] = ACTIONS(283), + [anon_sym_using] = ACTIONS(285), + [anon_sym_static_assert] = ACTIONS(287), + [anon_sym_concept] = ACTIONS(289), + [anon_sym_co_return] = ACTIONS(291), + [anon_sym_co_yield] = ACTIONS(293), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, - [24] = { - [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(6561), - [sym_preproc_elif] = STATE(6561), - [sym_function_definition] = STATE(20), - [sym_declaration] = STATE(20), - [sym_type_definition] = STATE(20), - [sym__declaration_modifiers] = STATE(3225), - [sym__declaration_specifiers] = STATE(3935), - [sym_linkage_specification] = STATE(20), - [sym_attribute_specifier] = STATE(3225), - [sym_attribute_declaration] = STATE(1136), - [sym_ms_declspec_modifier] = STATE(3225), - [sym_ms_based_modifier] = STATE(6104), - [sym_ms_call_modifier] = STATE(2012), - [sym__declarator] = STATE(5113), - [sym_parenthesized_declarator] = STATE(4918), - [sym_attributed_declarator] = STATE(4918), - [sym_pointer_declarator] = STATE(4918), - [sym_function_declarator] = STATE(4824), - [sym_array_declarator] = STATE(4918), - [sym_compound_statement] = STATE(20), - [sym_storage_class_specifier] = STATE(3225), - [sym_type_qualifier] = STATE(3225), - [sym__type_specifier] = STATE(3297), - [sym_sized_type_specifier] = STATE(3232), - [sym_enum_specifier] = STATE(3232), - [sym_struct_specifier] = STATE(3232), - [sym_union_specifier] = STATE(3232), - [sym_attributed_statement] = STATE(20), - [sym_labeled_statement] = STATE(20), - [sym_expression_statement] = STATE(20), - [sym_if_statement] = STATE(20), - [sym_switch_statement] = STATE(20), - [sym_case_statement] = STATE(20), - [sym_while_statement] = STATE(20), - [sym_do_statement] = STATE(20), - [sym_for_statement] = STATE(20), - [sym_return_statement] = STATE(20), - [sym_break_statement] = STATE(20), - [sym_continue_statement] = STATE(20), - [sym_goto_statement] = STATE(20), - [sym__expression] = STATE(3497), - [sym_comma_expression] = STATE(6497), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym__empty_declaration] = STATE(20), - [sym_placeholder_type_specifier] = STATE(3232), - [sym_decltype_auto] = STATE(3279), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3232), - [sym__class_name] = STATE(5753), - [sym_virtual] = STATE(3225), - [sym_explicit_function_specifier] = STATE(1962), - [sym_dependent_type] = STATE(3232), - [sym_template_declaration] = STATE(20), - [sym_template_instantiation] = STATE(20), - [sym_operator_cast] = STATE(5146), - [sym__constructor_specifiers] = STATE(1962), - [sym_operator_cast_definition] = STATE(20), - [sym_operator_cast_declaration] = STATE(20), - [sym_constructor_or_destructor_definition] = STATE(20), - [sym_reference_declarator] = STATE(4918), - [sym_structured_binding_declarator] = STATE(4918), - [sym_template_type] = STATE(3608), - [sym_template_function] = STATE(3494), - [sym_namespace_definition] = STATE(20), - [sym_namespace_alias_definition] = STATE(20), - [sym_using_declaration] = STATE(20), - [sym_alias_declaration] = STATE(20), - [sym_static_assert_declaration] = STATE(20), - [sym_concept_definition] = STATE(20), - [sym_for_range_loop] = STATE(20), - [sym_co_return_statement] = STATE(20), - [sym_co_yield_statement] = STATE(20), - [sym_throw_statement] = STATE(20), - [sym_try_statement] = STATE(20), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_destructor_name] = STATE(4918), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4460), - [sym_qualified_identifier] = STATE(2732), - [sym_qualified_type_identifier] = STATE(3593), - [sym_qualified_operator_cast_identifier] = STATE(5146), - [sym_operator_name] = STATE(4918), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_translation_unit_repeat1] = STATE(20), - [aux_sym__declaration_specifiers_repeat1] = STATE(2179), - [aux_sym_attributed_declarator_repeat1] = STATE(253), - [aux_sym_sized_type_specifier_repeat1] = STATE(3171), - [aux_sym_operator_cast_definition_repeat1] = STATE(1962), - [sym_identifier] = ACTIONS(231), - [aux_sym_preproc_include_token1] = ACTIONS(233), - [aux_sym_preproc_def_token1] = ACTIONS(235), - [aux_sym_preproc_if_token1] = ACTIONS(237), - [aux_sym_preproc_if_token2] = ACTIONS(325), - [aux_sym_preproc_ifdef_token1] = ACTIONS(241), - [aux_sym_preproc_ifdef_token2] = ACTIONS(241), - [aux_sym_preproc_else_token1] = ACTIONS(243), - [aux_sym_preproc_elif_token1] = ACTIONS(245), - [sym_preproc_directive] = ACTIONS(247), + [22] = { + [sym_preproc_include] = STATE(36), + [sym_preproc_def] = STATE(36), + [sym_preproc_function_def] = STATE(36), + [sym_preproc_call] = STATE(36), + [sym_preproc_if] = STATE(36), + [sym_preproc_ifdef] = STATE(36), + [sym_preproc_else] = STATE(7425), + [sym_preproc_elif] = STATE(7425), + [sym_function_definition] = STATE(36), + [sym_declaration] = STATE(36), + [sym_type_definition] = STATE(36), + [sym__declaration_modifiers] = STATE(3706), + [sym__declaration_specifiers] = STATE(4664), + [sym_linkage_specification] = STATE(36), + [sym_attribute_specifier] = STATE(3706), + [sym_attribute_declaration] = STATE(1427), + [sym_ms_declspec_modifier] = STATE(3706), + [sym_ms_based_modifier] = STATE(7654), + [sym_ms_call_modifier] = STATE(2402), + [sym__declarator] = STATE(5881), + [sym_parenthesized_declarator] = STATE(5640), + [sym_attributed_declarator] = STATE(5640), + [sym_pointer_declarator] = STATE(5640), + [sym_function_declarator] = STATE(5549), + [sym_array_declarator] = STATE(5640), + [sym_compound_statement] = STATE(36), + [sym_storage_class_specifier] = STATE(3706), + [sym_type_qualifier] = STATE(3706), + [sym__type_specifier] = STATE(3820), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), + [sym_attributed_statement] = STATE(36), + [sym_labeled_statement] = STATE(36), + [sym_expression_statement] = STATE(36), + [sym_if_statement] = STATE(36), + [sym_switch_statement] = STATE(36), + [sym_case_statement] = STATE(36), + [sym_while_statement] = STATE(36), + [sym_do_statement] = STATE(36), + [sym_for_statement] = STATE(36), + [sym_return_statement] = STATE(36), + [sym_break_statement] = STATE(36), + [sym_continue_statement] = STATE(36), + [sym_goto_statement] = STATE(36), + [sym__expression] = STATE(4169), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7079), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym__empty_declaration] = STATE(36), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym__class_name] = STATE(6623), + [sym_virtual] = STATE(3706), + [sym_explicit_function_specifier] = STATE(2259), + [sym_dependent_type] = STATE(3723), + [sym_template_declaration] = STATE(36), + [sym_template_instantiation] = STATE(36), + [sym_operator_cast] = STATE(5892), + [sym__constructor_specifiers] = STATE(2259), + [sym_operator_cast_definition] = STATE(36), + [sym_operator_cast_declaration] = STATE(36), + [sym_constructor_or_destructor_definition] = STATE(36), + [sym_reference_declarator] = STATE(5640), + [sym_structured_binding_declarator] = STATE(5640), + [sym_template_type] = STATE(3921), + [sym_template_function] = STATE(4066), + [sym_namespace_definition] = STATE(36), + [sym_namespace_alias_definition] = STATE(36), + [sym_using_declaration] = STATE(36), + [sym_alias_declaration] = STATE(36), + [sym_static_assert_declaration] = STATE(36), + [sym_concept_definition] = STATE(36), + [sym_for_range_loop] = STATE(36), + [sym_co_return_statement] = STATE(36), + [sym_co_yield_statement] = STATE(36), + [sym_throw_statement] = STATE(36), + [sym_try_statement] = STATE(36), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_destructor_name] = STATE(5640), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5143), + [sym_qualified_identifier] = STATE(3249), + [sym_qualified_type_identifier] = STATE(3915), + [sym_qualified_operator_cast_identifier] = STATE(5892), + [sym_operator_name] = STATE(5640), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_preproc_if_repeat1] = STATE(36), + [aux_sym__declaration_specifiers_repeat1] = STATE(2514), + [aux_sym_attributed_declarator_repeat1] = STATE(251), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [aux_sym_operator_cast_definition_repeat1] = STATE(2259), + [sym_identifier] = ACTIONS(331), + [aux_sym_preproc_include_token1] = ACTIONS(333), + [aux_sym_preproc_def_token1] = ACTIONS(335), + [aux_sym_preproc_if_token1] = ACTIONS(337), + [aux_sym_preproc_if_token2] = ACTIONS(339), + [aux_sym_preproc_ifdef_token1] = ACTIONS(341), + [aux_sym_preproc_ifdef_token2] = ACTIONS(341), + [aux_sym_preproc_else_token1] = ACTIONS(237), + [aux_sym_preproc_elif_token1] = ACTIONS(239), + [sym_preproc_directive] = ACTIONS(343), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -29682,230 +47103,242 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(249), - [anon_sym_typedef] = ACTIONS(251), - [anon_sym_extern] = ACTIONS(253), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(43), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(255), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(257), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(61), - [anon_sym_unsigned] = ACTIONS(61), - [anon_sym_long] = ACTIONS(61), - [anon_sym_short] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(63), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(259), - [anon_sym_switch] = ACTIONS(261), - [anon_sym_case] = ACTIONS(263), - [anon_sym_default] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_do] = ACTIONS(269), - [anon_sym_for] = ACTIONS(271), - [anon_sym_return] = ACTIONS(273), - [anon_sym_break] = ACTIONS(275), - [anon_sym_continue] = ACTIONS(277), - [anon_sym_goto] = ACTIONS(279), + [anon_sym_SEMI] = ACTIONS(345), + [anon_sym_typedef] = ACTIONS(347), + [anon_sym_extern] = ACTIONS(349), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(45), + [anon_sym___cdecl] = ACTIONS(47), + [anon_sym___clrcall] = ACTIONS(47), + [anon_sym___stdcall] = ACTIONS(47), + [anon_sym___fastcall] = ACTIONS(47), + [anon_sym___thiscall] = ACTIONS(47), + [anon_sym___vectorcall] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(351), + [anon_sym_LBRACK] = ACTIONS(51), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(353), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(355), + [anon_sym_switch] = ACTIONS(357), + [anon_sym_case] = ACTIONS(359), + [anon_sym_default] = ACTIONS(361), + [anon_sym_while] = ACTIONS(363), + [anon_sym_do] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_return] = ACTIONS(369), + [anon_sym_break] = ACTIONS(371), + [anon_sym_continue] = ACTIONS(373), + [anon_sym_goto] = ACTIONS(375), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(107), - [anon_sym_decltype] = ACTIONS(109), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_explicit] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(115), - [anon_sym_template] = ACTIONS(281), - [anon_sym_operator] = ACTIONS(119), - [anon_sym_try] = ACTIONS(283), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(285), - [anon_sym_namespace] = ACTIONS(287), - [anon_sym_using] = ACTIONS(289), - [anon_sym_static_assert] = ACTIONS(291), - [anon_sym_concept] = ACTIONS(293), - [anon_sym_co_return] = ACTIONS(295), - [anon_sym_co_yield] = ACTIONS(297), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(113), + [anon_sym_decltype] = ACTIONS(115), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_explicit] = ACTIONS(119), + [anon_sym_typename] = ACTIONS(121), + [anon_sym_template] = ACTIONS(377), + [anon_sym_operator] = ACTIONS(125), + [anon_sym_try] = ACTIONS(379), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(381), + [anon_sym_namespace] = ACTIONS(383), + [anon_sym_using] = ACTIONS(385), + [anon_sym_static_assert] = ACTIONS(387), + [anon_sym_concept] = ACTIONS(389), + [anon_sym_co_return] = ACTIONS(391), + [anon_sym_co_yield] = ACTIONS(393), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, - [25] = { - [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(6588), - [sym_preproc_elif] = STATE(6588), - [sym_function_definition] = STATE(23), - [sym_declaration] = STATE(23), - [sym_type_definition] = STATE(23), - [sym__declaration_modifiers] = STATE(3225), - [sym__declaration_specifiers] = STATE(3935), - [sym_linkage_specification] = STATE(23), - [sym_attribute_specifier] = STATE(3225), - [sym_attribute_declaration] = STATE(1136), - [sym_ms_declspec_modifier] = STATE(3225), - [sym_ms_based_modifier] = STATE(6104), - [sym_ms_call_modifier] = STATE(2012), - [sym__declarator] = STATE(5113), - [sym_parenthesized_declarator] = STATE(4918), - [sym_attributed_declarator] = STATE(4918), - [sym_pointer_declarator] = STATE(4918), - [sym_function_declarator] = STATE(4824), - [sym_array_declarator] = STATE(4918), - [sym_compound_statement] = STATE(23), - [sym_storage_class_specifier] = STATE(3225), - [sym_type_qualifier] = STATE(3225), - [sym__type_specifier] = STATE(3297), - [sym_sized_type_specifier] = STATE(3232), - [sym_enum_specifier] = STATE(3232), - [sym_struct_specifier] = STATE(3232), - [sym_union_specifier] = STATE(3232), - [sym_attributed_statement] = STATE(23), - [sym_labeled_statement] = STATE(23), - [sym_expression_statement] = STATE(23), - [sym_if_statement] = STATE(23), - [sym_switch_statement] = STATE(23), - [sym_case_statement] = STATE(23), - [sym_while_statement] = STATE(23), - [sym_do_statement] = STATE(23), - [sym_for_statement] = STATE(23), - [sym_return_statement] = STATE(23), - [sym_break_statement] = STATE(23), - [sym_continue_statement] = STATE(23), - [sym_goto_statement] = STATE(23), - [sym__expression] = STATE(3497), - [sym_comma_expression] = STATE(6497), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym__empty_declaration] = STATE(23), - [sym_placeholder_type_specifier] = STATE(3232), - [sym_decltype_auto] = STATE(3279), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3232), - [sym__class_name] = STATE(5753), - [sym_virtual] = STATE(3225), - [sym_explicit_function_specifier] = STATE(1962), - [sym_dependent_type] = STATE(3232), - [sym_template_declaration] = STATE(23), - [sym_template_instantiation] = STATE(23), - [sym_operator_cast] = STATE(5146), - [sym__constructor_specifiers] = STATE(1962), - [sym_operator_cast_definition] = STATE(23), - [sym_operator_cast_declaration] = STATE(23), - [sym_constructor_or_destructor_definition] = STATE(23), - [sym_reference_declarator] = STATE(4918), - [sym_structured_binding_declarator] = STATE(4918), - [sym_template_type] = STATE(3608), - [sym_template_function] = STATE(3494), - [sym_namespace_definition] = STATE(23), - [sym_namespace_alias_definition] = STATE(23), - [sym_using_declaration] = STATE(23), - [sym_alias_declaration] = STATE(23), - [sym_static_assert_declaration] = STATE(23), - [sym_concept_definition] = STATE(23), - [sym_for_range_loop] = STATE(23), - [sym_co_return_statement] = STATE(23), - [sym_co_yield_statement] = STATE(23), - [sym_throw_statement] = STATE(23), - [sym_try_statement] = STATE(23), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_destructor_name] = STATE(4918), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4460), - [sym_qualified_identifier] = STATE(2732), - [sym_qualified_type_identifier] = STATE(3593), - [sym_qualified_operator_cast_identifier] = STATE(5146), - [sym_operator_name] = STATE(4918), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_translation_unit_repeat1] = STATE(23), - [aux_sym__declaration_specifiers_repeat1] = STATE(2179), - [aux_sym_attributed_declarator_repeat1] = STATE(253), - [aux_sym_sized_type_specifier_repeat1] = STATE(3171), - [aux_sym_operator_cast_definition_repeat1] = STATE(1962), - [sym_identifier] = ACTIONS(231), - [aux_sym_preproc_include_token1] = ACTIONS(233), - [aux_sym_preproc_def_token1] = ACTIONS(235), - [aux_sym_preproc_if_token1] = ACTIONS(237), - [aux_sym_preproc_if_token2] = ACTIONS(327), - [aux_sym_preproc_ifdef_token1] = ACTIONS(241), - [aux_sym_preproc_ifdef_token2] = ACTIONS(241), - [aux_sym_preproc_else_token1] = ACTIONS(243), - [aux_sym_preproc_elif_token1] = ACTIONS(245), - [sym_preproc_directive] = ACTIONS(247), + [23] = { + [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(7247), + [sym_preproc_elif] = STATE(7247), + [sym_function_definition] = STATE(30), + [sym_declaration] = STATE(30), + [sym_type_definition] = STATE(30), + [sym__declaration_modifiers] = STATE(3706), + [sym__declaration_specifiers] = STATE(4664), + [sym_linkage_specification] = STATE(30), + [sym_attribute_specifier] = STATE(3706), + [sym_attribute_declaration] = STATE(1427), + [sym_ms_declspec_modifier] = STATE(3706), + [sym_ms_based_modifier] = STATE(7654), + [sym_ms_call_modifier] = STATE(2402), + [sym__declarator] = STATE(5881), + [sym_parenthesized_declarator] = STATE(5640), + [sym_attributed_declarator] = STATE(5640), + [sym_pointer_declarator] = STATE(5640), + [sym_function_declarator] = STATE(5549), + [sym_array_declarator] = STATE(5640), + [sym_compound_statement] = STATE(30), + [sym_storage_class_specifier] = STATE(3706), + [sym_type_qualifier] = STATE(3706), + [sym__type_specifier] = STATE(3820), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), + [sym_attributed_statement] = STATE(30), + [sym_labeled_statement] = STATE(30), + [sym_expression_statement] = STATE(30), + [sym_if_statement] = STATE(30), + [sym_switch_statement] = STATE(30), + [sym_case_statement] = STATE(30), + [sym_while_statement] = STATE(30), + [sym_do_statement] = STATE(30), + [sym_for_statement] = STATE(30), + [sym_return_statement] = STATE(30), + [sym_break_statement] = STATE(30), + [sym_continue_statement] = STATE(30), + [sym_goto_statement] = STATE(30), + [sym__expression] = STATE(4169), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7079), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym__empty_declaration] = STATE(30), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym__class_name] = STATE(6623), + [sym_virtual] = STATE(3706), + [sym_explicit_function_specifier] = STATE(2259), + [sym_dependent_type] = STATE(3723), + [sym_template_declaration] = STATE(30), + [sym_template_instantiation] = STATE(30), + [sym_operator_cast] = STATE(5892), + [sym__constructor_specifiers] = STATE(2259), + [sym_operator_cast_definition] = STATE(30), + [sym_operator_cast_declaration] = STATE(30), + [sym_constructor_or_destructor_definition] = STATE(30), + [sym_reference_declarator] = STATE(5640), + [sym_structured_binding_declarator] = STATE(5640), + [sym_template_type] = STATE(3921), + [sym_template_function] = STATE(4066), + [sym_namespace_definition] = STATE(30), + [sym_namespace_alias_definition] = STATE(30), + [sym_using_declaration] = STATE(30), + [sym_alias_declaration] = STATE(30), + [sym_static_assert_declaration] = STATE(30), + [sym_concept_definition] = STATE(30), + [sym_for_range_loop] = STATE(30), + [sym_co_return_statement] = STATE(30), + [sym_co_yield_statement] = STATE(30), + [sym_throw_statement] = STATE(30), + [sym_try_statement] = STATE(30), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_destructor_name] = STATE(5640), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5143), + [sym_qualified_identifier] = STATE(3249), + [sym_qualified_type_identifier] = STATE(3915), + [sym_qualified_operator_cast_identifier] = STATE(5892), + [sym_operator_name] = STATE(5640), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_preproc_if_repeat1] = STATE(30), + [aux_sym__declaration_specifiers_repeat1] = STATE(2514), + [aux_sym_attributed_declarator_repeat1] = STATE(251), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [aux_sym_operator_cast_definition_repeat1] = STATE(2259), + [sym_identifier] = ACTIONS(331), + [aux_sym_preproc_include_token1] = ACTIONS(333), + [aux_sym_preproc_def_token1] = ACTIONS(335), + [aux_sym_preproc_if_token1] = ACTIONS(337), + [aux_sym_preproc_if_token2] = ACTIONS(395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(341), + [aux_sym_preproc_ifdef_token2] = ACTIONS(341), + [aux_sym_preproc_else_token1] = ACTIONS(237), + [aux_sym_preproc_elif_token1] = ACTIONS(239), + [sym_preproc_directive] = ACTIONS(343), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -29914,230 +47347,242 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(249), - [anon_sym_typedef] = ACTIONS(251), - [anon_sym_extern] = ACTIONS(253), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(43), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(255), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(257), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(61), - [anon_sym_unsigned] = ACTIONS(61), - [anon_sym_long] = ACTIONS(61), - [anon_sym_short] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(63), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(259), - [anon_sym_switch] = ACTIONS(261), - [anon_sym_case] = ACTIONS(263), - [anon_sym_default] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_do] = ACTIONS(269), - [anon_sym_for] = ACTIONS(271), - [anon_sym_return] = ACTIONS(273), - [anon_sym_break] = ACTIONS(275), - [anon_sym_continue] = ACTIONS(277), - [anon_sym_goto] = ACTIONS(279), + [anon_sym_SEMI] = ACTIONS(345), + [anon_sym_typedef] = ACTIONS(347), + [anon_sym_extern] = ACTIONS(349), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(45), + [anon_sym___cdecl] = ACTIONS(47), + [anon_sym___clrcall] = ACTIONS(47), + [anon_sym___stdcall] = ACTIONS(47), + [anon_sym___fastcall] = ACTIONS(47), + [anon_sym___thiscall] = ACTIONS(47), + [anon_sym___vectorcall] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(351), + [anon_sym_LBRACK] = ACTIONS(51), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(353), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(355), + [anon_sym_switch] = ACTIONS(357), + [anon_sym_case] = ACTIONS(359), + [anon_sym_default] = ACTIONS(361), + [anon_sym_while] = ACTIONS(363), + [anon_sym_do] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_return] = ACTIONS(369), + [anon_sym_break] = ACTIONS(371), + [anon_sym_continue] = ACTIONS(373), + [anon_sym_goto] = ACTIONS(375), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(107), - [anon_sym_decltype] = ACTIONS(109), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_explicit] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(115), - [anon_sym_template] = ACTIONS(281), - [anon_sym_operator] = ACTIONS(119), - [anon_sym_try] = ACTIONS(283), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(285), - [anon_sym_namespace] = ACTIONS(287), - [anon_sym_using] = ACTIONS(289), - [anon_sym_static_assert] = ACTIONS(291), - [anon_sym_concept] = ACTIONS(293), - [anon_sym_co_return] = ACTIONS(295), - [anon_sym_co_yield] = ACTIONS(297), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(113), + [anon_sym_decltype] = ACTIONS(115), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_explicit] = ACTIONS(119), + [anon_sym_typename] = ACTIONS(121), + [anon_sym_template] = ACTIONS(377), + [anon_sym_operator] = ACTIONS(125), + [anon_sym_try] = ACTIONS(379), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(381), + [anon_sym_namespace] = ACTIONS(383), + [anon_sym_using] = ACTIONS(385), + [anon_sym_static_assert] = ACTIONS(387), + [anon_sym_concept] = ACTIONS(389), + [anon_sym_co_return] = ACTIONS(391), + [anon_sym_co_yield] = ACTIONS(393), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, - [26] = { - [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(6176), - [sym_preproc_elif] = STATE(6176), - [sym_function_definition] = STATE(28), - [sym_declaration] = STATE(28), - [sym_type_definition] = STATE(28), - [sym__declaration_modifiers] = STATE(3225), - [sym__declaration_specifiers] = STATE(3935), - [sym_linkage_specification] = STATE(28), - [sym_attribute_specifier] = STATE(3225), - [sym_attribute_declaration] = STATE(1136), - [sym_ms_declspec_modifier] = STATE(3225), - [sym_ms_based_modifier] = STATE(6104), - [sym_ms_call_modifier] = STATE(2012), - [sym__declarator] = STATE(5113), - [sym_parenthesized_declarator] = STATE(4918), - [sym_attributed_declarator] = STATE(4918), - [sym_pointer_declarator] = STATE(4918), - [sym_function_declarator] = STATE(4824), - [sym_array_declarator] = STATE(4918), - [sym_compound_statement] = STATE(28), - [sym_storage_class_specifier] = STATE(3225), - [sym_type_qualifier] = STATE(3225), - [sym__type_specifier] = STATE(3297), - [sym_sized_type_specifier] = STATE(3232), - [sym_enum_specifier] = STATE(3232), - [sym_struct_specifier] = STATE(3232), - [sym_union_specifier] = STATE(3232), - [sym_attributed_statement] = STATE(28), - [sym_labeled_statement] = STATE(28), - [sym_expression_statement] = STATE(28), - [sym_if_statement] = STATE(28), - [sym_switch_statement] = STATE(28), - [sym_case_statement] = STATE(28), - [sym_while_statement] = STATE(28), - [sym_do_statement] = STATE(28), - [sym_for_statement] = STATE(28), - [sym_return_statement] = STATE(28), - [sym_break_statement] = STATE(28), - [sym_continue_statement] = STATE(28), - [sym_goto_statement] = STATE(28), - [sym__expression] = STATE(3497), - [sym_comma_expression] = STATE(6497), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym__empty_declaration] = STATE(28), - [sym_placeholder_type_specifier] = STATE(3232), - [sym_decltype_auto] = STATE(3279), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3232), - [sym__class_name] = STATE(5753), - [sym_virtual] = STATE(3225), - [sym_explicit_function_specifier] = STATE(1962), - [sym_dependent_type] = STATE(3232), - [sym_template_declaration] = STATE(28), - [sym_template_instantiation] = STATE(28), - [sym_operator_cast] = STATE(5146), - [sym__constructor_specifiers] = STATE(1962), - [sym_operator_cast_definition] = STATE(28), - [sym_operator_cast_declaration] = STATE(28), - [sym_constructor_or_destructor_definition] = STATE(28), - [sym_reference_declarator] = STATE(4918), - [sym_structured_binding_declarator] = STATE(4918), - [sym_template_type] = STATE(3608), - [sym_template_function] = STATE(3494), - [sym_namespace_definition] = STATE(28), - [sym_namespace_alias_definition] = STATE(28), - [sym_using_declaration] = STATE(28), - [sym_alias_declaration] = STATE(28), - [sym_static_assert_declaration] = STATE(28), - [sym_concept_definition] = STATE(28), - [sym_for_range_loop] = STATE(28), - [sym_co_return_statement] = STATE(28), - [sym_co_yield_statement] = STATE(28), - [sym_throw_statement] = STATE(28), - [sym_try_statement] = STATE(28), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_destructor_name] = STATE(4918), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4460), - [sym_qualified_identifier] = STATE(2732), - [sym_qualified_type_identifier] = STATE(3593), - [sym_qualified_operator_cast_identifier] = STATE(5146), - [sym_operator_name] = STATE(4918), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_translation_unit_repeat1] = STATE(28), - [aux_sym__declaration_specifiers_repeat1] = STATE(2179), - [aux_sym_attributed_declarator_repeat1] = STATE(253), - [aux_sym_sized_type_specifier_repeat1] = STATE(3171), - [aux_sym_operator_cast_definition_repeat1] = STATE(1962), - [sym_identifier] = ACTIONS(231), - [aux_sym_preproc_include_token1] = ACTIONS(233), - [aux_sym_preproc_def_token1] = ACTIONS(235), - [aux_sym_preproc_if_token1] = ACTIONS(237), - [aux_sym_preproc_if_token2] = ACTIONS(329), - [aux_sym_preproc_ifdef_token1] = ACTIONS(241), - [aux_sym_preproc_ifdef_token2] = ACTIONS(241), - [aux_sym_preproc_else_token1] = ACTIONS(243), - [aux_sym_preproc_elif_token1] = ACTIONS(245), - [sym_preproc_directive] = ACTIONS(247), + [24] = { + [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(7611), + [sym_preproc_elif] = STATE(7611), + [sym_function_definition] = STATE(27), + [sym_declaration] = STATE(27), + [sym_type_definition] = STATE(27), + [sym__declaration_modifiers] = STATE(3706), + [sym__declaration_specifiers] = STATE(4664), + [sym_linkage_specification] = STATE(27), + [sym_attribute_specifier] = STATE(3706), + [sym_attribute_declaration] = STATE(1427), + [sym_ms_declspec_modifier] = STATE(3706), + [sym_ms_based_modifier] = STATE(7654), + [sym_ms_call_modifier] = STATE(2402), + [sym__declarator] = STATE(5881), + [sym_parenthesized_declarator] = STATE(5640), + [sym_attributed_declarator] = STATE(5640), + [sym_pointer_declarator] = STATE(5640), + [sym_function_declarator] = STATE(5549), + [sym_array_declarator] = STATE(5640), + [sym_compound_statement] = STATE(27), + [sym_storage_class_specifier] = STATE(3706), + [sym_type_qualifier] = STATE(3706), + [sym__type_specifier] = STATE(3820), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), + [sym_attributed_statement] = STATE(27), + [sym_labeled_statement] = STATE(27), + [sym_expression_statement] = STATE(27), + [sym_if_statement] = STATE(27), + [sym_switch_statement] = STATE(27), + [sym_case_statement] = STATE(27), + [sym_while_statement] = STATE(27), + [sym_do_statement] = STATE(27), + [sym_for_statement] = STATE(27), + [sym_return_statement] = STATE(27), + [sym_break_statement] = STATE(27), + [sym_continue_statement] = STATE(27), + [sym_goto_statement] = STATE(27), + [sym__expression] = STATE(4169), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7079), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym__empty_declaration] = STATE(27), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym__class_name] = STATE(6623), + [sym_virtual] = STATE(3706), + [sym_explicit_function_specifier] = STATE(2259), + [sym_dependent_type] = STATE(3723), + [sym_template_declaration] = STATE(27), + [sym_template_instantiation] = STATE(27), + [sym_operator_cast] = STATE(5892), + [sym__constructor_specifiers] = STATE(2259), + [sym_operator_cast_definition] = STATE(27), + [sym_operator_cast_declaration] = STATE(27), + [sym_constructor_or_destructor_definition] = STATE(27), + [sym_reference_declarator] = STATE(5640), + [sym_structured_binding_declarator] = STATE(5640), + [sym_template_type] = STATE(3921), + [sym_template_function] = STATE(4066), + [sym_namespace_definition] = STATE(27), + [sym_namespace_alias_definition] = STATE(27), + [sym_using_declaration] = STATE(27), + [sym_alias_declaration] = STATE(27), + [sym_static_assert_declaration] = STATE(27), + [sym_concept_definition] = STATE(27), + [sym_for_range_loop] = STATE(27), + [sym_co_return_statement] = STATE(27), + [sym_co_yield_statement] = STATE(27), + [sym_throw_statement] = STATE(27), + [sym_try_statement] = STATE(27), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_destructor_name] = STATE(5640), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5143), + [sym_qualified_identifier] = STATE(3249), + [sym_qualified_type_identifier] = STATE(3915), + [sym_qualified_operator_cast_identifier] = STATE(5892), + [sym_operator_name] = STATE(5640), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_preproc_if_repeat1] = STATE(27), + [aux_sym__declaration_specifiers_repeat1] = STATE(2514), + [aux_sym_attributed_declarator_repeat1] = STATE(251), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [aux_sym_operator_cast_definition_repeat1] = STATE(2259), + [sym_identifier] = ACTIONS(331), + [aux_sym_preproc_include_token1] = ACTIONS(333), + [aux_sym_preproc_def_token1] = ACTIONS(335), + [aux_sym_preproc_if_token1] = ACTIONS(337), + [aux_sym_preproc_if_token2] = ACTIONS(397), + [aux_sym_preproc_ifdef_token1] = ACTIONS(341), + [aux_sym_preproc_ifdef_token2] = ACTIONS(341), + [aux_sym_preproc_else_token1] = ACTIONS(237), + [aux_sym_preproc_elif_token1] = ACTIONS(239), + [sym_preproc_directive] = ACTIONS(343), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -30146,230 +47591,242 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(249), - [anon_sym_typedef] = ACTIONS(251), - [anon_sym_extern] = ACTIONS(253), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(43), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(255), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(257), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(61), - [anon_sym_unsigned] = ACTIONS(61), - [anon_sym_long] = ACTIONS(61), - [anon_sym_short] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(63), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(259), - [anon_sym_switch] = ACTIONS(261), - [anon_sym_case] = ACTIONS(263), - [anon_sym_default] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_do] = ACTIONS(269), - [anon_sym_for] = ACTIONS(271), - [anon_sym_return] = ACTIONS(273), - [anon_sym_break] = ACTIONS(275), - [anon_sym_continue] = ACTIONS(277), - [anon_sym_goto] = ACTIONS(279), + [anon_sym_SEMI] = ACTIONS(345), + [anon_sym_typedef] = ACTIONS(347), + [anon_sym_extern] = ACTIONS(349), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(45), + [anon_sym___cdecl] = ACTIONS(47), + [anon_sym___clrcall] = ACTIONS(47), + [anon_sym___stdcall] = ACTIONS(47), + [anon_sym___fastcall] = ACTIONS(47), + [anon_sym___thiscall] = ACTIONS(47), + [anon_sym___vectorcall] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(351), + [anon_sym_LBRACK] = ACTIONS(51), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(353), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(355), + [anon_sym_switch] = ACTIONS(357), + [anon_sym_case] = ACTIONS(359), + [anon_sym_default] = ACTIONS(361), + [anon_sym_while] = ACTIONS(363), + [anon_sym_do] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_return] = ACTIONS(369), + [anon_sym_break] = ACTIONS(371), + [anon_sym_continue] = ACTIONS(373), + [anon_sym_goto] = ACTIONS(375), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(107), - [anon_sym_decltype] = ACTIONS(109), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_explicit] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(115), - [anon_sym_template] = ACTIONS(281), - [anon_sym_operator] = ACTIONS(119), - [anon_sym_try] = ACTIONS(283), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(285), - [anon_sym_namespace] = ACTIONS(287), - [anon_sym_using] = ACTIONS(289), - [anon_sym_static_assert] = ACTIONS(291), - [anon_sym_concept] = ACTIONS(293), - [anon_sym_co_return] = ACTIONS(295), - [anon_sym_co_yield] = ACTIONS(297), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(113), + [anon_sym_decltype] = ACTIONS(115), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_explicit] = ACTIONS(119), + [anon_sym_typename] = ACTIONS(121), + [anon_sym_template] = ACTIONS(377), + [anon_sym_operator] = ACTIONS(125), + [anon_sym_try] = ACTIONS(379), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(381), + [anon_sym_namespace] = ACTIONS(383), + [anon_sym_using] = ACTIONS(385), + [anon_sym_static_assert] = ACTIONS(387), + [anon_sym_concept] = ACTIONS(389), + [anon_sym_co_return] = ACTIONS(391), + [anon_sym_co_yield] = ACTIONS(393), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, - [27] = { - [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(6199), - [sym_preproc_elif] = STATE(6199), - [sym_function_definition] = STATE(28), - [sym_declaration] = STATE(28), - [sym_type_definition] = STATE(28), - [sym__declaration_modifiers] = STATE(3225), - [sym__declaration_specifiers] = STATE(3935), - [sym_linkage_specification] = STATE(28), - [sym_attribute_specifier] = STATE(3225), - [sym_attribute_declaration] = STATE(1136), - [sym_ms_declspec_modifier] = STATE(3225), - [sym_ms_based_modifier] = STATE(6104), - [sym_ms_call_modifier] = STATE(2012), - [sym__declarator] = STATE(5113), - [sym_parenthesized_declarator] = STATE(4918), - [sym_attributed_declarator] = STATE(4918), - [sym_pointer_declarator] = STATE(4918), - [sym_function_declarator] = STATE(4824), - [sym_array_declarator] = STATE(4918), - [sym_compound_statement] = STATE(28), - [sym_storage_class_specifier] = STATE(3225), - [sym_type_qualifier] = STATE(3225), - [sym__type_specifier] = STATE(3297), - [sym_sized_type_specifier] = STATE(3232), - [sym_enum_specifier] = STATE(3232), - [sym_struct_specifier] = STATE(3232), - [sym_union_specifier] = STATE(3232), - [sym_attributed_statement] = STATE(28), - [sym_labeled_statement] = STATE(28), - [sym_expression_statement] = STATE(28), - [sym_if_statement] = STATE(28), - [sym_switch_statement] = STATE(28), - [sym_case_statement] = STATE(28), - [sym_while_statement] = STATE(28), - [sym_do_statement] = STATE(28), - [sym_for_statement] = STATE(28), - [sym_return_statement] = STATE(28), - [sym_break_statement] = STATE(28), - [sym_continue_statement] = STATE(28), - [sym_goto_statement] = STATE(28), - [sym__expression] = STATE(3497), - [sym_comma_expression] = STATE(6497), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym__empty_declaration] = STATE(28), - [sym_placeholder_type_specifier] = STATE(3232), - [sym_decltype_auto] = STATE(3279), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3232), - [sym__class_name] = STATE(5753), - [sym_virtual] = STATE(3225), - [sym_explicit_function_specifier] = STATE(1962), - [sym_dependent_type] = STATE(3232), - [sym_template_declaration] = STATE(28), - [sym_template_instantiation] = STATE(28), - [sym_operator_cast] = STATE(5146), - [sym__constructor_specifiers] = STATE(1962), - [sym_operator_cast_definition] = STATE(28), - [sym_operator_cast_declaration] = STATE(28), - [sym_constructor_or_destructor_definition] = STATE(28), - [sym_reference_declarator] = STATE(4918), - [sym_structured_binding_declarator] = STATE(4918), - [sym_template_type] = STATE(3608), - [sym_template_function] = STATE(3494), - [sym_namespace_definition] = STATE(28), - [sym_namespace_alias_definition] = STATE(28), - [sym_using_declaration] = STATE(28), - [sym_alias_declaration] = STATE(28), - [sym_static_assert_declaration] = STATE(28), - [sym_concept_definition] = STATE(28), - [sym_for_range_loop] = STATE(28), - [sym_co_return_statement] = STATE(28), - [sym_co_yield_statement] = STATE(28), - [sym_throw_statement] = STATE(28), - [sym_try_statement] = STATE(28), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_destructor_name] = STATE(4918), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4460), - [sym_qualified_identifier] = STATE(2732), - [sym_qualified_type_identifier] = STATE(3593), - [sym_qualified_operator_cast_identifier] = STATE(5146), - [sym_operator_name] = STATE(4918), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_translation_unit_repeat1] = STATE(28), - [aux_sym__declaration_specifiers_repeat1] = STATE(2179), - [aux_sym_attributed_declarator_repeat1] = STATE(253), - [aux_sym_sized_type_specifier_repeat1] = STATE(3171), - [aux_sym_operator_cast_definition_repeat1] = STATE(1962), - [sym_identifier] = ACTIONS(231), - [aux_sym_preproc_include_token1] = ACTIONS(233), - [aux_sym_preproc_def_token1] = ACTIONS(235), - [aux_sym_preproc_if_token1] = ACTIONS(237), - [aux_sym_preproc_if_token2] = ACTIONS(331), - [aux_sym_preproc_ifdef_token1] = ACTIONS(241), - [aux_sym_preproc_ifdef_token2] = ACTIONS(241), - [aux_sym_preproc_else_token1] = ACTIONS(243), - [aux_sym_preproc_elif_token1] = ACTIONS(245), - [sym_preproc_directive] = ACTIONS(247), + [25] = { + [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(7619), + [sym_preproc_elif] = STATE(7619), + [sym_function_definition] = STATE(37), + [sym_declaration] = STATE(37), + [sym_type_definition] = STATE(37), + [sym__declaration_modifiers] = STATE(3706), + [sym__declaration_specifiers] = STATE(4664), + [sym_linkage_specification] = STATE(37), + [sym_attribute_specifier] = STATE(3706), + [sym_attribute_declaration] = STATE(1427), + [sym_ms_declspec_modifier] = STATE(3706), + [sym_ms_based_modifier] = STATE(7654), + [sym_ms_call_modifier] = STATE(2402), + [sym__declarator] = STATE(5881), + [sym_parenthesized_declarator] = STATE(5640), + [sym_attributed_declarator] = STATE(5640), + [sym_pointer_declarator] = STATE(5640), + [sym_function_declarator] = STATE(5549), + [sym_array_declarator] = STATE(5640), + [sym_compound_statement] = STATE(37), + [sym_storage_class_specifier] = STATE(3706), + [sym_type_qualifier] = STATE(3706), + [sym__type_specifier] = STATE(3820), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), + [sym_attributed_statement] = STATE(37), + [sym_labeled_statement] = STATE(37), + [sym_expression_statement] = STATE(37), + [sym_if_statement] = STATE(37), + [sym_switch_statement] = STATE(37), + [sym_case_statement] = STATE(37), + [sym_while_statement] = STATE(37), + [sym_do_statement] = STATE(37), + [sym_for_statement] = STATE(37), + [sym_return_statement] = STATE(37), + [sym_break_statement] = STATE(37), + [sym_continue_statement] = STATE(37), + [sym_goto_statement] = STATE(37), + [sym__expression] = STATE(4169), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7079), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym__empty_declaration] = STATE(37), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym__class_name] = STATE(6623), + [sym_virtual] = STATE(3706), + [sym_explicit_function_specifier] = STATE(2259), + [sym_dependent_type] = STATE(3723), + [sym_template_declaration] = STATE(37), + [sym_template_instantiation] = STATE(37), + [sym_operator_cast] = STATE(5892), + [sym__constructor_specifiers] = STATE(2259), + [sym_operator_cast_definition] = STATE(37), + [sym_operator_cast_declaration] = STATE(37), + [sym_constructor_or_destructor_definition] = STATE(37), + [sym_reference_declarator] = STATE(5640), + [sym_structured_binding_declarator] = STATE(5640), + [sym_template_type] = STATE(3921), + [sym_template_function] = STATE(4066), + [sym_namespace_definition] = STATE(37), + [sym_namespace_alias_definition] = STATE(37), + [sym_using_declaration] = STATE(37), + [sym_alias_declaration] = STATE(37), + [sym_static_assert_declaration] = STATE(37), + [sym_concept_definition] = STATE(37), + [sym_for_range_loop] = STATE(37), + [sym_co_return_statement] = STATE(37), + [sym_co_yield_statement] = STATE(37), + [sym_throw_statement] = STATE(37), + [sym_try_statement] = STATE(37), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_destructor_name] = STATE(5640), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5143), + [sym_qualified_identifier] = STATE(3249), + [sym_qualified_type_identifier] = STATE(3915), + [sym_qualified_operator_cast_identifier] = STATE(5892), + [sym_operator_name] = STATE(5640), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_preproc_if_repeat1] = STATE(37), + [aux_sym__declaration_specifiers_repeat1] = STATE(2514), + [aux_sym_attributed_declarator_repeat1] = STATE(251), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [aux_sym_operator_cast_definition_repeat1] = STATE(2259), + [sym_identifier] = ACTIONS(331), + [aux_sym_preproc_include_token1] = ACTIONS(333), + [aux_sym_preproc_def_token1] = ACTIONS(335), + [aux_sym_preproc_if_token1] = ACTIONS(337), + [aux_sym_preproc_if_token2] = ACTIONS(399), + [aux_sym_preproc_ifdef_token1] = ACTIONS(341), + [aux_sym_preproc_ifdef_token2] = ACTIONS(341), + [aux_sym_preproc_else_token1] = ACTIONS(237), + [aux_sym_preproc_elif_token1] = ACTIONS(239), + [sym_preproc_directive] = ACTIONS(343), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -30378,683 +47835,242 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(249), - [anon_sym_typedef] = ACTIONS(251), - [anon_sym_extern] = ACTIONS(253), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(43), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(255), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(257), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(61), - [anon_sym_unsigned] = ACTIONS(61), - [anon_sym_long] = ACTIONS(61), - [anon_sym_short] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(63), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(259), - [anon_sym_switch] = ACTIONS(261), - [anon_sym_case] = ACTIONS(263), - [anon_sym_default] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_do] = ACTIONS(269), - [anon_sym_for] = ACTIONS(271), - [anon_sym_return] = ACTIONS(273), - [anon_sym_break] = ACTIONS(275), - [anon_sym_continue] = ACTIONS(277), - [anon_sym_goto] = ACTIONS(279), + [anon_sym_SEMI] = ACTIONS(345), + [anon_sym_typedef] = ACTIONS(347), + [anon_sym_extern] = ACTIONS(349), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(45), + [anon_sym___cdecl] = ACTIONS(47), + [anon_sym___clrcall] = ACTIONS(47), + [anon_sym___stdcall] = ACTIONS(47), + [anon_sym___fastcall] = ACTIONS(47), + [anon_sym___thiscall] = ACTIONS(47), + [anon_sym___vectorcall] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(351), + [anon_sym_LBRACK] = ACTIONS(51), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(353), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(355), + [anon_sym_switch] = ACTIONS(357), + [anon_sym_case] = ACTIONS(359), + [anon_sym_default] = ACTIONS(361), + [anon_sym_while] = ACTIONS(363), + [anon_sym_do] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_return] = ACTIONS(369), + [anon_sym_break] = ACTIONS(371), + [anon_sym_continue] = ACTIONS(373), + [anon_sym_goto] = ACTIONS(375), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(107), - [anon_sym_decltype] = ACTIONS(109), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_explicit] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(115), - [anon_sym_template] = ACTIONS(281), - [anon_sym_operator] = ACTIONS(119), - [anon_sym_try] = ACTIONS(283), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(285), - [anon_sym_namespace] = ACTIONS(287), - [anon_sym_using] = ACTIONS(289), - [anon_sym_static_assert] = ACTIONS(291), - [anon_sym_concept] = ACTIONS(293), - [anon_sym_co_return] = ACTIONS(295), - [anon_sym_co_yield] = ACTIONS(297), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), - }, - [28] = { - [sym_preproc_include] = STATE(28), - [sym_preproc_def] = STATE(28), - [sym_preproc_function_def] = STATE(28), - [sym_preproc_call] = STATE(28), - [sym_preproc_if] = STATE(28), - [sym_preproc_ifdef] = STATE(28), - [sym_function_definition] = STATE(28), - [sym_declaration] = STATE(28), - [sym_type_definition] = STATE(28), - [sym__declaration_modifiers] = STATE(3225), - [sym__declaration_specifiers] = STATE(3935), - [sym_linkage_specification] = STATE(28), - [sym_attribute_specifier] = STATE(3225), - [sym_attribute_declaration] = STATE(1136), - [sym_ms_declspec_modifier] = STATE(3225), - [sym_ms_based_modifier] = STATE(6104), - [sym_ms_call_modifier] = STATE(2012), - [sym__declarator] = STATE(5113), - [sym_parenthesized_declarator] = STATE(4918), - [sym_attributed_declarator] = STATE(4918), - [sym_pointer_declarator] = STATE(4918), - [sym_function_declarator] = STATE(4824), - [sym_array_declarator] = STATE(4918), - [sym_compound_statement] = STATE(28), - [sym_storage_class_specifier] = STATE(3225), - [sym_type_qualifier] = STATE(3225), - [sym__type_specifier] = STATE(3297), - [sym_sized_type_specifier] = STATE(3232), - [sym_enum_specifier] = STATE(3232), - [sym_struct_specifier] = STATE(3232), - [sym_union_specifier] = STATE(3232), - [sym_attributed_statement] = STATE(28), - [sym_labeled_statement] = STATE(28), - [sym_expression_statement] = STATE(28), - [sym_if_statement] = STATE(28), - [sym_switch_statement] = STATE(28), - [sym_case_statement] = STATE(28), - [sym_while_statement] = STATE(28), - [sym_do_statement] = STATE(28), - [sym_for_statement] = STATE(28), - [sym_return_statement] = STATE(28), - [sym_break_statement] = STATE(28), - [sym_continue_statement] = STATE(28), - [sym_goto_statement] = STATE(28), - [sym__expression] = STATE(3497), - [sym_comma_expression] = STATE(6497), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym__empty_declaration] = STATE(28), - [sym_placeholder_type_specifier] = STATE(3232), - [sym_decltype_auto] = STATE(3279), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3232), - [sym__class_name] = STATE(5753), - [sym_virtual] = STATE(3225), - [sym_explicit_function_specifier] = STATE(1962), - [sym_dependent_type] = STATE(3232), - [sym_template_declaration] = STATE(28), - [sym_template_instantiation] = STATE(28), - [sym_operator_cast] = STATE(5146), - [sym__constructor_specifiers] = STATE(1962), - [sym_operator_cast_definition] = STATE(28), - [sym_operator_cast_declaration] = STATE(28), - [sym_constructor_or_destructor_definition] = STATE(28), - [sym_reference_declarator] = STATE(4918), - [sym_structured_binding_declarator] = STATE(4918), - [sym_template_type] = STATE(3608), - [sym_template_function] = STATE(3494), - [sym_namespace_definition] = STATE(28), - [sym_namespace_alias_definition] = STATE(28), - [sym_using_declaration] = STATE(28), - [sym_alias_declaration] = STATE(28), - [sym_static_assert_declaration] = STATE(28), - [sym_concept_definition] = STATE(28), - [sym_for_range_loop] = STATE(28), - [sym_co_return_statement] = STATE(28), - [sym_co_yield_statement] = STATE(28), - [sym_throw_statement] = STATE(28), - [sym_try_statement] = STATE(28), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_destructor_name] = STATE(4918), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4460), - [sym_qualified_identifier] = STATE(2732), - [sym_qualified_type_identifier] = STATE(3593), - [sym_qualified_operator_cast_identifier] = STATE(5146), - [sym_operator_name] = STATE(4918), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_translation_unit_repeat1] = STATE(28), - [aux_sym__declaration_specifiers_repeat1] = STATE(2179), - [aux_sym_attributed_declarator_repeat1] = STATE(253), - [aux_sym_sized_type_specifier_repeat1] = STATE(3171), - [aux_sym_operator_cast_definition_repeat1] = STATE(1962), - [sym_identifier] = ACTIONS(333), - [aux_sym_preproc_include_token1] = ACTIONS(336), - [aux_sym_preproc_def_token1] = ACTIONS(339), - [aux_sym_preproc_if_token1] = ACTIONS(342), - [aux_sym_preproc_if_token2] = ACTIONS(345), - [aux_sym_preproc_ifdef_token1] = ACTIONS(347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(347), - [aux_sym_preproc_else_token1] = ACTIONS(345), - [aux_sym_preproc_elif_token1] = ACTIONS(345), - [sym_preproc_directive] = ACTIONS(350), - [anon_sym_LPAREN2] = ACTIONS(353), - [anon_sym_BANG] = ACTIONS(356), - [anon_sym_TILDE] = ACTIONS(359), - [anon_sym_DASH] = ACTIONS(362), - [anon_sym_PLUS] = ACTIONS(362), - [anon_sym_STAR] = ACTIONS(365), - [anon_sym_AMP_AMP] = ACTIONS(368), - [anon_sym_AMP] = ACTIONS(371), - [anon_sym_SEMI] = ACTIONS(374), - [anon_sym_typedef] = ACTIONS(377), - [anon_sym_extern] = ACTIONS(380), - [anon_sym___attribute__] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(386), - [anon_sym_LBRACK_LBRACK] = ACTIONS(389), - [anon_sym___declspec] = ACTIONS(392), - [anon_sym___based] = ACTIONS(395), - [anon_sym___cdecl] = ACTIONS(398), - [anon_sym___clrcall] = ACTIONS(398), - [anon_sym___stdcall] = ACTIONS(398), - [anon_sym___fastcall] = ACTIONS(398), - [anon_sym___thiscall] = ACTIONS(398), - [anon_sym___vectorcall] = ACTIONS(398), - [anon_sym_LBRACE] = ACTIONS(401), - [anon_sym_LBRACK] = ACTIONS(404), - [anon_sym_static] = ACTIONS(407), - [anon_sym_register] = ACTIONS(407), - [anon_sym_inline] = ACTIONS(410), - [anon_sym_thread_local] = ACTIONS(407), - [anon_sym_const] = ACTIONS(413), - [anon_sym_volatile] = ACTIONS(413), - [anon_sym_restrict] = ACTIONS(413), - [anon_sym__Atomic] = ACTIONS(413), - [anon_sym_mutable] = ACTIONS(413), - [anon_sym_constexpr] = ACTIONS(413), - [anon_sym_constinit] = ACTIONS(413), - [anon_sym_consteval] = ACTIONS(413), - [anon_sym_signed] = ACTIONS(416), - [anon_sym_unsigned] = ACTIONS(416), - [anon_sym_long] = ACTIONS(416), - [anon_sym_short] = ACTIONS(416), - [sym_primitive_type] = ACTIONS(419), - [anon_sym_enum] = ACTIONS(422), - [anon_sym_class] = ACTIONS(425), - [anon_sym_struct] = ACTIONS(428), - [anon_sym_union] = ACTIONS(431), - [anon_sym_if] = ACTIONS(434), - [anon_sym_switch] = ACTIONS(437), - [anon_sym_case] = ACTIONS(440), - [anon_sym_default] = ACTIONS(443), - [anon_sym_while] = ACTIONS(446), - [anon_sym_do] = ACTIONS(449), - [anon_sym_for] = ACTIONS(452), - [anon_sym_return] = ACTIONS(455), - [anon_sym_break] = ACTIONS(458), - [anon_sym_continue] = ACTIONS(461), - [anon_sym_goto] = ACTIONS(464), - [anon_sym_not] = ACTIONS(362), - [anon_sym_compl] = ACTIONS(362), - [anon_sym_DASH_DASH] = ACTIONS(467), - [anon_sym_PLUS_PLUS] = ACTIONS(467), - [anon_sym_sizeof] = ACTIONS(470), - [sym_number_literal] = ACTIONS(473), - [anon_sym_L_SQUOTE] = ACTIONS(476), - [anon_sym_u_SQUOTE] = ACTIONS(476), - [anon_sym_U_SQUOTE] = ACTIONS(476), - [anon_sym_u8_SQUOTE] = ACTIONS(476), - [anon_sym_SQUOTE] = ACTIONS(476), - [anon_sym_L_DQUOTE] = ACTIONS(479), - [anon_sym_u_DQUOTE] = ACTIONS(479), - [anon_sym_U_DQUOTE] = ACTIONS(479), - [anon_sym_u8_DQUOTE] = ACTIONS(479), - [anon_sym_DQUOTE] = ACTIONS(479), - [sym_true] = ACTIONS(482), - [sym_false] = ACTIONS(482), - [sym_null] = ACTIONS(482), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(485), - [anon_sym_decltype] = ACTIONS(488), - [anon_sym_virtual] = ACTIONS(491), - [anon_sym_explicit] = ACTIONS(494), - [anon_sym_typename] = ACTIONS(497), - [anon_sym_template] = ACTIONS(500), - [anon_sym_operator] = ACTIONS(503), - [anon_sym_try] = ACTIONS(506), - [anon_sym_delete] = ACTIONS(509), - [anon_sym_throw] = ACTIONS(512), - [anon_sym_namespace] = ACTIONS(515), - [anon_sym_using] = ACTIONS(518), - [anon_sym_static_assert] = ACTIONS(521), - [anon_sym_concept] = ACTIONS(524), - [anon_sym_co_return] = ACTIONS(527), - [anon_sym_co_yield] = ACTIONS(530), - [anon_sym_R_DQUOTE] = ACTIONS(533), - [anon_sym_LR_DQUOTE] = ACTIONS(533), - [anon_sym_uR_DQUOTE] = ACTIONS(533), - [anon_sym_UR_DQUOTE] = ACTIONS(533), - [anon_sym_u8R_DQUOTE] = ACTIONS(533), - [anon_sym_co_await] = ACTIONS(536), - [anon_sym_new] = ACTIONS(539), - [anon_sym_requires] = ACTIONS(542), - [sym_this] = ACTIONS(482), - [sym_nullptr] = ACTIONS(482), - }, - [29] = { - [sym_preproc_include] = STATE(29), - [sym_preproc_def] = STATE(29), - [sym_preproc_function_def] = STATE(29), - [sym_preproc_call] = STATE(29), - [sym_preproc_if] = STATE(29), - [sym_preproc_ifdef] = STATE(29), - [sym_function_definition] = STATE(29), - [sym_declaration] = STATE(29), - [sym_type_definition] = STATE(29), - [sym__declaration_modifiers] = STATE(3225), - [sym__declaration_specifiers] = STATE(3962), - [sym_linkage_specification] = STATE(29), - [sym_attribute_specifier] = STATE(3225), - [sym_attribute_declaration] = STATE(1136), - [sym_ms_declspec_modifier] = STATE(3225), - [sym_ms_based_modifier] = STATE(6104), - [sym_ms_call_modifier] = STATE(2065), - [sym__declarator] = STATE(5113), - [sym_parenthesized_declarator] = STATE(4918), - [sym_attributed_declarator] = STATE(4918), - [sym_pointer_declarator] = STATE(4918), - [sym_function_declarator] = STATE(4870), - [sym_array_declarator] = STATE(4918), - [sym_compound_statement] = STATE(29), - [sym_storage_class_specifier] = STATE(3225), - [sym_type_qualifier] = STATE(3225), - [sym__type_specifier] = STATE(3322), - [sym_sized_type_specifier] = STATE(3232), - [sym_enum_specifier] = STATE(3232), - [sym_struct_specifier] = STATE(3232), - [sym_union_specifier] = STATE(3232), - [sym_attributed_statement] = STATE(29), - [sym_labeled_statement] = STATE(29), - [sym_expression_statement] = STATE(29), - [sym_if_statement] = STATE(29), - [sym_switch_statement] = STATE(29), - [sym_case_statement] = STATE(29), - [sym_while_statement] = STATE(29), - [sym_do_statement] = STATE(29), - [sym_for_statement] = STATE(29), - [sym_return_statement] = STATE(29), - [sym_break_statement] = STATE(29), - [sym_continue_statement] = STATE(29), - [sym_goto_statement] = STATE(29), - [sym__expression] = STATE(3502), - [sym_comma_expression] = STATE(6595), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym__empty_declaration] = STATE(29), - [sym_placeholder_type_specifier] = STATE(3232), - [sym_decltype_auto] = STATE(3279), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3232), - [sym__class_name] = STATE(5753), - [sym_virtual] = STATE(3225), - [sym_explicit_function_specifier] = STATE(1936), - [sym_dependent_type] = STATE(3232), - [sym_template_declaration] = STATE(29), - [sym_template_instantiation] = STATE(29), - [sym_operator_cast] = STATE(5134), - [sym__constructor_specifiers] = STATE(1936), - [sym_operator_cast_definition] = STATE(29), - [sym_operator_cast_declaration] = STATE(29), - [sym_constructor_or_destructor_definition] = STATE(29), - [sym_reference_declarator] = STATE(4918), - [sym_structured_binding_declarator] = STATE(4918), - [sym_template_type] = STATE(3608), - [sym_template_function] = STATE(3494), - [sym_namespace_definition] = STATE(29), - [sym_namespace_alias_definition] = STATE(29), - [sym_using_declaration] = STATE(29), - [sym_alias_declaration] = STATE(29), - [sym_static_assert_declaration] = STATE(29), - [sym_concept_definition] = STATE(29), - [sym_for_range_loop] = STATE(29), - [sym_co_return_statement] = STATE(29), - [sym_co_yield_statement] = STATE(29), - [sym_throw_statement] = STATE(29), - [sym_try_statement] = STATE(29), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_destructor_name] = STATE(4918), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4460), - [sym_qualified_identifier] = STATE(2732), - [sym_qualified_type_identifier] = STATE(3593), - [sym_qualified_operator_cast_identifier] = STATE(5134), - [sym_operator_name] = STATE(4918), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_translation_unit_repeat1] = STATE(29), - [aux_sym__declaration_specifiers_repeat1] = STATE(2179), - [aux_sym_attributed_declarator_repeat1] = STATE(206), - [aux_sym_sized_type_specifier_repeat1] = STATE(3171), - [aux_sym_operator_cast_definition_repeat1] = STATE(1936), - [sym_identifier] = ACTIONS(545), - [aux_sym_preproc_include_token1] = ACTIONS(548), - [aux_sym_preproc_def_token1] = ACTIONS(551), - [aux_sym_preproc_if_token1] = ACTIONS(554), - [aux_sym_preproc_ifdef_token1] = ACTIONS(557), - [aux_sym_preproc_ifdef_token2] = ACTIONS(557), - [sym_preproc_directive] = ACTIONS(560), - [anon_sym_LPAREN2] = ACTIONS(353), - [anon_sym_BANG] = ACTIONS(356), - [anon_sym_TILDE] = ACTIONS(359), - [anon_sym_DASH] = ACTIONS(362), - [anon_sym_PLUS] = ACTIONS(362), - [anon_sym_STAR] = ACTIONS(365), - [anon_sym_AMP_AMP] = ACTIONS(368), - [anon_sym_AMP] = ACTIONS(371), - [anon_sym_SEMI] = ACTIONS(563), - [anon_sym_typedef] = ACTIONS(566), - [anon_sym_extern] = ACTIONS(569), - [anon_sym___attribute__] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(386), - [anon_sym_LBRACK_LBRACK] = ACTIONS(389), - [anon_sym___declspec] = ACTIONS(392), - [anon_sym___based] = ACTIONS(395), - [anon_sym___cdecl] = ACTIONS(398), - [anon_sym___clrcall] = ACTIONS(398), - [anon_sym___stdcall] = ACTIONS(398), - [anon_sym___fastcall] = ACTIONS(398), - [anon_sym___thiscall] = ACTIONS(398), - [anon_sym___vectorcall] = ACTIONS(398), - [anon_sym_LBRACE] = ACTIONS(572), - [anon_sym_RBRACE] = ACTIONS(575), - [anon_sym_LBRACK] = ACTIONS(404), - [anon_sym_static] = ACTIONS(407), - [anon_sym_register] = ACTIONS(407), - [anon_sym_inline] = ACTIONS(577), - [anon_sym_thread_local] = ACTIONS(407), - [anon_sym_const] = ACTIONS(413), - [anon_sym_volatile] = ACTIONS(413), - [anon_sym_restrict] = ACTIONS(413), - [anon_sym__Atomic] = ACTIONS(413), - [anon_sym_mutable] = ACTIONS(413), - [anon_sym_constexpr] = ACTIONS(413), - [anon_sym_constinit] = ACTIONS(413), - [anon_sym_consteval] = ACTIONS(413), - [anon_sym_signed] = ACTIONS(416), - [anon_sym_unsigned] = ACTIONS(416), - [anon_sym_long] = ACTIONS(416), - [anon_sym_short] = ACTIONS(416), - [sym_primitive_type] = ACTIONS(419), - [anon_sym_enum] = ACTIONS(422), - [anon_sym_class] = ACTIONS(425), - [anon_sym_struct] = ACTIONS(428), - [anon_sym_union] = ACTIONS(431), - [anon_sym_if] = ACTIONS(580), - [anon_sym_switch] = ACTIONS(583), - [anon_sym_case] = ACTIONS(586), - [anon_sym_default] = ACTIONS(589), - [anon_sym_while] = ACTIONS(592), - [anon_sym_do] = ACTIONS(595), - [anon_sym_for] = ACTIONS(598), - [anon_sym_return] = ACTIONS(601), - [anon_sym_break] = ACTIONS(604), - [anon_sym_continue] = ACTIONS(607), - [anon_sym_goto] = ACTIONS(610), - [anon_sym_not] = ACTIONS(362), - [anon_sym_compl] = ACTIONS(362), - [anon_sym_DASH_DASH] = ACTIONS(467), - [anon_sym_PLUS_PLUS] = ACTIONS(467), - [anon_sym_sizeof] = ACTIONS(470), - [sym_number_literal] = ACTIONS(473), - [anon_sym_L_SQUOTE] = ACTIONS(476), - [anon_sym_u_SQUOTE] = ACTIONS(476), - [anon_sym_U_SQUOTE] = ACTIONS(476), - [anon_sym_u8_SQUOTE] = ACTIONS(476), - [anon_sym_SQUOTE] = ACTIONS(476), - [anon_sym_L_DQUOTE] = ACTIONS(479), - [anon_sym_u_DQUOTE] = ACTIONS(479), - [anon_sym_U_DQUOTE] = ACTIONS(479), - [anon_sym_u8_DQUOTE] = ACTIONS(479), - [anon_sym_DQUOTE] = ACTIONS(479), - [sym_true] = ACTIONS(482), - [sym_false] = ACTIONS(482), - [sym_null] = ACTIONS(482), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(485), - [anon_sym_decltype] = ACTIONS(488), - [anon_sym_virtual] = ACTIONS(491), - [anon_sym_explicit] = ACTIONS(494), - [anon_sym_typename] = ACTIONS(497), - [anon_sym_template] = ACTIONS(613), - [anon_sym_operator] = ACTIONS(503), - [anon_sym_try] = ACTIONS(616), - [anon_sym_delete] = ACTIONS(509), - [anon_sym_throw] = ACTIONS(619), - [anon_sym_namespace] = ACTIONS(622), - [anon_sym_using] = ACTIONS(625), - [anon_sym_static_assert] = ACTIONS(628), - [anon_sym_concept] = ACTIONS(631), - [anon_sym_co_return] = ACTIONS(634), - [anon_sym_co_yield] = ACTIONS(637), - [anon_sym_R_DQUOTE] = ACTIONS(533), - [anon_sym_LR_DQUOTE] = ACTIONS(533), - [anon_sym_uR_DQUOTE] = ACTIONS(533), - [anon_sym_UR_DQUOTE] = ACTIONS(533), - [anon_sym_u8R_DQUOTE] = ACTIONS(533), - [anon_sym_co_await] = ACTIONS(536), - [anon_sym_new] = ACTIONS(539), - [anon_sym_requires] = ACTIONS(542), - [sym_this] = ACTIONS(482), - [sym_nullptr] = ACTIONS(482), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(113), + [anon_sym_decltype] = ACTIONS(115), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_explicit] = ACTIONS(119), + [anon_sym_typename] = ACTIONS(121), + [anon_sym_template] = ACTIONS(377), + [anon_sym_operator] = ACTIONS(125), + [anon_sym_try] = ACTIONS(379), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(381), + [anon_sym_namespace] = ACTIONS(383), + [anon_sym_using] = ACTIONS(385), + [anon_sym_static_assert] = ACTIONS(387), + [anon_sym_concept] = ACTIONS(389), + [anon_sym_co_return] = ACTIONS(391), + [anon_sym_co_yield] = ACTIONS(393), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, - [30] = { - [sym_preproc_include] = STATE(55), - [sym_preproc_def] = STATE(55), - [sym_preproc_function_def] = STATE(55), - [sym_preproc_call] = STATE(55), - [sym_preproc_if] = STATE(55), - [sym_preproc_ifdef] = STATE(55), - [sym_function_definition] = STATE(55), - [sym_declaration] = STATE(55), - [sym_type_definition] = STATE(55), - [sym__declaration_modifiers] = STATE(3225), - [sym__declaration_specifiers] = STATE(3962), - [sym_linkage_specification] = STATE(55), - [sym_attribute_specifier] = STATE(3225), - [sym_attribute_declaration] = STATE(1136), - [sym_ms_declspec_modifier] = STATE(3225), - [sym_ms_based_modifier] = STATE(6104), - [sym_ms_call_modifier] = STATE(2065), - [sym__declarator] = STATE(5113), - [sym_parenthesized_declarator] = STATE(4918), - [sym_attributed_declarator] = STATE(4918), - [sym_pointer_declarator] = STATE(4918), - [sym_function_declarator] = STATE(4870), - [sym_array_declarator] = STATE(4918), - [sym_compound_statement] = STATE(55), - [sym_storage_class_specifier] = STATE(3225), - [sym_type_qualifier] = STATE(3225), - [sym__type_specifier] = STATE(3322), - [sym_sized_type_specifier] = STATE(3232), - [sym_enum_specifier] = STATE(3232), - [sym_struct_specifier] = STATE(3232), - [sym_union_specifier] = STATE(3232), - [sym_attributed_statement] = STATE(55), - [sym_labeled_statement] = STATE(55), - [sym_expression_statement] = STATE(55), - [sym_if_statement] = STATE(55), - [sym_switch_statement] = STATE(55), - [sym_case_statement] = STATE(55), - [sym_while_statement] = STATE(55), - [sym_do_statement] = STATE(55), - [sym_for_statement] = STATE(55), - [sym_return_statement] = STATE(55), - [sym_break_statement] = STATE(55), - [sym_continue_statement] = STATE(55), - [sym_goto_statement] = STATE(55), - [sym__expression] = STATE(3502), - [sym_comma_expression] = STATE(6595), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym__empty_declaration] = STATE(55), - [sym_placeholder_type_specifier] = STATE(3232), - [sym_decltype_auto] = STATE(3279), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3232), - [sym__class_name] = STATE(5753), - [sym_virtual] = STATE(3225), - [sym_explicit_function_specifier] = STATE(1936), - [sym_dependent_type] = STATE(3232), - [sym_template_declaration] = STATE(55), - [sym_template_instantiation] = STATE(55), - [sym_operator_cast] = STATE(5134), - [sym__constructor_specifiers] = STATE(1936), - [sym_operator_cast_definition] = STATE(55), - [sym_operator_cast_declaration] = STATE(55), - [sym_constructor_or_destructor_definition] = STATE(55), - [sym_reference_declarator] = STATE(4918), - [sym_structured_binding_declarator] = STATE(4918), - [sym_template_type] = STATE(3608), - [sym_template_function] = STATE(3494), - [sym_namespace_definition] = STATE(55), - [sym_namespace_alias_definition] = STATE(55), - [sym_using_declaration] = STATE(55), - [sym_alias_declaration] = STATE(55), - [sym_static_assert_declaration] = STATE(55), - [sym_concept_definition] = STATE(55), - [sym_for_range_loop] = STATE(55), - [sym_co_return_statement] = STATE(55), - [sym_co_yield_statement] = STATE(55), - [sym_throw_statement] = STATE(55), - [sym_try_statement] = STATE(55), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_destructor_name] = STATE(4918), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4460), - [sym_qualified_identifier] = STATE(2732), - [sym_qualified_type_identifier] = STATE(3593), - [sym_qualified_operator_cast_identifier] = STATE(5134), - [sym_operator_name] = STATE(4918), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_translation_unit_repeat1] = STATE(55), - [aux_sym__declaration_specifiers_repeat1] = STATE(2179), - [aux_sym_attributed_declarator_repeat1] = STATE(206), - [aux_sym_sized_type_specifier_repeat1] = STATE(3171), - [aux_sym_operator_cast_definition_repeat1] = STATE(1936), - [sym_identifier] = ACTIONS(147), - [aux_sym_preproc_include_token1] = ACTIONS(149), - [aux_sym_preproc_def_token1] = ACTIONS(151), - [aux_sym_preproc_if_token1] = ACTIONS(155), - [aux_sym_preproc_ifdef_token1] = ACTIONS(157), - [aux_sym_preproc_ifdef_token2] = ACTIONS(157), - [sym_preproc_directive] = ACTIONS(159), + [26] = { + [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(7201), + [sym_preproc_elif] = STATE(7201), + [sym_function_definition] = STATE(37), + [sym_declaration] = STATE(37), + [sym_type_definition] = STATE(37), + [sym__declaration_modifiers] = STATE(3706), + [sym__declaration_specifiers] = STATE(4664), + [sym_linkage_specification] = STATE(37), + [sym_attribute_specifier] = STATE(3706), + [sym_attribute_declaration] = STATE(1427), + [sym_ms_declspec_modifier] = STATE(3706), + [sym_ms_based_modifier] = STATE(7654), + [sym_ms_call_modifier] = STATE(2402), + [sym__declarator] = STATE(5881), + [sym_parenthesized_declarator] = STATE(5640), + [sym_attributed_declarator] = STATE(5640), + [sym_pointer_declarator] = STATE(5640), + [sym_function_declarator] = STATE(5549), + [sym_array_declarator] = STATE(5640), + [sym_compound_statement] = STATE(37), + [sym_storage_class_specifier] = STATE(3706), + [sym_type_qualifier] = STATE(3706), + [sym__type_specifier] = STATE(3820), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), + [sym_attributed_statement] = STATE(37), + [sym_labeled_statement] = STATE(37), + [sym_expression_statement] = STATE(37), + [sym_if_statement] = STATE(37), + [sym_switch_statement] = STATE(37), + [sym_case_statement] = STATE(37), + [sym_while_statement] = STATE(37), + [sym_do_statement] = STATE(37), + [sym_for_statement] = STATE(37), + [sym_return_statement] = STATE(37), + [sym_break_statement] = STATE(37), + [sym_continue_statement] = STATE(37), + [sym_goto_statement] = STATE(37), + [sym__expression] = STATE(4169), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7079), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym__empty_declaration] = STATE(37), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym__class_name] = STATE(6623), + [sym_virtual] = STATE(3706), + [sym_explicit_function_specifier] = STATE(2259), + [sym_dependent_type] = STATE(3723), + [sym_template_declaration] = STATE(37), + [sym_template_instantiation] = STATE(37), + [sym_operator_cast] = STATE(5892), + [sym__constructor_specifiers] = STATE(2259), + [sym_operator_cast_definition] = STATE(37), + [sym_operator_cast_declaration] = STATE(37), + [sym_constructor_or_destructor_definition] = STATE(37), + [sym_reference_declarator] = STATE(5640), + [sym_structured_binding_declarator] = STATE(5640), + [sym_template_type] = STATE(3921), + [sym_template_function] = STATE(4066), + [sym_namespace_definition] = STATE(37), + [sym_namespace_alias_definition] = STATE(37), + [sym_using_declaration] = STATE(37), + [sym_alias_declaration] = STATE(37), + [sym_static_assert_declaration] = STATE(37), + [sym_concept_definition] = STATE(37), + [sym_for_range_loop] = STATE(37), + [sym_co_return_statement] = STATE(37), + [sym_co_yield_statement] = STATE(37), + [sym_throw_statement] = STATE(37), + [sym_try_statement] = STATE(37), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_destructor_name] = STATE(5640), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5143), + [sym_qualified_identifier] = STATE(3249), + [sym_qualified_type_identifier] = STATE(3915), + [sym_qualified_operator_cast_identifier] = STATE(5892), + [sym_operator_name] = STATE(5640), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_preproc_if_repeat1] = STATE(37), + [aux_sym__declaration_specifiers_repeat1] = STATE(2514), + [aux_sym_attributed_declarator_repeat1] = STATE(251), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [aux_sym_operator_cast_definition_repeat1] = STATE(2259), + [sym_identifier] = ACTIONS(331), + [aux_sym_preproc_include_token1] = ACTIONS(333), + [aux_sym_preproc_def_token1] = ACTIONS(335), + [aux_sym_preproc_if_token1] = ACTIONS(337), + [aux_sym_preproc_if_token2] = ACTIONS(401), + [aux_sym_preproc_ifdef_token1] = ACTIONS(341), + [aux_sym_preproc_ifdef_token2] = ACTIONS(341), + [aux_sym_preproc_else_token1] = ACTIONS(237), + [aux_sym_preproc_elif_token1] = ACTIONS(239), + [sym_preproc_directive] = ACTIONS(343), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -31063,226 +48079,242 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_typedef] = ACTIONS(163), - [anon_sym_extern] = ACTIONS(165), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(43), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_RBRACE] = ACTIONS(642), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(173), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(61), - [anon_sym_unsigned] = ACTIONS(61), - [anon_sym_long] = ACTIONS(61), - [anon_sym_short] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(63), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(175), - [anon_sym_switch] = ACTIONS(177), - [anon_sym_case] = ACTIONS(179), - [anon_sym_default] = ACTIONS(181), - [anon_sym_while] = ACTIONS(183), - [anon_sym_do] = ACTIONS(185), - [anon_sym_for] = ACTIONS(187), - [anon_sym_return] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), - [anon_sym_goto] = ACTIONS(195), + [anon_sym_SEMI] = ACTIONS(345), + [anon_sym_typedef] = ACTIONS(347), + [anon_sym_extern] = ACTIONS(349), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(45), + [anon_sym___cdecl] = ACTIONS(47), + [anon_sym___clrcall] = ACTIONS(47), + [anon_sym___stdcall] = ACTIONS(47), + [anon_sym___fastcall] = ACTIONS(47), + [anon_sym___thiscall] = ACTIONS(47), + [anon_sym___vectorcall] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(351), + [anon_sym_LBRACK] = ACTIONS(51), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(353), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(355), + [anon_sym_switch] = ACTIONS(357), + [anon_sym_case] = ACTIONS(359), + [anon_sym_default] = ACTIONS(361), + [anon_sym_while] = ACTIONS(363), + [anon_sym_do] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_return] = ACTIONS(369), + [anon_sym_break] = ACTIONS(371), + [anon_sym_continue] = ACTIONS(373), + [anon_sym_goto] = ACTIONS(375), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(107), - [anon_sym_decltype] = ACTIONS(109), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_explicit] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(115), - [anon_sym_template] = ACTIONS(199), - [anon_sym_operator] = ACTIONS(119), - [anon_sym_try] = ACTIONS(201), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(203), - [anon_sym_namespace] = ACTIONS(205), - [anon_sym_using] = ACTIONS(207), - [anon_sym_static_assert] = ACTIONS(209), - [anon_sym_concept] = ACTIONS(211), - [anon_sym_co_return] = ACTIONS(213), - [anon_sym_co_yield] = ACTIONS(215), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(113), + [anon_sym_decltype] = ACTIONS(115), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_explicit] = ACTIONS(119), + [anon_sym_typename] = ACTIONS(121), + [anon_sym_template] = ACTIONS(377), + [anon_sym_operator] = ACTIONS(125), + [anon_sym_try] = ACTIONS(379), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(381), + [anon_sym_namespace] = ACTIONS(383), + [anon_sym_using] = ACTIONS(385), + [anon_sym_static_assert] = ACTIONS(387), + [anon_sym_concept] = ACTIONS(389), + [anon_sym_co_return] = ACTIONS(391), + [anon_sym_co_yield] = ACTIONS(393), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, - [31] = { - [sym_preproc_include] = STATE(35), - [sym_preproc_def] = STATE(35), - [sym_preproc_function_def] = STATE(35), - [sym_preproc_call] = STATE(35), - [sym_preproc_if] = STATE(35), - [sym_preproc_ifdef] = STATE(35), - [sym_function_definition] = STATE(35), - [sym_declaration] = STATE(35), - [sym_type_definition] = STATE(35), - [sym__declaration_modifiers] = STATE(3225), - [sym__declaration_specifiers] = STATE(3962), - [sym_linkage_specification] = STATE(35), - [sym_attribute_specifier] = STATE(3225), - [sym_attribute_declaration] = STATE(1136), - [sym_ms_declspec_modifier] = STATE(3225), - [sym_ms_based_modifier] = STATE(6104), - [sym_ms_call_modifier] = STATE(2065), - [sym__declarator] = STATE(5113), - [sym_parenthesized_declarator] = STATE(4918), - [sym_attributed_declarator] = STATE(4918), - [sym_pointer_declarator] = STATE(4918), - [sym_function_declarator] = STATE(4870), - [sym_array_declarator] = STATE(4918), - [sym_compound_statement] = STATE(35), - [sym_storage_class_specifier] = STATE(3225), - [sym_type_qualifier] = STATE(3225), - [sym__type_specifier] = STATE(3322), - [sym_sized_type_specifier] = STATE(3232), - [sym_enum_specifier] = STATE(3232), - [sym_struct_specifier] = STATE(3232), - [sym_union_specifier] = STATE(3232), - [sym_attributed_statement] = STATE(35), - [sym_labeled_statement] = STATE(35), - [sym_expression_statement] = STATE(35), - [sym_if_statement] = STATE(35), - [sym_switch_statement] = STATE(35), - [sym_case_statement] = STATE(35), - [sym_while_statement] = STATE(35), - [sym_do_statement] = STATE(35), - [sym_for_statement] = STATE(35), - [sym_return_statement] = STATE(35), - [sym_break_statement] = STATE(35), - [sym_continue_statement] = STATE(35), - [sym_goto_statement] = STATE(35), - [sym__expression] = STATE(3502), - [sym_comma_expression] = STATE(6595), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym__empty_declaration] = STATE(35), - [sym_placeholder_type_specifier] = STATE(3232), - [sym_decltype_auto] = STATE(3279), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3232), - [sym__class_name] = STATE(5753), - [sym_virtual] = STATE(3225), - [sym_explicit_function_specifier] = STATE(1936), - [sym_dependent_type] = STATE(3232), - [sym_template_declaration] = STATE(35), - [sym_template_instantiation] = STATE(35), - [sym_operator_cast] = STATE(5134), - [sym__constructor_specifiers] = STATE(1936), - [sym_operator_cast_definition] = STATE(35), - [sym_operator_cast_declaration] = STATE(35), - [sym_constructor_or_destructor_definition] = STATE(35), - [sym_reference_declarator] = STATE(4918), - [sym_structured_binding_declarator] = STATE(4918), - [sym_template_type] = STATE(3608), - [sym_template_function] = STATE(3494), - [sym_namespace_definition] = STATE(35), - [sym_namespace_alias_definition] = STATE(35), - [sym_using_declaration] = STATE(35), - [sym_alias_declaration] = STATE(35), - [sym_static_assert_declaration] = STATE(35), - [sym_concept_definition] = STATE(35), - [sym_for_range_loop] = STATE(35), - [sym_co_return_statement] = STATE(35), - [sym_co_yield_statement] = STATE(35), - [sym_throw_statement] = STATE(35), - [sym_try_statement] = STATE(35), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_destructor_name] = STATE(4918), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4460), - [sym_qualified_identifier] = STATE(2732), - [sym_qualified_type_identifier] = STATE(3593), - [sym_qualified_operator_cast_identifier] = STATE(5134), - [sym_operator_name] = STATE(4918), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_translation_unit_repeat1] = STATE(35), - [aux_sym__declaration_specifiers_repeat1] = STATE(2179), - [aux_sym_attributed_declarator_repeat1] = STATE(206), - [aux_sym_sized_type_specifier_repeat1] = STATE(3171), - [aux_sym_operator_cast_definition_repeat1] = STATE(1936), - [sym_identifier] = ACTIONS(147), - [aux_sym_preproc_include_token1] = ACTIONS(149), - [aux_sym_preproc_def_token1] = ACTIONS(151), - [aux_sym_preproc_if_token1] = ACTIONS(155), - [aux_sym_preproc_ifdef_token1] = ACTIONS(157), - [aux_sym_preproc_ifdef_token2] = ACTIONS(157), - [sym_preproc_directive] = ACTIONS(159), + [27] = { + [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(7469), + [sym_preproc_elif] = STATE(7469), + [sym_function_definition] = STATE(37), + [sym_declaration] = STATE(37), + [sym_type_definition] = STATE(37), + [sym__declaration_modifiers] = STATE(3706), + [sym__declaration_specifiers] = STATE(4664), + [sym_linkage_specification] = STATE(37), + [sym_attribute_specifier] = STATE(3706), + [sym_attribute_declaration] = STATE(1427), + [sym_ms_declspec_modifier] = STATE(3706), + [sym_ms_based_modifier] = STATE(7654), + [sym_ms_call_modifier] = STATE(2402), + [sym__declarator] = STATE(5881), + [sym_parenthesized_declarator] = STATE(5640), + [sym_attributed_declarator] = STATE(5640), + [sym_pointer_declarator] = STATE(5640), + [sym_function_declarator] = STATE(5549), + [sym_array_declarator] = STATE(5640), + [sym_compound_statement] = STATE(37), + [sym_storage_class_specifier] = STATE(3706), + [sym_type_qualifier] = STATE(3706), + [sym__type_specifier] = STATE(3820), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), + [sym_attributed_statement] = STATE(37), + [sym_labeled_statement] = STATE(37), + [sym_expression_statement] = STATE(37), + [sym_if_statement] = STATE(37), + [sym_switch_statement] = STATE(37), + [sym_case_statement] = STATE(37), + [sym_while_statement] = STATE(37), + [sym_do_statement] = STATE(37), + [sym_for_statement] = STATE(37), + [sym_return_statement] = STATE(37), + [sym_break_statement] = STATE(37), + [sym_continue_statement] = STATE(37), + [sym_goto_statement] = STATE(37), + [sym__expression] = STATE(4169), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7079), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym__empty_declaration] = STATE(37), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym__class_name] = STATE(6623), + [sym_virtual] = STATE(3706), + [sym_explicit_function_specifier] = STATE(2259), + [sym_dependent_type] = STATE(3723), + [sym_template_declaration] = STATE(37), + [sym_template_instantiation] = STATE(37), + [sym_operator_cast] = STATE(5892), + [sym__constructor_specifiers] = STATE(2259), + [sym_operator_cast_definition] = STATE(37), + [sym_operator_cast_declaration] = STATE(37), + [sym_constructor_or_destructor_definition] = STATE(37), + [sym_reference_declarator] = STATE(5640), + [sym_structured_binding_declarator] = STATE(5640), + [sym_template_type] = STATE(3921), + [sym_template_function] = STATE(4066), + [sym_namespace_definition] = STATE(37), + [sym_namespace_alias_definition] = STATE(37), + [sym_using_declaration] = STATE(37), + [sym_alias_declaration] = STATE(37), + [sym_static_assert_declaration] = STATE(37), + [sym_concept_definition] = STATE(37), + [sym_for_range_loop] = STATE(37), + [sym_co_return_statement] = STATE(37), + [sym_co_yield_statement] = STATE(37), + [sym_throw_statement] = STATE(37), + [sym_try_statement] = STATE(37), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_destructor_name] = STATE(5640), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5143), + [sym_qualified_identifier] = STATE(3249), + [sym_qualified_type_identifier] = STATE(3915), + [sym_qualified_operator_cast_identifier] = STATE(5892), + [sym_operator_name] = STATE(5640), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_preproc_if_repeat1] = STATE(37), + [aux_sym__declaration_specifiers_repeat1] = STATE(2514), + [aux_sym_attributed_declarator_repeat1] = STATE(251), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [aux_sym_operator_cast_definition_repeat1] = STATE(2259), + [sym_identifier] = ACTIONS(331), + [aux_sym_preproc_include_token1] = ACTIONS(333), + [aux_sym_preproc_def_token1] = ACTIONS(335), + [aux_sym_preproc_if_token1] = ACTIONS(337), + [aux_sym_preproc_if_token2] = ACTIONS(403), + [aux_sym_preproc_ifdef_token1] = ACTIONS(341), + [aux_sym_preproc_ifdef_token2] = ACTIONS(341), + [aux_sym_preproc_else_token1] = ACTIONS(237), + [aux_sym_preproc_elif_token1] = ACTIONS(239), + [sym_preproc_directive] = ACTIONS(343), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -31291,134 +48323,142 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_typedef] = ACTIONS(163), - [anon_sym_extern] = ACTIONS(165), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(43), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_RBRACE] = ACTIONS(644), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(173), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(61), - [anon_sym_unsigned] = ACTIONS(61), - [anon_sym_long] = ACTIONS(61), - [anon_sym_short] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(63), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(175), - [anon_sym_switch] = ACTIONS(177), - [anon_sym_case] = ACTIONS(179), - [anon_sym_default] = ACTIONS(181), - [anon_sym_while] = ACTIONS(183), - [anon_sym_do] = ACTIONS(185), - [anon_sym_for] = ACTIONS(187), - [anon_sym_return] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), - [anon_sym_goto] = ACTIONS(195), + [anon_sym_SEMI] = ACTIONS(345), + [anon_sym_typedef] = ACTIONS(347), + [anon_sym_extern] = ACTIONS(349), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(45), + [anon_sym___cdecl] = ACTIONS(47), + [anon_sym___clrcall] = ACTIONS(47), + [anon_sym___stdcall] = ACTIONS(47), + [anon_sym___fastcall] = ACTIONS(47), + [anon_sym___thiscall] = ACTIONS(47), + [anon_sym___vectorcall] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(351), + [anon_sym_LBRACK] = ACTIONS(51), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(353), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(355), + [anon_sym_switch] = ACTIONS(357), + [anon_sym_case] = ACTIONS(359), + [anon_sym_default] = ACTIONS(361), + [anon_sym_while] = ACTIONS(363), + [anon_sym_do] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_return] = ACTIONS(369), + [anon_sym_break] = ACTIONS(371), + [anon_sym_continue] = ACTIONS(373), + [anon_sym_goto] = ACTIONS(375), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(107), - [anon_sym_decltype] = ACTIONS(109), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_explicit] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(115), - [anon_sym_template] = ACTIONS(199), - [anon_sym_operator] = ACTIONS(119), - [anon_sym_try] = ACTIONS(201), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(203), - [anon_sym_namespace] = ACTIONS(205), - [anon_sym_using] = ACTIONS(207), - [anon_sym_static_assert] = ACTIONS(209), - [anon_sym_concept] = ACTIONS(211), - [anon_sym_co_return] = ACTIONS(213), - [anon_sym_co_yield] = ACTIONS(215), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(113), + [anon_sym_decltype] = ACTIONS(115), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_explicit] = ACTIONS(119), + [anon_sym_typename] = ACTIONS(121), + [anon_sym_template] = ACTIONS(377), + [anon_sym_operator] = ACTIONS(125), + [anon_sym_try] = ACTIONS(379), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(381), + [anon_sym_namespace] = ACTIONS(383), + [anon_sym_using] = ACTIONS(385), + [anon_sym_static_assert] = ACTIONS(387), + [anon_sym_concept] = ACTIONS(389), + [anon_sym_co_return] = ACTIONS(391), + [anon_sym_co_yield] = ACTIONS(393), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, - [32] = { + [28] = { [sym_preproc_include] = STATE(34), [sym_preproc_def] = STATE(34), [sym_preproc_function_def] = STATE(34), [sym_preproc_call] = STATE(34), [sym_preproc_if] = STATE(34), [sym_preproc_ifdef] = STATE(34), + [sym_preproc_else] = STATE(7509), + [sym_preproc_elif] = STATE(7509), [sym_function_definition] = STATE(34), [sym_declaration] = STATE(34), [sym_type_definition] = STATE(34), - [sym__declaration_modifiers] = STATE(3225), - [sym__declaration_specifiers] = STATE(3990), + [sym__declaration_modifiers] = STATE(3706), + [sym__declaration_specifiers] = STATE(4664), [sym_linkage_specification] = STATE(34), - [sym_attribute_specifier] = STATE(3225), - [sym_attribute_declaration] = STATE(1136), - [sym_ms_declspec_modifier] = STATE(3225), - [sym_ms_based_modifier] = STATE(6104), - [sym_ms_call_modifier] = STATE(2018), - [sym__declarator] = STATE(5113), - [sym_parenthesized_declarator] = STATE(4918), - [sym_attributed_declarator] = STATE(4918), - [sym_pointer_declarator] = STATE(4918), - [sym_function_declarator] = STATE(4823), - [sym_array_declarator] = STATE(4918), + [sym_attribute_specifier] = STATE(3706), + [sym_attribute_declaration] = STATE(1427), + [sym_ms_declspec_modifier] = STATE(3706), + [sym_ms_based_modifier] = STATE(7654), + [sym_ms_call_modifier] = STATE(2402), + [sym__declarator] = STATE(5881), + [sym_parenthesized_declarator] = STATE(5640), + [sym_attributed_declarator] = STATE(5640), + [sym_pointer_declarator] = STATE(5640), + [sym_function_declarator] = STATE(5549), + [sym_array_declarator] = STATE(5640), [sym_compound_statement] = STATE(34), - [sym_storage_class_specifier] = STATE(3225), - [sym_type_qualifier] = STATE(3225), - [sym__type_specifier] = STATE(3317), - [sym_sized_type_specifier] = STATE(3232), - [sym_enum_specifier] = STATE(3232), - [sym_struct_specifier] = STATE(3232), - [sym_union_specifier] = STATE(3232), + [sym_storage_class_specifier] = STATE(3706), + [sym_type_qualifier] = STATE(3706), + [sym__type_specifier] = STATE(3820), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), [sym_attributed_statement] = STATE(34), [sym_labeled_statement] = STATE(34), [sym_expression_statement] = STATE(34), @@ -31432,44 +48472,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(34), [sym_continue_statement] = STATE(34), [sym_goto_statement] = STATE(34), - [sym__expression] = STATE(3522), - [sym_comma_expression] = STATE(6276), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), + [sym__expression] = STATE(4169), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7079), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), [sym__empty_declaration] = STATE(34), - [sym_placeholder_type_specifier] = STATE(3232), - [sym_decltype_auto] = STATE(3279), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3232), - [sym__class_name] = STATE(5753), - [sym_virtual] = STATE(3225), - [sym_explicit_function_specifier] = STATE(1958), - [sym_dependent_type] = STATE(3232), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym__class_name] = STATE(6623), + [sym_virtual] = STATE(3706), + [sym_explicit_function_specifier] = STATE(2259), + [sym_dependent_type] = STATE(3723), [sym_template_declaration] = STATE(34), [sym_template_instantiation] = STATE(34), - [sym_operator_cast] = STATE(5144), - [sym__constructor_specifiers] = STATE(1958), + [sym_operator_cast] = STATE(5892), + [sym__constructor_specifiers] = STATE(2259), [sym_operator_cast_definition] = STATE(34), [sym_operator_cast_declaration] = STATE(34), [sym_constructor_or_destructor_definition] = STATE(34), - [sym_reference_declarator] = STATE(4918), - [sym_structured_binding_declarator] = STATE(4918), - [sym_template_type] = STATE(3608), - [sym_template_function] = STATE(3494), + [sym_reference_declarator] = STATE(5640), + [sym_structured_binding_declarator] = STATE(5640), + [sym_template_type] = STATE(3921), + [sym_template_function] = STATE(4066), [sym_namespace_definition] = STATE(34), [sym_namespace_alias_definition] = STATE(34), [sym_using_declaration] = STATE(34), @@ -31481,37 +48526,1015 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_co_yield_statement] = STATE(34), [sym_throw_statement] = STATE(34), [sym_try_statement] = STATE(34), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_destructor_name] = STATE(4918), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4460), - [sym_qualified_identifier] = STATE(2732), - [sym_qualified_type_identifier] = STATE(3593), - [sym_qualified_operator_cast_identifier] = STATE(5144), - [sym_operator_name] = STATE(4918), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_translation_unit_repeat1] = STATE(34), - [aux_sym__declaration_specifiers_repeat1] = STATE(2179), - [aux_sym_attributed_declarator_repeat1] = STATE(151), - [aux_sym_sized_type_specifier_repeat1] = STATE(3171), - [aux_sym_operator_cast_definition_repeat1] = STATE(1958), - [sym_identifier] = ACTIONS(646), - [aux_sym_preproc_include_token1] = ACTIONS(648), - [aux_sym_preproc_def_token1] = ACTIONS(650), - [aux_sym_preproc_if_token1] = ACTIONS(652), - [aux_sym_preproc_if_token2] = ACTIONS(654), - [aux_sym_preproc_ifdef_token1] = ACTIONS(656), - [aux_sym_preproc_ifdef_token2] = ACTIONS(656), - [sym_preproc_directive] = ACTIONS(658), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_destructor_name] = STATE(5640), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5143), + [sym_qualified_identifier] = STATE(3249), + [sym_qualified_type_identifier] = STATE(3915), + [sym_qualified_operator_cast_identifier] = STATE(5892), + [sym_operator_name] = STATE(5640), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_preproc_if_repeat1] = STATE(34), + [aux_sym__declaration_specifiers_repeat1] = STATE(2514), + [aux_sym_attributed_declarator_repeat1] = STATE(251), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [aux_sym_operator_cast_definition_repeat1] = STATE(2259), + [sym_identifier] = ACTIONS(331), + [aux_sym_preproc_include_token1] = ACTIONS(333), + [aux_sym_preproc_def_token1] = ACTIONS(335), + [aux_sym_preproc_if_token1] = ACTIONS(337), + [aux_sym_preproc_if_token2] = ACTIONS(405), + [aux_sym_preproc_ifdef_token1] = ACTIONS(341), + [aux_sym_preproc_ifdef_token2] = ACTIONS(341), + [aux_sym_preproc_else_token1] = ACTIONS(237), + [aux_sym_preproc_elif_token1] = ACTIONS(239), + [sym_preproc_directive] = ACTIONS(343), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(345), + [anon_sym_typedef] = ACTIONS(347), + [anon_sym_extern] = ACTIONS(349), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(45), + [anon_sym___cdecl] = ACTIONS(47), + [anon_sym___clrcall] = ACTIONS(47), + [anon_sym___stdcall] = ACTIONS(47), + [anon_sym___fastcall] = ACTIONS(47), + [anon_sym___thiscall] = ACTIONS(47), + [anon_sym___vectorcall] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(351), + [anon_sym_LBRACK] = ACTIONS(51), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(353), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(355), + [anon_sym_switch] = ACTIONS(357), + [anon_sym_case] = ACTIONS(359), + [anon_sym_default] = ACTIONS(361), + [anon_sym_while] = ACTIONS(363), + [anon_sym_do] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_return] = ACTIONS(369), + [anon_sym_break] = ACTIONS(371), + [anon_sym_continue] = ACTIONS(373), + [anon_sym_goto] = ACTIONS(375), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(113), + [anon_sym_decltype] = ACTIONS(115), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_explicit] = ACTIONS(119), + [anon_sym_typename] = ACTIONS(121), + [anon_sym_template] = ACTIONS(377), + [anon_sym_operator] = ACTIONS(125), + [anon_sym_try] = ACTIONS(379), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(381), + [anon_sym_namespace] = ACTIONS(383), + [anon_sym_using] = ACTIONS(385), + [anon_sym_static_assert] = ACTIONS(387), + [anon_sym_concept] = ACTIONS(389), + [anon_sym_co_return] = ACTIONS(391), + [anon_sym_co_yield] = ACTIONS(393), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), + }, + [29] = { + [sym_preproc_include] = STATE(35), + [sym_preproc_def] = STATE(35), + [sym_preproc_function_def] = STATE(35), + [sym_preproc_call] = STATE(35), + [sym_preproc_if] = STATE(35), + [sym_preproc_ifdef] = STATE(35), + [sym_preproc_else] = STATE(7030), + [sym_preproc_elif] = STATE(7030), + [sym_function_definition] = STATE(35), + [sym_declaration] = STATE(35), + [sym_type_definition] = STATE(35), + [sym__declaration_modifiers] = STATE(3706), + [sym__declaration_specifiers] = STATE(4664), + [sym_linkage_specification] = STATE(35), + [sym_attribute_specifier] = STATE(3706), + [sym_attribute_declaration] = STATE(1427), + [sym_ms_declspec_modifier] = STATE(3706), + [sym_ms_based_modifier] = STATE(7654), + [sym_ms_call_modifier] = STATE(2402), + [sym__declarator] = STATE(5881), + [sym_parenthesized_declarator] = STATE(5640), + [sym_attributed_declarator] = STATE(5640), + [sym_pointer_declarator] = STATE(5640), + [sym_function_declarator] = STATE(5549), + [sym_array_declarator] = STATE(5640), + [sym_compound_statement] = STATE(35), + [sym_storage_class_specifier] = STATE(3706), + [sym_type_qualifier] = STATE(3706), + [sym__type_specifier] = STATE(3820), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), + [sym_attributed_statement] = STATE(35), + [sym_labeled_statement] = STATE(35), + [sym_expression_statement] = STATE(35), + [sym_if_statement] = STATE(35), + [sym_switch_statement] = STATE(35), + [sym_case_statement] = STATE(35), + [sym_while_statement] = STATE(35), + [sym_do_statement] = STATE(35), + [sym_for_statement] = STATE(35), + [sym_return_statement] = STATE(35), + [sym_break_statement] = STATE(35), + [sym_continue_statement] = STATE(35), + [sym_goto_statement] = STATE(35), + [sym__expression] = STATE(4169), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7079), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym__empty_declaration] = STATE(35), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym__class_name] = STATE(6623), + [sym_virtual] = STATE(3706), + [sym_explicit_function_specifier] = STATE(2259), + [sym_dependent_type] = STATE(3723), + [sym_template_declaration] = STATE(35), + [sym_template_instantiation] = STATE(35), + [sym_operator_cast] = STATE(5892), + [sym__constructor_specifiers] = STATE(2259), + [sym_operator_cast_definition] = STATE(35), + [sym_operator_cast_declaration] = STATE(35), + [sym_constructor_or_destructor_definition] = STATE(35), + [sym_reference_declarator] = STATE(5640), + [sym_structured_binding_declarator] = STATE(5640), + [sym_template_type] = STATE(3921), + [sym_template_function] = STATE(4066), + [sym_namespace_definition] = STATE(35), + [sym_namespace_alias_definition] = STATE(35), + [sym_using_declaration] = STATE(35), + [sym_alias_declaration] = STATE(35), + [sym_static_assert_declaration] = STATE(35), + [sym_concept_definition] = STATE(35), + [sym_for_range_loop] = STATE(35), + [sym_co_return_statement] = STATE(35), + [sym_co_yield_statement] = STATE(35), + [sym_throw_statement] = STATE(35), + [sym_try_statement] = STATE(35), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_destructor_name] = STATE(5640), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5143), + [sym_qualified_identifier] = STATE(3249), + [sym_qualified_type_identifier] = STATE(3915), + [sym_qualified_operator_cast_identifier] = STATE(5892), + [sym_operator_name] = STATE(5640), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_preproc_if_repeat1] = STATE(35), + [aux_sym__declaration_specifiers_repeat1] = STATE(2514), + [aux_sym_attributed_declarator_repeat1] = STATE(251), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [aux_sym_operator_cast_definition_repeat1] = STATE(2259), + [sym_identifier] = ACTIONS(331), + [aux_sym_preproc_include_token1] = ACTIONS(333), + [aux_sym_preproc_def_token1] = ACTIONS(335), + [aux_sym_preproc_if_token1] = ACTIONS(337), + [aux_sym_preproc_if_token2] = ACTIONS(407), + [aux_sym_preproc_ifdef_token1] = ACTIONS(341), + [aux_sym_preproc_ifdef_token2] = ACTIONS(341), + [aux_sym_preproc_else_token1] = ACTIONS(237), + [aux_sym_preproc_elif_token1] = ACTIONS(239), + [sym_preproc_directive] = ACTIONS(343), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(345), + [anon_sym_typedef] = ACTIONS(347), + [anon_sym_extern] = ACTIONS(349), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(45), + [anon_sym___cdecl] = ACTIONS(47), + [anon_sym___clrcall] = ACTIONS(47), + [anon_sym___stdcall] = ACTIONS(47), + [anon_sym___fastcall] = ACTIONS(47), + [anon_sym___thiscall] = ACTIONS(47), + [anon_sym___vectorcall] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(351), + [anon_sym_LBRACK] = ACTIONS(51), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(353), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(355), + [anon_sym_switch] = ACTIONS(357), + [anon_sym_case] = ACTIONS(359), + [anon_sym_default] = ACTIONS(361), + [anon_sym_while] = ACTIONS(363), + [anon_sym_do] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_return] = ACTIONS(369), + [anon_sym_break] = ACTIONS(371), + [anon_sym_continue] = ACTIONS(373), + [anon_sym_goto] = ACTIONS(375), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(113), + [anon_sym_decltype] = ACTIONS(115), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_explicit] = ACTIONS(119), + [anon_sym_typename] = ACTIONS(121), + [anon_sym_template] = ACTIONS(377), + [anon_sym_operator] = ACTIONS(125), + [anon_sym_try] = ACTIONS(379), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(381), + [anon_sym_namespace] = ACTIONS(383), + [anon_sym_using] = ACTIONS(385), + [anon_sym_static_assert] = ACTIONS(387), + [anon_sym_concept] = ACTIONS(389), + [anon_sym_co_return] = ACTIONS(391), + [anon_sym_co_yield] = ACTIONS(393), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), + }, + [30] = { + [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(7160), + [sym_preproc_elif] = STATE(7160), + [sym_function_definition] = STATE(37), + [sym_declaration] = STATE(37), + [sym_type_definition] = STATE(37), + [sym__declaration_modifiers] = STATE(3706), + [sym__declaration_specifiers] = STATE(4664), + [sym_linkage_specification] = STATE(37), + [sym_attribute_specifier] = STATE(3706), + [sym_attribute_declaration] = STATE(1427), + [sym_ms_declspec_modifier] = STATE(3706), + [sym_ms_based_modifier] = STATE(7654), + [sym_ms_call_modifier] = STATE(2402), + [sym__declarator] = STATE(5881), + [sym_parenthesized_declarator] = STATE(5640), + [sym_attributed_declarator] = STATE(5640), + [sym_pointer_declarator] = STATE(5640), + [sym_function_declarator] = STATE(5549), + [sym_array_declarator] = STATE(5640), + [sym_compound_statement] = STATE(37), + [sym_storage_class_specifier] = STATE(3706), + [sym_type_qualifier] = STATE(3706), + [sym__type_specifier] = STATE(3820), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), + [sym_attributed_statement] = STATE(37), + [sym_labeled_statement] = STATE(37), + [sym_expression_statement] = STATE(37), + [sym_if_statement] = STATE(37), + [sym_switch_statement] = STATE(37), + [sym_case_statement] = STATE(37), + [sym_while_statement] = STATE(37), + [sym_do_statement] = STATE(37), + [sym_for_statement] = STATE(37), + [sym_return_statement] = STATE(37), + [sym_break_statement] = STATE(37), + [sym_continue_statement] = STATE(37), + [sym_goto_statement] = STATE(37), + [sym__expression] = STATE(4169), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7079), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym__empty_declaration] = STATE(37), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym__class_name] = STATE(6623), + [sym_virtual] = STATE(3706), + [sym_explicit_function_specifier] = STATE(2259), + [sym_dependent_type] = STATE(3723), + [sym_template_declaration] = STATE(37), + [sym_template_instantiation] = STATE(37), + [sym_operator_cast] = STATE(5892), + [sym__constructor_specifiers] = STATE(2259), + [sym_operator_cast_definition] = STATE(37), + [sym_operator_cast_declaration] = STATE(37), + [sym_constructor_or_destructor_definition] = STATE(37), + [sym_reference_declarator] = STATE(5640), + [sym_structured_binding_declarator] = STATE(5640), + [sym_template_type] = STATE(3921), + [sym_template_function] = STATE(4066), + [sym_namespace_definition] = STATE(37), + [sym_namespace_alias_definition] = STATE(37), + [sym_using_declaration] = STATE(37), + [sym_alias_declaration] = STATE(37), + [sym_static_assert_declaration] = STATE(37), + [sym_concept_definition] = STATE(37), + [sym_for_range_loop] = STATE(37), + [sym_co_return_statement] = STATE(37), + [sym_co_yield_statement] = STATE(37), + [sym_throw_statement] = STATE(37), + [sym_try_statement] = STATE(37), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_destructor_name] = STATE(5640), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5143), + [sym_qualified_identifier] = STATE(3249), + [sym_qualified_type_identifier] = STATE(3915), + [sym_qualified_operator_cast_identifier] = STATE(5892), + [sym_operator_name] = STATE(5640), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_preproc_if_repeat1] = STATE(37), + [aux_sym__declaration_specifiers_repeat1] = STATE(2514), + [aux_sym_attributed_declarator_repeat1] = STATE(251), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [aux_sym_operator_cast_definition_repeat1] = STATE(2259), + [sym_identifier] = ACTIONS(331), + [aux_sym_preproc_include_token1] = ACTIONS(333), + [aux_sym_preproc_def_token1] = ACTIONS(335), + [aux_sym_preproc_if_token1] = ACTIONS(337), + [aux_sym_preproc_if_token2] = ACTIONS(409), + [aux_sym_preproc_ifdef_token1] = ACTIONS(341), + [aux_sym_preproc_ifdef_token2] = ACTIONS(341), + [aux_sym_preproc_else_token1] = ACTIONS(237), + [aux_sym_preproc_elif_token1] = ACTIONS(239), + [sym_preproc_directive] = ACTIONS(343), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(345), + [anon_sym_typedef] = ACTIONS(347), + [anon_sym_extern] = ACTIONS(349), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(45), + [anon_sym___cdecl] = ACTIONS(47), + [anon_sym___clrcall] = ACTIONS(47), + [anon_sym___stdcall] = ACTIONS(47), + [anon_sym___fastcall] = ACTIONS(47), + [anon_sym___thiscall] = ACTIONS(47), + [anon_sym___vectorcall] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(351), + [anon_sym_LBRACK] = ACTIONS(51), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(353), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(355), + [anon_sym_switch] = ACTIONS(357), + [anon_sym_case] = ACTIONS(359), + [anon_sym_default] = ACTIONS(361), + [anon_sym_while] = ACTIONS(363), + [anon_sym_do] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_return] = ACTIONS(369), + [anon_sym_break] = ACTIONS(371), + [anon_sym_continue] = ACTIONS(373), + [anon_sym_goto] = ACTIONS(375), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(113), + [anon_sym_decltype] = ACTIONS(115), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_explicit] = ACTIONS(119), + [anon_sym_typename] = ACTIONS(121), + [anon_sym_template] = ACTIONS(377), + [anon_sym_operator] = ACTIONS(125), + [anon_sym_try] = ACTIONS(379), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(381), + [anon_sym_namespace] = ACTIONS(383), + [anon_sym_using] = ACTIONS(385), + [anon_sym_static_assert] = ACTIONS(387), + [anon_sym_concept] = ACTIONS(389), + [anon_sym_co_return] = ACTIONS(391), + [anon_sym_co_yield] = ACTIONS(393), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), + }, + [31] = { + [sym_preproc_include] = STATE(25), + [sym_preproc_def] = STATE(25), + [sym_preproc_function_def] = STATE(25), + [sym_preproc_call] = STATE(25), + [sym_preproc_if] = STATE(25), + [sym_preproc_ifdef] = STATE(25), + [sym_preproc_else] = STATE(7202), + [sym_preproc_elif] = STATE(7202), + [sym_function_definition] = STATE(25), + [sym_declaration] = STATE(25), + [sym_type_definition] = STATE(25), + [sym__declaration_modifiers] = STATE(3706), + [sym__declaration_specifiers] = STATE(4664), + [sym_linkage_specification] = STATE(25), + [sym_attribute_specifier] = STATE(3706), + [sym_attribute_declaration] = STATE(1427), + [sym_ms_declspec_modifier] = STATE(3706), + [sym_ms_based_modifier] = STATE(7654), + [sym_ms_call_modifier] = STATE(2402), + [sym__declarator] = STATE(5881), + [sym_parenthesized_declarator] = STATE(5640), + [sym_attributed_declarator] = STATE(5640), + [sym_pointer_declarator] = STATE(5640), + [sym_function_declarator] = STATE(5549), + [sym_array_declarator] = STATE(5640), + [sym_compound_statement] = STATE(25), + [sym_storage_class_specifier] = STATE(3706), + [sym_type_qualifier] = STATE(3706), + [sym__type_specifier] = STATE(3820), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), + [sym_attributed_statement] = STATE(25), + [sym_labeled_statement] = STATE(25), + [sym_expression_statement] = STATE(25), + [sym_if_statement] = STATE(25), + [sym_switch_statement] = STATE(25), + [sym_case_statement] = STATE(25), + [sym_while_statement] = STATE(25), + [sym_do_statement] = STATE(25), + [sym_for_statement] = STATE(25), + [sym_return_statement] = STATE(25), + [sym_break_statement] = STATE(25), + [sym_continue_statement] = STATE(25), + [sym_goto_statement] = STATE(25), + [sym__expression] = STATE(4169), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7079), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym__empty_declaration] = STATE(25), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym__class_name] = STATE(6623), + [sym_virtual] = STATE(3706), + [sym_explicit_function_specifier] = STATE(2259), + [sym_dependent_type] = STATE(3723), + [sym_template_declaration] = STATE(25), + [sym_template_instantiation] = STATE(25), + [sym_operator_cast] = STATE(5892), + [sym__constructor_specifiers] = STATE(2259), + [sym_operator_cast_definition] = STATE(25), + [sym_operator_cast_declaration] = STATE(25), + [sym_constructor_or_destructor_definition] = STATE(25), + [sym_reference_declarator] = STATE(5640), + [sym_structured_binding_declarator] = STATE(5640), + [sym_template_type] = STATE(3921), + [sym_template_function] = STATE(4066), + [sym_namespace_definition] = STATE(25), + [sym_namespace_alias_definition] = STATE(25), + [sym_using_declaration] = STATE(25), + [sym_alias_declaration] = STATE(25), + [sym_static_assert_declaration] = STATE(25), + [sym_concept_definition] = STATE(25), + [sym_for_range_loop] = STATE(25), + [sym_co_return_statement] = STATE(25), + [sym_co_yield_statement] = STATE(25), + [sym_throw_statement] = STATE(25), + [sym_try_statement] = STATE(25), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_destructor_name] = STATE(5640), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5143), + [sym_qualified_identifier] = STATE(3249), + [sym_qualified_type_identifier] = STATE(3915), + [sym_qualified_operator_cast_identifier] = STATE(5892), + [sym_operator_name] = STATE(5640), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_preproc_if_repeat1] = STATE(25), + [aux_sym__declaration_specifiers_repeat1] = STATE(2514), + [aux_sym_attributed_declarator_repeat1] = STATE(251), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [aux_sym_operator_cast_definition_repeat1] = STATE(2259), + [sym_identifier] = ACTIONS(331), + [aux_sym_preproc_include_token1] = ACTIONS(333), + [aux_sym_preproc_def_token1] = ACTIONS(335), + [aux_sym_preproc_if_token1] = ACTIONS(337), + [aux_sym_preproc_if_token2] = ACTIONS(411), + [aux_sym_preproc_ifdef_token1] = ACTIONS(341), + [aux_sym_preproc_ifdef_token2] = ACTIONS(341), + [aux_sym_preproc_else_token1] = ACTIONS(237), + [aux_sym_preproc_elif_token1] = ACTIONS(239), + [sym_preproc_directive] = ACTIONS(343), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(345), + [anon_sym_typedef] = ACTIONS(347), + [anon_sym_extern] = ACTIONS(349), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(45), + [anon_sym___cdecl] = ACTIONS(47), + [anon_sym___clrcall] = ACTIONS(47), + [anon_sym___stdcall] = ACTIONS(47), + [anon_sym___fastcall] = ACTIONS(47), + [anon_sym___thiscall] = ACTIONS(47), + [anon_sym___vectorcall] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(351), + [anon_sym_LBRACK] = ACTIONS(51), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(353), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(355), + [anon_sym_switch] = ACTIONS(357), + [anon_sym_case] = ACTIONS(359), + [anon_sym_default] = ACTIONS(361), + [anon_sym_while] = ACTIONS(363), + [anon_sym_do] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_return] = ACTIONS(369), + [anon_sym_break] = ACTIONS(371), + [anon_sym_continue] = ACTIONS(373), + [anon_sym_goto] = ACTIONS(375), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(113), + [anon_sym_decltype] = ACTIONS(115), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_explicit] = ACTIONS(119), + [anon_sym_typename] = ACTIONS(121), + [anon_sym_template] = ACTIONS(377), + [anon_sym_operator] = ACTIONS(125), + [anon_sym_try] = ACTIONS(379), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(381), + [anon_sym_namespace] = ACTIONS(383), + [anon_sym_using] = ACTIONS(385), + [anon_sym_static_assert] = ACTIONS(387), + [anon_sym_concept] = ACTIONS(389), + [anon_sym_co_return] = ACTIONS(391), + [anon_sym_co_yield] = ACTIONS(393), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), + }, + [32] = { + [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(7182), + [sym_preproc_elif] = STATE(7182), + [sym_function_definition] = STATE(26), + [sym_declaration] = STATE(26), + [sym_type_definition] = STATE(26), + [sym__declaration_modifiers] = STATE(3706), + [sym__declaration_specifiers] = STATE(4664), + [sym_linkage_specification] = STATE(26), + [sym_attribute_specifier] = STATE(3706), + [sym_attribute_declaration] = STATE(1427), + [sym_ms_declspec_modifier] = STATE(3706), + [sym_ms_based_modifier] = STATE(7654), + [sym_ms_call_modifier] = STATE(2402), + [sym__declarator] = STATE(5881), + [sym_parenthesized_declarator] = STATE(5640), + [sym_attributed_declarator] = STATE(5640), + [sym_pointer_declarator] = STATE(5640), + [sym_function_declarator] = STATE(5549), + [sym_array_declarator] = STATE(5640), + [sym_compound_statement] = STATE(26), + [sym_storage_class_specifier] = STATE(3706), + [sym_type_qualifier] = STATE(3706), + [sym__type_specifier] = STATE(3820), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), + [sym_attributed_statement] = STATE(26), + [sym_labeled_statement] = STATE(26), + [sym_expression_statement] = STATE(26), + [sym_if_statement] = STATE(26), + [sym_switch_statement] = STATE(26), + [sym_case_statement] = STATE(26), + [sym_while_statement] = STATE(26), + [sym_do_statement] = STATE(26), + [sym_for_statement] = STATE(26), + [sym_return_statement] = STATE(26), + [sym_break_statement] = STATE(26), + [sym_continue_statement] = STATE(26), + [sym_goto_statement] = STATE(26), + [sym__expression] = STATE(4169), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7079), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym__empty_declaration] = STATE(26), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym__class_name] = STATE(6623), + [sym_virtual] = STATE(3706), + [sym_explicit_function_specifier] = STATE(2259), + [sym_dependent_type] = STATE(3723), + [sym_template_declaration] = STATE(26), + [sym_template_instantiation] = STATE(26), + [sym_operator_cast] = STATE(5892), + [sym__constructor_specifiers] = STATE(2259), + [sym_operator_cast_definition] = STATE(26), + [sym_operator_cast_declaration] = STATE(26), + [sym_constructor_or_destructor_definition] = STATE(26), + [sym_reference_declarator] = STATE(5640), + [sym_structured_binding_declarator] = STATE(5640), + [sym_template_type] = STATE(3921), + [sym_template_function] = STATE(4066), + [sym_namespace_definition] = STATE(26), + [sym_namespace_alias_definition] = STATE(26), + [sym_using_declaration] = STATE(26), + [sym_alias_declaration] = STATE(26), + [sym_static_assert_declaration] = STATE(26), + [sym_concept_definition] = STATE(26), + [sym_for_range_loop] = STATE(26), + [sym_co_return_statement] = STATE(26), + [sym_co_yield_statement] = STATE(26), + [sym_throw_statement] = STATE(26), + [sym_try_statement] = STATE(26), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_destructor_name] = STATE(5640), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5143), + [sym_qualified_identifier] = STATE(3249), + [sym_qualified_type_identifier] = STATE(3915), + [sym_qualified_operator_cast_identifier] = STATE(5892), + [sym_operator_name] = STATE(5640), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_preproc_if_repeat1] = STATE(26), + [aux_sym__declaration_specifiers_repeat1] = STATE(2514), + [aux_sym_attributed_declarator_repeat1] = STATE(251), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [aux_sym_operator_cast_definition_repeat1] = STATE(2259), + [sym_identifier] = ACTIONS(331), + [aux_sym_preproc_include_token1] = ACTIONS(333), + [aux_sym_preproc_def_token1] = ACTIONS(335), + [aux_sym_preproc_if_token1] = ACTIONS(337), + [aux_sym_preproc_if_token2] = ACTIONS(413), + [aux_sym_preproc_ifdef_token1] = ACTIONS(341), + [aux_sym_preproc_ifdef_token2] = ACTIONS(341), + [aux_sym_preproc_else_token1] = ACTIONS(237), + [aux_sym_preproc_elif_token1] = ACTIONS(239), + [sym_preproc_directive] = ACTIONS(343), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -31520,100 +49543,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(660), - [anon_sym_typedef] = ACTIONS(662), - [anon_sym_extern] = ACTIONS(664), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(43), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(666), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(668), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(61), - [anon_sym_unsigned] = ACTIONS(61), - [anon_sym_long] = ACTIONS(61), - [anon_sym_short] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(63), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(670), - [anon_sym_switch] = ACTIONS(672), - [anon_sym_case] = ACTIONS(674), - [anon_sym_default] = ACTIONS(676), - [anon_sym_while] = ACTIONS(678), - [anon_sym_do] = ACTIONS(680), - [anon_sym_for] = ACTIONS(682), - [anon_sym_return] = ACTIONS(684), - [anon_sym_break] = ACTIONS(686), - [anon_sym_continue] = ACTIONS(688), - [anon_sym_goto] = ACTIONS(690), + [anon_sym_SEMI] = ACTIONS(345), + [anon_sym_typedef] = ACTIONS(347), + [anon_sym_extern] = ACTIONS(349), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(45), + [anon_sym___cdecl] = ACTIONS(47), + [anon_sym___clrcall] = ACTIONS(47), + [anon_sym___stdcall] = ACTIONS(47), + [anon_sym___fastcall] = ACTIONS(47), + [anon_sym___thiscall] = ACTIONS(47), + [anon_sym___vectorcall] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(351), + [anon_sym_LBRACK] = ACTIONS(51), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(353), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(355), + [anon_sym_switch] = ACTIONS(357), + [anon_sym_case] = ACTIONS(359), + [anon_sym_default] = ACTIONS(361), + [anon_sym_while] = ACTIONS(363), + [anon_sym_do] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_return] = ACTIONS(369), + [anon_sym_break] = ACTIONS(371), + [anon_sym_continue] = ACTIONS(373), + [anon_sym_goto] = ACTIONS(375), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(107), - [anon_sym_decltype] = ACTIONS(109), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_explicit] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(115), - [anon_sym_template] = ACTIONS(692), - [anon_sym_operator] = ACTIONS(119), - [anon_sym_try] = ACTIONS(694), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(696), - [anon_sym_namespace] = ACTIONS(698), - [anon_sym_using] = ACTIONS(700), - [anon_sym_static_assert] = ACTIONS(702), - [anon_sym_concept] = ACTIONS(704), - [anon_sym_co_return] = ACTIONS(706), - [anon_sym_co_yield] = ACTIONS(708), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(113), + [anon_sym_decltype] = ACTIONS(115), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_explicit] = ACTIONS(119), + [anon_sym_typename] = ACTIONS(121), + [anon_sym_template] = ACTIONS(377), + [anon_sym_operator] = ACTIONS(125), + [anon_sym_try] = ACTIONS(379), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(381), + [anon_sym_namespace] = ACTIONS(383), + [anon_sym_using] = ACTIONS(385), + [anon_sym_static_assert] = ACTIONS(387), + [anon_sym_concept] = ACTIONS(389), + [anon_sym_co_return] = ACTIONS(391), + [anon_sym_co_yield] = ACTIONS(393), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [33] = { [sym_preproc_include] = STATE(33), @@ -31625,28 +49655,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_definition] = STATE(33), [sym_declaration] = STATE(33), [sym_type_definition] = STATE(33), - [sym__declaration_modifiers] = STATE(3225), - [sym__declaration_specifiers] = STATE(3946), + [sym__declaration_modifiers] = STATE(3706), + [sym__declaration_specifiers] = STATE(4661), [sym_linkage_specification] = STATE(33), - [sym_attribute_specifier] = STATE(3225), - [sym_attribute_declaration] = STATE(1136), - [sym_ms_declspec_modifier] = STATE(3225), - [sym_ms_based_modifier] = STATE(6104), - [sym_ms_call_modifier] = STATE(2076), - [sym__declarator] = STATE(5113), - [sym_parenthesized_declarator] = STATE(4918), - [sym_attributed_declarator] = STATE(4918), - [sym_pointer_declarator] = STATE(4918), - [sym_function_declarator] = STATE(4835), - [sym_array_declarator] = STATE(4918), + [sym_attribute_specifier] = STATE(3706), + [sym_attribute_declaration] = STATE(1427), + [sym_ms_declspec_modifier] = STATE(3706), + [sym_ms_based_modifier] = STATE(7654), + [sym_ms_call_modifier] = STATE(2439), + [sym__declarator] = STATE(5881), + [sym_parenthesized_declarator] = STATE(5640), + [sym_attributed_declarator] = STATE(5640), + [sym_pointer_declarator] = STATE(5640), + [sym_function_declarator] = STATE(5566), + [sym_array_declarator] = STATE(5640), [sym_compound_statement] = STATE(33), - [sym_storage_class_specifier] = STATE(3225), - [sym_type_qualifier] = STATE(3225), - [sym__type_specifier] = STATE(3325), - [sym_sized_type_specifier] = STATE(3232), - [sym_enum_specifier] = STATE(3232), - [sym_struct_specifier] = STATE(3232), - [sym_union_specifier] = STATE(3232), + [sym_storage_class_specifier] = STATE(3706), + [sym_type_qualifier] = STATE(3706), + [sym__type_specifier] = STATE(3800), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), [sym_attributed_statement] = STATE(33), [sym_labeled_statement] = STATE(33), [sym_expression_statement] = STATE(33), @@ -31660,44 +49690,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(33), [sym_continue_statement] = STATE(33), [sym_goto_statement] = STATE(33), - [sym__expression] = STATE(3622), - [sym_comma_expression] = STATE(6125), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), + [sym__expression] = STATE(4160), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7618), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), [sym__empty_declaration] = STATE(33), - [sym_placeholder_type_specifier] = STATE(3232), - [sym_decltype_auto] = STATE(3279), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3232), - [sym__class_name] = STATE(5753), - [sym_virtual] = STATE(3225), - [sym_explicit_function_specifier] = STATE(1929), - [sym_dependent_type] = STATE(3232), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym__class_name] = STATE(6623), + [sym_virtual] = STATE(3706), + [sym_explicit_function_specifier] = STATE(2238), + [sym_dependent_type] = STATE(3723), [sym_template_declaration] = STATE(33), [sym_template_instantiation] = STATE(33), - [sym_operator_cast] = STATE(5130), - [sym__constructor_specifiers] = STATE(1929), + [sym_operator_cast] = STATE(5918), + [sym__constructor_specifiers] = STATE(2238), [sym_operator_cast_definition] = STATE(33), [sym_operator_cast_declaration] = STATE(33), [sym_constructor_or_destructor_definition] = STATE(33), - [sym_reference_declarator] = STATE(4918), - [sym_structured_binding_declarator] = STATE(4918), - [sym_template_type] = STATE(3608), - [sym_template_function] = STATE(3494), + [sym_reference_declarator] = STATE(5640), + [sym_structured_binding_declarator] = STATE(5640), + [sym_template_type] = STATE(3921), + [sym_template_function] = STATE(4066), [sym_namespace_definition] = STATE(33), [sym_namespace_alias_definition] = STATE(33), [sym_using_declaration] = STATE(33), @@ -31709,265 +49744,285 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_co_yield_statement] = STATE(33), [sym_throw_statement] = STATE(33), [sym_try_statement] = STATE(33), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_destructor_name] = STATE(4918), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4460), - [sym_qualified_identifier] = STATE(2732), - [sym_qualified_type_identifier] = STATE(3593), - [sym_qualified_operator_cast_identifier] = STATE(5130), - [sym_operator_name] = STATE(4918), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_translation_unit_repeat1] = STATE(33), - [aux_sym__declaration_specifiers_repeat1] = STATE(2179), - [aux_sym_attributed_declarator_repeat1] = STATE(172), - [aux_sym_sized_type_specifier_repeat1] = STATE(3171), - [aux_sym_operator_cast_definition_repeat1] = STATE(1929), - [ts_builtin_sym_end] = ACTIONS(575), - [sym_identifier] = ACTIONS(710), - [aux_sym_preproc_include_token1] = ACTIONS(713), - [aux_sym_preproc_def_token1] = ACTIONS(716), - [aux_sym_preproc_if_token1] = ACTIONS(719), - [aux_sym_preproc_ifdef_token1] = ACTIONS(722), - [aux_sym_preproc_ifdef_token2] = ACTIONS(722), - [sym_preproc_directive] = ACTIONS(725), - [anon_sym_LPAREN2] = ACTIONS(353), - [anon_sym_BANG] = ACTIONS(356), - [anon_sym_TILDE] = ACTIONS(359), - [anon_sym_DASH] = ACTIONS(362), - [anon_sym_PLUS] = ACTIONS(362), - [anon_sym_STAR] = ACTIONS(365), - [anon_sym_AMP_AMP] = ACTIONS(368), - [anon_sym_AMP] = ACTIONS(371), - [anon_sym_SEMI] = ACTIONS(728), - [anon_sym_typedef] = ACTIONS(731), - [anon_sym_extern] = ACTIONS(734), - [anon_sym___attribute__] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(386), - [anon_sym_LBRACK_LBRACK] = ACTIONS(389), - [anon_sym___declspec] = ACTIONS(392), - [anon_sym___based] = ACTIONS(395), - [anon_sym___cdecl] = ACTIONS(398), - [anon_sym___clrcall] = ACTIONS(398), - [anon_sym___stdcall] = ACTIONS(398), - [anon_sym___fastcall] = ACTIONS(398), - [anon_sym___thiscall] = ACTIONS(398), - [anon_sym___vectorcall] = ACTIONS(398), - [anon_sym_LBRACE] = ACTIONS(737), - [anon_sym_LBRACK] = ACTIONS(404), - [anon_sym_static] = ACTIONS(407), - [anon_sym_register] = ACTIONS(407), - [anon_sym_inline] = ACTIONS(740), - [anon_sym_thread_local] = ACTIONS(407), - [anon_sym_const] = ACTIONS(413), - [anon_sym_volatile] = ACTIONS(413), - [anon_sym_restrict] = ACTIONS(413), - [anon_sym__Atomic] = ACTIONS(413), - [anon_sym_mutable] = ACTIONS(413), - [anon_sym_constexpr] = ACTIONS(413), - [anon_sym_constinit] = ACTIONS(413), - [anon_sym_consteval] = ACTIONS(413), - [anon_sym_signed] = ACTIONS(416), - [anon_sym_unsigned] = ACTIONS(416), - [anon_sym_long] = ACTIONS(416), - [anon_sym_short] = ACTIONS(416), - [sym_primitive_type] = ACTIONS(419), - [anon_sym_enum] = ACTIONS(422), - [anon_sym_class] = ACTIONS(425), - [anon_sym_struct] = ACTIONS(428), - [anon_sym_union] = ACTIONS(431), - [anon_sym_if] = ACTIONS(743), - [anon_sym_switch] = ACTIONS(746), - [anon_sym_case] = ACTIONS(749), - [anon_sym_default] = ACTIONS(752), - [anon_sym_while] = ACTIONS(755), - [anon_sym_do] = ACTIONS(758), - [anon_sym_for] = ACTIONS(761), - [anon_sym_return] = ACTIONS(764), - [anon_sym_break] = ACTIONS(767), - [anon_sym_continue] = ACTIONS(770), - [anon_sym_goto] = ACTIONS(773), - [anon_sym_not] = ACTIONS(362), - [anon_sym_compl] = ACTIONS(362), - [anon_sym_DASH_DASH] = ACTIONS(467), - [anon_sym_PLUS_PLUS] = ACTIONS(467), - [anon_sym_sizeof] = ACTIONS(470), - [sym_number_literal] = ACTIONS(473), - [anon_sym_L_SQUOTE] = ACTIONS(476), - [anon_sym_u_SQUOTE] = ACTIONS(476), - [anon_sym_U_SQUOTE] = ACTIONS(476), - [anon_sym_u8_SQUOTE] = ACTIONS(476), - [anon_sym_SQUOTE] = ACTIONS(476), - [anon_sym_L_DQUOTE] = ACTIONS(479), - [anon_sym_u_DQUOTE] = ACTIONS(479), - [anon_sym_U_DQUOTE] = ACTIONS(479), - [anon_sym_u8_DQUOTE] = ACTIONS(479), - [anon_sym_DQUOTE] = ACTIONS(479), - [sym_true] = ACTIONS(482), - [sym_false] = ACTIONS(482), - [sym_null] = ACTIONS(482), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(485), - [anon_sym_decltype] = ACTIONS(488), - [anon_sym_virtual] = ACTIONS(491), - [anon_sym_explicit] = ACTIONS(494), - [anon_sym_typename] = ACTIONS(497), - [anon_sym_template] = ACTIONS(776), - [anon_sym_operator] = ACTIONS(503), - [anon_sym_try] = ACTIONS(779), - [anon_sym_delete] = ACTIONS(509), - [anon_sym_throw] = ACTIONS(782), - [anon_sym_namespace] = ACTIONS(785), - [anon_sym_using] = ACTIONS(788), - [anon_sym_static_assert] = ACTIONS(791), - [anon_sym_concept] = ACTIONS(794), - [anon_sym_co_return] = ACTIONS(797), - [anon_sym_co_yield] = ACTIONS(800), - [anon_sym_R_DQUOTE] = ACTIONS(533), - [anon_sym_LR_DQUOTE] = ACTIONS(533), - [anon_sym_uR_DQUOTE] = ACTIONS(533), - [anon_sym_UR_DQUOTE] = ACTIONS(533), - [anon_sym_u8R_DQUOTE] = ACTIONS(533), - [anon_sym_co_await] = ACTIONS(536), - [anon_sym_new] = ACTIONS(539), - [anon_sym_requires] = ACTIONS(542), - [sym_this] = ACTIONS(482), - [sym_nullptr] = ACTIONS(482), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_destructor_name] = STATE(5640), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5143), + [sym_qualified_identifier] = STATE(3249), + [sym_qualified_type_identifier] = STATE(3915), + [sym_qualified_operator_cast_identifier] = STATE(5918), + [sym_operator_name] = STATE(5640), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_preproc_if_repeat1] = STATE(33), + [aux_sym__declaration_specifiers_repeat1] = STATE(2514), + [aux_sym_attributed_declarator_repeat1] = STATE(244), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [aux_sym_operator_cast_definition_repeat1] = STATE(2238), + [sym_identifier] = ACTIONS(415), + [aux_sym_preproc_include_token1] = ACTIONS(418), + [aux_sym_preproc_def_token1] = ACTIONS(421), + [aux_sym_preproc_if_token1] = ACTIONS(424), + [aux_sym_preproc_if_token2] = ACTIONS(427), + [aux_sym_preproc_ifdef_token1] = ACTIONS(429), + [aux_sym_preproc_ifdef_token2] = ACTIONS(429), + [aux_sym_preproc_else_token1] = ACTIONS(427), + [aux_sym_preproc_elif_token1] = ACTIONS(427), + [aux_sym_preproc_elifdef_token1] = ACTIONS(427), + [aux_sym_preproc_elifdef_token2] = ACTIONS(427), + [sym_preproc_directive] = ACTIONS(432), + [anon_sym_LPAREN2] = ACTIONS(435), + [anon_sym_BANG] = ACTIONS(438), + [anon_sym_TILDE] = ACTIONS(441), + [anon_sym_DASH] = ACTIONS(444), + [anon_sym_PLUS] = ACTIONS(444), + [anon_sym_STAR] = ACTIONS(447), + [anon_sym_AMP_AMP] = ACTIONS(450), + [anon_sym_AMP] = ACTIONS(453), + [anon_sym_SEMI] = ACTIONS(456), + [anon_sym_typedef] = ACTIONS(459), + [anon_sym_extern] = ACTIONS(462), + [anon_sym___attribute__] = ACTIONS(465), + [anon_sym_COLON_COLON] = ACTIONS(468), + [anon_sym_LBRACK_LBRACK] = ACTIONS(471), + [anon_sym___declspec] = ACTIONS(474), + [anon_sym___based] = ACTIONS(477), + [anon_sym___cdecl] = ACTIONS(480), + [anon_sym___clrcall] = ACTIONS(480), + [anon_sym___stdcall] = ACTIONS(480), + [anon_sym___fastcall] = ACTIONS(480), + [anon_sym___thiscall] = ACTIONS(480), + [anon_sym___vectorcall] = ACTIONS(480), + [anon_sym_LBRACE] = ACTIONS(483), + [anon_sym_LBRACK] = ACTIONS(486), + [anon_sym_static] = ACTIONS(489), + [anon_sym_register] = ACTIONS(489), + [anon_sym_inline] = ACTIONS(492), + [anon_sym_thread_local] = ACTIONS(489), + [anon_sym_const] = ACTIONS(495), + [anon_sym_constexpr] = ACTIONS(495), + [anon_sym_volatile] = ACTIONS(495), + [anon_sym_restrict] = ACTIONS(495), + [anon_sym___restrict__] = ACTIONS(495), + [anon_sym__Atomic] = ACTIONS(495), + [anon_sym__Noreturn] = ACTIONS(495), + [anon_sym_noreturn] = ACTIONS(495), + [anon_sym_mutable] = ACTIONS(495), + [anon_sym_constinit] = ACTIONS(495), + [anon_sym_consteval] = ACTIONS(495), + [anon_sym_signed] = ACTIONS(498), + [anon_sym_unsigned] = ACTIONS(498), + [anon_sym_long] = ACTIONS(498), + [anon_sym_short] = ACTIONS(498), + [sym_primitive_type] = ACTIONS(501), + [anon_sym_enum] = ACTIONS(504), + [anon_sym_class] = ACTIONS(507), + [anon_sym_struct] = ACTIONS(510), + [anon_sym_union] = ACTIONS(513), + [anon_sym_if] = ACTIONS(516), + [anon_sym_switch] = ACTIONS(519), + [anon_sym_case] = ACTIONS(522), + [anon_sym_default] = ACTIONS(525), + [anon_sym_while] = ACTIONS(528), + [anon_sym_do] = ACTIONS(531), + [anon_sym_for] = ACTIONS(534), + [anon_sym_return] = ACTIONS(537), + [anon_sym_break] = ACTIONS(540), + [anon_sym_continue] = ACTIONS(543), + [anon_sym_goto] = ACTIONS(546), + [anon_sym_not] = ACTIONS(444), + [anon_sym_compl] = ACTIONS(444), + [anon_sym_DASH_DASH] = ACTIONS(549), + [anon_sym_PLUS_PLUS] = ACTIONS(549), + [anon_sym_sizeof] = ACTIONS(552), + [anon_sym_offsetof] = ACTIONS(555), + [anon_sym__Generic] = ACTIONS(558), + [anon_sym_asm] = ACTIONS(561), + [anon_sym___asm__] = ACTIONS(561), + [sym_number_literal] = ACTIONS(564), + [anon_sym_L_SQUOTE] = ACTIONS(567), + [anon_sym_u_SQUOTE] = ACTIONS(567), + [anon_sym_U_SQUOTE] = ACTIONS(567), + [anon_sym_u8_SQUOTE] = ACTIONS(567), + [anon_sym_SQUOTE] = ACTIONS(567), + [anon_sym_L_DQUOTE] = ACTIONS(570), + [anon_sym_u_DQUOTE] = ACTIONS(570), + [anon_sym_U_DQUOTE] = ACTIONS(570), + [anon_sym_u8_DQUOTE] = ACTIONS(570), + [anon_sym_DQUOTE] = ACTIONS(570), + [sym_true] = ACTIONS(573), + [sym_false] = ACTIONS(573), + [anon_sym_NULL] = ACTIONS(576), + [anon_sym_nullptr] = ACTIONS(576), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(579), + [anon_sym_decltype] = ACTIONS(582), + [anon_sym_virtual] = ACTIONS(585), + [anon_sym_explicit] = ACTIONS(588), + [anon_sym_typename] = ACTIONS(591), + [anon_sym_template] = ACTIONS(594), + [anon_sym_operator] = ACTIONS(597), + [anon_sym_try] = ACTIONS(600), + [anon_sym_delete] = ACTIONS(603), + [anon_sym_throw] = ACTIONS(606), + [anon_sym_namespace] = ACTIONS(609), + [anon_sym_using] = ACTIONS(612), + [anon_sym_static_assert] = ACTIONS(615), + [anon_sym_concept] = ACTIONS(618), + [anon_sym_co_return] = ACTIONS(621), + [anon_sym_co_yield] = ACTIONS(624), + [anon_sym_R_DQUOTE] = ACTIONS(627), + [anon_sym_LR_DQUOTE] = ACTIONS(627), + [anon_sym_uR_DQUOTE] = ACTIONS(627), + [anon_sym_UR_DQUOTE] = ACTIONS(627), + [anon_sym_u8R_DQUOTE] = ACTIONS(627), + [anon_sym_co_await] = ACTIONS(630), + [anon_sym_new] = ACTIONS(633), + [anon_sym_requires] = ACTIONS(636), + [sym_this] = ACTIONS(573), }, [34] = { - [sym_preproc_include] = STATE(72), - [sym_preproc_def] = STATE(72), - [sym_preproc_function_def] = STATE(72), - [sym_preproc_call] = STATE(72), - [sym_preproc_if] = STATE(72), - [sym_preproc_ifdef] = STATE(72), - [sym_function_definition] = STATE(72), - [sym_declaration] = STATE(72), - [sym_type_definition] = STATE(72), - [sym__declaration_modifiers] = STATE(3225), - [sym__declaration_specifiers] = STATE(3990), - [sym_linkage_specification] = STATE(72), - [sym_attribute_specifier] = STATE(3225), - [sym_attribute_declaration] = STATE(1136), - [sym_ms_declspec_modifier] = STATE(3225), - [sym_ms_based_modifier] = STATE(6104), - [sym_ms_call_modifier] = STATE(2018), - [sym__declarator] = STATE(5113), - [sym_parenthesized_declarator] = STATE(4918), - [sym_attributed_declarator] = STATE(4918), - [sym_pointer_declarator] = STATE(4918), - [sym_function_declarator] = STATE(4823), - [sym_array_declarator] = STATE(4918), - [sym_compound_statement] = STATE(72), - [sym_storage_class_specifier] = STATE(3225), - [sym_type_qualifier] = STATE(3225), - [sym__type_specifier] = STATE(3317), - [sym_sized_type_specifier] = STATE(3232), - [sym_enum_specifier] = STATE(3232), - [sym_struct_specifier] = STATE(3232), - [sym_union_specifier] = STATE(3232), - [sym_attributed_statement] = STATE(72), - [sym_labeled_statement] = STATE(72), - [sym_expression_statement] = STATE(72), - [sym_if_statement] = STATE(72), - [sym_switch_statement] = STATE(72), - [sym_case_statement] = STATE(72), - [sym_while_statement] = STATE(72), - [sym_do_statement] = STATE(72), - [sym_for_statement] = STATE(72), - [sym_return_statement] = STATE(72), - [sym_break_statement] = STATE(72), - [sym_continue_statement] = STATE(72), - [sym_goto_statement] = STATE(72), - [sym__expression] = STATE(3522), - [sym_comma_expression] = STATE(6276), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym__empty_declaration] = STATE(72), - [sym_placeholder_type_specifier] = STATE(3232), - [sym_decltype_auto] = STATE(3279), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3232), - [sym__class_name] = STATE(5753), - [sym_virtual] = STATE(3225), - [sym_explicit_function_specifier] = STATE(1958), - [sym_dependent_type] = STATE(3232), - [sym_template_declaration] = STATE(72), - [sym_template_instantiation] = STATE(72), - [sym_operator_cast] = STATE(5144), - [sym__constructor_specifiers] = STATE(1958), - [sym_operator_cast_definition] = STATE(72), - [sym_operator_cast_declaration] = STATE(72), - [sym_constructor_or_destructor_definition] = STATE(72), - [sym_reference_declarator] = STATE(4918), - [sym_structured_binding_declarator] = STATE(4918), - [sym_template_type] = STATE(3608), - [sym_template_function] = STATE(3494), - [sym_namespace_definition] = STATE(72), - [sym_namespace_alias_definition] = STATE(72), - [sym_using_declaration] = STATE(72), - [sym_alias_declaration] = STATE(72), - [sym_static_assert_declaration] = STATE(72), - [sym_concept_definition] = STATE(72), - [sym_for_range_loop] = STATE(72), - [sym_co_return_statement] = STATE(72), - [sym_co_yield_statement] = STATE(72), - [sym_throw_statement] = STATE(72), - [sym_try_statement] = STATE(72), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_destructor_name] = STATE(4918), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4460), - [sym_qualified_identifier] = STATE(2732), - [sym_qualified_type_identifier] = STATE(3593), - [sym_qualified_operator_cast_identifier] = STATE(5144), - [sym_operator_name] = STATE(4918), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_translation_unit_repeat1] = STATE(72), - [aux_sym__declaration_specifiers_repeat1] = STATE(2179), - [aux_sym_attributed_declarator_repeat1] = STATE(151), - [aux_sym_sized_type_specifier_repeat1] = STATE(3171), - [aux_sym_operator_cast_definition_repeat1] = STATE(1958), - [sym_identifier] = ACTIONS(646), - [aux_sym_preproc_include_token1] = ACTIONS(648), - [aux_sym_preproc_def_token1] = ACTIONS(650), - [aux_sym_preproc_if_token1] = ACTIONS(652), - [aux_sym_preproc_if_token2] = ACTIONS(803), - [aux_sym_preproc_ifdef_token1] = ACTIONS(656), - [aux_sym_preproc_ifdef_token2] = ACTIONS(656), - [sym_preproc_directive] = ACTIONS(658), + [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(7467), + [sym_preproc_elif] = STATE(7467), + [sym_function_definition] = STATE(37), + [sym_declaration] = STATE(37), + [sym_type_definition] = STATE(37), + [sym__declaration_modifiers] = STATE(3706), + [sym__declaration_specifiers] = STATE(4664), + [sym_linkage_specification] = STATE(37), + [sym_attribute_specifier] = STATE(3706), + [sym_attribute_declaration] = STATE(1427), + [sym_ms_declspec_modifier] = STATE(3706), + [sym_ms_based_modifier] = STATE(7654), + [sym_ms_call_modifier] = STATE(2402), + [sym__declarator] = STATE(5881), + [sym_parenthesized_declarator] = STATE(5640), + [sym_attributed_declarator] = STATE(5640), + [sym_pointer_declarator] = STATE(5640), + [sym_function_declarator] = STATE(5549), + [sym_array_declarator] = STATE(5640), + [sym_compound_statement] = STATE(37), + [sym_storage_class_specifier] = STATE(3706), + [sym_type_qualifier] = STATE(3706), + [sym__type_specifier] = STATE(3820), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), + [sym_attributed_statement] = STATE(37), + [sym_labeled_statement] = STATE(37), + [sym_expression_statement] = STATE(37), + [sym_if_statement] = STATE(37), + [sym_switch_statement] = STATE(37), + [sym_case_statement] = STATE(37), + [sym_while_statement] = STATE(37), + [sym_do_statement] = STATE(37), + [sym_for_statement] = STATE(37), + [sym_return_statement] = STATE(37), + [sym_break_statement] = STATE(37), + [sym_continue_statement] = STATE(37), + [sym_goto_statement] = STATE(37), + [sym__expression] = STATE(4169), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7079), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym__empty_declaration] = STATE(37), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym__class_name] = STATE(6623), + [sym_virtual] = STATE(3706), + [sym_explicit_function_specifier] = STATE(2259), + [sym_dependent_type] = STATE(3723), + [sym_template_declaration] = STATE(37), + [sym_template_instantiation] = STATE(37), + [sym_operator_cast] = STATE(5892), + [sym__constructor_specifiers] = STATE(2259), + [sym_operator_cast_definition] = STATE(37), + [sym_operator_cast_declaration] = STATE(37), + [sym_constructor_or_destructor_definition] = STATE(37), + [sym_reference_declarator] = STATE(5640), + [sym_structured_binding_declarator] = STATE(5640), + [sym_template_type] = STATE(3921), + [sym_template_function] = STATE(4066), + [sym_namespace_definition] = STATE(37), + [sym_namespace_alias_definition] = STATE(37), + [sym_using_declaration] = STATE(37), + [sym_alias_declaration] = STATE(37), + [sym_static_assert_declaration] = STATE(37), + [sym_concept_definition] = STATE(37), + [sym_for_range_loop] = STATE(37), + [sym_co_return_statement] = STATE(37), + [sym_co_yield_statement] = STATE(37), + [sym_throw_statement] = STATE(37), + [sym_try_statement] = STATE(37), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_destructor_name] = STATE(5640), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5143), + [sym_qualified_identifier] = STATE(3249), + [sym_qualified_type_identifier] = STATE(3915), + [sym_qualified_operator_cast_identifier] = STATE(5892), + [sym_operator_name] = STATE(5640), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_preproc_if_repeat1] = STATE(37), + [aux_sym__declaration_specifiers_repeat1] = STATE(2514), + [aux_sym_attributed_declarator_repeat1] = STATE(251), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [aux_sym_operator_cast_definition_repeat1] = STATE(2259), + [sym_identifier] = ACTIONS(331), + [aux_sym_preproc_include_token1] = ACTIONS(333), + [aux_sym_preproc_def_token1] = ACTIONS(335), + [aux_sym_preproc_if_token1] = ACTIONS(337), + [aux_sym_preproc_if_token2] = ACTIONS(639), + [aux_sym_preproc_ifdef_token1] = ACTIONS(341), + [aux_sym_preproc_ifdef_token2] = ACTIONS(341), + [aux_sym_preproc_else_token1] = ACTIONS(237), + [aux_sym_preproc_elif_token1] = ACTIONS(239), + [sym_preproc_directive] = ACTIONS(343), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -31976,225 +50031,242 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(660), - [anon_sym_typedef] = ACTIONS(662), - [anon_sym_extern] = ACTIONS(664), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(43), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(666), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(668), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(61), - [anon_sym_unsigned] = ACTIONS(61), - [anon_sym_long] = ACTIONS(61), - [anon_sym_short] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(63), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(670), - [anon_sym_switch] = ACTIONS(672), - [anon_sym_case] = ACTIONS(674), - [anon_sym_default] = ACTIONS(676), - [anon_sym_while] = ACTIONS(678), - [anon_sym_do] = ACTIONS(680), - [anon_sym_for] = ACTIONS(682), - [anon_sym_return] = ACTIONS(684), - [anon_sym_break] = ACTIONS(686), - [anon_sym_continue] = ACTIONS(688), - [anon_sym_goto] = ACTIONS(690), + [anon_sym_SEMI] = ACTIONS(345), + [anon_sym_typedef] = ACTIONS(347), + [anon_sym_extern] = ACTIONS(349), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(45), + [anon_sym___cdecl] = ACTIONS(47), + [anon_sym___clrcall] = ACTIONS(47), + [anon_sym___stdcall] = ACTIONS(47), + [anon_sym___fastcall] = ACTIONS(47), + [anon_sym___thiscall] = ACTIONS(47), + [anon_sym___vectorcall] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(351), + [anon_sym_LBRACK] = ACTIONS(51), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(353), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(355), + [anon_sym_switch] = ACTIONS(357), + [anon_sym_case] = ACTIONS(359), + [anon_sym_default] = ACTIONS(361), + [anon_sym_while] = ACTIONS(363), + [anon_sym_do] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_return] = ACTIONS(369), + [anon_sym_break] = ACTIONS(371), + [anon_sym_continue] = ACTIONS(373), + [anon_sym_goto] = ACTIONS(375), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(107), - [anon_sym_decltype] = ACTIONS(109), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_explicit] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(115), - [anon_sym_template] = ACTIONS(692), - [anon_sym_operator] = ACTIONS(119), - [anon_sym_try] = ACTIONS(694), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(696), - [anon_sym_namespace] = ACTIONS(698), - [anon_sym_using] = ACTIONS(700), - [anon_sym_static_assert] = ACTIONS(702), - [anon_sym_concept] = ACTIONS(704), - [anon_sym_co_return] = ACTIONS(706), - [anon_sym_co_yield] = ACTIONS(708), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(113), + [anon_sym_decltype] = ACTIONS(115), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_explicit] = ACTIONS(119), + [anon_sym_typename] = ACTIONS(121), + [anon_sym_template] = ACTIONS(377), + [anon_sym_operator] = ACTIONS(125), + [anon_sym_try] = ACTIONS(379), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(381), + [anon_sym_namespace] = ACTIONS(383), + [anon_sym_using] = ACTIONS(385), + [anon_sym_static_assert] = ACTIONS(387), + [anon_sym_concept] = ACTIONS(389), + [anon_sym_co_return] = ACTIONS(391), + [anon_sym_co_yield] = ACTIONS(393), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [35] = { - [sym_preproc_include] = STATE(29), - [sym_preproc_def] = STATE(29), - [sym_preproc_function_def] = STATE(29), - [sym_preproc_call] = STATE(29), - [sym_preproc_if] = STATE(29), - [sym_preproc_ifdef] = STATE(29), - [sym_function_definition] = STATE(29), - [sym_declaration] = STATE(29), - [sym_type_definition] = STATE(29), - [sym__declaration_modifiers] = STATE(3225), - [sym__declaration_specifiers] = STATE(3962), - [sym_linkage_specification] = STATE(29), - [sym_attribute_specifier] = STATE(3225), - [sym_attribute_declaration] = STATE(1136), - [sym_ms_declspec_modifier] = STATE(3225), - [sym_ms_based_modifier] = STATE(6104), - [sym_ms_call_modifier] = STATE(2065), - [sym__declarator] = STATE(5113), - [sym_parenthesized_declarator] = STATE(4918), - [sym_attributed_declarator] = STATE(4918), - [sym_pointer_declarator] = STATE(4918), - [sym_function_declarator] = STATE(4870), - [sym_array_declarator] = STATE(4918), - [sym_compound_statement] = STATE(29), - [sym_storage_class_specifier] = STATE(3225), - [sym_type_qualifier] = STATE(3225), - [sym__type_specifier] = STATE(3322), - [sym_sized_type_specifier] = STATE(3232), - [sym_enum_specifier] = STATE(3232), - [sym_struct_specifier] = STATE(3232), - [sym_union_specifier] = STATE(3232), - [sym_attributed_statement] = STATE(29), - [sym_labeled_statement] = STATE(29), - [sym_expression_statement] = STATE(29), - [sym_if_statement] = STATE(29), - [sym_switch_statement] = STATE(29), - [sym_case_statement] = STATE(29), - [sym_while_statement] = STATE(29), - [sym_do_statement] = STATE(29), - [sym_for_statement] = STATE(29), - [sym_return_statement] = STATE(29), - [sym_break_statement] = STATE(29), - [sym_continue_statement] = STATE(29), - [sym_goto_statement] = STATE(29), - [sym__expression] = STATE(3502), - [sym_comma_expression] = STATE(6595), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym__empty_declaration] = STATE(29), - [sym_placeholder_type_specifier] = STATE(3232), - [sym_decltype_auto] = STATE(3279), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3232), - [sym__class_name] = STATE(5753), - [sym_virtual] = STATE(3225), - [sym_explicit_function_specifier] = STATE(1936), - [sym_dependent_type] = STATE(3232), - [sym_template_declaration] = STATE(29), - [sym_template_instantiation] = STATE(29), - [sym_operator_cast] = STATE(5134), - [sym__constructor_specifiers] = STATE(1936), - [sym_operator_cast_definition] = STATE(29), - [sym_operator_cast_declaration] = STATE(29), - [sym_constructor_or_destructor_definition] = STATE(29), - [sym_reference_declarator] = STATE(4918), - [sym_structured_binding_declarator] = STATE(4918), - [sym_template_type] = STATE(3608), - [sym_template_function] = STATE(3494), - [sym_namespace_definition] = STATE(29), - [sym_namespace_alias_definition] = STATE(29), - [sym_using_declaration] = STATE(29), - [sym_alias_declaration] = STATE(29), - [sym_static_assert_declaration] = STATE(29), - [sym_concept_definition] = STATE(29), - [sym_for_range_loop] = STATE(29), - [sym_co_return_statement] = STATE(29), - [sym_co_yield_statement] = STATE(29), - [sym_throw_statement] = STATE(29), - [sym_try_statement] = STATE(29), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_destructor_name] = STATE(4918), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4460), - [sym_qualified_identifier] = STATE(2732), - [sym_qualified_type_identifier] = STATE(3593), - [sym_qualified_operator_cast_identifier] = STATE(5134), - [sym_operator_name] = STATE(4918), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_translation_unit_repeat1] = STATE(29), - [aux_sym__declaration_specifiers_repeat1] = STATE(2179), - [aux_sym_attributed_declarator_repeat1] = STATE(206), - [aux_sym_sized_type_specifier_repeat1] = STATE(3171), - [aux_sym_operator_cast_definition_repeat1] = STATE(1936), - [sym_identifier] = ACTIONS(147), - [aux_sym_preproc_include_token1] = ACTIONS(149), - [aux_sym_preproc_def_token1] = ACTIONS(151), - [aux_sym_preproc_if_token1] = ACTIONS(155), - [aux_sym_preproc_ifdef_token1] = ACTIONS(157), - [aux_sym_preproc_ifdef_token2] = ACTIONS(157), - [sym_preproc_directive] = ACTIONS(159), + [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(7003), + [sym_preproc_elif] = STATE(7003), + [sym_function_definition] = STATE(37), + [sym_declaration] = STATE(37), + [sym_type_definition] = STATE(37), + [sym__declaration_modifiers] = STATE(3706), + [sym__declaration_specifiers] = STATE(4664), + [sym_linkage_specification] = STATE(37), + [sym_attribute_specifier] = STATE(3706), + [sym_attribute_declaration] = STATE(1427), + [sym_ms_declspec_modifier] = STATE(3706), + [sym_ms_based_modifier] = STATE(7654), + [sym_ms_call_modifier] = STATE(2402), + [sym__declarator] = STATE(5881), + [sym_parenthesized_declarator] = STATE(5640), + [sym_attributed_declarator] = STATE(5640), + [sym_pointer_declarator] = STATE(5640), + [sym_function_declarator] = STATE(5549), + [sym_array_declarator] = STATE(5640), + [sym_compound_statement] = STATE(37), + [sym_storage_class_specifier] = STATE(3706), + [sym_type_qualifier] = STATE(3706), + [sym__type_specifier] = STATE(3820), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), + [sym_attributed_statement] = STATE(37), + [sym_labeled_statement] = STATE(37), + [sym_expression_statement] = STATE(37), + [sym_if_statement] = STATE(37), + [sym_switch_statement] = STATE(37), + [sym_case_statement] = STATE(37), + [sym_while_statement] = STATE(37), + [sym_do_statement] = STATE(37), + [sym_for_statement] = STATE(37), + [sym_return_statement] = STATE(37), + [sym_break_statement] = STATE(37), + [sym_continue_statement] = STATE(37), + [sym_goto_statement] = STATE(37), + [sym__expression] = STATE(4169), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7079), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym__empty_declaration] = STATE(37), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym__class_name] = STATE(6623), + [sym_virtual] = STATE(3706), + [sym_explicit_function_specifier] = STATE(2259), + [sym_dependent_type] = STATE(3723), + [sym_template_declaration] = STATE(37), + [sym_template_instantiation] = STATE(37), + [sym_operator_cast] = STATE(5892), + [sym__constructor_specifiers] = STATE(2259), + [sym_operator_cast_definition] = STATE(37), + [sym_operator_cast_declaration] = STATE(37), + [sym_constructor_or_destructor_definition] = STATE(37), + [sym_reference_declarator] = STATE(5640), + [sym_structured_binding_declarator] = STATE(5640), + [sym_template_type] = STATE(3921), + [sym_template_function] = STATE(4066), + [sym_namespace_definition] = STATE(37), + [sym_namespace_alias_definition] = STATE(37), + [sym_using_declaration] = STATE(37), + [sym_alias_declaration] = STATE(37), + [sym_static_assert_declaration] = STATE(37), + [sym_concept_definition] = STATE(37), + [sym_for_range_loop] = STATE(37), + [sym_co_return_statement] = STATE(37), + [sym_co_yield_statement] = STATE(37), + [sym_throw_statement] = STATE(37), + [sym_try_statement] = STATE(37), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_destructor_name] = STATE(5640), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5143), + [sym_qualified_identifier] = STATE(3249), + [sym_qualified_type_identifier] = STATE(3915), + [sym_qualified_operator_cast_identifier] = STATE(5892), + [sym_operator_name] = STATE(5640), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_preproc_if_repeat1] = STATE(37), + [aux_sym__declaration_specifiers_repeat1] = STATE(2514), + [aux_sym_attributed_declarator_repeat1] = STATE(251), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [aux_sym_operator_cast_definition_repeat1] = STATE(2259), + [sym_identifier] = ACTIONS(331), + [aux_sym_preproc_include_token1] = ACTIONS(333), + [aux_sym_preproc_def_token1] = ACTIONS(335), + [aux_sym_preproc_if_token1] = ACTIONS(337), + [aux_sym_preproc_if_token2] = ACTIONS(641), + [aux_sym_preproc_ifdef_token1] = ACTIONS(341), + [aux_sym_preproc_ifdef_token2] = ACTIONS(341), + [aux_sym_preproc_else_token1] = ACTIONS(237), + [aux_sym_preproc_elif_token1] = ACTIONS(239), + [sym_preproc_directive] = ACTIONS(343), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -32203,101 +50275,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_typedef] = ACTIONS(163), - [anon_sym_extern] = ACTIONS(165), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(43), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_RBRACE] = ACTIONS(805), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(173), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(61), - [anon_sym_unsigned] = ACTIONS(61), - [anon_sym_long] = ACTIONS(61), - [anon_sym_short] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(63), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(175), - [anon_sym_switch] = ACTIONS(177), - [anon_sym_case] = ACTIONS(179), - [anon_sym_default] = ACTIONS(181), - [anon_sym_while] = ACTIONS(183), - [anon_sym_do] = ACTIONS(185), - [anon_sym_for] = ACTIONS(187), - [anon_sym_return] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), - [anon_sym_goto] = ACTIONS(195), + [anon_sym_SEMI] = ACTIONS(345), + [anon_sym_typedef] = ACTIONS(347), + [anon_sym_extern] = ACTIONS(349), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(45), + [anon_sym___cdecl] = ACTIONS(47), + [anon_sym___clrcall] = ACTIONS(47), + [anon_sym___stdcall] = ACTIONS(47), + [anon_sym___fastcall] = ACTIONS(47), + [anon_sym___thiscall] = ACTIONS(47), + [anon_sym___vectorcall] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(351), + [anon_sym_LBRACK] = ACTIONS(51), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(353), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(355), + [anon_sym_switch] = ACTIONS(357), + [anon_sym_case] = ACTIONS(359), + [anon_sym_default] = ACTIONS(361), + [anon_sym_while] = ACTIONS(363), + [anon_sym_do] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_return] = ACTIONS(369), + [anon_sym_break] = ACTIONS(371), + [anon_sym_continue] = ACTIONS(373), + [anon_sym_goto] = ACTIONS(375), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(107), - [anon_sym_decltype] = ACTIONS(109), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_explicit] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(115), - [anon_sym_template] = ACTIONS(199), - [anon_sym_operator] = ACTIONS(119), - [anon_sym_try] = ACTIONS(201), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(203), - [anon_sym_namespace] = ACTIONS(205), - [anon_sym_using] = ACTIONS(207), - [anon_sym_static_assert] = ACTIONS(209), - [anon_sym_concept] = ACTIONS(211), - [anon_sym_co_return] = ACTIONS(213), - [anon_sym_co_yield] = ACTIONS(215), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(113), + [anon_sym_decltype] = ACTIONS(115), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_explicit] = ACTIONS(119), + [anon_sym_typename] = ACTIONS(121), + [anon_sym_template] = ACTIONS(377), + [anon_sym_operator] = ACTIONS(125), + [anon_sym_try] = ACTIONS(379), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(381), + [anon_sym_namespace] = ACTIONS(383), + [anon_sym_using] = ACTIONS(385), + [anon_sym_static_assert] = ACTIONS(387), + [anon_sym_concept] = ACTIONS(389), + [anon_sym_co_return] = ACTIONS(391), + [anon_sym_co_yield] = ACTIONS(393), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [36] = { [sym_preproc_include] = STATE(37), @@ -32306,31 +50384,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(37), [sym_preproc_if] = STATE(37), [sym_preproc_ifdef] = STATE(37), + [sym_preproc_else] = STATE(7545), + [sym_preproc_elif] = STATE(7545), [sym_function_definition] = STATE(37), [sym_declaration] = STATE(37), [sym_type_definition] = STATE(37), - [sym__declaration_modifiers] = STATE(3225), - [sym__declaration_specifiers] = STATE(3962), + [sym__declaration_modifiers] = STATE(3706), + [sym__declaration_specifiers] = STATE(4664), [sym_linkage_specification] = STATE(37), - [sym_attribute_specifier] = STATE(3225), - [sym_attribute_declaration] = STATE(1136), - [sym_ms_declspec_modifier] = STATE(3225), - [sym_ms_based_modifier] = STATE(6104), - [sym_ms_call_modifier] = STATE(2065), - [sym__declarator] = STATE(5113), - [sym_parenthesized_declarator] = STATE(4918), - [sym_attributed_declarator] = STATE(4918), - [sym_pointer_declarator] = STATE(4918), - [sym_function_declarator] = STATE(4870), - [sym_array_declarator] = STATE(4918), + [sym_attribute_specifier] = STATE(3706), + [sym_attribute_declaration] = STATE(1427), + [sym_ms_declspec_modifier] = STATE(3706), + [sym_ms_based_modifier] = STATE(7654), + [sym_ms_call_modifier] = STATE(2402), + [sym__declarator] = STATE(5881), + [sym_parenthesized_declarator] = STATE(5640), + [sym_attributed_declarator] = STATE(5640), + [sym_pointer_declarator] = STATE(5640), + [sym_function_declarator] = STATE(5549), + [sym_array_declarator] = STATE(5640), [sym_compound_statement] = STATE(37), - [sym_storage_class_specifier] = STATE(3225), - [sym_type_qualifier] = STATE(3225), - [sym__type_specifier] = STATE(3322), - [sym_sized_type_specifier] = STATE(3232), - [sym_enum_specifier] = STATE(3232), - [sym_struct_specifier] = STATE(3232), - [sym_union_specifier] = STATE(3232), + [sym_storage_class_specifier] = STATE(3706), + [sym_type_qualifier] = STATE(3706), + [sym__type_specifier] = STATE(3820), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), [sym_attributed_statement] = STATE(37), [sym_labeled_statement] = STATE(37), [sym_expression_statement] = STATE(37), @@ -32344,44 +50424,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(37), [sym_continue_statement] = STATE(37), [sym_goto_statement] = STATE(37), - [sym__expression] = STATE(3502), - [sym_comma_expression] = STATE(6595), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), + [sym__expression] = STATE(4169), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7079), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), [sym__empty_declaration] = STATE(37), - [sym_placeholder_type_specifier] = STATE(3232), - [sym_decltype_auto] = STATE(3279), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3232), - [sym__class_name] = STATE(5753), - [sym_virtual] = STATE(3225), - [sym_explicit_function_specifier] = STATE(1936), - [sym_dependent_type] = STATE(3232), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym__class_name] = STATE(6623), + [sym_virtual] = STATE(3706), + [sym_explicit_function_specifier] = STATE(2259), + [sym_dependent_type] = STATE(3723), [sym_template_declaration] = STATE(37), [sym_template_instantiation] = STATE(37), - [sym_operator_cast] = STATE(5134), - [sym__constructor_specifiers] = STATE(1936), + [sym_operator_cast] = STATE(5892), + [sym__constructor_specifiers] = STATE(2259), [sym_operator_cast_definition] = STATE(37), [sym_operator_cast_declaration] = STATE(37), [sym_constructor_or_destructor_definition] = STATE(37), - [sym_reference_declarator] = STATE(4918), - [sym_structured_binding_declarator] = STATE(4918), - [sym_template_type] = STATE(3608), - [sym_template_function] = STATE(3494), + [sym_reference_declarator] = STATE(5640), + [sym_structured_binding_declarator] = STATE(5640), + [sym_template_type] = STATE(3921), + [sym_template_function] = STATE(4066), [sym_namespace_definition] = STATE(37), [sym_namespace_alias_definition] = STATE(37), [sym_using_declaration] = STATE(37), @@ -32393,36 +50478,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_co_yield_statement] = STATE(37), [sym_throw_statement] = STATE(37), [sym_try_statement] = STATE(37), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_destructor_name] = STATE(4918), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4460), - [sym_qualified_identifier] = STATE(2732), - [sym_qualified_type_identifier] = STATE(3593), - [sym_qualified_operator_cast_identifier] = STATE(5134), - [sym_operator_name] = STATE(4918), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_translation_unit_repeat1] = STATE(37), - [aux_sym__declaration_specifiers_repeat1] = STATE(2179), - [aux_sym_attributed_declarator_repeat1] = STATE(206), - [aux_sym_sized_type_specifier_repeat1] = STATE(3171), - [aux_sym_operator_cast_definition_repeat1] = STATE(1936), - [sym_identifier] = ACTIONS(147), - [aux_sym_preproc_include_token1] = ACTIONS(149), - [aux_sym_preproc_def_token1] = ACTIONS(151), - [aux_sym_preproc_if_token1] = ACTIONS(155), - [aux_sym_preproc_ifdef_token1] = ACTIONS(157), - [aux_sym_preproc_ifdef_token2] = ACTIONS(157), - [sym_preproc_directive] = ACTIONS(159), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_destructor_name] = STATE(5640), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5143), + [sym_qualified_identifier] = STATE(3249), + [sym_qualified_type_identifier] = STATE(3915), + [sym_qualified_operator_cast_identifier] = STATE(5892), + [sym_operator_name] = STATE(5640), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_preproc_if_repeat1] = STATE(37), + [aux_sym__declaration_specifiers_repeat1] = STATE(2514), + [aux_sym_attributed_declarator_repeat1] = STATE(251), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [aux_sym_operator_cast_definition_repeat1] = STATE(2259), + [sym_identifier] = ACTIONS(331), + [aux_sym_preproc_include_token1] = ACTIONS(333), + [aux_sym_preproc_def_token1] = ACTIONS(335), + [aux_sym_preproc_if_token1] = ACTIONS(337), + [aux_sym_preproc_if_token2] = ACTIONS(643), + [aux_sym_preproc_ifdef_token1] = ACTIONS(341), + [aux_sym_preproc_ifdef_token2] = ACTIONS(341), + [aux_sym_preproc_else_token1] = ACTIONS(237), + [aux_sym_preproc_elif_token1] = ACTIONS(239), + [sym_preproc_directive] = ACTIONS(343), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -32431,454 +50519,479 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_typedef] = ACTIONS(163), - [anon_sym_extern] = ACTIONS(165), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(43), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_RBRACE] = ACTIONS(807), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(173), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(61), - [anon_sym_unsigned] = ACTIONS(61), - [anon_sym_long] = ACTIONS(61), - [anon_sym_short] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(63), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(175), - [anon_sym_switch] = ACTIONS(177), - [anon_sym_case] = ACTIONS(179), - [anon_sym_default] = ACTIONS(181), - [anon_sym_while] = ACTIONS(183), - [anon_sym_do] = ACTIONS(185), - [anon_sym_for] = ACTIONS(187), - [anon_sym_return] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), - [anon_sym_goto] = ACTIONS(195), + [anon_sym_SEMI] = ACTIONS(345), + [anon_sym_typedef] = ACTIONS(347), + [anon_sym_extern] = ACTIONS(349), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(45), + [anon_sym___cdecl] = ACTIONS(47), + [anon_sym___clrcall] = ACTIONS(47), + [anon_sym___stdcall] = ACTIONS(47), + [anon_sym___fastcall] = ACTIONS(47), + [anon_sym___thiscall] = ACTIONS(47), + [anon_sym___vectorcall] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(351), + [anon_sym_LBRACK] = ACTIONS(51), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(353), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(355), + [anon_sym_switch] = ACTIONS(357), + [anon_sym_case] = ACTIONS(359), + [anon_sym_default] = ACTIONS(361), + [anon_sym_while] = ACTIONS(363), + [anon_sym_do] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_return] = ACTIONS(369), + [anon_sym_break] = ACTIONS(371), + [anon_sym_continue] = ACTIONS(373), + [anon_sym_goto] = ACTIONS(375), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(107), - [anon_sym_decltype] = ACTIONS(109), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_explicit] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(115), - [anon_sym_template] = ACTIONS(199), - [anon_sym_operator] = ACTIONS(119), - [anon_sym_try] = ACTIONS(201), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(203), - [anon_sym_namespace] = ACTIONS(205), - [anon_sym_using] = ACTIONS(207), - [anon_sym_static_assert] = ACTIONS(209), - [anon_sym_concept] = ACTIONS(211), - [anon_sym_co_return] = ACTIONS(213), - [anon_sym_co_yield] = ACTIONS(215), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(113), + [anon_sym_decltype] = ACTIONS(115), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_explicit] = ACTIONS(119), + [anon_sym_typename] = ACTIONS(121), + [anon_sym_template] = ACTIONS(377), + [anon_sym_operator] = ACTIONS(125), + [anon_sym_try] = ACTIONS(379), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(381), + [anon_sym_namespace] = ACTIONS(383), + [anon_sym_using] = ACTIONS(385), + [anon_sym_static_assert] = ACTIONS(387), + [anon_sym_concept] = ACTIONS(389), + [anon_sym_co_return] = ACTIONS(391), + [anon_sym_co_yield] = ACTIONS(393), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [37] = { - [sym_preproc_include] = STATE(29), - [sym_preproc_def] = STATE(29), - [sym_preproc_function_def] = STATE(29), - [sym_preproc_call] = STATE(29), - [sym_preproc_if] = STATE(29), - [sym_preproc_ifdef] = STATE(29), - [sym_function_definition] = STATE(29), - [sym_declaration] = STATE(29), - [sym_type_definition] = STATE(29), - [sym__declaration_modifiers] = STATE(3225), - [sym__declaration_specifiers] = STATE(3962), - [sym_linkage_specification] = STATE(29), - [sym_attribute_specifier] = STATE(3225), - [sym_attribute_declaration] = STATE(1136), - [sym_ms_declspec_modifier] = STATE(3225), - [sym_ms_based_modifier] = STATE(6104), - [sym_ms_call_modifier] = STATE(2065), - [sym__declarator] = STATE(5113), - [sym_parenthesized_declarator] = STATE(4918), - [sym_attributed_declarator] = STATE(4918), - [sym_pointer_declarator] = STATE(4918), - [sym_function_declarator] = STATE(4870), - [sym_array_declarator] = STATE(4918), - [sym_compound_statement] = STATE(29), - [sym_storage_class_specifier] = STATE(3225), - [sym_type_qualifier] = STATE(3225), - [sym__type_specifier] = STATE(3322), - [sym_sized_type_specifier] = STATE(3232), - [sym_enum_specifier] = STATE(3232), - [sym_struct_specifier] = STATE(3232), - [sym_union_specifier] = STATE(3232), - [sym_attributed_statement] = STATE(29), - [sym_labeled_statement] = STATE(29), - [sym_expression_statement] = STATE(29), - [sym_if_statement] = STATE(29), - [sym_switch_statement] = STATE(29), - [sym_case_statement] = STATE(29), - [sym_while_statement] = STATE(29), - [sym_do_statement] = STATE(29), - [sym_for_statement] = STATE(29), - [sym_return_statement] = STATE(29), - [sym_break_statement] = STATE(29), - [sym_continue_statement] = STATE(29), - [sym_goto_statement] = STATE(29), - [sym__expression] = STATE(3502), - [sym_comma_expression] = STATE(6595), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym__empty_declaration] = STATE(29), - [sym_placeholder_type_specifier] = STATE(3232), - [sym_decltype_auto] = STATE(3279), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3232), - [sym__class_name] = STATE(5753), - [sym_virtual] = STATE(3225), - [sym_explicit_function_specifier] = STATE(1936), - [sym_dependent_type] = STATE(3232), - [sym_template_declaration] = STATE(29), - [sym_template_instantiation] = STATE(29), - [sym_operator_cast] = STATE(5134), - [sym__constructor_specifiers] = STATE(1936), - [sym_operator_cast_definition] = STATE(29), - [sym_operator_cast_declaration] = STATE(29), - [sym_constructor_or_destructor_definition] = STATE(29), - [sym_reference_declarator] = STATE(4918), - [sym_structured_binding_declarator] = STATE(4918), - [sym_template_type] = STATE(3608), - [sym_template_function] = STATE(3494), - [sym_namespace_definition] = STATE(29), - [sym_namespace_alias_definition] = STATE(29), - [sym_using_declaration] = STATE(29), - [sym_alias_declaration] = STATE(29), - [sym_static_assert_declaration] = STATE(29), - [sym_concept_definition] = STATE(29), - [sym_for_range_loop] = STATE(29), - [sym_co_return_statement] = STATE(29), - [sym_co_yield_statement] = STATE(29), - [sym_throw_statement] = STATE(29), - [sym_try_statement] = STATE(29), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_destructor_name] = STATE(4918), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4460), - [sym_qualified_identifier] = STATE(2732), - [sym_qualified_type_identifier] = STATE(3593), - [sym_qualified_operator_cast_identifier] = STATE(5134), - [sym_operator_name] = STATE(4918), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_translation_unit_repeat1] = STATE(29), - [aux_sym__declaration_specifiers_repeat1] = STATE(2179), - [aux_sym_attributed_declarator_repeat1] = STATE(206), - [aux_sym_sized_type_specifier_repeat1] = STATE(3171), - [aux_sym_operator_cast_definition_repeat1] = STATE(1936), - [sym_identifier] = ACTIONS(147), - [aux_sym_preproc_include_token1] = ACTIONS(149), - [aux_sym_preproc_def_token1] = ACTIONS(151), - [aux_sym_preproc_if_token1] = ACTIONS(155), - [aux_sym_preproc_ifdef_token1] = ACTIONS(157), - [aux_sym_preproc_ifdef_token2] = ACTIONS(157), - [sym_preproc_directive] = ACTIONS(159), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_typedef] = ACTIONS(163), - [anon_sym_extern] = ACTIONS(165), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(43), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_RBRACE] = ACTIONS(809), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(173), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(61), - [anon_sym_unsigned] = ACTIONS(61), - [anon_sym_long] = ACTIONS(61), - [anon_sym_short] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(63), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(175), - [anon_sym_switch] = ACTIONS(177), - [anon_sym_case] = ACTIONS(179), - [anon_sym_default] = ACTIONS(181), - [anon_sym_while] = ACTIONS(183), - [anon_sym_do] = ACTIONS(185), - [anon_sym_for] = ACTIONS(187), - [anon_sym_return] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), - [anon_sym_goto] = ACTIONS(195), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(107), - [anon_sym_decltype] = ACTIONS(109), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_explicit] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(115), - [anon_sym_template] = ACTIONS(199), - [anon_sym_operator] = ACTIONS(119), - [anon_sym_try] = ACTIONS(201), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(203), - [anon_sym_namespace] = ACTIONS(205), - [anon_sym_using] = ACTIONS(207), - [anon_sym_static_assert] = ACTIONS(209), - [anon_sym_concept] = ACTIONS(211), - [anon_sym_co_return] = ACTIONS(213), - [anon_sym_co_yield] = ACTIONS(215), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [sym_preproc_include] = STATE(37), + [sym_preproc_def] = STATE(37), + [sym_preproc_function_def] = STATE(37), + [sym_preproc_call] = STATE(37), + [sym_preproc_if] = STATE(37), + [sym_preproc_ifdef] = STATE(37), + [sym_function_definition] = STATE(37), + [sym_declaration] = STATE(37), + [sym_type_definition] = STATE(37), + [sym__declaration_modifiers] = STATE(3706), + [sym__declaration_specifiers] = STATE(4664), + [sym_linkage_specification] = STATE(37), + [sym_attribute_specifier] = STATE(3706), + [sym_attribute_declaration] = STATE(1427), + [sym_ms_declspec_modifier] = STATE(3706), + [sym_ms_based_modifier] = STATE(7654), + [sym_ms_call_modifier] = STATE(2402), + [sym__declarator] = STATE(5881), + [sym_parenthesized_declarator] = STATE(5640), + [sym_attributed_declarator] = STATE(5640), + [sym_pointer_declarator] = STATE(5640), + [sym_function_declarator] = STATE(5549), + [sym_array_declarator] = STATE(5640), + [sym_compound_statement] = STATE(37), + [sym_storage_class_specifier] = STATE(3706), + [sym_type_qualifier] = STATE(3706), + [sym__type_specifier] = STATE(3820), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), + [sym_attributed_statement] = STATE(37), + [sym_labeled_statement] = STATE(37), + [sym_expression_statement] = STATE(37), + [sym_if_statement] = STATE(37), + [sym_switch_statement] = STATE(37), + [sym_case_statement] = STATE(37), + [sym_while_statement] = STATE(37), + [sym_do_statement] = STATE(37), + [sym_for_statement] = STATE(37), + [sym_return_statement] = STATE(37), + [sym_break_statement] = STATE(37), + [sym_continue_statement] = STATE(37), + [sym_goto_statement] = STATE(37), + [sym__expression] = STATE(4169), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7079), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym__empty_declaration] = STATE(37), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym__class_name] = STATE(6623), + [sym_virtual] = STATE(3706), + [sym_explicit_function_specifier] = STATE(2259), + [sym_dependent_type] = STATE(3723), + [sym_template_declaration] = STATE(37), + [sym_template_instantiation] = STATE(37), + [sym_operator_cast] = STATE(5892), + [sym__constructor_specifiers] = STATE(2259), + [sym_operator_cast_definition] = STATE(37), + [sym_operator_cast_declaration] = STATE(37), + [sym_constructor_or_destructor_definition] = STATE(37), + [sym_reference_declarator] = STATE(5640), + [sym_structured_binding_declarator] = STATE(5640), + [sym_template_type] = STATE(3921), + [sym_template_function] = STATE(4066), + [sym_namespace_definition] = STATE(37), + [sym_namespace_alias_definition] = STATE(37), + [sym_using_declaration] = STATE(37), + [sym_alias_declaration] = STATE(37), + [sym_static_assert_declaration] = STATE(37), + [sym_concept_definition] = STATE(37), + [sym_for_range_loop] = STATE(37), + [sym_co_return_statement] = STATE(37), + [sym_co_yield_statement] = STATE(37), + [sym_throw_statement] = STATE(37), + [sym_try_statement] = STATE(37), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_destructor_name] = STATE(5640), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5143), + [sym_qualified_identifier] = STATE(3249), + [sym_qualified_type_identifier] = STATE(3915), + [sym_qualified_operator_cast_identifier] = STATE(5892), + [sym_operator_name] = STATE(5640), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_preproc_if_repeat1] = STATE(37), + [aux_sym__declaration_specifiers_repeat1] = STATE(2514), + [aux_sym_attributed_declarator_repeat1] = STATE(251), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [aux_sym_operator_cast_definition_repeat1] = STATE(2259), + [sym_identifier] = ACTIONS(645), + [aux_sym_preproc_include_token1] = ACTIONS(648), + [aux_sym_preproc_def_token1] = ACTIONS(651), + [aux_sym_preproc_if_token1] = ACTIONS(654), + [aux_sym_preproc_if_token2] = ACTIONS(427), + [aux_sym_preproc_ifdef_token1] = ACTIONS(657), + [aux_sym_preproc_ifdef_token2] = ACTIONS(657), + [aux_sym_preproc_else_token1] = ACTIONS(427), + [aux_sym_preproc_elif_token1] = ACTIONS(427), + [sym_preproc_directive] = ACTIONS(660), + [anon_sym_LPAREN2] = ACTIONS(435), + [anon_sym_BANG] = ACTIONS(438), + [anon_sym_TILDE] = ACTIONS(441), + [anon_sym_DASH] = ACTIONS(444), + [anon_sym_PLUS] = ACTIONS(444), + [anon_sym_STAR] = ACTIONS(447), + [anon_sym_AMP_AMP] = ACTIONS(450), + [anon_sym_AMP] = ACTIONS(453), + [anon_sym_SEMI] = ACTIONS(663), + [anon_sym_typedef] = ACTIONS(666), + [anon_sym_extern] = ACTIONS(669), + [anon_sym___attribute__] = ACTIONS(465), + [anon_sym_COLON_COLON] = ACTIONS(468), + [anon_sym_LBRACK_LBRACK] = ACTIONS(471), + [anon_sym___declspec] = ACTIONS(474), + [anon_sym___based] = ACTIONS(477), + [anon_sym___cdecl] = ACTIONS(480), + [anon_sym___clrcall] = ACTIONS(480), + [anon_sym___stdcall] = ACTIONS(480), + [anon_sym___fastcall] = ACTIONS(480), + [anon_sym___thiscall] = ACTIONS(480), + [anon_sym___vectorcall] = ACTIONS(480), + [anon_sym_LBRACE] = ACTIONS(672), + [anon_sym_LBRACK] = ACTIONS(486), + [anon_sym_static] = ACTIONS(489), + [anon_sym_register] = ACTIONS(489), + [anon_sym_inline] = ACTIONS(675), + [anon_sym_thread_local] = ACTIONS(489), + [anon_sym_const] = ACTIONS(495), + [anon_sym_constexpr] = ACTIONS(495), + [anon_sym_volatile] = ACTIONS(495), + [anon_sym_restrict] = ACTIONS(495), + [anon_sym___restrict__] = ACTIONS(495), + [anon_sym__Atomic] = ACTIONS(495), + [anon_sym__Noreturn] = ACTIONS(495), + [anon_sym_noreturn] = ACTIONS(495), + [anon_sym_mutable] = ACTIONS(495), + [anon_sym_constinit] = ACTIONS(495), + [anon_sym_consteval] = ACTIONS(495), + [anon_sym_signed] = ACTIONS(498), + [anon_sym_unsigned] = ACTIONS(498), + [anon_sym_long] = ACTIONS(498), + [anon_sym_short] = ACTIONS(498), + [sym_primitive_type] = ACTIONS(501), + [anon_sym_enum] = ACTIONS(504), + [anon_sym_class] = ACTIONS(507), + [anon_sym_struct] = ACTIONS(510), + [anon_sym_union] = ACTIONS(513), + [anon_sym_if] = ACTIONS(678), + [anon_sym_switch] = ACTIONS(681), + [anon_sym_case] = ACTIONS(684), + [anon_sym_default] = ACTIONS(687), + [anon_sym_while] = ACTIONS(690), + [anon_sym_do] = ACTIONS(693), + [anon_sym_for] = ACTIONS(696), + [anon_sym_return] = ACTIONS(699), + [anon_sym_break] = ACTIONS(702), + [anon_sym_continue] = ACTIONS(705), + [anon_sym_goto] = ACTIONS(708), + [anon_sym_not] = ACTIONS(444), + [anon_sym_compl] = ACTIONS(444), + [anon_sym_DASH_DASH] = ACTIONS(549), + [anon_sym_PLUS_PLUS] = ACTIONS(549), + [anon_sym_sizeof] = ACTIONS(552), + [anon_sym_offsetof] = ACTIONS(555), + [anon_sym__Generic] = ACTIONS(558), + [anon_sym_asm] = ACTIONS(561), + [anon_sym___asm__] = ACTIONS(561), + [sym_number_literal] = ACTIONS(564), + [anon_sym_L_SQUOTE] = ACTIONS(567), + [anon_sym_u_SQUOTE] = ACTIONS(567), + [anon_sym_U_SQUOTE] = ACTIONS(567), + [anon_sym_u8_SQUOTE] = ACTIONS(567), + [anon_sym_SQUOTE] = ACTIONS(567), + [anon_sym_L_DQUOTE] = ACTIONS(570), + [anon_sym_u_DQUOTE] = ACTIONS(570), + [anon_sym_U_DQUOTE] = ACTIONS(570), + [anon_sym_u8_DQUOTE] = ACTIONS(570), + [anon_sym_DQUOTE] = ACTIONS(570), + [sym_true] = ACTIONS(573), + [sym_false] = ACTIONS(573), + [anon_sym_NULL] = ACTIONS(576), + [anon_sym_nullptr] = ACTIONS(576), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(579), + [anon_sym_decltype] = ACTIONS(582), + [anon_sym_virtual] = ACTIONS(585), + [anon_sym_explicit] = ACTIONS(588), + [anon_sym_typename] = ACTIONS(591), + [anon_sym_template] = ACTIONS(711), + [anon_sym_operator] = ACTIONS(597), + [anon_sym_try] = ACTIONS(714), + [anon_sym_delete] = ACTIONS(603), + [anon_sym_throw] = ACTIONS(717), + [anon_sym_namespace] = ACTIONS(720), + [anon_sym_using] = ACTIONS(723), + [anon_sym_static_assert] = ACTIONS(726), + [anon_sym_concept] = ACTIONS(729), + [anon_sym_co_return] = ACTIONS(732), + [anon_sym_co_yield] = ACTIONS(735), + [anon_sym_R_DQUOTE] = ACTIONS(627), + [anon_sym_LR_DQUOTE] = ACTIONS(627), + [anon_sym_uR_DQUOTE] = ACTIONS(627), + [anon_sym_UR_DQUOTE] = ACTIONS(627), + [anon_sym_u8R_DQUOTE] = ACTIONS(627), + [anon_sym_co_await] = ACTIONS(630), + [anon_sym_new] = ACTIONS(633), + [anon_sym_requires] = ACTIONS(636), + [sym_this] = ACTIONS(573), }, [38] = { - [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_declaration] = STATE(40), - [sym_type_definition] = STATE(40), - [sym__declaration_modifiers] = STATE(3225), - [sym__declaration_specifiers] = STATE(3962), - [sym_linkage_specification] = STATE(40), - [sym_attribute_specifier] = STATE(3225), - [sym_attribute_declaration] = STATE(1136), - [sym_ms_declspec_modifier] = STATE(3225), - [sym_ms_based_modifier] = STATE(6104), - [sym_ms_call_modifier] = STATE(2065), - [sym__declarator] = STATE(5113), - [sym_parenthesized_declarator] = STATE(4918), - [sym_attributed_declarator] = STATE(4918), - [sym_pointer_declarator] = STATE(4918), - [sym_function_declarator] = STATE(4870), - [sym_array_declarator] = STATE(4918), - [sym_compound_statement] = STATE(40), - [sym_storage_class_specifier] = STATE(3225), - [sym_type_qualifier] = STATE(3225), - [sym__type_specifier] = STATE(3322), - [sym_sized_type_specifier] = STATE(3232), - [sym_enum_specifier] = STATE(3232), - [sym_struct_specifier] = STATE(3232), - [sym_union_specifier] = STATE(3232), - [sym_attributed_statement] = STATE(40), - [sym_labeled_statement] = STATE(40), - [sym_expression_statement] = STATE(40), - [sym_if_statement] = STATE(40), - [sym_switch_statement] = STATE(40), - [sym_case_statement] = STATE(40), - [sym_while_statement] = STATE(40), - [sym_do_statement] = STATE(40), - [sym_for_statement] = STATE(40), - [sym_return_statement] = STATE(40), - [sym_break_statement] = STATE(40), - [sym_continue_statement] = STATE(40), - [sym_goto_statement] = STATE(40), - [sym__expression] = STATE(3502), - [sym_comma_expression] = STATE(6595), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym__empty_declaration] = STATE(40), - [sym_placeholder_type_specifier] = STATE(3232), - [sym_decltype_auto] = STATE(3279), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3232), - [sym__class_name] = STATE(5753), - [sym_virtual] = STATE(3225), - [sym_explicit_function_specifier] = STATE(1936), - [sym_dependent_type] = STATE(3232), - [sym_template_declaration] = STATE(40), - [sym_template_instantiation] = STATE(40), - [sym_operator_cast] = STATE(5134), - [sym__constructor_specifiers] = STATE(1936), - [sym_operator_cast_definition] = STATE(40), - [sym_operator_cast_declaration] = STATE(40), - [sym_constructor_or_destructor_definition] = STATE(40), - [sym_reference_declarator] = STATE(4918), - [sym_structured_binding_declarator] = STATE(4918), - [sym_template_type] = STATE(3608), - [sym_template_function] = STATE(3494), - [sym_namespace_definition] = STATE(40), - [sym_namespace_alias_definition] = STATE(40), - [sym_using_declaration] = STATE(40), - [sym_alias_declaration] = STATE(40), - [sym_static_assert_declaration] = STATE(40), - [sym_concept_definition] = STATE(40), - [sym_for_range_loop] = STATE(40), - [sym_co_return_statement] = STATE(40), - [sym_co_yield_statement] = STATE(40), - [sym_throw_statement] = STATE(40), - [sym_try_statement] = STATE(40), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_destructor_name] = STATE(4918), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4460), - [sym_qualified_identifier] = STATE(2732), - [sym_qualified_type_identifier] = STATE(3593), - [sym_qualified_operator_cast_identifier] = STATE(5134), - [sym_operator_name] = STATE(4918), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_translation_unit_repeat1] = STATE(40), - [aux_sym__declaration_specifiers_repeat1] = STATE(2179), - [aux_sym_attributed_declarator_repeat1] = STATE(206), - [aux_sym_sized_type_specifier_repeat1] = STATE(3171), - [aux_sym_operator_cast_definition_repeat1] = STATE(1936), - [sym_identifier] = ACTIONS(147), - [aux_sym_preproc_include_token1] = ACTIONS(149), - [aux_sym_preproc_def_token1] = ACTIONS(151), - [aux_sym_preproc_if_token1] = ACTIONS(155), - [aux_sym_preproc_ifdef_token1] = ACTIONS(157), - [aux_sym_preproc_ifdef_token2] = ACTIONS(157), - [sym_preproc_directive] = ACTIONS(159), + [sym_preproc_include] = STATE(72), + [sym_preproc_def] = STATE(72), + [sym_preproc_function_def] = STATE(72), + [sym_preproc_call] = STATE(72), + [sym_preproc_if] = STATE(72), + [sym_preproc_ifdef] = STATE(72), + [sym_function_definition] = STATE(72), + [sym_declaration] = STATE(72), + [sym_type_definition] = STATE(72), + [sym__declaration_modifiers] = STATE(3706), + [sym__declaration_specifiers] = STATE(4618), + [sym_linkage_specification] = STATE(72), + [sym_attribute_specifier] = STATE(3706), + [sym_attribute_declaration] = STATE(1427), + [sym_ms_declspec_modifier] = STATE(3706), + [sym_ms_based_modifier] = STATE(7654), + [sym_ms_call_modifier] = STATE(2462), + [sym__declarator] = STATE(5881), + [sym_parenthesized_declarator] = STATE(5640), + [sym_attributed_declarator] = STATE(5640), + [sym_pointer_declarator] = STATE(5640), + [sym_function_declarator] = STATE(5588), + [sym_array_declarator] = STATE(5640), + [sym_compound_statement] = STATE(72), + [sym_storage_class_specifier] = STATE(3706), + [sym_type_qualifier] = STATE(3706), + [sym__type_specifier] = STATE(3826), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), + [sym_attributed_statement] = STATE(72), + [sym_labeled_statement] = STATE(72), + [sym_expression_statement] = STATE(72), + [sym_if_statement] = STATE(72), + [sym_switch_statement] = STATE(72), + [sym_case_statement] = STATE(72), + [sym_while_statement] = STATE(72), + [sym_do_statement] = STATE(72), + [sym_for_statement] = STATE(72), + [sym_return_statement] = STATE(72), + [sym_break_statement] = STATE(72), + [sym_continue_statement] = STATE(72), + [sym_goto_statement] = STATE(72), + [sym__expression] = STATE(4182), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7590), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym__empty_declaration] = STATE(72), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym__class_name] = STATE(6623), + [sym_virtual] = STATE(3706), + [sym_explicit_function_specifier] = STATE(2240), + [sym_dependent_type] = STATE(3723), + [sym_template_declaration] = STATE(72), + [sym_template_instantiation] = STATE(72), + [sym_operator_cast] = STATE(5937), + [sym__constructor_specifiers] = STATE(2240), + [sym_operator_cast_definition] = STATE(72), + [sym_operator_cast_declaration] = STATE(72), + [sym_constructor_or_destructor_definition] = STATE(72), + [sym_reference_declarator] = STATE(5640), + [sym_structured_binding_declarator] = STATE(5640), + [sym_template_type] = STATE(3921), + [sym_template_function] = STATE(4066), + [sym_namespace_definition] = STATE(72), + [sym_namespace_alias_definition] = STATE(72), + [sym_using_declaration] = STATE(72), + [sym_alias_declaration] = STATE(72), + [sym_static_assert_declaration] = STATE(72), + [sym_concept_definition] = STATE(72), + [sym_for_range_loop] = STATE(72), + [sym_co_return_statement] = STATE(72), + [sym_co_yield_statement] = STATE(72), + [sym_throw_statement] = STATE(72), + [sym_try_statement] = STATE(72), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_destructor_name] = STATE(5640), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5143), + [sym_qualified_identifier] = STATE(3249), + [sym_qualified_type_identifier] = STATE(3915), + [sym_qualified_operator_cast_identifier] = STATE(5937), + [sym_operator_name] = STATE(5640), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_preproc_if_repeat1] = STATE(72), + [aux_sym__declaration_specifiers_repeat1] = STATE(2514), + [aux_sym_attributed_declarator_repeat1] = STATE(309), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [aux_sym_operator_cast_definition_repeat1] = STATE(2240), + [sym_identifier] = ACTIONS(153), + [aux_sym_preproc_include_token1] = ACTIONS(155), + [aux_sym_preproc_def_token1] = ACTIONS(157), + [aux_sym_preproc_if_token1] = ACTIONS(161), + [aux_sym_preproc_ifdef_token1] = ACTIONS(163), + [aux_sym_preproc_ifdef_token2] = ACTIONS(163), + [sym_preproc_directive] = ACTIONS(165), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -32887,226 +51000,238 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_typedef] = ACTIONS(163), - [anon_sym_extern] = ACTIONS(165), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(43), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_RBRACE] = ACTIONS(811), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(173), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(61), - [anon_sym_unsigned] = ACTIONS(61), - [anon_sym_long] = ACTIONS(61), - [anon_sym_short] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(63), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(175), - [anon_sym_switch] = ACTIONS(177), - [anon_sym_case] = ACTIONS(179), - [anon_sym_default] = ACTIONS(181), - [anon_sym_while] = ACTIONS(183), - [anon_sym_do] = ACTIONS(185), - [anon_sym_for] = ACTIONS(187), - [anon_sym_return] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), - [anon_sym_goto] = ACTIONS(195), + [anon_sym_SEMI] = ACTIONS(167), + [anon_sym_typedef] = ACTIONS(169), + [anon_sym_extern] = ACTIONS(171), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(45), + [anon_sym___cdecl] = ACTIONS(47), + [anon_sym___clrcall] = ACTIONS(47), + [anon_sym___stdcall] = ACTIONS(47), + [anon_sym___fastcall] = ACTIONS(47), + [anon_sym___thiscall] = ACTIONS(47), + [anon_sym___vectorcall] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(738), + [anon_sym_RBRACE] = ACTIONS(740), + [anon_sym_LBRACK] = ACTIONS(51), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(179), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(181), + [anon_sym_switch] = ACTIONS(183), + [anon_sym_case] = ACTIONS(185), + [anon_sym_default] = ACTIONS(187), + [anon_sym_while] = ACTIONS(189), + [anon_sym_do] = ACTIONS(191), + [anon_sym_for] = ACTIONS(193), + [anon_sym_return] = ACTIONS(195), + [anon_sym_break] = ACTIONS(197), + [anon_sym_continue] = ACTIONS(199), + [anon_sym_goto] = ACTIONS(201), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(107), - [anon_sym_decltype] = ACTIONS(109), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_explicit] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(115), - [anon_sym_template] = ACTIONS(199), - [anon_sym_operator] = ACTIONS(119), - [anon_sym_try] = ACTIONS(201), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(203), - [anon_sym_namespace] = ACTIONS(205), - [anon_sym_using] = ACTIONS(207), - [anon_sym_static_assert] = ACTIONS(209), - [anon_sym_concept] = ACTIONS(211), - [anon_sym_co_return] = ACTIONS(213), - [anon_sym_co_yield] = ACTIONS(215), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(113), + [anon_sym_decltype] = ACTIONS(115), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_explicit] = ACTIONS(119), + [anon_sym_typename] = ACTIONS(121), + [anon_sym_template] = ACTIONS(207), + [anon_sym_operator] = ACTIONS(125), + [anon_sym_try] = ACTIONS(209), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(211), + [anon_sym_namespace] = ACTIONS(213), + [anon_sym_using] = ACTIONS(215), + [anon_sym_static_assert] = ACTIONS(217), + [anon_sym_concept] = ACTIONS(219), + [anon_sym_co_return] = ACTIONS(221), + [anon_sym_co_yield] = ACTIONS(223), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [39] = { - [sym_preproc_include] = STATE(29), - [sym_preproc_def] = STATE(29), - [sym_preproc_function_def] = STATE(29), - [sym_preproc_call] = STATE(29), - [sym_preproc_if] = STATE(29), - [sym_preproc_ifdef] = STATE(29), - [sym_function_definition] = STATE(29), - [sym_declaration] = STATE(29), - [sym_type_definition] = STATE(29), - [sym__declaration_modifiers] = STATE(3225), - [sym__declaration_specifiers] = STATE(3962), - [sym_linkage_specification] = STATE(29), - [sym_attribute_specifier] = STATE(3225), - [sym_attribute_declaration] = STATE(1136), - [sym_ms_declspec_modifier] = STATE(3225), - [sym_ms_based_modifier] = STATE(6104), - [sym_ms_call_modifier] = STATE(2065), - [sym__declarator] = STATE(5113), - [sym_parenthesized_declarator] = STATE(4918), - [sym_attributed_declarator] = STATE(4918), - [sym_pointer_declarator] = STATE(4918), - [sym_function_declarator] = STATE(4870), - [sym_array_declarator] = STATE(4918), - [sym_compound_statement] = STATE(29), - [sym_storage_class_specifier] = STATE(3225), - [sym_type_qualifier] = STATE(3225), - [sym__type_specifier] = STATE(3322), - [sym_sized_type_specifier] = STATE(3232), - [sym_enum_specifier] = STATE(3232), - [sym_struct_specifier] = STATE(3232), - [sym_union_specifier] = STATE(3232), - [sym_attributed_statement] = STATE(29), - [sym_labeled_statement] = STATE(29), - [sym_expression_statement] = STATE(29), - [sym_if_statement] = STATE(29), - [sym_switch_statement] = STATE(29), - [sym_case_statement] = STATE(29), - [sym_while_statement] = STATE(29), - [sym_do_statement] = STATE(29), - [sym_for_statement] = STATE(29), - [sym_return_statement] = STATE(29), - [sym_break_statement] = STATE(29), - [sym_continue_statement] = STATE(29), - [sym_goto_statement] = STATE(29), - [sym__expression] = STATE(3502), - [sym_comma_expression] = STATE(6595), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym__empty_declaration] = STATE(29), - [sym_placeholder_type_specifier] = STATE(3232), - [sym_decltype_auto] = STATE(3279), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3232), - [sym__class_name] = STATE(5753), - [sym_virtual] = STATE(3225), - [sym_explicit_function_specifier] = STATE(1936), - [sym_dependent_type] = STATE(3232), - [sym_template_declaration] = STATE(29), - [sym_template_instantiation] = STATE(29), - [sym_operator_cast] = STATE(5134), - [sym__constructor_specifiers] = STATE(1936), - [sym_operator_cast_definition] = STATE(29), - [sym_operator_cast_declaration] = STATE(29), - [sym_constructor_or_destructor_definition] = STATE(29), - [sym_reference_declarator] = STATE(4918), - [sym_structured_binding_declarator] = STATE(4918), - [sym_template_type] = STATE(3608), - [sym_template_function] = STATE(3494), - [sym_namespace_definition] = STATE(29), - [sym_namespace_alias_definition] = STATE(29), - [sym_using_declaration] = STATE(29), - [sym_alias_declaration] = STATE(29), - [sym_static_assert_declaration] = STATE(29), - [sym_concept_definition] = STATE(29), - [sym_for_range_loop] = STATE(29), - [sym_co_return_statement] = STATE(29), - [sym_co_yield_statement] = STATE(29), - [sym_throw_statement] = STATE(29), - [sym_try_statement] = STATE(29), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_destructor_name] = STATE(4918), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4460), - [sym_qualified_identifier] = STATE(2732), - [sym_qualified_type_identifier] = STATE(3593), - [sym_qualified_operator_cast_identifier] = STATE(5134), - [sym_operator_name] = STATE(4918), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_translation_unit_repeat1] = STATE(29), - [aux_sym__declaration_specifiers_repeat1] = STATE(2179), - [aux_sym_attributed_declarator_repeat1] = STATE(206), - [aux_sym_sized_type_specifier_repeat1] = STATE(3171), - [aux_sym_operator_cast_definition_repeat1] = STATE(1936), - [sym_identifier] = ACTIONS(147), - [aux_sym_preproc_include_token1] = ACTIONS(149), - [aux_sym_preproc_def_token1] = ACTIONS(151), - [aux_sym_preproc_if_token1] = ACTIONS(155), - [aux_sym_preproc_ifdef_token1] = ACTIONS(157), - [aux_sym_preproc_ifdef_token2] = ACTIONS(157), - [sym_preproc_directive] = ACTIONS(159), + [sym_preproc_include] = STATE(60), + [sym_preproc_def] = STATE(60), + [sym_preproc_function_def] = STATE(60), + [sym_preproc_call] = STATE(60), + [sym_preproc_if] = STATE(60), + [sym_preproc_ifdef] = STATE(60), + [sym_function_definition] = STATE(60), + [sym_declaration] = STATE(60), + [sym_type_definition] = STATE(60), + [sym__declaration_modifiers] = STATE(3706), + [sym__declaration_specifiers] = STATE(4618), + [sym_linkage_specification] = STATE(60), + [sym_attribute_specifier] = STATE(3706), + [sym_attribute_declaration] = STATE(1427), + [sym_ms_declspec_modifier] = STATE(3706), + [sym_ms_based_modifier] = STATE(7654), + [sym_ms_call_modifier] = STATE(2462), + [sym__declarator] = STATE(5881), + [sym_parenthesized_declarator] = STATE(5640), + [sym_attributed_declarator] = STATE(5640), + [sym_pointer_declarator] = STATE(5640), + [sym_function_declarator] = STATE(5588), + [sym_array_declarator] = STATE(5640), + [sym_compound_statement] = STATE(60), + [sym_storage_class_specifier] = STATE(3706), + [sym_type_qualifier] = STATE(3706), + [sym__type_specifier] = STATE(3826), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), + [sym_attributed_statement] = STATE(60), + [sym_labeled_statement] = STATE(60), + [sym_expression_statement] = STATE(60), + [sym_if_statement] = STATE(60), + [sym_switch_statement] = STATE(60), + [sym_case_statement] = STATE(60), + [sym_while_statement] = STATE(60), + [sym_do_statement] = STATE(60), + [sym_for_statement] = STATE(60), + [sym_return_statement] = STATE(60), + [sym_break_statement] = STATE(60), + [sym_continue_statement] = STATE(60), + [sym_goto_statement] = STATE(60), + [sym__expression] = STATE(4182), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7590), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym__empty_declaration] = STATE(60), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym__class_name] = STATE(6623), + [sym_virtual] = STATE(3706), + [sym_explicit_function_specifier] = STATE(2240), + [sym_dependent_type] = STATE(3723), + [sym_template_declaration] = STATE(60), + [sym_template_instantiation] = STATE(60), + [sym_operator_cast] = STATE(5937), + [sym__constructor_specifiers] = STATE(2240), + [sym_operator_cast_definition] = STATE(60), + [sym_operator_cast_declaration] = STATE(60), + [sym_constructor_or_destructor_definition] = STATE(60), + [sym_reference_declarator] = STATE(5640), + [sym_structured_binding_declarator] = STATE(5640), + [sym_template_type] = STATE(3921), + [sym_template_function] = STATE(4066), + [sym_namespace_definition] = STATE(60), + [sym_namespace_alias_definition] = STATE(60), + [sym_using_declaration] = STATE(60), + [sym_alias_declaration] = STATE(60), + [sym_static_assert_declaration] = STATE(60), + [sym_concept_definition] = STATE(60), + [sym_for_range_loop] = STATE(60), + [sym_co_return_statement] = STATE(60), + [sym_co_yield_statement] = STATE(60), + [sym_throw_statement] = STATE(60), + [sym_try_statement] = STATE(60), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_destructor_name] = STATE(5640), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5143), + [sym_qualified_identifier] = STATE(3249), + [sym_qualified_type_identifier] = STATE(3915), + [sym_qualified_operator_cast_identifier] = STATE(5937), + [sym_operator_name] = STATE(5640), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_preproc_if_repeat1] = STATE(60), + [aux_sym__declaration_specifiers_repeat1] = STATE(2514), + [aux_sym_attributed_declarator_repeat1] = STATE(309), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [aux_sym_operator_cast_definition_repeat1] = STATE(2240), + [sym_identifier] = ACTIONS(153), + [aux_sym_preproc_include_token1] = ACTIONS(155), + [aux_sym_preproc_def_token1] = ACTIONS(157), + [aux_sym_preproc_if_token1] = ACTIONS(161), + [aux_sym_preproc_ifdef_token1] = ACTIONS(163), + [aux_sym_preproc_ifdef_token2] = ACTIONS(163), + [sym_preproc_directive] = ACTIONS(165), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -33115,1243 +51240,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_typedef] = ACTIONS(163), - [anon_sym_extern] = ACTIONS(165), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(43), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_RBRACE] = ACTIONS(813), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(173), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(61), - [anon_sym_unsigned] = ACTIONS(61), - [anon_sym_long] = ACTIONS(61), - [anon_sym_short] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(63), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(175), - [anon_sym_switch] = ACTIONS(177), - [anon_sym_case] = ACTIONS(179), - [anon_sym_default] = ACTIONS(181), - [anon_sym_while] = ACTIONS(183), - [anon_sym_do] = ACTIONS(185), - [anon_sym_for] = ACTIONS(187), - [anon_sym_return] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), - [anon_sym_goto] = ACTIONS(195), + [anon_sym_SEMI] = ACTIONS(167), + [anon_sym_typedef] = ACTIONS(169), + [anon_sym_extern] = ACTIONS(171), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(45), + [anon_sym___cdecl] = ACTIONS(47), + [anon_sym___clrcall] = ACTIONS(47), + [anon_sym___stdcall] = ACTIONS(47), + [anon_sym___fastcall] = ACTIONS(47), + [anon_sym___thiscall] = ACTIONS(47), + [anon_sym___vectorcall] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(738), + [anon_sym_RBRACE] = ACTIONS(742), + [anon_sym_LBRACK] = ACTIONS(51), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(179), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(181), + [anon_sym_switch] = ACTIONS(183), + [anon_sym_case] = ACTIONS(185), + [anon_sym_default] = ACTIONS(187), + [anon_sym_while] = ACTIONS(189), + [anon_sym_do] = ACTIONS(191), + [anon_sym_for] = ACTIONS(193), + [anon_sym_return] = ACTIONS(195), + [anon_sym_break] = ACTIONS(197), + [anon_sym_continue] = ACTIONS(199), + [anon_sym_goto] = ACTIONS(201), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(107), - [anon_sym_decltype] = ACTIONS(109), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_explicit] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(115), - [anon_sym_template] = ACTIONS(199), - [anon_sym_operator] = ACTIONS(119), - [anon_sym_try] = ACTIONS(201), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(203), - [anon_sym_namespace] = ACTIONS(205), - [anon_sym_using] = ACTIONS(207), - [anon_sym_static_assert] = ACTIONS(209), - [anon_sym_concept] = ACTIONS(211), - [anon_sym_co_return] = ACTIONS(213), - [anon_sym_co_yield] = ACTIONS(215), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(113), + [anon_sym_decltype] = ACTIONS(115), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_explicit] = ACTIONS(119), + [anon_sym_typename] = ACTIONS(121), + [anon_sym_template] = ACTIONS(207), + [anon_sym_operator] = ACTIONS(125), + [anon_sym_try] = ACTIONS(209), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(211), + [anon_sym_namespace] = ACTIONS(213), + [anon_sym_using] = ACTIONS(215), + [anon_sym_static_assert] = ACTIONS(217), + [anon_sym_concept] = ACTIONS(219), + [anon_sym_co_return] = ACTIONS(221), + [anon_sym_co_yield] = ACTIONS(223), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [40] = { - [sym_preproc_include] = STATE(29), - [sym_preproc_def] = STATE(29), - [sym_preproc_function_def] = STATE(29), - [sym_preproc_call] = STATE(29), - [sym_preproc_if] = STATE(29), - [sym_preproc_ifdef] = STATE(29), - [sym_function_definition] = STATE(29), - [sym_declaration] = STATE(29), - [sym_type_definition] = STATE(29), - [sym__declaration_modifiers] = STATE(3225), - [sym__declaration_specifiers] = STATE(3962), - [sym_linkage_specification] = STATE(29), - [sym_attribute_specifier] = STATE(3225), - [sym_attribute_declaration] = STATE(1136), - [sym_ms_declspec_modifier] = STATE(3225), - [sym_ms_based_modifier] = STATE(6104), - [sym_ms_call_modifier] = STATE(2065), - [sym__declarator] = STATE(5113), - [sym_parenthesized_declarator] = STATE(4918), - [sym_attributed_declarator] = STATE(4918), - [sym_pointer_declarator] = STATE(4918), - [sym_function_declarator] = STATE(4870), - [sym_array_declarator] = STATE(4918), - [sym_compound_statement] = STATE(29), - [sym_storage_class_specifier] = STATE(3225), - [sym_type_qualifier] = STATE(3225), - [sym__type_specifier] = STATE(3322), - [sym_sized_type_specifier] = STATE(3232), - [sym_enum_specifier] = STATE(3232), - [sym_struct_specifier] = STATE(3232), - [sym_union_specifier] = STATE(3232), - [sym_attributed_statement] = STATE(29), - [sym_labeled_statement] = STATE(29), - [sym_expression_statement] = STATE(29), - [sym_if_statement] = STATE(29), - [sym_switch_statement] = STATE(29), - [sym_case_statement] = STATE(29), - [sym_while_statement] = STATE(29), - [sym_do_statement] = STATE(29), - [sym_for_statement] = STATE(29), - [sym_return_statement] = STATE(29), - [sym_break_statement] = STATE(29), - [sym_continue_statement] = STATE(29), - [sym_goto_statement] = STATE(29), - [sym__expression] = STATE(3502), - [sym_comma_expression] = STATE(6595), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym__empty_declaration] = STATE(29), - [sym_placeholder_type_specifier] = STATE(3232), - [sym_decltype_auto] = STATE(3279), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3232), - [sym__class_name] = STATE(5753), - [sym_virtual] = STATE(3225), - [sym_explicit_function_specifier] = STATE(1936), - [sym_dependent_type] = STATE(3232), - [sym_template_declaration] = STATE(29), - [sym_template_instantiation] = STATE(29), - [sym_operator_cast] = STATE(5134), - [sym__constructor_specifiers] = STATE(1936), - [sym_operator_cast_definition] = STATE(29), - [sym_operator_cast_declaration] = STATE(29), - [sym_constructor_or_destructor_definition] = STATE(29), - [sym_reference_declarator] = STATE(4918), - [sym_structured_binding_declarator] = STATE(4918), - [sym_template_type] = STATE(3608), - [sym_template_function] = STATE(3494), - [sym_namespace_definition] = STATE(29), - [sym_namespace_alias_definition] = STATE(29), - [sym_using_declaration] = STATE(29), - [sym_alias_declaration] = STATE(29), - [sym_static_assert_declaration] = STATE(29), - [sym_concept_definition] = STATE(29), - [sym_for_range_loop] = STATE(29), - [sym_co_return_statement] = STATE(29), - [sym_co_yield_statement] = STATE(29), - [sym_throw_statement] = STATE(29), - [sym_try_statement] = STATE(29), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_destructor_name] = STATE(4918), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4460), - [sym_qualified_identifier] = STATE(2732), - [sym_qualified_type_identifier] = STATE(3593), - [sym_qualified_operator_cast_identifier] = STATE(5134), - [sym_operator_name] = STATE(4918), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_translation_unit_repeat1] = STATE(29), - [aux_sym__declaration_specifiers_repeat1] = STATE(2179), - [aux_sym_attributed_declarator_repeat1] = STATE(206), - [aux_sym_sized_type_specifier_repeat1] = STATE(3171), - [aux_sym_operator_cast_definition_repeat1] = STATE(1936), - [sym_identifier] = ACTIONS(147), - [aux_sym_preproc_include_token1] = ACTIONS(149), - [aux_sym_preproc_def_token1] = ACTIONS(151), - [aux_sym_preproc_if_token1] = ACTIONS(155), - [aux_sym_preproc_ifdef_token1] = ACTIONS(157), - [aux_sym_preproc_ifdef_token2] = ACTIONS(157), - [sym_preproc_directive] = ACTIONS(159), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_typedef] = ACTIONS(163), - [anon_sym_extern] = ACTIONS(165), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(43), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_RBRACE] = ACTIONS(815), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(173), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(61), - [anon_sym_unsigned] = ACTIONS(61), - [anon_sym_long] = ACTIONS(61), - [anon_sym_short] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(63), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(175), - [anon_sym_switch] = ACTIONS(177), - [anon_sym_case] = ACTIONS(179), - [anon_sym_default] = ACTIONS(181), - [anon_sym_while] = ACTIONS(183), - [anon_sym_do] = ACTIONS(185), - [anon_sym_for] = ACTIONS(187), - [anon_sym_return] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), - [anon_sym_goto] = ACTIONS(195), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(107), - [anon_sym_decltype] = ACTIONS(109), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_explicit] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(115), - [anon_sym_template] = ACTIONS(199), - [anon_sym_operator] = ACTIONS(119), - [anon_sym_try] = ACTIONS(201), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(203), - [anon_sym_namespace] = ACTIONS(205), - [anon_sym_using] = ACTIONS(207), - [anon_sym_static_assert] = ACTIONS(209), - [anon_sym_concept] = ACTIONS(211), - [anon_sym_co_return] = ACTIONS(213), - [anon_sym_co_yield] = ACTIONS(215), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), - }, - [41] = { - [sym_preproc_include] = STATE(29), - [sym_preproc_def] = STATE(29), - [sym_preproc_function_def] = STATE(29), - [sym_preproc_call] = STATE(29), - [sym_preproc_if] = STATE(29), - [sym_preproc_ifdef] = STATE(29), - [sym_function_definition] = STATE(29), - [sym_declaration] = STATE(29), - [sym_type_definition] = STATE(29), - [sym__declaration_modifiers] = STATE(3225), - [sym__declaration_specifiers] = STATE(3962), - [sym_linkage_specification] = STATE(29), - [sym_attribute_specifier] = STATE(3225), - [sym_attribute_declaration] = STATE(1136), - [sym_ms_declspec_modifier] = STATE(3225), - [sym_ms_based_modifier] = STATE(6104), - [sym_ms_call_modifier] = STATE(2065), - [sym__declarator] = STATE(5113), - [sym_parenthesized_declarator] = STATE(4918), - [sym_attributed_declarator] = STATE(4918), - [sym_pointer_declarator] = STATE(4918), - [sym_function_declarator] = STATE(4870), - [sym_array_declarator] = STATE(4918), - [sym_compound_statement] = STATE(29), - [sym_storage_class_specifier] = STATE(3225), - [sym_type_qualifier] = STATE(3225), - [sym__type_specifier] = STATE(3322), - [sym_sized_type_specifier] = STATE(3232), - [sym_enum_specifier] = STATE(3232), - [sym_struct_specifier] = STATE(3232), - [sym_union_specifier] = STATE(3232), - [sym_attributed_statement] = STATE(29), - [sym_labeled_statement] = STATE(29), - [sym_expression_statement] = STATE(29), - [sym_if_statement] = STATE(29), - [sym_switch_statement] = STATE(29), - [sym_case_statement] = STATE(29), - [sym_while_statement] = STATE(29), - [sym_do_statement] = STATE(29), - [sym_for_statement] = STATE(29), - [sym_return_statement] = STATE(29), - [sym_break_statement] = STATE(29), - [sym_continue_statement] = STATE(29), - [sym_goto_statement] = STATE(29), - [sym__expression] = STATE(3502), - [sym_comma_expression] = STATE(6595), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym__empty_declaration] = STATE(29), - [sym_placeholder_type_specifier] = STATE(3232), - [sym_decltype_auto] = STATE(3279), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3232), - [sym__class_name] = STATE(5753), - [sym_virtual] = STATE(3225), - [sym_explicit_function_specifier] = STATE(1936), - [sym_dependent_type] = STATE(3232), - [sym_template_declaration] = STATE(29), - [sym_template_instantiation] = STATE(29), - [sym_operator_cast] = STATE(5134), - [sym__constructor_specifiers] = STATE(1936), - [sym_operator_cast_definition] = STATE(29), - [sym_operator_cast_declaration] = STATE(29), - [sym_constructor_or_destructor_definition] = STATE(29), - [sym_reference_declarator] = STATE(4918), - [sym_structured_binding_declarator] = STATE(4918), - [sym_template_type] = STATE(3608), - [sym_template_function] = STATE(3494), - [sym_namespace_definition] = STATE(29), - [sym_namespace_alias_definition] = STATE(29), - [sym_using_declaration] = STATE(29), - [sym_alias_declaration] = STATE(29), - [sym_static_assert_declaration] = STATE(29), - [sym_concept_definition] = STATE(29), - [sym_for_range_loop] = STATE(29), - [sym_co_return_statement] = STATE(29), - [sym_co_yield_statement] = STATE(29), - [sym_throw_statement] = STATE(29), - [sym_try_statement] = STATE(29), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_destructor_name] = STATE(4918), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4460), - [sym_qualified_identifier] = STATE(2732), - [sym_qualified_type_identifier] = STATE(3593), - [sym_qualified_operator_cast_identifier] = STATE(5134), - [sym_operator_name] = STATE(4918), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_translation_unit_repeat1] = STATE(29), - [aux_sym__declaration_specifiers_repeat1] = STATE(2179), - [aux_sym_attributed_declarator_repeat1] = STATE(206), - [aux_sym_sized_type_specifier_repeat1] = STATE(3171), - [aux_sym_operator_cast_definition_repeat1] = STATE(1936), - [sym_identifier] = ACTIONS(147), - [aux_sym_preproc_include_token1] = ACTIONS(149), - [aux_sym_preproc_def_token1] = ACTIONS(151), - [aux_sym_preproc_if_token1] = ACTIONS(155), - [aux_sym_preproc_ifdef_token1] = ACTIONS(157), - [aux_sym_preproc_ifdef_token2] = ACTIONS(157), - [sym_preproc_directive] = ACTIONS(159), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_typedef] = ACTIONS(163), - [anon_sym_extern] = ACTIONS(165), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(43), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_RBRACE] = ACTIONS(817), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(173), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(61), - [anon_sym_unsigned] = ACTIONS(61), - [anon_sym_long] = ACTIONS(61), - [anon_sym_short] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(63), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(175), - [anon_sym_switch] = ACTIONS(177), - [anon_sym_case] = ACTIONS(179), - [anon_sym_default] = ACTIONS(181), - [anon_sym_while] = ACTIONS(183), - [anon_sym_do] = ACTIONS(185), - [anon_sym_for] = ACTIONS(187), - [anon_sym_return] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), - [anon_sym_goto] = ACTIONS(195), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(107), - [anon_sym_decltype] = ACTIONS(109), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_explicit] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(115), - [anon_sym_template] = ACTIONS(199), - [anon_sym_operator] = ACTIONS(119), - [anon_sym_try] = ACTIONS(201), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(203), - [anon_sym_namespace] = ACTIONS(205), - [anon_sym_using] = ACTIONS(207), - [anon_sym_static_assert] = ACTIONS(209), - [anon_sym_concept] = ACTIONS(211), - [anon_sym_co_return] = ACTIONS(213), - [anon_sym_co_yield] = ACTIONS(215), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), - }, - [42] = { - [sym_preproc_include] = STATE(51), - [sym_preproc_def] = STATE(51), - [sym_preproc_function_def] = STATE(51), - [sym_preproc_call] = STATE(51), - [sym_preproc_if] = STATE(51), - [sym_preproc_ifdef] = STATE(51), - [sym_function_definition] = STATE(51), - [sym_declaration] = STATE(51), - [sym_type_definition] = STATE(51), - [sym__declaration_modifiers] = STATE(3225), - [sym__declaration_specifiers] = STATE(3962), - [sym_linkage_specification] = STATE(51), - [sym_attribute_specifier] = STATE(3225), - [sym_attribute_declaration] = STATE(1136), - [sym_ms_declspec_modifier] = STATE(3225), - [sym_ms_based_modifier] = STATE(6104), - [sym_ms_call_modifier] = STATE(2065), - [sym__declarator] = STATE(5113), - [sym_parenthesized_declarator] = STATE(4918), - [sym_attributed_declarator] = STATE(4918), - [sym_pointer_declarator] = STATE(4918), - [sym_function_declarator] = STATE(4870), - [sym_array_declarator] = STATE(4918), - [sym_compound_statement] = STATE(51), - [sym_storage_class_specifier] = STATE(3225), - [sym_type_qualifier] = STATE(3225), - [sym__type_specifier] = STATE(3322), - [sym_sized_type_specifier] = STATE(3232), - [sym_enum_specifier] = STATE(3232), - [sym_struct_specifier] = STATE(3232), - [sym_union_specifier] = STATE(3232), - [sym_attributed_statement] = STATE(51), - [sym_labeled_statement] = STATE(51), - [sym_expression_statement] = STATE(51), - [sym_if_statement] = STATE(51), - [sym_switch_statement] = STATE(51), - [sym_case_statement] = STATE(51), - [sym_while_statement] = STATE(51), - [sym_do_statement] = STATE(51), - [sym_for_statement] = STATE(51), - [sym_return_statement] = STATE(51), - [sym_break_statement] = STATE(51), - [sym_continue_statement] = STATE(51), - [sym_goto_statement] = STATE(51), - [sym__expression] = STATE(3502), - [sym_comma_expression] = STATE(6595), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym__empty_declaration] = STATE(51), - [sym_placeholder_type_specifier] = STATE(3232), - [sym_decltype_auto] = STATE(3279), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3232), - [sym__class_name] = STATE(5753), - [sym_virtual] = STATE(3225), - [sym_explicit_function_specifier] = STATE(1936), - [sym_dependent_type] = STATE(3232), - [sym_template_declaration] = STATE(51), - [sym_template_instantiation] = STATE(51), - [sym_operator_cast] = STATE(5134), - [sym__constructor_specifiers] = STATE(1936), - [sym_operator_cast_definition] = STATE(51), - [sym_operator_cast_declaration] = STATE(51), - [sym_constructor_or_destructor_definition] = STATE(51), - [sym_reference_declarator] = STATE(4918), - [sym_structured_binding_declarator] = STATE(4918), - [sym_template_type] = STATE(3608), - [sym_template_function] = STATE(3494), - [sym_namespace_definition] = STATE(51), - [sym_namespace_alias_definition] = STATE(51), - [sym_using_declaration] = STATE(51), - [sym_alias_declaration] = STATE(51), - [sym_static_assert_declaration] = STATE(51), - [sym_concept_definition] = STATE(51), - [sym_for_range_loop] = STATE(51), - [sym_co_return_statement] = STATE(51), - [sym_co_yield_statement] = STATE(51), - [sym_throw_statement] = STATE(51), - [sym_try_statement] = STATE(51), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_destructor_name] = STATE(4918), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4460), - [sym_qualified_identifier] = STATE(2732), - [sym_qualified_type_identifier] = STATE(3593), - [sym_qualified_operator_cast_identifier] = STATE(5134), - [sym_operator_name] = STATE(4918), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_translation_unit_repeat1] = STATE(51), - [aux_sym__declaration_specifiers_repeat1] = STATE(2179), - [aux_sym_attributed_declarator_repeat1] = STATE(206), - [aux_sym_sized_type_specifier_repeat1] = STATE(3171), - [aux_sym_operator_cast_definition_repeat1] = STATE(1936), - [sym_identifier] = ACTIONS(147), - [aux_sym_preproc_include_token1] = ACTIONS(149), - [aux_sym_preproc_def_token1] = ACTIONS(151), - [aux_sym_preproc_if_token1] = ACTIONS(155), - [aux_sym_preproc_ifdef_token1] = ACTIONS(157), - [aux_sym_preproc_ifdef_token2] = ACTIONS(157), - [sym_preproc_directive] = ACTIONS(159), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_typedef] = ACTIONS(163), - [anon_sym_extern] = ACTIONS(165), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(43), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_RBRACE] = ACTIONS(819), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(173), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(61), - [anon_sym_unsigned] = ACTIONS(61), - [anon_sym_long] = ACTIONS(61), - [anon_sym_short] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(63), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(175), - [anon_sym_switch] = ACTIONS(177), - [anon_sym_case] = ACTIONS(179), - [anon_sym_default] = ACTIONS(181), - [anon_sym_while] = ACTIONS(183), - [anon_sym_do] = ACTIONS(185), - [anon_sym_for] = ACTIONS(187), - [anon_sym_return] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), - [anon_sym_goto] = ACTIONS(195), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(107), - [anon_sym_decltype] = ACTIONS(109), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_explicit] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(115), - [anon_sym_template] = ACTIONS(199), - [anon_sym_operator] = ACTIONS(119), - [anon_sym_try] = ACTIONS(201), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(203), - [anon_sym_namespace] = ACTIONS(205), - [anon_sym_using] = ACTIONS(207), - [anon_sym_static_assert] = ACTIONS(209), - [anon_sym_concept] = ACTIONS(211), - [anon_sym_co_return] = ACTIONS(213), - [anon_sym_co_yield] = ACTIONS(215), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), - }, - [43] = { - [sym_preproc_include] = STATE(29), - [sym_preproc_def] = STATE(29), - [sym_preproc_function_def] = STATE(29), - [sym_preproc_call] = STATE(29), - [sym_preproc_if] = STATE(29), - [sym_preproc_ifdef] = STATE(29), - [sym_function_definition] = STATE(29), - [sym_declaration] = STATE(29), - [sym_type_definition] = STATE(29), - [sym__declaration_modifiers] = STATE(3225), - [sym__declaration_specifiers] = STATE(3962), - [sym_linkage_specification] = STATE(29), - [sym_attribute_specifier] = STATE(3225), - [sym_attribute_declaration] = STATE(1136), - [sym_ms_declspec_modifier] = STATE(3225), - [sym_ms_based_modifier] = STATE(6104), - [sym_ms_call_modifier] = STATE(2065), - [sym__declarator] = STATE(5113), - [sym_parenthesized_declarator] = STATE(4918), - [sym_attributed_declarator] = STATE(4918), - [sym_pointer_declarator] = STATE(4918), - [sym_function_declarator] = STATE(4870), - [sym_array_declarator] = STATE(4918), - [sym_compound_statement] = STATE(29), - [sym_storage_class_specifier] = STATE(3225), - [sym_type_qualifier] = STATE(3225), - [sym__type_specifier] = STATE(3322), - [sym_sized_type_specifier] = STATE(3232), - [sym_enum_specifier] = STATE(3232), - [sym_struct_specifier] = STATE(3232), - [sym_union_specifier] = STATE(3232), - [sym_attributed_statement] = STATE(29), - [sym_labeled_statement] = STATE(29), - [sym_expression_statement] = STATE(29), - [sym_if_statement] = STATE(29), - [sym_switch_statement] = STATE(29), - [sym_case_statement] = STATE(29), - [sym_while_statement] = STATE(29), - [sym_do_statement] = STATE(29), - [sym_for_statement] = STATE(29), - [sym_return_statement] = STATE(29), - [sym_break_statement] = STATE(29), - [sym_continue_statement] = STATE(29), - [sym_goto_statement] = STATE(29), - [sym__expression] = STATE(3502), - [sym_comma_expression] = STATE(6595), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym__empty_declaration] = STATE(29), - [sym_placeholder_type_specifier] = STATE(3232), - [sym_decltype_auto] = STATE(3279), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3232), - [sym__class_name] = STATE(5753), - [sym_virtual] = STATE(3225), - [sym_explicit_function_specifier] = STATE(1936), - [sym_dependent_type] = STATE(3232), - [sym_template_declaration] = STATE(29), - [sym_template_instantiation] = STATE(29), - [sym_operator_cast] = STATE(5134), - [sym__constructor_specifiers] = STATE(1936), - [sym_operator_cast_definition] = STATE(29), - [sym_operator_cast_declaration] = STATE(29), - [sym_constructor_or_destructor_definition] = STATE(29), - [sym_reference_declarator] = STATE(4918), - [sym_structured_binding_declarator] = STATE(4918), - [sym_template_type] = STATE(3608), - [sym_template_function] = STATE(3494), - [sym_namespace_definition] = STATE(29), - [sym_namespace_alias_definition] = STATE(29), - [sym_using_declaration] = STATE(29), - [sym_alias_declaration] = STATE(29), - [sym_static_assert_declaration] = STATE(29), - [sym_concept_definition] = STATE(29), - [sym_for_range_loop] = STATE(29), - [sym_co_return_statement] = STATE(29), - [sym_co_yield_statement] = STATE(29), - [sym_throw_statement] = STATE(29), - [sym_try_statement] = STATE(29), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_destructor_name] = STATE(4918), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4460), - [sym_qualified_identifier] = STATE(2732), - [sym_qualified_type_identifier] = STATE(3593), - [sym_qualified_operator_cast_identifier] = STATE(5134), - [sym_operator_name] = STATE(4918), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_translation_unit_repeat1] = STATE(29), - [aux_sym__declaration_specifiers_repeat1] = STATE(2179), - [aux_sym_attributed_declarator_repeat1] = STATE(206), - [aux_sym_sized_type_specifier_repeat1] = STATE(3171), - [aux_sym_operator_cast_definition_repeat1] = STATE(1936), - [sym_identifier] = ACTIONS(147), - [aux_sym_preproc_include_token1] = ACTIONS(149), - [aux_sym_preproc_def_token1] = ACTIONS(151), - [aux_sym_preproc_if_token1] = ACTIONS(155), - [aux_sym_preproc_ifdef_token1] = ACTIONS(157), - [aux_sym_preproc_ifdef_token2] = ACTIONS(157), - [sym_preproc_directive] = ACTIONS(159), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_typedef] = ACTIONS(163), - [anon_sym_extern] = ACTIONS(165), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(43), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_RBRACE] = ACTIONS(821), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(173), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(61), - [anon_sym_unsigned] = ACTIONS(61), - [anon_sym_long] = ACTIONS(61), - [anon_sym_short] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(63), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(175), - [anon_sym_switch] = ACTIONS(177), - [anon_sym_case] = ACTIONS(179), - [anon_sym_default] = ACTIONS(181), - [anon_sym_while] = ACTIONS(183), - [anon_sym_do] = ACTIONS(185), - [anon_sym_for] = ACTIONS(187), - [anon_sym_return] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), - [anon_sym_goto] = ACTIONS(195), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(107), - [anon_sym_decltype] = ACTIONS(109), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_explicit] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(115), - [anon_sym_template] = ACTIONS(199), - [anon_sym_operator] = ACTIONS(119), - [anon_sym_try] = ACTIONS(201), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(203), - [anon_sym_namespace] = ACTIONS(205), - [anon_sym_using] = ACTIONS(207), - [anon_sym_static_assert] = ACTIONS(209), - [anon_sym_concept] = ACTIONS(211), - [anon_sym_co_return] = ACTIONS(213), - [anon_sym_co_yield] = ACTIONS(215), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), - }, - [44] = { - [sym_preproc_include] = STATE(29), - [sym_preproc_def] = STATE(29), - [sym_preproc_function_def] = STATE(29), - [sym_preproc_call] = STATE(29), - [sym_preproc_if] = STATE(29), - [sym_preproc_ifdef] = STATE(29), - [sym_function_definition] = STATE(29), - [sym_declaration] = STATE(29), - [sym_type_definition] = STATE(29), - [sym__declaration_modifiers] = STATE(3225), - [sym__declaration_specifiers] = STATE(3962), - [sym_linkage_specification] = STATE(29), - [sym_attribute_specifier] = STATE(3225), - [sym_attribute_declaration] = STATE(1136), - [sym_ms_declspec_modifier] = STATE(3225), - [sym_ms_based_modifier] = STATE(6104), - [sym_ms_call_modifier] = STATE(2065), - [sym__declarator] = STATE(5113), - [sym_parenthesized_declarator] = STATE(4918), - [sym_attributed_declarator] = STATE(4918), - [sym_pointer_declarator] = STATE(4918), - [sym_function_declarator] = STATE(4870), - [sym_array_declarator] = STATE(4918), - [sym_compound_statement] = STATE(29), - [sym_storage_class_specifier] = STATE(3225), - [sym_type_qualifier] = STATE(3225), - [sym__type_specifier] = STATE(3322), - [sym_sized_type_specifier] = STATE(3232), - [sym_enum_specifier] = STATE(3232), - [sym_struct_specifier] = STATE(3232), - [sym_union_specifier] = STATE(3232), - [sym_attributed_statement] = STATE(29), - [sym_labeled_statement] = STATE(29), - [sym_expression_statement] = STATE(29), - [sym_if_statement] = STATE(29), - [sym_switch_statement] = STATE(29), - [sym_case_statement] = STATE(29), - [sym_while_statement] = STATE(29), - [sym_do_statement] = STATE(29), - [sym_for_statement] = STATE(29), - [sym_return_statement] = STATE(29), - [sym_break_statement] = STATE(29), - [sym_continue_statement] = STATE(29), - [sym_goto_statement] = STATE(29), - [sym__expression] = STATE(3502), - [sym_comma_expression] = STATE(6595), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym__empty_declaration] = STATE(29), - [sym_placeholder_type_specifier] = STATE(3232), - [sym_decltype_auto] = STATE(3279), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3232), - [sym__class_name] = STATE(5753), - [sym_virtual] = STATE(3225), - [sym_explicit_function_specifier] = STATE(1936), - [sym_dependent_type] = STATE(3232), - [sym_template_declaration] = STATE(29), - [sym_template_instantiation] = STATE(29), - [sym_operator_cast] = STATE(5134), - [sym__constructor_specifiers] = STATE(1936), - [sym_operator_cast_definition] = STATE(29), - [sym_operator_cast_declaration] = STATE(29), - [sym_constructor_or_destructor_definition] = STATE(29), - [sym_reference_declarator] = STATE(4918), - [sym_structured_binding_declarator] = STATE(4918), - [sym_template_type] = STATE(3608), - [sym_template_function] = STATE(3494), - [sym_namespace_definition] = STATE(29), - [sym_namespace_alias_definition] = STATE(29), - [sym_using_declaration] = STATE(29), - [sym_alias_declaration] = STATE(29), - [sym_static_assert_declaration] = STATE(29), - [sym_concept_definition] = STATE(29), - [sym_for_range_loop] = STATE(29), - [sym_co_return_statement] = STATE(29), - [sym_co_yield_statement] = STATE(29), - [sym_throw_statement] = STATE(29), - [sym_try_statement] = STATE(29), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_destructor_name] = STATE(4918), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4460), - [sym_qualified_identifier] = STATE(2732), - [sym_qualified_type_identifier] = STATE(3593), - [sym_qualified_operator_cast_identifier] = STATE(5134), - [sym_operator_name] = STATE(4918), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_translation_unit_repeat1] = STATE(29), - [aux_sym__declaration_specifiers_repeat1] = STATE(2179), - [aux_sym_attributed_declarator_repeat1] = STATE(206), - [aux_sym_sized_type_specifier_repeat1] = STATE(3171), - [aux_sym_operator_cast_definition_repeat1] = STATE(1936), - [sym_identifier] = ACTIONS(147), - [aux_sym_preproc_include_token1] = ACTIONS(149), - [aux_sym_preproc_def_token1] = ACTIONS(151), - [aux_sym_preproc_if_token1] = ACTIONS(155), - [aux_sym_preproc_ifdef_token1] = ACTIONS(157), - [aux_sym_preproc_ifdef_token2] = ACTIONS(157), - [sym_preproc_directive] = ACTIONS(159), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_typedef] = ACTIONS(163), - [anon_sym_extern] = ACTIONS(165), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(43), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_RBRACE] = ACTIONS(823), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(173), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(61), - [anon_sym_unsigned] = ACTIONS(61), - [anon_sym_long] = ACTIONS(61), - [anon_sym_short] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(63), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(175), - [anon_sym_switch] = ACTIONS(177), - [anon_sym_case] = ACTIONS(179), - [anon_sym_default] = ACTIONS(181), - [anon_sym_while] = ACTIONS(183), - [anon_sym_do] = ACTIONS(185), - [anon_sym_for] = ACTIONS(187), - [anon_sym_return] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), - [anon_sym_goto] = ACTIONS(195), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(107), - [anon_sym_decltype] = ACTIONS(109), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_explicit] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(115), - [anon_sym_template] = ACTIONS(199), - [anon_sym_operator] = ACTIONS(119), - [anon_sym_try] = ACTIONS(201), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(203), - [anon_sym_namespace] = ACTIONS(205), - [anon_sym_using] = ACTIONS(207), - [anon_sym_static_assert] = ACTIONS(209), - [anon_sym_concept] = ACTIONS(211), - [anon_sym_co_return] = ACTIONS(213), - [anon_sym_co_yield] = ACTIONS(215), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), - }, - [45] = { [sym_preproc_include] = STATE(43), [sym_preproc_def] = STATE(43), [sym_preproc_function_def] = STATE(43), @@ -34361,28 +51353,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_definition] = STATE(43), [sym_declaration] = STATE(43), [sym_type_definition] = STATE(43), - [sym__declaration_modifiers] = STATE(3225), - [sym__declaration_specifiers] = STATE(3962), + [sym__declaration_modifiers] = STATE(3706), + [sym__declaration_specifiers] = STATE(4618), [sym_linkage_specification] = STATE(43), - [sym_attribute_specifier] = STATE(3225), - [sym_attribute_declaration] = STATE(1136), - [sym_ms_declspec_modifier] = STATE(3225), - [sym_ms_based_modifier] = STATE(6104), - [sym_ms_call_modifier] = STATE(2065), - [sym__declarator] = STATE(5113), - [sym_parenthesized_declarator] = STATE(4918), - [sym_attributed_declarator] = STATE(4918), - [sym_pointer_declarator] = STATE(4918), - [sym_function_declarator] = STATE(4870), - [sym_array_declarator] = STATE(4918), + [sym_attribute_specifier] = STATE(3706), + [sym_attribute_declaration] = STATE(1427), + [sym_ms_declspec_modifier] = STATE(3706), + [sym_ms_based_modifier] = STATE(7654), + [sym_ms_call_modifier] = STATE(2462), + [sym__declarator] = STATE(5881), + [sym_parenthesized_declarator] = STATE(5640), + [sym_attributed_declarator] = STATE(5640), + [sym_pointer_declarator] = STATE(5640), + [sym_function_declarator] = STATE(5588), + [sym_array_declarator] = STATE(5640), [sym_compound_statement] = STATE(43), - [sym_storage_class_specifier] = STATE(3225), - [sym_type_qualifier] = STATE(3225), - [sym__type_specifier] = STATE(3322), - [sym_sized_type_specifier] = STATE(3232), - [sym_enum_specifier] = STATE(3232), - [sym_struct_specifier] = STATE(3232), - [sym_union_specifier] = STATE(3232), + [sym_storage_class_specifier] = STATE(3706), + [sym_type_qualifier] = STATE(3706), + [sym__type_specifier] = STATE(3826), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), [sym_attributed_statement] = STATE(43), [sym_labeled_statement] = STATE(43), [sym_expression_statement] = STATE(43), @@ -34396,44 +51388,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(43), [sym_continue_statement] = STATE(43), [sym_goto_statement] = STATE(43), - [sym__expression] = STATE(3502), - [sym_comma_expression] = STATE(6595), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), + [sym__expression] = STATE(4182), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7590), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), [sym__empty_declaration] = STATE(43), - [sym_placeholder_type_specifier] = STATE(3232), - [sym_decltype_auto] = STATE(3279), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3232), - [sym__class_name] = STATE(5753), - [sym_virtual] = STATE(3225), - [sym_explicit_function_specifier] = STATE(1936), - [sym_dependent_type] = STATE(3232), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym__class_name] = STATE(6623), + [sym_virtual] = STATE(3706), + [sym_explicit_function_specifier] = STATE(2240), + [sym_dependent_type] = STATE(3723), [sym_template_declaration] = STATE(43), [sym_template_instantiation] = STATE(43), - [sym_operator_cast] = STATE(5134), - [sym__constructor_specifiers] = STATE(1936), + [sym_operator_cast] = STATE(5937), + [sym__constructor_specifiers] = STATE(2240), [sym_operator_cast_definition] = STATE(43), [sym_operator_cast_declaration] = STATE(43), [sym_constructor_or_destructor_definition] = STATE(43), - [sym_reference_declarator] = STATE(4918), - [sym_structured_binding_declarator] = STATE(4918), - [sym_template_type] = STATE(3608), - [sym_template_function] = STATE(3494), + [sym_reference_declarator] = STATE(5640), + [sym_structured_binding_declarator] = STATE(5640), + [sym_template_type] = STATE(3921), + [sym_template_function] = STATE(4066), [sym_namespace_definition] = STATE(43), [sym_namespace_alias_definition] = STATE(43), [sym_using_declaration] = STATE(43), @@ -34445,264 +51442,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_co_yield_statement] = STATE(43), [sym_throw_statement] = STATE(43), [sym_try_statement] = STATE(43), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_destructor_name] = STATE(4918), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4460), - [sym_qualified_identifier] = STATE(2732), - [sym_qualified_type_identifier] = STATE(3593), - [sym_qualified_operator_cast_identifier] = STATE(5134), - [sym_operator_name] = STATE(4918), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_translation_unit_repeat1] = STATE(43), - [aux_sym__declaration_specifiers_repeat1] = STATE(2179), - [aux_sym_attributed_declarator_repeat1] = STATE(206), - [aux_sym_sized_type_specifier_repeat1] = STATE(3171), - [aux_sym_operator_cast_definition_repeat1] = STATE(1936), - [sym_identifier] = ACTIONS(147), - [aux_sym_preproc_include_token1] = ACTIONS(149), - [aux_sym_preproc_def_token1] = ACTIONS(151), - [aux_sym_preproc_if_token1] = ACTIONS(155), - [aux_sym_preproc_ifdef_token1] = ACTIONS(157), - [aux_sym_preproc_ifdef_token2] = ACTIONS(157), - [sym_preproc_directive] = ACTIONS(159), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_typedef] = ACTIONS(163), - [anon_sym_extern] = ACTIONS(165), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(43), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_RBRACE] = ACTIONS(825), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(173), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(61), - [anon_sym_unsigned] = ACTIONS(61), - [anon_sym_long] = ACTIONS(61), - [anon_sym_short] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(63), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(175), - [anon_sym_switch] = ACTIONS(177), - [anon_sym_case] = ACTIONS(179), - [anon_sym_default] = ACTIONS(181), - [anon_sym_while] = ACTIONS(183), - [anon_sym_do] = ACTIONS(185), - [anon_sym_for] = ACTIONS(187), - [anon_sym_return] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), - [anon_sym_goto] = ACTIONS(195), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(107), - [anon_sym_decltype] = ACTIONS(109), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_explicit] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(115), - [anon_sym_template] = ACTIONS(199), - [anon_sym_operator] = ACTIONS(119), - [anon_sym_try] = ACTIONS(201), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(203), - [anon_sym_namespace] = ACTIONS(205), - [anon_sym_using] = ACTIONS(207), - [anon_sym_static_assert] = ACTIONS(209), - [anon_sym_concept] = ACTIONS(211), - [anon_sym_co_return] = ACTIONS(213), - [anon_sym_co_yield] = ACTIONS(215), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), - }, - [46] = { - [sym_preproc_include] = STATE(71), - [sym_preproc_def] = STATE(71), - [sym_preproc_function_def] = STATE(71), - [sym_preproc_call] = STATE(71), - [sym_preproc_if] = STATE(71), - [sym_preproc_ifdef] = STATE(71), - [sym_function_definition] = STATE(71), - [sym_declaration] = STATE(71), - [sym_type_definition] = STATE(71), - [sym__declaration_modifiers] = STATE(3225), - [sym__declaration_specifiers] = STATE(3962), - [sym_linkage_specification] = STATE(71), - [sym_attribute_specifier] = STATE(3225), - [sym_attribute_declaration] = STATE(1136), - [sym_ms_declspec_modifier] = STATE(3225), - [sym_ms_based_modifier] = STATE(6104), - [sym_ms_call_modifier] = STATE(2065), - [sym__declarator] = STATE(5113), - [sym_parenthesized_declarator] = STATE(4918), - [sym_attributed_declarator] = STATE(4918), - [sym_pointer_declarator] = STATE(4918), - [sym_function_declarator] = STATE(4870), - [sym_array_declarator] = STATE(4918), - [sym_compound_statement] = STATE(71), - [sym_storage_class_specifier] = STATE(3225), - [sym_type_qualifier] = STATE(3225), - [sym__type_specifier] = STATE(3322), - [sym_sized_type_specifier] = STATE(3232), - [sym_enum_specifier] = STATE(3232), - [sym_struct_specifier] = STATE(3232), - [sym_union_specifier] = STATE(3232), - [sym_attributed_statement] = STATE(71), - [sym_labeled_statement] = STATE(71), - [sym_expression_statement] = STATE(71), - [sym_if_statement] = STATE(71), - [sym_switch_statement] = STATE(71), - [sym_case_statement] = STATE(71), - [sym_while_statement] = STATE(71), - [sym_do_statement] = STATE(71), - [sym_for_statement] = STATE(71), - [sym_return_statement] = STATE(71), - [sym_break_statement] = STATE(71), - [sym_continue_statement] = STATE(71), - [sym_goto_statement] = STATE(71), - [sym__expression] = STATE(3502), - [sym_comma_expression] = STATE(6595), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym__empty_declaration] = STATE(71), - [sym_placeholder_type_specifier] = STATE(3232), - [sym_decltype_auto] = STATE(3279), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3232), - [sym__class_name] = STATE(5753), - [sym_virtual] = STATE(3225), - [sym_explicit_function_specifier] = STATE(1936), - [sym_dependent_type] = STATE(3232), - [sym_template_declaration] = STATE(71), - [sym_template_instantiation] = STATE(71), - [sym_operator_cast] = STATE(5134), - [sym__constructor_specifiers] = STATE(1936), - [sym_operator_cast_definition] = STATE(71), - [sym_operator_cast_declaration] = STATE(71), - [sym_constructor_or_destructor_definition] = STATE(71), - [sym_reference_declarator] = STATE(4918), - [sym_structured_binding_declarator] = STATE(4918), - [sym_template_type] = STATE(3608), - [sym_template_function] = STATE(3494), - [sym_namespace_definition] = STATE(71), - [sym_namespace_alias_definition] = STATE(71), - [sym_using_declaration] = STATE(71), - [sym_alias_declaration] = STATE(71), - [sym_static_assert_declaration] = STATE(71), - [sym_concept_definition] = STATE(71), - [sym_for_range_loop] = STATE(71), - [sym_co_return_statement] = STATE(71), - [sym_co_yield_statement] = STATE(71), - [sym_throw_statement] = STATE(71), - [sym_try_statement] = STATE(71), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_destructor_name] = STATE(4918), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4460), - [sym_qualified_identifier] = STATE(2732), - [sym_qualified_type_identifier] = STATE(3593), - [sym_qualified_operator_cast_identifier] = STATE(5134), - [sym_operator_name] = STATE(4918), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_translation_unit_repeat1] = STATE(71), - [aux_sym__declaration_specifiers_repeat1] = STATE(2179), - [aux_sym_attributed_declarator_repeat1] = STATE(206), - [aux_sym_sized_type_specifier_repeat1] = STATE(3171), - [aux_sym_operator_cast_definition_repeat1] = STATE(1936), - [sym_identifier] = ACTIONS(147), - [aux_sym_preproc_include_token1] = ACTIONS(149), - [aux_sym_preproc_def_token1] = ACTIONS(151), - [aux_sym_preproc_if_token1] = ACTIONS(155), - [aux_sym_preproc_ifdef_token1] = ACTIONS(157), - [aux_sym_preproc_ifdef_token2] = ACTIONS(157), - [sym_preproc_directive] = ACTIONS(159), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_destructor_name] = STATE(5640), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5143), + [sym_qualified_identifier] = STATE(3249), + [sym_qualified_type_identifier] = STATE(3915), + [sym_qualified_operator_cast_identifier] = STATE(5937), + [sym_operator_name] = STATE(5640), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_preproc_if_repeat1] = STATE(43), + [aux_sym__declaration_specifiers_repeat1] = STATE(2514), + [aux_sym_attributed_declarator_repeat1] = STATE(309), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [aux_sym_operator_cast_definition_repeat1] = STATE(2240), + [sym_identifier] = ACTIONS(153), + [aux_sym_preproc_include_token1] = ACTIONS(155), + [aux_sym_preproc_def_token1] = ACTIONS(157), + [aux_sym_preproc_if_token1] = ACTIONS(161), + [aux_sym_preproc_ifdef_token1] = ACTIONS(163), + [aux_sym_preproc_ifdef_token2] = ACTIONS(163), + [sym_preproc_directive] = ACTIONS(165), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -34711,226 +51480,238 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_typedef] = ACTIONS(163), - [anon_sym_extern] = ACTIONS(165), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(43), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_RBRACE] = ACTIONS(827), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(173), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(61), - [anon_sym_unsigned] = ACTIONS(61), - [anon_sym_long] = ACTIONS(61), - [anon_sym_short] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(63), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(175), - [anon_sym_switch] = ACTIONS(177), - [anon_sym_case] = ACTIONS(179), - [anon_sym_default] = ACTIONS(181), - [anon_sym_while] = ACTIONS(183), - [anon_sym_do] = ACTIONS(185), - [anon_sym_for] = ACTIONS(187), - [anon_sym_return] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), - [anon_sym_goto] = ACTIONS(195), + [anon_sym_SEMI] = ACTIONS(167), + [anon_sym_typedef] = ACTIONS(169), + [anon_sym_extern] = ACTIONS(171), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(45), + [anon_sym___cdecl] = ACTIONS(47), + [anon_sym___clrcall] = ACTIONS(47), + [anon_sym___stdcall] = ACTIONS(47), + [anon_sym___fastcall] = ACTIONS(47), + [anon_sym___thiscall] = ACTIONS(47), + [anon_sym___vectorcall] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(738), + [anon_sym_RBRACE] = ACTIONS(744), + [anon_sym_LBRACK] = ACTIONS(51), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(179), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(181), + [anon_sym_switch] = ACTIONS(183), + [anon_sym_case] = ACTIONS(185), + [anon_sym_default] = ACTIONS(187), + [anon_sym_while] = ACTIONS(189), + [anon_sym_do] = ACTIONS(191), + [anon_sym_for] = ACTIONS(193), + [anon_sym_return] = ACTIONS(195), + [anon_sym_break] = ACTIONS(197), + [anon_sym_continue] = ACTIONS(199), + [anon_sym_goto] = ACTIONS(201), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(107), - [anon_sym_decltype] = ACTIONS(109), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_explicit] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(115), - [anon_sym_template] = ACTIONS(199), - [anon_sym_operator] = ACTIONS(119), - [anon_sym_try] = ACTIONS(201), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(203), - [anon_sym_namespace] = ACTIONS(205), - [anon_sym_using] = ACTIONS(207), - [anon_sym_static_assert] = ACTIONS(209), - [anon_sym_concept] = ACTIONS(211), - [anon_sym_co_return] = ACTIONS(213), - [anon_sym_co_yield] = ACTIONS(215), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(113), + [anon_sym_decltype] = ACTIONS(115), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_explicit] = ACTIONS(119), + [anon_sym_typename] = ACTIONS(121), + [anon_sym_template] = ACTIONS(207), + [anon_sym_operator] = ACTIONS(125), + [anon_sym_try] = ACTIONS(209), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(211), + [anon_sym_namespace] = ACTIONS(213), + [anon_sym_using] = ACTIONS(215), + [anon_sym_static_assert] = ACTIONS(217), + [anon_sym_concept] = ACTIONS(219), + [anon_sym_co_return] = ACTIONS(221), + [anon_sym_co_yield] = ACTIONS(223), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, - [47] = { - [sym_preproc_include] = STATE(29), - [sym_preproc_def] = STATE(29), - [sym_preproc_function_def] = STATE(29), - [sym_preproc_call] = STATE(29), - [sym_preproc_if] = STATE(29), - [sym_preproc_ifdef] = STATE(29), - [sym_function_definition] = STATE(29), - [sym_declaration] = STATE(29), - [sym_type_definition] = STATE(29), - [sym__declaration_modifiers] = STATE(3225), - [sym__declaration_specifiers] = STATE(3962), - [sym_linkage_specification] = STATE(29), - [sym_attribute_specifier] = STATE(3225), - [sym_attribute_declaration] = STATE(1136), - [sym_ms_declspec_modifier] = STATE(3225), - [sym_ms_based_modifier] = STATE(6104), - [sym_ms_call_modifier] = STATE(2065), - [sym__declarator] = STATE(5113), - [sym_parenthesized_declarator] = STATE(4918), - [sym_attributed_declarator] = STATE(4918), - [sym_pointer_declarator] = STATE(4918), - [sym_function_declarator] = STATE(4870), - [sym_array_declarator] = STATE(4918), - [sym_compound_statement] = STATE(29), - [sym_storage_class_specifier] = STATE(3225), - [sym_type_qualifier] = STATE(3225), - [sym__type_specifier] = STATE(3322), - [sym_sized_type_specifier] = STATE(3232), - [sym_enum_specifier] = STATE(3232), - [sym_struct_specifier] = STATE(3232), - [sym_union_specifier] = STATE(3232), - [sym_attributed_statement] = STATE(29), - [sym_labeled_statement] = STATE(29), - [sym_expression_statement] = STATE(29), - [sym_if_statement] = STATE(29), - [sym_switch_statement] = STATE(29), - [sym_case_statement] = STATE(29), - [sym_while_statement] = STATE(29), - [sym_do_statement] = STATE(29), - [sym_for_statement] = STATE(29), - [sym_return_statement] = STATE(29), - [sym_break_statement] = STATE(29), - [sym_continue_statement] = STATE(29), - [sym_goto_statement] = STATE(29), - [sym__expression] = STATE(3502), - [sym_comma_expression] = STATE(6595), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym__empty_declaration] = STATE(29), - [sym_placeholder_type_specifier] = STATE(3232), - [sym_decltype_auto] = STATE(3279), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3232), - [sym__class_name] = STATE(5753), - [sym_virtual] = STATE(3225), - [sym_explicit_function_specifier] = STATE(1936), - [sym_dependent_type] = STATE(3232), - [sym_template_declaration] = STATE(29), - [sym_template_instantiation] = STATE(29), - [sym_operator_cast] = STATE(5134), - [sym__constructor_specifiers] = STATE(1936), - [sym_operator_cast_definition] = STATE(29), - [sym_operator_cast_declaration] = STATE(29), - [sym_constructor_or_destructor_definition] = STATE(29), - [sym_reference_declarator] = STATE(4918), - [sym_structured_binding_declarator] = STATE(4918), - [sym_template_type] = STATE(3608), - [sym_template_function] = STATE(3494), - [sym_namespace_definition] = STATE(29), - [sym_namespace_alias_definition] = STATE(29), - [sym_using_declaration] = STATE(29), - [sym_alias_declaration] = STATE(29), - [sym_static_assert_declaration] = STATE(29), - [sym_concept_definition] = STATE(29), - [sym_for_range_loop] = STATE(29), - [sym_co_return_statement] = STATE(29), - [sym_co_yield_statement] = STATE(29), - [sym_throw_statement] = STATE(29), - [sym_try_statement] = STATE(29), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_destructor_name] = STATE(4918), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4460), - [sym_qualified_identifier] = STATE(2732), - [sym_qualified_type_identifier] = STATE(3593), - [sym_qualified_operator_cast_identifier] = STATE(5134), - [sym_operator_name] = STATE(4918), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_translation_unit_repeat1] = STATE(29), - [aux_sym__declaration_specifiers_repeat1] = STATE(2179), - [aux_sym_attributed_declarator_repeat1] = STATE(206), - [aux_sym_sized_type_specifier_repeat1] = STATE(3171), - [aux_sym_operator_cast_definition_repeat1] = STATE(1936), - [sym_identifier] = ACTIONS(147), - [aux_sym_preproc_include_token1] = ACTIONS(149), - [aux_sym_preproc_def_token1] = ACTIONS(151), - [aux_sym_preproc_if_token1] = ACTIONS(155), - [aux_sym_preproc_ifdef_token1] = ACTIONS(157), - [aux_sym_preproc_ifdef_token2] = ACTIONS(157), - [sym_preproc_directive] = ACTIONS(159), + [41] = { + [sym_preproc_include] = STATE(63), + [sym_preproc_def] = STATE(63), + [sym_preproc_function_def] = STATE(63), + [sym_preproc_call] = STATE(63), + [sym_preproc_if] = STATE(63), + [sym_preproc_ifdef] = STATE(63), + [sym_function_definition] = STATE(63), + [sym_declaration] = STATE(63), + [sym_type_definition] = STATE(63), + [sym__declaration_modifiers] = STATE(3706), + [sym__declaration_specifiers] = STATE(4618), + [sym_linkage_specification] = STATE(63), + [sym_attribute_specifier] = STATE(3706), + [sym_attribute_declaration] = STATE(1427), + [sym_ms_declspec_modifier] = STATE(3706), + [sym_ms_based_modifier] = STATE(7654), + [sym_ms_call_modifier] = STATE(2462), + [sym__declarator] = STATE(5881), + [sym_parenthesized_declarator] = STATE(5640), + [sym_attributed_declarator] = STATE(5640), + [sym_pointer_declarator] = STATE(5640), + [sym_function_declarator] = STATE(5588), + [sym_array_declarator] = STATE(5640), + [sym_compound_statement] = STATE(63), + [sym_storage_class_specifier] = STATE(3706), + [sym_type_qualifier] = STATE(3706), + [sym__type_specifier] = STATE(3826), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), + [sym_attributed_statement] = STATE(63), + [sym_labeled_statement] = STATE(63), + [sym_expression_statement] = STATE(63), + [sym_if_statement] = STATE(63), + [sym_switch_statement] = STATE(63), + [sym_case_statement] = STATE(63), + [sym_while_statement] = STATE(63), + [sym_do_statement] = STATE(63), + [sym_for_statement] = STATE(63), + [sym_return_statement] = STATE(63), + [sym_break_statement] = STATE(63), + [sym_continue_statement] = STATE(63), + [sym_goto_statement] = STATE(63), + [sym__expression] = STATE(4182), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7590), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym__empty_declaration] = STATE(63), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym__class_name] = STATE(6623), + [sym_virtual] = STATE(3706), + [sym_explicit_function_specifier] = STATE(2240), + [sym_dependent_type] = STATE(3723), + [sym_template_declaration] = STATE(63), + [sym_template_instantiation] = STATE(63), + [sym_operator_cast] = STATE(5937), + [sym__constructor_specifiers] = STATE(2240), + [sym_operator_cast_definition] = STATE(63), + [sym_operator_cast_declaration] = STATE(63), + [sym_constructor_or_destructor_definition] = STATE(63), + [sym_reference_declarator] = STATE(5640), + [sym_structured_binding_declarator] = STATE(5640), + [sym_template_type] = STATE(3921), + [sym_template_function] = STATE(4066), + [sym_namespace_definition] = STATE(63), + [sym_namespace_alias_definition] = STATE(63), + [sym_using_declaration] = STATE(63), + [sym_alias_declaration] = STATE(63), + [sym_static_assert_declaration] = STATE(63), + [sym_concept_definition] = STATE(63), + [sym_for_range_loop] = STATE(63), + [sym_co_return_statement] = STATE(63), + [sym_co_yield_statement] = STATE(63), + [sym_throw_statement] = STATE(63), + [sym_try_statement] = STATE(63), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_destructor_name] = STATE(5640), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5143), + [sym_qualified_identifier] = STATE(3249), + [sym_qualified_type_identifier] = STATE(3915), + [sym_qualified_operator_cast_identifier] = STATE(5937), + [sym_operator_name] = STATE(5640), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_preproc_if_repeat1] = STATE(63), + [aux_sym__declaration_specifiers_repeat1] = STATE(2514), + [aux_sym_attributed_declarator_repeat1] = STATE(309), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [aux_sym_operator_cast_definition_repeat1] = STATE(2240), + [sym_identifier] = ACTIONS(153), + [aux_sym_preproc_include_token1] = ACTIONS(155), + [aux_sym_preproc_def_token1] = ACTIONS(157), + [aux_sym_preproc_if_token1] = ACTIONS(161), + [aux_sym_preproc_ifdef_token1] = ACTIONS(163), + [aux_sym_preproc_ifdef_token2] = ACTIONS(163), + [sym_preproc_directive] = ACTIONS(165), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -34939,226 +51720,238 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_typedef] = ACTIONS(163), - [anon_sym_extern] = ACTIONS(165), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(43), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_RBRACE] = ACTIONS(829), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(173), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(61), - [anon_sym_unsigned] = ACTIONS(61), - [anon_sym_long] = ACTIONS(61), - [anon_sym_short] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(63), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(175), - [anon_sym_switch] = ACTIONS(177), - [anon_sym_case] = ACTIONS(179), - [anon_sym_default] = ACTIONS(181), - [anon_sym_while] = ACTIONS(183), - [anon_sym_do] = ACTIONS(185), - [anon_sym_for] = ACTIONS(187), - [anon_sym_return] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), - [anon_sym_goto] = ACTIONS(195), + [anon_sym_SEMI] = ACTIONS(167), + [anon_sym_typedef] = ACTIONS(169), + [anon_sym_extern] = ACTIONS(171), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(45), + [anon_sym___cdecl] = ACTIONS(47), + [anon_sym___clrcall] = ACTIONS(47), + [anon_sym___stdcall] = ACTIONS(47), + [anon_sym___fastcall] = ACTIONS(47), + [anon_sym___thiscall] = ACTIONS(47), + [anon_sym___vectorcall] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(738), + [anon_sym_RBRACE] = ACTIONS(746), + [anon_sym_LBRACK] = ACTIONS(51), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(179), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(181), + [anon_sym_switch] = ACTIONS(183), + [anon_sym_case] = ACTIONS(185), + [anon_sym_default] = ACTIONS(187), + [anon_sym_while] = ACTIONS(189), + [anon_sym_do] = ACTIONS(191), + [anon_sym_for] = ACTIONS(193), + [anon_sym_return] = ACTIONS(195), + [anon_sym_break] = ACTIONS(197), + [anon_sym_continue] = ACTIONS(199), + [anon_sym_goto] = ACTIONS(201), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(107), - [anon_sym_decltype] = ACTIONS(109), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_explicit] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(115), - [anon_sym_template] = ACTIONS(199), - [anon_sym_operator] = ACTIONS(119), - [anon_sym_try] = ACTIONS(201), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(203), - [anon_sym_namespace] = ACTIONS(205), - [anon_sym_using] = ACTIONS(207), - [anon_sym_static_assert] = ACTIONS(209), - [anon_sym_concept] = ACTIONS(211), - [anon_sym_co_return] = ACTIONS(213), - [anon_sym_co_yield] = ACTIONS(215), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(113), + [anon_sym_decltype] = ACTIONS(115), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_explicit] = ACTIONS(119), + [anon_sym_typename] = ACTIONS(121), + [anon_sym_template] = ACTIONS(207), + [anon_sym_operator] = ACTIONS(125), + [anon_sym_try] = ACTIONS(209), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(211), + [anon_sym_namespace] = ACTIONS(213), + [anon_sym_using] = ACTIONS(215), + [anon_sym_static_assert] = ACTIONS(217), + [anon_sym_concept] = ACTIONS(219), + [anon_sym_co_return] = ACTIONS(221), + [anon_sym_co_yield] = ACTIONS(223), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, - [48] = { - [sym_preproc_include] = STATE(70), - [sym_preproc_def] = STATE(70), - [sym_preproc_function_def] = STATE(70), - [sym_preproc_call] = STATE(70), - [sym_preproc_if] = STATE(70), - [sym_preproc_ifdef] = STATE(70), - [sym_function_definition] = STATE(70), - [sym_declaration] = STATE(70), - [sym_type_definition] = STATE(70), - [sym__declaration_modifiers] = STATE(3225), - [sym__declaration_specifiers] = STATE(3962), - [sym_linkage_specification] = STATE(70), - [sym_attribute_specifier] = STATE(3225), - [sym_attribute_declaration] = STATE(1136), - [sym_ms_declspec_modifier] = STATE(3225), - [sym_ms_based_modifier] = STATE(6104), - [sym_ms_call_modifier] = STATE(2065), - [sym__declarator] = STATE(5113), - [sym_parenthesized_declarator] = STATE(4918), - [sym_attributed_declarator] = STATE(4918), - [sym_pointer_declarator] = STATE(4918), - [sym_function_declarator] = STATE(4870), - [sym_array_declarator] = STATE(4918), - [sym_compound_statement] = STATE(70), - [sym_storage_class_specifier] = STATE(3225), - [sym_type_qualifier] = STATE(3225), - [sym__type_specifier] = STATE(3322), - [sym_sized_type_specifier] = STATE(3232), - [sym_enum_specifier] = STATE(3232), - [sym_struct_specifier] = STATE(3232), - [sym_union_specifier] = STATE(3232), - [sym_attributed_statement] = STATE(70), - [sym_labeled_statement] = STATE(70), - [sym_expression_statement] = STATE(70), - [sym_if_statement] = STATE(70), - [sym_switch_statement] = STATE(70), - [sym_case_statement] = STATE(70), - [sym_while_statement] = STATE(70), - [sym_do_statement] = STATE(70), - [sym_for_statement] = STATE(70), - [sym_return_statement] = STATE(70), - [sym_break_statement] = STATE(70), - [sym_continue_statement] = STATE(70), - [sym_goto_statement] = STATE(70), - [sym__expression] = STATE(3502), - [sym_comma_expression] = STATE(6595), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym__empty_declaration] = STATE(70), - [sym_placeholder_type_specifier] = STATE(3232), - [sym_decltype_auto] = STATE(3279), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3232), - [sym__class_name] = STATE(5753), - [sym_virtual] = STATE(3225), - [sym_explicit_function_specifier] = STATE(1936), - [sym_dependent_type] = STATE(3232), - [sym_template_declaration] = STATE(70), - [sym_template_instantiation] = STATE(70), - [sym_operator_cast] = STATE(5134), - [sym__constructor_specifiers] = STATE(1936), - [sym_operator_cast_definition] = STATE(70), - [sym_operator_cast_declaration] = STATE(70), - [sym_constructor_or_destructor_definition] = STATE(70), - [sym_reference_declarator] = STATE(4918), - [sym_structured_binding_declarator] = STATE(4918), - [sym_template_type] = STATE(3608), - [sym_template_function] = STATE(3494), - [sym_namespace_definition] = STATE(70), - [sym_namespace_alias_definition] = STATE(70), - [sym_using_declaration] = STATE(70), - [sym_alias_declaration] = STATE(70), - [sym_static_assert_declaration] = STATE(70), - [sym_concept_definition] = STATE(70), - [sym_for_range_loop] = STATE(70), - [sym_co_return_statement] = STATE(70), - [sym_co_yield_statement] = STATE(70), - [sym_throw_statement] = STATE(70), - [sym_try_statement] = STATE(70), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_destructor_name] = STATE(4918), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4460), - [sym_qualified_identifier] = STATE(2732), - [sym_qualified_type_identifier] = STATE(3593), - [sym_qualified_operator_cast_identifier] = STATE(5134), - [sym_operator_name] = STATE(4918), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_translation_unit_repeat1] = STATE(70), - [aux_sym__declaration_specifiers_repeat1] = STATE(2179), - [aux_sym_attributed_declarator_repeat1] = STATE(206), - [aux_sym_sized_type_specifier_repeat1] = STATE(3171), - [aux_sym_operator_cast_definition_repeat1] = STATE(1936), - [sym_identifier] = ACTIONS(147), - [aux_sym_preproc_include_token1] = ACTIONS(149), - [aux_sym_preproc_def_token1] = ACTIONS(151), - [aux_sym_preproc_if_token1] = ACTIONS(155), - [aux_sym_preproc_ifdef_token1] = ACTIONS(157), - [aux_sym_preproc_ifdef_token2] = ACTIONS(157), - [sym_preproc_directive] = ACTIONS(159), + [42] = { + [sym_preproc_include] = STATE(64), + [sym_preproc_def] = STATE(64), + [sym_preproc_function_def] = STATE(64), + [sym_preproc_call] = STATE(64), + [sym_preproc_if] = STATE(64), + [sym_preproc_ifdef] = STATE(64), + [sym_function_definition] = STATE(64), + [sym_declaration] = STATE(64), + [sym_type_definition] = STATE(64), + [sym__declaration_modifiers] = STATE(3706), + [sym__declaration_specifiers] = STATE(4618), + [sym_linkage_specification] = STATE(64), + [sym_attribute_specifier] = STATE(3706), + [sym_attribute_declaration] = STATE(1427), + [sym_ms_declspec_modifier] = STATE(3706), + [sym_ms_based_modifier] = STATE(7654), + [sym_ms_call_modifier] = STATE(2462), + [sym__declarator] = STATE(5881), + [sym_parenthesized_declarator] = STATE(5640), + [sym_attributed_declarator] = STATE(5640), + [sym_pointer_declarator] = STATE(5640), + [sym_function_declarator] = STATE(5588), + [sym_array_declarator] = STATE(5640), + [sym_compound_statement] = STATE(64), + [sym_storage_class_specifier] = STATE(3706), + [sym_type_qualifier] = STATE(3706), + [sym__type_specifier] = STATE(3826), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), + [sym_attributed_statement] = STATE(64), + [sym_labeled_statement] = STATE(64), + [sym_expression_statement] = STATE(64), + [sym_if_statement] = STATE(64), + [sym_switch_statement] = STATE(64), + [sym_case_statement] = STATE(64), + [sym_while_statement] = STATE(64), + [sym_do_statement] = STATE(64), + [sym_for_statement] = STATE(64), + [sym_return_statement] = STATE(64), + [sym_break_statement] = STATE(64), + [sym_continue_statement] = STATE(64), + [sym_goto_statement] = STATE(64), + [sym__expression] = STATE(4182), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7590), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym__empty_declaration] = STATE(64), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym__class_name] = STATE(6623), + [sym_virtual] = STATE(3706), + [sym_explicit_function_specifier] = STATE(2240), + [sym_dependent_type] = STATE(3723), + [sym_template_declaration] = STATE(64), + [sym_template_instantiation] = STATE(64), + [sym_operator_cast] = STATE(5937), + [sym__constructor_specifiers] = STATE(2240), + [sym_operator_cast_definition] = STATE(64), + [sym_operator_cast_declaration] = STATE(64), + [sym_constructor_or_destructor_definition] = STATE(64), + [sym_reference_declarator] = STATE(5640), + [sym_structured_binding_declarator] = STATE(5640), + [sym_template_type] = STATE(3921), + [sym_template_function] = STATE(4066), + [sym_namespace_definition] = STATE(64), + [sym_namespace_alias_definition] = STATE(64), + [sym_using_declaration] = STATE(64), + [sym_alias_declaration] = STATE(64), + [sym_static_assert_declaration] = STATE(64), + [sym_concept_definition] = STATE(64), + [sym_for_range_loop] = STATE(64), + [sym_co_return_statement] = STATE(64), + [sym_co_yield_statement] = STATE(64), + [sym_throw_statement] = STATE(64), + [sym_try_statement] = STATE(64), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_destructor_name] = STATE(5640), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5143), + [sym_qualified_identifier] = STATE(3249), + [sym_qualified_type_identifier] = STATE(3915), + [sym_qualified_operator_cast_identifier] = STATE(5937), + [sym_operator_name] = STATE(5640), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_preproc_if_repeat1] = STATE(64), + [aux_sym__declaration_specifiers_repeat1] = STATE(2514), + [aux_sym_attributed_declarator_repeat1] = STATE(309), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [aux_sym_operator_cast_definition_repeat1] = STATE(2240), + [sym_identifier] = ACTIONS(153), + [aux_sym_preproc_include_token1] = ACTIONS(155), + [aux_sym_preproc_def_token1] = ACTIONS(157), + [aux_sym_preproc_if_token1] = ACTIONS(161), + [aux_sym_preproc_ifdef_token1] = ACTIONS(163), + [aux_sym_preproc_ifdef_token2] = ACTIONS(163), + [sym_preproc_directive] = ACTIONS(165), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -35167,226 +51960,238 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_typedef] = ACTIONS(163), - [anon_sym_extern] = ACTIONS(165), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(43), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_RBRACE] = ACTIONS(831), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(173), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(61), - [anon_sym_unsigned] = ACTIONS(61), - [anon_sym_long] = ACTIONS(61), - [anon_sym_short] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(63), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(175), - [anon_sym_switch] = ACTIONS(177), - [anon_sym_case] = ACTIONS(179), - [anon_sym_default] = ACTIONS(181), - [anon_sym_while] = ACTIONS(183), - [anon_sym_do] = ACTIONS(185), - [anon_sym_for] = ACTIONS(187), - [anon_sym_return] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), - [anon_sym_goto] = ACTIONS(195), + [anon_sym_SEMI] = ACTIONS(167), + [anon_sym_typedef] = ACTIONS(169), + [anon_sym_extern] = ACTIONS(171), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(45), + [anon_sym___cdecl] = ACTIONS(47), + [anon_sym___clrcall] = ACTIONS(47), + [anon_sym___stdcall] = ACTIONS(47), + [anon_sym___fastcall] = ACTIONS(47), + [anon_sym___thiscall] = ACTIONS(47), + [anon_sym___vectorcall] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(738), + [anon_sym_RBRACE] = ACTIONS(748), + [anon_sym_LBRACK] = ACTIONS(51), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(179), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(181), + [anon_sym_switch] = ACTIONS(183), + [anon_sym_case] = ACTIONS(185), + [anon_sym_default] = ACTIONS(187), + [anon_sym_while] = ACTIONS(189), + [anon_sym_do] = ACTIONS(191), + [anon_sym_for] = ACTIONS(193), + [anon_sym_return] = ACTIONS(195), + [anon_sym_break] = ACTIONS(197), + [anon_sym_continue] = ACTIONS(199), + [anon_sym_goto] = ACTIONS(201), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(107), - [anon_sym_decltype] = ACTIONS(109), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_explicit] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(115), - [anon_sym_template] = ACTIONS(199), - [anon_sym_operator] = ACTIONS(119), - [anon_sym_try] = ACTIONS(201), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(203), - [anon_sym_namespace] = ACTIONS(205), - [anon_sym_using] = ACTIONS(207), - [anon_sym_static_assert] = ACTIONS(209), - [anon_sym_concept] = ACTIONS(211), - [anon_sym_co_return] = ACTIONS(213), - [anon_sym_co_yield] = ACTIONS(215), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(113), + [anon_sym_decltype] = ACTIONS(115), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_explicit] = ACTIONS(119), + [anon_sym_typename] = ACTIONS(121), + [anon_sym_template] = ACTIONS(207), + [anon_sym_operator] = ACTIONS(125), + [anon_sym_try] = ACTIONS(209), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(211), + [anon_sym_namespace] = ACTIONS(213), + [anon_sym_using] = ACTIONS(215), + [anon_sym_static_assert] = ACTIONS(217), + [anon_sym_concept] = ACTIONS(219), + [anon_sym_co_return] = ACTIONS(221), + [anon_sym_co_yield] = ACTIONS(223), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, - [49] = { - [sym_preproc_include] = STATE(29), - [sym_preproc_def] = STATE(29), - [sym_preproc_function_def] = STATE(29), - [sym_preproc_call] = STATE(29), - [sym_preproc_if] = STATE(29), - [sym_preproc_ifdef] = STATE(29), - [sym_function_definition] = STATE(29), - [sym_declaration] = STATE(29), - [sym_type_definition] = STATE(29), - [sym__declaration_modifiers] = STATE(3225), - [sym__declaration_specifiers] = STATE(3962), - [sym_linkage_specification] = STATE(29), - [sym_attribute_specifier] = STATE(3225), - [sym_attribute_declaration] = STATE(1136), - [sym_ms_declspec_modifier] = STATE(3225), - [sym_ms_based_modifier] = STATE(6104), - [sym_ms_call_modifier] = STATE(2065), - [sym__declarator] = STATE(5113), - [sym_parenthesized_declarator] = STATE(4918), - [sym_attributed_declarator] = STATE(4918), - [sym_pointer_declarator] = STATE(4918), - [sym_function_declarator] = STATE(4870), - [sym_array_declarator] = STATE(4918), - [sym_compound_statement] = STATE(29), - [sym_storage_class_specifier] = STATE(3225), - [sym_type_qualifier] = STATE(3225), - [sym__type_specifier] = STATE(3322), - [sym_sized_type_specifier] = STATE(3232), - [sym_enum_specifier] = STATE(3232), - [sym_struct_specifier] = STATE(3232), - [sym_union_specifier] = STATE(3232), - [sym_attributed_statement] = STATE(29), - [sym_labeled_statement] = STATE(29), - [sym_expression_statement] = STATE(29), - [sym_if_statement] = STATE(29), - [sym_switch_statement] = STATE(29), - [sym_case_statement] = STATE(29), - [sym_while_statement] = STATE(29), - [sym_do_statement] = STATE(29), - [sym_for_statement] = STATE(29), - [sym_return_statement] = STATE(29), - [sym_break_statement] = STATE(29), - [sym_continue_statement] = STATE(29), - [sym_goto_statement] = STATE(29), - [sym__expression] = STATE(3502), - [sym_comma_expression] = STATE(6595), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym__empty_declaration] = STATE(29), - [sym_placeholder_type_specifier] = STATE(3232), - [sym_decltype_auto] = STATE(3279), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3232), - [sym__class_name] = STATE(5753), - [sym_virtual] = STATE(3225), - [sym_explicit_function_specifier] = STATE(1936), - [sym_dependent_type] = STATE(3232), - [sym_template_declaration] = STATE(29), - [sym_template_instantiation] = STATE(29), - [sym_operator_cast] = STATE(5134), - [sym__constructor_specifiers] = STATE(1936), - [sym_operator_cast_definition] = STATE(29), - [sym_operator_cast_declaration] = STATE(29), - [sym_constructor_or_destructor_definition] = STATE(29), - [sym_reference_declarator] = STATE(4918), - [sym_structured_binding_declarator] = STATE(4918), - [sym_template_type] = STATE(3608), - [sym_template_function] = STATE(3494), - [sym_namespace_definition] = STATE(29), - [sym_namespace_alias_definition] = STATE(29), - [sym_using_declaration] = STATE(29), - [sym_alias_declaration] = STATE(29), - [sym_static_assert_declaration] = STATE(29), - [sym_concept_definition] = STATE(29), - [sym_for_range_loop] = STATE(29), - [sym_co_return_statement] = STATE(29), - [sym_co_yield_statement] = STATE(29), - [sym_throw_statement] = STATE(29), - [sym_try_statement] = STATE(29), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_destructor_name] = STATE(4918), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4460), - [sym_qualified_identifier] = STATE(2732), - [sym_qualified_type_identifier] = STATE(3593), - [sym_qualified_operator_cast_identifier] = STATE(5134), - [sym_operator_name] = STATE(4918), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_translation_unit_repeat1] = STATE(29), - [aux_sym__declaration_specifiers_repeat1] = STATE(2179), - [aux_sym_attributed_declarator_repeat1] = STATE(206), - [aux_sym_sized_type_specifier_repeat1] = STATE(3171), - [aux_sym_operator_cast_definition_repeat1] = STATE(1936), - [sym_identifier] = ACTIONS(147), - [aux_sym_preproc_include_token1] = ACTIONS(149), - [aux_sym_preproc_def_token1] = ACTIONS(151), - [aux_sym_preproc_if_token1] = ACTIONS(155), - [aux_sym_preproc_ifdef_token1] = ACTIONS(157), - [aux_sym_preproc_ifdef_token2] = ACTIONS(157), - [sym_preproc_directive] = ACTIONS(159), + [43] = { + [sym_preproc_include] = STATE(64), + [sym_preproc_def] = STATE(64), + [sym_preproc_function_def] = STATE(64), + [sym_preproc_call] = STATE(64), + [sym_preproc_if] = STATE(64), + [sym_preproc_ifdef] = STATE(64), + [sym_function_definition] = STATE(64), + [sym_declaration] = STATE(64), + [sym_type_definition] = STATE(64), + [sym__declaration_modifiers] = STATE(3706), + [sym__declaration_specifiers] = STATE(4618), + [sym_linkage_specification] = STATE(64), + [sym_attribute_specifier] = STATE(3706), + [sym_attribute_declaration] = STATE(1427), + [sym_ms_declspec_modifier] = STATE(3706), + [sym_ms_based_modifier] = STATE(7654), + [sym_ms_call_modifier] = STATE(2462), + [sym__declarator] = STATE(5881), + [sym_parenthesized_declarator] = STATE(5640), + [sym_attributed_declarator] = STATE(5640), + [sym_pointer_declarator] = STATE(5640), + [sym_function_declarator] = STATE(5588), + [sym_array_declarator] = STATE(5640), + [sym_compound_statement] = STATE(64), + [sym_storage_class_specifier] = STATE(3706), + [sym_type_qualifier] = STATE(3706), + [sym__type_specifier] = STATE(3826), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), + [sym_attributed_statement] = STATE(64), + [sym_labeled_statement] = STATE(64), + [sym_expression_statement] = STATE(64), + [sym_if_statement] = STATE(64), + [sym_switch_statement] = STATE(64), + [sym_case_statement] = STATE(64), + [sym_while_statement] = STATE(64), + [sym_do_statement] = STATE(64), + [sym_for_statement] = STATE(64), + [sym_return_statement] = STATE(64), + [sym_break_statement] = STATE(64), + [sym_continue_statement] = STATE(64), + [sym_goto_statement] = STATE(64), + [sym__expression] = STATE(4182), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7590), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym__empty_declaration] = STATE(64), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym__class_name] = STATE(6623), + [sym_virtual] = STATE(3706), + [sym_explicit_function_specifier] = STATE(2240), + [sym_dependent_type] = STATE(3723), + [sym_template_declaration] = STATE(64), + [sym_template_instantiation] = STATE(64), + [sym_operator_cast] = STATE(5937), + [sym__constructor_specifiers] = STATE(2240), + [sym_operator_cast_definition] = STATE(64), + [sym_operator_cast_declaration] = STATE(64), + [sym_constructor_or_destructor_definition] = STATE(64), + [sym_reference_declarator] = STATE(5640), + [sym_structured_binding_declarator] = STATE(5640), + [sym_template_type] = STATE(3921), + [sym_template_function] = STATE(4066), + [sym_namespace_definition] = STATE(64), + [sym_namespace_alias_definition] = STATE(64), + [sym_using_declaration] = STATE(64), + [sym_alias_declaration] = STATE(64), + [sym_static_assert_declaration] = STATE(64), + [sym_concept_definition] = STATE(64), + [sym_for_range_loop] = STATE(64), + [sym_co_return_statement] = STATE(64), + [sym_co_yield_statement] = STATE(64), + [sym_throw_statement] = STATE(64), + [sym_try_statement] = STATE(64), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_destructor_name] = STATE(5640), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5143), + [sym_qualified_identifier] = STATE(3249), + [sym_qualified_type_identifier] = STATE(3915), + [sym_qualified_operator_cast_identifier] = STATE(5937), + [sym_operator_name] = STATE(5640), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_preproc_if_repeat1] = STATE(64), + [aux_sym__declaration_specifiers_repeat1] = STATE(2514), + [aux_sym_attributed_declarator_repeat1] = STATE(309), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [aux_sym_operator_cast_definition_repeat1] = STATE(2240), + [sym_identifier] = ACTIONS(153), + [aux_sym_preproc_include_token1] = ACTIONS(155), + [aux_sym_preproc_def_token1] = ACTIONS(157), + [aux_sym_preproc_if_token1] = ACTIONS(161), + [aux_sym_preproc_ifdef_token1] = ACTIONS(163), + [aux_sym_preproc_ifdef_token2] = ACTIONS(163), + [sym_preproc_directive] = ACTIONS(165), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -35395,226 +52200,238 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_typedef] = ACTIONS(163), - [anon_sym_extern] = ACTIONS(165), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(43), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_RBRACE] = ACTIONS(833), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(173), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(61), - [anon_sym_unsigned] = ACTIONS(61), - [anon_sym_long] = ACTIONS(61), - [anon_sym_short] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(63), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(175), - [anon_sym_switch] = ACTIONS(177), - [anon_sym_case] = ACTIONS(179), - [anon_sym_default] = ACTIONS(181), - [anon_sym_while] = ACTIONS(183), - [anon_sym_do] = ACTIONS(185), - [anon_sym_for] = ACTIONS(187), - [anon_sym_return] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), - [anon_sym_goto] = ACTIONS(195), + [anon_sym_SEMI] = ACTIONS(167), + [anon_sym_typedef] = ACTIONS(169), + [anon_sym_extern] = ACTIONS(171), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(45), + [anon_sym___cdecl] = ACTIONS(47), + [anon_sym___clrcall] = ACTIONS(47), + [anon_sym___stdcall] = ACTIONS(47), + [anon_sym___fastcall] = ACTIONS(47), + [anon_sym___thiscall] = ACTIONS(47), + [anon_sym___vectorcall] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(738), + [anon_sym_RBRACE] = ACTIONS(750), + [anon_sym_LBRACK] = ACTIONS(51), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(179), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(181), + [anon_sym_switch] = ACTIONS(183), + [anon_sym_case] = ACTIONS(185), + [anon_sym_default] = ACTIONS(187), + [anon_sym_while] = ACTIONS(189), + [anon_sym_do] = ACTIONS(191), + [anon_sym_for] = ACTIONS(193), + [anon_sym_return] = ACTIONS(195), + [anon_sym_break] = ACTIONS(197), + [anon_sym_continue] = ACTIONS(199), + [anon_sym_goto] = ACTIONS(201), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(107), - [anon_sym_decltype] = ACTIONS(109), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_explicit] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(115), - [anon_sym_template] = ACTIONS(199), - [anon_sym_operator] = ACTIONS(119), - [anon_sym_try] = ACTIONS(201), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(203), - [anon_sym_namespace] = ACTIONS(205), - [anon_sym_using] = ACTIONS(207), - [anon_sym_static_assert] = ACTIONS(209), - [anon_sym_concept] = ACTIONS(211), - [anon_sym_co_return] = ACTIONS(213), - [anon_sym_co_yield] = ACTIONS(215), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(113), + [anon_sym_decltype] = ACTIONS(115), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_explicit] = ACTIONS(119), + [anon_sym_typename] = ACTIONS(121), + [anon_sym_template] = ACTIONS(207), + [anon_sym_operator] = ACTIONS(125), + [anon_sym_try] = ACTIONS(209), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(211), + [anon_sym_namespace] = ACTIONS(213), + [anon_sym_using] = ACTIONS(215), + [anon_sym_static_assert] = ACTIONS(217), + [anon_sym_concept] = ACTIONS(219), + [anon_sym_co_return] = ACTIONS(221), + [anon_sym_co_yield] = ACTIONS(223), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, - [50] = { - [sym_preproc_include] = STATE(49), - [sym_preproc_def] = STATE(49), - [sym_preproc_function_def] = STATE(49), - [sym_preproc_call] = STATE(49), - [sym_preproc_if] = STATE(49), - [sym_preproc_ifdef] = STATE(49), - [sym_function_definition] = STATE(49), - [sym_declaration] = STATE(49), - [sym_type_definition] = STATE(49), - [sym__declaration_modifiers] = STATE(3225), - [sym__declaration_specifiers] = STATE(3962), - [sym_linkage_specification] = STATE(49), - [sym_attribute_specifier] = STATE(3225), - [sym_attribute_declaration] = STATE(1136), - [sym_ms_declspec_modifier] = STATE(3225), - [sym_ms_based_modifier] = STATE(6104), - [sym_ms_call_modifier] = STATE(2065), - [sym__declarator] = STATE(5113), - [sym_parenthesized_declarator] = STATE(4918), - [sym_attributed_declarator] = STATE(4918), - [sym_pointer_declarator] = STATE(4918), - [sym_function_declarator] = STATE(4870), - [sym_array_declarator] = STATE(4918), - [sym_compound_statement] = STATE(49), - [sym_storage_class_specifier] = STATE(3225), - [sym_type_qualifier] = STATE(3225), - [sym__type_specifier] = STATE(3322), - [sym_sized_type_specifier] = STATE(3232), - [sym_enum_specifier] = STATE(3232), - [sym_struct_specifier] = STATE(3232), - [sym_union_specifier] = STATE(3232), - [sym_attributed_statement] = STATE(49), - [sym_labeled_statement] = STATE(49), - [sym_expression_statement] = STATE(49), - [sym_if_statement] = STATE(49), - [sym_switch_statement] = STATE(49), - [sym_case_statement] = STATE(49), - [sym_while_statement] = STATE(49), - [sym_do_statement] = STATE(49), - [sym_for_statement] = STATE(49), - [sym_return_statement] = STATE(49), - [sym_break_statement] = STATE(49), - [sym_continue_statement] = STATE(49), - [sym_goto_statement] = STATE(49), - [sym__expression] = STATE(3502), - [sym_comma_expression] = STATE(6595), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym__empty_declaration] = STATE(49), - [sym_placeholder_type_specifier] = STATE(3232), - [sym_decltype_auto] = STATE(3279), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3232), - [sym__class_name] = STATE(5753), - [sym_virtual] = STATE(3225), - [sym_explicit_function_specifier] = STATE(1936), - [sym_dependent_type] = STATE(3232), - [sym_template_declaration] = STATE(49), - [sym_template_instantiation] = STATE(49), - [sym_operator_cast] = STATE(5134), - [sym__constructor_specifiers] = STATE(1936), - [sym_operator_cast_definition] = STATE(49), - [sym_operator_cast_declaration] = STATE(49), - [sym_constructor_or_destructor_definition] = STATE(49), - [sym_reference_declarator] = STATE(4918), - [sym_structured_binding_declarator] = STATE(4918), - [sym_template_type] = STATE(3608), - [sym_template_function] = STATE(3494), - [sym_namespace_definition] = STATE(49), - [sym_namespace_alias_definition] = STATE(49), - [sym_using_declaration] = STATE(49), - [sym_alias_declaration] = STATE(49), - [sym_static_assert_declaration] = STATE(49), - [sym_concept_definition] = STATE(49), - [sym_for_range_loop] = STATE(49), - [sym_co_return_statement] = STATE(49), - [sym_co_yield_statement] = STATE(49), - [sym_throw_statement] = STATE(49), - [sym_try_statement] = STATE(49), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_destructor_name] = STATE(4918), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4460), - [sym_qualified_identifier] = STATE(2732), - [sym_qualified_type_identifier] = STATE(3593), - [sym_qualified_operator_cast_identifier] = STATE(5134), - [sym_operator_name] = STATE(4918), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_translation_unit_repeat1] = STATE(49), - [aux_sym__declaration_specifiers_repeat1] = STATE(2179), - [aux_sym_attributed_declarator_repeat1] = STATE(206), - [aux_sym_sized_type_specifier_repeat1] = STATE(3171), - [aux_sym_operator_cast_definition_repeat1] = STATE(1936), - [sym_identifier] = ACTIONS(147), - [aux_sym_preproc_include_token1] = ACTIONS(149), - [aux_sym_preproc_def_token1] = ACTIONS(151), - [aux_sym_preproc_if_token1] = ACTIONS(155), - [aux_sym_preproc_ifdef_token1] = ACTIONS(157), - [aux_sym_preproc_ifdef_token2] = ACTIONS(157), - [sym_preproc_directive] = ACTIONS(159), + [44] = { + [sym_preproc_include] = STATE(42), + [sym_preproc_def] = STATE(42), + [sym_preproc_function_def] = STATE(42), + [sym_preproc_call] = STATE(42), + [sym_preproc_if] = STATE(42), + [sym_preproc_ifdef] = STATE(42), + [sym_function_definition] = STATE(42), + [sym_declaration] = STATE(42), + [sym_type_definition] = STATE(42), + [sym__declaration_modifiers] = STATE(3706), + [sym__declaration_specifiers] = STATE(4618), + [sym_linkage_specification] = STATE(42), + [sym_attribute_specifier] = STATE(3706), + [sym_attribute_declaration] = STATE(1427), + [sym_ms_declspec_modifier] = STATE(3706), + [sym_ms_based_modifier] = STATE(7654), + [sym_ms_call_modifier] = STATE(2462), + [sym__declarator] = STATE(5881), + [sym_parenthesized_declarator] = STATE(5640), + [sym_attributed_declarator] = STATE(5640), + [sym_pointer_declarator] = STATE(5640), + [sym_function_declarator] = STATE(5588), + [sym_array_declarator] = STATE(5640), + [sym_compound_statement] = STATE(42), + [sym_storage_class_specifier] = STATE(3706), + [sym_type_qualifier] = STATE(3706), + [sym__type_specifier] = STATE(3826), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), + [sym_attributed_statement] = STATE(42), + [sym_labeled_statement] = STATE(42), + [sym_expression_statement] = STATE(42), + [sym_if_statement] = STATE(42), + [sym_switch_statement] = STATE(42), + [sym_case_statement] = STATE(42), + [sym_while_statement] = STATE(42), + [sym_do_statement] = STATE(42), + [sym_for_statement] = STATE(42), + [sym_return_statement] = STATE(42), + [sym_break_statement] = STATE(42), + [sym_continue_statement] = STATE(42), + [sym_goto_statement] = STATE(42), + [sym__expression] = STATE(4182), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7590), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym__empty_declaration] = STATE(42), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym__class_name] = STATE(6623), + [sym_virtual] = STATE(3706), + [sym_explicit_function_specifier] = STATE(2240), + [sym_dependent_type] = STATE(3723), + [sym_template_declaration] = STATE(42), + [sym_template_instantiation] = STATE(42), + [sym_operator_cast] = STATE(5937), + [sym__constructor_specifiers] = STATE(2240), + [sym_operator_cast_definition] = STATE(42), + [sym_operator_cast_declaration] = STATE(42), + [sym_constructor_or_destructor_definition] = STATE(42), + [sym_reference_declarator] = STATE(5640), + [sym_structured_binding_declarator] = STATE(5640), + [sym_template_type] = STATE(3921), + [sym_template_function] = STATE(4066), + [sym_namespace_definition] = STATE(42), + [sym_namespace_alias_definition] = STATE(42), + [sym_using_declaration] = STATE(42), + [sym_alias_declaration] = STATE(42), + [sym_static_assert_declaration] = STATE(42), + [sym_concept_definition] = STATE(42), + [sym_for_range_loop] = STATE(42), + [sym_co_return_statement] = STATE(42), + [sym_co_yield_statement] = STATE(42), + [sym_throw_statement] = STATE(42), + [sym_try_statement] = STATE(42), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_destructor_name] = STATE(5640), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5143), + [sym_qualified_identifier] = STATE(3249), + [sym_qualified_type_identifier] = STATE(3915), + [sym_qualified_operator_cast_identifier] = STATE(5937), + [sym_operator_name] = STATE(5640), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_preproc_if_repeat1] = STATE(42), + [aux_sym__declaration_specifiers_repeat1] = STATE(2514), + [aux_sym_attributed_declarator_repeat1] = STATE(309), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [aux_sym_operator_cast_definition_repeat1] = STATE(2240), + [sym_identifier] = ACTIONS(153), + [aux_sym_preproc_include_token1] = ACTIONS(155), + [aux_sym_preproc_def_token1] = ACTIONS(157), + [aux_sym_preproc_if_token1] = ACTIONS(161), + [aux_sym_preproc_ifdef_token1] = ACTIONS(163), + [aux_sym_preproc_ifdef_token2] = ACTIONS(163), + [sym_preproc_directive] = ACTIONS(165), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -35623,226 +52440,238 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_typedef] = ACTIONS(163), - [anon_sym_extern] = ACTIONS(165), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(43), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_RBRACE] = ACTIONS(835), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(173), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(61), - [anon_sym_unsigned] = ACTIONS(61), - [anon_sym_long] = ACTIONS(61), - [anon_sym_short] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(63), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(175), - [anon_sym_switch] = ACTIONS(177), - [anon_sym_case] = ACTIONS(179), - [anon_sym_default] = ACTIONS(181), - [anon_sym_while] = ACTIONS(183), - [anon_sym_do] = ACTIONS(185), - [anon_sym_for] = ACTIONS(187), - [anon_sym_return] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), - [anon_sym_goto] = ACTIONS(195), + [anon_sym_SEMI] = ACTIONS(167), + [anon_sym_typedef] = ACTIONS(169), + [anon_sym_extern] = ACTIONS(171), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(45), + [anon_sym___cdecl] = ACTIONS(47), + [anon_sym___clrcall] = ACTIONS(47), + [anon_sym___stdcall] = ACTIONS(47), + [anon_sym___fastcall] = ACTIONS(47), + [anon_sym___thiscall] = ACTIONS(47), + [anon_sym___vectorcall] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(738), + [anon_sym_RBRACE] = ACTIONS(752), + [anon_sym_LBRACK] = ACTIONS(51), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(179), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(181), + [anon_sym_switch] = ACTIONS(183), + [anon_sym_case] = ACTIONS(185), + [anon_sym_default] = ACTIONS(187), + [anon_sym_while] = ACTIONS(189), + [anon_sym_do] = ACTIONS(191), + [anon_sym_for] = ACTIONS(193), + [anon_sym_return] = ACTIONS(195), + [anon_sym_break] = ACTIONS(197), + [anon_sym_continue] = ACTIONS(199), + [anon_sym_goto] = ACTIONS(201), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(107), - [anon_sym_decltype] = ACTIONS(109), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_explicit] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(115), - [anon_sym_template] = ACTIONS(199), - [anon_sym_operator] = ACTIONS(119), - [anon_sym_try] = ACTIONS(201), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(203), - [anon_sym_namespace] = ACTIONS(205), - [anon_sym_using] = ACTIONS(207), - [anon_sym_static_assert] = ACTIONS(209), - [anon_sym_concept] = ACTIONS(211), - [anon_sym_co_return] = ACTIONS(213), - [anon_sym_co_yield] = ACTIONS(215), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(113), + [anon_sym_decltype] = ACTIONS(115), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_explicit] = ACTIONS(119), + [anon_sym_typename] = ACTIONS(121), + [anon_sym_template] = ACTIONS(207), + [anon_sym_operator] = ACTIONS(125), + [anon_sym_try] = ACTIONS(209), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(211), + [anon_sym_namespace] = ACTIONS(213), + [anon_sym_using] = ACTIONS(215), + [anon_sym_static_assert] = ACTIONS(217), + [anon_sym_concept] = ACTIONS(219), + [anon_sym_co_return] = ACTIONS(221), + [anon_sym_co_yield] = ACTIONS(223), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, - [51] = { - [sym_preproc_include] = STATE(29), - [sym_preproc_def] = STATE(29), - [sym_preproc_function_def] = STATE(29), - [sym_preproc_call] = STATE(29), - [sym_preproc_if] = STATE(29), - [sym_preproc_ifdef] = STATE(29), - [sym_function_definition] = STATE(29), - [sym_declaration] = STATE(29), - [sym_type_definition] = STATE(29), - [sym__declaration_modifiers] = STATE(3225), - [sym__declaration_specifiers] = STATE(3962), - [sym_linkage_specification] = STATE(29), - [sym_attribute_specifier] = STATE(3225), - [sym_attribute_declaration] = STATE(1136), - [sym_ms_declspec_modifier] = STATE(3225), - [sym_ms_based_modifier] = STATE(6104), - [sym_ms_call_modifier] = STATE(2065), - [sym__declarator] = STATE(5113), - [sym_parenthesized_declarator] = STATE(4918), - [sym_attributed_declarator] = STATE(4918), - [sym_pointer_declarator] = STATE(4918), - [sym_function_declarator] = STATE(4870), - [sym_array_declarator] = STATE(4918), - [sym_compound_statement] = STATE(29), - [sym_storage_class_specifier] = STATE(3225), - [sym_type_qualifier] = STATE(3225), - [sym__type_specifier] = STATE(3322), - [sym_sized_type_specifier] = STATE(3232), - [sym_enum_specifier] = STATE(3232), - [sym_struct_specifier] = STATE(3232), - [sym_union_specifier] = STATE(3232), - [sym_attributed_statement] = STATE(29), - [sym_labeled_statement] = STATE(29), - [sym_expression_statement] = STATE(29), - [sym_if_statement] = STATE(29), - [sym_switch_statement] = STATE(29), - [sym_case_statement] = STATE(29), - [sym_while_statement] = STATE(29), - [sym_do_statement] = STATE(29), - [sym_for_statement] = STATE(29), - [sym_return_statement] = STATE(29), - [sym_break_statement] = STATE(29), - [sym_continue_statement] = STATE(29), - [sym_goto_statement] = STATE(29), - [sym__expression] = STATE(3502), - [sym_comma_expression] = STATE(6595), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym__empty_declaration] = STATE(29), - [sym_placeholder_type_specifier] = STATE(3232), - [sym_decltype_auto] = STATE(3279), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3232), - [sym__class_name] = STATE(5753), - [sym_virtual] = STATE(3225), - [sym_explicit_function_specifier] = STATE(1936), - [sym_dependent_type] = STATE(3232), - [sym_template_declaration] = STATE(29), - [sym_template_instantiation] = STATE(29), - [sym_operator_cast] = STATE(5134), - [sym__constructor_specifiers] = STATE(1936), - [sym_operator_cast_definition] = STATE(29), - [sym_operator_cast_declaration] = STATE(29), - [sym_constructor_or_destructor_definition] = STATE(29), - [sym_reference_declarator] = STATE(4918), - [sym_structured_binding_declarator] = STATE(4918), - [sym_template_type] = STATE(3608), - [sym_template_function] = STATE(3494), - [sym_namespace_definition] = STATE(29), - [sym_namespace_alias_definition] = STATE(29), - [sym_using_declaration] = STATE(29), - [sym_alias_declaration] = STATE(29), - [sym_static_assert_declaration] = STATE(29), - [sym_concept_definition] = STATE(29), - [sym_for_range_loop] = STATE(29), - [sym_co_return_statement] = STATE(29), - [sym_co_yield_statement] = STATE(29), - [sym_throw_statement] = STATE(29), - [sym_try_statement] = STATE(29), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_destructor_name] = STATE(4918), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4460), - [sym_qualified_identifier] = STATE(2732), - [sym_qualified_type_identifier] = STATE(3593), - [sym_qualified_operator_cast_identifier] = STATE(5134), - [sym_operator_name] = STATE(4918), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_translation_unit_repeat1] = STATE(29), - [aux_sym__declaration_specifiers_repeat1] = STATE(2179), - [aux_sym_attributed_declarator_repeat1] = STATE(206), - [aux_sym_sized_type_specifier_repeat1] = STATE(3171), - [aux_sym_operator_cast_definition_repeat1] = STATE(1936), - [sym_identifier] = ACTIONS(147), - [aux_sym_preproc_include_token1] = ACTIONS(149), - [aux_sym_preproc_def_token1] = ACTIONS(151), - [aux_sym_preproc_if_token1] = ACTIONS(155), - [aux_sym_preproc_ifdef_token1] = ACTIONS(157), - [aux_sym_preproc_ifdef_token2] = ACTIONS(157), - [sym_preproc_directive] = ACTIONS(159), + [45] = { + [sym_preproc_include] = STATE(62), + [sym_preproc_def] = STATE(62), + [sym_preproc_function_def] = STATE(62), + [sym_preproc_call] = STATE(62), + [sym_preproc_if] = STATE(62), + [sym_preproc_ifdef] = STATE(62), + [sym_function_definition] = STATE(62), + [sym_declaration] = STATE(62), + [sym_type_definition] = STATE(62), + [sym__declaration_modifiers] = STATE(3706), + [sym__declaration_specifiers] = STATE(4618), + [sym_linkage_specification] = STATE(62), + [sym_attribute_specifier] = STATE(3706), + [sym_attribute_declaration] = STATE(1427), + [sym_ms_declspec_modifier] = STATE(3706), + [sym_ms_based_modifier] = STATE(7654), + [sym_ms_call_modifier] = STATE(2462), + [sym__declarator] = STATE(5881), + [sym_parenthesized_declarator] = STATE(5640), + [sym_attributed_declarator] = STATE(5640), + [sym_pointer_declarator] = STATE(5640), + [sym_function_declarator] = STATE(5588), + [sym_array_declarator] = STATE(5640), + [sym_compound_statement] = STATE(62), + [sym_storage_class_specifier] = STATE(3706), + [sym_type_qualifier] = STATE(3706), + [sym__type_specifier] = STATE(3826), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), + [sym_attributed_statement] = STATE(62), + [sym_labeled_statement] = STATE(62), + [sym_expression_statement] = STATE(62), + [sym_if_statement] = STATE(62), + [sym_switch_statement] = STATE(62), + [sym_case_statement] = STATE(62), + [sym_while_statement] = STATE(62), + [sym_do_statement] = STATE(62), + [sym_for_statement] = STATE(62), + [sym_return_statement] = STATE(62), + [sym_break_statement] = STATE(62), + [sym_continue_statement] = STATE(62), + [sym_goto_statement] = STATE(62), + [sym__expression] = STATE(4182), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7590), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym__empty_declaration] = STATE(62), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym__class_name] = STATE(6623), + [sym_virtual] = STATE(3706), + [sym_explicit_function_specifier] = STATE(2240), + [sym_dependent_type] = STATE(3723), + [sym_template_declaration] = STATE(62), + [sym_template_instantiation] = STATE(62), + [sym_operator_cast] = STATE(5937), + [sym__constructor_specifiers] = STATE(2240), + [sym_operator_cast_definition] = STATE(62), + [sym_operator_cast_declaration] = STATE(62), + [sym_constructor_or_destructor_definition] = STATE(62), + [sym_reference_declarator] = STATE(5640), + [sym_structured_binding_declarator] = STATE(5640), + [sym_template_type] = STATE(3921), + [sym_template_function] = STATE(4066), + [sym_namespace_definition] = STATE(62), + [sym_namespace_alias_definition] = STATE(62), + [sym_using_declaration] = STATE(62), + [sym_alias_declaration] = STATE(62), + [sym_static_assert_declaration] = STATE(62), + [sym_concept_definition] = STATE(62), + [sym_for_range_loop] = STATE(62), + [sym_co_return_statement] = STATE(62), + [sym_co_yield_statement] = STATE(62), + [sym_throw_statement] = STATE(62), + [sym_try_statement] = STATE(62), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_destructor_name] = STATE(5640), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5143), + [sym_qualified_identifier] = STATE(3249), + [sym_qualified_type_identifier] = STATE(3915), + [sym_qualified_operator_cast_identifier] = STATE(5937), + [sym_operator_name] = STATE(5640), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_preproc_if_repeat1] = STATE(62), + [aux_sym__declaration_specifiers_repeat1] = STATE(2514), + [aux_sym_attributed_declarator_repeat1] = STATE(309), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [aux_sym_operator_cast_definition_repeat1] = STATE(2240), + [sym_identifier] = ACTIONS(153), + [aux_sym_preproc_include_token1] = ACTIONS(155), + [aux_sym_preproc_def_token1] = ACTIONS(157), + [aux_sym_preproc_if_token1] = ACTIONS(161), + [aux_sym_preproc_ifdef_token1] = ACTIONS(163), + [aux_sym_preproc_ifdef_token2] = ACTIONS(163), + [sym_preproc_directive] = ACTIONS(165), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -35851,226 +52680,238 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_typedef] = ACTIONS(163), - [anon_sym_extern] = ACTIONS(165), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(43), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_RBRACE] = ACTIONS(837), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(173), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(61), - [anon_sym_unsigned] = ACTIONS(61), - [anon_sym_long] = ACTIONS(61), - [anon_sym_short] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(63), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(175), - [anon_sym_switch] = ACTIONS(177), - [anon_sym_case] = ACTIONS(179), - [anon_sym_default] = ACTIONS(181), - [anon_sym_while] = ACTIONS(183), - [anon_sym_do] = ACTIONS(185), - [anon_sym_for] = ACTIONS(187), - [anon_sym_return] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), - [anon_sym_goto] = ACTIONS(195), + [anon_sym_SEMI] = ACTIONS(167), + [anon_sym_typedef] = ACTIONS(169), + [anon_sym_extern] = ACTIONS(171), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(45), + [anon_sym___cdecl] = ACTIONS(47), + [anon_sym___clrcall] = ACTIONS(47), + [anon_sym___stdcall] = ACTIONS(47), + [anon_sym___fastcall] = ACTIONS(47), + [anon_sym___thiscall] = ACTIONS(47), + [anon_sym___vectorcall] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(738), + [anon_sym_RBRACE] = ACTIONS(754), + [anon_sym_LBRACK] = ACTIONS(51), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(179), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(181), + [anon_sym_switch] = ACTIONS(183), + [anon_sym_case] = ACTIONS(185), + [anon_sym_default] = ACTIONS(187), + [anon_sym_while] = ACTIONS(189), + [anon_sym_do] = ACTIONS(191), + [anon_sym_for] = ACTIONS(193), + [anon_sym_return] = ACTIONS(195), + [anon_sym_break] = ACTIONS(197), + [anon_sym_continue] = ACTIONS(199), + [anon_sym_goto] = ACTIONS(201), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(107), - [anon_sym_decltype] = ACTIONS(109), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_explicit] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(115), - [anon_sym_template] = ACTIONS(199), - [anon_sym_operator] = ACTIONS(119), - [anon_sym_try] = ACTIONS(201), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(203), - [anon_sym_namespace] = ACTIONS(205), - [anon_sym_using] = ACTIONS(207), - [anon_sym_static_assert] = ACTIONS(209), - [anon_sym_concept] = ACTIONS(211), - [anon_sym_co_return] = ACTIONS(213), - [anon_sym_co_yield] = ACTIONS(215), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(113), + [anon_sym_decltype] = ACTIONS(115), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_explicit] = ACTIONS(119), + [anon_sym_typename] = ACTIONS(121), + [anon_sym_template] = ACTIONS(207), + [anon_sym_operator] = ACTIONS(125), + [anon_sym_try] = ACTIONS(209), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(211), + [anon_sym_namespace] = ACTIONS(213), + [anon_sym_using] = ACTIONS(215), + [anon_sym_static_assert] = ACTIONS(217), + [anon_sym_concept] = ACTIONS(219), + [anon_sym_co_return] = ACTIONS(221), + [anon_sym_co_yield] = ACTIONS(223), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, - [52] = { - [sym_preproc_include] = STATE(29), - [sym_preproc_def] = STATE(29), - [sym_preproc_function_def] = STATE(29), - [sym_preproc_call] = STATE(29), - [sym_preproc_if] = STATE(29), - [sym_preproc_ifdef] = STATE(29), - [sym_function_definition] = STATE(29), - [sym_declaration] = STATE(29), - [sym_type_definition] = STATE(29), - [sym__declaration_modifiers] = STATE(3225), - [sym__declaration_specifiers] = STATE(3962), - [sym_linkage_specification] = STATE(29), - [sym_attribute_specifier] = STATE(3225), - [sym_attribute_declaration] = STATE(1136), - [sym_ms_declspec_modifier] = STATE(3225), - [sym_ms_based_modifier] = STATE(6104), - [sym_ms_call_modifier] = STATE(2065), - [sym__declarator] = STATE(5113), - [sym_parenthesized_declarator] = STATE(4918), - [sym_attributed_declarator] = STATE(4918), - [sym_pointer_declarator] = STATE(4918), - [sym_function_declarator] = STATE(4870), - [sym_array_declarator] = STATE(4918), - [sym_compound_statement] = STATE(29), - [sym_storage_class_specifier] = STATE(3225), - [sym_type_qualifier] = STATE(3225), - [sym__type_specifier] = STATE(3322), - [sym_sized_type_specifier] = STATE(3232), - [sym_enum_specifier] = STATE(3232), - [sym_struct_specifier] = STATE(3232), - [sym_union_specifier] = STATE(3232), - [sym_attributed_statement] = STATE(29), - [sym_labeled_statement] = STATE(29), - [sym_expression_statement] = STATE(29), - [sym_if_statement] = STATE(29), - [sym_switch_statement] = STATE(29), - [sym_case_statement] = STATE(29), - [sym_while_statement] = STATE(29), - [sym_do_statement] = STATE(29), - [sym_for_statement] = STATE(29), - [sym_return_statement] = STATE(29), - [sym_break_statement] = STATE(29), - [sym_continue_statement] = STATE(29), - [sym_goto_statement] = STATE(29), - [sym__expression] = STATE(3502), - [sym_comma_expression] = STATE(6595), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym__empty_declaration] = STATE(29), - [sym_placeholder_type_specifier] = STATE(3232), - [sym_decltype_auto] = STATE(3279), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3232), - [sym__class_name] = STATE(5753), - [sym_virtual] = STATE(3225), - [sym_explicit_function_specifier] = STATE(1936), - [sym_dependent_type] = STATE(3232), - [sym_template_declaration] = STATE(29), - [sym_template_instantiation] = STATE(29), - [sym_operator_cast] = STATE(5134), - [sym__constructor_specifiers] = STATE(1936), - [sym_operator_cast_definition] = STATE(29), - [sym_operator_cast_declaration] = STATE(29), - [sym_constructor_or_destructor_definition] = STATE(29), - [sym_reference_declarator] = STATE(4918), - [sym_structured_binding_declarator] = STATE(4918), - [sym_template_type] = STATE(3608), - [sym_template_function] = STATE(3494), - [sym_namespace_definition] = STATE(29), - [sym_namespace_alias_definition] = STATE(29), - [sym_using_declaration] = STATE(29), - [sym_alias_declaration] = STATE(29), - [sym_static_assert_declaration] = STATE(29), - [sym_concept_definition] = STATE(29), - [sym_for_range_loop] = STATE(29), - [sym_co_return_statement] = STATE(29), - [sym_co_yield_statement] = STATE(29), - [sym_throw_statement] = STATE(29), - [sym_try_statement] = STATE(29), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_destructor_name] = STATE(4918), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4460), - [sym_qualified_identifier] = STATE(2732), - [sym_qualified_type_identifier] = STATE(3593), - [sym_qualified_operator_cast_identifier] = STATE(5134), - [sym_operator_name] = STATE(4918), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_translation_unit_repeat1] = STATE(29), - [aux_sym__declaration_specifiers_repeat1] = STATE(2179), - [aux_sym_attributed_declarator_repeat1] = STATE(206), - [aux_sym_sized_type_specifier_repeat1] = STATE(3171), - [aux_sym_operator_cast_definition_repeat1] = STATE(1936), - [sym_identifier] = ACTIONS(147), - [aux_sym_preproc_include_token1] = ACTIONS(149), - [aux_sym_preproc_def_token1] = ACTIONS(151), - [aux_sym_preproc_if_token1] = ACTIONS(155), - [aux_sym_preproc_ifdef_token1] = ACTIONS(157), - [aux_sym_preproc_ifdef_token2] = ACTIONS(157), - [sym_preproc_directive] = ACTIONS(159), + [46] = { + [sym_preproc_include] = STATE(84), + [sym_preproc_def] = STATE(84), + [sym_preproc_function_def] = STATE(84), + [sym_preproc_call] = STATE(84), + [sym_preproc_if] = STATE(84), + [sym_preproc_ifdef] = STATE(84), + [sym_function_definition] = STATE(84), + [sym_declaration] = STATE(84), + [sym_type_definition] = STATE(84), + [sym__declaration_modifiers] = STATE(3706), + [sym__declaration_specifiers] = STATE(4618), + [sym_linkage_specification] = STATE(84), + [sym_attribute_specifier] = STATE(3706), + [sym_attribute_declaration] = STATE(1427), + [sym_ms_declspec_modifier] = STATE(3706), + [sym_ms_based_modifier] = STATE(7654), + [sym_ms_call_modifier] = STATE(2462), + [sym__declarator] = STATE(5881), + [sym_parenthesized_declarator] = STATE(5640), + [sym_attributed_declarator] = STATE(5640), + [sym_pointer_declarator] = STATE(5640), + [sym_function_declarator] = STATE(5588), + [sym_array_declarator] = STATE(5640), + [sym_compound_statement] = STATE(84), + [sym_storage_class_specifier] = STATE(3706), + [sym_type_qualifier] = STATE(3706), + [sym__type_specifier] = STATE(3826), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), + [sym_attributed_statement] = STATE(84), + [sym_labeled_statement] = STATE(84), + [sym_expression_statement] = STATE(84), + [sym_if_statement] = STATE(84), + [sym_switch_statement] = STATE(84), + [sym_case_statement] = STATE(84), + [sym_while_statement] = STATE(84), + [sym_do_statement] = STATE(84), + [sym_for_statement] = STATE(84), + [sym_return_statement] = STATE(84), + [sym_break_statement] = STATE(84), + [sym_continue_statement] = STATE(84), + [sym_goto_statement] = STATE(84), + [sym__expression] = STATE(4182), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7590), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym__empty_declaration] = STATE(84), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym__class_name] = STATE(6623), + [sym_virtual] = STATE(3706), + [sym_explicit_function_specifier] = STATE(2240), + [sym_dependent_type] = STATE(3723), + [sym_template_declaration] = STATE(84), + [sym_template_instantiation] = STATE(84), + [sym_operator_cast] = STATE(5937), + [sym__constructor_specifiers] = STATE(2240), + [sym_operator_cast_definition] = STATE(84), + [sym_operator_cast_declaration] = STATE(84), + [sym_constructor_or_destructor_definition] = STATE(84), + [sym_reference_declarator] = STATE(5640), + [sym_structured_binding_declarator] = STATE(5640), + [sym_template_type] = STATE(3921), + [sym_template_function] = STATE(4066), + [sym_namespace_definition] = STATE(84), + [sym_namespace_alias_definition] = STATE(84), + [sym_using_declaration] = STATE(84), + [sym_alias_declaration] = STATE(84), + [sym_static_assert_declaration] = STATE(84), + [sym_concept_definition] = STATE(84), + [sym_for_range_loop] = STATE(84), + [sym_co_return_statement] = STATE(84), + [sym_co_yield_statement] = STATE(84), + [sym_throw_statement] = STATE(84), + [sym_try_statement] = STATE(84), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_destructor_name] = STATE(5640), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5143), + [sym_qualified_identifier] = STATE(3249), + [sym_qualified_type_identifier] = STATE(3915), + [sym_qualified_operator_cast_identifier] = STATE(5937), + [sym_operator_name] = STATE(5640), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_preproc_if_repeat1] = STATE(84), + [aux_sym__declaration_specifiers_repeat1] = STATE(2514), + [aux_sym_attributed_declarator_repeat1] = STATE(309), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [aux_sym_operator_cast_definition_repeat1] = STATE(2240), + [sym_identifier] = ACTIONS(153), + [aux_sym_preproc_include_token1] = ACTIONS(155), + [aux_sym_preproc_def_token1] = ACTIONS(157), + [aux_sym_preproc_if_token1] = ACTIONS(161), + [aux_sym_preproc_ifdef_token1] = ACTIONS(163), + [aux_sym_preproc_ifdef_token2] = ACTIONS(163), + [sym_preproc_directive] = ACTIONS(165), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -36079,226 +52920,238 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_typedef] = ACTIONS(163), - [anon_sym_extern] = ACTIONS(165), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(43), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_RBRACE] = ACTIONS(839), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(173), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(61), - [anon_sym_unsigned] = ACTIONS(61), - [anon_sym_long] = ACTIONS(61), - [anon_sym_short] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(63), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(175), - [anon_sym_switch] = ACTIONS(177), - [anon_sym_case] = ACTIONS(179), - [anon_sym_default] = ACTIONS(181), - [anon_sym_while] = ACTIONS(183), - [anon_sym_do] = ACTIONS(185), - [anon_sym_for] = ACTIONS(187), - [anon_sym_return] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), - [anon_sym_goto] = ACTIONS(195), + [anon_sym_SEMI] = ACTIONS(167), + [anon_sym_typedef] = ACTIONS(169), + [anon_sym_extern] = ACTIONS(171), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(45), + [anon_sym___cdecl] = ACTIONS(47), + [anon_sym___clrcall] = ACTIONS(47), + [anon_sym___stdcall] = ACTIONS(47), + [anon_sym___fastcall] = ACTIONS(47), + [anon_sym___thiscall] = ACTIONS(47), + [anon_sym___vectorcall] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(738), + [anon_sym_RBRACE] = ACTIONS(756), + [anon_sym_LBRACK] = ACTIONS(51), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(179), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(181), + [anon_sym_switch] = ACTIONS(183), + [anon_sym_case] = ACTIONS(185), + [anon_sym_default] = ACTIONS(187), + [anon_sym_while] = ACTIONS(189), + [anon_sym_do] = ACTIONS(191), + [anon_sym_for] = ACTIONS(193), + [anon_sym_return] = ACTIONS(195), + [anon_sym_break] = ACTIONS(197), + [anon_sym_continue] = ACTIONS(199), + [anon_sym_goto] = ACTIONS(201), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(107), - [anon_sym_decltype] = ACTIONS(109), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_explicit] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(115), - [anon_sym_template] = ACTIONS(199), - [anon_sym_operator] = ACTIONS(119), - [anon_sym_try] = ACTIONS(201), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(203), - [anon_sym_namespace] = ACTIONS(205), - [anon_sym_using] = ACTIONS(207), - [anon_sym_static_assert] = ACTIONS(209), - [anon_sym_concept] = ACTIONS(211), - [anon_sym_co_return] = ACTIONS(213), - [anon_sym_co_yield] = ACTIONS(215), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(113), + [anon_sym_decltype] = ACTIONS(115), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_explicit] = ACTIONS(119), + [anon_sym_typename] = ACTIONS(121), + [anon_sym_template] = ACTIONS(207), + [anon_sym_operator] = ACTIONS(125), + [anon_sym_try] = ACTIONS(209), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(211), + [anon_sym_namespace] = ACTIONS(213), + [anon_sym_using] = ACTIONS(215), + [anon_sym_static_assert] = ACTIONS(217), + [anon_sym_concept] = ACTIONS(219), + [anon_sym_co_return] = ACTIONS(221), + [anon_sym_co_yield] = ACTIONS(223), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, - [53] = { - [sym_preproc_include] = STATE(52), - [sym_preproc_def] = STATE(52), - [sym_preproc_function_def] = STATE(52), - [sym_preproc_call] = STATE(52), - [sym_preproc_if] = STATE(52), - [sym_preproc_ifdef] = STATE(52), - [sym_function_definition] = STATE(52), - [sym_declaration] = STATE(52), - [sym_type_definition] = STATE(52), - [sym__declaration_modifiers] = STATE(3225), - [sym__declaration_specifiers] = STATE(3962), - [sym_linkage_specification] = STATE(52), - [sym_attribute_specifier] = STATE(3225), - [sym_attribute_declaration] = STATE(1136), - [sym_ms_declspec_modifier] = STATE(3225), - [sym_ms_based_modifier] = STATE(6104), - [sym_ms_call_modifier] = STATE(2065), - [sym__declarator] = STATE(5113), - [sym_parenthesized_declarator] = STATE(4918), - [sym_attributed_declarator] = STATE(4918), - [sym_pointer_declarator] = STATE(4918), - [sym_function_declarator] = STATE(4870), - [sym_array_declarator] = STATE(4918), - [sym_compound_statement] = STATE(52), - [sym_storage_class_specifier] = STATE(3225), - [sym_type_qualifier] = STATE(3225), - [sym__type_specifier] = STATE(3322), - [sym_sized_type_specifier] = STATE(3232), - [sym_enum_specifier] = STATE(3232), - [sym_struct_specifier] = STATE(3232), - [sym_union_specifier] = STATE(3232), - [sym_attributed_statement] = STATE(52), - [sym_labeled_statement] = STATE(52), - [sym_expression_statement] = STATE(52), - [sym_if_statement] = STATE(52), - [sym_switch_statement] = STATE(52), - [sym_case_statement] = STATE(52), - [sym_while_statement] = STATE(52), - [sym_do_statement] = STATE(52), - [sym_for_statement] = STATE(52), - [sym_return_statement] = STATE(52), - [sym_break_statement] = STATE(52), - [sym_continue_statement] = STATE(52), - [sym_goto_statement] = STATE(52), - [sym__expression] = STATE(3502), - [sym_comma_expression] = STATE(6595), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym__empty_declaration] = STATE(52), - [sym_placeholder_type_specifier] = STATE(3232), - [sym_decltype_auto] = STATE(3279), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3232), - [sym__class_name] = STATE(5753), - [sym_virtual] = STATE(3225), - [sym_explicit_function_specifier] = STATE(1936), - [sym_dependent_type] = STATE(3232), - [sym_template_declaration] = STATE(52), - [sym_template_instantiation] = STATE(52), - [sym_operator_cast] = STATE(5134), - [sym__constructor_specifiers] = STATE(1936), - [sym_operator_cast_definition] = STATE(52), - [sym_operator_cast_declaration] = STATE(52), - [sym_constructor_or_destructor_definition] = STATE(52), - [sym_reference_declarator] = STATE(4918), - [sym_structured_binding_declarator] = STATE(4918), - [sym_template_type] = STATE(3608), - [sym_template_function] = STATE(3494), - [sym_namespace_definition] = STATE(52), - [sym_namespace_alias_definition] = STATE(52), - [sym_using_declaration] = STATE(52), - [sym_alias_declaration] = STATE(52), - [sym_static_assert_declaration] = STATE(52), - [sym_concept_definition] = STATE(52), - [sym_for_range_loop] = STATE(52), - [sym_co_return_statement] = STATE(52), - [sym_co_yield_statement] = STATE(52), - [sym_throw_statement] = STATE(52), - [sym_try_statement] = STATE(52), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_destructor_name] = STATE(4918), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4460), - [sym_qualified_identifier] = STATE(2732), - [sym_qualified_type_identifier] = STATE(3593), - [sym_qualified_operator_cast_identifier] = STATE(5134), - [sym_operator_name] = STATE(4918), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_translation_unit_repeat1] = STATE(52), - [aux_sym__declaration_specifiers_repeat1] = STATE(2179), - [aux_sym_attributed_declarator_repeat1] = STATE(206), - [aux_sym_sized_type_specifier_repeat1] = STATE(3171), - [aux_sym_operator_cast_definition_repeat1] = STATE(1936), - [sym_identifier] = ACTIONS(147), - [aux_sym_preproc_include_token1] = ACTIONS(149), - [aux_sym_preproc_def_token1] = ACTIONS(151), - [aux_sym_preproc_if_token1] = ACTIONS(155), - [aux_sym_preproc_ifdef_token1] = ACTIONS(157), - [aux_sym_preproc_ifdef_token2] = ACTIONS(157), - [sym_preproc_directive] = ACTIONS(159), + [47] = { + [sym_preproc_include] = STATE(64), + [sym_preproc_def] = STATE(64), + [sym_preproc_function_def] = STATE(64), + [sym_preproc_call] = STATE(64), + [sym_preproc_if] = STATE(64), + [sym_preproc_ifdef] = STATE(64), + [sym_function_definition] = STATE(64), + [sym_declaration] = STATE(64), + [sym_type_definition] = STATE(64), + [sym__declaration_modifiers] = STATE(3706), + [sym__declaration_specifiers] = STATE(4618), + [sym_linkage_specification] = STATE(64), + [sym_attribute_specifier] = STATE(3706), + [sym_attribute_declaration] = STATE(1427), + [sym_ms_declspec_modifier] = STATE(3706), + [sym_ms_based_modifier] = STATE(7654), + [sym_ms_call_modifier] = STATE(2462), + [sym__declarator] = STATE(5881), + [sym_parenthesized_declarator] = STATE(5640), + [sym_attributed_declarator] = STATE(5640), + [sym_pointer_declarator] = STATE(5640), + [sym_function_declarator] = STATE(5588), + [sym_array_declarator] = STATE(5640), + [sym_compound_statement] = STATE(64), + [sym_storage_class_specifier] = STATE(3706), + [sym_type_qualifier] = STATE(3706), + [sym__type_specifier] = STATE(3826), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), + [sym_attributed_statement] = STATE(64), + [sym_labeled_statement] = STATE(64), + [sym_expression_statement] = STATE(64), + [sym_if_statement] = STATE(64), + [sym_switch_statement] = STATE(64), + [sym_case_statement] = STATE(64), + [sym_while_statement] = STATE(64), + [sym_do_statement] = STATE(64), + [sym_for_statement] = STATE(64), + [sym_return_statement] = STATE(64), + [sym_break_statement] = STATE(64), + [sym_continue_statement] = STATE(64), + [sym_goto_statement] = STATE(64), + [sym__expression] = STATE(4182), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7590), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym__empty_declaration] = STATE(64), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym__class_name] = STATE(6623), + [sym_virtual] = STATE(3706), + [sym_explicit_function_specifier] = STATE(2240), + [sym_dependent_type] = STATE(3723), + [sym_template_declaration] = STATE(64), + [sym_template_instantiation] = STATE(64), + [sym_operator_cast] = STATE(5937), + [sym__constructor_specifiers] = STATE(2240), + [sym_operator_cast_definition] = STATE(64), + [sym_operator_cast_declaration] = STATE(64), + [sym_constructor_or_destructor_definition] = STATE(64), + [sym_reference_declarator] = STATE(5640), + [sym_structured_binding_declarator] = STATE(5640), + [sym_template_type] = STATE(3921), + [sym_template_function] = STATE(4066), + [sym_namespace_definition] = STATE(64), + [sym_namespace_alias_definition] = STATE(64), + [sym_using_declaration] = STATE(64), + [sym_alias_declaration] = STATE(64), + [sym_static_assert_declaration] = STATE(64), + [sym_concept_definition] = STATE(64), + [sym_for_range_loop] = STATE(64), + [sym_co_return_statement] = STATE(64), + [sym_co_yield_statement] = STATE(64), + [sym_throw_statement] = STATE(64), + [sym_try_statement] = STATE(64), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_destructor_name] = STATE(5640), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5143), + [sym_qualified_identifier] = STATE(3249), + [sym_qualified_type_identifier] = STATE(3915), + [sym_qualified_operator_cast_identifier] = STATE(5937), + [sym_operator_name] = STATE(5640), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_preproc_if_repeat1] = STATE(64), + [aux_sym__declaration_specifiers_repeat1] = STATE(2514), + [aux_sym_attributed_declarator_repeat1] = STATE(309), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [aux_sym_operator_cast_definition_repeat1] = STATE(2240), + [sym_identifier] = ACTIONS(153), + [aux_sym_preproc_include_token1] = ACTIONS(155), + [aux_sym_preproc_def_token1] = ACTIONS(157), + [aux_sym_preproc_if_token1] = ACTIONS(161), + [aux_sym_preproc_ifdef_token1] = ACTIONS(163), + [aux_sym_preproc_ifdef_token2] = ACTIONS(163), + [sym_preproc_directive] = ACTIONS(165), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -36307,103 +53160,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_typedef] = ACTIONS(163), - [anon_sym_extern] = ACTIONS(165), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(43), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_RBRACE] = ACTIONS(841), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(173), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(61), - [anon_sym_unsigned] = ACTIONS(61), - [anon_sym_long] = ACTIONS(61), - [anon_sym_short] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(63), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(175), - [anon_sym_switch] = ACTIONS(177), - [anon_sym_case] = ACTIONS(179), - [anon_sym_default] = ACTIONS(181), - [anon_sym_while] = ACTIONS(183), - [anon_sym_do] = ACTIONS(185), - [anon_sym_for] = ACTIONS(187), - [anon_sym_return] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), - [anon_sym_goto] = ACTIONS(195), + [anon_sym_SEMI] = ACTIONS(167), + [anon_sym_typedef] = ACTIONS(169), + [anon_sym_extern] = ACTIONS(171), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(45), + [anon_sym___cdecl] = ACTIONS(47), + [anon_sym___clrcall] = ACTIONS(47), + [anon_sym___stdcall] = ACTIONS(47), + [anon_sym___fastcall] = ACTIONS(47), + [anon_sym___thiscall] = ACTIONS(47), + [anon_sym___vectorcall] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(738), + [anon_sym_RBRACE] = ACTIONS(758), + [anon_sym_LBRACK] = ACTIONS(51), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(179), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(181), + [anon_sym_switch] = ACTIONS(183), + [anon_sym_case] = ACTIONS(185), + [anon_sym_default] = ACTIONS(187), + [anon_sym_while] = ACTIONS(189), + [anon_sym_do] = ACTIONS(191), + [anon_sym_for] = ACTIONS(193), + [anon_sym_return] = ACTIONS(195), + [anon_sym_break] = ACTIONS(197), + [anon_sym_continue] = ACTIONS(199), + [anon_sym_goto] = ACTIONS(201), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(107), - [anon_sym_decltype] = ACTIONS(109), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_explicit] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(115), - [anon_sym_template] = ACTIONS(199), - [anon_sym_operator] = ACTIONS(119), - [anon_sym_try] = ACTIONS(201), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(203), - [anon_sym_namespace] = ACTIONS(205), - [anon_sym_using] = ACTIONS(207), - [anon_sym_static_assert] = ACTIONS(209), - [anon_sym_concept] = ACTIONS(211), - [anon_sym_co_return] = ACTIONS(213), - [anon_sym_co_yield] = ACTIONS(215), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(113), + [anon_sym_decltype] = ACTIONS(115), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_explicit] = ACTIONS(119), + [anon_sym_typename] = ACTIONS(121), + [anon_sym_template] = ACTIONS(207), + [anon_sym_operator] = ACTIONS(125), + [anon_sym_try] = ACTIONS(209), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(211), + [anon_sym_namespace] = ACTIONS(213), + [anon_sym_using] = ACTIONS(215), + [anon_sym_static_assert] = ACTIONS(217), + [anon_sym_concept] = ACTIONS(219), + [anon_sym_co_return] = ACTIONS(221), + [anon_sym_co_yield] = ACTIONS(223), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, - [54] = { + [48] = { [sym_preproc_include] = STATE(47), [sym_preproc_def] = STATE(47), [sym_preproc_function_def] = STATE(47), @@ -36413,28 +53273,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_definition] = STATE(47), [sym_declaration] = STATE(47), [sym_type_definition] = STATE(47), - [sym__declaration_modifiers] = STATE(3225), - [sym__declaration_specifiers] = STATE(3962), + [sym__declaration_modifiers] = STATE(3706), + [sym__declaration_specifiers] = STATE(4618), [sym_linkage_specification] = STATE(47), - [sym_attribute_specifier] = STATE(3225), - [sym_attribute_declaration] = STATE(1136), - [sym_ms_declspec_modifier] = STATE(3225), - [sym_ms_based_modifier] = STATE(6104), - [sym_ms_call_modifier] = STATE(2065), - [sym__declarator] = STATE(5113), - [sym_parenthesized_declarator] = STATE(4918), - [sym_attributed_declarator] = STATE(4918), - [sym_pointer_declarator] = STATE(4918), - [sym_function_declarator] = STATE(4870), - [sym_array_declarator] = STATE(4918), + [sym_attribute_specifier] = STATE(3706), + [sym_attribute_declaration] = STATE(1427), + [sym_ms_declspec_modifier] = STATE(3706), + [sym_ms_based_modifier] = STATE(7654), + [sym_ms_call_modifier] = STATE(2462), + [sym__declarator] = STATE(5881), + [sym_parenthesized_declarator] = STATE(5640), + [sym_attributed_declarator] = STATE(5640), + [sym_pointer_declarator] = STATE(5640), + [sym_function_declarator] = STATE(5588), + [sym_array_declarator] = STATE(5640), [sym_compound_statement] = STATE(47), - [sym_storage_class_specifier] = STATE(3225), - [sym_type_qualifier] = STATE(3225), - [sym__type_specifier] = STATE(3322), - [sym_sized_type_specifier] = STATE(3232), - [sym_enum_specifier] = STATE(3232), - [sym_struct_specifier] = STATE(3232), - [sym_union_specifier] = STATE(3232), + [sym_storage_class_specifier] = STATE(3706), + [sym_type_qualifier] = STATE(3706), + [sym__type_specifier] = STATE(3826), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), [sym_attributed_statement] = STATE(47), [sym_labeled_statement] = STATE(47), [sym_expression_statement] = STATE(47), @@ -36448,44 +53308,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(47), [sym_continue_statement] = STATE(47), [sym_goto_statement] = STATE(47), - [sym__expression] = STATE(3502), - [sym_comma_expression] = STATE(6595), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), + [sym__expression] = STATE(4182), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7590), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), [sym__empty_declaration] = STATE(47), - [sym_placeholder_type_specifier] = STATE(3232), - [sym_decltype_auto] = STATE(3279), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3232), - [sym__class_name] = STATE(5753), - [sym_virtual] = STATE(3225), - [sym_explicit_function_specifier] = STATE(1936), - [sym_dependent_type] = STATE(3232), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym__class_name] = STATE(6623), + [sym_virtual] = STATE(3706), + [sym_explicit_function_specifier] = STATE(2240), + [sym_dependent_type] = STATE(3723), [sym_template_declaration] = STATE(47), [sym_template_instantiation] = STATE(47), - [sym_operator_cast] = STATE(5134), - [sym__constructor_specifiers] = STATE(1936), + [sym_operator_cast] = STATE(5937), + [sym__constructor_specifiers] = STATE(2240), [sym_operator_cast_definition] = STATE(47), [sym_operator_cast_declaration] = STATE(47), [sym_constructor_or_destructor_definition] = STATE(47), - [sym_reference_declarator] = STATE(4918), - [sym_structured_binding_declarator] = STATE(4918), - [sym_template_type] = STATE(3608), - [sym_template_function] = STATE(3494), + [sym_reference_declarator] = STATE(5640), + [sym_structured_binding_declarator] = STATE(5640), + [sym_template_type] = STATE(3921), + [sym_template_function] = STATE(4066), [sym_namespace_definition] = STATE(47), [sym_namespace_alias_definition] = STATE(47), [sym_using_declaration] = STATE(47), @@ -36497,720 +53362,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_co_yield_statement] = STATE(47), [sym_throw_statement] = STATE(47), [sym_try_statement] = STATE(47), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_destructor_name] = STATE(4918), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4460), - [sym_qualified_identifier] = STATE(2732), - [sym_qualified_type_identifier] = STATE(3593), - [sym_qualified_operator_cast_identifier] = STATE(5134), - [sym_operator_name] = STATE(4918), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_translation_unit_repeat1] = STATE(47), - [aux_sym__declaration_specifiers_repeat1] = STATE(2179), - [aux_sym_attributed_declarator_repeat1] = STATE(206), - [aux_sym_sized_type_specifier_repeat1] = STATE(3171), - [aux_sym_operator_cast_definition_repeat1] = STATE(1936), - [sym_identifier] = ACTIONS(147), - [aux_sym_preproc_include_token1] = ACTIONS(149), - [aux_sym_preproc_def_token1] = ACTIONS(151), - [aux_sym_preproc_if_token1] = ACTIONS(155), - [aux_sym_preproc_ifdef_token1] = ACTIONS(157), - [aux_sym_preproc_ifdef_token2] = ACTIONS(157), - [sym_preproc_directive] = ACTIONS(159), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_typedef] = ACTIONS(163), - [anon_sym_extern] = ACTIONS(165), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(43), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_RBRACE] = ACTIONS(843), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(173), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(61), - [anon_sym_unsigned] = ACTIONS(61), - [anon_sym_long] = ACTIONS(61), - [anon_sym_short] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(63), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(175), - [anon_sym_switch] = ACTIONS(177), - [anon_sym_case] = ACTIONS(179), - [anon_sym_default] = ACTIONS(181), - [anon_sym_while] = ACTIONS(183), - [anon_sym_do] = ACTIONS(185), - [anon_sym_for] = ACTIONS(187), - [anon_sym_return] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), - [anon_sym_goto] = ACTIONS(195), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(107), - [anon_sym_decltype] = ACTIONS(109), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_explicit] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(115), - [anon_sym_template] = ACTIONS(199), - [anon_sym_operator] = ACTIONS(119), - [anon_sym_try] = ACTIONS(201), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(203), - [anon_sym_namespace] = ACTIONS(205), - [anon_sym_using] = ACTIONS(207), - [anon_sym_static_assert] = ACTIONS(209), - [anon_sym_concept] = ACTIONS(211), - [anon_sym_co_return] = ACTIONS(213), - [anon_sym_co_yield] = ACTIONS(215), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), - }, - [55] = { - [sym_preproc_include] = STATE(29), - [sym_preproc_def] = STATE(29), - [sym_preproc_function_def] = STATE(29), - [sym_preproc_call] = STATE(29), - [sym_preproc_if] = STATE(29), - [sym_preproc_ifdef] = STATE(29), - [sym_function_definition] = STATE(29), - [sym_declaration] = STATE(29), - [sym_type_definition] = STATE(29), - [sym__declaration_modifiers] = STATE(3225), - [sym__declaration_specifiers] = STATE(3962), - [sym_linkage_specification] = STATE(29), - [sym_attribute_specifier] = STATE(3225), - [sym_attribute_declaration] = STATE(1136), - [sym_ms_declspec_modifier] = STATE(3225), - [sym_ms_based_modifier] = STATE(6104), - [sym_ms_call_modifier] = STATE(2065), - [sym__declarator] = STATE(5113), - [sym_parenthesized_declarator] = STATE(4918), - [sym_attributed_declarator] = STATE(4918), - [sym_pointer_declarator] = STATE(4918), - [sym_function_declarator] = STATE(4870), - [sym_array_declarator] = STATE(4918), - [sym_compound_statement] = STATE(29), - [sym_storage_class_specifier] = STATE(3225), - [sym_type_qualifier] = STATE(3225), - [sym__type_specifier] = STATE(3322), - [sym_sized_type_specifier] = STATE(3232), - [sym_enum_specifier] = STATE(3232), - [sym_struct_specifier] = STATE(3232), - [sym_union_specifier] = STATE(3232), - [sym_attributed_statement] = STATE(29), - [sym_labeled_statement] = STATE(29), - [sym_expression_statement] = STATE(29), - [sym_if_statement] = STATE(29), - [sym_switch_statement] = STATE(29), - [sym_case_statement] = STATE(29), - [sym_while_statement] = STATE(29), - [sym_do_statement] = STATE(29), - [sym_for_statement] = STATE(29), - [sym_return_statement] = STATE(29), - [sym_break_statement] = STATE(29), - [sym_continue_statement] = STATE(29), - [sym_goto_statement] = STATE(29), - [sym__expression] = STATE(3502), - [sym_comma_expression] = STATE(6595), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym__empty_declaration] = STATE(29), - [sym_placeholder_type_specifier] = STATE(3232), - [sym_decltype_auto] = STATE(3279), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3232), - [sym__class_name] = STATE(5753), - [sym_virtual] = STATE(3225), - [sym_explicit_function_specifier] = STATE(1936), - [sym_dependent_type] = STATE(3232), - [sym_template_declaration] = STATE(29), - [sym_template_instantiation] = STATE(29), - [sym_operator_cast] = STATE(5134), - [sym__constructor_specifiers] = STATE(1936), - [sym_operator_cast_definition] = STATE(29), - [sym_operator_cast_declaration] = STATE(29), - [sym_constructor_or_destructor_definition] = STATE(29), - [sym_reference_declarator] = STATE(4918), - [sym_structured_binding_declarator] = STATE(4918), - [sym_template_type] = STATE(3608), - [sym_template_function] = STATE(3494), - [sym_namespace_definition] = STATE(29), - [sym_namespace_alias_definition] = STATE(29), - [sym_using_declaration] = STATE(29), - [sym_alias_declaration] = STATE(29), - [sym_static_assert_declaration] = STATE(29), - [sym_concept_definition] = STATE(29), - [sym_for_range_loop] = STATE(29), - [sym_co_return_statement] = STATE(29), - [sym_co_yield_statement] = STATE(29), - [sym_throw_statement] = STATE(29), - [sym_try_statement] = STATE(29), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_destructor_name] = STATE(4918), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4460), - [sym_qualified_identifier] = STATE(2732), - [sym_qualified_type_identifier] = STATE(3593), - [sym_qualified_operator_cast_identifier] = STATE(5134), - [sym_operator_name] = STATE(4918), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_translation_unit_repeat1] = STATE(29), - [aux_sym__declaration_specifiers_repeat1] = STATE(2179), - [aux_sym_attributed_declarator_repeat1] = STATE(206), - [aux_sym_sized_type_specifier_repeat1] = STATE(3171), - [aux_sym_operator_cast_definition_repeat1] = STATE(1936), - [sym_identifier] = ACTIONS(147), - [aux_sym_preproc_include_token1] = ACTIONS(149), - [aux_sym_preproc_def_token1] = ACTIONS(151), - [aux_sym_preproc_if_token1] = ACTIONS(155), - [aux_sym_preproc_ifdef_token1] = ACTIONS(157), - [aux_sym_preproc_ifdef_token2] = ACTIONS(157), - [sym_preproc_directive] = ACTIONS(159), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_typedef] = ACTIONS(163), - [anon_sym_extern] = ACTIONS(165), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(43), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_RBRACE] = ACTIONS(845), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(173), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(61), - [anon_sym_unsigned] = ACTIONS(61), - [anon_sym_long] = ACTIONS(61), - [anon_sym_short] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(63), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(175), - [anon_sym_switch] = ACTIONS(177), - [anon_sym_case] = ACTIONS(179), - [anon_sym_default] = ACTIONS(181), - [anon_sym_while] = ACTIONS(183), - [anon_sym_do] = ACTIONS(185), - [anon_sym_for] = ACTIONS(187), - [anon_sym_return] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), - [anon_sym_goto] = ACTIONS(195), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(107), - [anon_sym_decltype] = ACTIONS(109), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_explicit] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(115), - [anon_sym_template] = ACTIONS(199), - [anon_sym_operator] = ACTIONS(119), - [anon_sym_try] = ACTIONS(201), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(203), - [anon_sym_namespace] = ACTIONS(205), - [anon_sym_using] = ACTIONS(207), - [anon_sym_static_assert] = ACTIONS(209), - [anon_sym_concept] = ACTIONS(211), - [anon_sym_co_return] = ACTIONS(213), - [anon_sym_co_yield] = ACTIONS(215), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), - }, - [56] = { - [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_declaration] = STATE(44), - [sym_type_definition] = STATE(44), - [sym__declaration_modifiers] = STATE(3225), - [sym__declaration_specifiers] = STATE(3962), - [sym_linkage_specification] = STATE(44), - [sym_attribute_specifier] = STATE(3225), - [sym_attribute_declaration] = STATE(1136), - [sym_ms_declspec_modifier] = STATE(3225), - [sym_ms_based_modifier] = STATE(6104), - [sym_ms_call_modifier] = STATE(2065), - [sym__declarator] = STATE(5113), - [sym_parenthesized_declarator] = STATE(4918), - [sym_attributed_declarator] = STATE(4918), - [sym_pointer_declarator] = STATE(4918), - [sym_function_declarator] = STATE(4870), - [sym_array_declarator] = STATE(4918), - [sym_compound_statement] = STATE(44), - [sym_storage_class_specifier] = STATE(3225), - [sym_type_qualifier] = STATE(3225), - [sym__type_specifier] = STATE(3322), - [sym_sized_type_specifier] = STATE(3232), - [sym_enum_specifier] = STATE(3232), - [sym_struct_specifier] = STATE(3232), - [sym_union_specifier] = STATE(3232), - [sym_attributed_statement] = STATE(44), - [sym_labeled_statement] = STATE(44), - [sym_expression_statement] = STATE(44), - [sym_if_statement] = STATE(44), - [sym_switch_statement] = STATE(44), - [sym_case_statement] = STATE(44), - [sym_while_statement] = STATE(44), - [sym_do_statement] = STATE(44), - [sym_for_statement] = STATE(44), - [sym_return_statement] = STATE(44), - [sym_break_statement] = STATE(44), - [sym_continue_statement] = STATE(44), - [sym_goto_statement] = STATE(44), - [sym__expression] = STATE(3502), - [sym_comma_expression] = STATE(6595), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym__empty_declaration] = STATE(44), - [sym_placeholder_type_specifier] = STATE(3232), - [sym_decltype_auto] = STATE(3279), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3232), - [sym__class_name] = STATE(5753), - [sym_virtual] = STATE(3225), - [sym_explicit_function_specifier] = STATE(1936), - [sym_dependent_type] = STATE(3232), - [sym_template_declaration] = STATE(44), - [sym_template_instantiation] = STATE(44), - [sym_operator_cast] = STATE(5134), - [sym__constructor_specifiers] = STATE(1936), - [sym_operator_cast_definition] = STATE(44), - [sym_operator_cast_declaration] = STATE(44), - [sym_constructor_or_destructor_definition] = STATE(44), - [sym_reference_declarator] = STATE(4918), - [sym_structured_binding_declarator] = STATE(4918), - [sym_template_type] = STATE(3608), - [sym_template_function] = STATE(3494), - [sym_namespace_definition] = STATE(44), - [sym_namespace_alias_definition] = STATE(44), - [sym_using_declaration] = STATE(44), - [sym_alias_declaration] = STATE(44), - [sym_static_assert_declaration] = STATE(44), - [sym_concept_definition] = STATE(44), - [sym_for_range_loop] = STATE(44), - [sym_co_return_statement] = STATE(44), - [sym_co_yield_statement] = STATE(44), - [sym_throw_statement] = STATE(44), - [sym_try_statement] = STATE(44), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_destructor_name] = STATE(4918), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4460), - [sym_qualified_identifier] = STATE(2732), - [sym_qualified_type_identifier] = STATE(3593), - [sym_qualified_operator_cast_identifier] = STATE(5134), - [sym_operator_name] = STATE(4918), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_translation_unit_repeat1] = STATE(44), - [aux_sym__declaration_specifiers_repeat1] = STATE(2179), - [aux_sym_attributed_declarator_repeat1] = STATE(206), - [aux_sym_sized_type_specifier_repeat1] = STATE(3171), - [aux_sym_operator_cast_definition_repeat1] = STATE(1936), - [sym_identifier] = ACTIONS(147), - [aux_sym_preproc_include_token1] = ACTIONS(149), - [aux_sym_preproc_def_token1] = ACTIONS(151), - [aux_sym_preproc_if_token1] = ACTIONS(155), - [aux_sym_preproc_ifdef_token1] = ACTIONS(157), - [aux_sym_preproc_ifdef_token2] = ACTIONS(157), - [sym_preproc_directive] = ACTIONS(159), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_typedef] = ACTIONS(163), - [anon_sym_extern] = ACTIONS(165), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(43), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_RBRACE] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(173), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(61), - [anon_sym_unsigned] = ACTIONS(61), - [anon_sym_long] = ACTIONS(61), - [anon_sym_short] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(63), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(175), - [anon_sym_switch] = ACTIONS(177), - [anon_sym_case] = ACTIONS(179), - [anon_sym_default] = ACTIONS(181), - [anon_sym_while] = ACTIONS(183), - [anon_sym_do] = ACTIONS(185), - [anon_sym_for] = ACTIONS(187), - [anon_sym_return] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), - [anon_sym_goto] = ACTIONS(195), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(107), - [anon_sym_decltype] = ACTIONS(109), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_explicit] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(115), - [anon_sym_template] = ACTIONS(199), - [anon_sym_operator] = ACTIONS(119), - [anon_sym_try] = ACTIONS(201), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(203), - [anon_sym_namespace] = ACTIONS(205), - [anon_sym_using] = ACTIONS(207), - [anon_sym_static_assert] = ACTIONS(209), - [anon_sym_concept] = ACTIONS(211), - [anon_sym_co_return] = ACTIONS(213), - [anon_sym_co_yield] = ACTIONS(215), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), - }, - [57] = { - [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_declaration] = STATE(66), - [sym_type_definition] = STATE(66), - [sym__declaration_modifiers] = STATE(3225), - [sym__declaration_specifiers] = STATE(3962), - [sym_linkage_specification] = STATE(66), - [sym_attribute_specifier] = STATE(3225), - [sym_attribute_declaration] = STATE(1136), - [sym_ms_declspec_modifier] = STATE(3225), - [sym_ms_based_modifier] = STATE(6104), - [sym_ms_call_modifier] = STATE(2065), - [sym__declarator] = STATE(5113), - [sym_parenthesized_declarator] = STATE(4918), - [sym_attributed_declarator] = STATE(4918), - [sym_pointer_declarator] = STATE(4918), - [sym_function_declarator] = STATE(4870), - [sym_array_declarator] = STATE(4918), - [sym_compound_statement] = STATE(66), - [sym_storage_class_specifier] = STATE(3225), - [sym_type_qualifier] = STATE(3225), - [sym__type_specifier] = STATE(3322), - [sym_sized_type_specifier] = STATE(3232), - [sym_enum_specifier] = STATE(3232), - [sym_struct_specifier] = STATE(3232), - [sym_union_specifier] = STATE(3232), - [sym_attributed_statement] = STATE(66), - [sym_labeled_statement] = STATE(66), - [sym_expression_statement] = STATE(66), - [sym_if_statement] = STATE(66), - [sym_switch_statement] = STATE(66), - [sym_case_statement] = STATE(66), - [sym_while_statement] = STATE(66), - [sym_do_statement] = STATE(66), - [sym_for_statement] = STATE(66), - [sym_return_statement] = STATE(66), - [sym_break_statement] = STATE(66), - [sym_continue_statement] = STATE(66), - [sym_goto_statement] = STATE(66), - [sym__expression] = STATE(3502), - [sym_comma_expression] = STATE(6595), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym__empty_declaration] = STATE(66), - [sym_placeholder_type_specifier] = STATE(3232), - [sym_decltype_auto] = STATE(3279), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3232), - [sym__class_name] = STATE(5753), - [sym_virtual] = STATE(3225), - [sym_explicit_function_specifier] = STATE(1936), - [sym_dependent_type] = STATE(3232), - [sym_template_declaration] = STATE(66), - [sym_template_instantiation] = STATE(66), - [sym_operator_cast] = STATE(5134), - [sym__constructor_specifiers] = STATE(1936), - [sym_operator_cast_definition] = STATE(66), - [sym_operator_cast_declaration] = STATE(66), - [sym_constructor_or_destructor_definition] = STATE(66), - [sym_reference_declarator] = STATE(4918), - [sym_structured_binding_declarator] = STATE(4918), - [sym_template_type] = STATE(3608), - [sym_template_function] = STATE(3494), - [sym_namespace_definition] = STATE(66), - [sym_namespace_alias_definition] = STATE(66), - [sym_using_declaration] = STATE(66), - [sym_alias_declaration] = STATE(66), - [sym_static_assert_declaration] = STATE(66), - [sym_concept_definition] = STATE(66), - [sym_for_range_loop] = STATE(66), - [sym_co_return_statement] = STATE(66), - [sym_co_yield_statement] = STATE(66), - [sym_throw_statement] = STATE(66), - [sym_try_statement] = STATE(66), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_destructor_name] = STATE(4918), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4460), - [sym_qualified_identifier] = STATE(2732), - [sym_qualified_type_identifier] = STATE(3593), - [sym_qualified_operator_cast_identifier] = STATE(5134), - [sym_operator_name] = STATE(4918), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_translation_unit_repeat1] = STATE(66), - [aux_sym__declaration_specifiers_repeat1] = STATE(2179), - [aux_sym_attributed_declarator_repeat1] = STATE(206), - [aux_sym_sized_type_specifier_repeat1] = STATE(3171), - [aux_sym_operator_cast_definition_repeat1] = STATE(1936), - [sym_identifier] = ACTIONS(147), - [aux_sym_preproc_include_token1] = ACTIONS(149), - [aux_sym_preproc_def_token1] = ACTIONS(151), - [aux_sym_preproc_if_token1] = ACTIONS(155), - [aux_sym_preproc_ifdef_token1] = ACTIONS(157), - [aux_sym_preproc_ifdef_token2] = ACTIONS(157), - [sym_preproc_directive] = ACTIONS(159), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_destructor_name] = STATE(5640), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5143), + [sym_qualified_identifier] = STATE(3249), + [sym_qualified_type_identifier] = STATE(3915), + [sym_qualified_operator_cast_identifier] = STATE(5937), + [sym_operator_name] = STATE(5640), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_preproc_if_repeat1] = STATE(47), + [aux_sym__declaration_specifiers_repeat1] = STATE(2514), + [aux_sym_attributed_declarator_repeat1] = STATE(309), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [aux_sym_operator_cast_definition_repeat1] = STATE(2240), + [sym_identifier] = ACTIONS(153), + [aux_sym_preproc_include_token1] = ACTIONS(155), + [aux_sym_preproc_def_token1] = ACTIONS(157), + [aux_sym_preproc_if_token1] = ACTIONS(161), + [aux_sym_preproc_ifdef_token1] = ACTIONS(163), + [aux_sym_preproc_ifdef_token2] = ACTIONS(163), + [sym_preproc_directive] = ACTIONS(165), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -37219,559 +53400,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_typedef] = ACTIONS(163), - [anon_sym_extern] = ACTIONS(165), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(43), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_RBRACE] = ACTIONS(849), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(173), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(61), - [anon_sym_unsigned] = ACTIONS(61), - [anon_sym_long] = ACTIONS(61), - [anon_sym_short] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(63), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(175), - [anon_sym_switch] = ACTIONS(177), - [anon_sym_case] = ACTIONS(179), - [anon_sym_default] = ACTIONS(181), - [anon_sym_while] = ACTIONS(183), - [anon_sym_do] = ACTIONS(185), - [anon_sym_for] = ACTIONS(187), - [anon_sym_return] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), - [anon_sym_goto] = ACTIONS(195), + [anon_sym_SEMI] = ACTIONS(167), + [anon_sym_typedef] = ACTIONS(169), + [anon_sym_extern] = ACTIONS(171), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(45), + [anon_sym___cdecl] = ACTIONS(47), + [anon_sym___clrcall] = ACTIONS(47), + [anon_sym___stdcall] = ACTIONS(47), + [anon_sym___fastcall] = ACTIONS(47), + [anon_sym___thiscall] = ACTIONS(47), + [anon_sym___vectorcall] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(738), + [anon_sym_RBRACE] = ACTIONS(760), + [anon_sym_LBRACK] = ACTIONS(51), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(179), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(181), + [anon_sym_switch] = ACTIONS(183), + [anon_sym_case] = ACTIONS(185), + [anon_sym_default] = ACTIONS(187), + [anon_sym_while] = ACTIONS(189), + [anon_sym_do] = ACTIONS(191), + [anon_sym_for] = ACTIONS(193), + [anon_sym_return] = ACTIONS(195), + [anon_sym_break] = ACTIONS(197), + [anon_sym_continue] = ACTIONS(199), + [anon_sym_goto] = ACTIONS(201), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(107), - [anon_sym_decltype] = ACTIONS(109), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_explicit] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(115), - [anon_sym_template] = ACTIONS(199), - [anon_sym_operator] = ACTIONS(119), - [anon_sym_try] = ACTIONS(201), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(203), - [anon_sym_namespace] = ACTIONS(205), - [anon_sym_using] = ACTIONS(207), - [anon_sym_static_assert] = ACTIONS(209), - [anon_sym_concept] = ACTIONS(211), - [anon_sym_co_return] = ACTIONS(213), - [anon_sym_co_yield] = ACTIONS(215), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(113), + [anon_sym_decltype] = ACTIONS(115), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_explicit] = ACTIONS(119), + [anon_sym_typename] = ACTIONS(121), + [anon_sym_template] = ACTIONS(207), + [anon_sym_operator] = ACTIONS(125), + [anon_sym_try] = ACTIONS(209), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(211), + [anon_sym_namespace] = ACTIONS(213), + [anon_sym_using] = ACTIONS(215), + [anon_sym_static_assert] = ACTIONS(217), + [anon_sym_concept] = ACTIONS(219), + [anon_sym_co_return] = ACTIONS(221), + [anon_sym_co_yield] = ACTIONS(223), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, - [58] = { - [sym_preproc_include] = STATE(39), - [sym_preproc_def] = STATE(39), - [sym_preproc_function_def] = STATE(39), - [sym_preproc_call] = STATE(39), - [sym_preproc_if] = STATE(39), - [sym_preproc_ifdef] = STATE(39), - [sym_function_definition] = STATE(39), - [sym_declaration] = STATE(39), - [sym_type_definition] = STATE(39), - [sym__declaration_modifiers] = STATE(3225), - [sym__declaration_specifiers] = STATE(3962), - [sym_linkage_specification] = STATE(39), - [sym_attribute_specifier] = STATE(3225), - [sym_attribute_declaration] = STATE(1136), - [sym_ms_declspec_modifier] = STATE(3225), - [sym_ms_based_modifier] = STATE(6104), - [sym_ms_call_modifier] = STATE(2065), - [sym__declarator] = STATE(5113), - [sym_parenthesized_declarator] = STATE(4918), - [sym_attributed_declarator] = STATE(4918), - [sym_pointer_declarator] = STATE(4918), - [sym_function_declarator] = STATE(4870), - [sym_array_declarator] = STATE(4918), - [sym_compound_statement] = STATE(39), - [sym_storage_class_specifier] = STATE(3225), - [sym_type_qualifier] = STATE(3225), - [sym__type_specifier] = STATE(3322), - [sym_sized_type_specifier] = STATE(3232), - [sym_enum_specifier] = STATE(3232), - [sym_struct_specifier] = STATE(3232), - [sym_union_specifier] = STATE(3232), - [sym_attributed_statement] = STATE(39), - [sym_labeled_statement] = STATE(39), - [sym_expression_statement] = STATE(39), - [sym_if_statement] = STATE(39), - [sym_switch_statement] = STATE(39), - [sym_case_statement] = STATE(39), - [sym_while_statement] = STATE(39), - [sym_do_statement] = STATE(39), - [sym_for_statement] = STATE(39), - [sym_return_statement] = STATE(39), - [sym_break_statement] = STATE(39), - [sym_continue_statement] = STATE(39), - [sym_goto_statement] = STATE(39), - [sym__expression] = STATE(3502), - [sym_comma_expression] = STATE(6595), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym__empty_declaration] = STATE(39), - [sym_placeholder_type_specifier] = STATE(3232), - [sym_decltype_auto] = STATE(3279), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3232), - [sym__class_name] = STATE(5753), - [sym_virtual] = STATE(3225), - [sym_explicit_function_specifier] = STATE(1936), - [sym_dependent_type] = STATE(3232), - [sym_template_declaration] = STATE(39), - [sym_template_instantiation] = STATE(39), - [sym_operator_cast] = STATE(5134), - [sym__constructor_specifiers] = STATE(1936), - [sym_operator_cast_definition] = STATE(39), - [sym_operator_cast_declaration] = STATE(39), - [sym_constructor_or_destructor_definition] = STATE(39), - [sym_reference_declarator] = STATE(4918), - [sym_structured_binding_declarator] = STATE(4918), - [sym_template_type] = STATE(3608), - [sym_template_function] = STATE(3494), - [sym_namespace_definition] = STATE(39), - [sym_namespace_alias_definition] = STATE(39), - [sym_using_declaration] = STATE(39), - [sym_alias_declaration] = STATE(39), - [sym_static_assert_declaration] = STATE(39), - [sym_concept_definition] = STATE(39), - [sym_for_range_loop] = STATE(39), - [sym_co_return_statement] = STATE(39), - [sym_co_yield_statement] = STATE(39), - [sym_throw_statement] = STATE(39), - [sym_try_statement] = STATE(39), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_destructor_name] = STATE(4918), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4460), - [sym_qualified_identifier] = STATE(2732), - [sym_qualified_type_identifier] = STATE(3593), - [sym_qualified_operator_cast_identifier] = STATE(5134), - [sym_operator_name] = STATE(4918), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_translation_unit_repeat1] = STATE(39), - [aux_sym__declaration_specifiers_repeat1] = STATE(2179), - [aux_sym_attributed_declarator_repeat1] = STATE(206), - [aux_sym_sized_type_specifier_repeat1] = STATE(3171), - [aux_sym_operator_cast_definition_repeat1] = STATE(1936), - [sym_identifier] = ACTIONS(147), - [aux_sym_preproc_include_token1] = ACTIONS(149), - [aux_sym_preproc_def_token1] = ACTIONS(151), - [aux_sym_preproc_if_token1] = ACTIONS(155), - [aux_sym_preproc_ifdef_token1] = ACTIONS(157), - [aux_sym_preproc_ifdef_token2] = ACTIONS(157), - [sym_preproc_directive] = ACTIONS(159), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_typedef] = ACTIONS(163), - [anon_sym_extern] = ACTIONS(165), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(43), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_RBRACE] = ACTIONS(851), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(173), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(61), - [anon_sym_unsigned] = ACTIONS(61), - [anon_sym_long] = ACTIONS(61), - [anon_sym_short] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(63), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(175), - [anon_sym_switch] = ACTIONS(177), - [anon_sym_case] = ACTIONS(179), - [anon_sym_default] = ACTIONS(181), - [anon_sym_while] = ACTIONS(183), - [anon_sym_do] = ACTIONS(185), - [anon_sym_for] = ACTIONS(187), - [anon_sym_return] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), - [anon_sym_goto] = ACTIONS(195), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(107), - [anon_sym_decltype] = ACTIONS(109), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_explicit] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(115), - [anon_sym_template] = ACTIONS(199), - [anon_sym_operator] = ACTIONS(119), - [anon_sym_try] = ACTIONS(201), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(203), - [anon_sym_namespace] = ACTIONS(205), - [anon_sym_using] = ACTIONS(207), - [anon_sym_static_assert] = ACTIONS(209), - [anon_sym_concept] = ACTIONS(211), - [anon_sym_co_return] = ACTIONS(213), - [anon_sym_co_yield] = ACTIONS(215), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), - }, - [59] = { - [sym_preproc_include] = STATE(29), - [sym_preproc_def] = STATE(29), - [sym_preproc_function_def] = STATE(29), - [sym_preproc_call] = STATE(29), - [sym_preproc_if] = STATE(29), - [sym_preproc_ifdef] = STATE(29), - [sym_function_definition] = STATE(29), - [sym_declaration] = STATE(29), - [sym_type_definition] = STATE(29), - [sym__declaration_modifiers] = STATE(3225), - [sym__declaration_specifiers] = STATE(3962), - [sym_linkage_specification] = STATE(29), - [sym_attribute_specifier] = STATE(3225), - [sym_attribute_declaration] = STATE(1136), - [sym_ms_declspec_modifier] = STATE(3225), - [sym_ms_based_modifier] = STATE(6104), - [sym_ms_call_modifier] = STATE(2065), - [sym__declarator] = STATE(5113), - [sym_parenthesized_declarator] = STATE(4918), - [sym_attributed_declarator] = STATE(4918), - [sym_pointer_declarator] = STATE(4918), - [sym_function_declarator] = STATE(4870), - [sym_array_declarator] = STATE(4918), - [sym_compound_statement] = STATE(29), - [sym_storage_class_specifier] = STATE(3225), - [sym_type_qualifier] = STATE(3225), - [sym__type_specifier] = STATE(3322), - [sym_sized_type_specifier] = STATE(3232), - [sym_enum_specifier] = STATE(3232), - [sym_struct_specifier] = STATE(3232), - [sym_union_specifier] = STATE(3232), - [sym_attributed_statement] = STATE(29), - [sym_labeled_statement] = STATE(29), - [sym_expression_statement] = STATE(29), - [sym_if_statement] = STATE(29), - [sym_switch_statement] = STATE(29), - [sym_case_statement] = STATE(29), - [sym_while_statement] = STATE(29), - [sym_do_statement] = STATE(29), - [sym_for_statement] = STATE(29), - [sym_return_statement] = STATE(29), - [sym_break_statement] = STATE(29), - [sym_continue_statement] = STATE(29), - [sym_goto_statement] = STATE(29), - [sym__expression] = STATE(3502), - [sym_comma_expression] = STATE(6595), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym__empty_declaration] = STATE(29), - [sym_placeholder_type_specifier] = STATE(3232), - [sym_decltype_auto] = STATE(3279), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3232), - [sym__class_name] = STATE(5753), - [sym_virtual] = STATE(3225), - [sym_explicit_function_specifier] = STATE(1936), - [sym_dependent_type] = STATE(3232), - [sym_template_declaration] = STATE(29), - [sym_template_instantiation] = STATE(29), - [sym_operator_cast] = STATE(5134), - [sym__constructor_specifiers] = STATE(1936), - [sym_operator_cast_definition] = STATE(29), - [sym_operator_cast_declaration] = STATE(29), - [sym_constructor_or_destructor_definition] = STATE(29), - [sym_reference_declarator] = STATE(4918), - [sym_structured_binding_declarator] = STATE(4918), - [sym_template_type] = STATE(3608), - [sym_template_function] = STATE(3494), - [sym_namespace_definition] = STATE(29), - [sym_namespace_alias_definition] = STATE(29), - [sym_using_declaration] = STATE(29), - [sym_alias_declaration] = STATE(29), - [sym_static_assert_declaration] = STATE(29), - [sym_concept_definition] = STATE(29), - [sym_for_range_loop] = STATE(29), - [sym_co_return_statement] = STATE(29), - [sym_co_yield_statement] = STATE(29), - [sym_throw_statement] = STATE(29), - [sym_try_statement] = STATE(29), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_destructor_name] = STATE(4918), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4460), - [sym_qualified_identifier] = STATE(2732), - [sym_qualified_type_identifier] = STATE(3593), - [sym_qualified_operator_cast_identifier] = STATE(5134), - [sym_operator_name] = STATE(4918), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_translation_unit_repeat1] = STATE(29), - [aux_sym__declaration_specifiers_repeat1] = STATE(2179), - [aux_sym_attributed_declarator_repeat1] = STATE(206), - [aux_sym_sized_type_specifier_repeat1] = STATE(3171), - [aux_sym_operator_cast_definition_repeat1] = STATE(1936), - [sym_identifier] = ACTIONS(147), - [aux_sym_preproc_include_token1] = ACTIONS(149), - [aux_sym_preproc_def_token1] = ACTIONS(151), - [aux_sym_preproc_if_token1] = ACTIONS(155), - [aux_sym_preproc_ifdef_token1] = ACTIONS(157), - [aux_sym_preproc_ifdef_token2] = ACTIONS(157), - [sym_preproc_directive] = ACTIONS(159), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_typedef] = ACTIONS(163), - [anon_sym_extern] = ACTIONS(165), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(43), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_RBRACE] = ACTIONS(853), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(173), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(61), - [anon_sym_unsigned] = ACTIONS(61), - [anon_sym_long] = ACTIONS(61), - [anon_sym_short] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(63), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(175), - [anon_sym_switch] = ACTIONS(177), - [anon_sym_case] = ACTIONS(179), - [anon_sym_default] = ACTIONS(181), - [anon_sym_while] = ACTIONS(183), - [anon_sym_do] = ACTIONS(185), - [anon_sym_for] = ACTIONS(187), - [anon_sym_return] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), - [anon_sym_goto] = ACTIONS(195), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(107), - [anon_sym_decltype] = ACTIONS(109), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_explicit] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(115), - [anon_sym_template] = ACTIONS(199), - [anon_sym_operator] = ACTIONS(119), - [anon_sym_try] = ACTIONS(201), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(203), - [anon_sym_namespace] = ACTIONS(205), - [anon_sym_using] = ACTIONS(207), - [anon_sym_static_assert] = ACTIONS(209), - [anon_sym_concept] = ACTIONS(211), - [anon_sym_co_return] = ACTIONS(213), - [anon_sym_co_yield] = ACTIONS(215), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), - }, - [60] = { + [49] = { [sym_preproc_include] = STATE(59), [sym_preproc_def] = STATE(59), [sym_preproc_function_def] = STATE(59), @@ -37781,28 +53513,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_definition] = STATE(59), [sym_declaration] = STATE(59), [sym_type_definition] = STATE(59), - [sym__declaration_modifiers] = STATE(3225), - [sym__declaration_specifiers] = STATE(3962), + [sym__declaration_modifiers] = STATE(3706), + [sym__declaration_specifiers] = STATE(4618), [sym_linkage_specification] = STATE(59), - [sym_attribute_specifier] = STATE(3225), - [sym_attribute_declaration] = STATE(1136), - [sym_ms_declspec_modifier] = STATE(3225), - [sym_ms_based_modifier] = STATE(6104), - [sym_ms_call_modifier] = STATE(2065), - [sym__declarator] = STATE(5113), - [sym_parenthesized_declarator] = STATE(4918), - [sym_attributed_declarator] = STATE(4918), - [sym_pointer_declarator] = STATE(4918), - [sym_function_declarator] = STATE(4870), - [sym_array_declarator] = STATE(4918), + [sym_attribute_specifier] = STATE(3706), + [sym_attribute_declaration] = STATE(1427), + [sym_ms_declspec_modifier] = STATE(3706), + [sym_ms_based_modifier] = STATE(7654), + [sym_ms_call_modifier] = STATE(2462), + [sym__declarator] = STATE(5881), + [sym_parenthesized_declarator] = STATE(5640), + [sym_attributed_declarator] = STATE(5640), + [sym_pointer_declarator] = STATE(5640), + [sym_function_declarator] = STATE(5588), + [sym_array_declarator] = STATE(5640), [sym_compound_statement] = STATE(59), - [sym_storage_class_specifier] = STATE(3225), - [sym_type_qualifier] = STATE(3225), - [sym__type_specifier] = STATE(3322), - [sym_sized_type_specifier] = STATE(3232), - [sym_enum_specifier] = STATE(3232), - [sym_struct_specifier] = STATE(3232), - [sym_union_specifier] = STATE(3232), + [sym_storage_class_specifier] = STATE(3706), + [sym_type_qualifier] = STATE(3706), + [sym__type_specifier] = STATE(3826), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), [sym_attributed_statement] = STATE(59), [sym_labeled_statement] = STATE(59), [sym_expression_statement] = STATE(59), @@ -37816,44 +53548,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(59), [sym_continue_statement] = STATE(59), [sym_goto_statement] = STATE(59), - [sym__expression] = STATE(3502), - [sym_comma_expression] = STATE(6595), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), + [sym__expression] = STATE(4182), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7590), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), [sym__empty_declaration] = STATE(59), - [sym_placeholder_type_specifier] = STATE(3232), - [sym_decltype_auto] = STATE(3279), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3232), - [sym__class_name] = STATE(5753), - [sym_virtual] = STATE(3225), - [sym_explicit_function_specifier] = STATE(1936), - [sym_dependent_type] = STATE(3232), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym__class_name] = STATE(6623), + [sym_virtual] = STATE(3706), + [sym_explicit_function_specifier] = STATE(2240), + [sym_dependent_type] = STATE(3723), [sym_template_declaration] = STATE(59), [sym_template_instantiation] = STATE(59), - [sym_operator_cast] = STATE(5134), - [sym__constructor_specifiers] = STATE(1936), + [sym_operator_cast] = STATE(5937), + [sym__constructor_specifiers] = STATE(2240), [sym_operator_cast_definition] = STATE(59), [sym_operator_cast_declaration] = STATE(59), [sym_constructor_or_destructor_definition] = STATE(59), - [sym_reference_declarator] = STATE(4918), - [sym_structured_binding_declarator] = STATE(4918), - [sym_template_type] = STATE(3608), - [sym_template_function] = STATE(3494), + [sym_reference_declarator] = STATE(5640), + [sym_structured_binding_declarator] = STATE(5640), + [sym_template_type] = STATE(3921), + [sym_template_function] = STATE(4066), [sym_namespace_definition] = STATE(59), [sym_namespace_alias_definition] = STATE(59), [sym_using_declaration] = STATE(59), @@ -37865,36 +53602,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_co_yield_statement] = STATE(59), [sym_throw_statement] = STATE(59), [sym_try_statement] = STATE(59), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_destructor_name] = STATE(4918), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4460), - [sym_qualified_identifier] = STATE(2732), - [sym_qualified_type_identifier] = STATE(3593), - [sym_qualified_operator_cast_identifier] = STATE(5134), - [sym_operator_name] = STATE(4918), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_translation_unit_repeat1] = STATE(59), - [aux_sym__declaration_specifiers_repeat1] = STATE(2179), - [aux_sym_attributed_declarator_repeat1] = STATE(206), - [aux_sym_sized_type_specifier_repeat1] = STATE(3171), - [aux_sym_operator_cast_definition_repeat1] = STATE(1936), - [sym_identifier] = ACTIONS(147), - [aux_sym_preproc_include_token1] = ACTIONS(149), - [aux_sym_preproc_def_token1] = ACTIONS(151), - [aux_sym_preproc_if_token1] = ACTIONS(155), - [aux_sym_preproc_ifdef_token1] = ACTIONS(157), - [aux_sym_preproc_ifdef_token2] = ACTIONS(157), - [sym_preproc_directive] = ACTIONS(159), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_destructor_name] = STATE(5640), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5143), + [sym_qualified_identifier] = STATE(3249), + [sym_qualified_type_identifier] = STATE(3915), + [sym_qualified_operator_cast_identifier] = STATE(5937), + [sym_operator_name] = STATE(5640), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_preproc_if_repeat1] = STATE(59), + [aux_sym__declaration_specifiers_repeat1] = STATE(2514), + [aux_sym_attributed_declarator_repeat1] = STATE(309), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [aux_sym_operator_cast_definition_repeat1] = STATE(2240), + [sym_identifier] = ACTIONS(153), + [aux_sym_preproc_include_token1] = ACTIONS(155), + [aux_sym_preproc_def_token1] = ACTIONS(157), + [aux_sym_preproc_if_token1] = ACTIONS(161), + [aux_sym_preproc_ifdef_token1] = ACTIONS(163), + [aux_sym_preproc_ifdef_token2] = ACTIONS(163), + [sym_preproc_directive] = ACTIONS(165), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -37903,226 +53640,238 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_typedef] = ACTIONS(163), - [anon_sym_extern] = ACTIONS(165), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(43), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_RBRACE] = ACTIONS(855), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(173), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(61), - [anon_sym_unsigned] = ACTIONS(61), - [anon_sym_long] = ACTIONS(61), - [anon_sym_short] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(63), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(175), - [anon_sym_switch] = ACTIONS(177), - [anon_sym_case] = ACTIONS(179), - [anon_sym_default] = ACTIONS(181), - [anon_sym_while] = ACTIONS(183), - [anon_sym_do] = ACTIONS(185), - [anon_sym_for] = ACTIONS(187), - [anon_sym_return] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), - [anon_sym_goto] = ACTIONS(195), + [anon_sym_SEMI] = ACTIONS(167), + [anon_sym_typedef] = ACTIONS(169), + [anon_sym_extern] = ACTIONS(171), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(45), + [anon_sym___cdecl] = ACTIONS(47), + [anon_sym___clrcall] = ACTIONS(47), + [anon_sym___stdcall] = ACTIONS(47), + [anon_sym___fastcall] = ACTIONS(47), + [anon_sym___thiscall] = ACTIONS(47), + [anon_sym___vectorcall] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(738), + [anon_sym_RBRACE] = ACTIONS(762), + [anon_sym_LBRACK] = ACTIONS(51), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(179), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(181), + [anon_sym_switch] = ACTIONS(183), + [anon_sym_case] = ACTIONS(185), + [anon_sym_default] = ACTIONS(187), + [anon_sym_while] = ACTIONS(189), + [anon_sym_do] = ACTIONS(191), + [anon_sym_for] = ACTIONS(193), + [anon_sym_return] = ACTIONS(195), + [anon_sym_break] = ACTIONS(197), + [anon_sym_continue] = ACTIONS(199), + [anon_sym_goto] = ACTIONS(201), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(107), - [anon_sym_decltype] = ACTIONS(109), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_explicit] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(115), - [anon_sym_template] = ACTIONS(199), - [anon_sym_operator] = ACTIONS(119), - [anon_sym_try] = ACTIONS(201), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(203), - [anon_sym_namespace] = ACTIONS(205), - [anon_sym_using] = ACTIONS(207), - [anon_sym_static_assert] = ACTIONS(209), - [anon_sym_concept] = ACTIONS(211), - [anon_sym_co_return] = ACTIONS(213), - [anon_sym_co_yield] = ACTIONS(215), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(113), + [anon_sym_decltype] = ACTIONS(115), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_explicit] = ACTIONS(119), + [anon_sym_typename] = ACTIONS(121), + [anon_sym_template] = ACTIONS(207), + [anon_sym_operator] = ACTIONS(125), + [anon_sym_try] = ACTIONS(209), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(211), + [anon_sym_namespace] = ACTIONS(213), + [anon_sym_using] = ACTIONS(215), + [anon_sym_static_assert] = ACTIONS(217), + [anon_sym_concept] = ACTIONS(219), + [anon_sym_co_return] = ACTIONS(221), + [anon_sym_co_yield] = ACTIONS(223), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, - [61] = { - [sym_preproc_include] = STATE(41), - [sym_preproc_def] = STATE(41), - [sym_preproc_function_def] = STATE(41), - [sym_preproc_call] = STATE(41), - [sym_preproc_if] = STATE(41), - [sym_preproc_ifdef] = STATE(41), - [sym_function_definition] = STATE(41), - [sym_declaration] = STATE(41), - [sym_type_definition] = STATE(41), - [sym__declaration_modifiers] = STATE(3225), - [sym__declaration_specifiers] = STATE(3962), - [sym_linkage_specification] = STATE(41), - [sym_attribute_specifier] = STATE(3225), - [sym_attribute_declaration] = STATE(1136), - [sym_ms_declspec_modifier] = STATE(3225), - [sym_ms_based_modifier] = STATE(6104), - [sym_ms_call_modifier] = STATE(2065), - [sym__declarator] = STATE(5113), - [sym_parenthesized_declarator] = STATE(4918), - [sym_attributed_declarator] = STATE(4918), - [sym_pointer_declarator] = STATE(4918), - [sym_function_declarator] = STATE(4870), - [sym_array_declarator] = STATE(4918), - [sym_compound_statement] = STATE(41), - [sym_storage_class_specifier] = STATE(3225), - [sym_type_qualifier] = STATE(3225), - [sym__type_specifier] = STATE(3322), - [sym_sized_type_specifier] = STATE(3232), - [sym_enum_specifier] = STATE(3232), - [sym_struct_specifier] = STATE(3232), - [sym_union_specifier] = STATE(3232), - [sym_attributed_statement] = STATE(41), - [sym_labeled_statement] = STATE(41), - [sym_expression_statement] = STATE(41), - [sym_if_statement] = STATE(41), - [sym_switch_statement] = STATE(41), - [sym_case_statement] = STATE(41), - [sym_while_statement] = STATE(41), - [sym_do_statement] = STATE(41), - [sym_for_statement] = STATE(41), - [sym_return_statement] = STATE(41), - [sym_break_statement] = STATE(41), - [sym_continue_statement] = STATE(41), - [sym_goto_statement] = STATE(41), - [sym__expression] = STATE(3502), - [sym_comma_expression] = STATE(6595), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym__empty_declaration] = STATE(41), - [sym_placeholder_type_specifier] = STATE(3232), - [sym_decltype_auto] = STATE(3279), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3232), - [sym__class_name] = STATE(5753), - [sym_virtual] = STATE(3225), - [sym_explicit_function_specifier] = STATE(1936), - [sym_dependent_type] = STATE(3232), - [sym_template_declaration] = STATE(41), - [sym_template_instantiation] = STATE(41), - [sym_operator_cast] = STATE(5134), - [sym__constructor_specifiers] = STATE(1936), - [sym_operator_cast_definition] = STATE(41), - [sym_operator_cast_declaration] = STATE(41), - [sym_constructor_or_destructor_definition] = STATE(41), - [sym_reference_declarator] = STATE(4918), - [sym_structured_binding_declarator] = STATE(4918), - [sym_template_type] = STATE(3608), - [sym_template_function] = STATE(3494), - [sym_namespace_definition] = STATE(41), - [sym_namespace_alias_definition] = STATE(41), - [sym_using_declaration] = STATE(41), - [sym_alias_declaration] = STATE(41), - [sym_static_assert_declaration] = STATE(41), - [sym_concept_definition] = STATE(41), - [sym_for_range_loop] = STATE(41), - [sym_co_return_statement] = STATE(41), - [sym_co_yield_statement] = STATE(41), - [sym_throw_statement] = STATE(41), - [sym_try_statement] = STATE(41), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_destructor_name] = STATE(4918), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4460), - [sym_qualified_identifier] = STATE(2732), - [sym_qualified_type_identifier] = STATE(3593), - [sym_qualified_operator_cast_identifier] = STATE(5134), - [sym_operator_name] = STATE(4918), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_translation_unit_repeat1] = STATE(41), - [aux_sym__declaration_specifiers_repeat1] = STATE(2179), - [aux_sym_attributed_declarator_repeat1] = STATE(206), - [aux_sym_sized_type_specifier_repeat1] = STATE(3171), - [aux_sym_operator_cast_definition_repeat1] = STATE(1936), - [sym_identifier] = ACTIONS(147), - [aux_sym_preproc_include_token1] = ACTIONS(149), - [aux_sym_preproc_def_token1] = ACTIONS(151), - [aux_sym_preproc_if_token1] = ACTIONS(155), - [aux_sym_preproc_ifdef_token1] = ACTIONS(157), - [aux_sym_preproc_ifdef_token2] = ACTIONS(157), - [sym_preproc_directive] = ACTIONS(159), + [50] = { + [sym_preproc_include] = STATE(88), + [sym_preproc_def] = STATE(88), + [sym_preproc_function_def] = STATE(88), + [sym_preproc_call] = STATE(88), + [sym_preproc_if] = STATE(88), + [sym_preproc_ifdef] = STATE(88), + [sym_function_definition] = STATE(88), + [sym_declaration] = STATE(88), + [sym_type_definition] = STATE(88), + [sym__declaration_modifiers] = STATE(3706), + [sym__declaration_specifiers] = STATE(4618), + [sym_linkage_specification] = STATE(88), + [sym_attribute_specifier] = STATE(3706), + [sym_attribute_declaration] = STATE(1427), + [sym_ms_declspec_modifier] = STATE(3706), + [sym_ms_based_modifier] = STATE(7654), + [sym_ms_call_modifier] = STATE(2462), + [sym__declarator] = STATE(5881), + [sym_parenthesized_declarator] = STATE(5640), + [sym_attributed_declarator] = STATE(5640), + [sym_pointer_declarator] = STATE(5640), + [sym_function_declarator] = STATE(5588), + [sym_array_declarator] = STATE(5640), + [sym_compound_statement] = STATE(88), + [sym_storage_class_specifier] = STATE(3706), + [sym_type_qualifier] = STATE(3706), + [sym__type_specifier] = STATE(3826), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), + [sym_attributed_statement] = STATE(88), + [sym_labeled_statement] = STATE(88), + [sym_expression_statement] = STATE(88), + [sym_if_statement] = STATE(88), + [sym_switch_statement] = STATE(88), + [sym_case_statement] = STATE(88), + [sym_while_statement] = STATE(88), + [sym_do_statement] = STATE(88), + [sym_for_statement] = STATE(88), + [sym_return_statement] = STATE(88), + [sym_break_statement] = STATE(88), + [sym_continue_statement] = STATE(88), + [sym_goto_statement] = STATE(88), + [sym__expression] = STATE(4182), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7590), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym__empty_declaration] = STATE(88), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym__class_name] = STATE(6623), + [sym_virtual] = STATE(3706), + [sym_explicit_function_specifier] = STATE(2240), + [sym_dependent_type] = STATE(3723), + [sym_template_declaration] = STATE(88), + [sym_template_instantiation] = STATE(88), + [sym_operator_cast] = STATE(5937), + [sym__constructor_specifiers] = STATE(2240), + [sym_operator_cast_definition] = STATE(88), + [sym_operator_cast_declaration] = STATE(88), + [sym_constructor_or_destructor_definition] = STATE(88), + [sym_reference_declarator] = STATE(5640), + [sym_structured_binding_declarator] = STATE(5640), + [sym_template_type] = STATE(3921), + [sym_template_function] = STATE(4066), + [sym_namespace_definition] = STATE(88), + [sym_namespace_alias_definition] = STATE(88), + [sym_using_declaration] = STATE(88), + [sym_alias_declaration] = STATE(88), + [sym_static_assert_declaration] = STATE(88), + [sym_concept_definition] = STATE(88), + [sym_for_range_loop] = STATE(88), + [sym_co_return_statement] = STATE(88), + [sym_co_yield_statement] = STATE(88), + [sym_throw_statement] = STATE(88), + [sym_try_statement] = STATE(88), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_destructor_name] = STATE(5640), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5143), + [sym_qualified_identifier] = STATE(3249), + [sym_qualified_type_identifier] = STATE(3915), + [sym_qualified_operator_cast_identifier] = STATE(5937), + [sym_operator_name] = STATE(5640), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_preproc_if_repeat1] = STATE(88), + [aux_sym__declaration_specifiers_repeat1] = STATE(2514), + [aux_sym_attributed_declarator_repeat1] = STATE(309), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [aux_sym_operator_cast_definition_repeat1] = STATE(2240), + [sym_identifier] = ACTIONS(153), + [aux_sym_preproc_include_token1] = ACTIONS(155), + [aux_sym_preproc_def_token1] = ACTIONS(157), + [aux_sym_preproc_if_token1] = ACTIONS(161), + [aux_sym_preproc_ifdef_token1] = ACTIONS(163), + [aux_sym_preproc_ifdef_token2] = ACTIONS(163), + [sym_preproc_directive] = ACTIONS(165), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -38131,226 +53880,238 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_typedef] = ACTIONS(163), - [anon_sym_extern] = ACTIONS(165), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(43), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_RBRACE] = ACTIONS(857), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(173), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(61), - [anon_sym_unsigned] = ACTIONS(61), - [anon_sym_long] = ACTIONS(61), - [anon_sym_short] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(63), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(175), - [anon_sym_switch] = ACTIONS(177), - [anon_sym_case] = ACTIONS(179), - [anon_sym_default] = ACTIONS(181), - [anon_sym_while] = ACTIONS(183), - [anon_sym_do] = ACTIONS(185), - [anon_sym_for] = ACTIONS(187), - [anon_sym_return] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), - [anon_sym_goto] = ACTIONS(195), + [anon_sym_SEMI] = ACTIONS(167), + [anon_sym_typedef] = ACTIONS(169), + [anon_sym_extern] = ACTIONS(171), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(45), + [anon_sym___cdecl] = ACTIONS(47), + [anon_sym___clrcall] = ACTIONS(47), + [anon_sym___stdcall] = ACTIONS(47), + [anon_sym___fastcall] = ACTIONS(47), + [anon_sym___thiscall] = ACTIONS(47), + [anon_sym___vectorcall] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(738), + [anon_sym_RBRACE] = ACTIONS(764), + [anon_sym_LBRACK] = ACTIONS(51), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(179), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(181), + [anon_sym_switch] = ACTIONS(183), + [anon_sym_case] = ACTIONS(185), + [anon_sym_default] = ACTIONS(187), + [anon_sym_while] = ACTIONS(189), + [anon_sym_do] = ACTIONS(191), + [anon_sym_for] = ACTIONS(193), + [anon_sym_return] = ACTIONS(195), + [anon_sym_break] = ACTIONS(197), + [anon_sym_continue] = ACTIONS(199), + [anon_sym_goto] = ACTIONS(201), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(107), - [anon_sym_decltype] = ACTIONS(109), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_explicit] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(115), - [anon_sym_template] = ACTIONS(199), - [anon_sym_operator] = ACTIONS(119), - [anon_sym_try] = ACTIONS(201), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(203), - [anon_sym_namespace] = ACTIONS(205), - [anon_sym_using] = ACTIONS(207), - [anon_sym_static_assert] = ACTIONS(209), - [anon_sym_concept] = ACTIONS(211), - [anon_sym_co_return] = ACTIONS(213), - [anon_sym_co_yield] = ACTIONS(215), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(113), + [anon_sym_decltype] = ACTIONS(115), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_explicit] = ACTIONS(119), + [anon_sym_typename] = ACTIONS(121), + [anon_sym_template] = ACTIONS(207), + [anon_sym_operator] = ACTIONS(125), + [anon_sym_try] = ACTIONS(209), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(211), + [anon_sym_namespace] = ACTIONS(213), + [anon_sym_using] = ACTIONS(215), + [anon_sym_static_assert] = ACTIONS(217), + [anon_sym_concept] = ACTIONS(219), + [anon_sym_co_return] = ACTIONS(221), + [anon_sym_co_yield] = ACTIONS(223), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, - [62] = { - [sym_preproc_include] = STATE(29), - [sym_preproc_def] = STATE(29), - [sym_preproc_function_def] = STATE(29), - [sym_preproc_call] = STATE(29), - [sym_preproc_if] = STATE(29), - [sym_preproc_ifdef] = STATE(29), - [sym_function_definition] = STATE(29), - [sym_declaration] = STATE(29), - [sym_type_definition] = STATE(29), - [sym__declaration_modifiers] = STATE(3225), - [sym__declaration_specifiers] = STATE(3962), - [sym_linkage_specification] = STATE(29), - [sym_attribute_specifier] = STATE(3225), - [sym_attribute_declaration] = STATE(1136), - [sym_ms_declspec_modifier] = STATE(3225), - [sym_ms_based_modifier] = STATE(6104), - [sym_ms_call_modifier] = STATE(2065), - [sym__declarator] = STATE(5113), - [sym_parenthesized_declarator] = STATE(4918), - [sym_attributed_declarator] = STATE(4918), - [sym_pointer_declarator] = STATE(4918), - [sym_function_declarator] = STATE(4870), - [sym_array_declarator] = STATE(4918), - [sym_compound_statement] = STATE(29), - [sym_storage_class_specifier] = STATE(3225), - [sym_type_qualifier] = STATE(3225), - [sym__type_specifier] = STATE(3322), - [sym_sized_type_specifier] = STATE(3232), - [sym_enum_specifier] = STATE(3232), - [sym_struct_specifier] = STATE(3232), - [sym_union_specifier] = STATE(3232), - [sym_attributed_statement] = STATE(29), - [sym_labeled_statement] = STATE(29), - [sym_expression_statement] = STATE(29), - [sym_if_statement] = STATE(29), - [sym_switch_statement] = STATE(29), - [sym_case_statement] = STATE(29), - [sym_while_statement] = STATE(29), - [sym_do_statement] = STATE(29), - [sym_for_statement] = STATE(29), - [sym_return_statement] = STATE(29), - [sym_break_statement] = STATE(29), - [sym_continue_statement] = STATE(29), - [sym_goto_statement] = STATE(29), - [sym__expression] = STATE(3502), - [sym_comma_expression] = STATE(6595), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym__empty_declaration] = STATE(29), - [sym_placeholder_type_specifier] = STATE(3232), - [sym_decltype_auto] = STATE(3279), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3232), - [sym__class_name] = STATE(5753), - [sym_virtual] = STATE(3225), - [sym_explicit_function_specifier] = STATE(1936), - [sym_dependent_type] = STATE(3232), - [sym_template_declaration] = STATE(29), - [sym_template_instantiation] = STATE(29), - [sym_operator_cast] = STATE(5134), - [sym__constructor_specifiers] = STATE(1936), - [sym_operator_cast_definition] = STATE(29), - [sym_operator_cast_declaration] = STATE(29), - [sym_constructor_or_destructor_definition] = STATE(29), - [sym_reference_declarator] = STATE(4918), - [sym_structured_binding_declarator] = STATE(4918), - [sym_template_type] = STATE(3608), - [sym_template_function] = STATE(3494), - [sym_namespace_definition] = STATE(29), - [sym_namespace_alias_definition] = STATE(29), - [sym_using_declaration] = STATE(29), - [sym_alias_declaration] = STATE(29), - [sym_static_assert_declaration] = STATE(29), - [sym_concept_definition] = STATE(29), - [sym_for_range_loop] = STATE(29), - [sym_co_return_statement] = STATE(29), - [sym_co_yield_statement] = STATE(29), - [sym_throw_statement] = STATE(29), - [sym_try_statement] = STATE(29), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_destructor_name] = STATE(4918), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4460), - [sym_qualified_identifier] = STATE(2732), - [sym_qualified_type_identifier] = STATE(3593), - [sym_qualified_operator_cast_identifier] = STATE(5134), - [sym_operator_name] = STATE(4918), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_translation_unit_repeat1] = STATE(29), - [aux_sym__declaration_specifiers_repeat1] = STATE(2179), - [aux_sym_attributed_declarator_repeat1] = STATE(206), - [aux_sym_sized_type_specifier_repeat1] = STATE(3171), - [aux_sym_operator_cast_definition_repeat1] = STATE(1936), - [sym_identifier] = ACTIONS(147), - [aux_sym_preproc_include_token1] = ACTIONS(149), - [aux_sym_preproc_def_token1] = ACTIONS(151), - [aux_sym_preproc_if_token1] = ACTIONS(155), - [aux_sym_preproc_ifdef_token1] = ACTIONS(157), - [aux_sym_preproc_ifdef_token2] = ACTIONS(157), - [sym_preproc_directive] = ACTIONS(159), + [51] = { + [sym_preproc_include] = STATE(64), + [sym_preproc_def] = STATE(64), + [sym_preproc_function_def] = STATE(64), + [sym_preproc_call] = STATE(64), + [sym_preproc_if] = STATE(64), + [sym_preproc_ifdef] = STATE(64), + [sym_function_definition] = STATE(64), + [sym_declaration] = STATE(64), + [sym_type_definition] = STATE(64), + [sym__declaration_modifiers] = STATE(3706), + [sym__declaration_specifiers] = STATE(4618), + [sym_linkage_specification] = STATE(64), + [sym_attribute_specifier] = STATE(3706), + [sym_attribute_declaration] = STATE(1427), + [sym_ms_declspec_modifier] = STATE(3706), + [sym_ms_based_modifier] = STATE(7654), + [sym_ms_call_modifier] = STATE(2462), + [sym__declarator] = STATE(5881), + [sym_parenthesized_declarator] = STATE(5640), + [sym_attributed_declarator] = STATE(5640), + [sym_pointer_declarator] = STATE(5640), + [sym_function_declarator] = STATE(5588), + [sym_array_declarator] = STATE(5640), + [sym_compound_statement] = STATE(64), + [sym_storage_class_specifier] = STATE(3706), + [sym_type_qualifier] = STATE(3706), + [sym__type_specifier] = STATE(3826), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), + [sym_attributed_statement] = STATE(64), + [sym_labeled_statement] = STATE(64), + [sym_expression_statement] = STATE(64), + [sym_if_statement] = STATE(64), + [sym_switch_statement] = STATE(64), + [sym_case_statement] = STATE(64), + [sym_while_statement] = STATE(64), + [sym_do_statement] = STATE(64), + [sym_for_statement] = STATE(64), + [sym_return_statement] = STATE(64), + [sym_break_statement] = STATE(64), + [sym_continue_statement] = STATE(64), + [sym_goto_statement] = STATE(64), + [sym__expression] = STATE(4182), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7590), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym__empty_declaration] = STATE(64), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym__class_name] = STATE(6623), + [sym_virtual] = STATE(3706), + [sym_explicit_function_specifier] = STATE(2240), + [sym_dependent_type] = STATE(3723), + [sym_template_declaration] = STATE(64), + [sym_template_instantiation] = STATE(64), + [sym_operator_cast] = STATE(5937), + [sym__constructor_specifiers] = STATE(2240), + [sym_operator_cast_definition] = STATE(64), + [sym_operator_cast_declaration] = STATE(64), + [sym_constructor_or_destructor_definition] = STATE(64), + [sym_reference_declarator] = STATE(5640), + [sym_structured_binding_declarator] = STATE(5640), + [sym_template_type] = STATE(3921), + [sym_template_function] = STATE(4066), + [sym_namespace_definition] = STATE(64), + [sym_namespace_alias_definition] = STATE(64), + [sym_using_declaration] = STATE(64), + [sym_alias_declaration] = STATE(64), + [sym_static_assert_declaration] = STATE(64), + [sym_concept_definition] = STATE(64), + [sym_for_range_loop] = STATE(64), + [sym_co_return_statement] = STATE(64), + [sym_co_yield_statement] = STATE(64), + [sym_throw_statement] = STATE(64), + [sym_try_statement] = STATE(64), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_destructor_name] = STATE(5640), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5143), + [sym_qualified_identifier] = STATE(3249), + [sym_qualified_type_identifier] = STATE(3915), + [sym_qualified_operator_cast_identifier] = STATE(5937), + [sym_operator_name] = STATE(5640), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_preproc_if_repeat1] = STATE(64), + [aux_sym__declaration_specifiers_repeat1] = STATE(2514), + [aux_sym_attributed_declarator_repeat1] = STATE(309), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [aux_sym_operator_cast_definition_repeat1] = STATE(2240), + [sym_identifier] = ACTIONS(153), + [aux_sym_preproc_include_token1] = ACTIONS(155), + [aux_sym_preproc_def_token1] = ACTIONS(157), + [aux_sym_preproc_if_token1] = ACTIONS(161), + [aux_sym_preproc_ifdef_token1] = ACTIONS(163), + [aux_sym_preproc_ifdef_token2] = ACTIONS(163), + [sym_preproc_directive] = ACTIONS(165), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -38359,226 +54120,238 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_typedef] = ACTIONS(163), - [anon_sym_extern] = ACTIONS(165), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(43), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_RBRACE] = ACTIONS(859), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(173), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(61), - [anon_sym_unsigned] = ACTIONS(61), - [anon_sym_long] = ACTIONS(61), - [anon_sym_short] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(63), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(175), - [anon_sym_switch] = ACTIONS(177), - [anon_sym_case] = ACTIONS(179), - [anon_sym_default] = ACTIONS(181), - [anon_sym_while] = ACTIONS(183), - [anon_sym_do] = ACTIONS(185), - [anon_sym_for] = ACTIONS(187), - [anon_sym_return] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), - [anon_sym_goto] = ACTIONS(195), + [anon_sym_SEMI] = ACTIONS(167), + [anon_sym_typedef] = ACTIONS(169), + [anon_sym_extern] = ACTIONS(171), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(45), + [anon_sym___cdecl] = ACTIONS(47), + [anon_sym___clrcall] = ACTIONS(47), + [anon_sym___stdcall] = ACTIONS(47), + [anon_sym___fastcall] = ACTIONS(47), + [anon_sym___thiscall] = ACTIONS(47), + [anon_sym___vectorcall] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(738), + [anon_sym_RBRACE] = ACTIONS(766), + [anon_sym_LBRACK] = ACTIONS(51), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(179), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(181), + [anon_sym_switch] = ACTIONS(183), + [anon_sym_case] = ACTIONS(185), + [anon_sym_default] = ACTIONS(187), + [anon_sym_while] = ACTIONS(189), + [anon_sym_do] = ACTIONS(191), + [anon_sym_for] = ACTIONS(193), + [anon_sym_return] = ACTIONS(195), + [anon_sym_break] = ACTIONS(197), + [anon_sym_continue] = ACTIONS(199), + [anon_sym_goto] = ACTIONS(201), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(107), - [anon_sym_decltype] = ACTIONS(109), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_explicit] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(115), - [anon_sym_template] = ACTIONS(199), - [anon_sym_operator] = ACTIONS(119), - [anon_sym_try] = ACTIONS(201), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(203), - [anon_sym_namespace] = ACTIONS(205), - [anon_sym_using] = ACTIONS(207), - [anon_sym_static_assert] = ACTIONS(209), - [anon_sym_concept] = ACTIONS(211), - [anon_sym_co_return] = ACTIONS(213), - [anon_sym_co_yield] = ACTIONS(215), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(113), + [anon_sym_decltype] = ACTIONS(115), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_explicit] = ACTIONS(119), + [anon_sym_typename] = ACTIONS(121), + [anon_sym_template] = ACTIONS(207), + [anon_sym_operator] = ACTIONS(125), + [anon_sym_try] = ACTIONS(209), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(211), + [anon_sym_namespace] = ACTIONS(213), + [anon_sym_using] = ACTIONS(215), + [anon_sym_static_assert] = ACTIONS(217), + [anon_sym_concept] = ACTIONS(219), + [anon_sym_co_return] = ACTIONS(221), + [anon_sym_co_yield] = ACTIONS(223), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, - [63] = { - [sym_preproc_include] = STATE(62), - [sym_preproc_def] = STATE(62), - [sym_preproc_function_def] = STATE(62), - [sym_preproc_call] = STATE(62), - [sym_preproc_if] = STATE(62), - [sym_preproc_ifdef] = STATE(62), - [sym_function_definition] = STATE(62), - [sym_declaration] = STATE(62), - [sym_type_definition] = STATE(62), - [sym__declaration_modifiers] = STATE(3225), - [sym__declaration_specifiers] = STATE(3962), - [sym_linkage_specification] = STATE(62), - [sym_attribute_specifier] = STATE(3225), - [sym_attribute_declaration] = STATE(1136), - [sym_ms_declspec_modifier] = STATE(3225), - [sym_ms_based_modifier] = STATE(6104), - [sym_ms_call_modifier] = STATE(2065), - [sym__declarator] = STATE(5113), - [sym_parenthesized_declarator] = STATE(4918), - [sym_attributed_declarator] = STATE(4918), - [sym_pointer_declarator] = STATE(4918), - [sym_function_declarator] = STATE(4870), - [sym_array_declarator] = STATE(4918), - [sym_compound_statement] = STATE(62), - [sym_storage_class_specifier] = STATE(3225), - [sym_type_qualifier] = STATE(3225), - [sym__type_specifier] = STATE(3322), - [sym_sized_type_specifier] = STATE(3232), - [sym_enum_specifier] = STATE(3232), - [sym_struct_specifier] = STATE(3232), - [sym_union_specifier] = STATE(3232), - [sym_attributed_statement] = STATE(62), - [sym_labeled_statement] = STATE(62), - [sym_expression_statement] = STATE(62), - [sym_if_statement] = STATE(62), - [sym_switch_statement] = STATE(62), - [sym_case_statement] = STATE(62), - [sym_while_statement] = STATE(62), - [sym_do_statement] = STATE(62), - [sym_for_statement] = STATE(62), - [sym_return_statement] = STATE(62), - [sym_break_statement] = STATE(62), - [sym_continue_statement] = STATE(62), - [sym_goto_statement] = STATE(62), - [sym__expression] = STATE(3502), - [sym_comma_expression] = STATE(6595), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym__empty_declaration] = STATE(62), - [sym_placeholder_type_specifier] = STATE(3232), - [sym_decltype_auto] = STATE(3279), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3232), - [sym__class_name] = STATE(5753), - [sym_virtual] = STATE(3225), - [sym_explicit_function_specifier] = STATE(1936), - [sym_dependent_type] = STATE(3232), - [sym_template_declaration] = STATE(62), - [sym_template_instantiation] = STATE(62), - [sym_operator_cast] = STATE(5134), - [sym__constructor_specifiers] = STATE(1936), - [sym_operator_cast_definition] = STATE(62), - [sym_operator_cast_declaration] = STATE(62), - [sym_constructor_or_destructor_definition] = STATE(62), - [sym_reference_declarator] = STATE(4918), - [sym_structured_binding_declarator] = STATE(4918), - [sym_template_type] = STATE(3608), - [sym_template_function] = STATE(3494), - [sym_namespace_definition] = STATE(62), - [sym_namespace_alias_definition] = STATE(62), - [sym_using_declaration] = STATE(62), - [sym_alias_declaration] = STATE(62), - [sym_static_assert_declaration] = STATE(62), - [sym_concept_definition] = STATE(62), - [sym_for_range_loop] = STATE(62), - [sym_co_return_statement] = STATE(62), - [sym_co_yield_statement] = STATE(62), - [sym_throw_statement] = STATE(62), - [sym_try_statement] = STATE(62), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_destructor_name] = STATE(4918), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4460), - [sym_qualified_identifier] = STATE(2732), - [sym_qualified_type_identifier] = STATE(3593), - [sym_qualified_operator_cast_identifier] = STATE(5134), - [sym_operator_name] = STATE(4918), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_translation_unit_repeat1] = STATE(62), - [aux_sym__declaration_specifiers_repeat1] = STATE(2179), - [aux_sym_attributed_declarator_repeat1] = STATE(206), - [aux_sym_sized_type_specifier_repeat1] = STATE(3171), - [aux_sym_operator_cast_definition_repeat1] = STATE(1936), - [sym_identifier] = ACTIONS(147), - [aux_sym_preproc_include_token1] = ACTIONS(149), - [aux_sym_preproc_def_token1] = ACTIONS(151), - [aux_sym_preproc_if_token1] = ACTIONS(155), - [aux_sym_preproc_ifdef_token1] = ACTIONS(157), - [aux_sym_preproc_ifdef_token2] = ACTIONS(157), - [sym_preproc_directive] = ACTIONS(159), + [52] = { + [sym_preproc_include] = STATE(51), + [sym_preproc_def] = STATE(51), + [sym_preproc_function_def] = STATE(51), + [sym_preproc_call] = STATE(51), + [sym_preproc_if] = STATE(51), + [sym_preproc_ifdef] = STATE(51), + [sym_function_definition] = STATE(51), + [sym_declaration] = STATE(51), + [sym_type_definition] = STATE(51), + [sym__declaration_modifiers] = STATE(3706), + [sym__declaration_specifiers] = STATE(4618), + [sym_linkage_specification] = STATE(51), + [sym_attribute_specifier] = STATE(3706), + [sym_attribute_declaration] = STATE(1427), + [sym_ms_declspec_modifier] = STATE(3706), + [sym_ms_based_modifier] = STATE(7654), + [sym_ms_call_modifier] = STATE(2462), + [sym__declarator] = STATE(5881), + [sym_parenthesized_declarator] = STATE(5640), + [sym_attributed_declarator] = STATE(5640), + [sym_pointer_declarator] = STATE(5640), + [sym_function_declarator] = STATE(5588), + [sym_array_declarator] = STATE(5640), + [sym_compound_statement] = STATE(51), + [sym_storage_class_specifier] = STATE(3706), + [sym_type_qualifier] = STATE(3706), + [sym__type_specifier] = STATE(3826), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), + [sym_attributed_statement] = STATE(51), + [sym_labeled_statement] = STATE(51), + [sym_expression_statement] = STATE(51), + [sym_if_statement] = STATE(51), + [sym_switch_statement] = STATE(51), + [sym_case_statement] = STATE(51), + [sym_while_statement] = STATE(51), + [sym_do_statement] = STATE(51), + [sym_for_statement] = STATE(51), + [sym_return_statement] = STATE(51), + [sym_break_statement] = STATE(51), + [sym_continue_statement] = STATE(51), + [sym_goto_statement] = STATE(51), + [sym__expression] = STATE(4182), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7590), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym__empty_declaration] = STATE(51), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym__class_name] = STATE(6623), + [sym_virtual] = STATE(3706), + [sym_explicit_function_specifier] = STATE(2240), + [sym_dependent_type] = STATE(3723), + [sym_template_declaration] = STATE(51), + [sym_template_instantiation] = STATE(51), + [sym_operator_cast] = STATE(5937), + [sym__constructor_specifiers] = STATE(2240), + [sym_operator_cast_definition] = STATE(51), + [sym_operator_cast_declaration] = STATE(51), + [sym_constructor_or_destructor_definition] = STATE(51), + [sym_reference_declarator] = STATE(5640), + [sym_structured_binding_declarator] = STATE(5640), + [sym_template_type] = STATE(3921), + [sym_template_function] = STATE(4066), + [sym_namespace_definition] = STATE(51), + [sym_namespace_alias_definition] = STATE(51), + [sym_using_declaration] = STATE(51), + [sym_alias_declaration] = STATE(51), + [sym_static_assert_declaration] = STATE(51), + [sym_concept_definition] = STATE(51), + [sym_for_range_loop] = STATE(51), + [sym_co_return_statement] = STATE(51), + [sym_co_yield_statement] = STATE(51), + [sym_throw_statement] = STATE(51), + [sym_try_statement] = STATE(51), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_destructor_name] = STATE(5640), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5143), + [sym_qualified_identifier] = STATE(3249), + [sym_qualified_type_identifier] = STATE(3915), + [sym_qualified_operator_cast_identifier] = STATE(5937), + [sym_operator_name] = STATE(5640), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_preproc_if_repeat1] = STATE(51), + [aux_sym__declaration_specifiers_repeat1] = STATE(2514), + [aux_sym_attributed_declarator_repeat1] = STATE(309), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [aux_sym_operator_cast_definition_repeat1] = STATE(2240), + [sym_identifier] = ACTIONS(153), + [aux_sym_preproc_include_token1] = ACTIONS(155), + [aux_sym_preproc_def_token1] = ACTIONS(157), + [aux_sym_preproc_if_token1] = ACTIONS(161), + [aux_sym_preproc_ifdef_token1] = ACTIONS(163), + [aux_sym_preproc_ifdef_token2] = ACTIONS(163), + [sym_preproc_directive] = ACTIONS(165), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -38587,226 +54360,238 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_typedef] = ACTIONS(163), - [anon_sym_extern] = ACTIONS(165), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(43), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_RBRACE] = ACTIONS(861), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(173), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(61), - [anon_sym_unsigned] = ACTIONS(61), - [anon_sym_long] = ACTIONS(61), - [anon_sym_short] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(63), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(175), - [anon_sym_switch] = ACTIONS(177), - [anon_sym_case] = ACTIONS(179), - [anon_sym_default] = ACTIONS(181), - [anon_sym_while] = ACTIONS(183), - [anon_sym_do] = ACTIONS(185), - [anon_sym_for] = ACTIONS(187), - [anon_sym_return] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), - [anon_sym_goto] = ACTIONS(195), + [anon_sym_SEMI] = ACTIONS(167), + [anon_sym_typedef] = ACTIONS(169), + [anon_sym_extern] = ACTIONS(171), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(45), + [anon_sym___cdecl] = ACTIONS(47), + [anon_sym___clrcall] = ACTIONS(47), + [anon_sym___stdcall] = ACTIONS(47), + [anon_sym___fastcall] = ACTIONS(47), + [anon_sym___thiscall] = ACTIONS(47), + [anon_sym___vectorcall] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(738), + [anon_sym_RBRACE] = ACTIONS(768), + [anon_sym_LBRACK] = ACTIONS(51), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(179), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(181), + [anon_sym_switch] = ACTIONS(183), + [anon_sym_case] = ACTIONS(185), + [anon_sym_default] = ACTIONS(187), + [anon_sym_while] = ACTIONS(189), + [anon_sym_do] = ACTIONS(191), + [anon_sym_for] = ACTIONS(193), + [anon_sym_return] = ACTIONS(195), + [anon_sym_break] = ACTIONS(197), + [anon_sym_continue] = ACTIONS(199), + [anon_sym_goto] = ACTIONS(201), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(107), - [anon_sym_decltype] = ACTIONS(109), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_explicit] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(115), - [anon_sym_template] = ACTIONS(199), - [anon_sym_operator] = ACTIONS(119), - [anon_sym_try] = ACTIONS(201), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(203), - [anon_sym_namespace] = ACTIONS(205), - [anon_sym_using] = ACTIONS(207), - [anon_sym_static_assert] = ACTIONS(209), - [anon_sym_concept] = ACTIONS(211), - [anon_sym_co_return] = ACTIONS(213), - [anon_sym_co_yield] = ACTIONS(215), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(113), + [anon_sym_decltype] = ACTIONS(115), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_explicit] = ACTIONS(119), + [anon_sym_typename] = ACTIONS(121), + [anon_sym_template] = ACTIONS(207), + [anon_sym_operator] = ACTIONS(125), + [anon_sym_try] = ACTIONS(209), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(211), + [anon_sym_namespace] = ACTIONS(213), + [anon_sym_using] = ACTIONS(215), + [anon_sym_static_assert] = ACTIONS(217), + [anon_sym_concept] = ACTIONS(219), + [anon_sym_co_return] = ACTIONS(221), + [anon_sym_co_yield] = ACTIONS(223), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, - [64] = { - [sym_preproc_include] = STATE(29), - [sym_preproc_def] = STATE(29), - [sym_preproc_function_def] = STATE(29), - [sym_preproc_call] = STATE(29), - [sym_preproc_if] = STATE(29), - [sym_preproc_ifdef] = STATE(29), - [sym_function_definition] = STATE(29), - [sym_declaration] = STATE(29), - [sym_type_definition] = STATE(29), - [sym__declaration_modifiers] = STATE(3225), - [sym__declaration_specifiers] = STATE(3962), - [sym_linkage_specification] = STATE(29), - [sym_attribute_specifier] = STATE(3225), - [sym_attribute_declaration] = STATE(1136), - [sym_ms_declspec_modifier] = STATE(3225), - [sym_ms_based_modifier] = STATE(6104), - [sym_ms_call_modifier] = STATE(2065), - [sym__declarator] = STATE(5113), - [sym_parenthesized_declarator] = STATE(4918), - [sym_attributed_declarator] = STATE(4918), - [sym_pointer_declarator] = STATE(4918), - [sym_function_declarator] = STATE(4870), - [sym_array_declarator] = STATE(4918), - [sym_compound_statement] = STATE(29), - [sym_storage_class_specifier] = STATE(3225), - [sym_type_qualifier] = STATE(3225), - [sym__type_specifier] = STATE(3322), - [sym_sized_type_specifier] = STATE(3232), - [sym_enum_specifier] = STATE(3232), - [sym_struct_specifier] = STATE(3232), - [sym_union_specifier] = STATE(3232), - [sym_attributed_statement] = STATE(29), - [sym_labeled_statement] = STATE(29), - [sym_expression_statement] = STATE(29), - [sym_if_statement] = STATE(29), - [sym_switch_statement] = STATE(29), - [sym_case_statement] = STATE(29), - [sym_while_statement] = STATE(29), - [sym_do_statement] = STATE(29), - [sym_for_statement] = STATE(29), - [sym_return_statement] = STATE(29), - [sym_break_statement] = STATE(29), - [sym_continue_statement] = STATE(29), - [sym_goto_statement] = STATE(29), - [sym__expression] = STATE(3502), - [sym_comma_expression] = STATE(6595), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym__empty_declaration] = STATE(29), - [sym_placeholder_type_specifier] = STATE(3232), - [sym_decltype_auto] = STATE(3279), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3232), - [sym__class_name] = STATE(5753), - [sym_virtual] = STATE(3225), - [sym_explicit_function_specifier] = STATE(1936), - [sym_dependent_type] = STATE(3232), - [sym_template_declaration] = STATE(29), - [sym_template_instantiation] = STATE(29), - [sym_operator_cast] = STATE(5134), - [sym__constructor_specifiers] = STATE(1936), - [sym_operator_cast_definition] = STATE(29), - [sym_operator_cast_declaration] = STATE(29), - [sym_constructor_or_destructor_definition] = STATE(29), - [sym_reference_declarator] = STATE(4918), - [sym_structured_binding_declarator] = STATE(4918), - [sym_template_type] = STATE(3608), - [sym_template_function] = STATE(3494), - [sym_namespace_definition] = STATE(29), - [sym_namespace_alias_definition] = STATE(29), - [sym_using_declaration] = STATE(29), - [sym_alias_declaration] = STATE(29), - [sym_static_assert_declaration] = STATE(29), - [sym_concept_definition] = STATE(29), - [sym_for_range_loop] = STATE(29), - [sym_co_return_statement] = STATE(29), - [sym_co_yield_statement] = STATE(29), - [sym_throw_statement] = STATE(29), - [sym_try_statement] = STATE(29), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_destructor_name] = STATE(4918), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4460), - [sym_qualified_identifier] = STATE(2732), - [sym_qualified_type_identifier] = STATE(3593), - [sym_qualified_operator_cast_identifier] = STATE(5134), - [sym_operator_name] = STATE(4918), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_translation_unit_repeat1] = STATE(29), - [aux_sym__declaration_specifiers_repeat1] = STATE(2179), - [aux_sym_attributed_declarator_repeat1] = STATE(206), - [aux_sym_sized_type_specifier_repeat1] = STATE(3171), - [aux_sym_operator_cast_definition_repeat1] = STATE(1936), - [sym_identifier] = ACTIONS(147), - [aux_sym_preproc_include_token1] = ACTIONS(149), - [aux_sym_preproc_def_token1] = ACTIONS(151), - [aux_sym_preproc_if_token1] = ACTIONS(155), - [aux_sym_preproc_ifdef_token1] = ACTIONS(157), - [aux_sym_preproc_ifdef_token2] = ACTIONS(157), - [sym_preproc_directive] = ACTIONS(159), + [53] = { + [sym_preproc_include] = STATE(54), + [sym_preproc_def] = STATE(54), + [sym_preproc_function_def] = STATE(54), + [sym_preproc_call] = STATE(54), + [sym_preproc_if] = STATE(54), + [sym_preproc_ifdef] = STATE(54), + [sym_function_definition] = STATE(54), + [sym_declaration] = STATE(54), + [sym_type_definition] = STATE(54), + [sym__declaration_modifiers] = STATE(3706), + [sym__declaration_specifiers] = STATE(4618), + [sym_linkage_specification] = STATE(54), + [sym_attribute_specifier] = STATE(3706), + [sym_attribute_declaration] = STATE(1427), + [sym_ms_declspec_modifier] = STATE(3706), + [sym_ms_based_modifier] = STATE(7654), + [sym_ms_call_modifier] = STATE(2462), + [sym__declarator] = STATE(5881), + [sym_parenthesized_declarator] = STATE(5640), + [sym_attributed_declarator] = STATE(5640), + [sym_pointer_declarator] = STATE(5640), + [sym_function_declarator] = STATE(5588), + [sym_array_declarator] = STATE(5640), + [sym_compound_statement] = STATE(54), + [sym_storage_class_specifier] = STATE(3706), + [sym_type_qualifier] = STATE(3706), + [sym__type_specifier] = STATE(3826), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), + [sym_attributed_statement] = STATE(54), + [sym_labeled_statement] = STATE(54), + [sym_expression_statement] = STATE(54), + [sym_if_statement] = STATE(54), + [sym_switch_statement] = STATE(54), + [sym_case_statement] = STATE(54), + [sym_while_statement] = STATE(54), + [sym_do_statement] = STATE(54), + [sym_for_statement] = STATE(54), + [sym_return_statement] = STATE(54), + [sym_break_statement] = STATE(54), + [sym_continue_statement] = STATE(54), + [sym_goto_statement] = STATE(54), + [sym__expression] = STATE(4182), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7590), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym__empty_declaration] = STATE(54), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym__class_name] = STATE(6623), + [sym_virtual] = STATE(3706), + [sym_explicit_function_specifier] = STATE(2240), + [sym_dependent_type] = STATE(3723), + [sym_template_declaration] = STATE(54), + [sym_template_instantiation] = STATE(54), + [sym_operator_cast] = STATE(5937), + [sym__constructor_specifiers] = STATE(2240), + [sym_operator_cast_definition] = STATE(54), + [sym_operator_cast_declaration] = STATE(54), + [sym_constructor_or_destructor_definition] = STATE(54), + [sym_reference_declarator] = STATE(5640), + [sym_structured_binding_declarator] = STATE(5640), + [sym_template_type] = STATE(3921), + [sym_template_function] = STATE(4066), + [sym_namespace_definition] = STATE(54), + [sym_namespace_alias_definition] = STATE(54), + [sym_using_declaration] = STATE(54), + [sym_alias_declaration] = STATE(54), + [sym_static_assert_declaration] = STATE(54), + [sym_concept_definition] = STATE(54), + [sym_for_range_loop] = STATE(54), + [sym_co_return_statement] = STATE(54), + [sym_co_yield_statement] = STATE(54), + [sym_throw_statement] = STATE(54), + [sym_try_statement] = STATE(54), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_destructor_name] = STATE(5640), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5143), + [sym_qualified_identifier] = STATE(3249), + [sym_qualified_type_identifier] = STATE(3915), + [sym_qualified_operator_cast_identifier] = STATE(5937), + [sym_operator_name] = STATE(5640), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_preproc_if_repeat1] = STATE(54), + [aux_sym__declaration_specifiers_repeat1] = STATE(2514), + [aux_sym_attributed_declarator_repeat1] = STATE(309), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [aux_sym_operator_cast_definition_repeat1] = STATE(2240), + [sym_identifier] = ACTIONS(153), + [aux_sym_preproc_include_token1] = ACTIONS(155), + [aux_sym_preproc_def_token1] = ACTIONS(157), + [aux_sym_preproc_if_token1] = ACTIONS(161), + [aux_sym_preproc_ifdef_token1] = ACTIONS(163), + [aux_sym_preproc_ifdef_token2] = ACTIONS(163), + [sym_preproc_directive] = ACTIONS(165), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -38815,103 +54600,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_typedef] = ACTIONS(163), - [anon_sym_extern] = ACTIONS(165), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(43), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_RBRACE] = ACTIONS(863), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(173), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(61), - [anon_sym_unsigned] = ACTIONS(61), - [anon_sym_long] = ACTIONS(61), - [anon_sym_short] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(63), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(175), - [anon_sym_switch] = ACTIONS(177), - [anon_sym_case] = ACTIONS(179), - [anon_sym_default] = ACTIONS(181), - [anon_sym_while] = ACTIONS(183), - [anon_sym_do] = ACTIONS(185), - [anon_sym_for] = ACTIONS(187), - [anon_sym_return] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), - [anon_sym_goto] = ACTIONS(195), + [anon_sym_SEMI] = ACTIONS(167), + [anon_sym_typedef] = ACTIONS(169), + [anon_sym_extern] = ACTIONS(171), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(45), + [anon_sym___cdecl] = ACTIONS(47), + [anon_sym___clrcall] = ACTIONS(47), + [anon_sym___stdcall] = ACTIONS(47), + [anon_sym___fastcall] = ACTIONS(47), + [anon_sym___thiscall] = ACTIONS(47), + [anon_sym___vectorcall] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(738), + [anon_sym_RBRACE] = ACTIONS(770), + [anon_sym_LBRACK] = ACTIONS(51), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(179), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(181), + [anon_sym_switch] = ACTIONS(183), + [anon_sym_case] = ACTIONS(185), + [anon_sym_default] = ACTIONS(187), + [anon_sym_while] = ACTIONS(189), + [anon_sym_do] = ACTIONS(191), + [anon_sym_for] = ACTIONS(193), + [anon_sym_return] = ACTIONS(195), + [anon_sym_break] = ACTIONS(197), + [anon_sym_continue] = ACTIONS(199), + [anon_sym_goto] = ACTIONS(201), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(107), - [anon_sym_decltype] = ACTIONS(109), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_explicit] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(115), - [anon_sym_template] = ACTIONS(199), - [anon_sym_operator] = ACTIONS(119), - [anon_sym_try] = ACTIONS(201), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(203), - [anon_sym_namespace] = ACTIONS(205), - [anon_sym_using] = ACTIONS(207), - [anon_sym_static_assert] = ACTIONS(209), - [anon_sym_concept] = ACTIONS(211), - [anon_sym_co_return] = ACTIONS(213), - [anon_sym_co_yield] = ACTIONS(215), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(113), + [anon_sym_decltype] = ACTIONS(115), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_explicit] = ACTIONS(119), + [anon_sym_typename] = ACTIONS(121), + [anon_sym_template] = ACTIONS(207), + [anon_sym_operator] = ACTIONS(125), + [anon_sym_try] = ACTIONS(209), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(211), + [anon_sym_namespace] = ACTIONS(213), + [anon_sym_using] = ACTIONS(215), + [anon_sym_static_assert] = ACTIONS(217), + [anon_sym_concept] = ACTIONS(219), + [anon_sym_co_return] = ACTIONS(221), + [anon_sym_co_yield] = ACTIONS(223), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, - [65] = { + [54] = { [sym_preproc_include] = STATE(64), [sym_preproc_def] = STATE(64), [sym_preproc_function_def] = STATE(64), @@ -38921,28 +54713,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_definition] = STATE(64), [sym_declaration] = STATE(64), [sym_type_definition] = STATE(64), - [sym__declaration_modifiers] = STATE(3225), - [sym__declaration_specifiers] = STATE(3962), + [sym__declaration_modifiers] = STATE(3706), + [sym__declaration_specifiers] = STATE(4618), [sym_linkage_specification] = STATE(64), - [sym_attribute_specifier] = STATE(3225), - [sym_attribute_declaration] = STATE(1136), - [sym_ms_declspec_modifier] = STATE(3225), - [sym_ms_based_modifier] = STATE(6104), - [sym_ms_call_modifier] = STATE(2065), - [sym__declarator] = STATE(5113), - [sym_parenthesized_declarator] = STATE(4918), - [sym_attributed_declarator] = STATE(4918), - [sym_pointer_declarator] = STATE(4918), - [sym_function_declarator] = STATE(4870), - [sym_array_declarator] = STATE(4918), + [sym_attribute_specifier] = STATE(3706), + [sym_attribute_declaration] = STATE(1427), + [sym_ms_declspec_modifier] = STATE(3706), + [sym_ms_based_modifier] = STATE(7654), + [sym_ms_call_modifier] = STATE(2462), + [sym__declarator] = STATE(5881), + [sym_parenthesized_declarator] = STATE(5640), + [sym_attributed_declarator] = STATE(5640), + [sym_pointer_declarator] = STATE(5640), + [sym_function_declarator] = STATE(5588), + [sym_array_declarator] = STATE(5640), [sym_compound_statement] = STATE(64), - [sym_storage_class_specifier] = STATE(3225), - [sym_type_qualifier] = STATE(3225), - [sym__type_specifier] = STATE(3322), - [sym_sized_type_specifier] = STATE(3232), - [sym_enum_specifier] = STATE(3232), - [sym_struct_specifier] = STATE(3232), - [sym_union_specifier] = STATE(3232), + [sym_storage_class_specifier] = STATE(3706), + [sym_type_qualifier] = STATE(3706), + [sym__type_specifier] = STATE(3826), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), [sym_attributed_statement] = STATE(64), [sym_labeled_statement] = STATE(64), [sym_expression_statement] = STATE(64), @@ -38956,44 +54748,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(64), [sym_continue_statement] = STATE(64), [sym_goto_statement] = STATE(64), - [sym__expression] = STATE(3502), - [sym_comma_expression] = STATE(6595), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), + [sym__expression] = STATE(4182), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7590), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), [sym__empty_declaration] = STATE(64), - [sym_placeholder_type_specifier] = STATE(3232), - [sym_decltype_auto] = STATE(3279), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3232), - [sym__class_name] = STATE(5753), - [sym_virtual] = STATE(3225), - [sym_explicit_function_specifier] = STATE(1936), - [sym_dependent_type] = STATE(3232), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym__class_name] = STATE(6623), + [sym_virtual] = STATE(3706), + [sym_explicit_function_specifier] = STATE(2240), + [sym_dependent_type] = STATE(3723), [sym_template_declaration] = STATE(64), [sym_template_instantiation] = STATE(64), - [sym_operator_cast] = STATE(5134), - [sym__constructor_specifiers] = STATE(1936), + [sym_operator_cast] = STATE(5937), + [sym__constructor_specifiers] = STATE(2240), [sym_operator_cast_definition] = STATE(64), [sym_operator_cast_declaration] = STATE(64), [sym_constructor_or_destructor_definition] = STATE(64), - [sym_reference_declarator] = STATE(4918), - [sym_structured_binding_declarator] = STATE(4918), - [sym_template_type] = STATE(3608), - [sym_template_function] = STATE(3494), + [sym_reference_declarator] = STATE(5640), + [sym_structured_binding_declarator] = STATE(5640), + [sym_template_type] = STATE(3921), + [sym_template_function] = STATE(4066), [sym_namespace_definition] = STATE(64), [sym_namespace_alias_definition] = STATE(64), [sym_using_declaration] = STATE(64), @@ -39005,36 +54802,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_co_yield_statement] = STATE(64), [sym_throw_statement] = STATE(64), [sym_try_statement] = STATE(64), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_destructor_name] = STATE(4918), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4460), - [sym_qualified_identifier] = STATE(2732), - [sym_qualified_type_identifier] = STATE(3593), - [sym_qualified_operator_cast_identifier] = STATE(5134), - [sym_operator_name] = STATE(4918), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_translation_unit_repeat1] = STATE(64), - [aux_sym__declaration_specifiers_repeat1] = STATE(2179), - [aux_sym_attributed_declarator_repeat1] = STATE(206), - [aux_sym_sized_type_specifier_repeat1] = STATE(3171), - [aux_sym_operator_cast_definition_repeat1] = STATE(1936), - [sym_identifier] = ACTIONS(147), - [aux_sym_preproc_include_token1] = ACTIONS(149), - [aux_sym_preproc_def_token1] = ACTIONS(151), - [aux_sym_preproc_if_token1] = ACTIONS(155), - [aux_sym_preproc_ifdef_token1] = ACTIONS(157), - [aux_sym_preproc_ifdef_token2] = ACTIONS(157), - [sym_preproc_directive] = ACTIONS(159), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_destructor_name] = STATE(5640), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5143), + [sym_qualified_identifier] = STATE(3249), + [sym_qualified_type_identifier] = STATE(3915), + [sym_qualified_operator_cast_identifier] = STATE(5937), + [sym_operator_name] = STATE(5640), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_preproc_if_repeat1] = STATE(64), + [aux_sym__declaration_specifiers_repeat1] = STATE(2514), + [aux_sym_attributed_declarator_repeat1] = STATE(309), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [aux_sym_operator_cast_definition_repeat1] = STATE(2240), + [sym_identifier] = ACTIONS(153), + [aux_sym_preproc_include_token1] = ACTIONS(155), + [aux_sym_preproc_def_token1] = ACTIONS(157), + [aux_sym_preproc_if_token1] = ACTIONS(161), + [aux_sym_preproc_ifdef_token1] = ACTIONS(163), + [aux_sym_preproc_ifdef_token2] = ACTIONS(163), + [sym_preproc_directive] = ACTIONS(165), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -39043,226 +54840,238 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_typedef] = ACTIONS(163), - [anon_sym_extern] = ACTIONS(165), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(43), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_RBRACE] = ACTIONS(865), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(173), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(61), - [anon_sym_unsigned] = ACTIONS(61), - [anon_sym_long] = ACTIONS(61), - [anon_sym_short] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(63), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(175), - [anon_sym_switch] = ACTIONS(177), - [anon_sym_case] = ACTIONS(179), - [anon_sym_default] = ACTIONS(181), - [anon_sym_while] = ACTIONS(183), - [anon_sym_do] = ACTIONS(185), - [anon_sym_for] = ACTIONS(187), - [anon_sym_return] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), - [anon_sym_goto] = ACTIONS(195), + [anon_sym_SEMI] = ACTIONS(167), + [anon_sym_typedef] = ACTIONS(169), + [anon_sym_extern] = ACTIONS(171), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(45), + [anon_sym___cdecl] = ACTIONS(47), + [anon_sym___clrcall] = ACTIONS(47), + [anon_sym___stdcall] = ACTIONS(47), + [anon_sym___fastcall] = ACTIONS(47), + [anon_sym___thiscall] = ACTIONS(47), + [anon_sym___vectorcall] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(738), + [anon_sym_RBRACE] = ACTIONS(772), + [anon_sym_LBRACK] = ACTIONS(51), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(179), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(181), + [anon_sym_switch] = ACTIONS(183), + [anon_sym_case] = ACTIONS(185), + [anon_sym_default] = ACTIONS(187), + [anon_sym_while] = ACTIONS(189), + [anon_sym_do] = ACTIONS(191), + [anon_sym_for] = ACTIONS(193), + [anon_sym_return] = ACTIONS(195), + [anon_sym_break] = ACTIONS(197), + [anon_sym_continue] = ACTIONS(199), + [anon_sym_goto] = ACTIONS(201), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(107), - [anon_sym_decltype] = ACTIONS(109), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_explicit] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(115), - [anon_sym_template] = ACTIONS(199), - [anon_sym_operator] = ACTIONS(119), - [anon_sym_try] = ACTIONS(201), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(203), - [anon_sym_namespace] = ACTIONS(205), - [anon_sym_using] = ACTIONS(207), - [anon_sym_static_assert] = ACTIONS(209), - [anon_sym_concept] = ACTIONS(211), - [anon_sym_co_return] = ACTIONS(213), - [anon_sym_co_yield] = ACTIONS(215), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(113), + [anon_sym_decltype] = ACTIONS(115), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_explicit] = ACTIONS(119), + [anon_sym_typename] = ACTIONS(121), + [anon_sym_template] = ACTIONS(207), + [anon_sym_operator] = ACTIONS(125), + [anon_sym_try] = ACTIONS(209), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(211), + [anon_sym_namespace] = ACTIONS(213), + [anon_sym_using] = ACTIONS(215), + [anon_sym_static_assert] = ACTIONS(217), + [anon_sym_concept] = ACTIONS(219), + [anon_sym_co_return] = ACTIONS(221), + [anon_sym_co_yield] = ACTIONS(223), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, - [66] = { - [sym_preproc_include] = STATE(29), - [sym_preproc_def] = STATE(29), - [sym_preproc_function_def] = STATE(29), - [sym_preproc_call] = STATE(29), - [sym_preproc_if] = STATE(29), - [sym_preproc_ifdef] = STATE(29), - [sym_function_definition] = STATE(29), - [sym_declaration] = STATE(29), - [sym_type_definition] = STATE(29), - [sym__declaration_modifiers] = STATE(3225), - [sym__declaration_specifiers] = STATE(3962), - [sym_linkage_specification] = STATE(29), - [sym_attribute_specifier] = STATE(3225), - [sym_attribute_declaration] = STATE(1136), - [sym_ms_declspec_modifier] = STATE(3225), - [sym_ms_based_modifier] = STATE(6104), - [sym_ms_call_modifier] = STATE(2065), - [sym__declarator] = STATE(5113), - [sym_parenthesized_declarator] = STATE(4918), - [sym_attributed_declarator] = STATE(4918), - [sym_pointer_declarator] = STATE(4918), - [sym_function_declarator] = STATE(4870), - [sym_array_declarator] = STATE(4918), - [sym_compound_statement] = STATE(29), - [sym_storage_class_specifier] = STATE(3225), - [sym_type_qualifier] = STATE(3225), - [sym__type_specifier] = STATE(3322), - [sym_sized_type_specifier] = STATE(3232), - [sym_enum_specifier] = STATE(3232), - [sym_struct_specifier] = STATE(3232), - [sym_union_specifier] = STATE(3232), - [sym_attributed_statement] = STATE(29), - [sym_labeled_statement] = STATE(29), - [sym_expression_statement] = STATE(29), - [sym_if_statement] = STATE(29), - [sym_switch_statement] = STATE(29), - [sym_case_statement] = STATE(29), - [sym_while_statement] = STATE(29), - [sym_do_statement] = STATE(29), - [sym_for_statement] = STATE(29), - [sym_return_statement] = STATE(29), - [sym_break_statement] = STATE(29), - [sym_continue_statement] = STATE(29), - [sym_goto_statement] = STATE(29), - [sym__expression] = STATE(3502), - [sym_comma_expression] = STATE(6595), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym__empty_declaration] = STATE(29), - [sym_placeholder_type_specifier] = STATE(3232), - [sym_decltype_auto] = STATE(3279), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3232), - [sym__class_name] = STATE(5753), - [sym_virtual] = STATE(3225), - [sym_explicit_function_specifier] = STATE(1936), - [sym_dependent_type] = STATE(3232), - [sym_template_declaration] = STATE(29), - [sym_template_instantiation] = STATE(29), - [sym_operator_cast] = STATE(5134), - [sym__constructor_specifiers] = STATE(1936), - [sym_operator_cast_definition] = STATE(29), - [sym_operator_cast_declaration] = STATE(29), - [sym_constructor_or_destructor_definition] = STATE(29), - [sym_reference_declarator] = STATE(4918), - [sym_structured_binding_declarator] = STATE(4918), - [sym_template_type] = STATE(3608), - [sym_template_function] = STATE(3494), - [sym_namespace_definition] = STATE(29), - [sym_namespace_alias_definition] = STATE(29), - [sym_using_declaration] = STATE(29), - [sym_alias_declaration] = STATE(29), - [sym_static_assert_declaration] = STATE(29), - [sym_concept_definition] = STATE(29), - [sym_for_range_loop] = STATE(29), - [sym_co_return_statement] = STATE(29), - [sym_co_yield_statement] = STATE(29), - [sym_throw_statement] = STATE(29), - [sym_try_statement] = STATE(29), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_destructor_name] = STATE(4918), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4460), - [sym_qualified_identifier] = STATE(2732), - [sym_qualified_type_identifier] = STATE(3593), - [sym_qualified_operator_cast_identifier] = STATE(5134), - [sym_operator_name] = STATE(4918), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_translation_unit_repeat1] = STATE(29), - [aux_sym__declaration_specifiers_repeat1] = STATE(2179), - [aux_sym_attributed_declarator_repeat1] = STATE(206), - [aux_sym_sized_type_specifier_repeat1] = STATE(3171), - [aux_sym_operator_cast_definition_repeat1] = STATE(1936), - [sym_identifier] = ACTIONS(147), - [aux_sym_preproc_include_token1] = ACTIONS(149), - [aux_sym_preproc_def_token1] = ACTIONS(151), - [aux_sym_preproc_if_token1] = ACTIONS(155), - [aux_sym_preproc_ifdef_token1] = ACTIONS(157), - [aux_sym_preproc_ifdef_token2] = ACTIONS(157), - [sym_preproc_directive] = ACTIONS(159), + [55] = { + [sym_preproc_include] = STATE(71), + [sym_preproc_def] = STATE(71), + [sym_preproc_function_def] = STATE(71), + [sym_preproc_call] = STATE(71), + [sym_preproc_if] = STATE(71), + [sym_preproc_ifdef] = STATE(71), + [sym_function_definition] = STATE(71), + [sym_declaration] = STATE(71), + [sym_type_definition] = STATE(71), + [sym__declaration_modifiers] = STATE(3706), + [sym__declaration_specifiers] = STATE(4618), + [sym_linkage_specification] = STATE(71), + [sym_attribute_specifier] = STATE(3706), + [sym_attribute_declaration] = STATE(1427), + [sym_ms_declspec_modifier] = STATE(3706), + [sym_ms_based_modifier] = STATE(7654), + [sym_ms_call_modifier] = STATE(2462), + [sym__declarator] = STATE(5881), + [sym_parenthesized_declarator] = STATE(5640), + [sym_attributed_declarator] = STATE(5640), + [sym_pointer_declarator] = STATE(5640), + [sym_function_declarator] = STATE(5588), + [sym_array_declarator] = STATE(5640), + [sym_compound_statement] = STATE(71), + [sym_storage_class_specifier] = STATE(3706), + [sym_type_qualifier] = STATE(3706), + [sym__type_specifier] = STATE(3826), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), + [sym_attributed_statement] = STATE(71), + [sym_labeled_statement] = STATE(71), + [sym_expression_statement] = STATE(71), + [sym_if_statement] = STATE(71), + [sym_switch_statement] = STATE(71), + [sym_case_statement] = STATE(71), + [sym_while_statement] = STATE(71), + [sym_do_statement] = STATE(71), + [sym_for_statement] = STATE(71), + [sym_return_statement] = STATE(71), + [sym_break_statement] = STATE(71), + [sym_continue_statement] = STATE(71), + [sym_goto_statement] = STATE(71), + [sym__expression] = STATE(4182), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7590), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym__empty_declaration] = STATE(71), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym__class_name] = STATE(6623), + [sym_virtual] = STATE(3706), + [sym_explicit_function_specifier] = STATE(2240), + [sym_dependent_type] = STATE(3723), + [sym_template_declaration] = STATE(71), + [sym_template_instantiation] = STATE(71), + [sym_operator_cast] = STATE(5937), + [sym__constructor_specifiers] = STATE(2240), + [sym_operator_cast_definition] = STATE(71), + [sym_operator_cast_declaration] = STATE(71), + [sym_constructor_or_destructor_definition] = STATE(71), + [sym_reference_declarator] = STATE(5640), + [sym_structured_binding_declarator] = STATE(5640), + [sym_template_type] = STATE(3921), + [sym_template_function] = STATE(4066), + [sym_namespace_definition] = STATE(71), + [sym_namespace_alias_definition] = STATE(71), + [sym_using_declaration] = STATE(71), + [sym_alias_declaration] = STATE(71), + [sym_static_assert_declaration] = STATE(71), + [sym_concept_definition] = STATE(71), + [sym_for_range_loop] = STATE(71), + [sym_co_return_statement] = STATE(71), + [sym_co_yield_statement] = STATE(71), + [sym_throw_statement] = STATE(71), + [sym_try_statement] = STATE(71), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_destructor_name] = STATE(5640), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5143), + [sym_qualified_identifier] = STATE(3249), + [sym_qualified_type_identifier] = STATE(3915), + [sym_qualified_operator_cast_identifier] = STATE(5937), + [sym_operator_name] = STATE(5640), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_preproc_if_repeat1] = STATE(71), + [aux_sym__declaration_specifiers_repeat1] = STATE(2514), + [aux_sym_attributed_declarator_repeat1] = STATE(309), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [aux_sym_operator_cast_definition_repeat1] = STATE(2240), + [sym_identifier] = ACTIONS(153), + [aux_sym_preproc_include_token1] = ACTIONS(155), + [aux_sym_preproc_def_token1] = ACTIONS(157), + [aux_sym_preproc_if_token1] = ACTIONS(161), + [aux_sym_preproc_ifdef_token1] = ACTIONS(163), + [aux_sym_preproc_ifdef_token2] = ACTIONS(163), + [sym_preproc_directive] = ACTIONS(165), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -39271,226 +55080,238 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_typedef] = ACTIONS(163), - [anon_sym_extern] = ACTIONS(165), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(43), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_RBRACE] = ACTIONS(867), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(173), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(61), - [anon_sym_unsigned] = ACTIONS(61), - [anon_sym_long] = ACTIONS(61), - [anon_sym_short] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(63), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(175), - [anon_sym_switch] = ACTIONS(177), - [anon_sym_case] = ACTIONS(179), - [anon_sym_default] = ACTIONS(181), - [anon_sym_while] = ACTIONS(183), - [anon_sym_do] = ACTIONS(185), - [anon_sym_for] = ACTIONS(187), - [anon_sym_return] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), - [anon_sym_goto] = ACTIONS(195), + [anon_sym_SEMI] = ACTIONS(167), + [anon_sym_typedef] = ACTIONS(169), + [anon_sym_extern] = ACTIONS(171), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(45), + [anon_sym___cdecl] = ACTIONS(47), + [anon_sym___clrcall] = ACTIONS(47), + [anon_sym___stdcall] = ACTIONS(47), + [anon_sym___fastcall] = ACTIONS(47), + [anon_sym___thiscall] = ACTIONS(47), + [anon_sym___vectorcall] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(738), + [anon_sym_RBRACE] = ACTIONS(774), + [anon_sym_LBRACK] = ACTIONS(51), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(179), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(181), + [anon_sym_switch] = ACTIONS(183), + [anon_sym_case] = ACTIONS(185), + [anon_sym_default] = ACTIONS(187), + [anon_sym_while] = ACTIONS(189), + [anon_sym_do] = ACTIONS(191), + [anon_sym_for] = ACTIONS(193), + [anon_sym_return] = ACTIONS(195), + [anon_sym_break] = ACTIONS(197), + [anon_sym_continue] = ACTIONS(199), + [anon_sym_goto] = ACTIONS(201), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(107), - [anon_sym_decltype] = ACTIONS(109), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_explicit] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(115), - [anon_sym_template] = ACTIONS(199), - [anon_sym_operator] = ACTIONS(119), - [anon_sym_try] = ACTIONS(201), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(203), - [anon_sym_namespace] = ACTIONS(205), - [anon_sym_using] = ACTIONS(207), - [anon_sym_static_assert] = ACTIONS(209), - [anon_sym_concept] = ACTIONS(211), - [anon_sym_co_return] = ACTIONS(213), - [anon_sym_co_yield] = ACTIONS(215), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(113), + [anon_sym_decltype] = ACTIONS(115), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_explicit] = ACTIONS(119), + [anon_sym_typename] = ACTIONS(121), + [anon_sym_template] = ACTIONS(207), + [anon_sym_operator] = ACTIONS(125), + [anon_sym_try] = ACTIONS(209), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(211), + [anon_sym_namespace] = ACTIONS(213), + [anon_sym_using] = ACTIONS(215), + [anon_sym_static_assert] = ACTIONS(217), + [anon_sym_concept] = ACTIONS(219), + [anon_sym_co_return] = ACTIONS(221), + [anon_sym_co_yield] = ACTIONS(223), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, - [67] = { - [sym_preproc_include] = STATE(29), - [sym_preproc_def] = STATE(29), - [sym_preproc_function_def] = STATE(29), - [sym_preproc_call] = STATE(29), - [sym_preproc_if] = STATE(29), - [sym_preproc_ifdef] = STATE(29), - [sym_function_definition] = STATE(29), - [sym_declaration] = STATE(29), - [sym_type_definition] = STATE(29), - [sym__declaration_modifiers] = STATE(3225), - [sym__declaration_specifiers] = STATE(3962), - [sym_linkage_specification] = STATE(29), - [sym_attribute_specifier] = STATE(3225), - [sym_attribute_declaration] = STATE(1136), - [sym_ms_declspec_modifier] = STATE(3225), - [sym_ms_based_modifier] = STATE(6104), - [sym_ms_call_modifier] = STATE(2065), - [sym__declarator] = STATE(5113), - [sym_parenthesized_declarator] = STATE(4918), - [sym_attributed_declarator] = STATE(4918), - [sym_pointer_declarator] = STATE(4918), - [sym_function_declarator] = STATE(4870), - [sym_array_declarator] = STATE(4918), - [sym_compound_statement] = STATE(29), - [sym_storage_class_specifier] = STATE(3225), - [sym_type_qualifier] = STATE(3225), - [sym__type_specifier] = STATE(3322), - [sym_sized_type_specifier] = STATE(3232), - [sym_enum_specifier] = STATE(3232), - [sym_struct_specifier] = STATE(3232), - [sym_union_specifier] = STATE(3232), - [sym_attributed_statement] = STATE(29), - [sym_labeled_statement] = STATE(29), - [sym_expression_statement] = STATE(29), - [sym_if_statement] = STATE(29), - [sym_switch_statement] = STATE(29), - [sym_case_statement] = STATE(29), - [sym_while_statement] = STATE(29), - [sym_do_statement] = STATE(29), - [sym_for_statement] = STATE(29), - [sym_return_statement] = STATE(29), - [sym_break_statement] = STATE(29), - [sym_continue_statement] = STATE(29), - [sym_goto_statement] = STATE(29), - [sym__expression] = STATE(3502), - [sym_comma_expression] = STATE(6595), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym__empty_declaration] = STATE(29), - [sym_placeholder_type_specifier] = STATE(3232), - [sym_decltype_auto] = STATE(3279), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3232), - [sym__class_name] = STATE(5753), - [sym_virtual] = STATE(3225), - [sym_explicit_function_specifier] = STATE(1936), - [sym_dependent_type] = STATE(3232), - [sym_template_declaration] = STATE(29), - [sym_template_instantiation] = STATE(29), - [sym_operator_cast] = STATE(5134), - [sym__constructor_specifiers] = STATE(1936), - [sym_operator_cast_definition] = STATE(29), - [sym_operator_cast_declaration] = STATE(29), - [sym_constructor_or_destructor_definition] = STATE(29), - [sym_reference_declarator] = STATE(4918), - [sym_structured_binding_declarator] = STATE(4918), - [sym_template_type] = STATE(3608), - [sym_template_function] = STATE(3494), - [sym_namespace_definition] = STATE(29), - [sym_namespace_alias_definition] = STATE(29), - [sym_using_declaration] = STATE(29), - [sym_alias_declaration] = STATE(29), - [sym_static_assert_declaration] = STATE(29), - [sym_concept_definition] = STATE(29), - [sym_for_range_loop] = STATE(29), - [sym_co_return_statement] = STATE(29), - [sym_co_yield_statement] = STATE(29), - [sym_throw_statement] = STATE(29), - [sym_try_statement] = STATE(29), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_destructor_name] = STATE(4918), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4460), - [sym_qualified_identifier] = STATE(2732), - [sym_qualified_type_identifier] = STATE(3593), - [sym_qualified_operator_cast_identifier] = STATE(5134), - [sym_operator_name] = STATE(4918), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_translation_unit_repeat1] = STATE(29), - [aux_sym__declaration_specifiers_repeat1] = STATE(2179), - [aux_sym_attributed_declarator_repeat1] = STATE(206), - [aux_sym_sized_type_specifier_repeat1] = STATE(3171), - [aux_sym_operator_cast_definition_repeat1] = STATE(1936), - [sym_identifier] = ACTIONS(147), - [aux_sym_preproc_include_token1] = ACTIONS(149), - [aux_sym_preproc_def_token1] = ACTIONS(151), - [aux_sym_preproc_if_token1] = ACTIONS(155), - [aux_sym_preproc_ifdef_token1] = ACTIONS(157), - [aux_sym_preproc_ifdef_token2] = ACTIONS(157), - [sym_preproc_directive] = ACTIONS(159), + [56] = { + [sym_preproc_include] = STATE(64), + [sym_preproc_def] = STATE(64), + [sym_preproc_function_def] = STATE(64), + [sym_preproc_call] = STATE(64), + [sym_preproc_if] = STATE(64), + [sym_preproc_ifdef] = STATE(64), + [sym_function_definition] = STATE(64), + [sym_declaration] = STATE(64), + [sym_type_definition] = STATE(64), + [sym__declaration_modifiers] = STATE(3706), + [sym__declaration_specifiers] = STATE(4618), + [sym_linkage_specification] = STATE(64), + [sym_attribute_specifier] = STATE(3706), + [sym_attribute_declaration] = STATE(1427), + [sym_ms_declspec_modifier] = STATE(3706), + [sym_ms_based_modifier] = STATE(7654), + [sym_ms_call_modifier] = STATE(2462), + [sym__declarator] = STATE(5881), + [sym_parenthesized_declarator] = STATE(5640), + [sym_attributed_declarator] = STATE(5640), + [sym_pointer_declarator] = STATE(5640), + [sym_function_declarator] = STATE(5588), + [sym_array_declarator] = STATE(5640), + [sym_compound_statement] = STATE(64), + [sym_storage_class_specifier] = STATE(3706), + [sym_type_qualifier] = STATE(3706), + [sym__type_specifier] = STATE(3826), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), + [sym_attributed_statement] = STATE(64), + [sym_labeled_statement] = STATE(64), + [sym_expression_statement] = STATE(64), + [sym_if_statement] = STATE(64), + [sym_switch_statement] = STATE(64), + [sym_case_statement] = STATE(64), + [sym_while_statement] = STATE(64), + [sym_do_statement] = STATE(64), + [sym_for_statement] = STATE(64), + [sym_return_statement] = STATE(64), + [sym_break_statement] = STATE(64), + [sym_continue_statement] = STATE(64), + [sym_goto_statement] = STATE(64), + [sym__expression] = STATE(4182), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7590), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym__empty_declaration] = STATE(64), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym__class_name] = STATE(6623), + [sym_virtual] = STATE(3706), + [sym_explicit_function_specifier] = STATE(2240), + [sym_dependent_type] = STATE(3723), + [sym_template_declaration] = STATE(64), + [sym_template_instantiation] = STATE(64), + [sym_operator_cast] = STATE(5937), + [sym__constructor_specifiers] = STATE(2240), + [sym_operator_cast_definition] = STATE(64), + [sym_operator_cast_declaration] = STATE(64), + [sym_constructor_or_destructor_definition] = STATE(64), + [sym_reference_declarator] = STATE(5640), + [sym_structured_binding_declarator] = STATE(5640), + [sym_template_type] = STATE(3921), + [sym_template_function] = STATE(4066), + [sym_namespace_definition] = STATE(64), + [sym_namespace_alias_definition] = STATE(64), + [sym_using_declaration] = STATE(64), + [sym_alias_declaration] = STATE(64), + [sym_static_assert_declaration] = STATE(64), + [sym_concept_definition] = STATE(64), + [sym_for_range_loop] = STATE(64), + [sym_co_return_statement] = STATE(64), + [sym_co_yield_statement] = STATE(64), + [sym_throw_statement] = STATE(64), + [sym_try_statement] = STATE(64), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_destructor_name] = STATE(5640), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5143), + [sym_qualified_identifier] = STATE(3249), + [sym_qualified_type_identifier] = STATE(3915), + [sym_qualified_operator_cast_identifier] = STATE(5937), + [sym_operator_name] = STATE(5640), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_preproc_if_repeat1] = STATE(64), + [aux_sym__declaration_specifiers_repeat1] = STATE(2514), + [aux_sym_attributed_declarator_repeat1] = STATE(309), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [aux_sym_operator_cast_definition_repeat1] = STATE(2240), + [sym_identifier] = ACTIONS(153), + [aux_sym_preproc_include_token1] = ACTIONS(155), + [aux_sym_preproc_def_token1] = ACTIONS(157), + [aux_sym_preproc_if_token1] = ACTIONS(161), + [aux_sym_preproc_ifdef_token1] = ACTIONS(163), + [aux_sym_preproc_ifdef_token2] = ACTIONS(163), + [sym_preproc_directive] = ACTIONS(165), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -39499,226 +55320,238 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_typedef] = ACTIONS(163), - [anon_sym_extern] = ACTIONS(165), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(43), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_RBRACE] = ACTIONS(869), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(173), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(61), - [anon_sym_unsigned] = ACTIONS(61), - [anon_sym_long] = ACTIONS(61), - [anon_sym_short] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(63), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(175), - [anon_sym_switch] = ACTIONS(177), - [anon_sym_case] = ACTIONS(179), - [anon_sym_default] = ACTIONS(181), - [anon_sym_while] = ACTIONS(183), - [anon_sym_do] = ACTIONS(185), - [anon_sym_for] = ACTIONS(187), - [anon_sym_return] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), - [anon_sym_goto] = ACTIONS(195), + [anon_sym_SEMI] = ACTIONS(167), + [anon_sym_typedef] = ACTIONS(169), + [anon_sym_extern] = ACTIONS(171), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(45), + [anon_sym___cdecl] = ACTIONS(47), + [anon_sym___clrcall] = ACTIONS(47), + [anon_sym___stdcall] = ACTIONS(47), + [anon_sym___fastcall] = ACTIONS(47), + [anon_sym___thiscall] = ACTIONS(47), + [anon_sym___vectorcall] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(738), + [anon_sym_RBRACE] = ACTIONS(776), + [anon_sym_LBRACK] = ACTIONS(51), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(179), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(181), + [anon_sym_switch] = ACTIONS(183), + [anon_sym_case] = ACTIONS(185), + [anon_sym_default] = ACTIONS(187), + [anon_sym_while] = ACTIONS(189), + [anon_sym_do] = ACTIONS(191), + [anon_sym_for] = ACTIONS(193), + [anon_sym_return] = ACTIONS(195), + [anon_sym_break] = ACTIONS(197), + [anon_sym_continue] = ACTIONS(199), + [anon_sym_goto] = ACTIONS(201), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(107), - [anon_sym_decltype] = ACTIONS(109), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_explicit] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(115), - [anon_sym_template] = ACTIONS(199), - [anon_sym_operator] = ACTIONS(119), - [anon_sym_try] = ACTIONS(201), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(203), - [anon_sym_namespace] = ACTIONS(205), - [anon_sym_using] = ACTIONS(207), - [anon_sym_static_assert] = ACTIONS(209), - [anon_sym_concept] = ACTIONS(211), - [anon_sym_co_return] = ACTIONS(213), - [anon_sym_co_yield] = ACTIONS(215), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(113), + [anon_sym_decltype] = ACTIONS(115), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_explicit] = ACTIONS(119), + [anon_sym_typename] = ACTIONS(121), + [anon_sym_template] = ACTIONS(207), + [anon_sym_operator] = ACTIONS(125), + [anon_sym_try] = ACTIONS(209), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(211), + [anon_sym_namespace] = ACTIONS(213), + [anon_sym_using] = ACTIONS(215), + [anon_sym_static_assert] = ACTIONS(217), + [anon_sym_concept] = ACTIONS(219), + [anon_sym_co_return] = ACTIONS(221), + [anon_sym_co_yield] = ACTIONS(223), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, - [68] = { - [sym_preproc_include] = STATE(67), - [sym_preproc_def] = STATE(67), - [sym_preproc_function_def] = STATE(67), - [sym_preproc_call] = STATE(67), - [sym_preproc_if] = STATE(67), - [sym_preproc_ifdef] = STATE(67), - [sym_function_definition] = STATE(67), - [sym_declaration] = STATE(67), - [sym_type_definition] = STATE(67), - [sym__declaration_modifiers] = STATE(3225), - [sym__declaration_specifiers] = STATE(3962), - [sym_linkage_specification] = STATE(67), - [sym_attribute_specifier] = STATE(3225), - [sym_attribute_declaration] = STATE(1136), - [sym_ms_declspec_modifier] = STATE(3225), - [sym_ms_based_modifier] = STATE(6104), - [sym_ms_call_modifier] = STATE(2065), - [sym__declarator] = STATE(5113), - [sym_parenthesized_declarator] = STATE(4918), - [sym_attributed_declarator] = STATE(4918), - [sym_pointer_declarator] = STATE(4918), - [sym_function_declarator] = STATE(4870), - [sym_array_declarator] = STATE(4918), - [sym_compound_statement] = STATE(67), - [sym_storage_class_specifier] = STATE(3225), - [sym_type_qualifier] = STATE(3225), - [sym__type_specifier] = STATE(3322), - [sym_sized_type_specifier] = STATE(3232), - [sym_enum_specifier] = STATE(3232), - [sym_struct_specifier] = STATE(3232), - [sym_union_specifier] = STATE(3232), - [sym_attributed_statement] = STATE(67), - [sym_labeled_statement] = STATE(67), - [sym_expression_statement] = STATE(67), - [sym_if_statement] = STATE(67), - [sym_switch_statement] = STATE(67), - [sym_case_statement] = STATE(67), - [sym_while_statement] = STATE(67), - [sym_do_statement] = STATE(67), - [sym_for_statement] = STATE(67), - [sym_return_statement] = STATE(67), - [sym_break_statement] = STATE(67), - [sym_continue_statement] = STATE(67), - [sym_goto_statement] = STATE(67), - [sym__expression] = STATE(3502), - [sym_comma_expression] = STATE(6595), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym__empty_declaration] = STATE(67), - [sym_placeholder_type_specifier] = STATE(3232), - [sym_decltype_auto] = STATE(3279), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3232), - [sym__class_name] = STATE(5753), - [sym_virtual] = STATE(3225), - [sym_explicit_function_specifier] = STATE(1936), - [sym_dependent_type] = STATE(3232), - [sym_template_declaration] = STATE(67), - [sym_template_instantiation] = STATE(67), - [sym_operator_cast] = STATE(5134), - [sym__constructor_specifiers] = STATE(1936), - [sym_operator_cast_definition] = STATE(67), - [sym_operator_cast_declaration] = STATE(67), - [sym_constructor_or_destructor_definition] = STATE(67), - [sym_reference_declarator] = STATE(4918), - [sym_structured_binding_declarator] = STATE(4918), - [sym_template_type] = STATE(3608), - [sym_template_function] = STATE(3494), - [sym_namespace_definition] = STATE(67), - [sym_namespace_alias_definition] = STATE(67), - [sym_using_declaration] = STATE(67), - [sym_alias_declaration] = STATE(67), - [sym_static_assert_declaration] = STATE(67), - [sym_concept_definition] = STATE(67), - [sym_for_range_loop] = STATE(67), - [sym_co_return_statement] = STATE(67), - [sym_co_yield_statement] = STATE(67), - [sym_throw_statement] = STATE(67), - [sym_try_statement] = STATE(67), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_destructor_name] = STATE(4918), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4460), - [sym_qualified_identifier] = STATE(2732), - [sym_qualified_type_identifier] = STATE(3593), - [sym_qualified_operator_cast_identifier] = STATE(5134), - [sym_operator_name] = STATE(4918), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_translation_unit_repeat1] = STATE(67), - [aux_sym__declaration_specifiers_repeat1] = STATE(2179), - [aux_sym_attributed_declarator_repeat1] = STATE(206), - [aux_sym_sized_type_specifier_repeat1] = STATE(3171), - [aux_sym_operator_cast_definition_repeat1] = STATE(1936), - [sym_identifier] = ACTIONS(147), - [aux_sym_preproc_include_token1] = ACTIONS(149), - [aux_sym_preproc_def_token1] = ACTIONS(151), - [aux_sym_preproc_if_token1] = ACTIONS(155), - [aux_sym_preproc_ifdef_token1] = ACTIONS(157), - [aux_sym_preproc_ifdef_token2] = ACTIONS(157), - [sym_preproc_directive] = ACTIONS(159), + [57] = { + [sym_preproc_include] = STATE(64), + [sym_preproc_def] = STATE(64), + [sym_preproc_function_def] = STATE(64), + [sym_preproc_call] = STATE(64), + [sym_preproc_if] = STATE(64), + [sym_preproc_ifdef] = STATE(64), + [sym_function_definition] = STATE(64), + [sym_declaration] = STATE(64), + [sym_type_definition] = STATE(64), + [sym__declaration_modifiers] = STATE(3706), + [sym__declaration_specifiers] = STATE(4618), + [sym_linkage_specification] = STATE(64), + [sym_attribute_specifier] = STATE(3706), + [sym_attribute_declaration] = STATE(1427), + [sym_ms_declspec_modifier] = STATE(3706), + [sym_ms_based_modifier] = STATE(7654), + [sym_ms_call_modifier] = STATE(2462), + [sym__declarator] = STATE(5881), + [sym_parenthesized_declarator] = STATE(5640), + [sym_attributed_declarator] = STATE(5640), + [sym_pointer_declarator] = STATE(5640), + [sym_function_declarator] = STATE(5588), + [sym_array_declarator] = STATE(5640), + [sym_compound_statement] = STATE(64), + [sym_storage_class_specifier] = STATE(3706), + [sym_type_qualifier] = STATE(3706), + [sym__type_specifier] = STATE(3826), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), + [sym_attributed_statement] = STATE(64), + [sym_labeled_statement] = STATE(64), + [sym_expression_statement] = STATE(64), + [sym_if_statement] = STATE(64), + [sym_switch_statement] = STATE(64), + [sym_case_statement] = STATE(64), + [sym_while_statement] = STATE(64), + [sym_do_statement] = STATE(64), + [sym_for_statement] = STATE(64), + [sym_return_statement] = STATE(64), + [sym_break_statement] = STATE(64), + [sym_continue_statement] = STATE(64), + [sym_goto_statement] = STATE(64), + [sym__expression] = STATE(4182), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7590), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym__empty_declaration] = STATE(64), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym__class_name] = STATE(6623), + [sym_virtual] = STATE(3706), + [sym_explicit_function_specifier] = STATE(2240), + [sym_dependent_type] = STATE(3723), + [sym_template_declaration] = STATE(64), + [sym_template_instantiation] = STATE(64), + [sym_operator_cast] = STATE(5937), + [sym__constructor_specifiers] = STATE(2240), + [sym_operator_cast_definition] = STATE(64), + [sym_operator_cast_declaration] = STATE(64), + [sym_constructor_or_destructor_definition] = STATE(64), + [sym_reference_declarator] = STATE(5640), + [sym_structured_binding_declarator] = STATE(5640), + [sym_template_type] = STATE(3921), + [sym_template_function] = STATE(4066), + [sym_namespace_definition] = STATE(64), + [sym_namespace_alias_definition] = STATE(64), + [sym_using_declaration] = STATE(64), + [sym_alias_declaration] = STATE(64), + [sym_static_assert_declaration] = STATE(64), + [sym_concept_definition] = STATE(64), + [sym_for_range_loop] = STATE(64), + [sym_co_return_statement] = STATE(64), + [sym_co_yield_statement] = STATE(64), + [sym_throw_statement] = STATE(64), + [sym_try_statement] = STATE(64), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_destructor_name] = STATE(5640), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5143), + [sym_qualified_identifier] = STATE(3249), + [sym_qualified_type_identifier] = STATE(3915), + [sym_qualified_operator_cast_identifier] = STATE(5937), + [sym_operator_name] = STATE(5640), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_preproc_if_repeat1] = STATE(64), + [aux_sym__declaration_specifiers_repeat1] = STATE(2514), + [aux_sym_attributed_declarator_repeat1] = STATE(309), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [aux_sym_operator_cast_definition_repeat1] = STATE(2240), + [sym_identifier] = ACTIONS(153), + [aux_sym_preproc_include_token1] = ACTIONS(155), + [aux_sym_preproc_def_token1] = ACTIONS(157), + [aux_sym_preproc_if_token1] = ACTIONS(161), + [aux_sym_preproc_ifdef_token1] = ACTIONS(163), + [aux_sym_preproc_ifdef_token2] = ACTIONS(163), + [sym_preproc_directive] = ACTIONS(165), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -39727,226 +55560,238 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_typedef] = ACTIONS(163), - [anon_sym_extern] = ACTIONS(165), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(43), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_RBRACE] = ACTIONS(871), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(173), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(61), - [anon_sym_unsigned] = ACTIONS(61), - [anon_sym_long] = ACTIONS(61), - [anon_sym_short] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(63), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(175), - [anon_sym_switch] = ACTIONS(177), - [anon_sym_case] = ACTIONS(179), - [anon_sym_default] = ACTIONS(181), - [anon_sym_while] = ACTIONS(183), - [anon_sym_do] = ACTIONS(185), - [anon_sym_for] = ACTIONS(187), - [anon_sym_return] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), - [anon_sym_goto] = ACTIONS(195), + [anon_sym_SEMI] = ACTIONS(167), + [anon_sym_typedef] = ACTIONS(169), + [anon_sym_extern] = ACTIONS(171), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(45), + [anon_sym___cdecl] = ACTIONS(47), + [anon_sym___clrcall] = ACTIONS(47), + [anon_sym___stdcall] = ACTIONS(47), + [anon_sym___fastcall] = ACTIONS(47), + [anon_sym___thiscall] = ACTIONS(47), + [anon_sym___vectorcall] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(738), + [anon_sym_RBRACE] = ACTIONS(778), + [anon_sym_LBRACK] = ACTIONS(51), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(179), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(181), + [anon_sym_switch] = ACTIONS(183), + [anon_sym_case] = ACTIONS(185), + [anon_sym_default] = ACTIONS(187), + [anon_sym_while] = ACTIONS(189), + [anon_sym_do] = ACTIONS(191), + [anon_sym_for] = ACTIONS(193), + [anon_sym_return] = ACTIONS(195), + [anon_sym_break] = ACTIONS(197), + [anon_sym_continue] = ACTIONS(199), + [anon_sym_goto] = ACTIONS(201), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(107), - [anon_sym_decltype] = ACTIONS(109), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_explicit] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(115), - [anon_sym_template] = ACTIONS(199), - [anon_sym_operator] = ACTIONS(119), - [anon_sym_try] = ACTIONS(201), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(203), - [anon_sym_namespace] = ACTIONS(205), - [anon_sym_using] = ACTIONS(207), - [anon_sym_static_assert] = ACTIONS(209), - [anon_sym_concept] = ACTIONS(211), - [anon_sym_co_return] = ACTIONS(213), - [anon_sym_co_yield] = ACTIONS(215), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(113), + [anon_sym_decltype] = ACTIONS(115), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_explicit] = ACTIONS(119), + [anon_sym_typename] = ACTIONS(121), + [anon_sym_template] = ACTIONS(207), + [anon_sym_operator] = ACTIONS(125), + [anon_sym_try] = ACTIONS(209), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(211), + [anon_sym_namespace] = ACTIONS(213), + [anon_sym_using] = ACTIONS(215), + [anon_sym_static_assert] = ACTIONS(217), + [anon_sym_concept] = ACTIONS(219), + [anon_sym_co_return] = ACTIONS(221), + [anon_sym_co_yield] = ACTIONS(223), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, - [69] = { - [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_declaration] = STATE(74), - [sym_type_definition] = STATE(74), - [sym__declaration_modifiers] = STATE(3225), - [sym__declaration_specifiers] = STATE(3962), - [sym_linkage_specification] = STATE(74), - [sym_attribute_specifier] = STATE(3225), - [sym_attribute_declaration] = STATE(1136), - [sym_ms_declspec_modifier] = STATE(3225), - [sym_ms_based_modifier] = STATE(6104), - [sym_ms_call_modifier] = STATE(2065), - [sym__declarator] = STATE(5113), - [sym_parenthesized_declarator] = STATE(4918), - [sym_attributed_declarator] = STATE(4918), - [sym_pointer_declarator] = STATE(4918), - [sym_function_declarator] = STATE(4870), - [sym_array_declarator] = STATE(4918), - [sym_compound_statement] = STATE(74), - [sym_storage_class_specifier] = STATE(3225), - [sym_type_qualifier] = STATE(3225), - [sym__type_specifier] = STATE(3322), - [sym_sized_type_specifier] = STATE(3232), - [sym_enum_specifier] = STATE(3232), - [sym_struct_specifier] = STATE(3232), - [sym_union_specifier] = STATE(3232), - [sym_attributed_statement] = STATE(74), - [sym_labeled_statement] = STATE(74), - [sym_expression_statement] = STATE(74), - [sym_if_statement] = STATE(74), - [sym_switch_statement] = STATE(74), - [sym_case_statement] = STATE(74), - [sym_while_statement] = STATE(74), - [sym_do_statement] = STATE(74), - [sym_for_statement] = STATE(74), - [sym_return_statement] = STATE(74), - [sym_break_statement] = STATE(74), - [sym_continue_statement] = STATE(74), - [sym_goto_statement] = STATE(74), - [sym__expression] = STATE(3502), - [sym_comma_expression] = STATE(6595), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym__empty_declaration] = STATE(74), - [sym_placeholder_type_specifier] = STATE(3232), - [sym_decltype_auto] = STATE(3279), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3232), - [sym__class_name] = STATE(5753), - [sym_virtual] = STATE(3225), - [sym_explicit_function_specifier] = STATE(1936), - [sym_dependent_type] = STATE(3232), - [sym_template_declaration] = STATE(74), - [sym_template_instantiation] = STATE(74), - [sym_operator_cast] = STATE(5134), - [sym__constructor_specifiers] = STATE(1936), - [sym_operator_cast_definition] = STATE(74), - [sym_operator_cast_declaration] = STATE(74), - [sym_constructor_or_destructor_definition] = STATE(74), - [sym_reference_declarator] = STATE(4918), - [sym_structured_binding_declarator] = STATE(4918), - [sym_template_type] = STATE(3608), - [sym_template_function] = STATE(3494), - [sym_namespace_definition] = STATE(74), - [sym_namespace_alias_definition] = STATE(74), - [sym_using_declaration] = STATE(74), - [sym_alias_declaration] = STATE(74), - [sym_static_assert_declaration] = STATE(74), - [sym_concept_definition] = STATE(74), - [sym_for_range_loop] = STATE(74), - [sym_co_return_statement] = STATE(74), - [sym_co_yield_statement] = STATE(74), - [sym_throw_statement] = STATE(74), - [sym_try_statement] = STATE(74), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_destructor_name] = STATE(4918), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4460), - [sym_qualified_identifier] = STATE(2732), - [sym_qualified_type_identifier] = STATE(3593), - [sym_qualified_operator_cast_identifier] = STATE(5134), - [sym_operator_name] = STATE(4918), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_translation_unit_repeat1] = STATE(74), - [aux_sym__declaration_specifiers_repeat1] = STATE(2179), - [aux_sym_attributed_declarator_repeat1] = STATE(206), - [aux_sym_sized_type_specifier_repeat1] = STATE(3171), - [aux_sym_operator_cast_definition_repeat1] = STATE(1936), - [sym_identifier] = ACTIONS(147), - [aux_sym_preproc_include_token1] = ACTIONS(149), - [aux_sym_preproc_def_token1] = ACTIONS(151), - [aux_sym_preproc_if_token1] = ACTIONS(155), - [aux_sym_preproc_ifdef_token1] = ACTIONS(157), - [aux_sym_preproc_ifdef_token2] = ACTIONS(157), - [sym_preproc_directive] = ACTIONS(159), + [58] = { + [sym_preproc_include] = STATE(56), + [sym_preproc_def] = STATE(56), + [sym_preproc_function_def] = STATE(56), + [sym_preproc_call] = STATE(56), + [sym_preproc_if] = STATE(56), + [sym_preproc_ifdef] = STATE(56), + [sym_function_definition] = STATE(56), + [sym_declaration] = STATE(56), + [sym_type_definition] = STATE(56), + [sym__declaration_modifiers] = STATE(3706), + [sym__declaration_specifiers] = STATE(4618), + [sym_linkage_specification] = STATE(56), + [sym_attribute_specifier] = STATE(3706), + [sym_attribute_declaration] = STATE(1427), + [sym_ms_declspec_modifier] = STATE(3706), + [sym_ms_based_modifier] = STATE(7654), + [sym_ms_call_modifier] = STATE(2462), + [sym__declarator] = STATE(5881), + [sym_parenthesized_declarator] = STATE(5640), + [sym_attributed_declarator] = STATE(5640), + [sym_pointer_declarator] = STATE(5640), + [sym_function_declarator] = STATE(5588), + [sym_array_declarator] = STATE(5640), + [sym_compound_statement] = STATE(56), + [sym_storage_class_specifier] = STATE(3706), + [sym_type_qualifier] = STATE(3706), + [sym__type_specifier] = STATE(3826), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), + [sym_attributed_statement] = STATE(56), + [sym_labeled_statement] = STATE(56), + [sym_expression_statement] = STATE(56), + [sym_if_statement] = STATE(56), + [sym_switch_statement] = STATE(56), + [sym_case_statement] = STATE(56), + [sym_while_statement] = STATE(56), + [sym_do_statement] = STATE(56), + [sym_for_statement] = STATE(56), + [sym_return_statement] = STATE(56), + [sym_break_statement] = STATE(56), + [sym_continue_statement] = STATE(56), + [sym_goto_statement] = STATE(56), + [sym__expression] = STATE(4182), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7590), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym__empty_declaration] = STATE(56), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym__class_name] = STATE(6623), + [sym_virtual] = STATE(3706), + [sym_explicit_function_specifier] = STATE(2240), + [sym_dependent_type] = STATE(3723), + [sym_template_declaration] = STATE(56), + [sym_template_instantiation] = STATE(56), + [sym_operator_cast] = STATE(5937), + [sym__constructor_specifiers] = STATE(2240), + [sym_operator_cast_definition] = STATE(56), + [sym_operator_cast_declaration] = STATE(56), + [sym_constructor_or_destructor_definition] = STATE(56), + [sym_reference_declarator] = STATE(5640), + [sym_structured_binding_declarator] = STATE(5640), + [sym_template_type] = STATE(3921), + [sym_template_function] = STATE(4066), + [sym_namespace_definition] = STATE(56), + [sym_namespace_alias_definition] = STATE(56), + [sym_using_declaration] = STATE(56), + [sym_alias_declaration] = STATE(56), + [sym_static_assert_declaration] = STATE(56), + [sym_concept_definition] = STATE(56), + [sym_for_range_loop] = STATE(56), + [sym_co_return_statement] = STATE(56), + [sym_co_yield_statement] = STATE(56), + [sym_throw_statement] = STATE(56), + [sym_try_statement] = STATE(56), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_destructor_name] = STATE(5640), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5143), + [sym_qualified_identifier] = STATE(3249), + [sym_qualified_type_identifier] = STATE(3915), + [sym_qualified_operator_cast_identifier] = STATE(5937), + [sym_operator_name] = STATE(5640), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_preproc_if_repeat1] = STATE(56), + [aux_sym__declaration_specifiers_repeat1] = STATE(2514), + [aux_sym_attributed_declarator_repeat1] = STATE(309), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [aux_sym_operator_cast_definition_repeat1] = STATE(2240), + [sym_identifier] = ACTIONS(153), + [aux_sym_preproc_include_token1] = ACTIONS(155), + [aux_sym_preproc_def_token1] = ACTIONS(157), + [aux_sym_preproc_if_token1] = ACTIONS(161), + [aux_sym_preproc_ifdef_token1] = ACTIONS(163), + [aux_sym_preproc_ifdef_token2] = ACTIONS(163), + [sym_preproc_directive] = ACTIONS(165), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -39955,226 +55800,238 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_typedef] = ACTIONS(163), - [anon_sym_extern] = ACTIONS(165), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(43), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_RBRACE] = ACTIONS(873), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(173), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(61), - [anon_sym_unsigned] = ACTIONS(61), - [anon_sym_long] = ACTIONS(61), - [anon_sym_short] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(63), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(175), - [anon_sym_switch] = ACTIONS(177), - [anon_sym_case] = ACTIONS(179), - [anon_sym_default] = ACTIONS(181), - [anon_sym_while] = ACTIONS(183), - [anon_sym_do] = ACTIONS(185), - [anon_sym_for] = ACTIONS(187), - [anon_sym_return] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), - [anon_sym_goto] = ACTIONS(195), + [anon_sym_SEMI] = ACTIONS(167), + [anon_sym_typedef] = ACTIONS(169), + [anon_sym_extern] = ACTIONS(171), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(45), + [anon_sym___cdecl] = ACTIONS(47), + [anon_sym___clrcall] = ACTIONS(47), + [anon_sym___stdcall] = ACTIONS(47), + [anon_sym___fastcall] = ACTIONS(47), + [anon_sym___thiscall] = ACTIONS(47), + [anon_sym___vectorcall] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(738), + [anon_sym_RBRACE] = ACTIONS(780), + [anon_sym_LBRACK] = ACTIONS(51), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(179), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(181), + [anon_sym_switch] = ACTIONS(183), + [anon_sym_case] = ACTIONS(185), + [anon_sym_default] = ACTIONS(187), + [anon_sym_while] = ACTIONS(189), + [anon_sym_do] = ACTIONS(191), + [anon_sym_for] = ACTIONS(193), + [anon_sym_return] = ACTIONS(195), + [anon_sym_break] = ACTIONS(197), + [anon_sym_continue] = ACTIONS(199), + [anon_sym_goto] = ACTIONS(201), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(107), - [anon_sym_decltype] = ACTIONS(109), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_explicit] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(115), - [anon_sym_template] = ACTIONS(199), - [anon_sym_operator] = ACTIONS(119), - [anon_sym_try] = ACTIONS(201), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(203), - [anon_sym_namespace] = ACTIONS(205), - [anon_sym_using] = ACTIONS(207), - [anon_sym_static_assert] = ACTIONS(209), - [anon_sym_concept] = ACTIONS(211), - [anon_sym_co_return] = ACTIONS(213), - [anon_sym_co_yield] = ACTIONS(215), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(113), + [anon_sym_decltype] = ACTIONS(115), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_explicit] = ACTIONS(119), + [anon_sym_typename] = ACTIONS(121), + [anon_sym_template] = ACTIONS(207), + [anon_sym_operator] = ACTIONS(125), + [anon_sym_try] = ACTIONS(209), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(211), + [anon_sym_namespace] = ACTIONS(213), + [anon_sym_using] = ACTIONS(215), + [anon_sym_static_assert] = ACTIONS(217), + [anon_sym_concept] = ACTIONS(219), + [anon_sym_co_return] = ACTIONS(221), + [anon_sym_co_yield] = ACTIONS(223), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, - [70] = { - [sym_preproc_include] = STATE(29), - [sym_preproc_def] = STATE(29), - [sym_preproc_function_def] = STATE(29), - [sym_preproc_call] = STATE(29), - [sym_preproc_if] = STATE(29), - [sym_preproc_ifdef] = STATE(29), - [sym_function_definition] = STATE(29), - [sym_declaration] = STATE(29), - [sym_type_definition] = STATE(29), - [sym__declaration_modifiers] = STATE(3225), - [sym__declaration_specifiers] = STATE(3962), - [sym_linkage_specification] = STATE(29), - [sym_attribute_specifier] = STATE(3225), - [sym_attribute_declaration] = STATE(1136), - [sym_ms_declspec_modifier] = STATE(3225), - [sym_ms_based_modifier] = STATE(6104), - [sym_ms_call_modifier] = STATE(2065), - [sym__declarator] = STATE(5113), - [sym_parenthesized_declarator] = STATE(4918), - [sym_attributed_declarator] = STATE(4918), - [sym_pointer_declarator] = STATE(4918), - [sym_function_declarator] = STATE(4870), - [sym_array_declarator] = STATE(4918), - [sym_compound_statement] = STATE(29), - [sym_storage_class_specifier] = STATE(3225), - [sym_type_qualifier] = STATE(3225), - [sym__type_specifier] = STATE(3322), - [sym_sized_type_specifier] = STATE(3232), - [sym_enum_specifier] = STATE(3232), - [sym_struct_specifier] = STATE(3232), - [sym_union_specifier] = STATE(3232), - [sym_attributed_statement] = STATE(29), - [sym_labeled_statement] = STATE(29), - [sym_expression_statement] = STATE(29), - [sym_if_statement] = STATE(29), - [sym_switch_statement] = STATE(29), - [sym_case_statement] = STATE(29), - [sym_while_statement] = STATE(29), - [sym_do_statement] = STATE(29), - [sym_for_statement] = STATE(29), - [sym_return_statement] = STATE(29), - [sym_break_statement] = STATE(29), - [sym_continue_statement] = STATE(29), - [sym_goto_statement] = STATE(29), - [sym__expression] = STATE(3502), - [sym_comma_expression] = STATE(6595), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym__empty_declaration] = STATE(29), - [sym_placeholder_type_specifier] = STATE(3232), - [sym_decltype_auto] = STATE(3279), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3232), - [sym__class_name] = STATE(5753), - [sym_virtual] = STATE(3225), - [sym_explicit_function_specifier] = STATE(1936), - [sym_dependent_type] = STATE(3232), - [sym_template_declaration] = STATE(29), - [sym_template_instantiation] = STATE(29), - [sym_operator_cast] = STATE(5134), - [sym__constructor_specifiers] = STATE(1936), - [sym_operator_cast_definition] = STATE(29), - [sym_operator_cast_declaration] = STATE(29), - [sym_constructor_or_destructor_definition] = STATE(29), - [sym_reference_declarator] = STATE(4918), - [sym_structured_binding_declarator] = STATE(4918), - [sym_template_type] = STATE(3608), - [sym_template_function] = STATE(3494), - [sym_namespace_definition] = STATE(29), - [sym_namespace_alias_definition] = STATE(29), - [sym_using_declaration] = STATE(29), - [sym_alias_declaration] = STATE(29), - [sym_static_assert_declaration] = STATE(29), - [sym_concept_definition] = STATE(29), - [sym_for_range_loop] = STATE(29), - [sym_co_return_statement] = STATE(29), - [sym_co_yield_statement] = STATE(29), - [sym_throw_statement] = STATE(29), - [sym_try_statement] = STATE(29), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_destructor_name] = STATE(4918), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4460), - [sym_qualified_identifier] = STATE(2732), - [sym_qualified_type_identifier] = STATE(3593), - [sym_qualified_operator_cast_identifier] = STATE(5134), - [sym_operator_name] = STATE(4918), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_translation_unit_repeat1] = STATE(29), - [aux_sym__declaration_specifiers_repeat1] = STATE(2179), - [aux_sym_attributed_declarator_repeat1] = STATE(206), - [aux_sym_sized_type_specifier_repeat1] = STATE(3171), - [aux_sym_operator_cast_definition_repeat1] = STATE(1936), - [sym_identifier] = ACTIONS(147), - [aux_sym_preproc_include_token1] = ACTIONS(149), - [aux_sym_preproc_def_token1] = ACTIONS(151), - [aux_sym_preproc_if_token1] = ACTIONS(155), - [aux_sym_preproc_ifdef_token1] = ACTIONS(157), - [aux_sym_preproc_ifdef_token2] = ACTIONS(157), - [sym_preproc_directive] = ACTIONS(159), + [59] = { + [sym_preproc_include] = STATE(64), + [sym_preproc_def] = STATE(64), + [sym_preproc_function_def] = STATE(64), + [sym_preproc_call] = STATE(64), + [sym_preproc_if] = STATE(64), + [sym_preproc_ifdef] = STATE(64), + [sym_function_definition] = STATE(64), + [sym_declaration] = STATE(64), + [sym_type_definition] = STATE(64), + [sym__declaration_modifiers] = STATE(3706), + [sym__declaration_specifiers] = STATE(4618), + [sym_linkage_specification] = STATE(64), + [sym_attribute_specifier] = STATE(3706), + [sym_attribute_declaration] = STATE(1427), + [sym_ms_declspec_modifier] = STATE(3706), + [sym_ms_based_modifier] = STATE(7654), + [sym_ms_call_modifier] = STATE(2462), + [sym__declarator] = STATE(5881), + [sym_parenthesized_declarator] = STATE(5640), + [sym_attributed_declarator] = STATE(5640), + [sym_pointer_declarator] = STATE(5640), + [sym_function_declarator] = STATE(5588), + [sym_array_declarator] = STATE(5640), + [sym_compound_statement] = STATE(64), + [sym_storage_class_specifier] = STATE(3706), + [sym_type_qualifier] = STATE(3706), + [sym__type_specifier] = STATE(3826), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), + [sym_attributed_statement] = STATE(64), + [sym_labeled_statement] = STATE(64), + [sym_expression_statement] = STATE(64), + [sym_if_statement] = STATE(64), + [sym_switch_statement] = STATE(64), + [sym_case_statement] = STATE(64), + [sym_while_statement] = STATE(64), + [sym_do_statement] = STATE(64), + [sym_for_statement] = STATE(64), + [sym_return_statement] = STATE(64), + [sym_break_statement] = STATE(64), + [sym_continue_statement] = STATE(64), + [sym_goto_statement] = STATE(64), + [sym__expression] = STATE(4182), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7590), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym__empty_declaration] = STATE(64), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym__class_name] = STATE(6623), + [sym_virtual] = STATE(3706), + [sym_explicit_function_specifier] = STATE(2240), + [sym_dependent_type] = STATE(3723), + [sym_template_declaration] = STATE(64), + [sym_template_instantiation] = STATE(64), + [sym_operator_cast] = STATE(5937), + [sym__constructor_specifiers] = STATE(2240), + [sym_operator_cast_definition] = STATE(64), + [sym_operator_cast_declaration] = STATE(64), + [sym_constructor_or_destructor_definition] = STATE(64), + [sym_reference_declarator] = STATE(5640), + [sym_structured_binding_declarator] = STATE(5640), + [sym_template_type] = STATE(3921), + [sym_template_function] = STATE(4066), + [sym_namespace_definition] = STATE(64), + [sym_namespace_alias_definition] = STATE(64), + [sym_using_declaration] = STATE(64), + [sym_alias_declaration] = STATE(64), + [sym_static_assert_declaration] = STATE(64), + [sym_concept_definition] = STATE(64), + [sym_for_range_loop] = STATE(64), + [sym_co_return_statement] = STATE(64), + [sym_co_yield_statement] = STATE(64), + [sym_throw_statement] = STATE(64), + [sym_try_statement] = STATE(64), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_destructor_name] = STATE(5640), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5143), + [sym_qualified_identifier] = STATE(3249), + [sym_qualified_type_identifier] = STATE(3915), + [sym_qualified_operator_cast_identifier] = STATE(5937), + [sym_operator_name] = STATE(5640), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_preproc_if_repeat1] = STATE(64), + [aux_sym__declaration_specifiers_repeat1] = STATE(2514), + [aux_sym_attributed_declarator_repeat1] = STATE(309), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [aux_sym_operator_cast_definition_repeat1] = STATE(2240), + [sym_identifier] = ACTIONS(153), + [aux_sym_preproc_include_token1] = ACTIONS(155), + [aux_sym_preproc_def_token1] = ACTIONS(157), + [aux_sym_preproc_if_token1] = ACTIONS(161), + [aux_sym_preproc_ifdef_token1] = ACTIONS(163), + [aux_sym_preproc_ifdef_token2] = ACTIONS(163), + [sym_preproc_directive] = ACTIONS(165), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -40183,226 +56040,238 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_typedef] = ACTIONS(163), - [anon_sym_extern] = ACTIONS(165), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(43), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_RBRACE] = ACTIONS(875), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(173), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(61), - [anon_sym_unsigned] = ACTIONS(61), - [anon_sym_long] = ACTIONS(61), - [anon_sym_short] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(63), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(175), - [anon_sym_switch] = ACTIONS(177), - [anon_sym_case] = ACTIONS(179), - [anon_sym_default] = ACTIONS(181), - [anon_sym_while] = ACTIONS(183), - [anon_sym_do] = ACTIONS(185), - [anon_sym_for] = ACTIONS(187), - [anon_sym_return] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), - [anon_sym_goto] = ACTIONS(195), + [anon_sym_SEMI] = ACTIONS(167), + [anon_sym_typedef] = ACTIONS(169), + [anon_sym_extern] = ACTIONS(171), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(45), + [anon_sym___cdecl] = ACTIONS(47), + [anon_sym___clrcall] = ACTIONS(47), + [anon_sym___stdcall] = ACTIONS(47), + [anon_sym___fastcall] = ACTIONS(47), + [anon_sym___thiscall] = ACTIONS(47), + [anon_sym___vectorcall] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(738), + [anon_sym_RBRACE] = ACTIONS(782), + [anon_sym_LBRACK] = ACTIONS(51), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(179), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(181), + [anon_sym_switch] = ACTIONS(183), + [anon_sym_case] = ACTIONS(185), + [anon_sym_default] = ACTIONS(187), + [anon_sym_while] = ACTIONS(189), + [anon_sym_do] = ACTIONS(191), + [anon_sym_for] = ACTIONS(193), + [anon_sym_return] = ACTIONS(195), + [anon_sym_break] = ACTIONS(197), + [anon_sym_continue] = ACTIONS(199), + [anon_sym_goto] = ACTIONS(201), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(107), - [anon_sym_decltype] = ACTIONS(109), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_explicit] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(115), - [anon_sym_template] = ACTIONS(199), - [anon_sym_operator] = ACTIONS(119), - [anon_sym_try] = ACTIONS(201), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(203), - [anon_sym_namespace] = ACTIONS(205), - [anon_sym_using] = ACTIONS(207), - [anon_sym_static_assert] = ACTIONS(209), - [anon_sym_concept] = ACTIONS(211), - [anon_sym_co_return] = ACTIONS(213), - [anon_sym_co_yield] = ACTIONS(215), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(113), + [anon_sym_decltype] = ACTIONS(115), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_explicit] = ACTIONS(119), + [anon_sym_typename] = ACTIONS(121), + [anon_sym_template] = ACTIONS(207), + [anon_sym_operator] = ACTIONS(125), + [anon_sym_try] = ACTIONS(209), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(211), + [anon_sym_namespace] = ACTIONS(213), + [anon_sym_using] = ACTIONS(215), + [anon_sym_static_assert] = ACTIONS(217), + [anon_sym_concept] = ACTIONS(219), + [anon_sym_co_return] = ACTIONS(221), + [anon_sym_co_yield] = ACTIONS(223), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, - [71] = { - [sym_preproc_include] = STATE(29), - [sym_preproc_def] = STATE(29), - [sym_preproc_function_def] = STATE(29), - [sym_preproc_call] = STATE(29), - [sym_preproc_if] = STATE(29), - [sym_preproc_ifdef] = STATE(29), - [sym_function_definition] = STATE(29), - [sym_declaration] = STATE(29), - [sym_type_definition] = STATE(29), - [sym__declaration_modifiers] = STATE(3225), - [sym__declaration_specifiers] = STATE(3962), - [sym_linkage_specification] = STATE(29), - [sym_attribute_specifier] = STATE(3225), - [sym_attribute_declaration] = STATE(1136), - [sym_ms_declspec_modifier] = STATE(3225), - [sym_ms_based_modifier] = STATE(6104), - [sym_ms_call_modifier] = STATE(2065), - [sym__declarator] = STATE(5113), - [sym_parenthesized_declarator] = STATE(4918), - [sym_attributed_declarator] = STATE(4918), - [sym_pointer_declarator] = STATE(4918), - [sym_function_declarator] = STATE(4870), - [sym_array_declarator] = STATE(4918), - [sym_compound_statement] = STATE(29), - [sym_storage_class_specifier] = STATE(3225), - [sym_type_qualifier] = STATE(3225), - [sym__type_specifier] = STATE(3322), - [sym_sized_type_specifier] = STATE(3232), - [sym_enum_specifier] = STATE(3232), - [sym_struct_specifier] = STATE(3232), - [sym_union_specifier] = STATE(3232), - [sym_attributed_statement] = STATE(29), - [sym_labeled_statement] = STATE(29), - [sym_expression_statement] = STATE(29), - [sym_if_statement] = STATE(29), - [sym_switch_statement] = STATE(29), - [sym_case_statement] = STATE(29), - [sym_while_statement] = STATE(29), - [sym_do_statement] = STATE(29), - [sym_for_statement] = STATE(29), - [sym_return_statement] = STATE(29), - [sym_break_statement] = STATE(29), - [sym_continue_statement] = STATE(29), - [sym_goto_statement] = STATE(29), - [sym__expression] = STATE(3502), - [sym_comma_expression] = STATE(6595), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym__empty_declaration] = STATE(29), - [sym_placeholder_type_specifier] = STATE(3232), - [sym_decltype_auto] = STATE(3279), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3232), - [sym__class_name] = STATE(5753), - [sym_virtual] = STATE(3225), - [sym_explicit_function_specifier] = STATE(1936), - [sym_dependent_type] = STATE(3232), - [sym_template_declaration] = STATE(29), - [sym_template_instantiation] = STATE(29), - [sym_operator_cast] = STATE(5134), - [sym__constructor_specifiers] = STATE(1936), - [sym_operator_cast_definition] = STATE(29), - [sym_operator_cast_declaration] = STATE(29), - [sym_constructor_or_destructor_definition] = STATE(29), - [sym_reference_declarator] = STATE(4918), - [sym_structured_binding_declarator] = STATE(4918), - [sym_template_type] = STATE(3608), - [sym_template_function] = STATE(3494), - [sym_namespace_definition] = STATE(29), - [sym_namespace_alias_definition] = STATE(29), - [sym_using_declaration] = STATE(29), - [sym_alias_declaration] = STATE(29), - [sym_static_assert_declaration] = STATE(29), - [sym_concept_definition] = STATE(29), - [sym_for_range_loop] = STATE(29), - [sym_co_return_statement] = STATE(29), - [sym_co_yield_statement] = STATE(29), - [sym_throw_statement] = STATE(29), - [sym_try_statement] = STATE(29), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_destructor_name] = STATE(4918), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4460), - [sym_qualified_identifier] = STATE(2732), - [sym_qualified_type_identifier] = STATE(3593), - [sym_qualified_operator_cast_identifier] = STATE(5134), - [sym_operator_name] = STATE(4918), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_translation_unit_repeat1] = STATE(29), - [aux_sym__declaration_specifiers_repeat1] = STATE(2179), - [aux_sym_attributed_declarator_repeat1] = STATE(206), - [aux_sym_sized_type_specifier_repeat1] = STATE(3171), - [aux_sym_operator_cast_definition_repeat1] = STATE(1936), - [sym_identifier] = ACTIONS(147), - [aux_sym_preproc_include_token1] = ACTIONS(149), - [aux_sym_preproc_def_token1] = ACTIONS(151), - [aux_sym_preproc_if_token1] = ACTIONS(155), - [aux_sym_preproc_ifdef_token1] = ACTIONS(157), - [aux_sym_preproc_ifdef_token2] = ACTIONS(157), - [sym_preproc_directive] = ACTIONS(159), + [60] = { + [sym_preproc_include] = STATE(64), + [sym_preproc_def] = STATE(64), + [sym_preproc_function_def] = STATE(64), + [sym_preproc_call] = STATE(64), + [sym_preproc_if] = STATE(64), + [sym_preproc_ifdef] = STATE(64), + [sym_function_definition] = STATE(64), + [sym_declaration] = STATE(64), + [sym_type_definition] = STATE(64), + [sym__declaration_modifiers] = STATE(3706), + [sym__declaration_specifiers] = STATE(4618), + [sym_linkage_specification] = STATE(64), + [sym_attribute_specifier] = STATE(3706), + [sym_attribute_declaration] = STATE(1427), + [sym_ms_declspec_modifier] = STATE(3706), + [sym_ms_based_modifier] = STATE(7654), + [sym_ms_call_modifier] = STATE(2462), + [sym__declarator] = STATE(5881), + [sym_parenthesized_declarator] = STATE(5640), + [sym_attributed_declarator] = STATE(5640), + [sym_pointer_declarator] = STATE(5640), + [sym_function_declarator] = STATE(5588), + [sym_array_declarator] = STATE(5640), + [sym_compound_statement] = STATE(64), + [sym_storage_class_specifier] = STATE(3706), + [sym_type_qualifier] = STATE(3706), + [sym__type_specifier] = STATE(3826), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), + [sym_attributed_statement] = STATE(64), + [sym_labeled_statement] = STATE(64), + [sym_expression_statement] = STATE(64), + [sym_if_statement] = STATE(64), + [sym_switch_statement] = STATE(64), + [sym_case_statement] = STATE(64), + [sym_while_statement] = STATE(64), + [sym_do_statement] = STATE(64), + [sym_for_statement] = STATE(64), + [sym_return_statement] = STATE(64), + [sym_break_statement] = STATE(64), + [sym_continue_statement] = STATE(64), + [sym_goto_statement] = STATE(64), + [sym__expression] = STATE(4182), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7590), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym__empty_declaration] = STATE(64), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym__class_name] = STATE(6623), + [sym_virtual] = STATE(3706), + [sym_explicit_function_specifier] = STATE(2240), + [sym_dependent_type] = STATE(3723), + [sym_template_declaration] = STATE(64), + [sym_template_instantiation] = STATE(64), + [sym_operator_cast] = STATE(5937), + [sym__constructor_specifiers] = STATE(2240), + [sym_operator_cast_definition] = STATE(64), + [sym_operator_cast_declaration] = STATE(64), + [sym_constructor_or_destructor_definition] = STATE(64), + [sym_reference_declarator] = STATE(5640), + [sym_structured_binding_declarator] = STATE(5640), + [sym_template_type] = STATE(3921), + [sym_template_function] = STATE(4066), + [sym_namespace_definition] = STATE(64), + [sym_namespace_alias_definition] = STATE(64), + [sym_using_declaration] = STATE(64), + [sym_alias_declaration] = STATE(64), + [sym_static_assert_declaration] = STATE(64), + [sym_concept_definition] = STATE(64), + [sym_for_range_loop] = STATE(64), + [sym_co_return_statement] = STATE(64), + [sym_co_yield_statement] = STATE(64), + [sym_throw_statement] = STATE(64), + [sym_try_statement] = STATE(64), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_destructor_name] = STATE(5640), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5143), + [sym_qualified_identifier] = STATE(3249), + [sym_qualified_type_identifier] = STATE(3915), + [sym_qualified_operator_cast_identifier] = STATE(5937), + [sym_operator_name] = STATE(5640), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_preproc_if_repeat1] = STATE(64), + [aux_sym__declaration_specifiers_repeat1] = STATE(2514), + [aux_sym_attributed_declarator_repeat1] = STATE(309), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [aux_sym_operator_cast_definition_repeat1] = STATE(2240), + [sym_identifier] = ACTIONS(153), + [aux_sym_preproc_include_token1] = ACTIONS(155), + [aux_sym_preproc_def_token1] = ACTIONS(157), + [aux_sym_preproc_if_token1] = ACTIONS(161), + [aux_sym_preproc_ifdef_token1] = ACTIONS(163), + [aux_sym_preproc_ifdef_token2] = ACTIONS(163), + [sym_preproc_directive] = ACTIONS(165), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -40411,455 +56280,478 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_typedef] = ACTIONS(163), - [anon_sym_extern] = ACTIONS(165), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(43), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_RBRACE] = ACTIONS(877), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(173), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(61), - [anon_sym_unsigned] = ACTIONS(61), - [anon_sym_long] = ACTIONS(61), - [anon_sym_short] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(63), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(175), - [anon_sym_switch] = ACTIONS(177), - [anon_sym_case] = ACTIONS(179), - [anon_sym_default] = ACTIONS(181), - [anon_sym_while] = ACTIONS(183), - [anon_sym_do] = ACTIONS(185), - [anon_sym_for] = ACTIONS(187), - [anon_sym_return] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), - [anon_sym_goto] = ACTIONS(195), + [anon_sym_SEMI] = ACTIONS(167), + [anon_sym_typedef] = ACTIONS(169), + [anon_sym_extern] = ACTIONS(171), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(45), + [anon_sym___cdecl] = ACTIONS(47), + [anon_sym___clrcall] = ACTIONS(47), + [anon_sym___stdcall] = ACTIONS(47), + [anon_sym___fastcall] = ACTIONS(47), + [anon_sym___thiscall] = ACTIONS(47), + [anon_sym___vectorcall] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(738), + [anon_sym_RBRACE] = ACTIONS(784), + [anon_sym_LBRACK] = ACTIONS(51), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(179), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(181), + [anon_sym_switch] = ACTIONS(183), + [anon_sym_case] = ACTIONS(185), + [anon_sym_default] = ACTIONS(187), + [anon_sym_while] = ACTIONS(189), + [anon_sym_do] = ACTIONS(191), + [anon_sym_for] = ACTIONS(193), + [anon_sym_return] = ACTIONS(195), + [anon_sym_break] = ACTIONS(197), + [anon_sym_continue] = ACTIONS(199), + [anon_sym_goto] = ACTIONS(201), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(107), - [anon_sym_decltype] = ACTIONS(109), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_explicit] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(115), - [anon_sym_template] = ACTIONS(199), - [anon_sym_operator] = ACTIONS(119), - [anon_sym_try] = ACTIONS(201), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(203), - [anon_sym_namespace] = ACTIONS(205), - [anon_sym_using] = ACTIONS(207), - [anon_sym_static_assert] = ACTIONS(209), - [anon_sym_concept] = ACTIONS(211), - [anon_sym_co_return] = ACTIONS(213), - [anon_sym_co_yield] = ACTIONS(215), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(113), + [anon_sym_decltype] = ACTIONS(115), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_explicit] = ACTIONS(119), + [anon_sym_typename] = ACTIONS(121), + [anon_sym_template] = ACTIONS(207), + [anon_sym_operator] = ACTIONS(125), + [anon_sym_try] = ACTIONS(209), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(211), + [anon_sym_namespace] = ACTIONS(213), + [anon_sym_using] = ACTIONS(215), + [anon_sym_static_assert] = ACTIONS(217), + [anon_sym_concept] = ACTIONS(219), + [anon_sym_co_return] = ACTIONS(221), + [anon_sym_co_yield] = ACTIONS(223), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, - [72] = { - [sym_preproc_include] = STATE(72), - [sym_preproc_def] = STATE(72), - [sym_preproc_function_def] = STATE(72), - [sym_preproc_call] = STATE(72), - [sym_preproc_if] = STATE(72), - [sym_preproc_ifdef] = STATE(72), - [sym_function_definition] = STATE(72), - [sym_declaration] = STATE(72), - [sym_type_definition] = STATE(72), - [sym__declaration_modifiers] = STATE(3225), - [sym__declaration_specifiers] = STATE(3990), - [sym_linkage_specification] = STATE(72), - [sym_attribute_specifier] = STATE(3225), - [sym_attribute_declaration] = STATE(1136), - [sym_ms_declspec_modifier] = STATE(3225), - [sym_ms_based_modifier] = STATE(6104), - [sym_ms_call_modifier] = STATE(2018), - [sym__declarator] = STATE(5113), - [sym_parenthesized_declarator] = STATE(4918), - [sym_attributed_declarator] = STATE(4918), - [sym_pointer_declarator] = STATE(4918), - [sym_function_declarator] = STATE(4823), - [sym_array_declarator] = STATE(4918), - [sym_compound_statement] = STATE(72), - [sym_storage_class_specifier] = STATE(3225), - [sym_type_qualifier] = STATE(3225), - [sym__type_specifier] = STATE(3317), - [sym_sized_type_specifier] = STATE(3232), - [sym_enum_specifier] = STATE(3232), - [sym_struct_specifier] = STATE(3232), - [sym_union_specifier] = STATE(3232), - [sym_attributed_statement] = STATE(72), - [sym_labeled_statement] = STATE(72), - [sym_expression_statement] = STATE(72), - [sym_if_statement] = STATE(72), - [sym_switch_statement] = STATE(72), - [sym_case_statement] = STATE(72), - [sym_while_statement] = STATE(72), - [sym_do_statement] = STATE(72), - [sym_for_statement] = STATE(72), - [sym_return_statement] = STATE(72), - [sym_break_statement] = STATE(72), - [sym_continue_statement] = STATE(72), - [sym_goto_statement] = STATE(72), - [sym__expression] = STATE(3522), - [sym_comma_expression] = STATE(6276), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym__empty_declaration] = STATE(72), - [sym_placeholder_type_specifier] = STATE(3232), - [sym_decltype_auto] = STATE(3279), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3232), - [sym__class_name] = STATE(5753), - [sym_virtual] = STATE(3225), - [sym_explicit_function_specifier] = STATE(1958), - [sym_dependent_type] = STATE(3232), - [sym_template_declaration] = STATE(72), - [sym_template_instantiation] = STATE(72), - [sym_operator_cast] = STATE(5144), - [sym__constructor_specifiers] = STATE(1958), - [sym_operator_cast_definition] = STATE(72), - [sym_operator_cast_declaration] = STATE(72), - [sym_constructor_or_destructor_definition] = STATE(72), - [sym_reference_declarator] = STATE(4918), - [sym_structured_binding_declarator] = STATE(4918), - [sym_template_type] = STATE(3608), - [sym_template_function] = STATE(3494), - [sym_namespace_definition] = STATE(72), - [sym_namespace_alias_definition] = STATE(72), - [sym_using_declaration] = STATE(72), - [sym_alias_declaration] = STATE(72), - [sym_static_assert_declaration] = STATE(72), - [sym_concept_definition] = STATE(72), - [sym_for_range_loop] = STATE(72), - [sym_co_return_statement] = STATE(72), - [sym_co_yield_statement] = STATE(72), - [sym_throw_statement] = STATE(72), - [sym_try_statement] = STATE(72), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_destructor_name] = STATE(4918), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4460), - [sym_qualified_identifier] = STATE(2732), - [sym_qualified_type_identifier] = STATE(3593), - [sym_qualified_operator_cast_identifier] = STATE(5144), - [sym_operator_name] = STATE(4918), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_translation_unit_repeat1] = STATE(72), - [aux_sym__declaration_specifiers_repeat1] = STATE(2179), - [aux_sym_attributed_declarator_repeat1] = STATE(151), - [aux_sym_sized_type_specifier_repeat1] = STATE(3171), - [aux_sym_operator_cast_definition_repeat1] = STATE(1958), - [sym_identifier] = ACTIONS(879), - [aux_sym_preproc_include_token1] = ACTIONS(882), - [aux_sym_preproc_def_token1] = ACTIONS(885), - [aux_sym_preproc_if_token1] = ACTIONS(888), - [aux_sym_preproc_if_token2] = ACTIONS(345), - [aux_sym_preproc_ifdef_token1] = ACTIONS(891), - [aux_sym_preproc_ifdef_token2] = ACTIONS(891), - [sym_preproc_directive] = ACTIONS(894), - [anon_sym_LPAREN2] = ACTIONS(353), - [anon_sym_BANG] = ACTIONS(356), - [anon_sym_TILDE] = ACTIONS(359), - [anon_sym_DASH] = ACTIONS(362), - [anon_sym_PLUS] = ACTIONS(362), - [anon_sym_STAR] = ACTIONS(365), - [anon_sym_AMP_AMP] = ACTIONS(368), - [anon_sym_AMP] = ACTIONS(371), - [anon_sym_SEMI] = ACTIONS(897), - [anon_sym_typedef] = ACTIONS(900), - [anon_sym_extern] = ACTIONS(903), - [anon_sym___attribute__] = ACTIONS(383), - [anon_sym_COLON_COLON] = ACTIONS(386), - [anon_sym_LBRACK_LBRACK] = ACTIONS(389), - [anon_sym___declspec] = ACTIONS(392), - [anon_sym___based] = ACTIONS(395), - [anon_sym___cdecl] = ACTIONS(398), - [anon_sym___clrcall] = ACTIONS(398), - [anon_sym___stdcall] = ACTIONS(398), - [anon_sym___fastcall] = ACTIONS(398), - [anon_sym___thiscall] = ACTIONS(398), - [anon_sym___vectorcall] = ACTIONS(398), - [anon_sym_LBRACE] = ACTIONS(906), - [anon_sym_LBRACK] = ACTIONS(404), - [anon_sym_static] = ACTIONS(407), - [anon_sym_register] = ACTIONS(407), - [anon_sym_inline] = ACTIONS(909), - [anon_sym_thread_local] = ACTIONS(407), - [anon_sym_const] = ACTIONS(413), - [anon_sym_volatile] = ACTIONS(413), - [anon_sym_restrict] = ACTIONS(413), - [anon_sym__Atomic] = ACTIONS(413), - [anon_sym_mutable] = ACTIONS(413), - [anon_sym_constexpr] = ACTIONS(413), - [anon_sym_constinit] = ACTIONS(413), - [anon_sym_consteval] = ACTIONS(413), - [anon_sym_signed] = ACTIONS(416), - [anon_sym_unsigned] = ACTIONS(416), - [anon_sym_long] = ACTIONS(416), - [anon_sym_short] = ACTIONS(416), - [sym_primitive_type] = ACTIONS(419), - [anon_sym_enum] = ACTIONS(422), - [anon_sym_class] = ACTIONS(425), - [anon_sym_struct] = ACTIONS(428), - [anon_sym_union] = ACTIONS(431), - [anon_sym_if] = ACTIONS(912), - [anon_sym_switch] = ACTIONS(915), - [anon_sym_case] = ACTIONS(918), - [anon_sym_default] = ACTIONS(921), - [anon_sym_while] = ACTIONS(924), - [anon_sym_do] = ACTIONS(927), - [anon_sym_for] = ACTIONS(930), - [anon_sym_return] = ACTIONS(933), - [anon_sym_break] = ACTIONS(936), - [anon_sym_continue] = ACTIONS(939), - [anon_sym_goto] = ACTIONS(942), - [anon_sym_not] = ACTIONS(362), - [anon_sym_compl] = ACTIONS(362), - [anon_sym_DASH_DASH] = ACTIONS(467), - [anon_sym_PLUS_PLUS] = ACTIONS(467), - [anon_sym_sizeof] = ACTIONS(470), - [sym_number_literal] = ACTIONS(473), - [anon_sym_L_SQUOTE] = ACTIONS(476), - [anon_sym_u_SQUOTE] = ACTIONS(476), - [anon_sym_U_SQUOTE] = ACTIONS(476), - [anon_sym_u8_SQUOTE] = ACTIONS(476), - [anon_sym_SQUOTE] = ACTIONS(476), - [anon_sym_L_DQUOTE] = ACTIONS(479), - [anon_sym_u_DQUOTE] = ACTIONS(479), - [anon_sym_U_DQUOTE] = ACTIONS(479), - [anon_sym_u8_DQUOTE] = ACTIONS(479), - [anon_sym_DQUOTE] = ACTIONS(479), - [sym_true] = ACTIONS(482), - [sym_false] = ACTIONS(482), - [sym_null] = ACTIONS(482), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(485), - [anon_sym_decltype] = ACTIONS(488), - [anon_sym_virtual] = ACTIONS(491), - [anon_sym_explicit] = ACTIONS(494), - [anon_sym_typename] = ACTIONS(497), - [anon_sym_template] = ACTIONS(945), - [anon_sym_operator] = ACTIONS(503), - [anon_sym_try] = ACTIONS(948), - [anon_sym_delete] = ACTIONS(509), - [anon_sym_throw] = ACTIONS(951), - [anon_sym_namespace] = ACTIONS(954), - [anon_sym_using] = ACTIONS(957), - [anon_sym_static_assert] = ACTIONS(960), - [anon_sym_concept] = ACTIONS(963), - [anon_sym_co_return] = ACTIONS(966), - [anon_sym_co_yield] = ACTIONS(969), - [anon_sym_R_DQUOTE] = ACTIONS(533), - [anon_sym_LR_DQUOTE] = ACTIONS(533), - [anon_sym_uR_DQUOTE] = ACTIONS(533), - [anon_sym_UR_DQUOTE] = ACTIONS(533), - [anon_sym_u8R_DQUOTE] = ACTIONS(533), - [anon_sym_co_await] = ACTIONS(536), - [anon_sym_new] = ACTIONS(539), - [anon_sym_requires] = ACTIONS(542), - [sym_this] = ACTIONS(482), - [sym_nullptr] = ACTIONS(482), + [61] = { + [sym_preproc_include] = STATE(64), + [sym_preproc_def] = STATE(64), + [sym_preproc_function_def] = STATE(64), + [sym_preproc_call] = STATE(64), + [sym_preproc_if] = STATE(64), + [sym_preproc_ifdef] = STATE(64), + [sym_function_definition] = STATE(64), + [sym_declaration] = STATE(64), + [sym_type_definition] = STATE(64), + [sym__declaration_modifiers] = STATE(3706), + [sym__declaration_specifiers] = STATE(4618), + [sym_linkage_specification] = STATE(64), + [sym_attribute_specifier] = STATE(3706), + [sym_attribute_declaration] = STATE(1427), + [sym_ms_declspec_modifier] = STATE(3706), + [sym_ms_based_modifier] = STATE(7654), + [sym_ms_call_modifier] = STATE(2462), + [sym__declarator] = STATE(5881), + [sym_parenthesized_declarator] = STATE(5640), + [sym_attributed_declarator] = STATE(5640), + [sym_pointer_declarator] = STATE(5640), + [sym_function_declarator] = STATE(5588), + [sym_array_declarator] = STATE(5640), + [sym_compound_statement] = STATE(64), + [sym_storage_class_specifier] = STATE(3706), + [sym_type_qualifier] = STATE(3706), + [sym__type_specifier] = STATE(3826), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), + [sym_attributed_statement] = STATE(64), + [sym_labeled_statement] = STATE(64), + [sym_expression_statement] = STATE(64), + [sym_if_statement] = STATE(64), + [sym_switch_statement] = STATE(64), + [sym_case_statement] = STATE(64), + [sym_while_statement] = STATE(64), + [sym_do_statement] = STATE(64), + [sym_for_statement] = STATE(64), + [sym_return_statement] = STATE(64), + [sym_break_statement] = STATE(64), + [sym_continue_statement] = STATE(64), + [sym_goto_statement] = STATE(64), + [sym__expression] = STATE(4182), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7590), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym__empty_declaration] = STATE(64), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym__class_name] = STATE(6623), + [sym_virtual] = STATE(3706), + [sym_explicit_function_specifier] = STATE(2240), + [sym_dependent_type] = STATE(3723), + [sym_template_declaration] = STATE(64), + [sym_template_instantiation] = STATE(64), + [sym_operator_cast] = STATE(5937), + [sym__constructor_specifiers] = STATE(2240), + [sym_operator_cast_definition] = STATE(64), + [sym_operator_cast_declaration] = STATE(64), + [sym_constructor_or_destructor_definition] = STATE(64), + [sym_reference_declarator] = STATE(5640), + [sym_structured_binding_declarator] = STATE(5640), + [sym_template_type] = STATE(3921), + [sym_template_function] = STATE(4066), + [sym_namespace_definition] = STATE(64), + [sym_namespace_alias_definition] = STATE(64), + [sym_using_declaration] = STATE(64), + [sym_alias_declaration] = STATE(64), + [sym_static_assert_declaration] = STATE(64), + [sym_concept_definition] = STATE(64), + [sym_for_range_loop] = STATE(64), + [sym_co_return_statement] = STATE(64), + [sym_co_yield_statement] = STATE(64), + [sym_throw_statement] = STATE(64), + [sym_try_statement] = STATE(64), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_destructor_name] = STATE(5640), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5143), + [sym_qualified_identifier] = STATE(3249), + [sym_qualified_type_identifier] = STATE(3915), + [sym_qualified_operator_cast_identifier] = STATE(5937), + [sym_operator_name] = STATE(5640), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_preproc_if_repeat1] = STATE(64), + [aux_sym__declaration_specifiers_repeat1] = STATE(2514), + [aux_sym_attributed_declarator_repeat1] = STATE(309), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [aux_sym_operator_cast_definition_repeat1] = STATE(2240), + [sym_identifier] = ACTIONS(153), + [aux_sym_preproc_include_token1] = ACTIONS(155), + [aux_sym_preproc_def_token1] = ACTIONS(157), + [aux_sym_preproc_if_token1] = ACTIONS(161), + [aux_sym_preproc_ifdef_token1] = ACTIONS(163), + [aux_sym_preproc_ifdef_token2] = ACTIONS(163), + [sym_preproc_directive] = ACTIONS(165), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(167), + [anon_sym_typedef] = ACTIONS(169), + [anon_sym_extern] = ACTIONS(171), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(45), + [anon_sym___cdecl] = ACTIONS(47), + [anon_sym___clrcall] = ACTIONS(47), + [anon_sym___stdcall] = ACTIONS(47), + [anon_sym___fastcall] = ACTIONS(47), + [anon_sym___thiscall] = ACTIONS(47), + [anon_sym___vectorcall] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(738), + [anon_sym_RBRACE] = ACTIONS(786), + [anon_sym_LBRACK] = ACTIONS(51), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(179), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(181), + [anon_sym_switch] = ACTIONS(183), + [anon_sym_case] = ACTIONS(185), + [anon_sym_default] = ACTIONS(187), + [anon_sym_while] = ACTIONS(189), + [anon_sym_do] = ACTIONS(191), + [anon_sym_for] = ACTIONS(193), + [anon_sym_return] = ACTIONS(195), + [anon_sym_break] = ACTIONS(197), + [anon_sym_continue] = ACTIONS(199), + [anon_sym_goto] = ACTIONS(201), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(113), + [anon_sym_decltype] = ACTIONS(115), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_explicit] = ACTIONS(119), + [anon_sym_typename] = ACTIONS(121), + [anon_sym_template] = ACTIONS(207), + [anon_sym_operator] = ACTIONS(125), + [anon_sym_try] = ACTIONS(209), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(211), + [anon_sym_namespace] = ACTIONS(213), + [anon_sym_using] = ACTIONS(215), + [anon_sym_static_assert] = ACTIONS(217), + [anon_sym_concept] = ACTIONS(219), + [anon_sym_co_return] = ACTIONS(221), + [anon_sym_co_yield] = ACTIONS(223), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, - [73] = { - [sym_preproc_include] = STATE(33), - [sym_preproc_def] = STATE(33), - [sym_preproc_function_def] = STATE(33), - [sym_preproc_call] = STATE(33), - [sym_preproc_if] = STATE(33), - [sym_preproc_ifdef] = STATE(33), - [sym_function_definition] = STATE(33), - [sym_declaration] = STATE(33), - [sym_type_definition] = STATE(33), - [sym__declaration_modifiers] = STATE(3225), - [sym__declaration_specifiers] = STATE(3946), - [sym_linkage_specification] = STATE(33), - [sym_attribute_specifier] = STATE(3225), - [sym_attribute_declaration] = STATE(1136), - [sym_ms_declspec_modifier] = STATE(3225), - [sym_ms_based_modifier] = STATE(6104), - [sym_ms_call_modifier] = STATE(2076), - [sym__declarator] = STATE(5113), - [sym_parenthesized_declarator] = STATE(4918), - [sym_attributed_declarator] = STATE(4918), - [sym_pointer_declarator] = STATE(4918), - [sym_function_declarator] = STATE(4835), - [sym_array_declarator] = STATE(4918), - [sym_compound_statement] = STATE(33), - [sym_storage_class_specifier] = STATE(3225), - [sym_type_qualifier] = STATE(3225), - [sym__type_specifier] = STATE(3325), - [sym_sized_type_specifier] = STATE(3232), - [sym_enum_specifier] = STATE(3232), - [sym_struct_specifier] = STATE(3232), - [sym_union_specifier] = STATE(3232), - [sym_attributed_statement] = STATE(33), - [sym_labeled_statement] = STATE(33), - [sym_expression_statement] = STATE(33), - [sym_if_statement] = STATE(33), - [sym_switch_statement] = STATE(33), - [sym_case_statement] = STATE(33), - [sym_while_statement] = STATE(33), - [sym_do_statement] = STATE(33), - [sym_for_statement] = STATE(33), - [sym_return_statement] = STATE(33), - [sym_break_statement] = STATE(33), - [sym_continue_statement] = STATE(33), - [sym_goto_statement] = STATE(33), - [sym__expression] = STATE(3622), - [sym_comma_expression] = STATE(6125), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym__empty_declaration] = STATE(33), - [sym_placeholder_type_specifier] = STATE(3232), - [sym_decltype_auto] = STATE(3279), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3232), - [sym__class_name] = STATE(5753), - [sym_virtual] = STATE(3225), - [sym_explicit_function_specifier] = STATE(1929), - [sym_dependent_type] = STATE(3232), - [sym_template_declaration] = STATE(33), - [sym_template_instantiation] = STATE(33), - [sym_operator_cast] = STATE(5130), - [sym__constructor_specifiers] = STATE(1929), - [sym_operator_cast_definition] = STATE(33), - [sym_operator_cast_declaration] = STATE(33), - [sym_constructor_or_destructor_definition] = STATE(33), - [sym_reference_declarator] = STATE(4918), - [sym_structured_binding_declarator] = STATE(4918), - [sym_template_type] = STATE(3608), - [sym_template_function] = STATE(3494), - [sym_namespace_definition] = STATE(33), - [sym_namespace_alias_definition] = STATE(33), - [sym_using_declaration] = STATE(33), - [sym_alias_declaration] = STATE(33), - [sym_static_assert_declaration] = STATE(33), - [sym_concept_definition] = STATE(33), - [sym_for_range_loop] = STATE(33), - [sym_co_return_statement] = STATE(33), - [sym_co_yield_statement] = STATE(33), - [sym_throw_statement] = STATE(33), - [sym_try_statement] = STATE(33), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_destructor_name] = STATE(4918), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4460), - [sym_qualified_identifier] = STATE(2732), - [sym_qualified_type_identifier] = STATE(3593), - [sym_qualified_operator_cast_identifier] = STATE(5130), - [sym_operator_name] = STATE(4918), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_translation_unit_repeat1] = STATE(33), - [aux_sym__declaration_specifiers_repeat1] = STATE(2179), - [aux_sym_attributed_declarator_repeat1] = STATE(172), - [aux_sym_sized_type_specifier_repeat1] = STATE(3171), - [aux_sym_operator_cast_definition_repeat1] = STATE(1929), - [ts_builtin_sym_end] = ACTIONS(972), - [sym_identifier] = ACTIONS(7), - [aux_sym_preproc_include_token1] = ACTIONS(9), - [aux_sym_preproc_def_token1] = ACTIONS(11), - [aux_sym_preproc_if_token1] = ACTIONS(13), - [aux_sym_preproc_ifdef_token1] = ACTIONS(15), - [aux_sym_preproc_ifdef_token2] = ACTIONS(15), - [sym_preproc_directive] = ACTIONS(17), + [62] = { + [sym_preproc_include] = STATE(64), + [sym_preproc_def] = STATE(64), + [sym_preproc_function_def] = STATE(64), + [sym_preproc_call] = STATE(64), + [sym_preproc_if] = STATE(64), + [sym_preproc_ifdef] = STATE(64), + [sym_function_definition] = STATE(64), + [sym_declaration] = STATE(64), + [sym_type_definition] = STATE(64), + [sym__declaration_modifiers] = STATE(3706), + [sym__declaration_specifiers] = STATE(4618), + [sym_linkage_specification] = STATE(64), + [sym_attribute_specifier] = STATE(3706), + [sym_attribute_declaration] = STATE(1427), + [sym_ms_declspec_modifier] = STATE(3706), + [sym_ms_based_modifier] = STATE(7654), + [sym_ms_call_modifier] = STATE(2462), + [sym__declarator] = STATE(5881), + [sym_parenthesized_declarator] = STATE(5640), + [sym_attributed_declarator] = STATE(5640), + [sym_pointer_declarator] = STATE(5640), + [sym_function_declarator] = STATE(5588), + [sym_array_declarator] = STATE(5640), + [sym_compound_statement] = STATE(64), + [sym_storage_class_specifier] = STATE(3706), + [sym_type_qualifier] = STATE(3706), + [sym__type_specifier] = STATE(3826), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), + [sym_attributed_statement] = STATE(64), + [sym_labeled_statement] = STATE(64), + [sym_expression_statement] = STATE(64), + [sym_if_statement] = STATE(64), + [sym_switch_statement] = STATE(64), + [sym_case_statement] = STATE(64), + [sym_while_statement] = STATE(64), + [sym_do_statement] = STATE(64), + [sym_for_statement] = STATE(64), + [sym_return_statement] = STATE(64), + [sym_break_statement] = STATE(64), + [sym_continue_statement] = STATE(64), + [sym_goto_statement] = STATE(64), + [sym__expression] = STATE(4182), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7590), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym__empty_declaration] = STATE(64), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym__class_name] = STATE(6623), + [sym_virtual] = STATE(3706), + [sym_explicit_function_specifier] = STATE(2240), + [sym_dependent_type] = STATE(3723), + [sym_template_declaration] = STATE(64), + [sym_template_instantiation] = STATE(64), + [sym_operator_cast] = STATE(5937), + [sym__constructor_specifiers] = STATE(2240), + [sym_operator_cast_definition] = STATE(64), + [sym_operator_cast_declaration] = STATE(64), + [sym_constructor_or_destructor_definition] = STATE(64), + [sym_reference_declarator] = STATE(5640), + [sym_structured_binding_declarator] = STATE(5640), + [sym_template_type] = STATE(3921), + [sym_template_function] = STATE(4066), + [sym_namespace_definition] = STATE(64), + [sym_namespace_alias_definition] = STATE(64), + [sym_using_declaration] = STATE(64), + [sym_alias_declaration] = STATE(64), + [sym_static_assert_declaration] = STATE(64), + [sym_concept_definition] = STATE(64), + [sym_for_range_loop] = STATE(64), + [sym_co_return_statement] = STATE(64), + [sym_co_yield_statement] = STATE(64), + [sym_throw_statement] = STATE(64), + [sym_try_statement] = STATE(64), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_destructor_name] = STATE(5640), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5143), + [sym_qualified_identifier] = STATE(3249), + [sym_qualified_type_identifier] = STATE(3915), + [sym_qualified_operator_cast_identifier] = STATE(5937), + [sym_operator_name] = STATE(5640), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_preproc_if_repeat1] = STATE(64), + [aux_sym__declaration_specifiers_repeat1] = STATE(2514), + [aux_sym_attributed_declarator_repeat1] = STATE(309), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [aux_sym_operator_cast_definition_repeat1] = STATE(2240), + [sym_identifier] = ACTIONS(153), + [aux_sym_preproc_include_token1] = ACTIONS(155), + [aux_sym_preproc_def_token1] = ACTIONS(157), + [aux_sym_preproc_if_token1] = ACTIONS(161), + [aux_sym_preproc_ifdef_token1] = ACTIONS(163), + [aux_sym_preproc_ifdef_token2] = ACTIONS(163), + [sym_preproc_directive] = ACTIONS(165), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -40868,225 +56760,238 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(33), - [anon_sym_typedef] = ACTIONS(35), - [anon_sym_extern] = ACTIONS(37), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(43), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(57), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(61), - [anon_sym_unsigned] = ACTIONS(61), - [anon_sym_long] = ACTIONS(61), - [anon_sym_short] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(63), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(73), - [anon_sym_switch] = ACTIONS(75), - [anon_sym_case] = ACTIONS(77), - [anon_sym_default] = ACTIONS(79), - [anon_sym_while] = ACTIONS(81), - [anon_sym_do] = ACTIONS(83), - [anon_sym_for] = ACTIONS(85), - [anon_sym_return] = ACTIONS(87), - [anon_sym_break] = ACTIONS(89), - [anon_sym_continue] = ACTIONS(91), - [anon_sym_goto] = ACTIONS(93), + [anon_sym_SEMI] = ACTIONS(167), + [anon_sym_typedef] = ACTIONS(169), + [anon_sym_extern] = ACTIONS(171), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(45), + [anon_sym___cdecl] = ACTIONS(47), + [anon_sym___clrcall] = ACTIONS(47), + [anon_sym___stdcall] = ACTIONS(47), + [anon_sym___fastcall] = ACTIONS(47), + [anon_sym___thiscall] = ACTIONS(47), + [anon_sym___vectorcall] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(738), + [anon_sym_RBRACE] = ACTIONS(788), + [anon_sym_LBRACK] = ACTIONS(51), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(179), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(181), + [anon_sym_switch] = ACTIONS(183), + [anon_sym_case] = ACTIONS(185), + [anon_sym_default] = ACTIONS(187), + [anon_sym_while] = ACTIONS(189), + [anon_sym_do] = ACTIONS(191), + [anon_sym_for] = ACTIONS(193), + [anon_sym_return] = ACTIONS(195), + [anon_sym_break] = ACTIONS(197), + [anon_sym_continue] = ACTIONS(199), + [anon_sym_goto] = ACTIONS(201), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(107), - [anon_sym_decltype] = ACTIONS(109), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_explicit] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(115), - [anon_sym_template] = ACTIONS(117), - [anon_sym_operator] = ACTIONS(119), - [anon_sym_try] = ACTIONS(121), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(125), - [anon_sym_namespace] = ACTIONS(127), - [anon_sym_using] = ACTIONS(129), - [anon_sym_static_assert] = ACTIONS(131), - [anon_sym_concept] = ACTIONS(133), - [anon_sym_co_return] = ACTIONS(135), - [anon_sym_co_yield] = ACTIONS(137), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(113), + [anon_sym_decltype] = ACTIONS(115), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_explicit] = ACTIONS(119), + [anon_sym_typename] = ACTIONS(121), + [anon_sym_template] = ACTIONS(207), + [anon_sym_operator] = ACTIONS(125), + [anon_sym_try] = ACTIONS(209), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(211), + [anon_sym_namespace] = ACTIONS(213), + [anon_sym_using] = ACTIONS(215), + [anon_sym_static_assert] = ACTIONS(217), + [anon_sym_concept] = ACTIONS(219), + [anon_sym_co_return] = ACTIONS(221), + [anon_sym_co_yield] = ACTIONS(223), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, - [74] = { - [sym_preproc_include] = STATE(29), - [sym_preproc_def] = STATE(29), - [sym_preproc_function_def] = STATE(29), - [sym_preproc_call] = STATE(29), - [sym_preproc_if] = STATE(29), - [sym_preproc_ifdef] = STATE(29), - [sym_function_definition] = STATE(29), - [sym_declaration] = STATE(29), - [sym_type_definition] = STATE(29), - [sym__declaration_modifiers] = STATE(3225), - [sym__declaration_specifiers] = STATE(3962), - [sym_linkage_specification] = STATE(29), - [sym_attribute_specifier] = STATE(3225), - [sym_attribute_declaration] = STATE(1136), - [sym_ms_declspec_modifier] = STATE(3225), - [sym_ms_based_modifier] = STATE(6104), - [sym_ms_call_modifier] = STATE(2065), - [sym__declarator] = STATE(5113), - [sym_parenthesized_declarator] = STATE(4918), - [sym_attributed_declarator] = STATE(4918), - [sym_pointer_declarator] = STATE(4918), - [sym_function_declarator] = STATE(4870), - [sym_array_declarator] = STATE(4918), - [sym_compound_statement] = STATE(29), - [sym_storage_class_specifier] = STATE(3225), - [sym_type_qualifier] = STATE(3225), - [sym__type_specifier] = STATE(3322), - [sym_sized_type_specifier] = STATE(3232), - [sym_enum_specifier] = STATE(3232), - [sym_struct_specifier] = STATE(3232), - [sym_union_specifier] = STATE(3232), - [sym_attributed_statement] = STATE(29), - [sym_labeled_statement] = STATE(29), - [sym_expression_statement] = STATE(29), - [sym_if_statement] = STATE(29), - [sym_switch_statement] = STATE(29), - [sym_case_statement] = STATE(29), - [sym_while_statement] = STATE(29), - [sym_do_statement] = STATE(29), - [sym_for_statement] = STATE(29), - [sym_return_statement] = STATE(29), - [sym_break_statement] = STATE(29), - [sym_continue_statement] = STATE(29), - [sym_goto_statement] = STATE(29), - [sym__expression] = STATE(3502), - [sym_comma_expression] = STATE(6595), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym__empty_declaration] = STATE(29), - [sym_placeholder_type_specifier] = STATE(3232), - [sym_decltype_auto] = STATE(3279), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3232), - [sym__class_name] = STATE(5753), - [sym_virtual] = STATE(3225), - [sym_explicit_function_specifier] = STATE(1936), - [sym_dependent_type] = STATE(3232), - [sym_template_declaration] = STATE(29), - [sym_template_instantiation] = STATE(29), - [sym_operator_cast] = STATE(5134), - [sym__constructor_specifiers] = STATE(1936), - [sym_operator_cast_definition] = STATE(29), - [sym_operator_cast_declaration] = STATE(29), - [sym_constructor_or_destructor_definition] = STATE(29), - [sym_reference_declarator] = STATE(4918), - [sym_structured_binding_declarator] = STATE(4918), - [sym_template_type] = STATE(3608), - [sym_template_function] = STATE(3494), - [sym_namespace_definition] = STATE(29), - [sym_namespace_alias_definition] = STATE(29), - [sym_using_declaration] = STATE(29), - [sym_alias_declaration] = STATE(29), - [sym_static_assert_declaration] = STATE(29), - [sym_concept_definition] = STATE(29), - [sym_for_range_loop] = STATE(29), - [sym_co_return_statement] = STATE(29), - [sym_co_yield_statement] = STATE(29), - [sym_throw_statement] = STATE(29), - [sym_try_statement] = STATE(29), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_destructor_name] = STATE(4918), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4460), - [sym_qualified_identifier] = STATE(2732), - [sym_qualified_type_identifier] = STATE(3593), - [sym_qualified_operator_cast_identifier] = STATE(5134), - [sym_operator_name] = STATE(4918), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_translation_unit_repeat1] = STATE(29), - [aux_sym__declaration_specifiers_repeat1] = STATE(2179), - [aux_sym_attributed_declarator_repeat1] = STATE(206), - [aux_sym_sized_type_specifier_repeat1] = STATE(3171), - [aux_sym_operator_cast_definition_repeat1] = STATE(1936), - [sym_identifier] = ACTIONS(147), - [aux_sym_preproc_include_token1] = ACTIONS(149), - [aux_sym_preproc_def_token1] = ACTIONS(151), - [aux_sym_preproc_if_token1] = ACTIONS(155), - [aux_sym_preproc_ifdef_token1] = ACTIONS(157), - [aux_sym_preproc_ifdef_token2] = ACTIONS(157), - [sym_preproc_directive] = ACTIONS(159), + [63] = { + [sym_preproc_include] = STATE(64), + [sym_preproc_def] = STATE(64), + [sym_preproc_function_def] = STATE(64), + [sym_preproc_call] = STATE(64), + [sym_preproc_if] = STATE(64), + [sym_preproc_ifdef] = STATE(64), + [sym_function_definition] = STATE(64), + [sym_declaration] = STATE(64), + [sym_type_definition] = STATE(64), + [sym__declaration_modifiers] = STATE(3706), + [sym__declaration_specifiers] = STATE(4618), + [sym_linkage_specification] = STATE(64), + [sym_attribute_specifier] = STATE(3706), + [sym_attribute_declaration] = STATE(1427), + [sym_ms_declspec_modifier] = STATE(3706), + [sym_ms_based_modifier] = STATE(7654), + [sym_ms_call_modifier] = STATE(2462), + [sym__declarator] = STATE(5881), + [sym_parenthesized_declarator] = STATE(5640), + [sym_attributed_declarator] = STATE(5640), + [sym_pointer_declarator] = STATE(5640), + [sym_function_declarator] = STATE(5588), + [sym_array_declarator] = STATE(5640), + [sym_compound_statement] = STATE(64), + [sym_storage_class_specifier] = STATE(3706), + [sym_type_qualifier] = STATE(3706), + [sym__type_specifier] = STATE(3826), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), + [sym_attributed_statement] = STATE(64), + [sym_labeled_statement] = STATE(64), + [sym_expression_statement] = STATE(64), + [sym_if_statement] = STATE(64), + [sym_switch_statement] = STATE(64), + [sym_case_statement] = STATE(64), + [sym_while_statement] = STATE(64), + [sym_do_statement] = STATE(64), + [sym_for_statement] = STATE(64), + [sym_return_statement] = STATE(64), + [sym_break_statement] = STATE(64), + [sym_continue_statement] = STATE(64), + [sym_goto_statement] = STATE(64), + [sym__expression] = STATE(4182), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7590), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym__empty_declaration] = STATE(64), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym__class_name] = STATE(6623), + [sym_virtual] = STATE(3706), + [sym_explicit_function_specifier] = STATE(2240), + [sym_dependent_type] = STATE(3723), + [sym_template_declaration] = STATE(64), + [sym_template_instantiation] = STATE(64), + [sym_operator_cast] = STATE(5937), + [sym__constructor_specifiers] = STATE(2240), + [sym_operator_cast_definition] = STATE(64), + [sym_operator_cast_declaration] = STATE(64), + [sym_constructor_or_destructor_definition] = STATE(64), + [sym_reference_declarator] = STATE(5640), + [sym_structured_binding_declarator] = STATE(5640), + [sym_template_type] = STATE(3921), + [sym_template_function] = STATE(4066), + [sym_namespace_definition] = STATE(64), + [sym_namespace_alias_definition] = STATE(64), + [sym_using_declaration] = STATE(64), + [sym_alias_declaration] = STATE(64), + [sym_static_assert_declaration] = STATE(64), + [sym_concept_definition] = STATE(64), + [sym_for_range_loop] = STATE(64), + [sym_co_return_statement] = STATE(64), + [sym_co_yield_statement] = STATE(64), + [sym_throw_statement] = STATE(64), + [sym_try_statement] = STATE(64), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_destructor_name] = STATE(5640), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5143), + [sym_qualified_identifier] = STATE(3249), + [sym_qualified_type_identifier] = STATE(3915), + [sym_qualified_operator_cast_identifier] = STATE(5937), + [sym_operator_name] = STATE(5640), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_preproc_if_repeat1] = STATE(64), + [aux_sym__declaration_specifiers_repeat1] = STATE(2514), + [aux_sym_attributed_declarator_repeat1] = STATE(309), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [aux_sym_operator_cast_definition_repeat1] = STATE(2240), + [sym_identifier] = ACTIONS(153), + [aux_sym_preproc_include_token1] = ACTIONS(155), + [aux_sym_preproc_def_token1] = ACTIONS(157), + [aux_sym_preproc_if_token1] = ACTIONS(161), + [aux_sym_preproc_ifdef_token1] = ACTIONS(163), + [aux_sym_preproc_ifdef_token2] = ACTIONS(163), + [sym_preproc_directive] = ACTIONS(165), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -41095,226 +57000,478 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_typedef] = ACTIONS(163), - [anon_sym_extern] = ACTIONS(165), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(43), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_RBRACE] = ACTIONS(974), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(173), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(61), - [anon_sym_unsigned] = ACTIONS(61), - [anon_sym_long] = ACTIONS(61), - [anon_sym_short] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(63), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(175), - [anon_sym_switch] = ACTIONS(177), - [anon_sym_case] = ACTIONS(179), - [anon_sym_default] = ACTIONS(181), - [anon_sym_while] = ACTIONS(183), - [anon_sym_do] = ACTIONS(185), - [anon_sym_for] = ACTIONS(187), - [anon_sym_return] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), - [anon_sym_goto] = ACTIONS(195), + [anon_sym_SEMI] = ACTIONS(167), + [anon_sym_typedef] = ACTIONS(169), + [anon_sym_extern] = ACTIONS(171), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(45), + [anon_sym___cdecl] = ACTIONS(47), + [anon_sym___clrcall] = ACTIONS(47), + [anon_sym___stdcall] = ACTIONS(47), + [anon_sym___fastcall] = ACTIONS(47), + [anon_sym___thiscall] = ACTIONS(47), + [anon_sym___vectorcall] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(738), + [anon_sym_RBRACE] = ACTIONS(790), + [anon_sym_LBRACK] = ACTIONS(51), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(179), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(181), + [anon_sym_switch] = ACTIONS(183), + [anon_sym_case] = ACTIONS(185), + [anon_sym_default] = ACTIONS(187), + [anon_sym_while] = ACTIONS(189), + [anon_sym_do] = ACTIONS(191), + [anon_sym_for] = ACTIONS(193), + [anon_sym_return] = ACTIONS(195), + [anon_sym_break] = ACTIONS(197), + [anon_sym_continue] = ACTIONS(199), + [anon_sym_goto] = ACTIONS(201), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(107), - [anon_sym_decltype] = ACTIONS(109), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_explicit] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(115), - [anon_sym_template] = ACTIONS(199), - [anon_sym_operator] = ACTIONS(119), - [anon_sym_try] = ACTIONS(201), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(203), - [anon_sym_namespace] = ACTIONS(205), - [anon_sym_using] = ACTIONS(207), - [anon_sym_static_assert] = ACTIONS(209), - [anon_sym_concept] = ACTIONS(211), - [anon_sym_co_return] = ACTIONS(213), - [anon_sym_co_yield] = ACTIONS(215), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(113), + [anon_sym_decltype] = ACTIONS(115), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_explicit] = ACTIONS(119), + [anon_sym_typename] = ACTIONS(121), + [anon_sym_template] = ACTIONS(207), + [anon_sym_operator] = ACTIONS(125), + [anon_sym_try] = ACTIONS(209), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(211), + [anon_sym_namespace] = ACTIONS(213), + [anon_sym_using] = ACTIONS(215), + [anon_sym_static_assert] = ACTIONS(217), + [anon_sym_concept] = ACTIONS(219), + [anon_sym_co_return] = ACTIONS(221), + [anon_sym_co_yield] = ACTIONS(223), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, - [75] = { - [sym_preproc_include] = STATE(29), - [sym_preproc_def] = STATE(29), - [sym_preproc_function_def] = STATE(29), - [sym_preproc_call] = STATE(29), - [sym_preproc_if] = STATE(29), - [sym_preproc_ifdef] = STATE(29), - [sym_function_definition] = STATE(29), - [sym_declaration] = STATE(29), - [sym_type_definition] = STATE(29), - [sym__declaration_modifiers] = STATE(3225), - [sym__declaration_specifiers] = STATE(3962), - [sym_linkage_specification] = STATE(29), - [sym_attribute_specifier] = STATE(3225), - [sym_attribute_declaration] = STATE(1136), - [sym_ms_declspec_modifier] = STATE(3225), - [sym_ms_based_modifier] = STATE(6104), - [sym_ms_call_modifier] = STATE(2065), - [sym__declarator] = STATE(5113), - [sym_parenthesized_declarator] = STATE(4918), - [sym_attributed_declarator] = STATE(4918), - [sym_pointer_declarator] = STATE(4918), - [sym_function_declarator] = STATE(4870), - [sym_array_declarator] = STATE(4918), - [sym_compound_statement] = STATE(29), - [sym_storage_class_specifier] = STATE(3225), - [sym_type_qualifier] = STATE(3225), - [sym__type_specifier] = STATE(3322), - [sym_sized_type_specifier] = STATE(3232), - [sym_enum_specifier] = STATE(3232), - [sym_struct_specifier] = STATE(3232), - [sym_union_specifier] = STATE(3232), - [sym_attributed_statement] = STATE(29), - [sym_labeled_statement] = STATE(29), - [sym_expression_statement] = STATE(29), - [sym_if_statement] = STATE(29), - [sym_switch_statement] = STATE(29), - [sym_case_statement] = STATE(29), - [sym_while_statement] = STATE(29), - [sym_do_statement] = STATE(29), - [sym_for_statement] = STATE(29), - [sym_return_statement] = STATE(29), - [sym_break_statement] = STATE(29), - [sym_continue_statement] = STATE(29), - [sym_goto_statement] = STATE(29), - [sym__expression] = STATE(3502), - [sym_comma_expression] = STATE(6595), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym__empty_declaration] = STATE(29), - [sym_placeholder_type_specifier] = STATE(3232), - [sym_decltype_auto] = STATE(3279), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3232), - [sym__class_name] = STATE(5753), - [sym_virtual] = STATE(3225), - [sym_explicit_function_specifier] = STATE(1936), - [sym_dependent_type] = STATE(3232), - [sym_template_declaration] = STATE(29), - [sym_template_instantiation] = STATE(29), - [sym_operator_cast] = STATE(5134), - [sym__constructor_specifiers] = STATE(1936), - [sym_operator_cast_definition] = STATE(29), - [sym_operator_cast_declaration] = STATE(29), - [sym_constructor_or_destructor_definition] = STATE(29), - [sym_reference_declarator] = STATE(4918), - [sym_structured_binding_declarator] = STATE(4918), - [sym_template_type] = STATE(3608), - [sym_template_function] = STATE(3494), - [sym_namespace_definition] = STATE(29), - [sym_namespace_alias_definition] = STATE(29), - [sym_using_declaration] = STATE(29), - [sym_alias_declaration] = STATE(29), - [sym_static_assert_declaration] = STATE(29), - [sym_concept_definition] = STATE(29), - [sym_for_range_loop] = STATE(29), - [sym_co_return_statement] = STATE(29), - [sym_co_yield_statement] = STATE(29), - [sym_throw_statement] = STATE(29), - [sym_try_statement] = STATE(29), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_destructor_name] = STATE(4918), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4460), - [sym_qualified_identifier] = STATE(2732), - [sym_qualified_type_identifier] = STATE(3593), - [sym_qualified_operator_cast_identifier] = STATE(5134), - [sym_operator_name] = STATE(4918), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_translation_unit_repeat1] = STATE(29), - [aux_sym__declaration_specifiers_repeat1] = STATE(2179), - [aux_sym_attributed_declarator_repeat1] = STATE(206), - [aux_sym_sized_type_specifier_repeat1] = STATE(3171), - [aux_sym_operator_cast_definition_repeat1] = STATE(1936), - [sym_identifier] = ACTIONS(147), - [aux_sym_preproc_include_token1] = ACTIONS(149), - [aux_sym_preproc_def_token1] = ACTIONS(151), - [aux_sym_preproc_if_token1] = ACTIONS(155), - [aux_sym_preproc_ifdef_token1] = ACTIONS(157), - [aux_sym_preproc_ifdef_token2] = ACTIONS(157), - [sym_preproc_directive] = ACTIONS(159), + [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_declaration] = STATE(64), + [sym_type_definition] = STATE(64), + [sym__declaration_modifiers] = STATE(3706), + [sym__declaration_specifiers] = STATE(4618), + [sym_linkage_specification] = STATE(64), + [sym_attribute_specifier] = STATE(3706), + [sym_attribute_declaration] = STATE(1427), + [sym_ms_declspec_modifier] = STATE(3706), + [sym_ms_based_modifier] = STATE(7654), + [sym_ms_call_modifier] = STATE(2462), + [sym__declarator] = STATE(5881), + [sym_parenthesized_declarator] = STATE(5640), + [sym_attributed_declarator] = STATE(5640), + [sym_pointer_declarator] = STATE(5640), + [sym_function_declarator] = STATE(5588), + [sym_array_declarator] = STATE(5640), + [sym_compound_statement] = STATE(64), + [sym_storage_class_specifier] = STATE(3706), + [sym_type_qualifier] = STATE(3706), + [sym__type_specifier] = STATE(3826), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), + [sym_attributed_statement] = STATE(64), + [sym_labeled_statement] = STATE(64), + [sym_expression_statement] = STATE(64), + [sym_if_statement] = STATE(64), + [sym_switch_statement] = STATE(64), + [sym_case_statement] = STATE(64), + [sym_while_statement] = STATE(64), + [sym_do_statement] = STATE(64), + [sym_for_statement] = STATE(64), + [sym_return_statement] = STATE(64), + [sym_break_statement] = STATE(64), + [sym_continue_statement] = STATE(64), + [sym_goto_statement] = STATE(64), + [sym__expression] = STATE(4182), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7590), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym__empty_declaration] = STATE(64), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym__class_name] = STATE(6623), + [sym_virtual] = STATE(3706), + [sym_explicit_function_specifier] = STATE(2240), + [sym_dependent_type] = STATE(3723), + [sym_template_declaration] = STATE(64), + [sym_template_instantiation] = STATE(64), + [sym_operator_cast] = STATE(5937), + [sym__constructor_specifiers] = STATE(2240), + [sym_operator_cast_definition] = STATE(64), + [sym_operator_cast_declaration] = STATE(64), + [sym_constructor_or_destructor_definition] = STATE(64), + [sym_reference_declarator] = STATE(5640), + [sym_structured_binding_declarator] = STATE(5640), + [sym_template_type] = STATE(3921), + [sym_template_function] = STATE(4066), + [sym_namespace_definition] = STATE(64), + [sym_namespace_alias_definition] = STATE(64), + [sym_using_declaration] = STATE(64), + [sym_alias_declaration] = STATE(64), + [sym_static_assert_declaration] = STATE(64), + [sym_concept_definition] = STATE(64), + [sym_for_range_loop] = STATE(64), + [sym_co_return_statement] = STATE(64), + [sym_co_yield_statement] = STATE(64), + [sym_throw_statement] = STATE(64), + [sym_try_statement] = STATE(64), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_destructor_name] = STATE(5640), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5143), + [sym_qualified_identifier] = STATE(3249), + [sym_qualified_type_identifier] = STATE(3915), + [sym_qualified_operator_cast_identifier] = STATE(5937), + [sym_operator_name] = STATE(5640), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_preproc_if_repeat1] = STATE(64), + [aux_sym__declaration_specifiers_repeat1] = STATE(2514), + [aux_sym_attributed_declarator_repeat1] = STATE(309), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [aux_sym_operator_cast_definition_repeat1] = STATE(2240), + [sym_identifier] = ACTIONS(792), + [aux_sym_preproc_include_token1] = ACTIONS(795), + [aux_sym_preproc_def_token1] = ACTIONS(798), + [aux_sym_preproc_if_token1] = ACTIONS(801), + [aux_sym_preproc_ifdef_token1] = ACTIONS(804), + [aux_sym_preproc_ifdef_token2] = ACTIONS(804), + [sym_preproc_directive] = ACTIONS(807), + [anon_sym_LPAREN2] = ACTIONS(435), + [anon_sym_BANG] = ACTIONS(438), + [anon_sym_TILDE] = ACTIONS(441), + [anon_sym_DASH] = ACTIONS(444), + [anon_sym_PLUS] = ACTIONS(444), + [anon_sym_STAR] = ACTIONS(447), + [anon_sym_AMP_AMP] = ACTIONS(450), + [anon_sym_AMP] = ACTIONS(453), + [anon_sym_SEMI] = ACTIONS(810), + [anon_sym_typedef] = ACTIONS(813), + [anon_sym_extern] = ACTIONS(816), + [anon_sym___attribute__] = ACTIONS(465), + [anon_sym_COLON_COLON] = ACTIONS(468), + [anon_sym_LBRACK_LBRACK] = ACTIONS(471), + [anon_sym___declspec] = ACTIONS(474), + [anon_sym___based] = ACTIONS(477), + [anon_sym___cdecl] = ACTIONS(480), + [anon_sym___clrcall] = ACTIONS(480), + [anon_sym___stdcall] = ACTIONS(480), + [anon_sym___fastcall] = ACTIONS(480), + [anon_sym___thiscall] = ACTIONS(480), + [anon_sym___vectorcall] = ACTIONS(480), + [anon_sym_LBRACE] = ACTIONS(819), + [anon_sym_RBRACE] = ACTIONS(822), + [anon_sym_LBRACK] = ACTIONS(486), + [anon_sym_static] = ACTIONS(489), + [anon_sym_register] = ACTIONS(489), + [anon_sym_inline] = ACTIONS(824), + [anon_sym_thread_local] = ACTIONS(489), + [anon_sym_const] = ACTIONS(495), + [anon_sym_constexpr] = ACTIONS(495), + [anon_sym_volatile] = ACTIONS(495), + [anon_sym_restrict] = ACTIONS(495), + [anon_sym___restrict__] = ACTIONS(495), + [anon_sym__Atomic] = ACTIONS(495), + [anon_sym__Noreturn] = ACTIONS(495), + [anon_sym_noreturn] = ACTIONS(495), + [anon_sym_mutable] = ACTIONS(495), + [anon_sym_constinit] = ACTIONS(495), + [anon_sym_consteval] = ACTIONS(495), + [anon_sym_signed] = ACTIONS(498), + [anon_sym_unsigned] = ACTIONS(498), + [anon_sym_long] = ACTIONS(498), + [anon_sym_short] = ACTIONS(498), + [sym_primitive_type] = ACTIONS(501), + [anon_sym_enum] = ACTIONS(504), + [anon_sym_class] = ACTIONS(507), + [anon_sym_struct] = ACTIONS(510), + [anon_sym_union] = ACTIONS(513), + [anon_sym_if] = ACTIONS(827), + [anon_sym_switch] = ACTIONS(830), + [anon_sym_case] = ACTIONS(833), + [anon_sym_default] = ACTIONS(836), + [anon_sym_while] = ACTIONS(839), + [anon_sym_do] = ACTIONS(842), + [anon_sym_for] = ACTIONS(845), + [anon_sym_return] = ACTIONS(848), + [anon_sym_break] = ACTIONS(851), + [anon_sym_continue] = ACTIONS(854), + [anon_sym_goto] = ACTIONS(857), + [anon_sym_not] = ACTIONS(444), + [anon_sym_compl] = ACTIONS(444), + [anon_sym_DASH_DASH] = ACTIONS(549), + [anon_sym_PLUS_PLUS] = ACTIONS(549), + [anon_sym_sizeof] = ACTIONS(552), + [anon_sym_offsetof] = ACTIONS(555), + [anon_sym__Generic] = ACTIONS(558), + [anon_sym_asm] = ACTIONS(561), + [anon_sym___asm__] = ACTIONS(561), + [sym_number_literal] = ACTIONS(564), + [anon_sym_L_SQUOTE] = ACTIONS(567), + [anon_sym_u_SQUOTE] = ACTIONS(567), + [anon_sym_U_SQUOTE] = ACTIONS(567), + [anon_sym_u8_SQUOTE] = ACTIONS(567), + [anon_sym_SQUOTE] = ACTIONS(567), + [anon_sym_L_DQUOTE] = ACTIONS(570), + [anon_sym_u_DQUOTE] = ACTIONS(570), + [anon_sym_U_DQUOTE] = ACTIONS(570), + [anon_sym_u8_DQUOTE] = ACTIONS(570), + [anon_sym_DQUOTE] = ACTIONS(570), + [sym_true] = ACTIONS(573), + [sym_false] = ACTIONS(573), + [anon_sym_NULL] = ACTIONS(576), + [anon_sym_nullptr] = ACTIONS(576), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(579), + [anon_sym_decltype] = ACTIONS(582), + [anon_sym_virtual] = ACTIONS(585), + [anon_sym_explicit] = ACTIONS(588), + [anon_sym_typename] = ACTIONS(591), + [anon_sym_template] = ACTIONS(860), + [anon_sym_operator] = ACTIONS(597), + [anon_sym_try] = ACTIONS(863), + [anon_sym_delete] = ACTIONS(603), + [anon_sym_throw] = ACTIONS(866), + [anon_sym_namespace] = ACTIONS(869), + [anon_sym_using] = ACTIONS(872), + [anon_sym_static_assert] = ACTIONS(875), + [anon_sym_concept] = ACTIONS(878), + [anon_sym_co_return] = ACTIONS(881), + [anon_sym_co_yield] = ACTIONS(884), + [anon_sym_R_DQUOTE] = ACTIONS(627), + [anon_sym_LR_DQUOTE] = ACTIONS(627), + [anon_sym_uR_DQUOTE] = ACTIONS(627), + [anon_sym_UR_DQUOTE] = ACTIONS(627), + [anon_sym_u8R_DQUOTE] = ACTIONS(627), + [anon_sym_co_await] = ACTIONS(630), + [anon_sym_new] = ACTIONS(633), + [anon_sym_requires] = ACTIONS(636), + [sym_this] = ACTIONS(573), + }, + [65] = { + [sym_preproc_include] = STATE(64), + [sym_preproc_def] = STATE(64), + [sym_preproc_function_def] = STATE(64), + [sym_preproc_call] = STATE(64), + [sym_preproc_if] = STATE(64), + [sym_preproc_ifdef] = STATE(64), + [sym_function_definition] = STATE(64), + [sym_declaration] = STATE(64), + [sym_type_definition] = STATE(64), + [sym__declaration_modifiers] = STATE(3706), + [sym__declaration_specifiers] = STATE(4618), + [sym_linkage_specification] = STATE(64), + [sym_attribute_specifier] = STATE(3706), + [sym_attribute_declaration] = STATE(1427), + [sym_ms_declspec_modifier] = STATE(3706), + [sym_ms_based_modifier] = STATE(7654), + [sym_ms_call_modifier] = STATE(2462), + [sym__declarator] = STATE(5881), + [sym_parenthesized_declarator] = STATE(5640), + [sym_attributed_declarator] = STATE(5640), + [sym_pointer_declarator] = STATE(5640), + [sym_function_declarator] = STATE(5588), + [sym_array_declarator] = STATE(5640), + [sym_compound_statement] = STATE(64), + [sym_storage_class_specifier] = STATE(3706), + [sym_type_qualifier] = STATE(3706), + [sym__type_specifier] = STATE(3826), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), + [sym_attributed_statement] = STATE(64), + [sym_labeled_statement] = STATE(64), + [sym_expression_statement] = STATE(64), + [sym_if_statement] = STATE(64), + [sym_switch_statement] = STATE(64), + [sym_case_statement] = STATE(64), + [sym_while_statement] = STATE(64), + [sym_do_statement] = STATE(64), + [sym_for_statement] = STATE(64), + [sym_return_statement] = STATE(64), + [sym_break_statement] = STATE(64), + [sym_continue_statement] = STATE(64), + [sym_goto_statement] = STATE(64), + [sym__expression] = STATE(4182), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7590), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym__empty_declaration] = STATE(64), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym__class_name] = STATE(6623), + [sym_virtual] = STATE(3706), + [sym_explicit_function_specifier] = STATE(2240), + [sym_dependent_type] = STATE(3723), + [sym_template_declaration] = STATE(64), + [sym_template_instantiation] = STATE(64), + [sym_operator_cast] = STATE(5937), + [sym__constructor_specifiers] = STATE(2240), + [sym_operator_cast_definition] = STATE(64), + [sym_operator_cast_declaration] = STATE(64), + [sym_constructor_or_destructor_definition] = STATE(64), + [sym_reference_declarator] = STATE(5640), + [sym_structured_binding_declarator] = STATE(5640), + [sym_template_type] = STATE(3921), + [sym_template_function] = STATE(4066), + [sym_namespace_definition] = STATE(64), + [sym_namespace_alias_definition] = STATE(64), + [sym_using_declaration] = STATE(64), + [sym_alias_declaration] = STATE(64), + [sym_static_assert_declaration] = STATE(64), + [sym_concept_definition] = STATE(64), + [sym_for_range_loop] = STATE(64), + [sym_co_return_statement] = STATE(64), + [sym_co_yield_statement] = STATE(64), + [sym_throw_statement] = STATE(64), + [sym_try_statement] = STATE(64), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_destructor_name] = STATE(5640), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5143), + [sym_qualified_identifier] = STATE(3249), + [sym_qualified_type_identifier] = STATE(3915), + [sym_qualified_operator_cast_identifier] = STATE(5937), + [sym_operator_name] = STATE(5640), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_preproc_if_repeat1] = STATE(64), + [aux_sym__declaration_specifiers_repeat1] = STATE(2514), + [aux_sym_attributed_declarator_repeat1] = STATE(309), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [aux_sym_operator_cast_definition_repeat1] = STATE(2240), + [sym_identifier] = ACTIONS(153), + [aux_sym_preproc_include_token1] = ACTIONS(155), + [aux_sym_preproc_def_token1] = ACTIONS(157), + [aux_sym_preproc_if_token1] = ACTIONS(161), + [aux_sym_preproc_ifdef_token1] = ACTIONS(163), + [aux_sym_preproc_ifdef_token2] = ACTIONS(163), + [sym_preproc_directive] = ACTIONS(165), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -41323,226 +57480,238 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_typedef] = ACTIONS(163), - [anon_sym_extern] = ACTIONS(165), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(43), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_RBRACE] = ACTIONS(976), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(173), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(61), - [anon_sym_unsigned] = ACTIONS(61), - [anon_sym_long] = ACTIONS(61), - [anon_sym_short] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(63), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(175), - [anon_sym_switch] = ACTIONS(177), - [anon_sym_case] = ACTIONS(179), - [anon_sym_default] = ACTIONS(181), - [anon_sym_while] = ACTIONS(183), - [anon_sym_do] = ACTIONS(185), - [anon_sym_for] = ACTIONS(187), - [anon_sym_return] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), - [anon_sym_goto] = ACTIONS(195), + [anon_sym_SEMI] = ACTIONS(167), + [anon_sym_typedef] = ACTIONS(169), + [anon_sym_extern] = ACTIONS(171), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(45), + [anon_sym___cdecl] = ACTIONS(47), + [anon_sym___clrcall] = ACTIONS(47), + [anon_sym___stdcall] = ACTIONS(47), + [anon_sym___fastcall] = ACTIONS(47), + [anon_sym___thiscall] = ACTIONS(47), + [anon_sym___vectorcall] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(738), + [anon_sym_RBRACE] = ACTIONS(887), + [anon_sym_LBRACK] = ACTIONS(51), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(179), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(181), + [anon_sym_switch] = ACTIONS(183), + [anon_sym_case] = ACTIONS(185), + [anon_sym_default] = ACTIONS(187), + [anon_sym_while] = ACTIONS(189), + [anon_sym_do] = ACTIONS(191), + [anon_sym_for] = ACTIONS(193), + [anon_sym_return] = ACTIONS(195), + [anon_sym_break] = ACTIONS(197), + [anon_sym_continue] = ACTIONS(199), + [anon_sym_goto] = ACTIONS(201), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(107), - [anon_sym_decltype] = ACTIONS(109), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_explicit] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(115), - [anon_sym_template] = ACTIONS(199), - [anon_sym_operator] = ACTIONS(119), - [anon_sym_try] = ACTIONS(201), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(203), - [anon_sym_namespace] = ACTIONS(205), - [anon_sym_using] = ACTIONS(207), - [anon_sym_static_assert] = ACTIONS(209), - [anon_sym_concept] = ACTIONS(211), - [anon_sym_co_return] = ACTIONS(213), - [anon_sym_co_yield] = ACTIONS(215), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(113), + [anon_sym_decltype] = ACTIONS(115), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_explicit] = ACTIONS(119), + [anon_sym_typename] = ACTIONS(121), + [anon_sym_template] = ACTIONS(207), + [anon_sym_operator] = ACTIONS(125), + [anon_sym_try] = ACTIONS(209), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(211), + [anon_sym_namespace] = ACTIONS(213), + [anon_sym_using] = ACTIONS(215), + [anon_sym_static_assert] = ACTIONS(217), + [anon_sym_concept] = ACTIONS(219), + [anon_sym_co_return] = ACTIONS(221), + [anon_sym_co_yield] = ACTIONS(223), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, - [76] = { - [sym_preproc_include] = STATE(75), - [sym_preproc_def] = STATE(75), - [sym_preproc_function_def] = STATE(75), - [sym_preproc_call] = STATE(75), - [sym_preproc_if] = STATE(75), - [sym_preproc_ifdef] = STATE(75), - [sym_function_definition] = STATE(75), - [sym_declaration] = STATE(75), - [sym_type_definition] = STATE(75), - [sym__declaration_modifiers] = STATE(3225), - [sym__declaration_specifiers] = STATE(3962), - [sym_linkage_specification] = STATE(75), - [sym_attribute_specifier] = STATE(3225), - [sym_attribute_declaration] = STATE(1136), - [sym_ms_declspec_modifier] = STATE(3225), - [sym_ms_based_modifier] = STATE(6104), - [sym_ms_call_modifier] = STATE(2065), - [sym__declarator] = STATE(5113), - [sym_parenthesized_declarator] = STATE(4918), - [sym_attributed_declarator] = STATE(4918), - [sym_pointer_declarator] = STATE(4918), - [sym_function_declarator] = STATE(4870), - [sym_array_declarator] = STATE(4918), - [sym_compound_statement] = STATE(75), - [sym_storage_class_specifier] = STATE(3225), - [sym_type_qualifier] = STATE(3225), - [sym__type_specifier] = STATE(3322), - [sym_sized_type_specifier] = STATE(3232), - [sym_enum_specifier] = STATE(3232), - [sym_struct_specifier] = STATE(3232), - [sym_union_specifier] = STATE(3232), - [sym_attributed_statement] = STATE(75), - [sym_labeled_statement] = STATE(75), - [sym_expression_statement] = STATE(75), - [sym_if_statement] = STATE(75), - [sym_switch_statement] = STATE(75), - [sym_case_statement] = STATE(75), - [sym_while_statement] = STATE(75), - [sym_do_statement] = STATE(75), - [sym_for_statement] = STATE(75), - [sym_return_statement] = STATE(75), - [sym_break_statement] = STATE(75), - [sym_continue_statement] = STATE(75), - [sym_goto_statement] = STATE(75), - [sym__expression] = STATE(3502), - [sym_comma_expression] = STATE(6595), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym__empty_declaration] = STATE(75), - [sym_placeholder_type_specifier] = STATE(3232), - [sym_decltype_auto] = STATE(3279), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3232), - [sym__class_name] = STATE(5753), - [sym_virtual] = STATE(3225), - [sym_explicit_function_specifier] = STATE(1936), - [sym_dependent_type] = STATE(3232), - [sym_template_declaration] = STATE(75), - [sym_template_instantiation] = STATE(75), - [sym_operator_cast] = STATE(5134), - [sym__constructor_specifiers] = STATE(1936), - [sym_operator_cast_definition] = STATE(75), - [sym_operator_cast_declaration] = STATE(75), - [sym_constructor_or_destructor_definition] = STATE(75), - [sym_reference_declarator] = STATE(4918), - [sym_structured_binding_declarator] = STATE(4918), - [sym_template_type] = STATE(3608), - [sym_template_function] = STATE(3494), - [sym_namespace_definition] = STATE(75), - [sym_namespace_alias_definition] = STATE(75), - [sym_using_declaration] = STATE(75), - [sym_alias_declaration] = STATE(75), - [sym_static_assert_declaration] = STATE(75), - [sym_concept_definition] = STATE(75), - [sym_for_range_loop] = STATE(75), - [sym_co_return_statement] = STATE(75), - [sym_co_yield_statement] = STATE(75), - [sym_throw_statement] = STATE(75), - [sym_try_statement] = STATE(75), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_destructor_name] = STATE(4918), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4460), - [sym_qualified_identifier] = STATE(2732), - [sym_qualified_type_identifier] = STATE(3593), - [sym_qualified_operator_cast_identifier] = STATE(5134), - [sym_operator_name] = STATE(4918), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_translation_unit_repeat1] = STATE(75), - [aux_sym__declaration_specifiers_repeat1] = STATE(2179), - [aux_sym_attributed_declarator_repeat1] = STATE(206), - [aux_sym_sized_type_specifier_repeat1] = STATE(3171), - [aux_sym_operator_cast_definition_repeat1] = STATE(1936), - [sym_identifier] = ACTIONS(147), - [aux_sym_preproc_include_token1] = ACTIONS(149), - [aux_sym_preproc_def_token1] = ACTIONS(151), - [aux_sym_preproc_if_token1] = ACTIONS(155), - [aux_sym_preproc_ifdef_token1] = ACTIONS(157), - [aux_sym_preproc_ifdef_token2] = ACTIONS(157), - [sym_preproc_directive] = ACTIONS(159), + [66] = { + [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_declaration] = STATE(87), + [sym_type_definition] = STATE(87), + [sym__declaration_modifiers] = STATE(3706), + [sym__declaration_specifiers] = STATE(4618), + [sym_linkage_specification] = STATE(87), + [sym_attribute_specifier] = STATE(3706), + [sym_attribute_declaration] = STATE(1427), + [sym_ms_declspec_modifier] = STATE(3706), + [sym_ms_based_modifier] = STATE(7654), + [sym_ms_call_modifier] = STATE(2462), + [sym__declarator] = STATE(5881), + [sym_parenthesized_declarator] = STATE(5640), + [sym_attributed_declarator] = STATE(5640), + [sym_pointer_declarator] = STATE(5640), + [sym_function_declarator] = STATE(5588), + [sym_array_declarator] = STATE(5640), + [sym_compound_statement] = STATE(87), + [sym_storage_class_specifier] = STATE(3706), + [sym_type_qualifier] = STATE(3706), + [sym__type_specifier] = STATE(3826), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), + [sym_attributed_statement] = STATE(87), + [sym_labeled_statement] = STATE(87), + [sym_expression_statement] = STATE(87), + [sym_if_statement] = STATE(87), + [sym_switch_statement] = STATE(87), + [sym_case_statement] = STATE(87), + [sym_while_statement] = STATE(87), + [sym_do_statement] = STATE(87), + [sym_for_statement] = STATE(87), + [sym_return_statement] = STATE(87), + [sym_break_statement] = STATE(87), + [sym_continue_statement] = STATE(87), + [sym_goto_statement] = STATE(87), + [sym__expression] = STATE(4182), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7590), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym__empty_declaration] = STATE(87), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym__class_name] = STATE(6623), + [sym_virtual] = STATE(3706), + [sym_explicit_function_specifier] = STATE(2240), + [sym_dependent_type] = STATE(3723), + [sym_template_declaration] = STATE(87), + [sym_template_instantiation] = STATE(87), + [sym_operator_cast] = STATE(5937), + [sym__constructor_specifiers] = STATE(2240), + [sym_operator_cast_definition] = STATE(87), + [sym_operator_cast_declaration] = STATE(87), + [sym_constructor_or_destructor_definition] = STATE(87), + [sym_reference_declarator] = STATE(5640), + [sym_structured_binding_declarator] = STATE(5640), + [sym_template_type] = STATE(3921), + [sym_template_function] = STATE(4066), + [sym_namespace_definition] = STATE(87), + [sym_namespace_alias_definition] = STATE(87), + [sym_using_declaration] = STATE(87), + [sym_alias_declaration] = STATE(87), + [sym_static_assert_declaration] = STATE(87), + [sym_concept_definition] = STATE(87), + [sym_for_range_loop] = STATE(87), + [sym_co_return_statement] = STATE(87), + [sym_co_yield_statement] = STATE(87), + [sym_throw_statement] = STATE(87), + [sym_try_statement] = STATE(87), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_destructor_name] = STATE(5640), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5143), + [sym_qualified_identifier] = STATE(3249), + [sym_qualified_type_identifier] = STATE(3915), + [sym_qualified_operator_cast_identifier] = STATE(5937), + [sym_operator_name] = STATE(5640), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_preproc_if_repeat1] = STATE(87), + [aux_sym__declaration_specifiers_repeat1] = STATE(2514), + [aux_sym_attributed_declarator_repeat1] = STATE(309), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [aux_sym_operator_cast_definition_repeat1] = STATE(2240), + [sym_identifier] = ACTIONS(153), + [aux_sym_preproc_include_token1] = ACTIONS(155), + [aux_sym_preproc_def_token1] = ACTIONS(157), + [aux_sym_preproc_if_token1] = ACTIONS(161), + [aux_sym_preproc_ifdef_token1] = ACTIONS(163), + [aux_sym_preproc_ifdef_token2] = ACTIONS(163), + [sym_preproc_directive] = ACTIONS(165), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -41551,509 +57720,867 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_typedef] = ACTIONS(163), - [anon_sym_extern] = ACTIONS(165), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(43), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_RBRACE] = ACTIONS(978), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(173), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(61), - [anon_sym_unsigned] = ACTIONS(61), - [anon_sym_long] = ACTIONS(61), - [anon_sym_short] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(63), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(175), - [anon_sym_switch] = ACTIONS(177), - [anon_sym_case] = ACTIONS(179), - [anon_sym_default] = ACTIONS(181), - [anon_sym_while] = ACTIONS(183), - [anon_sym_do] = ACTIONS(185), - [anon_sym_for] = ACTIONS(187), - [anon_sym_return] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), - [anon_sym_goto] = ACTIONS(195), + [anon_sym_SEMI] = ACTIONS(167), + [anon_sym_typedef] = ACTIONS(169), + [anon_sym_extern] = ACTIONS(171), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(45), + [anon_sym___cdecl] = ACTIONS(47), + [anon_sym___clrcall] = ACTIONS(47), + [anon_sym___stdcall] = ACTIONS(47), + [anon_sym___fastcall] = ACTIONS(47), + [anon_sym___thiscall] = ACTIONS(47), + [anon_sym___vectorcall] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(738), + [anon_sym_RBRACE] = ACTIONS(889), + [anon_sym_LBRACK] = ACTIONS(51), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(179), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(181), + [anon_sym_switch] = ACTIONS(183), + [anon_sym_case] = ACTIONS(185), + [anon_sym_default] = ACTIONS(187), + [anon_sym_while] = ACTIONS(189), + [anon_sym_do] = ACTIONS(191), + [anon_sym_for] = ACTIONS(193), + [anon_sym_return] = ACTIONS(195), + [anon_sym_break] = ACTIONS(197), + [anon_sym_continue] = ACTIONS(199), + [anon_sym_goto] = ACTIONS(201), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(107), - [anon_sym_decltype] = ACTIONS(109), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_explicit] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(115), - [anon_sym_template] = ACTIONS(199), - [anon_sym_operator] = ACTIONS(119), - [anon_sym_try] = ACTIONS(201), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(203), - [anon_sym_namespace] = ACTIONS(205), - [anon_sym_using] = ACTIONS(207), - [anon_sym_static_assert] = ACTIONS(209), - [anon_sym_concept] = ACTIONS(211), - [anon_sym_co_return] = ACTIONS(213), - [anon_sym_co_yield] = ACTIONS(215), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(113), + [anon_sym_decltype] = ACTIONS(115), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_explicit] = ACTIONS(119), + [anon_sym_typename] = ACTIONS(121), + [anon_sym_template] = ACTIONS(207), + [anon_sym_operator] = ACTIONS(125), + [anon_sym_try] = ACTIONS(209), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(211), + [anon_sym_namespace] = ACTIONS(213), + [anon_sym_using] = ACTIONS(215), + [anon_sym_static_assert] = ACTIONS(217), + [anon_sym_concept] = ACTIONS(219), + [anon_sym_co_return] = ACTIONS(221), + [anon_sym_co_yield] = ACTIONS(223), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, - [77] = { - [sym_declaration] = STATE(79), - [sym_type_definition] = STATE(79), - [sym__declaration_modifiers] = STATE(2179), - [sym__declaration_specifiers] = STATE(3999), - [sym_attribute_specifier] = STATE(2179), - [sym_attribute_declaration] = STATE(1186), - [sym_ms_declspec_modifier] = STATE(2179), - [sym_compound_statement] = STATE(79), - [sym_storage_class_specifier] = STATE(2179), - [sym_type_qualifier] = STATE(2179), - [sym__type_specifier] = STATE(3156), - [sym_sized_type_specifier] = STATE(3232), - [sym_enum_specifier] = STATE(3232), - [sym_struct_specifier] = STATE(3232), - [sym_union_specifier] = STATE(3232), - [sym_attributed_statement] = STATE(79), - [sym_labeled_statement] = STATE(79), - [sym_expression_statement] = STATE(79), - [sym_if_statement] = STATE(79), - [sym_switch_statement] = STATE(79), - [sym_while_statement] = STATE(79), - [sym_do_statement] = STATE(79), - [sym_for_statement] = STATE(79), - [sym_return_statement] = STATE(79), - [sym_break_statement] = STATE(79), - [sym_continue_statement] = STATE(79), - [sym_goto_statement] = STATE(79), - [sym__expression] = STATE(3497), - [sym_comma_expression] = STATE(6497), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_placeholder_type_specifier] = STATE(3232), - [sym_decltype_auto] = STATE(3279), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3232), - [sym__class_name] = STATE(5753), - [sym_virtual] = STATE(2179), - [sym_dependent_type] = STATE(3232), - [sym_template_type] = STATE(3608), - [sym_template_function] = STATE(3365), - [sym_for_range_loop] = STATE(79), - [sym_co_return_statement] = STATE(79), - [sym_co_yield_statement] = STATE(79), - [sym_throw_statement] = STATE(79), - [sym_try_statement] = STATE(79), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4580), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(3593), - [sym_user_defined_literal] = STATE(3365), - [aux_sym__declaration_specifiers_repeat1] = STATE(2179), - [aux_sym_attributed_declarator_repeat1] = STATE(253), - [aux_sym_sized_type_specifier_repeat1] = STATE(3171), - [aux_sym_case_statement_repeat1] = STATE(79), - [sym_identifier] = ACTIONS(980), - [aux_sym_preproc_include_token1] = ACTIONS(982), - [aux_sym_preproc_def_token1] = ACTIONS(982), - [aux_sym_preproc_if_token1] = ACTIONS(982), - [aux_sym_preproc_if_token2] = ACTIONS(982), - [aux_sym_preproc_ifdef_token1] = ACTIONS(982), - [aux_sym_preproc_ifdef_token2] = ACTIONS(982), - [aux_sym_preproc_else_token1] = ACTIONS(982), - [aux_sym_preproc_elif_token1] = ACTIONS(982), - [sym_preproc_directive] = ACTIONS(982), - [anon_sym_LPAREN2] = ACTIONS(984), + [67] = { + [sym_preproc_include] = STATE(64), + [sym_preproc_def] = STATE(64), + [sym_preproc_function_def] = STATE(64), + [sym_preproc_call] = STATE(64), + [sym_preproc_if] = STATE(64), + [sym_preproc_ifdef] = STATE(64), + [sym_function_definition] = STATE(64), + [sym_declaration] = STATE(64), + [sym_type_definition] = STATE(64), + [sym__declaration_modifiers] = STATE(3706), + [sym__declaration_specifiers] = STATE(4618), + [sym_linkage_specification] = STATE(64), + [sym_attribute_specifier] = STATE(3706), + [sym_attribute_declaration] = STATE(1427), + [sym_ms_declspec_modifier] = STATE(3706), + [sym_ms_based_modifier] = STATE(7654), + [sym_ms_call_modifier] = STATE(2462), + [sym__declarator] = STATE(5881), + [sym_parenthesized_declarator] = STATE(5640), + [sym_attributed_declarator] = STATE(5640), + [sym_pointer_declarator] = STATE(5640), + [sym_function_declarator] = STATE(5588), + [sym_array_declarator] = STATE(5640), + [sym_compound_statement] = STATE(64), + [sym_storage_class_specifier] = STATE(3706), + [sym_type_qualifier] = STATE(3706), + [sym__type_specifier] = STATE(3826), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), + [sym_attributed_statement] = STATE(64), + [sym_labeled_statement] = STATE(64), + [sym_expression_statement] = STATE(64), + [sym_if_statement] = STATE(64), + [sym_switch_statement] = STATE(64), + [sym_case_statement] = STATE(64), + [sym_while_statement] = STATE(64), + [sym_do_statement] = STATE(64), + [sym_for_statement] = STATE(64), + [sym_return_statement] = STATE(64), + [sym_break_statement] = STATE(64), + [sym_continue_statement] = STATE(64), + [sym_goto_statement] = STATE(64), + [sym__expression] = STATE(4182), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7590), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym__empty_declaration] = STATE(64), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym__class_name] = STATE(6623), + [sym_virtual] = STATE(3706), + [sym_explicit_function_specifier] = STATE(2240), + [sym_dependent_type] = STATE(3723), + [sym_template_declaration] = STATE(64), + [sym_template_instantiation] = STATE(64), + [sym_operator_cast] = STATE(5937), + [sym__constructor_specifiers] = STATE(2240), + [sym_operator_cast_definition] = STATE(64), + [sym_operator_cast_declaration] = STATE(64), + [sym_constructor_or_destructor_definition] = STATE(64), + [sym_reference_declarator] = STATE(5640), + [sym_structured_binding_declarator] = STATE(5640), + [sym_template_type] = STATE(3921), + [sym_template_function] = STATE(4066), + [sym_namespace_definition] = STATE(64), + [sym_namespace_alias_definition] = STATE(64), + [sym_using_declaration] = STATE(64), + [sym_alias_declaration] = STATE(64), + [sym_static_assert_declaration] = STATE(64), + [sym_concept_definition] = STATE(64), + [sym_for_range_loop] = STATE(64), + [sym_co_return_statement] = STATE(64), + [sym_co_yield_statement] = STATE(64), + [sym_throw_statement] = STATE(64), + [sym_try_statement] = STATE(64), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_destructor_name] = STATE(5640), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5143), + [sym_qualified_identifier] = STATE(3249), + [sym_qualified_type_identifier] = STATE(3915), + [sym_qualified_operator_cast_identifier] = STATE(5937), + [sym_operator_name] = STATE(5640), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_preproc_if_repeat1] = STATE(64), + [aux_sym__declaration_specifiers_repeat1] = STATE(2514), + [aux_sym_attributed_declarator_repeat1] = STATE(309), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [aux_sym_operator_cast_definition_repeat1] = STATE(2240), + [sym_identifier] = ACTIONS(153), + [aux_sym_preproc_include_token1] = ACTIONS(155), + [aux_sym_preproc_def_token1] = ACTIONS(157), + [aux_sym_preproc_if_token1] = ACTIONS(161), + [aux_sym_preproc_ifdef_token1] = ACTIONS(163), + [aux_sym_preproc_ifdef_token2] = ACTIONS(163), + [sym_preproc_directive] = ACTIONS(165), + [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(23), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP_AMP] = ACTIONS(988), - [anon_sym_AMP] = ACTIONS(990), - [anon_sym_SEMI] = ACTIONS(249), - [anon_sym_typedef] = ACTIONS(251), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(992), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(982), - [anon_sym___cdecl] = ACTIONS(982), - [anon_sym___clrcall] = ACTIONS(982), - [anon_sym___stdcall] = ACTIONS(982), - [anon_sym___fastcall] = ACTIONS(982), - [anon_sym___thiscall] = ACTIONS(982), - [anon_sym___vectorcall] = ACTIONS(982), - [anon_sym_LBRACE] = ACTIONS(255), - [anon_sym_LBRACK] = ACTIONS(994), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(61), - [anon_sym_unsigned] = ACTIONS(61), - [anon_sym_long] = ACTIONS(61), - [anon_sym_short] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(63), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(259), - [anon_sym_else] = ACTIONS(982), - [anon_sym_switch] = ACTIONS(261), - [anon_sym_case] = ACTIONS(982), - [anon_sym_default] = ACTIONS(982), - [anon_sym_while] = ACTIONS(267), - [anon_sym_do] = ACTIONS(269), - [anon_sym_for] = ACTIONS(271), - [anon_sym_return] = ACTIONS(273), - [anon_sym_break] = ACTIONS(275), - [anon_sym_continue] = ACTIONS(277), - [anon_sym_goto] = ACTIONS(279), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(167), + [anon_sym_typedef] = ACTIONS(169), + [anon_sym_extern] = ACTIONS(171), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(45), + [anon_sym___cdecl] = ACTIONS(47), + [anon_sym___clrcall] = ACTIONS(47), + [anon_sym___stdcall] = ACTIONS(47), + [anon_sym___fastcall] = ACTIONS(47), + [anon_sym___thiscall] = ACTIONS(47), + [anon_sym___vectorcall] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(738), + [anon_sym_RBRACE] = ACTIONS(891), + [anon_sym_LBRACK] = ACTIONS(51), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(179), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(181), + [anon_sym_switch] = ACTIONS(183), + [anon_sym_case] = ACTIONS(185), + [anon_sym_default] = ACTIONS(187), + [anon_sym_while] = ACTIONS(189), + [anon_sym_do] = ACTIONS(191), + [anon_sym_for] = ACTIONS(193), + [anon_sym_return] = ACTIONS(195), + [anon_sym_break] = ACTIONS(197), + [anon_sym_continue] = ACTIONS(199), + [anon_sym_goto] = ACTIONS(201), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(107), - [anon_sym_decltype] = ACTIONS(109), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_explicit] = ACTIONS(982), - [anon_sym_typename] = ACTIONS(115), - [anon_sym_template] = ACTIONS(996), - [anon_sym_operator] = ACTIONS(982), - [anon_sym_try] = ACTIONS(283), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(285), - [anon_sym_namespace] = ACTIONS(982), - [anon_sym_using] = ACTIONS(982), - [anon_sym_static_assert] = ACTIONS(982), - [anon_sym_concept] = ACTIONS(982), - [anon_sym_co_return] = ACTIONS(295), - [anon_sym_co_yield] = ACTIONS(297), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(113), + [anon_sym_decltype] = ACTIONS(115), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_explicit] = ACTIONS(119), + [anon_sym_typename] = ACTIONS(121), + [anon_sym_template] = ACTIONS(207), + [anon_sym_operator] = ACTIONS(125), + [anon_sym_try] = ACTIONS(209), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(211), + [anon_sym_namespace] = ACTIONS(213), + [anon_sym_using] = ACTIONS(215), + [anon_sym_static_assert] = ACTIONS(217), + [anon_sym_concept] = ACTIONS(219), + [anon_sym_co_return] = ACTIONS(221), + [anon_sym_co_yield] = ACTIONS(223), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, - [78] = { - [sym_declaration] = STATE(79), - [sym_type_definition] = STATE(79), - [sym__declaration_modifiers] = STATE(2179), - [sym__declaration_specifiers] = STATE(3999), - [sym_attribute_specifier] = STATE(2179), - [sym_attribute_declaration] = STATE(1186), - [sym_ms_declspec_modifier] = STATE(2179), - [sym_compound_statement] = STATE(79), - [sym_storage_class_specifier] = STATE(2179), - [sym_type_qualifier] = STATE(2179), - [sym__type_specifier] = STATE(3156), - [sym_sized_type_specifier] = STATE(3232), - [sym_enum_specifier] = STATE(3232), - [sym_struct_specifier] = STATE(3232), - [sym_union_specifier] = STATE(3232), - [sym_attributed_statement] = STATE(79), - [sym_labeled_statement] = STATE(79), - [sym_expression_statement] = STATE(79), - [sym_if_statement] = STATE(79), - [sym_switch_statement] = STATE(79), - [sym_while_statement] = STATE(79), - [sym_do_statement] = STATE(79), - [sym_for_statement] = STATE(79), - [sym_return_statement] = STATE(79), - [sym_break_statement] = STATE(79), - [sym_continue_statement] = STATE(79), - [sym_goto_statement] = STATE(79), - [sym__expression] = STATE(3497), - [sym_comma_expression] = STATE(6497), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_placeholder_type_specifier] = STATE(3232), - [sym_decltype_auto] = STATE(3279), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3232), - [sym__class_name] = STATE(5753), - [sym_virtual] = STATE(2179), - [sym_dependent_type] = STATE(3232), - [sym_template_type] = STATE(3608), - [sym_template_function] = STATE(3365), - [sym_for_range_loop] = STATE(79), - [sym_co_return_statement] = STATE(79), - [sym_co_yield_statement] = STATE(79), - [sym_throw_statement] = STATE(79), - [sym_try_statement] = STATE(79), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4580), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(3593), - [sym_user_defined_literal] = STATE(3365), - [aux_sym__declaration_specifiers_repeat1] = STATE(2179), - [aux_sym_attributed_declarator_repeat1] = STATE(253), - [aux_sym_sized_type_specifier_repeat1] = STATE(3171), - [aux_sym_case_statement_repeat1] = STATE(79), - [sym_identifier] = ACTIONS(980), - [aux_sym_preproc_include_token1] = ACTIONS(998), - [aux_sym_preproc_def_token1] = ACTIONS(998), - [aux_sym_preproc_if_token1] = ACTIONS(998), - [aux_sym_preproc_if_token2] = ACTIONS(998), - [aux_sym_preproc_ifdef_token1] = ACTIONS(998), - [aux_sym_preproc_ifdef_token2] = ACTIONS(998), - [aux_sym_preproc_else_token1] = ACTIONS(998), - [aux_sym_preproc_elif_token1] = ACTIONS(998), - [sym_preproc_directive] = ACTIONS(998), - [anon_sym_LPAREN2] = ACTIONS(984), + [68] = { + [sym_preproc_include] = STATE(65), + [sym_preproc_def] = STATE(65), + [sym_preproc_function_def] = STATE(65), + [sym_preproc_call] = STATE(65), + [sym_preproc_if] = STATE(65), + [sym_preproc_ifdef] = STATE(65), + [sym_function_definition] = STATE(65), + [sym_declaration] = STATE(65), + [sym_type_definition] = STATE(65), + [sym__declaration_modifiers] = STATE(3706), + [sym__declaration_specifiers] = STATE(4618), + [sym_linkage_specification] = STATE(65), + [sym_attribute_specifier] = STATE(3706), + [sym_attribute_declaration] = STATE(1427), + [sym_ms_declspec_modifier] = STATE(3706), + [sym_ms_based_modifier] = STATE(7654), + [sym_ms_call_modifier] = STATE(2462), + [sym__declarator] = STATE(5881), + [sym_parenthesized_declarator] = STATE(5640), + [sym_attributed_declarator] = STATE(5640), + [sym_pointer_declarator] = STATE(5640), + [sym_function_declarator] = STATE(5588), + [sym_array_declarator] = STATE(5640), + [sym_compound_statement] = STATE(65), + [sym_storage_class_specifier] = STATE(3706), + [sym_type_qualifier] = STATE(3706), + [sym__type_specifier] = STATE(3826), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), + [sym_attributed_statement] = STATE(65), + [sym_labeled_statement] = STATE(65), + [sym_expression_statement] = STATE(65), + [sym_if_statement] = STATE(65), + [sym_switch_statement] = STATE(65), + [sym_case_statement] = STATE(65), + [sym_while_statement] = STATE(65), + [sym_do_statement] = STATE(65), + [sym_for_statement] = STATE(65), + [sym_return_statement] = STATE(65), + [sym_break_statement] = STATE(65), + [sym_continue_statement] = STATE(65), + [sym_goto_statement] = STATE(65), + [sym__expression] = STATE(4182), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7590), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym__empty_declaration] = STATE(65), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym__class_name] = STATE(6623), + [sym_virtual] = STATE(3706), + [sym_explicit_function_specifier] = STATE(2240), + [sym_dependent_type] = STATE(3723), + [sym_template_declaration] = STATE(65), + [sym_template_instantiation] = STATE(65), + [sym_operator_cast] = STATE(5937), + [sym__constructor_specifiers] = STATE(2240), + [sym_operator_cast_definition] = STATE(65), + [sym_operator_cast_declaration] = STATE(65), + [sym_constructor_or_destructor_definition] = STATE(65), + [sym_reference_declarator] = STATE(5640), + [sym_structured_binding_declarator] = STATE(5640), + [sym_template_type] = STATE(3921), + [sym_template_function] = STATE(4066), + [sym_namespace_definition] = STATE(65), + [sym_namespace_alias_definition] = STATE(65), + [sym_using_declaration] = STATE(65), + [sym_alias_declaration] = STATE(65), + [sym_static_assert_declaration] = STATE(65), + [sym_concept_definition] = STATE(65), + [sym_for_range_loop] = STATE(65), + [sym_co_return_statement] = STATE(65), + [sym_co_yield_statement] = STATE(65), + [sym_throw_statement] = STATE(65), + [sym_try_statement] = STATE(65), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_destructor_name] = STATE(5640), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5143), + [sym_qualified_identifier] = STATE(3249), + [sym_qualified_type_identifier] = STATE(3915), + [sym_qualified_operator_cast_identifier] = STATE(5937), + [sym_operator_name] = STATE(5640), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_preproc_if_repeat1] = STATE(65), + [aux_sym__declaration_specifiers_repeat1] = STATE(2514), + [aux_sym_attributed_declarator_repeat1] = STATE(309), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [aux_sym_operator_cast_definition_repeat1] = STATE(2240), + [sym_identifier] = ACTIONS(153), + [aux_sym_preproc_include_token1] = ACTIONS(155), + [aux_sym_preproc_def_token1] = ACTIONS(157), + [aux_sym_preproc_if_token1] = ACTIONS(161), + [aux_sym_preproc_ifdef_token1] = ACTIONS(163), + [aux_sym_preproc_ifdef_token2] = ACTIONS(163), + [sym_preproc_directive] = ACTIONS(165), + [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(23), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP_AMP] = ACTIONS(1000), - [anon_sym_AMP] = ACTIONS(990), - [anon_sym_SEMI] = ACTIONS(249), - [anon_sym_typedef] = ACTIONS(251), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(992), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(998), - [anon_sym___cdecl] = ACTIONS(998), - [anon_sym___clrcall] = ACTIONS(998), - [anon_sym___stdcall] = ACTIONS(998), - [anon_sym___fastcall] = ACTIONS(998), - [anon_sym___thiscall] = ACTIONS(998), - [anon_sym___vectorcall] = ACTIONS(998), - [anon_sym_LBRACE] = ACTIONS(255), - [anon_sym_LBRACK] = ACTIONS(994), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(61), - [anon_sym_unsigned] = ACTIONS(61), - [anon_sym_long] = ACTIONS(61), - [anon_sym_short] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(63), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(259), - [anon_sym_else] = ACTIONS(998), - [anon_sym_switch] = ACTIONS(261), - [anon_sym_case] = ACTIONS(998), - [anon_sym_default] = ACTIONS(998), - [anon_sym_while] = ACTIONS(267), - [anon_sym_do] = ACTIONS(269), - [anon_sym_for] = ACTIONS(271), - [anon_sym_return] = ACTIONS(273), - [anon_sym_break] = ACTIONS(275), - [anon_sym_continue] = ACTIONS(277), - [anon_sym_goto] = ACTIONS(279), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(167), + [anon_sym_typedef] = ACTIONS(169), + [anon_sym_extern] = ACTIONS(171), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(45), + [anon_sym___cdecl] = ACTIONS(47), + [anon_sym___clrcall] = ACTIONS(47), + [anon_sym___stdcall] = ACTIONS(47), + [anon_sym___fastcall] = ACTIONS(47), + [anon_sym___thiscall] = ACTIONS(47), + [anon_sym___vectorcall] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(738), + [anon_sym_RBRACE] = ACTIONS(893), + [anon_sym_LBRACK] = ACTIONS(51), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(179), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(181), + [anon_sym_switch] = ACTIONS(183), + [anon_sym_case] = ACTIONS(185), + [anon_sym_default] = ACTIONS(187), + [anon_sym_while] = ACTIONS(189), + [anon_sym_do] = ACTIONS(191), + [anon_sym_for] = ACTIONS(193), + [anon_sym_return] = ACTIONS(195), + [anon_sym_break] = ACTIONS(197), + [anon_sym_continue] = ACTIONS(199), + [anon_sym_goto] = ACTIONS(201), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(107), - [anon_sym_decltype] = ACTIONS(109), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_explicit] = ACTIONS(998), - [anon_sym_typename] = ACTIONS(115), - [anon_sym_template] = ACTIONS(996), - [anon_sym_operator] = ACTIONS(998), - [anon_sym_try] = ACTIONS(283), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(285), - [anon_sym_namespace] = ACTIONS(998), - [anon_sym_using] = ACTIONS(998), - [anon_sym_static_assert] = ACTIONS(998), - [anon_sym_concept] = ACTIONS(998), - [anon_sym_co_return] = ACTIONS(295), - [anon_sym_co_yield] = ACTIONS(297), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(113), + [anon_sym_decltype] = ACTIONS(115), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_explicit] = ACTIONS(119), + [anon_sym_typename] = ACTIONS(121), + [anon_sym_template] = ACTIONS(207), + [anon_sym_operator] = ACTIONS(125), + [anon_sym_try] = ACTIONS(209), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(211), + [anon_sym_namespace] = ACTIONS(213), + [anon_sym_using] = ACTIONS(215), + [anon_sym_static_assert] = ACTIONS(217), + [anon_sym_concept] = ACTIONS(219), + [anon_sym_co_return] = ACTIONS(221), + [anon_sym_co_yield] = ACTIONS(223), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, - [79] = { + [69] = { + [sym_preproc_include] = STATE(61), + [sym_preproc_def] = STATE(61), + [sym_preproc_function_def] = STATE(61), + [sym_preproc_call] = STATE(61), + [sym_preproc_if] = STATE(61), + [sym_preproc_ifdef] = STATE(61), + [sym_function_definition] = STATE(61), + [sym_declaration] = STATE(61), + [sym_type_definition] = STATE(61), + [sym__declaration_modifiers] = STATE(3706), + [sym__declaration_specifiers] = STATE(4618), + [sym_linkage_specification] = STATE(61), + [sym_attribute_specifier] = STATE(3706), + [sym_attribute_declaration] = STATE(1427), + [sym_ms_declspec_modifier] = STATE(3706), + [sym_ms_based_modifier] = STATE(7654), + [sym_ms_call_modifier] = STATE(2462), + [sym__declarator] = STATE(5881), + [sym_parenthesized_declarator] = STATE(5640), + [sym_attributed_declarator] = STATE(5640), + [sym_pointer_declarator] = STATE(5640), + [sym_function_declarator] = STATE(5588), + [sym_array_declarator] = STATE(5640), + [sym_compound_statement] = STATE(61), + [sym_storage_class_specifier] = STATE(3706), + [sym_type_qualifier] = STATE(3706), + [sym__type_specifier] = STATE(3826), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), + [sym_attributed_statement] = STATE(61), + [sym_labeled_statement] = STATE(61), + [sym_expression_statement] = STATE(61), + [sym_if_statement] = STATE(61), + [sym_switch_statement] = STATE(61), + [sym_case_statement] = STATE(61), + [sym_while_statement] = STATE(61), + [sym_do_statement] = STATE(61), + [sym_for_statement] = STATE(61), + [sym_return_statement] = STATE(61), + [sym_break_statement] = STATE(61), + [sym_continue_statement] = STATE(61), + [sym_goto_statement] = STATE(61), + [sym__expression] = STATE(4182), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7590), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym__empty_declaration] = STATE(61), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym__class_name] = STATE(6623), + [sym_virtual] = STATE(3706), + [sym_explicit_function_specifier] = STATE(2240), + [sym_dependent_type] = STATE(3723), + [sym_template_declaration] = STATE(61), + [sym_template_instantiation] = STATE(61), + [sym_operator_cast] = STATE(5937), + [sym__constructor_specifiers] = STATE(2240), + [sym_operator_cast_definition] = STATE(61), + [sym_operator_cast_declaration] = STATE(61), + [sym_constructor_or_destructor_definition] = STATE(61), + [sym_reference_declarator] = STATE(5640), + [sym_structured_binding_declarator] = STATE(5640), + [sym_template_type] = STATE(3921), + [sym_template_function] = STATE(4066), + [sym_namespace_definition] = STATE(61), + [sym_namespace_alias_definition] = STATE(61), + [sym_using_declaration] = STATE(61), + [sym_alias_declaration] = STATE(61), + [sym_static_assert_declaration] = STATE(61), + [sym_concept_definition] = STATE(61), + [sym_for_range_loop] = STATE(61), + [sym_co_return_statement] = STATE(61), + [sym_co_yield_statement] = STATE(61), + [sym_throw_statement] = STATE(61), + [sym_try_statement] = STATE(61), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_destructor_name] = STATE(5640), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5143), + [sym_qualified_identifier] = STATE(3249), + [sym_qualified_type_identifier] = STATE(3915), + [sym_qualified_operator_cast_identifier] = STATE(5937), + [sym_operator_name] = STATE(5640), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_preproc_if_repeat1] = STATE(61), + [aux_sym__declaration_specifiers_repeat1] = STATE(2514), + [aux_sym_attributed_declarator_repeat1] = STATE(309), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [aux_sym_operator_cast_definition_repeat1] = STATE(2240), + [sym_identifier] = ACTIONS(153), + [aux_sym_preproc_include_token1] = ACTIONS(155), + [aux_sym_preproc_def_token1] = ACTIONS(157), + [aux_sym_preproc_if_token1] = ACTIONS(161), + [aux_sym_preproc_ifdef_token1] = ACTIONS(163), + [aux_sym_preproc_ifdef_token2] = ACTIONS(163), + [sym_preproc_directive] = ACTIONS(165), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(167), + [anon_sym_typedef] = ACTIONS(169), + [anon_sym_extern] = ACTIONS(171), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(45), + [anon_sym___cdecl] = ACTIONS(47), + [anon_sym___clrcall] = ACTIONS(47), + [anon_sym___stdcall] = ACTIONS(47), + [anon_sym___fastcall] = ACTIONS(47), + [anon_sym___thiscall] = ACTIONS(47), + [anon_sym___vectorcall] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(738), + [anon_sym_RBRACE] = ACTIONS(895), + [anon_sym_LBRACK] = ACTIONS(51), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(179), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(181), + [anon_sym_switch] = ACTIONS(183), + [anon_sym_case] = ACTIONS(185), + [anon_sym_default] = ACTIONS(187), + [anon_sym_while] = ACTIONS(189), + [anon_sym_do] = ACTIONS(191), + [anon_sym_for] = ACTIONS(193), + [anon_sym_return] = ACTIONS(195), + [anon_sym_break] = ACTIONS(197), + [anon_sym_continue] = ACTIONS(199), + [anon_sym_goto] = ACTIONS(201), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(113), + [anon_sym_decltype] = ACTIONS(115), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_explicit] = ACTIONS(119), + [anon_sym_typename] = ACTIONS(121), + [anon_sym_template] = ACTIONS(207), + [anon_sym_operator] = ACTIONS(125), + [anon_sym_try] = ACTIONS(209), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(211), + [anon_sym_namespace] = ACTIONS(213), + [anon_sym_using] = ACTIONS(215), + [anon_sym_static_assert] = ACTIONS(217), + [anon_sym_concept] = ACTIONS(219), + [anon_sym_co_return] = ACTIONS(221), + [anon_sym_co_yield] = ACTIONS(223), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), + }, + [70] = { + [sym_preproc_include] = STATE(79), + [sym_preproc_def] = STATE(79), + [sym_preproc_function_def] = STATE(79), + [sym_preproc_call] = STATE(79), + [sym_preproc_if] = STATE(79), + [sym_preproc_ifdef] = STATE(79), + [sym_function_definition] = STATE(79), [sym_declaration] = STATE(79), [sym_type_definition] = STATE(79), - [sym__declaration_modifiers] = STATE(2179), - [sym__declaration_specifiers] = STATE(3999), - [sym_attribute_specifier] = STATE(2179), - [sym_attribute_declaration] = STATE(1186), - [sym_ms_declspec_modifier] = STATE(2179), + [sym__declaration_modifiers] = STATE(3706), + [sym__declaration_specifiers] = STATE(4656), + [sym_linkage_specification] = STATE(79), + [sym_attribute_specifier] = STATE(3706), + [sym_attribute_declaration] = STATE(1427), + [sym_ms_declspec_modifier] = STATE(3706), + [sym_ms_based_modifier] = STATE(7654), + [sym_ms_call_modifier] = STATE(2383), + [sym__declarator] = STATE(5881), + [sym_parenthesized_declarator] = STATE(5640), + [sym_attributed_declarator] = STATE(5640), + [sym_pointer_declarator] = STATE(5640), + [sym_function_declarator] = STATE(5561), + [sym_array_declarator] = STATE(5640), [sym_compound_statement] = STATE(79), - [sym_storage_class_specifier] = STATE(2179), - [sym_type_qualifier] = STATE(2179), - [sym__type_specifier] = STATE(3156), - [sym_sized_type_specifier] = STATE(3232), - [sym_enum_specifier] = STATE(3232), - [sym_struct_specifier] = STATE(3232), - [sym_union_specifier] = STATE(3232), + [sym_storage_class_specifier] = STATE(3706), + [sym_type_qualifier] = STATE(3706), + [sym__type_specifier] = STATE(3808), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), [sym_attributed_statement] = STATE(79), [sym_labeled_statement] = STATE(79), [sym_expression_statement] = STATE(79), [sym_if_statement] = STATE(79), [sym_switch_statement] = STATE(79), + [sym_case_statement] = STATE(79), [sym_while_statement] = STATE(79), [sym_do_statement] = STATE(79), [sym_for_statement] = STATE(79), @@ -42061,2297 +58588,4799 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(79), [sym_continue_statement] = STATE(79), [sym_goto_statement] = STATE(79), - [sym__expression] = STATE(3497), - [sym_comma_expression] = STATE(6497), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_placeholder_type_specifier] = STATE(3232), - [sym_decltype_auto] = STATE(3279), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3232), - [sym__class_name] = STATE(5753), - [sym_virtual] = STATE(2179), - [sym_dependent_type] = STATE(3232), - [sym_template_type] = STATE(3608), - [sym_template_function] = STATE(3365), + [sym__expression] = STATE(4126), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(6964), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym__empty_declaration] = STATE(79), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym__class_name] = STATE(6623), + [sym_virtual] = STATE(3706), + [sym_explicit_function_specifier] = STATE(2256), + [sym_dependent_type] = STATE(3723), + [sym_template_declaration] = STATE(79), + [sym_template_instantiation] = STATE(79), + [sym_operator_cast] = STATE(5899), + [sym__constructor_specifiers] = STATE(2256), + [sym_operator_cast_definition] = STATE(79), + [sym_operator_cast_declaration] = STATE(79), + [sym_constructor_or_destructor_definition] = STATE(79), + [sym_reference_declarator] = STATE(5640), + [sym_structured_binding_declarator] = STATE(5640), + [sym_template_type] = STATE(3921), + [sym_template_function] = STATE(4066), + [sym_namespace_definition] = STATE(79), + [sym_namespace_alias_definition] = STATE(79), + [sym_using_declaration] = STATE(79), + [sym_alias_declaration] = STATE(79), + [sym_static_assert_declaration] = STATE(79), + [sym_concept_definition] = STATE(79), [sym_for_range_loop] = STATE(79), [sym_co_return_statement] = STATE(79), [sym_co_yield_statement] = STATE(79), [sym_throw_statement] = STATE(79), [sym_try_statement] = STATE(79), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4580), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(3593), - [sym_user_defined_literal] = STATE(3365), - [aux_sym__declaration_specifiers_repeat1] = STATE(2179), - [aux_sym_attributed_declarator_repeat1] = STATE(253), - [aux_sym_sized_type_specifier_repeat1] = STATE(3171), - [aux_sym_case_statement_repeat1] = STATE(79), - [sym_identifier] = ACTIONS(1002), - [aux_sym_preproc_include_token1] = ACTIONS(1005), - [aux_sym_preproc_def_token1] = ACTIONS(1005), - [aux_sym_preproc_if_token1] = ACTIONS(1005), - [aux_sym_preproc_if_token2] = ACTIONS(1005), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1005), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1005), - [aux_sym_preproc_else_token1] = ACTIONS(1005), - [aux_sym_preproc_elif_token1] = ACTIONS(1005), - [sym_preproc_directive] = ACTIONS(1005), - [anon_sym_LPAREN2] = ACTIONS(1007), - [anon_sym_BANG] = ACTIONS(1010), - [anon_sym_TILDE] = ACTIONS(1010), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_STAR] = ACTIONS(1016), - [anon_sym_AMP_AMP] = ACTIONS(1019), - [anon_sym_AMP] = ACTIONS(1021), - [anon_sym_SEMI] = ACTIONS(1024), - [anon_sym_typedef] = ACTIONS(1027), - [anon_sym_extern] = ACTIONS(1030), - [anon_sym___attribute__] = ACTIONS(1033), - [anon_sym_COLON_COLON] = ACTIONS(1036), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1039), - [anon_sym___declspec] = ACTIONS(1042), - [anon_sym___based] = ACTIONS(1005), - [anon_sym___cdecl] = ACTIONS(1005), - [anon_sym___clrcall] = ACTIONS(1005), - [anon_sym___stdcall] = ACTIONS(1005), - [anon_sym___fastcall] = ACTIONS(1005), - [anon_sym___thiscall] = ACTIONS(1005), - [anon_sym___vectorcall] = ACTIONS(1005), - [anon_sym_LBRACE] = ACTIONS(1045), - [anon_sym_LBRACK] = ACTIONS(1048), - [anon_sym_static] = ACTIONS(1030), - [anon_sym_register] = ACTIONS(1030), - [anon_sym_inline] = ACTIONS(1030), - [anon_sym_thread_local] = ACTIONS(1030), - [anon_sym_const] = ACTIONS(1051), - [anon_sym_volatile] = ACTIONS(1051), - [anon_sym_restrict] = ACTIONS(1051), - [anon_sym__Atomic] = ACTIONS(1051), - [anon_sym_mutable] = ACTIONS(1051), - [anon_sym_constexpr] = ACTIONS(1051), - [anon_sym_constinit] = ACTIONS(1051), - [anon_sym_consteval] = ACTIONS(1051), - [anon_sym_signed] = ACTIONS(1054), - [anon_sym_unsigned] = ACTIONS(1054), - [anon_sym_long] = ACTIONS(1054), - [anon_sym_short] = ACTIONS(1054), - [sym_primitive_type] = ACTIONS(1057), - [anon_sym_enum] = ACTIONS(1060), - [anon_sym_class] = ACTIONS(1063), - [anon_sym_struct] = ACTIONS(1066), - [anon_sym_union] = ACTIONS(1069), - [anon_sym_if] = ACTIONS(1072), - [anon_sym_else] = ACTIONS(1005), - [anon_sym_switch] = ACTIONS(1075), - [anon_sym_case] = ACTIONS(1005), - [anon_sym_default] = ACTIONS(1005), - [anon_sym_while] = ACTIONS(1078), - [anon_sym_do] = ACTIONS(1081), - [anon_sym_for] = ACTIONS(1084), - [anon_sym_return] = ACTIONS(1087), - [anon_sym_break] = ACTIONS(1090), - [anon_sym_continue] = ACTIONS(1093), - [anon_sym_goto] = ACTIONS(1096), - [anon_sym_not] = ACTIONS(1013), - [anon_sym_compl] = ACTIONS(1013), - [anon_sym_DASH_DASH] = ACTIONS(1099), - [anon_sym_PLUS_PLUS] = ACTIONS(1099), - [anon_sym_sizeof] = ACTIONS(1102), - [sym_number_literal] = ACTIONS(1105), - [anon_sym_L_SQUOTE] = ACTIONS(1108), - [anon_sym_u_SQUOTE] = ACTIONS(1108), - [anon_sym_U_SQUOTE] = ACTIONS(1108), - [anon_sym_u8_SQUOTE] = ACTIONS(1108), - [anon_sym_SQUOTE] = ACTIONS(1108), - [anon_sym_L_DQUOTE] = ACTIONS(1111), - [anon_sym_u_DQUOTE] = ACTIONS(1111), - [anon_sym_U_DQUOTE] = ACTIONS(1111), - [anon_sym_u8_DQUOTE] = ACTIONS(1111), - [anon_sym_DQUOTE] = ACTIONS(1111), - [sym_true] = ACTIONS(1114), - [sym_false] = ACTIONS(1114), - [sym_null] = ACTIONS(1114), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1117), - [anon_sym_decltype] = ACTIONS(1120), - [anon_sym_virtual] = ACTIONS(1123), - [anon_sym_explicit] = ACTIONS(1005), - [anon_sym_typename] = ACTIONS(1126), - [anon_sym_template] = ACTIONS(1129), - [anon_sym_operator] = ACTIONS(1005), - [anon_sym_try] = ACTIONS(1132), - [anon_sym_delete] = ACTIONS(1135), - [anon_sym_throw] = ACTIONS(1138), - [anon_sym_namespace] = ACTIONS(1005), - [anon_sym_using] = ACTIONS(1005), - [anon_sym_static_assert] = ACTIONS(1005), - [anon_sym_concept] = ACTIONS(1005), - [anon_sym_co_return] = ACTIONS(1141), - [anon_sym_co_yield] = ACTIONS(1144), - [anon_sym_R_DQUOTE] = ACTIONS(1147), - [anon_sym_LR_DQUOTE] = ACTIONS(1147), - [anon_sym_uR_DQUOTE] = ACTIONS(1147), - [anon_sym_UR_DQUOTE] = ACTIONS(1147), - [anon_sym_u8R_DQUOTE] = ACTIONS(1147), - [anon_sym_co_await] = ACTIONS(1150), - [anon_sym_new] = ACTIONS(1153), - [anon_sym_requires] = ACTIONS(1156), - [sym_this] = ACTIONS(1114), - [sym_nullptr] = ACTIONS(1114), - }, - [80] = { - [sym_declaration] = STATE(77), - [sym_type_definition] = STATE(77), - [sym__declaration_modifiers] = STATE(2179), - [sym__declaration_specifiers] = STATE(3999), - [sym_attribute_specifier] = STATE(2179), - [sym_attribute_declaration] = STATE(1186), - [sym_ms_declspec_modifier] = STATE(2179), - [sym_compound_statement] = STATE(77), - [sym_storage_class_specifier] = STATE(2179), - [sym_type_qualifier] = STATE(2179), - [sym__type_specifier] = STATE(3156), - [sym_sized_type_specifier] = STATE(3232), - [sym_enum_specifier] = STATE(3232), - [sym_struct_specifier] = STATE(3232), - [sym_union_specifier] = STATE(3232), - [sym_attributed_statement] = STATE(77), - [sym_labeled_statement] = STATE(77), - [sym_expression_statement] = STATE(77), - [sym_if_statement] = STATE(77), - [sym_switch_statement] = STATE(77), - [sym_while_statement] = STATE(77), - [sym_do_statement] = STATE(77), - [sym_for_statement] = STATE(77), - [sym_return_statement] = STATE(77), - [sym_break_statement] = STATE(77), - [sym_continue_statement] = STATE(77), - [sym_goto_statement] = STATE(77), - [sym__expression] = STATE(3497), - [sym_comma_expression] = STATE(6497), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_placeholder_type_specifier] = STATE(3232), - [sym_decltype_auto] = STATE(3279), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3232), - [sym__class_name] = STATE(5753), - [sym_virtual] = STATE(2179), - [sym_dependent_type] = STATE(3232), - [sym_template_type] = STATE(3608), - [sym_template_function] = STATE(3365), - [sym_for_range_loop] = STATE(77), - [sym_co_return_statement] = STATE(77), - [sym_co_yield_statement] = STATE(77), - [sym_throw_statement] = STATE(77), - [sym_try_statement] = STATE(77), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4580), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(3593), - [sym_user_defined_literal] = STATE(3365), - [aux_sym__declaration_specifiers_repeat1] = STATE(2179), - [aux_sym_attributed_declarator_repeat1] = STATE(253), - [aux_sym_sized_type_specifier_repeat1] = STATE(3171), - [aux_sym_case_statement_repeat1] = STATE(77), - [sym_identifier] = ACTIONS(980), - [aux_sym_preproc_include_token1] = ACTIONS(1159), - [aux_sym_preproc_def_token1] = ACTIONS(1159), - [aux_sym_preproc_if_token1] = ACTIONS(1159), - [aux_sym_preproc_if_token2] = ACTIONS(1159), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1159), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1159), - [aux_sym_preproc_else_token1] = ACTIONS(1159), - [aux_sym_preproc_elif_token1] = ACTIONS(1159), - [sym_preproc_directive] = ACTIONS(1159), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_destructor_name] = STATE(5640), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5143), + [sym_qualified_identifier] = STATE(3249), + [sym_qualified_type_identifier] = STATE(3915), + [sym_qualified_operator_cast_identifier] = STATE(5899), + [sym_operator_name] = STATE(5640), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_preproc_if_repeat1] = STATE(79), + [aux_sym__declaration_specifiers_repeat1] = STATE(2514), + [aux_sym_attributed_declarator_repeat1] = STATE(189), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [aux_sym_operator_cast_definition_repeat1] = STATE(2256), + [sym_identifier] = ACTIONS(897), + [aux_sym_preproc_include_token1] = ACTIONS(899), + [aux_sym_preproc_def_token1] = ACTIONS(901), + [aux_sym_preproc_if_token1] = ACTIONS(903), + [aux_sym_preproc_if_token2] = ACTIONS(905), + [aux_sym_preproc_ifdef_token1] = ACTIONS(907), + [aux_sym_preproc_ifdef_token2] = ACTIONS(907), + [sym_preproc_directive] = ACTIONS(909), + [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(23), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP_AMP] = ACTIONS(1161), - [anon_sym_AMP] = ACTIONS(990), - [anon_sym_SEMI] = ACTIONS(249), - [anon_sym_typedef] = ACTIONS(251), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(992), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(1159), - [anon_sym___cdecl] = ACTIONS(1159), - [anon_sym___clrcall] = ACTIONS(1159), - [anon_sym___stdcall] = ACTIONS(1159), - [anon_sym___fastcall] = ACTIONS(1159), - [anon_sym___thiscall] = ACTIONS(1159), - [anon_sym___vectorcall] = ACTIONS(1159), - [anon_sym_LBRACE] = ACTIONS(255), - [anon_sym_LBRACK] = ACTIONS(994), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(61), - [anon_sym_unsigned] = ACTIONS(61), - [anon_sym_long] = ACTIONS(61), - [anon_sym_short] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(63), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(259), - [anon_sym_else] = ACTIONS(1159), - [anon_sym_switch] = ACTIONS(261), - [anon_sym_case] = ACTIONS(1159), - [anon_sym_default] = ACTIONS(1159), - [anon_sym_while] = ACTIONS(267), - [anon_sym_do] = ACTIONS(269), - [anon_sym_for] = ACTIONS(271), - [anon_sym_return] = ACTIONS(273), - [anon_sym_break] = ACTIONS(275), - [anon_sym_continue] = ACTIONS(277), - [anon_sym_goto] = ACTIONS(279), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(911), + [anon_sym_typedef] = ACTIONS(913), + [anon_sym_extern] = ACTIONS(915), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(45), + [anon_sym___cdecl] = ACTIONS(47), + [anon_sym___clrcall] = ACTIONS(47), + [anon_sym___stdcall] = ACTIONS(47), + [anon_sym___fastcall] = ACTIONS(47), + [anon_sym___thiscall] = ACTIONS(47), + [anon_sym___vectorcall] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(917), + [anon_sym_LBRACK] = ACTIONS(51), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(919), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(921), + [anon_sym_switch] = ACTIONS(923), + [anon_sym_case] = ACTIONS(925), + [anon_sym_default] = ACTIONS(927), + [anon_sym_while] = ACTIONS(929), + [anon_sym_do] = ACTIONS(931), + [anon_sym_for] = ACTIONS(933), + [anon_sym_return] = ACTIONS(935), + [anon_sym_break] = ACTIONS(937), + [anon_sym_continue] = ACTIONS(939), + [anon_sym_goto] = ACTIONS(941), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(107), - [anon_sym_decltype] = ACTIONS(109), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_explicit] = ACTIONS(1159), - [anon_sym_typename] = ACTIONS(115), - [anon_sym_template] = ACTIONS(996), - [anon_sym_operator] = ACTIONS(1159), - [anon_sym_try] = ACTIONS(283), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(285), - [anon_sym_namespace] = ACTIONS(1159), - [anon_sym_using] = ACTIONS(1159), - [anon_sym_static_assert] = ACTIONS(1159), - [anon_sym_concept] = ACTIONS(1159), - [anon_sym_co_return] = ACTIONS(295), - [anon_sym_co_yield] = ACTIONS(297), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(113), + [anon_sym_decltype] = ACTIONS(115), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_explicit] = ACTIONS(119), + [anon_sym_typename] = ACTIONS(121), + [anon_sym_template] = ACTIONS(943), + [anon_sym_operator] = ACTIONS(125), + [anon_sym_try] = ACTIONS(945), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(947), + [anon_sym_namespace] = ACTIONS(949), + [anon_sym_using] = ACTIONS(951), + [anon_sym_static_assert] = ACTIONS(953), + [anon_sym_concept] = ACTIONS(955), + [anon_sym_co_return] = ACTIONS(957), + [anon_sym_co_yield] = ACTIONS(959), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, - [81] = { - [sym_declaration] = STATE(78), - [sym_type_definition] = STATE(78), - [sym__declaration_modifiers] = STATE(2179), - [sym__declaration_specifiers] = STATE(3999), - [sym_attribute_specifier] = STATE(2179), - [sym_attribute_declaration] = STATE(1186), - [sym_ms_declspec_modifier] = STATE(2179), - [sym_compound_statement] = STATE(78), - [sym_storage_class_specifier] = STATE(2179), - [sym_type_qualifier] = STATE(2179), - [sym__type_specifier] = STATE(3156), - [sym_sized_type_specifier] = STATE(3232), - [sym_enum_specifier] = STATE(3232), - [sym_struct_specifier] = STATE(3232), - [sym_union_specifier] = STATE(3232), - [sym_attributed_statement] = STATE(78), - [sym_labeled_statement] = STATE(78), - [sym_expression_statement] = STATE(78), - [sym_if_statement] = STATE(78), - [sym_switch_statement] = STATE(78), - [sym_while_statement] = STATE(78), - [sym_do_statement] = STATE(78), - [sym_for_statement] = STATE(78), - [sym_return_statement] = STATE(78), - [sym_break_statement] = STATE(78), - [sym_continue_statement] = STATE(78), - [sym_goto_statement] = STATE(78), - [sym__expression] = STATE(3497), - [sym_comma_expression] = STATE(6497), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_placeholder_type_specifier] = STATE(3232), - [sym_decltype_auto] = STATE(3279), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3232), - [sym__class_name] = STATE(5753), - [sym_virtual] = STATE(2179), - [sym_dependent_type] = STATE(3232), - [sym_template_type] = STATE(3608), - [sym_template_function] = STATE(3365), - [sym_for_range_loop] = STATE(78), - [sym_co_return_statement] = STATE(78), - [sym_co_yield_statement] = STATE(78), - [sym_throw_statement] = STATE(78), - [sym_try_statement] = STATE(78), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4580), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(3593), - [sym_user_defined_literal] = STATE(3365), - [aux_sym__declaration_specifiers_repeat1] = STATE(2179), - [aux_sym_attributed_declarator_repeat1] = STATE(253), - [aux_sym_sized_type_specifier_repeat1] = STATE(3171), - [aux_sym_case_statement_repeat1] = STATE(78), - [sym_identifier] = ACTIONS(980), - [aux_sym_preproc_include_token1] = ACTIONS(1163), - [aux_sym_preproc_def_token1] = ACTIONS(1163), - [aux_sym_preproc_if_token1] = ACTIONS(1163), - [aux_sym_preproc_if_token2] = ACTIONS(1163), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1163), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1163), - [aux_sym_preproc_else_token1] = ACTIONS(1163), - [aux_sym_preproc_elif_token1] = ACTIONS(1163), - [sym_preproc_directive] = ACTIONS(1163), - [anon_sym_LPAREN2] = ACTIONS(984), + [71] = { + [sym_preproc_include] = STATE(64), + [sym_preproc_def] = STATE(64), + [sym_preproc_function_def] = STATE(64), + [sym_preproc_call] = STATE(64), + [sym_preproc_if] = STATE(64), + [sym_preproc_ifdef] = STATE(64), + [sym_function_definition] = STATE(64), + [sym_declaration] = STATE(64), + [sym_type_definition] = STATE(64), + [sym__declaration_modifiers] = STATE(3706), + [sym__declaration_specifiers] = STATE(4618), + [sym_linkage_specification] = STATE(64), + [sym_attribute_specifier] = STATE(3706), + [sym_attribute_declaration] = STATE(1427), + [sym_ms_declspec_modifier] = STATE(3706), + [sym_ms_based_modifier] = STATE(7654), + [sym_ms_call_modifier] = STATE(2462), + [sym__declarator] = STATE(5881), + [sym_parenthesized_declarator] = STATE(5640), + [sym_attributed_declarator] = STATE(5640), + [sym_pointer_declarator] = STATE(5640), + [sym_function_declarator] = STATE(5588), + [sym_array_declarator] = STATE(5640), + [sym_compound_statement] = STATE(64), + [sym_storage_class_specifier] = STATE(3706), + [sym_type_qualifier] = STATE(3706), + [sym__type_specifier] = STATE(3826), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), + [sym_attributed_statement] = STATE(64), + [sym_labeled_statement] = STATE(64), + [sym_expression_statement] = STATE(64), + [sym_if_statement] = STATE(64), + [sym_switch_statement] = STATE(64), + [sym_case_statement] = STATE(64), + [sym_while_statement] = STATE(64), + [sym_do_statement] = STATE(64), + [sym_for_statement] = STATE(64), + [sym_return_statement] = STATE(64), + [sym_break_statement] = STATE(64), + [sym_continue_statement] = STATE(64), + [sym_goto_statement] = STATE(64), + [sym__expression] = STATE(4182), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7590), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym__empty_declaration] = STATE(64), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym__class_name] = STATE(6623), + [sym_virtual] = STATE(3706), + [sym_explicit_function_specifier] = STATE(2240), + [sym_dependent_type] = STATE(3723), + [sym_template_declaration] = STATE(64), + [sym_template_instantiation] = STATE(64), + [sym_operator_cast] = STATE(5937), + [sym__constructor_specifiers] = STATE(2240), + [sym_operator_cast_definition] = STATE(64), + [sym_operator_cast_declaration] = STATE(64), + [sym_constructor_or_destructor_definition] = STATE(64), + [sym_reference_declarator] = STATE(5640), + [sym_structured_binding_declarator] = STATE(5640), + [sym_template_type] = STATE(3921), + [sym_template_function] = STATE(4066), + [sym_namespace_definition] = STATE(64), + [sym_namespace_alias_definition] = STATE(64), + [sym_using_declaration] = STATE(64), + [sym_alias_declaration] = STATE(64), + [sym_static_assert_declaration] = STATE(64), + [sym_concept_definition] = STATE(64), + [sym_for_range_loop] = STATE(64), + [sym_co_return_statement] = STATE(64), + [sym_co_yield_statement] = STATE(64), + [sym_throw_statement] = STATE(64), + [sym_try_statement] = STATE(64), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_destructor_name] = STATE(5640), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5143), + [sym_qualified_identifier] = STATE(3249), + [sym_qualified_type_identifier] = STATE(3915), + [sym_qualified_operator_cast_identifier] = STATE(5937), + [sym_operator_name] = STATE(5640), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_preproc_if_repeat1] = STATE(64), + [aux_sym__declaration_specifiers_repeat1] = STATE(2514), + [aux_sym_attributed_declarator_repeat1] = STATE(309), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [aux_sym_operator_cast_definition_repeat1] = STATE(2240), + [sym_identifier] = ACTIONS(153), + [aux_sym_preproc_include_token1] = ACTIONS(155), + [aux_sym_preproc_def_token1] = ACTIONS(157), + [aux_sym_preproc_if_token1] = ACTIONS(161), + [aux_sym_preproc_ifdef_token1] = ACTIONS(163), + [aux_sym_preproc_ifdef_token2] = ACTIONS(163), + [sym_preproc_directive] = ACTIONS(165), + [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(23), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP_AMP] = ACTIONS(1165), - [anon_sym_AMP] = ACTIONS(990), - [anon_sym_SEMI] = ACTIONS(249), - [anon_sym_typedef] = ACTIONS(251), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(992), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(1163), - [anon_sym___cdecl] = ACTIONS(1163), - [anon_sym___clrcall] = ACTIONS(1163), - [anon_sym___stdcall] = ACTIONS(1163), - [anon_sym___fastcall] = ACTIONS(1163), - [anon_sym___thiscall] = ACTIONS(1163), - [anon_sym___vectorcall] = ACTIONS(1163), - [anon_sym_LBRACE] = ACTIONS(255), - [anon_sym_LBRACK] = ACTIONS(994), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(61), - [anon_sym_unsigned] = ACTIONS(61), - [anon_sym_long] = ACTIONS(61), - [anon_sym_short] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(63), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(259), - [anon_sym_else] = ACTIONS(1163), - [anon_sym_switch] = ACTIONS(261), - [anon_sym_case] = ACTIONS(1163), - [anon_sym_default] = ACTIONS(1163), - [anon_sym_while] = ACTIONS(267), - [anon_sym_do] = ACTIONS(269), - [anon_sym_for] = ACTIONS(271), - [anon_sym_return] = ACTIONS(273), - [anon_sym_break] = ACTIONS(275), - [anon_sym_continue] = ACTIONS(277), - [anon_sym_goto] = ACTIONS(279), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(167), + [anon_sym_typedef] = ACTIONS(169), + [anon_sym_extern] = ACTIONS(171), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(45), + [anon_sym___cdecl] = ACTIONS(47), + [anon_sym___clrcall] = ACTIONS(47), + [anon_sym___stdcall] = ACTIONS(47), + [anon_sym___fastcall] = ACTIONS(47), + [anon_sym___thiscall] = ACTIONS(47), + [anon_sym___vectorcall] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(738), + [anon_sym_RBRACE] = ACTIONS(961), + [anon_sym_LBRACK] = ACTIONS(51), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(179), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(181), + [anon_sym_switch] = ACTIONS(183), + [anon_sym_case] = ACTIONS(185), + [anon_sym_default] = ACTIONS(187), + [anon_sym_while] = ACTIONS(189), + [anon_sym_do] = ACTIONS(191), + [anon_sym_for] = ACTIONS(193), + [anon_sym_return] = ACTIONS(195), + [anon_sym_break] = ACTIONS(197), + [anon_sym_continue] = ACTIONS(199), + [anon_sym_goto] = ACTIONS(201), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(107), - [anon_sym_decltype] = ACTIONS(109), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_explicit] = ACTIONS(1163), - [anon_sym_typename] = ACTIONS(115), - [anon_sym_template] = ACTIONS(996), - [anon_sym_operator] = ACTIONS(1163), - [anon_sym_try] = ACTIONS(283), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(285), - [anon_sym_namespace] = ACTIONS(1163), - [anon_sym_using] = ACTIONS(1163), - [anon_sym_static_assert] = ACTIONS(1163), - [anon_sym_concept] = ACTIONS(1163), - [anon_sym_co_return] = ACTIONS(295), - [anon_sym_co_yield] = ACTIONS(297), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), - }, - [82] = { - [sym_declaration] = STATE(82), - [sym_type_definition] = STATE(82), - [sym__declaration_modifiers] = STATE(2179), - [sym__declaration_specifiers] = STATE(3956), - [sym_attribute_specifier] = STATE(2179), - [sym_attribute_declaration] = STATE(1186), - [sym_ms_declspec_modifier] = STATE(2179), - [sym_compound_statement] = STATE(82), - [sym_storage_class_specifier] = STATE(2179), - [sym_type_qualifier] = STATE(2179), - [sym__type_specifier] = STATE(3156), - [sym_sized_type_specifier] = STATE(3232), - [sym_enum_specifier] = STATE(3232), - [sym_struct_specifier] = STATE(3232), - [sym_union_specifier] = STATE(3232), - [sym_attributed_statement] = STATE(82), - [sym_labeled_statement] = STATE(82), - [sym_expression_statement] = STATE(82), - [sym_if_statement] = STATE(82), - [sym_switch_statement] = STATE(82), - [sym_while_statement] = STATE(82), - [sym_do_statement] = STATE(82), - [sym_for_statement] = STATE(82), - [sym_return_statement] = STATE(82), - [sym_break_statement] = STATE(82), - [sym_continue_statement] = STATE(82), - [sym_goto_statement] = STATE(82), - [sym__expression] = STATE(3522), - [sym_comma_expression] = STATE(6276), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_placeholder_type_specifier] = STATE(3232), - [sym_decltype_auto] = STATE(3279), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3232), - [sym__class_name] = STATE(5753), - [sym_virtual] = STATE(2179), - [sym_dependent_type] = STATE(3232), - [sym_template_type] = STATE(3608), - [sym_template_function] = STATE(3365), - [sym_for_range_loop] = STATE(82), - [sym_co_return_statement] = STATE(82), - [sym_co_yield_statement] = STATE(82), - [sym_throw_statement] = STATE(82), - [sym_try_statement] = STATE(82), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4580), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(3593), - [sym_user_defined_literal] = STATE(3365), - [aux_sym__declaration_specifiers_repeat1] = STATE(2179), - [aux_sym_attributed_declarator_repeat1] = STATE(151), - [aux_sym_sized_type_specifier_repeat1] = STATE(3171), - [aux_sym_case_statement_repeat1] = STATE(82), - [sym_identifier] = ACTIONS(1167), - [aux_sym_preproc_include_token1] = ACTIONS(1005), - [aux_sym_preproc_def_token1] = ACTIONS(1005), - [aux_sym_preproc_if_token1] = ACTIONS(1005), - [aux_sym_preproc_if_token2] = ACTIONS(1005), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1005), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1005), - [sym_preproc_directive] = ACTIONS(1005), - [anon_sym_LPAREN2] = ACTIONS(1007), - [anon_sym_BANG] = ACTIONS(1010), - [anon_sym_TILDE] = ACTIONS(1010), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_STAR] = ACTIONS(1016), - [anon_sym_AMP_AMP] = ACTIONS(1019), - [anon_sym_AMP] = ACTIONS(1021), - [anon_sym_SEMI] = ACTIONS(1170), - [anon_sym_typedef] = ACTIONS(1173), - [anon_sym_extern] = ACTIONS(1030), - [anon_sym___attribute__] = ACTIONS(1033), - [anon_sym_COLON_COLON] = ACTIONS(1036), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1039), - [anon_sym___declspec] = ACTIONS(1042), - [anon_sym___based] = ACTIONS(1005), - [anon_sym___cdecl] = ACTIONS(1005), - [anon_sym___clrcall] = ACTIONS(1005), - [anon_sym___stdcall] = ACTIONS(1005), - [anon_sym___fastcall] = ACTIONS(1005), - [anon_sym___thiscall] = ACTIONS(1005), - [anon_sym___vectorcall] = ACTIONS(1005), - [anon_sym_LBRACE] = ACTIONS(1176), - [anon_sym_LBRACK] = ACTIONS(1048), - [anon_sym_static] = ACTIONS(1030), - [anon_sym_register] = ACTIONS(1030), - [anon_sym_inline] = ACTIONS(1030), - [anon_sym_thread_local] = ACTIONS(1030), - [anon_sym_const] = ACTIONS(1051), - [anon_sym_volatile] = ACTIONS(1051), - [anon_sym_restrict] = ACTIONS(1051), - [anon_sym__Atomic] = ACTIONS(1051), - [anon_sym_mutable] = ACTIONS(1051), - [anon_sym_constexpr] = ACTIONS(1051), - [anon_sym_constinit] = ACTIONS(1051), - [anon_sym_consteval] = ACTIONS(1051), - [anon_sym_signed] = ACTIONS(1054), - [anon_sym_unsigned] = ACTIONS(1054), - [anon_sym_long] = ACTIONS(1054), - [anon_sym_short] = ACTIONS(1054), - [sym_primitive_type] = ACTIONS(1057), - [anon_sym_enum] = ACTIONS(1060), - [anon_sym_class] = ACTIONS(1063), - [anon_sym_struct] = ACTIONS(1066), - [anon_sym_union] = ACTIONS(1069), - [anon_sym_if] = ACTIONS(1179), - [anon_sym_else] = ACTIONS(1005), - [anon_sym_switch] = ACTIONS(1182), - [anon_sym_case] = ACTIONS(1005), - [anon_sym_default] = ACTIONS(1005), - [anon_sym_while] = ACTIONS(1185), - [anon_sym_do] = ACTIONS(1188), - [anon_sym_for] = ACTIONS(1191), - [anon_sym_return] = ACTIONS(1194), - [anon_sym_break] = ACTIONS(1197), - [anon_sym_continue] = ACTIONS(1200), - [anon_sym_goto] = ACTIONS(1203), - [anon_sym_not] = ACTIONS(1013), - [anon_sym_compl] = ACTIONS(1013), - [anon_sym_DASH_DASH] = ACTIONS(1099), - [anon_sym_PLUS_PLUS] = ACTIONS(1099), - [anon_sym_sizeof] = ACTIONS(1102), - [sym_number_literal] = ACTIONS(1105), - [anon_sym_L_SQUOTE] = ACTIONS(1108), - [anon_sym_u_SQUOTE] = ACTIONS(1108), - [anon_sym_U_SQUOTE] = ACTIONS(1108), - [anon_sym_u8_SQUOTE] = ACTIONS(1108), - [anon_sym_SQUOTE] = ACTIONS(1108), - [anon_sym_L_DQUOTE] = ACTIONS(1111), - [anon_sym_u_DQUOTE] = ACTIONS(1111), - [anon_sym_U_DQUOTE] = ACTIONS(1111), - [anon_sym_u8_DQUOTE] = ACTIONS(1111), - [anon_sym_DQUOTE] = ACTIONS(1111), - [sym_true] = ACTIONS(1114), - [sym_false] = ACTIONS(1114), - [sym_null] = ACTIONS(1114), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1117), - [anon_sym_decltype] = ACTIONS(1120), - [anon_sym_virtual] = ACTIONS(1123), - [anon_sym_explicit] = ACTIONS(1005), - [anon_sym_typename] = ACTIONS(1126), - [anon_sym_template] = ACTIONS(1129), - [anon_sym_operator] = ACTIONS(1005), - [anon_sym_try] = ACTIONS(1206), - [anon_sym_delete] = ACTIONS(1135), - [anon_sym_throw] = ACTIONS(1209), - [anon_sym_namespace] = ACTIONS(1005), - [anon_sym_using] = ACTIONS(1005), - [anon_sym_static_assert] = ACTIONS(1005), - [anon_sym_concept] = ACTIONS(1005), - [anon_sym_co_return] = ACTIONS(1212), - [anon_sym_co_yield] = ACTIONS(1215), - [anon_sym_R_DQUOTE] = ACTIONS(1147), - [anon_sym_LR_DQUOTE] = ACTIONS(1147), - [anon_sym_uR_DQUOTE] = ACTIONS(1147), - [anon_sym_UR_DQUOTE] = ACTIONS(1147), - [anon_sym_u8R_DQUOTE] = ACTIONS(1147), - [anon_sym_co_await] = ACTIONS(1150), - [anon_sym_new] = ACTIONS(1153), - [anon_sym_requires] = ACTIONS(1156), - [sym_this] = ACTIONS(1114), - [sym_nullptr] = ACTIONS(1114), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(113), + [anon_sym_decltype] = ACTIONS(115), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_explicit] = ACTIONS(119), + [anon_sym_typename] = ACTIONS(121), + [anon_sym_template] = ACTIONS(207), + [anon_sym_operator] = ACTIONS(125), + [anon_sym_try] = ACTIONS(209), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(211), + [anon_sym_namespace] = ACTIONS(213), + [anon_sym_using] = ACTIONS(215), + [anon_sym_static_assert] = ACTIONS(217), + [anon_sym_concept] = ACTIONS(219), + [anon_sym_co_return] = ACTIONS(221), + [anon_sym_co_yield] = ACTIONS(223), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, - [83] = { - [sym_declaration] = STATE(82), - [sym_type_definition] = STATE(82), - [sym__declaration_modifiers] = STATE(2179), - [sym__declaration_specifiers] = STATE(3956), - [sym_attribute_specifier] = STATE(2179), - [sym_attribute_declaration] = STATE(1186), - [sym_ms_declspec_modifier] = STATE(2179), - [sym_compound_statement] = STATE(82), - [sym_storage_class_specifier] = STATE(2179), - [sym_type_qualifier] = STATE(2179), - [sym__type_specifier] = STATE(3156), - [sym_sized_type_specifier] = STATE(3232), - [sym_enum_specifier] = STATE(3232), - [sym_struct_specifier] = STATE(3232), - [sym_union_specifier] = STATE(3232), - [sym_attributed_statement] = STATE(82), - [sym_labeled_statement] = STATE(82), - [sym_expression_statement] = STATE(82), - [sym_if_statement] = STATE(82), - [sym_switch_statement] = STATE(82), - [sym_while_statement] = STATE(82), - [sym_do_statement] = STATE(82), - [sym_for_statement] = STATE(82), - [sym_return_statement] = STATE(82), - [sym_break_statement] = STATE(82), - [sym_continue_statement] = STATE(82), - [sym_goto_statement] = STATE(82), - [sym__expression] = STATE(3522), - [sym_comma_expression] = STATE(6276), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_placeholder_type_specifier] = STATE(3232), - [sym_decltype_auto] = STATE(3279), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3232), - [sym__class_name] = STATE(5753), - [sym_virtual] = STATE(2179), - [sym_dependent_type] = STATE(3232), - [sym_template_type] = STATE(3608), - [sym_template_function] = STATE(3365), - [sym_for_range_loop] = STATE(82), - [sym_co_return_statement] = STATE(82), - [sym_co_yield_statement] = STATE(82), - [sym_throw_statement] = STATE(82), - [sym_try_statement] = STATE(82), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4580), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(3593), - [sym_user_defined_literal] = STATE(3365), - [aux_sym__declaration_specifiers_repeat1] = STATE(2179), - [aux_sym_attributed_declarator_repeat1] = STATE(151), - [aux_sym_sized_type_specifier_repeat1] = STATE(3171), - [aux_sym_case_statement_repeat1] = STATE(82), - [sym_identifier] = ACTIONS(1218), - [aux_sym_preproc_include_token1] = ACTIONS(982), - [aux_sym_preproc_def_token1] = ACTIONS(982), - [aux_sym_preproc_if_token1] = ACTIONS(982), - [aux_sym_preproc_if_token2] = ACTIONS(982), - [aux_sym_preproc_ifdef_token1] = ACTIONS(982), - [aux_sym_preproc_ifdef_token2] = ACTIONS(982), - [sym_preproc_directive] = ACTIONS(982), - [anon_sym_LPAREN2] = ACTIONS(984), + [72] = { + [sym_preproc_include] = STATE(64), + [sym_preproc_def] = STATE(64), + [sym_preproc_function_def] = STATE(64), + [sym_preproc_call] = STATE(64), + [sym_preproc_if] = STATE(64), + [sym_preproc_ifdef] = STATE(64), + [sym_function_definition] = STATE(64), + [sym_declaration] = STATE(64), + [sym_type_definition] = STATE(64), + [sym__declaration_modifiers] = STATE(3706), + [sym__declaration_specifiers] = STATE(4618), + [sym_linkage_specification] = STATE(64), + [sym_attribute_specifier] = STATE(3706), + [sym_attribute_declaration] = STATE(1427), + [sym_ms_declspec_modifier] = STATE(3706), + [sym_ms_based_modifier] = STATE(7654), + [sym_ms_call_modifier] = STATE(2462), + [sym__declarator] = STATE(5881), + [sym_parenthesized_declarator] = STATE(5640), + [sym_attributed_declarator] = STATE(5640), + [sym_pointer_declarator] = STATE(5640), + [sym_function_declarator] = STATE(5588), + [sym_array_declarator] = STATE(5640), + [sym_compound_statement] = STATE(64), + [sym_storage_class_specifier] = STATE(3706), + [sym_type_qualifier] = STATE(3706), + [sym__type_specifier] = STATE(3826), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), + [sym_attributed_statement] = STATE(64), + [sym_labeled_statement] = STATE(64), + [sym_expression_statement] = STATE(64), + [sym_if_statement] = STATE(64), + [sym_switch_statement] = STATE(64), + [sym_case_statement] = STATE(64), + [sym_while_statement] = STATE(64), + [sym_do_statement] = STATE(64), + [sym_for_statement] = STATE(64), + [sym_return_statement] = STATE(64), + [sym_break_statement] = STATE(64), + [sym_continue_statement] = STATE(64), + [sym_goto_statement] = STATE(64), + [sym__expression] = STATE(4182), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7590), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym__empty_declaration] = STATE(64), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym__class_name] = STATE(6623), + [sym_virtual] = STATE(3706), + [sym_explicit_function_specifier] = STATE(2240), + [sym_dependent_type] = STATE(3723), + [sym_template_declaration] = STATE(64), + [sym_template_instantiation] = STATE(64), + [sym_operator_cast] = STATE(5937), + [sym__constructor_specifiers] = STATE(2240), + [sym_operator_cast_definition] = STATE(64), + [sym_operator_cast_declaration] = STATE(64), + [sym_constructor_or_destructor_definition] = STATE(64), + [sym_reference_declarator] = STATE(5640), + [sym_structured_binding_declarator] = STATE(5640), + [sym_template_type] = STATE(3921), + [sym_template_function] = STATE(4066), + [sym_namespace_definition] = STATE(64), + [sym_namespace_alias_definition] = STATE(64), + [sym_using_declaration] = STATE(64), + [sym_alias_declaration] = STATE(64), + [sym_static_assert_declaration] = STATE(64), + [sym_concept_definition] = STATE(64), + [sym_for_range_loop] = STATE(64), + [sym_co_return_statement] = STATE(64), + [sym_co_yield_statement] = STATE(64), + [sym_throw_statement] = STATE(64), + [sym_try_statement] = STATE(64), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_destructor_name] = STATE(5640), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5143), + [sym_qualified_identifier] = STATE(3249), + [sym_qualified_type_identifier] = STATE(3915), + [sym_qualified_operator_cast_identifier] = STATE(5937), + [sym_operator_name] = STATE(5640), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_preproc_if_repeat1] = STATE(64), + [aux_sym__declaration_specifiers_repeat1] = STATE(2514), + [aux_sym_attributed_declarator_repeat1] = STATE(309), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [aux_sym_operator_cast_definition_repeat1] = STATE(2240), + [sym_identifier] = ACTIONS(153), + [aux_sym_preproc_include_token1] = ACTIONS(155), + [aux_sym_preproc_def_token1] = ACTIONS(157), + [aux_sym_preproc_if_token1] = ACTIONS(161), + [aux_sym_preproc_ifdef_token1] = ACTIONS(163), + [aux_sym_preproc_ifdef_token2] = ACTIONS(163), + [sym_preproc_directive] = ACTIONS(165), + [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(23), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP_AMP] = ACTIONS(988), - [anon_sym_AMP] = ACTIONS(990), - [anon_sym_SEMI] = ACTIONS(660), - [anon_sym_typedef] = ACTIONS(662), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(992), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(982), - [anon_sym___cdecl] = ACTIONS(982), - [anon_sym___clrcall] = ACTIONS(982), - [anon_sym___stdcall] = ACTIONS(982), - [anon_sym___fastcall] = ACTIONS(982), - [anon_sym___thiscall] = ACTIONS(982), - [anon_sym___vectorcall] = ACTIONS(982), - [anon_sym_LBRACE] = ACTIONS(666), - [anon_sym_LBRACK] = ACTIONS(994), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(61), - [anon_sym_unsigned] = ACTIONS(61), - [anon_sym_long] = ACTIONS(61), - [anon_sym_short] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(63), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(670), - [anon_sym_else] = ACTIONS(982), - [anon_sym_switch] = ACTIONS(672), - [anon_sym_case] = ACTIONS(982), - [anon_sym_default] = ACTIONS(982), - [anon_sym_while] = ACTIONS(678), - [anon_sym_do] = ACTIONS(680), - [anon_sym_for] = ACTIONS(682), - [anon_sym_return] = ACTIONS(684), - [anon_sym_break] = ACTIONS(686), - [anon_sym_continue] = ACTIONS(688), - [anon_sym_goto] = ACTIONS(690), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(167), + [anon_sym_typedef] = ACTIONS(169), + [anon_sym_extern] = ACTIONS(171), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(45), + [anon_sym___cdecl] = ACTIONS(47), + [anon_sym___clrcall] = ACTIONS(47), + [anon_sym___stdcall] = ACTIONS(47), + [anon_sym___fastcall] = ACTIONS(47), + [anon_sym___thiscall] = ACTIONS(47), + [anon_sym___vectorcall] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(738), + [anon_sym_RBRACE] = ACTIONS(963), + [anon_sym_LBRACK] = ACTIONS(51), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(179), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(181), + [anon_sym_switch] = ACTIONS(183), + [anon_sym_case] = ACTIONS(185), + [anon_sym_default] = ACTIONS(187), + [anon_sym_while] = ACTIONS(189), + [anon_sym_do] = ACTIONS(191), + [anon_sym_for] = ACTIONS(193), + [anon_sym_return] = ACTIONS(195), + [anon_sym_break] = ACTIONS(197), + [anon_sym_continue] = ACTIONS(199), + [anon_sym_goto] = ACTIONS(201), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(107), - [anon_sym_decltype] = ACTIONS(109), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_explicit] = ACTIONS(982), - [anon_sym_typename] = ACTIONS(115), - [anon_sym_template] = ACTIONS(996), - [anon_sym_operator] = ACTIONS(982), - [anon_sym_try] = ACTIONS(694), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(696), - [anon_sym_namespace] = ACTIONS(982), - [anon_sym_using] = ACTIONS(982), - [anon_sym_static_assert] = ACTIONS(982), - [anon_sym_concept] = ACTIONS(982), - [anon_sym_co_return] = ACTIONS(706), - [anon_sym_co_yield] = ACTIONS(708), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(113), + [anon_sym_decltype] = ACTIONS(115), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_explicit] = ACTIONS(119), + [anon_sym_typename] = ACTIONS(121), + [anon_sym_template] = ACTIONS(207), + [anon_sym_operator] = ACTIONS(125), + [anon_sym_try] = ACTIONS(209), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(211), + [anon_sym_namespace] = ACTIONS(213), + [anon_sym_using] = ACTIONS(215), + [anon_sym_static_assert] = ACTIONS(217), + [anon_sym_concept] = ACTIONS(219), + [anon_sym_co_return] = ACTIONS(221), + [anon_sym_co_yield] = ACTIONS(223), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, - [84] = { - [sym_declaration] = STATE(88), - [sym_type_definition] = STATE(88), - [sym__declaration_modifiers] = STATE(2179), - [sym__declaration_specifiers] = STATE(3979), - [sym_attribute_specifier] = STATE(2179), - [sym_attribute_declaration] = STATE(1186), - [sym_ms_declspec_modifier] = STATE(2179), - [sym_compound_statement] = STATE(88), - [sym_storage_class_specifier] = STATE(2179), - [sym_type_qualifier] = STATE(2179), - [sym__type_specifier] = STATE(3156), - [sym_sized_type_specifier] = STATE(3232), - [sym_enum_specifier] = STATE(3232), - [sym_struct_specifier] = STATE(3232), - [sym_union_specifier] = STATE(3232), - [sym_attributed_statement] = STATE(88), - [sym_labeled_statement] = STATE(88), - [sym_expression_statement] = STATE(88), - [sym_if_statement] = STATE(88), - [sym_switch_statement] = STATE(88), - [sym_while_statement] = STATE(88), - [sym_do_statement] = STATE(88), - [sym_for_statement] = STATE(88), - [sym_return_statement] = STATE(88), - [sym_break_statement] = STATE(88), - [sym_continue_statement] = STATE(88), - [sym_goto_statement] = STATE(88), - [sym__expression] = STATE(3502), - [sym_comma_expression] = STATE(6595), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_placeholder_type_specifier] = STATE(3232), - [sym_decltype_auto] = STATE(3279), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3232), - [sym__class_name] = STATE(5753), - [sym_virtual] = STATE(2179), - [sym_dependent_type] = STATE(3232), - [sym_template_type] = STATE(3608), - [sym_template_function] = STATE(3365), - [sym_for_range_loop] = STATE(88), - [sym_co_return_statement] = STATE(88), - [sym_co_yield_statement] = STATE(88), - [sym_throw_statement] = STATE(88), - [sym_try_statement] = STATE(88), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4580), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(3593), - [sym_user_defined_literal] = STATE(3365), - [aux_sym__declaration_specifiers_repeat1] = STATE(2179), - [aux_sym_attributed_declarator_repeat1] = STATE(206), - [aux_sym_sized_type_specifier_repeat1] = STATE(3171), - [aux_sym_case_statement_repeat1] = STATE(88), - [sym_identifier] = ACTIONS(1220), - [aux_sym_preproc_include_token1] = ACTIONS(982), - [aux_sym_preproc_def_token1] = ACTIONS(982), - [aux_sym_preproc_if_token1] = ACTIONS(982), - [aux_sym_preproc_ifdef_token1] = ACTIONS(982), - [aux_sym_preproc_ifdef_token2] = ACTIONS(982), - [sym_preproc_directive] = ACTIONS(982), - [anon_sym_LPAREN2] = ACTIONS(984), + [73] = { + [sym_preproc_include] = STATE(64), + [sym_preproc_def] = STATE(64), + [sym_preproc_function_def] = STATE(64), + [sym_preproc_call] = STATE(64), + [sym_preproc_if] = STATE(64), + [sym_preproc_ifdef] = STATE(64), + [sym_function_definition] = STATE(64), + [sym_declaration] = STATE(64), + [sym_type_definition] = STATE(64), + [sym__declaration_modifiers] = STATE(3706), + [sym__declaration_specifiers] = STATE(4618), + [sym_linkage_specification] = STATE(64), + [sym_attribute_specifier] = STATE(3706), + [sym_attribute_declaration] = STATE(1427), + [sym_ms_declspec_modifier] = STATE(3706), + [sym_ms_based_modifier] = STATE(7654), + [sym_ms_call_modifier] = STATE(2462), + [sym__declarator] = STATE(5881), + [sym_parenthesized_declarator] = STATE(5640), + [sym_attributed_declarator] = STATE(5640), + [sym_pointer_declarator] = STATE(5640), + [sym_function_declarator] = STATE(5588), + [sym_array_declarator] = STATE(5640), + [sym_compound_statement] = STATE(64), + [sym_storage_class_specifier] = STATE(3706), + [sym_type_qualifier] = STATE(3706), + [sym__type_specifier] = STATE(3826), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), + [sym_attributed_statement] = STATE(64), + [sym_labeled_statement] = STATE(64), + [sym_expression_statement] = STATE(64), + [sym_if_statement] = STATE(64), + [sym_switch_statement] = STATE(64), + [sym_case_statement] = STATE(64), + [sym_while_statement] = STATE(64), + [sym_do_statement] = STATE(64), + [sym_for_statement] = STATE(64), + [sym_return_statement] = STATE(64), + [sym_break_statement] = STATE(64), + [sym_continue_statement] = STATE(64), + [sym_goto_statement] = STATE(64), + [sym__expression] = STATE(4182), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7590), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym__empty_declaration] = STATE(64), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym__class_name] = STATE(6623), + [sym_virtual] = STATE(3706), + [sym_explicit_function_specifier] = STATE(2240), + [sym_dependent_type] = STATE(3723), + [sym_template_declaration] = STATE(64), + [sym_template_instantiation] = STATE(64), + [sym_operator_cast] = STATE(5937), + [sym__constructor_specifiers] = STATE(2240), + [sym_operator_cast_definition] = STATE(64), + [sym_operator_cast_declaration] = STATE(64), + [sym_constructor_or_destructor_definition] = STATE(64), + [sym_reference_declarator] = STATE(5640), + [sym_structured_binding_declarator] = STATE(5640), + [sym_template_type] = STATE(3921), + [sym_template_function] = STATE(4066), + [sym_namespace_definition] = STATE(64), + [sym_namespace_alias_definition] = STATE(64), + [sym_using_declaration] = STATE(64), + [sym_alias_declaration] = STATE(64), + [sym_static_assert_declaration] = STATE(64), + [sym_concept_definition] = STATE(64), + [sym_for_range_loop] = STATE(64), + [sym_co_return_statement] = STATE(64), + [sym_co_yield_statement] = STATE(64), + [sym_throw_statement] = STATE(64), + [sym_try_statement] = STATE(64), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_destructor_name] = STATE(5640), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5143), + [sym_qualified_identifier] = STATE(3249), + [sym_qualified_type_identifier] = STATE(3915), + [sym_qualified_operator_cast_identifier] = STATE(5937), + [sym_operator_name] = STATE(5640), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_preproc_if_repeat1] = STATE(64), + [aux_sym__declaration_specifiers_repeat1] = STATE(2514), + [aux_sym_attributed_declarator_repeat1] = STATE(309), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [aux_sym_operator_cast_definition_repeat1] = STATE(2240), + [sym_identifier] = ACTIONS(153), + [aux_sym_preproc_include_token1] = ACTIONS(155), + [aux_sym_preproc_def_token1] = ACTIONS(157), + [aux_sym_preproc_if_token1] = ACTIONS(161), + [aux_sym_preproc_ifdef_token1] = ACTIONS(163), + [aux_sym_preproc_ifdef_token2] = ACTIONS(163), + [sym_preproc_directive] = ACTIONS(165), + [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(23), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP_AMP] = ACTIONS(988), - [anon_sym_AMP] = ACTIONS(990), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_typedef] = ACTIONS(163), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(992), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(982), - [anon_sym___cdecl] = ACTIONS(982), - [anon_sym___clrcall] = ACTIONS(982), - [anon_sym___stdcall] = ACTIONS(982), - [anon_sym___fastcall] = ACTIONS(982), - [anon_sym___thiscall] = ACTIONS(982), - [anon_sym___vectorcall] = ACTIONS(982), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_RBRACE] = ACTIONS(988), - [anon_sym_LBRACK] = ACTIONS(994), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(61), - [anon_sym_unsigned] = ACTIONS(61), - [anon_sym_long] = ACTIONS(61), - [anon_sym_short] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(63), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(175), - [anon_sym_else] = ACTIONS(982), - [anon_sym_switch] = ACTIONS(177), - [anon_sym_case] = ACTIONS(982), - [anon_sym_default] = ACTIONS(982), - [anon_sym_while] = ACTIONS(183), - [anon_sym_do] = ACTIONS(185), - [anon_sym_for] = ACTIONS(187), - [anon_sym_return] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), - [anon_sym_goto] = ACTIONS(195), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(167), + [anon_sym_typedef] = ACTIONS(169), + [anon_sym_extern] = ACTIONS(171), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(45), + [anon_sym___cdecl] = ACTIONS(47), + [anon_sym___clrcall] = ACTIONS(47), + [anon_sym___stdcall] = ACTIONS(47), + [anon_sym___fastcall] = ACTIONS(47), + [anon_sym___thiscall] = ACTIONS(47), + [anon_sym___vectorcall] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(738), + [anon_sym_RBRACE] = ACTIONS(965), + [anon_sym_LBRACK] = ACTIONS(51), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(179), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(181), + [anon_sym_switch] = ACTIONS(183), + [anon_sym_case] = ACTIONS(185), + [anon_sym_default] = ACTIONS(187), + [anon_sym_while] = ACTIONS(189), + [anon_sym_do] = ACTIONS(191), + [anon_sym_for] = ACTIONS(193), + [anon_sym_return] = ACTIONS(195), + [anon_sym_break] = ACTIONS(197), + [anon_sym_continue] = ACTIONS(199), + [anon_sym_goto] = ACTIONS(201), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(107), - [anon_sym_decltype] = ACTIONS(109), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_explicit] = ACTIONS(982), - [anon_sym_typename] = ACTIONS(115), - [anon_sym_template] = ACTIONS(996), - [anon_sym_operator] = ACTIONS(982), - [anon_sym_try] = ACTIONS(201), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(203), - [anon_sym_namespace] = ACTIONS(982), - [anon_sym_using] = ACTIONS(982), - [anon_sym_static_assert] = ACTIONS(982), - [anon_sym_concept] = ACTIONS(982), - [anon_sym_co_return] = ACTIONS(213), - [anon_sym_co_yield] = ACTIONS(215), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(113), + [anon_sym_decltype] = ACTIONS(115), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_explicit] = ACTIONS(119), + [anon_sym_typename] = ACTIONS(121), + [anon_sym_template] = ACTIONS(207), + [anon_sym_operator] = ACTIONS(125), + [anon_sym_try] = ACTIONS(209), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(211), + [anon_sym_namespace] = ACTIONS(213), + [anon_sym_using] = ACTIONS(215), + [anon_sym_static_assert] = ACTIONS(217), + [anon_sym_concept] = ACTIONS(219), + [anon_sym_co_return] = ACTIONS(221), + [anon_sym_co_yield] = ACTIONS(223), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, - [85] = { - [sym_declaration] = STATE(83), - [sym_type_definition] = STATE(83), - [sym__declaration_modifiers] = STATE(2179), - [sym__declaration_specifiers] = STATE(3956), - [sym_attribute_specifier] = STATE(2179), - [sym_attribute_declaration] = STATE(1186), - [sym_ms_declspec_modifier] = STATE(2179), - [sym_compound_statement] = STATE(83), - [sym_storage_class_specifier] = STATE(2179), - [sym_type_qualifier] = STATE(2179), - [sym__type_specifier] = STATE(3156), - [sym_sized_type_specifier] = STATE(3232), - [sym_enum_specifier] = STATE(3232), - [sym_struct_specifier] = STATE(3232), - [sym_union_specifier] = STATE(3232), - [sym_attributed_statement] = STATE(83), - [sym_labeled_statement] = STATE(83), - [sym_expression_statement] = STATE(83), - [sym_if_statement] = STATE(83), - [sym_switch_statement] = STATE(83), - [sym_while_statement] = STATE(83), - [sym_do_statement] = STATE(83), - [sym_for_statement] = STATE(83), - [sym_return_statement] = STATE(83), - [sym_break_statement] = STATE(83), - [sym_continue_statement] = STATE(83), - [sym_goto_statement] = STATE(83), - [sym__expression] = STATE(3522), - [sym_comma_expression] = STATE(6276), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_placeholder_type_specifier] = STATE(3232), - [sym_decltype_auto] = STATE(3279), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3232), - [sym__class_name] = STATE(5753), - [sym_virtual] = STATE(2179), - [sym_dependent_type] = STATE(3232), - [sym_template_type] = STATE(3608), - [sym_template_function] = STATE(3365), - [sym_for_range_loop] = STATE(83), - [sym_co_return_statement] = STATE(83), - [sym_co_yield_statement] = STATE(83), - [sym_throw_statement] = STATE(83), - [sym_try_statement] = STATE(83), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4580), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(3593), - [sym_user_defined_literal] = STATE(3365), - [aux_sym__declaration_specifiers_repeat1] = STATE(2179), - [aux_sym_attributed_declarator_repeat1] = STATE(151), - [aux_sym_sized_type_specifier_repeat1] = STATE(3171), - [aux_sym_case_statement_repeat1] = STATE(83), - [sym_identifier] = ACTIONS(1218), - [aux_sym_preproc_include_token1] = ACTIONS(1159), - [aux_sym_preproc_def_token1] = ACTIONS(1159), - [aux_sym_preproc_if_token1] = ACTIONS(1159), - [aux_sym_preproc_if_token2] = ACTIONS(1159), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1159), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1159), - [sym_preproc_directive] = ACTIONS(1159), - [anon_sym_LPAREN2] = ACTIONS(984), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), + [74] = { + [sym_preproc_include] = STATE(67), + [sym_preproc_def] = STATE(67), + [sym_preproc_function_def] = STATE(67), + [sym_preproc_call] = STATE(67), + [sym_preproc_if] = STATE(67), + [sym_preproc_ifdef] = STATE(67), + [sym_function_definition] = STATE(67), + [sym_declaration] = STATE(67), + [sym_type_definition] = STATE(67), + [sym__declaration_modifiers] = STATE(3706), + [sym__declaration_specifiers] = STATE(4618), + [sym_linkage_specification] = STATE(67), + [sym_attribute_specifier] = STATE(3706), + [sym_attribute_declaration] = STATE(1427), + [sym_ms_declspec_modifier] = STATE(3706), + [sym_ms_based_modifier] = STATE(7654), + [sym_ms_call_modifier] = STATE(2462), + [sym__declarator] = STATE(5881), + [sym_parenthesized_declarator] = STATE(5640), + [sym_attributed_declarator] = STATE(5640), + [sym_pointer_declarator] = STATE(5640), + [sym_function_declarator] = STATE(5588), + [sym_array_declarator] = STATE(5640), + [sym_compound_statement] = STATE(67), + [sym_storage_class_specifier] = STATE(3706), + [sym_type_qualifier] = STATE(3706), + [sym__type_specifier] = STATE(3826), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), + [sym_attributed_statement] = STATE(67), + [sym_labeled_statement] = STATE(67), + [sym_expression_statement] = STATE(67), + [sym_if_statement] = STATE(67), + [sym_switch_statement] = STATE(67), + [sym_case_statement] = STATE(67), + [sym_while_statement] = STATE(67), + [sym_do_statement] = STATE(67), + [sym_for_statement] = STATE(67), + [sym_return_statement] = STATE(67), + [sym_break_statement] = STATE(67), + [sym_continue_statement] = STATE(67), + [sym_goto_statement] = STATE(67), + [sym__expression] = STATE(4182), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7590), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym__empty_declaration] = STATE(67), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym__class_name] = STATE(6623), + [sym_virtual] = STATE(3706), + [sym_explicit_function_specifier] = STATE(2240), + [sym_dependent_type] = STATE(3723), + [sym_template_declaration] = STATE(67), + [sym_template_instantiation] = STATE(67), + [sym_operator_cast] = STATE(5937), + [sym__constructor_specifiers] = STATE(2240), + [sym_operator_cast_definition] = STATE(67), + [sym_operator_cast_declaration] = STATE(67), + [sym_constructor_or_destructor_definition] = STATE(67), + [sym_reference_declarator] = STATE(5640), + [sym_structured_binding_declarator] = STATE(5640), + [sym_template_type] = STATE(3921), + [sym_template_function] = STATE(4066), + [sym_namespace_definition] = STATE(67), + [sym_namespace_alias_definition] = STATE(67), + [sym_using_declaration] = STATE(67), + [sym_alias_declaration] = STATE(67), + [sym_static_assert_declaration] = STATE(67), + [sym_concept_definition] = STATE(67), + [sym_for_range_loop] = STATE(67), + [sym_co_return_statement] = STATE(67), + [sym_co_yield_statement] = STATE(67), + [sym_throw_statement] = STATE(67), + [sym_try_statement] = STATE(67), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_destructor_name] = STATE(5640), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5143), + [sym_qualified_identifier] = STATE(3249), + [sym_qualified_type_identifier] = STATE(3915), + [sym_qualified_operator_cast_identifier] = STATE(5937), + [sym_operator_name] = STATE(5640), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_preproc_if_repeat1] = STATE(67), + [aux_sym__declaration_specifiers_repeat1] = STATE(2514), + [aux_sym_attributed_declarator_repeat1] = STATE(309), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [aux_sym_operator_cast_definition_repeat1] = STATE(2240), + [sym_identifier] = ACTIONS(153), + [aux_sym_preproc_include_token1] = ACTIONS(155), + [aux_sym_preproc_def_token1] = ACTIONS(157), + [aux_sym_preproc_if_token1] = ACTIONS(161), + [aux_sym_preproc_ifdef_token1] = ACTIONS(163), + [aux_sym_preproc_ifdef_token2] = ACTIONS(163), + [sym_preproc_directive] = ACTIONS(165), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP_AMP] = ACTIONS(1161), - [anon_sym_AMP] = ACTIONS(990), - [anon_sym_SEMI] = ACTIONS(660), - [anon_sym_typedef] = ACTIONS(662), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(992), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(1159), - [anon_sym___cdecl] = ACTIONS(1159), - [anon_sym___clrcall] = ACTIONS(1159), - [anon_sym___stdcall] = ACTIONS(1159), - [anon_sym___fastcall] = ACTIONS(1159), - [anon_sym___thiscall] = ACTIONS(1159), - [anon_sym___vectorcall] = ACTIONS(1159), - [anon_sym_LBRACE] = ACTIONS(666), - [anon_sym_LBRACK] = ACTIONS(994), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(61), - [anon_sym_unsigned] = ACTIONS(61), - [anon_sym_long] = ACTIONS(61), - [anon_sym_short] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(63), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(670), - [anon_sym_else] = ACTIONS(1159), - [anon_sym_switch] = ACTIONS(672), - [anon_sym_case] = ACTIONS(1159), - [anon_sym_default] = ACTIONS(1159), - [anon_sym_while] = ACTIONS(678), - [anon_sym_do] = ACTIONS(680), - [anon_sym_for] = ACTIONS(682), - [anon_sym_return] = ACTIONS(684), - [anon_sym_break] = ACTIONS(686), - [anon_sym_continue] = ACTIONS(688), - [anon_sym_goto] = ACTIONS(690), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(167), + [anon_sym_typedef] = ACTIONS(169), + [anon_sym_extern] = ACTIONS(171), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(45), + [anon_sym___cdecl] = ACTIONS(47), + [anon_sym___clrcall] = ACTIONS(47), + [anon_sym___stdcall] = ACTIONS(47), + [anon_sym___fastcall] = ACTIONS(47), + [anon_sym___thiscall] = ACTIONS(47), + [anon_sym___vectorcall] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(738), + [anon_sym_RBRACE] = ACTIONS(967), + [anon_sym_LBRACK] = ACTIONS(51), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(179), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(181), + [anon_sym_switch] = ACTIONS(183), + [anon_sym_case] = ACTIONS(185), + [anon_sym_default] = ACTIONS(187), + [anon_sym_while] = ACTIONS(189), + [anon_sym_do] = ACTIONS(191), + [anon_sym_for] = ACTIONS(193), + [anon_sym_return] = ACTIONS(195), + [anon_sym_break] = ACTIONS(197), + [anon_sym_continue] = ACTIONS(199), + [anon_sym_goto] = ACTIONS(201), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(113), + [anon_sym_decltype] = ACTIONS(115), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_explicit] = ACTIONS(119), + [anon_sym_typename] = ACTIONS(121), + [anon_sym_template] = ACTIONS(207), + [anon_sym_operator] = ACTIONS(125), + [anon_sym_try] = ACTIONS(209), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(211), + [anon_sym_namespace] = ACTIONS(213), + [anon_sym_using] = ACTIONS(215), + [anon_sym_static_assert] = ACTIONS(217), + [anon_sym_concept] = ACTIONS(219), + [anon_sym_co_return] = ACTIONS(221), + [anon_sym_co_yield] = ACTIONS(223), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), + }, + [75] = { + [sym_preproc_include] = STATE(57), + [sym_preproc_def] = STATE(57), + [sym_preproc_function_def] = STATE(57), + [sym_preproc_call] = STATE(57), + [sym_preproc_if] = STATE(57), + [sym_preproc_ifdef] = STATE(57), + [sym_function_definition] = STATE(57), + [sym_declaration] = STATE(57), + [sym_type_definition] = STATE(57), + [sym__declaration_modifiers] = STATE(3706), + [sym__declaration_specifiers] = STATE(4618), + [sym_linkage_specification] = STATE(57), + [sym_attribute_specifier] = STATE(3706), + [sym_attribute_declaration] = STATE(1427), + [sym_ms_declspec_modifier] = STATE(3706), + [sym_ms_based_modifier] = STATE(7654), + [sym_ms_call_modifier] = STATE(2462), + [sym__declarator] = STATE(5881), + [sym_parenthesized_declarator] = STATE(5640), + [sym_attributed_declarator] = STATE(5640), + [sym_pointer_declarator] = STATE(5640), + [sym_function_declarator] = STATE(5588), + [sym_array_declarator] = STATE(5640), + [sym_compound_statement] = STATE(57), + [sym_storage_class_specifier] = STATE(3706), + [sym_type_qualifier] = STATE(3706), + [sym__type_specifier] = STATE(3826), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), + [sym_attributed_statement] = STATE(57), + [sym_labeled_statement] = STATE(57), + [sym_expression_statement] = STATE(57), + [sym_if_statement] = STATE(57), + [sym_switch_statement] = STATE(57), + [sym_case_statement] = STATE(57), + [sym_while_statement] = STATE(57), + [sym_do_statement] = STATE(57), + [sym_for_statement] = STATE(57), + [sym_return_statement] = STATE(57), + [sym_break_statement] = STATE(57), + [sym_continue_statement] = STATE(57), + [sym_goto_statement] = STATE(57), + [sym__expression] = STATE(4182), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7590), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym__empty_declaration] = STATE(57), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym__class_name] = STATE(6623), + [sym_virtual] = STATE(3706), + [sym_explicit_function_specifier] = STATE(2240), + [sym_dependent_type] = STATE(3723), + [sym_template_declaration] = STATE(57), + [sym_template_instantiation] = STATE(57), + [sym_operator_cast] = STATE(5937), + [sym__constructor_specifiers] = STATE(2240), + [sym_operator_cast_definition] = STATE(57), + [sym_operator_cast_declaration] = STATE(57), + [sym_constructor_or_destructor_definition] = STATE(57), + [sym_reference_declarator] = STATE(5640), + [sym_structured_binding_declarator] = STATE(5640), + [sym_template_type] = STATE(3921), + [sym_template_function] = STATE(4066), + [sym_namespace_definition] = STATE(57), + [sym_namespace_alias_definition] = STATE(57), + [sym_using_declaration] = STATE(57), + [sym_alias_declaration] = STATE(57), + [sym_static_assert_declaration] = STATE(57), + [sym_concept_definition] = STATE(57), + [sym_for_range_loop] = STATE(57), + [sym_co_return_statement] = STATE(57), + [sym_co_yield_statement] = STATE(57), + [sym_throw_statement] = STATE(57), + [sym_try_statement] = STATE(57), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_destructor_name] = STATE(5640), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5143), + [sym_qualified_identifier] = STATE(3249), + [sym_qualified_type_identifier] = STATE(3915), + [sym_qualified_operator_cast_identifier] = STATE(5937), + [sym_operator_name] = STATE(5640), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_preproc_if_repeat1] = STATE(57), + [aux_sym__declaration_specifiers_repeat1] = STATE(2514), + [aux_sym_attributed_declarator_repeat1] = STATE(309), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [aux_sym_operator_cast_definition_repeat1] = STATE(2240), + [sym_identifier] = ACTIONS(153), + [aux_sym_preproc_include_token1] = ACTIONS(155), + [aux_sym_preproc_def_token1] = ACTIONS(157), + [aux_sym_preproc_if_token1] = ACTIONS(161), + [aux_sym_preproc_ifdef_token1] = ACTIONS(163), + [aux_sym_preproc_ifdef_token2] = ACTIONS(163), + [sym_preproc_directive] = ACTIONS(165), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(167), + [anon_sym_typedef] = ACTIONS(169), + [anon_sym_extern] = ACTIONS(171), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(45), + [anon_sym___cdecl] = ACTIONS(47), + [anon_sym___clrcall] = ACTIONS(47), + [anon_sym___stdcall] = ACTIONS(47), + [anon_sym___fastcall] = ACTIONS(47), + [anon_sym___thiscall] = ACTIONS(47), + [anon_sym___vectorcall] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(738), + [anon_sym_RBRACE] = ACTIONS(969), + [anon_sym_LBRACK] = ACTIONS(51), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(179), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(181), + [anon_sym_switch] = ACTIONS(183), + [anon_sym_case] = ACTIONS(185), + [anon_sym_default] = ACTIONS(187), + [anon_sym_while] = ACTIONS(189), + [anon_sym_do] = ACTIONS(191), + [anon_sym_for] = ACTIONS(193), + [anon_sym_return] = ACTIONS(195), + [anon_sym_break] = ACTIONS(197), + [anon_sym_continue] = ACTIONS(199), + [anon_sym_goto] = ACTIONS(201), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(113), + [anon_sym_decltype] = ACTIONS(115), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_explicit] = ACTIONS(119), + [anon_sym_typename] = ACTIONS(121), + [anon_sym_template] = ACTIONS(207), + [anon_sym_operator] = ACTIONS(125), + [anon_sym_try] = ACTIONS(209), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(211), + [anon_sym_namespace] = ACTIONS(213), + [anon_sym_using] = ACTIONS(215), + [anon_sym_static_assert] = ACTIONS(217), + [anon_sym_concept] = ACTIONS(219), + [anon_sym_co_return] = ACTIONS(221), + [anon_sym_co_yield] = ACTIONS(223), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), + }, + [76] = { + [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_declaration] = STATE(83), + [sym_type_definition] = STATE(83), + [sym__declaration_modifiers] = STATE(3706), + [sym__declaration_specifiers] = STATE(4618), + [sym_linkage_specification] = STATE(83), + [sym_attribute_specifier] = STATE(3706), + [sym_attribute_declaration] = STATE(1427), + [sym_ms_declspec_modifier] = STATE(3706), + [sym_ms_based_modifier] = STATE(7654), + [sym_ms_call_modifier] = STATE(2462), + [sym__declarator] = STATE(5881), + [sym_parenthesized_declarator] = STATE(5640), + [sym_attributed_declarator] = STATE(5640), + [sym_pointer_declarator] = STATE(5640), + [sym_function_declarator] = STATE(5588), + [sym_array_declarator] = STATE(5640), + [sym_compound_statement] = STATE(83), + [sym_storage_class_specifier] = STATE(3706), + [sym_type_qualifier] = STATE(3706), + [sym__type_specifier] = STATE(3826), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), + [sym_attributed_statement] = STATE(83), + [sym_labeled_statement] = STATE(83), + [sym_expression_statement] = STATE(83), + [sym_if_statement] = STATE(83), + [sym_switch_statement] = STATE(83), + [sym_case_statement] = STATE(83), + [sym_while_statement] = STATE(83), + [sym_do_statement] = STATE(83), + [sym_for_statement] = STATE(83), + [sym_return_statement] = STATE(83), + [sym_break_statement] = STATE(83), + [sym_continue_statement] = STATE(83), + [sym_goto_statement] = STATE(83), + [sym__expression] = STATE(4182), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7590), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym__empty_declaration] = STATE(83), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym__class_name] = STATE(6623), + [sym_virtual] = STATE(3706), + [sym_explicit_function_specifier] = STATE(2240), + [sym_dependent_type] = STATE(3723), + [sym_template_declaration] = STATE(83), + [sym_template_instantiation] = STATE(83), + [sym_operator_cast] = STATE(5937), + [sym__constructor_specifiers] = STATE(2240), + [sym_operator_cast_definition] = STATE(83), + [sym_operator_cast_declaration] = STATE(83), + [sym_constructor_or_destructor_definition] = STATE(83), + [sym_reference_declarator] = STATE(5640), + [sym_structured_binding_declarator] = STATE(5640), + [sym_template_type] = STATE(3921), + [sym_template_function] = STATE(4066), + [sym_namespace_definition] = STATE(83), + [sym_namespace_alias_definition] = STATE(83), + [sym_using_declaration] = STATE(83), + [sym_alias_declaration] = STATE(83), + [sym_static_assert_declaration] = STATE(83), + [sym_concept_definition] = STATE(83), + [sym_for_range_loop] = STATE(83), + [sym_co_return_statement] = STATE(83), + [sym_co_yield_statement] = STATE(83), + [sym_throw_statement] = STATE(83), + [sym_try_statement] = STATE(83), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_destructor_name] = STATE(5640), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5143), + [sym_qualified_identifier] = STATE(3249), + [sym_qualified_type_identifier] = STATE(3915), + [sym_qualified_operator_cast_identifier] = STATE(5937), + [sym_operator_name] = STATE(5640), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_preproc_if_repeat1] = STATE(83), + [aux_sym__declaration_specifiers_repeat1] = STATE(2514), + [aux_sym_attributed_declarator_repeat1] = STATE(309), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [aux_sym_operator_cast_definition_repeat1] = STATE(2240), + [sym_identifier] = ACTIONS(153), + [aux_sym_preproc_include_token1] = ACTIONS(155), + [aux_sym_preproc_def_token1] = ACTIONS(157), + [aux_sym_preproc_if_token1] = ACTIONS(161), + [aux_sym_preproc_ifdef_token1] = ACTIONS(163), + [aux_sym_preproc_ifdef_token2] = ACTIONS(163), + [sym_preproc_directive] = ACTIONS(165), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(167), + [anon_sym_typedef] = ACTIONS(169), + [anon_sym_extern] = ACTIONS(171), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(45), + [anon_sym___cdecl] = ACTIONS(47), + [anon_sym___clrcall] = ACTIONS(47), + [anon_sym___stdcall] = ACTIONS(47), + [anon_sym___fastcall] = ACTIONS(47), + [anon_sym___thiscall] = ACTIONS(47), + [anon_sym___vectorcall] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(738), + [anon_sym_RBRACE] = ACTIONS(971), + [anon_sym_LBRACK] = ACTIONS(51), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(179), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(181), + [anon_sym_switch] = ACTIONS(183), + [anon_sym_case] = ACTIONS(185), + [anon_sym_default] = ACTIONS(187), + [anon_sym_while] = ACTIONS(189), + [anon_sym_do] = ACTIONS(191), + [anon_sym_for] = ACTIONS(193), + [anon_sym_return] = ACTIONS(195), + [anon_sym_break] = ACTIONS(197), + [anon_sym_continue] = ACTIONS(199), + [anon_sym_goto] = ACTIONS(201), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(113), + [anon_sym_decltype] = ACTIONS(115), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_explicit] = ACTIONS(119), + [anon_sym_typename] = ACTIONS(121), + [anon_sym_template] = ACTIONS(207), + [anon_sym_operator] = ACTIONS(125), + [anon_sym_try] = ACTIONS(209), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(211), + [anon_sym_namespace] = ACTIONS(213), + [anon_sym_using] = ACTIONS(215), + [anon_sym_static_assert] = ACTIONS(217), + [anon_sym_concept] = ACTIONS(219), + [anon_sym_co_return] = ACTIONS(221), + [anon_sym_co_yield] = ACTIONS(223), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), + }, + [77] = { + [sym_preproc_include] = STATE(81), + [sym_preproc_def] = STATE(81), + [sym_preproc_function_def] = STATE(81), + [sym_preproc_call] = STATE(81), + [sym_preproc_if] = STATE(81), + [sym_preproc_ifdef] = STATE(81), + [sym_function_definition] = STATE(81), + [sym_declaration] = STATE(81), + [sym_type_definition] = STATE(81), + [sym__declaration_modifiers] = STATE(3706), + [sym__declaration_specifiers] = STATE(4618), + [sym_linkage_specification] = STATE(81), + [sym_attribute_specifier] = STATE(3706), + [sym_attribute_declaration] = STATE(1427), + [sym_ms_declspec_modifier] = STATE(3706), + [sym_ms_based_modifier] = STATE(7654), + [sym_ms_call_modifier] = STATE(2462), + [sym__declarator] = STATE(5881), + [sym_parenthesized_declarator] = STATE(5640), + [sym_attributed_declarator] = STATE(5640), + [sym_pointer_declarator] = STATE(5640), + [sym_function_declarator] = STATE(5588), + [sym_array_declarator] = STATE(5640), + [sym_compound_statement] = STATE(81), + [sym_storage_class_specifier] = STATE(3706), + [sym_type_qualifier] = STATE(3706), + [sym__type_specifier] = STATE(3826), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), + [sym_attributed_statement] = STATE(81), + [sym_labeled_statement] = STATE(81), + [sym_expression_statement] = STATE(81), + [sym_if_statement] = STATE(81), + [sym_switch_statement] = STATE(81), + [sym_case_statement] = STATE(81), + [sym_while_statement] = STATE(81), + [sym_do_statement] = STATE(81), + [sym_for_statement] = STATE(81), + [sym_return_statement] = STATE(81), + [sym_break_statement] = STATE(81), + [sym_continue_statement] = STATE(81), + [sym_goto_statement] = STATE(81), + [sym__expression] = STATE(4182), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7590), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym__empty_declaration] = STATE(81), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym__class_name] = STATE(6623), + [sym_virtual] = STATE(3706), + [sym_explicit_function_specifier] = STATE(2240), + [sym_dependent_type] = STATE(3723), + [sym_template_declaration] = STATE(81), + [sym_template_instantiation] = STATE(81), + [sym_operator_cast] = STATE(5937), + [sym__constructor_specifiers] = STATE(2240), + [sym_operator_cast_definition] = STATE(81), + [sym_operator_cast_declaration] = STATE(81), + [sym_constructor_or_destructor_definition] = STATE(81), + [sym_reference_declarator] = STATE(5640), + [sym_structured_binding_declarator] = STATE(5640), + [sym_template_type] = STATE(3921), + [sym_template_function] = STATE(4066), + [sym_namespace_definition] = STATE(81), + [sym_namespace_alias_definition] = STATE(81), + [sym_using_declaration] = STATE(81), + [sym_alias_declaration] = STATE(81), + [sym_static_assert_declaration] = STATE(81), + [sym_concept_definition] = STATE(81), + [sym_for_range_loop] = STATE(81), + [sym_co_return_statement] = STATE(81), + [sym_co_yield_statement] = STATE(81), + [sym_throw_statement] = STATE(81), + [sym_try_statement] = STATE(81), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_destructor_name] = STATE(5640), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5143), + [sym_qualified_identifier] = STATE(3249), + [sym_qualified_type_identifier] = STATE(3915), + [sym_qualified_operator_cast_identifier] = STATE(5937), + [sym_operator_name] = STATE(5640), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_preproc_if_repeat1] = STATE(81), + [aux_sym__declaration_specifiers_repeat1] = STATE(2514), + [aux_sym_attributed_declarator_repeat1] = STATE(309), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [aux_sym_operator_cast_definition_repeat1] = STATE(2240), + [sym_identifier] = ACTIONS(153), + [aux_sym_preproc_include_token1] = ACTIONS(155), + [aux_sym_preproc_def_token1] = ACTIONS(157), + [aux_sym_preproc_if_token1] = ACTIONS(161), + [aux_sym_preproc_ifdef_token1] = ACTIONS(163), + [aux_sym_preproc_ifdef_token2] = ACTIONS(163), + [sym_preproc_directive] = ACTIONS(165), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(167), + [anon_sym_typedef] = ACTIONS(169), + [anon_sym_extern] = ACTIONS(171), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(45), + [anon_sym___cdecl] = ACTIONS(47), + [anon_sym___clrcall] = ACTIONS(47), + [anon_sym___stdcall] = ACTIONS(47), + [anon_sym___fastcall] = ACTIONS(47), + [anon_sym___thiscall] = ACTIONS(47), + [anon_sym___vectorcall] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(738), + [anon_sym_RBRACE] = ACTIONS(973), + [anon_sym_LBRACK] = ACTIONS(51), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(179), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(181), + [anon_sym_switch] = ACTIONS(183), + [anon_sym_case] = ACTIONS(185), + [anon_sym_default] = ACTIONS(187), + [anon_sym_while] = ACTIONS(189), + [anon_sym_do] = ACTIONS(191), + [anon_sym_for] = ACTIONS(193), + [anon_sym_return] = ACTIONS(195), + [anon_sym_break] = ACTIONS(197), + [anon_sym_continue] = ACTIONS(199), + [anon_sym_goto] = ACTIONS(201), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(113), + [anon_sym_decltype] = ACTIONS(115), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_explicit] = ACTIONS(119), + [anon_sym_typename] = ACTIONS(121), + [anon_sym_template] = ACTIONS(207), + [anon_sym_operator] = ACTIONS(125), + [anon_sym_try] = ACTIONS(209), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(211), + [anon_sym_namespace] = ACTIONS(213), + [anon_sym_using] = ACTIONS(215), + [anon_sym_static_assert] = ACTIONS(217), + [anon_sym_concept] = ACTIONS(219), + [anon_sym_co_return] = ACTIONS(221), + [anon_sym_co_yield] = ACTIONS(223), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), + }, + [78] = { + [sym_preproc_include] = STATE(73), + [sym_preproc_def] = STATE(73), + [sym_preproc_function_def] = STATE(73), + [sym_preproc_call] = STATE(73), + [sym_preproc_if] = STATE(73), + [sym_preproc_ifdef] = STATE(73), + [sym_function_definition] = STATE(73), + [sym_declaration] = STATE(73), + [sym_type_definition] = STATE(73), + [sym__declaration_modifiers] = STATE(3706), + [sym__declaration_specifiers] = STATE(4618), + [sym_linkage_specification] = STATE(73), + [sym_attribute_specifier] = STATE(3706), + [sym_attribute_declaration] = STATE(1427), + [sym_ms_declspec_modifier] = STATE(3706), + [sym_ms_based_modifier] = STATE(7654), + [sym_ms_call_modifier] = STATE(2462), + [sym__declarator] = STATE(5881), + [sym_parenthesized_declarator] = STATE(5640), + [sym_attributed_declarator] = STATE(5640), + [sym_pointer_declarator] = STATE(5640), + [sym_function_declarator] = STATE(5588), + [sym_array_declarator] = STATE(5640), + [sym_compound_statement] = STATE(73), + [sym_storage_class_specifier] = STATE(3706), + [sym_type_qualifier] = STATE(3706), + [sym__type_specifier] = STATE(3826), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), + [sym_attributed_statement] = STATE(73), + [sym_labeled_statement] = STATE(73), + [sym_expression_statement] = STATE(73), + [sym_if_statement] = STATE(73), + [sym_switch_statement] = STATE(73), + [sym_case_statement] = STATE(73), + [sym_while_statement] = STATE(73), + [sym_do_statement] = STATE(73), + [sym_for_statement] = STATE(73), + [sym_return_statement] = STATE(73), + [sym_break_statement] = STATE(73), + [sym_continue_statement] = STATE(73), + [sym_goto_statement] = STATE(73), + [sym__expression] = STATE(4182), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7590), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym__empty_declaration] = STATE(73), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym__class_name] = STATE(6623), + [sym_virtual] = STATE(3706), + [sym_explicit_function_specifier] = STATE(2240), + [sym_dependent_type] = STATE(3723), + [sym_template_declaration] = STATE(73), + [sym_template_instantiation] = STATE(73), + [sym_operator_cast] = STATE(5937), + [sym__constructor_specifiers] = STATE(2240), + [sym_operator_cast_definition] = STATE(73), + [sym_operator_cast_declaration] = STATE(73), + [sym_constructor_or_destructor_definition] = STATE(73), + [sym_reference_declarator] = STATE(5640), + [sym_structured_binding_declarator] = STATE(5640), + [sym_template_type] = STATE(3921), + [sym_template_function] = STATE(4066), + [sym_namespace_definition] = STATE(73), + [sym_namespace_alias_definition] = STATE(73), + [sym_using_declaration] = STATE(73), + [sym_alias_declaration] = STATE(73), + [sym_static_assert_declaration] = STATE(73), + [sym_concept_definition] = STATE(73), + [sym_for_range_loop] = STATE(73), + [sym_co_return_statement] = STATE(73), + [sym_co_yield_statement] = STATE(73), + [sym_throw_statement] = STATE(73), + [sym_try_statement] = STATE(73), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_destructor_name] = STATE(5640), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5143), + [sym_qualified_identifier] = STATE(3249), + [sym_qualified_type_identifier] = STATE(3915), + [sym_qualified_operator_cast_identifier] = STATE(5937), + [sym_operator_name] = STATE(5640), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_preproc_if_repeat1] = STATE(73), + [aux_sym__declaration_specifiers_repeat1] = STATE(2514), + [aux_sym_attributed_declarator_repeat1] = STATE(309), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [aux_sym_operator_cast_definition_repeat1] = STATE(2240), + [sym_identifier] = ACTIONS(153), + [aux_sym_preproc_include_token1] = ACTIONS(155), + [aux_sym_preproc_def_token1] = ACTIONS(157), + [aux_sym_preproc_if_token1] = ACTIONS(161), + [aux_sym_preproc_ifdef_token1] = ACTIONS(163), + [aux_sym_preproc_ifdef_token2] = ACTIONS(163), + [sym_preproc_directive] = ACTIONS(165), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(167), + [anon_sym_typedef] = ACTIONS(169), + [anon_sym_extern] = ACTIONS(171), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(45), + [anon_sym___cdecl] = ACTIONS(47), + [anon_sym___clrcall] = ACTIONS(47), + [anon_sym___stdcall] = ACTIONS(47), + [anon_sym___fastcall] = ACTIONS(47), + [anon_sym___thiscall] = ACTIONS(47), + [anon_sym___vectorcall] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(738), + [anon_sym_RBRACE] = ACTIONS(975), + [anon_sym_LBRACK] = ACTIONS(51), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(179), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(181), + [anon_sym_switch] = ACTIONS(183), + [anon_sym_case] = ACTIONS(185), + [anon_sym_default] = ACTIONS(187), + [anon_sym_while] = ACTIONS(189), + [anon_sym_do] = ACTIONS(191), + [anon_sym_for] = ACTIONS(193), + [anon_sym_return] = ACTIONS(195), + [anon_sym_break] = ACTIONS(197), + [anon_sym_continue] = ACTIONS(199), + [anon_sym_goto] = ACTIONS(201), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(113), + [anon_sym_decltype] = ACTIONS(115), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_explicit] = ACTIONS(119), + [anon_sym_typename] = ACTIONS(121), + [anon_sym_template] = ACTIONS(207), + [anon_sym_operator] = ACTIONS(125), + [anon_sym_try] = ACTIONS(209), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(211), + [anon_sym_namespace] = ACTIONS(213), + [anon_sym_using] = ACTIONS(215), + [anon_sym_static_assert] = ACTIONS(217), + [anon_sym_concept] = ACTIONS(219), + [anon_sym_co_return] = ACTIONS(221), + [anon_sym_co_yield] = ACTIONS(223), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), + }, + [79] = { + [sym_preproc_include] = STATE(79), + [sym_preproc_def] = STATE(79), + [sym_preproc_function_def] = STATE(79), + [sym_preproc_call] = STATE(79), + [sym_preproc_if] = STATE(79), + [sym_preproc_ifdef] = STATE(79), + [sym_function_definition] = STATE(79), + [sym_declaration] = STATE(79), + [sym_type_definition] = STATE(79), + [sym__declaration_modifiers] = STATE(3706), + [sym__declaration_specifiers] = STATE(4656), + [sym_linkage_specification] = STATE(79), + [sym_attribute_specifier] = STATE(3706), + [sym_attribute_declaration] = STATE(1427), + [sym_ms_declspec_modifier] = STATE(3706), + [sym_ms_based_modifier] = STATE(7654), + [sym_ms_call_modifier] = STATE(2383), + [sym__declarator] = STATE(5881), + [sym_parenthesized_declarator] = STATE(5640), + [sym_attributed_declarator] = STATE(5640), + [sym_pointer_declarator] = STATE(5640), + [sym_function_declarator] = STATE(5561), + [sym_array_declarator] = STATE(5640), + [sym_compound_statement] = STATE(79), + [sym_storage_class_specifier] = STATE(3706), + [sym_type_qualifier] = STATE(3706), + [sym__type_specifier] = STATE(3808), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), + [sym_attributed_statement] = STATE(79), + [sym_labeled_statement] = STATE(79), + [sym_expression_statement] = STATE(79), + [sym_if_statement] = STATE(79), + [sym_switch_statement] = STATE(79), + [sym_case_statement] = STATE(79), + [sym_while_statement] = STATE(79), + [sym_do_statement] = STATE(79), + [sym_for_statement] = STATE(79), + [sym_return_statement] = STATE(79), + [sym_break_statement] = STATE(79), + [sym_continue_statement] = STATE(79), + [sym_goto_statement] = STATE(79), + [sym__expression] = STATE(4126), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(6964), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym__empty_declaration] = STATE(79), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym__class_name] = STATE(6623), + [sym_virtual] = STATE(3706), + [sym_explicit_function_specifier] = STATE(2256), + [sym_dependent_type] = STATE(3723), + [sym_template_declaration] = STATE(79), + [sym_template_instantiation] = STATE(79), + [sym_operator_cast] = STATE(5899), + [sym__constructor_specifiers] = STATE(2256), + [sym_operator_cast_definition] = STATE(79), + [sym_operator_cast_declaration] = STATE(79), + [sym_constructor_or_destructor_definition] = STATE(79), + [sym_reference_declarator] = STATE(5640), + [sym_structured_binding_declarator] = STATE(5640), + [sym_template_type] = STATE(3921), + [sym_template_function] = STATE(4066), + [sym_namespace_definition] = STATE(79), + [sym_namespace_alias_definition] = STATE(79), + [sym_using_declaration] = STATE(79), + [sym_alias_declaration] = STATE(79), + [sym_static_assert_declaration] = STATE(79), + [sym_concept_definition] = STATE(79), + [sym_for_range_loop] = STATE(79), + [sym_co_return_statement] = STATE(79), + [sym_co_yield_statement] = STATE(79), + [sym_throw_statement] = STATE(79), + [sym_try_statement] = STATE(79), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_destructor_name] = STATE(5640), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5143), + [sym_qualified_identifier] = STATE(3249), + [sym_qualified_type_identifier] = STATE(3915), + [sym_qualified_operator_cast_identifier] = STATE(5899), + [sym_operator_name] = STATE(5640), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_preproc_if_repeat1] = STATE(79), + [aux_sym__declaration_specifiers_repeat1] = STATE(2514), + [aux_sym_attributed_declarator_repeat1] = STATE(189), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [aux_sym_operator_cast_definition_repeat1] = STATE(2256), + [sym_identifier] = ACTIONS(977), + [aux_sym_preproc_include_token1] = ACTIONS(980), + [aux_sym_preproc_def_token1] = ACTIONS(983), + [aux_sym_preproc_if_token1] = ACTIONS(986), + [aux_sym_preproc_if_token2] = ACTIONS(427), + [aux_sym_preproc_ifdef_token1] = ACTIONS(989), + [aux_sym_preproc_ifdef_token2] = ACTIONS(989), + [sym_preproc_directive] = ACTIONS(992), + [anon_sym_LPAREN2] = ACTIONS(435), + [anon_sym_BANG] = ACTIONS(438), + [anon_sym_TILDE] = ACTIONS(441), + [anon_sym_DASH] = ACTIONS(444), + [anon_sym_PLUS] = ACTIONS(444), + [anon_sym_STAR] = ACTIONS(447), + [anon_sym_AMP_AMP] = ACTIONS(450), + [anon_sym_AMP] = ACTIONS(453), + [anon_sym_SEMI] = ACTIONS(995), + [anon_sym_typedef] = ACTIONS(998), + [anon_sym_extern] = ACTIONS(1001), + [anon_sym___attribute__] = ACTIONS(465), + [anon_sym_COLON_COLON] = ACTIONS(468), + [anon_sym_LBRACK_LBRACK] = ACTIONS(471), + [anon_sym___declspec] = ACTIONS(474), + [anon_sym___based] = ACTIONS(477), + [anon_sym___cdecl] = ACTIONS(480), + [anon_sym___clrcall] = ACTIONS(480), + [anon_sym___stdcall] = ACTIONS(480), + [anon_sym___fastcall] = ACTIONS(480), + [anon_sym___thiscall] = ACTIONS(480), + [anon_sym___vectorcall] = ACTIONS(480), + [anon_sym_LBRACE] = ACTIONS(1004), + [anon_sym_LBRACK] = ACTIONS(486), + [anon_sym_static] = ACTIONS(489), + [anon_sym_register] = ACTIONS(489), + [anon_sym_inline] = ACTIONS(1007), + [anon_sym_thread_local] = ACTIONS(489), + [anon_sym_const] = ACTIONS(495), + [anon_sym_constexpr] = ACTIONS(495), + [anon_sym_volatile] = ACTIONS(495), + [anon_sym_restrict] = ACTIONS(495), + [anon_sym___restrict__] = ACTIONS(495), + [anon_sym__Atomic] = ACTIONS(495), + [anon_sym__Noreturn] = ACTIONS(495), + [anon_sym_noreturn] = ACTIONS(495), + [anon_sym_mutable] = ACTIONS(495), + [anon_sym_constinit] = ACTIONS(495), + [anon_sym_consteval] = ACTIONS(495), + [anon_sym_signed] = ACTIONS(498), + [anon_sym_unsigned] = ACTIONS(498), + [anon_sym_long] = ACTIONS(498), + [anon_sym_short] = ACTIONS(498), + [sym_primitive_type] = ACTIONS(501), + [anon_sym_enum] = ACTIONS(504), + [anon_sym_class] = ACTIONS(507), + [anon_sym_struct] = ACTIONS(510), + [anon_sym_union] = ACTIONS(513), + [anon_sym_if] = ACTIONS(1010), + [anon_sym_switch] = ACTIONS(1013), + [anon_sym_case] = ACTIONS(1016), + [anon_sym_default] = ACTIONS(1019), + [anon_sym_while] = ACTIONS(1022), + [anon_sym_do] = ACTIONS(1025), + [anon_sym_for] = ACTIONS(1028), + [anon_sym_return] = ACTIONS(1031), + [anon_sym_break] = ACTIONS(1034), + [anon_sym_continue] = ACTIONS(1037), + [anon_sym_goto] = ACTIONS(1040), + [anon_sym_not] = ACTIONS(444), + [anon_sym_compl] = ACTIONS(444), + [anon_sym_DASH_DASH] = ACTIONS(549), + [anon_sym_PLUS_PLUS] = ACTIONS(549), + [anon_sym_sizeof] = ACTIONS(552), + [anon_sym_offsetof] = ACTIONS(555), + [anon_sym__Generic] = ACTIONS(558), + [anon_sym_asm] = ACTIONS(561), + [anon_sym___asm__] = ACTIONS(561), + [sym_number_literal] = ACTIONS(564), + [anon_sym_L_SQUOTE] = ACTIONS(567), + [anon_sym_u_SQUOTE] = ACTIONS(567), + [anon_sym_U_SQUOTE] = ACTIONS(567), + [anon_sym_u8_SQUOTE] = ACTIONS(567), + [anon_sym_SQUOTE] = ACTIONS(567), + [anon_sym_L_DQUOTE] = ACTIONS(570), + [anon_sym_u_DQUOTE] = ACTIONS(570), + [anon_sym_U_DQUOTE] = ACTIONS(570), + [anon_sym_u8_DQUOTE] = ACTIONS(570), + [anon_sym_DQUOTE] = ACTIONS(570), + [sym_true] = ACTIONS(573), + [sym_false] = ACTIONS(573), + [anon_sym_NULL] = ACTIONS(576), + [anon_sym_nullptr] = ACTIONS(576), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(579), + [anon_sym_decltype] = ACTIONS(582), + [anon_sym_virtual] = ACTIONS(585), + [anon_sym_explicit] = ACTIONS(588), + [anon_sym_typename] = ACTIONS(591), + [anon_sym_template] = ACTIONS(1043), + [anon_sym_operator] = ACTIONS(597), + [anon_sym_try] = ACTIONS(1046), + [anon_sym_delete] = ACTIONS(603), + [anon_sym_throw] = ACTIONS(1049), + [anon_sym_namespace] = ACTIONS(1052), + [anon_sym_using] = ACTIONS(1055), + [anon_sym_static_assert] = ACTIONS(1058), + [anon_sym_concept] = ACTIONS(1061), + [anon_sym_co_return] = ACTIONS(1064), + [anon_sym_co_yield] = ACTIONS(1067), + [anon_sym_R_DQUOTE] = ACTIONS(627), + [anon_sym_LR_DQUOTE] = ACTIONS(627), + [anon_sym_uR_DQUOTE] = ACTIONS(627), + [anon_sym_UR_DQUOTE] = ACTIONS(627), + [anon_sym_u8R_DQUOTE] = ACTIONS(627), + [anon_sym_co_await] = ACTIONS(630), + [anon_sym_new] = ACTIONS(633), + [anon_sym_requires] = ACTIONS(636), + [sym_this] = ACTIONS(573), + }, + [80] = { + [sym_preproc_include] = STATE(64), + [sym_preproc_def] = STATE(64), + [sym_preproc_function_def] = STATE(64), + [sym_preproc_call] = STATE(64), + [sym_preproc_if] = STATE(64), + [sym_preproc_ifdef] = STATE(64), + [sym_function_definition] = STATE(64), + [sym_declaration] = STATE(64), + [sym_type_definition] = STATE(64), + [sym__declaration_modifiers] = STATE(3706), + [sym__declaration_specifiers] = STATE(4618), + [sym_linkage_specification] = STATE(64), + [sym_attribute_specifier] = STATE(3706), + [sym_attribute_declaration] = STATE(1427), + [sym_ms_declspec_modifier] = STATE(3706), + [sym_ms_based_modifier] = STATE(7654), + [sym_ms_call_modifier] = STATE(2462), + [sym__declarator] = STATE(5881), + [sym_parenthesized_declarator] = STATE(5640), + [sym_attributed_declarator] = STATE(5640), + [sym_pointer_declarator] = STATE(5640), + [sym_function_declarator] = STATE(5588), + [sym_array_declarator] = STATE(5640), + [sym_compound_statement] = STATE(64), + [sym_storage_class_specifier] = STATE(3706), + [sym_type_qualifier] = STATE(3706), + [sym__type_specifier] = STATE(3826), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), + [sym_attributed_statement] = STATE(64), + [sym_labeled_statement] = STATE(64), + [sym_expression_statement] = STATE(64), + [sym_if_statement] = STATE(64), + [sym_switch_statement] = STATE(64), + [sym_case_statement] = STATE(64), + [sym_while_statement] = STATE(64), + [sym_do_statement] = STATE(64), + [sym_for_statement] = STATE(64), + [sym_return_statement] = STATE(64), + [sym_break_statement] = STATE(64), + [sym_continue_statement] = STATE(64), + [sym_goto_statement] = STATE(64), + [sym__expression] = STATE(4182), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7590), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym__empty_declaration] = STATE(64), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym__class_name] = STATE(6623), + [sym_virtual] = STATE(3706), + [sym_explicit_function_specifier] = STATE(2240), + [sym_dependent_type] = STATE(3723), + [sym_template_declaration] = STATE(64), + [sym_template_instantiation] = STATE(64), + [sym_operator_cast] = STATE(5937), + [sym__constructor_specifiers] = STATE(2240), + [sym_operator_cast_definition] = STATE(64), + [sym_operator_cast_declaration] = STATE(64), + [sym_constructor_or_destructor_definition] = STATE(64), + [sym_reference_declarator] = STATE(5640), + [sym_structured_binding_declarator] = STATE(5640), + [sym_template_type] = STATE(3921), + [sym_template_function] = STATE(4066), + [sym_namespace_definition] = STATE(64), + [sym_namespace_alias_definition] = STATE(64), + [sym_using_declaration] = STATE(64), + [sym_alias_declaration] = STATE(64), + [sym_static_assert_declaration] = STATE(64), + [sym_concept_definition] = STATE(64), + [sym_for_range_loop] = STATE(64), + [sym_co_return_statement] = STATE(64), + [sym_co_yield_statement] = STATE(64), + [sym_throw_statement] = STATE(64), + [sym_try_statement] = STATE(64), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_destructor_name] = STATE(5640), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5143), + [sym_qualified_identifier] = STATE(3249), + [sym_qualified_type_identifier] = STATE(3915), + [sym_qualified_operator_cast_identifier] = STATE(5937), + [sym_operator_name] = STATE(5640), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_preproc_if_repeat1] = STATE(64), + [aux_sym__declaration_specifiers_repeat1] = STATE(2514), + [aux_sym_attributed_declarator_repeat1] = STATE(309), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [aux_sym_operator_cast_definition_repeat1] = STATE(2240), + [sym_identifier] = ACTIONS(153), + [aux_sym_preproc_include_token1] = ACTIONS(155), + [aux_sym_preproc_def_token1] = ACTIONS(157), + [aux_sym_preproc_if_token1] = ACTIONS(161), + [aux_sym_preproc_ifdef_token1] = ACTIONS(163), + [aux_sym_preproc_ifdef_token2] = ACTIONS(163), + [sym_preproc_directive] = ACTIONS(165), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(167), + [anon_sym_typedef] = ACTIONS(169), + [anon_sym_extern] = ACTIONS(171), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(45), + [anon_sym___cdecl] = ACTIONS(47), + [anon_sym___clrcall] = ACTIONS(47), + [anon_sym___stdcall] = ACTIONS(47), + [anon_sym___fastcall] = ACTIONS(47), + [anon_sym___thiscall] = ACTIONS(47), + [anon_sym___vectorcall] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(738), + [anon_sym_RBRACE] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(51), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(179), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(181), + [anon_sym_switch] = ACTIONS(183), + [anon_sym_case] = ACTIONS(185), + [anon_sym_default] = ACTIONS(187), + [anon_sym_while] = ACTIONS(189), + [anon_sym_do] = ACTIONS(191), + [anon_sym_for] = ACTIONS(193), + [anon_sym_return] = ACTIONS(195), + [anon_sym_break] = ACTIONS(197), + [anon_sym_continue] = ACTIONS(199), + [anon_sym_goto] = ACTIONS(201), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(113), + [anon_sym_decltype] = ACTIONS(115), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_explicit] = ACTIONS(119), + [anon_sym_typename] = ACTIONS(121), + [anon_sym_template] = ACTIONS(207), + [anon_sym_operator] = ACTIONS(125), + [anon_sym_try] = ACTIONS(209), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(211), + [anon_sym_namespace] = ACTIONS(213), + [anon_sym_using] = ACTIONS(215), + [anon_sym_static_assert] = ACTIONS(217), + [anon_sym_concept] = ACTIONS(219), + [anon_sym_co_return] = ACTIONS(221), + [anon_sym_co_yield] = ACTIONS(223), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), + }, + [81] = { + [sym_preproc_include] = STATE(64), + [sym_preproc_def] = STATE(64), + [sym_preproc_function_def] = STATE(64), + [sym_preproc_call] = STATE(64), + [sym_preproc_if] = STATE(64), + [sym_preproc_ifdef] = STATE(64), + [sym_function_definition] = STATE(64), + [sym_declaration] = STATE(64), + [sym_type_definition] = STATE(64), + [sym__declaration_modifiers] = STATE(3706), + [sym__declaration_specifiers] = STATE(4618), + [sym_linkage_specification] = STATE(64), + [sym_attribute_specifier] = STATE(3706), + [sym_attribute_declaration] = STATE(1427), + [sym_ms_declspec_modifier] = STATE(3706), + [sym_ms_based_modifier] = STATE(7654), + [sym_ms_call_modifier] = STATE(2462), + [sym__declarator] = STATE(5881), + [sym_parenthesized_declarator] = STATE(5640), + [sym_attributed_declarator] = STATE(5640), + [sym_pointer_declarator] = STATE(5640), + [sym_function_declarator] = STATE(5588), + [sym_array_declarator] = STATE(5640), + [sym_compound_statement] = STATE(64), + [sym_storage_class_specifier] = STATE(3706), + [sym_type_qualifier] = STATE(3706), + [sym__type_specifier] = STATE(3826), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), + [sym_attributed_statement] = STATE(64), + [sym_labeled_statement] = STATE(64), + [sym_expression_statement] = STATE(64), + [sym_if_statement] = STATE(64), + [sym_switch_statement] = STATE(64), + [sym_case_statement] = STATE(64), + [sym_while_statement] = STATE(64), + [sym_do_statement] = STATE(64), + [sym_for_statement] = STATE(64), + [sym_return_statement] = STATE(64), + [sym_break_statement] = STATE(64), + [sym_continue_statement] = STATE(64), + [sym_goto_statement] = STATE(64), + [sym__expression] = STATE(4182), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7590), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym__empty_declaration] = STATE(64), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym__class_name] = STATE(6623), + [sym_virtual] = STATE(3706), + [sym_explicit_function_specifier] = STATE(2240), + [sym_dependent_type] = STATE(3723), + [sym_template_declaration] = STATE(64), + [sym_template_instantiation] = STATE(64), + [sym_operator_cast] = STATE(5937), + [sym__constructor_specifiers] = STATE(2240), + [sym_operator_cast_definition] = STATE(64), + [sym_operator_cast_declaration] = STATE(64), + [sym_constructor_or_destructor_definition] = STATE(64), + [sym_reference_declarator] = STATE(5640), + [sym_structured_binding_declarator] = STATE(5640), + [sym_template_type] = STATE(3921), + [sym_template_function] = STATE(4066), + [sym_namespace_definition] = STATE(64), + [sym_namespace_alias_definition] = STATE(64), + [sym_using_declaration] = STATE(64), + [sym_alias_declaration] = STATE(64), + [sym_static_assert_declaration] = STATE(64), + [sym_concept_definition] = STATE(64), + [sym_for_range_loop] = STATE(64), + [sym_co_return_statement] = STATE(64), + [sym_co_yield_statement] = STATE(64), + [sym_throw_statement] = STATE(64), + [sym_try_statement] = STATE(64), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_destructor_name] = STATE(5640), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5143), + [sym_qualified_identifier] = STATE(3249), + [sym_qualified_type_identifier] = STATE(3915), + [sym_qualified_operator_cast_identifier] = STATE(5937), + [sym_operator_name] = STATE(5640), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_preproc_if_repeat1] = STATE(64), + [aux_sym__declaration_specifiers_repeat1] = STATE(2514), + [aux_sym_attributed_declarator_repeat1] = STATE(309), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [aux_sym_operator_cast_definition_repeat1] = STATE(2240), + [sym_identifier] = ACTIONS(153), + [aux_sym_preproc_include_token1] = ACTIONS(155), + [aux_sym_preproc_def_token1] = ACTIONS(157), + [aux_sym_preproc_if_token1] = ACTIONS(161), + [aux_sym_preproc_ifdef_token1] = ACTIONS(163), + [aux_sym_preproc_ifdef_token2] = ACTIONS(163), + [sym_preproc_directive] = ACTIONS(165), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(167), + [anon_sym_typedef] = ACTIONS(169), + [anon_sym_extern] = ACTIONS(171), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(45), + [anon_sym___cdecl] = ACTIONS(47), + [anon_sym___clrcall] = ACTIONS(47), + [anon_sym___stdcall] = ACTIONS(47), + [anon_sym___fastcall] = ACTIONS(47), + [anon_sym___thiscall] = ACTIONS(47), + [anon_sym___vectorcall] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(738), + [anon_sym_RBRACE] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(51), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(179), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(181), + [anon_sym_switch] = ACTIONS(183), + [anon_sym_case] = ACTIONS(185), + [anon_sym_default] = ACTIONS(187), + [anon_sym_while] = ACTIONS(189), + [anon_sym_do] = ACTIONS(191), + [anon_sym_for] = ACTIONS(193), + [anon_sym_return] = ACTIONS(195), + [anon_sym_break] = ACTIONS(197), + [anon_sym_continue] = ACTIONS(199), + [anon_sym_goto] = ACTIONS(201), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(113), + [anon_sym_decltype] = ACTIONS(115), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_explicit] = ACTIONS(119), + [anon_sym_typename] = ACTIONS(121), + [anon_sym_template] = ACTIONS(207), + [anon_sym_operator] = ACTIONS(125), + [anon_sym_try] = ACTIONS(209), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(211), + [anon_sym_namespace] = ACTIONS(213), + [anon_sym_using] = ACTIONS(215), + [anon_sym_static_assert] = ACTIONS(217), + [anon_sym_concept] = ACTIONS(219), + [anon_sym_co_return] = ACTIONS(221), + [anon_sym_co_yield] = ACTIONS(223), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), + }, + [82] = { + [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_declaration] = STATE(85), + [sym_type_definition] = STATE(85), + [sym__declaration_modifiers] = STATE(3706), + [sym__declaration_specifiers] = STATE(4618), + [sym_linkage_specification] = STATE(85), + [sym_attribute_specifier] = STATE(3706), + [sym_attribute_declaration] = STATE(1427), + [sym_ms_declspec_modifier] = STATE(3706), + [sym_ms_based_modifier] = STATE(7654), + [sym_ms_call_modifier] = STATE(2462), + [sym__declarator] = STATE(5881), + [sym_parenthesized_declarator] = STATE(5640), + [sym_attributed_declarator] = STATE(5640), + [sym_pointer_declarator] = STATE(5640), + [sym_function_declarator] = STATE(5588), + [sym_array_declarator] = STATE(5640), + [sym_compound_statement] = STATE(85), + [sym_storage_class_specifier] = STATE(3706), + [sym_type_qualifier] = STATE(3706), + [sym__type_specifier] = STATE(3826), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), + [sym_attributed_statement] = STATE(85), + [sym_labeled_statement] = STATE(85), + [sym_expression_statement] = STATE(85), + [sym_if_statement] = STATE(85), + [sym_switch_statement] = STATE(85), + [sym_case_statement] = STATE(85), + [sym_while_statement] = STATE(85), + [sym_do_statement] = STATE(85), + [sym_for_statement] = STATE(85), + [sym_return_statement] = STATE(85), + [sym_break_statement] = STATE(85), + [sym_continue_statement] = STATE(85), + [sym_goto_statement] = STATE(85), + [sym__expression] = STATE(4182), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7590), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym__empty_declaration] = STATE(85), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym__class_name] = STATE(6623), + [sym_virtual] = STATE(3706), + [sym_explicit_function_specifier] = STATE(2240), + [sym_dependent_type] = STATE(3723), + [sym_template_declaration] = STATE(85), + [sym_template_instantiation] = STATE(85), + [sym_operator_cast] = STATE(5937), + [sym__constructor_specifiers] = STATE(2240), + [sym_operator_cast_definition] = STATE(85), + [sym_operator_cast_declaration] = STATE(85), + [sym_constructor_or_destructor_definition] = STATE(85), + [sym_reference_declarator] = STATE(5640), + [sym_structured_binding_declarator] = STATE(5640), + [sym_template_type] = STATE(3921), + [sym_template_function] = STATE(4066), + [sym_namespace_definition] = STATE(85), + [sym_namespace_alias_definition] = STATE(85), + [sym_using_declaration] = STATE(85), + [sym_alias_declaration] = STATE(85), + [sym_static_assert_declaration] = STATE(85), + [sym_concept_definition] = STATE(85), + [sym_for_range_loop] = STATE(85), + [sym_co_return_statement] = STATE(85), + [sym_co_yield_statement] = STATE(85), + [sym_throw_statement] = STATE(85), + [sym_try_statement] = STATE(85), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_destructor_name] = STATE(5640), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5143), + [sym_qualified_identifier] = STATE(3249), + [sym_qualified_type_identifier] = STATE(3915), + [sym_qualified_operator_cast_identifier] = STATE(5937), + [sym_operator_name] = STATE(5640), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_preproc_if_repeat1] = STATE(85), + [aux_sym__declaration_specifiers_repeat1] = STATE(2514), + [aux_sym_attributed_declarator_repeat1] = STATE(309), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [aux_sym_operator_cast_definition_repeat1] = STATE(2240), + [sym_identifier] = ACTIONS(153), + [aux_sym_preproc_include_token1] = ACTIONS(155), + [aux_sym_preproc_def_token1] = ACTIONS(157), + [aux_sym_preproc_if_token1] = ACTIONS(161), + [aux_sym_preproc_ifdef_token1] = ACTIONS(163), + [aux_sym_preproc_ifdef_token2] = ACTIONS(163), + [sym_preproc_directive] = ACTIONS(165), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(167), + [anon_sym_typedef] = ACTIONS(169), + [anon_sym_extern] = ACTIONS(171), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(45), + [anon_sym___cdecl] = ACTIONS(47), + [anon_sym___clrcall] = ACTIONS(47), + [anon_sym___stdcall] = ACTIONS(47), + [anon_sym___fastcall] = ACTIONS(47), + [anon_sym___thiscall] = ACTIONS(47), + [anon_sym___vectorcall] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(738), + [anon_sym_RBRACE] = ACTIONS(1074), + [anon_sym_LBRACK] = ACTIONS(51), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(179), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(181), + [anon_sym_switch] = ACTIONS(183), + [anon_sym_case] = ACTIONS(185), + [anon_sym_default] = ACTIONS(187), + [anon_sym_while] = ACTIONS(189), + [anon_sym_do] = ACTIONS(191), + [anon_sym_for] = ACTIONS(193), + [anon_sym_return] = ACTIONS(195), + [anon_sym_break] = ACTIONS(197), + [anon_sym_continue] = ACTIONS(199), + [anon_sym_goto] = ACTIONS(201), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(113), + [anon_sym_decltype] = ACTIONS(115), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_explicit] = ACTIONS(119), + [anon_sym_typename] = ACTIONS(121), + [anon_sym_template] = ACTIONS(207), + [anon_sym_operator] = ACTIONS(125), + [anon_sym_try] = ACTIONS(209), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(211), + [anon_sym_namespace] = ACTIONS(213), + [anon_sym_using] = ACTIONS(215), + [anon_sym_static_assert] = ACTIONS(217), + [anon_sym_concept] = ACTIONS(219), + [anon_sym_co_return] = ACTIONS(221), + [anon_sym_co_yield] = ACTIONS(223), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), + }, + [83] = { + [sym_preproc_include] = STATE(64), + [sym_preproc_def] = STATE(64), + [sym_preproc_function_def] = STATE(64), + [sym_preproc_call] = STATE(64), + [sym_preproc_if] = STATE(64), + [sym_preproc_ifdef] = STATE(64), + [sym_function_definition] = STATE(64), + [sym_declaration] = STATE(64), + [sym_type_definition] = STATE(64), + [sym__declaration_modifiers] = STATE(3706), + [sym__declaration_specifiers] = STATE(4618), + [sym_linkage_specification] = STATE(64), + [sym_attribute_specifier] = STATE(3706), + [sym_attribute_declaration] = STATE(1427), + [sym_ms_declspec_modifier] = STATE(3706), + [sym_ms_based_modifier] = STATE(7654), + [sym_ms_call_modifier] = STATE(2462), + [sym__declarator] = STATE(5881), + [sym_parenthesized_declarator] = STATE(5640), + [sym_attributed_declarator] = STATE(5640), + [sym_pointer_declarator] = STATE(5640), + [sym_function_declarator] = STATE(5588), + [sym_array_declarator] = STATE(5640), + [sym_compound_statement] = STATE(64), + [sym_storage_class_specifier] = STATE(3706), + [sym_type_qualifier] = STATE(3706), + [sym__type_specifier] = STATE(3826), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), + [sym_attributed_statement] = STATE(64), + [sym_labeled_statement] = STATE(64), + [sym_expression_statement] = STATE(64), + [sym_if_statement] = STATE(64), + [sym_switch_statement] = STATE(64), + [sym_case_statement] = STATE(64), + [sym_while_statement] = STATE(64), + [sym_do_statement] = STATE(64), + [sym_for_statement] = STATE(64), + [sym_return_statement] = STATE(64), + [sym_break_statement] = STATE(64), + [sym_continue_statement] = STATE(64), + [sym_goto_statement] = STATE(64), + [sym__expression] = STATE(4182), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7590), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym__empty_declaration] = STATE(64), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym__class_name] = STATE(6623), + [sym_virtual] = STATE(3706), + [sym_explicit_function_specifier] = STATE(2240), + [sym_dependent_type] = STATE(3723), + [sym_template_declaration] = STATE(64), + [sym_template_instantiation] = STATE(64), + [sym_operator_cast] = STATE(5937), + [sym__constructor_specifiers] = STATE(2240), + [sym_operator_cast_definition] = STATE(64), + [sym_operator_cast_declaration] = STATE(64), + [sym_constructor_or_destructor_definition] = STATE(64), + [sym_reference_declarator] = STATE(5640), + [sym_structured_binding_declarator] = STATE(5640), + [sym_template_type] = STATE(3921), + [sym_template_function] = STATE(4066), + [sym_namespace_definition] = STATE(64), + [sym_namespace_alias_definition] = STATE(64), + [sym_using_declaration] = STATE(64), + [sym_alias_declaration] = STATE(64), + [sym_static_assert_declaration] = STATE(64), + [sym_concept_definition] = STATE(64), + [sym_for_range_loop] = STATE(64), + [sym_co_return_statement] = STATE(64), + [sym_co_yield_statement] = STATE(64), + [sym_throw_statement] = STATE(64), + [sym_try_statement] = STATE(64), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_destructor_name] = STATE(5640), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5143), + [sym_qualified_identifier] = STATE(3249), + [sym_qualified_type_identifier] = STATE(3915), + [sym_qualified_operator_cast_identifier] = STATE(5937), + [sym_operator_name] = STATE(5640), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_preproc_if_repeat1] = STATE(64), + [aux_sym__declaration_specifiers_repeat1] = STATE(2514), + [aux_sym_attributed_declarator_repeat1] = STATE(309), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [aux_sym_operator_cast_definition_repeat1] = STATE(2240), + [sym_identifier] = ACTIONS(153), + [aux_sym_preproc_include_token1] = ACTIONS(155), + [aux_sym_preproc_def_token1] = ACTIONS(157), + [aux_sym_preproc_if_token1] = ACTIONS(161), + [aux_sym_preproc_ifdef_token1] = ACTIONS(163), + [aux_sym_preproc_ifdef_token2] = ACTIONS(163), + [sym_preproc_directive] = ACTIONS(165), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(167), + [anon_sym_typedef] = ACTIONS(169), + [anon_sym_extern] = ACTIONS(171), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(45), + [anon_sym___cdecl] = ACTIONS(47), + [anon_sym___clrcall] = ACTIONS(47), + [anon_sym___stdcall] = ACTIONS(47), + [anon_sym___fastcall] = ACTIONS(47), + [anon_sym___thiscall] = ACTIONS(47), + [anon_sym___vectorcall] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(738), + [anon_sym_RBRACE] = ACTIONS(1076), + [anon_sym_LBRACK] = ACTIONS(51), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(179), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(181), + [anon_sym_switch] = ACTIONS(183), + [anon_sym_case] = ACTIONS(185), + [anon_sym_default] = ACTIONS(187), + [anon_sym_while] = ACTIONS(189), + [anon_sym_do] = ACTIONS(191), + [anon_sym_for] = ACTIONS(193), + [anon_sym_return] = ACTIONS(195), + [anon_sym_break] = ACTIONS(197), + [anon_sym_continue] = ACTIONS(199), + [anon_sym_goto] = ACTIONS(201), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(113), + [anon_sym_decltype] = ACTIONS(115), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_explicit] = ACTIONS(119), + [anon_sym_typename] = ACTIONS(121), + [anon_sym_template] = ACTIONS(207), + [anon_sym_operator] = ACTIONS(125), + [anon_sym_try] = ACTIONS(209), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(211), + [anon_sym_namespace] = ACTIONS(213), + [anon_sym_using] = ACTIONS(215), + [anon_sym_static_assert] = ACTIONS(217), + [anon_sym_concept] = ACTIONS(219), + [anon_sym_co_return] = ACTIONS(221), + [anon_sym_co_yield] = ACTIONS(223), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), + }, + [84] = { + [sym_preproc_include] = STATE(64), + [sym_preproc_def] = STATE(64), + [sym_preproc_function_def] = STATE(64), + [sym_preproc_call] = STATE(64), + [sym_preproc_if] = STATE(64), + [sym_preproc_ifdef] = STATE(64), + [sym_function_definition] = STATE(64), + [sym_declaration] = STATE(64), + [sym_type_definition] = STATE(64), + [sym__declaration_modifiers] = STATE(3706), + [sym__declaration_specifiers] = STATE(4618), + [sym_linkage_specification] = STATE(64), + [sym_attribute_specifier] = STATE(3706), + [sym_attribute_declaration] = STATE(1427), + [sym_ms_declspec_modifier] = STATE(3706), + [sym_ms_based_modifier] = STATE(7654), + [sym_ms_call_modifier] = STATE(2462), + [sym__declarator] = STATE(5881), + [sym_parenthesized_declarator] = STATE(5640), + [sym_attributed_declarator] = STATE(5640), + [sym_pointer_declarator] = STATE(5640), + [sym_function_declarator] = STATE(5588), + [sym_array_declarator] = STATE(5640), + [sym_compound_statement] = STATE(64), + [sym_storage_class_specifier] = STATE(3706), + [sym_type_qualifier] = STATE(3706), + [sym__type_specifier] = STATE(3826), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), + [sym_attributed_statement] = STATE(64), + [sym_labeled_statement] = STATE(64), + [sym_expression_statement] = STATE(64), + [sym_if_statement] = STATE(64), + [sym_switch_statement] = STATE(64), + [sym_case_statement] = STATE(64), + [sym_while_statement] = STATE(64), + [sym_do_statement] = STATE(64), + [sym_for_statement] = STATE(64), + [sym_return_statement] = STATE(64), + [sym_break_statement] = STATE(64), + [sym_continue_statement] = STATE(64), + [sym_goto_statement] = STATE(64), + [sym__expression] = STATE(4182), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7590), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym__empty_declaration] = STATE(64), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym__class_name] = STATE(6623), + [sym_virtual] = STATE(3706), + [sym_explicit_function_specifier] = STATE(2240), + [sym_dependent_type] = STATE(3723), + [sym_template_declaration] = STATE(64), + [sym_template_instantiation] = STATE(64), + [sym_operator_cast] = STATE(5937), + [sym__constructor_specifiers] = STATE(2240), + [sym_operator_cast_definition] = STATE(64), + [sym_operator_cast_declaration] = STATE(64), + [sym_constructor_or_destructor_definition] = STATE(64), + [sym_reference_declarator] = STATE(5640), + [sym_structured_binding_declarator] = STATE(5640), + [sym_template_type] = STATE(3921), + [sym_template_function] = STATE(4066), + [sym_namespace_definition] = STATE(64), + [sym_namespace_alias_definition] = STATE(64), + [sym_using_declaration] = STATE(64), + [sym_alias_declaration] = STATE(64), + [sym_static_assert_declaration] = STATE(64), + [sym_concept_definition] = STATE(64), + [sym_for_range_loop] = STATE(64), + [sym_co_return_statement] = STATE(64), + [sym_co_yield_statement] = STATE(64), + [sym_throw_statement] = STATE(64), + [sym_try_statement] = STATE(64), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_destructor_name] = STATE(5640), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5143), + [sym_qualified_identifier] = STATE(3249), + [sym_qualified_type_identifier] = STATE(3915), + [sym_qualified_operator_cast_identifier] = STATE(5937), + [sym_operator_name] = STATE(5640), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_preproc_if_repeat1] = STATE(64), + [aux_sym__declaration_specifiers_repeat1] = STATE(2514), + [aux_sym_attributed_declarator_repeat1] = STATE(309), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [aux_sym_operator_cast_definition_repeat1] = STATE(2240), + [sym_identifier] = ACTIONS(153), + [aux_sym_preproc_include_token1] = ACTIONS(155), + [aux_sym_preproc_def_token1] = ACTIONS(157), + [aux_sym_preproc_if_token1] = ACTIONS(161), + [aux_sym_preproc_ifdef_token1] = ACTIONS(163), + [aux_sym_preproc_ifdef_token2] = ACTIONS(163), + [sym_preproc_directive] = ACTIONS(165), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(167), + [anon_sym_typedef] = ACTIONS(169), + [anon_sym_extern] = ACTIONS(171), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(45), + [anon_sym___cdecl] = ACTIONS(47), + [anon_sym___clrcall] = ACTIONS(47), + [anon_sym___stdcall] = ACTIONS(47), + [anon_sym___fastcall] = ACTIONS(47), + [anon_sym___thiscall] = ACTIONS(47), + [anon_sym___vectorcall] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(738), + [anon_sym_RBRACE] = ACTIONS(1078), + [anon_sym_LBRACK] = ACTIONS(51), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(179), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(181), + [anon_sym_switch] = ACTIONS(183), + [anon_sym_case] = ACTIONS(185), + [anon_sym_default] = ACTIONS(187), + [anon_sym_while] = ACTIONS(189), + [anon_sym_do] = ACTIONS(191), + [anon_sym_for] = ACTIONS(193), + [anon_sym_return] = ACTIONS(195), + [anon_sym_break] = ACTIONS(197), + [anon_sym_continue] = ACTIONS(199), + [anon_sym_goto] = ACTIONS(201), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(113), + [anon_sym_decltype] = ACTIONS(115), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_explicit] = ACTIONS(119), + [anon_sym_typename] = ACTIONS(121), + [anon_sym_template] = ACTIONS(207), + [anon_sym_operator] = ACTIONS(125), + [anon_sym_try] = ACTIONS(209), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(211), + [anon_sym_namespace] = ACTIONS(213), + [anon_sym_using] = ACTIONS(215), + [anon_sym_static_assert] = ACTIONS(217), + [anon_sym_concept] = ACTIONS(219), + [anon_sym_co_return] = ACTIONS(221), + [anon_sym_co_yield] = ACTIONS(223), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), + }, + [85] = { + [sym_preproc_include] = STATE(64), + [sym_preproc_def] = STATE(64), + [sym_preproc_function_def] = STATE(64), + [sym_preproc_call] = STATE(64), + [sym_preproc_if] = STATE(64), + [sym_preproc_ifdef] = STATE(64), + [sym_function_definition] = STATE(64), + [sym_declaration] = STATE(64), + [sym_type_definition] = STATE(64), + [sym__declaration_modifiers] = STATE(3706), + [sym__declaration_specifiers] = STATE(4618), + [sym_linkage_specification] = STATE(64), + [sym_attribute_specifier] = STATE(3706), + [sym_attribute_declaration] = STATE(1427), + [sym_ms_declspec_modifier] = STATE(3706), + [sym_ms_based_modifier] = STATE(7654), + [sym_ms_call_modifier] = STATE(2462), + [sym__declarator] = STATE(5881), + [sym_parenthesized_declarator] = STATE(5640), + [sym_attributed_declarator] = STATE(5640), + [sym_pointer_declarator] = STATE(5640), + [sym_function_declarator] = STATE(5588), + [sym_array_declarator] = STATE(5640), + [sym_compound_statement] = STATE(64), + [sym_storage_class_specifier] = STATE(3706), + [sym_type_qualifier] = STATE(3706), + [sym__type_specifier] = STATE(3826), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), + [sym_attributed_statement] = STATE(64), + [sym_labeled_statement] = STATE(64), + [sym_expression_statement] = STATE(64), + [sym_if_statement] = STATE(64), + [sym_switch_statement] = STATE(64), + [sym_case_statement] = STATE(64), + [sym_while_statement] = STATE(64), + [sym_do_statement] = STATE(64), + [sym_for_statement] = STATE(64), + [sym_return_statement] = STATE(64), + [sym_break_statement] = STATE(64), + [sym_continue_statement] = STATE(64), + [sym_goto_statement] = STATE(64), + [sym__expression] = STATE(4182), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7590), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym__empty_declaration] = STATE(64), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym__class_name] = STATE(6623), + [sym_virtual] = STATE(3706), + [sym_explicit_function_specifier] = STATE(2240), + [sym_dependent_type] = STATE(3723), + [sym_template_declaration] = STATE(64), + [sym_template_instantiation] = STATE(64), + [sym_operator_cast] = STATE(5937), + [sym__constructor_specifiers] = STATE(2240), + [sym_operator_cast_definition] = STATE(64), + [sym_operator_cast_declaration] = STATE(64), + [sym_constructor_or_destructor_definition] = STATE(64), + [sym_reference_declarator] = STATE(5640), + [sym_structured_binding_declarator] = STATE(5640), + [sym_template_type] = STATE(3921), + [sym_template_function] = STATE(4066), + [sym_namespace_definition] = STATE(64), + [sym_namespace_alias_definition] = STATE(64), + [sym_using_declaration] = STATE(64), + [sym_alias_declaration] = STATE(64), + [sym_static_assert_declaration] = STATE(64), + [sym_concept_definition] = STATE(64), + [sym_for_range_loop] = STATE(64), + [sym_co_return_statement] = STATE(64), + [sym_co_yield_statement] = STATE(64), + [sym_throw_statement] = STATE(64), + [sym_try_statement] = STATE(64), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_destructor_name] = STATE(5640), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5143), + [sym_qualified_identifier] = STATE(3249), + [sym_qualified_type_identifier] = STATE(3915), + [sym_qualified_operator_cast_identifier] = STATE(5937), + [sym_operator_name] = STATE(5640), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_preproc_if_repeat1] = STATE(64), + [aux_sym__declaration_specifiers_repeat1] = STATE(2514), + [aux_sym_attributed_declarator_repeat1] = STATE(309), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [aux_sym_operator_cast_definition_repeat1] = STATE(2240), + [sym_identifier] = ACTIONS(153), + [aux_sym_preproc_include_token1] = ACTIONS(155), + [aux_sym_preproc_def_token1] = ACTIONS(157), + [aux_sym_preproc_if_token1] = ACTIONS(161), + [aux_sym_preproc_ifdef_token1] = ACTIONS(163), + [aux_sym_preproc_ifdef_token2] = ACTIONS(163), + [sym_preproc_directive] = ACTIONS(165), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(167), + [anon_sym_typedef] = ACTIONS(169), + [anon_sym_extern] = ACTIONS(171), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(45), + [anon_sym___cdecl] = ACTIONS(47), + [anon_sym___clrcall] = ACTIONS(47), + [anon_sym___stdcall] = ACTIONS(47), + [anon_sym___fastcall] = ACTIONS(47), + [anon_sym___thiscall] = ACTIONS(47), + [anon_sym___vectorcall] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(738), + [anon_sym_RBRACE] = ACTIONS(1080), + [anon_sym_LBRACK] = ACTIONS(51), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(179), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(181), + [anon_sym_switch] = ACTIONS(183), + [anon_sym_case] = ACTIONS(185), + [anon_sym_default] = ACTIONS(187), + [anon_sym_while] = ACTIONS(189), + [anon_sym_do] = ACTIONS(191), + [anon_sym_for] = ACTIONS(193), + [anon_sym_return] = ACTIONS(195), + [anon_sym_break] = ACTIONS(197), + [anon_sym_continue] = ACTIONS(199), + [anon_sym_goto] = ACTIONS(201), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(107), - [anon_sym_decltype] = ACTIONS(109), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_explicit] = ACTIONS(1159), - [anon_sym_typename] = ACTIONS(115), - [anon_sym_template] = ACTIONS(996), - [anon_sym_operator] = ACTIONS(1159), - [anon_sym_try] = ACTIONS(694), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(696), - [anon_sym_namespace] = ACTIONS(1159), - [anon_sym_using] = ACTIONS(1159), - [anon_sym_static_assert] = ACTIONS(1159), - [anon_sym_concept] = ACTIONS(1159), - [anon_sym_co_return] = ACTIONS(706), - [anon_sym_co_yield] = ACTIONS(708), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(113), + [anon_sym_decltype] = ACTIONS(115), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_explicit] = ACTIONS(119), + [anon_sym_typename] = ACTIONS(121), + [anon_sym_template] = ACTIONS(207), + [anon_sym_operator] = ACTIONS(125), + [anon_sym_try] = ACTIONS(209), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(211), + [anon_sym_namespace] = ACTIONS(213), + [anon_sym_using] = ACTIONS(215), + [anon_sym_static_assert] = ACTIONS(217), + [anon_sym_concept] = ACTIONS(219), + [anon_sym_co_return] = ACTIONS(221), + [anon_sym_co_yield] = ACTIONS(223), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [86] = { - [sym_declaration] = STATE(82), - [sym_type_definition] = STATE(82), - [sym__declaration_modifiers] = STATE(2179), - [sym__declaration_specifiers] = STATE(3956), - [sym_attribute_specifier] = STATE(2179), - [sym_attribute_declaration] = STATE(1186), - [sym_ms_declspec_modifier] = STATE(2179), - [sym_compound_statement] = STATE(82), - [sym_storage_class_specifier] = STATE(2179), - [sym_type_qualifier] = STATE(2179), - [sym__type_specifier] = STATE(3156), - [sym_sized_type_specifier] = STATE(3232), - [sym_enum_specifier] = STATE(3232), - [sym_struct_specifier] = STATE(3232), - [sym_union_specifier] = STATE(3232), - [sym_attributed_statement] = STATE(82), - [sym_labeled_statement] = STATE(82), - [sym_expression_statement] = STATE(82), - [sym_if_statement] = STATE(82), - [sym_switch_statement] = STATE(82), - [sym_while_statement] = STATE(82), - [sym_do_statement] = STATE(82), - [sym_for_statement] = STATE(82), - [sym_return_statement] = STATE(82), - [sym_break_statement] = STATE(82), - [sym_continue_statement] = STATE(82), - [sym_goto_statement] = STATE(82), - [sym__expression] = STATE(3522), - [sym_comma_expression] = STATE(6276), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_placeholder_type_specifier] = STATE(3232), - [sym_decltype_auto] = STATE(3279), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3232), - [sym__class_name] = STATE(5753), - [sym_virtual] = STATE(2179), - [sym_dependent_type] = STATE(3232), - [sym_template_type] = STATE(3608), - [sym_template_function] = STATE(3365), - [sym_for_range_loop] = STATE(82), - [sym_co_return_statement] = STATE(82), - [sym_co_yield_statement] = STATE(82), - [sym_throw_statement] = STATE(82), - [sym_try_statement] = STATE(82), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4580), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(3593), - [sym_user_defined_literal] = STATE(3365), - [aux_sym__declaration_specifiers_repeat1] = STATE(2179), - [aux_sym_attributed_declarator_repeat1] = STATE(151), - [aux_sym_sized_type_specifier_repeat1] = STATE(3171), - [aux_sym_case_statement_repeat1] = STATE(82), - [sym_identifier] = ACTIONS(1218), - [aux_sym_preproc_include_token1] = ACTIONS(998), - [aux_sym_preproc_def_token1] = ACTIONS(998), - [aux_sym_preproc_if_token1] = ACTIONS(998), - [aux_sym_preproc_if_token2] = ACTIONS(998), - [aux_sym_preproc_ifdef_token1] = ACTIONS(998), - [aux_sym_preproc_ifdef_token2] = ACTIONS(998), - [sym_preproc_directive] = ACTIONS(998), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym_preproc_include] = STATE(70), + [sym_preproc_def] = STATE(70), + [sym_preproc_function_def] = STATE(70), + [sym_preproc_call] = STATE(70), + [sym_preproc_if] = STATE(70), + [sym_preproc_ifdef] = STATE(70), + [sym_function_definition] = STATE(70), + [sym_declaration] = STATE(70), + [sym_type_definition] = STATE(70), + [sym__declaration_modifiers] = STATE(3706), + [sym__declaration_specifiers] = STATE(4656), + [sym_linkage_specification] = STATE(70), + [sym_attribute_specifier] = STATE(3706), + [sym_attribute_declaration] = STATE(1427), + [sym_ms_declspec_modifier] = STATE(3706), + [sym_ms_based_modifier] = STATE(7654), + [sym_ms_call_modifier] = STATE(2383), + [sym__declarator] = STATE(5881), + [sym_parenthesized_declarator] = STATE(5640), + [sym_attributed_declarator] = STATE(5640), + [sym_pointer_declarator] = STATE(5640), + [sym_function_declarator] = STATE(5561), + [sym_array_declarator] = STATE(5640), + [sym_compound_statement] = STATE(70), + [sym_storage_class_specifier] = STATE(3706), + [sym_type_qualifier] = STATE(3706), + [sym__type_specifier] = STATE(3808), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), + [sym_attributed_statement] = STATE(70), + [sym_labeled_statement] = STATE(70), + [sym_expression_statement] = STATE(70), + [sym_if_statement] = STATE(70), + [sym_switch_statement] = STATE(70), + [sym_case_statement] = STATE(70), + [sym_while_statement] = STATE(70), + [sym_do_statement] = STATE(70), + [sym_for_statement] = STATE(70), + [sym_return_statement] = STATE(70), + [sym_break_statement] = STATE(70), + [sym_continue_statement] = STATE(70), + [sym_goto_statement] = STATE(70), + [sym__expression] = STATE(4126), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(6964), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym__empty_declaration] = STATE(70), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym__class_name] = STATE(6623), + [sym_virtual] = STATE(3706), + [sym_explicit_function_specifier] = STATE(2256), + [sym_dependent_type] = STATE(3723), + [sym_template_declaration] = STATE(70), + [sym_template_instantiation] = STATE(70), + [sym_operator_cast] = STATE(5899), + [sym__constructor_specifiers] = STATE(2256), + [sym_operator_cast_definition] = STATE(70), + [sym_operator_cast_declaration] = STATE(70), + [sym_constructor_or_destructor_definition] = STATE(70), + [sym_reference_declarator] = STATE(5640), + [sym_structured_binding_declarator] = STATE(5640), + [sym_template_type] = STATE(3921), + [sym_template_function] = STATE(4066), + [sym_namespace_definition] = STATE(70), + [sym_namespace_alias_definition] = STATE(70), + [sym_using_declaration] = STATE(70), + [sym_alias_declaration] = STATE(70), + [sym_static_assert_declaration] = STATE(70), + [sym_concept_definition] = STATE(70), + [sym_for_range_loop] = STATE(70), + [sym_co_return_statement] = STATE(70), + [sym_co_yield_statement] = STATE(70), + [sym_throw_statement] = STATE(70), + [sym_try_statement] = STATE(70), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_destructor_name] = STATE(5640), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5143), + [sym_qualified_identifier] = STATE(3249), + [sym_qualified_type_identifier] = STATE(3915), + [sym_qualified_operator_cast_identifier] = STATE(5899), + [sym_operator_name] = STATE(5640), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_preproc_if_repeat1] = STATE(70), + [aux_sym__declaration_specifiers_repeat1] = STATE(2514), + [aux_sym_attributed_declarator_repeat1] = STATE(189), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [aux_sym_operator_cast_definition_repeat1] = STATE(2256), + [sym_identifier] = ACTIONS(897), + [aux_sym_preproc_include_token1] = ACTIONS(899), + [aux_sym_preproc_def_token1] = ACTIONS(901), + [aux_sym_preproc_if_token1] = ACTIONS(903), + [aux_sym_preproc_if_token2] = ACTIONS(1082), + [aux_sym_preproc_ifdef_token1] = ACTIONS(907), + [aux_sym_preproc_ifdef_token2] = ACTIONS(907), + [sym_preproc_directive] = ACTIONS(909), + [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(23), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP_AMP] = ACTIONS(1000), - [anon_sym_AMP] = ACTIONS(990), - [anon_sym_SEMI] = ACTIONS(660), - [anon_sym_typedef] = ACTIONS(662), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(992), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(998), - [anon_sym___cdecl] = ACTIONS(998), - [anon_sym___clrcall] = ACTIONS(998), - [anon_sym___stdcall] = ACTIONS(998), - [anon_sym___fastcall] = ACTIONS(998), - [anon_sym___thiscall] = ACTIONS(998), - [anon_sym___vectorcall] = ACTIONS(998), - [anon_sym_LBRACE] = ACTIONS(666), - [anon_sym_LBRACK] = ACTIONS(994), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(61), - [anon_sym_unsigned] = ACTIONS(61), - [anon_sym_long] = ACTIONS(61), - [anon_sym_short] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(63), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(670), - [anon_sym_else] = ACTIONS(998), - [anon_sym_switch] = ACTIONS(672), - [anon_sym_case] = ACTIONS(998), - [anon_sym_default] = ACTIONS(998), - [anon_sym_while] = ACTIONS(678), - [anon_sym_do] = ACTIONS(680), - [anon_sym_for] = ACTIONS(682), - [anon_sym_return] = ACTIONS(684), - [anon_sym_break] = ACTIONS(686), - [anon_sym_continue] = ACTIONS(688), - [anon_sym_goto] = ACTIONS(690), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(911), + [anon_sym_typedef] = ACTIONS(913), + [anon_sym_extern] = ACTIONS(915), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(45), + [anon_sym___cdecl] = ACTIONS(47), + [anon_sym___clrcall] = ACTIONS(47), + [anon_sym___stdcall] = ACTIONS(47), + [anon_sym___fastcall] = ACTIONS(47), + [anon_sym___thiscall] = ACTIONS(47), + [anon_sym___vectorcall] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(917), + [anon_sym_LBRACK] = ACTIONS(51), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(919), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(921), + [anon_sym_switch] = ACTIONS(923), + [anon_sym_case] = ACTIONS(925), + [anon_sym_default] = ACTIONS(927), + [anon_sym_while] = ACTIONS(929), + [anon_sym_do] = ACTIONS(931), + [anon_sym_for] = ACTIONS(933), + [anon_sym_return] = ACTIONS(935), + [anon_sym_break] = ACTIONS(937), + [anon_sym_continue] = ACTIONS(939), + [anon_sym_goto] = ACTIONS(941), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(107), - [anon_sym_decltype] = ACTIONS(109), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_explicit] = ACTIONS(998), - [anon_sym_typename] = ACTIONS(115), - [anon_sym_template] = ACTIONS(996), - [anon_sym_operator] = ACTIONS(998), - [anon_sym_try] = ACTIONS(694), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(696), - [anon_sym_namespace] = ACTIONS(998), - [anon_sym_using] = ACTIONS(998), - [anon_sym_static_assert] = ACTIONS(998), - [anon_sym_concept] = ACTIONS(998), - [anon_sym_co_return] = ACTIONS(706), - [anon_sym_co_yield] = ACTIONS(708), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(113), + [anon_sym_decltype] = ACTIONS(115), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_explicit] = ACTIONS(119), + [anon_sym_typename] = ACTIONS(121), + [anon_sym_template] = ACTIONS(943), + [anon_sym_operator] = ACTIONS(125), + [anon_sym_try] = ACTIONS(945), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(947), + [anon_sym_namespace] = ACTIONS(949), + [anon_sym_using] = ACTIONS(951), + [anon_sym_static_assert] = ACTIONS(953), + [anon_sym_concept] = ACTIONS(955), + [anon_sym_co_return] = ACTIONS(957), + [anon_sym_co_yield] = ACTIONS(959), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [87] = { - [sym_declaration] = STATE(91), - [sym_type_definition] = STATE(91), - [sym__declaration_modifiers] = STATE(2179), - [sym__declaration_specifiers] = STATE(3949), - [sym_attribute_specifier] = STATE(2179), - [sym_attribute_declaration] = STATE(1186), - [sym_ms_declspec_modifier] = STATE(2179), - [sym_compound_statement] = STATE(91), - [sym_storage_class_specifier] = STATE(2179), - [sym_type_qualifier] = STATE(2179), - [sym__type_specifier] = STATE(3156), - [sym_sized_type_specifier] = STATE(3232), - [sym_enum_specifier] = STATE(3232), - [sym_struct_specifier] = STATE(3232), - [sym_union_specifier] = STATE(3232), - [sym_attributed_statement] = STATE(91), - [sym_labeled_statement] = STATE(91), - [sym_expression_statement] = STATE(91), - [sym_if_statement] = STATE(91), - [sym_switch_statement] = STATE(91), - [sym_while_statement] = STATE(91), - [sym_do_statement] = STATE(91), - [sym_for_statement] = STATE(91), - [sym_return_statement] = STATE(91), - [sym_break_statement] = STATE(91), - [sym_continue_statement] = STATE(91), - [sym_goto_statement] = STATE(91), - [sym__expression] = STATE(3622), - [sym_comma_expression] = STATE(6125), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_placeholder_type_specifier] = STATE(3232), - [sym_decltype_auto] = STATE(3279), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3232), - [sym__class_name] = STATE(5753), - [sym_virtual] = STATE(2179), - [sym_dependent_type] = STATE(3232), - [sym_template_type] = STATE(3608), - [sym_template_function] = STATE(3365), - [sym_for_range_loop] = STATE(91), - [sym_co_return_statement] = STATE(91), - [sym_co_yield_statement] = STATE(91), - [sym_throw_statement] = STATE(91), - [sym_try_statement] = STATE(91), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4580), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(3593), - [sym_user_defined_literal] = STATE(3365), - [aux_sym__declaration_specifiers_repeat1] = STATE(2179), - [aux_sym_attributed_declarator_repeat1] = STATE(172), - [aux_sym_sized_type_specifier_repeat1] = STATE(3171), - [aux_sym_case_statement_repeat1] = STATE(91), - [ts_builtin_sym_end] = ACTIONS(988), - [sym_identifier] = ACTIONS(1222), - [aux_sym_preproc_include_token1] = ACTIONS(982), - [aux_sym_preproc_def_token1] = ACTIONS(982), - [aux_sym_preproc_if_token1] = ACTIONS(982), - [aux_sym_preproc_ifdef_token1] = ACTIONS(982), - [aux_sym_preproc_ifdef_token2] = ACTIONS(982), - [sym_preproc_directive] = ACTIONS(982), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym_preproc_include] = STATE(64), + [sym_preproc_def] = STATE(64), + [sym_preproc_function_def] = STATE(64), + [sym_preproc_call] = STATE(64), + [sym_preproc_if] = STATE(64), + [sym_preproc_ifdef] = STATE(64), + [sym_function_definition] = STATE(64), + [sym_declaration] = STATE(64), + [sym_type_definition] = STATE(64), + [sym__declaration_modifiers] = STATE(3706), + [sym__declaration_specifiers] = STATE(4618), + [sym_linkage_specification] = STATE(64), + [sym_attribute_specifier] = STATE(3706), + [sym_attribute_declaration] = STATE(1427), + [sym_ms_declspec_modifier] = STATE(3706), + [sym_ms_based_modifier] = STATE(7654), + [sym_ms_call_modifier] = STATE(2462), + [sym__declarator] = STATE(5881), + [sym_parenthesized_declarator] = STATE(5640), + [sym_attributed_declarator] = STATE(5640), + [sym_pointer_declarator] = STATE(5640), + [sym_function_declarator] = STATE(5588), + [sym_array_declarator] = STATE(5640), + [sym_compound_statement] = STATE(64), + [sym_storage_class_specifier] = STATE(3706), + [sym_type_qualifier] = STATE(3706), + [sym__type_specifier] = STATE(3826), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), + [sym_attributed_statement] = STATE(64), + [sym_labeled_statement] = STATE(64), + [sym_expression_statement] = STATE(64), + [sym_if_statement] = STATE(64), + [sym_switch_statement] = STATE(64), + [sym_case_statement] = STATE(64), + [sym_while_statement] = STATE(64), + [sym_do_statement] = STATE(64), + [sym_for_statement] = STATE(64), + [sym_return_statement] = STATE(64), + [sym_break_statement] = STATE(64), + [sym_continue_statement] = STATE(64), + [sym_goto_statement] = STATE(64), + [sym__expression] = STATE(4182), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7590), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym__empty_declaration] = STATE(64), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym__class_name] = STATE(6623), + [sym_virtual] = STATE(3706), + [sym_explicit_function_specifier] = STATE(2240), + [sym_dependent_type] = STATE(3723), + [sym_template_declaration] = STATE(64), + [sym_template_instantiation] = STATE(64), + [sym_operator_cast] = STATE(5937), + [sym__constructor_specifiers] = STATE(2240), + [sym_operator_cast_definition] = STATE(64), + [sym_operator_cast_declaration] = STATE(64), + [sym_constructor_or_destructor_definition] = STATE(64), + [sym_reference_declarator] = STATE(5640), + [sym_structured_binding_declarator] = STATE(5640), + [sym_template_type] = STATE(3921), + [sym_template_function] = STATE(4066), + [sym_namespace_definition] = STATE(64), + [sym_namespace_alias_definition] = STATE(64), + [sym_using_declaration] = STATE(64), + [sym_alias_declaration] = STATE(64), + [sym_static_assert_declaration] = STATE(64), + [sym_concept_definition] = STATE(64), + [sym_for_range_loop] = STATE(64), + [sym_co_return_statement] = STATE(64), + [sym_co_yield_statement] = STATE(64), + [sym_throw_statement] = STATE(64), + [sym_try_statement] = STATE(64), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_destructor_name] = STATE(5640), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5143), + [sym_qualified_identifier] = STATE(3249), + [sym_qualified_type_identifier] = STATE(3915), + [sym_qualified_operator_cast_identifier] = STATE(5937), + [sym_operator_name] = STATE(5640), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_preproc_if_repeat1] = STATE(64), + [aux_sym__declaration_specifiers_repeat1] = STATE(2514), + [aux_sym_attributed_declarator_repeat1] = STATE(309), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [aux_sym_operator_cast_definition_repeat1] = STATE(2240), + [sym_identifier] = ACTIONS(153), + [aux_sym_preproc_include_token1] = ACTIONS(155), + [aux_sym_preproc_def_token1] = ACTIONS(157), + [aux_sym_preproc_if_token1] = ACTIONS(161), + [aux_sym_preproc_ifdef_token1] = ACTIONS(163), + [aux_sym_preproc_ifdef_token2] = ACTIONS(163), + [sym_preproc_directive] = ACTIONS(165), + [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(23), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP_AMP] = ACTIONS(988), - [anon_sym_AMP] = ACTIONS(990), - [anon_sym_SEMI] = ACTIONS(33), - [anon_sym_typedef] = ACTIONS(35), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(992), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(982), - [anon_sym___cdecl] = ACTIONS(982), - [anon_sym___clrcall] = ACTIONS(982), - [anon_sym___stdcall] = ACTIONS(982), - [anon_sym___fastcall] = ACTIONS(982), - [anon_sym___thiscall] = ACTIONS(982), - [anon_sym___vectorcall] = ACTIONS(982), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(994), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(61), - [anon_sym_unsigned] = ACTIONS(61), - [anon_sym_long] = ACTIONS(61), - [anon_sym_short] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(63), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(73), - [anon_sym_else] = ACTIONS(982), - [anon_sym_switch] = ACTIONS(75), - [anon_sym_case] = ACTIONS(982), - [anon_sym_default] = ACTIONS(982), - [anon_sym_while] = ACTIONS(81), - [anon_sym_do] = ACTIONS(83), - [anon_sym_for] = ACTIONS(85), - [anon_sym_return] = ACTIONS(87), - [anon_sym_break] = ACTIONS(89), - [anon_sym_continue] = ACTIONS(91), - [anon_sym_goto] = ACTIONS(93), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(167), + [anon_sym_typedef] = ACTIONS(169), + [anon_sym_extern] = ACTIONS(171), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(45), + [anon_sym___cdecl] = ACTIONS(47), + [anon_sym___clrcall] = ACTIONS(47), + [anon_sym___stdcall] = ACTIONS(47), + [anon_sym___fastcall] = ACTIONS(47), + [anon_sym___thiscall] = ACTIONS(47), + [anon_sym___vectorcall] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(738), + [anon_sym_RBRACE] = ACTIONS(1084), + [anon_sym_LBRACK] = ACTIONS(51), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(179), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(181), + [anon_sym_switch] = ACTIONS(183), + [anon_sym_case] = ACTIONS(185), + [anon_sym_default] = ACTIONS(187), + [anon_sym_while] = ACTIONS(189), + [anon_sym_do] = ACTIONS(191), + [anon_sym_for] = ACTIONS(193), + [anon_sym_return] = ACTIONS(195), + [anon_sym_break] = ACTIONS(197), + [anon_sym_continue] = ACTIONS(199), + [anon_sym_goto] = ACTIONS(201), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(107), - [anon_sym_decltype] = ACTIONS(109), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_explicit] = ACTIONS(982), - [anon_sym_typename] = ACTIONS(115), - [anon_sym_template] = ACTIONS(996), - [anon_sym_operator] = ACTIONS(982), - [anon_sym_try] = ACTIONS(121), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(125), - [anon_sym_namespace] = ACTIONS(982), - [anon_sym_using] = ACTIONS(982), - [anon_sym_static_assert] = ACTIONS(982), - [anon_sym_concept] = ACTIONS(982), - [anon_sym_co_return] = ACTIONS(135), - [anon_sym_co_yield] = ACTIONS(137), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(113), + [anon_sym_decltype] = ACTIONS(115), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_explicit] = ACTIONS(119), + [anon_sym_typename] = ACTIONS(121), + [anon_sym_template] = ACTIONS(207), + [anon_sym_operator] = ACTIONS(125), + [anon_sym_try] = ACTIONS(209), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(211), + [anon_sym_namespace] = ACTIONS(213), + [anon_sym_using] = ACTIONS(215), + [anon_sym_static_assert] = ACTIONS(217), + [anon_sym_concept] = ACTIONS(219), + [anon_sym_co_return] = ACTIONS(221), + [anon_sym_co_yield] = ACTIONS(223), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [88] = { - [sym_declaration] = STATE(88), - [sym_type_definition] = STATE(88), - [sym__declaration_modifiers] = STATE(2179), - [sym__declaration_specifiers] = STATE(3979), - [sym_attribute_specifier] = STATE(2179), - [sym_attribute_declaration] = STATE(1186), - [sym_ms_declspec_modifier] = STATE(2179), - [sym_compound_statement] = STATE(88), - [sym_storage_class_specifier] = STATE(2179), - [sym_type_qualifier] = STATE(2179), - [sym__type_specifier] = STATE(3156), - [sym_sized_type_specifier] = STATE(3232), - [sym_enum_specifier] = STATE(3232), - [sym_struct_specifier] = STATE(3232), - [sym_union_specifier] = STATE(3232), - [sym_attributed_statement] = STATE(88), - [sym_labeled_statement] = STATE(88), - [sym_expression_statement] = STATE(88), - [sym_if_statement] = STATE(88), - [sym_switch_statement] = STATE(88), - [sym_while_statement] = STATE(88), - [sym_do_statement] = STATE(88), - [sym_for_statement] = STATE(88), - [sym_return_statement] = STATE(88), - [sym_break_statement] = STATE(88), - [sym_continue_statement] = STATE(88), - [sym_goto_statement] = STATE(88), - [sym__expression] = STATE(3502), - [sym_comma_expression] = STATE(6595), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_placeholder_type_specifier] = STATE(3232), - [sym_decltype_auto] = STATE(3279), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3232), - [sym__class_name] = STATE(5753), - [sym_virtual] = STATE(2179), - [sym_dependent_type] = STATE(3232), - [sym_template_type] = STATE(3608), - [sym_template_function] = STATE(3365), - [sym_for_range_loop] = STATE(88), - [sym_co_return_statement] = STATE(88), - [sym_co_yield_statement] = STATE(88), - [sym_throw_statement] = STATE(88), - [sym_try_statement] = STATE(88), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4580), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(3593), - [sym_user_defined_literal] = STATE(3365), - [aux_sym__declaration_specifiers_repeat1] = STATE(2179), - [aux_sym_attributed_declarator_repeat1] = STATE(206), - [aux_sym_sized_type_specifier_repeat1] = STATE(3171), - [aux_sym_case_statement_repeat1] = STATE(88), - [sym_identifier] = ACTIONS(1224), - [aux_sym_preproc_include_token1] = ACTIONS(1005), - [aux_sym_preproc_def_token1] = ACTIONS(1005), - [aux_sym_preproc_if_token1] = ACTIONS(1005), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1005), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1005), - [sym_preproc_directive] = ACTIONS(1005), - [anon_sym_LPAREN2] = ACTIONS(1007), - [anon_sym_BANG] = ACTIONS(1010), - [anon_sym_TILDE] = ACTIONS(1010), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_STAR] = ACTIONS(1016), - [anon_sym_AMP_AMP] = ACTIONS(1019), - [anon_sym_AMP] = ACTIONS(1021), - [anon_sym_SEMI] = ACTIONS(1227), - [anon_sym_typedef] = ACTIONS(1230), - [anon_sym_extern] = ACTIONS(1030), - [anon_sym___attribute__] = ACTIONS(1033), - [anon_sym_COLON_COLON] = ACTIONS(1036), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1039), - [anon_sym___declspec] = ACTIONS(1042), - [anon_sym___based] = ACTIONS(1005), - [anon_sym___cdecl] = ACTIONS(1005), - [anon_sym___clrcall] = ACTIONS(1005), - [anon_sym___stdcall] = ACTIONS(1005), - [anon_sym___fastcall] = ACTIONS(1005), - [anon_sym___thiscall] = ACTIONS(1005), - [anon_sym___vectorcall] = ACTIONS(1005), - [anon_sym_LBRACE] = ACTIONS(1233), - [anon_sym_RBRACE] = ACTIONS(1019), - [anon_sym_LBRACK] = ACTIONS(1048), - [anon_sym_static] = ACTIONS(1030), - [anon_sym_register] = ACTIONS(1030), - [anon_sym_inline] = ACTIONS(1030), - [anon_sym_thread_local] = ACTIONS(1030), - [anon_sym_const] = ACTIONS(1051), - [anon_sym_volatile] = ACTIONS(1051), - [anon_sym_restrict] = ACTIONS(1051), - [anon_sym__Atomic] = ACTIONS(1051), - [anon_sym_mutable] = ACTIONS(1051), - [anon_sym_constexpr] = ACTIONS(1051), - [anon_sym_constinit] = ACTIONS(1051), - [anon_sym_consteval] = ACTIONS(1051), - [anon_sym_signed] = ACTIONS(1054), - [anon_sym_unsigned] = ACTIONS(1054), - [anon_sym_long] = ACTIONS(1054), - [anon_sym_short] = ACTIONS(1054), - [sym_primitive_type] = ACTIONS(1057), - [anon_sym_enum] = ACTIONS(1060), - [anon_sym_class] = ACTIONS(1063), - [anon_sym_struct] = ACTIONS(1066), - [anon_sym_union] = ACTIONS(1069), - [anon_sym_if] = ACTIONS(1236), - [anon_sym_else] = ACTIONS(1005), - [anon_sym_switch] = ACTIONS(1239), - [anon_sym_case] = ACTIONS(1005), - [anon_sym_default] = ACTIONS(1005), - [anon_sym_while] = ACTIONS(1242), - [anon_sym_do] = ACTIONS(1245), - [anon_sym_for] = ACTIONS(1248), - [anon_sym_return] = ACTIONS(1251), - [anon_sym_break] = ACTIONS(1254), - [anon_sym_continue] = ACTIONS(1257), - [anon_sym_goto] = ACTIONS(1260), - [anon_sym_not] = ACTIONS(1013), - [anon_sym_compl] = ACTIONS(1013), - [anon_sym_DASH_DASH] = ACTIONS(1099), - [anon_sym_PLUS_PLUS] = ACTIONS(1099), - [anon_sym_sizeof] = ACTIONS(1102), - [sym_number_literal] = ACTIONS(1105), - [anon_sym_L_SQUOTE] = ACTIONS(1108), - [anon_sym_u_SQUOTE] = ACTIONS(1108), - [anon_sym_U_SQUOTE] = ACTIONS(1108), - [anon_sym_u8_SQUOTE] = ACTIONS(1108), - [anon_sym_SQUOTE] = ACTIONS(1108), - [anon_sym_L_DQUOTE] = ACTIONS(1111), - [anon_sym_u_DQUOTE] = ACTIONS(1111), - [anon_sym_U_DQUOTE] = ACTIONS(1111), - [anon_sym_u8_DQUOTE] = ACTIONS(1111), - [anon_sym_DQUOTE] = ACTIONS(1111), - [sym_true] = ACTIONS(1114), - [sym_false] = ACTIONS(1114), - [sym_null] = ACTIONS(1114), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1117), - [anon_sym_decltype] = ACTIONS(1120), - [anon_sym_virtual] = ACTIONS(1123), - [anon_sym_explicit] = ACTIONS(1005), - [anon_sym_typename] = ACTIONS(1126), - [anon_sym_template] = ACTIONS(1129), - [anon_sym_operator] = ACTIONS(1005), - [anon_sym_try] = ACTIONS(1263), - [anon_sym_delete] = ACTIONS(1135), - [anon_sym_throw] = ACTIONS(1266), - [anon_sym_namespace] = ACTIONS(1005), - [anon_sym_using] = ACTIONS(1005), - [anon_sym_static_assert] = ACTIONS(1005), - [anon_sym_concept] = ACTIONS(1005), - [anon_sym_co_return] = ACTIONS(1269), - [anon_sym_co_yield] = ACTIONS(1272), - [anon_sym_R_DQUOTE] = ACTIONS(1147), - [anon_sym_LR_DQUOTE] = ACTIONS(1147), - [anon_sym_uR_DQUOTE] = ACTIONS(1147), - [anon_sym_UR_DQUOTE] = ACTIONS(1147), - [anon_sym_u8R_DQUOTE] = ACTIONS(1147), - [anon_sym_co_await] = ACTIONS(1150), - [anon_sym_new] = ACTIONS(1153), - [anon_sym_requires] = ACTIONS(1156), - [sym_this] = ACTIONS(1114), - [sym_nullptr] = ACTIONS(1114), - }, - [89] = { - [sym_declaration] = STATE(93), - [sym_type_definition] = STATE(93), - [sym__declaration_modifiers] = STATE(2179), - [sym__declaration_specifiers] = STATE(3949), - [sym_attribute_specifier] = STATE(2179), - [sym_attribute_declaration] = STATE(1186), - [sym_ms_declspec_modifier] = STATE(2179), - [sym_compound_statement] = STATE(93), - [sym_storage_class_specifier] = STATE(2179), - [sym_type_qualifier] = STATE(2179), - [sym__type_specifier] = STATE(3156), - [sym_sized_type_specifier] = STATE(3232), - [sym_enum_specifier] = STATE(3232), - [sym_struct_specifier] = STATE(3232), - [sym_union_specifier] = STATE(3232), - [sym_attributed_statement] = STATE(93), - [sym_labeled_statement] = STATE(93), - [sym_expression_statement] = STATE(93), - [sym_if_statement] = STATE(93), - [sym_switch_statement] = STATE(93), - [sym_while_statement] = STATE(93), - [sym_do_statement] = STATE(93), - [sym_for_statement] = STATE(93), - [sym_return_statement] = STATE(93), - [sym_break_statement] = STATE(93), - [sym_continue_statement] = STATE(93), - [sym_goto_statement] = STATE(93), - [sym__expression] = STATE(3622), - [sym_comma_expression] = STATE(6125), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_placeholder_type_specifier] = STATE(3232), - [sym_decltype_auto] = STATE(3279), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3232), - [sym__class_name] = STATE(5753), - [sym_virtual] = STATE(2179), - [sym_dependent_type] = STATE(3232), - [sym_template_type] = STATE(3608), - [sym_template_function] = STATE(3365), - [sym_for_range_loop] = STATE(93), - [sym_co_return_statement] = STATE(93), - [sym_co_yield_statement] = STATE(93), - [sym_throw_statement] = STATE(93), - [sym_try_statement] = STATE(93), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4580), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(3593), - [sym_user_defined_literal] = STATE(3365), - [aux_sym__declaration_specifiers_repeat1] = STATE(2179), - [aux_sym_attributed_declarator_repeat1] = STATE(172), - [aux_sym_sized_type_specifier_repeat1] = STATE(3171), - [aux_sym_case_statement_repeat1] = STATE(93), - [ts_builtin_sym_end] = ACTIONS(1165), - [sym_identifier] = ACTIONS(1222), - [aux_sym_preproc_include_token1] = ACTIONS(1163), - [aux_sym_preproc_def_token1] = ACTIONS(1163), - [aux_sym_preproc_if_token1] = ACTIONS(1163), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1163), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1163), - [sym_preproc_directive] = ACTIONS(1163), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym_preproc_include] = STATE(64), + [sym_preproc_def] = STATE(64), + [sym_preproc_function_def] = STATE(64), + [sym_preproc_call] = STATE(64), + [sym_preproc_if] = STATE(64), + [sym_preproc_ifdef] = STATE(64), + [sym_function_definition] = STATE(64), + [sym_declaration] = STATE(64), + [sym_type_definition] = STATE(64), + [sym__declaration_modifiers] = STATE(3706), + [sym__declaration_specifiers] = STATE(4618), + [sym_linkage_specification] = STATE(64), + [sym_attribute_specifier] = STATE(3706), + [sym_attribute_declaration] = STATE(1427), + [sym_ms_declspec_modifier] = STATE(3706), + [sym_ms_based_modifier] = STATE(7654), + [sym_ms_call_modifier] = STATE(2462), + [sym__declarator] = STATE(5881), + [sym_parenthesized_declarator] = STATE(5640), + [sym_attributed_declarator] = STATE(5640), + [sym_pointer_declarator] = STATE(5640), + [sym_function_declarator] = STATE(5588), + [sym_array_declarator] = STATE(5640), + [sym_compound_statement] = STATE(64), + [sym_storage_class_specifier] = STATE(3706), + [sym_type_qualifier] = STATE(3706), + [sym__type_specifier] = STATE(3826), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), + [sym_attributed_statement] = STATE(64), + [sym_labeled_statement] = STATE(64), + [sym_expression_statement] = STATE(64), + [sym_if_statement] = STATE(64), + [sym_switch_statement] = STATE(64), + [sym_case_statement] = STATE(64), + [sym_while_statement] = STATE(64), + [sym_do_statement] = STATE(64), + [sym_for_statement] = STATE(64), + [sym_return_statement] = STATE(64), + [sym_break_statement] = STATE(64), + [sym_continue_statement] = STATE(64), + [sym_goto_statement] = STATE(64), + [sym__expression] = STATE(4182), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7590), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym__empty_declaration] = STATE(64), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym__class_name] = STATE(6623), + [sym_virtual] = STATE(3706), + [sym_explicit_function_specifier] = STATE(2240), + [sym_dependent_type] = STATE(3723), + [sym_template_declaration] = STATE(64), + [sym_template_instantiation] = STATE(64), + [sym_operator_cast] = STATE(5937), + [sym__constructor_specifiers] = STATE(2240), + [sym_operator_cast_definition] = STATE(64), + [sym_operator_cast_declaration] = STATE(64), + [sym_constructor_or_destructor_definition] = STATE(64), + [sym_reference_declarator] = STATE(5640), + [sym_structured_binding_declarator] = STATE(5640), + [sym_template_type] = STATE(3921), + [sym_template_function] = STATE(4066), + [sym_namespace_definition] = STATE(64), + [sym_namespace_alias_definition] = STATE(64), + [sym_using_declaration] = STATE(64), + [sym_alias_declaration] = STATE(64), + [sym_static_assert_declaration] = STATE(64), + [sym_concept_definition] = STATE(64), + [sym_for_range_loop] = STATE(64), + [sym_co_return_statement] = STATE(64), + [sym_co_yield_statement] = STATE(64), + [sym_throw_statement] = STATE(64), + [sym_try_statement] = STATE(64), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_destructor_name] = STATE(5640), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5143), + [sym_qualified_identifier] = STATE(3249), + [sym_qualified_type_identifier] = STATE(3915), + [sym_qualified_operator_cast_identifier] = STATE(5937), + [sym_operator_name] = STATE(5640), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_preproc_if_repeat1] = STATE(64), + [aux_sym__declaration_specifiers_repeat1] = STATE(2514), + [aux_sym_attributed_declarator_repeat1] = STATE(309), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [aux_sym_operator_cast_definition_repeat1] = STATE(2240), + [sym_identifier] = ACTIONS(153), + [aux_sym_preproc_include_token1] = ACTIONS(155), + [aux_sym_preproc_def_token1] = ACTIONS(157), + [aux_sym_preproc_if_token1] = ACTIONS(161), + [aux_sym_preproc_ifdef_token1] = ACTIONS(163), + [aux_sym_preproc_ifdef_token2] = ACTIONS(163), + [sym_preproc_directive] = ACTIONS(165), + [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(23), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP_AMP] = ACTIONS(1165), - [anon_sym_AMP] = ACTIONS(990), - [anon_sym_SEMI] = ACTIONS(33), - [anon_sym_typedef] = ACTIONS(35), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(992), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(1163), - [anon_sym___cdecl] = ACTIONS(1163), - [anon_sym___clrcall] = ACTIONS(1163), - [anon_sym___stdcall] = ACTIONS(1163), - [anon_sym___fastcall] = ACTIONS(1163), - [anon_sym___thiscall] = ACTIONS(1163), - [anon_sym___vectorcall] = ACTIONS(1163), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(994), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(61), - [anon_sym_unsigned] = ACTIONS(61), - [anon_sym_long] = ACTIONS(61), - [anon_sym_short] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(63), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(73), - [anon_sym_else] = ACTIONS(1163), - [anon_sym_switch] = ACTIONS(75), - [anon_sym_case] = ACTIONS(1163), - [anon_sym_default] = ACTIONS(1163), - [anon_sym_while] = ACTIONS(81), - [anon_sym_do] = ACTIONS(83), - [anon_sym_for] = ACTIONS(85), - [anon_sym_return] = ACTIONS(87), - [anon_sym_break] = ACTIONS(89), - [anon_sym_continue] = ACTIONS(91), - [anon_sym_goto] = ACTIONS(93), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(167), + [anon_sym_typedef] = ACTIONS(169), + [anon_sym_extern] = ACTIONS(171), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(45), + [anon_sym___cdecl] = ACTIONS(47), + [anon_sym___clrcall] = ACTIONS(47), + [anon_sym___stdcall] = ACTIONS(47), + [anon_sym___fastcall] = ACTIONS(47), + [anon_sym___thiscall] = ACTIONS(47), + [anon_sym___vectorcall] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(738), + [anon_sym_RBRACE] = ACTIONS(1086), + [anon_sym_LBRACK] = ACTIONS(51), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(179), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(181), + [anon_sym_switch] = ACTIONS(183), + [anon_sym_case] = ACTIONS(185), + [anon_sym_default] = ACTIONS(187), + [anon_sym_while] = ACTIONS(189), + [anon_sym_do] = ACTIONS(191), + [anon_sym_for] = ACTIONS(193), + [anon_sym_return] = ACTIONS(195), + [anon_sym_break] = ACTIONS(197), + [anon_sym_continue] = ACTIONS(199), + [anon_sym_goto] = ACTIONS(201), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(107), - [anon_sym_decltype] = ACTIONS(109), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_explicit] = ACTIONS(1163), - [anon_sym_typename] = ACTIONS(115), - [anon_sym_template] = ACTIONS(996), - [anon_sym_operator] = ACTIONS(1163), - [anon_sym_try] = ACTIONS(121), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(125), - [anon_sym_namespace] = ACTIONS(1163), - [anon_sym_using] = ACTIONS(1163), - [anon_sym_static_assert] = ACTIONS(1163), - [anon_sym_concept] = ACTIONS(1163), - [anon_sym_co_return] = ACTIONS(135), - [anon_sym_co_yield] = ACTIONS(137), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(113), + [anon_sym_decltype] = ACTIONS(115), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_explicit] = ACTIONS(119), + [anon_sym_typename] = ACTIONS(121), + [anon_sym_template] = ACTIONS(207), + [anon_sym_operator] = ACTIONS(125), + [anon_sym_try] = ACTIONS(209), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(211), + [anon_sym_namespace] = ACTIONS(213), + [anon_sym_using] = ACTIONS(215), + [anon_sym_static_assert] = ACTIONS(217), + [anon_sym_concept] = ACTIONS(219), + [anon_sym_co_return] = ACTIONS(221), + [anon_sym_co_yield] = ACTIONS(223), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, - [90] = { - [sym_declaration] = STATE(88), - [sym_type_definition] = STATE(88), - [sym__declaration_modifiers] = STATE(2179), - [sym__declaration_specifiers] = STATE(3979), - [sym_attribute_specifier] = STATE(2179), - [sym_attribute_declaration] = STATE(1186), - [sym_ms_declspec_modifier] = STATE(2179), - [sym_compound_statement] = STATE(88), - [sym_storage_class_specifier] = STATE(2179), - [sym_type_qualifier] = STATE(2179), - [sym__type_specifier] = STATE(3156), - [sym_sized_type_specifier] = STATE(3232), - [sym_enum_specifier] = STATE(3232), - [sym_struct_specifier] = STATE(3232), - [sym_union_specifier] = STATE(3232), - [sym_attributed_statement] = STATE(88), - [sym_labeled_statement] = STATE(88), - [sym_expression_statement] = STATE(88), - [sym_if_statement] = STATE(88), - [sym_switch_statement] = STATE(88), - [sym_while_statement] = STATE(88), - [sym_do_statement] = STATE(88), - [sym_for_statement] = STATE(88), - [sym_return_statement] = STATE(88), - [sym_break_statement] = STATE(88), - [sym_continue_statement] = STATE(88), - [sym_goto_statement] = STATE(88), - [sym__expression] = STATE(3502), - [sym_comma_expression] = STATE(6595), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_placeholder_type_specifier] = STATE(3232), - [sym_decltype_auto] = STATE(3279), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3232), - [sym__class_name] = STATE(5753), - [sym_virtual] = STATE(2179), - [sym_dependent_type] = STATE(3232), - [sym_template_type] = STATE(3608), - [sym_template_function] = STATE(3365), - [sym_for_range_loop] = STATE(88), - [sym_co_return_statement] = STATE(88), - [sym_co_yield_statement] = STATE(88), - [sym_throw_statement] = STATE(88), - [sym_try_statement] = STATE(88), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4580), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(3593), - [sym_user_defined_literal] = STATE(3365), - [aux_sym__declaration_specifiers_repeat1] = STATE(2179), - [aux_sym_attributed_declarator_repeat1] = STATE(206), - [aux_sym_sized_type_specifier_repeat1] = STATE(3171), - [aux_sym_case_statement_repeat1] = STATE(88), - [sym_identifier] = ACTIONS(1220), - [aux_sym_preproc_include_token1] = ACTIONS(998), - [aux_sym_preproc_def_token1] = ACTIONS(998), - [aux_sym_preproc_if_token1] = ACTIONS(998), - [aux_sym_preproc_ifdef_token1] = ACTIONS(998), - [aux_sym_preproc_ifdef_token2] = ACTIONS(998), - [sym_preproc_directive] = ACTIONS(998), - [anon_sym_LPAREN2] = ACTIONS(984), + [89] = { + [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_declaration] = STATE(80), + [sym_type_definition] = STATE(80), + [sym__declaration_modifiers] = STATE(3706), + [sym__declaration_specifiers] = STATE(4618), + [sym_linkage_specification] = STATE(80), + [sym_attribute_specifier] = STATE(3706), + [sym_attribute_declaration] = STATE(1427), + [sym_ms_declspec_modifier] = STATE(3706), + [sym_ms_based_modifier] = STATE(7654), + [sym_ms_call_modifier] = STATE(2462), + [sym__declarator] = STATE(5881), + [sym_parenthesized_declarator] = STATE(5640), + [sym_attributed_declarator] = STATE(5640), + [sym_pointer_declarator] = STATE(5640), + [sym_function_declarator] = STATE(5588), + [sym_array_declarator] = STATE(5640), + [sym_compound_statement] = STATE(80), + [sym_storage_class_specifier] = STATE(3706), + [sym_type_qualifier] = STATE(3706), + [sym__type_specifier] = STATE(3826), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), + [sym_attributed_statement] = STATE(80), + [sym_labeled_statement] = STATE(80), + [sym_expression_statement] = STATE(80), + [sym_if_statement] = STATE(80), + [sym_switch_statement] = STATE(80), + [sym_case_statement] = STATE(80), + [sym_while_statement] = STATE(80), + [sym_do_statement] = STATE(80), + [sym_for_statement] = STATE(80), + [sym_return_statement] = STATE(80), + [sym_break_statement] = STATE(80), + [sym_continue_statement] = STATE(80), + [sym_goto_statement] = STATE(80), + [sym__expression] = STATE(4182), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7590), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym__empty_declaration] = STATE(80), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym__class_name] = STATE(6623), + [sym_virtual] = STATE(3706), + [sym_explicit_function_specifier] = STATE(2240), + [sym_dependent_type] = STATE(3723), + [sym_template_declaration] = STATE(80), + [sym_template_instantiation] = STATE(80), + [sym_operator_cast] = STATE(5937), + [sym__constructor_specifiers] = STATE(2240), + [sym_operator_cast_definition] = STATE(80), + [sym_operator_cast_declaration] = STATE(80), + [sym_constructor_or_destructor_definition] = STATE(80), + [sym_reference_declarator] = STATE(5640), + [sym_structured_binding_declarator] = STATE(5640), + [sym_template_type] = STATE(3921), + [sym_template_function] = STATE(4066), + [sym_namespace_definition] = STATE(80), + [sym_namespace_alias_definition] = STATE(80), + [sym_using_declaration] = STATE(80), + [sym_alias_declaration] = STATE(80), + [sym_static_assert_declaration] = STATE(80), + [sym_concept_definition] = STATE(80), + [sym_for_range_loop] = STATE(80), + [sym_co_return_statement] = STATE(80), + [sym_co_yield_statement] = STATE(80), + [sym_throw_statement] = STATE(80), + [sym_try_statement] = STATE(80), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_destructor_name] = STATE(5640), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5143), + [sym_qualified_identifier] = STATE(3249), + [sym_qualified_type_identifier] = STATE(3915), + [sym_qualified_operator_cast_identifier] = STATE(5937), + [sym_operator_name] = STATE(5640), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_preproc_if_repeat1] = STATE(80), + [aux_sym__declaration_specifiers_repeat1] = STATE(2514), + [aux_sym_attributed_declarator_repeat1] = STATE(309), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [aux_sym_operator_cast_definition_repeat1] = STATE(2240), + [sym_identifier] = ACTIONS(153), + [aux_sym_preproc_include_token1] = ACTIONS(155), + [aux_sym_preproc_def_token1] = ACTIONS(157), + [aux_sym_preproc_if_token1] = ACTIONS(161), + [aux_sym_preproc_ifdef_token1] = ACTIONS(163), + [aux_sym_preproc_ifdef_token2] = ACTIONS(163), + [sym_preproc_directive] = ACTIONS(165), + [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(23), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP_AMP] = ACTIONS(1000), - [anon_sym_AMP] = ACTIONS(990), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_typedef] = ACTIONS(163), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(992), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(998), - [anon_sym___cdecl] = ACTIONS(998), - [anon_sym___clrcall] = ACTIONS(998), - [anon_sym___stdcall] = ACTIONS(998), - [anon_sym___fastcall] = ACTIONS(998), - [anon_sym___thiscall] = ACTIONS(998), - [anon_sym___vectorcall] = ACTIONS(998), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_RBRACE] = ACTIONS(1000), - [anon_sym_LBRACK] = ACTIONS(994), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(61), - [anon_sym_unsigned] = ACTIONS(61), - [anon_sym_long] = ACTIONS(61), - [anon_sym_short] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(63), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(175), - [anon_sym_else] = ACTIONS(998), - [anon_sym_switch] = ACTIONS(177), - [anon_sym_case] = ACTIONS(998), - [anon_sym_default] = ACTIONS(998), - [anon_sym_while] = ACTIONS(183), - [anon_sym_do] = ACTIONS(185), - [anon_sym_for] = ACTIONS(187), - [anon_sym_return] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), - [anon_sym_goto] = ACTIONS(195), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(167), + [anon_sym_typedef] = ACTIONS(169), + [anon_sym_extern] = ACTIONS(171), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(45), + [anon_sym___cdecl] = ACTIONS(47), + [anon_sym___clrcall] = ACTIONS(47), + [anon_sym___stdcall] = ACTIONS(47), + [anon_sym___fastcall] = ACTIONS(47), + [anon_sym___thiscall] = ACTIONS(47), + [anon_sym___vectorcall] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(738), + [anon_sym_RBRACE] = ACTIONS(1088), + [anon_sym_LBRACK] = ACTIONS(51), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(179), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(181), + [anon_sym_switch] = ACTIONS(183), + [anon_sym_case] = ACTIONS(185), + [anon_sym_default] = ACTIONS(187), + [anon_sym_while] = ACTIONS(189), + [anon_sym_do] = ACTIONS(191), + [anon_sym_for] = ACTIONS(193), + [anon_sym_return] = ACTIONS(195), + [anon_sym_break] = ACTIONS(197), + [anon_sym_continue] = ACTIONS(199), + [anon_sym_goto] = ACTIONS(201), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(107), - [anon_sym_decltype] = ACTIONS(109), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_explicit] = ACTIONS(998), - [anon_sym_typename] = ACTIONS(115), - [anon_sym_template] = ACTIONS(996), - [anon_sym_operator] = ACTIONS(998), - [anon_sym_try] = ACTIONS(201), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(203), - [anon_sym_namespace] = ACTIONS(998), - [anon_sym_using] = ACTIONS(998), - [anon_sym_static_assert] = ACTIONS(998), - [anon_sym_concept] = ACTIONS(998), - [anon_sym_co_return] = ACTIONS(213), - [anon_sym_co_yield] = ACTIONS(215), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(113), + [anon_sym_decltype] = ACTIONS(115), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_explicit] = ACTIONS(119), + [anon_sym_typename] = ACTIONS(121), + [anon_sym_template] = ACTIONS(207), + [anon_sym_operator] = ACTIONS(125), + [anon_sym_try] = ACTIONS(209), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(211), + [anon_sym_namespace] = ACTIONS(213), + [anon_sym_using] = ACTIONS(215), + [anon_sym_static_assert] = ACTIONS(217), + [anon_sym_concept] = ACTIONS(219), + [anon_sym_co_return] = ACTIONS(221), + [anon_sym_co_yield] = ACTIONS(223), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, - [91] = { + [90] = { + [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_declaration] = STATE(91), [sym_type_definition] = STATE(91), - [sym__declaration_modifiers] = STATE(2179), - [sym__declaration_specifiers] = STATE(3949), - [sym_attribute_specifier] = STATE(2179), - [sym_attribute_declaration] = STATE(1186), - [sym_ms_declspec_modifier] = STATE(2179), + [sym__declaration_modifiers] = STATE(3706), + [sym__declaration_specifiers] = STATE(4613), + [sym_linkage_specification] = STATE(91), + [sym_attribute_specifier] = STATE(3706), + [sym_attribute_declaration] = STATE(1427), + [sym_ms_declspec_modifier] = STATE(3706), + [sym_ms_based_modifier] = STATE(7654), + [sym_ms_call_modifier] = STATE(2381), + [sym__declarator] = STATE(5881), + [sym_parenthesized_declarator] = STATE(5640), + [sym_attributed_declarator] = STATE(5640), + [sym_pointer_declarator] = STATE(5640), + [sym_function_declarator] = STATE(5574), + [sym_array_declarator] = STATE(5640), [sym_compound_statement] = STATE(91), - [sym_storage_class_specifier] = STATE(2179), - [sym_type_qualifier] = STATE(2179), - [sym__type_specifier] = STATE(3156), - [sym_sized_type_specifier] = STATE(3232), - [sym_enum_specifier] = STATE(3232), - [sym_struct_specifier] = STATE(3232), - [sym_union_specifier] = STATE(3232), + [sym_storage_class_specifier] = STATE(3706), + [sym_type_qualifier] = STATE(3706), + [sym__type_specifier] = STATE(3809), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), [sym_attributed_statement] = STATE(91), [sym_labeled_statement] = STATE(91), - [sym_expression_statement] = STATE(91), + [sym__top_level_expression_statement] = STATE(91), [sym_if_statement] = STATE(91), [sym_switch_statement] = STATE(91), + [sym_case_statement] = STATE(91), [sym_while_statement] = STATE(91), [sym_do_statement] = STATE(91), [sym_for_statement] = STATE(91), @@ -44359,381 +63388,237 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(91), [sym_continue_statement] = STATE(91), [sym_goto_statement] = STATE(91), - [sym__expression] = STATE(3622), - [sym_comma_expression] = STATE(6125), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_placeholder_type_specifier] = STATE(3232), - [sym_decltype_auto] = STATE(3279), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3232), - [sym__class_name] = STATE(5753), - [sym_virtual] = STATE(2179), - [sym_dependent_type] = STATE(3232), - [sym_template_type] = STATE(3608), - [sym_template_function] = STATE(3365), + [sym__expression] = STATE(4512), + [sym__expression_not_binary] = STATE(4514), + [sym_conditional_expression] = STATE(4514), + [sym_assignment_expression] = STATE(4514), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(4514), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(4514), + [sym_cast_expression] = STATE(4514), + [sym_sizeof_expression] = STATE(4514), + [sym_offsetof_expression] = STATE(4514), + [sym_generic_expression] = STATE(4514), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(4514), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(4514), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(4514), + [sym__empty_declaration] = STATE(91), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym__class_name] = STATE(6623), + [sym_virtual] = STATE(3706), + [sym_explicit_function_specifier] = STATE(2250), + [sym_dependent_type] = STATE(3723), + [sym_template_declaration] = STATE(91), + [sym_template_instantiation] = STATE(91), + [sym_operator_cast] = STATE(5890), + [sym__constructor_specifiers] = STATE(2250), + [sym_operator_cast_definition] = STATE(91), + [sym_operator_cast_declaration] = STATE(91), + [sym_constructor_or_destructor_definition] = STATE(91), + [sym_reference_declarator] = STATE(5640), + [sym_structured_binding_declarator] = STATE(5640), + [sym_template_type] = STATE(3921), + [sym_template_function] = STATE(4066), + [sym_namespace_definition] = STATE(91), + [sym_namespace_alias_definition] = STATE(91), + [sym_using_declaration] = STATE(91), + [sym_alias_declaration] = STATE(91), + [sym_static_assert_declaration] = STATE(91), + [sym_concept_definition] = STATE(91), [sym_for_range_loop] = STATE(91), [sym_co_return_statement] = STATE(91), [sym_co_yield_statement] = STATE(91), [sym_throw_statement] = STATE(91), [sym_try_statement] = STATE(91), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4580), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(3593), - [sym_user_defined_literal] = STATE(3365), - [aux_sym__declaration_specifiers_repeat1] = STATE(2179), - [aux_sym_attributed_declarator_repeat1] = STATE(172), - [aux_sym_sized_type_specifier_repeat1] = STATE(3171), - [aux_sym_case_statement_repeat1] = STATE(91), - [ts_builtin_sym_end] = ACTIONS(1019), - [sym_identifier] = ACTIONS(1275), - [aux_sym_preproc_include_token1] = ACTIONS(1005), - [aux_sym_preproc_def_token1] = ACTIONS(1005), - [aux_sym_preproc_if_token1] = ACTIONS(1005), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1005), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1005), - [sym_preproc_directive] = ACTIONS(1005), - [anon_sym_LPAREN2] = ACTIONS(1007), - [anon_sym_BANG] = ACTIONS(1010), - [anon_sym_TILDE] = ACTIONS(1010), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_STAR] = ACTIONS(1016), - [anon_sym_AMP_AMP] = ACTIONS(1019), - [anon_sym_AMP] = ACTIONS(1021), - [anon_sym_SEMI] = ACTIONS(1278), - [anon_sym_typedef] = ACTIONS(1281), - [anon_sym_extern] = ACTIONS(1030), - [anon_sym___attribute__] = ACTIONS(1033), - [anon_sym_COLON_COLON] = ACTIONS(1036), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1039), - [anon_sym___declspec] = ACTIONS(1042), - [anon_sym___based] = ACTIONS(1005), - [anon_sym___cdecl] = ACTIONS(1005), - [anon_sym___clrcall] = ACTIONS(1005), - [anon_sym___stdcall] = ACTIONS(1005), - [anon_sym___fastcall] = ACTIONS(1005), - [anon_sym___thiscall] = ACTIONS(1005), - [anon_sym___vectorcall] = ACTIONS(1005), - [anon_sym_LBRACE] = ACTIONS(1284), - [anon_sym_LBRACK] = ACTIONS(1048), - [anon_sym_static] = ACTIONS(1030), - [anon_sym_register] = ACTIONS(1030), - [anon_sym_inline] = ACTIONS(1030), - [anon_sym_thread_local] = ACTIONS(1030), - [anon_sym_const] = ACTIONS(1051), - [anon_sym_volatile] = ACTIONS(1051), - [anon_sym_restrict] = ACTIONS(1051), - [anon_sym__Atomic] = ACTIONS(1051), - [anon_sym_mutable] = ACTIONS(1051), - [anon_sym_constexpr] = ACTIONS(1051), - [anon_sym_constinit] = ACTIONS(1051), - [anon_sym_consteval] = ACTIONS(1051), - [anon_sym_signed] = ACTIONS(1054), - [anon_sym_unsigned] = ACTIONS(1054), - [anon_sym_long] = ACTIONS(1054), - [anon_sym_short] = ACTIONS(1054), - [sym_primitive_type] = ACTIONS(1057), - [anon_sym_enum] = ACTIONS(1060), - [anon_sym_class] = ACTIONS(1063), - [anon_sym_struct] = ACTIONS(1066), - [anon_sym_union] = ACTIONS(1069), - [anon_sym_if] = ACTIONS(1287), - [anon_sym_else] = ACTIONS(1005), - [anon_sym_switch] = ACTIONS(1290), - [anon_sym_case] = ACTIONS(1005), - [anon_sym_default] = ACTIONS(1005), - [anon_sym_while] = ACTIONS(1293), - [anon_sym_do] = ACTIONS(1296), - [anon_sym_for] = ACTIONS(1299), - [anon_sym_return] = ACTIONS(1302), - [anon_sym_break] = ACTIONS(1305), - [anon_sym_continue] = ACTIONS(1308), - [anon_sym_goto] = ACTIONS(1311), - [anon_sym_not] = ACTIONS(1013), - [anon_sym_compl] = ACTIONS(1013), - [anon_sym_DASH_DASH] = ACTIONS(1099), - [anon_sym_PLUS_PLUS] = ACTIONS(1099), - [anon_sym_sizeof] = ACTIONS(1102), - [sym_number_literal] = ACTIONS(1105), - [anon_sym_L_SQUOTE] = ACTIONS(1108), - [anon_sym_u_SQUOTE] = ACTIONS(1108), - [anon_sym_U_SQUOTE] = ACTIONS(1108), - [anon_sym_u8_SQUOTE] = ACTIONS(1108), - [anon_sym_SQUOTE] = ACTIONS(1108), - [anon_sym_L_DQUOTE] = ACTIONS(1111), - [anon_sym_u_DQUOTE] = ACTIONS(1111), - [anon_sym_U_DQUOTE] = ACTIONS(1111), - [anon_sym_u8_DQUOTE] = ACTIONS(1111), - [anon_sym_DQUOTE] = ACTIONS(1111), - [sym_true] = ACTIONS(1114), - [sym_false] = ACTIONS(1114), - [sym_null] = ACTIONS(1114), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1117), - [anon_sym_decltype] = ACTIONS(1120), - [anon_sym_virtual] = ACTIONS(1123), - [anon_sym_explicit] = ACTIONS(1005), - [anon_sym_typename] = ACTIONS(1126), - [anon_sym_template] = ACTIONS(1129), - [anon_sym_operator] = ACTIONS(1005), - [anon_sym_try] = ACTIONS(1314), - [anon_sym_delete] = ACTIONS(1135), - [anon_sym_throw] = ACTIONS(1317), - [anon_sym_namespace] = ACTIONS(1005), - [anon_sym_using] = ACTIONS(1005), - [anon_sym_static_assert] = ACTIONS(1005), - [anon_sym_concept] = ACTIONS(1005), - [anon_sym_co_return] = ACTIONS(1320), - [anon_sym_co_yield] = ACTIONS(1323), - [anon_sym_R_DQUOTE] = ACTIONS(1147), - [anon_sym_LR_DQUOTE] = ACTIONS(1147), - [anon_sym_uR_DQUOTE] = ACTIONS(1147), - [anon_sym_UR_DQUOTE] = ACTIONS(1147), - [anon_sym_u8R_DQUOTE] = ACTIONS(1147), - [anon_sym_co_await] = ACTIONS(1150), - [anon_sym_new] = ACTIONS(1153), - [anon_sym_requires] = ACTIONS(1156), - [sym_this] = ACTIONS(1114), - [sym_nullptr] = ACTIONS(1114), - }, - [92] = { - [sym_declaration] = STATE(84), - [sym_type_definition] = STATE(84), - [sym__declaration_modifiers] = STATE(2179), - [sym__declaration_specifiers] = STATE(3979), - [sym_attribute_specifier] = STATE(2179), - [sym_attribute_declaration] = STATE(1186), - [sym_ms_declspec_modifier] = STATE(2179), - [sym_compound_statement] = STATE(84), - [sym_storage_class_specifier] = STATE(2179), - [sym_type_qualifier] = STATE(2179), - [sym__type_specifier] = STATE(3156), - [sym_sized_type_specifier] = STATE(3232), - [sym_enum_specifier] = STATE(3232), - [sym_struct_specifier] = STATE(3232), - [sym_union_specifier] = STATE(3232), - [sym_attributed_statement] = STATE(84), - [sym_labeled_statement] = STATE(84), - [sym_expression_statement] = STATE(84), - [sym_if_statement] = STATE(84), - [sym_switch_statement] = STATE(84), - [sym_while_statement] = STATE(84), - [sym_do_statement] = STATE(84), - [sym_for_statement] = STATE(84), - [sym_return_statement] = STATE(84), - [sym_break_statement] = STATE(84), - [sym_continue_statement] = STATE(84), - [sym_goto_statement] = STATE(84), - [sym__expression] = STATE(3502), - [sym_comma_expression] = STATE(6595), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_placeholder_type_specifier] = STATE(3232), - [sym_decltype_auto] = STATE(3279), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3232), - [sym__class_name] = STATE(5753), - [sym_virtual] = STATE(2179), - [sym_dependent_type] = STATE(3232), - [sym_template_type] = STATE(3608), - [sym_template_function] = STATE(3365), - [sym_for_range_loop] = STATE(84), - [sym_co_return_statement] = STATE(84), - [sym_co_yield_statement] = STATE(84), - [sym_throw_statement] = STATE(84), - [sym_try_statement] = STATE(84), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4580), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(3593), - [sym_user_defined_literal] = STATE(3365), - [aux_sym__declaration_specifiers_repeat1] = STATE(2179), - [aux_sym_attributed_declarator_repeat1] = STATE(206), - [aux_sym_sized_type_specifier_repeat1] = STATE(3171), - [aux_sym_case_statement_repeat1] = STATE(84), - [sym_identifier] = ACTIONS(1220), - [aux_sym_preproc_include_token1] = ACTIONS(1159), - [aux_sym_preproc_def_token1] = ACTIONS(1159), - [aux_sym_preproc_if_token1] = ACTIONS(1159), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1159), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1159), - [sym_preproc_directive] = ACTIONS(1159), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(4514), + [sym_new_expression] = STATE(4514), + [sym_delete_expression] = STATE(4514), + [sym_requires_clause] = STATE(4514), + [sym_requires_expression] = STATE(4514), + [sym_lambda_expression] = STATE(4514), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(4514), + [sym_parameter_pack_expansion] = STATE(4514), + [sym_destructor_name] = STATE(5640), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5143), + [sym_qualified_identifier] = STATE(3249), + [sym_qualified_type_identifier] = STATE(3915), + [sym_qualified_operator_cast_identifier] = STATE(5890), + [sym_operator_name] = STATE(5640), + [sym_user_defined_literal] = STATE(4514), + [aux_sym_translation_unit_repeat1] = STATE(91), + [aux_sym__declaration_specifiers_repeat1] = STATE(2514), + [aux_sym_attributed_declarator_repeat1] = STATE(260), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [aux_sym_operator_cast_definition_repeat1] = STATE(2250), + [ts_builtin_sym_end] = ACTIONS(1090), + [sym_identifier] = ACTIONS(7), + [aux_sym_preproc_include_token1] = ACTIONS(9), + [aux_sym_preproc_def_token1] = ACTIONS(11), + [aux_sym_preproc_if_token1] = ACTIONS(13), + [aux_sym_preproc_ifdef_token1] = ACTIONS(15), + [aux_sym_preproc_ifdef_token2] = ACTIONS(15), + [sym_preproc_directive] = ACTIONS(17), + [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(23), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP_AMP] = ACTIONS(1161), - [anon_sym_AMP] = ACTIONS(990), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_typedef] = ACTIONS(163), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(992), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(1159), - [anon_sym___cdecl] = ACTIONS(1159), - [anon_sym___clrcall] = ACTIONS(1159), - [anon_sym___stdcall] = ACTIONS(1159), - [anon_sym___fastcall] = ACTIONS(1159), - [anon_sym___thiscall] = ACTIONS(1159), - [anon_sym___vectorcall] = ACTIONS(1159), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_RBRACE] = ACTIONS(1161), - [anon_sym_LBRACK] = ACTIONS(994), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_typedef] = ACTIONS(33), + [anon_sym_extern] = ACTIONS(35), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(41), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(45), + [anon_sym___cdecl] = ACTIONS(47), + [anon_sym___clrcall] = ACTIONS(47), + [anon_sym___stdcall] = ACTIONS(47), + [anon_sym___fastcall] = ACTIONS(47), + [anon_sym___thiscall] = ACTIONS(47), + [anon_sym___vectorcall] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACK] = ACTIONS(51), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(61), - [anon_sym_unsigned] = ACTIONS(61), - [anon_sym_long] = ACTIONS(61), - [anon_sym_short] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(63), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(175), - [anon_sym_else] = ACTIONS(1159), - [anon_sym_switch] = ACTIONS(177), - [anon_sym_case] = ACTIONS(1159), - [anon_sym_default] = ACTIONS(1159), - [anon_sym_while] = ACTIONS(183), - [anon_sym_do] = ACTIONS(185), - [anon_sym_for] = ACTIONS(187), - [anon_sym_return] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), - [anon_sym_goto] = ACTIONS(195), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(71), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_case] = ACTIONS(75), + [anon_sym_default] = ACTIONS(77), + [anon_sym_while] = ACTIONS(79), + [anon_sym_do] = ACTIONS(81), + [anon_sym_for] = ACTIONS(83), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(107), - [anon_sym_decltype] = ACTIONS(109), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_explicit] = ACTIONS(1159), - [anon_sym_typename] = ACTIONS(115), - [anon_sym_template] = ACTIONS(996), - [anon_sym_operator] = ACTIONS(1159), - [anon_sym_try] = ACTIONS(201), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(203), - [anon_sym_namespace] = ACTIONS(1159), - [anon_sym_using] = ACTIONS(1159), - [anon_sym_static_assert] = ACTIONS(1159), - [anon_sym_concept] = ACTIONS(1159), - [anon_sym_co_return] = ACTIONS(213), - [anon_sym_co_yield] = ACTIONS(215), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(109), + [sym_false] = ACTIONS(109), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(113), + [anon_sym_decltype] = ACTIONS(115), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_explicit] = ACTIONS(119), + [anon_sym_typename] = ACTIONS(121), + [anon_sym_template] = ACTIONS(123), + [anon_sym_operator] = ACTIONS(125), + [anon_sym_try] = ACTIONS(127), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(131), + [anon_sym_namespace] = ACTIONS(133), + [anon_sym_using] = ACTIONS(135), + [anon_sym_static_assert] = ACTIONS(137), + [anon_sym_concept] = ACTIONS(139), + [anon_sym_co_return] = ACTIONS(141), + [anon_sym_co_yield] = ACTIONS(143), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(109), }, - [93] = { + [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_declaration] = STATE(91), [sym_type_definition] = STATE(91), - [sym__declaration_modifiers] = STATE(2179), - [sym__declaration_specifiers] = STATE(3949), - [sym_attribute_specifier] = STATE(2179), - [sym_attribute_declaration] = STATE(1186), - [sym_ms_declspec_modifier] = STATE(2179), + [sym__declaration_modifiers] = STATE(3706), + [sym__declaration_specifiers] = STATE(4613), + [sym_linkage_specification] = STATE(91), + [sym_attribute_specifier] = STATE(3706), + [sym_attribute_declaration] = STATE(1427), + [sym_ms_declspec_modifier] = STATE(3706), + [sym_ms_based_modifier] = STATE(7654), + [sym_ms_call_modifier] = STATE(2381), + [sym__declarator] = STATE(5881), + [sym_parenthesized_declarator] = STATE(5640), + [sym_attributed_declarator] = STATE(5640), + [sym_pointer_declarator] = STATE(5640), + [sym_function_declarator] = STATE(5574), + [sym_array_declarator] = STATE(5640), [sym_compound_statement] = STATE(91), - [sym_storage_class_specifier] = STATE(2179), - [sym_type_qualifier] = STATE(2179), - [sym__type_specifier] = STATE(3156), - [sym_sized_type_specifier] = STATE(3232), - [sym_enum_specifier] = STATE(3232), - [sym_struct_specifier] = STATE(3232), - [sym_union_specifier] = STATE(3232), + [sym_storage_class_specifier] = STATE(3706), + [sym_type_qualifier] = STATE(3706), + [sym__type_specifier] = STATE(3809), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), [sym_attributed_statement] = STATE(91), [sym_labeled_statement] = STATE(91), - [sym_expression_statement] = STATE(91), + [sym__top_level_expression_statement] = STATE(91), [sym_if_statement] = STATE(91), [sym_switch_statement] = STATE(91), + [sym_case_statement] = STATE(91), [sym_while_statement] = STATE(91), [sym_do_statement] = STATE(91), [sym_for_statement] = STATE(91), @@ -44741,758 +63626,1455 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(91), [sym_continue_statement] = STATE(91), [sym_goto_statement] = STATE(91), - [sym__expression] = STATE(3622), - [sym_comma_expression] = STATE(6125), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_placeholder_type_specifier] = STATE(3232), - [sym_decltype_auto] = STATE(3279), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3232), - [sym__class_name] = STATE(5753), - [sym_virtual] = STATE(2179), - [sym_dependent_type] = STATE(3232), - [sym_template_type] = STATE(3608), - [sym_template_function] = STATE(3365), + [sym__expression] = STATE(4512), + [sym__expression_not_binary] = STATE(4514), + [sym_conditional_expression] = STATE(4514), + [sym_assignment_expression] = STATE(4514), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(4514), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(4514), + [sym_cast_expression] = STATE(4514), + [sym_sizeof_expression] = STATE(4514), + [sym_offsetof_expression] = STATE(4514), + [sym_generic_expression] = STATE(4514), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(4514), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(4514), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(4514), + [sym__empty_declaration] = STATE(91), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym__class_name] = STATE(6623), + [sym_virtual] = STATE(3706), + [sym_explicit_function_specifier] = STATE(2250), + [sym_dependent_type] = STATE(3723), + [sym_template_declaration] = STATE(91), + [sym_template_instantiation] = STATE(91), + [sym_operator_cast] = STATE(5890), + [sym__constructor_specifiers] = STATE(2250), + [sym_operator_cast_definition] = STATE(91), + [sym_operator_cast_declaration] = STATE(91), + [sym_constructor_or_destructor_definition] = STATE(91), + [sym_reference_declarator] = STATE(5640), + [sym_structured_binding_declarator] = STATE(5640), + [sym_template_type] = STATE(3921), + [sym_template_function] = STATE(4066), + [sym_namespace_definition] = STATE(91), + [sym_namespace_alias_definition] = STATE(91), + [sym_using_declaration] = STATE(91), + [sym_alias_declaration] = STATE(91), + [sym_static_assert_declaration] = STATE(91), + [sym_concept_definition] = STATE(91), [sym_for_range_loop] = STATE(91), [sym_co_return_statement] = STATE(91), [sym_co_yield_statement] = STATE(91), [sym_throw_statement] = STATE(91), [sym_try_statement] = STATE(91), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4580), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(3593), - [sym_user_defined_literal] = STATE(3365), - [aux_sym__declaration_specifiers_repeat1] = STATE(2179), - [aux_sym_attributed_declarator_repeat1] = STATE(172), - [aux_sym_sized_type_specifier_repeat1] = STATE(3171), - [aux_sym_case_statement_repeat1] = STATE(91), - [ts_builtin_sym_end] = ACTIONS(1000), - [sym_identifier] = ACTIONS(1222), - [aux_sym_preproc_include_token1] = ACTIONS(998), - [aux_sym_preproc_def_token1] = ACTIONS(998), - [aux_sym_preproc_if_token1] = ACTIONS(998), - [aux_sym_preproc_ifdef_token1] = ACTIONS(998), - [aux_sym_preproc_ifdef_token2] = ACTIONS(998), - [sym_preproc_directive] = ACTIONS(998), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(4514), + [sym_new_expression] = STATE(4514), + [sym_delete_expression] = STATE(4514), + [sym_requires_clause] = STATE(4514), + [sym_requires_expression] = STATE(4514), + [sym_lambda_expression] = STATE(4514), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(4514), + [sym_parameter_pack_expansion] = STATE(4514), + [sym_destructor_name] = STATE(5640), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5143), + [sym_qualified_identifier] = STATE(3249), + [sym_qualified_type_identifier] = STATE(3915), + [sym_qualified_operator_cast_identifier] = STATE(5890), + [sym_operator_name] = STATE(5640), + [sym_user_defined_literal] = STATE(4514), + [aux_sym_translation_unit_repeat1] = STATE(91), + [aux_sym__declaration_specifiers_repeat1] = STATE(2514), + [aux_sym_attributed_declarator_repeat1] = STATE(260), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [aux_sym_operator_cast_definition_repeat1] = STATE(2250), + [ts_builtin_sym_end] = ACTIONS(1092), + [sym_identifier] = ACTIONS(1094), + [aux_sym_preproc_include_token1] = ACTIONS(1097), + [aux_sym_preproc_def_token1] = ACTIONS(1100), + [aux_sym_preproc_if_token1] = ACTIONS(1103), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1106), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1106), + [sym_preproc_directive] = ACTIONS(1109), + [anon_sym_LPAREN2] = ACTIONS(1112), + [anon_sym_BANG] = ACTIONS(1115), + [anon_sym_TILDE] = ACTIONS(1118), + [anon_sym_DASH] = ACTIONS(1121), + [anon_sym_PLUS] = ACTIONS(1121), + [anon_sym_STAR] = ACTIONS(1124), + [anon_sym_AMP_AMP] = ACTIONS(1127), + [anon_sym_AMP] = ACTIONS(1130), + [anon_sym_typedef] = ACTIONS(1133), + [anon_sym_extern] = ACTIONS(1136), + [anon_sym___attribute__] = ACTIONS(1139), + [anon_sym_COLON_COLON] = ACTIONS(1142), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1145), + [anon_sym___declspec] = ACTIONS(1148), + [anon_sym___based] = ACTIONS(1151), + [anon_sym___cdecl] = ACTIONS(1154), + [anon_sym___clrcall] = ACTIONS(1154), + [anon_sym___stdcall] = ACTIONS(1154), + [anon_sym___fastcall] = ACTIONS(1154), + [anon_sym___thiscall] = ACTIONS(1154), + [anon_sym___vectorcall] = ACTIONS(1154), + [anon_sym_LBRACE] = ACTIONS(1157), + [anon_sym_LBRACK] = ACTIONS(1160), + [anon_sym_static] = ACTIONS(1163), + [anon_sym_register] = ACTIONS(1163), + [anon_sym_inline] = ACTIONS(1166), + [anon_sym_thread_local] = ACTIONS(1163), + [anon_sym_const] = ACTIONS(1169), + [anon_sym_constexpr] = ACTIONS(1169), + [anon_sym_volatile] = ACTIONS(1169), + [anon_sym_restrict] = ACTIONS(1169), + [anon_sym___restrict__] = ACTIONS(1169), + [anon_sym__Atomic] = ACTIONS(1169), + [anon_sym__Noreturn] = ACTIONS(1169), + [anon_sym_noreturn] = ACTIONS(1169), + [anon_sym_mutable] = ACTIONS(1169), + [anon_sym_constinit] = ACTIONS(1169), + [anon_sym_consteval] = ACTIONS(1169), + [anon_sym_signed] = ACTIONS(1172), + [anon_sym_unsigned] = ACTIONS(1172), + [anon_sym_long] = ACTIONS(1172), + [anon_sym_short] = ACTIONS(1172), + [sym_primitive_type] = ACTIONS(1175), + [anon_sym_enum] = ACTIONS(1178), + [anon_sym_class] = ACTIONS(1181), + [anon_sym_struct] = ACTIONS(1184), + [anon_sym_union] = ACTIONS(1187), + [anon_sym_if] = ACTIONS(1190), + [anon_sym_switch] = ACTIONS(1193), + [anon_sym_case] = ACTIONS(1196), + [anon_sym_default] = ACTIONS(1199), + [anon_sym_while] = ACTIONS(1202), + [anon_sym_do] = ACTIONS(1205), + [anon_sym_for] = ACTIONS(1208), + [anon_sym_return] = ACTIONS(1211), + [anon_sym_break] = ACTIONS(1214), + [anon_sym_continue] = ACTIONS(1217), + [anon_sym_goto] = ACTIONS(1220), + [anon_sym_not] = ACTIONS(1121), + [anon_sym_compl] = ACTIONS(1121), + [anon_sym_DASH_DASH] = ACTIONS(1223), + [anon_sym_PLUS_PLUS] = ACTIONS(1223), + [anon_sym_sizeof] = ACTIONS(1226), + [anon_sym_offsetof] = ACTIONS(1229), + [anon_sym__Generic] = ACTIONS(1232), + [anon_sym_asm] = ACTIONS(1235), + [anon_sym___asm__] = ACTIONS(1235), + [sym_number_literal] = ACTIONS(1238), + [anon_sym_L_SQUOTE] = ACTIONS(1241), + [anon_sym_u_SQUOTE] = ACTIONS(1241), + [anon_sym_U_SQUOTE] = ACTIONS(1241), + [anon_sym_u8_SQUOTE] = ACTIONS(1241), + [anon_sym_SQUOTE] = ACTIONS(1241), + [anon_sym_L_DQUOTE] = ACTIONS(1244), + [anon_sym_u_DQUOTE] = ACTIONS(1244), + [anon_sym_U_DQUOTE] = ACTIONS(1244), + [anon_sym_u8_DQUOTE] = ACTIONS(1244), + [anon_sym_DQUOTE] = ACTIONS(1244), + [sym_true] = ACTIONS(1247), + [sym_false] = ACTIONS(1247), + [anon_sym_NULL] = ACTIONS(1250), + [anon_sym_nullptr] = ACTIONS(1250), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1253), + [anon_sym_decltype] = ACTIONS(1256), + [anon_sym_virtual] = ACTIONS(1259), + [anon_sym_explicit] = ACTIONS(1262), + [anon_sym_typename] = ACTIONS(1265), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_operator] = ACTIONS(1271), + [anon_sym_try] = ACTIONS(1274), + [anon_sym_delete] = ACTIONS(1277), + [anon_sym_throw] = ACTIONS(1280), + [anon_sym_namespace] = ACTIONS(1283), + [anon_sym_using] = ACTIONS(1286), + [anon_sym_static_assert] = ACTIONS(1289), + [anon_sym_concept] = ACTIONS(1292), + [anon_sym_co_return] = ACTIONS(1295), + [anon_sym_co_yield] = ACTIONS(1298), + [anon_sym_R_DQUOTE] = ACTIONS(1301), + [anon_sym_LR_DQUOTE] = ACTIONS(1301), + [anon_sym_uR_DQUOTE] = ACTIONS(1301), + [anon_sym_UR_DQUOTE] = ACTIONS(1301), + [anon_sym_u8R_DQUOTE] = ACTIONS(1301), + [anon_sym_co_await] = ACTIONS(1304), + [anon_sym_new] = ACTIONS(1307), + [anon_sym_requires] = ACTIONS(1310), + [sym_this] = ACTIONS(1247), + }, + [92] = { + [sym_declaration] = STATE(94), + [sym_type_definition] = STATE(94), + [sym__declaration_modifiers] = STATE(2514), + [sym__declaration_specifiers] = STATE(4590), + [sym_attribute_specifier] = STATE(2514), + [sym_attribute_declaration] = STATE(1583), + [sym_ms_declspec_modifier] = STATE(2514), + [sym_compound_statement] = STATE(94), + [sym_storage_class_specifier] = STATE(2514), + [sym_type_qualifier] = STATE(2514), + [sym__type_specifier] = STATE(3633), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), + [sym_attributed_statement] = STATE(94), + [sym_labeled_statement] = STATE(94), + [sym_expression_statement] = STATE(94), + [sym_if_statement] = STATE(94), + [sym_switch_statement] = STATE(94), + [sym_while_statement] = STATE(94), + [sym_do_statement] = STATE(94), + [sym_for_statement] = STATE(94), + [sym_return_statement] = STATE(94), + [sym_break_statement] = STATE(94), + [sym_continue_statement] = STATE(94), + [sym_goto_statement] = STATE(94), + [sym__expression] = STATE(4160), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7618), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym__class_name] = STATE(6623), + [sym_virtual] = STATE(2514), + [sym_dependent_type] = STATE(3723), + [sym_template_type] = STATE(3921), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(94), + [sym_co_return_statement] = STATE(94), + [sym_co_yield_statement] = STATE(94), + [sym_throw_statement] = STATE(94), + [sym_try_statement] = STATE(94), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5263), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(3915), + [sym_user_defined_literal] = STATE(3976), + [aux_sym__declaration_specifiers_repeat1] = STATE(2514), + [aux_sym_attributed_declarator_repeat1] = STATE(244), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [aux_sym_case_statement_repeat1] = STATE(94), + [sym_identifier] = ACTIONS(1313), + [aux_sym_preproc_include_token1] = ACTIONS(1315), + [aux_sym_preproc_def_token1] = ACTIONS(1315), + [aux_sym_preproc_if_token1] = ACTIONS(1315), + [aux_sym_preproc_if_token2] = ACTIONS(1315), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1315), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1315), + [aux_sym_preproc_else_token1] = ACTIONS(1315), + [aux_sym_preproc_elif_token1] = ACTIONS(1315), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1315), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1315), + [sym_preproc_directive] = ACTIONS(1315), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP_AMP] = ACTIONS(1000), - [anon_sym_AMP] = ACTIONS(990), - [anon_sym_SEMI] = ACTIONS(33), - [anon_sym_typedef] = ACTIONS(35), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(992), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(998), - [anon_sym___cdecl] = ACTIONS(998), - [anon_sym___clrcall] = ACTIONS(998), - [anon_sym___stdcall] = ACTIONS(998), - [anon_sym___fastcall] = ACTIONS(998), - [anon_sym___thiscall] = ACTIONS(998), - [anon_sym___vectorcall] = ACTIONS(998), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(994), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(61), - [anon_sym_unsigned] = ACTIONS(61), - [anon_sym_long] = ACTIONS(61), - [anon_sym_short] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(63), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(73), - [anon_sym_else] = ACTIONS(998), - [anon_sym_switch] = ACTIONS(75), - [anon_sym_case] = ACTIONS(998), - [anon_sym_default] = ACTIONS(998), - [anon_sym_while] = ACTIONS(81), - [anon_sym_do] = ACTIONS(83), - [anon_sym_for] = ACTIONS(85), - [anon_sym_return] = ACTIONS(87), - [anon_sym_break] = ACTIONS(89), - [anon_sym_continue] = ACTIONS(91), - [anon_sym_goto] = ACTIONS(93), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP_AMP] = ACTIONS(1321), + [anon_sym_AMP] = ACTIONS(1323), + [anon_sym_SEMI] = ACTIONS(245), + [anon_sym_typedef] = ACTIONS(247), + [anon_sym_extern] = ACTIONS(53), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(1315), + [anon_sym___cdecl] = ACTIONS(1315), + [anon_sym___clrcall] = ACTIONS(1315), + [anon_sym___stdcall] = ACTIONS(1315), + [anon_sym___fastcall] = ACTIONS(1315), + [anon_sym___thiscall] = ACTIONS(1315), + [anon_sym___vectorcall] = ACTIONS(1315), + [anon_sym_LBRACE] = ACTIONS(251), + [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(53), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(255), + [anon_sym_else] = ACTIONS(1315), + [anon_sym_switch] = ACTIONS(257), + [anon_sym_case] = ACTIONS(1315), + [anon_sym_default] = ACTIONS(1315), + [anon_sym_while] = ACTIONS(263), + [anon_sym_do] = ACTIONS(265), + [anon_sym_for] = ACTIONS(267), + [anon_sym_return] = ACTIONS(269), + [anon_sym_break] = ACTIONS(271), + [anon_sym_continue] = ACTIONS(273), + [anon_sym_goto] = ACTIONS(275), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(107), - [anon_sym_decltype] = ACTIONS(109), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_explicit] = ACTIONS(998), - [anon_sym_typename] = ACTIONS(115), - [anon_sym_template] = ACTIONS(996), - [anon_sym_operator] = ACTIONS(998), - [anon_sym_try] = ACTIONS(121), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(125), - [anon_sym_namespace] = ACTIONS(998), - [anon_sym_using] = ACTIONS(998), - [anon_sym_static_assert] = ACTIONS(998), - [anon_sym_concept] = ACTIONS(998), - [anon_sym_co_return] = ACTIONS(135), - [anon_sym_co_yield] = ACTIONS(137), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(113), + [anon_sym_decltype] = ACTIONS(115), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_explicit] = ACTIONS(1315), + [anon_sym_typename] = ACTIONS(121), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_operator] = ACTIONS(1315), + [anon_sym_try] = ACTIONS(279), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(281), + [anon_sym_namespace] = ACTIONS(1315), + [anon_sym_using] = ACTIONS(1315), + [anon_sym_static_assert] = ACTIONS(1315), + [anon_sym_concept] = ACTIONS(1315), + [anon_sym_co_return] = ACTIONS(291), + [anon_sym_co_yield] = ACTIONS(293), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, - [94] = { - [sym_declaration] = STATE(87), - [sym_type_definition] = STATE(87), - [sym__declaration_modifiers] = STATE(2179), - [sym__declaration_specifiers] = STATE(3949), - [sym_attribute_specifier] = STATE(2179), - [sym_attribute_declaration] = STATE(1186), - [sym_ms_declspec_modifier] = STATE(2179), - [sym_compound_statement] = STATE(87), - [sym_storage_class_specifier] = STATE(2179), - [sym_type_qualifier] = STATE(2179), - [sym__type_specifier] = STATE(3156), - [sym_sized_type_specifier] = STATE(3232), - [sym_enum_specifier] = STATE(3232), - [sym_struct_specifier] = STATE(3232), - [sym_union_specifier] = STATE(3232), - [sym_attributed_statement] = STATE(87), - [sym_labeled_statement] = STATE(87), - [sym_expression_statement] = STATE(87), - [sym_if_statement] = STATE(87), - [sym_switch_statement] = STATE(87), - [sym_while_statement] = STATE(87), - [sym_do_statement] = STATE(87), - [sym_for_statement] = STATE(87), - [sym_return_statement] = STATE(87), - [sym_break_statement] = STATE(87), - [sym_continue_statement] = STATE(87), - [sym_goto_statement] = STATE(87), - [sym__expression] = STATE(3622), - [sym_comma_expression] = STATE(6125), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_placeholder_type_specifier] = STATE(3232), - [sym_decltype_auto] = STATE(3279), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3232), - [sym__class_name] = STATE(5753), - [sym_virtual] = STATE(2179), - [sym_dependent_type] = STATE(3232), - [sym_template_type] = STATE(3608), - [sym_template_function] = STATE(3365), - [sym_for_range_loop] = STATE(87), - [sym_co_return_statement] = STATE(87), - [sym_co_yield_statement] = STATE(87), - [sym_throw_statement] = STATE(87), - [sym_try_statement] = STATE(87), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4580), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(3593), - [sym_user_defined_literal] = STATE(3365), - [aux_sym__declaration_specifiers_repeat1] = STATE(2179), - [aux_sym_attributed_declarator_repeat1] = STATE(172), - [aux_sym_sized_type_specifier_repeat1] = STATE(3171), - [aux_sym_case_statement_repeat1] = STATE(87), - [ts_builtin_sym_end] = ACTIONS(1161), - [sym_identifier] = ACTIONS(1222), - [aux_sym_preproc_include_token1] = ACTIONS(1159), - [aux_sym_preproc_def_token1] = ACTIONS(1159), - [aux_sym_preproc_if_token1] = ACTIONS(1159), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1159), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1159), - [sym_preproc_directive] = ACTIONS(1159), - [anon_sym_LPAREN2] = ACTIONS(984), + [93] = { + [sym_declaration] = STATE(94), + [sym_type_definition] = STATE(94), + [sym__declaration_modifiers] = STATE(2514), + [sym__declaration_specifiers] = STATE(4590), + [sym_attribute_specifier] = STATE(2514), + [sym_attribute_declaration] = STATE(1583), + [sym_ms_declspec_modifier] = STATE(2514), + [sym_compound_statement] = STATE(94), + [sym_storage_class_specifier] = STATE(2514), + [sym_type_qualifier] = STATE(2514), + [sym__type_specifier] = STATE(3633), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), + [sym_attributed_statement] = STATE(94), + [sym_labeled_statement] = STATE(94), + [sym_expression_statement] = STATE(94), + [sym_if_statement] = STATE(94), + [sym_switch_statement] = STATE(94), + [sym_while_statement] = STATE(94), + [sym_do_statement] = STATE(94), + [sym_for_statement] = STATE(94), + [sym_return_statement] = STATE(94), + [sym_break_statement] = STATE(94), + [sym_continue_statement] = STATE(94), + [sym_goto_statement] = STATE(94), + [sym__expression] = STATE(4160), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7618), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym__class_name] = STATE(6623), + [sym_virtual] = STATE(2514), + [sym_dependent_type] = STATE(3723), + [sym_template_type] = STATE(3921), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(94), + [sym_co_return_statement] = STATE(94), + [sym_co_yield_statement] = STATE(94), + [sym_throw_statement] = STATE(94), + [sym_try_statement] = STATE(94), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5263), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(3915), + [sym_user_defined_literal] = STATE(3976), + [aux_sym__declaration_specifiers_repeat1] = STATE(2514), + [aux_sym_attributed_declarator_repeat1] = STATE(244), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [aux_sym_case_statement_repeat1] = STATE(94), + [sym_identifier] = ACTIONS(1313), + [aux_sym_preproc_include_token1] = ACTIONS(1331), + [aux_sym_preproc_def_token1] = ACTIONS(1331), + [aux_sym_preproc_if_token1] = ACTIONS(1331), + [aux_sym_preproc_if_token2] = ACTIONS(1331), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1331), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1331), + [aux_sym_preproc_else_token1] = ACTIONS(1331), + [aux_sym_preproc_elif_token1] = ACTIONS(1331), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1331), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1331), + [sym_preproc_directive] = ACTIONS(1331), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP_AMP] = ACTIONS(1161), - [anon_sym_AMP] = ACTIONS(990), - [anon_sym_SEMI] = ACTIONS(33), - [anon_sym_typedef] = ACTIONS(35), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(992), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(1159), - [anon_sym___cdecl] = ACTIONS(1159), - [anon_sym___clrcall] = ACTIONS(1159), - [anon_sym___stdcall] = ACTIONS(1159), - [anon_sym___fastcall] = ACTIONS(1159), - [anon_sym___thiscall] = ACTIONS(1159), - [anon_sym___vectorcall] = ACTIONS(1159), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(994), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(61), - [anon_sym_unsigned] = ACTIONS(61), - [anon_sym_long] = ACTIONS(61), - [anon_sym_short] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(63), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(73), - [anon_sym_else] = ACTIONS(1159), - [anon_sym_switch] = ACTIONS(75), - [anon_sym_case] = ACTIONS(1159), - [anon_sym_default] = ACTIONS(1159), - [anon_sym_while] = ACTIONS(81), - [anon_sym_do] = ACTIONS(83), - [anon_sym_for] = ACTIONS(85), - [anon_sym_return] = ACTIONS(87), - [anon_sym_break] = ACTIONS(89), - [anon_sym_continue] = ACTIONS(91), - [anon_sym_goto] = ACTIONS(93), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP_AMP] = ACTIONS(1333), + [anon_sym_AMP] = ACTIONS(1323), + [anon_sym_SEMI] = ACTIONS(245), + [anon_sym_typedef] = ACTIONS(247), + [anon_sym_extern] = ACTIONS(53), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(1331), + [anon_sym___cdecl] = ACTIONS(1331), + [anon_sym___clrcall] = ACTIONS(1331), + [anon_sym___stdcall] = ACTIONS(1331), + [anon_sym___fastcall] = ACTIONS(1331), + [anon_sym___thiscall] = ACTIONS(1331), + [anon_sym___vectorcall] = ACTIONS(1331), + [anon_sym_LBRACE] = ACTIONS(251), + [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(53), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(255), + [anon_sym_else] = ACTIONS(1331), + [anon_sym_switch] = ACTIONS(257), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_default] = ACTIONS(1331), + [anon_sym_while] = ACTIONS(263), + [anon_sym_do] = ACTIONS(265), + [anon_sym_for] = ACTIONS(267), + [anon_sym_return] = ACTIONS(269), + [anon_sym_break] = ACTIONS(271), + [anon_sym_continue] = ACTIONS(273), + [anon_sym_goto] = ACTIONS(275), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(107), - [anon_sym_decltype] = ACTIONS(109), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_explicit] = ACTIONS(1159), - [anon_sym_typename] = ACTIONS(115), - [anon_sym_template] = ACTIONS(996), - [anon_sym_operator] = ACTIONS(1159), - [anon_sym_try] = ACTIONS(121), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(125), - [anon_sym_namespace] = ACTIONS(1159), - [anon_sym_using] = ACTIONS(1159), - [anon_sym_static_assert] = ACTIONS(1159), - [anon_sym_concept] = ACTIONS(1159), - [anon_sym_co_return] = ACTIONS(135), - [anon_sym_co_yield] = ACTIONS(137), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(113), + [anon_sym_decltype] = ACTIONS(115), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_explicit] = ACTIONS(1331), + [anon_sym_typename] = ACTIONS(121), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_operator] = ACTIONS(1331), + [anon_sym_try] = ACTIONS(279), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(281), + [anon_sym_namespace] = ACTIONS(1331), + [anon_sym_using] = ACTIONS(1331), + [anon_sym_static_assert] = ACTIONS(1331), + [anon_sym_concept] = ACTIONS(1331), + [anon_sym_co_return] = ACTIONS(291), + [anon_sym_co_yield] = ACTIONS(293), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), + }, + [94] = { + [sym_declaration] = STATE(94), + [sym_type_definition] = STATE(94), + [sym__declaration_modifiers] = STATE(2514), + [sym__declaration_specifiers] = STATE(4590), + [sym_attribute_specifier] = STATE(2514), + [sym_attribute_declaration] = STATE(1583), + [sym_ms_declspec_modifier] = STATE(2514), + [sym_compound_statement] = STATE(94), + [sym_storage_class_specifier] = STATE(2514), + [sym_type_qualifier] = STATE(2514), + [sym__type_specifier] = STATE(3633), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), + [sym_attributed_statement] = STATE(94), + [sym_labeled_statement] = STATE(94), + [sym_expression_statement] = STATE(94), + [sym_if_statement] = STATE(94), + [sym_switch_statement] = STATE(94), + [sym_while_statement] = STATE(94), + [sym_do_statement] = STATE(94), + [sym_for_statement] = STATE(94), + [sym_return_statement] = STATE(94), + [sym_break_statement] = STATE(94), + [sym_continue_statement] = STATE(94), + [sym_goto_statement] = STATE(94), + [sym__expression] = STATE(4160), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7618), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym__class_name] = STATE(6623), + [sym_virtual] = STATE(2514), + [sym_dependent_type] = STATE(3723), + [sym_template_type] = STATE(3921), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(94), + [sym_co_return_statement] = STATE(94), + [sym_co_yield_statement] = STATE(94), + [sym_throw_statement] = STATE(94), + [sym_try_statement] = STATE(94), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5263), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(3915), + [sym_user_defined_literal] = STATE(3976), + [aux_sym__declaration_specifiers_repeat1] = STATE(2514), + [aux_sym_attributed_declarator_repeat1] = STATE(244), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [aux_sym_case_statement_repeat1] = STATE(94), + [sym_identifier] = ACTIONS(1335), + [aux_sym_preproc_include_token1] = ACTIONS(1338), + [aux_sym_preproc_def_token1] = ACTIONS(1338), + [aux_sym_preproc_if_token1] = ACTIONS(1338), + [aux_sym_preproc_if_token2] = ACTIONS(1338), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1338), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1338), + [aux_sym_preproc_else_token1] = ACTIONS(1338), + [aux_sym_preproc_elif_token1] = ACTIONS(1338), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1338), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1338), + [sym_preproc_directive] = ACTIONS(1338), + [anon_sym_LPAREN2] = ACTIONS(1340), + [anon_sym_BANG] = ACTIONS(1343), + [anon_sym_TILDE] = ACTIONS(1343), + [anon_sym_DASH] = ACTIONS(1346), + [anon_sym_PLUS] = ACTIONS(1346), + [anon_sym_STAR] = ACTIONS(1349), + [anon_sym_AMP_AMP] = ACTIONS(1352), + [anon_sym_AMP] = ACTIONS(1354), + [anon_sym_SEMI] = ACTIONS(1357), + [anon_sym_typedef] = ACTIONS(1360), + [anon_sym_extern] = ACTIONS(1363), + [anon_sym___attribute__] = ACTIONS(1366), + [anon_sym_COLON_COLON] = ACTIONS(1369), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1372), + [anon_sym___declspec] = ACTIONS(1375), + [anon_sym___based] = ACTIONS(1338), + [anon_sym___cdecl] = ACTIONS(1338), + [anon_sym___clrcall] = ACTIONS(1338), + [anon_sym___stdcall] = ACTIONS(1338), + [anon_sym___fastcall] = ACTIONS(1338), + [anon_sym___thiscall] = ACTIONS(1338), + [anon_sym___vectorcall] = ACTIONS(1338), + [anon_sym_LBRACE] = ACTIONS(1378), + [anon_sym_LBRACK] = ACTIONS(1381), + [anon_sym_static] = ACTIONS(1363), + [anon_sym_register] = ACTIONS(1363), + [anon_sym_inline] = ACTIONS(1363), + [anon_sym_thread_local] = ACTIONS(1363), + [anon_sym_const] = ACTIONS(1384), + [anon_sym_constexpr] = ACTIONS(1384), + [anon_sym_volatile] = ACTIONS(1384), + [anon_sym_restrict] = ACTIONS(1384), + [anon_sym___restrict__] = ACTIONS(1384), + [anon_sym__Atomic] = ACTIONS(1384), + [anon_sym__Noreturn] = ACTIONS(1384), + [anon_sym_noreturn] = ACTIONS(1384), + [anon_sym_mutable] = ACTIONS(1384), + [anon_sym_constinit] = ACTIONS(1384), + [anon_sym_consteval] = ACTIONS(1384), + [anon_sym_signed] = ACTIONS(1387), + [anon_sym_unsigned] = ACTIONS(1387), + [anon_sym_long] = ACTIONS(1387), + [anon_sym_short] = ACTIONS(1387), + [sym_primitive_type] = ACTIONS(1390), + [anon_sym_enum] = ACTIONS(1393), + [anon_sym_class] = ACTIONS(1396), + [anon_sym_struct] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1405), + [anon_sym_else] = ACTIONS(1338), + [anon_sym_switch] = ACTIONS(1408), + [anon_sym_case] = ACTIONS(1338), + [anon_sym_default] = ACTIONS(1338), + [anon_sym_while] = ACTIONS(1411), + [anon_sym_do] = ACTIONS(1414), + [anon_sym_for] = ACTIONS(1417), + [anon_sym_return] = ACTIONS(1420), + [anon_sym_break] = ACTIONS(1423), + [anon_sym_continue] = ACTIONS(1426), + [anon_sym_goto] = ACTIONS(1429), + [anon_sym_not] = ACTIONS(1346), + [anon_sym_compl] = ACTIONS(1346), + [anon_sym_DASH_DASH] = ACTIONS(1432), + [anon_sym_PLUS_PLUS] = ACTIONS(1432), + [anon_sym_sizeof] = ACTIONS(1435), + [anon_sym_offsetof] = ACTIONS(1438), + [anon_sym__Generic] = ACTIONS(1441), + [anon_sym_asm] = ACTIONS(1444), + [anon_sym___asm__] = ACTIONS(1444), + [sym_number_literal] = ACTIONS(1447), + [anon_sym_L_SQUOTE] = ACTIONS(1450), + [anon_sym_u_SQUOTE] = ACTIONS(1450), + [anon_sym_U_SQUOTE] = ACTIONS(1450), + [anon_sym_u8_SQUOTE] = ACTIONS(1450), + [anon_sym_SQUOTE] = ACTIONS(1450), + [anon_sym_L_DQUOTE] = ACTIONS(1453), + [anon_sym_u_DQUOTE] = ACTIONS(1453), + [anon_sym_U_DQUOTE] = ACTIONS(1453), + [anon_sym_u8_DQUOTE] = ACTIONS(1453), + [anon_sym_DQUOTE] = ACTIONS(1453), + [sym_true] = ACTIONS(1456), + [sym_false] = ACTIONS(1456), + [anon_sym_NULL] = ACTIONS(1459), + [anon_sym_nullptr] = ACTIONS(1459), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1462), + [anon_sym_decltype] = ACTIONS(1465), + [anon_sym_virtual] = ACTIONS(1468), + [anon_sym_explicit] = ACTIONS(1338), + [anon_sym_typename] = ACTIONS(1471), + [anon_sym_template] = ACTIONS(1474), + [anon_sym_operator] = ACTIONS(1338), + [anon_sym_try] = ACTIONS(1477), + [anon_sym_delete] = ACTIONS(1480), + [anon_sym_throw] = ACTIONS(1483), + [anon_sym_namespace] = ACTIONS(1338), + [anon_sym_using] = ACTIONS(1338), + [anon_sym_static_assert] = ACTIONS(1338), + [anon_sym_concept] = ACTIONS(1338), + [anon_sym_co_return] = ACTIONS(1486), + [anon_sym_co_yield] = ACTIONS(1489), + [anon_sym_R_DQUOTE] = ACTIONS(1492), + [anon_sym_LR_DQUOTE] = ACTIONS(1492), + [anon_sym_uR_DQUOTE] = ACTIONS(1492), + [anon_sym_UR_DQUOTE] = ACTIONS(1492), + [anon_sym_u8R_DQUOTE] = ACTIONS(1492), + [anon_sym_co_await] = ACTIONS(1495), + [anon_sym_new] = ACTIONS(1498), + [anon_sym_requires] = ACTIONS(1501), + [sym_this] = ACTIONS(1456), }, [95] = { - [sym_declaration] = STATE(86), - [sym_type_definition] = STATE(86), - [sym__declaration_modifiers] = STATE(2179), - [sym__declaration_specifiers] = STATE(3956), - [sym_attribute_specifier] = STATE(2179), - [sym_attribute_declaration] = STATE(1186), - [sym_ms_declspec_modifier] = STATE(2179), - [sym_compound_statement] = STATE(86), - [sym_storage_class_specifier] = STATE(2179), - [sym_type_qualifier] = STATE(2179), - [sym__type_specifier] = STATE(3156), - [sym_sized_type_specifier] = STATE(3232), - [sym_enum_specifier] = STATE(3232), - [sym_struct_specifier] = STATE(3232), - [sym_union_specifier] = STATE(3232), - [sym_attributed_statement] = STATE(86), - [sym_labeled_statement] = STATE(86), - [sym_expression_statement] = STATE(86), - [sym_if_statement] = STATE(86), - [sym_switch_statement] = STATE(86), - [sym_while_statement] = STATE(86), - [sym_do_statement] = STATE(86), - [sym_for_statement] = STATE(86), - [sym_return_statement] = STATE(86), - [sym_break_statement] = STATE(86), - [sym_continue_statement] = STATE(86), - [sym_goto_statement] = STATE(86), - [sym__expression] = STATE(3522), - [sym_comma_expression] = STATE(6276), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_placeholder_type_specifier] = STATE(3232), - [sym_decltype_auto] = STATE(3279), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3232), - [sym__class_name] = STATE(5753), - [sym_virtual] = STATE(2179), - [sym_dependent_type] = STATE(3232), - [sym_template_type] = STATE(3608), - [sym_template_function] = STATE(3365), - [sym_for_range_loop] = STATE(86), - [sym_co_return_statement] = STATE(86), - [sym_co_yield_statement] = STATE(86), - [sym_throw_statement] = STATE(86), - [sym_try_statement] = STATE(86), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4580), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(3593), - [sym_user_defined_literal] = STATE(3365), - [aux_sym__declaration_specifiers_repeat1] = STATE(2179), - [aux_sym_attributed_declarator_repeat1] = STATE(151), - [aux_sym_sized_type_specifier_repeat1] = STATE(3171), - [aux_sym_case_statement_repeat1] = STATE(86), - [sym_identifier] = ACTIONS(1218), - [aux_sym_preproc_include_token1] = ACTIONS(1163), - [aux_sym_preproc_def_token1] = ACTIONS(1163), - [aux_sym_preproc_if_token1] = ACTIONS(1163), - [aux_sym_preproc_if_token2] = ACTIONS(1163), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1163), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1163), - [sym_preproc_directive] = ACTIONS(1163), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym_declaration] = STATE(93), + [sym_type_definition] = STATE(93), + [sym__declaration_modifiers] = STATE(2514), + [sym__declaration_specifiers] = STATE(4590), + [sym_attribute_specifier] = STATE(2514), + [sym_attribute_declaration] = STATE(1583), + [sym_ms_declspec_modifier] = STATE(2514), + [sym_compound_statement] = STATE(93), + [sym_storage_class_specifier] = STATE(2514), + [sym_type_qualifier] = STATE(2514), + [sym__type_specifier] = STATE(3633), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), + [sym_attributed_statement] = STATE(93), + [sym_labeled_statement] = STATE(93), + [sym_expression_statement] = STATE(93), + [sym_if_statement] = STATE(93), + [sym_switch_statement] = STATE(93), + [sym_while_statement] = STATE(93), + [sym_do_statement] = STATE(93), + [sym_for_statement] = STATE(93), + [sym_return_statement] = STATE(93), + [sym_break_statement] = STATE(93), + [sym_continue_statement] = STATE(93), + [sym_goto_statement] = STATE(93), + [sym__expression] = STATE(4160), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7618), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym__class_name] = STATE(6623), + [sym_virtual] = STATE(2514), + [sym_dependent_type] = STATE(3723), + [sym_template_type] = STATE(3921), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(93), + [sym_co_return_statement] = STATE(93), + [sym_co_yield_statement] = STATE(93), + [sym_throw_statement] = STATE(93), + [sym_try_statement] = STATE(93), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5263), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(3915), + [sym_user_defined_literal] = STATE(3976), + [aux_sym__declaration_specifiers_repeat1] = STATE(2514), + [aux_sym_attributed_declarator_repeat1] = STATE(244), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [aux_sym_case_statement_repeat1] = STATE(93), + [sym_identifier] = ACTIONS(1313), + [aux_sym_preproc_include_token1] = ACTIONS(1504), + [aux_sym_preproc_def_token1] = ACTIONS(1504), + [aux_sym_preproc_if_token1] = ACTIONS(1504), + [aux_sym_preproc_if_token2] = ACTIONS(1504), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1504), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1504), + [aux_sym_preproc_else_token1] = ACTIONS(1504), + [aux_sym_preproc_elif_token1] = ACTIONS(1504), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1504), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1504), + [sym_preproc_directive] = ACTIONS(1504), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP_AMP] = ACTIONS(1165), - [anon_sym_AMP] = ACTIONS(990), - [anon_sym_SEMI] = ACTIONS(660), - [anon_sym_typedef] = ACTIONS(662), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(992), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(1163), - [anon_sym___cdecl] = ACTIONS(1163), - [anon_sym___clrcall] = ACTIONS(1163), - [anon_sym___stdcall] = ACTIONS(1163), - [anon_sym___fastcall] = ACTIONS(1163), - [anon_sym___thiscall] = ACTIONS(1163), - [anon_sym___vectorcall] = ACTIONS(1163), - [anon_sym_LBRACE] = ACTIONS(666), - [anon_sym_LBRACK] = ACTIONS(994), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(61), - [anon_sym_unsigned] = ACTIONS(61), - [anon_sym_long] = ACTIONS(61), - [anon_sym_short] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(63), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(670), - [anon_sym_else] = ACTIONS(1163), - [anon_sym_switch] = ACTIONS(672), - [anon_sym_case] = ACTIONS(1163), - [anon_sym_default] = ACTIONS(1163), - [anon_sym_while] = ACTIONS(678), - [anon_sym_do] = ACTIONS(680), - [anon_sym_for] = ACTIONS(682), - [anon_sym_return] = ACTIONS(684), - [anon_sym_break] = ACTIONS(686), - [anon_sym_continue] = ACTIONS(688), - [anon_sym_goto] = ACTIONS(690), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP_AMP] = ACTIONS(1506), + [anon_sym_AMP] = ACTIONS(1323), + [anon_sym_SEMI] = ACTIONS(245), + [anon_sym_typedef] = ACTIONS(247), + [anon_sym_extern] = ACTIONS(53), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(1504), + [anon_sym___cdecl] = ACTIONS(1504), + [anon_sym___clrcall] = ACTIONS(1504), + [anon_sym___stdcall] = ACTIONS(1504), + [anon_sym___fastcall] = ACTIONS(1504), + [anon_sym___thiscall] = ACTIONS(1504), + [anon_sym___vectorcall] = ACTIONS(1504), + [anon_sym_LBRACE] = ACTIONS(251), + [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(53), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(255), + [anon_sym_else] = ACTIONS(1504), + [anon_sym_switch] = ACTIONS(257), + [anon_sym_case] = ACTIONS(1504), + [anon_sym_default] = ACTIONS(1504), + [anon_sym_while] = ACTIONS(263), + [anon_sym_do] = ACTIONS(265), + [anon_sym_for] = ACTIONS(267), + [anon_sym_return] = ACTIONS(269), + [anon_sym_break] = ACTIONS(271), + [anon_sym_continue] = ACTIONS(273), + [anon_sym_goto] = ACTIONS(275), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(107), - [anon_sym_decltype] = ACTIONS(109), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_explicit] = ACTIONS(1163), - [anon_sym_typename] = ACTIONS(115), - [anon_sym_template] = ACTIONS(996), - [anon_sym_operator] = ACTIONS(1163), - [anon_sym_try] = ACTIONS(694), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(696), - [anon_sym_namespace] = ACTIONS(1163), - [anon_sym_using] = ACTIONS(1163), - [anon_sym_static_assert] = ACTIONS(1163), - [anon_sym_concept] = ACTIONS(1163), - [anon_sym_co_return] = ACTIONS(706), - [anon_sym_co_yield] = ACTIONS(708), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(113), + [anon_sym_decltype] = ACTIONS(115), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_explicit] = ACTIONS(1504), + [anon_sym_typename] = ACTIONS(121), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_operator] = ACTIONS(1504), + [anon_sym_try] = ACTIONS(279), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(281), + [anon_sym_namespace] = ACTIONS(1504), + [anon_sym_using] = ACTIONS(1504), + [anon_sym_static_assert] = ACTIONS(1504), + [anon_sym_concept] = ACTIONS(1504), + [anon_sym_co_return] = ACTIONS(291), + [anon_sym_co_yield] = ACTIONS(293), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [96] = { - [sym_declaration] = STATE(90), - [sym_type_definition] = STATE(90), - [sym__declaration_modifiers] = STATE(2179), - [sym__declaration_specifiers] = STATE(3979), - [sym_attribute_specifier] = STATE(2179), - [sym_attribute_declaration] = STATE(1186), - [sym_ms_declspec_modifier] = STATE(2179), - [sym_compound_statement] = STATE(90), - [sym_storage_class_specifier] = STATE(2179), - [sym_type_qualifier] = STATE(2179), - [sym__type_specifier] = STATE(3156), - [sym_sized_type_specifier] = STATE(3232), - [sym_enum_specifier] = STATE(3232), - [sym_struct_specifier] = STATE(3232), - [sym_union_specifier] = STATE(3232), - [sym_attributed_statement] = STATE(90), - [sym_labeled_statement] = STATE(90), - [sym_expression_statement] = STATE(90), - [sym_if_statement] = STATE(90), - [sym_switch_statement] = STATE(90), - [sym_while_statement] = STATE(90), - [sym_do_statement] = STATE(90), - [sym_for_statement] = STATE(90), - [sym_return_statement] = STATE(90), - [sym_break_statement] = STATE(90), - [sym_continue_statement] = STATE(90), - [sym_goto_statement] = STATE(90), - [sym__expression] = STATE(3502), - [sym_comma_expression] = STATE(6595), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_placeholder_type_specifier] = STATE(3232), - [sym_decltype_auto] = STATE(3279), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3232), - [sym__class_name] = STATE(5753), - [sym_virtual] = STATE(2179), - [sym_dependent_type] = STATE(3232), - [sym_template_type] = STATE(3608), - [sym_template_function] = STATE(3365), - [sym_for_range_loop] = STATE(90), - [sym_co_return_statement] = STATE(90), - [sym_co_yield_statement] = STATE(90), - [sym_throw_statement] = STATE(90), - [sym_try_statement] = STATE(90), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4580), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(3593), - [sym_user_defined_literal] = STATE(3365), - [aux_sym__declaration_specifiers_repeat1] = STATE(2179), - [aux_sym_attributed_declarator_repeat1] = STATE(206), - [aux_sym_sized_type_specifier_repeat1] = STATE(3171), - [aux_sym_case_statement_repeat1] = STATE(90), - [sym_identifier] = ACTIONS(1220), - [aux_sym_preproc_include_token1] = ACTIONS(1163), - [aux_sym_preproc_def_token1] = ACTIONS(1163), - [aux_sym_preproc_if_token1] = ACTIONS(1163), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1163), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1163), - [sym_preproc_directive] = ACTIONS(1163), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym_declaration] = STATE(92), + [sym_type_definition] = STATE(92), + [sym__declaration_modifiers] = STATE(2514), + [sym__declaration_specifiers] = STATE(4590), + [sym_attribute_specifier] = STATE(2514), + [sym_attribute_declaration] = STATE(1583), + [sym_ms_declspec_modifier] = STATE(2514), + [sym_compound_statement] = STATE(92), + [sym_storage_class_specifier] = STATE(2514), + [sym_type_qualifier] = STATE(2514), + [sym__type_specifier] = STATE(3633), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), + [sym_attributed_statement] = STATE(92), + [sym_labeled_statement] = STATE(92), + [sym_expression_statement] = STATE(92), + [sym_if_statement] = STATE(92), + [sym_switch_statement] = STATE(92), + [sym_while_statement] = STATE(92), + [sym_do_statement] = STATE(92), + [sym_for_statement] = STATE(92), + [sym_return_statement] = STATE(92), + [sym_break_statement] = STATE(92), + [sym_continue_statement] = STATE(92), + [sym_goto_statement] = STATE(92), + [sym__expression] = STATE(4160), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7618), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym__class_name] = STATE(6623), + [sym_virtual] = STATE(2514), + [sym_dependent_type] = STATE(3723), + [sym_template_type] = STATE(3921), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(92), + [sym_co_return_statement] = STATE(92), + [sym_co_yield_statement] = STATE(92), + [sym_throw_statement] = STATE(92), + [sym_try_statement] = STATE(92), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5263), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(3915), + [sym_user_defined_literal] = STATE(3976), + [aux_sym__declaration_specifiers_repeat1] = STATE(2514), + [aux_sym_attributed_declarator_repeat1] = STATE(244), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [aux_sym_case_statement_repeat1] = STATE(92), + [sym_identifier] = ACTIONS(1313), + [aux_sym_preproc_include_token1] = ACTIONS(1508), + [aux_sym_preproc_def_token1] = ACTIONS(1508), + [aux_sym_preproc_if_token1] = ACTIONS(1508), + [aux_sym_preproc_if_token2] = ACTIONS(1508), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1508), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1508), + [aux_sym_preproc_else_token1] = ACTIONS(1508), + [aux_sym_preproc_elif_token1] = ACTIONS(1508), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1508), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1508), + [sym_preproc_directive] = ACTIONS(1508), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP_AMP] = ACTIONS(1165), - [anon_sym_AMP] = ACTIONS(990), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_typedef] = ACTIONS(163), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(992), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(1163), - [anon_sym___cdecl] = ACTIONS(1163), - [anon_sym___clrcall] = ACTIONS(1163), - [anon_sym___stdcall] = ACTIONS(1163), - [anon_sym___fastcall] = ACTIONS(1163), - [anon_sym___thiscall] = ACTIONS(1163), - [anon_sym___vectorcall] = ACTIONS(1163), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_RBRACE] = ACTIONS(1165), - [anon_sym_LBRACK] = ACTIONS(994), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(61), - [anon_sym_unsigned] = ACTIONS(61), - [anon_sym_long] = ACTIONS(61), - [anon_sym_short] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(63), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(175), - [anon_sym_else] = ACTIONS(1163), - [anon_sym_switch] = ACTIONS(177), - [anon_sym_case] = ACTIONS(1163), - [anon_sym_default] = ACTIONS(1163), - [anon_sym_while] = ACTIONS(183), - [anon_sym_do] = ACTIONS(185), - [anon_sym_for] = ACTIONS(187), - [anon_sym_return] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), - [anon_sym_goto] = ACTIONS(195), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP_AMP] = ACTIONS(1510), + [anon_sym_AMP] = ACTIONS(1323), + [anon_sym_SEMI] = ACTIONS(245), + [anon_sym_typedef] = ACTIONS(247), + [anon_sym_extern] = ACTIONS(53), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(1508), + [anon_sym___cdecl] = ACTIONS(1508), + [anon_sym___clrcall] = ACTIONS(1508), + [anon_sym___stdcall] = ACTIONS(1508), + [anon_sym___fastcall] = ACTIONS(1508), + [anon_sym___thiscall] = ACTIONS(1508), + [anon_sym___vectorcall] = ACTIONS(1508), + [anon_sym_LBRACE] = ACTIONS(251), + [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(53), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(255), + [anon_sym_else] = ACTIONS(1508), + [anon_sym_switch] = ACTIONS(257), + [anon_sym_case] = ACTIONS(1508), + [anon_sym_default] = ACTIONS(1508), + [anon_sym_while] = ACTIONS(263), + [anon_sym_do] = ACTIONS(265), + [anon_sym_for] = ACTIONS(267), + [anon_sym_return] = ACTIONS(269), + [anon_sym_break] = ACTIONS(271), + [anon_sym_continue] = ACTIONS(273), + [anon_sym_goto] = ACTIONS(275), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(107), - [anon_sym_decltype] = ACTIONS(109), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_explicit] = ACTIONS(1163), - [anon_sym_typename] = ACTIONS(115), - [anon_sym_template] = ACTIONS(996), - [anon_sym_operator] = ACTIONS(1163), - [anon_sym_try] = ACTIONS(201), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(203), - [anon_sym_namespace] = ACTIONS(1163), - [anon_sym_using] = ACTIONS(1163), - [anon_sym_static_assert] = ACTIONS(1163), - [anon_sym_concept] = ACTIONS(1163), - [anon_sym_co_return] = ACTIONS(213), - [anon_sym_co_yield] = ACTIONS(215), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(113), + [anon_sym_decltype] = ACTIONS(115), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_explicit] = ACTIONS(1508), + [anon_sym_typename] = ACTIONS(121), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_operator] = ACTIONS(1508), + [anon_sym_try] = ACTIONS(279), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(281), + [anon_sym_namespace] = ACTIONS(1508), + [anon_sym_using] = ACTIONS(1508), + [anon_sym_static_assert] = ACTIONS(1508), + [anon_sym_concept] = ACTIONS(1508), + [anon_sym_co_return] = ACTIONS(291), + [anon_sym_co_yield] = ACTIONS(293), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [97] = { + [sym_declaration] = STATE(97), + [sym_type_definition] = STATE(97), + [sym__declaration_modifiers] = STATE(2514), + [sym__declaration_specifiers] = STATE(4616), + [sym_attribute_specifier] = STATE(2514), + [sym_attribute_declaration] = STATE(1583), + [sym_ms_declspec_modifier] = STATE(2514), + [sym_compound_statement] = STATE(97), + [sym_storage_class_specifier] = STATE(2514), + [sym_type_qualifier] = STATE(2514), + [sym__type_specifier] = STATE(3633), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), + [sym_attributed_statement] = STATE(97), + [sym_labeled_statement] = STATE(97), + [sym_expression_statement] = STATE(97), + [sym_if_statement] = STATE(97), + [sym_switch_statement] = STATE(97), + [sym_while_statement] = STATE(97), + [sym_do_statement] = STATE(97), + [sym_for_statement] = STATE(97), + [sym_return_statement] = STATE(97), + [sym_break_statement] = STATE(97), + [sym_continue_statement] = STATE(97), + [sym_goto_statement] = STATE(97), + [sym__expression] = STATE(4169), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7079), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym__class_name] = STATE(6623), + [sym_virtual] = STATE(2514), + [sym_dependent_type] = STATE(3723), + [sym_template_type] = STATE(3921), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(97), + [sym_co_return_statement] = STATE(97), + [sym_co_yield_statement] = STATE(97), + [sym_throw_statement] = STATE(97), + [sym_try_statement] = STATE(97), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5263), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(3915), + [sym_user_defined_literal] = STATE(3976), + [aux_sym__declaration_specifiers_repeat1] = STATE(2514), + [aux_sym_attributed_declarator_repeat1] = STATE(251), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [aux_sym_case_statement_repeat1] = STATE(97), + [sym_identifier] = ACTIONS(1512), + [aux_sym_preproc_include_token1] = ACTIONS(1338), + [aux_sym_preproc_def_token1] = ACTIONS(1338), + [aux_sym_preproc_if_token1] = ACTIONS(1338), + [aux_sym_preproc_if_token2] = ACTIONS(1338), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1338), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1338), + [aux_sym_preproc_else_token1] = ACTIONS(1338), + [aux_sym_preproc_elif_token1] = ACTIONS(1338), + [sym_preproc_directive] = ACTIONS(1338), + [anon_sym_LPAREN2] = ACTIONS(1340), + [anon_sym_BANG] = ACTIONS(1343), + [anon_sym_TILDE] = ACTIONS(1343), + [anon_sym_DASH] = ACTIONS(1346), + [anon_sym_PLUS] = ACTIONS(1346), + [anon_sym_STAR] = ACTIONS(1349), + [anon_sym_AMP_AMP] = ACTIONS(1352), + [anon_sym_AMP] = ACTIONS(1354), + [anon_sym_SEMI] = ACTIONS(1515), + [anon_sym_typedef] = ACTIONS(1518), + [anon_sym_extern] = ACTIONS(1363), + [anon_sym___attribute__] = ACTIONS(1366), + [anon_sym_COLON_COLON] = ACTIONS(1369), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1372), + [anon_sym___declspec] = ACTIONS(1375), + [anon_sym___based] = ACTIONS(1338), + [anon_sym___cdecl] = ACTIONS(1338), + [anon_sym___clrcall] = ACTIONS(1338), + [anon_sym___stdcall] = ACTIONS(1338), + [anon_sym___fastcall] = ACTIONS(1338), + [anon_sym___thiscall] = ACTIONS(1338), + [anon_sym___vectorcall] = ACTIONS(1338), + [anon_sym_LBRACE] = ACTIONS(1521), + [anon_sym_LBRACK] = ACTIONS(1381), + [anon_sym_static] = ACTIONS(1363), + [anon_sym_register] = ACTIONS(1363), + [anon_sym_inline] = ACTIONS(1363), + [anon_sym_thread_local] = ACTIONS(1363), + [anon_sym_const] = ACTIONS(1384), + [anon_sym_constexpr] = ACTIONS(1384), + [anon_sym_volatile] = ACTIONS(1384), + [anon_sym_restrict] = ACTIONS(1384), + [anon_sym___restrict__] = ACTIONS(1384), + [anon_sym__Atomic] = ACTIONS(1384), + [anon_sym__Noreturn] = ACTIONS(1384), + [anon_sym_noreturn] = ACTIONS(1384), + [anon_sym_mutable] = ACTIONS(1384), + [anon_sym_constinit] = ACTIONS(1384), + [anon_sym_consteval] = ACTIONS(1384), + [anon_sym_signed] = ACTIONS(1387), + [anon_sym_unsigned] = ACTIONS(1387), + [anon_sym_long] = ACTIONS(1387), + [anon_sym_short] = ACTIONS(1387), + [sym_primitive_type] = ACTIONS(1390), + [anon_sym_enum] = ACTIONS(1393), + [anon_sym_class] = ACTIONS(1396), + [anon_sym_struct] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1524), + [anon_sym_else] = ACTIONS(1338), + [anon_sym_switch] = ACTIONS(1527), + [anon_sym_case] = ACTIONS(1338), + [anon_sym_default] = ACTIONS(1338), + [anon_sym_while] = ACTIONS(1530), + [anon_sym_do] = ACTIONS(1533), + [anon_sym_for] = ACTIONS(1536), + [anon_sym_return] = ACTIONS(1539), + [anon_sym_break] = ACTIONS(1542), + [anon_sym_continue] = ACTIONS(1545), + [anon_sym_goto] = ACTIONS(1548), + [anon_sym_not] = ACTIONS(1346), + [anon_sym_compl] = ACTIONS(1346), + [anon_sym_DASH_DASH] = ACTIONS(1432), + [anon_sym_PLUS_PLUS] = ACTIONS(1432), + [anon_sym_sizeof] = ACTIONS(1435), + [anon_sym_offsetof] = ACTIONS(1438), + [anon_sym__Generic] = ACTIONS(1441), + [anon_sym_asm] = ACTIONS(1444), + [anon_sym___asm__] = ACTIONS(1444), + [sym_number_literal] = ACTIONS(1447), + [anon_sym_L_SQUOTE] = ACTIONS(1450), + [anon_sym_u_SQUOTE] = ACTIONS(1450), + [anon_sym_U_SQUOTE] = ACTIONS(1450), + [anon_sym_u8_SQUOTE] = ACTIONS(1450), + [anon_sym_SQUOTE] = ACTIONS(1450), + [anon_sym_L_DQUOTE] = ACTIONS(1453), + [anon_sym_u_DQUOTE] = ACTIONS(1453), + [anon_sym_U_DQUOTE] = ACTIONS(1453), + [anon_sym_u8_DQUOTE] = ACTIONS(1453), + [anon_sym_DQUOTE] = ACTIONS(1453), + [sym_true] = ACTIONS(1456), + [sym_false] = ACTIONS(1456), + [anon_sym_NULL] = ACTIONS(1459), + [anon_sym_nullptr] = ACTIONS(1459), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1462), + [anon_sym_decltype] = ACTIONS(1465), + [anon_sym_virtual] = ACTIONS(1468), + [anon_sym_explicit] = ACTIONS(1338), + [anon_sym_typename] = ACTIONS(1471), + [anon_sym_template] = ACTIONS(1474), + [anon_sym_operator] = ACTIONS(1338), + [anon_sym_try] = ACTIONS(1551), + [anon_sym_delete] = ACTIONS(1480), + [anon_sym_throw] = ACTIONS(1554), + [anon_sym_namespace] = ACTIONS(1338), + [anon_sym_using] = ACTIONS(1338), + [anon_sym_static_assert] = ACTIONS(1338), + [anon_sym_concept] = ACTIONS(1338), + [anon_sym_co_return] = ACTIONS(1557), + [anon_sym_co_yield] = ACTIONS(1560), + [anon_sym_R_DQUOTE] = ACTIONS(1492), + [anon_sym_LR_DQUOTE] = ACTIONS(1492), + [anon_sym_uR_DQUOTE] = ACTIONS(1492), + [anon_sym_UR_DQUOTE] = ACTIONS(1492), + [anon_sym_u8R_DQUOTE] = ACTIONS(1492), + [anon_sym_co_await] = ACTIONS(1495), + [anon_sym_new] = ACTIONS(1498), + [anon_sym_requires] = ACTIONS(1501), + [sym_this] = ACTIONS(1456), + }, + [98] = { [sym_declaration] = STATE(100), [sym_type_definition] = STATE(100), - [sym__declaration_modifiers] = STATE(2179), - [sym__declaration_specifiers] = STATE(4003), - [sym_attribute_specifier] = STATE(2179), - [sym_attribute_declaration] = STATE(1186), - [sym_ms_declspec_modifier] = STATE(2179), + [sym__declaration_modifiers] = STATE(2514), + [sym__declaration_specifiers] = STATE(4616), + [sym_attribute_specifier] = STATE(2514), + [sym_attribute_declaration] = STATE(1583), + [sym_ms_declspec_modifier] = STATE(2514), [sym_compound_statement] = STATE(100), - [sym_storage_class_specifier] = STATE(2179), - [sym_type_qualifier] = STATE(2179), - [sym__type_specifier] = STATE(3156), - [sym_sized_type_specifier] = STATE(3232), - [sym_enum_specifier] = STATE(3232), - [sym_struct_specifier] = STATE(3232), - [sym_union_specifier] = STATE(3232), + [sym_storage_class_specifier] = STATE(2514), + [sym_type_qualifier] = STATE(2514), + [sym__type_specifier] = STATE(3633), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), [sym_attributed_statement] = STATE(100), [sym_labeled_statement] = STATE(100), [sym_expression_statement] = STATE(100), @@ -45505,21113 +65087,23822 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(100), [sym_continue_statement] = STATE(100), [sym_goto_statement] = STATE(100), - [sym__expression] = STATE(3545), - [sym_comma_expression] = STATE(6215), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_placeholder_type_specifier] = STATE(3232), - [sym_decltype_auto] = STATE(3279), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3232), - [sym__class_name] = STATE(5753), - [sym_virtual] = STATE(2179), - [sym_dependent_type] = STATE(3232), - [sym_template_type] = STATE(3608), - [sym_template_function] = STATE(3365), + [sym__expression] = STATE(4169), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7079), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym__class_name] = STATE(6623), + [sym_virtual] = STATE(2514), + [sym_dependent_type] = STATE(3723), + [sym_template_type] = STATE(3921), + [sym_template_function] = STATE(3976), [sym_for_range_loop] = STATE(100), [sym_co_return_statement] = STATE(100), [sym_co_yield_statement] = STATE(100), [sym_throw_statement] = STATE(100), [sym_try_statement] = STATE(100), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4580), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(3593), - [sym_user_defined_literal] = STATE(3365), - [aux_sym__declaration_specifiers_repeat1] = STATE(2179), - [aux_sym_attributed_declarator_repeat1] = STATE(149), - [aux_sym_sized_type_specifier_repeat1] = STATE(3171), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5263), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(3915), + [sym_user_defined_literal] = STATE(3976), + [aux_sym__declaration_specifiers_repeat1] = STATE(2514), + [aux_sym_attributed_declarator_repeat1] = STATE(251), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), [aux_sym_case_statement_repeat1] = STATE(100), - [sym_identifier] = ACTIONS(1326), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym_identifier] = ACTIONS(1563), + [aux_sym_preproc_include_token1] = ACTIONS(1504), + [aux_sym_preproc_def_token1] = ACTIONS(1504), + [aux_sym_preproc_if_token1] = ACTIONS(1504), + [aux_sym_preproc_if_token2] = ACTIONS(1504), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1504), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1504), + [aux_sym_preproc_else_token1] = ACTIONS(1504), + [aux_sym_preproc_elif_token1] = ACTIONS(1504), + [sym_preproc_directive] = ACTIONS(1504), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(1328), - [anon_sym_typedef] = ACTIONS(1330), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(992), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(1332), - [anon_sym_LBRACK] = ACTIONS(994), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(61), - [anon_sym_unsigned] = ACTIONS(61), - [anon_sym_long] = ACTIONS(61), - [anon_sym_short] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(63), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(1334), - [anon_sym_else] = ACTIONS(1163), - [anon_sym_switch] = ACTIONS(1336), - [anon_sym_while] = ACTIONS(1338), - [anon_sym_do] = ACTIONS(1340), - [anon_sym_for] = ACTIONS(1342), - [anon_sym_return] = ACTIONS(1344), - [anon_sym_break] = ACTIONS(1346), - [anon_sym_continue] = ACTIONS(1348), - [anon_sym_goto] = ACTIONS(1350), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP_AMP] = ACTIONS(1506), + [anon_sym_AMP] = ACTIONS(1323), + [anon_sym_SEMI] = ACTIONS(345), + [anon_sym_typedef] = ACTIONS(347), + [anon_sym_extern] = ACTIONS(53), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(1504), + [anon_sym___cdecl] = ACTIONS(1504), + [anon_sym___clrcall] = ACTIONS(1504), + [anon_sym___stdcall] = ACTIONS(1504), + [anon_sym___fastcall] = ACTIONS(1504), + [anon_sym___thiscall] = ACTIONS(1504), + [anon_sym___vectorcall] = ACTIONS(1504), + [anon_sym_LBRACE] = ACTIONS(351), + [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(53), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(355), + [anon_sym_else] = ACTIONS(1504), + [anon_sym_switch] = ACTIONS(357), + [anon_sym_case] = ACTIONS(1504), + [anon_sym_default] = ACTIONS(1504), + [anon_sym_while] = ACTIONS(363), + [anon_sym_do] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_return] = ACTIONS(369), + [anon_sym_break] = ACTIONS(371), + [anon_sym_continue] = ACTIONS(373), + [anon_sym_goto] = ACTIONS(375), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(107), - [anon_sym_decltype] = ACTIONS(109), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(115), - [anon_sym_template] = ACTIONS(996), - [anon_sym_try] = ACTIONS(1352), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(1354), - [anon_sym_co_return] = ACTIONS(1356), - [anon_sym_co_yield] = ACTIONS(1358), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(113), + [anon_sym_decltype] = ACTIONS(115), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_explicit] = ACTIONS(1504), + [anon_sym_typename] = ACTIONS(121), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_operator] = ACTIONS(1504), + [anon_sym_try] = ACTIONS(379), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(381), + [anon_sym_namespace] = ACTIONS(1504), + [anon_sym_using] = ACTIONS(1504), + [anon_sym_static_assert] = ACTIONS(1504), + [anon_sym_concept] = ACTIONS(1504), + [anon_sym_co_return] = ACTIONS(391), + [anon_sym_co_yield] = ACTIONS(393), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, - [98] = { - [sym_declaration] = STATE(101), - [sym_type_definition] = STATE(101), - [sym__declaration_modifiers] = STATE(2179), - [sym__declaration_specifiers] = STATE(4003), - [sym_attribute_specifier] = STATE(2179), - [sym_attribute_declaration] = STATE(1186), - [sym_ms_declspec_modifier] = STATE(2179), - [sym_compound_statement] = STATE(101), - [sym_storage_class_specifier] = STATE(2179), - [sym_type_qualifier] = STATE(2179), - [sym__type_specifier] = STATE(3156), - [sym_sized_type_specifier] = STATE(3232), - [sym_enum_specifier] = STATE(3232), - [sym_struct_specifier] = STATE(3232), - [sym_union_specifier] = STATE(3232), - [sym_attributed_statement] = STATE(101), - [sym_labeled_statement] = STATE(101), - [sym_expression_statement] = STATE(101), - [sym_if_statement] = STATE(101), - [sym_switch_statement] = STATE(101), - [sym_while_statement] = STATE(101), - [sym_do_statement] = STATE(101), - [sym_for_statement] = STATE(101), - [sym_return_statement] = STATE(101), - [sym_break_statement] = STATE(101), - [sym_continue_statement] = STATE(101), - [sym_goto_statement] = STATE(101), - [sym__expression] = STATE(3545), - [sym_comma_expression] = STATE(6215), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_placeholder_type_specifier] = STATE(3232), - [sym_decltype_auto] = STATE(3279), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3232), - [sym__class_name] = STATE(5753), - [sym_virtual] = STATE(2179), - [sym_dependent_type] = STATE(3232), - [sym_template_type] = STATE(3608), - [sym_template_function] = STATE(3365), - [sym_for_range_loop] = STATE(101), - [sym_co_return_statement] = STATE(101), - [sym_co_yield_statement] = STATE(101), - [sym_throw_statement] = STATE(101), - [sym_try_statement] = STATE(101), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4580), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(3593), - [sym_user_defined_literal] = STATE(3365), - [aux_sym__declaration_specifiers_repeat1] = STATE(2179), - [aux_sym_attributed_declarator_repeat1] = STATE(149), - [aux_sym_sized_type_specifier_repeat1] = STATE(3171), - [aux_sym_case_statement_repeat1] = STATE(101), - [sym_identifier] = ACTIONS(1326), - [anon_sym_LPAREN2] = ACTIONS(984), + [99] = { + [sym_declaration] = STATE(97), + [sym_type_definition] = STATE(97), + [sym__declaration_modifiers] = STATE(2514), + [sym__declaration_specifiers] = STATE(4616), + [sym_attribute_specifier] = STATE(2514), + [sym_attribute_declaration] = STATE(1583), + [sym_ms_declspec_modifier] = STATE(2514), + [sym_compound_statement] = STATE(97), + [sym_storage_class_specifier] = STATE(2514), + [sym_type_qualifier] = STATE(2514), + [sym__type_specifier] = STATE(3633), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), + [sym_attributed_statement] = STATE(97), + [sym_labeled_statement] = STATE(97), + [sym_expression_statement] = STATE(97), + [sym_if_statement] = STATE(97), + [sym_switch_statement] = STATE(97), + [sym_while_statement] = STATE(97), + [sym_do_statement] = STATE(97), + [sym_for_statement] = STATE(97), + [sym_return_statement] = STATE(97), + [sym_break_statement] = STATE(97), + [sym_continue_statement] = STATE(97), + [sym_goto_statement] = STATE(97), + [sym__expression] = STATE(4169), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7079), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym__class_name] = STATE(6623), + [sym_virtual] = STATE(2514), + [sym_dependent_type] = STATE(3723), + [sym_template_type] = STATE(3921), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(97), + [sym_co_return_statement] = STATE(97), + [sym_co_yield_statement] = STATE(97), + [sym_throw_statement] = STATE(97), + [sym_try_statement] = STATE(97), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5263), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(3915), + [sym_user_defined_literal] = STATE(3976), + [aux_sym__declaration_specifiers_repeat1] = STATE(2514), + [aux_sym_attributed_declarator_repeat1] = STATE(251), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [aux_sym_case_statement_repeat1] = STATE(97), + [sym_identifier] = ACTIONS(1563), + [aux_sym_preproc_include_token1] = ACTIONS(1315), + [aux_sym_preproc_def_token1] = ACTIONS(1315), + [aux_sym_preproc_if_token1] = ACTIONS(1315), + [aux_sym_preproc_if_token2] = ACTIONS(1315), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1315), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1315), + [aux_sym_preproc_else_token1] = ACTIONS(1315), + [aux_sym_preproc_elif_token1] = ACTIONS(1315), + [sym_preproc_directive] = ACTIONS(1315), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(1328), - [anon_sym_typedef] = ACTIONS(1330), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(992), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(1332), - [anon_sym_LBRACK] = ACTIONS(994), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(61), - [anon_sym_unsigned] = ACTIONS(61), - [anon_sym_long] = ACTIONS(61), - [anon_sym_short] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(63), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(1334), - [anon_sym_else] = ACTIONS(982), - [anon_sym_switch] = ACTIONS(1336), - [anon_sym_while] = ACTIONS(1338), - [anon_sym_do] = ACTIONS(1340), - [anon_sym_for] = ACTIONS(1342), - [anon_sym_return] = ACTIONS(1344), - [anon_sym_break] = ACTIONS(1346), - [anon_sym_continue] = ACTIONS(1348), - [anon_sym_goto] = ACTIONS(1350), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP_AMP] = ACTIONS(1321), + [anon_sym_AMP] = ACTIONS(1323), + [anon_sym_SEMI] = ACTIONS(345), + [anon_sym_typedef] = ACTIONS(347), + [anon_sym_extern] = ACTIONS(53), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(1315), + [anon_sym___cdecl] = ACTIONS(1315), + [anon_sym___clrcall] = ACTIONS(1315), + [anon_sym___stdcall] = ACTIONS(1315), + [anon_sym___fastcall] = ACTIONS(1315), + [anon_sym___thiscall] = ACTIONS(1315), + [anon_sym___vectorcall] = ACTIONS(1315), + [anon_sym_LBRACE] = ACTIONS(351), + [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(53), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(355), + [anon_sym_else] = ACTIONS(1315), + [anon_sym_switch] = ACTIONS(357), + [anon_sym_case] = ACTIONS(1315), + [anon_sym_default] = ACTIONS(1315), + [anon_sym_while] = ACTIONS(363), + [anon_sym_do] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_return] = ACTIONS(369), + [anon_sym_break] = ACTIONS(371), + [anon_sym_continue] = ACTIONS(373), + [anon_sym_goto] = ACTIONS(375), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(107), - [anon_sym_decltype] = ACTIONS(109), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(115), - [anon_sym_template] = ACTIONS(996), - [anon_sym_try] = ACTIONS(1352), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(1354), - [anon_sym_co_return] = ACTIONS(1356), - [anon_sym_co_yield] = ACTIONS(1358), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(113), + [anon_sym_decltype] = ACTIONS(115), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_explicit] = ACTIONS(1315), + [anon_sym_typename] = ACTIONS(121), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_operator] = ACTIONS(1315), + [anon_sym_try] = ACTIONS(379), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(381), + [anon_sym_namespace] = ACTIONS(1315), + [anon_sym_using] = ACTIONS(1315), + [anon_sym_static_assert] = ACTIONS(1315), + [anon_sym_concept] = ACTIONS(1315), + [anon_sym_co_return] = ACTIONS(391), + [anon_sym_co_yield] = ACTIONS(393), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, - [99] = { - [sym_declaration] = STATE(98), - [sym_type_definition] = STATE(98), - [sym__declaration_modifiers] = STATE(2179), - [sym__declaration_specifiers] = STATE(4003), - [sym_attribute_specifier] = STATE(2179), - [sym_attribute_declaration] = STATE(1186), - [sym_ms_declspec_modifier] = STATE(2179), - [sym_compound_statement] = STATE(98), - [sym_storage_class_specifier] = STATE(2179), - [sym_type_qualifier] = STATE(2179), - [sym__type_specifier] = STATE(3156), - [sym_sized_type_specifier] = STATE(3232), - [sym_enum_specifier] = STATE(3232), - [sym_struct_specifier] = STATE(3232), - [sym_union_specifier] = STATE(3232), - [sym_attributed_statement] = STATE(98), - [sym_labeled_statement] = STATE(98), - [sym_expression_statement] = STATE(98), - [sym_if_statement] = STATE(98), - [sym_switch_statement] = STATE(98), - [sym_while_statement] = STATE(98), - [sym_do_statement] = STATE(98), - [sym_for_statement] = STATE(98), - [sym_return_statement] = STATE(98), - [sym_break_statement] = STATE(98), - [sym_continue_statement] = STATE(98), - [sym_goto_statement] = STATE(98), - [sym__expression] = STATE(3545), - [sym_comma_expression] = STATE(6215), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_placeholder_type_specifier] = STATE(3232), - [sym_decltype_auto] = STATE(3279), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3232), - [sym__class_name] = STATE(5753), - [sym_virtual] = STATE(2179), - [sym_dependent_type] = STATE(3232), - [sym_template_type] = STATE(3608), - [sym_template_function] = STATE(3365), - [sym_for_range_loop] = STATE(98), - [sym_co_return_statement] = STATE(98), - [sym_co_yield_statement] = STATE(98), - [sym_throw_statement] = STATE(98), - [sym_try_statement] = STATE(98), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4580), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(3593), - [sym_user_defined_literal] = STATE(3365), - [aux_sym__declaration_specifiers_repeat1] = STATE(2179), - [aux_sym_attributed_declarator_repeat1] = STATE(149), - [aux_sym_sized_type_specifier_repeat1] = STATE(3171), - [aux_sym_case_statement_repeat1] = STATE(98), - [sym_identifier] = ACTIONS(1326), - [anon_sym_LPAREN2] = ACTIONS(984), + [100] = { + [sym_declaration] = STATE(97), + [sym_type_definition] = STATE(97), + [sym__declaration_modifiers] = STATE(2514), + [sym__declaration_specifiers] = STATE(4616), + [sym_attribute_specifier] = STATE(2514), + [sym_attribute_declaration] = STATE(1583), + [sym_ms_declspec_modifier] = STATE(2514), + [sym_compound_statement] = STATE(97), + [sym_storage_class_specifier] = STATE(2514), + [sym_type_qualifier] = STATE(2514), + [sym__type_specifier] = STATE(3633), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), + [sym_attributed_statement] = STATE(97), + [sym_labeled_statement] = STATE(97), + [sym_expression_statement] = STATE(97), + [sym_if_statement] = STATE(97), + [sym_switch_statement] = STATE(97), + [sym_while_statement] = STATE(97), + [sym_do_statement] = STATE(97), + [sym_for_statement] = STATE(97), + [sym_return_statement] = STATE(97), + [sym_break_statement] = STATE(97), + [sym_continue_statement] = STATE(97), + [sym_goto_statement] = STATE(97), + [sym__expression] = STATE(4169), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7079), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym__class_name] = STATE(6623), + [sym_virtual] = STATE(2514), + [sym_dependent_type] = STATE(3723), + [sym_template_type] = STATE(3921), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(97), + [sym_co_return_statement] = STATE(97), + [sym_co_yield_statement] = STATE(97), + [sym_throw_statement] = STATE(97), + [sym_try_statement] = STATE(97), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5263), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(3915), + [sym_user_defined_literal] = STATE(3976), + [aux_sym__declaration_specifiers_repeat1] = STATE(2514), + [aux_sym_attributed_declarator_repeat1] = STATE(251), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [aux_sym_case_statement_repeat1] = STATE(97), + [sym_identifier] = ACTIONS(1563), + [aux_sym_preproc_include_token1] = ACTIONS(1331), + [aux_sym_preproc_def_token1] = ACTIONS(1331), + [aux_sym_preproc_if_token1] = ACTIONS(1331), + [aux_sym_preproc_if_token2] = ACTIONS(1331), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1331), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1331), + [aux_sym_preproc_else_token1] = ACTIONS(1331), + [aux_sym_preproc_elif_token1] = ACTIONS(1331), + [sym_preproc_directive] = ACTIONS(1331), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(1328), - [anon_sym_typedef] = ACTIONS(1330), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(992), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(1332), - [anon_sym_LBRACK] = ACTIONS(994), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(61), - [anon_sym_unsigned] = ACTIONS(61), - [anon_sym_long] = ACTIONS(61), - [anon_sym_short] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(63), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(1334), - [anon_sym_else] = ACTIONS(1159), - [anon_sym_switch] = ACTIONS(1336), - [anon_sym_while] = ACTIONS(1338), - [anon_sym_do] = ACTIONS(1340), - [anon_sym_for] = ACTIONS(1342), - [anon_sym_return] = ACTIONS(1344), - [anon_sym_break] = ACTIONS(1346), - [anon_sym_continue] = ACTIONS(1348), - [anon_sym_goto] = ACTIONS(1350), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP_AMP] = ACTIONS(1333), + [anon_sym_AMP] = ACTIONS(1323), + [anon_sym_SEMI] = ACTIONS(345), + [anon_sym_typedef] = ACTIONS(347), + [anon_sym_extern] = ACTIONS(53), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(1331), + [anon_sym___cdecl] = ACTIONS(1331), + [anon_sym___clrcall] = ACTIONS(1331), + [anon_sym___stdcall] = ACTIONS(1331), + [anon_sym___fastcall] = ACTIONS(1331), + [anon_sym___thiscall] = ACTIONS(1331), + [anon_sym___vectorcall] = ACTIONS(1331), + [anon_sym_LBRACE] = ACTIONS(351), + [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(53), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(355), + [anon_sym_else] = ACTIONS(1331), + [anon_sym_switch] = ACTIONS(357), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_default] = ACTIONS(1331), + [anon_sym_while] = ACTIONS(363), + [anon_sym_do] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_return] = ACTIONS(369), + [anon_sym_break] = ACTIONS(371), + [anon_sym_continue] = ACTIONS(373), + [anon_sym_goto] = ACTIONS(375), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(107), - [anon_sym_decltype] = ACTIONS(109), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(115), - [anon_sym_template] = ACTIONS(996), - [anon_sym_try] = ACTIONS(1352), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(1354), - [anon_sym_co_return] = ACTIONS(1356), - [anon_sym_co_yield] = ACTIONS(1358), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(113), + [anon_sym_decltype] = ACTIONS(115), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_explicit] = ACTIONS(1331), + [anon_sym_typename] = ACTIONS(121), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_operator] = ACTIONS(1331), + [anon_sym_try] = ACTIONS(379), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(381), + [anon_sym_namespace] = ACTIONS(1331), + [anon_sym_using] = ACTIONS(1331), + [anon_sym_static_assert] = ACTIONS(1331), + [anon_sym_concept] = ACTIONS(1331), + [anon_sym_co_return] = ACTIONS(391), + [anon_sym_co_yield] = ACTIONS(393), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, - [100] = { - [sym_declaration] = STATE(101), - [sym_type_definition] = STATE(101), - [sym__declaration_modifiers] = STATE(2179), - [sym__declaration_specifiers] = STATE(4003), - [sym_attribute_specifier] = STATE(2179), - [sym_attribute_declaration] = STATE(1186), - [sym_ms_declspec_modifier] = STATE(2179), - [sym_compound_statement] = STATE(101), - [sym_storage_class_specifier] = STATE(2179), - [sym_type_qualifier] = STATE(2179), - [sym__type_specifier] = STATE(3156), - [sym_sized_type_specifier] = STATE(3232), - [sym_enum_specifier] = STATE(3232), - [sym_struct_specifier] = STATE(3232), - [sym_union_specifier] = STATE(3232), - [sym_attributed_statement] = STATE(101), - [sym_labeled_statement] = STATE(101), - [sym_expression_statement] = STATE(101), - [sym_if_statement] = STATE(101), - [sym_switch_statement] = STATE(101), - [sym_while_statement] = STATE(101), - [sym_do_statement] = STATE(101), - [sym_for_statement] = STATE(101), - [sym_return_statement] = STATE(101), - [sym_break_statement] = STATE(101), - [sym_continue_statement] = STATE(101), - [sym_goto_statement] = STATE(101), - [sym__expression] = STATE(3545), - [sym_comma_expression] = STATE(6215), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_placeholder_type_specifier] = STATE(3232), - [sym_decltype_auto] = STATE(3279), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3232), - [sym__class_name] = STATE(5753), - [sym_virtual] = STATE(2179), - [sym_dependent_type] = STATE(3232), - [sym_template_type] = STATE(3608), - [sym_template_function] = STATE(3365), - [sym_for_range_loop] = STATE(101), - [sym_co_return_statement] = STATE(101), - [sym_co_yield_statement] = STATE(101), - [sym_throw_statement] = STATE(101), - [sym_try_statement] = STATE(101), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4580), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(3593), - [sym_user_defined_literal] = STATE(3365), - [aux_sym__declaration_specifiers_repeat1] = STATE(2179), - [aux_sym_attributed_declarator_repeat1] = STATE(149), - [aux_sym_sized_type_specifier_repeat1] = STATE(3171), - [aux_sym_case_statement_repeat1] = STATE(101), - [sym_identifier] = ACTIONS(1326), - [anon_sym_LPAREN2] = ACTIONS(984), + [101] = { + [sym_declaration] = STATE(99), + [sym_type_definition] = STATE(99), + [sym__declaration_modifiers] = STATE(2514), + [sym__declaration_specifiers] = STATE(4616), + [sym_attribute_specifier] = STATE(2514), + [sym_attribute_declaration] = STATE(1583), + [sym_ms_declspec_modifier] = STATE(2514), + [sym_compound_statement] = STATE(99), + [sym_storage_class_specifier] = STATE(2514), + [sym_type_qualifier] = STATE(2514), + [sym__type_specifier] = STATE(3633), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), + [sym_attributed_statement] = STATE(99), + [sym_labeled_statement] = STATE(99), + [sym_expression_statement] = STATE(99), + [sym_if_statement] = STATE(99), + [sym_switch_statement] = STATE(99), + [sym_while_statement] = STATE(99), + [sym_do_statement] = STATE(99), + [sym_for_statement] = STATE(99), + [sym_return_statement] = STATE(99), + [sym_break_statement] = STATE(99), + [sym_continue_statement] = STATE(99), + [sym_goto_statement] = STATE(99), + [sym__expression] = STATE(4169), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7079), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym__class_name] = STATE(6623), + [sym_virtual] = STATE(2514), + [sym_dependent_type] = STATE(3723), + [sym_template_type] = STATE(3921), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(99), + [sym_co_return_statement] = STATE(99), + [sym_co_yield_statement] = STATE(99), + [sym_throw_statement] = STATE(99), + [sym_try_statement] = STATE(99), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5263), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(3915), + [sym_user_defined_literal] = STATE(3976), + [aux_sym__declaration_specifiers_repeat1] = STATE(2514), + [aux_sym_attributed_declarator_repeat1] = STATE(251), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [aux_sym_case_statement_repeat1] = STATE(99), + [sym_identifier] = ACTIONS(1563), + [aux_sym_preproc_include_token1] = ACTIONS(1508), + [aux_sym_preproc_def_token1] = ACTIONS(1508), + [aux_sym_preproc_if_token1] = ACTIONS(1508), + [aux_sym_preproc_if_token2] = ACTIONS(1508), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1508), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1508), + [aux_sym_preproc_else_token1] = ACTIONS(1508), + [aux_sym_preproc_elif_token1] = ACTIONS(1508), + [sym_preproc_directive] = ACTIONS(1508), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(1328), - [anon_sym_typedef] = ACTIONS(1330), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(992), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(1332), - [anon_sym_LBRACK] = ACTIONS(994), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(61), - [anon_sym_unsigned] = ACTIONS(61), - [anon_sym_long] = ACTIONS(61), - [anon_sym_short] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(63), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), - [anon_sym_if] = ACTIONS(1334), - [anon_sym_else] = ACTIONS(998), - [anon_sym_switch] = ACTIONS(1336), - [anon_sym_while] = ACTIONS(1338), - [anon_sym_do] = ACTIONS(1340), - [anon_sym_for] = ACTIONS(1342), - [anon_sym_return] = ACTIONS(1344), - [anon_sym_break] = ACTIONS(1346), - [anon_sym_continue] = ACTIONS(1348), - [anon_sym_goto] = ACTIONS(1350), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP_AMP] = ACTIONS(1510), + [anon_sym_AMP] = ACTIONS(1323), + [anon_sym_SEMI] = ACTIONS(345), + [anon_sym_typedef] = ACTIONS(347), + [anon_sym_extern] = ACTIONS(53), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(1508), + [anon_sym___cdecl] = ACTIONS(1508), + [anon_sym___clrcall] = ACTIONS(1508), + [anon_sym___stdcall] = ACTIONS(1508), + [anon_sym___fastcall] = ACTIONS(1508), + [anon_sym___thiscall] = ACTIONS(1508), + [anon_sym___vectorcall] = ACTIONS(1508), + [anon_sym_LBRACE] = ACTIONS(351), + [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(53), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(355), + [anon_sym_else] = ACTIONS(1508), + [anon_sym_switch] = ACTIONS(357), + [anon_sym_case] = ACTIONS(1508), + [anon_sym_default] = ACTIONS(1508), + [anon_sym_while] = ACTIONS(363), + [anon_sym_do] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_return] = ACTIONS(369), + [anon_sym_break] = ACTIONS(371), + [anon_sym_continue] = ACTIONS(373), + [anon_sym_goto] = ACTIONS(375), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(107), - [anon_sym_decltype] = ACTIONS(109), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(115), - [anon_sym_template] = ACTIONS(996), - [anon_sym_try] = ACTIONS(1352), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(1354), - [anon_sym_co_return] = ACTIONS(1356), - [anon_sym_co_yield] = ACTIONS(1358), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), - }, - [101] = { - [sym_declaration] = STATE(101), - [sym_type_definition] = STATE(101), - [sym__declaration_modifiers] = STATE(2179), - [sym__declaration_specifiers] = STATE(4003), - [sym_attribute_specifier] = STATE(2179), - [sym_attribute_declaration] = STATE(1186), - [sym_ms_declspec_modifier] = STATE(2179), - [sym_compound_statement] = STATE(101), - [sym_storage_class_specifier] = STATE(2179), - [sym_type_qualifier] = STATE(2179), - [sym__type_specifier] = STATE(3156), - [sym_sized_type_specifier] = STATE(3232), - [sym_enum_specifier] = STATE(3232), - [sym_struct_specifier] = STATE(3232), - [sym_union_specifier] = STATE(3232), - [sym_attributed_statement] = STATE(101), - [sym_labeled_statement] = STATE(101), - [sym_expression_statement] = STATE(101), - [sym_if_statement] = STATE(101), - [sym_switch_statement] = STATE(101), - [sym_while_statement] = STATE(101), - [sym_do_statement] = STATE(101), - [sym_for_statement] = STATE(101), - [sym_return_statement] = STATE(101), - [sym_break_statement] = STATE(101), - [sym_continue_statement] = STATE(101), - [sym_goto_statement] = STATE(101), - [sym__expression] = STATE(3545), - [sym_comma_expression] = STATE(6215), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_placeholder_type_specifier] = STATE(3232), - [sym_decltype_auto] = STATE(3279), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3232), - [sym__class_name] = STATE(5753), - [sym_virtual] = STATE(2179), - [sym_dependent_type] = STATE(3232), - [sym_template_type] = STATE(3608), - [sym_template_function] = STATE(3365), - [sym_for_range_loop] = STATE(101), - [sym_co_return_statement] = STATE(101), - [sym_co_yield_statement] = STATE(101), - [sym_throw_statement] = STATE(101), - [sym_try_statement] = STATE(101), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4580), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(3593), - [sym_user_defined_literal] = STATE(3365), - [aux_sym__declaration_specifiers_repeat1] = STATE(2179), - [aux_sym_attributed_declarator_repeat1] = STATE(149), - [aux_sym_sized_type_specifier_repeat1] = STATE(3171), - [aux_sym_case_statement_repeat1] = STATE(101), - [sym_identifier] = ACTIONS(1360), - [anon_sym_LPAREN2] = ACTIONS(1007), - [anon_sym_BANG] = ACTIONS(1010), - [anon_sym_TILDE] = ACTIONS(1010), - [anon_sym_DASH] = ACTIONS(1013), - [anon_sym_PLUS] = ACTIONS(1013), - [anon_sym_STAR] = ACTIONS(1016), - [anon_sym_AMP] = ACTIONS(1016), - [anon_sym_SEMI] = ACTIONS(1363), - [anon_sym_typedef] = ACTIONS(1366), - [anon_sym_extern] = ACTIONS(1030), - [anon_sym___attribute__] = ACTIONS(1033), - [anon_sym_COLON_COLON] = ACTIONS(1036), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1039), - [anon_sym___declspec] = ACTIONS(1042), - [anon_sym_LBRACE] = ACTIONS(1369), - [anon_sym_LBRACK] = ACTIONS(1048), - [anon_sym_static] = ACTIONS(1030), - [anon_sym_register] = ACTIONS(1030), - [anon_sym_inline] = ACTIONS(1030), - [anon_sym_thread_local] = ACTIONS(1030), - [anon_sym_const] = ACTIONS(1051), - [anon_sym_volatile] = ACTIONS(1051), - [anon_sym_restrict] = ACTIONS(1051), - [anon_sym__Atomic] = ACTIONS(1051), - [anon_sym_mutable] = ACTIONS(1051), - [anon_sym_constexpr] = ACTIONS(1051), - [anon_sym_constinit] = ACTIONS(1051), - [anon_sym_consteval] = ACTIONS(1051), - [anon_sym_signed] = ACTIONS(1054), - [anon_sym_unsigned] = ACTIONS(1054), - [anon_sym_long] = ACTIONS(1054), - [anon_sym_short] = ACTIONS(1054), - [sym_primitive_type] = ACTIONS(1057), - [anon_sym_enum] = ACTIONS(1060), - [anon_sym_class] = ACTIONS(1063), - [anon_sym_struct] = ACTIONS(1066), - [anon_sym_union] = ACTIONS(1069), - [anon_sym_if] = ACTIONS(1372), - [anon_sym_else] = ACTIONS(1005), - [anon_sym_switch] = ACTIONS(1375), - [anon_sym_while] = ACTIONS(1378), - [anon_sym_do] = ACTIONS(1381), - [anon_sym_for] = ACTIONS(1384), - [anon_sym_return] = ACTIONS(1387), - [anon_sym_break] = ACTIONS(1390), - [anon_sym_continue] = ACTIONS(1393), - [anon_sym_goto] = ACTIONS(1396), - [anon_sym_not] = ACTIONS(1013), - [anon_sym_compl] = ACTIONS(1013), - [anon_sym_DASH_DASH] = ACTIONS(1099), - [anon_sym_PLUS_PLUS] = ACTIONS(1099), - [anon_sym_sizeof] = ACTIONS(1102), - [sym_number_literal] = ACTIONS(1105), - [anon_sym_L_SQUOTE] = ACTIONS(1108), - [anon_sym_u_SQUOTE] = ACTIONS(1108), - [anon_sym_U_SQUOTE] = ACTIONS(1108), - [anon_sym_u8_SQUOTE] = ACTIONS(1108), - [anon_sym_SQUOTE] = ACTIONS(1108), - [anon_sym_L_DQUOTE] = ACTIONS(1111), - [anon_sym_u_DQUOTE] = ACTIONS(1111), - [anon_sym_U_DQUOTE] = ACTIONS(1111), - [anon_sym_u8_DQUOTE] = ACTIONS(1111), - [anon_sym_DQUOTE] = ACTIONS(1111), - [sym_true] = ACTIONS(1114), - [sym_false] = ACTIONS(1114), - [sym_null] = ACTIONS(1114), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1117), - [anon_sym_decltype] = ACTIONS(1120), - [anon_sym_virtual] = ACTIONS(1123), - [anon_sym_typename] = ACTIONS(1126), - [anon_sym_template] = ACTIONS(1129), - [anon_sym_try] = ACTIONS(1399), - [anon_sym_delete] = ACTIONS(1135), - [anon_sym_throw] = ACTIONS(1402), - [anon_sym_co_return] = ACTIONS(1405), - [anon_sym_co_yield] = ACTIONS(1408), - [anon_sym_R_DQUOTE] = ACTIONS(1147), - [anon_sym_LR_DQUOTE] = ACTIONS(1147), - [anon_sym_uR_DQUOTE] = ACTIONS(1147), - [anon_sym_UR_DQUOTE] = ACTIONS(1147), - [anon_sym_u8R_DQUOTE] = ACTIONS(1147), - [anon_sym_co_await] = ACTIONS(1150), - [anon_sym_new] = ACTIONS(1153), - [anon_sym_requires] = ACTIONS(1156), - [sym_this] = ACTIONS(1114), - [sym_nullptr] = ACTIONS(1114), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(113), + [anon_sym_decltype] = ACTIONS(115), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_explicit] = ACTIONS(1508), + [anon_sym_typename] = ACTIONS(121), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_operator] = ACTIONS(1508), + [anon_sym_try] = ACTIONS(379), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(381), + [anon_sym_namespace] = ACTIONS(1508), + [anon_sym_using] = ACTIONS(1508), + [anon_sym_static_assert] = ACTIONS(1508), + [anon_sym_concept] = ACTIONS(1508), + [anon_sym_co_return] = ACTIONS(391), + [anon_sym_co_yield] = ACTIONS(393), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [102] = { - [sym_declaration] = STATE(1809), - [sym_type_definition] = STATE(1809), - [sym__declaration_modifiers] = STATE(2179), - [sym__declaration_specifiers] = STATE(3941), - [sym_attribute_specifier] = STATE(2179), - [sym_attribute_declaration] = STATE(2179), - [sym_ms_declspec_modifier] = STATE(2179), - [sym_storage_class_specifier] = STATE(2179), - [sym_type_qualifier] = STATE(2179), - [sym__type_specifier] = STATE(3156), - [sym_sized_type_specifier] = STATE(3232), - [sym_enum_specifier] = STATE(3232), - [sym_struct_specifier] = STATE(3232), - [sym_union_specifier] = STATE(3232), - [sym_expression_statement] = STATE(1809), - [sym__expression] = STATE(3477), - [sym_comma_expression] = STATE(5852), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_placeholder_type_specifier] = STATE(3232), - [sym_decltype_auto] = STATE(3279), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3232), - [sym__class_name] = STATE(5753), - [sym_virtual] = STATE(2179), - [sym_dependent_type] = STATE(3232), - [sym_template_type] = STATE(3608), - [sym_template_function] = STATE(3365), - [sym_alias_declaration] = STATE(1809), - [sym_init_statement] = STATE(120), - [sym_condition_declaration] = STATE(6298), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4580), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(3593), - [sym_user_defined_literal] = STATE(3365), - [aux_sym__declaration_specifiers_repeat1] = STATE(2179), - [aux_sym_sized_type_specifier_repeat1] = STATE(3171), - [sym_identifier] = ACTIONS(1411), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym_declaration] = STATE(108), + [sym_type_definition] = STATE(108), + [sym__declaration_modifiers] = STATE(2514), + [sym__declaration_specifiers] = STATE(4628), + [sym_attribute_specifier] = STATE(2514), + [sym_attribute_declaration] = STATE(1583), + [sym_ms_declspec_modifier] = STATE(2514), + [sym_compound_statement] = STATE(108), + [sym_storage_class_specifier] = STATE(2514), + [sym_type_qualifier] = STATE(2514), + [sym__type_specifier] = STATE(3633), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), + [sym_attributed_statement] = STATE(108), + [sym_labeled_statement] = STATE(108), + [sym_expression_statement] = STATE(108), + [sym_if_statement] = STATE(108), + [sym_switch_statement] = STATE(108), + [sym_while_statement] = STATE(108), + [sym_do_statement] = STATE(108), + [sym_for_statement] = STATE(108), + [sym_return_statement] = STATE(108), + [sym_break_statement] = STATE(108), + [sym_continue_statement] = STATE(108), + [sym_goto_statement] = STATE(108), + [sym__expression] = STATE(4126), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(6964), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym__class_name] = STATE(6623), + [sym_virtual] = STATE(2514), + [sym_dependent_type] = STATE(3723), + [sym_template_type] = STATE(3921), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(108), + [sym_co_return_statement] = STATE(108), + [sym_co_yield_statement] = STATE(108), + [sym_throw_statement] = STATE(108), + [sym_try_statement] = STATE(108), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5263), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(3915), + [sym_user_defined_literal] = STATE(3976), + [aux_sym__declaration_specifiers_repeat1] = STATE(2514), + [aux_sym_attributed_declarator_repeat1] = STATE(189), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [aux_sym_case_statement_repeat1] = STATE(108), + [sym_identifier] = ACTIONS(1565), + [aux_sym_preproc_include_token1] = ACTIONS(1504), + [aux_sym_preproc_def_token1] = ACTIONS(1504), + [aux_sym_preproc_if_token1] = ACTIONS(1504), + [aux_sym_preproc_if_token2] = ACTIONS(1504), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1504), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1504), + [sym_preproc_directive] = ACTIONS(1504), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(1328), - [anon_sym_typedef] = ACTIONS(1330), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1413), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(994), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(61), - [anon_sym_unsigned] = ACTIONS(61), - [anon_sym_long] = ACTIONS(61), - [anon_sym_short] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(63), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP_AMP] = ACTIONS(1506), + [anon_sym_AMP] = ACTIONS(1323), + [anon_sym_SEMI] = ACTIONS(911), + [anon_sym_typedef] = ACTIONS(913), + [anon_sym_extern] = ACTIONS(53), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(1504), + [anon_sym___cdecl] = ACTIONS(1504), + [anon_sym___clrcall] = ACTIONS(1504), + [anon_sym___stdcall] = ACTIONS(1504), + [anon_sym___fastcall] = ACTIONS(1504), + [anon_sym___thiscall] = ACTIONS(1504), + [anon_sym___vectorcall] = ACTIONS(1504), + [anon_sym_LBRACE] = ACTIONS(917), + [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(53), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(921), + [anon_sym_else] = ACTIONS(1504), + [anon_sym_switch] = ACTIONS(923), + [anon_sym_case] = ACTIONS(1504), + [anon_sym_default] = ACTIONS(1504), + [anon_sym_while] = ACTIONS(929), + [anon_sym_do] = ACTIONS(931), + [anon_sym_for] = ACTIONS(933), + [anon_sym_return] = ACTIONS(935), + [anon_sym_break] = ACTIONS(937), + [anon_sym_continue] = ACTIONS(939), + [anon_sym_goto] = ACTIONS(941), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(107), - [anon_sym_decltype] = ACTIONS(109), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(115), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_using] = ACTIONS(1415), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(113), + [anon_sym_decltype] = ACTIONS(115), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_explicit] = ACTIONS(1504), + [anon_sym_typename] = ACTIONS(121), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_operator] = ACTIONS(1504), + [anon_sym_try] = ACTIONS(945), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(947), + [anon_sym_namespace] = ACTIONS(1504), + [anon_sym_using] = ACTIONS(1504), + [anon_sym_static_assert] = ACTIONS(1504), + [anon_sym_concept] = ACTIONS(1504), + [anon_sym_co_return] = ACTIONS(957), + [anon_sym_co_yield] = ACTIONS(959), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [103] = { - [sym_declaration] = STATE(1097), - [sym_type_definition] = STATE(3902), - [sym__declaration_modifiers] = STATE(2179), - [sym__declaration_specifiers] = STATE(3948), - [sym_attribute_specifier] = STATE(2179), - [sym_attribute_declaration] = STATE(2179), - [sym_ms_declspec_modifier] = STATE(2179), - [sym_storage_class_specifier] = STATE(2179), - [sym_type_qualifier] = STATE(2179), - [sym__type_specifier] = STATE(3156), - [sym_sized_type_specifier] = STATE(3232), - [sym_enum_specifier] = STATE(3232), - [sym_struct_specifier] = STATE(3232), - [sym_union_specifier] = STATE(3232), - [sym_expression_statement] = STATE(3902), - [sym__expression] = STATE(3529), - [sym_comma_expression] = STATE(6464), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_placeholder_type_specifier] = STATE(3232), - [sym_decltype_auto] = STATE(3279), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3232), - [sym__class_name] = STATE(5753), - [sym_virtual] = STATE(2179), - [sym_dependent_type] = STATE(3232), - [sym_template_type] = STATE(3608), - [sym_template_function] = STATE(3365), - [sym_alias_declaration] = STATE(3902), - [sym_init_statement] = STATE(2114), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4580), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(3593), - [sym_user_defined_literal] = STATE(3365), - [aux_sym__declaration_specifiers_repeat1] = STATE(2179), - [aux_sym_sized_type_specifier_repeat1] = STATE(3171), - [sym_identifier] = ACTIONS(1411), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym_declaration] = STATE(111), + [sym_type_definition] = STATE(111), + [sym__declaration_modifiers] = STATE(2514), + [sym__declaration_specifiers] = STATE(4635), + [sym_attribute_specifier] = STATE(2514), + [sym_attribute_declaration] = STATE(1583), + [sym_ms_declspec_modifier] = STATE(2514), + [sym_compound_statement] = STATE(111), + [sym_storage_class_specifier] = STATE(2514), + [sym_type_qualifier] = STATE(2514), + [sym__type_specifier] = STATE(3633), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), + [sym_attributed_statement] = STATE(111), + [sym_labeled_statement] = STATE(111), + [sym_expression_statement] = STATE(111), + [sym_if_statement] = STATE(111), + [sym_switch_statement] = STATE(111), + [sym_while_statement] = STATE(111), + [sym_do_statement] = STATE(111), + [sym_for_statement] = STATE(111), + [sym_return_statement] = STATE(111), + [sym_break_statement] = STATE(111), + [sym_continue_statement] = STATE(111), + [sym_goto_statement] = STATE(111), + [sym__expression] = STATE(4182), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7590), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym__class_name] = STATE(6623), + [sym_virtual] = STATE(2514), + [sym_dependent_type] = STATE(3723), + [sym_template_type] = STATE(3921), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(111), + [sym_co_return_statement] = STATE(111), + [sym_co_yield_statement] = STATE(111), + [sym_throw_statement] = STATE(111), + [sym_try_statement] = STATE(111), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5263), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(3915), + [sym_user_defined_literal] = STATE(3976), + [aux_sym__declaration_specifiers_repeat1] = STATE(2514), + [aux_sym_attributed_declarator_repeat1] = STATE(309), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [aux_sym_case_statement_repeat1] = STATE(111), + [sym_identifier] = ACTIONS(1567), + [aux_sym_preproc_include_token1] = ACTIONS(1508), + [aux_sym_preproc_def_token1] = ACTIONS(1508), + [aux_sym_preproc_if_token1] = ACTIONS(1508), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1508), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1508), + [sym_preproc_directive] = ACTIONS(1508), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(1417), - [anon_sym_typedef] = ACTIONS(1419), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1413), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(994), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(61), - [anon_sym_unsigned] = ACTIONS(61), - [anon_sym_long] = ACTIONS(61), - [anon_sym_short] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(63), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP_AMP] = ACTIONS(1510), + [anon_sym_AMP] = ACTIONS(1323), + [anon_sym_SEMI] = ACTIONS(167), + [anon_sym_typedef] = ACTIONS(169), + [anon_sym_extern] = ACTIONS(53), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(1508), + [anon_sym___cdecl] = ACTIONS(1508), + [anon_sym___clrcall] = ACTIONS(1508), + [anon_sym___stdcall] = ACTIONS(1508), + [anon_sym___fastcall] = ACTIONS(1508), + [anon_sym___thiscall] = ACTIONS(1508), + [anon_sym___vectorcall] = ACTIONS(1508), + [anon_sym_LBRACE] = ACTIONS(738), + [anon_sym_RBRACE] = ACTIONS(1510), + [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(53), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(181), + [anon_sym_else] = ACTIONS(1508), + [anon_sym_switch] = ACTIONS(183), + [anon_sym_case] = ACTIONS(1508), + [anon_sym_default] = ACTIONS(1508), + [anon_sym_while] = ACTIONS(189), + [anon_sym_do] = ACTIONS(191), + [anon_sym_for] = ACTIONS(193), + [anon_sym_return] = ACTIONS(195), + [anon_sym_break] = ACTIONS(197), + [anon_sym_continue] = ACTIONS(199), + [anon_sym_goto] = ACTIONS(201), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(107), - [anon_sym_decltype] = ACTIONS(109), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(115), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_using] = ACTIONS(1421), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(113), + [anon_sym_decltype] = ACTIONS(115), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_explicit] = ACTIONS(1508), + [anon_sym_typename] = ACTIONS(121), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_operator] = ACTIONS(1508), + [anon_sym_try] = ACTIONS(209), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(211), + [anon_sym_namespace] = ACTIONS(1508), + [anon_sym_using] = ACTIONS(1508), + [anon_sym_static_assert] = ACTIONS(1508), + [anon_sym_concept] = ACTIONS(1508), + [anon_sym_co_return] = ACTIONS(221), + [anon_sym_co_yield] = ACTIONS(223), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [104] = { - [sym_declaration] = STATE(1101), - [sym_type_definition] = STATE(3902), - [sym__declaration_modifiers] = STATE(2179), - [sym__declaration_specifiers] = STATE(3972), - [sym_attribute_specifier] = STATE(2179), - [sym_attribute_declaration] = STATE(2179), - [sym_ms_declspec_modifier] = STATE(2179), - [sym_storage_class_specifier] = STATE(2179), - [sym_type_qualifier] = STATE(2179), - [sym__type_specifier] = STATE(3156), - [sym_sized_type_specifier] = STATE(3232), - [sym_enum_specifier] = STATE(3232), - [sym_struct_specifier] = STATE(3232), - [sym_union_specifier] = STATE(3232), - [sym_expression_statement] = STATE(3902), - [sym__expression] = STATE(3506), - [sym_comma_expression] = STATE(6295), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_placeholder_type_specifier] = STATE(3232), - [sym_decltype_auto] = STATE(3279), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3232), - [sym__class_name] = STATE(5753), - [sym_virtual] = STATE(2179), - [sym_dependent_type] = STATE(3232), - [sym_template_type] = STATE(3608), - [sym_template_function] = STATE(3365), - [sym_alias_declaration] = STATE(3902), - [sym_init_statement] = STATE(2139), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4580), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(3593), - [sym_user_defined_literal] = STATE(3365), - [aux_sym__declaration_specifiers_repeat1] = STATE(2179), - [aux_sym_sized_type_specifier_repeat1] = STATE(3171), - [sym_identifier] = ACTIONS(1411), - [anon_sym_LPAREN2] = ACTIONS(984), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(1423), - [anon_sym_typedef] = ACTIONS(1419), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1413), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(994), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(61), - [anon_sym_unsigned] = ACTIONS(61), - [anon_sym_long] = ACTIONS(61), - [anon_sym_short] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(63), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(107), - [anon_sym_decltype] = ACTIONS(109), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(115), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_using] = ACTIONS(1421), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [sym_declaration] = STATE(104), + [sym_type_definition] = STATE(104), + [sym__declaration_modifiers] = STATE(2514), + [sym__declaration_specifiers] = STATE(4628), + [sym_attribute_specifier] = STATE(2514), + [sym_attribute_declaration] = STATE(1583), + [sym_ms_declspec_modifier] = STATE(2514), + [sym_compound_statement] = STATE(104), + [sym_storage_class_specifier] = STATE(2514), + [sym_type_qualifier] = STATE(2514), + [sym__type_specifier] = STATE(3633), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), + [sym_attributed_statement] = STATE(104), + [sym_labeled_statement] = STATE(104), + [sym_expression_statement] = STATE(104), + [sym_if_statement] = STATE(104), + [sym_switch_statement] = STATE(104), + [sym_while_statement] = STATE(104), + [sym_do_statement] = STATE(104), + [sym_for_statement] = STATE(104), + [sym_return_statement] = STATE(104), + [sym_break_statement] = STATE(104), + [sym_continue_statement] = STATE(104), + [sym_goto_statement] = STATE(104), + [sym__expression] = STATE(4126), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(6964), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym__class_name] = STATE(6623), + [sym_virtual] = STATE(2514), + [sym_dependent_type] = STATE(3723), + [sym_template_type] = STATE(3921), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(104), + [sym_co_return_statement] = STATE(104), + [sym_co_yield_statement] = STATE(104), + [sym_throw_statement] = STATE(104), + [sym_try_statement] = STATE(104), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5263), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(3915), + [sym_user_defined_literal] = STATE(3976), + [aux_sym__declaration_specifiers_repeat1] = STATE(2514), + [aux_sym_attributed_declarator_repeat1] = STATE(189), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [aux_sym_case_statement_repeat1] = STATE(104), + [sym_identifier] = ACTIONS(1569), + [aux_sym_preproc_include_token1] = ACTIONS(1338), + [aux_sym_preproc_def_token1] = ACTIONS(1338), + [aux_sym_preproc_if_token1] = ACTIONS(1338), + [aux_sym_preproc_if_token2] = ACTIONS(1338), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1338), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1338), + [sym_preproc_directive] = ACTIONS(1338), + [anon_sym_LPAREN2] = ACTIONS(1340), + [anon_sym_BANG] = ACTIONS(1343), + [anon_sym_TILDE] = ACTIONS(1343), + [anon_sym_DASH] = ACTIONS(1346), + [anon_sym_PLUS] = ACTIONS(1346), + [anon_sym_STAR] = ACTIONS(1349), + [anon_sym_AMP_AMP] = ACTIONS(1352), + [anon_sym_AMP] = ACTIONS(1354), + [anon_sym_SEMI] = ACTIONS(1572), + [anon_sym_typedef] = ACTIONS(1575), + [anon_sym_extern] = ACTIONS(1363), + [anon_sym___attribute__] = ACTIONS(1366), + [anon_sym_COLON_COLON] = ACTIONS(1369), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1372), + [anon_sym___declspec] = ACTIONS(1375), + [anon_sym___based] = ACTIONS(1338), + [anon_sym___cdecl] = ACTIONS(1338), + [anon_sym___clrcall] = ACTIONS(1338), + [anon_sym___stdcall] = ACTIONS(1338), + [anon_sym___fastcall] = ACTIONS(1338), + [anon_sym___thiscall] = ACTIONS(1338), + [anon_sym___vectorcall] = ACTIONS(1338), + [anon_sym_LBRACE] = ACTIONS(1578), + [anon_sym_LBRACK] = ACTIONS(1381), + [anon_sym_static] = ACTIONS(1363), + [anon_sym_register] = ACTIONS(1363), + [anon_sym_inline] = ACTIONS(1363), + [anon_sym_thread_local] = ACTIONS(1363), + [anon_sym_const] = ACTIONS(1384), + [anon_sym_constexpr] = ACTIONS(1384), + [anon_sym_volatile] = ACTIONS(1384), + [anon_sym_restrict] = ACTIONS(1384), + [anon_sym___restrict__] = ACTIONS(1384), + [anon_sym__Atomic] = ACTIONS(1384), + [anon_sym__Noreturn] = ACTIONS(1384), + [anon_sym_noreturn] = ACTIONS(1384), + [anon_sym_mutable] = ACTIONS(1384), + [anon_sym_constinit] = ACTIONS(1384), + [anon_sym_consteval] = ACTIONS(1384), + [anon_sym_signed] = ACTIONS(1387), + [anon_sym_unsigned] = ACTIONS(1387), + [anon_sym_long] = ACTIONS(1387), + [anon_sym_short] = ACTIONS(1387), + [sym_primitive_type] = ACTIONS(1390), + [anon_sym_enum] = ACTIONS(1393), + [anon_sym_class] = ACTIONS(1396), + [anon_sym_struct] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1581), + [anon_sym_else] = ACTIONS(1338), + [anon_sym_switch] = ACTIONS(1584), + [anon_sym_case] = ACTIONS(1338), + [anon_sym_default] = ACTIONS(1338), + [anon_sym_while] = ACTIONS(1587), + [anon_sym_do] = ACTIONS(1590), + [anon_sym_for] = ACTIONS(1593), + [anon_sym_return] = ACTIONS(1596), + [anon_sym_break] = ACTIONS(1599), + [anon_sym_continue] = ACTIONS(1602), + [anon_sym_goto] = ACTIONS(1605), + [anon_sym_not] = ACTIONS(1346), + [anon_sym_compl] = ACTIONS(1346), + [anon_sym_DASH_DASH] = ACTIONS(1432), + [anon_sym_PLUS_PLUS] = ACTIONS(1432), + [anon_sym_sizeof] = ACTIONS(1435), + [anon_sym_offsetof] = ACTIONS(1438), + [anon_sym__Generic] = ACTIONS(1441), + [anon_sym_asm] = ACTIONS(1444), + [anon_sym___asm__] = ACTIONS(1444), + [sym_number_literal] = ACTIONS(1447), + [anon_sym_L_SQUOTE] = ACTIONS(1450), + [anon_sym_u_SQUOTE] = ACTIONS(1450), + [anon_sym_U_SQUOTE] = ACTIONS(1450), + [anon_sym_u8_SQUOTE] = ACTIONS(1450), + [anon_sym_SQUOTE] = ACTIONS(1450), + [anon_sym_L_DQUOTE] = ACTIONS(1453), + [anon_sym_u_DQUOTE] = ACTIONS(1453), + [anon_sym_U_DQUOTE] = ACTIONS(1453), + [anon_sym_u8_DQUOTE] = ACTIONS(1453), + [anon_sym_DQUOTE] = ACTIONS(1453), + [sym_true] = ACTIONS(1456), + [sym_false] = ACTIONS(1456), + [anon_sym_NULL] = ACTIONS(1459), + [anon_sym_nullptr] = ACTIONS(1459), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1462), + [anon_sym_decltype] = ACTIONS(1465), + [anon_sym_virtual] = ACTIONS(1468), + [anon_sym_explicit] = ACTIONS(1338), + [anon_sym_typename] = ACTIONS(1471), + [anon_sym_template] = ACTIONS(1474), + [anon_sym_operator] = ACTIONS(1338), + [anon_sym_try] = ACTIONS(1608), + [anon_sym_delete] = ACTIONS(1480), + [anon_sym_throw] = ACTIONS(1611), + [anon_sym_namespace] = ACTIONS(1338), + [anon_sym_using] = ACTIONS(1338), + [anon_sym_static_assert] = ACTIONS(1338), + [anon_sym_concept] = ACTIONS(1338), + [anon_sym_co_return] = ACTIONS(1614), + [anon_sym_co_yield] = ACTIONS(1617), + [anon_sym_R_DQUOTE] = ACTIONS(1492), + [anon_sym_LR_DQUOTE] = ACTIONS(1492), + [anon_sym_uR_DQUOTE] = ACTIONS(1492), + [anon_sym_UR_DQUOTE] = ACTIONS(1492), + [anon_sym_u8R_DQUOTE] = ACTIONS(1492), + [anon_sym_co_await] = ACTIONS(1495), + [anon_sym_new] = ACTIONS(1498), + [anon_sym_requires] = ACTIONS(1501), + [sym_this] = ACTIONS(1456), }, [105] = { - [sym_declaration] = STATE(1108), - [sym_type_definition] = STATE(3902), - [sym__declaration_modifiers] = STATE(2179), - [sym__declaration_specifiers] = STATE(3986), - [sym_attribute_specifier] = STATE(2179), - [sym_attribute_declaration] = STATE(2179), - [sym_ms_declspec_modifier] = STATE(2179), - [sym_storage_class_specifier] = STATE(2179), - [sym_type_qualifier] = STATE(2179), - [sym__type_specifier] = STATE(3156), - [sym_sized_type_specifier] = STATE(3232), - [sym_enum_specifier] = STATE(3232), - [sym_struct_specifier] = STATE(3232), - [sym_union_specifier] = STATE(3232), - [sym_expression_statement] = STATE(3902), - [sym__expression] = STATE(3672), - [sym_comma_expression] = STATE(6300), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_placeholder_type_specifier] = STATE(3232), - [sym_decltype_auto] = STATE(3279), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3232), - [sym__class_name] = STATE(5753), - [sym_virtual] = STATE(2179), - [sym_dependent_type] = STATE(3232), - [sym_template_type] = STATE(3608), - [sym_template_function] = STATE(3365), - [sym_alias_declaration] = STATE(3902), - [sym_init_statement] = STATE(2161), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4580), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(3593), - [sym_user_defined_literal] = STATE(3365), - [aux_sym__declaration_specifiers_repeat1] = STATE(2179), - [aux_sym_sized_type_specifier_repeat1] = STATE(3171), - [sym_identifier] = ACTIONS(1411), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym_declaration] = STATE(109), + [sym_type_definition] = STATE(109), + [sym__declaration_modifiers] = STATE(2514), + [sym__declaration_specifiers] = STATE(4663), + [sym_attribute_specifier] = STATE(2514), + [sym_attribute_declaration] = STATE(1583), + [sym_ms_declspec_modifier] = STATE(2514), + [sym_compound_statement] = STATE(109), + [sym_storage_class_specifier] = STATE(2514), + [sym_type_qualifier] = STATE(2514), + [sym__type_specifier] = STATE(3633), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), + [sym_attributed_statement] = STATE(109), + [sym_labeled_statement] = STATE(109), + [sym_expression_statement] = STATE(109), + [sym_if_statement] = STATE(109), + [sym_switch_statement] = STATE(109), + [sym_while_statement] = STATE(109), + [sym_do_statement] = STATE(109), + [sym_for_statement] = STATE(109), + [sym_return_statement] = STATE(109), + [sym_break_statement] = STATE(109), + [sym_continue_statement] = STATE(109), + [sym_goto_statement] = STATE(109), + [sym__expression] = STATE(4234), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7265), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym__class_name] = STATE(6623), + [sym_virtual] = STATE(2514), + [sym_dependent_type] = STATE(3723), + [sym_template_type] = STATE(3921), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(109), + [sym_co_return_statement] = STATE(109), + [sym_co_yield_statement] = STATE(109), + [sym_throw_statement] = STATE(109), + [sym_try_statement] = STATE(109), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5263), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(3915), + [sym_user_defined_literal] = STATE(3976), + [aux_sym__declaration_specifiers_repeat1] = STATE(2514), + [aux_sym_attributed_declarator_repeat1] = STATE(260), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [aux_sym_case_statement_repeat1] = STATE(109), + [ts_builtin_sym_end] = ACTIONS(1510), + [sym_identifier] = ACTIONS(1620), + [aux_sym_preproc_include_token1] = ACTIONS(1508), + [aux_sym_preproc_def_token1] = ACTIONS(1508), + [aux_sym_preproc_if_token1] = ACTIONS(1508), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1508), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1508), + [sym_preproc_directive] = ACTIONS(1508), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(1425), - [anon_sym_typedef] = ACTIONS(1419), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1413), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(994), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(61), - [anon_sym_unsigned] = ACTIONS(61), - [anon_sym_long] = ACTIONS(61), - [anon_sym_short] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(63), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP_AMP] = ACTIONS(1510), + [anon_sym_AMP] = ACTIONS(1323), + [anon_sym_SEMI] = ACTIONS(1622), + [anon_sym_typedef] = ACTIONS(33), + [anon_sym_extern] = ACTIONS(53), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(1508), + [anon_sym___cdecl] = ACTIONS(1508), + [anon_sym___clrcall] = ACTIONS(1508), + [anon_sym___stdcall] = ACTIONS(1508), + [anon_sym___fastcall] = ACTIONS(1508), + [anon_sym___thiscall] = ACTIONS(1508), + [anon_sym___vectorcall] = ACTIONS(1508), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(53), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(71), + [anon_sym_else] = ACTIONS(1508), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_case] = ACTIONS(1508), + [anon_sym_default] = ACTIONS(1508), + [anon_sym_while] = ACTIONS(79), + [anon_sym_do] = ACTIONS(81), + [anon_sym_for] = ACTIONS(83), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(107), - [anon_sym_decltype] = ACTIONS(109), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(115), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_using] = ACTIONS(1421), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(113), + [anon_sym_decltype] = ACTIONS(115), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_explicit] = ACTIONS(1508), + [anon_sym_typename] = ACTIONS(121), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_operator] = ACTIONS(1508), + [anon_sym_try] = ACTIONS(127), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(131), + [anon_sym_namespace] = ACTIONS(1508), + [anon_sym_using] = ACTIONS(1508), + [anon_sym_static_assert] = ACTIONS(1508), + [anon_sym_concept] = ACTIONS(1508), + [anon_sym_co_return] = ACTIONS(141), + [anon_sym_co_yield] = ACTIONS(143), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [106] = { - [sym_declaration] = STATE(1116), - [sym_type_definition] = STATE(3902), - [sym__declaration_modifiers] = STATE(2179), - [sym__declaration_specifiers] = STATE(3957), - [sym_attribute_specifier] = STATE(2179), - [sym_attribute_declaration] = STATE(2179), - [sym_ms_declspec_modifier] = STATE(2179), - [sym_storage_class_specifier] = STATE(2179), - [sym_type_qualifier] = STATE(2179), - [sym__type_specifier] = STATE(3156), - [sym_sized_type_specifier] = STATE(3232), - [sym_enum_specifier] = STATE(3232), - [sym_struct_specifier] = STATE(3232), - [sym_union_specifier] = STATE(3232), - [sym_expression_statement] = STATE(3902), - [sym__expression] = STATE(3541), - [sym_comma_expression] = STATE(6426), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_placeholder_type_specifier] = STATE(3232), - [sym_decltype_auto] = STATE(3279), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3232), - [sym__class_name] = STATE(5753), - [sym_virtual] = STATE(2179), - [sym_dependent_type] = STATE(3232), - [sym_template_type] = STATE(3608), - [sym_template_function] = STATE(3365), - [sym_alias_declaration] = STATE(3902), - [sym_init_statement] = STATE(2144), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4580), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(3593), - [sym_user_defined_literal] = STATE(3365), - [aux_sym__declaration_specifiers_repeat1] = STATE(2179), - [aux_sym_sized_type_specifier_repeat1] = STATE(3171), - [sym_identifier] = ACTIONS(1411), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym_declaration] = STATE(113), + [sym_type_definition] = STATE(113), + [sym__declaration_modifiers] = STATE(2514), + [sym__declaration_specifiers] = STATE(4628), + [sym_attribute_specifier] = STATE(2514), + [sym_attribute_declaration] = STATE(1583), + [sym_ms_declspec_modifier] = STATE(2514), + [sym_compound_statement] = STATE(113), + [sym_storage_class_specifier] = STATE(2514), + [sym_type_qualifier] = STATE(2514), + [sym__type_specifier] = STATE(3633), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), + [sym_attributed_statement] = STATE(113), + [sym_labeled_statement] = STATE(113), + [sym_expression_statement] = STATE(113), + [sym_if_statement] = STATE(113), + [sym_switch_statement] = STATE(113), + [sym_while_statement] = STATE(113), + [sym_do_statement] = STATE(113), + [sym_for_statement] = STATE(113), + [sym_return_statement] = STATE(113), + [sym_break_statement] = STATE(113), + [sym_continue_statement] = STATE(113), + [sym_goto_statement] = STATE(113), + [sym__expression] = STATE(4126), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(6964), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym__class_name] = STATE(6623), + [sym_virtual] = STATE(2514), + [sym_dependent_type] = STATE(3723), + [sym_template_type] = STATE(3921), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(113), + [sym_co_return_statement] = STATE(113), + [sym_co_yield_statement] = STATE(113), + [sym_throw_statement] = STATE(113), + [sym_try_statement] = STATE(113), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5263), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(3915), + [sym_user_defined_literal] = STATE(3976), + [aux_sym__declaration_specifiers_repeat1] = STATE(2514), + [aux_sym_attributed_declarator_repeat1] = STATE(189), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [aux_sym_case_statement_repeat1] = STATE(113), + [sym_identifier] = ACTIONS(1565), + [aux_sym_preproc_include_token1] = ACTIONS(1508), + [aux_sym_preproc_def_token1] = ACTIONS(1508), + [aux_sym_preproc_if_token1] = ACTIONS(1508), + [aux_sym_preproc_if_token2] = ACTIONS(1508), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1508), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1508), + [sym_preproc_directive] = ACTIONS(1508), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(1427), - [anon_sym_typedef] = ACTIONS(1419), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1413), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(994), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(61), - [anon_sym_unsigned] = ACTIONS(61), - [anon_sym_long] = ACTIONS(61), - [anon_sym_short] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(63), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP_AMP] = ACTIONS(1510), + [anon_sym_AMP] = ACTIONS(1323), + [anon_sym_SEMI] = ACTIONS(911), + [anon_sym_typedef] = ACTIONS(913), + [anon_sym_extern] = ACTIONS(53), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(1508), + [anon_sym___cdecl] = ACTIONS(1508), + [anon_sym___clrcall] = ACTIONS(1508), + [anon_sym___stdcall] = ACTIONS(1508), + [anon_sym___fastcall] = ACTIONS(1508), + [anon_sym___thiscall] = ACTIONS(1508), + [anon_sym___vectorcall] = ACTIONS(1508), + [anon_sym_LBRACE] = ACTIONS(917), + [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(53), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(921), + [anon_sym_else] = ACTIONS(1508), + [anon_sym_switch] = ACTIONS(923), + [anon_sym_case] = ACTIONS(1508), + [anon_sym_default] = ACTIONS(1508), + [anon_sym_while] = ACTIONS(929), + [anon_sym_do] = ACTIONS(931), + [anon_sym_for] = ACTIONS(933), + [anon_sym_return] = ACTIONS(935), + [anon_sym_break] = ACTIONS(937), + [anon_sym_continue] = ACTIONS(939), + [anon_sym_goto] = ACTIONS(941), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(107), - [anon_sym_decltype] = ACTIONS(109), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(115), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_using] = ACTIONS(1421), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(113), + [anon_sym_decltype] = ACTIONS(115), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_explicit] = ACTIONS(1508), + [anon_sym_typename] = ACTIONS(121), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_operator] = ACTIONS(1508), + [anon_sym_try] = ACTIONS(945), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(947), + [anon_sym_namespace] = ACTIONS(1508), + [anon_sym_using] = ACTIONS(1508), + [anon_sym_static_assert] = ACTIONS(1508), + [anon_sym_concept] = ACTIONS(1508), + [anon_sym_co_return] = ACTIONS(957), + [anon_sym_co_yield] = ACTIONS(959), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [107] = { - [sym_declaration] = STATE(1103), - [sym_type_definition] = STATE(3902), - [sym__declaration_modifiers] = STATE(2179), - [sym__declaration_specifiers] = STATE(3943), - [sym_attribute_specifier] = STATE(2179), - [sym_attribute_declaration] = STATE(2179), - [sym_ms_declspec_modifier] = STATE(2179), - [sym_storage_class_specifier] = STATE(2179), - [sym_type_qualifier] = STATE(2179), - [sym__type_specifier] = STATE(3156), - [sym_sized_type_specifier] = STATE(3232), - [sym_enum_specifier] = STATE(3232), - [sym_struct_specifier] = STATE(3232), - [sym_union_specifier] = STATE(3232), - [sym_expression_statement] = STATE(3902), - [sym__expression] = STATE(3517), - [sym_comma_expression] = STATE(6520), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_placeholder_type_specifier] = STATE(3232), - [sym_decltype_auto] = STATE(3279), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3232), - [sym__class_name] = STATE(5753), - [sym_virtual] = STATE(2179), - [sym_dependent_type] = STATE(3232), - [sym_template_type] = STATE(3608), - [sym_template_function] = STATE(3365), - [sym_alias_declaration] = STATE(3902), - [sym_init_statement] = STATE(2054), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4580), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(3593), - [sym_user_defined_literal] = STATE(3365), - [aux_sym__declaration_specifiers_repeat1] = STATE(2179), - [aux_sym_sized_type_specifier_repeat1] = STATE(3171), - [sym_identifier] = ACTIONS(1411), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym_declaration] = STATE(110), + [sym_type_definition] = STATE(110), + [sym__declaration_modifiers] = STATE(2514), + [sym__declaration_specifiers] = STATE(4663), + [sym_attribute_specifier] = STATE(2514), + [sym_attribute_declaration] = STATE(1583), + [sym_ms_declspec_modifier] = STATE(2514), + [sym_compound_statement] = STATE(110), + [sym_storage_class_specifier] = STATE(2514), + [sym_type_qualifier] = STATE(2514), + [sym__type_specifier] = STATE(3633), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), + [sym_attributed_statement] = STATE(110), + [sym_labeled_statement] = STATE(110), + [sym_expression_statement] = STATE(110), + [sym_if_statement] = STATE(110), + [sym_switch_statement] = STATE(110), + [sym_while_statement] = STATE(110), + [sym_do_statement] = STATE(110), + [sym_for_statement] = STATE(110), + [sym_return_statement] = STATE(110), + [sym_break_statement] = STATE(110), + [sym_continue_statement] = STATE(110), + [sym_goto_statement] = STATE(110), + [sym__expression] = STATE(4234), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7265), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym__class_name] = STATE(6623), + [sym_virtual] = STATE(2514), + [sym_dependent_type] = STATE(3723), + [sym_template_type] = STATE(3921), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(110), + [sym_co_return_statement] = STATE(110), + [sym_co_yield_statement] = STATE(110), + [sym_throw_statement] = STATE(110), + [sym_try_statement] = STATE(110), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5263), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(3915), + [sym_user_defined_literal] = STATE(3976), + [aux_sym__declaration_specifiers_repeat1] = STATE(2514), + [aux_sym_attributed_declarator_repeat1] = STATE(260), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [aux_sym_case_statement_repeat1] = STATE(110), + [ts_builtin_sym_end] = ACTIONS(1506), + [sym_identifier] = ACTIONS(1620), + [aux_sym_preproc_include_token1] = ACTIONS(1504), + [aux_sym_preproc_def_token1] = ACTIONS(1504), + [aux_sym_preproc_if_token1] = ACTIONS(1504), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1504), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1504), + [sym_preproc_directive] = ACTIONS(1504), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(1429), - [anon_sym_typedef] = ACTIONS(1419), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1413), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(994), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(61), - [anon_sym_unsigned] = ACTIONS(61), - [anon_sym_long] = ACTIONS(61), - [anon_sym_short] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(63), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP_AMP] = ACTIONS(1506), + [anon_sym_AMP] = ACTIONS(1323), + [anon_sym_SEMI] = ACTIONS(1622), + [anon_sym_typedef] = ACTIONS(33), + [anon_sym_extern] = ACTIONS(53), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(1504), + [anon_sym___cdecl] = ACTIONS(1504), + [anon_sym___clrcall] = ACTIONS(1504), + [anon_sym___stdcall] = ACTIONS(1504), + [anon_sym___fastcall] = ACTIONS(1504), + [anon_sym___thiscall] = ACTIONS(1504), + [anon_sym___vectorcall] = ACTIONS(1504), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(53), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(71), + [anon_sym_else] = ACTIONS(1504), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_case] = ACTIONS(1504), + [anon_sym_default] = ACTIONS(1504), + [anon_sym_while] = ACTIONS(79), + [anon_sym_do] = ACTIONS(81), + [anon_sym_for] = ACTIONS(83), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(107), - [anon_sym_decltype] = ACTIONS(109), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(115), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_using] = ACTIONS(1421), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(113), + [anon_sym_decltype] = ACTIONS(115), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_explicit] = ACTIONS(1504), + [anon_sym_typename] = ACTIONS(121), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_operator] = ACTIONS(1504), + [anon_sym_try] = ACTIONS(127), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(131), + [anon_sym_namespace] = ACTIONS(1504), + [anon_sym_using] = ACTIONS(1504), + [anon_sym_static_assert] = ACTIONS(1504), + [anon_sym_concept] = ACTIONS(1504), + [anon_sym_co_return] = ACTIONS(141), + [anon_sym_co_yield] = ACTIONS(143), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [108] = { - [sym_declaration] = STATE(1112), - [sym_type_definition] = STATE(3902), - [sym__declaration_modifiers] = STATE(2179), - [sym__declaration_specifiers] = STATE(3952), - [sym_attribute_specifier] = STATE(2179), - [sym_attribute_declaration] = STATE(2179), - [sym_ms_declspec_modifier] = STATE(2179), - [sym_storage_class_specifier] = STATE(2179), - [sym_type_qualifier] = STATE(2179), - [sym__type_specifier] = STATE(3156), - [sym_sized_type_specifier] = STATE(3232), - [sym_enum_specifier] = STATE(3232), - [sym_struct_specifier] = STATE(3232), - [sym_union_specifier] = STATE(3232), - [sym_expression_statement] = STATE(3902), - [sym__expression] = STATE(3534), - [sym_comma_expression] = STATE(6446), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_placeholder_type_specifier] = STATE(3232), - [sym_decltype_auto] = STATE(3279), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3232), - [sym__class_name] = STATE(5753), - [sym_virtual] = STATE(2179), - [sym_dependent_type] = STATE(3232), - [sym_template_type] = STATE(3608), - [sym_template_function] = STATE(3365), - [sym_alias_declaration] = STATE(3902), - [sym_init_statement] = STATE(2125), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4580), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(3593), - [sym_user_defined_literal] = STATE(3365), - [aux_sym__declaration_specifiers_repeat1] = STATE(2179), - [aux_sym_sized_type_specifier_repeat1] = STATE(3171), - [sym_identifier] = ACTIONS(1411), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym_declaration] = STATE(104), + [sym_type_definition] = STATE(104), + [sym__declaration_modifiers] = STATE(2514), + [sym__declaration_specifiers] = STATE(4628), + [sym_attribute_specifier] = STATE(2514), + [sym_attribute_declaration] = STATE(1583), + [sym_ms_declspec_modifier] = STATE(2514), + [sym_compound_statement] = STATE(104), + [sym_storage_class_specifier] = STATE(2514), + [sym_type_qualifier] = STATE(2514), + [sym__type_specifier] = STATE(3633), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), + [sym_attributed_statement] = STATE(104), + [sym_labeled_statement] = STATE(104), + [sym_expression_statement] = STATE(104), + [sym_if_statement] = STATE(104), + [sym_switch_statement] = STATE(104), + [sym_while_statement] = STATE(104), + [sym_do_statement] = STATE(104), + [sym_for_statement] = STATE(104), + [sym_return_statement] = STATE(104), + [sym_break_statement] = STATE(104), + [sym_continue_statement] = STATE(104), + [sym_goto_statement] = STATE(104), + [sym__expression] = STATE(4126), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(6964), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym__class_name] = STATE(6623), + [sym_virtual] = STATE(2514), + [sym_dependent_type] = STATE(3723), + [sym_template_type] = STATE(3921), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(104), + [sym_co_return_statement] = STATE(104), + [sym_co_yield_statement] = STATE(104), + [sym_throw_statement] = STATE(104), + [sym_try_statement] = STATE(104), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5263), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(3915), + [sym_user_defined_literal] = STATE(3976), + [aux_sym__declaration_specifiers_repeat1] = STATE(2514), + [aux_sym_attributed_declarator_repeat1] = STATE(189), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [aux_sym_case_statement_repeat1] = STATE(104), + [sym_identifier] = ACTIONS(1565), + [aux_sym_preproc_include_token1] = ACTIONS(1331), + [aux_sym_preproc_def_token1] = ACTIONS(1331), + [aux_sym_preproc_if_token1] = ACTIONS(1331), + [aux_sym_preproc_if_token2] = ACTIONS(1331), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1331), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1331), + [sym_preproc_directive] = ACTIONS(1331), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(1431), - [anon_sym_typedef] = ACTIONS(1419), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1413), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(994), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(61), - [anon_sym_unsigned] = ACTIONS(61), - [anon_sym_long] = ACTIONS(61), - [anon_sym_short] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(63), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP_AMP] = ACTIONS(1333), + [anon_sym_AMP] = ACTIONS(1323), + [anon_sym_SEMI] = ACTIONS(911), + [anon_sym_typedef] = ACTIONS(913), + [anon_sym_extern] = ACTIONS(53), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(1331), + [anon_sym___cdecl] = ACTIONS(1331), + [anon_sym___clrcall] = ACTIONS(1331), + [anon_sym___stdcall] = ACTIONS(1331), + [anon_sym___fastcall] = ACTIONS(1331), + [anon_sym___thiscall] = ACTIONS(1331), + [anon_sym___vectorcall] = ACTIONS(1331), + [anon_sym_LBRACE] = ACTIONS(917), + [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(53), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(921), + [anon_sym_else] = ACTIONS(1331), + [anon_sym_switch] = ACTIONS(923), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_default] = ACTIONS(1331), + [anon_sym_while] = ACTIONS(929), + [anon_sym_do] = ACTIONS(931), + [anon_sym_for] = ACTIONS(933), + [anon_sym_return] = ACTIONS(935), + [anon_sym_break] = ACTIONS(937), + [anon_sym_continue] = ACTIONS(939), + [anon_sym_goto] = ACTIONS(941), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(107), - [anon_sym_decltype] = ACTIONS(109), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(115), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_using] = ACTIONS(1421), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(113), + [anon_sym_decltype] = ACTIONS(115), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_explicit] = ACTIONS(1331), + [anon_sym_typename] = ACTIONS(121), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_operator] = ACTIONS(1331), + [anon_sym_try] = ACTIONS(945), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(947), + [anon_sym_namespace] = ACTIONS(1331), + [anon_sym_using] = ACTIONS(1331), + [anon_sym_static_assert] = ACTIONS(1331), + [anon_sym_concept] = ACTIONS(1331), + [anon_sym_co_return] = ACTIONS(957), + [anon_sym_co_yield] = ACTIONS(959), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [109] = { - [sym__declaration_modifiers] = STATE(2191), - [sym__declaration_specifiers] = STATE(3188), - [sym_attribute_specifier] = STATE(2191), - [sym_attribute_declaration] = STATE(2191), - [sym_ms_declspec_modifier] = STATE(2191), - [sym_storage_class_specifier] = STATE(2191), - [sym_type_qualifier] = STATE(2191), - [sym__type_specifier] = STATE(3156), - [sym_sized_type_specifier] = STATE(3232), - [sym_enum_specifier] = STATE(3232), - [sym_struct_specifier] = STATE(3232), - [sym_union_specifier] = STATE(3232), - [sym_parameter_declaration] = STATE(5540), - [sym__expression] = STATE(2820), - [sym_conditional_expression] = STATE(3035), - [sym_assignment_expression] = STATE(3035), - [sym_pointer_expression] = STATE(2713), - [sym_unary_expression] = STATE(3035), - [sym_binary_expression] = STATE(3035), - [sym_update_expression] = STATE(3035), - [sym_cast_expression] = STATE(3035), - [sym_sizeof_expression] = STATE(3035), - [sym_subscript_expression] = STATE(2713), - [sym_call_expression] = STATE(2713), - [sym_field_expression] = STATE(2713), - [sym_compound_literal_expression] = STATE(3035), - [sym_parenthesized_expression] = STATE(2713), - [sym_char_literal] = STATE(3013), - [sym_concatenated_string] = STATE(3013), - [sym_string_literal] = STATE(1900), - [sym_placeholder_type_specifier] = STATE(3232), - [sym_decltype_auto] = STATE(3279), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3232), - [sym__class_name] = STATE(5990), - [sym_virtual] = STATE(2191), - [sym_dependent_type] = STATE(3232), - [sym_optional_parameter_declaration] = STATE(5540), - [sym_variadic_parameter_declaration] = STATE(5540), - [sym_template_type] = STATE(3608), - [sym_template_function] = STATE(3035), - [sym_raw_string_literal] = STATE(1900), - [sym_co_await_expression] = STATE(3035), - [sym_new_expression] = STATE(3035), - [sym_delete_expression] = STATE(3035), - [sym_requires_clause] = STATE(3035), - [sym_requires_expression] = STATE(3035), - [sym_lambda_expression] = STATE(3035), - [sym_lambda_capture_specifier] = STATE(4465), - [sym__unary_left_fold] = STATE(6259), - [sym__unary_right_fold] = STATE(6262), - [sym__binary_fold] = STATE(6267), - [sym_fold_expression] = STATE(3035), - [sym_parameter_pack_expansion] = STATE(3035), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4551), - [sym_qualified_identifier] = STATE(2713), - [sym_qualified_type_identifier] = STATE(3593), - [sym_user_defined_literal] = STATE(3035), - [aux_sym__declaration_specifiers_repeat1] = STATE(2191), - [aux_sym_sized_type_specifier_repeat1] = STATE(3171), - [sym_identifier] = ACTIONS(1433), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1435), - [anon_sym_RPAREN] = ACTIONS(1437), - [anon_sym_LPAREN2] = ACTIONS(1439), - [anon_sym_BANG] = ACTIONS(1441), - [anon_sym_TILDE] = ACTIONS(1441), - [anon_sym_DASH] = ACTIONS(1443), - [anon_sym_PLUS] = ACTIONS(1443), - [anon_sym_STAR] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(1445), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(1447), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1413), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(994), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(61), - [anon_sym_unsigned] = ACTIONS(61), - [anon_sym_long] = ACTIONS(61), - [anon_sym_short] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(1449), - [anon_sym_enum] = ACTIONS(1451), - [anon_sym_class] = ACTIONS(1453), - [anon_sym_struct] = ACTIONS(1455), - [anon_sym_union] = ACTIONS(1457), - [anon_sym_not] = ACTIONS(1443), - [anon_sym_compl] = ACTIONS(1443), - [anon_sym_DASH_DASH] = ACTIONS(1459), - [anon_sym_PLUS_PLUS] = ACTIONS(1459), - [anon_sym_sizeof] = ACTIONS(1461), - [sym_number_literal] = ACTIONS(1463), - [anon_sym_L_SQUOTE] = ACTIONS(1465), - [anon_sym_u_SQUOTE] = ACTIONS(1465), - [anon_sym_U_SQUOTE] = ACTIONS(1465), - [anon_sym_u8_SQUOTE] = ACTIONS(1465), - [anon_sym_SQUOTE] = ACTIONS(1465), - [anon_sym_L_DQUOTE] = ACTIONS(1467), - [anon_sym_u_DQUOTE] = ACTIONS(1467), - [anon_sym_U_DQUOTE] = ACTIONS(1467), - [anon_sym_u8_DQUOTE] = ACTIONS(1467), - [anon_sym_DQUOTE] = ACTIONS(1467), - [sym_true] = ACTIONS(1469), - [sym_false] = ACTIONS(1469), - [sym_null] = ACTIONS(1469), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(107), - [anon_sym_decltype] = ACTIONS(109), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(1471), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1473), - [anon_sym_R_DQUOTE] = ACTIONS(1475), - [anon_sym_LR_DQUOTE] = ACTIONS(1475), - [anon_sym_uR_DQUOTE] = ACTIONS(1475), - [anon_sym_UR_DQUOTE] = ACTIONS(1475), - [anon_sym_u8R_DQUOTE] = ACTIONS(1475), - [anon_sym_co_await] = ACTIONS(1477), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_requires] = ACTIONS(1481), - [sym_this] = ACTIONS(1469), - [sym_nullptr] = ACTIONS(1469), + [sym_declaration] = STATE(112), + [sym_type_definition] = STATE(112), + [sym__declaration_modifiers] = STATE(2514), + [sym__declaration_specifiers] = STATE(4663), + [sym_attribute_specifier] = STATE(2514), + [sym_attribute_declaration] = STATE(1583), + [sym_ms_declspec_modifier] = STATE(2514), + [sym_compound_statement] = STATE(112), + [sym_storage_class_specifier] = STATE(2514), + [sym_type_qualifier] = STATE(2514), + [sym__type_specifier] = STATE(3633), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), + [sym_attributed_statement] = STATE(112), + [sym_labeled_statement] = STATE(112), + [sym_expression_statement] = STATE(112), + [sym_if_statement] = STATE(112), + [sym_switch_statement] = STATE(112), + [sym_while_statement] = STATE(112), + [sym_do_statement] = STATE(112), + [sym_for_statement] = STATE(112), + [sym_return_statement] = STATE(112), + [sym_break_statement] = STATE(112), + [sym_continue_statement] = STATE(112), + [sym_goto_statement] = STATE(112), + [sym__expression] = STATE(4234), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7265), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym__class_name] = STATE(6623), + [sym_virtual] = STATE(2514), + [sym_dependent_type] = STATE(3723), + [sym_template_type] = STATE(3921), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(112), + [sym_co_return_statement] = STATE(112), + [sym_co_yield_statement] = STATE(112), + [sym_throw_statement] = STATE(112), + [sym_try_statement] = STATE(112), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5263), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(3915), + [sym_user_defined_literal] = STATE(3976), + [aux_sym__declaration_specifiers_repeat1] = STATE(2514), + [aux_sym_attributed_declarator_repeat1] = STATE(260), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [aux_sym_case_statement_repeat1] = STATE(112), + [ts_builtin_sym_end] = ACTIONS(1321), + [sym_identifier] = ACTIONS(1620), + [aux_sym_preproc_include_token1] = ACTIONS(1315), + [aux_sym_preproc_def_token1] = ACTIONS(1315), + [aux_sym_preproc_if_token1] = ACTIONS(1315), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1315), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1315), + [sym_preproc_directive] = ACTIONS(1315), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP_AMP] = ACTIONS(1321), + [anon_sym_AMP] = ACTIONS(1323), + [anon_sym_SEMI] = ACTIONS(1622), + [anon_sym_typedef] = ACTIONS(33), + [anon_sym_extern] = ACTIONS(53), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(1315), + [anon_sym___cdecl] = ACTIONS(1315), + [anon_sym___clrcall] = ACTIONS(1315), + [anon_sym___stdcall] = ACTIONS(1315), + [anon_sym___fastcall] = ACTIONS(1315), + [anon_sym___thiscall] = ACTIONS(1315), + [anon_sym___vectorcall] = ACTIONS(1315), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(53), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(71), + [anon_sym_else] = ACTIONS(1315), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_case] = ACTIONS(1315), + [anon_sym_default] = ACTIONS(1315), + [anon_sym_while] = ACTIONS(79), + [anon_sym_do] = ACTIONS(81), + [anon_sym_for] = ACTIONS(83), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(113), + [anon_sym_decltype] = ACTIONS(115), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_explicit] = ACTIONS(1315), + [anon_sym_typename] = ACTIONS(121), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_operator] = ACTIONS(1315), + [anon_sym_try] = ACTIONS(127), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(131), + [anon_sym_namespace] = ACTIONS(1315), + [anon_sym_using] = ACTIONS(1315), + [anon_sym_static_assert] = ACTIONS(1315), + [anon_sym_concept] = ACTIONS(1315), + [anon_sym_co_return] = ACTIONS(141), + [anon_sym_co_yield] = ACTIONS(143), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [110] = { - [sym__declaration_modifiers] = STATE(2191), - [sym__declaration_specifiers] = STATE(3188), - [sym_attribute_specifier] = STATE(2191), - [sym_attribute_declaration] = STATE(2191), - [sym_ms_declspec_modifier] = STATE(2191), - [sym_storage_class_specifier] = STATE(2191), - [sym_type_qualifier] = STATE(2191), - [sym__type_specifier] = STATE(3156), - [sym_sized_type_specifier] = STATE(3232), - [sym_enum_specifier] = STATE(3232), - [sym_struct_specifier] = STATE(3232), - [sym_union_specifier] = STATE(3232), - [sym_parameter_declaration] = STATE(5540), - [sym__expression] = STATE(2831), - [sym_conditional_expression] = STATE(3035), - [sym_assignment_expression] = STATE(3035), - [sym_pointer_expression] = STATE(2713), - [sym_unary_expression] = STATE(3035), - [sym_binary_expression] = STATE(3035), - [sym_update_expression] = STATE(3035), - [sym_cast_expression] = STATE(3035), - [sym_sizeof_expression] = STATE(3035), - [sym_subscript_expression] = STATE(2713), - [sym_call_expression] = STATE(2713), - [sym_field_expression] = STATE(2713), - [sym_compound_literal_expression] = STATE(3035), - [sym_parenthesized_expression] = STATE(2713), - [sym_char_literal] = STATE(3013), - [sym_concatenated_string] = STATE(3013), - [sym_string_literal] = STATE(1900), - [sym_placeholder_type_specifier] = STATE(3232), - [sym_decltype_auto] = STATE(3279), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3232), - [sym__class_name] = STATE(5990), - [sym_virtual] = STATE(2191), - [sym_dependent_type] = STATE(3232), - [sym_optional_parameter_declaration] = STATE(5540), - [sym_variadic_parameter_declaration] = STATE(5540), - [sym_template_type] = STATE(3608), - [sym_template_function] = STATE(3035), - [sym_raw_string_literal] = STATE(1900), - [sym_co_await_expression] = STATE(3035), - [sym_new_expression] = STATE(3035), - [sym_delete_expression] = STATE(3035), - [sym_requires_clause] = STATE(3035), - [sym_requires_expression] = STATE(3035), - [sym_lambda_expression] = STATE(3035), - [sym_lambda_capture_specifier] = STATE(4465), - [sym__unary_left_fold] = STATE(6490), - [sym__unary_right_fold] = STATE(6489), - [sym__binary_fold] = STATE(6487), - [sym_fold_expression] = STATE(3035), - [sym_parameter_pack_expansion] = STATE(3035), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4551), - [sym_qualified_identifier] = STATE(2713), - [sym_qualified_type_identifier] = STATE(3593), - [sym_user_defined_literal] = STATE(3035), - [aux_sym__declaration_specifiers_repeat1] = STATE(2191), - [aux_sym_sized_type_specifier_repeat1] = STATE(3171), - [sym_identifier] = ACTIONS(1433), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1435), - [anon_sym_RPAREN] = ACTIONS(1437), - [anon_sym_LPAREN2] = ACTIONS(1439), - [anon_sym_BANG] = ACTIONS(1441), - [anon_sym_TILDE] = ACTIONS(1441), - [anon_sym_DASH] = ACTIONS(1443), - [anon_sym_PLUS] = ACTIONS(1443), - [anon_sym_STAR] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(1445), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(1447), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1413), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(994), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(61), - [anon_sym_unsigned] = ACTIONS(61), - [anon_sym_long] = ACTIONS(61), - [anon_sym_short] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(1449), - [anon_sym_enum] = ACTIONS(1451), - [anon_sym_class] = ACTIONS(1453), - [anon_sym_struct] = ACTIONS(1455), - [anon_sym_union] = ACTIONS(1457), - [anon_sym_not] = ACTIONS(1443), - [anon_sym_compl] = ACTIONS(1443), - [anon_sym_DASH_DASH] = ACTIONS(1459), - [anon_sym_PLUS_PLUS] = ACTIONS(1459), - [anon_sym_sizeof] = ACTIONS(1461), - [sym_number_literal] = ACTIONS(1463), - [anon_sym_L_SQUOTE] = ACTIONS(1465), - [anon_sym_u_SQUOTE] = ACTIONS(1465), - [anon_sym_U_SQUOTE] = ACTIONS(1465), - [anon_sym_u8_SQUOTE] = ACTIONS(1465), - [anon_sym_SQUOTE] = ACTIONS(1465), - [anon_sym_L_DQUOTE] = ACTIONS(1467), - [anon_sym_u_DQUOTE] = ACTIONS(1467), - [anon_sym_U_DQUOTE] = ACTIONS(1467), - [anon_sym_u8_DQUOTE] = ACTIONS(1467), - [anon_sym_DQUOTE] = ACTIONS(1467), - [sym_true] = ACTIONS(1469), - [sym_false] = ACTIONS(1469), - [sym_null] = ACTIONS(1469), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(107), - [anon_sym_decltype] = ACTIONS(109), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(1471), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1473), - [anon_sym_R_DQUOTE] = ACTIONS(1475), - [anon_sym_LR_DQUOTE] = ACTIONS(1475), - [anon_sym_uR_DQUOTE] = ACTIONS(1475), - [anon_sym_UR_DQUOTE] = ACTIONS(1475), - [anon_sym_u8R_DQUOTE] = ACTIONS(1475), - [anon_sym_co_await] = ACTIONS(1477), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_requires] = ACTIONS(1481), - [sym_this] = ACTIONS(1469), - [sym_nullptr] = ACTIONS(1469), + [sym_declaration] = STATE(112), + [sym_type_definition] = STATE(112), + [sym__declaration_modifiers] = STATE(2514), + [sym__declaration_specifiers] = STATE(4663), + [sym_attribute_specifier] = STATE(2514), + [sym_attribute_declaration] = STATE(1583), + [sym_ms_declspec_modifier] = STATE(2514), + [sym_compound_statement] = STATE(112), + [sym_storage_class_specifier] = STATE(2514), + [sym_type_qualifier] = STATE(2514), + [sym__type_specifier] = STATE(3633), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), + [sym_attributed_statement] = STATE(112), + [sym_labeled_statement] = STATE(112), + [sym_expression_statement] = STATE(112), + [sym_if_statement] = STATE(112), + [sym_switch_statement] = STATE(112), + [sym_while_statement] = STATE(112), + [sym_do_statement] = STATE(112), + [sym_for_statement] = STATE(112), + [sym_return_statement] = STATE(112), + [sym_break_statement] = STATE(112), + [sym_continue_statement] = STATE(112), + [sym_goto_statement] = STATE(112), + [sym__expression] = STATE(4234), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7265), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym__class_name] = STATE(6623), + [sym_virtual] = STATE(2514), + [sym_dependent_type] = STATE(3723), + [sym_template_type] = STATE(3921), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(112), + [sym_co_return_statement] = STATE(112), + [sym_co_yield_statement] = STATE(112), + [sym_throw_statement] = STATE(112), + [sym_try_statement] = STATE(112), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5263), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(3915), + [sym_user_defined_literal] = STATE(3976), + [aux_sym__declaration_specifiers_repeat1] = STATE(2514), + [aux_sym_attributed_declarator_repeat1] = STATE(260), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [aux_sym_case_statement_repeat1] = STATE(112), + [ts_builtin_sym_end] = ACTIONS(1333), + [sym_identifier] = ACTIONS(1620), + [aux_sym_preproc_include_token1] = ACTIONS(1331), + [aux_sym_preproc_def_token1] = ACTIONS(1331), + [aux_sym_preproc_if_token1] = ACTIONS(1331), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1331), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1331), + [sym_preproc_directive] = ACTIONS(1331), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP_AMP] = ACTIONS(1333), + [anon_sym_AMP] = ACTIONS(1323), + [anon_sym_SEMI] = ACTIONS(1622), + [anon_sym_typedef] = ACTIONS(33), + [anon_sym_extern] = ACTIONS(53), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(1331), + [anon_sym___cdecl] = ACTIONS(1331), + [anon_sym___clrcall] = ACTIONS(1331), + [anon_sym___stdcall] = ACTIONS(1331), + [anon_sym___fastcall] = ACTIONS(1331), + [anon_sym___thiscall] = ACTIONS(1331), + [anon_sym___vectorcall] = ACTIONS(1331), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(53), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(71), + [anon_sym_else] = ACTIONS(1331), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_default] = ACTIONS(1331), + [anon_sym_while] = ACTIONS(79), + [anon_sym_do] = ACTIONS(81), + [anon_sym_for] = ACTIONS(83), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(113), + [anon_sym_decltype] = ACTIONS(115), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_explicit] = ACTIONS(1331), + [anon_sym_typename] = ACTIONS(121), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_operator] = ACTIONS(1331), + [anon_sym_try] = ACTIONS(127), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(131), + [anon_sym_namespace] = ACTIONS(1331), + [anon_sym_using] = ACTIONS(1331), + [anon_sym_static_assert] = ACTIONS(1331), + [anon_sym_concept] = ACTIONS(1331), + [anon_sym_co_return] = ACTIONS(141), + [anon_sym_co_yield] = ACTIONS(143), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [111] = { - [sym__declaration_modifiers] = STATE(2191), - [sym__declaration_specifiers] = STATE(3188), - [sym_attribute_specifier] = STATE(2191), - [sym_attribute_declaration] = STATE(2191), - [sym_ms_declspec_modifier] = STATE(2191), - [sym_storage_class_specifier] = STATE(2191), - [sym_type_qualifier] = STATE(2191), - [sym__type_specifier] = STATE(3156), - [sym_sized_type_specifier] = STATE(3232), - [sym_enum_specifier] = STATE(3232), - [sym_struct_specifier] = STATE(3232), - [sym_union_specifier] = STATE(3232), - [sym_parameter_declaration] = STATE(5540), - [sym__expression] = STATE(2779), - [sym_conditional_expression] = STATE(3035), - [sym_assignment_expression] = STATE(3035), - [sym_pointer_expression] = STATE(2713), - [sym_unary_expression] = STATE(3035), - [sym_binary_expression] = STATE(3035), - [sym_update_expression] = STATE(3035), - [sym_cast_expression] = STATE(3035), - [sym_sizeof_expression] = STATE(3035), - [sym_subscript_expression] = STATE(2713), - [sym_call_expression] = STATE(2713), - [sym_field_expression] = STATE(2713), - [sym_compound_literal_expression] = STATE(3035), - [sym_parenthesized_expression] = STATE(2713), - [sym_char_literal] = STATE(3013), - [sym_concatenated_string] = STATE(3013), - [sym_string_literal] = STATE(1900), - [sym_placeholder_type_specifier] = STATE(3232), - [sym_decltype_auto] = STATE(3279), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3232), - [sym__class_name] = STATE(5990), - [sym_virtual] = STATE(2191), - [sym_dependent_type] = STATE(3232), - [sym_optional_parameter_declaration] = STATE(5540), - [sym_variadic_parameter_declaration] = STATE(5540), - [sym_template_type] = STATE(3608), - [sym_template_function] = STATE(3035), - [sym_raw_string_literal] = STATE(1900), - [sym_co_await_expression] = STATE(3035), - [sym_new_expression] = STATE(3035), - [sym_delete_expression] = STATE(3035), - [sym_requires_clause] = STATE(3035), - [sym_requires_expression] = STATE(3035), - [sym_lambda_expression] = STATE(3035), - [sym_lambda_capture_specifier] = STATE(4465), - [sym__unary_left_fold] = STATE(6272), - [sym__unary_right_fold] = STATE(6271), - [sym__binary_fold] = STATE(6269), - [sym_fold_expression] = STATE(3035), - [sym_parameter_pack_expansion] = STATE(3035), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4551), - [sym_qualified_identifier] = STATE(2713), - [sym_qualified_type_identifier] = STATE(3593), - [sym_user_defined_literal] = STATE(3035), - [aux_sym__declaration_specifiers_repeat1] = STATE(2191), - [aux_sym_sized_type_specifier_repeat1] = STATE(3171), - [sym_identifier] = ACTIONS(1433), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1435), - [anon_sym_RPAREN] = ACTIONS(1437), - [anon_sym_LPAREN2] = ACTIONS(1439), - [anon_sym_BANG] = ACTIONS(1441), - [anon_sym_TILDE] = ACTIONS(1441), - [anon_sym_DASH] = ACTIONS(1443), - [anon_sym_PLUS] = ACTIONS(1443), - [anon_sym_STAR] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(1445), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(1447), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1413), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(994), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(61), - [anon_sym_unsigned] = ACTIONS(61), - [anon_sym_long] = ACTIONS(61), - [anon_sym_short] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(1449), - [anon_sym_enum] = ACTIONS(1451), - [anon_sym_class] = ACTIONS(1453), - [anon_sym_struct] = ACTIONS(1455), - [anon_sym_union] = ACTIONS(1457), - [anon_sym_not] = ACTIONS(1443), - [anon_sym_compl] = ACTIONS(1443), - [anon_sym_DASH_DASH] = ACTIONS(1459), - [anon_sym_PLUS_PLUS] = ACTIONS(1459), - [anon_sym_sizeof] = ACTIONS(1461), - [sym_number_literal] = ACTIONS(1463), - [anon_sym_L_SQUOTE] = ACTIONS(1465), - [anon_sym_u_SQUOTE] = ACTIONS(1465), - [anon_sym_U_SQUOTE] = ACTIONS(1465), - [anon_sym_u8_SQUOTE] = ACTIONS(1465), - [anon_sym_SQUOTE] = ACTIONS(1465), - [anon_sym_L_DQUOTE] = ACTIONS(1467), - [anon_sym_u_DQUOTE] = ACTIONS(1467), - [anon_sym_U_DQUOTE] = ACTIONS(1467), - [anon_sym_u8_DQUOTE] = ACTIONS(1467), - [anon_sym_DQUOTE] = ACTIONS(1467), - [sym_true] = ACTIONS(1469), - [sym_false] = ACTIONS(1469), - [sym_null] = ACTIONS(1469), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(107), - [anon_sym_decltype] = ACTIONS(109), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(1471), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1473), - [anon_sym_R_DQUOTE] = ACTIONS(1475), - [anon_sym_LR_DQUOTE] = ACTIONS(1475), - [anon_sym_uR_DQUOTE] = ACTIONS(1475), - [anon_sym_UR_DQUOTE] = ACTIONS(1475), - [anon_sym_u8R_DQUOTE] = ACTIONS(1475), - [anon_sym_co_await] = ACTIONS(1477), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_requires] = ACTIONS(1481), - [sym_this] = ACTIONS(1469), - [sym_nullptr] = ACTIONS(1469), + [sym_declaration] = STATE(116), + [sym_type_definition] = STATE(116), + [sym__declaration_modifiers] = STATE(2514), + [sym__declaration_specifiers] = STATE(4635), + [sym_attribute_specifier] = STATE(2514), + [sym_attribute_declaration] = STATE(1583), + [sym_ms_declspec_modifier] = STATE(2514), + [sym_compound_statement] = STATE(116), + [sym_storage_class_specifier] = STATE(2514), + [sym_type_qualifier] = STATE(2514), + [sym__type_specifier] = STATE(3633), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), + [sym_attributed_statement] = STATE(116), + [sym_labeled_statement] = STATE(116), + [sym_expression_statement] = STATE(116), + [sym_if_statement] = STATE(116), + [sym_switch_statement] = STATE(116), + [sym_while_statement] = STATE(116), + [sym_do_statement] = STATE(116), + [sym_for_statement] = STATE(116), + [sym_return_statement] = STATE(116), + [sym_break_statement] = STATE(116), + [sym_continue_statement] = STATE(116), + [sym_goto_statement] = STATE(116), + [sym__expression] = STATE(4182), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7590), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym__class_name] = STATE(6623), + [sym_virtual] = STATE(2514), + [sym_dependent_type] = STATE(3723), + [sym_template_type] = STATE(3921), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(116), + [sym_co_return_statement] = STATE(116), + [sym_co_yield_statement] = STATE(116), + [sym_throw_statement] = STATE(116), + [sym_try_statement] = STATE(116), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5263), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(3915), + [sym_user_defined_literal] = STATE(3976), + [aux_sym__declaration_specifiers_repeat1] = STATE(2514), + [aux_sym_attributed_declarator_repeat1] = STATE(309), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [aux_sym_case_statement_repeat1] = STATE(116), + [sym_identifier] = ACTIONS(1567), + [aux_sym_preproc_include_token1] = ACTIONS(1315), + [aux_sym_preproc_def_token1] = ACTIONS(1315), + [aux_sym_preproc_if_token1] = ACTIONS(1315), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1315), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1315), + [sym_preproc_directive] = ACTIONS(1315), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP_AMP] = ACTIONS(1321), + [anon_sym_AMP] = ACTIONS(1323), + [anon_sym_SEMI] = ACTIONS(167), + [anon_sym_typedef] = ACTIONS(169), + [anon_sym_extern] = ACTIONS(53), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(1315), + [anon_sym___cdecl] = ACTIONS(1315), + [anon_sym___clrcall] = ACTIONS(1315), + [anon_sym___stdcall] = ACTIONS(1315), + [anon_sym___fastcall] = ACTIONS(1315), + [anon_sym___thiscall] = ACTIONS(1315), + [anon_sym___vectorcall] = ACTIONS(1315), + [anon_sym_LBRACE] = ACTIONS(738), + [anon_sym_RBRACE] = ACTIONS(1321), + [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(53), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(181), + [anon_sym_else] = ACTIONS(1315), + [anon_sym_switch] = ACTIONS(183), + [anon_sym_case] = ACTIONS(1315), + [anon_sym_default] = ACTIONS(1315), + [anon_sym_while] = ACTIONS(189), + [anon_sym_do] = ACTIONS(191), + [anon_sym_for] = ACTIONS(193), + [anon_sym_return] = ACTIONS(195), + [anon_sym_break] = ACTIONS(197), + [anon_sym_continue] = ACTIONS(199), + [anon_sym_goto] = ACTIONS(201), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(113), + [anon_sym_decltype] = ACTIONS(115), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_explicit] = ACTIONS(1315), + [anon_sym_typename] = ACTIONS(121), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_operator] = ACTIONS(1315), + [anon_sym_try] = ACTIONS(209), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(211), + [anon_sym_namespace] = ACTIONS(1315), + [anon_sym_using] = ACTIONS(1315), + [anon_sym_static_assert] = ACTIONS(1315), + [anon_sym_concept] = ACTIONS(1315), + [anon_sym_co_return] = ACTIONS(221), + [anon_sym_co_yield] = ACTIONS(223), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [112] = { - [sym__declaration_modifiers] = STATE(2191), - [sym__declaration_specifiers] = STATE(3188), - [sym_attribute_specifier] = STATE(2191), - [sym_attribute_declaration] = STATE(2191), - [sym_ms_declspec_modifier] = STATE(2191), - [sym_storage_class_specifier] = STATE(2191), - [sym_type_qualifier] = STATE(2191), - [sym__type_specifier] = STATE(3156), - [sym_sized_type_specifier] = STATE(3232), - [sym_enum_specifier] = STATE(3232), - [sym_struct_specifier] = STATE(3232), - [sym_union_specifier] = STATE(3232), - [sym_parameter_declaration] = STATE(5540), - [sym__expression] = STATE(2772), - [sym_conditional_expression] = STATE(3035), - [sym_assignment_expression] = STATE(3035), - [sym_pointer_expression] = STATE(2713), - [sym_unary_expression] = STATE(3035), - [sym_binary_expression] = STATE(3035), - [sym_update_expression] = STATE(3035), - [sym_cast_expression] = STATE(3035), - [sym_sizeof_expression] = STATE(3035), - [sym_subscript_expression] = STATE(2713), - [sym_call_expression] = STATE(2713), - [sym_field_expression] = STATE(2713), - [sym_compound_literal_expression] = STATE(3035), - [sym_parenthesized_expression] = STATE(2713), - [sym_char_literal] = STATE(3013), - [sym_concatenated_string] = STATE(3013), - [sym_string_literal] = STATE(1900), - [sym_placeholder_type_specifier] = STATE(3232), - [sym_decltype_auto] = STATE(3279), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3232), - [sym__class_name] = STATE(5990), - [sym_virtual] = STATE(2191), - [sym_dependent_type] = STATE(3232), - [sym_optional_parameter_declaration] = STATE(5540), - [sym_variadic_parameter_declaration] = STATE(5540), - [sym_template_type] = STATE(3608), - [sym_template_function] = STATE(3035), - [sym_raw_string_literal] = STATE(1900), - [sym_co_await_expression] = STATE(3035), - [sym_new_expression] = STATE(3035), - [sym_delete_expression] = STATE(3035), - [sym_requires_clause] = STATE(3035), - [sym_requires_expression] = STATE(3035), - [sym_lambda_expression] = STATE(3035), - [sym_lambda_capture_specifier] = STATE(4465), - [sym__unary_left_fold] = STATE(6210), - [sym__unary_right_fold] = STATE(6208), - [sym__binary_fold] = STATE(6207), - [sym_fold_expression] = STATE(3035), - [sym_parameter_pack_expansion] = STATE(3035), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4551), - [sym_qualified_identifier] = STATE(2713), - [sym_qualified_type_identifier] = STATE(3593), - [sym_user_defined_literal] = STATE(3035), - [aux_sym__declaration_specifiers_repeat1] = STATE(2191), - [aux_sym_sized_type_specifier_repeat1] = STATE(3171), - [sym_identifier] = ACTIONS(1433), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1435), - [anon_sym_RPAREN] = ACTIONS(1437), - [anon_sym_LPAREN2] = ACTIONS(1439), - [anon_sym_BANG] = ACTIONS(1441), - [anon_sym_TILDE] = ACTIONS(1441), - [anon_sym_DASH] = ACTIONS(1443), - [anon_sym_PLUS] = ACTIONS(1443), - [anon_sym_STAR] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(1445), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(1447), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1413), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(994), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(61), - [anon_sym_unsigned] = ACTIONS(61), - [anon_sym_long] = ACTIONS(61), - [anon_sym_short] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(1449), - [anon_sym_enum] = ACTIONS(1451), - [anon_sym_class] = ACTIONS(1453), - [anon_sym_struct] = ACTIONS(1455), - [anon_sym_union] = ACTIONS(1457), - [anon_sym_not] = ACTIONS(1443), - [anon_sym_compl] = ACTIONS(1443), - [anon_sym_DASH_DASH] = ACTIONS(1459), - [anon_sym_PLUS_PLUS] = ACTIONS(1459), - [anon_sym_sizeof] = ACTIONS(1461), - [sym_number_literal] = ACTIONS(1463), - [anon_sym_L_SQUOTE] = ACTIONS(1465), - [anon_sym_u_SQUOTE] = ACTIONS(1465), - [anon_sym_U_SQUOTE] = ACTIONS(1465), - [anon_sym_u8_SQUOTE] = ACTIONS(1465), - [anon_sym_SQUOTE] = ACTIONS(1465), - [anon_sym_L_DQUOTE] = ACTIONS(1467), - [anon_sym_u_DQUOTE] = ACTIONS(1467), - [anon_sym_U_DQUOTE] = ACTIONS(1467), - [anon_sym_u8_DQUOTE] = ACTIONS(1467), - [anon_sym_DQUOTE] = ACTIONS(1467), - [sym_true] = ACTIONS(1469), - [sym_false] = ACTIONS(1469), - [sym_null] = ACTIONS(1469), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(107), - [anon_sym_decltype] = ACTIONS(109), - [anon_sym_virtual] = ACTIONS(111), + [sym_declaration] = STATE(112), + [sym_type_definition] = STATE(112), + [sym__declaration_modifiers] = STATE(2514), + [sym__declaration_specifiers] = STATE(4663), + [sym_attribute_specifier] = STATE(2514), + [sym_attribute_declaration] = STATE(1583), + [sym_ms_declspec_modifier] = STATE(2514), + [sym_compound_statement] = STATE(112), + [sym_storage_class_specifier] = STATE(2514), + [sym_type_qualifier] = STATE(2514), + [sym__type_specifier] = STATE(3633), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), + [sym_attributed_statement] = STATE(112), + [sym_labeled_statement] = STATE(112), + [sym_expression_statement] = STATE(112), + [sym_if_statement] = STATE(112), + [sym_switch_statement] = STATE(112), + [sym_while_statement] = STATE(112), + [sym_do_statement] = STATE(112), + [sym_for_statement] = STATE(112), + [sym_return_statement] = STATE(112), + [sym_break_statement] = STATE(112), + [sym_continue_statement] = STATE(112), + [sym_goto_statement] = STATE(112), + [sym__expression] = STATE(4234), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7265), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym__class_name] = STATE(6623), + [sym_virtual] = STATE(2514), + [sym_dependent_type] = STATE(3723), + [sym_template_type] = STATE(3921), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(112), + [sym_co_return_statement] = STATE(112), + [sym_co_yield_statement] = STATE(112), + [sym_throw_statement] = STATE(112), + [sym_try_statement] = STATE(112), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5263), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(3915), + [sym_user_defined_literal] = STATE(3976), + [aux_sym__declaration_specifiers_repeat1] = STATE(2514), + [aux_sym_attributed_declarator_repeat1] = STATE(260), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [aux_sym_case_statement_repeat1] = STATE(112), + [ts_builtin_sym_end] = ACTIONS(1352), + [sym_identifier] = ACTIONS(1624), + [aux_sym_preproc_include_token1] = ACTIONS(1338), + [aux_sym_preproc_def_token1] = ACTIONS(1338), + [aux_sym_preproc_if_token1] = ACTIONS(1338), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1338), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1338), + [sym_preproc_directive] = ACTIONS(1338), + [anon_sym_LPAREN2] = ACTIONS(1340), + [anon_sym_BANG] = ACTIONS(1343), + [anon_sym_TILDE] = ACTIONS(1343), + [anon_sym_DASH] = ACTIONS(1346), + [anon_sym_PLUS] = ACTIONS(1346), + [anon_sym_STAR] = ACTIONS(1349), + [anon_sym_AMP_AMP] = ACTIONS(1352), + [anon_sym_AMP] = ACTIONS(1354), + [anon_sym_SEMI] = ACTIONS(1627), + [anon_sym_typedef] = ACTIONS(1630), + [anon_sym_extern] = ACTIONS(1363), + [anon_sym___attribute__] = ACTIONS(1366), + [anon_sym_COLON_COLON] = ACTIONS(1369), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1372), + [anon_sym___declspec] = ACTIONS(1375), + [anon_sym___based] = ACTIONS(1338), + [anon_sym___cdecl] = ACTIONS(1338), + [anon_sym___clrcall] = ACTIONS(1338), + [anon_sym___stdcall] = ACTIONS(1338), + [anon_sym___fastcall] = ACTIONS(1338), + [anon_sym___thiscall] = ACTIONS(1338), + [anon_sym___vectorcall] = ACTIONS(1338), + [anon_sym_LBRACE] = ACTIONS(1633), + [anon_sym_LBRACK] = ACTIONS(1381), + [anon_sym_static] = ACTIONS(1363), + [anon_sym_register] = ACTIONS(1363), + [anon_sym_inline] = ACTIONS(1363), + [anon_sym_thread_local] = ACTIONS(1363), + [anon_sym_const] = ACTIONS(1384), + [anon_sym_constexpr] = ACTIONS(1384), + [anon_sym_volatile] = ACTIONS(1384), + [anon_sym_restrict] = ACTIONS(1384), + [anon_sym___restrict__] = ACTIONS(1384), + [anon_sym__Atomic] = ACTIONS(1384), + [anon_sym__Noreturn] = ACTIONS(1384), + [anon_sym_noreturn] = ACTIONS(1384), + [anon_sym_mutable] = ACTIONS(1384), + [anon_sym_constinit] = ACTIONS(1384), + [anon_sym_consteval] = ACTIONS(1384), + [anon_sym_signed] = ACTIONS(1387), + [anon_sym_unsigned] = ACTIONS(1387), + [anon_sym_long] = ACTIONS(1387), + [anon_sym_short] = ACTIONS(1387), + [sym_primitive_type] = ACTIONS(1390), + [anon_sym_enum] = ACTIONS(1393), + [anon_sym_class] = ACTIONS(1396), + [anon_sym_struct] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1636), + [anon_sym_else] = ACTIONS(1338), + [anon_sym_switch] = ACTIONS(1639), + [anon_sym_case] = ACTIONS(1338), + [anon_sym_default] = ACTIONS(1338), + [anon_sym_while] = ACTIONS(1642), + [anon_sym_do] = ACTIONS(1645), + [anon_sym_for] = ACTIONS(1648), + [anon_sym_return] = ACTIONS(1651), + [anon_sym_break] = ACTIONS(1654), + [anon_sym_continue] = ACTIONS(1657), + [anon_sym_goto] = ACTIONS(1660), + [anon_sym_not] = ACTIONS(1346), + [anon_sym_compl] = ACTIONS(1346), + [anon_sym_DASH_DASH] = ACTIONS(1432), + [anon_sym_PLUS_PLUS] = ACTIONS(1432), + [anon_sym_sizeof] = ACTIONS(1435), + [anon_sym_offsetof] = ACTIONS(1438), + [anon_sym__Generic] = ACTIONS(1441), + [anon_sym_asm] = ACTIONS(1444), + [anon_sym___asm__] = ACTIONS(1444), + [sym_number_literal] = ACTIONS(1447), + [anon_sym_L_SQUOTE] = ACTIONS(1450), + [anon_sym_u_SQUOTE] = ACTIONS(1450), + [anon_sym_U_SQUOTE] = ACTIONS(1450), + [anon_sym_u8_SQUOTE] = ACTIONS(1450), + [anon_sym_SQUOTE] = ACTIONS(1450), + [anon_sym_L_DQUOTE] = ACTIONS(1453), + [anon_sym_u_DQUOTE] = ACTIONS(1453), + [anon_sym_U_DQUOTE] = ACTIONS(1453), + [anon_sym_u8_DQUOTE] = ACTIONS(1453), + [anon_sym_DQUOTE] = ACTIONS(1453), + [sym_true] = ACTIONS(1456), + [sym_false] = ACTIONS(1456), + [anon_sym_NULL] = ACTIONS(1459), + [anon_sym_nullptr] = ACTIONS(1459), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1462), + [anon_sym_decltype] = ACTIONS(1465), + [anon_sym_virtual] = ACTIONS(1468), + [anon_sym_explicit] = ACTIONS(1338), [anon_sym_typename] = ACTIONS(1471), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1473), - [anon_sym_R_DQUOTE] = ACTIONS(1475), - [anon_sym_LR_DQUOTE] = ACTIONS(1475), - [anon_sym_uR_DQUOTE] = ACTIONS(1475), - [anon_sym_UR_DQUOTE] = ACTIONS(1475), - [anon_sym_u8R_DQUOTE] = ACTIONS(1475), - [anon_sym_co_await] = ACTIONS(1477), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_requires] = ACTIONS(1481), - [sym_this] = ACTIONS(1469), - [sym_nullptr] = ACTIONS(1469), + [anon_sym_template] = ACTIONS(1474), + [anon_sym_operator] = ACTIONS(1338), + [anon_sym_try] = ACTIONS(1663), + [anon_sym_delete] = ACTIONS(1480), + [anon_sym_throw] = ACTIONS(1666), + [anon_sym_namespace] = ACTIONS(1338), + [anon_sym_using] = ACTIONS(1338), + [anon_sym_static_assert] = ACTIONS(1338), + [anon_sym_concept] = ACTIONS(1338), + [anon_sym_co_return] = ACTIONS(1669), + [anon_sym_co_yield] = ACTIONS(1672), + [anon_sym_R_DQUOTE] = ACTIONS(1492), + [anon_sym_LR_DQUOTE] = ACTIONS(1492), + [anon_sym_uR_DQUOTE] = ACTIONS(1492), + [anon_sym_UR_DQUOTE] = ACTIONS(1492), + [anon_sym_u8R_DQUOTE] = ACTIONS(1492), + [anon_sym_co_await] = ACTIONS(1495), + [anon_sym_new] = ACTIONS(1498), + [anon_sym_requires] = ACTIONS(1501), + [sym_this] = ACTIONS(1456), }, [113] = { - [sym__declaration_modifiers] = STATE(2191), - [sym__declaration_specifiers] = STATE(3188), - [sym_attribute_specifier] = STATE(2191), - [sym_attribute_declaration] = STATE(2191), - [sym_ms_declspec_modifier] = STATE(2191), - [sym_storage_class_specifier] = STATE(2191), - [sym_type_qualifier] = STATE(2191), - [sym__type_specifier] = STATE(3156), - [sym_sized_type_specifier] = STATE(3232), - [sym_enum_specifier] = STATE(3232), - [sym_struct_specifier] = STATE(3232), - [sym_union_specifier] = STATE(3232), - [sym_parameter_declaration] = STATE(5540), - [sym__expression] = STATE(2743), - [sym_conditional_expression] = STATE(3035), - [sym_assignment_expression] = STATE(3035), - [sym_pointer_expression] = STATE(2713), - [sym_unary_expression] = STATE(3035), - [sym_binary_expression] = STATE(3035), - [sym_update_expression] = STATE(3035), - [sym_cast_expression] = STATE(3035), - [sym_sizeof_expression] = STATE(3035), - [sym_subscript_expression] = STATE(2713), - [sym_call_expression] = STATE(2713), - [sym_field_expression] = STATE(2713), - [sym_compound_literal_expression] = STATE(3035), - [sym_parenthesized_expression] = STATE(2713), - [sym_char_literal] = STATE(3013), - [sym_concatenated_string] = STATE(3013), - [sym_string_literal] = STATE(1900), - [sym_placeholder_type_specifier] = STATE(3232), - [sym_decltype_auto] = STATE(3279), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3232), - [sym__class_name] = STATE(5990), - [sym_virtual] = STATE(2191), - [sym_dependent_type] = STATE(3232), - [sym_optional_parameter_declaration] = STATE(5540), - [sym_variadic_parameter_declaration] = STATE(5540), - [sym_template_type] = STATE(3608), - [sym_template_function] = STATE(3035), - [sym_raw_string_literal] = STATE(1900), - [sym_co_await_expression] = STATE(3035), - [sym_new_expression] = STATE(3035), - [sym_delete_expression] = STATE(3035), - [sym_requires_clause] = STATE(3035), - [sym_requires_expression] = STATE(3035), - [sym_lambda_expression] = STATE(3035), - [sym_lambda_capture_specifier] = STATE(4465), - [sym__unary_left_fold] = STATE(6354), - [sym__unary_right_fold] = STATE(6353), - [sym__binary_fold] = STATE(6352), - [sym_fold_expression] = STATE(3035), - [sym_parameter_pack_expansion] = STATE(3035), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4551), - [sym_qualified_identifier] = STATE(2713), - [sym_qualified_type_identifier] = STATE(3593), - [sym_user_defined_literal] = STATE(3035), - [aux_sym__declaration_specifiers_repeat1] = STATE(2191), - [aux_sym_sized_type_specifier_repeat1] = STATE(3171), - [sym_identifier] = ACTIONS(1433), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1435), - [anon_sym_RPAREN] = ACTIONS(1437), - [anon_sym_LPAREN2] = ACTIONS(1439), - [anon_sym_BANG] = ACTIONS(1441), - [anon_sym_TILDE] = ACTIONS(1441), - [anon_sym_DASH] = ACTIONS(1443), - [anon_sym_PLUS] = ACTIONS(1443), - [anon_sym_STAR] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(1445), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(1447), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1413), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(994), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(61), - [anon_sym_unsigned] = ACTIONS(61), - [anon_sym_long] = ACTIONS(61), - [anon_sym_short] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(1449), - [anon_sym_enum] = ACTIONS(1451), - [anon_sym_class] = ACTIONS(1453), - [anon_sym_struct] = ACTIONS(1455), - [anon_sym_union] = ACTIONS(1457), - [anon_sym_not] = ACTIONS(1443), - [anon_sym_compl] = ACTIONS(1443), - [anon_sym_DASH_DASH] = ACTIONS(1459), - [anon_sym_PLUS_PLUS] = ACTIONS(1459), - [anon_sym_sizeof] = ACTIONS(1461), - [sym_number_literal] = ACTIONS(1463), - [anon_sym_L_SQUOTE] = ACTIONS(1465), - [anon_sym_u_SQUOTE] = ACTIONS(1465), - [anon_sym_U_SQUOTE] = ACTIONS(1465), - [anon_sym_u8_SQUOTE] = ACTIONS(1465), - [anon_sym_SQUOTE] = ACTIONS(1465), - [anon_sym_L_DQUOTE] = ACTIONS(1467), - [anon_sym_u_DQUOTE] = ACTIONS(1467), - [anon_sym_U_DQUOTE] = ACTIONS(1467), - [anon_sym_u8_DQUOTE] = ACTIONS(1467), - [anon_sym_DQUOTE] = ACTIONS(1467), - [sym_true] = ACTIONS(1469), - [sym_false] = ACTIONS(1469), - [sym_null] = ACTIONS(1469), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(107), - [anon_sym_decltype] = ACTIONS(109), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(1471), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1473), - [anon_sym_R_DQUOTE] = ACTIONS(1475), - [anon_sym_LR_DQUOTE] = ACTIONS(1475), - [anon_sym_uR_DQUOTE] = ACTIONS(1475), - [anon_sym_UR_DQUOTE] = ACTIONS(1475), - [anon_sym_u8R_DQUOTE] = ACTIONS(1475), - [anon_sym_co_await] = ACTIONS(1477), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_requires] = ACTIONS(1481), - [sym_this] = ACTIONS(1469), - [sym_nullptr] = ACTIONS(1469), + [sym_declaration] = STATE(104), + [sym_type_definition] = STATE(104), + [sym__declaration_modifiers] = STATE(2514), + [sym__declaration_specifiers] = STATE(4628), + [sym_attribute_specifier] = STATE(2514), + [sym_attribute_declaration] = STATE(1583), + [sym_ms_declspec_modifier] = STATE(2514), + [sym_compound_statement] = STATE(104), + [sym_storage_class_specifier] = STATE(2514), + [sym_type_qualifier] = STATE(2514), + [sym__type_specifier] = STATE(3633), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), + [sym_attributed_statement] = STATE(104), + [sym_labeled_statement] = STATE(104), + [sym_expression_statement] = STATE(104), + [sym_if_statement] = STATE(104), + [sym_switch_statement] = STATE(104), + [sym_while_statement] = STATE(104), + [sym_do_statement] = STATE(104), + [sym_for_statement] = STATE(104), + [sym_return_statement] = STATE(104), + [sym_break_statement] = STATE(104), + [sym_continue_statement] = STATE(104), + [sym_goto_statement] = STATE(104), + [sym__expression] = STATE(4126), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(6964), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym__class_name] = STATE(6623), + [sym_virtual] = STATE(2514), + [sym_dependent_type] = STATE(3723), + [sym_template_type] = STATE(3921), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(104), + [sym_co_return_statement] = STATE(104), + [sym_co_yield_statement] = STATE(104), + [sym_throw_statement] = STATE(104), + [sym_try_statement] = STATE(104), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5263), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(3915), + [sym_user_defined_literal] = STATE(3976), + [aux_sym__declaration_specifiers_repeat1] = STATE(2514), + [aux_sym_attributed_declarator_repeat1] = STATE(189), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [aux_sym_case_statement_repeat1] = STATE(104), + [sym_identifier] = ACTIONS(1565), + [aux_sym_preproc_include_token1] = ACTIONS(1315), + [aux_sym_preproc_def_token1] = ACTIONS(1315), + [aux_sym_preproc_if_token1] = ACTIONS(1315), + [aux_sym_preproc_if_token2] = ACTIONS(1315), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1315), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1315), + [sym_preproc_directive] = ACTIONS(1315), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP_AMP] = ACTIONS(1321), + [anon_sym_AMP] = ACTIONS(1323), + [anon_sym_SEMI] = ACTIONS(911), + [anon_sym_typedef] = ACTIONS(913), + [anon_sym_extern] = ACTIONS(53), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(1315), + [anon_sym___cdecl] = ACTIONS(1315), + [anon_sym___clrcall] = ACTIONS(1315), + [anon_sym___stdcall] = ACTIONS(1315), + [anon_sym___fastcall] = ACTIONS(1315), + [anon_sym___thiscall] = ACTIONS(1315), + [anon_sym___vectorcall] = ACTIONS(1315), + [anon_sym_LBRACE] = ACTIONS(917), + [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(53), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(921), + [anon_sym_else] = ACTIONS(1315), + [anon_sym_switch] = ACTIONS(923), + [anon_sym_case] = ACTIONS(1315), + [anon_sym_default] = ACTIONS(1315), + [anon_sym_while] = ACTIONS(929), + [anon_sym_do] = ACTIONS(931), + [anon_sym_for] = ACTIONS(933), + [anon_sym_return] = ACTIONS(935), + [anon_sym_break] = ACTIONS(937), + [anon_sym_continue] = ACTIONS(939), + [anon_sym_goto] = ACTIONS(941), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(113), + [anon_sym_decltype] = ACTIONS(115), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_explicit] = ACTIONS(1315), + [anon_sym_typename] = ACTIONS(121), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_operator] = ACTIONS(1315), + [anon_sym_try] = ACTIONS(945), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(947), + [anon_sym_namespace] = ACTIONS(1315), + [anon_sym_using] = ACTIONS(1315), + [anon_sym_static_assert] = ACTIONS(1315), + [anon_sym_concept] = ACTIONS(1315), + [anon_sym_co_return] = ACTIONS(957), + [anon_sym_co_yield] = ACTIONS(959), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [114] = { - [sym__declaration_modifiers] = STATE(2191), - [sym__declaration_specifiers] = STATE(3188), - [sym_attribute_specifier] = STATE(2191), - [sym_attribute_declaration] = STATE(2191), - [sym_ms_declspec_modifier] = STATE(2191), - [sym_storage_class_specifier] = STATE(2191), - [sym_type_qualifier] = STATE(2191), - [sym__type_specifier] = STATE(3156), - [sym_sized_type_specifier] = STATE(3232), - [sym_enum_specifier] = STATE(3232), - [sym_struct_specifier] = STATE(3232), - [sym_union_specifier] = STATE(3232), - [sym_parameter_declaration] = STATE(5540), - [sym__expression] = STATE(2829), - [sym_conditional_expression] = STATE(3035), - [sym_assignment_expression] = STATE(3035), - [sym_pointer_expression] = STATE(2713), - [sym_unary_expression] = STATE(3035), - [sym_binary_expression] = STATE(3035), - [sym_update_expression] = STATE(3035), - [sym_cast_expression] = STATE(3035), - [sym_sizeof_expression] = STATE(3035), - [sym_subscript_expression] = STATE(2713), - [sym_call_expression] = STATE(2713), - [sym_field_expression] = STATE(2713), - [sym_compound_literal_expression] = STATE(3035), - [sym_parenthesized_expression] = STATE(2713), - [sym_char_literal] = STATE(3013), - [sym_concatenated_string] = STATE(3013), - [sym_string_literal] = STATE(1900), - [sym_placeholder_type_specifier] = STATE(3232), - [sym_decltype_auto] = STATE(3279), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3232), - [sym__class_name] = STATE(5990), - [sym_virtual] = STATE(2191), - [sym_dependent_type] = STATE(3232), - [sym_optional_parameter_declaration] = STATE(5540), - [sym_variadic_parameter_declaration] = STATE(5540), - [sym_template_type] = STATE(3608), - [sym_template_function] = STATE(3035), - [sym_raw_string_literal] = STATE(1900), - [sym_co_await_expression] = STATE(3035), - [sym_new_expression] = STATE(3035), - [sym_delete_expression] = STATE(3035), - [sym_requires_clause] = STATE(3035), - [sym_requires_expression] = STATE(3035), - [sym_lambda_expression] = STATE(3035), - [sym_lambda_capture_specifier] = STATE(4465), - [sym__unary_left_fold] = STATE(6628), - [sym__unary_right_fold] = STATE(6395), - [sym__binary_fold] = STATE(6571), - [sym_fold_expression] = STATE(3035), - [sym_parameter_pack_expansion] = STATE(3035), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4551), - [sym_qualified_identifier] = STATE(2713), - [sym_qualified_type_identifier] = STATE(3593), - [sym_user_defined_literal] = STATE(3035), - [aux_sym__declaration_specifiers_repeat1] = STATE(2191), - [aux_sym_sized_type_specifier_repeat1] = STATE(3171), - [sym_identifier] = ACTIONS(1433), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1435), - [anon_sym_RPAREN] = ACTIONS(1437), - [anon_sym_LPAREN2] = ACTIONS(1439), - [anon_sym_BANG] = ACTIONS(1441), - [anon_sym_TILDE] = ACTIONS(1441), - [anon_sym_DASH] = ACTIONS(1443), - [anon_sym_PLUS] = ACTIONS(1443), - [anon_sym_STAR] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(1445), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(1447), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1413), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(994), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(61), - [anon_sym_unsigned] = ACTIONS(61), - [anon_sym_long] = ACTIONS(61), - [anon_sym_short] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(1449), - [anon_sym_enum] = ACTIONS(1451), - [anon_sym_class] = ACTIONS(1453), - [anon_sym_struct] = ACTIONS(1455), - [anon_sym_union] = ACTIONS(1457), - [anon_sym_not] = ACTIONS(1443), - [anon_sym_compl] = ACTIONS(1443), - [anon_sym_DASH_DASH] = ACTIONS(1459), - [anon_sym_PLUS_PLUS] = ACTIONS(1459), - [anon_sym_sizeof] = ACTIONS(1461), - [sym_number_literal] = ACTIONS(1463), - [anon_sym_L_SQUOTE] = ACTIONS(1465), - [anon_sym_u_SQUOTE] = ACTIONS(1465), - [anon_sym_U_SQUOTE] = ACTIONS(1465), - [anon_sym_u8_SQUOTE] = ACTIONS(1465), - [anon_sym_SQUOTE] = ACTIONS(1465), - [anon_sym_L_DQUOTE] = ACTIONS(1467), - [anon_sym_u_DQUOTE] = ACTIONS(1467), - [anon_sym_U_DQUOTE] = ACTIONS(1467), - [anon_sym_u8_DQUOTE] = ACTIONS(1467), - [anon_sym_DQUOTE] = ACTIONS(1467), - [sym_true] = ACTIONS(1469), - [sym_false] = ACTIONS(1469), - [sym_null] = ACTIONS(1469), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(107), - [anon_sym_decltype] = ACTIONS(109), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(1471), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1473), - [anon_sym_R_DQUOTE] = ACTIONS(1475), - [anon_sym_LR_DQUOTE] = ACTIONS(1475), - [anon_sym_uR_DQUOTE] = ACTIONS(1475), - [anon_sym_UR_DQUOTE] = ACTIONS(1475), - [anon_sym_u8R_DQUOTE] = ACTIONS(1475), - [anon_sym_co_await] = ACTIONS(1477), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_requires] = ACTIONS(1481), - [sym_this] = ACTIONS(1469), - [sym_nullptr] = ACTIONS(1469), + [sym_declaration] = STATE(115), + [sym_type_definition] = STATE(115), + [sym__declaration_modifiers] = STATE(2514), + [sym__declaration_specifiers] = STATE(4635), + [sym_attribute_specifier] = STATE(2514), + [sym_attribute_declaration] = STATE(1583), + [sym_ms_declspec_modifier] = STATE(2514), + [sym_compound_statement] = STATE(115), + [sym_storage_class_specifier] = STATE(2514), + [sym_type_qualifier] = STATE(2514), + [sym__type_specifier] = STATE(3633), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), + [sym_attributed_statement] = STATE(115), + [sym_labeled_statement] = STATE(115), + [sym_expression_statement] = STATE(115), + [sym_if_statement] = STATE(115), + [sym_switch_statement] = STATE(115), + [sym_while_statement] = STATE(115), + [sym_do_statement] = STATE(115), + [sym_for_statement] = STATE(115), + [sym_return_statement] = STATE(115), + [sym_break_statement] = STATE(115), + [sym_continue_statement] = STATE(115), + [sym_goto_statement] = STATE(115), + [sym__expression] = STATE(4182), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7590), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym__class_name] = STATE(6623), + [sym_virtual] = STATE(2514), + [sym_dependent_type] = STATE(3723), + [sym_template_type] = STATE(3921), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(115), + [sym_co_return_statement] = STATE(115), + [sym_co_yield_statement] = STATE(115), + [sym_throw_statement] = STATE(115), + [sym_try_statement] = STATE(115), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5263), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(3915), + [sym_user_defined_literal] = STATE(3976), + [aux_sym__declaration_specifiers_repeat1] = STATE(2514), + [aux_sym_attributed_declarator_repeat1] = STATE(309), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [aux_sym_case_statement_repeat1] = STATE(115), + [sym_identifier] = ACTIONS(1567), + [aux_sym_preproc_include_token1] = ACTIONS(1504), + [aux_sym_preproc_def_token1] = ACTIONS(1504), + [aux_sym_preproc_if_token1] = ACTIONS(1504), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1504), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1504), + [sym_preproc_directive] = ACTIONS(1504), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP_AMP] = ACTIONS(1506), + [anon_sym_AMP] = ACTIONS(1323), + [anon_sym_SEMI] = ACTIONS(167), + [anon_sym_typedef] = ACTIONS(169), + [anon_sym_extern] = ACTIONS(53), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(1504), + [anon_sym___cdecl] = ACTIONS(1504), + [anon_sym___clrcall] = ACTIONS(1504), + [anon_sym___stdcall] = ACTIONS(1504), + [anon_sym___fastcall] = ACTIONS(1504), + [anon_sym___thiscall] = ACTIONS(1504), + [anon_sym___vectorcall] = ACTIONS(1504), + [anon_sym_LBRACE] = ACTIONS(738), + [anon_sym_RBRACE] = ACTIONS(1506), + [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(53), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(181), + [anon_sym_else] = ACTIONS(1504), + [anon_sym_switch] = ACTIONS(183), + [anon_sym_case] = ACTIONS(1504), + [anon_sym_default] = ACTIONS(1504), + [anon_sym_while] = ACTIONS(189), + [anon_sym_do] = ACTIONS(191), + [anon_sym_for] = ACTIONS(193), + [anon_sym_return] = ACTIONS(195), + [anon_sym_break] = ACTIONS(197), + [anon_sym_continue] = ACTIONS(199), + [anon_sym_goto] = ACTIONS(201), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(113), + [anon_sym_decltype] = ACTIONS(115), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_explicit] = ACTIONS(1504), + [anon_sym_typename] = ACTIONS(121), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_operator] = ACTIONS(1504), + [anon_sym_try] = ACTIONS(209), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(211), + [anon_sym_namespace] = ACTIONS(1504), + [anon_sym_using] = ACTIONS(1504), + [anon_sym_static_assert] = ACTIONS(1504), + [anon_sym_concept] = ACTIONS(1504), + [anon_sym_co_return] = ACTIONS(221), + [anon_sym_co_yield] = ACTIONS(223), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [115] = { - [sym__declaration_modifiers] = STATE(2191), - [sym__declaration_specifiers] = STATE(3188), - [sym_attribute_specifier] = STATE(2191), - [sym_attribute_declaration] = STATE(2191), - [sym_ms_declspec_modifier] = STATE(2191), - [sym_storage_class_specifier] = STATE(2191), - [sym_type_qualifier] = STATE(2191), - [sym__type_specifier] = STATE(3156), - [sym_sized_type_specifier] = STATE(3232), - [sym_enum_specifier] = STATE(3232), - [sym_struct_specifier] = STATE(3232), - [sym_union_specifier] = STATE(3232), - [sym_parameter_declaration] = STATE(5574), - [sym__expression] = STATE(3450), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_initializer_list] = STATE(5448), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_placeholder_type_specifier] = STATE(3232), - [sym_decltype_auto] = STATE(3279), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3232), - [sym__class_name] = STATE(5753), - [sym_virtual] = STATE(2191), - [sym_dependent_type] = STATE(3232), - [sym_optional_parameter_declaration] = STATE(5574), - [sym_variadic_parameter_declaration] = STATE(5574), - [sym_template_type] = STATE(3608), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4577), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(3593), - [sym_user_defined_literal] = STATE(3365), - [aux_sym__declaration_specifiers_repeat1] = STATE(2191), - [aux_sym_sized_type_specifier_repeat1] = STATE(3171), - [sym_identifier] = ACTIONS(1483), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1485), - [anon_sym_RPAREN] = ACTIONS(1487), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym_declaration] = STATE(116), + [sym_type_definition] = STATE(116), + [sym__declaration_modifiers] = STATE(2514), + [sym__declaration_specifiers] = STATE(4635), + [sym_attribute_specifier] = STATE(2514), + [sym_attribute_declaration] = STATE(1583), + [sym_ms_declspec_modifier] = STATE(2514), + [sym_compound_statement] = STATE(116), + [sym_storage_class_specifier] = STATE(2514), + [sym_type_qualifier] = STATE(2514), + [sym__type_specifier] = STATE(3633), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), + [sym_attributed_statement] = STATE(116), + [sym_labeled_statement] = STATE(116), + [sym_expression_statement] = STATE(116), + [sym_if_statement] = STATE(116), + [sym_switch_statement] = STATE(116), + [sym_while_statement] = STATE(116), + [sym_do_statement] = STATE(116), + [sym_for_statement] = STATE(116), + [sym_return_statement] = STATE(116), + [sym_break_statement] = STATE(116), + [sym_continue_statement] = STATE(116), + [sym_goto_statement] = STATE(116), + [sym__expression] = STATE(4182), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7590), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym__class_name] = STATE(6623), + [sym_virtual] = STATE(2514), + [sym_dependent_type] = STATE(3723), + [sym_template_type] = STATE(3921), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(116), + [sym_co_return_statement] = STATE(116), + [sym_co_yield_statement] = STATE(116), + [sym_throw_statement] = STATE(116), + [sym_try_statement] = STATE(116), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5263), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(3915), + [sym_user_defined_literal] = STATE(3976), + [aux_sym__declaration_specifiers_repeat1] = STATE(2514), + [aux_sym_attributed_declarator_repeat1] = STATE(309), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [aux_sym_case_statement_repeat1] = STATE(116), + [sym_identifier] = ACTIONS(1567), + [aux_sym_preproc_include_token1] = ACTIONS(1331), + [aux_sym_preproc_def_token1] = ACTIONS(1331), + [aux_sym_preproc_if_token1] = ACTIONS(1331), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1331), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1331), + [sym_preproc_directive] = ACTIONS(1331), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1413), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(1489), - [anon_sym_LBRACK] = ACTIONS(994), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(61), - [anon_sym_unsigned] = ACTIONS(61), - [anon_sym_long] = ACTIONS(61), - [anon_sym_short] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(63), - [anon_sym_enum] = ACTIONS(1451), - [anon_sym_class] = ACTIONS(1453), - [anon_sym_struct] = ACTIONS(1455), - [anon_sym_union] = ACTIONS(1457), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP_AMP] = ACTIONS(1333), + [anon_sym_AMP] = ACTIONS(1323), + [anon_sym_SEMI] = ACTIONS(167), + [anon_sym_typedef] = ACTIONS(169), + [anon_sym_extern] = ACTIONS(53), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(1331), + [anon_sym___cdecl] = ACTIONS(1331), + [anon_sym___clrcall] = ACTIONS(1331), + [anon_sym___stdcall] = ACTIONS(1331), + [anon_sym___fastcall] = ACTIONS(1331), + [anon_sym___thiscall] = ACTIONS(1331), + [anon_sym___vectorcall] = ACTIONS(1331), + [anon_sym_LBRACE] = ACTIONS(738), + [anon_sym_RBRACE] = ACTIONS(1333), + [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(53), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(181), + [anon_sym_else] = ACTIONS(1331), + [anon_sym_switch] = ACTIONS(183), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_default] = ACTIONS(1331), + [anon_sym_while] = ACTIONS(189), + [anon_sym_do] = ACTIONS(191), + [anon_sym_for] = ACTIONS(193), + [anon_sym_return] = ACTIONS(195), + [anon_sym_break] = ACTIONS(197), + [anon_sym_continue] = ACTIONS(199), + [anon_sym_goto] = ACTIONS(201), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(107), - [anon_sym_decltype] = ACTIONS(109), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(1471), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(113), + [anon_sym_decltype] = ACTIONS(115), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_explicit] = ACTIONS(1331), + [anon_sym_typename] = ACTIONS(121), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_operator] = ACTIONS(1331), + [anon_sym_try] = ACTIONS(209), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(211), + [anon_sym_namespace] = ACTIONS(1331), + [anon_sym_using] = ACTIONS(1331), + [anon_sym_static_assert] = ACTIONS(1331), + [anon_sym_concept] = ACTIONS(1331), + [anon_sym_co_return] = ACTIONS(221), + [anon_sym_co_yield] = ACTIONS(223), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [116] = { - [sym_ms_based_modifier] = STATE(6104), - [sym__declarator] = STATE(5089), - [sym_parenthesized_declarator] = STATE(4918), - [sym_attributed_declarator] = STATE(4918), - [sym_pointer_declarator] = STATE(4918), - [sym_function_declarator] = STATE(4918), - [sym_array_declarator] = STATE(4918), - [sym_type_qualifier] = STATE(3299), - [sym__type_specifier] = STATE(3894), - [sym_sized_type_specifier] = STATE(2541), - [sym_enum_specifier] = STATE(2541), - [sym_struct_specifier] = STATE(2541), - [sym_union_specifier] = STATE(2541), - [sym__expression] = STATE(2826), - [sym_comma_expression] = STATE(6252), - [sym_conditional_expression] = STATE(3035), - [sym_assignment_expression] = STATE(3035), - [sym_pointer_expression] = STATE(2713), - [sym_unary_expression] = STATE(3035), - [sym_binary_expression] = STATE(3035), - [sym_update_expression] = STATE(3035), - [sym_cast_expression] = STATE(3035), - [sym_type_descriptor] = STATE(6491), - [sym_sizeof_expression] = STATE(3035), - [sym_subscript_expression] = STATE(2713), - [sym_call_expression] = STATE(2713), - [sym_field_expression] = STATE(2713), - [sym_compound_literal_expression] = STATE(3035), - [sym_parenthesized_expression] = STATE(2713), - [sym_char_literal] = STATE(3013), - [sym_concatenated_string] = STATE(3013), - [sym_string_literal] = STATE(1900), - [sym_placeholder_type_specifier] = STATE(2541), - [sym_decltype_auto] = STATE(2540), - [sym_decltype] = STATE(2247), - [sym_class_specifier] = STATE(2541), - [sym__class_name] = STATE(5990), - [sym_dependent_type] = STATE(2541), - [sym_reference_declarator] = STATE(4918), - [sym_structured_binding_declarator] = STATE(4918), - [sym_template_type] = STATE(4288), - [sym_template_function] = STATE(3014), - [sym_raw_string_literal] = STATE(1900), - [sym_co_await_expression] = STATE(3035), - [sym_new_expression] = STATE(3035), - [sym_delete_expression] = STATE(3035), - [sym_requires_clause] = STATE(3035), - [sym_requires_expression] = STATE(3035), - [sym_lambda_expression] = STATE(3035), - [sym_lambda_capture_specifier] = STATE(4465), - [sym__unary_left_fold] = STATE(6490), - [sym__unary_right_fold] = STATE(6489), - [sym__binary_fold] = STATE(6487), - [sym_fold_expression] = STATE(3035), - [sym_parameter_pack_expansion] = STATE(3035), - [sym_destructor_name] = STATE(4918), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4585), - [sym_qualified_identifier] = STATE(2639), - [sym_qualified_type_identifier] = STATE(4356), - [sym_operator_name] = STATE(4918), - [sym_user_defined_literal] = STATE(3035), - [aux_sym_type_definition_repeat1] = STATE(3299), - [aux_sym_sized_type_specifier_repeat1] = STATE(1922), - [sym_identifier] = ACTIONS(1491), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1435), - [anon_sym_LPAREN2] = ACTIONS(1493), - [anon_sym_BANG] = ACTIONS(1441), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_DASH] = ACTIONS(1443), - [anon_sym_PLUS] = ACTIONS(1443), - [anon_sym_STAR] = ACTIONS(1497), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1499), - [anon_sym_COLON_COLON] = ACTIONS(1447), - [anon_sym___based] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(1503), - [anon_sym_unsigned] = ACTIONS(1503), - [anon_sym_long] = ACTIONS(1503), - [anon_sym_short] = ACTIONS(1503), - [sym_primitive_type] = ACTIONS(1505), - [anon_sym_enum] = ACTIONS(1507), - [anon_sym_class] = ACTIONS(1509), - [anon_sym_struct] = ACTIONS(1511), - [anon_sym_union] = ACTIONS(1513), - [anon_sym_not] = ACTIONS(1443), - [anon_sym_compl] = ACTIONS(1443), - [anon_sym_DASH_DASH] = ACTIONS(1459), - [anon_sym_PLUS_PLUS] = ACTIONS(1459), - [anon_sym_sizeof] = ACTIONS(1461), - [sym_number_literal] = ACTIONS(1463), - [anon_sym_L_SQUOTE] = ACTIONS(1465), - [anon_sym_u_SQUOTE] = ACTIONS(1465), - [anon_sym_U_SQUOTE] = ACTIONS(1465), - [anon_sym_u8_SQUOTE] = ACTIONS(1465), - [anon_sym_SQUOTE] = ACTIONS(1465), - [anon_sym_L_DQUOTE] = ACTIONS(1467), - [anon_sym_u_DQUOTE] = ACTIONS(1467), - [anon_sym_U_DQUOTE] = ACTIONS(1467), - [anon_sym_u8_DQUOTE] = ACTIONS(1467), - [anon_sym_DQUOTE] = ACTIONS(1467), - [sym_true] = ACTIONS(1469), - [sym_false] = ACTIONS(1469), - [sym_null] = ACTIONS(1469), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1515), - [anon_sym_decltype] = ACTIONS(1517), - [anon_sym_typename] = ACTIONS(1519), - [anon_sym_template] = ACTIONS(996), - [anon_sym_operator] = ACTIONS(1521), - [anon_sym_delete] = ACTIONS(1473), - [anon_sym_R_DQUOTE] = ACTIONS(1475), - [anon_sym_LR_DQUOTE] = ACTIONS(1475), - [anon_sym_uR_DQUOTE] = ACTIONS(1475), - [anon_sym_UR_DQUOTE] = ACTIONS(1475), - [anon_sym_u8R_DQUOTE] = ACTIONS(1475), - [anon_sym_co_await] = ACTIONS(1477), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_requires] = ACTIONS(1481), - [sym_this] = ACTIONS(1469), - [sym_nullptr] = ACTIONS(1469), + [sym_declaration] = STATE(116), + [sym_type_definition] = STATE(116), + [sym__declaration_modifiers] = STATE(2514), + [sym__declaration_specifiers] = STATE(4635), + [sym_attribute_specifier] = STATE(2514), + [sym_attribute_declaration] = STATE(1583), + [sym_ms_declspec_modifier] = STATE(2514), + [sym_compound_statement] = STATE(116), + [sym_storage_class_specifier] = STATE(2514), + [sym_type_qualifier] = STATE(2514), + [sym__type_specifier] = STATE(3633), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), + [sym_attributed_statement] = STATE(116), + [sym_labeled_statement] = STATE(116), + [sym_expression_statement] = STATE(116), + [sym_if_statement] = STATE(116), + [sym_switch_statement] = STATE(116), + [sym_while_statement] = STATE(116), + [sym_do_statement] = STATE(116), + [sym_for_statement] = STATE(116), + [sym_return_statement] = STATE(116), + [sym_break_statement] = STATE(116), + [sym_continue_statement] = STATE(116), + [sym_goto_statement] = STATE(116), + [sym__expression] = STATE(4182), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7590), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym__class_name] = STATE(6623), + [sym_virtual] = STATE(2514), + [sym_dependent_type] = STATE(3723), + [sym_template_type] = STATE(3921), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(116), + [sym_co_return_statement] = STATE(116), + [sym_co_yield_statement] = STATE(116), + [sym_throw_statement] = STATE(116), + [sym_try_statement] = STATE(116), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5263), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(3915), + [sym_user_defined_literal] = STATE(3976), + [aux_sym__declaration_specifiers_repeat1] = STATE(2514), + [aux_sym_attributed_declarator_repeat1] = STATE(309), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [aux_sym_case_statement_repeat1] = STATE(116), + [sym_identifier] = ACTIONS(1675), + [aux_sym_preproc_include_token1] = ACTIONS(1338), + [aux_sym_preproc_def_token1] = ACTIONS(1338), + [aux_sym_preproc_if_token1] = ACTIONS(1338), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1338), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1338), + [sym_preproc_directive] = ACTIONS(1338), + [anon_sym_LPAREN2] = ACTIONS(1340), + [anon_sym_BANG] = ACTIONS(1343), + [anon_sym_TILDE] = ACTIONS(1343), + [anon_sym_DASH] = ACTIONS(1346), + [anon_sym_PLUS] = ACTIONS(1346), + [anon_sym_STAR] = ACTIONS(1349), + [anon_sym_AMP_AMP] = ACTIONS(1352), + [anon_sym_AMP] = ACTIONS(1354), + [anon_sym_SEMI] = ACTIONS(1678), + [anon_sym_typedef] = ACTIONS(1681), + [anon_sym_extern] = ACTIONS(1363), + [anon_sym___attribute__] = ACTIONS(1366), + [anon_sym_COLON_COLON] = ACTIONS(1369), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1372), + [anon_sym___declspec] = ACTIONS(1375), + [anon_sym___based] = ACTIONS(1338), + [anon_sym___cdecl] = ACTIONS(1338), + [anon_sym___clrcall] = ACTIONS(1338), + [anon_sym___stdcall] = ACTIONS(1338), + [anon_sym___fastcall] = ACTIONS(1338), + [anon_sym___thiscall] = ACTIONS(1338), + [anon_sym___vectorcall] = ACTIONS(1338), + [anon_sym_LBRACE] = ACTIONS(1684), + [anon_sym_RBRACE] = ACTIONS(1352), + [anon_sym_LBRACK] = ACTIONS(1381), + [anon_sym_static] = ACTIONS(1363), + [anon_sym_register] = ACTIONS(1363), + [anon_sym_inline] = ACTIONS(1363), + [anon_sym_thread_local] = ACTIONS(1363), + [anon_sym_const] = ACTIONS(1384), + [anon_sym_constexpr] = ACTIONS(1384), + [anon_sym_volatile] = ACTIONS(1384), + [anon_sym_restrict] = ACTIONS(1384), + [anon_sym___restrict__] = ACTIONS(1384), + [anon_sym__Atomic] = ACTIONS(1384), + [anon_sym__Noreturn] = ACTIONS(1384), + [anon_sym_noreturn] = ACTIONS(1384), + [anon_sym_mutable] = ACTIONS(1384), + [anon_sym_constinit] = ACTIONS(1384), + [anon_sym_consteval] = ACTIONS(1384), + [anon_sym_signed] = ACTIONS(1387), + [anon_sym_unsigned] = ACTIONS(1387), + [anon_sym_long] = ACTIONS(1387), + [anon_sym_short] = ACTIONS(1387), + [sym_primitive_type] = ACTIONS(1390), + [anon_sym_enum] = ACTIONS(1393), + [anon_sym_class] = ACTIONS(1396), + [anon_sym_struct] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1687), + [anon_sym_else] = ACTIONS(1338), + [anon_sym_switch] = ACTIONS(1690), + [anon_sym_case] = ACTIONS(1338), + [anon_sym_default] = ACTIONS(1338), + [anon_sym_while] = ACTIONS(1693), + [anon_sym_do] = ACTIONS(1696), + [anon_sym_for] = ACTIONS(1699), + [anon_sym_return] = ACTIONS(1702), + [anon_sym_break] = ACTIONS(1705), + [anon_sym_continue] = ACTIONS(1708), + [anon_sym_goto] = ACTIONS(1711), + [anon_sym_not] = ACTIONS(1346), + [anon_sym_compl] = ACTIONS(1346), + [anon_sym_DASH_DASH] = ACTIONS(1432), + [anon_sym_PLUS_PLUS] = ACTIONS(1432), + [anon_sym_sizeof] = ACTIONS(1435), + [anon_sym_offsetof] = ACTIONS(1438), + [anon_sym__Generic] = ACTIONS(1441), + [anon_sym_asm] = ACTIONS(1444), + [anon_sym___asm__] = ACTIONS(1444), + [sym_number_literal] = ACTIONS(1447), + [anon_sym_L_SQUOTE] = ACTIONS(1450), + [anon_sym_u_SQUOTE] = ACTIONS(1450), + [anon_sym_U_SQUOTE] = ACTIONS(1450), + [anon_sym_u8_SQUOTE] = ACTIONS(1450), + [anon_sym_SQUOTE] = ACTIONS(1450), + [anon_sym_L_DQUOTE] = ACTIONS(1453), + [anon_sym_u_DQUOTE] = ACTIONS(1453), + [anon_sym_U_DQUOTE] = ACTIONS(1453), + [anon_sym_u8_DQUOTE] = ACTIONS(1453), + [anon_sym_DQUOTE] = ACTIONS(1453), + [sym_true] = ACTIONS(1456), + [sym_false] = ACTIONS(1456), + [anon_sym_NULL] = ACTIONS(1459), + [anon_sym_nullptr] = ACTIONS(1459), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1462), + [anon_sym_decltype] = ACTIONS(1465), + [anon_sym_virtual] = ACTIONS(1468), + [anon_sym_explicit] = ACTIONS(1338), + [anon_sym_typename] = ACTIONS(1471), + [anon_sym_template] = ACTIONS(1474), + [anon_sym_operator] = ACTIONS(1338), + [anon_sym_try] = ACTIONS(1714), + [anon_sym_delete] = ACTIONS(1480), + [anon_sym_throw] = ACTIONS(1717), + [anon_sym_namespace] = ACTIONS(1338), + [anon_sym_using] = ACTIONS(1338), + [anon_sym_static_assert] = ACTIONS(1338), + [anon_sym_concept] = ACTIONS(1338), + [anon_sym_co_return] = ACTIONS(1720), + [anon_sym_co_yield] = ACTIONS(1723), + [anon_sym_R_DQUOTE] = ACTIONS(1492), + [anon_sym_LR_DQUOTE] = ACTIONS(1492), + [anon_sym_uR_DQUOTE] = ACTIONS(1492), + [anon_sym_UR_DQUOTE] = ACTIONS(1492), + [anon_sym_u8R_DQUOTE] = ACTIONS(1492), + [anon_sym_co_await] = ACTIONS(1495), + [anon_sym_new] = ACTIONS(1498), + [anon_sym_requires] = ACTIONS(1501), + [sym_this] = ACTIONS(1456), }, [117] = { - [sym_ms_based_modifier] = STATE(6104), - [sym__declarator] = STATE(5089), - [sym_parenthesized_declarator] = STATE(4918), - [sym_attributed_declarator] = STATE(4918), - [sym_pointer_declarator] = STATE(4918), - [sym_function_declarator] = STATE(4918), - [sym_array_declarator] = STATE(4918), - [sym_type_qualifier] = STATE(3299), - [sym__type_specifier] = STATE(3894), - [sym_sized_type_specifier] = STATE(2541), - [sym_enum_specifier] = STATE(2541), - [sym_struct_specifier] = STATE(2541), - [sym_union_specifier] = STATE(2541), - [sym__expression] = STATE(2705), - [sym_comma_expression] = STATE(6624), - [sym_conditional_expression] = STATE(3035), - [sym_assignment_expression] = STATE(3035), - [sym_pointer_expression] = STATE(2713), - [sym_unary_expression] = STATE(3035), - [sym_binary_expression] = STATE(3035), - [sym_update_expression] = STATE(3035), - [sym_cast_expression] = STATE(3035), - [sym_type_descriptor] = STATE(6355), - [sym_sizeof_expression] = STATE(3035), - [sym_subscript_expression] = STATE(2713), - [sym_call_expression] = STATE(2713), - [sym_field_expression] = STATE(2713), - [sym_compound_literal_expression] = STATE(3035), - [sym_parenthesized_expression] = STATE(2713), - [sym_char_literal] = STATE(3013), - [sym_concatenated_string] = STATE(3013), - [sym_string_literal] = STATE(1900), - [sym_placeholder_type_specifier] = STATE(2541), - [sym_decltype_auto] = STATE(2540), - [sym_decltype] = STATE(2247), - [sym_class_specifier] = STATE(2541), - [sym__class_name] = STATE(5990), - [sym_dependent_type] = STATE(2541), - [sym_reference_declarator] = STATE(4918), - [sym_structured_binding_declarator] = STATE(4918), - [sym_template_type] = STATE(4288), - [sym_template_function] = STATE(3014), - [sym_raw_string_literal] = STATE(1900), - [sym_co_await_expression] = STATE(3035), - [sym_new_expression] = STATE(3035), - [sym_delete_expression] = STATE(3035), - [sym_requires_clause] = STATE(3035), - [sym_requires_expression] = STATE(3035), - [sym_lambda_expression] = STATE(3035), - [sym_lambda_capture_specifier] = STATE(4465), - [sym__unary_left_fold] = STATE(6354), - [sym__unary_right_fold] = STATE(6353), - [sym__binary_fold] = STATE(6352), - [sym_fold_expression] = STATE(3035), - [sym_parameter_pack_expansion] = STATE(3035), - [sym_destructor_name] = STATE(4918), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4585), - [sym_qualified_identifier] = STATE(2639), - [sym_qualified_type_identifier] = STATE(4356), - [sym_operator_name] = STATE(4918), - [sym_user_defined_literal] = STATE(3035), - [aux_sym_type_definition_repeat1] = STATE(3299), - [aux_sym_sized_type_specifier_repeat1] = STATE(1922), - [sym_identifier] = ACTIONS(1491), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1435), - [anon_sym_LPAREN2] = ACTIONS(1493), - [anon_sym_BANG] = ACTIONS(1441), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_DASH] = ACTIONS(1443), - [anon_sym_PLUS] = ACTIONS(1443), - [anon_sym_STAR] = ACTIONS(1497), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1499), - [anon_sym_COLON_COLON] = ACTIONS(1447), - [anon_sym___based] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(1503), - [anon_sym_unsigned] = ACTIONS(1503), - [anon_sym_long] = ACTIONS(1503), - [anon_sym_short] = ACTIONS(1503), - [sym_primitive_type] = ACTIONS(1505), - [anon_sym_enum] = ACTIONS(1507), - [anon_sym_class] = ACTIONS(1509), - [anon_sym_struct] = ACTIONS(1511), - [anon_sym_union] = ACTIONS(1513), - [anon_sym_not] = ACTIONS(1443), - [anon_sym_compl] = ACTIONS(1443), - [anon_sym_DASH_DASH] = ACTIONS(1459), - [anon_sym_PLUS_PLUS] = ACTIONS(1459), - [anon_sym_sizeof] = ACTIONS(1461), - [sym_number_literal] = ACTIONS(1463), - [anon_sym_L_SQUOTE] = ACTIONS(1465), - [anon_sym_u_SQUOTE] = ACTIONS(1465), - [anon_sym_U_SQUOTE] = ACTIONS(1465), - [anon_sym_u8_SQUOTE] = ACTIONS(1465), - [anon_sym_SQUOTE] = ACTIONS(1465), - [anon_sym_L_DQUOTE] = ACTIONS(1467), - [anon_sym_u_DQUOTE] = ACTIONS(1467), - [anon_sym_U_DQUOTE] = ACTIONS(1467), - [anon_sym_u8_DQUOTE] = ACTIONS(1467), - [anon_sym_DQUOTE] = ACTIONS(1467), - [sym_true] = ACTIONS(1469), - [sym_false] = ACTIONS(1469), - [sym_null] = ACTIONS(1469), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1515), - [anon_sym_decltype] = ACTIONS(1517), - [anon_sym_typename] = ACTIONS(1519), - [anon_sym_template] = ACTIONS(996), - [anon_sym_operator] = ACTIONS(1521), - [anon_sym_delete] = ACTIONS(1473), - [anon_sym_R_DQUOTE] = ACTIONS(1475), - [anon_sym_LR_DQUOTE] = ACTIONS(1475), - [anon_sym_uR_DQUOTE] = ACTIONS(1475), - [anon_sym_UR_DQUOTE] = ACTIONS(1475), - [anon_sym_u8R_DQUOTE] = ACTIONS(1475), - [anon_sym_co_await] = ACTIONS(1477), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_requires] = ACTIONS(1481), - [sym_this] = ACTIONS(1469), - [sym_nullptr] = ACTIONS(1469), - }, - [118] = { - [sym_ms_based_modifier] = STATE(6104), - [sym__declarator] = STATE(5089), - [sym_parenthesized_declarator] = STATE(4918), - [sym_attributed_declarator] = STATE(4918), - [sym_pointer_declarator] = STATE(4918), - [sym_function_declarator] = STATE(4918), - [sym_array_declarator] = STATE(4918), - [sym_type_qualifier] = STATE(3299), - [sym__type_specifier] = STATE(3894), - [sym_sized_type_specifier] = STATE(2541), - [sym_enum_specifier] = STATE(2541), - [sym_struct_specifier] = STATE(2541), - [sym_union_specifier] = STATE(2541), - [sym__expression] = STATE(2705), - [sym_comma_expression] = STATE(6624), - [sym_conditional_expression] = STATE(3035), - [sym_assignment_expression] = STATE(3035), - [sym_pointer_expression] = STATE(2713), - [sym_unary_expression] = STATE(3035), - [sym_binary_expression] = STATE(3035), - [sym_update_expression] = STATE(3035), - [sym_cast_expression] = STATE(3035), - [sym_type_descriptor] = STATE(6626), - [sym_sizeof_expression] = STATE(3035), - [sym_subscript_expression] = STATE(2713), - [sym_call_expression] = STATE(2713), - [sym_field_expression] = STATE(2713), - [sym_compound_literal_expression] = STATE(3035), - [sym_parenthesized_expression] = STATE(2713), - [sym_char_literal] = STATE(3013), - [sym_concatenated_string] = STATE(3013), - [sym_string_literal] = STATE(1900), - [sym_placeholder_type_specifier] = STATE(2541), - [sym_decltype_auto] = STATE(2540), - [sym_decltype] = STATE(2247), - [sym_class_specifier] = STATE(2541), - [sym__class_name] = STATE(5990), - [sym_dependent_type] = STATE(2541), - [sym_reference_declarator] = STATE(4918), - [sym_structured_binding_declarator] = STATE(4918), - [sym_template_type] = STATE(4288), - [sym_template_function] = STATE(3014), - [sym_raw_string_literal] = STATE(1900), - [sym_co_await_expression] = STATE(3035), - [sym_new_expression] = STATE(3035), - [sym_delete_expression] = STATE(3035), - [sym_requires_clause] = STATE(3035), - [sym_requires_expression] = STATE(3035), - [sym_lambda_expression] = STATE(3035), - [sym_lambda_capture_specifier] = STATE(4465), - [sym__unary_left_fold] = STATE(6628), - [sym__unary_right_fold] = STATE(6395), - [sym__binary_fold] = STATE(6571), - [sym_fold_expression] = STATE(3035), - [sym_parameter_pack_expansion] = STATE(3035), - [sym_destructor_name] = STATE(4918), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4585), - [sym_qualified_identifier] = STATE(2639), - [sym_qualified_type_identifier] = STATE(4356), - [sym_operator_name] = STATE(4918), - [sym_user_defined_literal] = STATE(3035), - [aux_sym_type_definition_repeat1] = STATE(3299), - [aux_sym_sized_type_specifier_repeat1] = STATE(1922), - [sym_identifier] = ACTIONS(1491), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1435), - [anon_sym_LPAREN2] = ACTIONS(1493), - [anon_sym_BANG] = ACTIONS(1441), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_DASH] = ACTIONS(1443), - [anon_sym_PLUS] = ACTIONS(1443), - [anon_sym_STAR] = ACTIONS(1497), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1499), - [anon_sym_COLON_COLON] = ACTIONS(1447), - [anon_sym___based] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(1503), - [anon_sym_unsigned] = ACTIONS(1503), - [anon_sym_long] = ACTIONS(1503), - [anon_sym_short] = ACTIONS(1503), - [sym_primitive_type] = ACTIONS(1505), - [anon_sym_enum] = ACTIONS(1507), - [anon_sym_class] = ACTIONS(1509), - [anon_sym_struct] = ACTIONS(1511), - [anon_sym_union] = ACTIONS(1513), - [anon_sym_not] = ACTIONS(1443), - [anon_sym_compl] = ACTIONS(1443), - [anon_sym_DASH_DASH] = ACTIONS(1459), - [anon_sym_PLUS_PLUS] = ACTIONS(1459), - [anon_sym_sizeof] = ACTIONS(1461), - [sym_number_literal] = ACTIONS(1463), - [anon_sym_L_SQUOTE] = ACTIONS(1465), - [anon_sym_u_SQUOTE] = ACTIONS(1465), - [anon_sym_U_SQUOTE] = ACTIONS(1465), - [anon_sym_u8_SQUOTE] = ACTIONS(1465), - [anon_sym_SQUOTE] = ACTIONS(1465), - [anon_sym_L_DQUOTE] = ACTIONS(1467), - [anon_sym_u_DQUOTE] = ACTIONS(1467), - [anon_sym_U_DQUOTE] = ACTIONS(1467), - [anon_sym_u8_DQUOTE] = ACTIONS(1467), - [anon_sym_DQUOTE] = ACTIONS(1467), - [sym_true] = ACTIONS(1469), - [sym_false] = ACTIONS(1469), - [sym_null] = ACTIONS(1469), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1515), - [anon_sym_decltype] = ACTIONS(1517), - [anon_sym_typename] = ACTIONS(1519), - [anon_sym_template] = ACTIONS(996), - [anon_sym_operator] = ACTIONS(1521), - [anon_sym_delete] = ACTIONS(1473), - [anon_sym_R_DQUOTE] = ACTIONS(1475), - [anon_sym_LR_DQUOTE] = ACTIONS(1475), - [anon_sym_uR_DQUOTE] = ACTIONS(1475), - [anon_sym_UR_DQUOTE] = ACTIONS(1475), - [anon_sym_u8R_DQUOTE] = ACTIONS(1475), - [anon_sym_co_await] = ACTIONS(1477), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_requires] = ACTIONS(1481), - [sym_this] = ACTIONS(1469), - [sym_nullptr] = ACTIONS(1469), - }, - [119] = { - [sym_ms_based_modifier] = STATE(6104), - [sym__declarator] = STATE(5089), - [sym_parenthesized_declarator] = STATE(4918), - [sym_attributed_declarator] = STATE(4918), - [sym_pointer_declarator] = STATE(4918), - [sym_function_declarator] = STATE(4918), - [sym_array_declarator] = STATE(4918), - [sym_type_qualifier] = STATE(3299), - [sym__type_specifier] = STATE(3894), - [sym_sized_type_specifier] = STATE(2541), - [sym_enum_specifier] = STATE(2541), - [sym_struct_specifier] = STATE(2541), - [sym_union_specifier] = STATE(2541), - [sym__expression] = STATE(2826), - [sym_comma_expression] = STATE(6252), - [sym_conditional_expression] = STATE(3035), - [sym_assignment_expression] = STATE(3035), - [sym_pointer_expression] = STATE(2713), - [sym_unary_expression] = STATE(3035), - [sym_binary_expression] = STATE(3035), - [sym_update_expression] = STATE(3035), - [sym_cast_expression] = STATE(3035), - [sym_type_descriptor] = STATE(6258), - [sym_sizeof_expression] = STATE(3035), - [sym_subscript_expression] = STATE(2713), - [sym_call_expression] = STATE(2713), - [sym_field_expression] = STATE(2713), - [sym_compound_literal_expression] = STATE(3035), - [sym_parenthesized_expression] = STATE(2713), - [sym_char_literal] = STATE(3013), - [sym_concatenated_string] = STATE(3013), - [sym_string_literal] = STATE(1900), - [sym_placeholder_type_specifier] = STATE(2541), - [sym_decltype_auto] = STATE(2540), - [sym_decltype] = STATE(2247), - [sym_class_specifier] = STATE(2541), - [sym__class_name] = STATE(5990), - [sym_dependent_type] = STATE(2541), - [sym_reference_declarator] = STATE(4918), - [sym_structured_binding_declarator] = STATE(4918), - [sym_template_type] = STATE(4288), - [sym_template_function] = STATE(3014), - [sym_raw_string_literal] = STATE(1900), - [sym_co_await_expression] = STATE(3035), - [sym_new_expression] = STATE(3035), - [sym_delete_expression] = STATE(3035), - [sym_requires_clause] = STATE(3035), - [sym_requires_expression] = STATE(3035), - [sym_lambda_expression] = STATE(3035), - [sym_lambda_capture_specifier] = STATE(4465), - [sym__unary_left_fold] = STATE(6259), - [sym__unary_right_fold] = STATE(6262), - [sym__binary_fold] = STATE(6267), - [sym_fold_expression] = STATE(3035), - [sym_parameter_pack_expansion] = STATE(3035), - [sym_destructor_name] = STATE(4918), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4585), - [sym_qualified_identifier] = STATE(2639), - [sym_qualified_type_identifier] = STATE(4356), - [sym_operator_name] = STATE(4918), - [sym_user_defined_literal] = STATE(3035), - [aux_sym_type_definition_repeat1] = STATE(3299), - [aux_sym_sized_type_specifier_repeat1] = STATE(1922), - [sym_identifier] = ACTIONS(1491), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1435), - [anon_sym_LPAREN2] = ACTIONS(1493), - [anon_sym_BANG] = ACTIONS(1441), - [anon_sym_TILDE] = ACTIONS(1495), - [anon_sym_DASH] = ACTIONS(1443), - [anon_sym_PLUS] = ACTIONS(1443), - [anon_sym_STAR] = ACTIONS(1497), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1499), - [anon_sym_COLON_COLON] = ACTIONS(1447), - [anon_sym___based] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(1503), - [anon_sym_unsigned] = ACTIONS(1503), - [anon_sym_long] = ACTIONS(1503), - [anon_sym_short] = ACTIONS(1503), - [sym_primitive_type] = ACTIONS(1505), - [anon_sym_enum] = ACTIONS(1507), - [anon_sym_class] = ACTIONS(1509), - [anon_sym_struct] = ACTIONS(1511), - [anon_sym_union] = ACTIONS(1513), - [anon_sym_not] = ACTIONS(1443), - [anon_sym_compl] = ACTIONS(1443), - [anon_sym_DASH_DASH] = ACTIONS(1459), - [anon_sym_PLUS_PLUS] = ACTIONS(1459), - [anon_sym_sizeof] = ACTIONS(1461), - [sym_number_literal] = ACTIONS(1463), - [anon_sym_L_SQUOTE] = ACTIONS(1465), - [anon_sym_u_SQUOTE] = ACTIONS(1465), - [anon_sym_U_SQUOTE] = ACTIONS(1465), - [anon_sym_u8_SQUOTE] = ACTIONS(1465), - [anon_sym_SQUOTE] = ACTIONS(1465), - [anon_sym_L_DQUOTE] = ACTIONS(1467), - [anon_sym_u_DQUOTE] = ACTIONS(1467), - [anon_sym_U_DQUOTE] = ACTIONS(1467), - [anon_sym_u8_DQUOTE] = ACTIONS(1467), - [anon_sym_DQUOTE] = ACTIONS(1467), - [sym_true] = ACTIONS(1469), - [sym_false] = ACTIONS(1469), - [sym_null] = ACTIONS(1469), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1515), - [anon_sym_decltype] = ACTIONS(1517), - [anon_sym_typename] = ACTIONS(1519), - [anon_sym_template] = ACTIONS(996), - [anon_sym_operator] = ACTIONS(1521), - [anon_sym_delete] = ACTIONS(1473), - [anon_sym_R_DQUOTE] = ACTIONS(1475), - [anon_sym_LR_DQUOTE] = ACTIONS(1475), - [anon_sym_uR_DQUOTE] = ACTIONS(1475), - [anon_sym_UR_DQUOTE] = ACTIONS(1475), - [anon_sym_u8R_DQUOTE] = ACTIONS(1475), - [anon_sym_co_await] = ACTIONS(1477), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_requires] = ACTIONS(1481), - [sym_this] = ACTIONS(1469), - [sym_nullptr] = ACTIONS(1469), - }, - [120] = { - [sym__declaration_modifiers] = STATE(2179), - [sym__declaration_specifiers] = STATE(4010), - [sym_attribute_specifier] = STATE(2179), - [sym_attribute_declaration] = STATE(2179), - [sym_ms_declspec_modifier] = STATE(2179), - [sym_storage_class_specifier] = STATE(2179), - [sym_type_qualifier] = STATE(2179), - [sym__type_specifier] = STATE(3156), - [sym_sized_type_specifier] = STATE(3232), - [sym_enum_specifier] = STATE(3232), - [sym_struct_specifier] = STATE(3232), - [sym_union_specifier] = STATE(3232), - [sym__expression] = STATE(3600), - [sym_comma_expression] = STATE(6051), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_placeholder_type_specifier] = STATE(3232), - [sym_decltype_auto] = STATE(3279), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3232), - [sym__class_name] = STATE(5753), - [sym_virtual] = STATE(2179), - [sym_dependent_type] = STATE(3232), - [sym_template_type] = STATE(3608), - [sym_template_function] = STATE(3365), - [sym_condition_declaration] = STATE(6051), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4580), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(3593), - [sym_user_defined_literal] = STATE(3365), - [aux_sym__declaration_specifiers_repeat1] = STATE(2179), - [aux_sym_sized_type_specifier_repeat1] = STATE(3171), - [sym_identifier] = ACTIONS(1411), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym_declaration] = STATE(120), + [sym_type_definition] = STATE(120), + [sym__declaration_modifiers] = STATE(2514), + [sym__declaration_specifiers] = STATE(4629), + [sym_attribute_specifier] = STATE(2514), + [sym_attribute_declaration] = STATE(1583), + [sym_ms_declspec_modifier] = STATE(2514), + [sym_compound_statement] = STATE(120), + [sym_storage_class_specifier] = STATE(2514), + [sym_type_qualifier] = STATE(2514), + [sym__type_specifier] = STATE(3633), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), + [sym_attributed_statement] = STATE(120), + [sym_labeled_statement] = STATE(120), + [sym_expression_statement] = STATE(120), + [sym_if_statement] = STATE(120), + [sym_switch_statement] = STATE(120), + [sym_while_statement] = STATE(120), + [sym_do_statement] = STATE(120), + [sym_for_statement] = STATE(120), + [sym_return_statement] = STATE(120), + [sym_break_statement] = STATE(120), + [sym_continue_statement] = STATE(120), + [sym_goto_statement] = STATE(120), + [sym__expression] = STATE(4212), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7175), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym__class_name] = STATE(6623), + [sym_virtual] = STATE(2514), + [sym_dependent_type] = STATE(3723), + [sym_template_type] = STATE(3921), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(120), + [sym_co_return_statement] = STATE(120), + [sym_co_yield_statement] = STATE(120), + [sym_throw_statement] = STATE(120), + [sym_try_statement] = STATE(120), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5263), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(3915), + [sym_user_defined_literal] = STATE(3976), + [aux_sym__declaration_specifiers_repeat1] = STATE(2514), + [aux_sym_attributed_declarator_repeat1] = STATE(179), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [aux_sym_case_statement_repeat1] = STATE(120), + [sym_identifier] = ACTIONS(1726), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1413), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(994), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(61), - [anon_sym_unsigned] = ACTIONS(61), - [anon_sym_long] = ACTIONS(61), - [anon_sym_short] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(63), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(1728), + [anon_sym_typedef] = ACTIONS(1730), + [anon_sym_extern] = ACTIONS(53), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(1732), + [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(53), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(1734), + [anon_sym_else] = ACTIONS(1315), + [anon_sym_switch] = ACTIONS(1736), + [anon_sym_while] = ACTIONS(1738), + [anon_sym_do] = ACTIONS(1740), + [anon_sym_for] = ACTIONS(1742), + [anon_sym_return] = ACTIONS(1744), + [anon_sym_break] = ACTIONS(1746), + [anon_sym_continue] = ACTIONS(1748), + [anon_sym_goto] = ACTIONS(1750), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(107), - [anon_sym_decltype] = ACTIONS(109), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(115), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), - }, - [121] = { - [sym__expression] = STATE(2601), - [sym_conditional_expression] = STATE(2574), - [sym_assignment_expression] = STATE(2574), - [sym_pointer_expression] = STATE(2578), - [sym_unary_expression] = STATE(2574), - [sym_binary_expression] = STATE(2574), - [sym_update_expression] = STATE(2574), - [sym_cast_expression] = STATE(2574), - [sym_sizeof_expression] = STATE(2574), - [sym_subscript_expression] = STATE(2578), - [sym_call_expression] = STATE(2578), - [sym_field_expression] = STATE(2578), - [sym_compound_literal_expression] = STATE(2574), - [sym_parenthesized_expression] = STATE(2578), - [sym_initializer_list] = STATE(2600), - [sym_char_literal] = STATE(2207), - [sym_concatenated_string] = STATE(2207), - [sym_string_literal] = STATE(1820), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5944), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(2574), - [sym_raw_string_literal] = STATE(1820), - [sym_co_await_expression] = STATE(2574), - [sym_new_expression] = STATE(2574), - [sym_delete_expression] = STATE(2574), - [sym_requires_clause] = STATE(2574), - [sym_requires_expression] = STATE(2574), - [sym_lambda_expression] = STATE(2574), - [sym_lambda_capture_specifier] = STATE(4479), - [sym_fold_expression] = STATE(2574), - [sym_parameter_pack_expansion] = STATE(2574), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2578), - [sym_qualified_type_identifier] = STATE(5944), - [sym_user_defined_literal] = STATE(2574), - [sym_identifier] = ACTIONS(1523), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1525), - [anon_sym_COMMA] = ACTIONS(1525), - [anon_sym_RPAREN] = ACTIONS(1525), - [anon_sym_LPAREN2] = ACTIONS(1527), - [anon_sym_BANG] = ACTIONS(1529), - [anon_sym_TILDE] = ACTIONS(1531), - [anon_sym_DASH] = ACTIONS(1529), - [anon_sym_PLUS] = ACTIONS(1529), - [anon_sym_STAR] = ACTIONS(990), - [anon_sym_SLASH] = ACTIONS(1533), - [anon_sym_PERCENT] = ACTIONS(1533), - [anon_sym_PIPE_PIPE] = ACTIONS(1525), - [anon_sym_AMP_AMP] = ACTIONS(1525), - [anon_sym_PIPE] = ACTIONS(1533), - [anon_sym_CARET] = ACTIONS(1533), - [anon_sym_AMP] = ACTIONS(990), - [anon_sym_EQ_EQ] = ACTIONS(1525), - [anon_sym_BANG_EQ] = ACTIONS(1525), - [anon_sym_GT] = ACTIONS(1533), - [anon_sym_GT_EQ] = ACTIONS(1525), - [anon_sym_LT_EQ] = ACTIONS(1533), - [anon_sym_LT] = ACTIONS(1533), - [anon_sym_LT_LT] = ACTIONS(1533), - [anon_sym_GT_GT] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1525), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACE] = ACTIONS(1537), - [anon_sym_RBRACE] = ACTIONS(1525), - [anon_sym_LBRACK] = ACTIONS(1539), - [anon_sym_RBRACK] = ACTIONS(1525), - [anon_sym_EQ] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_QMARK] = ACTIONS(1525), - [anon_sym_STAR_EQ] = ACTIONS(1525), - [anon_sym_SLASH_EQ] = ACTIONS(1525), - [anon_sym_PERCENT_EQ] = ACTIONS(1525), - [anon_sym_PLUS_EQ] = ACTIONS(1525), - [anon_sym_DASH_EQ] = ACTIONS(1525), - [anon_sym_LT_LT_EQ] = ACTIONS(1525), - [anon_sym_GT_GT_EQ] = ACTIONS(1525), - [anon_sym_AMP_EQ] = ACTIONS(1525), - [anon_sym_CARET_EQ] = ACTIONS(1525), - [anon_sym_PIPE_EQ] = ACTIONS(1525), - [anon_sym_and_eq] = ACTIONS(1533), - [anon_sym_or_eq] = ACTIONS(1533), - [anon_sym_xor_eq] = ACTIONS(1533), - [anon_sym_not] = ACTIONS(1529), - [anon_sym_compl] = ACTIONS(1529), - [anon_sym_LT_EQ_GT] = ACTIONS(1525), - [anon_sym_or] = ACTIONS(1533), - [anon_sym_and] = ACTIONS(1533), - [anon_sym_bitor] = ACTIONS(1533), - [anon_sym_xor] = ACTIONS(1533), - [anon_sym_bitand] = ACTIONS(1533), - [anon_sym_not_eq] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1543), - [anon_sym_PLUS_PLUS] = ACTIONS(1543), - [anon_sym_sizeof] = ACTIONS(1545), - [anon_sym_DOT] = ACTIONS(1533), - [anon_sym_DASH_GT] = ACTIONS(1525), - [sym_number_literal] = ACTIONS(1547), - [anon_sym_L_SQUOTE] = ACTIONS(1549), - [anon_sym_u_SQUOTE] = ACTIONS(1549), - [anon_sym_U_SQUOTE] = ACTIONS(1549), - [anon_sym_u8_SQUOTE] = ACTIONS(1549), - [anon_sym_SQUOTE] = ACTIONS(1549), - [anon_sym_L_DQUOTE] = ACTIONS(1551), - [anon_sym_u_DQUOTE] = ACTIONS(1551), - [anon_sym_U_DQUOTE] = ACTIONS(1551), - [anon_sym_u8_DQUOTE] = ACTIONS(1551), - [anon_sym_DQUOTE] = ACTIONS(1551), - [sym_true] = ACTIONS(1553), - [sym_false] = ACTIONS(1553), - [sym_null] = ACTIONS(1553), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1557), - [anon_sym_R_DQUOTE] = ACTIONS(1559), - [anon_sym_LR_DQUOTE] = ACTIONS(1559), - [anon_sym_uR_DQUOTE] = ACTIONS(1559), - [anon_sym_UR_DQUOTE] = ACTIONS(1559), - [anon_sym_u8R_DQUOTE] = ACTIONS(1559), - [anon_sym_co_await] = ACTIONS(1561), - [anon_sym_new] = ACTIONS(1563), - [anon_sym_requires] = ACTIONS(1565), - [sym_this] = ACTIONS(1553), - [sym_nullptr] = ACTIONS(1553), - }, - [122] = { - [sym__expression] = STATE(2686), - [sym_conditional_expression] = STATE(2786), - [sym_assignment_expression] = STATE(2786), - [sym_pointer_expression] = STATE(2784), - [sym_unary_expression] = STATE(2786), - [sym_binary_expression] = STATE(2786), - [sym_update_expression] = STATE(2786), - [sym_cast_expression] = STATE(2786), - [sym_sizeof_expression] = STATE(2786), - [sym_subscript_expression] = STATE(2784), - [sym_call_expression] = STATE(2784), - [sym_field_expression] = STATE(2784), - [sym_compound_literal_expression] = STATE(2786), - [sym_parenthesized_expression] = STATE(2784), - [sym_initializer_list] = STATE(2714), - [sym_char_literal] = STATE(2651), - [sym_concatenated_string] = STATE(2651), - [sym_string_literal] = STATE(1840), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5891), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(2786), - [sym_raw_string_literal] = STATE(1840), - [sym_co_await_expression] = STATE(2786), - [sym_new_expression] = STATE(2786), - [sym_delete_expression] = STATE(2786), - [sym_requires_clause] = STATE(2786), - [sym_requires_expression] = STATE(2786), - [sym_lambda_expression] = STATE(2786), - [sym_lambda_capture_specifier] = STATE(4484), - [sym_fold_expression] = STATE(2786), - [sym_parameter_pack_expansion] = STATE(2786), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4584), - [sym_qualified_identifier] = STATE(2784), - [sym_qualified_type_identifier] = STATE(5891), - [sym_user_defined_literal] = STATE(2786), - [sym_identifier] = ACTIONS(1567), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1525), - [anon_sym_COMMA] = ACTIONS(1525), - [anon_sym_RPAREN] = ACTIONS(1525), - [anon_sym_LPAREN2] = ACTIONS(1569), - [anon_sym_BANG] = ACTIONS(1571), - [anon_sym_TILDE] = ACTIONS(1573), - [anon_sym_DASH] = ACTIONS(1571), - [anon_sym_PLUS] = ACTIONS(1571), - [anon_sym_STAR] = ACTIONS(1575), - [anon_sym_SLASH] = ACTIONS(1533), - [anon_sym_PERCENT] = ACTIONS(1533), - [anon_sym_PIPE_PIPE] = ACTIONS(1525), - [anon_sym_AMP_AMP] = ACTIONS(1525), - [anon_sym_PIPE] = ACTIONS(1533), - [anon_sym_CARET] = ACTIONS(1533), - [anon_sym_AMP] = ACTIONS(1575), - [anon_sym_EQ_EQ] = ACTIONS(1525), - [anon_sym_BANG_EQ] = ACTIONS(1525), - [anon_sym_GT] = ACTIONS(1533), - [anon_sym_GT_EQ] = ACTIONS(1525), - [anon_sym_LT_EQ] = ACTIONS(1533), - [anon_sym_LT] = ACTIONS(1533), - [anon_sym_LT_LT] = ACTIONS(1533), - [anon_sym_GT_GT] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1577), - [anon_sym_LBRACE] = ACTIONS(1579), - [anon_sym_LBRACK] = ACTIONS(1539), - [anon_sym_EQ] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1581), - [anon_sym_QMARK] = ACTIONS(1525), - [anon_sym_STAR_EQ] = ACTIONS(1525), - [anon_sym_SLASH_EQ] = ACTIONS(1525), - [anon_sym_PERCENT_EQ] = ACTIONS(1525), - [anon_sym_PLUS_EQ] = ACTIONS(1525), - [anon_sym_DASH_EQ] = ACTIONS(1525), - [anon_sym_LT_LT_EQ] = ACTIONS(1525), - [anon_sym_GT_GT_EQ] = ACTIONS(1525), - [anon_sym_AMP_EQ] = ACTIONS(1525), - [anon_sym_CARET_EQ] = ACTIONS(1525), - [anon_sym_PIPE_EQ] = ACTIONS(1525), - [anon_sym_and_eq] = ACTIONS(1533), - [anon_sym_or_eq] = ACTIONS(1533), - [anon_sym_xor_eq] = ACTIONS(1533), - [anon_sym_not] = ACTIONS(1571), - [anon_sym_compl] = ACTIONS(1571), - [anon_sym_LT_EQ_GT] = ACTIONS(1525), - [anon_sym_or] = ACTIONS(1533), - [anon_sym_and] = ACTIONS(1533), - [anon_sym_bitor] = ACTIONS(1533), - [anon_sym_xor] = ACTIONS(1533), - [anon_sym_bitand] = ACTIONS(1533), - [anon_sym_not_eq] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1583), - [anon_sym_PLUS_PLUS] = ACTIONS(1583), - [anon_sym_sizeof] = ACTIONS(1585), - [anon_sym_DOT] = ACTIONS(1533), - [anon_sym_DASH_GT] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1587), - [anon_sym_L_SQUOTE] = ACTIONS(1589), - [anon_sym_u_SQUOTE] = ACTIONS(1589), - [anon_sym_U_SQUOTE] = ACTIONS(1589), - [anon_sym_u8_SQUOTE] = ACTIONS(1589), - [anon_sym_SQUOTE] = ACTIONS(1589), - [anon_sym_L_DQUOTE] = ACTIONS(1591), - [anon_sym_u_DQUOTE] = ACTIONS(1591), - [anon_sym_U_DQUOTE] = ACTIONS(1591), - [anon_sym_u8_DQUOTE] = ACTIONS(1591), - [anon_sym_DQUOTE] = ACTIONS(1591), - [sym_true] = ACTIONS(1593), - [sym_false] = ACTIONS(1593), - [sym_null] = ACTIONS(1593), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1595), - [anon_sym_R_DQUOTE] = ACTIONS(1597), - [anon_sym_LR_DQUOTE] = ACTIONS(1597), - [anon_sym_uR_DQUOTE] = ACTIONS(1597), - [anon_sym_UR_DQUOTE] = ACTIONS(1597), - [anon_sym_u8R_DQUOTE] = ACTIONS(1597), - [anon_sym_co_await] = ACTIONS(1599), - [anon_sym_new] = ACTIONS(1601), - [anon_sym_requires] = ACTIONS(1603), - [anon_sym_DOT_STAR] = ACTIONS(1525), - [anon_sym_DASH_GT_STAR] = ACTIONS(1525), - [sym_this] = ACTIONS(1593), - [sym_nullptr] = ACTIONS(1593), - }, - [123] = { - [sym__expression] = STATE(2846), - [sym_conditional_expression] = STATE(2940), - [sym_assignment_expression] = STATE(2940), - [sym_pointer_expression] = STATE(2933), - [sym_unary_expression] = STATE(2940), - [sym_binary_expression] = STATE(2940), - [sym_update_expression] = STATE(2940), - [sym_cast_expression] = STATE(2940), - [sym_sizeof_expression] = STATE(2940), - [sym_subscript_expression] = STATE(2933), - [sym_call_expression] = STATE(2933), - [sym_field_expression] = STATE(2933), - [sym_compound_literal_expression] = STATE(2940), - [sym_parenthesized_expression] = STATE(2933), - [sym_initializer_list] = STATE(2945), - [sym_char_literal] = STATE(2845), - [sym_concatenated_string] = STATE(2845), - [sym_string_literal] = STATE(1861), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5801), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(2940), - [sym_raw_string_literal] = STATE(1861), - [sym_co_await_expression] = STATE(2940), - [sym_new_expression] = STATE(2940), - [sym_delete_expression] = STATE(2940), - [sym_requires_clause] = STATE(2940), - [sym_requires_expression] = STATE(2940), - [sym_lambda_expression] = STATE(2940), - [sym_lambda_capture_specifier] = STATE(4464), - [sym_fold_expression] = STATE(2940), - [sym_parameter_pack_expansion] = STATE(2940), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4570), - [sym_qualified_identifier] = STATE(2933), - [sym_qualified_type_identifier] = STATE(5801), - [sym_user_defined_literal] = STATE(2940), - [sym_identifier] = ACTIONS(1605), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1525), - [anon_sym_COMMA] = ACTIONS(1525), - [anon_sym_LPAREN2] = ACTIONS(1607), - [anon_sym_BANG] = ACTIONS(1609), - [anon_sym_TILDE] = ACTIONS(1611), - [anon_sym_DASH] = ACTIONS(1609), - [anon_sym_PLUS] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(1613), - [anon_sym_SLASH] = ACTIONS(1533), - [anon_sym_PERCENT] = ACTIONS(1533), - [anon_sym_PIPE_PIPE] = ACTIONS(1525), - [anon_sym_AMP_AMP] = ACTIONS(1525), - [anon_sym_PIPE] = ACTIONS(1533), - [anon_sym_CARET] = ACTIONS(1533), - [anon_sym_AMP] = ACTIONS(1613), - [anon_sym_EQ_EQ] = ACTIONS(1525), - [anon_sym_BANG_EQ] = ACTIONS(1525), - [anon_sym_GT] = ACTIONS(1533), - [anon_sym_GT_EQ] = ACTIONS(1533), - [anon_sym_LT_EQ] = ACTIONS(1533), - [anon_sym_LT] = ACTIONS(1533), - [anon_sym_LT_LT] = ACTIONS(1533), - [anon_sym_GT_GT] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_LBRACE] = ACTIONS(1617), - [anon_sym_LBRACK] = ACTIONS(1539), - [anon_sym_EQ] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1619), - [anon_sym_QMARK] = ACTIONS(1525), - [anon_sym_STAR_EQ] = ACTIONS(1525), - [anon_sym_SLASH_EQ] = ACTIONS(1525), - [anon_sym_PERCENT_EQ] = ACTIONS(1525), - [anon_sym_PLUS_EQ] = ACTIONS(1525), - [anon_sym_DASH_EQ] = ACTIONS(1525), - [anon_sym_LT_LT_EQ] = ACTIONS(1525), - [anon_sym_GT_GT_EQ] = ACTIONS(1533), - [anon_sym_AMP_EQ] = ACTIONS(1525), - [anon_sym_CARET_EQ] = ACTIONS(1525), - [anon_sym_PIPE_EQ] = ACTIONS(1525), - [anon_sym_and_eq] = ACTIONS(1533), - [anon_sym_or_eq] = ACTIONS(1533), - [anon_sym_xor_eq] = ACTIONS(1533), - [anon_sym_not] = ACTIONS(1609), - [anon_sym_compl] = ACTIONS(1609), - [anon_sym_LT_EQ_GT] = ACTIONS(1525), - [anon_sym_or] = ACTIONS(1533), - [anon_sym_and] = ACTIONS(1533), - [anon_sym_bitor] = ACTIONS(1533), - [anon_sym_xor] = ACTIONS(1533), - [anon_sym_bitand] = ACTIONS(1533), - [anon_sym_not_eq] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1621), - [anon_sym_PLUS_PLUS] = ACTIONS(1621), - [anon_sym_sizeof] = ACTIONS(1623), - [anon_sym_DOT] = ACTIONS(1533), - [anon_sym_DASH_GT] = ACTIONS(1525), - [sym_number_literal] = ACTIONS(1625), - [anon_sym_L_SQUOTE] = ACTIONS(1627), - [anon_sym_u_SQUOTE] = ACTIONS(1627), - [anon_sym_U_SQUOTE] = ACTIONS(1627), - [anon_sym_u8_SQUOTE] = ACTIONS(1627), - [anon_sym_SQUOTE] = ACTIONS(1627), - [anon_sym_L_DQUOTE] = ACTIONS(1629), - [anon_sym_u_DQUOTE] = ACTIONS(1629), - [anon_sym_U_DQUOTE] = ACTIONS(1629), - [anon_sym_u8_DQUOTE] = ACTIONS(1629), - [anon_sym_DQUOTE] = ACTIONS(1629), - [sym_true] = ACTIONS(1631), - [sym_false] = ACTIONS(1631), - [sym_null] = ACTIONS(1631), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_GT2] = ACTIONS(1525), - [anon_sym_delete] = ACTIONS(1633), - [anon_sym_R_DQUOTE] = ACTIONS(1635), - [anon_sym_LR_DQUOTE] = ACTIONS(1635), - [anon_sym_uR_DQUOTE] = ACTIONS(1635), - [anon_sym_UR_DQUOTE] = ACTIONS(1635), - [anon_sym_u8R_DQUOTE] = ACTIONS(1635), - [anon_sym_co_await] = ACTIONS(1637), - [anon_sym_new] = ACTIONS(1639), - [anon_sym_requires] = ACTIONS(1641), - [sym_this] = ACTIONS(1631), - [sym_nullptr] = ACTIONS(1631), - }, - [124] = { - [sym__expression] = STATE(2975), - [sym_conditional_expression] = STATE(3035), - [sym_assignment_expression] = STATE(3035), - [sym_pointer_expression] = STATE(2713), - [sym_unary_expression] = STATE(3035), - [sym_binary_expression] = STATE(3035), - [sym_update_expression] = STATE(3035), - [sym_cast_expression] = STATE(3035), - [sym_sizeof_expression] = STATE(3035), - [sym_subscript_expression] = STATE(2713), - [sym_call_expression] = STATE(2713), - [sym_field_expression] = STATE(2713), - [sym_compound_literal_expression] = STATE(3035), - [sym_parenthesized_expression] = STATE(2713), - [sym_initializer_list] = STATE(3061), - [sym_char_literal] = STATE(3013), - [sym_concatenated_string] = STATE(3013), - [sym_string_literal] = STATE(1900), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5990), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3035), - [sym_raw_string_literal] = STATE(1900), - [sym_co_await_expression] = STATE(3035), - [sym_new_expression] = STATE(3035), - [sym_delete_expression] = STATE(3035), - [sym_requires_clause] = STATE(3035), - [sym_requires_expression] = STATE(3035), - [sym_lambda_expression] = STATE(3035), - [sym_lambda_capture_specifier] = STATE(4465), - [sym_fold_expression] = STATE(3035), - [sym_parameter_pack_expansion] = STATE(3035), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4584), - [sym_qualified_identifier] = STATE(2713), - [sym_qualified_type_identifier] = STATE(5990), - [sym_user_defined_literal] = STATE(3035), - [sym_identifier] = ACTIONS(1643), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1525), - [anon_sym_COMMA] = ACTIONS(1525), - [anon_sym_RPAREN] = ACTIONS(1525), - [anon_sym_LPAREN2] = ACTIONS(1439), - [anon_sym_BANG] = ACTIONS(1443), - [anon_sym_TILDE] = ACTIONS(1441), - [anon_sym_DASH] = ACTIONS(1443), - [anon_sym_PLUS] = ACTIONS(1443), - [anon_sym_STAR] = ACTIONS(1575), - [anon_sym_SLASH] = ACTIONS(1533), - [anon_sym_PERCENT] = ACTIONS(1533), - [anon_sym_PIPE_PIPE] = ACTIONS(1525), - [anon_sym_AMP_AMP] = ACTIONS(1525), - [anon_sym_PIPE] = ACTIONS(1533), - [anon_sym_CARET] = ACTIONS(1533), - [anon_sym_AMP] = ACTIONS(1575), - [anon_sym_EQ_EQ] = ACTIONS(1525), - [anon_sym_BANG_EQ] = ACTIONS(1525), - [anon_sym_GT] = ACTIONS(1533), - [anon_sym_GT_EQ] = ACTIONS(1525), - [anon_sym_LT_EQ] = ACTIONS(1533), - [anon_sym_LT] = ACTIONS(1533), - [anon_sym_LT_LT] = ACTIONS(1533), - [anon_sym_GT_GT] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(1645), - [anon_sym_LBRACK] = ACTIONS(1539), - [anon_sym_EQ] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1581), - [anon_sym_QMARK] = ACTIONS(1525), - [anon_sym_STAR_EQ] = ACTIONS(1525), - [anon_sym_SLASH_EQ] = ACTIONS(1525), - [anon_sym_PERCENT_EQ] = ACTIONS(1525), - [anon_sym_PLUS_EQ] = ACTIONS(1525), - [anon_sym_DASH_EQ] = ACTIONS(1525), - [anon_sym_LT_LT_EQ] = ACTIONS(1525), - [anon_sym_GT_GT_EQ] = ACTIONS(1525), - [anon_sym_AMP_EQ] = ACTIONS(1525), - [anon_sym_CARET_EQ] = ACTIONS(1525), - [anon_sym_PIPE_EQ] = ACTIONS(1525), - [anon_sym_not] = ACTIONS(1443), - [anon_sym_compl] = ACTIONS(1443), - [anon_sym_LT_EQ_GT] = ACTIONS(1525), - [anon_sym_or] = ACTIONS(1533), - [anon_sym_and] = ACTIONS(1533), - [anon_sym_bitor] = ACTIONS(1533), - [anon_sym_xor] = ACTIONS(1533), - [anon_sym_bitand] = ACTIONS(1533), - [anon_sym_not_eq] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1459), - [anon_sym_PLUS_PLUS] = ACTIONS(1459), - [anon_sym_sizeof] = ACTIONS(1461), - [anon_sym_DOT] = ACTIONS(1533), - [anon_sym_DASH_GT] = ACTIONS(1533), - [sym_number_literal] = ACTIONS(1463), - [anon_sym_L_SQUOTE] = ACTIONS(1465), - [anon_sym_u_SQUOTE] = ACTIONS(1465), - [anon_sym_U_SQUOTE] = ACTIONS(1465), - [anon_sym_u8_SQUOTE] = ACTIONS(1465), - [anon_sym_SQUOTE] = ACTIONS(1465), - [anon_sym_L_DQUOTE] = ACTIONS(1467), - [anon_sym_u_DQUOTE] = ACTIONS(1467), - [anon_sym_U_DQUOTE] = ACTIONS(1467), - [anon_sym_u8_DQUOTE] = ACTIONS(1467), - [anon_sym_DQUOTE] = ACTIONS(1467), - [sym_true] = ACTIONS(1469), - [sym_false] = ACTIONS(1469), - [sym_null] = ACTIONS(1469), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1473), - [anon_sym_R_DQUOTE] = ACTIONS(1475), - [anon_sym_LR_DQUOTE] = ACTIONS(1475), - [anon_sym_uR_DQUOTE] = ACTIONS(1475), - [anon_sym_UR_DQUOTE] = ACTIONS(1475), - [anon_sym_u8R_DQUOTE] = ACTIONS(1475), - [anon_sym_co_await] = ACTIONS(1477), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_requires] = ACTIONS(1481), - [anon_sym_DOT_STAR] = ACTIONS(1525), - [anon_sym_DASH_GT_STAR] = ACTIONS(1525), - [sym_this] = ACTIONS(1469), - [sym_nullptr] = ACTIONS(1469), - }, - [125] = { - [sym__expression] = STATE(2986), - [sym_conditional_expression] = STATE(2574), - [sym_assignment_expression] = STATE(2574), - [sym_pointer_expression] = STATE(2578), - [sym_unary_expression] = STATE(2574), - [sym_binary_expression] = STATE(2574), - [sym_update_expression] = STATE(2574), - [sym_cast_expression] = STATE(2574), - [sym_sizeof_expression] = STATE(2574), - [sym_subscript_expression] = STATE(2578), - [sym_call_expression] = STATE(2578), - [sym_field_expression] = STATE(2578), - [sym_compound_literal_expression] = STATE(2574), - [sym_parenthesized_expression] = STATE(2578), - [sym_initializer_list] = STATE(2600), - [sym_char_literal] = STATE(2207), - [sym_concatenated_string] = STATE(2207), - [sym_string_literal] = STATE(1820), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5944), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(2574), - [sym_raw_string_literal] = STATE(1820), - [sym_co_await_expression] = STATE(2574), - [sym_new_expression] = STATE(2574), - [sym_delete_expression] = STATE(2574), - [sym_requires_clause] = STATE(2574), - [sym_requires_expression] = STATE(2574), - [sym_lambda_expression] = STATE(2574), - [sym_lambda_capture_specifier] = STATE(4479), - [sym_fold_expression] = STATE(2574), - [sym_parameter_pack_expansion] = STATE(2574), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2578), - [sym_qualified_type_identifier] = STATE(5944), - [sym_user_defined_literal] = STATE(2574), - [sym_identifier] = ACTIONS(1523), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1525), - [anon_sym_LPAREN2] = ACTIONS(1647), - [anon_sym_BANG] = ACTIONS(1649), - [anon_sym_TILDE] = ACTIONS(1651), - [anon_sym_DASH] = ACTIONS(1649), - [anon_sym_PLUS] = ACTIONS(1649), - [anon_sym_STAR] = ACTIONS(1653), - [anon_sym_SLASH] = ACTIONS(1533), - [anon_sym_PERCENT] = ACTIONS(1533), - [anon_sym_PIPE_PIPE] = ACTIONS(1525), - [anon_sym_AMP_AMP] = ACTIONS(1525), - [anon_sym_PIPE] = ACTIONS(1533), - [anon_sym_CARET] = ACTIONS(1533), - [anon_sym_AMP] = ACTIONS(1653), - [anon_sym_EQ_EQ] = ACTIONS(1525), - [anon_sym_BANG_EQ] = ACTIONS(1525), - [anon_sym_GT] = ACTIONS(1533), - [anon_sym_GT_EQ] = ACTIONS(1525), - [anon_sym_LT_EQ] = ACTIONS(1533), - [anon_sym_LT] = ACTIONS(1533), - [anon_sym_LT_LT] = ACTIONS(1533), - [anon_sym_GT_GT] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(1655), - [anon_sym_LBRACE] = ACTIONS(1537), - [anon_sym_LBRACK] = ACTIONS(1539), - [anon_sym_EQ] = ACTIONS(1533), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_COLON] = ACTIONS(1533), - [anon_sym_QMARK] = ACTIONS(1525), - [anon_sym_STAR_EQ] = ACTIONS(1525), - [anon_sym_SLASH_EQ] = ACTIONS(1525), - [anon_sym_PERCENT_EQ] = ACTIONS(1525), - [anon_sym_PLUS_EQ] = ACTIONS(1525), - [anon_sym_DASH_EQ] = ACTIONS(1525), - [anon_sym_LT_LT_EQ] = ACTIONS(1525), - [anon_sym_GT_GT_EQ] = ACTIONS(1525), - [anon_sym_AMP_EQ] = ACTIONS(1525), - [anon_sym_CARET_EQ] = ACTIONS(1525), - [anon_sym_PIPE_EQ] = ACTIONS(1525), - [anon_sym_and_eq] = ACTIONS(1533), - [anon_sym_or_eq] = ACTIONS(1533), - [anon_sym_xor_eq] = ACTIONS(1533), - [anon_sym_not] = ACTIONS(1649), - [anon_sym_compl] = ACTIONS(1649), - [anon_sym_LT_EQ_GT] = ACTIONS(1525), - [anon_sym_or] = ACTIONS(1533), - [anon_sym_and] = ACTIONS(1533), - [anon_sym_bitor] = ACTIONS(1533), - [anon_sym_xor] = ACTIONS(1533), - [anon_sym_bitand] = ACTIONS(1533), - [anon_sym_not_eq] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(1657), - [anon_sym_PLUS_PLUS] = ACTIONS(1657), - [anon_sym_sizeof] = ACTIONS(1659), - [anon_sym_DOT] = ACTIONS(1533), - [anon_sym_DASH_GT] = ACTIONS(1525), - [sym_number_literal] = ACTIONS(1547), - [anon_sym_L_SQUOTE] = ACTIONS(1549), - [anon_sym_u_SQUOTE] = ACTIONS(1549), - [anon_sym_U_SQUOTE] = ACTIONS(1549), - [anon_sym_u8_SQUOTE] = ACTIONS(1549), - [anon_sym_SQUOTE] = ACTIONS(1549), - [anon_sym_L_DQUOTE] = ACTIONS(1551), - [anon_sym_u_DQUOTE] = ACTIONS(1551), - [anon_sym_U_DQUOTE] = ACTIONS(1551), - [anon_sym_u8_DQUOTE] = ACTIONS(1551), - [anon_sym_DQUOTE] = ACTIONS(1551), - [sym_true] = ACTIONS(1553), - [sym_false] = ACTIONS(1553), - [sym_null] = ACTIONS(1553), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1661), - [anon_sym_R_DQUOTE] = ACTIONS(1559), - [anon_sym_LR_DQUOTE] = ACTIONS(1559), - [anon_sym_uR_DQUOTE] = ACTIONS(1559), - [anon_sym_UR_DQUOTE] = ACTIONS(1559), - [anon_sym_u8R_DQUOTE] = ACTIONS(1559), - [anon_sym_co_await] = ACTIONS(1663), - [anon_sym_new] = ACTIONS(1563), - [anon_sym_requires] = ACTIONS(1565), - [sym_this] = ACTIONS(1553), - [sym_nullptr] = ACTIONS(1553), - }, - [126] = { - [sym_preproc_def] = STATE(128), - [sym_preproc_function_def] = STATE(128), - [sym_preproc_call] = STATE(128), - [sym_preproc_if_in_field_declaration_list] = STATE(128), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(128), - [sym_preproc_else_in_field_declaration_list] = STATE(6567), - [sym_preproc_elif_in_field_declaration_list] = STATE(6567), - [sym_type_definition] = STATE(128), - [sym__declaration_modifiers] = STATE(3225), - [sym__declaration_specifiers] = STATE(4166), - [sym_attribute_specifier] = STATE(3225), - [sym_attribute_declaration] = STATE(3225), - [sym_ms_declspec_modifier] = STATE(3225), - [sym_ms_based_modifier] = STATE(6104), - [sym__declarator] = STATE(5113), - [sym_parenthesized_declarator] = STATE(4918), - [sym_attributed_declarator] = STATE(4918), - [sym_pointer_declarator] = STATE(4918), - [sym_function_declarator] = STATE(4752), - [sym_array_declarator] = STATE(4918), - [sym_storage_class_specifier] = STATE(3225), - [sym_type_qualifier] = STATE(3225), - [sym__type_specifier] = STATE(3337), - [sym_sized_type_specifier] = STATE(3601), - [sym_enum_specifier] = STATE(3601), - [sym_struct_specifier] = STATE(3601), - [sym_union_specifier] = STATE(3601), - [sym__field_declaration_list_item] = STATE(128), - [sym_field_declaration] = STATE(128), - [sym_placeholder_type_specifier] = STATE(3601), - [sym_decltype_auto] = STATE(3558), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3601), - [sym_virtual] = STATE(3225), - [sym_explicit_function_specifier] = STATE(1945), - [sym_dependent_type] = STATE(3601), - [sym_template_declaration] = STATE(128), - [sym_operator_cast] = STATE(5126), - [sym_inline_method_definition] = STATE(128), - [sym__constructor_specifiers] = STATE(1945), - [sym_operator_cast_definition] = STATE(128), - [sym_operator_cast_declaration] = STATE(128), - [sym_constructor_or_destructor_definition] = STATE(128), - [sym_constructor_or_destructor_declaration] = STATE(128), - [sym_friend_declaration] = STATE(128), - [sym_access_specifier] = STATE(6576), - [sym_reference_declarator] = STATE(4918), - [sym_structured_binding_declarator] = STATE(4918), - [sym_template_type] = STATE(3198), - [sym_template_function] = STATE(4918), - [sym_using_declaration] = STATE(128), - [sym_alias_declaration] = STATE(128), - [sym_static_assert_declaration] = STATE(128), - [sym_destructor_name] = STATE(4918), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4455), - [sym_qualified_identifier] = STATE(4918), - [sym_qualified_type_identifier] = STATE(3554), - [sym_qualified_operator_cast_identifier] = STATE(5126), - [sym_operator_name] = STATE(4918), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(128), - [aux_sym__declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_sized_type_specifier_repeat1] = STATE(3584), - [aux_sym_operator_cast_definition_repeat1] = STATE(1945), - [sym_identifier] = ACTIONS(1665), - [aux_sym_preproc_def_token1] = ACTIONS(1667), - [aux_sym_preproc_if_token1] = ACTIONS(1669), - [aux_sym_preproc_if_token2] = ACTIONS(1671), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1673), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1673), - [aux_sym_preproc_else_token1] = ACTIONS(1675), - [aux_sym_preproc_elif_token1] = ACTIONS(1677), - [sym_preproc_directive] = ACTIONS(1679), - [anon_sym_LPAREN2] = ACTIONS(1681), - [anon_sym_TILDE] = ACTIONS(1683), - [anon_sym_STAR] = ACTIONS(1685), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1687), - [anon_sym_typedef] = ACTIONS(1689), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(1691), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1413), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1693), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(1695), - [anon_sym_unsigned] = ACTIONS(1695), - [anon_sym_long] = ACTIONS(1695), - [anon_sym_short] = ACTIONS(1695), - [sym_primitive_type] = ACTIONS(1697), - [anon_sym_enum] = ACTIONS(1699), - [anon_sym_class] = ACTIONS(1701), - [anon_sym_struct] = ACTIONS(1703), - [anon_sym_union] = ACTIONS(1705), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1707), - [anon_sym_decltype] = ACTIONS(1709), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_explicit] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(1711), - [anon_sym_template] = ACTIONS(1713), - [anon_sym_operator] = ACTIONS(119), - [anon_sym_friend] = ACTIONS(1715), - [anon_sym_public] = ACTIONS(1717), - [anon_sym_private] = ACTIONS(1717), - [anon_sym_protected] = ACTIONS(1717), - [anon_sym_using] = ACTIONS(1719), - [anon_sym_static_assert] = ACTIONS(1721), - }, - [127] = { - [sym_preproc_def] = STATE(131), - [sym_preproc_function_def] = STATE(131), - [sym_preproc_call] = STATE(131), - [sym_preproc_if_in_field_declaration_list] = STATE(131), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(131), - [sym_preproc_else_in_field_declaration_list] = STATE(6304), - [sym_preproc_elif_in_field_declaration_list] = STATE(6304), - [sym_type_definition] = STATE(131), - [sym__declaration_modifiers] = STATE(3225), - [sym__declaration_specifiers] = STATE(4166), - [sym_attribute_specifier] = STATE(3225), - [sym_attribute_declaration] = STATE(3225), - [sym_ms_declspec_modifier] = STATE(3225), - [sym_ms_based_modifier] = STATE(6104), - [sym__declarator] = STATE(5113), - [sym_parenthesized_declarator] = STATE(4918), - [sym_attributed_declarator] = STATE(4918), - [sym_pointer_declarator] = STATE(4918), - [sym_function_declarator] = STATE(4752), - [sym_array_declarator] = STATE(4918), - [sym_storage_class_specifier] = STATE(3225), - [sym_type_qualifier] = STATE(3225), - [sym__type_specifier] = STATE(3337), - [sym_sized_type_specifier] = STATE(3601), - [sym_enum_specifier] = STATE(3601), - [sym_struct_specifier] = STATE(3601), - [sym_union_specifier] = STATE(3601), - [sym__field_declaration_list_item] = STATE(131), - [sym_field_declaration] = STATE(131), - [sym_placeholder_type_specifier] = STATE(3601), - [sym_decltype_auto] = STATE(3558), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3601), - [sym_virtual] = STATE(3225), - [sym_explicit_function_specifier] = STATE(1945), - [sym_dependent_type] = STATE(3601), - [sym_template_declaration] = STATE(131), - [sym_operator_cast] = STATE(5126), - [sym_inline_method_definition] = STATE(131), - [sym__constructor_specifiers] = STATE(1945), - [sym_operator_cast_definition] = STATE(131), - [sym_operator_cast_declaration] = STATE(131), - [sym_constructor_or_destructor_definition] = STATE(131), - [sym_constructor_or_destructor_declaration] = STATE(131), - [sym_friend_declaration] = STATE(131), - [sym_access_specifier] = STATE(6576), - [sym_reference_declarator] = STATE(4918), - [sym_structured_binding_declarator] = STATE(4918), - [sym_template_type] = STATE(3198), - [sym_template_function] = STATE(4918), - [sym_using_declaration] = STATE(131), - [sym_alias_declaration] = STATE(131), - [sym_static_assert_declaration] = STATE(131), - [sym_destructor_name] = STATE(4918), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4455), - [sym_qualified_identifier] = STATE(4918), - [sym_qualified_type_identifier] = STATE(3554), - [sym_qualified_operator_cast_identifier] = STATE(5126), - [sym_operator_name] = STATE(4918), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(131), - [aux_sym__declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_sized_type_specifier_repeat1] = STATE(3584), - [aux_sym_operator_cast_definition_repeat1] = STATE(1945), - [sym_identifier] = ACTIONS(1665), - [aux_sym_preproc_def_token1] = ACTIONS(1667), - [aux_sym_preproc_if_token1] = ACTIONS(1669), - [aux_sym_preproc_if_token2] = ACTIONS(1723), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1673), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1673), - [aux_sym_preproc_else_token1] = ACTIONS(1675), - [aux_sym_preproc_elif_token1] = ACTIONS(1677), - [sym_preproc_directive] = ACTIONS(1679), - [anon_sym_LPAREN2] = ACTIONS(1681), - [anon_sym_TILDE] = ACTIONS(1683), - [anon_sym_STAR] = ACTIONS(1685), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1687), - [anon_sym_typedef] = ACTIONS(1689), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(1691), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1413), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1693), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(1695), - [anon_sym_unsigned] = ACTIONS(1695), - [anon_sym_long] = ACTIONS(1695), - [anon_sym_short] = ACTIONS(1695), - [sym_primitive_type] = ACTIONS(1697), - [anon_sym_enum] = ACTIONS(1699), - [anon_sym_class] = ACTIONS(1701), - [anon_sym_struct] = ACTIONS(1703), - [anon_sym_union] = ACTIONS(1705), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1707), - [anon_sym_decltype] = ACTIONS(1709), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_explicit] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(1711), - [anon_sym_template] = ACTIONS(1713), - [anon_sym_operator] = ACTIONS(119), - [anon_sym_friend] = ACTIONS(1715), - [anon_sym_public] = ACTIONS(1717), - [anon_sym_private] = ACTIONS(1717), - [anon_sym_protected] = ACTIONS(1717), - [anon_sym_using] = ACTIONS(1719), - [anon_sym_static_assert] = ACTIONS(1721), - }, - [128] = { - [sym_preproc_def] = STATE(291), - [sym_preproc_function_def] = STATE(291), - [sym_preproc_call] = STATE(291), - [sym_preproc_if_in_field_declaration_list] = STATE(291), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(291), - [sym_preproc_else_in_field_declaration_list] = STATE(6492), - [sym_preproc_elif_in_field_declaration_list] = STATE(6492), - [sym_type_definition] = STATE(291), - [sym__declaration_modifiers] = STATE(3225), - [sym__declaration_specifiers] = STATE(4166), - [sym_attribute_specifier] = STATE(3225), - [sym_attribute_declaration] = STATE(3225), - [sym_ms_declspec_modifier] = STATE(3225), - [sym_ms_based_modifier] = STATE(6104), - [sym__declarator] = STATE(5113), - [sym_parenthesized_declarator] = STATE(4918), - [sym_attributed_declarator] = STATE(4918), - [sym_pointer_declarator] = STATE(4918), - [sym_function_declarator] = STATE(4752), - [sym_array_declarator] = STATE(4918), - [sym_storage_class_specifier] = STATE(3225), - [sym_type_qualifier] = STATE(3225), - [sym__type_specifier] = STATE(3337), - [sym_sized_type_specifier] = STATE(3601), - [sym_enum_specifier] = STATE(3601), - [sym_struct_specifier] = STATE(3601), - [sym_union_specifier] = STATE(3601), - [sym__field_declaration_list_item] = STATE(291), - [sym_field_declaration] = STATE(291), - [sym_placeholder_type_specifier] = STATE(3601), - [sym_decltype_auto] = STATE(3558), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3601), - [sym_virtual] = STATE(3225), - [sym_explicit_function_specifier] = STATE(1945), - [sym_dependent_type] = STATE(3601), - [sym_template_declaration] = STATE(291), - [sym_operator_cast] = STATE(5126), - [sym_inline_method_definition] = STATE(291), - [sym__constructor_specifiers] = STATE(1945), - [sym_operator_cast_definition] = STATE(291), - [sym_operator_cast_declaration] = STATE(291), - [sym_constructor_or_destructor_definition] = STATE(291), - [sym_constructor_or_destructor_declaration] = STATE(291), - [sym_friend_declaration] = STATE(291), - [sym_access_specifier] = STATE(6576), - [sym_reference_declarator] = STATE(4918), - [sym_structured_binding_declarator] = STATE(4918), - [sym_template_type] = STATE(3198), - [sym_template_function] = STATE(4918), - [sym_using_declaration] = STATE(291), - [sym_alias_declaration] = STATE(291), - [sym_static_assert_declaration] = STATE(291), - [sym_destructor_name] = STATE(4918), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4455), - [sym_qualified_identifier] = STATE(4918), - [sym_qualified_type_identifier] = STATE(3554), - [sym_qualified_operator_cast_identifier] = STATE(5126), - [sym_operator_name] = STATE(4918), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(291), - [aux_sym__declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_sized_type_specifier_repeat1] = STATE(3584), - [aux_sym_operator_cast_definition_repeat1] = STATE(1945), - [sym_identifier] = ACTIONS(1665), - [aux_sym_preproc_def_token1] = ACTIONS(1667), - [aux_sym_preproc_if_token1] = ACTIONS(1669), - [aux_sym_preproc_if_token2] = ACTIONS(1725), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1673), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1673), - [aux_sym_preproc_else_token1] = ACTIONS(1675), - [aux_sym_preproc_elif_token1] = ACTIONS(1677), - [sym_preproc_directive] = ACTIONS(1679), - [anon_sym_LPAREN2] = ACTIONS(1681), - [anon_sym_TILDE] = ACTIONS(1683), - [anon_sym_STAR] = ACTIONS(1685), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1687), - [anon_sym_typedef] = ACTIONS(1689), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(1691), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1413), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1693), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(1695), - [anon_sym_unsigned] = ACTIONS(1695), - [anon_sym_long] = ACTIONS(1695), - [anon_sym_short] = ACTIONS(1695), - [sym_primitive_type] = ACTIONS(1697), - [anon_sym_enum] = ACTIONS(1699), - [anon_sym_class] = ACTIONS(1701), - [anon_sym_struct] = ACTIONS(1703), - [anon_sym_union] = ACTIONS(1705), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1707), - [anon_sym_decltype] = ACTIONS(1709), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_explicit] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(1711), - [anon_sym_template] = ACTIONS(1713), - [anon_sym_operator] = ACTIONS(119), - [anon_sym_friend] = ACTIONS(1715), - [anon_sym_public] = ACTIONS(1717), - [anon_sym_private] = ACTIONS(1717), - [anon_sym_protected] = ACTIONS(1717), - [anon_sym_using] = ACTIONS(1719), - [anon_sym_static_assert] = ACTIONS(1721), - }, - [129] = { - [ts_builtin_sym_end] = ACTIONS(1727), - [sym_identifier] = ACTIONS(1729), - [aux_sym_preproc_include_token1] = ACTIONS(1729), - [aux_sym_preproc_def_token1] = ACTIONS(1729), - [anon_sym_COMMA] = ACTIONS(1727), - [anon_sym_RPAREN] = ACTIONS(1727), - [aux_sym_preproc_if_token1] = ACTIONS(1729), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1729), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1729), - [sym_preproc_directive] = ACTIONS(1729), - [anon_sym_LPAREN2] = ACTIONS(1727), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_PLUS] = ACTIONS(1729), - [anon_sym_STAR] = ACTIONS(1727), - [anon_sym_PIPE_PIPE] = ACTIONS(1727), - [anon_sym_AMP_AMP] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1729), - [anon_sym_SEMI] = ACTIONS(1727), - [anon_sym_typedef] = ACTIONS(1729), - [anon_sym_extern] = ACTIONS(1729), - [anon_sym___attribute__] = ACTIONS(1729), - [anon_sym_COLON_COLON] = ACTIONS(1727), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1727), - [anon_sym___declspec] = ACTIONS(1729), - [anon_sym___based] = ACTIONS(1729), - [anon_sym___cdecl] = ACTIONS(1729), - [anon_sym___clrcall] = ACTIONS(1729), - [anon_sym___stdcall] = ACTIONS(1729), - [anon_sym___fastcall] = ACTIONS(1729), - [anon_sym___thiscall] = ACTIONS(1729), - [anon_sym___vectorcall] = ACTIONS(1729), - [anon_sym_LBRACE] = ACTIONS(1727), - [anon_sym_LBRACK] = ACTIONS(1729), - [anon_sym_EQ] = ACTIONS(1727), - [anon_sym_static] = ACTIONS(1729), - [anon_sym_register] = ACTIONS(1729), - [anon_sym_inline] = ACTIONS(1729), - [anon_sym_thread_local] = ACTIONS(1729), - [anon_sym_const] = ACTIONS(1729), - [anon_sym_volatile] = ACTIONS(1729), - [anon_sym_restrict] = ACTIONS(1729), - [anon_sym__Atomic] = ACTIONS(1729), - [anon_sym_mutable] = ACTIONS(1729), - [anon_sym_constexpr] = ACTIONS(1729), - [anon_sym_constinit] = ACTIONS(1729), - [anon_sym_consteval] = ACTIONS(1729), - [anon_sym_signed] = ACTIONS(1729), - [anon_sym_unsigned] = ACTIONS(1729), - [anon_sym_long] = ACTIONS(1729), - [anon_sym_short] = ACTIONS(1729), - [sym_primitive_type] = ACTIONS(1729), - [anon_sym_enum] = ACTIONS(1729), - [anon_sym_class] = ACTIONS(1729), - [anon_sym_struct] = ACTIONS(1729), - [anon_sym_union] = ACTIONS(1729), - [anon_sym_if] = ACTIONS(1729), - [anon_sym_else] = ACTIONS(1729), - [anon_sym_switch] = ACTIONS(1729), - [anon_sym_case] = ACTIONS(1729), - [anon_sym_default] = ACTIONS(1729), - [anon_sym_while] = ACTIONS(1729), - [anon_sym_do] = ACTIONS(1729), - [anon_sym_for] = ACTIONS(1729), - [anon_sym_return] = ACTIONS(1729), - [anon_sym_break] = ACTIONS(1729), - [anon_sym_continue] = ACTIONS(1729), - [anon_sym_goto] = ACTIONS(1729), - [anon_sym_not] = ACTIONS(1729), - [anon_sym_compl] = ACTIONS(1729), - [anon_sym_or] = ACTIONS(1729), - [anon_sym_and] = ACTIONS(1729), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_sizeof] = ACTIONS(1729), - [sym_number_literal] = ACTIONS(1727), - [anon_sym_L_SQUOTE] = ACTIONS(1727), - [anon_sym_u_SQUOTE] = ACTIONS(1727), - [anon_sym_U_SQUOTE] = ACTIONS(1727), - [anon_sym_u8_SQUOTE] = ACTIONS(1727), - [anon_sym_SQUOTE] = ACTIONS(1727), - [anon_sym_L_DQUOTE] = ACTIONS(1727), - [anon_sym_u_DQUOTE] = ACTIONS(1727), - [anon_sym_U_DQUOTE] = ACTIONS(1727), - [anon_sym_u8_DQUOTE] = ACTIONS(1727), - [anon_sym_DQUOTE] = ACTIONS(1727), - [sym_true] = ACTIONS(1729), - [sym_false] = ACTIONS(1729), - [sym_null] = ACTIONS(1729), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1729), - [anon_sym_decltype] = ACTIONS(1729), - [anon_sym_final] = ACTIONS(1729), - [anon_sym_override] = ACTIONS(1729), - [anon_sym_virtual] = ACTIONS(1729), - [anon_sym_explicit] = ACTIONS(1729), - [anon_sym_typename] = ACTIONS(1729), - [anon_sym_template] = ACTIONS(1729), - [anon_sym_GT2] = ACTIONS(1727), - [anon_sym_operator] = ACTIONS(1729), - [anon_sym_try] = ACTIONS(1729), - [anon_sym_delete] = ACTIONS(1729), - [anon_sym_throw] = ACTIONS(1729), - [anon_sym_namespace] = ACTIONS(1729), - [anon_sym_using] = ACTIONS(1729), - [anon_sym_static_assert] = ACTIONS(1729), - [anon_sym_concept] = ACTIONS(1729), - [anon_sym_co_return] = ACTIONS(1729), - [anon_sym_co_yield] = ACTIONS(1729), - [anon_sym_catch] = ACTIONS(1729), - [anon_sym_R_DQUOTE] = ACTIONS(1727), - [anon_sym_LR_DQUOTE] = ACTIONS(1727), - [anon_sym_uR_DQUOTE] = ACTIONS(1727), - [anon_sym_UR_DQUOTE] = ACTIONS(1727), - [anon_sym_u8R_DQUOTE] = ACTIONS(1727), - [anon_sym_co_await] = ACTIONS(1729), - [anon_sym_new] = ACTIONS(1729), - [anon_sym_requires] = ACTIONS(1729), - [sym_this] = ACTIONS(1729), - [sym_nullptr] = ACTIONS(1729), - }, - [130] = { - [sym_preproc_def] = STATE(135), - [sym_preproc_function_def] = STATE(135), - [sym_preproc_call] = STATE(135), - [sym_preproc_if_in_field_declaration_list] = STATE(135), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(135), - [sym_preproc_else_in_field_declaration_list] = STATE(6526), - [sym_preproc_elif_in_field_declaration_list] = STATE(6526), - [sym_type_definition] = STATE(135), - [sym__declaration_modifiers] = STATE(3225), - [sym__declaration_specifiers] = STATE(4166), - [sym_attribute_specifier] = STATE(3225), - [sym_attribute_declaration] = STATE(3225), - [sym_ms_declspec_modifier] = STATE(3225), - [sym_ms_based_modifier] = STATE(6104), - [sym__declarator] = STATE(5113), - [sym_parenthesized_declarator] = STATE(4918), - [sym_attributed_declarator] = STATE(4918), - [sym_pointer_declarator] = STATE(4918), - [sym_function_declarator] = STATE(4752), - [sym_array_declarator] = STATE(4918), - [sym_storage_class_specifier] = STATE(3225), - [sym_type_qualifier] = STATE(3225), - [sym__type_specifier] = STATE(3337), - [sym_sized_type_specifier] = STATE(3601), - [sym_enum_specifier] = STATE(3601), - [sym_struct_specifier] = STATE(3601), - [sym_union_specifier] = STATE(3601), - [sym__field_declaration_list_item] = STATE(135), - [sym_field_declaration] = STATE(135), - [sym_placeholder_type_specifier] = STATE(3601), - [sym_decltype_auto] = STATE(3558), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3601), - [sym_virtual] = STATE(3225), - [sym_explicit_function_specifier] = STATE(1945), - [sym_dependent_type] = STATE(3601), - [sym_template_declaration] = STATE(135), - [sym_operator_cast] = STATE(5126), - [sym_inline_method_definition] = STATE(135), - [sym__constructor_specifiers] = STATE(1945), - [sym_operator_cast_definition] = STATE(135), - [sym_operator_cast_declaration] = STATE(135), - [sym_constructor_or_destructor_definition] = STATE(135), - [sym_constructor_or_destructor_declaration] = STATE(135), - [sym_friend_declaration] = STATE(135), - [sym_access_specifier] = STATE(6576), - [sym_reference_declarator] = STATE(4918), - [sym_structured_binding_declarator] = STATE(4918), - [sym_template_type] = STATE(3198), - [sym_template_function] = STATE(4918), - [sym_using_declaration] = STATE(135), - [sym_alias_declaration] = STATE(135), - [sym_static_assert_declaration] = STATE(135), - [sym_destructor_name] = STATE(4918), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4455), - [sym_qualified_identifier] = STATE(4918), - [sym_qualified_type_identifier] = STATE(3554), - [sym_qualified_operator_cast_identifier] = STATE(5126), - [sym_operator_name] = STATE(4918), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(135), - [aux_sym__declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_sized_type_specifier_repeat1] = STATE(3584), - [aux_sym_operator_cast_definition_repeat1] = STATE(1945), - [sym_identifier] = ACTIONS(1665), - [aux_sym_preproc_def_token1] = ACTIONS(1667), - [aux_sym_preproc_if_token1] = ACTIONS(1669), - [aux_sym_preproc_if_token2] = ACTIONS(1731), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1673), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1673), - [aux_sym_preproc_else_token1] = ACTIONS(1675), - [aux_sym_preproc_elif_token1] = ACTIONS(1677), - [sym_preproc_directive] = ACTIONS(1679), - [anon_sym_LPAREN2] = ACTIONS(1681), - [anon_sym_TILDE] = ACTIONS(1683), - [anon_sym_STAR] = ACTIONS(1685), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1687), - [anon_sym_typedef] = ACTIONS(1689), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(1691), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1413), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1693), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(1695), - [anon_sym_unsigned] = ACTIONS(1695), - [anon_sym_long] = ACTIONS(1695), - [anon_sym_short] = ACTIONS(1695), - [sym_primitive_type] = ACTIONS(1697), - [anon_sym_enum] = ACTIONS(1699), - [anon_sym_class] = ACTIONS(1701), - [anon_sym_struct] = ACTIONS(1703), - [anon_sym_union] = ACTIONS(1705), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1707), - [anon_sym_decltype] = ACTIONS(1709), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_explicit] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(1711), - [anon_sym_template] = ACTIONS(1713), - [anon_sym_operator] = ACTIONS(119), - [anon_sym_friend] = ACTIONS(1715), - [anon_sym_public] = ACTIONS(1717), - [anon_sym_private] = ACTIONS(1717), - [anon_sym_protected] = ACTIONS(1717), - [anon_sym_using] = ACTIONS(1719), - [anon_sym_static_assert] = ACTIONS(1721), - }, - [131] = { - [sym_preproc_def] = STATE(291), - [sym_preproc_function_def] = STATE(291), - [sym_preproc_call] = STATE(291), - [sym_preproc_if_in_field_declaration_list] = STATE(291), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(291), - [sym_preproc_else_in_field_declaration_list] = STATE(6565), - [sym_preproc_elif_in_field_declaration_list] = STATE(6565), - [sym_type_definition] = STATE(291), - [sym__declaration_modifiers] = STATE(3225), - [sym__declaration_specifiers] = STATE(4166), - [sym_attribute_specifier] = STATE(3225), - [sym_attribute_declaration] = STATE(3225), - [sym_ms_declspec_modifier] = STATE(3225), - [sym_ms_based_modifier] = STATE(6104), - [sym__declarator] = STATE(5113), - [sym_parenthesized_declarator] = STATE(4918), - [sym_attributed_declarator] = STATE(4918), - [sym_pointer_declarator] = STATE(4918), - [sym_function_declarator] = STATE(4752), - [sym_array_declarator] = STATE(4918), - [sym_storage_class_specifier] = STATE(3225), - [sym_type_qualifier] = STATE(3225), - [sym__type_specifier] = STATE(3337), - [sym_sized_type_specifier] = STATE(3601), - [sym_enum_specifier] = STATE(3601), - [sym_struct_specifier] = STATE(3601), - [sym_union_specifier] = STATE(3601), - [sym__field_declaration_list_item] = STATE(291), - [sym_field_declaration] = STATE(291), - [sym_placeholder_type_specifier] = STATE(3601), - [sym_decltype_auto] = STATE(3558), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3601), - [sym_virtual] = STATE(3225), - [sym_explicit_function_specifier] = STATE(1945), - [sym_dependent_type] = STATE(3601), - [sym_template_declaration] = STATE(291), - [sym_operator_cast] = STATE(5126), - [sym_inline_method_definition] = STATE(291), - [sym__constructor_specifiers] = STATE(1945), - [sym_operator_cast_definition] = STATE(291), - [sym_operator_cast_declaration] = STATE(291), - [sym_constructor_or_destructor_definition] = STATE(291), - [sym_constructor_or_destructor_declaration] = STATE(291), - [sym_friend_declaration] = STATE(291), - [sym_access_specifier] = STATE(6576), - [sym_reference_declarator] = STATE(4918), - [sym_structured_binding_declarator] = STATE(4918), - [sym_template_type] = STATE(3198), - [sym_template_function] = STATE(4918), - [sym_using_declaration] = STATE(291), - [sym_alias_declaration] = STATE(291), - [sym_static_assert_declaration] = STATE(291), - [sym_destructor_name] = STATE(4918), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4455), - [sym_qualified_identifier] = STATE(4918), - [sym_qualified_type_identifier] = STATE(3554), - [sym_qualified_operator_cast_identifier] = STATE(5126), - [sym_operator_name] = STATE(4918), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(291), - [aux_sym__declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_sized_type_specifier_repeat1] = STATE(3584), - [aux_sym_operator_cast_definition_repeat1] = STATE(1945), - [sym_identifier] = ACTIONS(1665), - [aux_sym_preproc_def_token1] = ACTIONS(1667), - [aux_sym_preproc_if_token1] = ACTIONS(1669), - [aux_sym_preproc_if_token2] = ACTIONS(1733), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1673), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1673), - [aux_sym_preproc_else_token1] = ACTIONS(1675), - [aux_sym_preproc_elif_token1] = ACTIONS(1677), - [sym_preproc_directive] = ACTIONS(1679), - [anon_sym_LPAREN2] = ACTIONS(1681), - [anon_sym_TILDE] = ACTIONS(1683), - [anon_sym_STAR] = ACTIONS(1685), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1687), - [anon_sym_typedef] = ACTIONS(1689), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(1691), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1413), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1693), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(1695), - [anon_sym_unsigned] = ACTIONS(1695), - [anon_sym_long] = ACTIONS(1695), - [anon_sym_short] = ACTIONS(1695), - [sym_primitive_type] = ACTIONS(1697), - [anon_sym_enum] = ACTIONS(1699), - [anon_sym_class] = ACTIONS(1701), - [anon_sym_struct] = ACTIONS(1703), - [anon_sym_union] = ACTIONS(1705), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1707), - [anon_sym_decltype] = ACTIONS(1709), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_explicit] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(1711), - [anon_sym_template] = ACTIONS(1713), - [anon_sym_operator] = ACTIONS(119), - [anon_sym_friend] = ACTIONS(1715), - [anon_sym_public] = ACTIONS(1717), - [anon_sym_private] = ACTIONS(1717), - [anon_sym_protected] = ACTIONS(1717), - [anon_sym_using] = ACTIONS(1719), - [anon_sym_static_assert] = ACTIONS(1721), - }, - [132] = { - [ts_builtin_sym_end] = ACTIONS(1735), - [sym_identifier] = ACTIONS(1737), - [aux_sym_preproc_include_token1] = ACTIONS(1737), - [aux_sym_preproc_def_token1] = ACTIONS(1737), - [anon_sym_COMMA] = ACTIONS(1735), - [anon_sym_RPAREN] = ACTIONS(1735), - [aux_sym_preproc_if_token1] = ACTIONS(1737), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1737), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1737), - [sym_preproc_directive] = ACTIONS(1737), - [anon_sym_LPAREN2] = ACTIONS(1735), - [anon_sym_BANG] = ACTIONS(1735), - [anon_sym_TILDE] = ACTIONS(1735), - [anon_sym_DASH] = ACTIONS(1737), - [anon_sym_PLUS] = ACTIONS(1737), - [anon_sym_STAR] = ACTIONS(1735), - [anon_sym_PIPE_PIPE] = ACTIONS(1735), - [anon_sym_AMP_AMP] = ACTIONS(1735), - [anon_sym_AMP] = ACTIONS(1737), - [anon_sym_SEMI] = ACTIONS(1735), - [anon_sym_typedef] = ACTIONS(1737), - [anon_sym_extern] = ACTIONS(1737), - [anon_sym___attribute__] = ACTIONS(1737), - [anon_sym_COLON_COLON] = ACTIONS(1735), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1735), - [anon_sym___declspec] = ACTIONS(1737), - [anon_sym___based] = ACTIONS(1737), - [anon_sym___cdecl] = ACTIONS(1737), - [anon_sym___clrcall] = ACTIONS(1737), - [anon_sym___stdcall] = ACTIONS(1737), - [anon_sym___fastcall] = ACTIONS(1737), - [anon_sym___thiscall] = ACTIONS(1737), - [anon_sym___vectorcall] = ACTIONS(1737), - [anon_sym_LBRACE] = ACTIONS(1735), - [anon_sym_LBRACK] = ACTIONS(1737), - [anon_sym_EQ] = ACTIONS(1735), - [anon_sym_static] = ACTIONS(1737), - [anon_sym_register] = ACTIONS(1737), - [anon_sym_inline] = ACTIONS(1737), - [anon_sym_thread_local] = ACTIONS(1737), - [anon_sym_const] = ACTIONS(1737), - [anon_sym_volatile] = ACTIONS(1737), - [anon_sym_restrict] = ACTIONS(1737), - [anon_sym__Atomic] = ACTIONS(1737), - [anon_sym_mutable] = ACTIONS(1737), - [anon_sym_constexpr] = ACTIONS(1737), - [anon_sym_constinit] = ACTIONS(1737), - [anon_sym_consteval] = ACTIONS(1737), - [anon_sym_signed] = ACTIONS(1737), - [anon_sym_unsigned] = ACTIONS(1737), - [anon_sym_long] = ACTIONS(1737), - [anon_sym_short] = ACTIONS(1737), - [sym_primitive_type] = ACTIONS(1737), - [anon_sym_enum] = ACTIONS(1737), - [anon_sym_class] = ACTIONS(1737), - [anon_sym_struct] = ACTIONS(1737), - [anon_sym_union] = ACTIONS(1737), - [anon_sym_if] = ACTIONS(1737), - [anon_sym_else] = ACTIONS(1737), - [anon_sym_switch] = ACTIONS(1737), - [anon_sym_case] = ACTIONS(1737), - [anon_sym_default] = ACTIONS(1737), - [anon_sym_while] = ACTIONS(1737), - [anon_sym_do] = ACTIONS(1737), - [anon_sym_for] = ACTIONS(1737), - [anon_sym_return] = ACTIONS(1737), - [anon_sym_break] = ACTIONS(1737), - [anon_sym_continue] = ACTIONS(1737), - [anon_sym_goto] = ACTIONS(1737), - [anon_sym_not] = ACTIONS(1737), - [anon_sym_compl] = ACTIONS(1737), - [anon_sym_or] = ACTIONS(1737), - [anon_sym_and] = ACTIONS(1737), - [anon_sym_DASH_DASH] = ACTIONS(1735), - [anon_sym_PLUS_PLUS] = ACTIONS(1735), - [anon_sym_sizeof] = ACTIONS(1737), - [sym_number_literal] = ACTIONS(1735), - [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_L_DQUOTE] = ACTIONS(1735), - [anon_sym_u_DQUOTE] = ACTIONS(1735), - [anon_sym_U_DQUOTE] = ACTIONS(1735), - [anon_sym_u8_DQUOTE] = ACTIONS(1735), - [anon_sym_DQUOTE] = ACTIONS(1735), - [sym_true] = ACTIONS(1737), - [sym_false] = ACTIONS(1737), - [sym_null] = ACTIONS(1737), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1737), - [anon_sym_decltype] = ACTIONS(1737), - [anon_sym_final] = ACTIONS(1737), - [anon_sym_override] = ACTIONS(1737), - [anon_sym_virtual] = ACTIONS(1737), - [anon_sym_explicit] = ACTIONS(1737), - [anon_sym_typename] = ACTIONS(1737), - [anon_sym_template] = ACTIONS(1737), - [anon_sym_GT2] = ACTIONS(1735), - [anon_sym_operator] = ACTIONS(1737), - [anon_sym_try] = ACTIONS(1737), - [anon_sym_delete] = ACTIONS(1737), - [anon_sym_throw] = ACTIONS(1737), - [anon_sym_namespace] = ACTIONS(1737), - [anon_sym_using] = ACTIONS(1737), - [anon_sym_static_assert] = ACTIONS(1737), - [anon_sym_concept] = ACTIONS(1737), - [anon_sym_co_return] = ACTIONS(1737), - [anon_sym_co_yield] = ACTIONS(1737), - [anon_sym_catch] = ACTIONS(1737), - [anon_sym_R_DQUOTE] = ACTIONS(1735), - [anon_sym_LR_DQUOTE] = ACTIONS(1735), - [anon_sym_uR_DQUOTE] = ACTIONS(1735), - [anon_sym_UR_DQUOTE] = ACTIONS(1735), - [anon_sym_u8R_DQUOTE] = ACTIONS(1735), - [anon_sym_co_await] = ACTIONS(1737), - [anon_sym_new] = ACTIONS(1737), - [anon_sym_requires] = ACTIONS(1737), - [sym_this] = ACTIONS(1737), - [sym_nullptr] = ACTIONS(1737), - }, - [133] = { - [sym_preproc_def] = STATE(291), - [sym_preproc_function_def] = STATE(291), - [sym_preproc_call] = STATE(291), - [sym_preproc_if_in_field_declaration_list] = STATE(291), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(291), - [sym_preproc_else_in_field_declaration_list] = STATE(6359), - [sym_preproc_elif_in_field_declaration_list] = STATE(6359), - [sym_type_definition] = STATE(291), - [sym__declaration_modifiers] = STATE(3225), - [sym__declaration_specifiers] = STATE(4166), - [sym_attribute_specifier] = STATE(3225), - [sym_attribute_declaration] = STATE(3225), - [sym_ms_declspec_modifier] = STATE(3225), - [sym_ms_based_modifier] = STATE(6104), - [sym__declarator] = STATE(5113), - [sym_parenthesized_declarator] = STATE(4918), - [sym_attributed_declarator] = STATE(4918), - [sym_pointer_declarator] = STATE(4918), - [sym_function_declarator] = STATE(4752), - [sym_array_declarator] = STATE(4918), - [sym_storage_class_specifier] = STATE(3225), - [sym_type_qualifier] = STATE(3225), - [sym__type_specifier] = STATE(3337), - [sym_sized_type_specifier] = STATE(3601), - [sym_enum_specifier] = STATE(3601), - [sym_struct_specifier] = STATE(3601), - [sym_union_specifier] = STATE(3601), - [sym__field_declaration_list_item] = STATE(291), - [sym_field_declaration] = STATE(291), - [sym_placeholder_type_specifier] = STATE(3601), - [sym_decltype_auto] = STATE(3558), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3601), - [sym_virtual] = STATE(3225), - [sym_explicit_function_specifier] = STATE(1945), - [sym_dependent_type] = STATE(3601), - [sym_template_declaration] = STATE(291), - [sym_operator_cast] = STATE(5126), - [sym_inline_method_definition] = STATE(291), - [sym__constructor_specifiers] = STATE(1945), - [sym_operator_cast_definition] = STATE(291), - [sym_operator_cast_declaration] = STATE(291), - [sym_constructor_or_destructor_definition] = STATE(291), - [sym_constructor_or_destructor_declaration] = STATE(291), - [sym_friend_declaration] = STATE(291), - [sym_access_specifier] = STATE(6576), - [sym_reference_declarator] = STATE(4918), - [sym_structured_binding_declarator] = STATE(4918), - [sym_template_type] = STATE(3198), - [sym_template_function] = STATE(4918), - [sym_using_declaration] = STATE(291), - [sym_alias_declaration] = STATE(291), - [sym_static_assert_declaration] = STATE(291), - [sym_destructor_name] = STATE(4918), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4455), - [sym_qualified_identifier] = STATE(4918), - [sym_qualified_type_identifier] = STATE(3554), - [sym_qualified_operator_cast_identifier] = STATE(5126), - [sym_operator_name] = STATE(4918), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(291), - [aux_sym__declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_sized_type_specifier_repeat1] = STATE(3584), - [aux_sym_operator_cast_definition_repeat1] = STATE(1945), - [sym_identifier] = ACTIONS(1665), - [aux_sym_preproc_def_token1] = ACTIONS(1667), - [aux_sym_preproc_if_token1] = ACTIONS(1669), - [aux_sym_preproc_if_token2] = ACTIONS(1739), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1673), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1673), - [aux_sym_preproc_else_token1] = ACTIONS(1675), - [aux_sym_preproc_elif_token1] = ACTIONS(1677), - [sym_preproc_directive] = ACTIONS(1679), - [anon_sym_LPAREN2] = ACTIONS(1681), - [anon_sym_TILDE] = ACTIONS(1683), - [anon_sym_STAR] = ACTIONS(1685), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1687), - [anon_sym_typedef] = ACTIONS(1689), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(1691), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1413), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1693), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(1695), - [anon_sym_unsigned] = ACTIONS(1695), - [anon_sym_long] = ACTIONS(1695), - [anon_sym_short] = ACTIONS(1695), - [sym_primitive_type] = ACTIONS(1697), - [anon_sym_enum] = ACTIONS(1699), - [anon_sym_class] = ACTIONS(1701), - [anon_sym_struct] = ACTIONS(1703), - [anon_sym_union] = ACTIONS(1705), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1707), - [anon_sym_decltype] = ACTIONS(1709), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_explicit] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(1711), - [anon_sym_template] = ACTIONS(1713), - [anon_sym_operator] = ACTIONS(119), - [anon_sym_friend] = ACTIONS(1715), - [anon_sym_public] = ACTIONS(1717), - [anon_sym_private] = ACTIONS(1717), - [anon_sym_protected] = ACTIONS(1717), - [anon_sym_using] = ACTIONS(1719), - [anon_sym_static_assert] = ACTIONS(1721), - }, - [134] = { - [sym_preproc_def] = STATE(291), - [sym_preproc_function_def] = STATE(291), - [sym_preproc_call] = STATE(291), - [sym_preproc_if_in_field_declaration_list] = STATE(291), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(291), - [sym_preproc_else_in_field_declaration_list] = STATE(6525), - [sym_preproc_elif_in_field_declaration_list] = STATE(6525), - [sym_type_definition] = STATE(291), - [sym__declaration_modifiers] = STATE(3225), - [sym__declaration_specifiers] = STATE(4166), - [sym_attribute_specifier] = STATE(3225), - [sym_attribute_declaration] = STATE(3225), - [sym_ms_declspec_modifier] = STATE(3225), - [sym_ms_based_modifier] = STATE(6104), - [sym__declarator] = STATE(5113), - [sym_parenthesized_declarator] = STATE(4918), - [sym_attributed_declarator] = STATE(4918), - [sym_pointer_declarator] = STATE(4918), - [sym_function_declarator] = STATE(4752), - [sym_array_declarator] = STATE(4918), - [sym_storage_class_specifier] = STATE(3225), - [sym_type_qualifier] = STATE(3225), - [sym__type_specifier] = STATE(3337), - [sym_sized_type_specifier] = STATE(3601), - [sym_enum_specifier] = STATE(3601), - [sym_struct_specifier] = STATE(3601), - [sym_union_specifier] = STATE(3601), - [sym__field_declaration_list_item] = STATE(291), - [sym_field_declaration] = STATE(291), - [sym_placeholder_type_specifier] = STATE(3601), - [sym_decltype_auto] = STATE(3558), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3601), - [sym_virtual] = STATE(3225), - [sym_explicit_function_specifier] = STATE(1945), - [sym_dependent_type] = STATE(3601), - [sym_template_declaration] = STATE(291), - [sym_operator_cast] = STATE(5126), - [sym_inline_method_definition] = STATE(291), - [sym__constructor_specifiers] = STATE(1945), - [sym_operator_cast_definition] = STATE(291), - [sym_operator_cast_declaration] = STATE(291), - [sym_constructor_or_destructor_definition] = STATE(291), - [sym_constructor_or_destructor_declaration] = STATE(291), - [sym_friend_declaration] = STATE(291), - [sym_access_specifier] = STATE(6576), - [sym_reference_declarator] = STATE(4918), - [sym_structured_binding_declarator] = STATE(4918), - [sym_template_type] = STATE(3198), - [sym_template_function] = STATE(4918), - [sym_using_declaration] = STATE(291), - [sym_alias_declaration] = STATE(291), - [sym_static_assert_declaration] = STATE(291), - [sym_destructor_name] = STATE(4918), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4455), - [sym_qualified_identifier] = STATE(4918), - [sym_qualified_type_identifier] = STATE(3554), - [sym_qualified_operator_cast_identifier] = STATE(5126), - [sym_operator_name] = STATE(4918), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(291), - [aux_sym__declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_sized_type_specifier_repeat1] = STATE(3584), - [aux_sym_operator_cast_definition_repeat1] = STATE(1945), - [sym_identifier] = ACTIONS(1665), - [aux_sym_preproc_def_token1] = ACTIONS(1667), - [aux_sym_preproc_if_token1] = ACTIONS(1669), - [aux_sym_preproc_if_token2] = ACTIONS(1741), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1673), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1673), - [aux_sym_preproc_else_token1] = ACTIONS(1675), - [aux_sym_preproc_elif_token1] = ACTIONS(1677), - [sym_preproc_directive] = ACTIONS(1679), - [anon_sym_LPAREN2] = ACTIONS(1681), - [anon_sym_TILDE] = ACTIONS(1683), - [anon_sym_STAR] = ACTIONS(1685), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1687), - [anon_sym_typedef] = ACTIONS(1689), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(1691), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1413), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1693), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(1695), - [anon_sym_unsigned] = ACTIONS(1695), - [anon_sym_long] = ACTIONS(1695), - [anon_sym_short] = ACTIONS(1695), - [sym_primitive_type] = ACTIONS(1697), - [anon_sym_enum] = ACTIONS(1699), - [anon_sym_class] = ACTIONS(1701), - [anon_sym_struct] = ACTIONS(1703), - [anon_sym_union] = ACTIONS(1705), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1707), - [anon_sym_decltype] = ACTIONS(1709), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_explicit] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(1711), - [anon_sym_template] = ACTIONS(1713), - [anon_sym_operator] = ACTIONS(119), - [anon_sym_friend] = ACTIONS(1715), - [anon_sym_public] = ACTIONS(1717), - [anon_sym_private] = ACTIONS(1717), - [anon_sym_protected] = ACTIONS(1717), - [anon_sym_using] = ACTIONS(1719), - [anon_sym_static_assert] = ACTIONS(1721), - }, - [135] = { - [sym_preproc_def] = STATE(291), - [sym_preproc_function_def] = STATE(291), - [sym_preproc_call] = STATE(291), - [sym_preproc_if_in_field_declaration_list] = STATE(291), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(291), - [sym_preproc_else_in_field_declaration_list] = STATE(6511), - [sym_preproc_elif_in_field_declaration_list] = STATE(6511), - [sym_type_definition] = STATE(291), - [sym__declaration_modifiers] = STATE(3225), - [sym__declaration_specifiers] = STATE(4166), - [sym_attribute_specifier] = STATE(3225), - [sym_attribute_declaration] = STATE(3225), - [sym_ms_declspec_modifier] = STATE(3225), - [sym_ms_based_modifier] = STATE(6104), - [sym__declarator] = STATE(5113), - [sym_parenthesized_declarator] = STATE(4918), - [sym_attributed_declarator] = STATE(4918), - [sym_pointer_declarator] = STATE(4918), - [sym_function_declarator] = STATE(4752), - [sym_array_declarator] = STATE(4918), - [sym_storage_class_specifier] = STATE(3225), - [sym_type_qualifier] = STATE(3225), - [sym__type_specifier] = STATE(3337), - [sym_sized_type_specifier] = STATE(3601), - [sym_enum_specifier] = STATE(3601), - [sym_struct_specifier] = STATE(3601), - [sym_union_specifier] = STATE(3601), - [sym__field_declaration_list_item] = STATE(291), - [sym_field_declaration] = STATE(291), - [sym_placeholder_type_specifier] = STATE(3601), - [sym_decltype_auto] = STATE(3558), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3601), - [sym_virtual] = STATE(3225), - [sym_explicit_function_specifier] = STATE(1945), - [sym_dependent_type] = STATE(3601), - [sym_template_declaration] = STATE(291), - [sym_operator_cast] = STATE(5126), - [sym_inline_method_definition] = STATE(291), - [sym__constructor_specifiers] = STATE(1945), - [sym_operator_cast_definition] = STATE(291), - [sym_operator_cast_declaration] = STATE(291), - [sym_constructor_or_destructor_definition] = STATE(291), - [sym_constructor_or_destructor_declaration] = STATE(291), - [sym_friend_declaration] = STATE(291), - [sym_access_specifier] = STATE(6576), - [sym_reference_declarator] = STATE(4918), - [sym_structured_binding_declarator] = STATE(4918), - [sym_template_type] = STATE(3198), - [sym_template_function] = STATE(4918), - [sym_using_declaration] = STATE(291), - [sym_alias_declaration] = STATE(291), - [sym_static_assert_declaration] = STATE(291), - [sym_destructor_name] = STATE(4918), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4455), - [sym_qualified_identifier] = STATE(4918), - [sym_qualified_type_identifier] = STATE(3554), - [sym_qualified_operator_cast_identifier] = STATE(5126), - [sym_operator_name] = STATE(4918), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(291), - [aux_sym__declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_sized_type_specifier_repeat1] = STATE(3584), - [aux_sym_operator_cast_definition_repeat1] = STATE(1945), - [sym_identifier] = ACTIONS(1665), - [aux_sym_preproc_def_token1] = ACTIONS(1667), - [aux_sym_preproc_if_token1] = ACTIONS(1669), - [aux_sym_preproc_if_token2] = ACTIONS(1743), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1673), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1673), - [aux_sym_preproc_else_token1] = ACTIONS(1675), - [aux_sym_preproc_elif_token1] = ACTIONS(1677), - [sym_preproc_directive] = ACTIONS(1679), - [anon_sym_LPAREN2] = ACTIONS(1681), - [anon_sym_TILDE] = ACTIONS(1683), - [anon_sym_STAR] = ACTIONS(1685), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1687), - [anon_sym_typedef] = ACTIONS(1689), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(1691), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1413), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1693), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(1695), - [anon_sym_unsigned] = ACTIONS(1695), - [anon_sym_long] = ACTIONS(1695), - [anon_sym_short] = ACTIONS(1695), - [sym_primitive_type] = ACTIONS(1697), - [anon_sym_enum] = ACTIONS(1699), - [anon_sym_class] = ACTIONS(1701), - [anon_sym_struct] = ACTIONS(1703), - [anon_sym_union] = ACTIONS(1705), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1707), - [anon_sym_decltype] = ACTIONS(1709), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_explicit] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(1711), - [anon_sym_template] = ACTIONS(1713), - [anon_sym_operator] = ACTIONS(119), - [anon_sym_friend] = ACTIONS(1715), - [anon_sym_public] = ACTIONS(1717), - [anon_sym_private] = ACTIONS(1717), - [anon_sym_protected] = ACTIONS(1717), - [anon_sym_using] = ACTIONS(1719), - [anon_sym_static_assert] = ACTIONS(1721), - }, - [136] = { - [sym_preproc_def] = STATE(140), - [sym_preproc_function_def] = STATE(140), - [sym_preproc_call] = STATE(140), - [sym_preproc_if_in_field_declaration_list] = STATE(140), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(140), - [sym_preproc_else_in_field_declaration_list] = STATE(6407), - [sym_preproc_elif_in_field_declaration_list] = STATE(6407), - [sym_type_definition] = STATE(140), - [sym__declaration_modifiers] = STATE(3225), - [sym__declaration_specifiers] = STATE(4166), - [sym_attribute_specifier] = STATE(3225), - [sym_attribute_declaration] = STATE(3225), - [sym_ms_declspec_modifier] = STATE(3225), - [sym_ms_based_modifier] = STATE(6104), - [sym__declarator] = STATE(5113), - [sym_parenthesized_declarator] = STATE(4918), - [sym_attributed_declarator] = STATE(4918), - [sym_pointer_declarator] = STATE(4918), - [sym_function_declarator] = STATE(4752), - [sym_array_declarator] = STATE(4918), - [sym_storage_class_specifier] = STATE(3225), - [sym_type_qualifier] = STATE(3225), - [sym__type_specifier] = STATE(3337), - [sym_sized_type_specifier] = STATE(3601), - [sym_enum_specifier] = STATE(3601), - [sym_struct_specifier] = STATE(3601), - [sym_union_specifier] = STATE(3601), - [sym__field_declaration_list_item] = STATE(140), - [sym_field_declaration] = STATE(140), - [sym_placeholder_type_specifier] = STATE(3601), - [sym_decltype_auto] = STATE(3558), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3601), - [sym_virtual] = STATE(3225), - [sym_explicit_function_specifier] = STATE(1945), - [sym_dependent_type] = STATE(3601), - [sym_template_declaration] = STATE(140), - [sym_operator_cast] = STATE(5126), - [sym_inline_method_definition] = STATE(140), - [sym__constructor_specifiers] = STATE(1945), - [sym_operator_cast_definition] = STATE(140), - [sym_operator_cast_declaration] = STATE(140), - [sym_constructor_or_destructor_definition] = STATE(140), - [sym_constructor_or_destructor_declaration] = STATE(140), - [sym_friend_declaration] = STATE(140), - [sym_access_specifier] = STATE(6576), - [sym_reference_declarator] = STATE(4918), - [sym_structured_binding_declarator] = STATE(4918), - [sym_template_type] = STATE(3198), - [sym_template_function] = STATE(4918), - [sym_using_declaration] = STATE(140), - [sym_alias_declaration] = STATE(140), - [sym_static_assert_declaration] = STATE(140), - [sym_destructor_name] = STATE(4918), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4455), - [sym_qualified_identifier] = STATE(4918), - [sym_qualified_type_identifier] = STATE(3554), - [sym_qualified_operator_cast_identifier] = STATE(5126), - [sym_operator_name] = STATE(4918), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(140), - [aux_sym__declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_sized_type_specifier_repeat1] = STATE(3584), - [aux_sym_operator_cast_definition_repeat1] = STATE(1945), - [sym_identifier] = ACTIONS(1665), - [aux_sym_preproc_def_token1] = ACTIONS(1667), - [aux_sym_preproc_if_token1] = ACTIONS(1669), - [aux_sym_preproc_if_token2] = ACTIONS(1745), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1673), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1673), - [aux_sym_preproc_else_token1] = ACTIONS(1675), - [aux_sym_preproc_elif_token1] = ACTIONS(1677), - [sym_preproc_directive] = ACTIONS(1679), - [anon_sym_LPAREN2] = ACTIONS(1681), - [anon_sym_TILDE] = ACTIONS(1683), - [anon_sym_STAR] = ACTIONS(1685), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1687), - [anon_sym_typedef] = ACTIONS(1689), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(1691), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1413), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1693), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(1695), - [anon_sym_unsigned] = ACTIONS(1695), - [anon_sym_long] = ACTIONS(1695), - [anon_sym_short] = ACTIONS(1695), - [sym_primitive_type] = ACTIONS(1697), - [anon_sym_enum] = ACTIONS(1699), - [anon_sym_class] = ACTIONS(1701), - [anon_sym_struct] = ACTIONS(1703), - [anon_sym_union] = ACTIONS(1705), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1707), - [anon_sym_decltype] = ACTIONS(1709), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_explicit] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(1711), - [anon_sym_template] = ACTIONS(1713), - [anon_sym_operator] = ACTIONS(119), - [anon_sym_friend] = ACTIONS(1715), - [anon_sym_public] = ACTIONS(1717), - [anon_sym_private] = ACTIONS(1717), - [anon_sym_protected] = ACTIONS(1717), - [anon_sym_using] = ACTIONS(1719), - [anon_sym_static_assert] = ACTIONS(1721), - }, - [137] = { - [sym_preproc_def] = STATE(134), - [sym_preproc_function_def] = STATE(134), - [sym_preproc_call] = STATE(134), - [sym_preproc_if_in_field_declaration_list] = STATE(134), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(134), - [sym_preproc_else_in_field_declaration_list] = STATE(6540), - [sym_preproc_elif_in_field_declaration_list] = STATE(6540), - [sym_type_definition] = STATE(134), - [sym__declaration_modifiers] = STATE(3225), - [sym__declaration_specifiers] = STATE(4166), - [sym_attribute_specifier] = STATE(3225), - [sym_attribute_declaration] = STATE(3225), - [sym_ms_declspec_modifier] = STATE(3225), - [sym_ms_based_modifier] = STATE(6104), - [sym__declarator] = STATE(5113), - [sym_parenthesized_declarator] = STATE(4918), - [sym_attributed_declarator] = STATE(4918), - [sym_pointer_declarator] = STATE(4918), - [sym_function_declarator] = STATE(4752), - [sym_array_declarator] = STATE(4918), - [sym_storage_class_specifier] = STATE(3225), - [sym_type_qualifier] = STATE(3225), - [sym__type_specifier] = STATE(3337), - [sym_sized_type_specifier] = STATE(3601), - [sym_enum_specifier] = STATE(3601), - [sym_struct_specifier] = STATE(3601), - [sym_union_specifier] = STATE(3601), - [sym__field_declaration_list_item] = STATE(134), - [sym_field_declaration] = STATE(134), - [sym_placeholder_type_specifier] = STATE(3601), - [sym_decltype_auto] = STATE(3558), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3601), - [sym_virtual] = STATE(3225), - [sym_explicit_function_specifier] = STATE(1945), - [sym_dependent_type] = STATE(3601), - [sym_template_declaration] = STATE(134), - [sym_operator_cast] = STATE(5126), - [sym_inline_method_definition] = STATE(134), - [sym__constructor_specifiers] = STATE(1945), - [sym_operator_cast_definition] = STATE(134), - [sym_operator_cast_declaration] = STATE(134), - [sym_constructor_or_destructor_definition] = STATE(134), - [sym_constructor_or_destructor_declaration] = STATE(134), - [sym_friend_declaration] = STATE(134), - [sym_access_specifier] = STATE(6576), - [sym_reference_declarator] = STATE(4918), - [sym_structured_binding_declarator] = STATE(4918), - [sym_template_type] = STATE(3198), - [sym_template_function] = STATE(4918), - [sym_using_declaration] = STATE(134), - [sym_alias_declaration] = STATE(134), - [sym_static_assert_declaration] = STATE(134), - [sym_destructor_name] = STATE(4918), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4455), - [sym_qualified_identifier] = STATE(4918), - [sym_qualified_type_identifier] = STATE(3554), - [sym_qualified_operator_cast_identifier] = STATE(5126), - [sym_operator_name] = STATE(4918), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(134), - [aux_sym__declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_sized_type_specifier_repeat1] = STATE(3584), - [aux_sym_operator_cast_definition_repeat1] = STATE(1945), - [sym_identifier] = ACTIONS(1665), - [aux_sym_preproc_def_token1] = ACTIONS(1667), - [aux_sym_preproc_if_token1] = ACTIONS(1669), - [aux_sym_preproc_if_token2] = ACTIONS(1747), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1673), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1673), - [aux_sym_preproc_else_token1] = ACTIONS(1675), - [aux_sym_preproc_elif_token1] = ACTIONS(1677), - [sym_preproc_directive] = ACTIONS(1679), - [anon_sym_LPAREN2] = ACTIONS(1681), - [anon_sym_TILDE] = ACTIONS(1683), - [anon_sym_STAR] = ACTIONS(1685), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1687), - [anon_sym_typedef] = ACTIONS(1689), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(1691), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1413), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1693), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(1695), - [anon_sym_unsigned] = ACTIONS(1695), - [anon_sym_long] = ACTIONS(1695), - [anon_sym_short] = ACTIONS(1695), - [sym_primitive_type] = ACTIONS(1697), - [anon_sym_enum] = ACTIONS(1699), - [anon_sym_class] = ACTIONS(1701), - [anon_sym_struct] = ACTIONS(1703), - [anon_sym_union] = ACTIONS(1705), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1707), - [anon_sym_decltype] = ACTIONS(1709), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_explicit] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(1711), - [anon_sym_template] = ACTIONS(1713), - [anon_sym_operator] = ACTIONS(119), - [anon_sym_friend] = ACTIONS(1715), - [anon_sym_public] = ACTIONS(1717), - [anon_sym_private] = ACTIONS(1717), - [anon_sym_protected] = ACTIONS(1717), - [anon_sym_using] = ACTIONS(1719), - [anon_sym_static_assert] = ACTIONS(1721), - }, - [138] = { - [sym_preproc_def] = STATE(133), - [sym_preproc_function_def] = STATE(133), - [sym_preproc_call] = STATE(133), - [sym_preproc_if_in_field_declaration_list] = STATE(133), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(133), - [sym_preproc_else_in_field_declaration_list] = STATE(6401), - [sym_preproc_elif_in_field_declaration_list] = STATE(6401), - [sym_type_definition] = STATE(133), - [sym__declaration_modifiers] = STATE(3225), - [sym__declaration_specifiers] = STATE(4166), - [sym_attribute_specifier] = STATE(3225), - [sym_attribute_declaration] = STATE(3225), - [sym_ms_declspec_modifier] = STATE(3225), - [sym_ms_based_modifier] = STATE(6104), - [sym__declarator] = STATE(5113), - [sym_parenthesized_declarator] = STATE(4918), - [sym_attributed_declarator] = STATE(4918), - [sym_pointer_declarator] = STATE(4918), - [sym_function_declarator] = STATE(4752), - [sym_array_declarator] = STATE(4918), - [sym_storage_class_specifier] = STATE(3225), - [sym_type_qualifier] = STATE(3225), - [sym__type_specifier] = STATE(3337), - [sym_sized_type_specifier] = STATE(3601), - [sym_enum_specifier] = STATE(3601), - [sym_struct_specifier] = STATE(3601), - [sym_union_specifier] = STATE(3601), - [sym__field_declaration_list_item] = STATE(133), - [sym_field_declaration] = STATE(133), - [sym_placeholder_type_specifier] = STATE(3601), - [sym_decltype_auto] = STATE(3558), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3601), - [sym_virtual] = STATE(3225), - [sym_explicit_function_specifier] = STATE(1945), - [sym_dependent_type] = STATE(3601), - [sym_template_declaration] = STATE(133), - [sym_operator_cast] = STATE(5126), - [sym_inline_method_definition] = STATE(133), - [sym__constructor_specifiers] = STATE(1945), - [sym_operator_cast_definition] = STATE(133), - [sym_operator_cast_declaration] = STATE(133), - [sym_constructor_or_destructor_definition] = STATE(133), - [sym_constructor_or_destructor_declaration] = STATE(133), - [sym_friend_declaration] = STATE(133), - [sym_access_specifier] = STATE(6576), - [sym_reference_declarator] = STATE(4918), - [sym_structured_binding_declarator] = STATE(4918), - [sym_template_type] = STATE(3198), - [sym_template_function] = STATE(4918), - [sym_using_declaration] = STATE(133), - [sym_alias_declaration] = STATE(133), - [sym_static_assert_declaration] = STATE(133), - [sym_destructor_name] = STATE(4918), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4455), - [sym_qualified_identifier] = STATE(4918), - [sym_qualified_type_identifier] = STATE(3554), - [sym_qualified_operator_cast_identifier] = STATE(5126), - [sym_operator_name] = STATE(4918), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(133), - [aux_sym__declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_sized_type_specifier_repeat1] = STATE(3584), - [aux_sym_operator_cast_definition_repeat1] = STATE(1945), - [sym_identifier] = ACTIONS(1665), - [aux_sym_preproc_def_token1] = ACTIONS(1667), - [aux_sym_preproc_if_token1] = ACTIONS(1669), - [aux_sym_preproc_if_token2] = ACTIONS(1749), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1673), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1673), - [aux_sym_preproc_else_token1] = ACTIONS(1675), - [aux_sym_preproc_elif_token1] = ACTIONS(1677), - [sym_preproc_directive] = ACTIONS(1679), - [anon_sym_LPAREN2] = ACTIONS(1681), - [anon_sym_TILDE] = ACTIONS(1683), - [anon_sym_STAR] = ACTIONS(1685), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1687), - [anon_sym_typedef] = ACTIONS(1689), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(1691), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1413), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1693), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(1695), - [anon_sym_unsigned] = ACTIONS(1695), - [anon_sym_long] = ACTIONS(1695), - [anon_sym_short] = ACTIONS(1695), - [sym_primitive_type] = ACTIONS(1697), - [anon_sym_enum] = ACTIONS(1699), - [anon_sym_class] = ACTIONS(1701), - [anon_sym_struct] = ACTIONS(1703), - [anon_sym_union] = ACTIONS(1705), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1707), - [anon_sym_decltype] = ACTIONS(1709), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_explicit] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(1711), - [anon_sym_template] = ACTIONS(1713), - [anon_sym_operator] = ACTIONS(119), - [anon_sym_friend] = ACTIONS(1715), - [anon_sym_public] = ACTIONS(1717), - [anon_sym_private] = ACTIONS(1717), - [anon_sym_protected] = ACTIONS(1717), - [anon_sym_using] = ACTIONS(1719), - [anon_sym_static_assert] = ACTIONS(1721), - }, - [139] = { - [sym_preproc_def] = STATE(291), - [sym_preproc_function_def] = STATE(291), - [sym_preproc_call] = STATE(291), - [sym_preproc_if_in_field_declaration_list] = STATE(291), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(291), - [sym_preproc_else_in_field_declaration_list] = STATE(6384), - [sym_preproc_elif_in_field_declaration_list] = STATE(6384), - [sym_type_definition] = STATE(291), - [sym__declaration_modifiers] = STATE(3225), - [sym__declaration_specifiers] = STATE(4166), - [sym_attribute_specifier] = STATE(3225), - [sym_attribute_declaration] = STATE(3225), - [sym_ms_declspec_modifier] = STATE(3225), - [sym_ms_based_modifier] = STATE(6104), - [sym__declarator] = STATE(5113), - [sym_parenthesized_declarator] = STATE(4918), - [sym_attributed_declarator] = STATE(4918), - [sym_pointer_declarator] = STATE(4918), - [sym_function_declarator] = STATE(4752), - [sym_array_declarator] = STATE(4918), - [sym_storage_class_specifier] = STATE(3225), - [sym_type_qualifier] = STATE(3225), - [sym__type_specifier] = STATE(3337), - [sym_sized_type_specifier] = STATE(3601), - [sym_enum_specifier] = STATE(3601), - [sym_struct_specifier] = STATE(3601), - [sym_union_specifier] = STATE(3601), - [sym__field_declaration_list_item] = STATE(291), - [sym_field_declaration] = STATE(291), - [sym_placeholder_type_specifier] = STATE(3601), - [sym_decltype_auto] = STATE(3558), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3601), - [sym_virtual] = STATE(3225), - [sym_explicit_function_specifier] = STATE(1945), - [sym_dependent_type] = STATE(3601), - [sym_template_declaration] = STATE(291), - [sym_operator_cast] = STATE(5126), - [sym_inline_method_definition] = STATE(291), - [sym__constructor_specifiers] = STATE(1945), - [sym_operator_cast_definition] = STATE(291), - [sym_operator_cast_declaration] = STATE(291), - [sym_constructor_or_destructor_definition] = STATE(291), - [sym_constructor_or_destructor_declaration] = STATE(291), - [sym_friend_declaration] = STATE(291), - [sym_access_specifier] = STATE(6576), - [sym_reference_declarator] = STATE(4918), - [sym_structured_binding_declarator] = STATE(4918), - [sym_template_type] = STATE(3198), - [sym_template_function] = STATE(4918), - [sym_using_declaration] = STATE(291), - [sym_alias_declaration] = STATE(291), - [sym_static_assert_declaration] = STATE(291), - [sym_destructor_name] = STATE(4918), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4455), - [sym_qualified_identifier] = STATE(4918), - [sym_qualified_type_identifier] = STATE(3554), - [sym_qualified_operator_cast_identifier] = STATE(5126), - [sym_operator_name] = STATE(4918), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(291), - [aux_sym__declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_sized_type_specifier_repeat1] = STATE(3584), - [aux_sym_operator_cast_definition_repeat1] = STATE(1945), - [sym_identifier] = ACTIONS(1665), - [aux_sym_preproc_def_token1] = ACTIONS(1667), - [aux_sym_preproc_if_token1] = ACTIONS(1669), - [aux_sym_preproc_if_token2] = ACTIONS(1751), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1673), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1673), - [aux_sym_preproc_else_token1] = ACTIONS(1675), - [aux_sym_preproc_elif_token1] = ACTIONS(1677), - [sym_preproc_directive] = ACTIONS(1679), - [anon_sym_LPAREN2] = ACTIONS(1681), - [anon_sym_TILDE] = ACTIONS(1683), - [anon_sym_STAR] = ACTIONS(1685), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1687), - [anon_sym_typedef] = ACTIONS(1689), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(1691), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1413), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1693), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(1695), - [anon_sym_unsigned] = ACTIONS(1695), - [anon_sym_long] = ACTIONS(1695), - [anon_sym_short] = ACTIONS(1695), - [sym_primitive_type] = ACTIONS(1697), - [anon_sym_enum] = ACTIONS(1699), - [anon_sym_class] = ACTIONS(1701), - [anon_sym_struct] = ACTIONS(1703), - [anon_sym_union] = ACTIONS(1705), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1707), - [anon_sym_decltype] = ACTIONS(1709), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_explicit] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(1711), - [anon_sym_template] = ACTIONS(1713), - [anon_sym_operator] = ACTIONS(119), - [anon_sym_friend] = ACTIONS(1715), - [anon_sym_public] = ACTIONS(1717), - [anon_sym_private] = ACTIONS(1717), - [anon_sym_protected] = ACTIONS(1717), - [anon_sym_using] = ACTIONS(1719), - [anon_sym_static_assert] = ACTIONS(1721), - }, - [140] = { - [sym_preproc_def] = STATE(291), - [sym_preproc_function_def] = STATE(291), - [sym_preproc_call] = STATE(291), - [sym_preproc_if_in_field_declaration_list] = STATE(291), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(291), - [sym_preproc_else_in_field_declaration_list] = STATE(6397), - [sym_preproc_elif_in_field_declaration_list] = STATE(6397), - [sym_type_definition] = STATE(291), - [sym__declaration_modifiers] = STATE(3225), - [sym__declaration_specifiers] = STATE(4166), - [sym_attribute_specifier] = STATE(3225), - [sym_attribute_declaration] = STATE(3225), - [sym_ms_declspec_modifier] = STATE(3225), - [sym_ms_based_modifier] = STATE(6104), - [sym__declarator] = STATE(5113), - [sym_parenthesized_declarator] = STATE(4918), - [sym_attributed_declarator] = STATE(4918), - [sym_pointer_declarator] = STATE(4918), - [sym_function_declarator] = STATE(4752), - [sym_array_declarator] = STATE(4918), - [sym_storage_class_specifier] = STATE(3225), - [sym_type_qualifier] = STATE(3225), - [sym__type_specifier] = STATE(3337), - [sym_sized_type_specifier] = STATE(3601), - [sym_enum_specifier] = STATE(3601), - [sym_struct_specifier] = STATE(3601), - [sym_union_specifier] = STATE(3601), - [sym__field_declaration_list_item] = STATE(291), - [sym_field_declaration] = STATE(291), - [sym_placeholder_type_specifier] = STATE(3601), - [sym_decltype_auto] = STATE(3558), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3601), - [sym_virtual] = STATE(3225), - [sym_explicit_function_specifier] = STATE(1945), - [sym_dependent_type] = STATE(3601), - [sym_template_declaration] = STATE(291), - [sym_operator_cast] = STATE(5126), - [sym_inline_method_definition] = STATE(291), - [sym__constructor_specifiers] = STATE(1945), - [sym_operator_cast_definition] = STATE(291), - [sym_operator_cast_declaration] = STATE(291), - [sym_constructor_or_destructor_definition] = STATE(291), - [sym_constructor_or_destructor_declaration] = STATE(291), - [sym_friend_declaration] = STATE(291), - [sym_access_specifier] = STATE(6576), - [sym_reference_declarator] = STATE(4918), - [sym_structured_binding_declarator] = STATE(4918), - [sym_template_type] = STATE(3198), - [sym_template_function] = STATE(4918), - [sym_using_declaration] = STATE(291), - [sym_alias_declaration] = STATE(291), - [sym_static_assert_declaration] = STATE(291), - [sym_destructor_name] = STATE(4918), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4455), - [sym_qualified_identifier] = STATE(4918), - [sym_qualified_type_identifier] = STATE(3554), - [sym_qualified_operator_cast_identifier] = STATE(5126), - [sym_operator_name] = STATE(4918), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(291), - [aux_sym__declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_sized_type_specifier_repeat1] = STATE(3584), - [aux_sym_operator_cast_definition_repeat1] = STATE(1945), - [sym_identifier] = ACTIONS(1665), - [aux_sym_preproc_def_token1] = ACTIONS(1667), - [aux_sym_preproc_if_token1] = ACTIONS(1669), - [aux_sym_preproc_if_token2] = ACTIONS(1753), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1673), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1673), - [aux_sym_preproc_else_token1] = ACTIONS(1675), - [aux_sym_preproc_elif_token1] = ACTIONS(1677), - [sym_preproc_directive] = ACTIONS(1679), - [anon_sym_LPAREN2] = ACTIONS(1681), - [anon_sym_TILDE] = ACTIONS(1683), - [anon_sym_STAR] = ACTIONS(1685), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1687), - [anon_sym_typedef] = ACTIONS(1689), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(1691), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1413), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1693), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(1695), - [anon_sym_unsigned] = ACTIONS(1695), - [anon_sym_long] = ACTIONS(1695), - [anon_sym_short] = ACTIONS(1695), - [sym_primitive_type] = ACTIONS(1697), - [anon_sym_enum] = ACTIONS(1699), - [anon_sym_class] = ACTIONS(1701), - [anon_sym_struct] = ACTIONS(1703), - [anon_sym_union] = ACTIONS(1705), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1707), - [anon_sym_decltype] = ACTIONS(1709), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_explicit] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(1711), - [anon_sym_template] = ACTIONS(1713), - [anon_sym_operator] = ACTIONS(119), - [anon_sym_friend] = ACTIONS(1715), - [anon_sym_public] = ACTIONS(1717), - [anon_sym_private] = ACTIONS(1717), - [anon_sym_protected] = ACTIONS(1717), - [anon_sym_using] = ACTIONS(1719), - [anon_sym_static_assert] = ACTIONS(1721), - }, - [141] = { - [sym_preproc_def] = STATE(139), - [sym_preproc_function_def] = STATE(139), - [sym_preproc_call] = STATE(139), - [sym_preproc_if_in_field_declaration_list] = STATE(139), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(139), - [sym_preproc_else_in_field_declaration_list] = STATE(6398), - [sym_preproc_elif_in_field_declaration_list] = STATE(6398), - [sym_type_definition] = STATE(139), - [sym__declaration_modifiers] = STATE(3225), - [sym__declaration_specifiers] = STATE(4166), - [sym_attribute_specifier] = STATE(3225), - [sym_attribute_declaration] = STATE(3225), - [sym_ms_declspec_modifier] = STATE(3225), - [sym_ms_based_modifier] = STATE(6104), - [sym__declarator] = STATE(5113), - [sym_parenthesized_declarator] = STATE(4918), - [sym_attributed_declarator] = STATE(4918), - [sym_pointer_declarator] = STATE(4918), - [sym_function_declarator] = STATE(4752), - [sym_array_declarator] = STATE(4918), - [sym_storage_class_specifier] = STATE(3225), - [sym_type_qualifier] = STATE(3225), - [sym__type_specifier] = STATE(3337), - [sym_sized_type_specifier] = STATE(3601), - [sym_enum_specifier] = STATE(3601), - [sym_struct_specifier] = STATE(3601), - [sym_union_specifier] = STATE(3601), - [sym__field_declaration_list_item] = STATE(139), - [sym_field_declaration] = STATE(139), - [sym_placeholder_type_specifier] = STATE(3601), - [sym_decltype_auto] = STATE(3558), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3601), - [sym_virtual] = STATE(3225), - [sym_explicit_function_specifier] = STATE(1945), - [sym_dependent_type] = STATE(3601), - [sym_template_declaration] = STATE(139), - [sym_operator_cast] = STATE(5126), - [sym_inline_method_definition] = STATE(139), - [sym__constructor_specifiers] = STATE(1945), - [sym_operator_cast_definition] = STATE(139), - [sym_operator_cast_declaration] = STATE(139), - [sym_constructor_or_destructor_definition] = STATE(139), - [sym_constructor_or_destructor_declaration] = STATE(139), - [sym_friend_declaration] = STATE(139), - [sym_access_specifier] = STATE(6576), - [sym_reference_declarator] = STATE(4918), - [sym_structured_binding_declarator] = STATE(4918), - [sym_template_type] = STATE(3198), - [sym_template_function] = STATE(4918), - [sym_using_declaration] = STATE(139), - [sym_alias_declaration] = STATE(139), - [sym_static_assert_declaration] = STATE(139), - [sym_destructor_name] = STATE(4918), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4455), - [sym_qualified_identifier] = STATE(4918), - [sym_qualified_type_identifier] = STATE(3554), - [sym_qualified_operator_cast_identifier] = STATE(5126), - [sym_operator_name] = STATE(4918), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(139), - [aux_sym__declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_sized_type_specifier_repeat1] = STATE(3584), - [aux_sym_operator_cast_definition_repeat1] = STATE(1945), - [sym_identifier] = ACTIONS(1665), - [aux_sym_preproc_def_token1] = ACTIONS(1667), - [aux_sym_preproc_if_token1] = ACTIONS(1669), - [aux_sym_preproc_if_token2] = ACTIONS(1755), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1673), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1673), - [aux_sym_preproc_else_token1] = ACTIONS(1675), - [aux_sym_preproc_elif_token1] = ACTIONS(1677), - [sym_preproc_directive] = ACTIONS(1679), - [anon_sym_LPAREN2] = ACTIONS(1681), - [anon_sym_TILDE] = ACTIONS(1683), - [anon_sym_STAR] = ACTIONS(1685), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1687), - [anon_sym_typedef] = ACTIONS(1689), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(1691), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1413), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1693), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(1695), - [anon_sym_unsigned] = ACTIONS(1695), - [anon_sym_long] = ACTIONS(1695), - [anon_sym_short] = ACTIONS(1695), - [sym_primitive_type] = ACTIONS(1697), - [anon_sym_enum] = ACTIONS(1699), - [anon_sym_class] = ACTIONS(1701), - [anon_sym_struct] = ACTIONS(1703), - [anon_sym_union] = ACTIONS(1705), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1707), - [anon_sym_decltype] = ACTIONS(1709), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_explicit] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(1711), - [anon_sym_template] = ACTIONS(1713), - [anon_sym_operator] = ACTIONS(119), - [anon_sym_friend] = ACTIONS(1715), - [anon_sym_public] = ACTIONS(1717), - [anon_sym_private] = ACTIONS(1717), - [anon_sym_protected] = ACTIONS(1717), - [anon_sym_using] = ACTIONS(1719), - [anon_sym_static_assert] = ACTIONS(1721), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(113), + [anon_sym_decltype] = ACTIONS(115), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_typename] = ACTIONS(121), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(1752), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(1754), + [anon_sym_co_return] = ACTIONS(1756), + [anon_sym_co_yield] = ACTIONS(1758), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, - [142] = { - [sym_attribute_declaration] = STATE(172), - [sym_compound_statement] = STATE(756), - [sym_attributed_statement] = STATE(757), - [sym_labeled_statement] = STATE(758), - [sym_expression_statement] = STATE(759), - [sym_if_statement] = STATE(760), - [sym_switch_statement] = STATE(761), - [sym_case_statement] = STATE(762), - [sym_while_statement] = STATE(764), - [sym_do_statement] = STATE(765), - [sym_for_statement] = STATE(766), - [sym_return_statement] = STATE(767), - [sym_break_statement] = STATE(768), - [sym_continue_statement] = STATE(771), - [sym_goto_statement] = STATE(772), - [sym__expression] = STATE(3622), - [sym_comma_expression] = STATE(6125), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_for_range_loop] = STATE(773), - [sym_co_return_statement] = STATE(774), - [sym_co_yield_statement] = STATE(775), - [sym_throw_statement] = STATE(776), - [sym_try_statement] = STATE(777), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_attributed_declarator_repeat1] = STATE(172), - [sym_identifier] = ACTIONS(1757), - [anon_sym_LPAREN2] = ACTIONS(984), + [118] = { + [sym_declaration] = STATE(120), + [sym_type_definition] = STATE(120), + [sym__declaration_modifiers] = STATE(2514), + [sym__declaration_specifiers] = STATE(4629), + [sym_attribute_specifier] = STATE(2514), + [sym_attribute_declaration] = STATE(1583), + [sym_ms_declspec_modifier] = STATE(2514), + [sym_compound_statement] = STATE(120), + [sym_storage_class_specifier] = STATE(2514), + [sym_type_qualifier] = STATE(2514), + [sym__type_specifier] = STATE(3633), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), + [sym_attributed_statement] = STATE(120), + [sym_labeled_statement] = STATE(120), + [sym_expression_statement] = STATE(120), + [sym_if_statement] = STATE(120), + [sym_switch_statement] = STATE(120), + [sym_while_statement] = STATE(120), + [sym_do_statement] = STATE(120), + [sym_for_statement] = STATE(120), + [sym_return_statement] = STATE(120), + [sym_break_statement] = STATE(120), + [sym_continue_statement] = STATE(120), + [sym_goto_statement] = STATE(120), + [sym__expression] = STATE(4212), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7175), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym__class_name] = STATE(6623), + [sym_virtual] = STATE(2514), + [sym_dependent_type] = STATE(3723), + [sym_template_type] = STATE(3921), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(120), + [sym_co_return_statement] = STATE(120), + [sym_co_yield_statement] = STATE(120), + [sym_throw_statement] = STATE(120), + [sym_try_statement] = STATE(120), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5263), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(3915), + [sym_user_defined_literal] = STATE(3976), + [aux_sym__declaration_specifiers_repeat1] = STATE(2514), + [aux_sym_attributed_declarator_repeat1] = STATE(179), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [aux_sym_case_statement_repeat1] = STATE(120), + [sym_identifier] = ACTIONS(1726), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(33), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(994), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_if] = ACTIONS(73), - [anon_sym_switch] = ACTIONS(75), - [anon_sym_case] = ACTIONS(77), - [anon_sym_default] = ACTIONS(79), - [anon_sym_while] = ACTIONS(81), - [anon_sym_do] = ACTIONS(83), - [anon_sym_for] = ACTIONS(85), - [anon_sym_return] = ACTIONS(87), - [anon_sym_break] = ACTIONS(89), - [anon_sym_continue] = ACTIONS(91), - [anon_sym_goto] = ACTIONS(93), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(1728), + [anon_sym_typedef] = ACTIONS(1730), + [anon_sym_extern] = ACTIONS(53), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(1732), + [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(53), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(1734), + [anon_sym_else] = ACTIONS(1331), + [anon_sym_switch] = ACTIONS(1736), + [anon_sym_while] = ACTIONS(1738), + [anon_sym_do] = ACTIONS(1740), + [anon_sym_for] = ACTIONS(1742), + [anon_sym_return] = ACTIONS(1744), + [anon_sym_break] = ACTIONS(1746), + [anon_sym_continue] = ACTIONS(1748), + [anon_sym_goto] = ACTIONS(1750), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_try] = ACTIONS(121), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(125), - [anon_sym_co_return] = ACTIONS(135), - [anon_sym_co_yield] = ACTIONS(137), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(113), + [anon_sym_decltype] = ACTIONS(115), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_typename] = ACTIONS(121), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(1752), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(1754), + [anon_sym_co_return] = ACTIONS(1756), + [anon_sym_co_yield] = ACTIONS(1758), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, - [143] = { - [sym_attribute_declaration] = STATE(206), - [sym_compound_statement] = STATE(891), - [sym_attributed_statement] = STATE(889), - [sym_labeled_statement] = STATE(888), - [sym_expression_statement] = STATE(887), - [sym_if_statement] = STATE(886), - [sym_switch_statement] = STATE(885), - [sym_case_statement] = STATE(884), - [sym_while_statement] = STATE(883), - [sym_do_statement] = STATE(882), - [sym_for_statement] = STATE(881), - [sym_return_statement] = STATE(880), - [sym_break_statement] = STATE(879), - [sym_continue_statement] = STATE(878), - [sym_goto_statement] = STATE(877), - [sym__expression] = STATE(3502), - [sym_comma_expression] = STATE(6595), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_for_range_loop] = STATE(876), - [sym_co_return_statement] = STATE(875), - [sym_co_yield_statement] = STATE(874), - [sym_throw_statement] = STATE(871), - [sym_try_statement] = STATE(870), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_attributed_declarator_repeat1] = STATE(206), - [sym_identifier] = ACTIONS(1759), - [anon_sym_LPAREN2] = ACTIONS(984), + [119] = { + [sym_declaration] = STATE(118), + [sym_type_definition] = STATE(118), + [sym__declaration_modifiers] = STATE(2514), + [sym__declaration_specifiers] = STATE(4629), + [sym_attribute_specifier] = STATE(2514), + [sym_attribute_declaration] = STATE(1583), + [sym_ms_declspec_modifier] = STATE(2514), + [sym_compound_statement] = STATE(118), + [sym_storage_class_specifier] = STATE(2514), + [sym_type_qualifier] = STATE(2514), + [sym__type_specifier] = STATE(3633), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), + [sym_attributed_statement] = STATE(118), + [sym_labeled_statement] = STATE(118), + [sym_expression_statement] = STATE(118), + [sym_if_statement] = STATE(118), + [sym_switch_statement] = STATE(118), + [sym_while_statement] = STATE(118), + [sym_do_statement] = STATE(118), + [sym_for_statement] = STATE(118), + [sym_return_statement] = STATE(118), + [sym_break_statement] = STATE(118), + [sym_continue_statement] = STATE(118), + [sym_goto_statement] = STATE(118), + [sym__expression] = STATE(4212), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7175), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym__class_name] = STATE(6623), + [sym_virtual] = STATE(2514), + [sym_dependent_type] = STATE(3723), + [sym_template_type] = STATE(3921), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(118), + [sym_co_return_statement] = STATE(118), + [sym_co_yield_statement] = STATE(118), + [sym_throw_statement] = STATE(118), + [sym_try_statement] = STATE(118), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5263), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(3915), + [sym_user_defined_literal] = STATE(3976), + [aux_sym__declaration_specifiers_repeat1] = STATE(2514), + [aux_sym_attributed_declarator_repeat1] = STATE(179), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [aux_sym_case_statement_repeat1] = STATE(118), + [sym_identifier] = ACTIONS(1726), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_LBRACK] = ACTIONS(994), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_if] = ACTIONS(175), - [anon_sym_switch] = ACTIONS(177), - [anon_sym_case] = ACTIONS(179), - [anon_sym_default] = ACTIONS(181), - [anon_sym_while] = ACTIONS(183), - [anon_sym_do] = ACTIONS(185), - [anon_sym_for] = ACTIONS(187), - [anon_sym_return] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), - [anon_sym_goto] = ACTIONS(195), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(1728), + [anon_sym_typedef] = ACTIONS(1730), + [anon_sym_extern] = ACTIONS(53), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(1732), + [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(53), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(1734), + [anon_sym_else] = ACTIONS(1504), + [anon_sym_switch] = ACTIONS(1736), + [anon_sym_while] = ACTIONS(1738), + [anon_sym_do] = ACTIONS(1740), + [anon_sym_for] = ACTIONS(1742), + [anon_sym_return] = ACTIONS(1744), + [anon_sym_break] = ACTIONS(1746), + [anon_sym_continue] = ACTIONS(1748), + [anon_sym_goto] = ACTIONS(1750), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_try] = ACTIONS(201), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(203), - [anon_sym_co_return] = ACTIONS(213), - [anon_sym_co_yield] = ACTIONS(215), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(113), + [anon_sym_decltype] = ACTIONS(115), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_typename] = ACTIONS(121), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(1752), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(1754), + [anon_sym_co_return] = ACTIONS(1756), + [anon_sym_co_yield] = ACTIONS(1758), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, - [144] = { - [sym_attribute_declaration] = STATE(151), - [sym_compound_statement] = STATE(636), - [sym_attributed_statement] = STATE(636), - [sym_labeled_statement] = STATE(636), - [sym_expression_statement] = STATE(636), - [sym_if_statement] = STATE(636), - [sym_switch_statement] = STATE(636), - [sym_case_statement] = STATE(636), - [sym_while_statement] = STATE(636), - [sym_do_statement] = STATE(636), - [sym_for_statement] = STATE(636), - [sym_return_statement] = STATE(636), - [sym_break_statement] = STATE(636), - [sym_continue_statement] = STATE(636), - [sym_goto_statement] = STATE(636), - [sym__expression] = STATE(3522), - [sym_comma_expression] = STATE(6276), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_for_range_loop] = STATE(636), - [sym_co_return_statement] = STATE(636), - [sym_co_yield_statement] = STATE(636), - [sym_throw_statement] = STATE(636), - [sym_try_statement] = STATE(636), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_attributed_declarator_repeat1] = STATE(151), - [sym_identifier] = ACTIONS(1761), - [anon_sym_LPAREN2] = ACTIONS(984), + [120] = { + [sym_declaration] = STATE(120), + [sym_type_definition] = STATE(120), + [sym__declaration_modifiers] = STATE(2514), + [sym__declaration_specifiers] = STATE(4629), + [sym_attribute_specifier] = STATE(2514), + [sym_attribute_declaration] = STATE(1583), + [sym_ms_declspec_modifier] = STATE(2514), + [sym_compound_statement] = STATE(120), + [sym_storage_class_specifier] = STATE(2514), + [sym_type_qualifier] = STATE(2514), + [sym__type_specifier] = STATE(3633), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), + [sym_attributed_statement] = STATE(120), + [sym_labeled_statement] = STATE(120), + [sym_expression_statement] = STATE(120), + [sym_if_statement] = STATE(120), + [sym_switch_statement] = STATE(120), + [sym_while_statement] = STATE(120), + [sym_do_statement] = STATE(120), + [sym_for_statement] = STATE(120), + [sym_return_statement] = STATE(120), + [sym_break_statement] = STATE(120), + [sym_continue_statement] = STATE(120), + [sym_goto_statement] = STATE(120), + [sym__expression] = STATE(4212), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7175), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym__class_name] = STATE(6623), + [sym_virtual] = STATE(2514), + [sym_dependent_type] = STATE(3723), + [sym_template_type] = STATE(3921), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(120), + [sym_co_return_statement] = STATE(120), + [sym_co_yield_statement] = STATE(120), + [sym_throw_statement] = STATE(120), + [sym_try_statement] = STATE(120), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5263), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(3915), + [sym_user_defined_literal] = STATE(3976), + [aux_sym__declaration_specifiers_repeat1] = STATE(2514), + [aux_sym_attributed_declarator_repeat1] = STATE(179), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [aux_sym_case_statement_repeat1] = STATE(120), + [sym_identifier] = ACTIONS(1760), + [anon_sym_LPAREN2] = ACTIONS(1340), + [anon_sym_BANG] = ACTIONS(1343), + [anon_sym_TILDE] = ACTIONS(1343), + [anon_sym_DASH] = ACTIONS(1346), + [anon_sym_PLUS] = ACTIONS(1346), + [anon_sym_STAR] = ACTIONS(1349), + [anon_sym_AMP] = ACTIONS(1349), + [anon_sym_SEMI] = ACTIONS(1763), + [anon_sym_typedef] = ACTIONS(1766), + [anon_sym_extern] = ACTIONS(1363), + [anon_sym___attribute__] = ACTIONS(1366), + [anon_sym_COLON_COLON] = ACTIONS(1369), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1372), + [anon_sym___declspec] = ACTIONS(1375), + [anon_sym_LBRACE] = ACTIONS(1769), + [anon_sym_LBRACK] = ACTIONS(1381), + [anon_sym_static] = ACTIONS(1363), + [anon_sym_register] = ACTIONS(1363), + [anon_sym_inline] = ACTIONS(1363), + [anon_sym_thread_local] = ACTIONS(1363), + [anon_sym_const] = ACTIONS(1384), + [anon_sym_constexpr] = ACTIONS(1384), + [anon_sym_volatile] = ACTIONS(1384), + [anon_sym_restrict] = ACTIONS(1384), + [anon_sym___restrict__] = ACTIONS(1384), + [anon_sym__Atomic] = ACTIONS(1384), + [anon_sym__Noreturn] = ACTIONS(1384), + [anon_sym_noreturn] = ACTIONS(1384), + [anon_sym_mutable] = ACTIONS(1384), + [anon_sym_constinit] = ACTIONS(1384), + [anon_sym_consteval] = ACTIONS(1384), + [anon_sym_signed] = ACTIONS(1387), + [anon_sym_unsigned] = ACTIONS(1387), + [anon_sym_long] = ACTIONS(1387), + [anon_sym_short] = ACTIONS(1387), + [sym_primitive_type] = ACTIONS(1390), + [anon_sym_enum] = ACTIONS(1393), + [anon_sym_class] = ACTIONS(1396), + [anon_sym_struct] = ACTIONS(1399), + [anon_sym_union] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1772), + [anon_sym_else] = ACTIONS(1338), + [anon_sym_switch] = ACTIONS(1775), + [anon_sym_while] = ACTIONS(1778), + [anon_sym_do] = ACTIONS(1781), + [anon_sym_for] = ACTIONS(1784), + [anon_sym_return] = ACTIONS(1787), + [anon_sym_break] = ACTIONS(1790), + [anon_sym_continue] = ACTIONS(1793), + [anon_sym_goto] = ACTIONS(1796), + [anon_sym_not] = ACTIONS(1346), + [anon_sym_compl] = ACTIONS(1346), + [anon_sym_DASH_DASH] = ACTIONS(1432), + [anon_sym_PLUS_PLUS] = ACTIONS(1432), + [anon_sym_sizeof] = ACTIONS(1435), + [anon_sym_offsetof] = ACTIONS(1438), + [anon_sym__Generic] = ACTIONS(1441), + [anon_sym_asm] = ACTIONS(1444), + [anon_sym___asm__] = ACTIONS(1444), + [sym_number_literal] = ACTIONS(1447), + [anon_sym_L_SQUOTE] = ACTIONS(1450), + [anon_sym_u_SQUOTE] = ACTIONS(1450), + [anon_sym_U_SQUOTE] = ACTIONS(1450), + [anon_sym_u8_SQUOTE] = ACTIONS(1450), + [anon_sym_SQUOTE] = ACTIONS(1450), + [anon_sym_L_DQUOTE] = ACTIONS(1453), + [anon_sym_u_DQUOTE] = ACTIONS(1453), + [anon_sym_U_DQUOTE] = ACTIONS(1453), + [anon_sym_u8_DQUOTE] = ACTIONS(1453), + [anon_sym_DQUOTE] = ACTIONS(1453), + [sym_true] = ACTIONS(1456), + [sym_false] = ACTIONS(1456), + [anon_sym_NULL] = ACTIONS(1459), + [anon_sym_nullptr] = ACTIONS(1459), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1462), + [anon_sym_decltype] = ACTIONS(1465), + [anon_sym_virtual] = ACTIONS(1468), + [anon_sym_typename] = ACTIONS(1471), + [anon_sym_template] = ACTIONS(1474), + [anon_sym_try] = ACTIONS(1799), + [anon_sym_delete] = ACTIONS(1480), + [anon_sym_throw] = ACTIONS(1802), + [anon_sym_co_return] = ACTIONS(1805), + [anon_sym_co_yield] = ACTIONS(1808), + [anon_sym_R_DQUOTE] = ACTIONS(1492), + [anon_sym_LR_DQUOTE] = ACTIONS(1492), + [anon_sym_uR_DQUOTE] = ACTIONS(1492), + [anon_sym_UR_DQUOTE] = ACTIONS(1492), + [anon_sym_u8R_DQUOTE] = ACTIONS(1492), + [anon_sym_co_await] = ACTIONS(1495), + [anon_sym_new] = ACTIONS(1498), + [anon_sym_requires] = ACTIONS(1501), + [sym_this] = ACTIONS(1456), + }, + [121] = { + [sym_declaration] = STATE(117), + [sym_type_definition] = STATE(117), + [sym__declaration_modifiers] = STATE(2514), + [sym__declaration_specifiers] = STATE(4629), + [sym_attribute_specifier] = STATE(2514), + [sym_attribute_declaration] = STATE(1583), + [sym_ms_declspec_modifier] = STATE(2514), + [sym_compound_statement] = STATE(117), + [sym_storage_class_specifier] = STATE(2514), + [sym_type_qualifier] = STATE(2514), + [sym__type_specifier] = STATE(3633), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), + [sym_attributed_statement] = STATE(117), + [sym_labeled_statement] = STATE(117), + [sym_expression_statement] = STATE(117), + [sym_if_statement] = STATE(117), + [sym_switch_statement] = STATE(117), + [sym_while_statement] = STATE(117), + [sym_do_statement] = STATE(117), + [sym_for_statement] = STATE(117), + [sym_return_statement] = STATE(117), + [sym_break_statement] = STATE(117), + [sym_continue_statement] = STATE(117), + [sym_goto_statement] = STATE(117), + [sym__expression] = STATE(4212), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7175), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym__class_name] = STATE(6623), + [sym_virtual] = STATE(2514), + [sym_dependent_type] = STATE(3723), + [sym_template_type] = STATE(3921), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(117), + [sym_co_return_statement] = STATE(117), + [sym_co_yield_statement] = STATE(117), + [sym_throw_statement] = STATE(117), + [sym_try_statement] = STATE(117), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5263), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(3915), + [sym_user_defined_literal] = STATE(3976), + [aux_sym__declaration_specifiers_repeat1] = STATE(2514), + [aux_sym_attributed_declarator_repeat1] = STATE(179), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [aux_sym_case_statement_repeat1] = STATE(117), + [sym_identifier] = ACTIONS(1726), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(660), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(666), - [anon_sym_LBRACK] = ACTIONS(994), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_if] = ACTIONS(670), - [anon_sym_switch] = ACTIONS(672), - [anon_sym_case] = ACTIONS(674), - [anon_sym_default] = ACTIONS(676), - [anon_sym_while] = ACTIONS(678), - [anon_sym_do] = ACTIONS(680), - [anon_sym_for] = ACTIONS(682), - [anon_sym_return] = ACTIONS(684), - [anon_sym_break] = ACTIONS(686), - [anon_sym_continue] = ACTIONS(688), - [anon_sym_goto] = ACTIONS(690), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(1728), + [anon_sym_typedef] = ACTIONS(1730), + [anon_sym_extern] = ACTIONS(53), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(1732), + [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(53), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(1734), + [anon_sym_else] = ACTIONS(1508), + [anon_sym_switch] = ACTIONS(1736), + [anon_sym_while] = ACTIONS(1738), + [anon_sym_do] = ACTIONS(1740), + [anon_sym_for] = ACTIONS(1742), + [anon_sym_return] = ACTIONS(1744), + [anon_sym_break] = ACTIONS(1746), + [anon_sym_continue] = ACTIONS(1748), + [anon_sym_goto] = ACTIONS(1750), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_try] = ACTIONS(694), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(696), - [anon_sym_co_return] = ACTIONS(706), - [anon_sym_co_yield] = ACTIONS(708), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(113), + [anon_sym_decltype] = ACTIONS(115), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_typename] = ACTIONS(121), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(1752), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(1754), + [anon_sym_co_return] = ACTIONS(1756), + [anon_sym_co_yield] = ACTIONS(1758), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, - [145] = { - [sym_attribute_declaration] = STATE(238), - [sym_compound_statement] = STATE(6439), - [sym_attributed_statement] = STATE(6439), - [sym_labeled_statement] = STATE(6439), - [sym_expression_statement] = STATE(6439), - [sym_if_statement] = STATE(6439), - [sym_switch_statement] = STATE(6439), - [sym_case_statement] = STATE(6439), - [sym_while_statement] = STATE(6439), - [sym_do_statement] = STATE(6439), - [sym_for_statement] = STATE(6439), - [sym_return_statement] = STATE(6439), - [sym_break_statement] = STATE(6439), - [sym_continue_statement] = STATE(6439), - [sym_goto_statement] = STATE(6439), - [sym__expression] = STATE(3622), - [sym_comma_expression] = STATE(6125), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_for_range_loop] = STATE(6439), - [sym_co_return_statement] = STATE(6439), - [sym_co_yield_statement] = STATE(6439), - [sym_throw_statement] = STATE(6439), - [sym_try_statement] = STATE(6439), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_attributed_declarator_repeat1] = STATE(238), - [sym_identifier] = ACTIONS(1763), - [anon_sym_LPAREN2] = ACTIONS(984), + [122] = { + [sym_declaration] = STATE(2122), + [sym_type_definition] = STATE(2122), + [sym__declaration_modifiers] = STATE(2514), + [sym__declaration_specifiers] = STATE(4668), + [sym_attribute_specifier] = STATE(2514), + [sym_attribute_declaration] = STATE(2514), + [sym_ms_declspec_modifier] = STATE(2514), + [sym_storage_class_specifier] = STATE(2514), + [sym_type_qualifier] = STATE(2514), + [sym__type_specifier] = STATE(3633), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), + [sym_expression_statement] = STATE(2122), + [sym__expression] = STATE(4100), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(6760), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym__class_name] = STATE(6623), + [sym_virtual] = STATE(2514), + [sym_dependent_type] = STATE(3723), + [sym_template_type] = STATE(3921), + [sym_template_function] = STATE(3976), + [sym_alias_declaration] = STATE(2122), + [sym_init_statement] = STATE(141), + [sym_condition_declaration] = STATE(7312), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5263), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(3915), + [sym_user_defined_literal] = STATE(3976), + [aux_sym__declaration_specifiers_repeat1] = STATE(2514), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [sym_identifier] = ACTIONS(1811), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(33), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(994), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_if] = ACTIONS(1765), - [anon_sym_switch] = ACTIONS(75), - [anon_sym_case] = ACTIONS(1767), - [anon_sym_default] = ACTIONS(1769), - [anon_sym_while] = ACTIONS(1771), - [anon_sym_do] = ACTIONS(83), - [anon_sym_for] = ACTIONS(1773), - [anon_sym_return] = ACTIONS(87), - [anon_sym_break] = ACTIONS(89), - [anon_sym_continue] = ACTIONS(91), - [anon_sym_goto] = ACTIONS(93), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(1728), + [anon_sym_typedef] = ACTIONS(1730), + [anon_sym_extern] = ACTIONS(53), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1813), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(53), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_try] = ACTIONS(121), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(125), - [anon_sym_co_return] = ACTIONS(135), - [anon_sym_co_yield] = ACTIONS(137), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(113), + [anon_sym_decltype] = ACTIONS(115), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_typename] = ACTIONS(121), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_using] = ACTIONS(1815), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, - [146] = { - [sym_attribute_declaration] = STATE(206), - [sym_compound_statement] = STATE(904), - [sym_attributed_statement] = STATE(904), - [sym_labeled_statement] = STATE(904), - [sym_expression_statement] = STATE(904), - [sym_if_statement] = STATE(904), - [sym_switch_statement] = STATE(904), - [sym_case_statement] = STATE(904), - [sym_while_statement] = STATE(904), - [sym_do_statement] = STATE(904), - [sym_for_statement] = STATE(904), - [sym_return_statement] = STATE(904), - [sym_break_statement] = STATE(904), - [sym_continue_statement] = STATE(904), - [sym_goto_statement] = STATE(904), - [sym__expression] = STATE(3502), - [sym_comma_expression] = STATE(6595), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_for_range_loop] = STATE(904), - [sym_co_return_statement] = STATE(904), - [sym_co_yield_statement] = STATE(904), - [sym_throw_statement] = STATE(904), - [sym_try_statement] = STATE(904), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_attributed_declarator_repeat1] = STATE(206), - [sym_identifier] = ACTIONS(1759), - [anon_sym_LPAREN2] = ACTIONS(984), + [123] = { + [sym_declaration] = STATE(555), + [sym_type_definition] = STATE(4350), + [sym__declaration_modifiers] = STATE(2514), + [sym__declaration_specifiers] = STATE(4653), + [sym_attribute_specifier] = STATE(2514), + [sym_attribute_declaration] = STATE(2514), + [sym_ms_declspec_modifier] = STATE(2514), + [sym_storage_class_specifier] = STATE(2514), + [sym_type_qualifier] = STATE(2514), + [sym__type_specifier] = STATE(3633), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), + [sym_expression_statement] = STATE(4350), + [sym__expression] = STATE(4244), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7314), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym__class_name] = STATE(6623), + [sym_virtual] = STATE(2514), + [sym_dependent_type] = STATE(3723), + [sym_template_type] = STATE(3921), + [sym_template_function] = STATE(3976), + [sym_alias_declaration] = STATE(4350), + [sym_init_statement] = STATE(2453), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5263), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(3915), + [sym_user_defined_literal] = STATE(3976), + [aux_sym__declaration_specifiers_repeat1] = STATE(2514), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [sym_identifier] = ACTIONS(1811), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_LBRACK] = ACTIONS(994), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_if] = ACTIONS(175), - [anon_sym_switch] = ACTIONS(177), - [anon_sym_case] = ACTIONS(179), - [anon_sym_default] = ACTIONS(181), - [anon_sym_while] = ACTIONS(183), - [anon_sym_do] = ACTIONS(185), - [anon_sym_for] = ACTIONS(187), - [anon_sym_return] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), - [anon_sym_goto] = ACTIONS(195), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(1817), + [anon_sym_typedef] = ACTIONS(1819), + [anon_sym_extern] = ACTIONS(53), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1813), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(53), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_try] = ACTIONS(201), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(203), - [anon_sym_co_return] = ACTIONS(213), - [anon_sym_co_yield] = ACTIONS(215), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(113), + [anon_sym_decltype] = ACTIONS(115), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_typename] = ACTIONS(121), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_using] = ACTIONS(1821), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, - [147] = { - [sym_attribute_declaration] = STATE(151), - [sym_compound_statement] = STATE(634), - [sym_attributed_statement] = STATE(634), - [sym_labeled_statement] = STATE(634), - [sym_expression_statement] = STATE(634), - [sym_if_statement] = STATE(634), - [sym_switch_statement] = STATE(634), - [sym_case_statement] = STATE(634), - [sym_while_statement] = STATE(634), - [sym_do_statement] = STATE(634), - [sym_for_statement] = STATE(634), - [sym_return_statement] = STATE(634), - [sym_break_statement] = STATE(634), - [sym_continue_statement] = STATE(634), - [sym_goto_statement] = STATE(634), - [sym__expression] = STATE(3522), - [sym_comma_expression] = STATE(6276), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_for_range_loop] = STATE(634), - [sym_co_return_statement] = STATE(634), - [sym_co_yield_statement] = STATE(634), - [sym_throw_statement] = STATE(634), - [sym_try_statement] = STATE(634), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_attributed_declarator_repeat1] = STATE(151), - [sym_identifier] = ACTIONS(1761), - [anon_sym_LPAREN2] = ACTIONS(984), + [124] = { + [sym_declaration] = STATE(596), + [sym_type_definition] = STATE(4350), + [sym__declaration_modifiers] = STATE(2514), + [sym__declaration_specifiers] = STATE(4591), + [sym_attribute_specifier] = STATE(2514), + [sym_attribute_declaration] = STATE(2514), + [sym_ms_declspec_modifier] = STATE(2514), + [sym_storage_class_specifier] = STATE(2514), + [sym_type_qualifier] = STATE(2514), + [sym__type_specifier] = STATE(3633), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), + [sym_expression_statement] = STATE(4350), + [sym__expression] = STATE(4223), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7418), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym__class_name] = STATE(6623), + [sym_virtual] = STATE(2514), + [sym_dependent_type] = STATE(3723), + [sym_template_type] = STATE(3921), + [sym_template_function] = STATE(3976), + [sym_alias_declaration] = STATE(4350), + [sym_init_statement] = STATE(2459), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5263), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(3915), + [sym_user_defined_literal] = STATE(3976), + [aux_sym__declaration_specifiers_repeat1] = STATE(2514), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [sym_identifier] = ACTIONS(1811), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(660), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(666), - [anon_sym_LBRACK] = ACTIONS(994), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_if] = ACTIONS(670), - [anon_sym_switch] = ACTIONS(672), - [anon_sym_case] = ACTIONS(674), - [anon_sym_default] = ACTIONS(676), - [anon_sym_while] = ACTIONS(678), - [anon_sym_do] = ACTIONS(680), - [anon_sym_for] = ACTIONS(682), - [anon_sym_return] = ACTIONS(684), - [anon_sym_break] = ACTIONS(686), - [anon_sym_continue] = ACTIONS(688), - [anon_sym_goto] = ACTIONS(690), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(1823), + [anon_sym_typedef] = ACTIONS(1819), + [anon_sym_extern] = ACTIONS(53), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1813), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(53), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_try] = ACTIONS(694), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(696), - [anon_sym_co_return] = ACTIONS(706), - [anon_sym_co_yield] = ACTIONS(708), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(113), + [anon_sym_decltype] = ACTIONS(115), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_typename] = ACTIONS(121), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_using] = ACTIONS(1821), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, - [148] = { - [sym_attribute_declaration] = STATE(151), - [sym_compound_statement] = STATE(635), - [sym_attributed_statement] = STATE(635), - [sym_labeled_statement] = STATE(635), - [sym_expression_statement] = STATE(635), - [sym_if_statement] = STATE(635), - [sym_switch_statement] = STATE(635), - [sym_case_statement] = STATE(635), - [sym_while_statement] = STATE(635), - [sym_do_statement] = STATE(635), - [sym_for_statement] = STATE(635), - [sym_return_statement] = STATE(635), - [sym_break_statement] = STATE(635), - [sym_continue_statement] = STATE(635), - [sym_goto_statement] = STATE(635), - [sym__expression] = STATE(3522), - [sym_comma_expression] = STATE(6276), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_for_range_loop] = STATE(635), - [sym_co_return_statement] = STATE(635), - [sym_co_yield_statement] = STATE(635), - [sym_throw_statement] = STATE(635), - [sym_try_statement] = STATE(635), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_attributed_declarator_repeat1] = STATE(151), - [sym_identifier] = ACTIONS(1761), - [anon_sym_LPAREN2] = ACTIONS(984), + [125] = { + [sym_declaration] = STATE(597), + [sym_type_definition] = STATE(4350), + [sym__declaration_modifiers] = STATE(2514), + [sym__declaration_specifiers] = STATE(4667), + [sym_attribute_specifier] = STATE(2514), + [sym_attribute_declaration] = STATE(2514), + [sym_ms_declspec_modifier] = STATE(2514), + [sym_storage_class_specifier] = STATE(2514), + [sym_type_qualifier] = STATE(2514), + [sym__type_specifier] = STATE(3633), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), + [sym_expression_statement] = STATE(4350), + [sym__expression] = STATE(4138), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7649), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym__class_name] = STATE(6623), + [sym_virtual] = STATE(2514), + [sym_dependent_type] = STATE(3723), + [sym_template_type] = STATE(3921), + [sym_template_function] = STATE(3976), + [sym_alias_declaration] = STATE(4350), + [sym_init_statement] = STATE(2401), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5263), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(3915), + [sym_user_defined_literal] = STATE(3976), + [aux_sym__declaration_specifiers_repeat1] = STATE(2514), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [sym_identifier] = ACTIONS(1811), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(660), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(666), - [anon_sym_LBRACK] = ACTIONS(994), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_if] = ACTIONS(670), - [anon_sym_switch] = ACTIONS(672), - [anon_sym_case] = ACTIONS(674), - [anon_sym_default] = ACTIONS(676), - [anon_sym_while] = ACTIONS(678), - [anon_sym_do] = ACTIONS(680), - [anon_sym_for] = ACTIONS(682), - [anon_sym_return] = ACTIONS(684), - [anon_sym_break] = ACTIONS(686), - [anon_sym_continue] = ACTIONS(688), - [anon_sym_goto] = ACTIONS(690), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(1825), + [anon_sym_typedef] = ACTIONS(1819), + [anon_sym_extern] = ACTIONS(53), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1813), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(53), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_try] = ACTIONS(694), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(696), - [anon_sym_co_return] = ACTIONS(706), - [anon_sym_co_yield] = ACTIONS(708), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(113), + [anon_sym_decltype] = ACTIONS(115), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_typename] = ACTIONS(121), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_using] = ACTIONS(1821), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, - [149] = { - [sym_attribute_declaration] = STATE(161), - [sym_compound_statement] = STATE(1230), - [sym_attributed_statement] = STATE(1230), - [sym_labeled_statement] = STATE(1230), - [sym_expression_statement] = STATE(1230), - [sym_if_statement] = STATE(1230), - [sym_switch_statement] = STATE(1230), - [sym_case_statement] = STATE(1230), - [sym_while_statement] = STATE(1230), - [sym_do_statement] = STATE(1230), - [sym_for_statement] = STATE(1230), - [sym_return_statement] = STATE(1230), - [sym_break_statement] = STATE(1230), - [sym_continue_statement] = STATE(1230), - [sym_goto_statement] = STATE(1230), - [sym__expression] = STATE(3545), - [sym_comma_expression] = STATE(6215), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_for_range_loop] = STATE(1230), - [sym_co_return_statement] = STATE(1230), - [sym_co_yield_statement] = STATE(1230), - [sym_throw_statement] = STATE(1230), - [sym_try_statement] = STATE(1230), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_attributed_declarator_repeat1] = STATE(161), - [sym_identifier] = ACTIONS(1775), - [anon_sym_LPAREN2] = ACTIONS(984), + [126] = { + [sym_declaration] = STATE(528), + [sym_type_definition] = STATE(4350), + [sym__declaration_modifiers] = STATE(2514), + [sym__declaration_specifiers] = STATE(4640), + [sym_attribute_specifier] = STATE(2514), + [sym_attribute_declaration] = STATE(2514), + [sym_ms_declspec_modifier] = STATE(2514), + [sym_storage_class_specifier] = STATE(2514), + [sym_type_qualifier] = STATE(2514), + [sym__type_specifier] = STATE(3633), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), + [sym_expression_statement] = STATE(4350), + [sym__expression] = STATE(4190), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7563), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym__class_name] = STATE(6623), + [sym_virtual] = STATE(2514), + [sym_dependent_type] = STATE(3723), + [sym_template_type] = STATE(3921), + [sym_template_function] = STATE(3976), + [sym_alias_declaration] = STATE(4350), + [sym_init_statement] = STATE(2471), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5263), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(3915), + [sym_user_defined_literal] = STATE(3976), + [aux_sym__declaration_specifiers_repeat1] = STATE(2514), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [sym_identifier] = ACTIONS(1811), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(1328), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(1332), - [anon_sym_LBRACK] = ACTIONS(994), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_if] = ACTIONS(1334), - [anon_sym_switch] = ACTIONS(1336), - [anon_sym_case] = ACTIONS(1767), - [anon_sym_default] = ACTIONS(1769), - [anon_sym_while] = ACTIONS(1338), - [anon_sym_do] = ACTIONS(1340), - [anon_sym_for] = ACTIONS(1342), - [anon_sym_return] = ACTIONS(1344), - [anon_sym_break] = ACTIONS(1346), - [anon_sym_continue] = ACTIONS(1348), - [anon_sym_goto] = ACTIONS(1350), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(1827), + [anon_sym_typedef] = ACTIONS(1819), + [anon_sym_extern] = ACTIONS(53), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1813), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(53), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_try] = ACTIONS(1352), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(1354), - [anon_sym_co_return] = ACTIONS(1356), - [anon_sym_co_yield] = ACTIONS(1358), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(113), + [anon_sym_decltype] = ACTIONS(115), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_typename] = ACTIONS(121), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_using] = ACTIONS(1821), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, - [150] = { - [sym_attribute_declaration] = STATE(149), - [sym_compound_statement] = STATE(1231), - [sym_attributed_statement] = STATE(1231), - [sym_labeled_statement] = STATE(1231), - [sym_expression_statement] = STATE(1231), - [sym_if_statement] = STATE(1231), - [sym_switch_statement] = STATE(1231), - [sym_case_statement] = STATE(1231), - [sym_while_statement] = STATE(1231), - [sym_do_statement] = STATE(1231), - [sym_for_statement] = STATE(1231), - [sym_return_statement] = STATE(1231), - [sym_break_statement] = STATE(1231), - [sym_continue_statement] = STATE(1231), - [sym_goto_statement] = STATE(1231), - [sym__expression] = STATE(3545), - [sym_comma_expression] = STATE(6215), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_for_range_loop] = STATE(1231), - [sym_co_return_statement] = STATE(1231), - [sym_co_yield_statement] = STATE(1231), - [sym_throw_statement] = STATE(1231), - [sym_try_statement] = STATE(1231), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_attributed_declarator_repeat1] = STATE(149), - [sym_identifier] = ACTIONS(1775), - [anon_sym_LPAREN2] = ACTIONS(984), + [127] = { + [sym_declaration] = STATE(542), + [sym_type_definition] = STATE(4350), + [sym__declaration_modifiers] = STATE(2514), + [sym__declaration_specifiers] = STATE(4589), + [sym_attribute_specifier] = STATE(2514), + [sym_attribute_declaration] = STATE(2514), + [sym_ms_declspec_modifier] = STATE(2514), + [sym_storage_class_specifier] = STATE(2514), + [sym_type_qualifier] = STATE(2514), + [sym__type_specifier] = STATE(3633), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), + [sym_expression_statement] = STATE(4350), + [sym__expression] = STATE(4136), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7662), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym__class_name] = STATE(6623), + [sym_virtual] = STATE(2514), + [sym_dependent_type] = STATE(3723), + [sym_template_type] = STATE(3921), + [sym_template_function] = STATE(3976), + [sym_alias_declaration] = STATE(4350), + [sym_init_statement] = STATE(2387), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5263), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(3915), + [sym_user_defined_literal] = STATE(3976), + [aux_sym__declaration_specifiers_repeat1] = STATE(2514), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [sym_identifier] = ACTIONS(1811), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(1328), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(1332), - [anon_sym_LBRACK] = ACTIONS(994), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_if] = ACTIONS(1334), - [anon_sym_switch] = ACTIONS(1336), - [anon_sym_case] = ACTIONS(1767), - [anon_sym_default] = ACTIONS(1769), - [anon_sym_while] = ACTIONS(1338), - [anon_sym_do] = ACTIONS(1340), - [anon_sym_for] = ACTIONS(1342), - [anon_sym_return] = ACTIONS(1344), - [anon_sym_break] = ACTIONS(1346), - [anon_sym_continue] = ACTIONS(1348), - [anon_sym_goto] = ACTIONS(1350), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(1829), + [anon_sym_typedef] = ACTIONS(1819), + [anon_sym_extern] = ACTIONS(53), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1813), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(53), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_try] = ACTIONS(1352), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(1354), - [anon_sym_co_return] = ACTIONS(1356), - [anon_sym_co_yield] = ACTIONS(1358), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(113), + [anon_sym_decltype] = ACTIONS(115), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_typename] = ACTIONS(121), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_using] = ACTIONS(1821), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, - [151] = { - [sym_attribute_declaration] = STATE(279), - [sym_compound_statement] = STATE(576), - [sym_attributed_statement] = STATE(576), - [sym_labeled_statement] = STATE(576), - [sym_expression_statement] = STATE(576), - [sym_if_statement] = STATE(576), - [sym_switch_statement] = STATE(576), - [sym_case_statement] = STATE(576), - [sym_while_statement] = STATE(576), - [sym_do_statement] = STATE(576), - [sym_for_statement] = STATE(576), - [sym_return_statement] = STATE(576), - [sym_break_statement] = STATE(576), - [sym_continue_statement] = STATE(576), - [sym_goto_statement] = STATE(576), - [sym__expression] = STATE(3522), - [sym_comma_expression] = STATE(6276), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_for_range_loop] = STATE(576), - [sym_co_return_statement] = STATE(576), - [sym_co_yield_statement] = STATE(576), - [sym_throw_statement] = STATE(576), - [sym_try_statement] = STATE(576), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_attributed_declarator_repeat1] = STATE(279), - [sym_identifier] = ACTIONS(1761), - [anon_sym_LPAREN2] = ACTIONS(984), + [128] = { + [sym_declaration] = STATE(561), + [sym_type_definition] = STATE(4350), + [sym__declaration_modifiers] = STATE(2514), + [sym__declaration_specifiers] = STATE(4649), + [sym_attribute_specifier] = STATE(2514), + [sym_attribute_declaration] = STATE(2514), + [sym_ms_declspec_modifier] = STATE(2514), + [sym_storage_class_specifier] = STATE(2514), + [sym_type_qualifier] = STATE(2514), + [sym__type_specifier] = STATE(3633), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), + [sym_expression_statement] = STATE(4350), + [sym__expression] = STATE(4152), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7635), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym__class_name] = STATE(6623), + [sym_virtual] = STATE(2514), + [sym_dependent_type] = STATE(3723), + [sym_template_type] = STATE(3921), + [sym_template_function] = STATE(3976), + [sym_alias_declaration] = STATE(4350), + [sym_init_statement] = STATE(2481), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5263), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(3915), + [sym_user_defined_literal] = STATE(3976), + [aux_sym__declaration_specifiers_repeat1] = STATE(2514), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [sym_identifier] = ACTIONS(1811), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(660), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(666), - [anon_sym_LBRACK] = ACTIONS(994), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_if] = ACTIONS(670), - [anon_sym_switch] = ACTIONS(672), - [anon_sym_case] = ACTIONS(674), - [anon_sym_default] = ACTIONS(676), - [anon_sym_while] = ACTIONS(678), - [anon_sym_do] = ACTIONS(680), - [anon_sym_for] = ACTIONS(682), - [anon_sym_return] = ACTIONS(684), - [anon_sym_break] = ACTIONS(686), - [anon_sym_continue] = ACTIONS(688), - [anon_sym_goto] = ACTIONS(690), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(1831), + [anon_sym_typedef] = ACTIONS(1819), + [anon_sym_extern] = ACTIONS(53), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1813), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(53), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_try] = ACTIONS(694), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(696), - [anon_sym_co_return] = ACTIONS(706), - [anon_sym_co_yield] = ACTIONS(708), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(113), + [anon_sym_decltype] = ACTIONS(115), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_typename] = ACTIONS(121), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_using] = ACTIONS(1821), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, - [152] = { - [sym_attribute_declaration] = STATE(151), - [sym_compound_statement] = STATE(631), - [sym_attributed_statement] = STATE(631), - [sym_labeled_statement] = STATE(631), - [sym_expression_statement] = STATE(631), - [sym_if_statement] = STATE(631), - [sym_switch_statement] = STATE(631), - [sym_case_statement] = STATE(631), - [sym_while_statement] = STATE(631), - [sym_do_statement] = STATE(631), - [sym_for_statement] = STATE(631), - [sym_return_statement] = STATE(631), - [sym_break_statement] = STATE(631), - [sym_continue_statement] = STATE(631), - [sym_goto_statement] = STATE(631), - [sym__expression] = STATE(3522), - [sym_comma_expression] = STATE(6276), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_for_range_loop] = STATE(631), - [sym_co_return_statement] = STATE(631), - [sym_co_yield_statement] = STATE(631), - [sym_throw_statement] = STATE(631), - [sym_try_statement] = STATE(631), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_attributed_declarator_repeat1] = STATE(151), - [sym_identifier] = ACTIONS(1761), - [anon_sym_LPAREN2] = ACTIONS(984), + [129] = { + [sym_declaration] = STATE(541), + [sym_type_definition] = STATE(4350), + [sym__declaration_modifiers] = STATE(2514), + [sym__declaration_specifiers] = STATE(4657), + [sym_attribute_specifier] = STATE(2514), + [sym_attribute_declaration] = STATE(2514), + [sym_ms_declspec_modifier] = STATE(2514), + [sym_storage_class_specifier] = STATE(2514), + [sym_type_qualifier] = STATE(2514), + [sym__type_specifier] = STATE(3633), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), + [sym_expression_statement] = STATE(4350), + [sym__expression] = STATE(4247), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7308), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym__class_name] = STATE(6623), + [sym_virtual] = STATE(2514), + [sym_dependent_type] = STATE(3723), + [sym_template_type] = STATE(3921), + [sym_template_function] = STATE(3976), + [sym_alias_declaration] = STATE(4350), + [sym_init_statement] = STATE(2475), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5263), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(3915), + [sym_user_defined_literal] = STATE(3976), + [aux_sym__declaration_specifiers_repeat1] = STATE(2514), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [sym_identifier] = ACTIONS(1811), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(660), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(666), - [anon_sym_LBRACK] = ACTIONS(994), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_if] = ACTIONS(670), - [anon_sym_switch] = ACTIONS(672), - [anon_sym_case] = ACTIONS(674), - [anon_sym_default] = ACTIONS(676), - [anon_sym_while] = ACTIONS(678), - [anon_sym_do] = ACTIONS(680), - [anon_sym_for] = ACTIONS(682), - [anon_sym_return] = ACTIONS(684), - [anon_sym_break] = ACTIONS(686), - [anon_sym_continue] = ACTIONS(688), - [anon_sym_goto] = ACTIONS(690), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(1833), + [anon_sym_typedef] = ACTIONS(1819), + [anon_sym_extern] = ACTIONS(53), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1813), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(53), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_try] = ACTIONS(694), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(696), - [anon_sym_co_return] = ACTIONS(706), - [anon_sym_co_yield] = ACTIONS(708), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(113), + [anon_sym_decltype] = ACTIONS(115), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_typename] = ACTIONS(121), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_using] = ACTIONS(1821), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, - [153] = { - [sym_attribute_declaration] = STATE(151), - [sym_compound_statement] = STATE(630), - [sym_attributed_statement] = STATE(630), - [sym_labeled_statement] = STATE(630), - [sym_expression_statement] = STATE(630), - [sym_if_statement] = STATE(630), - [sym_switch_statement] = STATE(630), - [sym_case_statement] = STATE(630), - [sym_while_statement] = STATE(630), - [sym_do_statement] = STATE(630), - [sym_for_statement] = STATE(630), - [sym_return_statement] = STATE(630), - [sym_break_statement] = STATE(630), - [sym_continue_statement] = STATE(630), - [sym_goto_statement] = STATE(630), - [sym__expression] = STATE(3522), - [sym_comma_expression] = STATE(6276), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_for_range_loop] = STATE(630), - [sym_co_return_statement] = STATE(630), - [sym_co_yield_statement] = STATE(630), - [sym_throw_statement] = STATE(630), - [sym_try_statement] = STATE(630), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_attributed_declarator_repeat1] = STATE(151), - [sym_identifier] = ACTIONS(1761), - [anon_sym_LPAREN2] = ACTIONS(984), + [130] = { + [sym__declaration_modifiers] = STATE(2530), + [sym__declaration_specifiers] = STATE(3795), + [sym_attribute_specifier] = STATE(2530), + [sym_attribute_declaration] = STATE(2530), + [sym_ms_declspec_modifier] = STATE(2530), + [sym_storage_class_specifier] = STATE(2530), + [sym_type_qualifier] = STATE(2530), + [sym__type_specifier] = STATE(3633), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), + [sym_parameter_declaration] = STATE(6284), + [sym__expression] = STATE(3229), + [sym__expression_not_binary] = STATE(3565), + [sym_conditional_expression] = STATE(3565), + [sym_assignment_expression] = STATE(3565), + [sym_pointer_expression] = STATE(3220), + [sym_unary_expression] = STATE(3565), + [sym_binary_expression] = STATE(3565), + [sym_update_expression] = STATE(3565), + [sym_cast_expression] = STATE(3565), + [sym_sizeof_expression] = STATE(3565), + [sym_offsetof_expression] = STATE(3565), + [sym_generic_expression] = STATE(3565), + [sym_subscript_expression] = STATE(3220), + [sym_call_expression] = STATE(3220), + [sym_gnu_asm_expression] = STATE(3565), + [sym_field_expression] = STATE(3220), + [sym_compound_literal_expression] = STATE(3565), + [sym_parenthesized_expression] = STATE(3220), + [sym_char_literal] = STATE(3429), + [sym_concatenated_string] = STATE(3429), + [sym_string_literal] = STATE(2248), + [sym_null] = STATE(3565), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym__class_name] = STATE(6847), + [sym_virtual] = STATE(2530), + [sym_dependent_type] = STATE(3723), + [sym_optional_parameter_declaration] = STATE(6284), + [sym_variadic_parameter_declaration] = STATE(6284), + [sym_template_type] = STATE(3921), + [sym_template_function] = STATE(3565), + [sym_raw_string_literal] = STATE(2248), + [sym_co_await_expression] = STATE(3565), + [sym_new_expression] = STATE(3565), + [sym_delete_expression] = STATE(3565), + [sym_requires_clause] = STATE(3565), + [sym_requires_expression] = STATE(3565), + [sym_lambda_expression] = STATE(3565), + [sym_lambda_capture_specifier] = STATE(5204), + [sym__unary_left_fold] = STATE(7640), + [sym__unary_right_fold] = STATE(7639), + [sym__binary_fold] = STATE(7637), + [sym_fold_expression] = STATE(3565), + [sym_parameter_pack_expansion] = STATE(3565), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5273), + [sym_qualified_identifier] = STATE(3220), + [sym_qualified_type_identifier] = STATE(3915), + [sym_user_defined_literal] = STATE(3565), + [aux_sym__declaration_specifiers_repeat1] = STATE(2530), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [sym_identifier] = ACTIONS(1835), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1837), + [anon_sym_RPAREN] = ACTIONS(1839), + [anon_sym_LPAREN2] = ACTIONS(1841), + [anon_sym_BANG] = ACTIONS(1843), + [anon_sym_TILDE] = ACTIONS(1843), + [anon_sym_DASH] = ACTIONS(1845), + [anon_sym_PLUS] = ACTIONS(1845), + [anon_sym_STAR] = ACTIONS(1847), + [anon_sym_AMP] = ACTIONS(1847), + [anon_sym_extern] = ACTIONS(53), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(1849), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1813), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(53), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(1851), + [anon_sym_enum] = ACTIONS(1853), + [anon_sym_class] = ACTIONS(1855), + [anon_sym_struct] = ACTIONS(1857), + [anon_sym_union] = ACTIONS(1859), + [anon_sym_not] = ACTIONS(1845), + [anon_sym_compl] = ACTIONS(1845), + [anon_sym_DASH_DASH] = ACTIONS(1861), + [anon_sym_PLUS_PLUS] = ACTIONS(1861), + [anon_sym_sizeof] = ACTIONS(1863), + [anon_sym_offsetof] = ACTIONS(1865), + [anon_sym__Generic] = ACTIONS(1867), + [anon_sym_asm] = ACTIONS(1869), + [anon_sym___asm__] = ACTIONS(1869), + [sym_number_literal] = ACTIONS(1871), + [anon_sym_L_SQUOTE] = ACTIONS(1873), + [anon_sym_u_SQUOTE] = ACTIONS(1873), + [anon_sym_U_SQUOTE] = ACTIONS(1873), + [anon_sym_u8_SQUOTE] = ACTIONS(1873), + [anon_sym_SQUOTE] = ACTIONS(1873), + [anon_sym_L_DQUOTE] = ACTIONS(1875), + [anon_sym_u_DQUOTE] = ACTIONS(1875), + [anon_sym_U_DQUOTE] = ACTIONS(1875), + [anon_sym_u8_DQUOTE] = ACTIONS(1875), + [anon_sym_DQUOTE] = ACTIONS(1875), + [sym_true] = ACTIONS(1877), + [sym_false] = ACTIONS(1877), + [anon_sym_NULL] = ACTIONS(1879), + [anon_sym_nullptr] = ACTIONS(1879), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(113), + [anon_sym_decltype] = ACTIONS(115), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_typename] = ACTIONS(1881), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(1883), + [anon_sym_R_DQUOTE] = ACTIONS(1885), + [anon_sym_LR_DQUOTE] = ACTIONS(1885), + [anon_sym_uR_DQUOTE] = ACTIONS(1885), + [anon_sym_UR_DQUOTE] = ACTIONS(1885), + [anon_sym_u8R_DQUOTE] = ACTIONS(1885), + [anon_sym_co_await] = ACTIONS(1887), + [anon_sym_new] = ACTIONS(1889), + [anon_sym_requires] = ACTIONS(1891), + [sym_this] = ACTIONS(1877), + }, + [131] = { + [sym__declaration_modifiers] = STATE(2530), + [sym__declaration_specifiers] = STATE(3795), + [sym_attribute_specifier] = STATE(2530), + [sym_attribute_declaration] = STATE(2530), + [sym_ms_declspec_modifier] = STATE(2530), + [sym_storage_class_specifier] = STATE(2530), + [sym_type_qualifier] = STATE(2530), + [sym__type_specifier] = STATE(3633), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), + [sym_parameter_declaration] = STATE(6284), + [sym__expression] = STATE(3306), + [sym__expression_not_binary] = STATE(3565), + [sym_conditional_expression] = STATE(3565), + [sym_assignment_expression] = STATE(3565), + [sym_pointer_expression] = STATE(3220), + [sym_unary_expression] = STATE(3565), + [sym_binary_expression] = STATE(3565), + [sym_update_expression] = STATE(3565), + [sym_cast_expression] = STATE(3565), + [sym_sizeof_expression] = STATE(3565), + [sym_offsetof_expression] = STATE(3565), + [sym_generic_expression] = STATE(3565), + [sym_subscript_expression] = STATE(3220), + [sym_call_expression] = STATE(3220), + [sym_gnu_asm_expression] = STATE(3565), + [sym_field_expression] = STATE(3220), + [sym_compound_literal_expression] = STATE(3565), + [sym_parenthesized_expression] = STATE(3220), + [sym_char_literal] = STATE(3429), + [sym_concatenated_string] = STATE(3429), + [sym_string_literal] = STATE(2248), + [sym_null] = STATE(3565), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym__class_name] = STATE(6847), + [sym_virtual] = STATE(2530), + [sym_dependent_type] = STATE(3723), + [sym_optional_parameter_declaration] = STATE(6284), + [sym_variadic_parameter_declaration] = STATE(6284), + [sym_template_type] = STATE(3921), + [sym_template_function] = STATE(3565), + [sym_raw_string_literal] = STATE(2248), + [sym_co_await_expression] = STATE(3565), + [sym_new_expression] = STATE(3565), + [sym_delete_expression] = STATE(3565), + [sym_requires_clause] = STATE(3565), + [sym_requires_expression] = STATE(3565), + [sym_lambda_expression] = STATE(3565), + [sym_lambda_capture_specifier] = STATE(5204), + [sym__unary_left_fold] = STATE(7128), + [sym__unary_right_fold] = STATE(7124), + [sym__binary_fold] = STATE(7047), + [sym_fold_expression] = STATE(3565), + [sym_parameter_pack_expansion] = STATE(3565), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5273), + [sym_qualified_identifier] = STATE(3220), + [sym_qualified_type_identifier] = STATE(3915), + [sym_user_defined_literal] = STATE(3565), + [aux_sym__declaration_specifiers_repeat1] = STATE(2530), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [sym_identifier] = ACTIONS(1835), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1837), + [anon_sym_RPAREN] = ACTIONS(1839), + [anon_sym_LPAREN2] = ACTIONS(1841), + [anon_sym_BANG] = ACTIONS(1843), + [anon_sym_TILDE] = ACTIONS(1843), + [anon_sym_DASH] = ACTIONS(1845), + [anon_sym_PLUS] = ACTIONS(1845), + [anon_sym_STAR] = ACTIONS(1847), + [anon_sym_AMP] = ACTIONS(1847), + [anon_sym_extern] = ACTIONS(53), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(1849), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1813), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(53), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(1851), + [anon_sym_enum] = ACTIONS(1853), + [anon_sym_class] = ACTIONS(1855), + [anon_sym_struct] = ACTIONS(1857), + [anon_sym_union] = ACTIONS(1859), + [anon_sym_not] = ACTIONS(1845), + [anon_sym_compl] = ACTIONS(1845), + [anon_sym_DASH_DASH] = ACTIONS(1861), + [anon_sym_PLUS_PLUS] = ACTIONS(1861), + [anon_sym_sizeof] = ACTIONS(1863), + [anon_sym_offsetof] = ACTIONS(1865), + [anon_sym__Generic] = ACTIONS(1867), + [anon_sym_asm] = ACTIONS(1869), + [anon_sym___asm__] = ACTIONS(1869), + [sym_number_literal] = ACTIONS(1871), + [anon_sym_L_SQUOTE] = ACTIONS(1873), + [anon_sym_u_SQUOTE] = ACTIONS(1873), + [anon_sym_U_SQUOTE] = ACTIONS(1873), + [anon_sym_u8_SQUOTE] = ACTIONS(1873), + [anon_sym_SQUOTE] = ACTIONS(1873), + [anon_sym_L_DQUOTE] = ACTIONS(1875), + [anon_sym_u_DQUOTE] = ACTIONS(1875), + [anon_sym_U_DQUOTE] = ACTIONS(1875), + [anon_sym_u8_DQUOTE] = ACTIONS(1875), + [anon_sym_DQUOTE] = ACTIONS(1875), + [sym_true] = ACTIONS(1877), + [sym_false] = ACTIONS(1877), + [anon_sym_NULL] = ACTIONS(1879), + [anon_sym_nullptr] = ACTIONS(1879), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(113), + [anon_sym_decltype] = ACTIONS(115), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_typename] = ACTIONS(1881), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(1883), + [anon_sym_R_DQUOTE] = ACTIONS(1885), + [anon_sym_LR_DQUOTE] = ACTIONS(1885), + [anon_sym_uR_DQUOTE] = ACTIONS(1885), + [anon_sym_UR_DQUOTE] = ACTIONS(1885), + [anon_sym_u8R_DQUOTE] = ACTIONS(1885), + [anon_sym_co_await] = ACTIONS(1887), + [anon_sym_new] = ACTIONS(1889), + [anon_sym_requires] = ACTIONS(1891), + [sym_this] = ACTIONS(1877), + }, + [132] = { + [sym__declaration_modifiers] = STATE(2530), + [sym__declaration_specifiers] = STATE(3795), + [sym_attribute_specifier] = STATE(2530), + [sym_attribute_declaration] = STATE(2530), + [sym_ms_declspec_modifier] = STATE(2530), + [sym_storage_class_specifier] = STATE(2530), + [sym_type_qualifier] = STATE(2530), + [sym__type_specifier] = STATE(3633), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), + [sym_parameter_declaration] = STATE(6284), + [sym__expression] = STATE(3210), + [sym__expression_not_binary] = STATE(3565), + [sym_conditional_expression] = STATE(3565), + [sym_assignment_expression] = STATE(3565), + [sym_pointer_expression] = STATE(3220), + [sym_unary_expression] = STATE(3565), + [sym_binary_expression] = STATE(3565), + [sym_update_expression] = STATE(3565), + [sym_cast_expression] = STATE(3565), + [sym_sizeof_expression] = STATE(3565), + [sym_offsetof_expression] = STATE(3565), + [sym_generic_expression] = STATE(3565), + [sym_subscript_expression] = STATE(3220), + [sym_call_expression] = STATE(3220), + [sym_gnu_asm_expression] = STATE(3565), + [sym_field_expression] = STATE(3220), + [sym_compound_literal_expression] = STATE(3565), + [sym_parenthesized_expression] = STATE(3220), + [sym_char_literal] = STATE(3429), + [sym_concatenated_string] = STATE(3429), + [sym_string_literal] = STATE(2248), + [sym_null] = STATE(3565), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym__class_name] = STATE(6847), + [sym_virtual] = STATE(2530), + [sym_dependent_type] = STATE(3723), + [sym_optional_parameter_declaration] = STATE(6284), + [sym_variadic_parameter_declaration] = STATE(6284), + [sym_template_type] = STATE(3921), + [sym_template_function] = STATE(3565), + [sym_raw_string_literal] = STATE(2248), + [sym_co_await_expression] = STATE(3565), + [sym_new_expression] = STATE(3565), + [sym_delete_expression] = STATE(3565), + [sym_requires_clause] = STATE(3565), + [sym_requires_expression] = STATE(3565), + [sym_lambda_expression] = STATE(3565), + [sym_lambda_capture_specifier] = STATE(5204), + [sym__unary_left_fold] = STATE(6969), + [sym__unary_right_fold] = STATE(6968), + [sym__binary_fold] = STATE(6966), + [sym_fold_expression] = STATE(3565), + [sym_parameter_pack_expansion] = STATE(3565), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5273), + [sym_qualified_identifier] = STATE(3220), + [sym_qualified_type_identifier] = STATE(3915), + [sym_user_defined_literal] = STATE(3565), + [aux_sym__declaration_specifiers_repeat1] = STATE(2530), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [sym_identifier] = ACTIONS(1835), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1837), + [anon_sym_RPAREN] = ACTIONS(1839), + [anon_sym_LPAREN2] = ACTIONS(1841), + [anon_sym_BANG] = ACTIONS(1843), + [anon_sym_TILDE] = ACTIONS(1843), + [anon_sym_DASH] = ACTIONS(1845), + [anon_sym_PLUS] = ACTIONS(1845), + [anon_sym_STAR] = ACTIONS(1847), + [anon_sym_AMP] = ACTIONS(1847), + [anon_sym_extern] = ACTIONS(53), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(1849), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1813), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(53), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(1851), + [anon_sym_enum] = ACTIONS(1853), + [anon_sym_class] = ACTIONS(1855), + [anon_sym_struct] = ACTIONS(1857), + [anon_sym_union] = ACTIONS(1859), + [anon_sym_not] = ACTIONS(1845), + [anon_sym_compl] = ACTIONS(1845), + [anon_sym_DASH_DASH] = ACTIONS(1861), + [anon_sym_PLUS_PLUS] = ACTIONS(1861), + [anon_sym_sizeof] = ACTIONS(1863), + [anon_sym_offsetof] = ACTIONS(1865), + [anon_sym__Generic] = ACTIONS(1867), + [anon_sym_asm] = ACTIONS(1869), + [anon_sym___asm__] = ACTIONS(1869), + [sym_number_literal] = ACTIONS(1871), + [anon_sym_L_SQUOTE] = ACTIONS(1873), + [anon_sym_u_SQUOTE] = ACTIONS(1873), + [anon_sym_U_SQUOTE] = ACTIONS(1873), + [anon_sym_u8_SQUOTE] = ACTIONS(1873), + [anon_sym_SQUOTE] = ACTIONS(1873), + [anon_sym_L_DQUOTE] = ACTIONS(1875), + [anon_sym_u_DQUOTE] = ACTIONS(1875), + [anon_sym_U_DQUOTE] = ACTIONS(1875), + [anon_sym_u8_DQUOTE] = ACTIONS(1875), + [anon_sym_DQUOTE] = ACTIONS(1875), + [sym_true] = ACTIONS(1877), + [sym_false] = ACTIONS(1877), + [anon_sym_NULL] = ACTIONS(1879), + [anon_sym_nullptr] = ACTIONS(1879), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(113), + [anon_sym_decltype] = ACTIONS(115), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_typename] = ACTIONS(1881), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(1883), + [anon_sym_R_DQUOTE] = ACTIONS(1885), + [anon_sym_LR_DQUOTE] = ACTIONS(1885), + [anon_sym_uR_DQUOTE] = ACTIONS(1885), + [anon_sym_UR_DQUOTE] = ACTIONS(1885), + [anon_sym_u8R_DQUOTE] = ACTIONS(1885), + [anon_sym_co_await] = ACTIONS(1887), + [anon_sym_new] = ACTIONS(1889), + [anon_sym_requires] = ACTIONS(1891), + [sym_this] = ACTIONS(1877), + }, + [133] = { + [sym__declaration_modifiers] = STATE(2530), + [sym__declaration_specifiers] = STATE(3795), + [sym_attribute_specifier] = STATE(2530), + [sym_attribute_declaration] = STATE(2530), + [sym_ms_declspec_modifier] = STATE(2530), + [sym_storage_class_specifier] = STATE(2530), + [sym_type_qualifier] = STATE(2530), + [sym__type_specifier] = STATE(3633), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), + [sym_parameter_declaration] = STATE(6284), + [sym__expression] = STATE(3231), + [sym__expression_not_binary] = STATE(3565), + [sym_conditional_expression] = STATE(3565), + [sym_assignment_expression] = STATE(3565), + [sym_pointer_expression] = STATE(3220), + [sym_unary_expression] = STATE(3565), + [sym_binary_expression] = STATE(3565), + [sym_update_expression] = STATE(3565), + [sym_cast_expression] = STATE(3565), + [sym_sizeof_expression] = STATE(3565), + [sym_offsetof_expression] = STATE(3565), + [sym_generic_expression] = STATE(3565), + [sym_subscript_expression] = STATE(3220), + [sym_call_expression] = STATE(3220), + [sym_gnu_asm_expression] = STATE(3565), + [sym_field_expression] = STATE(3220), + [sym_compound_literal_expression] = STATE(3565), + [sym_parenthesized_expression] = STATE(3220), + [sym_char_literal] = STATE(3429), + [sym_concatenated_string] = STATE(3429), + [sym_string_literal] = STATE(2248), + [sym_null] = STATE(3565), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym__class_name] = STATE(6847), + [sym_virtual] = STATE(2530), + [sym_dependent_type] = STATE(3723), + [sym_optional_parameter_declaration] = STATE(6284), + [sym_variadic_parameter_declaration] = STATE(6284), + [sym_template_type] = STATE(3921), + [sym_template_function] = STATE(3565), + [sym_raw_string_literal] = STATE(2248), + [sym_co_await_expression] = STATE(3565), + [sym_new_expression] = STATE(3565), + [sym_delete_expression] = STATE(3565), + [sym_requires_clause] = STATE(3565), + [sym_requires_expression] = STATE(3565), + [sym_lambda_expression] = STATE(3565), + [sym_lambda_capture_specifier] = STATE(5204), + [sym__unary_left_fold] = STATE(7615), + [sym__unary_right_fold] = STATE(7614), + [sym__binary_fold] = STATE(7612), + [sym_fold_expression] = STATE(3565), + [sym_parameter_pack_expansion] = STATE(3565), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5273), + [sym_qualified_identifier] = STATE(3220), + [sym_qualified_type_identifier] = STATE(3915), + [sym_user_defined_literal] = STATE(3565), + [aux_sym__declaration_specifiers_repeat1] = STATE(2530), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [sym_identifier] = ACTIONS(1835), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1837), + [anon_sym_RPAREN] = ACTIONS(1839), + [anon_sym_LPAREN2] = ACTIONS(1841), + [anon_sym_BANG] = ACTIONS(1843), + [anon_sym_TILDE] = ACTIONS(1843), + [anon_sym_DASH] = ACTIONS(1845), + [anon_sym_PLUS] = ACTIONS(1845), + [anon_sym_STAR] = ACTIONS(1847), + [anon_sym_AMP] = ACTIONS(1847), + [anon_sym_extern] = ACTIONS(53), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(1849), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1813), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(53), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(1851), + [anon_sym_enum] = ACTIONS(1853), + [anon_sym_class] = ACTIONS(1855), + [anon_sym_struct] = ACTIONS(1857), + [anon_sym_union] = ACTIONS(1859), + [anon_sym_not] = ACTIONS(1845), + [anon_sym_compl] = ACTIONS(1845), + [anon_sym_DASH_DASH] = ACTIONS(1861), + [anon_sym_PLUS_PLUS] = ACTIONS(1861), + [anon_sym_sizeof] = ACTIONS(1863), + [anon_sym_offsetof] = ACTIONS(1865), + [anon_sym__Generic] = ACTIONS(1867), + [anon_sym_asm] = ACTIONS(1869), + [anon_sym___asm__] = ACTIONS(1869), + [sym_number_literal] = ACTIONS(1871), + [anon_sym_L_SQUOTE] = ACTIONS(1873), + [anon_sym_u_SQUOTE] = ACTIONS(1873), + [anon_sym_U_SQUOTE] = ACTIONS(1873), + [anon_sym_u8_SQUOTE] = ACTIONS(1873), + [anon_sym_SQUOTE] = ACTIONS(1873), + [anon_sym_L_DQUOTE] = ACTIONS(1875), + [anon_sym_u_DQUOTE] = ACTIONS(1875), + [anon_sym_U_DQUOTE] = ACTIONS(1875), + [anon_sym_u8_DQUOTE] = ACTIONS(1875), + [anon_sym_DQUOTE] = ACTIONS(1875), + [sym_true] = ACTIONS(1877), + [sym_false] = ACTIONS(1877), + [anon_sym_NULL] = ACTIONS(1879), + [anon_sym_nullptr] = ACTIONS(1879), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(113), + [anon_sym_decltype] = ACTIONS(115), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_typename] = ACTIONS(1881), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(1883), + [anon_sym_R_DQUOTE] = ACTIONS(1885), + [anon_sym_LR_DQUOTE] = ACTIONS(1885), + [anon_sym_uR_DQUOTE] = ACTIONS(1885), + [anon_sym_UR_DQUOTE] = ACTIONS(1885), + [anon_sym_u8R_DQUOTE] = ACTIONS(1885), + [anon_sym_co_await] = ACTIONS(1887), + [anon_sym_new] = ACTIONS(1889), + [anon_sym_requires] = ACTIONS(1891), + [sym_this] = ACTIONS(1877), + }, + [134] = { + [sym__declaration_modifiers] = STATE(2530), + [sym__declaration_specifiers] = STATE(3795), + [sym_attribute_specifier] = STATE(2530), + [sym_attribute_declaration] = STATE(2530), + [sym_ms_declspec_modifier] = STATE(2530), + [sym_storage_class_specifier] = STATE(2530), + [sym_type_qualifier] = STATE(2530), + [sym__type_specifier] = STATE(3633), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), + [sym_parameter_declaration] = STATE(6284), + [sym__expression] = STATE(3357), + [sym__expression_not_binary] = STATE(3565), + [sym_conditional_expression] = STATE(3565), + [sym_assignment_expression] = STATE(3565), + [sym_pointer_expression] = STATE(3220), + [sym_unary_expression] = STATE(3565), + [sym_binary_expression] = STATE(3565), + [sym_update_expression] = STATE(3565), + [sym_cast_expression] = STATE(3565), + [sym_sizeof_expression] = STATE(3565), + [sym_offsetof_expression] = STATE(3565), + [sym_generic_expression] = STATE(3565), + [sym_subscript_expression] = STATE(3220), + [sym_call_expression] = STATE(3220), + [sym_gnu_asm_expression] = STATE(3565), + [sym_field_expression] = STATE(3220), + [sym_compound_literal_expression] = STATE(3565), + [sym_parenthesized_expression] = STATE(3220), + [sym_char_literal] = STATE(3429), + [sym_concatenated_string] = STATE(3429), + [sym_string_literal] = STATE(2248), + [sym_null] = STATE(3565), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym__class_name] = STATE(6847), + [sym_virtual] = STATE(2530), + [sym_dependent_type] = STATE(3723), + [sym_optional_parameter_declaration] = STATE(6284), + [sym_variadic_parameter_declaration] = STATE(6284), + [sym_template_type] = STATE(3921), + [sym_template_function] = STATE(3565), + [sym_raw_string_literal] = STATE(2248), + [sym_co_await_expression] = STATE(3565), + [sym_new_expression] = STATE(3565), + [sym_delete_expression] = STATE(3565), + [sym_requires_clause] = STATE(3565), + [sym_requires_expression] = STATE(3565), + [sym_lambda_expression] = STATE(3565), + [sym_lambda_capture_specifier] = STATE(5204), + [sym__unary_left_fold] = STATE(7340), + [sym__unary_right_fold] = STATE(7254), + [sym__binary_fold] = STATE(7336), + [sym_fold_expression] = STATE(3565), + [sym_parameter_pack_expansion] = STATE(3565), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5273), + [sym_qualified_identifier] = STATE(3220), + [sym_qualified_type_identifier] = STATE(3915), + [sym_user_defined_literal] = STATE(3565), + [aux_sym__declaration_specifiers_repeat1] = STATE(2530), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [sym_identifier] = ACTIONS(1835), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1837), + [anon_sym_RPAREN] = ACTIONS(1839), + [anon_sym_LPAREN2] = ACTIONS(1841), + [anon_sym_BANG] = ACTIONS(1843), + [anon_sym_TILDE] = ACTIONS(1843), + [anon_sym_DASH] = ACTIONS(1845), + [anon_sym_PLUS] = ACTIONS(1845), + [anon_sym_STAR] = ACTIONS(1847), + [anon_sym_AMP] = ACTIONS(1847), + [anon_sym_extern] = ACTIONS(53), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(1849), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1813), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(53), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(1851), + [anon_sym_enum] = ACTIONS(1853), + [anon_sym_class] = ACTIONS(1855), + [anon_sym_struct] = ACTIONS(1857), + [anon_sym_union] = ACTIONS(1859), + [anon_sym_not] = ACTIONS(1845), + [anon_sym_compl] = ACTIONS(1845), + [anon_sym_DASH_DASH] = ACTIONS(1861), + [anon_sym_PLUS_PLUS] = ACTIONS(1861), + [anon_sym_sizeof] = ACTIONS(1863), + [anon_sym_offsetof] = ACTIONS(1865), + [anon_sym__Generic] = ACTIONS(1867), + [anon_sym_asm] = ACTIONS(1869), + [anon_sym___asm__] = ACTIONS(1869), + [sym_number_literal] = ACTIONS(1871), + [anon_sym_L_SQUOTE] = ACTIONS(1873), + [anon_sym_u_SQUOTE] = ACTIONS(1873), + [anon_sym_U_SQUOTE] = ACTIONS(1873), + [anon_sym_u8_SQUOTE] = ACTIONS(1873), + [anon_sym_SQUOTE] = ACTIONS(1873), + [anon_sym_L_DQUOTE] = ACTIONS(1875), + [anon_sym_u_DQUOTE] = ACTIONS(1875), + [anon_sym_U_DQUOTE] = ACTIONS(1875), + [anon_sym_u8_DQUOTE] = ACTIONS(1875), + [anon_sym_DQUOTE] = ACTIONS(1875), + [sym_true] = ACTIONS(1877), + [sym_false] = ACTIONS(1877), + [anon_sym_NULL] = ACTIONS(1879), + [anon_sym_nullptr] = ACTIONS(1879), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(113), + [anon_sym_decltype] = ACTIONS(115), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_typename] = ACTIONS(1881), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(1883), + [anon_sym_R_DQUOTE] = ACTIONS(1885), + [anon_sym_LR_DQUOTE] = ACTIONS(1885), + [anon_sym_uR_DQUOTE] = ACTIONS(1885), + [anon_sym_UR_DQUOTE] = ACTIONS(1885), + [anon_sym_u8R_DQUOTE] = ACTIONS(1885), + [anon_sym_co_await] = ACTIONS(1887), + [anon_sym_new] = ACTIONS(1889), + [anon_sym_requires] = ACTIONS(1891), + [sym_this] = ACTIONS(1877), + }, + [135] = { + [sym__declaration_modifiers] = STATE(2530), + [sym__declaration_specifiers] = STATE(3795), + [sym_attribute_specifier] = STATE(2530), + [sym_attribute_declaration] = STATE(2530), + [sym_ms_declspec_modifier] = STATE(2530), + [sym_storage_class_specifier] = STATE(2530), + [sym_type_qualifier] = STATE(2530), + [sym__type_specifier] = STATE(3633), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), + [sym_parameter_declaration] = STATE(6284), + [sym__expression] = STATE(3267), + [sym__expression_not_binary] = STATE(3565), + [sym_conditional_expression] = STATE(3565), + [sym_assignment_expression] = STATE(3565), + [sym_pointer_expression] = STATE(3220), + [sym_unary_expression] = STATE(3565), + [sym_binary_expression] = STATE(3565), + [sym_update_expression] = STATE(3565), + [sym_cast_expression] = STATE(3565), + [sym_sizeof_expression] = STATE(3565), + [sym_offsetof_expression] = STATE(3565), + [sym_generic_expression] = STATE(3565), + [sym_subscript_expression] = STATE(3220), + [sym_call_expression] = STATE(3220), + [sym_gnu_asm_expression] = STATE(3565), + [sym_field_expression] = STATE(3220), + [sym_compound_literal_expression] = STATE(3565), + [sym_parenthesized_expression] = STATE(3220), + [sym_char_literal] = STATE(3429), + [sym_concatenated_string] = STATE(3429), + [sym_string_literal] = STATE(2248), + [sym_null] = STATE(3565), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym__class_name] = STATE(6847), + [sym_virtual] = STATE(2530), + [sym_dependent_type] = STATE(3723), + [sym_optional_parameter_declaration] = STATE(6284), + [sym_variadic_parameter_declaration] = STATE(6284), + [sym_template_type] = STATE(3921), + [sym_template_function] = STATE(3565), + [sym_raw_string_literal] = STATE(2248), + [sym_co_await_expression] = STATE(3565), + [sym_new_expression] = STATE(3565), + [sym_delete_expression] = STATE(3565), + [sym_requires_clause] = STATE(3565), + [sym_requires_expression] = STATE(3565), + [sym_lambda_expression] = STATE(3565), + [sym_lambda_capture_specifier] = STATE(5204), + [sym__unary_left_fold] = STATE(7231), + [sym__unary_right_fold] = STATE(7233), + [sym__binary_fold] = STATE(7244), + [sym_fold_expression] = STATE(3565), + [sym_parameter_pack_expansion] = STATE(3565), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5273), + [sym_qualified_identifier] = STATE(3220), + [sym_qualified_type_identifier] = STATE(3915), + [sym_user_defined_literal] = STATE(3565), + [aux_sym__declaration_specifiers_repeat1] = STATE(2530), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [sym_identifier] = ACTIONS(1835), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1837), + [anon_sym_RPAREN] = ACTIONS(1839), + [anon_sym_LPAREN2] = ACTIONS(1841), + [anon_sym_BANG] = ACTIONS(1843), + [anon_sym_TILDE] = ACTIONS(1843), + [anon_sym_DASH] = ACTIONS(1845), + [anon_sym_PLUS] = ACTIONS(1845), + [anon_sym_STAR] = ACTIONS(1847), + [anon_sym_AMP] = ACTIONS(1847), + [anon_sym_extern] = ACTIONS(53), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(1849), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1813), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(53), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(1851), + [anon_sym_enum] = ACTIONS(1853), + [anon_sym_class] = ACTIONS(1855), + [anon_sym_struct] = ACTIONS(1857), + [anon_sym_union] = ACTIONS(1859), + [anon_sym_not] = ACTIONS(1845), + [anon_sym_compl] = ACTIONS(1845), + [anon_sym_DASH_DASH] = ACTIONS(1861), + [anon_sym_PLUS_PLUS] = ACTIONS(1861), + [anon_sym_sizeof] = ACTIONS(1863), + [anon_sym_offsetof] = ACTIONS(1865), + [anon_sym__Generic] = ACTIONS(1867), + [anon_sym_asm] = ACTIONS(1869), + [anon_sym___asm__] = ACTIONS(1869), + [sym_number_literal] = ACTIONS(1871), + [anon_sym_L_SQUOTE] = ACTIONS(1873), + [anon_sym_u_SQUOTE] = ACTIONS(1873), + [anon_sym_U_SQUOTE] = ACTIONS(1873), + [anon_sym_u8_SQUOTE] = ACTIONS(1873), + [anon_sym_SQUOTE] = ACTIONS(1873), + [anon_sym_L_DQUOTE] = ACTIONS(1875), + [anon_sym_u_DQUOTE] = ACTIONS(1875), + [anon_sym_U_DQUOTE] = ACTIONS(1875), + [anon_sym_u8_DQUOTE] = ACTIONS(1875), + [anon_sym_DQUOTE] = ACTIONS(1875), + [sym_true] = ACTIONS(1877), + [sym_false] = ACTIONS(1877), + [anon_sym_NULL] = ACTIONS(1879), + [anon_sym_nullptr] = ACTIONS(1879), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(113), + [anon_sym_decltype] = ACTIONS(115), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_typename] = ACTIONS(1881), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(1883), + [anon_sym_R_DQUOTE] = ACTIONS(1885), + [anon_sym_LR_DQUOTE] = ACTIONS(1885), + [anon_sym_uR_DQUOTE] = ACTIONS(1885), + [anon_sym_UR_DQUOTE] = ACTIONS(1885), + [anon_sym_u8R_DQUOTE] = ACTIONS(1885), + [anon_sym_co_await] = ACTIONS(1887), + [anon_sym_new] = ACTIONS(1889), + [anon_sym_requires] = ACTIONS(1891), + [sym_this] = ACTIONS(1877), + }, + [136] = { + [sym__declaration_modifiers] = STATE(2530), + [sym__declaration_specifiers] = STATE(3795), + [sym_attribute_specifier] = STATE(2530), + [sym_attribute_declaration] = STATE(2530), + [sym_ms_declspec_modifier] = STATE(2530), + [sym_storage_class_specifier] = STATE(2530), + [sym_type_qualifier] = STATE(2530), + [sym__type_specifier] = STATE(3633), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), + [sym_parameter_declaration] = STATE(6292), + [sym__expression] = STATE(4070), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_initializer_list] = STATE(6257), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym__class_name] = STATE(6623), + [sym_virtual] = STATE(2530), + [sym_dependent_type] = STATE(3723), + [sym_optional_parameter_declaration] = STATE(6292), + [sym_variadic_parameter_declaration] = STATE(6292), + [sym_template_type] = STATE(3921), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5302), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(3915), + [sym_user_defined_literal] = STATE(3976), + [aux_sym__declaration_specifiers_repeat1] = STATE(2530), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [sym_identifier] = ACTIONS(1893), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1895), + [anon_sym_RPAREN] = ACTIONS(1897), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_extern] = ACTIONS(53), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1813), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(1899), + [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(53), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(1853), + [anon_sym_class] = ACTIONS(1855), + [anon_sym_struct] = ACTIONS(1857), + [anon_sym_union] = ACTIONS(1859), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(113), + [anon_sym_decltype] = ACTIONS(115), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_typename] = ACTIONS(1881), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), + }, + [137] = { + [sym_ms_based_modifier] = STATE(7654), + [sym__declarator] = STATE(5825), + [sym_parenthesized_declarator] = STATE(5640), + [sym_attributed_declarator] = STATE(5640), + [sym_pointer_declarator] = STATE(5640), + [sym_function_declarator] = STATE(5640), + [sym_array_declarator] = STATE(5640), + [sym_type_qualifier] = STATE(3781), + [sym__type_specifier] = STATE(4168), + [sym_sized_type_specifier] = STATE(2802), + [sym_enum_specifier] = STATE(2802), + [sym_struct_specifier] = STATE(2802), + [sym_union_specifier] = STATE(2802), + [sym__expression] = STATE(3264), + [sym__expression_not_binary] = STATE(3565), + [sym_comma_expression] = STATE(7617), + [sym_conditional_expression] = STATE(3565), + [sym_assignment_expression] = STATE(3565), + [sym_pointer_expression] = STATE(3220), + [sym_unary_expression] = STATE(3565), + [sym_binary_expression] = STATE(3565), + [sym_update_expression] = STATE(3565), + [sym_cast_expression] = STATE(3565), + [sym_type_descriptor] = STATE(7616), + [sym_sizeof_expression] = STATE(3565), + [sym_offsetof_expression] = STATE(3565), + [sym_generic_expression] = STATE(3565), + [sym_subscript_expression] = STATE(3220), + [sym_call_expression] = STATE(3220), + [sym_gnu_asm_expression] = STATE(3565), + [sym_field_expression] = STATE(3220), + [sym_compound_literal_expression] = STATE(3565), + [sym_parenthesized_expression] = STATE(3220), + [sym_char_literal] = STATE(3429), + [sym_concatenated_string] = STATE(3429), + [sym_string_literal] = STATE(2248), + [sym_null] = STATE(3565), + [sym_placeholder_type_specifier] = STATE(2802), + [sym_decltype_auto] = STATE(2819), + [sym_decltype] = STATE(2662), + [sym_class_specifier] = STATE(2802), + [sym__class_name] = STATE(6847), + [sym_dependent_type] = STATE(2802), + [sym_reference_declarator] = STATE(5640), + [sym_structured_binding_declarator] = STATE(5640), + [sym_template_type] = STATE(4771), + [sym_template_function] = STATE(3432), + [sym_raw_string_literal] = STATE(2248), + [sym_co_await_expression] = STATE(3565), + [sym_new_expression] = STATE(3565), + [sym_delete_expression] = STATE(3565), + [sym_requires_clause] = STATE(3565), + [sym_requires_expression] = STATE(3565), + [sym_lambda_expression] = STATE(3565), + [sym_lambda_capture_specifier] = STATE(5204), + [sym__unary_left_fold] = STATE(7615), + [sym__unary_right_fold] = STATE(7614), + [sym__binary_fold] = STATE(7612), + [sym_fold_expression] = STATE(3565), + [sym_parameter_pack_expansion] = STATE(3565), + [sym_destructor_name] = STATE(5640), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5272), + [sym_qualified_identifier] = STATE(3165), + [sym_qualified_type_identifier] = STATE(4890), + [sym_operator_name] = STATE(5640), + [sym_user_defined_literal] = STATE(3565), + [aux_sym_type_definition_repeat1] = STATE(3781), + [aux_sym_sized_type_specifier_repeat1] = STATE(2230), + [sym_identifier] = ACTIONS(1901), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1837), + [anon_sym_LPAREN2] = ACTIONS(1903), + [anon_sym_BANG] = ACTIONS(1843), + [anon_sym_TILDE] = ACTIONS(1905), + [anon_sym_DASH] = ACTIONS(1845), + [anon_sym_PLUS] = ACTIONS(1845), + [anon_sym_STAR] = ACTIONS(1907), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(1909), + [anon_sym_COLON_COLON] = ACTIONS(1849), + [anon_sym___based] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(1911), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(1913), + [anon_sym_unsigned] = ACTIONS(1913), + [anon_sym_long] = ACTIONS(1913), + [anon_sym_short] = ACTIONS(1913), + [sym_primitive_type] = ACTIONS(1915), + [anon_sym_enum] = ACTIONS(1917), + [anon_sym_class] = ACTIONS(1919), + [anon_sym_struct] = ACTIONS(1921), + [anon_sym_union] = ACTIONS(1923), + [anon_sym_not] = ACTIONS(1845), + [anon_sym_compl] = ACTIONS(1845), + [anon_sym_DASH_DASH] = ACTIONS(1861), + [anon_sym_PLUS_PLUS] = ACTIONS(1861), + [anon_sym_sizeof] = ACTIONS(1863), + [anon_sym_offsetof] = ACTIONS(1865), + [anon_sym__Generic] = ACTIONS(1867), + [anon_sym_asm] = ACTIONS(1869), + [anon_sym___asm__] = ACTIONS(1869), + [sym_number_literal] = ACTIONS(1871), + [anon_sym_L_SQUOTE] = ACTIONS(1873), + [anon_sym_u_SQUOTE] = ACTIONS(1873), + [anon_sym_U_SQUOTE] = ACTIONS(1873), + [anon_sym_u8_SQUOTE] = ACTIONS(1873), + [anon_sym_SQUOTE] = ACTIONS(1873), + [anon_sym_L_DQUOTE] = ACTIONS(1875), + [anon_sym_u_DQUOTE] = ACTIONS(1875), + [anon_sym_U_DQUOTE] = ACTIONS(1875), + [anon_sym_u8_DQUOTE] = ACTIONS(1875), + [anon_sym_DQUOTE] = ACTIONS(1875), + [sym_true] = ACTIONS(1877), + [sym_false] = ACTIONS(1877), + [anon_sym_NULL] = ACTIONS(1879), + [anon_sym_nullptr] = ACTIONS(1879), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1925), + [anon_sym_decltype] = ACTIONS(1927), + [anon_sym_typename] = ACTIONS(1929), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_operator] = ACTIONS(1931), + [anon_sym_delete] = ACTIONS(1883), + [anon_sym_R_DQUOTE] = ACTIONS(1885), + [anon_sym_LR_DQUOTE] = ACTIONS(1885), + [anon_sym_uR_DQUOTE] = ACTIONS(1885), + [anon_sym_UR_DQUOTE] = ACTIONS(1885), + [anon_sym_u8R_DQUOTE] = ACTIONS(1885), + [anon_sym_co_await] = ACTIONS(1887), + [anon_sym_new] = ACTIONS(1889), + [anon_sym_requires] = ACTIONS(1891), + [sym_this] = ACTIONS(1877), + }, + [138] = { + [sym_ms_based_modifier] = STATE(7654), + [sym__declarator] = STATE(5825), + [sym_parenthesized_declarator] = STATE(5640), + [sym_attributed_declarator] = STATE(5640), + [sym_pointer_declarator] = STATE(5640), + [sym_function_declarator] = STATE(5640), + [sym_array_declarator] = STATE(5640), + [sym_type_qualifier] = STATE(3781), + [sym__type_specifier] = STATE(4168), + [sym_sized_type_specifier] = STATE(2802), + [sym_enum_specifier] = STATE(2802), + [sym_struct_specifier] = STATE(2802), + [sym_union_specifier] = STATE(2802), + [sym__expression] = STATE(3336), + [sym__expression_not_binary] = STATE(3565), + [sym_comma_expression] = STATE(7218), + [sym_conditional_expression] = STATE(3565), + [sym_assignment_expression] = STATE(3565), + [sym_pointer_expression] = STATE(3220), + [sym_unary_expression] = STATE(3565), + [sym_binary_expression] = STATE(3565), + [sym_update_expression] = STATE(3565), + [sym_cast_expression] = STATE(3565), + [sym_type_descriptor] = STATE(7317), + [sym_sizeof_expression] = STATE(3565), + [sym_offsetof_expression] = STATE(3565), + [sym_generic_expression] = STATE(3565), + [sym_subscript_expression] = STATE(3220), + [sym_call_expression] = STATE(3220), + [sym_gnu_asm_expression] = STATE(3565), + [sym_field_expression] = STATE(3220), + [sym_compound_literal_expression] = STATE(3565), + [sym_parenthesized_expression] = STATE(3220), + [sym_char_literal] = STATE(3429), + [sym_concatenated_string] = STATE(3429), + [sym_string_literal] = STATE(2248), + [sym_null] = STATE(3565), + [sym_placeholder_type_specifier] = STATE(2802), + [sym_decltype_auto] = STATE(2819), + [sym_decltype] = STATE(2662), + [sym_class_specifier] = STATE(2802), + [sym__class_name] = STATE(6847), + [sym_dependent_type] = STATE(2802), + [sym_reference_declarator] = STATE(5640), + [sym_structured_binding_declarator] = STATE(5640), + [sym_template_type] = STATE(4771), + [sym_template_function] = STATE(3432), + [sym_raw_string_literal] = STATE(2248), + [sym_co_await_expression] = STATE(3565), + [sym_new_expression] = STATE(3565), + [sym_delete_expression] = STATE(3565), + [sym_requires_clause] = STATE(3565), + [sym_requires_expression] = STATE(3565), + [sym_lambda_expression] = STATE(3565), + [sym_lambda_capture_specifier] = STATE(5204), + [sym__unary_left_fold] = STATE(7231), + [sym__unary_right_fold] = STATE(7233), + [sym__binary_fold] = STATE(7244), + [sym_fold_expression] = STATE(3565), + [sym_parameter_pack_expansion] = STATE(3565), + [sym_destructor_name] = STATE(5640), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5272), + [sym_qualified_identifier] = STATE(3165), + [sym_qualified_type_identifier] = STATE(4890), + [sym_operator_name] = STATE(5640), + [sym_user_defined_literal] = STATE(3565), + [aux_sym_type_definition_repeat1] = STATE(3781), + [aux_sym_sized_type_specifier_repeat1] = STATE(2230), + [sym_identifier] = ACTIONS(1901), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1837), + [anon_sym_LPAREN2] = ACTIONS(1903), + [anon_sym_BANG] = ACTIONS(1843), + [anon_sym_TILDE] = ACTIONS(1905), + [anon_sym_DASH] = ACTIONS(1845), + [anon_sym_PLUS] = ACTIONS(1845), + [anon_sym_STAR] = ACTIONS(1907), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(1909), + [anon_sym_COLON_COLON] = ACTIONS(1849), + [anon_sym___based] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(1911), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(1913), + [anon_sym_unsigned] = ACTIONS(1913), + [anon_sym_long] = ACTIONS(1913), + [anon_sym_short] = ACTIONS(1913), + [sym_primitive_type] = ACTIONS(1915), + [anon_sym_enum] = ACTIONS(1917), + [anon_sym_class] = ACTIONS(1919), + [anon_sym_struct] = ACTIONS(1921), + [anon_sym_union] = ACTIONS(1923), + [anon_sym_not] = ACTIONS(1845), + [anon_sym_compl] = ACTIONS(1845), + [anon_sym_DASH_DASH] = ACTIONS(1861), + [anon_sym_PLUS_PLUS] = ACTIONS(1861), + [anon_sym_sizeof] = ACTIONS(1863), + [anon_sym_offsetof] = ACTIONS(1865), + [anon_sym__Generic] = ACTIONS(1867), + [anon_sym_asm] = ACTIONS(1869), + [anon_sym___asm__] = ACTIONS(1869), + [sym_number_literal] = ACTIONS(1871), + [anon_sym_L_SQUOTE] = ACTIONS(1873), + [anon_sym_u_SQUOTE] = ACTIONS(1873), + [anon_sym_U_SQUOTE] = ACTIONS(1873), + [anon_sym_u8_SQUOTE] = ACTIONS(1873), + [anon_sym_SQUOTE] = ACTIONS(1873), + [anon_sym_L_DQUOTE] = ACTIONS(1875), + [anon_sym_u_DQUOTE] = ACTIONS(1875), + [anon_sym_U_DQUOTE] = ACTIONS(1875), + [anon_sym_u8_DQUOTE] = ACTIONS(1875), + [anon_sym_DQUOTE] = ACTIONS(1875), + [sym_true] = ACTIONS(1877), + [sym_false] = ACTIONS(1877), + [anon_sym_NULL] = ACTIONS(1879), + [anon_sym_nullptr] = ACTIONS(1879), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1925), + [anon_sym_decltype] = ACTIONS(1927), + [anon_sym_typename] = ACTIONS(1929), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_operator] = ACTIONS(1931), + [anon_sym_delete] = ACTIONS(1883), + [anon_sym_R_DQUOTE] = ACTIONS(1885), + [anon_sym_LR_DQUOTE] = ACTIONS(1885), + [anon_sym_uR_DQUOTE] = ACTIONS(1885), + [anon_sym_UR_DQUOTE] = ACTIONS(1885), + [anon_sym_u8R_DQUOTE] = ACTIONS(1885), + [anon_sym_co_await] = ACTIONS(1887), + [anon_sym_new] = ACTIONS(1889), + [anon_sym_requires] = ACTIONS(1891), + [sym_this] = ACTIONS(1877), + }, + [139] = { + [sym_ms_based_modifier] = STATE(7654), + [sym__declarator] = STATE(5825), + [sym_parenthesized_declarator] = STATE(5640), + [sym_attributed_declarator] = STATE(5640), + [sym_pointer_declarator] = STATE(5640), + [sym_function_declarator] = STATE(5640), + [sym_array_declarator] = STATE(5640), + [sym_type_qualifier] = STATE(3781), + [sym__type_specifier] = STATE(4168), + [sym_sized_type_specifier] = STATE(2802), + [sym_enum_specifier] = STATE(2802), + [sym_struct_specifier] = STATE(2802), + [sym_union_specifier] = STATE(2802), + [sym__expression] = STATE(3336), + [sym__expression_not_binary] = STATE(3565), + [sym_comma_expression] = STATE(7218), + [sym_conditional_expression] = STATE(3565), + [sym_assignment_expression] = STATE(3565), + [sym_pointer_expression] = STATE(3220), + [sym_unary_expression] = STATE(3565), + [sym_binary_expression] = STATE(3565), + [sym_update_expression] = STATE(3565), + [sym_cast_expression] = STATE(3565), + [sym_type_descriptor] = STATE(7341), + [sym_sizeof_expression] = STATE(3565), + [sym_offsetof_expression] = STATE(3565), + [sym_generic_expression] = STATE(3565), + [sym_subscript_expression] = STATE(3220), + [sym_call_expression] = STATE(3220), + [sym_gnu_asm_expression] = STATE(3565), + [sym_field_expression] = STATE(3220), + [sym_compound_literal_expression] = STATE(3565), + [sym_parenthesized_expression] = STATE(3220), + [sym_char_literal] = STATE(3429), + [sym_concatenated_string] = STATE(3429), + [sym_string_literal] = STATE(2248), + [sym_null] = STATE(3565), + [sym_placeholder_type_specifier] = STATE(2802), + [sym_decltype_auto] = STATE(2819), + [sym_decltype] = STATE(2662), + [sym_class_specifier] = STATE(2802), + [sym__class_name] = STATE(6847), + [sym_dependent_type] = STATE(2802), + [sym_reference_declarator] = STATE(5640), + [sym_structured_binding_declarator] = STATE(5640), + [sym_template_type] = STATE(4771), + [sym_template_function] = STATE(3432), + [sym_raw_string_literal] = STATE(2248), + [sym_co_await_expression] = STATE(3565), + [sym_new_expression] = STATE(3565), + [sym_delete_expression] = STATE(3565), + [sym_requires_clause] = STATE(3565), + [sym_requires_expression] = STATE(3565), + [sym_lambda_expression] = STATE(3565), + [sym_lambda_capture_specifier] = STATE(5204), + [sym__unary_left_fold] = STATE(7340), + [sym__unary_right_fold] = STATE(7254), + [sym__binary_fold] = STATE(7336), + [sym_fold_expression] = STATE(3565), + [sym_parameter_pack_expansion] = STATE(3565), + [sym_destructor_name] = STATE(5640), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5272), + [sym_qualified_identifier] = STATE(3165), + [sym_qualified_type_identifier] = STATE(4890), + [sym_operator_name] = STATE(5640), + [sym_user_defined_literal] = STATE(3565), + [aux_sym_type_definition_repeat1] = STATE(3781), + [aux_sym_sized_type_specifier_repeat1] = STATE(2230), + [sym_identifier] = ACTIONS(1901), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1837), + [anon_sym_LPAREN2] = ACTIONS(1903), + [anon_sym_BANG] = ACTIONS(1843), + [anon_sym_TILDE] = ACTIONS(1905), + [anon_sym_DASH] = ACTIONS(1845), + [anon_sym_PLUS] = ACTIONS(1845), + [anon_sym_STAR] = ACTIONS(1907), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(1909), + [anon_sym_COLON_COLON] = ACTIONS(1849), + [anon_sym___based] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(1911), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(1913), + [anon_sym_unsigned] = ACTIONS(1913), + [anon_sym_long] = ACTIONS(1913), + [anon_sym_short] = ACTIONS(1913), + [sym_primitive_type] = ACTIONS(1915), + [anon_sym_enum] = ACTIONS(1917), + [anon_sym_class] = ACTIONS(1919), + [anon_sym_struct] = ACTIONS(1921), + [anon_sym_union] = ACTIONS(1923), + [anon_sym_not] = ACTIONS(1845), + [anon_sym_compl] = ACTIONS(1845), + [anon_sym_DASH_DASH] = ACTIONS(1861), + [anon_sym_PLUS_PLUS] = ACTIONS(1861), + [anon_sym_sizeof] = ACTIONS(1863), + [anon_sym_offsetof] = ACTIONS(1865), + [anon_sym__Generic] = ACTIONS(1867), + [anon_sym_asm] = ACTIONS(1869), + [anon_sym___asm__] = ACTIONS(1869), + [sym_number_literal] = ACTIONS(1871), + [anon_sym_L_SQUOTE] = ACTIONS(1873), + [anon_sym_u_SQUOTE] = ACTIONS(1873), + [anon_sym_U_SQUOTE] = ACTIONS(1873), + [anon_sym_u8_SQUOTE] = ACTIONS(1873), + [anon_sym_SQUOTE] = ACTIONS(1873), + [anon_sym_L_DQUOTE] = ACTIONS(1875), + [anon_sym_u_DQUOTE] = ACTIONS(1875), + [anon_sym_U_DQUOTE] = ACTIONS(1875), + [anon_sym_u8_DQUOTE] = ACTIONS(1875), + [anon_sym_DQUOTE] = ACTIONS(1875), + [sym_true] = ACTIONS(1877), + [sym_false] = ACTIONS(1877), + [anon_sym_NULL] = ACTIONS(1879), + [anon_sym_nullptr] = ACTIONS(1879), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1925), + [anon_sym_decltype] = ACTIONS(1927), + [anon_sym_typename] = ACTIONS(1929), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_operator] = ACTIONS(1931), + [anon_sym_delete] = ACTIONS(1883), + [anon_sym_R_DQUOTE] = ACTIONS(1885), + [anon_sym_LR_DQUOTE] = ACTIONS(1885), + [anon_sym_uR_DQUOTE] = ACTIONS(1885), + [anon_sym_UR_DQUOTE] = ACTIONS(1885), + [anon_sym_u8R_DQUOTE] = ACTIONS(1885), + [anon_sym_co_await] = ACTIONS(1887), + [anon_sym_new] = ACTIONS(1889), + [anon_sym_requires] = ACTIONS(1891), + [sym_this] = ACTIONS(1877), + }, + [140] = { + [sym_ms_based_modifier] = STATE(7654), + [sym__declarator] = STATE(5825), + [sym_parenthesized_declarator] = STATE(5640), + [sym_attributed_declarator] = STATE(5640), + [sym_pointer_declarator] = STATE(5640), + [sym_function_declarator] = STATE(5640), + [sym_array_declarator] = STATE(5640), + [sym_type_qualifier] = STATE(3781), + [sym__type_specifier] = STATE(4168), + [sym_sized_type_specifier] = STATE(2802), + [sym_enum_specifier] = STATE(2802), + [sym_struct_specifier] = STATE(2802), + [sym_union_specifier] = STATE(2802), + [sym__expression] = STATE(3264), + [sym__expression_not_binary] = STATE(3565), + [sym_comma_expression] = STATE(7617), + [sym_conditional_expression] = STATE(3565), + [sym_assignment_expression] = STATE(3565), + [sym_pointer_expression] = STATE(3220), + [sym_unary_expression] = STATE(3565), + [sym_binary_expression] = STATE(3565), + [sym_update_expression] = STATE(3565), + [sym_cast_expression] = STATE(3565), + [sym_type_descriptor] = STATE(7641), + [sym_sizeof_expression] = STATE(3565), + [sym_offsetof_expression] = STATE(3565), + [sym_generic_expression] = STATE(3565), + [sym_subscript_expression] = STATE(3220), + [sym_call_expression] = STATE(3220), + [sym_gnu_asm_expression] = STATE(3565), + [sym_field_expression] = STATE(3220), + [sym_compound_literal_expression] = STATE(3565), + [sym_parenthesized_expression] = STATE(3220), + [sym_char_literal] = STATE(3429), + [sym_concatenated_string] = STATE(3429), + [sym_string_literal] = STATE(2248), + [sym_null] = STATE(3565), + [sym_placeholder_type_specifier] = STATE(2802), + [sym_decltype_auto] = STATE(2819), + [sym_decltype] = STATE(2662), + [sym_class_specifier] = STATE(2802), + [sym__class_name] = STATE(6847), + [sym_dependent_type] = STATE(2802), + [sym_reference_declarator] = STATE(5640), + [sym_structured_binding_declarator] = STATE(5640), + [sym_template_type] = STATE(4771), + [sym_template_function] = STATE(3432), + [sym_raw_string_literal] = STATE(2248), + [sym_co_await_expression] = STATE(3565), + [sym_new_expression] = STATE(3565), + [sym_delete_expression] = STATE(3565), + [sym_requires_clause] = STATE(3565), + [sym_requires_expression] = STATE(3565), + [sym_lambda_expression] = STATE(3565), + [sym_lambda_capture_specifier] = STATE(5204), + [sym__unary_left_fold] = STATE(7640), + [sym__unary_right_fold] = STATE(7639), + [sym__binary_fold] = STATE(7637), + [sym_fold_expression] = STATE(3565), + [sym_parameter_pack_expansion] = STATE(3565), + [sym_destructor_name] = STATE(5640), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5272), + [sym_qualified_identifier] = STATE(3165), + [sym_qualified_type_identifier] = STATE(4890), + [sym_operator_name] = STATE(5640), + [sym_user_defined_literal] = STATE(3565), + [aux_sym_type_definition_repeat1] = STATE(3781), + [aux_sym_sized_type_specifier_repeat1] = STATE(2230), + [sym_identifier] = ACTIONS(1901), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1837), + [anon_sym_LPAREN2] = ACTIONS(1903), + [anon_sym_BANG] = ACTIONS(1843), + [anon_sym_TILDE] = ACTIONS(1905), + [anon_sym_DASH] = ACTIONS(1845), + [anon_sym_PLUS] = ACTIONS(1845), + [anon_sym_STAR] = ACTIONS(1907), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(1909), + [anon_sym_COLON_COLON] = ACTIONS(1849), + [anon_sym___based] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(1911), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(1913), + [anon_sym_unsigned] = ACTIONS(1913), + [anon_sym_long] = ACTIONS(1913), + [anon_sym_short] = ACTIONS(1913), + [sym_primitive_type] = ACTIONS(1915), + [anon_sym_enum] = ACTIONS(1917), + [anon_sym_class] = ACTIONS(1919), + [anon_sym_struct] = ACTIONS(1921), + [anon_sym_union] = ACTIONS(1923), + [anon_sym_not] = ACTIONS(1845), + [anon_sym_compl] = ACTIONS(1845), + [anon_sym_DASH_DASH] = ACTIONS(1861), + [anon_sym_PLUS_PLUS] = ACTIONS(1861), + [anon_sym_sizeof] = ACTIONS(1863), + [anon_sym_offsetof] = ACTIONS(1865), + [anon_sym__Generic] = ACTIONS(1867), + [anon_sym_asm] = ACTIONS(1869), + [anon_sym___asm__] = ACTIONS(1869), + [sym_number_literal] = ACTIONS(1871), + [anon_sym_L_SQUOTE] = ACTIONS(1873), + [anon_sym_u_SQUOTE] = ACTIONS(1873), + [anon_sym_U_SQUOTE] = ACTIONS(1873), + [anon_sym_u8_SQUOTE] = ACTIONS(1873), + [anon_sym_SQUOTE] = ACTIONS(1873), + [anon_sym_L_DQUOTE] = ACTIONS(1875), + [anon_sym_u_DQUOTE] = ACTIONS(1875), + [anon_sym_U_DQUOTE] = ACTIONS(1875), + [anon_sym_u8_DQUOTE] = ACTIONS(1875), + [anon_sym_DQUOTE] = ACTIONS(1875), + [sym_true] = ACTIONS(1877), + [sym_false] = ACTIONS(1877), + [anon_sym_NULL] = ACTIONS(1879), + [anon_sym_nullptr] = ACTIONS(1879), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1925), + [anon_sym_decltype] = ACTIONS(1927), + [anon_sym_typename] = ACTIONS(1929), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_operator] = ACTIONS(1931), + [anon_sym_delete] = ACTIONS(1883), + [anon_sym_R_DQUOTE] = ACTIONS(1885), + [anon_sym_LR_DQUOTE] = ACTIONS(1885), + [anon_sym_uR_DQUOTE] = ACTIONS(1885), + [anon_sym_UR_DQUOTE] = ACTIONS(1885), + [anon_sym_u8R_DQUOTE] = ACTIONS(1885), + [anon_sym_co_await] = ACTIONS(1887), + [anon_sym_new] = ACTIONS(1889), + [anon_sym_requires] = ACTIONS(1891), + [sym_this] = ACTIONS(1877), + }, + [141] = { + [sym__declaration_modifiers] = STATE(2514), + [sym__declaration_specifiers] = STATE(4681), + [sym_attribute_specifier] = STATE(2514), + [sym_attribute_declaration] = STATE(2514), + [sym_ms_declspec_modifier] = STATE(2514), + [sym_storage_class_specifier] = STATE(2514), + [sym_type_qualifier] = STATE(2514), + [sym__type_specifier] = STATE(3633), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), + [sym__expression] = STATE(4146), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(6992), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym__class_name] = STATE(6623), + [sym_virtual] = STATE(2514), + [sym_dependent_type] = STATE(3723), + [sym_template_type] = STATE(3921), + [sym_template_function] = STATE(3976), + [sym_condition_declaration] = STATE(6992), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5263), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(3915), + [sym_user_defined_literal] = STATE(3976), + [aux_sym__declaration_specifiers_repeat1] = STATE(2514), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [sym_identifier] = ACTIONS(1811), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_extern] = ACTIONS(53), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1813), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(53), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(113), + [anon_sym_decltype] = ACTIONS(115), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_typename] = ACTIONS(121), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), + }, + [142] = { + [sym__expression] = STATE(2984), + [sym__expression_not_binary] = STATE(3021), + [sym_conditional_expression] = STATE(3021), + [sym_assignment_expression] = STATE(3021), + [sym_pointer_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_cast_expression] = STATE(3021), + [sym_sizeof_expression] = STATE(3021), + [sym_offsetof_expression] = STATE(3021), + [sym_generic_expression] = STATE(3021), + [sym_subscript_expression] = STATE(3021), + [sym_call_expression] = STATE(3021), + [sym_gnu_asm_expression] = STATE(3021), + [sym_field_expression] = STATE(3021), + [sym_compound_literal_expression] = STATE(3021), + [sym_parenthesized_expression] = STATE(3021), + [sym_initializer_list] = STATE(2985), + [sym_char_literal] = STATE(2901), + [sym_concatenated_string] = STATE(2901), + [sym_string_literal] = STATE(2173), + [sym_null] = STATE(3021), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6616), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3021), + [sym_raw_string_literal] = STATE(2173), + [sym_co_await_expression] = STATE(3021), + [sym_new_expression] = STATE(3021), + [sym_delete_expression] = STATE(3021), + [sym_requires_clause] = STATE(3021), + [sym_requires_expression] = STATE(3021), + [sym_lambda_expression] = STATE(3021), + [sym_lambda_capture_specifier] = STATE(5188), + [sym_fold_expression] = STATE(3021), + [sym_parameter_pack_expansion] = STATE(3021), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3021), + [sym_qualified_type_identifier] = STATE(6616), + [sym_user_defined_literal] = STATE(3021), + [sym_identifier] = ACTIONS(1933), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1935), + [anon_sym_COMMA] = ACTIONS(1935), + [anon_sym_RPAREN] = ACTIONS(1935), + [anon_sym_LPAREN2] = ACTIONS(1937), + [anon_sym_BANG] = ACTIONS(1939), + [anon_sym_TILDE] = ACTIONS(1941), + [anon_sym_DASH] = ACTIONS(1939), + [anon_sym_PLUS] = ACTIONS(1939), + [anon_sym_STAR] = ACTIONS(1323), + [anon_sym_SLASH] = ACTIONS(1943), + [anon_sym_PERCENT] = ACTIONS(1943), + [anon_sym_PIPE_PIPE] = ACTIONS(1935), + [anon_sym_AMP_AMP] = ACTIONS(1935), + [anon_sym_PIPE] = ACTIONS(1943), + [anon_sym_CARET] = ACTIONS(1943), + [anon_sym_AMP] = ACTIONS(1323), + [anon_sym_EQ_EQ] = ACTIONS(1935), + [anon_sym_BANG_EQ] = ACTIONS(1935), + [anon_sym_GT] = ACTIONS(1943), + [anon_sym_GT_EQ] = ACTIONS(1935), + [anon_sym_LT_EQ] = ACTIONS(1943), + [anon_sym_LT] = ACTIONS(1943), + [anon_sym_LT_LT] = ACTIONS(1943), + [anon_sym_GT_GT] = ACTIONS(1943), + [anon_sym_SEMI] = ACTIONS(1935), + [anon_sym_COLON_COLON] = ACTIONS(1945), + [anon_sym_LBRACE] = ACTIONS(1947), + [anon_sym_RBRACE] = ACTIONS(1935), + [anon_sym_LBRACK] = ACTIONS(1949), + [anon_sym_RBRACK] = ACTIONS(1935), + [anon_sym_EQ] = ACTIONS(1943), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_QMARK] = ACTIONS(1935), + [anon_sym_STAR_EQ] = ACTIONS(1935), + [anon_sym_SLASH_EQ] = ACTIONS(1935), + [anon_sym_PERCENT_EQ] = ACTIONS(1935), + [anon_sym_PLUS_EQ] = ACTIONS(1935), + [anon_sym_DASH_EQ] = ACTIONS(1935), + [anon_sym_LT_LT_EQ] = ACTIONS(1935), + [anon_sym_GT_GT_EQ] = ACTIONS(1935), + [anon_sym_AMP_EQ] = ACTIONS(1935), + [anon_sym_CARET_EQ] = ACTIONS(1935), + [anon_sym_PIPE_EQ] = ACTIONS(1935), + [anon_sym_and_eq] = ACTIONS(1943), + [anon_sym_or_eq] = ACTIONS(1943), + [anon_sym_xor_eq] = ACTIONS(1943), + [anon_sym_not] = ACTIONS(1939), + [anon_sym_compl] = ACTIONS(1939), + [anon_sym_LT_EQ_GT] = ACTIONS(1935), + [anon_sym_or] = ACTIONS(1943), + [anon_sym_and] = ACTIONS(1943), + [anon_sym_bitor] = ACTIONS(1943), + [anon_sym_xor] = ACTIONS(1943), + [anon_sym_bitand] = ACTIONS(1943), + [anon_sym_not_eq] = ACTIONS(1943), + [anon_sym_DASH_DASH] = ACTIONS(1953), + [anon_sym_PLUS_PLUS] = ACTIONS(1953), + [anon_sym_sizeof] = ACTIONS(1955), + [anon_sym_offsetof] = ACTIONS(1957), + [anon_sym__Generic] = ACTIONS(1959), + [anon_sym_asm] = ACTIONS(1961), + [anon_sym___asm__] = ACTIONS(1961), + [anon_sym_DOT] = ACTIONS(1943), + [anon_sym_DASH_GT] = ACTIONS(1935), + [sym_number_literal] = ACTIONS(1963), + [anon_sym_L_SQUOTE] = ACTIONS(1965), + [anon_sym_u_SQUOTE] = ACTIONS(1965), + [anon_sym_U_SQUOTE] = ACTIONS(1965), + [anon_sym_u8_SQUOTE] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_L_DQUOTE] = ACTIONS(1967), + [anon_sym_u_DQUOTE] = ACTIONS(1967), + [anon_sym_U_DQUOTE] = ACTIONS(1967), + [anon_sym_u8_DQUOTE] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(1967), + [sym_true] = ACTIONS(1969), + [sym_false] = ACTIONS(1969), + [anon_sym_NULL] = ACTIONS(1971), + [anon_sym_nullptr] = ACTIONS(1971), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(1975), + [anon_sym_R_DQUOTE] = ACTIONS(1977), + [anon_sym_LR_DQUOTE] = ACTIONS(1977), + [anon_sym_uR_DQUOTE] = ACTIONS(1977), + [anon_sym_UR_DQUOTE] = ACTIONS(1977), + [anon_sym_u8R_DQUOTE] = ACTIONS(1977), + [anon_sym_co_await] = ACTIONS(1979), + [anon_sym_new] = ACTIONS(1981), + [anon_sym_requires] = ACTIONS(1983), + [sym_this] = ACTIONS(1969), + }, + [143] = { + [sym__expression] = STATE(3169), + [sym__expression_not_binary] = STATE(3318), + [sym_conditional_expression] = STATE(3318), + [sym_assignment_expression] = STATE(3318), + [sym_pointer_expression] = STATE(3318), + [sym_unary_expression] = STATE(3318), + [sym_binary_expression] = STATE(3318), + [sym_update_expression] = STATE(3318), + [sym_cast_expression] = STATE(3318), + [sym_sizeof_expression] = STATE(3318), + [sym_offsetof_expression] = STATE(3318), + [sym_generic_expression] = STATE(3318), + [sym_subscript_expression] = STATE(3318), + [sym_call_expression] = STATE(3318), + [sym_gnu_asm_expression] = STATE(3318), + [sym_field_expression] = STATE(3318), + [sym_compound_literal_expression] = STATE(3318), + [sym_parenthesized_expression] = STATE(3318), + [sym_initializer_list] = STATE(3285), + [sym_char_literal] = STATE(3076), + [sym_concatenated_string] = STATE(3076), + [sym_string_literal] = STATE(2202), + [sym_null] = STATE(3318), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6739), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3318), + [sym_raw_string_literal] = STATE(2202), + [sym_co_await_expression] = STATE(3318), + [sym_new_expression] = STATE(3318), + [sym_delete_expression] = STATE(3318), + [sym_requires_clause] = STATE(3318), + [sym_requires_expression] = STATE(3318), + [sym_lambda_expression] = STATE(3318), + [sym_lambda_capture_specifier] = STATE(5187), + [sym_fold_expression] = STATE(3318), + [sym_parameter_pack_expansion] = STATE(3318), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5232), + [sym_qualified_identifier] = STATE(3318), + [sym_qualified_type_identifier] = STATE(6739), + [sym_user_defined_literal] = STATE(3318), + [sym_identifier] = ACTIONS(1985), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1935), + [anon_sym_COMMA] = ACTIONS(1935), + [anon_sym_RPAREN] = ACTIONS(1935), + [anon_sym_LPAREN2] = ACTIONS(1987), + [anon_sym_BANG] = ACTIONS(1989), + [anon_sym_TILDE] = ACTIONS(1991), + [anon_sym_DASH] = ACTIONS(1989), + [anon_sym_PLUS] = ACTIONS(1989), + [anon_sym_STAR] = ACTIONS(1993), + [anon_sym_SLASH] = ACTIONS(1943), + [anon_sym_PERCENT] = ACTIONS(1943), + [anon_sym_PIPE_PIPE] = ACTIONS(1935), + [anon_sym_AMP_AMP] = ACTIONS(1935), + [anon_sym_PIPE] = ACTIONS(1943), + [anon_sym_CARET] = ACTIONS(1943), + [anon_sym_AMP] = ACTIONS(1993), + [anon_sym_EQ_EQ] = ACTIONS(1935), + [anon_sym_BANG_EQ] = ACTIONS(1935), + [anon_sym_GT] = ACTIONS(1943), + [anon_sym_GT_EQ] = ACTIONS(1935), + [anon_sym_LT_EQ] = ACTIONS(1943), + [anon_sym_LT] = ACTIONS(1943), + [anon_sym_LT_LT] = ACTIONS(1943), + [anon_sym_GT_GT] = ACTIONS(1943), + [anon_sym_COLON_COLON] = ACTIONS(1995), + [anon_sym_LBRACE] = ACTIONS(1997), + [anon_sym_LBRACK] = ACTIONS(1949), + [anon_sym_EQ] = ACTIONS(1943), + [sym_primitive_type] = ACTIONS(1999), + [anon_sym_QMARK] = ACTIONS(1935), + [anon_sym_STAR_EQ] = ACTIONS(1935), + [anon_sym_SLASH_EQ] = ACTIONS(1935), + [anon_sym_PERCENT_EQ] = ACTIONS(1935), + [anon_sym_PLUS_EQ] = ACTIONS(1935), + [anon_sym_DASH_EQ] = ACTIONS(1935), + [anon_sym_LT_LT_EQ] = ACTIONS(1935), + [anon_sym_GT_GT_EQ] = ACTIONS(1935), + [anon_sym_AMP_EQ] = ACTIONS(1935), + [anon_sym_CARET_EQ] = ACTIONS(1935), + [anon_sym_PIPE_EQ] = ACTIONS(1935), + [anon_sym_and_eq] = ACTIONS(1943), + [anon_sym_or_eq] = ACTIONS(1943), + [anon_sym_xor_eq] = ACTIONS(1943), + [anon_sym_not] = ACTIONS(1989), + [anon_sym_compl] = ACTIONS(1989), + [anon_sym_LT_EQ_GT] = ACTIONS(1935), + [anon_sym_or] = ACTIONS(1943), + [anon_sym_and] = ACTIONS(1943), + [anon_sym_bitor] = ACTIONS(1943), + [anon_sym_xor] = ACTIONS(1943), + [anon_sym_bitand] = ACTIONS(1943), + [anon_sym_not_eq] = ACTIONS(1943), + [anon_sym_DASH_DASH] = ACTIONS(2001), + [anon_sym_PLUS_PLUS] = ACTIONS(2001), + [anon_sym_sizeof] = ACTIONS(2003), + [anon_sym_offsetof] = ACTIONS(2005), + [anon_sym__Generic] = ACTIONS(2007), + [anon_sym_asm] = ACTIONS(2009), + [anon_sym___asm__] = ACTIONS(2009), + [anon_sym_DOT] = ACTIONS(1943), + [anon_sym_DASH_GT] = ACTIONS(1943), + [sym_number_literal] = ACTIONS(2011), + [anon_sym_L_SQUOTE] = ACTIONS(2013), + [anon_sym_u_SQUOTE] = ACTIONS(2013), + [anon_sym_U_SQUOTE] = ACTIONS(2013), + [anon_sym_u8_SQUOTE] = ACTIONS(2013), + [anon_sym_SQUOTE] = ACTIONS(2013), + [anon_sym_L_DQUOTE] = ACTIONS(2015), + [anon_sym_u_DQUOTE] = ACTIONS(2015), + [anon_sym_U_DQUOTE] = ACTIONS(2015), + [anon_sym_u8_DQUOTE] = ACTIONS(2015), + [anon_sym_DQUOTE] = ACTIONS(2015), + [sym_true] = ACTIONS(2017), + [sym_false] = ACTIONS(2017), + [anon_sym_NULL] = ACTIONS(2019), + [anon_sym_nullptr] = ACTIONS(2019), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(2021), + [anon_sym_R_DQUOTE] = ACTIONS(2023), + [anon_sym_LR_DQUOTE] = ACTIONS(2023), + [anon_sym_uR_DQUOTE] = ACTIONS(2023), + [anon_sym_UR_DQUOTE] = ACTIONS(2023), + [anon_sym_u8R_DQUOTE] = ACTIONS(2023), + [anon_sym_co_await] = ACTIONS(2025), + [anon_sym_new] = ACTIONS(2027), + [anon_sym_requires] = ACTIONS(2029), + [anon_sym_DOT_STAR] = ACTIONS(1935), + [anon_sym_DASH_GT_STAR] = ACTIONS(1935), + [sym_this] = ACTIONS(2017), + }, + [144] = { + [sym__expression] = STATE(3402), + [sym__expression_not_binary] = STATE(3513), + [sym_conditional_expression] = STATE(3513), + [sym_assignment_expression] = STATE(3513), + [sym_pointer_expression] = STATE(3513), + [sym_unary_expression] = STATE(3513), + [sym_binary_expression] = STATE(3513), + [sym_update_expression] = STATE(3513), + [sym_cast_expression] = STATE(3513), + [sym_sizeof_expression] = STATE(3513), + [sym_offsetof_expression] = STATE(3513), + [sym_generic_expression] = STATE(3513), + [sym_subscript_expression] = STATE(3513), + [sym_call_expression] = STATE(3513), + [sym_gnu_asm_expression] = STATE(3513), + [sym_field_expression] = STATE(3513), + [sym_compound_literal_expression] = STATE(3513), + [sym_parenthesized_expression] = STATE(3513), + [sym_initializer_list] = STATE(3438), + [sym_char_literal] = STATE(3385), + [sym_concatenated_string] = STATE(3385), + [sym_string_literal] = STATE(2225), + [sym_null] = STATE(3513), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6957), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3513), + [sym_raw_string_literal] = STATE(2225), + [sym_co_await_expression] = STATE(3513), + [sym_new_expression] = STATE(3513), + [sym_delete_expression] = STATE(3513), + [sym_requires_clause] = STATE(3513), + [sym_requires_expression] = STATE(3513), + [sym_lambda_expression] = STATE(3513), + [sym_lambda_capture_specifier] = STATE(5162), + [sym_fold_expression] = STATE(3513), + [sym_parameter_pack_expansion] = STATE(3513), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5289), + [sym_qualified_identifier] = STATE(3513), + [sym_qualified_type_identifier] = STATE(6957), + [sym_user_defined_literal] = STATE(3513), + [sym_identifier] = ACTIONS(2031), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1935), + [anon_sym_COMMA] = ACTIONS(1935), + [anon_sym_LPAREN2] = ACTIONS(2033), + [anon_sym_BANG] = ACTIONS(2035), + [anon_sym_TILDE] = ACTIONS(2037), + [anon_sym_DASH] = ACTIONS(2035), + [anon_sym_PLUS] = ACTIONS(2035), + [anon_sym_STAR] = ACTIONS(2039), + [anon_sym_SLASH] = ACTIONS(1943), + [anon_sym_PERCENT] = ACTIONS(1943), + [anon_sym_PIPE_PIPE] = ACTIONS(1935), + [anon_sym_AMP_AMP] = ACTIONS(1935), + [anon_sym_PIPE] = ACTIONS(1943), + [anon_sym_CARET] = ACTIONS(1943), + [anon_sym_AMP] = ACTIONS(2039), + [anon_sym_EQ_EQ] = ACTIONS(1935), + [anon_sym_BANG_EQ] = ACTIONS(1935), + [anon_sym_GT] = ACTIONS(1943), + [anon_sym_GT_EQ] = ACTIONS(1943), + [anon_sym_LT_EQ] = ACTIONS(1943), + [anon_sym_LT] = ACTIONS(1943), + [anon_sym_LT_LT] = ACTIONS(1943), + [anon_sym_GT_GT] = ACTIONS(1943), + [anon_sym_COLON_COLON] = ACTIONS(2041), + [anon_sym_LBRACE] = ACTIONS(2043), + [anon_sym_LBRACK] = ACTIONS(1949), + [anon_sym_EQ] = ACTIONS(1943), + [sym_primitive_type] = ACTIONS(2045), + [anon_sym_QMARK] = ACTIONS(1935), + [anon_sym_STAR_EQ] = ACTIONS(1935), + [anon_sym_SLASH_EQ] = ACTIONS(1935), + [anon_sym_PERCENT_EQ] = ACTIONS(1935), + [anon_sym_PLUS_EQ] = ACTIONS(1935), + [anon_sym_DASH_EQ] = ACTIONS(1935), + [anon_sym_LT_LT_EQ] = ACTIONS(1935), + [anon_sym_GT_GT_EQ] = ACTIONS(1943), + [anon_sym_AMP_EQ] = ACTIONS(1935), + [anon_sym_CARET_EQ] = ACTIONS(1935), + [anon_sym_PIPE_EQ] = ACTIONS(1935), + [anon_sym_and_eq] = ACTIONS(1943), + [anon_sym_or_eq] = ACTIONS(1943), + [anon_sym_xor_eq] = ACTIONS(1943), + [anon_sym_not] = ACTIONS(2035), + [anon_sym_compl] = ACTIONS(2035), + [anon_sym_LT_EQ_GT] = ACTIONS(1935), + [anon_sym_or] = ACTIONS(1943), + [anon_sym_and] = ACTIONS(1943), + [anon_sym_bitor] = ACTIONS(1943), + [anon_sym_xor] = ACTIONS(1943), + [anon_sym_bitand] = ACTIONS(1943), + [anon_sym_not_eq] = ACTIONS(1943), + [anon_sym_DASH_DASH] = ACTIONS(2047), + [anon_sym_PLUS_PLUS] = ACTIONS(2047), + [anon_sym_sizeof] = ACTIONS(2049), + [anon_sym_offsetof] = ACTIONS(2051), + [anon_sym__Generic] = ACTIONS(2053), + [anon_sym_asm] = ACTIONS(2055), + [anon_sym___asm__] = ACTIONS(2055), + [anon_sym_DOT] = ACTIONS(1943), + [anon_sym_DASH_GT] = ACTIONS(1935), + [sym_number_literal] = ACTIONS(2057), + [anon_sym_L_SQUOTE] = ACTIONS(2059), + [anon_sym_u_SQUOTE] = ACTIONS(2059), + [anon_sym_U_SQUOTE] = ACTIONS(2059), + [anon_sym_u8_SQUOTE] = ACTIONS(2059), + [anon_sym_SQUOTE] = ACTIONS(2059), + [anon_sym_L_DQUOTE] = ACTIONS(2061), + [anon_sym_u_DQUOTE] = ACTIONS(2061), + [anon_sym_U_DQUOTE] = ACTIONS(2061), + [anon_sym_u8_DQUOTE] = ACTIONS(2061), + [anon_sym_DQUOTE] = ACTIONS(2061), + [sym_true] = ACTIONS(2063), + [sym_false] = ACTIONS(2063), + [anon_sym_NULL] = ACTIONS(2065), + [anon_sym_nullptr] = ACTIONS(2065), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_GT2] = ACTIONS(1935), + [anon_sym_delete] = ACTIONS(2067), + [anon_sym_R_DQUOTE] = ACTIONS(2069), + [anon_sym_LR_DQUOTE] = ACTIONS(2069), + [anon_sym_uR_DQUOTE] = ACTIONS(2069), + [anon_sym_UR_DQUOTE] = ACTIONS(2069), + [anon_sym_u8R_DQUOTE] = ACTIONS(2069), + [anon_sym_co_await] = ACTIONS(2071), + [anon_sym_new] = ACTIONS(2073), + [anon_sym_requires] = ACTIONS(2075), + [sym_this] = ACTIONS(2063), + }, + [145] = { + [sym__expression] = STATE(3453), + [sym__expression_not_binary] = STATE(3021), + [sym_conditional_expression] = STATE(3021), + [sym_assignment_expression] = STATE(3021), + [sym_pointer_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_cast_expression] = STATE(3021), + [sym_sizeof_expression] = STATE(3021), + [sym_offsetof_expression] = STATE(3021), + [sym_generic_expression] = STATE(3021), + [sym_subscript_expression] = STATE(3021), + [sym_call_expression] = STATE(3021), + [sym_gnu_asm_expression] = STATE(3021), + [sym_field_expression] = STATE(3021), + [sym_compound_literal_expression] = STATE(3021), + [sym_parenthesized_expression] = STATE(3021), + [sym_initializer_list] = STATE(2985), + [sym_char_literal] = STATE(2901), + [sym_concatenated_string] = STATE(2901), + [sym_string_literal] = STATE(2173), + [sym_null] = STATE(3021), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6616), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3021), + [sym_raw_string_literal] = STATE(2173), + [sym_co_await_expression] = STATE(3021), + [sym_new_expression] = STATE(3021), + [sym_delete_expression] = STATE(3021), + [sym_requires_clause] = STATE(3021), + [sym_requires_expression] = STATE(3021), + [sym_lambda_expression] = STATE(3021), + [sym_lambda_capture_specifier] = STATE(5188), + [sym_fold_expression] = STATE(3021), + [sym_parameter_pack_expansion] = STATE(3021), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3021), + [sym_qualified_type_identifier] = STATE(6616), + [sym_user_defined_literal] = STATE(3021), + [sym_identifier] = ACTIONS(1933), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1935), + [anon_sym_LPAREN2] = ACTIONS(2077), + [anon_sym_BANG] = ACTIONS(2079), + [anon_sym_TILDE] = ACTIONS(2081), + [anon_sym_DASH] = ACTIONS(2079), + [anon_sym_PLUS] = ACTIONS(2079), + [anon_sym_STAR] = ACTIONS(2083), + [anon_sym_SLASH] = ACTIONS(1943), + [anon_sym_PERCENT] = ACTIONS(1943), + [anon_sym_PIPE_PIPE] = ACTIONS(1935), + [anon_sym_AMP_AMP] = ACTIONS(1935), + [anon_sym_PIPE] = ACTIONS(1943), + [anon_sym_CARET] = ACTIONS(1943), + [anon_sym_AMP] = ACTIONS(2083), + [anon_sym_EQ_EQ] = ACTIONS(1935), + [anon_sym_BANG_EQ] = ACTIONS(1935), + [anon_sym_GT] = ACTIONS(1943), + [anon_sym_GT_EQ] = ACTIONS(1935), + [anon_sym_LT_EQ] = ACTIONS(1943), + [anon_sym_LT] = ACTIONS(1943), + [anon_sym_LT_LT] = ACTIONS(1943), + [anon_sym_GT_GT] = ACTIONS(1943), + [anon_sym_COLON_COLON] = ACTIONS(2085), + [anon_sym_LBRACE] = ACTIONS(1947), + [anon_sym_LBRACK] = ACTIONS(1949), + [anon_sym_EQ] = ACTIONS(1943), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_COLON] = ACTIONS(1943), + [anon_sym_QMARK] = ACTIONS(1935), + [anon_sym_STAR_EQ] = ACTIONS(1935), + [anon_sym_SLASH_EQ] = ACTIONS(1935), + [anon_sym_PERCENT_EQ] = ACTIONS(1935), + [anon_sym_PLUS_EQ] = ACTIONS(1935), + [anon_sym_DASH_EQ] = ACTIONS(1935), + [anon_sym_LT_LT_EQ] = ACTIONS(1935), + [anon_sym_GT_GT_EQ] = ACTIONS(1935), + [anon_sym_AMP_EQ] = ACTIONS(1935), + [anon_sym_CARET_EQ] = ACTIONS(1935), + [anon_sym_PIPE_EQ] = ACTIONS(1935), + [anon_sym_and_eq] = ACTIONS(1943), + [anon_sym_or_eq] = ACTIONS(1943), + [anon_sym_xor_eq] = ACTIONS(1943), + [anon_sym_not] = ACTIONS(2079), + [anon_sym_compl] = ACTIONS(2079), + [anon_sym_LT_EQ_GT] = ACTIONS(1935), + [anon_sym_or] = ACTIONS(1943), + [anon_sym_and] = ACTIONS(1943), + [anon_sym_bitor] = ACTIONS(1943), + [anon_sym_xor] = ACTIONS(1943), + [anon_sym_bitand] = ACTIONS(1943), + [anon_sym_not_eq] = ACTIONS(1943), + [anon_sym_DASH_DASH] = ACTIONS(2087), + [anon_sym_PLUS_PLUS] = ACTIONS(2087), + [anon_sym_sizeof] = ACTIONS(2089), + [anon_sym_offsetof] = ACTIONS(1957), + [anon_sym__Generic] = ACTIONS(1959), + [anon_sym_asm] = ACTIONS(1961), + [anon_sym___asm__] = ACTIONS(1961), + [anon_sym_DOT] = ACTIONS(1943), + [anon_sym_DASH_GT] = ACTIONS(1935), + [sym_number_literal] = ACTIONS(1963), + [anon_sym_L_SQUOTE] = ACTIONS(1965), + [anon_sym_u_SQUOTE] = ACTIONS(1965), + [anon_sym_U_SQUOTE] = ACTIONS(1965), + [anon_sym_u8_SQUOTE] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_L_DQUOTE] = ACTIONS(1967), + [anon_sym_u_DQUOTE] = ACTIONS(1967), + [anon_sym_U_DQUOTE] = ACTIONS(1967), + [anon_sym_u8_DQUOTE] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(1967), + [sym_true] = ACTIONS(1969), + [sym_false] = ACTIONS(1969), + [anon_sym_NULL] = ACTIONS(1971), + [anon_sym_nullptr] = ACTIONS(1971), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(2091), + [anon_sym_R_DQUOTE] = ACTIONS(1977), + [anon_sym_LR_DQUOTE] = ACTIONS(1977), + [anon_sym_uR_DQUOTE] = ACTIONS(1977), + [anon_sym_UR_DQUOTE] = ACTIONS(1977), + [anon_sym_u8R_DQUOTE] = ACTIONS(1977), + [anon_sym_co_await] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(1981), + [anon_sym_requires] = ACTIONS(1983), + [sym_this] = ACTIONS(1969), + }, + [146] = { + [sym__expression] = STATE(3485), + [sym__expression_not_binary] = STATE(3565), + [sym_conditional_expression] = STATE(3565), + [sym_assignment_expression] = STATE(3565), + [sym_pointer_expression] = STATE(3220), + [sym_unary_expression] = STATE(3565), + [sym_binary_expression] = STATE(3565), + [sym_update_expression] = STATE(3565), + [sym_cast_expression] = STATE(3565), + [sym_sizeof_expression] = STATE(3565), + [sym_offsetof_expression] = STATE(3565), + [sym_generic_expression] = STATE(3565), + [sym_subscript_expression] = STATE(3220), + [sym_call_expression] = STATE(3220), + [sym_gnu_asm_expression] = STATE(3565), + [sym_field_expression] = STATE(3220), + [sym_compound_literal_expression] = STATE(3565), + [sym_parenthesized_expression] = STATE(3220), + [sym_initializer_list] = STATE(3613), + [sym_char_literal] = STATE(3429), + [sym_concatenated_string] = STATE(3429), + [sym_string_literal] = STATE(2248), + [sym_null] = STATE(3565), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6847), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3565), + [sym_raw_string_literal] = STATE(2248), + [sym_co_await_expression] = STATE(3565), + [sym_new_expression] = STATE(3565), + [sym_delete_expression] = STATE(3565), + [sym_requires_clause] = STATE(3565), + [sym_requires_expression] = STATE(3565), + [sym_lambda_expression] = STATE(3565), + [sym_lambda_capture_specifier] = STATE(5204), + [sym_fold_expression] = STATE(3565), + [sym_parameter_pack_expansion] = STATE(3565), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5232), + [sym_qualified_identifier] = STATE(3220), + [sym_qualified_type_identifier] = STATE(6847), + [sym_user_defined_literal] = STATE(3565), + [sym_identifier] = ACTIONS(2095), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1935), + [anon_sym_COMMA] = ACTIONS(1935), + [anon_sym_RPAREN] = ACTIONS(1935), + [anon_sym_LPAREN2] = ACTIONS(1841), + [anon_sym_BANG] = ACTIONS(1845), + [anon_sym_TILDE] = ACTIONS(1843), + [anon_sym_DASH] = ACTIONS(1845), + [anon_sym_PLUS] = ACTIONS(1845), + [anon_sym_STAR] = ACTIONS(1993), + [anon_sym_SLASH] = ACTIONS(1943), + [anon_sym_PERCENT] = ACTIONS(1943), + [anon_sym_PIPE_PIPE] = ACTIONS(1935), + [anon_sym_AMP_AMP] = ACTIONS(1935), + [anon_sym_PIPE] = ACTIONS(1943), + [anon_sym_CARET] = ACTIONS(1943), + [anon_sym_AMP] = ACTIONS(1993), + [anon_sym_EQ_EQ] = ACTIONS(1935), + [anon_sym_BANG_EQ] = ACTIONS(1935), + [anon_sym_GT] = ACTIONS(1943), + [anon_sym_GT_EQ] = ACTIONS(1935), + [anon_sym_LT_EQ] = ACTIONS(1943), + [anon_sym_LT] = ACTIONS(1943), + [anon_sym_LT_LT] = ACTIONS(1943), + [anon_sym_GT_GT] = ACTIONS(1943), + [anon_sym_COLON_COLON] = ACTIONS(1849), + [anon_sym_LBRACE] = ACTIONS(2097), + [anon_sym_LBRACK] = ACTIONS(1949), + [anon_sym_EQ] = ACTIONS(1943), + [sym_primitive_type] = ACTIONS(1999), + [anon_sym_QMARK] = ACTIONS(1935), + [anon_sym_STAR_EQ] = ACTIONS(1935), + [anon_sym_SLASH_EQ] = ACTIONS(1935), + [anon_sym_PERCENT_EQ] = ACTIONS(1935), + [anon_sym_PLUS_EQ] = ACTIONS(1935), + [anon_sym_DASH_EQ] = ACTIONS(1935), + [anon_sym_LT_LT_EQ] = ACTIONS(1935), + [anon_sym_GT_GT_EQ] = ACTIONS(1935), + [anon_sym_AMP_EQ] = ACTIONS(1935), + [anon_sym_CARET_EQ] = ACTIONS(1935), + [anon_sym_PIPE_EQ] = ACTIONS(1935), + [anon_sym_not] = ACTIONS(1845), + [anon_sym_compl] = ACTIONS(1845), + [anon_sym_LT_EQ_GT] = ACTIONS(1935), + [anon_sym_or] = ACTIONS(1943), + [anon_sym_and] = ACTIONS(1943), + [anon_sym_bitor] = ACTIONS(1943), + [anon_sym_xor] = ACTIONS(1943), + [anon_sym_bitand] = ACTIONS(1943), + [anon_sym_not_eq] = ACTIONS(1943), + [anon_sym_DASH_DASH] = ACTIONS(1861), + [anon_sym_PLUS_PLUS] = ACTIONS(1861), + [anon_sym_sizeof] = ACTIONS(1863), + [anon_sym_offsetof] = ACTIONS(1865), + [anon_sym__Generic] = ACTIONS(1867), + [anon_sym_asm] = ACTIONS(1869), + [anon_sym___asm__] = ACTIONS(1869), + [anon_sym_DOT] = ACTIONS(1943), + [anon_sym_DASH_GT] = ACTIONS(1943), + [sym_number_literal] = ACTIONS(1871), + [anon_sym_L_SQUOTE] = ACTIONS(1873), + [anon_sym_u_SQUOTE] = ACTIONS(1873), + [anon_sym_U_SQUOTE] = ACTIONS(1873), + [anon_sym_u8_SQUOTE] = ACTIONS(1873), + [anon_sym_SQUOTE] = ACTIONS(1873), + [anon_sym_L_DQUOTE] = ACTIONS(1875), + [anon_sym_u_DQUOTE] = ACTIONS(1875), + [anon_sym_U_DQUOTE] = ACTIONS(1875), + [anon_sym_u8_DQUOTE] = ACTIONS(1875), + [anon_sym_DQUOTE] = ACTIONS(1875), + [sym_true] = ACTIONS(1877), + [sym_false] = ACTIONS(1877), + [anon_sym_NULL] = ACTIONS(1879), + [anon_sym_nullptr] = ACTIONS(1879), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(1883), + [anon_sym_R_DQUOTE] = ACTIONS(1885), + [anon_sym_LR_DQUOTE] = ACTIONS(1885), + [anon_sym_uR_DQUOTE] = ACTIONS(1885), + [anon_sym_UR_DQUOTE] = ACTIONS(1885), + [anon_sym_u8R_DQUOTE] = ACTIONS(1885), + [anon_sym_co_await] = ACTIONS(1887), + [anon_sym_new] = ACTIONS(1889), + [anon_sym_requires] = ACTIONS(1891), + [anon_sym_DOT_STAR] = ACTIONS(1935), + [anon_sym_DASH_GT_STAR] = ACTIONS(1935), + [sym_this] = ACTIONS(1877), + }, + [147] = { + [sym_attribute_declaration] = STATE(189), + [sym_compound_statement] = STATE(1163), + [sym_attributed_statement] = STATE(954), + [sym_labeled_statement] = STATE(955), + [sym_expression_statement] = STATE(956), + [sym_if_statement] = STATE(958), + [sym_switch_statement] = STATE(959), + [sym_case_statement] = STATE(970), + [sym_while_statement] = STATE(975), + [sym_do_statement] = STATE(979), + [sym_for_statement] = STATE(980), + [sym_return_statement] = STATE(984), + [sym_break_statement] = STATE(985), + [sym_continue_statement] = STATE(986), + [sym_goto_statement] = STATE(991), + [sym__expression] = STATE(4126), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(6964), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(994), + [sym_co_return_statement] = STATE(1001), + [sym_co_yield_statement] = STATE(1002), + [sym_throw_statement] = STATE(1004), + [sym_try_statement] = STATE(1005), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(189), + [sym_identifier] = ACTIONS(2099), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(911), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(917), + [anon_sym_LBRACK] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(921), + [anon_sym_switch] = ACTIONS(923), + [anon_sym_case] = ACTIONS(925), + [anon_sym_default] = ACTIONS(927), + [anon_sym_while] = ACTIONS(929), + [anon_sym_do] = ACTIONS(931), + [anon_sym_for] = ACTIONS(933), + [anon_sym_return] = ACTIONS(935), + [anon_sym_break] = ACTIONS(937), + [anon_sym_continue] = ACTIONS(939), + [anon_sym_goto] = ACTIONS(941), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(945), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(947), + [anon_sym_co_return] = ACTIONS(957), + [anon_sym_co_yield] = ACTIONS(959), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), + }, + [148] = { + [sym_attribute_declaration] = STATE(260), + [sym_compound_statement] = STATE(1031), + [sym_attributed_statement] = STATE(1031), + [sym_labeled_statement] = STATE(1031), + [sym_expression_statement] = STATE(1031), + [sym_if_statement] = STATE(1031), + [sym_switch_statement] = STATE(1031), + [sym_case_statement] = STATE(1031), + [sym_while_statement] = STATE(1031), + [sym_do_statement] = STATE(1031), + [sym_for_statement] = STATE(1031), + [sym_return_statement] = STATE(1031), + [sym_break_statement] = STATE(1031), + [sym_continue_statement] = STATE(1031), + [sym_goto_statement] = STATE(1031), + [sym__expression] = STATE(4234), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7265), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(1031), + [sym_co_return_statement] = STATE(1031), + [sym_co_yield_statement] = STATE(1031), + [sym_throw_statement] = STATE(1031), + [sym_try_statement] = STATE(1031), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(260), + [sym_identifier] = ACTIONS(2101), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(1622), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACK] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(71), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_case] = ACTIONS(75), + [anon_sym_default] = ACTIONS(77), + [anon_sym_while] = ACTIONS(79), + [anon_sym_do] = ACTIONS(81), + [anon_sym_for] = ACTIONS(83), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(127), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(131), + [anon_sym_co_return] = ACTIONS(141), + [anon_sym_co_yield] = ACTIONS(143), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), + }, + [149] = { + [sym_attribute_declaration] = STATE(309), + [sym_compound_statement] = STATE(995), + [sym_attributed_statement] = STATE(995), + [sym_labeled_statement] = STATE(995), + [sym_expression_statement] = STATE(995), + [sym_if_statement] = STATE(995), + [sym_switch_statement] = STATE(995), + [sym_case_statement] = STATE(995), + [sym_while_statement] = STATE(995), + [sym_do_statement] = STATE(995), + [sym_for_statement] = STATE(995), + [sym_return_statement] = STATE(995), + [sym_break_statement] = STATE(995), + [sym_continue_statement] = STATE(995), + [sym_goto_statement] = STATE(995), + [sym__expression] = STATE(4182), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7590), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(995), + [sym_co_return_statement] = STATE(995), + [sym_co_yield_statement] = STATE(995), + [sym_throw_statement] = STATE(995), + [sym_try_statement] = STATE(995), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(309), + [sym_identifier] = ACTIONS(2103), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(181), + [anon_sym_switch] = ACTIONS(183), + [anon_sym_case] = ACTIONS(185), + [anon_sym_default] = ACTIONS(187), + [anon_sym_while] = ACTIONS(189), + [anon_sym_do] = ACTIONS(191), + [anon_sym_for] = ACTIONS(193), + [anon_sym_return] = ACTIONS(195), + [anon_sym_break] = ACTIONS(197), + [anon_sym_continue] = ACTIONS(199), + [anon_sym_goto] = ACTIONS(201), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(209), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(211), + [anon_sym_co_return] = ACTIONS(221), + [anon_sym_co_yield] = ACTIONS(223), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), + }, + [150] = { + [sym_attribute_declaration] = STATE(244), + [sym_compound_statement] = STATE(509), + [sym_attributed_statement] = STATE(508), + [sym_labeled_statement] = STATE(504), + [sym_expression_statement] = STATE(503), + [sym_if_statement] = STATE(496), + [sym_switch_statement] = STATE(492), + [sym_case_statement] = STATE(490), + [sym_while_statement] = STATE(489), + [sym_do_statement] = STATE(488), + [sym_for_statement] = STATE(487), + [sym_return_statement] = STATE(485), + [sym_break_statement] = STATE(484), + [sym_continue_statement] = STATE(483), + [sym_goto_statement] = STATE(482), + [sym__expression] = STATE(4160), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7618), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(478), + [sym_co_return_statement] = STATE(476), + [sym_co_yield_statement] = STATE(491), + [sym_throw_statement] = STATE(475), + [sym_try_statement] = STATE(473), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(244), + [sym_identifier] = ACTIONS(2105), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(245), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(251), + [anon_sym_LBRACK] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(255), + [anon_sym_switch] = ACTIONS(257), + [anon_sym_case] = ACTIONS(259), + [anon_sym_default] = ACTIONS(261), + [anon_sym_while] = ACTIONS(263), + [anon_sym_do] = ACTIONS(265), + [anon_sym_for] = ACTIONS(267), + [anon_sym_return] = ACTIONS(269), + [anon_sym_break] = ACTIONS(271), + [anon_sym_continue] = ACTIONS(273), + [anon_sym_goto] = ACTIONS(275), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(279), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(281), + [anon_sym_co_return] = ACTIONS(291), + [anon_sym_co_yield] = ACTIONS(293), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), + }, + [151] = { + [sym_attribute_declaration] = STATE(251), + [sym_compound_statement] = STATE(694), + [sym_attributed_statement] = STATE(694), + [sym_labeled_statement] = STATE(694), + [sym_expression_statement] = STATE(694), + [sym_if_statement] = STATE(694), + [sym_switch_statement] = STATE(694), + [sym_case_statement] = STATE(694), + [sym_while_statement] = STATE(694), + [sym_do_statement] = STATE(694), + [sym_for_statement] = STATE(694), + [sym_return_statement] = STATE(694), + [sym_break_statement] = STATE(694), + [sym_continue_statement] = STATE(694), + [sym_goto_statement] = STATE(694), + [sym__expression] = STATE(4169), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7079), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(694), + [sym_co_return_statement] = STATE(694), + [sym_co_yield_statement] = STATE(694), + [sym_throw_statement] = STATE(694), + [sym_try_statement] = STATE(694), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(251), + [sym_identifier] = ACTIONS(2107), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(345), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(351), + [anon_sym_LBRACK] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(355), + [anon_sym_switch] = ACTIONS(357), + [anon_sym_case] = ACTIONS(359), + [anon_sym_default] = ACTIONS(361), + [anon_sym_while] = ACTIONS(363), + [anon_sym_do] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_return] = ACTIONS(369), + [anon_sym_break] = ACTIONS(371), + [anon_sym_continue] = ACTIONS(373), + [anon_sym_goto] = ACTIONS(375), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(379), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(381), + [anon_sym_co_return] = ACTIONS(391), + [anon_sym_co_yield] = ACTIONS(393), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), + }, + [152] = { + [sym_attribute_declaration] = STATE(244), + [sym_compound_statement] = STATE(507), + [sym_attributed_statement] = STATE(507), + [sym_labeled_statement] = STATE(507), + [sym_expression_statement] = STATE(507), + [sym_if_statement] = STATE(507), + [sym_switch_statement] = STATE(507), + [sym_case_statement] = STATE(507), + [sym_while_statement] = STATE(507), + [sym_do_statement] = STATE(507), + [sym_for_statement] = STATE(507), + [sym_return_statement] = STATE(507), + [sym_break_statement] = STATE(507), + [sym_continue_statement] = STATE(507), + [sym_goto_statement] = STATE(507), + [sym__expression] = STATE(4160), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7618), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(507), + [sym_co_return_statement] = STATE(507), + [sym_co_yield_statement] = STATE(507), + [sym_throw_statement] = STATE(507), + [sym_try_statement] = STATE(507), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(244), + [sym_identifier] = ACTIONS(2105), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(245), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(251), + [anon_sym_LBRACK] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(255), + [anon_sym_switch] = ACTIONS(257), + [anon_sym_case] = ACTIONS(259), + [anon_sym_default] = ACTIONS(261), + [anon_sym_while] = ACTIONS(263), + [anon_sym_do] = ACTIONS(265), + [anon_sym_for] = ACTIONS(267), + [anon_sym_return] = ACTIONS(269), + [anon_sym_break] = ACTIONS(271), + [anon_sym_continue] = ACTIONS(273), + [anon_sym_goto] = ACTIONS(275), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(279), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(281), + [anon_sym_co_return] = ACTIONS(291), + [anon_sym_co_yield] = ACTIONS(293), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), + }, + [153] = { + [sym_attribute_declaration] = STATE(260), + [sym_compound_statement] = STATE(1143), + [sym_attributed_statement] = STATE(1143), + [sym_labeled_statement] = STATE(1143), + [sym_expression_statement] = STATE(1143), + [sym_if_statement] = STATE(1143), + [sym_switch_statement] = STATE(1143), + [sym_case_statement] = STATE(1143), + [sym_while_statement] = STATE(1143), + [sym_do_statement] = STATE(1143), + [sym_for_statement] = STATE(1143), + [sym_return_statement] = STATE(1143), + [sym_break_statement] = STATE(1143), + [sym_continue_statement] = STATE(1143), + [sym_goto_statement] = STATE(1143), + [sym__expression] = STATE(4234), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7265), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(1143), + [sym_co_return_statement] = STATE(1143), + [sym_co_yield_statement] = STATE(1143), + [sym_throw_statement] = STATE(1143), + [sym_try_statement] = STATE(1143), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(260), + [sym_identifier] = ACTIONS(2101), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(660), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(666), - [anon_sym_LBRACK] = ACTIONS(994), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_if] = ACTIONS(670), - [anon_sym_switch] = ACTIONS(672), - [anon_sym_case] = ACTIONS(674), - [anon_sym_default] = ACTIONS(676), - [anon_sym_while] = ACTIONS(678), - [anon_sym_do] = ACTIONS(680), - [anon_sym_for] = ACTIONS(682), - [anon_sym_return] = ACTIONS(684), - [anon_sym_break] = ACTIONS(686), - [anon_sym_continue] = ACTIONS(688), - [anon_sym_goto] = ACTIONS(690), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(1622), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACK] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(71), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_case] = ACTIONS(75), + [anon_sym_default] = ACTIONS(77), + [anon_sym_while] = ACTIONS(79), + [anon_sym_do] = ACTIONS(81), + [anon_sym_for] = ACTIONS(83), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_try] = ACTIONS(694), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(696), - [anon_sym_co_return] = ACTIONS(706), - [anon_sym_co_yield] = ACTIONS(708), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(127), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(131), + [anon_sym_co_return] = ACTIONS(141), + [anon_sym_co_yield] = ACTIONS(143), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [154] = { - [sym_attribute_declaration] = STATE(149), - [sym_compound_statement] = STATE(1234), - [sym_attributed_statement] = STATE(1234), - [sym_labeled_statement] = STATE(1234), - [sym_expression_statement] = STATE(1234), - [sym_if_statement] = STATE(1234), - [sym_switch_statement] = STATE(1234), - [sym_case_statement] = STATE(1234), - [sym_while_statement] = STATE(1234), - [sym_do_statement] = STATE(1234), - [sym_for_statement] = STATE(1234), - [sym_return_statement] = STATE(1234), - [sym_break_statement] = STATE(1234), - [sym_continue_statement] = STATE(1234), - [sym_goto_statement] = STATE(1234), - [sym__expression] = STATE(3545), - [sym_comma_expression] = STATE(6215), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_for_range_loop] = STATE(1234), - [sym_co_return_statement] = STATE(1234), - [sym_co_yield_statement] = STATE(1234), - [sym_throw_statement] = STATE(1234), - [sym_try_statement] = STATE(1234), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_attributed_declarator_repeat1] = STATE(149), - [sym_identifier] = ACTIONS(1775), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym_attribute_declaration] = STATE(309), + [sym_compound_statement] = STATE(864), + [sym_attributed_statement] = STATE(864), + [sym_labeled_statement] = STATE(864), + [sym_expression_statement] = STATE(864), + [sym_if_statement] = STATE(864), + [sym_switch_statement] = STATE(864), + [sym_case_statement] = STATE(864), + [sym_while_statement] = STATE(864), + [sym_do_statement] = STATE(864), + [sym_for_statement] = STATE(864), + [sym_return_statement] = STATE(864), + [sym_break_statement] = STATE(864), + [sym_continue_statement] = STATE(864), + [sym_goto_statement] = STATE(864), + [sym__expression] = STATE(4182), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7590), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(864), + [sym_co_return_statement] = STATE(864), + [sym_co_yield_statement] = STATE(864), + [sym_throw_statement] = STATE(864), + [sym_try_statement] = STATE(864), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(309), + [sym_identifier] = ACTIONS(2103), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(1328), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(1332), - [anon_sym_LBRACK] = ACTIONS(994), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_if] = ACTIONS(1334), - [anon_sym_switch] = ACTIONS(1336), - [anon_sym_case] = ACTIONS(1767), - [anon_sym_default] = ACTIONS(1769), - [anon_sym_while] = ACTIONS(1338), - [anon_sym_do] = ACTIONS(1340), - [anon_sym_for] = ACTIONS(1342), - [anon_sym_return] = ACTIONS(1344), - [anon_sym_break] = ACTIONS(1346), - [anon_sym_continue] = ACTIONS(1348), - [anon_sym_goto] = ACTIONS(1350), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(181), + [anon_sym_switch] = ACTIONS(183), + [anon_sym_case] = ACTIONS(185), + [anon_sym_default] = ACTIONS(187), + [anon_sym_while] = ACTIONS(189), + [anon_sym_do] = ACTIONS(191), + [anon_sym_for] = ACTIONS(193), + [anon_sym_return] = ACTIONS(195), + [anon_sym_break] = ACTIONS(197), + [anon_sym_continue] = ACTIONS(199), + [anon_sym_goto] = ACTIONS(201), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_try] = ACTIONS(1352), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(1354), - [anon_sym_co_return] = ACTIONS(1356), - [anon_sym_co_yield] = ACTIONS(1358), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(209), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(211), + [anon_sym_co_return] = ACTIONS(221), + [anon_sym_co_yield] = ACTIONS(223), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [155] = { - [sym_attribute_declaration] = STATE(151), - [sym_compound_statement] = STATE(629), - [sym_attributed_statement] = STATE(629), - [sym_labeled_statement] = STATE(629), - [sym_expression_statement] = STATE(629), - [sym_if_statement] = STATE(629), - [sym_switch_statement] = STATE(629), - [sym_case_statement] = STATE(629), - [sym_while_statement] = STATE(629), - [sym_do_statement] = STATE(629), - [sym_for_statement] = STATE(629), - [sym_return_statement] = STATE(629), - [sym_break_statement] = STATE(629), - [sym_continue_statement] = STATE(629), - [sym_goto_statement] = STATE(629), - [sym__expression] = STATE(3522), - [sym_comma_expression] = STATE(6276), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_for_range_loop] = STATE(629), - [sym_co_return_statement] = STATE(629), - [sym_co_yield_statement] = STATE(629), - [sym_throw_statement] = STATE(629), - [sym_try_statement] = STATE(629), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_attributed_declarator_repeat1] = STATE(151), - [sym_identifier] = ACTIONS(1761), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym_attribute_declaration] = STATE(260), + [sym_compound_statement] = STATE(1144), + [sym_attributed_statement] = STATE(1144), + [sym_labeled_statement] = STATE(1144), + [sym_expression_statement] = STATE(1144), + [sym_if_statement] = STATE(1144), + [sym_switch_statement] = STATE(1144), + [sym_case_statement] = STATE(1144), + [sym_while_statement] = STATE(1144), + [sym_do_statement] = STATE(1144), + [sym_for_statement] = STATE(1144), + [sym_return_statement] = STATE(1144), + [sym_break_statement] = STATE(1144), + [sym_continue_statement] = STATE(1144), + [sym_goto_statement] = STATE(1144), + [sym__expression] = STATE(4234), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7265), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(1144), + [sym_co_return_statement] = STATE(1144), + [sym_co_yield_statement] = STATE(1144), + [sym_throw_statement] = STATE(1144), + [sym_try_statement] = STATE(1144), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(260), + [sym_identifier] = ACTIONS(2101), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(660), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(666), - [anon_sym_LBRACK] = ACTIONS(994), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_if] = ACTIONS(670), - [anon_sym_switch] = ACTIONS(672), - [anon_sym_case] = ACTIONS(674), - [anon_sym_default] = ACTIONS(676), - [anon_sym_while] = ACTIONS(678), - [anon_sym_do] = ACTIONS(680), - [anon_sym_for] = ACTIONS(682), - [anon_sym_return] = ACTIONS(684), - [anon_sym_break] = ACTIONS(686), - [anon_sym_continue] = ACTIONS(688), - [anon_sym_goto] = ACTIONS(690), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(1622), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACK] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(71), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_case] = ACTIONS(75), + [anon_sym_default] = ACTIONS(77), + [anon_sym_while] = ACTIONS(79), + [anon_sym_do] = ACTIONS(81), + [anon_sym_for] = ACTIONS(83), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_try] = ACTIONS(694), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(696), - [anon_sym_co_return] = ACTIONS(706), - [anon_sym_co_yield] = ACTIONS(708), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(127), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(131), + [anon_sym_co_return] = ACTIONS(141), + [anon_sym_co_yield] = ACTIONS(143), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [156] = { - [sym_attribute_declaration] = STATE(149), - [sym_compound_statement] = STATE(1237), - [sym_attributed_statement] = STATE(1237), - [sym_labeled_statement] = STATE(1237), - [sym_expression_statement] = STATE(1237), - [sym_if_statement] = STATE(1237), - [sym_switch_statement] = STATE(1237), - [sym_case_statement] = STATE(1237), - [sym_while_statement] = STATE(1237), - [sym_do_statement] = STATE(1237), - [sym_for_statement] = STATE(1237), - [sym_return_statement] = STATE(1237), - [sym_break_statement] = STATE(1237), - [sym_continue_statement] = STATE(1237), - [sym_goto_statement] = STATE(1237), - [sym__expression] = STATE(3545), - [sym_comma_expression] = STATE(6215), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_for_range_loop] = STATE(1237), - [sym_co_return_statement] = STATE(1237), - [sym_co_yield_statement] = STATE(1237), - [sym_throw_statement] = STATE(1237), - [sym_try_statement] = STATE(1237), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_attributed_declarator_repeat1] = STATE(149), - [sym_identifier] = ACTIONS(1775), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym_attribute_declaration] = STATE(309), + [sym_compound_statement] = STATE(865), + [sym_attributed_statement] = STATE(865), + [sym_labeled_statement] = STATE(865), + [sym_expression_statement] = STATE(865), + [sym_if_statement] = STATE(865), + [sym_switch_statement] = STATE(865), + [sym_case_statement] = STATE(865), + [sym_while_statement] = STATE(865), + [sym_do_statement] = STATE(865), + [sym_for_statement] = STATE(865), + [sym_return_statement] = STATE(865), + [sym_break_statement] = STATE(865), + [sym_continue_statement] = STATE(865), + [sym_goto_statement] = STATE(865), + [sym__expression] = STATE(4182), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7590), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(865), + [sym_co_return_statement] = STATE(865), + [sym_co_yield_statement] = STATE(865), + [sym_throw_statement] = STATE(865), + [sym_try_statement] = STATE(865), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(309), + [sym_identifier] = ACTIONS(2103), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(1328), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(1332), - [anon_sym_LBRACK] = ACTIONS(994), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_if] = ACTIONS(1334), - [anon_sym_switch] = ACTIONS(1336), - [anon_sym_case] = ACTIONS(1767), - [anon_sym_default] = ACTIONS(1769), - [anon_sym_while] = ACTIONS(1338), - [anon_sym_do] = ACTIONS(1340), - [anon_sym_for] = ACTIONS(1342), - [anon_sym_return] = ACTIONS(1344), - [anon_sym_break] = ACTIONS(1346), - [anon_sym_continue] = ACTIONS(1348), - [anon_sym_goto] = ACTIONS(1350), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(181), + [anon_sym_switch] = ACTIONS(183), + [anon_sym_case] = ACTIONS(185), + [anon_sym_default] = ACTIONS(187), + [anon_sym_while] = ACTIONS(189), + [anon_sym_do] = ACTIONS(191), + [anon_sym_for] = ACTIONS(193), + [anon_sym_return] = ACTIONS(195), + [anon_sym_break] = ACTIONS(197), + [anon_sym_continue] = ACTIONS(199), + [anon_sym_goto] = ACTIONS(201), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_try] = ACTIONS(1352), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(1354), - [anon_sym_co_return] = ACTIONS(1356), - [anon_sym_co_yield] = ACTIONS(1358), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(209), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(211), + [anon_sym_co_return] = ACTIONS(221), + [anon_sym_co_yield] = ACTIONS(223), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [157] = { - [sym_attribute_declaration] = STATE(157), - [sym_compound_statement] = STATE(746), - [sym_attributed_statement] = STATE(746), - [sym_labeled_statement] = STATE(746), - [sym_expression_statement] = STATE(746), - [sym_if_statement] = STATE(746), - [sym_switch_statement] = STATE(746), - [sym_case_statement] = STATE(746), - [sym_while_statement] = STATE(746), - [sym_do_statement] = STATE(746), - [sym_for_statement] = STATE(746), - [sym_return_statement] = STATE(746), - [sym_break_statement] = STATE(746), - [sym_continue_statement] = STATE(746), - [sym_goto_statement] = STATE(746), - [sym__expression] = STATE(3622), - [sym_comma_expression] = STATE(6125), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_for_range_loop] = STATE(746), - [sym_co_return_statement] = STATE(746), - [sym_co_yield_statement] = STATE(746), - [sym_throw_statement] = STATE(746), - [sym_try_statement] = STATE(746), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_attributed_declarator_repeat1] = STATE(157), - [sym_identifier] = ACTIONS(1777), - [anon_sym_LPAREN2] = ACTIONS(1780), - [anon_sym_BANG] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(1783), - [anon_sym_DASH] = ACTIONS(1786), - [anon_sym_PLUS] = ACTIONS(1786), - [anon_sym_STAR] = ACTIONS(1789), - [anon_sym_AMP] = ACTIONS(1789), - [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_COLON_COLON] = ACTIONS(1795), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1798), - [anon_sym_LBRACE] = ACTIONS(1801), - [anon_sym_LBRACK] = ACTIONS(1804), - [sym_primitive_type] = ACTIONS(1807), - [anon_sym_if] = ACTIONS(1810), - [anon_sym_switch] = ACTIONS(1813), - [anon_sym_case] = ACTIONS(1816), - [anon_sym_default] = ACTIONS(1819), - [anon_sym_while] = ACTIONS(1822), - [anon_sym_do] = ACTIONS(1825), - [anon_sym_for] = ACTIONS(1828), - [anon_sym_return] = ACTIONS(1831), - [anon_sym_break] = ACTIONS(1834), - [anon_sym_continue] = ACTIONS(1837), - [anon_sym_goto] = ACTIONS(1840), - [anon_sym_not] = ACTIONS(1786), - [anon_sym_compl] = ACTIONS(1786), - [anon_sym_DASH_DASH] = ACTIONS(1843), - [anon_sym_PLUS_PLUS] = ACTIONS(1843), - [anon_sym_sizeof] = ACTIONS(1846), - [sym_number_literal] = ACTIONS(1849), - [anon_sym_L_SQUOTE] = ACTIONS(1852), - [anon_sym_u_SQUOTE] = ACTIONS(1852), - [anon_sym_U_SQUOTE] = ACTIONS(1852), - [anon_sym_u8_SQUOTE] = ACTIONS(1852), - [anon_sym_SQUOTE] = ACTIONS(1852), - [anon_sym_L_DQUOTE] = ACTIONS(1855), - [anon_sym_u_DQUOTE] = ACTIONS(1855), - [anon_sym_U_DQUOTE] = ACTIONS(1855), - [anon_sym_u8_DQUOTE] = ACTIONS(1855), - [anon_sym_DQUOTE] = ACTIONS(1855), - [sym_true] = ACTIONS(1858), - [sym_false] = ACTIONS(1858), - [sym_null] = ACTIONS(1858), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1861), - [anon_sym_template] = ACTIONS(1864), - [anon_sym_try] = ACTIONS(1867), - [anon_sym_delete] = ACTIONS(1870), - [anon_sym_throw] = ACTIONS(1873), - [anon_sym_co_return] = ACTIONS(1876), - [anon_sym_co_yield] = ACTIONS(1879), - [anon_sym_R_DQUOTE] = ACTIONS(1882), - [anon_sym_LR_DQUOTE] = ACTIONS(1882), - [anon_sym_uR_DQUOTE] = ACTIONS(1882), - [anon_sym_UR_DQUOTE] = ACTIONS(1882), - [anon_sym_u8R_DQUOTE] = ACTIONS(1882), - [anon_sym_co_await] = ACTIONS(1885), - [anon_sym_new] = ACTIONS(1888), - [anon_sym_requires] = ACTIONS(1891), - [sym_this] = ACTIONS(1858), - [sym_nullptr] = ACTIONS(1858), + [sym_attribute_declaration] = STATE(244), + [sym_compound_statement] = STATE(506), + [sym_attributed_statement] = STATE(506), + [sym_labeled_statement] = STATE(506), + [sym_expression_statement] = STATE(506), + [sym_if_statement] = STATE(506), + [sym_switch_statement] = STATE(506), + [sym_case_statement] = STATE(506), + [sym_while_statement] = STATE(506), + [sym_do_statement] = STATE(506), + [sym_for_statement] = STATE(506), + [sym_return_statement] = STATE(506), + [sym_break_statement] = STATE(506), + [sym_continue_statement] = STATE(506), + [sym_goto_statement] = STATE(506), + [sym__expression] = STATE(4160), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7618), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(506), + [sym_co_return_statement] = STATE(506), + [sym_co_yield_statement] = STATE(506), + [sym_throw_statement] = STATE(506), + [sym_try_statement] = STATE(506), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(244), + [sym_identifier] = ACTIONS(2105), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(245), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(251), + [anon_sym_LBRACK] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(255), + [anon_sym_switch] = ACTIONS(257), + [anon_sym_case] = ACTIONS(259), + [anon_sym_default] = ACTIONS(261), + [anon_sym_while] = ACTIONS(263), + [anon_sym_do] = ACTIONS(265), + [anon_sym_for] = ACTIONS(267), + [anon_sym_return] = ACTIONS(269), + [anon_sym_break] = ACTIONS(271), + [anon_sym_continue] = ACTIONS(273), + [anon_sym_goto] = ACTIONS(275), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(279), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(281), + [anon_sym_co_return] = ACTIONS(291), + [anon_sym_co_yield] = ACTIONS(293), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [158] = { - [sym_attribute_declaration] = STATE(206), - [sym_compound_statement] = STATE(861), - [sym_attributed_statement] = STATE(861), - [sym_labeled_statement] = STATE(861), - [sym_expression_statement] = STATE(861), - [sym_if_statement] = STATE(861), - [sym_switch_statement] = STATE(861), - [sym_case_statement] = STATE(861), - [sym_while_statement] = STATE(861), - [sym_do_statement] = STATE(861), - [sym_for_statement] = STATE(861), - [sym_return_statement] = STATE(861), - [sym_break_statement] = STATE(861), - [sym_continue_statement] = STATE(861), - [sym_goto_statement] = STATE(861), - [sym__expression] = STATE(3502), - [sym_comma_expression] = STATE(6595), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_for_range_loop] = STATE(861), - [sym_co_return_statement] = STATE(861), - [sym_co_yield_statement] = STATE(861), - [sym_throw_statement] = STATE(861), - [sym_try_statement] = STATE(861), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_attributed_declarator_repeat1] = STATE(206), - [sym_identifier] = ACTIONS(1759), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym_attribute_declaration] = STATE(244), + [sym_compound_statement] = STATE(465), + [sym_attributed_statement] = STATE(466), + [sym_labeled_statement] = STATE(468), + [sym_expression_statement] = STATE(469), + [sym_if_statement] = STATE(472), + [sym_switch_statement] = STATE(479), + [sym_case_statement] = STATE(480), + [sym_while_statement] = STATE(481), + [sym_do_statement] = STATE(486), + [sym_for_statement] = STATE(493), + [sym_return_statement] = STATE(494), + [sym_break_statement] = STATE(495), + [sym_continue_statement] = STATE(497), + [sym_goto_statement] = STATE(498), + [sym__expression] = STATE(4160), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7618), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(499), + [sym_co_return_statement] = STATE(500), + [sym_co_yield_statement] = STATE(501), + [sym_throw_statement] = STATE(502), + [sym_try_statement] = STATE(505), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(244), + [sym_identifier] = ACTIONS(2105), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_LBRACK] = ACTIONS(994), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_if] = ACTIONS(175), - [anon_sym_switch] = ACTIONS(177), - [anon_sym_case] = ACTIONS(179), - [anon_sym_default] = ACTIONS(181), - [anon_sym_while] = ACTIONS(183), - [anon_sym_do] = ACTIONS(185), - [anon_sym_for] = ACTIONS(187), - [anon_sym_return] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), - [anon_sym_goto] = ACTIONS(195), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(245), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(251), + [anon_sym_LBRACK] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(255), + [anon_sym_switch] = ACTIONS(257), + [anon_sym_case] = ACTIONS(259), + [anon_sym_default] = ACTIONS(261), + [anon_sym_while] = ACTIONS(263), + [anon_sym_do] = ACTIONS(265), + [anon_sym_for] = ACTIONS(267), + [anon_sym_return] = ACTIONS(269), + [anon_sym_break] = ACTIONS(271), + [anon_sym_continue] = ACTIONS(273), + [anon_sym_goto] = ACTIONS(275), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_try] = ACTIONS(201), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(203), - [anon_sym_co_return] = ACTIONS(213), - [anon_sym_co_yield] = ACTIONS(215), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(279), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(281), + [anon_sym_co_return] = ACTIONS(291), + [anon_sym_co_yield] = ACTIONS(293), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [159] = { - [sym_attribute_declaration] = STATE(151), - [sym_compound_statement] = STATE(639), - [sym_attributed_statement] = STATE(639), - [sym_labeled_statement] = STATE(639), - [sym_expression_statement] = STATE(639), - [sym_if_statement] = STATE(639), - [sym_switch_statement] = STATE(639), - [sym_case_statement] = STATE(639), - [sym_while_statement] = STATE(639), - [sym_do_statement] = STATE(639), - [sym_for_statement] = STATE(639), - [sym_return_statement] = STATE(639), - [sym_break_statement] = STATE(639), - [sym_continue_statement] = STATE(639), - [sym_goto_statement] = STATE(639), - [sym__expression] = STATE(3522), - [sym_comma_expression] = STATE(6276), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_for_range_loop] = STATE(639), - [sym_co_return_statement] = STATE(639), - [sym_co_yield_statement] = STATE(639), - [sym_throw_statement] = STATE(639), - [sym_try_statement] = STATE(639), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_attributed_declarator_repeat1] = STATE(151), - [sym_identifier] = ACTIONS(1761), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym_attribute_declaration] = STATE(251), + [sym_compound_statement] = STATE(703), + [sym_attributed_statement] = STATE(703), + [sym_labeled_statement] = STATE(703), + [sym_expression_statement] = STATE(703), + [sym_if_statement] = STATE(703), + [sym_switch_statement] = STATE(703), + [sym_case_statement] = STATE(703), + [sym_while_statement] = STATE(703), + [sym_do_statement] = STATE(703), + [sym_for_statement] = STATE(703), + [sym_return_statement] = STATE(703), + [sym_break_statement] = STATE(703), + [sym_continue_statement] = STATE(703), + [sym_goto_statement] = STATE(703), + [sym__expression] = STATE(4169), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7079), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(703), + [sym_co_return_statement] = STATE(703), + [sym_co_yield_statement] = STATE(703), + [sym_throw_statement] = STATE(703), + [sym_try_statement] = STATE(703), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(251), + [sym_identifier] = ACTIONS(2107), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(660), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(666), - [anon_sym_LBRACK] = ACTIONS(994), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_if] = ACTIONS(670), - [anon_sym_switch] = ACTIONS(672), - [anon_sym_case] = ACTIONS(674), - [anon_sym_default] = ACTIONS(676), - [anon_sym_while] = ACTIONS(678), - [anon_sym_do] = ACTIONS(680), - [anon_sym_for] = ACTIONS(682), - [anon_sym_return] = ACTIONS(684), - [anon_sym_break] = ACTIONS(686), - [anon_sym_continue] = ACTIONS(688), - [anon_sym_goto] = ACTIONS(690), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(345), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(351), + [anon_sym_LBRACK] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(355), + [anon_sym_switch] = ACTIONS(357), + [anon_sym_case] = ACTIONS(359), + [anon_sym_default] = ACTIONS(361), + [anon_sym_while] = ACTIONS(363), + [anon_sym_do] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_return] = ACTIONS(369), + [anon_sym_break] = ACTIONS(371), + [anon_sym_continue] = ACTIONS(373), + [anon_sym_goto] = ACTIONS(375), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_try] = ACTIONS(694), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(696), - [anon_sym_co_return] = ACTIONS(706), - [anon_sym_co_yield] = ACTIONS(708), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(379), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(381), + [anon_sym_co_return] = ACTIONS(391), + [anon_sym_co_yield] = ACTIONS(393), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [160] = { - [sym_attribute_declaration] = STATE(160), - [sym_compound_statement] = STATE(787), - [sym_attributed_statement] = STATE(787), - [sym_labeled_statement] = STATE(787), - [sym_expression_statement] = STATE(787), - [sym_if_statement] = STATE(787), - [sym_switch_statement] = STATE(787), - [sym_case_statement] = STATE(787), - [sym_while_statement] = STATE(787), - [sym_do_statement] = STATE(787), - [sym_for_statement] = STATE(787), - [sym_return_statement] = STATE(787), - [sym_break_statement] = STATE(787), - [sym_continue_statement] = STATE(787), - [sym_goto_statement] = STATE(787), - [sym__expression] = STATE(3502), - [sym_comma_expression] = STATE(6595), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_for_range_loop] = STATE(787), - [sym_co_return_statement] = STATE(787), - [sym_co_yield_statement] = STATE(787), - [sym_throw_statement] = STATE(787), - [sym_try_statement] = STATE(787), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_attributed_declarator_repeat1] = STATE(160), - [sym_identifier] = ACTIONS(1894), - [anon_sym_LPAREN2] = ACTIONS(1780), - [anon_sym_BANG] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(1783), - [anon_sym_DASH] = ACTIONS(1786), - [anon_sym_PLUS] = ACTIONS(1786), - [anon_sym_STAR] = ACTIONS(1789), - [anon_sym_AMP] = ACTIONS(1789), - [anon_sym_SEMI] = ACTIONS(1897), - [anon_sym_COLON_COLON] = ACTIONS(1795), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1798), - [anon_sym_LBRACE] = ACTIONS(1900), - [anon_sym_LBRACK] = ACTIONS(1804), - [sym_primitive_type] = ACTIONS(1807), - [anon_sym_if] = ACTIONS(1903), - [anon_sym_switch] = ACTIONS(1906), - [anon_sym_case] = ACTIONS(1909), - [anon_sym_default] = ACTIONS(1912), - [anon_sym_while] = ACTIONS(1915), - [anon_sym_do] = ACTIONS(1918), - [anon_sym_for] = ACTIONS(1921), - [anon_sym_return] = ACTIONS(1924), - [anon_sym_break] = ACTIONS(1927), - [anon_sym_continue] = ACTIONS(1930), - [anon_sym_goto] = ACTIONS(1933), - [anon_sym_not] = ACTIONS(1786), - [anon_sym_compl] = ACTIONS(1786), - [anon_sym_DASH_DASH] = ACTIONS(1843), - [anon_sym_PLUS_PLUS] = ACTIONS(1843), - [anon_sym_sizeof] = ACTIONS(1846), - [sym_number_literal] = ACTIONS(1849), - [anon_sym_L_SQUOTE] = ACTIONS(1852), - [anon_sym_u_SQUOTE] = ACTIONS(1852), - [anon_sym_U_SQUOTE] = ACTIONS(1852), - [anon_sym_u8_SQUOTE] = ACTIONS(1852), - [anon_sym_SQUOTE] = ACTIONS(1852), - [anon_sym_L_DQUOTE] = ACTIONS(1855), - [anon_sym_u_DQUOTE] = ACTIONS(1855), - [anon_sym_U_DQUOTE] = ACTIONS(1855), - [anon_sym_u8_DQUOTE] = ACTIONS(1855), - [anon_sym_DQUOTE] = ACTIONS(1855), - [sym_true] = ACTIONS(1858), - [sym_false] = ACTIONS(1858), - [sym_null] = ACTIONS(1858), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1861), - [anon_sym_template] = ACTIONS(1864), - [anon_sym_try] = ACTIONS(1936), - [anon_sym_delete] = ACTIONS(1870), - [anon_sym_throw] = ACTIONS(1939), - [anon_sym_co_return] = ACTIONS(1942), - [anon_sym_co_yield] = ACTIONS(1945), - [anon_sym_R_DQUOTE] = ACTIONS(1882), - [anon_sym_LR_DQUOTE] = ACTIONS(1882), - [anon_sym_uR_DQUOTE] = ACTIONS(1882), - [anon_sym_UR_DQUOTE] = ACTIONS(1882), - [anon_sym_u8R_DQUOTE] = ACTIONS(1882), - [anon_sym_co_await] = ACTIONS(1885), - [anon_sym_new] = ACTIONS(1888), - [anon_sym_requires] = ACTIONS(1891), - [sym_this] = ACTIONS(1858), - [sym_nullptr] = ACTIONS(1858), + [sym_attribute_declaration] = STATE(260), + [sym_compound_statement] = STATE(1140), + [sym_attributed_statement] = STATE(1146), + [sym_labeled_statement] = STATE(1147), + [sym_expression_statement] = STATE(1159), + [sym_if_statement] = STATE(1165), + [sym_switch_statement] = STATE(1166), + [sym_case_statement] = STATE(1167), + [sym_while_statement] = STATE(1168), + [sym_do_statement] = STATE(1170), + [sym_for_statement] = STATE(1184), + [sym_return_statement] = STATE(1185), + [sym_break_statement] = STATE(1190), + [sym_continue_statement] = STATE(1188), + [sym_goto_statement] = STATE(1186), + [sym__expression] = STATE(4234), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7265), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(1175), + [sym_co_return_statement] = STATE(1174), + [sym_co_yield_statement] = STATE(1173), + [sym_throw_statement] = STATE(1162), + [sym_try_statement] = STATE(1160), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(260), + [sym_identifier] = ACTIONS(2101), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(1622), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACK] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(71), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_case] = ACTIONS(75), + [anon_sym_default] = ACTIONS(77), + [anon_sym_while] = ACTIONS(79), + [anon_sym_do] = ACTIONS(81), + [anon_sym_for] = ACTIONS(83), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(127), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(131), + [anon_sym_co_return] = ACTIONS(141), + [anon_sym_co_yield] = ACTIONS(143), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [161] = { - [sym_attribute_declaration] = STATE(161), - [sym_compound_statement] = STATE(1230), - [sym_attributed_statement] = STATE(1230), - [sym_labeled_statement] = STATE(1230), - [sym_expression_statement] = STATE(1230), - [sym_if_statement] = STATE(1230), - [sym_switch_statement] = STATE(1230), - [sym_case_statement] = STATE(1230), - [sym_while_statement] = STATE(1230), - [sym_do_statement] = STATE(1230), - [sym_for_statement] = STATE(1230), - [sym_return_statement] = STATE(1230), - [sym_break_statement] = STATE(1230), - [sym_continue_statement] = STATE(1230), - [sym_goto_statement] = STATE(1230), - [sym__expression] = STATE(3545), - [sym_comma_expression] = STATE(6215), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_for_range_loop] = STATE(1230), - [sym_co_return_statement] = STATE(1230), - [sym_co_yield_statement] = STATE(1230), - [sym_throw_statement] = STATE(1230), - [sym_try_statement] = STATE(1230), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_attributed_declarator_repeat1] = STATE(161), - [sym_identifier] = ACTIONS(1948), - [anon_sym_LPAREN2] = ACTIONS(1780), - [anon_sym_BANG] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(1783), - [anon_sym_DASH] = ACTIONS(1786), - [anon_sym_PLUS] = ACTIONS(1786), - [anon_sym_STAR] = ACTIONS(1789), - [anon_sym_AMP] = ACTIONS(1789), - [anon_sym_SEMI] = ACTIONS(1951), - [anon_sym_COLON_COLON] = ACTIONS(1795), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1798), - [anon_sym_LBRACE] = ACTIONS(1954), - [anon_sym_LBRACK] = ACTIONS(1804), - [sym_primitive_type] = ACTIONS(1807), - [anon_sym_if] = ACTIONS(1957), - [anon_sym_switch] = ACTIONS(1960), - [anon_sym_case] = ACTIONS(1963), - [anon_sym_default] = ACTIONS(1966), - [anon_sym_while] = ACTIONS(1969), - [anon_sym_do] = ACTIONS(1972), - [anon_sym_for] = ACTIONS(1975), - [anon_sym_return] = ACTIONS(1978), - [anon_sym_break] = ACTIONS(1981), - [anon_sym_continue] = ACTIONS(1984), - [anon_sym_goto] = ACTIONS(1987), - [anon_sym_not] = ACTIONS(1786), - [anon_sym_compl] = ACTIONS(1786), - [anon_sym_DASH_DASH] = ACTIONS(1843), - [anon_sym_PLUS_PLUS] = ACTIONS(1843), - [anon_sym_sizeof] = ACTIONS(1846), - [sym_number_literal] = ACTIONS(1849), - [anon_sym_L_SQUOTE] = ACTIONS(1852), - [anon_sym_u_SQUOTE] = ACTIONS(1852), - [anon_sym_U_SQUOTE] = ACTIONS(1852), - [anon_sym_u8_SQUOTE] = ACTIONS(1852), - [anon_sym_SQUOTE] = ACTIONS(1852), - [anon_sym_L_DQUOTE] = ACTIONS(1855), - [anon_sym_u_DQUOTE] = ACTIONS(1855), - [anon_sym_U_DQUOTE] = ACTIONS(1855), - [anon_sym_u8_DQUOTE] = ACTIONS(1855), - [anon_sym_DQUOTE] = ACTIONS(1855), - [sym_true] = ACTIONS(1858), - [sym_false] = ACTIONS(1858), - [sym_null] = ACTIONS(1858), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1861), - [anon_sym_template] = ACTIONS(1864), - [anon_sym_try] = ACTIONS(1990), - [anon_sym_delete] = ACTIONS(1870), - [anon_sym_throw] = ACTIONS(1993), - [anon_sym_co_return] = ACTIONS(1996), - [anon_sym_co_yield] = ACTIONS(1999), - [anon_sym_R_DQUOTE] = ACTIONS(1882), - [anon_sym_LR_DQUOTE] = ACTIONS(1882), - [anon_sym_uR_DQUOTE] = ACTIONS(1882), - [anon_sym_UR_DQUOTE] = ACTIONS(1882), - [anon_sym_u8R_DQUOTE] = ACTIONS(1882), - [anon_sym_co_await] = ACTIONS(1885), - [anon_sym_new] = ACTIONS(1888), - [anon_sym_requires] = ACTIONS(1891), - [sym_this] = ACTIONS(1858), - [sym_nullptr] = ACTIONS(1858), + [sym_attribute_declaration] = STATE(260), + [sym_compound_statement] = STATE(1081), + [sym_attributed_statement] = STATE(1082), + [sym_labeled_statement] = STATE(1083), + [sym_expression_statement] = STATE(1084), + [sym_if_statement] = STATE(1087), + [sym_switch_statement] = STATE(1088), + [sym_case_statement] = STATE(1093), + [sym_while_statement] = STATE(1096), + [sym_do_statement] = STATE(1100), + [sym_for_statement] = STATE(1104), + [sym_return_statement] = STATE(1106), + [sym_break_statement] = STATE(1107), + [sym_continue_statement] = STATE(1108), + [sym_goto_statement] = STATE(1109), + [sym__expression] = STATE(4234), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7265), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(1112), + [sym_co_return_statement] = STATE(1119), + [sym_co_yield_statement] = STATE(1122), + [sym_throw_statement] = STATE(1125), + [sym_try_statement] = STATE(1129), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(260), + [sym_identifier] = ACTIONS(2101), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(1622), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACK] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(71), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_case] = ACTIONS(75), + [anon_sym_default] = ACTIONS(77), + [anon_sym_while] = ACTIONS(79), + [anon_sym_do] = ACTIONS(81), + [anon_sym_for] = ACTIONS(83), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(127), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(131), + [anon_sym_co_return] = ACTIONS(141), + [anon_sym_co_yield] = ACTIONS(143), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [162] = { - [sym_attribute_declaration] = STATE(151), - [sym_compound_statement] = STATE(622), - [sym_attributed_statement] = STATE(622), - [sym_labeled_statement] = STATE(622), - [sym_expression_statement] = STATE(622), - [sym_if_statement] = STATE(622), - [sym_switch_statement] = STATE(622), - [sym_case_statement] = STATE(622), - [sym_while_statement] = STATE(622), - [sym_do_statement] = STATE(622), - [sym_for_statement] = STATE(622), - [sym_return_statement] = STATE(622), - [sym_break_statement] = STATE(622), - [sym_continue_statement] = STATE(622), - [sym_goto_statement] = STATE(622), - [sym__expression] = STATE(3522), - [sym_comma_expression] = STATE(6276), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_for_range_loop] = STATE(622), - [sym_co_return_statement] = STATE(622), - [sym_co_yield_statement] = STATE(622), - [sym_throw_statement] = STATE(622), - [sym_try_statement] = STATE(622), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_attributed_declarator_repeat1] = STATE(151), - [sym_identifier] = ACTIONS(1761), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym_attribute_declaration] = STATE(260), + [sym_compound_statement] = STATE(1075), + [sym_attributed_statement] = STATE(1075), + [sym_labeled_statement] = STATE(1075), + [sym_expression_statement] = STATE(1075), + [sym_if_statement] = STATE(1075), + [sym_switch_statement] = STATE(1075), + [sym_case_statement] = STATE(1075), + [sym_while_statement] = STATE(1075), + [sym_do_statement] = STATE(1075), + [sym_for_statement] = STATE(1075), + [sym_return_statement] = STATE(1075), + [sym_break_statement] = STATE(1075), + [sym_continue_statement] = STATE(1075), + [sym_goto_statement] = STATE(1075), + [sym__expression] = STATE(4234), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7265), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(1075), + [sym_co_return_statement] = STATE(1075), + [sym_co_yield_statement] = STATE(1075), + [sym_throw_statement] = STATE(1075), + [sym_try_statement] = STATE(1075), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(260), + [sym_identifier] = ACTIONS(2101), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(660), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(666), - [anon_sym_LBRACK] = ACTIONS(994), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_if] = ACTIONS(670), - [anon_sym_switch] = ACTIONS(672), - [anon_sym_case] = ACTIONS(674), - [anon_sym_default] = ACTIONS(676), - [anon_sym_while] = ACTIONS(678), - [anon_sym_do] = ACTIONS(680), - [anon_sym_for] = ACTIONS(682), - [anon_sym_return] = ACTIONS(684), - [anon_sym_break] = ACTIONS(686), - [anon_sym_continue] = ACTIONS(688), - [anon_sym_goto] = ACTIONS(690), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(1622), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACK] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(71), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_case] = ACTIONS(75), + [anon_sym_default] = ACTIONS(77), + [anon_sym_while] = ACTIONS(79), + [anon_sym_do] = ACTIONS(81), + [anon_sym_for] = ACTIONS(83), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_try] = ACTIONS(694), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(696), - [anon_sym_co_return] = ACTIONS(706), - [anon_sym_co_yield] = ACTIONS(708), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(127), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(131), + [anon_sym_co_return] = ACTIONS(141), + [anon_sym_co_yield] = ACTIONS(143), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [163] = { - [sym_attribute_declaration] = STATE(206), - [sym_compound_statement] = STATE(796), - [sym_attributed_statement] = STATE(796), - [sym_labeled_statement] = STATE(796), - [sym_expression_statement] = STATE(796), - [sym_if_statement] = STATE(796), - [sym_switch_statement] = STATE(796), - [sym_case_statement] = STATE(796), - [sym_while_statement] = STATE(796), - [sym_do_statement] = STATE(796), - [sym_for_statement] = STATE(796), - [sym_return_statement] = STATE(796), - [sym_break_statement] = STATE(796), - [sym_continue_statement] = STATE(796), - [sym_goto_statement] = STATE(796), - [sym__expression] = STATE(3502), - [sym_comma_expression] = STATE(6595), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_for_range_loop] = STATE(796), - [sym_co_return_statement] = STATE(796), - [sym_co_yield_statement] = STATE(796), - [sym_throw_statement] = STATE(796), - [sym_try_statement] = STATE(796), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_attributed_declarator_repeat1] = STATE(206), - [sym_identifier] = ACTIONS(1759), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym_attribute_declaration] = STATE(309), + [sym_compound_statement] = STATE(892), + [sym_attributed_statement] = STATE(891), + [sym_labeled_statement] = STATE(890), + [sym_expression_statement] = STATE(889), + [sym_if_statement] = STATE(881), + [sym_switch_statement] = STATE(880), + [sym_case_statement] = STATE(879), + [sym_while_statement] = STATE(878), + [sym_do_statement] = STATE(877), + [sym_for_statement] = STATE(876), + [sym_return_statement] = STATE(875), + [sym_break_statement] = STATE(874), + [sym_continue_statement] = STATE(873), + [sym_goto_statement] = STATE(872), + [sym__expression] = STATE(4182), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7590), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(870), + [sym_co_return_statement] = STATE(869), + [sym_co_yield_statement] = STATE(868), + [sym_throw_statement] = STATE(867), + [sym_try_statement] = STATE(866), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(309), + [sym_identifier] = ACTIONS(2103), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_LBRACK] = ACTIONS(994), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_if] = ACTIONS(175), - [anon_sym_switch] = ACTIONS(177), - [anon_sym_case] = ACTIONS(179), - [anon_sym_default] = ACTIONS(181), - [anon_sym_while] = ACTIONS(183), - [anon_sym_do] = ACTIONS(185), - [anon_sym_for] = ACTIONS(187), - [anon_sym_return] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), - [anon_sym_goto] = ACTIONS(195), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(181), + [anon_sym_switch] = ACTIONS(183), + [anon_sym_case] = ACTIONS(185), + [anon_sym_default] = ACTIONS(187), + [anon_sym_while] = ACTIONS(189), + [anon_sym_do] = ACTIONS(191), + [anon_sym_for] = ACTIONS(193), + [anon_sym_return] = ACTIONS(195), + [anon_sym_break] = ACTIONS(197), + [anon_sym_continue] = ACTIONS(199), + [anon_sym_goto] = ACTIONS(201), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_try] = ACTIONS(201), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(203), - [anon_sym_co_return] = ACTIONS(213), - [anon_sym_co_yield] = ACTIONS(215), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(209), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(211), + [anon_sym_co_return] = ACTIONS(221), + [anon_sym_co_yield] = ACTIONS(223), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [164] = { - [sym_attribute_declaration] = STATE(151), - [sym_compound_statement] = STATE(640), - [sym_attributed_statement] = STATE(640), - [sym_labeled_statement] = STATE(640), - [sym_expression_statement] = STATE(640), - [sym_if_statement] = STATE(640), - [sym_switch_statement] = STATE(640), - [sym_case_statement] = STATE(640), - [sym_while_statement] = STATE(640), - [sym_do_statement] = STATE(640), - [sym_for_statement] = STATE(640), - [sym_return_statement] = STATE(640), - [sym_break_statement] = STATE(640), - [sym_continue_statement] = STATE(640), - [sym_goto_statement] = STATE(640), - [sym__expression] = STATE(3522), - [sym_comma_expression] = STATE(6276), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_for_range_loop] = STATE(640), - [sym_co_return_statement] = STATE(640), - [sym_co_yield_statement] = STATE(640), - [sym_throw_statement] = STATE(640), - [sym_try_statement] = STATE(640), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_attributed_declarator_repeat1] = STATE(151), - [sym_identifier] = ACTIONS(1761), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym_attribute_declaration] = STATE(179), + [sym_compound_statement] = STATE(1479), + [sym_attributed_statement] = STATE(1479), + [sym_labeled_statement] = STATE(1479), + [sym_expression_statement] = STATE(1479), + [sym_if_statement] = STATE(1479), + [sym_switch_statement] = STATE(1479), + [sym_case_statement] = STATE(1479), + [sym_while_statement] = STATE(1479), + [sym_do_statement] = STATE(1479), + [sym_for_statement] = STATE(1479), + [sym_return_statement] = STATE(1479), + [sym_break_statement] = STATE(1479), + [sym_continue_statement] = STATE(1479), + [sym_goto_statement] = STATE(1479), + [sym__expression] = STATE(4212), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7175), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(1479), + [sym_co_return_statement] = STATE(1479), + [sym_co_yield_statement] = STATE(1479), + [sym_throw_statement] = STATE(1479), + [sym_try_statement] = STATE(1479), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(179), + [sym_identifier] = ACTIONS(2109), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(660), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(666), - [anon_sym_LBRACK] = ACTIONS(994), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_if] = ACTIONS(670), - [anon_sym_switch] = ACTIONS(672), - [anon_sym_case] = ACTIONS(674), - [anon_sym_default] = ACTIONS(676), - [anon_sym_while] = ACTIONS(678), - [anon_sym_do] = ACTIONS(680), - [anon_sym_for] = ACTIONS(682), - [anon_sym_return] = ACTIONS(684), - [anon_sym_break] = ACTIONS(686), - [anon_sym_continue] = ACTIONS(688), - [anon_sym_goto] = ACTIONS(690), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(1728), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(1732), + [anon_sym_LBRACK] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(1734), + [anon_sym_switch] = ACTIONS(1736), + [anon_sym_case] = ACTIONS(2111), + [anon_sym_default] = ACTIONS(2113), + [anon_sym_while] = ACTIONS(1738), + [anon_sym_do] = ACTIONS(1740), + [anon_sym_for] = ACTIONS(1742), + [anon_sym_return] = ACTIONS(1744), + [anon_sym_break] = ACTIONS(1746), + [anon_sym_continue] = ACTIONS(1748), + [anon_sym_goto] = ACTIONS(1750), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_try] = ACTIONS(694), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(696), - [anon_sym_co_return] = ACTIONS(706), - [anon_sym_co_yield] = ACTIONS(708), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(1752), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(1754), + [anon_sym_co_return] = ACTIONS(1756), + [anon_sym_co_yield] = ACTIONS(1758), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [165] = { - [sym_attribute_declaration] = STATE(151), - [sym_compound_statement] = STATE(641), - [sym_attributed_statement] = STATE(641), - [sym_labeled_statement] = STATE(641), - [sym_expression_statement] = STATE(641), - [sym_if_statement] = STATE(641), - [sym_switch_statement] = STATE(641), - [sym_case_statement] = STATE(641), - [sym_while_statement] = STATE(641), - [sym_do_statement] = STATE(641), - [sym_for_statement] = STATE(641), - [sym_return_statement] = STATE(641), - [sym_break_statement] = STATE(641), - [sym_continue_statement] = STATE(641), - [sym_goto_statement] = STATE(641), - [sym__expression] = STATE(3522), - [sym_comma_expression] = STATE(6276), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_for_range_loop] = STATE(641), - [sym_co_return_statement] = STATE(641), - [sym_co_yield_statement] = STATE(641), - [sym_throw_statement] = STATE(641), - [sym_try_statement] = STATE(641), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_attributed_declarator_repeat1] = STATE(151), - [sym_identifier] = ACTIONS(1761), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym_attribute_declaration] = STATE(309), + [sym_compound_statement] = STATE(916), + [sym_attributed_statement] = STATE(915), + [sym_labeled_statement] = STATE(914), + [sym_expression_statement] = STATE(913), + [sym_if_statement] = STATE(910), + [sym_switch_statement] = STATE(908), + [sym_case_statement] = STATE(907), + [sym_while_statement] = STATE(906), + [sym_do_statement] = STATE(905), + [sym_for_statement] = STATE(904), + [sym_return_statement] = STATE(902), + [sym_break_statement] = STATE(901), + [sym_continue_statement] = STATE(900), + [sym_goto_statement] = STATE(899), + [sym__expression] = STATE(4182), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7590), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(897), + [sym_co_return_statement] = STATE(896), + [sym_co_yield_statement] = STATE(1161), + [sym_throw_statement] = STATE(894), + [sym_try_statement] = STATE(893), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(309), + [sym_identifier] = ACTIONS(2103), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(660), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(666), - [anon_sym_LBRACK] = ACTIONS(994), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_if] = ACTIONS(670), - [anon_sym_switch] = ACTIONS(672), - [anon_sym_case] = ACTIONS(674), - [anon_sym_default] = ACTIONS(676), - [anon_sym_while] = ACTIONS(678), - [anon_sym_do] = ACTIONS(680), - [anon_sym_for] = ACTIONS(682), - [anon_sym_return] = ACTIONS(684), - [anon_sym_break] = ACTIONS(686), - [anon_sym_continue] = ACTIONS(688), - [anon_sym_goto] = ACTIONS(690), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(181), + [anon_sym_switch] = ACTIONS(183), + [anon_sym_case] = ACTIONS(185), + [anon_sym_default] = ACTIONS(187), + [anon_sym_while] = ACTIONS(189), + [anon_sym_do] = ACTIONS(191), + [anon_sym_for] = ACTIONS(193), + [anon_sym_return] = ACTIONS(195), + [anon_sym_break] = ACTIONS(197), + [anon_sym_continue] = ACTIONS(199), + [anon_sym_goto] = ACTIONS(201), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_try] = ACTIONS(694), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(696), - [anon_sym_co_return] = ACTIONS(706), - [anon_sym_co_yield] = ACTIONS(708), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(209), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(211), + [anon_sym_co_return] = ACTIONS(221), + [anon_sym_co_yield] = ACTIONS(223), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [166] = { - [sym_attribute_declaration] = STATE(151), - [sym_compound_statement] = STATE(642), - [sym_attributed_statement] = STATE(643), - [sym_labeled_statement] = STATE(644), - [sym_expression_statement] = STATE(645), - [sym_if_statement] = STATE(646), - [sym_switch_statement] = STATE(647), - [sym_case_statement] = STATE(648), - [sym_while_statement] = STATE(649), - [sym_do_statement] = STATE(650), - [sym_for_statement] = STATE(651), - [sym_return_statement] = STATE(652), - [sym_break_statement] = STATE(653), - [sym_continue_statement] = STATE(654), - [sym_goto_statement] = STATE(655), - [sym__expression] = STATE(3522), - [sym_comma_expression] = STATE(6276), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_for_range_loop] = STATE(656), - [sym_co_return_statement] = STATE(657), - [sym_co_yield_statement] = STATE(658), - [sym_throw_statement] = STATE(659), - [sym_try_statement] = STATE(660), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_attributed_declarator_repeat1] = STATE(151), - [sym_identifier] = ACTIONS(1761), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym_attribute_declaration] = STATE(179), + [sym_compound_statement] = STATE(1579), + [sym_attributed_statement] = STATE(1579), + [sym_labeled_statement] = STATE(1579), + [sym_expression_statement] = STATE(1579), + [sym_if_statement] = STATE(1579), + [sym_switch_statement] = STATE(1579), + [sym_case_statement] = STATE(1579), + [sym_while_statement] = STATE(1579), + [sym_do_statement] = STATE(1579), + [sym_for_statement] = STATE(1579), + [sym_return_statement] = STATE(1579), + [sym_break_statement] = STATE(1579), + [sym_continue_statement] = STATE(1579), + [sym_goto_statement] = STATE(1579), + [sym__expression] = STATE(4212), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7175), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(1579), + [sym_co_return_statement] = STATE(1579), + [sym_co_yield_statement] = STATE(1579), + [sym_throw_statement] = STATE(1579), + [sym_try_statement] = STATE(1579), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(179), + [sym_identifier] = ACTIONS(2109), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(660), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(666), - [anon_sym_LBRACK] = ACTIONS(994), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_if] = ACTIONS(670), - [anon_sym_switch] = ACTIONS(672), - [anon_sym_case] = ACTIONS(674), - [anon_sym_default] = ACTIONS(676), - [anon_sym_while] = ACTIONS(678), - [anon_sym_do] = ACTIONS(680), - [anon_sym_for] = ACTIONS(682), - [anon_sym_return] = ACTIONS(684), - [anon_sym_break] = ACTIONS(686), - [anon_sym_continue] = ACTIONS(688), - [anon_sym_goto] = ACTIONS(690), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(1728), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(1732), + [anon_sym_LBRACK] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(1734), + [anon_sym_switch] = ACTIONS(1736), + [anon_sym_case] = ACTIONS(2111), + [anon_sym_default] = ACTIONS(2113), + [anon_sym_while] = ACTIONS(1738), + [anon_sym_do] = ACTIONS(1740), + [anon_sym_for] = ACTIONS(1742), + [anon_sym_return] = ACTIONS(1744), + [anon_sym_break] = ACTIONS(1746), + [anon_sym_continue] = ACTIONS(1748), + [anon_sym_goto] = ACTIONS(1750), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_try] = ACTIONS(694), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(696), - [anon_sym_co_return] = ACTIONS(706), - [anon_sym_co_yield] = ACTIONS(708), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(1752), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(1754), + [anon_sym_co_return] = ACTIONS(1756), + [anon_sym_co_yield] = ACTIONS(1758), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [167] = { - [sym_attribute_declaration] = STATE(206), - [sym_compound_statement] = STATE(911), - [sym_attributed_statement] = STATE(911), - [sym_labeled_statement] = STATE(911), - [sym_expression_statement] = STATE(911), - [sym_if_statement] = STATE(911), - [sym_switch_statement] = STATE(911), - [sym_case_statement] = STATE(911), - [sym_while_statement] = STATE(911), - [sym_do_statement] = STATE(911), - [sym_for_statement] = STATE(911), - [sym_return_statement] = STATE(911), - [sym_break_statement] = STATE(911), - [sym_continue_statement] = STATE(911), - [sym_goto_statement] = STATE(911), - [sym__expression] = STATE(3502), - [sym_comma_expression] = STATE(6595), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_for_range_loop] = STATE(911), - [sym_co_return_statement] = STATE(911), - [sym_co_yield_statement] = STATE(911), - [sym_throw_statement] = STATE(911), - [sym_try_statement] = STATE(911), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_attributed_declarator_repeat1] = STATE(206), - [sym_identifier] = ACTIONS(1759), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym_attribute_declaration] = STATE(309), + [sym_compound_statement] = STATE(918), + [sym_attributed_statement] = STATE(918), + [sym_labeled_statement] = STATE(918), + [sym_expression_statement] = STATE(918), + [sym_if_statement] = STATE(918), + [sym_switch_statement] = STATE(918), + [sym_case_statement] = STATE(918), + [sym_while_statement] = STATE(918), + [sym_do_statement] = STATE(918), + [sym_for_statement] = STATE(918), + [sym_return_statement] = STATE(918), + [sym_break_statement] = STATE(918), + [sym_continue_statement] = STATE(918), + [sym_goto_statement] = STATE(918), + [sym__expression] = STATE(4182), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7590), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(918), + [sym_co_return_statement] = STATE(918), + [sym_co_yield_statement] = STATE(918), + [sym_throw_statement] = STATE(918), + [sym_try_statement] = STATE(918), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(309), + [sym_identifier] = ACTIONS(2103), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_LBRACK] = ACTIONS(994), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_if] = ACTIONS(175), - [anon_sym_switch] = ACTIONS(177), - [anon_sym_case] = ACTIONS(179), - [anon_sym_default] = ACTIONS(181), - [anon_sym_while] = ACTIONS(183), - [anon_sym_do] = ACTIONS(185), - [anon_sym_for] = ACTIONS(187), - [anon_sym_return] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), - [anon_sym_goto] = ACTIONS(195), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(181), + [anon_sym_switch] = ACTIONS(183), + [anon_sym_case] = ACTIONS(185), + [anon_sym_default] = ACTIONS(187), + [anon_sym_while] = ACTIONS(189), + [anon_sym_do] = ACTIONS(191), + [anon_sym_for] = ACTIONS(193), + [anon_sym_return] = ACTIONS(195), + [anon_sym_break] = ACTIONS(197), + [anon_sym_continue] = ACTIONS(199), + [anon_sym_goto] = ACTIONS(201), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_try] = ACTIONS(201), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(203), - [anon_sym_co_return] = ACTIONS(213), - [anon_sym_co_yield] = ACTIONS(215), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(209), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(211), + [anon_sym_co_return] = ACTIONS(221), + [anon_sym_co_yield] = ACTIONS(223), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [168] = { - [sym_attribute_declaration] = STATE(238), - [sym_compound_statement] = STATE(6416), - [sym_attributed_statement] = STATE(6416), - [sym_labeled_statement] = STATE(6416), - [sym_expression_statement] = STATE(6416), - [sym_if_statement] = STATE(6416), - [sym_switch_statement] = STATE(6416), - [sym_case_statement] = STATE(6416), - [sym_while_statement] = STATE(6416), - [sym_do_statement] = STATE(6416), - [sym_for_statement] = STATE(6416), - [sym_return_statement] = STATE(6416), - [sym_break_statement] = STATE(6416), - [sym_continue_statement] = STATE(6416), - [sym_goto_statement] = STATE(6416), - [sym__expression] = STATE(3622), - [sym_comma_expression] = STATE(6125), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_for_range_loop] = STATE(6416), - [sym_co_return_statement] = STATE(6416), - [sym_co_yield_statement] = STATE(6416), - [sym_throw_statement] = STATE(6416), - [sym_try_statement] = STATE(6416), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_attributed_declarator_repeat1] = STATE(238), - [sym_identifier] = ACTIONS(1763), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym_attribute_declaration] = STATE(244), + [sym_compound_statement] = STATE(471), + [sym_attributed_statement] = STATE(470), + [sym_labeled_statement] = STATE(459), + [sym_expression_statement] = STATE(455), + [sym_if_statement] = STATE(454), + [sym_switch_statement] = STATE(453), + [sym_case_statement] = STATE(452), + [sym_while_statement] = STATE(451), + [sym_do_statement] = STATE(450), + [sym_for_statement] = STATE(444), + [sym_return_statement] = STATE(443), + [sym_break_statement] = STATE(441), + [sym_continue_statement] = STATE(439), + [sym_goto_statement] = STATE(438), + [sym__expression] = STATE(4160), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7618), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(434), + [sym_co_return_statement] = STATE(432), + [sym_co_yield_statement] = STATE(431), + [sym_throw_statement] = STATE(429), + [sym_try_statement] = STATE(428), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(244), + [sym_identifier] = ACTIONS(2105), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(33), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(994), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_if] = ACTIONS(1765), - [anon_sym_switch] = ACTIONS(75), - [anon_sym_case] = ACTIONS(1767), - [anon_sym_default] = ACTIONS(1769), - [anon_sym_while] = ACTIONS(1771), - [anon_sym_do] = ACTIONS(83), - [anon_sym_for] = ACTIONS(1773), - [anon_sym_return] = ACTIONS(87), - [anon_sym_break] = ACTIONS(89), - [anon_sym_continue] = ACTIONS(91), - [anon_sym_goto] = ACTIONS(93), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(245), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(251), + [anon_sym_LBRACK] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(255), + [anon_sym_switch] = ACTIONS(257), + [anon_sym_case] = ACTIONS(259), + [anon_sym_default] = ACTIONS(261), + [anon_sym_while] = ACTIONS(263), + [anon_sym_do] = ACTIONS(265), + [anon_sym_for] = ACTIONS(267), + [anon_sym_return] = ACTIONS(269), + [anon_sym_break] = ACTIONS(271), + [anon_sym_continue] = ACTIONS(273), + [anon_sym_goto] = ACTIONS(275), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_try] = ACTIONS(121), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(125), - [anon_sym_co_return] = ACTIONS(135), - [anon_sym_co_yield] = ACTIONS(137), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(279), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(281), + [anon_sym_co_return] = ACTIONS(291), + [anon_sym_co_yield] = ACTIONS(293), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [169] = { - [sym_attribute_declaration] = STATE(206), - [sym_compound_statement] = STATE(792), - [sym_attributed_statement] = STATE(792), - [sym_labeled_statement] = STATE(792), - [sym_expression_statement] = STATE(792), - [sym_if_statement] = STATE(792), - [sym_switch_statement] = STATE(792), - [sym_case_statement] = STATE(792), - [sym_while_statement] = STATE(792), - [sym_do_statement] = STATE(792), - [sym_for_statement] = STATE(792), - [sym_return_statement] = STATE(792), - [sym_break_statement] = STATE(792), - [sym_continue_statement] = STATE(792), - [sym_goto_statement] = STATE(792), - [sym__expression] = STATE(3502), - [sym_comma_expression] = STATE(6595), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_for_range_loop] = STATE(792), - [sym_co_return_statement] = STATE(792), - [sym_co_yield_statement] = STATE(792), - [sym_throw_statement] = STATE(792), - [sym_try_statement] = STATE(792), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_attributed_declarator_repeat1] = STATE(206), - [sym_identifier] = ACTIONS(1759), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym_attribute_declaration] = STATE(309), + [sym_compound_statement] = STATE(919), + [sym_attributed_statement] = STATE(919), + [sym_labeled_statement] = STATE(919), + [sym_expression_statement] = STATE(919), + [sym_if_statement] = STATE(919), + [sym_switch_statement] = STATE(919), + [sym_case_statement] = STATE(919), + [sym_while_statement] = STATE(919), + [sym_do_statement] = STATE(919), + [sym_for_statement] = STATE(919), + [sym_return_statement] = STATE(919), + [sym_break_statement] = STATE(919), + [sym_continue_statement] = STATE(919), + [sym_goto_statement] = STATE(919), + [sym__expression] = STATE(4182), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7590), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(919), + [sym_co_return_statement] = STATE(919), + [sym_co_yield_statement] = STATE(919), + [sym_throw_statement] = STATE(919), + [sym_try_statement] = STATE(919), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(309), + [sym_identifier] = ACTIONS(2103), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_LBRACK] = ACTIONS(994), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_if] = ACTIONS(175), - [anon_sym_switch] = ACTIONS(177), - [anon_sym_case] = ACTIONS(179), - [anon_sym_default] = ACTIONS(181), - [anon_sym_while] = ACTIONS(183), - [anon_sym_do] = ACTIONS(185), - [anon_sym_for] = ACTIONS(187), - [anon_sym_return] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), - [anon_sym_goto] = ACTIONS(195), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(181), + [anon_sym_switch] = ACTIONS(183), + [anon_sym_case] = ACTIONS(185), + [anon_sym_default] = ACTIONS(187), + [anon_sym_while] = ACTIONS(189), + [anon_sym_do] = ACTIONS(191), + [anon_sym_for] = ACTIONS(193), + [anon_sym_return] = ACTIONS(195), + [anon_sym_break] = ACTIONS(197), + [anon_sym_continue] = ACTIONS(199), + [anon_sym_goto] = ACTIONS(201), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_try] = ACTIONS(201), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(203), - [anon_sym_co_return] = ACTIONS(213), - [anon_sym_co_yield] = ACTIONS(215), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(209), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(211), + [anon_sym_co_return] = ACTIONS(221), + [anon_sym_co_yield] = ACTIONS(223), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [170] = { - [sym_attribute_declaration] = STATE(151), - [sym_compound_statement] = STATE(661), - [sym_attributed_statement] = STATE(662), - [sym_labeled_statement] = STATE(663), - [sym_expression_statement] = STATE(664), - [sym_if_statement] = STATE(665), - [sym_switch_statement] = STATE(666), - [sym_case_statement] = STATE(669), - [sym_while_statement] = STATE(670), - [sym_do_statement] = STATE(580), - [sym_for_statement] = STATE(672), - [sym_return_statement] = STATE(674), - [sym_break_statement] = STATE(675), - [sym_continue_statement] = STATE(676), - [sym_goto_statement] = STATE(678), - [sym__expression] = STATE(3522), - [sym_comma_expression] = STATE(6276), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_for_range_loop] = STATE(681), - [sym_co_return_statement] = STATE(683), - [sym_co_yield_statement] = STATE(684), - [sym_throw_statement] = STATE(671), - [sym_try_statement] = STATE(686), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_attributed_declarator_repeat1] = STATE(151), - [sym_identifier] = ACTIONS(1761), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym_attribute_declaration] = STATE(179), + [sym_compound_statement] = STATE(1462), + [sym_attributed_statement] = STATE(1515), + [sym_labeled_statement] = STATE(1511), + [sym_expression_statement] = STATE(1508), + [sym_if_statement] = STATE(1461), + [sym_switch_statement] = STATE(1504), + [sym_case_statement] = STATE(1501), + [sym_while_statement] = STATE(1499), + [sym_do_statement] = STATE(1498), + [sym_for_statement] = STATE(1546), + [sym_return_statement] = STATE(1495), + [sym_break_statement] = STATE(1524), + [sym_continue_statement] = STATE(1464), + [sym_goto_statement] = STATE(1465), + [sym__expression] = STATE(4212), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7175), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(1466), + [sym_co_return_statement] = STATE(1467), + [sym_co_yield_statement] = STATE(1468), + [sym_throw_statement] = STATE(1469), + [sym_try_statement] = STATE(1470), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(179), + [sym_identifier] = ACTIONS(2109), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(660), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(666), - [anon_sym_LBRACK] = ACTIONS(994), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_if] = ACTIONS(670), - [anon_sym_switch] = ACTIONS(672), - [anon_sym_case] = ACTIONS(674), - [anon_sym_default] = ACTIONS(676), - [anon_sym_while] = ACTIONS(678), - [anon_sym_do] = ACTIONS(680), - [anon_sym_for] = ACTIONS(682), - [anon_sym_return] = ACTIONS(684), - [anon_sym_break] = ACTIONS(686), - [anon_sym_continue] = ACTIONS(688), - [anon_sym_goto] = ACTIONS(690), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(1728), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(1732), + [anon_sym_LBRACK] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(1734), + [anon_sym_switch] = ACTIONS(1736), + [anon_sym_case] = ACTIONS(2111), + [anon_sym_default] = ACTIONS(2113), + [anon_sym_while] = ACTIONS(1738), + [anon_sym_do] = ACTIONS(1740), + [anon_sym_for] = ACTIONS(1742), + [anon_sym_return] = ACTIONS(1744), + [anon_sym_break] = ACTIONS(1746), + [anon_sym_continue] = ACTIONS(1748), + [anon_sym_goto] = ACTIONS(1750), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_try] = ACTIONS(694), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(696), - [anon_sym_co_return] = ACTIONS(706), - [anon_sym_co_yield] = ACTIONS(708), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(1752), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(1754), + [anon_sym_co_return] = ACTIONS(1756), + [anon_sym_co_yield] = ACTIONS(1758), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [171] = { - [sym_attribute_declaration] = STATE(149), - [sym_compound_statement] = STATE(1247), - [sym_attributed_statement] = STATE(1247), - [sym_labeled_statement] = STATE(1247), - [sym_expression_statement] = STATE(1247), - [sym_if_statement] = STATE(1247), - [sym_switch_statement] = STATE(1247), - [sym_case_statement] = STATE(1247), - [sym_while_statement] = STATE(1247), - [sym_do_statement] = STATE(1247), - [sym_for_statement] = STATE(1247), - [sym_return_statement] = STATE(1247), - [sym_break_statement] = STATE(1247), - [sym_continue_statement] = STATE(1247), - [sym_goto_statement] = STATE(1247), - [sym__expression] = STATE(3545), - [sym_comma_expression] = STATE(6215), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_for_range_loop] = STATE(1247), - [sym_co_return_statement] = STATE(1247), - [sym_co_yield_statement] = STATE(1247), - [sym_throw_statement] = STATE(1247), - [sym_try_statement] = STATE(1247), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_attributed_declarator_repeat1] = STATE(149), - [sym_identifier] = ACTIONS(1775), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym_attribute_declaration] = STATE(179), + [sym_compound_statement] = STATE(1471), + [sym_attributed_statement] = STATE(1472), + [sym_labeled_statement] = STATE(1473), + [sym_expression_statement] = STATE(1474), + [sym_if_statement] = STATE(1475), + [sym_switch_statement] = STATE(1476), + [sym_case_statement] = STATE(1477), + [sym_while_statement] = STATE(1478), + [sym_do_statement] = STATE(1480), + [sym_for_statement] = STATE(1484), + [sym_return_statement] = STATE(1485), + [sym_break_statement] = STATE(1487), + [sym_continue_statement] = STATE(1488), + [sym_goto_statement] = STATE(1483), + [sym__expression] = STATE(4212), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7175), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(1575), + [sym_co_return_statement] = STATE(1558), + [sym_co_yield_statement] = STATE(1491), + [sym_throw_statement] = STATE(1492), + [sym_try_statement] = STATE(1494), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(179), + [sym_identifier] = ACTIONS(2109), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(1328), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(1332), - [anon_sym_LBRACK] = ACTIONS(994), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_if] = ACTIONS(1334), - [anon_sym_switch] = ACTIONS(1336), - [anon_sym_case] = ACTIONS(1767), - [anon_sym_default] = ACTIONS(1769), - [anon_sym_while] = ACTIONS(1338), - [anon_sym_do] = ACTIONS(1340), - [anon_sym_for] = ACTIONS(1342), - [anon_sym_return] = ACTIONS(1344), - [anon_sym_break] = ACTIONS(1346), - [anon_sym_continue] = ACTIONS(1348), - [anon_sym_goto] = ACTIONS(1350), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(1728), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(1732), + [anon_sym_LBRACK] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(1734), + [anon_sym_switch] = ACTIONS(1736), + [anon_sym_case] = ACTIONS(2111), + [anon_sym_default] = ACTIONS(2113), + [anon_sym_while] = ACTIONS(1738), + [anon_sym_do] = ACTIONS(1740), + [anon_sym_for] = ACTIONS(1742), + [anon_sym_return] = ACTIONS(1744), + [anon_sym_break] = ACTIONS(1746), + [anon_sym_continue] = ACTIONS(1748), + [anon_sym_goto] = ACTIONS(1750), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_try] = ACTIONS(1352), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(1354), - [anon_sym_co_return] = ACTIONS(1356), - [anon_sym_co_yield] = ACTIONS(1358), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(1752), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(1754), + [anon_sym_co_return] = ACTIONS(1756), + [anon_sym_co_yield] = ACTIONS(1758), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [172] = { - [sym_attribute_declaration] = STATE(157), - [sym_compound_statement] = STATE(746), - [sym_attributed_statement] = STATE(746), - [sym_labeled_statement] = STATE(746), - [sym_expression_statement] = STATE(746), - [sym_if_statement] = STATE(746), - [sym_switch_statement] = STATE(746), - [sym_case_statement] = STATE(746), - [sym_while_statement] = STATE(746), - [sym_do_statement] = STATE(746), - [sym_for_statement] = STATE(746), - [sym_return_statement] = STATE(746), - [sym_break_statement] = STATE(746), - [sym_continue_statement] = STATE(746), - [sym_goto_statement] = STATE(746), - [sym__expression] = STATE(3622), - [sym_comma_expression] = STATE(6125), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_for_range_loop] = STATE(746), - [sym_co_return_statement] = STATE(746), - [sym_co_yield_statement] = STATE(746), - [sym_throw_statement] = STATE(746), - [sym_try_statement] = STATE(746), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_attributed_declarator_repeat1] = STATE(157), - [sym_identifier] = ACTIONS(1757), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym_attribute_declaration] = STATE(260), + [sym_compound_statement] = STATE(1074), + [sym_attributed_statement] = STATE(1074), + [sym_labeled_statement] = STATE(1074), + [sym_expression_statement] = STATE(1074), + [sym_if_statement] = STATE(1074), + [sym_switch_statement] = STATE(1074), + [sym_case_statement] = STATE(1074), + [sym_while_statement] = STATE(1074), + [sym_do_statement] = STATE(1074), + [sym_for_statement] = STATE(1074), + [sym_return_statement] = STATE(1074), + [sym_break_statement] = STATE(1074), + [sym_continue_statement] = STATE(1074), + [sym_goto_statement] = STATE(1074), + [sym__expression] = STATE(4234), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7265), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(1074), + [sym_co_return_statement] = STATE(1074), + [sym_co_yield_statement] = STATE(1074), + [sym_throw_statement] = STATE(1074), + [sym_try_statement] = STATE(1074), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(260), + [sym_identifier] = ACTIONS(2101), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(33), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(994), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_if] = ACTIONS(73), - [anon_sym_switch] = ACTIONS(75), - [anon_sym_case] = ACTIONS(77), - [anon_sym_default] = ACTIONS(79), - [anon_sym_while] = ACTIONS(81), - [anon_sym_do] = ACTIONS(83), - [anon_sym_for] = ACTIONS(85), - [anon_sym_return] = ACTIONS(87), - [anon_sym_break] = ACTIONS(89), - [anon_sym_continue] = ACTIONS(91), - [anon_sym_goto] = ACTIONS(93), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(1622), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACK] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(71), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_case] = ACTIONS(75), + [anon_sym_default] = ACTIONS(77), + [anon_sym_while] = ACTIONS(79), + [anon_sym_do] = ACTIONS(81), + [anon_sym_for] = ACTIONS(83), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_try] = ACTIONS(121), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(125), - [anon_sym_co_return] = ACTIONS(135), - [anon_sym_co_yield] = ACTIONS(137), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(127), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(131), + [anon_sym_co_return] = ACTIONS(141), + [anon_sym_co_yield] = ACTIONS(143), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [173] = { - [sym_attribute_declaration] = STATE(238), - [sym_compound_statement] = STATE(756), - [sym_attributed_statement] = STATE(757), - [sym_labeled_statement] = STATE(758), - [sym_expression_statement] = STATE(759), - [sym_if_statement] = STATE(760), - [sym_switch_statement] = STATE(761), - [sym_case_statement] = STATE(762), - [sym_while_statement] = STATE(764), - [sym_do_statement] = STATE(765), - [sym_for_statement] = STATE(766), - [sym_return_statement] = STATE(767), - [sym_break_statement] = STATE(768), - [sym_continue_statement] = STATE(771), - [sym_goto_statement] = STATE(772), - [sym__expression] = STATE(3622), - [sym_comma_expression] = STATE(6125), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_for_range_loop] = STATE(773), - [sym_co_return_statement] = STATE(774), - [sym_co_yield_statement] = STATE(775), - [sym_throw_statement] = STATE(776), - [sym_try_statement] = STATE(777), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_attributed_declarator_repeat1] = STATE(238), - [sym_identifier] = ACTIONS(1763), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym_attribute_declaration] = STATE(179), + [sym_compound_statement] = STATE(1572), + [sym_attributed_statement] = STATE(1572), + [sym_labeled_statement] = STATE(1572), + [sym_expression_statement] = STATE(1572), + [sym_if_statement] = STATE(1572), + [sym_switch_statement] = STATE(1572), + [sym_case_statement] = STATE(1572), + [sym_while_statement] = STATE(1572), + [sym_do_statement] = STATE(1572), + [sym_for_statement] = STATE(1572), + [sym_return_statement] = STATE(1572), + [sym_break_statement] = STATE(1572), + [sym_continue_statement] = STATE(1572), + [sym_goto_statement] = STATE(1572), + [sym__expression] = STATE(4212), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7175), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(1572), + [sym_co_return_statement] = STATE(1572), + [sym_co_yield_statement] = STATE(1572), + [sym_throw_statement] = STATE(1572), + [sym_try_statement] = STATE(1572), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(179), + [sym_identifier] = ACTIONS(2109), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(33), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(994), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_if] = ACTIONS(1765), - [anon_sym_switch] = ACTIONS(75), - [anon_sym_case] = ACTIONS(1767), - [anon_sym_default] = ACTIONS(1769), - [anon_sym_while] = ACTIONS(1771), - [anon_sym_do] = ACTIONS(83), - [anon_sym_for] = ACTIONS(1773), - [anon_sym_return] = ACTIONS(87), - [anon_sym_break] = ACTIONS(89), - [anon_sym_continue] = ACTIONS(91), - [anon_sym_goto] = ACTIONS(93), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(1728), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(1732), + [anon_sym_LBRACK] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(1734), + [anon_sym_switch] = ACTIONS(1736), + [anon_sym_case] = ACTIONS(2111), + [anon_sym_default] = ACTIONS(2113), + [anon_sym_while] = ACTIONS(1738), + [anon_sym_do] = ACTIONS(1740), + [anon_sym_for] = ACTIONS(1742), + [anon_sym_return] = ACTIONS(1744), + [anon_sym_break] = ACTIONS(1746), + [anon_sym_continue] = ACTIONS(1748), + [anon_sym_goto] = ACTIONS(1750), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_try] = ACTIONS(121), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(125), - [anon_sym_co_return] = ACTIONS(135), - [anon_sym_co_yield] = ACTIONS(137), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(1752), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(1754), + [anon_sym_co_return] = ACTIONS(1756), + [anon_sym_co_yield] = ACTIONS(1758), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [174] = { - [sym_attribute_declaration] = STATE(238), - [sym_compound_statement] = STATE(707), - [sym_attributed_statement] = STATE(708), - [sym_labeled_statement] = STATE(716), - [sym_expression_statement] = STATE(720), - [sym_if_statement] = STATE(729), - [sym_switch_statement] = STATE(730), - [sym_case_statement] = STATE(740), - [sym_while_statement] = STATE(741), - [sym_do_statement] = STATE(742), - [sym_for_statement] = STATE(743), - [sym_return_statement] = STATE(744), - [sym_break_statement] = STATE(745), - [sym_continue_statement] = STATE(747), - [sym_goto_statement] = STATE(748), - [sym__expression] = STATE(3622), - [sym_comma_expression] = STATE(6125), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_for_range_loop] = STATE(749), - [sym_co_return_statement] = STATE(750), - [sym_co_yield_statement] = STATE(751), - [sym_throw_statement] = STATE(754), - [sym_try_statement] = STATE(755), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_attributed_declarator_repeat1] = STATE(238), - [sym_identifier] = ACTIONS(1763), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym_attribute_declaration] = STATE(230), + [sym_compound_statement] = STATE(992), + [sym_attributed_statement] = STATE(977), + [sym_labeled_statement] = STATE(969), + [sym_expression_statement] = STATE(966), + [sym_if_statement] = STATE(964), + [sym_switch_statement] = STATE(960), + [sym_case_statement] = STATE(957), + [sym_while_statement] = STATE(952), + [sym_do_statement] = STATE(951), + [sym_for_statement] = STATE(948), + [sym_return_statement] = STATE(946), + [sym_break_statement] = STATE(939), + [sym_continue_statement] = STATE(937), + [sym_goto_statement] = STATE(934), + [sym__expression] = STATE(4182), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7590), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(933), + [sym_co_return_statement] = STATE(911), + [sym_co_yield_statement] = STATE(909), + [sym_throw_statement] = STATE(903), + [sym_try_statement] = STATE(898), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(230), + [sym_identifier] = ACTIONS(2115), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(33), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(994), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_if] = ACTIONS(1765), - [anon_sym_switch] = ACTIONS(75), - [anon_sym_case] = ACTIONS(1767), - [anon_sym_default] = ACTIONS(1769), - [anon_sym_while] = ACTIONS(1771), - [anon_sym_do] = ACTIONS(83), - [anon_sym_for] = ACTIONS(1773), - [anon_sym_return] = ACTIONS(87), - [anon_sym_break] = ACTIONS(89), - [anon_sym_continue] = ACTIONS(91), - [anon_sym_goto] = ACTIONS(93), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACK] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(2117), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_case] = ACTIONS(2111), + [anon_sym_default] = ACTIONS(2113), + [anon_sym_while] = ACTIONS(2119), + [anon_sym_do] = ACTIONS(81), + [anon_sym_for] = ACTIONS(2121), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_try] = ACTIONS(121), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(125), - [anon_sym_co_return] = ACTIONS(135), - [anon_sym_co_yield] = ACTIONS(137), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(127), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(131), + [anon_sym_co_return] = ACTIONS(141), + [anon_sym_co_yield] = ACTIONS(143), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [175] = { - [sym_attribute_declaration] = STATE(238), - [sym_compound_statement] = STATE(698), - [sym_attributed_statement] = STATE(698), - [sym_labeled_statement] = STATE(698), - [sym_expression_statement] = STATE(698), - [sym_if_statement] = STATE(698), - [sym_switch_statement] = STATE(698), - [sym_case_statement] = STATE(698), - [sym_while_statement] = STATE(698), - [sym_do_statement] = STATE(698), - [sym_for_statement] = STATE(698), - [sym_return_statement] = STATE(698), - [sym_break_statement] = STATE(698), - [sym_continue_statement] = STATE(698), - [sym_goto_statement] = STATE(698), - [sym__expression] = STATE(3622), - [sym_comma_expression] = STATE(6125), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_for_range_loop] = STATE(698), - [sym_co_return_statement] = STATE(698), - [sym_co_yield_statement] = STATE(698), - [sym_throw_statement] = STATE(698), - [sym_try_statement] = STATE(698), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_attributed_declarator_repeat1] = STATE(238), - [sym_identifier] = ACTIONS(1763), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym_attribute_declaration] = STATE(309), + [sym_compound_statement] = STATE(929), + [sym_attributed_statement] = STATE(929), + [sym_labeled_statement] = STATE(929), + [sym_expression_statement] = STATE(929), + [sym_if_statement] = STATE(929), + [sym_switch_statement] = STATE(929), + [sym_case_statement] = STATE(929), + [sym_while_statement] = STATE(929), + [sym_do_statement] = STATE(929), + [sym_for_statement] = STATE(929), + [sym_return_statement] = STATE(929), + [sym_break_statement] = STATE(929), + [sym_continue_statement] = STATE(929), + [sym_goto_statement] = STATE(929), + [sym__expression] = STATE(4182), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7590), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(929), + [sym_co_return_statement] = STATE(929), + [sym_co_yield_statement] = STATE(929), + [sym_throw_statement] = STATE(929), + [sym_try_statement] = STATE(929), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(309), + [sym_identifier] = ACTIONS(2103), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(33), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(994), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_if] = ACTIONS(1765), - [anon_sym_switch] = ACTIONS(75), - [anon_sym_case] = ACTIONS(1767), - [anon_sym_default] = ACTIONS(1769), - [anon_sym_while] = ACTIONS(1771), - [anon_sym_do] = ACTIONS(83), - [anon_sym_for] = ACTIONS(1773), - [anon_sym_return] = ACTIONS(87), - [anon_sym_break] = ACTIONS(89), - [anon_sym_continue] = ACTIONS(91), - [anon_sym_goto] = ACTIONS(93), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(181), + [anon_sym_switch] = ACTIONS(183), + [anon_sym_case] = ACTIONS(185), + [anon_sym_default] = ACTIONS(187), + [anon_sym_while] = ACTIONS(189), + [anon_sym_do] = ACTIONS(191), + [anon_sym_for] = ACTIONS(193), + [anon_sym_return] = ACTIONS(195), + [anon_sym_break] = ACTIONS(197), + [anon_sym_continue] = ACTIONS(199), + [anon_sym_goto] = ACTIONS(201), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_try] = ACTIONS(121), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(125), - [anon_sym_co_return] = ACTIONS(135), - [anon_sym_co_yield] = ACTIONS(137), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(209), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(211), + [anon_sym_co_return] = ACTIONS(221), + [anon_sym_co_yield] = ACTIONS(223), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [176] = { - [sym_attribute_declaration] = STATE(238), - [sym_compound_statement] = STATE(697), - [sym_attributed_statement] = STATE(697), - [sym_labeled_statement] = STATE(697), - [sym_expression_statement] = STATE(697), - [sym_if_statement] = STATE(697), - [sym_switch_statement] = STATE(697), - [sym_case_statement] = STATE(697), - [sym_while_statement] = STATE(697), - [sym_do_statement] = STATE(697), - [sym_for_statement] = STATE(697), - [sym_return_statement] = STATE(697), - [sym_break_statement] = STATE(697), - [sym_continue_statement] = STATE(697), - [sym_goto_statement] = STATE(697), - [sym__expression] = STATE(3622), - [sym_comma_expression] = STATE(6125), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_for_range_loop] = STATE(697), - [sym_co_return_statement] = STATE(697), - [sym_co_yield_statement] = STATE(697), - [sym_throw_statement] = STATE(697), - [sym_try_statement] = STATE(697), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_attributed_declarator_repeat1] = STATE(238), - [sym_identifier] = ACTIONS(1763), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym_attribute_declaration] = STATE(309), + [sym_compound_statement] = STATE(936), + [sym_attributed_statement] = STATE(936), + [sym_labeled_statement] = STATE(936), + [sym_expression_statement] = STATE(936), + [sym_if_statement] = STATE(936), + [sym_switch_statement] = STATE(936), + [sym_case_statement] = STATE(936), + [sym_while_statement] = STATE(936), + [sym_do_statement] = STATE(936), + [sym_for_statement] = STATE(936), + [sym_return_statement] = STATE(936), + [sym_break_statement] = STATE(936), + [sym_continue_statement] = STATE(936), + [sym_goto_statement] = STATE(936), + [sym__expression] = STATE(4182), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7590), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(936), + [sym_co_return_statement] = STATE(936), + [sym_co_yield_statement] = STATE(936), + [sym_throw_statement] = STATE(936), + [sym_try_statement] = STATE(936), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(309), + [sym_identifier] = ACTIONS(2103), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(33), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(994), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_if] = ACTIONS(1765), - [anon_sym_switch] = ACTIONS(75), - [anon_sym_case] = ACTIONS(1767), - [anon_sym_default] = ACTIONS(1769), - [anon_sym_while] = ACTIONS(1771), - [anon_sym_do] = ACTIONS(83), - [anon_sym_for] = ACTIONS(1773), - [anon_sym_return] = ACTIONS(87), - [anon_sym_break] = ACTIONS(89), - [anon_sym_continue] = ACTIONS(91), - [anon_sym_goto] = ACTIONS(93), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(181), + [anon_sym_switch] = ACTIONS(183), + [anon_sym_case] = ACTIONS(185), + [anon_sym_default] = ACTIONS(187), + [anon_sym_while] = ACTIONS(189), + [anon_sym_do] = ACTIONS(191), + [anon_sym_for] = ACTIONS(193), + [anon_sym_return] = ACTIONS(195), + [anon_sym_break] = ACTIONS(197), + [anon_sym_continue] = ACTIONS(199), + [anon_sym_goto] = ACTIONS(201), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_try] = ACTIONS(121), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(125), - [anon_sym_co_return] = ACTIONS(135), - [anon_sym_co_yield] = ACTIONS(137), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(209), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(211), + [anon_sym_co_return] = ACTIONS(221), + [anon_sym_co_yield] = ACTIONS(223), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [177] = { - [sym_attribute_declaration] = STATE(151), - [sym_compound_statement] = STATE(583), - [sym_attributed_statement] = STATE(583), - [sym_labeled_statement] = STATE(583), - [sym_expression_statement] = STATE(583), - [sym_if_statement] = STATE(583), - [sym_switch_statement] = STATE(583), - [sym_case_statement] = STATE(583), - [sym_while_statement] = STATE(583), - [sym_do_statement] = STATE(583), - [sym_for_statement] = STATE(583), - [sym_return_statement] = STATE(583), - [sym_break_statement] = STATE(583), - [sym_continue_statement] = STATE(583), - [sym_goto_statement] = STATE(583), - [sym__expression] = STATE(3522), - [sym_comma_expression] = STATE(6276), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_for_range_loop] = STATE(583), - [sym_co_return_statement] = STATE(583), - [sym_co_yield_statement] = STATE(583), - [sym_throw_statement] = STATE(583), - [sym_try_statement] = STATE(583), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_attributed_declarator_repeat1] = STATE(151), - [sym_identifier] = ACTIONS(1761), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym_attribute_declaration] = STATE(309), + [sym_compound_statement] = STATE(853), + [sym_attributed_statement] = STATE(853), + [sym_labeled_statement] = STATE(853), + [sym_expression_statement] = STATE(853), + [sym_if_statement] = STATE(853), + [sym_switch_statement] = STATE(853), + [sym_case_statement] = STATE(853), + [sym_while_statement] = STATE(853), + [sym_do_statement] = STATE(853), + [sym_for_statement] = STATE(853), + [sym_return_statement] = STATE(853), + [sym_break_statement] = STATE(853), + [sym_continue_statement] = STATE(853), + [sym_goto_statement] = STATE(853), + [sym__expression] = STATE(4182), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7590), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(853), + [sym_co_return_statement] = STATE(853), + [sym_co_yield_statement] = STATE(853), + [sym_throw_statement] = STATE(853), + [sym_try_statement] = STATE(853), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(309), + [sym_identifier] = ACTIONS(2103), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(660), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(666), - [anon_sym_LBRACK] = ACTIONS(994), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_if] = ACTIONS(670), - [anon_sym_switch] = ACTIONS(672), - [anon_sym_case] = ACTIONS(674), - [anon_sym_default] = ACTIONS(676), - [anon_sym_while] = ACTIONS(678), - [anon_sym_do] = ACTIONS(680), - [anon_sym_for] = ACTIONS(682), - [anon_sym_return] = ACTIONS(684), - [anon_sym_break] = ACTIONS(686), - [anon_sym_continue] = ACTIONS(688), - [anon_sym_goto] = ACTIONS(690), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(181), + [anon_sym_switch] = ACTIONS(183), + [anon_sym_case] = ACTIONS(185), + [anon_sym_default] = ACTIONS(187), + [anon_sym_while] = ACTIONS(189), + [anon_sym_do] = ACTIONS(191), + [anon_sym_for] = ACTIONS(193), + [anon_sym_return] = ACTIONS(195), + [anon_sym_break] = ACTIONS(197), + [anon_sym_continue] = ACTIONS(199), + [anon_sym_goto] = ACTIONS(201), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_try] = ACTIONS(694), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(696), - [anon_sym_co_return] = ACTIONS(706), - [anon_sym_co_yield] = ACTIONS(708), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(209), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(211), + [anon_sym_co_return] = ACTIONS(221), + [anon_sym_co_yield] = ACTIONS(223), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [178] = { - [sym_attribute_declaration] = STATE(238), - [sym_compound_statement] = STATE(692), - [sym_attributed_statement] = STATE(692), - [sym_labeled_statement] = STATE(692), - [sym_expression_statement] = STATE(692), - [sym_if_statement] = STATE(692), - [sym_switch_statement] = STATE(692), - [sym_case_statement] = STATE(692), - [sym_while_statement] = STATE(692), - [sym_do_statement] = STATE(692), - [sym_for_statement] = STATE(692), - [sym_return_statement] = STATE(692), - [sym_break_statement] = STATE(692), - [sym_continue_statement] = STATE(692), - [sym_goto_statement] = STATE(692), - [sym__expression] = STATE(3622), - [sym_comma_expression] = STATE(6125), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_for_range_loop] = STATE(692), - [sym_co_return_statement] = STATE(692), - [sym_co_yield_statement] = STATE(692), - [sym_throw_statement] = STATE(692), - [sym_try_statement] = STATE(692), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_attributed_declarator_repeat1] = STATE(238), - [sym_identifier] = ACTIONS(1763), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym_attribute_declaration] = STATE(309), + [sym_compound_statement] = STATE(938), + [sym_attributed_statement] = STATE(938), + [sym_labeled_statement] = STATE(938), + [sym_expression_statement] = STATE(938), + [sym_if_statement] = STATE(938), + [sym_switch_statement] = STATE(938), + [sym_case_statement] = STATE(938), + [sym_while_statement] = STATE(938), + [sym_do_statement] = STATE(938), + [sym_for_statement] = STATE(938), + [sym_return_statement] = STATE(938), + [sym_break_statement] = STATE(938), + [sym_continue_statement] = STATE(938), + [sym_goto_statement] = STATE(938), + [sym__expression] = STATE(4182), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7590), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(938), + [sym_co_return_statement] = STATE(938), + [sym_co_yield_statement] = STATE(938), + [sym_throw_statement] = STATE(938), + [sym_try_statement] = STATE(938), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(309), + [sym_identifier] = ACTIONS(2103), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(33), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(994), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_if] = ACTIONS(1765), - [anon_sym_switch] = ACTIONS(75), - [anon_sym_case] = ACTIONS(1767), - [anon_sym_default] = ACTIONS(1769), - [anon_sym_while] = ACTIONS(1771), - [anon_sym_do] = ACTIONS(83), - [anon_sym_for] = ACTIONS(1773), - [anon_sym_return] = ACTIONS(87), - [anon_sym_break] = ACTIONS(89), - [anon_sym_continue] = ACTIONS(91), - [anon_sym_goto] = ACTIONS(93), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(181), + [anon_sym_switch] = ACTIONS(183), + [anon_sym_case] = ACTIONS(185), + [anon_sym_default] = ACTIONS(187), + [anon_sym_while] = ACTIONS(189), + [anon_sym_do] = ACTIONS(191), + [anon_sym_for] = ACTIONS(193), + [anon_sym_return] = ACTIONS(195), + [anon_sym_break] = ACTIONS(197), + [anon_sym_continue] = ACTIONS(199), + [anon_sym_goto] = ACTIONS(201), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_try] = ACTIONS(121), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(125), - [anon_sym_co_return] = ACTIONS(135), - [anon_sym_co_yield] = ACTIONS(137), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(209), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(211), + [anon_sym_co_return] = ACTIONS(221), + [anon_sym_co_yield] = ACTIONS(223), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [179] = { - [sym_attribute_declaration] = STATE(238), - [sym_compound_statement] = STATE(617), - [sym_attributed_statement] = STATE(618), - [sym_labeled_statement] = STATE(619), - [sym_expression_statement] = STATE(620), - [sym_if_statement] = STATE(621), - [sym_switch_statement] = STATE(624), - [sym_case_statement] = STATE(625), - [sym_while_statement] = STATE(626), - [sym_do_statement] = STATE(627), - [sym_for_statement] = STATE(628), - [sym_return_statement] = STATE(632), - [sym_break_statement] = STATE(637), - [sym_continue_statement] = STATE(638), - [sym_goto_statement] = STATE(667), - [sym__expression] = STATE(3622), - [sym_comma_expression] = STATE(6125), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_for_range_loop] = STATE(673), - [sym_co_return_statement] = STATE(677), - [sym_co_yield_statement] = STATE(679), - [sym_throw_statement] = STATE(682), - [sym_try_statement] = STATE(688), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_attributed_declarator_repeat1] = STATE(238), - [sym_identifier] = ACTIONS(1763), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym_attribute_declaration] = STATE(247), + [sym_compound_statement] = STATE(1512), + [sym_attributed_statement] = STATE(1512), + [sym_labeled_statement] = STATE(1512), + [sym_expression_statement] = STATE(1512), + [sym_if_statement] = STATE(1512), + [sym_switch_statement] = STATE(1512), + [sym_case_statement] = STATE(1512), + [sym_while_statement] = STATE(1512), + [sym_do_statement] = STATE(1512), + [sym_for_statement] = STATE(1512), + [sym_return_statement] = STATE(1512), + [sym_break_statement] = STATE(1512), + [sym_continue_statement] = STATE(1512), + [sym_goto_statement] = STATE(1512), + [sym__expression] = STATE(4212), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7175), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(1512), + [sym_co_return_statement] = STATE(1512), + [sym_co_yield_statement] = STATE(1512), + [sym_throw_statement] = STATE(1512), + [sym_try_statement] = STATE(1512), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(247), + [sym_identifier] = ACTIONS(2109), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(33), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(994), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_if] = ACTIONS(1765), - [anon_sym_switch] = ACTIONS(75), - [anon_sym_case] = ACTIONS(1767), - [anon_sym_default] = ACTIONS(1769), - [anon_sym_while] = ACTIONS(1771), - [anon_sym_do] = ACTIONS(83), - [anon_sym_for] = ACTIONS(1773), - [anon_sym_return] = ACTIONS(87), - [anon_sym_break] = ACTIONS(89), - [anon_sym_continue] = ACTIONS(91), - [anon_sym_goto] = ACTIONS(93), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(1728), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(1732), + [anon_sym_LBRACK] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(1734), + [anon_sym_switch] = ACTIONS(1736), + [anon_sym_case] = ACTIONS(2111), + [anon_sym_default] = ACTIONS(2113), + [anon_sym_while] = ACTIONS(1738), + [anon_sym_do] = ACTIONS(1740), + [anon_sym_for] = ACTIONS(1742), + [anon_sym_return] = ACTIONS(1744), + [anon_sym_break] = ACTIONS(1746), + [anon_sym_continue] = ACTIONS(1748), + [anon_sym_goto] = ACTIONS(1750), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_try] = ACTIONS(121), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(125), - [anon_sym_co_return] = ACTIONS(135), - [anon_sym_co_yield] = ACTIONS(137), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(1752), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(1754), + [anon_sym_co_return] = ACTIONS(1756), + [anon_sym_co_yield] = ACTIONS(1758), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [180] = { - [sym_attribute_declaration] = STATE(238), - [sym_compound_statement] = STATE(585), - [sym_attributed_statement] = STATE(586), - [sym_labeled_statement] = STATE(593), - [sym_expression_statement] = STATE(595), - [sym_if_statement] = STATE(597), - [sym_switch_statement] = STATE(598), - [sym_case_statement] = STATE(599), - [sym_while_statement] = STATE(603), - [sym_do_statement] = STATE(604), - [sym_for_statement] = STATE(605), - [sym_return_statement] = STATE(606), - [sym_break_statement] = STATE(608), - [sym_continue_statement] = STATE(609), - [sym_goto_statement] = STATE(610), - [sym__expression] = STATE(3622), - [sym_comma_expression] = STATE(6125), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_for_range_loop] = STATE(611), - [sym_co_return_statement] = STATE(612), - [sym_co_yield_statement] = STATE(614), - [sym_throw_statement] = STATE(615), - [sym_try_statement] = STATE(616), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_attributed_declarator_repeat1] = STATE(238), - [sym_identifier] = ACTIONS(1763), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym_attribute_declaration] = STATE(309), + [sym_compound_statement] = STATE(940), + [sym_attributed_statement] = STATE(940), + [sym_labeled_statement] = STATE(940), + [sym_expression_statement] = STATE(940), + [sym_if_statement] = STATE(940), + [sym_switch_statement] = STATE(940), + [sym_case_statement] = STATE(940), + [sym_while_statement] = STATE(940), + [sym_do_statement] = STATE(940), + [sym_for_statement] = STATE(940), + [sym_return_statement] = STATE(940), + [sym_break_statement] = STATE(940), + [sym_continue_statement] = STATE(940), + [sym_goto_statement] = STATE(940), + [sym__expression] = STATE(4182), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7590), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(940), + [sym_co_return_statement] = STATE(940), + [sym_co_yield_statement] = STATE(940), + [sym_throw_statement] = STATE(940), + [sym_try_statement] = STATE(940), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(309), + [sym_identifier] = ACTIONS(2103), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(33), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(994), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_if] = ACTIONS(1765), - [anon_sym_switch] = ACTIONS(75), - [anon_sym_case] = ACTIONS(1767), - [anon_sym_default] = ACTIONS(1769), - [anon_sym_while] = ACTIONS(1771), - [anon_sym_do] = ACTIONS(83), - [anon_sym_for] = ACTIONS(1773), - [anon_sym_return] = ACTIONS(87), - [anon_sym_break] = ACTIONS(89), - [anon_sym_continue] = ACTIONS(91), - [anon_sym_goto] = ACTIONS(93), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(181), + [anon_sym_switch] = ACTIONS(183), + [anon_sym_case] = ACTIONS(185), + [anon_sym_default] = ACTIONS(187), + [anon_sym_while] = ACTIONS(189), + [anon_sym_do] = ACTIONS(191), + [anon_sym_for] = ACTIONS(193), + [anon_sym_return] = ACTIONS(195), + [anon_sym_break] = ACTIONS(197), + [anon_sym_continue] = ACTIONS(199), + [anon_sym_goto] = ACTIONS(201), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_try] = ACTIONS(121), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(125), - [anon_sym_co_return] = ACTIONS(135), - [anon_sym_co_yield] = ACTIONS(137), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(209), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(211), + [anon_sym_co_return] = ACTIONS(221), + [anon_sym_co_yield] = ACTIONS(223), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [181] = { - [sym_attribute_declaration] = STATE(238), - [sym_compound_statement] = STATE(582), - [sym_attributed_statement] = STATE(582), - [sym_labeled_statement] = STATE(582), - [sym_expression_statement] = STATE(582), - [sym_if_statement] = STATE(582), - [sym_switch_statement] = STATE(582), - [sym_case_statement] = STATE(582), - [sym_while_statement] = STATE(582), - [sym_do_statement] = STATE(582), - [sym_for_statement] = STATE(582), - [sym_return_statement] = STATE(582), - [sym_break_statement] = STATE(582), - [sym_continue_statement] = STATE(582), - [sym_goto_statement] = STATE(582), - [sym__expression] = STATE(3622), - [sym_comma_expression] = STATE(6125), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_for_range_loop] = STATE(582), - [sym_co_return_statement] = STATE(582), - [sym_co_yield_statement] = STATE(582), - [sym_throw_statement] = STATE(582), - [sym_try_statement] = STATE(582), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_attributed_declarator_repeat1] = STATE(238), - [sym_identifier] = ACTIONS(1763), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym_attribute_declaration] = STATE(244), + [sym_compound_statement] = STATE(421), + [sym_attributed_statement] = STATE(424), + [sym_labeled_statement] = STATE(433), + [sym_expression_statement] = STATE(435), + [sym_if_statement] = STATE(436), + [sym_switch_statement] = STATE(437), + [sym_case_statement] = STATE(440), + [sym_while_statement] = STATE(445), + [sym_do_statement] = STATE(446), + [sym_for_statement] = STATE(447), + [sym_return_statement] = STATE(448), + [sym_break_statement] = STATE(449), + [sym_continue_statement] = STATE(456), + [sym_goto_statement] = STATE(457), + [sym__expression] = STATE(4160), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7618), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(458), + [sym_co_return_statement] = STATE(460), + [sym_co_yield_statement] = STATE(461), + [sym_throw_statement] = STATE(462), + [sym_try_statement] = STATE(463), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(244), + [sym_identifier] = ACTIONS(2105), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(33), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(994), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_if] = ACTIONS(1765), - [anon_sym_switch] = ACTIONS(75), - [anon_sym_case] = ACTIONS(1767), - [anon_sym_default] = ACTIONS(1769), - [anon_sym_while] = ACTIONS(1771), - [anon_sym_do] = ACTIONS(83), - [anon_sym_for] = ACTIONS(1773), - [anon_sym_return] = ACTIONS(87), - [anon_sym_break] = ACTIONS(89), - [anon_sym_continue] = ACTIONS(91), - [anon_sym_goto] = ACTIONS(93), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(245), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(251), + [anon_sym_LBRACK] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(255), + [anon_sym_switch] = ACTIONS(257), + [anon_sym_case] = ACTIONS(259), + [anon_sym_default] = ACTIONS(261), + [anon_sym_while] = ACTIONS(263), + [anon_sym_do] = ACTIONS(265), + [anon_sym_for] = ACTIONS(267), + [anon_sym_return] = ACTIONS(269), + [anon_sym_break] = ACTIONS(271), + [anon_sym_continue] = ACTIONS(273), + [anon_sym_goto] = ACTIONS(275), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_try] = ACTIONS(121), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(125), - [anon_sym_co_return] = ACTIONS(135), - [anon_sym_co_yield] = ACTIONS(137), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(279), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(281), + [anon_sym_co_return] = ACTIONS(291), + [anon_sym_co_yield] = ACTIONS(293), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [182] = { - [sym_attribute_declaration] = STATE(238), - [sym_compound_statement] = STATE(581), - [sym_attributed_statement] = STATE(581), - [sym_labeled_statement] = STATE(581), - [sym_expression_statement] = STATE(581), - [sym_if_statement] = STATE(581), - [sym_switch_statement] = STATE(581), - [sym_case_statement] = STATE(581), - [sym_while_statement] = STATE(581), - [sym_do_statement] = STATE(581), - [sym_for_statement] = STATE(581), - [sym_return_statement] = STATE(581), - [sym_break_statement] = STATE(581), - [sym_continue_statement] = STATE(581), - [sym_goto_statement] = STATE(581), - [sym__expression] = STATE(3622), - [sym_comma_expression] = STATE(6125), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_for_range_loop] = STATE(581), - [sym_co_return_statement] = STATE(581), - [sym_co_yield_statement] = STATE(581), - [sym_throw_statement] = STATE(581), - [sym_try_statement] = STATE(581), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_attributed_declarator_repeat1] = STATE(238), - [sym_identifier] = ACTIONS(1763), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym_attribute_declaration] = STATE(230), + [sym_compound_statement] = STATE(1071), + [sym_attributed_statement] = STATE(1063), + [sym_labeled_statement] = STATE(1060), + [sym_expression_statement] = STATE(1059), + [sym_if_statement] = STATE(1058), + [sym_switch_statement] = STATE(1057), + [sym_case_statement] = STATE(1055), + [sym_while_statement] = STATE(1051), + [sym_do_statement] = STATE(1047), + [sym_for_statement] = STATE(1043), + [sym_return_statement] = STATE(1034), + [sym_break_statement] = STATE(1033), + [sym_continue_statement] = STATE(1019), + [sym_goto_statement] = STATE(1016), + [sym__expression] = STATE(4182), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7590), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(1015), + [sym_co_return_statement] = STATE(1013), + [sym_co_yield_statement] = STATE(1012), + [sym_throw_statement] = STATE(1008), + [sym_try_statement] = STATE(993), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(230), + [sym_identifier] = ACTIONS(2115), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(33), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(994), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_if] = ACTIONS(1765), - [anon_sym_switch] = ACTIONS(75), - [anon_sym_case] = ACTIONS(1767), - [anon_sym_default] = ACTIONS(1769), - [anon_sym_while] = ACTIONS(1771), - [anon_sym_do] = ACTIONS(83), - [anon_sym_for] = ACTIONS(1773), - [anon_sym_return] = ACTIONS(87), - [anon_sym_break] = ACTIONS(89), - [anon_sym_continue] = ACTIONS(91), - [anon_sym_goto] = ACTIONS(93), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACK] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(2117), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_case] = ACTIONS(2111), + [anon_sym_default] = ACTIONS(2113), + [anon_sym_while] = ACTIONS(2119), + [anon_sym_do] = ACTIONS(81), + [anon_sym_for] = ACTIONS(2121), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_try] = ACTIONS(121), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(125), - [anon_sym_co_return] = ACTIONS(135), - [anon_sym_co_yield] = ACTIONS(137), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(127), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(131), + [anon_sym_co_return] = ACTIONS(141), + [anon_sym_co_yield] = ACTIONS(143), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [183] = { - [sym_attribute_declaration] = STATE(238), - [sym_compound_statement] = STATE(577), - [sym_attributed_statement] = STATE(577), - [sym_labeled_statement] = STATE(577), - [sym_expression_statement] = STATE(577), - [sym_if_statement] = STATE(577), - [sym_switch_statement] = STATE(577), - [sym_case_statement] = STATE(577), - [sym_while_statement] = STATE(577), - [sym_do_statement] = STATE(577), - [sym_for_statement] = STATE(577), - [sym_return_statement] = STATE(577), - [sym_break_statement] = STATE(577), - [sym_continue_statement] = STATE(577), - [sym_goto_statement] = STATE(577), - [sym__expression] = STATE(3622), - [sym_comma_expression] = STATE(6125), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_for_range_loop] = STATE(577), - [sym_co_return_statement] = STATE(577), - [sym_co_yield_statement] = STATE(577), - [sym_throw_statement] = STATE(577), - [sym_try_statement] = STATE(577), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_attributed_declarator_repeat1] = STATE(238), - [sym_identifier] = ACTIONS(1763), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym_attribute_declaration] = STATE(189), + [sym_compound_statement] = STATE(961), + [sym_attributed_statement] = STATE(961), + [sym_labeled_statement] = STATE(961), + [sym_expression_statement] = STATE(961), + [sym_if_statement] = STATE(961), + [sym_switch_statement] = STATE(961), + [sym_case_statement] = STATE(961), + [sym_while_statement] = STATE(961), + [sym_do_statement] = STATE(961), + [sym_for_statement] = STATE(961), + [sym_return_statement] = STATE(961), + [sym_break_statement] = STATE(961), + [sym_continue_statement] = STATE(961), + [sym_goto_statement] = STATE(961), + [sym__expression] = STATE(4126), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(6964), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(961), + [sym_co_return_statement] = STATE(961), + [sym_co_yield_statement] = STATE(961), + [sym_throw_statement] = STATE(961), + [sym_try_statement] = STATE(961), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(189), + [sym_identifier] = ACTIONS(2099), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(33), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(994), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_if] = ACTIONS(1765), - [anon_sym_switch] = ACTIONS(75), - [anon_sym_case] = ACTIONS(1767), - [anon_sym_default] = ACTIONS(1769), - [anon_sym_while] = ACTIONS(1771), - [anon_sym_do] = ACTIONS(83), - [anon_sym_for] = ACTIONS(1773), - [anon_sym_return] = ACTIONS(87), - [anon_sym_break] = ACTIONS(89), - [anon_sym_continue] = ACTIONS(91), - [anon_sym_goto] = ACTIONS(93), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(911), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(917), + [anon_sym_LBRACK] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(921), + [anon_sym_switch] = ACTIONS(923), + [anon_sym_case] = ACTIONS(925), + [anon_sym_default] = ACTIONS(927), + [anon_sym_while] = ACTIONS(929), + [anon_sym_do] = ACTIONS(931), + [anon_sym_for] = ACTIONS(933), + [anon_sym_return] = ACTIONS(935), + [anon_sym_break] = ACTIONS(937), + [anon_sym_continue] = ACTIONS(939), + [anon_sym_goto] = ACTIONS(941), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_try] = ACTIONS(121), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(125), - [anon_sym_co_return] = ACTIONS(135), - [anon_sym_co_yield] = ACTIONS(137), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(945), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(947), + [anon_sym_co_return] = ACTIONS(957), + [anon_sym_co_yield] = ACTIONS(959), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [184] = { - [sym_attribute_declaration] = STATE(238), - [sym_compound_statement] = STATE(573), - [sym_attributed_statement] = STATE(573), - [sym_labeled_statement] = STATE(573), - [sym_expression_statement] = STATE(573), - [sym_if_statement] = STATE(573), - [sym_switch_statement] = STATE(573), - [sym_case_statement] = STATE(573), - [sym_while_statement] = STATE(573), - [sym_do_statement] = STATE(573), - [sym_for_statement] = STATE(573), - [sym_return_statement] = STATE(573), - [sym_break_statement] = STATE(573), - [sym_continue_statement] = STATE(573), - [sym_goto_statement] = STATE(573), - [sym__expression] = STATE(3622), - [sym_comma_expression] = STATE(6125), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_for_range_loop] = STATE(573), - [sym_co_return_statement] = STATE(573), - [sym_co_yield_statement] = STATE(573), - [sym_throw_statement] = STATE(573), - [sym_try_statement] = STATE(573), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_attributed_declarator_repeat1] = STATE(238), - [sym_identifier] = ACTIONS(1763), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym_attribute_declaration] = STATE(244), + [sym_compound_statement] = STATE(408), + [sym_attributed_statement] = STATE(408), + [sym_labeled_statement] = STATE(408), + [sym_expression_statement] = STATE(408), + [sym_if_statement] = STATE(408), + [sym_switch_statement] = STATE(408), + [sym_case_statement] = STATE(408), + [sym_while_statement] = STATE(408), + [sym_do_statement] = STATE(408), + [sym_for_statement] = STATE(408), + [sym_return_statement] = STATE(408), + [sym_break_statement] = STATE(408), + [sym_continue_statement] = STATE(408), + [sym_goto_statement] = STATE(408), + [sym__expression] = STATE(4160), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7618), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(408), + [sym_co_return_statement] = STATE(408), + [sym_co_yield_statement] = STATE(408), + [sym_throw_statement] = STATE(408), + [sym_try_statement] = STATE(408), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(244), + [sym_identifier] = ACTIONS(2105), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(33), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(994), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_if] = ACTIONS(1765), - [anon_sym_switch] = ACTIONS(75), - [anon_sym_case] = ACTIONS(1767), - [anon_sym_default] = ACTIONS(1769), - [anon_sym_while] = ACTIONS(1771), - [anon_sym_do] = ACTIONS(83), - [anon_sym_for] = ACTIONS(1773), - [anon_sym_return] = ACTIONS(87), - [anon_sym_break] = ACTIONS(89), - [anon_sym_continue] = ACTIONS(91), - [anon_sym_goto] = ACTIONS(93), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(245), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(251), + [anon_sym_LBRACK] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(255), + [anon_sym_switch] = ACTIONS(257), + [anon_sym_case] = ACTIONS(259), + [anon_sym_default] = ACTIONS(261), + [anon_sym_while] = ACTIONS(263), + [anon_sym_do] = ACTIONS(265), + [anon_sym_for] = ACTIONS(267), + [anon_sym_return] = ACTIONS(269), + [anon_sym_break] = ACTIONS(271), + [anon_sym_continue] = ACTIONS(273), + [anon_sym_goto] = ACTIONS(275), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_try] = ACTIONS(121), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(125), - [anon_sym_co_return] = ACTIONS(135), - [anon_sym_co_yield] = ACTIONS(137), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(279), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(281), + [anon_sym_co_return] = ACTIONS(291), + [anon_sym_co_yield] = ACTIONS(293), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [185] = { - [sym_attribute_declaration] = STATE(238), - [sym_compound_statement] = STATE(572), - [sym_attributed_statement] = STATE(572), - [sym_labeled_statement] = STATE(572), - [sym_expression_statement] = STATE(572), - [sym_if_statement] = STATE(572), - [sym_switch_statement] = STATE(572), - [sym_case_statement] = STATE(572), - [sym_while_statement] = STATE(572), - [sym_do_statement] = STATE(572), - [sym_for_statement] = STATE(572), - [sym_return_statement] = STATE(572), - [sym_break_statement] = STATE(572), - [sym_continue_statement] = STATE(572), - [sym_goto_statement] = STATE(572), - [sym__expression] = STATE(3622), - [sym_comma_expression] = STATE(6125), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_for_range_loop] = STATE(572), - [sym_co_return_statement] = STATE(572), - [sym_co_yield_statement] = STATE(572), - [sym_throw_statement] = STATE(572), - [sym_try_statement] = STATE(572), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_attributed_declarator_repeat1] = STATE(238), - [sym_identifier] = ACTIONS(1763), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym_attribute_declaration] = STATE(309), + [sym_compound_statement] = STATE(941), + [sym_attributed_statement] = STATE(941), + [sym_labeled_statement] = STATE(941), + [sym_expression_statement] = STATE(941), + [sym_if_statement] = STATE(941), + [sym_switch_statement] = STATE(941), + [sym_case_statement] = STATE(941), + [sym_while_statement] = STATE(941), + [sym_do_statement] = STATE(941), + [sym_for_statement] = STATE(941), + [sym_return_statement] = STATE(941), + [sym_break_statement] = STATE(941), + [sym_continue_statement] = STATE(941), + [sym_goto_statement] = STATE(941), + [sym__expression] = STATE(4182), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7590), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(941), + [sym_co_return_statement] = STATE(941), + [sym_co_yield_statement] = STATE(941), + [sym_throw_statement] = STATE(941), + [sym_try_statement] = STATE(941), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(309), + [sym_identifier] = ACTIONS(2103), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(33), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(994), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_if] = ACTIONS(1765), - [anon_sym_switch] = ACTIONS(75), - [anon_sym_case] = ACTIONS(1767), - [anon_sym_default] = ACTIONS(1769), - [anon_sym_while] = ACTIONS(1771), - [anon_sym_do] = ACTIONS(83), - [anon_sym_for] = ACTIONS(1773), - [anon_sym_return] = ACTIONS(87), - [anon_sym_break] = ACTIONS(89), - [anon_sym_continue] = ACTIONS(91), - [anon_sym_goto] = ACTIONS(93), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(181), + [anon_sym_switch] = ACTIONS(183), + [anon_sym_case] = ACTIONS(185), + [anon_sym_default] = ACTIONS(187), + [anon_sym_while] = ACTIONS(189), + [anon_sym_do] = ACTIONS(191), + [anon_sym_for] = ACTIONS(193), + [anon_sym_return] = ACTIONS(195), + [anon_sym_break] = ACTIONS(197), + [anon_sym_continue] = ACTIONS(199), + [anon_sym_goto] = ACTIONS(201), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_try] = ACTIONS(121), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(125), - [anon_sym_co_return] = ACTIONS(135), - [anon_sym_co_yield] = ACTIONS(137), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(209), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(211), + [anon_sym_co_return] = ACTIONS(221), + [anon_sym_co_yield] = ACTIONS(223), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [186] = { - [sym_attribute_declaration] = STATE(238), - [sym_compound_statement] = STATE(570), - [sym_attributed_statement] = STATE(570), - [sym_labeled_statement] = STATE(570), - [sym_expression_statement] = STATE(570), - [sym_if_statement] = STATE(570), - [sym_switch_statement] = STATE(570), - [sym_case_statement] = STATE(570), - [sym_while_statement] = STATE(570), - [sym_do_statement] = STATE(570), - [sym_for_statement] = STATE(570), - [sym_return_statement] = STATE(570), - [sym_break_statement] = STATE(570), - [sym_continue_statement] = STATE(570), - [sym_goto_statement] = STATE(570), - [sym__expression] = STATE(3622), - [sym_comma_expression] = STATE(6125), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_for_range_loop] = STATE(570), - [sym_co_return_statement] = STATE(570), - [sym_co_yield_statement] = STATE(570), - [sym_throw_statement] = STATE(570), - [sym_try_statement] = STATE(570), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_attributed_declarator_repeat1] = STATE(238), - [sym_identifier] = ACTIONS(1763), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym_attribute_declaration] = STATE(309), + [sym_compound_statement] = STATE(852), + [sym_attributed_statement] = STATE(851), + [sym_labeled_statement] = STATE(848), + [sym_expression_statement] = STATE(847), + [sym_if_statement] = STATE(846), + [sym_switch_statement] = STATE(845), + [sym_case_statement] = STATE(844), + [sym_while_statement] = STATE(843), + [sym_do_statement] = STATE(842), + [sym_for_statement] = STATE(840), + [sym_return_statement] = STATE(839), + [sym_break_statement] = STATE(838), + [sym_continue_statement] = STATE(837), + [sym_goto_statement] = STATE(836), + [sym__expression] = STATE(4182), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7590), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(835), + [sym_co_return_statement] = STATE(834), + [sym_co_yield_statement] = STATE(833), + [sym_throw_statement] = STATE(832), + [sym_try_statement] = STATE(831), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(309), + [sym_identifier] = ACTIONS(2103), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(33), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(994), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_if] = ACTIONS(1765), - [anon_sym_switch] = ACTIONS(75), - [anon_sym_case] = ACTIONS(1767), - [anon_sym_default] = ACTIONS(1769), - [anon_sym_while] = ACTIONS(1771), - [anon_sym_do] = ACTIONS(83), - [anon_sym_for] = ACTIONS(1773), - [anon_sym_return] = ACTIONS(87), - [anon_sym_break] = ACTIONS(89), - [anon_sym_continue] = ACTIONS(91), - [anon_sym_goto] = ACTIONS(93), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(181), + [anon_sym_switch] = ACTIONS(183), + [anon_sym_case] = ACTIONS(185), + [anon_sym_default] = ACTIONS(187), + [anon_sym_while] = ACTIONS(189), + [anon_sym_do] = ACTIONS(191), + [anon_sym_for] = ACTIONS(193), + [anon_sym_return] = ACTIONS(195), + [anon_sym_break] = ACTIONS(197), + [anon_sym_continue] = ACTIONS(199), + [anon_sym_goto] = ACTIONS(201), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_try] = ACTIONS(121), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(125), - [anon_sym_co_return] = ACTIONS(135), - [anon_sym_co_yield] = ACTIONS(137), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(209), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(211), + [anon_sym_co_return] = ACTIONS(221), + [anon_sym_co_yield] = ACTIONS(223), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [187] = { - [sym_attribute_declaration] = STATE(238), - [sym_compound_statement] = STATE(569), - [sym_attributed_statement] = STATE(569), - [sym_labeled_statement] = STATE(569), - [sym_expression_statement] = STATE(569), - [sym_if_statement] = STATE(569), - [sym_switch_statement] = STATE(569), - [sym_case_statement] = STATE(569), - [sym_while_statement] = STATE(569), - [sym_do_statement] = STATE(569), - [sym_for_statement] = STATE(569), - [sym_return_statement] = STATE(569), - [sym_break_statement] = STATE(569), - [sym_continue_statement] = STATE(569), - [sym_goto_statement] = STATE(569), - [sym__expression] = STATE(3622), - [sym_comma_expression] = STATE(6125), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_for_range_loop] = STATE(569), - [sym_co_return_statement] = STATE(569), - [sym_co_yield_statement] = STATE(569), - [sym_throw_statement] = STATE(569), - [sym_try_statement] = STATE(569), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_attributed_declarator_repeat1] = STATE(238), - [sym_identifier] = ACTIONS(1763), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym_attribute_declaration] = STATE(189), + [sym_compound_statement] = STATE(945), + [sym_attributed_statement] = STATE(945), + [sym_labeled_statement] = STATE(945), + [sym_expression_statement] = STATE(945), + [sym_if_statement] = STATE(945), + [sym_switch_statement] = STATE(945), + [sym_case_statement] = STATE(945), + [sym_while_statement] = STATE(945), + [sym_do_statement] = STATE(945), + [sym_for_statement] = STATE(945), + [sym_return_statement] = STATE(945), + [sym_break_statement] = STATE(945), + [sym_continue_statement] = STATE(945), + [sym_goto_statement] = STATE(945), + [sym__expression] = STATE(4126), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(6964), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(945), + [sym_co_return_statement] = STATE(945), + [sym_co_yield_statement] = STATE(945), + [sym_throw_statement] = STATE(945), + [sym_try_statement] = STATE(945), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(189), + [sym_identifier] = ACTIONS(2099), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(33), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(994), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_if] = ACTIONS(1765), - [anon_sym_switch] = ACTIONS(75), - [anon_sym_case] = ACTIONS(1767), - [anon_sym_default] = ACTIONS(1769), - [anon_sym_while] = ACTIONS(1771), - [anon_sym_do] = ACTIONS(83), - [anon_sym_for] = ACTIONS(1773), - [anon_sym_return] = ACTIONS(87), - [anon_sym_break] = ACTIONS(89), - [anon_sym_continue] = ACTIONS(91), - [anon_sym_goto] = ACTIONS(93), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(911), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(917), + [anon_sym_LBRACK] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(921), + [anon_sym_switch] = ACTIONS(923), + [anon_sym_case] = ACTIONS(925), + [anon_sym_default] = ACTIONS(927), + [anon_sym_while] = ACTIONS(929), + [anon_sym_do] = ACTIONS(931), + [anon_sym_for] = ACTIONS(933), + [anon_sym_return] = ACTIONS(935), + [anon_sym_break] = ACTIONS(937), + [anon_sym_continue] = ACTIONS(939), + [anon_sym_goto] = ACTIONS(941), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_try] = ACTIONS(121), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(125), - [anon_sym_co_return] = ACTIONS(135), - [anon_sym_co_yield] = ACTIONS(137), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(945), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(947), + [anon_sym_co_return] = ACTIONS(957), + [anon_sym_co_yield] = ACTIONS(959), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [188] = { - [sym_attribute_declaration] = STATE(238), - [sym_compound_statement] = STATE(6457), - [sym_attributed_statement] = STATE(6457), - [sym_labeled_statement] = STATE(6457), - [sym_expression_statement] = STATE(6457), - [sym_if_statement] = STATE(6457), - [sym_switch_statement] = STATE(6457), - [sym_case_statement] = STATE(6457), - [sym_while_statement] = STATE(6457), - [sym_do_statement] = STATE(6457), - [sym_for_statement] = STATE(6457), - [sym_return_statement] = STATE(6457), - [sym_break_statement] = STATE(6457), - [sym_continue_statement] = STATE(6457), - [sym_goto_statement] = STATE(6457), - [sym__expression] = STATE(3622), - [sym_comma_expression] = STATE(6125), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_for_range_loop] = STATE(6457), - [sym_co_return_statement] = STATE(6457), - [sym_co_yield_statement] = STATE(6457), - [sym_throw_statement] = STATE(6457), - [sym_try_statement] = STATE(6457), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_attributed_declarator_repeat1] = STATE(238), - [sym_identifier] = ACTIONS(1763), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym_attribute_declaration] = STATE(230), + [sym_compound_statement] = STATE(7473), + [sym_attributed_statement] = STATE(7473), + [sym_labeled_statement] = STATE(7473), + [sym_expression_statement] = STATE(7473), + [sym_if_statement] = STATE(7473), + [sym_switch_statement] = STATE(7473), + [sym_case_statement] = STATE(7473), + [sym_while_statement] = STATE(7473), + [sym_do_statement] = STATE(7473), + [sym_for_statement] = STATE(7473), + [sym_return_statement] = STATE(7473), + [sym_break_statement] = STATE(7473), + [sym_continue_statement] = STATE(7473), + [sym_goto_statement] = STATE(7473), + [sym__expression] = STATE(4182), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7590), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(7473), + [sym_co_return_statement] = STATE(7473), + [sym_co_yield_statement] = STATE(7473), + [sym_throw_statement] = STATE(7473), + [sym_try_statement] = STATE(7473), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(230), + [sym_identifier] = ACTIONS(2115), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(33), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(994), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_if] = ACTIONS(1765), - [anon_sym_switch] = ACTIONS(75), - [anon_sym_case] = ACTIONS(1767), - [anon_sym_default] = ACTIONS(1769), - [anon_sym_while] = ACTIONS(1771), - [anon_sym_do] = ACTIONS(83), - [anon_sym_for] = ACTIONS(1773), - [anon_sym_return] = ACTIONS(87), - [anon_sym_break] = ACTIONS(89), - [anon_sym_continue] = ACTIONS(91), - [anon_sym_goto] = ACTIONS(93), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACK] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(2117), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_case] = ACTIONS(2111), + [anon_sym_default] = ACTIONS(2113), + [anon_sym_while] = ACTIONS(2119), + [anon_sym_do] = ACTIONS(81), + [anon_sym_for] = ACTIONS(2121), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_try] = ACTIONS(121), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(125), - [anon_sym_co_return] = ACTIONS(135), - [anon_sym_co_yield] = ACTIONS(137), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(127), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(131), + [anon_sym_co_return] = ACTIONS(141), + [anon_sym_co_yield] = ACTIONS(143), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [189] = { - [sym_attribute_declaration] = STATE(151), - [sym_compound_statement] = STATE(588), - [sym_attributed_statement] = STATE(588), - [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(3522), - [sym_comma_expression] = STATE(6276), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_for_range_loop] = STATE(588), - [sym_co_return_statement] = STATE(588), - [sym_co_yield_statement] = STATE(588), - [sym_throw_statement] = STATE(588), - [sym_try_statement] = STATE(588), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_attributed_declarator_repeat1] = STATE(151), - [sym_identifier] = ACTIONS(1761), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym_attribute_declaration] = STATE(243), + [sym_compound_statement] = STATE(1003), + [sym_attributed_statement] = STATE(1003), + [sym_labeled_statement] = STATE(1003), + [sym_expression_statement] = STATE(1003), + [sym_if_statement] = STATE(1003), + [sym_switch_statement] = STATE(1003), + [sym_case_statement] = STATE(1003), + [sym_while_statement] = STATE(1003), + [sym_do_statement] = STATE(1003), + [sym_for_statement] = STATE(1003), + [sym_return_statement] = STATE(1003), + [sym_break_statement] = STATE(1003), + [sym_continue_statement] = STATE(1003), + [sym_goto_statement] = STATE(1003), + [sym__expression] = STATE(4126), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(6964), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(1003), + [sym_co_return_statement] = STATE(1003), + [sym_co_yield_statement] = STATE(1003), + [sym_throw_statement] = STATE(1003), + [sym_try_statement] = STATE(1003), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(243), + [sym_identifier] = ACTIONS(2099), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(660), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(666), - [anon_sym_LBRACK] = ACTIONS(994), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_if] = ACTIONS(670), - [anon_sym_switch] = ACTIONS(672), - [anon_sym_case] = ACTIONS(674), - [anon_sym_default] = ACTIONS(676), - [anon_sym_while] = ACTIONS(678), - [anon_sym_do] = ACTIONS(680), - [anon_sym_for] = ACTIONS(682), - [anon_sym_return] = ACTIONS(684), - [anon_sym_break] = ACTIONS(686), - [anon_sym_continue] = ACTIONS(688), - [anon_sym_goto] = ACTIONS(690), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(911), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(917), + [anon_sym_LBRACK] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(921), + [anon_sym_switch] = ACTIONS(923), + [anon_sym_case] = ACTIONS(925), + [anon_sym_default] = ACTIONS(927), + [anon_sym_while] = ACTIONS(929), + [anon_sym_do] = ACTIONS(931), + [anon_sym_for] = ACTIONS(933), + [anon_sym_return] = ACTIONS(935), + [anon_sym_break] = ACTIONS(937), + [anon_sym_continue] = ACTIONS(939), + [anon_sym_goto] = ACTIONS(941), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_try] = ACTIONS(694), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(696), - [anon_sym_co_return] = ACTIONS(706), - [anon_sym_co_yield] = ACTIONS(708), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(945), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(947), + [anon_sym_co_return] = ACTIONS(957), + [anon_sym_co_yield] = ACTIONS(959), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [190] = { - [sym_attribute_declaration] = STATE(238), - [sym_compound_statement] = STATE(568), - [sym_attributed_statement] = STATE(568), - [sym_labeled_statement] = STATE(568), - [sym_expression_statement] = STATE(568), - [sym_if_statement] = STATE(568), - [sym_switch_statement] = STATE(568), - [sym_case_statement] = STATE(568), - [sym_while_statement] = STATE(568), - [sym_do_statement] = STATE(568), - [sym_for_statement] = STATE(568), - [sym_return_statement] = STATE(568), - [sym_break_statement] = STATE(568), - [sym_continue_statement] = STATE(568), - [sym_goto_statement] = STATE(568), - [sym__expression] = STATE(3622), - [sym_comma_expression] = STATE(6125), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_for_range_loop] = STATE(568), - [sym_co_return_statement] = STATE(568), - [sym_co_yield_statement] = STATE(568), - [sym_throw_statement] = STATE(568), - [sym_try_statement] = STATE(568), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_attributed_declarator_repeat1] = STATE(238), - [sym_identifier] = ACTIONS(1763), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym_attribute_declaration] = STATE(189), + [sym_compound_statement] = STATE(1142), + [sym_attributed_statement] = STATE(1148), + [sym_labeled_statement] = STATE(1149), + [sym_expression_statement] = STATE(1151), + [sym_if_statement] = STATE(1152), + [sym_switch_statement] = STATE(1153), + [sym_case_statement] = STATE(1156), + [sym_while_statement] = STATE(1164), + [sym_do_statement] = STATE(1169), + [sym_for_statement] = STATE(823), + [sym_return_statement] = STATE(1171), + [sym_break_statement] = STATE(1172), + [sym_continue_statement] = STATE(1176), + [sym_goto_statement] = STATE(1177), + [sym__expression] = STATE(4126), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(6964), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(1178), + [sym_co_return_statement] = STATE(1179), + [sym_co_yield_statement] = STATE(1180), + [sym_throw_statement] = STATE(1181), + [sym_try_statement] = STATE(1182), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(189), + [sym_identifier] = ACTIONS(2099), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(33), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(994), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_if] = ACTIONS(1765), - [anon_sym_switch] = ACTIONS(75), - [anon_sym_case] = ACTIONS(1767), - [anon_sym_default] = ACTIONS(1769), - [anon_sym_while] = ACTIONS(1771), - [anon_sym_do] = ACTIONS(83), - [anon_sym_for] = ACTIONS(1773), - [anon_sym_return] = ACTIONS(87), - [anon_sym_break] = ACTIONS(89), - [anon_sym_continue] = ACTIONS(91), - [anon_sym_goto] = ACTIONS(93), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(911), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(917), + [anon_sym_LBRACK] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(921), + [anon_sym_switch] = ACTIONS(923), + [anon_sym_case] = ACTIONS(925), + [anon_sym_default] = ACTIONS(927), + [anon_sym_while] = ACTIONS(929), + [anon_sym_do] = ACTIONS(931), + [anon_sym_for] = ACTIONS(933), + [anon_sym_return] = ACTIONS(935), + [anon_sym_break] = ACTIONS(937), + [anon_sym_continue] = ACTIONS(939), + [anon_sym_goto] = ACTIONS(941), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_try] = ACTIONS(121), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(125), - [anon_sym_co_return] = ACTIONS(135), - [anon_sym_co_yield] = ACTIONS(137), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(945), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(947), + [anon_sym_co_return] = ACTIONS(957), + [anon_sym_co_yield] = ACTIONS(959), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [191] = { - [sym_attribute_declaration] = STATE(172), - [sym_compound_statement] = STATE(591), - [sym_attributed_statement] = STATE(591), - [sym_labeled_statement] = STATE(591), - [sym_expression_statement] = STATE(591), - [sym_if_statement] = STATE(591), - [sym_switch_statement] = STATE(591), - [sym_case_statement] = STATE(591), - [sym_while_statement] = STATE(591), - [sym_do_statement] = STATE(591), - [sym_for_statement] = STATE(591), - [sym_return_statement] = STATE(591), - [sym_break_statement] = STATE(591), - [sym_continue_statement] = STATE(591), - [sym_goto_statement] = STATE(591), - [sym__expression] = STATE(3622), - [sym_comma_expression] = STATE(6125), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_for_range_loop] = STATE(591), - [sym_co_return_statement] = STATE(591), - [sym_co_yield_statement] = STATE(591), - [sym_throw_statement] = STATE(591), - [sym_try_statement] = STATE(591), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_attributed_declarator_repeat1] = STATE(172), - [sym_identifier] = ACTIONS(1757), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym_attribute_declaration] = STATE(244), + [sym_compound_statement] = STATE(409), + [sym_attributed_statement] = STATE(409), + [sym_labeled_statement] = STATE(409), + [sym_expression_statement] = STATE(409), + [sym_if_statement] = STATE(409), + [sym_switch_statement] = STATE(409), + [sym_case_statement] = STATE(409), + [sym_while_statement] = STATE(409), + [sym_do_statement] = STATE(409), + [sym_for_statement] = STATE(409), + [sym_return_statement] = STATE(409), + [sym_break_statement] = STATE(409), + [sym_continue_statement] = STATE(409), + [sym_goto_statement] = STATE(409), + [sym__expression] = STATE(4160), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7618), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(409), + [sym_co_return_statement] = STATE(409), + [sym_co_yield_statement] = STATE(409), + [sym_throw_statement] = STATE(409), + [sym_try_statement] = STATE(409), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(244), + [sym_identifier] = ACTIONS(2105), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(33), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(994), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_if] = ACTIONS(73), - [anon_sym_switch] = ACTIONS(75), - [anon_sym_case] = ACTIONS(77), - [anon_sym_default] = ACTIONS(79), - [anon_sym_while] = ACTIONS(81), - [anon_sym_do] = ACTIONS(83), - [anon_sym_for] = ACTIONS(85), - [anon_sym_return] = ACTIONS(87), - [anon_sym_break] = ACTIONS(89), - [anon_sym_continue] = ACTIONS(91), - [anon_sym_goto] = ACTIONS(93), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(245), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(251), + [anon_sym_LBRACK] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(255), + [anon_sym_switch] = ACTIONS(257), + [anon_sym_case] = ACTIONS(259), + [anon_sym_default] = ACTIONS(261), + [anon_sym_while] = ACTIONS(263), + [anon_sym_do] = ACTIONS(265), + [anon_sym_for] = ACTIONS(267), + [anon_sym_return] = ACTIONS(269), + [anon_sym_break] = ACTIONS(271), + [anon_sym_continue] = ACTIONS(273), + [anon_sym_goto] = ACTIONS(275), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_try] = ACTIONS(121), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(125), - [anon_sym_co_return] = ACTIONS(135), - [anon_sym_co_yield] = ACTIONS(137), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(279), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(281), + [anon_sym_co_return] = ACTIONS(291), + [anon_sym_co_yield] = ACTIONS(293), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [192] = { - [sym_attribute_declaration] = STATE(238), - [sym_compound_statement] = STATE(564), - [sym_attributed_statement] = STATE(564), - [sym_labeled_statement] = STATE(564), - [sym_expression_statement] = STATE(564), - [sym_if_statement] = STATE(564), - [sym_switch_statement] = STATE(564), - [sym_case_statement] = STATE(564), - [sym_while_statement] = STATE(564), - [sym_do_statement] = STATE(564), - [sym_for_statement] = STATE(564), - [sym_return_statement] = STATE(564), - [sym_break_statement] = STATE(564), - [sym_continue_statement] = STATE(564), - [sym_goto_statement] = STATE(564), - [sym__expression] = STATE(3622), - [sym_comma_expression] = STATE(6125), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_for_range_loop] = STATE(564), - [sym_co_return_statement] = STATE(564), - [sym_co_yield_statement] = STATE(564), - [sym_throw_statement] = STATE(564), - [sym_try_statement] = STATE(564), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_attributed_declarator_repeat1] = STATE(238), - [sym_identifier] = ACTIONS(1763), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym_attribute_declaration] = STATE(309), + [sym_compound_statement] = STATE(963), + [sym_attributed_statement] = STATE(963), + [sym_labeled_statement] = STATE(963), + [sym_expression_statement] = STATE(963), + [sym_if_statement] = STATE(963), + [sym_switch_statement] = STATE(963), + [sym_case_statement] = STATE(963), + [sym_while_statement] = STATE(963), + [sym_do_statement] = STATE(963), + [sym_for_statement] = STATE(963), + [sym_return_statement] = STATE(963), + [sym_break_statement] = STATE(963), + [sym_continue_statement] = STATE(963), + [sym_goto_statement] = STATE(963), + [sym__expression] = STATE(4182), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7590), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(963), + [sym_co_return_statement] = STATE(963), + [sym_co_yield_statement] = STATE(963), + [sym_throw_statement] = STATE(963), + [sym_try_statement] = STATE(963), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(309), + [sym_identifier] = ACTIONS(2103), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(33), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(994), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_if] = ACTIONS(1765), - [anon_sym_switch] = ACTIONS(75), - [anon_sym_case] = ACTIONS(1767), - [anon_sym_default] = ACTIONS(1769), - [anon_sym_while] = ACTIONS(1771), - [anon_sym_do] = ACTIONS(83), - [anon_sym_for] = ACTIONS(1773), - [anon_sym_return] = ACTIONS(87), - [anon_sym_break] = ACTIONS(89), - [anon_sym_continue] = ACTIONS(91), - [anon_sym_goto] = ACTIONS(93), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(181), + [anon_sym_switch] = ACTIONS(183), + [anon_sym_case] = ACTIONS(185), + [anon_sym_default] = ACTIONS(187), + [anon_sym_while] = ACTIONS(189), + [anon_sym_do] = ACTIONS(191), + [anon_sym_for] = ACTIONS(193), + [anon_sym_return] = ACTIONS(195), + [anon_sym_break] = ACTIONS(197), + [anon_sym_continue] = ACTIONS(199), + [anon_sym_goto] = ACTIONS(201), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_try] = ACTIONS(121), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(125), - [anon_sym_co_return] = ACTIONS(135), - [anon_sym_co_yield] = ACTIONS(137), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(209), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(211), + [anon_sym_co_return] = ACTIONS(221), + [anon_sym_co_yield] = ACTIONS(223), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [193] = { - [sym_attribute_declaration] = STATE(238), - [sym_compound_statement] = STATE(561), - [sym_attributed_statement] = STATE(561), - [sym_labeled_statement] = STATE(561), - [sym_expression_statement] = STATE(561), - [sym_if_statement] = STATE(561), - [sym_switch_statement] = STATE(561), - [sym_case_statement] = STATE(561), - [sym_while_statement] = STATE(561), - [sym_do_statement] = STATE(561), - [sym_for_statement] = STATE(561), - [sym_return_statement] = STATE(561), - [sym_break_statement] = STATE(561), - [sym_continue_statement] = STATE(561), - [sym_goto_statement] = STATE(561), - [sym__expression] = STATE(3622), - [sym_comma_expression] = STATE(6125), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_for_range_loop] = STATE(561), - [sym_co_return_statement] = STATE(561), - [sym_co_yield_statement] = STATE(561), - [sym_throw_statement] = STATE(561), - [sym_try_statement] = STATE(561), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_attributed_declarator_repeat1] = STATE(238), - [sym_identifier] = ACTIONS(1763), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym_attribute_declaration] = STATE(309), + [sym_compound_statement] = STATE(967), + [sym_attributed_statement] = STATE(967), + [sym_labeled_statement] = STATE(967), + [sym_expression_statement] = STATE(967), + [sym_if_statement] = STATE(967), + [sym_switch_statement] = STATE(967), + [sym_case_statement] = STATE(967), + [sym_while_statement] = STATE(967), + [sym_do_statement] = STATE(967), + [sym_for_statement] = STATE(967), + [sym_return_statement] = STATE(967), + [sym_break_statement] = STATE(967), + [sym_continue_statement] = STATE(967), + [sym_goto_statement] = STATE(967), + [sym__expression] = STATE(4182), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7590), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(967), + [sym_co_return_statement] = STATE(967), + [sym_co_yield_statement] = STATE(967), + [sym_throw_statement] = STATE(967), + [sym_try_statement] = STATE(967), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(309), + [sym_identifier] = ACTIONS(2103), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(33), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(994), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_if] = ACTIONS(1765), - [anon_sym_switch] = ACTIONS(75), - [anon_sym_case] = ACTIONS(1767), - [anon_sym_default] = ACTIONS(1769), - [anon_sym_while] = ACTIONS(1771), - [anon_sym_do] = ACTIONS(83), - [anon_sym_for] = ACTIONS(1773), - [anon_sym_return] = ACTIONS(87), - [anon_sym_break] = ACTIONS(89), - [anon_sym_continue] = ACTIONS(91), - [anon_sym_goto] = ACTIONS(93), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(181), + [anon_sym_switch] = ACTIONS(183), + [anon_sym_case] = ACTIONS(185), + [anon_sym_default] = ACTIONS(187), + [anon_sym_while] = ACTIONS(189), + [anon_sym_do] = ACTIONS(191), + [anon_sym_for] = ACTIONS(193), + [anon_sym_return] = ACTIONS(195), + [anon_sym_break] = ACTIONS(197), + [anon_sym_continue] = ACTIONS(199), + [anon_sym_goto] = ACTIONS(201), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_try] = ACTIONS(121), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(125), - [anon_sym_co_return] = ACTIONS(135), - [anon_sym_co_yield] = ACTIONS(137), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(209), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(211), + [anon_sym_co_return] = ACTIONS(221), + [anon_sym_co_yield] = ACTIONS(223), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [194] = { - [sym_attribute_declaration] = STATE(206), - [sym_compound_statement] = STATE(790), - [sym_attributed_statement] = STATE(790), - [sym_labeled_statement] = STATE(790), - [sym_expression_statement] = STATE(790), - [sym_if_statement] = STATE(790), - [sym_switch_statement] = STATE(790), - [sym_case_statement] = STATE(790), - [sym_while_statement] = STATE(790), - [sym_do_statement] = STATE(790), - [sym_for_statement] = STATE(790), - [sym_return_statement] = STATE(790), - [sym_break_statement] = STATE(790), - [sym_continue_statement] = STATE(790), - [sym_goto_statement] = STATE(790), - [sym__expression] = STATE(3502), - [sym_comma_expression] = STATE(6595), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_for_range_loop] = STATE(790), - [sym_co_return_statement] = STATE(790), - [sym_co_yield_statement] = STATE(790), - [sym_throw_statement] = STATE(790), - [sym_try_statement] = STATE(790), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_attributed_declarator_repeat1] = STATE(206), - [sym_identifier] = ACTIONS(1759), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym_attribute_declaration] = STATE(244), + [sym_compound_statement] = STATE(410), + [sym_attributed_statement] = STATE(410), + [sym_labeled_statement] = STATE(410), + [sym_expression_statement] = STATE(410), + [sym_if_statement] = STATE(410), + [sym_switch_statement] = STATE(410), + [sym_case_statement] = STATE(410), + [sym_while_statement] = STATE(410), + [sym_do_statement] = STATE(410), + [sym_for_statement] = STATE(410), + [sym_return_statement] = STATE(410), + [sym_break_statement] = STATE(410), + [sym_continue_statement] = STATE(410), + [sym_goto_statement] = STATE(410), + [sym__expression] = STATE(4160), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7618), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(410), + [sym_co_return_statement] = STATE(410), + [sym_co_yield_statement] = STATE(410), + [sym_throw_statement] = STATE(410), + [sym_try_statement] = STATE(410), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(244), + [sym_identifier] = ACTIONS(2105), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_LBRACK] = ACTIONS(994), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_if] = ACTIONS(175), - [anon_sym_switch] = ACTIONS(177), - [anon_sym_case] = ACTIONS(179), - [anon_sym_default] = ACTIONS(181), - [anon_sym_while] = ACTIONS(183), - [anon_sym_do] = ACTIONS(185), - [anon_sym_for] = ACTIONS(187), - [anon_sym_return] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), - [anon_sym_goto] = ACTIONS(195), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(245), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(251), + [anon_sym_LBRACK] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(255), + [anon_sym_switch] = ACTIONS(257), + [anon_sym_case] = ACTIONS(259), + [anon_sym_default] = ACTIONS(261), + [anon_sym_while] = ACTIONS(263), + [anon_sym_do] = ACTIONS(265), + [anon_sym_for] = ACTIONS(267), + [anon_sym_return] = ACTIONS(269), + [anon_sym_break] = ACTIONS(271), + [anon_sym_continue] = ACTIONS(273), + [anon_sym_goto] = ACTIONS(275), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_try] = ACTIONS(201), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(203), - [anon_sym_co_return] = ACTIONS(213), - [anon_sym_co_yield] = ACTIONS(215), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(279), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(281), + [anon_sym_co_return] = ACTIONS(291), + [anon_sym_co_yield] = ACTIONS(293), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [195] = { - [sym_attribute_declaration] = STATE(172), - [sym_compound_statement] = STATE(587), - [sym_attributed_statement] = STATE(587), - [sym_labeled_statement] = STATE(587), - [sym_expression_statement] = STATE(587), - [sym_if_statement] = STATE(587), - [sym_switch_statement] = STATE(587), - [sym_case_statement] = STATE(587), - [sym_while_statement] = STATE(587), - [sym_do_statement] = STATE(587), - [sym_for_statement] = STATE(587), - [sym_return_statement] = STATE(587), - [sym_break_statement] = STATE(587), - [sym_continue_statement] = STATE(587), - [sym_goto_statement] = STATE(587), - [sym__expression] = STATE(3622), - [sym_comma_expression] = STATE(6125), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_for_range_loop] = STATE(587), - [sym_co_return_statement] = STATE(587), - [sym_co_yield_statement] = STATE(587), - [sym_throw_statement] = STATE(587), - [sym_try_statement] = STATE(587), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_attributed_declarator_repeat1] = STATE(172), - [sym_identifier] = ACTIONS(1757), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym_attribute_declaration] = STATE(179), + [sym_compound_statement] = STATE(1570), + [sym_attributed_statement] = STATE(1570), + [sym_labeled_statement] = STATE(1570), + [sym_expression_statement] = STATE(1570), + [sym_if_statement] = STATE(1570), + [sym_switch_statement] = STATE(1570), + [sym_case_statement] = STATE(1570), + [sym_while_statement] = STATE(1570), + [sym_do_statement] = STATE(1570), + [sym_for_statement] = STATE(1570), + [sym_return_statement] = STATE(1570), + [sym_break_statement] = STATE(1570), + [sym_continue_statement] = STATE(1570), + [sym_goto_statement] = STATE(1570), + [sym__expression] = STATE(4212), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7175), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(1570), + [sym_co_return_statement] = STATE(1570), + [sym_co_yield_statement] = STATE(1570), + [sym_throw_statement] = STATE(1570), + [sym_try_statement] = STATE(1570), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(179), + [sym_identifier] = ACTIONS(2109), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(33), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(994), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_if] = ACTIONS(73), - [anon_sym_switch] = ACTIONS(75), - [anon_sym_case] = ACTIONS(77), - [anon_sym_default] = ACTIONS(79), - [anon_sym_while] = ACTIONS(81), - [anon_sym_do] = ACTIONS(83), - [anon_sym_for] = ACTIONS(85), - [anon_sym_return] = ACTIONS(87), - [anon_sym_break] = ACTIONS(89), - [anon_sym_continue] = ACTIONS(91), - [anon_sym_goto] = ACTIONS(93), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(1728), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(1732), + [anon_sym_LBRACK] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(1734), + [anon_sym_switch] = ACTIONS(1736), + [anon_sym_case] = ACTIONS(2111), + [anon_sym_default] = ACTIONS(2113), + [anon_sym_while] = ACTIONS(1738), + [anon_sym_do] = ACTIONS(1740), + [anon_sym_for] = ACTIONS(1742), + [anon_sym_return] = ACTIONS(1744), + [anon_sym_break] = ACTIONS(1746), + [anon_sym_continue] = ACTIONS(1748), + [anon_sym_goto] = ACTIONS(1750), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_try] = ACTIONS(121), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(125), - [anon_sym_co_return] = ACTIONS(135), - [anon_sym_co_yield] = ACTIONS(137), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(1752), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(1754), + [anon_sym_co_return] = ACTIONS(1756), + [anon_sym_co_yield] = ACTIONS(1758), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [196] = { - [sym_attribute_declaration] = STATE(149), - [sym_compound_statement] = STATE(1252), - [sym_attributed_statement] = STATE(1252), - [sym_labeled_statement] = STATE(1252), - [sym_expression_statement] = STATE(1252), - [sym_if_statement] = STATE(1252), - [sym_switch_statement] = STATE(1252), - [sym_case_statement] = STATE(1252), - [sym_while_statement] = STATE(1252), - [sym_do_statement] = STATE(1252), - [sym_for_statement] = STATE(1252), - [sym_return_statement] = STATE(1252), - [sym_break_statement] = STATE(1252), - [sym_continue_statement] = STATE(1252), - [sym_goto_statement] = STATE(1252), - [sym__expression] = STATE(3545), - [sym_comma_expression] = STATE(6215), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_for_range_loop] = STATE(1252), - [sym_co_return_statement] = STATE(1252), - [sym_co_yield_statement] = STATE(1252), - [sym_throw_statement] = STATE(1252), - [sym_try_statement] = STATE(1252), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_attributed_declarator_repeat1] = STATE(149), - [sym_identifier] = ACTIONS(1775), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym_attribute_declaration] = STATE(309), + [sym_compound_statement] = STATE(968), + [sym_attributed_statement] = STATE(968), + [sym_labeled_statement] = STATE(968), + [sym_expression_statement] = STATE(968), + [sym_if_statement] = STATE(968), + [sym_switch_statement] = STATE(968), + [sym_case_statement] = STATE(968), + [sym_while_statement] = STATE(968), + [sym_do_statement] = STATE(968), + [sym_for_statement] = STATE(968), + [sym_return_statement] = STATE(968), + [sym_break_statement] = STATE(968), + [sym_continue_statement] = STATE(968), + [sym_goto_statement] = STATE(968), + [sym__expression] = STATE(4182), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7590), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(968), + [sym_co_return_statement] = STATE(968), + [sym_co_yield_statement] = STATE(968), + [sym_throw_statement] = STATE(968), + [sym_try_statement] = STATE(968), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(309), + [sym_identifier] = ACTIONS(2103), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(1328), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(1332), - [anon_sym_LBRACK] = ACTIONS(994), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_if] = ACTIONS(1334), - [anon_sym_switch] = ACTIONS(1336), - [anon_sym_case] = ACTIONS(1767), - [anon_sym_default] = ACTIONS(1769), - [anon_sym_while] = ACTIONS(1338), - [anon_sym_do] = ACTIONS(1340), - [anon_sym_for] = ACTIONS(1342), - [anon_sym_return] = ACTIONS(1344), - [anon_sym_break] = ACTIONS(1346), - [anon_sym_continue] = ACTIONS(1348), - [anon_sym_goto] = ACTIONS(1350), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(181), + [anon_sym_switch] = ACTIONS(183), + [anon_sym_case] = ACTIONS(185), + [anon_sym_default] = ACTIONS(187), + [anon_sym_while] = ACTIONS(189), + [anon_sym_do] = ACTIONS(191), + [anon_sym_for] = ACTIONS(193), + [anon_sym_return] = ACTIONS(195), + [anon_sym_break] = ACTIONS(197), + [anon_sym_continue] = ACTIONS(199), + [anon_sym_goto] = ACTIONS(201), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_try] = ACTIONS(1352), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(1354), - [anon_sym_co_return] = ACTIONS(1356), - [anon_sym_co_yield] = ACTIONS(1358), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(209), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(211), + [anon_sym_co_return] = ACTIONS(221), + [anon_sym_co_yield] = ACTIONS(223), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [197] = { - [sym_attribute_declaration] = STATE(151), - [sym_compound_statement] = STATE(594), - [sym_attributed_statement] = STATE(594), - [sym_labeled_statement] = STATE(594), - [sym_expression_statement] = STATE(594), - [sym_if_statement] = STATE(594), - [sym_switch_statement] = STATE(594), - [sym_case_statement] = STATE(594), - [sym_while_statement] = STATE(594), - [sym_do_statement] = STATE(594), - [sym_for_statement] = STATE(594), - [sym_return_statement] = STATE(594), - [sym_break_statement] = STATE(594), - [sym_continue_statement] = STATE(594), - [sym_goto_statement] = STATE(594), - [sym__expression] = STATE(3522), - [sym_comma_expression] = STATE(6276), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_for_range_loop] = STATE(594), - [sym_co_return_statement] = STATE(594), - [sym_co_yield_statement] = STATE(594), - [sym_throw_statement] = STATE(594), - [sym_try_statement] = STATE(594), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_attributed_declarator_repeat1] = STATE(151), - [sym_identifier] = ACTIONS(1761), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym_attribute_declaration] = STATE(230), + [sym_compound_statement] = STATE(6731), + [sym_attributed_statement] = STATE(6731), + [sym_labeled_statement] = STATE(6731), + [sym_expression_statement] = STATE(6731), + [sym_if_statement] = STATE(6731), + [sym_switch_statement] = STATE(6731), + [sym_case_statement] = STATE(6731), + [sym_while_statement] = STATE(6731), + [sym_do_statement] = STATE(6731), + [sym_for_statement] = STATE(6731), + [sym_return_statement] = STATE(6731), + [sym_break_statement] = STATE(6731), + [sym_continue_statement] = STATE(6731), + [sym_goto_statement] = STATE(6731), + [sym__expression] = STATE(4182), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7590), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(6731), + [sym_co_return_statement] = STATE(6731), + [sym_co_yield_statement] = STATE(6731), + [sym_throw_statement] = STATE(6731), + [sym_try_statement] = STATE(6731), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(230), + [sym_identifier] = ACTIONS(2115), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(660), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(666), - [anon_sym_LBRACK] = ACTIONS(994), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_if] = ACTIONS(670), - [anon_sym_switch] = ACTIONS(672), - [anon_sym_case] = ACTIONS(674), - [anon_sym_default] = ACTIONS(676), - [anon_sym_while] = ACTIONS(678), - [anon_sym_do] = ACTIONS(680), - [anon_sym_for] = ACTIONS(682), - [anon_sym_return] = ACTIONS(684), - [anon_sym_break] = ACTIONS(686), - [anon_sym_continue] = ACTIONS(688), - [anon_sym_goto] = ACTIONS(690), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACK] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(2117), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_case] = ACTIONS(2111), + [anon_sym_default] = ACTIONS(2113), + [anon_sym_while] = ACTIONS(2119), + [anon_sym_do] = ACTIONS(81), + [anon_sym_for] = ACTIONS(2121), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_try] = ACTIONS(694), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(696), - [anon_sym_co_return] = ACTIONS(706), - [anon_sym_co_yield] = ACTIONS(708), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(127), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(131), + [anon_sym_co_return] = ACTIONS(141), + [anon_sym_co_yield] = ACTIONS(143), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [198] = { - [sym_attribute_declaration] = STATE(253), - [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_case_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(3497), - [sym_comma_expression] = STATE(6497), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_for_range_loop] = STATE(424), - [sym_co_return_statement] = STATE(424), - [sym_co_yield_statement] = STATE(424), - [sym_throw_statement] = STATE(424), - [sym_try_statement] = STATE(424), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_attributed_declarator_repeat1] = STATE(253), - [sym_identifier] = ACTIONS(2002), - [anon_sym_LPAREN2] = ACTIONS(984), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(249), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(255), - [anon_sym_LBRACK] = ACTIONS(994), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_if] = ACTIONS(259), - [anon_sym_switch] = ACTIONS(261), - [anon_sym_case] = ACTIONS(263), - [anon_sym_default] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_do] = ACTIONS(269), - [anon_sym_for] = ACTIONS(271), - [anon_sym_return] = ACTIONS(273), - [anon_sym_break] = ACTIONS(275), - [anon_sym_continue] = ACTIONS(277), - [anon_sym_goto] = ACTIONS(279), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_try] = ACTIONS(283), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(285), - [anon_sym_co_return] = ACTIONS(295), - [anon_sym_co_yield] = ACTIONS(297), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [sym_attribute_declaration] = STATE(198), + [sym_compound_statement] = STATE(402), + [sym_attributed_statement] = STATE(402), + [sym_labeled_statement] = STATE(402), + [sym_expression_statement] = STATE(402), + [sym_if_statement] = STATE(402), + [sym_switch_statement] = STATE(402), + [sym_case_statement] = STATE(402), + [sym_while_statement] = STATE(402), + [sym_do_statement] = STATE(402), + [sym_for_statement] = STATE(402), + [sym_return_statement] = STATE(402), + [sym_break_statement] = STATE(402), + [sym_continue_statement] = STATE(402), + [sym_goto_statement] = STATE(402), + [sym__expression] = STATE(4160), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7618), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(402), + [sym_co_return_statement] = STATE(402), + [sym_co_yield_statement] = STATE(402), + [sym_throw_statement] = STATE(402), + [sym_try_statement] = STATE(402), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(198), + [sym_identifier] = ACTIONS(2123), + [anon_sym_LPAREN2] = ACTIONS(2126), + [anon_sym_BANG] = ACTIONS(2129), + [anon_sym_TILDE] = ACTIONS(2129), + [anon_sym_DASH] = ACTIONS(2132), + [anon_sym_PLUS] = ACTIONS(2132), + [anon_sym_STAR] = ACTIONS(2135), + [anon_sym_AMP] = ACTIONS(2135), + [anon_sym_SEMI] = ACTIONS(2138), + [anon_sym_COLON_COLON] = ACTIONS(2141), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2144), + [anon_sym_LBRACE] = ACTIONS(2147), + [anon_sym_LBRACK] = ACTIONS(2150), + [sym_primitive_type] = ACTIONS(2153), + [anon_sym_if] = ACTIONS(2156), + [anon_sym_switch] = ACTIONS(2159), + [anon_sym_case] = ACTIONS(2162), + [anon_sym_default] = ACTIONS(2165), + [anon_sym_while] = ACTIONS(2168), + [anon_sym_do] = ACTIONS(2171), + [anon_sym_for] = ACTIONS(2174), + [anon_sym_return] = ACTIONS(2177), + [anon_sym_break] = ACTIONS(2180), + [anon_sym_continue] = ACTIONS(2183), + [anon_sym_goto] = ACTIONS(2186), + [anon_sym_not] = ACTIONS(2132), + [anon_sym_compl] = ACTIONS(2132), + [anon_sym_DASH_DASH] = ACTIONS(2189), + [anon_sym_PLUS_PLUS] = ACTIONS(2189), + [anon_sym_sizeof] = ACTIONS(2192), + [anon_sym_offsetof] = ACTIONS(2195), + [anon_sym__Generic] = ACTIONS(2198), + [anon_sym_asm] = ACTIONS(2201), + [anon_sym___asm__] = ACTIONS(2201), + [sym_number_literal] = ACTIONS(2204), + [anon_sym_L_SQUOTE] = ACTIONS(2207), + [anon_sym_u_SQUOTE] = ACTIONS(2207), + [anon_sym_U_SQUOTE] = ACTIONS(2207), + [anon_sym_u8_SQUOTE] = ACTIONS(2207), + [anon_sym_SQUOTE] = ACTIONS(2207), + [anon_sym_L_DQUOTE] = ACTIONS(2210), + [anon_sym_u_DQUOTE] = ACTIONS(2210), + [anon_sym_U_DQUOTE] = ACTIONS(2210), + [anon_sym_u8_DQUOTE] = ACTIONS(2210), + [anon_sym_DQUOTE] = ACTIONS(2210), + [sym_true] = ACTIONS(2213), + [sym_false] = ACTIONS(2213), + [anon_sym_NULL] = ACTIONS(2216), + [anon_sym_nullptr] = ACTIONS(2216), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2219), + [anon_sym_template] = ACTIONS(2222), + [anon_sym_try] = ACTIONS(2225), + [anon_sym_delete] = ACTIONS(2228), + [anon_sym_throw] = ACTIONS(2231), + [anon_sym_co_return] = ACTIONS(2234), + [anon_sym_co_yield] = ACTIONS(2237), + [anon_sym_R_DQUOTE] = ACTIONS(2240), + [anon_sym_LR_DQUOTE] = ACTIONS(2240), + [anon_sym_uR_DQUOTE] = ACTIONS(2240), + [anon_sym_UR_DQUOTE] = ACTIONS(2240), + [anon_sym_u8R_DQUOTE] = ACTIONS(2240), + [anon_sym_co_await] = ACTIONS(2243), + [anon_sym_new] = ACTIONS(2246), + [anon_sym_requires] = ACTIONS(2249), + [sym_this] = ACTIONS(2213), }, [199] = { - [sym_attribute_declaration] = STATE(206), - [sym_compound_statement] = STATE(912), - [sym_attributed_statement] = STATE(912), - [sym_labeled_statement] = STATE(912), - [sym_expression_statement] = STATE(912), - [sym_if_statement] = STATE(912), - [sym_switch_statement] = STATE(912), - [sym_case_statement] = STATE(912), - [sym_while_statement] = STATE(912), - [sym_do_statement] = STATE(912), - [sym_for_statement] = STATE(912), - [sym_return_statement] = STATE(912), - [sym_break_statement] = STATE(912), - [sym_continue_statement] = STATE(912), - [sym_goto_statement] = STATE(912), - [sym__expression] = STATE(3502), - [sym_comma_expression] = STATE(6595), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_for_range_loop] = STATE(912), - [sym_co_return_statement] = STATE(912), - [sym_co_yield_statement] = STATE(912), - [sym_throw_statement] = STATE(912), - [sym_try_statement] = STATE(912), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_attributed_declarator_repeat1] = STATE(206), - [sym_identifier] = ACTIONS(1759), - [anon_sym_LPAREN2] = ACTIONS(984), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_LBRACK] = ACTIONS(994), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_if] = ACTIONS(175), - [anon_sym_switch] = ACTIONS(177), - [anon_sym_case] = ACTIONS(179), - [anon_sym_default] = ACTIONS(181), - [anon_sym_while] = ACTIONS(183), - [anon_sym_do] = ACTIONS(185), - [anon_sym_for] = ACTIONS(187), - [anon_sym_return] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), - [anon_sym_goto] = ACTIONS(195), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_try] = ACTIONS(201), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(203), - [anon_sym_co_return] = ACTIONS(213), - [anon_sym_co_yield] = ACTIONS(215), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [sym_attribute_declaration] = STATE(199), + [sym_compound_statement] = STATE(605), + [sym_attributed_statement] = STATE(605), + [sym_labeled_statement] = STATE(605), + [sym_expression_statement] = STATE(605), + [sym_if_statement] = STATE(605), + [sym_switch_statement] = STATE(605), + [sym_case_statement] = STATE(605), + [sym_while_statement] = STATE(605), + [sym_do_statement] = STATE(605), + [sym_for_statement] = STATE(605), + [sym_return_statement] = STATE(605), + [sym_break_statement] = STATE(605), + [sym_continue_statement] = STATE(605), + [sym_goto_statement] = STATE(605), + [sym__expression] = STATE(4169), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7079), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(605), + [sym_co_return_statement] = STATE(605), + [sym_co_yield_statement] = STATE(605), + [sym_throw_statement] = STATE(605), + [sym_try_statement] = STATE(605), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(199), + [sym_identifier] = ACTIONS(2252), + [anon_sym_LPAREN2] = ACTIONS(2126), + [anon_sym_BANG] = ACTIONS(2129), + [anon_sym_TILDE] = ACTIONS(2129), + [anon_sym_DASH] = ACTIONS(2132), + [anon_sym_PLUS] = ACTIONS(2132), + [anon_sym_STAR] = ACTIONS(2135), + [anon_sym_AMP] = ACTIONS(2135), + [anon_sym_SEMI] = ACTIONS(2255), + [anon_sym_COLON_COLON] = ACTIONS(2141), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2144), + [anon_sym_LBRACE] = ACTIONS(2258), + [anon_sym_LBRACK] = ACTIONS(2150), + [sym_primitive_type] = ACTIONS(2153), + [anon_sym_if] = ACTIONS(2261), + [anon_sym_switch] = ACTIONS(2264), + [anon_sym_case] = ACTIONS(2267), + [anon_sym_default] = ACTIONS(2270), + [anon_sym_while] = ACTIONS(2273), + [anon_sym_do] = ACTIONS(2276), + [anon_sym_for] = ACTIONS(2279), + [anon_sym_return] = ACTIONS(2282), + [anon_sym_break] = ACTIONS(2285), + [anon_sym_continue] = ACTIONS(2288), + [anon_sym_goto] = ACTIONS(2291), + [anon_sym_not] = ACTIONS(2132), + [anon_sym_compl] = ACTIONS(2132), + [anon_sym_DASH_DASH] = ACTIONS(2189), + [anon_sym_PLUS_PLUS] = ACTIONS(2189), + [anon_sym_sizeof] = ACTIONS(2192), + [anon_sym_offsetof] = ACTIONS(2195), + [anon_sym__Generic] = ACTIONS(2198), + [anon_sym_asm] = ACTIONS(2201), + [anon_sym___asm__] = ACTIONS(2201), + [sym_number_literal] = ACTIONS(2204), + [anon_sym_L_SQUOTE] = ACTIONS(2207), + [anon_sym_u_SQUOTE] = ACTIONS(2207), + [anon_sym_U_SQUOTE] = ACTIONS(2207), + [anon_sym_u8_SQUOTE] = ACTIONS(2207), + [anon_sym_SQUOTE] = ACTIONS(2207), + [anon_sym_L_DQUOTE] = ACTIONS(2210), + [anon_sym_u_DQUOTE] = ACTIONS(2210), + [anon_sym_U_DQUOTE] = ACTIONS(2210), + [anon_sym_u8_DQUOTE] = ACTIONS(2210), + [anon_sym_DQUOTE] = ACTIONS(2210), + [sym_true] = ACTIONS(2213), + [sym_false] = ACTIONS(2213), + [anon_sym_NULL] = ACTIONS(2216), + [anon_sym_nullptr] = ACTIONS(2216), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2219), + [anon_sym_template] = ACTIONS(2222), + [anon_sym_try] = ACTIONS(2294), + [anon_sym_delete] = ACTIONS(2228), + [anon_sym_throw] = ACTIONS(2297), + [anon_sym_co_return] = ACTIONS(2300), + [anon_sym_co_yield] = ACTIONS(2303), + [anon_sym_R_DQUOTE] = ACTIONS(2240), + [anon_sym_LR_DQUOTE] = ACTIONS(2240), + [anon_sym_uR_DQUOTE] = ACTIONS(2240), + [anon_sym_UR_DQUOTE] = ACTIONS(2240), + [anon_sym_u8R_DQUOTE] = ACTIONS(2240), + [anon_sym_co_await] = ACTIONS(2243), + [anon_sym_new] = ACTIONS(2246), + [anon_sym_requires] = ACTIONS(2249), + [sym_this] = ACTIONS(2213), }, [200] = { - [sym_attribute_declaration] = STATE(206), - [sym_compound_statement] = STATE(913), - [sym_attributed_statement] = STATE(913), - [sym_labeled_statement] = STATE(913), - [sym_expression_statement] = STATE(913), - [sym_if_statement] = STATE(913), - [sym_switch_statement] = STATE(913), - [sym_case_statement] = STATE(913), - [sym_while_statement] = STATE(913), - [sym_do_statement] = STATE(913), - [sym_for_statement] = STATE(913), - [sym_return_statement] = STATE(913), - [sym_break_statement] = STATE(913), - [sym_continue_statement] = STATE(913), - [sym_goto_statement] = STATE(913), - [sym__expression] = STATE(3502), - [sym_comma_expression] = STATE(6595), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_for_range_loop] = STATE(913), - [sym_co_return_statement] = STATE(913), - [sym_co_yield_statement] = STATE(913), - [sym_throw_statement] = STATE(913), - [sym_try_statement] = STATE(913), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_attributed_declarator_repeat1] = STATE(206), - [sym_identifier] = ACTIONS(1759), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym_attribute_declaration] = STATE(230), + [sym_compound_statement] = STATE(1150), + [sym_attributed_statement] = STATE(1150), + [sym_labeled_statement] = STATE(1150), + [sym_expression_statement] = STATE(1150), + [sym_if_statement] = STATE(1150), + [sym_switch_statement] = STATE(1150), + [sym_case_statement] = STATE(1150), + [sym_while_statement] = STATE(1150), + [sym_do_statement] = STATE(1150), + [sym_for_statement] = STATE(1150), + [sym_return_statement] = STATE(1150), + [sym_break_statement] = STATE(1150), + [sym_continue_statement] = STATE(1150), + [sym_goto_statement] = STATE(1150), + [sym__expression] = STATE(4182), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7590), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(1150), + [sym_co_return_statement] = STATE(1150), + [sym_co_yield_statement] = STATE(1150), + [sym_throw_statement] = STATE(1150), + [sym_try_statement] = STATE(1150), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(230), + [sym_identifier] = ACTIONS(2115), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_LBRACK] = ACTIONS(994), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_if] = ACTIONS(175), - [anon_sym_switch] = ACTIONS(177), - [anon_sym_case] = ACTIONS(179), - [anon_sym_default] = ACTIONS(181), - [anon_sym_while] = ACTIONS(183), - [anon_sym_do] = ACTIONS(185), - [anon_sym_for] = ACTIONS(187), - [anon_sym_return] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), - [anon_sym_goto] = ACTIONS(195), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACK] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(2117), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_case] = ACTIONS(2111), + [anon_sym_default] = ACTIONS(2113), + [anon_sym_while] = ACTIONS(2119), + [anon_sym_do] = ACTIONS(81), + [anon_sym_for] = ACTIONS(2121), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_try] = ACTIONS(201), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(203), - [anon_sym_co_return] = ACTIONS(213), - [anon_sym_co_yield] = ACTIONS(215), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(127), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(131), + [anon_sym_co_return] = ACTIONS(141), + [anon_sym_co_yield] = ACTIONS(143), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [201] = { - [sym_attribute_declaration] = STATE(151), - [sym_compound_statement] = STATE(689), - [sym_attributed_statement] = STATE(689), - [sym_labeled_statement] = STATE(689), - [sym_expression_statement] = STATE(689), - [sym_if_statement] = STATE(689), - [sym_switch_statement] = STATE(689), - [sym_case_statement] = STATE(689), - [sym_while_statement] = STATE(689), - [sym_do_statement] = STATE(689), - [sym_for_statement] = STATE(689), - [sym_return_statement] = STATE(689), - [sym_break_statement] = STATE(689), - [sym_continue_statement] = STATE(689), - [sym_goto_statement] = STATE(689), - [sym__expression] = STATE(3522), - [sym_comma_expression] = STATE(6276), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_for_range_loop] = STATE(689), - [sym_co_return_statement] = STATE(689), - [sym_co_yield_statement] = STATE(689), - [sym_throw_statement] = STATE(689), - [sym_try_statement] = STATE(689), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_attributed_declarator_repeat1] = STATE(151), - [sym_identifier] = ACTIONS(1761), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym_attribute_declaration] = STATE(309), + [sym_compound_statement] = STATE(828), + [sym_attributed_statement] = STATE(827), + [sym_labeled_statement] = STATE(826), + [sym_expression_statement] = STATE(825), + [sym_if_statement] = STATE(1014), + [sym_switch_statement] = STATE(926), + [sym_case_statement] = STATE(930), + [sym_while_statement] = STATE(920), + [sym_do_statement] = STATE(978), + [sym_for_statement] = STATE(981), + [sym_return_statement] = STATE(987), + [sym_break_statement] = STATE(1000), + [sym_continue_statement] = STATE(1025), + [sym_goto_statement] = STATE(1027), + [sym__expression] = STATE(4182), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7590), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(1036), + [sym_co_return_statement] = STATE(1041), + [sym_co_yield_statement] = STATE(1042), + [sym_throw_statement] = STATE(1056), + [sym_try_statement] = STATE(943), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(309), + [sym_identifier] = ACTIONS(2103), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(660), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(666), - [anon_sym_LBRACK] = ACTIONS(994), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_if] = ACTIONS(670), - [anon_sym_switch] = ACTIONS(672), - [anon_sym_case] = ACTIONS(674), - [anon_sym_default] = ACTIONS(676), - [anon_sym_while] = ACTIONS(678), - [anon_sym_do] = ACTIONS(680), - [anon_sym_for] = ACTIONS(682), - [anon_sym_return] = ACTIONS(684), - [anon_sym_break] = ACTIONS(686), - [anon_sym_continue] = ACTIONS(688), - [anon_sym_goto] = ACTIONS(690), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(181), + [anon_sym_switch] = ACTIONS(183), + [anon_sym_case] = ACTIONS(185), + [anon_sym_default] = ACTIONS(187), + [anon_sym_while] = ACTIONS(189), + [anon_sym_do] = ACTIONS(191), + [anon_sym_for] = ACTIONS(193), + [anon_sym_return] = ACTIONS(195), + [anon_sym_break] = ACTIONS(197), + [anon_sym_continue] = ACTIONS(199), + [anon_sym_goto] = ACTIONS(201), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_try] = ACTIONS(694), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(696), - [anon_sym_co_return] = ACTIONS(706), - [anon_sym_co_yield] = ACTIONS(708), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(209), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(211), + [anon_sym_co_return] = ACTIONS(221), + [anon_sym_co_yield] = ACTIONS(223), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [202] = { - [sym_attribute_declaration] = STATE(238), - [sym_compound_statement] = STATE(687), - [sym_attributed_statement] = STATE(687), - [sym_labeled_statement] = STATE(687), - [sym_expression_statement] = STATE(687), - [sym_if_statement] = STATE(687), - [sym_switch_statement] = STATE(687), - [sym_case_statement] = STATE(687), - [sym_while_statement] = STATE(687), - [sym_do_statement] = STATE(687), - [sym_for_statement] = STATE(687), - [sym_return_statement] = STATE(687), - [sym_break_statement] = STATE(687), - [sym_continue_statement] = STATE(687), - [sym_goto_statement] = STATE(687), - [sym__expression] = STATE(3622), - [sym_comma_expression] = STATE(6125), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_for_range_loop] = STATE(687), - [sym_co_return_statement] = STATE(687), - [sym_co_yield_statement] = STATE(687), - [sym_throw_statement] = STATE(687), - [sym_try_statement] = STATE(687), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_attributed_declarator_repeat1] = STATE(238), - [sym_identifier] = ACTIONS(1763), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym_attribute_declaration] = STATE(189), + [sym_compound_statement] = STATE(1097), + [sym_attributed_statement] = STATE(1098), + [sym_labeled_statement] = STATE(1099), + [sym_expression_statement] = STATE(1101), + [sym_if_statement] = STATE(1103), + [sym_switch_statement] = STATE(1110), + [sym_case_statement] = STATE(1114), + [sym_while_statement] = STATE(1115), + [sym_do_statement] = STATE(1117), + [sym_for_statement] = STATE(1120), + [sym_return_statement] = STATE(1127), + [sym_break_statement] = STATE(1130), + [sym_continue_statement] = STATE(1131), + [sym_goto_statement] = STATE(1132), + [sym__expression] = STATE(4126), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(6964), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(1133), + [sym_co_return_statement] = STATE(1134), + [sym_co_yield_statement] = STATE(1135), + [sym_throw_statement] = STATE(1138), + [sym_try_statement] = STATE(1141), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(189), + [sym_identifier] = ACTIONS(2099), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(33), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(994), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_if] = ACTIONS(1765), - [anon_sym_switch] = ACTIONS(75), - [anon_sym_case] = ACTIONS(1767), - [anon_sym_default] = ACTIONS(1769), - [anon_sym_while] = ACTIONS(1771), - [anon_sym_do] = ACTIONS(83), - [anon_sym_for] = ACTIONS(1773), - [anon_sym_return] = ACTIONS(87), - [anon_sym_break] = ACTIONS(89), - [anon_sym_continue] = ACTIONS(91), - [anon_sym_goto] = ACTIONS(93), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(911), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(917), + [anon_sym_LBRACK] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(921), + [anon_sym_switch] = ACTIONS(923), + [anon_sym_case] = ACTIONS(925), + [anon_sym_default] = ACTIONS(927), + [anon_sym_while] = ACTIONS(929), + [anon_sym_do] = ACTIONS(931), + [anon_sym_for] = ACTIONS(933), + [anon_sym_return] = ACTIONS(935), + [anon_sym_break] = ACTIONS(937), + [anon_sym_continue] = ACTIONS(939), + [anon_sym_goto] = ACTIONS(941), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_try] = ACTIONS(121), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(125), - [anon_sym_co_return] = ACTIONS(135), - [anon_sym_co_yield] = ACTIONS(137), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(945), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(947), + [anon_sym_co_return] = ACTIONS(957), + [anon_sym_co_yield] = ACTIONS(959), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [203] = { - [sym_attribute_declaration] = STATE(151), - [sym_compound_statement] = STATE(690), - [sym_attributed_statement] = STATE(690), - [sym_labeled_statement] = STATE(690), - [sym_expression_statement] = STATE(690), - [sym_if_statement] = STATE(690), - [sym_switch_statement] = STATE(690), - [sym_case_statement] = STATE(690), - [sym_while_statement] = STATE(690), - [sym_do_statement] = STATE(690), - [sym_for_statement] = STATE(690), - [sym_return_statement] = STATE(690), - [sym_break_statement] = STATE(690), - [sym_continue_statement] = STATE(690), - [sym_goto_statement] = STATE(690), - [sym__expression] = STATE(3522), - [sym_comma_expression] = STATE(6276), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_for_range_loop] = STATE(690), - [sym_co_return_statement] = STATE(690), - [sym_co_yield_statement] = STATE(690), - [sym_throw_statement] = STATE(690), - [sym_try_statement] = STATE(690), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_attributed_declarator_repeat1] = STATE(151), - [sym_identifier] = ACTIONS(1761), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym_attribute_declaration] = STATE(189), + [sym_compound_statement] = STATE(1095), + [sym_attributed_statement] = STATE(1095), + [sym_labeled_statement] = STATE(1095), + [sym_expression_statement] = STATE(1095), + [sym_if_statement] = STATE(1095), + [sym_switch_statement] = STATE(1095), + [sym_case_statement] = STATE(1095), + [sym_while_statement] = STATE(1095), + [sym_do_statement] = STATE(1095), + [sym_for_statement] = STATE(1095), + [sym_return_statement] = STATE(1095), + [sym_break_statement] = STATE(1095), + [sym_continue_statement] = STATE(1095), + [sym_goto_statement] = STATE(1095), + [sym__expression] = STATE(4126), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(6964), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(1095), + [sym_co_return_statement] = STATE(1095), + [sym_co_yield_statement] = STATE(1095), + [sym_throw_statement] = STATE(1095), + [sym_try_statement] = STATE(1095), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(189), + [sym_identifier] = ACTIONS(2099), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(660), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(666), - [anon_sym_LBRACK] = ACTIONS(994), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_if] = ACTIONS(670), - [anon_sym_switch] = ACTIONS(672), - [anon_sym_case] = ACTIONS(674), - [anon_sym_default] = ACTIONS(676), - [anon_sym_while] = ACTIONS(678), - [anon_sym_do] = ACTIONS(680), - [anon_sym_for] = ACTIONS(682), - [anon_sym_return] = ACTIONS(684), - [anon_sym_break] = ACTIONS(686), - [anon_sym_continue] = ACTIONS(688), - [anon_sym_goto] = ACTIONS(690), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(911), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(917), + [anon_sym_LBRACK] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(921), + [anon_sym_switch] = ACTIONS(923), + [anon_sym_case] = ACTIONS(925), + [anon_sym_default] = ACTIONS(927), + [anon_sym_while] = ACTIONS(929), + [anon_sym_do] = ACTIONS(931), + [anon_sym_for] = ACTIONS(933), + [anon_sym_return] = ACTIONS(935), + [anon_sym_break] = ACTIONS(937), + [anon_sym_continue] = ACTIONS(939), + [anon_sym_goto] = ACTIONS(941), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_try] = ACTIONS(694), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(696), - [anon_sym_co_return] = ACTIONS(706), - [anon_sym_co_yield] = ACTIONS(708), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(945), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(947), + [anon_sym_co_return] = ACTIONS(957), + [anon_sym_co_yield] = ACTIONS(959), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [204] = { - [sym_attribute_declaration] = STATE(206), - [sym_compound_statement] = STATE(910), - [sym_attributed_statement] = STATE(910), - [sym_labeled_statement] = STATE(910), - [sym_expression_statement] = STATE(910), - [sym_if_statement] = STATE(910), - [sym_switch_statement] = STATE(910), - [sym_case_statement] = STATE(910), - [sym_while_statement] = STATE(910), - [sym_do_statement] = STATE(910), - [sym_for_statement] = STATE(910), - [sym_return_statement] = STATE(910), - [sym_break_statement] = STATE(910), - [sym_continue_statement] = STATE(910), - [sym_goto_statement] = STATE(910), - [sym__expression] = STATE(3502), - [sym_comma_expression] = STATE(6595), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_for_range_loop] = STATE(910), - [sym_co_return_statement] = STATE(910), - [sym_co_yield_statement] = STATE(910), - [sym_throw_statement] = STATE(910), - [sym_try_statement] = STATE(910), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_attributed_declarator_repeat1] = STATE(206), - [sym_identifier] = ACTIONS(1759), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym_attribute_declaration] = STATE(230), + [sym_compound_statement] = STATE(1073), + [sym_attributed_statement] = STATE(1073), + [sym_labeled_statement] = STATE(1073), + [sym_expression_statement] = STATE(1073), + [sym_if_statement] = STATE(1073), + [sym_switch_statement] = STATE(1073), + [sym_case_statement] = STATE(1073), + [sym_while_statement] = STATE(1073), + [sym_do_statement] = STATE(1073), + [sym_for_statement] = STATE(1073), + [sym_return_statement] = STATE(1073), + [sym_break_statement] = STATE(1073), + [sym_continue_statement] = STATE(1073), + [sym_goto_statement] = STATE(1073), + [sym__expression] = STATE(4182), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7590), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(1073), + [sym_co_return_statement] = STATE(1073), + [sym_co_yield_statement] = STATE(1073), + [sym_throw_statement] = STATE(1073), + [sym_try_statement] = STATE(1073), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(230), + [sym_identifier] = ACTIONS(2115), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_LBRACK] = ACTIONS(994), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_if] = ACTIONS(175), - [anon_sym_switch] = ACTIONS(177), - [anon_sym_case] = ACTIONS(179), - [anon_sym_default] = ACTIONS(181), - [anon_sym_while] = ACTIONS(183), - [anon_sym_do] = ACTIONS(185), - [anon_sym_for] = ACTIONS(187), - [anon_sym_return] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), - [anon_sym_goto] = ACTIONS(195), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACK] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(2117), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_case] = ACTIONS(2111), + [anon_sym_default] = ACTIONS(2113), + [anon_sym_while] = ACTIONS(2119), + [anon_sym_do] = ACTIONS(81), + [anon_sym_for] = ACTIONS(2121), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_try] = ACTIONS(201), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(203), - [anon_sym_co_return] = ACTIONS(213), - [anon_sym_co_yield] = ACTIONS(215), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(127), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(131), + [anon_sym_co_return] = ACTIONS(141), + [anon_sym_co_yield] = ACTIONS(143), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [205] = { - [sym_attribute_declaration] = STATE(238), - [sym_compound_statement] = STATE(6282), - [sym_attributed_statement] = STATE(6282), - [sym_labeled_statement] = STATE(6282), - [sym_expression_statement] = STATE(6282), - [sym_if_statement] = STATE(6282), - [sym_switch_statement] = STATE(6282), - [sym_case_statement] = STATE(6282), - [sym_while_statement] = STATE(6282), - [sym_do_statement] = STATE(6282), - [sym_for_statement] = STATE(6282), - [sym_return_statement] = STATE(6282), - [sym_break_statement] = STATE(6282), - [sym_continue_statement] = STATE(6282), - [sym_goto_statement] = STATE(6282), - [sym__expression] = STATE(3622), - [sym_comma_expression] = STATE(6125), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_for_range_loop] = STATE(6282), - [sym_co_return_statement] = STATE(6282), - [sym_co_yield_statement] = STATE(6282), - [sym_throw_statement] = STATE(6282), - [sym_try_statement] = STATE(6282), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_attributed_declarator_repeat1] = STATE(238), - [sym_identifier] = ACTIONS(1763), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym_attribute_declaration] = STATE(179), + [sym_compound_statement] = STATE(1571), + [sym_attributed_statement] = STATE(1577), + [sym_labeled_statement] = STATE(1578), + [sym_expression_statement] = STATE(1580), + [sym_if_statement] = STATE(1582), + [sym_switch_statement] = STATE(1584), + [sym_case_statement] = STATE(1563), + [sym_while_statement] = STATE(1496), + [sym_do_statement] = STATE(1516), + [sym_for_statement] = STATE(1517), + [sym_return_statement] = STATE(1497), + [sym_break_statement] = STATE(1500), + [sym_continue_statement] = STATE(1506), + [sym_goto_statement] = STATE(1576), + [sym__expression] = STATE(4212), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7175), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(1574), + [sym_co_return_statement] = STATE(1567), + [sym_co_yield_statement] = STATE(1565), + [sym_throw_statement] = STATE(1554), + [sym_try_statement] = STATE(1551), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(179), + [sym_identifier] = ACTIONS(2109), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(33), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(994), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_if] = ACTIONS(1765), - [anon_sym_switch] = ACTIONS(75), - [anon_sym_case] = ACTIONS(1767), - [anon_sym_default] = ACTIONS(1769), - [anon_sym_while] = ACTIONS(1771), - [anon_sym_do] = ACTIONS(83), - [anon_sym_for] = ACTIONS(1773), - [anon_sym_return] = ACTIONS(87), - [anon_sym_break] = ACTIONS(89), - [anon_sym_continue] = ACTIONS(91), - [anon_sym_goto] = ACTIONS(93), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(1728), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(1732), + [anon_sym_LBRACK] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(1734), + [anon_sym_switch] = ACTIONS(1736), + [anon_sym_case] = ACTIONS(2111), + [anon_sym_default] = ACTIONS(2113), + [anon_sym_while] = ACTIONS(1738), + [anon_sym_do] = ACTIONS(1740), + [anon_sym_for] = ACTIONS(1742), + [anon_sym_return] = ACTIONS(1744), + [anon_sym_break] = ACTIONS(1746), + [anon_sym_continue] = ACTIONS(1748), + [anon_sym_goto] = ACTIONS(1750), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_try] = ACTIONS(121), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(125), - [anon_sym_co_return] = ACTIONS(135), - [anon_sym_co_yield] = ACTIONS(137), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(1752), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(1754), + [anon_sym_co_return] = ACTIONS(1756), + [anon_sym_co_yield] = ACTIONS(1758), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [206] = { - [sym_attribute_declaration] = STATE(160), - [sym_compound_statement] = STATE(787), - [sym_attributed_statement] = STATE(787), - [sym_labeled_statement] = STATE(787), - [sym_expression_statement] = STATE(787), - [sym_if_statement] = STATE(787), - [sym_switch_statement] = STATE(787), - [sym_case_statement] = STATE(787), - [sym_while_statement] = STATE(787), - [sym_do_statement] = STATE(787), - [sym_for_statement] = STATE(787), - [sym_return_statement] = STATE(787), - [sym_break_statement] = STATE(787), - [sym_continue_statement] = STATE(787), - [sym_goto_statement] = STATE(787), - [sym__expression] = STATE(3502), - [sym_comma_expression] = STATE(6595), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_for_range_loop] = STATE(787), - [sym_co_return_statement] = STATE(787), - [sym_co_yield_statement] = STATE(787), - [sym_throw_statement] = STATE(787), - [sym_try_statement] = STATE(787), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_attributed_declarator_repeat1] = STATE(160), - [sym_identifier] = ACTIONS(1759), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym_attribute_declaration] = STATE(230), + [sym_compound_statement] = STATE(1118), + [sym_attributed_statement] = STATE(1118), + [sym_labeled_statement] = STATE(1118), + [sym_expression_statement] = STATE(1118), + [sym_if_statement] = STATE(1118), + [sym_switch_statement] = STATE(1118), + [sym_case_statement] = STATE(1118), + [sym_while_statement] = STATE(1118), + [sym_do_statement] = STATE(1118), + [sym_for_statement] = STATE(1118), + [sym_return_statement] = STATE(1118), + [sym_break_statement] = STATE(1118), + [sym_continue_statement] = STATE(1118), + [sym_goto_statement] = STATE(1118), + [sym__expression] = STATE(4182), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7590), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(1118), + [sym_co_return_statement] = STATE(1118), + [sym_co_yield_statement] = STATE(1118), + [sym_throw_statement] = STATE(1118), + [sym_try_statement] = STATE(1118), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(230), + [sym_identifier] = ACTIONS(2115), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_LBRACK] = ACTIONS(994), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_if] = ACTIONS(175), - [anon_sym_switch] = ACTIONS(177), - [anon_sym_case] = ACTIONS(179), - [anon_sym_default] = ACTIONS(181), - [anon_sym_while] = ACTIONS(183), - [anon_sym_do] = ACTIONS(185), - [anon_sym_for] = ACTIONS(187), - [anon_sym_return] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), - [anon_sym_goto] = ACTIONS(195), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACK] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(2117), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_case] = ACTIONS(2111), + [anon_sym_default] = ACTIONS(2113), + [anon_sym_while] = ACTIONS(2119), + [anon_sym_do] = ACTIONS(81), + [anon_sym_for] = ACTIONS(2121), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_try] = ACTIONS(201), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(203), - [anon_sym_co_return] = ACTIONS(213), - [anon_sym_co_yield] = ACTIONS(215), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(127), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(131), + [anon_sym_co_return] = ACTIONS(141), + [anon_sym_co_yield] = ACTIONS(143), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [207] = { - [sym_attribute_declaration] = STATE(206), - [sym_compound_statement] = STATE(909), - [sym_attributed_statement] = STATE(909), - [sym_labeled_statement] = STATE(909), - [sym_expression_statement] = STATE(909), - [sym_if_statement] = STATE(909), - [sym_switch_statement] = STATE(909), - [sym_case_statement] = STATE(909), - [sym_while_statement] = STATE(909), - [sym_do_statement] = STATE(909), - [sym_for_statement] = STATE(909), - [sym_return_statement] = STATE(909), - [sym_break_statement] = STATE(909), - [sym_continue_statement] = STATE(909), - [sym_goto_statement] = STATE(909), - [sym__expression] = STATE(3502), - [sym_comma_expression] = STATE(6595), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_for_range_loop] = STATE(909), - [sym_co_return_statement] = STATE(909), - [sym_co_yield_statement] = STATE(909), - [sym_throw_statement] = STATE(909), - [sym_try_statement] = STATE(909), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_attributed_declarator_repeat1] = STATE(206), - [sym_identifier] = ACTIONS(1759), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym_attribute_declaration] = STATE(260), + [sym_compound_statement] = STATE(1158), + [sym_attributed_statement] = STATE(1158), + [sym_labeled_statement] = STATE(1158), + [sym_expression_statement] = STATE(1158), + [sym_if_statement] = STATE(1158), + [sym_switch_statement] = STATE(1158), + [sym_case_statement] = STATE(1158), + [sym_while_statement] = STATE(1158), + [sym_do_statement] = STATE(1158), + [sym_for_statement] = STATE(1158), + [sym_return_statement] = STATE(1158), + [sym_break_statement] = STATE(1158), + [sym_continue_statement] = STATE(1158), + [sym_goto_statement] = STATE(1158), + [sym__expression] = STATE(4234), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7265), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(1158), + [sym_co_return_statement] = STATE(1158), + [sym_co_yield_statement] = STATE(1158), + [sym_throw_statement] = STATE(1158), + [sym_try_statement] = STATE(1158), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(260), + [sym_identifier] = ACTIONS(2101), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_LBRACK] = ACTIONS(994), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_if] = ACTIONS(175), - [anon_sym_switch] = ACTIONS(177), - [anon_sym_case] = ACTIONS(179), - [anon_sym_default] = ACTIONS(181), - [anon_sym_while] = ACTIONS(183), - [anon_sym_do] = ACTIONS(185), - [anon_sym_for] = ACTIONS(187), - [anon_sym_return] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), - [anon_sym_goto] = ACTIONS(195), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(1622), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACK] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(71), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_case] = ACTIONS(75), + [anon_sym_default] = ACTIONS(77), + [anon_sym_while] = ACTIONS(79), + [anon_sym_do] = ACTIONS(81), + [anon_sym_for] = ACTIONS(83), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_try] = ACTIONS(201), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(203), - [anon_sym_co_return] = ACTIONS(213), - [anon_sym_co_yield] = ACTIONS(215), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(127), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(131), + [anon_sym_co_return] = ACTIONS(141), + [anon_sym_co_yield] = ACTIONS(143), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [208] = { - [sym_attribute_declaration] = STATE(253), - [sym_compound_statement] = STATE(457), - [sym_attributed_statement] = STATE(457), - [sym_labeled_statement] = STATE(457), - [sym_expression_statement] = STATE(457), - [sym_if_statement] = STATE(457), - [sym_switch_statement] = STATE(457), - [sym_case_statement] = STATE(457), - [sym_while_statement] = STATE(457), - [sym_do_statement] = STATE(457), - [sym_for_statement] = STATE(457), - [sym_return_statement] = STATE(457), - [sym_break_statement] = STATE(457), - [sym_continue_statement] = STATE(457), - [sym_goto_statement] = STATE(457), - [sym__expression] = STATE(3497), - [sym_comma_expression] = STATE(6497), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_for_range_loop] = STATE(457), - [sym_co_return_statement] = STATE(457), - [sym_co_yield_statement] = STATE(457), - [sym_throw_statement] = STATE(457), - [sym_try_statement] = STATE(457), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_attributed_declarator_repeat1] = STATE(253), - [sym_identifier] = ACTIONS(2002), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym_attribute_declaration] = STATE(244), + [sym_compound_statement] = STATE(388), + [sym_attributed_statement] = STATE(388), + [sym_labeled_statement] = STATE(388), + [sym_expression_statement] = STATE(388), + [sym_if_statement] = STATE(388), + [sym_switch_statement] = STATE(388), + [sym_case_statement] = STATE(388), + [sym_while_statement] = STATE(388), + [sym_do_statement] = STATE(388), + [sym_for_statement] = STATE(388), + [sym_return_statement] = STATE(388), + [sym_break_statement] = STATE(388), + [sym_continue_statement] = STATE(388), + [sym_goto_statement] = STATE(388), + [sym__expression] = STATE(4160), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7618), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(388), + [sym_co_return_statement] = STATE(388), + [sym_co_yield_statement] = STATE(388), + [sym_throw_statement] = STATE(388), + [sym_try_statement] = STATE(388), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(244), + [sym_identifier] = ACTIONS(2105), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(249), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(255), - [anon_sym_LBRACK] = ACTIONS(994), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_if] = ACTIONS(259), - [anon_sym_switch] = ACTIONS(261), - [anon_sym_case] = ACTIONS(263), - [anon_sym_default] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_do] = ACTIONS(269), - [anon_sym_for] = ACTIONS(271), - [anon_sym_return] = ACTIONS(273), - [anon_sym_break] = ACTIONS(275), - [anon_sym_continue] = ACTIONS(277), - [anon_sym_goto] = ACTIONS(279), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(245), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(251), + [anon_sym_LBRACK] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(255), + [anon_sym_switch] = ACTIONS(257), + [anon_sym_case] = ACTIONS(259), + [anon_sym_default] = ACTIONS(261), + [anon_sym_while] = ACTIONS(263), + [anon_sym_do] = ACTIONS(265), + [anon_sym_for] = ACTIONS(267), + [anon_sym_return] = ACTIONS(269), + [anon_sym_break] = ACTIONS(271), + [anon_sym_continue] = ACTIONS(273), + [anon_sym_goto] = ACTIONS(275), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_try] = ACTIONS(283), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(285), - [anon_sym_co_return] = ACTIONS(295), - [anon_sym_co_yield] = ACTIONS(297), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(279), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(281), + [anon_sym_co_return] = ACTIONS(291), + [anon_sym_co_yield] = ACTIONS(293), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [209] = { - [sym_attribute_declaration] = STATE(206), - [sym_compound_statement] = STATE(905), - [sym_attributed_statement] = STATE(905), - [sym_labeled_statement] = STATE(905), - [sym_expression_statement] = STATE(905), - [sym_if_statement] = STATE(905), - [sym_switch_statement] = STATE(905), - [sym_case_statement] = STATE(905), - [sym_while_statement] = STATE(905), - [sym_do_statement] = STATE(905), - [sym_for_statement] = STATE(905), - [sym_return_statement] = STATE(905), - [sym_break_statement] = STATE(905), - [sym_continue_statement] = STATE(905), - [sym_goto_statement] = STATE(905), - [sym__expression] = STATE(3502), - [sym_comma_expression] = STATE(6595), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_for_range_loop] = STATE(905), - [sym_co_return_statement] = STATE(905), - [sym_co_yield_statement] = STATE(905), - [sym_throw_statement] = STATE(905), - [sym_try_statement] = STATE(905), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_attributed_declarator_repeat1] = STATE(206), - [sym_identifier] = ACTIONS(1759), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym_attribute_declaration] = STATE(260), + [sym_compound_statement] = STATE(1150), + [sym_attributed_statement] = STATE(1150), + [sym_labeled_statement] = STATE(1150), + [sym_expression_statement] = STATE(1150), + [sym_if_statement] = STATE(1150), + [sym_switch_statement] = STATE(1150), + [sym_case_statement] = STATE(1150), + [sym_while_statement] = STATE(1150), + [sym_do_statement] = STATE(1150), + [sym_for_statement] = STATE(1150), + [sym_return_statement] = STATE(1150), + [sym_break_statement] = STATE(1150), + [sym_continue_statement] = STATE(1150), + [sym_goto_statement] = STATE(1150), + [sym__expression] = STATE(4234), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7265), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(1150), + [sym_co_return_statement] = STATE(1150), + [sym_co_yield_statement] = STATE(1150), + [sym_throw_statement] = STATE(1150), + [sym_try_statement] = STATE(1150), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(260), + [sym_identifier] = ACTIONS(2101), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_LBRACK] = ACTIONS(994), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_if] = ACTIONS(175), - [anon_sym_switch] = ACTIONS(177), - [anon_sym_case] = ACTIONS(179), - [anon_sym_default] = ACTIONS(181), - [anon_sym_while] = ACTIONS(183), - [anon_sym_do] = ACTIONS(185), - [anon_sym_for] = ACTIONS(187), - [anon_sym_return] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), - [anon_sym_goto] = ACTIONS(195), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(1622), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACK] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(71), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_case] = ACTIONS(75), + [anon_sym_default] = ACTIONS(77), + [anon_sym_while] = ACTIONS(79), + [anon_sym_do] = ACTIONS(81), + [anon_sym_for] = ACTIONS(83), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_try] = ACTIONS(201), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(203), - [anon_sym_co_return] = ACTIONS(213), - [anon_sym_co_yield] = ACTIONS(215), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(127), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(131), + [anon_sym_co_return] = ACTIONS(141), + [anon_sym_co_yield] = ACTIONS(143), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [210] = { - [sym_attribute_declaration] = STATE(172), - [sym_compound_statement] = STATE(569), - [sym_attributed_statement] = STATE(569), - [sym_labeled_statement] = STATE(569), - [sym_expression_statement] = STATE(569), - [sym_if_statement] = STATE(569), - [sym_switch_statement] = STATE(569), - [sym_case_statement] = STATE(569), - [sym_while_statement] = STATE(569), - [sym_do_statement] = STATE(569), - [sym_for_statement] = STATE(569), - [sym_return_statement] = STATE(569), - [sym_break_statement] = STATE(569), - [sym_continue_statement] = STATE(569), - [sym_goto_statement] = STATE(569), - [sym__expression] = STATE(3622), - [sym_comma_expression] = STATE(6125), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_for_range_loop] = STATE(569), - [sym_co_return_statement] = STATE(569), - [sym_co_yield_statement] = STATE(569), - [sym_throw_statement] = STATE(569), - [sym_try_statement] = STATE(569), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_attributed_declarator_repeat1] = STATE(172), - [sym_identifier] = ACTIONS(1757), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym_attribute_declaration] = STATE(309), + [sym_compound_statement] = STATE(1123), + [sym_attributed_statement] = STATE(1123), + [sym_labeled_statement] = STATE(1123), + [sym_expression_statement] = STATE(1123), + [sym_if_statement] = STATE(1123), + [sym_switch_statement] = STATE(1123), + [sym_case_statement] = STATE(1123), + [sym_while_statement] = STATE(1123), + [sym_do_statement] = STATE(1123), + [sym_for_statement] = STATE(1123), + [sym_return_statement] = STATE(1123), + [sym_break_statement] = STATE(1123), + [sym_continue_statement] = STATE(1123), + [sym_goto_statement] = STATE(1123), + [sym__expression] = STATE(4182), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7590), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(1123), + [sym_co_return_statement] = STATE(1123), + [sym_co_yield_statement] = STATE(1123), + [sym_throw_statement] = STATE(1123), + [sym_try_statement] = STATE(1123), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(309), + [sym_identifier] = ACTIONS(2103), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(33), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(994), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_if] = ACTIONS(73), - [anon_sym_switch] = ACTIONS(75), - [anon_sym_case] = ACTIONS(77), - [anon_sym_default] = ACTIONS(79), - [anon_sym_while] = ACTIONS(81), - [anon_sym_do] = ACTIONS(83), - [anon_sym_for] = ACTIONS(85), - [anon_sym_return] = ACTIONS(87), - [anon_sym_break] = ACTIONS(89), - [anon_sym_continue] = ACTIONS(91), - [anon_sym_goto] = ACTIONS(93), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(181), + [anon_sym_switch] = ACTIONS(183), + [anon_sym_case] = ACTIONS(185), + [anon_sym_default] = ACTIONS(187), + [anon_sym_while] = ACTIONS(189), + [anon_sym_do] = ACTIONS(191), + [anon_sym_for] = ACTIONS(193), + [anon_sym_return] = ACTIONS(195), + [anon_sym_break] = ACTIONS(197), + [anon_sym_continue] = ACTIONS(199), + [anon_sym_goto] = ACTIONS(201), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_try] = ACTIONS(121), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(125), - [anon_sym_co_return] = ACTIONS(135), - [anon_sym_co_yield] = ACTIONS(137), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(209), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(211), + [anon_sym_co_return] = ACTIONS(221), + [anon_sym_co_yield] = ACTIONS(223), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [211] = { - [sym_attribute_declaration] = STATE(206), - [sym_compound_statement] = STATE(903), - [sym_attributed_statement] = STATE(903), - [sym_labeled_statement] = STATE(903), - [sym_expression_statement] = STATE(903), - [sym_if_statement] = STATE(903), - [sym_switch_statement] = STATE(903), - [sym_case_statement] = STATE(903), - [sym_while_statement] = STATE(903), - [sym_do_statement] = STATE(903), - [sym_for_statement] = STATE(903), - [sym_return_statement] = STATE(903), - [sym_break_statement] = STATE(903), - [sym_continue_statement] = STATE(903), - [sym_goto_statement] = STATE(903), - [sym__expression] = STATE(3502), - [sym_comma_expression] = STATE(6595), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_for_range_loop] = STATE(903), - [sym_co_return_statement] = STATE(903), - [sym_co_yield_statement] = STATE(903), - [sym_throw_statement] = STATE(903), - [sym_try_statement] = STATE(903), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_attributed_declarator_repeat1] = STATE(206), - [sym_identifier] = ACTIONS(1759), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym_attribute_declaration] = STATE(179), + [sym_compound_statement] = STATE(1526), + [sym_attributed_statement] = STATE(1528), + [sym_labeled_statement] = STATE(1531), + [sym_expression_statement] = STATE(1535), + [sym_if_statement] = STATE(1536), + [sym_switch_statement] = STATE(1537), + [sym_case_statement] = STATE(1539), + [sym_while_statement] = STATE(1542), + [sym_do_statement] = STATE(1544), + [sym_for_statement] = STATE(1547), + [sym_return_statement] = STATE(1550), + [sym_break_statement] = STATE(1552), + [sym_continue_statement] = STATE(1556), + [sym_goto_statement] = STATE(1557), + [sym__expression] = STATE(4212), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7175), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(1559), + [sym_co_return_statement] = STATE(1560), + [sym_co_yield_statement] = STATE(1561), + [sym_throw_statement] = STATE(1564), + [sym_try_statement] = STATE(1569), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(179), + [sym_identifier] = ACTIONS(2109), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_LBRACK] = ACTIONS(994), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_if] = ACTIONS(175), - [anon_sym_switch] = ACTIONS(177), - [anon_sym_case] = ACTIONS(179), - [anon_sym_default] = ACTIONS(181), - [anon_sym_while] = ACTIONS(183), - [anon_sym_do] = ACTIONS(185), - [anon_sym_for] = ACTIONS(187), - [anon_sym_return] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), - [anon_sym_goto] = ACTIONS(195), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(1728), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(1732), + [anon_sym_LBRACK] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(1734), + [anon_sym_switch] = ACTIONS(1736), + [anon_sym_case] = ACTIONS(2111), + [anon_sym_default] = ACTIONS(2113), + [anon_sym_while] = ACTIONS(1738), + [anon_sym_do] = ACTIONS(1740), + [anon_sym_for] = ACTIONS(1742), + [anon_sym_return] = ACTIONS(1744), + [anon_sym_break] = ACTIONS(1746), + [anon_sym_continue] = ACTIONS(1748), + [anon_sym_goto] = ACTIONS(1750), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_try] = ACTIONS(201), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(203), - [anon_sym_co_return] = ACTIONS(213), - [anon_sym_co_yield] = ACTIONS(215), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(1752), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(1754), + [anon_sym_co_return] = ACTIONS(1756), + [anon_sym_co_yield] = ACTIONS(1758), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [212] = { - [sym_attribute_declaration] = STATE(253), - [sym_compound_statement] = STATE(391), - [sym_attributed_statement] = STATE(391), - [sym_labeled_statement] = STATE(391), - [sym_expression_statement] = STATE(391), - [sym_if_statement] = STATE(391), - [sym_switch_statement] = STATE(391), - [sym_case_statement] = STATE(391), - [sym_while_statement] = STATE(391), - [sym_do_statement] = STATE(391), - [sym_for_statement] = STATE(391), - [sym_return_statement] = STATE(391), - [sym_break_statement] = STATE(391), - [sym_continue_statement] = STATE(391), - [sym_goto_statement] = STATE(391), - [sym__expression] = STATE(3497), - [sym_comma_expression] = STATE(6497), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_for_range_loop] = STATE(391), - [sym_co_return_statement] = STATE(391), - [sym_co_yield_statement] = STATE(391), - [sym_throw_statement] = STATE(391), - [sym_try_statement] = STATE(391), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_attributed_declarator_repeat1] = STATE(253), - [sym_identifier] = ACTIONS(2002), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym_attribute_declaration] = STATE(189), + [sym_compound_statement] = STATE(935), + [sym_attributed_statement] = STATE(935), + [sym_labeled_statement] = STATE(935), + [sym_expression_statement] = STATE(935), + [sym_if_statement] = STATE(935), + [sym_switch_statement] = STATE(935), + [sym_case_statement] = STATE(935), + [sym_while_statement] = STATE(935), + [sym_do_statement] = STATE(935), + [sym_for_statement] = STATE(935), + [sym_return_statement] = STATE(935), + [sym_break_statement] = STATE(935), + [sym_continue_statement] = STATE(935), + [sym_goto_statement] = STATE(935), + [sym__expression] = STATE(4126), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(6964), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(935), + [sym_co_return_statement] = STATE(935), + [sym_co_yield_statement] = STATE(935), + [sym_throw_statement] = STATE(935), + [sym_try_statement] = STATE(935), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(189), + [sym_identifier] = ACTIONS(2099), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(249), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(255), - [anon_sym_LBRACK] = ACTIONS(994), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_if] = ACTIONS(259), - [anon_sym_switch] = ACTIONS(261), - [anon_sym_case] = ACTIONS(263), - [anon_sym_default] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_do] = ACTIONS(269), - [anon_sym_for] = ACTIONS(271), - [anon_sym_return] = ACTIONS(273), - [anon_sym_break] = ACTIONS(275), - [anon_sym_continue] = ACTIONS(277), - [anon_sym_goto] = ACTIONS(279), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(911), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(917), + [anon_sym_LBRACK] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(921), + [anon_sym_switch] = ACTIONS(923), + [anon_sym_case] = ACTIONS(925), + [anon_sym_default] = ACTIONS(927), + [anon_sym_while] = ACTIONS(929), + [anon_sym_do] = ACTIONS(931), + [anon_sym_for] = ACTIONS(933), + [anon_sym_return] = ACTIONS(935), + [anon_sym_break] = ACTIONS(937), + [anon_sym_continue] = ACTIONS(939), + [anon_sym_goto] = ACTIONS(941), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_try] = ACTIONS(283), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(285), - [anon_sym_co_return] = ACTIONS(295), - [anon_sym_co_yield] = ACTIONS(297), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(945), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(947), + [anon_sym_co_return] = ACTIONS(957), + [anon_sym_co_yield] = ACTIONS(959), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [213] = { - [sym_attribute_declaration] = STATE(206), - [sym_compound_statement] = STATE(898), - [sym_attributed_statement] = STATE(898), - [sym_labeled_statement] = STATE(898), - [sym_expression_statement] = STATE(898), - [sym_if_statement] = STATE(898), - [sym_switch_statement] = STATE(898), - [sym_case_statement] = STATE(898), - [sym_while_statement] = STATE(898), - [sym_do_statement] = STATE(898), - [sym_for_statement] = STATE(898), - [sym_return_statement] = STATE(898), - [sym_break_statement] = STATE(898), - [sym_continue_statement] = STATE(898), - [sym_goto_statement] = STATE(898), - [sym__expression] = STATE(3502), - [sym_comma_expression] = STATE(6595), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_for_range_loop] = STATE(898), - [sym_co_return_statement] = STATE(898), - [sym_co_yield_statement] = STATE(898), - [sym_throw_statement] = STATE(898), - [sym_try_statement] = STATE(898), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_attributed_declarator_repeat1] = STATE(206), - [sym_identifier] = ACTIONS(1759), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym_attribute_declaration] = STATE(230), + [sym_compound_statement] = STATE(7443), + [sym_attributed_statement] = STATE(7443), + [sym_labeled_statement] = STATE(7443), + [sym_expression_statement] = STATE(7443), + [sym_if_statement] = STATE(7443), + [sym_switch_statement] = STATE(7443), + [sym_case_statement] = STATE(7443), + [sym_while_statement] = STATE(7443), + [sym_do_statement] = STATE(7443), + [sym_for_statement] = STATE(7443), + [sym_return_statement] = STATE(7443), + [sym_break_statement] = STATE(7443), + [sym_continue_statement] = STATE(7443), + [sym_goto_statement] = STATE(7443), + [sym__expression] = STATE(4182), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7590), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(7443), + [sym_co_return_statement] = STATE(7443), + [sym_co_yield_statement] = STATE(7443), + [sym_throw_statement] = STATE(7443), + [sym_try_statement] = STATE(7443), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(230), + [sym_identifier] = ACTIONS(2115), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_LBRACK] = ACTIONS(994), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_if] = ACTIONS(175), - [anon_sym_switch] = ACTIONS(177), - [anon_sym_case] = ACTIONS(179), - [anon_sym_default] = ACTIONS(181), - [anon_sym_while] = ACTIONS(183), - [anon_sym_do] = ACTIONS(185), - [anon_sym_for] = ACTIONS(187), - [anon_sym_return] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), - [anon_sym_goto] = ACTIONS(195), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACK] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(2117), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_case] = ACTIONS(2111), + [anon_sym_default] = ACTIONS(2113), + [anon_sym_while] = ACTIONS(2119), + [anon_sym_do] = ACTIONS(81), + [anon_sym_for] = ACTIONS(2121), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_try] = ACTIONS(201), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(203), - [anon_sym_co_return] = ACTIONS(213), - [anon_sym_co_yield] = ACTIONS(215), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(127), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(131), + [anon_sym_co_return] = ACTIONS(141), + [anon_sym_co_yield] = ACTIONS(143), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [214] = { - [sym_attribute_declaration] = STATE(253), - [sym_compound_statement] = STATE(462), - [sym_attributed_statement] = STATE(462), - [sym_labeled_statement] = STATE(462), - [sym_expression_statement] = STATE(462), - [sym_if_statement] = STATE(462), - [sym_switch_statement] = STATE(462), - [sym_case_statement] = STATE(462), - [sym_while_statement] = STATE(462), - [sym_do_statement] = STATE(462), - [sym_for_statement] = STATE(462), - [sym_return_statement] = STATE(462), - [sym_break_statement] = STATE(462), - [sym_continue_statement] = STATE(462), - [sym_goto_statement] = STATE(462), - [sym__expression] = STATE(3497), - [sym_comma_expression] = STATE(6497), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_for_range_loop] = STATE(462), - [sym_co_return_statement] = STATE(462), - [sym_co_yield_statement] = STATE(462), - [sym_throw_statement] = STATE(462), - [sym_try_statement] = STATE(462), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_attributed_declarator_repeat1] = STATE(253), - [sym_identifier] = ACTIONS(2002), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym_attribute_declaration] = STATE(230), + [sym_compound_statement] = STATE(7501), + [sym_attributed_statement] = STATE(7501), + [sym_labeled_statement] = STATE(7501), + [sym_expression_statement] = STATE(7501), + [sym_if_statement] = STATE(7501), + [sym_switch_statement] = STATE(7501), + [sym_case_statement] = STATE(7501), + [sym_while_statement] = STATE(7501), + [sym_do_statement] = STATE(7501), + [sym_for_statement] = STATE(7501), + [sym_return_statement] = STATE(7501), + [sym_break_statement] = STATE(7501), + [sym_continue_statement] = STATE(7501), + [sym_goto_statement] = STATE(7501), + [sym__expression] = STATE(4182), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7590), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(7501), + [sym_co_return_statement] = STATE(7501), + [sym_co_yield_statement] = STATE(7501), + [sym_throw_statement] = STATE(7501), + [sym_try_statement] = STATE(7501), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(230), + [sym_identifier] = ACTIONS(2115), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(249), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(255), - [anon_sym_LBRACK] = ACTIONS(994), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_if] = ACTIONS(259), - [anon_sym_switch] = ACTIONS(261), - [anon_sym_case] = ACTIONS(263), - [anon_sym_default] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_do] = ACTIONS(269), - [anon_sym_for] = ACTIONS(271), - [anon_sym_return] = ACTIONS(273), - [anon_sym_break] = ACTIONS(275), - [anon_sym_continue] = ACTIONS(277), - [anon_sym_goto] = ACTIONS(279), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACK] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(2117), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_case] = ACTIONS(2111), + [anon_sym_default] = ACTIONS(2113), + [anon_sym_while] = ACTIONS(2119), + [anon_sym_do] = ACTIONS(81), + [anon_sym_for] = ACTIONS(2121), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_try] = ACTIONS(283), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(285), - [anon_sym_co_return] = ACTIONS(295), - [anon_sym_co_yield] = ACTIONS(297), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(127), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(131), + [anon_sym_co_return] = ACTIONS(141), + [anon_sym_co_yield] = ACTIONS(143), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [215] = { - [sym_attribute_declaration] = STATE(238), - [sym_compound_statement] = STATE(5840), - [sym_attributed_statement] = STATE(5840), - [sym_labeled_statement] = STATE(5840), - [sym_expression_statement] = STATE(5840), - [sym_if_statement] = STATE(5840), - [sym_switch_statement] = STATE(5840), - [sym_case_statement] = STATE(5840), - [sym_while_statement] = STATE(5840), - [sym_do_statement] = STATE(5840), - [sym_for_statement] = STATE(5840), - [sym_return_statement] = STATE(5840), - [sym_break_statement] = STATE(5840), - [sym_continue_statement] = STATE(5840), - [sym_goto_statement] = STATE(5840), - [sym__expression] = STATE(3622), - [sym_comma_expression] = STATE(6125), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_for_range_loop] = STATE(5840), - [sym_co_return_statement] = STATE(5840), - [sym_co_yield_statement] = STATE(5840), - [sym_throw_statement] = STATE(5840), - [sym_try_statement] = STATE(5840), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_attributed_declarator_repeat1] = STATE(238), - [sym_identifier] = ACTIONS(1763), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym_attribute_declaration] = STATE(309), + [sym_compound_statement] = STATE(927), + [sym_attributed_statement] = STATE(927), + [sym_labeled_statement] = STATE(927), + [sym_expression_statement] = STATE(927), + [sym_if_statement] = STATE(927), + [sym_switch_statement] = STATE(927), + [sym_case_statement] = STATE(927), + [sym_while_statement] = STATE(927), + [sym_do_statement] = STATE(927), + [sym_for_statement] = STATE(927), + [sym_return_statement] = STATE(927), + [sym_break_statement] = STATE(927), + [sym_continue_statement] = STATE(927), + [sym_goto_statement] = STATE(927), + [sym__expression] = STATE(4182), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7590), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(927), + [sym_co_return_statement] = STATE(927), + [sym_co_yield_statement] = STATE(927), + [sym_throw_statement] = STATE(927), + [sym_try_statement] = STATE(927), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(309), + [sym_identifier] = ACTIONS(2103), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(33), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(994), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_if] = ACTIONS(1765), - [anon_sym_switch] = ACTIONS(75), - [anon_sym_case] = ACTIONS(1767), - [anon_sym_default] = ACTIONS(1769), - [anon_sym_while] = ACTIONS(1771), - [anon_sym_do] = ACTIONS(83), - [anon_sym_for] = ACTIONS(1773), - [anon_sym_return] = ACTIONS(87), - [anon_sym_break] = ACTIONS(89), - [anon_sym_continue] = ACTIONS(91), - [anon_sym_goto] = ACTIONS(93), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(181), + [anon_sym_switch] = ACTIONS(183), + [anon_sym_case] = ACTIONS(185), + [anon_sym_default] = ACTIONS(187), + [anon_sym_while] = ACTIONS(189), + [anon_sym_do] = ACTIONS(191), + [anon_sym_for] = ACTIONS(193), + [anon_sym_return] = ACTIONS(195), + [anon_sym_break] = ACTIONS(197), + [anon_sym_continue] = ACTIONS(199), + [anon_sym_goto] = ACTIONS(201), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_try] = ACTIONS(121), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(125), - [anon_sym_co_return] = ACTIONS(135), - [anon_sym_co_yield] = ACTIONS(137), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(209), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(211), + [anon_sym_co_return] = ACTIONS(221), + [anon_sym_co_yield] = ACTIONS(223), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [216] = { - [sym_attribute_declaration] = STATE(253), - [sym_compound_statement] = STATE(364), - [sym_attributed_statement] = STATE(364), - [sym_labeled_statement] = STATE(364), - [sym_expression_statement] = STATE(364), - [sym_if_statement] = STATE(364), - [sym_switch_statement] = STATE(364), - [sym_case_statement] = STATE(364), - [sym_while_statement] = STATE(364), - [sym_do_statement] = STATE(364), - [sym_for_statement] = STATE(364), - [sym_return_statement] = STATE(364), - [sym_break_statement] = STATE(364), - [sym_continue_statement] = STATE(364), - [sym_goto_statement] = STATE(364), - [sym__expression] = STATE(3497), - [sym_comma_expression] = STATE(6497), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_for_range_loop] = STATE(364), - [sym_co_return_statement] = STATE(364), - [sym_co_yield_statement] = STATE(364), - [sym_throw_statement] = STATE(364), - [sym_try_statement] = STATE(364), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_attributed_declarator_repeat1] = STATE(253), - [sym_identifier] = ACTIONS(2002), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym_attribute_declaration] = STATE(244), + [sym_compound_statement] = STATE(442), + [sym_attributed_statement] = STATE(442), + [sym_labeled_statement] = STATE(442), + [sym_expression_statement] = STATE(442), + [sym_if_statement] = STATE(442), + [sym_switch_statement] = STATE(442), + [sym_case_statement] = STATE(442), + [sym_while_statement] = STATE(442), + [sym_do_statement] = STATE(442), + [sym_for_statement] = STATE(442), + [sym_return_statement] = STATE(442), + [sym_break_statement] = STATE(442), + [sym_continue_statement] = STATE(442), + [sym_goto_statement] = STATE(442), + [sym__expression] = STATE(4160), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7618), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(442), + [sym_co_return_statement] = STATE(442), + [sym_co_yield_statement] = STATE(442), + [sym_throw_statement] = STATE(442), + [sym_try_statement] = STATE(442), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(244), + [sym_identifier] = ACTIONS(2105), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(249), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(255), - [anon_sym_LBRACK] = ACTIONS(994), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_if] = ACTIONS(259), - [anon_sym_switch] = ACTIONS(261), - [anon_sym_case] = ACTIONS(263), - [anon_sym_default] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_do] = ACTIONS(269), - [anon_sym_for] = ACTIONS(271), - [anon_sym_return] = ACTIONS(273), - [anon_sym_break] = ACTIONS(275), - [anon_sym_continue] = ACTIONS(277), - [anon_sym_goto] = ACTIONS(279), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(245), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(251), + [anon_sym_LBRACK] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(255), + [anon_sym_switch] = ACTIONS(257), + [anon_sym_case] = ACTIONS(259), + [anon_sym_default] = ACTIONS(261), + [anon_sym_while] = ACTIONS(263), + [anon_sym_do] = ACTIONS(265), + [anon_sym_for] = ACTIONS(267), + [anon_sym_return] = ACTIONS(269), + [anon_sym_break] = ACTIONS(271), + [anon_sym_continue] = ACTIONS(273), + [anon_sym_goto] = ACTIONS(275), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_try] = ACTIONS(283), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(285), - [anon_sym_co_return] = ACTIONS(295), - [anon_sym_co_yield] = ACTIONS(297), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(279), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(281), + [anon_sym_co_return] = ACTIONS(291), + [anon_sym_co_yield] = ACTIONS(293), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [217] = { - [sym_attribute_declaration] = STATE(172), - [sym_compound_statement] = STATE(562), - [sym_attributed_statement] = STATE(562), - [sym_labeled_statement] = STATE(562), - [sym_expression_statement] = STATE(562), - [sym_if_statement] = STATE(562), - [sym_switch_statement] = STATE(562), - [sym_case_statement] = STATE(562), - [sym_while_statement] = STATE(562), - [sym_do_statement] = STATE(562), - [sym_for_statement] = STATE(562), - [sym_return_statement] = STATE(562), - [sym_break_statement] = STATE(562), - [sym_continue_statement] = STATE(562), - [sym_goto_statement] = STATE(562), - [sym__expression] = STATE(3622), - [sym_comma_expression] = STATE(6125), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_for_range_loop] = STATE(562), - [sym_co_return_statement] = STATE(562), - [sym_co_yield_statement] = STATE(562), - [sym_throw_statement] = STATE(562), - [sym_try_statement] = STATE(562), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_attributed_declarator_repeat1] = STATE(172), - [sym_identifier] = ACTIONS(1757), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym_attribute_declaration] = STATE(251), + [sym_compound_statement] = STATE(724), + [sym_attributed_statement] = STATE(724), + [sym_labeled_statement] = STATE(724), + [sym_expression_statement] = STATE(724), + [sym_if_statement] = STATE(724), + [sym_switch_statement] = STATE(724), + [sym_case_statement] = STATE(724), + [sym_while_statement] = STATE(724), + [sym_do_statement] = STATE(724), + [sym_for_statement] = STATE(724), + [sym_return_statement] = STATE(724), + [sym_break_statement] = STATE(724), + [sym_continue_statement] = STATE(724), + [sym_goto_statement] = STATE(724), + [sym__expression] = STATE(4169), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7079), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(724), + [sym_co_return_statement] = STATE(724), + [sym_co_yield_statement] = STATE(724), + [sym_throw_statement] = STATE(724), + [sym_try_statement] = STATE(724), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(251), + [sym_identifier] = ACTIONS(2107), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(33), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(994), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_if] = ACTIONS(73), - [anon_sym_switch] = ACTIONS(75), - [anon_sym_case] = ACTIONS(77), - [anon_sym_default] = ACTIONS(79), - [anon_sym_while] = ACTIONS(81), - [anon_sym_do] = ACTIONS(83), - [anon_sym_for] = ACTIONS(85), - [anon_sym_return] = ACTIONS(87), - [anon_sym_break] = ACTIONS(89), - [anon_sym_continue] = ACTIONS(91), - [anon_sym_goto] = ACTIONS(93), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(345), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(351), + [anon_sym_LBRACK] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(355), + [anon_sym_switch] = ACTIONS(357), + [anon_sym_case] = ACTIONS(359), + [anon_sym_default] = ACTIONS(361), + [anon_sym_while] = ACTIONS(363), + [anon_sym_do] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_return] = ACTIONS(369), + [anon_sym_break] = ACTIONS(371), + [anon_sym_continue] = ACTIONS(373), + [anon_sym_goto] = ACTIONS(375), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_try] = ACTIONS(121), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(125), - [anon_sym_co_return] = ACTIONS(135), - [anon_sym_co_yield] = ACTIONS(137), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(379), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(381), + [anon_sym_co_return] = ACTIONS(391), + [anon_sym_co_yield] = ACTIONS(393), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [218] = { - [sym_attribute_declaration] = STATE(149), - [sym_compound_statement] = STATE(1257), - [sym_attributed_statement] = STATE(1257), - [sym_labeled_statement] = STATE(1257), - [sym_expression_statement] = STATE(1257), - [sym_if_statement] = STATE(1257), - [sym_switch_statement] = STATE(1257), - [sym_case_statement] = STATE(1257), - [sym_while_statement] = STATE(1257), - [sym_do_statement] = STATE(1257), - [sym_for_statement] = STATE(1257), - [sym_return_statement] = STATE(1257), - [sym_break_statement] = STATE(1257), - [sym_continue_statement] = STATE(1257), - [sym_goto_statement] = STATE(1257), - [sym__expression] = STATE(3545), - [sym_comma_expression] = STATE(6215), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_for_range_loop] = STATE(1257), - [sym_co_return_statement] = STATE(1257), - [sym_co_yield_statement] = STATE(1257), - [sym_throw_statement] = STATE(1257), - [sym_try_statement] = STATE(1257), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_attributed_declarator_repeat1] = STATE(149), - [sym_identifier] = ACTIONS(1775), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym_attribute_declaration] = STATE(189), + [sym_compound_statement] = STATE(1094), + [sym_attributed_statement] = STATE(1094), + [sym_labeled_statement] = STATE(1094), + [sym_expression_statement] = STATE(1094), + [sym_if_statement] = STATE(1094), + [sym_switch_statement] = STATE(1094), + [sym_case_statement] = STATE(1094), + [sym_while_statement] = STATE(1094), + [sym_do_statement] = STATE(1094), + [sym_for_statement] = STATE(1094), + [sym_return_statement] = STATE(1094), + [sym_break_statement] = STATE(1094), + [sym_continue_statement] = STATE(1094), + [sym_goto_statement] = STATE(1094), + [sym__expression] = STATE(4126), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(6964), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(1094), + [sym_co_return_statement] = STATE(1094), + [sym_co_yield_statement] = STATE(1094), + [sym_throw_statement] = STATE(1094), + [sym_try_statement] = STATE(1094), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(189), + [sym_identifier] = ACTIONS(2099), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(1328), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(1332), - [anon_sym_LBRACK] = ACTIONS(994), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_if] = ACTIONS(1334), - [anon_sym_switch] = ACTIONS(1336), - [anon_sym_case] = ACTIONS(1767), - [anon_sym_default] = ACTIONS(1769), - [anon_sym_while] = ACTIONS(1338), - [anon_sym_do] = ACTIONS(1340), - [anon_sym_for] = ACTIONS(1342), - [anon_sym_return] = ACTIONS(1344), - [anon_sym_break] = ACTIONS(1346), - [anon_sym_continue] = ACTIONS(1348), - [anon_sym_goto] = ACTIONS(1350), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(911), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(917), + [anon_sym_LBRACK] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(921), + [anon_sym_switch] = ACTIONS(923), + [anon_sym_case] = ACTIONS(925), + [anon_sym_default] = ACTIONS(927), + [anon_sym_while] = ACTIONS(929), + [anon_sym_do] = ACTIONS(931), + [anon_sym_for] = ACTIONS(933), + [anon_sym_return] = ACTIONS(935), + [anon_sym_break] = ACTIONS(937), + [anon_sym_continue] = ACTIONS(939), + [anon_sym_goto] = ACTIONS(941), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_try] = ACTIONS(1352), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(1354), - [anon_sym_co_return] = ACTIONS(1356), - [anon_sym_co_yield] = ACTIONS(1358), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(945), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(947), + [anon_sym_co_return] = ACTIONS(957), + [anon_sym_co_yield] = ACTIONS(959), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [219] = { - [sym_attribute_declaration] = STATE(172), - [sym_compound_statement] = STATE(707), - [sym_attributed_statement] = STATE(708), - [sym_labeled_statement] = STATE(716), - [sym_expression_statement] = STATE(720), - [sym_if_statement] = STATE(729), - [sym_switch_statement] = STATE(730), - [sym_case_statement] = STATE(740), - [sym_while_statement] = STATE(741), - [sym_do_statement] = STATE(742), - [sym_for_statement] = STATE(743), - [sym_return_statement] = STATE(744), - [sym_break_statement] = STATE(745), - [sym_continue_statement] = STATE(747), - [sym_goto_statement] = STATE(748), - [sym__expression] = STATE(3622), - [sym_comma_expression] = STATE(6125), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_for_range_loop] = STATE(749), - [sym_co_return_statement] = STATE(750), - [sym_co_yield_statement] = STATE(751), - [sym_throw_statement] = STATE(754), - [sym_try_statement] = STATE(755), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_attributed_declarator_repeat1] = STATE(172), - [sym_identifier] = ACTIONS(1757), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym_attribute_declaration] = STATE(179), + [sym_compound_statement] = STATE(1481), + [sym_attributed_statement] = STATE(1481), + [sym_labeled_statement] = STATE(1481), + [sym_expression_statement] = STATE(1481), + [sym_if_statement] = STATE(1481), + [sym_switch_statement] = STATE(1481), + [sym_case_statement] = STATE(1481), + [sym_while_statement] = STATE(1481), + [sym_do_statement] = STATE(1481), + [sym_for_statement] = STATE(1481), + [sym_return_statement] = STATE(1481), + [sym_break_statement] = STATE(1481), + [sym_continue_statement] = STATE(1481), + [sym_goto_statement] = STATE(1481), + [sym__expression] = STATE(4212), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7175), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(1481), + [sym_co_return_statement] = STATE(1481), + [sym_co_yield_statement] = STATE(1481), + [sym_throw_statement] = STATE(1481), + [sym_try_statement] = STATE(1481), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(179), + [sym_identifier] = ACTIONS(2109), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(33), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(994), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_if] = ACTIONS(73), - [anon_sym_switch] = ACTIONS(75), - [anon_sym_case] = ACTIONS(77), - [anon_sym_default] = ACTIONS(79), - [anon_sym_while] = ACTIONS(81), - [anon_sym_do] = ACTIONS(83), - [anon_sym_for] = ACTIONS(85), - [anon_sym_return] = ACTIONS(87), - [anon_sym_break] = ACTIONS(89), - [anon_sym_continue] = ACTIONS(91), - [anon_sym_goto] = ACTIONS(93), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(1728), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(1732), + [anon_sym_LBRACK] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(1734), + [anon_sym_switch] = ACTIONS(1736), + [anon_sym_case] = ACTIONS(2111), + [anon_sym_default] = ACTIONS(2113), + [anon_sym_while] = ACTIONS(1738), + [anon_sym_do] = ACTIONS(1740), + [anon_sym_for] = ACTIONS(1742), + [anon_sym_return] = ACTIONS(1744), + [anon_sym_break] = ACTIONS(1746), + [anon_sym_continue] = ACTIONS(1748), + [anon_sym_goto] = ACTIONS(1750), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_try] = ACTIONS(121), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(125), - [anon_sym_co_return] = ACTIONS(135), - [anon_sym_co_yield] = ACTIONS(137), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(1752), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(1754), + [anon_sym_co_return] = ACTIONS(1756), + [anon_sym_co_yield] = ACTIONS(1758), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [220] = { - [sym_attribute_declaration] = STATE(220), - [sym_compound_statement] = STATE(746), - [sym_attributed_statement] = STATE(746), - [sym_labeled_statement] = STATE(746), - [sym_expression_statement] = STATE(746), - [sym_if_statement] = STATE(746), - [sym_switch_statement] = STATE(746), - [sym_case_statement] = STATE(746), - [sym_while_statement] = STATE(746), - [sym_do_statement] = STATE(746), - [sym_for_statement] = STATE(746), - [sym_return_statement] = STATE(746), - [sym_break_statement] = STATE(746), - [sym_continue_statement] = STATE(746), - [sym_goto_statement] = STATE(746), - [sym__expression] = STATE(3622), - [sym_comma_expression] = STATE(6125), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_for_range_loop] = STATE(746), - [sym_co_return_statement] = STATE(746), - [sym_co_yield_statement] = STATE(746), - [sym_throw_statement] = STATE(746), - [sym_try_statement] = STATE(746), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_attributed_declarator_repeat1] = STATE(220), - [sym_identifier] = ACTIONS(2004), - [anon_sym_LPAREN2] = ACTIONS(1780), - [anon_sym_BANG] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(1783), - [anon_sym_DASH] = ACTIONS(1786), - [anon_sym_PLUS] = ACTIONS(1786), - [anon_sym_STAR] = ACTIONS(1789), - [anon_sym_AMP] = ACTIONS(1789), - [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_COLON_COLON] = ACTIONS(1795), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1798), - [anon_sym_LBRACE] = ACTIONS(1801), - [anon_sym_LBRACK] = ACTIONS(1804), - [sym_primitive_type] = ACTIONS(1807), - [anon_sym_if] = ACTIONS(2007), - [anon_sym_switch] = ACTIONS(1813), - [anon_sym_case] = ACTIONS(1963), - [anon_sym_default] = ACTIONS(1966), - [anon_sym_while] = ACTIONS(2010), - [anon_sym_do] = ACTIONS(1825), - [anon_sym_for] = ACTIONS(2013), - [anon_sym_return] = ACTIONS(1831), - [anon_sym_break] = ACTIONS(1834), - [anon_sym_continue] = ACTIONS(1837), - [anon_sym_goto] = ACTIONS(1840), - [anon_sym_not] = ACTIONS(1786), - [anon_sym_compl] = ACTIONS(1786), - [anon_sym_DASH_DASH] = ACTIONS(1843), - [anon_sym_PLUS_PLUS] = ACTIONS(1843), - [anon_sym_sizeof] = ACTIONS(1846), - [sym_number_literal] = ACTIONS(1849), - [anon_sym_L_SQUOTE] = ACTIONS(1852), - [anon_sym_u_SQUOTE] = ACTIONS(1852), - [anon_sym_U_SQUOTE] = ACTIONS(1852), - [anon_sym_u8_SQUOTE] = ACTIONS(1852), - [anon_sym_SQUOTE] = ACTIONS(1852), - [anon_sym_L_DQUOTE] = ACTIONS(1855), - [anon_sym_u_DQUOTE] = ACTIONS(1855), - [anon_sym_U_DQUOTE] = ACTIONS(1855), - [anon_sym_u8_DQUOTE] = ACTIONS(1855), - [anon_sym_DQUOTE] = ACTIONS(1855), - [sym_true] = ACTIONS(1858), - [sym_false] = ACTIONS(1858), - [sym_null] = ACTIONS(1858), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1861), - [anon_sym_template] = ACTIONS(1864), - [anon_sym_try] = ACTIONS(1867), - [anon_sym_delete] = ACTIONS(1870), - [anon_sym_throw] = ACTIONS(1873), - [anon_sym_co_return] = ACTIONS(1876), - [anon_sym_co_yield] = ACTIONS(1879), - [anon_sym_R_DQUOTE] = ACTIONS(1882), - [anon_sym_LR_DQUOTE] = ACTIONS(1882), - [anon_sym_uR_DQUOTE] = ACTIONS(1882), - [anon_sym_UR_DQUOTE] = ACTIONS(1882), - [anon_sym_u8R_DQUOTE] = ACTIONS(1882), - [anon_sym_co_await] = ACTIONS(1885), - [anon_sym_new] = ACTIONS(1888), - [anon_sym_requires] = ACTIONS(1891), - [sym_this] = ACTIONS(1858), - [sym_nullptr] = ACTIONS(1858), + [sym_attribute_declaration] = STATE(179), + [sym_compound_statement] = STATE(1562), + [sym_attributed_statement] = STATE(1562), + [sym_labeled_statement] = STATE(1562), + [sym_expression_statement] = STATE(1562), + [sym_if_statement] = STATE(1562), + [sym_switch_statement] = STATE(1562), + [sym_case_statement] = STATE(1562), + [sym_while_statement] = STATE(1562), + [sym_do_statement] = STATE(1562), + [sym_for_statement] = STATE(1562), + [sym_return_statement] = STATE(1562), + [sym_break_statement] = STATE(1562), + [sym_continue_statement] = STATE(1562), + [sym_goto_statement] = STATE(1562), + [sym__expression] = STATE(4212), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7175), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(1562), + [sym_co_return_statement] = STATE(1562), + [sym_co_yield_statement] = STATE(1562), + [sym_throw_statement] = STATE(1562), + [sym_try_statement] = STATE(1562), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(179), + [sym_identifier] = ACTIONS(2109), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(1728), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(1732), + [anon_sym_LBRACK] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(1734), + [anon_sym_switch] = ACTIONS(1736), + [anon_sym_case] = ACTIONS(2111), + [anon_sym_default] = ACTIONS(2113), + [anon_sym_while] = ACTIONS(1738), + [anon_sym_do] = ACTIONS(1740), + [anon_sym_for] = ACTIONS(1742), + [anon_sym_return] = ACTIONS(1744), + [anon_sym_break] = ACTIONS(1746), + [anon_sym_continue] = ACTIONS(1748), + [anon_sym_goto] = ACTIONS(1750), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(1752), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(1754), + [anon_sym_co_return] = ACTIONS(1756), + [anon_sym_co_yield] = ACTIONS(1758), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [221] = { - [sym_attribute_declaration] = STATE(206), - [sym_compound_statement] = STATE(894), - [sym_attributed_statement] = STATE(894), - [sym_labeled_statement] = STATE(894), - [sym_expression_statement] = STATE(894), - [sym_if_statement] = STATE(894), - [sym_switch_statement] = STATE(894), - [sym_case_statement] = STATE(894), - [sym_while_statement] = STATE(894), - [sym_do_statement] = STATE(894), - [sym_for_statement] = STATE(894), - [sym_return_statement] = STATE(894), - [sym_break_statement] = STATE(894), - [sym_continue_statement] = STATE(894), - [sym_goto_statement] = STATE(894), - [sym__expression] = STATE(3502), - [sym_comma_expression] = STATE(6595), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_for_range_loop] = STATE(894), - [sym_co_return_statement] = STATE(894), - [sym_co_yield_statement] = STATE(894), - [sym_throw_statement] = STATE(894), - [sym_try_statement] = STATE(894), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_attributed_declarator_repeat1] = STATE(206), - [sym_identifier] = ACTIONS(1759), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym_attribute_declaration] = STATE(260), + [sym_compound_statement] = STATE(982), + [sym_attributed_statement] = STATE(982), + [sym_labeled_statement] = STATE(982), + [sym_expression_statement] = STATE(982), + [sym_if_statement] = STATE(982), + [sym_switch_statement] = STATE(982), + [sym_case_statement] = STATE(982), + [sym_while_statement] = STATE(982), + [sym_do_statement] = STATE(982), + [sym_for_statement] = STATE(982), + [sym_return_statement] = STATE(982), + [sym_break_statement] = STATE(982), + [sym_continue_statement] = STATE(982), + [sym_goto_statement] = STATE(982), + [sym__expression] = STATE(4234), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7265), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(982), + [sym_co_return_statement] = STATE(982), + [sym_co_yield_statement] = STATE(982), + [sym_throw_statement] = STATE(982), + [sym_try_statement] = STATE(982), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(260), + [sym_identifier] = ACTIONS(2101), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_LBRACK] = ACTIONS(994), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_if] = ACTIONS(175), - [anon_sym_switch] = ACTIONS(177), - [anon_sym_case] = ACTIONS(179), - [anon_sym_default] = ACTIONS(181), - [anon_sym_while] = ACTIONS(183), - [anon_sym_do] = ACTIONS(185), - [anon_sym_for] = ACTIONS(187), - [anon_sym_return] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), - [anon_sym_goto] = ACTIONS(195), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(1622), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACK] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(71), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_case] = ACTIONS(75), + [anon_sym_default] = ACTIONS(77), + [anon_sym_while] = ACTIONS(79), + [anon_sym_do] = ACTIONS(81), + [anon_sym_for] = ACTIONS(83), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_try] = ACTIONS(201), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(203), - [anon_sym_co_return] = ACTIONS(213), - [anon_sym_co_yield] = ACTIONS(215), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(127), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(131), + [anon_sym_co_return] = ACTIONS(141), + [anon_sym_co_yield] = ACTIONS(143), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [222] = { - [sym_attribute_declaration] = STATE(253), - [sym_compound_statement] = STATE(458), - [sym_attributed_statement] = STATE(459), - [sym_labeled_statement] = STATE(460), - [sym_expression_statement] = STATE(461), - [sym_if_statement] = STATE(464), - [sym_switch_statement] = STATE(466), - [sym_case_statement] = STATE(467), - [sym_while_statement] = STATE(471), - [sym_do_statement] = STATE(472), - [sym_for_statement] = STATE(473), - [sym_return_statement] = STATE(474), - [sym_break_statement] = STATE(475), - [sym_continue_statement] = STATE(477), - [sym_goto_statement] = STATE(479), - [sym__expression] = STATE(3497), - [sym_comma_expression] = STATE(6497), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_for_range_loop] = STATE(482), - [sym_co_return_statement] = STATE(470), - [sym_co_yield_statement] = STATE(469), - [sym_throw_statement] = STATE(465), - [sym_try_statement] = STATE(463), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_attributed_declarator_repeat1] = STATE(253), - [sym_identifier] = ACTIONS(2002), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym_attribute_declaration] = STATE(179), + [sym_compound_statement] = STATE(1520), + [sym_attributed_statement] = STATE(1520), + [sym_labeled_statement] = STATE(1520), + [sym_expression_statement] = STATE(1520), + [sym_if_statement] = STATE(1520), + [sym_switch_statement] = STATE(1520), + [sym_case_statement] = STATE(1520), + [sym_while_statement] = STATE(1520), + [sym_do_statement] = STATE(1520), + [sym_for_statement] = STATE(1520), + [sym_return_statement] = STATE(1520), + [sym_break_statement] = STATE(1520), + [sym_continue_statement] = STATE(1520), + [sym_goto_statement] = STATE(1520), + [sym__expression] = STATE(4212), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7175), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(1520), + [sym_co_return_statement] = STATE(1520), + [sym_co_yield_statement] = STATE(1520), + [sym_throw_statement] = STATE(1520), + [sym_try_statement] = STATE(1520), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(179), + [sym_identifier] = ACTIONS(2109), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(249), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(255), - [anon_sym_LBRACK] = ACTIONS(994), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_if] = ACTIONS(259), - [anon_sym_switch] = ACTIONS(261), - [anon_sym_case] = ACTIONS(263), - [anon_sym_default] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_do] = ACTIONS(269), - [anon_sym_for] = ACTIONS(271), - [anon_sym_return] = ACTIONS(273), - [anon_sym_break] = ACTIONS(275), - [anon_sym_continue] = ACTIONS(277), - [anon_sym_goto] = ACTIONS(279), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(1728), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(1732), + [anon_sym_LBRACK] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(1734), + [anon_sym_switch] = ACTIONS(1736), + [anon_sym_case] = ACTIONS(2111), + [anon_sym_default] = ACTIONS(2113), + [anon_sym_while] = ACTIONS(1738), + [anon_sym_do] = ACTIONS(1740), + [anon_sym_for] = ACTIONS(1742), + [anon_sym_return] = ACTIONS(1744), + [anon_sym_break] = ACTIONS(1746), + [anon_sym_continue] = ACTIONS(1748), + [anon_sym_goto] = ACTIONS(1750), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_try] = ACTIONS(283), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(285), - [anon_sym_co_return] = ACTIONS(295), - [anon_sym_co_yield] = ACTIONS(297), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(1752), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(1754), + [anon_sym_co_return] = ACTIONS(1756), + [anon_sym_co_yield] = ACTIONS(1758), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [223] = { - [sym_attribute_declaration] = STATE(172), - [sym_compound_statement] = STATE(698), - [sym_attributed_statement] = STATE(698), - [sym_labeled_statement] = STATE(698), - [sym_expression_statement] = STATE(698), - [sym_if_statement] = STATE(698), - [sym_switch_statement] = STATE(698), - [sym_case_statement] = STATE(698), - [sym_while_statement] = STATE(698), - [sym_do_statement] = STATE(698), - [sym_for_statement] = STATE(698), - [sym_return_statement] = STATE(698), - [sym_break_statement] = STATE(698), - [sym_continue_statement] = STATE(698), - [sym_goto_statement] = STATE(698), - [sym__expression] = STATE(3622), - [sym_comma_expression] = STATE(6125), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_for_range_loop] = STATE(698), - [sym_co_return_statement] = STATE(698), - [sym_co_yield_statement] = STATE(698), - [sym_throw_statement] = STATE(698), - [sym_try_statement] = STATE(698), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_attributed_declarator_repeat1] = STATE(172), - [sym_identifier] = ACTIONS(1757), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym_attribute_declaration] = STATE(230), + [sym_compound_statement] = STATE(1143), + [sym_attributed_statement] = STATE(1143), + [sym_labeled_statement] = STATE(1143), + [sym_expression_statement] = STATE(1143), + [sym_if_statement] = STATE(1143), + [sym_switch_statement] = STATE(1143), + [sym_case_statement] = STATE(1143), + [sym_while_statement] = STATE(1143), + [sym_do_statement] = STATE(1143), + [sym_for_statement] = STATE(1143), + [sym_return_statement] = STATE(1143), + [sym_break_statement] = STATE(1143), + [sym_continue_statement] = STATE(1143), + [sym_goto_statement] = STATE(1143), + [sym__expression] = STATE(4182), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7590), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(1143), + [sym_co_return_statement] = STATE(1143), + [sym_co_yield_statement] = STATE(1143), + [sym_throw_statement] = STATE(1143), + [sym_try_statement] = STATE(1143), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(230), + [sym_identifier] = ACTIONS(2115), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(33), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(994), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_if] = ACTIONS(73), - [anon_sym_switch] = ACTIONS(75), - [anon_sym_case] = ACTIONS(77), - [anon_sym_default] = ACTIONS(79), - [anon_sym_while] = ACTIONS(81), - [anon_sym_do] = ACTIONS(83), - [anon_sym_for] = ACTIONS(85), - [anon_sym_return] = ACTIONS(87), - [anon_sym_break] = ACTIONS(89), - [anon_sym_continue] = ACTIONS(91), - [anon_sym_goto] = ACTIONS(93), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACK] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(2117), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_case] = ACTIONS(2111), + [anon_sym_default] = ACTIONS(2113), + [anon_sym_while] = ACTIONS(2119), + [anon_sym_do] = ACTIONS(81), + [anon_sym_for] = ACTIONS(2121), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_try] = ACTIONS(121), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(125), - [anon_sym_co_return] = ACTIONS(135), - [anon_sym_co_yield] = ACTIONS(137), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(127), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(131), + [anon_sym_co_return] = ACTIONS(141), + [anon_sym_co_yield] = ACTIONS(143), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [224] = { - [sym_attribute_declaration] = STATE(224), - [sym_compound_statement] = STATE(413), - [sym_attributed_statement] = STATE(413), - [sym_labeled_statement] = STATE(413), - [sym_expression_statement] = STATE(413), - [sym_if_statement] = STATE(413), - [sym_switch_statement] = STATE(413), - [sym_case_statement] = STATE(413), - [sym_while_statement] = STATE(413), - [sym_do_statement] = STATE(413), - [sym_for_statement] = STATE(413), - [sym_return_statement] = STATE(413), - [sym_break_statement] = STATE(413), - [sym_continue_statement] = STATE(413), - [sym_goto_statement] = STATE(413), - [sym__expression] = STATE(3497), - [sym_comma_expression] = STATE(6497), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_for_range_loop] = STATE(413), - [sym_co_return_statement] = STATE(413), - [sym_co_yield_statement] = STATE(413), - [sym_throw_statement] = STATE(413), - [sym_try_statement] = STATE(413), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_attributed_declarator_repeat1] = STATE(224), - [sym_identifier] = ACTIONS(2016), - [anon_sym_LPAREN2] = ACTIONS(1780), - [anon_sym_BANG] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(1783), - [anon_sym_DASH] = ACTIONS(1786), - [anon_sym_PLUS] = ACTIONS(1786), - [anon_sym_STAR] = ACTIONS(1789), - [anon_sym_AMP] = ACTIONS(1789), - [anon_sym_SEMI] = ACTIONS(2019), - [anon_sym_COLON_COLON] = ACTIONS(1795), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1798), - [anon_sym_LBRACE] = ACTIONS(2022), - [anon_sym_LBRACK] = ACTIONS(1804), - [sym_primitive_type] = ACTIONS(1807), - [anon_sym_if] = ACTIONS(2025), - [anon_sym_switch] = ACTIONS(2028), - [anon_sym_case] = ACTIONS(2031), - [anon_sym_default] = ACTIONS(2034), - [anon_sym_while] = ACTIONS(2037), - [anon_sym_do] = ACTIONS(2040), - [anon_sym_for] = ACTIONS(2043), - [anon_sym_return] = ACTIONS(2046), - [anon_sym_break] = ACTIONS(2049), - [anon_sym_continue] = ACTIONS(2052), - [anon_sym_goto] = ACTIONS(2055), - [anon_sym_not] = ACTIONS(1786), - [anon_sym_compl] = ACTIONS(1786), - [anon_sym_DASH_DASH] = ACTIONS(1843), - [anon_sym_PLUS_PLUS] = ACTIONS(1843), - [anon_sym_sizeof] = ACTIONS(1846), - [sym_number_literal] = ACTIONS(1849), - [anon_sym_L_SQUOTE] = ACTIONS(1852), - [anon_sym_u_SQUOTE] = ACTIONS(1852), - [anon_sym_U_SQUOTE] = ACTIONS(1852), - [anon_sym_u8_SQUOTE] = ACTIONS(1852), - [anon_sym_SQUOTE] = ACTIONS(1852), - [anon_sym_L_DQUOTE] = ACTIONS(1855), - [anon_sym_u_DQUOTE] = ACTIONS(1855), - [anon_sym_U_DQUOTE] = ACTIONS(1855), - [anon_sym_u8_DQUOTE] = ACTIONS(1855), - [anon_sym_DQUOTE] = ACTIONS(1855), - [sym_true] = ACTIONS(1858), - [sym_false] = ACTIONS(1858), - [sym_null] = ACTIONS(1858), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1861), - [anon_sym_template] = ACTIONS(1864), - [anon_sym_try] = ACTIONS(2058), - [anon_sym_delete] = ACTIONS(1870), - [anon_sym_throw] = ACTIONS(2061), - [anon_sym_co_return] = ACTIONS(2064), - [anon_sym_co_yield] = ACTIONS(2067), - [anon_sym_R_DQUOTE] = ACTIONS(1882), - [anon_sym_LR_DQUOTE] = ACTIONS(1882), - [anon_sym_uR_DQUOTE] = ACTIONS(1882), - [anon_sym_UR_DQUOTE] = ACTIONS(1882), - [anon_sym_u8R_DQUOTE] = ACTIONS(1882), - [anon_sym_co_await] = ACTIONS(1885), - [anon_sym_new] = ACTIONS(1888), - [anon_sym_requires] = ACTIONS(1891), - [sym_this] = ACTIONS(1858), - [sym_nullptr] = ACTIONS(1858), + [sym_attribute_declaration] = STATE(189), + [sym_compound_statement] = STATE(1086), + [sym_attributed_statement] = STATE(1086), + [sym_labeled_statement] = STATE(1086), + [sym_expression_statement] = STATE(1086), + [sym_if_statement] = STATE(1086), + [sym_switch_statement] = STATE(1086), + [sym_case_statement] = STATE(1086), + [sym_while_statement] = STATE(1086), + [sym_do_statement] = STATE(1086), + [sym_for_statement] = STATE(1086), + [sym_return_statement] = STATE(1086), + [sym_break_statement] = STATE(1086), + [sym_continue_statement] = STATE(1086), + [sym_goto_statement] = STATE(1086), + [sym__expression] = STATE(4126), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(6964), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(1086), + [sym_co_return_statement] = STATE(1086), + [sym_co_yield_statement] = STATE(1086), + [sym_throw_statement] = STATE(1086), + [sym_try_statement] = STATE(1086), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(189), + [sym_identifier] = ACTIONS(2099), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(911), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(917), + [anon_sym_LBRACK] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(921), + [anon_sym_switch] = ACTIONS(923), + [anon_sym_case] = ACTIONS(925), + [anon_sym_default] = ACTIONS(927), + [anon_sym_while] = ACTIONS(929), + [anon_sym_do] = ACTIONS(931), + [anon_sym_for] = ACTIONS(933), + [anon_sym_return] = ACTIONS(935), + [anon_sym_break] = ACTIONS(937), + [anon_sym_continue] = ACTIONS(939), + [anon_sym_goto] = ACTIONS(941), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(945), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(947), + [anon_sym_co_return] = ACTIONS(957), + [anon_sym_co_yield] = ACTIONS(959), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [225] = { - [sym_attribute_declaration] = STATE(206), - [sym_compound_statement] = STATE(892), - [sym_attributed_statement] = STATE(892), - [sym_labeled_statement] = STATE(892), - [sym_expression_statement] = STATE(892), - [sym_if_statement] = STATE(892), - [sym_switch_statement] = STATE(892), - [sym_case_statement] = STATE(892), - [sym_while_statement] = STATE(892), - [sym_do_statement] = STATE(892), - [sym_for_statement] = STATE(892), - [sym_return_statement] = STATE(892), - [sym_break_statement] = STATE(892), - [sym_continue_statement] = STATE(892), - [sym_goto_statement] = STATE(892), - [sym__expression] = STATE(3502), - [sym_comma_expression] = STATE(6595), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_for_range_loop] = STATE(892), - [sym_co_return_statement] = STATE(892), - [sym_co_yield_statement] = STATE(892), - [sym_throw_statement] = STATE(892), - [sym_try_statement] = STATE(892), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_attributed_declarator_repeat1] = STATE(206), - [sym_identifier] = ACTIONS(1759), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym_attribute_declaration] = STATE(260), + [sym_compound_statement] = STATE(1073), + [sym_attributed_statement] = STATE(1073), + [sym_labeled_statement] = STATE(1073), + [sym_expression_statement] = STATE(1073), + [sym_if_statement] = STATE(1073), + [sym_switch_statement] = STATE(1073), + [sym_case_statement] = STATE(1073), + [sym_while_statement] = STATE(1073), + [sym_do_statement] = STATE(1073), + [sym_for_statement] = STATE(1073), + [sym_return_statement] = STATE(1073), + [sym_break_statement] = STATE(1073), + [sym_continue_statement] = STATE(1073), + [sym_goto_statement] = STATE(1073), + [sym__expression] = STATE(4234), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7265), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(1073), + [sym_co_return_statement] = STATE(1073), + [sym_co_yield_statement] = STATE(1073), + [sym_throw_statement] = STATE(1073), + [sym_try_statement] = STATE(1073), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(260), + [sym_identifier] = ACTIONS(2101), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_LBRACK] = ACTIONS(994), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_if] = ACTIONS(175), - [anon_sym_switch] = ACTIONS(177), - [anon_sym_case] = ACTIONS(179), - [anon_sym_default] = ACTIONS(181), - [anon_sym_while] = ACTIONS(183), - [anon_sym_do] = ACTIONS(185), - [anon_sym_for] = ACTIONS(187), - [anon_sym_return] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), - [anon_sym_goto] = ACTIONS(195), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(1622), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACK] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(71), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_case] = ACTIONS(75), + [anon_sym_default] = ACTIONS(77), + [anon_sym_while] = ACTIONS(79), + [anon_sym_do] = ACTIONS(81), + [anon_sym_for] = ACTIONS(83), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_try] = ACTIONS(201), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(203), - [anon_sym_co_return] = ACTIONS(213), - [anon_sym_co_yield] = ACTIONS(215), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(127), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(131), + [anon_sym_co_return] = ACTIONS(141), + [anon_sym_co_yield] = ACTIONS(143), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [226] = { - [sym_attribute_declaration] = STATE(238), - [sym_compound_statement] = STATE(562), - [sym_attributed_statement] = STATE(562), - [sym_labeled_statement] = STATE(562), - [sym_expression_statement] = STATE(562), - [sym_if_statement] = STATE(562), - [sym_switch_statement] = STATE(562), - [sym_case_statement] = STATE(562), - [sym_while_statement] = STATE(562), - [sym_do_statement] = STATE(562), - [sym_for_statement] = STATE(562), - [sym_return_statement] = STATE(562), - [sym_break_statement] = STATE(562), - [sym_continue_statement] = STATE(562), - [sym_goto_statement] = STATE(562), - [sym__expression] = STATE(3622), - [sym_comma_expression] = STATE(6125), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_for_range_loop] = STATE(562), - [sym_co_return_statement] = STATE(562), - [sym_co_yield_statement] = STATE(562), - [sym_throw_statement] = STATE(562), - [sym_try_statement] = STATE(562), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_attributed_declarator_repeat1] = STATE(238), - [sym_identifier] = ACTIONS(1763), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym_attribute_declaration] = STATE(260), + [sym_compound_statement] = STATE(1071), + [sym_attributed_statement] = STATE(1063), + [sym_labeled_statement] = STATE(1060), + [sym_expression_statement] = STATE(1059), + [sym_if_statement] = STATE(1058), + [sym_switch_statement] = STATE(1057), + [sym_case_statement] = STATE(1055), + [sym_while_statement] = STATE(1051), + [sym_do_statement] = STATE(1047), + [sym_for_statement] = STATE(1043), + [sym_return_statement] = STATE(1034), + [sym_break_statement] = STATE(1033), + [sym_continue_statement] = STATE(1019), + [sym_goto_statement] = STATE(1016), + [sym__expression] = STATE(4234), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7265), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(1015), + [sym_co_return_statement] = STATE(1013), + [sym_co_yield_statement] = STATE(1012), + [sym_throw_statement] = STATE(1008), + [sym_try_statement] = STATE(993), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(260), + [sym_identifier] = ACTIONS(2101), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(33), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(994), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_if] = ACTIONS(1765), - [anon_sym_switch] = ACTIONS(75), - [anon_sym_case] = ACTIONS(1767), - [anon_sym_default] = ACTIONS(1769), - [anon_sym_while] = ACTIONS(1771), - [anon_sym_do] = ACTIONS(83), - [anon_sym_for] = ACTIONS(1773), - [anon_sym_return] = ACTIONS(87), - [anon_sym_break] = ACTIONS(89), - [anon_sym_continue] = ACTIONS(91), - [anon_sym_goto] = ACTIONS(93), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(1622), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACK] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(71), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_case] = ACTIONS(75), + [anon_sym_default] = ACTIONS(77), + [anon_sym_while] = ACTIONS(79), + [anon_sym_do] = ACTIONS(81), + [anon_sym_for] = ACTIONS(83), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_try] = ACTIONS(121), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(125), - [anon_sym_co_return] = ACTIONS(135), - [anon_sym_co_yield] = ACTIONS(137), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(127), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(131), + [anon_sym_co_return] = ACTIONS(141), + [anon_sym_co_yield] = ACTIONS(143), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [227] = { - [sym_attribute_declaration] = STATE(151), - [sym_compound_statement] = STATE(633), - [sym_attributed_statement] = STATE(633), - [sym_labeled_statement] = STATE(633), - [sym_expression_statement] = STATE(633), - [sym_if_statement] = STATE(633), - [sym_switch_statement] = STATE(633), - [sym_case_statement] = STATE(633), - [sym_while_statement] = STATE(633), - [sym_do_statement] = STATE(633), - [sym_for_statement] = STATE(633), - [sym_return_statement] = STATE(633), - [sym_break_statement] = STATE(633), - [sym_continue_statement] = STATE(633), - [sym_goto_statement] = STATE(633), - [sym__expression] = STATE(3522), - [sym_comma_expression] = STATE(6276), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_for_range_loop] = STATE(633), - [sym_co_return_statement] = STATE(633), - [sym_co_yield_statement] = STATE(633), - [sym_throw_statement] = STATE(633), - [sym_try_statement] = STATE(633), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_attributed_declarator_repeat1] = STATE(151), - [sym_identifier] = ACTIONS(1761), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym_attribute_declaration] = STATE(244), + [sym_compound_statement] = STATE(419), + [sym_attributed_statement] = STATE(419), + [sym_labeled_statement] = STATE(419), + [sym_expression_statement] = STATE(419), + [sym_if_statement] = STATE(419), + [sym_switch_statement] = STATE(419), + [sym_case_statement] = STATE(419), + [sym_while_statement] = STATE(419), + [sym_do_statement] = STATE(419), + [sym_for_statement] = STATE(419), + [sym_return_statement] = STATE(419), + [sym_break_statement] = STATE(419), + [sym_continue_statement] = STATE(419), + [sym_goto_statement] = STATE(419), + [sym__expression] = STATE(4160), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7618), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(419), + [sym_co_return_statement] = STATE(419), + [sym_co_yield_statement] = STATE(419), + [sym_throw_statement] = STATE(419), + [sym_try_statement] = STATE(419), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(244), + [sym_identifier] = ACTIONS(2105), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(660), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(666), - [anon_sym_LBRACK] = ACTIONS(994), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_if] = ACTIONS(670), - [anon_sym_switch] = ACTIONS(672), - [anon_sym_case] = ACTIONS(674), - [anon_sym_default] = ACTIONS(676), - [anon_sym_while] = ACTIONS(678), - [anon_sym_do] = ACTIONS(680), - [anon_sym_for] = ACTIONS(682), - [anon_sym_return] = ACTIONS(684), - [anon_sym_break] = ACTIONS(686), - [anon_sym_continue] = ACTIONS(688), - [anon_sym_goto] = ACTIONS(690), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(245), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(251), + [anon_sym_LBRACK] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(255), + [anon_sym_switch] = ACTIONS(257), + [anon_sym_case] = ACTIONS(259), + [anon_sym_default] = ACTIONS(261), + [anon_sym_while] = ACTIONS(263), + [anon_sym_do] = ACTIONS(265), + [anon_sym_for] = ACTIONS(267), + [anon_sym_return] = ACTIONS(269), + [anon_sym_break] = ACTIONS(271), + [anon_sym_continue] = ACTIONS(273), + [anon_sym_goto] = ACTIONS(275), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_try] = ACTIONS(694), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(696), - [anon_sym_co_return] = ACTIONS(706), - [anon_sym_co_yield] = ACTIONS(708), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(279), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(281), + [anon_sym_co_return] = ACTIONS(291), + [anon_sym_co_yield] = ACTIONS(293), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [228] = { - [sym_attribute_declaration] = STATE(253), - [sym_compound_statement] = STATE(427), - [sym_attributed_statement] = STATE(428), - [sym_labeled_statement] = STATE(429), - [sym_expression_statement] = STATE(430), - [sym_if_statement] = STATE(431), - [sym_switch_statement] = STATE(432), - [sym_case_statement] = STATE(433), - [sym_while_statement] = STATE(434), - [sym_do_statement] = STATE(435), - [sym_for_statement] = STATE(437), - [sym_return_statement] = STATE(440), - [sym_break_statement] = STATE(442), - [sym_continue_statement] = STATE(443), - [sym_goto_statement] = STATE(445), - [sym__expression] = STATE(3497), - [sym_comma_expression] = STATE(6497), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_for_range_loop] = STATE(446), - [sym_co_return_statement] = STATE(449), - [sym_co_yield_statement] = STATE(451), - [sym_throw_statement] = STATE(454), - [sym_try_statement] = STATE(456), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_attributed_declarator_repeat1] = STATE(253), - [sym_identifier] = ACTIONS(2002), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym_attribute_declaration] = STATE(179), + [sym_compound_statement] = STATE(1519), + [sym_attributed_statement] = STATE(1519), + [sym_labeled_statement] = STATE(1519), + [sym_expression_statement] = STATE(1519), + [sym_if_statement] = STATE(1519), + [sym_switch_statement] = STATE(1519), + [sym_case_statement] = STATE(1519), + [sym_while_statement] = STATE(1519), + [sym_do_statement] = STATE(1519), + [sym_for_statement] = STATE(1519), + [sym_return_statement] = STATE(1519), + [sym_break_statement] = STATE(1519), + [sym_continue_statement] = STATE(1519), + [sym_goto_statement] = STATE(1519), + [sym__expression] = STATE(4212), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7175), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(1519), + [sym_co_return_statement] = STATE(1519), + [sym_co_yield_statement] = STATE(1519), + [sym_throw_statement] = STATE(1519), + [sym_try_statement] = STATE(1519), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(179), + [sym_identifier] = ACTIONS(2109), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(249), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(255), - [anon_sym_LBRACK] = ACTIONS(994), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_if] = ACTIONS(259), - [anon_sym_switch] = ACTIONS(261), - [anon_sym_case] = ACTIONS(263), - [anon_sym_default] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_do] = ACTIONS(269), - [anon_sym_for] = ACTIONS(271), - [anon_sym_return] = ACTIONS(273), - [anon_sym_break] = ACTIONS(275), - [anon_sym_continue] = ACTIONS(277), - [anon_sym_goto] = ACTIONS(279), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(1728), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(1732), + [anon_sym_LBRACK] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(1734), + [anon_sym_switch] = ACTIONS(1736), + [anon_sym_case] = ACTIONS(2111), + [anon_sym_default] = ACTIONS(2113), + [anon_sym_while] = ACTIONS(1738), + [anon_sym_do] = ACTIONS(1740), + [anon_sym_for] = ACTIONS(1742), + [anon_sym_return] = ACTIONS(1744), + [anon_sym_break] = ACTIONS(1746), + [anon_sym_continue] = ACTIONS(1748), + [anon_sym_goto] = ACTIONS(1750), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_try] = ACTIONS(283), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(285), - [anon_sym_co_return] = ACTIONS(295), - [anon_sym_co_yield] = ACTIONS(297), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(1752), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(1754), + [anon_sym_co_return] = ACTIONS(1756), + [anon_sym_co_yield] = ACTIONS(1758), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [229] = { - [sym_attribute_declaration] = STATE(253), - [sym_compound_statement] = STATE(426), - [sym_attributed_statement] = STATE(426), - [sym_labeled_statement] = STATE(426), - [sym_expression_statement] = STATE(426), - [sym_if_statement] = STATE(426), - [sym_switch_statement] = STATE(426), - [sym_case_statement] = STATE(426), - [sym_while_statement] = STATE(426), - [sym_do_statement] = STATE(426), - [sym_for_statement] = STATE(426), - [sym_return_statement] = STATE(426), - [sym_break_statement] = STATE(426), - [sym_continue_statement] = STATE(426), - [sym_goto_statement] = STATE(426), - [sym__expression] = STATE(3497), - [sym_comma_expression] = STATE(6497), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_for_range_loop] = STATE(426), - [sym_co_return_statement] = STATE(426), - [sym_co_yield_statement] = STATE(426), - [sym_throw_statement] = STATE(426), - [sym_try_statement] = STATE(426), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_attributed_declarator_repeat1] = STATE(253), - [sym_identifier] = ACTIONS(2002), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym_attribute_declaration] = STATE(244), + [sym_compound_statement] = STATE(396), + [sym_attributed_statement] = STATE(396), + [sym_labeled_statement] = STATE(396), + [sym_expression_statement] = STATE(396), + [sym_if_statement] = STATE(396), + [sym_switch_statement] = STATE(396), + [sym_case_statement] = STATE(396), + [sym_while_statement] = STATE(396), + [sym_do_statement] = STATE(396), + [sym_for_statement] = STATE(396), + [sym_return_statement] = STATE(396), + [sym_break_statement] = STATE(396), + [sym_continue_statement] = STATE(396), + [sym_goto_statement] = STATE(396), + [sym__expression] = STATE(4160), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7618), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(396), + [sym_co_return_statement] = STATE(396), + [sym_co_yield_statement] = STATE(396), + [sym_throw_statement] = STATE(396), + [sym_try_statement] = STATE(396), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(244), + [sym_identifier] = ACTIONS(2105), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(249), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(255), - [anon_sym_LBRACK] = ACTIONS(994), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_if] = ACTIONS(259), - [anon_sym_switch] = ACTIONS(261), - [anon_sym_case] = ACTIONS(263), - [anon_sym_default] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_do] = ACTIONS(269), - [anon_sym_for] = ACTIONS(271), - [anon_sym_return] = ACTIONS(273), - [anon_sym_break] = ACTIONS(275), - [anon_sym_continue] = ACTIONS(277), - [anon_sym_goto] = ACTIONS(279), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(245), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(251), + [anon_sym_LBRACK] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(255), + [anon_sym_switch] = ACTIONS(257), + [anon_sym_case] = ACTIONS(259), + [anon_sym_default] = ACTIONS(261), + [anon_sym_while] = ACTIONS(263), + [anon_sym_do] = ACTIONS(265), + [anon_sym_for] = ACTIONS(267), + [anon_sym_return] = ACTIONS(269), + [anon_sym_break] = ACTIONS(271), + [anon_sym_continue] = ACTIONS(273), + [anon_sym_goto] = ACTIONS(275), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_try] = ACTIONS(283), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(285), - [anon_sym_co_return] = ACTIONS(295), - [anon_sym_co_yield] = ACTIONS(297), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(279), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(281), + [anon_sym_co_return] = ACTIONS(291), + [anon_sym_co_yield] = ACTIONS(293), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [230] = { - [sym_attribute_declaration] = STATE(206), - [sym_compound_statement] = STATE(557), - [sym_attributed_statement] = STATE(868), - [sym_labeled_statement] = STATE(867), - [sym_expression_statement] = STATE(866), - [sym_if_statement] = STATE(865), - [sym_switch_statement] = STATE(864), - [sym_case_statement] = STATE(863), - [sym_while_statement] = STATE(862), - [sym_do_statement] = STATE(860), - [sym_for_statement] = STATE(859), - [sym_return_statement] = STATE(858), - [sym_break_statement] = STATE(857), - [sym_continue_statement] = STATE(856), - [sym_goto_statement] = STATE(855), - [sym__expression] = STATE(3502), - [sym_comma_expression] = STATE(6595), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_for_range_loop] = STATE(854), - [sym_co_return_statement] = STATE(853), - [sym_co_yield_statement] = STATE(852), + [sym_attribute_declaration] = STATE(274), + [sym_compound_statement] = STATE(850), + [sym_attributed_statement] = STATE(850), + [sym_labeled_statement] = STATE(850), + [sym_expression_statement] = STATE(850), + [sym_if_statement] = STATE(850), + [sym_switch_statement] = STATE(850), + [sym_case_statement] = STATE(850), + [sym_while_statement] = STATE(850), + [sym_do_statement] = STATE(850), + [sym_for_statement] = STATE(850), + [sym_return_statement] = STATE(850), + [sym_break_statement] = STATE(850), + [sym_continue_statement] = STATE(850), + [sym_goto_statement] = STATE(850), + [sym__expression] = STATE(4182), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7590), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(850), + [sym_co_return_statement] = STATE(850), + [sym_co_yield_statement] = STATE(850), [sym_throw_statement] = STATE(850), - [sym_try_statement] = STATE(846), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_attributed_declarator_repeat1] = STATE(206), - [sym_identifier] = ACTIONS(1759), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym_try_statement] = STATE(850), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(274), + [sym_identifier] = ACTIONS(2115), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_LBRACK] = ACTIONS(994), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_if] = ACTIONS(175), - [anon_sym_switch] = ACTIONS(177), - [anon_sym_case] = ACTIONS(179), - [anon_sym_default] = ACTIONS(181), - [anon_sym_while] = ACTIONS(183), - [anon_sym_do] = ACTIONS(185), - [anon_sym_for] = ACTIONS(187), - [anon_sym_return] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), - [anon_sym_goto] = ACTIONS(195), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACK] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(2117), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_case] = ACTIONS(2111), + [anon_sym_default] = ACTIONS(2113), + [anon_sym_while] = ACTIONS(2119), + [anon_sym_do] = ACTIONS(81), + [anon_sym_for] = ACTIONS(2121), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_try] = ACTIONS(201), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(203), - [anon_sym_co_return] = ACTIONS(213), - [anon_sym_co_yield] = ACTIONS(215), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(127), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(131), + [anon_sym_co_return] = ACTIONS(141), + [anon_sym_co_yield] = ACTIONS(143), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [231] = { - [sym_attribute_declaration] = STATE(238), - [sym_compound_statement] = STATE(587), - [sym_attributed_statement] = STATE(587), - [sym_labeled_statement] = STATE(587), - [sym_expression_statement] = STATE(587), - [sym_if_statement] = STATE(587), - [sym_switch_statement] = STATE(587), - [sym_case_statement] = STATE(587), - [sym_while_statement] = STATE(587), - [sym_do_statement] = STATE(587), - [sym_for_statement] = STATE(587), - [sym_return_statement] = STATE(587), - [sym_break_statement] = STATE(587), - [sym_continue_statement] = STATE(587), - [sym_goto_statement] = STATE(587), - [sym__expression] = STATE(3622), - [sym_comma_expression] = STATE(6125), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_for_range_loop] = STATE(587), - [sym_co_return_statement] = STATE(587), - [sym_co_yield_statement] = STATE(587), - [sym_throw_statement] = STATE(587), - [sym_try_statement] = STATE(587), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_attributed_declarator_repeat1] = STATE(238), - [sym_identifier] = ACTIONS(1763), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym_attribute_declaration] = STATE(230), + [sym_compound_statement] = STATE(1144), + [sym_attributed_statement] = STATE(1144), + [sym_labeled_statement] = STATE(1144), + [sym_expression_statement] = STATE(1144), + [sym_if_statement] = STATE(1144), + [sym_switch_statement] = STATE(1144), + [sym_case_statement] = STATE(1144), + [sym_while_statement] = STATE(1144), + [sym_do_statement] = STATE(1144), + [sym_for_statement] = STATE(1144), + [sym_return_statement] = STATE(1144), + [sym_break_statement] = STATE(1144), + [sym_continue_statement] = STATE(1144), + [sym_goto_statement] = STATE(1144), + [sym__expression] = STATE(4182), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7590), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(1144), + [sym_co_return_statement] = STATE(1144), + [sym_co_yield_statement] = STATE(1144), + [sym_throw_statement] = STATE(1144), + [sym_try_statement] = STATE(1144), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(230), + [sym_identifier] = ACTIONS(2115), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(33), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(994), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_if] = ACTIONS(1765), - [anon_sym_switch] = ACTIONS(75), - [anon_sym_case] = ACTIONS(1767), - [anon_sym_default] = ACTIONS(1769), - [anon_sym_while] = ACTIONS(1771), - [anon_sym_do] = ACTIONS(83), - [anon_sym_for] = ACTIONS(1773), - [anon_sym_return] = ACTIONS(87), - [anon_sym_break] = ACTIONS(89), - [anon_sym_continue] = ACTIONS(91), - [anon_sym_goto] = ACTIONS(93), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACK] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(2117), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_case] = ACTIONS(2111), + [anon_sym_default] = ACTIONS(2113), + [anon_sym_while] = ACTIONS(2119), + [anon_sym_do] = ACTIONS(81), + [anon_sym_for] = ACTIONS(2121), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_try] = ACTIONS(121), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(125), - [anon_sym_co_return] = ACTIONS(135), - [anon_sym_co_yield] = ACTIONS(137), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(127), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(131), + [anon_sym_co_return] = ACTIONS(141), + [anon_sym_co_yield] = ACTIONS(143), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [232] = { - [sym_attribute_declaration] = STATE(238), - [sym_compound_statement] = STATE(5796), - [sym_attributed_statement] = STATE(5796), - [sym_labeled_statement] = STATE(5796), - [sym_expression_statement] = STATE(5796), - [sym_if_statement] = STATE(5796), - [sym_switch_statement] = STATE(5796), - [sym_case_statement] = STATE(5796), - [sym_while_statement] = STATE(5796), - [sym_do_statement] = STATE(5796), - [sym_for_statement] = STATE(5796), - [sym_return_statement] = STATE(5796), - [sym_break_statement] = STATE(5796), - [sym_continue_statement] = STATE(5796), - [sym_goto_statement] = STATE(5796), - [sym__expression] = STATE(3622), - [sym_comma_expression] = STATE(6125), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_for_range_loop] = STATE(5796), - [sym_co_return_statement] = STATE(5796), - [sym_co_yield_statement] = STATE(5796), - [sym_throw_statement] = STATE(5796), - [sym_try_statement] = STATE(5796), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_attributed_declarator_repeat1] = STATE(238), - [sym_identifier] = ACTIONS(1763), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym_attribute_declaration] = STATE(179), + [sym_compound_statement] = STATE(1529), + [sym_attributed_statement] = STATE(1529), + [sym_labeled_statement] = STATE(1529), + [sym_expression_statement] = STATE(1529), + [sym_if_statement] = STATE(1529), + [sym_switch_statement] = STATE(1529), + [sym_case_statement] = STATE(1529), + [sym_while_statement] = STATE(1529), + [sym_do_statement] = STATE(1529), + [sym_for_statement] = STATE(1529), + [sym_return_statement] = STATE(1529), + [sym_break_statement] = STATE(1529), + [sym_continue_statement] = STATE(1529), + [sym_goto_statement] = STATE(1529), + [sym__expression] = STATE(4212), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7175), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(1529), + [sym_co_return_statement] = STATE(1529), + [sym_co_yield_statement] = STATE(1529), + [sym_throw_statement] = STATE(1529), + [sym_try_statement] = STATE(1529), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(179), + [sym_identifier] = ACTIONS(2109), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(33), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(994), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_if] = ACTIONS(1765), - [anon_sym_switch] = ACTIONS(75), - [anon_sym_case] = ACTIONS(1767), - [anon_sym_default] = ACTIONS(1769), - [anon_sym_while] = ACTIONS(1771), - [anon_sym_do] = ACTIONS(83), - [anon_sym_for] = ACTIONS(1773), - [anon_sym_return] = ACTIONS(87), - [anon_sym_break] = ACTIONS(89), - [anon_sym_continue] = ACTIONS(91), - [anon_sym_goto] = ACTIONS(93), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(1728), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(1732), + [anon_sym_LBRACK] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(1734), + [anon_sym_switch] = ACTIONS(1736), + [anon_sym_case] = ACTIONS(2111), + [anon_sym_default] = ACTIONS(2113), + [anon_sym_while] = ACTIONS(1738), + [anon_sym_do] = ACTIONS(1740), + [anon_sym_for] = ACTIONS(1742), + [anon_sym_return] = ACTIONS(1744), + [anon_sym_break] = ACTIONS(1746), + [anon_sym_continue] = ACTIONS(1748), + [anon_sym_goto] = ACTIONS(1750), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_try] = ACTIONS(121), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(125), - [anon_sym_co_return] = ACTIONS(135), - [anon_sym_co_yield] = ACTIONS(137), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(1752), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(1754), + [anon_sym_co_return] = ACTIONS(1756), + [anon_sym_co_yield] = ACTIONS(1758), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [233] = { - [sym_attribute_declaration] = STATE(149), - [sym_compound_statement] = STATE(1259), - [sym_attributed_statement] = STATE(1259), - [sym_labeled_statement] = STATE(1259), - [sym_expression_statement] = STATE(1259), - [sym_if_statement] = STATE(1259), - [sym_switch_statement] = STATE(1259), - [sym_case_statement] = STATE(1259), - [sym_while_statement] = STATE(1259), - [sym_do_statement] = STATE(1259), - [sym_for_statement] = STATE(1259), - [sym_return_statement] = STATE(1259), - [sym_break_statement] = STATE(1259), - [sym_continue_statement] = STATE(1259), - [sym_goto_statement] = STATE(1259), - [sym__expression] = STATE(3545), - [sym_comma_expression] = STATE(6215), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_for_range_loop] = STATE(1259), - [sym_co_return_statement] = STATE(1259), - [sym_co_yield_statement] = STATE(1259), - [sym_throw_statement] = STATE(1259), - [sym_try_statement] = STATE(1259), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_attributed_declarator_repeat1] = STATE(149), - [sym_identifier] = ACTIONS(1775), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym_attribute_declaration] = STATE(260), + [sym_compound_statement] = STATE(1118), + [sym_attributed_statement] = STATE(1118), + [sym_labeled_statement] = STATE(1118), + [sym_expression_statement] = STATE(1118), + [sym_if_statement] = STATE(1118), + [sym_switch_statement] = STATE(1118), + [sym_case_statement] = STATE(1118), + [sym_while_statement] = STATE(1118), + [sym_do_statement] = STATE(1118), + [sym_for_statement] = STATE(1118), + [sym_return_statement] = STATE(1118), + [sym_break_statement] = STATE(1118), + [sym_continue_statement] = STATE(1118), + [sym_goto_statement] = STATE(1118), + [sym__expression] = STATE(4234), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7265), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(1118), + [sym_co_return_statement] = STATE(1118), + [sym_co_yield_statement] = STATE(1118), + [sym_throw_statement] = STATE(1118), + [sym_try_statement] = STATE(1118), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(260), + [sym_identifier] = ACTIONS(2101), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(1328), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(1332), - [anon_sym_LBRACK] = ACTIONS(994), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_if] = ACTIONS(1334), - [anon_sym_switch] = ACTIONS(1336), - [anon_sym_case] = ACTIONS(1767), - [anon_sym_default] = ACTIONS(1769), - [anon_sym_while] = ACTIONS(1338), - [anon_sym_do] = ACTIONS(1340), - [anon_sym_for] = ACTIONS(1342), - [anon_sym_return] = ACTIONS(1344), - [anon_sym_break] = ACTIONS(1346), - [anon_sym_continue] = ACTIONS(1348), - [anon_sym_goto] = ACTIONS(1350), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(1622), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACK] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(71), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_case] = ACTIONS(75), + [anon_sym_default] = ACTIONS(77), + [anon_sym_while] = ACTIONS(79), + [anon_sym_do] = ACTIONS(81), + [anon_sym_for] = ACTIONS(83), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_try] = ACTIONS(1352), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(1354), - [anon_sym_co_return] = ACTIONS(1356), - [anon_sym_co_yield] = ACTIONS(1358), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(127), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(131), + [anon_sym_co_return] = ACTIONS(141), + [anon_sym_co_yield] = ACTIONS(143), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [234] = { - [sym_attribute_declaration] = STATE(172), - [sym_compound_statement] = STATE(561), - [sym_attributed_statement] = STATE(561), - [sym_labeled_statement] = STATE(561), - [sym_expression_statement] = STATE(561), - [sym_if_statement] = STATE(561), - [sym_switch_statement] = STATE(561), - [sym_case_statement] = STATE(561), - [sym_while_statement] = STATE(561), - [sym_do_statement] = STATE(561), - [sym_for_statement] = STATE(561), - [sym_return_statement] = STATE(561), - [sym_break_statement] = STATE(561), - [sym_continue_statement] = STATE(561), - [sym_goto_statement] = STATE(561), - [sym__expression] = STATE(3622), - [sym_comma_expression] = STATE(6125), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_for_range_loop] = STATE(561), - [sym_co_return_statement] = STATE(561), - [sym_co_yield_statement] = STATE(561), - [sym_throw_statement] = STATE(561), - [sym_try_statement] = STATE(561), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_attributed_declarator_repeat1] = STATE(172), - [sym_identifier] = ACTIONS(1757), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym_attribute_declaration] = STATE(260), + [sym_compound_statement] = STATE(1155), + [sym_attributed_statement] = STATE(1155), + [sym_labeled_statement] = STATE(1155), + [sym_expression_statement] = STATE(1155), + [sym_if_statement] = STATE(1155), + [sym_switch_statement] = STATE(1155), + [sym_case_statement] = STATE(1155), + [sym_while_statement] = STATE(1155), + [sym_do_statement] = STATE(1155), + [sym_for_statement] = STATE(1155), + [sym_return_statement] = STATE(1155), + [sym_break_statement] = STATE(1155), + [sym_continue_statement] = STATE(1155), + [sym_goto_statement] = STATE(1155), + [sym__expression] = STATE(4234), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7265), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(1155), + [sym_co_return_statement] = STATE(1155), + [sym_co_yield_statement] = STATE(1155), + [sym_throw_statement] = STATE(1155), + [sym_try_statement] = STATE(1155), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(260), + [sym_identifier] = ACTIONS(2101), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(33), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(994), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_if] = ACTIONS(73), - [anon_sym_switch] = ACTIONS(75), - [anon_sym_case] = ACTIONS(77), - [anon_sym_default] = ACTIONS(79), - [anon_sym_while] = ACTIONS(81), - [anon_sym_do] = ACTIONS(83), - [anon_sym_for] = ACTIONS(85), - [anon_sym_return] = ACTIONS(87), - [anon_sym_break] = ACTIONS(89), - [anon_sym_continue] = ACTIONS(91), - [anon_sym_goto] = ACTIONS(93), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(1622), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACK] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(71), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_case] = ACTIONS(75), + [anon_sym_default] = ACTIONS(77), + [anon_sym_while] = ACTIONS(79), + [anon_sym_do] = ACTIONS(81), + [anon_sym_for] = ACTIONS(83), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_try] = ACTIONS(121), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(125), - [anon_sym_co_return] = ACTIONS(135), - [anon_sym_co_yield] = ACTIONS(137), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(127), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(131), + [anon_sym_co_return] = ACTIONS(141), + [anon_sym_co_yield] = ACTIONS(143), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [235] = { - [sym_attribute_declaration] = STATE(253), - [sym_compound_statement] = STATE(425), - [sym_attributed_statement] = STATE(425), - [sym_labeled_statement] = STATE(425), - [sym_expression_statement] = STATE(425), - [sym_if_statement] = STATE(425), - [sym_switch_statement] = STATE(425), - [sym_case_statement] = STATE(425), - [sym_while_statement] = STATE(425), - [sym_do_statement] = STATE(425), - [sym_for_statement] = STATE(425), - [sym_return_statement] = STATE(425), - [sym_break_statement] = STATE(425), - [sym_continue_statement] = STATE(425), - [sym_goto_statement] = STATE(425), - [sym__expression] = STATE(3497), - [sym_comma_expression] = STATE(6497), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_for_range_loop] = STATE(425), - [sym_co_return_statement] = STATE(425), - [sym_co_yield_statement] = STATE(425), - [sym_throw_statement] = STATE(425), - [sym_try_statement] = STATE(425), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_attributed_declarator_repeat1] = STATE(253), - [sym_identifier] = ACTIONS(2002), - [anon_sym_LPAREN2] = ACTIONS(984), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(249), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(255), - [anon_sym_LBRACK] = ACTIONS(994), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_if] = ACTIONS(259), - [anon_sym_switch] = ACTIONS(261), - [anon_sym_case] = ACTIONS(263), - [anon_sym_default] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_do] = ACTIONS(269), - [anon_sym_for] = ACTIONS(271), - [anon_sym_return] = ACTIONS(273), - [anon_sym_break] = ACTIONS(275), - [anon_sym_continue] = ACTIONS(277), - [anon_sym_goto] = ACTIONS(279), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_try] = ACTIONS(283), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(285), - [anon_sym_co_return] = ACTIONS(295), - [anon_sym_co_yield] = ACTIONS(297), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [sym_attribute_declaration] = STATE(235), + [sym_compound_statement] = STATE(850), + [sym_attributed_statement] = STATE(850), + [sym_labeled_statement] = STATE(850), + [sym_expression_statement] = STATE(850), + [sym_if_statement] = STATE(850), + [sym_switch_statement] = STATE(850), + [sym_case_statement] = STATE(850), + [sym_while_statement] = STATE(850), + [sym_do_statement] = STATE(850), + [sym_for_statement] = STATE(850), + [sym_return_statement] = STATE(850), + [sym_break_statement] = STATE(850), + [sym_continue_statement] = STATE(850), + [sym_goto_statement] = STATE(850), + [sym__expression] = STATE(4234), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7265), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(850), + [sym_co_return_statement] = STATE(850), + [sym_co_yield_statement] = STATE(850), + [sym_throw_statement] = STATE(850), + [sym_try_statement] = STATE(850), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(235), + [sym_identifier] = ACTIONS(2306), + [anon_sym_LPAREN2] = ACTIONS(2126), + [anon_sym_BANG] = ACTIONS(2129), + [anon_sym_TILDE] = ACTIONS(2129), + [anon_sym_DASH] = ACTIONS(2132), + [anon_sym_PLUS] = ACTIONS(2132), + [anon_sym_STAR] = ACTIONS(2135), + [anon_sym_AMP] = ACTIONS(2135), + [anon_sym_SEMI] = ACTIONS(2309), + [anon_sym_COLON_COLON] = ACTIONS(2141), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2144), + [anon_sym_LBRACE] = ACTIONS(2312), + [anon_sym_LBRACK] = ACTIONS(2150), + [sym_primitive_type] = ACTIONS(2153), + [anon_sym_if] = ACTIONS(2315), + [anon_sym_switch] = ACTIONS(2318), + [anon_sym_case] = ACTIONS(2321), + [anon_sym_default] = ACTIONS(2324), + [anon_sym_while] = ACTIONS(2327), + [anon_sym_do] = ACTIONS(2330), + [anon_sym_for] = ACTIONS(2333), + [anon_sym_return] = ACTIONS(2336), + [anon_sym_break] = ACTIONS(2339), + [anon_sym_continue] = ACTIONS(2342), + [anon_sym_goto] = ACTIONS(2345), + [anon_sym_not] = ACTIONS(2132), + [anon_sym_compl] = ACTIONS(2132), + [anon_sym_DASH_DASH] = ACTIONS(2189), + [anon_sym_PLUS_PLUS] = ACTIONS(2189), + [anon_sym_sizeof] = ACTIONS(2192), + [anon_sym_offsetof] = ACTIONS(2195), + [anon_sym__Generic] = ACTIONS(2198), + [anon_sym_asm] = ACTIONS(2201), + [anon_sym___asm__] = ACTIONS(2201), + [sym_number_literal] = ACTIONS(2204), + [anon_sym_L_SQUOTE] = ACTIONS(2207), + [anon_sym_u_SQUOTE] = ACTIONS(2207), + [anon_sym_U_SQUOTE] = ACTIONS(2207), + [anon_sym_u8_SQUOTE] = ACTIONS(2207), + [anon_sym_SQUOTE] = ACTIONS(2207), + [anon_sym_L_DQUOTE] = ACTIONS(2210), + [anon_sym_u_DQUOTE] = ACTIONS(2210), + [anon_sym_U_DQUOTE] = ACTIONS(2210), + [anon_sym_u8_DQUOTE] = ACTIONS(2210), + [anon_sym_DQUOTE] = ACTIONS(2210), + [sym_true] = ACTIONS(2213), + [sym_false] = ACTIONS(2213), + [anon_sym_NULL] = ACTIONS(2216), + [anon_sym_nullptr] = ACTIONS(2216), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2219), + [anon_sym_template] = ACTIONS(2222), + [anon_sym_try] = ACTIONS(2348), + [anon_sym_delete] = ACTIONS(2228), + [anon_sym_throw] = ACTIONS(2351), + [anon_sym_co_return] = ACTIONS(2354), + [anon_sym_co_yield] = ACTIONS(2357), + [anon_sym_R_DQUOTE] = ACTIONS(2240), + [anon_sym_LR_DQUOTE] = ACTIONS(2240), + [anon_sym_uR_DQUOTE] = ACTIONS(2240), + [anon_sym_UR_DQUOTE] = ACTIONS(2240), + [anon_sym_u8R_DQUOTE] = ACTIONS(2240), + [anon_sym_co_await] = ACTIONS(2243), + [anon_sym_new] = ACTIONS(2246), + [anon_sym_requires] = ACTIONS(2249), + [sym_this] = ACTIONS(2213), }, [236] = { - [sym_attribute_declaration] = STATE(206), - [sym_compound_statement] = STATE(845), - [sym_attributed_statement] = STATE(845), - [sym_labeled_statement] = STATE(845), - [sym_expression_statement] = STATE(845), - [sym_if_statement] = STATE(845), - [sym_switch_statement] = STATE(845), - [sym_case_statement] = STATE(845), - [sym_while_statement] = STATE(845), - [sym_do_statement] = STATE(845), - [sym_for_statement] = STATE(845), - [sym_return_statement] = STATE(845), - [sym_break_statement] = STATE(845), - [sym_continue_statement] = STATE(845), - [sym_goto_statement] = STATE(845), - [sym__expression] = STATE(3502), - [sym_comma_expression] = STATE(6595), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_for_range_loop] = STATE(845), - [sym_co_return_statement] = STATE(845), - [sym_co_yield_statement] = STATE(845), - [sym_throw_statement] = STATE(845), - [sym_try_statement] = STATE(845), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_attributed_declarator_repeat1] = STATE(206), - [sym_identifier] = ACTIONS(1759), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym_attribute_declaration] = STATE(189), + [sym_compound_statement] = STATE(1006), + [sym_attributed_statement] = STATE(1017), + [sym_labeled_statement] = STATE(1018), + [sym_expression_statement] = STATE(1021), + [sym_if_statement] = STATE(1022), + [sym_switch_statement] = STATE(1023), + [sym_case_statement] = STATE(1029), + [sym_while_statement] = STATE(1037), + [sym_do_statement] = STATE(1044), + [sym_for_statement] = STATE(1045), + [sym_return_statement] = STATE(1049), + [sym_break_statement] = STATE(1050), + [sym_continue_statement] = STATE(1053), + [sym_goto_statement] = STATE(1054), + [sym__expression] = STATE(4126), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(6964), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(1061), + [sym_co_return_statement] = STATE(1064), + [sym_co_yield_statement] = STATE(1077), + [sym_throw_statement] = STATE(1079), + [sym_try_statement] = STATE(1085), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(189), + [sym_identifier] = ACTIONS(2099), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_LBRACK] = ACTIONS(994), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_if] = ACTIONS(175), - [anon_sym_switch] = ACTIONS(177), - [anon_sym_case] = ACTIONS(179), - [anon_sym_default] = ACTIONS(181), - [anon_sym_while] = ACTIONS(183), - [anon_sym_do] = ACTIONS(185), - [anon_sym_for] = ACTIONS(187), - [anon_sym_return] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), - [anon_sym_goto] = ACTIONS(195), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(911), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(917), + [anon_sym_LBRACK] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(921), + [anon_sym_switch] = ACTIONS(923), + [anon_sym_case] = ACTIONS(925), + [anon_sym_default] = ACTIONS(927), + [anon_sym_while] = ACTIONS(929), + [anon_sym_do] = ACTIONS(931), + [anon_sym_for] = ACTIONS(933), + [anon_sym_return] = ACTIONS(935), + [anon_sym_break] = ACTIONS(937), + [anon_sym_continue] = ACTIONS(939), + [anon_sym_goto] = ACTIONS(941), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_try] = ACTIONS(201), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(203), - [anon_sym_co_return] = ACTIONS(213), - [anon_sym_co_yield] = ACTIONS(215), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(945), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(947), + [anon_sym_co_return] = ACTIONS(957), + [anon_sym_co_yield] = ACTIONS(959), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [237] = { - [sym_attribute_declaration] = STATE(253), - [sym_compound_statement] = STATE(417), - [sym_attributed_statement] = STATE(414), - [sym_labeled_statement] = STATE(346), - [sym_expression_statement] = STATE(409), - [sym_if_statement] = STATE(404), - [sym_switch_statement] = STATE(403), - [sym_case_statement] = STATE(401), - [sym_while_statement] = STATE(400), - [sym_do_statement] = STATE(398), - [sym_for_statement] = STATE(390), - [sym_return_statement] = STATE(387), - [sym_break_statement] = STATE(385), - [sym_continue_statement] = STATE(384), - [sym_goto_statement] = STATE(383), - [sym__expression] = STATE(3497), - [sym_comma_expression] = STATE(6497), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_for_range_loop] = STATE(382), - [sym_co_return_statement] = STATE(381), - [sym_co_yield_statement] = STATE(380), - [sym_throw_statement] = STATE(379), - [sym_try_statement] = STATE(378), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_attributed_declarator_repeat1] = STATE(253), - [sym_identifier] = ACTIONS(2002), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym_attribute_declaration] = STATE(179), + [sym_compound_statement] = STATE(1507), + [sym_attributed_statement] = STATE(1507), + [sym_labeled_statement] = STATE(1507), + [sym_expression_statement] = STATE(1507), + [sym_if_statement] = STATE(1507), + [sym_switch_statement] = STATE(1507), + [sym_case_statement] = STATE(1507), + [sym_while_statement] = STATE(1507), + [sym_do_statement] = STATE(1507), + [sym_for_statement] = STATE(1507), + [sym_return_statement] = STATE(1507), + [sym_break_statement] = STATE(1507), + [sym_continue_statement] = STATE(1507), + [sym_goto_statement] = STATE(1507), + [sym__expression] = STATE(4212), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7175), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(1507), + [sym_co_return_statement] = STATE(1507), + [sym_co_yield_statement] = STATE(1507), + [sym_throw_statement] = STATE(1507), + [sym_try_statement] = STATE(1507), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(179), + [sym_identifier] = ACTIONS(2109), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(249), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(255), - [anon_sym_LBRACK] = ACTIONS(994), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_if] = ACTIONS(259), - [anon_sym_switch] = ACTIONS(261), - [anon_sym_case] = ACTIONS(263), - [anon_sym_default] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_do] = ACTIONS(269), - [anon_sym_for] = ACTIONS(271), - [anon_sym_return] = ACTIONS(273), - [anon_sym_break] = ACTIONS(275), - [anon_sym_continue] = ACTIONS(277), - [anon_sym_goto] = ACTIONS(279), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(1728), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(1732), + [anon_sym_LBRACK] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(1734), + [anon_sym_switch] = ACTIONS(1736), + [anon_sym_case] = ACTIONS(2111), + [anon_sym_default] = ACTIONS(2113), + [anon_sym_while] = ACTIONS(1738), + [anon_sym_do] = ACTIONS(1740), + [anon_sym_for] = ACTIONS(1742), + [anon_sym_return] = ACTIONS(1744), + [anon_sym_break] = ACTIONS(1746), + [anon_sym_continue] = ACTIONS(1748), + [anon_sym_goto] = ACTIONS(1750), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_try] = ACTIONS(283), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(285), - [anon_sym_co_return] = ACTIONS(295), - [anon_sym_co_yield] = ACTIONS(297), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(1752), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(1754), + [anon_sym_co_return] = ACTIONS(1756), + [anon_sym_co_yield] = ACTIONS(1758), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [238] = { - [sym_attribute_declaration] = STATE(220), - [sym_compound_statement] = STATE(746), - [sym_attributed_statement] = STATE(746), - [sym_labeled_statement] = STATE(746), - [sym_expression_statement] = STATE(746), - [sym_if_statement] = STATE(746), - [sym_switch_statement] = STATE(746), - [sym_case_statement] = STATE(746), - [sym_while_statement] = STATE(746), - [sym_do_statement] = STATE(746), - [sym_for_statement] = STATE(746), - [sym_return_statement] = STATE(746), - [sym_break_statement] = STATE(746), - [sym_continue_statement] = STATE(746), - [sym_goto_statement] = STATE(746), - [sym__expression] = STATE(3622), - [sym_comma_expression] = STATE(6125), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_for_range_loop] = STATE(746), - [sym_co_return_statement] = STATE(746), - [sym_co_yield_statement] = STATE(746), - [sym_throw_statement] = STATE(746), - [sym_try_statement] = STATE(746), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_attributed_declarator_repeat1] = STATE(220), - [sym_identifier] = ACTIONS(1763), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym_attribute_declaration] = STATE(260), + [sym_compound_statement] = STATE(989), + [sym_attributed_statement] = STATE(989), + [sym_labeled_statement] = STATE(989), + [sym_expression_statement] = STATE(989), + [sym_if_statement] = STATE(989), + [sym_switch_statement] = STATE(989), + [sym_case_statement] = STATE(989), + [sym_while_statement] = STATE(989), + [sym_do_statement] = STATE(989), + [sym_for_statement] = STATE(989), + [sym_return_statement] = STATE(989), + [sym_break_statement] = STATE(989), + [sym_continue_statement] = STATE(989), + [sym_goto_statement] = STATE(989), + [sym__expression] = STATE(4234), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7265), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(989), + [sym_co_return_statement] = STATE(989), + [sym_co_yield_statement] = STATE(989), + [sym_throw_statement] = STATE(989), + [sym_try_statement] = STATE(989), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(260), + [sym_identifier] = ACTIONS(2101), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(33), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(994), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_if] = ACTIONS(1765), - [anon_sym_switch] = ACTIONS(75), - [anon_sym_case] = ACTIONS(1767), - [anon_sym_default] = ACTIONS(1769), - [anon_sym_while] = ACTIONS(1771), - [anon_sym_do] = ACTIONS(83), - [anon_sym_for] = ACTIONS(1773), - [anon_sym_return] = ACTIONS(87), - [anon_sym_break] = ACTIONS(89), - [anon_sym_continue] = ACTIONS(91), - [anon_sym_goto] = ACTIONS(93), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(1622), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACK] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(71), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_case] = ACTIONS(75), + [anon_sym_default] = ACTIONS(77), + [anon_sym_while] = ACTIONS(79), + [anon_sym_do] = ACTIONS(81), + [anon_sym_for] = ACTIONS(83), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_try] = ACTIONS(121), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(125), - [anon_sym_co_return] = ACTIONS(135), - [anon_sym_co_yield] = ACTIONS(137), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(127), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(131), + [anon_sym_co_return] = ACTIONS(141), + [anon_sym_co_yield] = ACTIONS(143), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [239] = { - [sym_attribute_declaration] = STATE(253), - [sym_compound_statement] = STATE(377), - [sym_attributed_statement] = STATE(373), - [sym_labeled_statement] = STATE(371), - [sym_expression_statement] = STATE(370), - [sym_if_statement] = STATE(369), - [sym_switch_statement] = STATE(367), - [sym_case_statement] = STATE(362), - [sym_while_statement] = STATE(361), - [sym_do_statement] = STATE(452), - [sym_for_statement] = STATE(347), - [sym_return_statement] = STATE(349), - [sym_break_statement] = STATE(350), - [sym_continue_statement] = STATE(351), - [sym_goto_statement] = STATE(353), - [sym__expression] = STATE(3497), - [sym_comma_expression] = STATE(6497), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_for_range_loop] = STATE(354), - [sym_co_return_statement] = STATE(355), - [sym_co_yield_statement] = STATE(356), - [sym_throw_statement] = STATE(357), - [sym_try_statement] = STATE(358), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_attributed_declarator_repeat1] = STATE(253), - [sym_identifier] = ACTIONS(2002), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym_attribute_declaration] = STATE(251), + [sym_compound_statement] = STATE(741), + [sym_attributed_statement] = STATE(741), + [sym_labeled_statement] = STATE(741), + [sym_expression_statement] = STATE(741), + [sym_if_statement] = STATE(741), + [sym_switch_statement] = STATE(741), + [sym_case_statement] = STATE(741), + [sym_while_statement] = STATE(741), + [sym_do_statement] = STATE(741), + [sym_for_statement] = STATE(741), + [sym_return_statement] = STATE(741), + [sym_break_statement] = STATE(741), + [sym_continue_statement] = STATE(741), + [sym_goto_statement] = STATE(741), + [sym__expression] = STATE(4169), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7079), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(741), + [sym_co_return_statement] = STATE(741), + [sym_co_yield_statement] = STATE(741), + [sym_throw_statement] = STATE(741), + [sym_try_statement] = STATE(741), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(251), + [sym_identifier] = ACTIONS(2107), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(249), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(255), - [anon_sym_LBRACK] = ACTIONS(994), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_if] = ACTIONS(259), - [anon_sym_switch] = ACTIONS(261), - [anon_sym_case] = ACTIONS(263), - [anon_sym_default] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_do] = ACTIONS(269), - [anon_sym_for] = ACTIONS(271), - [anon_sym_return] = ACTIONS(273), - [anon_sym_break] = ACTIONS(275), - [anon_sym_continue] = ACTIONS(277), - [anon_sym_goto] = ACTIONS(279), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(345), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(351), + [anon_sym_LBRACK] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(355), + [anon_sym_switch] = ACTIONS(357), + [anon_sym_case] = ACTIONS(359), + [anon_sym_default] = ACTIONS(361), + [anon_sym_while] = ACTIONS(363), + [anon_sym_do] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_return] = ACTIONS(369), + [anon_sym_break] = ACTIONS(371), + [anon_sym_continue] = ACTIONS(373), + [anon_sym_goto] = ACTIONS(375), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_try] = ACTIONS(283), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(285), - [anon_sym_co_return] = ACTIONS(295), - [anon_sym_co_yield] = ACTIONS(297), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(379), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(381), + [anon_sym_co_return] = ACTIONS(391), + [anon_sym_co_yield] = ACTIONS(393), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [240] = { - [sym_attribute_declaration] = STATE(206), - [sym_compound_statement] = STATE(844), - [sym_attributed_statement] = STATE(844), - [sym_labeled_statement] = STATE(844), - [sym_expression_statement] = STATE(844), - [sym_if_statement] = STATE(844), - [sym_switch_statement] = STATE(844), - [sym_case_statement] = STATE(844), - [sym_while_statement] = STATE(844), - [sym_do_statement] = STATE(844), - [sym_for_statement] = STATE(844), - [sym_return_statement] = STATE(844), - [sym_break_statement] = STATE(844), - [sym_continue_statement] = STATE(844), - [sym_goto_statement] = STATE(844), - [sym__expression] = STATE(3502), - [sym_comma_expression] = STATE(6595), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_for_range_loop] = STATE(844), - [sym_co_return_statement] = STATE(844), - [sym_co_yield_statement] = STATE(844), - [sym_throw_statement] = STATE(844), - [sym_try_statement] = STATE(844), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_attributed_declarator_repeat1] = STATE(206), - [sym_identifier] = ACTIONS(1759), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym_attribute_declaration] = STATE(230), + [sym_compound_statement] = STATE(1140), + [sym_attributed_statement] = STATE(1146), + [sym_labeled_statement] = STATE(1147), + [sym_expression_statement] = STATE(1159), + [sym_if_statement] = STATE(1165), + [sym_switch_statement] = STATE(1166), + [sym_case_statement] = STATE(1167), + [sym_while_statement] = STATE(1168), + [sym_do_statement] = STATE(1170), + [sym_for_statement] = STATE(1184), + [sym_return_statement] = STATE(1185), + [sym_break_statement] = STATE(1190), + [sym_continue_statement] = STATE(1188), + [sym_goto_statement] = STATE(1186), + [sym__expression] = STATE(4182), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7590), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(1175), + [sym_co_return_statement] = STATE(1174), + [sym_co_yield_statement] = STATE(1173), + [sym_throw_statement] = STATE(1162), + [sym_try_statement] = STATE(1160), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(230), + [sym_identifier] = ACTIONS(2115), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_LBRACK] = ACTIONS(994), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_if] = ACTIONS(175), - [anon_sym_switch] = ACTIONS(177), - [anon_sym_case] = ACTIONS(179), - [anon_sym_default] = ACTIONS(181), - [anon_sym_while] = ACTIONS(183), - [anon_sym_do] = ACTIONS(185), - [anon_sym_for] = ACTIONS(187), - [anon_sym_return] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), - [anon_sym_goto] = ACTIONS(195), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACK] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(2117), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_case] = ACTIONS(2111), + [anon_sym_default] = ACTIONS(2113), + [anon_sym_while] = ACTIONS(2119), + [anon_sym_do] = ACTIONS(81), + [anon_sym_for] = ACTIONS(2121), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_try] = ACTIONS(201), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(203), - [anon_sym_co_return] = ACTIONS(213), - [anon_sym_co_yield] = ACTIONS(215), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(127), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(131), + [anon_sym_co_return] = ACTIONS(141), + [anon_sym_co_yield] = ACTIONS(143), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [241] = { - [sym_attribute_declaration] = STATE(172), - [sym_compound_statement] = STATE(847), - [sym_attributed_statement] = STATE(847), - [sym_labeled_statement] = STATE(847), - [sym_expression_statement] = STATE(847), - [sym_if_statement] = STATE(847), - [sym_switch_statement] = STATE(847), - [sym_case_statement] = STATE(847), - [sym_while_statement] = STATE(847), - [sym_do_statement] = STATE(847), - [sym_for_statement] = STATE(847), - [sym_return_statement] = STATE(847), - [sym_break_statement] = STATE(847), - [sym_continue_statement] = STATE(847), - [sym_goto_statement] = STATE(847), - [sym__expression] = STATE(3622), - [sym_comma_expression] = STATE(6125), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_for_range_loop] = STATE(847), - [sym_co_return_statement] = STATE(847), - [sym_co_yield_statement] = STATE(847), - [sym_throw_statement] = STATE(847), - [sym_try_statement] = STATE(847), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_attributed_declarator_repeat1] = STATE(172), - [sym_identifier] = ACTIONS(1757), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym_attribute_declaration] = STATE(251), + [sym_compound_statement] = STATE(692), + [sym_attributed_statement] = STATE(692), + [sym_labeled_statement] = STATE(692), + [sym_expression_statement] = STATE(692), + [sym_if_statement] = STATE(692), + [sym_switch_statement] = STATE(692), + [sym_case_statement] = STATE(692), + [sym_while_statement] = STATE(692), + [sym_do_statement] = STATE(692), + [sym_for_statement] = STATE(692), + [sym_return_statement] = STATE(692), + [sym_break_statement] = STATE(692), + [sym_continue_statement] = STATE(692), + [sym_goto_statement] = STATE(692), + [sym__expression] = STATE(4169), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7079), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(692), + [sym_co_return_statement] = STATE(692), + [sym_co_yield_statement] = STATE(692), + [sym_throw_statement] = STATE(692), + [sym_try_statement] = STATE(692), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(251), + [sym_identifier] = ACTIONS(2107), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(33), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(994), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_if] = ACTIONS(73), - [anon_sym_switch] = ACTIONS(75), - [anon_sym_case] = ACTIONS(77), - [anon_sym_default] = ACTIONS(79), - [anon_sym_while] = ACTIONS(81), - [anon_sym_do] = ACTIONS(83), - [anon_sym_for] = ACTIONS(85), - [anon_sym_return] = ACTIONS(87), - [anon_sym_break] = ACTIONS(89), - [anon_sym_continue] = ACTIONS(91), - [anon_sym_goto] = ACTIONS(93), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(345), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(351), + [anon_sym_LBRACK] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(355), + [anon_sym_switch] = ACTIONS(357), + [anon_sym_case] = ACTIONS(359), + [anon_sym_default] = ACTIONS(361), + [anon_sym_while] = ACTIONS(363), + [anon_sym_do] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_return] = ACTIONS(369), + [anon_sym_break] = ACTIONS(371), + [anon_sym_continue] = ACTIONS(373), + [anon_sym_goto] = ACTIONS(375), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_try] = ACTIONS(121), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(125), - [anon_sym_co_return] = ACTIONS(135), - [anon_sym_co_yield] = ACTIONS(137), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(379), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(381), + [anon_sym_co_return] = ACTIONS(391), + [anon_sym_co_yield] = ACTIONS(393), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [242] = { - [sym_attribute_declaration] = STATE(253), - [sym_compound_statement] = STATE(422), - [sym_attributed_statement] = STATE(422), - [sym_labeled_statement] = STATE(422), - [sym_expression_statement] = STATE(422), - [sym_if_statement] = STATE(422), - [sym_switch_statement] = STATE(422), - [sym_case_statement] = STATE(422), - [sym_while_statement] = STATE(422), - [sym_do_statement] = STATE(422), - [sym_for_statement] = STATE(422), - [sym_return_statement] = STATE(422), - [sym_break_statement] = STATE(422), - [sym_continue_statement] = STATE(422), - [sym_goto_statement] = STATE(422), - [sym__expression] = STATE(3497), - [sym_comma_expression] = STATE(6497), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_for_range_loop] = STATE(422), - [sym_co_return_statement] = STATE(422), - [sym_co_yield_statement] = STATE(422), - [sym_throw_statement] = STATE(422), - [sym_try_statement] = STATE(422), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_attributed_declarator_repeat1] = STATE(253), - [sym_identifier] = ACTIONS(2002), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym_attribute_declaration] = STATE(179), + [sym_compound_statement] = STATE(1573), + [sym_attributed_statement] = STATE(1573), + [sym_labeled_statement] = STATE(1573), + [sym_expression_statement] = STATE(1573), + [sym_if_statement] = STATE(1573), + [sym_switch_statement] = STATE(1573), + [sym_case_statement] = STATE(1573), + [sym_while_statement] = STATE(1573), + [sym_do_statement] = STATE(1573), + [sym_for_statement] = STATE(1573), + [sym_return_statement] = STATE(1573), + [sym_break_statement] = STATE(1573), + [sym_continue_statement] = STATE(1573), + [sym_goto_statement] = STATE(1573), + [sym__expression] = STATE(4212), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7175), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(1573), + [sym_co_return_statement] = STATE(1573), + [sym_co_yield_statement] = STATE(1573), + [sym_throw_statement] = STATE(1573), + [sym_try_statement] = STATE(1573), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(179), + [sym_identifier] = ACTIONS(2109), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(249), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(255), - [anon_sym_LBRACK] = ACTIONS(994), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_if] = ACTIONS(259), - [anon_sym_switch] = ACTIONS(261), - [anon_sym_case] = ACTIONS(263), - [anon_sym_default] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_do] = ACTIONS(269), - [anon_sym_for] = ACTIONS(271), - [anon_sym_return] = ACTIONS(273), - [anon_sym_break] = ACTIONS(275), - [anon_sym_continue] = ACTIONS(277), - [anon_sym_goto] = ACTIONS(279), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(1728), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(1732), + [anon_sym_LBRACK] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(1734), + [anon_sym_switch] = ACTIONS(1736), + [anon_sym_case] = ACTIONS(2111), + [anon_sym_default] = ACTIONS(2113), + [anon_sym_while] = ACTIONS(1738), + [anon_sym_do] = ACTIONS(1740), + [anon_sym_for] = ACTIONS(1742), + [anon_sym_return] = ACTIONS(1744), + [anon_sym_break] = ACTIONS(1746), + [anon_sym_continue] = ACTIONS(1748), + [anon_sym_goto] = ACTIONS(1750), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_try] = ACTIONS(283), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(285), - [anon_sym_co_return] = ACTIONS(295), - [anon_sym_co_yield] = ACTIONS(297), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(1752), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(1754), + [anon_sym_co_return] = ACTIONS(1756), + [anon_sym_co_yield] = ACTIONS(1758), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [243] = { - [sym_attribute_declaration] = STATE(172), - [sym_compound_statement] = STATE(564), - [sym_attributed_statement] = STATE(564), - [sym_labeled_statement] = STATE(564), - [sym_expression_statement] = STATE(564), - [sym_if_statement] = STATE(564), - [sym_switch_statement] = STATE(564), - [sym_case_statement] = STATE(564), - [sym_while_statement] = STATE(564), - [sym_do_statement] = STATE(564), - [sym_for_statement] = STATE(564), - [sym_return_statement] = STATE(564), - [sym_break_statement] = STATE(564), - [sym_continue_statement] = STATE(564), - [sym_goto_statement] = STATE(564), - [sym__expression] = STATE(3622), - [sym_comma_expression] = STATE(6125), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_for_range_loop] = STATE(564), - [sym_co_return_statement] = STATE(564), - [sym_co_yield_statement] = STATE(564), - [sym_throw_statement] = STATE(564), - [sym_try_statement] = STATE(564), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_attributed_declarator_repeat1] = STATE(172), - [sym_identifier] = ACTIONS(1757), - [anon_sym_LPAREN2] = ACTIONS(984), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(33), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(994), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_if] = ACTIONS(73), - [anon_sym_switch] = ACTIONS(75), - [anon_sym_case] = ACTIONS(77), - [anon_sym_default] = ACTIONS(79), - [anon_sym_while] = ACTIONS(81), - [anon_sym_do] = ACTIONS(83), - [anon_sym_for] = ACTIONS(85), - [anon_sym_return] = ACTIONS(87), - [anon_sym_break] = ACTIONS(89), - [anon_sym_continue] = ACTIONS(91), - [anon_sym_goto] = ACTIONS(93), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_try] = ACTIONS(121), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(125), - [anon_sym_co_return] = ACTIONS(135), - [anon_sym_co_yield] = ACTIONS(137), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [sym_attribute_declaration] = STATE(243), + [sym_compound_statement] = STATE(1003), + [sym_attributed_statement] = STATE(1003), + [sym_labeled_statement] = STATE(1003), + [sym_expression_statement] = STATE(1003), + [sym_if_statement] = STATE(1003), + [sym_switch_statement] = STATE(1003), + [sym_case_statement] = STATE(1003), + [sym_while_statement] = STATE(1003), + [sym_do_statement] = STATE(1003), + [sym_for_statement] = STATE(1003), + [sym_return_statement] = STATE(1003), + [sym_break_statement] = STATE(1003), + [sym_continue_statement] = STATE(1003), + [sym_goto_statement] = STATE(1003), + [sym__expression] = STATE(4126), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(6964), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(1003), + [sym_co_return_statement] = STATE(1003), + [sym_co_yield_statement] = STATE(1003), + [sym_throw_statement] = STATE(1003), + [sym_try_statement] = STATE(1003), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(243), + [sym_identifier] = ACTIONS(2360), + [anon_sym_LPAREN2] = ACTIONS(2126), + [anon_sym_BANG] = ACTIONS(2129), + [anon_sym_TILDE] = ACTIONS(2129), + [anon_sym_DASH] = ACTIONS(2132), + [anon_sym_PLUS] = ACTIONS(2132), + [anon_sym_STAR] = ACTIONS(2135), + [anon_sym_AMP] = ACTIONS(2135), + [anon_sym_SEMI] = ACTIONS(2363), + [anon_sym_COLON_COLON] = ACTIONS(2141), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2144), + [anon_sym_LBRACE] = ACTIONS(2366), + [anon_sym_LBRACK] = ACTIONS(2150), + [sym_primitive_type] = ACTIONS(2153), + [anon_sym_if] = ACTIONS(2369), + [anon_sym_switch] = ACTIONS(2372), + [anon_sym_case] = ACTIONS(2375), + [anon_sym_default] = ACTIONS(2378), + [anon_sym_while] = ACTIONS(2381), + [anon_sym_do] = ACTIONS(2384), + [anon_sym_for] = ACTIONS(2387), + [anon_sym_return] = ACTIONS(2390), + [anon_sym_break] = ACTIONS(2393), + [anon_sym_continue] = ACTIONS(2396), + [anon_sym_goto] = ACTIONS(2399), + [anon_sym_not] = ACTIONS(2132), + [anon_sym_compl] = ACTIONS(2132), + [anon_sym_DASH_DASH] = ACTIONS(2189), + [anon_sym_PLUS_PLUS] = ACTIONS(2189), + [anon_sym_sizeof] = ACTIONS(2192), + [anon_sym_offsetof] = ACTIONS(2195), + [anon_sym__Generic] = ACTIONS(2198), + [anon_sym_asm] = ACTIONS(2201), + [anon_sym___asm__] = ACTIONS(2201), + [sym_number_literal] = ACTIONS(2204), + [anon_sym_L_SQUOTE] = ACTIONS(2207), + [anon_sym_u_SQUOTE] = ACTIONS(2207), + [anon_sym_U_SQUOTE] = ACTIONS(2207), + [anon_sym_u8_SQUOTE] = ACTIONS(2207), + [anon_sym_SQUOTE] = ACTIONS(2207), + [anon_sym_L_DQUOTE] = ACTIONS(2210), + [anon_sym_u_DQUOTE] = ACTIONS(2210), + [anon_sym_U_DQUOTE] = ACTIONS(2210), + [anon_sym_u8_DQUOTE] = ACTIONS(2210), + [anon_sym_DQUOTE] = ACTIONS(2210), + [sym_true] = ACTIONS(2213), + [sym_false] = ACTIONS(2213), + [anon_sym_NULL] = ACTIONS(2216), + [anon_sym_nullptr] = ACTIONS(2216), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2219), + [anon_sym_template] = ACTIONS(2222), + [anon_sym_try] = ACTIONS(2402), + [anon_sym_delete] = ACTIONS(2228), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2408), + [anon_sym_co_yield] = ACTIONS(2411), + [anon_sym_R_DQUOTE] = ACTIONS(2240), + [anon_sym_LR_DQUOTE] = ACTIONS(2240), + [anon_sym_uR_DQUOTE] = ACTIONS(2240), + [anon_sym_UR_DQUOTE] = ACTIONS(2240), + [anon_sym_u8R_DQUOTE] = ACTIONS(2240), + [anon_sym_co_await] = ACTIONS(2243), + [anon_sym_new] = ACTIONS(2246), + [anon_sym_requires] = ACTIONS(2249), + [sym_this] = ACTIONS(2213), }, [244] = { - [sym_attribute_declaration] = STATE(253), - [sym_compound_statement] = STATE(419), - [sym_attributed_statement] = STATE(419), - [sym_labeled_statement] = STATE(419), - [sym_expression_statement] = STATE(419), - [sym_if_statement] = STATE(419), - [sym_switch_statement] = STATE(419), - [sym_case_statement] = STATE(419), - [sym_while_statement] = STATE(419), - [sym_do_statement] = STATE(419), - [sym_for_statement] = STATE(419), - [sym_return_statement] = STATE(419), - [sym_break_statement] = STATE(419), - [sym_continue_statement] = STATE(419), - [sym_goto_statement] = STATE(419), - [sym__expression] = STATE(3497), - [sym_comma_expression] = STATE(6497), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_for_range_loop] = STATE(419), - [sym_co_return_statement] = STATE(419), - [sym_co_yield_statement] = STATE(419), - [sym_throw_statement] = STATE(419), - [sym_try_statement] = STATE(419), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_attributed_declarator_repeat1] = STATE(253), - [sym_identifier] = ACTIONS(2002), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym_attribute_declaration] = STATE(198), + [sym_compound_statement] = STATE(402), + [sym_attributed_statement] = STATE(402), + [sym_labeled_statement] = STATE(402), + [sym_expression_statement] = STATE(402), + [sym_if_statement] = STATE(402), + [sym_switch_statement] = STATE(402), + [sym_case_statement] = STATE(402), + [sym_while_statement] = STATE(402), + [sym_do_statement] = STATE(402), + [sym_for_statement] = STATE(402), + [sym_return_statement] = STATE(402), + [sym_break_statement] = STATE(402), + [sym_continue_statement] = STATE(402), + [sym_goto_statement] = STATE(402), + [sym__expression] = STATE(4160), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7618), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(402), + [sym_co_return_statement] = STATE(402), + [sym_co_yield_statement] = STATE(402), + [sym_throw_statement] = STATE(402), + [sym_try_statement] = STATE(402), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(198), + [sym_identifier] = ACTIONS(2105), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(249), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(255), - [anon_sym_LBRACK] = ACTIONS(994), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_if] = ACTIONS(259), - [anon_sym_switch] = ACTIONS(261), - [anon_sym_case] = ACTIONS(263), - [anon_sym_default] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_do] = ACTIONS(269), - [anon_sym_for] = ACTIONS(271), - [anon_sym_return] = ACTIONS(273), - [anon_sym_break] = ACTIONS(275), - [anon_sym_continue] = ACTIONS(277), - [anon_sym_goto] = ACTIONS(279), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(245), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(251), + [anon_sym_LBRACK] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(255), + [anon_sym_switch] = ACTIONS(257), + [anon_sym_case] = ACTIONS(259), + [anon_sym_default] = ACTIONS(261), + [anon_sym_while] = ACTIONS(263), + [anon_sym_do] = ACTIONS(265), + [anon_sym_for] = ACTIONS(267), + [anon_sym_return] = ACTIONS(269), + [anon_sym_break] = ACTIONS(271), + [anon_sym_continue] = ACTIONS(273), + [anon_sym_goto] = ACTIONS(275), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_try] = ACTIONS(283), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(285), - [anon_sym_co_return] = ACTIONS(295), - [anon_sym_co_yield] = ACTIONS(297), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(279), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(281), + [anon_sym_co_return] = ACTIONS(291), + [anon_sym_co_yield] = ACTIONS(293), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [245] = { - [sym_attribute_declaration] = STATE(172), - [sym_compound_statement] = STATE(568), - [sym_attributed_statement] = STATE(568), - [sym_labeled_statement] = STATE(568), - [sym_expression_statement] = STATE(568), - [sym_if_statement] = STATE(568), - [sym_switch_statement] = STATE(568), - [sym_case_statement] = STATE(568), - [sym_while_statement] = STATE(568), - [sym_do_statement] = STATE(568), - [sym_for_statement] = STATE(568), - [sym_return_statement] = STATE(568), - [sym_break_statement] = STATE(568), - [sym_continue_statement] = STATE(568), - [sym_goto_statement] = STATE(568), - [sym__expression] = STATE(3622), - [sym_comma_expression] = STATE(6125), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_for_range_loop] = STATE(568), - [sym_co_return_statement] = STATE(568), - [sym_co_yield_statement] = STATE(568), - [sym_throw_statement] = STATE(568), - [sym_try_statement] = STATE(568), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_attributed_declarator_repeat1] = STATE(172), - [sym_identifier] = ACTIONS(1757), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym_attribute_declaration] = STATE(179), + [sym_compound_statement] = STATE(1548), + [sym_attributed_statement] = STATE(1548), + [sym_labeled_statement] = STATE(1548), + [sym_expression_statement] = STATE(1548), + [sym_if_statement] = STATE(1548), + [sym_switch_statement] = STATE(1548), + [sym_case_statement] = STATE(1548), + [sym_while_statement] = STATE(1548), + [sym_do_statement] = STATE(1548), + [sym_for_statement] = STATE(1548), + [sym_return_statement] = STATE(1548), + [sym_break_statement] = STATE(1548), + [sym_continue_statement] = STATE(1548), + [sym_goto_statement] = STATE(1548), + [sym__expression] = STATE(4212), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7175), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(1548), + [sym_co_return_statement] = STATE(1548), + [sym_co_yield_statement] = STATE(1548), + [sym_throw_statement] = STATE(1548), + [sym_try_statement] = STATE(1548), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(179), + [sym_identifier] = ACTIONS(2109), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(33), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(994), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_if] = ACTIONS(73), - [anon_sym_switch] = ACTIONS(75), - [anon_sym_case] = ACTIONS(77), - [anon_sym_default] = ACTIONS(79), - [anon_sym_while] = ACTIONS(81), - [anon_sym_do] = ACTIONS(83), - [anon_sym_for] = ACTIONS(85), - [anon_sym_return] = ACTIONS(87), - [anon_sym_break] = ACTIONS(89), - [anon_sym_continue] = ACTIONS(91), - [anon_sym_goto] = ACTIONS(93), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(1728), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(1732), + [anon_sym_LBRACK] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(1734), + [anon_sym_switch] = ACTIONS(1736), + [anon_sym_case] = ACTIONS(2111), + [anon_sym_default] = ACTIONS(2113), + [anon_sym_while] = ACTIONS(1738), + [anon_sym_do] = ACTIONS(1740), + [anon_sym_for] = ACTIONS(1742), + [anon_sym_return] = ACTIONS(1744), + [anon_sym_break] = ACTIONS(1746), + [anon_sym_continue] = ACTIONS(1748), + [anon_sym_goto] = ACTIONS(1750), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_try] = ACTIONS(121), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(125), - [anon_sym_co_return] = ACTIONS(135), - [anon_sym_co_yield] = ACTIONS(137), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(1752), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(1754), + [anon_sym_co_return] = ACTIONS(1756), + [anon_sym_co_yield] = ACTIONS(1758), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [246] = { - [sym_attribute_declaration] = STATE(172), - [sym_compound_statement] = STATE(687), - [sym_attributed_statement] = STATE(687), - [sym_labeled_statement] = STATE(687), - [sym_expression_statement] = STATE(687), - [sym_if_statement] = STATE(687), - [sym_switch_statement] = STATE(687), - [sym_case_statement] = STATE(687), - [sym_while_statement] = STATE(687), - [sym_do_statement] = STATE(687), - [sym_for_statement] = STATE(687), - [sym_return_statement] = STATE(687), - [sym_break_statement] = STATE(687), - [sym_continue_statement] = STATE(687), - [sym_goto_statement] = STATE(687), - [sym__expression] = STATE(3622), - [sym_comma_expression] = STATE(6125), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_for_range_loop] = STATE(687), - [sym_co_return_statement] = STATE(687), - [sym_co_yield_statement] = STATE(687), - [sym_throw_statement] = STATE(687), - [sym_try_statement] = STATE(687), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_attributed_declarator_repeat1] = STATE(172), - [sym_identifier] = ACTIONS(1757), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym_attribute_declaration] = STATE(179), + [sym_compound_statement] = STATE(1549), + [sym_attributed_statement] = STATE(1549), + [sym_labeled_statement] = STATE(1549), + [sym_expression_statement] = STATE(1549), + [sym_if_statement] = STATE(1549), + [sym_switch_statement] = STATE(1549), + [sym_case_statement] = STATE(1549), + [sym_while_statement] = STATE(1549), + [sym_do_statement] = STATE(1549), + [sym_for_statement] = STATE(1549), + [sym_return_statement] = STATE(1549), + [sym_break_statement] = STATE(1549), + [sym_continue_statement] = STATE(1549), + [sym_goto_statement] = STATE(1549), + [sym__expression] = STATE(4212), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7175), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(1549), + [sym_co_return_statement] = STATE(1549), + [sym_co_yield_statement] = STATE(1549), + [sym_throw_statement] = STATE(1549), + [sym_try_statement] = STATE(1549), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(179), + [sym_identifier] = ACTIONS(2109), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(33), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(994), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_if] = ACTIONS(73), - [anon_sym_switch] = ACTIONS(75), - [anon_sym_case] = ACTIONS(77), - [anon_sym_default] = ACTIONS(79), - [anon_sym_while] = ACTIONS(81), - [anon_sym_do] = ACTIONS(83), - [anon_sym_for] = ACTIONS(85), - [anon_sym_return] = ACTIONS(87), - [anon_sym_break] = ACTIONS(89), - [anon_sym_continue] = ACTIONS(91), - [anon_sym_goto] = ACTIONS(93), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(1728), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(1732), + [anon_sym_LBRACK] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(1734), + [anon_sym_switch] = ACTIONS(1736), + [anon_sym_case] = ACTIONS(2111), + [anon_sym_default] = ACTIONS(2113), + [anon_sym_while] = ACTIONS(1738), + [anon_sym_do] = ACTIONS(1740), + [anon_sym_for] = ACTIONS(1742), + [anon_sym_return] = ACTIONS(1744), + [anon_sym_break] = ACTIONS(1746), + [anon_sym_continue] = ACTIONS(1748), + [anon_sym_goto] = ACTIONS(1750), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_try] = ACTIONS(121), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(125), - [anon_sym_co_return] = ACTIONS(135), - [anon_sym_co_yield] = ACTIONS(137), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(1752), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(1754), + [anon_sym_co_return] = ACTIONS(1756), + [anon_sym_co_yield] = ACTIONS(1758), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [247] = { - [sym_attribute_declaration] = STATE(206), - [sym_compound_statement] = STATE(840), - [sym_attributed_statement] = STATE(840), - [sym_labeled_statement] = STATE(840), - [sym_expression_statement] = STATE(840), - [sym_if_statement] = STATE(840), - [sym_switch_statement] = STATE(840), - [sym_case_statement] = STATE(840), - [sym_while_statement] = STATE(840), - [sym_do_statement] = STATE(840), - [sym_for_statement] = STATE(840), - [sym_return_statement] = STATE(840), - [sym_break_statement] = STATE(840), - [sym_continue_statement] = STATE(840), - [sym_goto_statement] = STATE(840), - [sym__expression] = STATE(3502), - [sym_comma_expression] = STATE(6595), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_for_range_loop] = STATE(840), - [sym_co_return_statement] = STATE(840), - [sym_co_yield_statement] = STATE(840), - [sym_throw_statement] = STATE(840), - [sym_try_statement] = STATE(840), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_attributed_declarator_repeat1] = STATE(206), - [sym_identifier] = ACTIONS(1759), - [anon_sym_LPAREN2] = ACTIONS(984), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_LBRACK] = ACTIONS(994), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_if] = ACTIONS(175), - [anon_sym_switch] = ACTIONS(177), - [anon_sym_case] = ACTIONS(179), - [anon_sym_default] = ACTIONS(181), - [anon_sym_while] = ACTIONS(183), - [anon_sym_do] = ACTIONS(185), - [anon_sym_for] = ACTIONS(187), - [anon_sym_return] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), - [anon_sym_goto] = ACTIONS(195), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_try] = ACTIONS(201), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(203), - [anon_sym_co_return] = ACTIONS(213), - [anon_sym_co_yield] = ACTIONS(215), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [sym_attribute_declaration] = STATE(247), + [sym_compound_statement] = STATE(1512), + [sym_attributed_statement] = STATE(1512), + [sym_labeled_statement] = STATE(1512), + [sym_expression_statement] = STATE(1512), + [sym_if_statement] = STATE(1512), + [sym_switch_statement] = STATE(1512), + [sym_case_statement] = STATE(1512), + [sym_while_statement] = STATE(1512), + [sym_do_statement] = STATE(1512), + [sym_for_statement] = STATE(1512), + [sym_return_statement] = STATE(1512), + [sym_break_statement] = STATE(1512), + [sym_continue_statement] = STATE(1512), + [sym_goto_statement] = STATE(1512), + [sym__expression] = STATE(4212), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7175), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(1512), + [sym_co_return_statement] = STATE(1512), + [sym_co_yield_statement] = STATE(1512), + [sym_throw_statement] = STATE(1512), + [sym_try_statement] = STATE(1512), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(247), + [sym_identifier] = ACTIONS(2414), + [anon_sym_LPAREN2] = ACTIONS(2126), + [anon_sym_BANG] = ACTIONS(2129), + [anon_sym_TILDE] = ACTIONS(2129), + [anon_sym_DASH] = ACTIONS(2132), + [anon_sym_PLUS] = ACTIONS(2132), + [anon_sym_STAR] = ACTIONS(2135), + [anon_sym_AMP] = ACTIONS(2135), + [anon_sym_SEMI] = ACTIONS(2417), + [anon_sym_COLON_COLON] = ACTIONS(2141), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2144), + [anon_sym_LBRACE] = ACTIONS(2420), + [anon_sym_LBRACK] = ACTIONS(2150), + [sym_primitive_type] = ACTIONS(2153), + [anon_sym_if] = ACTIONS(2423), + [anon_sym_switch] = ACTIONS(2426), + [anon_sym_case] = ACTIONS(2429), + [anon_sym_default] = ACTIONS(2432), + [anon_sym_while] = ACTIONS(2435), + [anon_sym_do] = ACTIONS(2438), + [anon_sym_for] = ACTIONS(2441), + [anon_sym_return] = ACTIONS(2444), + [anon_sym_break] = ACTIONS(2447), + [anon_sym_continue] = ACTIONS(2450), + [anon_sym_goto] = ACTIONS(2453), + [anon_sym_not] = ACTIONS(2132), + [anon_sym_compl] = ACTIONS(2132), + [anon_sym_DASH_DASH] = ACTIONS(2189), + [anon_sym_PLUS_PLUS] = ACTIONS(2189), + [anon_sym_sizeof] = ACTIONS(2192), + [anon_sym_offsetof] = ACTIONS(2195), + [anon_sym__Generic] = ACTIONS(2198), + [anon_sym_asm] = ACTIONS(2201), + [anon_sym___asm__] = ACTIONS(2201), + [sym_number_literal] = ACTIONS(2204), + [anon_sym_L_SQUOTE] = ACTIONS(2207), + [anon_sym_u_SQUOTE] = ACTIONS(2207), + [anon_sym_U_SQUOTE] = ACTIONS(2207), + [anon_sym_u8_SQUOTE] = ACTIONS(2207), + [anon_sym_SQUOTE] = ACTIONS(2207), + [anon_sym_L_DQUOTE] = ACTIONS(2210), + [anon_sym_u_DQUOTE] = ACTIONS(2210), + [anon_sym_U_DQUOTE] = ACTIONS(2210), + [anon_sym_u8_DQUOTE] = ACTIONS(2210), + [anon_sym_DQUOTE] = ACTIONS(2210), + [sym_true] = ACTIONS(2213), + [sym_false] = ACTIONS(2213), + [anon_sym_NULL] = ACTIONS(2216), + [anon_sym_nullptr] = ACTIONS(2216), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2219), + [anon_sym_template] = ACTIONS(2222), + [anon_sym_try] = ACTIONS(2456), + [anon_sym_delete] = ACTIONS(2228), + [anon_sym_throw] = ACTIONS(2459), + [anon_sym_co_return] = ACTIONS(2462), + [anon_sym_co_yield] = ACTIONS(2465), + [anon_sym_R_DQUOTE] = ACTIONS(2240), + [anon_sym_LR_DQUOTE] = ACTIONS(2240), + [anon_sym_uR_DQUOTE] = ACTIONS(2240), + [anon_sym_UR_DQUOTE] = ACTIONS(2240), + [anon_sym_u8R_DQUOTE] = ACTIONS(2240), + [anon_sym_co_await] = ACTIONS(2243), + [anon_sym_new] = ACTIONS(2246), + [anon_sym_requires] = ACTIONS(2249), + [sym_this] = ACTIONS(2213), }, [248] = { - [sym_attribute_declaration] = STATE(206), - [sym_compound_statement] = STATE(839), - [sym_attributed_statement] = STATE(838), - [sym_labeled_statement] = STATE(837), - [sym_expression_statement] = STATE(836), - [sym_if_statement] = STATE(835), - [sym_switch_statement] = STATE(834), - [sym_case_statement] = STATE(833), - [sym_while_statement] = STATE(832), - [sym_do_statement] = STATE(831), - [sym_for_statement] = STATE(830), - [sym_return_statement] = STATE(829), - [sym_break_statement] = STATE(828), - [sym_continue_statement] = STATE(827), - [sym_goto_statement] = STATE(826), - [sym__expression] = STATE(3502), - [sym_comma_expression] = STATE(6595), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_for_range_loop] = STATE(825), - [sym_co_return_statement] = STATE(824), - [sym_co_yield_statement] = STATE(822), - [sym_throw_statement] = STATE(821), - [sym_try_statement] = STATE(820), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_attributed_declarator_repeat1] = STATE(206), - [sym_identifier] = ACTIONS(1759), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym_attribute_declaration] = STATE(244), + [sym_compound_statement] = STATE(415), + [sym_attributed_statement] = STATE(415), + [sym_labeled_statement] = STATE(415), + [sym_expression_statement] = STATE(415), + [sym_if_statement] = STATE(415), + [sym_switch_statement] = STATE(415), + [sym_case_statement] = STATE(415), + [sym_while_statement] = STATE(415), + [sym_do_statement] = STATE(415), + [sym_for_statement] = STATE(415), + [sym_return_statement] = STATE(415), + [sym_break_statement] = STATE(415), + [sym_continue_statement] = STATE(415), + [sym_goto_statement] = STATE(415), + [sym__expression] = STATE(4160), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7618), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(415), + [sym_co_return_statement] = STATE(415), + [sym_co_yield_statement] = STATE(415), + [sym_throw_statement] = STATE(415), + [sym_try_statement] = STATE(415), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(244), + [sym_identifier] = ACTIONS(2105), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_LBRACK] = ACTIONS(994), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_if] = ACTIONS(175), - [anon_sym_switch] = ACTIONS(177), - [anon_sym_case] = ACTIONS(179), - [anon_sym_default] = ACTIONS(181), - [anon_sym_while] = ACTIONS(183), - [anon_sym_do] = ACTIONS(185), - [anon_sym_for] = ACTIONS(187), - [anon_sym_return] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), - [anon_sym_goto] = ACTIONS(195), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(245), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(251), + [anon_sym_LBRACK] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(255), + [anon_sym_switch] = ACTIONS(257), + [anon_sym_case] = ACTIONS(259), + [anon_sym_default] = ACTIONS(261), + [anon_sym_while] = ACTIONS(263), + [anon_sym_do] = ACTIONS(265), + [anon_sym_for] = ACTIONS(267), + [anon_sym_return] = ACTIONS(269), + [anon_sym_break] = ACTIONS(271), + [anon_sym_continue] = ACTIONS(273), + [anon_sym_goto] = ACTIONS(275), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_try] = ACTIONS(201), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(203), - [anon_sym_co_return] = ACTIONS(213), - [anon_sym_co_yield] = ACTIONS(215), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(279), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(281), + [anon_sym_co_return] = ACTIONS(291), + [anon_sym_co_yield] = ACTIONS(293), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [249] = { - [sym_attribute_declaration] = STATE(206), - [sym_compound_statement] = STATE(819), - [sym_attributed_statement] = STATE(818), - [sym_labeled_statement] = STATE(817), - [sym_expression_statement] = STATE(816), - [sym_if_statement] = STATE(815), - [sym_switch_statement] = STATE(814), - [sym_case_statement] = STATE(813), - [sym_while_statement] = STATE(812), - [sym_do_statement] = STATE(811), - [sym_for_statement] = STATE(810), - [sym_return_statement] = STATE(809), - [sym_break_statement] = STATE(808), - [sym_continue_statement] = STATE(807), - [sym_goto_statement] = STATE(806), - [sym__expression] = STATE(3502), - [sym_comma_expression] = STATE(6595), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_for_range_loop] = STATE(805), - [sym_co_return_statement] = STATE(804), - [sym_co_yield_statement] = STATE(803), - [sym_throw_statement] = STATE(802), - [sym_try_statement] = STATE(800), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_attributed_declarator_repeat1] = STATE(206), - [sym_identifier] = ACTIONS(1759), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym_attribute_declaration] = STATE(179), + [sym_compound_statement] = STATE(1525), + [sym_attributed_statement] = STATE(1525), + [sym_labeled_statement] = STATE(1525), + [sym_expression_statement] = STATE(1525), + [sym_if_statement] = STATE(1525), + [sym_switch_statement] = STATE(1525), + [sym_case_statement] = STATE(1525), + [sym_while_statement] = STATE(1525), + [sym_do_statement] = STATE(1525), + [sym_for_statement] = STATE(1525), + [sym_return_statement] = STATE(1525), + [sym_break_statement] = STATE(1525), + [sym_continue_statement] = STATE(1525), + [sym_goto_statement] = STATE(1525), + [sym__expression] = STATE(4212), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7175), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(1525), + [sym_co_return_statement] = STATE(1525), + [sym_co_yield_statement] = STATE(1525), + [sym_throw_statement] = STATE(1525), + [sym_try_statement] = STATE(1525), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(179), + [sym_identifier] = ACTIONS(2109), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_LBRACK] = ACTIONS(994), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_if] = ACTIONS(175), - [anon_sym_switch] = ACTIONS(177), - [anon_sym_case] = ACTIONS(179), - [anon_sym_default] = ACTIONS(181), - [anon_sym_while] = ACTIONS(183), - [anon_sym_do] = ACTIONS(185), - [anon_sym_for] = ACTIONS(187), - [anon_sym_return] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), - [anon_sym_goto] = ACTIONS(195), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(1728), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(1732), + [anon_sym_LBRACK] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(1734), + [anon_sym_switch] = ACTIONS(1736), + [anon_sym_case] = ACTIONS(2111), + [anon_sym_default] = ACTIONS(2113), + [anon_sym_while] = ACTIONS(1738), + [anon_sym_do] = ACTIONS(1740), + [anon_sym_for] = ACTIONS(1742), + [anon_sym_return] = ACTIONS(1744), + [anon_sym_break] = ACTIONS(1746), + [anon_sym_continue] = ACTIONS(1748), + [anon_sym_goto] = ACTIONS(1750), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_try] = ACTIONS(201), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(203), - [anon_sym_co_return] = ACTIONS(213), - [anon_sym_co_yield] = ACTIONS(215), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(1752), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(1754), + [anon_sym_co_return] = ACTIONS(1756), + [anon_sym_co_yield] = ACTIONS(1758), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [250] = { - [sym_attribute_declaration] = STATE(149), - [sym_compound_statement] = STATE(1260), - [sym_attributed_statement] = STATE(1260), - [sym_labeled_statement] = STATE(1260), - [sym_expression_statement] = STATE(1260), - [sym_if_statement] = STATE(1260), - [sym_switch_statement] = STATE(1260), - [sym_case_statement] = STATE(1260), - [sym_while_statement] = STATE(1260), - [sym_do_statement] = STATE(1260), - [sym_for_statement] = STATE(1260), - [sym_return_statement] = STATE(1260), - [sym_break_statement] = STATE(1260), - [sym_continue_statement] = STATE(1260), - [sym_goto_statement] = STATE(1260), - [sym__expression] = STATE(3545), - [sym_comma_expression] = STATE(6215), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_for_range_loop] = STATE(1260), - [sym_co_return_statement] = STATE(1260), - [sym_co_yield_statement] = STATE(1260), - [sym_throw_statement] = STATE(1260), - [sym_try_statement] = STATE(1260), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_attributed_declarator_repeat1] = STATE(149), - [sym_identifier] = ACTIONS(1775), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym_attribute_declaration] = STATE(230), + [sym_compound_statement] = STATE(1081), + [sym_attributed_statement] = STATE(1082), + [sym_labeled_statement] = STATE(1083), + [sym_expression_statement] = STATE(1084), + [sym_if_statement] = STATE(1087), + [sym_switch_statement] = STATE(1088), + [sym_case_statement] = STATE(1093), + [sym_while_statement] = STATE(1096), + [sym_do_statement] = STATE(1100), + [sym_for_statement] = STATE(1104), + [sym_return_statement] = STATE(1106), + [sym_break_statement] = STATE(1107), + [sym_continue_statement] = STATE(1108), + [sym_goto_statement] = STATE(1109), + [sym__expression] = STATE(4182), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7590), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(1112), + [sym_co_return_statement] = STATE(1119), + [sym_co_yield_statement] = STATE(1122), + [sym_throw_statement] = STATE(1125), + [sym_try_statement] = STATE(1129), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(230), + [sym_identifier] = ACTIONS(2115), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(1328), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(1332), - [anon_sym_LBRACK] = ACTIONS(994), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_if] = ACTIONS(1334), - [anon_sym_switch] = ACTIONS(1336), - [anon_sym_case] = ACTIONS(1767), - [anon_sym_default] = ACTIONS(1769), - [anon_sym_while] = ACTIONS(1338), - [anon_sym_do] = ACTIONS(1340), - [anon_sym_for] = ACTIONS(1342), - [anon_sym_return] = ACTIONS(1344), - [anon_sym_break] = ACTIONS(1346), - [anon_sym_continue] = ACTIONS(1348), - [anon_sym_goto] = ACTIONS(1350), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACK] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(2117), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_case] = ACTIONS(2111), + [anon_sym_default] = ACTIONS(2113), + [anon_sym_while] = ACTIONS(2119), + [anon_sym_do] = ACTIONS(81), + [anon_sym_for] = ACTIONS(2121), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_try] = ACTIONS(1352), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(1354), - [anon_sym_co_return] = ACTIONS(1356), - [anon_sym_co_yield] = ACTIONS(1358), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(127), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(131), + [anon_sym_co_return] = ACTIONS(141), + [anon_sym_co_yield] = ACTIONS(143), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [251] = { - [sym_attribute_declaration] = STATE(172), - [sym_compound_statement] = STATE(697), - [sym_attributed_statement] = STATE(697), - [sym_labeled_statement] = STATE(697), - [sym_expression_statement] = STATE(697), - [sym_if_statement] = STATE(697), - [sym_switch_statement] = STATE(697), - [sym_case_statement] = STATE(697), - [sym_while_statement] = STATE(697), - [sym_do_statement] = STATE(697), - [sym_for_statement] = STATE(697), - [sym_return_statement] = STATE(697), - [sym_break_statement] = STATE(697), - [sym_continue_statement] = STATE(697), - [sym_goto_statement] = STATE(697), - [sym__expression] = STATE(3622), - [sym_comma_expression] = STATE(6125), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_for_range_loop] = STATE(697), - [sym_co_return_statement] = STATE(697), - [sym_co_yield_statement] = STATE(697), - [sym_throw_statement] = STATE(697), - [sym_try_statement] = STATE(697), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_attributed_declarator_repeat1] = STATE(172), - [sym_identifier] = ACTIONS(1757), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym_attribute_declaration] = STATE(199), + [sym_compound_statement] = STATE(605), + [sym_attributed_statement] = STATE(605), + [sym_labeled_statement] = STATE(605), + [sym_expression_statement] = STATE(605), + [sym_if_statement] = STATE(605), + [sym_switch_statement] = STATE(605), + [sym_case_statement] = STATE(605), + [sym_while_statement] = STATE(605), + [sym_do_statement] = STATE(605), + [sym_for_statement] = STATE(605), + [sym_return_statement] = STATE(605), + [sym_break_statement] = STATE(605), + [sym_continue_statement] = STATE(605), + [sym_goto_statement] = STATE(605), + [sym__expression] = STATE(4169), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7079), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(605), + [sym_co_return_statement] = STATE(605), + [sym_co_yield_statement] = STATE(605), + [sym_throw_statement] = STATE(605), + [sym_try_statement] = STATE(605), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(199), + [sym_identifier] = ACTIONS(2107), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(33), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(994), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_if] = ACTIONS(73), - [anon_sym_switch] = ACTIONS(75), - [anon_sym_case] = ACTIONS(77), - [anon_sym_default] = ACTIONS(79), - [anon_sym_while] = ACTIONS(81), - [anon_sym_do] = ACTIONS(83), - [anon_sym_for] = ACTIONS(85), - [anon_sym_return] = ACTIONS(87), - [anon_sym_break] = ACTIONS(89), - [anon_sym_continue] = ACTIONS(91), - [anon_sym_goto] = ACTIONS(93), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(345), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(351), + [anon_sym_LBRACK] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(355), + [anon_sym_switch] = ACTIONS(357), + [anon_sym_case] = ACTIONS(359), + [anon_sym_default] = ACTIONS(361), + [anon_sym_while] = ACTIONS(363), + [anon_sym_do] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_return] = ACTIONS(369), + [anon_sym_break] = ACTIONS(371), + [anon_sym_continue] = ACTIONS(373), + [anon_sym_goto] = ACTIONS(375), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_try] = ACTIONS(121), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(125), - [anon_sym_co_return] = ACTIONS(135), - [anon_sym_co_yield] = ACTIONS(137), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(379), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(381), + [anon_sym_co_return] = ACTIONS(391), + [anon_sym_co_yield] = ACTIONS(393), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [252] = { - [sym_attribute_declaration] = STATE(253), - [sym_compound_statement] = STATE(418), - [sym_attributed_statement] = STATE(418), - [sym_labeled_statement] = STATE(418), - [sym_expression_statement] = STATE(418), - [sym_if_statement] = STATE(418), - [sym_switch_statement] = STATE(418), - [sym_case_statement] = STATE(418), - [sym_while_statement] = STATE(418), - [sym_do_statement] = STATE(418), - [sym_for_statement] = STATE(418), - [sym_return_statement] = STATE(418), - [sym_break_statement] = STATE(418), - [sym_continue_statement] = STATE(418), - [sym_goto_statement] = STATE(418), - [sym__expression] = STATE(3497), - [sym_comma_expression] = STATE(6497), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_for_range_loop] = STATE(418), - [sym_co_return_statement] = STATE(418), - [sym_co_yield_statement] = STATE(418), - [sym_throw_statement] = STATE(418), - [sym_try_statement] = STATE(418), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_attributed_declarator_repeat1] = STATE(253), - [sym_identifier] = ACTIONS(2002), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym_attribute_declaration] = STATE(179), + [sym_compound_statement] = STATE(1493), + [sym_attributed_statement] = STATE(1493), + [sym_labeled_statement] = STATE(1493), + [sym_expression_statement] = STATE(1493), + [sym_if_statement] = STATE(1493), + [sym_switch_statement] = STATE(1493), + [sym_case_statement] = STATE(1493), + [sym_while_statement] = STATE(1493), + [sym_do_statement] = STATE(1493), + [sym_for_statement] = STATE(1493), + [sym_return_statement] = STATE(1493), + [sym_break_statement] = STATE(1493), + [sym_continue_statement] = STATE(1493), + [sym_goto_statement] = STATE(1493), + [sym__expression] = STATE(4212), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7175), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(1493), + [sym_co_return_statement] = STATE(1493), + [sym_co_yield_statement] = STATE(1493), + [sym_throw_statement] = STATE(1493), + [sym_try_statement] = STATE(1493), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(179), + [sym_identifier] = ACTIONS(2109), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(249), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(255), - [anon_sym_LBRACK] = ACTIONS(994), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_if] = ACTIONS(259), - [anon_sym_switch] = ACTIONS(261), - [anon_sym_case] = ACTIONS(263), - [anon_sym_default] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_do] = ACTIONS(269), - [anon_sym_for] = ACTIONS(271), - [anon_sym_return] = ACTIONS(273), - [anon_sym_break] = ACTIONS(275), - [anon_sym_continue] = ACTIONS(277), - [anon_sym_goto] = ACTIONS(279), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(1728), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(1732), + [anon_sym_LBRACK] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(1734), + [anon_sym_switch] = ACTIONS(1736), + [anon_sym_case] = ACTIONS(2111), + [anon_sym_default] = ACTIONS(2113), + [anon_sym_while] = ACTIONS(1738), + [anon_sym_do] = ACTIONS(1740), + [anon_sym_for] = ACTIONS(1742), + [anon_sym_return] = ACTIONS(1744), + [anon_sym_break] = ACTIONS(1746), + [anon_sym_continue] = ACTIONS(1748), + [anon_sym_goto] = ACTIONS(1750), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_try] = ACTIONS(283), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(285), - [anon_sym_co_return] = ACTIONS(295), - [anon_sym_co_yield] = ACTIONS(297), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(1752), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(1754), + [anon_sym_co_return] = ACTIONS(1756), + [anon_sym_co_yield] = ACTIONS(1758), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [253] = { - [sym_attribute_declaration] = STATE(224), - [sym_compound_statement] = STATE(413), - [sym_attributed_statement] = STATE(413), - [sym_labeled_statement] = STATE(413), - [sym_expression_statement] = STATE(413), - [sym_if_statement] = STATE(413), - [sym_switch_statement] = STATE(413), - [sym_case_statement] = STATE(413), - [sym_while_statement] = STATE(413), - [sym_do_statement] = STATE(413), - [sym_for_statement] = STATE(413), - [sym_return_statement] = STATE(413), - [sym_break_statement] = STATE(413), - [sym_continue_statement] = STATE(413), - [sym_goto_statement] = STATE(413), - [sym__expression] = STATE(3497), - [sym_comma_expression] = STATE(6497), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_for_range_loop] = STATE(413), - [sym_co_return_statement] = STATE(413), - [sym_co_yield_statement] = STATE(413), - [sym_throw_statement] = STATE(413), - [sym_try_statement] = STATE(413), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_attributed_declarator_repeat1] = STATE(224), - [sym_identifier] = ACTIONS(2002), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym_attribute_declaration] = STATE(244), + [sym_compound_statement] = STATE(477), + [sym_attributed_statement] = STATE(477), + [sym_labeled_statement] = STATE(477), + [sym_expression_statement] = STATE(477), + [sym_if_statement] = STATE(477), + [sym_switch_statement] = STATE(477), + [sym_case_statement] = STATE(477), + [sym_while_statement] = STATE(477), + [sym_do_statement] = STATE(477), + [sym_for_statement] = STATE(477), + [sym_return_statement] = STATE(477), + [sym_break_statement] = STATE(477), + [sym_continue_statement] = STATE(477), + [sym_goto_statement] = STATE(477), + [sym__expression] = STATE(4160), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7618), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(477), + [sym_co_return_statement] = STATE(477), + [sym_co_yield_statement] = STATE(477), + [sym_throw_statement] = STATE(477), + [sym_try_statement] = STATE(477), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(244), + [sym_identifier] = ACTIONS(2105), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(249), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(255), - [anon_sym_LBRACK] = ACTIONS(994), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_if] = ACTIONS(259), - [anon_sym_switch] = ACTIONS(261), - [anon_sym_case] = ACTIONS(263), - [anon_sym_default] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_do] = ACTIONS(269), - [anon_sym_for] = ACTIONS(271), - [anon_sym_return] = ACTIONS(273), - [anon_sym_break] = ACTIONS(275), - [anon_sym_continue] = ACTIONS(277), - [anon_sym_goto] = ACTIONS(279), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(245), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(251), + [anon_sym_LBRACK] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(255), + [anon_sym_switch] = ACTIONS(257), + [anon_sym_case] = ACTIONS(259), + [anon_sym_default] = ACTIONS(261), + [anon_sym_while] = ACTIONS(263), + [anon_sym_do] = ACTIONS(265), + [anon_sym_for] = ACTIONS(267), + [anon_sym_return] = ACTIONS(269), + [anon_sym_break] = ACTIONS(271), + [anon_sym_continue] = ACTIONS(273), + [anon_sym_goto] = ACTIONS(275), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_try] = ACTIONS(283), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(285), - [anon_sym_co_return] = ACTIONS(295), - [anon_sym_co_yield] = ACTIONS(297), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(279), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(281), + [anon_sym_co_return] = ACTIONS(291), + [anon_sym_co_yield] = ACTIONS(293), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [254] = { - [sym_attribute_declaration] = STATE(253), - [sym_compound_statement] = STATE(416), - [sym_attributed_statement] = STATE(416), - [sym_labeled_statement] = STATE(416), - [sym_expression_statement] = STATE(416), - [sym_if_statement] = STATE(416), - [sym_switch_statement] = STATE(416), - [sym_case_statement] = STATE(416), - [sym_while_statement] = STATE(416), - [sym_do_statement] = STATE(416), - [sym_for_statement] = STATE(416), - [sym_return_statement] = STATE(416), - [sym_break_statement] = STATE(416), - [sym_continue_statement] = STATE(416), - [sym_goto_statement] = STATE(416), - [sym__expression] = STATE(3497), - [sym_comma_expression] = STATE(6497), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_for_range_loop] = STATE(416), - [sym_co_return_statement] = STATE(416), - [sym_co_yield_statement] = STATE(416), - [sym_throw_statement] = STATE(416), - [sym_try_statement] = STATE(416), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_attributed_declarator_repeat1] = STATE(253), - [sym_identifier] = ACTIONS(2002), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym_attribute_declaration] = STATE(260), + [sym_compound_statement] = STATE(996), + [sym_attributed_statement] = STATE(996), + [sym_labeled_statement] = STATE(996), + [sym_expression_statement] = STATE(996), + [sym_if_statement] = STATE(996), + [sym_switch_statement] = STATE(996), + [sym_case_statement] = STATE(996), + [sym_while_statement] = STATE(996), + [sym_do_statement] = STATE(996), + [sym_for_statement] = STATE(996), + [sym_return_statement] = STATE(996), + [sym_break_statement] = STATE(996), + [sym_continue_statement] = STATE(996), + [sym_goto_statement] = STATE(996), + [sym__expression] = STATE(4234), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7265), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(996), + [sym_co_return_statement] = STATE(996), + [sym_co_yield_statement] = STATE(996), + [sym_throw_statement] = STATE(996), + [sym_try_statement] = STATE(996), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(260), + [sym_identifier] = ACTIONS(2101), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(249), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(255), - [anon_sym_LBRACK] = ACTIONS(994), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_if] = ACTIONS(259), - [anon_sym_switch] = ACTIONS(261), - [anon_sym_case] = ACTIONS(263), - [anon_sym_default] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_do] = ACTIONS(269), - [anon_sym_for] = ACTIONS(271), - [anon_sym_return] = ACTIONS(273), - [anon_sym_break] = ACTIONS(275), - [anon_sym_continue] = ACTIONS(277), - [anon_sym_goto] = ACTIONS(279), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(1622), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACK] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(71), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_case] = ACTIONS(75), + [anon_sym_default] = ACTIONS(77), + [anon_sym_while] = ACTIONS(79), + [anon_sym_do] = ACTIONS(81), + [anon_sym_for] = ACTIONS(83), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_try] = ACTIONS(283), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(285), - [anon_sym_co_return] = ACTIONS(295), - [anon_sym_co_yield] = ACTIONS(297), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(127), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(131), + [anon_sym_co_return] = ACTIONS(141), + [anon_sym_co_yield] = ACTIONS(143), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [255] = { - [sym_attribute_declaration] = STATE(253), - [sym_compound_statement] = STATE(415), - [sym_attributed_statement] = STATE(415), - [sym_labeled_statement] = STATE(415), - [sym_expression_statement] = STATE(415), - [sym_if_statement] = STATE(415), - [sym_switch_statement] = STATE(415), - [sym_case_statement] = STATE(415), - [sym_while_statement] = STATE(415), - [sym_do_statement] = STATE(415), - [sym_for_statement] = STATE(415), - [sym_return_statement] = STATE(415), - [sym_break_statement] = STATE(415), - [sym_continue_statement] = STATE(415), - [sym_goto_statement] = STATE(415), - [sym__expression] = STATE(3497), - [sym_comma_expression] = STATE(6497), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_for_range_loop] = STATE(415), - [sym_co_return_statement] = STATE(415), - [sym_co_yield_statement] = STATE(415), - [sym_throw_statement] = STATE(415), - [sym_try_statement] = STATE(415), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_attributed_declarator_repeat1] = STATE(253), - [sym_identifier] = ACTIONS(2002), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym_attribute_declaration] = STATE(244), + [sym_compound_statement] = STATE(412), + [sym_attributed_statement] = STATE(412), + [sym_labeled_statement] = STATE(412), + [sym_expression_statement] = STATE(412), + [sym_if_statement] = STATE(412), + [sym_switch_statement] = STATE(412), + [sym_case_statement] = STATE(412), + [sym_while_statement] = STATE(412), + [sym_do_statement] = STATE(412), + [sym_for_statement] = STATE(412), + [sym_return_statement] = STATE(412), + [sym_break_statement] = STATE(412), + [sym_continue_statement] = STATE(412), + [sym_goto_statement] = STATE(412), + [sym__expression] = STATE(4160), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7618), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(412), + [sym_co_return_statement] = STATE(412), + [sym_co_yield_statement] = STATE(412), + [sym_throw_statement] = STATE(412), + [sym_try_statement] = STATE(412), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(244), + [sym_identifier] = ACTIONS(2105), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(249), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(255), - [anon_sym_LBRACK] = ACTIONS(994), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_if] = ACTIONS(259), - [anon_sym_switch] = ACTIONS(261), - [anon_sym_case] = ACTIONS(263), - [anon_sym_default] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_do] = ACTIONS(269), - [anon_sym_for] = ACTIONS(271), - [anon_sym_return] = ACTIONS(273), - [anon_sym_break] = ACTIONS(275), - [anon_sym_continue] = ACTIONS(277), - [anon_sym_goto] = ACTIONS(279), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(245), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(251), + [anon_sym_LBRACK] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(255), + [anon_sym_switch] = ACTIONS(257), + [anon_sym_case] = ACTIONS(259), + [anon_sym_default] = ACTIONS(261), + [anon_sym_while] = ACTIONS(263), + [anon_sym_do] = ACTIONS(265), + [anon_sym_for] = ACTIONS(267), + [anon_sym_return] = ACTIONS(269), + [anon_sym_break] = ACTIONS(271), + [anon_sym_continue] = ACTIONS(273), + [anon_sym_goto] = ACTIONS(275), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_try] = ACTIONS(283), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(285), - [anon_sym_co_return] = ACTIONS(295), - [anon_sym_co_yield] = ACTIONS(297), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(279), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(281), + [anon_sym_co_return] = ACTIONS(291), + [anon_sym_co_yield] = ACTIONS(293), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [256] = { - [sym_attribute_declaration] = STATE(151), - [sym_compound_statement] = STATE(691), - [sym_attributed_statement] = STATE(691), - [sym_labeled_statement] = STATE(691), - [sym_expression_statement] = STATE(691), - [sym_if_statement] = STATE(691), - [sym_switch_statement] = STATE(691), - [sym_case_statement] = STATE(691), - [sym_while_statement] = STATE(691), - [sym_do_statement] = STATE(691), - [sym_for_statement] = STATE(691), - [sym_return_statement] = STATE(691), - [sym_break_statement] = STATE(691), - [sym_continue_statement] = STATE(691), - [sym_goto_statement] = STATE(691), - [sym__expression] = STATE(3522), - [sym_comma_expression] = STATE(6276), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_for_range_loop] = STATE(691), - [sym_co_return_statement] = STATE(691), - [sym_co_yield_statement] = STATE(691), - [sym_throw_statement] = STATE(691), - [sym_try_statement] = STATE(691), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_attributed_declarator_repeat1] = STATE(151), - [sym_identifier] = ACTIONS(1761), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym_attribute_declaration] = STATE(230), + [sym_compound_statement] = STATE(7294), + [sym_attributed_statement] = STATE(7294), + [sym_labeled_statement] = STATE(7294), + [sym_expression_statement] = STATE(7294), + [sym_if_statement] = STATE(7294), + [sym_switch_statement] = STATE(7294), + [sym_case_statement] = STATE(7294), + [sym_while_statement] = STATE(7294), + [sym_do_statement] = STATE(7294), + [sym_for_statement] = STATE(7294), + [sym_return_statement] = STATE(7294), + [sym_break_statement] = STATE(7294), + [sym_continue_statement] = STATE(7294), + [sym_goto_statement] = STATE(7294), + [sym__expression] = STATE(4182), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7590), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(7294), + [sym_co_return_statement] = STATE(7294), + [sym_co_yield_statement] = STATE(7294), + [sym_throw_statement] = STATE(7294), + [sym_try_statement] = STATE(7294), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(230), + [sym_identifier] = ACTIONS(2115), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(660), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(666), - [anon_sym_LBRACK] = ACTIONS(994), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_if] = ACTIONS(670), - [anon_sym_switch] = ACTIONS(672), - [anon_sym_case] = ACTIONS(674), - [anon_sym_default] = ACTIONS(676), - [anon_sym_while] = ACTIONS(678), - [anon_sym_do] = ACTIONS(680), - [anon_sym_for] = ACTIONS(682), - [anon_sym_return] = ACTIONS(684), - [anon_sym_break] = ACTIONS(686), - [anon_sym_continue] = ACTIONS(688), - [anon_sym_goto] = ACTIONS(690), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACK] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(2117), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_case] = ACTIONS(2111), + [anon_sym_default] = ACTIONS(2113), + [anon_sym_while] = ACTIONS(2119), + [anon_sym_do] = ACTIONS(81), + [anon_sym_for] = ACTIONS(2121), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_try] = ACTIONS(694), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(696), - [anon_sym_co_return] = ACTIONS(706), - [anon_sym_co_yield] = ACTIONS(708), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(127), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(131), + [anon_sym_co_return] = ACTIONS(141), + [anon_sym_co_yield] = ACTIONS(143), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [257] = { - [sym_attribute_declaration] = STATE(253), - [sym_compound_statement] = STATE(468), - [sym_attributed_statement] = STATE(468), - [sym_labeled_statement] = STATE(468), - [sym_expression_statement] = STATE(468), - [sym_if_statement] = STATE(468), - [sym_switch_statement] = STATE(468), - [sym_case_statement] = STATE(468), - [sym_while_statement] = STATE(468), - [sym_do_statement] = STATE(468), - [sym_for_statement] = STATE(468), - [sym_return_statement] = STATE(468), - [sym_break_statement] = STATE(468), - [sym_continue_statement] = STATE(468), - [sym_goto_statement] = STATE(468), - [sym__expression] = STATE(3497), - [sym_comma_expression] = STATE(6497), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_for_range_loop] = STATE(468), - [sym_co_return_statement] = STATE(468), - [sym_co_yield_statement] = STATE(468), - [sym_throw_statement] = STATE(468), - [sym_try_statement] = STATE(468), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_attributed_declarator_repeat1] = STATE(253), - [sym_identifier] = ACTIONS(2002), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym_attribute_declaration] = STATE(244), + [sym_compound_statement] = STATE(397), + [sym_attributed_statement] = STATE(397), + [sym_labeled_statement] = STATE(397), + [sym_expression_statement] = STATE(397), + [sym_if_statement] = STATE(397), + [sym_switch_statement] = STATE(397), + [sym_case_statement] = STATE(397), + [sym_while_statement] = STATE(397), + [sym_do_statement] = STATE(397), + [sym_for_statement] = STATE(397), + [sym_return_statement] = STATE(397), + [sym_break_statement] = STATE(397), + [sym_continue_statement] = STATE(397), + [sym_goto_statement] = STATE(397), + [sym__expression] = STATE(4160), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7618), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(397), + [sym_co_return_statement] = STATE(397), + [sym_co_yield_statement] = STATE(397), + [sym_throw_statement] = STATE(397), + [sym_try_statement] = STATE(397), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(244), + [sym_identifier] = ACTIONS(2105), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(249), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(255), - [anon_sym_LBRACK] = ACTIONS(994), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_if] = ACTIONS(259), - [anon_sym_switch] = ACTIONS(261), - [anon_sym_case] = ACTIONS(263), - [anon_sym_default] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_do] = ACTIONS(269), - [anon_sym_for] = ACTIONS(271), - [anon_sym_return] = ACTIONS(273), - [anon_sym_break] = ACTIONS(275), - [anon_sym_continue] = ACTIONS(277), - [anon_sym_goto] = ACTIONS(279), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(245), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(251), + [anon_sym_LBRACK] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(255), + [anon_sym_switch] = ACTIONS(257), + [anon_sym_case] = ACTIONS(259), + [anon_sym_default] = ACTIONS(261), + [anon_sym_while] = ACTIONS(263), + [anon_sym_do] = ACTIONS(265), + [anon_sym_for] = ACTIONS(267), + [anon_sym_return] = ACTIONS(269), + [anon_sym_break] = ACTIONS(271), + [anon_sym_continue] = ACTIONS(273), + [anon_sym_goto] = ACTIONS(275), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_try] = ACTIONS(283), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(285), - [anon_sym_co_return] = ACTIONS(295), - [anon_sym_co_yield] = ACTIONS(297), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(279), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(281), + [anon_sym_co_return] = ACTIONS(291), + [anon_sym_co_yield] = ACTIONS(293), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [258] = { - [sym_attribute_declaration] = STATE(172), - [sym_compound_statement] = STATE(692), - [sym_attributed_statement] = STATE(692), - [sym_labeled_statement] = STATE(692), - [sym_expression_statement] = STATE(692), - [sym_if_statement] = STATE(692), - [sym_switch_statement] = STATE(692), - [sym_case_statement] = STATE(692), - [sym_while_statement] = STATE(692), - [sym_do_statement] = STATE(692), - [sym_for_statement] = STATE(692), - [sym_return_statement] = STATE(692), - [sym_break_statement] = STATE(692), - [sym_continue_statement] = STATE(692), - [sym_goto_statement] = STATE(692), - [sym__expression] = STATE(3622), - [sym_comma_expression] = STATE(6125), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_for_range_loop] = STATE(692), - [sym_co_return_statement] = STATE(692), - [sym_co_yield_statement] = STATE(692), - [sym_throw_statement] = STATE(692), - [sym_try_statement] = STATE(692), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_attributed_declarator_repeat1] = STATE(172), - [sym_identifier] = ACTIONS(1757), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym_attribute_declaration] = STATE(230), + [sym_compound_statement] = STATE(1075), + [sym_attributed_statement] = STATE(1075), + [sym_labeled_statement] = STATE(1075), + [sym_expression_statement] = STATE(1075), + [sym_if_statement] = STATE(1075), + [sym_switch_statement] = STATE(1075), + [sym_case_statement] = STATE(1075), + [sym_while_statement] = STATE(1075), + [sym_do_statement] = STATE(1075), + [sym_for_statement] = STATE(1075), + [sym_return_statement] = STATE(1075), + [sym_break_statement] = STATE(1075), + [sym_continue_statement] = STATE(1075), + [sym_goto_statement] = STATE(1075), + [sym__expression] = STATE(4182), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7590), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(1075), + [sym_co_return_statement] = STATE(1075), + [sym_co_yield_statement] = STATE(1075), + [sym_throw_statement] = STATE(1075), + [sym_try_statement] = STATE(1075), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(230), + [sym_identifier] = ACTIONS(2115), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(33), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(994), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_if] = ACTIONS(73), - [anon_sym_switch] = ACTIONS(75), - [anon_sym_case] = ACTIONS(77), - [anon_sym_default] = ACTIONS(79), - [anon_sym_while] = ACTIONS(81), - [anon_sym_do] = ACTIONS(83), - [anon_sym_for] = ACTIONS(85), - [anon_sym_return] = ACTIONS(87), - [anon_sym_break] = ACTIONS(89), - [anon_sym_continue] = ACTIONS(91), - [anon_sym_goto] = ACTIONS(93), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACK] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(2117), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_case] = ACTIONS(2111), + [anon_sym_default] = ACTIONS(2113), + [anon_sym_while] = ACTIONS(2119), + [anon_sym_do] = ACTIONS(81), + [anon_sym_for] = ACTIONS(2121), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_try] = ACTIONS(121), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(125), - [anon_sym_co_return] = ACTIONS(135), - [anon_sym_co_yield] = ACTIONS(137), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(127), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(131), + [anon_sym_co_return] = ACTIONS(141), + [anon_sym_co_yield] = ACTIONS(143), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [259] = { - [sym_attribute_declaration] = STATE(238), - [sym_compound_statement] = STATE(6538), - [sym_attributed_statement] = STATE(6538), - [sym_labeled_statement] = STATE(6538), - [sym_expression_statement] = STATE(6538), - [sym_if_statement] = STATE(6538), - [sym_switch_statement] = STATE(6538), - [sym_case_statement] = STATE(6538), - [sym_while_statement] = STATE(6538), - [sym_do_statement] = STATE(6538), - [sym_for_statement] = STATE(6538), - [sym_return_statement] = STATE(6538), - [sym_break_statement] = STATE(6538), - [sym_continue_statement] = STATE(6538), - [sym_goto_statement] = STATE(6538), - [sym__expression] = STATE(3622), - [sym_comma_expression] = STATE(6125), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_for_range_loop] = STATE(6538), - [sym_co_return_statement] = STATE(6538), - [sym_co_yield_statement] = STATE(6538), - [sym_throw_statement] = STATE(6538), - [sym_try_statement] = STATE(6538), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_attributed_declarator_repeat1] = STATE(238), - [sym_identifier] = ACTIONS(1763), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym_attribute_declaration] = STATE(251), + [sym_compound_statement] = STATE(713), + [sym_attributed_statement] = STATE(713), + [sym_labeled_statement] = STATE(713), + [sym_expression_statement] = STATE(713), + [sym_if_statement] = STATE(713), + [sym_switch_statement] = STATE(713), + [sym_case_statement] = STATE(713), + [sym_while_statement] = STATE(713), + [sym_do_statement] = STATE(713), + [sym_for_statement] = STATE(713), + [sym_return_statement] = STATE(713), + [sym_break_statement] = STATE(713), + [sym_continue_statement] = STATE(713), + [sym_goto_statement] = STATE(713), + [sym__expression] = STATE(4169), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7079), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(713), + [sym_co_return_statement] = STATE(713), + [sym_co_yield_statement] = STATE(713), + [sym_throw_statement] = STATE(713), + [sym_try_statement] = STATE(713), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(251), + [sym_identifier] = ACTIONS(2107), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(33), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(994), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_if] = ACTIONS(1765), - [anon_sym_switch] = ACTIONS(75), - [anon_sym_case] = ACTIONS(1767), - [anon_sym_default] = ACTIONS(1769), - [anon_sym_while] = ACTIONS(1771), - [anon_sym_do] = ACTIONS(83), - [anon_sym_for] = ACTIONS(1773), - [anon_sym_return] = ACTIONS(87), - [anon_sym_break] = ACTIONS(89), - [anon_sym_continue] = ACTIONS(91), - [anon_sym_goto] = ACTIONS(93), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(345), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(351), + [anon_sym_LBRACK] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(355), + [anon_sym_switch] = ACTIONS(357), + [anon_sym_case] = ACTIONS(359), + [anon_sym_default] = ACTIONS(361), + [anon_sym_while] = ACTIONS(363), + [anon_sym_do] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_return] = ACTIONS(369), + [anon_sym_break] = ACTIONS(371), + [anon_sym_continue] = ACTIONS(373), + [anon_sym_goto] = ACTIONS(375), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_try] = ACTIONS(121), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(125), - [anon_sym_co_return] = ACTIONS(135), - [anon_sym_co_yield] = ACTIONS(137), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(379), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(381), + [anon_sym_co_return] = ACTIONS(391), + [anon_sym_co_yield] = ACTIONS(393), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [260] = { - [sym_attribute_declaration] = STATE(253), - [sym_compound_statement] = STATE(348), - [sym_attributed_statement] = STATE(348), - [sym_labeled_statement] = STATE(348), - [sym_expression_statement] = STATE(348), - [sym_if_statement] = STATE(348), - [sym_switch_statement] = STATE(348), - [sym_case_statement] = STATE(348), - [sym_while_statement] = STATE(348), - [sym_do_statement] = STATE(348), - [sym_for_statement] = STATE(348), - [sym_return_statement] = STATE(348), - [sym_break_statement] = STATE(348), - [sym_continue_statement] = STATE(348), - [sym_goto_statement] = STATE(348), - [sym__expression] = STATE(3497), - [sym_comma_expression] = STATE(6497), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_for_range_loop] = STATE(348), - [sym_co_return_statement] = STATE(348), - [sym_co_yield_statement] = STATE(348), - [sym_throw_statement] = STATE(348), - [sym_try_statement] = STATE(348), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_attributed_declarator_repeat1] = STATE(253), - [sym_identifier] = ACTIONS(2002), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym_attribute_declaration] = STATE(235), + [sym_compound_statement] = STATE(850), + [sym_attributed_statement] = STATE(850), + [sym_labeled_statement] = STATE(850), + [sym_expression_statement] = STATE(850), + [sym_if_statement] = STATE(850), + [sym_switch_statement] = STATE(850), + [sym_case_statement] = STATE(850), + [sym_while_statement] = STATE(850), + [sym_do_statement] = STATE(850), + [sym_for_statement] = STATE(850), + [sym_return_statement] = STATE(850), + [sym_break_statement] = STATE(850), + [sym_continue_statement] = STATE(850), + [sym_goto_statement] = STATE(850), + [sym__expression] = STATE(4234), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7265), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(850), + [sym_co_return_statement] = STATE(850), + [sym_co_yield_statement] = STATE(850), + [sym_throw_statement] = STATE(850), + [sym_try_statement] = STATE(850), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(235), + [sym_identifier] = ACTIONS(2101), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(249), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(255), - [anon_sym_LBRACK] = ACTIONS(994), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_if] = ACTIONS(259), - [anon_sym_switch] = ACTIONS(261), - [anon_sym_case] = ACTIONS(263), - [anon_sym_default] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_do] = ACTIONS(269), - [anon_sym_for] = ACTIONS(271), - [anon_sym_return] = ACTIONS(273), - [anon_sym_break] = ACTIONS(275), - [anon_sym_continue] = ACTIONS(277), - [anon_sym_goto] = ACTIONS(279), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(1622), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACK] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(71), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_case] = ACTIONS(75), + [anon_sym_default] = ACTIONS(77), + [anon_sym_while] = ACTIONS(79), + [anon_sym_do] = ACTIONS(81), + [anon_sym_for] = ACTIONS(83), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_try] = ACTIONS(283), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(285), - [anon_sym_co_return] = ACTIONS(295), - [anon_sym_co_yield] = ACTIONS(297), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(127), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(131), + [anon_sym_co_return] = ACTIONS(141), + [anon_sym_co_yield] = ACTIONS(143), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [261] = { - [sym_attribute_declaration] = STATE(151), - [sym_compound_statement] = STATE(693), - [sym_attributed_statement] = STATE(694), - [sym_labeled_statement] = STATE(695), - [sym_expression_statement] = STATE(696), - [sym_if_statement] = STATE(699), - [sym_switch_statement] = STATE(700), - [sym_case_statement] = STATE(701), - [sym_while_statement] = STATE(702), - [sym_do_statement] = STATE(703), - [sym_for_statement] = STATE(704), - [sym_return_statement] = STATE(705), - [sym_break_statement] = STATE(706), - [sym_continue_statement] = STATE(709), - [sym_goto_statement] = STATE(710), - [sym__expression] = STATE(3522), - [sym_comma_expression] = STATE(6276), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), + [sym_attribute_declaration] = STATE(251), + [sym_compound_statement] = STATE(711), + [sym_attributed_statement] = STATE(711), + [sym_labeled_statement] = STATE(711), + [sym_expression_statement] = STATE(711), + [sym_if_statement] = STATE(711), + [sym_switch_statement] = STATE(711), + [sym_case_statement] = STATE(711), + [sym_while_statement] = STATE(711), + [sym_do_statement] = STATE(711), + [sym_for_statement] = STATE(711), + [sym_return_statement] = STATE(711), + [sym_break_statement] = STATE(711), + [sym_continue_statement] = STATE(711), + [sym_goto_statement] = STATE(711), + [sym__expression] = STATE(4169), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7079), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), [sym_for_range_loop] = STATE(711), - [sym_co_return_statement] = STATE(712), - [sym_co_yield_statement] = STATE(713), - [sym_throw_statement] = STATE(714), - [sym_try_statement] = STATE(715), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_attributed_declarator_repeat1] = STATE(151), - [sym_identifier] = ACTIONS(1761), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym_co_return_statement] = STATE(711), + [sym_co_yield_statement] = STATE(711), + [sym_throw_statement] = STATE(711), + [sym_try_statement] = STATE(711), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(251), + [sym_identifier] = ACTIONS(2107), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(660), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(666), - [anon_sym_LBRACK] = ACTIONS(994), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_if] = ACTIONS(670), - [anon_sym_switch] = ACTIONS(672), - [anon_sym_case] = ACTIONS(674), - [anon_sym_default] = ACTIONS(676), - [anon_sym_while] = ACTIONS(678), - [anon_sym_do] = ACTIONS(680), - [anon_sym_for] = ACTIONS(682), - [anon_sym_return] = ACTIONS(684), - [anon_sym_break] = ACTIONS(686), - [anon_sym_continue] = ACTIONS(688), - [anon_sym_goto] = ACTIONS(690), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(345), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(351), + [anon_sym_LBRACK] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(355), + [anon_sym_switch] = ACTIONS(357), + [anon_sym_case] = ACTIONS(359), + [anon_sym_default] = ACTIONS(361), + [anon_sym_while] = ACTIONS(363), + [anon_sym_do] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_return] = ACTIONS(369), + [anon_sym_break] = ACTIONS(371), + [anon_sym_continue] = ACTIONS(373), + [anon_sym_goto] = ACTIONS(375), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_try] = ACTIONS(694), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(696), - [anon_sym_co_return] = ACTIONS(706), - [anon_sym_co_yield] = ACTIONS(708), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(379), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(381), + [anon_sym_co_return] = ACTIONS(391), + [anon_sym_co_yield] = ACTIONS(393), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [262] = { - [sym_attribute_declaration] = STATE(151), - [sym_compound_statement] = STATE(718), - [sym_attributed_statement] = STATE(719), - [sym_labeled_statement] = STATE(721), - [sym_expression_statement] = STATE(722), - [sym_if_statement] = STATE(723), - [sym_switch_statement] = STATE(724), - [sym_case_statement] = STATE(725), - [sym_while_statement] = STATE(726), - [sym_do_statement] = STATE(727), - [sym_for_statement] = STATE(728), - [sym_return_statement] = STATE(731), - [sym_break_statement] = STATE(732), - [sym_continue_statement] = STATE(733), - [sym_goto_statement] = STATE(734), - [sym__expression] = STATE(3522), - [sym_comma_expression] = STATE(6276), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_for_range_loop] = STATE(735), - [sym_co_return_statement] = STATE(736), - [sym_co_yield_statement] = STATE(737), - [sym_throw_statement] = STATE(738), - [sym_try_statement] = STATE(739), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_attributed_declarator_repeat1] = STATE(151), - [sym_identifier] = ACTIONS(1761), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym_attribute_declaration] = STATE(189), + [sym_compound_statement] = STATE(949), + [sym_attributed_statement] = STATE(949), + [sym_labeled_statement] = STATE(949), + [sym_expression_statement] = STATE(949), + [sym_if_statement] = STATE(949), + [sym_switch_statement] = STATE(949), + [sym_case_statement] = STATE(949), + [sym_while_statement] = STATE(949), + [sym_do_statement] = STATE(949), + [sym_for_statement] = STATE(949), + [sym_return_statement] = STATE(949), + [sym_break_statement] = STATE(949), + [sym_continue_statement] = STATE(949), + [sym_goto_statement] = STATE(949), + [sym__expression] = STATE(4126), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(6964), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(949), + [sym_co_return_statement] = STATE(949), + [sym_co_yield_statement] = STATE(949), + [sym_throw_statement] = STATE(949), + [sym_try_statement] = STATE(949), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(189), + [sym_identifier] = ACTIONS(2099), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(660), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(666), - [anon_sym_LBRACK] = ACTIONS(994), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_if] = ACTIONS(670), - [anon_sym_switch] = ACTIONS(672), - [anon_sym_case] = ACTIONS(674), - [anon_sym_default] = ACTIONS(676), - [anon_sym_while] = ACTIONS(678), - [anon_sym_do] = ACTIONS(680), - [anon_sym_for] = ACTIONS(682), - [anon_sym_return] = ACTIONS(684), - [anon_sym_break] = ACTIONS(686), - [anon_sym_continue] = ACTIONS(688), - [anon_sym_goto] = ACTIONS(690), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(911), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(917), + [anon_sym_LBRACK] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(921), + [anon_sym_switch] = ACTIONS(923), + [anon_sym_case] = ACTIONS(925), + [anon_sym_default] = ACTIONS(927), + [anon_sym_while] = ACTIONS(929), + [anon_sym_do] = ACTIONS(931), + [anon_sym_for] = ACTIONS(933), + [anon_sym_return] = ACTIONS(935), + [anon_sym_break] = ACTIONS(937), + [anon_sym_continue] = ACTIONS(939), + [anon_sym_goto] = ACTIONS(941), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_try] = ACTIONS(694), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(696), - [anon_sym_co_return] = ACTIONS(706), - [anon_sym_co_yield] = ACTIONS(708), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(945), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(947), + [anon_sym_co_return] = ACTIONS(957), + [anon_sym_co_yield] = ACTIONS(959), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [263] = { - [sym_attribute_declaration] = STATE(253), - [sym_compound_statement] = STATE(410), - [sym_attributed_statement] = STATE(410), - [sym_labeled_statement] = STATE(410), - [sym_expression_statement] = STATE(410), - [sym_if_statement] = STATE(410), - [sym_switch_statement] = STATE(410), - [sym_case_statement] = STATE(410), - [sym_while_statement] = STATE(410), - [sym_do_statement] = STATE(410), - [sym_for_statement] = STATE(410), - [sym_return_statement] = STATE(410), - [sym_break_statement] = STATE(410), - [sym_continue_statement] = STATE(410), - [sym_goto_statement] = STATE(410), - [sym__expression] = STATE(3497), - [sym_comma_expression] = STATE(6497), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_for_range_loop] = STATE(410), - [sym_co_return_statement] = STATE(410), - [sym_co_yield_statement] = STATE(410), - [sym_throw_statement] = STATE(410), - [sym_try_statement] = STATE(410), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_attributed_declarator_repeat1] = STATE(253), - [sym_identifier] = ACTIONS(2002), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym_attribute_declaration] = STATE(309), + [sym_compound_statement] = STATE(1011), + [sym_attributed_statement] = STATE(1011), + [sym_labeled_statement] = STATE(1011), + [sym_expression_statement] = STATE(1011), + [sym_if_statement] = STATE(1011), + [sym_switch_statement] = STATE(1011), + [sym_case_statement] = STATE(1011), + [sym_while_statement] = STATE(1011), + [sym_do_statement] = STATE(1011), + [sym_for_statement] = STATE(1011), + [sym_return_statement] = STATE(1011), + [sym_break_statement] = STATE(1011), + [sym_continue_statement] = STATE(1011), + [sym_goto_statement] = STATE(1011), + [sym__expression] = STATE(4182), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7590), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(1011), + [sym_co_return_statement] = STATE(1011), + [sym_co_yield_statement] = STATE(1011), + [sym_throw_statement] = STATE(1011), + [sym_try_statement] = STATE(1011), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(309), + [sym_identifier] = ACTIONS(2103), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(249), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(255), - [anon_sym_LBRACK] = ACTIONS(994), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_if] = ACTIONS(259), - [anon_sym_switch] = ACTIONS(261), - [anon_sym_case] = ACTIONS(263), - [anon_sym_default] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_do] = ACTIONS(269), - [anon_sym_for] = ACTIONS(271), - [anon_sym_return] = ACTIONS(273), - [anon_sym_break] = ACTIONS(275), - [anon_sym_continue] = ACTIONS(277), - [anon_sym_goto] = ACTIONS(279), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(181), + [anon_sym_switch] = ACTIONS(183), + [anon_sym_case] = ACTIONS(185), + [anon_sym_default] = ACTIONS(187), + [anon_sym_while] = ACTIONS(189), + [anon_sym_do] = ACTIONS(191), + [anon_sym_for] = ACTIONS(193), + [anon_sym_return] = ACTIONS(195), + [anon_sym_break] = ACTIONS(197), + [anon_sym_continue] = ACTIONS(199), + [anon_sym_goto] = ACTIONS(201), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_try] = ACTIONS(283), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(285), - [anon_sym_co_return] = ACTIONS(295), - [anon_sym_co_yield] = ACTIONS(297), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(209), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(211), + [anon_sym_co_return] = ACTIONS(221), + [anon_sym_co_yield] = ACTIONS(223), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [264] = { - [sym_attribute_declaration] = STATE(151), - [sym_compound_statement] = STATE(613), - [sym_attributed_statement] = STATE(613), - [sym_labeled_statement] = STATE(613), - [sym_expression_statement] = STATE(613), - [sym_if_statement] = STATE(613), - [sym_switch_statement] = STATE(613), - [sym_case_statement] = STATE(613), - [sym_while_statement] = STATE(613), - [sym_do_statement] = STATE(613), - [sym_for_statement] = STATE(613), - [sym_return_statement] = STATE(613), - [sym_break_statement] = STATE(613), - [sym_continue_statement] = STATE(613), - [sym_goto_statement] = STATE(613), - [sym__expression] = STATE(3522), - [sym_comma_expression] = STATE(6276), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_for_range_loop] = STATE(613), - [sym_co_return_statement] = STATE(613), - [sym_co_yield_statement] = STATE(613), - [sym_throw_statement] = STATE(613), - [sym_try_statement] = STATE(613), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_attributed_declarator_repeat1] = STATE(151), - [sym_identifier] = ACTIONS(1761), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym_attribute_declaration] = STATE(251), + [sym_compound_statement] = STATE(710), + [sym_attributed_statement] = STATE(710), + [sym_labeled_statement] = STATE(710), + [sym_expression_statement] = STATE(710), + [sym_if_statement] = STATE(710), + [sym_switch_statement] = STATE(710), + [sym_case_statement] = STATE(710), + [sym_while_statement] = STATE(710), + [sym_do_statement] = STATE(710), + [sym_for_statement] = STATE(710), + [sym_return_statement] = STATE(710), + [sym_break_statement] = STATE(710), + [sym_continue_statement] = STATE(710), + [sym_goto_statement] = STATE(710), + [sym__expression] = STATE(4169), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7079), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(710), + [sym_co_return_statement] = STATE(710), + [sym_co_yield_statement] = STATE(710), + [sym_throw_statement] = STATE(710), + [sym_try_statement] = STATE(710), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(251), + [sym_identifier] = ACTIONS(2107), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(660), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(666), - [anon_sym_LBRACK] = ACTIONS(994), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_if] = ACTIONS(670), - [anon_sym_switch] = ACTIONS(672), - [anon_sym_case] = ACTIONS(674), - [anon_sym_default] = ACTIONS(676), - [anon_sym_while] = ACTIONS(678), - [anon_sym_do] = ACTIONS(680), - [anon_sym_for] = ACTIONS(682), - [anon_sym_return] = ACTIONS(684), - [anon_sym_break] = ACTIONS(686), - [anon_sym_continue] = ACTIONS(688), - [anon_sym_goto] = ACTIONS(690), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(345), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(351), + [anon_sym_LBRACK] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(355), + [anon_sym_switch] = ACTIONS(357), + [anon_sym_case] = ACTIONS(359), + [anon_sym_default] = ACTIONS(361), + [anon_sym_while] = ACTIONS(363), + [anon_sym_do] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_return] = ACTIONS(369), + [anon_sym_break] = ACTIONS(371), + [anon_sym_continue] = ACTIONS(373), + [anon_sym_goto] = ACTIONS(375), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_try] = ACTIONS(694), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(696), - [anon_sym_co_return] = ACTIONS(706), - [anon_sym_co_yield] = ACTIONS(708), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(379), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(381), + [anon_sym_co_return] = ACTIONS(391), + [anon_sym_co_yield] = ACTIONS(393), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [265] = { - [sym_attribute_declaration] = STATE(253), - [sym_compound_statement] = STATE(441), - [sym_attributed_statement] = STATE(441), - [sym_labeled_statement] = STATE(441), - [sym_expression_statement] = STATE(441), - [sym_if_statement] = STATE(441), - [sym_switch_statement] = STATE(441), - [sym_case_statement] = STATE(441), - [sym_while_statement] = STATE(441), - [sym_do_statement] = STATE(441), - [sym_for_statement] = STATE(441), - [sym_return_statement] = STATE(441), - [sym_break_statement] = STATE(441), - [sym_continue_statement] = STATE(441), - [sym_goto_statement] = STATE(441), - [sym__expression] = STATE(3497), - [sym_comma_expression] = STATE(6497), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_for_range_loop] = STATE(441), - [sym_co_return_statement] = STATE(441), - [sym_co_yield_statement] = STATE(441), - [sym_throw_statement] = STATE(441), - [sym_try_statement] = STATE(441), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_attributed_declarator_repeat1] = STATE(253), - [sym_identifier] = ACTIONS(2002), - [anon_sym_LPAREN2] = ACTIONS(984), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(249), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(255), - [anon_sym_LBRACK] = ACTIONS(994), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_if] = ACTIONS(259), - [anon_sym_switch] = ACTIONS(261), - [anon_sym_case] = ACTIONS(263), - [anon_sym_default] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_do] = ACTIONS(269), - [anon_sym_for] = ACTIONS(271), - [anon_sym_return] = ACTIONS(273), - [anon_sym_break] = ACTIONS(275), - [anon_sym_continue] = ACTIONS(277), - [anon_sym_goto] = ACTIONS(279), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_try] = ACTIONS(283), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(285), - [anon_sym_co_return] = ACTIONS(295), - [anon_sym_co_yield] = ACTIONS(297), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), - }, - [266] = { - [sym_attribute_declaration] = STATE(253), + [sym_attribute_declaration] = STATE(244), [sym_compound_statement] = STATE(407), [sym_attributed_statement] = STATE(407), [sym_labeled_statement] = STATE(407), @@ -66626,15283 +88917,15636 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(407), [sym_continue_statement] = STATE(407), [sym_goto_statement] = STATE(407), - [sym__expression] = STATE(3497), - [sym_comma_expression] = STATE(6497), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), + [sym__expression] = STATE(4160), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7618), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), [sym_for_range_loop] = STATE(407), [sym_co_return_statement] = STATE(407), [sym_co_yield_statement] = STATE(407), [sym_throw_statement] = STATE(407), [sym_try_statement] = STATE(407), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_attributed_declarator_repeat1] = STATE(253), - [sym_identifier] = ACTIONS(2002), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(244), + [sym_identifier] = ACTIONS(2105), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(245), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(251), + [anon_sym_LBRACK] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(255), + [anon_sym_switch] = ACTIONS(257), + [anon_sym_case] = ACTIONS(259), + [anon_sym_default] = ACTIONS(261), + [anon_sym_while] = ACTIONS(263), + [anon_sym_do] = ACTIONS(265), + [anon_sym_for] = ACTIONS(267), + [anon_sym_return] = ACTIONS(269), + [anon_sym_break] = ACTIONS(271), + [anon_sym_continue] = ACTIONS(273), + [anon_sym_goto] = ACTIONS(275), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(279), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(281), + [anon_sym_co_return] = ACTIONS(291), + [anon_sym_co_yield] = ACTIONS(293), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), + }, + [266] = { + [sym_attribute_declaration] = STATE(230), + [sym_compound_statement] = STATE(1074), + [sym_attributed_statement] = STATE(1074), + [sym_labeled_statement] = STATE(1074), + [sym_expression_statement] = STATE(1074), + [sym_if_statement] = STATE(1074), + [sym_switch_statement] = STATE(1074), + [sym_case_statement] = STATE(1074), + [sym_while_statement] = STATE(1074), + [sym_do_statement] = STATE(1074), + [sym_for_statement] = STATE(1074), + [sym_return_statement] = STATE(1074), + [sym_break_statement] = STATE(1074), + [sym_continue_statement] = STATE(1074), + [sym_goto_statement] = STATE(1074), + [sym__expression] = STATE(4182), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7590), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(1074), + [sym_co_return_statement] = STATE(1074), + [sym_co_yield_statement] = STATE(1074), + [sym_throw_statement] = STATE(1074), + [sym_try_statement] = STATE(1074), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(230), + [sym_identifier] = ACTIONS(2115), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(249), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(255), - [anon_sym_LBRACK] = ACTIONS(994), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_if] = ACTIONS(259), - [anon_sym_switch] = ACTIONS(261), - [anon_sym_case] = ACTIONS(263), - [anon_sym_default] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_do] = ACTIONS(269), - [anon_sym_for] = ACTIONS(271), - [anon_sym_return] = ACTIONS(273), - [anon_sym_break] = ACTIONS(275), - [anon_sym_continue] = ACTIONS(277), - [anon_sym_goto] = ACTIONS(279), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACK] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(2117), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_case] = ACTIONS(2111), + [anon_sym_default] = ACTIONS(2113), + [anon_sym_while] = ACTIONS(2119), + [anon_sym_do] = ACTIONS(81), + [anon_sym_for] = ACTIONS(2121), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_try] = ACTIONS(283), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(285), - [anon_sym_co_return] = ACTIONS(295), - [anon_sym_co_yield] = ACTIONS(297), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(127), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(131), + [anon_sym_co_return] = ACTIONS(141), + [anon_sym_co_yield] = ACTIONS(143), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [267] = { - [sym_attribute_declaration] = STATE(172), - [sym_compound_statement] = STATE(617), - [sym_attributed_statement] = STATE(618), - [sym_labeled_statement] = STATE(619), - [sym_expression_statement] = STATE(620), - [sym_if_statement] = STATE(621), - [sym_switch_statement] = STATE(624), - [sym_case_statement] = STATE(625), - [sym_while_statement] = STATE(626), - [sym_do_statement] = STATE(627), - [sym_for_statement] = STATE(628), - [sym_return_statement] = STATE(632), - [sym_break_statement] = STATE(637), - [sym_continue_statement] = STATE(638), - [sym_goto_statement] = STATE(667), - [sym__expression] = STATE(3622), - [sym_comma_expression] = STATE(6125), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_for_range_loop] = STATE(673), - [sym_co_return_statement] = STATE(677), - [sym_co_yield_statement] = STATE(679), - [sym_throw_statement] = STATE(682), - [sym_try_statement] = STATE(688), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_attributed_declarator_repeat1] = STATE(172), - [sym_identifier] = ACTIONS(1757), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym_attribute_declaration] = STATE(189), + [sym_compound_statement] = STATE(860), + [sym_attributed_statement] = STATE(860), + [sym_labeled_statement] = STATE(860), + [sym_expression_statement] = STATE(860), + [sym_if_statement] = STATE(860), + [sym_switch_statement] = STATE(860), + [sym_case_statement] = STATE(860), + [sym_while_statement] = STATE(860), + [sym_do_statement] = STATE(860), + [sym_for_statement] = STATE(860), + [sym_return_statement] = STATE(860), + [sym_break_statement] = STATE(860), + [sym_continue_statement] = STATE(860), + [sym_goto_statement] = STATE(860), + [sym__expression] = STATE(4126), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(6964), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(860), + [sym_co_return_statement] = STATE(860), + [sym_co_yield_statement] = STATE(860), + [sym_throw_statement] = STATE(860), + [sym_try_statement] = STATE(860), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(189), + [sym_identifier] = ACTIONS(2099), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(33), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(994), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_if] = ACTIONS(73), - [anon_sym_switch] = ACTIONS(75), - [anon_sym_case] = ACTIONS(77), - [anon_sym_default] = ACTIONS(79), - [anon_sym_while] = ACTIONS(81), - [anon_sym_do] = ACTIONS(83), - [anon_sym_for] = ACTIONS(85), - [anon_sym_return] = ACTIONS(87), - [anon_sym_break] = ACTIONS(89), - [anon_sym_continue] = ACTIONS(91), - [anon_sym_goto] = ACTIONS(93), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(911), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(917), + [anon_sym_LBRACK] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(921), + [anon_sym_switch] = ACTIONS(923), + [anon_sym_case] = ACTIONS(925), + [anon_sym_default] = ACTIONS(927), + [anon_sym_while] = ACTIONS(929), + [anon_sym_do] = ACTIONS(931), + [anon_sym_for] = ACTIONS(933), + [anon_sym_return] = ACTIONS(935), + [anon_sym_break] = ACTIONS(937), + [anon_sym_continue] = ACTIONS(939), + [anon_sym_goto] = ACTIONS(941), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_try] = ACTIONS(121), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(125), - [anon_sym_co_return] = ACTIONS(135), - [anon_sym_co_yield] = ACTIONS(137), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(945), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(947), + [anon_sym_co_return] = ACTIONS(957), + [anon_sym_co_yield] = ACTIONS(959), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [268] = { - [sym_attribute_declaration] = STATE(253), - [sym_compound_statement] = STATE(406), - [sym_attributed_statement] = STATE(406), - [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(3497), - [sym_comma_expression] = STATE(6497), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_for_range_loop] = STATE(406), - [sym_co_return_statement] = STATE(406), - [sym_co_yield_statement] = STATE(406), - [sym_throw_statement] = STATE(406), - [sym_try_statement] = STATE(406), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_attributed_declarator_repeat1] = STATE(253), - [sym_identifier] = ACTIONS(2002), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym_attribute_declaration] = STATE(244), + [sym_compound_statement] = STATE(510), + [sym_attributed_statement] = STATE(510), + [sym_labeled_statement] = STATE(510), + [sym_expression_statement] = STATE(510), + [sym_if_statement] = STATE(510), + [sym_switch_statement] = STATE(510), + [sym_case_statement] = STATE(510), + [sym_while_statement] = STATE(510), + [sym_do_statement] = STATE(510), + [sym_for_statement] = STATE(510), + [sym_return_statement] = STATE(510), + [sym_break_statement] = STATE(510), + [sym_continue_statement] = STATE(510), + [sym_goto_statement] = STATE(510), + [sym__expression] = STATE(4160), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7618), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(510), + [sym_co_return_statement] = STATE(510), + [sym_co_yield_statement] = STATE(510), + [sym_throw_statement] = STATE(510), + [sym_try_statement] = STATE(510), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(244), + [sym_identifier] = ACTIONS(2105), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(249), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(255), - [anon_sym_LBRACK] = ACTIONS(994), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_if] = ACTIONS(259), - [anon_sym_switch] = ACTIONS(261), - [anon_sym_case] = ACTIONS(263), - [anon_sym_default] = ACTIONS(265), - [anon_sym_while] = ACTIONS(267), - [anon_sym_do] = ACTIONS(269), - [anon_sym_for] = ACTIONS(271), - [anon_sym_return] = ACTIONS(273), - [anon_sym_break] = ACTIONS(275), - [anon_sym_continue] = ACTIONS(277), - [anon_sym_goto] = ACTIONS(279), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(245), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(251), + [anon_sym_LBRACK] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(255), + [anon_sym_switch] = ACTIONS(257), + [anon_sym_case] = ACTIONS(259), + [anon_sym_default] = ACTIONS(261), + [anon_sym_while] = ACTIONS(263), + [anon_sym_do] = ACTIONS(265), + [anon_sym_for] = ACTIONS(267), + [anon_sym_return] = ACTIONS(269), + [anon_sym_break] = ACTIONS(271), + [anon_sym_continue] = ACTIONS(273), + [anon_sym_goto] = ACTIONS(275), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_try] = ACTIONS(283), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(285), - [anon_sym_co_return] = ACTIONS(295), - [anon_sym_co_yield] = ACTIONS(297), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(279), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(281), + [anon_sym_co_return] = ACTIONS(291), + [anon_sym_co_yield] = ACTIONS(293), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [269] = { - [sym_attribute_declaration] = STATE(172), - [sym_compound_statement] = STATE(585), - [sym_attributed_statement] = STATE(586), - [sym_labeled_statement] = STATE(593), - [sym_expression_statement] = STATE(595), - [sym_if_statement] = STATE(597), - [sym_switch_statement] = STATE(598), - [sym_case_statement] = STATE(599), - [sym_while_statement] = STATE(603), - [sym_do_statement] = STATE(604), - [sym_for_statement] = STATE(605), - [sym_return_statement] = STATE(606), - [sym_break_statement] = STATE(608), - [sym_continue_statement] = STATE(609), - [sym_goto_statement] = STATE(610), - [sym__expression] = STATE(3622), - [sym_comma_expression] = STATE(6125), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_for_range_loop] = STATE(611), - [sym_co_return_statement] = STATE(612), - [sym_co_yield_statement] = STATE(614), - [sym_throw_statement] = STATE(615), - [sym_try_statement] = STATE(616), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_attributed_declarator_repeat1] = STATE(172), - [sym_identifier] = ACTIONS(1757), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym_attribute_declaration] = STATE(230), + [sym_compound_statement] = STATE(1031), + [sym_attributed_statement] = STATE(1031), + [sym_labeled_statement] = STATE(1031), + [sym_expression_statement] = STATE(1031), + [sym_if_statement] = STATE(1031), + [sym_switch_statement] = STATE(1031), + [sym_case_statement] = STATE(1031), + [sym_while_statement] = STATE(1031), + [sym_do_statement] = STATE(1031), + [sym_for_statement] = STATE(1031), + [sym_return_statement] = STATE(1031), + [sym_break_statement] = STATE(1031), + [sym_continue_statement] = STATE(1031), + [sym_goto_statement] = STATE(1031), + [sym__expression] = STATE(4182), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7590), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(1031), + [sym_co_return_statement] = STATE(1031), + [sym_co_yield_statement] = STATE(1031), + [sym_throw_statement] = STATE(1031), + [sym_try_statement] = STATE(1031), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(230), + [sym_identifier] = ACTIONS(2115), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(33), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(994), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_if] = ACTIONS(73), - [anon_sym_switch] = ACTIONS(75), - [anon_sym_case] = ACTIONS(77), - [anon_sym_default] = ACTIONS(79), - [anon_sym_while] = ACTIONS(81), - [anon_sym_do] = ACTIONS(83), - [anon_sym_for] = ACTIONS(85), - [anon_sym_return] = ACTIONS(87), - [anon_sym_break] = ACTIONS(89), - [anon_sym_continue] = ACTIONS(91), - [anon_sym_goto] = ACTIONS(93), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACK] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(2117), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_case] = ACTIONS(2111), + [anon_sym_default] = ACTIONS(2113), + [anon_sym_while] = ACTIONS(2119), + [anon_sym_do] = ACTIONS(81), + [anon_sym_for] = ACTIONS(2121), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_try] = ACTIONS(121), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(125), - [anon_sym_co_return] = ACTIONS(135), - [anon_sym_co_yield] = ACTIONS(137), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(127), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(131), + [anon_sym_co_return] = ACTIONS(141), + [anon_sym_co_yield] = ACTIONS(143), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [270] = { - [sym_attribute_declaration] = STATE(172), - [sym_compound_statement] = STATE(582), - [sym_attributed_statement] = STATE(582), - [sym_labeled_statement] = STATE(582), - [sym_expression_statement] = STATE(582), - [sym_if_statement] = STATE(582), - [sym_switch_statement] = STATE(582), - [sym_case_statement] = STATE(582), - [sym_while_statement] = STATE(582), - [sym_do_statement] = STATE(582), - [sym_for_statement] = STATE(582), - [sym_return_statement] = STATE(582), - [sym_break_statement] = STATE(582), - [sym_continue_statement] = STATE(582), - [sym_goto_statement] = STATE(582), - [sym__expression] = STATE(3622), - [sym_comma_expression] = STATE(6125), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_for_range_loop] = STATE(582), - [sym_co_return_statement] = STATE(582), - [sym_co_yield_statement] = STATE(582), - [sym_throw_statement] = STATE(582), - [sym_try_statement] = STATE(582), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_attributed_declarator_repeat1] = STATE(172), - [sym_identifier] = ACTIONS(1757), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym_attribute_declaration] = STATE(244), + [sym_compound_statement] = STATE(395), + [sym_attributed_statement] = STATE(395), + [sym_labeled_statement] = STATE(395), + [sym_expression_statement] = STATE(395), + [sym_if_statement] = STATE(395), + [sym_switch_statement] = STATE(395), + [sym_case_statement] = STATE(395), + [sym_while_statement] = STATE(395), + [sym_do_statement] = STATE(395), + [sym_for_statement] = STATE(395), + [sym_return_statement] = STATE(395), + [sym_break_statement] = STATE(395), + [sym_continue_statement] = STATE(395), + [sym_goto_statement] = STATE(395), + [sym__expression] = STATE(4160), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7618), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(395), + [sym_co_return_statement] = STATE(395), + [sym_co_yield_statement] = STATE(395), + [sym_throw_statement] = STATE(395), + [sym_try_statement] = STATE(395), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(244), + [sym_identifier] = ACTIONS(2105), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(33), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(994), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_if] = ACTIONS(73), - [anon_sym_switch] = ACTIONS(75), - [anon_sym_case] = ACTIONS(77), - [anon_sym_default] = ACTIONS(79), - [anon_sym_while] = ACTIONS(81), - [anon_sym_do] = ACTIONS(83), - [anon_sym_for] = ACTIONS(85), - [anon_sym_return] = ACTIONS(87), - [anon_sym_break] = ACTIONS(89), - [anon_sym_continue] = ACTIONS(91), - [anon_sym_goto] = ACTIONS(93), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(245), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(251), + [anon_sym_LBRACK] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(255), + [anon_sym_switch] = ACTIONS(257), + [anon_sym_case] = ACTIONS(259), + [anon_sym_default] = ACTIONS(261), + [anon_sym_while] = ACTIONS(263), + [anon_sym_do] = ACTIONS(265), + [anon_sym_for] = ACTIONS(267), + [anon_sym_return] = ACTIONS(269), + [anon_sym_break] = ACTIONS(271), + [anon_sym_continue] = ACTIONS(273), + [anon_sym_goto] = ACTIONS(275), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_try] = ACTIONS(121), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(125), - [anon_sym_co_return] = ACTIONS(135), - [anon_sym_co_yield] = ACTIONS(137), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(279), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(281), + [anon_sym_co_return] = ACTIONS(291), + [anon_sym_co_yield] = ACTIONS(293), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [271] = { - [sym_attribute_declaration] = STATE(172), - [sym_compound_statement] = STATE(581), - [sym_attributed_statement] = STATE(581), - [sym_labeled_statement] = STATE(581), - [sym_expression_statement] = STATE(581), - [sym_if_statement] = STATE(581), - [sym_switch_statement] = STATE(581), - [sym_case_statement] = STATE(581), - [sym_while_statement] = STATE(581), - [sym_do_statement] = STATE(581), - [sym_for_statement] = STATE(581), - [sym_return_statement] = STATE(581), - [sym_break_statement] = STATE(581), - [sym_continue_statement] = STATE(581), - [sym_goto_statement] = STATE(581), - [sym__expression] = STATE(3622), - [sym_comma_expression] = STATE(6125), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_for_range_loop] = STATE(581), - [sym_co_return_statement] = STATE(581), - [sym_co_yield_statement] = STATE(581), - [sym_throw_statement] = STATE(581), - [sym_try_statement] = STATE(581), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_attributed_declarator_repeat1] = STATE(172), - [sym_identifier] = ACTIONS(1757), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym_attribute_declaration] = STATE(189), + [sym_compound_statement] = STATE(947), + [sym_attributed_statement] = STATE(947), + [sym_labeled_statement] = STATE(947), + [sym_expression_statement] = STATE(947), + [sym_if_statement] = STATE(947), + [sym_switch_statement] = STATE(947), + [sym_case_statement] = STATE(947), + [sym_while_statement] = STATE(947), + [sym_do_statement] = STATE(947), + [sym_for_statement] = STATE(947), + [sym_return_statement] = STATE(947), + [sym_break_statement] = STATE(947), + [sym_continue_statement] = STATE(947), + [sym_goto_statement] = STATE(947), + [sym__expression] = STATE(4126), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(6964), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(947), + [sym_co_return_statement] = STATE(947), + [sym_co_yield_statement] = STATE(947), + [sym_throw_statement] = STATE(947), + [sym_try_statement] = STATE(947), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(189), + [sym_identifier] = ACTIONS(2099), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(33), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(994), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_if] = ACTIONS(73), - [anon_sym_switch] = ACTIONS(75), - [anon_sym_case] = ACTIONS(77), - [anon_sym_default] = ACTIONS(79), - [anon_sym_while] = ACTIONS(81), - [anon_sym_do] = ACTIONS(83), - [anon_sym_for] = ACTIONS(85), - [anon_sym_return] = ACTIONS(87), - [anon_sym_break] = ACTIONS(89), - [anon_sym_continue] = ACTIONS(91), - [anon_sym_goto] = ACTIONS(93), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(911), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(917), + [anon_sym_LBRACK] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(921), + [anon_sym_switch] = ACTIONS(923), + [anon_sym_case] = ACTIONS(925), + [anon_sym_default] = ACTIONS(927), + [anon_sym_while] = ACTIONS(929), + [anon_sym_do] = ACTIONS(931), + [anon_sym_for] = ACTIONS(933), + [anon_sym_return] = ACTIONS(935), + [anon_sym_break] = ACTIONS(937), + [anon_sym_continue] = ACTIONS(939), + [anon_sym_goto] = ACTIONS(941), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_try] = ACTIONS(121), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(125), - [anon_sym_co_return] = ACTIONS(135), - [anon_sym_co_yield] = ACTIONS(137), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(945), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(947), + [anon_sym_co_return] = ACTIONS(957), + [anon_sym_co_yield] = ACTIONS(959), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [272] = { - [sym_attribute_declaration] = STATE(149), - [sym_compound_statement] = STATE(1217), - [sym_attributed_statement] = STATE(1216), - [sym_labeled_statement] = STATE(1215), - [sym_expression_statement] = STATE(1213), - [sym_if_statement] = STATE(1211), - [sym_switch_statement] = STATE(1210), - [sym_case_statement] = STATE(1209), - [sym_while_statement] = STATE(1208), - [sym_do_statement] = STATE(1207), - [sym_for_statement] = STATE(1206), - [sym_return_statement] = STATE(1205), - [sym_break_statement] = STATE(1203), - [sym_continue_statement] = STATE(1202), - [sym_goto_statement] = STATE(1201), - [sym__expression] = STATE(3545), - [sym_comma_expression] = STATE(6215), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_for_range_loop] = STATE(1198), - [sym_co_return_statement] = STATE(1195), - [sym_co_yield_statement] = STATE(1194), - [sym_throw_statement] = STATE(1184), - [sym_try_statement] = STATE(1193), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_attributed_declarator_repeat1] = STATE(149), - [sym_identifier] = ACTIONS(1775), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym_attribute_declaration] = STATE(244), + [sym_compound_statement] = STATE(392), + [sym_attributed_statement] = STATE(392), + [sym_labeled_statement] = STATE(392), + [sym_expression_statement] = STATE(392), + [sym_if_statement] = STATE(392), + [sym_switch_statement] = STATE(392), + [sym_case_statement] = STATE(392), + [sym_while_statement] = STATE(392), + [sym_do_statement] = STATE(392), + [sym_for_statement] = STATE(392), + [sym_return_statement] = STATE(392), + [sym_break_statement] = STATE(392), + [sym_continue_statement] = STATE(392), + [sym_goto_statement] = STATE(392), + [sym__expression] = STATE(4160), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7618), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(392), + [sym_co_return_statement] = STATE(392), + [sym_co_yield_statement] = STATE(392), + [sym_throw_statement] = STATE(392), + [sym_try_statement] = STATE(392), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(244), + [sym_identifier] = ACTIONS(2105), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(1328), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(1332), - [anon_sym_LBRACK] = ACTIONS(994), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_if] = ACTIONS(1334), - [anon_sym_switch] = ACTIONS(1336), - [anon_sym_case] = ACTIONS(1767), - [anon_sym_default] = ACTIONS(1769), - [anon_sym_while] = ACTIONS(1338), - [anon_sym_do] = ACTIONS(1340), - [anon_sym_for] = ACTIONS(1342), - [anon_sym_return] = ACTIONS(1344), - [anon_sym_break] = ACTIONS(1346), - [anon_sym_continue] = ACTIONS(1348), - [anon_sym_goto] = ACTIONS(1350), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(245), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(251), + [anon_sym_LBRACK] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(255), + [anon_sym_switch] = ACTIONS(257), + [anon_sym_case] = ACTIONS(259), + [anon_sym_default] = ACTIONS(261), + [anon_sym_while] = ACTIONS(263), + [anon_sym_do] = ACTIONS(265), + [anon_sym_for] = ACTIONS(267), + [anon_sym_return] = ACTIONS(269), + [anon_sym_break] = ACTIONS(271), + [anon_sym_continue] = ACTIONS(273), + [anon_sym_goto] = ACTIONS(275), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_try] = ACTIONS(1352), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(1354), - [anon_sym_co_return] = ACTIONS(1356), - [anon_sym_co_yield] = ACTIONS(1358), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(279), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(281), + [anon_sym_co_return] = ACTIONS(291), + [anon_sym_co_yield] = ACTIONS(293), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [273] = { - [sym_attribute_declaration] = STATE(149), - [sym_compound_statement] = STATE(1313), - [sym_attributed_statement] = STATE(1314), - [sym_labeled_statement] = STATE(1315), - [sym_expression_statement] = STATE(1282), - [sym_if_statement] = STATE(1278), - [sym_switch_statement] = STATE(1267), - [sym_case_statement] = STATE(1258), - [sym_while_statement] = STATE(1255), - [sym_do_statement] = STATE(1254), - [sym_for_statement] = STATE(1251), - [sym_return_statement] = STATE(1250), - [sym_break_statement] = STATE(1246), - [sym_continue_statement] = STATE(1244), - [sym_goto_statement] = STATE(1239), - [sym__expression] = STATE(3545), - [sym_comma_expression] = STATE(6215), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_for_range_loop] = STATE(1238), - [sym_co_return_statement] = STATE(1232), - [sym_co_yield_statement] = STATE(1226), - [sym_throw_statement] = STATE(1222), - [sym_try_statement] = STATE(1221), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_attributed_declarator_repeat1] = STATE(149), - [sym_identifier] = ACTIONS(1775), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym_attribute_declaration] = STATE(260), + [sym_compound_statement] = STATE(997), + [sym_attributed_statement] = STATE(997), + [sym_labeled_statement] = STATE(997), + [sym_expression_statement] = STATE(997), + [sym_if_statement] = STATE(997), + [sym_switch_statement] = STATE(997), + [sym_case_statement] = STATE(997), + [sym_while_statement] = STATE(997), + [sym_do_statement] = STATE(997), + [sym_for_statement] = STATE(997), + [sym_return_statement] = STATE(997), + [sym_break_statement] = STATE(997), + [sym_continue_statement] = STATE(997), + [sym_goto_statement] = STATE(997), + [sym__expression] = STATE(4234), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7265), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(997), + [sym_co_return_statement] = STATE(997), + [sym_co_yield_statement] = STATE(997), + [sym_throw_statement] = STATE(997), + [sym_try_statement] = STATE(997), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(260), + [sym_identifier] = ACTIONS(2101), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(1328), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(1332), - [anon_sym_LBRACK] = ACTIONS(994), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_if] = ACTIONS(1334), - [anon_sym_switch] = ACTIONS(1336), - [anon_sym_case] = ACTIONS(1767), - [anon_sym_default] = ACTIONS(1769), - [anon_sym_while] = ACTIONS(1338), - [anon_sym_do] = ACTIONS(1340), - [anon_sym_for] = ACTIONS(1342), - [anon_sym_return] = ACTIONS(1344), - [anon_sym_break] = ACTIONS(1346), - [anon_sym_continue] = ACTIONS(1348), - [anon_sym_goto] = ACTIONS(1350), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(1622), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACK] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(71), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_case] = ACTIONS(75), + [anon_sym_default] = ACTIONS(77), + [anon_sym_while] = ACTIONS(79), + [anon_sym_do] = ACTIONS(81), + [anon_sym_for] = ACTIONS(83), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_try] = ACTIONS(1352), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(1354), - [anon_sym_co_return] = ACTIONS(1356), - [anon_sym_co_yield] = ACTIONS(1358), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(127), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(131), + [anon_sym_co_return] = ACTIONS(141), + [anon_sym_co_yield] = ACTIONS(143), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [274] = { - [sym_attribute_declaration] = STATE(149), - [sym_compound_statement] = STATE(1312), - [sym_attributed_statement] = STATE(1312), - [sym_labeled_statement] = STATE(1312), - [sym_expression_statement] = STATE(1312), - [sym_if_statement] = STATE(1312), - [sym_switch_statement] = STATE(1312), - [sym_case_statement] = STATE(1312), - [sym_while_statement] = STATE(1312), - [sym_do_statement] = STATE(1312), - [sym_for_statement] = STATE(1312), - [sym_return_statement] = STATE(1312), - [sym_break_statement] = STATE(1312), - [sym_continue_statement] = STATE(1312), - [sym_goto_statement] = STATE(1312), - [sym__expression] = STATE(3545), - [sym_comma_expression] = STATE(6215), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_for_range_loop] = STATE(1312), - [sym_co_return_statement] = STATE(1312), - [sym_co_yield_statement] = STATE(1312), - [sym_throw_statement] = STATE(1312), - [sym_try_statement] = STATE(1312), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_attributed_declarator_repeat1] = STATE(149), - [sym_identifier] = ACTIONS(1775), - [anon_sym_LPAREN2] = ACTIONS(984), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(1328), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(1332), - [anon_sym_LBRACK] = ACTIONS(994), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_if] = ACTIONS(1334), - [anon_sym_switch] = ACTIONS(1336), - [anon_sym_case] = ACTIONS(1767), - [anon_sym_default] = ACTIONS(1769), - [anon_sym_while] = ACTIONS(1338), - [anon_sym_do] = ACTIONS(1340), - [anon_sym_for] = ACTIONS(1342), - [anon_sym_return] = ACTIONS(1344), - [anon_sym_break] = ACTIONS(1346), - [anon_sym_continue] = ACTIONS(1348), - [anon_sym_goto] = ACTIONS(1350), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_try] = ACTIONS(1352), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(1354), - [anon_sym_co_return] = ACTIONS(1356), - [anon_sym_co_yield] = ACTIONS(1358), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [sym_attribute_declaration] = STATE(274), + [sym_compound_statement] = STATE(850), + [sym_attributed_statement] = STATE(850), + [sym_labeled_statement] = STATE(850), + [sym_expression_statement] = STATE(850), + [sym_if_statement] = STATE(850), + [sym_switch_statement] = STATE(850), + [sym_case_statement] = STATE(850), + [sym_while_statement] = STATE(850), + [sym_do_statement] = STATE(850), + [sym_for_statement] = STATE(850), + [sym_return_statement] = STATE(850), + [sym_break_statement] = STATE(850), + [sym_continue_statement] = STATE(850), + [sym_goto_statement] = STATE(850), + [sym__expression] = STATE(4182), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7590), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(850), + [sym_co_return_statement] = STATE(850), + [sym_co_yield_statement] = STATE(850), + [sym_throw_statement] = STATE(850), + [sym_try_statement] = STATE(850), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(274), + [sym_identifier] = ACTIONS(2468), + [anon_sym_LPAREN2] = ACTIONS(2126), + [anon_sym_BANG] = ACTIONS(2129), + [anon_sym_TILDE] = ACTIONS(2129), + [anon_sym_DASH] = ACTIONS(2132), + [anon_sym_PLUS] = ACTIONS(2132), + [anon_sym_STAR] = ACTIONS(2135), + [anon_sym_AMP] = ACTIONS(2135), + [anon_sym_SEMI] = ACTIONS(2471), + [anon_sym_COLON_COLON] = ACTIONS(2141), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2144), + [anon_sym_LBRACE] = ACTIONS(2312), + [anon_sym_LBRACK] = ACTIONS(2150), + [sym_primitive_type] = ACTIONS(2153), + [anon_sym_if] = ACTIONS(2474), + [anon_sym_switch] = ACTIONS(2318), + [anon_sym_case] = ACTIONS(2429), + [anon_sym_default] = ACTIONS(2432), + [anon_sym_while] = ACTIONS(2477), + [anon_sym_do] = ACTIONS(2330), + [anon_sym_for] = ACTIONS(2480), + [anon_sym_return] = ACTIONS(2336), + [anon_sym_break] = ACTIONS(2339), + [anon_sym_continue] = ACTIONS(2342), + [anon_sym_goto] = ACTIONS(2345), + [anon_sym_not] = ACTIONS(2132), + [anon_sym_compl] = ACTIONS(2132), + [anon_sym_DASH_DASH] = ACTIONS(2189), + [anon_sym_PLUS_PLUS] = ACTIONS(2189), + [anon_sym_sizeof] = ACTIONS(2192), + [anon_sym_offsetof] = ACTIONS(2195), + [anon_sym__Generic] = ACTIONS(2198), + [anon_sym_asm] = ACTIONS(2201), + [anon_sym___asm__] = ACTIONS(2201), + [sym_number_literal] = ACTIONS(2204), + [anon_sym_L_SQUOTE] = ACTIONS(2207), + [anon_sym_u_SQUOTE] = ACTIONS(2207), + [anon_sym_U_SQUOTE] = ACTIONS(2207), + [anon_sym_u8_SQUOTE] = ACTIONS(2207), + [anon_sym_SQUOTE] = ACTIONS(2207), + [anon_sym_L_DQUOTE] = ACTIONS(2210), + [anon_sym_u_DQUOTE] = ACTIONS(2210), + [anon_sym_U_DQUOTE] = ACTIONS(2210), + [anon_sym_u8_DQUOTE] = ACTIONS(2210), + [anon_sym_DQUOTE] = ACTIONS(2210), + [sym_true] = ACTIONS(2213), + [sym_false] = ACTIONS(2213), + [anon_sym_NULL] = ACTIONS(2216), + [anon_sym_nullptr] = ACTIONS(2216), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2219), + [anon_sym_template] = ACTIONS(2222), + [anon_sym_try] = ACTIONS(2348), + [anon_sym_delete] = ACTIONS(2228), + [anon_sym_throw] = ACTIONS(2351), + [anon_sym_co_return] = ACTIONS(2354), + [anon_sym_co_yield] = ACTIONS(2357), + [anon_sym_R_DQUOTE] = ACTIONS(2240), + [anon_sym_LR_DQUOTE] = ACTIONS(2240), + [anon_sym_uR_DQUOTE] = ACTIONS(2240), + [anon_sym_UR_DQUOTE] = ACTIONS(2240), + [anon_sym_u8R_DQUOTE] = ACTIONS(2240), + [anon_sym_co_await] = ACTIONS(2243), + [anon_sym_new] = ACTIONS(2246), + [anon_sym_requires] = ACTIONS(2249), + [sym_this] = ACTIONS(2213), }, [275] = { - [sym_attribute_declaration] = STATE(172), - [sym_compound_statement] = STATE(577), - [sym_attributed_statement] = STATE(577), - [sym_labeled_statement] = STATE(577), - [sym_expression_statement] = STATE(577), - [sym_if_statement] = STATE(577), - [sym_switch_statement] = STATE(577), - [sym_case_statement] = STATE(577), - [sym_while_statement] = STATE(577), - [sym_do_statement] = STATE(577), - [sym_for_statement] = STATE(577), - [sym_return_statement] = STATE(577), - [sym_break_statement] = STATE(577), - [sym_continue_statement] = STATE(577), - [sym_goto_statement] = STATE(577), - [sym__expression] = STATE(3622), - [sym_comma_expression] = STATE(6125), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_for_range_loop] = STATE(577), - [sym_co_return_statement] = STATE(577), - [sym_co_yield_statement] = STATE(577), - [sym_throw_statement] = STATE(577), - [sym_try_statement] = STATE(577), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_attributed_declarator_repeat1] = STATE(172), - [sym_identifier] = ACTIONS(1757), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym_attribute_declaration] = STATE(251), + [sym_compound_statement] = STATE(701), + [sym_attributed_statement] = STATE(701), + [sym_labeled_statement] = STATE(701), + [sym_expression_statement] = STATE(701), + [sym_if_statement] = STATE(701), + [sym_switch_statement] = STATE(701), + [sym_case_statement] = STATE(701), + [sym_while_statement] = STATE(701), + [sym_do_statement] = STATE(701), + [sym_for_statement] = STATE(701), + [sym_return_statement] = STATE(701), + [sym_break_statement] = STATE(701), + [sym_continue_statement] = STATE(701), + [sym_goto_statement] = STATE(701), + [sym__expression] = STATE(4169), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7079), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(701), + [sym_co_return_statement] = STATE(701), + [sym_co_yield_statement] = STATE(701), + [sym_throw_statement] = STATE(701), + [sym_try_statement] = STATE(701), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(251), + [sym_identifier] = ACTIONS(2107), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(33), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(994), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_if] = ACTIONS(73), - [anon_sym_switch] = ACTIONS(75), - [anon_sym_case] = ACTIONS(77), - [anon_sym_default] = ACTIONS(79), - [anon_sym_while] = ACTIONS(81), - [anon_sym_do] = ACTIONS(83), - [anon_sym_for] = ACTIONS(85), - [anon_sym_return] = ACTIONS(87), - [anon_sym_break] = ACTIONS(89), - [anon_sym_continue] = ACTIONS(91), - [anon_sym_goto] = ACTIONS(93), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(345), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(351), + [anon_sym_LBRACK] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(355), + [anon_sym_switch] = ACTIONS(357), + [anon_sym_case] = ACTIONS(359), + [anon_sym_default] = ACTIONS(361), + [anon_sym_while] = ACTIONS(363), + [anon_sym_do] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_return] = ACTIONS(369), + [anon_sym_break] = ACTIONS(371), + [anon_sym_continue] = ACTIONS(373), + [anon_sym_goto] = ACTIONS(375), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_try] = ACTIONS(121), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(125), - [anon_sym_co_return] = ACTIONS(135), - [anon_sym_co_yield] = ACTIONS(137), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(379), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(381), + [anon_sym_co_return] = ACTIONS(391), + [anon_sym_co_yield] = ACTIONS(393), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [276] = { - [sym_attribute_declaration] = STATE(172), - [sym_compound_statement] = STATE(573), - [sym_attributed_statement] = STATE(573), - [sym_labeled_statement] = STATE(573), - [sym_expression_statement] = STATE(573), - [sym_if_statement] = STATE(573), - [sym_switch_statement] = STATE(573), - [sym_case_statement] = STATE(573), - [sym_while_statement] = STATE(573), - [sym_do_statement] = STATE(573), - [sym_for_statement] = STATE(573), - [sym_return_statement] = STATE(573), - [sym_break_statement] = STATE(573), - [sym_continue_statement] = STATE(573), - [sym_goto_statement] = STATE(573), - [sym__expression] = STATE(3622), - [sym_comma_expression] = STATE(6125), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_for_range_loop] = STATE(573), - [sym_co_return_statement] = STATE(573), - [sym_co_yield_statement] = STATE(573), - [sym_throw_statement] = STATE(573), - [sym_try_statement] = STATE(573), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_attributed_declarator_repeat1] = STATE(172), - [sym_identifier] = ACTIONS(1757), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym_attribute_declaration] = STATE(230), + [sym_compound_statement] = STATE(997), + [sym_attributed_statement] = STATE(997), + [sym_labeled_statement] = STATE(997), + [sym_expression_statement] = STATE(997), + [sym_if_statement] = STATE(997), + [sym_switch_statement] = STATE(997), + [sym_case_statement] = STATE(997), + [sym_while_statement] = STATE(997), + [sym_do_statement] = STATE(997), + [sym_for_statement] = STATE(997), + [sym_return_statement] = STATE(997), + [sym_break_statement] = STATE(997), + [sym_continue_statement] = STATE(997), + [sym_goto_statement] = STATE(997), + [sym__expression] = STATE(4182), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7590), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(997), + [sym_co_return_statement] = STATE(997), + [sym_co_yield_statement] = STATE(997), + [sym_throw_statement] = STATE(997), + [sym_try_statement] = STATE(997), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(230), + [sym_identifier] = ACTIONS(2115), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(33), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(994), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_if] = ACTIONS(73), - [anon_sym_switch] = ACTIONS(75), - [anon_sym_case] = ACTIONS(77), - [anon_sym_default] = ACTIONS(79), - [anon_sym_while] = ACTIONS(81), - [anon_sym_do] = ACTIONS(83), - [anon_sym_for] = ACTIONS(85), - [anon_sym_return] = ACTIONS(87), - [anon_sym_break] = ACTIONS(89), - [anon_sym_continue] = ACTIONS(91), - [anon_sym_goto] = ACTIONS(93), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACK] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(2117), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_case] = ACTIONS(2111), + [anon_sym_default] = ACTIONS(2113), + [anon_sym_while] = ACTIONS(2119), + [anon_sym_do] = ACTIONS(81), + [anon_sym_for] = ACTIONS(2121), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_try] = ACTIONS(121), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(125), - [anon_sym_co_return] = ACTIONS(135), - [anon_sym_co_yield] = ACTIONS(137), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(127), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(131), + [anon_sym_co_return] = ACTIONS(141), + [anon_sym_co_yield] = ACTIONS(143), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [277] = { - [sym_attribute_declaration] = STATE(149), - [sym_compound_statement] = STATE(1311), - [sym_attributed_statement] = STATE(1311), - [sym_labeled_statement] = STATE(1311), - [sym_expression_statement] = STATE(1311), - [sym_if_statement] = STATE(1311), - [sym_switch_statement] = STATE(1311), - [sym_case_statement] = STATE(1311), - [sym_while_statement] = STATE(1311), - [sym_do_statement] = STATE(1311), - [sym_for_statement] = STATE(1311), - [sym_return_statement] = STATE(1311), - [sym_break_statement] = STATE(1311), - [sym_continue_statement] = STATE(1311), - [sym_goto_statement] = STATE(1311), - [sym__expression] = STATE(3545), - [sym_comma_expression] = STATE(6215), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_for_range_loop] = STATE(1311), - [sym_co_return_statement] = STATE(1311), - [sym_co_yield_statement] = STATE(1311), - [sym_throw_statement] = STATE(1311), - [sym_try_statement] = STATE(1311), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_attributed_declarator_repeat1] = STATE(149), - [sym_identifier] = ACTIONS(1775), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym_attribute_declaration] = STATE(260), + [sym_compound_statement] = STATE(992), + [sym_attributed_statement] = STATE(977), + [sym_labeled_statement] = STATE(969), + [sym_expression_statement] = STATE(966), + [sym_if_statement] = STATE(964), + [sym_switch_statement] = STATE(960), + [sym_case_statement] = STATE(957), + [sym_while_statement] = STATE(952), + [sym_do_statement] = STATE(951), + [sym_for_statement] = STATE(948), + [sym_return_statement] = STATE(946), + [sym_break_statement] = STATE(939), + [sym_continue_statement] = STATE(937), + [sym_goto_statement] = STATE(934), + [sym__expression] = STATE(4234), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7265), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(933), + [sym_co_return_statement] = STATE(911), + [sym_co_yield_statement] = STATE(909), + [sym_throw_statement] = STATE(903), + [sym_try_statement] = STATE(898), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(260), + [sym_identifier] = ACTIONS(2101), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(1328), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(1332), - [anon_sym_LBRACK] = ACTIONS(994), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_if] = ACTIONS(1334), - [anon_sym_switch] = ACTIONS(1336), - [anon_sym_case] = ACTIONS(1767), - [anon_sym_default] = ACTIONS(1769), - [anon_sym_while] = ACTIONS(1338), - [anon_sym_do] = ACTIONS(1340), - [anon_sym_for] = ACTIONS(1342), - [anon_sym_return] = ACTIONS(1344), - [anon_sym_break] = ACTIONS(1346), - [anon_sym_continue] = ACTIONS(1348), - [anon_sym_goto] = ACTIONS(1350), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(1622), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACK] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(71), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_case] = ACTIONS(75), + [anon_sym_default] = ACTIONS(77), + [anon_sym_while] = ACTIONS(79), + [anon_sym_do] = ACTIONS(81), + [anon_sym_for] = ACTIONS(83), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_try] = ACTIONS(1352), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(1354), - [anon_sym_co_return] = ACTIONS(1356), - [anon_sym_co_yield] = ACTIONS(1358), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(127), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(131), + [anon_sym_co_return] = ACTIONS(141), + [anon_sym_co_yield] = ACTIONS(143), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [278] = { - [sym_attribute_declaration] = STATE(172), - [sym_compound_statement] = STATE(572), - [sym_attributed_statement] = STATE(572), - [sym_labeled_statement] = STATE(572), - [sym_expression_statement] = STATE(572), - [sym_if_statement] = STATE(572), - [sym_switch_statement] = STATE(572), - [sym_case_statement] = STATE(572), - [sym_while_statement] = STATE(572), - [sym_do_statement] = STATE(572), - [sym_for_statement] = STATE(572), - [sym_return_statement] = STATE(572), - [sym_break_statement] = STATE(572), - [sym_continue_statement] = STATE(572), - [sym_goto_statement] = STATE(572), - [sym__expression] = STATE(3622), - [sym_comma_expression] = STATE(6125), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_for_range_loop] = STATE(572), - [sym_co_return_statement] = STATE(572), - [sym_co_yield_statement] = STATE(572), - [sym_throw_statement] = STATE(572), - [sym_try_statement] = STATE(572), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_attributed_declarator_repeat1] = STATE(172), - [sym_identifier] = ACTIONS(1757), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym_attribute_declaration] = STATE(244), + [sym_compound_statement] = STATE(394), + [sym_attributed_statement] = STATE(394), + [sym_labeled_statement] = STATE(394), + [sym_expression_statement] = STATE(394), + [sym_if_statement] = STATE(394), + [sym_switch_statement] = STATE(394), + [sym_case_statement] = STATE(394), + [sym_while_statement] = STATE(394), + [sym_do_statement] = STATE(394), + [sym_for_statement] = STATE(394), + [sym_return_statement] = STATE(394), + [sym_break_statement] = STATE(394), + [sym_continue_statement] = STATE(394), + [sym_goto_statement] = STATE(394), + [sym__expression] = STATE(4160), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7618), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(394), + [sym_co_return_statement] = STATE(394), + [sym_co_yield_statement] = STATE(394), + [sym_throw_statement] = STATE(394), + [sym_try_statement] = STATE(394), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(244), + [sym_identifier] = ACTIONS(2105), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(33), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(994), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_if] = ACTIONS(73), - [anon_sym_switch] = ACTIONS(75), - [anon_sym_case] = ACTIONS(77), - [anon_sym_default] = ACTIONS(79), - [anon_sym_while] = ACTIONS(81), - [anon_sym_do] = ACTIONS(83), - [anon_sym_for] = ACTIONS(85), - [anon_sym_return] = ACTIONS(87), - [anon_sym_break] = ACTIONS(89), - [anon_sym_continue] = ACTIONS(91), - [anon_sym_goto] = ACTIONS(93), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(245), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(251), + [anon_sym_LBRACK] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(255), + [anon_sym_switch] = ACTIONS(257), + [anon_sym_case] = ACTIONS(259), + [anon_sym_default] = ACTIONS(261), + [anon_sym_while] = ACTIONS(263), + [anon_sym_do] = ACTIONS(265), + [anon_sym_for] = ACTIONS(267), + [anon_sym_return] = ACTIONS(269), + [anon_sym_break] = ACTIONS(271), + [anon_sym_continue] = ACTIONS(273), + [anon_sym_goto] = ACTIONS(275), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_try] = ACTIONS(121), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(125), - [anon_sym_co_return] = ACTIONS(135), - [anon_sym_co_yield] = ACTIONS(137), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(279), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(281), + [anon_sym_co_return] = ACTIONS(291), + [anon_sym_co_yield] = ACTIONS(293), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [279] = { - [sym_attribute_declaration] = STATE(279), - [sym_compound_statement] = STATE(576), - [sym_attributed_statement] = STATE(576), - [sym_labeled_statement] = STATE(576), - [sym_expression_statement] = STATE(576), - [sym_if_statement] = STATE(576), - [sym_switch_statement] = STATE(576), - [sym_case_statement] = STATE(576), - [sym_while_statement] = STATE(576), - [sym_do_statement] = STATE(576), - [sym_for_statement] = STATE(576), - [sym_return_statement] = STATE(576), - [sym_break_statement] = STATE(576), - [sym_continue_statement] = STATE(576), - [sym_goto_statement] = STATE(576), - [sym__expression] = STATE(3522), - [sym_comma_expression] = STATE(6276), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_for_range_loop] = STATE(576), - [sym_co_return_statement] = STATE(576), - [sym_co_yield_statement] = STATE(576), - [sym_throw_statement] = STATE(576), - [sym_try_statement] = STATE(576), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_attributed_declarator_repeat1] = STATE(279), - [sym_identifier] = ACTIONS(2070), - [anon_sym_LPAREN2] = ACTIONS(1780), - [anon_sym_BANG] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(1783), - [anon_sym_DASH] = ACTIONS(1786), - [anon_sym_PLUS] = ACTIONS(1786), - [anon_sym_STAR] = ACTIONS(1789), - [anon_sym_AMP] = ACTIONS(1789), - [anon_sym_SEMI] = ACTIONS(2073), - [anon_sym_COLON_COLON] = ACTIONS(1795), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1798), - [anon_sym_LBRACE] = ACTIONS(2076), - [anon_sym_LBRACK] = ACTIONS(1804), - [sym_primitive_type] = ACTIONS(1807), - [anon_sym_if] = ACTIONS(2079), - [anon_sym_switch] = ACTIONS(2082), - [anon_sym_case] = ACTIONS(2085), - [anon_sym_default] = ACTIONS(2088), - [anon_sym_while] = ACTIONS(2091), - [anon_sym_do] = ACTIONS(2094), - [anon_sym_for] = ACTIONS(2097), - [anon_sym_return] = ACTIONS(2100), - [anon_sym_break] = ACTIONS(2103), - [anon_sym_continue] = ACTIONS(2106), - [anon_sym_goto] = ACTIONS(2109), - [anon_sym_not] = ACTIONS(1786), - [anon_sym_compl] = ACTIONS(1786), - [anon_sym_DASH_DASH] = ACTIONS(1843), - [anon_sym_PLUS_PLUS] = ACTIONS(1843), - [anon_sym_sizeof] = ACTIONS(1846), - [sym_number_literal] = ACTIONS(1849), - [anon_sym_L_SQUOTE] = ACTIONS(1852), - [anon_sym_u_SQUOTE] = ACTIONS(1852), - [anon_sym_U_SQUOTE] = ACTIONS(1852), - [anon_sym_u8_SQUOTE] = ACTIONS(1852), - [anon_sym_SQUOTE] = ACTIONS(1852), - [anon_sym_L_DQUOTE] = ACTIONS(1855), - [anon_sym_u_DQUOTE] = ACTIONS(1855), - [anon_sym_U_DQUOTE] = ACTIONS(1855), - [anon_sym_u8_DQUOTE] = ACTIONS(1855), - [anon_sym_DQUOTE] = ACTIONS(1855), - [sym_true] = ACTIONS(1858), - [sym_false] = ACTIONS(1858), - [sym_null] = ACTIONS(1858), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1861), - [anon_sym_template] = ACTIONS(1864), - [anon_sym_try] = ACTIONS(2112), - [anon_sym_delete] = ACTIONS(1870), - [anon_sym_throw] = ACTIONS(2115), - [anon_sym_co_return] = ACTIONS(2118), - [anon_sym_co_yield] = ACTIONS(2121), - [anon_sym_R_DQUOTE] = ACTIONS(1882), - [anon_sym_LR_DQUOTE] = ACTIONS(1882), - [anon_sym_uR_DQUOTE] = ACTIONS(1882), - [anon_sym_UR_DQUOTE] = ACTIONS(1882), - [anon_sym_u8R_DQUOTE] = ACTIONS(1882), - [anon_sym_co_await] = ACTIONS(1885), - [anon_sym_new] = ACTIONS(1888), - [anon_sym_requires] = ACTIONS(1891), - [sym_this] = ACTIONS(1858), - [sym_nullptr] = ACTIONS(1858), + [sym_attribute_declaration] = STATE(230), + [sym_compound_statement] = STATE(6710), + [sym_attributed_statement] = STATE(6710), + [sym_labeled_statement] = STATE(6710), + [sym_expression_statement] = STATE(6710), + [sym_if_statement] = STATE(6710), + [sym_switch_statement] = STATE(6710), + [sym_case_statement] = STATE(6710), + [sym_while_statement] = STATE(6710), + [sym_do_statement] = STATE(6710), + [sym_for_statement] = STATE(6710), + [sym_return_statement] = STATE(6710), + [sym_break_statement] = STATE(6710), + [sym_continue_statement] = STATE(6710), + [sym_goto_statement] = STATE(6710), + [sym__expression] = STATE(4182), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7590), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(6710), + [sym_co_return_statement] = STATE(6710), + [sym_co_yield_statement] = STATE(6710), + [sym_throw_statement] = STATE(6710), + [sym_try_statement] = STATE(6710), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(230), + [sym_identifier] = ACTIONS(2115), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACK] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(2117), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_case] = ACTIONS(2111), + [anon_sym_default] = ACTIONS(2113), + [anon_sym_while] = ACTIONS(2119), + [anon_sym_do] = ACTIONS(81), + [anon_sym_for] = ACTIONS(2121), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(127), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(131), + [anon_sym_co_return] = ACTIONS(141), + [anon_sym_co_yield] = ACTIONS(143), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [280] = { - [sym_attribute_declaration] = STATE(149), - [sym_compound_statement] = STATE(1310), - [sym_attributed_statement] = STATE(1310), - [sym_labeled_statement] = STATE(1310), - [sym_expression_statement] = STATE(1310), - [sym_if_statement] = STATE(1310), - [sym_switch_statement] = STATE(1310), - [sym_case_statement] = STATE(1310), - [sym_while_statement] = STATE(1310), - [sym_do_statement] = STATE(1310), - [sym_for_statement] = STATE(1310), - [sym_return_statement] = STATE(1310), - [sym_break_statement] = STATE(1310), - [sym_continue_statement] = STATE(1310), - [sym_goto_statement] = STATE(1310), - [sym__expression] = STATE(3545), - [sym_comma_expression] = STATE(6215), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_for_range_loop] = STATE(1310), - [sym_co_return_statement] = STATE(1310), - [sym_co_yield_statement] = STATE(1310), - [sym_throw_statement] = STATE(1310), - [sym_try_statement] = STATE(1310), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_attributed_declarator_repeat1] = STATE(149), - [sym_identifier] = ACTIONS(1775), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym_attribute_declaration] = STATE(251), + [sym_compound_statement] = STATE(695), + [sym_attributed_statement] = STATE(695), + [sym_labeled_statement] = STATE(695), + [sym_expression_statement] = STATE(695), + [sym_if_statement] = STATE(695), + [sym_switch_statement] = STATE(695), + [sym_case_statement] = STATE(695), + [sym_while_statement] = STATE(695), + [sym_do_statement] = STATE(695), + [sym_for_statement] = STATE(695), + [sym_return_statement] = STATE(695), + [sym_break_statement] = STATE(695), + [sym_continue_statement] = STATE(695), + [sym_goto_statement] = STATE(695), + [sym__expression] = STATE(4169), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7079), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(695), + [sym_co_return_statement] = STATE(695), + [sym_co_yield_statement] = STATE(695), + [sym_throw_statement] = STATE(695), + [sym_try_statement] = STATE(695), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(251), + [sym_identifier] = ACTIONS(2107), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(1328), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(1332), - [anon_sym_LBRACK] = ACTIONS(994), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_if] = ACTIONS(1334), - [anon_sym_switch] = ACTIONS(1336), - [anon_sym_case] = ACTIONS(1767), - [anon_sym_default] = ACTIONS(1769), - [anon_sym_while] = ACTIONS(1338), - [anon_sym_do] = ACTIONS(1340), - [anon_sym_for] = ACTIONS(1342), - [anon_sym_return] = ACTIONS(1344), - [anon_sym_break] = ACTIONS(1346), - [anon_sym_continue] = ACTIONS(1348), - [anon_sym_goto] = ACTIONS(1350), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(345), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(351), + [anon_sym_LBRACK] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(355), + [anon_sym_switch] = ACTIONS(357), + [anon_sym_case] = ACTIONS(359), + [anon_sym_default] = ACTIONS(361), + [anon_sym_while] = ACTIONS(363), + [anon_sym_do] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_return] = ACTIONS(369), + [anon_sym_break] = ACTIONS(371), + [anon_sym_continue] = ACTIONS(373), + [anon_sym_goto] = ACTIONS(375), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_try] = ACTIONS(1352), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(1354), - [anon_sym_co_return] = ACTIONS(1356), - [anon_sym_co_yield] = ACTIONS(1358), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(379), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(381), + [anon_sym_co_return] = ACTIONS(391), + [anon_sym_co_yield] = ACTIONS(393), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [281] = { - [sym_attribute_declaration] = STATE(149), - [sym_compound_statement] = STATE(1291), - [sym_attributed_statement] = STATE(1292), - [sym_labeled_statement] = STATE(1293), - [sym_expression_statement] = STATE(1294), - [sym_if_statement] = STATE(1295), - [sym_switch_statement] = STATE(1296), - [sym_case_statement] = STATE(1297), - [sym_while_statement] = STATE(1298), - [sym_do_statement] = STATE(1299), - [sym_for_statement] = STATE(1300), - [sym_return_statement] = STATE(1301), - [sym_break_statement] = STATE(1302), - [sym_continue_statement] = STATE(1303), - [sym_goto_statement] = STATE(1304), - [sym__expression] = STATE(3545), - [sym_comma_expression] = STATE(6215), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_for_range_loop] = STATE(1305), - [sym_co_return_statement] = STATE(1306), - [sym_co_yield_statement] = STATE(1307), - [sym_throw_statement] = STATE(1308), - [sym_try_statement] = STATE(1309), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_attributed_declarator_repeat1] = STATE(149), - [sym_identifier] = ACTIONS(1775), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym_attribute_declaration] = STATE(251), + [sym_compound_statement] = STATE(691), + [sym_attributed_statement] = STATE(691), + [sym_labeled_statement] = STATE(691), + [sym_expression_statement] = STATE(691), + [sym_if_statement] = STATE(691), + [sym_switch_statement] = STATE(691), + [sym_case_statement] = STATE(691), + [sym_while_statement] = STATE(691), + [sym_do_statement] = STATE(691), + [sym_for_statement] = STATE(691), + [sym_return_statement] = STATE(691), + [sym_break_statement] = STATE(691), + [sym_continue_statement] = STATE(691), + [sym_goto_statement] = STATE(691), + [sym__expression] = STATE(4169), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7079), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(691), + [sym_co_return_statement] = STATE(691), + [sym_co_yield_statement] = STATE(691), + [sym_throw_statement] = STATE(691), + [sym_try_statement] = STATE(691), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(251), + [sym_identifier] = ACTIONS(2107), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(1328), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(1332), - [anon_sym_LBRACK] = ACTIONS(994), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_if] = ACTIONS(1334), - [anon_sym_switch] = ACTIONS(1336), - [anon_sym_case] = ACTIONS(1767), - [anon_sym_default] = ACTIONS(1769), - [anon_sym_while] = ACTIONS(1338), - [anon_sym_do] = ACTIONS(1340), - [anon_sym_for] = ACTIONS(1342), - [anon_sym_return] = ACTIONS(1344), - [anon_sym_break] = ACTIONS(1346), - [anon_sym_continue] = ACTIONS(1348), - [anon_sym_goto] = ACTIONS(1350), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(345), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(351), + [anon_sym_LBRACK] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(355), + [anon_sym_switch] = ACTIONS(357), + [anon_sym_case] = ACTIONS(359), + [anon_sym_default] = ACTIONS(361), + [anon_sym_while] = ACTIONS(363), + [anon_sym_do] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_return] = ACTIONS(369), + [anon_sym_break] = ACTIONS(371), + [anon_sym_continue] = ACTIONS(373), + [anon_sym_goto] = ACTIONS(375), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_try] = ACTIONS(1352), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(1354), - [anon_sym_co_return] = ACTIONS(1356), - [anon_sym_co_yield] = ACTIONS(1358), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(379), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(381), + [anon_sym_co_return] = ACTIONS(391), + [anon_sym_co_yield] = ACTIONS(393), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [282] = { - [sym_attribute_declaration] = STATE(149), - [sym_compound_statement] = STATE(1270), - [sym_attributed_statement] = STATE(1271), - [sym_labeled_statement] = STATE(1272), - [sym_expression_statement] = STATE(1273), - [sym_if_statement] = STATE(1274), - [sym_switch_statement] = STATE(1275), - [sym_case_statement] = STATE(1276), - [sym_while_statement] = STATE(1277), - [sym_do_statement] = STATE(1279), - [sym_for_statement] = STATE(1280), - [sym_return_statement] = STATE(1281), - [sym_break_statement] = STATE(1283), - [sym_continue_statement] = STATE(1185), - [sym_goto_statement] = STATE(1285), - [sym__expression] = STATE(3545), - [sym_comma_expression] = STATE(6215), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_for_range_loop] = STATE(1286), - [sym_co_return_statement] = STATE(1287), - [sym_co_yield_statement] = STATE(1288), - [sym_throw_statement] = STATE(1289), - [sym_try_statement] = STATE(1290), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_attributed_declarator_repeat1] = STATE(149), - [sym_identifier] = ACTIONS(1775), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym_attribute_declaration] = STATE(189), + [sym_compound_statement] = STATE(925), + [sym_attributed_statement] = STATE(925), + [sym_labeled_statement] = STATE(925), + [sym_expression_statement] = STATE(925), + [sym_if_statement] = STATE(925), + [sym_switch_statement] = STATE(925), + [sym_case_statement] = STATE(925), + [sym_while_statement] = STATE(925), + [sym_do_statement] = STATE(925), + [sym_for_statement] = STATE(925), + [sym_return_statement] = STATE(925), + [sym_break_statement] = STATE(925), + [sym_continue_statement] = STATE(925), + [sym_goto_statement] = STATE(925), + [sym__expression] = STATE(4126), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(6964), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(925), + [sym_co_return_statement] = STATE(925), + [sym_co_yield_statement] = STATE(925), + [sym_throw_statement] = STATE(925), + [sym_try_statement] = STATE(925), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(189), + [sym_identifier] = ACTIONS(2099), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(1328), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(1332), - [anon_sym_LBRACK] = ACTIONS(994), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_if] = ACTIONS(1334), - [anon_sym_switch] = ACTIONS(1336), - [anon_sym_case] = ACTIONS(1767), - [anon_sym_default] = ACTIONS(1769), - [anon_sym_while] = ACTIONS(1338), - [anon_sym_do] = ACTIONS(1340), - [anon_sym_for] = ACTIONS(1342), - [anon_sym_return] = ACTIONS(1344), - [anon_sym_break] = ACTIONS(1346), - [anon_sym_continue] = ACTIONS(1348), - [anon_sym_goto] = ACTIONS(1350), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(911), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(917), + [anon_sym_LBRACK] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(921), + [anon_sym_switch] = ACTIONS(923), + [anon_sym_case] = ACTIONS(925), + [anon_sym_default] = ACTIONS(927), + [anon_sym_while] = ACTIONS(929), + [anon_sym_do] = ACTIONS(931), + [anon_sym_for] = ACTIONS(933), + [anon_sym_return] = ACTIONS(935), + [anon_sym_break] = ACTIONS(937), + [anon_sym_continue] = ACTIONS(939), + [anon_sym_goto] = ACTIONS(941), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_try] = ACTIONS(1352), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(1354), - [anon_sym_co_return] = ACTIONS(1356), - [anon_sym_co_yield] = ACTIONS(1358), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(945), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(947), + [anon_sym_co_return] = ACTIONS(957), + [anon_sym_co_yield] = ACTIONS(959), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [283] = { - [sym_attribute_declaration] = STATE(149), - [sym_compound_statement] = STATE(1269), - [sym_attributed_statement] = STATE(1269), - [sym_labeled_statement] = STATE(1269), - [sym_expression_statement] = STATE(1269), - [sym_if_statement] = STATE(1269), - [sym_switch_statement] = STATE(1269), - [sym_case_statement] = STATE(1269), - [sym_while_statement] = STATE(1269), - [sym_do_statement] = STATE(1269), - [sym_for_statement] = STATE(1269), - [sym_return_statement] = STATE(1269), - [sym_break_statement] = STATE(1269), - [sym_continue_statement] = STATE(1269), - [sym_goto_statement] = STATE(1269), - [sym__expression] = STATE(3545), - [sym_comma_expression] = STATE(6215), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_for_range_loop] = STATE(1269), - [sym_co_return_statement] = STATE(1269), - [sym_co_yield_statement] = STATE(1269), - [sym_throw_statement] = STATE(1269), - [sym_try_statement] = STATE(1269), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_attributed_declarator_repeat1] = STATE(149), - [sym_identifier] = ACTIONS(1775), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym_attribute_declaration] = STATE(251), + [sym_compound_statement] = STATE(630), + [sym_attributed_statement] = STATE(630), + [sym_labeled_statement] = STATE(630), + [sym_expression_statement] = STATE(630), + [sym_if_statement] = STATE(630), + [sym_switch_statement] = STATE(630), + [sym_case_statement] = STATE(630), + [sym_while_statement] = STATE(630), + [sym_do_statement] = STATE(630), + [sym_for_statement] = STATE(630), + [sym_return_statement] = STATE(630), + [sym_break_statement] = STATE(630), + [sym_continue_statement] = STATE(630), + [sym_goto_statement] = STATE(630), + [sym__expression] = STATE(4169), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7079), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(630), + [sym_co_return_statement] = STATE(630), + [sym_co_yield_statement] = STATE(630), + [sym_throw_statement] = STATE(630), + [sym_try_statement] = STATE(630), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(251), + [sym_identifier] = ACTIONS(2107), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(1328), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(1332), - [anon_sym_LBRACK] = ACTIONS(994), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_if] = ACTIONS(1334), - [anon_sym_switch] = ACTIONS(1336), - [anon_sym_case] = ACTIONS(1767), - [anon_sym_default] = ACTIONS(1769), - [anon_sym_while] = ACTIONS(1338), - [anon_sym_do] = ACTIONS(1340), - [anon_sym_for] = ACTIONS(1342), - [anon_sym_return] = ACTIONS(1344), - [anon_sym_break] = ACTIONS(1346), - [anon_sym_continue] = ACTIONS(1348), - [anon_sym_goto] = ACTIONS(1350), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(345), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(351), + [anon_sym_LBRACK] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(355), + [anon_sym_switch] = ACTIONS(357), + [anon_sym_case] = ACTIONS(359), + [anon_sym_default] = ACTIONS(361), + [anon_sym_while] = ACTIONS(363), + [anon_sym_do] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_return] = ACTIONS(369), + [anon_sym_break] = ACTIONS(371), + [anon_sym_continue] = ACTIONS(373), + [anon_sym_goto] = ACTIONS(375), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_try] = ACTIONS(1352), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(1354), - [anon_sym_co_return] = ACTIONS(1356), - [anon_sym_co_yield] = ACTIONS(1358), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(379), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(381), + [anon_sym_co_return] = ACTIONS(391), + [anon_sym_co_yield] = ACTIONS(393), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [284] = { - [sym_attribute_declaration] = STATE(149), - [sym_compound_statement] = STATE(1268), - [sym_attributed_statement] = STATE(1268), - [sym_labeled_statement] = STATE(1268), - [sym_expression_statement] = STATE(1268), - [sym_if_statement] = STATE(1268), - [sym_switch_statement] = STATE(1268), - [sym_case_statement] = STATE(1268), - [sym_while_statement] = STATE(1268), - [sym_do_statement] = STATE(1268), - [sym_for_statement] = STATE(1268), - [sym_return_statement] = STATE(1268), - [sym_break_statement] = STATE(1268), - [sym_continue_statement] = STATE(1268), - [sym_goto_statement] = STATE(1268), - [sym__expression] = STATE(3545), - [sym_comma_expression] = STATE(6215), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_for_range_loop] = STATE(1268), - [sym_co_return_statement] = STATE(1268), - [sym_co_yield_statement] = STATE(1268), - [sym_throw_statement] = STATE(1268), - [sym_try_statement] = STATE(1268), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_attributed_declarator_repeat1] = STATE(149), - [sym_identifier] = ACTIONS(1775), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym_attribute_declaration] = STATE(251), + [sym_compound_statement] = STATE(687), + [sym_attributed_statement] = STATE(687), + [sym_labeled_statement] = STATE(687), + [sym_expression_statement] = STATE(687), + [sym_if_statement] = STATE(687), + [sym_switch_statement] = STATE(687), + [sym_case_statement] = STATE(687), + [sym_while_statement] = STATE(687), + [sym_do_statement] = STATE(687), + [sym_for_statement] = STATE(687), + [sym_return_statement] = STATE(687), + [sym_break_statement] = STATE(687), + [sym_continue_statement] = STATE(687), + [sym_goto_statement] = STATE(687), + [sym__expression] = STATE(4169), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7079), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(687), + [sym_co_return_statement] = STATE(687), + [sym_co_yield_statement] = STATE(687), + [sym_throw_statement] = STATE(687), + [sym_try_statement] = STATE(687), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(251), + [sym_identifier] = ACTIONS(2107), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(1328), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(1332), - [anon_sym_LBRACK] = ACTIONS(994), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_if] = ACTIONS(1334), - [anon_sym_switch] = ACTIONS(1336), - [anon_sym_case] = ACTIONS(1767), - [anon_sym_default] = ACTIONS(1769), - [anon_sym_while] = ACTIONS(1338), - [anon_sym_do] = ACTIONS(1340), - [anon_sym_for] = ACTIONS(1342), - [anon_sym_return] = ACTIONS(1344), - [anon_sym_break] = ACTIONS(1346), - [anon_sym_continue] = ACTIONS(1348), - [anon_sym_goto] = ACTIONS(1350), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(345), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(351), + [anon_sym_LBRACK] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(355), + [anon_sym_switch] = ACTIONS(357), + [anon_sym_case] = ACTIONS(359), + [anon_sym_default] = ACTIONS(361), + [anon_sym_while] = ACTIONS(363), + [anon_sym_do] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_return] = ACTIONS(369), + [anon_sym_break] = ACTIONS(371), + [anon_sym_continue] = ACTIONS(373), + [anon_sym_goto] = ACTIONS(375), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_try] = ACTIONS(1352), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(1354), - [anon_sym_co_return] = ACTIONS(1356), - [anon_sym_co_yield] = ACTIONS(1358), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(379), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(381), + [anon_sym_co_return] = ACTIONS(391), + [anon_sym_co_yield] = ACTIONS(393), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [285] = { - [sym_attribute_declaration] = STATE(149), - [sym_compound_statement] = STATE(1266), - [sym_attributed_statement] = STATE(1266), - [sym_labeled_statement] = STATE(1266), - [sym_expression_statement] = STATE(1266), - [sym_if_statement] = STATE(1266), - [sym_switch_statement] = STATE(1266), - [sym_case_statement] = STATE(1266), - [sym_while_statement] = STATE(1266), - [sym_do_statement] = STATE(1266), - [sym_for_statement] = STATE(1266), - [sym_return_statement] = STATE(1266), - [sym_break_statement] = STATE(1266), - [sym_continue_statement] = STATE(1266), - [sym_goto_statement] = STATE(1266), - [sym__expression] = STATE(3545), - [sym_comma_expression] = STATE(6215), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_for_range_loop] = STATE(1266), - [sym_co_return_statement] = STATE(1266), - [sym_co_yield_statement] = STATE(1266), - [sym_throw_statement] = STATE(1266), - [sym_try_statement] = STATE(1266), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_attributed_declarator_repeat1] = STATE(149), - [sym_identifier] = ACTIONS(1775), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym_attribute_declaration] = STATE(230), + [sym_compound_statement] = STATE(996), + [sym_attributed_statement] = STATE(996), + [sym_labeled_statement] = STATE(996), + [sym_expression_statement] = STATE(996), + [sym_if_statement] = STATE(996), + [sym_switch_statement] = STATE(996), + [sym_case_statement] = STATE(996), + [sym_while_statement] = STATE(996), + [sym_do_statement] = STATE(996), + [sym_for_statement] = STATE(996), + [sym_return_statement] = STATE(996), + [sym_break_statement] = STATE(996), + [sym_continue_statement] = STATE(996), + [sym_goto_statement] = STATE(996), + [sym__expression] = STATE(4182), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7590), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(996), + [sym_co_return_statement] = STATE(996), + [sym_co_yield_statement] = STATE(996), + [sym_throw_statement] = STATE(996), + [sym_try_statement] = STATE(996), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(230), + [sym_identifier] = ACTIONS(2115), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(1328), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(1332), - [anon_sym_LBRACK] = ACTIONS(994), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_if] = ACTIONS(1334), - [anon_sym_switch] = ACTIONS(1336), - [anon_sym_case] = ACTIONS(1767), - [anon_sym_default] = ACTIONS(1769), - [anon_sym_while] = ACTIONS(1338), - [anon_sym_do] = ACTIONS(1340), - [anon_sym_for] = ACTIONS(1342), - [anon_sym_return] = ACTIONS(1344), - [anon_sym_break] = ACTIONS(1346), - [anon_sym_continue] = ACTIONS(1348), - [anon_sym_goto] = ACTIONS(1350), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACK] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(2117), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_case] = ACTIONS(2111), + [anon_sym_default] = ACTIONS(2113), + [anon_sym_while] = ACTIONS(2119), + [anon_sym_do] = ACTIONS(81), + [anon_sym_for] = ACTIONS(2121), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_try] = ACTIONS(1352), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(1354), - [anon_sym_co_return] = ACTIONS(1356), - [anon_sym_co_yield] = ACTIONS(1358), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(127), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(131), + [anon_sym_co_return] = ACTIONS(141), + [anon_sym_co_yield] = ACTIONS(143), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [286] = { - [sym_attribute_declaration] = STATE(149), - [sym_compound_statement] = STATE(1265), - [sym_attributed_statement] = STATE(1265), - [sym_labeled_statement] = STATE(1265), - [sym_expression_statement] = STATE(1265), - [sym_if_statement] = STATE(1265), - [sym_switch_statement] = STATE(1265), - [sym_case_statement] = STATE(1265), - [sym_while_statement] = STATE(1265), - [sym_do_statement] = STATE(1265), - [sym_for_statement] = STATE(1265), - [sym_return_statement] = STATE(1265), - [sym_break_statement] = STATE(1265), - [sym_continue_statement] = STATE(1265), - [sym_goto_statement] = STATE(1265), - [sym__expression] = STATE(3545), - [sym_comma_expression] = STATE(6215), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_for_range_loop] = STATE(1265), - [sym_co_return_statement] = STATE(1265), - [sym_co_yield_statement] = STATE(1265), - [sym_throw_statement] = STATE(1265), - [sym_try_statement] = STATE(1265), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_attributed_declarator_repeat1] = STATE(149), - [sym_identifier] = ACTIONS(1775), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym_attribute_declaration] = STATE(230), + [sym_compound_statement] = STATE(7405), + [sym_attributed_statement] = STATE(7405), + [sym_labeled_statement] = STATE(7405), + [sym_expression_statement] = STATE(7405), + [sym_if_statement] = STATE(7405), + [sym_switch_statement] = STATE(7405), + [sym_case_statement] = STATE(7405), + [sym_while_statement] = STATE(7405), + [sym_do_statement] = STATE(7405), + [sym_for_statement] = STATE(7405), + [sym_return_statement] = STATE(7405), + [sym_break_statement] = STATE(7405), + [sym_continue_statement] = STATE(7405), + [sym_goto_statement] = STATE(7405), + [sym__expression] = STATE(4182), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7590), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(7405), + [sym_co_return_statement] = STATE(7405), + [sym_co_yield_statement] = STATE(7405), + [sym_throw_statement] = STATE(7405), + [sym_try_statement] = STATE(7405), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(230), + [sym_identifier] = ACTIONS(2115), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(1328), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(1332), - [anon_sym_LBRACK] = ACTIONS(994), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_if] = ACTIONS(1334), - [anon_sym_switch] = ACTIONS(1336), - [anon_sym_case] = ACTIONS(1767), - [anon_sym_default] = ACTIONS(1769), - [anon_sym_while] = ACTIONS(1338), - [anon_sym_do] = ACTIONS(1340), - [anon_sym_for] = ACTIONS(1342), - [anon_sym_return] = ACTIONS(1344), - [anon_sym_break] = ACTIONS(1346), - [anon_sym_continue] = ACTIONS(1348), - [anon_sym_goto] = ACTIONS(1350), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACK] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(2117), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_case] = ACTIONS(2111), + [anon_sym_default] = ACTIONS(2113), + [anon_sym_while] = ACTIONS(2119), + [anon_sym_do] = ACTIONS(81), + [anon_sym_for] = ACTIONS(2121), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_try] = ACTIONS(1352), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(1354), - [anon_sym_co_return] = ACTIONS(1356), - [anon_sym_co_yield] = ACTIONS(1358), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(127), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(131), + [anon_sym_co_return] = ACTIONS(141), + [anon_sym_co_yield] = ACTIONS(143), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [287] = { - [sym_attribute_declaration] = STATE(149), - [sym_compound_statement] = STATE(1263), - [sym_attributed_statement] = STATE(1263), - [sym_labeled_statement] = STATE(1263), - [sym_expression_statement] = STATE(1263), - [sym_if_statement] = STATE(1263), - [sym_switch_statement] = STATE(1263), - [sym_case_statement] = STATE(1263), - [sym_while_statement] = STATE(1263), - [sym_do_statement] = STATE(1263), - [sym_for_statement] = STATE(1263), - [sym_return_statement] = STATE(1263), - [sym_break_statement] = STATE(1263), - [sym_continue_statement] = STATE(1263), - [sym_goto_statement] = STATE(1263), - [sym__expression] = STATE(3545), - [sym_comma_expression] = STATE(6215), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_for_range_loop] = STATE(1263), - [sym_co_return_statement] = STATE(1263), - [sym_co_yield_statement] = STATE(1263), - [sym_throw_statement] = STATE(1263), - [sym_try_statement] = STATE(1263), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_attributed_declarator_repeat1] = STATE(149), - [sym_identifier] = ACTIONS(1775), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym_attribute_declaration] = STATE(179), + [sym_compound_statement] = STATE(1502), + [sym_attributed_statement] = STATE(1502), + [sym_labeled_statement] = STATE(1502), + [sym_expression_statement] = STATE(1502), + [sym_if_statement] = STATE(1502), + [sym_switch_statement] = STATE(1502), + [sym_case_statement] = STATE(1502), + [sym_while_statement] = STATE(1502), + [sym_do_statement] = STATE(1502), + [sym_for_statement] = STATE(1502), + [sym_return_statement] = STATE(1502), + [sym_break_statement] = STATE(1502), + [sym_continue_statement] = STATE(1502), + [sym_goto_statement] = STATE(1502), + [sym__expression] = STATE(4212), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7175), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(1502), + [sym_co_return_statement] = STATE(1502), + [sym_co_yield_statement] = STATE(1502), + [sym_throw_statement] = STATE(1502), + [sym_try_statement] = STATE(1502), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(179), + [sym_identifier] = ACTIONS(2109), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(1328), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(1332), - [anon_sym_LBRACK] = ACTIONS(994), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_if] = ACTIONS(1334), - [anon_sym_switch] = ACTIONS(1336), - [anon_sym_case] = ACTIONS(1767), - [anon_sym_default] = ACTIONS(1769), - [anon_sym_while] = ACTIONS(1338), - [anon_sym_do] = ACTIONS(1340), - [anon_sym_for] = ACTIONS(1342), - [anon_sym_return] = ACTIONS(1344), - [anon_sym_break] = ACTIONS(1346), - [anon_sym_continue] = ACTIONS(1348), - [anon_sym_goto] = ACTIONS(1350), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(1728), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(1732), + [anon_sym_LBRACK] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(1734), + [anon_sym_switch] = ACTIONS(1736), + [anon_sym_case] = ACTIONS(2111), + [anon_sym_default] = ACTIONS(2113), + [anon_sym_while] = ACTIONS(1738), + [anon_sym_do] = ACTIONS(1740), + [anon_sym_for] = ACTIONS(1742), + [anon_sym_return] = ACTIONS(1744), + [anon_sym_break] = ACTIONS(1746), + [anon_sym_continue] = ACTIONS(1748), + [anon_sym_goto] = ACTIONS(1750), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_try] = ACTIONS(1352), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(1354), - [anon_sym_co_return] = ACTIONS(1356), - [anon_sym_co_yield] = ACTIONS(1358), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(1752), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(1754), + [anon_sym_co_return] = ACTIONS(1756), + [anon_sym_co_yield] = ACTIONS(1758), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [288] = { - [sym_attribute_declaration] = STATE(149), - [sym_compound_statement] = STATE(1262), - [sym_attributed_statement] = STATE(1262), - [sym_labeled_statement] = STATE(1262), - [sym_expression_statement] = STATE(1262), - [sym_if_statement] = STATE(1262), - [sym_switch_statement] = STATE(1262), - [sym_case_statement] = STATE(1262), - [sym_while_statement] = STATE(1262), - [sym_do_statement] = STATE(1262), - [sym_for_statement] = STATE(1262), - [sym_return_statement] = STATE(1262), - [sym_break_statement] = STATE(1262), - [sym_continue_statement] = STATE(1262), - [sym_goto_statement] = STATE(1262), - [sym__expression] = STATE(3545), - [sym_comma_expression] = STATE(6215), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_for_range_loop] = STATE(1262), - [sym_co_return_statement] = STATE(1262), - [sym_co_yield_statement] = STATE(1262), - [sym_throw_statement] = STATE(1262), - [sym_try_statement] = STATE(1262), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_attributed_declarator_repeat1] = STATE(149), - [sym_identifier] = ACTIONS(1775), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym_attribute_declaration] = STATE(179), + [sym_compound_statement] = STATE(1482), + [sym_attributed_statement] = STATE(1482), + [sym_labeled_statement] = STATE(1482), + [sym_expression_statement] = STATE(1482), + [sym_if_statement] = STATE(1482), + [sym_switch_statement] = STATE(1482), + [sym_case_statement] = STATE(1482), + [sym_while_statement] = STATE(1482), + [sym_do_statement] = STATE(1482), + [sym_for_statement] = STATE(1482), + [sym_return_statement] = STATE(1482), + [sym_break_statement] = STATE(1482), + [sym_continue_statement] = STATE(1482), + [sym_goto_statement] = STATE(1482), + [sym__expression] = STATE(4212), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7175), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(1482), + [sym_co_return_statement] = STATE(1482), + [sym_co_yield_statement] = STATE(1482), + [sym_throw_statement] = STATE(1482), + [sym_try_statement] = STATE(1482), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(179), + [sym_identifier] = ACTIONS(2109), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(1328), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(1332), - [anon_sym_LBRACK] = ACTIONS(994), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_if] = ACTIONS(1334), - [anon_sym_switch] = ACTIONS(1336), - [anon_sym_case] = ACTIONS(1767), - [anon_sym_default] = ACTIONS(1769), - [anon_sym_while] = ACTIONS(1338), - [anon_sym_do] = ACTIONS(1340), - [anon_sym_for] = ACTIONS(1342), - [anon_sym_return] = ACTIONS(1344), - [anon_sym_break] = ACTIONS(1346), - [anon_sym_continue] = ACTIONS(1348), - [anon_sym_goto] = ACTIONS(1350), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(1728), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(1732), + [anon_sym_LBRACK] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(1734), + [anon_sym_switch] = ACTIONS(1736), + [anon_sym_case] = ACTIONS(2111), + [anon_sym_default] = ACTIONS(2113), + [anon_sym_while] = ACTIONS(1738), + [anon_sym_do] = ACTIONS(1740), + [anon_sym_for] = ACTIONS(1742), + [anon_sym_return] = ACTIONS(1744), + [anon_sym_break] = ACTIONS(1746), + [anon_sym_continue] = ACTIONS(1748), + [anon_sym_goto] = ACTIONS(1750), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_try] = ACTIONS(1352), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(1354), - [anon_sym_co_return] = ACTIONS(1356), - [anon_sym_co_yield] = ACTIONS(1358), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(1752), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(1754), + [anon_sym_co_return] = ACTIONS(1756), + [anon_sym_co_yield] = ACTIONS(1758), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [289] = { - [sym_attribute_declaration] = STATE(149), - [sym_compound_statement] = STATE(1261), - [sym_attributed_statement] = STATE(1261), - [sym_labeled_statement] = STATE(1261), - [sym_expression_statement] = STATE(1261), - [sym_if_statement] = STATE(1261), - [sym_switch_statement] = STATE(1261), - [sym_case_statement] = STATE(1261), - [sym_while_statement] = STATE(1261), - [sym_do_statement] = STATE(1261), - [sym_for_statement] = STATE(1261), - [sym_return_statement] = STATE(1261), - [sym_break_statement] = STATE(1261), - [sym_continue_statement] = STATE(1261), - [sym_goto_statement] = STATE(1261), - [sym__expression] = STATE(3545), - [sym_comma_expression] = STATE(6215), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_for_range_loop] = STATE(1261), - [sym_co_return_statement] = STATE(1261), - [sym_co_yield_statement] = STATE(1261), - [sym_throw_statement] = STATE(1261), - [sym_try_statement] = STATE(1261), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_attributed_declarator_repeat1] = STATE(149), - [sym_identifier] = ACTIONS(1775), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym_attribute_declaration] = STATE(260), + [sym_compound_statement] = STATE(830), + [sym_attributed_statement] = STATE(830), + [sym_labeled_statement] = STATE(830), + [sym_expression_statement] = STATE(830), + [sym_if_statement] = STATE(830), + [sym_switch_statement] = STATE(830), + [sym_case_statement] = STATE(830), + [sym_while_statement] = STATE(830), + [sym_do_statement] = STATE(830), + [sym_for_statement] = STATE(830), + [sym_return_statement] = STATE(830), + [sym_break_statement] = STATE(830), + [sym_continue_statement] = STATE(830), + [sym_goto_statement] = STATE(830), + [sym__expression] = STATE(4234), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7265), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(830), + [sym_co_return_statement] = STATE(830), + [sym_co_yield_statement] = STATE(830), + [sym_throw_statement] = STATE(830), + [sym_try_statement] = STATE(830), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(260), + [sym_identifier] = ACTIONS(2101), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(1328), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(1332), - [anon_sym_LBRACK] = ACTIONS(994), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_if] = ACTIONS(1334), - [anon_sym_switch] = ACTIONS(1336), - [anon_sym_case] = ACTIONS(1767), - [anon_sym_default] = ACTIONS(1769), - [anon_sym_while] = ACTIONS(1338), - [anon_sym_do] = ACTIONS(1340), - [anon_sym_for] = ACTIONS(1342), - [anon_sym_return] = ACTIONS(1344), - [anon_sym_break] = ACTIONS(1346), - [anon_sym_continue] = ACTIONS(1348), - [anon_sym_goto] = ACTIONS(1350), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(1622), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACK] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(71), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_case] = ACTIONS(75), + [anon_sym_default] = ACTIONS(77), + [anon_sym_while] = ACTIONS(79), + [anon_sym_do] = ACTIONS(81), + [anon_sym_for] = ACTIONS(83), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_try] = ACTIONS(1352), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(1354), - [anon_sym_co_return] = ACTIONS(1356), - [anon_sym_co_yield] = ACTIONS(1358), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(127), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(131), + [anon_sym_co_return] = ACTIONS(141), + [anon_sym_co_yield] = ACTIONS(143), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [290] = { - [sym_attribute_declaration] = STATE(172), - [sym_compound_statement] = STATE(570), - [sym_attributed_statement] = STATE(570), - [sym_labeled_statement] = STATE(570), - [sym_expression_statement] = STATE(570), - [sym_if_statement] = STATE(570), - [sym_switch_statement] = STATE(570), - [sym_case_statement] = STATE(570), - [sym_while_statement] = STATE(570), - [sym_do_statement] = STATE(570), - [sym_for_statement] = STATE(570), - [sym_return_statement] = STATE(570), - [sym_break_statement] = STATE(570), - [sym_continue_statement] = STATE(570), - [sym_goto_statement] = STATE(570), - [sym__expression] = STATE(3622), - [sym_comma_expression] = STATE(6125), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_for_range_loop] = STATE(570), - [sym_co_return_statement] = STATE(570), - [sym_co_yield_statement] = STATE(570), - [sym_throw_statement] = STATE(570), - [sym_try_statement] = STATE(570), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_attributed_declarator_repeat1] = STATE(172), - [sym_identifier] = ACTIONS(1757), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym_attribute_declaration] = STATE(260), + [sym_compound_statement] = STATE(884), + [sym_attributed_statement] = STATE(884), + [sym_labeled_statement] = STATE(884), + [sym_expression_statement] = STATE(884), + [sym_if_statement] = STATE(884), + [sym_switch_statement] = STATE(884), + [sym_case_statement] = STATE(884), + [sym_while_statement] = STATE(884), + [sym_do_statement] = STATE(884), + [sym_for_statement] = STATE(884), + [sym_return_statement] = STATE(884), + [sym_break_statement] = STATE(884), + [sym_continue_statement] = STATE(884), + [sym_goto_statement] = STATE(884), + [sym__expression] = STATE(4234), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7265), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(884), + [sym_co_return_statement] = STATE(884), + [sym_co_yield_statement] = STATE(884), + [sym_throw_statement] = STATE(884), + [sym_try_statement] = STATE(884), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(260), + [sym_identifier] = ACTIONS(2101), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(33), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(994), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_if] = ACTIONS(73), - [anon_sym_switch] = ACTIONS(75), - [anon_sym_case] = ACTIONS(77), - [anon_sym_default] = ACTIONS(79), - [anon_sym_while] = ACTIONS(81), - [anon_sym_do] = ACTIONS(83), - [anon_sym_for] = ACTIONS(85), - [anon_sym_return] = ACTIONS(87), - [anon_sym_break] = ACTIONS(89), - [anon_sym_continue] = ACTIONS(91), - [anon_sym_goto] = ACTIONS(93), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(1622), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACK] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(71), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_case] = ACTIONS(75), + [anon_sym_default] = ACTIONS(77), + [anon_sym_while] = ACTIONS(79), + [anon_sym_do] = ACTIONS(81), + [anon_sym_for] = ACTIONS(83), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_try] = ACTIONS(121), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_throw] = ACTIONS(125), - [anon_sym_co_return] = ACTIONS(135), - [anon_sym_co_yield] = ACTIONS(137), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(127), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(131), + [anon_sym_co_return] = ACTIONS(141), + [anon_sym_co_yield] = ACTIONS(143), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [291] = { - [sym_preproc_def] = STATE(291), - [sym_preproc_function_def] = STATE(291), - [sym_preproc_call] = STATE(291), - [sym_preproc_if_in_field_declaration_list] = STATE(291), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(291), - [sym_type_definition] = STATE(291), - [sym__declaration_modifiers] = STATE(3225), - [sym__declaration_specifiers] = STATE(4166), - [sym_attribute_specifier] = STATE(3225), - [sym_attribute_declaration] = STATE(3225), - [sym_ms_declspec_modifier] = STATE(3225), - [sym_ms_based_modifier] = STATE(6104), - [sym__declarator] = STATE(5113), - [sym_parenthesized_declarator] = STATE(4918), - [sym_attributed_declarator] = STATE(4918), - [sym_pointer_declarator] = STATE(4918), - [sym_function_declarator] = STATE(4752), - [sym_array_declarator] = STATE(4918), - [sym_storage_class_specifier] = STATE(3225), - [sym_type_qualifier] = STATE(3225), - [sym__type_specifier] = STATE(3337), - [sym_sized_type_specifier] = STATE(3601), - [sym_enum_specifier] = STATE(3601), - [sym_struct_specifier] = STATE(3601), - [sym_union_specifier] = STATE(3601), - [sym__field_declaration_list_item] = STATE(291), - [sym_field_declaration] = STATE(291), - [sym_placeholder_type_specifier] = STATE(3601), - [sym_decltype_auto] = STATE(3558), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3601), - [sym_virtual] = STATE(3225), - [sym_explicit_function_specifier] = STATE(1945), - [sym_dependent_type] = STATE(3601), - [sym_template_declaration] = STATE(291), - [sym_operator_cast] = STATE(5126), - [sym_inline_method_definition] = STATE(291), - [sym__constructor_specifiers] = STATE(1945), - [sym_operator_cast_definition] = STATE(291), - [sym_operator_cast_declaration] = STATE(291), - [sym_constructor_or_destructor_definition] = STATE(291), - [sym_constructor_or_destructor_declaration] = STATE(291), - [sym_friend_declaration] = STATE(291), - [sym_access_specifier] = STATE(6576), - [sym_reference_declarator] = STATE(4918), - [sym_structured_binding_declarator] = STATE(4918), - [sym_template_type] = STATE(3198), - [sym_template_function] = STATE(4918), - [sym_using_declaration] = STATE(291), - [sym_alias_declaration] = STATE(291), - [sym_static_assert_declaration] = STATE(291), - [sym_destructor_name] = STATE(4918), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4455), - [sym_qualified_identifier] = STATE(4918), - [sym_qualified_type_identifier] = STATE(3554), - [sym_qualified_operator_cast_identifier] = STATE(5126), - [sym_operator_name] = STATE(4918), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(291), - [aux_sym__declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_sized_type_specifier_repeat1] = STATE(3584), - [aux_sym_operator_cast_definition_repeat1] = STATE(1945), - [sym_identifier] = ACTIONS(2124), - [aux_sym_preproc_def_token1] = ACTIONS(2127), - [aux_sym_preproc_if_token1] = ACTIONS(2130), - [aux_sym_preproc_if_token2] = ACTIONS(2133), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2135), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2135), - [aux_sym_preproc_else_token1] = ACTIONS(2133), - [aux_sym_preproc_elif_token1] = ACTIONS(2133), - [sym_preproc_directive] = ACTIONS(2138), - [anon_sym_LPAREN2] = ACTIONS(2141), - [anon_sym_TILDE] = ACTIONS(2144), - [anon_sym_STAR] = ACTIONS(2147), - [anon_sym_AMP_AMP] = ACTIONS(2150), - [anon_sym_AMP] = ACTIONS(2153), - [anon_sym_typedef] = ACTIONS(2156), - [anon_sym_extern] = ACTIONS(2159), - [anon_sym___attribute__] = ACTIONS(2162), - [anon_sym_COLON_COLON] = ACTIONS(2165), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2168), - [anon_sym___declspec] = ACTIONS(2171), - [anon_sym___based] = ACTIONS(2174), - [anon_sym_LBRACK] = ACTIONS(2177), - [anon_sym_static] = ACTIONS(2159), - [anon_sym_register] = ACTIONS(2159), - [anon_sym_inline] = ACTIONS(2159), - [anon_sym_thread_local] = ACTIONS(2159), - [anon_sym_const] = ACTIONS(2180), - [anon_sym_volatile] = ACTIONS(2180), - [anon_sym_restrict] = ACTIONS(2180), - [anon_sym__Atomic] = ACTIONS(2180), - [anon_sym_mutable] = ACTIONS(2180), - [anon_sym_constexpr] = ACTIONS(2180), - [anon_sym_constinit] = ACTIONS(2180), - [anon_sym_consteval] = ACTIONS(2180), - [anon_sym_signed] = ACTIONS(2183), - [anon_sym_unsigned] = ACTIONS(2183), - [anon_sym_long] = ACTIONS(2183), - [anon_sym_short] = ACTIONS(2183), - [sym_primitive_type] = ACTIONS(2186), - [anon_sym_enum] = ACTIONS(2189), - [anon_sym_class] = ACTIONS(2192), - [anon_sym_struct] = ACTIONS(2195), - [anon_sym_union] = ACTIONS(2198), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2201), - [anon_sym_decltype] = ACTIONS(2204), - [anon_sym_virtual] = ACTIONS(2207), - [anon_sym_explicit] = ACTIONS(2210), - [anon_sym_typename] = ACTIONS(2213), - [anon_sym_template] = ACTIONS(2216), - [anon_sym_operator] = ACTIONS(2219), - [anon_sym_friend] = ACTIONS(2222), - [anon_sym_public] = ACTIONS(2225), - [anon_sym_private] = ACTIONS(2225), - [anon_sym_protected] = ACTIONS(2225), - [anon_sym_using] = ACTIONS(2228), - [anon_sym_static_assert] = ACTIONS(2231), + [sym_attribute_declaration] = STATE(230), + [sym_compound_statement] = STATE(989), + [sym_attributed_statement] = STATE(989), + [sym_labeled_statement] = STATE(989), + [sym_expression_statement] = STATE(989), + [sym_if_statement] = STATE(989), + [sym_switch_statement] = STATE(989), + [sym_case_statement] = STATE(989), + [sym_while_statement] = STATE(989), + [sym_do_statement] = STATE(989), + [sym_for_statement] = STATE(989), + [sym_return_statement] = STATE(989), + [sym_break_statement] = STATE(989), + [sym_continue_statement] = STATE(989), + [sym_goto_statement] = STATE(989), + [sym__expression] = STATE(4182), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7590), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(989), + [sym_co_return_statement] = STATE(989), + [sym_co_yield_statement] = STATE(989), + [sym_throw_statement] = STATE(989), + [sym_try_statement] = STATE(989), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(230), + [sym_identifier] = ACTIONS(2115), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACK] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(2117), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_case] = ACTIONS(2111), + [anon_sym_default] = ACTIONS(2113), + [anon_sym_while] = ACTIONS(2119), + [anon_sym_do] = ACTIONS(81), + [anon_sym_for] = ACTIONS(2121), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(127), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(131), + [anon_sym_co_return] = ACTIONS(141), + [anon_sym_co_yield] = ACTIONS(143), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [292] = { - [sym_preproc_def] = STATE(301), - [sym_preproc_function_def] = STATE(301), - [sym_preproc_call] = STATE(301), - [sym_preproc_if_in_field_declaration_list] = STATE(301), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(301), - [sym_type_definition] = STATE(301), - [sym__declaration_modifiers] = STATE(3225), - [sym__declaration_specifiers] = STATE(4180), - [sym_attribute_specifier] = STATE(3225), - [sym_attribute_declaration] = STATE(3225), - [sym_ms_declspec_modifier] = STATE(3225), - [sym_ms_based_modifier] = STATE(6104), - [sym__declarator] = STATE(5113), - [sym_parenthesized_declarator] = STATE(4918), - [sym_attributed_declarator] = STATE(4918), - [sym_pointer_declarator] = STATE(4918), - [sym_function_declarator] = STATE(4799), - [sym_array_declarator] = STATE(4918), - [sym_storage_class_specifier] = STATE(3225), - [sym_type_qualifier] = STATE(3225), - [sym__type_specifier] = STATE(3337), - [sym_sized_type_specifier] = STATE(3601), - [sym_enum_specifier] = STATE(3601), - [sym_struct_specifier] = STATE(3601), - [sym_union_specifier] = STATE(3601), - [sym__field_declaration_list_item] = STATE(301), - [sym_field_declaration] = STATE(301), - [sym_placeholder_type_specifier] = STATE(3601), - [sym_decltype_auto] = STATE(3558), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3601), - [sym_virtual] = STATE(3225), - [sym_explicit_function_specifier] = STATE(1961), - [sym_dependent_type] = STATE(3601), - [sym_template_declaration] = STATE(301), - [sym_operator_cast] = STATE(5140), - [sym_inline_method_definition] = STATE(301), - [sym__constructor_specifiers] = STATE(1961), - [sym_operator_cast_definition] = STATE(301), - [sym_operator_cast_declaration] = STATE(301), - [sym_constructor_or_destructor_definition] = STATE(301), - [sym_constructor_or_destructor_declaration] = STATE(301), - [sym_friend_declaration] = STATE(301), - [sym_access_specifier] = STATE(6324), - [sym_reference_declarator] = STATE(4918), - [sym_structured_binding_declarator] = STATE(4918), - [sym_template_type] = STATE(3198), - [sym_template_function] = STATE(4918), - [sym_using_declaration] = STATE(301), - [sym_alias_declaration] = STATE(301), - [sym_static_assert_declaration] = STATE(301), - [sym_destructor_name] = STATE(4918), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4455), - [sym_qualified_identifier] = STATE(4918), - [sym_qualified_type_identifier] = STATE(3554), - [sym_qualified_operator_cast_identifier] = STATE(5140), - [sym_operator_name] = STATE(4918), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(301), - [aux_sym__declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_sized_type_specifier_repeat1] = STATE(3584), - [aux_sym_operator_cast_definition_repeat1] = STATE(1961), - [sym_identifier] = ACTIONS(1665), - [aux_sym_preproc_def_token1] = ACTIONS(2234), - [aux_sym_preproc_if_token1] = ACTIONS(2236), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2238), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2238), - [sym_preproc_directive] = ACTIONS(2240), - [anon_sym_LPAREN2] = ACTIONS(1681), - [anon_sym_TILDE] = ACTIONS(1683), - [anon_sym_STAR] = ACTIONS(1685), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1687), - [anon_sym_typedef] = ACTIONS(2242), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(1691), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1413), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_RBRACE] = ACTIONS(2244), - [anon_sym_LBRACK] = ACTIONS(1693), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(1695), - [anon_sym_unsigned] = ACTIONS(1695), - [anon_sym_long] = ACTIONS(1695), - [anon_sym_short] = ACTIONS(1695), - [sym_primitive_type] = ACTIONS(1697), - [anon_sym_enum] = ACTIONS(1699), - [anon_sym_class] = ACTIONS(1701), - [anon_sym_struct] = ACTIONS(1703), - [anon_sym_union] = ACTIONS(1705), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1707), - [anon_sym_decltype] = ACTIONS(1709), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_explicit] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(1711), - [anon_sym_template] = ACTIONS(2246), - [anon_sym_operator] = ACTIONS(119), - [anon_sym_friend] = ACTIONS(2248), - [anon_sym_public] = ACTIONS(1717), - [anon_sym_private] = ACTIONS(1717), - [anon_sym_protected] = ACTIONS(1717), - [anon_sym_using] = ACTIONS(2250), - [anon_sym_static_assert] = ACTIONS(2252), + [sym_attribute_declaration] = STATE(189), + [sym_compound_statement] = STATE(922), + [sym_attributed_statement] = STATE(922), + [sym_labeled_statement] = STATE(922), + [sym_expression_statement] = STATE(922), + [sym_if_statement] = STATE(922), + [sym_switch_statement] = STATE(922), + [sym_case_statement] = STATE(922), + [sym_while_statement] = STATE(922), + [sym_do_statement] = STATE(922), + [sym_for_statement] = STATE(922), + [sym_return_statement] = STATE(922), + [sym_break_statement] = STATE(922), + [sym_continue_statement] = STATE(922), + [sym_goto_statement] = STATE(922), + [sym__expression] = STATE(4126), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(6964), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(922), + [sym_co_return_statement] = STATE(922), + [sym_co_yield_statement] = STATE(922), + [sym_throw_statement] = STATE(922), + [sym_try_statement] = STATE(922), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(189), + [sym_identifier] = ACTIONS(2099), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(911), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(917), + [anon_sym_LBRACK] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(921), + [anon_sym_switch] = ACTIONS(923), + [anon_sym_case] = ACTIONS(925), + [anon_sym_default] = ACTIONS(927), + [anon_sym_while] = ACTIONS(929), + [anon_sym_do] = ACTIONS(931), + [anon_sym_for] = ACTIONS(933), + [anon_sym_return] = ACTIONS(935), + [anon_sym_break] = ACTIONS(937), + [anon_sym_continue] = ACTIONS(939), + [anon_sym_goto] = ACTIONS(941), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(945), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(947), + [anon_sym_co_return] = ACTIONS(957), + [anon_sym_co_yield] = ACTIONS(959), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [293] = { - [sym_preproc_def] = STATE(313), - [sym_preproc_function_def] = STATE(313), - [sym_preproc_call] = STATE(313), - [sym_preproc_if_in_field_declaration_list] = STATE(313), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(313), - [sym_type_definition] = STATE(313), - [sym__declaration_modifiers] = STATE(3225), - [sym__declaration_specifiers] = STATE(4190), - [sym_attribute_specifier] = STATE(3225), - [sym_attribute_declaration] = STATE(3225), - [sym_ms_declspec_modifier] = STATE(3225), - [sym_ms_based_modifier] = STATE(6104), - [sym__declarator] = STATE(5113), - [sym_parenthesized_declarator] = STATE(4918), - [sym_attributed_declarator] = STATE(4918), - [sym_pointer_declarator] = STATE(4918), - [sym_function_declarator] = STATE(4792), - [sym_array_declarator] = STATE(4918), - [sym_storage_class_specifier] = STATE(3225), - [sym_type_qualifier] = STATE(3225), - [sym__type_specifier] = STATE(3337), - [sym_sized_type_specifier] = STATE(3601), - [sym_enum_specifier] = STATE(3601), - [sym_struct_specifier] = STATE(3601), - [sym_union_specifier] = STATE(3601), - [sym__field_declaration_list_item] = STATE(313), - [sym_field_declaration] = STATE(313), - [sym_placeholder_type_specifier] = STATE(3601), - [sym_decltype_auto] = STATE(3558), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3601), - [sym_virtual] = STATE(3225), - [sym_explicit_function_specifier] = STATE(1947), - [sym_dependent_type] = STATE(3601), - [sym_template_declaration] = STATE(313), - [sym_operator_cast] = STATE(5120), - [sym_inline_method_definition] = STATE(313), - [sym__constructor_specifiers] = STATE(1947), - [sym_operator_cast_definition] = STATE(313), - [sym_operator_cast_declaration] = STATE(313), - [sym_constructor_or_destructor_definition] = STATE(313), - [sym_constructor_or_destructor_declaration] = STATE(313), - [sym_friend_declaration] = STATE(313), - [sym_access_specifier] = STATE(6456), - [sym_reference_declarator] = STATE(4918), - [sym_structured_binding_declarator] = STATE(4918), - [sym_template_type] = STATE(3198), - [sym_template_function] = STATE(4918), - [sym_using_declaration] = STATE(313), - [sym_alias_declaration] = STATE(313), - [sym_static_assert_declaration] = STATE(313), - [sym_destructor_name] = STATE(4918), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4455), - [sym_qualified_identifier] = STATE(4918), - [sym_qualified_type_identifier] = STATE(3554), - [sym_qualified_operator_cast_identifier] = STATE(5120), - [sym_operator_name] = STATE(4918), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(313), - [aux_sym__declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_sized_type_specifier_repeat1] = STATE(3584), - [aux_sym_operator_cast_definition_repeat1] = STATE(1947), - [sym_identifier] = ACTIONS(1665), - [aux_sym_preproc_def_token1] = ACTIONS(2254), - [aux_sym_preproc_if_token1] = ACTIONS(2256), - [aux_sym_preproc_if_token2] = ACTIONS(2258), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2260), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2260), - [sym_preproc_directive] = ACTIONS(2262), - [anon_sym_LPAREN2] = ACTIONS(1681), - [anon_sym_TILDE] = ACTIONS(1683), - [anon_sym_STAR] = ACTIONS(1685), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1687), - [anon_sym_typedef] = ACTIONS(2264), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(1691), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1413), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1693), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(1695), - [anon_sym_unsigned] = ACTIONS(1695), - [anon_sym_long] = ACTIONS(1695), - [anon_sym_short] = ACTIONS(1695), - [sym_primitive_type] = ACTIONS(1697), - [anon_sym_enum] = ACTIONS(1699), - [anon_sym_class] = ACTIONS(1701), - [anon_sym_struct] = ACTIONS(1703), - [anon_sym_union] = ACTIONS(1705), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1707), - [anon_sym_decltype] = ACTIONS(1709), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_explicit] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(1711), - [anon_sym_template] = ACTIONS(2266), - [anon_sym_operator] = ACTIONS(119), - [anon_sym_friend] = ACTIONS(2268), - [anon_sym_public] = ACTIONS(1717), - [anon_sym_private] = ACTIONS(1717), - [anon_sym_protected] = ACTIONS(1717), - [anon_sym_using] = ACTIONS(2270), - [anon_sym_static_assert] = ACTIONS(2272), + [sym_attribute_declaration] = STATE(189), + [sym_compound_statement] = STATE(858), + [sym_attributed_statement] = STATE(858), + [sym_labeled_statement] = STATE(858), + [sym_expression_statement] = STATE(858), + [sym_if_statement] = STATE(858), + [sym_switch_statement] = STATE(858), + [sym_case_statement] = STATE(858), + [sym_while_statement] = STATE(858), + [sym_do_statement] = STATE(858), + [sym_for_statement] = STATE(858), + [sym_return_statement] = STATE(858), + [sym_break_statement] = STATE(858), + [sym_continue_statement] = STATE(858), + [sym_goto_statement] = STATE(858), + [sym__expression] = STATE(4126), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(6964), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(858), + [sym_co_return_statement] = STATE(858), + [sym_co_yield_statement] = STATE(858), + [sym_throw_statement] = STATE(858), + [sym_try_statement] = STATE(858), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(189), + [sym_identifier] = ACTIONS(2099), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(911), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(917), + [anon_sym_LBRACK] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(921), + [anon_sym_switch] = ACTIONS(923), + [anon_sym_case] = ACTIONS(925), + [anon_sym_default] = ACTIONS(927), + [anon_sym_while] = ACTIONS(929), + [anon_sym_do] = ACTIONS(931), + [anon_sym_for] = ACTIONS(933), + [anon_sym_return] = ACTIONS(935), + [anon_sym_break] = ACTIONS(937), + [anon_sym_continue] = ACTIONS(939), + [anon_sym_goto] = ACTIONS(941), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(945), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(947), + [anon_sym_co_return] = ACTIONS(957), + [anon_sym_co_yield] = ACTIONS(959), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [294] = { - [sym_preproc_def] = STATE(292), - [sym_preproc_function_def] = STATE(292), - [sym_preproc_call] = STATE(292), - [sym_preproc_if_in_field_declaration_list] = STATE(292), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(292), - [sym_type_definition] = STATE(292), - [sym__declaration_modifiers] = STATE(3225), - [sym__declaration_specifiers] = STATE(4180), - [sym_attribute_specifier] = STATE(3225), - [sym_attribute_declaration] = STATE(3225), - [sym_ms_declspec_modifier] = STATE(3225), - [sym_ms_based_modifier] = STATE(6104), - [sym__declarator] = STATE(5113), - [sym_parenthesized_declarator] = STATE(4918), - [sym_attributed_declarator] = STATE(4918), - [sym_pointer_declarator] = STATE(4918), - [sym_function_declarator] = STATE(4799), - [sym_array_declarator] = STATE(4918), - [sym_storage_class_specifier] = STATE(3225), - [sym_type_qualifier] = STATE(3225), - [sym__type_specifier] = STATE(3337), - [sym_sized_type_specifier] = STATE(3601), - [sym_enum_specifier] = STATE(3601), - [sym_struct_specifier] = STATE(3601), - [sym_union_specifier] = STATE(3601), - [sym__field_declaration_list_item] = STATE(292), - [sym_field_declaration] = STATE(292), - [sym_placeholder_type_specifier] = STATE(3601), - [sym_decltype_auto] = STATE(3558), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3601), - [sym_virtual] = STATE(3225), - [sym_explicit_function_specifier] = STATE(1961), - [sym_dependent_type] = STATE(3601), - [sym_template_declaration] = STATE(292), - [sym_operator_cast] = STATE(5140), - [sym_inline_method_definition] = STATE(292), - [sym__constructor_specifiers] = STATE(1961), - [sym_operator_cast_definition] = STATE(292), - [sym_operator_cast_declaration] = STATE(292), - [sym_constructor_or_destructor_definition] = STATE(292), - [sym_constructor_or_destructor_declaration] = STATE(292), - [sym_friend_declaration] = STATE(292), - [sym_access_specifier] = STATE(6324), - [sym_reference_declarator] = STATE(4918), - [sym_structured_binding_declarator] = STATE(4918), - [sym_template_type] = STATE(3198), - [sym_template_function] = STATE(4918), - [sym_using_declaration] = STATE(292), - [sym_alias_declaration] = STATE(292), - [sym_static_assert_declaration] = STATE(292), - [sym_destructor_name] = STATE(4918), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4455), - [sym_qualified_identifier] = STATE(4918), - [sym_qualified_type_identifier] = STATE(3554), - [sym_qualified_operator_cast_identifier] = STATE(5140), - [sym_operator_name] = STATE(4918), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(292), - [aux_sym__declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_sized_type_specifier_repeat1] = STATE(3584), - [aux_sym_operator_cast_definition_repeat1] = STATE(1961), - [sym_identifier] = ACTIONS(1665), - [aux_sym_preproc_def_token1] = ACTIONS(2234), - [aux_sym_preproc_if_token1] = ACTIONS(2236), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2238), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2238), - [sym_preproc_directive] = ACTIONS(2240), - [anon_sym_LPAREN2] = ACTIONS(1681), - [anon_sym_TILDE] = ACTIONS(1683), - [anon_sym_STAR] = ACTIONS(1685), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1687), - [anon_sym_typedef] = ACTIONS(2242), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(1691), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1413), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_RBRACE] = ACTIONS(2274), - [anon_sym_LBRACK] = ACTIONS(1693), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(1695), - [anon_sym_unsigned] = ACTIONS(1695), - [anon_sym_long] = ACTIONS(1695), - [anon_sym_short] = ACTIONS(1695), - [sym_primitive_type] = ACTIONS(1697), - [anon_sym_enum] = ACTIONS(1699), - [anon_sym_class] = ACTIONS(1701), - [anon_sym_struct] = ACTIONS(1703), - [anon_sym_union] = ACTIONS(1705), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1707), - [anon_sym_decltype] = ACTIONS(1709), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_explicit] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(1711), - [anon_sym_template] = ACTIONS(2246), - [anon_sym_operator] = ACTIONS(119), - [anon_sym_friend] = ACTIONS(2248), - [anon_sym_public] = ACTIONS(1717), - [anon_sym_private] = ACTIONS(1717), - [anon_sym_protected] = ACTIONS(1717), - [anon_sym_using] = ACTIONS(2250), - [anon_sym_static_assert] = ACTIONS(2252), + [sym_attribute_declaration] = STATE(230), + [sym_compound_statement] = STATE(1155), + [sym_attributed_statement] = STATE(1155), + [sym_labeled_statement] = STATE(1155), + [sym_expression_statement] = STATE(1155), + [sym_if_statement] = STATE(1155), + [sym_switch_statement] = STATE(1155), + [sym_case_statement] = STATE(1155), + [sym_while_statement] = STATE(1155), + [sym_do_statement] = STATE(1155), + [sym_for_statement] = STATE(1155), + [sym_return_statement] = STATE(1155), + [sym_break_statement] = STATE(1155), + [sym_continue_statement] = STATE(1155), + [sym_goto_statement] = STATE(1155), + [sym__expression] = STATE(4182), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7590), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(1155), + [sym_co_return_statement] = STATE(1155), + [sym_co_yield_statement] = STATE(1155), + [sym_throw_statement] = STATE(1155), + [sym_try_statement] = STATE(1155), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(230), + [sym_identifier] = ACTIONS(2115), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACK] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(2117), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_case] = ACTIONS(2111), + [anon_sym_default] = ACTIONS(2113), + [anon_sym_while] = ACTIONS(2119), + [anon_sym_do] = ACTIONS(81), + [anon_sym_for] = ACTIONS(2121), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(127), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(131), + [anon_sym_co_return] = ACTIONS(141), + [anon_sym_co_yield] = ACTIONS(143), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [295] = { - [sym_preproc_def] = STATE(301), - [sym_preproc_function_def] = STATE(301), - [sym_preproc_call] = STATE(301), - [sym_preproc_if_in_field_declaration_list] = STATE(301), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(301), - [sym_type_definition] = STATE(301), - [sym__declaration_modifiers] = STATE(3225), - [sym__declaration_specifiers] = STATE(4180), - [sym_attribute_specifier] = STATE(3225), - [sym_attribute_declaration] = STATE(3225), - [sym_ms_declspec_modifier] = STATE(3225), - [sym_ms_based_modifier] = STATE(6104), - [sym__declarator] = STATE(5113), - [sym_parenthesized_declarator] = STATE(4918), - [sym_attributed_declarator] = STATE(4918), - [sym_pointer_declarator] = STATE(4918), - [sym_function_declarator] = STATE(4799), - [sym_array_declarator] = STATE(4918), - [sym_storage_class_specifier] = STATE(3225), - [sym_type_qualifier] = STATE(3225), - [sym__type_specifier] = STATE(3337), - [sym_sized_type_specifier] = STATE(3601), - [sym_enum_specifier] = STATE(3601), - [sym_struct_specifier] = STATE(3601), - [sym_union_specifier] = STATE(3601), - [sym__field_declaration_list_item] = STATE(301), - [sym_field_declaration] = STATE(301), - [sym_placeholder_type_specifier] = STATE(3601), - [sym_decltype_auto] = STATE(3558), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3601), - [sym_virtual] = STATE(3225), - [sym_explicit_function_specifier] = STATE(1961), - [sym_dependent_type] = STATE(3601), - [sym_template_declaration] = STATE(301), - [sym_operator_cast] = STATE(5140), - [sym_inline_method_definition] = STATE(301), - [sym__constructor_specifiers] = STATE(1961), - [sym_operator_cast_definition] = STATE(301), - [sym_operator_cast_declaration] = STATE(301), - [sym_constructor_or_destructor_definition] = STATE(301), - [sym_constructor_or_destructor_declaration] = STATE(301), - [sym_friend_declaration] = STATE(301), - [sym_access_specifier] = STATE(6324), - [sym_reference_declarator] = STATE(4918), - [sym_structured_binding_declarator] = STATE(4918), - [sym_template_type] = STATE(3198), - [sym_template_function] = STATE(4918), - [sym_using_declaration] = STATE(301), - [sym_alias_declaration] = STATE(301), - [sym_static_assert_declaration] = STATE(301), - [sym_destructor_name] = STATE(4918), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4455), - [sym_qualified_identifier] = STATE(4918), - [sym_qualified_type_identifier] = STATE(3554), - [sym_qualified_operator_cast_identifier] = STATE(5140), - [sym_operator_name] = STATE(4918), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(301), - [aux_sym__declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_sized_type_specifier_repeat1] = STATE(3584), - [aux_sym_operator_cast_definition_repeat1] = STATE(1961), - [sym_identifier] = ACTIONS(1665), - [aux_sym_preproc_def_token1] = ACTIONS(2234), - [aux_sym_preproc_if_token1] = ACTIONS(2236), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2238), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2238), - [sym_preproc_directive] = ACTIONS(2240), - [anon_sym_LPAREN2] = ACTIONS(1681), - [anon_sym_TILDE] = ACTIONS(1683), - [anon_sym_STAR] = ACTIONS(1685), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1687), - [anon_sym_typedef] = ACTIONS(2242), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(1691), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1413), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_RBRACE] = ACTIONS(2276), - [anon_sym_LBRACK] = ACTIONS(1693), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(1695), - [anon_sym_unsigned] = ACTIONS(1695), - [anon_sym_long] = ACTIONS(1695), - [anon_sym_short] = ACTIONS(1695), - [sym_primitive_type] = ACTIONS(1697), - [anon_sym_enum] = ACTIONS(1699), - [anon_sym_class] = ACTIONS(1701), - [anon_sym_struct] = ACTIONS(1703), - [anon_sym_union] = ACTIONS(1705), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1707), - [anon_sym_decltype] = ACTIONS(1709), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_explicit] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(1711), - [anon_sym_template] = ACTIONS(2246), - [anon_sym_operator] = ACTIONS(119), - [anon_sym_friend] = ACTIONS(2248), - [anon_sym_public] = ACTIONS(1717), - [anon_sym_private] = ACTIONS(1717), - [anon_sym_protected] = ACTIONS(1717), - [anon_sym_using] = ACTIONS(2250), - [anon_sym_static_assert] = ACTIONS(2252), + [sym_attribute_declaration] = STATE(251), + [sym_compound_statement] = STATE(685), + [sym_attributed_statement] = STATE(685), + [sym_labeled_statement] = STATE(685), + [sym_expression_statement] = STATE(685), + [sym_if_statement] = STATE(685), + [sym_switch_statement] = STATE(685), + [sym_case_statement] = STATE(685), + [sym_while_statement] = STATE(685), + [sym_do_statement] = STATE(685), + [sym_for_statement] = STATE(685), + [sym_return_statement] = STATE(685), + [sym_break_statement] = STATE(685), + [sym_continue_statement] = STATE(685), + [sym_goto_statement] = STATE(685), + [sym__expression] = STATE(4169), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7079), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(685), + [sym_co_return_statement] = STATE(685), + [sym_co_yield_statement] = STATE(685), + [sym_throw_statement] = STATE(685), + [sym_try_statement] = STATE(685), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(251), + [sym_identifier] = ACTIONS(2107), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(345), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(351), + [anon_sym_LBRACK] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(355), + [anon_sym_switch] = ACTIONS(357), + [anon_sym_case] = ACTIONS(359), + [anon_sym_default] = ACTIONS(361), + [anon_sym_while] = ACTIONS(363), + [anon_sym_do] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_return] = ACTIONS(369), + [anon_sym_break] = ACTIONS(371), + [anon_sym_continue] = ACTIONS(373), + [anon_sym_goto] = ACTIONS(375), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(379), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(381), + [anon_sym_co_return] = ACTIONS(391), + [anon_sym_co_yield] = ACTIONS(393), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [296] = { - [sym_preproc_def] = STATE(301), - [sym_preproc_function_def] = STATE(301), - [sym_preproc_call] = STATE(301), - [sym_preproc_if_in_field_declaration_list] = STATE(301), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(301), - [sym_type_definition] = STATE(301), - [sym__declaration_modifiers] = STATE(3225), - [sym__declaration_specifiers] = STATE(4180), - [sym_attribute_specifier] = STATE(3225), - [sym_attribute_declaration] = STATE(3225), - [sym_ms_declspec_modifier] = STATE(3225), - [sym_ms_based_modifier] = STATE(6104), - [sym__declarator] = STATE(5113), - [sym_parenthesized_declarator] = STATE(4918), - [sym_attributed_declarator] = STATE(4918), - [sym_pointer_declarator] = STATE(4918), - [sym_function_declarator] = STATE(4799), - [sym_array_declarator] = STATE(4918), - [sym_storage_class_specifier] = STATE(3225), - [sym_type_qualifier] = STATE(3225), - [sym__type_specifier] = STATE(3337), - [sym_sized_type_specifier] = STATE(3601), - [sym_enum_specifier] = STATE(3601), - [sym_struct_specifier] = STATE(3601), - [sym_union_specifier] = STATE(3601), - [sym__field_declaration_list_item] = STATE(301), - [sym_field_declaration] = STATE(301), - [sym_placeholder_type_specifier] = STATE(3601), - [sym_decltype_auto] = STATE(3558), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3601), - [sym_virtual] = STATE(3225), - [sym_explicit_function_specifier] = STATE(1961), - [sym_dependent_type] = STATE(3601), - [sym_template_declaration] = STATE(301), - [sym_operator_cast] = STATE(5140), - [sym_inline_method_definition] = STATE(301), - [sym__constructor_specifiers] = STATE(1961), - [sym_operator_cast_definition] = STATE(301), - [sym_operator_cast_declaration] = STATE(301), - [sym_constructor_or_destructor_definition] = STATE(301), - [sym_constructor_or_destructor_declaration] = STATE(301), - [sym_friend_declaration] = STATE(301), - [sym_access_specifier] = STATE(6324), - [sym_reference_declarator] = STATE(4918), - [sym_structured_binding_declarator] = STATE(4918), - [sym_template_type] = STATE(3198), - [sym_template_function] = STATE(4918), - [sym_using_declaration] = STATE(301), - [sym_alias_declaration] = STATE(301), - [sym_static_assert_declaration] = STATE(301), - [sym_destructor_name] = STATE(4918), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4455), - [sym_qualified_identifier] = STATE(4918), - [sym_qualified_type_identifier] = STATE(3554), - [sym_qualified_operator_cast_identifier] = STATE(5140), - [sym_operator_name] = STATE(4918), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(301), - [aux_sym__declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_sized_type_specifier_repeat1] = STATE(3584), - [aux_sym_operator_cast_definition_repeat1] = STATE(1961), - [sym_identifier] = ACTIONS(1665), - [aux_sym_preproc_def_token1] = ACTIONS(2234), - [aux_sym_preproc_if_token1] = ACTIONS(2236), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2238), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2238), - [sym_preproc_directive] = ACTIONS(2240), - [anon_sym_LPAREN2] = ACTIONS(1681), - [anon_sym_TILDE] = ACTIONS(1683), - [anon_sym_STAR] = ACTIONS(1685), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1687), - [anon_sym_typedef] = ACTIONS(2242), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(1691), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1413), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_RBRACE] = ACTIONS(2278), - [anon_sym_LBRACK] = ACTIONS(1693), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(1695), - [anon_sym_unsigned] = ACTIONS(1695), - [anon_sym_long] = ACTIONS(1695), - [anon_sym_short] = ACTIONS(1695), - [sym_primitive_type] = ACTIONS(1697), - [anon_sym_enum] = ACTIONS(1699), - [anon_sym_class] = ACTIONS(1701), - [anon_sym_struct] = ACTIONS(1703), - [anon_sym_union] = ACTIONS(1705), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1707), - [anon_sym_decltype] = ACTIONS(1709), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_explicit] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(1711), - [anon_sym_template] = ACTIONS(2246), - [anon_sym_operator] = ACTIONS(119), - [anon_sym_friend] = ACTIONS(2248), - [anon_sym_public] = ACTIONS(1717), - [anon_sym_private] = ACTIONS(1717), - [anon_sym_protected] = ACTIONS(1717), - [anon_sym_using] = ACTIONS(2250), - [anon_sym_static_assert] = ACTIONS(2252), + [sym_attribute_declaration] = STATE(230), + [sym_compound_statement] = STATE(830), + [sym_attributed_statement] = STATE(830), + [sym_labeled_statement] = STATE(830), + [sym_expression_statement] = STATE(830), + [sym_if_statement] = STATE(830), + [sym_switch_statement] = STATE(830), + [sym_case_statement] = STATE(830), + [sym_while_statement] = STATE(830), + [sym_do_statement] = STATE(830), + [sym_for_statement] = STATE(830), + [sym_return_statement] = STATE(830), + [sym_break_statement] = STATE(830), + [sym_continue_statement] = STATE(830), + [sym_goto_statement] = STATE(830), + [sym__expression] = STATE(4182), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7590), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(830), + [sym_co_return_statement] = STATE(830), + [sym_co_yield_statement] = STATE(830), + [sym_throw_statement] = STATE(830), + [sym_try_statement] = STATE(830), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(230), + [sym_identifier] = ACTIONS(2115), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACK] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(2117), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_case] = ACTIONS(2111), + [anon_sym_default] = ACTIONS(2113), + [anon_sym_while] = ACTIONS(2119), + [anon_sym_do] = ACTIONS(81), + [anon_sym_for] = ACTIONS(2121), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(127), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(131), + [anon_sym_co_return] = ACTIONS(141), + [anon_sym_co_yield] = ACTIONS(143), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [297] = { - [sym_preproc_def] = STATE(301), - [sym_preproc_function_def] = STATE(301), - [sym_preproc_call] = STATE(301), - [sym_preproc_if_in_field_declaration_list] = STATE(301), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(301), - [sym_type_definition] = STATE(301), - [sym__declaration_modifiers] = STATE(3225), - [sym__declaration_specifiers] = STATE(4180), - [sym_attribute_specifier] = STATE(3225), - [sym_attribute_declaration] = STATE(3225), - [sym_ms_declspec_modifier] = STATE(3225), - [sym_ms_based_modifier] = STATE(6104), - [sym__declarator] = STATE(5113), - [sym_parenthesized_declarator] = STATE(4918), - [sym_attributed_declarator] = STATE(4918), - [sym_pointer_declarator] = STATE(4918), - [sym_function_declarator] = STATE(4799), - [sym_array_declarator] = STATE(4918), - [sym_storage_class_specifier] = STATE(3225), - [sym_type_qualifier] = STATE(3225), - [sym__type_specifier] = STATE(3337), - [sym_sized_type_specifier] = STATE(3601), - [sym_enum_specifier] = STATE(3601), - [sym_struct_specifier] = STATE(3601), - [sym_union_specifier] = STATE(3601), - [sym__field_declaration_list_item] = STATE(301), - [sym_field_declaration] = STATE(301), - [sym_placeholder_type_specifier] = STATE(3601), - [sym_decltype_auto] = STATE(3558), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3601), - [sym_virtual] = STATE(3225), - [sym_explicit_function_specifier] = STATE(1961), - [sym_dependent_type] = STATE(3601), - [sym_template_declaration] = STATE(301), - [sym_operator_cast] = STATE(5140), - [sym_inline_method_definition] = STATE(301), - [sym__constructor_specifiers] = STATE(1961), - [sym_operator_cast_definition] = STATE(301), - [sym_operator_cast_declaration] = STATE(301), - [sym_constructor_or_destructor_definition] = STATE(301), - [sym_constructor_or_destructor_declaration] = STATE(301), - [sym_friend_declaration] = STATE(301), - [sym_access_specifier] = STATE(6324), - [sym_reference_declarator] = STATE(4918), - [sym_structured_binding_declarator] = STATE(4918), - [sym_template_type] = STATE(3198), - [sym_template_function] = STATE(4918), - [sym_using_declaration] = STATE(301), - [sym_alias_declaration] = STATE(301), - [sym_static_assert_declaration] = STATE(301), - [sym_destructor_name] = STATE(4918), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4455), - [sym_qualified_identifier] = STATE(4918), - [sym_qualified_type_identifier] = STATE(3554), - [sym_qualified_operator_cast_identifier] = STATE(5140), - [sym_operator_name] = STATE(4918), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(301), - [aux_sym__declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_sized_type_specifier_repeat1] = STATE(3584), - [aux_sym_operator_cast_definition_repeat1] = STATE(1961), - [sym_identifier] = ACTIONS(1665), - [aux_sym_preproc_def_token1] = ACTIONS(2234), - [aux_sym_preproc_if_token1] = ACTIONS(2236), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2238), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2238), - [sym_preproc_directive] = ACTIONS(2240), - [anon_sym_LPAREN2] = ACTIONS(1681), - [anon_sym_TILDE] = ACTIONS(1683), - [anon_sym_STAR] = ACTIONS(1685), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1687), - [anon_sym_typedef] = ACTIONS(2242), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(1691), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1413), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_RBRACE] = ACTIONS(2280), - [anon_sym_LBRACK] = ACTIONS(1693), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(1695), - [anon_sym_unsigned] = ACTIONS(1695), - [anon_sym_long] = ACTIONS(1695), - [anon_sym_short] = ACTIONS(1695), - [sym_primitive_type] = ACTIONS(1697), - [anon_sym_enum] = ACTIONS(1699), - [anon_sym_class] = ACTIONS(1701), - [anon_sym_struct] = ACTIONS(1703), - [anon_sym_union] = ACTIONS(1705), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1707), - [anon_sym_decltype] = ACTIONS(1709), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_explicit] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(1711), - [anon_sym_template] = ACTIONS(2246), - [anon_sym_operator] = ACTIONS(119), - [anon_sym_friend] = ACTIONS(2248), - [anon_sym_public] = ACTIONS(1717), - [anon_sym_private] = ACTIONS(1717), - [anon_sym_protected] = ACTIONS(1717), - [anon_sym_using] = ACTIONS(2250), - [anon_sym_static_assert] = ACTIONS(2252), + [sym_attribute_declaration] = STATE(230), + [sym_compound_statement] = STATE(7573), + [sym_attributed_statement] = STATE(7573), + [sym_labeled_statement] = STATE(7573), + [sym_expression_statement] = STATE(7573), + [sym_if_statement] = STATE(7573), + [sym_switch_statement] = STATE(7573), + [sym_case_statement] = STATE(7573), + [sym_while_statement] = STATE(7573), + [sym_do_statement] = STATE(7573), + [sym_for_statement] = STATE(7573), + [sym_return_statement] = STATE(7573), + [sym_break_statement] = STATE(7573), + [sym_continue_statement] = STATE(7573), + [sym_goto_statement] = STATE(7573), + [sym__expression] = STATE(4182), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7590), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(7573), + [sym_co_return_statement] = STATE(7573), + [sym_co_yield_statement] = STATE(7573), + [sym_throw_statement] = STATE(7573), + [sym_try_statement] = STATE(7573), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(230), + [sym_identifier] = ACTIONS(2115), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACK] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(2117), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_case] = ACTIONS(2111), + [anon_sym_default] = ACTIONS(2113), + [anon_sym_while] = ACTIONS(2119), + [anon_sym_do] = ACTIONS(81), + [anon_sym_for] = ACTIONS(2121), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(127), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(131), + [anon_sym_co_return] = ACTIONS(141), + [anon_sym_co_yield] = ACTIONS(143), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [298] = { - [sym_preproc_def] = STATE(296), - [sym_preproc_function_def] = STATE(296), - [sym_preproc_call] = STATE(296), - [sym_preproc_if_in_field_declaration_list] = STATE(296), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(296), - [sym_type_definition] = STATE(296), - [sym__declaration_modifiers] = STATE(3225), - [sym__declaration_specifiers] = STATE(4180), - [sym_attribute_specifier] = STATE(3225), - [sym_attribute_declaration] = STATE(3225), - [sym_ms_declspec_modifier] = STATE(3225), - [sym_ms_based_modifier] = STATE(6104), - [sym__declarator] = STATE(5113), - [sym_parenthesized_declarator] = STATE(4918), - [sym_attributed_declarator] = STATE(4918), - [sym_pointer_declarator] = STATE(4918), - [sym_function_declarator] = STATE(4799), - [sym_array_declarator] = STATE(4918), - [sym_storage_class_specifier] = STATE(3225), - [sym_type_qualifier] = STATE(3225), - [sym__type_specifier] = STATE(3337), - [sym_sized_type_specifier] = STATE(3601), - [sym_enum_specifier] = STATE(3601), - [sym_struct_specifier] = STATE(3601), - [sym_union_specifier] = STATE(3601), - [sym__field_declaration_list_item] = STATE(296), - [sym_field_declaration] = STATE(296), - [sym_placeholder_type_specifier] = STATE(3601), - [sym_decltype_auto] = STATE(3558), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3601), - [sym_virtual] = STATE(3225), - [sym_explicit_function_specifier] = STATE(1961), - [sym_dependent_type] = STATE(3601), - [sym_template_declaration] = STATE(296), - [sym_operator_cast] = STATE(5140), - [sym_inline_method_definition] = STATE(296), - [sym__constructor_specifiers] = STATE(1961), - [sym_operator_cast_definition] = STATE(296), - [sym_operator_cast_declaration] = STATE(296), - [sym_constructor_or_destructor_definition] = STATE(296), - [sym_constructor_or_destructor_declaration] = STATE(296), - [sym_friend_declaration] = STATE(296), - [sym_access_specifier] = STATE(6324), - [sym_reference_declarator] = STATE(4918), - [sym_structured_binding_declarator] = STATE(4918), - [sym_template_type] = STATE(3198), - [sym_template_function] = STATE(4918), - [sym_using_declaration] = STATE(296), - [sym_alias_declaration] = STATE(296), - [sym_static_assert_declaration] = STATE(296), - [sym_destructor_name] = STATE(4918), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4455), - [sym_qualified_identifier] = STATE(4918), - [sym_qualified_type_identifier] = STATE(3554), - [sym_qualified_operator_cast_identifier] = STATE(5140), - [sym_operator_name] = STATE(4918), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(296), - [aux_sym__declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_sized_type_specifier_repeat1] = STATE(3584), - [aux_sym_operator_cast_definition_repeat1] = STATE(1961), - [sym_identifier] = ACTIONS(1665), - [aux_sym_preproc_def_token1] = ACTIONS(2234), - [aux_sym_preproc_if_token1] = ACTIONS(2236), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2238), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2238), - [sym_preproc_directive] = ACTIONS(2240), - [anon_sym_LPAREN2] = ACTIONS(1681), - [anon_sym_TILDE] = ACTIONS(1683), - [anon_sym_STAR] = ACTIONS(1685), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1687), - [anon_sym_typedef] = ACTIONS(2242), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(1691), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1413), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_RBRACE] = ACTIONS(2282), - [anon_sym_LBRACK] = ACTIONS(1693), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(1695), - [anon_sym_unsigned] = ACTIONS(1695), - [anon_sym_long] = ACTIONS(1695), - [anon_sym_short] = ACTIONS(1695), - [sym_primitive_type] = ACTIONS(1697), - [anon_sym_enum] = ACTIONS(1699), - [anon_sym_class] = ACTIONS(1701), - [anon_sym_struct] = ACTIONS(1703), - [anon_sym_union] = ACTIONS(1705), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1707), - [anon_sym_decltype] = ACTIONS(1709), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_explicit] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(1711), - [anon_sym_template] = ACTIONS(2246), - [anon_sym_operator] = ACTIONS(119), - [anon_sym_friend] = ACTIONS(2248), - [anon_sym_public] = ACTIONS(1717), - [anon_sym_private] = ACTIONS(1717), - [anon_sym_protected] = ACTIONS(1717), - [anon_sym_using] = ACTIONS(2250), - [anon_sym_static_assert] = ACTIONS(2252), + [sym_attribute_declaration] = STATE(251), + [sym_compound_statement] = STATE(677), + [sym_attributed_statement] = STATE(677), + [sym_labeled_statement] = STATE(677), + [sym_expression_statement] = STATE(677), + [sym_if_statement] = STATE(677), + [sym_switch_statement] = STATE(677), + [sym_case_statement] = STATE(677), + [sym_while_statement] = STATE(677), + [sym_do_statement] = STATE(677), + [sym_for_statement] = STATE(677), + [sym_return_statement] = STATE(677), + [sym_break_statement] = STATE(677), + [sym_continue_statement] = STATE(677), + [sym_goto_statement] = STATE(677), + [sym__expression] = STATE(4169), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7079), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(677), + [sym_co_return_statement] = STATE(677), + [sym_co_yield_statement] = STATE(677), + [sym_throw_statement] = STATE(677), + [sym_try_statement] = STATE(677), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(251), + [sym_identifier] = ACTIONS(2107), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(345), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(351), + [anon_sym_LBRACK] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(355), + [anon_sym_switch] = ACTIONS(357), + [anon_sym_case] = ACTIONS(359), + [anon_sym_default] = ACTIONS(361), + [anon_sym_while] = ACTIONS(363), + [anon_sym_do] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_return] = ACTIONS(369), + [anon_sym_break] = ACTIONS(371), + [anon_sym_continue] = ACTIONS(373), + [anon_sym_goto] = ACTIONS(375), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(379), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(381), + [anon_sym_co_return] = ACTIONS(391), + [anon_sym_co_yield] = ACTIONS(393), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [299] = { - [sym_preproc_def] = STATE(301), - [sym_preproc_function_def] = STATE(301), - [sym_preproc_call] = STATE(301), - [sym_preproc_if_in_field_declaration_list] = STATE(301), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(301), - [sym_type_definition] = STATE(301), - [sym__declaration_modifiers] = STATE(3225), - [sym__declaration_specifiers] = STATE(4180), - [sym_attribute_specifier] = STATE(3225), - [sym_attribute_declaration] = STATE(3225), - [sym_ms_declspec_modifier] = STATE(3225), - [sym_ms_based_modifier] = STATE(6104), - [sym__declarator] = STATE(5113), - [sym_parenthesized_declarator] = STATE(4918), - [sym_attributed_declarator] = STATE(4918), - [sym_pointer_declarator] = STATE(4918), - [sym_function_declarator] = STATE(4799), - [sym_array_declarator] = STATE(4918), - [sym_storage_class_specifier] = STATE(3225), - [sym_type_qualifier] = STATE(3225), - [sym__type_specifier] = STATE(3337), - [sym_sized_type_specifier] = STATE(3601), - [sym_enum_specifier] = STATE(3601), - [sym_struct_specifier] = STATE(3601), - [sym_union_specifier] = STATE(3601), - [sym__field_declaration_list_item] = STATE(301), - [sym_field_declaration] = STATE(301), - [sym_placeholder_type_specifier] = STATE(3601), - [sym_decltype_auto] = STATE(3558), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3601), - [sym_virtual] = STATE(3225), - [sym_explicit_function_specifier] = STATE(1961), - [sym_dependent_type] = STATE(3601), - [sym_template_declaration] = STATE(301), - [sym_operator_cast] = STATE(5140), - [sym_inline_method_definition] = STATE(301), - [sym__constructor_specifiers] = STATE(1961), - [sym_operator_cast_definition] = STATE(301), - [sym_operator_cast_declaration] = STATE(301), - [sym_constructor_or_destructor_definition] = STATE(301), - [sym_constructor_or_destructor_declaration] = STATE(301), - [sym_friend_declaration] = STATE(301), - [sym_access_specifier] = STATE(6324), - [sym_reference_declarator] = STATE(4918), - [sym_structured_binding_declarator] = STATE(4918), - [sym_template_type] = STATE(3198), - [sym_template_function] = STATE(4918), - [sym_using_declaration] = STATE(301), - [sym_alias_declaration] = STATE(301), - [sym_static_assert_declaration] = STATE(301), - [sym_destructor_name] = STATE(4918), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4455), - [sym_qualified_identifier] = STATE(4918), - [sym_qualified_type_identifier] = STATE(3554), - [sym_qualified_operator_cast_identifier] = STATE(5140), - [sym_operator_name] = STATE(4918), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(301), - [aux_sym__declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_sized_type_specifier_repeat1] = STATE(3584), - [aux_sym_operator_cast_definition_repeat1] = STATE(1961), - [sym_identifier] = ACTIONS(1665), - [aux_sym_preproc_def_token1] = ACTIONS(2234), - [aux_sym_preproc_if_token1] = ACTIONS(2236), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2238), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2238), - [sym_preproc_directive] = ACTIONS(2240), - [anon_sym_LPAREN2] = ACTIONS(1681), - [anon_sym_TILDE] = ACTIONS(1683), - [anon_sym_STAR] = ACTIONS(1685), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1687), - [anon_sym_typedef] = ACTIONS(2242), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(1691), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1413), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_RBRACE] = ACTIONS(2284), - [anon_sym_LBRACK] = ACTIONS(1693), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(1695), - [anon_sym_unsigned] = ACTIONS(1695), - [anon_sym_long] = ACTIONS(1695), - [anon_sym_short] = ACTIONS(1695), - [sym_primitive_type] = ACTIONS(1697), - [anon_sym_enum] = ACTIONS(1699), - [anon_sym_class] = ACTIONS(1701), - [anon_sym_struct] = ACTIONS(1703), - [anon_sym_union] = ACTIONS(1705), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1707), - [anon_sym_decltype] = ACTIONS(1709), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_explicit] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(1711), - [anon_sym_template] = ACTIONS(2246), - [anon_sym_operator] = ACTIONS(119), - [anon_sym_friend] = ACTIONS(2248), - [anon_sym_public] = ACTIONS(1717), - [anon_sym_private] = ACTIONS(1717), - [anon_sym_protected] = ACTIONS(1717), - [anon_sym_using] = ACTIONS(2250), - [anon_sym_static_assert] = ACTIONS(2252), + [sym_attribute_declaration] = STATE(189), + [sym_compound_statement] = STATE(857), + [sym_attributed_statement] = STATE(857), + [sym_labeled_statement] = STATE(857), + [sym_expression_statement] = STATE(857), + [sym_if_statement] = STATE(857), + [sym_switch_statement] = STATE(857), + [sym_case_statement] = STATE(857), + [sym_while_statement] = STATE(857), + [sym_do_statement] = STATE(857), + [sym_for_statement] = STATE(857), + [sym_return_statement] = STATE(857), + [sym_break_statement] = STATE(857), + [sym_continue_statement] = STATE(857), + [sym_goto_statement] = STATE(857), + [sym__expression] = STATE(4126), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(6964), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(857), + [sym_co_return_statement] = STATE(857), + [sym_co_yield_statement] = STATE(857), + [sym_throw_statement] = STATE(857), + [sym_try_statement] = STATE(857), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(189), + [sym_identifier] = ACTIONS(2099), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(911), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(917), + [anon_sym_LBRACK] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(921), + [anon_sym_switch] = ACTIONS(923), + [anon_sym_case] = ACTIONS(925), + [anon_sym_default] = ACTIONS(927), + [anon_sym_while] = ACTIONS(929), + [anon_sym_do] = ACTIONS(931), + [anon_sym_for] = ACTIONS(933), + [anon_sym_return] = ACTIONS(935), + [anon_sym_break] = ACTIONS(937), + [anon_sym_continue] = ACTIONS(939), + [anon_sym_goto] = ACTIONS(941), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(945), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(947), + [anon_sym_co_return] = ACTIONS(957), + [anon_sym_co_yield] = ACTIONS(959), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [300] = { - [sym_preproc_def] = STATE(293), - [sym_preproc_function_def] = STATE(293), - [sym_preproc_call] = STATE(293), - [sym_preproc_if_in_field_declaration_list] = STATE(293), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(293), - [sym_type_definition] = STATE(293), - [sym__declaration_modifiers] = STATE(3225), - [sym__declaration_specifiers] = STATE(4190), - [sym_attribute_specifier] = STATE(3225), - [sym_attribute_declaration] = STATE(3225), - [sym_ms_declspec_modifier] = STATE(3225), - [sym_ms_based_modifier] = STATE(6104), - [sym__declarator] = STATE(5113), - [sym_parenthesized_declarator] = STATE(4918), - [sym_attributed_declarator] = STATE(4918), - [sym_pointer_declarator] = STATE(4918), - [sym_function_declarator] = STATE(4792), - [sym_array_declarator] = STATE(4918), - [sym_storage_class_specifier] = STATE(3225), - [sym_type_qualifier] = STATE(3225), - [sym__type_specifier] = STATE(3337), - [sym_sized_type_specifier] = STATE(3601), - [sym_enum_specifier] = STATE(3601), - [sym_struct_specifier] = STATE(3601), - [sym_union_specifier] = STATE(3601), - [sym__field_declaration_list_item] = STATE(293), - [sym_field_declaration] = STATE(293), - [sym_placeholder_type_specifier] = STATE(3601), - [sym_decltype_auto] = STATE(3558), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3601), - [sym_virtual] = STATE(3225), - [sym_explicit_function_specifier] = STATE(1947), - [sym_dependent_type] = STATE(3601), - [sym_template_declaration] = STATE(293), - [sym_operator_cast] = STATE(5120), - [sym_inline_method_definition] = STATE(293), - [sym__constructor_specifiers] = STATE(1947), - [sym_operator_cast_definition] = STATE(293), - [sym_operator_cast_declaration] = STATE(293), - [sym_constructor_or_destructor_definition] = STATE(293), - [sym_constructor_or_destructor_declaration] = STATE(293), - [sym_friend_declaration] = STATE(293), - [sym_access_specifier] = STATE(6456), - [sym_reference_declarator] = STATE(4918), - [sym_structured_binding_declarator] = STATE(4918), - [sym_template_type] = STATE(3198), - [sym_template_function] = STATE(4918), - [sym_using_declaration] = STATE(293), - [sym_alias_declaration] = STATE(293), - [sym_static_assert_declaration] = STATE(293), - [sym_destructor_name] = STATE(4918), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4455), - [sym_qualified_identifier] = STATE(4918), - [sym_qualified_type_identifier] = STATE(3554), - [sym_qualified_operator_cast_identifier] = STATE(5120), - [sym_operator_name] = STATE(4918), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(293), - [aux_sym__declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_sized_type_specifier_repeat1] = STATE(3584), - [aux_sym_operator_cast_definition_repeat1] = STATE(1947), - [sym_identifier] = ACTIONS(1665), - [aux_sym_preproc_def_token1] = ACTIONS(2254), - [aux_sym_preproc_if_token1] = ACTIONS(2256), - [aux_sym_preproc_if_token2] = ACTIONS(2286), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2260), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2260), - [sym_preproc_directive] = ACTIONS(2262), - [anon_sym_LPAREN2] = ACTIONS(1681), - [anon_sym_TILDE] = ACTIONS(1683), - [anon_sym_STAR] = ACTIONS(1685), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1687), - [anon_sym_typedef] = ACTIONS(2264), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(1691), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1413), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1693), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(1695), - [anon_sym_unsigned] = ACTIONS(1695), - [anon_sym_long] = ACTIONS(1695), - [anon_sym_short] = ACTIONS(1695), - [sym_primitive_type] = ACTIONS(1697), - [anon_sym_enum] = ACTIONS(1699), - [anon_sym_class] = ACTIONS(1701), - [anon_sym_struct] = ACTIONS(1703), - [anon_sym_union] = ACTIONS(1705), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1707), - [anon_sym_decltype] = ACTIONS(1709), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_explicit] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(1711), - [anon_sym_template] = ACTIONS(2266), - [anon_sym_operator] = ACTIONS(119), - [anon_sym_friend] = ACTIONS(2268), - [anon_sym_public] = ACTIONS(1717), - [anon_sym_private] = ACTIONS(1717), - [anon_sym_protected] = ACTIONS(1717), - [anon_sym_using] = ACTIONS(2270), - [anon_sym_static_assert] = ACTIONS(2272), + [sym_attribute_declaration] = STATE(251), + [sym_compound_statement] = STATE(669), + [sym_attributed_statement] = STATE(667), + [sym_labeled_statement] = STATE(666), + [sym_expression_statement] = STATE(665), + [sym_if_statement] = STATE(664), + [sym_switch_statement] = STATE(658), + [sym_case_statement] = STATE(657), + [sym_while_statement] = STATE(656), + [sym_do_statement] = STATE(655), + [sym_for_statement] = STATE(650), + [sym_return_statement] = STATE(649), + [sym_break_statement] = STATE(648), + [sym_continue_statement] = STATE(647), + [sym_goto_statement] = STATE(645), + [sym__expression] = STATE(4169), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7079), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(644), + [sym_co_return_statement] = STATE(641), + [sym_co_yield_statement] = STATE(633), + [sym_throw_statement] = STATE(604), + [sym_try_statement] = STATE(631), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(251), + [sym_identifier] = ACTIONS(2107), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(345), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(351), + [anon_sym_LBRACK] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(355), + [anon_sym_switch] = ACTIONS(357), + [anon_sym_case] = ACTIONS(359), + [anon_sym_default] = ACTIONS(361), + [anon_sym_while] = ACTIONS(363), + [anon_sym_do] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_return] = ACTIONS(369), + [anon_sym_break] = ACTIONS(371), + [anon_sym_continue] = ACTIONS(373), + [anon_sym_goto] = ACTIONS(375), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(379), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(381), + [anon_sym_co_return] = ACTIONS(391), + [anon_sym_co_yield] = ACTIONS(393), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [301] = { - [sym_preproc_def] = STATE(301), - [sym_preproc_function_def] = STATE(301), - [sym_preproc_call] = STATE(301), - [sym_preproc_if_in_field_declaration_list] = STATE(301), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(301), - [sym_type_definition] = STATE(301), - [sym__declaration_modifiers] = STATE(3225), - [sym__declaration_specifiers] = STATE(4180), - [sym_attribute_specifier] = STATE(3225), - [sym_attribute_declaration] = STATE(3225), - [sym_ms_declspec_modifier] = STATE(3225), - [sym_ms_based_modifier] = STATE(6104), - [sym__declarator] = STATE(5113), - [sym_parenthesized_declarator] = STATE(4918), - [sym_attributed_declarator] = STATE(4918), - [sym_pointer_declarator] = STATE(4918), - [sym_function_declarator] = STATE(4799), - [sym_array_declarator] = STATE(4918), - [sym_storage_class_specifier] = STATE(3225), - [sym_type_qualifier] = STATE(3225), - [sym__type_specifier] = STATE(3337), - [sym_sized_type_specifier] = STATE(3601), - [sym_enum_specifier] = STATE(3601), - [sym_struct_specifier] = STATE(3601), - [sym_union_specifier] = STATE(3601), - [sym__field_declaration_list_item] = STATE(301), - [sym_field_declaration] = STATE(301), - [sym_placeholder_type_specifier] = STATE(3601), - [sym_decltype_auto] = STATE(3558), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3601), - [sym_virtual] = STATE(3225), - [sym_explicit_function_specifier] = STATE(1961), - [sym_dependent_type] = STATE(3601), - [sym_template_declaration] = STATE(301), - [sym_operator_cast] = STATE(5140), - [sym_inline_method_definition] = STATE(301), - [sym__constructor_specifiers] = STATE(1961), - [sym_operator_cast_definition] = STATE(301), - [sym_operator_cast_declaration] = STATE(301), - [sym_constructor_or_destructor_definition] = STATE(301), - [sym_constructor_or_destructor_declaration] = STATE(301), - [sym_friend_declaration] = STATE(301), - [sym_access_specifier] = STATE(6324), - [sym_reference_declarator] = STATE(4918), - [sym_structured_binding_declarator] = STATE(4918), - [sym_template_type] = STATE(3198), - [sym_template_function] = STATE(4918), - [sym_using_declaration] = STATE(301), - [sym_alias_declaration] = STATE(301), - [sym_static_assert_declaration] = STATE(301), - [sym_destructor_name] = STATE(4918), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4455), - [sym_qualified_identifier] = STATE(4918), - [sym_qualified_type_identifier] = STATE(3554), - [sym_qualified_operator_cast_identifier] = STATE(5140), - [sym_operator_name] = STATE(4918), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(301), - [aux_sym__declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_sized_type_specifier_repeat1] = STATE(3584), - [aux_sym_operator_cast_definition_repeat1] = STATE(1961), - [sym_identifier] = ACTIONS(2124), - [aux_sym_preproc_def_token1] = ACTIONS(2288), - [aux_sym_preproc_if_token1] = ACTIONS(2291), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2294), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2294), - [sym_preproc_directive] = ACTIONS(2297), - [anon_sym_LPAREN2] = ACTIONS(2141), - [anon_sym_TILDE] = ACTIONS(2144), - [anon_sym_STAR] = ACTIONS(2147), - [anon_sym_AMP_AMP] = ACTIONS(2150), - [anon_sym_AMP] = ACTIONS(2153), - [anon_sym_typedef] = ACTIONS(2300), - [anon_sym_extern] = ACTIONS(2159), - [anon_sym___attribute__] = ACTIONS(2162), - [anon_sym_COLON_COLON] = ACTIONS(2165), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2168), - [anon_sym___declspec] = ACTIONS(2171), - [anon_sym___based] = ACTIONS(2174), - [anon_sym_RBRACE] = ACTIONS(2303), - [anon_sym_LBRACK] = ACTIONS(2177), - [anon_sym_static] = ACTIONS(2159), - [anon_sym_register] = ACTIONS(2159), - [anon_sym_inline] = ACTIONS(2159), - [anon_sym_thread_local] = ACTIONS(2159), - [anon_sym_const] = ACTIONS(2180), - [anon_sym_volatile] = ACTIONS(2180), - [anon_sym_restrict] = ACTIONS(2180), - [anon_sym__Atomic] = ACTIONS(2180), - [anon_sym_mutable] = ACTIONS(2180), - [anon_sym_constexpr] = ACTIONS(2180), - [anon_sym_constinit] = ACTIONS(2180), - [anon_sym_consteval] = ACTIONS(2180), - [anon_sym_signed] = ACTIONS(2183), - [anon_sym_unsigned] = ACTIONS(2183), - [anon_sym_long] = ACTIONS(2183), - [anon_sym_short] = ACTIONS(2183), - [sym_primitive_type] = ACTIONS(2186), - [anon_sym_enum] = ACTIONS(2189), - [anon_sym_class] = ACTIONS(2192), - [anon_sym_struct] = ACTIONS(2195), - [anon_sym_union] = ACTIONS(2198), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2201), - [anon_sym_decltype] = ACTIONS(2204), - [anon_sym_virtual] = ACTIONS(2207), - [anon_sym_explicit] = ACTIONS(2210), - [anon_sym_typename] = ACTIONS(2213), - [anon_sym_template] = ACTIONS(2305), - [anon_sym_operator] = ACTIONS(2219), - [anon_sym_friend] = ACTIONS(2308), - [anon_sym_public] = ACTIONS(2225), - [anon_sym_private] = ACTIONS(2225), - [anon_sym_protected] = ACTIONS(2225), - [anon_sym_using] = ACTIONS(2311), - [anon_sym_static_assert] = ACTIONS(2314), + [sym_attribute_declaration] = STATE(251), + [sym_compound_statement] = STATE(683), + [sym_attributed_statement] = STATE(625), + [sym_labeled_statement] = STATE(623), + [sym_expression_statement] = STATE(622), + [sym_if_statement] = STATE(621), + [sym_switch_statement] = STATE(620), + [sym_case_statement] = STATE(749), + [sym_while_statement] = STATE(750), + [sym_do_statement] = STATE(634), + [sym_for_statement] = STATE(746), + [sym_return_statement] = STATE(684), + [sym_break_statement] = STATE(735), + [sym_continue_statement] = STATE(747), + [sym_goto_statement] = STATE(661), + [sym__expression] = STATE(4169), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7079), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(739), + [sym_co_return_statement] = STATE(734), + [sym_co_yield_statement] = STATE(725), + [sym_throw_statement] = STATE(723), + [sym_try_statement] = STATE(721), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(251), + [sym_identifier] = ACTIONS(2107), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(345), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(351), + [anon_sym_LBRACK] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(355), + [anon_sym_switch] = ACTIONS(357), + [anon_sym_case] = ACTIONS(359), + [anon_sym_default] = ACTIONS(361), + [anon_sym_while] = ACTIONS(363), + [anon_sym_do] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_return] = ACTIONS(369), + [anon_sym_break] = ACTIONS(371), + [anon_sym_continue] = ACTIONS(373), + [anon_sym_goto] = ACTIONS(375), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(379), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(381), + [anon_sym_co_return] = ACTIONS(391), + [anon_sym_co_yield] = ACTIONS(393), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [302] = { - [sym_preproc_def] = STATE(303), - [sym_preproc_function_def] = STATE(303), - [sym_preproc_call] = STATE(303), - [sym_preproc_if_in_field_declaration_list] = STATE(303), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(303), - [sym_type_definition] = STATE(303), - [sym__declaration_modifiers] = STATE(3225), - [sym__declaration_specifiers] = STATE(4180), - [sym_attribute_specifier] = STATE(3225), - [sym_attribute_declaration] = STATE(3225), - [sym_ms_declspec_modifier] = STATE(3225), - [sym_ms_based_modifier] = STATE(6104), - [sym__declarator] = STATE(5113), - [sym_parenthesized_declarator] = STATE(4918), - [sym_attributed_declarator] = STATE(4918), - [sym_pointer_declarator] = STATE(4918), - [sym_function_declarator] = STATE(4799), - [sym_array_declarator] = STATE(4918), - [sym_storage_class_specifier] = STATE(3225), - [sym_type_qualifier] = STATE(3225), - [sym__type_specifier] = STATE(3337), - [sym_sized_type_specifier] = STATE(3601), - [sym_enum_specifier] = STATE(3601), - [sym_struct_specifier] = STATE(3601), - [sym_union_specifier] = STATE(3601), - [sym__field_declaration_list_item] = STATE(303), - [sym_field_declaration] = STATE(303), - [sym_placeholder_type_specifier] = STATE(3601), - [sym_decltype_auto] = STATE(3558), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3601), - [sym_virtual] = STATE(3225), - [sym_explicit_function_specifier] = STATE(1961), - [sym_dependent_type] = STATE(3601), - [sym_template_declaration] = STATE(303), - [sym_operator_cast] = STATE(5140), - [sym_inline_method_definition] = STATE(303), - [sym__constructor_specifiers] = STATE(1961), - [sym_operator_cast_definition] = STATE(303), - [sym_operator_cast_declaration] = STATE(303), - [sym_constructor_or_destructor_definition] = STATE(303), - [sym_constructor_or_destructor_declaration] = STATE(303), - [sym_friend_declaration] = STATE(303), - [sym_access_specifier] = STATE(6324), - [sym_reference_declarator] = STATE(4918), - [sym_structured_binding_declarator] = STATE(4918), - [sym_template_type] = STATE(3198), - [sym_template_function] = STATE(4918), - [sym_using_declaration] = STATE(303), - [sym_alias_declaration] = STATE(303), - [sym_static_assert_declaration] = STATE(303), - [sym_destructor_name] = STATE(4918), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4455), - [sym_qualified_identifier] = STATE(4918), - [sym_qualified_type_identifier] = STATE(3554), - [sym_qualified_operator_cast_identifier] = STATE(5140), - [sym_operator_name] = STATE(4918), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(303), - [aux_sym__declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_sized_type_specifier_repeat1] = STATE(3584), - [aux_sym_operator_cast_definition_repeat1] = STATE(1961), - [sym_identifier] = ACTIONS(1665), - [aux_sym_preproc_def_token1] = ACTIONS(2234), - [aux_sym_preproc_if_token1] = ACTIONS(2236), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2238), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2238), - [sym_preproc_directive] = ACTIONS(2240), - [anon_sym_LPAREN2] = ACTIONS(1681), - [anon_sym_TILDE] = ACTIONS(1683), - [anon_sym_STAR] = ACTIONS(1685), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1687), - [anon_sym_typedef] = ACTIONS(2242), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(1691), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1413), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_RBRACE] = ACTIONS(2317), - [anon_sym_LBRACK] = ACTIONS(1693), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(1695), - [anon_sym_unsigned] = ACTIONS(1695), - [anon_sym_long] = ACTIONS(1695), - [anon_sym_short] = ACTIONS(1695), - [sym_primitive_type] = ACTIONS(1697), - [anon_sym_enum] = ACTIONS(1699), - [anon_sym_class] = ACTIONS(1701), - [anon_sym_struct] = ACTIONS(1703), - [anon_sym_union] = ACTIONS(1705), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1707), - [anon_sym_decltype] = ACTIONS(1709), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_explicit] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(1711), - [anon_sym_template] = ACTIONS(2246), - [anon_sym_operator] = ACTIONS(119), - [anon_sym_friend] = ACTIONS(2248), - [anon_sym_public] = ACTIONS(1717), - [anon_sym_private] = ACTIONS(1717), - [anon_sym_protected] = ACTIONS(1717), - [anon_sym_using] = ACTIONS(2250), - [anon_sym_static_assert] = ACTIONS(2252), + [sym_attribute_declaration] = STATE(189), + [sym_compound_statement] = STATE(855), + [sym_attributed_statement] = STATE(855), + [sym_labeled_statement] = STATE(855), + [sym_expression_statement] = STATE(855), + [sym_if_statement] = STATE(855), + [sym_switch_statement] = STATE(855), + [sym_case_statement] = STATE(855), + [sym_while_statement] = STATE(855), + [sym_do_statement] = STATE(855), + [sym_for_statement] = STATE(855), + [sym_return_statement] = STATE(855), + [sym_break_statement] = STATE(855), + [sym_continue_statement] = STATE(855), + [sym_goto_statement] = STATE(855), + [sym__expression] = STATE(4126), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(6964), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(855), + [sym_co_return_statement] = STATE(855), + [sym_co_yield_statement] = STATE(855), + [sym_throw_statement] = STATE(855), + [sym_try_statement] = STATE(855), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(189), + [sym_identifier] = ACTIONS(2099), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(911), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(917), + [anon_sym_LBRACK] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(921), + [anon_sym_switch] = ACTIONS(923), + [anon_sym_case] = ACTIONS(925), + [anon_sym_default] = ACTIONS(927), + [anon_sym_while] = ACTIONS(929), + [anon_sym_do] = ACTIONS(931), + [anon_sym_for] = ACTIONS(933), + [anon_sym_return] = ACTIONS(935), + [anon_sym_break] = ACTIONS(937), + [anon_sym_continue] = ACTIONS(939), + [anon_sym_goto] = ACTIONS(941), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(945), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(947), + [anon_sym_co_return] = ACTIONS(957), + [anon_sym_co_yield] = ACTIONS(959), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [303] = { - [sym_preproc_def] = STATE(301), - [sym_preproc_function_def] = STATE(301), - [sym_preproc_call] = STATE(301), - [sym_preproc_if_in_field_declaration_list] = STATE(301), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(301), - [sym_type_definition] = STATE(301), - [sym__declaration_modifiers] = STATE(3225), - [sym__declaration_specifiers] = STATE(4180), - [sym_attribute_specifier] = STATE(3225), - [sym_attribute_declaration] = STATE(3225), - [sym_ms_declspec_modifier] = STATE(3225), - [sym_ms_based_modifier] = STATE(6104), - [sym__declarator] = STATE(5113), - [sym_parenthesized_declarator] = STATE(4918), - [sym_attributed_declarator] = STATE(4918), - [sym_pointer_declarator] = STATE(4918), - [sym_function_declarator] = STATE(4799), - [sym_array_declarator] = STATE(4918), - [sym_storage_class_specifier] = STATE(3225), - [sym_type_qualifier] = STATE(3225), - [sym__type_specifier] = STATE(3337), - [sym_sized_type_specifier] = STATE(3601), - [sym_enum_specifier] = STATE(3601), - [sym_struct_specifier] = STATE(3601), - [sym_union_specifier] = STATE(3601), - [sym__field_declaration_list_item] = STATE(301), - [sym_field_declaration] = STATE(301), - [sym_placeholder_type_specifier] = STATE(3601), - [sym_decltype_auto] = STATE(3558), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3601), - [sym_virtual] = STATE(3225), - [sym_explicit_function_specifier] = STATE(1961), - [sym_dependent_type] = STATE(3601), - [sym_template_declaration] = STATE(301), - [sym_operator_cast] = STATE(5140), - [sym_inline_method_definition] = STATE(301), - [sym__constructor_specifiers] = STATE(1961), - [sym_operator_cast_definition] = STATE(301), - [sym_operator_cast_declaration] = STATE(301), - [sym_constructor_or_destructor_definition] = STATE(301), - [sym_constructor_or_destructor_declaration] = STATE(301), - [sym_friend_declaration] = STATE(301), - [sym_access_specifier] = STATE(6324), - [sym_reference_declarator] = STATE(4918), - [sym_structured_binding_declarator] = STATE(4918), - [sym_template_type] = STATE(3198), - [sym_template_function] = STATE(4918), - [sym_using_declaration] = STATE(301), - [sym_alias_declaration] = STATE(301), - [sym_static_assert_declaration] = STATE(301), - [sym_destructor_name] = STATE(4918), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4455), - [sym_qualified_identifier] = STATE(4918), - [sym_qualified_type_identifier] = STATE(3554), - [sym_qualified_operator_cast_identifier] = STATE(5140), - [sym_operator_name] = STATE(4918), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(301), - [aux_sym__declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_sized_type_specifier_repeat1] = STATE(3584), - [aux_sym_operator_cast_definition_repeat1] = STATE(1961), - [sym_identifier] = ACTIONS(1665), - [aux_sym_preproc_def_token1] = ACTIONS(2234), - [aux_sym_preproc_if_token1] = ACTIONS(2236), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2238), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2238), - [sym_preproc_directive] = ACTIONS(2240), - [anon_sym_LPAREN2] = ACTIONS(1681), - [anon_sym_TILDE] = ACTIONS(1683), - [anon_sym_STAR] = ACTIONS(1685), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1687), - [anon_sym_typedef] = ACTIONS(2242), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(1691), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1413), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_RBRACE] = ACTIONS(2319), - [anon_sym_LBRACK] = ACTIONS(1693), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(1695), - [anon_sym_unsigned] = ACTIONS(1695), - [anon_sym_long] = ACTIONS(1695), - [anon_sym_short] = ACTIONS(1695), - [sym_primitive_type] = ACTIONS(1697), - [anon_sym_enum] = ACTIONS(1699), - [anon_sym_class] = ACTIONS(1701), - [anon_sym_struct] = ACTIONS(1703), - [anon_sym_union] = ACTIONS(1705), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1707), - [anon_sym_decltype] = ACTIONS(1709), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_explicit] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(1711), - [anon_sym_template] = ACTIONS(2246), - [anon_sym_operator] = ACTIONS(119), - [anon_sym_friend] = ACTIONS(2248), - [anon_sym_public] = ACTIONS(1717), - [anon_sym_private] = ACTIONS(1717), - [anon_sym_protected] = ACTIONS(1717), - [anon_sym_using] = ACTIONS(2250), - [anon_sym_static_assert] = ACTIONS(2252), + [sym_attribute_declaration] = STATE(260), + [sym_compound_statement] = STATE(829), + [sym_attributed_statement] = STATE(829), + [sym_labeled_statement] = STATE(829), + [sym_expression_statement] = STATE(829), + [sym_if_statement] = STATE(829), + [sym_switch_statement] = STATE(829), + [sym_case_statement] = STATE(829), + [sym_while_statement] = STATE(829), + [sym_do_statement] = STATE(829), + [sym_for_statement] = STATE(829), + [sym_return_statement] = STATE(829), + [sym_break_statement] = STATE(829), + [sym_continue_statement] = STATE(829), + [sym_goto_statement] = STATE(829), + [sym__expression] = STATE(4234), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7265), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(829), + [sym_co_return_statement] = STATE(829), + [sym_co_yield_statement] = STATE(829), + [sym_throw_statement] = STATE(829), + [sym_try_statement] = STATE(829), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(260), + [sym_identifier] = ACTIONS(2101), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(1622), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACK] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(71), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_case] = ACTIONS(75), + [anon_sym_default] = ACTIONS(77), + [anon_sym_while] = ACTIONS(79), + [anon_sym_do] = ACTIONS(81), + [anon_sym_for] = ACTIONS(83), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(127), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(131), + [anon_sym_co_return] = ACTIONS(141), + [anon_sym_co_yield] = ACTIONS(143), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [304] = { - [sym_preproc_def] = STATE(301), - [sym_preproc_function_def] = STATE(301), - [sym_preproc_call] = STATE(301), - [sym_preproc_if_in_field_declaration_list] = STATE(301), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(301), - [sym_type_definition] = STATE(301), - [sym__declaration_modifiers] = STATE(3225), - [sym__declaration_specifiers] = STATE(4180), - [sym_attribute_specifier] = STATE(3225), - [sym_attribute_declaration] = STATE(3225), - [sym_ms_declspec_modifier] = STATE(3225), - [sym_ms_based_modifier] = STATE(6104), - [sym__declarator] = STATE(5113), - [sym_parenthesized_declarator] = STATE(4918), - [sym_attributed_declarator] = STATE(4918), - [sym_pointer_declarator] = STATE(4918), - [sym_function_declarator] = STATE(4799), - [sym_array_declarator] = STATE(4918), - [sym_storage_class_specifier] = STATE(3225), - [sym_type_qualifier] = STATE(3225), - [sym__type_specifier] = STATE(3337), - [sym_sized_type_specifier] = STATE(3601), - [sym_enum_specifier] = STATE(3601), - [sym_struct_specifier] = STATE(3601), - [sym_union_specifier] = STATE(3601), - [sym__field_declaration_list_item] = STATE(301), - [sym_field_declaration] = STATE(301), - [sym_placeholder_type_specifier] = STATE(3601), - [sym_decltype_auto] = STATE(3558), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3601), - [sym_virtual] = STATE(3225), - [sym_explicit_function_specifier] = STATE(1961), - [sym_dependent_type] = STATE(3601), - [sym_template_declaration] = STATE(301), - [sym_operator_cast] = STATE(5140), - [sym_inline_method_definition] = STATE(301), - [sym__constructor_specifiers] = STATE(1961), - [sym_operator_cast_definition] = STATE(301), - [sym_operator_cast_declaration] = STATE(301), - [sym_constructor_or_destructor_definition] = STATE(301), - [sym_constructor_or_destructor_declaration] = STATE(301), - [sym_friend_declaration] = STATE(301), - [sym_access_specifier] = STATE(6324), - [sym_reference_declarator] = STATE(4918), - [sym_structured_binding_declarator] = STATE(4918), - [sym_template_type] = STATE(3198), - [sym_template_function] = STATE(4918), - [sym_using_declaration] = STATE(301), - [sym_alias_declaration] = STATE(301), - [sym_static_assert_declaration] = STATE(301), - [sym_destructor_name] = STATE(4918), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4455), - [sym_qualified_identifier] = STATE(4918), - [sym_qualified_type_identifier] = STATE(3554), - [sym_qualified_operator_cast_identifier] = STATE(5140), - [sym_operator_name] = STATE(4918), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(301), - [aux_sym__declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_sized_type_specifier_repeat1] = STATE(3584), - [aux_sym_operator_cast_definition_repeat1] = STATE(1961), - [sym_identifier] = ACTIONS(1665), - [aux_sym_preproc_def_token1] = ACTIONS(2234), - [aux_sym_preproc_if_token1] = ACTIONS(2236), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2238), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2238), - [sym_preproc_directive] = ACTIONS(2240), - [anon_sym_LPAREN2] = ACTIONS(1681), - [anon_sym_TILDE] = ACTIONS(1683), - [anon_sym_STAR] = ACTIONS(1685), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1687), - [anon_sym_typedef] = ACTIONS(2242), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(1691), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1413), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_RBRACE] = ACTIONS(2321), - [anon_sym_LBRACK] = ACTIONS(1693), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(1695), - [anon_sym_unsigned] = ACTIONS(1695), - [anon_sym_long] = ACTIONS(1695), - [anon_sym_short] = ACTIONS(1695), - [sym_primitive_type] = ACTIONS(1697), - [anon_sym_enum] = ACTIONS(1699), - [anon_sym_class] = ACTIONS(1701), - [anon_sym_struct] = ACTIONS(1703), - [anon_sym_union] = ACTIONS(1705), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1707), - [anon_sym_decltype] = ACTIONS(1709), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_explicit] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(1711), - [anon_sym_template] = ACTIONS(2246), - [anon_sym_operator] = ACTIONS(119), - [anon_sym_friend] = ACTIONS(2248), - [anon_sym_public] = ACTIONS(1717), - [anon_sym_private] = ACTIONS(1717), - [anon_sym_protected] = ACTIONS(1717), - [anon_sym_using] = ACTIONS(2250), - [anon_sym_static_assert] = ACTIONS(2252), + [sym_attribute_declaration] = STATE(304), + [sym_compound_statement] = STATE(862), + [sym_attributed_statement] = STATE(862), + [sym_labeled_statement] = STATE(862), + [sym_expression_statement] = STATE(862), + [sym_if_statement] = STATE(862), + [sym_switch_statement] = STATE(862), + [sym_case_statement] = STATE(862), + [sym_while_statement] = STATE(862), + [sym_do_statement] = STATE(862), + [sym_for_statement] = STATE(862), + [sym_return_statement] = STATE(862), + [sym_break_statement] = STATE(862), + [sym_continue_statement] = STATE(862), + [sym_goto_statement] = STATE(862), + [sym__expression] = STATE(4182), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7590), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(862), + [sym_co_return_statement] = STATE(862), + [sym_co_yield_statement] = STATE(862), + [sym_throw_statement] = STATE(862), + [sym_try_statement] = STATE(862), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(304), + [sym_identifier] = ACTIONS(2483), + [anon_sym_LPAREN2] = ACTIONS(2126), + [anon_sym_BANG] = ACTIONS(2129), + [anon_sym_TILDE] = ACTIONS(2129), + [anon_sym_DASH] = ACTIONS(2132), + [anon_sym_PLUS] = ACTIONS(2132), + [anon_sym_STAR] = ACTIONS(2135), + [anon_sym_AMP] = ACTIONS(2135), + [anon_sym_SEMI] = ACTIONS(2471), + [anon_sym_COLON_COLON] = ACTIONS(2141), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2144), + [anon_sym_LBRACE] = ACTIONS(2486), + [anon_sym_LBRACK] = ACTIONS(2150), + [sym_primitive_type] = ACTIONS(2153), + [anon_sym_if] = ACTIONS(2489), + [anon_sym_switch] = ACTIONS(2492), + [anon_sym_case] = ACTIONS(2495), + [anon_sym_default] = ACTIONS(2498), + [anon_sym_while] = ACTIONS(2501), + [anon_sym_do] = ACTIONS(2504), + [anon_sym_for] = ACTIONS(2507), + [anon_sym_return] = ACTIONS(2510), + [anon_sym_break] = ACTIONS(2513), + [anon_sym_continue] = ACTIONS(2516), + [anon_sym_goto] = ACTIONS(2519), + [anon_sym_not] = ACTIONS(2132), + [anon_sym_compl] = ACTIONS(2132), + [anon_sym_DASH_DASH] = ACTIONS(2189), + [anon_sym_PLUS_PLUS] = ACTIONS(2189), + [anon_sym_sizeof] = ACTIONS(2192), + [anon_sym_offsetof] = ACTIONS(2195), + [anon_sym__Generic] = ACTIONS(2198), + [anon_sym_asm] = ACTIONS(2201), + [anon_sym___asm__] = ACTIONS(2201), + [sym_number_literal] = ACTIONS(2204), + [anon_sym_L_SQUOTE] = ACTIONS(2207), + [anon_sym_u_SQUOTE] = ACTIONS(2207), + [anon_sym_U_SQUOTE] = ACTIONS(2207), + [anon_sym_u8_SQUOTE] = ACTIONS(2207), + [anon_sym_SQUOTE] = ACTIONS(2207), + [anon_sym_L_DQUOTE] = ACTIONS(2210), + [anon_sym_u_DQUOTE] = ACTIONS(2210), + [anon_sym_U_DQUOTE] = ACTIONS(2210), + [anon_sym_u8_DQUOTE] = ACTIONS(2210), + [anon_sym_DQUOTE] = ACTIONS(2210), + [sym_true] = ACTIONS(2213), + [sym_false] = ACTIONS(2213), + [anon_sym_NULL] = ACTIONS(2216), + [anon_sym_nullptr] = ACTIONS(2216), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2219), + [anon_sym_template] = ACTIONS(2222), + [anon_sym_try] = ACTIONS(2522), + [anon_sym_delete] = ACTIONS(2228), + [anon_sym_throw] = ACTIONS(2525), + [anon_sym_co_return] = ACTIONS(2528), + [anon_sym_co_yield] = ACTIONS(2531), + [anon_sym_R_DQUOTE] = ACTIONS(2240), + [anon_sym_LR_DQUOTE] = ACTIONS(2240), + [anon_sym_uR_DQUOTE] = ACTIONS(2240), + [anon_sym_UR_DQUOTE] = ACTIONS(2240), + [anon_sym_u8R_DQUOTE] = ACTIONS(2240), + [anon_sym_co_await] = ACTIONS(2243), + [anon_sym_new] = ACTIONS(2246), + [anon_sym_requires] = ACTIONS(2249), + [sym_this] = ACTIONS(2213), }, [305] = { - [sym_preproc_def] = STATE(297), - [sym_preproc_function_def] = STATE(297), - [sym_preproc_call] = STATE(297), - [sym_preproc_if_in_field_declaration_list] = STATE(297), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(297), - [sym_type_definition] = STATE(297), - [sym__declaration_modifiers] = STATE(3225), - [sym__declaration_specifiers] = STATE(4180), - [sym_attribute_specifier] = STATE(3225), - [sym_attribute_declaration] = STATE(3225), - [sym_ms_declspec_modifier] = STATE(3225), - [sym_ms_based_modifier] = STATE(6104), - [sym__declarator] = STATE(5113), - [sym_parenthesized_declarator] = STATE(4918), - [sym_attributed_declarator] = STATE(4918), - [sym_pointer_declarator] = STATE(4918), - [sym_function_declarator] = STATE(4799), - [sym_array_declarator] = STATE(4918), - [sym_storage_class_specifier] = STATE(3225), - [sym_type_qualifier] = STATE(3225), - [sym__type_specifier] = STATE(3337), - [sym_sized_type_specifier] = STATE(3601), - [sym_enum_specifier] = STATE(3601), - [sym_struct_specifier] = STATE(3601), - [sym_union_specifier] = STATE(3601), - [sym__field_declaration_list_item] = STATE(297), - [sym_field_declaration] = STATE(297), - [sym_placeholder_type_specifier] = STATE(3601), - [sym_decltype_auto] = STATE(3558), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3601), - [sym_virtual] = STATE(3225), - [sym_explicit_function_specifier] = STATE(1961), - [sym_dependent_type] = STATE(3601), - [sym_template_declaration] = STATE(297), - [sym_operator_cast] = STATE(5140), - [sym_inline_method_definition] = STATE(297), - [sym__constructor_specifiers] = STATE(1961), - [sym_operator_cast_definition] = STATE(297), - [sym_operator_cast_declaration] = STATE(297), - [sym_constructor_or_destructor_definition] = STATE(297), - [sym_constructor_or_destructor_declaration] = STATE(297), - [sym_friend_declaration] = STATE(297), - [sym_access_specifier] = STATE(6324), - [sym_reference_declarator] = STATE(4918), - [sym_structured_binding_declarator] = STATE(4918), - [sym_template_type] = STATE(3198), - [sym_template_function] = STATE(4918), - [sym_using_declaration] = STATE(297), - [sym_alias_declaration] = STATE(297), - [sym_static_assert_declaration] = STATE(297), - [sym_destructor_name] = STATE(4918), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4455), - [sym_qualified_identifier] = STATE(4918), - [sym_qualified_type_identifier] = STATE(3554), - [sym_qualified_operator_cast_identifier] = STATE(5140), - [sym_operator_name] = STATE(4918), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(297), - [aux_sym__declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_sized_type_specifier_repeat1] = STATE(3584), - [aux_sym_operator_cast_definition_repeat1] = STATE(1961), - [sym_identifier] = ACTIONS(1665), - [aux_sym_preproc_def_token1] = ACTIONS(2234), - [aux_sym_preproc_if_token1] = ACTIONS(2236), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2238), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2238), - [sym_preproc_directive] = ACTIONS(2240), - [anon_sym_LPAREN2] = ACTIONS(1681), - [anon_sym_TILDE] = ACTIONS(1683), - [anon_sym_STAR] = ACTIONS(1685), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1687), - [anon_sym_typedef] = ACTIONS(2242), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(1691), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1413), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_RBRACE] = ACTIONS(2323), - [anon_sym_LBRACK] = ACTIONS(1693), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(1695), - [anon_sym_unsigned] = ACTIONS(1695), - [anon_sym_long] = ACTIONS(1695), - [anon_sym_short] = ACTIONS(1695), - [sym_primitive_type] = ACTIONS(1697), - [anon_sym_enum] = ACTIONS(1699), - [anon_sym_class] = ACTIONS(1701), - [anon_sym_struct] = ACTIONS(1703), - [anon_sym_union] = ACTIONS(1705), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1707), - [anon_sym_decltype] = ACTIONS(1709), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_explicit] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(1711), - [anon_sym_template] = ACTIONS(2246), - [anon_sym_operator] = ACTIONS(119), - [anon_sym_friend] = ACTIONS(2248), - [anon_sym_public] = ACTIONS(1717), - [anon_sym_private] = ACTIONS(1717), - [anon_sym_protected] = ACTIONS(1717), - [anon_sym_using] = ACTIONS(2250), - [anon_sym_static_assert] = ACTIONS(2252), + [sym_attribute_declaration] = STATE(260), + [sym_compound_statement] = STATE(1191), + [sym_attributed_statement] = STATE(1191), + [sym_labeled_statement] = STATE(1191), + [sym_expression_statement] = STATE(1191), + [sym_if_statement] = STATE(1191), + [sym_switch_statement] = STATE(1191), + [sym_case_statement] = STATE(1191), + [sym_while_statement] = STATE(1191), + [sym_do_statement] = STATE(1191), + [sym_for_statement] = STATE(1191), + [sym_return_statement] = STATE(1191), + [sym_break_statement] = STATE(1191), + [sym_continue_statement] = STATE(1191), + [sym_goto_statement] = STATE(1191), + [sym__expression] = STATE(4234), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7265), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(1191), + [sym_co_return_statement] = STATE(1191), + [sym_co_yield_statement] = STATE(1191), + [sym_throw_statement] = STATE(1191), + [sym_try_statement] = STATE(1191), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(260), + [sym_identifier] = ACTIONS(2101), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(1622), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACK] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(71), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_case] = ACTIONS(75), + [anon_sym_default] = ACTIONS(77), + [anon_sym_while] = ACTIONS(79), + [anon_sym_do] = ACTIONS(81), + [anon_sym_for] = ACTIONS(83), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(127), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(131), + [anon_sym_co_return] = ACTIONS(141), + [anon_sym_co_yield] = ACTIONS(143), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [306] = { - [sym_preproc_def] = STATE(301), - [sym_preproc_function_def] = STATE(301), - [sym_preproc_call] = STATE(301), - [sym_preproc_if_in_field_declaration_list] = STATE(301), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(301), - [sym_type_definition] = STATE(301), - [sym__declaration_modifiers] = STATE(3225), - [sym__declaration_specifiers] = STATE(4180), - [sym_attribute_specifier] = STATE(3225), - [sym_attribute_declaration] = STATE(3225), - [sym_ms_declspec_modifier] = STATE(3225), - [sym_ms_based_modifier] = STATE(6104), - [sym__declarator] = STATE(5113), - [sym_parenthesized_declarator] = STATE(4918), - [sym_attributed_declarator] = STATE(4918), - [sym_pointer_declarator] = STATE(4918), - [sym_function_declarator] = STATE(4799), - [sym_array_declarator] = STATE(4918), - [sym_storage_class_specifier] = STATE(3225), - [sym_type_qualifier] = STATE(3225), - [sym__type_specifier] = STATE(3337), - [sym_sized_type_specifier] = STATE(3601), - [sym_enum_specifier] = STATE(3601), - [sym_struct_specifier] = STATE(3601), - [sym_union_specifier] = STATE(3601), - [sym__field_declaration_list_item] = STATE(301), - [sym_field_declaration] = STATE(301), - [sym_placeholder_type_specifier] = STATE(3601), - [sym_decltype_auto] = STATE(3558), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3601), - [sym_virtual] = STATE(3225), - [sym_explicit_function_specifier] = STATE(1961), - [sym_dependent_type] = STATE(3601), - [sym_template_declaration] = STATE(301), - [sym_operator_cast] = STATE(5140), - [sym_inline_method_definition] = STATE(301), - [sym__constructor_specifiers] = STATE(1961), - [sym_operator_cast_definition] = STATE(301), - [sym_operator_cast_declaration] = STATE(301), - [sym_constructor_or_destructor_definition] = STATE(301), - [sym_constructor_or_destructor_declaration] = STATE(301), - [sym_friend_declaration] = STATE(301), - [sym_access_specifier] = STATE(6324), - [sym_reference_declarator] = STATE(4918), - [sym_structured_binding_declarator] = STATE(4918), - [sym_template_type] = STATE(3198), - [sym_template_function] = STATE(4918), - [sym_using_declaration] = STATE(301), - [sym_alias_declaration] = STATE(301), - [sym_static_assert_declaration] = STATE(301), - [sym_destructor_name] = STATE(4918), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4455), - [sym_qualified_identifier] = STATE(4918), - [sym_qualified_type_identifier] = STATE(3554), - [sym_qualified_operator_cast_identifier] = STATE(5140), - [sym_operator_name] = STATE(4918), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(301), - [aux_sym__declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_sized_type_specifier_repeat1] = STATE(3584), - [aux_sym_operator_cast_definition_repeat1] = STATE(1961), - [sym_identifier] = ACTIONS(1665), - [aux_sym_preproc_def_token1] = ACTIONS(2234), - [aux_sym_preproc_if_token1] = ACTIONS(2236), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2238), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2238), - [sym_preproc_directive] = ACTIONS(2240), - [anon_sym_LPAREN2] = ACTIONS(1681), - [anon_sym_TILDE] = ACTIONS(1683), - [anon_sym_STAR] = ACTIONS(1685), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1687), - [anon_sym_typedef] = ACTIONS(2242), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(1691), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1413), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_RBRACE] = ACTIONS(2325), - [anon_sym_LBRACK] = ACTIONS(1693), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(1695), - [anon_sym_unsigned] = ACTIONS(1695), - [anon_sym_long] = ACTIONS(1695), - [anon_sym_short] = ACTIONS(1695), - [sym_primitive_type] = ACTIONS(1697), - [anon_sym_enum] = ACTIONS(1699), - [anon_sym_class] = ACTIONS(1701), - [anon_sym_struct] = ACTIONS(1703), - [anon_sym_union] = ACTIONS(1705), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1707), - [anon_sym_decltype] = ACTIONS(1709), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_explicit] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(1711), - [anon_sym_template] = ACTIONS(2246), - [anon_sym_operator] = ACTIONS(119), - [anon_sym_friend] = ACTIONS(2248), - [anon_sym_public] = ACTIONS(1717), - [anon_sym_private] = ACTIONS(1717), - [anon_sym_protected] = ACTIONS(1717), - [anon_sym_using] = ACTIONS(2250), - [anon_sym_static_assert] = ACTIONS(2252), + [sym_attribute_declaration] = STATE(189), + [sym_compound_statement] = STATE(921), + [sym_attributed_statement] = STATE(921), + [sym_labeled_statement] = STATE(921), + [sym_expression_statement] = STATE(921), + [sym_if_statement] = STATE(921), + [sym_switch_statement] = STATE(921), + [sym_case_statement] = STATE(921), + [sym_while_statement] = STATE(921), + [sym_do_statement] = STATE(921), + [sym_for_statement] = STATE(921), + [sym_return_statement] = STATE(921), + [sym_break_statement] = STATE(921), + [sym_continue_statement] = STATE(921), + [sym_goto_statement] = STATE(921), + [sym__expression] = STATE(4126), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(6964), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(921), + [sym_co_return_statement] = STATE(921), + [sym_co_yield_statement] = STATE(921), + [sym_throw_statement] = STATE(921), + [sym_try_statement] = STATE(921), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(189), + [sym_identifier] = ACTIONS(2099), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(911), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(917), + [anon_sym_LBRACK] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(921), + [anon_sym_switch] = ACTIONS(923), + [anon_sym_case] = ACTIONS(925), + [anon_sym_default] = ACTIONS(927), + [anon_sym_while] = ACTIONS(929), + [anon_sym_do] = ACTIONS(931), + [anon_sym_for] = ACTIONS(933), + [anon_sym_return] = ACTIONS(935), + [anon_sym_break] = ACTIONS(937), + [anon_sym_continue] = ACTIONS(939), + [anon_sym_goto] = ACTIONS(941), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(945), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(947), + [anon_sym_co_return] = ACTIONS(957), + [anon_sym_co_yield] = ACTIONS(959), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [307] = { - [sym_preproc_def] = STATE(301), - [sym_preproc_function_def] = STATE(301), - [sym_preproc_call] = STATE(301), - [sym_preproc_if_in_field_declaration_list] = STATE(301), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(301), - [sym_type_definition] = STATE(301), - [sym__declaration_modifiers] = STATE(3225), - [sym__declaration_specifiers] = STATE(4180), - [sym_attribute_specifier] = STATE(3225), - [sym_attribute_declaration] = STATE(3225), - [sym_ms_declspec_modifier] = STATE(3225), - [sym_ms_based_modifier] = STATE(6104), - [sym__declarator] = STATE(5113), - [sym_parenthesized_declarator] = STATE(4918), - [sym_attributed_declarator] = STATE(4918), - [sym_pointer_declarator] = STATE(4918), - [sym_function_declarator] = STATE(4799), - [sym_array_declarator] = STATE(4918), - [sym_storage_class_specifier] = STATE(3225), - [sym_type_qualifier] = STATE(3225), - [sym__type_specifier] = STATE(3337), - [sym_sized_type_specifier] = STATE(3601), - [sym_enum_specifier] = STATE(3601), - [sym_struct_specifier] = STATE(3601), - [sym_union_specifier] = STATE(3601), - [sym__field_declaration_list_item] = STATE(301), - [sym_field_declaration] = STATE(301), - [sym_placeholder_type_specifier] = STATE(3601), - [sym_decltype_auto] = STATE(3558), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3601), - [sym_virtual] = STATE(3225), - [sym_explicit_function_specifier] = STATE(1961), - [sym_dependent_type] = STATE(3601), - [sym_template_declaration] = STATE(301), - [sym_operator_cast] = STATE(5140), - [sym_inline_method_definition] = STATE(301), - [sym__constructor_specifiers] = STATE(1961), - [sym_operator_cast_definition] = STATE(301), - [sym_operator_cast_declaration] = STATE(301), - [sym_constructor_or_destructor_definition] = STATE(301), - [sym_constructor_or_destructor_declaration] = STATE(301), - [sym_friend_declaration] = STATE(301), - [sym_access_specifier] = STATE(6324), - [sym_reference_declarator] = STATE(4918), - [sym_structured_binding_declarator] = STATE(4918), - [sym_template_type] = STATE(3198), - [sym_template_function] = STATE(4918), - [sym_using_declaration] = STATE(301), - [sym_alias_declaration] = STATE(301), - [sym_static_assert_declaration] = STATE(301), - [sym_destructor_name] = STATE(4918), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4455), - [sym_qualified_identifier] = STATE(4918), - [sym_qualified_type_identifier] = STATE(3554), - [sym_qualified_operator_cast_identifier] = STATE(5140), - [sym_operator_name] = STATE(4918), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(301), - [aux_sym__declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_sized_type_specifier_repeat1] = STATE(3584), - [aux_sym_operator_cast_definition_repeat1] = STATE(1961), - [sym_identifier] = ACTIONS(1665), - [aux_sym_preproc_def_token1] = ACTIONS(2234), - [aux_sym_preproc_if_token1] = ACTIONS(2236), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2238), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2238), - [sym_preproc_directive] = ACTIONS(2240), - [anon_sym_LPAREN2] = ACTIONS(1681), - [anon_sym_TILDE] = ACTIONS(1683), - [anon_sym_STAR] = ACTIONS(1685), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1687), - [anon_sym_typedef] = ACTIONS(2242), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(1691), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1413), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_RBRACE] = ACTIONS(2327), - [anon_sym_LBRACK] = ACTIONS(1693), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(1695), - [anon_sym_unsigned] = ACTIONS(1695), - [anon_sym_long] = ACTIONS(1695), - [anon_sym_short] = ACTIONS(1695), - [sym_primitive_type] = ACTIONS(1697), - [anon_sym_enum] = ACTIONS(1699), - [anon_sym_class] = ACTIONS(1701), - [anon_sym_struct] = ACTIONS(1703), - [anon_sym_union] = ACTIONS(1705), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1707), - [anon_sym_decltype] = ACTIONS(1709), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_explicit] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(1711), - [anon_sym_template] = ACTIONS(2246), - [anon_sym_operator] = ACTIONS(119), - [anon_sym_friend] = ACTIONS(2248), - [anon_sym_public] = ACTIONS(1717), - [anon_sym_private] = ACTIONS(1717), - [anon_sym_protected] = ACTIONS(1717), - [anon_sym_using] = ACTIONS(2250), - [anon_sym_static_assert] = ACTIONS(2252), + [sym_attribute_declaration] = STATE(189), + [sym_compound_statement] = STATE(1128), + [sym_attributed_statement] = STATE(1128), + [sym_labeled_statement] = STATE(1128), + [sym_expression_statement] = STATE(1128), + [sym_if_statement] = STATE(1128), + [sym_switch_statement] = STATE(1128), + [sym_case_statement] = STATE(1128), + [sym_while_statement] = STATE(1128), + [sym_do_statement] = STATE(1128), + [sym_for_statement] = STATE(1128), + [sym_return_statement] = STATE(1128), + [sym_break_statement] = STATE(1128), + [sym_continue_statement] = STATE(1128), + [sym_goto_statement] = STATE(1128), + [sym__expression] = STATE(4126), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(6964), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(1128), + [sym_co_return_statement] = STATE(1128), + [sym_co_yield_statement] = STATE(1128), + [sym_throw_statement] = STATE(1128), + [sym_try_statement] = STATE(1128), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(189), + [sym_identifier] = ACTIONS(2099), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(911), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(917), + [anon_sym_LBRACK] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(921), + [anon_sym_switch] = ACTIONS(923), + [anon_sym_case] = ACTIONS(925), + [anon_sym_default] = ACTIONS(927), + [anon_sym_while] = ACTIONS(929), + [anon_sym_do] = ACTIONS(931), + [anon_sym_for] = ACTIONS(933), + [anon_sym_return] = ACTIONS(935), + [anon_sym_break] = ACTIONS(937), + [anon_sym_continue] = ACTIONS(939), + [anon_sym_goto] = ACTIONS(941), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(945), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(947), + [anon_sym_co_return] = ACTIONS(957), + [anon_sym_co_yield] = ACTIONS(959), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [308] = { - [sym_preproc_def] = STATE(306), - [sym_preproc_function_def] = STATE(306), - [sym_preproc_call] = STATE(306), - [sym_preproc_if_in_field_declaration_list] = STATE(306), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(306), - [sym_type_definition] = STATE(306), - [sym__declaration_modifiers] = STATE(3225), - [sym__declaration_specifiers] = STATE(4180), - [sym_attribute_specifier] = STATE(3225), - [sym_attribute_declaration] = STATE(3225), - [sym_ms_declspec_modifier] = STATE(3225), - [sym_ms_based_modifier] = STATE(6104), - [sym__declarator] = STATE(5113), - [sym_parenthesized_declarator] = STATE(4918), - [sym_attributed_declarator] = STATE(4918), - [sym_pointer_declarator] = STATE(4918), - [sym_function_declarator] = STATE(4799), - [sym_array_declarator] = STATE(4918), - [sym_storage_class_specifier] = STATE(3225), - [sym_type_qualifier] = STATE(3225), - [sym__type_specifier] = STATE(3337), - [sym_sized_type_specifier] = STATE(3601), - [sym_enum_specifier] = STATE(3601), - [sym_struct_specifier] = STATE(3601), - [sym_union_specifier] = STATE(3601), - [sym__field_declaration_list_item] = STATE(306), - [sym_field_declaration] = STATE(306), - [sym_placeholder_type_specifier] = STATE(3601), - [sym_decltype_auto] = STATE(3558), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3601), - [sym_virtual] = STATE(3225), - [sym_explicit_function_specifier] = STATE(1961), - [sym_dependent_type] = STATE(3601), - [sym_template_declaration] = STATE(306), - [sym_operator_cast] = STATE(5140), - [sym_inline_method_definition] = STATE(306), - [sym__constructor_specifiers] = STATE(1961), - [sym_operator_cast_definition] = STATE(306), - [sym_operator_cast_declaration] = STATE(306), - [sym_constructor_or_destructor_definition] = STATE(306), - [sym_constructor_or_destructor_declaration] = STATE(306), - [sym_friend_declaration] = STATE(306), - [sym_access_specifier] = STATE(6324), - [sym_reference_declarator] = STATE(4918), - [sym_structured_binding_declarator] = STATE(4918), - [sym_template_type] = STATE(3198), - [sym_template_function] = STATE(4918), - [sym_using_declaration] = STATE(306), - [sym_alias_declaration] = STATE(306), - [sym_static_assert_declaration] = STATE(306), - [sym_destructor_name] = STATE(4918), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4455), - [sym_qualified_identifier] = STATE(4918), - [sym_qualified_type_identifier] = STATE(3554), - [sym_qualified_operator_cast_identifier] = STATE(5140), - [sym_operator_name] = STATE(4918), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(306), - [aux_sym__declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_sized_type_specifier_repeat1] = STATE(3584), - [aux_sym_operator_cast_definition_repeat1] = STATE(1961), - [sym_identifier] = ACTIONS(1665), - [aux_sym_preproc_def_token1] = ACTIONS(2234), - [aux_sym_preproc_if_token1] = ACTIONS(2236), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2238), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2238), - [sym_preproc_directive] = ACTIONS(2240), - [anon_sym_LPAREN2] = ACTIONS(1681), - [anon_sym_TILDE] = ACTIONS(1683), - [anon_sym_STAR] = ACTIONS(1685), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1687), - [anon_sym_typedef] = ACTIONS(2242), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(1691), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1413), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_RBRACE] = ACTIONS(2329), - [anon_sym_LBRACK] = ACTIONS(1693), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(1695), - [anon_sym_unsigned] = ACTIONS(1695), - [anon_sym_long] = ACTIONS(1695), - [anon_sym_short] = ACTIONS(1695), - [sym_primitive_type] = ACTIONS(1697), - [anon_sym_enum] = ACTIONS(1699), - [anon_sym_class] = ACTIONS(1701), - [anon_sym_struct] = ACTIONS(1703), - [anon_sym_union] = ACTIONS(1705), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1707), - [anon_sym_decltype] = ACTIONS(1709), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_explicit] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(1711), - [anon_sym_template] = ACTIONS(2246), - [anon_sym_operator] = ACTIONS(119), - [anon_sym_friend] = ACTIONS(2248), - [anon_sym_public] = ACTIONS(1717), - [anon_sym_private] = ACTIONS(1717), - [anon_sym_protected] = ACTIONS(1717), - [anon_sym_using] = ACTIONS(2250), - [anon_sym_static_assert] = ACTIONS(2252), + [sym_attribute_declaration] = STATE(189), + [sym_compound_statement] = STATE(999), + [sym_attributed_statement] = STATE(999), + [sym_labeled_statement] = STATE(999), + [sym_expression_statement] = STATE(999), + [sym_if_statement] = STATE(999), + [sym_switch_statement] = STATE(999), + [sym_case_statement] = STATE(999), + [sym_while_statement] = STATE(999), + [sym_do_statement] = STATE(999), + [sym_for_statement] = STATE(999), + [sym_return_statement] = STATE(999), + [sym_break_statement] = STATE(999), + [sym_continue_statement] = STATE(999), + [sym_goto_statement] = STATE(999), + [sym__expression] = STATE(4126), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(6964), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(999), + [sym_co_return_statement] = STATE(999), + [sym_co_yield_statement] = STATE(999), + [sym_throw_statement] = STATE(999), + [sym_try_statement] = STATE(999), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(189), + [sym_identifier] = ACTIONS(2099), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(911), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(917), + [anon_sym_LBRACK] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(921), + [anon_sym_switch] = ACTIONS(923), + [anon_sym_case] = ACTIONS(925), + [anon_sym_default] = ACTIONS(927), + [anon_sym_while] = ACTIONS(929), + [anon_sym_do] = ACTIONS(931), + [anon_sym_for] = ACTIONS(933), + [anon_sym_return] = ACTIONS(935), + [anon_sym_break] = ACTIONS(937), + [anon_sym_continue] = ACTIONS(939), + [anon_sym_goto] = ACTIONS(941), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(945), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(947), + [anon_sym_co_return] = ACTIONS(957), + [anon_sym_co_yield] = ACTIONS(959), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [309] = { - [sym_preproc_def] = STATE(299), - [sym_preproc_function_def] = STATE(299), - [sym_preproc_call] = STATE(299), - [sym_preproc_if_in_field_declaration_list] = STATE(299), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(299), - [sym_type_definition] = STATE(299), - [sym__declaration_modifiers] = STATE(3225), - [sym__declaration_specifiers] = STATE(4180), - [sym_attribute_specifier] = STATE(3225), - [sym_attribute_declaration] = STATE(3225), - [sym_ms_declspec_modifier] = STATE(3225), - [sym_ms_based_modifier] = STATE(6104), - [sym__declarator] = STATE(5113), - [sym_parenthesized_declarator] = STATE(4918), - [sym_attributed_declarator] = STATE(4918), - [sym_pointer_declarator] = STATE(4918), - [sym_function_declarator] = STATE(4799), - [sym_array_declarator] = STATE(4918), - [sym_storage_class_specifier] = STATE(3225), - [sym_type_qualifier] = STATE(3225), - [sym__type_specifier] = STATE(3337), - [sym_sized_type_specifier] = STATE(3601), - [sym_enum_specifier] = STATE(3601), - [sym_struct_specifier] = STATE(3601), - [sym_union_specifier] = STATE(3601), - [sym__field_declaration_list_item] = STATE(299), - [sym_field_declaration] = STATE(299), - [sym_placeholder_type_specifier] = STATE(3601), - [sym_decltype_auto] = STATE(3558), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3601), - [sym_virtual] = STATE(3225), - [sym_explicit_function_specifier] = STATE(1961), - [sym_dependent_type] = STATE(3601), - [sym_template_declaration] = STATE(299), - [sym_operator_cast] = STATE(5140), - [sym_inline_method_definition] = STATE(299), - [sym__constructor_specifiers] = STATE(1961), - [sym_operator_cast_definition] = STATE(299), - [sym_operator_cast_declaration] = STATE(299), - [sym_constructor_or_destructor_definition] = STATE(299), - [sym_constructor_or_destructor_declaration] = STATE(299), - [sym_friend_declaration] = STATE(299), - [sym_access_specifier] = STATE(6324), - [sym_reference_declarator] = STATE(4918), - [sym_structured_binding_declarator] = STATE(4918), - [sym_template_type] = STATE(3198), - [sym_template_function] = STATE(4918), - [sym_using_declaration] = STATE(299), - [sym_alias_declaration] = STATE(299), - [sym_static_assert_declaration] = STATE(299), - [sym_destructor_name] = STATE(4918), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4455), - [sym_qualified_identifier] = STATE(4918), - [sym_qualified_type_identifier] = STATE(3554), - [sym_qualified_operator_cast_identifier] = STATE(5140), - [sym_operator_name] = STATE(4918), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(299), - [aux_sym__declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_sized_type_specifier_repeat1] = STATE(3584), - [aux_sym_operator_cast_definition_repeat1] = STATE(1961), - [sym_identifier] = ACTIONS(1665), - [aux_sym_preproc_def_token1] = ACTIONS(2234), - [aux_sym_preproc_if_token1] = ACTIONS(2236), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2238), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2238), - [sym_preproc_directive] = ACTIONS(2240), - [anon_sym_LPAREN2] = ACTIONS(1681), - [anon_sym_TILDE] = ACTIONS(1683), - [anon_sym_STAR] = ACTIONS(1685), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1687), - [anon_sym_typedef] = ACTIONS(2242), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(1691), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1413), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_RBRACE] = ACTIONS(2331), - [anon_sym_LBRACK] = ACTIONS(1693), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(1695), - [anon_sym_unsigned] = ACTIONS(1695), - [anon_sym_long] = ACTIONS(1695), - [anon_sym_short] = ACTIONS(1695), - [sym_primitive_type] = ACTIONS(1697), - [anon_sym_enum] = ACTIONS(1699), - [anon_sym_class] = ACTIONS(1701), - [anon_sym_struct] = ACTIONS(1703), - [anon_sym_union] = ACTIONS(1705), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1707), - [anon_sym_decltype] = ACTIONS(1709), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_explicit] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(1711), - [anon_sym_template] = ACTIONS(2246), - [anon_sym_operator] = ACTIONS(119), - [anon_sym_friend] = ACTIONS(2248), - [anon_sym_public] = ACTIONS(1717), - [anon_sym_private] = ACTIONS(1717), - [anon_sym_protected] = ACTIONS(1717), - [anon_sym_using] = ACTIONS(2250), - [anon_sym_static_assert] = ACTIONS(2252), + [sym_attribute_declaration] = STATE(304), + [sym_compound_statement] = STATE(862), + [sym_attributed_statement] = STATE(862), + [sym_labeled_statement] = STATE(862), + [sym_expression_statement] = STATE(862), + [sym_if_statement] = STATE(862), + [sym_switch_statement] = STATE(862), + [sym_case_statement] = STATE(862), + [sym_while_statement] = STATE(862), + [sym_do_statement] = STATE(862), + [sym_for_statement] = STATE(862), + [sym_return_statement] = STATE(862), + [sym_break_statement] = STATE(862), + [sym_continue_statement] = STATE(862), + [sym_goto_statement] = STATE(862), + [sym__expression] = STATE(4182), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7590), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(862), + [sym_co_return_statement] = STATE(862), + [sym_co_yield_statement] = STATE(862), + [sym_throw_statement] = STATE(862), + [sym_try_statement] = STATE(862), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(304), + [sym_identifier] = ACTIONS(2103), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(181), + [anon_sym_switch] = ACTIONS(183), + [anon_sym_case] = ACTIONS(185), + [anon_sym_default] = ACTIONS(187), + [anon_sym_while] = ACTIONS(189), + [anon_sym_do] = ACTIONS(191), + [anon_sym_for] = ACTIONS(193), + [anon_sym_return] = ACTIONS(195), + [anon_sym_break] = ACTIONS(197), + [anon_sym_continue] = ACTIONS(199), + [anon_sym_goto] = ACTIONS(201), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(209), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(211), + [anon_sym_co_return] = ACTIONS(221), + [anon_sym_co_yield] = ACTIONS(223), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [310] = { - [sym_preproc_def] = STATE(304), - [sym_preproc_function_def] = STATE(304), - [sym_preproc_call] = STATE(304), - [sym_preproc_if_in_field_declaration_list] = STATE(304), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(304), - [sym_type_definition] = STATE(304), - [sym__declaration_modifiers] = STATE(3225), - [sym__declaration_specifiers] = STATE(4180), - [sym_attribute_specifier] = STATE(3225), - [sym_attribute_declaration] = STATE(3225), - [sym_ms_declspec_modifier] = STATE(3225), - [sym_ms_based_modifier] = STATE(6104), - [sym__declarator] = STATE(5113), - [sym_parenthesized_declarator] = STATE(4918), - [sym_attributed_declarator] = STATE(4918), - [sym_pointer_declarator] = STATE(4918), - [sym_function_declarator] = STATE(4799), - [sym_array_declarator] = STATE(4918), - [sym_storage_class_specifier] = STATE(3225), - [sym_type_qualifier] = STATE(3225), - [sym__type_specifier] = STATE(3337), - [sym_sized_type_specifier] = STATE(3601), - [sym_enum_specifier] = STATE(3601), - [sym_struct_specifier] = STATE(3601), - [sym_union_specifier] = STATE(3601), - [sym__field_declaration_list_item] = STATE(304), - [sym_field_declaration] = STATE(304), - [sym_placeholder_type_specifier] = STATE(3601), - [sym_decltype_auto] = STATE(3558), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3601), - [sym_virtual] = STATE(3225), - [sym_explicit_function_specifier] = STATE(1961), - [sym_dependent_type] = STATE(3601), - [sym_template_declaration] = STATE(304), - [sym_operator_cast] = STATE(5140), - [sym_inline_method_definition] = STATE(304), - [sym__constructor_specifiers] = STATE(1961), - [sym_operator_cast_definition] = STATE(304), - [sym_operator_cast_declaration] = STATE(304), - [sym_constructor_or_destructor_definition] = STATE(304), - [sym_constructor_or_destructor_declaration] = STATE(304), - [sym_friend_declaration] = STATE(304), - [sym_access_specifier] = STATE(6324), - [sym_reference_declarator] = STATE(4918), - [sym_structured_binding_declarator] = STATE(4918), - [sym_template_type] = STATE(3198), - [sym_template_function] = STATE(4918), - [sym_using_declaration] = STATE(304), - [sym_alias_declaration] = STATE(304), - [sym_static_assert_declaration] = STATE(304), - [sym_destructor_name] = STATE(4918), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4455), - [sym_qualified_identifier] = STATE(4918), - [sym_qualified_type_identifier] = STATE(3554), - [sym_qualified_operator_cast_identifier] = STATE(5140), - [sym_operator_name] = STATE(4918), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(304), - [aux_sym__declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_sized_type_specifier_repeat1] = STATE(3584), - [aux_sym_operator_cast_definition_repeat1] = STATE(1961), - [sym_identifier] = ACTIONS(1665), - [aux_sym_preproc_def_token1] = ACTIONS(2234), - [aux_sym_preproc_if_token1] = ACTIONS(2236), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2238), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2238), - [sym_preproc_directive] = ACTIONS(2240), - [anon_sym_LPAREN2] = ACTIONS(1681), - [anon_sym_TILDE] = ACTIONS(1683), - [anon_sym_STAR] = ACTIONS(1685), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1687), - [anon_sym_typedef] = ACTIONS(2242), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(1691), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1413), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_RBRACE] = ACTIONS(2333), - [anon_sym_LBRACK] = ACTIONS(1693), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(1695), - [anon_sym_unsigned] = ACTIONS(1695), - [anon_sym_long] = ACTIONS(1695), - [anon_sym_short] = ACTIONS(1695), - [sym_primitive_type] = ACTIONS(1697), - [anon_sym_enum] = ACTIONS(1699), - [anon_sym_class] = ACTIONS(1701), - [anon_sym_struct] = ACTIONS(1703), - [anon_sym_union] = ACTIONS(1705), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1707), - [anon_sym_decltype] = ACTIONS(1709), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_explicit] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(1711), - [anon_sym_template] = ACTIONS(2246), - [anon_sym_operator] = ACTIONS(119), - [anon_sym_friend] = ACTIONS(2248), - [anon_sym_public] = ACTIONS(1717), - [anon_sym_private] = ACTIONS(1717), - [anon_sym_protected] = ACTIONS(1717), - [anon_sym_using] = ACTIONS(2250), - [anon_sym_static_assert] = ACTIONS(2252), + [sym_attribute_declaration] = STATE(230), + [sym_compound_statement] = STATE(982), + [sym_attributed_statement] = STATE(982), + [sym_labeled_statement] = STATE(982), + [sym_expression_statement] = STATE(982), + [sym_if_statement] = STATE(982), + [sym_switch_statement] = STATE(982), + [sym_case_statement] = STATE(982), + [sym_while_statement] = STATE(982), + [sym_do_statement] = STATE(982), + [sym_for_statement] = STATE(982), + [sym_return_statement] = STATE(982), + [sym_break_statement] = STATE(982), + [sym_continue_statement] = STATE(982), + [sym_goto_statement] = STATE(982), + [sym__expression] = STATE(4182), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7590), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(982), + [sym_co_return_statement] = STATE(982), + [sym_co_yield_statement] = STATE(982), + [sym_throw_statement] = STATE(982), + [sym_try_statement] = STATE(982), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(230), + [sym_identifier] = ACTIONS(2115), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACK] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(2117), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_case] = ACTIONS(2111), + [anon_sym_default] = ACTIONS(2113), + [anon_sym_while] = ACTIONS(2119), + [anon_sym_do] = ACTIONS(81), + [anon_sym_for] = ACTIONS(2121), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(127), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(131), + [anon_sym_co_return] = ACTIONS(141), + [anon_sym_co_yield] = ACTIONS(143), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [311] = { - [sym_preproc_def] = STATE(295), - [sym_preproc_function_def] = STATE(295), - [sym_preproc_call] = STATE(295), - [sym_preproc_if_in_field_declaration_list] = STATE(295), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(295), - [sym_type_definition] = STATE(295), - [sym__declaration_modifiers] = STATE(3225), - [sym__declaration_specifiers] = STATE(4180), - [sym_attribute_specifier] = STATE(3225), - [sym_attribute_declaration] = STATE(3225), - [sym_ms_declspec_modifier] = STATE(3225), - [sym_ms_based_modifier] = STATE(6104), - [sym__declarator] = STATE(5113), - [sym_parenthesized_declarator] = STATE(4918), - [sym_attributed_declarator] = STATE(4918), - [sym_pointer_declarator] = STATE(4918), - [sym_function_declarator] = STATE(4799), - [sym_array_declarator] = STATE(4918), - [sym_storage_class_specifier] = STATE(3225), - [sym_type_qualifier] = STATE(3225), - [sym__type_specifier] = STATE(3337), - [sym_sized_type_specifier] = STATE(3601), - [sym_enum_specifier] = STATE(3601), - [sym_struct_specifier] = STATE(3601), - [sym_union_specifier] = STATE(3601), - [sym__field_declaration_list_item] = STATE(295), - [sym_field_declaration] = STATE(295), - [sym_placeholder_type_specifier] = STATE(3601), - [sym_decltype_auto] = STATE(3558), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3601), - [sym_virtual] = STATE(3225), - [sym_explicit_function_specifier] = STATE(1961), - [sym_dependent_type] = STATE(3601), - [sym_template_declaration] = STATE(295), - [sym_operator_cast] = STATE(5140), - [sym_inline_method_definition] = STATE(295), - [sym__constructor_specifiers] = STATE(1961), - [sym_operator_cast_definition] = STATE(295), - [sym_operator_cast_declaration] = STATE(295), - [sym_constructor_or_destructor_definition] = STATE(295), - [sym_constructor_or_destructor_declaration] = STATE(295), - [sym_friend_declaration] = STATE(295), - [sym_access_specifier] = STATE(6324), - [sym_reference_declarator] = STATE(4918), - [sym_structured_binding_declarator] = STATE(4918), - [sym_template_type] = STATE(3198), - [sym_template_function] = STATE(4918), - [sym_using_declaration] = STATE(295), - [sym_alias_declaration] = STATE(295), - [sym_static_assert_declaration] = STATE(295), - [sym_destructor_name] = STATE(4918), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4455), - [sym_qualified_identifier] = STATE(4918), - [sym_qualified_type_identifier] = STATE(3554), - [sym_qualified_operator_cast_identifier] = STATE(5140), - [sym_operator_name] = STATE(4918), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(295), - [aux_sym__declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_sized_type_specifier_repeat1] = STATE(3584), - [aux_sym_operator_cast_definition_repeat1] = STATE(1961), - [sym_identifier] = ACTIONS(1665), - [aux_sym_preproc_def_token1] = ACTIONS(2234), - [aux_sym_preproc_if_token1] = ACTIONS(2236), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2238), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2238), - [sym_preproc_directive] = ACTIONS(2240), - [anon_sym_LPAREN2] = ACTIONS(1681), - [anon_sym_TILDE] = ACTIONS(1683), - [anon_sym_STAR] = ACTIONS(1685), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1687), - [anon_sym_typedef] = ACTIONS(2242), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(1691), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1413), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_RBRACE] = ACTIONS(2335), - [anon_sym_LBRACK] = ACTIONS(1693), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(1695), - [anon_sym_unsigned] = ACTIONS(1695), - [anon_sym_long] = ACTIONS(1695), - [anon_sym_short] = ACTIONS(1695), - [sym_primitive_type] = ACTIONS(1697), - [anon_sym_enum] = ACTIONS(1699), - [anon_sym_class] = ACTIONS(1701), - [anon_sym_struct] = ACTIONS(1703), - [anon_sym_union] = ACTIONS(1705), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1707), - [anon_sym_decltype] = ACTIONS(1709), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_explicit] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(1711), - [anon_sym_template] = ACTIONS(2246), - [anon_sym_operator] = ACTIONS(119), - [anon_sym_friend] = ACTIONS(2248), - [anon_sym_public] = ACTIONS(1717), - [anon_sym_private] = ACTIONS(1717), - [anon_sym_protected] = ACTIONS(1717), - [anon_sym_using] = ACTIONS(2250), - [anon_sym_static_assert] = ACTIONS(2252), + [sym_attribute_declaration] = STATE(251), + [sym_compound_statement] = STATE(744), + [sym_attributed_statement] = STATE(632), + [sym_labeled_statement] = STATE(751), + [sym_expression_statement] = STATE(727), + [sym_if_statement] = STATE(726), + [sym_switch_statement] = STATE(719), + [sym_case_statement] = STATE(718), + [sym_while_statement] = STATE(715), + [sym_do_statement] = STATE(714), + [sym_for_statement] = STATE(682), + [sym_return_statement] = STATE(674), + [sym_break_statement] = STATE(671), + [sym_continue_statement] = STATE(668), + [sym_goto_statement] = STATE(659), + [sym__expression] = STATE(4169), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7079), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(654), + [sym_co_return_statement] = STATE(652), + [sym_co_yield_statement] = STATE(643), + [sym_throw_statement] = STATE(638), + [sym_try_statement] = STATE(679), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(251), + [sym_identifier] = ACTIONS(2107), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(345), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(351), + [anon_sym_LBRACK] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(355), + [anon_sym_switch] = ACTIONS(357), + [anon_sym_case] = ACTIONS(359), + [anon_sym_default] = ACTIONS(361), + [anon_sym_while] = ACTIONS(363), + [anon_sym_do] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_return] = ACTIONS(369), + [anon_sym_break] = ACTIONS(371), + [anon_sym_continue] = ACTIONS(373), + [anon_sym_goto] = ACTIONS(375), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(379), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(381), + [anon_sym_co_return] = ACTIONS(391), + [anon_sym_co_yield] = ACTIONS(393), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [312] = { - [sym_preproc_def] = STATE(307), - [sym_preproc_function_def] = STATE(307), - [sym_preproc_call] = STATE(307), - [sym_preproc_if_in_field_declaration_list] = STATE(307), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(307), - [sym_type_definition] = STATE(307), - [sym__declaration_modifiers] = STATE(3225), - [sym__declaration_specifiers] = STATE(4180), - [sym_attribute_specifier] = STATE(3225), - [sym_attribute_declaration] = STATE(3225), - [sym_ms_declspec_modifier] = STATE(3225), - [sym_ms_based_modifier] = STATE(6104), - [sym__declarator] = STATE(5113), - [sym_parenthesized_declarator] = STATE(4918), - [sym_attributed_declarator] = STATE(4918), - [sym_pointer_declarator] = STATE(4918), - [sym_function_declarator] = STATE(4799), - [sym_array_declarator] = STATE(4918), - [sym_storage_class_specifier] = STATE(3225), - [sym_type_qualifier] = STATE(3225), - [sym__type_specifier] = STATE(3337), - [sym_sized_type_specifier] = STATE(3601), - [sym_enum_specifier] = STATE(3601), - [sym_struct_specifier] = STATE(3601), - [sym_union_specifier] = STATE(3601), - [sym__field_declaration_list_item] = STATE(307), - [sym_field_declaration] = STATE(307), - [sym_placeholder_type_specifier] = STATE(3601), - [sym_decltype_auto] = STATE(3558), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3601), - [sym_virtual] = STATE(3225), - [sym_explicit_function_specifier] = STATE(1961), - [sym_dependent_type] = STATE(3601), - [sym_template_declaration] = STATE(307), - [sym_operator_cast] = STATE(5140), - [sym_inline_method_definition] = STATE(307), - [sym__constructor_specifiers] = STATE(1961), - [sym_operator_cast_definition] = STATE(307), - [sym_operator_cast_declaration] = STATE(307), - [sym_constructor_or_destructor_definition] = STATE(307), - [sym_constructor_or_destructor_declaration] = STATE(307), - [sym_friend_declaration] = STATE(307), - [sym_access_specifier] = STATE(6324), - [sym_reference_declarator] = STATE(4918), - [sym_structured_binding_declarator] = STATE(4918), - [sym_template_type] = STATE(3198), - [sym_template_function] = STATE(4918), - [sym_using_declaration] = STATE(307), - [sym_alias_declaration] = STATE(307), - [sym_static_assert_declaration] = STATE(307), - [sym_destructor_name] = STATE(4918), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4455), - [sym_qualified_identifier] = STATE(4918), - [sym_qualified_type_identifier] = STATE(3554), - [sym_qualified_operator_cast_identifier] = STATE(5140), - [sym_operator_name] = STATE(4918), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(307), - [aux_sym__declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_sized_type_specifier_repeat1] = STATE(3584), - [aux_sym_operator_cast_definition_repeat1] = STATE(1961), - [sym_identifier] = ACTIONS(1665), - [aux_sym_preproc_def_token1] = ACTIONS(2234), - [aux_sym_preproc_if_token1] = ACTIONS(2236), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2238), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2238), - [sym_preproc_directive] = ACTIONS(2240), - [anon_sym_LPAREN2] = ACTIONS(1681), - [anon_sym_TILDE] = ACTIONS(1683), - [anon_sym_STAR] = ACTIONS(1685), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1687), - [anon_sym_typedef] = ACTIONS(2242), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(1691), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1413), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_RBRACE] = ACTIONS(2337), - [anon_sym_LBRACK] = ACTIONS(1693), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(1695), - [anon_sym_unsigned] = ACTIONS(1695), - [anon_sym_long] = ACTIONS(1695), - [anon_sym_short] = ACTIONS(1695), - [sym_primitive_type] = ACTIONS(1697), - [anon_sym_enum] = ACTIONS(1699), - [anon_sym_class] = ACTIONS(1701), - [anon_sym_struct] = ACTIONS(1703), - [anon_sym_union] = ACTIONS(1705), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1707), - [anon_sym_decltype] = ACTIONS(1709), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_explicit] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(1711), - [anon_sym_template] = ACTIONS(2246), - [anon_sym_operator] = ACTIONS(119), - [anon_sym_friend] = ACTIONS(2248), - [anon_sym_public] = ACTIONS(1717), - [anon_sym_private] = ACTIONS(1717), - [anon_sym_protected] = ACTIONS(1717), - [anon_sym_using] = ACTIONS(2250), - [anon_sym_static_assert] = ACTIONS(2252), + [sym_attribute_declaration] = STATE(230), + [sym_compound_statement] = STATE(829), + [sym_attributed_statement] = STATE(829), + [sym_labeled_statement] = STATE(829), + [sym_expression_statement] = STATE(829), + [sym_if_statement] = STATE(829), + [sym_switch_statement] = STATE(829), + [sym_case_statement] = STATE(829), + [sym_while_statement] = STATE(829), + [sym_do_statement] = STATE(829), + [sym_for_statement] = STATE(829), + [sym_return_statement] = STATE(829), + [sym_break_statement] = STATE(829), + [sym_continue_statement] = STATE(829), + [sym_goto_statement] = STATE(829), + [sym__expression] = STATE(4182), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7590), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(829), + [sym_co_return_statement] = STATE(829), + [sym_co_yield_statement] = STATE(829), + [sym_throw_statement] = STATE(829), + [sym_try_statement] = STATE(829), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(230), + [sym_identifier] = ACTIONS(2115), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACK] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(2117), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_case] = ACTIONS(2111), + [anon_sym_default] = ACTIONS(2113), + [anon_sym_while] = ACTIONS(2119), + [anon_sym_do] = ACTIONS(81), + [anon_sym_for] = ACTIONS(2121), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(127), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(131), + [anon_sym_co_return] = ACTIONS(141), + [anon_sym_co_yield] = ACTIONS(143), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [313] = { - [sym_preproc_def] = STATE(313), - [sym_preproc_function_def] = STATE(313), - [sym_preproc_call] = STATE(313), - [sym_preproc_if_in_field_declaration_list] = STATE(313), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(313), - [sym_type_definition] = STATE(313), - [sym__declaration_modifiers] = STATE(3225), - [sym__declaration_specifiers] = STATE(4190), - [sym_attribute_specifier] = STATE(3225), - [sym_attribute_declaration] = STATE(3225), - [sym_ms_declspec_modifier] = STATE(3225), - [sym_ms_based_modifier] = STATE(6104), - [sym__declarator] = STATE(5113), - [sym_parenthesized_declarator] = STATE(4918), - [sym_attributed_declarator] = STATE(4918), - [sym_pointer_declarator] = STATE(4918), - [sym_function_declarator] = STATE(4792), - [sym_array_declarator] = STATE(4918), - [sym_storage_class_specifier] = STATE(3225), - [sym_type_qualifier] = STATE(3225), - [sym__type_specifier] = STATE(3337), - [sym_sized_type_specifier] = STATE(3601), - [sym_enum_specifier] = STATE(3601), - [sym_struct_specifier] = STATE(3601), - [sym_union_specifier] = STATE(3601), - [sym__field_declaration_list_item] = STATE(313), - [sym_field_declaration] = STATE(313), - [sym_placeholder_type_specifier] = STATE(3601), - [sym_decltype_auto] = STATE(3558), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3601), - [sym_virtual] = STATE(3225), - [sym_explicit_function_specifier] = STATE(1947), - [sym_dependent_type] = STATE(3601), - [sym_template_declaration] = STATE(313), - [sym_operator_cast] = STATE(5120), - [sym_inline_method_definition] = STATE(313), - [sym__constructor_specifiers] = STATE(1947), - [sym_operator_cast_definition] = STATE(313), - [sym_operator_cast_declaration] = STATE(313), - [sym_constructor_or_destructor_definition] = STATE(313), - [sym_constructor_or_destructor_declaration] = STATE(313), - [sym_friend_declaration] = STATE(313), - [sym_access_specifier] = STATE(6456), - [sym_reference_declarator] = STATE(4918), - [sym_structured_binding_declarator] = STATE(4918), - [sym_template_type] = STATE(3198), - [sym_template_function] = STATE(4918), - [sym_using_declaration] = STATE(313), - [sym_alias_declaration] = STATE(313), - [sym_static_assert_declaration] = STATE(313), - [sym_destructor_name] = STATE(4918), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4455), - [sym_qualified_identifier] = STATE(4918), - [sym_qualified_type_identifier] = STATE(3554), - [sym_qualified_operator_cast_identifier] = STATE(5120), - [sym_operator_name] = STATE(4918), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(313), - [aux_sym__declaration_specifiers_repeat1] = STATE(2173), - [aux_sym_sized_type_specifier_repeat1] = STATE(3584), - [aux_sym_operator_cast_definition_repeat1] = STATE(1947), - [sym_identifier] = ACTIONS(2124), - [aux_sym_preproc_def_token1] = ACTIONS(2339), - [aux_sym_preproc_if_token1] = ACTIONS(2342), - [aux_sym_preproc_if_token2] = ACTIONS(2133), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2345), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2345), - [sym_preproc_directive] = ACTIONS(2348), - [anon_sym_LPAREN2] = ACTIONS(2141), - [anon_sym_TILDE] = ACTIONS(2144), - [anon_sym_STAR] = ACTIONS(2147), - [anon_sym_AMP_AMP] = ACTIONS(2150), - [anon_sym_AMP] = ACTIONS(2153), - [anon_sym_typedef] = ACTIONS(2351), - [anon_sym_extern] = ACTIONS(2159), - [anon_sym___attribute__] = ACTIONS(2162), - [anon_sym_COLON_COLON] = ACTIONS(2165), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2168), - [anon_sym___declspec] = ACTIONS(2171), - [anon_sym___based] = ACTIONS(2174), - [anon_sym_LBRACK] = ACTIONS(2177), - [anon_sym_static] = ACTIONS(2159), - [anon_sym_register] = ACTIONS(2159), - [anon_sym_inline] = ACTIONS(2159), - [anon_sym_thread_local] = ACTIONS(2159), - [anon_sym_const] = ACTIONS(2180), - [anon_sym_volatile] = ACTIONS(2180), - [anon_sym_restrict] = ACTIONS(2180), - [anon_sym__Atomic] = ACTIONS(2180), - [anon_sym_mutable] = ACTIONS(2180), - [anon_sym_constexpr] = ACTIONS(2180), - [anon_sym_constinit] = ACTIONS(2180), - [anon_sym_consteval] = ACTIONS(2180), - [anon_sym_signed] = ACTIONS(2183), - [anon_sym_unsigned] = ACTIONS(2183), - [anon_sym_long] = ACTIONS(2183), - [anon_sym_short] = ACTIONS(2183), - [sym_primitive_type] = ACTIONS(2186), - [anon_sym_enum] = ACTIONS(2189), - [anon_sym_class] = ACTIONS(2192), - [anon_sym_struct] = ACTIONS(2195), - [anon_sym_union] = ACTIONS(2198), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2201), - [anon_sym_decltype] = ACTIONS(2204), - [anon_sym_virtual] = ACTIONS(2207), - [anon_sym_explicit] = ACTIONS(2210), - [anon_sym_typename] = ACTIONS(2213), - [anon_sym_template] = ACTIONS(2354), - [anon_sym_operator] = ACTIONS(2219), - [anon_sym_friend] = ACTIONS(2357), - [anon_sym_public] = ACTIONS(2225), - [anon_sym_private] = ACTIONS(2225), - [anon_sym_protected] = ACTIONS(2225), - [anon_sym_using] = ACTIONS(2360), - [anon_sym_static_assert] = ACTIONS(2363), + [sym_attribute_declaration] = STATE(230), + [sym_compound_statement] = STATE(1191), + [sym_attributed_statement] = STATE(1191), + [sym_labeled_statement] = STATE(1191), + [sym_expression_statement] = STATE(1191), + [sym_if_statement] = STATE(1191), + [sym_switch_statement] = STATE(1191), + [sym_case_statement] = STATE(1191), + [sym_while_statement] = STATE(1191), + [sym_do_statement] = STATE(1191), + [sym_for_statement] = STATE(1191), + [sym_return_statement] = STATE(1191), + [sym_break_statement] = STATE(1191), + [sym_continue_statement] = STATE(1191), + [sym_goto_statement] = STATE(1191), + [sym__expression] = STATE(4182), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7590), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(1191), + [sym_co_return_statement] = STATE(1191), + [sym_co_yield_statement] = STATE(1191), + [sym_throw_statement] = STATE(1191), + [sym_try_statement] = STATE(1191), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(230), + [sym_identifier] = ACTIONS(2115), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(49), + [anon_sym_LBRACK] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(2117), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_case] = ACTIONS(2111), + [anon_sym_default] = ACTIONS(2113), + [anon_sym_while] = ACTIONS(2119), + [anon_sym_do] = ACTIONS(81), + [anon_sym_for] = ACTIONS(2121), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(127), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(131), + [anon_sym_co_return] = ACTIONS(141), + [anon_sym_co_yield] = ACTIONS(143), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [314] = { - [sym_type_qualifier] = STATE(3299), - [sym__type_specifier] = STATE(3894), - [sym_sized_type_specifier] = STATE(2541), - [sym_enum_specifier] = STATE(2541), - [sym_struct_specifier] = STATE(2541), - [sym_union_specifier] = STATE(2541), - [sym__expression] = STATE(2705), - [sym_comma_expression] = STATE(6624), - [sym_conditional_expression] = STATE(3035), - [sym_assignment_expression] = STATE(3035), - [sym_pointer_expression] = STATE(2713), - [sym_unary_expression] = STATE(3035), - [sym_binary_expression] = STATE(3035), - [sym_update_expression] = STATE(3035), - [sym_cast_expression] = STATE(3035), - [sym_type_descriptor] = STATE(6334), - [sym_sizeof_expression] = STATE(3035), - [sym_subscript_expression] = STATE(2713), - [sym_call_expression] = STATE(2713), - [sym_field_expression] = STATE(2713), - [sym_compound_literal_expression] = STATE(3035), - [sym_parenthesized_expression] = STATE(2713), - [sym_char_literal] = STATE(3013), - [sym_concatenated_string] = STATE(3013), - [sym_string_literal] = STATE(1900), - [sym_placeholder_type_specifier] = STATE(2541), - [sym_decltype_auto] = STATE(2540), - [sym_decltype] = STATE(2247), - [sym_class_specifier] = STATE(2541), - [sym__class_name] = STATE(5990), - [sym_dependent_type] = STATE(2541), - [sym_template_type] = STATE(4288), - [sym_template_function] = STATE(3035), - [sym_raw_string_literal] = STATE(1900), - [sym_co_await_expression] = STATE(3035), - [sym_new_expression] = STATE(3035), - [sym_delete_expression] = STATE(3035), - [sym_requires_clause] = STATE(3035), - [sym_requires_expression] = STATE(3035), - [sym_lambda_expression] = STATE(3035), - [sym_lambda_capture_specifier] = STATE(4465), - [sym__unary_left_fold] = STATE(6354), - [sym__unary_right_fold] = STATE(6353), - [sym__binary_fold] = STATE(6352), - [sym_fold_expression] = STATE(3035), - [sym_parameter_pack_expansion] = STATE(3035), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4537), - [sym_qualified_identifier] = STATE(2713), - [sym_qualified_type_identifier] = STATE(4356), - [sym_user_defined_literal] = STATE(3035), - [aux_sym_type_definition_repeat1] = STATE(3299), - [aux_sym_sized_type_specifier_repeat1] = STATE(1922), - [sym_identifier] = ACTIONS(2366), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1435), - [anon_sym_LPAREN2] = ACTIONS(1439), - [anon_sym_BANG] = ACTIONS(1441), - [anon_sym_TILDE] = ACTIONS(1441), - [anon_sym_DASH] = ACTIONS(1443), - [anon_sym_PLUS] = ACTIONS(1443), - [anon_sym_STAR] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(1445), - [anon_sym_COLON_COLON] = ACTIONS(1447), - [anon_sym_LBRACK] = ACTIONS(1539), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(1503), - [anon_sym_unsigned] = ACTIONS(1503), - [anon_sym_long] = ACTIONS(1503), - [anon_sym_short] = ACTIONS(1503), - [sym_primitive_type] = ACTIONS(1505), - [anon_sym_enum] = ACTIONS(1507), - [anon_sym_class] = ACTIONS(1509), - [anon_sym_struct] = ACTIONS(1511), - [anon_sym_union] = ACTIONS(1513), - [anon_sym_not] = ACTIONS(1443), - [anon_sym_compl] = ACTIONS(1443), - [anon_sym_DASH_DASH] = ACTIONS(1459), - [anon_sym_PLUS_PLUS] = ACTIONS(1459), - [anon_sym_sizeof] = ACTIONS(1461), - [sym_number_literal] = ACTIONS(1463), - [anon_sym_L_SQUOTE] = ACTIONS(1465), - [anon_sym_u_SQUOTE] = ACTIONS(1465), - [anon_sym_U_SQUOTE] = ACTIONS(1465), - [anon_sym_u8_SQUOTE] = ACTIONS(1465), - [anon_sym_SQUOTE] = ACTIONS(1465), - [anon_sym_L_DQUOTE] = ACTIONS(1467), - [anon_sym_u_DQUOTE] = ACTIONS(1467), - [anon_sym_U_DQUOTE] = ACTIONS(1467), - [anon_sym_u8_DQUOTE] = ACTIONS(1467), - [anon_sym_DQUOTE] = ACTIONS(1467), - [sym_true] = ACTIONS(1469), - [sym_false] = ACTIONS(1469), - [sym_null] = ACTIONS(1469), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1515), - [anon_sym_decltype] = ACTIONS(1517), - [anon_sym_typename] = ACTIONS(1519), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1473), - [anon_sym_R_DQUOTE] = ACTIONS(1475), - [anon_sym_LR_DQUOTE] = ACTIONS(1475), - [anon_sym_uR_DQUOTE] = ACTIONS(1475), - [anon_sym_UR_DQUOTE] = ACTIONS(1475), - [anon_sym_u8R_DQUOTE] = ACTIONS(1475), - [anon_sym_co_await] = ACTIONS(1477), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_requires] = ACTIONS(1481), - [sym_this] = ACTIONS(1469), - [sym_nullptr] = ACTIONS(1469), + [sym_attribute_declaration] = STATE(179), + [sym_compound_statement] = STATE(1534), + [sym_attributed_statement] = STATE(1534), + [sym_labeled_statement] = STATE(1534), + [sym_expression_statement] = STATE(1534), + [sym_if_statement] = STATE(1534), + [sym_switch_statement] = STATE(1534), + [sym_case_statement] = STATE(1534), + [sym_while_statement] = STATE(1534), + [sym_do_statement] = STATE(1534), + [sym_for_statement] = STATE(1534), + [sym_return_statement] = STATE(1534), + [sym_break_statement] = STATE(1534), + [sym_continue_statement] = STATE(1534), + [sym_goto_statement] = STATE(1534), + [sym__expression] = STATE(4212), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7175), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(1534), + [sym_co_return_statement] = STATE(1534), + [sym_co_yield_statement] = STATE(1534), + [sym_throw_statement] = STATE(1534), + [sym_try_statement] = STATE(1534), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(179), + [sym_identifier] = ACTIONS(2109), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(1728), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(1732), + [anon_sym_LBRACK] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(1734), + [anon_sym_switch] = ACTIONS(1736), + [anon_sym_case] = ACTIONS(2111), + [anon_sym_default] = ACTIONS(2113), + [anon_sym_while] = ACTIONS(1738), + [anon_sym_do] = ACTIONS(1740), + [anon_sym_for] = ACTIONS(1742), + [anon_sym_return] = ACTIONS(1744), + [anon_sym_break] = ACTIONS(1746), + [anon_sym_continue] = ACTIONS(1748), + [anon_sym_goto] = ACTIONS(1750), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(1752), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(1754), + [anon_sym_co_return] = ACTIONS(1756), + [anon_sym_co_yield] = ACTIONS(1758), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [315] = { - [sym_type_qualifier] = STATE(3299), - [sym__type_specifier] = STATE(3894), - [sym_sized_type_specifier] = STATE(2541), - [sym_enum_specifier] = STATE(2541), - [sym_struct_specifier] = STATE(2541), - [sym_union_specifier] = STATE(2541), - [sym__expression] = STATE(2826), - [sym_comma_expression] = STATE(6252), - [sym_conditional_expression] = STATE(3035), - [sym_assignment_expression] = STATE(3035), - [sym_pointer_expression] = STATE(2713), - [sym_unary_expression] = STATE(3035), - [sym_binary_expression] = STATE(3035), - [sym_update_expression] = STATE(3035), - [sym_cast_expression] = STATE(3035), - [sym_type_descriptor] = STATE(6452), - [sym_sizeof_expression] = STATE(3035), - [sym_subscript_expression] = STATE(2713), - [sym_call_expression] = STATE(2713), - [sym_field_expression] = STATE(2713), - [sym_compound_literal_expression] = STATE(3035), - [sym_parenthesized_expression] = STATE(2713), - [sym_char_literal] = STATE(3013), - [sym_concatenated_string] = STATE(3013), - [sym_string_literal] = STATE(1900), - [sym_placeholder_type_specifier] = STATE(2541), - [sym_decltype_auto] = STATE(2540), - [sym_decltype] = STATE(2247), - [sym_class_specifier] = STATE(2541), - [sym__class_name] = STATE(5990), - [sym_dependent_type] = STATE(2541), - [sym_template_type] = STATE(4288), - [sym_template_function] = STATE(3035), - [sym_raw_string_literal] = STATE(1900), - [sym_co_await_expression] = STATE(3035), - [sym_new_expression] = STATE(3035), - [sym_delete_expression] = STATE(3035), - [sym_requires_clause] = STATE(3035), - [sym_requires_expression] = STATE(3035), - [sym_lambda_expression] = STATE(3035), - [sym_lambda_capture_specifier] = STATE(4465), - [sym__unary_left_fold] = STATE(6490), - [sym__unary_right_fold] = STATE(6489), - [sym__binary_fold] = STATE(6487), - [sym_fold_expression] = STATE(3035), - [sym_parameter_pack_expansion] = STATE(3035), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4537), - [sym_qualified_identifier] = STATE(2713), - [sym_qualified_type_identifier] = STATE(4356), - [sym_user_defined_literal] = STATE(3035), - [aux_sym_type_definition_repeat1] = STATE(3299), - [aux_sym_sized_type_specifier_repeat1] = STATE(1922), - [sym_identifier] = ACTIONS(2366), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1435), - [anon_sym_LPAREN2] = ACTIONS(1439), - [anon_sym_BANG] = ACTIONS(1441), - [anon_sym_TILDE] = ACTIONS(1441), - [anon_sym_DASH] = ACTIONS(1443), - [anon_sym_PLUS] = ACTIONS(1443), - [anon_sym_STAR] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(1445), - [anon_sym_COLON_COLON] = ACTIONS(1447), - [anon_sym_LBRACK] = ACTIONS(1539), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(1503), - [anon_sym_unsigned] = ACTIONS(1503), - [anon_sym_long] = ACTIONS(1503), - [anon_sym_short] = ACTIONS(1503), - [sym_primitive_type] = ACTIONS(1505), - [anon_sym_enum] = ACTIONS(1507), - [anon_sym_class] = ACTIONS(1509), - [anon_sym_struct] = ACTIONS(1511), - [anon_sym_union] = ACTIONS(1513), - [anon_sym_not] = ACTIONS(1443), - [anon_sym_compl] = ACTIONS(1443), - [anon_sym_DASH_DASH] = ACTIONS(1459), - [anon_sym_PLUS_PLUS] = ACTIONS(1459), - [anon_sym_sizeof] = ACTIONS(1461), - [sym_number_literal] = ACTIONS(1463), - [anon_sym_L_SQUOTE] = ACTIONS(1465), - [anon_sym_u_SQUOTE] = ACTIONS(1465), - [anon_sym_U_SQUOTE] = ACTIONS(1465), - [anon_sym_u8_SQUOTE] = ACTIONS(1465), - [anon_sym_SQUOTE] = ACTIONS(1465), - [anon_sym_L_DQUOTE] = ACTIONS(1467), - [anon_sym_u_DQUOTE] = ACTIONS(1467), - [anon_sym_U_DQUOTE] = ACTIONS(1467), - [anon_sym_u8_DQUOTE] = ACTIONS(1467), - [anon_sym_DQUOTE] = ACTIONS(1467), - [sym_true] = ACTIONS(1469), - [sym_false] = ACTIONS(1469), - [sym_null] = ACTIONS(1469), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1515), - [anon_sym_decltype] = ACTIONS(1517), - [anon_sym_typename] = ACTIONS(1519), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1473), - [anon_sym_R_DQUOTE] = ACTIONS(1475), - [anon_sym_LR_DQUOTE] = ACTIONS(1475), - [anon_sym_uR_DQUOTE] = ACTIONS(1475), - [anon_sym_UR_DQUOTE] = ACTIONS(1475), - [anon_sym_u8R_DQUOTE] = ACTIONS(1475), - [anon_sym_co_await] = ACTIONS(1477), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_requires] = ACTIONS(1481), - [sym_this] = ACTIONS(1469), - [sym_nullptr] = ACTIONS(1469), + [sym_attribute_declaration] = STATE(251), + [sym_compound_statement] = STATE(707), + [sym_attributed_statement] = STATE(707), + [sym_labeled_statement] = STATE(707), + [sym_expression_statement] = STATE(707), + [sym_if_statement] = STATE(707), + [sym_switch_statement] = STATE(707), + [sym_case_statement] = STATE(707), + [sym_while_statement] = STATE(707), + [sym_do_statement] = STATE(707), + [sym_for_statement] = STATE(707), + [sym_return_statement] = STATE(707), + [sym_break_statement] = STATE(707), + [sym_continue_statement] = STATE(707), + [sym_goto_statement] = STATE(707), + [sym__expression] = STATE(4169), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7079), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(707), + [sym_co_return_statement] = STATE(707), + [sym_co_yield_statement] = STATE(707), + [sym_throw_statement] = STATE(707), + [sym_try_statement] = STATE(707), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(251), + [sym_identifier] = ACTIONS(2107), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(345), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(351), + [anon_sym_LBRACK] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(355), + [anon_sym_switch] = ACTIONS(357), + [anon_sym_case] = ACTIONS(359), + [anon_sym_default] = ACTIONS(361), + [anon_sym_while] = ACTIONS(363), + [anon_sym_do] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_return] = ACTIONS(369), + [anon_sym_break] = ACTIONS(371), + [anon_sym_continue] = ACTIONS(373), + [anon_sym_goto] = ACTIONS(375), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(379), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(381), + [anon_sym_co_return] = ACTIONS(391), + [anon_sym_co_yield] = ACTIONS(393), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [316] = { - [sym_type_qualifier] = STATE(3299), - [sym__type_specifier] = STATE(3894), - [sym_sized_type_specifier] = STATE(2541), - [sym_enum_specifier] = STATE(2541), - [sym_struct_specifier] = STATE(2541), - [sym_union_specifier] = STATE(2541), - [sym__expression] = STATE(2705), - [sym_comma_expression] = STATE(6624), - [sym_conditional_expression] = STATE(3035), - [sym_assignment_expression] = STATE(3035), - [sym_pointer_expression] = STATE(2713), - [sym_unary_expression] = STATE(3035), - [sym_binary_expression] = STATE(3035), - [sym_update_expression] = STATE(3035), - [sym_cast_expression] = STATE(3035), - [sym_type_descriptor] = STATE(6626), - [sym_sizeof_expression] = STATE(3035), - [sym_subscript_expression] = STATE(2713), - [sym_call_expression] = STATE(2713), - [sym_field_expression] = STATE(2713), - [sym_compound_literal_expression] = STATE(3035), - [sym_parenthesized_expression] = STATE(2713), - [sym_char_literal] = STATE(3013), - [sym_concatenated_string] = STATE(3013), - [sym_string_literal] = STATE(1900), - [sym_placeholder_type_specifier] = STATE(2541), - [sym_decltype_auto] = STATE(2540), - [sym_decltype] = STATE(2247), - [sym_class_specifier] = STATE(2541), - [sym__class_name] = STATE(5990), - [sym_dependent_type] = STATE(2541), - [sym_template_type] = STATE(4288), - [sym_template_function] = STATE(3035), - [sym_raw_string_literal] = STATE(1900), - [sym_co_await_expression] = STATE(3035), - [sym_new_expression] = STATE(3035), - [sym_delete_expression] = STATE(3035), - [sym_requires_clause] = STATE(3035), - [sym_requires_expression] = STATE(3035), - [sym_lambda_expression] = STATE(3035), - [sym_lambda_capture_specifier] = STATE(4465), - [sym__unary_left_fold] = STATE(6628), - [sym__unary_right_fold] = STATE(6395), - [sym__binary_fold] = STATE(6571), - [sym_fold_expression] = STATE(3035), - [sym_parameter_pack_expansion] = STATE(3035), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4537), - [sym_qualified_identifier] = STATE(2713), - [sym_qualified_type_identifier] = STATE(4356), - [sym_user_defined_literal] = STATE(3035), - [aux_sym_type_definition_repeat1] = STATE(3299), - [aux_sym_sized_type_specifier_repeat1] = STATE(1922), - [sym_identifier] = ACTIONS(2366), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1435), - [anon_sym_LPAREN2] = ACTIONS(1439), - [anon_sym_BANG] = ACTIONS(1441), - [anon_sym_TILDE] = ACTIONS(1441), - [anon_sym_DASH] = ACTIONS(1443), - [anon_sym_PLUS] = ACTIONS(1443), - [anon_sym_STAR] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(1445), - [anon_sym_COLON_COLON] = ACTIONS(1447), - [anon_sym_LBRACK] = ACTIONS(1539), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(1503), - [anon_sym_unsigned] = ACTIONS(1503), - [anon_sym_long] = ACTIONS(1503), - [anon_sym_short] = ACTIONS(1503), - [sym_primitive_type] = ACTIONS(1505), - [anon_sym_enum] = ACTIONS(1507), - [anon_sym_class] = ACTIONS(1509), - [anon_sym_struct] = ACTIONS(1511), - [anon_sym_union] = ACTIONS(1513), - [anon_sym_not] = ACTIONS(1443), - [anon_sym_compl] = ACTIONS(1443), - [anon_sym_DASH_DASH] = ACTIONS(1459), - [anon_sym_PLUS_PLUS] = ACTIONS(1459), - [anon_sym_sizeof] = ACTIONS(1461), - [sym_number_literal] = ACTIONS(1463), - [anon_sym_L_SQUOTE] = ACTIONS(1465), - [anon_sym_u_SQUOTE] = ACTIONS(1465), - [anon_sym_U_SQUOTE] = ACTIONS(1465), - [anon_sym_u8_SQUOTE] = ACTIONS(1465), - [anon_sym_SQUOTE] = ACTIONS(1465), - [anon_sym_L_DQUOTE] = ACTIONS(1467), - [anon_sym_u_DQUOTE] = ACTIONS(1467), - [anon_sym_U_DQUOTE] = ACTIONS(1467), - [anon_sym_u8_DQUOTE] = ACTIONS(1467), - [anon_sym_DQUOTE] = ACTIONS(1467), - [sym_true] = ACTIONS(1469), - [sym_false] = ACTIONS(1469), - [sym_null] = ACTIONS(1469), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1515), - [anon_sym_decltype] = ACTIONS(1517), - [anon_sym_typename] = ACTIONS(1519), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1473), - [anon_sym_R_DQUOTE] = ACTIONS(1475), - [anon_sym_LR_DQUOTE] = ACTIONS(1475), - [anon_sym_uR_DQUOTE] = ACTIONS(1475), - [anon_sym_UR_DQUOTE] = ACTIONS(1475), - [anon_sym_u8R_DQUOTE] = ACTIONS(1475), - [anon_sym_co_await] = ACTIONS(1477), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_requires] = ACTIONS(1481), - [sym_this] = ACTIONS(1469), - [sym_nullptr] = ACTIONS(1469), + [sym_attribute_declaration] = STATE(251), + [sym_compound_statement] = STATE(690), + [sym_attributed_statement] = STATE(690), + [sym_labeled_statement] = STATE(690), + [sym_expression_statement] = STATE(690), + [sym_if_statement] = STATE(690), + [sym_switch_statement] = STATE(690), + [sym_case_statement] = STATE(690), + [sym_while_statement] = STATE(690), + [sym_do_statement] = STATE(690), + [sym_for_statement] = STATE(690), + [sym_return_statement] = STATE(690), + [sym_break_statement] = STATE(690), + [sym_continue_statement] = STATE(690), + [sym_goto_statement] = STATE(690), + [sym__expression] = STATE(4169), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7079), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(690), + [sym_co_return_statement] = STATE(690), + [sym_co_yield_statement] = STATE(690), + [sym_throw_statement] = STATE(690), + [sym_try_statement] = STATE(690), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(251), + [sym_identifier] = ACTIONS(2107), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(345), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(351), + [anon_sym_LBRACK] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(355), + [anon_sym_switch] = ACTIONS(357), + [anon_sym_case] = ACTIONS(359), + [anon_sym_default] = ACTIONS(361), + [anon_sym_while] = ACTIONS(363), + [anon_sym_do] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_return] = ACTIONS(369), + [anon_sym_break] = ACTIONS(371), + [anon_sym_continue] = ACTIONS(373), + [anon_sym_goto] = ACTIONS(375), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(379), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(381), + [anon_sym_co_return] = ACTIONS(391), + [anon_sym_co_yield] = ACTIONS(393), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [317] = { - [sym_type_qualifier] = STATE(3299), - [sym__type_specifier] = STATE(3894), - [sym_sized_type_specifier] = STATE(2541), - [sym_enum_specifier] = STATE(2541), - [sym_struct_specifier] = STATE(2541), - [sym_union_specifier] = STATE(2541), - [sym__expression] = STATE(2826), - [sym_comma_expression] = STATE(6252), - [sym_conditional_expression] = STATE(3035), - [sym_assignment_expression] = STATE(3035), - [sym_pointer_expression] = STATE(2713), - [sym_unary_expression] = STATE(3035), - [sym_binary_expression] = STATE(3035), - [sym_update_expression] = STATE(3035), - [sym_cast_expression] = STATE(3035), - [sym_type_descriptor] = STATE(6388), - [sym_sizeof_expression] = STATE(3035), - [sym_subscript_expression] = STATE(2713), - [sym_call_expression] = STATE(2713), - [sym_field_expression] = STATE(2713), - [sym_compound_literal_expression] = STATE(3035), - [sym_parenthesized_expression] = STATE(2713), - [sym_char_literal] = STATE(3013), - [sym_concatenated_string] = STATE(3013), - [sym_string_literal] = STATE(1900), - [sym_placeholder_type_specifier] = STATE(2541), - [sym_decltype_auto] = STATE(2540), - [sym_decltype] = STATE(2247), - [sym_class_specifier] = STATE(2541), - [sym__class_name] = STATE(5990), - [sym_dependent_type] = STATE(2541), - [sym_template_type] = STATE(4288), - [sym_template_function] = STATE(3035), - [sym_raw_string_literal] = STATE(1900), - [sym_co_await_expression] = STATE(3035), - [sym_new_expression] = STATE(3035), - [sym_delete_expression] = STATE(3035), - [sym_requires_clause] = STATE(3035), - [sym_requires_expression] = STATE(3035), - [sym_lambda_expression] = STATE(3035), - [sym_lambda_capture_specifier] = STATE(4465), - [sym__unary_left_fold] = STATE(6490), - [sym__unary_right_fold] = STATE(6489), - [sym__binary_fold] = STATE(6487), - [sym_fold_expression] = STATE(3035), - [sym_parameter_pack_expansion] = STATE(3035), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4537), - [sym_qualified_identifier] = STATE(2713), - [sym_qualified_type_identifier] = STATE(4356), - [sym_user_defined_literal] = STATE(3035), - [aux_sym_type_definition_repeat1] = STATE(3299), - [aux_sym_sized_type_specifier_repeat1] = STATE(1922), - [sym_identifier] = ACTIONS(2366), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1435), - [anon_sym_LPAREN2] = ACTIONS(1439), - [anon_sym_BANG] = ACTIONS(1441), - [anon_sym_TILDE] = ACTIONS(1441), - [anon_sym_DASH] = ACTIONS(1443), - [anon_sym_PLUS] = ACTIONS(1443), - [anon_sym_STAR] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(1445), - [anon_sym_COLON_COLON] = ACTIONS(1447), - [anon_sym_LBRACK] = ACTIONS(1539), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(1503), - [anon_sym_unsigned] = ACTIONS(1503), - [anon_sym_long] = ACTIONS(1503), - [anon_sym_short] = ACTIONS(1503), - [sym_primitive_type] = ACTIONS(1505), - [anon_sym_enum] = ACTIONS(1507), - [anon_sym_class] = ACTIONS(1509), - [anon_sym_struct] = ACTIONS(1511), - [anon_sym_union] = ACTIONS(1513), - [anon_sym_not] = ACTIONS(1443), - [anon_sym_compl] = ACTIONS(1443), - [anon_sym_DASH_DASH] = ACTIONS(1459), - [anon_sym_PLUS_PLUS] = ACTIONS(1459), - [anon_sym_sizeof] = ACTIONS(1461), - [sym_number_literal] = ACTIONS(1463), - [anon_sym_L_SQUOTE] = ACTIONS(1465), - [anon_sym_u_SQUOTE] = ACTIONS(1465), - [anon_sym_U_SQUOTE] = ACTIONS(1465), - [anon_sym_u8_SQUOTE] = ACTIONS(1465), - [anon_sym_SQUOTE] = ACTIONS(1465), - [anon_sym_L_DQUOTE] = ACTIONS(1467), - [anon_sym_u_DQUOTE] = ACTIONS(1467), - [anon_sym_U_DQUOTE] = ACTIONS(1467), - [anon_sym_u8_DQUOTE] = ACTIONS(1467), - [anon_sym_DQUOTE] = ACTIONS(1467), - [sym_true] = ACTIONS(1469), - [sym_false] = ACTIONS(1469), - [sym_null] = ACTIONS(1469), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1515), - [anon_sym_decltype] = ACTIONS(1517), - [anon_sym_typename] = ACTIONS(1519), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1473), - [anon_sym_R_DQUOTE] = ACTIONS(1475), - [anon_sym_LR_DQUOTE] = ACTIONS(1475), - [anon_sym_uR_DQUOTE] = ACTIONS(1475), - [anon_sym_UR_DQUOTE] = ACTIONS(1475), - [anon_sym_u8R_DQUOTE] = ACTIONS(1475), - [anon_sym_co_await] = ACTIONS(1477), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_requires] = ACTIONS(1481), - [sym_this] = ACTIONS(1469), - [sym_nullptr] = ACTIONS(1469), + [sym_attribute_declaration] = STATE(251), + [sym_compound_statement] = STATE(689), + [sym_attributed_statement] = STATE(689), + [sym_labeled_statement] = STATE(689), + [sym_expression_statement] = STATE(689), + [sym_if_statement] = STATE(689), + [sym_switch_statement] = STATE(689), + [sym_case_statement] = STATE(689), + [sym_while_statement] = STATE(689), + [sym_do_statement] = STATE(689), + [sym_for_statement] = STATE(689), + [sym_return_statement] = STATE(689), + [sym_break_statement] = STATE(689), + [sym_continue_statement] = STATE(689), + [sym_goto_statement] = STATE(689), + [sym__expression] = STATE(4169), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7079), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(689), + [sym_co_return_statement] = STATE(689), + [sym_co_yield_statement] = STATE(689), + [sym_throw_statement] = STATE(689), + [sym_try_statement] = STATE(689), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(251), + [sym_identifier] = ACTIONS(2107), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(345), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(351), + [anon_sym_LBRACK] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(355), + [anon_sym_switch] = ACTIONS(357), + [anon_sym_case] = ACTIONS(359), + [anon_sym_default] = ACTIONS(361), + [anon_sym_while] = ACTIONS(363), + [anon_sym_do] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_return] = ACTIONS(369), + [anon_sym_break] = ACTIONS(371), + [anon_sym_continue] = ACTIONS(373), + [anon_sym_goto] = ACTIONS(375), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(379), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(381), + [anon_sym_co_return] = ACTIONS(391), + [anon_sym_co_yield] = ACTIONS(393), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [318] = { - [sym_catch_clause] = STATE(324), - [aux_sym_constructor_try_statement_repeat1] = STATE(324), - [sym_identifier] = ACTIONS(2368), - [aux_sym_preproc_include_token1] = ACTIONS(2368), - [aux_sym_preproc_def_token1] = ACTIONS(2368), - [aux_sym_preproc_if_token1] = ACTIONS(2368), - [aux_sym_preproc_if_token2] = ACTIONS(2368), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2368), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2368), - [aux_sym_preproc_else_token1] = ACTIONS(2368), - [aux_sym_preproc_elif_token1] = ACTIONS(2368), - [sym_preproc_directive] = ACTIONS(2368), - [anon_sym_LPAREN2] = ACTIONS(2370), - [anon_sym_BANG] = ACTIONS(2370), - [anon_sym_TILDE] = ACTIONS(2370), - [anon_sym_DASH] = ACTIONS(2368), - [anon_sym_PLUS] = ACTIONS(2368), - [anon_sym_STAR] = ACTIONS(2370), - [anon_sym_AMP_AMP] = ACTIONS(2370), - [anon_sym_AMP] = ACTIONS(2368), - [anon_sym_SEMI] = ACTIONS(2370), - [anon_sym_typedef] = ACTIONS(2368), - [anon_sym_extern] = ACTIONS(2368), - [anon_sym___attribute__] = ACTIONS(2368), - [anon_sym_COLON_COLON] = ACTIONS(2370), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2370), - [anon_sym___declspec] = ACTIONS(2368), - [anon_sym___based] = ACTIONS(2368), - [anon_sym___cdecl] = ACTIONS(2368), - [anon_sym___clrcall] = ACTIONS(2368), - [anon_sym___stdcall] = ACTIONS(2368), - [anon_sym___fastcall] = ACTIONS(2368), - [anon_sym___thiscall] = ACTIONS(2368), - [anon_sym___vectorcall] = ACTIONS(2368), - [anon_sym_LBRACE] = ACTIONS(2370), - [anon_sym_LBRACK] = ACTIONS(2368), - [anon_sym_static] = ACTIONS(2368), - [anon_sym_register] = ACTIONS(2368), - [anon_sym_inline] = ACTIONS(2368), - [anon_sym_thread_local] = ACTIONS(2368), - [anon_sym_const] = ACTIONS(2368), - [anon_sym_volatile] = ACTIONS(2368), - [anon_sym_restrict] = ACTIONS(2368), - [anon_sym__Atomic] = ACTIONS(2368), - [anon_sym_mutable] = ACTIONS(2368), - [anon_sym_constexpr] = ACTIONS(2368), - [anon_sym_constinit] = ACTIONS(2368), - [anon_sym_consteval] = ACTIONS(2368), - [anon_sym_signed] = ACTIONS(2368), - [anon_sym_unsigned] = ACTIONS(2368), - [anon_sym_long] = ACTIONS(2368), - [anon_sym_short] = ACTIONS(2368), - [sym_primitive_type] = ACTIONS(2368), - [anon_sym_enum] = ACTIONS(2368), - [anon_sym_class] = ACTIONS(2368), - [anon_sym_struct] = ACTIONS(2368), - [anon_sym_union] = ACTIONS(2368), - [anon_sym_if] = ACTIONS(2368), - [anon_sym_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_return] = ACTIONS(2368), - [anon_sym_break] = ACTIONS(2368), - [anon_sym_continue] = ACTIONS(2368), - [anon_sym_goto] = ACTIONS(2368), - [anon_sym_not] = ACTIONS(2368), - [anon_sym_compl] = ACTIONS(2368), - [anon_sym_DASH_DASH] = ACTIONS(2370), - [anon_sym_PLUS_PLUS] = ACTIONS(2370), - [anon_sym_sizeof] = ACTIONS(2368), - [sym_number_literal] = ACTIONS(2370), - [anon_sym_L_SQUOTE] = ACTIONS(2370), - [anon_sym_u_SQUOTE] = ACTIONS(2370), - [anon_sym_U_SQUOTE] = ACTIONS(2370), - [anon_sym_u8_SQUOTE] = ACTIONS(2370), - [anon_sym_SQUOTE] = ACTIONS(2370), - [anon_sym_L_DQUOTE] = ACTIONS(2370), - [anon_sym_u_DQUOTE] = ACTIONS(2370), - [anon_sym_U_DQUOTE] = ACTIONS(2370), - [anon_sym_u8_DQUOTE] = ACTIONS(2370), - [anon_sym_DQUOTE] = ACTIONS(2370), - [sym_true] = ACTIONS(2368), - [sym_false] = ACTIONS(2368), - [sym_null] = ACTIONS(2368), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2368), - [anon_sym_decltype] = ACTIONS(2368), - [anon_sym_virtual] = ACTIONS(2368), - [anon_sym_explicit] = ACTIONS(2368), - [anon_sym_typename] = ACTIONS(2368), - [anon_sym_template] = ACTIONS(2368), - [anon_sym_operator] = ACTIONS(2368), - [anon_sym_try] = ACTIONS(2368), - [anon_sym_delete] = ACTIONS(2368), - [anon_sym_throw] = ACTIONS(2368), - [anon_sym_namespace] = ACTIONS(2368), - [anon_sym_using] = ACTIONS(2368), - [anon_sym_static_assert] = ACTIONS(2368), - [anon_sym_concept] = ACTIONS(2368), - [anon_sym_co_return] = ACTIONS(2368), - [anon_sym_co_yield] = ACTIONS(2368), - [anon_sym_catch] = ACTIONS(2372), - [anon_sym_R_DQUOTE] = ACTIONS(2370), - [anon_sym_LR_DQUOTE] = ACTIONS(2370), - [anon_sym_uR_DQUOTE] = ACTIONS(2370), - [anon_sym_UR_DQUOTE] = ACTIONS(2370), - [anon_sym_u8R_DQUOTE] = ACTIONS(2370), - [anon_sym_co_await] = ACTIONS(2368), - [anon_sym_new] = ACTIONS(2368), - [anon_sym_requires] = ACTIONS(2368), - [sym_this] = ACTIONS(2368), - [sym_nullptr] = ACTIONS(2368), + [sym_attribute_declaration] = STATE(309), + [sym_compound_statement] = STATE(1032), + [sym_attributed_statement] = STATE(1032), + [sym_labeled_statement] = STATE(1032), + [sym_expression_statement] = STATE(1032), + [sym_if_statement] = STATE(1032), + [sym_switch_statement] = STATE(1032), + [sym_case_statement] = STATE(1032), + [sym_while_statement] = STATE(1032), + [sym_do_statement] = STATE(1032), + [sym_for_statement] = STATE(1032), + [sym_return_statement] = STATE(1032), + [sym_break_statement] = STATE(1032), + [sym_continue_statement] = STATE(1032), + [sym_goto_statement] = STATE(1032), + [sym__expression] = STATE(4182), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7590), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(1032), + [sym_co_return_statement] = STATE(1032), + [sym_co_yield_statement] = STATE(1032), + [sym_throw_statement] = STATE(1032), + [sym_try_statement] = STATE(1032), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(309), + [sym_identifier] = ACTIONS(2103), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(167), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(181), + [anon_sym_switch] = ACTIONS(183), + [anon_sym_case] = ACTIONS(185), + [anon_sym_default] = ACTIONS(187), + [anon_sym_while] = ACTIONS(189), + [anon_sym_do] = ACTIONS(191), + [anon_sym_for] = ACTIONS(193), + [anon_sym_return] = ACTIONS(195), + [anon_sym_break] = ACTIONS(197), + [anon_sym_continue] = ACTIONS(199), + [anon_sym_goto] = ACTIONS(201), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(209), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(211), + [anon_sym_co_return] = ACTIONS(221), + [anon_sym_co_yield] = ACTIONS(223), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [319] = { - [sym_type_qualifier] = STATE(3299), - [sym__type_specifier] = STATE(3894), - [sym_sized_type_specifier] = STATE(2541), - [sym_enum_specifier] = STATE(2541), - [sym_struct_specifier] = STATE(2541), - [sym_union_specifier] = STATE(2541), - [sym__expression] = STATE(2705), - [sym_comma_expression] = STATE(6624), - [sym_conditional_expression] = STATE(3035), - [sym_assignment_expression] = STATE(3035), - [sym_pointer_expression] = STATE(2713), - [sym_unary_expression] = STATE(3035), - [sym_binary_expression] = STATE(3035), - [sym_update_expression] = STATE(3035), - [sym_cast_expression] = STATE(3035), - [sym_type_descriptor] = STATE(6573), - [sym_sizeof_expression] = STATE(3035), - [sym_subscript_expression] = STATE(2713), - [sym_call_expression] = STATE(2713), - [sym_field_expression] = STATE(2713), - [sym_compound_literal_expression] = STATE(3035), - [sym_parenthesized_expression] = STATE(2713), - [sym_char_literal] = STATE(3013), - [sym_concatenated_string] = STATE(3013), - [sym_string_literal] = STATE(1900), - [sym_placeholder_type_specifier] = STATE(2541), - [sym_decltype_auto] = STATE(2540), - [sym_decltype] = STATE(2247), - [sym_class_specifier] = STATE(2541), - [sym__class_name] = STATE(5990), - [sym_dependent_type] = STATE(2541), - [sym_template_type] = STATE(4288), - [sym_template_function] = STATE(3035), - [sym_raw_string_literal] = STATE(1900), - [sym_co_await_expression] = STATE(3035), - [sym_new_expression] = STATE(3035), - [sym_delete_expression] = STATE(3035), - [sym_requires_clause] = STATE(3035), - [sym_requires_expression] = STATE(3035), - [sym_lambda_expression] = STATE(3035), - [sym_lambda_capture_specifier] = STATE(4465), - [sym__unary_left_fold] = STATE(6628), - [sym__unary_right_fold] = STATE(6395), - [sym__binary_fold] = STATE(6571), - [sym_fold_expression] = STATE(3035), - [sym_parameter_pack_expansion] = STATE(3035), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4537), - [sym_qualified_identifier] = STATE(2713), - [sym_qualified_type_identifier] = STATE(4356), - [sym_user_defined_literal] = STATE(3035), - [aux_sym_type_definition_repeat1] = STATE(3299), - [aux_sym_sized_type_specifier_repeat1] = STATE(1922), - [sym_identifier] = ACTIONS(2366), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1435), - [anon_sym_LPAREN2] = ACTIONS(1439), - [anon_sym_BANG] = ACTIONS(1441), - [anon_sym_TILDE] = ACTIONS(1441), - [anon_sym_DASH] = ACTIONS(1443), - [anon_sym_PLUS] = ACTIONS(1443), - [anon_sym_STAR] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(1445), - [anon_sym_COLON_COLON] = ACTIONS(1447), - [anon_sym_LBRACK] = ACTIONS(1539), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(1503), - [anon_sym_unsigned] = ACTIONS(1503), - [anon_sym_long] = ACTIONS(1503), - [anon_sym_short] = ACTIONS(1503), - [sym_primitive_type] = ACTIONS(1505), - [anon_sym_enum] = ACTIONS(1507), - [anon_sym_class] = ACTIONS(1509), - [anon_sym_struct] = ACTIONS(1511), - [anon_sym_union] = ACTIONS(1513), - [anon_sym_not] = ACTIONS(1443), - [anon_sym_compl] = ACTIONS(1443), - [anon_sym_DASH_DASH] = ACTIONS(1459), - [anon_sym_PLUS_PLUS] = ACTIONS(1459), - [anon_sym_sizeof] = ACTIONS(1461), - [sym_number_literal] = ACTIONS(1463), - [anon_sym_L_SQUOTE] = ACTIONS(1465), - [anon_sym_u_SQUOTE] = ACTIONS(1465), - [anon_sym_U_SQUOTE] = ACTIONS(1465), - [anon_sym_u8_SQUOTE] = ACTIONS(1465), - [anon_sym_SQUOTE] = ACTIONS(1465), - [anon_sym_L_DQUOTE] = ACTIONS(1467), - [anon_sym_u_DQUOTE] = ACTIONS(1467), - [anon_sym_U_DQUOTE] = ACTIONS(1467), - [anon_sym_u8_DQUOTE] = ACTIONS(1467), - [anon_sym_DQUOTE] = ACTIONS(1467), - [sym_true] = ACTIONS(1469), - [sym_false] = ACTIONS(1469), - [sym_null] = ACTIONS(1469), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1515), - [anon_sym_decltype] = ACTIONS(1517), - [anon_sym_typename] = ACTIONS(1519), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1473), - [anon_sym_R_DQUOTE] = ACTIONS(1475), - [anon_sym_LR_DQUOTE] = ACTIONS(1475), - [anon_sym_uR_DQUOTE] = ACTIONS(1475), - [anon_sym_UR_DQUOTE] = ACTIONS(1475), - [anon_sym_u8R_DQUOTE] = ACTIONS(1475), - [anon_sym_co_await] = ACTIONS(1477), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_requires] = ACTIONS(1481), - [sym_this] = ACTIONS(1469), - [sym_nullptr] = ACTIONS(1469), + [sym_attribute_declaration] = STATE(251), + [sym_compound_statement] = STATE(686), + [sym_attributed_statement] = STATE(681), + [sym_labeled_statement] = STATE(670), + [sym_expression_statement] = STATE(614), + [sym_if_statement] = STATE(611), + [sym_switch_statement] = STATE(609), + [sym_case_statement] = STATE(608), + [sym_while_statement] = STATE(606), + [sym_do_statement] = STATE(660), + [sym_for_statement] = STATE(672), + [sym_return_statement] = STATE(673), + [sym_break_statement] = STATE(675), + [sym_continue_statement] = STATE(699), + [sym_goto_statement] = STATE(704), + [sym__expression] = STATE(4169), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7079), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(722), + [sym_co_return_statement] = STATE(728), + [sym_co_yield_statement] = STATE(737), + [sym_throw_statement] = STATE(738), + [sym_try_statement] = STATE(742), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(251), + [sym_identifier] = ACTIONS(2107), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(345), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(351), + [anon_sym_LBRACK] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(355), + [anon_sym_switch] = ACTIONS(357), + [anon_sym_case] = ACTIONS(359), + [anon_sym_default] = ACTIONS(361), + [anon_sym_while] = ACTIONS(363), + [anon_sym_do] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_return] = ACTIONS(369), + [anon_sym_break] = ACTIONS(371), + [anon_sym_continue] = ACTIONS(373), + [anon_sym_goto] = ACTIONS(375), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(379), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(381), + [anon_sym_co_return] = ACTIONS(391), + [anon_sym_co_yield] = ACTIONS(393), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [320] = { - [sym_type_qualifier] = STATE(3299), - [sym__type_specifier] = STATE(3894), - [sym_sized_type_specifier] = STATE(2541), - [sym_enum_specifier] = STATE(2541), - [sym_struct_specifier] = STATE(2541), - [sym_union_specifier] = STATE(2541), - [sym__expression] = STATE(2826), - [sym_comma_expression] = STATE(6252), - [sym_conditional_expression] = STATE(3035), - [sym_assignment_expression] = STATE(3035), - [sym_pointer_expression] = STATE(2713), - [sym_unary_expression] = STATE(3035), - [sym_binary_expression] = STATE(3035), - [sym_update_expression] = STATE(3035), - [sym_cast_expression] = STATE(3035), - [sym_type_descriptor] = STATE(6547), - [sym_sizeof_expression] = STATE(3035), - [sym_subscript_expression] = STATE(2713), - [sym_call_expression] = STATE(2713), - [sym_field_expression] = STATE(2713), - [sym_compound_literal_expression] = STATE(3035), - [sym_parenthesized_expression] = STATE(2713), - [sym_char_literal] = STATE(3013), - [sym_concatenated_string] = STATE(3013), - [sym_string_literal] = STATE(1900), - [sym_placeholder_type_specifier] = STATE(2541), - [sym_decltype_auto] = STATE(2540), - [sym_decltype] = STATE(2247), - [sym_class_specifier] = STATE(2541), - [sym__class_name] = STATE(5990), - [sym_dependent_type] = STATE(2541), - [sym_template_type] = STATE(4288), - [sym_template_function] = STATE(3035), - [sym_raw_string_literal] = STATE(1900), - [sym_co_await_expression] = STATE(3035), - [sym_new_expression] = STATE(3035), - [sym_delete_expression] = STATE(3035), - [sym_requires_clause] = STATE(3035), - [sym_requires_expression] = STATE(3035), - [sym_lambda_expression] = STATE(3035), - [sym_lambda_capture_specifier] = STATE(4465), - [sym__unary_left_fold] = STATE(6490), - [sym__unary_right_fold] = STATE(6489), - [sym__binary_fold] = STATE(6487), - [sym_fold_expression] = STATE(3035), - [sym_parameter_pack_expansion] = STATE(3035), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4537), - [sym_qualified_identifier] = STATE(2713), - [sym_qualified_type_identifier] = STATE(4356), - [sym_user_defined_literal] = STATE(3035), - [aux_sym_type_definition_repeat1] = STATE(3299), - [aux_sym_sized_type_specifier_repeat1] = STATE(1922), - [sym_identifier] = ACTIONS(2366), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1435), - [anon_sym_LPAREN2] = ACTIONS(1439), - [anon_sym_BANG] = ACTIONS(1441), - [anon_sym_TILDE] = ACTIONS(1441), - [anon_sym_DASH] = ACTIONS(1443), - [anon_sym_PLUS] = ACTIONS(1443), - [anon_sym_STAR] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(1445), - [anon_sym_COLON_COLON] = ACTIONS(1447), - [anon_sym_LBRACK] = ACTIONS(1539), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(1503), - [anon_sym_unsigned] = ACTIONS(1503), - [anon_sym_long] = ACTIONS(1503), - [anon_sym_short] = ACTIONS(1503), - [sym_primitive_type] = ACTIONS(1505), - [anon_sym_enum] = ACTIONS(1507), - [anon_sym_class] = ACTIONS(1509), - [anon_sym_struct] = ACTIONS(1511), - [anon_sym_union] = ACTIONS(1513), - [anon_sym_not] = ACTIONS(1443), - [anon_sym_compl] = ACTIONS(1443), - [anon_sym_DASH_DASH] = ACTIONS(1459), - [anon_sym_PLUS_PLUS] = ACTIONS(1459), - [anon_sym_sizeof] = ACTIONS(1461), - [sym_number_literal] = ACTIONS(1463), - [anon_sym_L_SQUOTE] = ACTIONS(1465), - [anon_sym_u_SQUOTE] = ACTIONS(1465), - [anon_sym_U_SQUOTE] = ACTIONS(1465), - [anon_sym_u8_SQUOTE] = ACTIONS(1465), - [anon_sym_SQUOTE] = ACTIONS(1465), - [anon_sym_L_DQUOTE] = ACTIONS(1467), - [anon_sym_u_DQUOTE] = ACTIONS(1467), - [anon_sym_U_DQUOTE] = ACTIONS(1467), - [anon_sym_u8_DQUOTE] = ACTIONS(1467), - [anon_sym_DQUOTE] = ACTIONS(1467), - [sym_true] = ACTIONS(1469), - [sym_false] = ACTIONS(1469), - [sym_null] = ACTIONS(1469), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1515), - [anon_sym_decltype] = ACTIONS(1517), - [anon_sym_typename] = ACTIONS(1519), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1473), - [anon_sym_R_DQUOTE] = ACTIONS(1475), - [anon_sym_LR_DQUOTE] = ACTIONS(1475), - [anon_sym_uR_DQUOTE] = ACTIONS(1475), - [anon_sym_UR_DQUOTE] = ACTIONS(1475), - [anon_sym_u8R_DQUOTE] = ACTIONS(1475), - [anon_sym_co_await] = ACTIONS(1477), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_requires] = ACTIONS(1481), - [sym_this] = ACTIONS(1469), - [sym_nullptr] = ACTIONS(1469), + [sym_attribute_declaration] = STATE(189), + [sym_compound_statement] = STATE(1069), + [sym_attributed_statement] = STATE(1069), + [sym_labeled_statement] = STATE(1069), + [sym_expression_statement] = STATE(1069), + [sym_if_statement] = STATE(1069), + [sym_switch_statement] = STATE(1069), + [sym_case_statement] = STATE(1069), + [sym_while_statement] = STATE(1069), + [sym_do_statement] = STATE(1069), + [sym_for_statement] = STATE(1069), + [sym_return_statement] = STATE(1069), + [sym_break_statement] = STATE(1069), + [sym_continue_statement] = STATE(1069), + [sym_goto_statement] = STATE(1069), + [sym__expression] = STATE(4126), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(6964), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_for_range_loop] = STATE(1069), + [sym_co_return_statement] = STATE(1069), + [sym_co_yield_statement] = STATE(1069), + [sym_throw_statement] = STATE(1069), + [sym_try_statement] = STATE(1069), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_attributed_declarator_repeat1] = STATE(189), + [sym_identifier] = ACTIONS(2099), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(911), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(917), + [anon_sym_LBRACK] = ACTIONS(1327), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(921), + [anon_sym_switch] = ACTIONS(923), + [anon_sym_case] = ACTIONS(925), + [anon_sym_default] = ACTIONS(927), + [anon_sym_while] = ACTIONS(929), + [anon_sym_do] = ACTIONS(931), + [anon_sym_for] = ACTIONS(933), + [anon_sym_return] = ACTIONS(935), + [anon_sym_break] = ACTIONS(937), + [anon_sym_continue] = ACTIONS(939), + [anon_sym_goto] = ACTIONS(941), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_try] = ACTIONS(945), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_throw] = ACTIONS(947), + [anon_sym_co_return] = ACTIONS(957), + [anon_sym_co_yield] = ACTIONS(959), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [321] = { - [sym_type_qualifier] = STATE(3299), - [sym__type_specifier] = STATE(3894), - [sym_sized_type_specifier] = STATE(2541), - [sym_enum_specifier] = STATE(2541), - [sym_struct_specifier] = STATE(2541), - [sym_union_specifier] = STATE(2541), - [sym__expression] = STATE(2826), - [sym_comma_expression] = STATE(6252), - [sym_conditional_expression] = STATE(3035), - [sym_assignment_expression] = STATE(3035), - [sym_pointer_expression] = STATE(2713), - [sym_unary_expression] = STATE(3035), - [sym_binary_expression] = STATE(3035), - [sym_update_expression] = STATE(3035), - [sym_cast_expression] = STATE(3035), - [sym_type_descriptor] = STATE(6301), - [sym_sizeof_expression] = STATE(3035), - [sym_subscript_expression] = STATE(2713), - [sym_call_expression] = STATE(2713), - [sym_field_expression] = STATE(2713), - [sym_compound_literal_expression] = STATE(3035), - [sym_parenthesized_expression] = STATE(2713), - [sym_char_literal] = STATE(3013), - [sym_concatenated_string] = STATE(3013), - [sym_string_literal] = STATE(1900), - [sym_placeholder_type_specifier] = STATE(2541), - [sym_decltype_auto] = STATE(2540), - [sym_decltype] = STATE(2247), - [sym_class_specifier] = STATE(2541), - [sym__class_name] = STATE(5990), - [sym_dependent_type] = STATE(2541), - [sym_template_type] = STATE(4288), - [sym_template_function] = STATE(3035), - [sym_raw_string_literal] = STATE(1900), - [sym_co_await_expression] = STATE(3035), - [sym_new_expression] = STATE(3035), - [sym_delete_expression] = STATE(3035), - [sym_requires_clause] = STATE(3035), - [sym_requires_expression] = STATE(3035), - [sym_lambda_expression] = STATE(3035), - [sym_lambda_capture_specifier] = STATE(4465), - [sym__unary_left_fold] = STATE(6259), - [sym__unary_right_fold] = STATE(6262), - [sym__binary_fold] = STATE(6267), - [sym_fold_expression] = STATE(3035), - [sym_parameter_pack_expansion] = STATE(3035), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4537), - [sym_qualified_identifier] = STATE(2713), - [sym_qualified_type_identifier] = STATE(4356), - [sym_user_defined_literal] = STATE(3035), - [aux_sym_type_definition_repeat1] = STATE(3299), - [aux_sym_sized_type_specifier_repeat1] = STATE(1922), - [sym_identifier] = ACTIONS(2366), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1435), - [anon_sym_LPAREN2] = ACTIONS(1439), - [anon_sym_BANG] = ACTIONS(1441), - [anon_sym_TILDE] = ACTIONS(1441), - [anon_sym_DASH] = ACTIONS(1443), - [anon_sym_PLUS] = ACTIONS(1443), - [anon_sym_STAR] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(1445), - [anon_sym_COLON_COLON] = ACTIONS(1447), - [anon_sym_LBRACK] = ACTIONS(1539), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(1503), - [anon_sym_unsigned] = ACTIONS(1503), - [anon_sym_long] = ACTIONS(1503), - [anon_sym_short] = ACTIONS(1503), - [sym_primitive_type] = ACTIONS(1505), - [anon_sym_enum] = ACTIONS(1507), - [anon_sym_class] = ACTIONS(1509), - [anon_sym_struct] = ACTIONS(1511), - [anon_sym_union] = ACTIONS(1513), - [anon_sym_not] = ACTIONS(1443), - [anon_sym_compl] = ACTIONS(1443), - [anon_sym_DASH_DASH] = ACTIONS(1459), - [anon_sym_PLUS_PLUS] = ACTIONS(1459), - [anon_sym_sizeof] = ACTIONS(1461), - [sym_number_literal] = ACTIONS(1463), - [anon_sym_L_SQUOTE] = ACTIONS(1465), - [anon_sym_u_SQUOTE] = ACTIONS(1465), - [anon_sym_U_SQUOTE] = ACTIONS(1465), - [anon_sym_u8_SQUOTE] = ACTIONS(1465), - [anon_sym_SQUOTE] = ACTIONS(1465), - [anon_sym_L_DQUOTE] = ACTIONS(1467), - [anon_sym_u_DQUOTE] = ACTIONS(1467), - [anon_sym_U_DQUOTE] = ACTIONS(1467), - [anon_sym_u8_DQUOTE] = ACTIONS(1467), - [anon_sym_DQUOTE] = ACTIONS(1467), - [sym_true] = ACTIONS(1469), - [sym_false] = ACTIONS(1469), - [sym_null] = ACTIONS(1469), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1515), - [anon_sym_decltype] = ACTIONS(1517), - [anon_sym_typename] = ACTIONS(1519), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1473), - [anon_sym_R_DQUOTE] = ACTIONS(1475), - [anon_sym_LR_DQUOTE] = ACTIONS(1475), - [anon_sym_uR_DQUOTE] = ACTIONS(1475), - [anon_sym_UR_DQUOTE] = ACTIONS(1475), - [anon_sym_u8R_DQUOTE] = ACTIONS(1475), - [anon_sym_co_await] = ACTIONS(1477), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_requires] = ACTIONS(1481), - [sym_this] = ACTIONS(1469), - [sym_nullptr] = ACTIONS(1469), - }, - [322] = { - [sym_type_qualifier] = STATE(3299), - [sym__type_specifier] = STATE(3894), - [sym_sized_type_specifier] = STATE(2541), - [sym_enum_specifier] = STATE(2541), - [sym_struct_specifier] = STATE(2541), - [sym_union_specifier] = STATE(2541), - [sym__expression] = STATE(2826), - [sym_comma_expression] = STATE(6252), - [sym_conditional_expression] = STATE(3035), - [sym_assignment_expression] = STATE(3035), - [sym_pointer_expression] = STATE(2713), - [sym_unary_expression] = STATE(3035), - [sym_binary_expression] = STATE(3035), - [sym_update_expression] = STATE(3035), - [sym_cast_expression] = STATE(3035), - [sym_type_descriptor] = STATE(6413), - [sym_sizeof_expression] = STATE(3035), - [sym_subscript_expression] = STATE(2713), - [sym_call_expression] = STATE(2713), - [sym_field_expression] = STATE(2713), - [sym_compound_literal_expression] = STATE(3035), - [sym_parenthesized_expression] = STATE(2713), - [sym_char_literal] = STATE(3013), - [sym_concatenated_string] = STATE(3013), - [sym_string_literal] = STATE(1900), - [sym_placeholder_type_specifier] = STATE(2541), - [sym_decltype_auto] = STATE(2540), - [sym_decltype] = STATE(2247), - [sym_class_specifier] = STATE(2541), - [sym__class_name] = STATE(5990), - [sym_dependent_type] = STATE(2541), - [sym_template_type] = STATE(4288), - [sym_template_function] = STATE(3035), - [sym_raw_string_literal] = STATE(1900), - [sym_co_await_expression] = STATE(3035), - [sym_new_expression] = STATE(3035), - [sym_delete_expression] = STATE(3035), - [sym_requires_clause] = STATE(3035), - [sym_requires_expression] = STATE(3035), - [sym_lambda_expression] = STATE(3035), - [sym_lambda_capture_specifier] = STATE(4465), - [sym__unary_left_fold] = STATE(6259), - [sym__unary_right_fold] = STATE(6262), - [sym__binary_fold] = STATE(6267), - [sym_fold_expression] = STATE(3035), - [sym_parameter_pack_expansion] = STATE(3035), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4537), - [sym_qualified_identifier] = STATE(2713), - [sym_qualified_type_identifier] = STATE(4356), - [sym_user_defined_literal] = STATE(3035), - [aux_sym_type_definition_repeat1] = STATE(3299), - [aux_sym_sized_type_specifier_repeat1] = STATE(1922), - [sym_identifier] = ACTIONS(2366), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1435), - [anon_sym_LPAREN2] = ACTIONS(1439), - [anon_sym_BANG] = ACTIONS(1441), - [anon_sym_TILDE] = ACTIONS(1441), - [anon_sym_DASH] = ACTIONS(1443), - [anon_sym_PLUS] = ACTIONS(1443), - [anon_sym_STAR] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(1445), - [anon_sym_COLON_COLON] = ACTIONS(1447), - [anon_sym_LBRACK] = ACTIONS(1539), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(1503), - [anon_sym_unsigned] = ACTIONS(1503), - [anon_sym_long] = ACTIONS(1503), - [anon_sym_short] = ACTIONS(1503), - [sym_primitive_type] = ACTIONS(1505), - [anon_sym_enum] = ACTIONS(1507), - [anon_sym_class] = ACTIONS(1509), - [anon_sym_struct] = ACTIONS(1511), - [anon_sym_union] = ACTIONS(1513), - [anon_sym_not] = ACTIONS(1443), - [anon_sym_compl] = ACTIONS(1443), - [anon_sym_DASH_DASH] = ACTIONS(1459), - [anon_sym_PLUS_PLUS] = ACTIONS(1459), - [anon_sym_sizeof] = ACTIONS(1461), - [sym_number_literal] = ACTIONS(1463), - [anon_sym_L_SQUOTE] = ACTIONS(1465), - [anon_sym_u_SQUOTE] = ACTIONS(1465), - [anon_sym_U_SQUOTE] = ACTIONS(1465), - [anon_sym_u8_SQUOTE] = ACTIONS(1465), - [anon_sym_SQUOTE] = ACTIONS(1465), - [anon_sym_L_DQUOTE] = ACTIONS(1467), - [anon_sym_u_DQUOTE] = ACTIONS(1467), - [anon_sym_U_DQUOTE] = ACTIONS(1467), - [anon_sym_u8_DQUOTE] = ACTIONS(1467), - [anon_sym_DQUOTE] = ACTIONS(1467), - [sym_true] = ACTIONS(1469), - [sym_false] = ACTIONS(1469), - [sym_null] = ACTIONS(1469), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1515), - [anon_sym_decltype] = ACTIONS(1517), - [anon_sym_typename] = ACTIONS(1519), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1473), - [anon_sym_R_DQUOTE] = ACTIONS(1475), - [anon_sym_LR_DQUOTE] = ACTIONS(1475), - [anon_sym_uR_DQUOTE] = ACTIONS(1475), - [anon_sym_UR_DQUOTE] = ACTIONS(1475), - [anon_sym_u8R_DQUOTE] = ACTIONS(1475), - [anon_sym_co_await] = ACTIONS(1477), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_requires] = ACTIONS(1481), - [sym_this] = ACTIONS(1469), - [sym_nullptr] = ACTIONS(1469), - }, - [323] = { - [sym_type_qualifier] = STATE(3299), - [sym__type_specifier] = STATE(3894), - [sym_sized_type_specifier] = STATE(2541), - [sym_enum_specifier] = STATE(2541), - [sym_struct_specifier] = STATE(2541), - [sym_union_specifier] = STATE(2541), - [sym__expression] = STATE(2826), - [sym_comma_expression] = STATE(6252), - [sym_conditional_expression] = STATE(3035), - [sym_assignment_expression] = STATE(3035), - [sym_pointer_expression] = STATE(2713), - [sym_unary_expression] = STATE(3035), - [sym_binary_expression] = STATE(3035), - [sym_update_expression] = STATE(3035), - [sym_cast_expression] = STATE(3035), - [sym_type_descriptor] = STATE(6277), - [sym_sizeof_expression] = STATE(3035), - [sym_subscript_expression] = STATE(2713), - [sym_call_expression] = STATE(2713), - [sym_field_expression] = STATE(2713), - [sym_compound_literal_expression] = STATE(3035), - [sym_parenthesized_expression] = STATE(2713), - [sym_char_literal] = STATE(3013), - [sym_concatenated_string] = STATE(3013), - [sym_string_literal] = STATE(1900), - [sym_placeholder_type_specifier] = STATE(2541), - [sym_decltype_auto] = STATE(2540), - [sym_decltype] = STATE(2247), - [sym_class_specifier] = STATE(2541), - [sym__class_name] = STATE(5990), - [sym_dependent_type] = STATE(2541), - [sym_template_type] = STATE(4288), - [sym_template_function] = STATE(3035), - [sym_raw_string_literal] = STATE(1900), - [sym_co_await_expression] = STATE(3035), - [sym_new_expression] = STATE(3035), - [sym_delete_expression] = STATE(3035), - [sym_requires_clause] = STATE(3035), - [sym_requires_expression] = STATE(3035), - [sym_lambda_expression] = STATE(3035), - [sym_lambda_capture_specifier] = STATE(4465), - [sym__unary_left_fold] = STATE(6259), - [sym__unary_right_fold] = STATE(6262), - [sym__binary_fold] = STATE(6267), - [sym_fold_expression] = STATE(3035), - [sym_parameter_pack_expansion] = STATE(3035), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4537), - [sym_qualified_identifier] = STATE(2713), - [sym_qualified_type_identifier] = STATE(4356), - [sym_user_defined_literal] = STATE(3035), - [aux_sym_type_definition_repeat1] = STATE(3299), - [aux_sym_sized_type_specifier_repeat1] = STATE(1922), - [sym_identifier] = ACTIONS(2366), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1435), - [anon_sym_LPAREN2] = ACTIONS(1439), - [anon_sym_BANG] = ACTIONS(1441), - [anon_sym_TILDE] = ACTIONS(1441), - [anon_sym_DASH] = ACTIONS(1443), - [anon_sym_PLUS] = ACTIONS(1443), - [anon_sym_STAR] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(1445), - [anon_sym_COLON_COLON] = ACTIONS(1447), - [anon_sym_LBRACK] = ACTIONS(1539), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(1503), - [anon_sym_unsigned] = ACTIONS(1503), - [anon_sym_long] = ACTIONS(1503), - [anon_sym_short] = ACTIONS(1503), - [sym_primitive_type] = ACTIONS(1505), - [anon_sym_enum] = ACTIONS(1507), - [anon_sym_class] = ACTIONS(1509), - [anon_sym_struct] = ACTIONS(1511), - [anon_sym_union] = ACTIONS(1513), - [anon_sym_not] = ACTIONS(1443), - [anon_sym_compl] = ACTIONS(1443), - [anon_sym_DASH_DASH] = ACTIONS(1459), - [anon_sym_PLUS_PLUS] = ACTIONS(1459), - [anon_sym_sizeof] = ACTIONS(1461), - [sym_number_literal] = ACTIONS(1463), - [anon_sym_L_SQUOTE] = ACTIONS(1465), - [anon_sym_u_SQUOTE] = ACTIONS(1465), - [anon_sym_U_SQUOTE] = ACTIONS(1465), - [anon_sym_u8_SQUOTE] = ACTIONS(1465), - [anon_sym_SQUOTE] = ACTIONS(1465), - [anon_sym_L_DQUOTE] = ACTIONS(1467), - [anon_sym_u_DQUOTE] = ACTIONS(1467), - [anon_sym_U_DQUOTE] = ACTIONS(1467), - [anon_sym_u8_DQUOTE] = ACTIONS(1467), - [anon_sym_DQUOTE] = ACTIONS(1467), - [sym_true] = ACTIONS(1469), - [sym_false] = ACTIONS(1469), - [sym_null] = ACTIONS(1469), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1515), - [anon_sym_decltype] = ACTIONS(1517), - [anon_sym_typename] = ACTIONS(1519), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1473), - [anon_sym_R_DQUOTE] = ACTIONS(1475), - [anon_sym_LR_DQUOTE] = ACTIONS(1475), - [anon_sym_uR_DQUOTE] = ACTIONS(1475), - [anon_sym_UR_DQUOTE] = ACTIONS(1475), - [anon_sym_u8R_DQUOTE] = ACTIONS(1475), - [anon_sym_co_await] = ACTIONS(1477), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_requires] = ACTIONS(1481), - [sym_this] = ACTIONS(1469), - [sym_nullptr] = ACTIONS(1469), - }, - [324] = { - [sym_catch_clause] = STATE(324), - [aux_sym_constructor_try_statement_repeat1] = STATE(324), - [sym_identifier] = ACTIONS(2374), - [aux_sym_preproc_include_token1] = ACTIONS(2374), - [aux_sym_preproc_def_token1] = ACTIONS(2374), - [aux_sym_preproc_if_token1] = ACTIONS(2374), - [aux_sym_preproc_if_token2] = ACTIONS(2374), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2374), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2374), - [aux_sym_preproc_else_token1] = ACTIONS(2374), - [aux_sym_preproc_elif_token1] = ACTIONS(2374), - [sym_preproc_directive] = ACTIONS(2374), - [anon_sym_LPAREN2] = ACTIONS(2376), - [anon_sym_BANG] = ACTIONS(2376), - [anon_sym_TILDE] = ACTIONS(2376), - [anon_sym_DASH] = ACTIONS(2374), - [anon_sym_PLUS] = ACTIONS(2374), - [anon_sym_STAR] = ACTIONS(2376), - [anon_sym_AMP_AMP] = ACTIONS(2376), - [anon_sym_AMP] = ACTIONS(2374), - [anon_sym_SEMI] = ACTIONS(2376), - [anon_sym_typedef] = ACTIONS(2374), - [anon_sym_extern] = ACTIONS(2374), - [anon_sym___attribute__] = ACTIONS(2374), - [anon_sym_COLON_COLON] = ACTIONS(2376), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2376), - [anon_sym___declspec] = ACTIONS(2374), - [anon_sym___based] = ACTIONS(2374), - [anon_sym___cdecl] = ACTIONS(2374), - [anon_sym___clrcall] = ACTIONS(2374), - [anon_sym___stdcall] = ACTIONS(2374), - [anon_sym___fastcall] = ACTIONS(2374), - [anon_sym___thiscall] = ACTIONS(2374), - [anon_sym___vectorcall] = ACTIONS(2374), - [anon_sym_LBRACE] = ACTIONS(2376), - [anon_sym_LBRACK] = ACTIONS(2374), - [anon_sym_static] = ACTIONS(2374), - [anon_sym_register] = ACTIONS(2374), - [anon_sym_inline] = ACTIONS(2374), - [anon_sym_thread_local] = ACTIONS(2374), - [anon_sym_const] = ACTIONS(2374), - [anon_sym_volatile] = ACTIONS(2374), - [anon_sym_restrict] = ACTIONS(2374), - [anon_sym__Atomic] = ACTIONS(2374), - [anon_sym_mutable] = ACTIONS(2374), - [anon_sym_constexpr] = ACTIONS(2374), - [anon_sym_constinit] = ACTIONS(2374), - [anon_sym_consteval] = ACTIONS(2374), - [anon_sym_signed] = ACTIONS(2374), - [anon_sym_unsigned] = ACTIONS(2374), - [anon_sym_long] = ACTIONS(2374), - [anon_sym_short] = ACTIONS(2374), - [sym_primitive_type] = ACTIONS(2374), - [anon_sym_enum] = ACTIONS(2374), - [anon_sym_class] = ACTIONS(2374), - [anon_sym_struct] = ACTIONS(2374), - [anon_sym_union] = ACTIONS(2374), - [anon_sym_if] = ACTIONS(2374), - [anon_sym_else] = ACTIONS(2374), - [anon_sym_switch] = ACTIONS(2374), - [anon_sym_case] = ACTIONS(2374), - [anon_sym_default] = ACTIONS(2374), - [anon_sym_while] = ACTIONS(2374), - [anon_sym_do] = ACTIONS(2374), - [anon_sym_for] = ACTIONS(2374), - [anon_sym_return] = ACTIONS(2374), - [anon_sym_break] = ACTIONS(2374), - [anon_sym_continue] = ACTIONS(2374), - [anon_sym_goto] = ACTIONS(2374), - [anon_sym_not] = ACTIONS(2374), - [anon_sym_compl] = ACTIONS(2374), - [anon_sym_DASH_DASH] = ACTIONS(2376), - [anon_sym_PLUS_PLUS] = ACTIONS(2376), - [anon_sym_sizeof] = ACTIONS(2374), - [sym_number_literal] = ACTIONS(2376), - [anon_sym_L_SQUOTE] = ACTIONS(2376), - [anon_sym_u_SQUOTE] = ACTIONS(2376), - [anon_sym_U_SQUOTE] = ACTIONS(2376), - [anon_sym_u8_SQUOTE] = ACTIONS(2376), - [anon_sym_SQUOTE] = ACTIONS(2376), - [anon_sym_L_DQUOTE] = ACTIONS(2376), - [anon_sym_u_DQUOTE] = ACTIONS(2376), - [anon_sym_U_DQUOTE] = ACTIONS(2376), - [anon_sym_u8_DQUOTE] = ACTIONS(2376), - [anon_sym_DQUOTE] = ACTIONS(2376), - [sym_true] = ACTIONS(2374), - [sym_false] = ACTIONS(2374), - [sym_null] = ACTIONS(2374), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2374), - [anon_sym_decltype] = ACTIONS(2374), - [anon_sym_virtual] = ACTIONS(2374), - [anon_sym_explicit] = ACTIONS(2374), - [anon_sym_typename] = ACTIONS(2374), - [anon_sym_template] = ACTIONS(2374), - [anon_sym_operator] = ACTIONS(2374), - [anon_sym_try] = ACTIONS(2374), - [anon_sym_delete] = ACTIONS(2374), - [anon_sym_throw] = ACTIONS(2374), - [anon_sym_namespace] = ACTIONS(2374), - [anon_sym_using] = ACTIONS(2374), - [anon_sym_static_assert] = ACTIONS(2374), - [anon_sym_concept] = ACTIONS(2374), - [anon_sym_co_return] = ACTIONS(2374), - [anon_sym_co_yield] = ACTIONS(2374), - [anon_sym_catch] = ACTIONS(2378), - [anon_sym_R_DQUOTE] = ACTIONS(2376), - [anon_sym_LR_DQUOTE] = ACTIONS(2376), - [anon_sym_uR_DQUOTE] = ACTIONS(2376), - [anon_sym_UR_DQUOTE] = ACTIONS(2376), - [anon_sym_u8R_DQUOTE] = ACTIONS(2376), - [anon_sym_co_await] = ACTIONS(2374), - [anon_sym_new] = ACTIONS(2374), - [anon_sym_requires] = ACTIONS(2374), - [sym_this] = ACTIONS(2374), - [sym_nullptr] = ACTIONS(2374), - }, - [325] = { - [sym_type_qualifier] = STATE(3299), - [sym__type_specifier] = STATE(3894), - [sym_sized_type_specifier] = STATE(2541), - [sym_enum_specifier] = STATE(2541), - [sym_struct_specifier] = STATE(2541), - [sym_union_specifier] = STATE(2541), - [sym__expression] = STATE(2710), - [sym_comma_expression] = STATE(6494), - [sym_conditional_expression] = STATE(3035), - [sym_assignment_expression] = STATE(3035), - [sym_pointer_expression] = STATE(2713), - [sym_unary_expression] = STATE(3035), - [sym_binary_expression] = STATE(3035), - [sym_update_expression] = STATE(3035), - [sym_cast_expression] = STATE(3035), - [sym_type_descriptor] = STATE(6213), - [sym_sizeof_expression] = STATE(3035), - [sym_subscript_expression] = STATE(2713), - [sym_call_expression] = STATE(2713), - [sym_field_expression] = STATE(2713), - [sym_compound_literal_expression] = STATE(3035), - [sym_parenthesized_expression] = STATE(2713), - [sym_char_literal] = STATE(3013), - [sym_concatenated_string] = STATE(3013), - [sym_string_literal] = STATE(1900), - [sym_placeholder_type_specifier] = STATE(2541), - [sym_decltype_auto] = STATE(2540), - [sym_decltype] = STATE(2247), - [sym_class_specifier] = STATE(2541), - [sym__class_name] = STATE(5990), - [sym_dependent_type] = STATE(2541), - [sym_template_type] = STATE(4288), - [sym_template_function] = STATE(3035), - [sym_raw_string_literal] = STATE(1900), - [sym_co_await_expression] = STATE(3035), - [sym_new_expression] = STATE(3035), - [sym_delete_expression] = STATE(3035), - [sym_requires_clause] = STATE(3035), - [sym_requires_expression] = STATE(3035), - [sym_lambda_expression] = STATE(3035), - [sym_lambda_capture_specifier] = STATE(4465), - [sym__unary_left_fold] = STATE(6210), - [sym__unary_right_fold] = STATE(6208), - [sym__binary_fold] = STATE(6207), - [sym_fold_expression] = STATE(3035), - [sym_parameter_pack_expansion] = STATE(3035), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4537), - [sym_qualified_identifier] = STATE(2713), - [sym_qualified_type_identifier] = STATE(4356), - [sym_user_defined_literal] = STATE(3035), - [aux_sym_type_definition_repeat1] = STATE(3299), - [aux_sym_sized_type_specifier_repeat1] = STATE(1922), - [sym_identifier] = ACTIONS(2366), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1435), - [anon_sym_LPAREN2] = ACTIONS(1439), - [anon_sym_BANG] = ACTIONS(1441), - [anon_sym_TILDE] = ACTIONS(1441), - [anon_sym_DASH] = ACTIONS(1443), - [anon_sym_PLUS] = ACTIONS(1443), - [anon_sym_STAR] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(1445), - [anon_sym_COLON_COLON] = ACTIONS(1447), - [anon_sym_LBRACK] = ACTIONS(1539), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(1503), - [anon_sym_unsigned] = ACTIONS(1503), - [anon_sym_long] = ACTIONS(1503), - [anon_sym_short] = ACTIONS(1503), - [sym_primitive_type] = ACTIONS(1505), - [anon_sym_enum] = ACTIONS(1507), - [anon_sym_class] = ACTIONS(1509), - [anon_sym_struct] = ACTIONS(1511), - [anon_sym_union] = ACTIONS(1513), - [anon_sym_not] = ACTIONS(1443), - [anon_sym_compl] = ACTIONS(1443), - [anon_sym_DASH_DASH] = ACTIONS(1459), - [anon_sym_PLUS_PLUS] = ACTIONS(1459), - [anon_sym_sizeof] = ACTIONS(1461), - [sym_number_literal] = ACTIONS(1463), - [anon_sym_L_SQUOTE] = ACTIONS(1465), - [anon_sym_u_SQUOTE] = ACTIONS(1465), - [anon_sym_U_SQUOTE] = ACTIONS(1465), - [anon_sym_u8_SQUOTE] = ACTIONS(1465), - [anon_sym_SQUOTE] = ACTIONS(1465), - [anon_sym_L_DQUOTE] = ACTIONS(1467), - [anon_sym_u_DQUOTE] = ACTIONS(1467), - [anon_sym_U_DQUOTE] = ACTIONS(1467), - [anon_sym_u8_DQUOTE] = ACTIONS(1467), - [anon_sym_DQUOTE] = ACTIONS(1467), - [sym_true] = ACTIONS(1469), - [sym_false] = ACTIONS(1469), - [sym_null] = ACTIONS(1469), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1515), - [anon_sym_decltype] = ACTIONS(1517), - [anon_sym_typename] = ACTIONS(1519), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1473), - [anon_sym_R_DQUOTE] = ACTIONS(1475), - [anon_sym_LR_DQUOTE] = ACTIONS(1475), - [anon_sym_uR_DQUOTE] = ACTIONS(1475), - [anon_sym_UR_DQUOTE] = ACTIONS(1475), - [anon_sym_u8R_DQUOTE] = ACTIONS(1475), - [anon_sym_co_await] = ACTIONS(1477), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_requires] = ACTIONS(1481), - [sym_this] = ACTIONS(1469), - [sym_nullptr] = ACTIONS(1469), + [ts_builtin_sym_end] = ACTIONS(2534), + [sym_identifier] = ACTIONS(2536), + [aux_sym_preproc_include_token1] = ACTIONS(2536), + [aux_sym_preproc_def_token1] = ACTIONS(2536), + [anon_sym_COMMA] = ACTIONS(2534), + [anon_sym_RPAREN] = ACTIONS(2534), + [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(2534), + [anon_sym_BANG] = ACTIONS(2534), + [anon_sym_TILDE] = ACTIONS(2534), + [anon_sym_DASH] = ACTIONS(2536), + [anon_sym_PLUS] = ACTIONS(2536), + [anon_sym_STAR] = ACTIONS(2534), + [anon_sym_PIPE_PIPE] = ACTIONS(2534), + [anon_sym_AMP_AMP] = ACTIONS(2534), + [anon_sym_AMP] = ACTIONS(2536), + [anon_sym_SEMI] = ACTIONS(2534), + [anon_sym_typedef] = ACTIONS(2536), + [anon_sym_extern] = ACTIONS(2536), + [anon_sym___attribute__] = ACTIONS(2536), + [anon_sym_COLON_COLON] = ACTIONS(2534), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2534), + [anon_sym___declspec] = ACTIONS(2536), + [anon_sym___based] = 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(2534), + [anon_sym_LBRACK] = ACTIONS(2536), + [anon_sym_EQ] = ACTIONS(2534), + [anon_sym_static] = ACTIONS(2536), + [anon_sym_register] = ACTIONS(2536), + [anon_sym_inline] = ACTIONS(2536), + [anon_sym_thread_local] = 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_noreturn] = ACTIONS(2536), + [anon_sym_mutable] = ACTIONS(2536), + [anon_sym_constinit] = ACTIONS(2536), + [anon_sym_consteval] = ACTIONS(2536), + [anon_sym_signed] = ACTIONS(2536), + [anon_sym_unsigned] = ACTIONS(2536), + [anon_sym_long] = ACTIONS(2536), + [anon_sym_short] = ACTIONS(2536), + [sym_primitive_type] = ACTIONS(2536), + [anon_sym_enum] = ACTIONS(2536), + [anon_sym_class] = 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_return] = ACTIONS(2536), + [anon_sym_break] = ACTIONS(2536), + [anon_sym_continue] = ACTIONS(2536), + [anon_sym_goto] = ACTIONS(2536), + [anon_sym_not] = ACTIONS(2536), + [anon_sym_compl] = ACTIONS(2536), + [anon_sym_or] = ACTIONS(2536), + [anon_sym_and] = ACTIONS(2536), + [anon_sym_DASH_DASH] = ACTIONS(2534), + [anon_sym_PLUS_PLUS] = ACTIONS(2534), + [anon_sym_sizeof] = ACTIONS(2536), + [anon_sym_offsetof] = ACTIONS(2536), + [anon_sym__Generic] = ACTIONS(2536), + [anon_sym_asm] = ACTIONS(2536), + [anon_sym___asm__] = ACTIONS(2536), + [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_L_DQUOTE] = ACTIONS(2534), + [anon_sym_u_DQUOTE] = ACTIONS(2534), + [anon_sym_U_DQUOTE] = ACTIONS(2534), + [anon_sym_u8_DQUOTE] = ACTIONS(2534), + [anon_sym_DQUOTE] = ACTIONS(2534), + [sym_true] = ACTIONS(2536), + [sym_false] = ACTIONS(2536), + [anon_sym_NULL] = ACTIONS(2536), + [anon_sym_nullptr] = ACTIONS(2536), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2536), + [anon_sym_decltype] = ACTIONS(2536), + [anon_sym_final] = ACTIONS(2536), + [anon_sym_override] = ACTIONS(2536), + [anon_sym_virtual] = ACTIONS(2536), + [anon_sym_explicit] = ACTIONS(2536), + [anon_sym_typename] = ACTIONS(2536), + [anon_sym_template] = ACTIONS(2536), + [anon_sym_GT2] = ACTIONS(2534), + [anon_sym_operator] = ACTIONS(2536), + [anon_sym_try] = ACTIONS(2536), + [anon_sym_delete] = ACTIONS(2536), + [anon_sym_throw] = ACTIONS(2536), + [anon_sym_namespace] = ACTIONS(2536), + [anon_sym_using] = ACTIONS(2536), + [anon_sym_static_assert] = ACTIONS(2536), + [anon_sym_concept] = ACTIONS(2536), + [anon_sym_co_return] = ACTIONS(2536), + [anon_sym_co_yield] = ACTIONS(2536), + [anon_sym_catch] = ACTIONS(2536), + [anon_sym_R_DQUOTE] = ACTIONS(2534), + [anon_sym_LR_DQUOTE] = ACTIONS(2534), + [anon_sym_uR_DQUOTE] = ACTIONS(2534), + [anon_sym_UR_DQUOTE] = ACTIONS(2534), + [anon_sym_u8R_DQUOTE] = ACTIONS(2534), + [anon_sym_co_await] = ACTIONS(2536), + [anon_sym_new] = ACTIONS(2536), + [anon_sym_requires] = ACTIONS(2536), + [sym_this] = ACTIONS(2536), + }, + [322] = { + [sym_type_qualifier] = STATE(3781), + [sym__type_specifier] = STATE(4168), + [sym_sized_type_specifier] = STATE(2802), + [sym_enum_specifier] = STATE(2802), + [sym_struct_specifier] = STATE(2802), + [sym_union_specifier] = STATE(2802), + [sym__expression] = STATE(3336), + [sym__expression_not_binary] = STATE(3565), + [sym_comma_expression] = STATE(7218), + [sym_conditional_expression] = STATE(3565), + [sym_assignment_expression] = STATE(3565), + [sym_pointer_expression] = STATE(3220), + [sym_unary_expression] = STATE(3565), + [sym_binary_expression] = STATE(3565), + [sym_update_expression] = STATE(3565), + [sym_cast_expression] = STATE(3565), + [sym_type_descriptor] = STATE(7372), + [sym_sizeof_expression] = STATE(3565), + [sym_offsetof_expression] = STATE(3565), + [sym_generic_expression] = STATE(3565), + [sym_subscript_expression] = STATE(3220), + [sym_call_expression] = STATE(3220), + [sym_gnu_asm_expression] = STATE(3565), + [sym_field_expression] = STATE(3220), + [sym_compound_literal_expression] = STATE(3565), + [sym_parenthesized_expression] = STATE(3220), + [sym_char_literal] = STATE(3429), + [sym_concatenated_string] = STATE(3429), + [sym_string_literal] = STATE(2248), + [sym_null] = STATE(3565), + [sym_placeholder_type_specifier] = STATE(2802), + [sym_decltype_auto] = STATE(2819), + [sym_decltype] = STATE(2662), + [sym_class_specifier] = STATE(2802), + [sym__class_name] = STATE(6847), + [sym_dependent_type] = STATE(2802), + [sym_template_type] = STATE(4771), + [sym_template_function] = STATE(3565), + [sym_raw_string_literal] = STATE(2248), + [sym_co_await_expression] = STATE(3565), + [sym_new_expression] = STATE(3565), + [sym_delete_expression] = STATE(3565), + [sym_requires_clause] = STATE(3565), + [sym_requires_expression] = STATE(3565), + [sym_lambda_expression] = STATE(3565), + [sym_lambda_capture_specifier] = STATE(5204), + [sym__unary_left_fold] = STATE(7231), + [sym__unary_right_fold] = STATE(7233), + [sym__binary_fold] = STATE(7244), + [sym_fold_expression] = STATE(3565), + [sym_parameter_pack_expansion] = STATE(3565), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5274), + [sym_qualified_identifier] = STATE(3220), + [sym_qualified_type_identifier] = STATE(4890), + [sym_user_defined_literal] = STATE(3565), + [aux_sym_type_definition_repeat1] = STATE(3781), + [aux_sym_sized_type_specifier_repeat1] = STATE(2230), + [sym_identifier] = ACTIONS(2538), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1837), + [anon_sym_LPAREN2] = ACTIONS(1841), + [anon_sym_BANG] = ACTIONS(1843), + [anon_sym_TILDE] = ACTIONS(1843), + [anon_sym_DASH] = ACTIONS(1845), + [anon_sym_PLUS] = ACTIONS(1845), + [anon_sym_STAR] = ACTIONS(1847), + [anon_sym_AMP] = ACTIONS(1847), + [anon_sym_COLON_COLON] = ACTIONS(1849), + [anon_sym_LBRACK] = ACTIONS(1949), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(1913), + [anon_sym_unsigned] = ACTIONS(1913), + [anon_sym_long] = ACTIONS(1913), + [anon_sym_short] = ACTIONS(1913), + [sym_primitive_type] = ACTIONS(1915), + [anon_sym_enum] = ACTIONS(1917), + [anon_sym_class] = ACTIONS(1919), + [anon_sym_struct] = ACTIONS(1921), + [anon_sym_union] = ACTIONS(1923), + [anon_sym_not] = ACTIONS(1845), + [anon_sym_compl] = ACTIONS(1845), + [anon_sym_DASH_DASH] = ACTIONS(1861), + [anon_sym_PLUS_PLUS] = ACTIONS(1861), + [anon_sym_sizeof] = ACTIONS(1863), + [anon_sym_offsetof] = ACTIONS(1865), + [anon_sym__Generic] = ACTIONS(1867), + [anon_sym_asm] = ACTIONS(1869), + [anon_sym___asm__] = ACTIONS(1869), + [sym_number_literal] = ACTIONS(1871), + [anon_sym_L_SQUOTE] = ACTIONS(1873), + [anon_sym_u_SQUOTE] = ACTIONS(1873), + [anon_sym_U_SQUOTE] = ACTIONS(1873), + [anon_sym_u8_SQUOTE] = ACTIONS(1873), + [anon_sym_SQUOTE] = ACTIONS(1873), + [anon_sym_L_DQUOTE] = ACTIONS(1875), + [anon_sym_u_DQUOTE] = ACTIONS(1875), + [anon_sym_U_DQUOTE] = ACTIONS(1875), + [anon_sym_u8_DQUOTE] = ACTIONS(1875), + [anon_sym_DQUOTE] = ACTIONS(1875), + [sym_true] = ACTIONS(1877), + [sym_false] = ACTIONS(1877), + [anon_sym_NULL] = ACTIONS(1879), + [anon_sym_nullptr] = ACTIONS(1879), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1925), + [anon_sym_decltype] = ACTIONS(1927), + [anon_sym_typename] = ACTIONS(1929), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(1883), + [anon_sym_R_DQUOTE] = ACTIONS(1885), + [anon_sym_LR_DQUOTE] = ACTIONS(1885), + [anon_sym_uR_DQUOTE] = ACTIONS(1885), + [anon_sym_UR_DQUOTE] = ACTIONS(1885), + [anon_sym_u8R_DQUOTE] = ACTIONS(1885), + [anon_sym_co_await] = ACTIONS(1887), + [anon_sym_new] = ACTIONS(1889), + [anon_sym_requires] = ACTIONS(1891), + [sym_this] = ACTIONS(1877), + }, + [323] = { + [sym_type_qualifier] = STATE(3781), + [sym__type_specifier] = STATE(4168), + [sym_sized_type_specifier] = STATE(2802), + [sym_enum_specifier] = STATE(2802), + [sym_struct_specifier] = STATE(2802), + [sym_union_specifier] = STATE(2802), + [sym__expression] = STATE(3264), + [sym__expression_not_binary] = STATE(3565), + [sym_comma_expression] = STATE(7617), + [sym_conditional_expression] = STATE(3565), + [sym_assignment_expression] = STATE(3565), + [sym_pointer_expression] = STATE(3220), + [sym_unary_expression] = STATE(3565), + [sym_binary_expression] = STATE(3565), + [sym_update_expression] = STATE(3565), + [sym_cast_expression] = STATE(3565), + [sym_type_descriptor] = STATE(7315), + [sym_sizeof_expression] = STATE(3565), + [sym_offsetof_expression] = STATE(3565), + [sym_generic_expression] = STATE(3565), + [sym_subscript_expression] = STATE(3220), + [sym_call_expression] = STATE(3220), + [sym_gnu_asm_expression] = STATE(3565), + [sym_field_expression] = STATE(3220), + [sym_compound_literal_expression] = STATE(3565), + [sym_parenthesized_expression] = STATE(3220), + [sym_char_literal] = STATE(3429), + [sym_concatenated_string] = STATE(3429), + [sym_string_literal] = STATE(2248), + [sym_null] = STATE(3565), + [sym_placeholder_type_specifier] = STATE(2802), + [sym_decltype_auto] = STATE(2819), + [sym_decltype] = STATE(2662), + [sym_class_specifier] = STATE(2802), + [sym__class_name] = STATE(6847), + [sym_dependent_type] = STATE(2802), + [sym_template_type] = STATE(4771), + [sym_template_function] = STATE(3565), + [sym_raw_string_literal] = STATE(2248), + [sym_co_await_expression] = STATE(3565), + [sym_new_expression] = STATE(3565), + [sym_delete_expression] = STATE(3565), + [sym_requires_clause] = STATE(3565), + [sym_requires_expression] = STATE(3565), + [sym_lambda_expression] = STATE(3565), + [sym_lambda_capture_specifier] = STATE(5204), + [sym__unary_left_fold] = STATE(7615), + [sym__unary_right_fold] = STATE(7614), + [sym__binary_fold] = STATE(7612), + [sym_fold_expression] = STATE(3565), + [sym_parameter_pack_expansion] = STATE(3565), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5274), + [sym_qualified_identifier] = STATE(3220), + [sym_qualified_type_identifier] = STATE(4890), + [sym_user_defined_literal] = STATE(3565), + [aux_sym_type_definition_repeat1] = STATE(3781), + [aux_sym_sized_type_specifier_repeat1] = STATE(2230), + [sym_identifier] = ACTIONS(2538), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1837), + [anon_sym_LPAREN2] = ACTIONS(1841), + [anon_sym_BANG] = ACTIONS(1843), + [anon_sym_TILDE] = ACTIONS(1843), + [anon_sym_DASH] = ACTIONS(1845), + [anon_sym_PLUS] = ACTIONS(1845), + [anon_sym_STAR] = ACTIONS(1847), + [anon_sym_AMP] = ACTIONS(1847), + [anon_sym_COLON_COLON] = ACTIONS(1849), + [anon_sym_LBRACK] = ACTIONS(1949), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(1913), + [anon_sym_unsigned] = ACTIONS(1913), + [anon_sym_long] = ACTIONS(1913), + [anon_sym_short] = ACTIONS(1913), + [sym_primitive_type] = ACTIONS(1915), + [anon_sym_enum] = ACTIONS(1917), + [anon_sym_class] = ACTIONS(1919), + [anon_sym_struct] = ACTIONS(1921), + [anon_sym_union] = ACTIONS(1923), + [anon_sym_not] = ACTIONS(1845), + [anon_sym_compl] = ACTIONS(1845), + [anon_sym_DASH_DASH] = ACTIONS(1861), + [anon_sym_PLUS_PLUS] = ACTIONS(1861), + [anon_sym_sizeof] = ACTIONS(1863), + [anon_sym_offsetof] = ACTIONS(1865), + [anon_sym__Generic] = ACTIONS(1867), + [anon_sym_asm] = ACTIONS(1869), + [anon_sym___asm__] = ACTIONS(1869), + [sym_number_literal] = ACTIONS(1871), + [anon_sym_L_SQUOTE] = ACTIONS(1873), + [anon_sym_u_SQUOTE] = ACTIONS(1873), + [anon_sym_U_SQUOTE] = ACTIONS(1873), + [anon_sym_u8_SQUOTE] = ACTIONS(1873), + [anon_sym_SQUOTE] = ACTIONS(1873), + [anon_sym_L_DQUOTE] = ACTIONS(1875), + [anon_sym_u_DQUOTE] = ACTIONS(1875), + [anon_sym_U_DQUOTE] = ACTIONS(1875), + [anon_sym_u8_DQUOTE] = ACTIONS(1875), + [anon_sym_DQUOTE] = ACTIONS(1875), + [sym_true] = ACTIONS(1877), + [sym_false] = ACTIONS(1877), + [anon_sym_NULL] = ACTIONS(1879), + [anon_sym_nullptr] = ACTIONS(1879), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1925), + [anon_sym_decltype] = ACTIONS(1927), + [anon_sym_typename] = ACTIONS(1929), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(1883), + [anon_sym_R_DQUOTE] = ACTIONS(1885), + [anon_sym_LR_DQUOTE] = ACTIONS(1885), + [anon_sym_uR_DQUOTE] = ACTIONS(1885), + [anon_sym_UR_DQUOTE] = ACTIONS(1885), + [anon_sym_u8R_DQUOTE] = ACTIONS(1885), + [anon_sym_co_await] = ACTIONS(1887), + [anon_sym_new] = ACTIONS(1889), + [anon_sym_requires] = ACTIONS(1891), + [sym_this] = ACTIONS(1877), + }, + [324] = { + [sym_type_qualifier] = STATE(3781), + [sym__type_specifier] = STATE(4168), + [sym_sized_type_specifier] = STATE(2802), + [sym_enum_specifier] = STATE(2802), + [sym_struct_specifier] = STATE(2802), + [sym_union_specifier] = STATE(2802), + [sym__expression] = STATE(3264), + [sym__expression_not_binary] = STATE(3565), + [sym_comma_expression] = STATE(7617), + [sym_conditional_expression] = STATE(3565), + [sym_assignment_expression] = STATE(3565), + [sym_pointer_expression] = STATE(3220), + [sym_unary_expression] = STATE(3565), + [sym_binary_expression] = STATE(3565), + [sym_update_expression] = STATE(3565), + [sym_cast_expression] = STATE(3565), + [sym_type_descriptor] = STATE(7402), + [sym_sizeof_expression] = STATE(3565), + [sym_offsetof_expression] = STATE(3565), + [sym_generic_expression] = STATE(3565), + [sym_subscript_expression] = STATE(3220), + [sym_call_expression] = STATE(3220), + [sym_gnu_asm_expression] = STATE(3565), + [sym_field_expression] = STATE(3220), + [sym_compound_literal_expression] = STATE(3565), + [sym_parenthesized_expression] = STATE(3220), + [sym_char_literal] = STATE(3429), + [sym_concatenated_string] = STATE(3429), + [sym_string_literal] = STATE(2248), + [sym_null] = STATE(3565), + [sym_placeholder_type_specifier] = STATE(2802), + [sym_decltype_auto] = STATE(2819), + [sym_decltype] = STATE(2662), + [sym_class_specifier] = STATE(2802), + [sym__class_name] = STATE(6847), + [sym_dependent_type] = STATE(2802), + [sym_template_type] = STATE(4771), + [sym_template_function] = STATE(3565), + [sym_raw_string_literal] = STATE(2248), + [sym_co_await_expression] = STATE(3565), + [sym_new_expression] = STATE(3565), + [sym_delete_expression] = STATE(3565), + [sym_requires_clause] = STATE(3565), + [sym_requires_expression] = STATE(3565), + [sym_lambda_expression] = STATE(3565), + [sym_lambda_capture_specifier] = STATE(5204), + [sym__unary_left_fold] = STATE(7615), + [sym__unary_right_fold] = STATE(7614), + [sym__binary_fold] = STATE(7612), + [sym_fold_expression] = STATE(3565), + [sym_parameter_pack_expansion] = STATE(3565), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5274), + [sym_qualified_identifier] = STATE(3220), + [sym_qualified_type_identifier] = STATE(4890), + [sym_user_defined_literal] = STATE(3565), + [aux_sym_type_definition_repeat1] = STATE(3781), + [aux_sym_sized_type_specifier_repeat1] = STATE(2230), + [sym_identifier] = ACTIONS(2538), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1837), + [anon_sym_LPAREN2] = ACTIONS(1841), + [anon_sym_BANG] = ACTIONS(1843), + [anon_sym_TILDE] = ACTIONS(1843), + [anon_sym_DASH] = ACTIONS(1845), + [anon_sym_PLUS] = ACTIONS(1845), + [anon_sym_STAR] = ACTIONS(1847), + [anon_sym_AMP] = ACTIONS(1847), + [anon_sym_COLON_COLON] = ACTIONS(1849), + [anon_sym_LBRACK] = ACTIONS(1949), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(1913), + [anon_sym_unsigned] = ACTIONS(1913), + [anon_sym_long] = ACTIONS(1913), + [anon_sym_short] = ACTIONS(1913), + [sym_primitive_type] = ACTIONS(1915), + [anon_sym_enum] = ACTIONS(1917), + [anon_sym_class] = ACTIONS(1919), + [anon_sym_struct] = ACTIONS(1921), + [anon_sym_union] = ACTIONS(1923), + [anon_sym_not] = ACTIONS(1845), + [anon_sym_compl] = ACTIONS(1845), + [anon_sym_DASH_DASH] = ACTIONS(1861), + [anon_sym_PLUS_PLUS] = ACTIONS(1861), + [anon_sym_sizeof] = ACTIONS(1863), + [anon_sym_offsetof] = ACTIONS(1865), + [anon_sym__Generic] = ACTIONS(1867), + [anon_sym_asm] = ACTIONS(1869), + [anon_sym___asm__] = ACTIONS(1869), + [sym_number_literal] = ACTIONS(1871), + [anon_sym_L_SQUOTE] = ACTIONS(1873), + [anon_sym_u_SQUOTE] = ACTIONS(1873), + [anon_sym_U_SQUOTE] = ACTIONS(1873), + [anon_sym_u8_SQUOTE] = ACTIONS(1873), + [anon_sym_SQUOTE] = ACTIONS(1873), + [anon_sym_L_DQUOTE] = ACTIONS(1875), + [anon_sym_u_DQUOTE] = ACTIONS(1875), + [anon_sym_U_DQUOTE] = ACTIONS(1875), + [anon_sym_u8_DQUOTE] = ACTIONS(1875), + [anon_sym_DQUOTE] = ACTIONS(1875), + [sym_true] = ACTIONS(1877), + [sym_false] = ACTIONS(1877), + [anon_sym_NULL] = ACTIONS(1879), + [anon_sym_nullptr] = ACTIONS(1879), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1925), + [anon_sym_decltype] = ACTIONS(1927), + [anon_sym_typename] = ACTIONS(1929), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(1883), + [anon_sym_R_DQUOTE] = ACTIONS(1885), + [anon_sym_LR_DQUOTE] = ACTIONS(1885), + [anon_sym_uR_DQUOTE] = ACTIONS(1885), + [anon_sym_UR_DQUOTE] = ACTIONS(1885), + [anon_sym_u8R_DQUOTE] = ACTIONS(1885), + [anon_sym_co_await] = ACTIONS(1887), + [anon_sym_new] = ACTIONS(1889), + [anon_sym_requires] = ACTIONS(1891), + [sym_this] = ACTIONS(1877), + }, + [325] = { + [sym_type_qualifier] = STATE(3781), + [sym__type_specifier] = STATE(4168), + [sym_sized_type_specifier] = STATE(2802), + [sym_enum_specifier] = STATE(2802), + [sym_struct_specifier] = STATE(2802), + [sym_union_specifier] = STATE(2802), + [sym__expression] = STATE(3264), + [sym__expression_not_binary] = STATE(3565), + [sym_comma_expression] = STATE(7617), + [sym_conditional_expression] = STATE(3565), + [sym_assignment_expression] = STATE(3565), + [sym_pointer_expression] = STATE(3220), + [sym_unary_expression] = STATE(3565), + [sym_binary_expression] = STATE(3565), + [sym_update_expression] = STATE(3565), + [sym_cast_expression] = STATE(3565), + [sym_type_descriptor] = STATE(7616), + [sym_sizeof_expression] = STATE(3565), + [sym_offsetof_expression] = STATE(3565), + [sym_generic_expression] = STATE(3565), + [sym_subscript_expression] = STATE(3220), + [sym_call_expression] = STATE(3220), + [sym_gnu_asm_expression] = STATE(3565), + [sym_field_expression] = STATE(3220), + [sym_compound_literal_expression] = STATE(3565), + [sym_parenthesized_expression] = STATE(3220), + [sym_char_literal] = STATE(3429), + [sym_concatenated_string] = STATE(3429), + [sym_string_literal] = STATE(2248), + [sym_null] = STATE(3565), + [sym_placeholder_type_specifier] = STATE(2802), + [sym_decltype_auto] = STATE(2819), + [sym_decltype] = STATE(2662), + [sym_class_specifier] = STATE(2802), + [sym__class_name] = STATE(6847), + [sym_dependent_type] = STATE(2802), + [sym_template_type] = STATE(4771), + [sym_template_function] = STATE(3565), + [sym_raw_string_literal] = STATE(2248), + [sym_co_await_expression] = STATE(3565), + [sym_new_expression] = STATE(3565), + [sym_delete_expression] = STATE(3565), + [sym_requires_clause] = STATE(3565), + [sym_requires_expression] = STATE(3565), + [sym_lambda_expression] = STATE(3565), + [sym_lambda_capture_specifier] = STATE(5204), + [sym__unary_left_fold] = STATE(7615), + [sym__unary_right_fold] = STATE(7614), + [sym__binary_fold] = STATE(7612), + [sym_fold_expression] = STATE(3565), + [sym_parameter_pack_expansion] = STATE(3565), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5274), + [sym_qualified_identifier] = STATE(3220), + [sym_qualified_type_identifier] = STATE(4890), + [sym_user_defined_literal] = STATE(3565), + [aux_sym_type_definition_repeat1] = STATE(3781), + [aux_sym_sized_type_specifier_repeat1] = STATE(2230), + [sym_identifier] = ACTIONS(2538), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1837), + [anon_sym_LPAREN2] = ACTIONS(1841), + [anon_sym_BANG] = ACTIONS(1843), + [anon_sym_TILDE] = ACTIONS(1843), + [anon_sym_DASH] = ACTIONS(1845), + [anon_sym_PLUS] = ACTIONS(1845), + [anon_sym_STAR] = ACTIONS(1847), + [anon_sym_AMP] = ACTIONS(1847), + [anon_sym_COLON_COLON] = ACTIONS(1849), + [anon_sym_LBRACK] = ACTIONS(1949), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(1913), + [anon_sym_unsigned] = ACTIONS(1913), + [anon_sym_long] = ACTIONS(1913), + [anon_sym_short] = ACTIONS(1913), + [sym_primitive_type] = ACTIONS(1915), + [anon_sym_enum] = ACTIONS(1917), + [anon_sym_class] = ACTIONS(1919), + [anon_sym_struct] = ACTIONS(1921), + [anon_sym_union] = ACTIONS(1923), + [anon_sym_not] = ACTIONS(1845), + [anon_sym_compl] = ACTIONS(1845), + [anon_sym_DASH_DASH] = ACTIONS(1861), + [anon_sym_PLUS_PLUS] = ACTIONS(1861), + [anon_sym_sizeof] = ACTIONS(1863), + [anon_sym_offsetof] = ACTIONS(1865), + [anon_sym__Generic] = ACTIONS(1867), + [anon_sym_asm] = ACTIONS(1869), + [anon_sym___asm__] = ACTIONS(1869), + [sym_number_literal] = ACTIONS(1871), + [anon_sym_L_SQUOTE] = ACTIONS(1873), + [anon_sym_u_SQUOTE] = ACTIONS(1873), + [anon_sym_U_SQUOTE] = ACTIONS(1873), + [anon_sym_u8_SQUOTE] = ACTIONS(1873), + [anon_sym_SQUOTE] = ACTIONS(1873), + [anon_sym_L_DQUOTE] = ACTIONS(1875), + [anon_sym_u_DQUOTE] = ACTIONS(1875), + [anon_sym_U_DQUOTE] = ACTIONS(1875), + [anon_sym_u8_DQUOTE] = ACTIONS(1875), + [anon_sym_DQUOTE] = ACTIONS(1875), + [sym_true] = ACTIONS(1877), + [sym_false] = ACTIONS(1877), + [anon_sym_NULL] = ACTIONS(1879), + [anon_sym_nullptr] = ACTIONS(1879), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1925), + [anon_sym_decltype] = ACTIONS(1927), + [anon_sym_typename] = ACTIONS(1929), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(1883), + [anon_sym_R_DQUOTE] = ACTIONS(1885), + [anon_sym_LR_DQUOTE] = ACTIONS(1885), + [anon_sym_uR_DQUOTE] = ACTIONS(1885), + [anon_sym_UR_DQUOTE] = ACTIONS(1885), + [anon_sym_u8R_DQUOTE] = ACTIONS(1885), + [anon_sym_co_await] = ACTIONS(1887), + [anon_sym_new] = ACTIONS(1889), + [anon_sym_requires] = ACTIONS(1891), + [sym_this] = ACTIONS(1877), }, [326] = { - [sym_type_qualifier] = STATE(3299), - [sym__type_specifier] = STATE(3894), - [sym_sized_type_specifier] = STATE(2541), - [sym_enum_specifier] = STATE(2541), - [sym_struct_specifier] = STATE(2541), - [sym_union_specifier] = STATE(2541), - [sym__expression] = STATE(2826), - [sym_comma_expression] = STATE(6252), - [sym_conditional_expression] = STATE(3035), - [sym_assignment_expression] = STATE(3035), - [sym_pointer_expression] = STATE(2713), - [sym_unary_expression] = STATE(3035), - [sym_binary_expression] = STATE(3035), - [sym_update_expression] = STATE(3035), - [sym_cast_expression] = STATE(3035), - [sym_type_descriptor] = STATE(6491), - [sym_sizeof_expression] = STATE(3035), - [sym_subscript_expression] = STATE(2713), - [sym_call_expression] = STATE(2713), - [sym_field_expression] = STATE(2713), - [sym_compound_literal_expression] = STATE(3035), - [sym_parenthesized_expression] = STATE(2713), - [sym_char_literal] = STATE(3013), - [sym_concatenated_string] = STATE(3013), - [sym_string_literal] = STATE(1900), - [sym_placeholder_type_specifier] = STATE(2541), - [sym_decltype_auto] = STATE(2540), - [sym_decltype] = STATE(2247), - [sym_class_specifier] = STATE(2541), - [sym__class_name] = STATE(5990), - [sym_dependent_type] = STATE(2541), - [sym_template_type] = STATE(4288), - [sym_template_function] = STATE(3035), - [sym_raw_string_literal] = STATE(1900), - [sym_co_await_expression] = STATE(3035), - [sym_new_expression] = STATE(3035), - [sym_delete_expression] = STATE(3035), - [sym_requires_clause] = STATE(3035), - [sym_requires_expression] = STATE(3035), - [sym_lambda_expression] = STATE(3035), - [sym_lambda_capture_specifier] = STATE(4465), - [sym__unary_left_fold] = STATE(6490), - [sym__unary_right_fold] = STATE(6489), - [sym__binary_fold] = STATE(6487), - [sym_fold_expression] = STATE(3035), - [sym_parameter_pack_expansion] = STATE(3035), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4537), - [sym_qualified_identifier] = STATE(2713), - [sym_qualified_type_identifier] = STATE(4356), - [sym_user_defined_literal] = STATE(3035), - [aux_sym_type_definition_repeat1] = STATE(3299), - [aux_sym_sized_type_specifier_repeat1] = STATE(1922), - [sym_identifier] = ACTIONS(2366), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1435), - [anon_sym_LPAREN2] = ACTIONS(1439), - [anon_sym_BANG] = ACTIONS(1441), - [anon_sym_TILDE] = ACTIONS(1441), - [anon_sym_DASH] = ACTIONS(1443), - [anon_sym_PLUS] = ACTIONS(1443), - [anon_sym_STAR] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(1445), - [anon_sym_COLON_COLON] = ACTIONS(1447), - [anon_sym_LBRACK] = ACTIONS(1539), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(1503), - [anon_sym_unsigned] = ACTIONS(1503), - [anon_sym_long] = ACTIONS(1503), - [anon_sym_short] = ACTIONS(1503), - [sym_primitive_type] = ACTIONS(1505), - [anon_sym_enum] = ACTIONS(1507), - [anon_sym_class] = ACTIONS(1509), - [anon_sym_struct] = ACTIONS(1511), - [anon_sym_union] = ACTIONS(1513), - [anon_sym_not] = ACTIONS(1443), - [anon_sym_compl] = ACTIONS(1443), - [anon_sym_DASH_DASH] = ACTIONS(1459), - [anon_sym_PLUS_PLUS] = ACTIONS(1459), - [anon_sym_sizeof] = ACTIONS(1461), - [sym_number_literal] = ACTIONS(1463), - [anon_sym_L_SQUOTE] = ACTIONS(1465), - [anon_sym_u_SQUOTE] = ACTIONS(1465), - [anon_sym_U_SQUOTE] = ACTIONS(1465), - [anon_sym_u8_SQUOTE] = ACTIONS(1465), - [anon_sym_SQUOTE] = ACTIONS(1465), - [anon_sym_L_DQUOTE] = ACTIONS(1467), - [anon_sym_u_DQUOTE] = ACTIONS(1467), - [anon_sym_U_DQUOTE] = ACTIONS(1467), - [anon_sym_u8_DQUOTE] = ACTIONS(1467), - [anon_sym_DQUOTE] = ACTIONS(1467), - [sym_true] = ACTIONS(1469), - [sym_false] = ACTIONS(1469), - [sym_null] = ACTIONS(1469), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1515), - [anon_sym_decltype] = ACTIONS(1517), - [anon_sym_typename] = ACTIONS(1519), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1473), - [anon_sym_R_DQUOTE] = ACTIONS(1475), - [anon_sym_LR_DQUOTE] = ACTIONS(1475), - [anon_sym_uR_DQUOTE] = ACTIONS(1475), - [anon_sym_UR_DQUOTE] = ACTIONS(1475), - [anon_sym_u8R_DQUOTE] = ACTIONS(1475), - [anon_sym_co_await] = ACTIONS(1477), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_requires] = ACTIONS(1481), - [sym_this] = ACTIONS(1469), - [sym_nullptr] = ACTIONS(1469), + [sym_type_qualifier] = STATE(3781), + [sym__type_specifier] = STATE(4168), + [sym_sized_type_specifier] = STATE(2802), + [sym_enum_specifier] = STATE(2802), + [sym_struct_specifier] = STATE(2802), + [sym_union_specifier] = STATE(2802), + [sym__expression] = STATE(3264), + [sym__expression_not_binary] = STATE(3565), + [sym_comma_expression] = STATE(7617), + [sym_conditional_expression] = STATE(3565), + [sym_assignment_expression] = STATE(3565), + [sym_pointer_expression] = STATE(3220), + [sym_unary_expression] = STATE(3565), + [sym_binary_expression] = STATE(3565), + [sym_update_expression] = STATE(3565), + [sym_cast_expression] = STATE(3565), + [sym_type_descriptor] = STATE(7419), + [sym_sizeof_expression] = STATE(3565), + [sym_offsetof_expression] = STATE(3565), + [sym_generic_expression] = STATE(3565), + [sym_subscript_expression] = STATE(3220), + [sym_call_expression] = STATE(3220), + [sym_gnu_asm_expression] = STATE(3565), + [sym_field_expression] = STATE(3220), + [sym_compound_literal_expression] = STATE(3565), + [sym_parenthesized_expression] = STATE(3220), + [sym_char_literal] = STATE(3429), + [sym_concatenated_string] = STATE(3429), + [sym_string_literal] = STATE(2248), + [sym_null] = STATE(3565), + [sym_placeholder_type_specifier] = STATE(2802), + [sym_decltype_auto] = STATE(2819), + [sym_decltype] = STATE(2662), + [sym_class_specifier] = STATE(2802), + [sym__class_name] = STATE(6847), + [sym_dependent_type] = STATE(2802), + [sym_template_type] = STATE(4771), + [sym_template_function] = STATE(3565), + [sym_raw_string_literal] = STATE(2248), + [sym_co_await_expression] = STATE(3565), + [sym_new_expression] = STATE(3565), + [sym_delete_expression] = STATE(3565), + [sym_requires_clause] = STATE(3565), + [sym_requires_expression] = STATE(3565), + [sym_lambda_expression] = STATE(3565), + [sym_lambda_capture_specifier] = STATE(5204), + [sym__unary_left_fold] = STATE(7615), + [sym__unary_right_fold] = STATE(7614), + [sym__binary_fold] = STATE(7612), + [sym_fold_expression] = STATE(3565), + [sym_parameter_pack_expansion] = STATE(3565), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5274), + [sym_qualified_identifier] = STATE(3220), + [sym_qualified_type_identifier] = STATE(4890), + [sym_user_defined_literal] = STATE(3565), + [aux_sym_type_definition_repeat1] = STATE(3781), + [aux_sym_sized_type_specifier_repeat1] = STATE(2230), + [sym_identifier] = ACTIONS(2538), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1837), + [anon_sym_LPAREN2] = ACTIONS(1841), + [anon_sym_BANG] = ACTIONS(1843), + [anon_sym_TILDE] = ACTIONS(1843), + [anon_sym_DASH] = ACTIONS(1845), + [anon_sym_PLUS] = ACTIONS(1845), + [anon_sym_STAR] = ACTIONS(1847), + [anon_sym_AMP] = ACTIONS(1847), + [anon_sym_COLON_COLON] = ACTIONS(1849), + [anon_sym_LBRACK] = ACTIONS(1949), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(1913), + [anon_sym_unsigned] = ACTIONS(1913), + [anon_sym_long] = ACTIONS(1913), + [anon_sym_short] = ACTIONS(1913), + [sym_primitive_type] = ACTIONS(1915), + [anon_sym_enum] = ACTIONS(1917), + [anon_sym_class] = ACTIONS(1919), + [anon_sym_struct] = ACTIONS(1921), + [anon_sym_union] = ACTIONS(1923), + [anon_sym_not] = ACTIONS(1845), + [anon_sym_compl] = ACTIONS(1845), + [anon_sym_DASH_DASH] = ACTIONS(1861), + [anon_sym_PLUS_PLUS] = ACTIONS(1861), + [anon_sym_sizeof] = ACTIONS(1863), + [anon_sym_offsetof] = ACTIONS(1865), + [anon_sym__Generic] = ACTIONS(1867), + [anon_sym_asm] = ACTIONS(1869), + [anon_sym___asm__] = ACTIONS(1869), + [sym_number_literal] = ACTIONS(1871), + [anon_sym_L_SQUOTE] = ACTIONS(1873), + [anon_sym_u_SQUOTE] = ACTIONS(1873), + [anon_sym_U_SQUOTE] = ACTIONS(1873), + [anon_sym_u8_SQUOTE] = ACTIONS(1873), + [anon_sym_SQUOTE] = ACTIONS(1873), + [anon_sym_L_DQUOTE] = ACTIONS(1875), + [anon_sym_u_DQUOTE] = ACTIONS(1875), + [anon_sym_U_DQUOTE] = ACTIONS(1875), + [anon_sym_u8_DQUOTE] = ACTIONS(1875), + [anon_sym_DQUOTE] = ACTIONS(1875), + [sym_true] = ACTIONS(1877), + [sym_false] = ACTIONS(1877), + [anon_sym_NULL] = ACTIONS(1879), + [anon_sym_nullptr] = ACTIONS(1879), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1925), + [anon_sym_decltype] = ACTIONS(1927), + [anon_sym_typename] = ACTIONS(1929), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(1883), + [anon_sym_R_DQUOTE] = ACTIONS(1885), + [anon_sym_LR_DQUOTE] = ACTIONS(1885), + [anon_sym_uR_DQUOTE] = ACTIONS(1885), + [anon_sym_UR_DQUOTE] = ACTIONS(1885), + [anon_sym_u8R_DQUOTE] = ACTIONS(1885), + [anon_sym_co_await] = ACTIONS(1887), + [anon_sym_new] = ACTIONS(1889), + [anon_sym_requires] = ACTIONS(1891), + [sym_this] = ACTIONS(1877), }, [327] = { - [sym_type_qualifier] = STATE(3299), - [sym__type_specifier] = STATE(3894), - [sym_sized_type_specifier] = STATE(2541), - [sym_enum_specifier] = STATE(2541), - [sym_struct_specifier] = STATE(2541), - [sym_union_specifier] = STATE(2541), - [sym__expression] = STATE(2710), - [sym_comma_expression] = STATE(6494), - [sym_conditional_expression] = STATE(3035), - [sym_assignment_expression] = STATE(3035), - [sym_pointer_expression] = STATE(2713), - [sym_unary_expression] = STATE(3035), - [sym_binary_expression] = STATE(3035), - [sym_update_expression] = STATE(3035), - [sym_cast_expression] = STATE(3035), - [sym_type_descriptor] = STATE(6193), - [sym_sizeof_expression] = STATE(3035), - [sym_subscript_expression] = STATE(2713), - [sym_call_expression] = STATE(2713), - [sym_field_expression] = STATE(2713), - [sym_compound_literal_expression] = STATE(3035), - [sym_parenthesized_expression] = STATE(2713), - [sym_char_literal] = STATE(3013), - [sym_concatenated_string] = STATE(3013), - [sym_string_literal] = STATE(1900), - [sym_placeholder_type_specifier] = STATE(2541), - [sym_decltype_auto] = STATE(2540), - [sym_decltype] = STATE(2247), - [sym_class_specifier] = STATE(2541), - [sym__class_name] = STATE(5990), - [sym_dependent_type] = STATE(2541), - [sym_template_type] = STATE(4288), - [sym_template_function] = STATE(3035), - [sym_raw_string_literal] = STATE(1900), - [sym_co_await_expression] = STATE(3035), - [sym_new_expression] = STATE(3035), - [sym_delete_expression] = STATE(3035), - [sym_requires_clause] = STATE(3035), - [sym_requires_expression] = STATE(3035), - [sym_lambda_expression] = STATE(3035), - [sym_lambda_capture_specifier] = STATE(4465), - [sym__unary_left_fold] = STATE(6210), - [sym__unary_right_fold] = STATE(6208), - [sym__binary_fold] = STATE(6207), - [sym_fold_expression] = STATE(3035), - [sym_parameter_pack_expansion] = STATE(3035), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4537), - [sym_qualified_identifier] = STATE(2713), - [sym_qualified_type_identifier] = STATE(4356), - [sym_user_defined_literal] = STATE(3035), - [aux_sym_type_definition_repeat1] = STATE(3299), - [aux_sym_sized_type_specifier_repeat1] = STATE(1922), - [sym_identifier] = ACTIONS(2366), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1435), - [anon_sym_LPAREN2] = ACTIONS(1439), - [anon_sym_BANG] = ACTIONS(1441), - [anon_sym_TILDE] = ACTIONS(1441), - [anon_sym_DASH] = ACTIONS(1443), - [anon_sym_PLUS] = ACTIONS(1443), - [anon_sym_STAR] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(1445), - [anon_sym_COLON_COLON] = ACTIONS(1447), - [anon_sym_LBRACK] = ACTIONS(1539), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(1503), - [anon_sym_unsigned] = ACTIONS(1503), - [anon_sym_long] = ACTIONS(1503), - [anon_sym_short] = ACTIONS(1503), - [sym_primitive_type] = ACTIONS(1505), - [anon_sym_enum] = ACTIONS(1507), - [anon_sym_class] = ACTIONS(1509), - [anon_sym_struct] = ACTIONS(1511), - [anon_sym_union] = ACTIONS(1513), - [anon_sym_not] = ACTIONS(1443), - [anon_sym_compl] = ACTIONS(1443), - [anon_sym_DASH_DASH] = ACTIONS(1459), - [anon_sym_PLUS_PLUS] = ACTIONS(1459), - [anon_sym_sizeof] = ACTIONS(1461), - [sym_number_literal] = ACTIONS(1463), - [anon_sym_L_SQUOTE] = ACTIONS(1465), - [anon_sym_u_SQUOTE] = ACTIONS(1465), - [anon_sym_U_SQUOTE] = ACTIONS(1465), - [anon_sym_u8_SQUOTE] = ACTIONS(1465), - [anon_sym_SQUOTE] = ACTIONS(1465), - [anon_sym_L_DQUOTE] = ACTIONS(1467), - [anon_sym_u_DQUOTE] = ACTIONS(1467), - [anon_sym_U_DQUOTE] = ACTIONS(1467), - [anon_sym_u8_DQUOTE] = ACTIONS(1467), - [anon_sym_DQUOTE] = ACTIONS(1467), - [sym_true] = ACTIONS(1469), - [sym_false] = ACTIONS(1469), - [sym_null] = ACTIONS(1469), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1515), - [anon_sym_decltype] = ACTIONS(1517), - [anon_sym_typename] = ACTIONS(1519), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1473), - [anon_sym_R_DQUOTE] = ACTIONS(1475), - [anon_sym_LR_DQUOTE] = ACTIONS(1475), - [anon_sym_uR_DQUOTE] = ACTIONS(1475), - [anon_sym_UR_DQUOTE] = ACTIONS(1475), - [anon_sym_u8R_DQUOTE] = ACTIONS(1475), - [anon_sym_co_await] = ACTIONS(1477), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_requires] = ACTIONS(1481), - [sym_this] = ACTIONS(1469), - [sym_nullptr] = ACTIONS(1469), + [sym_type_qualifier] = STATE(3781), + [sym__type_specifier] = STATE(4168), + [sym_sized_type_specifier] = STATE(2802), + [sym_enum_specifier] = STATE(2802), + [sym_struct_specifier] = STATE(2802), + [sym_union_specifier] = STATE(2802), + [sym__expression] = STATE(3264), + [sym__expression_not_binary] = STATE(3565), + [sym_comma_expression] = STATE(7617), + [sym_conditional_expression] = STATE(3565), + [sym_assignment_expression] = STATE(3565), + [sym_pointer_expression] = STATE(3220), + [sym_unary_expression] = STATE(3565), + [sym_binary_expression] = STATE(3565), + [sym_update_expression] = STATE(3565), + [sym_cast_expression] = STATE(3565), + [sym_type_descriptor] = STATE(7542), + [sym_sizeof_expression] = STATE(3565), + [sym_offsetof_expression] = STATE(3565), + [sym_generic_expression] = STATE(3565), + [sym_subscript_expression] = STATE(3220), + [sym_call_expression] = STATE(3220), + [sym_gnu_asm_expression] = STATE(3565), + [sym_field_expression] = STATE(3220), + [sym_compound_literal_expression] = STATE(3565), + [sym_parenthesized_expression] = STATE(3220), + [sym_char_literal] = STATE(3429), + [sym_concatenated_string] = STATE(3429), + [sym_string_literal] = STATE(2248), + [sym_null] = STATE(3565), + [sym_placeholder_type_specifier] = STATE(2802), + [sym_decltype_auto] = STATE(2819), + [sym_decltype] = STATE(2662), + [sym_class_specifier] = STATE(2802), + [sym__class_name] = STATE(6847), + [sym_dependent_type] = STATE(2802), + [sym_template_type] = STATE(4771), + [sym_template_function] = STATE(3565), + [sym_raw_string_literal] = STATE(2248), + [sym_co_await_expression] = STATE(3565), + [sym_new_expression] = STATE(3565), + [sym_delete_expression] = STATE(3565), + [sym_requires_clause] = STATE(3565), + [sym_requires_expression] = STATE(3565), + [sym_lambda_expression] = STATE(3565), + [sym_lambda_capture_specifier] = STATE(5204), + [sym__unary_left_fold] = STATE(7640), + [sym__unary_right_fold] = STATE(7639), + [sym__binary_fold] = STATE(7637), + [sym_fold_expression] = STATE(3565), + [sym_parameter_pack_expansion] = STATE(3565), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5274), + [sym_qualified_identifier] = STATE(3220), + [sym_qualified_type_identifier] = STATE(4890), + [sym_user_defined_literal] = STATE(3565), + [aux_sym_type_definition_repeat1] = STATE(3781), + [aux_sym_sized_type_specifier_repeat1] = STATE(2230), + [sym_identifier] = ACTIONS(2538), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1837), + [anon_sym_LPAREN2] = ACTIONS(1841), + [anon_sym_BANG] = ACTIONS(1843), + [anon_sym_TILDE] = ACTIONS(1843), + [anon_sym_DASH] = ACTIONS(1845), + [anon_sym_PLUS] = ACTIONS(1845), + [anon_sym_STAR] = ACTIONS(1847), + [anon_sym_AMP] = ACTIONS(1847), + [anon_sym_COLON_COLON] = ACTIONS(1849), + [anon_sym_LBRACK] = ACTIONS(1949), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(1913), + [anon_sym_unsigned] = ACTIONS(1913), + [anon_sym_long] = ACTIONS(1913), + [anon_sym_short] = ACTIONS(1913), + [sym_primitive_type] = ACTIONS(1915), + [anon_sym_enum] = ACTIONS(1917), + [anon_sym_class] = ACTIONS(1919), + [anon_sym_struct] = ACTIONS(1921), + [anon_sym_union] = ACTIONS(1923), + [anon_sym_not] = ACTIONS(1845), + [anon_sym_compl] = ACTIONS(1845), + [anon_sym_DASH_DASH] = ACTIONS(1861), + [anon_sym_PLUS_PLUS] = ACTIONS(1861), + [anon_sym_sizeof] = ACTIONS(1863), + [anon_sym_offsetof] = ACTIONS(1865), + [anon_sym__Generic] = ACTIONS(1867), + [anon_sym_asm] = ACTIONS(1869), + [anon_sym___asm__] = ACTIONS(1869), + [sym_number_literal] = ACTIONS(1871), + [anon_sym_L_SQUOTE] = ACTIONS(1873), + [anon_sym_u_SQUOTE] = ACTIONS(1873), + [anon_sym_U_SQUOTE] = ACTIONS(1873), + [anon_sym_u8_SQUOTE] = ACTIONS(1873), + [anon_sym_SQUOTE] = ACTIONS(1873), + [anon_sym_L_DQUOTE] = ACTIONS(1875), + [anon_sym_u_DQUOTE] = ACTIONS(1875), + [anon_sym_U_DQUOTE] = ACTIONS(1875), + [anon_sym_u8_DQUOTE] = ACTIONS(1875), + [anon_sym_DQUOTE] = ACTIONS(1875), + [sym_true] = ACTIONS(1877), + [sym_false] = ACTIONS(1877), + [anon_sym_NULL] = ACTIONS(1879), + [anon_sym_nullptr] = ACTIONS(1879), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1925), + [anon_sym_decltype] = ACTIONS(1927), + [anon_sym_typename] = ACTIONS(1929), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(1883), + [anon_sym_R_DQUOTE] = ACTIONS(1885), + [anon_sym_LR_DQUOTE] = ACTIONS(1885), + [anon_sym_uR_DQUOTE] = ACTIONS(1885), + [anon_sym_UR_DQUOTE] = ACTIONS(1885), + [anon_sym_u8R_DQUOTE] = ACTIONS(1885), + [anon_sym_co_await] = ACTIONS(1887), + [anon_sym_new] = ACTIONS(1889), + [anon_sym_requires] = ACTIONS(1891), + [sym_this] = ACTIONS(1877), }, [328] = { - [sym_type_qualifier] = STATE(3299), - [sym__type_specifier] = STATE(3894), - [sym_sized_type_specifier] = STATE(2541), - [sym_enum_specifier] = STATE(2541), - [sym_struct_specifier] = STATE(2541), - [sym_union_specifier] = STATE(2541), - [sym__expression] = STATE(2710), - [sym_comma_expression] = STATE(6494), - [sym_conditional_expression] = STATE(3035), - [sym_assignment_expression] = STATE(3035), - [sym_pointer_expression] = STATE(2713), - [sym_unary_expression] = STATE(3035), - [sym_binary_expression] = STATE(3035), - [sym_update_expression] = STATE(3035), - [sym_cast_expression] = STATE(3035), - [sym_type_descriptor] = STATE(6248), - [sym_sizeof_expression] = STATE(3035), - [sym_subscript_expression] = STATE(2713), - [sym_call_expression] = STATE(2713), - [sym_field_expression] = STATE(2713), - [sym_compound_literal_expression] = STATE(3035), - [sym_parenthesized_expression] = STATE(2713), - [sym_char_literal] = STATE(3013), - [sym_concatenated_string] = STATE(3013), - [sym_string_literal] = STATE(1900), - [sym_placeholder_type_specifier] = STATE(2541), - [sym_decltype_auto] = STATE(2540), - [sym_decltype] = STATE(2247), - [sym_class_specifier] = STATE(2541), - [sym__class_name] = STATE(5990), - [sym_dependent_type] = STATE(2541), - [sym_template_type] = STATE(4288), - [sym_template_function] = STATE(3035), - [sym_raw_string_literal] = STATE(1900), - [sym_co_await_expression] = STATE(3035), - [sym_new_expression] = STATE(3035), - [sym_delete_expression] = STATE(3035), - [sym_requires_clause] = STATE(3035), - [sym_requires_expression] = STATE(3035), - [sym_lambda_expression] = STATE(3035), - [sym_lambda_capture_specifier] = STATE(4465), - [sym__unary_left_fold] = STATE(6272), - [sym__unary_right_fold] = STATE(6271), - [sym__binary_fold] = STATE(6269), - [sym_fold_expression] = STATE(3035), - [sym_parameter_pack_expansion] = STATE(3035), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4537), - [sym_qualified_identifier] = STATE(2713), - [sym_qualified_type_identifier] = STATE(4356), - [sym_user_defined_literal] = STATE(3035), - [aux_sym_type_definition_repeat1] = STATE(3299), - [aux_sym_sized_type_specifier_repeat1] = STATE(1922), - [sym_identifier] = ACTIONS(2366), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1435), - [anon_sym_LPAREN2] = ACTIONS(1439), - [anon_sym_BANG] = ACTIONS(1441), - [anon_sym_TILDE] = ACTIONS(1441), - [anon_sym_DASH] = ACTIONS(1443), - [anon_sym_PLUS] = ACTIONS(1443), - [anon_sym_STAR] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(1445), - [anon_sym_COLON_COLON] = ACTIONS(1447), - [anon_sym_LBRACK] = ACTIONS(1539), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(1503), - [anon_sym_unsigned] = ACTIONS(1503), - [anon_sym_long] = ACTIONS(1503), - [anon_sym_short] = ACTIONS(1503), - [sym_primitive_type] = ACTIONS(1505), - [anon_sym_enum] = ACTIONS(1507), - [anon_sym_class] = ACTIONS(1509), - [anon_sym_struct] = ACTIONS(1511), - [anon_sym_union] = ACTIONS(1513), - [anon_sym_not] = ACTIONS(1443), - [anon_sym_compl] = ACTIONS(1443), - [anon_sym_DASH_DASH] = ACTIONS(1459), - [anon_sym_PLUS_PLUS] = ACTIONS(1459), - [anon_sym_sizeof] = ACTIONS(1461), - [sym_number_literal] = ACTIONS(1463), - [anon_sym_L_SQUOTE] = ACTIONS(1465), - [anon_sym_u_SQUOTE] = ACTIONS(1465), - [anon_sym_U_SQUOTE] = ACTIONS(1465), - [anon_sym_u8_SQUOTE] = ACTIONS(1465), - [anon_sym_SQUOTE] = ACTIONS(1465), - [anon_sym_L_DQUOTE] = ACTIONS(1467), - [anon_sym_u_DQUOTE] = ACTIONS(1467), - [anon_sym_U_DQUOTE] = ACTIONS(1467), - [anon_sym_u8_DQUOTE] = ACTIONS(1467), - [anon_sym_DQUOTE] = ACTIONS(1467), - [sym_true] = ACTIONS(1469), - [sym_false] = ACTIONS(1469), - [sym_null] = ACTIONS(1469), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1515), - [anon_sym_decltype] = ACTIONS(1517), - [anon_sym_typename] = ACTIONS(1519), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1473), - [anon_sym_R_DQUOTE] = ACTIONS(1475), - [anon_sym_LR_DQUOTE] = ACTIONS(1475), - [anon_sym_uR_DQUOTE] = ACTIONS(1475), - [anon_sym_UR_DQUOTE] = ACTIONS(1475), - [anon_sym_u8R_DQUOTE] = ACTIONS(1475), - [anon_sym_co_await] = ACTIONS(1477), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_requires] = ACTIONS(1481), - [sym_this] = ACTIONS(1469), - [sym_nullptr] = ACTIONS(1469), + [sym_type_qualifier] = STATE(3781), + [sym__type_specifier] = STATE(4168), + [sym_sized_type_specifier] = STATE(2802), + [sym_enum_specifier] = STATE(2802), + [sym_struct_specifier] = STATE(2802), + [sym_union_specifier] = STATE(2802), + [sym__expression] = STATE(3236), + [sym__expression_not_binary] = STATE(3565), + [sym_comma_expression] = STATE(7646), + [sym_conditional_expression] = STATE(3565), + [sym_assignment_expression] = STATE(3565), + [sym_pointer_expression] = STATE(3220), + [sym_unary_expression] = STATE(3565), + [sym_binary_expression] = STATE(3565), + [sym_update_expression] = STATE(3565), + [sym_cast_expression] = STATE(3565), + [sym_type_descriptor] = STATE(7130), + [sym_sizeof_expression] = STATE(3565), + [sym_offsetof_expression] = STATE(3565), + [sym_generic_expression] = STATE(3565), + [sym_subscript_expression] = STATE(3220), + [sym_call_expression] = STATE(3220), + [sym_gnu_asm_expression] = STATE(3565), + [sym_field_expression] = STATE(3220), + [sym_compound_literal_expression] = STATE(3565), + [sym_parenthesized_expression] = STATE(3220), + [sym_char_literal] = STATE(3429), + [sym_concatenated_string] = STATE(3429), + [sym_string_literal] = STATE(2248), + [sym_null] = STATE(3565), + [sym_placeholder_type_specifier] = STATE(2802), + [sym_decltype_auto] = STATE(2819), + [sym_decltype] = STATE(2662), + [sym_class_specifier] = STATE(2802), + [sym__class_name] = STATE(6847), + [sym_dependent_type] = STATE(2802), + [sym_template_type] = STATE(4771), + [sym_template_function] = STATE(3565), + [sym_raw_string_literal] = STATE(2248), + [sym_co_await_expression] = STATE(3565), + [sym_new_expression] = STATE(3565), + [sym_delete_expression] = STATE(3565), + [sym_requires_clause] = STATE(3565), + [sym_requires_expression] = STATE(3565), + [sym_lambda_expression] = STATE(3565), + [sym_lambda_capture_specifier] = STATE(5204), + [sym__unary_left_fold] = STATE(7128), + [sym__unary_right_fold] = STATE(7124), + [sym__binary_fold] = STATE(7047), + [sym_fold_expression] = STATE(3565), + [sym_parameter_pack_expansion] = STATE(3565), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5274), + [sym_qualified_identifier] = STATE(3220), + [sym_qualified_type_identifier] = STATE(4890), + [sym_user_defined_literal] = STATE(3565), + [aux_sym_type_definition_repeat1] = STATE(3781), + [aux_sym_sized_type_specifier_repeat1] = STATE(2230), + [sym_identifier] = ACTIONS(2538), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1837), + [anon_sym_LPAREN2] = ACTIONS(1841), + [anon_sym_BANG] = ACTIONS(1843), + [anon_sym_TILDE] = ACTIONS(1843), + [anon_sym_DASH] = ACTIONS(1845), + [anon_sym_PLUS] = ACTIONS(1845), + [anon_sym_STAR] = ACTIONS(1847), + [anon_sym_AMP] = ACTIONS(1847), + [anon_sym_COLON_COLON] = ACTIONS(1849), + [anon_sym_LBRACK] = ACTIONS(1949), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(1913), + [anon_sym_unsigned] = ACTIONS(1913), + [anon_sym_long] = ACTIONS(1913), + [anon_sym_short] = ACTIONS(1913), + [sym_primitive_type] = ACTIONS(1915), + [anon_sym_enum] = ACTIONS(1917), + [anon_sym_class] = ACTIONS(1919), + [anon_sym_struct] = ACTIONS(1921), + [anon_sym_union] = ACTIONS(1923), + [anon_sym_not] = ACTIONS(1845), + [anon_sym_compl] = ACTIONS(1845), + [anon_sym_DASH_DASH] = ACTIONS(1861), + [anon_sym_PLUS_PLUS] = ACTIONS(1861), + [anon_sym_sizeof] = ACTIONS(1863), + [anon_sym_offsetof] = ACTIONS(1865), + [anon_sym__Generic] = ACTIONS(1867), + [anon_sym_asm] = ACTIONS(1869), + [anon_sym___asm__] = ACTIONS(1869), + [sym_number_literal] = ACTIONS(1871), + [anon_sym_L_SQUOTE] = ACTIONS(1873), + [anon_sym_u_SQUOTE] = ACTIONS(1873), + [anon_sym_U_SQUOTE] = ACTIONS(1873), + [anon_sym_u8_SQUOTE] = ACTIONS(1873), + [anon_sym_SQUOTE] = ACTIONS(1873), + [anon_sym_L_DQUOTE] = ACTIONS(1875), + [anon_sym_u_DQUOTE] = ACTIONS(1875), + [anon_sym_U_DQUOTE] = ACTIONS(1875), + [anon_sym_u8_DQUOTE] = ACTIONS(1875), + [anon_sym_DQUOTE] = ACTIONS(1875), + [sym_true] = ACTIONS(1877), + [sym_false] = ACTIONS(1877), + [anon_sym_NULL] = ACTIONS(1879), + [anon_sym_nullptr] = ACTIONS(1879), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1925), + [anon_sym_decltype] = ACTIONS(1927), + [anon_sym_typename] = ACTIONS(1929), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(1883), + [anon_sym_R_DQUOTE] = ACTIONS(1885), + [anon_sym_LR_DQUOTE] = ACTIONS(1885), + [anon_sym_uR_DQUOTE] = ACTIONS(1885), + [anon_sym_UR_DQUOTE] = ACTIONS(1885), + [anon_sym_u8R_DQUOTE] = ACTIONS(1885), + [anon_sym_co_await] = ACTIONS(1887), + [anon_sym_new] = ACTIONS(1889), + [anon_sym_requires] = ACTIONS(1891), + [sym_this] = ACTIONS(1877), }, [329] = { - [sym_type_qualifier] = STATE(3299), - [sym__type_specifier] = STATE(3894), - [sym_sized_type_specifier] = STATE(2541), - [sym_enum_specifier] = STATE(2541), - [sym_struct_specifier] = STATE(2541), - [sym_union_specifier] = STATE(2541), - [sym__expression] = STATE(2826), - [sym_comma_expression] = STATE(6252), - [sym_conditional_expression] = STATE(3035), - [sym_assignment_expression] = STATE(3035), - [sym_pointer_expression] = STATE(2713), - [sym_unary_expression] = STATE(3035), - [sym_binary_expression] = STATE(3035), - [sym_update_expression] = STATE(3035), - [sym_cast_expression] = STATE(3035), - [sym_type_descriptor] = STATE(6283), - [sym_sizeof_expression] = STATE(3035), - [sym_subscript_expression] = STATE(2713), - [sym_call_expression] = STATE(2713), - [sym_field_expression] = STATE(2713), - [sym_compound_literal_expression] = STATE(3035), - [sym_parenthesized_expression] = STATE(2713), - [sym_char_literal] = STATE(3013), - [sym_concatenated_string] = STATE(3013), - [sym_string_literal] = STATE(1900), - [sym_placeholder_type_specifier] = STATE(2541), - [sym_decltype_auto] = STATE(2540), - [sym_decltype] = STATE(2247), - [sym_class_specifier] = STATE(2541), - [sym__class_name] = STATE(5990), - [sym_dependent_type] = STATE(2541), - [sym_template_type] = STATE(4288), - [sym_template_function] = STATE(3035), - [sym_raw_string_literal] = STATE(1900), - [sym_co_await_expression] = STATE(3035), - [sym_new_expression] = STATE(3035), - [sym_delete_expression] = STATE(3035), - [sym_requires_clause] = STATE(3035), - [sym_requires_expression] = STATE(3035), - [sym_lambda_expression] = STATE(3035), - [sym_lambda_capture_specifier] = STATE(4465), - [sym__unary_left_fold] = STATE(6259), - [sym__unary_right_fold] = STATE(6262), - [sym__binary_fold] = STATE(6267), - [sym_fold_expression] = STATE(3035), - [sym_parameter_pack_expansion] = STATE(3035), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4537), - [sym_qualified_identifier] = STATE(2713), - [sym_qualified_type_identifier] = STATE(4356), - [sym_user_defined_literal] = STATE(3035), - [aux_sym_type_definition_repeat1] = STATE(3299), - [aux_sym_sized_type_specifier_repeat1] = STATE(1922), - [sym_identifier] = ACTIONS(2366), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1435), - [anon_sym_LPAREN2] = ACTIONS(1439), - [anon_sym_BANG] = ACTIONS(1441), - [anon_sym_TILDE] = ACTIONS(1441), - [anon_sym_DASH] = ACTIONS(1443), - [anon_sym_PLUS] = ACTIONS(1443), - [anon_sym_STAR] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(1445), - [anon_sym_COLON_COLON] = ACTIONS(1447), - [anon_sym_LBRACK] = ACTIONS(1539), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(1503), - [anon_sym_unsigned] = ACTIONS(1503), - [anon_sym_long] = ACTIONS(1503), - [anon_sym_short] = ACTIONS(1503), - [sym_primitive_type] = ACTIONS(1505), - [anon_sym_enum] = ACTIONS(1507), - [anon_sym_class] = ACTIONS(1509), - [anon_sym_struct] = ACTIONS(1511), - [anon_sym_union] = ACTIONS(1513), - [anon_sym_not] = ACTIONS(1443), - [anon_sym_compl] = ACTIONS(1443), - [anon_sym_DASH_DASH] = ACTIONS(1459), - [anon_sym_PLUS_PLUS] = ACTIONS(1459), - [anon_sym_sizeof] = ACTIONS(1461), - [sym_number_literal] = ACTIONS(1463), - [anon_sym_L_SQUOTE] = ACTIONS(1465), - [anon_sym_u_SQUOTE] = ACTIONS(1465), - [anon_sym_U_SQUOTE] = ACTIONS(1465), - [anon_sym_u8_SQUOTE] = ACTIONS(1465), - [anon_sym_SQUOTE] = ACTIONS(1465), - [anon_sym_L_DQUOTE] = ACTIONS(1467), - [anon_sym_u_DQUOTE] = ACTIONS(1467), - [anon_sym_U_DQUOTE] = ACTIONS(1467), - [anon_sym_u8_DQUOTE] = ACTIONS(1467), - [anon_sym_DQUOTE] = ACTIONS(1467), - [sym_true] = ACTIONS(1469), - [sym_false] = ACTIONS(1469), - [sym_null] = ACTIONS(1469), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1515), - [anon_sym_decltype] = ACTIONS(1517), - [anon_sym_typename] = ACTIONS(1519), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1473), - [anon_sym_R_DQUOTE] = ACTIONS(1475), - [anon_sym_LR_DQUOTE] = ACTIONS(1475), - [anon_sym_uR_DQUOTE] = ACTIONS(1475), - [anon_sym_UR_DQUOTE] = ACTIONS(1475), - [anon_sym_u8R_DQUOTE] = ACTIONS(1475), - [anon_sym_co_await] = ACTIONS(1477), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_requires] = ACTIONS(1481), - [sym_this] = ACTIONS(1469), - [sym_nullptr] = ACTIONS(1469), + [sym_type_qualifier] = STATE(3781), + [sym__type_specifier] = STATE(4168), + [sym_sized_type_specifier] = STATE(2802), + [sym_enum_specifier] = STATE(2802), + [sym_struct_specifier] = STATE(2802), + [sym_union_specifier] = STATE(2802), + [sym__expression] = STATE(3264), + [sym__expression_not_binary] = STATE(3565), + [sym_comma_expression] = STATE(7617), + [sym_conditional_expression] = STATE(3565), + [sym_assignment_expression] = STATE(3565), + [sym_pointer_expression] = STATE(3220), + [sym_unary_expression] = STATE(3565), + [sym_binary_expression] = STATE(3565), + [sym_update_expression] = STATE(3565), + [sym_cast_expression] = STATE(3565), + [sym_type_descriptor] = STATE(7375), + [sym_sizeof_expression] = STATE(3565), + [sym_offsetof_expression] = STATE(3565), + [sym_generic_expression] = STATE(3565), + [sym_subscript_expression] = STATE(3220), + [sym_call_expression] = STATE(3220), + [sym_gnu_asm_expression] = STATE(3565), + [sym_field_expression] = STATE(3220), + [sym_compound_literal_expression] = STATE(3565), + [sym_parenthesized_expression] = STATE(3220), + [sym_char_literal] = STATE(3429), + [sym_concatenated_string] = STATE(3429), + [sym_string_literal] = STATE(2248), + [sym_null] = STATE(3565), + [sym_placeholder_type_specifier] = STATE(2802), + [sym_decltype_auto] = STATE(2819), + [sym_decltype] = STATE(2662), + [sym_class_specifier] = STATE(2802), + [sym__class_name] = STATE(6847), + [sym_dependent_type] = STATE(2802), + [sym_template_type] = STATE(4771), + [sym_template_function] = STATE(3565), + [sym_raw_string_literal] = STATE(2248), + [sym_co_await_expression] = STATE(3565), + [sym_new_expression] = STATE(3565), + [sym_delete_expression] = STATE(3565), + [sym_requires_clause] = STATE(3565), + [sym_requires_expression] = STATE(3565), + [sym_lambda_expression] = STATE(3565), + [sym_lambda_capture_specifier] = STATE(5204), + [sym__unary_left_fold] = STATE(7640), + [sym__unary_right_fold] = STATE(7639), + [sym__binary_fold] = STATE(7637), + [sym_fold_expression] = STATE(3565), + [sym_parameter_pack_expansion] = STATE(3565), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5274), + [sym_qualified_identifier] = STATE(3220), + [sym_qualified_type_identifier] = STATE(4890), + [sym_user_defined_literal] = STATE(3565), + [aux_sym_type_definition_repeat1] = STATE(3781), + [aux_sym_sized_type_specifier_repeat1] = STATE(2230), + [sym_identifier] = ACTIONS(2538), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1837), + [anon_sym_LPAREN2] = ACTIONS(1841), + [anon_sym_BANG] = ACTIONS(1843), + [anon_sym_TILDE] = ACTIONS(1843), + [anon_sym_DASH] = ACTIONS(1845), + [anon_sym_PLUS] = ACTIONS(1845), + [anon_sym_STAR] = ACTIONS(1847), + [anon_sym_AMP] = ACTIONS(1847), + [anon_sym_COLON_COLON] = ACTIONS(1849), + [anon_sym_LBRACK] = ACTIONS(1949), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(1913), + [anon_sym_unsigned] = ACTIONS(1913), + [anon_sym_long] = ACTIONS(1913), + [anon_sym_short] = ACTIONS(1913), + [sym_primitive_type] = ACTIONS(1915), + [anon_sym_enum] = ACTIONS(1917), + [anon_sym_class] = ACTIONS(1919), + [anon_sym_struct] = ACTIONS(1921), + [anon_sym_union] = ACTIONS(1923), + [anon_sym_not] = ACTIONS(1845), + [anon_sym_compl] = ACTIONS(1845), + [anon_sym_DASH_DASH] = ACTIONS(1861), + [anon_sym_PLUS_PLUS] = ACTIONS(1861), + [anon_sym_sizeof] = ACTIONS(1863), + [anon_sym_offsetof] = ACTIONS(1865), + [anon_sym__Generic] = ACTIONS(1867), + [anon_sym_asm] = ACTIONS(1869), + [anon_sym___asm__] = ACTIONS(1869), + [sym_number_literal] = ACTIONS(1871), + [anon_sym_L_SQUOTE] = ACTIONS(1873), + [anon_sym_u_SQUOTE] = ACTIONS(1873), + [anon_sym_U_SQUOTE] = ACTIONS(1873), + [anon_sym_u8_SQUOTE] = ACTIONS(1873), + [anon_sym_SQUOTE] = ACTIONS(1873), + [anon_sym_L_DQUOTE] = ACTIONS(1875), + [anon_sym_u_DQUOTE] = ACTIONS(1875), + [anon_sym_U_DQUOTE] = ACTIONS(1875), + [anon_sym_u8_DQUOTE] = ACTIONS(1875), + [anon_sym_DQUOTE] = ACTIONS(1875), + [sym_true] = ACTIONS(1877), + [sym_false] = ACTIONS(1877), + [anon_sym_NULL] = ACTIONS(1879), + [anon_sym_nullptr] = ACTIONS(1879), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1925), + [anon_sym_decltype] = ACTIONS(1927), + [anon_sym_typename] = ACTIONS(1929), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(1883), + [anon_sym_R_DQUOTE] = ACTIONS(1885), + [anon_sym_LR_DQUOTE] = ACTIONS(1885), + [anon_sym_uR_DQUOTE] = ACTIONS(1885), + [anon_sym_UR_DQUOTE] = ACTIONS(1885), + [anon_sym_u8R_DQUOTE] = ACTIONS(1885), + [anon_sym_co_await] = ACTIONS(1887), + [anon_sym_new] = ACTIONS(1889), + [anon_sym_requires] = ACTIONS(1891), + [sym_this] = ACTIONS(1877), }, [330] = { - [sym_type_qualifier] = STATE(3299), - [sym__type_specifier] = STATE(3894), - [sym_sized_type_specifier] = STATE(2541), - [sym_enum_specifier] = STATE(2541), - [sym_struct_specifier] = STATE(2541), - [sym_union_specifier] = STATE(2541), - [sym__expression] = STATE(2705), - [sym_comma_expression] = STATE(6624), - [sym_conditional_expression] = STATE(3035), - [sym_assignment_expression] = STATE(3035), - [sym_pointer_expression] = STATE(2713), - [sym_unary_expression] = STATE(3035), - [sym_binary_expression] = STATE(3035), - [sym_update_expression] = STATE(3035), - [sym_cast_expression] = STATE(3035), - [sym_type_descriptor] = STATE(6355), - [sym_sizeof_expression] = STATE(3035), - [sym_subscript_expression] = STATE(2713), - [sym_call_expression] = STATE(2713), - [sym_field_expression] = STATE(2713), - [sym_compound_literal_expression] = STATE(3035), - [sym_parenthesized_expression] = STATE(2713), - [sym_char_literal] = STATE(3013), - [sym_concatenated_string] = STATE(3013), - [sym_string_literal] = STATE(1900), - [sym_placeholder_type_specifier] = STATE(2541), - [sym_decltype_auto] = STATE(2540), - [sym_decltype] = STATE(2247), - [sym_class_specifier] = STATE(2541), - [sym__class_name] = STATE(5990), - [sym_dependent_type] = STATE(2541), - [sym_template_type] = STATE(4288), - [sym_template_function] = STATE(3035), - [sym_raw_string_literal] = STATE(1900), - [sym_co_await_expression] = STATE(3035), - [sym_new_expression] = STATE(3035), - [sym_delete_expression] = STATE(3035), - [sym_requires_clause] = STATE(3035), - [sym_requires_expression] = STATE(3035), - [sym_lambda_expression] = STATE(3035), - [sym_lambda_capture_specifier] = STATE(4465), - [sym__unary_left_fold] = STATE(6354), - [sym__unary_right_fold] = STATE(6353), - [sym__binary_fold] = STATE(6352), - [sym_fold_expression] = STATE(3035), - [sym_parameter_pack_expansion] = STATE(3035), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4537), - [sym_qualified_identifier] = STATE(2713), - [sym_qualified_type_identifier] = STATE(4356), - [sym_user_defined_literal] = STATE(3035), - [aux_sym_type_definition_repeat1] = STATE(3299), - [aux_sym_sized_type_specifier_repeat1] = STATE(1922), - [sym_identifier] = ACTIONS(2366), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1435), - [anon_sym_LPAREN2] = ACTIONS(1439), - [anon_sym_BANG] = ACTIONS(1441), - [anon_sym_TILDE] = ACTIONS(1441), - [anon_sym_DASH] = ACTIONS(1443), - [anon_sym_PLUS] = ACTIONS(1443), - [anon_sym_STAR] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(1445), - [anon_sym_COLON_COLON] = ACTIONS(1447), - [anon_sym_LBRACK] = ACTIONS(1539), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(1503), - [anon_sym_unsigned] = ACTIONS(1503), - [anon_sym_long] = ACTIONS(1503), - [anon_sym_short] = ACTIONS(1503), - [sym_primitive_type] = ACTIONS(1505), - [anon_sym_enum] = ACTIONS(1507), - [anon_sym_class] = ACTIONS(1509), - [anon_sym_struct] = ACTIONS(1511), - [anon_sym_union] = ACTIONS(1513), - [anon_sym_not] = ACTIONS(1443), - [anon_sym_compl] = ACTIONS(1443), - [anon_sym_DASH_DASH] = ACTIONS(1459), - [anon_sym_PLUS_PLUS] = ACTIONS(1459), - [anon_sym_sizeof] = ACTIONS(1461), - [sym_number_literal] = ACTIONS(1463), - [anon_sym_L_SQUOTE] = ACTIONS(1465), - [anon_sym_u_SQUOTE] = ACTIONS(1465), - [anon_sym_U_SQUOTE] = ACTIONS(1465), - [anon_sym_u8_SQUOTE] = ACTIONS(1465), - [anon_sym_SQUOTE] = ACTIONS(1465), - [anon_sym_L_DQUOTE] = ACTIONS(1467), - [anon_sym_u_DQUOTE] = ACTIONS(1467), - [anon_sym_U_DQUOTE] = ACTIONS(1467), - [anon_sym_u8_DQUOTE] = ACTIONS(1467), - [anon_sym_DQUOTE] = ACTIONS(1467), - [sym_true] = ACTIONS(1469), - [sym_false] = ACTIONS(1469), - [sym_null] = ACTIONS(1469), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1515), - [anon_sym_decltype] = ACTIONS(1517), - [anon_sym_typename] = ACTIONS(1519), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1473), - [anon_sym_R_DQUOTE] = ACTIONS(1475), - [anon_sym_LR_DQUOTE] = ACTIONS(1475), - [anon_sym_uR_DQUOTE] = ACTIONS(1475), - [anon_sym_UR_DQUOTE] = ACTIONS(1475), - [anon_sym_u8R_DQUOTE] = ACTIONS(1475), - [anon_sym_co_await] = ACTIONS(1477), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_requires] = ACTIONS(1481), - [sym_this] = ACTIONS(1469), - [sym_nullptr] = ACTIONS(1469), + [sym_type_qualifier] = STATE(3781), + [sym__type_specifier] = STATE(4168), + [sym_sized_type_specifier] = STATE(2802), + [sym_enum_specifier] = STATE(2802), + [sym_struct_specifier] = STATE(2802), + [sym_union_specifier] = STATE(2802), + [sym__expression] = STATE(3264), + [sym__expression_not_binary] = STATE(3565), + [sym_comma_expression] = STATE(7617), + [sym_conditional_expression] = STATE(3565), + [sym_assignment_expression] = STATE(3565), + [sym_pointer_expression] = STATE(3220), + [sym_unary_expression] = STATE(3565), + [sym_binary_expression] = STATE(3565), + [sym_update_expression] = STATE(3565), + [sym_cast_expression] = STATE(3565), + [sym_type_descriptor] = STATE(7589), + [sym_sizeof_expression] = STATE(3565), + [sym_offsetof_expression] = STATE(3565), + [sym_generic_expression] = STATE(3565), + [sym_subscript_expression] = STATE(3220), + [sym_call_expression] = STATE(3220), + [sym_gnu_asm_expression] = STATE(3565), + [sym_field_expression] = STATE(3220), + [sym_compound_literal_expression] = STATE(3565), + [sym_parenthesized_expression] = STATE(3220), + [sym_char_literal] = STATE(3429), + [sym_concatenated_string] = STATE(3429), + [sym_string_literal] = STATE(2248), + [sym_null] = STATE(3565), + [sym_placeholder_type_specifier] = STATE(2802), + [sym_decltype_auto] = STATE(2819), + [sym_decltype] = STATE(2662), + [sym_class_specifier] = STATE(2802), + [sym__class_name] = STATE(6847), + [sym_dependent_type] = STATE(2802), + [sym_template_type] = STATE(4771), + [sym_template_function] = STATE(3565), + [sym_raw_string_literal] = STATE(2248), + [sym_co_await_expression] = STATE(3565), + [sym_new_expression] = STATE(3565), + [sym_delete_expression] = STATE(3565), + [sym_requires_clause] = STATE(3565), + [sym_requires_expression] = STATE(3565), + [sym_lambda_expression] = STATE(3565), + [sym_lambda_capture_specifier] = STATE(5204), + [sym__unary_left_fold] = STATE(7640), + [sym__unary_right_fold] = STATE(7639), + [sym__binary_fold] = STATE(7637), + [sym_fold_expression] = STATE(3565), + [sym_parameter_pack_expansion] = STATE(3565), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5274), + [sym_qualified_identifier] = STATE(3220), + [sym_qualified_type_identifier] = STATE(4890), + [sym_user_defined_literal] = STATE(3565), + [aux_sym_type_definition_repeat1] = STATE(3781), + [aux_sym_sized_type_specifier_repeat1] = STATE(2230), + [sym_identifier] = ACTIONS(2538), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1837), + [anon_sym_LPAREN2] = ACTIONS(1841), + [anon_sym_BANG] = ACTIONS(1843), + [anon_sym_TILDE] = ACTIONS(1843), + [anon_sym_DASH] = ACTIONS(1845), + [anon_sym_PLUS] = ACTIONS(1845), + [anon_sym_STAR] = ACTIONS(1847), + [anon_sym_AMP] = ACTIONS(1847), + [anon_sym_COLON_COLON] = ACTIONS(1849), + [anon_sym_LBRACK] = ACTIONS(1949), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(1913), + [anon_sym_unsigned] = ACTIONS(1913), + [anon_sym_long] = ACTIONS(1913), + [anon_sym_short] = ACTIONS(1913), + [sym_primitive_type] = ACTIONS(1915), + [anon_sym_enum] = ACTIONS(1917), + [anon_sym_class] = ACTIONS(1919), + [anon_sym_struct] = ACTIONS(1921), + [anon_sym_union] = ACTIONS(1923), + [anon_sym_not] = ACTIONS(1845), + [anon_sym_compl] = ACTIONS(1845), + [anon_sym_DASH_DASH] = ACTIONS(1861), + [anon_sym_PLUS_PLUS] = ACTIONS(1861), + [anon_sym_sizeof] = ACTIONS(1863), + [anon_sym_offsetof] = ACTIONS(1865), + [anon_sym__Generic] = ACTIONS(1867), + [anon_sym_asm] = ACTIONS(1869), + [anon_sym___asm__] = ACTIONS(1869), + [sym_number_literal] = ACTIONS(1871), + [anon_sym_L_SQUOTE] = ACTIONS(1873), + [anon_sym_u_SQUOTE] = ACTIONS(1873), + [anon_sym_U_SQUOTE] = ACTIONS(1873), + [anon_sym_u8_SQUOTE] = ACTIONS(1873), + [anon_sym_SQUOTE] = ACTIONS(1873), + [anon_sym_L_DQUOTE] = ACTIONS(1875), + [anon_sym_u_DQUOTE] = ACTIONS(1875), + [anon_sym_U_DQUOTE] = ACTIONS(1875), + [anon_sym_u8_DQUOTE] = ACTIONS(1875), + [anon_sym_DQUOTE] = ACTIONS(1875), + [sym_true] = ACTIONS(1877), + [sym_false] = ACTIONS(1877), + [anon_sym_NULL] = ACTIONS(1879), + [anon_sym_nullptr] = ACTIONS(1879), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1925), + [anon_sym_decltype] = ACTIONS(1927), + [anon_sym_typename] = ACTIONS(1929), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(1883), + [anon_sym_R_DQUOTE] = ACTIONS(1885), + [anon_sym_LR_DQUOTE] = ACTIONS(1885), + [anon_sym_uR_DQUOTE] = ACTIONS(1885), + [anon_sym_UR_DQUOTE] = ACTIONS(1885), + [anon_sym_u8R_DQUOTE] = ACTIONS(1885), + [anon_sym_co_await] = ACTIONS(1887), + [anon_sym_new] = ACTIONS(1889), + [anon_sym_requires] = ACTIONS(1891), + [sym_this] = ACTIONS(1877), }, [331] = { - [sym_type_qualifier] = STATE(3299), - [sym__type_specifier] = STATE(3894), - [sym_sized_type_specifier] = STATE(2541), - [sym_enum_specifier] = STATE(2541), - [sym_struct_specifier] = STATE(2541), - [sym_union_specifier] = STATE(2541), - [sym__expression] = STATE(2826), - [sym_comma_expression] = STATE(6252), - [sym_conditional_expression] = STATE(3035), - [sym_assignment_expression] = STATE(3035), - [sym_pointer_expression] = STATE(2713), - [sym_unary_expression] = STATE(3035), - [sym_binary_expression] = STATE(3035), - [sym_update_expression] = STATE(3035), - [sym_cast_expression] = STATE(3035), - [sym_type_descriptor] = STATE(6258), - [sym_sizeof_expression] = STATE(3035), - [sym_subscript_expression] = STATE(2713), - [sym_call_expression] = STATE(2713), - [sym_field_expression] = STATE(2713), - [sym_compound_literal_expression] = STATE(3035), - [sym_parenthesized_expression] = STATE(2713), - [sym_char_literal] = STATE(3013), - [sym_concatenated_string] = STATE(3013), - [sym_string_literal] = STATE(1900), - [sym_placeholder_type_specifier] = STATE(2541), - [sym_decltype_auto] = STATE(2540), - [sym_decltype] = STATE(2247), - [sym_class_specifier] = STATE(2541), - [sym__class_name] = STATE(5990), - [sym_dependent_type] = STATE(2541), - [sym_template_type] = STATE(4288), - [sym_template_function] = STATE(3035), - [sym_raw_string_literal] = STATE(1900), - [sym_co_await_expression] = STATE(3035), - [sym_new_expression] = STATE(3035), - [sym_delete_expression] = STATE(3035), - [sym_requires_clause] = STATE(3035), - [sym_requires_expression] = STATE(3035), - [sym_lambda_expression] = STATE(3035), - [sym_lambda_capture_specifier] = STATE(4465), - [sym__unary_left_fold] = STATE(6259), - [sym__unary_right_fold] = STATE(6262), - [sym__binary_fold] = STATE(6267), - [sym_fold_expression] = STATE(3035), - [sym_parameter_pack_expansion] = STATE(3035), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4537), - [sym_qualified_identifier] = STATE(2713), - [sym_qualified_type_identifier] = STATE(4356), - [sym_user_defined_literal] = STATE(3035), - [aux_sym_type_definition_repeat1] = STATE(3299), - [aux_sym_sized_type_specifier_repeat1] = STATE(1922), - [sym_identifier] = ACTIONS(2366), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1435), - [anon_sym_LPAREN2] = ACTIONS(1439), - [anon_sym_BANG] = ACTIONS(1441), - [anon_sym_TILDE] = ACTIONS(1441), - [anon_sym_DASH] = ACTIONS(1443), - [anon_sym_PLUS] = ACTIONS(1443), - [anon_sym_STAR] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(1445), - [anon_sym_COLON_COLON] = ACTIONS(1447), - [anon_sym_LBRACK] = ACTIONS(1539), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(1503), - [anon_sym_unsigned] = ACTIONS(1503), - [anon_sym_long] = ACTIONS(1503), - [anon_sym_short] = ACTIONS(1503), - [sym_primitive_type] = ACTIONS(1505), - [anon_sym_enum] = ACTIONS(1507), - [anon_sym_class] = ACTIONS(1509), - [anon_sym_struct] = ACTIONS(1511), - [anon_sym_union] = ACTIONS(1513), - [anon_sym_not] = ACTIONS(1443), - [anon_sym_compl] = ACTIONS(1443), - [anon_sym_DASH_DASH] = ACTIONS(1459), - [anon_sym_PLUS_PLUS] = ACTIONS(1459), - [anon_sym_sizeof] = ACTIONS(1461), - [sym_number_literal] = ACTIONS(1463), - [anon_sym_L_SQUOTE] = ACTIONS(1465), - [anon_sym_u_SQUOTE] = ACTIONS(1465), - [anon_sym_U_SQUOTE] = ACTIONS(1465), - [anon_sym_u8_SQUOTE] = ACTIONS(1465), - [anon_sym_SQUOTE] = ACTIONS(1465), - [anon_sym_L_DQUOTE] = ACTIONS(1467), - [anon_sym_u_DQUOTE] = ACTIONS(1467), - [anon_sym_U_DQUOTE] = ACTIONS(1467), - [anon_sym_u8_DQUOTE] = ACTIONS(1467), - [anon_sym_DQUOTE] = ACTIONS(1467), - [sym_true] = ACTIONS(1469), - [sym_false] = ACTIONS(1469), - [sym_null] = ACTIONS(1469), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1515), - [anon_sym_decltype] = ACTIONS(1517), - [anon_sym_typename] = ACTIONS(1519), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1473), - [anon_sym_R_DQUOTE] = ACTIONS(1475), - [anon_sym_LR_DQUOTE] = ACTIONS(1475), - [anon_sym_uR_DQUOTE] = ACTIONS(1475), - [anon_sym_UR_DQUOTE] = ACTIONS(1475), - [anon_sym_u8R_DQUOTE] = ACTIONS(1475), - [anon_sym_co_await] = ACTIONS(1477), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_requires] = ACTIONS(1481), - [sym_this] = ACTIONS(1469), - [sym_nullptr] = ACTIONS(1469), + [ts_builtin_sym_end] = ACTIONS(2540), + [sym_identifier] = ACTIONS(2542), + [aux_sym_preproc_include_token1] = ACTIONS(2542), + [aux_sym_preproc_def_token1] = ACTIONS(2542), + [anon_sym_COMMA] = ACTIONS(2540), + [anon_sym_RPAREN] = ACTIONS(2540), + [aux_sym_preproc_if_token1] = ACTIONS(2542), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2542), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2542), + [sym_preproc_directive] = ACTIONS(2542), + [anon_sym_LPAREN2] = ACTIONS(2540), + [anon_sym_BANG] = ACTIONS(2540), + [anon_sym_TILDE] = ACTIONS(2540), + [anon_sym_DASH] = ACTIONS(2542), + [anon_sym_PLUS] = ACTIONS(2542), + [anon_sym_STAR] = ACTIONS(2540), + [anon_sym_PIPE_PIPE] = ACTIONS(2540), + [anon_sym_AMP_AMP] = ACTIONS(2540), + [anon_sym_AMP] = ACTIONS(2542), + [anon_sym_SEMI] = ACTIONS(2540), + [anon_sym_typedef] = ACTIONS(2542), + [anon_sym_extern] = ACTIONS(2542), + [anon_sym___attribute__] = ACTIONS(2542), + [anon_sym_COLON_COLON] = ACTIONS(2540), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2540), + [anon_sym___declspec] = ACTIONS(2542), + [anon_sym___based] = ACTIONS(2542), + [anon_sym___cdecl] = ACTIONS(2542), + [anon_sym___clrcall] = ACTIONS(2542), + [anon_sym___stdcall] = ACTIONS(2542), + [anon_sym___fastcall] = ACTIONS(2542), + [anon_sym___thiscall] = ACTIONS(2542), + [anon_sym___vectorcall] = ACTIONS(2542), + [anon_sym_LBRACE] = ACTIONS(2540), + [anon_sym_LBRACK] = ACTIONS(2542), + [anon_sym_EQ] = ACTIONS(2540), + [anon_sym_static] = ACTIONS(2542), + [anon_sym_register] = ACTIONS(2542), + [anon_sym_inline] = ACTIONS(2542), + [anon_sym_thread_local] = ACTIONS(2542), + [anon_sym_const] = ACTIONS(2542), + [anon_sym_constexpr] = ACTIONS(2542), + [anon_sym_volatile] = ACTIONS(2542), + [anon_sym_restrict] = ACTIONS(2542), + [anon_sym___restrict__] = ACTIONS(2542), + [anon_sym__Atomic] = ACTIONS(2542), + [anon_sym__Noreturn] = ACTIONS(2542), + [anon_sym_noreturn] = ACTIONS(2542), + [anon_sym_mutable] = ACTIONS(2542), + [anon_sym_constinit] = ACTIONS(2542), + [anon_sym_consteval] = ACTIONS(2542), + [anon_sym_signed] = ACTIONS(2542), + [anon_sym_unsigned] = ACTIONS(2542), + [anon_sym_long] = ACTIONS(2542), + [anon_sym_short] = ACTIONS(2542), + [sym_primitive_type] = ACTIONS(2542), + [anon_sym_enum] = ACTIONS(2542), + [anon_sym_class] = ACTIONS(2542), + [anon_sym_struct] = ACTIONS(2542), + [anon_sym_union] = ACTIONS(2542), + [anon_sym_if] = ACTIONS(2542), + [anon_sym_else] = ACTIONS(2542), + [anon_sym_switch] = ACTIONS(2542), + [anon_sym_case] = ACTIONS(2542), + [anon_sym_default] = ACTIONS(2542), + [anon_sym_while] = ACTIONS(2542), + [anon_sym_do] = ACTIONS(2542), + [anon_sym_for] = ACTIONS(2542), + [anon_sym_return] = ACTIONS(2542), + [anon_sym_break] = ACTIONS(2542), + [anon_sym_continue] = ACTIONS(2542), + [anon_sym_goto] = ACTIONS(2542), + [anon_sym_not] = ACTIONS(2542), + [anon_sym_compl] = ACTIONS(2542), + [anon_sym_or] = ACTIONS(2542), + [anon_sym_and] = ACTIONS(2542), + [anon_sym_DASH_DASH] = ACTIONS(2540), + [anon_sym_PLUS_PLUS] = ACTIONS(2540), + [anon_sym_sizeof] = ACTIONS(2542), + [anon_sym_offsetof] = ACTIONS(2542), + [anon_sym__Generic] = ACTIONS(2542), + [anon_sym_asm] = ACTIONS(2542), + [anon_sym___asm__] = ACTIONS(2542), + [sym_number_literal] = ACTIONS(2540), + [anon_sym_L_SQUOTE] = ACTIONS(2540), + [anon_sym_u_SQUOTE] = ACTIONS(2540), + [anon_sym_U_SQUOTE] = ACTIONS(2540), + [anon_sym_u8_SQUOTE] = ACTIONS(2540), + [anon_sym_SQUOTE] = ACTIONS(2540), + [anon_sym_L_DQUOTE] = ACTIONS(2540), + [anon_sym_u_DQUOTE] = ACTIONS(2540), + [anon_sym_U_DQUOTE] = ACTIONS(2540), + [anon_sym_u8_DQUOTE] = ACTIONS(2540), + [anon_sym_DQUOTE] = ACTIONS(2540), + [sym_true] = ACTIONS(2542), + [sym_false] = ACTIONS(2542), + [anon_sym_NULL] = ACTIONS(2542), + [anon_sym_nullptr] = ACTIONS(2542), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2542), + [anon_sym_decltype] = ACTIONS(2542), + [anon_sym_final] = ACTIONS(2542), + [anon_sym_override] = ACTIONS(2542), + [anon_sym_virtual] = ACTIONS(2542), + [anon_sym_explicit] = ACTIONS(2542), + [anon_sym_typename] = ACTIONS(2542), + [anon_sym_template] = ACTIONS(2542), + [anon_sym_GT2] = ACTIONS(2540), + [anon_sym_operator] = ACTIONS(2542), + [anon_sym_try] = ACTIONS(2542), + [anon_sym_delete] = ACTIONS(2542), + [anon_sym_throw] = ACTIONS(2542), + [anon_sym_namespace] = ACTIONS(2542), + [anon_sym_using] = ACTIONS(2542), + [anon_sym_static_assert] = ACTIONS(2542), + [anon_sym_concept] = ACTIONS(2542), + [anon_sym_co_return] = ACTIONS(2542), + [anon_sym_co_yield] = ACTIONS(2542), + [anon_sym_catch] = ACTIONS(2542), + [anon_sym_R_DQUOTE] = ACTIONS(2540), + [anon_sym_LR_DQUOTE] = ACTIONS(2540), + [anon_sym_uR_DQUOTE] = ACTIONS(2540), + [anon_sym_UR_DQUOTE] = ACTIONS(2540), + [anon_sym_u8R_DQUOTE] = ACTIONS(2540), + [anon_sym_co_await] = ACTIONS(2542), + [anon_sym_new] = ACTIONS(2542), + [anon_sym_requires] = ACTIONS(2542), + [sym_this] = ACTIONS(2542), }, [332] = { - [sym_type_qualifier] = STATE(3299), - [sym__type_specifier] = STATE(3894), - [sym_sized_type_specifier] = STATE(2541), - [sym_enum_specifier] = STATE(2541), - [sym_struct_specifier] = STATE(2541), - [sym_union_specifier] = STATE(2541), - [sym__expression] = STATE(2710), - [sym_comma_expression] = STATE(6494), - [sym_conditional_expression] = STATE(3035), - [sym_assignment_expression] = STATE(3035), - [sym_pointer_expression] = STATE(2713), - [sym_unary_expression] = STATE(3035), - [sym_binary_expression] = STATE(3035), - [sym_update_expression] = STATE(3035), - [sym_cast_expression] = STATE(3035), - [sym_type_descriptor] = STATE(6273), - [sym_sizeof_expression] = STATE(3035), - [sym_subscript_expression] = STATE(2713), - [sym_call_expression] = STATE(2713), - [sym_field_expression] = STATE(2713), - [sym_compound_literal_expression] = STATE(3035), - [sym_parenthesized_expression] = STATE(2713), - [sym_char_literal] = STATE(3013), - [sym_concatenated_string] = STATE(3013), - [sym_string_literal] = STATE(1900), - [sym_placeholder_type_specifier] = STATE(2541), - [sym_decltype_auto] = STATE(2540), - [sym_decltype] = STATE(2247), - [sym_class_specifier] = STATE(2541), - [sym__class_name] = STATE(5990), - [sym_dependent_type] = STATE(2541), - [sym_template_type] = STATE(4288), - [sym_template_function] = STATE(3035), - [sym_raw_string_literal] = STATE(1900), - [sym_co_await_expression] = STATE(3035), - [sym_new_expression] = STATE(3035), - [sym_delete_expression] = STATE(3035), - [sym_requires_clause] = STATE(3035), - [sym_requires_expression] = STATE(3035), - [sym_lambda_expression] = STATE(3035), - [sym_lambda_capture_specifier] = STATE(4465), - [sym__unary_left_fold] = STATE(6272), - [sym__unary_right_fold] = STATE(6271), - [sym__binary_fold] = STATE(6269), - [sym_fold_expression] = STATE(3035), - [sym_parameter_pack_expansion] = STATE(3035), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4537), - [sym_qualified_identifier] = STATE(2713), - [sym_qualified_type_identifier] = STATE(4356), - [sym_user_defined_literal] = STATE(3035), - [aux_sym_type_definition_repeat1] = STATE(3299), - [aux_sym_sized_type_specifier_repeat1] = STATE(1922), - [sym_identifier] = ACTIONS(2366), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1435), - [anon_sym_LPAREN2] = ACTIONS(1439), - [anon_sym_BANG] = ACTIONS(1441), - [anon_sym_TILDE] = ACTIONS(1441), - [anon_sym_DASH] = ACTIONS(1443), - [anon_sym_PLUS] = ACTIONS(1443), - [anon_sym_STAR] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(1445), - [anon_sym_COLON_COLON] = ACTIONS(1447), - [anon_sym_LBRACK] = ACTIONS(1539), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(1503), - [anon_sym_unsigned] = ACTIONS(1503), - [anon_sym_long] = ACTIONS(1503), - [anon_sym_short] = ACTIONS(1503), - [sym_primitive_type] = ACTIONS(1505), - [anon_sym_enum] = ACTIONS(1507), - [anon_sym_class] = ACTIONS(1509), - [anon_sym_struct] = ACTIONS(1511), - [anon_sym_union] = ACTIONS(1513), - [anon_sym_not] = ACTIONS(1443), - [anon_sym_compl] = ACTIONS(1443), - [anon_sym_DASH_DASH] = ACTIONS(1459), - [anon_sym_PLUS_PLUS] = ACTIONS(1459), - [anon_sym_sizeof] = ACTIONS(1461), - [sym_number_literal] = ACTIONS(1463), - [anon_sym_L_SQUOTE] = ACTIONS(1465), - [anon_sym_u_SQUOTE] = ACTIONS(1465), - [anon_sym_U_SQUOTE] = ACTIONS(1465), - [anon_sym_u8_SQUOTE] = ACTIONS(1465), - [anon_sym_SQUOTE] = ACTIONS(1465), - [anon_sym_L_DQUOTE] = ACTIONS(1467), - [anon_sym_u_DQUOTE] = ACTIONS(1467), - [anon_sym_U_DQUOTE] = ACTIONS(1467), - [anon_sym_u8_DQUOTE] = ACTIONS(1467), - [anon_sym_DQUOTE] = ACTIONS(1467), - [sym_true] = ACTIONS(1469), - [sym_false] = ACTIONS(1469), - [sym_null] = ACTIONS(1469), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1515), - [anon_sym_decltype] = ACTIONS(1517), - [anon_sym_typename] = ACTIONS(1519), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1473), - [anon_sym_R_DQUOTE] = ACTIONS(1475), - [anon_sym_LR_DQUOTE] = ACTIONS(1475), - [anon_sym_uR_DQUOTE] = ACTIONS(1475), - [anon_sym_UR_DQUOTE] = ACTIONS(1475), - [anon_sym_u8R_DQUOTE] = ACTIONS(1475), - [anon_sym_co_await] = ACTIONS(1477), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_requires] = ACTIONS(1481), - [sym_this] = ACTIONS(1469), - [sym_nullptr] = ACTIONS(1469), + [sym_type_qualifier] = STATE(3781), + [sym__type_specifier] = STATE(4168), + [sym_sized_type_specifier] = STATE(2802), + [sym_enum_specifier] = STATE(2802), + [sym_struct_specifier] = STATE(2802), + [sym_union_specifier] = STATE(2802), + [sym__expression] = STATE(3336), + [sym__expression_not_binary] = STATE(3565), + [sym_comma_expression] = STATE(7218), + [sym_conditional_expression] = STATE(3565), + [sym_assignment_expression] = STATE(3565), + [sym_pointer_expression] = STATE(3220), + [sym_unary_expression] = STATE(3565), + [sym_binary_expression] = STATE(3565), + [sym_update_expression] = STATE(3565), + [sym_cast_expression] = STATE(3565), + [sym_type_descriptor] = STATE(7341), + [sym_sizeof_expression] = STATE(3565), + [sym_offsetof_expression] = STATE(3565), + [sym_generic_expression] = STATE(3565), + [sym_subscript_expression] = STATE(3220), + [sym_call_expression] = STATE(3220), + [sym_gnu_asm_expression] = STATE(3565), + [sym_field_expression] = STATE(3220), + [sym_compound_literal_expression] = STATE(3565), + [sym_parenthesized_expression] = STATE(3220), + [sym_char_literal] = STATE(3429), + [sym_concatenated_string] = STATE(3429), + [sym_string_literal] = STATE(2248), + [sym_null] = STATE(3565), + [sym_placeholder_type_specifier] = STATE(2802), + [sym_decltype_auto] = STATE(2819), + [sym_decltype] = STATE(2662), + [sym_class_specifier] = STATE(2802), + [sym__class_name] = STATE(6847), + [sym_dependent_type] = STATE(2802), + [sym_template_type] = STATE(4771), + [sym_template_function] = STATE(3565), + [sym_raw_string_literal] = STATE(2248), + [sym_co_await_expression] = STATE(3565), + [sym_new_expression] = STATE(3565), + [sym_delete_expression] = STATE(3565), + [sym_requires_clause] = STATE(3565), + [sym_requires_expression] = STATE(3565), + [sym_lambda_expression] = STATE(3565), + [sym_lambda_capture_specifier] = STATE(5204), + [sym__unary_left_fold] = STATE(7340), + [sym__unary_right_fold] = STATE(7254), + [sym__binary_fold] = STATE(7336), + [sym_fold_expression] = STATE(3565), + [sym_parameter_pack_expansion] = STATE(3565), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5274), + [sym_qualified_identifier] = STATE(3220), + [sym_qualified_type_identifier] = STATE(4890), + [sym_user_defined_literal] = STATE(3565), + [aux_sym_type_definition_repeat1] = STATE(3781), + [aux_sym_sized_type_specifier_repeat1] = STATE(2230), + [sym_identifier] = ACTIONS(2538), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1837), + [anon_sym_LPAREN2] = ACTIONS(1841), + [anon_sym_BANG] = ACTIONS(1843), + [anon_sym_TILDE] = ACTIONS(1843), + [anon_sym_DASH] = ACTIONS(1845), + [anon_sym_PLUS] = ACTIONS(1845), + [anon_sym_STAR] = ACTIONS(1847), + [anon_sym_AMP] = ACTIONS(1847), + [anon_sym_COLON_COLON] = ACTIONS(1849), + [anon_sym_LBRACK] = ACTIONS(1949), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(1913), + [anon_sym_unsigned] = ACTIONS(1913), + [anon_sym_long] = ACTIONS(1913), + [anon_sym_short] = ACTIONS(1913), + [sym_primitive_type] = ACTIONS(1915), + [anon_sym_enum] = ACTIONS(1917), + [anon_sym_class] = ACTIONS(1919), + [anon_sym_struct] = ACTIONS(1921), + [anon_sym_union] = ACTIONS(1923), + [anon_sym_not] = ACTIONS(1845), + [anon_sym_compl] = ACTIONS(1845), + [anon_sym_DASH_DASH] = ACTIONS(1861), + [anon_sym_PLUS_PLUS] = ACTIONS(1861), + [anon_sym_sizeof] = ACTIONS(1863), + [anon_sym_offsetof] = ACTIONS(1865), + [anon_sym__Generic] = ACTIONS(1867), + [anon_sym_asm] = ACTIONS(1869), + [anon_sym___asm__] = ACTIONS(1869), + [sym_number_literal] = ACTIONS(1871), + [anon_sym_L_SQUOTE] = ACTIONS(1873), + [anon_sym_u_SQUOTE] = ACTIONS(1873), + [anon_sym_U_SQUOTE] = ACTIONS(1873), + [anon_sym_u8_SQUOTE] = ACTIONS(1873), + [anon_sym_SQUOTE] = ACTIONS(1873), + [anon_sym_L_DQUOTE] = ACTIONS(1875), + [anon_sym_u_DQUOTE] = ACTIONS(1875), + [anon_sym_U_DQUOTE] = ACTIONS(1875), + [anon_sym_u8_DQUOTE] = ACTIONS(1875), + [anon_sym_DQUOTE] = ACTIONS(1875), + [sym_true] = ACTIONS(1877), + [sym_false] = ACTIONS(1877), + [anon_sym_NULL] = ACTIONS(1879), + [anon_sym_nullptr] = ACTIONS(1879), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1925), + [anon_sym_decltype] = ACTIONS(1927), + [anon_sym_typename] = ACTIONS(1929), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(1883), + [anon_sym_R_DQUOTE] = ACTIONS(1885), + [anon_sym_LR_DQUOTE] = ACTIONS(1885), + [anon_sym_uR_DQUOTE] = ACTIONS(1885), + [anon_sym_UR_DQUOTE] = ACTIONS(1885), + [anon_sym_u8R_DQUOTE] = ACTIONS(1885), + [anon_sym_co_await] = ACTIONS(1887), + [anon_sym_new] = ACTIONS(1889), + [anon_sym_requires] = ACTIONS(1891), + [sym_this] = ACTIONS(1877), }, [333] = { - [sym_type_qualifier] = STATE(3299), - [sym__type_specifier] = STATE(3894), - [sym_sized_type_specifier] = STATE(2541), - [sym_enum_specifier] = STATE(2541), - [sym_struct_specifier] = STATE(2541), - [sym_union_specifier] = STATE(2541), - [sym__expression] = STATE(2826), - [sym_comma_expression] = STATE(6252), - [sym_conditional_expression] = STATE(3035), - [sym_assignment_expression] = STATE(3035), - [sym_pointer_expression] = STATE(2713), - [sym_unary_expression] = STATE(3035), - [sym_binary_expression] = STATE(3035), - [sym_update_expression] = STATE(3035), - [sym_cast_expression] = STATE(3035), - [sym_type_descriptor] = STATE(6427), - [sym_sizeof_expression] = STATE(3035), - [sym_subscript_expression] = STATE(2713), - [sym_call_expression] = STATE(2713), - [sym_field_expression] = STATE(2713), - [sym_compound_literal_expression] = STATE(3035), - [sym_parenthesized_expression] = STATE(2713), - [sym_char_literal] = STATE(3013), - [sym_concatenated_string] = STATE(3013), - [sym_string_literal] = STATE(1900), - [sym_placeholder_type_specifier] = STATE(2541), - [sym_decltype_auto] = STATE(2540), - [sym_decltype] = STATE(2247), - [sym_class_specifier] = STATE(2541), - [sym__class_name] = STATE(5990), - [sym_dependent_type] = STATE(2541), - [sym_template_type] = STATE(4288), - [sym_template_function] = STATE(3035), - [sym_raw_string_literal] = STATE(1900), - [sym_co_await_expression] = STATE(3035), - [sym_new_expression] = STATE(3035), - [sym_delete_expression] = STATE(3035), - [sym_requires_clause] = STATE(3035), - [sym_requires_expression] = STATE(3035), - [sym_lambda_expression] = STATE(3035), - [sym_lambda_capture_specifier] = STATE(4465), - [sym__unary_left_fold] = STATE(6259), - [sym__unary_right_fold] = STATE(6262), - [sym__binary_fold] = STATE(6267), - [sym_fold_expression] = STATE(3035), - [sym_parameter_pack_expansion] = STATE(3035), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4537), - [sym_qualified_identifier] = STATE(2713), - [sym_qualified_type_identifier] = STATE(4356), - [sym_user_defined_literal] = STATE(3035), - [aux_sym_type_definition_repeat1] = STATE(3299), - [aux_sym_sized_type_specifier_repeat1] = STATE(1922), - [sym_identifier] = ACTIONS(2366), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1435), - [anon_sym_LPAREN2] = ACTIONS(1439), - [anon_sym_BANG] = ACTIONS(1441), - [anon_sym_TILDE] = ACTIONS(1441), - [anon_sym_DASH] = ACTIONS(1443), - [anon_sym_PLUS] = ACTIONS(1443), - [anon_sym_STAR] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(1445), - [anon_sym_COLON_COLON] = ACTIONS(1447), - [anon_sym_LBRACK] = ACTIONS(1539), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(1503), - [anon_sym_unsigned] = ACTIONS(1503), - [anon_sym_long] = ACTIONS(1503), - [anon_sym_short] = ACTIONS(1503), - [sym_primitive_type] = ACTIONS(1505), - [anon_sym_enum] = ACTIONS(1507), - [anon_sym_class] = ACTIONS(1509), - [anon_sym_struct] = ACTIONS(1511), - [anon_sym_union] = ACTIONS(1513), - [anon_sym_not] = ACTIONS(1443), - [anon_sym_compl] = ACTIONS(1443), - [anon_sym_DASH_DASH] = ACTIONS(1459), - [anon_sym_PLUS_PLUS] = ACTIONS(1459), - [anon_sym_sizeof] = ACTIONS(1461), - [sym_number_literal] = ACTIONS(1463), - [anon_sym_L_SQUOTE] = ACTIONS(1465), - [anon_sym_u_SQUOTE] = ACTIONS(1465), - [anon_sym_U_SQUOTE] = ACTIONS(1465), - [anon_sym_u8_SQUOTE] = ACTIONS(1465), - [anon_sym_SQUOTE] = ACTIONS(1465), - [anon_sym_L_DQUOTE] = ACTIONS(1467), - [anon_sym_u_DQUOTE] = ACTIONS(1467), - [anon_sym_U_DQUOTE] = ACTIONS(1467), - [anon_sym_u8_DQUOTE] = ACTIONS(1467), - [anon_sym_DQUOTE] = ACTIONS(1467), - [sym_true] = ACTIONS(1469), - [sym_false] = ACTIONS(1469), - [sym_null] = ACTIONS(1469), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1515), - [anon_sym_decltype] = ACTIONS(1517), - [anon_sym_typename] = ACTIONS(1519), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1473), - [anon_sym_R_DQUOTE] = ACTIONS(1475), - [anon_sym_LR_DQUOTE] = ACTIONS(1475), - [anon_sym_uR_DQUOTE] = ACTIONS(1475), - [anon_sym_UR_DQUOTE] = ACTIONS(1475), - [anon_sym_u8R_DQUOTE] = ACTIONS(1475), - [anon_sym_co_await] = ACTIONS(1477), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_requires] = ACTIONS(1481), - [sym_this] = ACTIONS(1469), - [sym_nullptr] = ACTIONS(1469), + [sym_type_qualifier] = STATE(3781), + [sym__type_specifier] = STATE(4168), + [sym_sized_type_specifier] = STATE(2802), + [sym_enum_specifier] = STATE(2802), + [sym_struct_specifier] = STATE(2802), + [sym_union_specifier] = STATE(2802), + [sym__expression] = STATE(3264), + [sym__expression_not_binary] = STATE(3565), + [sym_comma_expression] = STATE(7617), + [sym_conditional_expression] = STATE(3565), + [sym_assignment_expression] = STATE(3565), + [sym_pointer_expression] = STATE(3220), + [sym_unary_expression] = STATE(3565), + [sym_binary_expression] = STATE(3565), + [sym_update_expression] = STATE(3565), + [sym_cast_expression] = STATE(3565), + [sym_type_descriptor] = STATE(7641), + [sym_sizeof_expression] = STATE(3565), + [sym_offsetof_expression] = STATE(3565), + [sym_generic_expression] = STATE(3565), + [sym_subscript_expression] = STATE(3220), + [sym_call_expression] = STATE(3220), + [sym_gnu_asm_expression] = STATE(3565), + [sym_field_expression] = STATE(3220), + [sym_compound_literal_expression] = STATE(3565), + [sym_parenthesized_expression] = STATE(3220), + [sym_char_literal] = STATE(3429), + [sym_concatenated_string] = STATE(3429), + [sym_string_literal] = STATE(2248), + [sym_null] = STATE(3565), + [sym_placeholder_type_specifier] = STATE(2802), + [sym_decltype_auto] = STATE(2819), + [sym_decltype] = STATE(2662), + [sym_class_specifier] = STATE(2802), + [sym__class_name] = STATE(6847), + [sym_dependent_type] = STATE(2802), + [sym_template_type] = STATE(4771), + [sym_template_function] = STATE(3565), + [sym_raw_string_literal] = STATE(2248), + [sym_co_await_expression] = STATE(3565), + [sym_new_expression] = STATE(3565), + [sym_delete_expression] = STATE(3565), + [sym_requires_clause] = STATE(3565), + [sym_requires_expression] = STATE(3565), + [sym_lambda_expression] = STATE(3565), + [sym_lambda_capture_specifier] = STATE(5204), + [sym__unary_left_fold] = STATE(7640), + [sym__unary_right_fold] = STATE(7639), + [sym__binary_fold] = STATE(7637), + [sym_fold_expression] = STATE(3565), + [sym_parameter_pack_expansion] = STATE(3565), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5274), + [sym_qualified_identifier] = STATE(3220), + [sym_qualified_type_identifier] = STATE(4890), + [sym_user_defined_literal] = STATE(3565), + [aux_sym_type_definition_repeat1] = STATE(3781), + [aux_sym_sized_type_specifier_repeat1] = STATE(2230), + [sym_identifier] = ACTIONS(2538), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1837), + [anon_sym_LPAREN2] = ACTIONS(1841), + [anon_sym_BANG] = ACTIONS(1843), + [anon_sym_TILDE] = ACTIONS(1843), + [anon_sym_DASH] = ACTIONS(1845), + [anon_sym_PLUS] = ACTIONS(1845), + [anon_sym_STAR] = ACTIONS(1847), + [anon_sym_AMP] = ACTIONS(1847), + [anon_sym_COLON_COLON] = ACTIONS(1849), + [anon_sym_LBRACK] = ACTIONS(1949), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(1913), + [anon_sym_unsigned] = ACTIONS(1913), + [anon_sym_long] = ACTIONS(1913), + [anon_sym_short] = ACTIONS(1913), + [sym_primitive_type] = ACTIONS(1915), + [anon_sym_enum] = ACTIONS(1917), + [anon_sym_class] = ACTIONS(1919), + [anon_sym_struct] = ACTIONS(1921), + [anon_sym_union] = ACTIONS(1923), + [anon_sym_not] = ACTIONS(1845), + [anon_sym_compl] = ACTIONS(1845), + [anon_sym_DASH_DASH] = ACTIONS(1861), + [anon_sym_PLUS_PLUS] = ACTIONS(1861), + [anon_sym_sizeof] = ACTIONS(1863), + [anon_sym_offsetof] = ACTIONS(1865), + [anon_sym__Generic] = ACTIONS(1867), + [anon_sym_asm] = ACTIONS(1869), + [anon_sym___asm__] = ACTIONS(1869), + [sym_number_literal] = ACTIONS(1871), + [anon_sym_L_SQUOTE] = ACTIONS(1873), + [anon_sym_u_SQUOTE] = ACTIONS(1873), + [anon_sym_U_SQUOTE] = ACTIONS(1873), + [anon_sym_u8_SQUOTE] = ACTIONS(1873), + [anon_sym_SQUOTE] = ACTIONS(1873), + [anon_sym_L_DQUOTE] = ACTIONS(1875), + [anon_sym_u_DQUOTE] = ACTIONS(1875), + [anon_sym_U_DQUOTE] = ACTIONS(1875), + [anon_sym_u8_DQUOTE] = ACTIONS(1875), + [anon_sym_DQUOTE] = ACTIONS(1875), + [sym_true] = ACTIONS(1877), + [sym_false] = ACTIONS(1877), + [anon_sym_NULL] = ACTIONS(1879), + [anon_sym_nullptr] = ACTIONS(1879), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1925), + [anon_sym_decltype] = ACTIONS(1927), + [anon_sym_typename] = ACTIONS(1929), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(1883), + [anon_sym_R_DQUOTE] = ACTIONS(1885), + [anon_sym_LR_DQUOTE] = ACTIONS(1885), + [anon_sym_uR_DQUOTE] = ACTIONS(1885), + [anon_sym_UR_DQUOTE] = ACTIONS(1885), + [anon_sym_u8R_DQUOTE] = ACTIONS(1885), + [anon_sym_co_await] = ACTIONS(1887), + [anon_sym_new] = ACTIONS(1889), + [anon_sym_requires] = ACTIONS(1891), + [sym_this] = ACTIONS(1877), }, [334] = { - [sym_catch_clause] = STATE(324), - [aux_sym_constructor_try_statement_repeat1] = STATE(324), - [sym_identifier] = ACTIONS(2381), - [aux_sym_preproc_include_token1] = ACTIONS(2381), - [aux_sym_preproc_def_token1] = ACTIONS(2381), - [aux_sym_preproc_if_token1] = ACTIONS(2381), - [aux_sym_preproc_if_token2] = ACTIONS(2381), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2381), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2381), - [aux_sym_preproc_else_token1] = ACTIONS(2381), - [aux_sym_preproc_elif_token1] = ACTIONS(2381), - [sym_preproc_directive] = ACTIONS(2381), - [anon_sym_LPAREN2] = ACTIONS(2383), - [anon_sym_BANG] = ACTIONS(2383), - [anon_sym_TILDE] = ACTIONS(2383), - [anon_sym_DASH] = ACTIONS(2381), - [anon_sym_PLUS] = ACTIONS(2381), - [anon_sym_STAR] = ACTIONS(2383), - [anon_sym_AMP_AMP] = ACTIONS(2383), - [anon_sym_AMP] = ACTIONS(2381), - [anon_sym_SEMI] = ACTIONS(2383), - [anon_sym_typedef] = ACTIONS(2381), - [anon_sym_extern] = ACTIONS(2381), - [anon_sym___attribute__] = ACTIONS(2381), - [anon_sym_COLON_COLON] = ACTIONS(2383), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2383), - [anon_sym___declspec] = ACTIONS(2381), - [anon_sym___based] = ACTIONS(2381), - [anon_sym___cdecl] = ACTIONS(2381), - [anon_sym___clrcall] = ACTIONS(2381), - [anon_sym___stdcall] = ACTIONS(2381), - [anon_sym___fastcall] = ACTIONS(2381), - [anon_sym___thiscall] = ACTIONS(2381), - [anon_sym___vectorcall] = ACTIONS(2381), - [anon_sym_LBRACE] = ACTIONS(2383), - [anon_sym_LBRACK] = ACTIONS(2381), - [anon_sym_static] = ACTIONS(2381), - [anon_sym_register] = ACTIONS(2381), - [anon_sym_inline] = ACTIONS(2381), - [anon_sym_thread_local] = ACTIONS(2381), - [anon_sym_const] = ACTIONS(2381), - [anon_sym_volatile] = ACTIONS(2381), - [anon_sym_restrict] = ACTIONS(2381), - [anon_sym__Atomic] = ACTIONS(2381), - [anon_sym_mutable] = ACTIONS(2381), - [anon_sym_constexpr] = ACTIONS(2381), - [anon_sym_constinit] = ACTIONS(2381), - [anon_sym_consteval] = ACTIONS(2381), - [anon_sym_signed] = ACTIONS(2381), - [anon_sym_unsigned] = ACTIONS(2381), - [anon_sym_long] = ACTIONS(2381), - [anon_sym_short] = ACTIONS(2381), - [sym_primitive_type] = ACTIONS(2381), - [anon_sym_enum] = ACTIONS(2381), - [anon_sym_class] = ACTIONS(2381), - [anon_sym_struct] = ACTIONS(2381), - [anon_sym_union] = ACTIONS(2381), - [anon_sym_if] = ACTIONS(2381), - [anon_sym_switch] = ACTIONS(2381), - [anon_sym_case] = ACTIONS(2381), - [anon_sym_default] = ACTIONS(2381), - [anon_sym_while] = ACTIONS(2381), - [anon_sym_do] = ACTIONS(2381), - [anon_sym_for] = ACTIONS(2381), - [anon_sym_return] = ACTIONS(2381), - [anon_sym_break] = ACTIONS(2381), - [anon_sym_continue] = ACTIONS(2381), - [anon_sym_goto] = ACTIONS(2381), - [anon_sym_not] = ACTIONS(2381), - [anon_sym_compl] = ACTIONS(2381), - [anon_sym_DASH_DASH] = ACTIONS(2383), - [anon_sym_PLUS_PLUS] = ACTIONS(2383), - [anon_sym_sizeof] = ACTIONS(2381), - [sym_number_literal] = ACTIONS(2383), - [anon_sym_L_SQUOTE] = ACTIONS(2383), - [anon_sym_u_SQUOTE] = ACTIONS(2383), - [anon_sym_U_SQUOTE] = ACTIONS(2383), - [anon_sym_u8_SQUOTE] = ACTIONS(2383), - [anon_sym_SQUOTE] = ACTIONS(2383), - [anon_sym_L_DQUOTE] = ACTIONS(2383), - [anon_sym_u_DQUOTE] = ACTIONS(2383), - [anon_sym_U_DQUOTE] = ACTIONS(2383), - [anon_sym_u8_DQUOTE] = ACTIONS(2383), - [anon_sym_DQUOTE] = ACTIONS(2383), - [sym_true] = ACTIONS(2381), - [sym_false] = ACTIONS(2381), - [sym_null] = ACTIONS(2381), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2381), - [anon_sym_decltype] = ACTIONS(2381), - [anon_sym_virtual] = ACTIONS(2381), - [anon_sym_explicit] = ACTIONS(2381), - [anon_sym_typename] = ACTIONS(2381), - [anon_sym_template] = ACTIONS(2381), - [anon_sym_operator] = ACTIONS(2381), - [anon_sym_try] = ACTIONS(2381), - [anon_sym_delete] = ACTIONS(2381), - [anon_sym_throw] = ACTIONS(2381), - [anon_sym_namespace] = ACTIONS(2381), - [anon_sym_using] = ACTIONS(2381), - [anon_sym_static_assert] = ACTIONS(2381), - [anon_sym_concept] = ACTIONS(2381), - [anon_sym_co_return] = ACTIONS(2381), - [anon_sym_co_yield] = ACTIONS(2381), - [anon_sym_catch] = ACTIONS(2372), - [anon_sym_R_DQUOTE] = ACTIONS(2383), - [anon_sym_LR_DQUOTE] = ACTIONS(2383), - [anon_sym_uR_DQUOTE] = ACTIONS(2383), - [anon_sym_UR_DQUOTE] = ACTIONS(2383), - [anon_sym_u8R_DQUOTE] = ACTIONS(2383), - [anon_sym_co_await] = ACTIONS(2381), - [anon_sym_new] = ACTIONS(2381), - [anon_sym_requires] = ACTIONS(2381), - [sym_this] = ACTIONS(2381), - [sym_nullptr] = ACTIONS(2381), + [sym_type_qualifier] = STATE(3781), + [sym__type_specifier] = STATE(4168), + [sym_sized_type_specifier] = STATE(2802), + [sym_enum_specifier] = STATE(2802), + [sym_struct_specifier] = STATE(2802), + [sym_union_specifier] = STATE(2802), + [sym__expression] = STATE(3264), + [sym__expression_not_binary] = STATE(3565), + [sym_comma_expression] = STATE(7617), + [sym_conditional_expression] = STATE(3565), + [sym_assignment_expression] = STATE(3565), + [sym_pointer_expression] = STATE(3220), + [sym_unary_expression] = STATE(3565), + [sym_binary_expression] = STATE(3565), + [sym_update_expression] = STATE(3565), + [sym_cast_expression] = STATE(3565), + [sym_type_descriptor] = STATE(7287), + [sym_sizeof_expression] = STATE(3565), + [sym_offsetof_expression] = STATE(3565), + [sym_generic_expression] = STATE(3565), + [sym_subscript_expression] = STATE(3220), + [sym_call_expression] = STATE(3220), + [sym_gnu_asm_expression] = STATE(3565), + [sym_field_expression] = STATE(3220), + [sym_compound_literal_expression] = STATE(3565), + [sym_parenthesized_expression] = STATE(3220), + [sym_char_literal] = STATE(3429), + [sym_concatenated_string] = STATE(3429), + [sym_string_literal] = STATE(2248), + [sym_null] = STATE(3565), + [sym_placeholder_type_specifier] = STATE(2802), + [sym_decltype_auto] = STATE(2819), + [sym_decltype] = STATE(2662), + [sym_class_specifier] = STATE(2802), + [sym__class_name] = STATE(6847), + [sym_dependent_type] = STATE(2802), + [sym_template_type] = STATE(4771), + [sym_template_function] = STATE(3565), + [sym_raw_string_literal] = STATE(2248), + [sym_co_await_expression] = STATE(3565), + [sym_new_expression] = STATE(3565), + [sym_delete_expression] = STATE(3565), + [sym_requires_clause] = STATE(3565), + [sym_requires_expression] = STATE(3565), + [sym_lambda_expression] = STATE(3565), + [sym_lambda_capture_specifier] = STATE(5204), + [sym__unary_left_fold] = STATE(7615), + [sym__unary_right_fold] = STATE(7614), + [sym__binary_fold] = STATE(7612), + [sym_fold_expression] = STATE(3565), + [sym_parameter_pack_expansion] = STATE(3565), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5274), + [sym_qualified_identifier] = STATE(3220), + [sym_qualified_type_identifier] = STATE(4890), + [sym_user_defined_literal] = STATE(3565), + [aux_sym_type_definition_repeat1] = STATE(3781), + [aux_sym_sized_type_specifier_repeat1] = STATE(2230), + [sym_identifier] = ACTIONS(2538), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1837), + [anon_sym_LPAREN2] = ACTIONS(1841), + [anon_sym_BANG] = ACTIONS(1843), + [anon_sym_TILDE] = ACTIONS(1843), + [anon_sym_DASH] = ACTIONS(1845), + [anon_sym_PLUS] = ACTIONS(1845), + [anon_sym_STAR] = ACTIONS(1847), + [anon_sym_AMP] = ACTIONS(1847), + [anon_sym_COLON_COLON] = ACTIONS(1849), + [anon_sym_LBRACK] = ACTIONS(1949), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(1913), + [anon_sym_unsigned] = ACTIONS(1913), + [anon_sym_long] = ACTIONS(1913), + [anon_sym_short] = ACTIONS(1913), + [sym_primitive_type] = ACTIONS(1915), + [anon_sym_enum] = ACTIONS(1917), + [anon_sym_class] = ACTIONS(1919), + [anon_sym_struct] = ACTIONS(1921), + [anon_sym_union] = ACTIONS(1923), + [anon_sym_not] = ACTIONS(1845), + [anon_sym_compl] = ACTIONS(1845), + [anon_sym_DASH_DASH] = ACTIONS(1861), + [anon_sym_PLUS_PLUS] = ACTIONS(1861), + [anon_sym_sizeof] = ACTIONS(1863), + [anon_sym_offsetof] = ACTIONS(1865), + [anon_sym__Generic] = ACTIONS(1867), + [anon_sym_asm] = ACTIONS(1869), + [anon_sym___asm__] = ACTIONS(1869), + [sym_number_literal] = ACTIONS(1871), + [anon_sym_L_SQUOTE] = ACTIONS(1873), + [anon_sym_u_SQUOTE] = ACTIONS(1873), + [anon_sym_U_SQUOTE] = ACTIONS(1873), + [anon_sym_u8_SQUOTE] = ACTIONS(1873), + [anon_sym_SQUOTE] = ACTIONS(1873), + [anon_sym_L_DQUOTE] = ACTIONS(1875), + [anon_sym_u_DQUOTE] = ACTIONS(1875), + [anon_sym_U_DQUOTE] = ACTIONS(1875), + [anon_sym_u8_DQUOTE] = ACTIONS(1875), + [anon_sym_DQUOTE] = ACTIONS(1875), + [sym_true] = ACTIONS(1877), + [sym_false] = ACTIONS(1877), + [anon_sym_NULL] = ACTIONS(1879), + [anon_sym_nullptr] = ACTIONS(1879), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1925), + [anon_sym_decltype] = ACTIONS(1927), + [anon_sym_typename] = ACTIONS(1929), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(1883), + [anon_sym_R_DQUOTE] = ACTIONS(1885), + [anon_sym_LR_DQUOTE] = ACTIONS(1885), + [anon_sym_uR_DQUOTE] = ACTIONS(1885), + [anon_sym_UR_DQUOTE] = ACTIONS(1885), + [anon_sym_u8R_DQUOTE] = ACTIONS(1885), + [anon_sym_co_await] = ACTIONS(1887), + [anon_sym_new] = ACTIONS(1889), + [anon_sym_requires] = ACTIONS(1891), + [sym_this] = ACTIONS(1877), }, [335] = { - [sym_catch_clause] = STATE(324), - [aux_sym_constructor_try_statement_repeat1] = STATE(324), - [sym_identifier] = ACTIONS(2385), - [aux_sym_preproc_include_token1] = ACTIONS(2385), - [aux_sym_preproc_def_token1] = ACTIONS(2385), - [aux_sym_preproc_if_token1] = ACTIONS(2385), - [aux_sym_preproc_if_token2] = ACTIONS(2385), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2385), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2385), - [aux_sym_preproc_else_token1] = ACTIONS(2385), - [aux_sym_preproc_elif_token1] = ACTIONS(2385), - [sym_preproc_directive] = ACTIONS(2385), - [anon_sym_LPAREN2] = ACTIONS(2387), - [anon_sym_BANG] = ACTIONS(2387), - [anon_sym_TILDE] = ACTIONS(2387), - [anon_sym_DASH] = ACTIONS(2385), - [anon_sym_PLUS] = ACTIONS(2385), - [anon_sym_STAR] = ACTIONS(2387), - [anon_sym_AMP_AMP] = ACTIONS(2387), - [anon_sym_AMP] = ACTIONS(2385), - [anon_sym_SEMI] = ACTIONS(2387), - [anon_sym_typedef] = ACTIONS(2385), - [anon_sym_extern] = ACTIONS(2385), - [anon_sym___attribute__] = ACTIONS(2385), - [anon_sym_COLON_COLON] = ACTIONS(2387), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2387), - [anon_sym___declspec] = ACTIONS(2385), - [anon_sym___based] = ACTIONS(2385), - [anon_sym___cdecl] = ACTIONS(2385), - [anon_sym___clrcall] = ACTIONS(2385), - [anon_sym___stdcall] = ACTIONS(2385), - [anon_sym___fastcall] = ACTIONS(2385), - [anon_sym___thiscall] = ACTIONS(2385), - [anon_sym___vectorcall] = ACTIONS(2385), - [anon_sym_LBRACE] = ACTIONS(2387), - [anon_sym_LBRACK] = ACTIONS(2385), - [anon_sym_static] = ACTIONS(2385), - [anon_sym_register] = ACTIONS(2385), - [anon_sym_inline] = ACTIONS(2385), - [anon_sym_thread_local] = ACTIONS(2385), - [anon_sym_const] = ACTIONS(2385), - [anon_sym_volatile] = ACTIONS(2385), - [anon_sym_restrict] = ACTIONS(2385), - [anon_sym__Atomic] = ACTIONS(2385), - [anon_sym_mutable] = ACTIONS(2385), - [anon_sym_constexpr] = ACTIONS(2385), - [anon_sym_constinit] = ACTIONS(2385), - [anon_sym_consteval] = ACTIONS(2385), - [anon_sym_signed] = ACTIONS(2385), - [anon_sym_unsigned] = ACTIONS(2385), - [anon_sym_long] = ACTIONS(2385), - [anon_sym_short] = ACTIONS(2385), - [sym_primitive_type] = ACTIONS(2385), - [anon_sym_enum] = ACTIONS(2385), - [anon_sym_class] = ACTIONS(2385), - [anon_sym_struct] = ACTIONS(2385), - [anon_sym_union] = ACTIONS(2385), - [anon_sym_if] = ACTIONS(2385), - [anon_sym_switch] = ACTIONS(2385), - [anon_sym_case] = ACTIONS(2385), - [anon_sym_default] = ACTIONS(2385), - [anon_sym_while] = ACTIONS(2385), - [anon_sym_do] = ACTIONS(2385), - [anon_sym_for] = ACTIONS(2385), - [anon_sym_return] = ACTIONS(2385), - [anon_sym_break] = ACTIONS(2385), - [anon_sym_continue] = ACTIONS(2385), - [anon_sym_goto] = ACTIONS(2385), - [anon_sym_not] = ACTIONS(2385), - [anon_sym_compl] = ACTIONS(2385), - [anon_sym_DASH_DASH] = ACTIONS(2387), - [anon_sym_PLUS_PLUS] = ACTIONS(2387), - [anon_sym_sizeof] = ACTIONS(2385), - [sym_number_literal] = ACTIONS(2387), - [anon_sym_L_SQUOTE] = ACTIONS(2387), - [anon_sym_u_SQUOTE] = ACTIONS(2387), - [anon_sym_U_SQUOTE] = ACTIONS(2387), - [anon_sym_u8_SQUOTE] = ACTIONS(2387), - [anon_sym_SQUOTE] = ACTIONS(2387), - [anon_sym_L_DQUOTE] = ACTIONS(2387), - [anon_sym_u_DQUOTE] = ACTIONS(2387), - [anon_sym_U_DQUOTE] = ACTIONS(2387), - [anon_sym_u8_DQUOTE] = ACTIONS(2387), - [anon_sym_DQUOTE] = ACTIONS(2387), - [sym_true] = ACTIONS(2385), - [sym_false] = ACTIONS(2385), - [sym_null] = ACTIONS(2385), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2385), - [anon_sym_decltype] = ACTIONS(2385), - [anon_sym_virtual] = ACTIONS(2385), - [anon_sym_explicit] = ACTIONS(2385), - [anon_sym_typename] = ACTIONS(2385), - [anon_sym_template] = ACTIONS(2385), - [anon_sym_operator] = ACTIONS(2385), - [anon_sym_try] = ACTIONS(2385), - [anon_sym_delete] = ACTIONS(2385), - [anon_sym_throw] = ACTIONS(2385), - [anon_sym_namespace] = ACTIONS(2385), - [anon_sym_using] = ACTIONS(2385), - [anon_sym_static_assert] = ACTIONS(2385), - [anon_sym_concept] = ACTIONS(2385), - [anon_sym_co_return] = ACTIONS(2385), - [anon_sym_co_yield] = ACTIONS(2385), - [anon_sym_catch] = ACTIONS(2372), - [anon_sym_R_DQUOTE] = ACTIONS(2387), - [anon_sym_LR_DQUOTE] = ACTIONS(2387), - [anon_sym_uR_DQUOTE] = ACTIONS(2387), - [anon_sym_UR_DQUOTE] = ACTIONS(2387), - [anon_sym_u8R_DQUOTE] = ACTIONS(2387), - [anon_sym_co_await] = ACTIONS(2385), - [anon_sym_new] = ACTIONS(2385), - [anon_sym_requires] = ACTIONS(2385), - [sym_this] = ACTIONS(2385), - [sym_nullptr] = ACTIONS(2385), + [sym_type_qualifier] = STATE(3781), + [sym__type_specifier] = STATE(4168), + [sym_sized_type_specifier] = STATE(2802), + [sym_enum_specifier] = STATE(2802), + [sym_struct_specifier] = STATE(2802), + [sym_union_specifier] = STATE(2802), + [sym__expression] = STATE(3336), + [sym__expression_not_binary] = STATE(3565), + [sym_comma_expression] = STATE(7218), + [sym_conditional_expression] = STATE(3565), + [sym_assignment_expression] = STATE(3565), + [sym_pointer_expression] = STATE(3220), + [sym_unary_expression] = STATE(3565), + [sym_binary_expression] = STATE(3565), + [sym_update_expression] = STATE(3565), + [sym_cast_expression] = STATE(3565), + [sym_type_descriptor] = STATE(7317), + [sym_sizeof_expression] = STATE(3565), + [sym_offsetof_expression] = STATE(3565), + [sym_generic_expression] = STATE(3565), + [sym_subscript_expression] = STATE(3220), + [sym_call_expression] = STATE(3220), + [sym_gnu_asm_expression] = STATE(3565), + [sym_field_expression] = STATE(3220), + [sym_compound_literal_expression] = STATE(3565), + [sym_parenthesized_expression] = STATE(3220), + [sym_char_literal] = STATE(3429), + [sym_concatenated_string] = STATE(3429), + [sym_string_literal] = STATE(2248), + [sym_null] = STATE(3565), + [sym_placeholder_type_specifier] = STATE(2802), + [sym_decltype_auto] = STATE(2819), + [sym_decltype] = STATE(2662), + [sym_class_specifier] = STATE(2802), + [sym__class_name] = STATE(6847), + [sym_dependent_type] = STATE(2802), + [sym_template_type] = STATE(4771), + [sym_template_function] = STATE(3565), + [sym_raw_string_literal] = STATE(2248), + [sym_co_await_expression] = STATE(3565), + [sym_new_expression] = STATE(3565), + [sym_delete_expression] = STATE(3565), + [sym_requires_clause] = STATE(3565), + [sym_requires_expression] = STATE(3565), + [sym_lambda_expression] = STATE(3565), + [sym_lambda_capture_specifier] = STATE(5204), + [sym__unary_left_fold] = STATE(7231), + [sym__unary_right_fold] = STATE(7233), + [sym__binary_fold] = STATE(7244), + [sym_fold_expression] = STATE(3565), + [sym_parameter_pack_expansion] = STATE(3565), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5274), + [sym_qualified_identifier] = STATE(3220), + [sym_qualified_type_identifier] = STATE(4890), + [sym_user_defined_literal] = STATE(3565), + [aux_sym_type_definition_repeat1] = STATE(3781), + [aux_sym_sized_type_specifier_repeat1] = STATE(2230), + [sym_identifier] = ACTIONS(2538), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1837), + [anon_sym_LPAREN2] = ACTIONS(1841), + [anon_sym_BANG] = ACTIONS(1843), + [anon_sym_TILDE] = ACTIONS(1843), + [anon_sym_DASH] = ACTIONS(1845), + [anon_sym_PLUS] = ACTIONS(1845), + [anon_sym_STAR] = ACTIONS(1847), + [anon_sym_AMP] = ACTIONS(1847), + [anon_sym_COLON_COLON] = ACTIONS(1849), + [anon_sym_LBRACK] = ACTIONS(1949), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(1913), + [anon_sym_unsigned] = ACTIONS(1913), + [anon_sym_long] = ACTIONS(1913), + [anon_sym_short] = ACTIONS(1913), + [sym_primitive_type] = ACTIONS(1915), + [anon_sym_enum] = ACTIONS(1917), + [anon_sym_class] = ACTIONS(1919), + [anon_sym_struct] = ACTIONS(1921), + [anon_sym_union] = ACTIONS(1923), + [anon_sym_not] = ACTIONS(1845), + [anon_sym_compl] = ACTIONS(1845), + [anon_sym_DASH_DASH] = ACTIONS(1861), + [anon_sym_PLUS_PLUS] = ACTIONS(1861), + [anon_sym_sizeof] = ACTIONS(1863), + [anon_sym_offsetof] = ACTIONS(1865), + [anon_sym__Generic] = ACTIONS(1867), + [anon_sym_asm] = ACTIONS(1869), + [anon_sym___asm__] = ACTIONS(1869), + [sym_number_literal] = ACTIONS(1871), + [anon_sym_L_SQUOTE] = ACTIONS(1873), + [anon_sym_u_SQUOTE] = ACTIONS(1873), + [anon_sym_U_SQUOTE] = ACTIONS(1873), + [anon_sym_u8_SQUOTE] = ACTIONS(1873), + [anon_sym_SQUOTE] = ACTIONS(1873), + [anon_sym_L_DQUOTE] = ACTIONS(1875), + [anon_sym_u_DQUOTE] = ACTIONS(1875), + [anon_sym_U_DQUOTE] = ACTIONS(1875), + [anon_sym_u8_DQUOTE] = ACTIONS(1875), + [anon_sym_DQUOTE] = ACTIONS(1875), + [sym_true] = ACTIONS(1877), + [sym_false] = ACTIONS(1877), + [anon_sym_NULL] = ACTIONS(1879), + [anon_sym_nullptr] = ACTIONS(1879), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1925), + [anon_sym_decltype] = ACTIONS(1927), + [anon_sym_typename] = ACTIONS(1929), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(1883), + [anon_sym_R_DQUOTE] = ACTIONS(1885), + [anon_sym_LR_DQUOTE] = ACTIONS(1885), + [anon_sym_uR_DQUOTE] = ACTIONS(1885), + [anon_sym_UR_DQUOTE] = ACTIONS(1885), + [anon_sym_u8R_DQUOTE] = ACTIONS(1885), + [anon_sym_co_await] = ACTIONS(1887), + [anon_sym_new] = ACTIONS(1889), + [anon_sym_requires] = ACTIONS(1891), + [sym_this] = ACTIONS(1877), }, [336] = { - [sym_catch_clause] = STATE(337), - [aux_sym_constructor_try_statement_repeat1] = STATE(337), - [sym_identifier] = ACTIONS(2368), - [aux_sym_preproc_include_token1] = ACTIONS(2368), - [aux_sym_preproc_def_token1] = ACTIONS(2368), - [aux_sym_preproc_if_token1] = ACTIONS(2368), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2368), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2368), - [sym_preproc_directive] = ACTIONS(2368), - [anon_sym_LPAREN2] = ACTIONS(2370), - [anon_sym_BANG] = ACTIONS(2370), - [anon_sym_TILDE] = ACTIONS(2370), - [anon_sym_DASH] = ACTIONS(2368), - [anon_sym_PLUS] = ACTIONS(2368), - [anon_sym_STAR] = ACTIONS(2370), - [anon_sym_AMP_AMP] = ACTIONS(2370), - [anon_sym_AMP] = ACTIONS(2368), - [anon_sym_SEMI] = ACTIONS(2370), - [anon_sym_typedef] = ACTIONS(2368), - [anon_sym_extern] = ACTIONS(2368), - [anon_sym___attribute__] = ACTIONS(2368), - [anon_sym_COLON_COLON] = ACTIONS(2370), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2370), - [anon_sym___declspec] = ACTIONS(2368), - [anon_sym___based] = ACTIONS(2368), - [anon_sym___cdecl] = ACTIONS(2368), - [anon_sym___clrcall] = ACTIONS(2368), - [anon_sym___stdcall] = ACTIONS(2368), - [anon_sym___fastcall] = ACTIONS(2368), - [anon_sym___thiscall] = ACTIONS(2368), - [anon_sym___vectorcall] = ACTIONS(2368), - [anon_sym_LBRACE] = ACTIONS(2370), - [anon_sym_RBRACE] = ACTIONS(2370), - [anon_sym_LBRACK] = ACTIONS(2368), - [anon_sym_static] = ACTIONS(2368), - [anon_sym_register] = ACTIONS(2368), - [anon_sym_inline] = ACTIONS(2368), - [anon_sym_thread_local] = ACTIONS(2368), - [anon_sym_const] = ACTIONS(2368), - [anon_sym_volatile] = ACTIONS(2368), - [anon_sym_restrict] = ACTIONS(2368), - [anon_sym__Atomic] = ACTIONS(2368), - [anon_sym_mutable] = ACTIONS(2368), - [anon_sym_constexpr] = ACTIONS(2368), - [anon_sym_constinit] = ACTIONS(2368), - [anon_sym_consteval] = ACTIONS(2368), - [anon_sym_signed] = ACTIONS(2368), - [anon_sym_unsigned] = ACTIONS(2368), - [anon_sym_long] = ACTIONS(2368), - [anon_sym_short] = ACTIONS(2368), - [sym_primitive_type] = ACTIONS(2368), - [anon_sym_enum] = ACTIONS(2368), - [anon_sym_class] = ACTIONS(2368), - [anon_sym_struct] = ACTIONS(2368), - [anon_sym_union] = ACTIONS(2368), - [anon_sym_if] = ACTIONS(2368), - [anon_sym_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_return] = ACTIONS(2368), - [anon_sym_break] = ACTIONS(2368), - [anon_sym_continue] = ACTIONS(2368), - [anon_sym_goto] = ACTIONS(2368), - [anon_sym_not] = ACTIONS(2368), - [anon_sym_compl] = ACTIONS(2368), - [anon_sym_DASH_DASH] = ACTIONS(2370), - [anon_sym_PLUS_PLUS] = ACTIONS(2370), - [anon_sym_sizeof] = ACTIONS(2368), - [sym_number_literal] = ACTIONS(2370), - [anon_sym_L_SQUOTE] = ACTIONS(2370), - [anon_sym_u_SQUOTE] = ACTIONS(2370), - [anon_sym_U_SQUOTE] = ACTIONS(2370), - [anon_sym_u8_SQUOTE] = ACTIONS(2370), - [anon_sym_SQUOTE] = ACTIONS(2370), - [anon_sym_L_DQUOTE] = ACTIONS(2370), - [anon_sym_u_DQUOTE] = ACTIONS(2370), - [anon_sym_U_DQUOTE] = ACTIONS(2370), - [anon_sym_u8_DQUOTE] = ACTIONS(2370), - [anon_sym_DQUOTE] = ACTIONS(2370), - [sym_true] = ACTIONS(2368), - [sym_false] = ACTIONS(2368), - [sym_null] = ACTIONS(2368), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2368), - [anon_sym_decltype] = ACTIONS(2368), - [anon_sym_virtual] = ACTIONS(2368), - [anon_sym_explicit] = ACTIONS(2368), - [anon_sym_typename] = ACTIONS(2368), - [anon_sym_template] = ACTIONS(2368), - [anon_sym_operator] = ACTIONS(2368), - [anon_sym_try] = ACTIONS(2368), - [anon_sym_delete] = ACTIONS(2368), - [anon_sym_throw] = ACTIONS(2368), - [anon_sym_namespace] = ACTIONS(2368), - [anon_sym_using] = ACTIONS(2368), - [anon_sym_static_assert] = ACTIONS(2368), - [anon_sym_concept] = ACTIONS(2368), - [anon_sym_co_return] = ACTIONS(2368), - [anon_sym_co_yield] = ACTIONS(2368), - [anon_sym_catch] = ACTIONS(2389), - [anon_sym_R_DQUOTE] = ACTIONS(2370), - [anon_sym_LR_DQUOTE] = ACTIONS(2370), - [anon_sym_uR_DQUOTE] = ACTIONS(2370), - [anon_sym_UR_DQUOTE] = ACTIONS(2370), - [anon_sym_u8R_DQUOTE] = ACTIONS(2370), - [anon_sym_co_await] = ACTIONS(2368), - [anon_sym_new] = ACTIONS(2368), - [anon_sym_requires] = ACTIONS(2368), - [sym_this] = ACTIONS(2368), - [sym_nullptr] = ACTIONS(2368), + [sym_type_qualifier] = STATE(3781), + [sym__type_specifier] = STATE(4168), + [sym_sized_type_specifier] = STATE(2802), + [sym_enum_specifier] = STATE(2802), + [sym_struct_specifier] = STATE(2802), + [sym_union_specifier] = STATE(2802), + [sym__expression] = STATE(3336), + [sym__expression_not_binary] = STATE(3565), + [sym_comma_expression] = STATE(7218), + [sym_conditional_expression] = STATE(3565), + [sym_assignment_expression] = STATE(3565), + [sym_pointer_expression] = STATE(3220), + [sym_unary_expression] = STATE(3565), + [sym_binary_expression] = STATE(3565), + [sym_update_expression] = STATE(3565), + [sym_cast_expression] = STATE(3565), + [sym_type_descriptor] = STATE(7268), + [sym_sizeof_expression] = STATE(3565), + [sym_offsetof_expression] = STATE(3565), + [sym_generic_expression] = STATE(3565), + [sym_subscript_expression] = STATE(3220), + [sym_call_expression] = STATE(3220), + [sym_gnu_asm_expression] = STATE(3565), + [sym_field_expression] = STATE(3220), + [sym_compound_literal_expression] = STATE(3565), + [sym_parenthesized_expression] = STATE(3220), + [sym_char_literal] = STATE(3429), + [sym_concatenated_string] = STATE(3429), + [sym_string_literal] = STATE(2248), + [sym_null] = STATE(3565), + [sym_placeholder_type_specifier] = STATE(2802), + [sym_decltype_auto] = STATE(2819), + [sym_decltype] = STATE(2662), + [sym_class_specifier] = STATE(2802), + [sym__class_name] = STATE(6847), + [sym_dependent_type] = STATE(2802), + [sym_template_type] = STATE(4771), + [sym_template_function] = STATE(3565), + [sym_raw_string_literal] = STATE(2248), + [sym_co_await_expression] = STATE(3565), + [sym_new_expression] = STATE(3565), + [sym_delete_expression] = STATE(3565), + [sym_requires_clause] = STATE(3565), + [sym_requires_expression] = STATE(3565), + [sym_lambda_expression] = STATE(3565), + [sym_lambda_capture_specifier] = STATE(5204), + [sym__unary_left_fold] = STATE(7340), + [sym__unary_right_fold] = STATE(7254), + [sym__binary_fold] = STATE(7336), + [sym_fold_expression] = STATE(3565), + [sym_parameter_pack_expansion] = STATE(3565), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5274), + [sym_qualified_identifier] = STATE(3220), + [sym_qualified_type_identifier] = STATE(4890), + [sym_user_defined_literal] = STATE(3565), + [aux_sym_type_definition_repeat1] = STATE(3781), + [aux_sym_sized_type_specifier_repeat1] = STATE(2230), + [sym_identifier] = ACTIONS(2538), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1837), + [anon_sym_LPAREN2] = ACTIONS(1841), + [anon_sym_BANG] = ACTIONS(1843), + [anon_sym_TILDE] = ACTIONS(1843), + [anon_sym_DASH] = ACTIONS(1845), + [anon_sym_PLUS] = ACTIONS(1845), + [anon_sym_STAR] = ACTIONS(1847), + [anon_sym_AMP] = ACTIONS(1847), + [anon_sym_COLON_COLON] = ACTIONS(1849), + [anon_sym_LBRACK] = ACTIONS(1949), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(1913), + [anon_sym_unsigned] = ACTIONS(1913), + [anon_sym_long] = ACTIONS(1913), + [anon_sym_short] = ACTIONS(1913), + [sym_primitive_type] = ACTIONS(1915), + [anon_sym_enum] = ACTIONS(1917), + [anon_sym_class] = ACTIONS(1919), + [anon_sym_struct] = ACTIONS(1921), + [anon_sym_union] = ACTIONS(1923), + [anon_sym_not] = ACTIONS(1845), + [anon_sym_compl] = ACTIONS(1845), + [anon_sym_DASH_DASH] = ACTIONS(1861), + [anon_sym_PLUS_PLUS] = ACTIONS(1861), + [anon_sym_sizeof] = ACTIONS(1863), + [anon_sym_offsetof] = ACTIONS(1865), + [anon_sym__Generic] = ACTIONS(1867), + [anon_sym_asm] = ACTIONS(1869), + [anon_sym___asm__] = ACTIONS(1869), + [sym_number_literal] = ACTIONS(1871), + [anon_sym_L_SQUOTE] = ACTIONS(1873), + [anon_sym_u_SQUOTE] = ACTIONS(1873), + [anon_sym_U_SQUOTE] = ACTIONS(1873), + [anon_sym_u8_SQUOTE] = ACTIONS(1873), + [anon_sym_SQUOTE] = ACTIONS(1873), + [anon_sym_L_DQUOTE] = ACTIONS(1875), + [anon_sym_u_DQUOTE] = ACTIONS(1875), + [anon_sym_U_DQUOTE] = ACTIONS(1875), + [anon_sym_u8_DQUOTE] = ACTIONS(1875), + [anon_sym_DQUOTE] = ACTIONS(1875), + [sym_true] = ACTIONS(1877), + [sym_false] = ACTIONS(1877), + [anon_sym_NULL] = ACTIONS(1879), + [anon_sym_nullptr] = ACTIONS(1879), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1925), + [anon_sym_decltype] = ACTIONS(1927), + [anon_sym_typename] = ACTIONS(1929), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(1883), + [anon_sym_R_DQUOTE] = ACTIONS(1885), + [anon_sym_LR_DQUOTE] = ACTIONS(1885), + [anon_sym_uR_DQUOTE] = ACTIONS(1885), + [anon_sym_UR_DQUOTE] = ACTIONS(1885), + [anon_sym_u8R_DQUOTE] = ACTIONS(1885), + [anon_sym_co_await] = ACTIONS(1887), + [anon_sym_new] = ACTIONS(1889), + [anon_sym_requires] = ACTIONS(1891), + [sym_this] = ACTIONS(1877), }, [337] = { - [sym_catch_clause] = STATE(337), - [aux_sym_constructor_try_statement_repeat1] = STATE(337), - [sym_identifier] = ACTIONS(2374), - [aux_sym_preproc_include_token1] = ACTIONS(2374), - [aux_sym_preproc_def_token1] = ACTIONS(2374), - [aux_sym_preproc_if_token1] = ACTIONS(2374), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2374), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2374), - [sym_preproc_directive] = ACTIONS(2374), - [anon_sym_LPAREN2] = ACTIONS(2376), - [anon_sym_BANG] = ACTIONS(2376), - [anon_sym_TILDE] = ACTIONS(2376), - [anon_sym_DASH] = ACTIONS(2374), - [anon_sym_PLUS] = ACTIONS(2374), - [anon_sym_STAR] = ACTIONS(2376), - [anon_sym_AMP_AMP] = ACTIONS(2376), - [anon_sym_AMP] = ACTIONS(2374), - [anon_sym_SEMI] = ACTIONS(2376), - [anon_sym_typedef] = ACTIONS(2374), - [anon_sym_extern] = ACTIONS(2374), - [anon_sym___attribute__] = ACTIONS(2374), - [anon_sym_COLON_COLON] = ACTIONS(2376), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2376), - [anon_sym___declspec] = ACTIONS(2374), - [anon_sym___based] = ACTIONS(2374), - [anon_sym___cdecl] = ACTIONS(2374), - [anon_sym___clrcall] = ACTIONS(2374), - [anon_sym___stdcall] = ACTIONS(2374), - [anon_sym___fastcall] = ACTIONS(2374), - [anon_sym___thiscall] = ACTIONS(2374), - [anon_sym___vectorcall] = ACTIONS(2374), - [anon_sym_LBRACE] = ACTIONS(2376), - [anon_sym_RBRACE] = ACTIONS(2376), - [anon_sym_LBRACK] = ACTIONS(2374), - [anon_sym_static] = ACTIONS(2374), - [anon_sym_register] = ACTIONS(2374), - [anon_sym_inline] = ACTIONS(2374), - [anon_sym_thread_local] = ACTIONS(2374), - [anon_sym_const] = ACTIONS(2374), - [anon_sym_volatile] = ACTIONS(2374), - [anon_sym_restrict] = ACTIONS(2374), - [anon_sym__Atomic] = ACTIONS(2374), - [anon_sym_mutable] = ACTIONS(2374), - [anon_sym_constexpr] = ACTIONS(2374), - [anon_sym_constinit] = ACTIONS(2374), - [anon_sym_consteval] = ACTIONS(2374), - [anon_sym_signed] = ACTIONS(2374), - [anon_sym_unsigned] = ACTIONS(2374), - [anon_sym_long] = ACTIONS(2374), - [anon_sym_short] = ACTIONS(2374), - [sym_primitive_type] = ACTIONS(2374), - [anon_sym_enum] = ACTIONS(2374), - [anon_sym_class] = ACTIONS(2374), - [anon_sym_struct] = ACTIONS(2374), - [anon_sym_union] = ACTIONS(2374), - [anon_sym_if] = ACTIONS(2374), - [anon_sym_else] = ACTIONS(2374), - [anon_sym_switch] = ACTIONS(2374), - [anon_sym_case] = ACTIONS(2374), - [anon_sym_default] = ACTIONS(2374), - [anon_sym_while] = ACTIONS(2374), - [anon_sym_do] = ACTIONS(2374), - [anon_sym_for] = ACTIONS(2374), - [anon_sym_return] = ACTIONS(2374), - [anon_sym_break] = ACTIONS(2374), - [anon_sym_continue] = ACTIONS(2374), - [anon_sym_goto] = ACTIONS(2374), - [anon_sym_not] = ACTIONS(2374), - [anon_sym_compl] = ACTIONS(2374), - [anon_sym_DASH_DASH] = ACTIONS(2376), - [anon_sym_PLUS_PLUS] = ACTIONS(2376), - [anon_sym_sizeof] = ACTIONS(2374), - [sym_number_literal] = ACTIONS(2376), - [anon_sym_L_SQUOTE] = ACTIONS(2376), - [anon_sym_u_SQUOTE] = ACTIONS(2376), - [anon_sym_U_SQUOTE] = ACTIONS(2376), - [anon_sym_u8_SQUOTE] = ACTIONS(2376), - [anon_sym_SQUOTE] = ACTIONS(2376), - [anon_sym_L_DQUOTE] = ACTIONS(2376), - [anon_sym_u_DQUOTE] = ACTIONS(2376), - [anon_sym_U_DQUOTE] = ACTIONS(2376), - [anon_sym_u8_DQUOTE] = ACTIONS(2376), - [anon_sym_DQUOTE] = ACTIONS(2376), - [sym_true] = ACTIONS(2374), - [sym_false] = ACTIONS(2374), - [sym_null] = ACTIONS(2374), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2374), - [anon_sym_decltype] = ACTIONS(2374), - [anon_sym_virtual] = ACTIONS(2374), - [anon_sym_explicit] = ACTIONS(2374), - [anon_sym_typename] = ACTIONS(2374), - [anon_sym_template] = ACTIONS(2374), - [anon_sym_operator] = ACTIONS(2374), - [anon_sym_try] = ACTIONS(2374), - [anon_sym_delete] = ACTIONS(2374), - [anon_sym_throw] = ACTIONS(2374), - [anon_sym_namespace] = ACTIONS(2374), - [anon_sym_using] = ACTIONS(2374), - [anon_sym_static_assert] = ACTIONS(2374), - [anon_sym_concept] = ACTIONS(2374), - [anon_sym_co_return] = ACTIONS(2374), - [anon_sym_co_yield] = ACTIONS(2374), - [anon_sym_catch] = ACTIONS(2391), - [anon_sym_R_DQUOTE] = ACTIONS(2376), - [anon_sym_LR_DQUOTE] = ACTIONS(2376), - [anon_sym_uR_DQUOTE] = ACTIONS(2376), - [anon_sym_UR_DQUOTE] = ACTIONS(2376), - [anon_sym_u8R_DQUOTE] = ACTIONS(2376), - [anon_sym_co_await] = ACTIONS(2374), - [anon_sym_new] = ACTIONS(2374), - [anon_sym_requires] = ACTIONS(2374), - [sym_this] = ACTIONS(2374), - [sym_nullptr] = ACTIONS(2374), + [sym_type_qualifier] = STATE(3781), + [sym__type_specifier] = STATE(4168), + [sym_sized_type_specifier] = STATE(2802), + [sym_enum_specifier] = STATE(2802), + [sym_struct_specifier] = STATE(2802), + [sym_union_specifier] = STATE(2802), + [sym__expression] = STATE(3236), + [sym__expression_not_binary] = STATE(3565), + [sym_comma_expression] = STATE(7646), + [sym_conditional_expression] = STATE(3565), + [sym_assignment_expression] = STATE(3565), + [sym_pointer_expression] = STATE(3220), + [sym_unary_expression] = STATE(3565), + [sym_binary_expression] = STATE(3565), + [sym_update_expression] = STATE(3565), + [sym_cast_expression] = STATE(3565), + [sym_type_descriptor] = STATE(7049), + [sym_sizeof_expression] = STATE(3565), + [sym_offsetof_expression] = STATE(3565), + [sym_generic_expression] = STATE(3565), + [sym_subscript_expression] = STATE(3220), + [sym_call_expression] = STATE(3220), + [sym_gnu_asm_expression] = STATE(3565), + [sym_field_expression] = STATE(3220), + [sym_compound_literal_expression] = STATE(3565), + [sym_parenthesized_expression] = STATE(3220), + [sym_char_literal] = STATE(3429), + [sym_concatenated_string] = STATE(3429), + [sym_string_literal] = STATE(2248), + [sym_null] = STATE(3565), + [sym_placeholder_type_specifier] = STATE(2802), + [sym_decltype_auto] = STATE(2819), + [sym_decltype] = STATE(2662), + [sym_class_specifier] = STATE(2802), + [sym__class_name] = STATE(6847), + [sym_dependent_type] = STATE(2802), + [sym_template_type] = STATE(4771), + [sym_template_function] = STATE(3565), + [sym_raw_string_literal] = STATE(2248), + [sym_co_await_expression] = STATE(3565), + [sym_new_expression] = STATE(3565), + [sym_delete_expression] = STATE(3565), + [sym_requires_clause] = STATE(3565), + [sym_requires_expression] = STATE(3565), + [sym_lambda_expression] = STATE(3565), + [sym_lambda_capture_specifier] = STATE(5204), + [sym__unary_left_fold] = STATE(7128), + [sym__unary_right_fold] = STATE(7124), + [sym__binary_fold] = STATE(7047), + [sym_fold_expression] = STATE(3565), + [sym_parameter_pack_expansion] = STATE(3565), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5274), + [sym_qualified_identifier] = STATE(3220), + [sym_qualified_type_identifier] = STATE(4890), + [sym_user_defined_literal] = STATE(3565), + [aux_sym_type_definition_repeat1] = STATE(3781), + [aux_sym_sized_type_specifier_repeat1] = STATE(2230), + [sym_identifier] = ACTIONS(2538), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1837), + [anon_sym_LPAREN2] = ACTIONS(1841), + [anon_sym_BANG] = ACTIONS(1843), + [anon_sym_TILDE] = ACTIONS(1843), + [anon_sym_DASH] = ACTIONS(1845), + [anon_sym_PLUS] = ACTIONS(1845), + [anon_sym_STAR] = ACTIONS(1847), + [anon_sym_AMP] = ACTIONS(1847), + [anon_sym_COLON_COLON] = ACTIONS(1849), + [anon_sym_LBRACK] = ACTIONS(1949), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(1913), + [anon_sym_unsigned] = ACTIONS(1913), + [anon_sym_long] = ACTIONS(1913), + [anon_sym_short] = ACTIONS(1913), + [sym_primitive_type] = ACTIONS(1915), + [anon_sym_enum] = ACTIONS(1917), + [anon_sym_class] = ACTIONS(1919), + [anon_sym_struct] = ACTIONS(1921), + [anon_sym_union] = ACTIONS(1923), + [anon_sym_not] = ACTIONS(1845), + [anon_sym_compl] = ACTIONS(1845), + [anon_sym_DASH_DASH] = ACTIONS(1861), + [anon_sym_PLUS_PLUS] = ACTIONS(1861), + [anon_sym_sizeof] = ACTIONS(1863), + [anon_sym_offsetof] = ACTIONS(1865), + [anon_sym__Generic] = ACTIONS(1867), + [anon_sym_asm] = ACTIONS(1869), + [anon_sym___asm__] = ACTIONS(1869), + [sym_number_literal] = ACTIONS(1871), + [anon_sym_L_SQUOTE] = ACTIONS(1873), + [anon_sym_u_SQUOTE] = ACTIONS(1873), + [anon_sym_U_SQUOTE] = ACTIONS(1873), + [anon_sym_u8_SQUOTE] = ACTIONS(1873), + [anon_sym_SQUOTE] = ACTIONS(1873), + [anon_sym_L_DQUOTE] = ACTIONS(1875), + [anon_sym_u_DQUOTE] = ACTIONS(1875), + [anon_sym_U_DQUOTE] = ACTIONS(1875), + [anon_sym_u8_DQUOTE] = ACTIONS(1875), + [anon_sym_DQUOTE] = ACTIONS(1875), + [sym_true] = ACTIONS(1877), + [sym_false] = ACTIONS(1877), + [anon_sym_NULL] = ACTIONS(1879), + [anon_sym_nullptr] = ACTIONS(1879), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1925), + [anon_sym_decltype] = ACTIONS(1927), + [anon_sym_typename] = ACTIONS(1929), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(1883), + [anon_sym_R_DQUOTE] = ACTIONS(1885), + [anon_sym_LR_DQUOTE] = ACTIONS(1885), + [anon_sym_uR_DQUOTE] = ACTIONS(1885), + [anon_sym_UR_DQUOTE] = ACTIONS(1885), + [anon_sym_u8R_DQUOTE] = ACTIONS(1885), + [anon_sym_co_await] = ACTIONS(1887), + [anon_sym_new] = ACTIONS(1889), + [anon_sym_requires] = ACTIONS(1891), + [sym_this] = ACTIONS(1877), }, [338] = { - [sym_catch_clause] = STATE(338), - [aux_sym_constructor_try_statement_repeat1] = STATE(338), - [sym_identifier] = ACTIONS(2374), - [aux_sym_preproc_include_token1] = ACTIONS(2374), - [aux_sym_preproc_def_token1] = ACTIONS(2374), - [aux_sym_preproc_if_token1] = ACTIONS(2374), - [aux_sym_preproc_if_token2] = ACTIONS(2374), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2374), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2374), - [sym_preproc_directive] = ACTIONS(2374), - [anon_sym_LPAREN2] = ACTIONS(2376), - [anon_sym_BANG] = ACTIONS(2376), - [anon_sym_TILDE] = ACTIONS(2376), - [anon_sym_DASH] = ACTIONS(2374), - [anon_sym_PLUS] = ACTIONS(2374), - [anon_sym_STAR] = ACTIONS(2376), - [anon_sym_AMP_AMP] = ACTIONS(2376), - [anon_sym_AMP] = ACTIONS(2374), - [anon_sym_SEMI] = ACTIONS(2376), - [anon_sym_typedef] = ACTIONS(2374), - [anon_sym_extern] = ACTIONS(2374), - [anon_sym___attribute__] = ACTIONS(2374), - [anon_sym_COLON_COLON] = ACTIONS(2376), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2376), - [anon_sym___declspec] = ACTIONS(2374), - [anon_sym___based] = ACTIONS(2374), - [anon_sym___cdecl] = ACTIONS(2374), - [anon_sym___clrcall] = ACTIONS(2374), - [anon_sym___stdcall] = ACTIONS(2374), - [anon_sym___fastcall] = ACTIONS(2374), - [anon_sym___thiscall] = ACTIONS(2374), - [anon_sym___vectorcall] = ACTIONS(2374), - [anon_sym_LBRACE] = ACTIONS(2376), - [anon_sym_LBRACK] = ACTIONS(2374), - [anon_sym_static] = ACTIONS(2374), - [anon_sym_register] = ACTIONS(2374), - [anon_sym_inline] = ACTIONS(2374), - [anon_sym_thread_local] = ACTIONS(2374), - [anon_sym_const] = ACTIONS(2374), - [anon_sym_volatile] = ACTIONS(2374), - [anon_sym_restrict] = ACTIONS(2374), - [anon_sym__Atomic] = ACTIONS(2374), - [anon_sym_mutable] = ACTIONS(2374), - [anon_sym_constexpr] = ACTIONS(2374), - [anon_sym_constinit] = ACTIONS(2374), - [anon_sym_consteval] = ACTIONS(2374), - [anon_sym_signed] = ACTIONS(2374), - [anon_sym_unsigned] = ACTIONS(2374), - [anon_sym_long] = ACTIONS(2374), - [anon_sym_short] = ACTIONS(2374), - [sym_primitive_type] = ACTIONS(2374), - [anon_sym_enum] = ACTIONS(2374), - [anon_sym_class] = ACTIONS(2374), - [anon_sym_struct] = ACTIONS(2374), - [anon_sym_union] = ACTIONS(2374), - [anon_sym_if] = ACTIONS(2374), - [anon_sym_else] = ACTIONS(2374), - [anon_sym_switch] = ACTIONS(2374), - [anon_sym_case] = ACTIONS(2374), - [anon_sym_default] = ACTIONS(2374), - [anon_sym_while] = ACTIONS(2374), - [anon_sym_do] = ACTIONS(2374), - [anon_sym_for] = ACTIONS(2374), - [anon_sym_return] = ACTIONS(2374), - [anon_sym_break] = ACTIONS(2374), - [anon_sym_continue] = ACTIONS(2374), - [anon_sym_goto] = ACTIONS(2374), - [anon_sym_not] = ACTIONS(2374), - [anon_sym_compl] = ACTIONS(2374), - [anon_sym_DASH_DASH] = ACTIONS(2376), - [anon_sym_PLUS_PLUS] = ACTIONS(2376), - [anon_sym_sizeof] = ACTIONS(2374), - [sym_number_literal] = ACTIONS(2376), - [anon_sym_L_SQUOTE] = ACTIONS(2376), - [anon_sym_u_SQUOTE] = ACTIONS(2376), - [anon_sym_U_SQUOTE] = ACTIONS(2376), - [anon_sym_u8_SQUOTE] = ACTIONS(2376), - [anon_sym_SQUOTE] = ACTIONS(2376), - [anon_sym_L_DQUOTE] = ACTIONS(2376), - [anon_sym_u_DQUOTE] = ACTIONS(2376), - [anon_sym_U_DQUOTE] = ACTIONS(2376), - [anon_sym_u8_DQUOTE] = ACTIONS(2376), - [anon_sym_DQUOTE] = ACTIONS(2376), - [sym_true] = ACTIONS(2374), - [sym_false] = ACTIONS(2374), - [sym_null] = ACTIONS(2374), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2374), - [anon_sym_decltype] = ACTIONS(2374), - [anon_sym_virtual] = ACTIONS(2374), - [anon_sym_explicit] = ACTIONS(2374), - [anon_sym_typename] = ACTIONS(2374), - [anon_sym_template] = ACTIONS(2374), - [anon_sym_operator] = ACTIONS(2374), - [anon_sym_try] = ACTIONS(2374), - [anon_sym_delete] = ACTIONS(2374), - [anon_sym_throw] = ACTIONS(2374), - [anon_sym_namespace] = ACTIONS(2374), - [anon_sym_using] = ACTIONS(2374), - [anon_sym_static_assert] = ACTIONS(2374), - [anon_sym_concept] = ACTIONS(2374), - [anon_sym_co_return] = ACTIONS(2374), - [anon_sym_co_yield] = ACTIONS(2374), - [anon_sym_catch] = ACTIONS(2394), - [anon_sym_R_DQUOTE] = ACTIONS(2376), - [anon_sym_LR_DQUOTE] = ACTIONS(2376), - [anon_sym_uR_DQUOTE] = ACTIONS(2376), - [anon_sym_UR_DQUOTE] = ACTIONS(2376), - [anon_sym_u8R_DQUOTE] = ACTIONS(2376), - [anon_sym_co_await] = ACTIONS(2374), - [anon_sym_new] = ACTIONS(2374), - [anon_sym_requires] = ACTIONS(2374), - [sym_this] = ACTIONS(2374), - [sym_nullptr] = ACTIONS(2374), + [sym_type_qualifier] = STATE(3781), + [sym__type_specifier] = STATE(4168), + [sym_sized_type_specifier] = STATE(2802), + [sym_enum_specifier] = STATE(2802), + [sym_struct_specifier] = STATE(2802), + [sym_union_specifier] = STATE(2802), + [sym__expression] = STATE(3264), + [sym__expression_not_binary] = STATE(3565), + [sym_comma_expression] = STATE(7617), + [sym_conditional_expression] = STATE(3565), + [sym_assignment_expression] = STATE(3565), + [sym_pointer_expression] = STATE(3220), + [sym_unary_expression] = STATE(3565), + [sym_binary_expression] = STATE(3565), + [sym_update_expression] = STATE(3565), + [sym_cast_expression] = STATE(3565), + [sym_type_descriptor] = STATE(7297), + [sym_sizeof_expression] = STATE(3565), + [sym_offsetof_expression] = STATE(3565), + [sym_generic_expression] = STATE(3565), + [sym_subscript_expression] = STATE(3220), + [sym_call_expression] = STATE(3220), + [sym_gnu_asm_expression] = STATE(3565), + [sym_field_expression] = STATE(3220), + [sym_compound_literal_expression] = STATE(3565), + [sym_parenthesized_expression] = STATE(3220), + [sym_char_literal] = STATE(3429), + [sym_concatenated_string] = STATE(3429), + [sym_string_literal] = STATE(2248), + [sym_null] = STATE(3565), + [sym_placeholder_type_specifier] = STATE(2802), + [sym_decltype_auto] = STATE(2819), + [sym_decltype] = STATE(2662), + [sym_class_specifier] = STATE(2802), + [sym__class_name] = STATE(6847), + [sym_dependent_type] = STATE(2802), + [sym_template_type] = STATE(4771), + [sym_template_function] = STATE(3565), + [sym_raw_string_literal] = STATE(2248), + [sym_co_await_expression] = STATE(3565), + [sym_new_expression] = STATE(3565), + [sym_delete_expression] = STATE(3565), + [sym_requires_clause] = STATE(3565), + [sym_requires_expression] = STATE(3565), + [sym_lambda_expression] = STATE(3565), + [sym_lambda_capture_specifier] = STATE(5204), + [sym__unary_left_fold] = STATE(7615), + [sym__unary_right_fold] = STATE(7614), + [sym__binary_fold] = STATE(7612), + [sym_fold_expression] = STATE(3565), + [sym_parameter_pack_expansion] = STATE(3565), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5274), + [sym_qualified_identifier] = STATE(3220), + [sym_qualified_type_identifier] = STATE(4890), + [sym_user_defined_literal] = STATE(3565), + [aux_sym_type_definition_repeat1] = STATE(3781), + [aux_sym_sized_type_specifier_repeat1] = STATE(2230), + [sym_identifier] = ACTIONS(2538), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1837), + [anon_sym_LPAREN2] = ACTIONS(1841), + [anon_sym_BANG] = ACTIONS(1843), + [anon_sym_TILDE] = ACTIONS(1843), + [anon_sym_DASH] = ACTIONS(1845), + [anon_sym_PLUS] = ACTIONS(1845), + [anon_sym_STAR] = ACTIONS(1847), + [anon_sym_AMP] = ACTIONS(1847), + [anon_sym_COLON_COLON] = ACTIONS(1849), + [anon_sym_LBRACK] = ACTIONS(1949), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(1913), + [anon_sym_unsigned] = ACTIONS(1913), + [anon_sym_long] = ACTIONS(1913), + [anon_sym_short] = ACTIONS(1913), + [sym_primitive_type] = ACTIONS(1915), + [anon_sym_enum] = ACTIONS(1917), + [anon_sym_class] = ACTIONS(1919), + [anon_sym_struct] = ACTIONS(1921), + [anon_sym_union] = ACTIONS(1923), + [anon_sym_not] = ACTIONS(1845), + [anon_sym_compl] = ACTIONS(1845), + [anon_sym_DASH_DASH] = ACTIONS(1861), + [anon_sym_PLUS_PLUS] = ACTIONS(1861), + [anon_sym_sizeof] = ACTIONS(1863), + [anon_sym_offsetof] = ACTIONS(1865), + [anon_sym__Generic] = ACTIONS(1867), + [anon_sym_asm] = ACTIONS(1869), + [anon_sym___asm__] = ACTIONS(1869), + [sym_number_literal] = ACTIONS(1871), + [anon_sym_L_SQUOTE] = ACTIONS(1873), + [anon_sym_u_SQUOTE] = ACTIONS(1873), + [anon_sym_U_SQUOTE] = ACTIONS(1873), + [anon_sym_u8_SQUOTE] = ACTIONS(1873), + [anon_sym_SQUOTE] = ACTIONS(1873), + [anon_sym_L_DQUOTE] = ACTIONS(1875), + [anon_sym_u_DQUOTE] = ACTIONS(1875), + [anon_sym_U_DQUOTE] = ACTIONS(1875), + [anon_sym_u8_DQUOTE] = ACTIONS(1875), + [anon_sym_DQUOTE] = ACTIONS(1875), + [sym_true] = ACTIONS(1877), + [sym_false] = ACTIONS(1877), + [anon_sym_NULL] = ACTIONS(1879), + [anon_sym_nullptr] = ACTIONS(1879), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1925), + [anon_sym_decltype] = ACTIONS(1927), + [anon_sym_typename] = ACTIONS(1929), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(1883), + [anon_sym_R_DQUOTE] = ACTIONS(1885), + [anon_sym_LR_DQUOTE] = ACTIONS(1885), + [anon_sym_uR_DQUOTE] = ACTIONS(1885), + [anon_sym_UR_DQUOTE] = ACTIONS(1885), + [anon_sym_u8R_DQUOTE] = ACTIONS(1885), + [anon_sym_co_await] = ACTIONS(1887), + [anon_sym_new] = ACTIONS(1889), + [anon_sym_requires] = ACTIONS(1891), + [sym_this] = ACTIONS(1877), }, [339] = { - [sym_catch_clause] = STATE(338), - [aux_sym_constructor_try_statement_repeat1] = STATE(338), - [sym_identifier] = ACTIONS(2368), - [aux_sym_preproc_include_token1] = ACTIONS(2368), - [aux_sym_preproc_def_token1] = ACTIONS(2368), - [aux_sym_preproc_if_token1] = ACTIONS(2368), - [aux_sym_preproc_if_token2] = ACTIONS(2368), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2368), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2368), - [sym_preproc_directive] = ACTIONS(2368), - [anon_sym_LPAREN2] = ACTIONS(2370), - [anon_sym_BANG] = ACTIONS(2370), - [anon_sym_TILDE] = ACTIONS(2370), - [anon_sym_DASH] = ACTIONS(2368), - [anon_sym_PLUS] = ACTIONS(2368), - [anon_sym_STAR] = ACTIONS(2370), - [anon_sym_AMP_AMP] = ACTIONS(2370), - [anon_sym_AMP] = ACTIONS(2368), - [anon_sym_SEMI] = ACTIONS(2370), - [anon_sym_typedef] = ACTIONS(2368), - [anon_sym_extern] = ACTIONS(2368), - [anon_sym___attribute__] = ACTIONS(2368), - [anon_sym_COLON_COLON] = ACTIONS(2370), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2370), - [anon_sym___declspec] = ACTIONS(2368), - [anon_sym___based] = ACTIONS(2368), - [anon_sym___cdecl] = ACTIONS(2368), - [anon_sym___clrcall] = ACTIONS(2368), - [anon_sym___stdcall] = ACTIONS(2368), - [anon_sym___fastcall] = ACTIONS(2368), - [anon_sym___thiscall] = ACTIONS(2368), - [anon_sym___vectorcall] = ACTIONS(2368), - [anon_sym_LBRACE] = ACTIONS(2370), - [anon_sym_LBRACK] = ACTIONS(2368), - [anon_sym_static] = ACTIONS(2368), - [anon_sym_register] = ACTIONS(2368), - [anon_sym_inline] = ACTIONS(2368), - [anon_sym_thread_local] = ACTIONS(2368), - [anon_sym_const] = ACTIONS(2368), - [anon_sym_volatile] = ACTIONS(2368), - [anon_sym_restrict] = ACTIONS(2368), - [anon_sym__Atomic] = ACTIONS(2368), - [anon_sym_mutable] = ACTIONS(2368), - [anon_sym_constexpr] = ACTIONS(2368), - [anon_sym_constinit] = ACTIONS(2368), - [anon_sym_consteval] = ACTIONS(2368), - [anon_sym_signed] = ACTIONS(2368), - [anon_sym_unsigned] = ACTIONS(2368), - [anon_sym_long] = ACTIONS(2368), - [anon_sym_short] = ACTIONS(2368), - [sym_primitive_type] = ACTIONS(2368), - [anon_sym_enum] = ACTIONS(2368), - [anon_sym_class] = ACTIONS(2368), - [anon_sym_struct] = ACTIONS(2368), - [anon_sym_union] = ACTIONS(2368), - [anon_sym_if] = ACTIONS(2368), - [anon_sym_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_return] = ACTIONS(2368), - [anon_sym_break] = ACTIONS(2368), - [anon_sym_continue] = ACTIONS(2368), - [anon_sym_goto] = ACTIONS(2368), - [anon_sym_not] = ACTIONS(2368), - [anon_sym_compl] = ACTIONS(2368), - [anon_sym_DASH_DASH] = ACTIONS(2370), - [anon_sym_PLUS_PLUS] = ACTIONS(2370), - [anon_sym_sizeof] = ACTIONS(2368), - [sym_number_literal] = ACTIONS(2370), - [anon_sym_L_SQUOTE] = ACTIONS(2370), - [anon_sym_u_SQUOTE] = ACTIONS(2370), - [anon_sym_U_SQUOTE] = ACTIONS(2370), - [anon_sym_u8_SQUOTE] = ACTIONS(2370), - [anon_sym_SQUOTE] = ACTIONS(2370), - [anon_sym_L_DQUOTE] = ACTIONS(2370), - [anon_sym_u_DQUOTE] = ACTIONS(2370), - [anon_sym_U_DQUOTE] = ACTIONS(2370), - [anon_sym_u8_DQUOTE] = ACTIONS(2370), - [anon_sym_DQUOTE] = ACTIONS(2370), - [sym_true] = ACTIONS(2368), - [sym_false] = ACTIONS(2368), - [sym_null] = ACTIONS(2368), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2368), - [anon_sym_decltype] = ACTIONS(2368), - [anon_sym_virtual] = ACTIONS(2368), - [anon_sym_explicit] = ACTIONS(2368), - [anon_sym_typename] = ACTIONS(2368), - [anon_sym_template] = ACTIONS(2368), - [anon_sym_operator] = ACTIONS(2368), - [anon_sym_try] = ACTIONS(2368), - [anon_sym_delete] = ACTIONS(2368), - [anon_sym_throw] = ACTIONS(2368), - [anon_sym_namespace] = ACTIONS(2368), - [anon_sym_using] = ACTIONS(2368), - [anon_sym_static_assert] = ACTIONS(2368), - [anon_sym_concept] = ACTIONS(2368), - [anon_sym_co_return] = ACTIONS(2368), - [anon_sym_co_yield] = ACTIONS(2368), - [anon_sym_catch] = ACTIONS(2397), - [anon_sym_R_DQUOTE] = ACTIONS(2370), - [anon_sym_LR_DQUOTE] = ACTIONS(2370), - [anon_sym_uR_DQUOTE] = ACTIONS(2370), - [anon_sym_UR_DQUOTE] = ACTIONS(2370), - [anon_sym_u8R_DQUOTE] = ACTIONS(2370), - [anon_sym_co_await] = ACTIONS(2368), - [anon_sym_new] = ACTIONS(2368), - [anon_sym_requires] = ACTIONS(2368), - [sym_this] = ACTIONS(2368), - [sym_nullptr] = ACTIONS(2368), + [sym_type_qualifier] = STATE(3781), + [sym__type_specifier] = STATE(4168), + [sym_sized_type_specifier] = STATE(2802), + [sym_enum_specifier] = STATE(2802), + [sym_struct_specifier] = STATE(2802), + [sym_union_specifier] = STATE(2802), + [sym__expression] = STATE(3236), + [sym__expression_not_binary] = STATE(3565), + [sym_comma_expression] = STATE(7646), + [sym_conditional_expression] = STATE(3565), + [sym_assignment_expression] = STATE(3565), + [sym_pointer_expression] = STATE(3220), + [sym_unary_expression] = STATE(3565), + [sym_binary_expression] = STATE(3565), + [sym_update_expression] = STATE(3565), + [sym_cast_expression] = STATE(3565), + [sym_type_descriptor] = STATE(6970), + [sym_sizeof_expression] = STATE(3565), + [sym_offsetof_expression] = STATE(3565), + [sym_generic_expression] = STATE(3565), + [sym_subscript_expression] = STATE(3220), + [sym_call_expression] = STATE(3220), + [sym_gnu_asm_expression] = STATE(3565), + [sym_field_expression] = STATE(3220), + [sym_compound_literal_expression] = STATE(3565), + [sym_parenthesized_expression] = STATE(3220), + [sym_char_literal] = STATE(3429), + [sym_concatenated_string] = STATE(3429), + [sym_string_literal] = STATE(2248), + [sym_null] = STATE(3565), + [sym_placeholder_type_specifier] = STATE(2802), + [sym_decltype_auto] = STATE(2819), + [sym_decltype] = STATE(2662), + [sym_class_specifier] = STATE(2802), + [sym__class_name] = STATE(6847), + [sym_dependent_type] = STATE(2802), + [sym_template_type] = STATE(4771), + [sym_template_function] = STATE(3565), + [sym_raw_string_literal] = STATE(2248), + [sym_co_await_expression] = STATE(3565), + [sym_new_expression] = STATE(3565), + [sym_delete_expression] = STATE(3565), + [sym_requires_clause] = STATE(3565), + [sym_requires_expression] = STATE(3565), + [sym_lambda_expression] = STATE(3565), + [sym_lambda_capture_specifier] = STATE(5204), + [sym__unary_left_fold] = STATE(6969), + [sym__unary_right_fold] = STATE(6968), + [sym__binary_fold] = STATE(6966), + [sym_fold_expression] = STATE(3565), + [sym_parameter_pack_expansion] = STATE(3565), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5274), + [sym_qualified_identifier] = STATE(3220), + [sym_qualified_type_identifier] = STATE(4890), + [sym_user_defined_literal] = STATE(3565), + [aux_sym_type_definition_repeat1] = STATE(3781), + [aux_sym_sized_type_specifier_repeat1] = STATE(2230), + [sym_identifier] = ACTIONS(2538), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1837), + [anon_sym_LPAREN2] = ACTIONS(1841), + [anon_sym_BANG] = ACTIONS(1843), + [anon_sym_TILDE] = ACTIONS(1843), + [anon_sym_DASH] = ACTIONS(1845), + [anon_sym_PLUS] = ACTIONS(1845), + [anon_sym_STAR] = ACTIONS(1847), + [anon_sym_AMP] = ACTIONS(1847), + [anon_sym_COLON_COLON] = ACTIONS(1849), + [anon_sym_LBRACK] = ACTIONS(1949), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(1913), + [anon_sym_unsigned] = ACTIONS(1913), + [anon_sym_long] = ACTIONS(1913), + [anon_sym_short] = ACTIONS(1913), + [sym_primitive_type] = ACTIONS(1915), + [anon_sym_enum] = ACTIONS(1917), + [anon_sym_class] = ACTIONS(1919), + [anon_sym_struct] = ACTIONS(1921), + [anon_sym_union] = ACTIONS(1923), + [anon_sym_not] = ACTIONS(1845), + [anon_sym_compl] = ACTIONS(1845), + [anon_sym_DASH_DASH] = ACTIONS(1861), + [anon_sym_PLUS_PLUS] = ACTIONS(1861), + [anon_sym_sizeof] = ACTIONS(1863), + [anon_sym_offsetof] = ACTIONS(1865), + [anon_sym__Generic] = ACTIONS(1867), + [anon_sym_asm] = ACTIONS(1869), + [anon_sym___asm__] = ACTIONS(1869), + [sym_number_literal] = ACTIONS(1871), + [anon_sym_L_SQUOTE] = ACTIONS(1873), + [anon_sym_u_SQUOTE] = ACTIONS(1873), + [anon_sym_U_SQUOTE] = ACTIONS(1873), + [anon_sym_u8_SQUOTE] = ACTIONS(1873), + [anon_sym_SQUOTE] = ACTIONS(1873), + [anon_sym_L_DQUOTE] = ACTIONS(1875), + [anon_sym_u_DQUOTE] = ACTIONS(1875), + [anon_sym_U_DQUOTE] = ACTIONS(1875), + [anon_sym_u8_DQUOTE] = ACTIONS(1875), + [anon_sym_DQUOTE] = ACTIONS(1875), + [sym_true] = ACTIONS(1877), + [sym_false] = ACTIONS(1877), + [anon_sym_NULL] = ACTIONS(1879), + [anon_sym_nullptr] = ACTIONS(1879), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1925), + [anon_sym_decltype] = ACTIONS(1927), + [anon_sym_typename] = ACTIONS(1929), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(1883), + [anon_sym_R_DQUOTE] = ACTIONS(1885), + [anon_sym_LR_DQUOTE] = ACTIONS(1885), + [anon_sym_uR_DQUOTE] = ACTIONS(1885), + [anon_sym_UR_DQUOTE] = ACTIONS(1885), + [anon_sym_u8R_DQUOTE] = ACTIONS(1885), + [anon_sym_co_await] = ACTIONS(1887), + [anon_sym_new] = ACTIONS(1889), + [anon_sym_requires] = ACTIONS(1891), + [sym_this] = ACTIONS(1877), }, [340] = { - [sym_identifier] = ACTIONS(1729), - [aux_sym_preproc_include_token1] = ACTIONS(1729), - [aux_sym_preproc_def_token1] = ACTIONS(1729), - [aux_sym_preproc_if_token1] = ACTIONS(1729), - [aux_sym_preproc_if_token2] = ACTIONS(1729), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1729), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1729), - [aux_sym_preproc_else_token1] = ACTIONS(1729), - [aux_sym_preproc_elif_token1] = ACTIONS(1729), - [sym_preproc_directive] = ACTIONS(1729), - [anon_sym_LPAREN2] = ACTIONS(1727), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_PLUS] = ACTIONS(1729), - [anon_sym_STAR] = ACTIONS(1727), - [anon_sym_AMP_AMP] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1729), - [anon_sym_SEMI] = ACTIONS(1727), - [anon_sym_typedef] = ACTIONS(1729), - [anon_sym_extern] = ACTIONS(1729), - [anon_sym___attribute__] = ACTIONS(1729), - [anon_sym_COLON_COLON] = ACTIONS(1727), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1727), - [anon_sym___declspec] = ACTIONS(1729), - [anon_sym___based] = ACTIONS(1729), - [anon_sym___cdecl] = ACTIONS(1729), - [anon_sym___clrcall] = ACTIONS(1729), - [anon_sym___stdcall] = ACTIONS(1729), - [anon_sym___fastcall] = ACTIONS(1729), - [anon_sym___thiscall] = ACTIONS(1729), - [anon_sym___vectorcall] = ACTIONS(1729), - [anon_sym_LBRACE] = ACTIONS(1727), - [anon_sym_LBRACK] = ACTIONS(1729), - [anon_sym_static] = ACTIONS(1729), - [anon_sym_register] = ACTIONS(1729), - [anon_sym_inline] = ACTIONS(1729), - [anon_sym_thread_local] = ACTIONS(1729), - [anon_sym_const] = ACTIONS(1729), - [anon_sym_volatile] = ACTIONS(1729), - [anon_sym_restrict] = ACTIONS(1729), - [anon_sym__Atomic] = ACTIONS(1729), - [anon_sym_mutable] = ACTIONS(1729), - [anon_sym_constexpr] = ACTIONS(1729), - [anon_sym_constinit] = ACTIONS(1729), - [anon_sym_consteval] = ACTIONS(1729), - [anon_sym_signed] = ACTIONS(1729), - [anon_sym_unsigned] = ACTIONS(1729), - [anon_sym_long] = ACTIONS(1729), - [anon_sym_short] = ACTIONS(1729), - [sym_primitive_type] = ACTIONS(1729), - [anon_sym_enum] = ACTIONS(1729), - [anon_sym_class] = ACTIONS(1729), - [anon_sym_struct] = ACTIONS(1729), - [anon_sym_union] = ACTIONS(1729), - [anon_sym_if] = ACTIONS(1729), - [anon_sym_else] = ACTIONS(1729), - [anon_sym_switch] = ACTIONS(1729), - [anon_sym_case] = ACTIONS(1729), - [anon_sym_default] = ACTIONS(1729), - [anon_sym_while] = ACTIONS(1729), - [anon_sym_do] = ACTIONS(1729), - [anon_sym_for] = ACTIONS(1729), - [anon_sym_return] = ACTIONS(1729), - [anon_sym_break] = ACTIONS(1729), - [anon_sym_continue] = ACTIONS(1729), - [anon_sym_goto] = ACTIONS(1729), - [anon_sym_not] = ACTIONS(1729), - [anon_sym_compl] = ACTIONS(1729), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_sizeof] = ACTIONS(1729), - [sym_number_literal] = ACTIONS(1727), - [anon_sym_L_SQUOTE] = ACTIONS(1727), - [anon_sym_u_SQUOTE] = ACTIONS(1727), - [anon_sym_U_SQUOTE] = ACTIONS(1727), - [anon_sym_u8_SQUOTE] = ACTIONS(1727), - [anon_sym_SQUOTE] = ACTIONS(1727), - [anon_sym_L_DQUOTE] = ACTIONS(1727), - [anon_sym_u_DQUOTE] = ACTIONS(1727), - [anon_sym_U_DQUOTE] = ACTIONS(1727), - [anon_sym_u8_DQUOTE] = ACTIONS(1727), - [anon_sym_DQUOTE] = ACTIONS(1727), - [sym_true] = ACTIONS(1729), - [sym_false] = ACTIONS(1729), - [sym_null] = ACTIONS(1729), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1729), - [anon_sym_decltype] = ACTIONS(1729), - [anon_sym_virtual] = ACTIONS(1729), - [anon_sym_explicit] = ACTIONS(1729), - [anon_sym_typename] = ACTIONS(1729), - [anon_sym_template] = ACTIONS(1729), - [anon_sym_operator] = ACTIONS(1729), - [anon_sym_try] = ACTIONS(1729), - [anon_sym_delete] = ACTIONS(1729), - [anon_sym_throw] = ACTIONS(1729), - [anon_sym_namespace] = ACTIONS(1729), - [anon_sym_using] = ACTIONS(1729), - [anon_sym_static_assert] = ACTIONS(1729), - [anon_sym_concept] = ACTIONS(1729), - [anon_sym_co_return] = ACTIONS(1729), - [anon_sym_co_yield] = ACTIONS(1729), - [anon_sym_catch] = ACTIONS(1729), - [anon_sym_R_DQUOTE] = ACTIONS(1727), - [anon_sym_LR_DQUOTE] = ACTIONS(1727), - [anon_sym_uR_DQUOTE] = ACTIONS(1727), - [anon_sym_UR_DQUOTE] = ACTIONS(1727), - [anon_sym_u8R_DQUOTE] = ACTIONS(1727), - [anon_sym_co_await] = ACTIONS(1729), - [anon_sym_new] = ACTIONS(1729), - [anon_sym_requires] = ACTIONS(1729), - [sym_this] = ACTIONS(1729), - [sym_nullptr] = ACTIONS(1729), + [sym_type_qualifier] = STATE(3781), + [sym__type_specifier] = STATE(4168), + [sym_sized_type_specifier] = STATE(2802), + [sym_enum_specifier] = STATE(2802), + [sym_struct_specifier] = STATE(2802), + [sym_union_specifier] = STATE(2802), + [sym__expression] = STATE(3236), + [sym__expression_not_binary] = STATE(3565), + [sym_comma_expression] = STATE(7646), + [sym_conditional_expression] = STATE(3565), + [sym_assignment_expression] = STATE(3565), + [sym_pointer_expression] = STATE(3220), + [sym_unary_expression] = STATE(3565), + [sym_binary_expression] = STATE(3565), + [sym_update_expression] = STATE(3565), + [sym_cast_expression] = STATE(3565), + [sym_type_descriptor] = STATE(7019), + [sym_sizeof_expression] = STATE(3565), + [sym_offsetof_expression] = STATE(3565), + [sym_generic_expression] = STATE(3565), + [sym_subscript_expression] = STATE(3220), + [sym_call_expression] = STATE(3220), + [sym_gnu_asm_expression] = STATE(3565), + [sym_field_expression] = STATE(3220), + [sym_compound_literal_expression] = STATE(3565), + [sym_parenthesized_expression] = STATE(3220), + [sym_char_literal] = STATE(3429), + [sym_concatenated_string] = STATE(3429), + [sym_string_literal] = STATE(2248), + [sym_null] = STATE(3565), + [sym_placeholder_type_specifier] = STATE(2802), + [sym_decltype_auto] = STATE(2819), + [sym_decltype] = STATE(2662), + [sym_class_specifier] = STATE(2802), + [sym__class_name] = STATE(6847), + [sym_dependent_type] = STATE(2802), + [sym_template_type] = STATE(4771), + [sym_template_function] = STATE(3565), + [sym_raw_string_literal] = STATE(2248), + [sym_co_await_expression] = STATE(3565), + [sym_new_expression] = STATE(3565), + [sym_delete_expression] = STATE(3565), + [sym_requires_clause] = STATE(3565), + [sym_requires_expression] = STATE(3565), + [sym_lambda_expression] = STATE(3565), + [sym_lambda_capture_specifier] = STATE(5204), + [sym__unary_left_fold] = STATE(6969), + [sym__unary_right_fold] = STATE(6968), + [sym__binary_fold] = STATE(6966), + [sym_fold_expression] = STATE(3565), + [sym_parameter_pack_expansion] = STATE(3565), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5274), + [sym_qualified_identifier] = STATE(3220), + [sym_qualified_type_identifier] = STATE(4890), + [sym_user_defined_literal] = STATE(3565), + [aux_sym_type_definition_repeat1] = STATE(3781), + [aux_sym_sized_type_specifier_repeat1] = STATE(2230), + [sym_identifier] = ACTIONS(2538), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1837), + [anon_sym_LPAREN2] = ACTIONS(1841), + [anon_sym_BANG] = ACTIONS(1843), + [anon_sym_TILDE] = ACTIONS(1843), + [anon_sym_DASH] = ACTIONS(1845), + [anon_sym_PLUS] = ACTIONS(1845), + [anon_sym_STAR] = ACTIONS(1847), + [anon_sym_AMP] = ACTIONS(1847), + [anon_sym_COLON_COLON] = ACTIONS(1849), + [anon_sym_LBRACK] = ACTIONS(1949), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(1913), + [anon_sym_unsigned] = ACTIONS(1913), + [anon_sym_long] = ACTIONS(1913), + [anon_sym_short] = ACTIONS(1913), + [sym_primitive_type] = ACTIONS(1915), + [anon_sym_enum] = ACTIONS(1917), + [anon_sym_class] = ACTIONS(1919), + [anon_sym_struct] = ACTIONS(1921), + [anon_sym_union] = ACTIONS(1923), + [anon_sym_not] = ACTIONS(1845), + [anon_sym_compl] = ACTIONS(1845), + [anon_sym_DASH_DASH] = ACTIONS(1861), + [anon_sym_PLUS_PLUS] = ACTIONS(1861), + [anon_sym_sizeof] = ACTIONS(1863), + [anon_sym_offsetof] = ACTIONS(1865), + [anon_sym__Generic] = ACTIONS(1867), + [anon_sym_asm] = ACTIONS(1869), + [anon_sym___asm__] = ACTIONS(1869), + [sym_number_literal] = ACTIONS(1871), + [anon_sym_L_SQUOTE] = ACTIONS(1873), + [anon_sym_u_SQUOTE] = ACTIONS(1873), + [anon_sym_U_SQUOTE] = ACTIONS(1873), + [anon_sym_u8_SQUOTE] = ACTIONS(1873), + [anon_sym_SQUOTE] = ACTIONS(1873), + [anon_sym_L_DQUOTE] = ACTIONS(1875), + [anon_sym_u_DQUOTE] = ACTIONS(1875), + [anon_sym_U_DQUOTE] = ACTIONS(1875), + [anon_sym_u8_DQUOTE] = ACTIONS(1875), + [anon_sym_DQUOTE] = ACTIONS(1875), + [sym_true] = ACTIONS(1877), + [sym_false] = ACTIONS(1877), + [anon_sym_NULL] = ACTIONS(1879), + [anon_sym_nullptr] = ACTIONS(1879), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1925), + [anon_sym_decltype] = ACTIONS(1927), + [anon_sym_typename] = ACTIONS(1929), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(1883), + [anon_sym_R_DQUOTE] = ACTIONS(1885), + [anon_sym_LR_DQUOTE] = ACTIONS(1885), + [anon_sym_uR_DQUOTE] = ACTIONS(1885), + [anon_sym_UR_DQUOTE] = ACTIONS(1885), + [anon_sym_u8R_DQUOTE] = ACTIONS(1885), + [anon_sym_co_await] = ACTIONS(1887), + [anon_sym_new] = ACTIONS(1889), + [anon_sym_requires] = ACTIONS(1891), + [sym_this] = ACTIONS(1877), }, [341] = { - [sym_identifier] = ACTIONS(1737), - [aux_sym_preproc_include_token1] = ACTIONS(1737), - [aux_sym_preproc_def_token1] = ACTIONS(1737), - [aux_sym_preproc_if_token1] = ACTIONS(1737), - [aux_sym_preproc_if_token2] = ACTIONS(1737), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1737), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1737), - [aux_sym_preproc_else_token1] = ACTIONS(1737), - [aux_sym_preproc_elif_token1] = ACTIONS(1737), - [sym_preproc_directive] = ACTIONS(1737), - [anon_sym_LPAREN2] = ACTIONS(1735), - [anon_sym_BANG] = ACTIONS(1735), - [anon_sym_TILDE] = ACTIONS(1735), - [anon_sym_DASH] = ACTIONS(1737), - [anon_sym_PLUS] = ACTIONS(1737), - [anon_sym_STAR] = ACTIONS(1735), - [anon_sym_AMP_AMP] = ACTIONS(1735), - [anon_sym_AMP] = ACTIONS(1737), - [anon_sym_SEMI] = ACTIONS(1735), - [anon_sym_typedef] = ACTIONS(1737), - [anon_sym_extern] = ACTIONS(1737), - [anon_sym___attribute__] = ACTIONS(1737), - [anon_sym_COLON_COLON] = ACTIONS(1735), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1735), - [anon_sym___declspec] = ACTIONS(1737), - [anon_sym___based] = ACTIONS(1737), - [anon_sym___cdecl] = ACTIONS(1737), - [anon_sym___clrcall] = ACTIONS(1737), - [anon_sym___stdcall] = ACTIONS(1737), - [anon_sym___fastcall] = ACTIONS(1737), - [anon_sym___thiscall] = ACTIONS(1737), - [anon_sym___vectorcall] = ACTIONS(1737), - [anon_sym_LBRACE] = ACTIONS(1735), - [anon_sym_LBRACK] = ACTIONS(1737), - [anon_sym_static] = ACTIONS(1737), - [anon_sym_register] = ACTIONS(1737), - [anon_sym_inline] = ACTIONS(1737), - [anon_sym_thread_local] = ACTIONS(1737), - [anon_sym_const] = ACTIONS(1737), - [anon_sym_volatile] = ACTIONS(1737), - [anon_sym_restrict] = ACTIONS(1737), - [anon_sym__Atomic] = ACTIONS(1737), - [anon_sym_mutable] = ACTIONS(1737), - [anon_sym_constexpr] = ACTIONS(1737), - [anon_sym_constinit] = ACTIONS(1737), - [anon_sym_consteval] = ACTIONS(1737), - [anon_sym_signed] = ACTIONS(1737), - [anon_sym_unsigned] = ACTIONS(1737), - [anon_sym_long] = ACTIONS(1737), - [anon_sym_short] = ACTIONS(1737), - [sym_primitive_type] = ACTIONS(1737), - [anon_sym_enum] = ACTIONS(1737), - [anon_sym_class] = ACTIONS(1737), - [anon_sym_struct] = ACTIONS(1737), - [anon_sym_union] = ACTIONS(1737), - [anon_sym_if] = ACTIONS(1737), - [anon_sym_else] = ACTIONS(1737), - [anon_sym_switch] = ACTIONS(1737), - [anon_sym_case] = ACTIONS(1737), - [anon_sym_default] = ACTIONS(1737), - [anon_sym_while] = ACTIONS(1737), - [anon_sym_do] = ACTIONS(1737), - [anon_sym_for] = ACTIONS(1737), - [anon_sym_return] = ACTIONS(1737), - [anon_sym_break] = ACTIONS(1737), - [anon_sym_continue] = ACTIONS(1737), - [anon_sym_goto] = ACTIONS(1737), - [anon_sym_not] = ACTIONS(1737), - [anon_sym_compl] = ACTIONS(1737), - [anon_sym_DASH_DASH] = ACTIONS(1735), - [anon_sym_PLUS_PLUS] = ACTIONS(1735), - [anon_sym_sizeof] = ACTIONS(1737), - [sym_number_literal] = ACTIONS(1735), - [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_L_DQUOTE] = ACTIONS(1735), - [anon_sym_u_DQUOTE] = ACTIONS(1735), - [anon_sym_U_DQUOTE] = ACTIONS(1735), - [anon_sym_u8_DQUOTE] = ACTIONS(1735), - [anon_sym_DQUOTE] = ACTIONS(1735), - [sym_true] = ACTIONS(1737), - [sym_false] = ACTIONS(1737), - [sym_null] = ACTIONS(1737), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1737), - [anon_sym_decltype] = ACTIONS(1737), - [anon_sym_virtual] = ACTIONS(1737), - [anon_sym_explicit] = ACTIONS(1737), - [anon_sym_typename] = ACTIONS(1737), - [anon_sym_template] = ACTIONS(1737), - [anon_sym_operator] = ACTIONS(1737), - [anon_sym_try] = ACTIONS(1737), - [anon_sym_delete] = ACTIONS(1737), - [anon_sym_throw] = ACTIONS(1737), - [anon_sym_namespace] = ACTIONS(1737), - [anon_sym_using] = ACTIONS(1737), - [anon_sym_static_assert] = ACTIONS(1737), - [anon_sym_concept] = ACTIONS(1737), - [anon_sym_co_return] = ACTIONS(1737), - [anon_sym_co_yield] = ACTIONS(1737), - [anon_sym_catch] = ACTIONS(1737), - [anon_sym_R_DQUOTE] = ACTIONS(1735), - [anon_sym_LR_DQUOTE] = ACTIONS(1735), - [anon_sym_uR_DQUOTE] = ACTIONS(1735), - [anon_sym_UR_DQUOTE] = ACTIONS(1735), - [anon_sym_u8R_DQUOTE] = ACTIONS(1735), - [anon_sym_co_await] = ACTIONS(1737), - [anon_sym_new] = ACTIONS(1737), - [anon_sym_requires] = ACTIONS(1737), - [sym_this] = ACTIONS(1737), - [sym_nullptr] = ACTIONS(1737), + [sym_preproc_def] = STATE(344), + [sym_preproc_function_def] = STATE(344), + [sym_preproc_call] = STATE(344), + [sym_preproc_elifdef] = STATE(7558), + [sym_preproc_if_in_field_declaration_list] = STATE(344), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(344), + [sym_preproc_else_in_field_declaration_list] = STATE(7558), + [sym_preproc_elif_in_field_declaration_list] = STATE(7558), + [sym_type_definition] = STATE(344), + [sym__declaration_modifiers] = STATE(3706), + [sym__declaration_specifiers] = STATE(4879), + [sym_attribute_specifier] = STATE(3706), + [sym_attribute_declaration] = STATE(3706), + [sym_ms_declspec_modifier] = STATE(3706), + [sym_ms_based_modifier] = STATE(7654), + [sym__declarator] = STATE(5881), + [sym_parenthesized_declarator] = STATE(5640), + [sym_attributed_declarator] = STATE(5640), + [sym_pointer_declarator] = STATE(5640), + [sym_function_declarator] = STATE(5489), + [sym_array_declarator] = STATE(5640), + [sym_storage_class_specifier] = STATE(3706), + [sym_type_qualifier] = STATE(3706), + [sym__type_specifier] = STATE(3845), + [sym_sized_type_specifier] = STATE(3918), + [sym_enum_specifier] = STATE(3918), + [sym_struct_specifier] = STATE(3918), + [sym_union_specifier] = STATE(3918), + [sym__field_declaration_list_item] = STATE(344), + [sym_field_declaration] = STATE(344), + [sym_placeholder_type_specifier] = STATE(3918), + [sym_decltype_auto] = STATE(3916), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3918), + [sym_virtual] = STATE(3706), + [sym_explicit_function_specifier] = STATE(2234), + [sym_dependent_type] = STATE(3918), + [sym_template_declaration] = STATE(344), + [sym_operator_cast] = STATE(5917), + [sym_inline_method_definition] = STATE(344), + [sym__constructor_specifiers] = STATE(2234), + [sym_operator_cast_definition] = STATE(344), + [sym_operator_cast_declaration] = STATE(344), + [sym_constructor_or_destructor_definition] = STATE(344), + [sym_constructor_or_destructor_declaration] = STATE(344), + [sym_friend_declaration] = STATE(344), + [sym_access_specifier] = STATE(7357), + [sym_reference_declarator] = STATE(5640), + [sym_structured_binding_declarator] = STATE(5640), + [sym_template_type] = STATE(3680), + [sym_template_function] = STATE(5640), + [sym_using_declaration] = STATE(344), + [sym_alias_declaration] = STATE(344), + [sym_static_assert_declaration] = STATE(344), + [sym_destructor_name] = STATE(5640), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5151), + [sym_qualified_identifier] = STATE(5640), + [sym_qualified_type_identifier] = STATE(3966), + [sym_qualified_operator_cast_identifier] = STATE(5917), + [sym_operator_name] = STATE(5640), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(344), + [aux_sym__declaration_specifiers_repeat1] = STATE(2509), + [aux_sym_sized_type_specifier_repeat1] = STATE(3981), + [aux_sym_operator_cast_definition_repeat1] = STATE(2234), + [sym_identifier] = ACTIONS(2544), + [aux_sym_preproc_def_token1] = ACTIONS(2546), + [aux_sym_preproc_if_token1] = ACTIONS(2548), + [aux_sym_preproc_if_token2] = ACTIONS(2550), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2552), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2552), + [aux_sym_preproc_else_token1] = ACTIONS(2554), + [aux_sym_preproc_elif_token1] = ACTIONS(2556), + [aux_sym_preproc_elifdef_token1] = ACTIONS(241), + [aux_sym_preproc_elifdef_token2] = ACTIONS(241), + [sym_preproc_directive] = ACTIONS(2558), + [anon_sym_LPAREN2] = ACTIONS(2560), + [anon_sym_TILDE] = ACTIONS(2562), + [anon_sym_STAR] = ACTIONS(2564), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_typedef] = ACTIONS(2568), + [anon_sym_extern] = ACTIONS(53), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(2570), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1813), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(2572), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(53), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(2574), + [anon_sym_unsigned] = ACTIONS(2574), + [anon_sym_long] = ACTIONS(2574), + [anon_sym_short] = ACTIONS(2574), + [sym_primitive_type] = ACTIONS(2576), + [anon_sym_enum] = ACTIONS(2578), + [anon_sym_class] = ACTIONS(2580), + [anon_sym_struct] = ACTIONS(2582), + [anon_sym_union] = ACTIONS(2584), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2586), + [anon_sym_decltype] = ACTIONS(2588), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_explicit] = ACTIONS(119), + [anon_sym_typename] = ACTIONS(2590), + [anon_sym_template] = ACTIONS(2592), + [anon_sym_operator] = ACTIONS(125), + [anon_sym_friend] = ACTIONS(2594), + [anon_sym_public] = ACTIONS(2596), + [anon_sym_private] = ACTIONS(2596), + [anon_sym_protected] = ACTIONS(2596), + [anon_sym_using] = ACTIONS(2598), + [anon_sym_static_assert] = ACTIONS(2600), }, [342] = { - [sym_catch_clause] = STATE(342), - [aux_sym_constructor_try_statement_repeat1] = STATE(342), - [ts_builtin_sym_end] = ACTIONS(2376), - [sym_identifier] = ACTIONS(2374), - [aux_sym_preproc_include_token1] = ACTIONS(2374), - [aux_sym_preproc_def_token1] = ACTIONS(2374), - [aux_sym_preproc_if_token1] = ACTIONS(2374), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2374), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2374), - [sym_preproc_directive] = ACTIONS(2374), - [anon_sym_LPAREN2] = ACTIONS(2376), - [anon_sym_BANG] = ACTIONS(2376), - [anon_sym_TILDE] = ACTIONS(2376), - [anon_sym_DASH] = ACTIONS(2374), - [anon_sym_PLUS] = ACTIONS(2374), - [anon_sym_STAR] = ACTIONS(2376), - [anon_sym_AMP_AMP] = ACTIONS(2376), - [anon_sym_AMP] = ACTIONS(2374), - [anon_sym_SEMI] = ACTIONS(2376), - [anon_sym_typedef] = ACTIONS(2374), - [anon_sym_extern] = ACTIONS(2374), - [anon_sym___attribute__] = ACTIONS(2374), - [anon_sym_COLON_COLON] = ACTIONS(2376), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2376), - [anon_sym___declspec] = ACTIONS(2374), - [anon_sym___based] = ACTIONS(2374), - [anon_sym___cdecl] = ACTIONS(2374), - [anon_sym___clrcall] = ACTIONS(2374), - [anon_sym___stdcall] = ACTIONS(2374), - [anon_sym___fastcall] = ACTIONS(2374), - [anon_sym___thiscall] = ACTIONS(2374), - [anon_sym___vectorcall] = ACTIONS(2374), - [anon_sym_LBRACE] = ACTIONS(2376), - [anon_sym_LBRACK] = ACTIONS(2374), - [anon_sym_static] = ACTIONS(2374), - [anon_sym_register] = ACTIONS(2374), - [anon_sym_inline] = ACTIONS(2374), - [anon_sym_thread_local] = ACTIONS(2374), - [anon_sym_const] = ACTIONS(2374), - [anon_sym_volatile] = ACTIONS(2374), - [anon_sym_restrict] = ACTIONS(2374), - [anon_sym__Atomic] = ACTIONS(2374), - [anon_sym_mutable] = ACTIONS(2374), - [anon_sym_constexpr] = ACTIONS(2374), - [anon_sym_constinit] = ACTIONS(2374), - [anon_sym_consteval] = ACTIONS(2374), - [anon_sym_signed] = ACTIONS(2374), - [anon_sym_unsigned] = ACTIONS(2374), - [anon_sym_long] = ACTIONS(2374), - [anon_sym_short] = ACTIONS(2374), - [sym_primitive_type] = ACTIONS(2374), - [anon_sym_enum] = ACTIONS(2374), - [anon_sym_class] = ACTIONS(2374), - [anon_sym_struct] = ACTIONS(2374), - [anon_sym_union] = ACTIONS(2374), - [anon_sym_if] = ACTIONS(2374), - [anon_sym_else] = ACTIONS(2374), - [anon_sym_switch] = ACTIONS(2374), - [anon_sym_case] = ACTIONS(2374), - [anon_sym_default] = ACTIONS(2374), - [anon_sym_while] = ACTIONS(2374), - [anon_sym_do] = ACTIONS(2374), - [anon_sym_for] = ACTIONS(2374), - [anon_sym_return] = ACTIONS(2374), - [anon_sym_break] = ACTIONS(2374), - [anon_sym_continue] = ACTIONS(2374), - [anon_sym_goto] = ACTIONS(2374), - [anon_sym_not] = ACTIONS(2374), - [anon_sym_compl] = ACTIONS(2374), - [anon_sym_DASH_DASH] = ACTIONS(2376), - [anon_sym_PLUS_PLUS] = ACTIONS(2376), - [anon_sym_sizeof] = ACTIONS(2374), - [sym_number_literal] = ACTIONS(2376), - [anon_sym_L_SQUOTE] = ACTIONS(2376), - [anon_sym_u_SQUOTE] = ACTIONS(2376), - [anon_sym_U_SQUOTE] = ACTIONS(2376), - [anon_sym_u8_SQUOTE] = ACTIONS(2376), - [anon_sym_SQUOTE] = ACTIONS(2376), - [anon_sym_L_DQUOTE] = ACTIONS(2376), - [anon_sym_u_DQUOTE] = ACTIONS(2376), - [anon_sym_U_DQUOTE] = ACTIONS(2376), - [anon_sym_u8_DQUOTE] = ACTIONS(2376), - [anon_sym_DQUOTE] = ACTIONS(2376), - [sym_true] = ACTIONS(2374), - [sym_false] = ACTIONS(2374), - [sym_null] = ACTIONS(2374), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2374), - [anon_sym_decltype] = ACTIONS(2374), - [anon_sym_virtual] = ACTIONS(2374), - [anon_sym_explicit] = ACTIONS(2374), - [anon_sym_typename] = ACTIONS(2374), - [anon_sym_template] = ACTIONS(2374), - [anon_sym_operator] = ACTIONS(2374), - [anon_sym_try] = ACTIONS(2374), - [anon_sym_delete] = ACTIONS(2374), - [anon_sym_throw] = ACTIONS(2374), - [anon_sym_namespace] = ACTIONS(2374), - [anon_sym_using] = ACTIONS(2374), - [anon_sym_static_assert] = ACTIONS(2374), - [anon_sym_concept] = ACTIONS(2374), - [anon_sym_co_return] = ACTIONS(2374), - [anon_sym_co_yield] = ACTIONS(2374), - [anon_sym_catch] = ACTIONS(2399), - [anon_sym_R_DQUOTE] = ACTIONS(2376), - [anon_sym_LR_DQUOTE] = ACTIONS(2376), - [anon_sym_uR_DQUOTE] = ACTIONS(2376), - [anon_sym_UR_DQUOTE] = ACTIONS(2376), - [anon_sym_u8R_DQUOTE] = ACTIONS(2376), - [anon_sym_co_await] = ACTIONS(2374), - [anon_sym_new] = ACTIONS(2374), - [anon_sym_requires] = ACTIONS(2374), - [sym_this] = ACTIONS(2374), - [sym_nullptr] = ACTIONS(2374), + [sym_preproc_def] = STATE(370), + [sym_preproc_function_def] = STATE(370), + [sym_preproc_call] = STATE(370), + [sym_preproc_elifdef] = STATE(7434), + [sym_preproc_if_in_field_declaration_list] = STATE(370), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(370), + [sym_preproc_else_in_field_declaration_list] = STATE(7434), + [sym_preproc_elif_in_field_declaration_list] = STATE(7434), + [sym_type_definition] = STATE(370), + [sym__declaration_modifiers] = STATE(3706), + [sym__declaration_specifiers] = STATE(4879), + [sym_attribute_specifier] = STATE(3706), + [sym_attribute_declaration] = STATE(3706), + [sym_ms_declspec_modifier] = STATE(3706), + [sym_ms_based_modifier] = STATE(7654), + [sym__declarator] = STATE(5881), + [sym_parenthesized_declarator] = STATE(5640), + [sym_attributed_declarator] = STATE(5640), + [sym_pointer_declarator] = STATE(5640), + [sym_function_declarator] = STATE(5489), + [sym_array_declarator] = STATE(5640), + [sym_storage_class_specifier] = STATE(3706), + [sym_type_qualifier] = STATE(3706), + [sym__type_specifier] = STATE(3845), + [sym_sized_type_specifier] = STATE(3918), + [sym_enum_specifier] = STATE(3918), + [sym_struct_specifier] = STATE(3918), + [sym_union_specifier] = STATE(3918), + [sym__field_declaration_list_item] = STATE(370), + [sym_field_declaration] = STATE(370), + [sym_placeholder_type_specifier] = STATE(3918), + [sym_decltype_auto] = STATE(3916), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3918), + [sym_virtual] = STATE(3706), + [sym_explicit_function_specifier] = STATE(2234), + [sym_dependent_type] = STATE(3918), + [sym_template_declaration] = STATE(370), + [sym_operator_cast] = STATE(5917), + [sym_inline_method_definition] = STATE(370), + [sym__constructor_specifiers] = STATE(2234), + [sym_operator_cast_definition] = STATE(370), + [sym_operator_cast_declaration] = STATE(370), + [sym_constructor_or_destructor_definition] = STATE(370), + [sym_constructor_or_destructor_declaration] = STATE(370), + [sym_friend_declaration] = STATE(370), + [sym_access_specifier] = STATE(7357), + [sym_reference_declarator] = STATE(5640), + [sym_structured_binding_declarator] = STATE(5640), + [sym_template_type] = STATE(3680), + [sym_template_function] = STATE(5640), + [sym_using_declaration] = STATE(370), + [sym_alias_declaration] = STATE(370), + [sym_static_assert_declaration] = STATE(370), + [sym_destructor_name] = STATE(5640), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5151), + [sym_qualified_identifier] = STATE(5640), + [sym_qualified_type_identifier] = STATE(3966), + [sym_qualified_operator_cast_identifier] = STATE(5917), + [sym_operator_name] = STATE(5640), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(370), + [aux_sym__declaration_specifiers_repeat1] = STATE(2509), + [aux_sym_sized_type_specifier_repeat1] = STATE(3981), + [aux_sym_operator_cast_definition_repeat1] = STATE(2234), + [sym_identifier] = ACTIONS(2544), + [aux_sym_preproc_def_token1] = ACTIONS(2546), + [aux_sym_preproc_if_token1] = ACTIONS(2548), + [aux_sym_preproc_if_token2] = ACTIONS(2602), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2552), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2552), + [aux_sym_preproc_else_token1] = ACTIONS(2554), + [aux_sym_preproc_elif_token1] = ACTIONS(2556), + [aux_sym_preproc_elifdef_token1] = ACTIONS(241), + [aux_sym_preproc_elifdef_token2] = ACTIONS(241), + [sym_preproc_directive] = ACTIONS(2558), + [anon_sym_LPAREN2] = ACTIONS(2560), + [anon_sym_TILDE] = ACTIONS(2562), + [anon_sym_STAR] = ACTIONS(2564), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_typedef] = ACTIONS(2568), + [anon_sym_extern] = ACTIONS(53), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(2570), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1813), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(2572), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(53), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(2574), + [anon_sym_unsigned] = ACTIONS(2574), + [anon_sym_long] = ACTIONS(2574), + [anon_sym_short] = ACTIONS(2574), + [sym_primitive_type] = ACTIONS(2576), + [anon_sym_enum] = ACTIONS(2578), + [anon_sym_class] = ACTIONS(2580), + [anon_sym_struct] = ACTIONS(2582), + [anon_sym_union] = ACTIONS(2584), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2586), + [anon_sym_decltype] = ACTIONS(2588), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_explicit] = ACTIONS(119), + [anon_sym_typename] = ACTIONS(2590), + [anon_sym_template] = ACTIONS(2592), + [anon_sym_operator] = ACTIONS(125), + [anon_sym_friend] = ACTIONS(2594), + [anon_sym_public] = ACTIONS(2596), + [anon_sym_private] = ACTIONS(2596), + [anon_sym_protected] = ACTIONS(2596), + [anon_sym_using] = ACTIONS(2598), + [anon_sym_static_assert] = ACTIONS(2600), }, [343] = { - [sym_catch_clause] = STATE(342), - [aux_sym_constructor_try_statement_repeat1] = STATE(342), - [ts_builtin_sym_end] = ACTIONS(2370), - [sym_identifier] = ACTIONS(2368), - [aux_sym_preproc_include_token1] = ACTIONS(2368), - [aux_sym_preproc_def_token1] = ACTIONS(2368), - [aux_sym_preproc_if_token1] = ACTIONS(2368), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2368), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2368), - [sym_preproc_directive] = ACTIONS(2368), - [anon_sym_LPAREN2] = ACTIONS(2370), - [anon_sym_BANG] = ACTIONS(2370), - [anon_sym_TILDE] = ACTIONS(2370), - [anon_sym_DASH] = ACTIONS(2368), - [anon_sym_PLUS] = ACTIONS(2368), - [anon_sym_STAR] = ACTIONS(2370), - [anon_sym_AMP_AMP] = ACTIONS(2370), - [anon_sym_AMP] = ACTIONS(2368), - [anon_sym_SEMI] = ACTIONS(2370), - [anon_sym_typedef] = ACTIONS(2368), - [anon_sym_extern] = ACTIONS(2368), - [anon_sym___attribute__] = ACTIONS(2368), - [anon_sym_COLON_COLON] = ACTIONS(2370), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2370), - [anon_sym___declspec] = ACTIONS(2368), - [anon_sym___based] = ACTIONS(2368), - [anon_sym___cdecl] = ACTIONS(2368), - [anon_sym___clrcall] = ACTIONS(2368), - [anon_sym___stdcall] = ACTIONS(2368), - [anon_sym___fastcall] = ACTIONS(2368), - [anon_sym___thiscall] = ACTIONS(2368), - [anon_sym___vectorcall] = ACTIONS(2368), - [anon_sym_LBRACE] = ACTIONS(2370), - [anon_sym_LBRACK] = ACTIONS(2368), - [anon_sym_static] = ACTIONS(2368), - [anon_sym_register] = ACTIONS(2368), - [anon_sym_inline] = ACTIONS(2368), - [anon_sym_thread_local] = ACTIONS(2368), - [anon_sym_const] = ACTIONS(2368), - [anon_sym_volatile] = ACTIONS(2368), - [anon_sym_restrict] = ACTIONS(2368), - [anon_sym__Atomic] = ACTIONS(2368), - [anon_sym_mutable] = ACTIONS(2368), - [anon_sym_constexpr] = ACTIONS(2368), - [anon_sym_constinit] = ACTIONS(2368), - [anon_sym_consteval] = ACTIONS(2368), - [anon_sym_signed] = ACTIONS(2368), - [anon_sym_unsigned] = ACTIONS(2368), - [anon_sym_long] = ACTIONS(2368), - [anon_sym_short] = ACTIONS(2368), - [sym_primitive_type] = ACTIONS(2368), - [anon_sym_enum] = ACTIONS(2368), - [anon_sym_class] = ACTIONS(2368), - [anon_sym_struct] = ACTIONS(2368), - [anon_sym_union] = ACTIONS(2368), - [anon_sym_if] = ACTIONS(2368), - [anon_sym_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_return] = ACTIONS(2368), - [anon_sym_break] = ACTIONS(2368), - [anon_sym_continue] = ACTIONS(2368), - [anon_sym_goto] = ACTIONS(2368), - [anon_sym_not] = ACTIONS(2368), - [anon_sym_compl] = ACTIONS(2368), - [anon_sym_DASH_DASH] = ACTIONS(2370), - [anon_sym_PLUS_PLUS] = ACTIONS(2370), - [anon_sym_sizeof] = ACTIONS(2368), - [sym_number_literal] = ACTIONS(2370), - [anon_sym_L_SQUOTE] = ACTIONS(2370), - [anon_sym_u_SQUOTE] = ACTIONS(2370), - [anon_sym_U_SQUOTE] = ACTIONS(2370), - [anon_sym_u8_SQUOTE] = ACTIONS(2370), - [anon_sym_SQUOTE] = ACTIONS(2370), - [anon_sym_L_DQUOTE] = ACTIONS(2370), - [anon_sym_u_DQUOTE] = ACTIONS(2370), - [anon_sym_U_DQUOTE] = ACTIONS(2370), - [anon_sym_u8_DQUOTE] = ACTIONS(2370), - [anon_sym_DQUOTE] = ACTIONS(2370), - [sym_true] = ACTIONS(2368), - [sym_false] = ACTIONS(2368), - [sym_null] = ACTIONS(2368), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2368), - [anon_sym_decltype] = ACTIONS(2368), - [anon_sym_virtual] = ACTIONS(2368), - [anon_sym_explicit] = ACTIONS(2368), - [anon_sym_typename] = ACTIONS(2368), - [anon_sym_template] = ACTIONS(2368), - [anon_sym_operator] = ACTIONS(2368), - [anon_sym_try] = ACTIONS(2368), - [anon_sym_delete] = ACTIONS(2368), - [anon_sym_throw] = ACTIONS(2368), - [anon_sym_namespace] = ACTIONS(2368), - [anon_sym_using] = ACTIONS(2368), - [anon_sym_static_assert] = ACTIONS(2368), - [anon_sym_concept] = ACTIONS(2368), - [anon_sym_co_return] = ACTIONS(2368), - [anon_sym_co_yield] = ACTIONS(2368), - [anon_sym_catch] = ACTIONS(2402), - [anon_sym_R_DQUOTE] = ACTIONS(2370), - [anon_sym_LR_DQUOTE] = ACTIONS(2370), - [anon_sym_uR_DQUOTE] = ACTIONS(2370), - [anon_sym_UR_DQUOTE] = ACTIONS(2370), - [anon_sym_u8R_DQUOTE] = ACTIONS(2370), - [anon_sym_co_await] = ACTIONS(2368), - [anon_sym_new] = ACTIONS(2368), - [anon_sym_requires] = ACTIONS(2368), - [sym_this] = ACTIONS(2368), - [sym_nullptr] = ACTIONS(2368), + [sym_preproc_def] = STATE(346), + [sym_preproc_function_def] = STATE(346), + [sym_preproc_call] = STATE(346), + [sym_preproc_elifdef] = STATE(7293), + [sym_preproc_if_in_field_declaration_list] = STATE(346), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(346), + [sym_preproc_else_in_field_declaration_list] = STATE(7293), + [sym_preproc_elif_in_field_declaration_list] = STATE(7293), + [sym_type_definition] = STATE(346), + [sym__declaration_modifiers] = STATE(3706), + [sym__declaration_specifiers] = STATE(4879), + [sym_attribute_specifier] = STATE(3706), + [sym_attribute_declaration] = STATE(3706), + [sym_ms_declspec_modifier] = STATE(3706), + [sym_ms_based_modifier] = STATE(7654), + [sym__declarator] = STATE(5881), + [sym_parenthesized_declarator] = STATE(5640), + [sym_attributed_declarator] = STATE(5640), + [sym_pointer_declarator] = STATE(5640), + [sym_function_declarator] = STATE(5489), + [sym_array_declarator] = STATE(5640), + [sym_storage_class_specifier] = STATE(3706), + [sym_type_qualifier] = STATE(3706), + [sym__type_specifier] = STATE(3845), + [sym_sized_type_specifier] = STATE(3918), + [sym_enum_specifier] = STATE(3918), + [sym_struct_specifier] = STATE(3918), + [sym_union_specifier] = STATE(3918), + [sym__field_declaration_list_item] = STATE(346), + [sym_field_declaration] = STATE(346), + [sym_placeholder_type_specifier] = STATE(3918), + [sym_decltype_auto] = STATE(3916), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3918), + [sym_virtual] = STATE(3706), + [sym_explicit_function_specifier] = STATE(2234), + [sym_dependent_type] = STATE(3918), + [sym_template_declaration] = STATE(346), + [sym_operator_cast] = STATE(5917), + [sym_inline_method_definition] = STATE(346), + [sym__constructor_specifiers] = STATE(2234), + [sym_operator_cast_definition] = STATE(346), + [sym_operator_cast_declaration] = STATE(346), + [sym_constructor_or_destructor_definition] = STATE(346), + [sym_constructor_or_destructor_declaration] = STATE(346), + [sym_friend_declaration] = STATE(346), + [sym_access_specifier] = STATE(7357), + [sym_reference_declarator] = STATE(5640), + [sym_structured_binding_declarator] = STATE(5640), + [sym_template_type] = STATE(3680), + [sym_template_function] = STATE(5640), + [sym_using_declaration] = STATE(346), + [sym_alias_declaration] = STATE(346), + [sym_static_assert_declaration] = STATE(346), + [sym_destructor_name] = STATE(5640), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5151), + [sym_qualified_identifier] = STATE(5640), + [sym_qualified_type_identifier] = STATE(3966), + [sym_qualified_operator_cast_identifier] = STATE(5917), + [sym_operator_name] = STATE(5640), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(346), + [aux_sym__declaration_specifiers_repeat1] = STATE(2509), + [aux_sym_sized_type_specifier_repeat1] = STATE(3981), + [aux_sym_operator_cast_definition_repeat1] = STATE(2234), + [sym_identifier] = ACTIONS(2544), + [aux_sym_preproc_def_token1] = ACTIONS(2546), + [aux_sym_preproc_if_token1] = ACTIONS(2548), + [aux_sym_preproc_if_token2] = ACTIONS(2604), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2552), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2552), + [aux_sym_preproc_else_token1] = ACTIONS(2554), + [aux_sym_preproc_elif_token1] = ACTIONS(2556), + [aux_sym_preproc_elifdef_token1] = ACTIONS(241), + [aux_sym_preproc_elifdef_token2] = ACTIONS(241), + [sym_preproc_directive] = ACTIONS(2558), + [anon_sym_LPAREN2] = ACTIONS(2560), + [anon_sym_TILDE] = ACTIONS(2562), + [anon_sym_STAR] = ACTIONS(2564), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_typedef] = ACTIONS(2568), + [anon_sym_extern] = ACTIONS(53), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(2570), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1813), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(2572), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(53), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(2574), + [anon_sym_unsigned] = ACTIONS(2574), + [anon_sym_long] = ACTIONS(2574), + [anon_sym_short] = ACTIONS(2574), + [sym_primitive_type] = ACTIONS(2576), + [anon_sym_enum] = ACTIONS(2578), + [anon_sym_class] = ACTIONS(2580), + [anon_sym_struct] = ACTIONS(2582), + [anon_sym_union] = ACTIONS(2584), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2586), + [anon_sym_decltype] = ACTIONS(2588), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_explicit] = ACTIONS(119), + [anon_sym_typename] = ACTIONS(2590), + [anon_sym_template] = ACTIONS(2592), + [anon_sym_operator] = ACTIONS(125), + [anon_sym_friend] = ACTIONS(2594), + [anon_sym_public] = ACTIONS(2596), + [anon_sym_private] = ACTIONS(2596), + [anon_sym_protected] = ACTIONS(2596), + [anon_sym_using] = ACTIONS(2598), + [anon_sym_static_assert] = ACTIONS(2600), }, [344] = { - [sym_identifier] = ACTIONS(2404), - [aux_sym_preproc_include_token1] = ACTIONS(2404), - [aux_sym_preproc_def_token1] = ACTIONS(2404), - [aux_sym_preproc_if_token1] = ACTIONS(2404), - [aux_sym_preproc_if_token2] = ACTIONS(2404), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2404), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2404), - [aux_sym_preproc_else_token1] = ACTIONS(2404), - [aux_sym_preproc_elif_token1] = ACTIONS(2404), - [sym_preproc_directive] = ACTIONS(2404), - [anon_sym_LPAREN2] = ACTIONS(2406), - [anon_sym_BANG] = ACTIONS(2406), - [anon_sym_TILDE] = ACTIONS(2406), - [anon_sym_DASH] = ACTIONS(2404), - [anon_sym_PLUS] = ACTIONS(2404), - [anon_sym_STAR] = ACTIONS(2406), - [anon_sym_AMP_AMP] = ACTIONS(2406), - [anon_sym_AMP] = ACTIONS(2404), - [anon_sym_SEMI] = ACTIONS(2406), - [anon_sym_typedef] = ACTIONS(2404), - [anon_sym_extern] = ACTIONS(2404), - [anon_sym___attribute__] = ACTIONS(2404), - [anon_sym_COLON_COLON] = ACTIONS(2406), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2406), - [anon_sym___declspec] = ACTIONS(2404), - [anon_sym___based] = ACTIONS(2404), - [anon_sym___cdecl] = ACTIONS(2404), - [anon_sym___clrcall] = ACTIONS(2404), - [anon_sym___stdcall] = ACTIONS(2404), - [anon_sym___fastcall] = ACTIONS(2404), - [anon_sym___thiscall] = ACTIONS(2404), - [anon_sym___vectorcall] = ACTIONS(2404), - [anon_sym_LBRACE] = ACTIONS(2406), - [anon_sym_LBRACK] = ACTIONS(2404), - [anon_sym_static] = ACTIONS(2404), - [anon_sym_register] = ACTIONS(2404), - [anon_sym_inline] = ACTIONS(2404), - [anon_sym_thread_local] = ACTIONS(2404), - [anon_sym_const] = ACTIONS(2404), - [anon_sym_volatile] = ACTIONS(2404), - [anon_sym_restrict] = ACTIONS(2404), - [anon_sym__Atomic] = ACTIONS(2404), - [anon_sym_mutable] = ACTIONS(2404), - [anon_sym_constexpr] = ACTIONS(2404), - [anon_sym_constinit] = ACTIONS(2404), - [anon_sym_consteval] = ACTIONS(2404), - [anon_sym_signed] = ACTIONS(2404), - [anon_sym_unsigned] = ACTIONS(2404), - [anon_sym_long] = ACTIONS(2404), - [anon_sym_short] = ACTIONS(2404), - [sym_primitive_type] = ACTIONS(2404), - [anon_sym_enum] = ACTIONS(2404), - [anon_sym_class] = ACTIONS(2404), - [anon_sym_struct] = ACTIONS(2404), - [anon_sym_union] = ACTIONS(2404), - [anon_sym_if] = ACTIONS(2404), - [anon_sym_else] = ACTIONS(2404), - [anon_sym_switch] = ACTIONS(2404), - [anon_sym_case] = ACTIONS(2404), - [anon_sym_default] = ACTIONS(2404), - [anon_sym_while] = ACTIONS(2404), - [anon_sym_do] = ACTIONS(2404), - [anon_sym_for] = ACTIONS(2404), - [anon_sym_return] = ACTIONS(2404), - [anon_sym_break] = ACTIONS(2404), - [anon_sym_continue] = ACTIONS(2404), - [anon_sym_goto] = ACTIONS(2404), - [anon_sym_not] = ACTIONS(2404), - [anon_sym_compl] = ACTIONS(2404), - [anon_sym_DASH_DASH] = ACTIONS(2406), - [anon_sym_PLUS_PLUS] = ACTIONS(2406), - [anon_sym_sizeof] = ACTIONS(2404), - [sym_number_literal] = ACTIONS(2406), - [anon_sym_L_SQUOTE] = ACTIONS(2406), - [anon_sym_u_SQUOTE] = ACTIONS(2406), - [anon_sym_U_SQUOTE] = ACTIONS(2406), - [anon_sym_u8_SQUOTE] = ACTIONS(2406), - [anon_sym_SQUOTE] = ACTIONS(2406), - [anon_sym_L_DQUOTE] = ACTIONS(2406), - [anon_sym_u_DQUOTE] = ACTIONS(2406), - [anon_sym_U_DQUOTE] = ACTIONS(2406), - [anon_sym_u8_DQUOTE] = ACTIONS(2406), - [anon_sym_DQUOTE] = ACTIONS(2406), - [sym_true] = ACTIONS(2404), - [sym_false] = ACTIONS(2404), - [sym_null] = ACTIONS(2404), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2404), - [anon_sym_decltype] = ACTIONS(2404), - [anon_sym_virtual] = ACTIONS(2404), - [anon_sym_explicit] = ACTIONS(2404), - [anon_sym_typename] = ACTIONS(2404), - [anon_sym_template] = ACTIONS(2404), - [anon_sym_operator] = ACTIONS(2404), - [anon_sym_try] = ACTIONS(2404), - [anon_sym_delete] = ACTIONS(2404), - [anon_sym_throw] = ACTIONS(2404), - [anon_sym_namespace] = ACTIONS(2404), - [anon_sym_using] = ACTIONS(2404), - [anon_sym_static_assert] = ACTIONS(2404), - [anon_sym_concept] = ACTIONS(2404), - [anon_sym_co_return] = ACTIONS(2404), - [anon_sym_co_yield] = ACTIONS(2404), - [anon_sym_catch] = ACTIONS(2404), - [anon_sym_R_DQUOTE] = ACTIONS(2406), - [anon_sym_LR_DQUOTE] = ACTIONS(2406), - [anon_sym_uR_DQUOTE] = ACTIONS(2406), - [anon_sym_UR_DQUOTE] = ACTIONS(2406), - [anon_sym_u8R_DQUOTE] = ACTIONS(2406), - [anon_sym_co_await] = ACTIONS(2404), - [anon_sym_new] = ACTIONS(2404), - [anon_sym_requires] = ACTIONS(2404), - [sym_this] = ACTIONS(2404), - [sym_nullptr] = ACTIONS(2404), + [sym_preproc_def] = STATE(370), + [sym_preproc_function_def] = STATE(370), + [sym_preproc_call] = STATE(370), + [sym_preproc_elifdef] = STATE(7601), + [sym_preproc_if_in_field_declaration_list] = STATE(370), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(370), + [sym_preproc_else_in_field_declaration_list] = STATE(7601), + [sym_preproc_elif_in_field_declaration_list] = STATE(7601), + [sym_type_definition] = STATE(370), + [sym__declaration_modifiers] = STATE(3706), + [sym__declaration_specifiers] = STATE(4879), + [sym_attribute_specifier] = STATE(3706), + [sym_attribute_declaration] = STATE(3706), + [sym_ms_declspec_modifier] = STATE(3706), + [sym_ms_based_modifier] = STATE(7654), + [sym__declarator] = STATE(5881), + [sym_parenthesized_declarator] = STATE(5640), + [sym_attributed_declarator] = STATE(5640), + [sym_pointer_declarator] = STATE(5640), + [sym_function_declarator] = STATE(5489), + [sym_array_declarator] = STATE(5640), + [sym_storage_class_specifier] = STATE(3706), + [sym_type_qualifier] = STATE(3706), + [sym__type_specifier] = STATE(3845), + [sym_sized_type_specifier] = STATE(3918), + [sym_enum_specifier] = STATE(3918), + [sym_struct_specifier] = STATE(3918), + [sym_union_specifier] = STATE(3918), + [sym__field_declaration_list_item] = STATE(370), + [sym_field_declaration] = STATE(370), + [sym_placeholder_type_specifier] = STATE(3918), + [sym_decltype_auto] = STATE(3916), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3918), + [sym_virtual] = STATE(3706), + [sym_explicit_function_specifier] = STATE(2234), + [sym_dependent_type] = STATE(3918), + [sym_template_declaration] = STATE(370), + [sym_operator_cast] = STATE(5917), + [sym_inline_method_definition] = STATE(370), + [sym__constructor_specifiers] = STATE(2234), + [sym_operator_cast_definition] = STATE(370), + [sym_operator_cast_declaration] = STATE(370), + [sym_constructor_or_destructor_definition] = STATE(370), + [sym_constructor_or_destructor_declaration] = STATE(370), + [sym_friend_declaration] = STATE(370), + [sym_access_specifier] = STATE(7357), + [sym_reference_declarator] = STATE(5640), + [sym_structured_binding_declarator] = STATE(5640), + [sym_template_type] = STATE(3680), + [sym_template_function] = STATE(5640), + [sym_using_declaration] = STATE(370), + [sym_alias_declaration] = STATE(370), + [sym_static_assert_declaration] = STATE(370), + [sym_destructor_name] = STATE(5640), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5151), + [sym_qualified_identifier] = STATE(5640), + [sym_qualified_type_identifier] = STATE(3966), + [sym_qualified_operator_cast_identifier] = STATE(5917), + [sym_operator_name] = STATE(5640), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(370), + [aux_sym__declaration_specifiers_repeat1] = STATE(2509), + [aux_sym_sized_type_specifier_repeat1] = STATE(3981), + [aux_sym_operator_cast_definition_repeat1] = STATE(2234), + [sym_identifier] = ACTIONS(2544), + [aux_sym_preproc_def_token1] = ACTIONS(2546), + [aux_sym_preproc_if_token1] = ACTIONS(2548), + [aux_sym_preproc_if_token2] = ACTIONS(2606), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2552), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2552), + [aux_sym_preproc_else_token1] = ACTIONS(2554), + [aux_sym_preproc_elif_token1] = ACTIONS(2556), + [aux_sym_preproc_elifdef_token1] = ACTIONS(241), + [aux_sym_preproc_elifdef_token2] = ACTIONS(241), + [sym_preproc_directive] = ACTIONS(2558), + [anon_sym_LPAREN2] = ACTIONS(2560), + [anon_sym_TILDE] = ACTIONS(2562), + [anon_sym_STAR] = ACTIONS(2564), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_typedef] = ACTIONS(2568), + [anon_sym_extern] = ACTIONS(53), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(2570), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1813), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(2572), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(53), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(2574), + [anon_sym_unsigned] = ACTIONS(2574), + [anon_sym_long] = ACTIONS(2574), + [anon_sym_short] = ACTIONS(2574), + [sym_primitive_type] = ACTIONS(2576), + [anon_sym_enum] = ACTIONS(2578), + [anon_sym_class] = ACTIONS(2580), + [anon_sym_struct] = ACTIONS(2582), + [anon_sym_union] = ACTIONS(2584), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2586), + [anon_sym_decltype] = ACTIONS(2588), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_explicit] = ACTIONS(119), + [anon_sym_typename] = ACTIONS(2590), + [anon_sym_template] = ACTIONS(2592), + [anon_sym_operator] = ACTIONS(125), + [anon_sym_friend] = ACTIONS(2594), + [anon_sym_public] = ACTIONS(2596), + [anon_sym_private] = ACTIONS(2596), + [anon_sym_protected] = ACTIONS(2596), + [anon_sym_using] = ACTIONS(2598), + [anon_sym_static_assert] = ACTIONS(2600), }, [345] = { - [sym_type_qualifier] = STATE(3306), - [sym__type_specifier] = STATE(3903), - [sym_sized_type_specifier] = STATE(3003), - [sym_enum_specifier] = STATE(3003), - [sym_struct_specifier] = STATE(3003), - [sym_union_specifier] = STATE(3003), - [sym__expression] = STATE(3478), - [sym_conditional_expression] = STATE(3855), - [sym_assignment_expression] = STATE(3855), - [sym_pointer_expression] = STATE(2954), - [sym_unary_expression] = STATE(3855), - [sym_binary_expression] = STATE(3855), - [sym_update_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_type_descriptor] = STATE(5286), - [sym_sizeof_expression] = STATE(3855), - [sym_subscript_expression] = STATE(2954), - [sym_call_expression] = STATE(2954), - [sym_field_expression] = STATE(2954), - [sym_compound_literal_expression] = STATE(3855), - [sym_parenthesized_expression] = STATE(2954), - [sym_char_literal] = STATE(3557), - [sym_concatenated_string] = STATE(3557), - [sym_string_literal] = STATE(2955), - [sym_placeholder_type_specifier] = STATE(3003), - [sym_decltype_auto] = STATE(3008), - [sym_decltype] = STATE(2851), - [sym_class_specifier] = STATE(3003), - [sym__class_name] = STATE(5844), - [sym_dependent_type] = STATE(3003), - [sym_template_type] = STATE(4288), - [sym_template_function] = STATE(3855), - [sym_raw_string_literal] = STATE(2955), - [sym_co_await_expression] = STATE(3855), - [sym_new_expression] = STATE(3855), - [sym_delete_expression] = STATE(3855), - [sym_requires_clause] = STATE(3855), - [sym_requires_expression] = STATE(3855), - [sym_lambda_expression] = STATE(3855), - [sym_lambda_capture_specifier] = STATE(4501), - [sym_fold_expression] = STATE(3855), - [sym_parameter_pack_expansion] = STATE(3855), - [sym_type_parameter_pack_expansion] = STATE(5488), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4544), - [sym_qualified_identifier] = STATE(2954), - [sym_qualified_type_identifier] = STATE(4356), - [sym_user_defined_literal] = STATE(3855), - [aux_sym_type_definition_repeat1] = STATE(3306), - [aux_sym_sized_type_specifier_repeat1] = STATE(2022), - [sym_identifier] = ACTIONS(2408), - [anon_sym_LPAREN2] = ACTIONS(2410), - [anon_sym_BANG] = ACTIONS(2412), - [anon_sym_TILDE] = ACTIONS(2412), - [anon_sym_DASH] = ACTIONS(2414), - [anon_sym_PLUS] = ACTIONS(2414), - [anon_sym_STAR] = ACTIONS(2416), - [anon_sym_AMP] = ACTIONS(2416), - [anon_sym_COLON_COLON] = ACTIONS(2418), - [anon_sym_LBRACK] = ACTIONS(1539), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(2420), - [anon_sym_unsigned] = ACTIONS(2420), - [anon_sym_long] = ACTIONS(2420), - [anon_sym_short] = ACTIONS(2420), - [sym_primitive_type] = ACTIONS(2422), - [anon_sym_enum] = ACTIONS(2424), - [anon_sym_class] = ACTIONS(2426), - [anon_sym_struct] = ACTIONS(2428), - [anon_sym_union] = ACTIONS(2430), - [anon_sym_not] = ACTIONS(2414), - [anon_sym_compl] = ACTIONS(2414), - [anon_sym_DASH_DASH] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(2432), - [anon_sym_sizeof] = ACTIONS(2434), - [sym_number_literal] = ACTIONS(2436), - [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_L_DQUOTE] = ACTIONS(2440), - [anon_sym_u_DQUOTE] = ACTIONS(2440), - [anon_sym_U_DQUOTE] = ACTIONS(2440), - [anon_sym_u8_DQUOTE] = ACTIONS(2440), - [anon_sym_DQUOTE] = ACTIONS(2440), - [sym_true] = ACTIONS(2442), - [sym_false] = ACTIONS(2442), - [sym_null] = ACTIONS(2442), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2444), - [anon_sym_decltype] = ACTIONS(2446), - [anon_sym_typename] = ACTIONS(2448), - [anon_sym_template] = ACTIONS(996), - [anon_sym_GT2] = ACTIONS(2450), - [anon_sym_delete] = ACTIONS(2452), - [anon_sym_R_DQUOTE] = ACTIONS(2454), - [anon_sym_LR_DQUOTE] = ACTIONS(2454), - [anon_sym_uR_DQUOTE] = ACTIONS(2454), - [anon_sym_UR_DQUOTE] = ACTIONS(2454), - [anon_sym_u8R_DQUOTE] = ACTIONS(2454), - [anon_sym_co_await] = ACTIONS(2456), - [anon_sym_new] = ACTIONS(2458), - [anon_sym_requires] = ACTIONS(2460), - [sym_this] = ACTIONS(2442), - [sym_nullptr] = ACTIONS(2442), + [sym_preproc_def] = STATE(342), + [sym_preproc_function_def] = STATE(342), + [sym_preproc_call] = STATE(342), + [sym_preproc_elifdef] = STATE(7463), + [sym_preproc_if_in_field_declaration_list] = STATE(342), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(342), + [sym_preproc_else_in_field_declaration_list] = STATE(7463), + [sym_preproc_elif_in_field_declaration_list] = STATE(7463), + [sym_type_definition] = STATE(342), + [sym__declaration_modifiers] = STATE(3706), + [sym__declaration_specifiers] = STATE(4879), + [sym_attribute_specifier] = STATE(3706), + [sym_attribute_declaration] = STATE(3706), + [sym_ms_declspec_modifier] = STATE(3706), + [sym_ms_based_modifier] = STATE(7654), + [sym__declarator] = STATE(5881), + [sym_parenthesized_declarator] = STATE(5640), + [sym_attributed_declarator] = STATE(5640), + [sym_pointer_declarator] = STATE(5640), + [sym_function_declarator] = STATE(5489), + [sym_array_declarator] = STATE(5640), + [sym_storage_class_specifier] = STATE(3706), + [sym_type_qualifier] = STATE(3706), + [sym__type_specifier] = STATE(3845), + [sym_sized_type_specifier] = STATE(3918), + [sym_enum_specifier] = STATE(3918), + [sym_struct_specifier] = STATE(3918), + [sym_union_specifier] = STATE(3918), + [sym__field_declaration_list_item] = STATE(342), + [sym_field_declaration] = STATE(342), + [sym_placeholder_type_specifier] = STATE(3918), + [sym_decltype_auto] = STATE(3916), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3918), + [sym_virtual] = STATE(3706), + [sym_explicit_function_specifier] = STATE(2234), + [sym_dependent_type] = STATE(3918), + [sym_template_declaration] = STATE(342), + [sym_operator_cast] = STATE(5917), + [sym_inline_method_definition] = STATE(342), + [sym__constructor_specifiers] = STATE(2234), + [sym_operator_cast_definition] = STATE(342), + [sym_operator_cast_declaration] = STATE(342), + [sym_constructor_or_destructor_definition] = STATE(342), + [sym_constructor_or_destructor_declaration] = STATE(342), + [sym_friend_declaration] = STATE(342), + [sym_access_specifier] = STATE(7357), + [sym_reference_declarator] = STATE(5640), + [sym_structured_binding_declarator] = STATE(5640), + [sym_template_type] = STATE(3680), + [sym_template_function] = STATE(5640), + [sym_using_declaration] = STATE(342), + [sym_alias_declaration] = STATE(342), + [sym_static_assert_declaration] = STATE(342), + [sym_destructor_name] = STATE(5640), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5151), + [sym_qualified_identifier] = STATE(5640), + [sym_qualified_type_identifier] = STATE(3966), + [sym_qualified_operator_cast_identifier] = STATE(5917), + [sym_operator_name] = STATE(5640), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(342), + [aux_sym__declaration_specifiers_repeat1] = STATE(2509), + [aux_sym_sized_type_specifier_repeat1] = STATE(3981), + [aux_sym_operator_cast_definition_repeat1] = STATE(2234), + [sym_identifier] = ACTIONS(2544), + [aux_sym_preproc_def_token1] = ACTIONS(2546), + [aux_sym_preproc_if_token1] = ACTIONS(2548), + [aux_sym_preproc_if_token2] = ACTIONS(2608), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2552), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2552), + [aux_sym_preproc_else_token1] = ACTIONS(2554), + [aux_sym_preproc_elif_token1] = ACTIONS(2556), + [aux_sym_preproc_elifdef_token1] = ACTIONS(241), + [aux_sym_preproc_elifdef_token2] = ACTIONS(241), + [sym_preproc_directive] = ACTIONS(2558), + [anon_sym_LPAREN2] = ACTIONS(2560), + [anon_sym_TILDE] = ACTIONS(2562), + [anon_sym_STAR] = ACTIONS(2564), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_typedef] = ACTIONS(2568), + [anon_sym_extern] = ACTIONS(53), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(2570), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1813), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(2572), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(53), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(2574), + [anon_sym_unsigned] = ACTIONS(2574), + [anon_sym_long] = ACTIONS(2574), + [anon_sym_short] = ACTIONS(2574), + [sym_primitive_type] = ACTIONS(2576), + [anon_sym_enum] = ACTIONS(2578), + [anon_sym_class] = ACTIONS(2580), + [anon_sym_struct] = ACTIONS(2582), + [anon_sym_union] = ACTIONS(2584), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2586), + [anon_sym_decltype] = ACTIONS(2588), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_explicit] = ACTIONS(119), + [anon_sym_typename] = ACTIONS(2590), + [anon_sym_template] = ACTIONS(2592), + [anon_sym_operator] = ACTIONS(125), + [anon_sym_friend] = ACTIONS(2594), + [anon_sym_public] = ACTIONS(2596), + [anon_sym_private] = ACTIONS(2596), + [anon_sym_protected] = ACTIONS(2596), + [anon_sym_using] = ACTIONS(2598), + [anon_sym_static_assert] = ACTIONS(2600), }, [346] = { - [sym_identifier] = ACTIONS(2462), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2464), - [anon_sym_AMP] = ACTIONS(2462), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_explicit] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_operator] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_namespace] = ACTIONS(2462), - [anon_sym_using] = ACTIONS(2462), - [anon_sym_static_assert] = ACTIONS(2462), - [anon_sym_concept] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_preproc_def] = STATE(370), + [sym_preproc_function_def] = STATE(370), + [sym_preproc_call] = STATE(370), + [sym_preproc_elifdef] = STATE(7657), + [sym_preproc_if_in_field_declaration_list] = STATE(370), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(370), + [sym_preproc_else_in_field_declaration_list] = STATE(7657), + [sym_preproc_elif_in_field_declaration_list] = STATE(7657), + [sym_type_definition] = STATE(370), + [sym__declaration_modifiers] = STATE(3706), + [sym__declaration_specifiers] = STATE(4879), + [sym_attribute_specifier] = STATE(3706), + [sym_attribute_declaration] = STATE(3706), + [sym_ms_declspec_modifier] = STATE(3706), + [sym_ms_based_modifier] = STATE(7654), + [sym__declarator] = STATE(5881), + [sym_parenthesized_declarator] = STATE(5640), + [sym_attributed_declarator] = STATE(5640), + [sym_pointer_declarator] = STATE(5640), + [sym_function_declarator] = STATE(5489), + [sym_array_declarator] = STATE(5640), + [sym_storage_class_specifier] = STATE(3706), + [sym_type_qualifier] = STATE(3706), + [sym__type_specifier] = STATE(3845), + [sym_sized_type_specifier] = STATE(3918), + [sym_enum_specifier] = STATE(3918), + [sym_struct_specifier] = STATE(3918), + [sym_union_specifier] = STATE(3918), + [sym__field_declaration_list_item] = STATE(370), + [sym_field_declaration] = STATE(370), + [sym_placeholder_type_specifier] = STATE(3918), + [sym_decltype_auto] = STATE(3916), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3918), + [sym_virtual] = STATE(3706), + [sym_explicit_function_specifier] = STATE(2234), + [sym_dependent_type] = STATE(3918), + [sym_template_declaration] = STATE(370), + [sym_operator_cast] = STATE(5917), + [sym_inline_method_definition] = STATE(370), + [sym__constructor_specifiers] = STATE(2234), + [sym_operator_cast_definition] = STATE(370), + [sym_operator_cast_declaration] = STATE(370), + [sym_constructor_or_destructor_definition] = STATE(370), + [sym_constructor_or_destructor_declaration] = STATE(370), + [sym_friend_declaration] = STATE(370), + [sym_access_specifier] = STATE(7357), + [sym_reference_declarator] = STATE(5640), + [sym_structured_binding_declarator] = STATE(5640), + [sym_template_type] = STATE(3680), + [sym_template_function] = STATE(5640), + [sym_using_declaration] = STATE(370), + [sym_alias_declaration] = STATE(370), + [sym_static_assert_declaration] = STATE(370), + [sym_destructor_name] = STATE(5640), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5151), + [sym_qualified_identifier] = STATE(5640), + [sym_qualified_type_identifier] = STATE(3966), + [sym_qualified_operator_cast_identifier] = STATE(5917), + [sym_operator_name] = STATE(5640), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(370), + [aux_sym__declaration_specifiers_repeat1] = STATE(2509), + [aux_sym_sized_type_specifier_repeat1] = STATE(3981), + [aux_sym_operator_cast_definition_repeat1] = STATE(2234), + [sym_identifier] = ACTIONS(2544), + [aux_sym_preproc_def_token1] = ACTIONS(2546), + [aux_sym_preproc_if_token1] = ACTIONS(2548), + [aux_sym_preproc_if_token2] = ACTIONS(2610), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2552), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2552), + [aux_sym_preproc_else_token1] = ACTIONS(2554), + [aux_sym_preproc_elif_token1] = ACTIONS(2556), + [aux_sym_preproc_elifdef_token1] = ACTIONS(241), + [aux_sym_preproc_elifdef_token2] = ACTIONS(241), + [sym_preproc_directive] = ACTIONS(2558), + [anon_sym_LPAREN2] = ACTIONS(2560), + [anon_sym_TILDE] = ACTIONS(2562), + [anon_sym_STAR] = ACTIONS(2564), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_typedef] = ACTIONS(2568), + [anon_sym_extern] = ACTIONS(53), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(2570), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1813), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(2572), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(53), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(2574), + [anon_sym_unsigned] = ACTIONS(2574), + [anon_sym_long] = ACTIONS(2574), + [anon_sym_short] = ACTIONS(2574), + [sym_primitive_type] = ACTIONS(2576), + [anon_sym_enum] = ACTIONS(2578), + [anon_sym_class] = ACTIONS(2580), + [anon_sym_struct] = ACTIONS(2582), + [anon_sym_union] = ACTIONS(2584), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2586), + [anon_sym_decltype] = ACTIONS(2588), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_explicit] = ACTIONS(119), + [anon_sym_typename] = ACTIONS(2590), + [anon_sym_template] = ACTIONS(2592), + [anon_sym_operator] = ACTIONS(125), + [anon_sym_friend] = ACTIONS(2594), + [anon_sym_public] = ACTIONS(2596), + [anon_sym_private] = ACTIONS(2596), + [anon_sym_protected] = ACTIONS(2596), + [anon_sym_using] = ACTIONS(2598), + [anon_sym_static_assert] = ACTIONS(2600), }, [347] = { - [sym_identifier] = ACTIONS(2462), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2464), - [anon_sym_AMP] = ACTIONS(2462), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_explicit] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_operator] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_namespace] = ACTIONS(2462), - [anon_sym_using] = ACTIONS(2462), - [anon_sym_static_assert] = ACTIONS(2462), - [anon_sym_concept] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_preproc_def] = STATE(348), + [sym_preproc_function_def] = STATE(348), + [sym_preproc_call] = STATE(348), + [sym_preproc_elifdef] = STATE(7209), + [sym_preproc_if_in_field_declaration_list] = STATE(348), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(348), + [sym_preproc_else_in_field_declaration_list] = STATE(7209), + [sym_preproc_elif_in_field_declaration_list] = STATE(7209), + [sym_type_definition] = STATE(348), + [sym__declaration_modifiers] = STATE(3706), + [sym__declaration_specifiers] = STATE(4879), + [sym_attribute_specifier] = STATE(3706), + [sym_attribute_declaration] = STATE(3706), + [sym_ms_declspec_modifier] = STATE(3706), + [sym_ms_based_modifier] = STATE(7654), + [sym__declarator] = STATE(5881), + [sym_parenthesized_declarator] = STATE(5640), + [sym_attributed_declarator] = STATE(5640), + [sym_pointer_declarator] = STATE(5640), + [sym_function_declarator] = STATE(5489), + [sym_array_declarator] = STATE(5640), + [sym_storage_class_specifier] = STATE(3706), + [sym_type_qualifier] = STATE(3706), + [sym__type_specifier] = STATE(3845), + [sym_sized_type_specifier] = STATE(3918), + [sym_enum_specifier] = STATE(3918), + [sym_struct_specifier] = STATE(3918), + [sym_union_specifier] = STATE(3918), + [sym__field_declaration_list_item] = STATE(348), + [sym_field_declaration] = STATE(348), + [sym_placeholder_type_specifier] = STATE(3918), + [sym_decltype_auto] = STATE(3916), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3918), + [sym_virtual] = STATE(3706), + [sym_explicit_function_specifier] = STATE(2234), + [sym_dependent_type] = STATE(3918), + [sym_template_declaration] = STATE(348), + [sym_operator_cast] = STATE(5917), + [sym_inline_method_definition] = STATE(348), + [sym__constructor_specifiers] = STATE(2234), + [sym_operator_cast_definition] = STATE(348), + [sym_operator_cast_declaration] = STATE(348), + [sym_constructor_or_destructor_definition] = STATE(348), + [sym_constructor_or_destructor_declaration] = STATE(348), + [sym_friend_declaration] = STATE(348), + [sym_access_specifier] = STATE(7357), + [sym_reference_declarator] = STATE(5640), + [sym_structured_binding_declarator] = STATE(5640), + [sym_template_type] = STATE(3680), + [sym_template_function] = STATE(5640), + [sym_using_declaration] = STATE(348), + [sym_alias_declaration] = STATE(348), + [sym_static_assert_declaration] = STATE(348), + [sym_destructor_name] = STATE(5640), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5151), + [sym_qualified_identifier] = STATE(5640), + [sym_qualified_type_identifier] = STATE(3966), + [sym_qualified_operator_cast_identifier] = STATE(5917), + [sym_operator_name] = STATE(5640), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(348), + [aux_sym__declaration_specifiers_repeat1] = STATE(2509), + [aux_sym_sized_type_specifier_repeat1] = STATE(3981), + [aux_sym_operator_cast_definition_repeat1] = STATE(2234), + [sym_identifier] = ACTIONS(2544), + [aux_sym_preproc_def_token1] = ACTIONS(2546), + [aux_sym_preproc_if_token1] = ACTIONS(2548), + [aux_sym_preproc_if_token2] = ACTIONS(2612), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2552), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2552), + [aux_sym_preproc_else_token1] = ACTIONS(2554), + [aux_sym_preproc_elif_token1] = ACTIONS(2556), + [aux_sym_preproc_elifdef_token1] = ACTIONS(241), + [aux_sym_preproc_elifdef_token2] = ACTIONS(241), + [sym_preproc_directive] = ACTIONS(2558), + [anon_sym_LPAREN2] = ACTIONS(2560), + [anon_sym_TILDE] = ACTIONS(2562), + [anon_sym_STAR] = ACTIONS(2564), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_typedef] = ACTIONS(2568), + [anon_sym_extern] = ACTIONS(53), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(2570), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1813), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(2572), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(53), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(2574), + [anon_sym_unsigned] = ACTIONS(2574), + [anon_sym_long] = ACTIONS(2574), + [anon_sym_short] = ACTIONS(2574), + [sym_primitive_type] = ACTIONS(2576), + [anon_sym_enum] = ACTIONS(2578), + [anon_sym_class] = ACTIONS(2580), + [anon_sym_struct] = ACTIONS(2582), + [anon_sym_union] = ACTIONS(2584), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2586), + [anon_sym_decltype] = ACTIONS(2588), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_explicit] = ACTIONS(119), + [anon_sym_typename] = ACTIONS(2590), + [anon_sym_template] = ACTIONS(2592), + [anon_sym_operator] = ACTIONS(125), + [anon_sym_friend] = ACTIONS(2594), + [anon_sym_public] = ACTIONS(2596), + [anon_sym_private] = ACTIONS(2596), + [anon_sym_protected] = ACTIONS(2596), + [anon_sym_using] = ACTIONS(2598), + [anon_sym_static_assert] = ACTIONS(2600), }, [348] = { - [sym_identifier] = ACTIONS(2466), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2468), - [anon_sym_AMP] = ACTIONS(2466), - [anon_sym_SEMI] = ACTIONS(2468), - [anon_sym_typedef] = ACTIONS(2466), - [anon_sym_extern] = ACTIONS(2466), - [anon_sym___attribute__] = ACTIONS(2466), - [anon_sym_COLON_COLON] = ACTIONS(2468), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2468), - [anon_sym___declspec] = ACTIONS(2466), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2466), - [anon_sym_static] = ACTIONS(2466), - [anon_sym_register] = ACTIONS(2466), - [anon_sym_inline] = ACTIONS(2466), - [anon_sym_thread_local] = ACTIONS(2466), - [anon_sym_const] = ACTIONS(2466), - [anon_sym_volatile] = ACTIONS(2466), - [anon_sym_restrict] = ACTIONS(2466), - [anon_sym__Atomic] = ACTIONS(2466), - [anon_sym_mutable] = ACTIONS(2466), - [anon_sym_constexpr] = ACTIONS(2466), - [anon_sym_constinit] = ACTIONS(2466), - [anon_sym_consteval] = ACTIONS(2466), - [anon_sym_signed] = ACTIONS(2466), - [anon_sym_unsigned] = ACTIONS(2466), - [anon_sym_long] = ACTIONS(2466), - [anon_sym_short] = ACTIONS(2466), - [sym_primitive_type] = ACTIONS(2466), - [anon_sym_enum] = ACTIONS(2466), - [anon_sym_class] = 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_return] = ACTIONS(2466), - [anon_sym_break] = ACTIONS(2466), - [anon_sym_continue] = ACTIONS(2466), - [anon_sym_goto] = ACTIONS(2466), - [anon_sym_not] = ACTIONS(2466), - [anon_sym_compl] = ACTIONS(2466), - [anon_sym_DASH_DASH] = ACTIONS(2468), - [anon_sym_PLUS_PLUS] = ACTIONS(2468), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2468), - [anon_sym_u_DQUOTE] = ACTIONS(2468), - [anon_sym_U_DQUOTE] = ACTIONS(2468), - [anon_sym_u8_DQUOTE] = ACTIONS(2468), - [anon_sym_DQUOTE] = ACTIONS(2468), - [sym_true] = ACTIONS(2466), - [sym_false] = ACTIONS(2466), - [sym_null] = ACTIONS(2466), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2466), - [anon_sym_decltype] = ACTIONS(2466), - [anon_sym_virtual] = ACTIONS(2466), - [anon_sym_explicit] = ACTIONS(2466), - [anon_sym_typename] = ACTIONS(2466), - [anon_sym_template] = ACTIONS(2466), - [anon_sym_operator] = ACTIONS(2466), - [anon_sym_try] = ACTIONS(2466), - [anon_sym_delete] = ACTIONS(2466), - [anon_sym_throw] = ACTIONS(2466), - [anon_sym_namespace] = ACTIONS(2466), - [anon_sym_using] = ACTIONS(2466), - [anon_sym_static_assert] = ACTIONS(2466), - [anon_sym_concept] = ACTIONS(2466), - [anon_sym_co_return] = ACTIONS(2466), - [anon_sym_co_yield] = ACTIONS(2466), - [anon_sym_R_DQUOTE] = ACTIONS(2468), - [anon_sym_LR_DQUOTE] = ACTIONS(2468), - [anon_sym_uR_DQUOTE] = ACTIONS(2468), - [anon_sym_UR_DQUOTE] = ACTIONS(2468), - [anon_sym_u8R_DQUOTE] = ACTIONS(2468), - [anon_sym_co_await] = ACTIONS(2466), - [anon_sym_new] = ACTIONS(2466), - [anon_sym_requires] = ACTIONS(2466), - [sym_this] = ACTIONS(2466), - [sym_nullptr] = ACTIONS(2466), + [sym_preproc_def] = STATE(370), + [sym_preproc_function_def] = STATE(370), + [sym_preproc_call] = STATE(370), + [sym_preproc_elifdef] = STATE(7188), + [sym_preproc_if_in_field_declaration_list] = STATE(370), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(370), + [sym_preproc_else_in_field_declaration_list] = STATE(7188), + [sym_preproc_elif_in_field_declaration_list] = STATE(7188), + [sym_type_definition] = STATE(370), + [sym__declaration_modifiers] = STATE(3706), + [sym__declaration_specifiers] = STATE(4879), + [sym_attribute_specifier] = STATE(3706), + [sym_attribute_declaration] = STATE(3706), + [sym_ms_declspec_modifier] = STATE(3706), + [sym_ms_based_modifier] = STATE(7654), + [sym__declarator] = STATE(5881), + [sym_parenthesized_declarator] = STATE(5640), + [sym_attributed_declarator] = STATE(5640), + [sym_pointer_declarator] = STATE(5640), + [sym_function_declarator] = STATE(5489), + [sym_array_declarator] = STATE(5640), + [sym_storage_class_specifier] = STATE(3706), + [sym_type_qualifier] = STATE(3706), + [sym__type_specifier] = STATE(3845), + [sym_sized_type_specifier] = STATE(3918), + [sym_enum_specifier] = STATE(3918), + [sym_struct_specifier] = STATE(3918), + [sym_union_specifier] = STATE(3918), + [sym__field_declaration_list_item] = STATE(370), + [sym_field_declaration] = STATE(370), + [sym_placeholder_type_specifier] = STATE(3918), + [sym_decltype_auto] = STATE(3916), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3918), + [sym_virtual] = STATE(3706), + [sym_explicit_function_specifier] = STATE(2234), + [sym_dependent_type] = STATE(3918), + [sym_template_declaration] = STATE(370), + [sym_operator_cast] = STATE(5917), + [sym_inline_method_definition] = STATE(370), + [sym__constructor_specifiers] = STATE(2234), + [sym_operator_cast_definition] = STATE(370), + [sym_operator_cast_declaration] = STATE(370), + [sym_constructor_or_destructor_definition] = STATE(370), + [sym_constructor_or_destructor_declaration] = STATE(370), + [sym_friend_declaration] = STATE(370), + [sym_access_specifier] = STATE(7357), + [sym_reference_declarator] = STATE(5640), + [sym_structured_binding_declarator] = STATE(5640), + [sym_template_type] = STATE(3680), + [sym_template_function] = STATE(5640), + [sym_using_declaration] = STATE(370), + [sym_alias_declaration] = STATE(370), + [sym_static_assert_declaration] = STATE(370), + [sym_destructor_name] = STATE(5640), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5151), + [sym_qualified_identifier] = STATE(5640), + [sym_qualified_type_identifier] = STATE(3966), + [sym_qualified_operator_cast_identifier] = STATE(5917), + [sym_operator_name] = STATE(5640), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(370), + [aux_sym__declaration_specifiers_repeat1] = STATE(2509), + [aux_sym_sized_type_specifier_repeat1] = STATE(3981), + [aux_sym_operator_cast_definition_repeat1] = STATE(2234), + [sym_identifier] = ACTIONS(2544), + [aux_sym_preproc_def_token1] = ACTIONS(2546), + [aux_sym_preproc_if_token1] = ACTIONS(2548), + [aux_sym_preproc_if_token2] = ACTIONS(2614), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2552), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2552), + [aux_sym_preproc_else_token1] = ACTIONS(2554), + [aux_sym_preproc_elif_token1] = ACTIONS(2556), + [aux_sym_preproc_elifdef_token1] = ACTIONS(241), + [aux_sym_preproc_elifdef_token2] = ACTIONS(241), + [sym_preproc_directive] = ACTIONS(2558), + [anon_sym_LPAREN2] = ACTIONS(2560), + [anon_sym_TILDE] = ACTIONS(2562), + [anon_sym_STAR] = ACTIONS(2564), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_typedef] = ACTIONS(2568), + [anon_sym_extern] = ACTIONS(53), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(2570), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1813), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(2572), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(53), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(2574), + [anon_sym_unsigned] = ACTIONS(2574), + [anon_sym_long] = ACTIONS(2574), + [anon_sym_short] = ACTIONS(2574), + [sym_primitive_type] = ACTIONS(2576), + [anon_sym_enum] = ACTIONS(2578), + [anon_sym_class] = ACTIONS(2580), + [anon_sym_struct] = ACTIONS(2582), + [anon_sym_union] = ACTIONS(2584), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2586), + [anon_sym_decltype] = ACTIONS(2588), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_explicit] = ACTIONS(119), + [anon_sym_typename] = ACTIONS(2590), + [anon_sym_template] = ACTIONS(2592), + [anon_sym_operator] = ACTIONS(125), + [anon_sym_friend] = ACTIONS(2594), + [anon_sym_public] = ACTIONS(2596), + [anon_sym_private] = ACTIONS(2596), + [anon_sym_protected] = ACTIONS(2596), + [anon_sym_using] = ACTIONS(2598), + [anon_sym_static_assert] = ACTIONS(2600), }, [349] = { - [sym_identifier] = ACTIONS(2462), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2464), - [anon_sym_AMP] = ACTIONS(2462), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_explicit] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_operator] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_namespace] = ACTIONS(2462), - [anon_sym_using] = ACTIONS(2462), - [anon_sym_static_assert] = ACTIONS(2462), - [anon_sym_concept] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_type_qualifier] = STATE(3794), + [sym__type_specifier] = STATE(4503), + [sym_sized_type_specifier] = STATE(3156), + [sym_enum_specifier] = STATE(3156), + [sym_struct_specifier] = STATE(3156), + [sym_union_specifier] = STATE(3156), + [sym__expression] = STATE(4109), + [sym__expression_not_binary] = STATE(4369), + [sym_conditional_expression] = STATE(4369), + [sym_assignment_expression] = STATE(4369), + [sym_pointer_expression] = STATE(3541), + [sym_unary_expression] = STATE(4369), + [sym_binary_expression] = STATE(4369), + [sym_update_expression] = STATE(4369), + [sym_cast_expression] = STATE(4369), + [sym_type_descriptor] = STATE(5968), + [sym_sizeof_expression] = STATE(4369), + [sym_offsetof_expression] = STATE(4369), + [sym_generic_expression] = STATE(4369), + [sym_subscript_expression] = STATE(3541), + [sym_call_expression] = STATE(3541), + [sym_gnu_asm_expression] = STATE(4369), + [sym_field_expression] = STATE(3541), + [sym_compound_literal_expression] = STATE(4369), + [sym_parenthesized_expression] = STATE(3541), + [sym_char_literal] = STATE(4131), + [sym_concatenated_string] = STATE(4131), + [sym_string_literal] = STATE(3542), + [sym_null] = STATE(4369), + [sym_placeholder_type_specifier] = STATE(3156), + [sym_decltype_auto] = STATE(3159), + [sym_decltype] = STATE(3027), + [sym_class_specifier] = STATE(3156), + [sym__class_name] = STATE(6872), + [sym_dependent_type] = STATE(3156), + [sym_template_type] = STATE(4771), + [sym_template_function] = STATE(4369), + [sym_raw_string_literal] = STATE(3542), + [sym_co_await_expression] = STATE(4369), + [sym_new_expression] = STATE(4369), + [sym_delete_expression] = STATE(4369), + [sym_requires_clause] = STATE(4369), + [sym_requires_expression] = STATE(4369), + [sym_lambda_expression] = STATE(4369), + [sym_lambda_capture_specifier] = STATE(5208), + [sym_fold_expression] = STATE(4369), + [sym_parameter_pack_expansion] = STATE(4369), + [sym_type_parameter_pack_expansion] = STATE(6466), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5256), + [sym_qualified_identifier] = STATE(3541), + [sym_qualified_type_identifier] = STATE(4890), + [sym_user_defined_literal] = STATE(4369), + [aux_sym_type_definition_repeat1] = STATE(3794), + [aux_sym_sized_type_specifier_repeat1] = STATE(2483), + [sym_identifier] = ACTIONS(2616), + [anon_sym_LPAREN2] = ACTIONS(2618), + [anon_sym_BANG] = ACTIONS(2620), + [anon_sym_TILDE] = ACTIONS(2620), + [anon_sym_DASH] = ACTIONS(2622), + [anon_sym_PLUS] = ACTIONS(2622), + [anon_sym_STAR] = ACTIONS(2624), + [anon_sym_AMP] = ACTIONS(2624), + [anon_sym_COLON_COLON] = ACTIONS(2626), + [anon_sym_LBRACK] = ACTIONS(1949), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(2628), + [anon_sym_unsigned] = ACTIONS(2628), + [anon_sym_long] = ACTIONS(2628), + [anon_sym_short] = ACTIONS(2628), + [sym_primitive_type] = ACTIONS(2630), + [anon_sym_enum] = ACTIONS(2632), + [anon_sym_class] = ACTIONS(2634), + [anon_sym_struct] = ACTIONS(2636), + [anon_sym_union] = ACTIONS(2638), + [anon_sym_not] = ACTIONS(2622), + [anon_sym_compl] = ACTIONS(2622), + [anon_sym_DASH_DASH] = ACTIONS(2640), + [anon_sym_PLUS_PLUS] = ACTIONS(2640), + [anon_sym_sizeof] = ACTIONS(2642), + [anon_sym_offsetof] = ACTIONS(2644), + [anon_sym__Generic] = ACTIONS(2646), + [anon_sym_asm] = ACTIONS(2648), + [anon_sym___asm__] = ACTIONS(2648), + [sym_number_literal] = ACTIONS(2650), + [anon_sym_L_SQUOTE] = ACTIONS(2652), + [anon_sym_u_SQUOTE] = ACTIONS(2652), + [anon_sym_U_SQUOTE] = ACTIONS(2652), + [anon_sym_u8_SQUOTE] = ACTIONS(2652), + [anon_sym_SQUOTE] = ACTIONS(2652), + [anon_sym_L_DQUOTE] = ACTIONS(2654), + [anon_sym_u_DQUOTE] = ACTIONS(2654), + [anon_sym_U_DQUOTE] = ACTIONS(2654), + [anon_sym_u8_DQUOTE] = ACTIONS(2654), + [anon_sym_DQUOTE] = ACTIONS(2654), + [sym_true] = ACTIONS(2656), + [sym_false] = ACTIONS(2656), + [anon_sym_NULL] = ACTIONS(2658), + [anon_sym_nullptr] = ACTIONS(2658), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2660), + [anon_sym_decltype] = ACTIONS(2662), + [anon_sym_typename] = ACTIONS(2664), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_GT2] = ACTIONS(2666), + [anon_sym_delete] = ACTIONS(2668), + [anon_sym_R_DQUOTE] = ACTIONS(2670), + [anon_sym_LR_DQUOTE] = ACTIONS(2670), + [anon_sym_uR_DQUOTE] = ACTIONS(2670), + [anon_sym_UR_DQUOTE] = ACTIONS(2670), + [anon_sym_u8R_DQUOTE] = ACTIONS(2670), + [anon_sym_co_await] = ACTIONS(2672), + [anon_sym_new] = ACTIONS(2674), + [anon_sym_requires] = ACTIONS(2676), + [sym_this] = ACTIONS(2656), }, [350] = { - [sym_identifier] = ACTIONS(2462), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2464), - [anon_sym_AMP] = ACTIONS(2462), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_explicit] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_operator] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_namespace] = ACTIONS(2462), - [anon_sym_using] = ACTIONS(2462), - [anon_sym_static_assert] = ACTIONS(2462), - [anon_sym_concept] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_type_qualifier] = STATE(3794), + [sym__type_specifier] = STATE(4503), + [sym_sized_type_specifier] = STATE(3156), + [sym_enum_specifier] = STATE(3156), + [sym_struct_specifier] = STATE(3156), + [sym_union_specifier] = STATE(3156), + [sym__expression] = STATE(4072), + [sym__expression_not_binary] = STATE(4369), + [sym_conditional_expression] = STATE(4369), + [sym_assignment_expression] = STATE(4369), + [sym_pointer_expression] = STATE(3541), + [sym_unary_expression] = STATE(4369), + [sym_binary_expression] = STATE(4369), + [sym_update_expression] = STATE(4369), + [sym_cast_expression] = STATE(4369), + [sym_type_descriptor] = STATE(6108), + [sym_sizeof_expression] = STATE(4369), + [sym_offsetof_expression] = STATE(4369), + [sym_generic_expression] = STATE(4369), + [sym_subscript_expression] = STATE(3541), + [sym_call_expression] = STATE(3541), + [sym_gnu_asm_expression] = STATE(4369), + [sym_field_expression] = STATE(3541), + [sym_compound_literal_expression] = STATE(4369), + [sym_parenthesized_expression] = STATE(3541), + [sym_char_literal] = STATE(4131), + [sym_concatenated_string] = STATE(4131), + [sym_string_literal] = STATE(3542), + [sym_null] = STATE(4369), + [sym_placeholder_type_specifier] = STATE(3156), + [sym_decltype_auto] = STATE(3159), + [sym_decltype] = STATE(3027), + [sym_class_specifier] = STATE(3156), + [sym__class_name] = STATE(6872), + [sym_dependent_type] = STATE(3156), + [sym_template_type] = STATE(4771), + [sym_template_function] = STATE(4369), + [sym_raw_string_literal] = STATE(3542), + [sym_co_await_expression] = STATE(4369), + [sym_new_expression] = STATE(4369), + [sym_delete_expression] = STATE(4369), + [sym_requires_clause] = STATE(4369), + [sym_requires_expression] = STATE(4369), + [sym_lambda_expression] = STATE(4369), + [sym_lambda_capture_specifier] = STATE(5208), + [sym_fold_expression] = STATE(4369), + [sym_parameter_pack_expansion] = STATE(4369), + [sym_type_parameter_pack_expansion] = STATE(6266), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5256), + [sym_qualified_identifier] = STATE(3541), + [sym_qualified_type_identifier] = STATE(4890), + [sym_user_defined_literal] = STATE(4369), + [aux_sym_type_definition_repeat1] = STATE(3794), + [aux_sym_sized_type_specifier_repeat1] = STATE(2483), + [sym_identifier] = ACTIONS(2616), + [anon_sym_LPAREN2] = ACTIONS(2618), + [anon_sym_BANG] = ACTIONS(2620), + [anon_sym_TILDE] = ACTIONS(2620), + [anon_sym_DASH] = ACTIONS(2622), + [anon_sym_PLUS] = ACTIONS(2622), + [anon_sym_STAR] = ACTIONS(2624), + [anon_sym_AMP] = ACTIONS(2624), + [anon_sym_COLON_COLON] = ACTIONS(2626), + [anon_sym_LBRACK] = ACTIONS(1949), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(2628), + [anon_sym_unsigned] = ACTIONS(2628), + [anon_sym_long] = ACTIONS(2628), + [anon_sym_short] = ACTIONS(2628), + [sym_primitive_type] = ACTIONS(2630), + [anon_sym_enum] = ACTIONS(2632), + [anon_sym_class] = ACTIONS(2634), + [anon_sym_struct] = ACTIONS(2636), + [anon_sym_union] = ACTIONS(2638), + [anon_sym_not] = ACTIONS(2622), + [anon_sym_compl] = ACTIONS(2622), + [anon_sym_DASH_DASH] = ACTIONS(2640), + [anon_sym_PLUS_PLUS] = ACTIONS(2640), + [anon_sym_sizeof] = ACTIONS(2642), + [anon_sym_offsetof] = ACTIONS(2644), + [anon_sym__Generic] = ACTIONS(2646), + [anon_sym_asm] = ACTIONS(2648), + [anon_sym___asm__] = ACTIONS(2648), + [sym_number_literal] = ACTIONS(2650), + [anon_sym_L_SQUOTE] = ACTIONS(2652), + [anon_sym_u_SQUOTE] = ACTIONS(2652), + [anon_sym_U_SQUOTE] = ACTIONS(2652), + [anon_sym_u8_SQUOTE] = ACTIONS(2652), + [anon_sym_SQUOTE] = ACTIONS(2652), + [anon_sym_L_DQUOTE] = ACTIONS(2654), + [anon_sym_u_DQUOTE] = ACTIONS(2654), + [anon_sym_U_DQUOTE] = ACTIONS(2654), + [anon_sym_u8_DQUOTE] = ACTIONS(2654), + [anon_sym_DQUOTE] = ACTIONS(2654), + [sym_true] = ACTIONS(2656), + [sym_false] = ACTIONS(2656), + [anon_sym_NULL] = ACTIONS(2658), + [anon_sym_nullptr] = ACTIONS(2658), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2660), + [anon_sym_decltype] = ACTIONS(2662), + [anon_sym_typename] = ACTIONS(2664), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_GT2] = ACTIONS(2678), + [anon_sym_delete] = ACTIONS(2668), + [anon_sym_R_DQUOTE] = ACTIONS(2670), + [anon_sym_LR_DQUOTE] = ACTIONS(2670), + [anon_sym_uR_DQUOTE] = ACTIONS(2670), + [anon_sym_UR_DQUOTE] = ACTIONS(2670), + [anon_sym_u8R_DQUOTE] = ACTIONS(2670), + [anon_sym_co_await] = ACTIONS(2672), + [anon_sym_new] = ACTIONS(2674), + [anon_sym_requires] = ACTIONS(2676), + [sym_this] = ACTIONS(2656), }, [351] = { - [sym_identifier] = ACTIONS(2462), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2464), - [anon_sym_AMP] = ACTIONS(2462), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_explicit] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_operator] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_namespace] = ACTIONS(2462), - [anon_sym_using] = ACTIONS(2462), - [anon_sym_static_assert] = ACTIONS(2462), - [anon_sym_concept] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_type_qualifier] = STATE(3794), + [sym__type_specifier] = STATE(4503), + [sym_sized_type_specifier] = STATE(3156), + [sym_enum_specifier] = STATE(3156), + [sym_struct_specifier] = STATE(3156), + [sym_union_specifier] = STATE(3156), + [sym__expression] = STATE(4107), + [sym__expression_not_binary] = STATE(4369), + [sym_conditional_expression] = STATE(4369), + [sym_assignment_expression] = STATE(4369), + [sym_pointer_expression] = STATE(3541), + [sym_unary_expression] = STATE(4369), + [sym_binary_expression] = STATE(4369), + [sym_update_expression] = STATE(4369), + [sym_cast_expression] = STATE(4369), + [sym_type_descriptor] = STATE(6039), + [sym_sizeof_expression] = STATE(4369), + [sym_offsetof_expression] = STATE(4369), + [sym_generic_expression] = STATE(4369), + [sym_subscript_expression] = STATE(3541), + [sym_call_expression] = STATE(3541), + [sym_gnu_asm_expression] = STATE(4369), + [sym_field_expression] = STATE(3541), + [sym_compound_literal_expression] = STATE(4369), + [sym_parenthesized_expression] = STATE(3541), + [sym_char_literal] = STATE(4131), + [sym_concatenated_string] = STATE(4131), + [sym_string_literal] = STATE(3542), + [sym_null] = STATE(4369), + [sym_placeholder_type_specifier] = STATE(3156), + [sym_decltype_auto] = STATE(3159), + [sym_decltype] = STATE(3027), + [sym_class_specifier] = STATE(3156), + [sym__class_name] = STATE(6872), + [sym_dependent_type] = STATE(3156), + [sym_template_type] = STATE(4771), + [sym_template_function] = STATE(4369), + [sym_raw_string_literal] = STATE(3542), + [sym_co_await_expression] = STATE(4369), + [sym_new_expression] = STATE(4369), + [sym_delete_expression] = STATE(4369), + [sym_requires_clause] = STATE(4369), + [sym_requires_expression] = STATE(4369), + [sym_lambda_expression] = STATE(4369), + [sym_lambda_capture_specifier] = STATE(5208), + [sym_fold_expression] = STATE(4369), + [sym_parameter_pack_expansion] = STATE(4369), + [sym_type_parameter_pack_expansion] = STATE(6355), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5256), + [sym_qualified_identifier] = STATE(3541), + [sym_qualified_type_identifier] = STATE(4890), + [sym_user_defined_literal] = STATE(4369), + [aux_sym_type_definition_repeat1] = STATE(3794), + [aux_sym_sized_type_specifier_repeat1] = STATE(2483), + [sym_identifier] = ACTIONS(2616), + [anon_sym_LPAREN2] = ACTIONS(2618), + [anon_sym_BANG] = ACTIONS(2620), + [anon_sym_TILDE] = ACTIONS(2620), + [anon_sym_DASH] = ACTIONS(2622), + [anon_sym_PLUS] = ACTIONS(2622), + [anon_sym_STAR] = ACTIONS(2624), + [anon_sym_AMP] = ACTIONS(2624), + [anon_sym_COLON_COLON] = ACTIONS(2626), + [anon_sym_LBRACK] = ACTIONS(1949), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(2628), + [anon_sym_unsigned] = ACTIONS(2628), + [anon_sym_long] = ACTIONS(2628), + [anon_sym_short] = ACTIONS(2628), + [sym_primitive_type] = ACTIONS(2630), + [anon_sym_enum] = ACTIONS(2632), + [anon_sym_class] = ACTIONS(2634), + [anon_sym_struct] = ACTIONS(2636), + [anon_sym_union] = ACTIONS(2638), + [anon_sym_not] = ACTIONS(2622), + [anon_sym_compl] = ACTIONS(2622), + [anon_sym_DASH_DASH] = ACTIONS(2640), + [anon_sym_PLUS_PLUS] = ACTIONS(2640), + [anon_sym_sizeof] = ACTIONS(2642), + [anon_sym_offsetof] = ACTIONS(2644), + [anon_sym__Generic] = ACTIONS(2646), + [anon_sym_asm] = ACTIONS(2648), + [anon_sym___asm__] = ACTIONS(2648), + [sym_number_literal] = ACTIONS(2650), + [anon_sym_L_SQUOTE] = ACTIONS(2652), + [anon_sym_u_SQUOTE] = ACTIONS(2652), + [anon_sym_U_SQUOTE] = ACTIONS(2652), + [anon_sym_u8_SQUOTE] = ACTIONS(2652), + [anon_sym_SQUOTE] = ACTIONS(2652), + [anon_sym_L_DQUOTE] = ACTIONS(2654), + [anon_sym_u_DQUOTE] = ACTIONS(2654), + [anon_sym_U_DQUOTE] = ACTIONS(2654), + [anon_sym_u8_DQUOTE] = ACTIONS(2654), + [anon_sym_DQUOTE] = ACTIONS(2654), + [sym_true] = ACTIONS(2656), + [sym_false] = ACTIONS(2656), + [anon_sym_NULL] = ACTIONS(2658), + [anon_sym_nullptr] = ACTIONS(2658), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2660), + [anon_sym_decltype] = ACTIONS(2662), + [anon_sym_typename] = ACTIONS(2664), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_GT2] = ACTIONS(2680), + [anon_sym_delete] = ACTIONS(2668), + [anon_sym_R_DQUOTE] = ACTIONS(2670), + [anon_sym_LR_DQUOTE] = ACTIONS(2670), + [anon_sym_uR_DQUOTE] = ACTIONS(2670), + [anon_sym_UR_DQUOTE] = ACTIONS(2670), + [anon_sym_u8R_DQUOTE] = ACTIONS(2670), + [anon_sym_co_await] = ACTIONS(2672), + [anon_sym_new] = ACTIONS(2674), + [anon_sym_requires] = ACTIONS(2676), + [sym_this] = ACTIONS(2656), }, [352] = { - [sym_identifier] = ACTIONS(2470), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2472), - [anon_sym_AMP] = ACTIONS(2470), - [anon_sym_SEMI] = ACTIONS(2472), - [anon_sym_typedef] = ACTIONS(2470), - [anon_sym_extern] = ACTIONS(2470), - [anon_sym___attribute__] = ACTIONS(2470), - [anon_sym_COLON_COLON] = ACTIONS(2472), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2472), - [anon_sym___declspec] = ACTIONS(2470), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2470), - [anon_sym_static] = ACTIONS(2470), - [anon_sym_register] = ACTIONS(2470), - [anon_sym_inline] = ACTIONS(2470), - [anon_sym_thread_local] = ACTIONS(2470), - [anon_sym_const] = ACTIONS(2470), - [anon_sym_volatile] = ACTIONS(2470), - [anon_sym_restrict] = ACTIONS(2470), - [anon_sym__Atomic] = ACTIONS(2470), - [anon_sym_mutable] = ACTIONS(2470), - [anon_sym_constexpr] = ACTIONS(2470), - [anon_sym_constinit] = ACTIONS(2470), - [anon_sym_consteval] = ACTIONS(2470), - [anon_sym_signed] = ACTIONS(2470), - [anon_sym_unsigned] = ACTIONS(2470), - [anon_sym_long] = ACTIONS(2470), - [anon_sym_short] = ACTIONS(2470), - [sym_primitive_type] = ACTIONS(2470), - [anon_sym_enum] = ACTIONS(2470), - [anon_sym_class] = 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_return] = ACTIONS(2470), - [anon_sym_break] = ACTIONS(2470), - [anon_sym_continue] = ACTIONS(2470), - [anon_sym_goto] = ACTIONS(2470), - [anon_sym_not] = ACTIONS(2470), - [anon_sym_compl] = ACTIONS(2470), - [anon_sym_DASH_DASH] = ACTIONS(2472), - [anon_sym_PLUS_PLUS] = ACTIONS(2472), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2472), - [anon_sym_u_DQUOTE] = ACTIONS(2472), - [anon_sym_U_DQUOTE] = ACTIONS(2472), - [anon_sym_u8_DQUOTE] = ACTIONS(2472), - [anon_sym_DQUOTE] = ACTIONS(2472), - [sym_true] = ACTIONS(2470), - [sym_false] = ACTIONS(2470), - [sym_null] = ACTIONS(2470), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2470), - [anon_sym_decltype] = ACTIONS(2470), - [anon_sym_virtual] = ACTIONS(2470), - [anon_sym_explicit] = ACTIONS(2470), - [anon_sym_typename] = ACTIONS(2470), - [anon_sym_template] = ACTIONS(2470), - [anon_sym_operator] = ACTIONS(2470), - [anon_sym_try] = ACTIONS(2470), - [anon_sym_delete] = ACTIONS(2470), - [anon_sym_throw] = ACTIONS(2470), - [anon_sym_namespace] = ACTIONS(2470), - [anon_sym_using] = ACTIONS(2470), - [anon_sym_static_assert] = ACTIONS(2470), - [anon_sym_concept] = ACTIONS(2470), - [anon_sym_co_return] = ACTIONS(2470), - [anon_sym_co_yield] = ACTIONS(2470), - [anon_sym_R_DQUOTE] = ACTIONS(2472), - [anon_sym_LR_DQUOTE] = ACTIONS(2472), - [anon_sym_uR_DQUOTE] = ACTIONS(2472), - [anon_sym_UR_DQUOTE] = ACTIONS(2472), - [anon_sym_u8R_DQUOTE] = ACTIONS(2472), - [anon_sym_co_await] = ACTIONS(2470), - [anon_sym_new] = ACTIONS(2470), - [anon_sym_requires] = ACTIONS(2470), - [sym_this] = ACTIONS(2470), - [sym_nullptr] = ACTIONS(2470), + [sym_type_qualifier] = STATE(3794), + [sym__type_specifier] = STATE(4503), + [sym_sized_type_specifier] = STATE(3156), + [sym_enum_specifier] = STATE(3156), + [sym_struct_specifier] = STATE(3156), + [sym_union_specifier] = STATE(3156), + [sym__expression] = STATE(4071), + [sym__expression_not_binary] = STATE(4369), + [sym_conditional_expression] = STATE(4369), + [sym_assignment_expression] = STATE(4369), + [sym_pointer_expression] = STATE(3541), + [sym_unary_expression] = STATE(4369), + [sym_binary_expression] = STATE(4369), + [sym_update_expression] = STATE(4369), + [sym_cast_expression] = STATE(4369), + [sym_type_descriptor] = STATE(6073), + [sym_sizeof_expression] = STATE(4369), + [sym_offsetof_expression] = STATE(4369), + [sym_generic_expression] = STATE(4369), + [sym_subscript_expression] = STATE(3541), + [sym_call_expression] = STATE(3541), + [sym_gnu_asm_expression] = STATE(4369), + [sym_field_expression] = STATE(3541), + [sym_compound_literal_expression] = STATE(4369), + [sym_parenthesized_expression] = STATE(3541), + [sym_char_literal] = STATE(4131), + [sym_concatenated_string] = STATE(4131), + [sym_string_literal] = STATE(3542), + [sym_null] = STATE(4369), + [sym_placeholder_type_specifier] = STATE(3156), + [sym_decltype_auto] = STATE(3159), + [sym_decltype] = STATE(3027), + [sym_class_specifier] = STATE(3156), + [sym__class_name] = STATE(6872), + [sym_dependent_type] = STATE(3156), + [sym_template_type] = STATE(4771), + [sym_template_function] = STATE(4369), + [sym_raw_string_literal] = STATE(3542), + [sym_co_await_expression] = STATE(4369), + [sym_new_expression] = STATE(4369), + [sym_delete_expression] = STATE(4369), + [sym_requires_clause] = STATE(4369), + [sym_requires_expression] = STATE(4369), + [sym_lambda_expression] = STATE(4369), + [sym_lambda_capture_specifier] = STATE(5208), + [sym_fold_expression] = STATE(4369), + [sym_parameter_pack_expansion] = STATE(4369), + [sym_type_parameter_pack_expansion] = STATE(6526), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5256), + [sym_qualified_identifier] = STATE(3541), + [sym_qualified_type_identifier] = STATE(4890), + [sym_user_defined_literal] = STATE(4369), + [aux_sym_type_definition_repeat1] = STATE(3794), + [aux_sym_sized_type_specifier_repeat1] = STATE(2483), + [sym_identifier] = ACTIONS(2616), + [anon_sym_LPAREN2] = ACTIONS(2618), + [anon_sym_BANG] = ACTIONS(2620), + [anon_sym_TILDE] = ACTIONS(2620), + [anon_sym_DASH] = ACTIONS(2622), + [anon_sym_PLUS] = ACTIONS(2622), + [anon_sym_STAR] = ACTIONS(2624), + [anon_sym_AMP] = ACTIONS(2624), + [anon_sym_COLON_COLON] = ACTIONS(2626), + [anon_sym_LBRACK] = ACTIONS(1949), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(2628), + [anon_sym_unsigned] = ACTIONS(2628), + [anon_sym_long] = ACTIONS(2628), + [anon_sym_short] = ACTIONS(2628), + [sym_primitive_type] = ACTIONS(2630), + [anon_sym_enum] = ACTIONS(2632), + [anon_sym_class] = ACTIONS(2634), + [anon_sym_struct] = ACTIONS(2636), + [anon_sym_union] = ACTIONS(2638), + [anon_sym_not] = ACTIONS(2622), + [anon_sym_compl] = ACTIONS(2622), + [anon_sym_DASH_DASH] = ACTIONS(2640), + [anon_sym_PLUS_PLUS] = ACTIONS(2640), + [anon_sym_sizeof] = ACTIONS(2642), + [anon_sym_offsetof] = ACTIONS(2644), + [anon_sym__Generic] = ACTIONS(2646), + [anon_sym_asm] = ACTIONS(2648), + [anon_sym___asm__] = ACTIONS(2648), + [sym_number_literal] = ACTIONS(2650), + [anon_sym_L_SQUOTE] = ACTIONS(2652), + [anon_sym_u_SQUOTE] = ACTIONS(2652), + [anon_sym_U_SQUOTE] = ACTIONS(2652), + [anon_sym_u8_SQUOTE] = ACTIONS(2652), + [anon_sym_SQUOTE] = ACTIONS(2652), + [anon_sym_L_DQUOTE] = ACTIONS(2654), + [anon_sym_u_DQUOTE] = ACTIONS(2654), + [anon_sym_U_DQUOTE] = ACTIONS(2654), + [anon_sym_u8_DQUOTE] = ACTIONS(2654), + [anon_sym_DQUOTE] = ACTIONS(2654), + [sym_true] = ACTIONS(2656), + [sym_false] = ACTIONS(2656), + [anon_sym_NULL] = ACTIONS(2658), + [anon_sym_nullptr] = ACTIONS(2658), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2660), + [anon_sym_decltype] = ACTIONS(2662), + [anon_sym_typename] = ACTIONS(2664), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_GT2] = ACTIONS(2682), + [anon_sym_delete] = ACTIONS(2668), + [anon_sym_R_DQUOTE] = ACTIONS(2670), + [anon_sym_LR_DQUOTE] = ACTIONS(2670), + [anon_sym_uR_DQUOTE] = ACTIONS(2670), + [anon_sym_UR_DQUOTE] = ACTIONS(2670), + [anon_sym_u8R_DQUOTE] = ACTIONS(2670), + [anon_sym_co_await] = ACTIONS(2672), + [anon_sym_new] = ACTIONS(2674), + [anon_sym_requires] = ACTIONS(2676), + [sym_this] = ACTIONS(2656), }, [353] = { - [sym_identifier] = ACTIONS(2462), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2464), - [anon_sym_AMP] = ACTIONS(2462), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_explicit] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_operator] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_namespace] = ACTIONS(2462), - [anon_sym_using] = ACTIONS(2462), - [anon_sym_static_assert] = ACTIONS(2462), - [anon_sym_concept] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_catch_clause] = STATE(353), + [aux_sym_constructor_try_statement_repeat1] = STATE(353), + [sym_identifier] = ACTIONS(2684), + [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2686), + [anon_sym_AMP] = ACTIONS(2684), + [anon_sym_SEMI] = ACTIONS(2686), + [anon_sym_typedef] = ACTIONS(2684), + [anon_sym_extern] = ACTIONS(2684), + [anon_sym___attribute__] = ACTIONS(2684), + [anon_sym_COLON_COLON] = ACTIONS(2686), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2686), + [anon_sym___declspec] = ACTIONS(2684), + [anon_sym___based] = 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_LBRACK] = ACTIONS(2684), + [anon_sym_static] = ACTIONS(2684), + [anon_sym_register] = ACTIONS(2684), + [anon_sym_inline] = ACTIONS(2684), + [anon_sym_thread_local] = 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_noreturn] = ACTIONS(2684), + [anon_sym_mutable] = ACTIONS(2684), + [anon_sym_constinit] = ACTIONS(2684), + [anon_sym_consteval] = ACTIONS(2684), + [anon_sym_signed] = ACTIONS(2684), + [anon_sym_unsigned] = ACTIONS(2684), + [anon_sym_long] = ACTIONS(2684), + [anon_sym_short] = ACTIONS(2684), + [sym_primitive_type] = ACTIONS(2684), + [anon_sym_enum] = ACTIONS(2684), + [anon_sym_class] = ACTIONS(2684), + [anon_sym_struct] = ACTIONS(2684), + [anon_sym_union] = ACTIONS(2684), + [anon_sym_if] = ACTIONS(2684), + [anon_sym_else] = 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_return] = ACTIONS(2684), + [anon_sym_break] = ACTIONS(2684), + [anon_sym_continue] = ACTIONS(2684), + [anon_sym_goto] = ACTIONS(2684), + [anon_sym_not] = ACTIONS(2684), + [anon_sym_compl] = ACTIONS(2684), + [anon_sym_DASH_DASH] = ACTIONS(2686), + [anon_sym_PLUS_PLUS] = ACTIONS(2686), + [anon_sym_sizeof] = ACTIONS(2684), + [anon_sym_offsetof] = ACTIONS(2684), + [anon_sym__Generic] = 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_L_DQUOTE] = ACTIONS(2686), + [anon_sym_u_DQUOTE] = ACTIONS(2686), + [anon_sym_U_DQUOTE] = ACTIONS(2686), + [anon_sym_u8_DQUOTE] = ACTIONS(2686), + [anon_sym_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), + [sym_auto] = ACTIONS(2684), + [anon_sym_decltype] = ACTIONS(2684), + [anon_sym_virtual] = ACTIONS(2684), + [anon_sym_explicit] = ACTIONS(2684), + [anon_sym_typename] = ACTIONS(2684), + [anon_sym_template] = ACTIONS(2684), + [anon_sym_operator] = ACTIONS(2684), + [anon_sym_try] = ACTIONS(2684), + [anon_sym_delete] = ACTIONS(2684), + [anon_sym_throw] = ACTIONS(2684), + [anon_sym_namespace] = ACTIONS(2684), + [anon_sym_using] = ACTIONS(2684), + [anon_sym_static_assert] = ACTIONS(2684), + [anon_sym_concept] = ACTIONS(2684), + [anon_sym_co_return] = ACTIONS(2684), + [anon_sym_co_yield] = ACTIONS(2684), + [anon_sym_catch] = ACTIONS(2688), + [anon_sym_R_DQUOTE] = ACTIONS(2686), + [anon_sym_LR_DQUOTE] = ACTIONS(2686), + [anon_sym_uR_DQUOTE] = ACTIONS(2686), + [anon_sym_UR_DQUOTE] = ACTIONS(2686), + [anon_sym_u8R_DQUOTE] = ACTIONS(2686), + [anon_sym_co_await] = ACTIONS(2684), + [anon_sym_new] = ACTIONS(2684), + [anon_sym_requires] = ACTIONS(2684), + [sym_this] = ACTIONS(2684), }, [354] = { - [sym_identifier] = ACTIONS(2462), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2464), - [anon_sym_AMP] = ACTIONS(2462), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_explicit] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_operator] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_namespace] = ACTIONS(2462), - [anon_sym_using] = ACTIONS(2462), - [anon_sym_static_assert] = ACTIONS(2462), - [anon_sym_concept] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_type_qualifier] = STATE(3794), + [sym__type_specifier] = STATE(4503), + [sym_sized_type_specifier] = STATE(3156), + [sym_enum_specifier] = STATE(3156), + [sym_struct_specifier] = STATE(3156), + [sym_union_specifier] = STATE(3156), + [sym__expression] = STATE(4122), + [sym__expression_not_binary] = STATE(4369), + [sym_conditional_expression] = STATE(4369), + [sym_assignment_expression] = STATE(4369), + [sym_pointer_expression] = STATE(3541), + [sym_unary_expression] = STATE(4369), + [sym_binary_expression] = STATE(4369), + [sym_update_expression] = STATE(4369), + [sym_cast_expression] = STATE(4369), + [sym_type_descriptor] = STATE(6122), + [sym_sizeof_expression] = STATE(4369), + [sym_offsetof_expression] = STATE(4369), + [sym_generic_expression] = STATE(4369), + [sym_subscript_expression] = STATE(3541), + [sym_call_expression] = STATE(3541), + [sym_gnu_asm_expression] = STATE(4369), + [sym_field_expression] = STATE(3541), + [sym_compound_literal_expression] = STATE(4369), + [sym_parenthesized_expression] = STATE(3541), + [sym_char_literal] = STATE(4131), + [sym_concatenated_string] = STATE(4131), + [sym_string_literal] = STATE(3542), + [sym_null] = STATE(4369), + [sym_placeholder_type_specifier] = STATE(3156), + [sym_decltype_auto] = STATE(3159), + [sym_decltype] = STATE(3027), + [sym_class_specifier] = STATE(3156), + [sym__class_name] = STATE(6872), + [sym_dependent_type] = STATE(3156), + [sym_template_type] = STATE(4771), + [sym_template_function] = STATE(4369), + [sym_raw_string_literal] = STATE(3542), + [sym_co_await_expression] = STATE(4369), + [sym_new_expression] = STATE(4369), + [sym_delete_expression] = STATE(4369), + [sym_requires_clause] = STATE(4369), + [sym_requires_expression] = STATE(4369), + [sym_lambda_expression] = STATE(4369), + [sym_lambda_capture_specifier] = STATE(5208), + [sym_fold_expression] = STATE(4369), + [sym_parameter_pack_expansion] = STATE(4369), + [sym_type_parameter_pack_expansion] = STATE(6242), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5256), + [sym_qualified_identifier] = STATE(3541), + [sym_qualified_type_identifier] = STATE(4890), + [sym_user_defined_literal] = STATE(4369), + [aux_sym_type_definition_repeat1] = STATE(3794), + [aux_sym_sized_type_specifier_repeat1] = STATE(2483), + [sym_identifier] = ACTIONS(2616), + [anon_sym_LPAREN2] = ACTIONS(2618), + [anon_sym_BANG] = ACTIONS(2620), + [anon_sym_TILDE] = ACTIONS(2620), + [anon_sym_DASH] = ACTIONS(2622), + [anon_sym_PLUS] = ACTIONS(2622), + [anon_sym_STAR] = ACTIONS(2624), + [anon_sym_AMP] = ACTIONS(2624), + [anon_sym_COLON_COLON] = ACTIONS(2626), + [anon_sym_LBRACK] = ACTIONS(1949), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(2628), + [anon_sym_unsigned] = ACTIONS(2628), + [anon_sym_long] = ACTIONS(2628), + [anon_sym_short] = ACTIONS(2628), + [sym_primitive_type] = ACTIONS(2630), + [anon_sym_enum] = ACTIONS(2632), + [anon_sym_class] = ACTIONS(2634), + [anon_sym_struct] = ACTIONS(2636), + [anon_sym_union] = ACTIONS(2638), + [anon_sym_not] = ACTIONS(2622), + [anon_sym_compl] = ACTIONS(2622), + [anon_sym_DASH_DASH] = ACTIONS(2640), + [anon_sym_PLUS_PLUS] = ACTIONS(2640), + [anon_sym_sizeof] = ACTIONS(2642), + [anon_sym_offsetof] = ACTIONS(2644), + [anon_sym__Generic] = ACTIONS(2646), + [anon_sym_asm] = ACTIONS(2648), + [anon_sym___asm__] = ACTIONS(2648), + [sym_number_literal] = ACTIONS(2650), + [anon_sym_L_SQUOTE] = ACTIONS(2652), + [anon_sym_u_SQUOTE] = ACTIONS(2652), + [anon_sym_U_SQUOTE] = ACTIONS(2652), + [anon_sym_u8_SQUOTE] = ACTIONS(2652), + [anon_sym_SQUOTE] = ACTIONS(2652), + [anon_sym_L_DQUOTE] = ACTIONS(2654), + [anon_sym_u_DQUOTE] = ACTIONS(2654), + [anon_sym_U_DQUOTE] = ACTIONS(2654), + [anon_sym_u8_DQUOTE] = ACTIONS(2654), + [anon_sym_DQUOTE] = ACTIONS(2654), + [sym_true] = ACTIONS(2656), + [sym_false] = ACTIONS(2656), + [anon_sym_NULL] = ACTIONS(2658), + [anon_sym_nullptr] = ACTIONS(2658), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2660), + [anon_sym_decltype] = ACTIONS(2662), + [anon_sym_typename] = ACTIONS(2664), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_GT2] = ACTIONS(2691), + [anon_sym_delete] = ACTIONS(2668), + [anon_sym_R_DQUOTE] = ACTIONS(2670), + [anon_sym_LR_DQUOTE] = ACTIONS(2670), + [anon_sym_uR_DQUOTE] = ACTIONS(2670), + [anon_sym_UR_DQUOTE] = ACTIONS(2670), + [anon_sym_u8R_DQUOTE] = ACTIONS(2670), + [anon_sym_co_await] = ACTIONS(2672), + [anon_sym_new] = ACTIONS(2674), + [anon_sym_requires] = ACTIONS(2676), + [sym_this] = ACTIONS(2656), }, [355] = { - [sym_identifier] = ACTIONS(2462), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2464), - [anon_sym_AMP] = ACTIONS(2462), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_explicit] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_operator] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_namespace] = ACTIONS(2462), - [anon_sym_using] = ACTIONS(2462), - [anon_sym_static_assert] = ACTIONS(2462), - [anon_sym_concept] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_type_qualifier] = STATE(3794), + [sym__type_specifier] = STATE(4503), + [sym_sized_type_specifier] = STATE(3156), + [sym_enum_specifier] = STATE(3156), + [sym_struct_specifier] = STATE(3156), + [sym_union_specifier] = STATE(3156), + [sym__expression] = STATE(4083), + [sym__expression_not_binary] = STATE(4369), + [sym_conditional_expression] = STATE(4369), + [sym_assignment_expression] = STATE(4369), + [sym_pointer_expression] = STATE(3541), + [sym_unary_expression] = STATE(4369), + [sym_binary_expression] = STATE(4369), + [sym_update_expression] = STATE(4369), + [sym_cast_expression] = STATE(4369), + [sym_type_descriptor] = STATE(6094), + [sym_sizeof_expression] = STATE(4369), + [sym_offsetof_expression] = STATE(4369), + [sym_generic_expression] = STATE(4369), + [sym_subscript_expression] = STATE(3541), + [sym_call_expression] = STATE(3541), + [sym_gnu_asm_expression] = STATE(4369), + [sym_field_expression] = STATE(3541), + [sym_compound_literal_expression] = STATE(4369), + [sym_parenthesized_expression] = STATE(3541), + [sym_char_literal] = STATE(4131), + [sym_concatenated_string] = STATE(4131), + [sym_string_literal] = STATE(3542), + [sym_null] = STATE(4369), + [sym_placeholder_type_specifier] = STATE(3156), + [sym_decltype_auto] = STATE(3159), + [sym_decltype] = STATE(3027), + [sym_class_specifier] = STATE(3156), + [sym__class_name] = STATE(6872), + [sym_dependent_type] = STATE(3156), + [sym_template_type] = STATE(4771), + [sym_template_function] = STATE(4369), + [sym_raw_string_literal] = STATE(3542), + [sym_co_await_expression] = STATE(4369), + [sym_new_expression] = STATE(4369), + [sym_delete_expression] = STATE(4369), + [sym_requires_clause] = STATE(4369), + [sym_requires_expression] = STATE(4369), + [sym_lambda_expression] = STATE(4369), + [sym_lambda_capture_specifier] = STATE(5208), + [sym_fold_expression] = STATE(4369), + [sym_parameter_pack_expansion] = STATE(4369), + [sym_type_parameter_pack_expansion] = STATE(6550), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5256), + [sym_qualified_identifier] = STATE(3541), + [sym_qualified_type_identifier] = STATE(4890), + [sym_user_defined_literal] = STATE(4369), + [aux_sym_type_definition_repeat1] = STATE(3794), + [aux_sym_sized_type_specifier_repeat1] = STATE(2483), + [sym_identifier] = ACTIONS(2616), + [anon_sym_LPAREN2] = ACTIONS(2618), + [anon_sym_BANG] = ACTIONS(2620), + [anon_sym_TILDE] = ACTIONS(2620), + [anon_sym_DASH] = ACTIONS(2622), + [anon_sym_PLUS] = ACTIONS(2622), + [anon_sym_STAR] = ACTIONS(2624), + [anon_sym_AMP] = ACTIONS(2624), + [anon_sym_COLON_COLON] = ACTIONS(2626), + [anon_sym_LBRACK] = ACTIONS(1949), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(2628), + [anon_sym_unsigned] = ACTIONS(2628), + [anon_sym_long] = ACTIONS(2628), + [anon_sym_short] = ACTIONS(2628), + [sym_primitive_type] = ACTIONS(2630), + [anon_sym_enum] = ACTIONS(2632), + [anon_sym_class] = ACTIONS(2634), + [anon_sym_struct] = ACTIONS(2636), + [anon_sym_union] = ACTIONS(2638), + [anon_sym_not] = ACTIONS(2622), + [anon_sym_compl] = ACTIONS(2622), + [anon_sym_DASH_DASH] = ACTIONS(2640), + [anon_sym_PLUS_PLUS] = ACTIONS(2640), + [anon_sym_sizeof] = ACTIONS(2642), + [anon_sym_offsetof] = ACTIONS(2644), + [anon_sym__Generic] = ACTIONS(2646), + [anon_sym_asm] = ACTIONS(2648), + [anon_sym___asm__] = ACTIONS(2648), + [sym_number_literal] = ACTIONS(2650), + [anon_sym_L_SQUOTE] = ACTIONS(2652), + [anon_sym_u_SQUOTE] = ACTIONS(2652), + [anon_sym_U_SQUOTE] = ACTIONS(2652), + [anon_sym_u8_SQUOTE] = ACTIONS(2652), + [anon_sym_SQUOTE] = ACTIONS(2652), + [anon_sym_L_DQUOTE] = ACTIONS(2654), + [anon_sym_u_DQUOTE] = ACTIONS(2654), + [anon_sym_U_DQUOTE] = ACTIONS(2654), + [anon_sym_u8_DQUOTE] = ACTIONS(2654), + [anon_sym_DQUOTE] = ACTIONS(2654), + [sym_true] = ACTIONS(2656), + [sym_false] = ACTIONS(2656), + [anon_sym_NULL] = ACTIONS(2658), + [anon_sym_nullptr] = ACTIONS(2658), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2660), + [anon_sym_decltype] = ACTIONS(2662), + [anon_sym_typename] = ACTIONS(2664), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_GT2] = ACTIONS(2693), + [anon_sym_delete] = ACTIONS(2668), + [anon_sym_R_DQUOTE] = ACTIONS(2670), + [anon_sym_LR_DQUOTE] = ACTIONS(2670), + [anon_sym_uR_DQUOTE] = ACTIONS(2670), + [anon_sym_UR_DQUOTE] = ACTIONS(2670), + [anon_sym_u8R_DQUOTE] = ACTIONS(2670), + [anon_sym_co_await] = ACTIONS(2672), + [anon_sym_new] = ACTIONS(2674), + [anon_sym_requires] = ACTIONS(2676), + [sym_this] = ACTIONS(2656), }, [356] = { - [sym_identifier] = ACTIONS(2462), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2464), - [anon_sym_AMP] = ACTIONS(2462), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_explicit] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_operator] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_namespace] = ACTIONS(2462), - [anon_sym_using] = ACTIONS(2462), - [anon_sym_static_assert] = ACTIONS(2462), - [anon_sym_concept] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_type_qualifier] = STATE(3794), + [sym__type_specifier] = STATE(4503), + [sym_sized_type_specifier] = STATE(3156), + [sym_enum_specifier] = STATE(3156), + [sym_struct_specifier] = STATE(3156), + [sym_union_specifier] = STATE(3156), + [sym__expression] = STATE(4118), + [sym__expression_not_binary] = STATE(4369), + [sym_conditional_expression] = STATE(4369), + [sym_assignment_expression] = STATE(4369), + [sym_pointer_expression] = STATE(3541), + [sym_unary_expression] = STATE(4369), + [sym_binary_expression] = STATE(4369), + [sym_update_expression] = STATE(4369), + [sym_cast_expression] = STATE(4369), + [sym_type_descriptor] = STATE(6153), + [sym_sizeof_expression] = STATE(4369), + [sym_offsetof_expression] = STATE(4369), + [sym_generic_expression] = STATE(4369), + [sym_subscript_expression] = STATE(3541), + [sym_call_expression] = STATE(3541), + [sym_gnu_asm_expression] = STATE(4369), + [sym_field_expression] = STATE(3541), + [sym_compound_literal_expression] = STATE(4369), + [sym_parenthesized_expression] = STATE(3541), + [sym_char_literal] = STATE(4131), + [sym_concatenated_string] = STATE(4131), + [sym_string_literal] = STATE(3542), + [sym_null] = STATE(4369), + [sym_placeholder_type_specifier] = STATE(3156), + [sym_decltype_auto] = STATE(3159), + [sym_decltype] = STATE(3027), + [sym_class_specifier] = STATE(3156), + [sym__class_name] = STATE(6872), + [sym_dependent_type] = STATE(3156), + [sym_template_type] = STATE(4771), + [sym_template_function] = STATE(4369), + [sym_raw_string_literal] = STATE(3542), + [sym_co_await_expression] = STATE(4369), + [sym_new_expression] = STATE(4369), + [sym_delete_expression] = STATE(4369), + [sym_requires_clause] = STATE(4369), + [sym_requires_expression] = STATE(4369), + [sym_lambda_expression] = STATE(4369), + [sym_lambda_capture_specifier] = STATE(5208), + [sym_fold_expression] = STATE(4369), + [sym_parameter_pack_expansion] = STATE(4369), + [sym_type_parameter_pack_expansion] = STATE(6211), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5256), + [sym_qualified_identifier] = STATE(3541), + [sym_qualified_type_identifier] = STATE(4890), + [sym_user_defined_literal] = STATE(4369), + [aux_sym_type_definition_repeat1] = STATE(3794), + [aux_sym_sized_type_specifier_repeat1] = STATE(2483), + [sym_identifier] = ACTIONS(2616), + [anon_sym_LPAREN2] = ACTIONS(2618), + [anon_sym_BANG] = ACTIONS(2620), + [anon_sym_TILDE] = ACTIONS(2620), + [anon_sym_DASH] = ACTIONS(2622), + [anon_sym_PLUS] = ACTIONS(2622), + [anon_sym_STAR] = ACTIONS(2624), + [anon_sym_AMP] = ACTIONS(2624), + [anon_sym_COLON_COLON] = ACTIONS(2626), + [anon_sym_LBRACK] = ACTIONS(1949), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(2628), + [anon_sym_unsigned] = ACTIONS(2628), + [anon_sym_long] = ACTIONS(2628), + [anon_sym_short] = ACTIONS(2628), + [sym_primitive_type] = ACTIONS(2630), + [anon_sym_enum] = ACTIONS(2632), + [anon_sym_class] = ACTIONS(2634), + [anon_sym_struct] = ACTIONS(2636), + [anon_sym_union] = ACTIONS(2638), + [anon_sym_not] = ACTIONS(2622), + [anon_sym_compl] = ACTIONS(2622), + [anon_sym_DASH_DASH] = ACTIONS(2640), + [anon_sym_PLUS_PLUS] = ACTIONS(2640), + [anon_sym_sizeof] = ACTIONS(2642), + [anon_sym_offsetof] = ACTIONS(2644), + [anon_sym__Generic] = ACTIONS(2646), + [anon_sym_asm] = ACTIONS(2648), + [anon_sym___asm__] = ACTIONS(2648), + [sym_number_literal] = ACTIONS(2650), + [anon_sym_L_SQUOTE] = ACTIONS(2652), + [anon_sym_u_SQUOTE] = ACTIONS(2652), + [anon_sym_U_SQUOTE] = ACTIONS(2652), + [anon_sym_u8_SQUOTE] = ACTIONS(2652), + [anon_sym_SQUOTE] = ACTIONS(2652), + [anon_sym_L_DQUOTE] = ACTIONS(2654), + [anon_sym_u_DQUOTE] = ACTIONS(2654), + [anon_sym_U_DQUOTE] = ACTIONS(2654), + [anon_sym_u8_DQUOTE] = ACTIONS(2654), + [anon_sym_DQUOTE] = ACTIONS(2654), + [sym_true] = ACTIONS(2656), + [sym_false] = ACTIONS(2656), + [anon_sym_NULL] = ACTIONS(2658), + [anon_sym_nullptr] = ACTIONS(2658), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2660), + [anon_sym_decltype] = ACTIONS(2662), + [anon_sym_typename] = ACTIONS(2664), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_GT2] = ACTIONS(2695), + [anon_sym_delete] = ACTIONS(2668), + [anon_sym_R_DQUOTE] = ACTIONS(2670), + [anon_sym_LR_DQUOTE] = ACTIONS(2670), + [anon_sym_uR_DQUOTE] = ACTIONS(2670), + [anon_sym_UR_DQUOTE] = ACTIONS(2670), + [anon_sym_u8R_DQUOTE] = ACTIONS(2670), + [anon_sym_co_await] = ACTIONS(2672), + [anon_sym_new] = ACTIONS(2674), + [anon_sym_requires] = ACTIONS(2676), + [sym_this] = ACTIONS(2656), }, [357] = { - [sym_identifier] = ACTIONS(2462), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2464), - [anon_sym_AMP] = ACTIONS(2462), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_explicit] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_operator] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_namespace] = ACTIONS(2462), - [anon_sym_using] = ACTIONS(2462), - [anon_sym_static_assert] = ACTIONS(2462), - [anon_sym_concept] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_type_qualifier] = STATE(3794), + [sym__type_specifier] = STATE(4503), + [sym_sized_type_specifier] = STATE(3156), + [sym_enum_specifier] = STATE(3156), + [sym_struct_specifier] = STATE(3156), + [sym_union_specifier] = STATE(3156), + [sym__expression] = STATE(4112), + [sym__expression_not_binary] = STATE(4369), + [sym_conditional_expression] = STATE(4369), + [sym_assignment_expression] = STATE(4369), + [sym_pointer_expression] = STATE(3541), + [sym_unary_expression] = STATE(4369), + [sym_binary_expression] = STATE(4369), + [sym_update_expression] = STATE(4369), + [sym_cast_expression] = STATE(4369), + [sym_type_descriptor] = STATE(5969), + [sym_sizeof_expression] = STATE(4369), + [sym_offsetof_expression] = STATE(4369), + [sym_generic_expression] = STATE(4369), + [sym_subscript_expression] = STATE(3541), + [sym_call_expression] = STATE(3541), + [sym_gnu_asm_expression] = STATE(4369), + [sym_field_expression] = STATE(3541), + [sym_compound_literal_expression] = STATE(4369), + [sym_parenthesized_expression] = STATE(3541), + [sym_char_literal] = STATE(4131), + [sym_concatenated_string] = STATE(4131), + [sym_string_literal] = STATE(3542), + [sym_null] = STATE(4369), + [sym_placeholder_type_specifier] = STATE(3156), + [sym_decltype_auto] = STATE(3159), + [sym_decltype] = STATE(3027), + [sym_class_specifier] = STATE(3156), + [sym__class_name] = STATE(6872), + [sym_dependent_type] = STATE(3156), + [sym_template_type] = STATE(4771), + [sym_template_function] = STATE(4369), + [sym_raw_string_literal] = STATE(3542), + [sym_co_await_expression] = STATE(4369), + [sym_new_expression] = STATE(4369), + [sym_delete_expression] = STATE(4369), + [sym_requires_clause] = STATE(4369), + [sym_requires_expression] = STATE(4369), + [sym_lambda_expression] = STATE(4369), + [sym_lambda_capture_specifier] = STATE(5208), + [sym_fold_expression] = STATE(4369), + [sym_parameter_pack_expansion] = STATE(4369), + [sym_type_parameter_pack_expansion] = STATE(6460), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5256), + [sym_qualified_identifier] = STATE(3541), + [sym_qualified_type_identifier] = STATE(4890), + [sym_user_defined_literal] = STATE(4369), + [aux_sym_type_definition_repeat1] = STATE(3794), + [aux_sym_sized_type_specifier_repeat1] = STATE(2483), + [sym_identifier] = ACTIONS(2616), + [anon_sym_LPAREN2] = ACTIONS(2618), + [anon_sym_BANG] = ACTIONS(2620), + [anon_sym_TILDE] = ACTIONS(2620), + [anon_sym_DASH] = ACTIONS(2622), + [anon_sym_PLUS] = ACTIONS(2622), + [anon_sym_STAR] = ACTIONS(2624), + [anon_sym_AMP] = ACTIONS(2624), + [anon_sym_COLON_COLON] = ACTIONS(2626), + [anon_sym_LBRACK] = ACTIONS(1949), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(2628), + [anon_sym_unsigned] = ACTIONS(2628), + [anon_sym_long] = ACTIONS(2628), + [anon_sym_short] = ACTIONS(2628), + [sym_primitive_type] = ACTIONS(2630), + [anon_sym_enum] = ACTIONS(2632), + [anon_sym_class] = ACTIONS(2634), + [anon_sym_struct] = ACTIONS(2636), + [anon_sym_union] = ACTIONS(2638), + [anon_sym_not] = ACTIONS(2622), + [anon_sym_compl] = ACTIONS(2622), + [anon_sym_DASH_DASH] = ACTIONS(2640), + [anon_sym_PLUS_PLUS] = ACTIONS(2640), + [anon_sym_sizeof] = ACTIONS(2642), + [anon_sym_offsetof] = ACTIONS(2644), + [anon_sym__Generic] = ACTIONS(2646), + [anon_sym_asm] = ACTIONS(2648), + [anon_sym___asm__] = ACTIONS(2648), + [sym_number_literal] = ACTIONS(2650), + [anon_sym_L_SQUOTE] = ACTIONS(2652), + [anon_sym_u_SQUOTE] = ACTIONS(2652), + [anon_sym_U_SQUOTE] = ACTIONS(2652), + [anon_sym_u8_SQUOTE] = ACTIONS(2652), + [anon_sym_SQUOTE] = ACTIONS(2652), + [anon_sym_L_DQUOTE] = ACTIONS(2654), + [anon_sym_u_DQUOTE] = ACTIONS(2654), + [anon_sym_U_DQUOTE] = ACTIONS(2654), + [anon_sym_u8_DQUOTE] = ACTIONS(2654), + [anon_sym_DQUOTE] = ACTIONS(2654), + [sym_true] = ACTIONS(2656), + [sym_false] = ACTIONS(2656), + [anon_sym_NULL] = ACTIONS(2658), + [anon_sym_nullptr] = ACTIONS(2658), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2660), + [anon_sym_decltype] = ACTIONS(2662), + [anon_sym_typename] = ACTIONS(2664), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_GT2] = ACTIONS(2697), + [anon_sym_delete] = ACTIONS(2668), + [anon_sym_R_DQUOTE] = ACTIONS(2670), + [anon_sym_LR_DQUOTE] = ACTIONS(2670), + [anon_sym_uR_DQUOTE] = ACTIONS(2670), + [anon_sym_UR_DQUOTE] = ACTIONS(2670), + [anon_sym_u8R_DQUOTE] = ACTIONS(2670), + [anon_sym_co_await] = ACTIONS(2672), + [anon_sym_new] = ACTIONS(2674), + [anon_sym_requires] = ACTIONS(2676), + [sym_this] = ACTIONS(2656), }, [358] = { - [sym_identifier] = ACTIONS(2462), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2464), - [anon_sym_AMP] = ACTIONS(2462), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_explicit] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_operator] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_namespace] = ACTIONS(2462), - [anon_sym_using] = ACTIONS(2462), - [anon_sym_static_assert] = ACTIONS(2462), - [anon_sym_concept] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_type_qualifier] = STATE(3794), + [sym__type_specifier] = STATE(4503), + [sym_sized_type_specifier] = STATE(3156), + [sym_enum_specifier] = STATE(3156), + [sym_struct_specifier] = STATE(3156), + [sym_union_specifier] = STATE(3156), + [sym__expression] = STATE(4096), + [sym__expression_not_binary] = STATE(4369), + [sym_conditional_expression] = STATE(4369), + [sym_assignment_expression] = STATE(4369), + [sym_pointer_expression] = STATE(3541), + [sym_unary_expression] = STATE(4369), + [sym_binary_expression] = STATE(4369), + [sym_update_expression] = STATE(4369), + [sym_cast_expression] = STATE(4369), + [sym_type_descriptor] = STATE(6124), + [sym_sizeof_expression] = STATE(4369), + [sym_offsetof_expression] = STATE(4369), + [sym_generic_expression] = STATE(4369), + [sym_subscript_expression] = STATE(3541), + [sym_call_expression] = STATE(3541), + [sym_gnu_asm_expression] = STATE(4369), + [sym_field_expression] = STATE(3541), + [sym_compound_literal_expression] = STATE(4369), + [sym_parenthesized_expression] = STATE(3541), + [sym_char_literal] = STATE(4131), + [sym_concatenated_string] = STATE(4131), + [sym_string_literal] = STATE(3542), + [sym_null] = STATE(4369), + [sym_placeholder_type_specifier] = STATE(3156), + [sym_decltype_auto] = STATE(3159), + [sym_decltype] = STATE(3027), + [sym_class_specifier] = STATE(3156), + [sym__class_name] = STATE(6872), + [sym_dependent_type] = STATE(3156), + [sym_template_type] = STATE(4771), + [sym_template_function] = STATE(4369), + [sym_raw_string_literal] = STATE(3542), + [sym_co_await_expression] = STATE(4369), + [sym_new_expression] = STATE(4369), + [sym_delete_expression] = STATE(4369), + [sym_requires_clause] = STATE(4369), + [sym_requires_expression] = STATE(4369), + [sym_lambda_expression] = STATE(4369), + [sym_lambda_capture_specifier] = STATE(5208), + [sym_fold_expression] = STATE(4369), + [sym_parameter_pack_expansion] = STATE(4369), + [sym_type_parameter_pack_expansion] = STATE(6238), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5256), + [sym_qualified_identifier] = STATE(3541), + [sym_qualified_type_identifier] = STATE(4890), + [sym_user_defined_literal] = STATE(4369), + [aux_sym_type_definition_repeat1] = STATE(3794), + [aux_sym_sized_type_specifier_repeat1] = STATE(2483), + [sym_identifier] = ACTIONS(2616), + [anon_sym_LPAREN2] = ACTIONS(2618), + [anon_sym_BANG] = ACTIONS(2620), + [anon_sym_TILDE] = ACTIONS(2620), + [anon_sym_DASH] = ACTIONS(2622), + [anon_sym_PLUS] = ACTIONS(2622), + [anon_sym_STAR] = ACTIONS(2624), + [anon_sym_AMP] = ACTIONS(2624), + [anon_sym_COLON_COLON] = ACTIONS(2626), + [anon_sym_LBRACK] = ACTIONS(1949), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(2628), + [anon_sym_unsigned] = ACTIONS(2628), + [anon_sym_long] = ACTIONS(2628), + [anon_sym_short] = ACTIONS(2628), + [sym_primitive_type] = ACTIONS(2630), + [anon_sym_enum] = ACTIONS(2632), + [anon_sym_class] = ACTIONS(2634), + [anon_sym_struct] = ACTIONS(2636), + [anon_sym_union] = ACTIONS(2638), + [anon_sym_not] = ACTIONS(2622), + [anon_sym_compl] = ACTIONS(2622), + [anon_sym_DASH_DASH] = ACTIONS(2640), + [anon_sym_PLUS_PLUS] = ACTIONS(2640), + [anon_sym_sizeof] = ACTIONS(2642), + [anon_sym_offsetof] = ACTIONS(2644), + [anon_sym__Generic] = ACTIONS(2646), + [anon_sym_asm] = ACTIONS(2648), + [anon_sym___asm__] = ACTIONS(2648), + [sym_number_literal] = ACTIONS(2650), + [anon_sym_L_SQUOTE] = ACTIONS(2652), + [anon_sym_u_SQUOTE] = ACTIONS(2652), + [anon_sym_U_SQUOTE] = ACTIONS(2652), + [anon_sym_u8_SQUOTE] = ACTIONS(2652), + [anon_sym_SQUOTE] = ACTIONS(2652), + [anon_sym_L_DQUOTE] = ACTIONS(2654), + [anon_sym_u_DQUOTE] = ACTIONS(2654), + [anon_sym_U_DQUOTE] = ACTIONS(2654), + [anon_sym_u8_DQUOTE] = ACTIONS(2654), + [anon_sym_DQUOTE] = ACTIONS(2654), + [sym_true] = ACTIONS(2656), + [sym_false] = ACTIONS(2656), + [anon_sym_NULL] = ACTIONS(2658), + [anon_sym_nullptr] = ACTIONS(2658), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2660), + [anon_sym_decltype] = ACTIONS(2662), + [anon_sym_typename] = ACTIONS(2664), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_GT2] = ACTIONS(2699), + [anon_sym_delete] = ACTIONS(2668), + [anon_sym_R_DQUOTE] = ACTIONS(2670), + [anon_sym_LR_DQUOTE] = ACTIONS(2670), + [anon_sym_uR_DQUOTE] = ACTIONS(2670), + [anon_sym_UR_DQUOTE] = ACTIONS(2670), + [anon_sym_u8R_DQUOTE] = ACTIONS(2670), + [anon_sym_co_await] = ACTIONS(2672), + [anon_sym_new] = ACTIONS(2674), + [anon_sym_requires] = ACTIONS(2676), + [sym_this] = ACTIONS(2656), }, [359] = { - [sym_identifier] = ACTIONS(2474), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2476), - [anon_sym_AMP] = ACTIONS(2474), - [anon_sym_SEMI] = ACTIONS(2476), - [anon_sym_typedef] = ACTIONS(2474), - [anon_sym_extern] = ACTIONS(2474), - [anon_sym___attribute__] = ACTIONS(2474), - [anon_sym_COLON_COLON] = ACTIONS(2476), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2476), - [anon_sym___declspec] = ACTIONS(2474), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2474), - [anon_sym_static] = ACTIONS(2474), - [anon_sym_register] = ACTIONS(2474), - [anon_sym_inline] = ACTIONS(2474), - [anon_sym_thread_local] = ACTIONS(2474), - [anon_sym_const] = ACTIONS(2474), - [anon_sym_volatile] = ACTIONS(2474), - [anon_sym_restrict] = ACTIONS(2474), - [anon_sym__Atomic] = ACTIONS(2474), - [anon_sym_mutable] = ACTIONS(2474), - [anon_sym_constexpr] = ACTIONS(2474), - [anon_sym_constinit] = ACTIONS(2474), - [anon_sym_consteval] = ACTIONS(2474), - [anon_sym_signed] = ACTIONS(2474), - [anon_sym_unsigned] = ACTIONS(2474), - [anon_sym_long] = ACTIONS(2474), - [anon_sym_short] = ACTIONS(2474), - [sym_primitive_type] = ACTIONS(2474), - [anon_sym_enum] = ACTIONS(2474), - [anon_sym_class] = 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_return] = ACTIONS(2474), - [anon_sym_break] = ACTIONS(2474), - [anon_sym_continue] = ACTIONS(2474), - [anon_sym_goto] = ACTIONS(2474), - [anon_sym_not] = ACTIONS(2474), - [anon_sym_compl] = ACTIONS(2474), - [anon_sym_DASH_DASH] = ACTIONS(2476), - [anon_sym_PLUS_PLUS] = ACTIONS(2476), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2476), - [anon_sym_u_DQUOTE] = ACTIONS(2476), - [anon_sym_U_DQUOTE] = ACTIONS(2476), - [anon_sym_u8_DQUOTE] = ACTIONS(2476), - [anon_sym_DQUOTE] = ACTIONS(2476), - [sym_true] = ACTIONS(2474), - [sym_false] = ACTIONS(2474), - [sym_null] = ACTIONS(2474), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2474), - [anon_sym_decltype] = ACTIONS(2474), - [anon_sym_virtual] = ACTIONS(2474), - [anon_sym_explicit] = ACTIONS(2474), - [anon_sym_typename] = ACTIONS(2474), - [anon_sym_template] = ACTIONS(2474), - [anon_sym_operator] = ACTIONS(2474), - [anon_sym_try] = ACTIONS(2474), - [anon_sym_delete] = ACTIONS(2474), - [anon_sym_throw] = ACTIONS(2474), - [anon_sym_namespace] = ACTIONS(2474), - [anon_sym_using] = ACTIONS(2474), - [anon_sym_static_assert] = ACTIONS(2474), - [anon_sym_concept] = ACTIONS(2474), - [anon_sym_co_return] = ACTIONS(2474), - [anon_sym_co_yield] = ACTIONS(2474), - [anon_sym_R_DQUOTE] = ACTIONS(2476), - [anon_sym_LR_DQUOTE] = ACTIONS(2476), - [anon_sym_uR_DQUOTE] = ACTIONS(2476), - [anon_sym_UR_DQUOTE] = ACTIONS(2476), - [anon_sym_u8R_DQUOTE] = ACTIONS(2476), - [anon_sym_co_await] = ACTIONS(2474), - [anon_sym_new] = ACTIONS(2474), - [anon_sym_requires] = ACTIONS(2474), - [sym_this] = ACTIONS(2474), - [sym_nullptr] = ACTIONS(2474), + [sym_type_qualifier] = STATE(3794), + [sym__type_specifier] = STATE(4503), + [sym_sized_type_specifier] = STATE(3156), + [sym_enum_specifier] = STATE(3156), + [sym_struct_specifier] = STATE(3156), + [sym_union_specifier] = STATE(3156), + [sym__expression] = STATE(4064), + [sym__expression_not_binary] = STATE(4369), + [sym_conditional_expression] = STATE(4369), + [sym_assignment_expression] = STATE(4369), + [sym_pointer_expression] = STATE(3541), + [sym_unary_expression] = STATE(4369), + [sym_binary_expression] = STATE(4369), + [sym_update_expression] = STATE(4369), + [sym_cast_expression] = STATE(4369), + [sym_type_descriptor] = STATE(6048), + [sym_sizeof_expression] = STATE(4369), + [sym_offsetof_expression] = STATE(4369), + [sym_generic_expression] = STATE(4369), + [sym_subscript_expression] = STATE(3541), + [sym_call_expression] = STATE(3541), + [sym_gnu_asm_expression] = STATE(4369), + [sym_field_expression] = STATE(3541), + [sym_compound_literal_expression] = STATE(4369), + [sym_parenthesized_expression] = STATE(3541), + [sym_char_literal] = STATE(4131), + [sym_concatenated_string] = STATE(4131), + [sym_string_literal] = STATE(3542), + [sym_null] = STATE(4369), + [sym_placeholder_type_specifier] = STATE(3156), + [sym_decltype_auto] = STATE(3159), + [sym_decltype] = STATE(3027), + [sym_class_specifier] = STATE(3156), + [sym__class_name] = STATE(6872), + [sym_dependent_type] = STATE(3156), + [sym_template_type] = STATE(4771), + [sym_template_function] = STATE(4369), + [sym_raw_string_literal] = STATE(3542), + [sym_co_await_expression] = STATE(4369), + [sym_new_expression] = STATE(4369), + [sym_delete_expression] = STATE(4369), + [sym_requires_clause] = STATE(4369), + [sym_requires_expression] = STATE(4369), + [sym_lambda_expression] = STATE(4369), + [sym_lambda_capture_specifier] = STATE(5208), + [sym_fold_expression] = STATE(4369), + [sym_parameter_pack_expansion] = STATE(4369), + [sym_type_parameter_pack_expansion] = STATE(6510), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5256), + [sym_qualified_identifier] = STATE(3541), + [sym_qualified_type_identifier] = STATE(4890), + [sym_user_defined_literal] = STATE(4369), + [aux_sym_type_definition_repeat1] = STATE(3794), + [aux_sym_sized_type_specifier_repeat1] = STATE(2483), + [sym_identifier] = ACTIONS(2616), + [anon_sym_LPAREN2] = ACTIONS(2618), + [anon_sym_BANG] = ACTIONS(2620), + [anon_sym_TILDE] = ACTIONS(2620), + [anon_sym_DASH] = ACTIONS(2622), + [anon_sym_PLUS] = ACTIONS(2622), + [anon_sym_STAR] = ACTIONS(2624), + [anon_sym_AMP] = ACTIONS(2624), + [anon_sym_COLON_COLON] = ACTIONS(2626), + [anon_sym_LBRACK] = ACTIONS(1949), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(2628), + [anon_sym_unsigned] = ACTIONS(2628), + [anon_sym_long] = ACTIONS(2628), + [anon_sym_short] = ACTIONS(2628), + [sym_primitive_type] = ACTIONS(2630), + [anon_sym_enum] = ACTIONS(2632), + [anon_sym_class] = ACTIONS(2634), + [anon_sym_struct] = ACTIONS(2636), + [anon_sym_union] = ACTIONS(2638), + [anon_sym_not] = ACTIONS(2622), + [anon_sym_compl] = ACTIONS(2622), + [anon_sym_DASH_DASH] = ACTIONS(2640), + [anon_sym_PLUS_PLUS] = ACTIONS(2640), + [anon_sym_sizeof] = ACTIONS(2642), + [anon_sym_offsetof] = ACTIONS(2644), + [anon_sym__Generic] = ACTIONS(2646), + [anon_sym_asm] = ACTIONS(2648), + [anon_sym___asm__] = ACTIONS(2648), + [sym_number_literal] = ACTIONS(2650), + [anon_sym_L_SQUOTE] = ACTIONS(2652), + [anon_sym_u_SQUOTE] = ACTIONS(2652), + [anon_sym_U_SQUOTE] = ACTIONS(2652), + [anon_sym_u8_SQUOTE] = ACTIONS(2652), + [anon_sym_SQUOTE] = ACTIONS(2652), + [anon_sym_L_DQUOTE] = ACTIONS(2654), + [anon_sym_u_DQUOTE] = ACTIONS(2654), + [anon_sym_U_DQUOTE] = ACTIONS(2654), + [anon_sym_u8_DQUOTE] = ACTIONS(2654), + [anon_sym_DQUOTE] = ACTIONS(2654), + [sym_true] = ACTIONS(2656), + [sym_false] = ACTIONS(2656), + [anon_sym_NULL] = ACTIONS(2658), + [anon_sym_nullptr] = ACTIONS(2658), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2660), + [anon_sym_decltype] = ACTIONS(2662), + [anon_sym_typename] = ACTIONS(2664), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_GT2] = ACTIONS(2701), + [anon_sym_delete] = ACTIONS(2668), + [anon_sym_R_DQUOTE] = ACTIONS(2670), + [anon_sym_LR_DQUOTE] = ACTIONS(2670), + [anon_sym_uR_DQUOTE] = ACTIONS(2670), + [anon_sym_UR_DQUOTE] = ACTIONS(2670), + [anon_sym_u8R_DQUOTE] = ACTIONS(2670), + [anon_sym_co_await] = ACTIONS(2672), + [anon_sym_new] = ACTIONS(2674), + [anon_sym_requires] = ACTIONS(2676), + [sym_this] = ACTIONS(2656), }, [360] = { - [sym_identifier] = ACTIONS(2478), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2480), - [anon_sym_AMP] = ACTIONS(2478), - [anon_sym_SEMI] = ACTIONS(2480), - [anon_sym_typedef] = ACTIONS(2478), - [anon_sym_extern] = ACTIONS(2478), - [anon_sym___attribute__] = ACTIONS(2478), - [anon_sym_COLON_COLON] = ACTIONS(2480), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2480), - [anon_sym___declspec] = ACTIONS(2478), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2478), - [anon_sym_static] = ACTIONS(2478), - [anon_sym_register] = ACTIONS(2478), - [anon_sym_inline] = ACTIONS(2478), - [anon_sym_thread_local] = ACTIONS(2478), - [anon_sym_const] = ACTIONS(2478), - [anon_sym_volatile] = ACTIONS(2478), - [anon_sym_restrict] = ACTIONS(2478), - [anon_sym__Atomic] = ACTIONS(2478), - [anon_sym_mutable] = ACTIONS(2478), - [anon_sym_constexpr] = ACTIONS(2478), - [anon_sym_constinit] = ACTIONS(2478), - [anon_sym_consteval] = ACTIONS(2478), - [anon_sym_signed] = ACTIONS(2478), - [anon_sym_unsigned] = ACTIONS(2478), - [anon_sym_long] = ACTIONS(2478), - [anon_sym_short] = ACTIONS(2478), - [sym_primitive_type] = ACTIONS(2478), - [anon_sym_enum] = ACTIONS(2478), - [anon_sym_class] = 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_return] = ACTIONS(2478), - [anon_sym_break] = ACTIONS(2478), - [anon_sym_continue] = ACTIONS(2478), - [anon_sym_goto] = ACTIONS(2478), - [anon_sym_not] = ACTIONS(2478), - [anon_sym_compl] = ACTIONS(2478), - [anon_sym_DASH_DASH] = ACTIONS(2480), - [anon_sym_PLUS_PLUS] = ACTIONS(2480), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2480), - [anon_sym_u_DQUOTE] = ACTIONS(2480), - [anon_sym_U_DQUOTE] = ACTIONS(2480), - [anon_sym_u8_DQUOTE] = ACTIONS(2480), - [anon_sym_DQUOTE] = ACTIONS(2480), - [sym_true] = ACTIONS(2478), - [sym_false] = ACTIONS(2478), - [sym_null] = ACTIONS(2478), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2478), - [anon_sym_decltype] = ACTIONS(2478), - [anon_sym_virtual] = ACTIONS(2478), - [anon_sym_explicit] = ACTIONS(2478), - [anon_sym_typename] = ACTIONS(2478), - [anon_sym_template] = ACTIONS(2478), - [anon_sym_operator] = ACTIONS(2478), - [anon_sym_try] = ACTIONS(2478), - [anon_sym_delete] = ACTIONS(2478), - [anon_sym_throw] = ACTIONS(2478), - [anon_sym_namespace] = ACTIONS(2478), - [anon_sym_using] = ACTIONS(2478), - [anon_sym_static_assert] = ACTIONS(2478), - [anon_sym_concept] = ACTIONS(2478), - [anon_sym_co_return] = ACTIONS(2478), - [anon_sym_co_yield] = ACTIONS(2478), - [anon_sym_R_DQUOTE] = ACTIONS(2480), - [anon_sym_LR_DQUOTE] = ACTIONS(2480), - [anon_sym_uR_DQUOTE] = ACTIONS(2480), - [anon_sym_UR_DQUOTE] = ACTIONS(2480), - [anon_sym_u8R_DQUOTE] = ACTIONS(2480), - [anon_sym_co_await] = ACTIONS(2478), - [anon_sym_new] = ACTIONS(2478), - [anon_sym_requires] = ACTIONS(2478), - [sym_this] = ACTIONS(2478), - [sym_nullptr] = ACTIONS(2478), + [sym_type_qualifier] = STATE(3794), + [sym__type_specifier] = STATE(4503), + [sym_sized_type_specifier] = STATE(3156), + [sym_enum_specifier] = STATE(3156), + [sym_struct_specifier] = STATE(3156), + [sym_union_specifier] = STATE(3156), + [sym__expression] = STATE(4078), + [sym__expression_not_binary] = STATE(4369), + [sym_conditional_expression] = STATE(4369), + [sym_assignment_expression] = STATE(4369), + [sym_pointer_expression] = STATE(3541), + [sym_unary_expression] = STATE(4369), + [sym_binary_expression] = STATE(4369), + [sym_update_expression] = STATE(4369), + [sym_cast_expression] = STATE(4369), + [sym_type_descriptor] = STATE(6047), + [sym_sizeof_expression] = STATE(4369), + [sym_offsetof_expression] = STATE(4369), + [sym_generic_expression] = STATE(4369), + [sym_subscript_expression] = STATE(3541), + [sym_call_expression] = STATE(3541), + [sym_gnu_asm_expression] = STATE(4369), + [sym_field_expression] = STATE(3541), + [sym_compound_literal_expression] = STATE(4369), + [sym_parenthesized_expression] = STATE(3541), + [sym_char_literal] = STATE(4131), + [sym_concatenated_string] = STATE(4131), + [sym_string_literal] = STATE(3542), + [sym_null] = STATE(4369), + [sym_placeholder_type_specifier] = STATE(3156), + [sym_decltype_auto] = STATE(3159), + [sym_decltype] = STATE(3027), + [sym_class_specifier] = STATE(3156), + [sym__class_name] = STATE(6872), + [sym_dependent_type] = STATE(3156), + [sym_template_type] = STATE(4771), + [sym_template_function] = STATE(4369), + [sym_raw_string_literal] = STATE(3542), + [sym_co_await_expression] = STATE(4369), + [sym_new_expression] = STATE(4369), + [sym_delete_expression] = STATE(4369), + [sym_requires_clause] = STATE(4369), + [sym_requires_expression] = STATE(4369), + [sym_lambda_expression] = STATE(4369), + [sym_lambda_capture_specifier] = STATE(5208), + [sym_fold_expression] = STATE(4369), + [sym_parameter_pack_expansion] = STATE(4369), + [sym_type_parameter_pack_expansion] = STATE(6509), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5256), + [sym_qualified_identifier] = STATE(3541), + [sym_qualified_type_identifier] = STATE(4890), + [sym_user_defined_literal] = STATE(4369), + [aux_sym_type_definition_repeat1] = STATE(3794), + [aux_sym_sized_type_specifier_repeat1] = STATE(2483), + [sym_identifier] = ACTIONS(2616), + [anon_sym_LPAREN2] = ACTIONS(2618), + [anon_sym_BANG] = ACTIONS(2620), + [anon_sym_TILDE] = ACTIONS(2620), + [anon_sym_DASH] = ACTIONS(2622), + [anon_sym_PLUS] = ACTIONS(2622), + [anon_sym_STAR] = ACTIONS(2624), + [anon_sym_AMP] = ACTIONS(2624), + [anon_sym_COLON_COLON] = ACTIONS(2626), + [anon_sym_LBRACK] = ACTIONS(1949), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(2628), + [anon_sym_unsigned] = ACTIONS(2628), + [anon_sym_long] = ACTIONS(2628), + [anon_sym_short] = ACTIONS(2628), + [sym_primitive_type] = ACTIONS(2630), + [anon_sym_enum] = ACTIONS(2632), + [anon_sym_class] = ACTIONS(2634), + [anon_sym_struct] = ACTIONS(2636), + [anon_sym_union] = ACTIONS(2638), + [anon_sym_not] = ACTIONS(2622), + [anon_sym_compl] = ACTIONS(2622), + [anon_sym_DASH_DASH] = ACTIONS(2640), + [anon_sym_PLUS_PLUS] = ACTIONS(2640), + [anon_sym_sizeof] = ACTIONS(2642), + [anon_sym_offsetof] = ACTIONS(2644), + [anon_sym__Generic] = ACTIONS(2646), + [anon_sym_asm] = ACTIONS(2648), + [anon_sym___asm__] = ACTIONS(2648), + [sym_number_literal] = ACTIONS(2650), + [anon_sym_L_SQUOTE] = ACTIONS(2652), + [anon_sym_u_SQUOTE] = ACTIONS(2652), + [anon_sym_U_SQUOTE] = ACTIONS(2652), + [anon_sym_u8_SQUOTE] = ACTIONS(2652), + [anon_sym_SQUOTE] = ACTIONS(2652), + [anon_sym_L_DQUOTE] = ACTIONS(2654), + [anon_sym_u_DQUOTE] = ACTIONS(2654), + [anon_sym_U_DQUOTE] = ACTIONS(2654), + [anon_sym_u8_DQUOTE] = ACTIONS(2654), + [anon_sym_DQUOTE] = ACTIONS(2654), + [sym_true] = ACTIONS(2656), + [sym_false] = ACTIONS(2656), + [anon_sym_NULL] = ACTIONS(2658), + [anon_sym_nullptr] = ACTIONS(2658), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2660), + [anon_sym_decltype] = ACTIONS(2662), + [anon_sym_typename] = ACTIONS(2664), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_GT2] = ACTIONS(2703), + [anon_sym_delete] = ACTIONS(2668), + [anon_sym_R_DQUOTE] = ACTIONS(2670), + [anon_sym_LR_DQUOTE] = ACTIONS(2670), + [anon_sym_uR_DQUOTE] = ACTIONS(2670), + [anon_sym_UR_DQUOTE] = ACTIONS(2670), + [anon_sym_u8R_DQUOTE] = ACTIONS(2670), + [anon_sym_co_await] = ACTIONS(2672), + [anon_sym_new] = ACTIONS(2674), + [anon_sym_requires] = ACTIONS(2676), + [sym_this] = ACTIONS(2656), }, [361] = { - [sym_identifier] = ACTIONS(2462), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2464), - [anon_sym_AMP] = ACTIONS(2462), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_explicit] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_operator] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_namespace] = ACTIONS(2462), - [anon_sym_using] = ACTIONS(2462), - [anon_sym_static_assert] = ACTIONS(2462), - [anon_sym_concept] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_type_qualifier] = STATE(3794), + [sym__type_specifier] = STATE(4503), + [sym_sized_type_specifier] = STATE(3156), + [sym_enum_specifier] = STATE(3156), + [sym_struct_specifier] = STATE(3156), + [sym_union_specifier] = STATE(3156), + [sym__expression] = STATE(4090), + [sym__expression_not_binary] = STATE(4369), + [sym_conditional_expression] = STATE(4369), + [sym_assignment_expression] = STATE(4369), + [sym_pointer_expression] = STATE(3541), + [sym_unary_expression] = STATE(4369), + [sym_binary_expression] = STATE(4369), + [sym_update_expression] = STATE(4369), + [sym_cast_expression] = STATE(4369), + [sym_type_descriptor] = STATE(5983), + [sym_sizeof_expression] = STATE(4369), + [sym_offsetof_expression] = STATE(4369), + [sym_generic_expression] = STATE(4369), + [sym_subscript_expression] = STATE(3541), + [sym_call_expression] = STATE(3541), + [sym_gnu_asm_expression] = STATE(4369), + [sym_field_expression] = STATE(3541), + [sym_compound_literal_expression] = STATE(4369), + [sym_parenthesized_expression] = STATE(3541), + [sym_char_literal] = STATE(4131), + [sym_concatenated_string] = STATE(4131), + [sym_string_literal] = STATE(3542), + [sym_null] = STATE(4369), + [sym_placeholder_type_specifier] = STATE(3156), + [sym_decltype_auto] = STATE(3159), + [sym_decltype] = STATE(3027), + [sym_class_specifier] = STATE(3156), + [sym__class_name] = STATE(6872), + [sym_dependent_type] = STATE(3156), + [sym_template_type] = STATE(4771), + [sym_template_function] = STATE(4369), + [sym_raw_string_literal] = STATE(3542), + [sym_co_await_expression] = STATE(4369), + [sym_new_expression] = STATE(4369), + [sym_delete_expression] = STATE(4369), + [sym_requires_clause] = STATE(4369), + [sym_requires_expression] = STATE(4369), + [sym_lambda_expression] = STATE(4369), + [sym_lambda_capture_specifier] = STATE(5208), + [sym_fold_expression] = STATE(4369), + [sym_parameter_pack_expansion] = STATE(4369), + [sym_type_parameter_pack_expansion] = STATE(6449), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5256), + [sym_qualified_identifier] = STATE(3541), + [sym_qualified_type_identifier] = STATE(4890), + [sym_user_defined_literal] = STATE(4369), + [aux_sym_type_definition_repeat1] = STATE(3794), + [aux_sym_sized_type_specifier_repeat1] = STATE(2483), + [sym_identifier] = ACTIONS(2616), + [anon_sym_LPAREN2] = ACTIONS(2618), + [anon_sym_BANG] = ACTIONS(2620), + [anon_sym_TILDE] = ACTIONS(2620), + [anon_sym_DASH] = ACTIONS(2622), + [anon_sym_PLUS] = ACTIONS(2622), + [anon_sym_STAR] = ACTIONS(2624), + [anon_sym_AMP] = ACTIONS(2624), + [anon_sym_COLON_COLON] = ACTIONS(2626), + [anon_sym_LBRACK] = ACTIONS(1949), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(2628), + [anon_sym_unsigned] = ACTIONS(2628), + [anon_sym_long] = ACTIONS(2628), + [anon_sym_short] = ACTIONS(2628), + [sym_primitive_type] = ACTIONS(2630), + [anon_sym_enum] = ACTIONS(2632), + [anon_sym_class] = ACTIONS(2634), + [anon_sym_struct] = ACTIONS(2636), + [anon_sym_union] = ACTIONS(2638), + [anon_sym_not] = ACTIONS(2622), + [anon_sym_compl] = ACTIONS(2622), + [anon_sym_DASH_DASH] = ACTIONS(2640), + [anon_sym_PLUS_PLUS] = ACTIONS(2640), + [anon_sym_sizeof] = ACTIONS(2642), + [anon_sym_offsetof] = ACTIONS(2644), + [anon_sym__Generic] = ACTIONS(2646), + [anon_sym_asm] = ACTIONS(2648), + [anon_sym___asm__] = ACTIONS(2648), + [sym_number_literal] = ACTIONS(2650), + [anon_sym_L_SQUOTE] = ACTIONS(2652), + [anon_sym_u_SQUOTE] = ACTIONS(2652), + [anon_sym_U_SQUOTE] = ACTIONS(2652), + [anon_sym_u8_SQUOTE] = ACTIONS(2652), + [anon_sym_SQUOTE] = ACTIONS(2652), + [anon_sym_L_DQUOTE] = ACTIONS(2654), + [anon_sym_u_DQUOTE] = ACTIONS(2654), + [anon_sym_U_DQUOTE] = ACTIONS(2654), + [anon_sym_u8_DQUOTE] = ACTIONS(2654), + [anon_sym_DQUOTE] = ACTIONS(2654), + [sym_true] = ACTIONS(2656), + [sym_false] = ACTIONS(2656), + [anon_sym_NULL] = ACTIONS(2658), + [anon_sym_nullptr] = ACTIONS(2658), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2660), + [anon_sym_decltype] = ACTIONS(2662), + [anon_sym_typename] = ACTIONS(2664), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_GT2] = ACTIONS(2705), + [anon_sym_delete] = ACTIONS(2668), + [anon_sym_R_DQUOTE] = ACTIONS(2670), + [anon_sym_LR_DQUOTE] = ACTIONS(2670), + [anon_sym_uR_DQUOTE] = ACTIONS(2670), + [anon_sym_UR_DQUOTE] = ACTIONS(2670), + [anon_sym_u8R_DQUOTE] = ACTIONS(2670), + [anon_sym_co_await] = ACTIONS(2672), + [anon_sym_new] = ACTIONS(2674), + [anon_sym_requires] = ACTIONS(2676), + [sym_this] = ACTIONS(2656), }, [362] = { - [sym_identifier] = ACTIONS(2462), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2464), - [anon_sym_AMP] = ACTIONS(2462), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_explicit] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_operator] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_namespace] = ACTIONS(2462), - [anon_sym_using] = ACTIONS(2462), - [anon_sym_static_assert] = ACTIONS(2462), - [anon_sym_concept] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_type_qualifier] = STATE(3794), + [sym__type_specifier] = STATE(4503), + [sym_sized_type_specifier] = STATE(3156), + [sym_enum_specifier] = STATE(3156), + [sym_struct_specifier] = STATE(3156), + [sym_union_specifier] = STATE(3156), + [sym__expression] = STATE(4076), + [sym__expression_not_binary] = STATE(4369), + [sym_conditional_expression] = STATE(4369), + [sym_assignment_expression] = STATE(4369), + [sym_pointer_expression] = STATE(3541), + [sym_unary_expression] = STATE(4369), + [sym_binary_expression] = STATE(4369), + [sym_update_expression] = STATE(4369), + [sym_cast_expression] = STATE(4369), + [sym_type_descriptor] = STATE(6091), + [sym_sizeof_expression] = STATE(4369), + [sym_offsetof_expression] = STATE(4369), + [sym_generic_expression] = STATE(4369), + [sym_subscript_expression] = STATE(3541), + [sym_call_expression] = STATE(3541), + [sym_gnu_asm_expression] = STATE(4369), + [sym_field_expression] = STATE(3541), + [sym_compound_literal_expression] = STATE(4369), + [sym_parenthesized_expression] = STATE(3541), + [sym_char_literal] = STATE(4131), + [sym_concatenated_string] = STATE(4131), + [sym_string_literal] = STATE(3542), + [sym_null] = STATE(4369), + [sym_placeholder_type_specifier] = STATE(3156), + [sym_decltype_auto] = STATE(3159), + [sym_decltype] = STATE(3027), + [sym_class_specifier] = STATE(3156), + [sym__class_name] = STATE(6872), + [sym_dependent_type] = STATE(3156), + [sym_template_type] = STATE(4771), + [sym_template_function] = STATE(4369), + [sym_raw_string_literal] = STATE(3542), + [sym_co_await_expression] = STATE(4369), + [sym_new_expression] = STATE(4369), + [sym_delete_expression] = STATE(4369), + [sym_requires_clause] = STATE(4369), + [sym_requires_expression] = STATE(4369), + [sym_lambda_expression] = STATE(4369), + [sym_lambda_capture_specifier] = STATE(5208), + [sym_fold_expression] = STATE(4369), + [sym_parameter_pack_expansion] = STATE(4369), + [sym_type_parameter_pack_expansion] = STATE(6539), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5256), + [sym_qualified_identifier] = STATE(3541), + [sym_qualified_type_identifier] = STATE(4890), + [sym_user_defined_literal] = STATE(4369), + [aux_sym_type_definition_repeat1] = STATE(3794), + [aux_sym_sized_type_specifier_repeat1] = STATE(2483), + [sym_identifier] = ACTIONS(2616), + [anon_sym_LPAREN2] = ACTIONS(2618), + [anon_sym_BANG] = ACTIONS(2620), + [anon_sym_TILDE] = ACTIONS(2620), + [anon_sym_DASH] = ACTIONS(2622), + [anon_sym_PLUS] = ACTIONS(2622), + [anon_sym_STAR] = ACTIONS(2624), + [anon_sym_AMP] = ACTIONS(2624), + [anon_sym_COLON_COLON] = ACTIONS(2626), + [anon_sym_LBRACK] = ACTIONS(1949), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(2628), + [anon_sym_unsigned] = ACTIONS(2628), + [anon_sym_long] = ACTIONS(2628), + [anon_sym_short] = ACTIONS(2628), + [sym_primitive_type] = ACTIONS(2630), + [anon_sym_enum] = ACTIONS(2632), + [anon_sym_class] = ACTIONS(2634), + [anon_sym_struct] = ACTIONS(2636), + [anon_sym_union] = ACTIONS(2638), + [anon_sym_not] = ACTIONS(2622), + [anon_sym_compl] = ACTIONS(2622), + [anon_sym_DASH_DASH] = ACTIONS(2640), + [anon_sym_PLUS_PLUS] = ACTIONS(2640), + [anon_sym_sizeof] = ACTIONS(2642), + [anon_sym_offsetof] = ACTIONS(2644), + [anon_sym__Generic] = ACTIONS(2646), + [anon_sym_asm] = ACTIONS(2648), + [anon_sym___asm__] = ACTIONS(2648), + [sym_number_literal] = ACTIONS(2650), + [anon_sym_L_SQUOTE] = ACTIONS(2652), + [anon_sym_u_SQUOTE] = ACTIONS(2652), + [anon_sym_U_SQUOTE] = ACTIONS(2652), + [anon_sym_u8_SQUOTE] = ACTIONS(2652), + [anon_sym_SQUOTE] = ACTIONS(2652), + [anon_sym_L_DQUOTE] = ACTIONS(2654), + [anon_sym_u_DQUOTE] = ACTIONS(2654), + [anon_sym_U_DQUOTE] = ACTIONS(2654), + [anon_sym_u8_DQUOTE] = ACTIONS(2654), + [anon_sym_DQUOTE] = ACTIONS(2654), + [sym_true] = ACTIONS(2656), + [sym_false] = ACTIONS(2656), + [anon_sym_NULL] = ACTIONS(2658), + [anon_sym_nullptr] = ACTIONS(2658), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2660), + [anon_sym_decltype] = ACTIONS(2662), + [anon_sym_typename] = ACTIONS(2664), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_GT2] = ACTIONS(2707), + [anon_sym_delete] = ACTIONS(2668), + [anon_sym_R_DQUOTE] = ACTIONS(2670), + [anon_sym_LR_DQUOTE] = ACTIONS(2670), + [anon_sym_uR_DQUOTE] = ACTIONS(2670), + [anon_sym_UR_DQUOTE] = ACTIONS(2670), + [anon_sym_u8R_DQUOTE] = ACTIONS(2670), + [anon_sym_co_await] = ACTIONS(2672), + [anon_sym_new] = ACTIONS(2674), + [anon_sym_requires] = ACTIONS(2676), + [sym_this] = ACTIONS(2656), }, [363] = { - [sym_catch_clause] = STATE(338), - [aux_sym_constructor_try_statement_repeat1] = STATE(338), - [sym_identifier] = ACTIONS(2385), - [aux_sym_preproc_include_token1] = ACTIONS(2385), - [aux_sym_preproc_def_token1] = ACTIONS(2385), - [aux_sym_preproc_if_token1] = ACTIONS(2385), - [aux_sym_preproc_if_token2] = ACTIONS(2385), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2385), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2385), - [sym_preproc_directive] = ACTIONS(2385), - [anon_sym_LPAREN2] = ACTIONS(2387), - [anon_sym_BANG] = ACTIONS(2387), - [anon_sym_TILDE] = ACTIONS(2387), - [anon_sym_DASH] = ACTIONS(2385), - [anon_sym_PLUS] = ACTIONS(2385), - [anon_sym_STAR] = ACTIONS(2387), - [anon_sym_AMP_AMP] = ACTIONS(2387), - [anon_sym_AMP] = ACTIONS(2385), - [anon_sym_SEMI] = ACTIONS(2387), - [anon_sym_typedef] = ACTIONS(2385), - [anon_sym_extern] = ACTIONS(2385), - [anon_sym___attribute__] = ACTIONS(2385), - [anon_sym_COLON_COLON] = ACTIONS(2387), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2387), - [anon_sym___declspec] = ACTIONS(2385), - [anon_sym___based] = ACTIONS(2385), - [anon_sym___cdecl] = ACTIONS(2385), - [anon_sym___clrcall] = ACTIONS(2385), - [anon_sym___stdcall] = ACTIONS(2385), - [anon_sym___fastcall] = ACTIONS(2385), - [anon_sym___thiscall] = ACTIONS(2385), - [anon_sym___vectorcall] = ACTIONS(2385), - [anon_sym_LBRACE] = ACTIONS(2387), - [anon_sym_LBRACK] = ACTIONS(2385), - [anon_sym_static] = ACTIONS(2385), - [anon_sym_register] = ACTIONS(2385), - [anon_sym_inline] = ACTIONS(2385), - [anon_sym_thread_local] = ACTIONS(2385), - [anon_sym_const] = ACTIONS(2385), - [anon_sym_volatile] = ACTIONS(2385), - [anon_sym_restrict] = ACTIONS(2385), - [anon_sym__Atomic] = ACTIONS(2385), - [anon_sym_mutable] = ACTIONS(2385), - [anon_sym_constexpr] = ACTIONS(2385), - [anon_sym_constinit] = ACTIONS(2385), - [anon_sym_consteval] = ACTIONS(2385), - [anon_sym_signed] = ACTIONS(2385), - [anon_sym_unsigned] = ACTIONS(2385), - [anon_sym_long] = ACTIONS(2385), - [anon_sym_short] = ACTIONS(2385), - [sym_primitive_type] = ACTIONS(2385), - [anon_sym_enum] = ACTIONS(2385), - [anon_sym_class] = ACTIONS(2385), - [anon_sym_struct] = ACTIONS(2385), - [anon_sym_union] = ACTIONS(2385), - [anon_sym_if] = ACTIONS(2385), - [anon_sym_switch] = ACTIONS(2385), - [anon_sym_case] = ACTIONS(2385), - [anon_sym_default] = ACTIONS(2385), - [anon_sym_while] = ACTIONS(2385), - [anon_sym_do] = ACTIONS(2385), - [anon_sym_for] = ACTIONS(2385), - [anon_sym_return] = ACTIONS(2385), - [anon_sym_break] = ACTIONS(2385), - [anon_sym_continue] = ACTIONS(2385), - [anon_sym_goto] = ACTIONS(2385), - [anon_sym_not] = ACTIONS(2385), - [anon_sym_compl] = ACTIONS(2385), - [anon_sym_DASH_DASH] = ACTIONS(2387), - [anon_sym_PLUS_PLUS] = ACTIONS(2387), - [anon_sym_sizeof] = ACTIONS(2385), - [sym_number_literal] = ACTIONS(2387), - [anon_sym_L_SQUOTE] = ACTIONS(2387), - [anon_sym_u_SQUOTE] = ACTIONS(2387), - [anon_sym_U_SQUOTE] = ACTIONS(2387), - [anon_sym_u8_SQUOTE] = ACTIONS(2387), - [anon_sym_SQUOTE] = ACTIONS(2387), - [anon_sym_L_DQUOTE] = ACTIONS(2387), - [anon_sym_u_DQUOTE] = ACTIONS(2387), - [anon_sym_U_DQUOTE] = ACTIONS(2387), - [anon_sym_u8_DQUOTE] = ACTIONS(2387), - [anon_sym_DQUOTE] = ACTIONS(2387), - [sym_true] = ACTIONS(2385), - [sym_false] = ACTIONS(2385), - [sym_null] = ACTIONS(2385), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2385), - [anon_sym_decltype] = ACTIONS(2385), - [anon_sym_virtual] = ACTIONS(2385), - [anon_sym_explicit] = ACTIONS(2385), - [anon_sym_typename] = ACTIONS(2385), - [anon_sym_template] = ACTIONS(2385), - [anon_sym_operator] = ACTIONS(2385), - [anon_sym_try] = ACTIONS(2385), - [anon_sym_delete] = ACTIONS(2385), - [anon_sym_throw] = ACTIONS(2385), - [anon_sym_namespace] = ACTIONS(2385), - [anon_sym_using] = ACTIONS(2385), - [anon_sym_static_assert] = ACTIONS(2385), - [anon_sym_concept] = ACTIONS(2385), - [anon_sym_co_return] = ACTIONS(2385), - [anon_sym_co_yield] = ACTIONS(2385), - [anon_sym_catch] = ACTIONS(2397), - [anon_sym_R_DQUOTE] = ACTIONS(2387), - [anon_sym_LR_DQUOTE] = ACTIONS(2387), - [anon_sym_uR_DQUOTE] = ACTIONS(2387), - [anon_sym_UR_DQUOTE] = ACTIONS(2387), - [anon_sym_u8R_DQUOTE] = ACTIONS(2387), - [anon_sym_co_await] = ACTIONS(2385), - [anon_sym_new] = ACTIONS(2385), - [anon_sym_requires] = ACTIONS(2385), - [sym_this] = ACTIONS(2385), - [sym_nullptr] = ACTIONS(2385), + [sym_catch_clause] = STATE(353), + [aux_sym_constructor_try_statement_repeat1] = STATE(353), + [sym_identifier] = ACTIONS(2709), + [aux_sym_preproc_include_token1] = ACTIONS(2709), + [aux_sym_preproc_def_token1] = ACTIONS(2709), + [aux_sym_preproc_if_token1] = ACTIONS(2709), + [aux_sym_preproc_if_token2] = ACTIONS(2709), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2709), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2709), + [aux_sym_preproc_else_token1] = ACTIONS(2709), + [aux_sym_preproc_elif_token1] = ACTIONS(2709), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2709), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2709), + [sym_preproc_directive] = ACTIONS(2709), + [anon_sym_LPAREN2] = ACTIONS(2711), + [anon_sym_BANG] = ACTIONS(2711), + [anon_sym_TILDE] = ACTIONS(2711), + [anon_sym_DASH] = ACTIONS(2709), + [anon_sym_PLUS] = ACTIONS(2709), + [anon_sym_STAR] = ACTIONS(2711), + [anon_sym_AMP_AMP] = ACTIONS(2711), + [anon_sym_AMP] = ACTIONS(2709), + [anon_sym_SEMI] = ACTIONS(2711), + [anon_sym_typedef] = ACTIONS(2709), + [anon_sym_extern] = ACTIONS(2709), + [anon_sym___attribute__] = ACTIONS(2709), + [anon_sym_COLON_COLON] = ACTIONS(2711), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2711), + [anon_sym___declspec] = ACTIONS(2709), + [anon_sym___based] = ACTIONS(2709), + [anon_sym___cdecl] = ACTIONS(2709), + [anon_sym___clrcall] = ACTIONS(2709), + [anon_sym___stdcall] = ACTIONS(2709), + [anon_sym___fastcall] = ACTIONS(2709), + [anon_sym___thiscall] = ACTIONS(2709), + [anon_sym___vectorcall] = ACTIONS(2709), + [anon_sym_LBRACE] = ACTIONS(2711), + [anon_sym_LBRACK] = ACTIONS(2709), + [anon_sym_static] = ACTIONS(2709), + [anon_sym_register] = ACTIONS(2709), + [anon_sym_inline] = ACTIONS(2709), + [anon_sym_thread_local] = ACTIONS(2709), + [anon_sym_const] = ACTIONS(2709), + [anon_sym_constexpr] = ACTIONS(2709), + [anon_sym_volatile] = ACTIONS(2709), + [anon_sym_restrict] = ACTIONS(2709), + [anon_sym___restrict__] = ACTIONS(2709), + [anon_sym__Atomic] = ACTIONS(2709), + [anon_sym__Noreturn] = ACTIONS(2709), + [anon_sym_noreturn] = ACTIONS(2709), + [anon_sym_mutable] = ACTIONS(2709), + [anon_sym_constinit] = ACTIONS(2709), + [anon_sym_consteval] = ACTIONS(2709), + [anon_sym_signed] = ACTIONS(2709), + [anon_sym_unsigned] = ACTIONS(2709), + [anon_sym_long] = ACTIONS(2709), + [anon_sym_short] = ACTIONS(2709), + [sym_primitive_type] = ACTIONS(2709), + [anon_sym_enum] = ACTIONS(2709), + [anon_sym_class] = ACTIONS(2709), + [anon_sym_struct] = ACTIONS(2709), + [anon_sym_union] = ACTIONS(2709), + [anon_sym_if] = ACTIONS(2709), + [anon_sym_else] = ACTIONS(2709), + [anon_sym_switch] = ACTIONS(2709), + [anon_sym_case] = ACTIONS(2709), + [anon_sym_default] = ACTIONS(2709), + [anon_sym_while] = ACTIONS(2709), + [anon_sym_do] = ACTIONS(2709), + [anon_sym_for] = ACTIONS(2709), + [anon_sym_return] = ACTIONS(2709), + [anon_sym_break] = ACTIONS(2709), + [anon_sym_continue] = ACTIONS(2709), + [anon_sym_goto] = ACTIONS(2709), + [anon_sym_not] = ACTIONS(2709), + [anon_sym_compl] = ACTIONS(2709), + [anon_sym_DASH_DASH] = ACTIONS(2711), + [anon_sym_PLUS_PLUS] = ACTIONS(2711), + [anon_sym_sizeof] = ACTIONS(2709), + [anon_sym_offsetof] = ACTIONS(2709), + [anon_sym__Generic] = ACTIONS(2709), + [anon_sym_asm] = ACTIONS(2709), + [anon_sym___asm__] = ACTIONS(2709), + [sym_number_literal] = ACTIONS(2711), + [anon_sym_L_SQUOTE] = ACTIONS(2711), + [anon_sym_u_SQUOTE] = ACTIONS(2711), + [anon_sym_U_SQUOTE] = ACTIONS(2711), + [anon_sym_u8_SQUOTE] = ACTIONS(2711), + [anon_sym_SQUOTE] = ACTIONS(2711), + [anon_sym_L_DQUOTE] = ACTIONS(2711), + [anon_sym_u_DQUOTE] = ACTIONS(2711), + [anon_sym_U_DQUOTE] = ACTIONS(2711), + [anon_sym_u8_DQUOTE] = ACTIONS(2711), + [anon_sym_DQUOTE] = ACTIONS(2711), + [sym_true] = ACTIONS(2709), + [sym_false] = ACTIONS(2709), + [anon_sym_NULL] = ACTIONS(2709), + [anon_sym_nullptr] = ACTIONS(2709), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2709), + [anon_sym_decltype] = ACTIONS(2709), + [anon_sym_virtual] = ACTIONS(2709), + [anon_sym_explicit] = ACTIONS(2709), + [anon_sym_typename] = ACTIONS(2709), + [anon_sym_template] = ACTIONS(2709), + [anon_sym_operator] = ACTIONS(2709), + [anon_sym_try] = ACTIONS(2709), + [anon_sym_delete] = ACTIONS(2709), + [anon_sym_throw] = ACTIONS(2709), + [anon_sym_namespace] = ACTIONS(2709), + [anon_sym_using] = ACTIONS(2709), + [anon_sym_static_assert] = ACTIONS(2709), + [anon_sym_concept] = ACTIONS(2709), + [anon_sym_co_return] = ACTIONS(2709), + [anon_sym_co_yield] = ACTIONS(2709), + [anon_sym_catch] = ACTIONS(2713), + [anon_sym_R_DQUOTE] = ACTIONS(2711), + [anon_sym_LR_DQUOTE] = ACTIONS(2711), + [anon_sym_uR_DQUOTE] = ACTIONS(2711), + [anon_sym_UR_DQUOTE] = ACTIONS(2711), + [anon_sym_u8R_DQUOTE] = ACTIONS(2711), + [anon_sym_co_await] = ACTIONS(2709), + [anon_sym_new] = ACTIONS(2709), + [anon_sym_requires] = ACTIONS(2709), + [sym_this] = ACTIONS(2709), }, [364] = { - [sym_identifier] = ACTIONS(2482), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2484), - [anon_sym_AMP] = ACTIONS(2482), - [anon_sym_SEMI] = ACTIONS(2484), - [anon_sym_typedef] = ACTIONS(2482), - [anon_sym_extern] = ACTIONS(2482), - [anon_sym___attribute__] = ACTIONS(2482), - [anon_sym_COLON_COLON] = ACTIONS(2484), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2484), - [anon_sym___declspec] = ACTIONS(2482), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2482), - [anon_sym_static] = ACTIONS(2482), - [anon_sym_register] = ACTIONS(2482), - [anon_sym_inline] = ACTIONS(2482), - [anon_sym_thread_local] = ACTIONS(2482), - [anon_sym_const] = ACTIONS(2482), - [anon_sym_volatile] = ACTIONS(2482), - [anon_sym_restrict] = ACTIONS(2482), - [anon_sym__Atomic] = ACTIONS(2482), - [anon_sym_mutable] = ACTIONS(2482), - [anon_sym_constexpr] = ACTIONS(2482), - [anon_sym_constinit] = ACTIONS(2482), - [anon_sym_consteval] = ACTIONS(2482), - [anon_sym_signed] = ACTIONS(2482), - [anon_sym_unsigned] = ACTIONS(2482), - [anon_sym_long] = ACTIONS(2482), - [anon_sym_short] = ACTIONS(2482), - [sym_primitive_type] = ACTIONS(2482), - [anon_sym_enum] = ACTIONS(2482), - [anon_sym_class] = ACTIONS(2482), - [anon_sym_struct] = ACTIONS(2482), - [anon_sym_union] = ACTIONS(2482), - [anon_sym_if] = ACTIONS(2482), - [anon_sym_else] = ACTIONS(2486), - [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_return] = ACTIONS(2482), - [anon_sym_break] = ACTIONS(2482), - [anon_sym_continue] = ACTIONS(2482), - [anon_sym_goto] = ACTIONS(2482), - [anon_sym_not] = ACTIONS(2482), - [anon_sym_compl] = ACTIONS(2482), - [anon_sym_DASH_DASH] = ACTIONS(2484), - [anon_sym_PLUS_PLUS] = ACTIONS(2484), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2484), - [anon_sym_u_DQUOTE] = ACTIONS(2484), - [anon_sym_U_DQUOTE] = ACTIONS(2484), - [anon_sym_u8_DQUOTE] = ACTIONS(2484), - [anon_sym_DQUOTE] = ACTIONS(2484), - [sym_true] = ACTIONS(2482), - [sym_false] = ACTIONS(2482), - [sym_null] = ACTIONS(2482), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2482), - [anon_sym_decltype] = ACTIONS(2482), - [anon_sym_virtual] = ACTIONS(2482), - [anon_sym_explicit] = ACTIONS(2482), - [anon_sym_typename] = ACTIONS(2482), - [anon_sym_template] = ACTIONS(2482), - [anon_sym_operator] = ACTIONS(2482), - [anon_sym_try] = ACTIONS(2482), - [anon_sym_delete] = ACTIONS(2482), - [anon_sym_throw] = ACTIONS(2482), - [anon_sym_namespace] = ACTIONS(2482), - [anon_sym_using] = ACTIONS(2482), - [anon_sym_static_assert] = ACTIONS(2482), - [anon_sym_concept] = ACTIONS(2482), - [anon_sym_co_return] = ACTIONS(2482), - [anon_sym_co_yield] = ACTIONS(2482), - [anon_sym_R_DQUOTE] = ACTIONS(2484), - [anon_sym_LR_DQUOTE] = ACTIONS(2484), - [anon_sym_uR_DQUOTE] = ACTIONS(2484), - [anon_sym_UR_DQUOTE] = ACTIONS(2484), - [anon_sym_u8R_DQUOTE] = ACTIONS(2484), - [anon_sym_co_await] = ACTIONS(2482), - [anon_sym_new] = ACTIONS(2482), - [anon_sym_requires] = ACTIONS(2482), - [sym_this] = ACTIONS(2482), - [sym_nullptr] = ACTIONS(2482), + [sym_type_qualifier] = STATE(3794), + [sym__type_specifier] = STATE(4503), + [sym_sized_type_specifier] = STATE(3156), + [sym_enum_specifier] = STATE(3156), + [sym_struct_specifier] = STATE(3156), + [sym_union_specifier] = STATE(3156), + [sym__expression] = STATE(4125), + [sym__expression_not_binary] = STATE(4369), + [sym_conditional_expression] = STATE(4369), + [sym_assignment_expression] = STATE(4369), + [sym_pointer_expression] = STATE(3541), + [sym_unary_expression] = STATE(4369), + [sym_binary_expression] = STATE(4369), + [sym_update_expression] = STATE(4369), + [sym_cast_expression] = STATE(4369), + [sym_type_descriptor] = STATE(5995), + [sym_sizeof_expression] = STATE(4369), + [sym_offsetof_expression] = STATE(4369), + [sym_generic_expression] = STATE(4369), + [sym_subscript_expression] = STATE(3541), + [sym_call_expression] = STATE(3541), + [sym_gnu_asm_expression] = STATE(4369), + [sym_field_expression] = STATE(3541), + [sym_compound_literal_expression] = STATE(4369), + [sym_parenthesized_expression] = STATE(3541), + [sym_char_literal] = STATE(4131), + [sym_concatenated_string] = STATE(4131), + [sym_string_literal] = STATE(3542), + [sym_null] = STATE(4369), + [sym_placeholder_type_specifier] = STATE(3156), + [sym_decltype_auto] = STATE(3159), + [sym_decltype] = STATE(3027), + [sym_class_specifier] = STATE(3156), + [sym__class_name] = STATE(6872), + [sym_dependent_type] = STATE(3156), + [sym_template_type] = STATE(4771), + [sym_template_function] = STATE(4369), + [sym_raw_string_literal] = STATE(3542), + [sym_co_await_expression] = STATE(4369), + [sym_new_expression] = STATE(4369), + [sym_delete_expression] = STATE(4369), + [sym_requires_clause] = STATE(4369), + [sym_requires_expression] = STATE(4369), + [sym_lambda_expression] = STATE(4369), + [sym_lambda_capture_specifier] = STATE(5208), + [sym_fold_expression] = STATE(4369), + [sym_parameter_pack_expansion] = STATE(4369), + [sym_type_parameter_pack_expansion] = STATE(6431), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5256), + [sym_qualified_identifier] = STATE(3541), + [sym_qualified_type_identifier] = STATE(4890), + [sym_user_defined_literal] = STATE(4369), + [aux_sym_type_definition_repeat1] = STATE(3794), + [aux_sym_sized_type_specifier_repeat1] = STATE(2483), + [sym_identifier] = ACTIONS(2616), + [anon_sym_LPAREN2] = ACTIONS(2618), + [anon_sym_BANG] = ACTIONS(2620), + [anon_sym_TILDE] = ACTIONS(2620), + [anon_sym_DASH] = ACTIONS(2622), + [anon_sym_PLUS] = ACTIONS(2622), + [anon_sym_STAR] = ACTIONS(2624), + [anon_sym_AMP] = ACTIONS(2624), + [anon_sym_COLON_COLON] = ACTIONS(2626), + [anon_sym_LBRACK] = ACTIONS(1949), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(2628), + [anon_sym_unsigned] = ACTIONS(2628), + [anon_sym_long] = ACTIONS(2628), + [anon_sym_short] = ACTIONS(2628), + [sym_primitive_type] = ACTIONS(2630), + [anon_sym_enum] = ACTIONS(2632), + [anon_sym_class] = ACTIONS(2634), + [anon_sym_struct] = ACTIONS(2636), + [anon_sym_union] = ACTIONS(2638), + [anon_sym_not] = ACTIONS(2622), + [anon_sym_compl] = ACTIONS(2622), + [anon_sym_DASH_DASH] = ACTIONS(2640), + [anon_sym_PLUS_PLUS] = ACTIONS(2640), + [anon_sym_sizeof] = ACTIONS(2642), + [anon_sym_offsetof] = ACTIONS(2644), + [anon_sym__Generic] = ACTIONS(2646), + [anon_sym_asm] = ACTIONS(2648), + [anon_sym___asm__] = ACTIONS(2648), + [sym_number_literal] = ACTIONS(2650), + [anon_sym_L_SQUOTE] = ACTIONS(2652), + [anon_sym_u_SQUOTE] = ACTIONS(2652), + [anon_sym_U_SQUOTE] = ACTIONS(2652), + [anon_sym_u8_SQUOTE] = ACTIONS(2652), + [anon_sym_SQUOTE] = ACTIONS(2652), + [anon_sym_L_DQUOTE] = ACTIONS(2654), + [anon_sym_u_DQUOTE] = ACTIONS(2654), + [anon_sym_U_DQUOTE] = ACTIONS(2654), + [anon_sym_u8_DQUOTE] = ACTIONS(2654), + [anon_sym_DQUOTE] = ACTIONS(2654), + [sym_true] = ACTIONS(2656), + [sym_false] = ACTIONS(2656), + [anon_sym_NULL] = ACTIONS(2658), + [anon_sym_nullptr] = ACTIONS(2658), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2660), + [anon_sym_decltype] = ACTIONS(2662), + [anon_sym_typename] = ACTIONS(2664), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_GT2] = ACTIONS(2715), + [anon_sym_delete] = ACTIONS(2668), + [anon_sym_R_DQUOTE] = ACTIONS(2670), + [anon_sym_LR_DQUOTE] = ACTIONS(2670), + [anon_sym_uR_DQUOTE] = ACTIONS(2670), + [anon_sym_UR_DQUOTE] = ACTIONS(2670), + [anon_sym_u8R_DQUOTE] = ACTIONS(2670), + [anon_sym_co_await] = ACTIONS(2672), + [anon_sym_new] = ACTIONS(2674), + [anon_sym_requires] = ACTIONS(2676), + [sym_this] = ACTIONS(2656), }, [365] = { - [sym_identifier] = ACTIONS(2488), - [aux_sym_preproc_include_token1] = ACTIONS(2488), - [aux_sym_preproc_def_token1] = ACTIONS(2488), - [aux_sym_preproc_if_token1] = ACTIONS(2488), - [aux_sym_preproc_if_token2] = ACTIONS(2488), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2488), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2488), - [aux_sym_preproc_else_token1] = ACTIONS(2488), - [aux_sym_preproc_elif_token1] = ACTIONS(2488), - [sym_preproc_directive] = ACTIONS(2488), - [anon_sym_LPAREN2] = ACTIONS(2490), - [anon_sym_BANG] = ACTIONS(2490), - [anon_sym_TILDE] = ACTIONS(2490), - [anon_sym_DASH] = ACTIONS(2488), - [anon_sym_PLUS] = ACTIONS(2488), - [anon_sym_STAR] = ACTIONS(2490), - [anon_sym_AMP_AMP] = ACTIONS(2490), - [anon_sym_AMP] = ACTIONS(2488), - [anon_sym_SEMI] = ACTIONS(2490), - [anon_sym_typedef] = ACTIONS(2488), - [anon_sym_extern] = ACTIONS(2488), - [anon_sym___attribute__] = ACTIONS(2488), - [anon_sym_COLON_COLON] = ACTIONS(2490), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2490), - [anon_sym___declspec] = ACTIONS(2488), - [anon_sym___based] = ACTIONS(2488), - [anon_sym___cdecl] = ACTIONS(2488), - [anon_sym___clrcall] = ACTIONS(2488), - [anon_sym___stdcall] = ACTIONS(2488), - [anon_sym___fastcall] = ACTIONS(2488), - [anon_sym___thiscall] = ACTIONS(2488), - [anon_sym___vectorcall] = ACTIONS(2488), - [anon_sym_LBRACE] = ACTIONS(2490), - [anon_sym_LBRACK] = ACTIONS(2488), - [anon_sym_static] = ACTIONS(2488), - [anon_sym_register] = ACTIONS(2488), - [anon_sym_inline] = ACTIONS(2488), - [anon_sym_thread_local] = ACTIONS(2488), - [anon_sym_const] = ACTIONS(2488), - [anon_sym_volatile] = ACTIONS(2488), - [anon_sym_restrict] = ACTIONS(2488), - [anon_sym__Atomic] = ACTIONS(2488), - [anon_sym_mutable] = ACTIONS(2488), - [anon_sym_constexpr] = ACTIONS(2488), - [anon_sym_constinit] = ACTIONS(2488), - [anon_sym_consteval] = ACTIONS(2488), - [anon_sym_signed] = ACTIONS(2488), - [anon_sym_unsigned] = ACTIONS(2488), - [anon_sym_long] = ACTIONS(2488), - [anon_sym_short] = ACTIONS(2488), - [sym_primitive_type] = ACTIONS(2488), - [anon_sym_enum] = ACTIONS(2488), - [anon_sym_class] = ACTIONS(2488), - [anon_sym_struct] = ACTIONS(2488), - [anon_sym_union] = ACTIONS(2488), - [anon_sym_if] = ACTIONS(2488), - [anon_sym_else] = ACTIONS(2488), - [anon_sym_switch] = ACTIONS(2488), - [anon_sym_case] = ACTIONS(2488), - [anon_sym_default] = ACTIONS(2488), - [anon_sym_while] = ACTIONS(2488), - [anon_sym_do] = ACTIONS(2488), - [anon_sym_for] = ACTIONS(2488), - [anon_sym_return] = ACTIONS(2488), - [anon_sym_break] = ACTIONS(2488), - [anon_sym_continue] = ACTIONS(2488), - [anon_sym_goto] = ACTIONS(2488), - [anon_sym_not] = ACTIONS(2488), - [anon_sym_compl] = ACTIONS(2488), - [anon_sym_DASH_DASH] = ACTIONS(2490), - [anon_sym_PLUS_PLUS] = ACTIONS(2490), - [anon_sym_sizeof] = ACTIONS(2488), - [sym_number_literal] = ACTIONS(2490), - [anon_sym_L_SQUOTE] = ACTIONS(2490), - [anon_sym_u_SQUOTE] = ACTIONS(2490), - [anon_sym_U_SQUOTE] = ACTIONS(2490), - [anon_sym_u8_SQUOTE] = ACTIONS(2490), - [anon_sym_SQUOTE] = ACTIONS(2490), - [anon_sym_L_DQUOTE] = ACTIONS(2490), - [anon_sym_u_DQUOTE] = ACTIONS(2490), - [anon_sym_U_DQUOTE] = ACTIONS(2490), - [anon_sym_u8_DQUOTE] = ACTIONS(2490), - [anon_sym_DQUOTE] = ACTIONS(2490), - [sym_true] = ACTIONS(2488), - [sym_false] = ACTIONS(2488), - [sym_null] = ACTIONS(2488), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2488), - [anon_sym_decltype] = ACTIONS(2488), - [anon_sym_virtual] = ACTIONS(2488), - [anon_sym_explicit] = ACTIONS(2488), - [anon_sym_typename] = ACTIONS(2488), - [anon_sym_template] = ACTIONS(2488), - [anon_sym_operator] = ACTIONS(2488), - [anon_sym_try] = ACTIONS(2488), - [anon_sym_delete] = ACTIONS(2488), - [anon_sym_throw] = ACTIONS(2488), - [anon_sym_namespace] = ACTIONS(2488), - [anon_sym_using] = ACTIONS(2488), - [anon_sym_static_assert] = ACTIONS(2488), - [anon_sym_concept] = ACTIONS(2488), - [anon_sym_co_return] = ACTIONS(2488), - [anon_sym_co_yield] = ACTIONS(2488), - [anon_sym_R_DQUOTE] = ACTIONS(2490), - [anon_sym_LR_DQUOTE] = ACTIONS(2490), - [anon_sym_uR_DQUOTE] = ACTIONS(2490), - [anon_sym_UR_DQUOTE] = ACTIONS(2490), - [anon_sym_u8R_DQUOTE] = ACTIONS(2490), - [anon_sym_co_await] = ACTIONS(2488), - [anon_sym_new] = ACTIONS(2488), - [anon_sym_requires] = ACTIONS(2488), - [sym_this] = ACTIONS(2488), - [sym_nullptr] = ACTIONS(2488), + [sym_type_qualifier] = STATE(3794), + [sym__type_specifier] = STATE(4503), + [sym_sized_type_specifier] = STATE(3156), + [sym_enum_specifier] = STATE(3156), + [sym_struct_specifier] = STATE(3156), + [sym_union_specifier] = STATE(3156), + [sym__expression] = STATE(4063), + [sym__expression_not_binary] = STATE(4369), + [sym_conditional_expression] = STATE(4369), + [sym_assignment_expression] = STATE(4369), + [sym_pointer_expression] = STATE(3541), + [sym_unary_expression] = STATE(4369), + [sym_binary_expression] = STATE(4369), + [sym_update_expression] = STATE(4369), + [sym_cast_expression] = STATE(4369), + [sym_type_descriptor] = STATE(6118), + [sym_sizeof_expression] = STATE(4369), + [sym_offsetof_expression] = STATE(4369), + [sym_generic_expression] = STATE(4369), + [sym_subscript_expression] = STATE(3541), + [sym_call_expression] = STATE(3541), + [sym_gnu_asm_expression] = STATE(4369), + [sym_field_expression] = STATE(3541), + [sym_compound_literal_expression] = STATE(4369), + [sym_parenthesized_expression] = STATE(3541), + [sym_char_literal] = STATE(4131), + [sym_concatenated_string] = STATE(4131), + [sym_string_literal] = STATE(3542), + [sym_null] = STATE(4369), + [sym_placeholder_type_specifier] = STATE(3156), + [sym_decltype_auto] = STATE(3159), + [sym_decltype] = STATE(3027), + [sym_class_specifier] = STATE(3156), + [sym__class_name] = STATE(6872), + [sym_dependent_type] = STATE(3156), + [sym_template_type] = STATE(4771), + [sym_template_function] = STATE(4369), + [sym_raw_string_literal] = STATE(3542), + [sym_co_await_expression] = STATE(4369), + [sym_new_expression] = STATE(4369), + [sym_delete_expression] = STATE(4369), + [sym_requires_clause] = STATE(4369), + [sym_requires_expression] = STATE(4369), + [sym_lambda_expression] = STATE(4369), + [sym_lambda_capture_specifier] = STATE(5208), + [sym_fold_expression] = STATE(4369), + [sym_parameter_pack_expansion] = STATE(4369), + [sym_type_parameter_pack_expansion] = STATE(6248), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5256), + [sym_qualified_identifier] = STATE(3541), + [sym_qualified_type_identifier] = STATE(4890), + [sym_user_defined_literal] = STATE(4369), + [aux_sym_type_definition_repeat1] = STATE(3794), + [aux_sym_sized_type_specifier_repeat1] = STATE(2483), + [sym_identifier] = ACTIONS(2616), + [anon_sym_LPAREN2] = ACTIONS(2618), + [anon_sym_BANG] = ACTIONS(2620), + [anon_sym_TILDE] = ACTIONS(2620), + [anon_sym_DASH] = ACTIONS(2622), + [anon_sym_PLUS] = ACTIONS(2622), + [anon_sym_STAR] = ACTIONS(2624), + [anon_sym_AMP] = ACTIONS(2624), + [anon_sym_COLON_COLON] = ACTIONS(2626), + [anon_sym_LBRACK] = ACTIONS(1949), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(2628), + [anon_sym_unsigned] = ACTIONS(2628), + [anon_sym_long] = ACTIONS(2628), + [anon_sym_short] = ACTIONS(2628), + [sym_primitive_type] = ACTIONS(2630), + [anon_sym_enum] = ACTIONS(2632), + [anon_sym_class] = ACTIONS(2634), + [anon_sym_struct] = ACTIONS(2636), + [anon_sym_union] = ACTIONS(2638), + [anon_sym_not] = ACTIONS(2622), + [anon_sym_compl] = ACTIONS(2622), + [anon_sym_DASH_DASH] = ACTIONS(2640), + [anon_sym_PLUS_PLUS] = ACTIONS(2640), + [anon_sym_sizeof] = ACTIONS(2642), + [anon_sym_offsetof] = ACTIONS(2644), + [anon_sym__Generic] = ACTIONS(2646), + [anon_sym_asm] = ACTIONS(2648), + [anon_sym___asm__] = ACTIONS(2648), + [sym_number_literal] = ACTIONS(2650), + [anon_sym_L_SQUOTE] = ACTIONS(2652), + [anon_sym_u_SQUOTE] = ACTIONS(2652), + [anon_sym_U_SQUOTE] = ACTIONS(2652), + [anon_sym_u8_SQUOTE] = ACTIONS(2652), + [anon_sym_SQUOTE] = ACTIONS(2652), + [anon_sym_L_DQUOTE] = ACTIONS(2654), + [anon_sym_u_DQUOTE] = ACTIONS(2654), + [anon_sym_U_DQUOTE] = ACTIONS(2654), + [anon_sym_u8_DQUOTE] = ACTIONS(2654), + [anon_sym_DQUOTE] = ACTIONS(2654), + [sym_true] = ACTIONS(2656), + [sym_false] = ACTIONS(2656), + [anon_sym_NULL] = ACTIONS(2658), + [anon_sym_nullptr] = ACTIONS(2658), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2660), + [anon_sym_decltype] = ACTIONS(2662), + [anon_sym_typename] = ACTIONS(2664), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_GT2] = ACTIONS(2717), + [anon_sym_delete] = ACTIONS(2668), + [anon_sym_R_DQUOTE] = ACTIONS(2670), + [anon_sym_LR_DQUOTE] = ACTIONS(2670), + [anon_sym_uR_DQUOTE] = ACTIONS(2670), + [anon_sym_UR_DQUOTE] = ACTIONS(2670), + [anon_sym_u8R_DQUOTE] = ACTIONS(2670), + [anon_sym_co_await] = ACTIONS(2672), + [anon_sym_new] = ACTIONS(2674), + [anon_sym_requires] = ACTIONS(2676), + [sym_this] = ACTIONS(2656), }, [366] = { - [sym_identifier] = ACTIONS(2492), - [aux_sym_preproc_include_token1] = ACTIONS(2492), - [aux_sym_preproc_def_token1] = ACTIONS(2492), - [aux_sym_preproc_if_token1] = ACTIONS(2492), - [aux_sym_preproc_if_token2] = ACTIONS(2492), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2492), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2492), - [aux_sym_preproc_else_token1] = ACTIONS(2492), - [aux_sym_preproc_elif_token1] = ACTIONS(2492), - [sym_preproc_directive] = ACTIONS(2492), - [anon_sym_LPAREN2] = ACTIONS(2494), - [anon_sym_BANG] = ACTIONS(2494), - [anon_sym_TILDE] = ACTIONS(2494), - [anon_sym_DASH] = ACTIONS(2492), - [anon_sym_PLUS] = ACTIONS(2492), - [anon_sym_STAR] = ACTIONS(2494), - [anon_sym_AMP_AMP] = ACTIONS(2494), - [anon_sym_AMP] = ACTIONS(2492), - [anon_sym_SEMI] = ACTIONS(2494), - [anon_sym_typedef] = ACTIONS(2492), - [anon_sym_extern] = ACTIONS(2492), - [anon_sym___attribute__] = ACTIONS(2492), - [anon_sym_COLON_COLON] = ACTIONS(2494), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2494), - [anon_sym___declspec] = ACTIONS(2492), - [anon_sym___based] = ACTIONS(2492), - [anon_sym___cdecl] = ACTIONS(2492), - [anon_sym___clrcall] = ACTIONS(2492), - [anon_sym___stdcall] = ACTIONS(2492), - [anon_sym___fastcall] = ACTIONS(2492), - [anon_sym___thiscall] = ACTIONS(2492), - [anon_sym___vectorcall] = ACTIONS(2492), - [anon_sym_LBRACE] = ACTIONS(2494), - [anon_sym_LBRACK] = ACTIONS(2492), - [anon_sym_static] = ACTIONS(2492), - [anon_sym_register] = ACTIONS(2492), - [anon_sym_inline] = ACTIONS(2492), - [anon_sym_thread_local] = ACTIONS(2492), - [anon_sym_const] = ACTIONS(2492), - [anon_sym_volatile] = ACTIONS(2492), - [anon_sym_restrict] = ACTIONS(2492), - [anon_sym__Atomic] = ACTIONS(2492), - [anon_sym_mutable] = ACTIONS(2492), - [anon_sym_constexpr] = ACTIONS(2492), - [anon_sym_constinit] = ACTIONS(2492), - [anon_sym_consteval] = ACTIONS(2492), - [anon_sym_signed] = ACTIONS(2492), - [anon_sym_unsigned] = ACTIONS(2492), - [anon_sym_long] = ACTIONS(2492), - [anon_sym_short] = ACTIONS(2492), - [sym_primitive_type] = ACTIONS(2492), - [anon_sym_enum] = ACTIONS(2492), - [anon_sym_class] = ACTIONS(2492), - [anon_sym_struct] = ACTIONS(2492), - [anon_sym_union] = ACTIONS(2492), - [anon_sym_if] = ACTIONS(2492), - [anon_sym_else] = ACTIONS(2492), - [anon_sym_switch] = ACTIONS(2492), - [anon_sym_case] = ACTIONS(2492), - [anon_sym_default] = ACTIONS(2492), - [anon_sym_while] = ACTIONS(2492), - [anon_sym_do] = ACTIONS(2492), - [anon_sym_for] = ACTIONS(2492), - [anon_sym_return] = ACTIONS(2492), - [anon_sym_break] = ACTIONS(2492), - [anon_sym_continue] = ACTIONS(2492), - [anon_sym_goto] = ACTIONS(2492), - [anon_sym_not] = ACTIONS(2492), - [anon_sym_compl] = ACTIONS(2492), - [anon_sym_DASH_DASH] = ACTIONS(2494), - [anon_sym_PLUS_PLUS] = ACTIONS(2494), - [anon_sym_sizeof] = ACTIONS(2492), - [sym_number_literal] = ACTIONS(2494), - [anon_sym_L_SQUOTE] = ACTIONS(2494), - [anon_sym_u_SQUOTE] = ACTIONS(2494), - [anon_sym_U_SQUOTE] = ACTIONS(2494), - [anon_sym_u8_SQUOTE] = ACTIONS(2494), - [anon_sym_SQUOTE] = ACTIONS(2494), - [anon_sym_L_DQUOTE] = ACTIONS(2494), - [anon_sym_u_DQUOTE] = ACTIONS(2494), - [anon_sym_U_DQUOTE] = ACTIONS(2494), - [anon_sym_u8_DQUOTE] = ACTIONS(2494), - [anon_sym_DQUOTE] = ACTIONS(2494), - [sym_true] = ACTIONS(2492), - [sym_false] = ACTIONS(2492), - [sym_null] = ACTIONS(2492), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2492), - [anon_sym_decltype] = ACTIONS(2492), - [anon_sym_virtual] = ACTIONS(2492), - [anon_sym_explicit] = ACTIONS(2492), - [anon_sym_typename] = ACTIONS(2492), - [anon_sym_template] = ACTIONS(2492), - [anon_sym_operator] = ACTIONS(2492), - [anon_sym_try] = ACTIONS(2492), - [anon_sym_delete] = ACTIONS(2492), - [anon_sym_throw] = ACTIONS(2492), - [anon_sym_namespace] = ACTIONS(2492), - [anon_sym_using] = ACTIONS(2492), - [anon_sym_static_assert] = ACTIONS(2492), - [anon_sym_concept] = ACTIONS(2492), - [anon_sym_co_return] = ACTIONS(2492), - [anon_sym_co_yield] = ACTIONS(2492), - [anon_sym_R_DQUOTE] = ACTIONS(2494), - [anon_sym_LR_DQUOTE] = ACTIONS(2494), - [anon_sym_uR_DQUOTE] = ACTIONS(2494), - [anon_sym_UR_DQUOTE] = ACTIONS(2494), - [anon_sym_u8R_DQUOTE] = ACTIONS(2494), - [anon_sym_co_await] = ACTIONS(2492), - [anon_sym_new] = ACTIONS(2492), - [anon_sym_requires] = ACTIONS(2492), - [sym_this] = ACTIONS(2492), - [sym_nullptr] = ACTIONS(2492), + [sym_type_qualifier] = STATE(3794), + [sym__type_specifier] = STATE(4503), + [sym_sized_type_specifier] = STATE(3156), + [sym_enum_specifier] = STATE(3156), + [sym_struct_specifier] = STATE(3156), + [sym_union_specifier] = STATE(3156), + [sym__expression] = STATE(4067), + [sym__expression_not_binary] = STATE(4369), + [sym_conditional_expression] = STATE(4369), + [sym_assignment_expression] = STATE(4369), + [sym_pointer_expression] = STATE(3541), + [sym_unary_expression] = STATE(4369), + [sym_binary_expression] = STATE(4369), + [sym_update_expression] = STATE(4369), + [sym_cast_expression] = STATE(4369), + [sym_type_descriptor] = STATE(6009), + [sym_sizeof_expression] = STATE(4369), + [sym_offsetof_expression] = STATE(4369), + [sym_generic_expression] = STATE(4369), + [sym_subscript_expression] = STATE(3541), + [sym_call_expression] = STATE(3541), + [sym_gnu_asm_expression] = STATE(4369), + [sym_field_expression] = STATE(3541), + [sym_compound_literal_expression] = STATE(4369), + [sym_parenthesized_expression] = STATE(3541), + [sym_char_literal] = STATE(4131), + [sym_concatenated_string] = STATE(4131), + [sym_string_literal] = STATE(3542), + [sym_null] = STATE(4369), + [sym_placeholder_type_specifier] = STATE(3156), + [sym_decltype_auto] = STATE(3159), + [sym_decltype] = STATE(3027), + [sym_class_specifier] = STATE(3156), + [sym__class_name] = STATE(6872), + [sym_dependent_type] = STATE(3156), + [sym_template_type] = STATE(4771), + [sym_template_function] = STATE(4369), + [sym_raw_string_literal] = STATE(3542), + [sym_co_await_expression] = STATE(4369), + [sym_new_expression] = STATE(4369), + [sym_delete_expression] = STATE(4369), + [sym_requires_clause] = STATE(4369), + [sym_requires_expression] = STATE(4369), + [sym_lambda_expression] = STATE(4369), + [sym_lambda_capture_specifier] = STATE(5208), + [sym_fold_expression] = STATE(4369), + [sym_parameter_pack_expansion] = STATE(4369), + [sym_type_parameter_pack_expansion] = STATE(6493), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5256), + [sym_qualified_identifier] = STATE(3541), + [sym_qualified_type_identifier] = STATE(4890), + [sym_user_defined_literal] = STATE(4369), + [aux_sym_type_definition_repeat1] = STATE(3794), + [aux_sym_sized_type_specifier_repeat1] = STATE(2483), + [sym_identifier] = ACTIONS(2616), + [anon_sym_LPAREN2] = ACTIONS(2618), + [anon_sym_BANG] = ACTIONS(2620), + [anon_sym_TILDE] = ACTIONS(2620), + [anon_sym_DASH] = ACTIONS(2622), + [anon_sym_PLUS] = ACTIONS(2622), + [anon_sym_STAR] = ACTIONS(2624), + [anon_sym_AMP] = ACTIONS(2624), + [anon_sym_COLON_COLON] = ACTIONS(2626), + [anon_sym_LBRACK] = ACTIONS(1949), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(2628), + [anon_sym_unsigned] = ACTIONS(2628), + [anon_sym_long] = ACTIONS(2628), + [anon_sym_short] = ACTIONS(2628), + [sym_primitive_type] = ACTIONS(2630), + [anon_sym_enum] = ACTIONS(2632), + [anon_sym_class] = ACTIONS(2634), + [anon_sym_struct] = ACTIONS(2636), + [anon_sym_union] = ACTIONS(2638), + [anon_sym_not] = ACTIONS(2622), + [anon_sym_compl] = ACTIONS(2622), + [anon_sym_DASH_DASH] = ACTIONS(2640), + [anon_sym_PLUS_PLUS] = ACTIONS(2640), + [anon_sym_sizeof] = ACTIONS(2642), + [anon_sym_offsetof] = ACTIONS(2644), + [anon_sym__Generic] = ACTIONS(2646), + [anon_sym_asm] = ACTIONS(2648), + [anon_sym___asm__] = ACTIONS(2648), + [sym_number_literal] = ACTIONS(2650), + [anon_sym_L_SQUOTE] = ACTIONS(2652), + [anon_sym_u_SQUOTE] = ACTIONS(2652), + [anon_sym_U_SQUOTE] = ACTIONS(2652), + [anon_sym_u8_SQUOTE] = ACTIONS(2652), + [anon_sym_SQUOTE] = ACTIONS(2652), + [anon_sym_L_DQUOTE] = ACTIONS(2654), + [anon_sym_u_DQUOTE] = ACTIONS(2654), + [anon_sym_U_DQUOTE] = ACTIONS(2654), + [anon_sym_u8_DQUOTE] = ACTIONS(2654), + [anon_sym_DQUOTE] = ACTIONS(2654), + [sym_true] = ACTIONS(2656), + [sym_false] = ACTIONS(2656), + [anon_sym_NULL] = ACTIONS(2658), + [anon_sym_nullptr] = ACTIONS(2658), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2660), + [anon_sym_decltype] = ACTIONS(2662), + [anon_sym_typename] = ACTIONS(2664), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_GT2] = ACTIONS(2719), + [anon_sym_delete] = ACTIONS(2668), + [anon_sym_R_DQUOTE] = ACTIONS(2670), + [anon_sym_LR_DQUOTE] = ACTIONS(2670), + [anon_sym_uR_DQUOTE] = ACTIONS(2670), + [anon_sym_UR_DQUOTE] = ACTIONS(2670), + [anon_sym_u8R_DQUOTE] = ACTIONS(2670), + [anon_sym_co_await] = ACTIONS(2672), + [anon_sym_new] = ACTIONS(2674), + [anon_sym_requires] = ACTIONS(2676), + [sym_this] = ACTIONS(2656), }, [367] = { - [sym_identifier] = ACTIONS(2462), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2464), - [anon_sym_AMP] = ACTIONS(2462), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_explicit] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_operator] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_namespace] = ACTIONS(2462), - [anon_sym_using] = ACTIONS(2462), - [anon_sym_static_assert] = ACTIONS(2462), - [anon_sym_concept] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_catch_clause] = STATE(353), + [aux_sym_constructor_try_statement_repeat1] = STATE(353), + [sym_identifier] = ACTIONS(2721), + [aux_sym_preproc_include_token1] = ACTIONS(2721), + [aux_sym_preproc_def_token1] = ACTIONS(2721), + [aux_sym_preproc_if_token1] = ACTIONS(2721), + [aux_sym_preproc_if_token2] = ACTIONS(2721), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2721), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2721), + [aux_sym_preproc_else_token1] = ACTIONS(2721), + [aux_sym_preproc_elif_token1] = ACTIONS(2721), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2721), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2721), + [sym_preproc_directive] = ACTIONS(2721), + [anon_sym_LPAREN2] = ACTIONS(2723), + [anon_sym_BANG] = ACTIONS(2723), + [anon_sym_TILDE] = ACTIONS(2723), + [anon_sym_DASH] = ACTIONS(2721), + [anon_sym_PLUS] = ACTIONS(2721), + [anon_sym_STAR] = ACTIONS(2723), + [anon_sym_AMP_AMP] = ACTIONS(2723), + [anon_sym_AMP] = ACTIONS(2721), + [anon_sym_SEMI] = ACTIONS(2723), + [anon_sym_typedef] = ACTIONS(2721), + [anon_sym_extern] = ACTIONS(2721), + [anon_sym___attribute__] = ACTIONS(2721), + [anon_sym_COLON_COLON] = ACTIONS(2723), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2723), + [anon_sym___declspec] = ACTIONS(2721), + [anon_sym___based] = ACTIONS(2721), + [anon_sym___cdecl] = ACTIONS(2721), + [anon_sym___clrcall] = ACTIONS(2721), + [anon_sym___stdcall] = ACTIONS(2721), + [anon_sym___fastcall] = ACTIONS(2721), + [anon_sym___thiscall] = ACTIONS(2721), + [anon_sym___vectorcall] = ACTIONS(2721), + [anon_sym_LBRACE] = ACTIONS(2723), + [anon_sym_LBRACK] = ACTIONS(2721), + [anon_sym_static] = ACTIONS(2721), + [anon_sym_register] = ACTIONS(2721), + [anon_sym_inline] = ACTIONS(2721), + [anon_sym_thread_local] = ACTIONS(2721), + [anon_sym_const] = ACTIONS(2721), + [anon_sym_constexpr] = ACTIONS(2721), + [anon_sym_volatile] = ACTIONS(2721), + [anon_sym_restrict] = ACTIONS(2721), + [anon_sym___restrict__] = ACTIONS(2721), + [anon_sym__Atomic] = ACTIONS(2721), + [anon_sym__Noreturn] = ACTIONS(2721), + [anon_sym_noreturn] = ACTIONS(2721), + [anon_sym_mutable] = ACTIONS(2721), + [anon_sym_constinit] = ACTIONS(2721), + [anon_sym_consteval] = ACTIONS(2721), + [anon_sym_signed] = ACTIONS(2721), + [anon_sym_unsigned] = ACTIONS(2721), + [anon_sym_long] = ACTIONS(2721), + [anon_sym_short] = ACTIONS(2721), + [sym_primitive_type] = ACTIONS(2721), + [anon_sym_enum] = ACTIONS(2721), + [anon_sym_class] = ACTIONS(2721), + [anon_sym_struct] = ACTIONS(2721), + [anon_sym_union] = ACTIONS(2721), + [anon_sym_if] = ACTIONS(2721), + [anon_sym_switch] = ACTIONS(2721), + [anon_sym_case] = ACTIONS(2721), + [anon_sym_default] = ACTIONS(2721), + [anon_sym_while] = ACTIONS(2721), + [anon_sym_do] = ACTIONS(2721), + [anon_sym_for] = ACTIONS(2721), + [anon_sym_return] = ACTIONS(2721), + [anon_sym_break] = ACTIONS(2721), + [anon_sym_continue] = ACTIONS(2721), + [anon_sym_goto] = ACTIONS(2721), + [anon_sym_not] = ACTIONS(2721), + [anon_sym_compl] = ACTIONS(2721), + [anon_sym_DASH_DASH] = ACTIONS(2723), + [anon_sym_PLUS_PLUS] = ACTIONS(2723), + [anon_sym_sizeof] = ACTIONS(2721), + [anon_sym_offsetof] = ACTIONS(2721), + [anon_sym__Generic] = ACTIONS(2721), + [anon_sym_asm] = ACTIONS(2721), + [anon_sym___asm__] = ACTIONS(2721), + [sym_number_literal] = ACTIONS(2723), + [anon_sym_L_SQUOTE] = ACTIONS(2723), + [anon_sym_u_SQUOTE] = ACTIONS(2723), + [anon_sym_U_SQUOTE] = ACTIONS(2723), + [anon_sym_u8_SQUOTE] = ACTIONS(2723), + [anon_sym_SQUOTE] = ACTIONS(2723), + [anon_sym_L_DQUOTE] = ACTIONS(2723), + [anon_sym_u_DQUOTE] = ACTIONS(2723), + [anon_sym_U_DQUOTE] = ACTIONS(2723), + [anon_sym_u8_DQUOTE] = ACTIONS(2723), + [anon_sym_DQUOTE] = ACTIONS(2723), + [sym_true] = ACTIONS(2721), + [sym_false] = ACTIONS(2721), + [anon_sym_NULL] = ACTIONS(2721), + [anon_sym_nullptr] = ACTIONS(2721), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2721), + [anon_sym_decltype] = ACTIONS(2721), + [anon_sym_virtual] = ACTIONS(2721), + [anon_sym_explicit] = ACTIONS(2721), + [anon_sym_typename] = ACTIONS(2721), + [anon_sym_template] = ACTIONS(2721), + [anon_sym_operator] = ACTIONS(2721), + [anon_sym_try] = ACTIONS(2721), + [anon_sym_delete] = ACTIONS(2721), + [anon_sym_throw] = ACTIONS(2721), + [anon_sym_namespace] = ACTIONS(2721), + [anon_sym_using] = ACTIONS(2721), + [anon_sym_static_assert] = ACTIONS(2721), + [anon_sym_concept] = ACTIONS(2721), + [anon_sym_co_return] = ACTIONS(2721), + [anon_sym_co_yield] = ACTIONS(2721), + [anon_sym_catch] = ACTIONS(2713), + [anon_sym_R_DQUOTE] = ACTIONS(2723), + [anon_sym_LR_DQUOTE] = ACTIONS(2723), + [anon_sym_uR_DQUOTE] = ACTIONS(2723), + [anon_sym_UR_DQUOTE] = ACTIONS(2723), + [anon_sym_u8R_DQUOTE] = ACTIONS(2723), + [anon_sym_co_await] = ACTIONS(2721), + [anon_sym_new] = ACTIONS(2721), + [anon_sym_requires] = ACTIONS(2721), + [sym_this] = ACTIONS(2721), }, [368] = { - [sym_catch_clause] = STATE(342), - [aux_sym_constructor_try_statement_repeat1] = STATE(342), - [ts_builtin_sym_end] = ACTIONS(2383), - [sym_identifier] = ACTIONS(2381), - [aux_sym_preproc_include_token1] = ACTIONS(2381), - [aux_sym_preproc_def_token1] = ACTIONS(2381), - [aux_sym_preproc_if_token1] = ACTIONS(2381), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2381), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2381), - [sym_preproc_directive] = ACTIONS(2381), - [anon_sym_LPAREN2] = ACTIONS(2383), - [anon_sym_BANG] = ACTIONS(2383), - [anon_sym_TILDE] = ACTIONS(2383), - [anon_sym_DASH] = ACTIONS(2381), - [anon_sym_PLUS] = ACTIONS(2381), - [anon_sym_STAR] = ACTIONS(2383), - [anon_sym_AMP_AMP] = ACTIONS(2383), - [anon_sym_AMP] = ACTIONS(2381), - [anon_sym_SEMI] = ACTIONS(2383), - [anon_sym_typedef] = ACTIONS(2381), - [anon_sym_extern] = ACTIONS(2381), - [anon_sym___attribute__] = ACTIONS(2381), - [anon_sym_COLON_COLON] = ACTIONS(2383), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2383), - [anon_sym___declspec] = ACTIONS(2381), - [anon_sym___based] = ACTIONS(2381), - [anon_sym___cdecl] = ACTIONS(2381), - [anon_sym___clrcall] = ACTIONS(2381), - [anon_sym___stdcall] = ACTIONS(2381), - [anon_sym___fastcall] = ACTIONS(2381), - [anon_sym___thiscall] = ACTIONS(2381), - [anon_sym___vectorcall] = ACTIONS(2381), - [anon_sym_LBRACE] = ACTIONS(2383), - [anon_sym_LBRACK] = ACTIONS(2381), - [anon_sym_static] = ACTIONS(2381), - [anon_sym_register] = ACTIONS(2381), - [anon_sym_inline] = ACTIONS(2381), - [anon_sym_thread_local] = ACTIONS(2381), - [anon_sym_const] = ACTIONS(2381), - [anon_sym_volatile] = ACTIONS(2381), - [anon_sym_restrict] = ACTIONS(2381), - [anon_sym__Atomic] = ACTIONS(2381), - [anon_sym_mutable] = ACTIONS(2381), - [anon_sym_constexpr] = ACTIONS(2381), - [anon_sym_constinit] = ACTIONS(2381), - [anon_sym_consteval] = ACTIONS(2381), - [anon_sym_signed] = ACTIONS(2381), - [anon_sym_unsigned] = ACTIONS(2381), - [anon_sym_long] = ACTIONS(2381), - [anon_sym_short] = ACTIONS(2381), - [sym_primitive_type] = ACTIONS(2381), - [anon_sym_enum] = ACTIONS(2381), - [anon_sym_class] = ACTIONS(2381), - [anon_sym_struct] = ACTIONS(2381), - [anon_sym_union] = ACTIONS(2381), - [anon_sym_if] = ACTIONS(2381), - [anon_sym_switch] = ACTIONS(2381), - [anon_sym_case] = ACTIONS(2381), - [anon_sym_default] = ACTIONS(2381), - [anon_sym_while] = ACTIONS(2381), - [anon_sym_do] = ACTIONS(2381), - [anon_sym_for] = ACTIONS(2381), - [anon_sym_return] = ACTIONS(2381), - [anon_sym_break] = ACTIONS(2381), - [anon_sym_continue] = ACTIONS(2381), - [anon_sym_goto] = ACTIONS(2381), - [anon_sym_not] = ACTIONS(2381), - [anon_sym_compl] = ACTIONS(2381), - [anon_sym_DASH_DASH] = ACTIONS(2383), - [anon_sym_PLUS_PLUS] = ACTIONS(2383), - [anon_sym_sizeof] = ACTIONS(2381), - [sym_number_literal] = ACTIONS(2383), - [anon_sym_L_SQUOTE] = ACTIONS(2383), - [anon_sym_u_SQUOTE] = ACTIONS(2383), - [anon_sym_U_SQUOTE] = ACTIONS(2383), - [anon_sym_u8_SQUOTE] = ACTIONS(2383), - [anon_sym_SQUOTE] = ACTIONS(2383), - [anon_sym_L_DQUOTE] = ACTIONS(2383), - [anon_sym_u_DQUOTE] = ACTIONS(2383), - [anon_sym_U_DQUOTE] = ACTIONS(2383), - [anon_sym_u8_DQUOTE] = ACTIONS(2383), - [anon_sym_DQUOTE] = ACTIONS(2383), - [sym_true] = ACTIONS(2381), - [sym_false] = ACTIONS(2381), - [sym_null] = ACTIONS(2381), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2381), - [anon_sym_decltype] = ACTIONS(2381), - [anon_sym_virtual] = ACTIONS(2381), - [anon_sym_explicit] = ACTIONS(2381), - [anon_sym_typename] = ACTIONS(2381), - [anon_sym_template] = ACTIONS(2381), - [anon_sym_operator] = ACTIONS(2381), - [anon_sym_try] = ACTIONS(2381), - [anon_sym_delete] = ACTIONS(2381), - [anon_sym_throw] = ACTIONS(2381), - [anon_sym_namespace] = ACTIONS(2381), - [anon_sym_using] = ACTIONS(2381), - [anon_sym_static_assert] = ACTIONS(2381), - [anon_sym_concept] = ACTIONS(2381), - [anon_sym_co_return] = ACTIONS(2381), - [anon_sym_co_yield] = ACTIONS(2381), - [anon_sym_catch] = ACTIONS(2402), - [anon_sym_R_DQUOTE] = ACTIONS(2383), - [anon_sym_LR_DQUOTE] = ACTIONS(2383), - [anon_sym_uR_DQUOTE] = ACTIONS(2383), - [anon_sym_UR_DQUOTE] = ACTIONS(2383), - [anon_sym_u8R_DQUOTE] = ACTIONS(2383), - [anon_sym_co_await] = ACTIONS(2381), - [anon_sym_new] = ACTIONS(2381), - [anon_sym_requires] = ACTIONS(2381), - [sym_this] = ACTIONS(2381), - [sym_nullptr] = ACTIONS(2381), + [sym_preproc_def] = STATE(382), + [sym_preproc_function_def] = STATE(382), + [sym_preproc_call] = STATE(382), + [sym_preproc_if_in_field_declaration_list] = STATE(382), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(382), + [sym_preproc_else_in_field_declaration_list] = STATE(7600), + [sym_preproc_elif_in_field_declaration_list] = STATE(7600), + [sym_type_definition] = STATE(382), + [sym__declaration_modifiers] = STATE(3706), + [sym__declaration_specifiers] = STATE(4883), + [sym_attribute_specifier] = STATE(3706), + [sym_attribute_declaration] = STATE(3706), + [sym_ms_declspec_modifier] = STATE(3706), + [sym_ms_based_modifier] = STATE(7654), + [sym__declarator] = STATE(5881), + [sym_parenthesized_declarator] = STATE(5640), + [sym_attributed_declarator] = STATE(5640), + [sym_pointer_declarator] = STATE(5640), + [sym_function_declarator] = STATE(5541), + [sym_array_declarator] = STATE(5640), + [sym_storage_class_specifier] = STATE(3706), + [sym_type_qualifier] = STATE(3706), + [sym__type_specifier] = STATE(3845), + [sym_sized_type_specifier] = STATE(3918), + [sym_enum_specifier] = STATE(3918), + [sym_struct_specifier] = STATE(3918), + [sym_union_specifier] = STATE(3918), + [sym__field_declaration_list_item] = STATE(382), + [sym_field_declaration] = STATE(382), + [sym_placeholder_type_specifier] = STATE(3918), + [sym_decltype_auto] = STATE(3916), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3918), + [sym_virtual] = STATE(3706), + [sym_explicit_function_specifier] = STATE(2243), + [sym_dependent_type] = STATE(3918), + [sym_template_declaration] = STATE(382), + [sym_operator_cast] = STATE(5916), + [sym_inline_method_definition] = STATE(382), + [sym__constructor_specifiers] = STATE(2243), + [sym_operator_cast_definition] = STATE(382), + [sym_operator_cast_declaration] = STATE(382), + [sym_constructor_or_destructor_definition] = STATE(382), + [sym_constructor_or_destructor_declaration] = STATE(382), + [sym_friend_declaration] = STATE(382), + [sym_access_specifier] = STATE(7553), + [sym_reference_declarator] = STATE(5640), + [sym_structured_binding_declarator] = STATE(5640), + [sym_template_type] = STATE(3680), + [sym_template_function] = STATE(5640), + [sym_using_declaration] = STATE(382), + [sym_alias_declaration] = STATE(382), + [sym_static_assert_declaration] = STATE(382), + [sym_destructor_name] = STATE(5640), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5151), + [sym_qualified_identifier] = STATE(5640), + [sym_qualified_type_identifier] = STATE(3966), + [sym_qualified_operator_cast_identifier] = STATE(5916), + [sym_operator_name] = STATE(5640), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(382), + [aux_sym__declaration_specifiers_repeat1] = STATE(2509), + [aux_sym_sized_type_specifier_repeat1] = STATE(3981), + [aux_sym_operator_cast_definition_repeat1] = STATE(2243), + [sym_identifier] = ACTIONS(2544), + [aux_sym_preproc_def_token1] = ACTIONS(2725), + [aux_sym_preproc_if_token1] = ACTIONS(2727), + [aux_sym_preproc_if_token2] = ACTIONS(2729), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2731), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2731), + [aux_sym_preproc_else_token1] = ACTIONS(2554), + [aux_sym_preproc_elif_token1] = ACTIONS(2556), + [sym_preproc_directive] = ACTIONS(2733), + [anon_sym_LPAREN2] = ACTIONS(2560), + [anon_sym_TILDE] = ACTIONS(2562), + [anon_sym_STAR] = ACTIONS(2564), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_typedef] = ACTIONS(2735), + [anon_sym_extern] = ACTIONS(53), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(2570), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1813), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(2572), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(53), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(2574), + [anon_sym_unsigned] = ACTIONS(2574), + [anon_sym_long] = ACTIONS(2574), + [anon_sym_short] = ACTIONS(2574), + [sym_primitive_type] = ACTIONS(2576), + [anon_sym_enum] = ACTIONS(2578), + [anon_sym_class] = ACTIONS(2580), + [anon_sym_struct] = ACTIONS(2582), + [anon_sym_union] = ACTIONS(2584), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2586), + [anon_sym_decltype] = ACTIONS(2588), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_explicit] = ACTIONS(119), + [anon_sym_typename] = ACTIONS(2590), + [anon_sym_template] = ACTIONS(2737), + [anon_sym_operator] = ACTIONS(125), + [anon_sym_friend] = ACTIONS(2739), + [anon_sym_public] = ACTIONS(2596), + [anon_sym_private] = ACTIONS(2596), + [anon_sym_protected] = ACTIONS(2596), + [anon_sym_using] = ACTIONS(2741), + [anon_sym_static_assert] = ACTIONS(2743), }, [369] = { - [sym_identifier] = ACTIONS(2462), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2464), - [anon_sym_AMP] = ACTIONS(2462), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_explicit] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_operator] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_namespace] = ACTIONS(2462), - [anon_sym_using] = ACTIONS(2462), - [anon_sym_static_assert] = ACTIONS(2462), - [anon_sym_concept] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_preproc_def] = STATE(430), + [sym_preproc_function_def] = STATE(430), + [sym_preproc_call] = STATE(430), + [sym_preproc_if_in_field_declaration_list] = STATE(430), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(430), + [sym_preproc_else_in_field_declaration_list] = STATE(7586), + [sym_preproc_elif_in_field_declaration_list] = STATE(7586), + [sym_type_definition] = STATE(430), + [sym__declaration_modifiers] = STATE(3706), + [sym__declaration_specifiers] = STATE(4883), + [sym_attribute_specifier] = STATE(3706), + [sym_attribute_declaration] = STATE(3706), + [sym_ms_declspec_modifier] = STATE(3706), + [sym_ms_based_modifier] = STATE(7654), + [sym__declarator] = STATE(5881), + [sym_parenthesized_declarator] = STATE(5640), + [sym_attributed_declarator] = STATE(5640), + [sym_pointer_declarator] = STATE(5640), + [sym_function_declarator] = STATE(5541), + [sym_array_declarator] = STATE(5640), + [sym_storage_class_specifier] = STATE(3706), + [sym_type_qualifier] = STATE(3706), + [sym__type_specifier] = STATE(3845), + [sym_sized_type_specifier] = STATE(3918), + [sym_enum_specifier] = STATE(3918), + [sym_struct_specifier] = STATE(3918), + [sym_union_specifier] = STATE(3918), + [sym__field_declaration_list_item] = STATE(430), + [sym_field_declaration] = STATE(430), + [sym_placeholder_type_specifier] = STATE(3918), + [sym_decltype_auto] = STATE(3916), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3918), + [sym_virtual] = STATE(3706), + [sym_explicit_function_specifier] = STATE(2243), + [sym_dependent_type] = STATE(3918), + [sym_template_declaration] = STATE(430), + [sym_operator_cast] = STATE(5916), + [sym_inline_method_definition] = STATE(430), + [sym__constructor_specifiers] = STATE(2243), + [sym_operator_cast_definition] = STATE(430), + [sym_operator_cast_declaration] = STATE(430), + [sym_constructor_or_destructor_definition] = STATE(430), + [sym_constructor_or_destructor_declaration] = STATE(430), + [sym_friend_declaration] = STATE(430), + [sym_access_specifier] = STATE(7553), + [sym_reference_declarator] = STATE(5640), + [sym_structured_binding_declarator] = STATE(5640), + [sym_template_type] = STATE(3680), + [sym_template_function] = STATE(5640), + [sym_using_declaration] = STATE(430), + [sym_alias_declaration] = STATE(430), + [sym_static_assert_declaration] = STATE(430), + [sym_destructor_name] = STATE(5640), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5151), + [sym_qualified_identifier] = STATE(5640), + [sym_qualified_type_identifier] = STATE(3966), + [sym_qualified_operator_cast_identifier] = STATE(5916), + [sym_operator_name] = STATE(5640), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(430), + [aux_sym__declaration_specifiers_repeat1] = STATE(2509), + [aux_sym_sized_type_specifier_repeat1] = STATE(3981), + [aux_sym_operator_cast_definition_repeat1] = STATE(2243), + [sym_identifier] = ACTIONS(2544), + [aux_sym_preproc_def_token1] = ACTIONS(2725), + [aux_sym_preproc_if_token1] = ACTIONS(2727), + [aux_sym_preproc_if_token2] = ACTIONS(2745), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2731), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2731), + [aux_sym_preproc_else_token1] = ACTIONS(2554), + [aux_sym_preproc_elif_token1] = ACTIONS(2556), + [sym_preproc_directive] = ACTIONS(2733), + [anon_sym_LPAREN2] = ACTIONS(2560), + [anon_sym_TILDE] = ACTIONS(2562), + [anon_sym_STAR] = ACTIONS(2564), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_typedef] = ACTIONS(2735), + [anon_sym_extern] = ACTIONS(53), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(2570), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1813), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(2572), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(53), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(2574), + [anon_sym_unsigned] = ACTIONS(2574), + [anon_sym_long] = ACTIONS(2574), + [anon_sym_short] = ACTIONS(2574), + [sym_primitive_type] = ACTIONS(2576), + [anon_sym_enum] = ACTIONS(2578), + [anon_sym_class] = ACTIONS(2580), + [anon_sym_struct] = ACTIONS(2582), + [anon_sym_union] = ACTIONS(2584), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2586), + [anon_sym_decltype] = ACTIONS(2588), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_explicit] = ACTIONS(119), + [anon_sym_typename] = ACTIONS(2590), + [anon_sym_template] = ACTIONS(2737), + [anon_sym_operator] = ACTIONS(125), + [anon_sym_friend] = ACTIONS(2739), + [anon_sym_public] = ACTIONS(2596), + [anon_sym_private] = ACTIONS(2596), + [anon_sym_protected] = ACTIONS(2596), + [anon_sym_using] = ACTIONS(2741), + [anon_sym_static_assert] = ACTIONS(2743), }, [370] = { - [sym_identifier] = ACTIONS(2462), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2464), - [anon_sym_AMP] = ACTIONS(2462), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_explicit] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_operator] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_namespace] = ACTIONS(2462), - [anon_sym_using] = ACTIONS(2462), - [anon_sym_static_assert] = ACTIONS(2462), - [anon_sym_concept] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_preproc_def] = STATE(370), + [sym_preproc_function_def] = STATE(370), + [sym_preproc_call] = STATE(370), + [sym_preproc_if_in_field_declaration_list] = STATE(370), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(370), + [sym_type_definition] = STATE(370), + [sym__declaration_modifiers] = STATE(3706), + [sym__declaration_specifiers] = STATE(4879), + [sym_attribute_specifier] = STATE(3706), + [sym_attribute_declaration] = STATE(3706), + [sym_ms_declspec_modifier] = STATE(3706), + [sym_ms_based_modifier] = STATE(7654), + [sym__declarator] = STATE(5881), + [sym_parenthesized_declarator] = STATE(5640), + [sym_attributed_declarator] = STATE(5640), + [sym_pointer_declarator] = STATE(5640), + [sym_function_declarator] = STATE(5489), + [sym_array_declarator] = STATE(5640), + [sym_storage_class_specifier] = STATE(3706), + [sym_type_qualifier] = STATE(3706), + [sym__type_specifier] = STATE(3845), + [sym_sized_type_specifier] = STATE(3918), + [sym_enum_specifier] = STATE(3918), + [sym_struct_specifier] = STATE(3918), + [sym_union_specifier] = STATE(3918), + [sym__field_declaration_list_item] = STATE(370), + [sym_field_declaration] = STATE(370), + [sym_placeholder_type_specifier] = STATE(3918), + [sym_decltype_auto] = STATE(3916), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3918), + [sym_virtual] = STATE(3706), + [sym_explicit_function_specifier] = STATE(2234), + [sym_dependent_type] = STATE(3918), + [sym_template_declaration] = STATE(370), + [sym_operator_cast] = STATE(5917), + [sym_inline_method_definition] = STATE(370), + [sym__constructor_specifiers] = STATE(2234), + [sym_operator_cast_definition] = STATE(370), + [sym_operator_cast_declaration] = STATE(370), + [sym_constructor_or_destructor_definition] = STATE(370), + [sym_constructor_or_destructor_declaration] = STATE(370), + [sym_friend_declaration] = STATE(370), + [sym_access_specifier] = STATE(7357), + [sym_reference_declarator] = STATE(5640), + [sym_structured_binding_declarator] = STATE(5640), + [sym_template_type] = STATE(3680), + [sym_template_function] = STATE(5640), + [sym_using_declaration] = STATE(370), + [sym_alias_declaration] = STATE(370), + [sym_static_assert_declaration] = STATE(370), + [sym_destructor_name] = STATE(5640), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5151), + [sym_qualified_identifier] = STATE(5640), + [sym_qualified_type_identifier] = STATE(3966), + [sym_qualified_operator_cast_identifier] = STATE(5917), + [sym_operator_name] = STATE(5640), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(370), + [aux_sym__declaration_specifiers_repeat1] = STATE(2509), + [aux_sym_sized_type_specifier_repeat1] = STATE(3981), + [aux_sym_operator_cast_definition_repeat1] = STATE(2234), + [sym_identifier] = ACTIONS(2747), + [aux_sym_preproc_def_token1] = ACTIONS(2750), + [aux_sym_preproc_if_token1] = ACTIONS(2753), + [aux_sym_preproc_if_token2] = ACTIONS(2756), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2758), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2758), + [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(2761), + [anon_sym_LPAREN2] = ACTIONS(2764), + [anon_sym_TILDE] = ACTIONS(2767), + [anon_sym_STAR] = ACTIONS(2770), + [anon_sym_AMP_AMP] = ACTIONS(2773), + [anon_sym_AMP] = ACTIONS(2776), + [anon_sym_typedef] = ACTIONS(2779), + [anon_sym_extern] = ACTIONS(2782), + [anon_sym___attribute__] = ACTIONS(2785), + [anon_sym_COLON_COLON] = ACTIONS(2788), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2791), + [anon_sym___declspec] = ACTIONS(2794), + [anon_sym___based] = ACTIONS(2797), + [anon_sym_LBRACK] = ACTIONS(2800), + [anon_sym_static] = ACTIONS(2782), + [anon_sym_register] = ACTIONS(2782), + [anon_sym_inline] = ACTIONS(2782), + [anon_sym_thread_local] = ACTIONS(2782), + [anon_sym_const] = ACTIONS(2803), + [anon_sym_constexpr] = ACTIONS(2803), + [anon_sym_volatile] = ACTIONS(2803), + [anon_sym_restrict] = ACTIONS(2803), + [anon_sym___restrict__] = ACTIONS(2803), + [anon_sym__Atomic] = ACTIONS(2803), + [anon_sym__Noreturn] = ACTIONS(2803), + [anon_sym_noreturn] = ACTIONS(2803), + [anon_sym_mutable] = ACTIONS(2803), + [anon_sym_constinit] = ACTIONS(2803), + [anon_sym_consteval] = ACTIONS(2803), + [anon_sym_signed] = ACTIONS(2806), + [anon_sym_unsigned] = ACTIONS(2806), + [anon_sym_long] = ACTIONS(2806), + [anon_sym_short] = ACTIONS(2806), + [sym_primitive_type] = ACTIONS(2809), + [anon_sym_enum] = ACTIONS(2812), + [anon_sym_class] = ACTIONS(2815), + [anon_sym_struct] = ACTIONS(2818), + [anon_sym_union] = ACTIONS(2821), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2824), + [anon_sym_decltype] = ACTIONS(2827), + [anon_sym_virtual] = ACTIONS(2830), + [anon_sym_explicit] = ACTIONS(2833), + [anon_sym_typename] = ACTIONS(2836), + [anon_sym_template] = ACTIONS(2839), + [anon_sym_operator] = ACTIONS(2842), + [anon_sym_friend] = ACTIONS(2845), + [anon_sym_public] = ACTIONS(2848), + [anon_sym_private] = ACTIONS(2848), + [anon_sym_protected] = ACTIONS(2848), + [anon_sym_using] = ACTIONS(2851), + [anon_sym_static_assert] = ACTIONS(2854), }, [371] = { - [sym_identifier] = ACTIONS(2462), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2464), - [anon_sym_AMP] = ACTIONS(2462), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_explicit] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_operator] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_namespace] = ACTIONS(2462), - [anon_sym_using] = ACTIONS(2462), - [anon_sym_static_assert] = ACTIONS(2462), - [anon_sym_concept] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_catch_clause] = STATE(353), + [aux_sym_constructor_try_statement_repeat1] = STATE(353), + [sym_identifier] = ACTIONS(2857), + [aux_sym_preproc_include_token1] = ACTIONS(2857), + [aux_sym_preproc_def_token1] = ACTIONS(2857), + [aux_sym_preproc_if_token1] = ACTIONS(2857), + [aux_sym_preproc_if_token2] = ACTIONS(2857), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2857), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2857), + [aux_sym_preproc_else_token1] = ACTIONS(2857), + [aux_sym_preproc_elif_token1] = ACTIONS(2857), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2857), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2857), + [sym_preproc_directive] = ACTIONS(2857), + [anon_sym_LPAREN2] = ACTIONS(2859), + [anon_sym_BANG] = ACTIONS(2859), + [anon_sym_TILDE] = ACTIONS(2859), + [anon_sym_DASH] = ACTIONS(2857), + [anon_sym_PLUS] = ACTIONS(2857), + [anon_sym_STAR] = ACTIONS(2859), + [anon_sym_AMP_AMP] = ACTIONS(2859), + [anon_sym_AMP] = ACTIONS(2857), + [anon_sym_SEMI] = ACTIONS(2859), + [anon_sym_typedef] = ACTIONS(2857), + [anon_sym_extern] = ACTIONS(2857), + [anon_sym___attribute__] = ACTIONS(2857), + [anon_sym_COLON_COLON] = ACTIONS(2859), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2859), + [anon_sym___declspec] = ACTIONS(2857), + [anon_sym___based] = ACTIONS(2857), + [anon_sym___cdecl] = ACTIONS(2857), + [anon_sym___clrcall] = ACTIONS(2857), + [anon_sym___stdcall] = ACTIONS(2857), + [anon_sym___fastcall] = ACTIONS(2857), + [anon_sym___thiscall] = ACTIONS(2857), + [anon_sym___vectorcall] = ACTIONS(2857), + [anon_sym_LBRACE] = ACTIONS(2859), + [anon_sym_LBRACK] = ACTIONS(2857), + [anon_sym_static] = ACTIONS(2857), + [anon_sym_register] = ACTIONS(2857), + [anon_sym_inline] = ACTIONS(2857), + [anon_sym_thread_local] = ACTIONS(2857), + [anon_sym_const] = ACTIONS(2857), + [anon_sym_constexpr] = ACTIONS(2857), + [anon_sym_volatile] = ACTIONS(2857), + [anon_sym_restrict] = ACTIONS(2857), + [anon_sym___restrict__] = ACTIONS(2857), + [anon_sym__Atomic] = ACTIONS(2857), + [anon_sym__Noreturn] = ACTIONS(2857), + [anon_sym_noreturn] = ACTIONS(2857), + [anon_sym_mutable] = ACTIONS(2857), + [anon_sym_constinit] = ACTIONS(2857), + [anon_sym_consteval] = ACTIONS(2857), + [anon_sym_signed] = ACTIONS(2857), + [anon_sym_unsigned] = ACTIONS(2857), + [anon_sym_long] = ACTIONS(2857), + [anon_sym_short] = ACTIONS(2857), + [sym_primitive_type] = ACTIONS(2857), + [anon_sym_enum] = ACTIONS(2857), + [anon_sym_class] = ACTIONS(2857), + [anon_sym_struct] = ACTIONS(2857), + [anon_sym_union] = ACTIONS(2857), + [anon_sym_if] = ACTIONS(2857), + [anon_sym_switch] = ACTIONS(2857), + [anon_sym_case] = ACTIONS(2857), + [anon_sym_default] = ACTIONS(2857), + [anon_sym_while] = ACTIONS(2857), + [anon_sym_do] = ACTIONS(2857), + [anon_sym_for] = ACTIONS(2857), + [anon_sym_return] = ACTIONS(2857), + [anon_sym_break] = ACTIONS(2857), + [anon_sym_continue] = ACTIONS(2857), + [anon_sym_goto] = ACTIONS(2857), + [anon_sym_not] = ACTIONS(2857), + [anon_sym_compl] = ACTIONS(2857), + [anon_sym_DASH_DASH] = ACTIONS(2859), + [anon_sym_PLUS_PLUS] = ACTIONS(2859), + [anon_sym_sizeof] = ACTIONS(2857), + [anon_sym_offsetof] = ACTIONS(2857), + [anon_sym__Generic] = ACTIONS(2857), + [anon_sym_asm] = ACTIONS(2857), + [anon_sym___asm__] = ACTIONS(2857), + [sym_number_literal] = ACTIONS(2859), + [anon_sym_L_SQUOTE] = ACTIONS(2859), + [anon_sym_u_SQUOTE] = ACTIONS(2859), + [anon_sym_U_SQUOTE] = ACTIONS(2859), + [anon_sym_u8_SQUOTE] = ACTIONS(2859), + [anon_sym_SQUOTE] = ACTIONS(2859), + [anon_sym_L_DQUOTE] = ACTIONS(2859), + [anon_sym_u_DQUOTE] = ACTIONS(2859), + [anon_sym_U_DQUOTE] = ACTIONS(2859), + [anon_sym_u8_DQUOTE] = ACTIONS(2859), + [anon_sym_DQUOTE] = ACTIONS(2859), + [sym_true] = ACTIONS(2857), + [sym_false] = ACTIONS(2857), + [anon_sym_NULL] = ACTIONS(2857), + [anon_sym_nullptr] = ACTIONS(2857), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2857), + [anon_sym_decltype] = ACTIONS(2857), + [anon_sym_virtual] = ACTIONS(2857), + [anon_sym_explicit] = ACTIONS(2857), + [anon_sym_typename] = ACTIONS(2857), + [anon_sym_template] = ACTIONS(2857), + [anon_sym_operator] = ACTIONS(2857), + [anon_sym_try] = ACTIONS(2857), + [anon_sym_delete] = ACTIONS(2857), + [anon_sym_throw] = ACTIONS(2857), + [anon_sym_namespace] = ACTIONS(2857), + [anon_sym_using] = ACTIONS(2857), + [anon_sym_static_assert] = ACTIONS(2857), + [anon_sym_concept] = ACTIONS(2857), + [anon_sym_co_return] = ACTIONS(2857), + [anon_sym_co_yield] = ACTIONS(2857), + [anon_sym_catch] = ACTIONS(2713), + [anon_sym_R_DQUOTE] = ACTIONS(2859), + [anon_sym_LR_DQUOTE] = ACTIONS(2859), + [anon_sym_uR_DQUOTE] = ACTIONS(2859), + [anon_sym_UR_DQUOTE] = ACTIONS(2859), + [anon_sym_u8R_DQUOTE] = ACTIONS(2859), + [anon_sym_co_await] = ACTIONS(2857), + [anon_sym_new] = ACTIONS(2857), + [anon_sym_requires] = ACTIONS(2857), + [sym_this] = ACTIONS(2857), }, [372] = { - [sym_identifier] = ACTIONS(2496), - [aux_sym_preproc_include_token1] = ACTIONS(2496), - [aux_sym_preproc_def_token1] = ACTIONS(2496), - [aux_sym_preproc_if_token1] = ACTIONS(2496), - [aux_sym_preproc_if_token2] = ACTIONS(2496), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2496), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2496), - [aux_sym_preproc_else_token1] = ACTIONS(2496), - [aux_sym_preproc_elif_token1] = ACTIONS(2496), - [sym_preproc_directive] = ACTIONS(2496), - [anon_sym_LPAREN2] = ACTIONS(2498), - [anon_sym_BANG] = ACTIONS(2498), - [anon_sym_TILDE] = ACTIONS(2498), - [anon_sym_DASH] = ACTIONS(2496), - [anon_sym_PLUS] = ACTIONS(2496), - [anon_sym_STAR] = ACTIONS(2498), - [anon_sym_AMP_AMP] = ACTIONS(2498), - [anon_sym_AMP] = ACTIONS(2496), - [anon_sym_SEMI] = ACTIONS(2498), - [anon_sym_typedef] = ACTIONS(2496), - [anon_sym_extern] = ACTIONS(2496), - [anon_sym___attribute__] = ACTIONS(2496), - [anon_sym_COLON_COLON] = ACTIONS(2498), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2498), - [anon_sym___declspec] = ACTIONS(2496), - [anon_sym___based] = ACTIONS(2496), - [anon_sym___cdecl] = ACTIONS(2496), - [anon_sym___clrcall] = ACTIONS(2496), - [anon_sym___stdcall] = ACTIONS(2496), - [anon_sym___fastcall] = ACTIONS(2496), - [anon_sym___thiscall] = ACTIONS(2496), - [anon_sym___vectorcall] = ACTIONS(2496), - [anon_sym_LBRACE] = ACTIONS(2498), - [anon_sym_LBRACK] = ACTIONS(2496), - [anon_sym_static] = ACTIONS(2496), - [anon_sym_register] = ACTIONS(2496), - [anon_sym_inline] = ACTIONS(2496), - [anon_sym_thread_local] = ACTIONS(2496), - [anon_sym_const] = ACTIONS(2496), - [anon_sym_volatile] = ACTIONS(2496), - [anon_sym_restrict] = ACTIONS(2496), - [anon_sym__Atomic] = ACTIONS(2496), - [anon_sym_mutable] = ACTIONS(2496), - [anon_sym_constexpr] = ACTIONS(2496), - [anon_sym_constinit] = ACTIONS(2496), - [anon_sym_consteval] = ACTIONS(2496), - [anon_sym_signed] = ACTIONS(2496), - [anon_sym_unsigned] = ACTIONS(2496), - [anon_sym_long] = ACTIONS(2496), - [anon_sym_short] = ACTIONS(2496), - [sym_primitive_type] = ACTIONS(2496), - [anon_sym_enum] = ACTIONS(2496), - [anon_sym_class] = ACTIONS(2496), - [anon_sym_struct] = ACTIONS(2496), - [anon_sym_union] = ACTIONS(2496), - [anon_sym_if] = ACTIONS(2496), - [anon_sym_else] = ACTIONS(2496), - [anon_sym_switch] = ACTIONS(2496), - [anon_sym_case] = ACTIONS(2496), - [anon_sym_default] = ACTIONS(2496), - [anon_sym_while] = ACTIONS(2496), - [anon_sym_do] = ACTIONS(2496), - [anon_sym_for] = ACTIONS(2496), - [anon_sym_return] = ACTIONS(2496), - [anon_sym_break] = ACTIONS(2496), - [anon_sym_continue] = ACTIONS(2496), - [anon_sym_goto] = ACTIONS(2496), - [anon_sym_not] = ACTIONS(2496), - [anon_sym_compl] = ACTIONS(2496), - [anon_sym_DASH_DASH] = ACTIONS(2498), - [anon_sym_PLUS_PLUS] = ACTIONS(2498), - [anon_sym_sizeof] = ACTIONS(2496), - [sym_number_literal] = ACTIONS(2498), - [anon_sym_L_SQUOTE] = ACTIONS(2498), - [anon_sym_u_SQUOTE] = ACTIONS(2498), - [anon_sym_U_SQUOTE] = ACTIONS(2498), - [anon_sym_u8_SQUOTE] = ACTIONS(2498), - [anon_sym_SQUOTE] = ACTIONS(2498), - [anon_sym_L_DQUOTE] = ACTIONS(2498), - [anon_sym_u_DQUOTE] = ACTIONS(2498), - [anon_sym_U_DQUOTE] = ACTIONS(2498), - [anon_sym_u8_DQUOTE] = ACTIONS(2498), - [anon_sym_DQUOTE] = ACTIONS(2498), - [sym_true] = ACTIONS(2496), - [sym_false] = ACTIONS(2496), - [sym_null] = ACTIONS(2496), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2496), - [anon_sym_decltype] = ACTIONS(2496), - [anon_sym_virtual] = ACTIONS(2496), - [anon_sym_explicit] = ACTIONS(2496), - [anon_sym_typename] = ACTIONS(2496), - [anon_sym_template] = ACTIONS(2496), - [anon_sym_operator] = ACTIONS(2496), - [anon_sym_try] = ACTIONS(2496), - [anon_sym_delete] = ACTIONS(2496), - [anon_sym_throw] = ACTIONS(2496), - [anon_sym_namespace] = ACTIONS(2496), - [anon_sym_using] = ACTIONS(2496), - [anon_sym_static_assert] = ACTIONS(2496), - [anon_sym_concept] = ACTIONS(2496), - [anon_sym_co_return] = ACTIONS(2496), - [anon_sym_co_yield] = ACTIONS(2496), - [anon_sym_R_DQUOTE] = ACTIONS(2498), - [anon_sym_LR_DQUOTE] = ACTIONS(2498), - [anon_sym_uR_DQUOTE] = ACTIONS(2498), - [anon_sym_UR_DQUOTE] = ACTIONS(2498), - [anon_sym_u8R_DQUOTE] = ACTIONS(2498), - [anon_sym_co_await] = ACTIONS(2496), - [anon_sym_new] = ACTIONS(2496), - [anon_sym_requires] = ACTIONS(2496), - [sym_this] = ACTIONS(2496), - [sym_nullptr] = ACTIONS(2496), + [sym_ms_based_modifier] = STATE(7654), + [sym_ms_unaligned_ptr_modifier] = STATE(4712), + [sym_ms_pointer_modifier] = STATE(3395), + [sym__declarator] = STATE(5614), + [sym_parenthesized_declarator] = STATE(5640), + [sym_attributed_declarator] = STATE(5640), + [sym_pointer_declarator] = STATE(5640), + [sym_function_declarator] = STATE(5640), + [sym_array_declarator] = STATE(5640), + [sym_type_qualifier] = STATE(3840), + [sym__expression] = STATE(3167), + [sym__expression_not_binary] = STATE(3318), + [sym_conditional_expression] = STATE(3318), + [sym_assignment_expression] = STATE(3318), + [sym_pointer_expression] = STATE(3318), + [sym_unary_expression] = STATE(3318), + [sym_binary_expression] = STATE(3318), + [sym_update_expression] = STATE(3318), + [sym_cast_expression] = STATE(3318), + [sym_sizeof_expression] = STATE(3318), + [sym_offsetof_expression] = STATE(3318), + [sym_generic_expression] = STATE(3318), + [sym_subscript_expression] = STATE(3318), + [sym_call_expression] = STATE(3318), + [sym_gnu_asm_expression] = STATE(3318), + [sym_field_expression] = STATE(3318), + [sym_compound_literal_expression] = STATE(3318), + [sym_parenthesized_expression] = STATE(3318), + [sym_char_literal] = STATE(3076), + [sym_concatenated_string] = STATE(3076), + [sym_string_literal] = STATE(2202), + [sym_null] = STATE(3318), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6739), + [sym_reference_declarator] = STATE(5640), + [sym_structured_binding_declarator] = STATE(5640), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3078), + [sym_raw_string_literal] = STATE(2202), + [sym_co_await_expression] = STATE(3318), + [sym_new_expression] = STATE(3318), + [sym_delete_expression] = STATE(3318), + [sym_requires_clause] = STATE(3318), + [sym_requires_expression] = STATE(3318), + [sym_lambda_expression] = STATE(3318), + [sym_lambda_capture_specifier] = STATE(5187), + [sym_fold_expression] = STATE(3318), + [sym_parameter_pack_expansion] = STATE(3318), + [sym_destructor_name] = STATE(5640), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5286), + [sym_qualified_identifier] = STATE(3079), + [sym_qualified_type_identifier] = STATE(6739), + [sym_operator_name] = STATE(5640), + [sym_user_defined_literal] = STATE(3318), + [aux_sym_type_definition_repeat1] = STATE(3840), + [aux_sym_pointer_declarator_repeat1] = STATE(3395), + [sym_identifier] = ACTIONS(2861), + [anon_sym_LPAREN2] = ACTIONS(2863), + [anon_sym_BANG] = ACTIONS(1991), + [anon_sym_TILDE] = ACTIONS(2865), + [anon_sym_DASH] = ACTIONS(1989), + [anon_sym_PLUS] = ACTIONS(1989), + [anon_sym_STAR] = ACTIONS(1907), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(1909), + [anon_sym_COLON_COLON] = ACTIONS(1995), + [anon_sym___based] = ACTIONS(45), + [sym_ms_restrict_modifier] = ACTIONS(2867), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(2867), + [sym_ms_signed_ptr_modifier] = ACTIONS(2867), + [anon_sym__unaligned] = ACTIONS(2869), + [anon_sym___unaligned] = ACTIONS(2869), + [anon_sym_LBRACK] = ACTIONS(1911), + [anon_sym_const] = ACTIONS(2871), + [anon_sym_constexpr] = ACTIONS(2871), + [anon_sym_volatile] = ACTIONS(2871), + [anon_sym_restrict] = ACTIONS(2871), + [anon_sym___restrict__] = ACTIONS(2871), + [anon_sym__Atomic] = ACTIONS(2871), + [anon_sym__Noreturn] = ACTIONS(2871), + [anon_sym_noreturn] = ACTIONS(2871), + [anon_sym_mutable] = ACTIONS(2871), + [anon_sym_constinit] = ACTIONS(2871), + [anon_sym_consteval] = ACTIONS(2871), + [sym_primitive_type] = ACTIONS(1999), + [anon_sym_not] = ACTIONS(1989), + [anon_sym_compl] = ACTIONS(1989), + [anon_sym_DASH_DASH] = ACTIONS(2001), + [anon_sym_PLUS_PLUS] = ACTIONS(2001), + [anon_sym_sizeof] = ACTIONS(2003), + [anon_sym_offsetof] = ACTIONS(2005), + [anon_sym__Generic] = ACTIONS(2007), + [anon_sym_asm] = ACTIONS(2009), + [anon_sym___asm__] = ACTIONS(2009), + [sym_number_literal] = ACTIONS(2011), + [anon_sym_L_SQUOTE] = ACTIONS(2013), + [anon_sym_u_SQUOTE] = ACTIONS(2013), + [anon_sym_U_SQUOTE] = ACTIONS(2013), + [anon_sym_u8_SQUOTE] = ACTIONS(2013), + [anon_sym_SQUOTE] = ACTIONS(2013), + [anon_sym_L_DQUOTE] = ACTIONS(2015), + [anon_sym_u_DQUOTE] = ACTIONS(2015), + [anon_sym_U_DQUOTE] = ACTIONS(2015), + [anon_sym_u8_DQUOTE] = ACTIONS(2015), + [anon_sym_DQUOTE] = ACTIONS(2015), + [sym_true] = ACTIONS(2017), + [sym_false] = ACTIONS(2017), + [anon_sym_NULL] = ACTIONS(2019), + [anon_sym_nullptr] = ACTIONS(2019), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_operator] = ACTIONS(1931), + [anon_sym_delete] = ACTIONS(2021), + [anon_sym_R_DQUOTE] = ACTIONS(2023), + [anon_sym_LR_DQUOTE] = ACTIONS(2023), + [anon_sym_uR_DQUOTE] = ACTIONS(2023), + [anon_sym_UR_DQUOTE] = ACTIONS(2023), + [anon_sym_u8R_DQUOTE] = ACTIONS(2023), + [anon_sym_co_await] = ACTIONS(2025), + [anon_sym_new] = ACTIONS(2027), + [anon_sym_requires] = ACTIONS(2029), + [sym_this] = ACTIONS(2017), }, [373] = { - [sym_identifier] = ACTIONS(2462), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2464), - [anon_sym_AMP] = ACTIONS(2462), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_explicit] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_operator] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_namespace] = ACTIONS(2462), - [anon_sym_using] = ACTIONS(2462), - [anon_sym_static_assert] = ACTIONS(2462), - [anon_sym_concept] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_type_qualifier] = STATE(3794), + [sym__type_specifier] = STATE(4503), + [sym_sized_type_specifier] = STATE(3156), + [sym_enum_specifier] = STATE(3156), + [sym_struct_specifier] = STATE(3156), + [sym_union_specifier] = STATE(3156), + [sym__expression] = STATE(4263), + [sym__expression_not_binary] = STATE(4369), + [sym_conditional_expression] = STATE(4369), + [sym_assignment_expression] = STATE(4369), + [sym_pointer_expression] = STATE(3541), + [sym_unary_expression] = STATE(4369), + [sym_binary_expression] = STATE(4369), + [sym_update_expression] = STATE(4369), + [sym_cast_expression] = STATE(4369), + [sym_type_descriptor] = STATE(6567), + [sym_sizeof_expression] = STATE(4369), + [sym_offsetof_expression] = STATE(4369), + [sym_generic_expression] = STATE(4369), + [sym_subscript_expression] = STATE(3541), + [sym_call_expression] = STATE(3541), + [sym_gnu_asm_expression] = STATE(4369), + [sym_field_expression] = STATE(3541), + [sym_compound_literal_expression] = STATE(4369), + [sym_parenthesized_expression] = STATE(3541), + [sym_char_literal] = STATE(4131), + [sym_concatenated_string] = STATE(4131), + [sym_string_literal] = STATE(3542), + [sym_null] = STATE(4369), + [sym_placeholder_type_specifier] = STATE(3156), + [sym_decltype_auto] = STATE(3159), + [sym_decltype] = STATE(3027), + [sym_class_specifier] = STATE(3156), + [sym__class_name] = STATE(6872), + [sym_dependent_type] = STATE(3156), + [sym_template_type] = STATE(4771), + [sym_template_function] = STATE(4369), + [sym_raw_string_literal] = STATE(3542), + [sym_co_await_expression] = STATE(4369), + [sym_new_expression] = STATE(4369), + [sym_delete_expression] = STATE(4369), + [sym_requires_clause] = STATE(4369), + [sym_requires_expression] = STATE(4369), + [sym_lambda_expression] = STATE(4369), + [sym_lambda_capture_specifier] = STATE(5208), + [sym_fold_expression] = STATE(4369), + [sym_parameter_pack_expansion] = STATE(4369), + [sym_type_parameter_pack_expansion] = STATE(6697), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5256), + [sym_qualified_identifier] = STATE(3541), + [sym_qualified_type_identifier] = STATE(4890), + [sym_user_defined_literal] = STATE(4369), + [aux_sym_type_definition_repeat1] = STATE(3794), + [aux_sym_sized_type_specifier_repeat1] = STATE(2483), + [sym_identifier] = ACTIONS(2616), + [anon_sym_LPAREN2] = ACTIONS(2618), + [anon_sym_BANG] = ACTIONS(2620), + [anon_sym_TILDE] = ACTIONS(2620), + [anon_sym_DASH] = ACTIONS(2622), + [anon_sym_PLUS] = ACTIONS(2622), + [anon_sym_STAR] = ACTIONS(2624), + [anon_sym_AMP] = ACTIONS(2624), + [anon_sym_COLON_COLON] = ACTIONS(2626), + [anon_sym_LBRACK] = ACTIONS(1949), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(2628), + [anon_sym_unsigned] = ACTIONS(2628), + [anon_sym_long] = ACTIONS(2628), + [anon_sym_short] = ACTIONS(2628), + [sym_primitive_type] = ACTIONS(2630), + [anon_sym_enum] = ACTIONS(2632), + [anon_sym_class] = ACTIONS(2634), + [anon_sym_struct] = ACTIONS(2636), + [anon_sym_union] = ACTIONS(2638), + [anon_sym_not] = ACTIONS(2622), + [anon_sym_compl] = ACTIONS(2622), + [anon_sym_DASH_DASH] = ACTIONS(2640), + [anon_sym_PLUS_PLUS] = ACTIONS(2640), + [anon_sym_sizeof] = ACTIONS(2642), + [anon_sym_offsetof] = ACTIONS(2644), + [anon_sym__Generic] = ACTIONS(2646), + [anon_sym_asm] = ACTIONS(2648), + [anon_sym___asm__] = ACTIONS(2648), + [sym_number_literal] = ACTIONS(2650), + [anon_sym_L_SQUOTE] = ACTIONS(2652), + [anon_sym_u_SQUOTE] = ACTIONS(2652), + [anon_sym_U_SQUOTE] = ACTIONS(2652), + [anon_sym_u8_SQUOTE] = ACTIONS(2652), + [anon_sym_SQUOTE] = ACTIONS(2652), + [anon_sym_L_DQUOTE] = ACTIONS(2654), + [anon_sym_u_DQUOTE] = ACTIONS(2654), + [anon_sym_U_DQUOTE] = ACTIONS(2654), + [anon_sym_u8_DQUOTE] = ACTIONS(2654), + [anon_sym_DQUOTE] = ACTIONS(2654), + [sym_true] = ACTIONS(2656), + [sym_false] = ACTIONS(2656), + [anon_sym_NULL] = ACTIONS(2658), + [anon_sym_nullptr] = ACTIONS(2658), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2660), + [anon_sym_decltype] = ACTIONS(2662), + [anon_sym_typename] = ACTIONS(2664), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(2668), + [anon_sym_R_DQUOTE] = ACTIONS(2670), + [anon_sym_LR_DQUOTE] = ACTIONS(2670), + [anon_sym_uR_DQUOTE] = ACTIONS(2670), + [anon_sym_UR_DQUOTE] = ACTIONS(2670), + [anon_sym_u8R_DQUOTE] = ACTIONS(2670), + [anon_sym_co_await] = ACTIONS(2672), + [anon_sym_new] = ACTIONS(2674), + [anon_sym_requires] = ACTIONS(2676), + [sym_this] = ACTIONS(2656), }, [374] = { - [sym_identifier] = ACTIONS(2500), - [aux_sym_preproc_include_token1] = ACTIONS(2500), - [aux_sym_preproc_def_token1] = ACTIONS(2500), - [aux_sym_preproc_if_token1] = ACTIONS(2500), - [aux_sym_preproc_if_token2] = ACTIONS(2500), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2500), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2500), - [aux_sym_preproc_else_token1] = ACTIONS(2500), - [aux_sym_preproc_elif_token1] = ACTIONS(2500), - [sym_preproc_directive] = ACTIONS(2500), - [anon_sym_LPAREN2] = ACTIONS(2502), - [anon_sym_BANG] = ACTIONS(2502), - [anon_sym_TILDE] = ACTIONS(2502), - [anon_sym_DASH] = ACTIONS(2500), - [anon_sym_PLUS] = ACTIONS(2500), - [anon_sym_STAR] = ACTIONS(2502), - [anon_sym_AMP_AMP] = ACTIONS(2502), - [anon_sym_AMP] = ACTIONS(2500), - [anon_sym_SEMI] = ACTIONS(2502), - [anon_sym_typedef] = ACTIONS(2500), - [anon_sym_extern] = ACTIONS(2500), - [anon_sym___attribute__] = ACTIONS(2500), - [anon_sym_COLON_COLON] = ACTIONS(2502), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2502), - [anon_sym___declspec] = ACTIONS(2500), - [anon_sym___based] = ACTIONS(2500), - [anon_sym___cdecl] = ACTIONS(2500), - [anon_sym___clrcall] = ACTIONS(2500), - [anon_sym___stdcall] = ACTIONS(2500), - [anon_sym___fastcall] = ACTIONS(2500), - [anon_sym___thiscall] = ACTIONS(2500), - [anon_sym___vectorcall] = ACTIONS(2500), - [anon_sym_LBRACE] = ACTIONS(2502), - [anon_sym_LBRACK] = ACTIONS(2500), - [anon_sym_static] = ACTIONS(2500), - [anon_sym_register] = ACTIONS(2500), - [anon_sym_inline] = ACTIONS(2500), - [anon_sym_thread_local] = ACTIONS(2500), - [anon_sym_const] = ACTIONS(2500), - [anon_sym_volatile] = ACTIONS(2500), - [anon_sym_restrict] = ACTIONS(2500), - [anon_sym__Atomic] = ACTIONS(2500), - [anon_sym_mutable] = ACTIONS(2500), - [anon_sym_constexpr] = ACTIONS(2500), - [anon_sym_constinit] = ACTIONS(2500), - [anon_sym_consteval] = ACTIONS(2500), - [anon_sym_signed] = ACTIONS(2500), - [anon_sym_unsigned] = ACTIONS(2500), - [anon_sym_long] = ACTIONS(2500), - [anon_sym_short] = ACTIONS(2500), - [sym_primitive_type] = ACTIONS(2500), - [anon_sym_enum] = ACTIONS(2500), - [anon_sym_class] = ACTIONS(2500), - [anon_sym_struct] = ACTIONS(2500), - [anon_sym_union] = ACTIONS(2500), - [anon_sym_if] = ACTIONS(2500), - [anon_sym_else] = ACTIONS(2500), - [anon_sym_switch] = ACTIONS(2500), - [anon_sym_case] = ACTIONS(2500), - [anon_sym_default] = ACTIONS(2500), - [anon_sym_while] = ACTIONS(2500), - [anon_sym_do] = ACTIONS(2500), - [anon_sym_for] = ACTIONS(2500), - [anon_sym_return] = ACTIONS(2500), - [anon_sym_break] = ACTIONS(2500), - [anon_sym_continue] = ACTIONS(2500), - [anon_sym_goto] = ACTIONS(2500), - [anon_sym_not] = ACTIONS(2500), - [anon_sym_compl] = ACTIONS(2500), - [anon_sym_DASH_DASH] = ACTIONS(2502), - [anon_sym_PLUS_PLUS] = ACTIONS(2502), - [anon_sym_sizeof] = ACTIONS(2500), - [sym_number_literal] = ACTIONS(2502), - [anon_sym_L_SQUOTE] = ACTIONS(2502), - [anon_sym_u_SQUOTE] = ACTIONS(2502), - [anon_sym_U_SQUOTE] = ACTIONS(2502), - [anon_sym_u8_SQUOTE] = ACTIONS(2502), - [anon_sym_SQUOTE] = ACTIONS(2502), - [anon_sym_L_DQUOTE] = ACTIONS(2502), - [anon_sym_u_DQUOTE] = ACTIONS(2502), - [anon_sym_U_DQUOTE] = ACTIONS(2502), - [anon_sym_u8_DQUOTE] = ACTIONS(2502), - [anon_sym_DQUOTE] = ACTIONS(2502), - [sym_true] = ACTIONS(2500), - [sym_false] = ACTIONS(2500), - [sym_null] = ACTIONS(2500), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2500), - [anon_sym_decltype] = ACTIONS(2500), - [anon_sym_virtual] = ACTIONS(2500), - [anon_sym_explicit] = ACTIONS(2500), - [anon_sym_typename] = ACTIONS(2500), - [anon_sym_template] = ACTIONS(2500), - [anon_sym_operator] = ACTIONS(2500), - [anon_sym_try] = ACTIONS(2500), - [anon_sym_delete] = ACTIONS(2500), - [anon_sym_throw] = ACTIONS(2500), - [anon_sym_namespace] = ACTIONS(2500), - [anon_sym_using] = ACTIONS(2500), - [anon_sym_static_assert] = ACTIONS(2500), - [anon_sym_concept] = ACTIONS(2500), - [anon_sym_co_return] = ACTIONS(2500), - [anon_sym_co_yield] = ACTIONS(2500), - [anon_sym_R_DQUOTE] = ACTIONS(2502), - [anon_sym_LR_DQUOTE] = ACTIONS(2502), - [anon_sym_uR_DQUOTE] = ACTIONS(2502), - [anon_sym_UR_DQUOTE] = ACTIONS(2502), - [anon_sym_u8R_DQUOTE] = ACTIONS(2502), - [anon_sym_co_await] = ACTIONS(2500), - [anon_sym_new] = ACTIONS(2500), - [anon_sym_requires] = ACTIONS(2500), - [sym_this] = ACTIONS(2500), - [sym_nullptr] = ACTIONS(2500), + [sym_preproc_def] = STATE(430), + [sym_preproc_function_def] = STATE(430), + [sym_preproc_call] = STATE(430), + [sym_preproc_if_in_field_declaration_list] = STATE(430), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(430), + [sym_preproc_else_in_field_declaration_list] = STATE(7406), + [sym_preproc_elif_in_field_declaration_list] = STATE(7406), + [sym_type_definition] = STATE(430), + [sym__declaration_modifiers] = STATE(3706), + [sym__declaration_specifiers] = STATE(4883), + [sym_attribute_specifier] = STATE(3706), + [sym_attribute_declaration] = STATE(3706), + [sym_ms_declspec_modifier] = STATE(3706), + [sym_ms_based_modifier] = STATE(7654), + [sym__declarator] = STATE(5881), + [sym_parenthesized_declarator] = STATE(5640), + [sym_attributed_declarator] = STATE(5640), + [sym_pointer_declarator] = STATE(5640), + [sym_function_declarator] = STATE(5541), + [sym_array_declarator] = STATE(5640), + [sym_storage_class_specifier] = STATE(3706), + [sym_type_qualifier] = STATE(3706), + [sym__type_specifier] = STATE(3845), + [sym_sized_type_specifier] = STATE(3918), + [sym_enum_specifier] = STATE(3918), + [sym_struct_specifier] = STATE(3918), + [sym_union_specifier] = STATE(3918), + [sym__field_declaration_list_item] = STATE(430), + [sym_field_declaration] = STATE(430), + [sym_placeholder_type_specifier] = STATE(3918), + [sym_decltype_auto] = STATE(3916), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3918), + [sym_virtual] = STATE(3706), + [sym_explicit_function_specifier] = STATE(2243), + [sym_dependent_type] = STATE(3918), + [sym_template_declaration] = STATE(430), + [sym_operator_cast] = STATE(5916), + [sym_inline_method_definition] = STATE(430), + [sym__constructor_specifiers] = STATE(2243), + [sym_operator_cast_definition] = STATE(430), + [sym_operator_cast_declaration] = STATE(430), + [sym_constructor_or_destructor_definition] = STATE(430), + [sym_constructor_or_destructor_declaration] = STATE(430), + [sym_friend_declaration] = STATE(430), + [sym_access_specifier] = STATE(7553), + [sym_reference_declarator] = STATE(5640), + [sym_structured_binding_declarator] = STATE(5640), + [sym_template_type] = STATE(3680), + [sym_template_function] = STATE(5640), + [sym_using_declaration] = STATE(430), + [sym_alias_declaration] = STATE(430), + [sym_static_assert_declaration] = STATE(430), + [sym_destructor_name] = STATE(5640), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5151), + [sym_qualified_identifier] = STATE(5640), + [sym_qualified_type_identifier] = STATE(3966), + [sym_qualified_operator_cast_identifier] = STATE(5916), + [sym_operator_name] = STATE(5640), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(430), + [aux_sym__declaration_specifiers_repeat1] = STATE(2509), + [aux_sym_sized_type_specifier_repeat1] = STATE(3981), + [aux_sym_operator_cast_definition_repeat1] = STATE(2243), + [sym_identifier] = ACTIONS(2544), + [aux_sym_preproc_def_token1] = ACTIONS(2725), + [aux_sym_preproc_if_token1] = ACTIONS(2727), + [aux_sym_preproc_if_token2] = ACTIONS(2873), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2731), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2731), + [aux_sym_preproc_else_token1] = ACTIONS(2554), + [aux_sym_preproc_elif_token1] = ACTIONS(2556), + [sym_preproc_directive] = ACTIONS(2733), + [anon_sym_LPAREN2] = ACTIONS(2560), + [anon_sym_TILDE] = ACTIONS(2562), + [anon_sym_STAR] = ACTIONS(2564), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_typedef] = ACTIONS(2735), + [anon_sym_extern] = ACTIONS(53), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(2570), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1813), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(2572), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(53), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(2574), + [anon_sym_unsigned] = ACTIONS(2574), + [anon_sym_long] = ACTIONS(2574), + [anon_sym_short] = ACTIONS(2574), + [sym_primitive_type] = ACTIONS(2576), + [anon_sym_enum] = ACTIONS(2578), + [anon_sym_class] = ACTIONS(2580), + [anon_sym_struct] = ACTIONS(2582), + [anon_sym_union] = ACTIONS(2584), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2586), + [anon_sym_decltype] = ACTIONS(2588), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_explicit] = ACTIONS(119), + [anon_sym_typename] = ACTIONS(2590), + [anon_sym_template] = ACTIONS(2737), + [anon_sym_operator] = ACTIONS(125), + [anon_sym_friend] = ACTIONS(2739), + [anon_sym_public] = ACTIONS(2596), + [anon_sym_private] = ACTIONS(2596), + [anon_sym_protected] = ACTIONS(2596), + [anon_sym_using] = ACTIONS(2741), + [anon_sym_static_assert] = ACTIONS(2743), }, [375] = { - [sym_identifier] = ACTIONS(2504), - [aux_sym_preproc_include_token1] = ACTIONS(2504), - [aux_sym_preproc_def_token1] = ACTIONS(2504), - [aux_sym_preproc_if_token1] = ACTIONS(2504), - [aux_sym_preproc_if_token2] = ACTIONS(2504), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2504), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2504), - [aux_sym_preproc_else_token1] = ACTIONS(2504), - [aux_sym_preproc_elif_token1] = ACTIONS(2504), - [sym_preproc_directive] = ACTIONS(2504), - [anon_sym_LPAREN2] = ACTIONS(2506), - [anon_sym_BANG] = ACTIONS(2506), - [anon_sym_TILDE] = ACTIONS(2506), - [anon_sym_DASH] = ACTIONS(2504), - [anon_sym_PLUS] = ACTIONS(2504), - [anon_sym_STAR] = ACTIONS(2506), - [anon_sym_AMP_AMP] = ACTIONS(2506), - [anon_sym_AMP] = ACTIONS(2504), - [anon_sym_SEMI] = ACTIONS(2506), - [anon_sym_typedef] = ACTIONS(2504), - [anon_sym_extern] = ACTIONS(2504), - [anon_sym___attribute__] = ACTIONS(2504), - [anon_sym_COLON_COLON] = ACTIONS(2506), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2506), - [anon_sym___declspec] = ACTIONS(2504), - [anon_sym___based] = ACTIONS(2504), - [anon_sym___cdecl] = ACTIONS(2504), - [anon_sym___clrcall] = ACTIONS(2504), - [anon_sym___stdcall] = ACTIONS(2504), - [anon_sym___fastcall] = ACTIONS(2504), - [anon_sym___thiscall] = ACTIONS(2504), - [anon_sym___vectorcall] = ACTIONS(2504), - [anon_sym_LBRACE] = ACTIONS(2506), - [anon_sym_LBRACK] = ACTIONS(2504), - [anon_sym_static] = ACTIONS(2504), - [anon_sym_register] = ACTIONS(2504), - [anon_sym_inline] = ACTIONS(2504), - [anon_sym_thread_local] = ACTIONS(2504), - [anon_sym_const] = ACTIONS(2504), - [anon_sym_volatile] = ACTIONS(2504), - [anon_sym_restrict] = ACTIONS(2504), - [anon_sym__Atomic] = ACTIONS(2504), - [anon_sym_mutable] = ACTIONS(2504), - [anon_sym_constexpr] = ACTIONS(2504), - [anon_sym_constinit] = ACTIONS(2504), - [anon_sym_consteval] = ACTIONS(2504), - [anon_sym_signed] = ACTIONS(2504), - [anon_sym_unsigned] = ACTIONS(2504), - [anon_sym_long] = ACTIONS(2504), - [anon_sym_short] = ACTIONS(2504), - [sym_primitive_type] = ACTIONS(2504), - [anon_sym_enum] = ACTIONS(2504), - [anon_sym_class] = ACTIONS(2504), - [anon_sym_struct] = ACTIONS(2504), - [anon_sym_union] = ACTIONS(2504), - [anon_sym_if] = ACTIONS(2504), - [anon_sym_else] = ACTIONS(2504), - [anon_sym_switch] = ACTIONS(2504), - [anon_sym_case] = ACTIONS(2504), - [anon_sym_default] = ACTIONS(2504), - [anon_sym_while] = ACTIONS(2504), - [anon_sym_do] = ACTIONS(2504), - [anon_sym_for] = ACTIONS(2504), - [anon_sym_return] = ACTIONS(2504), - [anon_sym_break] = ACTIONS(2504), - [anon_sym_continue] = ACTIONS(2504), - [anon_sym_goto] = ACTIONS(2504), - [anon_sym_not] = ACTIONS(2504), - [anon_sym_compl] = ACTIONS(2504), - [anon_sym_DASH_DASH] = ACTIONS(2506), - [anon_sym_PLUS_PLUS] = ACTIONS(2506), - [anon_sym_sizeof] = ACTIONS(2504), - [sym_number_literal] = ACTIONS(2506), - [anon_sym_L_SQUOTE] = ACTIONS(2506), - [anon_sym_u_SQUOTE] = ACTIONS(2506), - [anon_sym_U_SQUOTE] = ACTIONS(2506), - [anon_sym_u8_SQUOTE] = ACTIONS(2506), - [anon_sym_SQUOTE] = ACTIONS(2506), - [anon_sym_L_DQUOTE] = ACTIONS(2506), - [anon_sym_u_DQUOTE] = ACTIONS(2506), - [anon_sym_U_DQUOTE] = ACTIONS(2506), - [anon_sym_u8_DQUOTE] = ACTIONS(2506), - [anon_sym_DQUOTE] = ACTIONS(2506), - [sym_true] = ACTIONS(2504), - [sym_false] = ACTIONS(2504), - [sym_null] = ACTIONS(2504), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2504), - [anon_sym_decltype] = ACTIONS(2504), - [anon_sym_virtual] = ACTIONS(2504), - [anon_sym_explicit] = ACTIONS(2504), - [anon_sym_typename] = ACTIONS(2504), - [anon_sym_template] = ACTIONS(2504), - [anon_sym_operator] = ACTIONS(2504), - [anon_sym_try] = ACTIONS(2504), - [anon_sym_delete] = ACTIONS(2504), - [anon_sym_throw] = ACTIONS(2504), - [anon_sym_namespace] = ACTIONS(2504), - [anon_sym_using] = ACTIONS(2504), - [anon_sym_static_assert] = ACTIONS(2504), - [anon_sym_concept] = ACTIONS(2504), - [anon_sym_co_return] = ACTIONS(2504), - [anon_sym_co_yield] = ACTIONS(2504), - [anon_sym_R_DQUOTE] = ACTIONS(2506), - [anon_sym_LR_DQUOTE] = ACTIONS(2506), - [anon_sym_uR_DQUOTE] = ACTIONS(2506), - [anon_sym_UR_DQUOTE] = ACTIONS(2506), - [anon_sym_u8R_DQUOTE] = ACTIONS(2506), - [anon_sym_co_await] = ACTIONS(2504), - [anon_sym_new] = ACTIONS(2504), - [anon_sym_requires] = ACTIONS(2504), - [sym_this] = ACTIONS(2504), - [sym_nullptr] = ACTIONS(2504), + [sym_preproc_def] = STATE(430), + [sym_preproc_function_def] = STATE(430), + [sym_preproc_call] = STATE(430), + [sym_preproc_if_in_field_declaration_list] = STATE(430), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(430), + [sym_preproc_else_in_field_declaration_list] = STATE(7306), + [sym_preproc_elif_in_field_declaration_list] = STATE(7306), + [sym_type_definition] = STATE(430), + [sym__declaration_modifiers] = STATE(3706), + [sym__declaration_specifiers] = STATE(4883), + [sym_attribute_specifier] = STATE(3706), + [sym_attribute_declaration] = STATE(3706), + [sym_ms_declspec_modifier] = STATE(3706), + [sym_ms_based_modifier] = STATE(7654), + [sym__declarator] = STATE(5881), + [sym_parenthesized_declarator] = STATE(5640), + [sym_attributed_declarator] = STATE(5640), + [sym_pointer_declarator] = STATE(5640), + [sym_function_declarator] = STATE(5541), + [sym_array_declarator] = STATE(5640), + [sym_storage_class_specifier] = STATE(3706), + [sym_type_qualifier] = STATE(3706), + [sym__type_specifier] = STATE(3845), + [sym_sized_type_specifier] = STATE(3918), + [sym_enum_specifier] = STATE(3918), + [sym_struct_specifier] = STATE(3918), + [sym_union_specifier] = STATE(3918), + [sym__field_declaration_list_item] = STATE(430), + [sym_field_declaration] = STATE(430), + [sym_placeholder_type_specifier] = STATE(3918), + [sym_decltype_auto] = STATE(3916), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3918), + [sym_virtual] = STATE(3706), + [sym_explicit_function_specifier] = STATE(2243), + [sym_dependent_type] = STATE(3918), + [sym_template_declaration] = STATE(430), + [sym_operator_cast] = STATE(5916), + [sym_inline_method_definition] = STATE(430), + [sym__constructor_specifiers] = STATE(2243), + [sym_operator_cast_definition] = STATE(430), + [sym_operator_cast_declaration] = STATE(430), + [sym_constructor_or_destructor_definition] = STATE(430), + [sym_constructor_or_destructor_declaration] = STATE(430), + [sym_friend_declaration] = STATE(430), + [sym_access_specifier] = STATE(7553), + [sym_reference_declarator] = STATE(5640), + [sym_structured_binding_declarator] = STATE(5640), + [sym_template_type] = STATE(3680), + [sym_template_function] = STATE(5640), + [sym_using_declaration] = STATE(430), + [sym_alias_declaration] = STATE(430), + [sym_static_assert_declaration] = STATE(430), + [sym_destructor_name] = STATE(5640), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5151), + [sym_qualified_identifier] = STATE(5640), + [sym_qualified_type_identifier] = STATE(3966), + [sym_qualified_operator_cast_identifier] = STATE(5916), + [sym_operator_name] = STATE(5640), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(430), + [aux_sym__declaration_specifiers_repeat1] = STATE(2509), + [aux_sym_sized_type_specifier_repeat1] = STATE(3981), + [aux_sym_operator_cast_definition_repeat1] = STATE(2243), + [sym_identifier] = ACTIONS(2544), + [aux_sym_preproc_def_token1] = ACTIONS(2725), + [aux_sym_preproc_if_token1] = ACTIONS(2727), + [aux_sym_preproc_if_token2] = ACTIONS(2875), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2731), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2731), + [aux_sym_preproc_else_token1] = ACTIONS(2554), + [aux_sym_preproc_elif_token1] = ACTIONS(2556), + [sym_preproc_directive] = ACTIONS(2733), + [anon_sym_LPAREN2] = ACTIONS(2560), + [anon_sym_TILDE] = ACTIONS(2562), + [anon_sym_STAR] = ACTIONS(2564), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_typedef] = ACTIONS(2735), + [anon_sym_extern] = ACTIONS(53), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(2570), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1813), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(2572), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(53), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(2574), + [anon_sym_unsigned] = ACTIONS(2574), + [anon_sym_long] = ACTIONS(2574), + [anon_sym_short] = ACTIONS(2574), + [sym_primitive_type] = ACTIONS(2576), + [anon_sym_enum] = ACTIONS(2578), + [anon_sym_class] = ACTIONS(2580), + [anon_sym_struct] = ACTIONS(2582), + [anon_sym_union] = ACTIONS(2584), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2586), + [anon_sym_decltype] = ACTIONS(2588), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_explicit] = ACTIONS(119), + [anon_sym_typename] = ACTIONS(2590), + [anon_sym_template] = ACTIONS(2737), + [anon_sym_operator] = ACTIONS(125), + [anon_sym_friend] = ACTIONS(2739), + [anon_sym_public] = ACTIONS(2596), + [anon_sym_private] = ACTIONS(2596), + [anon_sym_protected] = ACTIONS(2596), + [anon_sym_using] = ACTIONS(2741), + [anon_sym_static_assert] = ACTIONS(2743), }, [376] = { - [sym_identifier] = ACTIONS(2500), - [aux_sym_preproc_include_token1] = ACTIONS(2500), - [aux_sym_preproc_def_token1] = ACTIONS(2500), - [aux_sym_preproc_if_token1] = ACTIONS(2500), - [aux_sym_preproc_if_token2] = ACTIONS(2500), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2500), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2500), - [aux_sym_preproc_else_token1] = ACTIONS(2500), - [aux_sym_preproc_elif_token1] = ACTIONS(2500), - [sym_preproc_directive] = ACTIONS(2500), - [anon_sym_LPAREN2] = ACTIONS(2502), - [anon_sym_BANG] = ACTIONS(2502), - [anon_sym_TILDE] = ACTIONS(2502), - [anon_sym_DASH] = ACTIONS(2500), - [anon_sym_PLUS] = ACTIONS(2500), - [anon_sym_STAR] = ACTIONS(2502), - [anon_sym_AMP_AMP] = ACTIONS(2502), - [anon_sym_AMP] = ACTIONS(2500), - [anon_sym_SEMI] = ACTIONS(2502), - [anon_sym_typedef] = ACTIONS(2500), - [anon_sym_extern] = ACTIONS(2500), - [anon_sym___attribute__] = ACTIONS(2500), - [anon_sym_COLON_COLON] = ACTIONS(2502), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2502), - [anon_sym___declspec] = ACTIONS(2500), - [anon_sym___based] = ACTIONS(2500), - [anon_sym___cdecl] = ACTIONS(2500), - [anon_sym___clrcall] = ACTIONS(2500), - [anon_sym___stdcall] = ACTIONS(2500), - [anon_sym___fastcall] = ACTIONS(2500), - [anon_sym___thiscall] = ACTIONS(2500), - [anon_sym___vectorcall] = ACTIONS(2500), - [anon_sym_LBRACE] = ACTIONS(2502), - [anon_sym_LBRACK] = ACTIONS(2500), - [anon_sym_static] = ACTIONS(2500), - [anon_sym_register] = ACTIONS(2500), - [anon_sym_inline] = ACTIONS(2500), - [anon_sym_thread_local] = ACTIONS(2500), - [anon_sym_const] = ACTIONS(2500), - [anon_sym_volatile] = ACTIONS(2500), - [anon_sym_restrict] = ACTIONS(2500), - [anon_sym__Atomic] = ACTIONS(2500), - [anon_sym_mutable] = ACTIONS(2500), - [anon_sym_constexpr] = ACTIONS(2500), - [anon_sym_constinit] = ACTIONS(2500), - [anon_sym_consteval] = ACTIONS(2500), - [anon_sym_signed] = ACTIONS(2500), - [anon_sym_unsigned] = ACTIONS(2500), - [anon_sym_long] = ACTIONS(2500), - [anon_sym_short] = ACTIONS(2500), - [sym_primitive_type] = ACTIONS(2500), - [anon_sym_enum] = ACTIONS(2500), - [anon_sym_class] = ACTIONS(2500), - [anon_sym_struct] = ACTIONS(2500), - [anon_sym_union] = ACTIONS(2500), - [anon_sym_if] = ACTIONS(2500), - [anon_sym_else] = ACTIONS(2500), - [anon_sym_switch] = ACTIONS(2500), - [anon_sym_case] = ACTIONS(2500), - [anon_sym_default] = ACTIONS(2500), - [anon_sym_while] = ACTIONS(2500), - [anon_sym_do] = ACTIONS(2500), - [anon_sym_for] = ACTIONS(2500), - [anon_sym_return] = ACTIONS(2500), - [anon_sym_break] = ACTIONS(2500), - [anon_sym_continue] = ACTIONS(2500), - [anon_sym_goto] = ACTIONS(2500), - [anon_sym_not] = ACTIONS(2500), - [anon_sym_compl] = ACTIONS(2500), - [anon_sym_DASH_DASH] = ACTIONS(2502), - [anon_sym_PLUS_PLUS] = ACTIONS(2502), - [anon_sym_sizeof] = ACTIONS(2500), - [sym_number_literal] = ACTIONS(2502), - [anon_sym_L_SQUOTE] = ACTIONS(2502), - [anon_sym_u_SQUOTE] = ACTIONS(2502), - [anon_sym_U_SQUOTE] = ACTIONS(2502), - [anon_sym_u8_SQUOTE] = ACTIONS(2502), - [anon_sym_SQUOTE] = ACTIONS(2502), - [anon_sym_L_DQUOTE] = ACTIONS(2502), - [anon_sym_u_DQUOTE] = ACTIONS(2502), - [anon_sym_U_DQUOTE] = ACTIONS(2502), - [anon_sym_u8_DQUOTE] = ACTIONS(2502), - [anon_sym_DQUOTE] = ACTIONS(2502), - [sym_true] = ACTIONS(2500), - [sym_false] = ACTIONS(2500), - [sym_null] = ACTIONS(2500), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2500), - [anon_sym_decltype] = ACTIONS(2500), - [anon_sym_virtual] = ACTIONS(2500), - [anon_sym_explicit] = ACTIONS(2500), - [anon_sym_typename] = ACTIONS(2500), - [anon_sym_template] = ACTIONS(2500), - [anon_sym_operator] = ACTIONS(2500), - [anon_sym_try] = ACTIONS(2500), - [anon_sym_delete] = ACTIONS(2500), - [anon_sym_throw] = ACTIONS(2500), - [anon_sym_namespace] = ACTIONS(2500), - [anon_sym_using] = ACTIONS(2500), - [anon_sym_static_assert] = ACTIONS(2500), - [anon_sym_concept] = ACTIONS(2500), - [anon_sym_co_return] = ACTIONS(2500), - [anon_sym_co_yield] = ACTIONS(2500), - [anon_sym_R_DQUOTE] = ACTIONS(2502), - [anon_sym_LR_DQUOTE] = ACTIONS(2502), - [anon_sym_uR_DQUOTE] = ACTIONS(2502), - [anon_sym_UR_DQUOTE] = ACTIONS(2502), - [anon_sym_u8R_DQUOTE] = ACTIONS(2502), - [anon_sym_co_await] = ACTIONS(2500), - [anon_sym_new] = ACTIONS(2500), - [anon_sym_requires] = ACTIONS(2500), - [sym_this] = ACTIONS(2500), - [sym_nullptr] = ACTIONS(2500), + [sym_ms_based_modifier] = STATE(7654), + [sym_ms_unaligned_ptr_modifier] = STATE(4712), + [sym_ms_pointer_modifier] = STATE(3395), + [sym__declarator] = STATE(5614), + [sym_parenthesized_declarator] = STATE(5640), + [sym_attributed_declarator] = STATE(5640), + [sym_pointer_declarator] = STATE(5640), + [sym_function_declarator] = STATE(5640), + [sym_array_declarator] = STATE(5640), + [sym_type_qualifier] = STATE(3840), + [sym__expression] = STATE(3039), + [sym__expression_not_binary] = STATE(3021), + [sym_conditional_expression] = STATE(3021), + [sym_assignment_expression] = STATE(3021), + [sym_pointer_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_cast_expression] = STATE(3021), + [sym_sizeof_expression] = STATE(3021), + [sym_offsetof_expression] = STATE(3021), + [sym_generic_expression] = STATE(3021), + [sym_subscript_expression] = STATE(3021), + [sym_call_expression] = STATE(3021), + [sym_gnu_asm_expression] = STATE(3021), + [sym_field_expression] = STATE(3021), + [sym_compound_literal_expression] = STATE(3021), + [sym_parenthesized_expression] = STATE(3021), + [sym_char_literal] = STATE(2901), + [sym_concatenated_string] = STATE(2901), + [sym_string_literal] = STATE(2173), + [sym_null] = STATE(3021), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6616), + [sym_reference_declarator] = STATE(5640), + [sym_structured_binding_declarator] = STATE(5640), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3308), + [sym_raw_string_literal] = STATE(2173), + [sym_co_await_expression] = STATE(3021), + [sym_new_expression] = STATE(3021), + [sym_delete_expression] = STATE(3021), + [sym_requires_clause] = STATE(3021), + [sym_requires_expression] = STATE(3021), + [sym_lambda_expression] = STATE(3021), + [sym_lambda_capture_specifier] = STATE(5188), + [sym_fold_expression] = STATE(3021), + [sym_parameter_pack_expansion] = STATE(3021), + [sym_destructor_name] = STATE(5640), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5268), + [sym_qualified_identifier] = STATE(3324), + [sym_qualified_type_identifier] = STATE(6616), + [sym_operator_name] = STATE(5640), + [sym_user_defined_literal] = STATE(3021), + [aux_sym_type_definition_repeat1] = STATE(3840), + [aux_sym_pointer_declarator_repeat1] = STATE(3395), + [sym_identifier] = ACTIONS(2877), + [anon_sym_LPAREN2] = ACTIONS(2879), + [anon_sym_BANG] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(2881), + [anon_sym_DASH] = ACTIONS(1939), + [anon_sym_PLUS] = ACTIONS(1939), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(1945), + [anon_sym___based] = ACTIONS(45), + [sym_ms_restrict_modifier] = ACTIONS(2867), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(2867), + [sym_ms_signed_ptr_modifier] = ACTIONS(2867), + [anon_sym__unaligned] = ACTIONS(2869), + [anon_sym___unaligned] = ACTIONS(2869), + [anon_sym_LBRACK] = ACTIONS(1911), + [anon_sym_const] = ACTIONS(2871), + [anon_sym_constexpr] = ACTIONS(2871), + [anon_sym_volatile] = ACTIONS(2871), + [anon_sym_restrict] = ACTIONS(2871), + [anon_sym___restrict__] = ACTIONS(2871), + [anon_sym__Atomic] = ACTIONS(2871), + [anon_sym__Noreturn] = ACTIONS(2871), + [anon_sym_noreturn] = ACTIONS(2871), + [anon_sym_mutable] = ACTIONS(2871), + [anon_sym_constinit] = ACTIONS(2871), + [anon_sym_consteval] = ACTIONS(2871), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(1939), + [anon_sym_compl] = ACTIONS(1939), + [anon_sym_DASH_DASH] = ACTIONS(1953), + [anon_sym_PLUS_PLUS] = ACTIONS(1953), + [anon_sym_sizeof] = ACTIONS(1955), + [anon_sym_offsetof] = ACTIONS(1957), + [anon_sym__Generic] = ACTIONS(1959), + [anon_sym_asm] = ACTIONS(1961), + [anon_sym___asm__] = ACTIONS(1961), + [sym_number_literal] = ACTIONS(1963), + [anon_sym_L_SQUOTE] = ACTIONS(1965), + [anon_sym_u_SQUOTE] = ACTIONS(1965), + [anon_sym_U_SQUOTE] = ACTIONS(1965), + [anon_sym_u8_SQUOTE] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_L_DQUOTE] = ACTIONS(1967), + [anon_sym_u_DQUOTE] = ACTIONS(1967), + [anon_sym_U_DQUOTE] = ACTIONS(1967), + [anon_sym_u8_DQUOTE] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(1967), + [sym_true] = ACTIONS(1969), + [sym_false] = ACTIONS(1969), + [anon_sym_NULL] = ACTIONS(1971), + [anon_sym_nullptr] = ACTIONS(1971), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_operator] = ACTIONS(1931), + [anon_sym_delete] = ACTIONS(1975), + [anon_sym_R_DQUOTE] = ACTIONS(1977), + [anon_sym_LR_DQUOTE] = ACTIONS(1977), + [anon_sym_uR_DQUOTE] = ACTIONS(1977), + [anon_sym_UR_DQUOTE] = ACTIONS(1977), + [anon_sym_u8R_DQUOTE] = ACTIONS(1977), + [anon_sym_co_await] = ACTIONS(1979), + [anon_sym_new] = ACTIONS(1981), + [anon_sym_requires] = ACTIONS(1983), + [sym_this] = ACTIONS(1969), }, [377] = { - [sym_identifier] = ACTIONS(2462), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2464), - [anon_sym_AMP] = ACTIONS(2462), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_explicit] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_operator] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_namespace] = ACTIONS(2462), - [anon_sym_using] = ACTIONS(2462), - [anon_sym_static_assert] = ACTIONS(2462), - [anon_sym_concept] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_preproc_def] = STATE(374), + [sym_preproc_function_def] = STATE(374), + [sym_preproc_call] = STATE(374), + [sym_preproc_if_in_field_declaration_list] = STATE(374), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(374), + [sym_preproc_else_in_field_declaration_list] = STATE(7436), + [sym_preproc_elif_in_field_declaration_list] = STATE(7436), + [sym_type_definition] = STATE(374), + [sym__declaration_modifiers] = STATE(3706), + [sym__declaration_specifiers] = STATE(4883), + [sym_attribute_specifier] = STATE(3706), + [sym_attribute_declaration] = STATE(3706), + [sym_ms_declspec_modifier] = STATE(3706), + [sym_ms_based_modifier] = STATE(7654), + [sym__declarator] = STATE(5881), + [sym_parenthesized_declarator] = STATE(5640), + [sym_attributed_declarator] = STATE(5640), + [sym_pointer_declarator] = STATE(5640), + [sym_function_declarator] = STATE(5541), + [sym_array_declarator] = STATE(5640), + [sym_storage_class_specifier] = STATE(3706), + [sym_type_qualifier] = STATE(3706), + [sym__type_specifier] = STATE(3845), + [sym_sized_type_specifier] = STATE(3918), + [sym_enum_specifier] = STATE(3918), + [sym_struct_specifier] = STATE(3918), + [sym_union_specifier] = STATE(3918), + [sym__field_declaration_list_item] = STATE(374), + [sym_field_declaration] = STATE(374), + [sym_placeholder_type_specifier] = STATE(3918), + [sym_decltype_auto] = STATE(3916), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3918), + [sym_virtual] = STATE(3706), + [sym_explicit_function_specifier] = STATE(2243), + [sym_dependent_type] = STATE(3918), + [sym_template_declaration] = STATE(374), + [sym_operator_cast] = STATE(5916), + [sym_inline_method_definition] = STATE(374), + [sym__constructor_specifiers] = STATE(2243), + [sym_operator_cast_definition] = STATE(374), + [sym_operator_cast_declaration] = STATE(374), + [sym_constructor_or_destructor_definition] = STATE(374), + [sym_constructor_or_destructor_declaration] = STATE(374), + [sym_friend_declaration] = STATE(374), + [sym_access_specifier] = STATE(7553), + [sym_reference_declarator] = STATE(5640), + [sym_structured_binding_declarator] = STATE(5640), + [sym_template_type] = STATE(3680), + [sym_template_function] = STATE(5640), + [sym_using_declaration] = STATE(374), + [sym_alias_declaration] = STATE(374), + [sym_static_assert_declaration] = STATE(374), + [sym_destructor_name] = STATE(5640), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5151), + [sym_qualified_identifier] = STATE(5640), + [sym_qualified_type_identifier] = STATE(3966), + [sym_qualified_operator_cast_identifier] = STATE(5916), + [sym_operator_name] = STATE(5640), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(374), + [aux_sym__declaration_specifiers_repeat1] = STATE(2509), + [aux_sym_sized_type_specifier_repeat1] = STATE(3981), + [aux_sym_operator_cast_definition_repeat1] = STATE(2243), + [sym_identifier] = ACTIONS(2544), + [aux_sym_preproc_def_token1] = ACTIONS(2725), + [aux_sym_preproc_if_token1] = ACTIONS(2727), + [aux_sym_preproc_if_token2] = ACTIONS(2883), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2731), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2731), + [aux_sym_preproc_else_token1] = ACTIONS(2554), + [aux_sym_preproc_elif_token1] = ACTIONS(2556), + [sym_preproc_directive] = ACTIONS(2733), + [anon_sym_LPAREN2] = ACTIONS(2560), + [anon_sym_TILDE] = ACTIONS(2562), + [anon_sym_STAR] = ACTIONS(2564), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_typedef] = ACTIONS(2735), + [anon_sym_extern] = ACTIONS(53), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(2570), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1813), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(2572), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(53), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(2574), + [anon_sym_unsigned] = ACTIONS(2574), + [anon_sym_long] = ACTIONS(2574), + [anon_sym_short] = ACTIONS(2574), + [sym_primitive_type] = ACTIONS(2576), + [anon_sym_enum] = ACTIONS(2578), + [anon_sym_class] = ACTIONS(2580), + [anon_sym_struct] = ACTIONS(2582), + [anon_sym_union] = ACTIONS(2584), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2586), + [anon_sym_decltype] = ACTIONS(2588), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_explicit] = ACTIONS(119), + [anon_sym_typename] = ACTIONS(2590), + [anon_sym_template] = ACTIONS(2737), + [anon_sym_operator] = ACTIONS(125), + [anon_sym_friend] = ACTIONS(2739), + [anon_sym_public] = ACTIONS(2596), + [anon_sym_private] = ACTIONS(2596), + [anon_sym_protected] = ACTIONS(2596), + [anon_sym_using] = ACTIONS(2741), + [anon_sym_static_assert] = ACTIONS(2743), }, [378] = { - [sym_identifier] = ACTIONS(2462), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2464), - [anon_sym_AMP] = ACTIONS(2462), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_explicit] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_operator] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_namespace] = ACTIONS(2462), - [anon_sym_using] = ACTIONS(2462), - [anon_sym_static_assert] = ACTIONS(2462), - [anon_sym_concept] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_preproc_def] = STATE(375), + [sym_preproc_function_def] = STATE(375), + [sym_preproc_call] = STATE(375), + [sym_preproc_if_in_field_declaration_list] = STATE(375), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(375), + [sym_preproc_else_in_field_declaration_list] = STATE(7365), + [sym_preproc_elif_in_field_declaration_list] = STATE(7365), + [sym_type_definition] = STATE(375), + [sym__declaration_modifiers] = STATE(3706), + [sym__declaration_specifiers] = STATE(4883), + [sym_attribute_specifier] = STATE(3706), + [sym_attribute_declaration] = STATE(3706), + [sym_ms_declspec_modifier] = STATE(3706), + [sym_ms_based_modifier] = STATE(7654), + [sym__declarator] = STATE(5881), + [sym_parenthesized_declarator] = STATE(5640), + [sym_attributed_declarator] = STATE(5640), + [sym_pointer_declarator] = STATE(5640), + [sym_function_declarator] = STATE(5541), + [sym_array_declarator] = STATE(5640), + [sym_storage_class_specifier] = STATE(3706), + [sym_type_qualifier] = STATE(3706), + [sym__type_specifier] = STATE(3845), + [sym_sized_type_specifier] = STATE(3918), + [sym_enum_specifier] = STATE(3918), + [sym_struct_specifier] = STATE(3918), + [sym_union_specifier] = STATE(3918), + [sym__field_declaration_list_item] = STATE(375), + [sym_field_declaration] = STATE(375), + [sym_placeholder_type_specifier] = STATE(3918), + [sym_decltype_auto] = STATE(3916), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3918), + [sym_virtual] = STATE(3706), + [sym_explicit_function_specifier] = STATE(2243), + [sym_dependent_type] = STATE(3918), + [sym_template_declaration] = STATE(375), + [sym_operator_cast] = STATE(5916), + [sym_inline_method_definition] = STATE(375), + [sym__constructor_specifiers] = STATE(2243), + [sym_operator_cast_definition] = STATE(375), + [sym_operator_cast_declaration] = STATE(375), + [sym_constructor_or_destructor_definition] = STATE(375), + [sym_constructor_or_destructor_declaration] = STATE(375), + [sym_friend_declaration] = STATE(375), + [sym_access_specifier] = STATE(7553), + [sym_reference_declarator] = STATE(5640), + [sym_structured_binding_declarator] = STATE(5640), + [sym_template_type] = STATE(3680), + [sym_template_function] = STATE(5640), + [sym_using_declaration] = STATE(375), + [sym_alias_declaration] = STATE(375), + [sym_static_assert_declaration] = STATE(375), + [sym_destructor_name] = STATE(5640), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5151), + [sym_qualified_identifier] = STATE(5640), + [sym_qualified_type_identifier] = STATE(3966), + [sym_qualified_operator_cast_identifier] = STATE(5916), + [sym_operator_name] = STATE(5640), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(375), + [aux_sym__declaration_specifiers_repeat1] = STATE(2509), + [aux_sym_sized_type_specifier_repeat1] = STATE(3981), + [aux_sym_operator_cast_definition_repeat1] = STATE(2243), + [sym_identifier] = ACTIONS(2544), + [aux_sym_preproc_def_token1] = ACTIONS(2725), + [aux_sym_preproc_if_token1] = ACTIONS(2727), + [aux_sym_preproc_if_token2] = ACTIONS(2885), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2731), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2731), + [aux_sym_preproc_else_token1] = ACTIONS(2554), + [aux_sym_preproc_elif_token1] = ACTIONS(2556), + [sym_preproc_directive] = ACTIONS(2733), + [anon_sym_LPAREN2] = ACTIONS(2560), + [anon_sym_TILDE] = ACTIONS(2562), + [anon_sym_STAR] = ACTIONS(2564), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_typedef] = ACTIONS(2735), + [anon_sym_extern] = ACTIONS(53), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(2570), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1813), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(2572), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(53), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(2574), + [anon_sym_unsigned] = ACTIONS(2574), + [anon_sym_long] = ACTIONS(2574), + [anon_sym_short] = ACTIONS(2574), + [sym_primitive_type] = ACTIONS(2576), + [anon_sym_enum] = ACTIONS(2578), + [anon_sym_class] = ACTIONS(2580), + [anon_sym_struct] = ACTIONS(2582), + [anon_sym_union] = ACTIONS(2584), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2586), + [anon_sym_decltype] = ACTIONS(2588), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_explicit] = ACTIONS(119), + [anon_sym_typename] = ACTIONS(2590), + [anon_sym_template] = ACTIONS(2737), + [anon_sym_operator] = ACTIONS(125), + [anon_sym_friend] = ACTIONS(2739), + [anon_sym_public] = ACTIONS(2596), + [anon_sym_private] = ACTIONS(2596), + [anon_sym_protected] = ACTIONS(2596), + [anon_sym_using] = ACTIONS(2741), + [anon_sym_static_assert] = ACTIONS(2743), }, [379] = { - [sym_identifier] = ACTIONS(2462), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2464), - [anon_sym_AMP] = ACTIONS(2462), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_explicit] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_operator] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_namespace] = ACTIONS(2462), - [anon_sym_using] = ACTIONS(2462), - [anon_sym_static_assert] = ACTIONS(2462), - [anon_sym_concept] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_preproc_def] = STATE(369), + [sym_preproc_function_def] = STATE(369), + [sym_preproc_call] = STATE(369), + [sym_preproc_if_in_field_declaration_list] = STATE(369), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(369), + [sym_preproc_else_in_field_declaration_list] = STATE(7645), + [sym_preproc_elif_in_field_declaration_list] = STATE(7645), + [sym_type_definition] = STATE(369), + [sym__declaration_modifiers] = STATE(3706), + [sym__declaration_specifiers] = STATE(4883), + [sym_attribute_specifier] = STATE(3706), + [sym_attribute_declaration] = STATE(3706), + [sym_ms_declspec_modifier] = STATE(3706), + [sym_ms_based_modifier] = STATE(7654), + [sym__declarator] = STATE(5881), + [sym_parenthesized_declarator] = STATE(5640), + [sym_attributed_declarator] = STATE(5640), + [sym_pointer_declarator] = STATE(5640), + [sym_function_declarator] = STATE(5541), + [sym_array_declarator] = STATE(5640), + [sym_storage_class_specifier] = STATE(3706), + [sym_type_qualifier] = STATE(3706), + [sym__type_specifier] = STATE(3845), + [sym_sized_type_specifier] = STATE(3918), + [sym_enum_specifier] = STATE(3918), + [sym_struct_specifier] = STATE(3918), + [sym_union_specifier] = STATE(3918), + [sym__field_declaration_list_item] = STATE(369), + [sym_field_declaration] = STATE(369), + [sym_placeholder_type_specifier] = STATE(3918), + [sym_decltype_auto] = STATE(3916), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3918), + [sym_virtual] = STATE(3706), + [sym_explicit_function_specifier] = STATE(2243), + [sym_dependent_type] = STATE(3918), + [sym_template_declaration] = STATE(369), + [sym_operator_cast] = STATE(5916), + [sym_inline_method_definition] = STATE(369), + [sym__constructor_specifiers] = STATE(2243), + [sym_operator_cast_definition] = STATE(369), + [sym_operator_cast_declaration] = STATE(369), + [sym_constructor_or_destructor_definition] = STATE(369), + [sym_constructor_or_destructor_declaration] = STATE(369), + [sym_friend_declaration] = STATE(369), + [sym_access_specifier] = STATE(7553), + [sym_reference_declarator] = STATE(5640), + [sym_structured_binding_declarator] = STATE(5640), + [sym_template_type] = STATE(3680), + [sym_template_function] = STATE(5640), + [sym_using_declaration] = STATE(369), + [sym_alias_declaration] = STATE(369), + [sym_static_assert_declaration] = STATE(369), + [sym_destructor_name] = STATE(5640), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5151), + [sym_qualified_identifier] = STATE(5640), + [sym_qualified_type_identifier] = STATE(3966), + [sym_qualified_operator_cast_identifier] = STATE(5916), + [sym_operator_name] = STATE(5640), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(369), + [aux_sym__declaration_specifiers_repeat1] = STATE(2509), + [aux_sym_sized_type_specifier_repeat1] = STATE(3981), + [aux_sym_operator_cast_definition_repeat1] = STATE(2243), + [sym_identifier] = ACTIONS(2544), + [aux_sym_preproc_def_token1] = ACTIONS(2725), + [aux_sym_preproc_if_token1] = ACTIONS(2727), + [aux_sym_preproc_if_token2] = ACTIONS(2887), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2731), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2731), + [aux_sym_preproc_else_token1] = ACTIONS(2554), + [aux_sym_preproc_elif_token1] = ACTIONS(2556), + [sym_preproc_directive] = ACTIONS(2733), + [anon_sym_LPAREN2] = ACTIONS(2560), + [anon_sym_TILDE] = ACTIONS(2562), + [anon_sym_STAR] = ACTIONS(2564), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_typedef] = ACTIONS(2735), + [anon_sym_extern] = ACTIONS(53), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(2570), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1813), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(2572), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(53), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(2574), + [anon_sym_unsigned] = ACTIONS(2574), + [anon_sym_long] = ACTIONS(2574), + [anon_sym_short] = ACTIONS(2574), + [sym_primitive_type] = ACTIONS(2576), + [anon_sym_enum] = ACTIONS(2578), + [anon_sym_class] = ACTIONS(2580), + [anon_sym_struct] = ACTIONS(2582), + [anon_sym_union] = ACTIONS(2584), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2586), + [anon_sym_decltype] = ACTIONS(2588), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_explicit] = ACTIONS(119), + [anon_sym_typename] = ACTIONS(2590), + [anon_sym_template] = ACTIONS(2737), + [anon_sym_operator] = ACTIONS(125), + [anon_sym_friend] = ACTIONS(2739), + [anon_sym_public] = ACTIONS(2596), + [anon_sym_private] = ACTIONS(2596), + [anon_sym_protected] = ACTIONS(2596), + [anon_sym_using] = ACTIONS(2741), + [anon_sym_static_assert] = ACTIONS(2743), }, [380] = { - [sym_identifier] = ACTIONS(2462), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2464), - [anon_sym_AMP] = ACTIONS(2462), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_explicit] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_operator] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_namespace] = ACTIONS(2462), - [anon_sym_using] = ACTIONS(2462), - [anon_sym_static_assert] = ACTIONS(2462), - [anon_sym_concept] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_preproc_def] = STATE(430), + [sym_preproc_function_def] = STATE(430), + [sym_preproc_call] = STATE(430), + [sym_preproc_if_in_field_declaration_list] = STATE(430), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(430), + [sym_preproc_else_in_field_declaration_list] = STATE(7169), + [sym_preproc_elif_in_field_declaration_list] = STATE(7169), + [sym_type_definition] = STATE(430), + [sym__declaration_modifiers] = STATE(3706), + [sym__declaration_specifiers] = STATE(4883), + [sym_attribute_specifier] = STATE(3706), + [sym_attribute_declaration] = STATE(3706), + [sym_ms_declspec_modifier] = STATE(3706), + [sym_ms_based_modifier] = STATE(7654), + [sym__declarator] = STATE(5881), + [sym_parenthesized_declarator] = STATE(5640), + [sym_attributed_declarator] = STATE(5640), + [sym_pointer_declarator] = STATE(5640), + [sym_function_declarator] = STATE(5541), + [sym_array_declarator] = STATE(5640), + [sym_storage_class_specifier] = STATE(3706), + [sym_type_qualifier] = STATE(3706), + [sym__type_specifier] = STATE(3845), + [sym_sized_type_specifier] = STATE(3918), + [sym_enum_specifier] = STATE(3918), + [sym_struct_specifier] = STATE(3918), + [sym_union_specifier] = STATE(3918), + [sym__field_declaration_list_item] = STATE(430), + [sym_field_declaration] = STATE(430), + [sym_placeholder_type_specifier] = STATE(3918), + [sym_decltype_auto] = STATE(3916), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3918), + [sym_virtual] = STATE(3706), + [sym_explicit_function_specifier] = STATE(2243), + [sym_dependent_type] = STATE(3918), + [sym_template_declaration] = STATE(430), + [sym_operator_cast] = STATE(5916), + [sym_inline_method_definition] = STATE(430), + [sym__constructor_specifiers] = STATE(2243), + [sym_operator_cast_definition] = STATE(430), + [sym_operator_cast_declaration] = STATE(430), + [sym_constructor_or_destructor_definition] = STATE(430), + [sym_constructor_or_destructor_declaration] = STATE(430), + [sym_friend_declaration] = STATE(430), + [sym_access_specifier] = STATE(7553), + [sym_reference_declarator] = STATE(5640), + [sym_structured_binding_declarator] = STATE(5640), + [sym_template_type] = STATE(3680), + [sym_template_function] = STATE(5640), + [sym_using_declaration] = STATE(430), + [sym_alias_declaration] = STATE(430), + [sym_static_assert_declaration] = STATE(430), + [sym_destructor_name] = STATE(5640), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5151), + [sym_qualified_identifier] = STATE(5640), + [sym_qualified_type_identifier] = STATE(3966), + [sym_qualified_operator_cast_identifier] = STATE(5916), + [sym_operator_name] = STATE(5640), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(430), + [aux_sym__declaration_specifiers_repeat1] = STATE(2509), + [aux_sym_sized_type_specifier_repeat1] = STATE(3981), + [aux_sym_operator_cast_definition_repeat1] = STATE(2243), + [sym_identifier] = ACTIONS(2544), + [aux_sym_preproc_def_token1] = ACTIONS(2725), + [aux_sym_preproc_if_token1] = ACTIONS(2727), + [aux_sym_preproc_if_token2] = ACTIONS(2889), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2731), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2731), + [aux_sym_preproc_else_token1] = ACTIONS(2554), + [aux_sym_preproc_elif_token1] = ACTIONS(2556), + [sym_preproc_directive] = ACTIONS(2733), + [anon_sym_LPAREN2] = ACTIONS(2560), + [anon_sym_TILDE] = ACTIONS(2562), + [anon_sym_STAR] = ACTIONS(2564), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_typedef] = ACTIONS(2735), + [anon_sym_extern] = ACTIONS(53), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(2570), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1813), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(2572), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(53), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(2574), + [anon_sym_unsigned] = ACTIONS(2574), + [anon_sym_long] = ACTIONS(2574), + [anon_sym_short] = ACTIONS(2574), + [sym_primitive_type] = ACTIONS(2576), + [anon_sym_enum] = ACTIONS(2578), + [anon_sym_class] = ACTIONS(2580), + [anon_sym_struct] = ACTIONS(2582), + [anon_sym_union] = ACTIONS(2584), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2586), + [anon_sym_decltype] = ACTIONS(2588), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_explicit] = ACTIONS(119), + [anon_sym_typename] = ACTIONS(2590), + [anon_sym_template] = ACTIONS(2737), + [anon_sym_operator] = ACTIONS(125), + [anon_sym_friend] = ACTIONS(2739), + [anon_sym_public] = ACTIONS(2596), + [anon_sym_private] = ACTIONS(2596), + [anon_sym_protected] = ACTIONS(2596), + [anon_sym_using] = ACTIONS(2741), + [anon_sym_static_assert] = ACTIONS(2743), }, [381] = { - [sym_identifier] = ACTIONS(2462), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2464), - [anon_sym_AMP] = ACTIONS(2462), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_explicit] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_operator] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_namespace] = ACTIONS(2462), - [anon_sym_using] = ACTIONS(2462), - [anon_sym_static_assert] = ACTIONS(2462), - [anon_sym_concept] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_preproc_def] = STATE(380), + [sym_preproc_function_def] = STATE(380), + [sym_preproc_call] = STATE(380), + [sym_preproc_if_in_field_declaration_list] = STATE(380), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(380), + [sym_preproc_else_in_field_declaration_list] = STATE(7190), + [sym_preproc_elif_in_field_declaration_list] = STATE(7190), + [sym_type_definition] = STATE(380), + [sym__declaration_modifiers] = STATE(3706), + [sym__declaration_specifiers] = STATE(4883), + [sym_attribute_specifier] = STATE(3706), + [sym_attribute_declaration] = STATE(3706), + [sym_ms_declspec_modifier] = STATE(3706), + [sym_ms_based_modifier] = STATE(7654), + [sym__declarator] = STATE(5881), + [sym_parenthesized_declarator] = STATE(5640), + [sym_attributed_declarator] = STATE(5640), + [sym_pointer_declarator] = STATE(5640), + [sym_function_declarator] = STATE(5541), + [sym_array_declarator] = STATE(5640), + [sym_storage_class_specifier] = STATE(3706), + [sym_type_qualifier] = STATE(3706), + [sym__type_specifier] = STATE(3845), + [sym_sized_type_specifier] = STATE(3918), + [sym_enum_specifier] = STATE(3918), + [sym_struct_specifier] = STATE(3918), + [sym_union_specifier] = STATE(3918), + [sym__field_declaration_list_item] = STATE(380), + [sym_field_declaration] = STATE(380), + [sym_placeholder_type_specifier] = STATE(3918), + [sym_decltype_auto] = STATE(3916), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3918), + [sym_virtual] = STATE(3706), + [sym_explicit_function_specifier] = STATE(2243), + [sym_dependent_type] = STATE(3918), + [sym_template_declaration] = STATE(380), + [sym_operator_cast] = STATE(5916), + [sym_inline_method_definition] = STATE(380), + [sym__constructor_specifiers] = STATE(2243), + [sym_operator_cast_definition] = STATE(380), + [sym_operator_cast_declaration] = STATE(380), + [sym_constructor_or_destructor_definition] = STATE(380), + [sym_constructor_or_destructor_declaration] = STATE(380), + [sym_friend_declaration] = STATE(380), + [sym_access_specifier] = STATE(7553), + [sym_reference_declarator] = STATE(5640), + [sym_structured_binding_declarator] = STATE(5640), + [sym_template_type] = STATE(3680), + [sym_template_function] = STATE(5640), + [sym_using_declaration] = STATE(380), + [sym_alias_declaration] = STATE(380), + [sym_static_assert_declaration] = STATE(380), + [sym_destructor_name] = STATE(5640), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5151), + [sym_qualified_identifier] = STATE(5640), + [sym_qualified_type_identifier] = STATE(3966), + [sym_qualified_operator_cast_identifier] = STATE(5916), + [sym_operator_name] = STATE(5640), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(380), + [aux_sym__declaration_specifiers_repeat1] = STATE(2509), + [aux_sym_sized_type_specifier_repeat1] = STATE(3981), + [aux_sym_operator_cast_definition_repeat1] = STATE(2243), + [sym_identifier] = ACTIONS(2544), + [aux_sym_preproc_def_token1] = ACTIONS(2725), + [aux_sym_preproc_if_token1] = ACTIONS(2727), + [aux_sym_preproc_if_token2] = ACTIONS(2891), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2731), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2731), + [aux_sym_preproc_else_token1] = ACTIONS(2554), + [aux_sym_preproc_elif_token1] = ACTIONS(2556), + [sym_preproc_directive] = ACTIONS(2733), + [anon_sym_LPAREN2] = ACTIONS(2560), + [anon_sym_TILDE] = ACTIONS(2562), + [anon_sym_STAR] = ACTIONS(2564), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_typedef] = ACTIONS(2735), + [anon_sym_extern] = ACTIONS(53), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(2570), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1813), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(2572), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(53), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(2574), + [anon_sym_unsigned] = ACTIONS(2574), + [anon_sym_long] = ACTIONS(2574), + [anon_sym_short] = ACTIONS(2574), + [sym_primitive_type] = ACTIONS(2576), + [anon_sym_enum] = ACTIONS(2578), + [anon_sym_class] = ACTIONS(2580), + [anon_sym_struct] = ACTIONS(2582), + [anon_sym_union] = ACTIONS(2584), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2586), + [anon_sym_decltype] = ACTIONS(2588), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_explicit] = ACTIONS(119), + [anon_sym_typename] = ACTIONS(2590), + [anon_sym_template] = ACTIONS(2737), + [anon_sym_operator] = ACTIONS(125), + [anon_sym_friend] = ACTIONS(2739), + [anon_sym_public] = ACTIONS(2596), + [anon_sym_private] = ACTIONS(2596), + [anon_sym_protected] = ACTIONS(2596), + [anon_sym_using] = ACTIONS(2741), + [anon_sym_static_assert] = ACTIONS(2743), }, [382] = { - [sym_identifier] = ACTIONS(2462), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2464), - [anon_sym_AMP] = ACTIONS(2462), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_explicit] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_operator] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_namespace] = ACTIONS(2462), - [anon_sym_using] = ACTIONS(2462), - [anon_sym_static_assert] = ACTIONS(2462), - [anon_sym_concept] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_preproc_def] = STATE(430), + [sym_preproc_function_def] = STATE(430), + [sym_preproc_call] = STATE(430), + [sym_preproc_if_in_field_declaration_list] = STATE(430), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(430), + [sym_preproc_else_in_field_declaration_list] = STATE(7648), + [sym_preproc_elif_in_field_declaration_list] = STATE(7648), + [sym_type_definition] = STATE(430), + [sym__declaration_modifiers] = STATE(3706), + [sym__declaration_specifiers] = STATE(4883), + [sym_attribute_specifier] = STATE(3706), + [sym_attribute_declaration] = STATE(3706), + [sym_ms_declspec_modifier] = STATE(3706), + [sym_ms_based_modifier] = STATE(7654), + [sym__declarator] = STATE(5881), + [sym_parenthesized_declarator] = STATE(5640), + [sym_attributed_declarator] = STATE(5640), + [sym_pointer_declarator] = STATE(5640), + [sym_function_declarator] = STATE(5541), + [sym_array_declarator] = STATE(5640), + [sym_storage_class_specifier] = STATE(3706), + [sym_type_qualifier] = STATE(3706), + [sym__type_specifier] = STATE(3845), + [sym_sized_type_specifier] = STATE(3918), + [sym_enum_specifier] = STATE(3918), + [sym_struct_specifier] = STATE(3918), + [sym_union_specifier] = STATE(3918), + [sym__field_declaration_list_item] = STATE(430), + [sym_field_declaration] = STATE(430), + [sym_placeholder_type_specifier] = STATE(3918), + [sym_decltype_auto] = STATE(3916), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3918), + [sym_virtual] = STATE(3706), + [sym_explicit_function_specifier] = STATE(2243), + [sym_dependent_type] = STATE(3918), + [sym_template_declaration] = STATE(430), + [sym_operator_cast] = STATE(5916), + [sym_inline_method_definition] = STATE(430), + [sym__constructor_specifiers] = STATE(2243), + [sym_operator_cast_definition] = STATE(430), + [sym_operator_cast_declaration] = STATE(430), + [sym_constructor_or_destructor_definition] = STATE(430), + [sym_constructor_or_destructor_declaration] = STATE(430), + [sym_friend_declaration] = STATE(430), + [sym_access_specifier] = STATE(7553), + [sym_reference_declarator] = STATE(5640), + [sym_structured_binding_declarator] = STATE(5640), + [sym_template_type] = STATE(3680), + [sym_template_function] = STATE(5640), + [sym_using_declaration] = STATE(430), + [sym_alias_declaration] = STATE(430), + [sym_static_assert_declaration] = STATE(430), + [sym_destructor_name] = STATE(5640), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5151), + [sym_qualified_identifier] = STATE(5640), + [sym_qualified_type_identifier] = STATE(3966), + [sym_qualified_operator_cast_identifier] = STATE(5916), + [sym_operator_name] = STATE(5640), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(430), + [aux_sym__declaration_specifiers_repeat1] = STATE(2509), + [aux_sym_sized_type_specifier_repeat1] = STATE(3981), + [aux_sym_operator_cast_definition_repeat1] = STATE(2243), + [sym_identifier] = ACTIONS(2544), + [aux_sym_preproc_def_token1] = ACTIONS(2725), + [aux_sym_preproc_if_token1] = ACTIONS(2727), + [aux_sym_preproc_if_token2] = ACTIONS(2893), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2731), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2731), + [aux_sym_preproc_else_token1] = ACTIONS(2554), + [aux_sym_preproc_elif_token1] = ACTIONS(2556), + [sym_preproc_directive] = ACTIONS(2733), + [anon_sym_LPAREN2] = ACTIONS(2560), + [anon_sym_TILDE] = ACTIONS(2562), + [anon_sym_STAR] = ACTIONS(2564), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_typedef] = ACTIONS(2735), + [anon_sym_extern] = ACTIONS(53), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(2570), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1813), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(2572), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(53), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(2574), + [anon_sym_unsigned] = ACTIONS(2574), + [anon_sym_long] = ACTIONS(2574), + [anon_sym_short] = ACTIONS(2574), + [sym_primitive_type] = ACTIONS(2576), + [anon_sym_enum] = ACTIONS(2578), + [anon_sym_class] = ACTIONS(2580), + [anon_sym_struct] = ACTIONS(2582), + [anon_sym_union] = ACTIONS(2584), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2586), + [anon_sym_decltype] = ACTIONS(2588), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_explicit] = ACTIONS(119), + [anon_sym_typename] = ACTIONS(2590), + [anon_sym_template] = ACTIONS(2737), + [anon_sym_operator] = ACTIONS(125), + [anon_sym_friend] = ACTIONS(2739), + [anon_sym_public] = ACTIONS(2596), + [anon_sym_private] = ACTIONS(2596), + [anon_sym_protected] = ACTIONS(2596), + [anon_sym_using] = ACTIONS(2741), + [anon_sym_static_assert] = ACTIONS(2743), }, [383] = { - [sym_identifier] = ACTIONS(2462), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2464), - [anon_sym_AMP] = ACTIONS(2462), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_explicit] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_operator] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_namespace] = ACTIONS(2462), - [anon_sym_using] = ACTIONS(2462), - [anon_sym_static_assert] = ACTIONS(2462), - [anon_sym_concept] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_identifier] = ACTIONS(2542), + [aux_sym_preproc_include_token1] = ACTIONS(2542), + [aux_sym_preproc_def_token1] = ACTIONS(2542), + [aux_sym_preproc_if_token1] = ACTIONS(2542), + [aux_sym_preproc_if_token2] = ACTIONS(2542), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2542), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2542), + [aux_sym_preproc_else_token1] = ACTIONS(2542), + [aux_sym_preproc_elif_token1] = ACTIONS(2542), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2542), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2542), + [sym_preproc_directive] = ACTIONS(2542), + [anon_sym_LPAREN2] = ACTIONS(2540), + [anon_sym_BANG] = ACTIONS(2540), + [anon_sym_TILDE] = ACTIONS(2540), + [anon_sym_DASH] = ACTIONS(2542), + [anon_sym_PLUS] = ACTIONS(2542), + [anon_sym_STAR] = ACTIONS(2540), + [anon_sym_AMP_AMP] = ACTIONS(2540), + [anon_sym_AMP] = ACTIONS(2542), + [anon_sym_SEMI] = ACTIONS(2540), + [anon_sym_typedef] = ACTIONS(2542), + [anon_sym_extern] = ACTIONS(2542), + [anon_sym___attribute__] = ACTIONS(2542), + [anon_sym_COLON_COLON] = ACTIONS(2540), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2540), + [anon_sym___declspec] = ACTIONS(2542), + [anon_sym___based] = ACTIONS(2542), + [anon_sym___cdecl] = ACTIONS(2542), + [anon_sym___clrcall] = ACTIONS(2542), + [anon_sym___stdcall] = ACTIONS(2542), + [anon_sym___fastcall] = ACTIONS(2542), + [anon_sym___thiscall] = ACTIONS(2542), + [anon_sym___vectorcall] = ACTIONS(2542), + [anon_sym_LBRACE] = ACTIONS(2540), + [anon_sym_LBRACK] = ACTIONS(2542), + [anon_sym_static] = ACTIONS(2542), + [anon_sym_register] = ACTIONS(2542), + [anon_sym_inline] = ACTIONS(2542), + [anon_sym_thread_local] = ACTIONS(2542), + [anon_sym_const] = ACTIONS(2542), + [anon_sym_constexpr] = ACTIONS(2542), + [anon_sym_volatile] = ACTIONS(2542), + [anon_sym_restrict] = ACTIONS(2542), + [anon_sym___restrict__] = ACTIONS(2542), + [anon_sym__Atomic] = ACTIONS(2542), + [anon_sym__Noreturn] = ACTIONS(2542), + [anon_sym_noreturn] = ACTIONS(2542), + [anon_sym_mutable] = ACTIONS(2542), + [anon_sym_constinit] = ACTIONS(2542), + [anon_sym_consteval] = ACTIONS(2542), + [anon_sym_signed] = ACTIONS(2542), + [anon_sym_unsigned] = ACTIONS(2542), + [anon_sym_long] = ACTIONS(2542), + [anon_sym_short] = ACTIONS(2542), + [sym_primitive_type] = ACTIONS(2542), + [anon_sym_enum] = ACTIONS(2542), + [anon_sym_class] = ACTIONS(2542), + [anon_sym_struct] = ACTIONS(2542), + [anon_sym_union] = ACTIONS(2542), + [anon_sym_if] = ACTIONS(2542), + [anon_sym_else] = ACTIONS(2542), + [anon_sym_switch] = ACTIONS(2542), + [anon_sym_case] = ACTIONS(2542), + [anon_sym_default] = ACTIONS(2542), + [anon_sym_while] = ACTIONS(2542), + [anon_sym_do] = ACTIONS(2542), + [anon_sym_for] = ACTIONS(2542), + [anon_sym_return] = ACTIONS(2542), + [anon_sym_break] = ACTIONS(2542), + [anon_sym_continue] = ACTIONS(2542), + [anon_sym_goto] = ACTIONS(2542), + [anon_sym_not] = ACTIONS(2542), + [anon_sym_compl] = ACTIONS(2542), + [anon_sym_DASH_DASH] = ACTIONS(2540), + [anon_sym_PLUS_PLUS] = ACTIONS(2540), + [anon_sym_sizeof] = ACTIONS(2542), + [anon_sym_offsetof] = ACTIONS(2542), + [anon_sym__Generic] = ACTIONS(2542), + [anon_sym_asm] = ACTIONS(2542), + [anon_sym___asm__] = ACTIONS(2542), + [sym_number_literal] = ACTIONS(2540), + [anon_sym_L_SQUOTE] = ACTIONS(2540), + [anon_sym_u_SQUOTE] = ACTIONS(2540), + [anon_sym_U_SQUOTE] = ACTIONS(2540), + [anon_sym_u8_SQUOTE] = ACTIONS(2540), + [anon_sym_SQUOTE] = ACTIONS(2540), + [anon_sym_L_DQUOTE] = ACTIONS(2540), + [anon_sym_u_DQUOTE] = ACTIONS(2540), + [anon_sym_U_DQUOTE] = ACTIONS(2540), + [anon_sym_u8_DQUOTE] = ACTIONS(2540), + [anon_sym_DQUOTE] = ACTIONS(2540), + [sym_true] = ACTIONS(2542), + [sym_false] = ACTIONS(2542), + [anon_sym_NULL] = ACTIONS(2542), + [anon_sym_nullptr] = ACTIONS(2542), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2542), + [anon_sym_decltype] = ACTIONS(2542), + [anon_sym_virtual] = ACTIONS(2542), + [anon_sym_explicit] = ACTIONS(2542), + [anon_sym_typename] = ACTIONS(2542), + [anon_sym_template] = ACTIONS(2542), + [anon_sym_operator] = ACTIONS(2542), + [anon_sym_try] = ACTIONS(2542), + [anon_sym_delete] = ACTIONS(2542), + [anon_sym_throw] = ACTIONS(2542), + [anon_sym_namespace] = ACTIONS(2542), + [anon_sym_using] = ACTIONS(2542), + [anon_sym_static_assert] = ACTIONS(2542), + [anon_sym_concept] = ACTIONS(2542), + [anon_sym_co_return] = ACTIONS(2542), + [anon_sym_co_yield] = ACTIONS(2542), + [anon_sym_catch] = ACTIONS(2542), + [anon_sym_R_DQUOTE] = ACTIONS(2540), + [anon_sym_LR_DQUOTE] = ACTIONS(2540), + [anon_sym_uR_DQUOTE] = ACTIONS(2540), + [anon_sym_UR_DQUOTE] = ACTIONS(2540), + [anon_sym_u8R_DQUOTE] = ACTIONS(2540), + [anon_sym_co_await] = ACTIONS(2542), + [anon_sym_new] = ACTIONS(2542), + [anon_sym_requires] = ACTIONS(2542), + [sym_this] = ACTIONS(2542), }, [384] = { - [sym_identifier] = ACTIONS(2462), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2464), - [anon_sym_AMP] = ACTIONS(2462), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_explicit] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_operator] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_namespace] = ACTIONS(2462), - [anon_sym_using] = ACTIONS(2462), - [anon_sym_static_assert] = ACTIONS(2462), - [anon_sym_concept] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_catch_clause] = STATE(384), + [aux_sym_constructor_try_statement_repeat1] = STATE(384), + [sym_identifier] = ACTIONS(2684), + [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2686), + [anon_sym_AMP] = ACTIONS(2684), + [anon_sym_SEMI] = ACTIONS(2686), + [anon_sym_typedef] = ACTIONS(2684), + [anon_sym_extern] = ACTIONS(2684), + [anon_sym___attribute__] = ACTIONS(2684), + [anon_sym_COLON_COLON] = ACTIONS(2686), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2686), + [anon_sym___declspec] = ACTIONS(2684), + [anon_sym___based] = 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_LBRACK] = ACTIONS(2684), + [anon_sym_static] = ACTIONS(2684), + [anon_sym_register] = ACTIONS(2684), + [anon_sym_inline] = ACTIONS(2684), + [anon_sym_thread_local] = 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_noreturn] = ACTIONS(2684), + [anon_sym_mutable] = ACTIONS(2684), + [anon_sym_constinit] = ACTIONS(2684), + [anon_sym_consteval] = ACTIONS(2684), + [anon_sym_signed] = ACTIONS(2684), + [anon_sym_unsigned] = ACTIONS(2684), + [anon_sym_long] = ACTIONS(2684), + [anon_sym_short] = ACTIONS(2684), + [sym_primitive_type] = ACTIONS(2684), + [anon_sym_enum] = ACTIONS(2684), + [anon_sym_class] = ACTIONS(2684), + [anon_sym_struct] = ACTIONS(2684), + [anon_sym_union] = ACTIONS(2684), + [anon_sym_if] = ACTIONS(2684), + [anon_sym_else] = 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_return] = ACTIONS(2684), + [anon_sym_break] = ACTIONS(2684), + [anon_sym_continue] = ACTIONS(2684), + [anon_sym_goto] = ACTIONS(2684), + [anon_sym_not] = ACTIONS(2684), + [anon_sym_compl] = ACTIONS(2684), + [anon_sym_DASH_DASH] = ACTIONS(2686), + [anon_sym_PLUS_PLUS] = ACTIONS(2686), + [anon_sym_sizeof] = ACTIONS(2684), + [anon_sym_offsetof] = ACTIONS(2684), + [anon_sym__Generic] = 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_L_DQUOTE] = ACTIONS(2686), + [anon_sym_u_DQUOTE] = ACTIONS(2686), + [anon_sym_U_DQUOTE] = ACTIONS(2686), + [anon_sym_u8_DQUOTE] = ACTIONS(2686), + [anon_sym_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), + [sym_auto] = ACTIONS(2684), + [anon_sym_decltype] = ACTIONS(2684), + [anon_sym_virtual] = ACTIONS(2684), + [anon_sym_explicit] = ACTIONS(2684), + [anon_sym_typename] = ACTIONS(2684), + [anon_sym_template] = ACTIONS(2684), + [anon_sym_operator] = ACTIONS(2684), + [anon_sym_try] = ACTIONS(2684), + [anon_sym_delete] = ACTIONS(2684), + [anon_sym_throw] = ACTIONS(2684), + [anon_sym_namespace] = ACTIONS(2684), + [anon_sym_using] = ACTIONS(2684), + [anon_sym_static_assert] = ACTIONS(2684), + [anon_sym_concept] = ACTIONS(2684), + [anon_sym_co_return] = ACTIONS(2684), + [anon_sym_co_yield] = ACTIONS(2684), + [anon_sym_catch] = ACTIONS(2895), + [anon_sym_R_DQUOTE] = ACTIONS(2686), + [anon_sym_LR_DQUOTE] = ACTIONS(2686), + [anon_sym_uR_DQUOTE] = ACTIONS(2686), + [anon_sym_UR_DQUOTE] = ACTIONS(2686), + [anon_sym_u8R_DQUOTE] = ACTIONS(2686), + [anon_sym_co_await] = ACTIONS(2684), + [anon_sym_new] = ACTIONS(2684), + [anon_sym_requires] = ACTIONS(2684), + [sym_this] = ACTIONS(2684), }, [385] = { - [sym_identifier] = ACTIONS(2462), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2464), - [anon_sym_AMP] = ACTIONS(2462), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_explicit] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_operator] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_namespace] = ACTIONS(2462), - [anon_sym_using] = ACTIONS(2462), - [anon_sym_static_assert] = ACTIONS(2462), - [anon_sym_concept] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_catch_clause] = STATE(384), + [aux_sym_constructor_try_statement_repeat1] = STATE(384), + [sym_identifier] = ACTIONS(2709), + [aux_sym_preproc_include_token1] = ACTIONS(2709), + [aux_sym_preproc_def_token1] = ACTIONS(2709), + [aux_sym_preproc_if_token1] = ACTIONS(2709), + [aux_sym_preproc_if_token2] = ACTIONS(2709), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2709), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2709), + [aux_sym_preproc_else_token1] = ACTIONS(2709), + [aux_sym_preproc_elif_token1] = ACTIONS(2709), + [sym_preproc_directive] = ACTIONS(2709), + [anon_sym_LPAREN2] = ACTIONS(2711), + [anon_sym_BANG] = ACTIONS(2711), + [anon_sym_TILDE] = ACTIONS(2711), + [anon_sym_DASH] = ACTIONS(2709), + [anon_sym_PLUS] = ACTIONS(2709), + [anon_sym_STAR] = ACTIONS(2711), + [anon_sym_AMP_AMP] = ACTIONS(2711), + [anon_sym_AMP] = ACTIONS(2709), + [anon_sym_SEMI] = ACTIONS(2711), + [anon_sym_typedef] = ACTIONS(2709), + [anon_sym_extern] = ACTIONS(2709), + [anon_sym___attribute__] = ACTIONS(2709), + [anon_sym_COLON_COLON] = ACTIONS(2711), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2711), + [anon_sym___declspec] = ACTIONS(2709), + [anon_sym___based] = ACTIONS(2709), + [anon_sym___cdecl] = ACTIONS(2709), + [anon_sym___clrcall] = ACTIONS(2709), + [anon_sym___stdcall] = ACTIONS(2709), + [anon_sym___fastcall] = ACTIONS(2709), + [anon_sym___thiscall] = ACTIONS(2709), + [anon_sym___vectorcall] = ACTIONS(2709), + [anon_sym_LBRACE] = ACTIONS(2711), + [anon_sym_LBRACK] = ACTIONS(2709), + [anon_sym_static] = ACTIONS(2709), + [anon_sym_register] = ACTIONS(2709), + [anon_sym_inline] = ACTIONS(2709), + [anon_sym_thread_local] = ACTIONS(2709), + [anon_sym_const] = ACTIONS(2709), + [anon_sym_constexpr] = ACTIONS(2709), + [anon_sym_volatile] = ACTIONS(2709), + [anon_sym_restrict] = ACTIONS(2709), + [anon_sym___restrict__] = ACTIONS(2709), + [anon_sym__Atomic] = ACTIONS(2709), + [anon_sym__Noreturn] = ACTIONS(2709), + [anon_sym_noreturn] = ACTIONS(2709), + [anon_sym_mutable] = ACTIONS(2709), + [anon_sym_constinit] = ACTIONS(2709), + [anon_sym_consteval] = ACTIONS(2709), + [anon_sym_signed] = ACTIONS(2709), + [anon_sym_unsigned] = ACTIONS(2709), + [anon_sym_long] = ACTIONS(2709), + [anon_sym_short] = ACTIONS(2709), + [sym_primitive_type] = ACTIONS(2709), + [anon_sym_enum] = ACTIONS(2709), + [anon_sym_class] = ACTIONS(2709), + [anon_sym_struct] = ACTIONS(2709), + [anon_sym_union] = ACTIONS(2709), + [anon_sym_if] = ACTIONS(2709), + [anon_sym_else] = ACTIONS(2709), + [anon_sym_switch] = ACTIONS(2709), + [anon_sym_case] = ACTIONS(2709), + [anon_sym_default] = ACTIONS(2709), + [anon_sym_while] = ACTIONS(2709), + [anon_sym_do] = ACTIONS(2709), + [anon_sym_for] = ACTIONS(2709), + [anon_sym_return] = ACTIONS(2709), + [anon_sym_break] = ACTIONS(2709), + [anon_sym_continue] = ACTIONS(2709), + [anon_sym_goto] = ACTIONS(2709), + [anon_sym_not] = ACTIONS(2709), + [anon_sym_compl] = ACTIONS(2709), + [anon_sym_DASH_DASH] = ACTIONS(2711), + [anon_sym_PLUS_PLUS] = ACTIONS(2711), + [anon_sym_sizeof] = ACTIONS(2709), + [anon_sym_offsetof] = ACTIONS(2709), + [anon_sym__Generic] = ACTIONS(2709), + [anon_sym_asm] = ACTIONS(2709), + [anon_sym___asm__] = ACTIONS(2709), + [sym_number_literal] = ACTIONS(2711), + [anon_sym_L_SQUOTE] = ACTIONS(2711), + [anon_sym_u_SQUOTE] = ACTIONS(2711), + [anon_sym_U_SQUOTE] = ACTIONS(2711), + [anon_sym_u8_SQUOTE] = ACTIONS(2711), + [anon_sym_SQUOTE] = ACTIONS(2711), + [anon_sym_L_DQUOTE] = ACTIONS(2711), + [anon_sym_u_DQUOTE] = ACTIONS(2711), + [anon_sym_U_DQUOTE] = ACTIONS(2711), + [anon_sym_u8_DQUOTE] = ACTIONS(2711), + [anon_sym_DQUOTE] = ACTIONS(2711), + [sym_true] = ACTIONS(2709), + [sym_false] = ACTIONS(2709), + [anon_sym_NULL] = ACTIONS(2709), + [anon_sym_nullptr] = ACTIONS(2709), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2709), + [anon_sym_decltype] = ACTIONS(2709), + [anon_sym_virtual] = ACTIONS(2709), + [anon_sym_explicit] = ACTIONS(2709), + [anon_sym_typename] = ACTIONS(2709), + [anon_sym_template] = ACTIONS(2709), + [anon_sym_operator] = ACTIONS(2709), + [anon_sym_try] = ACTIONS(2709), + [anon_sym_delete] = ACTIONS(2709), + [anon_sym_throw] = ACTIONS(2709), + [anon_sym_namespace] = ACTIONS(2709), + [anon_sym_using] = ACTIONS(2709), + [anon_sym_static_assert] = ACTIONS(2709), + [anon_sym_concept] = ACTIONS(2709), + [anon_sym_co_return] = ACTIONS(2709), + [anon_sym_co_yield] = ACTIONS(2709), + [anon_sym_catch] = ACTIONS(2898), + [anon_sym_R_DQUOTE] = ACTIONS(2711), + [anon_sym_LR_DQUOTE] = ACTIONS(2711), + [anon_sym_uR_DQUOTE] = ACTIONS(2711), + [anon_sym_UR_DQUOTE] = ACTIONS(2711), + [anon_sym_u8R_DQUOTE] = ACTIONS(2711), + [anon_sym_co_await] = ACTIONS(2709), + [anon_sym_new] = ACTIONS(2709), + [anon_sym_requires] = ACTIONS(2709), + [sym_this] = ACTIONS(2709), }, [386] = { - [sym_type_qualifier] = STATE(3306), - [sym__type_specifier] = STATE(3903), - [sym_sized_type_specifier] = STATE(3003), - [sym_enum_specifier] = STATE(3003), - [sym_struct_specifier] = STATE(3003), - [sym_union_specifier] = STATE(3003), - [sym__expression] = STATE(3480), - [sym_conditional_expression] = STATE(3855), - [sym_assignment_expression] = STATE(3855), - [sym_pointer_expression] = STATE(2954), - [sym_unary_expression] = STATE(3855), - [sym_binary_expression] = STATE(3855), - [sym_update_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_type_descriptor] = STATE(5260), - [sym_sizeof_expression] = STATE(3855), - [sym_subscript_expression] = STATE(2954), - [sym_call_expression] = STATE(2954), - [sym_field_expression] = STATE(2954), - [sym_compound_literal_expression] = STATE(3855), - [sym_parenthesized_expression] = STATE(2954), - [sym_char_literal] = STATE(3557), - [sym_concatenated_string] = STATE(3557), - [sym_string_literal] = STATE(2955), - [sym_placeholder_type_specifier] = STATE(3003), - [sym_decltype_auto] = STATE(3008), - [sym_decltype] = STATE(2851), - [sym_class_specifier] = STATE(3003), - [sym__class_name] = STATE(5844), - [sym_dependent_type] = STATE(3003), - [sym_template_type] = STATE(4288), - [sym_template_function] = STATE(3855), - [sym_raw_string_literal] = STATE(2955), - [sym_co_await_expression] = STATE(3855), - [sym_new_expression] = STATE(3855), - [sym_delete_expression] = STATE(3855), - [sym_requires_clause] = STATE(3855), - [sym_requires_expression] = STATE(3855), - [sym_lambda_expression] = STATE(3855), - [sym_lambda_capture_specifier] = STATE(4501), - [sym_fold_expression] = STATE(3855), - [sym_parameter_pack_expansion] = STATE(3855), - [sym_type_parameter_pack_expansion] = STATE(5522), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4544), - [sym_qualified_identifier] = STATE(2954), - [sym_qualified_type_identifier] = STATE(4356), - [sym_user_defined_literal] = STATE(3855), - [aux_sym_type_definition_repeat1] = STATE(3306), - [aux_sym_sized_type_specifier_repeat1] = STATE(2022), - [sym_identifier] = ACTIONS(2408), - [anon_sym_LPAREN2] = ACTIONS(2410), - [anon_sym_BANG] = ACTIONS(2412), - [anon_sym_TILDE] = ACTIONS(2412), - [anon_sym_DASH] = ACTIONS(2414), - [anon_sym_PLUS] = ACTIONS(2414), - [anon_sym_STAR] = ACTIONS(2416), - [anon_sym_AMP] = ACTIONS(2416), - [anon_sym_COLON_COLON] = ACTIONS(2418), - [anon_sym_LBRACK] = ACTIONS(1539), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(2420), - [anon_sym_unsigned] = ACTIONS(2420), - [anon_sym_long] = ACTIONS(2420), - [anon_sym_short] = ACTIONS(2420), - [sym_primitive_type] = ACTIONS(2422), - [anon_sym_enum] = ACTIONS(2424), - [anon_sym_class] = ACTIONS(2426), - [anon_sym_struct] = ACTIONS(2428), - [anon_sym_union] = ACTIONS(2430), - [anon_sym_not] = ACTIONS(2414), - [anon_sym_compl] = ACTIONS(2414), - [anon_sym_DASH_DASH] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(2432), - [anon_sym_sizeof] = ACTIONS(2434), - [sym_number_literal] = ACTIONS(2436), - [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_L_DQUOTE] = ACTIONS(2440), - [anon_sym_u_DQUOTE] = ACTIONS(2440), - [anon_sym_U_DQUOTE] = ACTIONS(2440), - [anon_sym_u8_DQUOTE] = ACTIONS(2440), - [anon_sym_DQUOTE] = ACTIONS(2440), - [sym_true] = ACTIONS(2442), - [sym_false] = ACTIONS(2442), - [sym_null] = ACTIONS(2442), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2444), - [anon_sym_decltype] = ACTIONS(2446), - [anon_sym_typename] = ACTIONS(2448), - [anon_sym_template] = ACTIONS(996), - [anon_sym_GT2] = ACTIONS(2508), - [anon_sym_delete] = ACTIONS(2452), - [anon_sym_R_DQUOTE] = ACTIONS(2454), - [anon_sym_LR_DQUOTE] = ACTIONS(2454), - [anon_sym_uR_DQUOTE] = ACTIONS(2454), - [anon_sym_UR_DQUOTE] = ACTIONS(2454), - [anon_sym_u8R_DQUOTE] = ACTIONS(2454), - [anon_sym_co_await] = ACTIONS(2456), - [anon_sym_new] = ACTIONS(2458), - [anon_sym_requires] = ACTIONS(2460), - [sym_this] = ACTIONS(2442), - [sym_nullptr] = ACTIONS(2442), - }, - [387] = { - [sym_identifier] = ACTIONS(2462), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2464), - [anon_sym_AMP] = ACTIONS(2462), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_explicit] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_operator] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_namespace] = ACTIONS(2462), - [anon_sym_using] = ACTIONS(2462), - [anon_sym_static_assert] = ACTIONS(2462), - [anon_sym_concept] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), - }, - [388] = { - [sym_identifier] = ACTIONS(2510), - [aux_sym_preproc_include_token1] = ACTIONS(2510), - [aux_sym_preproc_def_token1] = ACTIONS(2510), - [aux_sym_preproc_if_token1] = ACTIONS(2510), - [aux_sym_preproc_if_token2] = ACTIONS(2510), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2510), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2510), - [aux_sym_preproc_else_token1] = ACTIONS(2510), - [aux_sym_preproc_elif_token1] = ACTIONS(2510), - [sym_preproc_directive] = ACTIONS(2510), - [anon_sym_LPAREN2] = ACTIONS(2512), - [anon_sym_BANG] = ACTIONS(2512), - [anon_sym_TILDE] = ACTIONS(2512), - [anon_sym_DASH] = ACTIONS(2510), - [anon_sym_PLUS] = ACTIONS(2510), - [anon_sym_STAR] = ACTIONS(2512), - [anon_sym_AMP_AMP] = ACTIONS(2512), - [anon_sym_AMP] = ACTIONS(2510), - [anon_sym_SEMI] = ACTIONS(2512), - [anon_sym_typedef] = ACTIONS(2510), - [anon_sym_extern] = ACTIONS(2510), - [anon_sym___attribute__] = ACTIONS(2510), - [anon_sym_COLON_COLON] = ACTIONS(2512), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2512), - [anon_sym___declspec] = ACTIONS(2510), - [anon_sym___based] = ACTIONS(2510), - [anon_sym___cdecl] = ACTIONS(2510), - [anon_sym___clrcall] = ACTIONS(2510), - [anon_sym___stdcall] = ACTIONS(2510), - [anon_sym___fastcall] = ACTIONS(2510), - [anon_sym___thiscall] = ACTIONS(2510), - [anon_sym___vectorcall] = ACTIONS(2510), - [anon_sym_LBRACE] = ACTIONS(2512), - [anon_sym_LBRACK] = ACTIONS(2510), - [anon_sym_static] = ACTIONS(2510), - [anon_sym_register] = ACTIONS(2510), - [anon_sym_inline] = ACTIONS(2510), - [anon_sym_thread_local] = ACTIONS(2510), - [anon_sym_const] = ACTIONS(2510), - [anon_sym_volatile] = ACTIONS(2510), - [anon_sym_restrict] = ACTIONS(2510), - [anon_sym__Atomic] = ACTIONS(2510), - [anon_sym_mutable] = ACTIONS(2510), - [anon_sym_constexpr] = ACTIONS(2510), - [anon_sym_constinit] = ACTIONS(2510), - [anon_sym_consteval] = ACTIONS(2510), - [anon_sym_signed] = ACTIONS(2510), - [anon_sym_unsigned] = ACTIONS(2510), - [anon_sym_long] = ACTIONS(2510), - [anon_sym_short] = ACTIONS(2510), - [sym_primitive_type] = ACTIONS(2510), - [anon_sym_enum] = ACTIONS(2510), - [anon_sym_class] = ACTIONS(2510), - [anon_sym_struct] = ACTIONS(2510), - [anon_sym_union] = ACTIONS(2510), - [anon_sym_if] = ACTIONS(2510), - [anon_sym_else] = ACTIONS(2510), - [anon_sym_switch] = ACTIONS(2510), - [anon_sym_case] = ACTIONS(2510), - [anon_sym_default] = ACTIONS(2510), - [anon_sym_while] = ACTIONS(2510), - [anon_sym_do] = ACTIONS(2510), - [anon_sym_for] = ACTIONS(2510), - [anon_sym_return] = ACTIONS(2510), - [anon_sym_break] = ACTIONS(2510), - [anon_sym_continue] = ACTIONS(2510), - [anon_sym_goto] = ACTIONS(2510), - [anon_sym_not] = ACTIONS(2510), - [anon_sym_compl] = ACTIONS(2510), - [anon_sym_DASH_DASH] = ACTIONS(2512), - [anon_sym_PLUS_PLUS] = ACTIONS(2512), - [anon_sym_sizeof] = ACTIONS(2510), - [sym_number_literal] = ACTIONS(2512), - [anon_sym_L_SQUOTE] = ACTIONS(2512), - [anon_sym_u_SQUOTE] = ACTIONS(2512), - [anon_sym_U_SQUOTE] = ACTIONS(2512), - [anon_sym_u8_SQUOTE] = ACTIONS(2512), - [anon_sym_SQUOTE] = ACTIONS(2512), - [anon_sym_L_DQUOTE] = ACTIONS(2512), - [anon_sym_u_DQUOTE] = ACTIONS(2512), - [anon_sym_U_DQUOTE] = ACTIONS(2512), - [anon_sym_u8_DQUOTE] = ACTIONS(2512), - [anon_sym_DQUOTE] = ACTIONS(2512), - [sym_true] = ACTIONS(2510), - [sym_false] = ACTIONS(2510), - [sym_null] = ACTIONS(2510), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2510), - [anon_sym_decltype] = ACTIONS(2510), - [anon_sym_virtual] = ACTIONS(2510), - [anon_sym_explicit] = ACTIONS(2510), - [anon_sym_typename] = ACTIONS(2510), - [anon_sym_template] = ACTIONS(2510), - [anon_sym_operator] = ACTIONS(2510), - [anon_sym_try] = ACTIONS(2510), - [anon_sym_delete] = ACTIONS(2510), - [anon_sym_throw] = ACTIONS(2510), - [anon_sym_namespace] = ACTIONS(2510), - [anon_sym_using] = ACTIONS(2510), - [anon_sym_static_assert] = ACTIONS(2510), - [anon_sym_concept] = ACTIONS(2510), - [anon_sym_co_return] = ACTIONS(2510), - [anon_sym_co_yield] = ACTIONS(2510), - [anon_sym_R_DQUOTE] = ACTIONS(2512), - [anon_sym_LR_DQUOTE] = ACTIONS(2512), - [anon_sym_uR_DQUOTE] = ACTIONS(2512), - [anon_sym_UR_DQUOTE] = ACTIONS(2512), - [anon_sym_u8R_DQUOTE] = ACTIONS(2512), - [anon_sym_co_await] = ACTIONS(2510), - [anon_sym_new] = ACTIONS(2510), - [anon_sym_requires] = ACTIONS(2510), - [sym_this] = ACTIONS(2510), - [sym_nullptr] = ACTIONS(2510), - }, - [389] = { - [sym_identifier] = ACTIONS(2514), - [aux_sym_preproc_include_token1] = ACTIONS(2514), - [aux_sym_preproc_def_token1] = ACTIONS(2514), - [aux_sym_preproc_if_token1] = ACTIONS(2514), - [aux_sym_preproc_if_token2] = ACTIONS(2514), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2514), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2514), - [aux_sym_preproc_else_token1] = ACTIONS(2514), - [aux_sym_preproc_elif_token1] = ACTIONS(2514), - [sym_preproc_directive] = ACTIONS(2514), - [anon_sym_LPAREN2] = ACTIONS(2516), - [anon_sym_BANG] = ACTIONS(2516), - [anon_sym_TILDE] = ACTIONS(2516), - [anon_sym_DASH] = ACTIONS(2514), - [anon_sym_PLUS] = ACTIONS(2514), - [anon_sym_STAR] = ACTIONS(2516), - [anon_sym_AMP_AMP] = ACTIONS(2516), - [anon_sym_AMP] = ACTIONS(2514), - [anon_sym_SEMI] = ACTIONS(2516), - [anon_sym_typedef] = ACTIONS(2514), - [anon_sym_extern] = ACTIONS(2514), - [anon_sym___attribute__] = ACTIONS(2514), - [anon_sym_COLON_COLON] = ACTIONS(2516), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2516), - [anon_sym___declspec] = ACTIONS(2514), - [anon_sym___based] = ACTIONS(2514), - [anon_sym___cdecl] = ACTIONS(2514), - [anon_sym___clrcall] = ACTIONS(2514), - [anon_sym___stdcall] = ACTIONS(2514), - [anon_sym___fastcall] = ACTIONS(2514), - [anon_sym___thiscall] = ACTIONS(2514), - [anon_sym___vectorcall] = ACTIONS(2514), - [anon_sym_LBRACE] = ACTIONS(2516), - [anon_sym_LBRACK] = ACTIONS(2514), - [anon_sym_static] = ACTIONS(2514), - [anon_sym_register] = ACTIONS(2514), - [anon_sym_inline] = ACTIONS(2514), - [anon_sym_thread_local] = ACTIONS(2514), - [anon_sym_const] = ACTIONS(2514), - [anon_sym_volatile] = ACTIONS(2514), - [anon_sym_restrict] = ACTIONS(2514), - [anon_sym__Atomic] = ACTIONS(2514), - [anon_sym_mutable] = ACTIONS(2514), - [anon_sym_constexpr] = ACTIONS(2514), - [anon_sym_constinit] = ACTIONS(2514), - [anon_sym_consteval] = ACTIONS(2514), - [anon_sym_signed] = ACTIONS(2514), - [anon_sym_unsigned] = ACTIONS(2514), - [anon_sym_long] = ACTIONS(2514), - [anon_sym_short] = ACTIONS(2514), - [sym_primitive_type] = ACTIONS(2514), - [anon_sym_enum] = ACTIONS(2514), - [anon_sym_class] = ACTIONS(2514), - [anon_sym_struct] = ACTIONS(2514), - [anon_sym_union] = ACTIONS(2514), - [anon_sym_if] = ACTIONS(2514), - [anon_sym_else] = ACTIONS(2514), - [anon_sym_switch] = ACTIONS(2514), - [anon_sym_case] = ACTIONS(2514), - [anon_sym_default] = ACTIONS(2514), - [anon_sym_while] = ACTIONS(2514), - [anon_sym_do] = ACTIONS(2514), - [anon_sym_for] = ACTIONS(2514), - [anon_sym_return] = ACTIONS(2514), - [anon_sym_break] = ACTIONS(2514), - [anon_sym_continue] = ACTIONS(2514), - [anon_sym_goto] = ACTIONS(2514), - [anon_sym_not] = ACTIONS(2514), - [anon_sym_compl] = ACTIONS(2514), - [anon_sym_DASH_DASH] = ACTIONS(2516), - [anon_sym_PLUS_PLUS] = ACTIONS(2516), - [anon_sym_sizeof] = ACTIONS(2514), - [sym_number_literal] = ACTIONS(2516), - [anon_sym_L_SQUOTE] = ACTIONS(2516), - [anon_sym_u_SQUOTE] = ACTIONS(2516), - [anon_sym_U_SQUOTE] = ACTIONS(2516), - [anon_sym_u8_SQUOTE] = ACTIONS(2516), - [anon_sym_SQUOTE] = ACTIONS(2516), - [anon_sym_L_DQUOTE] = ACTIONS(2516), - [anon_sym_u_DQUOTE] = ACTIONS(2516), - [anon_sym_U_DQUOTE] = ACTIONS(2516), - [anon_sym_u8_DQUOTE] = ACTIONS(2516), - [anon_sym_DQUOTE] = ACTIONS(2516), - [sym_true] = ACTIONS(2514), - [sym_false] = ACTIONS(2514), - [sym_null] = ACTIONS(2514), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2514), - [anon_sym_decltype] = ACTIONS(2514), - [anon_sym_virtual] = ACTIONS(2514), - [anon_sym_explicit] = ACTIONS(2514), - [anon_sym_typename] = ACTIONS(2514), - [anon_sym_template] = ACTIONS(2514), - [anon_sym_operator] = ACTIONS(2514), - [anon_sym_try] = ACTIONS(2514), - [anon_sym_delete] = ACTIONS(2514), - [anon_sym_throw] = ACTIONS(2514), - [anon_sym_namespace] = ACTIONS(2514), - [anon_sym_using] = ACTIONS(2514), - [anon_sym_static_assert] = ACTIONS(2514), - [anon_sym_concept] = ACTIONS(2514), - [anon_sym_co_return] = ACTIONS(2514), - [anon_sym_co_yield] = ACTIONS(2514), - [anon_sym_R_DQUOTE] = ACTIONS(2516), - [anon_sym_LR_DQUOTE] = ACTIONS(2516), - [anon_sym_uR_DQUOTE] = ACTIONS(2516), - [anon_sym_UR_DQUOTE] = ACTIONS(2516), - [anon_sym_u8R_DQUOTE] = ACTIONS(2516), - [anon_sym_co_await] = ACTIONS(2514), - [anon_sym_new] = ACTIONS(2514), - [anon_sym_requires] = ACTIONS(2514), - [sym_this] = ACTIONS(2514), - [sym_nullptr] = ACTIONS(2514), - }, - [390] = { - [sym_identifier] = ACTIONS(2462), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2464), - [anon_sym_AMP] = ACTIONS(2462), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_explicit] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_operator] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_namespace] = ACTIONS(2462), - [anon_sym_using] = ACTIONS(2462), - [anon_sym_static_assert] = ACTIONS(2462), - [anon_sym_concept] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), - }, - [391] = { - [sym_identifier] = ACTIONS(2518), - [aux_sym_preproc_include_token1] = ACTIONS(2518), - [aux_sym_preproc_def_token1] = ACTIONS(2518), - [aux_sym_preproc_if_token1] = ACTIONS(2518), - [aux_sym_preproc_if_token2] = ACTIONS(2518), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2518), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2518), - [aux_sym_preproc_else_token1] = ACTIONS(2518), - [aux_sym_preproc_elif_token1] = ACTIONS(2518), - [sym_preproc_directive] = ACTIONS(2518), - [anon_sym_LPAREN2] = ACTIONS(2520), - [anon_sym_BANG] = ACTIONS(2520), - [anon_sym_TILDE] = ACTIONS(2520), - [anon_sym_DASH] = ACTIONS(2518), - [anon_sym_PLUS] = ACTIONS(2518), - [anon_sym_STAR] = ACTIONS(2520), - [anon_sym_AMP_AMP] = ACTIONS(2520), - [anon_sym_AMP] = ACTIONS(2518), - [anon_sym_SEMI] = ACTIONS(2520), - [anon_sym_typedef] = ACTIONS(2518), - [anon_sym_extern] = ACTIONS(2518), - [anon_sym___attribute__] = ACTIONS(2518), - [anon_sym_COLON_COLON] = ACTIONS(2520), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2520), - [anon_sym___declspec] = ACTIONS(2518), - [anon_sym___based] = ACTIONS(2518), - [anon_sym___cdecl] = ACTIONS(2518), - [anon_sym___clrcall] = ACTIONS(2518), - [anon_sym___stdcall] = ACTIONS(2518), - [anon_sym___fastcall] = ACTIONS(2518), - [anon_sym___thiscall] = ACTIONS(2518), - [anon_sym___vectorcall] = ACTIONS(2518), - [anon_sym_LBRACE] = ACTIONS(2520), - [anon_sym_LBRACK] = ACTIONS(2518), - [anon_sym_static] = ACTIONS(2518), - [anon_sym_register] = ACTIONS(2518), - [anon_sym_inline] = ACTIONS(2518), - [anon_sym_thread_local] = ACTIONS(2518), - [anon_sym_const] = ACTIONS(2518), - [anon_sym_volatile] = ACTIONS(2518), - [anon_sym_restrict] = ACTIONS(2518), - [anon_sym__Atomic] = ACTIONS(2518), - [anon_sym_mutable] = ACTIONS(2518), - [anon_sym_constexpr] = ACTIONS(2518), - [anon_sym_constinit] = ACTIONS(2518), - [anon_sym_consteval] = ACTIONS(2518), - [anon_sym_signed] = ACTIONS(2518), - [anon_sym_unsigned] = ACTIONS(2518), - [anon_sym_long] = ACTIONS(2518), - [anon_sym_short] = ACTIONS(2518), - [sym_primitive_type] = ACTIONS(2518), - [anon_sym_enum] = ACTIONS(2518), - [anon_sym_class] = ACTIONS(2518), - [anon_sym_struct] = ACTIONS(2518), - [anon_sym_union] = ACTIONS(2518), - [anon_sym_if] = ACTIONS(2518), - [anon_sym_else] = ACTIONS(2518), - [anon_sym_switch] = ACTIONS(2518), - [anon_sym_case] = ACTIONS(2518), - [anon_sym_default] = ACTIONS(2518), - [anon_sym_while] = ACTIONS(2518), - [anon_sym_do] = ACTIONS(2518), - [anon_sym_for] = ACTIONS(2518), - [anon_sym_return] = ACTIONS(2518), - [anon_sym_break] = ACTIONS(2518), - [anon_sym_continue] = ACTIONS(2518), - [anon_sym_goto] = ACTIONS(2518), - [anon_sym_not] = ACTIONS(2518), - [anon_sym_compl] = ACTIONS(2518), - [anon_sym_DASH_DASH] = ACTIONS(2520), - [anon_sym_PLUS_PLUS] = ACTIONS(2520), - [anon_sym_sizeof] = ACTIONS(2518), - [sym_number_literal] = ACTIONS(2520), - [anon_sym_L_SQUOTE] = ACTIONS(2520), - [anon_sym_u_SQUOTE] = ACTIONS(2520), - [anon_sym_U_SQUOTE] = ACTIONS(2520), - [anon_sym_u8_SQUOTE] = ACTIONS(2520), - [anon_sym_SQUOTE] = ACTIONS(2520), - [anon_sym_L_DQUOTE] = ACTIONS(2520), - [anon_sym_u_DQUOTE] = ACTIONS(2520), - [anon_sym_U_DQUOTE] = ACTIONS(2520), - [anon_sym_u8_DQUOTE] = ACTIONS(2520), - [anon_sym_DQUOTE] = ACTIONS(2520), - [sym_true] = ACTIONS(2518), - [sym_false] = ACTIONS(2518), - [sym_null] = ACTIONS(2518), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2518), - [anon_sym_decltype] = ACTIONS(2518), - [anon_sym_virtual] = ACTIONS(2518), - [anon_sym_explicit] = ACTIONS(2518), - [anon_sym_typename] = ACTIONS(2518), - [anon_sym_template] = ACTIONS(2518), - [anon_sym_operator] = ACTIONS(2518), - [anon_sym_try] = ACTIONS(2518), - [anon_sym_delete] = ACTIONS(2518), - [anon_sym_throw] = ACTIONS(2518), - [anon_sym_namespace] = ACTIONS(2518), - [anon_sym_using] = ACTIONS(2518), - [anon_sym_static_assert] = ACTIONS(2518), - [anon_sym_concept] = ACTIONS(2518), - [anon_sym_co_return] = ACTIONS(2518), - [anon_sym_co_yield] = ACTIONS(2518), - [anon_sym_R_DQUOTE] = ACTIONS(2520), - [anon_sym_LR_DQUOTE] = ACTIONS(2520), - [anon_sym_uR_DQUOTE] = ACTIONS(2520), - [anon_sym_UR_DQUOTE] = ACTIONS(2520), - [anon_sym_u8R_DQUOTE] = ACTIONS(2520), - [anon_sym_co_await] = ACTIONS(2518), - [anon_sym_new] = ACTIONS(2518), - [anon_sym_requires] = ACTIONS(2518), - [sym_this] = ACTIONS(2518), - [sym_nullptr] = ACTIONS(2518), - }, - [392] = { - [sym_identifier] = ACTIONS(2522), - [aux_sym_preproc_include_token1] = ACTIONS(2522), - [aux_sym_preproc_def_token1] = ACTIONS(2522), - [aux_sym_preproc_if_token1] = ACTIONS(2522), - [aux_sym_preproc_if_token2] = ACTIONS(2522), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2522), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2522), - [aux_sym_preproc_else_token1] = ACTIONS(2522), - [aux_sym_preproc_elif_token1] = ACTIONS(2522), - [sym_preproc_directive] = ACTIONS(2522), - [anon_sym_LPAREN2] = ACTIONS(2524), - [anon_sym_BANG] = ACTIONS(2524), - [anon_sym_TILDE] = ACTIONS(2524), - [anon_sym_DASH] = ACTIONS(2522), - [anon_sym_PLUS] = ACTIONS(2522), - [anon_sym_STAR] = ACTIONS(2524), - [anon_sym_AMP_AMP] = ACTIONS(2524), - [anon_sym_AMP] = ACTIONS(2522), - [anon_sym_SEMI] = ACTIONS(2524), - [anon_sym_typedef] = ACTIONS(2522), - [anon_sym_extern] = ACTIONS(2522), - [anon_sym___attribute__] = ACTIONS(2522), - [anon_sym_COLON_COLON] = ACTIONS(2524), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2524), - [anon_sym___declspec] = ACTIONS(2522), - [anon_sym___based] = ACTIONS(2522), - [anon_sym___cdecl] = ACTIONS(2522), - [anon_sym___clrcall] = ACTIONS(2522), - [anon_sym___stdcall] = ACTIONS(2522), - [anon_sym___fastcall] = ACTIONS(2522), - [anon_sym___thiscall] = ACTIONS(2522), - [anon_sym___vectorcall] = ACTIONS(2522), - [anon_sym_LBRACE] = ACTIONS(2524), - [anon_sym_LBRACK] = ACTIONS(2522), - [anon_sym_static] = ACTIONS(2522), - [anon_sym_register] = ACTIONS(2522), - [anon_sym_inline] = ACTIONS(2522), - [anon_sym_thread_local] = ACTIONS(2522), - [anon_sym_const] = ACTIONS(2522), - [anon_sym_volatile] = ACTIONS(2522), - [anon_sym_restrict] = ACTIONS(2522), - [anon_sym__Atomic] = ACTIONS(2522), - [anon_sym_mutable] = ACTIONS(2522), - [anon_sym_constexpr] = ACTIONS(2522), - [anon_sym_constinit] = ACTIONS(2522), - [anon_sym_consteval] = ACTIONS(2522), - [anon_sym_signed] = ACTIONS(2522), - [anon_sym_unsigned] = ACTIONS(2522), - [anon_sym_long] = ACTIONS(2522), - [anon_sym_short] = ACTIONS(2522), - [sym_primitive_type] = ACTIONS(2522), - [anon_sym_enum] = ACTIONS(2522), - [anon_sym_class] = ACTIONS(2522), - [anon_sym_struct] = ACTIONS(2522), - [anon_sym_union] = ACTIONS(2522), - [anon_sym_if] = ACTIONS(2522), - [anon_sym_else] = ACTIONS(2522), - [anon_sym_switch] = ACTIONS(2522), - [anon_sym_case] = ACTIONS(2522), - [anon_sym_default] = ACTIONS(2522), - [anon_sym_while] = ACTIONS(2522), - [anon_sym_do] = ACTIONS(2522), - [anon_sym_for] = ACTIONS(2522), - [anon_sym_return] = ACTIONS(2522), - [anon_sym_break] = ACTIONS(2522), - [anon_sym_continue] = ACTIONS(2522), - [anon_sym_goto] = ACTIONS(2522), - [anon_sym_not] = ACTIONS(2522), - [anon_sym_compl] = ACTIONS(2522), - [anon_sym_DASH_DASH] = ACTIONS(2524), - [anon_sym_PLUS_PLUS] = ACTIONS(2524), - [anon_sym_sizeof] = ACTIONS(2522), - [sym_number_literal] = ACTIONS(2524), - [anon_sym_L_SQUOTE] = ACTIONS(2524), - [anon_sym_u_SQUOTE] = ACTIONS(2524), - [anon_sym_U_SQUOTE] = ACTIONS(2524), - [anon_sym_u8_SQUOTE] = ACTIONS(2524), - [anon_sym_SQUOTE] = ACTIONS(2524), - [anon_sym_L_DQUOTE] = ACTIONS(2524), - [anon_sym_u_DQUOTE] = ACTIONS(2524), - [anon_sym_U_DQUOTE] = ACTIONS(2524), - [anon_sym_u8_DQUOTE] = ACTIONS(2524), - [anon_sym_DQUOTE] = ACTIONS(2524), - [sym_true] = ACTIONS(2522), - [sym_false] = ACTIONS(2522), - [sym_null] = ACTIONS(2522), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2522), - [anon_sym_decltype] = ACTIONS(2522), - [anon_sym_virtual] = ACTIONS(2522), - [anon_sym_explicit] = ACTIONS(2522), - [anon_sym_typename] = ACTIONS(2522), - [anon_sym_template] = ACTIONS(2522), - [anon_sym_operator] = ACTIONS(2522), - [anon_sym_try] = ACTIONS(2522), - [anon_sym_delete] = ACTIONS(2522), - [anon_sym_throw] = ACTIONS(2522), - [anon_sym_namespace] = ACTIONS(2522), - [anon_sym_using] = ACTIONS(2522), - [anon_sym_static_assert] = ACTIONS(2522), - [anon_sym_concept] = ACTIONS(2522), - [anon_sym_co_return] = ACTIONS(2522), - [anon_sym_co_yield] = ACTIONS(2522), - [anon_sym_R_DQUOTE] = ACTIONS(2524), - [anon_sym_LR_DQUOTE] = ACTIONS(2524), - [anon_sym_uR_DQUOTE] = ACTIONS(2524), - [anon_sym_UR_DQUOTE] = ACTIONS(2524), - [anon_sym_u8R_DQUOTE] = ACTIONS(2524), - [anon_sym_co_await] = ACTIONS(2522), - [anon_sym_new] = ACTIONS(2522), - [anon_sym_requires] = ACTIONS(2522), - [sym_this] = ACTIONS(2522), - [sym_nullptr] = ACTIONS(2522), - }, - [393] = { - [sym_identifier] = ACTIONS(2526), - [aux_sym_preproc_include_token1] = ACTIONS(2526), - [aux_sym_preproc_def_token1] = ACTIONS(2526), - [aux_sym_preproc_if_token1] = ACTIONS(2526), - [aux_sym_preproc_if_token2] = ACTIONS(2526), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2526), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2526), - [aux_sym_preproc_else_token1] = ACTIONS(2526), - [aux_sym_preproc_elif_token1] = ACTIONS(2526), - [sym_preproc_directive] = ACTIONS(2526), - [anon_sym_LPAREN2] = ACTIONS(2528), - [anon_sym_BANG] = ACTIONS(2528), - [anon_sym_TILDE] = ACTIONS(2528), - [anon_sym_DASH] = ACTIONS(2526), - [anon_sym_PLUS] = ACTIONS(2526), - [anon_sym_STAR] = ACTIONS(2528), - [anon_sym_AMP_AMP] = ACTIONS(2528), - [anon_sym_AMP] = ACTIONS(2526), - [anon_sym_SEMI] = ACTIONS(2528), - [anon_sym_typedef] = ACTIONS(2526), - [anon_sym_extern] = ACTIONS(2526), - [anon_sym___attribute__] = ACTIONS(2526), - [anon_sym_COLON_COLON] = ACTIONS(2528), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2528), - [anon_sym___declspec] = ACTIONS(2526), - [anon_sym___based] = ACTIONS(2526), - [anon_sym___cdecl] = ACTIONS(2526), - [anon_sym___clrcall] = ACTIONS(2526), - [anon_sym___stdcall] = ACTIONS(2526), - [anon_sym___fastcall] = ACTIONS(2526), - [anon_sym___thiscall] = ACTIONS(2526), - [anon_sym___vectorcall] = ACTIONS(2526), - [anon_sym_LBRACE] = ACTIONS(2528), - [anon_sym_LBRACK] = ACTIONS(2526), - [anon_sym_static] = ACTIONS(2526), - [anon_sym_register] = ACTIONS(2526), - [anon_sym_inline] = ACTIONS(2526), - [anon_sym_thread_local] = ACTIONS(2526), - [anon_sym_const] = ACTIONS(2526), - [anon_sym_volatile] = ACTIONS(2526), - [anon_sym_restrict] = ACTIONS(2526), - [anon_sym__Atomic] = ACTIONS(2526), - [anon_sym_mutable] = ACTIONS(2526), - [anon_sym_constexpr] = ACTIONS(2526), - [anon_sym_constinit] = ACTIONS(2526), - [anon_sym_consteval] = ACTIONS(2526), - [anon_sym_signed] = ACTIONS(2526), - [anon_sym_unsigned] = ACTIONS(2526), - [anon_sym_long] = ACTIONS(2526), - [anon_sym_short] = ACTIONS(2526), - [sym_primitive_type] = ACTIONS(2526), - [anon_sym_enum] = ACTIONS(2526), - [anon_sym_class] = ACTIONS(2526), - [anon_sym_struct] = ACTIONS(2526), - [anon_sym_union] = ACTIONS(2526), - [anon_sym_if] = ACTIONS(2526), - [anon_sym_else] = ACTIONS(2526), - [anon_sym_switch] = ACTIONS(2526), - [anon_sym_case] = ACTIONS(2526), - [anon_sym_default] = ACTIONS(2526), - [anon_sym_while] = ACTIONS(2526), - [anon_sym_do] = ACTIONS(2526), - [anon_sym_for] = ACTIONS(2526), - [anon_sym_return] = ACTIONS(2526), - [anon_sym_break] = ACTIONS(2526), - [anon_sym_continue] = ACTIONS(2526), - [anon_sym_goto] = ACTIONS(2526), - [anon_sym_not] = ACTIONS(2526), - [anon_sym_compl] = ACTIONS(2526), - [anon_sym_DASH_DASH] = ACTIONS(2528), - [anon_sym_PLUS_PLUS] = ACTIONS(2528), - [anon_sym_sizeof] = ACTIONS(2526), - [sym_number_literal] = ACTIONS(2528), - [anon_sym_L_SQUOTE] = ACTIONS(2528), - [anon_sym_u_SQUOTE] = ACTIONS(2528), - [anon_sym_U_SQUOTE] = ACTIONS(2528), - [anon_sym_u8_SQUOTE] = ACTIONS(2528), - [anon_sym_SQUOTE] = ACTIONS(2528), - [anon_sym_L_DQUOTE] = ACTIONS(2528), - [anon_sym_u_DQUOTE] = ACTIONS(2528), - [anon_sym_U_DQUOTE] = ACTIONS(2528), - [anon_sym_u8_DQUOTE] = ACTIONS(2528), - [anon_sym_DQUOTE] = ACTIONS(2528), - [sym_true] = ACTIONS(2526), - [sym_false] = ACTIONS(2526), - [sym_null] = ACTIONS(2526), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2526), - [anon_sym_decltype] = ACTIONS(2526), - [anon_sym_virtual] = ACTIONS(2526), - [anon_sym_explicit] = ACTIONS(2526), - [anon_sym_typename] = ACTIONS(2526), - [anon_sym_template] = ACTIONS(2526), - [anon_sym_operator] = ACTIONS(2526), - [anon_sym_try] = ACTIONS(2526), - [anon_sym_delete] = ACTIONS(2526), - [anon_sym_throw] = ACTIONS(2526), - [anon_sym_namespace] = ACTIONS(2526), - [anon_sym_using] = ACTIONS(2526), - [anon_sym_static_assert] = ACTIONS(2526), - [anon_sym_concept] = ACTIONS(2526), - [anon_sym_co_return] = ACTIONS(2526), - [anon_sym_co_yield] = ACTIONS(2526), - [anon_sym_R_DQUOTE] = ACTIONS(2528), - [anon_sym_LR_DQUOTE] = ACTIONS(2528), - [anon_sym_uR_DQUOTE] = ACTIONS(2528), - [anon_sym_UR_DQUOTE] = ACTIONS(2528), - [anon_sym_u8R_DQUOTE] = ACTIONS(2528), - [anon_sym_co_await] = ACTIONS(2526), - [anon_sym_new] = ACTIONS(2526), - [anon_sym_requires] = ACTIONS(2526), - [sym_this] = ACTIONS(2526), - [sym_nullptr] = ACTIONS(2526), - }, - [394] = { - [sym_type_qualifier] = STATE(3306), - [sym__type_specifier] = STATE(3903), - [sym_sized_type_specifier] = STATE(3003), - [sym_enum_specifier] = STATE(3003), - [sym_struct_specifier] = STATE(3003), - [sym_union_specifier] = STATE(3003), - [sym__expression] = STATE(3442), - [sym_conditional_expression] = STATE(3855), - [sym_assignment_expression] = STATE(3855), - [sym_pointer_expression] = STATE(2954), - [sym_unary_expression] = STATE(3855), - [sym_binary_expression] = STATE(3855), - [sym_update_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_type_descriptor] = STATE(5228), - [sym_sizeof_expression] = STATE(3855), - [sym_subscript_expression] = STATE(2954), - [sym_call_expression] = STATE(2954), - [sym_field_expression] = STATE(2954), - [sym_compound_literal_expression] = STATE(3855), - [sym_parenthesized_expression] = STATE(2954), - [sym_char_literal] = STATE(3557), - [sym_concatenated_string] = STATE(3557), - [sym_string_literal] = STATE(2955), - [sym_placeholder_type_specifier] = STATE(3003), - [sym_decltype_auto] = STATE(3008), - [sym_decltype] = STATE(2851), - [sym_class_specifier] = STATE(3003), - [sym__class_name] = STATE(5844), - [sym_dependent_type] = STATE(3003), - [sym_template_type] = STATE(4288), - [sym_template_function] = STATE(3855), - [sym_raw_string_literal] = STATE(2955), - [sym_co_await_expression] = STATE(3855), - [sym_new_expression] = STATE(3855), - [sym_delete_expression] = STATE(3855), - [sym_requires_clause] = STATE(3855), - [sym_requires_expression] = STATE(3855), - [sym_lambda_expression] = STATE(3855), - [sym_lambda_capture_specifier] = STATE(4501), - [sym_fold_expression] = STATE(3855), - [sym_parameter_pack_expansion] = STATE(3855), - [sym_type_parameter_pack_expansion] = STATE(5575), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4544), - [sym_qualified_identifier] = STATE(2954), - [sym_qualified_type_identifier] = STATE(4356), - [sym_user_defined_literal] = STATE(3855), - [aux_sym_type_definition_repeat1] = STATE(3306), - [aux_sym_sized_type_specifier_repeat1] = STATE(2022), - [sym_identifier] = ACTIONS(2408), - [anon_sym_LPAREN2] = ACTIONS(2410), - [anon_sym_BANG] = ACTIONS(2412), - [anon_sym_TILDE] = ACTIONS(2412), - [anon_sym_DASH] = ACTIONS(2414), - [anon_sym_PLUS] = ACTIONS(2414), - [anon_sym_STAR] = ACTIONS(2416), - [anon_sym_AMP] = ACTIONS(2416), - [anon_sym_COLON_COLON] = ACTIONS(2418), - [anon_sym_LBRACK] = ACTIONS(1539), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(2420), - [anon_sym_unsigned] = ACTIONS(2420), - [anon_sym_long] = ACTIONS(2420), - [anon_sym_short] = ACTIONS(2420), - [sym_primitive_type] = ACTIONS(2422), - [anon_sym_enum] = ACTIONS(2424), - [anon_sym_class] = ACTIONS(2426), - [anon_sym_struct] = ACTIONS(2428), - [anon_sym_union] = ACTIONS(2430), - [anon_sym_not] = ACTIONS(2414), - [anon_sym_compl] = ACTIONS(2414), - [anon_sym_DASH_DASH] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(2432), - [anon_sym_sizeof] = ACTIONS(2434), - [sym_number_literal] = ACTIONS(2436), - [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_L_DQUOTE] = ACTIONS(2440), - [anon_sym_u_DQUOTE] = ACTIONS(2440), - [anon_sym_U_DQUOTE] = ACTIONS(2440), - [anon_sym_u8_DQUOTE] = ACTIONS(2440), - [anon_sym_DQUOTE] = ACTIONS(2440), - [sym_true] = ACTIONS(2442), - [sym_false] = ACTIONS(2442), - [sym_null] = ACTIONS(2442), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2444), - [anon_sym_decltype] = ACTIONS(2446), - [anon_sym_typename] = ACTIONS(2448), - [anon_sym_template] = ACTIONS(996), - [anon_sym_GT2] = ACTIONS(2530), - [anon_sym_delete] = ACTIONS(2452), - [anon_sym_R_DQUOTE] = ACTIONS(2454), - [anon_sym_LR_DQUOTE] = ACTIONS(2454), - [anon_sym_uR_DQUOTE] = ACTIONS(2454), - [anon_sym_UR_DQUOTE] = ACTIONS(2454), - [anon_sym_u8R_DQUOTE] = ACTIONS(2454), - [anon_sym_co_await] = ACTIONS(2456), - [anon_sym_new] = ACTIONS(2458), - [anon_sym_requires] = ACTIONS(2460), - [sym_this] = ACTIONS(2442), - [sym_nullptr] = ACTIONS(2442), - }, - [395] = { - [sym_identifier] = ACTIONS(2532), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2534), - [anon_sym_AMP] = ACTIONS(2532), - [anon_sym_SEMI] = ACTIONS(2534), - [anon_sym_typedef] = ACTIONS(2532), - [anon_sym_extern] = ACTIONS(2532), - [anon_sym___attribute__] = ACTIONS(2532), - [anon_sym_COLON_COLON] = ACTIONS(2534), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2534), - [anon_sym___declspec] = ACTIONS(2532), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2532), - [anon_sym_static] = ACTIONS(2532), - [anon_sym_register] = ACTIONS(2532), - [anon_sym_inline] = ACTIONS(2532), - [anon_sym_thread_local] = ACTIONS(2532), - [anon_sym_const] = ACTIONS(2532), - [anon_sym_volatile] = ACTIONS(2532), - [anon_sym_restrict] = ACTIONS(2532), - [anon_sym__Atomic] = ACTIONS(2532), - [anon_sym_mutable] = ACTIONS(2532), - [anon_sym_constexpr] = ACTIONS(2532), - [anon_sym_constinit] = ACTIONS(2532), - [anon_sym_consteval] = ACTIONS(2532), - [anon_sym_signed] = ACTIONS(2532), - [anon_sym_unsigned] = ACTIONS(2532), - [anon_sym_long] = ACTIONS(2532), - [anon_sym_short] = ACTIONS(2532), - [sym_primitive_type] = ACTIONS(2532), - [anon_sym_enum] = ACTIONS(2532), - [anon_sym_class] = 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_return] = ACTIONS(2532), - [anon_sym_break] = ACTIONS(2532), - [anon_sym_continue] = ACTIONS(2532), - [anon_sym_goto] = ACTIONS(2532), - [anon_sym_not] = ACTIONS(2532), - [anon_sym_compl] = ACTIONS(2532), - [anon_sym_DASH_DASH] = ACTIONS(2534), - [anon_sym_PLUS_PLUS] = ACTIONS(2534), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2534), - [anon_sym_u_DQUOTE] = ACTIONS(2534), - [anon_sym_U_DQUOTE] = ACTIONS(2534), - [anon_sym_u8_DQUOTE] = ACTIONS(2534), - [anon_sym_DQUOTE] = ACTIONS(2534), - [sym_true] = ACTIONS(2532), - [sym_false] = ACTIONS(2532), - [sym_null] = ACTIONS(2532), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2532), - [anon_sym_decltype] = ACTIONS(2532), - [anon_sym_virtual] = ACTIONS(2532), - [anon_sym_explicit] = ACTIONS(2532), - [anon_sym_typename] = ACTIONS(2532), - [anon_sym_template] = ACTIONS(2532), - [anon_sym_operator] = ACTIONS(2532), - [anon_sym_try] = ACTIONS(2532), - [anon_sym_delete] = ACTIONS(2532), - [anon_sym_throw] = ACTIONS(2532), - [anon_sym_namespace] = ACTIONS(2532), - [anon_sym_using] = ACTIONS(2532), - [anon_sym_static_assert] = ACTIONS(2532), - [anon_sym_concept] = ACTIONS(2532), - [anon_sym_co_return] = ACTIONS(2532), - [anon_sym_co_yield] = ACTIONS(2532), - [anon_sym_R_DQUOTE] = ACTIONS(2534), - [anon_sym_LR_DQUOTE] = ACTIONS(2534), - [anon_sym_uR_DQUOTE] = ACTIONS(2534), - [anon_sym_UR_DQUOTE] = ACTIONS(2534), - [anon_sym_u8R_DQUOTE] = ACTIONS(2534), - [anon_sym_co_await] = ACTIONS(2532), - [anon_sym_new] = ACTIONS(2532), - [anon_sym_requires] = ACTIONS(2532), - [sym_this] = ACTIONS(2532), - [sym_nullptr] = ACTIONS(2532), - }, - [396] = { [sym_identifier] = ACTIONS(2536), [aux_sym_preproc_include_token1] = ACTIONS(2536), [aux_sym_preproc_def_token1] = ACTIONS(2536), @@ -81912,21 +104556,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_LPAREN2] = ACTIONS(2534), + [anon_sym_BANG] = ACTIONS(2534), + [anon_sym_TILDE] = ACTIONS(2534), [anon_sym_DASH] = ACTIONS(2536), [anon_sym_PLUS] = ACTIONS(2536), - [anon_sym_STAR] = ACTIONS(2538), - [anon_sym_AMP_AMP] = ACTIONS(2538), + [anon_sym_STAR] = ACTIONS(2534), + [anon_sym_AMP_AMP] = ACTIONS(2534), [anon_sym_AMP] = ACTIONS(2536), - [anon_sym_SEMI] = ACTIONS(2538), + [anon_sym_SEMI] = ACTIONS(2534), [anon_sym_typedef] = ACTIONS(2536), [anon_sym_extern] = ACTIONS(2536), [anon_sym___attribute__] = ACTIONS(2536), - [anon_sym_COLON_COLON] = ACTIONS(2538), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2538), + [anon_sym_COLON_COLON] = ACTIONS(2534), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2534), [anon_sym___declspec] = ACTIONS(2536), [anon_sym___based] = ACTIONS(2536), [anon_sym___cdecl] = ACTIONS(2536), @@ -81935,18 +104581,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(2536), [anon_sym___thiscall] = ACTIONS(2536), [anon_sym___vectorcall] = ACTIONS(2536), - [anon_sym_LBRACE] = ACTIONS(2538), + [anon_sym_LBRACE] = ACTIONS(2534), [anon_sym_LBRACK] = ACTIONS(2536), [anon_sym_static] = ACTIONS(2536), [anon_sym_register] = ACTIONS(2536), [anon_sym_inline] = ACTIONS(2536), [anon_sym_thread_local] = 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_noreturn] = ACTIONS(2536), [anon_sym_mutable] = ACTIONS(2536), - [anon_sym_constexpr] = ACTIONS(2536), [anon_sym_constinit] = ACTIONS(2536), [anon_sym_consteval] = ACTIONS(2536), [anon_sym_signed] = ACTIONS(2536), @@ -81972,23 +104621,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_goto] = ACTIONS(2536), [anon_sym_not] = ACTIONS(2536), [anon_sym_compl] = ACTIONS(2536), - [anon_sym_DASH_DASH] = ACTIONS(2538), - [anon_sym_PLUS_PLUS] = ACTIONS(2538), + [anon_sym_DASH_DASH] = ACTIONS(2534), + [anon_sym_PLUS_PLUS] = ACTIONS(2534), [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2538), - [anon_sym_u_DQUOTE] = ACTIONS(2538), - [anon_sym_U_DQUOTE] = ACTIONS(2538), - [anon_sym_u8_DQUOTE] = ACTIONS(2538), - [anon_sym_DQUOTE] = ACTIONS(2538), + [anon_sym_offsetof] = ACTIONS(2536), + [anon_sym__Generic] = ACTIONS(2536), + [anon_sym_asm] = ACTIONS(2536), + [anon_sym___asm__] = ACTIONS(2536), + [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_L_DQUOTE] = ACTIONS(2534), + [anon_sym_u_DQUOTE] = ACTIONS(2534), + [anon_sym_U_DQUOTE] = ACTIONS(2534), + [anon_sym_u8_DQUOTE] = ACTIONS(2534), + [anon_sym_DQUOTE] = ACTIONS(2534), [sym_true] = ACTIONS(2536), [sym_false] = ACTIONS(2536), - [sym_null] = ACTIONS(2536), + [anon_sym_NULL] = ACTIONS(2536), + [anon_sym_nullptr] = ACTIONS(2536), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(2536), [anon_sym_decltype] = ACTIONS(2536), @@ -82006,17776 +104660,16750 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_concept] = ACTIONS(2536), [anon_sym_co_return] = ACTIONS(2536), [anon_sym_co_yield] = ACTIONS(2536), - [anon_sym_R_DQUOTE] = ACTIONS(2538), - [anon_sym_LR_DQUOTE] = ACTIONS(2538), - [anon_sym_uR_DQUOTE] = ACTIONS(2538), - [anon_sym_UR_DQUOTE] = ACTIONS(2538), - [anon_sym_u8R_DQUOTE] = ACTIONS(2538), + [anon_sym_catch] = ACTIONS(2536), + [anon_sym_R_DQUOTE] = ACTIONS(2534), + [anon_sym_LR_DQUOTE] = ACTIONS(2534), + [anon_sym_uR_DQUOTE] = ACTIONS(2534), + [anon_sym_UR_DQUOTE] = ACTIONS(2534), + [anon_sym_u8R_DQUOTE] = ACTIONS(2534), [anon_sym_co_await] = ACTIONS(2536), [anon_sym_new] = ACTIONS(2536), [anon_sym_requires] = ACTIONS(2536), [sym_this] = ACTIONS(2536), - [sym_nullptr] = ACTIONS(2536), - }, - [397] = { - [sym_identifier] = ACTIONS(2540), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2542), - [anon_sym_AMP] = ACTIONS(2540), - [anon_sym_SEMI] = ACTIONS(2542), - [anon_sym_typedef] = ACTIONS(2540), - [anon_sym_extern] = ACTIONS(2540), - [anon_sym___attribute__] = ACTIONS(2540), - [anon_sym_COLON_COLON] = ACTIONS(2542), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2542), - [anon_sym___declspec] = ACTIONS(2540), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2540), - [anon_sym_static] = ACTIONS(2540), - [anon_sym_register] = ACTIONS(2540), - [anon_sym_inline] = ACTIONS(2540), - [anon_sym_thread_local] = ACTIONS(2540), - [anon_sym_const] = ACTIONS(2540), - [anon_sym_volatile] = ACTIONS(2540), - [anon_sym_restrict] = ACTIONS(2540), - [anon_sym__Atomic] = ACTIONS(2540), - [anon_sym_mutable] = ACTIONS(2540), - [anon_sym_constexpr] = ACTIONS(2540), - [anon_sym_constinit] = ACTIONS(2540), - [anon_sym_consteval] = ACTIONS(2540), - [anon_sym_signed] = ACTIONS(2540), - [anon_sym_unsigned] = ACTIONS(2540), - [anon_sym_long] = ACTIONS(2540), - [anon_sym_short] = ACTIONS(2540), - [sym_primitive_type] = ACTIONS(2540), - [anon_sym_enum] = ACTIONS(2540), - [anon_sym_class] = 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_return] = ACTIONS(2540), - [anon_sym_break] = ACTIONS(2540), - [anon_sym_continue] = ACTIONS(2540), - [anon_sym_goto] = ACTIONS(2540), - [anon_sym_not] = ACTIONS(2540), - [anon_sym_compl] = ACTIONS(2540), - [anon_sym_DASH_DASH] = ACTIONS(2542), - [anon_sym_PLUS_PLUS] = ACTIONS(2542), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2542), - [anon_sym_u_DQUOTE] = ACTIONS(2542), - [anon_sym_U_DQUOTE] = ACTIONS(2542), - [anon_sym_u8_DQUOTE] = ACTIONS(2542), - [anon_sym_DQUOTE] = ACTIONS(2542), - [sym_true] = ACTIONS(2540), - [sym_false] = ACTIONS(2540), - [sym_null] = ACTIONS(2540), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2540), - [anon_sym_decltype] = ACTIONS(2540), - [anon_sym_virtual] = ACTIONS(2540), - [anon_sym_explicit] = ACTIONS(2540), - [anon_sym_typename] = ACTIONS(2540), - [anon_sym_template] = ACTIONS(2540), - [anon_sym_operator] = ACTIONS(2540), - [anon_sym_try] = ACTIONS(2540), - [anon_sym_delete] = ACTIONS(2540), - [anon_sym_throw] = ACTIONS(2540), - [anon_sym_namespace] = ACTIONS(2540), - [anon_sym_using] = ACTIONS(2540), - [anon_sym_static_assert] = ACTIONS(2540), - [anon_sym_concept] = ACTIONS(2540), - [anon_sym_co_return] = ACTIONS(2540), - [anon_sym_co_yield] = ACTIONS(2540), - [anon_sym_R_DQUOTE] = ACTIONS(2542), - [anon_sym_LR_DQUOTE] = ACTIONS(2542), - [anon_sym_uR_DQUOTE] = ACTIONS(2542), - [anon_sym_UR_DQUOTE] = ACTIONS(2542), - [anon_sym_u8R_DQUOTE] = ACTIONS(2542), - [anon_sym_co_await] = ACTIONS(2540), - [anon_sym_new] = ACTIONS(2540), - [anon_sym_requires] = ACTIONS(2540), - [sym_this] = ACTIONS(2540), - [sym_nullptr] = ACTIONS(2540), }, - [398] = { - [sym_identifier] = ACTIONS(2462), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2464), - [anon_sym_AMP] = ACTIONS(2462), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_explicit] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_operator] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_namespace] = ACTIONS(2462), - [anon_sym_using] = ACTIONS(2462), - [anon_sym_static_assert] = ACTIONS(2462), - [anon_sym_concept] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [387] = { + [sym_identifier] = ACTIONS(2900), + [aux_sym_preproc_include_token1] = ACTIONS(2900), + [aux_sym_preproc_def_token1] = ACTIONS(2900), + [aux_sym_preproc_if_token1] = ACTIONS(2900), + [aux_sym_preproc_if_token2] = ACTIONS(2900), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2900), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2900), + [aux_sym_preproc_else_token1] = ACTIONS(2900), + [aux_sym_preproc_elif_token1] = ACTIONS(2900), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2900), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2900), + [sym_preproc_directive] = ACTIONS(2900), + [anon_sym_LPAREN2] = ACTIONS(2902), + [anon_sym_BANG] = ACTIONS(2902), + [anon_sym_TILDE] = ACTIONS(2902), + [anon_sym_DASH] = ACTIONS(2900), + [anon_sym_PLUS] = ACTIONS(2900), + [anon_sym_STAR] = ACTIONS(2902), + [anon_sym_AMP_AMP] = ACTIONS(2902), + [anon_sym_AMP] = ACTIONS(2900), + [anon_sym_SEMI] = ACTIONS(2902), + [anon_sym_typedef] = ACTIONS(2900), + [anon_sym_extern] = ACTIONS(2900), + [anon_sym___attribute__] = ACTIONS(2900), + [anon_sym_COLON_COLON] = ACTIONS(2902), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2902), + [anon_sym___declspec] = ACTIONS(2900), + [anon_sym___based] = ACTIONS(2900), + [anon_sym___cdecl] = ACTIONS(2900), + [anon_sym___clrcall] = ACTIONS(2900), + [anon_sym___stdcall] = ACTIONS(2900), + [anon_sym___fastcall] = ACTIONS(2900), + [anon_sym___thiscall] = ACTIONS(2900), + [anon_sym___vectorcall] = ACTIONS(2900), + [anon_sym_LBRACE] = ACTIONS(2902), + [anon_sym_LBRACK] = ACTIONS(2900), + [anon_sym_static] = ACTIONS(2900), + [anon_sym_register] = ACTIONS(2900), + [anon_sym_inline] = ACTIONS(2900), + [anon_sym_thread_local] = ACTIONS(2900), + [anon_sym_const] = ACTIONS(2900), + [anon_sym_constexpr] = ACTIONS(2900), + [anon_sym_volatile] = ACTIONS(2900), + [anon_sym_restrict] = ACTIONS(2900), + [anon_sym___restrict__] = ACTIONS(2900), + [anon_sym__Atomic] = ACTIONS(2900), + [anon_sym__Noreturn] = ACTIONS(2900), + [anon_sym_noreturn] = ACTIONS(2900), + [anon_sym_mutable] = ACTIONS(2900), + [anon_sym_constinit] = ACTIONS(2900), + [anon_sym_consteval] = ACTIONS(2900), + [anon_sym_signed] = ACTIONS(2900), + [anon_sym_unsigned] = ACTIONS(2900), + [anon_sym_long] = ACTIONS(2900), + [anon_sym_short] = ACTIONS(2900), + [sym_primitive_type] = ACTIONS(2900), + [anon_sym_enum] = ACTIONS(2900), + [anon_sym_class] = ACTIONS(2900), + [anon_sym_struct] = ACTIONS(2900), + [anon_sym_union] = ACTIONS(2900), + [anon_sym_if] = ACTIONS(2900), + [anon_sym_else] = ACTIONS(2900), + [anon_sym_switch] = ACTIONS(2900), + [anon_sym_case] = ACTIONS(2900), + [anon_sym_default] = ACTIONS(2900), + [anon_sym_while] = ACTIONS(2900), + [anon_sym_do] = ACTIONS(2900), + [anon_sym_for] = ACTIONS(2900), + [anon_sym_return] = ACTIONS(2900), + [anon_sym_break] = ACTIONS(2900), + [anon_sym_continue] = ACTIONS(2900), + [anon_sym_goto] = ACTIONS(2900), + [anon_sym_not] = ACTIONS(2900), + [anon_sym_compl] = ACTIONS(2900), + [anon_sym_DASH_DASH] = ACTIONS(2902), + [anon_sym_PLUS_PLUS] = ACTIONS(2902), + [anon_sym_sizeof] = ACTIONS(2900), + [anon_sym_offsetof] = ACTIONS(2900), + [anon_sym__Generic] = ACTIONS(2900), + [anon_sym_asm] = ACTIONS(2900), + [anon_sym___asm__] = ACTIONS(2900), + [sym_number_literal] = ACTIONS(2902), + [anon_sym_L_SQUOTE] = ACTIONS(2902), + [anon_sym_u_SQUOTE] = ACTIONS(2902), + [anon_sym_U_SQUOTE] = ACTIONS(2902), + [anon_sym_u8_SQUOTE] = ACTIONS(2902), + [anon_sym_SQUOTE] = ACTIONS(2902), + [anon_sym_L_DQUOTE] = ACTIONS(2902), + [anon_sym_u_DQUOTE] = ACTIONS(2902), + [anon_sym_U_DQUOTE] = ACTIONS(2902), + [anon_sym_u8_DQUOTE] = ACTIONS(2902), + [anon_sym_DQUOTE] = ACTIONS(2902), + [sym_true] = ACTIONS(2900), + [sym_false] = ACTIONS(2900), + [anon_sym_NULL] = ACTIONS(2900), + [anon_sym_nullptr] = ACTIONS(2900), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2900), + [anon_sym_decltype] = ACTIONS(2900), + [anon_sym_virtual] = ACTIONS(2900), + [anon_sym_explicit] = ACTIONS(2900), + [anon_sym_typename] = ACTIONS(2900), + [anon_sym_template] = ACTIONS(2900), + [anon_sym_operator] = ACTIONS(2900), + [anon_sym_try] = ACTIONS(2900), + [anon_sym_delete] = ACTIONS(2900), + [anon_sym_throw] = ACTIONS(2900), + [anon_sym_namespace] = ACTIONS(2900), + [anon_sym_using] = ACTIONS(2900), + [anon_sym_static_assert] = ACTIONS(2900), + [anon_sym_concept] = ACTIONS(2900), + [anon_sym_co_return] = ACTIONS(2900), + [anon_sym_co_yield] = ACTIONS(2900), + [anon_sym_catch] = ACTIONS(2900), + [anon_sym_R_DQUOTE] = ACTIONS(2902), + [anon_sym_LR_DQUOTE] = ACTIONS(2902), + [anon_sym_uR_DQUOTE] = ACTIONS(2902), + [anon_sym_UR_DQUOTE] = ACTIONS(2902), + [anon_sym_u8R_DQUOTE] = ACTIONS(2902), + [anon_sym_co_await] = ACTIONS(2900), + [anon_sym_new] = ACTIONS(2900), + [anon_sym_requires] = ACTIONS(2900), + [sym_this] = ACTIONS(2900), }, - [399] = { - [sym_type_qualifier] = STATE(3306), - [sym__type_specifier] = STATE(3903), - [sym_sized_type_specifier] = STATE(3003), - [sym_enum_specifier] = STATE(3003), - [sym_struct_specifier] = STATE(3003), - [sym_union_specifier] = STATE(3003), - [sym__expression] = STATE(3446), - [sym_conditional_expression] = STATE(3855), - [sym_assignment_expression] = STATE(3855), - [sym_pointer_expression] = STATE(2954), - [sym_unary_expression] = STATE(3855), - [sym_binary_expression] = STATE(3855), - [sym_update_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_type_descriptor] = STATE(5272), - [sym_sizeof_expression] = STATE(3855), - [sym_subscript_expression] = STATE(2954), - [sym_call_expression] = STATE(2954), - [sym_field_expression] = STATE(2954), - [sym_compound_literal_expression] = STATE(3855), - [sym_parenthesized_expression] = STATE(2954), - [sym_char_literal] = STATE(3557), - [sym_concatenated_string] = STATE(3557), - [sym_string_literal] = STATE(2955), - [sym_placeholder_type_specifier] = STATE(3003), - [sym_decltype_auto] = STATE(3008), - [sym_decltype] = STATE(2851), - [sym_class_specifier] = STATE(3003), - [sym__class_name] = STATE(5844), - [sym_dependent_type] = STATE(3003), - [sym_template_type] = STATE(4288), - [sym_template_function] = STATE(3855), - [sym_raw_string_literal] = STATE(2955), - [sym_co_await_expression] = STATE(3855), - [sym_new_expression] = STATE(3855), - [sym_delete_expression] = STATE(3855), - [sym_requires_clause] = STATE(3855), - [sym_requires_expression] = STATE(3855), - [sym_lambda_expression] = STATE(3855), - [sym_lambda_capture_specifier] = STATE(4501), - [sym_fold_expression] = STATE(3855), - [sym_parameter_pack_expansion] = STATE(3855), - [sym_type_parameter_pack_expansion] = STATE(5617), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4544), - [sym_qualified_identifier] = STATE(2954), - [sym_qualified_type_identifier] = STATE(4356), - [sym_user_defined_literal] = STATE(3855), - [aux_sym_type_definition_repeat1] = STATE(3306), - [aux_sym_sized_type_specifier_repeat1] = STATE(2022), - [sym_identifier] = ACTIONS(2408), - [anon_sym_LPAREN2] = ACTIONS(2410), - [anon_sym_BANG] = ACTIONS(2412), - [anon_sym_TILDE] = ACTIONS(2412), - [anon_sym_DASH] = ACTIONS(2414), - [anon_sym_PLUS] = ACTIONS(2414), - [anon_sym_STAR] = ACTIONS(2416), - [anon_sym_AMP] = ACTIONS(2416), - [anon_sym_COLON_COLON] = ACTIONS(2418), - [anon_sym_LBRACK] = ACTIONS(1539), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(2420), - [anon_sym_unsigned] = ACTIONS(2420), - [anon_sym_long] = ACTIONS(2420), - [anon_sym_short] = ACTIONS(2420), - [sym_primitive_type] = ACTIONS(2422), - [anon_sym_enum] = ACTIONS(2424), - [anon_sym_class] = ACTIONS(2426), - [anon_sym_struct] = ACTIONS(2428), - [anon_sym_union] = ACTIONS(2430), - [anon_sym_not] = ACTIONS(2414), - [anon_sym_compl] = ACTIONS(2414), - [anon_sym_DASH_DASH] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(2432), - [anon_sym_sizeof] = ACTIONS(2434), - [sym_number_literal] = ACTIONS(2436), - [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_L_DQUOTE] = ACTIONS(2440), - [anon_sym_u_DQUOTE] = ACTIONS(2440), - [anon_sym_U_DQUOTE] = ACTIONS(2440), - [anon_sym_u8_DQUOTE] = ACTIONS(2440), - [anon_sym_DQUOTE] = ACTIONS(2440), - [sym_true] = ACTIONS(2442), - [sym_false] = ACTIONS(2442), - [sym_null] = ACTIONS(2442), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2444), - [anon_sym_decltype] = ACTIONS(2446), - [anon_sym_typename] = ACTIONS(2448), - [anon_sym_template] = ACTIONS(996), - [anon_sym_GT2] = ACTIONS(2544), - [anon_sym_delete] = ACTIONS(2452), - [anon_sym_R_DQUOTE] = ACTIONS(2454), - [anon_sym_LR_DQUOTE] = ACTIONS(2454), - [anon_sym_uR_DQUOTE] = ACTIONS(2454), - [anon_sym_UR_DQUOTE] = ACTIONS(2454), - [anon_sym_u8R_DQUOTE] = ACTIONS(2454), - [anon_sym_co_await] = ACTIONS(2456), - [anon_sym_new] = ACTIONS(2458), - [anon_sym_requires] = ACTIONS(2460), - [sym_this] = ACTIONS(2442), - [sym_nullptr] = ACTIONS(2442), + [388] = { + [sym_identifier] = ACTIONS(2904), + [aux_sym_preproc_include_token1] = ACTIONS(2904), + [aux_sym_preproc_def_token1] = ACTIONS(2904), + [aux_sym_preproc_if_token1] = ACTIONS(2904), + [aux_sym_preproc_if_token2] = ACTIONS(2904), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2904), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2904), + [aux_sym_preproc_else_token1] = ACTIONS(2904), + [aux_sym_preproc_elif_token1] = ACTIONS(2904), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2904), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2904), + [sym_preproc_directive] = ACTIONS(2904), + [anon_sym_LPAREN2] = ACTIONS(2906), + [anon_sym_BANG] = ACTIONS(2906), + [anon_sym_TILDE] = ACTIONS(2906), + [anon_sym_DASH] = ACTIONS(2904), + [anon_sym_PLUS] = ACTIONS(2904), + [anon_sym_STAR] = ACTIONS(2906), + [anon_sym_AMP_AMP] = ACTIONS(2906), + [anon_sym_AMP] = ACTIONS(2904), + [anon_sym_SEMI] = ACTIONS(2906), + [anon_sym_typedef] = ACTIONS(2904), + [anon_sym_extern] = ACTIONS(2904), + [anon_sym___attribute__] = ACTIONS(2904), + [anon_sym_COLON_COLON] = ACTIONS(2906), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2906), + [anon_sym___declspec] = ACTIONS(2904), + [anon_sym___based] = ACTIONS(2904), + [anon_sym___cdecl] = ACTIONS(2904), + [anon_sym___clrcall] = ACTIONS(2904), + [anon_sym___stdcall] = ACTIONS(2904), + [anon_sym___fastcall] = ACTIONS(2904), + [anon_sym___thiscall] = ACTIONS(2904), + [anon_sym___vectorcall] = ACTIONS(2904), + [anon_sym_LBRACE] = ACTIONS(2906), + [anon_sym_LBRACK] = ACTIONS(2904), + [anon_sym_static] = ACTIONS(2904), + [anon_sym_register] = ACTIONS(2904), + [anon_sym_inline] = ACTIONS(2904), + [anon_sym_thread_local] = ACTIONS(2904), + [anon_sym_const] = ACTIONS(2904), + [anon_sym_constexpr] = ACTIONS(2904), + [anon_sym_volatile] = ACTIONS(2904), + [anon_sym_restrict] = ACTIONS(2904), + [anon_sym___restrict__] = ACTIONS(2904), + [anon_sym__Atomic] = ACTIONS(2904), + [anon_sym__Noreturn] = ACTIONS(2904), + [anon_sym_noreturn] = ACTIONS(2904), + [anon_sym_mutable] = ACTIONS(2904), + [anon_sym_constinit] = ACTIONS(2904), + [anon_sym_consteval] = ACTIONS(2904), + [anon_sym_signed] = ACTIONS(2904), + [anon_sym_unsigned] = ACTIONS(2904), + [anon_sym_long] = ACTIONS(2904), + [anon_sym_short] = ACTIONS(2904), + [sym_primitive_type] = ACTIONS(2904), + [anon_sym_enum] = ACTIONS(2904), + [anon_sym_class] = ACTIONS(2904), + [anon_sym_struct] = ACTIONS(2904), + [anon_sym_union] = ACTIONS(2904), + [anon_sym_if] = ACTIONS(2904), + [anon_sym_else] = ACTIONS(2904), + [anon_sym_switch] = ACTIONS(2904), + [anon_sym_case] = ACTIONS(2904), + [anon_sym_default] = ACTIONS(2904), + [anon_sym_while] = ACTIONS(2904), + [anon_sym_do] = ACTIONS(2904), + [anon_sym_for] = ACTIONS(2904), + [anon_sym_return] = ACTIONS(2904), + [anon_sym_break] = ACTIONS(2904), + [anon_sym_continue] = ACTIONS(2904), + [anon_sym_goto] = ACTIONS(2904), + [anon_sym_not] = ACTIONS(2904), + [anon_sym_compl] = ACTIONS(2904), + [anon_sym_DASH_DASH] = ACTIONS(2906), + [anon_sym_PLUS_PLUS] = ACTIONS(2906), + [anon_sym_sizeof] = ACTIONS(2904), + [anon_sym_offsetof] = ACTIONS(2904), + [anon_sym__Generic] = ACTIONS(2904), + [anon_sym_asm] = ACTIONS(2904), + [anon_sym___asm__] = ACTIONS(2904), + [sym_number_literal] = ACTIONS(2906), + [anon_sym_L_SQUOTE] = ACTIONS(2906), + [anon_sym_u_SQUOTE] = ACTIONS(2906), + [anon_sym_U_SQUOTE] = ACTIONS(2906), + [anon_sym_u8_SQUOTE] = ACTIONS(2906), + [anon_sym_SQUOTE] = ACTIONS(2906), + [anon_sym_L_DQUOTE] = ACTIONS(2906), + [anon_sym_u_DQUOTE] = ACTIONS(2906), + [anon_sym_U_DQUOTE] = ACTIONS(2906), + [anon_sym_u8_DQUOTE] = ACTIONS(2906), + [anon_sym_DQUOTE] = ACTIONS(2906), + [sym_true] = ACTIONS(2904), + [sym_false] = ACTIONS(2904), + [anon_sym_NULL] = ACTIONS(2904), + [anon_sym_nullptr] = ACTIONS(2904), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2904), + [anon_sym_decltype] = ACTIONS(2904), + [anon_sym_virtual] = ACTIONS(2904), + [anon_sym_explicit] = ACTIONS(2904), + [anon_sym_typename] = ACTIONS(2904), + [anon_sym_template] = ACTIONS(2904), + [anon_sym_operator] = ACTIONS(2904), + [anon_sym_try] = ACTIONS(2904), + [anon_sym_delete] = ACTIONS(2904), + [anon_sym_throw] = ACTIONS(2904), + [anon_sym_namespace] = ACTIONS(2904), + [anon_sym_using] = ACTIONS(2904), + [anon_sym_static_assert] = ACTIONS(2904), + [anon_sym_concept] = ACTIONS(2904), + [anon_sym_co_return] = ACTIONS(2904), + [anon_sym_co_yield] = ACTIONS(2904), + [anon_sym_R_DQUOTE] = ACTIONS(2906), + [anon_sym_LR_DQUOTE] = ACTIONS(2906), + [anon_sym_uR_DQUOTE] = ACTIONS(2906), + [anon_sym_UR_DQUOTE] = ACTIONS(2906), + [anon_sym_u8R_DQUOTE] = ACTIONS(2906), + [anon_sym_co_await] = ACTIONS(2904), + [anon_sym_new] = ACTIONS(2904), + [anon_sym_requires] = ACTIONS(2904), + [sym_this] = ACTIONS(2904), + }, + [389] = { + [sym_identifier] = ACTIONS(2908), + [aux_sym_preproc_include_token1] = ACTIONS(2908), + [aux_sym_preproc_def_token1] = ACTIONS(2908), + [aux_sym_preproc_if_token1] = ACTIONS(2908), + [aux_sym_preproc_if_token2] = ACTIONS(2908), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2908), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2908), + [aux_sym_preproc_else_token1] = ACTIONS(2908), + [aux_sym_preproc_elif_token1] = ACTIONS(2908), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2908), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2908), + [sym_preproc_directive] = ACTIONS(2908), + [anon_sym_LPAREN2] = ACTIONS(2910), + [anon_sym_BANG] = ACTIONS(2910), + [anon_sym_TILDE] = ACTIONS(2910), + [anon_sym_DASH] = ACTIONS(2908), + [anon_sym_PLUS] = ACTIONS(2908), + [anon_sym_STAR] = ACTIONS(2910), + [anon_sym_AMP_AMP] = ACTIONS(2910), + [anon_sym_AMP] = ACTIONS(2908), + [anon_sym_SEMI] = ACTIONS(2910), + [anon_sym_typedef] = ACTIONS(2908), + [anon_sym_extern] = ACTIONS(2908), + [anon_sym___attribute__] = ACTIONS(2908), + [anon_sym_COLON_COLON] = ACTIONS(2910), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2910), + [anon_sym___declspec] = ACTIONS(2908), + [anon_sym___based] = ACTIONS(2908), + [anon_sym___cdecl] = ACTIONS(2908), + [anon_sym___clrcall] = ACTIONS(2908), + [anon_sym___stdcall] = ACTIONS(2908), + [anon_sym___fastcall] = ACTIONS(2908), + [anon_sym___thiscall] = ACTIONS(2908), + [anon_sym___vectorcall] = ACTIONS(2908), + [anon_sym_LBRACE] = ACTIONS(2910), + [anon_sym_LBRACK] = ACTIONS(2908), + [anon_sym_static] = ACTIONS(2908), + [anon_sym_register] = ACTIONS(2908), + [anon_sym_inline] = ACTIONS(2908), + [anon_sym_thread_local] = ACTIONS(2908), + [anon_sym_const] = ACTIONS(2908), + [anon_sym_constexpr] = ACTIONS(2908), + [anon_sym_volatile] = ACTIONS(2908), + [anon_sym_restrict] = ACTIONS(2908), + [anon_sym___restrict__] = ACTIONS(2908), + [anon_sym__Atomic] = ACTIONS(2908), + [anon_sym__Noreturn] = ACTIONS(2908), + [anon_sym_noreturn] = ACTIONS(2908), + [anon_sym_mutable] = ACTIONS(2908), + [anon_sym_constinit] = ACTIONS(2908), + [anon_sym_consteval] = ACTIONS(2908), + [anon_sym_signed] = ACTIONS(2908), + [anon_sym_unsigned] = ACTIONS(2908), + [anon_sym_long] = ACTIONS(2908), + [anon_sym_short] = ACTIONS(2908), + [sym_primitive_type] = ACTIONS(2908), + [anon_sym_enum] = ACTIONS(2908), + [anon_sym_class] = ACTIONS(2908), + [anon_sym_struct] = ACTIONS(2908), + [anon_sym_union] = ACTIONS(2908), + [anon_sym_if] = ACTIONS(2908), + [anon_sym_else] = ACTIONS(2908), + [anon_sym_switch] = ACTIONS(2908), + [anon_sym_case] = ACTIONS(2908), + [anon_sym_default] = ACTIONS(2908), + [anon_sym_while] = ACTIONS(2908), + [anon_sym_do] = ACTIONS(2908), + [anon_sym_for] = ACTIONS(2908), + [anon_sym_return] = ACTIONS(2908), + [anon_sym_break] = ACTIONS(2908), + [anon_sym_continue] = ACTIONS(2908), + [anon_sym_goto] = ACTIONS(2908), + [anon_sym_not] = ACTIONS(2908), + [anon_sym_compl] = ACTIONS(2908), + [anon_sym_DASH_DASH] = ACTIONS(2910), + [anon_sym_PLUS_PLUS] = ACTIONS(2910), + [anon_sym_sizeof] = ACTIONS(2908), + [anon_sym_offsetof] = ACTIONS(2908), + [anon_sym__Generic] = ACTIONS(2908), + [anon_sym_asm] = ACTIONS(2908), + [anon_sym___asm__] = ACTIONS(2908), + [sym_number_literal] = ACTIONS(2910), + [anon_sym_L_SQUOTE] = ACTIONS(2910), + [anon_sym_u_SQUOTE] = ACTIONS(2910), + [anon_sym_U_SQUOTE] = ACTIONS(2910), + [anon_sym_u8_SQUOTE] = ACTIONS(2910), + [anon_sym_SQUOTE] = ACTIONS(2910), + [anon_sym_L_DQUOTE] = ACTIONS(2910), + [anon_sym_u_DQUOTE] = ACTIONS(2910), + [anon_sym_U_DQUOTE] = ACTIONS(2910), + [anon_sym_u8_DQUOTE] = ACTIONS(2910), + [anon_sym_DQUOTE] = ACTIONS(2910), + [sym_true] = ACTIONS(2908), + [sym_false] = ACTIONS(2908), + [anon_sym_NULL] = ACTIONS(2908), + [anon_sym_nullptr] = ACTIONS(2908), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2908), + [anon_sym_decltype] = ACTIONS(2908), + [anon_sym_virtual] = ACTIONS(2908), + [anon_sym_explicit] = ACTIONS(2908), + [anon_sym_typename] = ACTIONS(2908), + [anon_sym_template] = ACTIONS(2908), + [anon_sym_operator] = ACTIONS(2908), + [anon_sym_try] = ACTIONS(2908), + [anon_sym_delete] = ACTIONS(2908), + [anon_sym_throw] = ACTIONS(2908), + [anon_sym_namespace] = ACTIONS(2908), + [anon_sym_using] = ACTIONS(2908), + [anon_sym_static_assert] = ACTIONS(2908), + [anon_sym_concept] = ACTIONS(2908), + [anon_sym_co_return] = ACTIONS(2908), + [anon_sym_co_yield] = ACTIONS(2908), + [anon_sym_R_DQUOTE] = ACTIONS(2910), + [anon_sym_LR_DQUOTE] = ACTIONS(2910), + [anon_sym_uR_DQUOTE] = ACTIONS(2910), + [anon_sym_UR_DQUOTE] = ACTIONS(2910), + [anon_sym_u8R_DQUOTE] = ACTIONS(2910), + [anon_sym_co_await] = ACTIONS(2908), + [anon_sym_new] = ACTIONS(2908), + [anon_sym_requires] = ACTIONS(2908), + [sym_this] = ACTIONS(2908), + }, + [390] = { + [sym_identifier] = ACTIONS(2912), + [aux_sym_preproc_include_token1] = ACTIONS(2912), + [aux_sym_preproc_def_token1] = ACTIONS(2912), + [aux_sym_preproc_if_token1] = ACTIONS(2912), + [aux_sym_preproc_if_token2] = ACTIONS(2912), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2912), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2912), + [aux_sym_preproc_else_token1] = ACTIONS(2912), + [aux_sym_preproc_elif_token1] = ACTIONS(2912), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2912), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2912), + [sym_preproc_directive] = ACTIONS(2912), + [anon_sym_LPAREN2] = ACTIONS(2914), + [anon_sym_BANG] = ACTIONS(2914), + [anon_sym_TILDE] = ACTIONS(2914), + [anon_sym_DASH] = ACTIONS(2912), + [anon_sym_PLUS] = ACTIONS(2912), + [anon_sym_STAR] = ACTIONS(2914), + [anon_sym_AMP_AMP] = ACTIONS(2914), + [anon_sym_AMP] = ACTIONS(2912), + [anon_sym_SEMI] = ACTIONS(2914), + [anon_sym_typedef] = ACTIONS(2912), + [anon_sym_extern] = ACTIONS(2912), + [anon_sym___attribute__] = ACTIONS(2912), + [anon_sym_COLON_COLON] = ACTIONS(2914), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2914), + [anon_sym___declspec] = ACTIONS(2912), + [anon_sym___based] = ACTIONS(2912), + [anon_sym___cdecl] = ACTIONS(2912), + [anon_sym___clrcall] = ACTIONS(2912), + [anon_sym___stdcall] = ACTIONS(2912), + [anon_sym___fastcall] = ACTIONS(2912), + [anon_sym___thiscall] = ACTIONS(2912), + [anon_sym___vectorcall] = ACTIONS(2912), + [anon_sym_LBRACE] = ACTIONS(2914), + [anon_sym_LBRACK] = ACTIONS(2912), + [anon_sym_static] = ACTIONS(2912), + [anon_sym_register] = ACTIONS(2912), + [anon_sym_inline] = ACTIONS(2912), + [anon_sym_thread_local] = ACTIONS(2912), + [anon_sym_const] = ACTIONS(2912), + [anon_sym_constexpr] = ACTIONS(2912), + [anon_sym_volatile] = ACTIONS(2912), + [anon_sym_restrict] = ACTIONS(2912), + [anon_sym___restrict__] = ACTIONS(2912), + [anon_sym__Atomic] = ACTIONS(2912), + [anon_sym__Noreturn] = ACTIONS(2912), + [anon_sym_noreturn] = ACTIONS(2912), + [anon_sym_mutable] = ACTIONS(2912), + [anon_sym_constinit] = ACTIONS(2912), + [anon_sym_consteval] = ACTIONS(2912), + [anon_sym_signed] = ACTIONS(2912), + [anon_sym_unsigned] = ACTIONS(2912), + [anon_sym_long] = ACTIONS(2912), + [anon_sym_short] = ACTIONS(2912), + [sym_primitive_type] = ACTIONS(2912), + [anon_sym_enum] = ACTIONS(2912), + [anon_sym_class] = ACTIONS(2912), + [anon_sym_struct] = ACTIONS(2912), + [anon_sym_union] = ACTIONS(2912), + [anon_sym_if] = ACTIONS(2912), + [anon_sym_else] = ACTIONS(2912), + [anon_sym_switch] = ACTIONS(2912), + [anon_sym_case] = ACTIONS(2912), + [anon_sym_default] = ACTIONS(2912), + [anon_sym_while] = ACTIONS(2912), + [anon_sym_do] = ACTIONS(2912), + [anon_sym_for] = ACTIONS(2912), + [anon_sym_return] = ACTIONS(2912), + [anon_sym_break] = ACTIONS(2912), + [anon_sym_continue] = ACTIONS(2912), + [anon_sym_goto] = ACTIONS(2912), + [anon_sym_not] = ACTIONS(2912), + [anon_sym_compl] = ACTIONS(2912), + [anon_sym_DASH_DASH] = ACTIONS(2914), + [anon_sym_PLUS_PLUS] = ACTIONS(2914), + [anon_sym_sizeof] = ACTIONS(2912), + [anon_sym_offsetof] = ACTIONS(2912), + [anon_sym__Generic] = ACTIONS(2912), + [anon_sym_asm] = ACTIONS(2912), + [anon_sym___asm__] = ACTIONS(2912), + [sym_number_literal] = ACTIONS(2914), + [anon_sym_L_SQUOTE] = ACTIONS(2914), + [anon_sym_u_SQUOTE] = ACTIONS(2914), + [anon_sym_U_SQUOTE] = ACTIONS(2914), + [anon_sym_u8_SQUOTE] = ACTIONS(2914), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_L_DQUOTE] = ACTIONS(2914), + [anon_sym_u_DQUOTE] = ACTIONS(2914), + [anon_sym_U_DQUOTE] = ACTIONS(2914), + [anon_sym_u8_DQUOTE] = ACTIONS(2914), + [anon_sym_DQUOTE] = ACTIONS(2914), + [sym_true] = ACTIONS(2912), + [sym_false] = ACTIONS(2912), + [anon_sym_NULL] = ACTIONS(2912), + [anon_sym_nullptr] = ACTIONS(2912), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2912), + [anon_sym_decltype] = ACTIONS(2912), + [anon_sym_virtual] = ACTIONS(2912), + [anon_sym_explicit] = ACTIONS(2912), + [anon_sym_typename] = ACTIONS(2912), + [anon_sym_template] = ACTIONS(2912), + [anon_sym_operator] = ACTIONS(2912), + [anon_sym_try] = ACTIONS(2912), + [anon_sym_delete] = ACTIONS(2912), + [anon_sym_throw] = ACTIONS(2912), + [anon_sym_namespace] = ACTIONS(2912), + [anon_sym_using] = ACTIONS(2912), + [anon_sym_static_assert] = ACTIONS(2912), + [anon_sym_concept] = ACTIONS(2912), + [anon_sym_co_return] = ACTIONS(2912), + [anon_sym_co_yield] = ACTIONS(2912), + [anon_sym_R_DQUOTE] = ACTIONS(2914), + [anon_sym_LR_DQUOTE] = ACTIONS(2914), + [anon_sym_uR_DQUOTE] = ACTIONS(2914), + [anon_sym_UR_DQUOTE] = ACTIONS(2914), + [anon_sym_u8R_DQUOTE] = ACTIONS(2914), + [anon_sym_co_await] = ACTIONS(2912), + [anon_sym_new] = ACTIONS(2912), + [anon_sym_requires] = ACTIONS(2912), + [sym_this] = ACTIONS(2912), + }, + [391] = { + [sym_identifier] = ACTIONS(2916), + [aux_sym_preproc_include_token1] = ACTIONS(2916), + [aux_sym_preproc_def_token1] = ACTIONS(2916), + [aux_sym_preproc_if_token1] = ACTIONS(2916), + [aux_sym_preproc_if_token2] = ACTIONS(2916), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2916), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2916), + [aux_sym_preproc_else_token1] = ACTIONS(2916), + [aux_sym_preproc_elif_token1] = ACTIONS(2916), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2916), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2916), + [sym_preproc_directive] = ACTIONS(2916), + [anon_sym_LPAREN2] = ACTIONS(2918), + [anon_sym_BANG] = ACTIONS(2918), + [anon_sym_TILDE] = ACTIONS(2918), + [anon_sym_DASH] = ACTIONS(2916), + [anon_sym_PLUS] = ACTIONS(2916), + [anon_sym_STAR] = ACTIONS(2918), + [anon_sym_AMP_AMP] = ACTIONS(2918), + [anon_sym_AMP] = ACTIONS(2916), + [anon_sym_SEMI] = ACTIONS(2918), + [anon_sym_typedef] = ACTIONS(2916), + [anon_sym_extern] = ACTIONS(2916), + [anon_sym___attribute__] = ACTIONS(2916), + [anon_sym_COLON_COLON] = ACTIONS(2918), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2918), + [anon_sym___declspec] = ACTIONS(2916), + [anon_sym___based] = ACTIONS(2916), + [anon_sym___cdecl] = ACTIONS(2916), + [anon_sym___clrcall] = ACTIONS(2916), + [anon_sym___stdcall] = ACTIONS(2916), + [anon_sym___fastcall] = ACTIONS(2916), + [anon_sym___thiscall] = ACTIONS(2916), + [anon_sym___vectorcall] = ACTIONS(2916), + [anon_sym_LBRACE] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(2916), + [anon_sym_static] = ACTIONS(2916), + [anon_sym_register] = ACTIONS(2916), + [anon_sym_inline] = ACTIONS(2916), + [anon_sym_thread_local] = ACTIONS(2916), + [anon_sym_const] = ACTIONS(2916), + [anon_sym_constexpr] = ACTIONS(2916), + [anon_sym_volatile] = ACTIONS(2916), + [anon_sym_restrict] = ACTIONS(2916), + [anon_sym___restrict__] = ACTIONS(2916), + [anon_sym__Atomic] = ACTIONS(2916), + [anon_sym__Noreturn] = ACTIONS(2916), + [anon_sym_noreturn] = ACTIONS(2916), + [anon_sym_mutable] = ACTIONS(2916), + [anon_sym_constinit] = ACTIONS(2916), + [anon_sym_consteval] = ACTIONS(2916), + [anon_sym_signed] = ACTIONS(2916), + [anon_sym_unsigned] = ACTIONS(2916), + [anon_sym_long] = ACTIONS(2916), + [anon_sym_short] = ACTIONS(2916), + [sym_primitive_type] = ACTIONS(2916), + [anon_sym_enum] = ACTIONS(2916), + [anon_sym_class] = ACTIONS(2916), + [anon_sym_struct] = ACTIONS(2916), + [anon_sym_union] = ACTIONS(2916), + [anon_sym_if] = ACTIONS(2916), + [anon_sym_else] = ACTIONS(2916), + [anon_sym_switch] = ACTIONS(2916), + [anon_sym_case] = ACTIONS(2916), + [anon_sym_default] = ACTIONS(2916), + [anon_sym_while] = ACTIONS(2916), + [anon_sym_do] = ACTIONS(2916), + [anon_sym_for] = ACTIONS(2916), + [anon_sym_return] = ACTIONS(2916), + [anon_sym_break] = ACTIONS(2916), + [anon_sym_continue] = ACTIONS(2916), + [anon_sym_goto] = ACTIONS(2916), + [anon_sym_not] = ACTIONS(2916), + [anon_sym_compl] = ACTIONS(2916), + [anon_sym_DASH_DASH] = ACTIONS(2918), + [anon_sym_PLUS_PLUS] = ACTIONS(2918), + [anon_sym_sizeof] = ACTIONS(2916), + [anon_sym_offsetof] = ACTIONS(2916), + [anon_sym__Generic] = ACTIONS(2916), + [anon_sym_asm] = ACTIONS(2916), + [anon_sym___asm__] = ACTIONS(2916), + [sym_number_literal] = ACTIONS(2918), + [anon_sym_L_SQUOTE] = ACTIONS(2918), + [anon_sym_u_SQUOTE] = ACTIONS(2918), + [anon_sym_U_SQUOTE] = ACTIONS(2918), + [anon_sym_u8_SQUOTE] = ACTIONS(2918), + [anon_sym_SQUOTE] = ACTIONS(2918), + [anon_sym_L_DQUOTE] = ACTIONS(2918), + [anon_sym_u_DQUOTE] = ACTIONS(2918), + [anon_sym_U_DQUOTE] = ACTIONS(2918), + [anon_sym_u8_DQUOTE] = ACTIONS(2918), + [anon_sym_DQUOTE] = ACTIONS(2918), + [sym_true] = ACTIONS(2916), + [sym_false] = ACTIONS(2916), + [anon_sym_NULL] = ACTIONS(2916), + [anon_sym_nullptr] = ACTIONS(2916), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2916), + [anon_sym_decltype] = ACTIONS(2916), + [anon_sym_virtual] = ACTIONS(2916), + [anon_sym_explicit] = ACTIONS(2916), + [anon_sym_typename] = ACTIONS(2916), + [anon_sym_template] = ACTIONS(2916), + [anon_sym_operator] = ACTIONS(2916), + [anon_sym_try] = ACTIONS(2916), + [anon_sym_delete] = ACTIONS(2916), + [anon_sym_throw] = ACTIONS(2916), + [anon_sym_namespace] = ACTIONS(2916), + [anon_sym_using] = ACTIONS(2916), + [anon_sym_static_assert] = ACTIONS(2916), + [anon_sym_concept] = ACTIONS(2916), + [anon_sym_co_return] = ACTIONS(2916), + [anon_sym_co_yield] = ACTIONS(2916), + [anon_sym_R_DQUOTE] = ACTIONS(2918), + [anon_sym_LR_DQUOTE] = ACTIONS(2918), + [anon_sym_uR_DQUOTE] = ACTIONS(2918), + [anon_sym_UR_DQUOTE] = ACTIONS(2918), + [anon_sym_u8R_DQUOTE] = ACTIONS(2918), + [anon_sym_co_await] = ACTIONS(2916), + [anon_sym_new] = ACTIONS(2916), + [anon_sym_requires] = ACTIONS(2916), + [sym_this] = ACTIONS(2916), + }, + [392] = { + [sym_identifier] = ACTIONS(2920), + [aux_sym_preproc_include_token1] = ACTIONS(2920), + [aux_sym_preproc_def_token1] = ACTIONS(2920), + [aux_sym_preproc_if_token1] = ACTIONS(2920), + [aux_sym_preproc_if_token2] = ACTIONS(2920), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2920), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2920), + [aux_sym_preproc_else_token1] = ACTIONS(2920), + [aux_sym_preproc_elif_token1] = ACTIONS(2920), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2920), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2920), + [sym_preproc_directive] = ACTIONS(2920), + [anon_sym_LPAREN2] = ACTIONS(2922), + [anon_sym_BANG] = ACTIONS(2922), + [anon_sym_TILDE] = ACTIONS(2922), + [anon_sym_DASH] = ACTIONS(2920), + [anon_sym_PLUS] = ACTIONS(2920), + [anon_sym_STAR] = ACTIONS(2922), + [anon_sym_AMP_AMP] = ACTIONS(2922), + [anon_sym_AMP] = ACTIONS(2920), + [anon_sym_SEMI] = ACTIONS(2922), + [anon_sym_typedef] = ACTIONS(2920), + [anon_sym_extern] = ACTIONS(2920), + [anon_sym___attribute__] = ACTIONS(2920), + [anon_sym_COLON_COLON] = ACTIONS(2922), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2922), + [anon_sym___declspec] = ACTIONS(2920), + [anon_sym___based] = ACTIONS(2920), + [anon_sym___cdecl] = ACTIONS(2920), + [anon_sym___clrcall] = ACTIONS(2920), + [anon_sym___stdcall] = ACTIONS(2920), + [anon_sym___fastcall] = ACTIONS(2920), + [anon_sym___thiscall] = ACTIONS(2920), + [anon_sym___vectorcall] = ACTIONS(2920), + [anon_sym_LBRACE] = ACTIONS(2922), + [anon_sym_LBRACK] = ACTIONS(2920), + [anon_sym_static] = ACTIONS(2920), + [anon_sym_register] = ACTIONS(2920), + [anon_sym_inline] = ACTIONS(2920), + [anon_sym_thread_local] = ACTIONS(2920), + [anon_sym_const] = ACTIONS(2920), + [anon_sym_constexpr] = ACTIONS(2920), + [anon_sym_volatile] = ACTIONS(2920), + [anon_sym_restrict] = ACTIONS(2920), + [anon_sym___restrict__] = ACTIONS(2920), + [anon_sym__Atomic] = ACTIONS(2920), + [anon_sym__Noreturn] = ACTIONS(2920), + [anon_sym_noreturn] = ACTIONS(2920), + [anon_sym_mutable] = ACTIONS(2920), + [anon_sym_constinit] = ACTIONS(2920), + [anon_sym_consteval] = ACTIONS(2920), + [anon_sym_signed] = ACTIONS(2920), + [anon_sym_unsigned] = ACTIONS(2920), + [anon_sym_long] = ACTIONS(2920), + [anon_sym_short] = ACTIONS(2920), + [sym_primitive_type] = ACTIONS(2920), + [anon_sym_enum] = ACTIONS(2920), + [anon_sym_class] = ACTIONS(2920), + [anon_sym_struct] = ACTIONS(2920), + [anon_sym_union] = ACTIONS(2920), + [anon_sym_if] = ACTIONS(2920), + [anon_sym_else] = ACTIONS(2920), + [anon_sym_switch] = ACTIONS(2920), + [anon_sym_case] = ACTIONS(2920), + [anon_sym_default] = ACTIONS(2920), + [anon_sym_while] = ACTIONS(2920), + [anon_sym_do] = ACTIONS(2920), + [anon_sym_for] = ACTIONS(2920), + [anon_sym_return] = ACTIONS(2920), + [anon_sym_break] = ACTIONS(2920), + [anon_sym_continue] = ACTIONS(2920), + [anon_sym_goto] = ACTIONS(2920), + [anon_sym_not] = ACTIONS(2920), + [anon_sym_compl] = ACTIONS(2920), + [anon_sym_DASH_DASH] = ACTIONS(2922), + [anon_sym_PLUS_PLUS] = ACTIONS(2922), + [anon_sym_sizeof] = ACTIONS(2920), + [anon_sym_offsetof] = ACTIONS(2920), + [anon_sym__Generic] = ACTIONS(2920), + [anon_sym_asm] = ACTIONS(2920), + [anon_sym___asm__] = ACTIONS(2920), + [sym_number_literal] = ACTIONS(2922), + [anon_sym_L_SQUOTE] = ACTIONS(2922), + [anon_sym_u_SQUOTE] = ACTIONS(2922), + [anon_sym_U_SQUOTE] = ACTIONS(2922), + [anon_sym_u8_SQUOTE] = ACTIONS(2922), + [anon_sym_SQUOTE] = ACTIONS(2922), + [anon_sym_L_DQUOTE] = ACTIONS(2922), + [anon_sym_u_DQUOTE] = ACTIONS(2922), + [anon_sym_U_DQUOTE] = ACTIONS(2922), + [anon_sym_u8_DQUOTE] = ACTIONS(2922), + [anon_sym_DQUOTE] = ACTIONS(2922), + [sym_true] = ACTIONS(2920), + [sym_false] = ACTIONS(2920), + [anon_sym_NULL] = ACTIONS(2920), + [anon_sym_nullptr] = ACTIONS(2920), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2920), + [anon_sym_decltype] = ACTIONS(2920), + [anon_sym_virtual] = ACTIONS(2920), + [anon_sym_explicit] = ACTIONS(2920), + [anon_sym_typename] = ACTIONS(2920), + [anon_sym_template] = ACTIONS(2920), + [anon_sym_operator] = ACTIONS(2920), + [anon_sym_try] = ACTIONS(2920), + [anon_sym_delete] = ACTIONS(2920), + [anon_sym_throw] = ACTIONS(2920), + [anon_sym_namespace] = ACTIONS(2920), + [anon_sym_using] = ACTIONS(2920), + [anon_sym_static_assert] = ACTIONS(2920), + [anon_sym_concept] = ACTIONS(2920), + [anon_sym_co_return] = ACTIONS(2920), + [anon_sym_co_yield] = ACTIONS(2920), + [anon_sym_R_DQUOTE] = ACTIONS(2922), + [anon_sym_LR_DQUOTE] = ACTIONS(2922), + [anon_sym_uR_DQUOTE] = ACTIONS(2922), + [anon_sym_UR_DQUOTE] = ACTIONS(2922), + [anon_sym_u8R_DQUOTE] = ACTIONS(2922), + [anon_sym_co_await] = ACTIONS(2920), + [anon_sym_new] = ACTIONS(2920), + [anon_sym_requires] = ACTIONS(2920), + [sym_this] = ACTIONS(2920), + }, + [393] = { + [sym_identifier] = ACTIONS(2924), + [aux_sym_preproc_include_token1] = ACTIONS(2924), + [aux_sym_preproc_def_token1] = ACTIONS(2924), + [aux_sym_preproc_if_token1] = ACTIONS(2924), + [aux_sym_preproc_if_token2] = ACTIONS(2924), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2924), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2924), + [aux_sym_preproc_else_token1] = ACTIONS(2924), + [aux_sym_preproc_elif_token1] = ACTIONS(2924), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2924), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2924), + [sym_preproc_directive] = ACTIONS(2924), + [anon_sym_LPAREN2] = ACTIONS(2926), + [anon_sym_BANG] = ACTIONS(2926), + [anon_sym_TILDE] = ACTIONS(2926), + [anon_sym_DASH] = ACTIONS(2924), + [anon_sym_PLUS] = ACTIONS(2924), + [anon_sym_STAR] = ACTIONS(2926), + [anon_sym_AMP_AMP] = ACTIONS(2926), + [anon_sym_AMP] = ACTIONS(2924), + [anon_sym_SEMI] = ACTIONS(2926), + [anon_sym_typedef] = ACTIONS(2924), + [anon_sym_extern] = ACTIONS(2924), + [anon_sym___attribute__] = ACTIONS(2924), + [anon_sym_COLON_COLON] = ACTIONS(2926), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2926), + [anon_sym___declspec] = ACTIONS(2924), + [anon_sym___based] = ACTIONS(2924), + [anon_sym___cdecl] = ACTIONS(2924), + [anon_sym___clrcall] = ACTIONS(2924), + [anon_sym___stdcall] = ACTIONS(2924), + [anon_sym___fastcall] = ACTIONS(2924), + [anon_sym___thiscall] = ACTIONS(2924), + [anon_sym___vectorcall] = ACTIONS(2924), + [anon_sym_LBRACE] = ACTIONS(2926), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_static] = ACTIONS(2924), + [anon_sym_register] = ACTIONS(2924), + [anon_sym_inline] = ACTIONS(2924), + [anon_sym_thread_local] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(2924), + [anon_sym_constexpr] = ACTIONS(2924), + [anon_sym_volatile] = ACTIONS(2924), + [anon_sym_restrict] = ACTIONS(2924), + [anon_sym___restrict__] = ACTIONS(2924), + [anon_sym__Atomic] = ACTIONS(2924), + [anon_sym__Noreturn] = ACTIONS(2924), + [anon_sym_noreturn] = ACTIONS(2924), + [anon_sym_mutable] = ACTIONS(2924), + [anon_sym_constinit] = ACTIONS(2924), + [anon_sym_consteval] = ACTIONS(2924), + [anon_sym_signed] = ACTIONS(2924), + [anon_sym_unsigned] = ACTIONS(2924), + [anon_sym_long] = ACTIONS(2924), + [anon_sym_short] = ACTIONS(2924), + [sym_primitive_type] = ACTIONS(2924), + [anon_sym_enum] = ACTIONS(2924), + [anon_sym_class] = ACTIONS(2924), + [anon_sym_struct] = ACTIONS(2924), + [anon_sym_union] = ACTIONS(2924), + [anon_sym_if] = ACTIONS(2924), + [anon_sym_else] = ACTIONS(2924), + [anon_sym_switch] = ACTIONS(2924), + [anon_sym_case] = ACTIONS(2924), + [anon_sym_default] = ACTIONS(2924), + [anon_sym_while] = ACTIONS(2924), + [anon_sym_do] = ACTIONS(2924), + [anon_sym_for] = ACTIONS(2924), + [anon_sym_return] = ACTIONS(2924), + [anon_sym_break] = ACTIONS(2924), + [anon_sym_continue] = ACTIONS(2924), + [anon_sym_goto] = ACTIONS(2924), + [anon_sym_not] = ACTIONS(2924), + [anon_sym_compl] = ACTIONS(2924), + [anon_sym_DASH_DASH] = ACTIONS(2926), + [anon_sym_PLUS_PLUS] = ACTIONS(2926), + [anon_sym_sizeof] = ACTIONS(2924), + [anon_sym_offsetof] = ACTIONS(2924), + [anon_sym__Generic] = ACTIONS(2924), + [anon_sym_asm] = ACTIONS(2924), + [anon_sym___asm__] = ACTIONS(2924), + [sym_number_literal] = ACTIONS(2926), + [anon_sym_L_SQUOTE] = ACTIONS(2926), + [anon_sym_u_SQUOTE] = ACTIONS(2926), + [anon_sym_U_SQUOTE] = ACTIONS(2926), + [anon_sym_u8_SQUOTE] = ACTIONS(2926), + [anon_sym_SQUOTE] = ACTIONS(2926), + [anon_sym_L_DQUOTE] = ACTIONS(2926), + [anon_sym_u_DQUOTE] = ACTIONS(2926), + [anon_sym_U_DQUOTE] = ACTIONS(2926), + [anon_sym_u8_DQUOTE] = ACTIONS(2926), + [anon_sym_DQUOTE] = ACTIONS(2926), + [sym_true] = ACTIONS(2924), + [sym_false] = ACTIONS(2924), + [anon_sym_NULL] = ACTIONS(2924), + [anon_sym_nullptr] = ACTIONS(2924), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2924), + [anon_sym_decltype] = ACTIONS(2924), + [anon_sym_virtual] = ACTIONS(2924), + [anon_sym_explicit] = ACTIONS(2924), + [anon_sym_typename] = ACTIONS(2924), + [anon_sym_template] = ACTIONS(2924), + [anon_sym_operator] = ACTIONS(2924), + [anon_sym_try] = ACTIONS(2924), + [anon_sym_delete] = ACTIONS(2924), + [anon_sym_throw] = ACTIONS(2924), + [anon_sym_namespace] = ACTIONS(2924), + [anon_sym_using] = ACTIONS(2924), + [anon_sym_static_assert] = ACTIONS(2924), + [anon_sym_concept] = ACTIONS(2924), + [anon_sym_co_return] = ACTIONS(2924), + [anon_sym_co_yield] = ACTIONS(2924), + [anon_sym_R_DQUOTE] = ACTIONS(2926), + [anon_sym_LR_DQUOTE] = ACTIONS(2926), + [anon_sym_uR_DQUOTE] = ACTIONS(2926), + [anon_sym_UR_DQUOTE] = ACTIONS(2926), + [anon_sym_u8R_DQUOTE] = ACTIONS(2926), + [anon_sym_co_await] = ACTIONS(2924), + [anon_sym_new] = ACTIONS(2924), + [anon_sym_requires] = ACTIONS(2924), + [sym_this] = ACTIONS(2924), + }, + [394] = { + [sym_identifier] = ACTIONS(2928), + [aux_sym_preproc_include_token1] = ACTIONS(2928), + [aux_sym_preproc_def_token1] = ACTIONS(2928), + [aux_sym_preproc_if_token1] = ACTIONS(2928), + [aux_sym_preproc_if_token2] = ACTIONS(2928), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2928), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2928), + [aux_sym_preproc_else_token1] = ACTIONS(2928), + [aux_sym_preproc_elif_token1] = ACTIONS(2928), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2928), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2928), + [sym_preproc_directive] = ACTIONS(2928), + [anon_sym_LPAREN2] = ACTIONS(2930), + [anon_sym_BANG] = ACTIONS(2930), + [anon_sym_TILDE] = ACTIONS(2930), + [anon_sym_DASH] = ACTIONS(2928), + [anon_sym_PLUS] = ACTIONS(2928), + [anon_sym_STAR] = ACTIONS(2930), + [anon_sym_AMP_AMP] = ACTIONS(2930), + [anon_sym_AMP] = ACTIONS(2928), + [anon_sym_SEMI] = ACTIONS(2930), + [anon_sym_typedef] = ACTIONS(2928), + [anon_sym_extern] = ACTIONS(2928), + [anon_sym___attribute__] = ACTIONS(2928), + [anon_sym_COLON_COLON] = ACTIONS(2930), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2930), + [anon_sym___declspec] = ACTIONS(2928), + [anon_sym___based] = ACTIONS(2928), + [anon_sym___cdecl] = ACTIONS(2928), + [anon_sym___clrcall] = ACTIONS(2928), + [anon_sym___stdcall] = ACTIONS(2928), + [anon_sym___fastcall] = ACTIONS(2928), + [anon_sym___thiscall] = ACTIONS(2928), + [anon_sym___vectorcall] = ACTIONS(2928), + [anon_sym_LBRACE] = ACTIONS(2930), + [anon_sym_LBRACK] = ACTIONS(2928), + [anon_sym_static] = ACTIONS(2928), + [anon_sym_register] = ACTIONS(2928), + [anon_sym_inline] = ACTIONS(2928), + [anon_sym_thread_local] = ACTIONS(2928), + [anon_sym_const] = ACTIONS(2928), + [anon_sym_constexpr] = ACTIONS(2928), + [anon_sym_volatile] = ACTIONS(2928), + [anon_sym_restrict] = ACTIONS(2928), + [anon_sym___restrict__] = ACTIONS(2928), + [anon_sym__Atomic] = ACTIONS(2928), + [anon_sym__Noreturn] = ACTIONS(2928), + [anon_sym_noreturn] = ACTIONS(2928), + [anon_sym_mutable] = ACTIONS(2928), + [anon_sym_constinit] = ACTIONS(2928), + [anon_sym_consteval] = ACTIONS(2928), + [anon_sym_signed] = ACTIONS(2928), + [anon_sym_unsigned] = ACTIONS(2928), + [anon_sym_long] = ACTIONS(2928), + [anon_sym_short] = ACTIONS(2928), + [sym_primitive_type] = ACTIONS(2928), + [anon_sym_enum] = ACTIONS(2928), + [anon_sym_class] = ACTIONS(2928), + [anon_sym_struct] = ACTIONS(2928), + [anon_sym_union] = ACTIONS(2928), + [anon_sym_if] = ACTIONS(2928), + [anon_sym_else] = ACTIONS(2928), + [anon_sym_switch] = ACTIONS(2928), + [anon_sym_case] = ACTIONS(2928), + [anon_sym_default] = ACTIONS(2928), + [anon_sym_while] = ACTIONS(2928), + [anon_sym_do] = ACTIONS(2928), + [anon_sym_for] = ACTIONS(2928), + [anon_sym_return] = ACTIONS(2928), + [anon_sym_break] = ACTIONS(2928), + [anon_sym_continue] = ACTIONS(2928), + [anon_sym_goto] = ACTIONS(2928), + [anon_sym_not] = ACTIONS(2928), + [anon_sym_compl] = ACTIONS(2928), + [anon_sym_DASH_DASH] = ACTIONS(2930), + [anon_sym_PLUS_PLUS] = ACTIONS(2930), + [anon_sym_sizeof] = ACTIONS(2928), + [anon_sym_offsetof] = ACTIONS(2928), + [anon_sym__Generic] = ACTIONS(2928), + [anon_sym_asm] = ACTIONS(2928), + [anon_sym___asm__] = ACTIONS(2928), + [sym_number_literal] = ACTIONS(2930), + [anon_sym_L_SQUOTE] = ACTIONS(2930), + [anon_sym_u_SQUOTE] = ACTIONS(2930), + [anon_sym_U_SQUOTE] = ACTIONS(2930), + [anon_sym_u8_SQUOTE] = ACTIONS(2930), + [anon_sym_SQUOTE] = ACTIONS(2930), + [anon_sym_L_DQUOTE] = ACTIONS(2930), + [anon_sym_u_DQUOTE] = ACTIONS(2930), + [anon_sym_U_DQUOTE] = ACTIONS(2930), + [anon_sym_u8_DQUOTE] = ACTIONS(2930), + [anon_sym_DQUOTE] = ACTIONS(2930), + [sym_true] = ACTIONS(2928), + [sym_false] = ACTIONS(2928), + [anon_sym_NULL] = ACTIONS(2928), + [anon_sym_nullptr] = ACTIONS(2928), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2928), + [anon_sym_decltype] = ACTIONS(2928), + [anon_sym_virtual] = ACTIONS(2928), + [anon_sym_explicit] = ACTIONS(2928), + [anon_sym_typename] = ACTIONS(2928), + [anon_sym_template] = ACTIONS(2928), + [anon_sym_operator] = ACTIONS(2928), + [anon_sym_try] = ACTIONS(2928), + [anon_sym_delete] = ACTIONS(2928), + [anon_sym_throw] = ACTIONS(2928), + [anon_sym_namespace] = ACTIONS(2928), + [anon_sym_using] = ACTIONS(2928), + [anon_sym_static_assert] = ACTIONS(2928), + [anon_sym_concept] = ACTIONS(2928), + [anon_sym_co_return] = ACTIONS(2928), + [anon_sym_co_yield] = ACTIONS(2928), + [anon_sym_R_DQUOTE] = ACTIONS(2930), + [anon_sym_LR_DQUOTE] = ACTIONS(2930), + [anon_sym_uR_DQUOTE] = ACTIONS(2930), + [anon_sym_UR_DQUOTE] = ACTIONS(2930), + [anon_sym_u8R_DQUOTE] = ACTIONS(2930), + [anon_sym_co_await] = ACTIONS(2928), + [anon_sym_new] = ACTIONS(2928), + [anon_sym_requires] = ACTIONS(2928), + [sym_this] = ACTIONS(2928), + }, + [395] = { + [sym_identifier] = ACTIONS(2932), + [aux_sym_preproc_include_token1] = ACTIONS(2932), + [aux_sym_preproc_def_token1] = ACTIONS(2932), + [aux_sym_preproc_if_token1] = ACTIONS(2932), + [aux_sym_preproc_if_token2] = ACTIONS(2932), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2932), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2932), + [aux_sym_preproc_else_token1] = ACTIONS(2932), + [aux_sym_preproc_elif_token1] = ACTIONS(2932), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2932), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2932), + [sym_preproc_directive] = ACTIONS(2932), + [anon_sym_LPAREN2] = ACTIONS(2934), + [anon_sym_BANG] = ACTIONS(2934), + [anon_sym_TILDE] = ACTIONS(2934), + [anon_sym_DASH] = ACTIONS(2932), + [anon_sym_PLUS] = ACTIONS(2932), + [anon_sym_STAR] = ACTIONS(2934), + [anon_sym_AMP_AMP] = ACTIONS(2934), + [anon_sym_AMP] = ACTIONS(2932), + [anon_sym_SEMI] = ACTIONS(2934), + [anon_sym_typedef] = ACTIONS(2932), + [anon_sym_extern] = ACTIONS(2932), + [anon_sym___attribute__] = ACTIONS(2932), + [anon_sym_COLON_COLON] = ACTIONS(2934), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2934), + [anon_sym___declspec] = ACTIONS(2932), + [anon_sym___based] = ACTIONS(2932), + [anon_sym___cdecl] = ACTIONS(2932), + [anon_sym___clrcall] = ACTIONS(2932), + [anon_sym___stdcall] = ACTIONS(2932), + [anon_sym___fastcall] = ACTIONS(2932), + [anon_sym___thiscall] = ACTIONS(2932), + [anon_sym___vectorcall] = ACTIONS(2932), + [anon_sym_LBRACE] = ACTIONS(2934), + [anon_sym_LBRACK] = ACTIONS(2932), + [anon_sym_static] = ACTIONS(2932), + [anon_sym_register] = ACTIONS(2932), + [anon_sym_inline] = ACTIONS(2932), + [anon_sym_thread_local] = ACTIONS(2932), + [anon_sym_const] = ACTIONS(2932), + [anon_sym_constexpr] = ACTIONS(2932), + [anon_sym_volatile] = ACTIONS(2932), + [anon_sym_restrict] = ACTIONS(2932), + [anon_sym___restrict__] = ACTIONS(2932), + [anon_sym__Atomic] = ACTIONS(2932), + [anon_sym__Noreturn] = ACTIONS(2932), + [anon_sym_noreturn] = ACTIONS(2932), + [anon_sym_mutable] = ACTIONS(2932), + [anon_sym_constinit] = ACTIONS(2932), + [anon_sym_consteval] = ACTIONS(2932), + [anon_sym_signed] = ACTIONS(2932), + [anon_sym_unsigned] = ACTIONS(2932), + [anon_sym_long] = ACTIONS(2932), + [anon_sym_short] = ACTIONS(2932), + [sym_primitive_type] = ACTIONS(2932), + [anon_sym_enum] = ACTIONS(2932), + [anon_sym_class] = ACTIONS(2932), + [anon_sym_struct] = ACTIONS(2932), + [anon_sym_union] = ACTIONS(2932), + [anon_sym_if] = ACTIONS(2932), + [anon_sym_else] = ACTIONS(2932), + [anon_sym_switch] = ACTIONS(2932), + [anon_sym_case] = ACTIONS(2932), + [anon_sym_default] = ACTIONS(2932), + [anon_sym_while] = ACTIONS(2932), + [anon_sym_do] = ACTIONS(2932), + [anon_sym_for] = ACTIONS(2932), + [anon_sym_return] = ACTIONS(2932), + [anon_sym_break] = ACTIONS(2932), + [anon_sym_continue] = ACTIONS(2932), + [anon_sym_goto] = ACTIONS(2932), + [anon_sym_not] = ACTIONS(2932), + [anon_sym_compl] = ACTIONS(2932), + [anon_sym_DASH_DASH] = ACTIONS(2934), + [anon_sym_PLUS_PLUS] = ACTIONS(2934), + [anon_sym_sizeof] = ACTIONS(2932), + [anon_sym_offsetof] = ACTIONS(2932), + [anon_sym__Generic] = ACTIONS(2932), + [anon_sym_asm] = ACTIONS(2932), + [anon_sym___asm__] = ACTIONS(2932), + [sym_number_literal] = ACTIONS(2934), + [anon_sym_L_SQUOTE] = ACTIONS(2934), + [anon_sym_u_SQUOTE] = ACTIONS(2934), + [anon_sym_U_SQUOTE] = ACTIONS(2934), + [anon_sym_u8_SQUOTE] = ACTIONS(2934), + [anon_sym_SQUOTE] = ACTIONS(2934), + [anon_sym_L_DQUOTE] = ACTIONS(2934), + [anon_sym_u_DQUOTE] = ACTIONS(2934), + [anon_sym_U_DQUOTE] = ACTIONS(2934), + [anon_sym_u8_DQUOTE] = ACTIONS(2934), + [anon_sym_DQUOTE] = ACTIONS(2934), + [sym_true] = ACTIONS(2932), + [sym_false] = ACTIONS(2932), + [anon_sym_NULL] = ACTIONS(2932), + [anon_sym_nullptr] = ACTIONS(2932), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2932), + [anon_sym_decltype] = ACTIONS(2932), + [anon_sym_virtual] = ACTIONS(2932), + [anon_sym_explicit] = ACTIONS(2932), + [anon_sym_typename] = ACTIONS(2932), + [anon_sym_template] = ACTIONS(2932), + [anon_sym_operator] = ACTIONS(2932), + [anon_sym_try] = ACTIONS(2932), + [anon_sym_delete] = ACTIONS(2932), + [anon_sym_throw] = ACTIONS(2932), + [anon_sym_namespace] = ACTIONS(2932), + [anon_sym_using] = ACTIONS(2932), + [anon_sym_static_assert] = ACTIONS(2932), + [anon_sym_concept] = ACTIONS(2932), + [anon_sym_co_return] = ACTIONS(2932), + [anon_sym_co_yield] = ACTIONS(2932), + [anon_sym_R_DQUOTE] = ACTIONS(2934), + [anon_sym_LR_DQUOTE] = ACTIONS(2934), + [anon_sym_uR_DQUOTE] = ACTIONS(2934), + [anon_sym_UR_DQUOTE] = ACTIONS(2934), + [anon_sym_u8R_DQUOTE] = ACTIONS(2934), + [anon_sym_co_await] = ACTIONS(2932), + [anon_sym_new] = ACTIONS(2932), + [anon_sym_requires] = ACTIONS(2932), + [sym_this] = ACTIONS(2932), + }, + [396] = { + [sym_identifier] = ACTIONS(2936), + [aux_sym_preproc_include_token1] = ACTIONS(2936), + [aux_sym_preproc_def_token1] = ACTIONS(2936), + [aux_sym_preproc_if_token1] = ACTIONS(2936), + [aux_sym_preproc_if_token2] = ACTIONS(2936), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2936), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2936), + [aux_sym_preproc_else_token1] = ACTIONS(2936), + [aux_sym_preproc_elif_token1] = ACTIONS(2936), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2936), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2936), + [sym_preproc_directive] = ACTIONS(2936), + [anon_sym_LPAREN2] = ACTIONS(2938), + [anon_sym_BANG] = ACTIONS(2938), + [anon_sym_TILDE] = ACTIONS(2938), + [anon_sym_DASH] = ACTIONS(2936), + [anon_sym_PLUS] = ACTIONS(2936), + [anon_sym_STAR] = ACTIONS(2938), + [anon_sym_AMP_AMP] = ACTIONS(2938), + [anon_sym_AMP] = ACTIONS(2936), + [anon_sym_SEMI] = ACTIONS(2938), + [anon_sym_typedef] = ACTIONS(2936), + [anon_sym_extern] = ACTIONS(2936), + [anon_sym___attribute__] = ACTIONS(2936), + [anon_sym_COLON_COLON] = ACTIONS(2938), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2938), + [anon_sym___declspec] = ACTIONS(2936), + [anon_sym___based] = ACTIONS(2936), + [anon_sym___cdecl] = ACTIONS(2936), + [anon_sym___clrcall] = ACTIONS(2936), + [anon_sym___stdcall] = ACTIONS(2936), + [anon_sym___fastcall] = ACTIONS(2936), + [anon_sym___thiscall] = ACTIONS(2936), + [anon_sym___vectorcall] = ACTIONS(2936), + [anon_sym_LBRACE] = ACTIONS(2938), + [anon_sym_LBRACK] = ACTIONS(2936), + [anon_sym_static] = ACTIONS(2936), + [anon_sym_register] = ACTIONS(2936), + [anon_sym_inline] = ACTIONS(2936), + [anon_sym_thread_local] = ACTIONS(2936), + [anon_sym_const] = ACTIONS(2936), + [anon_sym_constexpr] = ACTIONS(2936), + [anon_sym_volatile] = ACTIONS(2936), + [anon_sym_restrict] = ACTIONS(2936), + [anon_sym___restrict__] = ACTIONS(2936), + [anon_sym__Atomic] = ACTIONS(2936), + [anon_sym__Noreturn] = ACTIONS(2936), + [anon_sym_noreturn] = ACTIONS(2936), + [anon_sym_mutable] = ACTIONS(2936), + [anon_sym_constinit] = ACTIONS(2936), + [anon_sym_consteval] = ACTIONS(2936), + [anon_sym_signed] = ACTIONS(2936), + [anon_sym_unsigned] = ACTIONS(2936), + [anon_sym_long] = ACTIONS(2936), + [anon_sym_short] = ACTIONS(2936), + [sym_primitive_type] = ACTIONS(2936), + [anon_sym_enum] = ACTIONS(2936), + [anon_sym_class] = ACTIONS(2936), + [anon_sym_struct] = ACTIONS(2936), + [anon_sym_union] = ACTIONS(2936), + [anon_sym_if] = ACTIONS(2936), + [anon_sym_else] = ACTIONS(2936), + [anon_sym_switch] = ACTIONS(2936), + [anon_sym_case] = ACTIONS(2936), + [anon_sym_default] = ACTIONS(2936), + [anon_sym_while] = ACTIONS(2936), + [anon_sym_do] = ACTIONS(2936), + [anon_sym_for] = ACTIONS(2936), + [anon_sym_return] = ACTIONS(2936), + [anon_sym_break] = ACTIONS(2936), + [anon_sym_continue] = ACTIONS(2936), + [anon_sym_goto] = ACTIONS(2936), + [anon_sym_not] = ACTIONS(2936), + [anon_sym_compl] = ACTIONS(2936), + [anon_sym_DASH_DASH] = ACTIONS(2938), + [anon_sym_PLUS_PLUS] = ACTIONS(2938), + [anon_sym_sizeof] = ACTIONS(2936), + [anon_sym_offsetof] = ACTIONS(2936), + [anon_sym__Generic] = ACTIONS(2936), + [anon_sym_asm] = ACTIONS(2936), + [anon_sym___asm__] = ACTIONS(2936), + [sym_number_literal] = ACTIONS(2938), + [anon_sym_L_SQUOTE] = ACTIONS(2938), + [anon_sym_u_SQUOTE] = ACTIONS(2938), + [anon_sym_U_SQUOTE] = ACTIONS(2938), + [anon_sym_u8_SQUOTE] = ACTIONS(2938), + [anon_sym_SQUOTE] = ACTIONS(2938), + [anon_sym_L_DQUOTE] = ACTIONS(2938), + [anon_sym_u_DQUOTE] = ACTIONS(2938), + [anon_sym_U_DQUOTE] = ACTIONS(2938), + [anon_sym_u8_DQUOTE] = ACTIONS(2938), + [anon_sym_DQUOTE] = ACTIONS(2938), + [sym_true] = ACTIONS(2936), + [sym_false] = ACTIONS(2936), + [anon_sym_NULL] = ACTIONS(2936), + [anon_sym_nullptr] = ACTIONS(2936), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2936), + [anon_sym_decltype] = ACTIONS(2936), + [anon_sym_virtual] = ACTIONS(2936), + [anon_sym_explicit] = ACTIONS(2936), + [anon_sym_typename] = ACTIONS(2936), + [anon_sym_template] = ACTIONS(2936), + [anon_sym_operator] = ACTIONS(2936), + [anon_sym_try] = ACTIONS(2936), + [anon_sym_delete] = ACTIONS(2936), + [anon_sym_throw] = ACTIONS(2936), + [anon_sym_namespace] = ACTIONS(2936), + [anon_sym_using] = ACTIONS(2936), + [anon_sym_static_assert] = ACTIONS(2936), + [anon_sym_concept] = ACTIONS(2936), + [anon_sym_co_return] = ACTIONS(2936), + [anon_sym_co_yield] = ACTIONS(2936), + [anon_sym_R_DQUOTE] = ACTIONS(2938), + [anon_sym_LR_DQUOTE] = ACTIONS(2938), + [anon_sym_uR_DQUOTE] = ACTIONS(2938), + [anon_sym_UR_DQUOTE] = ACTIONS(2938), + [anon_sym_u8R_DQUOTE] = ACTIONS(2938), + [anon_sym_co_await] = ACTIONS(2936), + [anon_sym_new] = ACTIONS(2936), + [anon_sym_requires] = ACTIONS(2936), + [sym_this] = ACTIONS(2936), + }, + [397] = { + [sym_identifier] = ACTIONS(2940), + [aux_sym_preproc_include_token1] = ACTIONS(2940), + [aux_sym_preproc_def_token1] = ACTIONS(2940), + [aux_sym_preproc_if_token1] = ACTIONS(2940), + [aux_sym_preproc_if_token2] = ACTIONS(2940), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2940), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2940), + [aux_sym_preproc_else_token1] = ACTIONS(2940), + [aux_sym_preproc_elif_token1] = ACTIONS(2940), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2940), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2940), + [sym_preproc_directive] = ACTIONS(2940), + [anon_sym_LPAREN2] = ACTIONS(2942), + [anon_sym_BANG] = ACTIONS(2942), + [anon_sym_TILDE] = ACTIONS(2942), + [anon_sym_DASH] = ACTIONS(2940), + [anon_sym_PLUS] = ACTIONS(2940), + [anon_sym_STAR] = ACTIONS(2942), + [anon_sym_AMP_AMP] = ACTIONS(2942), + [anon_sym_AMP] = ACTIONS(2940), + [anon_sym_SEMI] = ACTIONS(2942), + [anon_sym_typedef] = ACTIONS(2940), + [anon_sym_extern] = ACTIONS(2940), + [anon_sym___attribute__] = ACTIONS(2940), + [anon_sym_COLON_COLON] = ACTIONS(2942), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2942), + [anon_sym___declspec] = ACTIONS(2940), + [anon_sym___based] = ACTIONS(2940), + [anon_sym___cdecl] = ACTIONS(2940), + [anon_sym___clrcall] = ACTIONS(2940), + [anon_sym___stdcall] = ACTIONS(2940), + [anon_sym___fastcall] = ACTIONS(2940), + [anon_sym___thiscall] = ACTIONS(2940), + [anon_sym___vectorcall] = ACTIONS(2940), + [anon_sym_LBRACE] = ACTIONS(2942), + [anon_sym_LBRACK] = ACTIONS(2940), + [anon_sym_static] = ACTIONS(2940), + [anon_sym_register] = ACTIONS(2940), + [anon_sym_inline] = ACTIONS(2940), + [anon_sym_thread_local] = ACTIONS(2940), + [anon_sym_const] = ACTIONS(2940), + [anon_sym_constexpr] = ACTIONS(2940), + [anon_sym_volatile] = ACTIONS(2940), + [anon_sym_restrict] = ACTIONS(2940), + [anon_sym___restrict__] = ACTIONS(2940), + [anon_sym__Atomic] = ACTIONS(2940), + [anon_sym__Noreturn] = ACTIONS(2940), + [anon_sym_noreturn] = ACTIONS(2940), + [anon_sym_mutable] = ACTIONS(2940), + [anon_sym_constinit] = ACTIONS(2940), + [anon_sym_consteval] = ACTIONS(2940), + [anon_sym_signed] = ACTIONS(2940), + [anon_sym_unsigned] = ACTIONS(2940), + [anon_sym_long] = ACTIONS(2940), + [anon_sym_short] = ACTIONS(2940), + [sym_primitive_type] = ACTIONS(2940), + [anon_sym_enum] = ACTIONS(2940), + [anon_sym_class] = ACTIONS(2940), + [anon_sym_struct] = ACTIONS(2940), + [anon_sym_union] = ACTIONS(2940), + [anon_sym_if] = ACTIONS(2940), + [anon_sym_else] = ACTIONS(2940), + [anon_sym_switch] = ACTIONS(2940), + [anon_sym_case] = ACTIONS(2940), + [anon_sym_default] = ACTIONS(2940), + [anon_sym_while] = ACTIONS(2940), + [anon_sym_do] = ACTIONS(2940), + [anon_sym_for] = ACTIONS(2940), + [anon_sym_return] = ACTIONS(2940), + [anon_sym_break] = ACTIONS(2940), + [anon_sym_continue] = ACTIONS(2940), + [anon_sym_goto] = ACTIONS(2940), + [anon_sym_not] = ACTIONS(2940), + [anon_sym_compl] = ACTIONS(2940), + [anon_sym_DASH_DASH] = ACTIONS(2942), + [anon_sym_PLUS_PLUS] = ACTIONS(2942), + [anon_sym_sizeof] = ACTIONS(2940), + [anon_sym_offsetof] = ACTIONS(2940), + [anon_sym__Generic] = ACTIONS(2940), + [anon_sym_asm] = ACTIONS(2940), + [anon_sym___asm__] = ACTIONS(2940), + [sym_number_literal] = ACTIONS(2942), + [anon_sym_L_SQUOTE] = ACTIONS(2942), + [anon_sym_u_SQUOTE] = ACTIONS(2942), + [anon_sym_U_SQUOTE] = ACTIONS(2942), + [anon_sym_u8_SQUOTE] = ACTIONS(2942), + [anon_sym_SQUOTE] = ACTIONS(2942), + [anon_sym_L_DQUOTE] = ACTIONS(2942), + [anon_sym_u_DQUOTE] = ACTIONS(2942), + [anon_sym_U_DQUOTE] = ACTIONS(2942), + [anon_sym_u8_DQUOTE] = ACTIONS(2942), + [anon_sym_DQUOTE] = ACTIONS(2942), + [sym_true] = ACTIONS(2940), + [sym_false] = ACTIONS(2940), + [anon_sym_NULL] = ACTIONS(2940), + [anon_sym_nullptr] = ACTIONS(2940), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2940), + [anon_sym_decltype] = ACTIONS(2940), + [anon_sym_virtual] = ACTIONS(2940), + [anon_sym_explicit] = ACTIONS(2940), + [anon_sym_typename] = ACTIONS(2940), + [anon_sym_template] = ACTIONS(2940), + [anon_sym_operator] = ACTIONS(2940), + [anon_sym_try] = ACTIONS(2940), + [anon_sym_delete] = ACTIONS(2940), + [anon_sym_throw] = ACTIONS(2940), + [anon_sym_namespace] = ACTIONS(2940), + [anon_sym_using] = ACTIONS(2940), + [anon_sym_static_assert] = ACTIONS(2940), + [anon_sym_concept] = ACTIONS(2940), + [anon_sym_co_return] = ACTIONS(2940), + [anon_sym_co_yield] = ACTIONS(2940), + [anon_sym_R_DQUOTE] = ACTIONS(2942), + [anon_sym_LR_DQUOTE] = ACTIONS(2942), + [anon_sym_uR_DQUOTE] = ACTIONS(2942), + [anon_sym_UR_DQUOTE] = ACTIONS(2942), + [anon_sym_u8R_DQUOTE] = ACTIONS(2942), + [anon_sym_co_await] = ACTIONS(2940), + [anon_sym_new] = ACTIONS(2940), + [anon_sym_requires] = ACTIONS(2940), + [sym_this] = ACTIONS(2940), + }, + [398] = { + [sym_catch_clause] = STATE(384), + [aux_sym_constructor_try_statement_repeat1] = STATE(384), + [sym_identifier] = ACTIONS(2857), + [aux_sym_preproc_include_token1] = ACTIONS(2857), + [aux_sym_preproc_def_token1] = ACTIONS(2857), + [aux_sym_preproc_if_token1] = ACTIONS(2857), + [aux_sym_preproc_if_token2] = ACTIONS(2857), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2857), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2857), + [aux_sym_preproc_else_token1] = ACTIONS(2857), + [aux_sym_preproc_elif_token1] = ACTIONS(2857), + [sym_preproc_directive] = ACTIONS(2857), + [anon_sym_LPAREN2] = ACTIONS(2859), + [anon_sym_BANG] = ACTIONS(2859), + [anon_sym_TILDE] = ACTIONS(2859), + [anon_sym_DASH] = ACTIONS(2857), + [anon_sym_PLUS] = ACTIONS(2857), + [anon_sym_STAR] = ACTIONS(2859), + [anon_sym_AMP_AMP] = ACTIONS(2859), + [anon_sym_AMP] = ACTIONS(2857), + [anon_sym_SEMI] = ACTIONS(2859), + [anon_sym_typedef] = ACTIONS(2857), + [anon_sym_extern] = ACTIONS(2857), + [anon_sym___attribute__] = ACTIONS(2857), + [anon_sym_COLON_COLON] = ACTIONS(2859), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2859), + [anon_sym___declspec] = ACTIONS(2857), + [anon_sym___based] = ACTIONS(2857), + [anon_sym___cdecl] = ACTIONS(2857), + [anon_sym___clrcall] = ACTIONS(2857), + [anon_sym___stdcall] = ACTIONS(2857), + [anon_sym___fastcall] = ACTIONS(2857), + [anon_sym___thiscall] = ACTIONS(2857), + [anon_sym___vectorcall] = ACTIONS(2857), + [anon_sym_LBRACE] = ACTIONS(2859), + [anon_sym_LBRACK] = ACTIONS(2857), + [anon_sym_static] = ACTIONS(2857), + [anon_sym_register] = ACTIONS(2857), + [anon_sym_inline] = ACTIONS(2857), + [anon_sym_thread_local] = ACTIONS(2857), + [anon_sym_const] = ACTIONS(2857), + [anon_sym_constexpr] = ACTIONS(2857), + [anon_sym_volatile] = ACTIONS(2857), + [anon_sym_restrict] = ACTIONS(2857), + [anon_sym___restrict__] = ACTIONS(2857), + [anon_sym__Atomic] = ACTIONS(2857), + [anon_sym__Noreturn] = ACTIONS(2857), + [anon_sym_noreturn] = ACTIONS(2857), + [anon_sym_mutable] = ACTIONS(2857), + [anon_sym_constinit] = ACTIONS(2857), + [anon_sym_consteval] = ACTIONS(2857), + [anon_sym_signed] = ACTIONS(2857), + [anon_sym_unsigned] = ACTIONS(2857), + [anon_sym_long] = ACTIONS(2857), + [anon_sym_short] = ACTIONS(2857), + [sym_primitive_type] = ACTIONS(2857), + [anon_sym_enum] = ACTIONS(2857), + [anon_sym_class] = ACTIONS(2857), + [anon_sym_struct] = ACTIONS(2857), + [anon_sym_union] = ACTIONS(2857), + [anon_sym_if] = ACTIONS(2857), + [anon_sym_switch] = ACTIONS(2857), + [anon_sym_case] = ACTIONS(2857), + [anon_sym_default] = ACTIONS(2857), + [anon_sym_while] = ACTIONS(2857), + [anon_sym_do] = ACTIONS(2857), + [anon_sym_for] = ACTIONS(2857), + [anon_sym_return] = ACTIONS(2857), + [anon_sym_break] = ACTIONS(2857), + [anon_sym_continue] = ACTIONS(2857), + [anon_sym_goto] = ACTIONS(2857), + [anon_sym_not] = ACTIONS(2857), + [anon_sym_compl] = ACTIONS(2857), + [anon_sym_DASH_DASH] = ACTIONS(2859), + [anon_sym_PLUS_PLUS] = ACTIONS(2859), + [anon_sym_sizeof] = ACTIONS(2857), + [anon_sym_offsetof] = ACTIONS(2857), + [anon_sym__Generic] = ACTIONS(2857), + [anon_sym_asm] = ACTIONS(2857), + [anon_sym___asm__] = ACTIONS(2857), + [sym_number_literal] = ACTIONS(2859), + [anon_sym_L_SQUOTE] = ACTIONS(2859), + [anon_sym_u_SQUOTE] = ACTIONS(2859), + [anon_sym_U_SQUOTE] = ACTIONS(2859), + [anon_sym_u8_SQUOTE] = ACTIONS(2859), + [anon_sym_SQUOTE] = ACTIONS(2859), + [anon_sym_L_DQUOTE] = ACTIONS(2859), + [anon_sym_u_DQUOTE] = ACTIONS(2859), + [anon_sym_U_DQUOTE] = ACTIONS(2859), + [anon_sym_u8_DQUOTE] = ACTIONS(2859), + [anon_sym_DQUOTE] = ACTIONS(2859), + [sym_true] = ACTIONS(2857), + [sym_false] = ACTIONS(2857), + [anon_sym_NULL] = ACTIONS(2857), + [anon_sym_nullptr] = ACTIONS(2857), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2857), + [anon_sym_decltype] = ACTIONS(2857), + [anon_sym_virtual] = ACTIONS(2857), + [anon_sym_explicit] = ACTIONS(2857), + [anon_sym_typename] = ACTIONS(2857), + [anon_sym_template] = ACTIONS(2857), + [anon_sym_operator] = ACTIONS(2857), + [anon_sym_try] = ACTIONS(2857), + [anon_sym_delete] = ACTIONS(2857), + [anon_sym_throw] = ACTIONS(2857), + [anon_sym_namespace] = ACTIONS(2857), + [anon_sym_using] = ACTIONS(2857), + [anon_sym_static_assert] = ACTIONS(2857), + [anon_sym_concept] = ACTIONS(2857), + [anon_sym_co_return] = ACTIONS(2857), + [anon_sym_co_yield] = ACTIONS(2857), + [anon_sym_catch] = ACTIONS(2898), + [anon_sym_R_DQUOTE] = ACTIONS(2859), + [anon_sym_LR_DQUOTE] = ACTIONS(2859), + [anon_sym_uR_DQUOTE] = ACTIONS(2859), + [anon_sym_UR_DQUOTE] = ACTIONS(2859), + [anon_sym_u8R_DQUOTE] = ACTIONS(2859), + [anon_sym_co_await] = ACTIONS(2857), + [anon_sym_new] = ACTIONS(2857), + [anon_sym_requires] = ACTIONS(2857), + [sym_this] = ACTIONS(2857), + }, + [399] = { + [sym_identifier] = ACTIONS(2944), + [aux_sym_preproc_include_token1] = ACTIONS(2944), + [aux_sym_preproc_def_token1] = ACTIONS(2944), + [aux_sym_preproc_if_token1] = ACTIONS(2944), + [aux_sym_preproc_if_token2] = ACTIONS(2944), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2944), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2944), + [aux_sym_preproc_else_token1] = ACTIONS(2944), + [aux_sym_preproc_elif_token1] = ACTIONS(2944), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2944), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2944), + [sym_preproc_directive] = ACTIONS(2944), + [anon_sym_LPAREN2] = ACTIONS(2946), + [anon_sym_BANG] = ACTIONS(2946), + [anon_sym_TILDE] = ACTIONS(2946), + [anon_sym_DASH] = ACTIONS(2944), + [anon_sym_PLUS] = ACTIONS(2944), + [anon_sym_STAR] = ACTIONS(2946), + [anon_sym_AMP_AMP] = ACTIONS(2946), + [anon_sym_AMP] = ACTIONS(2944), + [anon_sym_SEMI] = ACTIONS(2946), + [anon_sym_typedef] = ACTIONS(2944), + [anon_sym_extern] = ACTIONS(2944), + [anon_sym___attribute__] = ACTIONS(2944), + [anon_sym_COLON_COLON] = ACTIONS(2946), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2946), + [anon_sym___declspec] = ACTIONS(2944), + [anon_sym___based] = ACTIONS(2944), + [anon_sym___cdecl] = ACTIONS(2944), + [anon_sym___clrcall] = ACTIONS(2944), + [anon_sym___stdcall] = ACTIONS(2944), + [anon_sym___fastcall] = ACTIONS(2944), + [anon_sym___thiscall] = ACTIONS(2944), + [anon_sym___vectorcall] = ACTIONS(2944), + [anon_sym_LBRACE] = ACTIONS(2946), + [anon_sym_LBRACK] = ACTIONS(2944), + [anon_sym_static] = ACTIONS(2944), + [anon_sym_register] = ACTIONS(2944), + [anon_sym_inline] = ACTIONS(2944), + [anon_sym_thread_local] = ACTIONS(2944), + [anon_sym_const] = ACTIONS(2944), + [anon_sym_constexpr] = ACTIONS(2944), + [anon_sym_volatile] = ACTIONS(2944), + [anon_sym_restrict] = ACTIONS(2944), + [anon_sym___restrict__] = ACTIONS(2944), + [anon_sym__Atomic] = ACTIONS(2944), + [anon_sym__Noreturn] = ACTIONS(2944), + [anon_sym_noreturn] = ACTIONS(2944), + [anon_sym_mutable] = ACTIONS(2944), + [anon_sym_constinit] = ACTIONS(2944), + [anon_sym_consteval] = ACTIONS(2944), + [anon_sym_signed] = ACTIONS(2944), + [anon_sym_unsigned] = ACTIONS(2944), + [anon_sym_long] = ACTIONS(2944), + [anon_sym_short] = ACTIONS(2944), + [sym_primitive_type] = ACTIONS(2944), + [anon_sym_enum] = ACTIONS(2944), + [anon_sym_class] = ACTIONS(2944), + [anon_sym_struct] = ACTIONS(2944), + [anon_sym_union] = ACTIONS(2944), + [anon_sym_if] = ACTIONS(2944), + [anon_sym_else] = ACTIONS(2944), + [anon_sym_switch] = ACTIONS(2944), + [anon_sym_case] = ACTIONS(2944), + [anon_sym_default] = ACTIONS(2944), + [anon_sym_while] = ACTIONS(2944), + [anon_sym_do] = ACTIONS(2944), + [anon_sym_for] = ACTIONS(2944), + [anon_sym_return] = ACTIONS(2944), + [anon_sym_break] = ACTIONS(2944), + [anon_sym_continue] = ACTIONS(2944), + [anon_sym_goto] = ACTIONS(2944), + [anon_sym_not] = ACTIONS(2944), + [anon_sym_compl] = ACTIONS(2944), + [anon_sym_DASH_DASH] = ACTIONS(2946), + [anon_sym_PLUS_PLUS] = ACTIONS(2946), + [anon_sym_sizeof] = ACTIONS(2944), + [anon_sym_offsetof] = ACTIONS(2944), + [anon_sym__Generic] = ACTIONS(2944), + [anon_sym_asm] = ACTIONS(2944), + [anon_sym___asm__] = ACTIONS(2944), + [sym_number_literal] = ACTIONS(2946), + [anon_sym_L_SQUOTE] = ACTIONS(2946), + [anon_sym_u_SQUOTE] = ACTIONS(2946), + [anon_sym_U_SQUOTE] = ACTIONS(2946), + [anon_sym_u8_SQUOTE] = ACTIONS(2946), + [anon_sym_SQUOTE] = ACTIONS(2946), + [anon_sym_L_DQUOTE] = ACTIONS(2946), + [anon_sym_u_DQUOTE] = ACTIONS(2946), + [anon_sym_U_DQUOTE] = ACTIONS(2946), + [anon_sym_u8_DQUOTE] = ACTIONS(2946), + [anon_sym_DQUOTE] = ACTIONS(2946), + [sym_true] = ACTIONS(2944), + [sym_false] = ACTIONS(2944), + [anon_sym_NULL] = ACTIONS(2944), + [anon_sym_nullptr] = ACTIONS(2944), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2944), + [anon_sym_decltype] = ACTIONS(2944), + [anon_sym_virtual] = ACTIONS(2944), + [anon_sym_explicit] = ACTIONS(2944), + [anon_sym_typename] = ACTIONS(2944), + [anon_sym_template] = ACTIONS(2944), + [anon_sym_operator] = ACTIONS(2944), + [anon_sym_try] = ACTIONS(2944), + [anon_sym_delete] = ACTIONS(2944), + [anon_sym_throw] = ACTIONS(2944), + [anon_sym_namespace] = ACTIONS(2944), + [anon_sym_using] = ACTIONS(2944), + [anon_sym_static_assert] = ACTIONS(2944), + [anon_sym_concept] = ACTIONS(2944), + [anon_sym_co_return] = ACTIONS(2944), + [anon_sym_co_yield] = ACTIONS(2944), + [anon_sym_R_DQUOTE] = ACTIONS(2946), + [anon_sym_LR_DQUOTE] = ACTIONS(2946), + [anon_sym_uR_DQUOTE] = ACTIONS(2946), + [anon_sym_UR_DQUOTE] = ACTIONS(2946), + [anon_sym_u8R_DQUOTE] = ACTIONS(2946), + [anon_sym_co_await] = ACTIONS(2944), + [anon_sym_new] = ACTIONS(2944), + [anon_sym_requires] = ACTIONS(2944), + [sym_this] = ACTIONS(2944), }, [400] = { - [sym_identifier] = ACTIONS(2462), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2464), - [anon_sym_AMP] = ACTIONS(2462), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_explicit] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_operator] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_namespace] = ACTIONS(2462), - [anon_sym_using] = ACTIONS(2462), - [anon_sym_static_assert] = ACTIONS(2462), - [anon_sym_concept] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_identifier] = ACTIONS(2948), + [aux_sym_preproc_include_token1] = ACTIONS(2948), + [aux_sym_preproc_def_token1] = ACTIONS(2948), + [aux_sym_preproc_if_token1] = ACTIONS(2948), + [aux_sym_preproc_if_token2] = ACTIONS(2948), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2948), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2948), + [aux_sym_preproc_else_token1] = ACTIONS(2948), + [aux_sym_preproc_elif_token1] = ACTIONS(2948), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2948), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2948), + [sym_preproc_directive] = ACTIONS(2948), + [anon_sym_LPAREN2] = ACTIONS(2950), + [anon_sym_BANG] = ACTIONS(2950), + [anon_sym_TILDE] = ACTIONS(2950), + [anon_sym_DASH] = ACTIONS(2948), + [anon_sym_PLUS] = ACTIONS(2948), + [anon_sym_STAR] = ACTIONS(2950), + [anon_sym_AMP_AMP] = ACTIONS(2950), + [anon_sym_AMP] = ACTIONS(2948), + [anon_sym_SEMI] = ACTIONS(2950), + [anon_sym_typedef] = ACTIONS(2948), + [anon_sym_extern] = ACTIONS(2948), + [anon_sym___attribute__] = ACTIONS(2948), + [anon_sym_COLON_COLON] = ACTIONS(2950), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2950), + [anon_sym___declspec] = ACTIONS(2948), + [anon_sym___based] = ACTIONS(2948), + [anon_sym___cdecl] = ACTIONS(2948), + [anon_sym___clrcall] = ACTIONS(2948), + [anon_sym___stdcall] = ACTIONS(2948), + [anon_sym___fastcall] = ACTIONS(2948), + [anon_sym___thiscall] = ACTIONS(2948), + [anon_sym___vectorcall] = ACTIONS(2948), + [anon_sym_LBRACE] = ACTIONS(2950), + [anon_sym_LBRACK] = ACTIONS(2948), + [anon_sym_static] = ACTIONS(2948), + [anon_sym_register] = ACTIONS(2948), + [anon_sym_inline] = ACTIONS(2948), + [anon_sym_thread_local] = ACTIONS(2948), + [anon_sym_const] = ACTIONS(2948), + [anon_sym_constexpr] = ACTIONS(2948), + [anon_sym_volatile] = ACTIONS(2948), + [anon_sym_restrict] = ACTIONS(2948), + [anon_sym___restrict__] = ACTIONS(2948), + [anon_sym__Atomic] = ACTIONS(2948), + [anon_sym__Noreturn] = ACTIONS(2948), + [anon_sym_noreturn] = ACTIONS(2948), + [anon_sym_mutable] = ACTIONS(2948), + [anon_sym_constinit] = ACTIONS(2948), + [anon_sym_consteval] = ACTIONS(2948), + [anon_sym_signed] = ACTIONS(2948), + [anon_sym_unsigned] = ACTIONS(2948), + [anon_sym_long] = ACTIONS(2948), + [anon_sym_short] = ACTIONS(2948), + [sym_primitive_type] = ACTIONS(2948), + [anon_sym_enum] = ACTIONS(2948), + [anon_sym_class] = ACTIONS(2948), + [anon_sym_struct] = ACTIONS(2948), + [anon_sym_union] = ACTIONS(2948), + [anon_sym_if] = ACTIONS(2948), + [anon_sym_else] = ACTIONS(2948), + [anon_sym_switch] = ACTIONS(2948), + [anon_sym_case] = ACTIONS(2948), + [anon_sym_default] = ACTIONS(2948), + [anon_sym_while] = ACTIONS(2948), + [anon_sym_do] = ACTIONS(2948), + [anon_sym_for] = ACTIONS(2948), + [anon_sym_return] = ACTIONS(2948), + [anon_sym_break] = ACTIONS(2948), + [anon_sym_continue] = ACTIONS(2948), + [anon_sym_goto] = ACTIONS(2948), + [anon_sym_not] = ACTIONS(2948), + [anon_sym_compl] = ACTIONS(2948), + [anon_sym_DASH_DASH] = ACTIONS(2950), + [anon_sym_PLUS_PLUS] = ACTIONS(2950), + [anon_sym_sizeof] = ACTIONS(2948), + [anon_sym_offsetof] = ACTIONS(2948), + [anon_sym__Generic] = ACTIONS(2948), + [anon_sym_asm] = ACTIONS(2948), + [anon_sym___asm__] = ACTIONS(2948), + [sym_number_literal] = ACTIONS(2950), + [anon_sym_L_SQUOTE] = ACTIONS(2950), + [anon_sym_u_SQUOTE] = ACTIONS(2950), + [anon_sym_U_SQUOTE] = ACTIONS(2950), + [anon_sym_u8_SQUOTE] = ACTIONS(2950), + [anon_sym_SQUOTE] = ACTIONS(2950), + [anon_sym_L_DQUOTE] = ACTIONS(2950), + [anon_sym_u_DQUOTE] = ACTIONS(2950), + [anon_sym_U_DQUOTE] = ACTIONS(2950), + [anon_sym_u8_DQUOTE] = ACTIONS(2950), + [anon_sym_DQUOTE] = ACTIONS(2950), + [sym_true] = ACTIONS(2948), + [sym_false] = ACTIONS(2948), + [anon_sym_NULL] = ACTIONS(2948), + [anon_sym_nullptr] = ACTIONS(2948), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2948), + [anon_sym_decltype] = ACTIONS(2948), + [anon_sym_virtual] = ACTIONS(2948), + [anon_sym_explicit] = ACTIONS(2948), + [anon_sym_typename] = ACTIONS(2948), + [anon_sym_template] = ACTIONS(2948), + [anon_sym_operator] = ACTIONS(2948), + [anon_sym_try] = ACTIONS(2948), + [anon_sym_delete] = ACTIONS(2948), + [anon_sym_throw] = ACTIONS(2948), + [anon_sym_namespace] = ACTIONS(2948), + [anon_sym_using] = ACTIONS(2948), + [anon_sym_static_assert] = ACTIONS(2948), + [anon_sym_concept] = ACTIONS(2948), + [anon_sym_co_return] = ACTIONS(2948), + [anon_sym_co_yield] = ACTIONS(2948), + [anon_sym_R_DQUOTE] = ACTIONS(2950), + [anon_sym_LR_DQUOTE] = ACTIONS(2950), + [anon_sym_uR_DQUOTE] = ACTIONS(2950), + [anon_sym_UR_DQUOTE] = ACTIONS(2950), + [anon_sym_u8R_DQUOTE] = ACTIONS(2950), + [anon_sym_co_await] = ACTIONS(2948), + [anon_sym_new] = ACTIONS(2948), + [anon_sym_requires] = ACTIONS(2948), + [sym_this] = ACTIONS(2948), }, [401] = { - [sym_identifier] = ACTIONS(2462), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2464), - [anon_sym_AMP] = ACTIONS(2462), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_explicit] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_operator] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_namespace] = ACTIONS(2462), - [anon_sym_using] = ACTIONS(2462), - [anon_sym_static_assert] = ACTIONS(2462), - [anon_sym_concept] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_identifier] = ACTIONS(2952), + [aux_sym_preproc_include_token1] = ACTIONS(2952), + [aux_sym_preproc_def_token1] = ACTIONS(2952), + [aux_sym_preproc_if_token1] = ACTIONS(2952), + [aux_sym_preproc_if_token2] = ACTIONS(2952), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2952), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2952), + [aux_sym_preproc_else_token1] = ACTIONS(2952), + [aux_sym_preproc_elif_token1] = ACTIONS(2952), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2952), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2952), + [sym_preproc_directive] = ACTIONS(2952), + [anon_sym_LPAREN2] = ACTIONS(2954), + [anon_sym_BANG] = ACTIONS(2954), + [anon_sym_TILDE] = ACTIONS(2954), + [anon_sym_DASH] = ACTIONS(2952), + [anon_sym_PLUS] = ACTIONS(2952), + [anon_sym_STAR] = ACTIONS(2954), + [anon_sym_AMP_AMP] = ACTIONS(2954), + [anon_sym_AMP] = ACTIONS(2952), + [anon_sym_SEMI] = ACTIONS(2954), + [anon_sym_typedef] = ACTIONS(2952), + [anon_sym_extern] = ACTIONS(2952), + [anon_sym___attribute__] = ACTIONS(2952), + [anon_sym_COLON_COLON] = ACTIONS(2954), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2954), + [anon_sym___declspec] = ACTIONS(2952), + [anon_sym___based] = ACTIONS(2952), + [anon_sym___cdecl] = ACTIONS(2952), + [anon_sym___clrcall] = ACTIONS(2952), + [anon_sym___stdcall] = ACTIONS(2952), + [anon_sym___fastcall] = ACTIONS(2952), + [anon_sym___thiscall] = ACTIONS(2952), + [anon_sym___vectorcall] = ACTIONS(2952), + [anon_sym_LBRACE] = ACTIONS(2954), + [anon_sym_LBRACK] = ACTIONS(2952), + [anon_sym_static] = ACTIONS(2952), + [anon_sym_register] = ACTIONS(2952), + [anon_sym_inline] = ACTIONS(2952), + [anon_sym_thread_local] = ACTIONS(2952), + [anon_sym_const] = ACTIONS(2952), + [anon_sym_constexpr] = ACTIONS(2952), + [anon_sym_volatile] = ACTIONS(2952), + [anon_sym_restrict] = ACTIONS(2952), + [anon_sym___restrict__] = ACTIONS(2952), + [anon_sym__Atomic] = ACTIONS(2952), + [anon_sym__Noreturn] = ACTIONS(2952), + [anon_sym_noreturn] = ACTIONS(2952), + [anon_sym_mutable] = ACTIONS(2952), + [anon_sym_constinit] = ACTIONS(2952), + [anon_sym_consteval] = ACTIONS(2952), + [anon_sym_signed] = ACTIONS(2952), + [anon_sym_unsigned] = ACTIONS(2952), + [anon_sym_long] = ACTIONS(2952), + [anon_sym_short] = ACTIONS(2952), + [sym_primitive_type] = ACTIONS(2952), + [anon_sym_enum] = ACTIONS(2952), + [anon_sym_class] = ACTIONS(2952), + [anon_sym_struct] = ACTIONS(2952), + [anon_sym_union] = ACTIONS(2952), + [anon_sym_if] = ACTIONS(2952), + [anon_sym_else] = ACTIONS(2952), + [anon_sym_switch] = ACTIONS(2952), + [anon_sym_case] = ACTIONS(2952), + [anon_sym_default] = ACTIONS(2952), + [anon_sym_while] = ACTIONS(2952), + [anon_sym_do] = ACTIONS(2952), + [anon_sym_for] = ACTIONS(2952), + [anon_sym_return] = ACTIONS(2952), + [anon_sym_break] = ACTIONS(2952), + [anon_sym_continue] = ACTIONS(2952), + [anon_sym_goto] = ACTIONS(2952), + [anon_sym_not] = ACTIONS(2952), + [anon_sym_compl] = ACTIONS(2952), + [anon_sym_DASH_DASH] = ACTIONS(2954), + [anon_sym_PLUS_PLUS] = ACTIONS(2954), + [anon_sym_sizeof] = ACTIONS(2952), + [anon_sym_offsetof] = ACTIONS(2952), + [anon_sym__Generic] = ACTIONS(2952), + [anon_sym_asm] = ACTIONS(2952), + [anon_sym___asm__] = ACTIONS(2952), + [sym_number_literal] = ACTIONS(2954), + [anon_sym_L_SQUOTE] = ACTIONS(2954), + [anon_sym_u_SQUOTE] = ACTIONS(2954), + [anon_sym_U_SQUOTE] = ACTIONS(2954), + [anon_sym_u8_SQUOTE] = ACTIONS(2954), + [anon_sym_SQUOTE] = ACTIONS(2954), + [anon_sym_L_DQUOTE] = ACTIONS(2954), + [anon_sym_u_DQUOTE] = ACTIONS(2954), + [anon_sym_U_DQUOTE] = ACTIONS(2954), + [anon_sym_u8_DQUOTE] = ACTIONS(2954), + [anon_sym_DQUOTE] = ACTIONS(2954), + [sym_true] = ACTIONS(2952), + [sym_false] = ACTIONS(2952), + [anon_sym_NULL] = ACTIONS(2952), + [anon_sym_nullptr] = ACTIONS(2952), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2952), + [anon_sym_decltype] = ACTIONS(2952), + [anon_sym_virtual] = ACTIONS(2952), + [anon_sym_explicit] = ACTIONS(2952), + [anon_sym_typename] = ACTIONS(2952), + [anon_sym_template] = ACTIONS(2952), + [anon_sym_operator] = ACTIONS(2952), + [anon_sym_try] = ACTIONS(2952), + [anon_sym_delete] = ACTIONS(2952), + [anon_sym_throw] = ACTIONS(2952), + [anon_sym_namespace] = ACTIONS(2952), + [anon_sym_using] = ACTIONS(2952), + [anon_sym_static_assert] = ACTIONS(2952), + [anon_sym_concept] = ACTIONS(2952), + [anon_sym_co_return] = ACTIONS(2952), + [anon_sym_co_yield] = ACTIONS(2952), + [anon_sym_R_DQUOTE] = ACTIONS(2954), + [anon_sym_LR_DQUOTE] = ACTIONS(2954), + [anon_sym_uR_DQUOTE] = ACTIONS(2954), + [anon_sym_UR_DQUOTE] = ACTIONS(2954), + [anon_sym_u8R_DQUOTE] = ACTIONS(2954), + [anon_sym_co_await] = ACTIONS(2952), + [anon_sym_new] = ACTIONS(2952), + [anon_sym_requires] = ACTIONS(2952), + [sym_this] = ACTIONS(2952), }, [402] = { - [sym_type_qualifier] = STATE(3306), - [sym__type_specifier] = STATE(3903), - [sym_sized_type_specifier] = STATE(3003), - [sym_enum_specifier] = STATE(3003), - [sym_struct_specifier] = STATE(3003), - [sym_union_specifier] = STATE(3003), - [sym__expression] = STATE(3472), - [sym_conditional_expression] = STATE(3855), - [sym_assignment_expression] = STATE(3855), - [sym_pointer_expression] = STATE(2954), - [sym_unary_expression] = STATE(3855), - [sym_binary_expression] = STATE(3855), - [sym_update_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_type_descriptor] = STATE(5177), - [sym_sizeof_expression] = STATE(3855), - [sym_subscript_expression] = STATE(2954), - [sym_call_expression] = STATE(2954), - [sym_field_expression] = STATE(2954), - [sym_compound_literal_expression] = STATE(3855), - [sym_parenthesized_expression] = STATE(2954), - [sym_char_literal] = STATE(3557), - [sym_concatenated_string] = STATE(3557), - [sym_string_literal] = STATE(2955), - [sym_placeholder_type_specifier] = STATE(3003), - [sym_decltype_auto] = STATE(3008), - [sym_decltype] = STATE(2851), - [sym_class_specifier] = STATE(3003), - [sym__class_name] = STATE(5844), - [sym_dependent_type] = STATE(3003), - [sym_template_type] = STATE(4288), - [sym_template_function] = STATE(3855), - [sym_raw_string_literal] = STATE(2955), - [sym_co_await_expression] = STATE(3855), - [sym_new_expression] = STATE(3855), - [sym_delete_expression] = STATE(3855), - [sym_requires_clause] = STATE(3855), - [sym_requires_expression] = STATE(3855), - [sym_lambda_expression] = STATE(3855), - [sym_lambda_capture_specifier] = STATE(4501), - [sym_fold_expression] = STATE(3855), - [sym_parameter_pack_expansion] = STATE(3855), - [sym_type_parameter_pack_expansion] = STATE(5659), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4544), - [sym_qualified_identifier] = STATE(2954), - [sym_qualified_type_identifier] = STATE(4356), - [sym_user_defined_literal] = STATE(3855), - [aux_sym_type_definition_repeat1] = STATE(3306), - [aux_sym_sized_type_specifier_repeat1] = STATE(2022), - [sym_identifier] = ACTIONS(2408), - [anon_sym_LPAREN2] = ACTIONS(2410), - [anon_sym_BANG] = ACTIONS(2412), - [anon_sym_TILDE] = ACTIONS(2412), - [anon_sym_DASH] = ACTIONS(2414), - [anon_sym_PLUS] = ACTIONS(2414), - [anon_sym_STAR] = ACTIONS(2416), - [anon_sym_AMP] = ACTIONS(2416), - [anon_sym_COLON_COLON] = ACTIONS(2418), - [anon_sym_LBRACK] = ACTIONS(1539), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(2420), - [anon_sym_unsigned] = ACTIONS(2420), - [anon_sym_long] = ACTIONS(2420), - [anon_sym_short] = ACTIONS(2420), - [sym_primitive_type] = ACTIONS(2422), - [anon_sym_enum] = ACTIONS(2424), - [anon_sym_class] = ACTIONS(2426), - [anon_sym_struct] = ACTIONS(2428), - [anon_sym_union] = ACTIONS(2430), - [anon_sym_not] = ACTIONS(2414), - [anon_sym_compl] = ACTIONS(2414), - [anon_sym_DASH_DASH] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(2432), - [anon_sym_sizeof] = ACTIONS(2434), - [sym_number_literal] = ACTIONS(2436), - [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_L_DQUOTE] = ACTIONS(2440), - [anon_sym_u_DQUOTE] = ACTIONS(2440), - [anon_sym_U_DQUOTE] = ACTIONS(2440), - [anon_sym_u8_DQUOTE] = ACTIONS(2440), - [anon_sym_DQUOTE] = ACTIONS(2440), - [sym_true] = ACTIONS(2442), - [sym_false] = ACTIONS(2442), - [sym_null] = ACTIONS(2442), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2444), - [anon_sym_decltype] = ACTIONS(2446), - [anon_sym_typename] = ACTIONS(2448), - [anon_sym_template] = ACTIONS(996), - [anon_sym_GT2] = ACTIONS(2546), - [anon_sym_delete] = ACTIONS(2452), - [anon_sym_R_DQUOTE] = ACTIONS(2454), - [anon_sym_LR_DQUOTE] = ACTIONS(2454), - [anon_sym_uR_DQUOTE] = ACTIONS(2454), - [anon_sym_UR_DQUOTE] = ACTIONS(2454), - [anon_sym_u8R_DQUOTE] = ACTIONS(2454), - [anon_sym_co_await] = ACTIONS(2456), - [anon_sym_new] = ACTIONS(2458), - [anon_sym_requires] = ACTIONS(2460), - [sym_this] = ACTIONS(2442), - [sym_nullptr] = ACTIONS(2442), + [sym_identifier] = ACTIONS(2956), + [aux_sym_preproc_include_token1] = ACTIONS(2956), + [aux_sym_preproc_def_token1] = ACTIONS(2956), + [aux_sym_preproc_if_token1] = ACTIONS(2956), + [aux_sym_preproc_if_token2] = ACTIONS(2956), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2956), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2956), + [aux_sym_preproc_else_token1] = ACTIONS(2956), + [aux_sym_preproc_elif_token1] = ACTIONS(2956), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2956), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2956), + [sym_preproc_directive] = ACTIONS(2956), + [anon_sym_LPAREN2] = ACTIONS(2958), + [anon_sym_BANG] = ACTIONS(2958), + [anon_sym_TILDE] = ACTIONS(2958), + [anon_sym_DASH] = ACTIONS(2956), + [anon_sym_PLUS] = ACTIONS(2956), + [anon_sym_STAR] = ACTIONS(2958), + [anon_sym_AMP_AMP] = ACTIONS(2958), + [anon_sym_AMP] = ACTIONS(2956), + [anon_sym_SEMI] = ACTIONS(2958), + [anon_sym_typedef] = ACTIONS(2956), + [anon_sym_extern] = ACTIONS(2956), + [anon_sym___attribute__] = ACTIONS(2956), + [anon_sym_COLON_COLON] = ACTIONS(2958), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2958), + [anon_sym___declspec] = ACTIONS(2956), + [anon_sym___based] = ACTIONS(2956), + [anon_sym___cdecl] = ACTIONS(2956), + [anon_sym___clrcall] = ACTIONS(2956), + [anon_sym___stdcall] = ACTIONS(2956), + [anon_sym___fastcall] = ACTIONS(2956), + [anon_sym___thiscall] = ACTIONS(2956), + [anon_sym___vectorcall] = ACTIONS(2956), + [anon_sym_LBRACE] = ACTIONS(2958), + [anon_sym_LBRACK] = ACTIONS(2956), + [anon_sym_static] = ACTIONS(2956), + [anon_sym_register] = ACTIONS(2956), + [anon_sym_inline] = ACTIONS(2956), + [anon_sym_thread_local] = ACTIONS(2956), + [anon_sym_const] = ACTIONS(2956), + [anon_sym_constexpr] = ACTIONS(2956), + [anon_sym_volatile] = ACTIONS(2956), + [anon_sym_restrict] = ACTIONS(2956), + [anon_sym___restrict__] = ACTIONS(2956), + [anon_sym__Atomic] = ACTIONS(2956), + [anon_sym__Noreturn] = ACTIONS(2956), + [anon_sym_noreturn] = ACTIONS(2956), + [anon_sym_mutable] = ACTIONS(2956), + [anon_sym_constinit] = ACTIONS(2956), + [anon_sym_consteval] = ACTIONS(2956), + [anon_sym_signed] = ACTIONS(2956), + [anon_sym_unsigned] = ACTIONS(2956), + [anon_sym_long] = ACTIONS(2956), + [anon_sym_short] = ACTIONS(2956), + [sym_primitive_type] = ACTIONS(2956), + [anon_sym_enum] = ACTIONS(2956), + [anon_sym_class] = ACTIONS(2956), + [anon_sym_struct] = ACTIONS(2956), + [anon_sym_union] = ACTIONS(2956), + [anon_sym_if] = ACTIONS(2956), + [anon_sym_else] = ACTIONS(2956), + [anon_sym_switch] = ACTIONS(2956), + [anon_sym_case] = ACTIONS(2956), + [anon_sym_default] = ACTIONS(2956), + [anon_sym_while] = ACTIONS(2956), + [anon_sym_do] = ACTIONS(2956), + [anon_sym_for] = ACTIONS(2956), + [anon_sym_return] = ACTIONS(2956), + [anon_sym_break] = ACTIONS(2956), + [anon_sym_continue] = ACTIONS(2956), + [anon_sym_goto] = ACTIONS(2956), + [anon_sym_not] = ACTIONS(2956), + [anon_sym_compl] = ACTIONS(2956), + [anon_sym_DASH_DASH] = ACTIONS(2958), + [anon_sym_PLUS_PLUS] = ACTIONS(2958), + [anon_sym_sizeof] = ACTIONS(2956), + [anon_sym_offsetof] = ACTIONS(2956), + [anon_sym__Generic] = ACTIONS(2956), + [anon_sym_asm] = ACTIONS(2956), + [anon_sym___asm__] = ACTIONS(2956), + [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_L_DQUOTE] = ACTIONS(2958), + [anon_sym_u_DQUOTE] = ACTIONS(2958), + [anon_sym_U_DQUOTE] = ACTIONS(2958), + [anon_sym_u8_DQUOTE] = ACTIONS(2958), + [anon_sym_DQUOTE] = ACTIONS(2958), + [sym_true] = ACTIONS(2956), + [sym_false] = ACTIONS(2956), + [anon_sym_NULL] = ACTIONS(2956), + [anon_sym_nullptr] = ACTIONS(2956), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2956), + [anon_sym_decltype] = ACTIONS(2956), + [anon_sym_virtual] = ACTIONS(2956), + [anon_sym_explicit] = ACTIONS(2956), + [anon_sym_typename] = ACTIONS(2956), + [anon_sym_template] = ACTIONS(2956), + [anon_sym_operator] = ACTIONS(2956), + [anon_sym_try] = ACTIONS(2956), + [anon_sym_delete] = ACTIONS(2956), + [anon_sym_throw] = ACTIONS(2956), + [anon_sym_namespace] = ACTIONS(2956), + [anon_sym_using] = ACTIONS(2956), + [anon_sym_static_assert] = ACTIONS(2956), + [anon_sym_concept] = ACTIONS(2956), + [anon_sym_co_return] = ACTIONS(2956), + [anon_sym_co_yield] = ACTIONS(2956), + [anon_sym_R_DQUOTE] = ACTIONS(2958), + [anon_sym_LR_DQUOTE] = ACTIONS(2958), + [anon_sym_uR_DQUOTE] = ACTIONS(2958), + [anon_sym_UR_DQUOTE] = ACTIONS(2958), + [anon_sym_u8R_DQUOTE] = ACTIONS(2958), + [anon_sym_co_await] = ACTIONS(2956), + [anon_sym_new] = ACTIONS(2956), + [anon_sym_requires] = ACTIONS(2956), + [sym_this] = ACTIONS(2956), }, [403] = { - [sym_identifier] = ACTIONS(2462), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2464), - [anon_sym_AMP] = ACTIONS(2462), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_explicit] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_operator] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_namespace] = ACTIONS(2462), - [anon_sym_using] = ACTIONS(2462), - [anon_sym_static_assert] = ACTIONS(2462), - [anon_sym_concept] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_identifier] = ACTIONS(2542), + [aux_sym_preproc_include_token1] = ACTIONS(2542), + [aux_sym_preproc_def_token1] = ACTIONS(2542), + [anon_sym_COMMA] = ACTIONS(2960), + [aux_sym_preproc_if_token1] = ACTIONS(2542), + [aux_sym_preproc_if_token2] = ACTIONS(2542), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2542), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2542), + [aux_sym_preproc_else_token1] = ACTIONS(2542), + [aux_sym_preproc_elif_token1] = ACTIONS(2542), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2542), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2542), + [sym_preproc_directive] = ACTIONS(2542), + [anon_sym_LPAREN2] = ACTIONS(2540), + [anon_sym_BANG] = ACTIONS(2540), + [anon_sym_TILDE] = ACTIONS(2540), + [anon_sym_DASH] = ACTIONS(2542), + [anon_sym_PLUS] = ACTIONS(2542), + [anon_sym_STAR] = ACTIONS(2540), + [anon_sym_AMP_AMP] = ACTIONS(2540), + [anon_sym_AMP] = ACTIONS(2542), + [anon_sym_SEMI] = ACTIONS(2960), + [anon_sym_typedef] = ACTIONS(2542), + [anon_sym_extern] = ACTIONS(2542), + [anon_sym___attribute__] = ACTIONS(2542), + [anon_sym_COLON_COLON] = ACTIONS(2540), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2540), + [anon_sym___declspec] = ACTIONS(2542), + [anon_sym___based] = ACTIONS(2542), + [anon_sym___cdecl] = ACTIONS(2542), + [anon_sym___clrcall] = ACTIONS(2542), + [anon_sym___stdcall] = ACTIONS(2542), + [anon_sym___fastcall] = ACTIONS(2542), + [anon_sym___thiscall] = ACTIONS(2542), + [anon_sym___vectorcall] = ACTIONS(2542), + [anon_sym_LBRACE] = ACTIONS(2540), + [anon_sym_LBRACK] = ACTIONS(2542), + [anon_sym_static] = ACTIONS(2542), + [anon_sym_register] = ACTIONS(2542), + [anon_sym_inline] = ACTIONS(2542), + [anon_sym_thread_local] = ACTIONS(2542), + [anon_sym_const] = ACTIONS(2542), + [anon_sym_constexpr] = ACTIONS(2542), + [anon_sym_volatile] = ACTIONS(2542), + [anon_sym_restrict] = ACTIONS(2542), + [anon_sym___restrict__] = ACTIONS(2542), + [anon_sym__Atomic] = ACTIONS(2542), + [anon_sym__Noreturn] = ACTIONS(2542), + [anon_sym_noreturn] = ACTIONS(2542), + [anon_sym_mutable] = ACTIONS(2542), + [anon_sym_constinit] = ACTIONS(2542), + [anon_sym_consteval] = ACTIONS(2542), + [anon_sym_signed] = ACTIONS(2542), + [anon_sym_unsigned] = ACTIONS(2542), + [anon_sym_long] = ACTIONS(2542), + [anon_sym_short] = ACTIONS(2542), + [sym_primitive_type] = ACTIONS(2542), + [anon_sym_enum] = ACTIONS(2542), + [anon_sym_class] = ACTIONS(2542), + [anon_sym_struct] = ACTIONS(2542), + [anon_sym_union] = ACTIONS(2542), + [anon_sym_if] = ACTIONS(2542), + [anon_sym_switch] = ACTIONS(2542), + [anon_sym_case] = ACTIONS(2542), + [anon_sym_default] = ACTIONS(2542), + [anon_sym_while] = ACTIONS(2542), + [anon_sym_do] = ACTIONS(2542), + [anon_sym_for] = ACTIONS(2542), + [anon_sym_return] = ACTIONS(2542), + [anon_sym_break] = ACTIONS(2542), + [anon_sym_continue] = ACTIONS(2542), + [anon_sym_goto] = ACTIONS(2542), + [anon_sym_not] = ACTIONS(2542), + [anon_sym_compl] = ACTIONS(2542), + [anon_sym_DASH_DASH] = ACTIONS(2540), + [anon_sym_PLUS_PLUS] = ACTIONS(2540), + [anon_sym_sizeof] = ACTIONS(2542), + [anon_sym_offsetof] = ACTIONS(2542), + [anon_sym__Generic] = ACTIONS(2542), + [anon_sym_asm] = ACTIONS(2542), + [anon_sym___asm__] = ACTIONS(2542), + [sym_number_literal] = ACTIONS(2540), + [anon_sym_L_SQUOTE] = ACTIONS(2540), + [anon_sym_u_SQUOTE] = ACTIONS(2540), + [anon_sym_U_SQUOTE] = ACTIONS(2540), + [anon_sym_u8_SQUOTE] = ACTIONS(2540), + [anon_sym_SQUOTE] = ACTIONS(2540), + [anon_sym_L_DQUOTE] = ACTIONS(2540), + [anon_sym_u_DQUOTE] = ACTIONS(2540), + [anon_sym_U_DQUOTE] = ACTIONS(2540), + [anon_sym_u8_DQUOTE] = ACTIONS(2540), + [anon_sym_DQUOTE] = ACTIONS(2540), + [sym_true] = ACTIONS(2542), + [sym_false] = ACTIONS(2542), + [anon_sym_NULL] = ACTIONS(2542), + [anon_sym_nullptr] = ACTIONS(2542), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2542), + [anon_sym_decltype] = ACTIONS(2542), + [anon_sym_virtual] = ACTIONS(2542), + [anon_sym_explicit] = ACTIONS(2542), + [anon_sym_typename] = ACTIONS(2542), + [anon_sym_template] = ACTIONS(2542), + [anon_sym_operator] = ACTIONS(2542), + [anon_sym_try] = ACTIONS(2542), + [anon_sym_delete] = ACTIONS(2542), + [anon_sym_throw] = ACTIONS(2542), + [anon_sym_namespace] = ACTIONS(2542), + [anon_sym_using] = ACTIONS(2542), + [anon_sym_static_assert] = ACTIONS(2542), + [anon_sym_concept] = ACTIONS(2542), + [anon_sym_co_return] = ACTIONS(2542), + [anon_sym_co_yield] = ACTIONS(2542), + [anon_sym_R_DQUOTE] = ACTIONS(2540), + [anon_sym_LR_DQUOTE] = ACTIONS(2540), + [anon_sym_uR_DQUOTE] = ACTIONS(2540), + [anon_sym_UR_DQUOTE] = ACTIONS(2540), + [anon_sym_u8R_DQUOTE] = ACTIONS(2540), + [anon_sym_co_await] = ACTIONS(2542), + [anon_sym_new] = ACTIONS(2542), + [anon_sym_requires] = ACTIONS(2542), + [sym_this] = ACTIONS(2542), }, [404] = { - [sym_identifier] = ACTIONS(2462), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2464), - [anon_sym_AMP] = ACTIONS(2462), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_explicit] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_operator] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_namespace] = ACTIONS(2462), - [anon_sym_using] = ACTIONS(2462), - [anon_sym_static_assert] = ACTIONS(2462), - [anon_sym_concept] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_identifier] = ACTIONS(2962), + [aux_sym_preproc_include_token1] = ACTIONS(2962), + [aux_sym_preproc_def_token1] = ACTIONS(2962), + [aux_sym_preproc_if_token1] = ACTIONS(2962), + [aux_sym_preproc_if_token2] = ACTIONS(2962), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2962), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2962), + [aux_sym_preproc_else_token1] = ACTIONS(2962), + [aux_sym_preproc_elif_token1] = ACTIONS(2962), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2962), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2962), + [sym_preproc_directive] = ACTIONS(2962), + [anon_sym_LPAREN2] = ACTIONS(2964), + [anon_sym_BANG] = ACTIONS(2964), + [anon_sym_TILDE] = ACTIONS(2964), + [anon_sym_DASH] = ACTIONS(2962), + [anon_sym_PLUS] = ACTIONS(2962), + [anon_sym_STAR] = ACTIONS(2964), + [anon_sym_AMP_AMP] = ACTIONS(2964), + [anon_sym_AMP] = ACTIONS(2962), + [anon_sym_SEMI] = ACTIONS(2964), + [anon_sym_typedef] = ACTIONS(2962), + [anon_sym_extern] = ACTIONS(2962), + [anon_sym___attribute__] = ACTIONS(2962), + [anon_sym_COLON_COLON] = ACTIONS(2964), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2964), + [anon_sym___declspec] = ACTIONS(2962), + [anon_sym___based] = ACTIONS(2962), + [anon_sym___cdecl] = ACTIONS(2962), + [anon_sym___clrcall] = ACTIONS(2962), + [anon_sym___stdcall] = ACTIONS(2962), + [anon_sym___fastcall] = ACTIONS(2962), + [anon_sym___thiscall] = ACTIONS(2962), + [anon_sym___vectorcall] = ACTIONS(2962), + [anon_sym_LBRACE] = ACTIONS(2964), + [anon_sym_LBRACK] = ACTIONS(2962), + [anon_sym_static] = ACTIONS(2962), + [anon_sym_register] = ACTIONS(2962), + [anon_sym_inline] = ACTIONS(2962), + [anon_sym_thread_local] = ACTIONS(2962), + [anon_sym_const] = ACTIONS(2962), + [anon_sym_constexpr] = ACTIONS(2962), + [anon_sym_volatile] = ACTIONS(2962), + [anon_sym_restrict] = ACTIONS(2962), + [anon_sym___restrict__] = ACTIONS(2962), + [anon_sym__Atomic] = ACTIONS(2962), + [anon_sym__Noreturn] = ACTIONS(2962), + [anon_sym_noreturn] = ACTIONS(2962), + [anon_sym_mutable] = ACTIONS(2962), + [anon_sym_constinit] = ACTIONS(2962), + [anon_sym_consteval] = ACTIONS(2962), + [anon_sym_signed] = ACTIONS(2962), + [anon_sym_unsigned] = ACTIONS(2962), + [anon_sym_long] = ACTIONS(2962), + [anon_sym_short] = ACTIONS(2962), + [sym_primitive_type] = ACTIONS(2962), + [anon_sym_enum] = ACTIONS(2962), + [anon_sym_class] = ACTIONS(2962), + [anon_sym_struct] = ACTIONS(2962), + [anon_sym_union] = ACTIONS(2962), + [anon_sym_if] = ACTIONS(2962), + [anon_sym_else] = ACTIONS(2962), + [anon_sym_switch] = ACTIONS(2962), + [anon_sym_case] = ACTIONS(2962), + [anon_sym_default] = ACTIONS(2962), + [anon_sym_while] = ACTIONS(2962), + [anon_sym_do] = ACTIONS(2962), + [anon_sym_for] = ACTIONS(2962), + [anon_sym_return] = ACTIONS(2962), + [anon_sym_break] = ACTIONS(2962), + [anon_sym_continue] = ACTIONS(2962), + [anon_sym_goto] = ACTIONS(2962), + [anon_sym_not] = ACTIONS(2962), + [anon_sym_compl] = ACTIONS(2962), + [anon_sym_DASH_DASH] = ACTIONS(2964), + [anon_sym_PLUS_PLUS] = ACTIONS(2964), + [anon_sym_sizeof] = ACTIONS(2962), + [anon_sym_offsetof] = ACTIONS(2962), + [anon_sym__Generic] = ACTIONS(2962), + [anon_sym_asm] = ACTIONS(2962), + [anon_sym___asm__] = ACTIONS(2962), + [sym_number_literal] = ACTIONS(2964), + [anon_sym_L_SQUOTE] = ACTIONS(2964), + [anon_sym_u_SQUOTE] = ACTIONS(2964), + [anon_sym_U_SQUOTE] = ACTIONS(2964), + [anon_sym_u8_SQUOTE] = ACTIONS(2964), + [anon_sym_SQUOTE] = ACTIONS(2964), + [anon_sym_L_DQUOTE] = ACTIONS(2964), + [anon_sym_u_DQUOTE] = ACTIONS(2964), + [anon_sym_U_DQUOTE] = ACTIONS(2964), + [anon_sym_u8_DQUOTE] = ACTIONS(2964), + [anon_sym_DQUOTE] = ACTIONS(2964), + [sym_true] = ACTIONS(2962), + [sym_false] = ACTIONS(2962), + [anon_sym_NULL] = ACTIONS(2962), + [anon_sym_nullptr] = ACTIONS(2962), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2962), + [anon_sym_decltype] = ACTIONS(2962), + [anon_sym_virtual] = ACTIONS(2962), + [anon_sym_explicit] = ACTIONS(2962), + [anon_sym_typename] = ACTIONS(2962), + [anon_sym_template] = ACTIONS(2962), + [anon_sym_operator] = ACTIONS(2962), + [anon_sym_try] = ACTIONS(2962), + [anon_sym_delete] = ACTIONS(2962), + [anon_sym_throw] = ACTIONS(2962), + [anon_sym_namespace] = ACTIONS(2962), + [anon_sym_using] = ACTIONS(2962), + [anon_sym_static_assert] = ACTIONS(2962), + [anon_sym_concept] = ACTIONS(2962), + [anon_sym_co_return] = ACTIONS(2962), + [anon_sym_co_yield] = ACTIONS(2962), + [anon_sym_R_DQUOTE] = ACTIONS(2964), + [anon_sym_LR_DQUOTE] = ACTIONS(2964), + [anon_sym_uR_DQUOTE] = ACTIONS(2964), + [anon_sym_UR_DQUOTE] = ACTIONS(2964), + [anon_sym_u8R_DQUOTE] = ACTIONS(2964), + [anon_sym_co_await] = ACTIONS(2962), + [anon_sym_new] = ACTIONS(2962), + [anon_sym_requires] = ACTIONS(2962), + [sym_this] = ACTIONS(2962), }, [405] = { - [sym_identifier] = ACTIONS(2548), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2550), - [anon_sym_AMP] = ACTIONS(2548), - [anon_sym_SEMI] = ACTIONS(2550), - [anon_sym_typedef] = ACTIONS(2548), - [anon_sym_extern] = ACTIONS(2548), - [anon_sym___attribute__] = ACTIONS(2548), - [anon_sym_COLON_COLON] = ACTIONS(2550), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2550), - [anon_sym___declspec] = ACTIONS(2548), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2548), - [anon_sym_static] = ACTIONS(2548), - [anon_sym_register] = ACTIONS(2548), - [anon_sym_inline] = ACTIONS(2548), - [anon_sym_thread_local] = ACTIONS(2548), - [anon_sym_const] = ACTIONS(2548), - [anon_sym_volatile] = ACTIONS(2548), - [anon_sym_restrict] = ACTIONS(2548), - [anon_sym__Atomic] = ACTIONS(2548), - [anon_sym_mutable] = ACTIONS(2548), - [anon_sym_constexpr] = ACTIONS(2548), - [anon_sym_constinit] = ACTIONS(2548), - [anon_sym_consteval] = ACTIONS(2548), - [anon_sym_signed] = ACTIONS(2548), - [anon_sym_unsigned] = ACTIONS(2548), - [anon_sym_long] = ACTIONS(2548), - [anon_sym_short] = ACTIONS(2548), - [sym_primitive_type] = ACTIONS(2548), - [anon_sym_enum] = ACTIONS(2548), - [anon_sym_class] = 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_return] = ACTIONS(2548), - [anon_sym_break] = ACTIONS(2548), - [anon_sym_continue] = ACTIONS(2548), - [anon_sym_goto] = ACTIONS(2548), - [anon_sym_not] = ACTIONS(2548), - [anon_sym_compl] = ACTIONS(2548), - [anon_sym_DASH_DASH] = ACTIONS(2550), - [anon_sym_PLUS_PLUS] = ACTIONS(2550), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2550), - [anon_sym_u_DQUOTE] = ACTIONS(2550), - [anon_sym_U_DQUOTE] = ACTIONS(2550), - [anon_sym_u8_DQUOTE] = ACTIONS(2550), - [anon_sym_DQUOTE] = ACTIONS(2550), - [sym_true] = ACTIONS(2548), - [sym_false] = ACTIONS(2548), - [sym_null] = ACTIONS(2548), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2548), - [anon_sym_decltype] = ACTIONS(2548), - [anon_sym_virtual] = ACTIONS(2548), - [anon_sym_explicit] = ACTIONS(2548), - [anon_sym_typename] = ACTIONS(2548), - [anon_sym_template] = ACTIONS(2548), - [anon_sym_operator] = ACTIONS(2548), - [anon_sym_try] = ACTIONS(2548), - [anon_sym_delete] = ACTIONS(2548), - [anon_sym_throw] = ACTIONS(2548), - [anon_sym_namespace] = ACTIONS(2548), - [anon_sym_using] = ACTIONS(2548), - [anon_sym_static_assert] = ACTIONS(2548), - [anon_sym_concept] = ACTIONS(2548), - [anon_sym_co_return] = ACTIONS(2548), - [anon_sym_co_yield] = ACTIONS(2548), - [anon_sym_R_DQUOTE] = ACTIONS(2550), - [anon_sym_LR_DQUOTE] = ACTIONS(2550), - [anon_sym_uR_DQUOTE] = ACTIONS(2550), - [anon_sym_UR_DQUOTE] = ACTIONS(2550), - [anon_sym_u8R_DQUOTE] = ACTIONS(2550), - [anon_sym_co_await] = ACTIONS(2548), - [anon_sym_new] = ACTIONS(2548), - [anon_sym_requires] = ACTIONS(2548), - [sym_this] = ACTIONS(2548), - [sym_nullptr] = ACTIONS(2548), + [sym_catch_clause] = STATE(384), + [aux_sym_constructor_try_statement_repeat1] = STATE(384), + [sym_identifier] = ACTIONS(2721), + [aux_sym_preproc_include_token1] = ACTIONS(2721), + [aux_sym_preproc_def_token1] = ACTIONS(2721), + [aux_sym_preproc_if_token1] = ACTIONS(2721), + [aux_sym_preproc_if_token2] = ACTIONS(2721), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2721), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2721), + [aux_sym_preproc_else_token1] = ACTIONS(2721), + [aux_sym_preproc_elif_token1] = ACTIONS(2721), + [sym_preproc_directive] = ACTIONS(2721), + [anon_sym_LPAREN2] = ACTIONS(2723), + [anon_sym_BANG] = ACTIONS(2723), + [anon_sym_TILDE] = ACTIONS(2723), + [anon_sym_DASH] = ACTIONS(2721), + [anon_sym_PLUS] = ACTIONS(2721), + [anon_sym_STAR] = ACTIONS(2723), + [anon_sym_AMP_AMP] = ACTIONS(2723), + [anon_sym_AMP] = ACTIONS(2721), + [anon_sym_SEMI] = ACTIONS(2723), + [anon_sym_typedef] = ACTIONS(2721), + [anon_sym_extern] = ACTIONS(2721), + [anon_sym___attribute__] = ACTIONS(2721), + [anon_sym_COLON_COLON] = ACTIONS(2723), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2723), + [anon_sym___declspec] = ACTIONS(2721), + [anon_sym___based] = ACTIONS(2721), + [anon_sym___cdecl] = ACTIONS(2721), + [anon_sym___clrcall] = ACTIONS(2721), + [anon_sym___stdcall] = ACTIONS(2721), + [anon_sym___fastcall] = ACTIONS(2721), + [anon_sym___thiscall] = ACTIONS(2721), + [anon_sym___vectorcall] = ACTIONS(2721), + [anon_sym_LBRACE] = ACTIONS(2723), + [anon_sym_LBRACK] = ACTIONS(2721), + [anon_sym_static] = ACTIONS(2721), + [anon_sym_register] = ACTIONS(2721), + [anon_sym_inline] = ACTIONS(2721), + [anon_sym_thread_local] = ACTIONS(2721), + [anon_sym_const] = ACTIONS(2721), + [anon_sym_constexpr] = ACTIONS(2721), + [anon_sym_volatile] = ACTIONS(2721), + [anon_sym_restrict] = ACTIONS(2721), + [anon_sym___restrict__] = ACTIONS(2721), + [anon_sym__Atomic] = ACTIONS(2721), + [anon_sym__Noreturn] = ACTIONS(2721), + [anon_sym_noreturn] = ACTIONS(2721), + [anon_sym_mutable] = ACTIONS(2721), + [anon_sym_constinit] = ACTIONS(2721), + [anon_sym_consteval] = ACTIONS(2721), + [anon_sym_signed] = ACTIONS(2721), + [anon_sym_unsigned] = ACTIONS(2721), + [anon_sym_long] = ACTIONS(2721), + [anon_sym_short] = ACTIONS(2721), + [sym_primitive_type] = ACTIONS(2721), + [anon_sym_enum] = ACTIONS(2721), + [anon_sym_class] = ACTIONS(2721), + [anon_sym_struct] = ACTIONS(2721), + [anon_sym_union] = ACTIONS(2721), + [anon_sym_if] = ACTIONS(2721), + [anon_sym_switch] = ACTIONS(2721), + [anon_sym_case] = ACTIONS(2721), + [anon_sym_default] = ACTIONS(2721), + [anon_sym_while] = ACTIONS(2721), + [anon_sym_do] = ACTIONS(2721), + [anon_sym_for] = ACTIONS(2721), + [anon_sym_return] = ACTIONS(2721), + [anon_sym_break] = ACTIONS(2721), + [anon_sym_continue] = ACTIONS(2721), + [anon_sym_goto] = ACTIONS(2721), + [anon_sym_not] = ACTIONS(2721), + [anon_sym_compl] = ACTIONS(2721), + [anon_sym_DASH_DASH] = ACTIONS(2723), + [anon_sym_PLUS_PLUS] = ACTIONS(2723), + [anon_sym_sizeof] = ACTIONS(2721), + [anon_sym_offsetof] = ACTIONS(2721), + [anon_sym__Generic] = ACTIONS(2721), + [anon_sym_asm] = ACTIONS(2721), + [anon_sym___asm__] = ACTIONS(2721), + [sym_number_literal] = ACTIONS(2723), + [anon_sym_L_SQUOTE] = ACTIONS(2723), + [anon_sym_u_SQUOTE] = ACTIONS(2723), + [anon_sym_U_SQUOTE] = ACTIONS(2723), + [anon_sym_u8_SQUOTE] = ACTIONS(2723), + [anon_sym_SQUOTE] = ACTIONS(2723), + [anon_sym_L_DQUOTE] = ACTIONS(2723), + [anon_sym_u_DQUOTE] = ACTIONS(2723), + [anon_sym_U_DQUOTE] = ACTIONS(2723), + [anon_sym_u8_DQUOTE] = ACTIONS(2723), + [anon_sym_DQUOTE] = ACTIONS(2723), + [sym_true] = ACTIONS(2721), + [sym_false] = ACTIONS(2721), + [anon_sym_NULL] = ACTIONS(2721), + [anon_sym_nullptr] = ACTIONS(2721), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2721), + [anon_sym_decltype] = ACTIONS(2721), + [anon_sym_virtual] = ACTIONS(2721), + [anon_sym_explicit] = ACTIONS(2721), + [anon_sym_typename] = ACTIONS(2721), + [anon_sym_template] = ACTIONS(2721), + [anon_sym_operator] = ACTIONS(2721), + [anon_sym_try] = ACTIONS(2721), + [anon_sym_delete] = ACTIONS(2721), + [anon_sym_throw] = ACTIONS(2721), + [anon_sym_namespace] = ACTIONS(2721), + [anon_sym_using] = ACTIONS(2721), + [anon_sym_static_assert] = ACTIONS(2721), + [anon_sym_concept] = ACTIONS(2721), + [anon_sym_co_return] = ACTIONS(2721), + [anon_sym_co_yield] = ACTIONS(2721), + [anon_sym_catch] = ACTIONS(2898), + [anon_sym_R_DQUOTE] = ACTIONS(2723), + [anon_sym_LR_DQUOTE] = ACTIONS(2723), + [anon_sym_uR_DQUOTE] = ACTIONS(2723), + [anon_sym_UR_DQUOTE] = ACTIONS(2723), + [anon_sym_u8R_DQUOTE] = ACTIONS(2723), + [anon_sym_co_await] = ACTIONS(2721), + [anon_sym_new] = ACTIONS(2721), + [anon_sym_requires] = ACTIONS(2721), + [sym_this] = ACTIONS(2721), }, [406] = { - [sym_identifier] = ACTIONS(2552), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2554), - [anon_sym_AMP] = ACTIONS(2552), - [anon_sym_SEMI] = ACTIONS(2554), - [anon_sym_typedef] = ACTIONS(2552), - [anon_sym_extern] = ACTIONS(2552), - [anon_sym___attribute__] = ACTIONS(2552), - [anon_sym_COLON_COLON] = ACTIONS(2554), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2554), - [anon_sym___declspec] = ACTIONS(2552), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2552), - [anon_sym_static] = ACTIONS(2552), - [anon_sym_register] = ACTIONS(2552), - [anon_sym_inline] = ACTIONS(2552), - [anon_sym_thread_local] = ACTIONS(2552), - [anon_sym_const] = ACTIONS(2552), - [anon_sym_volatile] = ACTIONS(2552), - [anon_sym_restrict] = ACTIONS(2552), - [anon_sym__Atomic] = ACTIONS(2552), - [anon_sym_mutable] = ACTIONS(2552), - [anon_sym_constexpr] = ACTIONS(2552), - [anon_sym_constinit] = ACTIONS(2552), - [anon_sym_consteval] = ACTIONS(2552), - [anon_sym_signed] = ACTIONS(2552), - [anon_sym_unsigned] = ACTIONS(2552), - [anon_sym_long] = ACTIONS(2552), - [anon_sym_short] = ACTIONS(2552), - [sym_primitive_type] = ACTIONS(2552), - [anon_sym_enum] = ACTIONS(2552), - [anon_sym_class] = 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_return] = ACTIONS(2552), - [anon_sym_break] = ACTIONS(2552), - [anon_sym_continue] = ACTIONS(2552), - [anon_sym_goto] = ACTIONS(2552), - [anon_sym_not] = ACTIONS(2552), - [anon_sym_compl] = ACTIONS(2552), - [anon_sym_DASH_DASH] = ACTIONS(2554), - [anon_sym_PLUS_PLUS] = ACTIONS(2554), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2554), - [anon_sym_u_DQUOTE] = ACTIONS(2554), - [anon_sym_U_DQUOTE] = ACTIONS(2554), - [anon_sym_u8_DQUOTE] = ACTIONS(2554), - [anon_sym_DQUOTE] = ACTIONS(2554), - [sym_true] = ACTIONS(2552), - [sym_false] = ACTIONS(2552), - [sym_null] = ACTIONS(2552), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2552), - [anon_sym_decltype] = ACTIONS(2552), - [anon_sym_virtual] = ACTIONS(2552), - [anon_sym_explicit] = ACTIONS(2552), - [anon_sym_typename] = ACTIONS(2552), - [anon_sym_template] = ACTIONS(2552), - [anon_sym_operator] = ACTIONS(2552), - [anon_sym_try] = ACTIONS(2552), - [anon_sym_delete] = ACTIONS(2552), - [anon_sym_throw] = ACTIONS(2552), - [anon_sym_namespace] = ACTIONS(2552), - [anon_sym_using] = ACTIONS(2552), - [anon_sym_static_assert] = ACTIONS(2552), - [anon_sym_concept] = ACTIONS(2552), - [anon_sym_co_return] = ACTIONS(2552), - [anon_sym_co_yield] = ACTIONS(2552), - [anon_sym_R_DQUOTE] = ACTIONS(2554), - [anon_sym_LR_DQUOTE] = ACTIONS(2554), - [anon_sym_uR_DQUOTE] = ACTIONS(2554), - [anon_sym_UR_DQUOTE] = ACTIONS(2554), - [anon_sym_u8R_DQUOTE] = ACTIONS(2554), - [anon_sym_co_await] = ACTIONS(2552), - [anon_sym_new] = ACTIONS(2552), - [anon_sym_requires] = ACTIONS(2552), - [sym_this] = ACTIONS(2552), - [sym_nullptr] = ACTIONS(2552), + [sym_identifier] = ACTIONS(2966), + [aux_sym_preproc_include_token1] = ACTIONS(2966), + [aux_sym_preproc_def_token1] = ACTIONS(2966), + [aux_sym_preproc_if_token1] = ACTIONS(2966), + [aux_sym_preproc_if_token2] = ACTIONS(2966), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2966), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2966), + [aux_sym_preproc_else_token1] = ACTIONS(2966), + [aux_sym_preproc_elif_token1] = ACTIONS(2966), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2966), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2966), + [sym_preproc_directive] = 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_AMP_AMP] = ACTIONS(2968), + [anon_sym_AMP] = ACTIONS(2966), + [anon_sym_SEMI] = ACTIONS(2968), + [anon_sym_typedef] = ACTIONS(2966), + [anon_sym_extern] = ACTIONS(2966), + [anon_sym___attribute__] = ACTIONS(2966), + [anon_sym_COLON_COLON] = ACTIONS(2968), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2968), + [anon_sym___declspec] = ACTIONS(2966), + [anon_sym___based] = ACTIONS(2966), + [anon_sym___cdecl] = ACTIONS(2966), + [anon_sym___clrcall] = ACTIONS(2966), + [anon_sym___stdcall] = ACTIONS(2966), + [anon_sym___fastcall] = ACTIONS(2966), + [anon_sym___thiscall] = ACTIONS(2966), + [anon_sym___vectorcall] = ACTIONS(2966), + [anon_sym_LBRACE] = ACTIONS(2968), + [anon_sym_LBRACK] = ACTIONS(2966), + [anon_sym_static] = ACTIONS(2966), + [anon_sym_register] = ACTIONS(2966), + [anon_sym_inline] = ACTIONS(2966), + [anon_sym_thread_local] = 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_noreturn] = ACTIONS(2966), + [anon_sym_mutable] = ACTIONS(2966), + [anon_sym_constinit] = ACTIONS(2966), + [anon_sym_consteval] = ACTIONS(2966), + [anon_sym_signed] = ACTIONS(2966), + [anon_sym_unsigned] = ACTIONS(2966), + [anon_sym_long] = ACTIONS(2966), + [anon_sym_short] = ACTIONS(2966), + [sym_primitive_type] = ACTIONS(2966), + [anon_sym_enum] = ACTIONS(2966), + [anon_sym_class] = ACTIONS(2966), + [anon_sym_struct] = ACTIONS(2966), + [anon_sym_union] = ACTIONS(2966), + [anon_sym_if] = ACTIONS(2966), + [anon_sym_else] = 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_return] = ACTIONS(2966), + [anon_sym_break] = ACTIONS(2966), + [anon_sym_continue] = ACTIONS(2966), + [anon_sym_goto] = ACTIONS(2966), + [anon_sym_not] = ACTIONS(2966), + [anon_sym_compl] = ACTIONS(2966), + [anon_sym_DASH_DASH] = ACTIONS(2968), + [anon_sym_PLUS_PLUS] = ACTIONS(2968), + [anon_sym_sizeof] = ACTIONS(2966), + [anon_sym_offsetof] = ACTIONS(2966), + [anon_sym__Generic] = 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_L_DQUOTE] = ACTIONS(2968), + [anon_sym_u_DQUOTE] = ACTIONS(2968), + [anon_sym_U_DQUOTE] = ACTIONS(2968), + [anon_sym_u8_DQUOTE] = ACTIONS(2968), + [anon_sym_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), + [sym_auto] = ACTIONS(2966), + [anon_sym_decltype] = ACTIONS(2966), + [anon_sym_virtual] = ACTIONS(2966), + [anon_sym_explicit] = ACTIONS(2966), + [anon_sym_typename] = ACTIONS(2966), + [anon_sym_template] = ACTIONS(2966), + [anon_sym_operator] = ACTIONS(2966), + [anon_sym_try] = ACTIONS(2966), + [anon_sym_delete] = ACTIONS(2966), + [anon_sym_throw] = ACTIONS(2966), + [anon_sym_namespace] = ACTIONS(2966), + [anon_sym_using] = ACTIONS(2966), + [anon_sym_static_assert] = ACTIONS(2966), + [anon_sym_concept] = ACTIONS(2966), + [anon_sym_co_return] = ACTIONS(2966), + [anon_sym_co_yield] = ACTIONS(2966), + [anon_sym_R_DQUOTE] = ACTIONS(2968), + [anon_sym_LR_DQUOTE] = ACTIONS(2968), + [anon_sym_uR_DQUOTE] = ACTIONS(2968), + [anon_sym_UR_DQUOTE] = ACTIONS(2968), + [anon_sym_u8R_DQUOTE] = ACTIONS(2968), + [anon_sym_co_await] = ACTIONS(2966), + [anon_sym_new] = ACTIONS(2966), + [anon_sym_requires] = ACTIONS(2966), + [sym_this] = ACTIONS(2966), }, [407] = { - [sym_identifier] = ACTIONS(2556), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2558), - [anon_sym_AMP] = ACTIONS(2556), - [anon_sym_SEMI] = ACTIONS(2558), - [anon_sym_typedef] = ACTIONS(2556), - [anon_sym_extern] = ACTIONS(2556), - [anon_sym___attribute__] = ACTIONS(2556), - [anon_sym_COLON_COLON] = ACTIONS(2558), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2558), - [anon_sym___declspec] = ACTIONS(2556), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2556), - [anon_sym_static] = ACTIONS(2556), - [anon_sym_register] = ACTIONS(2556), - [anon_sym_inline] = ACTIONS(2556), - [anon_sym_thread_local] = ACTIONS(2556), - [anon_sym_const] = ACTIONS(2556), - [anon_sym_volatile] = ACTIONS(2556), - [anon_sym_restrict] = ACTIONS(2556), - [anon_sym__Atomic] = ACTIONS(2556), - [anon_sym_mutable] = ACTIONS(2556), - [anon_sym_constexpr] = ACTIONS(2556), - [anon_sym_constinit] = ACTIONS(2556), - [anon_sym_consteval] = ACTIONS(2556), - [anon_sym_signed] = ACTIONS(2556), - [anon_sym_unsigned] = ACTIONS(2556), - [anon_sym_long] = ACTIONS(2556), - [anon_sym_short] = ACTIONS(2556), - [sym_primitive_type] = ACTIONS(2556), - [anon_sym_enum] = ACTIONS(2556), - [anon_sym_class] = 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_return] = ACTIONS(2556), - [anon_sym_break] = ACTIONS(2556), - [anon_sym_continue] = ACTIONS(2556), - [anon_sym_goto] = ACTIONS(2556), - [anon_sym_not] = ACTIONS(2556), - [anon_sym_compl] = ACTIONS(2556), - [anon_sym_DASH_DASH] = ACTIONS(2558), - [anon_sym_PLUS_PLUS] = ACTIONS(2558), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2558), - [anon_sym_u_DQUOTE] = ACTIONS(2558), - [anon_sym_U_DQUOTE] = ACTIONS(2558), - [anon_sym_u8_DQUOTE] = ACTIONS(2558), - [anon_sym_DQUOTE] = ACTIONS(2558), - [sym_true] = ACTIONS(2556), - [sym_false] = ACTIONS(2556), - [sym_null] = ACTIONS(2556), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2556), - [anon_sym_decltype] = ACTIONS(2556), - [anon_sym_virtual] = ACTIONS(2556), - [anon_sym_explicit] = ACTIONS(2556), - [anon_sym_typename] = ACTIONS(2556), - [anon_sym_template] = ACTIONS(2556), - [anon_sym_operator] = ACTIONS(2556), - [anon_sym_try] = ACTIONS(2556), - [anon_sym_delete] = ACTIONS(2556), - [anon_sym_throw] = ACTIONS(2556), - [anon_sym_namespace] = ACTIONS(2556), - [anon_sym_using] = ACTIONS(2556), - [anon_sym_static_assert] = ACTIONS(2556), - [anon_sym_concept] = ACTIONS(2556), - [anon_sym_co_return] = ACTIONS(2556), - [anon_sym_co_yield] = ACTIONS(2556), - [anon_sym_R_DQUOTE] = ACTIONS(2558), - [anon_sym_LR_DQUOTE] = ACTIONS(2558), - [anon_sym_uR_DQUOTE] = ACTIONS(2558), - [anon_sym_UR_DQUOTE] = ACTIONS(2558), - [anon_sym_u8R_DQUOTE] = ACTIONS(2558), - [anon_sym_co_await] = ACTIONS(2556), - [anon_sym_new] = ACTIONS(2556), - [anon_sym_requires] = ACTIONS(2556), - [sym_this] = ACTIONS(2556), - [sym_nullptr] = ACTIONS(2556), + [sym_identifier] = ACTIONS(2970), + [aux_sym_preproc_include_token1] = ACTIONS(2970), + [aux_sym_preproc_def_token1] = ACTIONS(2970), + [aux_sym_preproc_if_token1] = ACTIONS(2970), + [aux_sym_preproc_if_token2] = ACTIONS(2970), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2970), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2970), + [aux_sym_preproc_else_token1] = ACTIONS(2970), + [aux_sym_preproc_elif_token1] = ACTIONS(2970), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2970), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2970), + [sym_preproc_directive] = 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_AMP_AMP] = ACTIONS(2972), + [anon_sym_AMP] = ACTIONS(2970), + [anon_sym_SEMI] = ACTIONS(2972), + [anon_sym_typedef] = ACTIONS(2970), + [anon_sym_extern] = ACTIONS(2970), + [anon_sym___attribute__] = ACTIONS(2970), + [anon_sym_COLON_COLON] = ACTIONS(2972), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2972), + [anon_sym___declspec] = ACTIONS(2970), + [anon_sym___based] = ACTIONS(2970), + [anon_sym___cdecl] = ACTIONS(2970), + [anon_sym___clrcall] = ACTIONS(2970), + [anon_sym___stdcall] = ACTIONS(2970), + [anon_sym___fastcall] = ACTIONS(2970), + [anon_sym___thiscall] = ACTIONS(2970), + [anon_sym___vectorcall] = ACTIONS(2970), + [anon_sym_LBRACE] = ACTIONS(2972), + [anon_sym_LBRACK] = ACTIONS(2970), + [anon_sym_static] = ACTIONS(2970), + [anon_sym_register] = ACTIONS(2970), + [anon_sym_inline] = ACTIONS(2970), + [anon_sym_thread_local] = 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_noreturn] = ACTIONS(2970), + [anon_sym_mutable] = ACTIONS(2970), + [anon_sym_constinit] = ACTIONS(2970), + [anon_sym_consteval] = ACTIONS(2970), + [anon_sym_signed] = ACTIONS(2970), + [anon_sym_unsigned] = ACTIONS(2970), + [anon_sym_long] = ACTIONS(2970), + [anon_sym_short] = ACTIONS(2970), + [sym_primitive_type] = ACTIONS(2970), + [anon_sym_enum] = ACTIONS(2970), + [anon_sym_class] = ACTIONS(2970), + [anon_sym_struct] = ACTIONS(2970), + [anon_sym_union] = ACTIONS(2970), + [anon_sym_if] = ACTIONS(2970), + [anon_sym_else] = ACTIONS(2974), + [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_return] = ACTIONS(2970), + [anon_sym_break] = ACTIONS(2970), + [anon_sym_continue] = ACTIONS(2970), + [anon_sym_goto] = ACTIONS(2970), + [anon_sym_not] = ACTIONS(2970), + [anon_sym_compl] = ACTIONS(2970), + [anon_sym_DASH_DASH] = ACTIONS(2972), + [anon_sym_PLUS_PLUS] = ACTIONS(2972), + [anon_sym_sizeof] = ACTIONS(2970), + [anon_sym_offsetof] = ACTIONS(2970), + [anon_sym__Generic] = 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_L_DQUOTE] = ACTIONS(2972), + [anon_sym_u_DQUOTE] = ACTIONS(2972), + [anon_sym_U_DQUOTE] = ACTIONS(2972), + [anon_sym_u8_DQUOTE] = ACTIONS(2972), + [anon_sym_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), + [sym_auto] = ACTIONS(2970), + [anon_sym_decltype] = ACTIONS(2970), + [anon_sym_virtual] = ACTIONS(2970), + [anon_sym_explicit] = ACTIONS(2970), + [anon_sym_typename] = ACTIONS(2970), + [anon_sym_template] = ACTIONS(2970), + [anon_sym_operator] = ACTIONS(2970), + [anon_sym_try] = ACTIONS(2970), + [anon_sym_delete] = ACTIONS(2970), + [anon_sym_throw] = ACTIONS(2970), + [anon_sym_namespace] = ACTIONS(2970), + [anon_sym_using] = ACTIONS(2970), + [anon_sym_static_assert] = ACTIONS(2970), + [anon_sym_concept] = ACTIONS(2970), + [anon_sym_co_return] = ACTIONS(2970), + [anon_sym_co_yield] = ACTIONS(2970), + [anon_sym_R_DQUOTE] = ACTIONS(2972), + [anon_sym_LR_DQUOTE] = ACTIONS(2972), + [anon_sym_uR_DQUOTE] = ACTIONS(2972), + [anon_sym_UR_DQUOTE] = ACTIONS(2972), + [anon_sym_u8R_DQUOTE] = ACTIONS(2972), + [anon_sym_co_await] = ACTIONS(2970), + [anon_sym_new] = ACTIONS(2970), + [anon_sym_requires] = ACTIONS(2970), + [sym_this] = ACTIONS(2970), }, [408] = { - [sym_type_qualifier] = STATE(3306), - [sym__type_specifier] = STATE(3903), - [sym_sized_type_specifier] = STATE(3003), - [sym_enum_specifier] = STATE(3003), - [sym_struct_specifier] = STATE(3003), - [sym_union_specifier] = STATE(3003), - [sym__expression] = STATE(3470), - [sym_conditional_expression] = STATE(3855), - [sym_assignment_expression] = STATE(3855), - [sym_pointer_expression] = STATE(2954), - [sym_unary_expression] = STATE(3855), - [sym_binary_expression] = STATE(3855), - [sym_update_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_type_descriptor] = STATE(5186), - [sym_sizeof_expression] = STATE(3855), - [sym_subscript_expression] = STATE(2954), - [sym_call_expression] = STATE(2954), - [sym_field_expression] = STATE(2954), - [sym_compound_literal_expression] = STATE(3855), - [sym_parenthesized_expression] = STATE(2954), - [sym_char_literal] = STATE(3557), - [sym_concatenated_string] = STATE(3557), - [sym_string_literal] = STATE(2955), - [sym_placeholder_type_specifier] = STATE(3003), - [sym_decltype_auto] = STATE(3008), - [sym_decltype] = STATE(2851), - [sym_class_specifier] = STATE(3003), - [sym__class_name] = STATE(5844), - [sym_dependent_type] = STATE(3003), - [sym_template_type] = STATE(4288), - [sym_template_function] = STATE(3855), - [sym_raw_string_literal] = STATE(2955), - [sym_co_await_expression] = STATE(3855), - [sym_new_expression] = STATE(3855), - [sym_delete_expression] = STATE(3855), - [sym_requires_clause] = STATE(3855), - [sym_requires_expression] = STATE(3855), - [sym_lambda_expression] = STATE(3855), - [sym_lambda_capture_specifier] = STATE(4501), - [sym_fold_expression] = STATE(3855), - [sym_parameter_pack_expansion] = STATE(3855), - [sym_type_parameter_pack_expansion] = STATE(5643), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4544), - [sym_qualified_identifier] = STATE(2954), - [sym_qualified_type_identifier] = STATE(4356), - [sym_user_defined_literal] = STATE(3855), - [aux_sym_type_definition_repeat1] = STATE(3306), - [aux_sym_sized_type_specifier_repeat1] = STATE(2022), - [sym_identifier] = ACTIONS(2408), - [anon_sym_LPAREN2] = ACTIONS(2410), - [anon_sym_BANG] = ACTIONS(2412), - [anon_sym_TILDE] = ACTIONS(2412), - [anon_sym_DASH] = ACTIONS(2414), - [anon_sym_PLUS] = ACTIONS(2414), - [anon_sym_STAR] = ACTIONS(2416), - [anon_sym_AMP] = ACTIONS(2416), - [anon_sym_COLON_COLON] = ACTIONS(2418), - [anon_sym_LBRACK] = ACTIONS(1539), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(2420), - [anon_sym_unsigned] = ACTIONS(2420), - [anon_sym_long] = ACTIONS(2420), - [anon_sym_short] = ACTIONS(2420), - [sym_primitive_type] = ACTIONS(2422), - [anon_sym_enum] = ACTIONS(2424), - [anon_sym_class] = ACTIONS(2426), - [anon_sym_struct] = ACTIONS(2428), - [anon_sym_union] = ACTIONS(2430), - [anon_sym_not] = ACTIONS(2414), - [anon_sym_compl] = ACTIONS(2414), - [anon_sym_DASH_DASH] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(2432), - [anon_sym_sizeof] = ACTIONS(2434), - [sym_number_literal] = ACTIONS(2436), - [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_L_DQUOTE] = ACTIONS(2440), - [anon_sym_u_DQUOTE] = ACTIONS(2440), - [anon_sym_U_DQUOTE] = ACTIONS(2440), - [anon_sym_u8_DQUOTE] = ACTIONS(2440), - [anon_sym_DQUOTE] = ACTIONS(2440), - [sym_true] = ACTIONS(2442), - [sym_false] = ACTIONS(2442), - [sym_null] = ACTIONS(2442), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2444), - [anon_sym_decltype] = ACTIONS(2446), - [anon_sym_typename] = ACTIONS(2448), - [anon_sym_template] = ACTIONS(996), - [anon_sym_GT2] = ACTIONS(2560), - [anon_sym_delete] = ACTIONS(2452), - [anon_sym_R_DQUOTE] = ACTIONS(2454), - [anon_sym_LR_DQUOTE] = ACTIONS(2454), - [anon_sym_uR_DQUOTE] = ACTIONS(2454), - [anon_sym_UR_DQUOTE] = ACTIONS(2454), - [anon_sym_u8R_DQUOTE] = ACTIONS(2454), - [anon_sym_co_await] = ACTIONS(2456), - [anon_sym_new] = ACTIONS(2458), - [anon_sym_requires] = ACTIONS(2460), - [sym_this] = ACTIONS(2442), - [sym_nullptr] = ACTIONS(2442), + [sym_identifier] = ACTIONS(2976), + [aux_sym_preproc_include_token1] = ACTIONS(2976), + [aux_sym_preproc_def_token1] = ACTIONS(2976), + [aux_sym_preproc_if_token1] = ACTIONS(2976), + [aux_sym_preproc_if_token2] = ACTIONS(2976), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2976), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2976), + [aux_sym_preproc_else_token1] = ACTIONS(2976), + [aux_sym_preproc_elif_token1] = ACTIONS(2976), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2976), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2976), + [sym_preproc_directive] = ACTIONS(2976), + [anon_sym_LPAREN2] = ACTIONS(2978), + [anon_sym_BANG] = ACTIONS(2978), + [anon_sym_TILDE] = ACTIONS(2978), + [anon_sym_DASH] = ACTIONS(2976), + [anon_sym_PLUS] = ACTIONS(2976), + [anon_sym_STAR] = ACTIONS(2978), + [anon_sym_AMP_AMP] = ACTIONS(2978), + [anon_sym_AMP] = ACTIONS(2976), + [anon_sym_SEMI] = ACTIONS(2978), + [anon_sym_typedef] = ACTIONS(2976), + [anon_sym_extern] = ACTIONS(2976), + [anon_sym___attribute__] = ACTIONS(2976), + [anon_sym_COLON_COLON] = ACTIONS(2978), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2978), + [anon_sym___declspec] = ACTIONS(2976), + [anon_sym___based] = ACTIONS(2976), + [anon_sym___cdecl] = ACTIONS(2976), + [anon_sym___clrcall] = ACTIONS(2976), + [anon_sym___stdcall] = ACTIONS(2976), + [anon_sym___fastcall] = ACTIONS(2976), + [anon_sym___thiscall] = ACTIONS(2976), + [anon_sym___vectorcall] = ACTIONS(2976), + [anon_sym_LBRACE] = ACTIONS(2978), + [anon_sym_LBRACK] = ACTIONS(2976), + [anon_sym_static] = ACTIONS(2976), + [anon_sym_register] = ACTIONS(2976), + [anon_sym_inline] = ACTIONS(2976), + [anon_sym_thread_local] = ACTIONS(2976), + [anon_sym_const] = ACTIONS(2976), + [anon_sym_constexpr] = ACTIONS(2976), + [anon_sym_volatile] = ACTIONS(2976), + [anon_sym_restrict] = ACTIONS(2976), + [anon_sym___restrict__] = ACTIONS(2976), + [anon_sym__Atomic] = ACTIONS(2976), + [anon_sym__Noreturn] = ACTIONS(2976), + [anon_sym_noreturn] = ACTIONS(2976), + [anon_sym_mutable] = ACTIONS(2976), + [anon_sym_constinit] = ACTIONS(2976), + [anon_sym_consteval] = ACTIONS(2976), + [anon_sym_signed] = ACTIONS(2976), + [anon_sym_unsigned] = ACTIONS(2976), + [anon_sym_long] = ACTIONS(2976), + [anon_sym_short] = ACTIONS(2976), + [sym_primitive_type] = ACTIONS(2976), + [anon_sym_enum] = ACTIONS(2976), + [anon_sym_class] = ACTIONS(2976), + [anon_sym_struct] = ACTIONS(2976), + [anon_sym_union] = ACTIONS(2976), + [anon_sym_if] = ACTIONS(2976), + [anon_sym_else] = ACTIONS(2976), + [anon_sym_switch] = ACTIONS(2976), + [anon_sym_case] = ACTIONS(2976), + [anon_sym_default] = ACTIONS(2976), + [anon_sym_while] = ACTIONS(2976), + [anon_sym_do] = ACTIONS(2976), + [anon_sym_for] = ACTIONS(2976), + [anon_sym_return] = ACTIONS(2976), + [anon_sym_break] = ACTIONS(2976), + [anon_sym_continue] = ACTIONS(2976), + [anon_sym_goto] = ACTIONS(2976), + [anon_sym_not] = ACTIONS(2976), + [anon_sym_compl] = ACTIONS(2976), + [anon_sym_DASH_DASH] = ACTIONS(2978), + [anon_sym_PLUS_PLUS] = ACTIONS(2978), + [anon_sym_sizeof] = ACTIONS(2976), + [anon_sym_offsetof] = ACTIONS(2976), + [anon_sym__Generic] = ACTIONS(2976), + [anon_sym_asm] = ACTIONS(2976), + [anon_sym___asm__] = ACTIONS(2976), + [sym_number_literal] = ACTIONS(2978), + [anon_sym_L_SQUOTE] = ACTIONS(2978), + [anon_sym_u_SQUOTE] = ACTIONS(2978), + [anon_sym_U_SQUOTE] = ACTIONS(2978), + [anon_sym_u8_SQUOTE] = ACTIONS(2978), + [anon_sym_SQUOTE] = ACTIONS(2978), + [anon_sym_L_DQUOTE] = ACTIONS(2978), + [anon_sym_u_DQUOTE] = ACTIONS(2978), + [anon_sym_U_DQUOTE] = ACTIONS(2978), + [anon_sym_u8_DQUOTE] = ACTIONS(2978), + [anon_sym_DQUOTE] = ACTIONS(2978), + [sym_true] = ACTIONS(2976), + [sym_false] = ACTIONS(2976), + [anon_sym_NULL] = ACTIONS(2976), + [anon_sym_nullptr] = ACTIONS(2976), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2976), + [anon_sym_decltype] = ACTIONS(2976), + [anon_sym_virtual] = ACTIONS(2976), + [anon_sym_explicit] = ACTIONS(2976), + [anon_sym_typename] = ACTIONS(2976), + [anon_sym_template] = ACTIONS(2976), + [anon_sym_operator] = ACTIONS(2976), + [anon_sym_try] = ACTIONS(2976), + [anon_sym_delete] = ACTIONS(2976), + [anon_sym_throw] = ACTIONS(2976), + [anon_sym_namespace] = ACTIONS(2976), + [anon_sym_using] = ACTIONS(2976), + [anon_sym_static_assert] = ACTIONS(2976), + [anon_sym_concept] = ACTIONS(2976), + [anon_sym_co_return] = ACTIONS(2976), + [anon_sym_co_yield] = ACTIONS(2976), + [anon_sym_R_DQUOTE] = ACTIONS(2978), + [anon_sym_LR_DQUOTE] = ACTIONS(2978), + [anon_sym_uR_DQUOTE] = ACTIONS(2978), + [anon_sym_UR_DQUOTE] = ACTIONS(2978), + [anon_sym_u8R_DQUOTE] = ACTIONS(2978), + [anon_sym_co_await] = ACTIONS(2976), + [anon_sym_new] = ACTIONS(2976), + [anon_sym_requires] = ACTIONS(2976), + [sym_this] = ACTIONS(2976), }, [409] = { - [sym_identifier] = ACTIONS(2462), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2464), - [anon_sym_AMP] = ACTIONS(2462), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_explicit] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_operator] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_namespace] = ACTIONS(2462), - [anon_sym_using] = ACTIONS(2462), - [anon_sym_static_assert] = ACTIONS(2462), - [anon_sym_concept] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_identifier] = ACTIONS(2980), + [aux_sym_preproc_include_token1] = ACTIONS(2980), + [aux_sym_preproc_def_token1] = ACTIONS(2980), + [aux_sym_preproc_if_token1] = ACTIONS(2980), + [aux_sym_preproc_if_token2] = ACTIONS(2980), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2980), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2980), + [aux_sym_preproc_else_token1] = ACTIONS(2980), + [aux_sym_preproc_elif_token1] = ACTIONS(2980), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2980), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2980), + [sym_preproc_directive] = ACTIONS(2980), + [anon_sym_LPAREN2] = ACTIONS(2982), + [anon_sym_BANG] = ACTIONS(2982), + [anon_sym_TILDE] = ACTIONS(2982), + [anon_sym_DASH] = ACTIONS(2980), + [anon_sym_PLUS] = ACTIONS(2980), + [anon_sym_STAR] = ACTIONS(2982), + [anon_sym_AMP_AMP] = ACTIONS(2982), + [anon_sym_AMP] = ACTIONS(2980), + [anon_sym_SEMI] = ACTIONS(2982), + [anon_sym_typedef] = ACTIONS(2980), + [anon_sym_extern] = ACTIONS(2980), + [anon_sym___attribute__] = ACTIONS(2980), + [anon_sym_COLON_COLON] = ACTIONS(2982), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2982), + [anon_sym___declspec] = ACTIONS(2980), + [anon_sym___based] = ACTIONS(2980), + [anon_sym___cdecl] = ACTIONS(2980), + [anon_sym___clrcall] = ACTIONS(2980), + [anon_sym___stdcall] = ACTIONS(2980), + [anon_sym___fastcall] = ACTIONS(2980), + [anon_sym___thiscall] = ACTIONS(2980), + [anon_sym___vectorcall] = ACTIONS(2980), + [anon_sym_LBRACE] = ACTIONS(2982), + [anon_sym_LBRACK] = ACTIONS(2980), + [anon_sym_static] = ACTIONS(2980), + [anon_sym_register] = ACTIONS(2980), + [anon_sym_inline] = ACTIONS(2980), + [anon_sym_thread_local] = ACTIONS(2980), + [anon_sym_const] = ACTIONS(2980), + [anon_sym_constexpr] = ACTIONS(2980), + [anon_sym_volatile] = ACTIONS(2980), + [anon_sym_restrict] = ACTIONS(2980), + [anon_sym___restrict__] = ACTIONS(2980), + [anon_sym__Atomic] = ACTIONS(2980), + [anon_sym__Noreturn] = ACTIONS(2980), + [anon_sym_noreturn] = ACTIONS(2980), + [anon_sym_mutable] = ACTIONS(2980), + [anon_sym_constinit] = ACTIONS(2980), + [anon_sym_consteval] = ACTIONS(2980), + [anon_sym_signed] = ACTIONS(2980), + [anon_sym_unsigned] = ACTIONS(2980), + [anon_sym_long] = ACTIONS(2980), + [anon_sym_short] = ACTIONS(2980), + [sym_primitive_type] = ACTIONS(2980), + [anon_sym_enum] = ACTIONS(2980), + [anon_sym_class] = ACTIONS(2980), + [anon_sym_struct] = ACTIONS(2980), + [anon_sym_union] = ACTIONS(2980), + [anon_sym_if] = ACTIONS(2980), + [anon_sym_else] = ACTIONS(2980), + [anon_sym_switch] = ACTIONS(2980), + [anon_sym_case] = ACTIONS(2980), + [anon_sym_default] = ACTIONS(2980), + [anon_sym_while] = ACTIONS(2980), + [anon_sym_do] = ACTIONS(2980), + [anon_sym_for] = ACTIONS(2980), + [anon_sym_return] = ACTIONS(2980), + [anon_sym_break] = ACTIONS(2980), + [anon_sym_continue] = ACTIONS(2980), + [anon_sym_goto] = ACTIONS(2980), + [anon_sym_not] = ACTIONS(2980), + [anon_sym_compl] = ACTIONS(2980), + [anon_sym_DASH_DASH] = ACTIONS(2982), + [anon_sym_PLUS_PLUS] = ACTIONS(2982), + [anon_sym_sizeof] = ACTIONS(2980), + [anon_sym_offsetof] = ACTIONS(2980), + [anon_sym__Generic] = ACTIONS(2980), + [anon_sym_asm] = ACTIONS(2980), + [anon_sym___asm__] = ACTIONS(2980), + [sym_number_literal] = ACTIONS(2982), + [anon_sym_L_SQUOTE] = ACTIONS(2982), + [anon_sym_u_SQUOTE] = ACTIONS(2982), + [anon_sym_U_SQUOTE] = ACTIONS(2982), + [anon_sym_u8_SQUOTE] = ACTIONS(2982), + [anon_sym_SQUOTE] = ACTIONS(2982), + [anon_sym_L_DQUOTE] = ACTIONS(2982), + [anon_sym_u_DQUOTE] = ACTIONS(2982), + [anon_sym_U_DQUOTE] = ACTIONS(2982), + [anon_sym_u8_DQUOTE] = ACTIONS(2982), + [anon_sym_DQUOTE] = ACTIONS(2982), + [sym_true] = ACTIONS(2980), + [sym_false] = ACTIONS(2980), + [anon_sym_NULL] = ACTIONS(2980), + [anon_sym_nullptr] = ACTIONS(2980), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2980), + [anon_sym_decltype] = ACTIONS(2980), + [anon_sym_virtual] = ACTIONS(2980), + [anon_sym_explicit] = ACTIONS(2980), + [anon_sym_typename] = ACTIONS(2980), + [anon_sym_template] = ACTIONS(2980), + [anon_sym_operator] = ACTIONS(2980), + [anon_sym_try] = ACTIONS(2980), + [anon_sym_delete] = ACTIONS(2980), + [anon_sym_throw] = ACTIONS(2980), + [anon_sym_namespace] = ACTIONS(2980), + [anon_sym_using] = ACTIONS(2980), + [anon_sym_static_assert] = ACTIONS(2980), + [anon_sym_concept] = ACTIONS(2980), + [anon_sym_co_return] = ACTIONS(2980), + [anon_sym_co_yield] = ACTIONS(2980), + [anon_sym_R_DQUOTE] = ACTIONS(2982), + [anon_sym_LR_DQUOTE] = ACTIONS(2982), + [anon_sym_uR_DQUOTE] = ACTIONS(2982), + [anon_sym_UR_DQUOTE] = ACTIONS(2982), + [anon_sym_u8R_DQUOTE] = ACTIONS(2982), + [anon_sym_co_await] = ACTIONS(2980), + [anon_sym_new] = ACTIONS(2980), + [anon_sym_requires] = ACTIONS(2980), + [sym_this] = ACTIONS(2980), }, [410] = { - [sym_identifier] = ACTIONS(2562), - [aux_sym_preproc_include_token1] = ACTIONS(2562), - [aux_sym_preproc_def_token1] = ACTIONS(2562), - [aux_sym_preproc_if_token1] = ACTIONS(2562), - [aux_sym_preproc_if_token2] = ACTIONS(2562), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2562), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2562), - [aux_sym_preproc_else_token1] = ACTIONS(2562), - [aux_sym_preproc_elif_token1] = ACTIONS(2562), - [sym_preproc_directive] = ACTIONS(2562), - [anon_sym_LPAREN2] = ACTIONS(2564), - [anon_sym_BANG] = ACTIONS(2564), - [anon_sym_TILDE] = ACTIONS(2564), - [anon_sym_DASH] = ACTIONS(2562), - [anon_sym_PLUS] = ACTIONS(2562), - [anon_sym_STAR] = ACTIONS(2564), - [anon_sym_AMP_AMP] = ACTIONS(2564), - [anon_sym_AMP] = ACTIONS(2562), - [anon_sym_SEMI] = ACTIONS(2564), - [anon_sym_typedef] = ACTIONS(2562), - [anon_sym_extern] = ACTIONS(2562), - [anon_sym___attribute__] = ACTIONS(2562), - [anon_sym_COLON_COLON] = ACTIONS(2564), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2564), - [anon_sym___declspec] = ACTIONS(2562), - [anon_sym___based] = ACTIONS(2562), - [anon_sym___cdecl] = ACTIONS(2562), - [anon_sym___clrcall] = ACTIONS(2562), - [anon_sym___stdcall] = ACTIONS(2562), - [anon_sym___fastcall] = ACTIONS(2562), - [anon_sym___thiscall] = ACTIONS(2562), - [anon_sym___vectorcall] = ACTIONS(2562), - [anon_sym_LBRACE] = ACTIONS(2564), - [anon_sym_LBRACK] = ACTIONS(2562), - [anon_sym_static] = ACTIONS(2562), - [anon_sym_register] = ACTIONS(2562), - [anon_sym_inline] = ACTIONS(2562), - [anon_sym_thread_local] = ACTIONS(2562), - [anon_sym_const] = ACTIONS(2562), - [anon_sym_volatile] = ACTIONS(2562), - [anon_sym_restrict] = ACTIONS(2562), - [anon_sym__Atomic] = ACTIONS(2562), - [anon_sym_mutable] = ACTIONS(2562), - [anon_sym_constexpr] = ACTIONS(2562), - [anon_sym_constinit] = ACTIONS(2562), - [anon_sym_consteval] = ACTIONS(2562), - [anon_sym_signed] = ACTIONS(2562), - [anon_sym_unsigned] = ACTIONS(2562), - [anon_sym_long] = ACTIONS(2562), - [anon_sym_short] = ACTIONS(2562), - [sym_primitive_type] = ACTIONS(2562), - [anon_sym_enum] = ACTIONS(2562), - [anon_sym_class] = ACTIONS(2562), - [anon_sym_struct] = ACTIONS(2562), - [anon_sym_union] = ACTIONS(2562), - [anon_sym_if] = ACTIONS(2562), - [anon_sym_else] = ACTIONS(2562), - [anon_sym_switch] = ACTIONS(2562), - [anon_sym_case] = ACTIONS(2562), - [anon_sym_default] = ACTIONS(2562), - [anon_sym_while] = ACTIONS(2562), - [anon_sym_do] = ACTIONS(2562), - [anon_sym_for] = ACTIONS(2562), - [anon_sym_return] = ACTIONS(2562), - [anon_sym_break] = ACTIONS(2562), - [anon_sym_continue] = ACTIONS(2562), - [anon_sym_goto] = ACTIONS(2562), - [anon_sym_not] = ACTIONS(2562), - [anon_sym_compl] = ACTIONS(2562), - [anon_sym_DASH_DASH] = ACTIONS(2564), - [anon_sym_PLUS_PLUS] = ACTIONS(2564), - [anon_sym_sizeof] = ACTIONS(2562), - [sym_number_literal] = ACTIONS(2564), - [anon_sym_L_SQUOTE] = ACTIONS(2564), - [anon_sym_u_SQUOTE] = ACTIONS(2564), - [anon_sym_U_SQUOTE] = ACTIONS(2564), - [anon_sym_u8_SQUOTE] = ACTIONS(2564), - [anon_sym_SQUOTE] = ACTIONS(2564), - [anon_sym_L_DQUOTE] = ACTIONS(2564), - [anon_sym_u_DQUOTE] = ACTIONS(2564), - [anon_sym_U_DQUOTE] = ACTIONS(2564), - [anon_sym_u8_DQUOTE] = ACTIONS(2564), - [anon_sym_DQUOTE] = ACTIONS(2564), - [sym_true] = ACTIONS(2562), - [sym_false] = ACTIONS(2562), - [sym_null] = ACTIONS(2562), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2562), - [anon_sym_decltype] = ACTIONS(2562), - [anon_sym_virtual] = ACTIONS(2562), - [anon_sym_explicit] = ACTIONS(2562), - [anon_sym_typename] = ACTIONS(2562), - [anon_sym_template] = ACTIONS(2562), - [anon_sym_operator] = ACTIONS(2562), - [anon_sym_try] = ACTIONS(2562), - [anon_sym_delete] = ACTIONS(2562), - [anon_sym_throw] = ACTIONS(2562), - [anon_sym_namespace] = ACTIONS(2562), - [anon_sym_using] = ACTIONS(2562), - [anon_sym_static_assert] = ACTIONS(2562), - [anon_sym_concept] = ACTIONS(2562), - [anon_sym_co_return] = ACTIONS(2562), - [anon_sym_co_yield] = ACTIONS(2562), - [anon_sym_R_DQUOTE] = ACTIONS(2564), - [anon_sym_LR_DQUOTE] = ACTIONS(2564), - [anon_sym_uR_DQUOTE] = ACTIONS(2564), - [anon_sym_UR_DQUOTE] = ACTIONS(2564), - [anon_sym_u8R_DQUOTE] = ACTIONS(2564), - [anon_sym_co_await] = ACTIONS(2562), - [anon_sym_new] = ACTIONS(2562), - [anon_sym_requires] = ACTIONS(2562), - [sym_this] = ACTIONS(2562), - [sym_nullptr] = ACTIONS(2562), + [sym_identifier] = ACTIONS(2984), + [aux_sym_preproc_include_token1] = ACTIONS(2984), + [aux_sym_preproc_def_token1] = ACTIONS(2984), + [aux_sym_preproc_if_token1] = ACTIONS(2984), + [aux_sym_preproc_if_token2] = ACTIONS(2984), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2984), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2984), + [aux_sym_preproc_else_token1] = ACTIONS(2984), + [aux_sym_preproc_elif_token1] = ACTIONS(2984), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2984), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2984), + [sym_preproc_directive] = ACTIONS(2984), + [anon_sym_LPAREN2] = ACTIONS(2986), + [anon_sym_BANG] = ACTIONS(2986), + [anon_sym_TILDE] = ACTIONS(2986), + [anon_sym_DASH] = ACTIONS(2984), + [anon_sym_PLUS] = ACTIONS(2984), + [anon_sym_STAR] = ACTIONS(2986), + [anon_sym_AMP_AMP] = ACTIONS(2986), + [anon_sym_AMP] = ACTIONS(2984), + [anon_sym_SEMI] = ACTIONS(2986), + [anon_sym_typedef] = ACTIONS(2984), + [anon_sym_extern] = ACTIONS(2984), + [anon_sym___attribute__] = ACTIONS(2984), + [anon_sym_COLON_COLON] = ACTIONS(2986), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2986), + [anon_sym___declspec] = ACTIONS(2984), + [anon_sym___based] = ACTIONS(2984), + [anon_sym___cdecl] = ACTIONS(2984), + [anon_sym___clrcall] = ACTIONS(2984), + [anon_sym___stdcall] = ACTIONS(2984), + [anon_sym___fastcall] = ACTIONS(2984), + [anon_sym___thiscall] = ACTIONS(2984), + [anon_sym___vectorcall] = ACTIONS(2984), + [anon_sym_LBRACE] = ACTIONS(2986), + [anon_sym_LBRACK] = ACTIONS(2984), + [anon_sym_static] = ACTIONS(2984), + [anon_sym_register] = ACTIONS(2984), + [anon_sym_inline] = ACTIONS(2984), + [anon_sym_thread_local] = ACTIONS(2984), + [anon_sym_const] = ACTIONS(2984), + [anon_sym_constexpr] = ACTIONS(2984), + [anon_sym_volatile] = ACTIONS(2984), + [anon_sym_restrict] = ACTIONS(2984), + [anon_sym___restrict__] = ACTIONS(2984), + [anon_sym__Atomic] = ACTIONS(2984), + [anon_sym__Noreturn] = ACTIONS(2984), + [anon_sym_noreturn] = ACTIONS(2984), + [anon_sym_mutable] = ACTIONS(2984), + [anon_sym_constinit] = ACTIONS(2984), + [anon_sym_consteval] = ACTIONS(2984), + [anon_sym_signed] = ACTIONS(2984), + [anon_sym_unsigned] = ACTIONS(2984), + [anon_sym_long] = ACTIONS(2984), + [anon_sym_short] = ACTIONS(2984), + [sym_primitive_type] = ACTIONS(2984), + [anon_sym_enum] = ACTIONS(2984), + [anon_sym_class] = ACTIONS(2984), + [anon_sym_struct] = ACTIONS(2984), + [anon_sym_union] = ACTIONS(2984), + [anon_sym_if] = ACTIONS(2984), + [anon_sym_else] = ACTIONS(2984), + [anon_sym_switch] = ACTIONS(2984), + [anon_sym_case] = ACTIONS(2984), + [anon_sym_default] = ACTIONS(2984), + [anon_sym_while] = ACTIONS(2984), + [anon_sym_do] = ACTIONS(2984), + [anon_sym_for] = ACTIONS(2984), + [anon_sym_return] = ACTIONS(2984), + [anon_sym_break] = ACTIONS(2984), + [anon_sym_continue] = ACTIONS(2984), + [anon_sym_goto] = ACTIONS(2984), + [anon_sym_not] = ACTIONS(2984), + [anon_sym_compl] = ACTIONS(2984), + [anon_sym_DASH_DASH] = ACTIONS(2986), + [anon_sym_PLUS_PLUS] = ACTIONS(2986), + [anon_sym_sizeof] = ACTIONS(2984), + [anon_sym_offsetof] = ACTIONS(2984), + [anon_sym__Generic] = ACTIONS(2984), + [anon_sym_asm] = ACTIONS(2984), + [anon_sym___asm__] = ACTIONS(2984), + [sym_number_literal] = ACTIONS(2986), + [anon_sym_L_SQUOTE] = ACTIONS(2986), + [anon_sym_u_SQUOTE] = ACTIONS(2986), + [anon_sym_U_SQUOTE] = ACTIONS(2986), + [anon_sym_u8_SQUOTE] = ACTIONS(2986), + [anon_sym_SQUOTE] = ACTIONS(2986), + [anon_sym_L_DQUOTE] = ACTIONS(2986), + [anon_sym_u_DQUOTE] = ACTIONS(2986), + [anon_sym_U_DQUOTE] = ACTIONS(2986), + [anon_sym_u8_DQUOTE] = ACTIONS(2986), + [anon_sym_DQUOTE] = ACTIONS(2986), + [sym_true] = ACTIONS(2984), + [sym_false] = ACTIONS(2984), + [anon_sym_NULL] = ACTIONS(2984), + [anon_sym_nullptr] = ACTIONS(2984), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2984), + [anon_sym_decltype] = ACTIONS(2984), + [anon_sym_virtual] = ACTIONS(2984), + [anon_sym_explicit] = ACTIONS(2984), + [anon_sym_typename] = ACTIONS(2984), + [anon_sym_template] = ACTIONS(2984), + [anon_sym_operator] = ACTIONS(2984), + [anon_sym_try] = ACTIONS(2984), + [anon_sym_delete] = ACTIONS(2984), + [anon_sym_throw] = ACTIONS(2984), + [anon_sym_namespace] = ACTIONS(2984), + [anon_sym_using] = ACTIONS(2984), + [anon_sym_static_assert] = ACTIONS(2984), + [anon_sym_concept] = ACTIONS(2984), + [anon_sym_co_return] = ACTIONS(2984), + [anon_sym_co_yield] = ACTIONS(2984), + [anon_sym_R_DQUOTE] = ACTIONS(2986), + [anon_sym_LR_DQUOTE] = ACTIONS(2986), + [anon_sym_uR_DQUOTE] = ACTIONS(2986), + [anon_sym_UR_DQUOTE] = ACTIONS(2986), + [anon_sym_u8R_DQUOTE] = ACTIONS(2986), + [anon_sym_co_await] = ACTIONS(2984), + [anon_sym_new] = ACTIONS(2984), + [anon_sym_requires] = ACTIONS(2984), + [sym_this] = ACTIONS(2984), }, [411] = { - [sym_type_qualifier] = STATE(3306), - [sym__type_specifier] = STATE(3903), - [sym_sized_type_specifier] = STATE(3003), - [sym_enum_specifier] = STATE(3003), - [sym_struct_specifier] = STATE(3003), - [sym_union_specifier] = STATE(3003), - [sym__expression] = STATE(3474), - [sym_conditional_expression] = STATE(3855), - [sym_assignment_expression] = STATE(3855), - [sym_pointer_expression] = STATE(2954), - [sym_unary_expression] = STATE(3855), - [sym_binary_expression] = STATE(3855), - [sym_update_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_type_descriptor] = STATE(5195), - [sym_sizeof_expression] = STATE(3855), - [sym_subscript_expression] = STATE(2954), - [sym_call_expression] = STATE(2954), - [sym_field_expression] = STATE(2954), - [sym_compound_literal_expression] = STATE(3855), - [sym_parenthesized_expression] = STATE(2954), - [sym_char_literal] = STATE(3557), - [sym_concatenated_string] = STATE(3557), - [sym_string_literal] = STATE(2955), - [sym_placeholder_type_specifier] = STATE(3003), - [sym_decltype_auto] = STATE(3008), - [sym_decltype] = STATE(2851), - [sym_class_specifier] = STATE(3003), - [sym__class_name] = STATE(5844), - [sym_dependent_type] = STATE(3003), - [sym_template_type] = STATE(4288), - [sym_template_function] = STATE(3855), - [sym_raw_string_literal] = STATE(2955), - [sym_co_await_expression] = STATE(3855), - [sym_new_expression] = STATE(3855), - [sym_delete_expression] = STATE(3855), - [sym_requires_clause] = STATE(3855), - [sym_requires_expression] = STATE(3855), - [sym_lambda_expression] = STATE(3855), - [sym_lambda_capture_specifier] = STATE(4501), - [sym_fold_expression] = STATE(3855), - [sym_parameter_pack_expansion] = STATE(3855), - [sym_type_parameter_pack_expansion] = STATE(5629), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4544), - [sym_qualified_identifier] = STATE(2954), - [sym_qualified_type_identifier] = STATE(4356), - [sym_user_defined_literal] = STATE(3855), - [aux_sym_type_definition_repeat1] = STATE(3306), - [aux_sym_sized_type_specifier_repeat1] = STATE(2022), - [sym_identifier] = ACTIONS(2408), - [anon_sym_LPAREN2] = ACTIONS(2410), - [anon_sym_BANG] = ACTIONS(2412), - [anon_sym_TILDE] = ACTIONS(2412), - [anon_sym_DASH] = ACTIONS(2414), - [anon_sym_PLUS] = ACTIONS(2414), - [anon_sym_STAR] = ACTIONS(2416), - [anon_sym_AMP] = ACTIONS(2416), - [anon_sym_COLON_COLON] = ACTIONS(2418), - [anon_sym_LBRACK] = ACTIONS(1539), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(2420), - [anon_sym_unsigned] = ACTIONS(2420), - [anon_sym_long] = ACTIONS(2420), - [anon_sym_short] = ACTIONS(2420), - [sym_primitive_type] = ACTIONS(2422), - [anon_sym_enum] = ACTIONS(2424), - [anon_sym_class] = ACTIONS(2426), - [anon_sym_struct] = ACTIONS(2428), - [anon_sym_union] = ACTIONS(2430), - [anon_sym_not] = ACTIONS(2414), - [anon_sym_compl] = ACTIONS(2414), - [anon_sym_DASH_DASH] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(2432), - [anon_sym_sizeof] = ACTIONS(2434), - [sym_number_literal] = ACTIONS(2436), - [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_L_DQUOTE] = ACTIONS(2440), - [anon_sym_u_DQUOTE] = ACTIONS(2440), - [anon_sym_U_DQUOTE] = ACTIONS(2440), - [anon_sym_u8_DQUOTE] = ACTIONS(2440), - [anon_sym_DQUOTE] = ACTIONS(2440), - [sym_true] = ACTIONS(2442), - [sym_false] = ACTIONS(2442), - [sym_null] = ACTIONS(2442), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2444), - [anon_sym_decltype] = ACTIONS(2446), - [anon_sym_typename] = ACTIONS(2448), - [anon_sym_template] = ACTIONS(996), - [anon_sym_GT2] = ACTIONS(2566), - [anon_sym_delete] = ACTIONS(2452), - [anon_sym_R_DQUOTE] = ACTIONS(2454), - [anon_sym_LR_DQUOTE] = ACTIONS(2454), - [anon_sym_uR_DQUOTE] = ACTIONS(2454), - [anon_sym_UR_DQUOTE] = ACTIONS(2454), - [anon_sym_u8R_DQUOTE] = ACTIONS(2454), - [anon_sym_co_await] = ACTIONS(2456), - [anon_sym_new] = ACTIONS(2458), - [anon_sym_requires] = ACTIONS(2460), - [sym_this] = ACTIONS(2442), - [sym_nullptr] = ACTIONS(2442), + [sym_identifier] = ACTIONS(2988), + [aux_sym_preproc_include_token1] = ACTIONS(2988), + [aux_sym_preproc_def_token1] = ACTIONS(2988), + [aux_sym_preproc_if_token1] = ACTIONS(2988), + [aux_sym_preproc_if_token2] = ACTIONS(2988), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2988), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2988), + [aux_sym_preproc_else_token1] = ACTIONS(2988), + [aux_sym_preproc_elif_token1] = ACTIONS(2988), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2988), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2988), + [sym_preproc_directive] = ACTIONS(2988), + [anon_sym_LPAREN2] = ACTIONS(2990), + [anon_sym_BANG] = ACTIONS(2990), + [anon_sym_TILDE] = ACTIONS(2990), + [anon_sym_DASH] = ACTIONS(2988), + [anon_sym_PLUS] = ACTIONS(2988), + [anon_sym_STAR] = ACTIONS(2990), + [anon_sym_AMP_AMP] = ACTIONS(2990), + [anon_sym_AMP] = ACTIONS(2988), + [anon_sym_SEMI] = ACTIONS(2990), + [anon_sym_typedef] = ACTIONS(2988), + [anon_sym_extern] = ACTIONS(2988), + [anon_sym___attribute__] = ACTIONS(2988), + [anon_sym_COLON_COLON] = ACTIONS(2990), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2990), + [anon_sym___declspec] = ACTIONS(2988), + [anon_sym___based] = ACTIONS(2988), + [anon_sym___cdecl] = ACTIONS(2988), + [anon_sym___clrcall] = ACTIONS(2988), + [anon_sym___stdcall] = ACTIONS(2988), + [anon_sym___fastcall] = ACTIONS(2988), + [anon_sym___thiscall] = ACTIONS(2988), + [anon_sym___vectorcall] = ACTIONS(2988), + [anon_sym_LBRACE] = ACTIONS(2990), + [anon_sym_LBRACK] = ACTIONS(2988), + [anon_sym_static] = ACTIONS(2988), + [anon_sym_register] = ACTIONS(2988), + [anon_sym_inline] = ACTIONS(2988), + [anon_sym_thread_local] = ACTIONS(2988), + [anon_sym_const] = ACTIONS(2988), + [anon_sym_constexpr] = ACTIONS(2988), + [anon_sym_volatile] = ACTIONS(2988), + [anon_sym_restrict] = ACTIONS(2988), + [anon_sym___restrict__] = ACTIONS(2988), + [anon_sym__Atomic] = ACTIONS(2988), + [anon_sym__Noreturn] = ACTIONS(2988), + [anon_sym_noreturn] = ACTIONS(2988), + [anon_sym_mutable] = ACTIONS(2988), + [anon_sym_constinit] = ACTIONS(2988), + [anon_sym_consteval] = ACTIONS(2988), + [anon_sym_signed] = ACTIONS(2988), + [anon_sym_unsigned] = ACTIONS(2988), + [anon_sym_long] = ACTIONS(2988), + [anon_sym_short] = ACTIONS(2988), + [sym_primitive_type] = ACTIONS(2988), + [anon_sym_enum] = ACTIONS(2988), + [anon_sym_class] = ACTIONS(2988), + [anon_sym_struct] = ACTIONS(2988), + [anon_sym_union] = ACTIONS(2988), + [anon_sym_if] = ACTIONS(2988), + [anon_sym_else] = ACTIONS(2988), + [anon_sym_switch] = ACTIONS(2988), + [anon_sym_case] = ACTIONS(2988), + [anon_sym_default] = ACTIONS(2988), + [anon_sym_while] = ACTIONS(2988), + [anon_sym_do] = ACTIONS(2988), + [anon_sym_for] = ACTIONS(2988), + [anon_sym_return] = ACTIONS(2988), + [anon_sym_break] = ACTIONS(2988), + [anon_sym_continue] = ACTIONS(2988), + [anon_sym_goto] = ACTIONS(2988), + [anon_sym_not] = ACTIONS(2988), + [anon_sym_compl] = ACTIONS(2988), + [anon_sym_DASH_DASH] = ACTIONS(2990), + [anon_sym_PLUS_PLUS] = ACTIONS(2990), + [anon_sym_sizeof] = ACTIONS(2988), + [anon_sym_offsetof] = ACTIONS(2988), + [anon_sym__Generic] = ACTIONS(2988), + [anon_sym_asm] = ACTIONS(2988), + [anon_sym___asm__] = ACTIONS(2988), + [sym_number_literal] = ACTIONS(2990), + [anon_sym_L_SQUOTE] = ACTIONS(2990), + [anon_sym_u_SQUOTE] = ACTIONS(2990), + [anon_sym_U_SQUOTE] = ACTIONS(2990), + [anon_sym_u8_SQUOTE] = ACTIONS(2990), + [anon_sym_SQUOTE] = ACTIONS(2990), + [anon_sym_L_DQUOTE] = ACTIONS(2990), + [anon_sym_u_DQUOTE] = ACTIONS(2990), + [anon_sym_U_DQUOTE] = ACTIONS(2990), + [anon_sym_u8_DQUOTE] = ACTIONS(2990), + [anon_sym_DQUOTE] = ACTIONS(2990), + [sym_true] = ACTIONS(2988), + [sym_false] = ACTIONS(2988), + [anon_sym_NULL] = ACTIONS(2988), + [anon_sym_nullptr] = ACTIONS(2988), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2988), + [anon_sym_decltype] = ACTIONS(2988), + [anon_sym_virtual] = ACTIONS(2988), + [anon_sym_explicit] = ACTIONS(2988), + [anon_sym_typename] = ACTIONS(2988), + [anon_sym_template] = ACTIONS(2988), + [anon_sym_operator] = ACTIONS(2988), + [anon_sym_try] = ACTIONS(2988), + [anon_sym_delete] = ACTIONS(2988), + [anon_sym_throw] = ACTIONS(2988), + [anon_sym_namespace] = ACTIONS(2988), + [anon_sym_using] = ACTIONS(2988), + [anon_sym_static_assert] = ACTIONS(2988), + [anon_sym_concept] = ACTIONS(2988), + [anon_sym_co_return] = ACTIONS(2988), + [anon_sym_co_yield] = ACTIONS(2988), + [anon_sym_R_DQUOTE] = ACTIONS(2990), + [anon_sym_LR_DQUOTE] = ACTIONS(2990), + [anon_sym_uR_DQUOTE] = ACTIONS(2990), + [anon_sym_UR_DQUOTE] = ACTIONS(2990), + [anon_sym_u8R_DQUOTE] = ACTIONS(2990), + [anon_sym_co_await] = ACTIONS(2988), + [anon_sym_new] = ACTIONS(2988), + [anon_sym_requires] = ACTIONS(2988), + [sym_this] = ACTIONS(2988), }, [412] = { - [sym_identifier] = ACTIONS(2568), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2570), - [anon_sym_AMP] = ACTIONS(2568), - [anon_sym_SEMI] = ACTIONS(2570), - [anon_sym_typedef] = ACTIONS(2568), - [anon_sym_extern] = ACTIONS(2568), - [anon_sym___attribute__] = ACTIONS(2568), - [anon_sym_COLON_COLON] = ACTIONS(2570), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2570), - [anon_sym___declspec] = ACTIONS(2568), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2568), - [anon_sym_static] = ACTIONS(2568), - [anon_sym_register] = ACTIONS(2568), - [anon_sym_inline] = ACTIONS(2568), - [anon_sym_thread_local] = ACTIONS(2568), - [anon_sym_const] = ACTIONS(2568), - [anon_sym_volatile] = ACTIONS(2568), - [anon_sym_restrict] = ACTIONS(2568), - [anon_sym__Atomic] = ACTIONS(2568), - [anon_sym_mutable] = ACTIONS(2568), - [anon_sym_constexpr] = ACTIONS(2568), - [anon_sym_constinit] = ACTIONS(2568), - [anon_sym_consteval] = ACTIONS(2568), - [anon_sym_signed] = ACTIONS(2568), - [anon_sym_unsigned] = ACTIONS(2568), - [anon_sym_long] = ACTIONS(2568), - [anon_sym_short] = ACTIONS(2568), - [sym_primitive_type] = ACTIONS(2568), - [anon_sym_enum] = ACTIONS(2568), - [anon_sym_class] = 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_return] = ACTIONS(2568), - [anon_sym_break] = ACTIONS(2568), - [anon_sym_continue] = ACTIONS(2568), - [anon_sym_goto] = ACTIONS(2568), - [anon_sym_not] = ACTIONS(2568), - [anon_sym_compl] = ACTIONS(2568), - [anon_sym_DASH_DASH] = ACTIONS(2570), - [anon_sym_PLUS_PLUS] = ACTIONS(2570), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2570), - [anon_sym_u_DQUOTE] = ACTIONS(2570), - [anon_sym_U_DQUOTE] = ACTIONS(2570), - [anon_sym_u8_DQUOTE] = ACTIONS(2570), - [anon_sym_DQUOTE] = ACTIONS(2570), - [sym_true] = ACTIONS(2568), - [sym_false] = ACTIONS(2568), - [sym_null] = ACTIONS(2568), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2568), - [anon_sym_decltype] = ACTIONS(2568), - [anon_sym_virtual] = ACTIONS(2568), - [anon_sym_explicit] = ACTIONS(2568), - [anon_sym_typename] = ACTIONS(2568), - [anon_sym_template] = ACTIONS(2568), - [anon_sym_operator] = ACTIONS(2568), - [anon_sym_try] = ACTIONS(2568), - [anon_sym_delete] = ACTIONS(2568), - [anon_sym_throw] = ACTIONS(2568), - [anon_sym_namespace] = ACTIONS(2568), - [anon_sym_using] = ACTIONS(2568), - [anon_sym_static_assert] = ACTIONS(2568), - [anon_sym_concept] = ACTIONS(2568), - [anon_sym_co_return] = ACTIONS(2568), - [anon_sym_co_yield] = ACTIONS(2568), - [anon_sym_R_DQUOTE] = ACTIONS(2570), - [anon_sym_LR_DQUOTE] = ACTIONS(2570), - [anon_sym_uR_DQUOTE] = ACTIONS(2570), - [anon_sym_UR_DQUOTE] = ACTIONS(2570), - [anon_sym_u8R_DQUOTE] = ACTIONS(2570), - [anon_sym_co_await] = ACTIONS(2568), - [anon_sym_new] = ACTIONS(2568), - [anon_sym_requires] = ACTIONS(2568), - [sym_this] = ACTIONS(2568), - [sym_nullptr] = ACTIONS(2568), + [sym_identifier] = ACTIONS(2992), + [aux_sym_preproc_include_token1] = ACTIONS(2992), + [aux_sym_preproc_def_token1] = ACTIONS(2992), + [aux_sym_preproc_if_token1] = ACTIONS(2992), + [aux_sym_preproc_if_token2] = ACTIONS(2992), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2992), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2992), + [aux_sym_preproc_else_token1] = ACTIONS(2992), + [aux_sym_preproc_elif_token1] = ACTIONS(2992), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2992), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2992), + [sym_preproc_directive] = ACTIONS(2992), + [anon_sym_LPAREN2] = ACTIONS(2994), + [anon_sym_BANG] = ACTIONS(2994), + [anon_sym_TILDE] = ACTIONS(2994), + [anon_sym_DASH] = ACTIONS(2992), + [anon_sym_PLUS] = ACTIONS(2992), + [anon_sym_STAR] = ACTIONS(2994), + [anon_sym_AMP_AMP] = ACTIONS(2994), + [anon_sym_AMP] = ACTIONS(2992), + [anon_sym_SEMI] = ACTIONS(2994), + [anon_sym_typedef] = ACTIONS(2992), + [anon_sym_extern] = ACTIONS(2992), + [anon_sym___attribute__] = ACTIONS(2992), + [anon_sym_COLON_COLON] = ACTIONS(2994), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2994), + [anon_sym___declspec] = ACTIONS(2992), + [anon_sym___based] = ACTIONS(2992), + [anon_sym___cdecl] = ACTIONS(2992), + [anon_sym___clrcall] = ACTIONS(2992), + [anon_sym___stdcall] = ACTIONS(2992), + [anon_sym___fastcall] = ACTIONS(2992), + [anon_sym___thiscall] = ACTIONS(2992), + [anon_sym___vectorcall] = ACTIONS(2992), + [anon_sym_LBRACE] = ACTIONS(2994), + [anon_sym_LBRACK] = ACTIONS(2992), + [anon_sym_static] = ACTIONS(2992), + [anon_sym_register] = ACTIONS(2992), + [anon_sym_inline] = ACTIONS(2992), + [anon_sym_thread_local] = ACTIONS(2992), + [anon_sym_const] = ACTIONS(2992), + [anon_sym_constexpr] = ACTIONS(2992), + [anon_sym_volatile] = ACTIONS(2992), + [anon_sym_restrict] = ACTIONS(2992), + [anon_sym___restrict__] = ACTIONS(2992), + [anon_sym__Atomic] = ACTIONS(2992), + [anon_sym__Noreturn] = ACTIONS(2992), + [anon_sym_noreturn] = ACTIONS(2992), + [anon_sym_mutable] = ACTIONS(2992), + [anon_sym_constinit] = ACTIONS(2992), + [anon_sym_consteval] = ACTIONS(2992), + [anon_sym_signed] = ACTIONS(2992), + [anon_sym_unsigned] = ACTIONS(2992), + [anon_sym_long] = ACTIONS(2992), + [anon_sym_short] = ACTIONS(2992), + [sym_primitive_type] = ACTIONS(2992), + [anon_sym_enum] = ACTIONS(2992), + [anon_sym_class] = ACTIONS(2992), + [anon_sym_struct] = ACTIONS(2992), + [anon_sym_union] = ACTIONS(2992), + [anon_sym_if] = ACTIONS(2992), + [anon_sym_else] = ACTIONS(2992), + [anon_sym_switch] = ACTIONS(2992), + [anon_sym_case] = ACTIONS(2992), + [anon_sym_default] = ACTIONS(2992), + [anon_sym_while] = ACTIONS(2992), + [anon_sym_do] = ACTIONS(2992), + [anon_sym_for] = ACTIONS(2992), + [anon_sym_return] = ACTIONS(2992), + [anon_sym_break] = ACTIONS(2992), + [anon_sym_continue] = ACTIONS(2992), + [anon_sym_goto] = ACTIONS(2992), + [anon_sym_not] = ACTIONS(2992), + [anon_sym_compl] = ACTIONS(2992), + [anon_sym_DASH_DASH] = ACTIONS(2994), + [anon_sym_PLUS_PLUS] = ACTIONS(2994), + [anon_sym_sizeof] = ACTIONS(2992), + [anon_sym_offsetof] = ACTIONS(2992), + [anon_sym__Generic] = ACTIONS(2992), + [anon_sym_asm] = ACTIONS(2992), + [anon_sym___asm__] = ACTIONS(2992), + [sym_number_literal] = ACTIONS(2994), + [anon_sym_L_SQUOTE] = ACTIONS(2994), + [anon_sym_u_SQUOTE] = ACTIONS(2994), + [anon_sym_U_SQUOTE] = ACTIONS(2994), + [anon_sym_u8_SQUOTE] = ACTIONS(2994), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_L_DQUOTE] = ACTIONS(2994), + [anon_sym_u_DQUOTE] = ACTIONS(2994), + [anon_sym_U_DQUOTE] = ACTIONS(2994), + [anon_sym_u8_DQUOTE] = ACTIONS(2994), + [anon_sym_DQUOTE] = ACTIONS(2994), + [sym_true] = ACTIONS(2992), + [sym_false] = ACTIONS(2992), + [anon_sym_NULL] = ACTIONS(2992), + [anon_sym_nullptr] = ACTIONS(2992), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2992), + [anon_sym_decltype] = ACTIONS(2992), + [anon_sym_virtual] = ACTIONS(2992), + [anon_sym_explicit] = ACTIONS(2992), + [anon_sym_typename] = ACTIONS(2992), + [anon_sym_template] = ACTIONS(2992), + [anon_sym_operator] = ACTIONS(2992), + [anon_sym_try] = ACTIONS(2992), + [anon_sym_delete] = ACTIONS(2992), + [anon_sym_throw] = ACTIONS(2992), + [anon_sym_namespace] = ACTIONS(2992), + [anon_sym_using] = ACTIONS(2992), + [anon_sym_static_assert] = ACTIONS(2992), + [anon_sym_concept] = ACTIONS(2992), + [anon_sym_co_return] = ACTIONS(2992), + [anon_sym_co_yield] = ACTIONS(2992), + [anon_sym_R_DQUOTE] = ACTIONS(2994), + [anon_sym_LR_DQUOTE] = ACTIONS(2994), + [anon_sym_uR_DQUOTE] = ACTIONS(2994), + [anon_sym_UR_DQUOTE] = ACTIONS(2994), + [anon_sym_u8R_DQUOTE] = ACTIONS(2994), + [anon_sym_co_await] = ACTIONS(2992), + [anon_sym_new] = ACTIONS(2992), + [anon_sym_requires] = ACTIONS(2992), + [sym_this] = ACTIONS(2992), }, [413] = { - [sym_identifier] = ACTIONS(2572), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2574), - [anon_sym_AMP] = ACTIONS(2572), - [anon_sym_SEMI] = ACTIONS(2574), - [anon_sym_typedef] = ACTIONS(2572), - [anon_sym_extern] = ACTIONS(2572), - [anon_sym___attribute__] = ACTIONS(2572), - [anon_sym_COLON_COLON] = ACTIONS(2574), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2574), - [anon_sym___declspec] = ACTIONS(2572), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2572), - [anon_sym_static] = ACTIONS(2572), - [anon_sym_register] = ACTIONS(2572), - [anon_sym_inline] = ACTIONS(2572), - [anon_sym_thread_local] = ACTIONS(2572), - [anon_sym_const] = ACTIONS(2572), - [anon_sym_volatile] = ACTIONS(2572), - [anon_sym_restrict] = ACTIONS(2572), - [anon_sym__Atomic] = ACTIONS(2572), - [anon_sym_mutable] = ACTIONS(2572), - [anon_sym_constexpr] = ACTIONS(2572), - [anon_sym_constinit] = ACTIONS(2572), - [anon_sym_consteval] = ACTIONS(2572), - [anon_sym_signed] = ACTIONS(2572), - [anon_sym_unsigned] = ACTIONS(2572), - [anon_sym_long] = ACTIONS(2572), - [anon_sym_short] = ACTIONS(2572), - [sym_primitive_type] = ACTIONS(2572), - [anon_sym_enum] = ACTIONS(2572), - [anon_sym_class] = ACTIONS(2572), - [anon_sym_struct] = ACTIONS(2572), - [anon_sym_union] = ACTIONS(2572), - [anon_sym_if] = ACTIONS(2572), - [anon_sym_else] = 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_return] = ACTIONS(2572), - [anon_sym_break] = ACTIONS(2572), - [anon_sym_continue] = ACTIONS(2572), - [anon_sym_goto] = ACTIONS(2572), - [anon_sym_not] = ACTIONS(2572), - [anon_sym_compl] = ACTIONS(2572), - [anon_sym_DASH_DASH] = ACTIONS(2574), - [anon_sym_PLUS_PLUS] = ACTIONS(2574), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2574), - [anon_sym_u_DQUOTE] = ACTIONS(2574), - [anon_sym_U_DQUOTE] = ACTIONS(2574), - [anon_sym_u8_DQUOTE] = ACTIONS(2574), - [anon_sym_DQUOTE] = ACTIONS(2574), - [sym_true] = ACTIONS(2572), - [sym_false] = ACTIONS(2572), - [sym_null] = ACTIONS(2572), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2572), - [anon_sym_decltype] = ACTIONS(2572), - [anon_sym_virtual] = ACTIONS(2572), - [anon_sym_explicit] = ACTIONS(2572), - [anon_sym_typename] = ACTIONS(2572), - [anon_sym_template] = ACTIONS(2572), - [anon_sym_operator] = ACTIONS(2572), - [anon_sym_try] = ACTIONS(2572), - [anon_sym_delete] = ACTIONS(2572), - [anon_sym_throw] = ACTIONS(2572), - [anon_sym_namespace] = ACTIONS(2572), - [anon_sym_using] = ACTIONS(2572), - [anon_sym_static_assert] = ACTIONS(2572), - [anon_sym_concept] = ACTIONS(2572), - [anon_sym_co_return] = ACTIONS(2572), - [anon_sym_co_yield] = ACTIONS(2572), - [anon_sym_R_DQUOTE] = ACTIONS(2574), - [anon_sym_LR_DQUOTE] = ACTIONS(2574), - [anon_sym_uR_DQUOTE] = ACTIONS(2574), - [anon_sym_UR_DQUOTE] = ACTIONS(2574), - [anon_sym_u8R_DQUOTE] = ACTIONS(2574), - [anon_sym_co_await] = ACTIONS(2572), - [anon_sym_new] = ACTIONS(2572), - [anon_sym_requires] = ACTIONS(2572), - [sym_this] = ACTIONS(2572), - [sym_nullptr] = ACTIONS(2572), + [sym_identifier] = ACTIONS(2996), + [aux_sym_preproc_include_token1] = ACTIONS(2996), + [aux_sym_preproc_def_token1] = ACTIONS(2996), + [aux_sym_preproc_if_token1] = ACTIONS(2996), + [aux_sym_preproc_if_token2] = ACTIONS(2996), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2996), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2996), + [aux_sym_preproc_else_token1] = ACTIONS(2996), + [aux_sym_preproc_elif_token1] = ACTIONS(2996), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2996), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2996), + [sym_preproc_directive] = ACTIONS(2996), + [anon_sym_LPAREN2] = ACTIONS(2998), + [anon_sym_BANG] = ACTIONS(2998), + [anon_sym_TILDE] = ACTIONS(2998), + [anon_sym_DASH] = ACTIONS(2996), + [anon_sym_PLUS] = ACTIONS(2996), + [anon_sym_STAR] = ACTIONS(2998), + [anon_sym_AMP_AMP] = ACTIONS(2998), + [anon_sym_AMP] = ACTIONS(2996), + [anon_sym_SEMI] = ACTIONS(2998), + [anon_sym_typedef] = ACTIONS(2996), + [anon_sym_extern] = ACTIONS(2996), + [anon_sym___attribute__] = ACTIONS(2996), + [anon_sym_COLON_COLON] = ACTIONS(2998), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2998), + [anon_sym___declspec] = ACTIONS(2996), + [anon_sym___based] = ACTIONS(2996), + [anon_sym___cdecl] = ACTIONS(2996), + [anon_sym___clrcall] = ACTIONS(2996), + [anon_sym___stdcall] = ACTIONS(2996), + [anon_sym___fastcall] = ACTIONS(2996), + [anon_sym___thiscall] = ACTIONS(2996), + [anon_sym___vectorcall] = ACTIONS(2996), + [anon_sym_LBRACE] = ACTIONS(2998), + [anon_sym_LBRACK] = ACTIONS(2996), + [anon_sym_static] = ACTIONS(2996), + [anon_sym_register] = ACTIONS(2996), + [anon_sym_inline] = ACTIONS(2996), + [anon_sym_thread_local] = ACTIONS(2996), + [anon_sym_const] = ACTIONS(2996), + [anon_sym_constexpr] = ACTIONS(2996), + [anon_sym_volatile] = ACTIONS(2996), + [anon_sym_restrict] = ACTIONS(2996), + [anon_sym___restrict__] = ACTIONS(2996), + [anon_sym__Atomic] = ACTIONS(2996), + [anon_sym__Noreturn] = ACTIONS(2996), + [anon_sym_noreturn] = ACTIONS(2996), + [anon_sym_mutable] = ACTIONS(2996), + [anon_sym_constinit] = ACTIONS(2996), + [anon_sym_consteval] = ACTIONS(2996), + [anon_sym_signed] = ACTIONS(2996), + [anon_sym_unsigned] = ACTIONS(2996), + [anon_sym_long] = ACTIONS(2996), + [anon_sym_short] = ACTIONS(2996), + [sym_primitive_type] = ACTIONS(2996), + [anon_sym_enum] = ACTIONS(2996), + [anon_sym_class] = ACTIONS(2996), + [anon_sym_struct] = ACTIONS(2996), + [anon_sym_union] = ACTIONS(2996), + [anon_sym_if] = ACTIONS(2996), + [anon_sym_else] = ACTIONS(2996), + [anon_sym_switch] = ACTIONS(2996), + [anon_sym_case] = ACTIONS(2996), + [anon_sym_default] = ACTIONS(2996), + [anon_sym_while] = ACTIONS(2996), + [anon_sym_do] = ACTIONS(2996), + [anon_sym_for] = ACTIONS(2996), + [anon_sym_return] = ACTIONS(2996), + [anon_sym_break] = ACTIONS(2996), + [anon_sym_continue] = ACTIONS(2996), + [anon_sym_goto] = ACTIONS(2996), + [anon_sym_not] = ACTIONS(2996), + [anon_sym_compl] = ACTIONS(2996), + [anon_sym_DASH_DASH] = ACTIONS(2998), + [anon_sym_PLUS_PLUS] = ACTIONS(2998), + [anon_sym_sizeof] = ACTIONS(2996), + [anon_sym_offsetof] = ACTIONS(2996), + [anon_sym__Generic] = ACTIONS(2996), + [anon_sym_asm] = ACTIONS(2996), + [anon_sym___asm__] = ACTIONS(2996), + [sym_number_literal] = ACTIONS(2998), + [anon_sym_L_SQUOTE] = ACTIONS(2998), + [anon_sym_u_SQUOTE] = ACTIONS(2998), + [anon_sym_U_SQUOTE] = ACTIONS(2998), + [anon_sym_u8_SQUOTE] = ACTIONS(2998), + [anon_sym_SQUOTE] = ACTIONS(2998), + [anon_sym_L_DQUOTE] = ACTIONS(2998), + [anon_sym_u_DQUOTE] = ACTIONS(2998), + [anon_sym_U_DQUOTE] = ACTIONS(2998), + [anon_sym_u8_DQUOTE] = ACTIONS(2998), + [anon_sym_DQUOTE] = ACTIONS(2998), + [sym_true] = ACTIONS(2996), + [sym_false] = ACTIONS(2996), + [anon_sym_NULL] = ACTIONS(2996), + [anon_sym_nullptr] = ACTIONS(2996), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2996), + [anon_sym_decltype] = ACTIONS(2996), + [anon_sym_virtual] = ACTIONS(2996), + [anon_sym_explicit] = ACTIONS(2996), + [anon_sym_typename] = ACTIONS(2996), + [anon_sym_template] = ACTIONS(2996), + [anon_sym_operator] = ACTIONS(2996), + [anon_sym_try] = ACTIONS(2996), + [anon_sym_delete] = ACTIONS(2996), + [anon_sym_throw] = ACTIONS(2996), + [anon_sym_namespace] = ACTIONS(2996), + [anon_sym_using] = ACTIONS(2996), + [anon_sym_static_assert] = ACTIONS(2996), + [anon_sym_concept] = ACTIONS(2996), + [anon_sym_co_return] = ACTIONS(2996), + [anon_sym_co_yield] = ACTIONS(2996), + [anon_sym_R_DQUOTE] = ACTIONS(2998), + [anon_sym_LR_DQUOTE] = ACTIONS(2998), + [anon_sym_uR_DQUOTE] = ACTIONS(2998), + [anon_sym_UR_DQUOTE] = ACTIONS(2998), + [anon_sym_u8R_DQUOTE] = ACTIONS(2998), + [anon_sym_co_await] = ACTIONS(2996), + [anon_sym_new] = ACTIONS(2996), + [anon_sym_requires] = ACTIONS(2996), + [sym_this] = ACTIONS(2996), }, [414] = { - [sym_identifier] = ACTIONS(2462), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2464), - [anon_sym_AMP] = ACTIONS(2462), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_explicit] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_operator] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_namespace] = ACTIONS(2462), - [anon_sym_using] = ACTIONS(2462), - [anon_sym_static_assert] = ACTIONS(2462), - [anon_sym_concept] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_identifier] = ACTIONS(3000), + [aux_sym_preproc_include_token1] = ACTIONS(3000), + [aux_sym_preproc_def_token1] = ACTIONS(3000), + [aux_sym_preproc_if_token1] = ACTIONS(3000), + [aux_sym_preproc_if_token2] = ACTIONS(3000), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3000), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3000), + [aux_sym_preproc_else_token1] = ACTIONS(3000), + [aux_sym_preproc_elif_token1] = ACTIONS(3000), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3000), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3000), + [sym_preproc_directive] = ACTIONS(3000), + [anon_sym_LPAREN2] = ACTIONS(3002), + [anon_sym_BANG] = ACTIONS(3002), + [anon_sym_TILDE] = ACTIONS(3002), + [anon_sym_DASH] = ACTIONS(3000), + [anon_sym_PLUS] = ACTIONS(3000), + [anon_sym_STAR] = ACTIONS(3002), + [anon_sym_AMP_AMP] = ACTIONS(3002), + [anon_sym_AMP] = ACTIONS(3000), + [anon_sym_SEMI] = ACTIONS(3002), + [anon_sym_typedef] = ACTIONS(3000), + [anon_sym_extern] = ACTIONS(3000), + [anon_sym___attribute__] = ACTIONS(3000), + [anon_sym_COLON_COLON] = ACTIONS(3002), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3002), + [anon_sym___declspec] = ACTIONS(3000), + [anon_sym___based] = ACTIONS(3000), + [anon_sym___cdecl] = ACTIONS(3000), + [anon_sym___clrcall] = ACTIONS(3000), + [anon_sym___stdcall] = ACTIONS(3000), + [anon_sym___fastcall] = ACTIONS(3000), + [anon_sym___thiscall] = ACTIONS(3000), + [anon_sym___vectorcall] = ACTIONS(3000), + [anon_sym_LBRACE] = ACTIONS(3002), + [anon_sym_LBRACK] = ACTIONS(3000), + [anon_sym_static] = ACTIONS(3000), + [anon_sym_register] = ACTIONS(3000), + [anon_sym_inline] = ACTIONS(3000), + [anon_sym_thread_local] = ACTIONS(3000), + [anon_sym_const] = ACTIONS(3000), + [anon_sym_constexpr] = ACTIONS(3000), + [anon_sym_volatile] = ACTIONS(3000), + [anon_sym_restrict] = ACTIONS(3000), + [anon_sym___restrict__] = ACTIONS(3000), + [anon_sym__Atomic] = ACTIONS(3000), + [anon_sym__Noreturn] = ACTIONS(3000), + [anon_sym_noreturn] = ACTIONS(3000), + [anon_sym_mutable] = ACTIONS(3000), + [anon_sym_constinit] = ACTIONS(3000), + [anon_sym_consteval] = ACTIONS(3000), + [anon_sym_signed] = ACTIONS(3000), + [anon_sym_unsigned] = ACTIONS(3000), + [anon_sym_long] = ACTIONS(3000), + [anon_sym_short] = ACTIONS(3000), + [sym_primitive_type] = ACTIONS(3000), + [anon_sym_enum] = ACTIONS(3000), + [anon_sym_class] = ACTIONS(3000), + [anon_sym_struct] = ACTIONS(3000), + [anon_sym_union] = ACTIONS(3000), + [anon_sym_if] = ACTIONS(3000), + [anon_sym_else] = ACTIONS(3000), + [anon_sym_switch] = ACTIONS(3000), + [anon_sym_case] = ACTIONS(3000), + [anon_sym_default] = ACTIONS(3000), + [anon_sym_while] = ACTIONS(3000), + [anon_sym_do] = ACTIONS(3000), + [anon_sym_for] = ACTIONS(3000), + [anon_sym_return] = ACTIONS(3000), + [anon_sym_break] = ACTIONS(3000), + [anon_sym_continue] = ACTIONS(3000), + [anon_sym_goto] = ACTIONS(3000), + [anon_sym_not] = ACTIONS(3000), + [anon_sym_compl] = ACTIONS(3000), + [anon_sym_DASH_DASH] = ACTIONS(3002), + [anon_sym_PLUS_PLUS] = ACTIONS(3002), + [anon_sym_sizeof] = ACTIONS(3000), + [anon_sym_offsetof] = ACTIONS(3000), + [anon_sym__Generic] = ACTIONS(3000), + [anon_sym_asm] = ACTIONS(3000), + [anon_sym___asm__] = ACTIONS(3000), + [sym_number_literal] = ACTIONS(3002), + [anon_sym_L_SQUOTE] = ACTIONS(3002), + [anon_sym_u_SQUOTE] = ACTIONS(3002), + [anon_sym_U_SQUOTE] = ACTIONS(3002), + [anon_sym_u8_SQUOTE] = ACTIONS(3002), + [anon_sym_SQUOTE] = ACTIONS(3002), + [anon_sym_L_DQUOTE] = ACTIONS(3002), + [anon_sym_u_DQUOTE] = ACTIONS(3002), + [anon_sym_U_DQUOTE] = ACTIONS(3002), + [anon_sym_u8_DQUOTE] = ACTIONS(3002), + [anon_sym_DQUOTE] = ACTIONS(3002), + [sym_true] = ACTIONS(3000), + [sym_false] = ACTIONS(3000), + [anon_sym_NULL] = ACTIONS(3000), + [anon_sym_nullptr] = ACTIONS(3000), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3000), + [anon_sym_decltype] = ACTIONS(3000), + [anon_sym_virtual] = ACTIONS(3000), + [anon_sym_explicit] = ACTIONS(3000), + [anon_sym_typename] = ACTIONS(3000), + [anon_sym_template] = ACTIONS(3000), + [anon_sym_operator] = ACTIONS(3000), + [anon_sym_try] = ACTIONS(3000), + [anon_sym_delete] = ACTIONS(3000), + [anon_sym_throw] = ACTIONS(3000), + [anon_sym_namespace] = ACTIONS(3000), + [anon_sym_using] = ACTIONS(3000), + [anon_sym_static_assert] = ACTIONS(3000), + [anon_sym_concept] = ACTIONS(3000), + [anon_sym_co_return] = ACTIONS(3000), + [anon_sym_co_yield] = ACTIONS(3000), + [anon_sym_R_DQUOTE] = ACTIONS(3002), + [anon_sym_LR_DQUOTE] = ACTIONS(3002), + [anon_sym_uR_DQUOTE] = ACTIONS(3002), + [anon_sym_UR_DQUOTE] = ACTIONS(3002), + [anon_sym_u8R_DQUOTE] = ACTIONS(3002), + [anon_sym_co_await] = ACTIONS(3000), + [anon_sym_new] = ACTIONS(3000), + [anon_sym_requires] = ACTIONS(3000), + [sym_this] = ACTIONS(3000), }, [415] = { - [sym_identifier] = ACTIONS(2576), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2578), - [anon_sym_AMP] = ACTIONS(2576), - [anon_sym_SEMI] = ACTIONS(2578), - [anon_sym_typedef] = ACTIONS(2576), - [anon_sym_extern] = ACTIONS(2576), - [anon_sym___attribute__] = ACTIONS(2576), - [anon_sym_COLON_COLON] = ACTIONS(2578), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2578), - [anon_sym___declspec] = ACTIONS(2576), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2576), - [anon_sym_static] = ACTIONS(2576), - [anon_sym_register] = ACTIONS(2576), - [anon_sym_inline] = ACTIONS(2576), - [anon_sym_thread_local] = ACTIONS(2576), - [anon_sym_const] = ACTIONS(2576), - [anon_sym_volatile] = ACTIONS(2576), - [anon_sym_restrict] = ACTIONS(2576), - [anon_sym__Atomic] = ACTIONS(2576), - [anon_sym_mutable] = ACTIONS(2576), - [anon_sym_constexpr] = ACTIONS(2576), - [anon_sym_constinit] = ACTIONS(2576), - [anon_sym_consteval] = ACTIONS(2576), - [anon_sym_signed] = ACTIONS(2576), - [anon_sym_unsigned] = ACTIONS(2576), - [anon_sym_long] = ACTIONS(2576), - [anon_sym_short] = ACTIONS(2576), - [sym_primitive_type] = ACTIONS(2576), - [anon_sym_enum] = ACTIONS(2576), - [anon_sym_class] = ACTIONS(2576), - [anon_sym_struct] = ACTIONS(2576), - [anon_sym_union] = ACTIONS(2576), - [anon_sym_if] = ACTIONS(2576), - [anon_sym_else] = 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_return] = ACTIONS(2576), - [anon_sym_break] = ACTIONS(2576), - [anon_sym_continue] = ACTIONS(2576), - [anon_sym_goto] = ACTIONS(2576), - [anon_sym_not] = ACTIONS(2576), - [anon_sym_compl] = ACTIONS(2576), - [anon_sym_DASH_DASH] = ACTIONS(2578), - [anon_sym_PLUS_PLUS] = ACTIONS(2578), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2578), - [anon_sym_u_DQUOTE] = ACTIONS(2578), - [anon_sym_U_DQUOTE] = ACTIONS(2578), - [anon_sym_u8_DQUOTE] = ACTIONS(2578), - [anon_sym_DQUOTE] = ACTIONS(2578), - [sym_true] = ACTIONS(2576), - [sym_false] = ACTIONS(2576), - [sym_null] = ACTIONS(2576), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2576), - [anon_sym_decltype] = ACTIONS(2576), - [anon_sym_virtual] = ACTIONS(2576), - [anon_sym_explicit] = ACTIONS(2576), - [anon_sym_typename] = ACTIONS(2576), - [anon_sym_template] = ACTIONS(2576), - [anon_sym_operator] = ACTIONS(2576), - [anon_sym_try] = ACTIONS(2576), - [anon_sym_delete] = ACTIONS(2576), - [anon_sym_throw] = ACTIONS(2576), - [anon_sym_namespace] = ACTIONS(2576), - [anon_sym_using] = ACTIONS(2576), - [anon_sym_static_assert] = ACTIONS(2576), - [anon_sym_concept] = ACTIONS(2576), - [anon_sym_co_return] = ACTIONS(2576), - [anon_sym_co_yield] = ACTIONS(2576), - [anon_sym_R_DQUOTE] = ACTIONS(2578), - [anon_sym_LR_DQUOTE] = ACTIONS(2578), - [anon_sym_uR_DQUOTE] = ACTIONS(2578), - [anon_sym_UR_DQUOTE] = ACTIONS(2578), - [anon_sym_u8R_DQUOTE] = ACTIONS(2578), - [anon_sym_co_await] = ACTIONS(2576), - [anon_sym_new] = ACTIONS(2576), - [anon_sym_requires] = ACTIONS(2576), - [sym_this] = ACTIONS(2576), - [sym_nullptr] = ACTIONS(2576), + [sym_identifier] = ACTIONS(3004), + [aux_sym_preproc_include_token1] = ACTIONS(3004), + [aux_sym_preproc_def_token1] = ACTIONS(3004), + [aux_sym_preproc_if_token1] = ACTIONS(3004), + [aux_sym_preproc_if_token2] = ACTIONS(3004), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3004), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3004), + [aux_sym_preproc_else_token1] = ACTIONS(3004), + [aux_sym_preproc_elif_token1] = ACTIONS(3004), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3004), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3004), + [sym_preproc_directive] = ACTIONS(3004), + [anon_sym_LPAREN2] = ACTIONS(3006), + [anon_sym_BANG] = ACTIONS(3006), + [anon_sym_TILDE] = ACTIONS(3006), + [anon_sym_DASH] = ACTIONS(3004), + [anon_sym_PLUS] = ACTIONS(3004), + [anon_sym_STAR] = ACTIONS(3006), + [anon_sym_AMP_AMP] = ACTIONS(3006), + [anon_sym_AMP] = ACTIONS(3004), + [anon_sym_SEMI] = ACTIONS(3006), + [anon_sym_typedef] = ACTIONS(3004), + [anon_sym_extern] = ACTIONS(3004), + [anon_sym___attribute__] = ACTIONS(3004), + [anon_sym_COLON_COLON] = ACTIONS(3006), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3006), + [anon_sym___declspec] = ACTIONS(3004), + [anon_sym___based] = ACTIONS(3004), + [anon_sym___cdecl] = ACTIONS(3004), + [anon_sym___clrcall] = ACTIONS(3004), + [anon_sym___stdcall] = ACTIONS(3004), + [anon_sym___fastcall] = ACTIONS(3004), + [anon_sym___thiscall] = ACTIONS(3004), + [anon_sym___vectorcall] = ACTIONS(3004), + [anon_sym_LBRACE] = ACTIONS(3006), + [anon_sym_LBRACK] = ACTIONS(3004), + [anon_sym_static] = ACTIONS(3004), + [anon_sym_register] = ACTIONS(3004), + [anon_sym_inline] = ACTIONS(3004), + [anon_sym_thread_local] = ACTIONS(3004), + [anon_sym_const] = ACTIONS(3004), + [anon_sym_constexpr] = ACTIONS(3004), + [anon_sym_volatile] = ACTIONS(3004), + [anon_sym_restrict] = ACTIONS(3004), + [anon_sym___restrict__] = ACTIONS(3004), + [anon_sym__Atomic] = ACTIONS(3004), + [anon_sym__Noreturn] = ACTIONS(3004), + [anon_sym_noreturn] = ACTIONS(3004), + [anon_sym_mutable] = ACTIONS(3004), + [anon_sym_constinit] = ACTIONS(3004), + [anon_sym_consteval] = ACTIONS(3004), + [anon_sym_signed] = ACTIONS(3004), + [anon_sym_unsigned] = ACTIONS(3004), + [anon_sym_long] = ACTIONS(3004), + [anon_sym_short] = ACTIONS(3004), + [sym_primitive_type] = ACTIONS(3004), + [anon_sym_enum] = ACTIONS(3004), + [anon_sym_class] = ACTIONS(3004), + [anon_sym_struct] = ACTIONS(3004), + [anon_sym_union] = ACTIONS(3004), + [anon_sym_if] = ACTIONS(3004), + [anon_sym_else] = ACTIONS(3004), + [anon_sym_switch] = ACTIONS(3004), + [anon_sym_case] = ACTIONS(3004), + [anon_sym_default] = ACTIONS(3004), + [anon_sym_while] = ACTIONS(3004), + [anon_sym_do] = ACTIONS(3004), + [anon_sym_for] = ACTIONS(3004), + [anon_sym_return] = ACTIONS(3004), + [anon_sym_break] = ACTIONS(3004), + [anon_sym_continue] = ACTIONS(3004), + [anon_sym_goto] = ACTIONS(3004), + [anon_sym_not] = ACTIONS(3004), + [anon_sym_compl] = ACTIONS(3004), + [anon_sym_DASH_DASH] = ACTIONS(3006), + [anon_sym_PLUS_PLUS] = ACTIONS(3006), + [anon_sym_sizeof] = ACTIONS(3004), + [anon_sym_offsetof] = ACTIONS(3004), + [anon_sym__Generic] = ACTIONS(3004), + [anon_sym_asm] = ACTIONS(3004), + [anon_sym___asm__] = ACTIONS(3004), + [sym_number_literal] = ACTIONS(3006), + [anon_sym_L_SQUOTE] = ACTIONS(3006), + [anon_sym_u_SQUOTE] = ACTIONS(3006), + [anon_sym_U_SQUOTE] = ACTIONS(3006), + [anon_sym_u8_SQUOTE] = ACTIONS(3006), + [anon_sym_SQUOTE] = ACTIONS(3006), + [anon_sym_L_DQUOTE] = ACTIONS(3006), + [anon_sym_u_DQUOTE] = ACTIONS(3006), + [anon_sym_U_DQUOTE] = ACTIONS(3006), + [anon_sym_u8_DQUOTE] = ACTIONS(3006), + [anon_sym_DQUOTE] = ACTIONS(3006), + [sym_true] = ACTIONS(3004), + [sym_false] = ACTIONS(3004), + [anon_sym_NULL] = ACTIONS(3004), + [anon_sym_nullptr] = ACTIONS(3004), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3004), + [anon_sym_decltype] = ACTIONS(3004), + [anon_sym_virtual] = ACTIONS(3004), + [anon_sym_explicit] = ACTIONS(3004), + [anon_sym_typename] = ACTIONS(3004), + [anon_sym_template] = ACTIONS(3004), + [anon_sym_operator] = ACTIONS(3004), + [anon_sym_try] = ACTIONS(3004), + [anon_sym_delete] = ACTIONS(3004), + [anon_sym_throw] = ACTIONS(3004), + [anon_sym_namespace] = ACTIONS(3004), + [anon_sym_using] = ACTIONS(3004), + [anon_sym_static_assert] = ACTIONS(3004), + [anon_sym_concept] = ACTIONS(3004), + [anon_sym_co_return] = ACTIONS(3004), + [anon_sym_co_yield] = ACTIONS(3004), + [anon_sym_R_DQUOTE] = ACTIONS(3006), + [anon_sym_LR_DQUOTE] = ACTIONS(3006), + [anon_sym_uR_DQUOTE] = ACTIONS(3006), + [anon_sym_UR_DQUOTE] = ACTIONS(3006), + [anon_sym_u8R_DQUOTE] = ACTIONS(3006), + [anon_sym_co_await] = ACTIONS(3004), + [anon_sym_new] = ACTIONS(3004), + [anon_sym_requires] = ACTIONS(3004), + [sym_this] = ACTIONS(3004), }, [416] = { - [sym_identifier] = ACTIONS(2580), - [aux_sym_preproc_include_token1] = ACTIONS(2580), - [aux_sym_preproc_def_token1] = ACTIONS(2580), - [aux_sym_preproc_if_token1] = ACTIONS(2580), - [aux_sym_preproc_if_token2] = ACTIONS(2580), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2580), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2580), - [aux_sym_preproc_else_token1] = ACTIONS(2580), - [aux_sym_preproc_elif_token1] = ACTIONS(2580), - [sym_preproc_directive] = ACTIONS(2580), - [anon_sym_LPAREN2] = ACTIONS(2582), - [anon_sym_BANG] = ACTIONS(2582), - [anon_sym_TILDE] = ACTIONS(2582), - [anon_sym_DASH] = ACTIONS(2580), - [anon_sym_PLUS] = ACTIONS(2580), - [anon_sym_STAR] = ACTIONS(2582), - [anon_sym_AMP_AMP] = ACTIONS(2582), - [anon_sym_AMP] = ACTIONS(2580), - [anon_sym_SEMI] = ACTIONS(2582), - [anon_sym_typedef] = ACTIONS(2580), - [anon_sym_extern] = ACTIONS(2580), - [anon_sym___attribute__] = ACTIONS(2580), - [anon_sym_COLON_COLON] = ACTIONS(2582), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2582), - [anon_sym___declspec] = ACTIONS(2580), - [anon_sym___based] = ACTIONS(2580), - [anon_sym___cdecl] = ACTIONS(2580), - [anon_sym___clrcall] = ACTIONS(2580), - [anon_sym___stdcall] = ACTIONS(2580), - [anon_sym___fastcall] = ACTIONS(2580), - [anon_sym___thiscall] = ACTIONS(2580), - [anon_sym___vectorcall] = ACTIONS(2580), - [anon_sym_LBRACE] = ACTIONS(2582), - [anon_sym_LBRACK] = ACTIONS(2580), - [anon_sym_static] = ACTIONS(2580), - [anon_sym_register] = ACTIONS(2580), - [anon_sym_inline] = ACTIONS(2580), - [anon_sym_thread_local] = ACTIONS(2580), - [anon_sym_const] = ACTIONS(2580), - [anon_sym_volatile] = ACTIONS(2580), - [anon_sym_restrict] = ACTIONS(2580), - [anon_sym__Atomic] = ACTIONS(2580), - [anon_sym_mutable] = ACTIONS(2580), - [anon_sym_constexpr] = ACTIONS(2580), - [anon_sym_constinit] = ACTIONS(2580), - [anon_sym_consteval] = ACTIONS(2580), - [anon_sym_signed] = ACTIONS(2580), - [anon_sym_unsigned] = ACTIONS(2580), - [anon_sym_long] = ACTIONS(2580), - [anon_sym_short] = ACTIONS(2580), - [sym_primitive_type] = ACTIONS(2580), - [anon_sym_enum] = ACTIONS(2580), - [anon_sym_class] = ACTIONS(2580), - [anon_sym_struct] = ACTIONS(2580), - [anon_sym_union] = ACTIONS(2580), - [anon_sym_if] = ACTIONS(2580), - [anon_sym_else] = ACTIONS(2580), - [anon_sym_switch] = ACTIONS(2580), - [anon_sym_case] = ACTIONS(2580), - [anon_sym_default] = ACTIONS(2580), - [anon_sym_while] = ACTIONS(2580), - [anon_sym_do] = ACTIONS(2580), - [anon_sym_for] = ACTIONS(2580), - [anon_sym_return] = ACTIONS(2580), - [anon_sym_break] = ACTIONS(2580), - [anon_sym_continue] = ACTIONS(2580), - [anon_sym_goto] = ACTIONS(2580), - [anon_sym_not] = ACTIONS(2580), - [anon_sym_compl] = ACTIONS(2580), - [anon_sym_DASH_DASH] = ACTIONS(2582), - [anon_sym_PLUS_PLUS] = ACTIONS(2582), - [anon_sym_sizeof] = ACTIONS(2580), - [sym_number_literal] = ACTIONS(2582), - [anon_sym_L_SQUOTE] = ACTIONS(2582), - [anon_sym_u_SQUOTE] = ACTIONS(2582), - [anon_sym_U_SQUOTE] = ACTIONS(2582), - [anon_sym_u8_SQUOTE] = ACTIONS(2582), - [anon_sym_SQUOTE] = ACTIONS(2582), - [anon_sym_L_DQUOTE] = ACTIONS(2582), - [anon_sym_u_DQUOTE] = ACTIONS(2582), - [anon_sym_U_DQUOTE] = ACTIONS(2582), - [anon_sym_u8_DQUOTE] = ACTIONS(2582), - [anon_sym_DQUOTE] = ACTIONS(2582), - [sym_true] = ACTIONS(2580), - [sym_false] = ACTIONS(2580), - [sym_null] = ACTIONS(2580), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2580), - [anon_sym_decltype] = ACTIONS(2580), - [anon_sym_virtual] = ACTIONS(2580), - [anon_sym_explicit] = ACTIONS(2580), - [anon_sym_typename] = ACTIONS(2580), - [anon_sym_template] = ACTIONS(2580), - [anon_sym_operator] = ACTIONS(2580), - [anon_sym_try] = ACTIONS(2580), - [anon_sym_delete] = ACTIONS(2580), - [anon_sym_throw] = ACTIONS(2580), - [anon_sym_namespace] = ACTIONS(2580), - [anon_sym_using] = ACTIONS(2580), - [anon_sym_static_assert] = ACTIONS(2580), - [anon_sym_concept] = ACTIONS(2580), - [anon_sym_co_return] = ACTIONS(2580), - [anon_sym_co_yield] = ACTIONS(2580), - [anon_sym_R_DQUOTE] = ACTIONS(2582), - [anon_sym_LR_DQUOTE] = ACTIONS(2582), - [anon_sym_uR_DQUOTE] = ACTIONS(2582), - [anon_sym_UR_DQUOTE] = ACTIONS(2582), - [anon_sym_u8R_DQUOTE] = ACTIONS(2582), - [anon_sym_co_await] = ACTIONS(2580), - [anon_sym_new] = ACTIONS(2580), - [anon_sym_requires] = ACTIONS(2580), - [sym_this] = ACTIONS(2580), - [sym_nullptr] = ACTIONS(2580), + [sym_identifier] = ACTIONS(3008), + [aux_sym_preproc_include_token1] = ACTIONS(3008), + [aux_sym_preproc_def_token1] = ACTIONS(3008), + [aux_sym_preproc_if_token1] = ACTIONS(3008), + [aux_sym_preproc_if_token2] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [aux_sym_preproc_else_token1] = ACTIONS(3008), + [aux_sym_preproc_elif_token1] = ACTIONS(3008), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3008), + [anon_sym_LPAREN2] = ACTIONS(3010), + [anon_sym_BANG] = ACTIONS(3010), + [anon_sym_TILDE] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3008), + [anon_sym_PLUS] = ACTIONS(3008), + [anon_sym_STAR] = ACTIONS(3010), + [anon_sym_AMP_AMP] = ACTIONS(3010), + [anon_sym_AMP] = ACTIONS(3008), + [anon_sym_SEMI] = ACTIONS(3010), + [anon_sym_typedef] = ACTIONS(3008), + [anon_sym_extern] = ACTIONS(3008), + [anon_sym___attribute__] = ACTIONS(3008), + [anon_sym_COLON_COLON] = ACTIONS(3010), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3010), + [anon_sym___declspec] = ACTIONS(3008), + [anon_sym___based] = ACTIONS(3008), + [anon_sym___cdecl] = ACTIONS(3008), + [anon_sym___clrcall] = ACTIONS(3008), + [anon_sym___stdcall] = ACTIONS(3008), + [anon_sym___fastcall] = ACTIONS(3008), + [anon_sym___thiscall] = ACTIONS(3008), + [anon_sym___vectorcall] = ACTIONS(3008), + [anon_sym_LBRACE] = ACTIONS(3010), + [anon_sym_LBRACK] = ACTIONS(3008), + [anon_sym_static] = ACTIONS(3008), + [anon_sym_register] = ACTIONS(3008), + [anon_sym_inline] = ACTIONS(3008), + [anon_sym_thread_local] = ACTIONS(3008), + [anon_sym_const] = ACTIONS(3008), + [anon_sym_constexpr] = ACTIONS(3008), + [anon_sym_volatile] = ACTIONS(3008), + [anon_sym_restrict] = ACTIONS(3008), + [anon_sym___restrict__] = ACTIONS(3008), + [anon_sym__Atomic] = ACTIONS(3008), + [anon_sym__Noreturn] = ACTIONS(3008), + [anon_sym_noreturn] = ACTIONS(3008), + [anon_sym_mutable] = ACTIONS(3008), + [anon_sym_constinit] = ACTIONS(3008), + [anon_sym_consteval] = ACTIONS(3008), + [anon_sym_signed] = ACTIONS(3008), + [anon_sym_unsigned] = ACTIONS(3008), + [anon_sym_long] = ACTIONS(3008), + [anon_sym_short] = ACTIONS(3008), + [sym_primitive_type] = ACTIONS(3008), + [anon_sym_enum] = ACTIONS(3008), + [anon_sym_class] = ACTIONS(3008), + [anon_sym_struct] = ACTIONS(3008), + [anon_sym_union] = ACTIONS(3008), + [anon_sym_if] = ACTIONS(3008), + [anon_sym_else] = ACTIONS(3008), + [anon_sym_switch] = ACTIONS(3008), + [anon_sym_case] = ACTIONS(3008), + [anon_sym_default] = ACTIONS(3008), + [anon_sym_while] = ACTIONS(3008), + [anon_sym_do] = ACTIONS(3008), + [anon_sym_for] = ACTIONS(3008), + [anon_sym_return] = ACTIONS(3008), + [anon_sym_break] = ACTIONS(3008), + [anon_sym_continue] = ACTIONS(3008), + [anon_sym_goto] = ACTIONS(3008), + [anon_sym_not] = ACTIONS(3008), + [anon_sym_compl] = ACTIONS(3008), + [anon_sym_DASH_DASH] = ACTIONS(3010), + [anon_sym_PLUS_PLUS] = ACTIONS(3010), + [anon_sym_sizeof] = ACTIONS(3008), + [anon_sym_offsetof] = ACTIONS(3008), + [anon_sym__Generic] = ACTIONS(3008), + [anon_sym_asm] = ACTIONS(3008), + [anon_sym___asm__] = ACTIONS(3008), + [sym_number_literal] = ACTIONS(3010), + [anon_sym_L_SQUOTE] = ACTIONS(3010), + [anon_sym_u_SQUOTE] = ACTIONS(3010), + [anon_sym_U_SQUOTE] = ACTIONS(3010), + [anon_sym_u8_SQUOTE] = ACTIONS(3010), + [anon_sym_SQUOTE] = ACTIONS(3010), + [anon_sym_L_DQUOTE] = ACTIONS(3010), + [anon_sym_u_DQUOTE] = ACTIONS(3010), + [anon_sym_U_DQUOTE] = ACTIONS(3010), + [anon_sym_u8_DQUOTE] = ACTIONS(3010), + [anon_sym_DQUOTE] = ACTIONS(3010), + [sym_true] = ACTIONS(3008), + [sym_false] = ACTIONS(3008), + [anon_sym_NULL] = ACTIONS(3008), + [anon_sym_nullptr] = ACTIONS(3008), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3008), + [anon_sym_decltype] = ACTIONS(3008), + [anon_sym_virtual] = ACTIONS(3008), + [anon_sym_explicit] = ACTIONS(3008), + [anon_sym_typename] = ACTIONS(3008), + [anon_sym_template] = ACTIONS(3008), + [anon_sym_operator] = ACTIONS(3008), + [anon_sym_try] = ACTIONS(3008), + [anon_sym_delete] = ACTIONS(3008), + [anon_sym_throw] = ACTIONS(3008), + [anon_sym_namespace] = ACTIONS(3008), + [anon_sym_using] = ACTIONS(3008), + [anon_sym_static_assert] = ACTIONS(3008), + [anon_sym_concept] = ACTIONS(3008), + [anon_sym_co_return] = ACTIONS(3008), + [anon_sym_co_yield] = ACTIONS(3008), + [anon_sym_R_DQUOTE] = ACTIONS(3010), + [anon_sym_LR_DQUOTE] = ACTIONS(3010), + [anon_sym_uR_DQUOTE] = ACTIONS(3010), + [anon_sym_UR_DQUOTE] = ACTIONS(3010), + [anon_sym_u8R_DQUOTE] = ACTIONS(3010), + [anon_sym_co_await] = ACTIONS(3008), + [anon_sym_new] = ACTIONS(3008), + [anon_sym_requires] = ACTIONS(3008), + [sym_this] = ACTIONS(3008), }, [417] = { - [sym_identifier] = ACTIONS(2462), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2464), - [anon_sym_AMP] = ACTIONS(2462), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_explicit] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_operator] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_namespace] = ACTIONS(2462), - [anon_sym_using] = ACTIONS(2462), - [anon_sym_static_assert] = ACTIONS(2462), - [anon_sym_concept] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_identifier] = ACTIONS(3012), + [aux_sym_preproc_include_token1] = ACTIONS(3012), + [aux_sym_preproc_def_token1] = ACTIONS(3012), + [aux_sym_preproc_if_token1] = ACTIONS(3012), + [aux_sym_preproc_if_token2] = ACTIONS(3012), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3012), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3012), + [aux_sym_preproc_else_token1] = ACTIONS(3012), + [aux_sym_preproc_elif_token1] = ACTIONS(3012), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3012), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3012), + [sym_preproc_directive] = ACTIONS(3012), + [anon_sym_LPAREN2] = ACTIONS(3014), + [anon_sym_BANG] = ACTIONS(3014), + [anon_sym_TILDE] = ACTIONS(3014), + [anon_sym_DASH] = ACTIONS(3012), + [anon_sym_PLUS] = ACTIONS(3012), + [anon_sym_STAR] = ACTIONS(3014), + [anon_sym_AMP_AMP] = ACTIONS(3014), + [anon_sym_AMP] = ACTIONS(3012), + [anon_sym_SEMI] = ACTIONS(3014), + [anon_sym_typedef] = ACTIONS(3012), + [anon_sym_extern] = ACTIONS(3012), + [anon_sym___attribute__] = ACTIONS(3012), + [anon_sym_COLON_COLON] = ACTIONS(3014), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3014), + [anon_sym___declspec] = ACTIONS(3012), + [anon_sym___based] = ACTIONS(3012), + [anon_sym___cdecl] = ACTIONS(3012), + [anon_sym___clrcall] = ACTIONS(3012), + [anon_sym___stdcall] = ACTIONS(3012), + [anon_sym___fastcall] = ACTIONS(3012), + [anon_sym___thiscall] = ACTIONS(3012), + [anon_sym___vectorcall] = ACTIONS(3012), + [anon_sym_LBRACE] = ACTIONS(3014), + [anon_sym_LBRACK] = ACTIONS(3012), + [anon_sym_static] = ACTIONS(3012), + [anon_sym_register] = ACTIONS(3012), + [anon_sym_inline] = ACTIONS(3012), + [anon_sym_thread_local] = ACTIONS(3012), + [anon_sym_const] = ACTIONS(3012), + [anon_sym_constexpr] = ACTIONS(3012), + [anon_sym_volatile] = ACTIONS(3012), + [anon_sym_restrict] = ACTIONS(3012), + [anon_sym___restrict__] = ACTIONS(3012), + [anon_sym__Atomic] = ACTIONS(3012), + [anon_sym__Noreturn] = ACTIONS(3012), + [anon_sym_noreturn] = ACTIONS(3012), + [anon_sym_mutable] = ACTIONS(3012), + [anon_sym_constinit] = ACTIONS(3012), + [anon_sym_consteval] = ACTIONS(3012), + [anon_sym_signed] = ACTIONS(3012), + [anon_sym_unsigned] = ACTIONS(3012), + [anon_sym_long] = ACTIONS(3012), + [anon_sym_short] = ACTIONS(3012), + [sym_primitive_type] = ACTIONS(3012), + [anon_sym_enum] = ACTIONS(3012), + [anon_sym_class] = ACTIONS(3012), + [anon_sym_struct] = ACTIONS(3012), + [anon_sym_union] = ACTIONS(3012), + [anon_sym_if] = ACTIONS(3012), + [anon_sym_else] = ACTIONS(3012), + [anon_sym_switch] = ACTIONS(3012), + [anon_sym_case] = ACTIONS(3012), + [anon_sym_default] = ACTIONS(3012), + [anon_sym_while] = ACTIONS(3012), + [anon_sym_do] = ACTIONS(3012), + [anon_sym_for] = ACTIONS(3012), + [anon_sym_return] = ACTIONS(3012), + [anon_sym_break] = ACTIONS(3012), + [anon_sym_continue] = ACTIONS(3012), + [anon_sym_goto] = ACTIONS(3012), + [anon_sym_not] = ACTIONS(3012), + [anon_sym_compl] = ACTIONS(3012), + [anon_sym_DASH_DASH] = ACTIONS(3014), + [anon_sym_PLUS_PLUS] = ACTIONS(3014), + [anon_sym_sizeof] = ACTIONS(3012), + [anon_sym_offsetof] = ACTIONS(3012), + [anon_sym__Generic] = ACTIONS(3012), + [anon_sym_asm] = ACTIONS(3012), + [anon_sym___asm__] = ACTIONS(3012), + [sym_number_literal] = ACTIONS(3014), + [anon_sym_L_SQUOTE] = ACTIONS(3014), + [anon_sym_u_SQUOTE] = ACTIONS(3014), + [anon_sym_U_SQUOTE] = ACTIONS(3014), + [anon_sym_u8_SQUOTE] = ACTIONS(3014), + [anon_sym_SQUOTE] = ACTIONS(3014), + [anon_sym_L_DQUOTE] = ACTIONS(3014), + [anon_sym_u_DQUOTE] = ACTIONS(3014), + [anon_sym_U_DQUOTE] = ACTIONS(3014), + [anon_sym_u8_DQUOTE] = ACTIONS(3014), + [anon_sym_DQUOTE] = ACTIONS(3014), + [sym_true] = ACTIONS(3012), + [sym_false] = ACTIONS(3012), + [anon_sym_NULL] = ACTIONS(3012), + [anon_sym_nullptr] = ACTIONS(3012), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3012), + [anon_sym_decltype] = ACTIONS(3012), + [anon_sym_virtual] = ACTIONS(3012), + [anon_sym_explicit] = ACTIONS(3012), + [anon_sym_typename] = ACTIONS(3012), + [anon_sym_template] = ACTIONS(3012), + [anon_sym_operator] = ACTIONS(3012), + [anon_sym_try] = ACTIONS(3012), + [anon_sym_delete] = ACTIONS(3012), + [anon_sym_throw] = ACTIONS(3012), + [anon_sym_namespace] = ACTIONS(3012), + [anon_sym_using] = ACTIONS(3012), + [anon_sym_static_assert] = ACTIONS(3012), + [anon_sym_concept] = ACTIONS(3012), + [anon_sym_co_return] = ACTIONS(3012), + [anon_sym_co_yield] = ACTIONS(3012), + [anon_sym_R_DQUOTE] = ACTIONS(3014), + [anon_sym_LR_DQUOTE] = ACTIONS(3014), + [anon_sym_uR_DQUOTE] = ACTIONS(3014), + [anon_sym_UR_DQUOTE] = ACTIONS(3014), + [anon_sym_u8R_DQUOTE] = ACTIONS(3014), + [anon_sym_co_await] = ACTIONS(3012), + [anon_sym_new] = ACTIONS(3012), + [anon_sym_requires] = ACTIONS(3012), + [sym_this] = ACTIONS(3012), }, [418] = { - [sym_identifier] = ACTIONS(2584), - [aux_sym_preproc_include_token1] = ACTIONS(2584), - [aux_sym_preproc_def_token1] = ACTIONS(2584), - [aux_sym_preproc_if_token1] = ACTIONS(2584), - [aux_sym_preproc_if_token2] = ACTIONS(2584), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2584), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2584), - [aux_sym_preproc_else_token1] = ACTIONS(2584), - [aux_sym_preproc_elif_token1] = ACTIONS(2584), - [sym_preproc_directive] = ACTIONS(2584), - [anon_sym_LPAREN2] = ACTIONS(2586), - [anon_sym_BANG] = ACTIONS(2586), - [anon_sym_TILDE] = ACTIONS(2586), - [anon_sym_DASH] = ACTIONS(2584), - [anon_sym_PLUS] = ACTIONS(2584), - [anon_sym_STAR] = ACTIONS(2586), - [anon_sym_AMP_AMP] = ACTIONS(2586), - [anon_sym_AMP] = ACTIONS(2584), - [anon_sym_SEMI] = ACTIONS(2586), - [anon_sym_typedef] = ACTIONS(2584), - [anon_sym_extern] = ACTIONS(2584), - [anon_sym___attribute__] = ACTIONS(2584), - [anon_sym_COLON_COLON] = ACTIONS(2586), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2586), - [anon_sym___declspec] = ACTIONS(2584), - [anon_sym___based] = ACTIONS(2584), - [anon_sym___cdecl] = ACTIONS(2584), - [anon_sym___clrcall] = ACTIONS(2584), - [anon_sym___stdcall] = ACTIONS(2584), - [anon_sym___fastcall] = ACTIONS(2584), - [anon_sym___thiscall] = ACTIONS(2584), - [anon_sym___vectorcall] = ACTIONS(2584), - [anon_sym_LBRACE] = ACTIONS(2586), - [anon_sym_LBRACK] = ACTIONS(2584), - [anon_sym_static] = ACTIONS(2584), - [anon_sym_register] = ACTIONS(2584), - [anon_sym_inline] = ACTIONS(2584), - [anon_sym_thread_local] = ACTIONS(2584), - [anon_sym_const] = ACTIONS(2584), - [anon_sym_volatile] = ACTIONS(2584), - [anon_sym_restrict] = ACTIONS(2584), - [anon_sym__Atomic] = ACTIONS(2584), - [anon_sym_mutable] = ACTIONS(2584), - [anon_sym_constexpr] = ACTIONS(2584), - [anon_sym_constinit] = ACTIONS(2584), - [anon_sym_consteval] = ACTIONS(2584), - [anon_sym_signed] = ACTIONS(2584), - [anon_sym_unsigned] = ACTIONS(2584), - [anon_sym_long] = ACTIONS(2584), - [anon_sym_short] = ACTIONS(2584), - [sym_primitive_type] = ACTIONS(2584), - [anon_sym_enum] = ACTIONS(2584), - [anon_sym_class] = ACTIONS(2584), - [anon_sym_struct] = ACTIONS(2584), - [anon_sym_union] = ACTIONS(2584), - [anon_sym_if] = ACTIONS(2584), - [anon_sym_else] = ACTIONS(2584), - [anon_sym_switch] = ACTIONS(2584), - [anon_sym_case] = ACTIONS(2584), - [anon_sym_default] = ACTIONS(2584), - [anon_sym_while] = ACTIONS(2584), - [anon_sym_do] = ACTIONS(2584), - [anon_sym_for] = ACTIONS(2584), - [anon_sym_return] = ACTIONS(2584), - [anon_sym_break] = ACTIONS(2584), - [anon_sym_continue] = ACTIONS(2584), - [anon_sym_goto] = ACTIONS(2584), - [anon_sym_not] = ACTIONS(2584), - [anon_sym_compl] = ACTIONS(2584), - [anon_sym_DASH_DASH] = ACTIONS(2586), - [anon_sym_PLUS_PLUS] = ACTIONS(2586), - [anon_sym_sizeof] = ACTIONS(2584), - [sym_number_literal] = ACTIONS(2586), - [anon_sym_L_SQUOTE] = ACTIONS(2586), - [anon_sym_u_SQUOTE] = ACTIONS(2586), - [anon_sym_U_SQUOTE] = ACTIONS(2586), - [anon_sym_u8_SQUOTE] = ACTIONS(2586), - [anon_sym_SQUOTE] = ACTIONS(2586), - [anon_sym_L_DQUOTE] = ACTIONS(2586), - [anon_sym_u_DQUOTE] = ACTIONS(2586), - [anon_sym_U_DQUOTE] = ACTIONS(2586), - [anon_sym_u8_DQUOTE] = ACTIONS(2586), - [anon_sym_DQUOTE] = ACTIONS(2586), - [sym_true] = ACTIONS(2584), - [sym_false] = ACTIONS(2584), - [sym_null] = ACTIONS(2584), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2584), - [anon_sym_decltype] = ACTIONS(2584), - [anon_sym_virtual] = ACTIONS(2584), - [anon_sym_explicit] = ACTIONS(2584), - [anon_sym_typename] = ACTIONS(2584), - [anon_sym_template] = ACTIONS(2584), - [anon_sym_operator] = ACTIONS(2584), - [anon_sym_try] = ACTIONS(2584), - [anon_sym_delete] = ACTIONS(2584), - [anon_sym_throw] = ACTIONS(2584), - [anon_sym_namespace] = ACTIONS(2584), - [anon_sym_using] = ACTIONS(2584), - [anon_sym_static_assert] = ACTIONS(2584), - [anon_sym_concept] = ACTIONS(2584), - [anon_sym_co_return] = ACTIONS(2584), - [anon_sym_co_yield] = ACTIONS(2584), - [anon_sym_R_DQUOTE] = ACTIONS(2586), - [anon_sym_LR_DQUOTE] = ACTIONS(2586), - [anon_sym_uR_DQUOTE] = ACTIONS(2586), - [anon_sym_UR_DQUOTE] = ACTIONS(2586), - [anon_sym_u8R_DQUOTE] = ACTIONS(2586), - [anon_sym_co_await] = ACTIONS(2584), - [anon_sym_new] = ACTIONS(2584), - [anon_sym_requires] = ACTIONS(2584), - [sym_this] = ACTIONS(2584), - [sym_nullptr] = ACTIONS(2584), + [sym_identifier] = ACTIONS(3016), + [aux_sym_preproc_include_token1] = ACTIONS(3016), + [aux_sym_preproc_def_token1] = ACTIONS(3016), + [aux_sym_preproc_if_token1] = ACTIONS(3016), + [aux_sym_preproc_if_token2] = ACTIONS(3016), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3016), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3016), + [aux_sym_preproc_else_token1] = ACTIONS(3016), + [aux_sym_preproc_elif_token1] = ACTIONS(3016), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3016), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3016), + [sym_preproc_directive] = ACTIONS(3016), + [anon_sym_LPAREN2] = ACTIONS(3018), + [anon_sym_BANG] = ACTIONS(3018), + [anon_sym_TILDE] = ACTIONS(3018), + [anon_sym_DASH] = ACTIONS(3016), + [anon_sym_PLUS] = ACTIONS(3016), + [anon_sym_STAR] = ACTIONS(3018), + [anon_sym_AMP_AMP] = ACTIONS(3018), + [anon_sym_AMP] = ACTIONS(3016), + [anon_sym_SEMI] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3016), + [anon_sym_extern] = ACTIONS(3016), + [anon_sym___attribute__] = ACTIONS(3016), + [anon_sym_COLON_COLON] = ACTIONS(3018), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3018), + [anon_sym___declspec] = ACTIONS(3016), + [anon_sym___based] = ACTIONS(3016), + [anon_sym___cdecl] = ACTIONS(3016), + [anon_sym___clrcall] = ACTIONS(3016), + [anon_sym___stdcall] = ACTIONS(3016), + [anon_sym___fastcall] = ACTIONS(3016), + [anon_sym___thiscall] = ACTIONS(3016), + [anon_sym___vectorcall] = ACTIONS(3016), + [anon_sym_LBRACE] = ACTIONS(3018), + [anon_sym_LBRACK] = ACTIONS(3016), + [anon_sym_static] = ACTIONS(3016), + [anon_sym_register] = ACTIONS(3016), + [anon_sym_inline] = ACTIONS(3016), + [anon_sym_thread_local] = ACTIONS(3016), + [anon_sym_const] = ACTIONS(3016), + [anon_sym_constexpr] = ACTIONS(3016), + [anon_sym_volatile] = ACTIONS(3016), + [anon_sym_restrict] = ACTIONS(3016), + [anon_sym___restrict__] = ACTIONS(3016), + [anon_sym__Atomic] = ACTIONS(3016), + [anon_sym__Noreturn] = ACTIONS(3016), + [anon_sym_noreturn] = ACTIONS(3016), + [anon_sym_mutable] = ACTIONS(3016), + [anon_sym_constinit] = ACTIONS(3016), + [anon_sym_consteval] = ACTIONS(3016), + [anon_sym_signed] = ACTIONS(3016), + [anon_sym_unsigned] = ACTIONS(3016), + [anon_sym_long] = ACTIONS(3016), + [anon_sym_short] = ACTIONS(3016), + [sym_primitive_type] = ACTIONS(3016), + [anon_sym_enum] = ACTIONS(3016), + [anon_sym_class] = ACTIONS(3016), + [anon_sym_struct] = ACTIONS(3016), + [anon_sym_union] = ACTIONS(3016), + [anon_sym_if] = ACTIONS(3016), + [anon_sym_else] = ACTIONS(3016), + [anon_sym_switch] = ACTIONS(3016), + [anon_sym_case] = ACTIONS(3016), + [anon_sym_default] = ACTIONS(3016), + [anon_sym_while] = ACTIONS(3016), + [anon_sym_do] = ACTIONS(3016), + [anon_sym_for] = ACTIONS(3016), + [anon_sym_return] = ACTIONS(3016), + [anon_sym_break] = ACTIONS(3016), + [anon_sym_continue] = ACTIONS(3016), + [anon_sym_goto] = ACTIONS(3016), + [anon_sym_not] = ACTIONS(3016), + [anon_sym_compl] = ACTIONS(3016), + [anon_sym_DASH_DASH] = ACTIONS(3018), + [anon_sym_PLUS_PLUS] = ACTIONS(3018), + [anon_sym_sizeof] = ACTIONS(3016), + [anon_sym_offsetof] = ACTIONS(3016), + [anon_sym__Generic] = ACTIONS(3016), + [anon_sym_asm] = ACTIONS(3016), + [anon_sym___asm__] = ACTIONS(3016), + [sym_number_literal] = ACTIONS(3018), + [anon_sym_L_SQUOTE] = ACTIONS(3018), + [anon_sym_u_SQUOTE] = ACTIONS(3018), + [anon_sym_U_SQUOTE] = ACTIONS(3018), + [anon_sym_u8_SQUOTE] = ACTIONS(3018), + [anon_sym_SQUOTE] = ACTIONS(3018), + [anon_sym_L_DQUOTE] = ACTIONS(3018), + [anon_sym_u_DQUOTE] = ACTIONS(3018), + [anon_sym_U_DQUOTE] = ACTIONS(3018), + [anon_sym_u8_DQUOTE] = ACTIONS(3018), + [anon_sym_DQUOTE] = ACTIONS(3018), + [sym_true] = ACTIONS(3016), + [sym_false] = ACTIONS(3016), + [anon_sym_NULL] = ACTIONS(3016), + [anon_sym_nullptr] = ACTIONS(3016), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3016), + [anon_sym_decltype] = ACTIONS(3016), + [anon_sym_virtual] = ACTIONS(3016), + [anon_sym_explicit] = ACTIONS(3016), + [anon_sym_typename] = ACTIONS(3016), + [anon_sym_template] = ACTIONS(3016), + [anon_sym_operator] = ACTIONS(3016), + [anon_sym_try] = ACTIONS(3016), + [anon_sym_delete] = ACTIONS(3016), + [anon_sym_throw] = ACTIONS(3016), + [anon_sym_namespace] = ACTIONS(3016), + [anon_sym_using] = ACTIONS(3016), + [anon_sym_static_assert] = ACTIONS(3016), + [anon_sym_concept] = ACTIONS(3016), + [anon_sym_co_return] = ACTIONS(3016), + [anon_sym_co_yield] = ACTIONS(3016), + [anon_sym_R_DQUOTE] = ACTIONS(3018), + [anon_sym_LR_DQUOTE] = ACTIONS(3018), + [anon_sym_uR_DQUOTE] = ACTIONS(3018), + [anon_sym_UR_DQUOTE] = ACTIONS(3018), + [anon_sym_u8R_DQUOTE] = ACTIONS(3018), + [anon_sym_co_await] = ACTIONS(3016), + [anon_sym_new] = ACTIONS(3016), + [anon_sym_requires] = ACTIONS(3016), + [sym_this] = ACTIONS(3016), }, [419] = { - [sym_identifier] = ACTIONS(2588), - [aux_sym_preproc_include_token1] = ACTIONS(2588), - [aux_sym_preproc_def_token1] = ACTIONS(2588), - [aux_sym_preproc_if_token1] = ACTIONS(2588), - [aux_sym_preproc_if_token2] = ACTIONS(2588), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2588), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2588), - [aux_sym_preproc_else_token1] = ACTIONS(2588), - [aux_sym_preproc_elif_token1] = ACTIONS(2588), - [sym_preproc_directive] = ACTIONS(2588), - [anon_sym_LPAREN2] = ACTIONS(2590), - [anon_sym_BANG] = ACTIONS(2590), - [anon_sym_TILDE] = ACTIONS(2590), - [anon_sym_DASH] = ACTIONS(2588), - [anon_sym_PLUS] = ACTIONS(2588), - [anon_sym_STAR] = ACTIONS(2590), - [anon_sym_AMP_AMP] = ACTIONS(2590), - [anon_sym_AMP] = ACTIONS(2588), - [anon_sym_SEMI] = ACTIONS(2590), - [anon_sym_typedef] = ACTIONS(2588), - [anon_sym_extern] = ACTIONS(2588), - [anon_sym___attribute__] = ACTIONS(2588), - [anon_sym_COLON_COLON] = ACTIONS(2590), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2590), - [anon_sym___declspec] = ACTIONS(2588), - [anon_sym___based] = ACTIONS(2588), - [anon_sym___cdecl] = ACTIONS(2588), - [anon_sym___clrcall] = ACTIONS(2588), - [anon_sym___stdcall] = ACTIONS(2588), - [anon_sym___fastcall] = ACTIONS(2588), - [anon_sym___thiscall] = ACTIONS(2588), - [anon_sym___vectorcall] = ACTIONS(2588), - [anon_sym_LBRACE] = ACTIONS(2590), - [anon_sym_LBRACK] = ACTIONS(2588), - [anon_sym_static] = ACTIONS(2588), - [anon_sym_register] = ACTIONS(2588), - [anon_sym_inline] = ACTIONS(2588), - [anon_sym_thread_local] = ACTIONS(2588), - [anon_sym_const] = ACTIONS(2588), - [anon_sym_volatile] = ACTIONS(2588), - [anon_sym_restrict] = ACTIONS(2588), - [anon_sym__Atomic] = ACTIONS(2588), - [anon_sym_mutable] = ACTIONS(2588), - [anon_sym_constexpr] = ACTIONS(2588), - [anon_sym_constinit] = ACTIONS(2588), - [anon_sym_consteval] = ACTIONS(2588), - [anon_sym_signed] = ACTIONS(2588), - [anon_sym_unsigned] = ACTIONS(2588), - [anon_sym_long] = ACTIONS(2588), - [anon_sym_short] = ACTIONS(2588), - [sym_primitive_type] = ACTIONS(2588), - [anon_sym_enum] = ACTIONS(2588), - [anon_sym_class] = ACTIONS(2588), - [anon_sym_struct] = ACTIONS(2588), - [anon_sym_union] = ACTIONS(2588), - [anon_sym_if] = ACTIONS(2588), - [anon_sym_else] = ACTIONS(2588), - [anon_sym_switch] = ACTIONS(2588), - [anon_sym_case] = ACTIONS(2588), - [anon_sym_default] = ACTIONS(2588), - [anon_sym_while] = ACTIONS(2588), - [anon_sym_do] = ACTIONS(2588), - [anon_sym_for] = ACTIONS(2588), - [anon_sym_return] = ACTIONS(2588), - [anon_sym_break] = ACTIONS(2588), - [anon_sym_continue] = ACTIONS(2588), - [anon_sym_goto] = ACTIONS(2588), - [anon_sym_not] = ACTIONS(2588), - [anon_sym_compl] = ACTIONS(2588), - [anon_sym_DASH_DASH] = ACTIONS(2590), - [anon_sym_PLUS_PLUS] = ACTIONS(2590), - [anon_sym_sizeof] = ACTIONS(2588), - [sym_number_literal] = ACTIONS(2590), - [anon_sym_L_SQUOTE] = ACTIONS(2590), - [anon_sym_u_SQUOTE] = ACTIONS(2590), - [anon_sym_U_SQUOTE] = ACTIONS(2590), - [anon_sym_u8_SQUOTE] = ACTIONS(2590), - [anon_sym_SQUOTE] = ACTIONS(2590), - [anon_sym_L_DQUOTE] = ACTIONS(2590), - [anon_sym_u_DQUOTE] = ACTIONS(2590), - [anon_sym_U_DQUOTE] = ACTIONS(2590), - [anon_sym_u8_DQUOTE] = ACTIONS(2590), - [anon_sym_DQUOTE] = ACTIONS(2590), - [sym_true] = ACTIONS(2588), - [sym_false] = ACTIONS(2588), - [sym_null] = ACTIONS(2588), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2588), - [anon_sym_decltype] = ACTIONS(2588), - [anon_sym_virtual] = ACTIONS(2588), - [anon_sym_explicit] = ACTIONS(2588), - [anon_sym_typename] = ACTIONS(2588), - [anon_sym_template] = ACTIONS(2588), - [anon_sym_operator] = ACTIONS(2588), - [anon_sym_try] = ACTIONS(2588), - [anon_sym_delete] = ACTIONS(2588), - [anon_sym_throw] = ACTIONS(2588), - [anon_sym_namespace] = ACTIONS(2588), - [anon_sym_using] = ACTIONS(2588), - [anon_sym_static_assert] = ACTIONS(2588), - [anon_sym_concept] = ACTIONS(2588), - [anon_sym_co_return] = ACTIONS(2588), - [anon_sym_co_yield] = ACTIONS(2588), - [anon_sym_R_DQUOTE] = ACTIONS(2590), - [anon_sym_LR_DQUOTE] = ACTIONS(2590), - [anon_sym_uR_DQUOTE] = ACTIONS(2590), - [anon_sym_UR_DQUOTE] = ACTIONS(2590), - [anon_sym_u8R_DQUOTE] = ACTIONS(2590), - [anon_sym_co_await] = ACTIONS(2588), - [anon_sym_new] = ACTIONS(2588), - [anon_sym_requires] = ACTIONS(2588), - [sym_this] = ACTIONS(2588), - [sym_nullptr] = ACTIONS(2588), + [sym_identifier] = ACTIONS(3020), + [aux_sym_preproc_include_token1] = ACTIONS(3020), + [aux_sym_preproc_def_token1] = ACTIONS(3020), + [aux_sym_preproc_if_token1] = ACTIONS(3020), + [aux_sym_preproc_if_token2] = ACTIONS(3020), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3020), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3020), + [aux_sym_preproc_else_token1] = ACTIONS(3020), + [aux_sym_preproc_elif_token1] = ACTIONS(3020), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3020), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3020), + [sym_preproc_directive] = ACTIONS(3020), + [anon_sym_LPAREN2] = ACTIONS(3022), + [anon_sym_BANG] = ACTIONS(3022), + [anon_sym_TILDE] = ACTIONS(3022), + [anon_sym_DASH] = ACTIONS(3020), + [anon_sym_PLUS] = ACTIONS(3020), + [anon_sym_STAR] = ACTIONS(3022), + [anon_sym_AMP_AMP] = ACTIONS(3022), + [anon_sym_AMP] = ACTIONS(3020), + [anon_sym_SEMI] = ACTIONS(3022), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(3020), + [anon_sym___attribute__] = ACTIONS(3020), + [anon_sym_COLON_COLON] = ACTIONS(3022), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(3020), + [anon_sym___based] = ACTIONS(3020), + [anon_sym___cdecl] = ACTIONS(3020), + [anon_sym___clrcall] = ACTIONS(3020), + [anon_sym___stdcall] = ACTIONS(3020), + [anon_sym___fastcall] = ACTIONS(3020), + [anon_sym___thiscall] = ACTIONS(3020), + [anon_sym___vectorcall] = ACTIONS(3020), + [anon_sym_LBRACE] = ACTIONS(3022), + [anon_sym_LBRACK] = ACTIONS(3020), + [anon_sym_static] = ACTIONS(3020), + [anon_sym_register] = ACTIONS(3020), + [anon_sym_inline] = ACTIONS(3020), + [anon_sym_thread_local] = ACTIONS(3020), + [anon_sym_const] = ACTIONS(3020), + [anon_sym_constexpr] = ACTIONS(3020), + [anon_sym_volatile] = ACTIONS(3020), + [anon_sym_restrict] = ACTIONS(3020), + [anon_sym___restrict__] = ACTIONS(3020), + [anon_sym__Atomic] = ACTIONS(3020), + [anon_sym__Noreturn] = ACTIONS(3020), + [anon_sym_noreturn] = ACTIONS(3020), + [anon_sym_mutable] = ACTIONS(3020), + [anon_sym_constinit] = ACTIONS(3020), + [anon_sym_consteval] = ACTIONS(3020), + [anon_sym_signed] = ACTIONS(3020), + [anon_sym_unsigned] = ACTIONS(3020), + [anon_sym_long] = ACTIONS(3020), + [anon_sym_short] = ACTIONS(3020), + [sym_primitive_type] = ACTIONS(3020), + [anon_sym_enum] = ACTIONS(3020), + [anon_sym_class] = ACTIONS(3020), + [anon_sym_struct] = ACTIONS(3020), + [anon_sym_union] = ACTIONS(3020), + [anon_sym_if] = ACTIONS(3020), + [anon_sym_else] = ACTIONS(3020), + [anon_sym_switch] = ACTIONS(3020), + [anon_sym_case] = ACTIONS(3020), + [anon_sym_default] = ACTIONS(3020), + [anon_sym_while] = ACTIONS(3020), + [anon_sym_do] = ACTIONS(3020), + [anon_sym_for] = ACTIONS(3020), + [anon_sym_return] = ACTIONS(3020), + [anon_sym_break] = ACTIONS(3020), + [anon_sym_continue] = ACTIONS(3020), + [anon_sym_goto] = ACTIONS(3020), + [anon_sym_not] = ACTIONS(3020), + [anon_sym_compl] = ACTIONS(3020), + [anon_sym_DASH_DASH] = ACTIONS(3022), + [anon_sym_PLUS_PLUS] = ACTIONS(3022), + [anon_sym_sizeof] = ACTIONS(3020), + [anon_sym_offsetof] = ACTIONS(3020), + [anon_sym__Generic] = ACTIONS(3020), + [anon_sym_asm] = ACTIONS(3020), + [anon_sym___asm__] = ACTIONS(3020), + [sym_number_literal] = ACTIONS(3022), + [anon_sym_L_SQUOTE] = ACTIONS(3022), + [anon_sym_u_SQUOTE] = ACTIONS(3022), + [anon_sym_U_SQUOTE] = ACTIONS(3022), + [anon_sym_u8_SQUOTE] = ACTIONS(3022), + [anon_sym_SQUOTE] = ACTIONS(3022), + [anon_sym_L_DQUOTE] = ACTIONS(3022), + [anon_sym_u_DQUOTE] = ACTIONS(3022), + [anon_sym_U_DQUOTE] = ACTIONS(3022), + [anon_sym_u8_DQUOTE] = ACTIONS(3022), + [anon_sym_DQUOTE] = ACTIONS(3022), + [sym_true] = ACTIONS(3020), + [sym_false] = ACTIONS(3020), + [anon_sym_NULL] = ACTIONS(3020), + [anon_sym_nullptr] = ACTIONS(3020), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3020), + [anon_sym_decltype] = ACTIONS(3020), + [anon_sym_virtual] = ACTIONS(3020), + [anon_sym_explicit] = ACTIONS(3020), + [anon_sym_typename] = ACTIONS(3020), + [anon_sym_template] = ACTIONS(3020), + [anon_sym_operator] = ACTIONS(3020), + [anon_sym_try] = ACTIONS(3020), + [anon_sym_delete] = ACTIONS(3020), + [anon_sym_throw] = ACTIONS(3020), + [anon_sym_namespace] = ACTIONS(3020), + [anon_sym_using] = ACTIONS(3020), + [anon_sym_static_assert] = ACTIONS(3020), + [anon_sym_concept] = ACTIONS(3020), + [anon_sym_co_return] = ACTIONS(3020), + [anon_sym_co_yield] = ACTIONS(3020), + [anon_sym_R_DQUOTE] = ACTIONS(3022), + [anon_sym_LR_DQUOTE] = ACTIONS(3022), + [anon_sym_uR_DQUOTE] = ACTIONS(3022), + [anon_sym_UR_DQUOTE] = ACTIONS(3022), + [anon_sym_u8R_DQUOTE] = ACTIONS(3022), + [anon_sym_co_await] = ACTIONS(3020), + [anon_sym_new] = ACTIONS(3020), + [anon_sym_requires] = ACTIONS(3020), + [sym_this] = ACTIONS(3020), }, [420] = { - [sym_type_qualifier] = STATE(3306), - [sym__type_specifier] = STATE(3903), - [sym_sized_type_specifier] = STATE(3003), - [sym_enum_specifier] = STATE(3003), - [sym_struct_specifier] = STATE(3003), - [sym_union_specifier] = STATE(3003), - [sym__expression] = STATE(3456), - [sym_conditional_expression] = STATE(3855), - [sym_assignment_expression] = STATE(3855), - [sym_pointer_expression] = STATE(2954), - [sym_unary_expression] = STATE(3855), - [sym_binary_expression] = STATE(3855), - [sym_update_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_type_descriptor] = STATE(5360), - [sym_sizeof_expression] = STATE(3855), - [sym_subscript_expression] = STATE(2954), - [sym_call_expression] = STATE(2954), - [sym_field_expression] = STATE(2954), - [sym_compound_literal_expression] = STATE(3855), - [sym_parenthesized_expression] = STATE(2954), - [sym_char_literal] = STATE(3557), - [sym_concatenated_string] = STATE(3557), - [sym_string_literal] = STATE(2955), - [sym_placeholder_type_specifier] = STATE(3003), - [sym_decltype_auto] = STATE(3008), - [sym_decltype] = STATE(2851), - [sym_class_specifier] = STATE(3003), - [sym__class_name] = STATE(5844), - [sym_dependent_type] = STATE(3003), - [sym_template_type] = STATE(4288), - [sym_template_function] = STATE(3855), - [sym_raw_string_literal] = STATE(2955), - [sym_co_await_expression] = STATE(3855), - [sym_new_expression] = STATE(3855), - [sym_delete_expression] = STATE(3855), - [sym_requires_clause] = STATE(3855), - [sym_requires_expression] = STATE(3855), - [sym_lambda_expression] = STATE(3855), - [sym_lambda_capture_specifier] = STATE(4501), - [sym_fold_expression] = STATE(3855), - [sym_parameter_pack_expansion] = STATE(3855), - [sym_type_parameter_pack_expansion] = STATE(5411), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4544), - [sym_qualified_identifier] = STATE(2954), - [sym_qualified_type_identifier] = STATE(4356), - [sym_user_defined_literal] = STATE(3855), - [aux_sym_type_definition_repeat1] = STATE(3306), - [aux_sym_sized_type_specifier_repeat1] = STATE(2022), - [sym_identifier] = ACTIONS(2408), - [anon_sym_LPAREN2] = ACTIONS(2410), - [anon_sym_BANG] = ACTIONS(2412), - [anon_sym_TILDE] = ACTIONS(2412), - [anon_sym_DASH] = ACTIONS(2414), - [anon_sym_PLUS] = ACTIONS(2414), - [anon_sym_STAR] = ACTIONS(2416), - [anon_sym_AMP] = ACTIONS(2416), - [anon_sym_COLON_COLON] = ACTIONS(2418), - [anon_sym_LBRACK] = ACTIONS(1539), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(2420), - [anon_sym_unsigned] = ACTIONS(2420), - [anon_sym_long] = ACTIONS(2420), - [anon_sym_short] = ACTIONS(2420), - [sym_primitive_type] = ACTIONS(2422), - [anon_sym_enum] = ACTIONS(2424), - [anon_sym_class] = ACTIONS(2426), - [anon_sym_struct] = ACTIONS(2428), - [anon_sym_union] = ACTIONS(2430), - [anon_sym_not] = ACTIONS(2414), - [anon_sym_compl] = ACTIONS(2414), - [anon_sym_DASH_DASH] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(2432), - [anon_sym_sizeof] = ACTIONS(2434), - [sym_number_literal] = ACTIONS(2436), - [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_L_DQUOTE] = ACTIONS(2440), - [anon_sym_u_DQUOTE] = ACTIONS(2440), - [anon_sym_U_DQUOTE] = ACTIONS(2440), - [anon_sym_u8_DQUOTE] = ACTIONS(2440), - [anon_sym_DQUOTE] = ACTIONS(2440), - [sym_true] = ACTIONS(2442), - [sym_false] = ACTIONS(2442), - [sym_null] = ACTIONS(2442), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2444), - [anon_sym_decltype] = ACTIONS(2446), - [anon_sym_typename] = ACTIONS(2448), - [anon_sym_template] = ACTIONS(996), - [anon_sym_GT2] = ACTIONS(2592), - [anon_sym_delete] = ACTIONS(2452), - [anon_sym_R_DQUOTE] = ACTIONS(2454), - [anon_sym_LR_DQUOTE] = ACTIONS(2454), - [anon_sym_uR_DQUOTE] = ACTIONS(2454), - [anon_sym_UR_DQUOTE] = ACTIONS(2454), - [anon_sym_u8R_DQUOTE] = ACTIONS(2454), - [anon_sym_co_await] = ACTIONS(2456), - [anon_sym_new] = ACTIONS(2458), - [anon_sym_requires] = ACTIONS(2460), - [sym_this] = ACTIONS(2442), - [sym_nullptr] = ACTIONS(2442), + [sym_identifier] = ACTIONS(3024), + [aux_sym_preproc_include_token1] = ACTIONS(3024), + [aux_sym_preproc_def_token1] = ACTIONS(3024), + [aux_sym_preproc_if_token1] = ACTIONS(3024), + [aux_sym_preproc_if_token2] = ACTIONS(3024), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3024), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3024), + [aux_sym_preproc_else_token1] = ACTIONS(3024), + [aux_sym_preproc_elif_token1] = ACTIONS(3024), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3024), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3024), + [sym_preproc_directive] = ACTIONS(3024), + [anon_sym_LPAREN2] = ACTIONS(3026), + [anon_sym_BANG] = ACTIONS(3026), + [anon_sym_TILDE] = ACTIONS(3026), + [anon_sym_DASH] = ACTIONS(3024), + [anon_sym_PLUS] = ACTIONS(3024), + [anon_sym_STAR] = ACTIONS(3026), + [anon_sym_AMP_AMP] = ACTIONS(3026), + [anon_sym_AMP] = ACTIONS(3024), + [anon_sym_SEMI] = ACTIONS(3026), + [anon_sym_typedef] = ACTIONS(3024), + [anon_sym_extern] = ACTIONS(3024), + [anon_sym___attribute__] = ACTIONS(3024), + [anon_sym_COLON_COLON] = ACTIONS(3026), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3026), + [anon_sym___declspec] = ACTIONS(3024), + [anon_sym___based] = ACTIONS(3024), + [anon_sym___cdecl] = ACTIONS(3024), + [anon_sym___clrcall] = ACTIONS(3024), + [anon_sym___stdcall] = ACTIONS(3024), + [anon_sym___fastcall] = ACTIONS(3024), + [anon_sym___thiscall] = ACTIONS(3024), + [anon_sym___vectorcall] = ACTIONS(3024), + [anon_sym_LBRACE] = ACTIONS(3026), + [anon_sym_LBRACK] = ACTIONS(3024), + [anon_sym_static] = ACTIONS(3024), + [anon_sym_register] = ACTIONS(3024), + [anon_sym_inline] = ACTIONS(3024), + [anon_sym_thread_local] = ACTIONS(3024), + [anon_sym_const] = ACTIONS(3024), + [anon_sym_constexpr] = ACTIONS(3024), + [anon_sym_volatile] = ACTIONS(3024), + [anon_sym_restrict] = ACTIONS(3024), + [anon_sym___restrict__] = ACTIONS(3024), + [anon_sym__Atomic] = ACTIONS(3024), + [anon_sym__Noreturn] = ACTIONS(3024), + [anon_sym_noreturn] = ACTIONS(3024), + [anon_sym_mutable] = ACTIONS(3024), + [anon_sym_constinit] = ACTIONS(3024), + [anon_sym_consteval] = ACTIONS(3024), + [anon_sym_signed] = ACTIONS(3024), + [anon_sym_unsigned] = ACTIONS(3024), + [anon_sym_long] = ACTIONS(3024), + [anon_sym_short] = ACTIONS(3024), + [sym_primitive_type] = ACTIONS(3024), + [anon_sym_enum] = ACTIONS(3024), + [anon_sym_class] = ACTIONS(3024), + [anon_sym_struct] = ACTIONS(3024), + [anon_sym_union] = ACTIONS(3024), + [anon_sym_if] = ACTIONS(3024), + [anon_sym_else] = ACTIONS(3024), + [anon_sym_switch] = ACTIONS(3024), + [anon_sym_case] = ACTIONS(3024), + [anon_sym_default] = ACTIONS(3024), + [anon_sym_while] = ACTIONS(3024), + [anon_sym_do] = ACTIONS(3024), + [anon_sym_for] = ACTIONS(3024), + [anon_sym_return] = ACTIONS(3024), + [anon_sym_break] = ACTIONS(3024), + [anon_sym_continue] = ACTIONS(3024), + [anon_sym_goto] = ACTIONS(3024), + [anon_sym_not] = ACTIONS(3024), + [anon_sym_compl] = ACTIONS(3024), + [anon_sym_DASH_DASH] = ACTIONS(3026), + [anon_sym_PLUS_PLUS] = ACTIONS(3026), + [anon_sym_sizeof] = ACTIONS(3024), + [anon_sym_offsetof] = ACTIONS(3024), + [anon_sym__Generic] = ACTIONS(3024), + [anon_sym_asm] = ACTIONS(3024), + [anon_sym___asm__] = ACTIONS(3024), + [sym_number_literal] = ACTIONS(3026), + [anon_sym_L_SQUOTE] = ACTIONS(3026), + [anon_sym_u_SQUOTE] = ACTIONS(3026), + [anon_sym_U_SQUOTE] = ACTIONS(3026), + [anon_sym_u8_SQUOTE] = ACTIONS(3026), + [anon_sym_SQUOTE] = ACTIONS(3026), + [anon_sym_L_DQUOTE] = ACTIONS(3026), + [anon_sym_u_DQUOTE] = ACTIONS(3026), + [anon_sym_U_DQUOTE] = ACTIONS(3026), + [anon_sym_u8_DQUOTE] = ACTIONS(3026), + [anon_sym_DQUOTE] = ACTIONS(3026), + [sym_true] = ACTIONS(3024), + [sym_false] = ACTIONS(3024), + [anon_sym_NULL] = ACTIONS(3024), + [anon_sym_nullptr] = ACTIONS(3024), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3024), + [anon_sym_decltype] = ACTIONS(3024), + [anon_sym_virtual] = ACTIONS(3024), + [anon_sym_explicit] = ACTIONS(3024), + [anon_sym_typename] = ACTIONS(3024), + [anon_sym_template] = ACTIONS(3024), + [anon_sym_operator] = ACTIONS(3024), + [anon_sym_try] = ACTIONS(3024), + [anon_sym_delete] = ACTIONS(3024), + [anon_sym_throw] = ACTIONS(3024), + [anon_sym_namespace] = ACTIONS(3024), + [anon_sym_using] = ACTIONS(3024), + [anon_sym_static_assert] = ACTIONS(3024), + [anon_sym_concept] = ACTIONS(3024), + [anon_sym_co_return] = ACTIONS(3024), + [anon_sym_co_yield] = ACTIONS(3024), + [anon_sym_R_DQUOTE] = ACTIONS(3026), + [anon_sym_LR_DQUOTE] = ACTIONS(3026), + [anon_sym_uR_DQUOTE] = ACTIONS(3026), + [anon_sym_UR_DQUOTE] = ACTIONS(3026), + [anon_sym_u8R_DQUOTE] = ACTIONS(3026), + [anon_sym_co_await] = ACTIONS(3024), + [anon_sym_new] = ACTIONS(3024), + [anon_sym_requires] = ACTIONS(3024), + [sym_this] = ACTIONS(3024), }, [421] = { - [sym_type_qualifier] = STATE(3306), - [sym__type_specifier] = STATE(3903), - [sym_sized_type_specifier] = STATE(3003), - [sym_enum_specifier] = STATE(3003), - [sym_struct_specifier] = STATE(3003), - [sym_union_specifier] = STATE(3003), - [sym__expression] = STATE(3462), - [sym_conditional_expression] = STATE(3855), - [sym_assignment_expression] = STATE(3855), - [sym_pointer_expression] = STATE(2954), - [sym_unary_expression] = STATE(3855), - [sym_binary_expression] = STATE(3855), - [sym_update_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_type_descriptor] = STATE(5319), - [sym_sizeof_expression] = STATE(3855), - [sym_subscript_expression] = STATE(2954), - [sym_call_expression] = STATE(2954), - [sym_field_expression] = STATE(2954), - [sym_compound_literal_expression] = STATE(3855), - [sym_parenthesized_expression] = STATE(2954), - [sym_char_literal] = STATE(3557), - [sym_concatenated_string] = STATE(3557), - [sym_string_literal] = STATE(2955), - [sym_placeholder_type_specifier] = STATE(3003), - [sym_decltype_auto] = STATE(3008), - [sym_decltype] = STATE(2851), - [sym_class_specifier] = STATE(3003), - [sym__class_name] = STATE(5844), - [sym_dependent_type] = STATE(3003), - [sym_template_type] = STATE(4288), - [sym_template_function] = STATE(3855), - [sym_raw_string_literal] = STATE(2955), - [sym_co_await_expression] = STATE(3855), - [sym_new_expression] = STATE(3855), - [sym_delete_expression] = STATE(3855), - [sym_requires_clause] = STATE(3855), - [sym_requires_expression] = STATE(3855), - [sym_lambda_expression] = STATE(3855), - [sym_lambda_capture_specifier] = STATE(4501), - [sym_fold_expression] = STATE(3855), - [sym_parameter_pack_expansion] = STATE(3855), - [sym_type_parameter_pack_expansion] = STATE(5445), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4544), - [sym_qualified_identifier] = STATE(2954), - [sym_qualified_type_identifier] = STATE(4356), - [sym_user_defined_literal] = STATE(3855), - [aux_sym_type_definition_repeat1] = STATE(3306), - [aux_sym_sized_type_specifier_repeat1] = STATE(2022), - [sym_identifier] = ACTIONS(2408), - [anon_sym_LPAREN2] = ACTIONS(2410), - [anon_sym_BANG] = ACTIONS(2412), - [anon_sym_TILDE] = ACTIONS(2412), - [anon_sym_DASH] = ACTIONS(2414), - [anon_sym_PLUS] = ACTIONS(2414), - [anon_sym_STAR] = ACTIONS(2416), - [anon_sym_AMP] = ACTIONS(2416), - [anon_sym_COLON_COLON] = ACTIONS(2418), - [anon_sym_LBRACK] = ACTIONS(1539), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(2420), - [anon_sym_unsigned] = ACTIONS(2420), - [anon_sym_long] = ACTIONS(2420), - [anon_sym_short] = ACTIONS(2420), - [sym_primitive_type] = ACTIONS(2422), - [anon_sym_enum] = ACTIONS(2424), - [anon_sym_class] = ACTIONS(2426), - [anon_sym_struct] = ACTIONS(2428), - [anon_sym_union] = ACTIONS(2430), - [anon_sym_not] = ACTIONS(2414), - [anon_sym_compl] = ACTIONS(2414), - [anon_sym_DASH_DASH] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(2432), - [anon_sym_sizeof] = ACTIONS(2434), - [sym_number_literal] = ACTIONS(2436), - [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_L_DQUOTE] = ACTIONS(2440), - [anon_sym_u_DQUOTE] = ACTIONS(2440), - [anon_sym_U_DQUOTE] = ACTIONS(2440), - [anon_sym_u8_DQUOTE] = ACTIONS(2440), - [anon_sym_DQUOTE] = ACTIONS(2440), - [sym_true] = ACTIONS(2442), - [sym_false] = ACTIONS(2442), - [sym_null] = ACTIONS(2442), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2444), - [anon_sym_decltype] = ACTIONS(2446), - [anon_sym_typename] = ACTIONS(2448), - [anon_sym_template] = ACTIONS(996), - [anon_sym_GT2] = ACTIONS(2594), - [anon_sym_delete] = ACTIONS(2452), - [anon_sym_R_DQUOTE] = ACTIONS(2454), - [anon_sym_LR_DQUOTE] = ACTIONS(2454), - [anon_sym_uR_DQUOTE] = ACTIONS(2454), - [anon_sym_UR_DQUOTE] = ACTIONS(2454), - [anon_sym_u8R_DQUOTE] = ACTIONS(2454), - [anon_sym_co_await] = ACTIONS(2456), - [anon_sym_new] = ACTIONS(2458), - [anon_sym_requires] = ACTIONS(2460), - [sym_this] = ACTIONS(2442), - [sym_nullptr] = ACTIONS(2442), + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token2] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [aux_sym_preproc_else_token1] = ACTIONS(3028), + [aux_sym_preproc_elif_token1] = ACTIONS(3028), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, [422] = { - [sym_identifier] = ACTIONS(2596), - [aux_sym_preproc_include_token1] = ACTIONS(2596), - [aux_sym_preproc_def_token1] = ACTIONS(2596), - [aux_sym_preproc_if_token1] = ACTIONS(2596), - [aux_sym_preproc_if_token2] = ACTIONS(2596), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2596), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2596), - [aux_sym_preproc_else_token1] = ACTIONS(2596), - [aux_sym_preproc_elif_token1] = ACTIONS(2596), - [sym_preproc_directive] = ACTIONS(2596), - [anon_sym_LPAREN2] = ACTIONS(2598), - [anon_sym_BANG] = ACTIONS(2598), - [anon_sym_TILDE] = ACTIONS(2598), - [anon_sym_DASH] = ACTIONS(2596), - [anon_sym_PLUS] = ACTIONS(2596), - [anon_sym_STAR] = ACTIONS(2598), - [anon_sym_AMP_AMP] = ACTIONS(2598), - [anon_sym_AMP] = ACTIONS(2596), - [anon_sym_SEMI] = ACTIONS(2598), - [anon_sym_typedef] = ACTIONS(2596), - [anon_sym_extern] = ACTIONS(2596), - [anon_sym___attribute__] = ACTIONS(2596), - [anon_sym_COLON_COLON] = ACTIONS(2598), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2598), - [anon_sym___declspec] = ACTIONS(2596), - [anon_sym___based] = ACTIONS(2596), - [anon_sym___cdecl] = ACTIONS(2596), - [anon_sym___clrcall] = ACTIONS(2596), - [anon_sym___stdcall] = ACTIONS(2596), - [anon_sym___fastcall] = ACTIONS(2596), - [anon_sym___thiscall] = ACTIONS(2596), - [anon_sym___vectorcall] = ACTIONS(2596), - [anon_sym_LBRACE] = ACTIONS(2598), - [anon_sym_LBRACK] = ACTIONS(2596), - [anon_sym_static] = ACTIONS(2596), - [anon_sym_register] = ACTIONS(2596), - [anon_sym_inline] = ACTIONS(2596), - [anon_sym_thread_local] = ACTIONS(2596), - [anon_sym_const] = ACTIONS(2596), - [anon_sym_volatile] = ACTIONS(2596), - [anon_sym_restrict] = ACTIONS(2596), - [anon_sym__Atomic] = ACTIONS(2596), - [anon_sym_mutable] = ACTIONS(2596), - [anon_sym_constexpr] = ACTIONS(2596), - [anon_sym_constinit] = ACTIONS(2596), - [anon_sym_consteval] = ACTIONS(2596), - [anon_sym_signed] = ACTIONS(2596), - [anon_sym_unsigned] = ACTIONS(2596), - [anon_sym_long] = ACTIONS(2596), - [anon_sym_short] = ACTIONS(2596), - [sym_primitive_type] = ACTIONS(2596), - [anon_sym_enum] = ACTIONS(2596), - [anon_sym_class] = ACTIONS(2596), - [anon_sym_struct] = ACTIONS(2596), - [anon_sym_union] = ACTIONS(2596), - [anon_sym_if] = ACTIONS(2596), - [anon_sym_else] = ACTIONS(2596), - [anon_sym_switch] = ACTIONS(2596), - [anon_sym_case] = ACTIONS(2596), - [anon_sym_default] = ACTIONS(2596), - [anon_sym_while] = ACTIONS(2596), - [anon_sym_do] = ACTIONS(2596), - [anon_sym_for] = ACTIONS(2596), - [anon_sym_return] = ACTIONS(2596), - [anon_sym_break] = ACTIONS(2596), - [anon_sym_continue] = ACTIONS(2596), - [anon_sym_goto] = ACTIONS(2596), - [anon_sym_not] = ACTIONS(2596), - [anon_sym_compl] = ACTIONS(2596), - [anon_sym_DASH_DASH] = ACTIONS(2598), - [anon_sym_PLUS_PLUS] = ACTIONS(2598), - [anon_sym_sizeof] = ACTIONS(2596), - [sym_number_literal] = ACTIONS(2598), - [anon_sym_L_SQUOTE] = ACTIONS(2598), - [anon_sym_u_SQUOTE] = ACTIONS(2598), - [anon_sym_U_SQUOTE] = ACTIONS(2598), - [anon_sym_u8_SQUOTE] = ACTIONS(2598), - [anon_sym_SQUOTE] = ACTIONS(2598), - [anon_sym_L_DQUOTE] = ACTIONS(2598), - [anon_sym_u_DQUOTE] = ACTIONS(2598), - [anon_sym_U_DQUOTE] = ACTIONS(2598), - [anon_sym_u8_DQUOTE] = ACTIONS(2598), - [anon_sym_DQUOTE] = ACTIONS(2598), - [sym_true] = ACTIONS(2596), - [sym_false] = ACTIONS(2596), - [sym_null] = ACTIONS(2596), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2596), - [anon_sym_decltype] = ACTIONS(2596), - [anon_sym_virtual] = ACTIONS(2596), - [anon_sym_explicit] = ACTIONS(2596), - [anon_sym_typename] = ACTIONS(2596), - [anon_sym_template] = ACTIONS(2596), - [anon_sym_operator] = ACTIONS(2596), - [anon_sym_try] = ACTIONS(2596), - [anon_sym_delete] = ACTIONS(2596), - [anon_sym_throw] = ACTIONS(2596), - [anon_sym_namespace] = ACTIONS(2596), - [anon_sym_using] = ACTIONS(2596), - [anon_sym_static_assert] = ACTIONS(2596), - [anon_sym_concept] = ACTIONS(2596), - [anon_sym_co_return] = ACTIONS(2596), - [anon_sym_co_yield] = ACTIONS(2596), - [anon_sym_R_DQUOTE] = ACTIONS(2598), - [anon_sym_LR_DQUOTE] = ACTIONS(2598), - [anon_sym_uR_DQUOTE] = ACTIONS(2598), - [anon_sym_UR_DQUOTE] = ACTIONS(2598), - [anon_sym_u8R_DQUOTE] = ACTIONS(2598), - [anon_sym_co_await] = ACTIONS(2596), - [anon_sym_new] = ACTIONS(2596), - [anon_sym_requires] = ACTIONS(2596), - [sym_this] = ACTIONS(2596), - [sym_nullptr] = ACTIONS(2596), + [sym_identifier] = ACTIONS(3024), + [aux_sym_preproc_include_token1] = ACTIONS(3024), + [aux_sym_preproc_def_token1] = ACTIONS(3024), + [aux_sym_preproc_if_token1] = ACTIONS(3024), + [aux_sym_preproc_if_token2] = ACTIONS(3024), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3024), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3024), + [aux_sym_preproc_else_token1] = ACTIONS(3024), + [aux_sym_preproc_elif_token1] = ACTIONS(3024), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3024), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3024), + [sym_preproc_directive] = ACTIONS(3024), + [anon_sym_LPAREN2] = ACTIONS(3026), + [anon_sym_BANG] = ACTIONS(3026), + [anon_sym_TILDE] = ACTIONS(3026), + [anon_sym_DASH] = ACTIONS(3024), + [anon_sym_PLUS] = ACTIONS(3024), + [anon_sym_STAR] = ACTIONS(3026), + [anon_sym_AMP_AMP] = ACTIONS(3026), + [anon_sym_AMP] = ACTIONS(3024), + [anon_sym_SEMI] = ACTIONS(3026), + [anon_sym_typedef] = ACTIONS(3024), + [anon_sym_extern] = ACTIONS(3024), + [anon_sym___attribute__] = ACTIONS(3024), + [anon_sym_COLON_COLON] = ACTIONS(3026), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3026), + [anon_sym___declspec] = ACTIONS(3024), + [anon_sym___based] = ACTIONS(3024), + [anon_sym___cdecl] = ACTIONS(3024), + [anon_sym___clrcall] = ACTIONS(3024), + [anon_sym___stdcall] = ACTIONS(3024), + [anon_sym___fastcall] = ACTIONS(3024), + [anon_sym___thiscall] = ACTIONS(3024), + [anon_sym___vectorcall] = ACTIONS(3024), + [anon_sym_LBRACE] = ACTIONS(3026), + [anon_sym_LBRACK] = ACTIONS(3024), + [anon_sym_static] = ACTIONS(3024), + [anon_sym_register] = ACTIONS(3024), + [anon_sym_inline] = ACTIONS(3024), + [anon_sym_thread_local] = ACTIONS(3024), + [anon_sym_const] = ACTIONS(3024), + [anon_sym_constexpr] = ACTIONS(3024), + [anon_sym_volatile] = ACTIONS(3024), + [anon_sym_restrict] = ACTIONS(3024), + [anon_sym___restrict__] = ACTIONS(3024), + [anon_sym__Atomic] = ACTIONS(3024), + [anon_sym__Noreturn] = ACTIONS(3024), + [anon_sym_noreturn] = ACTIONS(3024), + [anon_sym_mutable] = ACTIONS(3024), + [anon_sym_constinit] = ACTIONS(3024), + [anon_sym_consteval] = ACTIONS(3024), + [anon_sym_signed] = ACTIONS(3024), + [anon_sym_unsigned] = ACTIONS(3024), + [anon_sym_long] = ACTIONS(3024), + [anon_sym_short] = ACTIONS(3024), + [sym_primitive_type] = ACTIONS(3024), + [anon_sym_enum] = ACTIONS(3024), + [anon_sym_class] = ACTIONS(3024), + [anon_sym_struct] = ACTIONS(3024), + [anon_sym_union] = ACTIONS(3024), + [anon_sym_if] = ACTIONS(3024), + [anon_sym_else] = ACTIONS(3024), + [anon_sym_switch] = ACTIONS(3024), + [anon_sym_case] = ACTIONS(3024), + [anon_sym_default] = ACTIONS(3024), + [anon_sym_while] = ACTIONS(3024), + [anon_sym_do] = ACTIONS(3024), + [anon_sym_for] = ACTIONS(3024), + [anon_sym_return] = ACTIONS(3024), + [anon_sym_break] = ACTIONS(3024), + [anon_sym_continue] = ACTIONS(3024), + [anon_sym_goto] = ACTIONS(3024), + [anon_sym_not] = ACTIONS(3024), + [anon_sym_compl] = ACTIONS(3024), + [anon_sym_DASH_DASH] = ACTIONS(3026), + [anon_sym_PLUS_PLUS] = ACTIONS(3026), + [anon_sym_sizeof] = ACTIONS(3024), + [anon_sym_offsetof] = ACTIONS(3024), + [anon_sym__Generic] = ACTIONS(3024), + [anon_sym_asm] = ACTIONS(3024), + [anon_sym___asm__] = ACTIONS(3024), + [sym_number_literal] = ACTIONS(3026), + [anon_sym_L_SQUOTE] = ACTIONS(3026), + [anon_sym_u_SQUOTE] = ACTIONS(3026), + [anon_sym_U_SQUOTE] = ACTIONS(3026), + [anon_sym_u8_SQUOTE] = ACTIONS(3026), + [anon_sym_SQUOTE] = ACTIONS(3026), + [anon_sym_L_DQUOTE] = ACTIONS(3026), + [anon_sym_u_DQUOTE] = ACTIONS(3026), + [anon_sym_U_DQUOTE] = ACTIONS(3026), + [anon_sym_u8_DQUOTE] = ACTIONS(3026), + [anon_sym_DQUOTE] = ACTIONS(3026), + [sym_true] = ACTIONS(3024), + [sym_false] = ACTIONS(3024), + [anon_sym_NULL] = ACTIONS(3024), + [anon_sym_nullptr] = ACTIONS(3024), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3024), + [anon_sym_decltype] = ACTIONS(3024), + [anon_sym_virtual] = ACTIONS(3024), + [anon_sym_explicit] = ACTIONS(3024), + [anon_sym_typename] = ACTIONS(3024), + [anon_sym_template] = ACTIONS(3024), + [anon_sym_operator] = ACTIONS(3024), + [anon_sym_try] = ACTIONS(3024), + [anon_sym_delete] = ACTIONS(3024), + [anon_sym_throw] = ACTIONS(3024), + [anon_sym_namespace] = ACTIONS(3024), + [anon_sym_using] = ACTIONS(3024), + [anon_sym_static_assert] = ACTIONS(3024), + [anon_sym_concept] = ACTIONS(3024), + [anon_sym_co_return] = ACTIONS(3024), + [anon_sym_co_yield] = ACTIONS(3024), + [anon_sym_R_DQUOTE] = ACTIONS(3026), + [anon_sym_LR_DQUOTE] = ACTIONS(3026), + [anon_sym_uR_DQUOTE] = ACTIONS(3026), + [anon_sym_UR_DQUOTE] = ACTIONS(3026), + [anon_sym_u8R_DQUOTE] = ACTIONS(3026), + [anon_sym_co_await] = ACTIONS(3024), + [anon_sym_new] = ACTIONS(3024), + [anon_sym_requires] = ACTIONS(3024), + [sym_this] = ACTIONS(3024), }, [423] = { - [sym_type_qualifier] = STATE(3306), - [sym__type_specifier] = STATE(3903), - [sym_sized_type_specifier] = STATE(3003), - [sym_enum_specifier] = STATE(3003), - [sym_struct_specifier] = STATE(3003), - [sym_union_specifier] = STATE(3003), - [sym__expression] = STATE(3453), - [sym_conditional_expression] = STATE(3855), - [sym_assignment_expression] = STATE(3855), - [sym_pointer_expression] = STATE(2954), - [sym_unary_expression] = STATE(3855), - [sym_binary_expression] = STATE(3855), - [sym_update_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_type_descriptor] = STATE(5331), - [sym_sizeof_expression] = STATE(3855), - [sym_subscript_expression] = STATE(2954), - [sym_call_expression] = STATE(2954), - [sym_field_expression] = STATE(2954), - [sym_compound_literal_expression] = STATE(3855), - [sym_parenthesized_expression] = STATE(2954), - [sym_char_literal] = STATE(3557), - [sym_concatenated_string] = STATE(3557), - [sym_string_literal] = STATE(2955), - [sym_placeholder_type_specifier] = STATE(3003), - [sym_decltype_auto] = STATE(3008), - [sym_decltype] = STATE(2851), - [sym_class_specifier] = STATE(3003), - [sym__class_name] = STATE(5844), - [sym_dependent_type] = STATE(3003), - [sym_template_type] = STATE(4288), - [sym_template_function] = STATE(3855), - [sym_raw_string_literal] = STATE(2955), - [sym_co_await_expression] = STATE(3855), - [sym_new_expression] = STATE(3855), - [sym_delete_expression] = STATE(3855), - [sym_requires_clause] = STATE(3855), - [sym_requires_expression] = STATE(3855), - [sym_lambda_expression] = STATE(3855), - [sym_lambda_capture_specifier] = STATE(4501), - [sym_fold_expression] = STATE(3855), - [sym_parameter_pack_expansion] = STATE(3855), - [sym_type_parameter_pack_expansion] = STATE(5422), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4544), - [sym_qualified_identifier] = STATE(2954), - [sym_qualified_type_identifier] = STATE(4356), - [sym_user_defined_literal] = STATE(3855), - [aux_sym_type_definition_repeat1] = STATE(3306), - [aux_sym_sized_type_specifier_repeat1] = STATE(2022), - [sym_identifier] = ACTIONS(2408), - [anon_sym_LPAREN2] = ACTIONS(2410), - [anon_sym_BANG] = ACTIONS(2412), - [anon_sym_TILDE] = ACTIONS(2412), - [anon_sym_DASH] = ACTIONS(2414), - [anon_sym_PLUS] = ACTIONS(2414), - [anon_sym_STAR] = ACTIONS(2416), - [anon_sym_AMP] = ACTIONS(2416), - [anon_sym_COLON_COLON] = ACTIONS(2418), - [anon_sym_LBRACK] = ACTIONS(1539), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(2420), - [anon_sym_unsigned] = ACTIONS(2420), - [anon_sym_long] = ACTIONS(2420), - [anon_sym_short] = ACTIONS(2420), - [sym_primitive_type] = ACTIONS(2422), - [anon_sym_enum] = ACTIONS(2424), - [anon_sym_class] = ACTIONS(2426), - [anon_sym_struct] = ACTIONS(2428), - [anon_sym_union] = ACTIONS(2430), - [anon_sym_not] = ACTIONS(2414), - [anon_sym_compl] = ACTIONS(2414), - [anon_sym_DASH_DASH] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(2432), - [anon_sym_sizeof] = ACTIONS(2434), - [sym_number_literal] = ACTIONS(2436), - [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_L_DQUOTE] = ACTIONS(2440), - [anon_sym_u_DQUOTE] = ACTIONS(2440), - [anon_sym_U_DQUOTE] = ACTIONS(2440), - [anon_sym_u8_DQUOTE] = ACTIONS(2440), - [anon_sym_DQUOTE] = ACTIONS(2440), - [sym_true] = ACTIONS(2442), - [sym_false] = ACTIONS(2442), - [sym_null] = ACTIONS(2442), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2444), - [anon_sym_decltype] = ACTIONS(2446), - [anon_sym_typename] = ACTIONS(2448), - [anon_sym_template] = ACTIONS(996), - [anon_sym_GT2] = ACTIONS(2600), - [anon_sym_delete] = ACTIONS(2452), - [anon_sym_R_DQUOTE] = ACTIONS(2454), - [anon_sym_LR_DQUOTE] = ACTIONS(2454), - [anon_sym_uR_DQUOTE] = ACTIONS(2454), - [anon_sym_UR_DQUOTE] = ACTIONS(2454), - [anon_sym_u8R_DQUOTE] = ACTIONS(2454), - [anon_sym_co_await] = ACTIONS(2456), - [anon_sym_new] = ACTIONS(2458), - [anon_sym_requires] = ACTIONS(2460), - [sym_this] = ACTIONS(2442), - [sym_nullptr] = ACTIONS(2442), + [sym_identifier] = ACTIONS(3032), + [aux_sym_preproc_include_token1] = ACTIONS(3032), + [aux_sym_preproc_def_token1] = ACTIONS(3032), + [aux_sym_preproc_if_token1] = ACTIONS(3032), + [aux_sym_preproc_if_token2] = ACTIONS(3032), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3032), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3032), + [aux_sym_preproc_else_token1] = ACTIONS(3032), + [aux_sym_preproc_elif_token1] = ACTIONS(3032), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3032), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3032), + [sym_preproc_directive] = ACTIONS(3032), + [anon_sym_LPAREN2] = ACTIONS(3034), + [anon_sym_BANG] = ACTIONS(3034), + [anon_sym_TILDE] = ACTIONS(3034), + [anon_sym_DASH] = ACTIONS(3032), + [anon_sym_PLUS] = ACTIONS(3032), + [anon_sym_STAR] = ACTIONS(3034), + [anon_sym_AMP_AMP] = ACTIONS(3034), + [anon_sym_AMP] = ACTIONS(3032), + [anon_sym_SEMI] = ACTIONS(3034), + [anon_sym_typedef] = ACTIONS(3032), + [anon_sym_extern] = ACTIONS(3032), + [anon_sym___attribute__] = ACTIONS(3032), + [anon_sym_COLON_COLON] = ACTIONS(3034), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3034), + [anon_sym___declspec] = ACTIONS(3032), + [anon_sym___based] = ACTIONS(3032), + [anon_sym___cdecl] = ACTIONS(3032), + [anon_sym___clrcall] = ACTIONS(3032), + [anon_sym___stdcall] = ACTIONS(3032), + [anon_sym___fastcall] = ACTIONS(3032), + [anon_sym___thiscall] = ACTIONS(3032), + [anon_sym___vectorcall] = ACTIONS(3032), + [anon_sym_LBRACE] = ACTIONS(3034), + [anon_sym_LBRACK] = ACTIONS(3032), + [anon_sym_static] = ACTIONS(3032), + [anon_sym_register] = ACTIONS(3032), + [anon_sym_inline] = ACTIONS(3032), + [anon_sym_thread_local] = ACTIONS(3032), + [anon_sym_const] = ACTIONS(3032), + [anon_sym_constexpr] = ACTIONS(3032), + [anon_sym_volatile] = ACTIONS(3032), + [anon_sym_restrict] = ACTIONS(3032), + [anon_sym___restrict__] = ACTIONS(3032), + [anon_sym__Atomic] = ACTIONS(3032), + [anon_sym__Noreturn] = ACTIONS(3032), + [anon_sym_noreturn] = ACTIONS(3032), + [anon_sym_mutable] = ACTIONS(3032), + [anon_sym_constinit] = ACTIONS(3032), + [anon_sym_consteval] = ACTIONS(3032), + [anon_sym_signed] = ACTIONS(3032), + [anon_sym_unsigned] = ACTIONS(3032), + [anon_sym_long] = ACTIONS(3032), + [anon_sym_short] = ACTIONS(3032), + [sym_primitive_type] = ACTIONS(3032), + [anon_sym_enum] = ACTIONS(3032), + [anon_sym_class] = ACTIONS(3032), + [anon_sym_struct] = ACTIONS(3032), + [anon_sym_union] = ACTIONS(3032), + [anon_sym_if] = ACTIONS(3032), + [anon_sym_else] = ACTIONS(3032), + [anon_sym_switch] = ACTIONS(3032), + [anon_sym_case] = ACTIONS(3032), + [anon_sym_default] = ACTIONS(3032), + [anon_sym_while] = ACTIONS(3032), + [anon_sym_do] = ACTIONS(3032), + [anon_sym_for] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3032), + [anon_sym_break] = ACTIONS(3032), + [anon_sym_continue] = ACTIONS(3032), + [anon_sym_goto] = ACTIONS(3032), + [anon_sym_not] = ACTIONS(3032), + [anon_sym_compl] = ACTIONS(3032), + [anon_sym_DASH_DASH] = ACTIONS(3034), + [anon_sym_PLUS_PLUS] = ACTIONS(3034), + [anon_sym_sizeof] = ACTIONS(3032), + [anon_sym_offsetof] = ACTIONS(3032), + [anon_sym__Generic] = ACTIONS(3032), + [anon_sym_asm] = ACTIONS(3032), + [anon_sym___asm__] = ACTIONS(3032), + [sym_number_literal] = ACTIONS(3034), + [anon_sym_L_SQUOTE] = ACTIONS(3034), + [anon_sym_u_SQUOTE] = ACTIONS(3034), + [anon_sym_U_SQUOTE] = ACTIONS(3034), + [anon_sym_u8_SQUOTE] = ACTIONS(3034), + [anon_sym_SQUOTE] = ACTIONS(3034), + [anon_sym_L_DQUOTE] = ACTIONS(3034), + [anon_sym_u_DQUOTE] = ACTIONS(3034), + [anon_sym_U_DQUOTE] = ACTIONS(3034), + [anon_sym_u8_DQUOTE] = ACTIONS(3034), + [anon_sym_DQUOTE] = ACTIONS(3034), + [sym_true] = ACTIONS(3032), + [sym_false] = ACTIONS(3032), + [anon_sym_NULL] = ACTIONS(3032), + [anon_sym_nullptr] = ACTIONS(3032), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3032), + [anon_sym_decltype] = ACTIONS(3032), + [anon_sym_virtual] = ACTIONS(3032), + [anon_sym_explicit] = ACTIONS(3032), + [anon_sym_typename] = ACTIONS(3032), + [anon_sym_template] = ACTIONS(3032), + [anon_sym_operator] = ACTIONS(3032), + [anon_sym_try] = ACTIONS(3032), + [anon_sym_delete] = ACTIONS(3032), + [anon_sym_throw] = ACTIONS(3032), + [anon_sym_namespace] = ACTIONS(3032), + [anon_sym_using] = ACTIONS(3032), + [anon_sym_static_assert] = ACTIONS(3032), + [anon_sym_concept] = ACTIONS(3032), + [anon_sym_co_return] = ACTIONS(3032), + [anon_sym_co_yield] = ACTIONS(3032), + [anon_sym_R_DQUOTE] = ACTIONS(3034), + [anon_sym_LR_DQUOTE] = ACTIONS(3034), + [anon_sym_uR_DQUOTE] = ACTIONS(3034), + [anon_sym_UR_DQUOTE] = ACTIONS(3034), + [anon_sym_u8R_DQUOTE] = ACTIONS(3034), + [anon_sym_co_await] = ACTIONS(3032), + [anon_sym_new] = ACTIONS(3032), + [anon_sym_requires] = ACTIONS(3032), + [sym_this] = ACTIONS(3032), }, [424] = { - [sym_identifier] = ACTIONS(2602), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2604), - [anon_sym_AMP] = ACTIONS(2602), - [anon_sym_SEMI] = ACTIONS(2604), - [anon_sym_typedef] = ACTIONS(2602), - [anon_sym_extern] = ACTIONS(2602), - [anon_sym___attribute__] = ACTIONS(2602), - [anon_sym_COLON_COLON] = ACTIONS(2604), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2604), - [anon_sym___declspec] = ACTIONS(2602), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2602), - [anon_sym_static] = ACTIONS(2602), - [anon_sym_register] = ACTIONS(2602), - [anon_sym_inline] = ACTIONS(2602), - [anon_sym_thread_local] = ACTIONS(2602), - [anon_sym_const] = ACTIONS(2602), - [anon_sym_volatile] = ACTIONS(2602), - [anon_sym_restrict] = ACTIONS(2602), - [anon_sym__Atomic] = ACTIONS(2602), - [anon_sym_mutable] = ACTIONS(2602), - [anon_sym_constexpr] = ACTIONS(2602), - [anon_sym_constinit] = ACTIONS(2602), - [anon_sym_consteval] = ACTIONS(2602), - [anon_sym_signed] = ACTIONS(2602), - [anon_sym_unsigned] = ACTIONS(2602), - [anon_sym_long] = ACTIONS(2602), - [anon_sym_short] = ACTIONS(2602), - [sym_primitive_type] = ACTIONS(2602), - [anon_sym_enum] = ACTIONS(2602), - [anon_sym_class] = ACTIONS(2602), - [anon_sym_struct] = ACTIONS(2602), - [anon_sym_union] = ACTIONS(2602), - [anon_sym_if] = ACTIONS(2602), - [anon_sym_else] = 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_return] = ACTIONS(2602), - [anon_sym_break] = ACTIONS(2602), - [anon_sym_continue] = ACTIONS(2602), - [anon_sym_goto] = ACTIONS(2602), - [anon_sym_not] = ACTIONS(2602), - [anon_sym_compl] = ACTIONS(2602), - [anon_sym_DASH_DASH] = ACTIONS(2604), - [anon_sym_PLUS_PLUS] = ACTIONS(2604), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2604), - [anon_sym_u_DQUOTE] = ACTIONS(2604), - [anon_sym_U_DQUOTE] = ACTIONS(2604), - [anon_sym_u8_DQUOTE] = ACTIONS(2604), - [anon_sym_DQUOTE] = ACTIONS(2604), - [sym_true] = ACTIONS(2602), - [sym_false] = ACTIONS(2602), - [sym_null] = ACTIONS(2602), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2602), - [anon_sym_decltype] = ACTIONS(2602), - [anon_sym_virtual] = ACTIONS(2602), - [anon_sym_explicit] = ACTIONS(2602), - [anon_sym_typename] = ACTIONS(2602), - [anon_sym_template] = ACTIONS(2602), - [anon_sym_operator] = ACTIONS(2602), - [anon_sym_try] = ACTIONS(2602), - [anon_sym_delete] = ACTIONS(2602), - [anon_sym_throw] = ACTIONS(2602), - [anon_sym_namespace] = ACTIONS(2602), - [anon_sym_using] = ACTIONS(2602), - [anon_sym_static_assert] = ACTIONS(2602), - [anon_sym_concept] = ACTIONS(2602), - [anon_sym_co_return] = ACTIONS(2602), - [anon_sym_co_yield] = ACTIONS(2602), - [anon_sym_R_DQUOTE] = ACTIONS(2604), - [anon_sym_LR_DQUOTE] = ACTIONS(2604), - [anon_sym_uR_DQUOTE] = ACTIONS(2604), - [anon_sym_UR_DQUOTE] = ACTIONS(2604), - [anon_sym_u8R_DQUOTE] = ACTIONS(2604), - [anon_sym_co_await] = ACTIONS(2602), - [anon_sym_new] = ACTIONS(2602), - [anon_sym_requires] = ACTIONS(2602), - [sym_this] = ACTIONS(2602), - [sym_nullptr] = ACTIONS(2602), + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token2] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [aux_sym_preproc_else_token1] = ACTIONS(3028), + [aux_sym_preproc_elif_token1] = ACTIONS(3028), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, [425] = { - [sym_identifier] = ACTIONS(2606), - [aux_sym_preproc_include_token1] = 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(2608), - [anon_sym_BANG] = ACTIONS(2608), - [anon_sym_TILDE] = ACTIONS(2608), - [anon_sym_DASH] = ACTIONS(2606), - [anon_sym_PLUS] = ACTIONS(2606), - [anon_sym_STAR] = ACTIONS(2608), - [anon_sym_AMP_AMP] = ACTIONS(2608), - [anon_sym_AMP] = ACTIONS(2606), - [anon_sym_SEMI] = ACTIONS(2608), - [anon_sym_typedef] = ACTIONS(2606), - [anon_sym_extern] = ACTIONS(2606), - [anon_sym___attribute__] = ACTIONS(2606), - [anon_sym_COLON_COLON] = ACTIONS(2608), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2608), - [anon_sym___declspec] = ACTIONS(2606), - [anon_sym___based] = 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(2608), - [anon_sym_LBRACK] = ACTIONS(2606), - [anon_sym_static] = ACTIONS(2606), - [anon_sym_register] = ACTIONS(2606), - [anon_sym_inline] = ACTIONS(2606), - [anon_sym_thread_local] = ACTIONS(2606), - [anon_sym_const] = ACTIONS(2606), - [anon_sym_volatile] = ACTIONS(2606), - [anon_sym_restrict] = ACTIONS(2606), - [anon_sym__Atomic] = ACTIONS(2606), - [anon_sym_mutable] = ACTIONS(2606), - [anon_sym_constexpr] = ACTIONS(2606), - [anon_sym_constinit] = ACTIONS(2606), - [anon_sym_consteval] = ACTIONS(2606), - [anon_sym_signed] = ACTIONS(2606), - [anon_sym_unsigned] = ACTIONS(2606), - [anon_sym_long] = ACTIONS(2606), - [anon_sym_short] = ACTIONS(2606), - [sym_primitive_type] = ACTIONS(2606), - [anon_sym_enum] = ACTIONS(2606), - [anon_sym_class] = ACTIONS(2606), - [anon_sym_struct] = ACTIONS(2606), - [anon_sym_union] = ACTIONS(2606), - [anon_sym_if] = ACTIONS(2606), - [anon_sym_else] = 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_return] = ACTIONS(2606), - [anon_sym_break] = ACTIONS(2606), - [anon_sym_continue] = ACTIONS(2606), - [anon_sym_goto] = ACTIONS(2606), - [anon_sym_not] = ACTIONS(2606), - [anon_sym_compl] = ACTIONS(2606), - [anon_sym_DASH_DASH] = ACTIONS(2608), - [anon_sym_PLUS_PLUS] = ACTIONS(2608), - [anon_sym_sizeof] = ACTIONS(2606), - [sym_number_literal] = ACTIONS(2608), - [anon_sym_L_SQUOTE] = ACTIONS(2608), - [anon_sym_u_SQUOTE] = ACTIONS(2608), - [anon_sym_U_SQUOTE] = ACTIONS(2608), - [anon_sym_u8_SQUOTE] = ACTIONS(2608), - [anon_sym_SQUOTE] = ACTIONS(2608), - [anon_sym_L_DQUOTE] = ACTIONS(2608), - [anon_sym_u_DQUOTE] = ACTIONS(2608), - [anon_sym_U_DQUOTE] = ACTIONS(2608), - [anon_sym_u8_DQUOTE] = ACTIONS(2608), - [anon_sym_DQUOTE] = ACTIONS(2608), - [sym_true] = ACTIONS(2606), - [sym_false] = ACTIONS(2606), - [sym_null] = ACTIONS(2606), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2606), - [anon_sym_decltype] = ACTIONS(2606), - [anon_sym_virtual] = ACTIONS(2606), - [anon_sym_explicit] = ACTIONS(2606), - [anon_sym_typename] = ACTIONS(2606), - [anon_sym_template] = ACTIONS(2606), - [anon_sym_operator] = ACTIONS(2606), - [anon_sym_try] = ACTIONS(2606), - [anon_sym_delete] = ACTIONS(2606), - [anon_sym_throw] = ACTIONS(2606), - [anon_sym_namespace] = ACTIONS(2606), - [anon_sym_using] = ACTIONS(2606), - [anon_sym_static_assert] = ACTIONS(2606), - [anon_sym_concept] = ACTIONS(2606), - [anon_sym_co_return] = ACTIONS(2606), - [anon_sym_co_yield] = ACTIONS(2606), - [anon_sym_R_DQUOTE] = ACTIONS(2608), - [anon_sym_LR_DQUOTE] = ACTIONS(2608), - [anon_sym_uR_DQUOTE] = ACTIONS(2608), - [anon_sym_UR_DQUOTE] = ACTIONS(2608), - [anon_sym_u8R_DQUOTE] = ACTIONS(2608), - [anon_sym_co_await] = ACTIONS(2606), - [anon_sym_new] = ACTIONS(2606), - [anon_sym_requires] = ACTIONS(2606), - [sym_this] = ACTIONS(2606), - [sym_nullptr] = ACTIONS(2606), + [sym_identifier] = ACTIONS(3036), + [aux_sym_preproc_include_token1] = ACTIONS(3036), + [aux_sym_preproc_def_token1] = ACTIONS(3036), + [aux_sym_preproc_if_token1] = ACTIONS(3036), + [aux_sym_preproc_if_token2] = ACTIONS(3036), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3036), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3036), + [aux_sym_preproc_else_token1] = ACTIONS(3036), + [aux_sym_preproc_elif_token1] = ACTIONS(3036), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3036), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3036), + [sym_preproc_directive] = ACTIONS(3036), + [anon_sym_LPAREN2] = ACTIONS(3038), + [anon_sym_BANG] = ACTIONS(3038), + [anon_sym_TILDE] = ACTIONS(3038), + [anon_sym_DASH] = ACTIONS(3036), + [anon_sym_PLUS] = ACTIONS(3036), + [anon_sym_STAR] = ACTIONS(3038), + [anon_sym_AMP_AMP] = ACTIONS(3038), + [anon_sym_AMP] = ACTIONS(3036), + [anon_sym_SEMI] = ACTIONS(3038), + [anon_sym_typedef] = ACTIONS(3036), + [anon_sym_extern] = ACTIONS(3036), + [anon_sym___attribute__] = ACTIONS(3036), + [anon_sym_COLON_COLON] = ACTIONS(3038), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3038), + [anon_sym___declspec] = ACTIONS(3036), + [anon_sym___based] = ACTIONS(3036), + [anon_sym___cdecl] = ACTIONS(3036), + [anon_sym___clrcall] = ACTIONS(3036), + [anon_sym___stdcall] = ACTIONS(3036), + [anon_sym___fastcall] = ACTIONS(3036), + [anon_sym___thiscall] = ACTIONS(3036), + [anon_sym___vectorcall] = ACTIONS(3036), + [anon_sym_LBRACE] = ACTIONS(3038), + [anon_sym_LBRACK] = ACTIONS(3036), + [anon_sym_static] = ACTIONS(3036), + [anon_sym_register] = ACTIONS(3036), + [anon_sym_inline] = ACTIONS(3036), + [anon_sym_thread_local] = ACTIONS(3036), + [anon_sym_const] = ACTIONS(3036), + [anon_sym_constexpr] = ACTIONS(3036), + [anon_sym_volatile] = ACTIONS(3036), + [anon_sym_restrict] = ACTIONS(3036), + [anon_sym___restrict__] = ACTIONS(3036), + [anon_sym__Atomic] = ACTIONS(3036), + [anon_sym__Noreturn] = ACTIONS(3036), + [anon_sym_noreturn] = ACTIONS(3036), + [anon_sym_mutable] = ACTIONS(3036), + [anon_sym_constinit] = ACTIONS(3036), + [anon_sym_consteval] = ACTIONS(3036), + [anon_sym_signed] = ACTIONS(3036), + [anon_sym_unsigned] = ACTIONS(3036), + [anon_sym_long] = ACTIONS(3036), + [anon_sym_short] = ACTIONS(3036), + [sym_primitive_type] = ACTIONS(3036), + [anon_sym_enum] = ACTIONS(3036), + [anon_sym_class] = ACTIONS(3036), + [anon_sym_struct] = ACTIONS(3036), + [anon_sym_union] = ACTIONS(3036), + [anon_sym_if] = ACTIONS(3036), + [anon_sym_else] = ACTIONS(3036), + [anon_sym_switch] = ACTIONS(3036), + [anon_sym_case] = ACTIONS(3036), + [anon_sym_default] = ACTIONS(3036), + [anon_sym_while] = ACTIONS(3036), + [anon_sym_do] = ACTIONS(3036), + [anon_sym_for] = ACTIONS(3036), + [anon_sym_return] = ACTIONS(3036), + [anon_sym_break] = ACTIONS(3036), + [anon_sym_continue] = ACTIONS(3036), + [anon_sym_goto] = ACTIONS(3036), + [anon_sym_not] = ACTIONS(3036), + [anon_sym_compl] = ACTIONS(3036), + [anon_sym_DASH_DASH] = ACTIONS(3038), + [anon_sym_PLUS_PLUS] = ACTIONS(3038), + [anon_sym_sizeof] = ACTIONS(3036), + [anon_sym_offsetof] = ACTIONS(3036), + [anon_sym__Generic] = ACTIONS(3036), + [anon_sym_asm] = ACTIONS(3036), + [anon_sym___asm__] = ACTIONS(3036), + [sym_number_literal] = ACTIONS(3038), + [anon_sym_L_SQUOTE] = ACTIONS(3038), + [anon_sym_u_SQUOTE] = ACTIONS(3038), + [anon_sym_U_SQUOTE] = ACTIONS(3038), + [anon_sym_u8_SQUOTE] = ACTIONS(3038), + [anon_sym_SQUOTE] = ACTIONS(3038), + [anon_sym_L_DQUOTE] = ACTIONS(3038), + [anon_sym_u_DQUOTE] = ACTIONS(3038), + [anon_sym_U_DQUOTE] = ACTIONS(3038), + [anon_sym_u8_DQUOTE] = ACTIONS(3038), + [anon_sym_DQUOTE] = ACTIONS(3038), + [sym_true] = ACTIONS(3036), + [sym_false] = ACTIONS(3036), + [anon_sym_NULL] = ACTIONS(3036), + [anon_sym_nullptr] = ACTIONS(3036), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3036), + [anon_sym_decltype] = ACTIONS(3036), + [anon_sym_virtual] = ACTIONS(3036), + [anon_sym_explicit] = ACTIONS(3036), + [anon_sym_typename] = ACTIONS(3036), + [anon_sym_template] = ACTIONS(3036), + [anon_sym_operator] = ACTIONS(3036), + [anon_sym_try] = ACTIONS(3036), + [anon_sym_delete] = ACTIONS(3036), + [anon_sym_throw] = ACTIONS(3036), + [anon_sym_namespace] = ACTIONS(3036), + [anon_sym_using] = ACTIONS(3036), + [anon_sym_static_assert] = ACTIONS(3036), + [anon_sym_concept] = ACTIONS(3036), + [anon_sym_co_return] = ACTIONS(3036), + [anon_sym_co_yield] = ACTIONS(3036), + [anon_sym_R_DQUOTE] = ACTIONS(3038), + [anon_sym_LR_DQUOTE] = ACTIONS(3038), + [anon_sym_uR_DQUOTE] = ACTIONS(3038), + [anon_sym_UR_DQUOTE] = ACTIONS(3038), + [anon_sym_u8R_DQUOTE] = ACTIONS(3038), + [anon_sym_co_await] = ACTIONS(3036), + [anon_sym_new] = ACTIONS(3036), + [anon_sym_requires] = ACTIONS(3036), + [sym_this] = ACTIONS(3036), }, [426] = { - [sym_identifier] = ACTIONS(2610), - [aux_sym_preproc_include_token1] = ACTIONS(2610), - [aux_sym_preproc_def_token1] = ACTIONS(2610), - [aux_sym_preproc_if_token1] = ACTIONS(2610), - [aux_sym_preproc_if_token2] = ACTIONS(2610), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2610), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2610), - [aux_sym_preproc_else_token1] = ACTIONS(2610), - [aux_sym_preproc_elif_token1] = ACTIONS(2610), - [sym_preproc_directive] = ACTIONS(2610), - [anon_sym_LPAREN2] = ACTIONS(2612), - [anon_sym_BANG] = ACTIONS(2612), - [anon_sym_TILDE] = ACTIONS(2612), - [anon_sym_DASH] = ACTIONS(2610), - [anon_sym_PLUS] = ACTIONS(2610), - [anon_sym_STAR] = ACTIONS(2612), - [anon_sym_AMP_AMP] = ACTIONS(2612), - [anon_sym_AMP] = ACTIONS(2610), - [anon_sym_SEMI] = ACTIONS(2612), - [anon_sym_typedef] = ACTIONS(2610), - [anon_sym_extern] = ACTIONS(2610), - [anon_sym___attribute__] = ACTIONS(2610), - [anon_sym_COLON_COLON] = ACTIONS(2612), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2612), - [anon_sym___declspec] = ACTIONS(2610), - [anon_sym___based] = ACTIONS(2610), - [anon_sym___cdecl] = ACTIONS(2610), - [anon_sym___clrcall] = ACTIONS(2610), - [anon_sym___stdcall] = ACTIONS(2610), - [anon_sym___fastcall] = ACTIONS(2610), - [anon_sym___thiscall] = ACTIONS(2610), - [anon_sym___vectorcall] = ACTIONS(2610), - [anon_sym_LBRACE] = ACTIONS(2612), - [anon_sym_LBRACK] = ACTIONS(2610), - [anon_sym_static] = ACTIONS(2610), - [anon_sym_register] = ACTIONS(2610), - [anon_sym_inline] = ACTIONS(2610), - [anon_sym_thread_local] = ACTIONS(2610), - [anon_sym_const] = ACTIONS(2610), - [anon_sym_volatile] = ACTIONS(2610), - [anon_sym_restrict] = ACTIONS(2610), - [anon_sym__Atomic] = ACTIONS(2610), - [anon_sym_mutable] = ACTIONS(2610), - [anon_sym_constexpr] = ACTIONS(2610), - [anon_sym_constinit] = ACTIONS(2610), - [anon_sym_consteval] = ACTIONS(2610), - [anon_sym_signed] = ACTIONS(2610), - [anon_sym_unsigned] = ACTIONS(2610), - [anon_sym_long] = ACTIONS(2610), - [anon_sym_short] = ACTIONS(2610), - [sym_primitive_type] = ACTIONS(2610), - [anon_sym_enum] = ACTIONS(2610), - [anon_sym_class] = ACTIONS(2610), - [anon_sym_struct] = ACTIONS(2610), - [anon_sym_union] = ACTIONS(2610), - [anon_sym_if] = ACTIONS(2610), - [anon_sym_else] = ACTIONS(2610), - [anon_sym_switch] = ACTIONS(2610), - [anon_sym_case] = ACTIONS(2610), - [anon_sym_default] = ACTIONS(2610), - [anon_sym_while] = ACTIONS(2610), - [anon_sym_do] = ACTIONS(2610), - [anon_sym_for] = ACTIONS(2610), - [anon_sym_return] = ACTIONS(2610), - [anon_sym_break] = ACTIONS(2610), - [anon_sym_continue] = ACTIONS(2610), - [anon_sym_goto] = ACTIONS(2610), - [anon_sym_not] = ACTIONS(2610), - [anon_sym_compl] = ACTIONS(2610), - [anon_sym_DASH_DASH] = ACTIONS(2612), - [anon_sym_PLUS_PLUS] = ACTIONS(2612), - [anon_sym_sizeof] = ACTIONS(2610), - [sym_number_literal] = ACTIONS(2612), - [anon_sym_L_SQUOTE] = ACTIONS(2612), - [anon_sym_u_SQUOTE] = ACTIONS(2612), - [anon_sym_U_SQUOTE] = ACTIONS(2612), - [anon_sym_u8_SQUOTE] = ACTIONS(2612), - [anon_sym_SQUOTE] = ACTIONS(2612), - [anon_sym_L_DQUOTE] = ACTIONS(2612), - [anon_sym_u_DQUOTE] = ACTIONS(2612), - [anon_sym_U_DQUOTE] = ACTIONS(2612), - [anon_sym_u8_DQUOTE] = ACTIONS(2612), - [anon_sym_DQUOTE] = ACTIONS(2612), - [sym_true] = ACTIONS(2610), - [sym_false] = ACTIONS(2610), - [sym_null] = ACTIONS(2610), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2610), - [anon_sym_decltype] = ACTIONS(2610), - [anon_sym_virtual] = ACTIONS(2610), - [anon_sym_explicit] = ACTIONS(2610), - [anon_sym_typename] = ACTIONS(2610), - [anon_sym_template] = ACTIONS(2610), - [anon_sym_operator] = ACTIONS(2610), - [anon_sym_try] = ACTIONS(2610), - [anon_sym_delete] = ACTIONS(2610), - [anon_sym_throw] = ACTIONS(2610), - [anon_sym_namespace] = ACTIONS(2610), - [anon_sym_using] = ACTIONS(2610), - [anon_sym_static_assert] = ACTIONS(2610), - [anon_sym_concept] = ACTIONS(2610), - [anon_sym_co_return] = ACTIONS(2610), - [anon_sym_co_yield] = ACTIONS(2610), - [anon_sym_R_DQUOTE] = ACTIONS(2612), - [anon_sym_LR_DQUOTE] = ACTIONS(2612), - [anon_sym_uR_DQUOTE] = ACTIONS(2612), - [anon_sym_UR_DQUOTE] = ACTIONS(2612), - [anon_sym_u8R_DQUOTE] = ACTIONS(2612), - [anon_sym_co_await] = ACTIONS(2610), - [anon_sym_new] = ACTIONS(2610), - [anon_sym_requires] = ACTIONS(2610), - [sym_this] = ACTIONS(2610), - [sym_nullptr] = ACTIONS(2610), + [sym_identifier] = ACTIONS(3040), + [aux_sym_preproc_include_token1] = ACTIONS(3040), + [aux_sym_preproc_def_token1] = ACTIONS(3040), + [aux_sym_preproc_if_token1] = ACTIONS(3040), + [aux_sym_preproc_if_token2] = ACTIONS(3040), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3040), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3040), + [aux_sym_preproc_else_token1] = ACTIONS(3040), + [aux_sym_preproc_elif_token1] = ACTIONS(3040), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3040), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3040), + [sym_preproc_directive] = ACTIONS(3040), + [anon_sym_LPAREN2] = ACTIONS(3042), + [anon_sym_BANG] = ACTIONS(3042), + [anon_sym_TILDE] = ACTIONS(3042), + [anon_sym_DASH] = ACTIONS(3040), + [anon_sym_PLUS] = ACTIONS(3040), + [anon_sym_STAR] = ACTIONS(3042), + [anon_sym_AMP_AMP] = ACTIONS(3042), + [anon_sym_AMP] = ACTIONS(3040), + [anon_sym_SEMI] = ACTIONS(3042), + [anon_sym_typedef] = ACTIONS(3040), + [anon_sym_extern] = ACTIONS(3040), + [anon_sym___attribute__] = ACTIONS(3040), + [anon_sym_COLON_COLON] = ACTIONS(3042), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3042), + [anon_sym___declspec] = ACTIONS(3040), + [anon_sym___based] = ACTIONS(3040), + [anon_sym___cdecl] = ACTIONS(3040), + [anon_sym___clrcall] = ACTIONS(3040), + [anon_sym___stdcall] = ACTIONS(3040), + [anon_sym___fastcall] = ACTIONS(3040), + [anon_sym___thiscall] = ACTIONS(3040), + [anon_sym___vectorcall] = ACTIONS(3040), + [anon_sym_LBRACE] = ACTIONS(3042), + [anon_sym_LBRACK] = ACTIONS(3040), + [anon_sym_static] = ACTIONS(3040), + [anon_sym_register] = ACTIONS(3040), + [anon_sym_inline] = ACTIONS(3040), + [anon_sym_thread_local] = ACTIONS(3040), + [anon_sym_const] = ACTIONS(3040), + [anon_sym_constexpr] = ACTIONS(3040), + [anon_sym_volatile] = ACTIONS(3040), + [anon_sym_restrict] = ACTIONS(3040), + [anon_sym___restrict__] = ACTIONS(3040), + [anon_sym__Atomic] = ACTIONS(3040), + [anon_sym__Noreturn] = ACTIONS(3040), + [anon_sym_noreturn] = ACTIONS(3040), + [anon_sym_mutable] = ACTIONS(3040), + [anon_sym_constinit] = ACTIONS(3040), + [anon_sym_consteval] = ACTIONS(3040), + [anon_sym_signed] = ACTIONS(3040), + [anon_sym_unsigned] = ACTIONS(3040), + [anon_sym_long] = ACTIONS(3040), + [anon_sym_short] = ACTIONS(3040), + [sym_primitive_type] = ACTIONS(3040), + [anon_sym_enum] = ACTIONS(3040), + [anon_sym_class] = ACTIONS(3040), + [anon_sym_struct] = ACTIONS(3040), + [anon_sym_union] = ACTIONS(3040), + [anon_sym_if] = ACTIONS(3040), + [anon_sym_else] = ACTIONS(3040), + [anon_sym_switch] = ACTIONS(3040), + [anon_sym_case] = ACTIONS(3040), + [anon_sym_default] = ACTIONS(3040), + [anon_sym_while] = ACTIONS(3040), + [anon_sym_do] = ACTIONS(3040), + [anon_sym_for] = ACTIONS(3040), + [anon_sym_return] = ACTIONS(3040), + [anon_sym_break] = ACTIONS(3040), + [anon_sym_continue] = ACTIONS(3040), + [anon_sym_goto] = ACTIONS(3040), + [anon_sym_not] = ACTIONS(3040), + [anon_sym_compl] = ACTIONS(3040), + [anon_sym_DASH_DASH] = ACTIONS(3042), + [anon_sym_PLUS_PLUS] = ACTIONS(3042), + [anon_sym_sizeof] = ACTIONS(3040), + [anon_sym_offsetof] = ACTIONS(3040), + [anon_sym__Generic] = ACTIONS(3040), + [anon_sym_asm] = ACTIONS(3040), + [anon_sym___asm__] = ACTIONS(3040), + [sym_number_literal] = ACTIONS(3042), + [anon_sym_L_SQUOTE] = ACTIONS(3042), + [anon_sym_u_SQUOTE] = ACTIONS(3042), + [anon_sym_U_SQUOTE] = ACTIONS(3042), + [anon_sym_u8_SQUOTE] = ACTIONS(3042), + [anon_sym_SQUOTE] = ACTIONS(3042), + [anon_sym_L_DQUOTE] = ACTIONS(3042), + [anon_sym_u_DQUOTE] = ACTIONS(3042), + [anon_sym_U_DQUOTE] = ACTIONS(3042), + [anon_sym_u8_DQUOTE] = ACTIONS(3042), + [anon_sym_DQUOTE] = ACTIONS(3042), + [sym_true] = ACTIONS(3040), + [sym_false] = ACTIONS(3040), + [anon_sym_NULL] = ACTIONS(3040), + [anon_sym_nullptr] = ACTIONS(3040), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3040), + [anon_sym_decltype] = ACTIONS(3040), + [anon_sym_virtual] = ACTIONS(3040), + [anon_sym_explicit] = ACTIONS(3040), + [anon_sym_typename] = ACTIONS(3040), + [anon_sym_template] = ACTIONS(3040), + [anon_sym_operator] = ACTIONS(3040), + [anon_sym_try] = ACTIONS(3040), + [anon_sym_delete] = ACTIONS(3040), + [anon_sym_throw] = ACTIONS(3040), + [anon_sym_namespace] = ACTIONS(3040), + [anon_sym_using] = ACTIONS(3040), + [anon_sym_static_assert] = ACTIONS(3040), + [anon_sym_concept] = ACTIONS(3040), + [anon_sym_co_return] = ACTIONS(3040), + [anon_sym_co_yield] = ACTIONS(3040), + [anon_sym_R_DQUOTE] = ACTIONS(3042), + [anon_sym_LR_DQUOTE] = ACTIONS(3042), + [anon_sym_uR_DQUOTE] = ACTIONS(3042), + [anon_sym_UR_DQUOTE] = ACTIONS(3042), + [anon_sym_u8R_DQUOTE] = ACTIONS(3042), + [anon_sym_co_await] = ACTIONS(3040), + [anon_sym_new] = ACTIONS(3040), + [anon_sym_requires] = ACTIONS(3040), + [sym_this] = ACTIONS(3040), }, [427] = { - [sym_identifier] = ACTIONS(2614), - [aux_sym_preproc_include_token1] = ACTIONS(2614), - [aux_sym_preproc_def_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token2] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2614), - [aux_sym_preproc_else_token1] = ACTIONS(2614), - [aux_sym_preproc_elif_token1] = ACTIONS(2614), - [sym_preproc_directive] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP_AMP] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2614), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym___based] = ACTIONS(2614), - [anon_sym___cdecl] = ACTIONS(2614), - [anon_sym___clrcall] = ACTIONS(2614), - [anon_sym___stdcall] = ACTIONS(2614), - [anon_sym___fastcall] = ACTIONS(2614), - [anon_sym___thiscall] = ACTIONS(2614), - [anon_sym___vectorcall] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_case] = ACTIONS(2614), - [anon_sym_default] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_explicit] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_operator] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_namespace] = ACTIONS(2614), - [anon_sym_using] = ACTIONS(2614), - [anon_sym_static_assert] = ACTIONS(2614), - [anon_sym_concept] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), + [sym_identifier] = ACTIONS(3044), + [aux_sym_preproc_include_token1] = ACTIONS(3044), + [aux_sym_preproc_def_token1] = ACTIONS(3044), + [aux_sym_preproc_if_token1] = ACTIONS(3044), + [aux_sym_preproc_if_token2] = ACTIONS(3044), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3044), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3044), + [aux_sym_preproc_else_token1] = ACTIONS(3044), + [aux_sym_preproc_elif_token1] = ACTIONS(3044), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3044), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3044), + [sym_preproc_directive] = ACTIONS(3044), + [anon_sym_LPAREN2] = ACTIONS(3046), + [anon_sym_BANG] = ACTIONS(3046), + [anon_sym_TILDE] = ACTIONS(3046), + [anon_sym_DASH] = ACTIONS(3044), + [anon_sym_PLUS] = ACTIONS(3044), + [anon_sym_STAR] = ACTIONS(3046), + [anon_sym_AMP_AMP] = ACTIONS(3046), + [anon_sym_AMP] = ACTIONS(3044), + [anon_sym_SEMI] = ACTIONS(3046), + [anon_sym_typedef] = ACTIONS(3044), + [anon_sym_extern] = ACTIONS(3044), + [anon_sym___attribute__] = ACTIONS(3044), + [anon_sym_COLON_COLON] = ACTIONS(3046), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3046), + [anon_sym___declspec] = ACTIONS(3044), + [anon_sym___based] = ACTIONS(3044), + [anon_sym___cdecl] = ACTIONS(3044), + [anon_sym___clrcall] = ACTIONS(3044), + [anon_sym___stdcall] = ACTIONS(3044), + [anon_sym___fastcall] = ACTIONS(3044), + [anon_sym___thiscall] = ACTIONS(3044), + [anon_sym___vectorcall] = ACTIONS(3044), + [anon_sym_LBRACE] = ACTIONS(3046), + [anon_sym_LBRACK] = ACTIONS(3044), + [anon_sym_static] = ACTIONS(3044), + [anon_sym_register] = ACTIONS(3044), + [anon_sym_inline] = ACTIONS(3044), + [anon_sym_thread_local] = ACTIONS(3044), + [anon_sym_const] = ACTIONS(3044), + [anon_sym_constexpr] = ACTIONS(3044), + [anon_sym_volatile] = ACTIONS(3044), + [anon_sym_restrict] = ACTIONS(3044), + [anon_sym___restrict__] = ACTIONS(3044), + [anon_sym__Atomic] = ACTIONS(3044), + [anon_sym__Noreturn] = ACTIONS(3044), + [anon_sym_noreturn] = ACTIONS(3044), + [anon_sym_mutable] = ACTIONS(3044), + [anon_sym_constinit] = ACTIONS(3044), + [anon_sym_consteval] = ACTIONS(3044), + [anon_sym_signed] = ACTIONS(3044), + [anon_sym_unsigned] = ACTIONS(3044), + [anon_sym_long] = ACTIONS(3044), + [anon_sym_short] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(3044), + [anon_sym_enum] = ACTIONS(3044), + [anon_sym_class] = ACTIONS(3044), + [anon_sym_struct] = ACTIONS(3044), + [anon_sym_union] = ACTIONS(3044), + [anon_sym_if] = ACTIONS(3044), + [anon_sym_else] = ACTIONS(3044), + [anon_sym_switch] = ACTIONS(3044), + [anon_sym_case] = ACTIONS(3044), + [anon_sym_default] = ACTIONS(3044), + [anon_sym_while] = ACTIONS(3044), + [anon_sym_do] = ACTIONS(3044), + [anon_sym_for] = ACTIONS(3044), + [anon_sym_return] = ACTIONS(3044), + [anon_sym_break] = ACTIONS(3044), + [anon_sym_continue] = ACTIONS(3044), + [anon_sym_goto] = ACTIONS(3044), + [anon_sym_not] = ACTIONS(3044), + [anon_sym_compl] = ACTIONS(3044), + [anon_sym_DASH_DASH] = ACTIONS(3046), + [anon_sym_PLUS_PLUS] = ACTIONS(3046), + [anon_sym_sizeof] = ACTIONS(3044), + [anon_sym_offsetof] = ACTIONS(3044), + [anon_sym__Generic] = ACTIONS(3044), + [anon_sym_asm] = ACTIONS(3044), + [anon_sym___asm__] = ACTIONS(3044), + [sym_number_literal] = ACTIONS(3046), + [anon_sym_L_SQUOTE] = ACTIONS(3046), + [anon_sym_u_SQUOTE] = ACTIONS(3046), + [anon_sym_U_SQUOTE] = ACTIONS(3046), + [anon_sym_u8_SQUOTE] = ACTIONS(3046), + [anon_sym_SQUOTE] = ACTIONS(3046), + [anon_sym_L_DQUOTE] = ACTIONS(3046), + [anon_sym_u_DQUOTE] = ACTIONS(3046), + [anon_sym_U_DQUOTE] = ACTIONS(3046), + [anon_sym_u8_DQUOTE] = ACTIONS(3046), + [anon_sym_DQUOTE] = ACTIONS(3046), + [sym_true] = ACTIONS(3044), + [sym_false] = ACTIONS(3044), + [anon_sym_NULL] = ACTIONS(3044), + [anon_sym_nullptr] = ACTIONS(3044), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3044), + [anon_sym_decltype] = ACTIONS(3044), + [anon_sym_virtual] = ACTIONS(3044), + [anon_sym_explicit] = ACTIONS(3044), + [anon_sym_typename] = ACTIONS(3044), + [anon_sym_template] = ACTIONS(3044), + [anon_sym_operator] = ACTIONS(3044), + [anon_sym_try] = ACTIONS(3044), + [anon_sym_delete] = ACTIONS(3044), + [anon_sym_throw] = ACTIONS(3044), + [anon_sym_namespace] = ACTIONS(3044), + [anon_sym_using] = ACTIONS(3044), + [anon_sym_static_assert] = ACTIONS(3044), + [anon_sym_concept] = ACTIONS(3044), + [anon_sym_co_return] = ACTIONS(3044), + [anon_sym_co_yield] = ACTIONS(3044), + [anon_sym_R_DQUOTE] = ACTIONS(3046), + [anon_sym_LR_DQUOTE] = ACTIONS(3046), + [anon_sym_uR_DQUOTE] = ACTIONS(3046), + [anon_sym_UR_DQUOTE] = ACTIONS(3046), + [anon_sym_u8R_DQUOTE] = ACTIONS(3046), + [anon_sym_co_await] = ACTIONS(3044), + [anon_sym_new] = ACTIONS(3044), + [anon_sym_requires] = ACTIONS(3044), + [sym_this] = ACTIONS(3044), }, [428] = { - [sym_identifier] = ACTIONS(2614), - [aux_sym_preproc_include_token1] = ACTIONS(2614), - [aux_sym_preproc_def_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token2] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2614), - [aux_sym_preproc_else_token1] = ACTIONS(2614), - [aux_sym_preproc_elif_token1] = ACTIONS(2614), - [sym_preproc_directive] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP_AMP] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2614), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym___based] = ACTIONS(2614), - [anon_sym___cdecl] = ACTIONS(2614), - [anon_sym___clrcall] = ACTIONS(2614), - [anon_sym___stdcall] = ACTIONS(2614), - [anon_sym___fastcall] = ACTIONS(2614), - [anon_sym___thiscall] = ACTIONS(2614), - [anon_sym___vectorcall] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_case] = ACTIONS(2614), - [anon_sym_default] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_explicit] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_operator] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_namespace] = ACTIONS(2614), - [anon_sym_using] = ACTIONS(2614), - [anon_sym_static_assert] = ACTIONS(2614), - [anon_sym_concept] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token2] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [aux_sym_preproc_else_token1] = ACTIONS(3048), + [aux_sym_preproc_elif_token1] = ACTIONS(3048), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, [429] = { - [sym_identifier] = ACTIONS(2614), - [aux_sym_preproc_include_token1] = ACTIONS(2614), - [aux_sym_preproc_def_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token2] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2614), - [aux_sym_preproc_else_token1] = ACTIONS(2614), - [aux_sym_preproc_elif_token1] = ACTIONS(2614), - [sym_preproc_directive] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP_AMP] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2614), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym___based] = ACTIONS(2614), - [anon_sym___cdecl] = ACTIONS(2614), - [anon_sym___clrcall] = ACTIONS(2614), - [anon_sym___stdcall] = ACTIONS(2614), - [anon_sym___fastcall] = ACTIONS(2614), - [anon_sym___thiscall] = ACTIONS(2614), - [anon_sym___vectorcall] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_case] = ACTIONS(2614), - [anon_sym_default] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_explicit] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_operator] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_namespace] = ACTIONS(2614), - [anon_sym_using] = ACTIONS(2614), - [anon_sym_static_assert] = ACTIONS(2614), - [anon_sym_concept] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token2] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [aux_sym_preproc_else_token1] = ACTIONS(3048), + [aux_sym_preproc_elif_token1] = ACTIONS(3048), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, [430] = { - [sym_identifier] = ACTIONS(2614), - [aux_sym_preproc_include_token1] = ACTIONS(2614), - [aux_sym_preproc_def_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token2] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2614), - [aux_sym_preproc_else_token1] = ACTIONS(2614), - [aux_sym_preproc_elif_token1] = ACTIONS(2614), - [sym_preproc_directive] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP_AMP] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2614), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym___based] = ACTIONS(2614), - [anon_sym___cdecl] = ACTIONS(2614), - [anon_sym___clrcall] = ACTIONS(2614), - [anon_sym___stdcall] = ACTIONS(2614), - [anon_sym___fastcall] = ACTIONS(2614), - [anon_sym___thiscall] = ACTIONS(2614), - [anon_sym___vectorcall] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_case] = ACTIONS(2614), - [anon_sym_default] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_explicit] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_operator] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_namespace] = ACTIONS(2614), - [anon_sym_using] = ACTIONS(2614), - [anon_sym_static_assert] = ACTIONS(2614), - [anon_sym_concept] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), + [sym_preproc_def] = STATE(430), + [sym_preproc_function_def] = STATE(430), + [sym_preproc_call] = STATE(430), + [sym_preproc_if_in_field_declaration_list] = STATE(430), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(430), + [sym_type_definition] = STATE(430), + [sym__declaration_modifiers] = STATE(3706), + [sym__declaration_specifiers] = STATE(4883), + [sym_attribute_specifier] = STATE(3706), + [sym_attribute_declaration] = STATE(3706), + [sym_ms_declspec_modifier] = STATE(3706), + [sym_ms_based_modifier] = STATE(7654), + [sym__declarator] = STATE(5881), + [sym_parenthesized_declarator] = STATE(5640), + [sym_attributed_declarator] = STATE(5640), + [sym_pointer_declarator] = STATE(5640), + [sym_function_declarator] = STATE(5541), + [sym_array_declarator] = STATE(5640), + [sym_storage_class_specifier] = STATE(3706), + [sym_type_qualifier] = STATE(3706), + [sym__type_specifier] = STATE(3845), + [sym_sized_type_specifier] = STATE(3918), + [sym_enum_specifier] = STATE(3918), + [sym_struct_specifier] = STATE(3918), + [sym_union_specifier] = STATE(3918), + [sym__field_declaration_list_item] = STATE(430), + [sym_field_declaration] = STATE(430), + [sym_placeholder_type_specifier] = STATE(3918), + [sym_decltype_auto] = STATE(3916), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3918), + [sym_virtual] = STATE(3706), + [sym_explicit_function_specifier] = STATE(2243), + [sym_dependent_type] = STATE(3918), + [sym_template_declaration] = STATE(430), + [sym_operator_cast] = STATE(5916), + [sym_inline_method_definition] = STATE(430), + [sym__constructor_specifiers] = STATE(2243), + [sym_operator_cast_definition] = STATE(430), + [sym_operator_cast_declaration] = STATE(430), + [sym_constructor_or_destructor_definition] = STATE(430), + [sym_constructor_or_destructor_declaration] = STATE(430), + [sym_friend_declaration] = STATE(430), + [sym_access_specifier] = STATE(7553), + [sym_reference_declarator] = STATE(5640), + [sym_structured_binding_declarator] = STATE(5640), + [sym_template_type] = STATE(3680), + [sym_template_function] = STATE(5640), + [sym_using_declaration] = STATE(430), + [sym_alias_declaration] = STATE(430), + [sym_static_assert_declaration] = STATE(430), + [sym_destructor_name] = STATE(5640), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5151), + [sym_qualified_identifier] = STATE(5640), + [sym_qualified_type_identifier] = STATE(3966), + [sym_qualified_operator_cast_identifier] = STATE(5916), + [sym_operator_name] = STATE(5640), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(430), + [aux_sym__declaration_specifiers_repeat1] = STATE(2509), + [aux_sym_sized_type_specifier_repeat1] = STATE(3981), + [aux_sym_operator_cast_definition_repeat1] = STATE(2243), + [sym_identifier] = ACTIONS(2747), + [aux_sym_preproc_def_token1] = ACTIONS(3052), + [aux_sym_preproc_if_token1] = ACTIONS(3055), + [aux_sym_preproc_if_token2] = ACTIONS(2756), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3058), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3058), + [aux_sym_preproc_else_token1] = ACTIONS(2756), + [aux_sym_preproc_elif_token1] = ACTIONS(2756), + [sym_preproc_directive] = ACTIONS(3061), + [anon_sym_LPAREN2] = ACTIONS(2764), + [anon_sym_TILDE] = ACTIONS(2767), + [anon_sym_STAR] = ACTIONS(2770), + [anon_sym_AMP_AMP] = ACTIONS(2773), + [anon_sym_AMP] = ACTIONS(2776), + [anon_sym_typedef] = ACTIONS(3064), + [anon_sym_extern] = ACTIONS(2782), + [anon_sym___attribute__] = ACTIONS(2785), + [anon_sym_COLON_COLON] = ACTIONS(2788), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2791), + [anon_sym___declspec] = ACTIONS(2794), + [anon_sym___based] = ACTIONS(2797), + [anon_sym_LBRACK] = ACTIONS(2800), + [anon_sym_static] = ACTIONS(2782), + [anon_sym_register] = ACTIONS(2782), + [anon_sym_inline] = ACTIONS(2782), + [anon_sym_thread_local] = ACTIONS(2782), + [anon_sym_const] = ACTIONS(2803), + [anon_sym_constexpr] = ACTIONS(2803), + [anon_sym_volatile] = ACTIONS(2803), + [anon_sym_restrict] = ACTIONS(2803), + [anon_sym___restrict__] = ACTIONS(2803), + [anon_sym__Atomic] = ACTIONS(2803), + [anon_sym__Noreturn] = ACTIONS(2803), + [anon_sym_noreturn] = ACTIONS(2803), + [anon_sym_mutable] = ACTIONS(2803), + [anon_sym_constinit] = ACTIONS(2803), + [anon_sym_consteval] = ACTIONS(2803), + [anon_sym_signed] = ACTIONS(2806), + [anon_sym_unsigned] = ACTIONS(2806), + [anon_sym_long] = ACTIONS(2806), + [anon_sym_short] = ACTIONS(2806), + [sym_primitive_type] = ACTIONS(2809), + [anon_sym_enum] = ACTIONS(2812), + [anon_sym_class] = ACTIONS(2815), + [anon_sym_struct] = ACTIONS(2818), + [anon_sym_union] = ACTIONS(2821), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2824), + [anon_sym_decltype] = ACTIONS(2827), + [anon_sym_virtual] = ACTIONS(2830), + [anon_sym_explicit] = ACTIONS(2833), + [anon_sym_typename] = ACTIONS(2836), + [anon_sym_template] = ACTIONS(3067), + [anon_sym_operator] = ACTIONS(2842), + [anon_sym_friend] = ACTIONS(3070), + [anon_sym_public] = ACTIONS(2848), + [anon_sym_private] = ACTIONS(2848), + [anon_sym_protected] = ACTIONS(2848), + [anon_sym_using] = ACTIONS(3073), + [anon_sym_static_assert] = ACTIONS(3076), }, [431] = { - [sym_identifier] = ACTIONS(2614), - [aux_sym_preproc_include_token1] = ACTIONS(2614), - [aux_sym_preproc_def_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token2] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2614), - [aux_sym_preproc_else_token1] = ACTIONS(2614), - [aux_sym_preproc_elif_token1] = ACTIONS(2614), - [sym_preproc_directive] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP_AMP] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2614), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym___based] = ACTIONS(2614), - [anon_sym___cdecl] = ACTIONS(2614), - [anon_sym___clrcall] = ACTIONS(2614), - [anon_sym___stdcall] = ACTIONS(2614), - [anon_sym___fastcall] = ACTIONS(2614), - [anon_sym___thiscall] = ACTIONS(2614), - [anon_sym___vectorcall] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_case] = ACTIONS(2614), - [anon_sym_default] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_explicit] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_operator] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_namespace] = ACTIONS(2614), - [anon_sym_using] = ACTIONS(2614), - [anon_sym_static_assert] = ACTIONS(2614), - [anon_sym_concept] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token2] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [aux_sym_preproc_else_token1] = ACTIONS(3048), + [aux_sym_preproc_elif_token1] = ACTIONS(3048), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, [432] = { - [sym_identifier] = ACTIONS(2614), - [aux_sym_preproc_include_token1] = ACTIONS(2614), - [aux_sym_preproc_def_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token2] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2614), - [aux_sym_preproc_else_token1] = ACTIONS(2614), - [aux_sym_preproc_elif_token1] = ACTIONS(2614), - [sym_preproc_directive] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP_AMP] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2614), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym___based] = ACTIONS(2614), - [anon_sym___cdecl] = ACTIONS(2614), - [anon_sym___clrcall] = ACTIONS(2614), - [anon_sym___stdcall] = ACTIONS(2614), - [anon_sym___fastcall] = ACTIONS(2614), - [anon_sym___thiscall] = ACTIONS(2614), - [anon_sym___vectorcall] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_case] = ACTIONS(2614), - [anon_sym_default] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_explicit] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_operator] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_namespace] = ACTIONS(2614), - [anon_sym_using] = ACTIONS(2614), - [anon_sym_static_assert] = ACTIONS(2614), - [anon_sym_concept] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token2] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [aux_sym_preproc_else_token1] = ACTIONS(3048), + [aux_sym_preproc_elif_token1] = ACTIONS(3048), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, [433] = { - [sym_identifier] = ACTIONS(2614), - [aux_sym_preproc_include_token1] = ACTIONS(2614), - [aux_sym_preproc_def_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token2] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2614), - [aux_sym_preproc_else_token1] = ACTIONS(2614), - [aux_sym_preproc_elif_token1] = ACTIONS(2614), - [sym_preproc_directive] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP_AMP] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2614), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym___based] = ACTIONS(2614), - [anon_sym___cdecl] = ACTIONS(2614), - [anon_sym___clrcall] = ACTIONS(2614), - [anon_sym___stdcall] = ACTIONS(2614), - [anon_sym___fastcall] = ACTIONS(2614), - [anon_sym___thiscall] = ACTIONS(2614), - [anon_sym___vectorcall] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_case] = ACTIONS(2614), - [anon_sym_default] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_explicit] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_operator] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_namespace] = ACTIONS(2614), - [anon_sym_using] = ACTIONS(2614), - [anon_sym_static_assert] = ACTIONS(2614), - [anon_sym_concept] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token2] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [aux_sym_preproc_else_token1] = ACTIONS(3028), + [aux_sym_preproc_elif_token1] = ACTIONS(3028), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, [434] = { - [sym_identifier] = ACTIONS(2614), - [aux_sym_preproc_include_token1] = ACTIONS(2614), - [aux_sym_preproc_def_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token2] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2614), - [aux_sym_preproc_else_token1] = ACTIONS(2614), - [aux_sym_preproc_elif_token1] = ACTIONS(2614), - [sym_preproc_directive] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP_AMP] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2614), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym___based] = ACTIONS(2614), - [anon_sym___cdecl] = ACTIONS(2614), - [anon_sym___clrcall] = ACTIONS(2614), - [anon_sym___stdcall] = ACTIONS(2614), - [anon_sym___fastcall] = ACTIONS(2614), - [anon_sym___thiscall] = ACTIONS(2614), - [anon_sym___vectorcall] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_case] = ACTIONS(2614), - [anon_sym_default] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_explicit] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_operator] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_namespace] = ACTIONS(2614), - [anon_sym_using] = ACTIONS(2614), - [anon_sym_static_assert] = ACTIONS(2614), - [anon_sym_concept] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token2] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [aux_sym_preproc_else_token1] = ACTIONS(3048), + [aux_sym_preproc_elif_token1] = ACTIONS(3048), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, [435] = { - [sym_identifier] = ACTIONS(2614), - [aux_sym_preproc_include_token1] = ACTIONS(2614), - [aux_sym_preproc_def_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token2] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2614), - [aux_sym_preproc_else_token1] = ACTIONS(2614), - [aux_sym_preproc_elif_token1] = ACTIONS(2614), - [sym_preproc_directive] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP_AMP] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2614), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym___based] = ACTIONS(2614), - [anon_sym___cdecl] = ACTIONS(2614), - [anon_sym___clrcall] = ACTIONS(2614), - [anon_sym___stdcall] = ACTIONS(2614), - [anon_sym___fastcall] = ACTIONS(2614), - [anon_sym___thiscall] = ACTIONS(2614), - [anon_sym___vectorcall] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_case] = ACTIONS(2614), - [anon_sym_default] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_explicit] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_operator] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_namespace] = ACTIONS(2614), - [anon_sym_using] = ACTIONS(2614), - [anon_sym_static_assert] = ACTIONS(2614), - [anon_sym_concept] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token2] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [aux_sym_preproc_else_token1] = ACTIONS(3028), + [aux_sym_preproc_elif_token1] = ACTIONS(3028), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, [436] = { - [sym_catch_clause] = STATE(337), - [aux_sym_constructor_try_statement_repeat1] = STATE(337), - [sym_identifier] = ACTIONS(2381), - [aux_sym_preproc_include_token1] = ACTIONS(2381), - [aux_sym_preproc_def_token1] = ACTIONS(2381), - [aux_sym_preproc_if_token1] = ACTIONS(2381), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2381), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2381), - [sym_preproc_directive] = ACTIONS(2381), - [anon_sym_LPAREN2] = ACTIONS(2383), - [anon_sym_BANG] = ACTIONS(2383), - [anon_sym_TILDE] = ACTIONS(2383), - [anon_sym_DASH] = ACTIONS(2381), - [anon_sym_PLUS] = ACTIONS(2381), - [anon_sym_STAR] = ACTIONS(2383), - [anon_sym_AMP_AMP] = ACTIONS(2383), - [anon_sym_AMP] = ACTIONS(2381), - [anon_sym_SEMI] = ACTIONS(2383), - [anon_sym_typedef] = ACTIONS(2381), - [anon_sym_extern] = ACTIONS(2381), - [anon_sym___attribute__] = ACTIONS(2381), - [anon_sym_COLON_COLON] = ACTIONS(2383), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2383), - [anon_sym___declspec] = ACTIONS(2381), - [anon_sym___based] = ACTIONS(2381), - [anon_sym___cdecl] = ACTIONS(2381), - [anon_sym___clrcall] = ACTIONS(2381), - [anon_sym___stdcall] = ACTIONS(2381), - [anon_sym___fastcall] = ACTIONS(2381), - [anon_sym___thiscall] = ACTIONS(2381), - [anon_sym___vectorcall] = ACTIONS(2381), - [anon_sym_LBRACE] = ACTIONS(2383), - [anon_sym_RBRACE] = ACTIONS(2383), - [anon_sym_LBRACK] = ACTIONS(2381), - [anon_sym_static] = ACTIONS(2381), - [anon_sym_register] = ACTIONS(2381), - [anon_sym_inline] = ACTIONS(2381), - [anon_sym_thread_local] = ACTIONS(2381), - [anon_sym_const] = ACTIONS(2381), - [anon_sym_volatile] = ACTIONS(2381), - [anon_sym_restrict] = ACTIONS(2381), - [anon_sym__Atomic] = ACTIONS(2381), - [anon_sym_mutable] = ACTIONS(2381), - [anon_sym_constexpr] = ACTIONS(2381), - [anon_sym_constinit] = ACTIONS(2381), - [anon_sym_consteval] = ACTIONS(2381), - [anon_sym_signed] = ACTIONS(2381), - [anon_sym_unsigned] = ACTIONS(2381), - [anon_sym_long] = ACTIONS(2381), - [anon_sym_short] = ACTIONS(2381), - [sym_primitive_type] = ACTIONS(2381), - [anon_sym_enum] = ACTIONS(2381), - [anon_sym_class] = ACTIONS(2381), - [anon_sym_struct] = ACTIONS(2381), - [anon_sym_union] = ACTIONS(2381), - [anon_sym_if] = ACTIONS(2381), - [anon_sym_switch] = ACTIONS(2381), - [anon_sym_case] = ACTIONS(2381), - [anon_sym_default] = ACTIONS(2381), - [anon_sym_while] = ACTIONS(2381), - [anon_sym_do] = ACTIONS(2381), - [anon_sym_for] = ACTIONS(2381), - [anon_sym_return] = ACTIONS(2381), - [anon_sym_break] = ACTIONS(2381), - [anon_sym_continue] = ACTIONS(2381), - [anon_sym_goto] = ACTIONS(2381), - [anon_sym_not] = ACTIONS(2381), - [anon_sym_compl] = ACTIONS(2381), - [anon_sym_DASH_DASH] = ACTIONS(2383), - [anon_sym_PLUS_PLUS] = ACTIONS(2383), - [anon_sym_sizeof] = ACTIONS(2381), - [sym_number_literal] = ACTIONS(2383), - [anon_sym_L_SQUOTE] = ACTIONS(2383), - [anon_sym_u_SQUOTE] = ACTIONS(2383), - [anon_sym_U_SQUOTE] = ACTIONS(2383), - [anon_sym_u8_SQUOTE] = ACTIONS(2383), - [anon_sym_SQUOTE] = ACTIONS(2383), - [anon_sym_L_DQUOTE] = ACTIONS(2383), - [anon_sym_u_DQUOTE] = ACTIONS(2383), - [anon_sym_U_DQUOTE] = ACTIONS(2383), - [anon_sym_u8_DQUOTE] = ACTIONS(2383), - [anon_sym_DQUOTE] = ACTIONS(2383), - [sym_true] = ACTIONS(2381), - [sym_false] = ACTIONS(2381), - [sym_null] = ACTIONS(2381), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2381), - [anon_sym_decltype] = ACTIONS(2381), - [anon_sym_virtual] = ACTIONS(2381), - [anon_sym_explicit] = ACTIONS(2381), - [anon_sym_typename] = ACTIONS(2381), - [anon_sym_template] = ACTIONS(2381), - [anon_sym_operator] = ACTIONS(2381), - [anon_sym_try] = ACTIONS(2381), - [anon_sym_delete] = ACTIONS(2381), - [anon_sym_throw] = ACTIONS(2381), - [anon_sym_namespace] = ACTIONS(2381), - [anon_sym_using] = ACTIONS(2381), - [anon_sym_static_assert] = ACTIONS(2381), - [anon_sym_concept] = ACTIONS(2381), - [anon_sym_co_return] = ACTIONS(2381), - [anon_sym_co_yield] = ACTIONS(2381), - [anon_sym_catch] = ACTIONS(2389), - [anon_sym_R_DQUOTE] = ACTIONS(2383), - [anon_sym_LR_DQUOTE] = ACTIONS(2383), - [anon_sym_uR_DQUOTE] = ACTIONS(2383), - [anon_sym_UR_DQUOTE] = ACTIONS(2383), - [anon_sym_u8R_DQUOTE] = ACTIONS(2383), - [anon_sym_co_await] = ACTIONS(2381), - [anon_sym_new] = ACTIONS(2381), - [anon_sym_requires] = ACTIONS(2381), - [sym_this] = ACTIONS(2381), - [sym_nullptr] = ACTIONS(2381), + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token2] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [aux_sym_preproc_else_token1] = ACTIONS(3028), + [aux_sym_preproc_elif_token1] = ACTIONS(3028), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, [437] = { - [sym_identifier] = ACTIONS(2614), - [aux_sym_preproc_include_token1] = ACTIONS(2614), - [aux_sym_preproc_def_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token2] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2614), - [aux_sym_preproc_else_token1] = ACTIONS(2614), - [aux_sym_preproc_elif_token1] = ACTIONS(2614), - [sym_preproc_directive] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP_AMP] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2614), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym___based] = ACTIONS(2614), - [anon_sym___cdecl] = ACTIONS(2614), - [anon_sym___clrcall] = ACTIONS(2614), - [anon_sym___stdcall] = ACTIONS(2614), - [anon_sym___fastcall] = ACTIONS(2614), - [anon_sym___thiscall] = ACTIONS(2614), - [anon_sym___vectorcall] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_case] = ACTIONS(2614), - [anon_sym_default] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_explicit] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_operator] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_namespace] = ACTIONS(2614), - [anon_sym_using] = ACTIONS(2614), - [anon_sym_static_assert] = ACTIONS(2614), - [anon_sym_concept] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token2] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [aux_sym_preproc_else_token1] = ACTIONS(3028), + [aux_sym_preproc_elif_token1] = ACTIONS(3028), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, [438] = { - [sym_type_qualifier] = STATE(3306), - [sym__type_specifier] = STATE(3903), - [sym_sized_type_specifier] = STATE(3003), - [sym_enum_specifier] = STATE(3003), - [sym_struct_specifier] = STATE(3003), - [sym_union_specifier] = STATE(3003), - [sym__expression] = STATE(3491), - [sym_conditional_expression] = STATE(3855), - [sym_assignment_expression] = STATE(3855), - [sym_pointer_expression] = STATE(2954), - [sym_unary_expression] = STATE(3855), - [sym_binary_expression] = STATE(3855), - [sym_update_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_type_descriptor] = STATE(5209), - [sym_sizeof_expression] = STATE(3855), - [sym_subscript_expression] = STATE(2954), - [sym_call_expression] = STATE(2954), - [sym_field_expression] = STATE(2954), - [sym_compound_literal_expression] = STATE(3855), - [sym_parenthesized_expression] = STATE(2954), - [sym_char_literal] = STATE(3557), - [sym_concatenated_string] = STATE(3557), - [sym_string_literal] = STATE(2955), - [sym_placeholder_type_specifier] = STATE(3003), - [sym_decltype_auto] = STATE(3008), - [sym_decltype] = STATE(2851), - [sym_class_specifier] = STATE(3003), - [sym__class_name] = STATE(5844), - [sym_dependent_type] = STATE(3003), - [sym_template_type] = STATE(4288), - [sym_template_function] = STATE(3855), - [sym_raw_string_literal] = STATE(2955), - [sym_co_await_expression] = STATE(3855), - [sym_new_expression] = STATE(3855), - [sym_delete_expression] = STATE(3855), - [sym_requires_clause] = STATE(3855), - [sym_requires_expression] = STATE(3855), - [sym_lambda_expression] = STATE(3855), - [sym_lambda_capture_specifier] = STATE(4501), - [sym_fold_expression] = STATE(3855), - [sym_parameter_pack_expansion] = STATE(3855), - [sym_type_parameter_pack_expansion] = STATE(5609), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4544), - [sym_qualified_identifier] = STATE(2954), - [sym_qualified_type_identifier] = STATE(4356), - [sym_user_defined_literal] = STATE(3855), - [aux_sym_type_definition_repeat1] = STATE(3306), - [aux_sym_sized_type_specifier_repeat1] = STATE(2022), - [sym_identifier] = ACTIONS(2408), - [anon_sym_LPAREN2] = ACTIONS(2410), - [anon_sym_BANG] = ACTIONS(2412), - [anon_sym_TILDE] = ACTIONS(2412), - [anon_sym_DASH] = ACTIONS(2414), - [anon_sym_PLUS] = ACTIONS(2414), - [anon_sym_STAR] = ACTIONS(2416), - [anon_sym_AMP] = ACTIONS(2416), - [anon_sym_COLON_COLON] = ACTIONS(2418), - [anon_sym_LBRACK] = ACTIONS(1539), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(2420), - [anon_sym_unsigned] = ACTIONS(2420), - [anon_sym_long] = ACTIONS(2420), - [anon_sym_short] = ACTIONS(2420), - [sym_primitive_type] = ACTIONS(2422), - [anon_sym_enum] = ACTIONS(2424), - [anon_sym_class] = ACTIONS(2426), - [anon_sym_struct] = ACTIONS(2428), - [anon_sym_union] = ACTIONS(2430), - [anon_sym_not] = ACTIONS(2414), - [anon_sym_compl] = ACTIONS(2414), - [anon_sym_DASH_DASH] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(2432), - [anon_sym_sizeof] = ACTIONS(2434), - [sym_number_literal] = ACTIONS(2436), - [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_L_DQUOTE] = ACTIONS(2440), - [anon_sym_u_DQUOTE] = ACTIONS(2440), - [anon_sym_U_DQUOTE] = ACTIONS(2440), - [anon_sym_u8_DQUOTE] = ACTIONS(2440), - [anon_sym_DQUOTE] = ACTIONS(2440), - [sym_true] = ACTIONS(2442), - [sym_false] = ACTIONS(2442), - [sym_null] = ACTIONS(2442), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2444), - [anon_sym_decltype] = ACTIONS(2446), - [anon_sym_typename] = ACTIONS(2448), - [anon_sym_template] = ACTIONS(996), - [anon_sym_GT2] = ACTIONS(2618), - [anon_sym_delete] = ACTIONS(2452), - [anon_sym_R_DQUOTE] = ACTIONS(2454), - [anon_sym_LR_DQUOTE] = ACTIONS(2454), - [anon_sym_uR_DQUOTE] = ACTIONS(2454), - [anon_sym_UR_DQUOTE] = ACTIONS(2454), - [anon_sym_u8R_DQUOTE] = ACTIONS(2454), - [anon_sym_co_await] = ACTIONS(2456), - [anon_sym_new] = ACTIONS(2458), - [anon_sym_requires] = ACTIONS(2460), - [sym_this] = ACTIONS(2442), - [sym_nullptr] = ACTIONS(2442), + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token2] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [aux_sym_preproc_else_token1] = ACTIONS(3048), + [aux_sym_preproc_elif_token1] = ACTIONS(3048), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, [439] = { - [sym_type_qualifier] = STATE(3306), - [sym__type_specifier] = STATE(3903), - [sym_sized_type_specifier] = STATE(3003), - [sym_enum_specifier] = STATE(3003), - [sym_struct_specifier] = STATE(3003), - [sym_union_specifier] = STATE(3003), - [sym__expression] = STATE(3471), - [sym_conditional_expression] = STATE(3855), - [sym_assignment_expression] = STATE(3855), - [sym_pointer_expression] = STATE(2954), - [sym_unary_expression] = STATE(3855), - [sym_binary_expression] = STATE(3855), - [sym_update_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_type_descriptor] = STATE(5241), - [sym_sizeof_expression] = STATE(3855), - [sym_subscript_expression] = STATE(2954), - [sym_call_expression] = STATE(2954), - [sym_field_expression] = STATE(2954), - [sym_compound_literal_expression] = STATE(3855), - [sym_parenthesized_expression] = STATE(2954), - [sym_char_literal] = STATE(3557), - [sym_concatenated_string] = STATE(3557), - [sym_string_literal] = STATE(2955), - [sym_placeholder_type_specifier] = STATE(3003), - [sym_decltype_auto] = STATE(3008), - [sym_decltype] = STATE(2851), - [sym_class_specifier] = STATE(3003), - [sym__class_name] = STATE(5844), - [sym_dependent_type] = STATE(3003), - [sym_template_type] = STATE(4288), - [sym_template_function] = STATE(3855), - [sym_raw_string_literal] = STATE(2955), - [sym_co_await_expression] = STATE(3855), - [sym_new_expression] = STATE(3855), - [sym_delete_expression] = STATE(3855), - [sym_requires_clause] = STATE(3855), - [sym_requires_expression] = STATE(3855), - [sym_lambda_expression] = STATE(3855), - [sym_lambda_capture_specifier] = STATE(4501), - [sym_fold_expression] = STATE(3855), - [sym_parameter_pack_expansion] = STATE(3855), - [sym_type_parameter_pack_expansion] = STATE(5562), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4544), - [sym_qualified_identifier] = STATE(2954), - [sym_qualified_type_identifier] = STATE(4356), - [sym_user_defined_literal] = STATE(3855), - [aux_sym_type_definition_repeat1] = STATE(3306), - [aux_sym_sized_type_specifier_repeat1] = STATE(2022), - [sym_identifier] = ACTIONS(2408), - [anon_sym_LPAREN2] = ACTIONS(2410), - [anon_sym_BANG] = ACTIONS(2412), - [anon_sym_TILDE] = ACTIONS(2412), - [anon_sym_DASH] = ACTIONS(2414), - [anon_sym_PLUS] = ACTIONS(2414), - [anon_sym_STAR] = ACTIONS(2416), - [anon_sym_AMP] = ACTIONS(2416), - [anon_sym_COLON_COLON] = ACTIONS(2418), - [anon_sym_LBRACK] = ACTIONS(1539), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(2420), - [anon_sym_unsigned] = ACTIONS(2420), - [anon_sym_long] = ACTIONS(2420), - [anon_sym_short] = ACTIONS(2420), - [sym_primitive_type] = ACTIONS(2422), - [anon_sym_enum] = ACTIONS(2424), - [anon_sym_class] = ACTIONS(2426), - [anon_sym_struct] = ACTIONS(2428), - [anon_sym_union] = ACTIONS(2430), - [anon_sym_not] = ACTIONS(2414), - [anon_sym_compl] = ACTIONS(2414), - [anon_sym_DASH_DASH] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(2432), - [anon_sym_sizeof] = ACTIONS(2434), - [sym_number_literal] = ACTIONS(2436), - [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_L_DQUOTE] = ACTIONS(2440), - [anon_sym_u_DQUOTE] = ACTIONS(2440), - [anon_sym_U_DQUOTE] = ACTIONS(2440), - [anon_sym_u8_DQUOTE] = ACTIONS(2440), - [anon_sym_DQUOTE] = ACTIONS(2440), - [sym_true] = ACTIONS(2442), - [sym_false] = ACTIONS(2442), - [sym_null] = ACTIONS(2442), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2444), - [anon_sym_decltype] = ACTIONS(2446), - [anon_sym_typename] = ACTIONS(2448), - [anon_sym_template] = ACTIONS(996), - [anon_sym_GT2] = ACTIONS(2620), - [anon_sym_delete] = ACTIONS(2452), - [anon_sym_R_DQUOTE] = ACTIONS(2454), - [anon_sym_LR_DQUOTE] = ACTIONS(2454), - [anon_sym_uR_DQUOTE] = ACTIONS(2454), - [anon_sym_UR_DQUOTE] = ACTIONS(2454), - [anon_sym_u8R_DQUOTE] = ACTIONS(2454), - [anon_sym_co_await] = ACTIONS(2456), - [anon_sym_new] = ACTIONS(2458), - [anon_sym_requires] = ACTIONS(2460), - [sym_this] = ACTIONS(2442), - [sym_nullptr] = ACTIONS(2442), + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token2] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [aux_sym_preproc_else_token1] = ACTIONS(3048), + [aux_sym_preproc_elif_token1] = ACTIONS(3048), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, [440] = { - [sym_identifier] = ACTIONS(2614), - [aux_sym_preproc_include_token1] = ACTIONS(2614), - [aux_sym_preproc_def_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token2] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2614), - [aux_sym_preproc_else_token1] = ACTIONS(2614), - [aux_sym_preproc_elif_token1] = ACTIONS(2614), - [sym_preproc_directive] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP_AMP] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2614), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym___based] = ACTIONS(2614), - [anon_sym___cdecl] = ACTIONS(2614), - [anon_sym___clrcall] = ACTIONS(2614), - [anon_sym___stdcall] = ACTIONS(2614), - [anon_sym___fastcall] = ACTIONS(2614), - [anon_sym___thiscall] = ACTIONS(2614), - [anon_sym___vectorcall] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_case] = ACTIONS(2614), - [anon_sym_default] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_explicit] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_operator] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_namespace] = ACTIONS(2614), - [anon_sym_using] = ACTIONS(2614), - [anon_sym_static_assert] = ACTIONS(2614), - [anon_sym_concept] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token2] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [aux_sym_preproc_else_token1] = ACTIONS(3028), + [aux_sym_preproc_elif_token1] = ACTIONS(3028), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, [441] = { - [sym_identifier] = ACTIONS(2622), - [aux_sym_preproc_include_token1] = ACTIONS(2622), - [aux_sym_preproc_def_token1] = ACTIONS(2622), - [aux_sym_preproc_if_token1] = ACTIONS(2622), - [aux_sym_preproc_if_token2] = ACTIONS(2622), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2622), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2622), - [aux_sym_preproc_else_token1] = ACTIONS(2622), - [aux_sym_preproc_elif_token1] = ACTIONS(2622), - [sym_preproc_directive] = ACTIONS(2622), - [anon_sym_LPAREN2] = ACTIONS(2624), - [anon_sym_BANG] = ACTIONS(2624), - [anon_sym_TILDE] = ACTIONS(2624), - [anon_sym_DASH] = ACTIONS(2622), - [anon_sym_PLUS] = ACTIONS(2622), - [anon_sym_STAR] = ACTIONS(2624), - [anon_sym_AMP_AMP] = ACTIONS(2624), - [anon_sym_AMP] = ACTIONS(2622), - [anon_sym_SEMI] = ACTIONS(2624), - [anon_sym_typedef] = ACTIONS(2622), - [anon_sym_extern] = ACTIONS(2622), - [anon_sym___attribute__] = ACTIONS(2622), - [anon_sym_COLON_COLON] = ACTIONS(2624), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2624), - [anon_sym___declspec] = ACTIONS(2622), - [anon_sym___based] = ACTIONS(2622), - [anon_sym___cdecl] = ACTIONS(2622), - [anon_sym___clrcall] = ACTIONS(2622), - [anon_sym___stdcall] = ACTIONS(2622), - [anon_sym___fastcall] = ACTIONS(2622), - [anon_sym___thiscall] = ACTIONS(2622), - [anon_sym___vectorcall] = ACTIONS(2622), - [anon_sym_LBRACE] = ACTIONS(2624), - [anon_sym_LBRACK] = ACTIONS(2622), - [anon_sym_static] = ACTIONS(2622), - [anon_sym_register] = ACTIONS(2622), - [anon_sym_inline] = ACTIONS(2622), - [anon_sym_thread_local] = ACTIONS(2622), - [anon_sym_const] = ACTIONS(2622), - [anon_sym_volatile] = ACTIONS(2622), - [anon_sym_restrict] = ACTIONS(2622), - [anon_sym__Atomic] = ACTIONS(2622), - [anon_sym_mutable] = ACTIONS(2622), - [anon_sym_constexpr] = ACTIONS(2622), - [anon_sym_constinit] = ACTIONS(2622), - [anon_sym_consteval] = ACTIONS(2622), - [anon_sym_signed] = ACTIONS(2622), - [anon_sym_unsigned] = ACTIONS(2622), - [anon_sym_long] = ACTIONS(2622), - [anon_sym_short] = ACTIONS(2622), - [sym_primitive_type] = ACTIONS(2622), - [anon_sym_enum] = ACTIONS(2622), - [anon_sym_class] = ACTIONS(2622), - [anon_sym_struct] = ACTIONS(2622), - [anon_sym_union] = ACTIONS(2622), - [anon_sym_if] = ACTIONS(2622), - [anon_sym_else] = ACTIONS(2622), - [anon_sym_switch] = ACTIONS(2622), - [anon_sym_case] = ACTIONS(2622), - [anon_sym_default] = ACTIONS(2622), - [anon_sym_while] = ACTIONS(2622), - [anon_sym_do] = ACTIONS(2622), - [anon_sym_for] = ACTIONS(2622), - [anon_sym_return] = ACTIONS(2622), - [anon_sym_break] = ACTIONS(2622), - [anon_sym_continue] = ACTIONS(2622), - [anon_sym_goto] = ACTIONS(2622), - [anon_sym_not] = ACTIONS(2622), - [anon_sym_compl] = ACTIONS(2622), - [anon_sym_DASH_DASH] = ACTIONS(2624), - [anon_sym_PLUS_PLUS] = ACTIONS(2624), - [anon_sym_sizeof] = ACTIONS(2622), - [sym_number_literal] = ACTIONS(2624), - [anon_sym_L_SQUOTE] = ACTIONS(2624), - [anon_sym_u_SQUOTE] = ACTIONS(2624), - [anon_sym_U_SQUOTE] = ACTIONS(2624), - [anon_sym_u8_SQUOTE] = ACTIONS(2624), - [anon_sym_SQUOTE] = ACTIONS(2624), - [anon_sym_L_DQUOTE] = ACTIONS(2624), - [anon_sym_u_DQUOTE] = ACTIONS(2624), - [anon_sym_U_DQUOTE] = ACTIONS(2624), - [anon_sym_u8_DQUOTE] = ACTIONS(2624), - [anon_sym_DQUOTE] = ACTIONS(2624), - [sym_true] = ACTIONS(2622), - [sym_false] = ACTIONS(2622), - [sym_null] = ACTIONS(2622), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2622), - [anon_sym_decltype] = ACTIONS(2622), - [anon_sym_virtual] = ACTIONS(2622), - [anon_sym_explicit] = ACTIONS(2622), - [anon_sym_typename] = ACTIONS(2622), - [anon_sym_template] = ACTIONS(2622), - [anon_sym_operator] = ACTIONS(2622), - [anon_sym_try] = ACTIONS(2622), - [anon_sym_delete] = ACTIONS(2622), - [anon_sym_throw] = ACTIONS(2622), - [anon_sym_namespace] = ACTIONS(2622), - [anon_sym_using] = ACTIONS(2622), - [anon_sym_static_assert] = ACTIONS(2622), - [anon_sym_concept] = ACTIONS(2622), - [anon_sym_co_return] = ACTIONS(2622), - [anon_sym_co_yield] = ACTIONS(2622), - [anon_sym_R_DQUOTE] = ACTIONS(2624), - [anon_sym_LR_DQUOTE] = ACTIONS(2624), - [anon_sym_uR_DQUOTE] = ACTIONS(2624), - [anon_sym_UR_DQUOTE] = ACTIONS(2624), - [anon_sym_u8R_DQUOTE] = ACTIONS(2624), - [anon_sym_co_await] = ACTIONS(2622), - [anon_sym_new] = ACTIONS(2622), - [anon_sym_requires] = ACTIONS(2622), - [sym_this] = ACTIONS(2622), - [sym_nullptr] = ACTIONS(2622), + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token2] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [aux_sym_preproc_else_token1] = ACTIONS(3048), + [aux_sym_preproc_elif_token1] = ACTIONS(3048), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, [442] = { - [sym_identifier] = ACTIONS(2614), - [aux_sym_preproc_include_token1] = ACTIONS(2614), - [aux_sym_preproc_def_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token2] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2614), - [aux_sym_preproc_else_token1] = ACTIONS(2614), - [aux_sym_preproc_elif_token1] = ACTIONS(2614), - [sym_preproc_directive] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP_AMP] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2614), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym___based] = ACTIONS(2614), - [anon_sym___cdecl] = ACTIONS(2614), - [anon_sym___clrcall] = ACTIONS(2614), - [anon_sym___stdcall] = ACTIONS(2614), - [anon_sym___fastcall] = ACTIONS(2614), - [anon_sym___thiscall] = ACTIONS(2614), - [anon_sym___vectorcall] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_case] = ACTIONS(2614), - [anon_sym_default] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_explicit] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_operator] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_namespace] = ACTIONS(2614), - [anon_sym_using] = ACTIONS(2614), - [anon_sym_static_assert] = ACTIONS(2614), - [anon_sym_concept] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), + [sym_identifier] = ACTIONS(3079), + [aux_sym_preproc_include_token1] = ACTIONS(3079), + [aux_sym_preproc_def_token1] = ACTIONS(3079), + [aux_sym_preproc_if_token1] = ACTIONS(3079), + [aux_sym_preproc_if_token2] = ACTIONS(3079), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3079), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3079), + [aux_sym_preproc_else_token1] = ACTIONS(3079), + [aux_sym_preproc_elif_token1] = ACTIONS(3079), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3079), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3079), + [sym_preproc_directive] = ACTIONS(3079), + [anon_sym_LPAREN2] = ACTIONS(3081), + [anon_sym_BANG] = ACTIONS(3081), + [anon_sym_TILDE] = ACTIONS(3081), + [anon_sym_DASH] = ACTIONS(3079), + [anon_sym_PLUS] = ACTIONS(3079), + [anon_sym_STAR] = ACTIONS(3081), + [anon_sym_AMP_AMP] = ACTIONS(3081), + [anon_sym_AMP] = ACTIONS(3079), + [anon_sym_SEMI] = ACTIONS(3081), + [anon_sym_typedef] = ACTIONS(3079), + [anon_sym_extern] = ACTIONS(3079), + [anon_sym___attribute__] = ACTIONS(3079), + [anon_sym_COLON_COLON] = ACTIONS(3081), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3081), + [anon_sym___declspec] = ACTIONS(3079), + [anon_sym___based] = ACTIONS(3079), + [anon_sym___cdecl] = ACTIONS(3079), + [anon_sym___clrcall] = ACTIONS(3079), + [anon_sym___stdcall] = ACTIONS(3079), + [anon_sym___fastcall] = ACTIONS(3079), + [anon_sym___thiscall] = ACTIONS(3079), + [anon_sym___vectorcall] = ACTIONS(3079), + [anon_sym_LBRACE] = ACTIONS(3081), + [anon_sym_LBRACK] = ACTIONS(3079), + [anon_sym_static] = ACTIONS(3079), + [anon_sym_register] = ACTIONS(3079), + [anon_sym_inline] = ACTIONS(3079), + [anon_sym_thread_local] = ACTIONS(3079), + [anon_sym_const] = ACTIONS(3079), + [anon_sym_constexpr] = ACTIONS(3079), + [anon_sym_volatile] = ACTIONS(3079), + [anon_sym_restrict] = ACTIONS(3079), + [anon_sym___restrict__] = ACTIONS(3079), + [anon_sym__Atomic] = ACTIONS(3079), + [anon_sym__Noreturn] = ACTIONS(3079), + [anon_sym_noreturn] = ACTIONS(3079), + [anon_sym_mutable] = ACTIONS(3079), + [anon_sym_constinit] = ACTIONS(3079), + [anon_sym_consteval] = ACTIONS(3079), + [anon_sym_signed] = ACTIONS(3079), + [anon_sym_unsigned] = ACTIONS(3079), + [anon_sym_long] = ACTIONS(3079), + [anon_sym_short] = ACTIONS(3079), + [sym_primitive_type] = ACTIONS(3079), + [anon_sym_enum] = ACTIONS(3079), + [anon_sym_class] = ACTIONS(3079), + [anon_sym_struct] = ACTIONS(3079), + [anon_sym_union] = ACTIONS(3079), + [anon_sym_if] = ACTIONS(3079), + [anon_sym_else] = ACTIONS(3083), + [anon_sym_switch] = ACTIONS(3079), + [anon_sym_case] = ACTIONS(3079), + [anon_sym_default] = ACTIONS(3079), + [anon_sym_while] = ACTIONS(3079), + [anon_sym_do] = ACTIONS(3079), + [anon_sym_for] = ACTIONS(3079), + [anon_sym_return] = ACTIONS(3079), + [anon_sym_break] = ACTIONS(3079), + [anon_sym_continue] = ACTIONS(3079), + [anon_sym_goto] = ACTIONS(3079), + [anon_sym_not] = ACTIONS(3079), + [anon_sym_compl] = ACTIONS(3079), + [anon_sym_DASH_DASH] = ACTIONS(3081), + [anon_sym_PLUS_PLUS] = ACTIONS(3081), + [anon_sym_sizeof] = ACTIONS(3079), + [anon_sym_offsetof] = ACTIONS(3079), + [anon_sym__Generic] = ACTIONS(3079), + [anon_sym_asm] = ACTIONS(3079), + [anon_sym___asm__] = ACTIONS(3079), + [sym_number_literal] = ACTIONS(3081), + [anon_sym_L_SQUOTE] = ACTIONS(3081), + [anon_sym_u_SQUOTE] = ACTIONS(3081), + [anon_sym_U_SQUOTE] = ACTIONS(3081), + [anon_sym_u8_SQUOTE] = ACTIONS(3081), + [anon_sym_SQUOTE] = ACTIONS(3081), + [anon_sym_L_DQUOTE] = ACTIONS(3081), + [anon_sym_u_DQUOTE] = ACTIONS(3081), + [anon_sym_U_DQUOTE] = ACTIONS(3081), + [anon_sym_u8_DQUOTE] = ACTIONS(3081), + [anon_sym_DQUOTE] = ACTIONS(3081), + [sym_true] = ACTIONS(3079), + [sym_false] = ACTIONS(3079), + [anon_sym_NULL] = ACTIONS(3079), + [anon_sym_nullptr] = ACTIONS(3079), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3079), + [anon_sym_decltype] = ACTIONS(3079), + [anon_sym_virtual] = ACTIONS(3079), + [anon_sym_explicit] = ACTIONS(3079), + [anon_sym_typename] = ACTIONS(3079), + [anon_sym_template] = ACTIONS(3079), + [anon_sym_operator] = ACTIONS(3079), + [anon_sym_try] = ACTIONS(3079), + [anon_sym_delete] = ACTIONS(3079), + [anon_sym_throw] = ACTIONS(3079), + [anon_sym_namespace] = ACTIONS(3079), + [anon_sym_using] = ACTIONS(3079), + [anon_sym_static_assert] = ACTIONS(3079), + [anon_sym_concept] = ACTIONS(3079), + [anon_sym_co_return] = ACTIONS(3079), + [anon_sym_co_yield] = ACTIONS(3079), + [anon_sym_R_DQUOTE] = ACTIONS(3081), + [anon_sym_LR_DQUOTE] = ACTIONS(3081), + [anon_sym_uR_DQUOTE] = ACTIONS(3081), + [anon_sym_UR_DQUOTE] = ACTIONS(3081), + [anon_sym_u8R_DQUOTE] = ACTIONS(3081), + [anon_sym_co_await] = ACTIONS(3079), + [anon_sym_new] = ACTIONS(3079), + [anon_sym_requires] = ACTIONS(3079), + [sym_this] = ACTIONS(3079), }, [443] = { - [sym_identifier] = ACTIONS(2614), - [aux_sym_preproc_include_token1] = ACTIONS(2614), - [aux_sym_preproc_def_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token2] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2614), - [aux_sym_preproc_else_token1] = ACTIONS(2614), - [aux_sym_preproc_elif_token1] = ACTIONS(2614), - [sym_preproc_directive] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP_AMP] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2614), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym___based] = ACTIONS(2614), - [anon_sym___cdecl] = ACTIONS(2614), - [anon_sym___clrcall] = ACTIONS(2614), - [anon_sym___stdcall] = ACTIONS(2614), - [anon_sym___fastcall] = ACTIONS(2614), - [anon_sym___thiscall] = ACTIONS(2614), - [anon_sym___vectorcall] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_case] = ACTIONS(2614), - [anon_sym_default] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_explicit] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_operator] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_namespace] = ACTIONS(2614), - [anon_sym_using] = ACTIONS(2614), - [anon_sym_static_assert] = ACTIONS(2614), - [anon_sym_concept] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token2] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [aux_sym_preproc_else_token1] = ACTIONS(3048), + [aux_sym_preproc_elif_token1] = ACTIONS(3048), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, [444] = { - [sym_type_qualifier] = STATE(3306), - [sym__type_specifier] = STATE(3903), - [sym_sized_type_specifier] = STATE(3003), - [sym_enum_specifier] = STATE(3003), - [sym_struct_specifier] = STATE(3003), - [sym_union_specifier] = STATE(3003), - [sym__expression] = STATE(3465), - [sym_conditional_expression] = STATE(3855), - [sym_assignment_expression] = STATE(3855), - [sym_pointer_expression] = STATE(2954), - [sym_unary_expression] = STATE(3855), - [sym_binary_expression] = STATE(3855), - [sym_update_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_type_descriptor] = STATE(5200), - [sym_sizeof_expression] = STATE(3855), - [sym_subscript_expression] = STATE(2954), - [sym_call_expression] = STATE(2954), - [sym_field_expression] = STATE(2954), - [sym_compound_literal_expression] = STATE(3855), - [sym_parenthesized_expression] = STATE(2954), - [sym_char_literal] = STATE(3557), - [sym_concatenated_string] = STATE(3557), - [sym_string_literal] = STATE(2955), - [sym_placeholder_type_specifier] = STATE(3003), - [sym_decltype_auto] = STATE(3008), - [sym_decltype] = STATE(2851), - [sym_class_specifier] = STATE(3003), - [sym__class_name] = STATE(5844), - [sym_dependent_type] = STATE(3003), - [sym_template_type] = STATE(4288), - [sym_template_function] = STATE(3855), - [sym_raw_string_literal] = STATE(2955), - [sym_co_await_expression] = STATE(3855), - [sym_new_expression] = STATE(3855), - [sym_delete_expression] = STATE(3855), - [sym_requires_clause] = STATE(3855), - [sym_requires_expression] = STATE(3855), - [sym_lambda_expression] = STATE(3855), - [sym_lambda_capture_specifier] = STATE(4501), - [sym_fold_expression] = STATE(3855), - [sym_parameter_pack_expansion] = STATE(3855), - [sym_type_parameter_pack_expansion] = STATE(5621), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4544), - [sym_qualified_identifier] = STATE(2954), - [sym_qualified_type_identifier] = STATE(4356), - [sym_user_defined_literal] = STATE(3855), - [aux_sym_type_definition_repeat1] = STATE(3306), - [aux_sym_sized_type_specifier_repeat1] = STATE(2022), - [sym_identifier] = ACTIONS(2408), - [anon_sym_LPAREN2] = ACTIONS(2410), - [anon_sym_BANG] = ACTIONS(2412), - [anon_sym_TILDE] = ACTIONS(2412), - [anon_sym_DASH] = ACTIONS(2414), - [anon_sym_PLUS] = ACTIONS(2414), - [anon_sym_STAR] = ACTIONS(2416), - [anon_sym_AMP] = ACTIONS(2416), - [anon_sym_COLON_COLON] = ACTIONS(2418), - [anon_sym_LBRACK] = ACTIONS(1539), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(2420), - [anon_sym_unsigned] = ACTIONS(2420), - [anon_sym_long] = ACTIONS(2420), - [anon_sym_short] = ACTIONS(2420), - [sym_primitive_type] = ACTIONS(2422), - [anon_sym_enum] = ACTIONS(2424), - [anon_sym_class] = ACTIONS(2426), - [anon_sym_struct] = ACTIONS(2428), - [anon_sym_union] = ACTIONS(2430), - [anon_sym_not] = ACTIONS(2414), - [anon_sym_compl] = ACTIONS(2414), - [anon_sym_DASH_DASH] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(2432), - [anon_sym_sizeof] = ACTIONS(2434), - [sym_number_literal] = ACTIONS(2436), - [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_L_DQUOTE] = ACTIONS(2440), - [anon_sym_u_DQUOTE] = ACTIONS(2440), - [anon_sym_U_DQUOTE] = ACTIONS(2440), - [anon_sym_u8_DQUOTE] = ACTIONS(2440), - [anon_sym_DQUOTE] = ACTIONS(2440), - [sym_true] = ACTIONS(2442), - [sym_false] = ACTIONS(2442), - [sym_null] = ACTIONS(2442), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2444), - [anon_sym_decltype] = ACTIONS(2446), - [anon_sym_typename] = ACTIONS(2448), - [anon_sym_template] = ACTIONS(996), - [anon_sym_GT2] = ACTIONS(2626), - [anon_sym_delete] = ACTIONS(2452), - [anon_sym_R_DQUOTE] = ACTIONS(2454), - [anon_sym_LR_DQUOTE] = ACTIONS(2454), - [anon_sym_uR_DQUOTE] = ACTIONS(2454), - [anon_sym_UR_DQUOTE] = ACTIONS(2454), - [anon_sym_u8R_DQUOTE] = ACTIONS(2454), - [anon_sym_co_await] = ACTIONS(2456), - [anon_sym_new] = ACTIONS(2458), - [anon_sym_requires] = ACTIONS(2460), - [sym_this] = ACTIONS(2442), - [sym_nullptr] = ACTIONS(2442), + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token2] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [aux_sym_preproc_else_token1] = ACTIONS(3048), + [aux_sym_preproc_elif_token1] = ACTIONS(3048), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, [445] = { - [sym_identifier] = ACTIONS(2614), - [aux_sym_preproc_include_token1] = ACTIONS(2614), - [aux_sym_preproc_def_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token2] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2614), - [aux_sym_preproc_else_token1] = ACTIONS(2614), - [aux_sym_preproc_elif_token1] = ACTIONS(2614), - [sym_preproc_directive] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP_AMP] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2614), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym___based] = ACTIONS(2614), - [anon_sym___cdecl] = ACTIONS(2614), - [anon_sym___clrcall] = ACTIONS(2614), - [anon_sym___stdcall] = ACTIONS(2614), - [anon_sym___fastcall] = ACTIONS(2614), - [anon_sym___thiscall] = ACTIONS(2614), - [anon_sym___vectorcall] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_case] = ACTIONS(2614), - [anon_sym_default] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_explicit] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_operator] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_namespace] = ACTIONS(2614), - [anon_sym_using] = ACTIONS(2614), - [anon_sym_static_assert] = ACTIONS(2614), - [anon_sym_concept] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token2] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [aux_sym_preproc_else_token1] = ACTIONS(3028), + [aux_sym_preproc_elif_token1] = ACTIONS(3028), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, [446] = { - [sym_identifier] = ACTIONS(2614), - [aux_sym_preproc_include_token1] = ACTIONS(2614), - [aux_sym_preproc_def_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token2] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2614), - [aux_sym_preproc_else_token1] = ACTIONS(2614), - [aux_sym_preproc_elif_token1] = ACTIONS(2614), - [sym_preproc_directive] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP_AMP] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2614), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym___based] = ACTIONS(2614), - [anon_sym___cdecl] = ACTIONS(2614), - [anon_sym___clrcall] = ACTIONS(2614), - [anon_sym___stdcall] = ACTIONS(2614), - [anon_sym___fastcall] = ACTIONS(2614), - [anon_sym___thiscall] = ACTIONS(2614), - [anon_sym___vectorcall] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_case] = ACTIONS(2614), - [anon_sym_default] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_explicit] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_operator] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_namespace] = ACTIONS(2614), - [anon_sym_using] = ACTIONS(2614), - [anon_sym_static_assert] = ACTIONS(2614), - [anon_sym_concept] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token2] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [aux_sym_preproc_else_token1] = ACTIONS(3028), + [aux_sym_preproc_elif_token1] = ACTIONS(3028), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, [447] = { - [sym_catch_clause] = STATE(337), - [aux_sym_constructor_try_statement_repeat1] = STATE(337), - [sym_identifier] = ACTIONS(2385), - [aux_sym_preproc_include_token1] = ACTIONS(2385), - [aux_sym_preproc_def_token1] = ACTIONS(2385), - [aux_sym_preproc_if_token1] = ACTIONS(2385), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2385), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2385), - [sym_preproc_directive] = ACTIONS(2385), - [anon_sym_LPAREN2] = ACTIONS(2387), - [anon_sym_BANG] = ACTIONS(2387), - [anon_sym_TILDE] = ACTIONS(2387), - [anon_sym_DASH] = ACTIONS(2385), - [anon_sym_PLUS] = ACTIONS(2385), - [anon_sym_STAR] = ACTIONS(2387), - [anon_sym_AMP_AMP] = ACTIONS(2387), - [anon_sym_AMP] = ACTIONS(2385), - [anon_sym_SEMI] = ACTIONS(2387), - [anon_sym_typedef] = ACTIONS(2385), - [anon_sym_extern] = ACTIONS(2385), - [anon_sym___attribute__] = ACTIONS(2385), - [anon_sym_COLON_COLON] = ACTIONS(2387), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2387), - [anon_sym___declspec] = ACTIONS(2385), - [anon_sym___based] = ACTIONS(2385), - [anon_sym___cdecl] = ACTIONS(2385), - [anon_sym___clrcall] = ACTIONS(2385), - [anon_sym___stdcall] = ACTIONS(2385), - [anon_sym___fastcall] = ACTIONS(2385), - [anon_sym___thiscall] = ACTIONS(2385), - [anon_sym___vectorcall] = ACTIONS(2385), - [anon_sym_LBRACE] = ACTIONS(2387), - [anon_sym_RBRACE] = ACTIONS(2387), - [anon_sym_LBRACK] = ACTIONS(2385), - [anon_sym_static] = ACTIONS(2385), - [anon_sym_register] = ACTIONS(2385), - [anon_sym_inline] = ACTIONS(2385), - [anon_sym_thread_local] = ACTIONS(2385), - [anon_sym_const] = ACTIONS(2385), - [anon_sym_volatile] = ACTIONS(2385), - [anon_sym_restrict] = ACTIONS(2385), - [anon_sym__Atomic] = ACTIONS(2385), - [anon_sym_mutable] = ACTIONS(2385), - [anon_sym_constexpr] = ACTIONS(2385), - [anon_sym_constinit] = ACTIONS(2385), - [anon_sym_consteval] = ACTIONS(2385), - [anon_sym_signed] = ACTIONS(2385), - [anon_sym_unsigned] = ACTIONS(2385), - [anon_sym_long] = ACTIONS(2385), - [anon_sym_short] = ACTIONS(2385), - [sym_primitive_type] = ACTIONS(2385), - [anon_sym_enum] = ACTIONS(2385), - [anon_sym_class] = ACTIONS(2385), - [anon_sym_struct] = ACTIONS(2385), - [anon_sym_union] = ACTIONS(2385), - [anon_sym_if] = ACTIONS(2385), - [anon_sym_switch] = ACTIONS(2385), - [anon_sym_case] = ACTIONS(2385), - [anon_sym_default] = ACTIONS(2385), - [anon_sym_while] = ACTIONS(2385), - [anon_sym_do] = ACTIONS(2385), - [anon_sym_for] = ACTIONS(2385), - [anon_sym_return] = ACTIONS(2385), - [anon_sym_break] = ACTIONS(2385), - [anon_sym_continue] = ACTIONS(2385), - [anon_sym_goto] = ACTIONS(2385), - [anon_sym_not] = ACTIONS(2385), - [anon_sym_compl] = ACTIONS(2385), - [anon_sym_DASH_DASH] = ACTIONS(2387), - [anon_sym_PLUS_PLUS] = ACTIONS(2387), - [anon_sym_sizeof] = ACTIONS(2385), - [sym_number_literal] = ACTIONS(2387), - [anon_sym_L_SQUOTE] = ACTIONS(2387), - [anon_sym_u_SQUOTE] = ACTIONS(2387), - [anon_sym_U_SQUOTE] = ACTIONS(2387), - [anon_sym_u8_SQUOTE] = ACTIONS(2387), - [anon_sym_SQUOTE] = ACTIONS(2387), - [anon_sym_L_DQUOTE] = ACTIONS(2387), - [anon_sym_u_DQUOTE] = ACTIONS(2387), - [anon_sym_U_DQUOTE] = ACTIONS(2387), - [anon_sym_u8_DQUOTE] = ACTIONS(2387), - [anon_sym_DQUOTE] = ACTIONS(2387), - [sym_true] = ACTIONS(2385), - [sym_false] = ACTIONS(2385), - [sym_null] = ACTIONS(2385), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2385), - [anon_sym_decltype] = ACTIONS(2385), - [anon_sym_virtual] = ACTIONS(2385), - [anon_sym_explicit] = ACTIONS(2385), - [anon_sym_typename] = ACTIONS(2385), - [anon_sym_template] = ACTIONS(2385), - [anon_sym_operator] = ACTIONS(2385), - [anon_sym_try] = ACTIONS(2385), - [anon_sym_delete] = ACTIONS(2385), - [anon_sym_throw] = ACTIONS(2385), - [anon_sym_namespace] = ACTIONS(2385), - [anon_sym_using] = ACTIONS(2385), - [anon_sym_static_assert] = ACTIONS(2385), - [anon_sym_concept] = ACTIONS(2385), - [anon_sym_co_return] = ACTIONS(2385), - [anon_sym_co_yield] = ACTIONS(2385), - [anon_sym_catch] = ACTIONS(2389), - [anon_sym_R_DQUOTE] = ACTIONS(2387), - [anon_sym_LR_DQUOTE] = ACTIONS(2387), - [anon_sym_uR_DQUOTE] = ACTIONS(2387), - [anon_sym_UR_DQUOTE] = ACTIONS(2387), - [anon_sym_u8R_DQUOTE] = ACTIONS(2387), - [anon_sym_co_await] = ACTIONS(2385), - [anon_sym_new] = ACTIONS(2385), - [anon_sym_requires] = ACTIONS(2385), - [sym_this] = ACTIONS(2385), - [sym_nullptr] = ACTIONS(2385), + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token2] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [aux_sym_preproc_else_token1] = ACTIONS(3028), + [aux_sym_preproc_elif_token1] = ACTIONS(3028), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, [448] = { - [sym_type_qualifier] = STATE(3306), - [sym__type_specifier] = STATE(3903), - [sym_sized_type_specifier] = STATE(3003), - [sym_enum_specifier] = STATE(3003), - [sym_struct_specifier] = STATE(3003), - [sym_union_specifier] = STATE(3003), - [sym__expression] = STATE(3493), - [sym_conditional_expression] = STATE(3855), - [sym_assignment_expression] = STATE(3855), - [sym_pointer_expression] = STATE(2954), - [sym_unary_expression] = STATE(3855), - [sym_binary_expression] = STATE(3855), - [sym_update_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_type_descriptor] = STATE(5342), - [sym_sizeof_expression] = STATE(3855), - [sym_subscript_expression] = STATE(2954), - [sym_call_expression] = STATE(2954), - [sym_field_expression] = STATE(2954), - [sym_compound_literal_expression] = STATE(3855), - [sym_parenthesized_expression] = STATE(2954), - [sym_char_literal] = STATE(3557), - [sym_concatenated_string] = STATE(3557), - [sym_string_literal] = STATE(2955), - [sym_placeholder_type_specifier] = STATE(3003), - [sym_decltype_auto] = STATE(3008), - [sym_decltype] = STATE(2851), - [sym_class_specifier] = STATE(3003), - [sym__class_name] = STATE(5844), - [sym_dependent_type] = STATE(3003), - [sym_template_type] = STATE(4288), - [sym_template_function] = STATE(3855), - [sym_raw_string_literal] = STATE(2955), - [sym_co_await_expression] = STATE(3855), - [sym_new_expression] = STATE(3855), - [sym_delete_expression] = STATE(3855), - [sym_requires_clause] = STATE(3855), - [sym_requires_expression] = STATE(3855), - [sym_lambda_expression] = STATE(3855), - [sym_lambda_capture_specifier] = STATE(4501), - [sym_fold_expression] = STATE(3855), - [sym_parameter_pack_expansion] = STATE(3855), - [sym_type_parameter_pack_expansion] = STATE(5401), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4544), - [sym_qualified_identifier] = STATE(2954), - [sym_qualified_type_identifier] = STATE(4356), - [sym_user_defined_literal] = STATE(3855), - [aux_sym_type_definition_repeat1] = STATE(3306), - [aux_sym_sized_type_specifier_repeat1] = STATE(2022), - [sym_identifier] = ACTIONS(2408), - [anon_sym_LPAREN2] = ACTIONS(2410), - [anon_sym_BANG] = ACTIONS(2412), - [anon_sym_TILDE] = ACTIONS(2412), - [anon_sym_DASH] = ACTIONS(2414), - [anon_sym_PLUS] = ACTIONS(2414), - [anon_sym_STAR] = ACTIONS(2416), - [anon_sym_AMP] = ACTIONS(2416), - [anon_sym_COLON_COLON] = ACTIONS(2418), - [anon_sym_LBRACK] = ACTIONS(1539), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(2420), - [anon_sym_unsigned] = ACTIONS(2420), - [anon_sym_long] = ACTIONS(2420), - [anon_sym_short] = ACTIONS(2420), - [sym_primitive_type] = ACTIONS(2422), - [anon_sym_enum] = ACTIONS(2424), - [anon_sym_class] = ACTIONS(2426), - [anon_sym_struct] = ACTIONS(2428), - [anon_sym_union] = ACTIONS(2430), - [anon_sym_not] = ACTIONS(2414), - [anon_sym_compl] = ACTIONS(2414), - [anon_sym_DASH_DASH] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(2432), - [anon_sym_sizeof] = ACTIONS(2434), - [sym_number_literal] = ACTIONS(2436), - [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_L_DQUOTE] = ACTIONS(2440), - [anon_sym_u_DQUOTE] = ACTIONS(2440), - [anon_sym_U_DQUOTE] = ACTIONS(2440), - [anon_sym_u8_DQUOTE] = ACTIONS(2440), - [anon_sym_DQUOTE] = ACTIONS(2440), - [sym_true] = ACTIONS(2442), - [sym_false] = ACTIONS(2442), - [sym_null] = ACTIONS(2442), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2444), - [anon_sym_decltype] = ACTIONS(2446), - [anon_sym_typename] = ACTIONS(2448), - [anon_sym_template] = ACTIONS(996), - [anon_sym_GT2] = ACTIONS(2628), - [anon_sym_delete] = ACTIONS(2452), - [anon_sym_R_DQUOTE] = ACTIONS(2454), - [anon_sym_LR_DQUOTE] = ACTIONS(2454), - [anon_sym_uR_DQUOTE] = ACTIONS(2454), - [anon_sym_UR_DQUOTE] = ACTIONS(2454), - [anon_sym_u8R_DQUOTE] = ACTIONS(2454), - [anon_sym_co_await] = ACTIONS(2456), - [anon_sym_new] = ACTIONS(2458), - [anon_sym_requires] = ACTIONS(2460), - [sym_this] = ACTIONS(2442), - [sym_nullptr] = ACTIONS(2442), + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token2] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [aux_sym_preproc_else_token1] = ACTIONS(3028), + [aux_sym_preproc_elif_token1] = ACTIONS(3028), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, [449] = { - [sym_identifier] = ACTIONS(2614), - [aux_sym_preproc_include_token1] = ACTIONS(2614), - [aux_sym_preproc_def_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token2] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2614), - [aux_sym_preproc_else_token1] = ACTIONS(2614), - [aux_sym_preproc_elif_token1] = ACTIONS(2614), - [sym_preproc_directive] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP_AMP] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2614), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym___based] = ACTIONS(2614), - [anon_sym___cdecl] = ACTIONS(2614), - [anon_sym___clrcall] = ACTIONS(2614), - [anon_sym___stdcall] = ACTIONS(2614), - [anon_sym___fastcall] = ACTIONS(2614), - [anon_sym___thiscall] = ACTIONS(2614), - [anon_sym___vectorcall] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_case] = ACTIONS(2614), - [anon_sym_default] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_explicit] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_operator] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_namespace] = ACTIONS(2614), - [anon_sym_using] = ACTIONS(2614), - [anon_sym_static_assert] = ACTIONS(2614), - [anon_sym_concept] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token2] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [aux_sym_preproc_else_token1] = ACTIONS(3028), + [aux_sym_preproc_elif_token1] = ACTIONS(3028), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, [450] = { - [sym_identifier] = ACTIONS(2630), - [aux_sym_preproc_include_token1] = ACTIONS(2630), - [aux_sym_preproc_def_token1] = ACTIONS(2630), - [aux_sym_preproc_if_token1] = ACTIONS(2630), - [aux_sym_preproc_if_token2] = ACTIONS(2630), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2630), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2630), - [aux_sym_preproc_else_token1] = ACTIONS(2630), - [aux_sym_preproc_elif_token1] = ACTIONS(2630), - [sym_preproc_directive] = ACTIONS(2630), - [anon_sym_LPAREN2] = ACTIONS(2632), - [anon_sym_BANG] = ACTIONS(2632), - [anon_sym_TILDE] = ACTIONS(2632), - [anon_sym_DASH] = ACTIONS(2630), - [anon_sym_PLUS] = ACTIONS(2630), - [anon_sym_STAR] = ACTIONS(2632), - [anon_sym_AMP_AMP] = ACTIONS(2632), - [anon_sym_AMP] = ACTIONS(2630), - [anon_sym_SEMI] = ACTIONS(2632), - [anon_sym_typedef] = ACTIONS(2630), - [anon_sym_extern] = ACTIONS(2630), - [anon_sym___attribute__] = ACTIONS(2630), - [anon_sym_COLON_COLON] = ACTIONS(2632), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2632), - [anon_sym___declspec] = ACTIONS(2630), - [anon_sym___based] = ACTIONS(2630), - [anon_sym___cdecl] = ACTIONS(2630), - [anon_sym___clrcall] = ACTIONS(2630), - [anon_sym___stdcall] = ACTIONS(2630), - [anon_sym___fastcall] = ACTIONS(2630), - [anon_sym___thiscall] = ACTIONS(2630), - [anon_sym___vectorcall] = ACTIONS(2630), - [anon_sym_LBRACE] = ACTIONS(2632), - [anon_sym_LBRACK] = ACTIONS(2630), - [anon_sym_static] = ACTIONS(2630), - [anon_sym_register] = ACTIONS(2630), - [anon_sym_inline] = ACTIONS(2630), - [anon_sym_thread_local] = ACTIONS(2630), - [anon_sym_const] = ACTIONS(2630), - [anon_sym_volatile] = ACTIONS(2630), - [anon_sym_restrict] = ACTIONS(2630), - [anon_sym__Atomic] = ACTIONS(2630), - [anon_sym_mutable] = ACTIONS(2630), - [anon_sym_constexpr] = ACTIONS(2630), - [anon_sym_constinit] = ACTIONS(2630), - [anon_sym_consteval] = ACTIONS(2630), - [anon_sym_signed] = ACTIONS(2630), - [anon_sym_unsigned] = ACTIONS(2630), - [anon_sym_long] = ACTIONS(2630), - [anon_sym_short] = ACTIONS(2630), - [sym_primitive_type] = ACTIONS(2630), - [anon_sym_enum] = ACTIONS(2630), - [anon_sym_class] = ACTIONS(2630), - [anon_sym_struct] = ACTIONS(2630), - [anon_sym_union] = ACTIONS(2630), - [anon_sym_if] = ACTIONS(2630), - [anon_sym_else] = ACTIONS(2630), - [anon_sym_switch] = ACTIONS(2630), - [anon_sym_case] = ACTIONS(2630), - [anon_sym_default] = ACTIONS(2630), - [anon_sym_while] = ACTIONS(2630), - [anon_sym_do] = ACTIONS(2630), - [anon_sym_for] = ACTIONS(2630), - [anon_sym_return] = ACTIONS(2630), - [anon_sym_break] = ACTIONS(2630), - [anon_sym_continue] = ACTIONS(2630), - [anon_sym_goto] = ACTIONS(2630), - [anon_sym_not] = ACTIONS(2630), - [anon_sym_compl] = ACTIONS(2630), - [anon_sym_DASH_DASH] = ACTIONS(2632), - [anon_sym_PLUS_PLUS] = ACTIONS(2632), - [anon_sym_sizeof] = ACTIONS(2630), - [sym_number_literal] = ACTIONS(2632), - [anon_sym_L_SQUOTE] = ACTIONS(2632), - [anon_sym_u_SQUOTE] = ACTIONS(2632), - [anon_sym_U_SQUOTE] = ACTIONS(2632), - [anon_sym_u8_SQUOTE] = ACTIONS(2632), - [anon_sym_SQUOTE] = ACTIONS(2632), - [anon_sym_L_DQUOTE] = ACTIONS(2632), - [anon_sym_u_DQUOTE] = ACTIONS(2632), - [anon_sym_U_DQUOTE] = ACTIONS(2632), - [anon_sym_u8_DQUOTE] = ACTIONS(2632), - [anon_sym_DQUOTE] = ACTIONS(2632), - [sym_true] = ACTIONS(2630), - [sym_false] = ACTIONS(2630), - [sym_null] = ACTIONS(2630), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2630), - [anon_sym_decltype] = ACTIONS(2630), - [anon_sym_virtual] = ACTIONS(2630), - [anon_sym_explicit] = ACTIONS(2630), - [anon_sym_typename] = ACTIONS(2630), - [anon_sym_template] = ACTIONS(2630), - [anon_sym_operator] = ACTIONS(2630), - [anon_sym_try] = ACTIONS(2630), - [anon_sym_delete] = ACTIONS(2630), - [anon_sym_throw] = ACTIONS(2630), - [anon_sym_namespace] = ACTIONS(2630), - [anon_sym_using] = ACTIONS(2630), - [anon_sym_static_assert] = ACTIONS(2630), - [anon_sym_concept] = ACTIONS(2630), - [anon_sym_co_return] = ACTIONS(2630), - [anon_sym_co_yield] = ACTIONS(2630), - [anon_sym_R_DQUOTE] = ACTIONS(2632), - [anon_sym_LR_DQUOTE] = ACTIONS(2632), - [anon_sym_uR_DQUOTE] = ACTIONS(2632), - [anon_sym_UR_DQUOTE] = ACTIONS(2632), - [anon_sym_u8R_DQUOTE] = ACTIONS(2632), - [anon_sym_co_await] = ACTIONS(2630), - [anon_sym_new] = ACTIONS(2630), - [anon_sym_requires] = ACTIONS(2630), - [sym_this] = ACTIONS(2630), - [sym_nullptr] = ACTIONS(2630), + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token2] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [aux_sym_preproc_else_token1] = ACTIONS(3048), + [aux_sym_preproc_elif_token1] = ACTIONS(3048), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, [451] = { - [sym_identifier] = ACTIONS(2614), - [aux_sym_preproc_include_token1] = ACTIONS(2614), - [aux_sym_preproc_def_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token2] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2614), - [aux_sym_preproc_else_token1] = ACTIONS(2614), - [aux_sym_preproc_elif_token1] = ACTIONS(2614), - [sym_preproc_directive] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP_AMP] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2614), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym___based] = ACTIONS(2614), - [anon_sym___cdecl] = ACTIONS(2614), - [anon_sym___clrcall] = ACTIONS(2614), - [anon_sym___stdcall] = ACTIONS(2614), - [anon_sym___fastcall] = ACTIONS(2614), - [anon_sym___thiscall] = ACTIONS(2614), - [anon_sym___vectorcall] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_case] = ACTIONS(2614), - [anon_sym_default] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_explicit] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_operator] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_namespace] = ACTIONS(2614), - [anon_sym_using] = ACTIONS(2614), - [anon_sym_static_assert] = ACTIONS(2614), - [anon_sym_concept] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token2] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [aux_sym_preproc_else_token1] = ACTIONS(3048), + [aux_sym_preproc_elif_token1] = ACTIONS(3048), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, [452] = { - [sym_identifier] = ACTIONS(2462), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2464), - [anon_sym_AMP] = ACTIONS(2462), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_explicit] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_operator] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_namespace] = ACTIONS(2462), - [anon_sym_using] = ACTIONS(2462), - [anon_sym_static_assert] = ACTIONS(2462), - [anon_sym_concept] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token2] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [aux_sym_preproc_else_token1] = ACTIONS(3048), + [aux_sym_preproc_elif_token1] = ACTIONS(3048), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, [453] = { - [sym_identifier] = ACTIONS(2634), - [aux_sym_preproc_include_token1] = ACTIONS(2634), - [aux_sym_preproc_def_token1] = ACTIONS(2634), - [aux_sym_preproc_if_token1] = ACTIONS(2634), - [aux_sym_preproc_if_token2] = ACTIONS(2634), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2634), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2634), - [aux_sym_preproc_else_token1] = ACTIONS(2634), - [aux_sym_preproc_elif_token1] = ACTIONS(2634), - [sym_preproc_directive] = ACTIONS(2634), - [anon_sym_LPAREN2] = ACTIONS(2636), - [anon_sym_BANG] = ACTIONS(2636), - [anon_sym_TILDE] = ACTIONS(2636), - [anon_sym_DASH] = ACTIONS(2634), - [anon_sym_PLUS] = ACTIONS(2634), - [anon_sym_STAR] = ACTIONS(2636), - [anon_sym_AMP_AMP] = ACTIONS(2636), - [anon_sym_AMP] = ACTIONS(2634), - [anon_sym_SEMI] = ACTIONS(2636), - [anon_sym_typedef] = ACTIONS(2634), - [anon_sym_extern] = ACTIONS(2634), - [anon_sym___attribute__] = ACTIONS(2634), - [anon_sym_COLON_COLON] = ACTIONS(2636), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2636), - [anon_sym___declspec] = ACTIONS(2634), - [anon_sym___based] = ACTIONS(2634), - [anon_sym___cdecl] = ACTIONS(2634), - [anon_sym___clrcall] = ACTIONS(2634), - [anon_sym___stdcall] = ACTIONS(2634), - [anon_sym___fastcall] = ACTIONS(2634), - [anon_sym___thiscall] = ACTIONS(2634), - [anon_sym___vectorcall] = ACTIONS(2634), - [anon_sym_LBRACE] = ACTIONS(2636), - [anon_sym_LBRACK] = ACTIONS(2634), - [anon_sym_static] = ACTIONS(2634), - [anon_sym_register] = ACTIONS(2634), - [anon_sym_inline] = ACTIONS(2634), - [anon_sym_thread_local] = ACTIONS(2634), - [anon_sym_const] = ACTIONS(2634), - [anon_sym_volatile] = ACTIONS(2634), - [anon_sym_restrict] = ACTIONS(2634), - [anon_sym__Atomic] = ACTIONS(2634), - [anon_sym_mutable] = ACTIONS(2634), - [anon_sym_constexpr] = ACTIONS(2634), - [anon_sym_constinit] = ACTIONS(2634), - [anon_sym_consteval] = ACTIONS(2634), - [anon_sym_signed] = ACTIONS(2634), - [anon_sym_unsigned] = ACTIONS(2634), - [anon_sym_long] = ACTIONS(2634), - [anon_sym_short] = ACTIONS(2634), - [sym_primitive_type] = ACTIONS(2634), - [anon_sym_enum] = ACTIONS(2634), - [anon_sym_class] = ACTIONS(2634), - [anon_sym_struct] = ACTIONS(2634), - [anon_sym_union] = ACTIONS(2634), - [anon_sym_if] = ACTIONS(2634), - [anon_sym_else] = ACTIONS(2634), - [anon_sym_switch] = ACTIONS(2634), - [anon_sym_case] = ACTIONS(2634), - [anon_sym_default] = ACTIONS(2634), - [anon_sym_while] = ACTIONS(2634), - [anon_sym_do] = ACTIONS(2634), - [anon_sym_for] = ACTIONS(2634), - [anon_sym_return] = ACTIONS(2634), - [anon_sym_break] = ACTIONS(2634), - [anon_sym_continue] = ACTIONS(2634), - [anon_sym_goto] = ACTIONS(2634), - [anon_sym_not] = ACTIONS(2634), - [anon_sym_compl] = ACTIONS(2634), - [anon_sym_DASH_DASH] = ACTIONS(2636), - [anon_sym_PLUS_PLUS] = ACTIONS(2636), - [anon_sym_sizeof] = ACTIONS(2634), - [sym_number_literal] = ACTIONS(2636), - [anon_sym_L_SQUOTE] = ACTIONS(2636), - [anon_sym_u_SQUOTE] = ACTIONS(2636), - [anon_sym_U_SQUOTE] = ACTIONS(2636), - [anon_sym_u8_SQUOTE] = ACTIONS(2636), - [anon_sym_SQUOTE] = ACTIONS(2636), - [anon_sym_L_DQUOTE] = ACTIONS(2636), - [anon_sym_u_DQUOTE] = ACTIONS(2636), - [anon_sym_U_DQUOTE] = ACTIONS(2636), - [anon_sym_u8_DQUOTE] = ACTIONS(2636), - [anon_sym_DQUOTE] = ACTIONS(2636), - [sym_true] = ACTIONS(2634), - [sym_false] = ACTIONS(2634), - [sym_null] = ACTIONS(2634), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2634), - [anon_sym_decltype] = ACTIONS(2634), - [anon_sym_virtual] = ACTIONS(2634), - [anon_sym_explicit] = ACTIONS(2634), - [anon_sym_typename] = ACTIONS(2634), - [anon_sym_template] = ACTIONS(2634), - [anon_sym_operator] = ACTIONS(2634), - [anon_sym_try] = ACTIONS(2634), - [anon_sym_delete] = ACTIONS(2634), - [anon_sym_throw] = ACTIONS(2634), - [anon_sym_namespace] = ACTIONS(2634), - [anon_sym_using] = ACTIONS(2634), - [anon_sym_static_assert] = ACTIONS(2634), - [anon_sym_concept] = ACTIONS(2634), - [anon_sym_co_return] = ACTIONS(2634), - [anon_sym_co_yield] = ACTIONS(2634), - [anon_sym_R_DQUOTE] = ACTIONS(2636), - [anon_sym_LR_DQUOTE] = ACTIONS(2636), - [anon_sym_uR_DQUOTE] = ACTIONS(2636), - [anon_sym_UR_DQUOTE] = ACTIONS(2636), - [anon_sym_u8R_DQUOTE] = ACTIONS(2636), - [anon_sym_co_await] = ACTIONS(2634), - [anon_sym_new] = ACTIONS(2634), - [anon_sym_requires] = ACTIONS(2634), - [sym_this] = ACTIONS(2634), - [sym_nullptr] = ACTIONS(2634), + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token2] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [aux_sym_preproc_else_token1] = ACTIONS(3048), + [aux_sym_preproc_elif_token1] = ACTIONS(3048), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, [454] = { - [sym_identifier] = ACTIONS(2614), - [aux_sym_preproc_include_token1] = ACTIONS(2614), - [aux_sym_preproc_def_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token2] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2614), - [aux_sym_preproc_else_token1] = ACTIONS(2614), - [aux_sym_preproc_elif_token1] = ACTIONS(2614), - [sym_preproc_directive] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP_AMP] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2614), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym___based] = ACTIONS(2614), - [anon_sym___cdecl] = ACTIONS(2614), - [anon_sym___clrcall] = ACTIONS(2614), - [anon_sym___stdcall] = ACTIONS(2614), - [anon_sym___fastcall] = ACTIONS(2614), - [anon_sym___thiscall] = ACTIONS(2614), - [anon_sym___vectorcall] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_case] = ACTIONS(2614), - [anon_sym_default] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_explicit] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_operator] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_namespace] = ACTIONS(2614), - [anon_sym_using] = ACTIONS(2614), - [anon_sym_static_assert] = ACTIONS(2614), - [anon_sym_concept] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token2] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [aux_sym_preproc_else_token1] = ACTIONS(3048), + [aux_sym_preproc_elif_token1] = ACTIONS(3048), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, [455] = { - [sym_catch_clause] = STATE(342), - [aux_sym_constructor_try_statement_repeat1] = STATE(342), - [ts_builtin_sym_end] = ACTIONS(2387), - [sym_identifier] = ACTIONS(2385), - [aux_sym_preproc_include_token1] = ACTIONS(2385), - [aux_sym_preproc_def_token1] = ACTIONS(2385), - [aux_sym_preproc_if_token1] = ACTIONS(2385), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2385), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2385), - [sym_preproc_directive] = ACTIONS(2385), - [anon_sym_LPAREN2] = ACTIONS(2387), - [anon_sym_BANG] = ACTIONS(2387), - [anon_sym_TILDE] = ACTIONS(2387), - [anon_sym_DASH] = ACTIONS(2385), - [anon_sym_PLUS] = ACTIONS(2385), - [anon_sym_STAR] = ACTIONS(2387), - [anon_sym_AMP_AMP] = ACTIONS(2387), - [anon_sym_AMP] = ACTIONS(2385), - [anon_sym_SEMI] = ACTIONS(2387), - [anon_sym_typedef] = ACTIONS(2385), - [anon_sym_extern] = ACTIONS(2385), - [anon_sym___attribute__] = ACTIONS(2385), - [anon_sym_COLON_COLON] = ACTIONS(2387), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2387), - [anon_sym___declspec] = ACTIONS(2385), - [anon_sym___based] = ACTIONS(2385), - [anon_sym___cdecl] = ACTIONS(2385), - [anon_sym___clrcall] = ACTIONS(2385), - [anon_sym___stdcall] = ACTIONS(2385), - [anon_sym___fastcall] = ACTIONS(2385), - [anon_sym___thiscall] = ACTIONS(2385), - [anon_sym___vectorcall] = ACTIONS(2385), - [anon_sym_LBRACE] = ACTIONS(2387), - [anon_sym_LBRACK] = ACTIONS(2385), - [anon_sym_static] = ACTIONS(2385), - [anon_sym_register] = ACTIONS(2385), - [anon_sym_inline] = ACTIONS(2385), - [anon_sym_thread_local] = ACTIONS(2385), - [anon_sym_const] = ACTIONS(2385), - [anon_sym_volatile] = ACTIONS(2385), - [anon_sym_restrict] = ACTIONS(2385), - [anon_sym__Atomic] = ACTIONS(2385), - [anon_sym_mutable] = ACTIONS(2385), - [anon_sym_constexpr] = ACTIONS(2385), - [anon_sym_constinit] = ACTIONS(2385), - [anon_sym_consteval] = ACTIONS(2385), - [anon_sym_signed] = ACTIONS(2385), - [anon_sym_unsigned] = ACTIONS(2385), - [anon_sym_long] = ACTIONS(2385), - [anon_sym_short] = ACTIONS(2385), - [sym_primitive_type] = ACTIONS(2385), - [anon_sym_enum] = ACTIONS(2385), - [anon_sym_class] = ACTIONS(2385), - [anon_sym_struct] = ACTIONS(2385), - [anon_sym_union] = ACTIONS(2385), - [anon_sym_if] = ACTIONS(2385), - [anon_sym_switch] = ACTIONS(2385), - [anon_sym_case] = ACTIONS(2385), - [anon_sym_default] = ACTIONS(2385), - [anon_sym_while] = ACTIONS(2385), - [anon_sym_do] = ACTIONS(2385), - [anon_sym_for] = ACTIONS(2385), - [anon_sym_return] = ACTIONS(2385), - [anon_sym_break] = ACTIONS(2385), - [anon_sym_continue] = ACTIONS(2385), - [anon_sym_goto] = ACTIONS(2385), - [anon_sym_not] = ACTIONS(2385), - [anon_sym_compl] = ACTIONS(2385), - [anon_sym_DASH_DASH] = ACTIONS(2387), - [anon_sym_PLUS_PLUS] = ACTIONS(2387), - [anon_sym_sizeof] = ACTIONS(2385), - [sym_number_literal] = ACTIONS(2387), - [anon_sym_L_SQUOTE] = ACTIONS(2387), - [anon_sym_u_SQUOTE] = ACTIONS(2387), - [anon_sym_U_SQUOTE] = ACTIONS(2387), - [anon_sym_u8_SQUOTE] = ACTIONS(2387), - [anon_sym_SQUOTE] = ACTIONS(2387), - [anon_sym_L_DQUOTE] = ACTIONS(2387), - [anon_sym_u_DQUOTE] = ACTIONS(2387), - [anon_sym_U_DQUOTE] = ACTIONS(2387), - [anon_sym_u8_DQUOTE] = ACTIONS(2387), - [anon_sym_DQUOTE] = ACTIONS(2387), - [sym_true] = ACTIONS(2385), - [sym_false] = ACTIONS(2385), - [sym_null] = ACTIONS(2385), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2385), - [anon_sym_decltype] = ACTIONS(2385), - [anon_sym_virtual] = ACTIONS(2385), - [anon_sym_explicit] = ACTIONS(2385), - [anon_sym_typename] = ACTIONS(2385), - [anon_sym_template] = ACTIONS(2385), - [anon_sym_operator] = ACTIONS(2385), - [anon_sym_try] = ACTIONS(2385), - [anon_sym_delete] = ACTIONS(2385), - [anon_sym_throw] = ACTIONS(2385), - [anon_sym_namespace] = ACTIONS(2385), - [anon_sym_using] = ACTIONS(2385), - [anon_sym_static_assert] = ACTIONS(2385), - [anon_sym_concept] = ACTIONS(2385), - [anon_sym_co_return] = ACTIONS(2385), - [anon_sym_co_yield] = ACTIONS(2385), - [anon_sym_catch] = ACTIONS(2402), - [anon_sym_R_DQUOTE] = ACTIONS(2387), - [anon_sym_LR_DQUOTE] = ACTIONS(2387), - [anon_sym_uR_DQUOTE] = ACTIONS(2387), - [anon_sym_UR_DQUOTE] = ACTIONS(2387), - [anon_sym_u8R_DQUOTE] = ACTIONS(2387), - [anon_sym_co_await] = ACTIONS(2385), - [anon_sym_new] = ACTIONS(2385), - [anon_sym_requires] = ACTIONS(2385), - [sym_this] = ACTIONS(2385), - [sym_nullptr] = ACTIONS(2385), + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token2] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [aux_sym_preproc_else_token1] = ACTIONS(3048), + [aux_sym_preproc_elif_token1] = ACTIONS(3048), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, [456] = { - [sym_identifier] = ACTIONS(2614), - [aux_sym_preproc_include_token1] = ACTIONS(2614), - [aux_sym_preproc_def_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token2] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2614), - [aux_sym_preproc_else_token1] = ACTIONS(2614), - [aux_sym_preproc_elif_token1] = ACTIONS(2614), - [sym_preproc_directive] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP_AMP] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2614), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym___based] = ACTIONS(2614), - [anon_sym___cdecl] = ACTIONS(2614), - [anon_sym___clrcall] = ACTIONS(2614), - [anon_sym___stdcall] = ACTIONS(2614), - [anon_sym___fastcall] = ACTIONS(2614), - [anon_sym___thiscall] = ACTIONS(2614), - [anon_sym___vectorcall] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_case] = ACTIONS(2614), - [anon_sym_default] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_explicit] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_operator] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_namespace] = ACTIONS(2614), - [anon_sym_using] = ACTIONS(2614), - [anon_sym_static_assert] = ACTIONS(2614), - [anon_sym_concept] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token2] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [aux_sym_preproc_else_token1] = ACTIONS(3028), + [aux_sym_preproc_elif_token1] = ACTIONS(3028), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, [457] = { - [sym_identifier] = ACTIONS(2638), - [aux_sym_preproc_include_token1] = ACTIONS(2638), - [aux_sym_preproc_def_token1] = ACTIONS(2638), - [aux_sym_preproc_if_token1] = ACTIONS(2638), - [aux_sym_preproc_if_token2] = ACTIONS(2638), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2638), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2638), - [aux_sym_preproc_else_token1] = ACTIONS(2638), - [aux_sym_preproc_elif_token1] = ACTIONS(2638), - [sym_preproc_directive] = ACTIONS(2638), - [anon_sym_LPAREN2] = ACTIONS(2640), - [anon_sym_BANG] = ACTIONS(2640), - [anon_sym_TILDE] = ACTIONS(2640), - [anon_sym_DASH] = ACTIONS(2638), - [anon_sym_PLUS] = ACTIONS(2638), - [anon_sym_STAR] = ACTIONS(2640), - [anon_sym_AMP_AMP] = ACTIONS(2640), - [anon_sym_AMP] = ACTIONS(2638), - [anon_sym_SEMI] = ACTIONS(2640), - [anon_sym_typedef] = ACTIONS(2638), - [anon_sym_extern] = ACTIONS(2638), - [anon_sym___attribute__] = ACTIONS(2638), - [anon_sym_COLON_COLON] = ACTIONS(2640), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2640), - [anon_sym___declspec] = ACTIONS(2638), - [anon_sym___based] = ACTIONS(2638), - [anon_sym___cdecl] = ACTIONS(2638), - [anon_sym___clrcall] = ACTIONS(2638), - [anon_sym___stdcall] = ACTIONS(2638), - [anon_sym___fastcall] = ACTIONS(2638), - [anon_sym___thiscall] = ACTIONS(2638), - [anon_sym___vectorcall] = ACTIONS(2638), - [anon_sym_LBRACE] = ACTIONS(2640), - [anon_sym_LBRACK] = ACTIONS(2638), - [anon_sym_static] = ACTIONS(2638), - [anon_sym_register] = ACTIONS(2638), - [anon_sym_inline] = ACTIONS(2638), - [anon_sym_thread_local] = ACTIONS(2638), - [anon_sym_const] = ACTIONS(2638), - [anon_sym_volatile] = ACTIONS(2638), - [anon_sym_restrict] = ACTIONS(2638), - [anon_sym__Atomic] = ACTIONS(2638), - [anon_sym_mutable] = ACTIONS(2638), - [anon_sym_constexpr] = ACTIONS(2638), - [anon_sym_constinit] = ACTIONS(2638), - [anon_sym_consteval] = ACTIONS(2638), - [anon_sym_signed] = ACTIONS(2638), - [anon_sym_unsigned] = ACTIONS(2638), - [anon_sym_long] = ACTIONS(2638), - [anon_sym_short] = ACTIONS(2638), - [sym_primitive_type] = ACTIONS(2638), - [anon_sym_enum] = ACTIONS(2638), - [anon_sym_class] = ACTIONS(2638), - [anon_sym_struct] = ACTIONS(2638), - [anon_sym_union] = ACTIONS(2638), - [anon_sym_if] = ACTIONS(2638), - [anon_sym_else] = ACTIONS(2638), - [anon_sym_switch] = ACTIONS(2638), - [anon_sym_case] = ACTIONS(2638), - [anon_sym_default] = ACTIONS(2638), - [anon_sym_while] = ACTIONS(2638), - [anon_sym_do] = ACTIONS(2638), - [anon_sym_for] = ACTIONS(2638), - [anon_sym_return] = ACTIONS(2638), - [anon_sym_break] = ACTIONS(2638), - [anon_sym_continue] = ACTIONS(2638), - [anon_sym_goto] = ACTIONS(2638), - [anon_sym_not] = ACTIONS(2638), - [anon_sym_compl] = ACTIONS(2638), - [anon_sym_DASH_DASH] = ACTIONS(2640), - [anon_sym_PLUS_PLUS] = ACTIONS(2640), - [anon_sym_sizeof] = ACTIONS(2638), - [sym_number_literal] = ACTIONS(2640), - [anon_sym_L_SQUOTE] = ACTIONS(2640), - [anon_sym_u_SQUOTE] = ACTIONS(2640), - [anon_sym_U_SQUOTE] = ACTIONS(2640), - [anon_sym_u8_SQUOTE] = ACTIONS(2640), - [anon_sym_SQUOTE] = ACTIONS(2640), - [anon_sym_L_DQUOTE] = ACTIONS(2640), - [anon_sym_u_DQUOTE] = ACTIONS(2640), - [anon_sym_U_DQUOTE] = ACTIONS(2640), - [anon_sym_u8_DQUOTE] = ACTIONS(2640), - [anon_sym_DQUOTE] = ACTIONS(2640), - [sym_true] = ACTIONS(2638), - [sym_false] = ACTIONS(2638), - [sym_null] = ACTIONS(2638), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2638), - [anon_sym_decltype] = ACTIONS(2638), - [anon_sym_virtual] = ACTIONS(2638), - [anon_sym_explicit] = ACTIONS(2638), - [anon_sym_typename] = ACTIONS(2638), - [anon_sym_template] = ACTIONS(2638), - [anon_sym_operator] = ACTIONS(2638), - [anon_sym_try] = ACTIONS(2638), - [anon_sym_delete] = ACTIONS(2638), - [anon_sym_throw] = ACTIONS(2638), - [anon_sym_namespace] = ACTIONS(2638), - [anon_sym_using] = ACTIONS(2638), - [anon_sym_static_assert] = ACTIONS(2638), - [anon_sym_concept] = ACTIONS(2638), - [anon_sym_co_return] = ACTIONS(2638), - [anon_sym_co_yield] = ACTIONS(2638), - [anon_sym_R_DQUOTE] = ACTIONS(2640), - [anon_sym_LR_DQUOTE] = ACTIONS(2640), - [anon_sym_uR_DQUOTE] = ACTIONS(2640), - [anon_sym_UR_DQUOTE] = ACTIONS(2640), - [anon_sym_u8R_DQUOTE] = ACTIONS(2640), - [anon_sym_co_await] = ACTIONS(2638), - [anon_sym_new] = ACTIONS(2638), - [anon_sym_requires] = ACTIONS(2638), - [sym_this] = ACTIONS(2638), - [sym_nullptr] = ACTIONS(2638), + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token2] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [aux_sym_preproc_else_token1] = ACTIONS(3028), + [aux_sym_preproc_elif_token1] = ACTIONS(3028), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, [458] = { - [sym_identifier] = ACTIONS(2614), - [aux_sym_preproc_include_token1] = ACTIONS(2614), - [aux_sym_preproc_def_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token2] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2614), - [aux_sym_preproc_else_token1] = ACTIONS(2614), - [aux_sym_preproc_elif_token1] = ACTIONS(2614), - [sym_preproc_directive] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP_AMP] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2614), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym___based] = ACTIONS(2614), - [anon_sym___cdecl] = ACTIONS(2614), - [anon_sym___clrcall] = ACTIONS(2614), - [anon_sym___stdcall] = ACTIONS(2614), - [anon_sym___fastcall] = ACTIONS(2614), - [anon_sym___thiscall] = ACTIONS(2614), - [anon_sym___vectorcall] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_case] = ACTIONS(2614), - [anon_sym_default] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_explicit] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_operator] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_namespace] = ACTIONS(2614), - [anon_sym_using] = ACTIONS(2614), - [anon_sym_static_assert] = ACTIONS(2614), - [anon_sym_concept] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token2] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [aux_sym_preproc_else_token1] = ACTIONS(3028), + [aux_sym_preproc_elif_token1] = ACTIONS(3028), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, [459] = { - [sym_identifier] = ACTIONS(2614), - [aux_sym_preproc_include_token1] = ACTIONS(2614), - [aux_sym_preproc_def_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token2] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2614), - [aux_sym_preproc_else_token1] = ACTIONS(2614), - [aux_sym_preproc_elif_token1] = ACTIONS(2614), - [sym_preproc_directive] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP_AMP] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2614), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym___based] = ACTIONS(2614), - [anon_sym___cdecl] = ACTIONS(2614), - [anon_sym___clrcall] = ACTIONS(2614), - [anon_sym___stdcall] = ACTIONS(2614), - [anon_sym___fastcall] = ACTIONS(2614), - [anon_sym___thiscall] = ACTIONS(2614), - [anon_sym___vectorcall] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_case] = ACTIONS(2614), - [anon_sym_default] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_explicit] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_operator] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_namespace] = ACTIONS(2614), - [anon_sym_using] = ACTIONS(2614), - [anon_sym_static_assert] = ACTIONS(2614), - [anon_sym_concept] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token2] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [aux_sym_preproc_else_token1] = ACTIONS(3048), + [aux_sym_preproc_elif_token1] = ACTIONS(3048), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, [460] = { - [sym_identifier] = ACTIONS(2614), - [aux_sym_preproc_include_token1] = ACTIONS(2614), - [aux_sym_preproc_def_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token2] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2614), - [aux_sym_preproc_else_token1] = ACTIONS(2614), - [aux_sym_preproc_elif_token1] = ACTIONS(2614), - [sym_preproc_directive] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP_AMP] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2614), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym___based] = ACTIONS(2614), - [anon_sym___cdecl] = ACTIONS(2614), - [anon_sym___clrcall] = ACTIONS(2614), - [anon_sym___stdcall] = ACTIONS(2614), - [anon_sym___fastcall] = ACTIONS(2614), - [anon_sym___thiscall] = ACTIONS(2614), - [anon_sym___vectorcall] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_case] = ACTIONS(2614), - [anon_sym_default] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_explicit] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_operator] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_namespace] = ACTIONS(2614), - [anon_sym_using] = ACTIONS(2614), - [anon_sym_static_assert] = ACTIONS(2614), - [anon_sym_concept] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token2] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [aux_sym_preproc_else_token1] = ACTIONS(3028), + [aux_sym_preproc_elif_token1] = ACTIONS(3028), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, [461] = { - [sym_identifier] = ACTIONS(2614), - [aux_sym_preproc_include_token1] = ACTIONS(2614), - [aux_sym_preproc_def_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token2] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2614), - [aux_sym_preproc_else_token1] = ACTIONS(2614), - [aux_sym_preproc_elif_token1] = ACTIONS(2614), - [sym_preproc_directive] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP_AMP] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2614), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym___based] = ACTIONS(2614), - [anon_sym___cdecl] = ACTIONS(2614), - [anon_sym___clrcall] = ACTIONS(2614), - [anon_sym___stdcall] = ACTIONS(2614), - [anon_sym___fastcall] = ACTIONS(2614), - [anon_sym___thiscall] = ACTIONS(2614), - [anon_sym___vectorcall] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_case] = ACTIONS(2614), - [anon_sym_default] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_explicit] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_operator] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_namespace] = ACTIONS(2614), - [anon_sym_using] = ACTIONS(2614), - [anon_sym_static_assert] = ACTIONS(2614), - [anon_sym_concept] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token2] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [aux_sym_preproc_else_token1] = ACTIONS(3028), + [aux_sym_preproc_elif_token1] = ACTIONS(3028), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, [462] = { - [sym_identifier] = ACTIONS(2642), - [aux_sym_preproc_include_token1] = ACTIONS(2642), - [aux_sym_preproc_def_token1] = ACTIONS(2642), - [aux_sym_preproc_if_token1] = ACTIONS(2642), - [aux_sym_preproc_if_token2] = ACTIONS(2642), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2642), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2642), - [aux_sym_preproc_else_token1] = ACTIONS(2642), - [aux_sym_preproc_elif_token1] = ACTIONS(2642), - [sym_preproc_directive] = ACTIONS(2642), - [anon_sym_LPAREN2] = ACTIONS(2644), - [anon_sym_BANG] = ACTIONS(2644), - [anon_sym_TILDE] = ACTIONS(2644), - [anon_sym_DASH] = ACTIONS(2642), - [anon_sym_PLUS] = ACTIONS(2642), - [anon_sym_STAR] = ACTIONS(2644), - [anon_sym_AMP_AMP] = ACTIONS(2644), - [anon_sym_AMP] = ACTIONS(2642), - [anon_sym_SEMI] = ACTIONS(2644), - [anon_sym_typedef] = ACTIONS(2642), - [anon_sym_extern] = ACTIONS(2642), - [anon_sym___attribute__] = ACTIONS(2642), - [anon_sym_COLON_COLON] = ACTIONS(2644), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2644), - [anon_sym___declspec] = ACTIONS(2642), - [anon_sym___based] = ACTIONS(2642), - [anon_sym___cdecl] = ACTIONS(2642), - [anon_sym___clrcall] = ACTIONS(2642), - [anon_sym___stdcall] = ACTIONS(2642), - [anon_sym___fastcall] = ACTIONS(2642), - [anon_sym___thiscall] = ACTIONS(2642), - [anon_sym___vectorcall] = ACTIONS(2642), - [anon_sym_LBRACE] = ACTIONS(2644), - [anon_sym_LBRACK] = ACTIONS(2642), - [anon_sym_static] = ACTIONS(2642), - [anon_sym_register] = ACTIONS(2642), - [anon_sym_inline] = ACTIONS(2642), - [anon_sym_thread_local] = ACTIONS(2642), - [anon_sym_const] = ACTIONS(2642), - [anon_sym_volatile] = ACTIONS(2642), - [anon_sym_restrict] = ACTIONS(2642), - [anon_sym__Atomic] = ACTIONS(2642), - [anon_sym_mutable] = ACTIONS(2642), - [anon_sym_constexpr] = ACTIONS(2642), - [anon_sym_constinit] = ACTIONS(2642), - [anon_sym_consteval] = ACTIONS(2642), - [anon_sym_signed] = ACTIONS(2642), - [anon_sym_unsigned] = ACTIONS(2642), - [anon_sym_long] = ACTIONS(2642), - [anon_sym_short] = ACTIONS(2642), - [sym_primitive_type] = ACTIONS(2642), - [anon_sym_enum] = ACTIONS(2642), - [anon_sym_class] = ACTIONS(2642), - [anon_sym_struct] = ACTIONS(2642), - [anon_sym_union] = ACTIONS(2642), - [anon_sym_if] = ACTIONS(2642), - [anon_sym_else] = ACTIONS(2642), - [anon_sym_switch] = ACTIONS(2642), - [anon_sym_case] = ACTIONS(2642), - [anon_sym_default] = ACTIONS(2642), - [anon_sym_while] = ACTIONS(2642), - [anon_sym_do] = ACTIONS(2642), - [anon_sym_for] = ACTIONS(2642), - [anon_sym_return] = ACTIONS(2642), - [anon_sym_break] = ACTIONS(2642), - [anon_sym_continue] = ACTIONS(2642), - [anon_sym_goto] = ACTIONS(2642), - [anon_sym_not] = ACTIONS(2642), - [anon_sym_compl] = ACTIONS(2642), - [anon_sym_DASH_DASH] = ACTIONS(2644), - [anon_sym_PLUS_PLUS] = ACTIONS(2644), - [anon_sym_sizeof] = ACTIONS(2642), - [sym_number_literal] = ACTIONS(2644), - [anon_sym_L_SQUOTE] = ACTIONS(2644), - [anon_sym_u_SQUOTE] = ACTIONS(2644), - [anon_sym_U_SQUOTE] = ACTIONS(2644), - [anon_sym_u8_SQUOTE] = ACTIONS(2644), - [anon_sym_SQUOTE] = ACTIONS(2644), - [anon_sym_L_DQUOTE] = ACTIONS(2644), - [anon_sym_u_DQUOTE] = ACTIONS(2644), - [anon_sym_U_DQUOTE] = ACTIONS(2644), - [anon_sym_u8_DQUOTE] = ACTIONS(2644), - [anon_sym_DQUOTE] = ACTIONS(2644), - [sym_true] = ACTIONS(2642), - [sym_false] = ACTIONS(2642), - [sym_null] = ACTIONS(2642), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2642), - [anon_sym_decltype] = ACTIONS(2642), - [anon_sym_virtual] = ACTIONS(2642), - [anon_sym_explicit] = ACTIONS(2642), - [anon_sym_typename] = ACTIONS(2642), - [anon_sym_template] = ACTIONS(2642), - [anon_sym_operator] = ACTIONS(2642), - [anon_sym_try] = ACTIONS(2642), - [anon_sym_delete] = ACTIONS(2642), - [anon_sym_throw] = ACTIONS(2642), - [anon_sym_namespace] = ACTIONS(2642), - [anon_sym_using] = ACTIONS(2642), - [anon_sym_static_assert] = ACTIONS(2642), - [anon_sym_concept] = ACTIONS(2642), - [anon_sym_co_return] = ACTIONS(2642), - [anon_sym_co_yield] = ACTIONS(2642), - [anon_sym_R_DQUOTE] = ACTIONS(2644), - [anon_sym_LR_DQUOTE] = ACTIONS(2644), - [anon_sym_uR_DQUOTE] = ACTIONS(2644), - [anon_sym_UR_DQUOTE] = ACTIONS(2644), - [anon_sym_u8R_DQUOTE] = ACTIONS(2644), - [anon_sym_co_await] = ACTIONS(2642), - [anon_sym_new] = ACTIONS(2642), - [anon_sym_requires] = ACTIONS(2642), - [sym_this] = ACTIONS(2642), - [sym_nullptr] = ACTIONS(2642), + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token2] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [aux_sym_preproc_else_token1] = ACTIONS(3028), + [aux_sym_preproc_elif_token1] = ACTIONS(3028), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, [463] = { - [sym_identifier] = ACTIONS(2614), - [aux_sym_preproc_include_token1] = ACTIONS(2614), - [aux_sym_preproc_def_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token2] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2614), - [aux_sym_preproc_else_token1] = ACTIONS(2614), - [aux_sym_preproc_elif_token1] = ACTIONS(2614), - [sym_preproc_directive] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP_AMP] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2614), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym___based] = ACTIONS(2614), - [anon_sym___cdecl] = ACTIONS(2614), - [anon_sym___clrcall] = ACTIONS(2614), - [anon_sym___stdcall] = ACTIONS(2614), - [anon_sym___fastcall] = ACTIONS(2614), - [anon_sym___thiscall] = ACTIONS(2614), - [anon_sym___vectorcall] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_case] = ACTIONS(2614), - [anon_sym_default] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_explicit] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_operator] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_namespace] = ACTIONS(2614), - [anon_sym_using] = ACTIONS(2614), - [anon_sym_static_assert] = ACTIONS(2614), - [anon_sym_concept] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token2] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [aux_sym_preproc_else_token1] = ACTIONS(3028), + [aux_sym_preproc_elif_token1] = ACTIONS(3028), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, [464] = { - [sym_identifier] = ACTIONS(2614), - [aux_sym_preproc_include_token1] = ACTIONS(2614), - [aux_sym_preproc_def_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token2] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2614), - [aux_sym_preproc_else_token1] = ACTIONS(2614), - [aux_sym_preproc_elif_token1] = ACTIONS(2614), - [sym_preproc_directive] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP_AMP] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2614), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym___based] = ACTIONS(2614), - [anon_sym___cdecl] = ACTIONS(2614), - [anon_sym___clrcall] = ACTIONS(2614), - [anon_sym___stdcall] = ACTIONS(2614), - [anon_sym___fastcall] = ACTIONS(2614), - [anon_sym___thiscall] = ACTIONS(2614), - [anon_sym___vectorcall] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_case] = ACTIONS(2614), - [anon_sym_default] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_explicit] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_operator] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_namespace] = ACTIONS(2614), - [anon_sym_using] = ACTIONS(2614), - [anon_sym_static_assert] = ACTIONS(2614), - [anon_sym_concept] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), + [sym_identifier] = ACTIONS(3085), + [aux_sym_preproc_include_token1] = ACTIONS(3085), + [aux_sym_preproc_def_token1] = ACTIONS(3085), + [aux_sym_preproc_if_token1] = ACTIONS(3085), + [aux_sym_preproc_if_token2] = ACTIONS(3085), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3085), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3085), + [aux_sym_preproc_else_token1] = ACTIONS(3085), + [aux_sym_preproc_elif_token1] = ACTIONS(3085), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3085), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3085), + [sym_preproc_directive] = ACTIONS(3085), + [anon_sym_LPAREN2] = ACTIONS(3087), + [anon_sym_BANG] = ACTIONS(3087), + [anon_sym_TILDE] = ACTIONS(3087), + [anon_sym_DASH] = ACTIONS(3085), + [anon_sym_PLUS] = ACTIONS(3085), + [anon_sym_STAR] = ACTIONS(3087), + [anon_sym_AMP_AMP] = ACTIONS(3087), + [anon_sym_AMP] = ACTIONS(3085), + [anon_sym_SEMI] = ACTIONS(3087), + [anon_sym_typedef] = ACTIONS(3085), + [anon_sym_extern] = ACTIONS(3085), + [anon_sym___attribute__] = ACTIONS(3085), + [anon_sym_COLON_COLON] = ACTIONS(3087), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3087), + [anon_sym___declspec] = ACTIONS(3085), + [anon_sym___based] = ACTIONS(3085), + [anon_sym___cdecl] = ACTIONS(3085), + [anon_sym___clrcall] = ACTIONS(3085), + [anon_sym___stdcall] = ACTIONS(3085), + [anon_sym___fastcall] = ACTIONS(3085), + [anon_sym___thiscall] = ACTIONS(3085), + [anon_sym___vectorcall] = ACTIONS(3085), + [anon_sym_LBRACE] = ACTIONS(3087), + [anon_sym_LBRACK] = ACTIONS(3085), + [anon_sym_static] = ACTIONS(3085), + [anon_sym_register] = ACTIONS(3085), + [anon_sym_inline] = ACTIONS(3085), + [anon_sym_thread_local] = ACTIONS(3085), + [anon_sym_const] = ACTIONS(3085), + [anon_sym_constexpr] = ACTIONS(3085), + [anon_sym_volatile] = ACTIONS(3085), + [anon_sym_restrict] = ACTIONS(3085), + [anon_sym___restrict__] = ACTIONS(3085), + [anon_sym__Atomic] = ACTIONS(3085), + [anon_sym__Noreturn] = ACTIONS(3085), + [anon_sym_noreturn] = ACTIONS(3085), + [anon_sym_mutable] = ACTIONS(3085), + [anon_sym_constinit] = ACTIONS(3085), + [anon_sym_consteval] = ACTIONS(3085), + [anon_sym_signed] = ACTIONS(3085), + [anon_sym_unsigned] = ACTIONS(3085), + [anon_sym_long] = ACTIONS(3085), + [anon_sym_short] = ACTIONS(3085), + [sym_primitive_type] = ACTIONS(3085), + [anon_sym_enum] = ACTIONS(3085), + [anon_sym_class] = ACTIONS(3085), + [anon_sym_struct] = ACTIONS(3085), + [anon_sym_union] = ACTIONS(3085), + [anon_sym_if] = ACTIONS(3085), + [anon_sym_else] = ACTIONS(3085), + [anon_sym_switch] = ACTIONS(3085), + [anon_sym_case] = ACTIONS(3085), + [anon_sym_default] = ACTIONS(3085), + [anon_sym_while] = ACTIONS(3085), + [anon_sym_do] = ACTIONS(3085), + [anon_sym_for] = ACTIONS(3085), + [anon_sym_return] = ACTIONS(3085), + [anon_sym_break] = ACTIONS(3085), + [anon_sym_continue] = ACTIONS(3085), + [anon_sym_goto] = ACTIONS(3085), + [anon_sym_not] = ACTIONS(3085), + [anon_sym_compl] = ACTIONS(3085), + [anon_sym_DASH_DASH] = ACTIONS(3087), + [anon_sym_PLUS_PLUS] = ACTIONS(3087), + [anon_sym_sizeof] = ACTIONS(3085), + [anon_sym_offsetof] = ACTIONS(3085), + [anon_sym__Generic] = ACTIONS(3085), + [anon_sym_asm] = ACTIONS(3085), + [anon_sym___asm__] = ACTIONS(3085), + [sym_number_literal] = ACTIONS(3087), + [anon_sym_L_SQUOTE] = ACTIONS(3087), + [anon_sym_u_SQUOTE] = ACTIONS(3087), + [anon_sym_U_SQUOTE] = ACTIONS(3087), + [anon_sym_u8_SQUOTE] = ACTIONS(3087), + [anon_sym_SQUOTE] = ACTIONS(3087), + [anon_sym_L_DQUOTE] = ACTIONS(3087), + [anon_sym_u_DQUOTE] = ACTIONS(3087), + [anon_sym_U_DQUOTE] = ACTIONS(3087), + [anon_sym_u8_DQUOTE] = ACTIONS(3087), + [anon_sym_DQUOTE] = ACTIONS(3087), + [sym_true] = ACTIONS(3085), + [sym_false] = ACTIONS(3085), + [anon_sym_NULL] = ACTIONS(3085), + [anon_sym_nullptr] = ACTIONS(3085), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3085), + [anon_sym_decltype] = ACTIONS(3085), + [anon_sym_virtual] = ACTIONS(3085), + [anon_sym_explicit] = ACTIONS(3085), + [anon_sym_typename] = ACTIONS(3085), + [anon_sym_template] = ACTIONS(3085), + [anon_sym_operator] = ACTIONS(3085), + [anon_sym_try] = ACTIONS(3085), + [anon_sym_delete] = ACTIONS(3085), + [anon_sym_throw] = ACTIONS(3085), + [anon_sym_namespace] = ACTIONS(3085), + [anon_sym_using] = ACTIONS(3085), + [anon_sym_static_assert] = ACTIONS(3085), + [anon_sym_concept] = ACTIONS(3085), + [anon_sym_co_return] = ACTIONS(3085), + [anon_sym_co_yield] = ACTIONS(3085), + [anon_sym_R_DQUOTE] = ACTIONS(3087), + [anon_sym_LR_DQUOTE] = ACTIONS(3087), + [anon_sym_uR_DQUOTE] = ACTIONS(3087), + [anon_sym_UR_DQUOTE] = ACTIONS(3087), + [anon_sym_u8R_DQUOTE] = ACTIONS(3087), + [anon_sym_co_await] = ACTIONS(3085), + [anon_sym_new] = ACTIONS(3085), + [anon_sym_requires] = ACTIONS(3085), + [sym_this] = ACTIONS(3085), }, [465] = { - [sym_identifier] = ACTIONS(2614), - [aux_sym_preproc_include_token1] = ACTIONS(2614), - [aux_sym_preproc_def_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token2] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2614), - [aux_sym_preproc_else_token1] = ACTIONS(2614), - [aux_sym_preproc_elif_token1] = ACTIONS(2614), - [sym_preproc_directive] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP_AMP] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2614), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym___based] = ACTIONS(2614), - [anon_sym___cdecl] = ACTIONS(2614), - [anon_sym___clrcall] = ACTIONS(2614), - [anon_sym___stdcall] = ACTIONS(2614), - [anon_sym___fastcall] = ACTIONS(2614), - [anon_sym___thiscall] = ACTIONS(2614), - [anon_sym___vectorcall] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_case] = ACTIONS(2614), - [anon_sym_default] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_explicit] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_operator] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_namespace] = ACTIONS(2614), - [anon_sym_using] = ACTIONS(2614), - [anon_sym_static_assert] = ACTIONS(2614), - [anon_sym_concept] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token2] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [aux_sym_preproc_else_token1] = ACTIONS(3028), + [aux_sym_preproc_elif_token1] = ACTIONS(3028), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, [466] = { - [sym_identifier] = ACTIONS(2614), - [aux_sym_preproc_include_token1] = ACTIONS(2614), - [aux_sym_preproc_def_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token2] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2614), - [aux_sym_preproc_else_token1] = ACTIONS(2614), - [aux_sym_preproc_elif_token1] = ACTIONS(2614), - [sym_preproc_directive] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP_AMP] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2614), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym___based] = ACTIONS(2614), - [anon_sym___cdecl] = ACTIONS(2614), - [anon_sym___clrcall] = ACTIONS(2614), - [anon_sym___stdcall] = ACTIONS(2614), - [anon_sym___fastcall] = ACTIONS(2614), - [anon_sym___thiscall] = ACTIONS(2614), - [anon_sym___vectorcall] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_case] = ACTIONS(2614), - [anon_sym_default] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_explicit] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_operator] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_namespace] = ACTIONS(2614), - [anon_sym_using] = ACTIONS(2614), - [anon_sym_static_assert] = ACTIONS(2614), - [anon_sym_concept] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token2] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [aux_sym_preproc_else_token1] = ACTIONS(3028), + [aux_sym_preproc_elif_token1] = ACTIONS(3028), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, [467] = { - [sym_identifier] = ACTIONS(2614), - [aux_sym_preproc_include_token1] = ACTIONS(2614), - [aux_sym_preproc_def_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token2] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2614), - [aux_sym_preproc_else_token1] = ACTIONS(2614), - [aux_sym_preproc_elif_token1] = ACTIONS(2614), - [sym_preproc_directive] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP_AMP] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2614), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym___based] = ACTIONS(2614), - [anon_sym___cdecl] = ACTIONS(2614), - [anon_sym___clrcall] = ACTIONS(2614), - [anon_sym___stdcall] = ACTIONS(2614), - [anon_sym___fastcall] = ACTIONS(2614), - [anon_sym___thiscall] = ACTIONS(2614), - [anon_sym___vectorcall] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_case] = ACTIONS(2614), - [anon_sym_default] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_explicit] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_operator] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_namespace] = ACTIONS(2614), - [anon_sym_using] = ACTIONS(2614), - [anon_sym_static_assert] = ACTIONS(2614), - [anon_sym_concept] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), + [sym_identifier] = ACTIONS(3085), + [aux_sym_preproc_include_token1] = ACTIONS(3085), + [aux_sym_preproc_def_token1] = ACTIONS(3085), + [aux_sym_preproc_if_token1] = ACTIONS(3085), + [aux_sym_preproc_if_token2] = ACTIONS(3085), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3085), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3085), + [aux_sym_preproc_else_token1] = ACTIONS(3085), + [aux_sym_preproc_elif_token1] = ACTIONS(3085), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3085), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3085), + [sym_preproc_directive] = ACTIONS(3085), + [anon_sym_LPAREN2] = ACTIONS(3087), + [anon_sym_BANG] = ACTIONS(3087), + [anon_sym_TILDE] = ACTIONS(3087), + [anon_sym_DASH] = ACTIONS(3085), + [anon_sym_PLUS] = ACTIONS(3085), + [anon_sym_STAR] = ACTIONS(3087), + [anon_sym_AMP_AMP] = ACTIONS(3087), + [anon_sym_AMP] = ACTIONS(3085), + [anon_sym_SEMI] = ACTIONS(3087), + [anon_sym_typedef] = ACTIONS(3085), + [anon_sym_extern] = ACTIONS(3085), + [anon_sym___attribute__] = ACTIONS(3085), + [anon_sym_COLON_COLON] = ACTIONS(3087), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3087), + [anon_sym___declspec] = ACTIONS(3085), + [anon_sym___based] = ACTIONS(3085), + [anon_sym___cdecl] = ACTIONS(3085), + [anon_sym___clrcall] = ACTIONS(3085), + [anon_sym___stdcall] = ACTIONS(3085), + [anon_sym___fastcall] = ACTIONS(3085), + [anon_sym___thiscall] = ACTIONS(3085), + [anon_sym___vectorcall] = ACTIONS(3085), + [anon_sym_LBRACE] = ACTIONS(3087), + [anon_sym_LBRACK] = ACTIONS(3085), + [anon_sym_static] = ACTIONS(3085), + [anon_sym_register] = ACTIONS(3085), + [anon_sym_inline] = ACTIONS(3085), + [anon_sym_thread_local] = ACTIONS(3085), + [anon_sym_const] = ACTIONS(3085), + [anon_sym_constexpr] = ACTIONS(3085), + [anon_sym_volatile] = ACTIONS(3085), + [anon_sym_restrict] = ACTIONS(3085), + [anon_sym___restrict__] = ACTIONS(3085), + [anon_sym__Atomic] = ACTIONS(3085), + [anon_sym__Noreturn] = ACTIONS(3085), + [anon_sym_noreturn] = ACTIONS(3085), + [anon_sym_mutable] = ACTIONS(3085), + [anon_sym_constinit] = ACTIONS(3085), + [anon_sym_consteval] = ACTIONS(3085), + [anon_sym_signed] = ACTIONS(3085), + [anon_sym_unsigned] = ACTIONS(3085), + [anon_sym_long] = ACTIONS(3085), + [anon_sym_short] = ACTIONS(3085), + [sym_primitive_type] = ACTIONS(3085), + [anon_sym_enum] = ACTIONS(3085), + [anon_sym_class] = ACTIONS(3085), + [anon_sym_struct] = ACTIONS(3085), + [anon_sym_union] = ACTIONS(3085), + [anon_sym_if] = ACTIONS(3085), + [anon_sym_else] = ACTIONS(3085), + [anon_sym_switch] = ACTIONS(3085), + [anon_sym_case] = ACTIONS(3085), + [anon_sym_default] = ACTIONS(3085), + [anon_sym_while] = ACTIONS(3085), + [anon_sym_do] = ACTIONS(3085), + [anon_sym_for] = ACTIONS(3085), + [anon_sym_return] = ACTIONS(3085), + [anon_sym_break] = ACTIONS(3085), + [anon_sym_continue] = ACTIONS(3085), + [anon_sym_goto] = ACTIONS(3085), + [anon_sym_not] = ACTIONS(3085), + [anon_sym_compl] = ACTIONS(3085), + [anon_sym_DASH_DASH] = ACTIONS(3087), + [anon_sym_PLUS_PLUS] = ACTIONS(3087), + [anon_sym_sizeof] = ACTIONS(3085), + [anon_sym_offsetof] = ACTIONS(3085), + [anon_sym__Generic] = ACTIONS(3085), + [anon_sym_asm] = ACTIONS(3085), + [anon_sym___asm__] = ACTIONS(3085), + [sym_number_literal] = ACTIONS(3087), + [anon_sym_L_SQUOTE] = ACTIONS(3087), + [anon_sym_u_SQUOTE] = ACTIONS(3087), + [anon_sym_U_SQUOTE] = ACTIONS(3087), + [anon_sym_u8_SQUOTE] = ACTIONS(3087), + [anon_sym_SQUOTE] = ACTIONS(3087), + [anon_sym_L_DQUOTE] = ACTIONS(3087), + [anon_sym_u_DQUOTE] = ACTIONS(3087), + [anon_sym_U_DQUOTE] = ACTIONS(3087), + [anon_sym_u8_DQUOTE] = ACTIONS(3087), + [anon_sym_DQUOTE] = ACTIONS(3087), + [sym_true] = ACTIONS(3085), + [sym_false] = ACTIONS(3085), + [anon_sym_NULL] = ACTIONS(3085), + [anon_sym_nullptr] = ACTIONS(3085), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3085), + [anon_sym_decltype] = ACTIONS(3085), + [anon_sym_virtual] = ACTIONS(3085), + [anon_sym_explicit] = ACTIONS(3085), + [anon_sym_typename] = ACTIONS(3085), + [anon_sym_template] = ACTIONS(3085), + [anon_sym_operator] = ACTIONS(3085), + [anon_sym_try] = ACTIONS(3085), + [anon_sym_delete] = ACTIONS(3085), + [anon_sym_throw] = ACTIONS(3085), + [anon_sym_namespace] = ACTIONS(3085), + [anon_sym_using] = ACTIONS(3085), + [anon_sym_static_assert] = ACTIONS(3085), + [anon_sym_concept] = ACTIONS(3085), + [anon_sym_co_return] = ACTIONS(3085), + [anon_sym_co_yield] = ACTIONS(3085), + [anon_sym_R_DQUOTE] = ACTIONS(3087), + [anon_sym_LR_DQUOTE] = ACTIONS(3087), + [anon_sym_uR_DQUOTE] = ACTIONS(3087), + [anon_sym_UR_DQUOTE] = ACTIONS(3087), + [anon_sym_u8R_DQUOTE] = ACTIONS(3087), + [anon_sym_co_await] = ACTIONS(3085), + [anon_sym_new] = ACTIONS(3085), + [anon_sym_requires] = ACTIONS(3085), + [sym_this] = ACTIONS(3085), }, [468] = { - [sym_identifier] = ACTIONS(2646), - [aux_sym_preproc_include_token1] = ACTIONS(2646), - [aux_sym_preproc_def_token1] = ACTIONS(2646), - [aux_sym_preproc_if_token1] = ACTIONS(2646), - [aux_sym_preproc_if_token2] = ACTIONS(2646), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2646), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2646), - [aux_sym_preproc_else_token1] = ACTIONS(2646), - [aux_sym_preproc_elif_token1] = ACTIONS(2646), - [sym_preproc_directive] = ACTIONS(2646), - [anon_sym_LPAREN2] = ACTIONS(2648), - [anon_sym_BANG] = ACTIONS(2648), - [anon_sym_TILDE] = ACTIONS(2648), - [anon_sym_DASH] = ACTIONS(2646), - [anon_sym_PLUS] = ACTIONS(2646), - [anon_sym_STAR] = ACTIONS(2648), - [anon_sym_AMP_AMP] = ACTIONS(2648), - [anon_sym_AMP] = ACTIONS(2646), - [anon_sym_SEMI] = ACTIONS(2648), - [anon_sym_typedef] = ACTIONS(2646), - [anon_sym_extern] = ACTIONS(2646), - [anon_sym___attribute__] = ACTIONS(2646), - [anon_sym_COLON_COLON] = ACTIONS(2648), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2648), - [anon_sym___declspec] = ACTIONS(2646), - [anon_sym___based] = ACTIONS(2646), - [anon_sym___cdecl] = ACTIONS(2646), - [anon_sym___clrcall] = ACTIONS(2646), - [anon_sym___stdcall] = ACTIONS(2646), - [anon_sym___fastcall] = ACTIONS(2646), - [anon_sym___thiscall] = ACTIONS(2646), - [anon_sym___vectorcall] = ACTIONS(2646), - [anon_sym_LBRACE] = ACTIONS(2648), - [anon_sym_LBRACK] = ACTIONS(2646), - [anon_sym_static] = ACTIONS(2646), - [anon_sym_register] = ACTIONS(2646), - [anon_sym_inline] = ACTIONS(2646), - [anon_sym_thread_local] = ACTIONS(2646), - [anon_sym_const] = ACTIONS(2646), - [anon_sym_volatile] = ACTIONS(2646), - [anon_sym_restrict] = ACTIONS(2646), - [anon_sym__Atomic] = ACTIONS(2646), - [anon_sym_mutable] = ACTIONS(2646), - [anon_sym_constexpr] = ACTIONS(2646), - [anon_sym_constinit] = ACTIONS(2646), - [anon_sym_consteval] = ACTIONS(2646), - [anon_sym_signed] = ACTIONS(2646), - [anon_sym_unsigned] = ACTIONS(2646), - [anon_sym_long] = ACTIONS(2646), - [anon_sym_short] = ACTIONS(2646), - [sym_primitive_type] = ACTIONS(2646), - [anon_sym_enum] = ACTIONS(2646), - [anon_sym_class] = ACTIONS(2646), - [anon_sym_struct] = ACTIONS(2646), - [anon_sym_union] = ACTIONS(2646), - [anon_sym_if] = ACTIONS(2646), - [anon_sym_else] = ACTIONS(2650), - [anon_sym_switch] = ACTIONS(2646), - [anon_sym_case] = ACTIONS(2646), - [anon_sym_default] = ACTIONS(2646), - [anon_sym_while] = ACTIONS(2646), - [anon_sym_do] = ACTIONS(2646), - [anon_sym_for] = ACTIONS(2646), - [anon_sym_return] = ACTIONS(2646), - [anon_sym_break] = ACTIONS(2646), - [anon_sym_continue] = ACTIONS(2646), - [anon_sym_goto] = ACTIONS(2646), - [anon_sym_not] = ACTIONS(2646), - [anon_sym_compl] = ACTIONS(2646), - [anon_sym_DASH_DASH] = ACTIONS(2648), - [anon_sym_PLUS_PLUS] = ACTIONS(2648), - [anon_sym_sizeof] = ACTIONS(2646), - [sym_number_literal] = ACTIONS(2648), - [anon_sym_L_SQUOTE] = ACTIONS(2648), - [anon_sym_u_SQUOTE] = ACTIONS(2648), - [anon_sym_U_SQUOTE] = ACTIONS(2648), - [anon_sym_u8_SQUOTE] = ACTIONS(2648), - [anon_sym_SQUOTE] = ACTIONS(2648), - [anon_sym_L_DQUOTE] = ACTIONS(2648), - [anon_sym_u_DQUOTE] = ACTIONS(2648), - [anon_sym_U_DQUOTE] = ACTIONS(2648), - [anon_sym_u8_DQUOTE] = ACTIONS(2648), - [anon_sym_DQUOTE] = ACTIONS(2648), - [sym_true] = ACTIONS(2646), - [sym_false] = ACTIONS(2646), - [sym_null] = ACTIONS(2646), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2646), - [anon_sym_decltype] = ACTIONS(2646), - [anon_sym_virtual] = ACTIONS(2646), - [anon_sym_explicit] = ACTIONS(2646), - [anon_sym_typename] = ACTIONS(2646), - [anon_sym_template] = ACTIONS(2646), - [anon_sym_operator] = ACTIONS(2646), - [anon_sym_try] = ACTIONS(2646), - [anon_sym_delete] = ACTIONS(2646), - [anon_sym_throw] = ACTIONS(2646), - [anon_sym_namespace] = ACTIONS(2646), - [anon_sym_using] = ACTIONS(2646), - [anon_sym_static_assert] = ACTIONS(2646), - [anon_sym_concept] = ACTIONS(2646), - [anon_sym_co_return] = ACTIONS(2646), - [anon_sym_co_yield] = ACTIONS(2646), - [anon_sym_R_DQUOTE] = ACTIONS(2648), - [anon_sym_LR_DQUOTE] = ACTIONS(2648), - [anon_sym_uR_DQUOTE] = ACTIONS(2648), - [anon_sym_UR_DQUOTE] = ACTIONS(2648), - [anon_sym_u8R_DQUOTE] = ACTIONS(2648), - [anon_sym_co_await] = ACTIONS(2646), - [anon_sym_new] = ACTIONS(2646), - [anon_sym_requires] = ACTIONS(2646), - [sym_this] = ACTIONS(2646), - [sym_nullptr] = ACTIONS(2646), + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token2] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [aux_sym_preproc_else_token1] = ACTIONS(3028), + [aux_sym_preproc_elif_token1] = ACTIONS(3028), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, [469] = { - [sym_identifier] = ACTIONS(2614), - [aux_sym_preproc_include_token1] = ACTIONS(2614), - [aux_sym_preproc_def_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token2] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2614), - [aux_sym_preproc_else_token1] = ACTIONS(2614), - [aux_sym_preproc_elif_token1] = ACTIONS(2614), - [sym_preproc_directive] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP_AMP] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2614), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym___based] = ACTIONS(2614), - [anon_sym___cdecl] = ACTIONS(2614), - [anon_sym___clrcall] = ACTIONS(2614), - [anon_sym___stdcall] = ACTIONS(2614), - [anon_sym___fastcall] = ACTIONS(2614), - [anon_sym___thiscall] = ACTIONS(2614), - [anon_sym___vectorcall] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_case] = ACTIONS(2614), - [anon_sym_default] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_explicit] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_operator] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_namespace] = ACTIONS(2614), - [anon_sym_using] = ACTIONS(2614), - [anon_sym_static_assert] = ACTIONS(2614), - [anon_sym_concept] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token2] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [aux_sym_preproc_else_token1] = ACTIONS(3028), + [aux_sym_preproc_elif_token1] = ACTIONS(3028), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, [470] = { - [sym_identifier] = ACTIONS(2614), - [aux_sym_preproc_include_token1] = ACTIONS(2614), - [aux_sym_preproc_def_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token2] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2614), - [aux_sym_preproc_else_token1] = ACTIONS(2614), - [aux_sym_preproc_elif_token1] = ACTIONS(2614), - [sym_preproc_directive] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP_AMP] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2614), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym___based] = ACTIONS(2614), - [anon_sym___cdecl] = ACTIONS(2614), - [anon_sym___clrcall] = ACTIONS(2614), - [anon_sym___stdcall] = ACTIONS(2614), - [anon_sym___fastcall] = ACTIONS(2614), - [anon_sym___thiscall] = ACTIONS(2614), - [anon_sym___vectorcall] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_case] = ACTIONS(2614), - [anon_sym_default] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_explicit] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_operator] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_namespace] = ACTIONS(2614), - [anon_sym_using] = ACTIONS(2614), - [anon_sym_static_assert] = ACTIONS(2614), - [anon_sym_concept] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token2] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [aux_sym_preproc_else_token1] = ACTIONS(3048), + [aux_sym_preproc_elif_token1] = ACTIONS(3048), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, [471] = { - [sym_identifier] = ACTIONS(2614), - [aux_sym_preproc_include_token1] = ACTIONS(2614), - [aux_sym_preproc_def_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token2] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2614), - [aux_sym_preproc_else_token1] = ACTIONS(2614), - [aux_sym_preproc_elif_token1] = ACTIONS(2614), - [sym_preproc_directive] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP_AMP] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2614), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym___based] = ACTIONS(2614), - [anon_sym___cdecl] = ACTIONS(2614), - [anon_sym___clrcall] = ACTIONS(2614), - [anon_sym___stdcall] = ACTIONS(2614), - [anon_sym___fastcall] = ACTIONS(2614), - [anon_sym___thiscall] = ACTIONS(2614), - [anon_sym___vectorcall] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_case] = ACTIONS(2614), - [anon_sym_default] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_explicit] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_operator] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_namespace] = ACTIONS(2614), - [anon_sym_using] = ACTIONS(2614), - [anon_sym_static_assert] = ACTIONS(2614), - [anon_sym_concept] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token2] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [aux_sym_preproc_else_token1] = ACTIONS(3048), + [aux_sym_preproc_elif_token1] = ACTIONS(3048), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, [472] = { - [sym_identifier] = ACTIONS(2614), - [aux_sym_preproc_include_token1] = ACTIONS(2614), - [aux_sym_preproc_def_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token2] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2614), - [aux_sym_preproc_else_token1] = ACTIONS(2614), - [aux_sym_preproc_elif_token1] = ACTIONS(2614), - [sym_preproc_directive] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP_AMP] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2614), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym___based] = ACTIONS(2614), - [anon_sym___cdecl] = ACTIONS(2614), - [anon_sym___clrcall] = ACTIONS(2614), - [anon_sym___stdcall] = ACTIONS(2614), - [anon_sym___fastcall] = ACTIONS(2614), - [anon_sym___thiscall] = ACTIONS(2614), - [anon_sym___vectorcall] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_case] = ACTIONS(2614), - [anon_sym_default] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_explicit] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_operator] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_namespace] = ACTIONS(2614), - [anon_sym_using] = ACTIONS(2614), - [anon_sym_static_assert] = ACTIONS(2614), - [anon_sym_concept] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token2] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [aux_sym_preproc_else_token1] = ACTIONS(3028), + [aux_sym_preproc_elif_token1] = ACTIONS(3028), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, [473] = { - [sym_identifier] = ACTIONS(2614), - [aux_sym_preproc_include_token1] = ACTIONS(2614), - [aux_sym_preproc_def_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token2] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2614), - [aux_sym_preproc_else_token1] = ACTIONS(2614), - [aux_sym_preproc_elif_token1] = ACTIONS(2614), - [sym_preproc_directive] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP_AMP] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2614), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym___based] = ACTIONS(2614), - [anon_sym___cdecl] = ACTIONS(2614), - [anon_sym___clrcall] = ACTIONS(2614), - [anon_sym___stdcall] = ACTIONS(2614), - [anon_sym___fastcall] = ACTIONS(2614), - [anon_sym___thiscall] = ACTIONS(2614), - [anon_sym___vectorcall] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_case] = ACTIONS(2614), - [anon_sym_default] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_explicit] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_operator] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_namespace] = ACTIONS(2614), - [anon_sym_using] = ACTIONS(2614), - [anon_sym_static_assert] = ACTIONS(2614), - [anon_sym_concept] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token2] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [aux_sym_preproc_else_token1] = ACTIONS(3048), + [aux_sym_preproc_elif_token1] = ACTIONS(3048), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, [474] = { - [sym_identifier] = ACTIONS(2614), - [aux_sym_preproc_include_token1] = ACTIONS(2614), - [aux_sym_preproc_def_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token2] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2614), - [aux_sym_preproc_else_token1] = ACTIONS(2614), - [aux_sym_preproc_elif_token1] = ACTIONS(2614), - [sym_preproc_directive] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP_AMP] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2614), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym___based] = ACTIONS(2614), - [anon_sym___cdecl] = ACTIONS(2614), - [anon_sym___clrcall] = ACTIONS(2614), - [anon_sym___stdcall] = ACTIONS(2614), - [anon_sym___fastcall] = ACTIONS(2614), - [anon_sym___thiscall] = ACTIONS(2614), - [anon_sym___vectorcall] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_case] = ACTIONS(2614), - [anon_sym_default] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_explicit] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_operator] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_namespace] = ACTIONS(2614), - [anon_sym_using] = ACTIONS(2614), - [anon_sym_static_assert] = ACTIONS(2614), - [anon_sym_concept] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), + [sym_identifier] = ACTIONS(3089), + [aux_sym_preproc_include_token1] = ACTIONS(3089), + [aux_sym_preproc_def_token1] = ACTIONS(3089), + [aux_sym_preproc_if_token1] = ACTIONS(3089), + [aux_sym_preproc_if_token2] = ACTIONS(3089), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3089), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3089), + [aux_sym_preproc_else_token1] = ACTIONS(3089), + [aux_sym_preproc_elif_token1] = ACTIONS(3089), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3089), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3089), + [sym_preproc_directive] = ACTIONS(3089), + [anon_sym_LPAREN2] = ACTIONS(3091), + [anon_sym_BANG] = ACTIONS(3091), + [anon_sym_TILDE] = ACTIONS(3091), + [anon_sym_DASH] = ACTIONS(3089), + [anon_sym_PLUS] = ACTIONS(3089), + [anon_sym_STAR] = ACTIONS(3091), + [anon_sym_AMP_AMP] = ACTIONS(3091), + [anon_sym_AMP] = ACTIONS(3089), + [anon_sym_SEMI] = ACTIONS(3091), + [anon_sym_typedef] = ACTIONS(3089), + [anon_sym_extern] = ACTIONS(3089), + [anon_sym___attribute__] = ACTIONS(3089), + [anon_sym_COLON_COLON] = ACTIONS(3091), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3091), + [anon_sym___declspec] = ACTIONS(3089), + [anon_sym___based] = ACTIONS(3089), + [anon_sym___cdecl] = ACTIONS(3089), + [anon_sym___clrcall] = ACTIONS(3089), + [anon_sym___stdcall] = ACTIONS(3089), + [anon_sym___fastcall] = ACTIONS(3089), + [anon_sym___thiscall] = ACTIONS(3089), + [anon_sym___vectorcall] = ACTIONS(3089), + [anon_sym_LBRACE] = ACTIONS(3091), + [anon_sym_LBRACK] = ACTIONS(3089), + [anon_sym_static] = ACTIONS(3089), + [anon_sym_register] = ACTIONS(3089), + [anon_sym_inline] = ACTIONS(3089), + [anon_sym_thread_local] = ACTIONS(3089), + [anon_sym_const] = ACTIONS(3089), + [anon_sym_constexpr] = ACTIONS(3089), + [anon_sym_volatile] = ACTIONS(3089), + [anon_sym_restrict] = ACTIONS(3089), + [anon_sym___restrict__] = ACTIONS(3089), + [anon_sym__Atomic] = ACTIONS(3089), + [anon_sym__Noreturn] = ACTIONS(3089), + [anon_sym_noreturn] = ACTIONS(3089), + [anon_sym_mutable] = ACTIONS(3089), + [anon_sym_constinit] = ACTIONS(3089), + [anon_sym_consteval] = ACTIONS(3089), + [anon_sym_signed] = ACTIONS(3089), + [anon_sym_unsigned] = ACTIONS(3089), + [anon_sym_long] = ACTIONS(3089), + [anon_sym_short] = ACTIONS(3089), + [sym_primitive_type] = ACTIONS(3089), + [anon_sym_enum] = ACTIONS(3089), + [anon_sym_class] = ACTIONS(3089), + [anon_sym_struct] = ACTIONS(3089), + [anon_sym_union] = ACTIONS(3089), + [anon_sym_if] = ACTIONS(3089), + [anon_sym_else] = ACTIONS(3089), + [anon_sym_switch] = ACTIONS(3089), + [anon_sym_case] = ACTIONS(3089), + [anon_sym_default] = ACTIONS(3089), + [anon_sym_while] = ACTIONS(3089), + [anon_sym_do] = ACTIONS(3089), + [anon_sym_for] = ACTIONS(3089), + [anon_sym_return] = ACTIONS(3089), + [anon_sym_break] = ACTIONS(3089), + [anon_sym_continue] = ACTIONS(3089), + [anon_sym_goto] = ACTIONS(3089), + [anon_sym_not] = ACTIONS(3089), + [anon_sym_compl] = ACTIONS(3089), + [anon_sym_DASH_DASH] = ACTIONS(3091), + [anon_sym_PLUS_PLUS] = ACTIONS(3091), + [anon_sym_sizeof] = ACTIONS(3089), + [anon_sym_offsetof] = ACTIONS(3089), + [anon_sym__Generic] = ACTIONS(3089), + [anon_sym_asm] = ACTIONS(3089), + [anon_sym___asm__] = ACTIONS(3089), + [sym_number_literal] = ACTIONS(3091), + [anon_sym_L_SQUOTE] = ACTIONS(3091), + [anon_sym_u_SQUOTE] = ACTIONS(3091), + [anon_sym_U_SQUOTE] = ACTIONS(3091), + [anon_sym_u8_SQUOTE] = ACTIONS(3091), + [anon_sym_SQUOTE] = ACTIONS(3091), + [anon_sym_L_DQUOTE] = ACTIONS(3091), + [anon_sym_u_DQUOTE] = ACTIONS(3091), + [anon_sym_U_DQUOTE] = ACTIONS(3091), + [anon_sym_u8_DQUOTE] = ACTIONS(3091), + [anon_sym_DQUOTE] = ACTIONS(3091), + [sym_true] = ACTIONS(3089), + [sym_false] = ACTIONS(3089), + [anon_sym_NULL] = ACTIONS(3089), + [anon_sym_nullptr] = ACTIONS(3089), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3089), + [anon_sym_decltype] = ACTIONS(3089), + [anon_sym_virtual] = ACTIONS(3089), + [anon_sym_explicit] = ACTIONS(3089), + [anon_sym_typename] = ACTIONS(3089), + [anon_sym_template] = ACTIONS(3089), + [anon_sym_operator] = ACTIONS(3089), + [anon_sym_try] = ACTIONS(3089), + [anon_sym_delete] = ACTIONS(3089), + [anon_sym_throw] = ACTIONS(3089), + [anon_sym_namespace] = ACTIONS(3089), + [anon_sym_using] = ACTIONS(3089), + [anon_sym_static_assert] = ACTIONS(3089), + [anon_sym_concept] = ACTIONS(3089), + [anon_sym_co_return] = ACTIONS(3089), + [anon_sym_co_yield] = ACTIONS(3089), + [anon_sym_R_DQUOTE] = ACTIONS(3091), + [anon_sym_LR_DQUOTE] = ACTIONS(3091), + [anon_sym_uR_DQUOTE] = ACTIONS(3091), + [anon_sym_UR_DQUOTE] = ACTIONS(3091), + [anon_sym_u8R_DQUOTE] = ACTIONS(3091), + [anon_sym_co_await] = ACTIONS(3089), + [anon_sym_new] = ACTIONS(3089), + [anon_sym_requires] = ACTIONS(3089), + [sym_this] = ACTIONS(3089), }, [475] = { - [sym_identifier] = ACTIONS(2614), - [aux_sym_preproc_include_token1] = ACTIONS(2614), - [aux_sym_preproc_def_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token2] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2614), - [aux_sym_preproc_else_token1] = ACTIONS(2614), - [aux_sym_preproc_elif_token1] = ACTIONS(2614), - [sym_preproc_directive] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP_AMP] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2614), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym___based] = ACTIONS(2614), - [anon_sym___cdecl] = ACTIONS(2614), - [anon_sym___clrcall] = ACTIONS(2614), - [anon_sym___stdcall] = ACTIONS(2614), - [anon_sym___fastcall] = ACTIONS(2614), - [anon_sym___thiscall] = ACTIONS(2614), - [anon_sym___vectorcall] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_case] = ACTIONS(2614), - [anon_sym_default] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_explicit] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_operator] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_namespace] = ACTIONS(2614), - [anon_sym_using] = ACTIONS(2614), - [anon_sym_static_assert] = ACTIONS(2614), - [anon_sym_concept] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token2] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [aux_sym_preproc_else_token1] = ACTIONS(3048), + [aux_sym_preproc_elif_token1] = ACTIONS(3048), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, [476] = { - [sym_identifier] = ACTIONS(1737), - [aux_sym_preproc_include_token1] = ACTIONS(1737), - [aux_sym_preproc_def_token1] = ACTIONS(1737), - [anon_sym_COMMA] = ACTIONS(2652), - [aux_sym_preproc_if_token1] = ACTIONS(1737), - [aux_sym_preproc_if_token2] = ACTIONS(1737), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1737), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1737), - [aux_sym_preproc_else_token1] = ACTIONS(1737), - [aux_sym_preproc_elif_token1] = ACTIONS(1737), - [sym_preproc_directive] = ACTIONS(1737), - [anon_sym_LPAREN2] = ACTIONS(1735), - [anon_sym_BANG] = ACTIONS(1735), - [anon_sym_TILDE] = ACTIONS(1735), - [anon_sym_DASH] = ACTIONS(1737), - [anon_sym_PLUS] = ACTIONS(1737), - [anon_sym_STAR] = ACTIONS(1735), - [anon_sym_AMP_AMP] = ACTIONS(1735), - [anon_sym_AMP] = ACTIONS(1737), - [anon_sym_SEMI] = ACTIONS(2652), - [anon_sym_typedef] = ACTIONS(1737), - [anon_sym_extern] = ACTIONS(1737), - [anon_sym___attribute__] = ACTIONS(1737), - [anon_sym_COLON_COLON] = ACTIONS(1735), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1735), - [anon_sym___declspec] = ACTIONS(1737), - [anon_sym___based] = ACTIONS(1737), - [anon_sym___cdecl] = ACTIONS(1737), - [anon_sym___clrcall] = ACTIONS(1737), - [anon_sym___stdcall] = ACTIONS(1737), - [anon_sym___fastcall] = ACTIONS(1737), - [anon_sym___thiscall] = ACTIONS(1737), - [anon_sym___vectorcall] = ACTIONS(1737), - [anon_sym_LBRACE] = ACTIONS(1735), - [anon_sym_LBRACK] = ACTIONS(1737), - [anon_sym_static] = ACTIONS(1737), - [anon_sym_register] = ACTIONS(1737), - [anon_sym_inline] = ACTIONS(1737), - [anon_sym_thread_local] = ACTIONS(1737), - [anon_sym_const] = ACTIONS(1737), - [anon_sym_volatile] = ACTIONS(1737), - [anon_sym_restrict] = ACTIONS(1737), - [anon_sym__Atomic] = ACTIONS(1737), - [anon_sym_mutable] = ACTIONS(1737), - [anon_sym_constexpr] = ACTIONS(1737), - [anon_sym_constinit] = ACTIONS(1737), - [anon_sym_consteval] = ACTIONS(1737), - [anon_sym_signed] = ACTIONS(1737), - [anon_sym_unsigned] = ACTIONS(1737), - [anon_sym_long] = ACTIONS(1737), - [anon_sym_short] = ACTIONS(1737), - [sym_primitive_type] = ACTIONS(1737), - [anon_sym_enum] = ACTIONS(1737), - [anon_sym_class] = ACTIONS(1737), - [anon_sym_struct] = ACTIONS(1737), - [anon_sym_union] = ACTIONS(1737), - [anon_sym_if] = ACTIONS(1737), - [anon_sym_switch] = ACTIONS(1737), - [anon_sym_case] = ACTIONS(1737), - [anon_sym_default] = ACTIONS(1737), - [anon_sym_while] = ACTIONS(1737), - [anon_sym_do] = ACTIONS(1737), - [anon_sym_for] = ACTIONS(1737), - [anon_sym_return] = ACTIONS(1737), - [anon_sym_break] = ACTIONS(1737), - [anon_sym_continue] = ACTIONS(1737), - [anon_sym_goto] = ACTIONS(1737), - [anon_sym_not] = ACTIONS(1737), - [anon_sym_compl] = ACTIONS(1737), - [anon_sym_DASH_DASH] = ACTIONS(1735), - [anon_sym_PLUS_PLUS] = ACTIONS(1735), - [anon_sym_sizeof] = ACTIONS(1737), - [sym_number_literal] = ACTIONS(1735), - [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_L_DQUOTE] = ACTIONS(1735), - [anon_sym_u_DQUOTE] = ACTIONS(1735), - [anon_sym_U_DQUOTE] = ACTIONS(1735), - [anon_sym_u8_DQUOTE] = ACTIONS(1735), - [anon_sym_DQUOTE] = ACTIONS(1735), - [sym_true] = ACTIONS(1737), - [sym_false] = ACTIONS(1737), - [sym_null] = ACTIONS(1737), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1737), - [anon_sym_decltype] = ACTIONS(1737), - [anon_sym_virtual] = ACTIONS(1737), - [anon_sym_explicit] = ACTIONS(1737), - [anon_sym_typename] = ACTIONS(1737), - [anon_sym_template] = ACTIONS(1737), - [anon_sym_operator] = ACTIONS(1737), - [anon_sym_try] = ACTIONS(1737), - [anon_sym_delete] = ACTIONS(1737), - [anon_sym_throw] = ACTIONS(1737), - [anon_sym_namespace] = ACTIONS(1737), - [anon_sym_using] = ACTIONS(1737), - [anon_sym_static_assert] = ACTIONS(1737), - [anon_sym_concept] = ACTIONS(1737), - [anon_sym_co_return] = ACTIONS(1737), - [anon_sym_co_yield] = ACTIONS(1737), - [anon_sym_R_DQUOTE] = ACTIONS(1735), - [anon_sym_LR_DQUOTE] = ACTIONS(1735), - [anon_sym_uR_DQUOTE] = ACTIONS(1735), - [anon_sym_UR_DQUOTE] = ACTIONS(1735), - [anon_sym_u8R_DQUOTE] = ACTIONS(1735), - [anon_sym_co_await] = ACTIONS(1737), - [anon_sym_new] = ACTIONS(1737), - [anon_sym_requires] = ACTIONS(1737), - [sym_this] = ACTIONS(1737), - [sym_nullptr] = ACTIONS(1737), + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token2] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [aux_sym_preproc_else_token1] = ACTIONS(3048), + [aux_sym_preproc_elif_token1] = ACTIONS(3048), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, [477] = { - [sym_identifier] = ACTIONS(2614), - [aux_sym_preproc_include_token1] = ACTIONS(2614), - [aux_sym_preproc_def_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token2] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2614), - [aux_sym_preproc_else_token1] = ACTIONS(2614), - [aux_sym_preproc_elif_token1] = ACTIONS(2614), - [sym_preproc_directive] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP_AMP] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2614), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym___based] = ACTIONS(2614), - [anon_sym___cdecl] = ACTIONS(2614), - [anon_sym___clrcall] = ACTIONS(2614), - [anon_sym___stdcall] = ACTIONS(2614), - [anon_sym___fastcall] = ACTIONS(2614), - [anon_sym___thiscall] = ACTIONS(2614), - [anon_sym___vectorcall] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_case] = ACTIONS(2614), - [anon_sym_default] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_explicit] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_operator] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_namespace] = ACTIONS(2614), - [anon_sym_using] = ACTIONS(2614), - [anon_sym_static_assert] = ACTIONS(2614), - [anon_sym_concept] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), + [sym_identifier] = ACTIONS(3093), + [aux_sym_preproc_include_token1] = ACTIONS(3093), + [aux_sym_preproc_def_token1] = ACTIONS(3093), + [aux_sym_preproc_if_token1] = ACTIONS(3093), + [aux_sym_preproc_if_token2] = ACTIONS(3093), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3093), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3093), + [aux_sym_preproc_else_token1] = ACTIONS(3093), + [aux_sym_preproc_elif_token1] = ACTIONS(3093), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3093), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3093), + [sym_preproc_directive] = ACTIONS(3093), + [anon_sym_LPAREN2] = ACTIONS(3095), + [anon_sym_BANG] = ACTIONS(3095), + [anon_sym_TILDE] = ACTIONS(3095), + [anon_sym_DASH] = ACTIONS(3093), + [anon_sym_PLUS] = ACTIONS(3093), + [anon_sym_STAR] = ACTIONS(3095), + [anon_sym_AMP_AMP] = ACTIONS(3095), + [anon_sym_AMP] = ACTIONS(3093), + [anon_sym_SEMI] = ACTIONS(3095), + [anon_sym_typedef] = ACTIONS(3093), + [anon_sym_extern] = ACTIONS(3093), + [anon_sym___attribute__] = ACTIONS(3093), + [anon_sym_COLON_COLON] = ACTIONS(3095), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3095), + [anon_sym___declspec] = ACTIONS(3093), + [anon_sym___based] = ACTIONS(3093), + [anon_sym___cdecl] = ACTIONS(3093), + [anon_sym___clrcall] = ACTIONS(3093), + [anon_sym___stdcall] = ACTIONS(3093), + [anon_sym___fastcall] = ACTIONS(3093), + [anon_sym___thiscall] = ACTIONS(3093), + [anon_sym___vectorcall] = ACTIONS(3093), + [anon_sym_LBRACE] = ACTIONS(3095), + [anon_sym_LBRACK] = ACTIONS(3093), + [anon_sym_static] = ACTIONS(3093), + [anon_sym_register] = ACTIONS(3093), + [anon_sym_inline] = ACTIONS(3093), + [anon_sym_thread_local] = ACTIONS(3093), + [anon_sym_const] = ACTIONS(3093), + [anon_sym_constexpr] = ACTIONS(3093), + [anon_sym_volatile] = ACTIONS(3093), + [anon_sym_restrict] = ACTIONS(3093), + [anon_sym___restrict__] = ACTIONS(3093), + [anon_sym__Atomic] = ACTIONS(3093), + [anon_sym__Noreturn] = ACTIONS(3093), + [anon_sym_noreturn] = ACTIONS(3093), + [anon_sym_mutable] = ACTIONS(3093), + [anon_sym_constinit] = ACTIONS(3093), + [anon_sym_consteval] = ACTIONS(3093), + [anon_sym_signed] = ACTIONS(3093), + [anon_sym_unsigned] = ACTIONS(3093), + [anon_sym_long] = ACTIONS(3093), + [anon_sym_short] = ACTIONS(3093), + [sym_primitive_type] = ACTIONS(3093), + [anon_sym_enum] = ACTIONS(3093), + [anon_sym_class] = ACTIONS(3093), + [anon_sym_struct] = ACTIONS(3093), + [anon_sym_union] = ACTIONS(3093), + [anon_sym_if] = ACTIONS(3093), + [anon_sym_else] = ACTIONS(3093), + [anon_sym_switch] = ACTIONS(3093), + [anon_sym_case] = ACTIONS(3093), + [anon_sym_default] = ACTIONS(3093), + [anon_sym_while] = ACTIONS(3093), + [anon_sym_do] = ACTIONS(3093), + [anon_sym_for] = ACTIONS(3093), + [anon_sym_return] = ACTIONS(3093), + [anon_sym_break] = ACTIONS(3093), + [anon_sym_continue] = ACTIONS(3093), + [anon_sym_goto] = ACTIONS(3093), + [anon_sym_not] = ACTIONS(3093), + [anon_sym_compl] = ACTIONS(3093), + [anon_sym_DASH_DASH] = ACTIONS(3095), + [anon_sym_PLUS_PLUS] = ACTIONS(3095), + [anon_sym_sizeof] = ACTIONS(3093), + [anon_sym_offsetof] = ACTIONS(3093), + [anon_sym__Generic] = ACTIONS(3093), + [anon_sym_asm] = ACTIONS(3093), + [anon_sym___asm__] = ACTIONS(3093), + [sym_number_literal] = ACTIONS(3095), + [anon_sym_L_SQUOTE] = ACTIONS(3095), + [anon_sym_u_SQUOTE] = ACTIONS(3095), + [anon_sym_U_SQUOTE] = ACTIONS(3095), + [anon_sym_u8_SQUOTE] = ACTIONS(3095), + [anon_sym_SQUOTE] = ACTIONS(3095), + [anon_sym_L_DQUOTE] = ACTIONS(3095), + [anon_sym_u_DQUOTE] = ACTIONS(3095), + [anon_sym_U_DQUOTE] = ACTIONS(3095), + [anon_sym_u8_DQUOTE] = ACTIONS(3095), + [anon_sym_DQUOTE] = ACTIONS(3095), + [sym_true] = ACTIONS(3093), + [sym_false] = ACTIONS(3093), + [anon_sym_NULL] = ACTIONS(3093), + [anon_sym_nullptr] = ACTIONS(3093), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3093), + [anon_sym_decltype] = ACTIONS(3093), + [anon_sym_virtual] = ACTIONS(3093), + [anon_sym_explicit] = ACTIONS(3093), + [anon_sym_typename] = ACTIONS(3093), + [anon_sym_template] = ACTIONS(3093), + [anon_sym_operator] = ACTIONS(3093), + [anon_sym_try] = ACTIONS(3093), + [anon_sym_delete] = ACTIONS(3093), + [anon_sym_throw] = ACTIONS(3093), + [anon_sym_namespace] = ACTIONS(3093), + [anon_sym_using] = ACTIONS(3093), + [anon_sym_static_assert] = ACTIONS(3093), + [anon_sym_concept] = ACTIONS(3093), + [anon_sym_co_return] = ACTIONS(3093), + [anon_sym_co_yield] = ACTIONS(3093), + [anon_sym_R_DQUOTE] = ACTIONS(3095), + [anon_sym_LR_DQUOTE] = ACTIONS(3095), + [anon_sym_uR_DQUOTE] = ACTIONS(3095), + [anon_sym_UR_DQUOTE] = ACTIONS(3095), + [anon_sym_u8R_DQUOTE] = ACTIONS(3095), + [anon_sym_co_await] = ACTIONS(3093), + [anon_sym_new] = ACTIONS(3093), + [anon_sym_requires] = ACTIONS(3093), + [sym_this] = ACTIONS(3093), }, [478] = { - [sym_catch_clause] = STATE(338), - [aux_sym_constructor_try_statement_repeat1] = STATE(338), - [sym_identifier] = ACTIONS(2381), - [aux_sym_preproc_include_token1] = ACTIONS(2381), - [aux_sym_preproc_def_token1] = ACTIONS(2381), - [aux_sym_preproc_if_token1] = ACTIONS(2381), - [aux_sym_preproc_if_token2] = ACTIONS(2381), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2381), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2381), - [sym_preproc_directive] = ACTIONS(2381), - [anon_sym_LPAREN2] = ACTIONS(2383), - [anon_sym_BANG] = ACTIONS(2383), - [anon_sym_TILDE] = ACTIONS(2383), - [anon_sym_DASH] = ACTIONS(2381), - [anon_sym_PLUS] = ACTIONS(2381), - [anon_sym_STAR] = ACTIONS(2383), - [anon_sym_AMP_AMP] = ACTIONS(2383), - [anon_sym_AMP] = ACTIONS(2381), - [anon_sym_SEMI] = ACTIONS(2383), - [anon_sym_typedef] = ACTIONS(2381), - [anon_sym_extern] = ACTIONS(2381), - [anon_sym___attribute__] = ACTIONS(2381), - [anon_sym_COLON_COLON] = ACTIONS(2383), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2383), - [anon_sym___declspec] = ACTIONS(2381), - [anon_sym___based] = ACTIONS(2381), - [anon_sym___cdecl] = ACTIONS(2381), - [anon_sym___clrcall] = ACTIONS(2381), - [anon_sym___stdcall] = ACTIONS(2381), - [anon_sym___fastcall] = ACTIONS(2381), - [anon_sym___thiscall] = ACTIONS(2381), - [anon_sym___vectorcall] = ACTIONS(2381), - [anon_sym_LBRACE] = ACTIONS(2383), - [anon_sym_LBRACK] = ACTIONS(2381), - [anon_sym_static] = ACTIONS(2381), - [anon_sym_register] = ACTIONS(2381), - [anon_sym_inline] = ACTIONS(2381), - [anon_sym_thread_local] = ACTIONS(2381), - [anon_sym_const] = ACTIONS(2381), - [anon_sym_volatile] = ACTIONS(2381), - [anon_sym_restrict] = ACTIONS(2381), - [anon_sym__Atomic] = ACTIONS(2381), - [anon_sym_mutable] = ACTIONS(2381), - [anon_sym_constexpr] = ACTIONS(2381), - [anon_sym_constinit] = ACTIONS(2381), - [anon_sym_consteval] = ACTIONS(2381), - [anon_sym_signed] = ACTIONS(2381), - [anon_sym_unsigned] = ACTIONS(2381), - [anon_sym_long] = ACTIONS(2381), - [anon_sym_short] = ACTIONS(2381), - [sym_primitive_type] = ACTIONS(2381), - [anon_sym_enum] = ACTIONS(2381), - [anon_sym_class] = ACTIONS(2381), - [anon_sym_struct] = ACTIONS(2381), - [anon_sym_union] = ACTIONS(2381), - [anon_sym_if] = ACTIONS(2381), - [anon_sym_switch] = ACTIONS(2381), - [anon_sym_case] = ACTIONS(2381), - [anon_sym_default] = ACTIONS(2381), - [anon_sym_while] = ACTIONS(2381), - [anon_sym_do] = ACTIONS(2381), - [anon_sym_for] = ACTIONS(2381), - [anon_sym_return] = ACTIONS(2381), - [anon_sym_break] = ACTIONS(2381), - [anon_sym_continue] = ACTIONS(2381), - [anon_sym_goto] = ACTIONS(2381), - [anon_sym_not] = ACTIONS(2381), - [anon_sym_compl] = ACTIONS(2381), - [anon_sym_DASH_DASH] = ACTIONS(2383), - [anon_sym_PLUS_PLUS] = ACTIONS(2383), - [anon_sym_sizeof] = ACTIONS(2381), - [sym_number_literal] = ACTIONS(2383), - [anon_sym_L_SQUOTE] = ACTIONS(2383), - [anon_sym_u_SQUOTE] = ACTIONS(2383), - [anon_sym_U_SQUOTE] = ACTIONS(2383), - [anon_sym_u8_SQUOTE] = ACTIONS(2383), - [anon_sym_SQUOTE] = ACTIONS(2383), - [anon_sym_L_DQUOTE] = ACTIONS(2383), - [anon_sym_u_DQUOTE] = ACTIONS(2383), - [anon_sym_U_DQUOTE] = ACTIONS(2383), - [anon_sym_u8_DQUOTE] = ACTIONS(2383), - [anon_sym_DQUOTE] = ACTIONS(2383), - [sym_true] = ACTIONS(2381), - [sym_false] = ACTIONS(2381), - [sym_null] = ACTIONS(2381), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2381), - [anon_sym_decltype] = ACTIONS(2381), - [anon_sym_virtual] = ACTIONS(2381), - [anon_sym_explicit] = ACTIONS(2381), - [anon_sym_typename] = ACTIONS(2381), - [anon_sym_template] = ACTIONS(2381), - [anon_sym_operator] = ACTIONS(2381), - [anon_sym_try] = ACTIONS(2381), - [anon_sym_delete] = ACTIONS(2381), - [anon_sym_throw] = ACTIONS(2381), - [anon_sym_namespace] = ACTIONS(2381), - [anon_sym_using] = ACTIONS(2381), - [anon_sym_static_assert] = ACTIONS(2381), - [anon_sym_concept] = ACTIONS(2381), - [anon_sym_co_return] = ACTIONS(2381), - [anon_sym_co_yield] = ACTIONS(2381), - [anon_sym_catch] = ACTIONS(2397), - [anon_sym_R_DQUOTE] = ACTIONS(2383), - [anon_sym_LR_DQUOTE] = ACTIONS(2383), - [anon_sym_uR_DQUOTE] = ACTIONS(2383), - [anon_sym_UR_DQUOTE] = ACTIONS(2383), - [anon_sym_u8R_DQUOTE] = ACTIONS(2383), - [anon_sym_co_await] = ACTIONS(2381), - [anon_sym_new] = ACTIONS(2381), - [anon_sym_requires] = ACTIONS(2381), - [sym_this] = ACTIONS(2381), - [sym_nullptr] = ACTIONS(2381), + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token2] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [aux_sym_preproc_else_token1] = ACTIONS(3048), + [aux_sym_preproc_elif_token1] = ACTIONS(3048), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, [479] = { - [sym_identifier] = ACTIONS(2614), - [aux_sym_preproc_include_token1] = ACTIONS(2614), - [aux_sym_preproc_def_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token2] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2614), - [aux_sym_preproc_else_token1] = ACTIONS(2614), - [aux_sym_preproc_elif_token1] = ACTIONS(2614), - [sym_preproc_directive] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP_AMP] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2614), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym___based] = ACTIONS(2614), - [anon_sym___cdecl] = ACTIONS(2614), - [anon_sym___clrcall] = ACTIONS(2614), - [anon_sym___stdcall] = ACTIONS(2614), - [anon_sym___fastcall] = ACTIONS(2614), - [anon_sym___thiscall] = ACTIONS(2614), - [anon_sym___vectorcall] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_case] = ACTIONS(2614), - [anon_sym_default] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_explicit] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_operator] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_namespace] = ACTIONS(2614), - [anon_sym_using] = ACTIONS(2614), - [anon_sym_static_assert] = ACTIONS(2614), - [anon_sym_concept] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token2] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [aux_sym_preproc_else_token1] = ACTIONS(3028), + [aux_sym_preproc_elif_token1] = ACTIONS(3028), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, [480] = { - [sym_identifier] = ACTIONS(2630), - [aux_sym_preproc_include_token1] = ACTIONS(2630), - [aux_sym_preproc_def_token1] = ACTIONS(2630), - [aux_sym_preproc_if_token1] = ACTIONS(2630), - [aux_sym_preproc_if_token2] = ACTIONS(2630), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2630), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2630), - [aux_sym_preproc_else_token1] = ACTIONS(2630), - [aux_sym_preproc_elif_token1] = ACTIONS(2630), - [sym_preproc_directive] = ACTIONS(2630), - [anon_sym_LPAREN2] = ACTIONS(2632), - [anon_sym_BANG] = ACTIONS(2632), - [anon_sym_TILDE] = ACTIONS(2632), - [anon_sym_DASH] = ACTIONS(2630), - [anon_sym_PLUS] = ACTIONS(2630), - [anon_sym_STAR] = ACTIONS(2632), - [anon_sym_AMP_AMP] = ACTIONS(2632), - [anon_sym_AMP] = ACTIONS(2630), - [anon_sym_SEMI] = ACTIONS(2632), - [anon_sym_typedef] = ACTIONS(2630), - [anon_sym_extern] = ACTIONS(2630), - [anon_sym___attribute__] = ACTIONS(2630), - [anon_sym_COLON_COLON] = ACTIONS(2632), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2632), - [anon_sym___declspec] = ACTIONS(2630), - [anon_sym___based] = ACTIONS(2630), - [anon_sym___cdecl] = ACTIONS(2630), - [anon_sym___clrcall] = ACTIONS(2630), - [anon_sym___stdcall] = ACTIONS(2630), - [anon_sym___fastcall] = ACTIONS(2630), - [anon_sym___thiscall] = ACTIONS(2630), - [anon_sym___vectorcall] = ACTIONS(2630), - [anon_sym_LBRACE] = ACTIONS(2632), - [anon_sym_LBRACK] = ACTIONS(2630), - [anon_sym_static] = ACTIONS(2630), - [anon_sym_register] = ACTIONS(2630), - [anon_sym_inline] = ACTIONS(2630), - [anon_sym_thread_local] = ACTIONS(2630), - [anon_sym_const] = ACTIONS(2630), - [anon_sym_volatile] = ACTIONS(2630), - [anon_sym_restrict] = ACTIONS(2630), - [anon_sym__Atomic] = ACTIONS(2630), - [anon_sym_mutable] = ACTIONS(2630), - [anon_sym_constexpr] = ACTIONS(2630), - [anon_sym_constinit] = ACTIONS(2630), - [anon_sym_consteval] = ACTIONS(2630), - [anon_sym_signed] = ACTIONS(2630), - [anon_sym_unsigned] = ACTIONS(2630), - [anon_sym_long] = ACTIONS(2630), - [anon_sym_short] = ACTIONS(2630), - [sym_primitive_type] = ACTIONS(2630), - [anon_sym_enum] = ACTIONS(2630), - [anon_sym_class] = ACTIONS(2630), - [anon_sym_struct] = ACTIONS(2630), - [anon_sym_union] = ACTIONS(2630), - [anon_sym_if] = ACTIONS(2630), - [anon_sym_else] = ACTIONS(2630), - [anon_sym_switch] = ACTIONS(2630), - [anon_sym_case] = ACTIONS(2630), - [anon_sym_default] = ACTIONS(2630), - [anon_sym_while] = ACTIONS(2630), - [anon_sym_do] = ACTIONS(2630), - [anon_sym_for] = ACTIONS(2630), - [anon_sym_return] = ACTIONS(2630), - [anon_sym_break] = ACTIONS(2630), - [anon_sym_continue] = ACTIONS(2630), - [anon_sym_goto] = ACTIONS(2630), - [anon_sym_not] = ACTIONS(2630), - [anon_sym_compl] = ACTIONS(2630), - [anon_sym_DASH_DASH] = ACTIONS(2632), - [anon_sym_PLUS_PLUS] = ACTIONS(2632), - [anon_sym_sizeof] = ACTIONS(2630), - [sym_number_literal] = ACTIONS(2632), - [anon_sym_L_SQUOTE] = ACTIONS(2632), - [anon_sym_u_SQUOTE] = ACTIONS(2632), - [anon_sym_U_SQUOTE] = ACTIONS(2632), - [anon_sym_u8_SQUOTE] = ACTIONS(2632), - [anon_sym_SQUOTE] = ACTIONS(2632), - [anon_sym_L_DQUOTE] = ACTIONS(2632), - [anon_sym_u_DQUOTE] = ACTIONS(2632), - [anon_sym_U_DQUOTE] = ACTIONS(2632), - [anon_sym_u8_DQUOTE] = ACTIONS(2632), - [anon_sym_DQUOTE] = ACTIONS(2632), - [sym_true] = ACTIONS(2630), - [sym_false] = ACTIONS(2630), - [sym_null] = ACTIONS(2630), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2630), - [anon_sym_decltype] = ACTIONS(2630), - [anon_sym_virtual] = ACTIONS(2630), - [anon_sym_explicit] = ACTIONS(2630), - [anon_sym_typename] = ACTIONS(2630), - [anon_sym_template] = ACTIONS(2630), - [anon_sym_operator] = ACTIONS(2630), - [anon_sym_try] = ACTIONS(2630), - [anon_sym_delete] = ACTIONS(2630), - [anon_sym_throw] = ACTIONS(2630), - [anon_sym_namespace] = ACTIONS(2630), - [anon_sym_using] = ACTIONS(2630), - [anon_sym_static_assert] = ACTIONS(2630), - [anon_sym_concept] = ACTIONS(2630), - [anon_sym_co_return] = ACTIONS(2630), - [anon_sym_co_yield] = ACTIONS(2630), - [anon_sym_R_DQUOTE] = ACTIONS(2632), - [anon_sym_LR_DQUOTE] = ACTIONS(2632), - [anon_sym_uR_DQUOTE] = ACTIONS(2632), - [anon_sym_UR_DQUOTE] = ACTIONS(2632), - [anon_sym_u8R_DQUOTE] = ACTIONS(2632), - [anon_sym_co_await] = ACTIONS(2630), - [anon_sym_new] = ACTIONS(2630), - [anon_sym_requires] = ACTIONS(2630), - [sym_this] = ACTIONS(2630), - [sym_nullptr] = ACTIONS(2630), + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token2] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [aux_sym_preproc_else_token1] = ACTIONS(3028), + [aux_sym_preproc_elif_token1] = ACTIONS(3028), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, [481] = { - [sym_type_qualifier] = STATE(3306), - [sym__type_specifier] = STATE(3903), - [sym_sized_type_specifier] = STATE(3003), - [sym_enum_specifier] = STATE(3003), - [sym_struct_specifier] = STATE(3003), - [sym_union_specifier] = STATE(3003), - [sym__expression] = STATE(3467), - [sym_conditional_expression] = STATE(3855), - [sym_assignment_expression] = STATE(3855), - [sym_pointer_expression] = STATE(2954), - [sym_unary_expression] = STATE(3855), - [sym_binary_expression] = STATE(3855), - [sym_update_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_type_descriptor] = STATE(5224), - [sym_sizeof_expression] = STATE(3855), - [sym_subscript_expression] = STATE(2954), - [sym_call_expression] = STATE(2954), - [sym_field_expression] = STATE(2954), - [sym_compound_literal_expression] = STATE(3855), - [sym_parenthesized_expression] = STATE(2954), - [sym_char_literal] = STATE(3557), - [sym_concatenated_string] = STATE(3557), - [sym_string_literal] = STATE(2955), - [sym_placeholder_type_specifier] = STATE(3003), - [sym_decltype_auto] = STATE(3008), - [sym_decltype] = STATE(2851), - [sym_class_specifier] = STATE(3003), - [sym__class_name] = STATE(5844), - [sym_dependent_type] = STATE(3003), - [sym_template_type] = STATE(4288), - [sym_template_function] = STATE(3855), - [sym_raw_string_literal] = STATE(2955), - [sym_co_await_expression] = STATE(3855), - [sym_new_expression] = STATE(3855), - [sym_delete_expression] = STATE(3855), - [sym_requires_clause] = STATE(3855), - [sym_requires_expression] = STATE(3855), - [sym_lambda_expression] = STATE(3855), - [sym_lambda_capture_specifier] = STATE(4501), - [sym_fold_expression] = STATE(3855), - [sym_parameter_pack_expansion] = STATE(3855), - [sym_type_parameter_pack_expansion] = STATE(5592), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4544), - [sym_qualified_identifier] = STATE(2954), - [sym_qualified_type_identifier] = STATE(4356), - [sym_user_defined_literal] = STATE(3855), - [aux_sym_type_definition_repeat1] = STATE(3306), - [aux_sym_sized_type_specifier_repeat1] = STATE(2022), - [sym_identifier] = ACTIONS(2408), - [anon_sym_LPAREN2] = ACTIONS(2410), - [anon_sym_BANG] = ACTIONS(2412), - [anon_sym_TILDE] = ACTIONS(2412), - [anon_sym_DASH] = ACTIONS(2414), - [anon_sym_PLUS] = ACTIONS(2414), - [anon_sym_STAR] = ACTIONS(2416), - [anon_sym_AMP] = ACTIONS(2416), - [anon_sym_COLON_COLON] = ACTIONS(2418), - [anon_sym_LBRACK] = ACTIONS(1539), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(2420), - [anon_sym_unsigned] = ACTIONS(2420), - [anon_sym_long] = ACTIONS(2420), - [anon_sym_short] = ACTIONS(2420), - [sym_primitive_type] = ACTIONS(2422), - [anon_sym_enum] = ACTIONS(2424), - [anon_sym_class] = ACTIONS(2426), - [anon_sym_struct] = ACTIONS(2428), - [anon_sym_union] = ACTIONS(2430), - [anon_sym_not] = ACTIONS(2414), - [anon_sym_compl] = ACTIONS(2414), - [anon_sym_DASH_DASH] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(2432), - [anon_sym_sizeof] = ACTIONS(2434), - [sym_number_literal] = ACTIONS(2436), - [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_L_DQUOTE] = ACTIONS(2440), - [anon_sym_u_DQUOTE] = ACTIONS(2440), - [anon_sym_U_DQUOTE] = ACTIONS(2440), - [anon_sym_u8_DQUOTE] = ACTIONS(2440), - [anon_sym_DQUOTE] = ACTIONS(2440), - [sym_true] = ACTIONS(2442), - [sym_false] = ACTIONS(2442), - [sym_null] = ACTIONS(2442), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2444), - [anon_sym_decltype] = ACTIONS(2446), - [anon_sym_typename] = ACTIONS(2448), - [anon_sym_template] = ACTIONS(996), - [anon_sym_GT2] = ACTIONS(2654), - [anon_sym_delete] = ACTIONS(2452), - [anon_sym_R_DQUOTE] = ACTIONS(2454), - [anon_sym_LR_DQUOTE] = ACTIONS(2454), - [anon_sym_uR_DQUOTE] = ACTIONS(2454), - [anon_sym_UR_DQUOTE] = ACTIONS(2454), - [anon_sym_u8R_DQUOTE] = ACTIONS(2454), - [anon_sym_co_await] = ACTIONS(2456), - [anon_sym_new] = ACTIONS(2458), - [anon_sym_requires] = ACTIONS(2460), - [sym_this] = ACTIONS(2442), - [sym_nullptr] = ACTIONS(2442), + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token2] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [aux_sym_preproc_else_token1] = ACTIONS(3028), + [aux_sym_preproc_elif_token1] = ACTIONS(3028), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, [482] = { - [sym_identifier] = ACTIONS(2614), - [aux_sym_preproc_include_token1] = ACTIONS(2614), - [aux_sym_preproc_def_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token2] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2614), - [aux_sym_preproc_else_token1] = ACTIONS(2614), - [aux_sym_preproc_elif_token1] = ACTIONS(2614), - [sym_preproc_directive] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP_AMP] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2614), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym___based] = ACTIONS(2614), - [anon_sym___cdecl] = ACTIONS(2614), - [anon_sym___clrcall] = ACTIONS(2614), - [anon_sym___stdcall] = ACTIONS(2614), - [anon_sym___fastcall] = ACTIONS(2614), - [anon_sym___thiscall] = ACTIONS(2614), - [anon_sym___vectorcall] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_case] = ACTIONS(2614), - [anon_sym_default] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_explicit] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_operator] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_namespace] = ACTIONS(2614), - [anon_sym_using] = ACTIONS(2614), - [anon_sym_static_assert] = ACTIONS(2614), - [anon_sym_concept] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token2] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [aux_sym_preproc_else_token1] = ACTIONS(3048), + [aux_sym_preproc_elif_token1] = ACTIONS(3048), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, [483] = { - [sym_identifier] = ACTIONS(2656), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2658), - [anon_sym_AMP] = ACTIONS(2656), - [anon_sym_SEMI] = ACTIONS(2658), - [anon_sym_typedef] = ACTIONS(2656), - [anon_sym_extern] = ACTIONS(2656), - [anon_sym___attribute__] = ACTIONS(2656), - [anon_sym_COLON_COLON] = ACTIONS(2658), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2658), - [anon_sym___declspec] = ACTIONS(2656), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2656), - [anon_sym_static] = ACTIONS(2656), - [anon_sym_register] = ACTIONS(2656), - [anon_sym_inline] = ACTIONS(2656), - [anon_sym_thread_local] = ACTIONS(2656), - [anon_sym_const] = ACTIONS(2656), - [anon_sym_volatile] = ACTIONS(2656), - [anon_sym_restrict] = ACTIONS(2656), - [anon_sym__Atomic] = ACTIONS(2656), - [anon_sym_mutable] = ACTIONS(2656), - [anon_sym_constexpr] = ACTIONS(2656), - [anon_sym_constinit] = ACTIONS(2656), - [anon_sym_consteval] = ACTIONS(2656), - [anon_sym_signed] = ACTIONS(2656), - [anon_sym_unsigned] = ACTIONS(2656), - [anon_sym_long] = ACTIONS(2656), - [anon_sym_short] = ACTIONS(2656), - [sym_primitive_type] = ACTIONS(2656), - [anon_sym_enum] = ACTIONS(2656), - [anon_sym_class] = ACTIONS(2656), - [anon_sym_struct] = ACTIONS(2656), - [anon_sym_union] = ACTIONS(2656), - [anon_sym_if] = ACTIONS(2656), - [anon_sym_else] = 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_return] = ACTIONS(2656), - [anon_sym_break] = ACTIONS(2656), - [anon_sym_continue] = ACTIONS(2656), - [anon_sym_goto] = ACTIONS(2656), - [anon_sym_not] = ACTIONS(2656), - [anon_sym_compl] = ACTIONS(2656), - [anon_sym_DASH_DASH] = ACTIONS(2658), - [anon_sym_PLUS_PLUS] = ACTIONS(2658), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2658), - [anon_sym_u_DQUOTE] = ACTIONS(2658), - [anon_sym_U_DQUOTE] = ACTIONS(2658), - [anon_sym_u8_DQUOTE] = ACTIONS(2658), - [anon_sym_DQUOTE] = ACTIONS(2658), - [sym_true] = ACTIONS(2656), - [sym_false] = ACTIONS(2656), - [sym_null] = ACTIONS(2656), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2656), - [anon_sym_decltype] = ACTIONS(2656), - [anon_sym_virtual] = ACTIONS(2656), - [anon_sym_explicit] = ACTIONS(2656), - [anon_sym_typename] = ACTIONS(2656), - [anon_sym_template] = ACTIONS(2656), - [anon_sym_operator] = ACTIONS(2656), - [anon_sym_try] = ACTIONS(2656), - [anon_sym_delete] = ACTIONS(2656), - [anon_sym_throw] = ACTIONS(2656), - [anon_sym_namespace] = ACTIONS(2656), - [anon_sym_using] = ACTIONS(2656), - [anon_sym_static_assert] = ACTIONS(2656), - [anon_sym_concept] = ACTIONS(2656), - [anon_sym_co_return] = ACTIONS(2656), - [anon_sym_co_yield] = ACTIONS(2656), - [anon_sym_R_DQUOTE] = ACTIONS(2658), - [anon_sym_LR_DQUOTE] = ACTIONS(2658), - [anon_sym_uR_DQUOTE] = ACTIONS(2658), - [anon_sym_UR_DQUOTE] = ACTIONS(2658), - [anon_sym_u8R_DQUOTE] = ACTIONS(2658), - [anon_sym_co_await] = ACTIONS(2656), - [anon_sym_new] = ACTIONS(2656), - [anon_sym_requires] = ACTIONS(2656), - [sym_this] = ACTIONS(2656), - [sym_nullptr] = ACTIONS(2656), + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token2] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [aux_sym_preproc_else_token1] = ACTIONS(3048), + [aux_sym_preproc_elif_token1] = ACTIONS(3048), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, [484] = { - [sym_type_qualifier] = STATE(3306), - [sym__type_specifier] = STATE(3903), - [sym_sized_type_specifier] = STATE(3003), - [sym_enum_specifier] = STATE(3003), - [sym_struct_specifier] = STATE(3003), - [sym_union_specifier] = STATE(3003), - [sym__expression] = STATE(3487), - [sym_conditional_expression] = STATE(3855), - [sym_assignment_expression] = STATE(3855), - [sym_pointer_expression] = STATE(2954), - [sym_unary_expression] = STATE(3855), - [sym_binary_expression] = STATE(3855), - [sym_update_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_type_descriptor] = STATE(5265), - [sym_sizeof_expression] = STATE(3855), - [sym_subscript_expression] = STATE(2954), - [sym_call_expression] = STATE(2954), - [sym_field_expression] = STATE(2954), - [sym_compound_literal_expression] = STATE(3855), - [sym_parenthesized_expression] = STATE(2954), - [sym_char_literal] = STATE(3557), - [sym_concatenated_string] = STATE(3557), - [sym_string_literal] = STATE(2955), - [sym_placeholder_type_specifier] = STATE(3003), - [sym_decltype_auto] = STATE(3008), - [sym_decltype] = STATE(2851), - [sym_class_specifier] = STATE(3003), - [sym__class_name] = STATE(5844), - [sym_dependent_type] = STATE(3003), - [sym_template_type] = STATE(4288), - [sym_template_function] = STATE(3855), - [sym_raw_string_literal] = STATE(2955), - [sym_co_await_expression] = STATE(3855), - [sym_new_expression] = STATE(3855), - [sym_delete_expression] = STATE(3855), - [sym_requires_clause] = STATE(3855), - [sym_requires_expression] = STATE(3855), - [sym_lambda_expression] = STATE(3855), - [sym_lambda_capture_specifier] = STATE(4501), - [sym_fold_expression] = STATE(3855), - [sym_parameter_pack_expansion] = STATE(3855), - [sym_type_parameter_pack_expansion] = STATE(5528), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4544), - [sym_qualified_identifier] = STATE(2954), - [sym_qualified_type_identifier] = STATE(4356), - [sym_user_defined_literal] = STATE(3855), - [aux_sym_type_definition_repeat1] = STATE(3306), - [aux_sym_sized_type_specifier_repeat1] = STATE(2022), - [sym_identifier] = ACTIONS(2408), - [anon_sym_LPAREN2] = ACTIONS(2410), - [anon_sym_BANG] = ACTIONS(2412), - [anon_sym_TILDE] = ACTIONS(2412), - [anon_sym_DASH] = ACTIONS(2414), - [anon_sym_PLUS] = ACTIONS(2414), - [anon_sym_STAR] = ACTIONS(2416), - [anon_sym_AMP] = ACTIONS(2416), - [anon_sym_COLON_COLON] = ACTIONS(2418), - [anon_sym_LBRACK] = ACTIONS(1539), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(2420), - [anon_sym_unsigned] = ACTIONS(2420), - [anon_sym_long] = ACTIONS(2420), - [anon_sym_short] = ACTIONS(2420), - [sym_primitive_type] = ACTIONS(2422), - [anon_sym_enum] = ACTIONS(2424), - [anon_sym_class] = ACTIONS(2426), - [anon_sym_struct] = ACTIONS(2428), - [anon_sym_union] = ACTIONS(2430), - [anon_sym_not] = ACTIONS(2414), - [anon_sym_compl] = ACTIONS(2414), - [anon_sym_DASH_DASH] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(2432), - [anon_sym_sizeof] = ACTIONS(2434), - [sym_number_literal] = ACTIONS(2436), - [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_L_DQUOTE] = ACTIONS(2440), - [anon_sym_u_DQUOTE] = ACTIONS(2440), - [anon_sym_U_DQUOTE] = ACTIONS(2440), - [anon_sym_u8_DQUOTE] = ACTIONS(2440), - [anon_sym_DQUOTE] = ACTIONS(2440), - [sym_true] = ACTIONS(2442), - [sym_false] = ACTIONS(2442), - [sym_null] = ACTIONS(2442), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2444), - [anon_sym_decltype] = ACTIONS(2446), - [anon_sym_typename] = ACTIONS(2448), - [anon_sym_template] = ACTIONS(996), - [anon_sym_GT2] = ACTIONS(2660), - [anon_sym_delete] = ACTIONS(2452), - [anon_sym_R_DQUOTE] = ACTIONS(2454), - [anon_sym_LR_DQUOTE] = ACTIONS(2454), - [anon_sym_uR_DQUOTE] = ACTIONS(2454), - [anon_sym_UR_DQUOTE] = ACTIONS(2454), - [anon_sym_u8R_DQUOTE] = ACTIONS(2454), - [anon_sym_co_await] = ACTIONS(2456), - [anon_sym_new] = ACTIONS(2458), - [anon_sym_requires] = ACTIONS(2460), - [sym_this] = ACTIONS(2442), - [sym_nullptr] = ACTIONS(2442), + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token2] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [aux_sym_preproc_else_token1] = ACTIONS(3048), + [aux_sym_preproc_elif_token1] = ACTIONS(3048), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, [485] = { - [sym_identifier] = ACTIONS(2662), - [aux_sym_preproc_include_token1] = ACTIONS(2662), - [aux_sym_preproc_def_token1] = ACTIONS(2662), - [aux_sym_preproc_if_token1] = ACTIONS(2662), - [aux_sym_preproc_if_token2] = ACTIONS(2662), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2662), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2662), - [aux_sym_preproc_else_token1] = ACTIONS(2662), - [aux_sym_preproc_elif_token1] = ACTIONS(2662), - [sym_preproc_directive] = ACTIONS(2662), - [anon_sym_LPAREN2] = ACTIONS(2664), - [anon_sym_BANG] = ACTIONS(2664), - [anon_sym_TILDE] = ACTIONS(2664), - [anon_sym_DASH] = ACTIONS(2662), - [anon_sym_PLUS] = ACTIONS(2662), - [anon_sym_STAR] = ACTIONS(2664), - [anon_sym_AMP_AMP] = ACTIONS(2664), - [anon_sym_AMP] = ACTIONS(2662), - [anon_sym_SEMI] = ACTIONS(2664), - [anon_sym_typedef] = ACTIONS(2662), - [anon_sym_extern] = ACTIONS(2662), - [anon_sym___attribute__] = ACTIONS(2662), - [anon_sym_COLON_COLON] = ACTIONS(2664), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2664), - [anon_sym___declspec] = ACTIONS(2662), - [anon_sym___based] = ACTIONS(2662), - [anon_sym___cdecl] = ACTIONS(2662), - [anon_sym___clrcall] = ACTIONS(2662), - [anon_sym___stdcall] = ACTIONS(2662), - [anon_sym___fastcall] = ACTIONS(2662), - [anon_sym___thiscall] = ACTIONS(2662), - [anon_sym___vectorcall] = ACTIONS(2662), - [anon_sym_LBRACE] = ACTIONS(2664), - [anon_sym_LBRACK] = ACTIONS(2662), - [anon_sym_static] = ACTIONS(2662), - [anon_sym_register] = ACTIONS(2662), - [anon_sym_inline] = ACTIONS(2662), - [anon_sym_thread_local] = ACTIONS(2662), - [anon_sym_const] = ACTIONS(2662), - [anon_sym_volatile] = ACTIONS(2662), - [anon_sym_restrict] = ACTIONS(2662), - [anon_sym__Atomic] = ACTIONS(2662), - [anon_sym_mutable] = ACTIONS(2662), - [anon_sym_constexpr] = ACTIONS(2662), - [anon_sym_constinit] = ACTIONS(2662), - [anon_sym_consteval] = ACTIONS(2662), - [anon_sym_signed] = ACTIONS(2662), - [anon_sym_unsigned] = ACTIONS(2662), - [anon_sym_long] = ACTIONS(2662), - [anon_sym_short] = ACTIONS(2662), - [sym_primitive_type] = ACTIONS(2662), - [anon_sym_enum] = ACTIONS(2662), - [anon_sym_class] = ACTIONS(2662), - [anon_sym_struct] = ACTIONS(2662), - [anon_sym_union] = ACTIONS(2662), - [anon_sym_if] = ACTIONS(2662), - [anon_sym_switch] = ACTIONS(2662), - [anon_sym_case] = ACTIONS(2662), - [anon_sym_default] = ACTIONS(2662), - [anon_sym_while] = ACTIONS(2662), - [anon_sym_do] = ACTIONS(2662), - [anon_sym_for] = ACTIONS(2662), - [anon_sym_return] = ACTIONS(2662), - [anon_sym_break] = ACTIONS(2662), - [anon_sym_continue] = ACTIONS(2662), - [anon_sym_goto] = ACTIONS(2662), - [anon_sym_not] = ACTIONS(2662), - [anon_sym_compl] = ACTIONS(2662), - [anon_sym_DASH_DASH] = ACTIONS(2664), - [anon_sym_PLUS_PLUS] = ACTIONS(2664), - [anon_sym_sizeof] = ACTIONS(2662), - [sym_number_literal] = ACTIONS(2664), - [anon_sym_L_SQUOTE] = ACTIONS(2664), - [anon_sym_u_SQUOTE] = ACTIONS(2664), - [anon_sym_U_SQUOTE] = ACTIONS(2664), - [anon_sym_u8_SQUOTE] = ACTIONS(2664), - [anon_sym_SQUOTE] = ACTIONS(2664), - [anon_sym_L_DQUOTE] = ACTIONS(2664), - [anon_sym_u_DQUOTE] = ACTIONS(2664), - [anon_sym_U_DQUOTE] = ACTIONS(2664), - [anon_sym_u8_DQUOTE] = ACTIONS(2664), - [anon_sym_DQUOTE] = ACTIONS(2664), - [sym_true] = ACTIONS(2662), - [sym_false] = ACTIONS(2662), - [sym_null] = ACTIONS(2662), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2662), - [anon_sym_decltype] = ACTIONS(2662), - [anon_sym_virtual] = ACTIONS(2662), - [anon_sym_explicit] = ACTIONS(2662), - [anon_sym_typename] = ACTIONS(2662), - [anon_sym_template] = ACTIONS(2662), - [anon_sym_operator] = ACTIONS(2662), - [anon_sym_try] = ACTIONS(2662), - [anon_sym_delete] = ACTIONS(2662), - [anon_sym_throw] = ACTIONS(2662), - [anon_sym_namespace] = ACTIONS(2662), - [anon_sym_using] = ACTIONS(2662), - [anon_sym_static_assert] = ACTIONS(2662), - [anon_sym_concept] = ACTIONS(2662), - [anon_sym_co_return] = ACTIONS(2662), - [anon_sym_co_yield] = ACTIONS(2662), - [anon_sym_R_DQUOTE] = ACTIONS(2664), - [anon_sym_LR_DQUOTE] = ACTIONS(2664), - [anon_sym_uR_DQUOTE] = ACTIONS(2664), - [anon_sym_UR_DQUOTE] = ACTIONS(2664), - [anon_sym_u8R_DQUOTE] = ACTIONS(2664), - [anon_sym_co_await] = ACTIONS(2662), - [anon_sym_new] = ACTIONS(2662), - [anon_sym_requires] = ACTIONS(2662), - [sym_this] = ACTIONS(2662), - [sym_nullptr] = ACTIONS(2662), + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token2] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [aux_sym_preproc_else_token1] = ACTIONS(3048), + [aux_sym_preproc_elif_token1] = ACTIONS(3048), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, [486] = { - [sym_identifier] = ACTIONS(2666), - [aux_sym_preproc_include_token1] = ACTIONS(2666), - [aux_sym_preproc_def_token1] = ACTIONS(2666), - [aux_sym_preproc_if_token1] = ACTIONS(2666), - [aux_sym_preproc_if_token2] = ACTIONS(2666), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2666), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2666), - [aux_sym_preproc_else_token1] = ACTIONS(2666), - [aux_sym_preproc_elif_token1] = ACTIONS(2666), - [sym_preproc_directive] = ACTIONS(2666), - [anon_sym_LPAREN2] = ACTIONS(2668), - [anon_sym_BANG] = ACTIONS(2668), - [anon_sym_TILDE] = ACTIONS(2668), - [anon_sym_DASH] = ACTIONS(2666), - [anon_sym_PLUS] = ACTIONS(2666), - [anon_sym_STAR] = ACTIONS(2668), - [anon_sym_AMP_AMP] = ACTIONS(2668), - [anon_sym_AMP] = ACTIONS(2666), - [anon_sym_SEMI] = ACTIONS(2668), - [anon_sym_typedef] = ACTIONS(2666), - [anon_sym_extern] = ACTIONS(2666), - [anon_sym___attribute__] = ACTIONS(2666), - [anon_sym_COLON_COLON] = ACTIONS(2668), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2668), - [anon_sym___declspec] = ACTIONS(2666), - [anon_sym___based] = ACTIONS(2666), - [anon_sym___cdecl] = ACTIONS(2666), - [anon_sym___clrcall] = ACTIONS(2666), - [anon_sym___stdcall] = ACTIONS(2666), - [anon_sym___fastcall] = ACTIONS(2666), - [anon_sym___thiscall] = ACTIONS(2666), - [anon_sym___vectorcall] = ACTIONS(2666), - [anon_sym_LBRACE] = ACTIONS(2668), - [anon_sym_LBRACK] = ACTIONS(2666), - [anon_sym_static] = ACTIONS(2666), - [anon_sym_register] = ACTIONS(2666), - [anon_sym_inline] = ACTIONS(2666), - [anon_sym_thread_local] = ACTIONS(2666), - [anon_sym_const] = ACTIONS(2666), - [anon_sym_volatile] = ACTIONS(2666), - [anon_sym_restrict] = ACTIONS(2666), - [anon_sym__Atomic] = ACTIONS(2666), - [anon_sym_mutable] = ACTIONS(2666), - [anon_sym_constexpr] = ACTIONS(2666), - [anon_sym_constinit] = ACTIONS(2666), - [anon_sym_consteval] = ACTIONS(2666), - [anon_sym_signed] = ACTIONS(2666), - [anon_sym_unsigned] = ACTIONS(2666), - [anon_sym_long] = ACTIONS(2666), - [anon_sym_short] = ACTIONS(2666), - [sym_primitive_type] = ACTIONS(2666), - [anon_sym_enum] = ACTIONS(2666), - [anon_sym_class] = ACTIONS(2666), - [anon_sym_struct] = ACTIONS(2666), - [anon_sym_union] = ACTIONS(2666), - [anon_sym_if] = ACTIONS(2666), - [anon_sym_switch] = ACTIONS(2666), - [anon_sym_case] = ACTIONS(2666), - [anon_sym_default] = ACTIONS(2666), - [anon_sym_while] = ACTIONS(2666), - [anon_sym_do] = ACTIONS(2666), - [anon_sym_for] = ACTIONS(2666), - [anon_sym_return] = ACTIONS(2666), - [anon_sym_break] = ACTIONS(2666), - [anon_sym_continue] = ACTIONS(2666), - [anon_sym_goto] = ACTIONS(2666), - [anon_sym_not] = ACTIONS(2666), - [anon_sym_compl] = ACTIONS(2666), - [anon_sym_DASH_DASH] = ACTIONS(2668), - [anon_sym_PLUS_PLUS] = ACTIONS(2668), - [anon_sym_sizeof] = ACTIONS(2666), - [sym_number_literal] = ACTIONS(2668), - [anon_sym_L_SQUOTE] = ACTIONS(2668), - [anon_sym_u_SQUOTE] = ACTIONS(2668), - [anon_sym_U_SQUOTE] = ACTIONS(2668), - [anon_sym_u8_SQUOTE] = ACTIONS(2668), - [anon_sym_SQUOTE] = ACTIONS(2668), - [anon_sym_L_DQUOTE] = ACTIONS(2668), - [anon_sym_u_DQUOTE] = ACTIONS(2668), - [anon_sym_U_DQUOTE] = ACTIONS(2668), - [anon_sym_u8_DQUOTE] = ACTIONS(2668), - [anon_sym_DQUOTE] = ACTIONS(2668), - [sym_true] = ACTIONS(2666), - [sym_false] = ACTIONS(2666), - [sym_null] = ACTIONS(2666), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2666), - [anon_sym_decltype] = ACTIONS(2666), - [anon_sym_virtual] = ACTIONS(2666), - [anon_sym_explicit] = ACTIONS(2666), - [anon_sym_typename] = ACTIONS(2666), - [anon_sym_template] = ACTIONS(2666), - [anon_sym_operator] = ACTIONS(2666), - [anon_sym_try] = ACTIONS(2666), - [anon_sym_delete] = ACTIONS(2666), - [anon_sym_throw] = ACTIONS(2666), - [anon_sym_namespace] = ACTIONS(2666), - [anon_sym_using] = ACTIONS(2666), - [anon_sym_static_assert] = ACTIONS(2666), - [anon_sym_concept] = ACTIONS(2666), - [anon_sym_co_return] = ACTIONS(2666), - [anon_sym_co_yield] = ACTIONS(2666), - [anon_sym_R_DQUOTE] = ACTIONS(2668), - [anon_sym_LR_DQUOTE] = ACTIONS(2668), - [anon_sym_uR_DQUOTE] = ACTIONS(2668), - [anon_sym_UR_DQUOTE] = ACTIONS(2668), - [anon_sym_u8R_DQUOTE] = ACTIONS(2668), - [anon_sym_co_await] = ACTIONS(2666), - [anon_sym_new] = ACTIONS(2666), - [anon_sym_requires] = ACTIONS(2666), - [sym_this] = ACTIONS(2666), - [sym_nullptr] = ACTIONS(2666), + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token2] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [aux_sym_preproc_else_token1] = ACTIONS(3028), + [aux_sym_preproc_elif_token1] = ACTIONS(3028), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, [487] = { - [sym_identifier] = ACTIONS(2670), - [aux_sym_preproc_include_token1] = ACTIONS(2670), - [aux_sym_preproc_def_token1] = ACTIONS(2670), - [aux_sym_preproc_if_token1] = ACTIONS(2670), - [aux_sym_preproc_if_token2] = ACTIONS(2670), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2670), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2670), - [aux_sym_preproc_else_token1] = ACTIONS(2670), - [aux_sym_preproc_elif_token1] = ACTIONS(2670), - [sym_preproc_directive] = ACTIONS(2670), - [anon_sym_LPAREN2] = ACTIONS(2672), - [anon_sym_BANG] = ACTIONS(2672), - [anon_sym_TILDE] = ACTIONS(2672), - [anon_sym_DASH] = ACTIONS(2670), - [anon_sym_PLUS] = ACTIONS(2670), - [anon_sym_STAR] = ACTIONS(2672), - [anon_sym_AMP_AMP] = ACTIONS(2672), - [anon_sym_AMP] = ACTIONS(2670), - [anon_sym_SEMI] = ACTIONS(2672), - [anon_sym_typedef] = ACTIONS(2670), - [anon_sym_extern] = ACTIONS(2670), - [anon_sym___attribute__] = ACTIONS(2670), - [anon_sym_COLON_COLON] = ACTIONS(2672), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2672), - [anon_sym___declspec] = ACTIONS(2670), - [anon_sym___based] = ACTIONS(2670), - [anon_sym___cdecl] = ACTIONS(2670), - [anon_sym___clrcall] = ACTIONS(2670), - [anon_sym___stdcall] = ACTIONS(2670), - [anon_sym___fastcall] = ACTIONS(2670), - [anon_sym___thiscall] = ACTIONS(2670), - [anon_sym___vectorcall] = ACTIONS(2670), - [anon_sym_LBRACE] = ACTIONS(2672), - [anon_sym_LBRACK] = ACTIONS(2670), - [anon_sym_static] = ACTIONS(2670), - [anon_sym_register] = ACTIONS(2670), - [anon_sym_inline] = ACTIONS(2670), - [anon_sym_thread_local] = ACTIONS(2670), - [anon_sym_const] = ACTIONS(2670), - [anon_sym_volatile] = ACTIONS(2670), - [anon_sym_restrict] = ACTIONS(2670), - [anon_sym__Atomic] = ACTIONS(2670), - [anon_sym_mutable] = ACTIONS(2670), - [anon_sym_constexpr] = ACTIONS(2670), - [anon_sym_constinit] = ACTIONS(2670), - [anon_sym_consteval] = ACTIONS(2670), - [anon_sym_signed] = ACTIONS(2670), - [anon_sym_unsigned] = ACTIONS(2670), - [anon_sym_long] = ACTIONS(2670), - [anon_sym_short] = ACTIONS(2670), - [sym_primitive_type] = ACTIONS(2670), - [anon_sym_enum] = ACTIONS(2670), - [anon_sym_class] = ACTIONS(2670), - [anon_sym_struct] = ACTIONS(2670), - [anon_sym_union] = ACTIONS(2670), - [anon_sym_if] = ACTIONS(2670), - [anon_sym_switch] = ACTIONS(2670), - [anon_sym_case] = ACTIONS(2670), - [anon_sym_default] = ACTIONS(2670), - [anon_sym_while] = ACTIONS(2670), - [anon_sym_do] = ACTIONS(2670), - [anon_sym_for] = ACTIONS(2670), - [anon_sym_return] = ACTIONS(2670), - [anon_sym_break] = ACTIONS(2670), - [anon_sym_continue] = ACTIONS(2670), - [anon_sym_goto] = ACTIONS(2670), - [anon_sym_not] = ACTIONS(2670), - [anon_sym_compl] = ACTIONS(2670), - [anon_sym_DASH_DASH] = ACTIONS(2672), - [anon_sym_PLUS_PLUS] = ACTIONS(2672), - [anon_sym_sizeof] = ACTIONS(2670), - [sym_number_literal] = ACTIONS(2672), - [anon_sym_L_SQUOTE] = ACTIONS(2672), - [anon_sym_u_SQUOTE] = ACTIONS(2672), - [anon_sym_U_SQUOTE] = ACTIONS(2672), - [anon_sym_u8_SQUOTE] = ACTIONS(2672), - [anon_sym_SQUOTE] = ACTIONS(2672), - [anon_sym_L_DQUOTE] = ACTIONS(2672), - [anon_sym_u_DQUOTE] = ACTIONS(2672), - [anon_sym_U_DQUOTE] = ACTIONS(2672), - [anon_sym_u8_DQUOTE] = ACTIONS(2672), - [anon_sym_DQUOTE] = ACTIONS(2672), - [sym_true] = ACTIONS(2670), - [sym_false] = ACTIONS(2670), - [sym_null] = ACTIONS(2670), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2670), - [anon_sym_decltype] = ACTIONS(2670), - [anon_sym_virtual] = ACTIONS(2670), - [anon_sym_explicit] = ACTIONS(2670), - [anon_sym_typename] = ACTIONS(2670), - [anon_sym_template] = ACTIONS(2670), - [anon_sym_operator] = ACTIONS(2670), - [anon_sym_try] = ACTIONS(2670), - [anon_sym_delete] = ACTIONS(2670), - [anon_sym_throw] = ACTIONS(2670), - [anon_sym_namespace] = ACTIONS(2670), - [anon_sym_using] = ACTIONS(2670), - [anon_sym_static_assert] = ACTIONS(2670), - [anon_sym_concept] = ACTIONS(2670), - [anon_sym_co_return] = ACTIONS(2670), - [anon_sym_co_yield] = ACTIONS(2670), - [anon_sym_R_DQUOTE] = ACTIONS(2672), - [anon_sym_LR_DQUOTE] = ACTIONS(2672), - [anon_sym_uR_DQUOTE] = ACTIONS(2672), - [anon_sym_UR_DQUOTE] = ACTIONS(2672), - [anon_sym_u8R_DQUOTE] = ACTIONS(2672), - [anon_sym_co_await] = ACTIONS(2670), - [anon_sym_new] = ACTIONS(2670), - [anon_sym_requires] = ACTIONS(2670), - [sym_this] = ACTIONS(2670), - [sym_nullptr] = ACTIONS(2670), + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token2] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [aux_sym_preproc_else_token1] = ACTIONS(3048), + [aux_sym_preproc_elif_token1] = ACTIONS(3048), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, [488] = { - [sym_identifier] = ACTIONS(2674), - [aux_sym_preproc_include_token1] = ACTIONS(2674), - [aux_sym_preproc_def_token1] = ACTIONS(2674), - [aux_sym_preproc_if_token1] = ACTIONS(2674), - [aux_sym_preproc_if_token2] = ACTIONS(2674), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2674), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2674), - [aux_sym_preproc_else_token1] = ACTIONS(2674), - [aux_sym_preproc_elif_token1] = ACTIONS(2674), - [sym_preproc_directive] = ACTIONS(2674), - [anon_sym_LPAREN2] = ACTIONS(2676), - [anon_sym_BANG] = ACTIONS(2676), - [anon_sym_TILDE] = ACTIONS(2676), - [anon_sym_DASH] = ACTIONS(2674), - [anon_sym_PLUS] = ACTIONS(2674), - [anon_sym_STAR] = ACTIONS(2676), - [anon_sym_AMP_AMP] = ACTIONS(2676), - [anon_sym_AMP] = ACTIONS(2674), - [anon_sym_SEMI] = ACTIONS(2676), - [anon_sym_typedef] = ACTIONS(2674), - [anon_sym_extern] = ACTIONS(2674), - [anon_sym___attribute__] = ACTIONS(2674), - [anon_sym_COLON_COLON] = ACTIONS(2676), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2676), - [anon_sym___declspec] = ACTIONS(2674), - [anon_sym___based] = ACTIONS(2674), - [anon_sym___cdecl] = ACTIONS(2674), - [anon_sym___clrcall] = ACTIONS(2674), - [anon_sym___stdcall] = ACTIONS(2674), - [anon_sym___fastcall] = ACTIONS(2674), - [anon_sym___thiscall] = ACTIONS(2674), - [anon_sym___vectorcall] = ACTIONS(2674), - [anon_sym_LBRACE] = ACTIONS(2676), - [anon_sym_LBRACK] = ACTIONS(2674), - [anon_sym_static] = ACTIONS(2674), - [anon_sym_register] = ACTIONS(2674), - [anon_sym_inline] = ACTIONS(2674), - [anon_sym_thread_local] = ACTIONS(2674), - [anon_sym_const] = ACTIONS(2674), - [anon_sym_volatile] = ACTIONS(2674), - [anon_sym_restrict] = ACTIONS(2674), - [anon_sym__Atomic] = ACTIONS(2674), - [anon_sym_mutable] = ACTIONS(2674), - [anon_sym_constexpr] = ACTIONS(2674), - [anon_sym_constinit] = ACTIONS(2674), - [anon_sym_consteval] = ACTIONS(2674), - [anon_sym_signed] = ACTIONS(2674), - [anon_sym_unsigned] = ACTIONS(2674), - [anon_sym_long] = ACTIONS(2674), - [anon_sym_short] = ACTIONS(2674), - [sym_primitive_type] = ACTIONS(2674), - [anon_sym_enum] = ACTIONS(2674), - [anon_sym_class] = ACTIONS(2674), - [anon_sym_struct] = ACTIONS(2674), - [anon_sym_union] = ACTIONS(2674), - [anon_sym_if] = ACTIONS(2674), - [anon_sym_switch] = ACTIONS(2674), - [anon_sym_case] = ACTIONS(2674), - [anon_sym_default] = ACTIONS(2674), - [anon_sym_while] = ACTIONS(2674), - [anon_sym_do] = ACTIONS(2674), - [anon_sym_for] = ACTIONS(2674), - [anon_sym_return] = ACTIONS(2674), - [anon_sym_break] = ACTIONS(2674), - [anon_sym_continue] = ACTIONS(2674), - [anon_sym_goto] = ACTIONS(2674), - [anon_sym_not] = ACTIONS(2674), - [anon_sym_compl] = ACTIONS(2674), - [anon_sym_DASH_DASH] = ACTIONS(2676), - [anon_sym_PLUS_PLUS] = ACTIONS(2676), - [anon_sym_sizeof] = ACTIONS(2674), - [sym_number_literal] = ACTIONS(2676), - [anon_sym_L_SQUOTE] = ACTIONS(2676), - [anon_sym_u_SQUOTE] = ACTIONS(2676), - [anon_sym_U_SQUOTE] = ACTIONS(2676), - [anon_sym_u8_SQUOTE] = ACTIONS(2676), - [anon_sym_SQUOTE] = ACTIONS(2676), - [anon_sym_L_DQUOTE] = ACTIONS(2676), - [anon_sym_u_DQUOTE] = ACTIONS(2676), - [anon_sym_U_DQUOTE] = ACTIONS(2676), - [anon_sym_u8_DQUOTE] = ACTIONS(2676), - [anon_sym_DQUOTE] = ACTIONS(2676), - [sym_true] = ACTIONS(2674), - [sym_false] = ACTIONS(2674), - [sym_null] = ACTIONS(2674), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2674), - [anon_sym_decltype] = ACTIONS(2674), - [anon_sym_virtual] = ACTIONS(2674), - [anon_sym_explicit] = ACTIONS(2674), - [anon_sym_typename] = ACTIONS(2674), - [anon_sym_template] = ACTIONS(2674), - [anon_sym_operator] = ACTIONS(2674), - [anon_sym_try] = ACTIONS(2674), - [anon_sym_delete] = ACTIONS(2674), - [anon_sym_throw] = ACTIONS(2674), - [anon_sym_namespace] = ACTIONS(2674), - [anon_sym_using] = ACTIONS(2674), - [anon_sym_static_assert] = ACTIONS(2674), - [anon_sym_concept] = ACTIONS(2674), - [anon_sym_co_return] = ACTIONS(2674), - [anon_sym_co_yield] = ACTIONS(2674), - [anon_sym_R_DQUOTE] = ACTIONS(2676), - [anon_sym_LR_DQUOTE] = ACTIONS(2676), - [anon_sym_uR_DQUOTE] = ACTIONS(2676), - [anon_sym_UR_DQUOTE] = ACTIONS(2676), - [anon_sym_u8R_DQUOTE] = ACTIONS(2676), - [anon_sym_co_await] = ACTIONS(2674), - [anon_sym_new] = ACTIONS(2674), - [anon_sym_requires] = ACTIONS(2674), - [sym_this] = ACTIONS(2674), - [sym_nullptr] = ACTIONS(2674), + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token2] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [aux_sym_preproc_else_token1] = ACTIONS(3048), + [aux_sym_preproc_elif_token1] = ACTIONS(3048), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, [489] = { - [sym_identifier] = ACTIONS(2678), - [aux_sym_preproc_include_token1] = ACTIONS(2678), - [aux_sym_preproc_def_token1] = ACTIONS(2678), - [aux_sym_preproc_if_token1] = ACTIONS(2678), - [aux_sym_preproc_if_token2] = ACTIONS(2678), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2678), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2678), - [aux_sym_preproc_else_token1] = ACTIONS(2678), - [aux_sym_preproc_elif_token1] = ACTIONS(2678), - [sym_preproc_directive] = ACTIONS(2678), - [anon_sym_LPAREN2] = ACTIONS(2680), - [anon_sym_BANG] = ACTIONS(2680), - [anon_sym_TILDE] = ACTIONS(2680), - [anon_sym_DASH] = ACTIONS(2678), - [anon_sym_PLUS] = ACTIONS(2678), - [anon_sym_STAR] = ACTIONS(2680), - [anon_sym_AMP_AMP] = ACTIONS(2680), - [anon_sym_AMP] = ACTIONS(2678), - [anon_sym_SEMI] = ACTIONS(2680), - [anon_sym_typedef] = ACTIONS(2678), - [anon_sym_extern] = ACTIONS(2678), - [anon_sym___attribute__] = ACTIONS(2678), - [anon_sym_COLON_COLON] = ACTIONS(2680), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2680), - [anon_sym___declspec] = ACTIONS(2678), - [anon_sym___based] = ACTIONS(2678), - [anon_sym___cdecl] = ACTIONS(2678), - [anon_sym___clrcall] = ACTIONS(2678), - [anon_sym___stdcall] = ACTIONS(2678), - [anon_sym___fastcall] = ACTIONS(2678), - [anon_sym___thiscall] = ACTIONS(2678), - [anon_sym___vectorcall] = ACTIONS(2678), - [anon_sym_LBRACE] = ACTIONS(2680), - [anon_sym_LBRACK] = ACTIONS(2678), - [anon_sym_static] = ACTIONS(2678), - [anon_sym_register] = ACTIONS(2678), - [anon_sym_inline] = ACTIONS(2678), - [anon_sym_thread_local] = ACTIONS(2678), - [anon_sym_const] = ACTIONS(2678), - [anon_sym_volatile] = ACTIONS(2678), - [anon_sym_restrict] = ACTIONS(2678), - [anon_sym__Atomic] = ACTIONS(2678), - [anon_sym_mutable] = ACTIONS(2678), - [anon_sym_constexpr] = ACTIONS(2678), - [anon_sym_constinit] = ACTIONS(2678), - [anon_sym_consteval] = ACTIONS(2678), - [anon_sym_signed] = ACTIONS(2678), - [anon_sym_unsigned] = ACTIONS(2678), - [anon_sym_long] = ACTIONS(2678), - [anon_sym_short] = ACTIONS(2678), - [sym_primitive_type] = ACTIONS(2678), - [anon_sym_enum] = ACTIONS(2678), - [anon_sym_class] = ACTIONS(2678), - [anon_sym_struct] = ACTIONS(2678), - [anon_sym_union] = ACTIONS(2678), - [anon_sym_if] = ACTIONS(2678), - [anon_sym_switch] = ACTIONS(2678), - [anon_sym_case] = ACTIONS(2678), - [anon_sym_default] = ACTIONS(2678), - [anon_sym_while] = ACTIONS(2678), - [anon_sym_do] = ACTIONS(2678), - [anon_sym_for] = ACTIONS(2678), - [anon_sym_return] = ACTIONS(2678), - [anon_sym_break] = ACTIONS(2678), - [anon_sym_continue] = ACTIONS(2678), - [anon_sym_goto] = ACTIONS(2678), - [anon_sym_not] = ACTIONS(2678), - [anon_sym_compl] = ACTIONS(2678), - [anon_sym_DASH_DASH] = ACTIONS(2680), - [anon_sym_PLUS_PLUS] = ACTIONS(2680), - [anon_sym_sizeof] = ACTIONS(2678), - [sym_number_literal] = ACTIONS(2680), - [anon_sym_L_SQUOTE] = ACTIONS(2680), - [anon_sym_u_SQUOTE] = ACTIONS(2680), - [anon_sym_U_SQUOTE] = ACTIONS(2680), - [anon_sym_u8_SQUOTE] = ACTIONS(2680), - [anon_sym_SQUOTE] = ACTIONS(2680), - [anon_sym_L_DQUOTE] = ACTIONS(2680), - [anon_sym_u_DQUOTE] = ACTIONS(2680), - [anon_sym_U_DQUOTE] = ACTIONS(2680), - [anon_sym_u8_DQUOTE] = ACTIONS(2680), - [anon_sym_DQUOTE] = ACTIONS(2680), - [sym_true] = ACTIONS(2678), - [sym_false] = ACTIONS(2678), - [sym_null] = ACTIONS(2678), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2678), - [anon_sym_decltype] = ACTIONS(2678), - [anon_sym_virtual] = ACTIONS(2678), - [anon_sym_explicit] = ACTIONS(2678), - [anon_sym_typename] = ACTIONS(2678), - [anon_sym_template] = ACTIONS(2678), - [anon_sym_operator] = ACTIONS(2678), - [anon_sym_try] = ACTIONS(2678), - [anon_sym_delete] = ACTIONS(2678), - [anon_sym_throw] = ACTIONS(2678), - [anon_sym_namespace] = ACTIONS(2678), - [anon_sym_using] = ACTIONS(2678), - [anon_sym_static_assert] = ACTIONS(2678), - [anon_sym_concept] = ACTIONS(2678), - [anon_sym_co_return] = ACTIONS(2678), - [anon_sym_co_yield] = ACTIONS(2678), - [anon_sym_R_DQUOTE] = ACTIONS(2680), - [anon_sym_LR_DQUOTE] = ACTIONS(2680), - [anon_sym_uR_DQUOTE] = ACTIONS(2680), - [anon_sym_UR_DQUOTE] = ACTIONS(2680), - [anon_sym_u8R_DQUOTE] = ACTIONS(2680), - [anon_sym_co_await] = ACTIONS(2678), - [anon_sym_new] = ACTIONS(2678), - [anon_sym_requires] = ACTIONS(2678), - [sym_this] = ACTIONS(2678), - [sym_nullptr] = ACTIONS(2678), + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token2] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [aux_sym_preproc_else_token1] = ACTIONS(3048), + [aux_sym_preproc_elif_token1] = ACTIONS(3048), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, [490] = { - [sym_identifier] = ACTIONS(1729), - [aux_sym_preproc_include_token1] = ACTIONS(1729), - [aux_sym_preproc_def_token1] = ACTIONS(1729), - [aux_sym_preproc_if_token1] = ACTIONS(1729), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1729), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1729), - [sym_preproc_directive] = ACTIONS(1729), - [anon_sym_LPAREN2] = ACTIONS(1727), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_PLUS] = ACTIONS(1729), - [anon_sym_STAR] = ACTIONS(1727), - [anon_sym_AMP_AMP] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1729), - [anon_sym_SEMI] = ACTIONS(1727), - [anon_sym_typedef] = ACTIONS(1729), - [anon_sym_extern] = ACTIONS(1729), - [anon_sym___attribute__] = ACTIONS(1729), - [anon_sym_COLON_COLON] = ACTIONS(1727), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1727), - [anon_sym___declspec] = ACTIONS(1729), - [anon_sym___based] = ACTIONS(1729), - [anon_sym___cdecl] = ACTIONS(1729), - [anon_sym___clrcall] = ACTIONS(1729), - [anon_sym___stdcall] = ACTIONS(1729), - [anon_sym___fastcall] = ACTIONS(1729), - [anon_sym___thiscall] = ACTIONS(1729), - [anon_sym___vectorcall] = ACTIONS(1729), - [anon_sym_LBRACE] = ACTIONS(1727), - [anon_sym_RBRACE] = ACTIONS(1727), - [anon_sym_LBRACK] = ACTIONS(1729), - [anon_sym_static] = ACTIONS(1729), - [anon_sym_register] = ACTIONS(1729), - [anon_sym_inline] = ACTIONS(1729), - [anon_sym_thread_local] = ACTIONS(1729), - [anon_sym_const] = ACTIONS(1729), - [anon_sym_volatile] = ACTIONS(1729), - [anon_sym_restrict] = ACTIONS(1729), - [anon_sym__Atomic] = ACTIONS(1729), - [anon_sym_mutable] = ACTIONS(1729), - [anon_sym_constexpr] = ACTIONS(1729), - [anon_sym_constinit] = ACTIONS(1729), - [anon_sym_consteval] = ACTIONS(1729), - [anon_sym_signed] = ACTIONS(1729), - [anon_sym_unsigned] = ACTIONS(1729), - [anon_sym_long] = ACTIONS(1729), - [anon_sym_short] = ACTIONS(1729), - [sym_primitive_type] = ACTIONS(1729), - [anon_sym_enum] = ACTIONS(1729), - [anon_sym_class] = ACTIONS(1729), - [anon_sym_struct] = ACTIONS(1729), - [anon_sym_union] = ACTIONS(1729), - [anon_sym_if] = ACTIONS(1729), - [anon_sym_else] = ACTIONS(1729), - [anon_sym_switch] = ACTIONS(1729), - [anon_sym_case] = ACTIONS(1729), - [anon_sym_default] = ACTIONS(1729), - [anon_sym_while] = ACTIONS(1729), - [anon_sym_do] = ACTIONS(1729), - [anon_sym_for] = ACTIONS(1729), - [anon_sym_return] = ACTIONS(1729), - [anon_sym_break] = ACTIONS(1729), - [anon_sym_continue] = ACTIONS(1729), - [anon_sym_goto] = ACTIONS(1729), - [anon_sym_not] = ACTIONS(1729), - [anon_sym_compl] = ACTIONS(1729), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_sizeof] = ACTIONS(1729), - [sym_number_literal] = ACTIONS(1727), - [anon_sym_L_SQUOTE] = ACTIONS(1727), - [anon_sym_u_SQUOTE] = ACTIONS(1727), - [anon_sym_U_SQUOTE] = ACTIONS(1727), - [anon_sym_u8_SQUOTE] = ACTIONS(1727), - [anon_sym_SQUOTE] = ACTIONS(1727), - [anon_sym_L_DQUOTE] = ACTIONS(1727), - [anon_sym_u_DQUOTE] = ACTIONS(1727), - [anon_sym_U_DQUOTE] = ACTIONS(1727), - [anon_sym_u8_DQUOTE] = ACTIONS(1727), - [anon_sym_DQUOTE] = ACTIONS(1727), - [sym_true] = ACTIONS(1729), - [sym_false] = ACTIONS(1729), - [sym_null] = ACTIONS(1729), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1729), - [anon_sym_decltype] = ACTIONS(1729), - [anon_sym_virtual] = ACTIONS(1729), - [anon_sym_explicit] = ACTIONS(1729), - [anon_sym_typename] = ACTIONS(1729), - [anon_sym_template] = ACTIONS(1729), - [anon_sym_operator] = ACTIONS(1729), - [anon_sym_try] = ACTIONS(1729), - [anon_sym_delete] = ACTIONS(1729), - [anon_sym_throw] = ACTIONS(1729), - [anon_sym_namespace] = ACTIONS(1729), - [anon_sym_using] = ACTIONS(1729), - [anon_sym_static_assert] = ACTIONS(1729), - [anon_sym_concept] = ACTIONS(1729), - [anon_sym_co_return] = ACTIONS(1729), - [anon_sym_co_yield] = ACTIONS(1729), - [anon_sym_catch] = ACTIONS(1729), - [anon_sym_R_DQUOTE] = ACTIONS(1727), - [anon_sym_LR_DQUOTE] = ACTIONS(1727), - [anon_sym_uR_DQUOTE] = ACTIONS(1727), - [anon_sym_UR_DQUOTE] = ACTIONS(1727), - [anon_sym_u8R_DQUOTE] = ACTIONS(1727), - [anon_sym_co_await] = ACTIONS(1729), - [anon_sym_new] = ACTIONS(1729), - [anon_sym_requires] = ACTIONS(1729), - [sym_this] = ACTIONS(1729), - [sym_nullptr] = ACTIONS(1729), + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token2] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [aux_sym_preproc_else_token1] = ACTIONS(3048), + [aux_sym_preproc_elif_token1] = ACTIONS(3048), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, [491] = { - [sym_identifier] = ACTIONS(2682), - [aux_sym_preproc_include_token1] = ACTIONS(2682), - [aux_sym_preproc_def_token1] = ACTIONS(2682), - [aux_sym_preproc_if_token1] = ACTIONS(2682), - [aux_sym_preproc_if_token2] = ACTIONS(2682), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2682), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2682), - [aux_sym_preproc_else_token1] = ACTIONS(2682), - [aux_sym_preproc_elif_token1] = ACTIONS(2682), - [sym_preproc_directive] = ACTIONS(2682), - [anon_sym_LPAREN2] = ACTIONS(2684), - [anon_sym_BANG] = ACTIONS(2684), - [anon_sym_TILDE] = ACTIONS(2684), - [anon_sym_DASH] = ACTIONS(2682), - [anon_sym_PLUS] = ACTIONS(2682), - [anon_sym_STAR] = ACTIONS(2684), - [anon_sym_AMP_AMP] = ACTIONS(2684), - [anon_sym_AMP] = ACTIONS(2682), - [anon_sym_SEMI] = ACTIONS(2684), - [anon_sym_typedef] = ACTIONS(2682), - [anon_sym_extern] = ACTIONS(2682), - [anon_sym___attribute__] = ACTIONS(2682), - [anon_sym_COLON_COLON] = ACTIONS(2684), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2684), - [anon_sym___declspec] = ACTIONS(2682), - [anon_sym___based] = ACTIONS(2682), - [anon_sym___cdecl] = ACTIONS(2682), - [anon_sym___clrcall] = ACTIONS(2682), - [anon_sym___stdcall] = ACTIONS(2682), - [anon_sym___fastcall] = ACTIONS(2682), - [anon_sym___thiscall] = ACTIONS(2682), - [anon_sym___vectorcall] = ACTIONS(2682), - [anon_sym_LBRACE] = ACTIONS(2684), - [anon_sym_LBRACK] = ACTIONS(2682), - [anon_sym_static] = ACTIONS(2682), - [anon_sym_register] = ACTIONS(2682), - [anon_sym_inline] = ACTIONS(2682), - [anon_sym_thread_local] = ACTIONS(2682), - [anon_sym_const] = ACTIONS(2682), - [anon_sym_volatile] = ACTIONS(2682), - [anon_sym_restrict] = ACTIONS(2682), - [anon_sym__Atomic] = ACTIONS(2682), - [anon_sym_mutable] = ACTIONS(2682), - [anon_sym_constexpr] = ACTIONS(2682), - [anon_sym_constinit] = ACTIONS(2682), - [anon_sym_consteval] = ACTIONS(2682), - [anon_sym_signed] = ACTIONS(2682), - [anon_sym_unsigned] = ACTIONS(2682), - [anon_sym_long] = ACTIONS(2682), - [anon_sym_short] = ACTIONS(2682), - [sym_primitive_type] = ACTIONS(2682), - [anon_sym_enum] = ACTIONS(2682), - [anon_sym_class] = ACTIONS(2682), - [anon_sym_struct] = ACTIONS(2682), - [anon_sym_union] = ACTIONS(2682), - [anon_sym_if] = ACTIONS(2682), - [anon_sym_switch] = ACTIONS(2682), - [anon_sym_case] = ACTIONS(2682), - [anon_sym_default] = ACTIONS(2682), - [anon_sym_while] = ACTIONS(2682), - [anon_sym_do] = ACTIONS(2682), - [anon_sym_for] = ACTIONS(2682), - [anon_sym_return] = ACTIONS(2682), - [anon_sym_break] = ACTIONS(2682), - [anon_sym_continue] = ACTIONS(2682), - [anon_sym_goto] = ACTIONS(2682), - [anon_sym_not] = ACTIONS(2682), - [anon_sym_compl] = ACTIONS(2682), - [anon_sym_DASH_DASH] = ACTIONS(2684), - [anon_sym_PLUS_PLUS] = ACTIONS(2684), - [anon_sym_sizeof] = ACTIONS(2682), - [sym_number_literal] = ACTIONS(2684), - [anon_sym_L_SQUOTE] = ACTIONS(2684), - [anon_sym_u_SQUOTE] = ACTIONS(2684), - [anon_sym_U_SQUOTE] = ACTIONS(2684), - [anon_sym_u8_SQUOTE] = ACTIONS(2684), - [anon_sym_SQUOTE] = ACTIONS(2684), - [anon_sym_L_DQUOTE] = ACTIONS(2684), - [anon_sym_u_DQUOTE] = ACTIONS(2684), - [anon_sym_U_DQUOTE] = ACTIONS(2684), - [anon_sym_u8_DQUOTE] = ACTIONS(2684), - [anon_sym_DQUOTE] = ACTIONS(2684), - [sym_true] = ACTIONS(2682), - [sym_false] = ACTIONS(2682), - [sym_null] = ACTIONS(2682), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2682), - [anon_sym_decltype] = ACTIONS(2682), - [anon_sym_virtual] = ACTIONS(2682), - [anon_sym_explicit] = ACTIONS(2682), - [anon_sym_typename] = ACTIONS(2682), - [anon_sym_template] = ACTIONS(2682), - [anon_sym_operator] = ACTIONS(2682), - [anon_sym_try] = ACTIONS(2682), - [anon_sym_delete] = ACTIONS(2682), - [anon_sym_throw] = ACTIONS(2682), - [anon_sym_namespace] = ACTIONS(2682), - [anon_sym_using] = ACTIONS(2682), - [anon_sym_static_assert] = ACTIONS(2682), - [anon_sym_concept] = ACTIONS(2682), - [anon_sym_co_return] = ACTIONS(2682), - [anon_sym_co_yield] = ACTIONS(2682), - [anon_sym_R_DQUOTE] = ACTIONS(2684), - [anon_sym_LR_DQUOTE] = ACTIONS(2684), - [anon_sym_uR_DQUOTE] = ACTIONS(2684), - [anon_sym_UR_DQUOTE] = ACTIONS(2684), - [anon_sym_u8R_DQUOTE] = ACTIONS(2684), - [anon_sym_co_await] = ACTIONS(2682), - [anon_sym_new] = ACTIONS(2682), - [anon_sym_requires] = ACTIONS(2682), - [sym_this] = ACTIONS(2682), - [sym_nullptr] = ACTIONS(2682), + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token2] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [aux_sym_preproc_else_token1] = ACTIONS(3048), + [aux_sym_preproc_elif_token1] = ACTIONS(3048), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, [492] = { - [sym_identifier] = ACTIONS(2404), - [aux_sym_preproc_include_token1] = ACTIONS(2404), - [aux_sym_preproc_def_token1] = ACTIONS(2404), - [aux_sym_preproc_if_token1] = ACTIONS(2404), - [aux_sym_preproc_if_token2] = ACTIONS(2404), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2404), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2404), - [sym_preproc_directive] = ACTIONS(2404), - [anon_sym_LPAREN2] = ACTIONS(2406), - [anon_sym_BANG] = ACTIONS(2406), - [anon_sym_TILDE] = ACTIONS(2406), - [anon_sym_DASH] = ACTIONS(2404), - [anon_sym_PLUS] = ACTIONS(2404), - [anon_sym_STAR] = ACTIONS(2406), - [anon_sym_AMP_AMP] = ACTIONS(2406), - [anon_sym_AMP] = ACTIONS(2404), - [anon_sym_SEMI] = ACTIONS(2406), - [anon_sym_typedef] = ACTIONS(2404), - [anon_sym_extern] = ACTIONS(2404), - [anon_sym___attribute__] = ACTIONS(2404), - [anon_sym_COLON_COLON] = ACTIONS(2406), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2406), - [anon_sym___declspec] = ACTIONS(2404), - [anon_sym___based] = ACTIONS(2404), - [anon_sym___cdecl] = ACTIONS(2404), - [anon_sym___clrcall] = ACTIONS(2404), - [anon_sym___stdcall] = ACTIONS(2404), - [anon_sym___fastcall] = ACTIONS(2404), - [anon_sym___thiscall] = ACTIONS(2404), - [anon_sym___vectorcall] = ACTIONS(2404), - [anon_sym_LBRACE] = ACTIONS(2406), - [anon_sym_LBRACK] = ACTIONS(2404), - [anon_sym_static] = ACTIONS(2404), - [anon_sym_register] = ACTIONS(2404), - [anon_sym_inline] = ACTIONS(2404), - [anon_sym_thread_local] = ACTIONS(2404), - [anon_sym_const] = ACTIONS(2404), - [anon_sym_volatile] = ACTIONS(2404), - [anon_sym_restrict] = ACTIONS(2404), - [anon_sym__Atomic] = ACTIONS(2404), - [anon_sym_mutable] = ACTIONS(2404), - [anon_sym_constexpr] = ACTIONS(2404), - [anon_sym_constinit] = ACTIONS(2404), - [anon_sym_consteval] = ACTIONS(2404), - [anon_sym_signed] = ACTIONS(2404), - [anon_sym_unsigned] = ACTIONS(2404), - [anon_sym_long] = ACTIONS(2404), - [anon_sym_short] = ACTIONS(2404), - [sym_primitive_type] = ACTIONS(2404), - [anon_sym_enum] = ACTIONS(2404), - [anon_sym_class] = ACTIONS(2404), - [anon_sym_struct] = ACTIONS(2404), - [anon_sym_union] = ACTIONS(2404), - [anon_sym_if] = ACTIONS(2404), - [anon_sym_else] = ACTIONS(2404), - [anon_sym_switch] = ACTIONS(2404), - [anon_sym_case] = ACTIONS(2404), - [anon_sym_default] = ACTIONS(2404), - [anon_sym_while] = ACTIONS(2404), - [anon_sym_do] = ACTIONS(2404), - [anon_sym_for] = ACTIONS(2404), - [anon_sym_return] = ACTIONS(2404), - [anon_sym_break] = ACTIONS(2404), - [anon_sym_continue] = ACTIONS(2404), - [anon_sym_goto] = ACTIONS(2404), - [anon_sym_not] = ACTIONS(2404), - [anon_sym_compl] = ACTIONS(2404), - [anon_sym_DASH_DASH] = ACTIONS(2406), - [anon_sym_PLUS_PLUS] = ACTIONS(2406), - [anon_sym_sizeof] = ACTIONS(2404), - [sym_number_literal] = ACTIONS(2406), - [anon_sym_L_SQUOTE] = ACTIONS(2406), - [anon_sym_u_SQUOTE] = ACTIONS(2406), - [anon_sym_U_SQUOTE] = ACTIONS(2406), - [anon_sym_u8_SQUOTE] = ACTIONS(2406), - [anon_sym_SQUOTE] = ACTIONS(2406), - [anon_sym_L_DQUOTE] = ACTIONS(2406), - [anon_sym_u_DQUOTE] = ACTIONS(2406), - [anon_sym_U_DQUOTE] = ACTIONS(2406), - [anon_sym_u8_DQUOTE] = ACTIONS(2406), - [anon_sym_DQUOTE] = ACTIONS(2406), - [sym_true] = ACTIONS(2404), - [sym_false] = ACTIONS(2404), - [sym_null] = ACTIONS(2404), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2404), - [anon_sym_decltype] = ACTIONS(2404), - [anon_sym_virtual] = ACTIONS(2404), - [anon_sym_explicit] = ACTIONS(2404), - [anon_sym_typename] = ACTIONS(2404), - [anon_sym_template] = ACTIONS(2404), - [anon_sym_operator] = ACTIONS(2404), - [anon_sym_try] = ACTIONS(2404), - [anon_sym_delete] = ACTIONS(2404), - [anon_sym_throw] = ACTIONS(2404), - [anon_sym_namespace] = ACTIONS(2404), - [anon_sym_using] = ACTIONS(2404), - [anon_sym_static_assert] = ACTIONS(2404), - [anon_sym_concept] = ACTIONS(2404), - [anon_sym_co_return] = ACTIONS(2404), - [anon_sym_co_yield] = ACTIONS(2404), - [anon_sym_catch] = ACTIONS(2404), - [anon_sym_R_DQUOTE] = ACTIONS(2406), - [anon_sym_LR_DQUOTE] = ACTIONS(2406), - [anon_sym_uR_DQUOTE] = ACTIONS(2406), - [anon_sym_UR_DQUOTE] = ACTIONS(2406), - [anon_sym_u8R_DQUOTE] = ACTIONS(2406), - [anon_sym_co_await] = ACTIONS(2404), - [anon_sym_new] = ACTIONS(2404), - [anon_sym_requires] = ACTIONS(2404), - [sym_this] = ACTIONS(2404), - [sym_nullptr] = ACTIONS(2404), + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token2] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [aux_sym_preproc_else_token1] = ACTIONS(3048), + [aux_sym_preproc_elif_token1] = ACTIONS(3048), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, [493] = { - [sym_identifier] = ACTIONS(2686), - [aux_sym_preproc_include_token1] = ACTIONS(2686), - [aux_sym_preproc_def_token1] = ACTIONS(2686), - [aux_sym_preproc_if_token1] = ACTIONS(2686), - [aux_sym_preproc_if_token2] = ACTIONS(2686), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2686), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2686), - [aux_sym_preproc_else_token1] = ACTIONS(2686), - [aux_sym_preproc_elif_token1] = ACTIONS(2686), - [sym_preproc_directive] = ACTIONS(2686), - [anon_sym_LPAREN2] = ACTIONS(2688), - [anon_sym_BANG] = ACTIONS(2688), - [anon_sym_TILDE] = ACTIONS(2688), - [anon_sym_DASH] = ACTIONS(2686), - [anon_sym_PLUS] = ACTIONS(2686), - [anon_sym_STAR] = ACTIONS(2688), - [anon_sym_AMP_AMP] = ACTIONS(2688), - [anon_sym_AMP] = ACTIONS(2686), - [anon_sym_SEMI] = ACTIONS(2688), - [anon_sym_typedef] = ACTIONS(2686), - [anon_sym_extern] = ACTIONS(2686), - [anon_sym___attribute__] = ACTIONS(2686), - [anon_sym_COLON_COLON] = ACTIONS(2688), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2688), - [anon_sym___declspec] = ACTIONS(2686), - [anon_sym___based] = ACTIONS(2686), - [anon_sym___cdecl] = ACTIONS(2686), - [anon_sym___clrcall] = ACTIONS(2686), - [anon_sym___stdcall] = ACTIONS(2686), - [anon_sym___fastcall] = ACTIONS(2686), - [anon_sym___thiscall] = ACTIONS(2686), - [anon_sym___vectorcall] = ACTIONS(2686), - [anon_sym_LBRACE] = ACTIONS(2688), - [anon_sym_LBRACK] = ACTIONS(2686), - [anon_sym_static] = ACTIONS(2686), - [anon_sym_register] = ACTIONS(2686), - [anon_sym_inline] = ACTIONS(2686), - [anon_sym_thread_local] = ACTIONS(2686), - [anon_sym_const] = ACTIONS(2686), - [anon_sym_volatile] = ACTIONS(2686), - [anon_sym_restrict] = ACTIONS(2686), - [anon_sym__Atomic] = ACTIONS(2686), - [anon_sym_mutable] = ACTIONS(2686), - [anon_sym_constexpr] = ACTIONS(2686), - [anon_sym_constinit] = ACTIONS(2686), - [anon_sym_consteval] = ACTIONS(2686), - [anon_sym_signed] = ACTIONS(2686), - [anon_sym_unsigned] = ACTIONS(2686), - [anon_sym_long] = ACTIONS(2686), - [anon_sym_short] = ACTIONS(2686), - [sym_primitive_type] = ACTIONS(2686), - [anon_sym_enum] = ACTIONS(2686), - [anon_sym_class] = ACTIONS(2686), - [anon_sym_struct] = ACTIONS(2686), - [anon_sym_union] = ACTIONS(2686), - [anon_sym_if] = ACTIONS(2686), - [anon_sym_switch] = ACTIONS(2686), - [anon_sym_case] = ACTIONS(2686), - [anon_sym_default] = ACTIONS(2686), - [anon_sym_while] = ACTIONS(2686), - [anon_sym_do] = ACTIONS(2686), - [anon_sym_for] = ACTIONS(2686), - [anon_sym_return] = ACTIONS(2686), - [anon_sym_break] = ACTIONS(2686), - [anon_sym_continue] = ACTIONS(2686), - [anon_sym_goto] = ACTIONS(2686), - [anon_sym_not] = ACTIONS(2686), - [anon_sym_compl] = ACTIONS(2686), - [anon_sym_DASH_DASH] = ACTIONS(2688), - [anon_sym_PLUS_PLUS] = ACTIONS(2688), - [anon_sym_sizeof] = ACTIONS(2686), - [sym_number_literal] = ACTIONS(2688), - [anon_sym_L_SQUOTE] = ACTIONS(2688), - [anon_sym_u_SQUOTE] = ACTIONS(2688), - [anon_sym_U_SQUOTE] = ACTIONS(2688), - [anon_sym_u8_SQUOTE] = ACTIONS(2688), - [anon_sym_SQUOTE] = ACTIONS(2688), - [anon_sym_L_DQUOTE] = ACTIONS(2688), - [anon_sym_u_DQUOTE] = ACTIONS(2688), - [anon_sym_U_DQUOTE] = ACTIONS(2688), - [anon_sym_u8_DQUOTE] = ACTIONS(2688), - [anon_sym_DQUOTE] = ACTIONS(2688), - [sym_true] = ACTIONS(2686), - [sym_false] = ACTIONS(2686), - [sym_null] = ACTIONS(2686), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2686), - [anon_sym_decltype] = ACTIONS(2686), - [anon_sym_virtual] = ACTIONS(2686), - [anon_sym_explicit] = ACTIONS(2686), - [anon_sym_typename] = ACTIONS(2686), - [anon_sym_template] = ACTIONS(2686), - [anon_sym_operator] = ACTIONS(2686), - [anon_sym_try] = ACTIONS(2686), - [anon_sym_delete] = ACTIONS(2686), - [anon_sym_throw] = ACTIONS(2686), - [anon_sym_namespace] = ACTIONS(2686), - [anon_sym_using] = ACTIONS(2686), - [anon_sym_static_assert] = ACTIONS(2686), - [anon_sym_concept] = ACTIONS(2686), - [anon_sym_co_return] = ACTIONS(2686), - [anon_sym_co_yield] = ACTIONS(2686), - [anon_sym_R_DQUOTE] = ACTIONS(2688), - [anon_sym_LR_DQUOTE] = ACTIONS(2688), - [anon_sym_uR_DQUOTE] = ACTIONS(2688), - [anon_sym_UR_DQUOTE] = ACTIONS(2688), - [anon_sym_u8R_DQUOTE] = ACTIONS(2688), - [anon_sym_co_await] = ACTIONS(2686), - [anon_sym_new] = ACTIONS(2686), - [anon_sym_requires] = ACTIONS(2686), - [sym_this] = ACTIONS(2686), - [sym_nullptr] = ACTIONS(2686), + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token2] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [aux_sym_preproc_else_token1] = ACTIONS(3028), + [aux_sym_preproc_elif_token1] = ACTIONS(3028), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, [494] = { - [sym_identifier] = ACTIONS(2690), - [aux_sym_preproc_include_token1] = ACTIONS(2690), - [aux_sym_preproc_def_token1] = ACTIONS(2690), - [aux_sym_preproc_if_token1] = ACTIONS(2690), - [aux_sym_preproc_if_token2] = ACTIONS(2690), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2690), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2690), - [aux_sym_preproc_else_token1] = ACTIONS(2690), - [aux_sym_preproc_elif_token1] = ACTIONS(2690), - [sym_preproc_directive] = ACTIONS(2690), - [anon_sym_LPAREN2] = ACTIONS(2692), - [anon_sym_BANG] = ACTIONS(2692), - [anon_sym_TILDE] = ACTIONS(2692), - [anon_sym_DASH] = ACTIONS(2690), - [anon_sym_PLUS] = ACTIONS(2690), - [anon_sym_STAR] = ACTIONS(2692), - [anon_sym_AMP_AMP] = ACTIONS(2692), - [anon_sym_AMP] = ACTIONS(2690), - [anon_sym_SEMI] = ACTIONS(2692), - [anon_sym_typedef] = ACTIONS(2690), - [anon_sym_extern] = ACTIONS(2690), - [anon_sym___attribute__] = ACTIONS(2690), - [anon_sym_COLON_COLON] = ACTIONS(2692), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2692), - [anon_sym___declspec] = ACTIONS(2690), - [anon_sym___based] = ACTIONS(2690), - [anon_sym___cdecl] = ACTIONS(2690), - [anon_sym___clrcall] = ACTIONS(2690), - [anon_sym___stdcall] = ACTIONS(2690), - [anon_sym___fastcall] = ACTIONS(2690), - [anon_sym___thiscall] = ACTIONS(2690), - [anon_sym___vectorcall] = ACTIONS(2690), - [anon_sym_LBRACE] = ACTIONS(2692), - [anon_sym_LBRACK] = ACTIONS(2690), - [anon_sym_static] = ACTIONS(2690), - [anon_sym_register] = ACTIONS(2690), - [anon_sym_inline] = ACTIONS(2690), - [anon_sym_thread_local] = ACTIONS(2690), - [anon_sym_const] = ACTIONS(2690), - [anon_sym_volatile] = ACTIONS(2690), - [anon_sym_restrict] = ACTIONS(2690), - [anon_sym__Atomic] = ACTIONS(2690), - [anon_sym_mutable] = ACTIONS(2690), - [anon_sym_constexpr] = ACTIONS(2690), - [anon_sym_constinit] = ACTIONS(2690), - [anon_sym_consteval] = ACTIONS(2690), - [anon_sym_signed] = ACTIONS(2690), - [anon_sym_unsigned] = ACTIONS(2690), - [anon_sym_long] = ACTIONS(2690), - [anon_sym_short] = ACTIONS(2690), - [sym_primitive_type] = ACTIONS(2690), - [anon_sym_enum] = ACTIONS(2690), - [anon_sym_class] = ACTIONS(2690), - [anon_sym_struct] = ACTIONS(2690), - [anon_sym_union] = ACTIONS(2690), - [anon_sym_if] = ACTIONS(2690), - [anon_sym_switch] = ACTIONS(2690), - [anon_sym_case] = ACTIONS(2690), - [anon_sym_default] = ACTIONS(2690), - [anon_sym_while] = ACTIONS(2690), - [anon_sym_do] = ACTIONS(2690), - [anon_sym_for] = ACTIONS(2690), - [anon_sym_return] = ACTIONS(2690), - [anon_sym_break] = ACTIONS(2690), - [anon_sym_continue] = ACTIONS(2690), - [anon_sym_goto] = ACTIONS(2690), - [anon_sym_not] = ACTIONS(2690), - [anon_sym_compl] = ACTIONS(2690), - [anon_sym_DASH_DASH] = ACTIONS(2692), - [anon_sym_PLUS_PLUS] = ACTIONS(2692), - [anon_sym_sizeof] = ACTIONS(2690), - [sym_number_literal] = ACTIONS(2692), - [anon_sym_L_SQUOTE] = ACTIONS(2692), - [anon_sym_u_SQUOTE] = ACTIONS(2692), - [anon_sym_U_SQUOTE] = ACTIONS(2692), - [anon_sym_u8_SQUOTE] = ACTIONS(2692), - [anon_sym_SQUOTE] = ACTIONS(2692), - [anon_sym_L_DQUOTE] = ACTIONS(2692), - [anon_sym_u_DQUOTE] = ACTIONS(2692), - [anon_sym_U_DQUOTE] = ACTIONS(2692), - [anon_sym_u8_DQUOTE] = ACTIONS(2692), - [anon_sym_DQUOTE] = ACTIONS(2692), - [sym_true] = ACTIONS(2690), - [sym_false] = ACTIONS(2690), - [sym_null] = ACTIONS(2690), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2690), - [anon_sym_decltype] = ACTIONS(2690), - [anon_sym_virtual] = ACTIONS(2690), - [anon_sym_explicit] = ACTIONS(2690), - [anon_sym_typename] = ACTIONS(2690), - [anon_sym_template] = ACTIONS(2690), - [anon_sym_operator] = ACTIONS(2690), - [anon_sym_try] = ACTIONS(2690), - [anon_sym_delete] = ACTIONS(2690), - [anon_sym_throw] = ACTIONS(2690), - [anon_sym_namespace] = ACTIONS(2690), - [anon_sym_using] = ACTIONS(2690), - [anon_sym_static_assert] = ACTIONS(2690), - [anon_sym_concept] = ACTIONS(2690), - [anon_sym_co_return] = ACTIONS(2690), - [anon_sym_co_yield] = ACTIONS(2690), - [anon_sym_R_DQUOTE] = ACTIONS(2692), - [anon_sym_LR_DQUOTE] = ACTIONS(2692), - [anon_sym_uR_DQUOTE] = ACTIONS(2692), - [anon_sym_UR_DQUOTE] = ACTIONS(2692), - [anon_sym_u8R_DQUOTE] = ACTIONS(2692), - [anon_sym_co_await] = ACTIONS(2690), - [anon_sym_new] = ACTIONS(2690), - [anon_sym_requires] = ACTIONS(2690), - [sym_this] = ACTIONS(2690), - [sym_nullptr] = ACTIONS(2690), + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token2] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [aux_sym_preproc_else_token1] = ACTIONS(3028), + [aux_sym_preproc_elif_token1] = ACTIONS(3028), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, [495] = { - [sym_identifier] = ACTIONS(1737), - [aux_sym_preproc_include_token1] = ACTIONS(1737), - [aux_sym_preproc_def_token1] = ACTIONS(1737), - [aux_sym_preproc_if_token1] = ACTIONS(1737), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1737), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1737), - [sym_preproc_directive] = ACTIONS(1737), - [anon_sym_LPAREN2] = ACTIONS(1735), - [anon_sym_BANG] = ACTIONS(1735), - [anon_sym_TILDE] = ACTIONS(1735), - [anon_sym_DASH] = ACTIONS(1737), - [anon_sym_PLUS] = ACTIONS(1737), - [anon_sym_STAR] = ACTIONS(1735), - [anon_sym_AMP_AMP] = ACTIONS(1735), - [anon_sym_AMP] = ACTIONS(1737), - [anon_sym_SEMI] = ACTIONS(1735), - [anon_sym_typedef] = ACTIONS(1737), - [anon_sym_extern] = ACTIONS(1737), - [anon_sym___attribute__] = ACTIONS(1737), - [anon_sym_COLON_COLON] = ACTIONS(1735), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1735), - [anon_sym___declspec] = ACTIONS(1737), - [anon_sym___based] = ACTIONS(1737), - [anon_sym___cdecl] = ACTIONS(1737), - [anon_sym___clrcall] = ACTIONS(1737), - [anon_sym___stdcall] = ACTIONS(1737), - [anon_sym___fastcall] = ACTIONS(1737), - [anon_sym___thiscall] = ACTIONS(1737), - [anon_sym___vectorcall] = ACTIONS(1737), - [anon_sym_LBRACE] = ACTIONS(1735), - [anon_sym_RBRACE] = ACTIONS(1735), - [anon_sym_LBRACK] = ACTIONS(1737), - [anon_sym_static] = ACTIONS(1737), - [anon_sym_register] = ACTIONS(1737), - [anon_sym_inline] = ACTIONS(1737), - [anon_sym_thread_local] = ACTIONS(1737), - [anon_sym_const] = ACTIONS(1737), - [anon_sym_volatile] = ACTIONS(1737), - [anon_sym_restrict] = ACTIONS(1737), - [anon_sym__Atomic] = ACTIONS(1737), - [anon_sym_mutable] = ACTIONS(1737), - [anon_sym_constexpr] = ACTIONS(1737), - [anon_sym_constinit] = ACTIONS(1737), - [anon_sym_consteval] = ACTIONS(1737), - [anon_sym_signed] = ACTIONS(1737), - [anon_sym_unsigned] = ACTIONS(1737), - [anon_sym_long] = ACTIONS(1737), - [anon_sym_short] = ACTIONS(1737), - [sym_primitive_type] = ACTIONS(1737), - [anon_sym_enum] = ACTIONS(1737), - [anon_sym_class] = ACTIONS(1737), - [anon_sym_struct] = ACTIONS(1737), - [anon_sym_union] = ACTIONS(1737), - [anon_sym_if] = ACTIONS(1737), - [anon_sym_else] = ACTIONS(1737), - [anon_sym_switch] = ACTIONS(1737), - [anon_sym_case] = ACTIONS(1737), - [anon_sym_default] = ACTIONS(1737), - [anon_sym_while] = ACTIONS(1737), - [anon_sym_do] = ACTIONS(1737), - [anon_sym_for] = ACTIONS(1737), - [anon_sym_return] = ACTIONS(1737), - [anon_sym_break] = ACTIONS(1737), - [anon_sym_continue] = ACTIONS(1737), - [anon_sym_goto] = ACTIONS(1737), - [anon_sym_not] = ACTIONS(1737), - [anon_sym_compl] = ACTIONS(1737), - [anon_sym_DASH_DASH] = ACTIONS(1735), - [anon_sym_PLUS_PLUS] = ACTIONS(1735), - [anon_sym_sizeof] = ACTIONS(1737), - [sym_number_literal] = ACTIONS(1735), - [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_L_DQUOTE] = ACTIONS(1735), - [anon_sym_u_DQUOTE] = ACTIONS(1735), - [anon_sym_U_DQUOTE] = ACTIONS(1735), - [anon_sym_u8_DQUOTE] = ACTIONS(1735), - [anon_sym_DQUOTE] = ACTIONS(1735), - [sym_true] = ACTIONS(1737), - [sym_false] = ACTIONS(1737), - [sym_null] = ACTIONS(1737), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1737), - [anon_sym_decltype] = ACTIONS(1737), - [anon_sym_virtual] = ACTIONS(1737), - [anon_sym_explicit] = ACTIONS(1737), - [anon_sym_typename] = ACTIONS(1737), - [anon_sym_template] = ACTIONS(1737), - [anon_sym_operator] = ACTIONS(1737), - [anon_sym_try] = ACTIONS(1737), - [anon_sym_delete] = ACTIONS(1737), - [anon_sym_throw] = ACTIONS(1737), - [anon_sym_namespace] = ACTIONS(1737), - [anon_sym_using] = ACTIONS(1737), - [anon_sym_static_assert] = ACTIONS(1737), - [anon_sym_concept] = ACTIONS(1737), - [anon_sym_co_return] = ACTIONS(1737), - [anon_sym_co_yield] = ACTIONS(1737), - [anon_sym_catch] = ACTIONS(1737), - [anon_sym_R_DQUOTE] = ACTIONS(1735), - [anon_sym_LR_DQUOTE] = ACTIONS(1735), - [anon_sym_uR_DQUOTE] = ACTIONS(1735), - [anon_sym_UR_DQUOTE] = ACTIONS(1735), - [anon_sym_u8R_DQUOTE] = ACTIONS(1735), - [anon_sym_co_await] = ACTIONS(1737), - [anon_sym_new] = ACTIONS(1737), - [anon_sym_requires] = ACTIONS(1737), - [sym_this] = ACTIONS(1737), - [sym_nullptr] = ACTIONS(1737), + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token2] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [aux_sym_preproc_else_token1] = ACTIONS(3028), + [aux_sym_preproc_elif_token1] = ACTIONS(3028), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, [496] = { - [sym_identifier] = ACTIONS(2694), - [aux_sym_preproc_include_token1] = ACTIONS(2694), - [aux_sym_preproc_def_token1] = ACTIONS(2694), - [aux_sym_preproc_if_token1] = ACTIONS(2694), - [aux_sym_preproc_if_token2] = ACTIONS(2694), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2694), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2694), - [aux_sym_preproc_else_token1] = ACTIONS(2694), - [aux_sym_preproc_elif_token1] = ACTIONS(2694), - [sym_preproc_directive] = ACTIONS(2694), - [anon_sym_LPAREN2] = ACTIONS(2696), - [anon_sym_BANG] = ACTIONS(2696), - [anon_sym_TILDE] = ACTIONS(2696), - [anon_sym_DASH] = ACTIONS(2694), - [anon_sym_PLUS] = ACTIONS(2694), - [anon_sym_STAR] = ACTIONS(2696), - [anon_sym_AMP_AMP] = ACTIONS(2696), - [anon_sym_AMP] = ACTIONS(2694), - [anon_sym_SEMI] = ACTIONS(2696), - [anon_sym_typedef] = ACTIONS(2694), - [anon_sym_extern] = ACTIONS(2694), - [anon_sym___attribute__] = ACTIONS(2694), - [anon_sym_COLON_COLON] = ACTIONS(2696), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2696), - [anon_sym___declspec] = ACTIONS(2694), - [anon_sym___based] = ACTIONS(2694), - [anon_sym___cdecl] = ACTIONS(2694), - [anon_sym___clrcall] = ACTIONS(2694), - [anon_sym___stdcall] = ACTIONS(2694), - [anon_sym___fastcall] = ACTIONS(2694), - [anon_sym___thiscall] = ACTIONS(2694), - [anon_sym___vectorcall] = ACTIONS(2694), - [anon_sym_LBRACE] = ACTIONS(2696), - [anon_sym_LBRACK] = ACTIONS(2694), - [anon_sym_static] = ACTIONS(2694), - [anon_sym_register] = ACTIONS(2694), - [anon_sym_inline] = ACTIONS(2694), - [anon_sym_thread_local] = ACTIONS(2694), - [anon_sym_const] = ACTIONS(2694), - [anon_sym_volatile] = ACTIONS(2694), - [anon_sym_restrict] = ACTIONS(2694), - [anon_sym__Atomic] = ACTIONS(2694), - [anon_sym_mutable] = ACTIONS(2694), - [anon_sym_constexpr] = ACTIONS(2694), - [anon_sym_constinit] = ACTIONS(2694), - [anon_sym_consteval] = ACTIONS(2694), - [anon_sym_signed] = ACTIONS(2694), - [anon_sym_unsigned] = ACTIONS(2694), - [anon_sym_long] = ACTIONS(2694), - [anon_sym_short] = ACTIONS(2694), - [sym_primitive_type] = ACTIONS(2694), - [anon_sym_enum] = ACTIONS(2694), - [anon_sym_class] = ACTIONS(2694), - [anon_sym_struct] = ACTIONS(2694), - [anon_sym_union] = ACTIONS(2694), - [anon_sym_if] = ACTIONS(2694), - [anon_sym_switch] = ACTIONS(2694), - [anon_sym_case] = ACTIONS(2694), - [anon_sym_default] = ACTIONS(2694), - [anon_sym_while] = ACTIONS(2694), - [anon_sym_do] = ACTIONS(2694), - [anon_sym_for] = ACTIONS(2694), - [anon_sym_return] = ACTIONS(2694), - [anon_sym_break] = ACTIONS(2694), - [anon_sym_continue] = ACTIONS(2694), - [anon_sym_goto] = ACTIONS(2694), - [anon_sym_not] = ACTIONS(2694), - [anon_sym_compl] = ACTIONS(2694), - [anon_sym_DASH_DASH] = ACTIONS(2696), - [anon_sym_PLUS_PLUS] = ACTIONS(2696), - [anon_sym_sizeof] = ACTIONS(2694), - [sym_number_literal] = ACTIONS(2696), - [anon_sym_L_SQUOTE] = ACTIONS(2696), - [anon_sym_u_SQUOTE] = ACTIONS(2696), - [anon_sym_U_SQUOTE] = ACTIONS(2696), - [anon_sym_u8_SQUOTE] = ACTIONS(2696), - [anon_sym_SQUOTE] = ACTIONS(2696), - [anon_sym_L_DQUOTE] = ACTIONS(2696), - [anon_sym_u_DQUOTE] = ACTIONS(2696), - [anon_sym_U_DQUOTE] = ACTIONS(2696), - [anon_sym_u8_DQUOTE] = ACTIONS(2696), - [anon_sym_DQUOTE] = ACTIONS(2696), - [sym_true] = ACTIONS(2694), - [sym_false] = ACTIONS(2694), - [sym_null] = ACTIONS(2694), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2694), - [anon_sym_decltype] = ACTIONS(2694), - [anon_sym_virtual] = ACTIONS(2694), - [anon_sym_explicit] = ACTIONS(2694), - [anon_sym_typename] = ACTIONS(2694), - [anon_sym_template] = ACTIONS(2694), - [anon_sym_operator] = ACTIONS(2694), - [anon_sym_try] = ACTIONS(2694), - [anon_sym_delete] = ACTIONS(2694), - [anon_sym_throw] = ACTIONS(2694), - [anon_sym_namespace] = ACTIONS(2694), - [anon_sym_using] = ACTIONS(2694), - [anon_sym_static_assert] = ACTIONS(2694), - [anon_sym_concept] = ACTIONS(2694), - [anon_sym_co_return] = ACTIONS(2694), - [anon_sym_co_yield] = ACTIONS(2694), - [anon_sym_R_DQUOTE] = ACTIONS(2696), - [anon_sym_LR_DQUOTE] = ACTIONS(2696), - [anon_sym_uR_DQUOTE] = ACTIONS(2696), - [anon_sym_UR_DQUOTE] = ACTIONS(2696), - [anon_sym_u8R_DQUOTE] = ACTIONS(2696), - [anon_sym_co_await] = ACTIONS(2694), - [anon_sym_new] = ACTIONS(2694), - [anon_sym_requires] = ACTIONS(2694), - [sym_this] = ACTIONS(2694), - [sym_nullptr] = ACTIONS(2694), + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token2] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [aux_sym_preproc_else_token1] = ACTIONS(3048), + [aux_sym_preproc_elif_token1] = ACTIONS(3048), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, [497] = { - [sym_identifier] = ACTIONS(2698), - [aux_sym_preproc_include_token1] = ACTIONS(2698), - [aux_sym_preproc_def_token1] = ACTIONS(2698), - [aux_sym_preproc_if_token1] = ACTIONS(2698), - [aux_sym_preproc_if_token2] = ACTIONS(2698), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2698), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2698), - [aux_sym_preproc_else_token1] = ACTIONS(2698), - [aux_sym_preproc_elif_token1] = ACTIONS(2698), - [sym_preproc_directive] = ACTIONS(2698), - [anon_sym_LPAREN2] = ACTIONS(2700), - [anon_sym_BANG] = ACTIONS(2700), - [anon_sym_TILDE] = ACTIONS(2700), - [anon_sym_DASH] = ACTIONS(2698), - [anon_sym_PLUS] = ACTIONS(2698), - [anon_sym_STAR] = ACTIONS(2700), - [anon_sym_AMP_AMP] = ACTIONS(2700), - [anon_sym_AMP] = ACTIONS(2698), - [anon_sym_SEMI] = ACTIONS(2700), - [anon_sym_typedef] = ACTIONS(2698), - [anon_sym_extern] = ACTIONS(2698), - [anon_sym___attribute__] = ACTIONS(2698), - [anon_sym_COLON_COLON] = ACTIONS(2700), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2700), - [anon_sym___declspec] = ACTIONS(2698), - [anon_sym___based] = ACTIONS(2698), - [anon_sym___cdecl] = ACTIONS(2698), - [anon_sym___clrcall] = ACTIONS(2698), - [anon_sym___stdcall] = ACTIONS(2698), - [anon_sym___fastcall] = ACTIONS(2698), - [anon_sym___thiscall] = ACTIONS(2698), - [anon_sym___vectorcall] = ACTIONS(2698), - [anon_sym_LBRACE] = ACTIONS(2700), - [anon_sym_LBRACK] = ACTIONS(2698), - [anon_sym_static] = ACTIONS(2698), - [anon_sym_register] = ACTIONS(2698), - [anon_sym_inline] = ACTIONS(2698), - [anon_sym_thread_local] = ACTIONS(2698), - [anon_sym_const] = ACTIONS(2698), - [anon_sym_volatile] = ACTIONS(2698), - [anon_sym_restrict] = ACTIONS(2698), - [anon_sym__Atomic] = ACTIONS(2698), - [anon_sym_mutable] = ACTIONS(2698), - [anon_sym_constexpr] = ACTIONS(2698), - [anon_sym_constinit] = ACTIONS(2698), - [anon_sym_consteval] = ACTIONS(2698), - [anon_sym_signed] = ACTIONS(2698), - [anon_sym_unsigned] = ACTIONS(2698), - [anon_sym_long] = ACTIONS(2698), - [anon_sym_short] = ACTIONS(2698), - [sym_primitive_type] = ACTIONS(2698), - [anon_sym_enum] = ACTIONS(2698), - [anon_sym_class] = ACTIONS(2698), - [anon_sym_struct] = ACTIONS(2698), - [anon_sym_union] = ACTIONS(2698), - [anon_sym_if] = ACTIONS(2698), - [anon_sym_switch] = ACTIONS(2698), - [anon_sym_case] = ACTIONS(2698), - [anon_sym_default] = ACTIONS(2698), - [anon_sym_while] = ACTIONS(2698), - [anon_sym_do] = ACTIONS(2698), - [anon_sym_for] = ACTIONS(2698), - [anon_sym_return] = ACTIONS(2698), - [anon_sym_break] = ACTIONS(2698), - [anon_sym_continue] = ACTIONS(2698), - [anon_sym_goto] = ACTIONS(2698), - [anon_sym_not] = ACTIONS(2698), - [anon_sym_compl] = ACTIONS(2698), - [anon_sym_DASH_DASH] = ACTIONS(2700), - [anon_sym_PLUS_PLUS] = ACTIONS(2700), - [anon_sym_sizeof] = ACTIONS(2698), - [sym_number_literal] = ACTIONS(2700), - [anon_sym_L_SQUOTE] = ACTIONS(2700), - [anon_sym_u_SQUOTE] = ACTIONS(2700), - [anon_sym_U_SQUOTE] = ACTIONS(2700), - [anon_sym_u8_SQUOTE] = ACTIONS(2700), - [anon_sym_SQUOTE] = ACTIONS(2700), - [anon_sym_L_DQUOTE] = ACTIONS(2700), - [anon_sym_u_DQUOTE] = ACTIONS(2700), - [anon_sym_U_DQUOTE] = ACTIONS(2700), - [anon_sym_u8_DQUOTE] = ACTIONS(2700), - [anon_sym_DQUOTE] = ACTIONS(2700), - [sym_true] = ACTIONS(2698), - [sym_false] = ACTIONS(2698), - [sym_null] = ACTIONS(2698), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2698), - [anon_sym_decltype] = ACTIONS(2698), - [anon_sym_virtual] = ACTIONS(2698), - [anon_sym_explicit] = ACTIONS(2698), - [anon_sym_typename] = ACTIONS(2698), - [anon_sym_template] = ACTIONS(2698), - [anon_sym_operator] = ACTIONS(2698), - [anon_sym_try] = ACTIONS(2698), - [anon_sym_delete] = ACTIONS(2698), - [anon_sym_throw] = ACTIONS(2698), - [anon_sym_namespace] = ACTIONS(2698), - [anon_sym_using] = ACTIONS(2698), - [anon_sym_static_assert] = ACTIONS(2698), - [anon_sym_concept] = ACTIONS(2698), - [anon_sym_co_return] = ACTIONS(2698), - [anon_sym_co_yield] = ACTIONS(2698), - [anon_sym_R_DQUOTE] = ACTIONS(2700), - [anon_sym_LR_DQUOTE] = ACTIONS(2700), - [anon_sym_uR_DQUOTE] = ACTIONS(2700), - [anon_sym_UR_DQUOTE] = ACTIONS(2700), - [anon_sym_u8R_DQUOTE] = ACTIONS(2700), - [anon_sym_co_await] = ACTIONS(2698), - [anon_sym_new] = ACTIONS(2698), - [anon_sym_requires] = ACTIONS(2698), - [sym_this] = ACTIONS(2698), - [sym_nullptr] = ACTIONS(2698), + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token2] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [aux_sym_preproc_else_token1] = ACTIONS(3028), + [aux_sym_preproc_elif_token1] = ACTIONS(3028), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, [498] = { - [sym_identifier] = ACTIONS(2404), - [aux_sym_preproc_include_token1] = ACTIONS(2404), - [aux_sym_preproc_def_token1] = ACTIONS(2404), - [aux_sym_preproc_if_token1] = ACTIONS(2404), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2404), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2404), - [sym_preproc_directive] = ACTIONS(2404), - [anon_sym_LPAREN2] = ACTIONS(2406), - [anon_sym_BANG] = ACTIONS(2406), - [anon_sym_TILDE] = ACTIONS(2406), - [anon_sym_DASH] = ACTIONS(2404), - [anon_sym_PLUS] = ACTIONS(2404), - [anon_sym_STAR] = ACTIONS(2406), - [anon_sym_AMP_AMP] = ACTIONS(2406), - [anon_sym_AMP] = ACTIONS(2404), - [anon_sym_SEMI] = ACTIONS(2406), - [anon_sym_typedef] = ACTIONS(2404), - [anon_sym_extern] = ACTIONS(2404), - [anon_sym___attribute__] = ACTIONS(2404), - [anon_sym_COLON_COLON] = ACTIONS(2406), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2406), - [anon_sym___declspec] = ACTIONS(2404), - [anon_sym___based] = ACTIONS(2404), - [anon_sym___cdecl] = ACTIONS(2404), - [anon_sym___clrcall] = ACTIONS(2404), - [anon_sym___stdcall] = ACTIONS(2404), - [anon_sym___fastcall] = ACTIONS(2404), - [anon_sym___thiscall] = ACTIONS(2404), - [anon_sym___vectorcall] = ACTIONS(2404), - [anon_sym_LBRACE] = ACTIONS(2406), - [anon_sym_RBRACE] = ACTIONS(2406), - [anon_sym_LBRACK] = ACTIONS(2404), - [anon_sym_static] = ACTIONS(2404), - [anon_sym_register] = ACTIONS(2404), - [anon_sym_inline] = ACTIONS(2404), - [anon_sym_thread_local] = ACTIONS(2404), - [anon_sym_const] = ACTIONS(2404), - [anon_sym_volatile] = ACTIONS(2404), - [anon_sym_restrict] = ACTIONS(2404), - [anon_sym__Atomic] = ACTIONS(2404), - [anon_sym_mutable] = ACTIONS(2404), - [anon_sym_constexpr] = ACTIONS(2404), - [anon_sym_constinit] = ACTIONS(2404), - [anon_sym_consteval] = ACTIONS(2404), - [anon_sym_signed] = ACTIONS(2404), - [anon_sym_unsigned] = ACTIONS(2404), - [anon_sym_long] = ACTIONS(2404), - [anon_sym_short] = ACTIONS(2404), - [sym_primitive_type] = ACTIONS(2404), - [anon_sym_enum] = ACTIONS(2404), - [anon_sym_class] = ACTIONS(2404), - [anon_sym_struct] = ACTIONS(2404), - [anon_sym_union] = ACTIONS(2404), - [anon_sym_if] = ACTIONS(2404), - [anon_sym_else] = ACTIONS(2404), - [anon_sym_switch] = ACTIONS(2404), - [anon_sym_case] = ACTIONS(2404), - [anon_sym_default] = ACTIONS(2404), - [anon_sym_while] = ACTIONS(2404), - [anon_sym_do] = ACTIONS(2404), - [anon_sym_for] = ACTIONS(2404), - [anon_sym_return] = ACTIONS(2404), - [anon_sym_break] = ACTIONS(2404), - [anon_sym_continue] = ACTIONS(2404), - [anon_sym_goto] = ACTIONS(2404), - [anon_sym_not] = ACTIONS(2404), - [anon_sym_compl] = ACTIONS(2404), - [anon_sym_DASH_DASH] = ACTIONS(2406), - [anon_sym_PLUS_PLUS] = ACTIONS(2406), - [anon_sym_sizeof] = ACTIONS(2404), - [sym_number_literal] = ACTIONS(2406), - [anon_sym_L_SQUOTE] = ACTIONS(2406), - [anon_sym_u_SQUOTE] = ACTIONS(2406), - [anon_sym_U_SQUOTE] = ACTIONS(2406), - [anon_sym_u8_SQUOTE] = ACTIONS(2406), - [anon_sym_SQUOTE] = ACTIONS(2406), - [anon_sym_L_DQUOTE] = ACTIONS(2406), - [anon_sym_u_DQUOTE] = ACTIONS(2406), - [anon_sym_U_DQUOTE] = ACTIONS(2406), - [anon_sym_u8_DQUOTE] = ACTIONS(2406), - [anon_sym_DQUOTE] = ACTIONS(2406), - [sym_true] = ACTIONS(2404), - [sym_false] = ACTIONS(2404), - [sym_null] = ACTIONS(2404), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2404), - [anon_sym_decltype] = ACTIONS(2404), - [anon_sym_virtual] = ACTIONS(2404), - [anon_sym_explicit] = ACTIONS(2404), - [anon_sym_typename] = ACTIONS(2404), - [anon_sym_template] = ACTIONS(2404), - [anon_sym_operator] = ACTIONS(2404), - [anon_sym_try] = ACTIONS(2404), - [anon_sym_delete] = ACTIONS(2404), - [anon_sym_throw] = ACTIONS(2404), - [anon_sym_namespace] = ACTIONS(2404), - [anon_sym_using] = ACTIONS(2404), - [anon_sym_static_assert] = ACTIONS(2404), - [anon_sym_concept] = ACTIONS(2404), - [anon_sym_co_return] = ACTIONS(2404), - [anon_sym_co_yield] = ACTIONS(2404), - [anon_sym_catch] = ACTIONS(2404), - [anon_sym_R_DQUOTE] = ACTIONS(2406), - [anon_sym_LR_DQUOTE] = ACTIONS(2406), - [anon_sym_uR_DQUOTE] = ACTIONS(2406), - [anon_sym_UR_DQUOTE] = ACTIONS(2406), - [anon_sym_u8R_DQUOTE] = ACTIONS(2406), - [anon_sym_co_await] = ACTIONS(2404), - [anon_sym_new] = ACTIONS(2404), - [anon_sym_requires] = ACTIONS(2404), - [sym_this] = ACTIONS(2404), - [sym_nullptr] = ACTIONS(2404), + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token2] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [aux_sym_preproc_else_token1] = ACTIONS(3028), + [aux_sym_preproc_elif_token1] = ACTIONS(3028), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, [499] = { - [sym_identifier] = ACTIONS(2702), - [aux_sym_preproc_include_token1] = ACTIONS(2702), - [aux_sym_preproc_def_token1] = ACTIONS(2702), - [aux_sym_preproc_if_token1] = ACTIONS(2702), - [aux_sym_preproc_if_token2] = ACTIONS(2702), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2702), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2702), - [aux_sym_preproc_else_token1] = ACTIONS(2702), - [aux_sym_preproc_elif_token1] = ACTIONS(2702), - [sym_preproc_directive] = ACTIONS(2702), - [anon_sym_LPAREN2] = ACTIONS(2704), - [anon_sym_BANG] = ACTIONS(2704), - [anon_sym_TILDE] = ACTIONS(2704), - [anon_sym_DASH] = ACTIONS(2702), - [anon_sym_PLUS] = ACTIONS(2702), - [anon_sym_STAR] = ACTIONS(2704), - [anon_sym_AMP_AMP] = ACTIONS(2704), - [anon_sym_AMP] = ACTIONS(2702), - [anon_sym_SEMI] = ACTIONS(2704), - [anon_sym_typedef] = ACTIONS(2702), - [anon_sym_extern] = ACTIONS(2702), - [anon_sym___attribute__] = ACTIONS(2702), - [anon_sym_COLON_COLON] = ACTIONS(2704), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2704), - [anon_sym___declspec] = ACTIONS(2702), - [anon_sym___based] = ACTIONS(2702), - [anon_sym___cdecl] = ACTIONS(2702), - [anon_sym___clrcall] = ACTIONS(2702), - [anon_sym___stdcall] = ACTIONS(2702), - [anon_sym___fastcall] = ACTIONS(2702), - [anon_sym___thiscall] = ACTIONS(2702), - [anon_sym___vectorcall] = ACTIONS(2702), - [anon_sym_LBRACE] = ACTIONS(2704), - [anon_sym_LBRACK] = ACTIONS(2702), - [anon_sym_static] = ACTIONS(2702), - [anon_sym_register] = ACTIONS(2702), - [anon_sym_inline] = ACTIONS(2702), - [anon_sym_thread_local] = ACTIONS(2702), - [anon_sym_const] = ACTIONS(2702), - [anon_sym_volatile] = ACTIONS(2702), - [anon_sym_restrict] = ACTIONS(2702), - [anon_sym__Atomic] = ACTIONS(2702), - [anon_sym_mutable] = ACTIONS(2702), - [anon_sym_constexpr] = ACTIONS(2702), - [anon_sym_constinit] = ACTIONS(2702), - [anon_sym_consteval] = ACTIONS(2702), - [anon_sym_signed] = ACTIONS(2702), - [anon_sym_unsigned] = ACTIONS(2702), - [anon_sym_long] = ACTIONS(2702), - [anon_sym_short] = ACTIONS(2702), - [sym_primitive_type] = ACTIONS(2702), - [anon_sym_enum] = ACTIONS(2702), - [anon_sym_class] = ACTIONS(2702), - [anon_sym_struct] = ACTIONS(2702), - [anon_sym_union] = ACTIONS(2702), - [anon_sym_if] = ACTIONS(2702), - [anon_sym_switch] = ACTIONS(2702), - [anon_sym_case] = ACTIONS(2702), - [anon_sym_default] = ACTIONS(2702), - [anon_sym_while] = ACTIONS(2702), - [anon_sym_do] = ACTIONS(2702), - [anon_sym_for] = ACTIONS(2702), - [anon_sym_return] = ACTIONS(2702), - [anon_sym_break] = ACTIONS(2702), - [anon_sym_continue] = ACTIONS(2702), - [anon_sym_goto] = ACTIONS(2702), - [anon_sym_not] = ACTIONS(2702), - [anon_sym_compl] = ACTIONS(2702), - [anon_sym_DASH_DASH] = ACTIONS(2704), - [anon_sym_PLUS_PLUS] = ACTIONS(2704), - [anon_sym_sizeof] = ACTIONS(2702), - [sym_number_literal] = ACTIONS(2704), - [anon_sym_L_SQUOTE] = ACTIONS(2704), - [anon_sym_u_SQUOTE] = ACTIONS(2704), - [anon_sym_U_SQUOTE] = ACTIONS(2704), - [anon_sym_u8_SQUOTE] = ACTIONS(2704), - [anon_sym_SQUOTE] = ACTIONS(2704), - [anon_sym_L_DQUOTE] = ACTIONS(2704), - [anon_sym_u_DQUOTE] = ACTIONS(2704), - [anon_sym_U_DQUOTE] = ACTIONS(2704), - [anon_sym_u8_DQUOTE] = ACTIONS(2704), - [anon_sym_DQUOTE] = ACTIONS(2704), - [sym_true] = ACTIONS(2702), - [sym_false] = ACTIONS(2702), - [sym_null] = ACTIONS(2702), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2702), - [anon_sym_decltype] = ACTIONS(2702), - [anon_sym_virtual] = ACTIONS(2702), - [anon_sym_explicit] = ACTIONS(2702), - [anon_sym_typename] = ACTIONS(2702), - [anon_sym_template] = ACTIONS(2702), - [anon_sym_operator] = ACTIONS(2702), - [anon_sym_try] = ACTIONS(2702), - [anon_sym_delete] = ACTIONS(2702), - [anon_sym_throw] = ACTIONS(2702), - [anon_sym_namespace] = ACTIONS(2702), - [anon_sym_using] = ACTIONS(2702), - [anon_sym_static_assert] = ACTIONS(2702), - [anon_sym_concept] = ACTIONS(2702), - [anon_sym_co_return] = ACTIONS(2702), - [anon_sym_co_yield] = ACTIONS(2702), - [anon_sym_R_DQUOTE] = ACTIONS(2704), - [anon_sym_LR_DQUOTE] = ACTIONS(2704), - [anon_sym_uR_DQUOTE] = ACTIONS(2704), - [anon_sym_UR_DQUOTE] = ACTIONS(2704), - [anon_sym_u8R_DQUOTE] = ACTIONS(2704), - [anon_sym_co_await] = ACTIONS(2702), - [anon_sym_new] = ACTIONS(2702), - [anon_sym_requires] = ACTIONS(2702), - [sym_this] = ACTIONS(2702), - [sym_nullptr] = ACTIONS(2702), + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token2] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [aux_sym_preproc_else_token1] = ACTIONS(3028), + [aux_sym_preproc_elif_token1] = ACTIONS(3028), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, [500] = { - [sym_type_qualifier] = STATE(3306), - [sym__type_specifier] = STATE(3903), - [sym_sized_type_specifier] = STATE(3003), - [sym_enum_specifier] = STATE(3003), - [sym_struct_specifier] = STATE(3003), - [sym_union_specifier] = STATE(3003), - [sym__expression] = STATE(3577), - [sym_conditional_expression] = STATE(3855), - [sym_assignment_expression] = STATE(3855), - [sym_pointer_expression] = STATE(2954), - [sym_unary_expression] = STATE(3855), - [sym_binary_expression] = STATE(3855), - [sym_update_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_type_descriptor] = STATE(5496), - [sym_sizeof_expression] = STATE(3855), - [sym_subscript_expression] = STATE(2954), - [sym_call_expression] = STATE(2954), - [sym_field_expression] = STATE(2954), - [sym_compound_literal_expression] = STATE(3855), - [sym_parenthesized_expression] = STATE(2954), - [sym_char_literal] = STATE(3557), - [sym_concatenated_string] = STATE(3557), - [sym_string_literal] = STATE(2955), - [sym_placeholder_type_specifier] = STATE(3003), - [sym_decltype_auto] = STATE(3008), - [sym_decltype] = STATE(2851), - [sym_class_specifier] = STATE(3003), - [sym__class_name] = STATE(5844), - [sym_dependent_type] = STATE(3003), - [sym_template_type] = STATE(4288), - [sym_template_function] = STATE(3855), - [sym_raw_string_literal] = STATE(2955), - [sym_co_await_expression] = STATE(3855), - [sym_new_expression] = STATE(3855), - [sym_delete_expression] = STATE(3855), - [sym_requires_clause] = STATE(3855), - [sym_requires_expression] = STATE(3855), - [sym_lambda_expression] = STATE(3855), - [sym_lambda_capture_specifier] = STATE(4501), - [sym_fold_expression] = STATE(3855), - [sym_parameter_pack_expansion] = STATE(3855), - [sym_type_parameter_pack_expansion] = STATE(5897), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4544), - [sym_qualified_identifier] = STATE(2954), - [sym_qualified_type_identifier] = STATE(4356), - [sym_user_defined_literal] = STATE(3855), - [aux_sym_type_definition_repeat1] = STATE(3306), - [aux_sym_sized_type_specifier_repeat1] = STATE(2022), - [sym_identifier] = ACTIONS(2408), - [anon_sym_LPAREN2] = ACTIONS(2410), - [anon_sym_BANG] = ACTIONS(2412), - [anon_sym_TILDE] = ACTIONS(2412), - [anon_sym_DASH] = ACTIONS(2414), - [anon_sym_PLUS] = ACTIONS(2414), - [anon_sym_STAR] = ACTIONS(2416), - [anon_sym_AMP] = ACTIONS(2416), - [anon_sym_COLON_COLON] = ACTIONS(2418), - [anon_sym_LBRACK] = ACTIONS(1539), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(2420), - [anon_sym_unsigned] = ACTIONS(2420), - [anon_sym_long] = ACTIONS(2420), - [anon_sym_short] = ACTIONS(2420), - [sym_primitive_type] = ACTIONS(2422), - [anon_sym_enum] = ACTIONS(2424), - [anon_sym_class] = ACTIONS(2426), - [anon_sym_struct] = ACTIONS(2428), - [anon_sym_union] = ACTIONS(2430), - [anon_sym_not] = ACTIONS(2414), - [anon_sym_compl] = ACTIONS(2414), - [anon_sym_DASH_DASH] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(2432), - [anon_sym_sizeof] = ACTIONS(2434), - [sym_number_literal] = ACTIONS(2436), - [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_L_DQUOTE] = ACTIONS(2440), - [anon_sym_u_DQUOTE] = ACTIONS(2440), - [anon_sym_U_DQUOTE] = ACTIONS(2440), - [anon_sym_u8_DQUOTE] = ACTIONS(2440), - [anon_sym_DQUOTE] = ACTIONS(2440), - [sym_true] = ACTIONS(2442), - [sym_false] = ACTIONS(2442), - [sym_null] = ACTIONS(2442), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2444), - [anon_sym_decltype] = ACTIONS(2446), - [anon_sym_typename] = ACTIONS(2448), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(2452), - [anon_sym_R_DQUOTE] = ACTIONS(2454), - [anon_sym_LR_DQUOTE] = ACTIONS(2454), - [anon_sym_uR_DQUOTE] = ACTIONS(2454), - [anon_sym_UR_DQUOTE] = ACTIONS(2454), - [anon_sym_u8R_DQUOTE] = ACTIONS(2454), - [anon_sym_co_await] = ACTIONS(2456), - [anon_sym_new] = ACTIONS(2458), - [anon_sym_requires] = ACTIONS(2460), - [sym_this] = ACTIONS(2442), - [sym_nullptr] = ACTIONS(2442), + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token2] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [aux_sym_preproc_else_token1] = ACTIONS(3028), + [aux_sym_preproc_elif_token1] = ACTIONS(3028), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, [501] = { - [sym_identifier] = ACTIONS(2706), - [aux_sym_preproc_include_token1] = ACTIONS(2706), - [aux_sym_preproc_def_token1] = ACTIONS(2706), - [aux_sym_preproc_if_token1] = ACTIONS(2706), - [aux_sym_preproc_if_token2] = ACTIONS(2706), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2706), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2706), - [aux_sym_preproc_else_token1] = ACTIONS(2706), - [aux_sym_preproc_elif_token1] = ACTIONS(2706), - [sym_preproc_directive] = ACTIONS(2706), - [anon_sym_LPAREN2] = ACTIONS(2708), - [anon_sym_BANG] = ACTIONS(2708), - [anon_sym_TILDE] = ACTIONS(2708), - [anon_sym_DASH] = ACTIONS(2706), - [anon_sym_PLUS] = ACTIONS(2706), - [anon_sym_STAR] = ACTIONS(2708), - [anon_sym_AMP_AMP] = ACTIONS(2708), - [anon_sym_AMP] = ACTIONS(2706), - [anon_sym_SEMI] = ACTIONS(2708), - [anon_sym_typedef] = ACTIONS(2706), - [anon_sym_extern] = ACTIONS(2706), - [anon_sym___attribute__] = ACTIONS(2706), - [anon_sym_COLON_COLON] = ACTIONS(2708), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2708), - [anon_sym___declspec] = ACTIONS(2706), - [anon_sym___based] = ACTIONS(2706), - [anon_sym___cdecl] = ACTIONS(2706), - [anon_sym___clrcall] = ACTIONS(2706), - [anon_sym___stdcall] = ACTIONS(2706), - [anon_sym___fastcall] = ACTIONS(2706), - [anon_sym___thiscall] = ACTIONS(2706), - [anon_sym___vectorcall] = ACTIONS(2706), - [anon_sym_LBRACE] = ACTIONS(2708), - [anon_sym_LBRACK] = ACTIONS(2706), - [anon_sym_static] = ACTIONS(2706), - [anon_sym_register] = ACTIONS(2706), - [anon_sym_inline] = ACTIONS(2706), - [anon_sym_thread_local] = ACTIONS(2706), - [anon_sym_const] = ACTIONS(2706), - [anon_sym_volatile] = ACTIONS(2706), - [anon_sym_restrict] = ACTIONS(2706), - [anon_sym__Atomic] = ACTIONS(2706), - [anon_sym_mutable] = ACTIONS(2706), - [anon_sym_constexpr] = ACTIONS(2706), - [anon_sym_constinit] = ACTIONS(2706), - [anon_sym_consteval] = ACTIONS(2706), - [anon_sym_signed] = ACTIONS(2706), - [anon_sym_unsigned] = ACTIONS(2706), - [anon_sym_long] = ACTIONS(2706), - [anon_sym_short] = ACTIONS(2706), - [sym_primitive_type] = ACTIONS(2706), - [anon_sym_enum] = ACTIONS(2706), - [anon_sym_class] = ACTIONS(2706), - [anon_sym_struct] = ACTIONS(2706), - [anon_sym_union] = ACTIONS(2706), - [anon_sym_if] = ACTIONS(2706), - [anon_sym_switch] = ACTIONS(2706), - [anon_sym_case] = ACTIONS(2706), - [anon_sym_default] = ACTIONS(2706), - [anon_sym_while] = ACTIONS(2706), - [anon_sym_do] = ACTIONS(2706), - [anon_sym_for] = ACTIONS(2706), - [anon_sym_return] = ACTIONS(2706), - [anon_sym_break] = ACTIONS(2706), - [anon_sym_continue] = ACTIONS(2706), - [anon_sym_goto] = ACTIONS(2706), - [anon_sym_not] = ACTIONS(2706), - [anon_sym_compl] = ACTIONS(2706), - [anon_sym_DASH_DASH] = ACTIONS(2708), - [anon_sym_PLUS_PLUS] = ACTIONS(2708), - [anon_sym_sizeof] = ACTIONS(2706), - [sym_number_literal] = ACTIONS(2708), - [anon_sym_L_SQUOTE] = ACTIONS(2708), - [anon_sym_u_SQUOTE] = ACTIONS(2708), - [anon_sym_U_SQUOTE] = ACTIONS(2708), - [anon_sym_u8_SQUOTE] = ACTIONS(2708), - [anon_sym_SQUOTE] = ACTIONS(2708), - [anon_sym_L_DQUOTE] = ACTIONS(2708), - [anon_sym_u_DQUOTE] = ACTIONS(2708), - [anon_sym_U_DQUOTE] = ACTIONS(2708), - [anon_sym_u8_DQUOTE] = ACTIONS(2708), - [anon_sym_DQUOTE] = ACTIONS(2708), - [sym_true] = ACTIONS(2706), - [sym_false] = ACTIONS(2706), - [sym_null] = ACTIONS(2706), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2706), - [anon_sym_decltype] = ACTIONS(2706), - [anon_sym_virtual] = ACTIONS(2706), - [anon_sym_explicit] = ACTIONS(2706), - [anon_sym_typename] = ACTIONS(2706), - [anon_sym_template] = ACTIONS(2706), - [anon_sym_operator] = ACTIONS(2706), - [anon_sym_try] = ACTIONS(2706), - [anon_sym_delete] = ACTIONS(2706), - [anon_sym_throw] = ACTIONS(2706), - [anon_sym_namespace] = ACTIONS(2706), - [anon_sym_using] = ACTIONS(2706), - [anon_sym_static_assert] = ACTIONS(2706), - [anon_sym_concept] = ACTIONS(2706), - [anon_sym_co_return] = ACTIONS(2706), - [anon_sym_co_yield] = ACTIONS(2706), - [anon_sym_R_DQUOTE] = ACTIONS(2708), - [anon_sym_LR_DQUOTE] = ACTIONS(2708), - [anon_sym_uR_DQUOTE] = ACTIONS(2708), - [anon_sym_UR_DQUOTE] = ACTIONS(2708), - [anon_sym_u8R_DQUOTE] = ACTIONS(2708), - [anon_sym_co_await] = ACTIONS(2706), - [anon_sym_new] = ACTIONS(2706), - [anon_sym_requires] = ACTIONS(2706), - [sym_this] = ACTIONS(2706), - [sym_nullptr] = ACTIONS(2706), + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token2] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [aux_sym_preproc_else_token1] = ACTIONS(3028), + [aux_sym_preproc_elif_token1] = ACTIONS(3028), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, [502] = { - [sym_identifier] = ACTIONS(2710), - [aux_sym_preproc_include_token1] = ACTIONS(2710), - [aux_sym_preproc_def_token1] = ACTIONS(2710), - [aux_sym_preproc_if_token1] = ACTIONS(2710), - [aux_sym_preproc_if_token2] = ACTIONS(2710), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2710), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2710), - [aux_sym_preproc_else_token1] = ACTIONS(2710), - [aux_sym_preproc_elif_token1] = ACTIONS(2710), - [sym_preproc_directive] = ACTIONS(2710), - [anon_sym_LPAREN2] = ACTIONS(2712), - [anon_sym_BANG] = ACTIONS(2712), - [anon_sym_TILDE] = ACTIONS(2712), - [anon_sym_DASH] = ACTIONS(2710), - [anon_sym_PLUS] = ACTIONS(2710), - [anon_sym_STAR] = ACTIONS(2712), - [anon_sym_AMP_AMP] = ACTIONS(2712), - [anon_sym_AMP] = ACTIONS(2710), - [anon_sym_SEMI] = ACTIONS(2712), - [anon_sym_typedef] = ACTIONS(2710), - [anon_sym_extern] = ACTIONS(2710), - [anon_sym___attribute__] = ACTIONS(2710), - [anon_sym_COLON_COLON] = ACTIONS(2712), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2712), - [anon_sym___declspec] = ACTIONS(2710), - [anon_sym___based] = ACTIONS(2710), - [anon_sym___cdecl] = ACTIONS(2710), - [anon_sym___clrcall] = ACTIONS(2710), - [anon_sym___stdcall] = ACTIONS(2710), - [anon_sym___fastcall] = ACTIONS(2710), - [anon_sym___thiscall] = ACTIONS(2710), - [anon_sym___vectorcall] = ACTIONS(2710), - [anon_sym_LBRACE] = ACTIONS(2712), - [anon_sym_LBRACK] = ACTIONS(2710), - [anon_sym_static] = ACTIONS(2710), - [anon_sym_register] = ACTIONS(2710), - [anon_sym_inline] = ACTIONS(2710), - [anon_sym_thread_local] = ACTIONS(2710), - [anon_sym_const] = ACTIONS(2710), - [anon_sym_volatile] = ACTIONS(2710), - [anon_sym_restrict] = ACTIONS(2710), - [anon_sym__Atomic] = ACTIONS(2710), - [anon_sym_mutable] = ACTIONS(2710), - [anon_sym_constexpr] = ACTIONS(2710), - [anon_sym_constinit] = ACTIONS(2710), - [anon_sym_consteval] = ACTIONS(2710), - [anon_sym_signed] = ACTIONS(2710), - [anon_sym_unsigned] = ACTIONS(2710), - [anon_sym_long] = ACTIONS(2710), - [anon_sym_short] = ACTIONS(2710), - [sym_primitive_type] = ACTIONS(2710), - [anon_sym_enum] = ACTIONS(2710), - [anon_sym_class] = ACTIONS(2710), - [anon_sym_struct] = ACTIONS(2710), - [anon_sym_union] = ACTIONS(2710), - [anon_sym_if] = ACTIONS(2710), - [anon_sym_switch] = ACTIONS(2710), - [anon_sym_case] = ACTIONS(2710), - [anon_sym_default] = ACTIONS(2710), - [anon_sym_while] = ACTIONS(2710), - [anon_sym_do] = ACTIONS(2710), - [anon_sym_for] = ACTIONS(2710), - [anon_sym_return] = ACTIONS(2710), - [anon_sym_break] = ACTIONS(2710), - [anon_sym_continue] = ACTIONS(2710), - [anon_sym_goto] = ACTIONS(2710), - [anon_sym_not] = ACTIONS(2710), - [anon_sym_compl] = ACTIONS(2710), - [anon_sym_DASH_DASH] = ACTIONS(2712), - [anon_sym_PLUS_PLUS] = ACTIONS(2712), - [anon_sym_sizeof] = ACTIONS(2710), - [sym_number_literal] = ACTIONS(2712), - [anon_sym_L_SQUOTE] = ACTIONS(2712), - [anon_sym_u_SQUOTE] = ACTIONS(2712), - [anon_sym_U_SQUOTE] = ACTIONS(2712), - [anon_sym_u8_SQUOTE] = ACTIONS(2712), - [anon_sym_SQUOTE] = ACTIONS(2712), - [anon_sym_L_DQUOTE] = ACTIONS(2712), - [anon_sym_u_DQUOTE] = ACTIONS(2712), - [anon_sym_U_DQUOTE] = ACTIONS(2712), - [anon_sym_u8_DQUOTE] = ACTIONS(2712), - [anon_sym_DQUOTE] = ACTIONS(2712), - [sym_true] = ACTIONS(2710), - [sym_false] = ACTIONS(2710), - [sym_null] = ACTIONS(2710), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2710), - [anon_sym_decltype] = ACTIONS(2710), - [anon_sym_virtual] = ACTIONS(2710), - [anon_sym_explicit] = ACTIONS(2710), - [anon_sym_typename] = ACTIONS(2710), - [anon_sym_template] = ACTIONS(2710), - [anon_sym_operator] = ACTIONS(2710), - [anon_sym_try] = ACTIONS(2710), - [anon_sym_delete] = ACTIONS(2710), - [anon_sym_throw] = ACTIONS(2710), - [anon_sym_namespace] = ACTIONS(2710), - [anon_sym_using] = ACTIONS(2710), - [anon_sym_static_assert] = ACTIONS(2710), - [anon_sym_concept] = ACTIONS(2710), - [anon_sym_co_return] = ACTIONS(2710), - [anon_sym_co_yield] = ACTIONS(2710), - [anon_sym_R_DQUOTE] = ACTIONS(2712), - [anon_sym_LR_DQUOTE] = ACTIONS(2712), - [anon_sym_uR_DQUOTE] = ACTIONS(2712), - [anon_sym_UR_DQUOTE] = ACTIONS(2712), - [anon_sym_u8R_DQUOTE] = ACTIONS(2712), - [anon_sym_co_await] = ACTIONS(2710), - [anon_sym_new] = ACTIONS(2710), - [anon_sym_requires] = ACTIONS(2710), - [sym_this] = ACTIONS(2710), - [sym_nullptr] = ACTIONS(2710), + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token2] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [aux_sym_preproc_else_token1] = ACTIONS(3028), + [aux_sym_preproc_elif_token1] = ACTIONS(3028), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, [503] = { - [sym_ms_based_modifier] = STATE(6104), - [sym_ms_unaligned_ptr_modifier] = STATE(4091), - [sym_ms_pointer_modifier] = STATE(3101), - [sym__declarator] = STATE(4939), - [sym_parenthesized_declarator] = STATE(4918), - [sym_attributed_declarator] = STATE(4918), - [sym_pointer_declarator] = STATE(4918), - [sym_function_declarator] = STATE(4918), - [sym_array_declarator] = STATE(4918), - [sym_type_qualifier] = STATE(3370), - [sym__expression] = STATE(2631), - [sym_conditional_expression] = STATE(2786), - [sym_assignment_expression] = STATE(2786), - [sym_pointer_expression] = STATE(2784), - [sym_unary_expression] = STATE(2786), - [sym_binary_expression] = STATE(2786), - [sym_update_expression] = STATE(2786), - [sym_cast_expression] = STATE(2786), - [sym_sizeof_expression] = STATE(2786), - [sym_subscript_expression] = STATE(2784), - [sym_call_expression] = STATE(2784), - [sym_field_expression] = STATE(2784), - [sym_compound_literal_expression] = STATE(2786), - [sym_parenthesized_expression] = STATE(2784), - [sym_char_literal] = STATE(2651), - [sym_concatenated_string] = STATE(2651), - [sym_string_literal] = STATE(1840), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5891), - [sym_reference_declarator] = STATE(4918), - [sym_structured_binding_declarator] = STATE(4918), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(2649), - [sym_raw_string_literal] = STATE(1840), - [sym_co_await_expression] = STATE(2786), - [sym_new_expression] = STATE(2786), - [sym_delete_expression] = STATE(2786), - [sym_requires_clause] = STATE(2786), - [sym_requires_expression] = STATE(2786), - [sym_lambda_expression] = STATE(2786), - [sym_lambda_capture_specifier] = STATE(4484), - [sym_fold_expression] = STATE(2786), - [sym_parameter_pack_expansion] = STATE(2786), - [sym_destructor_name] = STATE(4918), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4552), - [sym_qualified_identifier] = STATE(2647), - [sym_qualified_type_identifier] = STATE(5891), - [sym_operator_name] = STATE(4918), - [sym_user_defined_literal] = STATE(2786), - [aux_sym_type_definition_repeat1] = STATE(3370), - [aux_sym_pointer_declarator_repeat1] = STATE(3101), - [sym_identifier] = ACTIONS(2714), - [anon_sym_LPAREN2] = ACTIONS(2716), - [anon_sym_BANG] = ACTIONS(1573), - [anon_sym_TILDE] = ACTIONS(2718), - [anon_sym_DASH] = ACTIONS(1571), - [anon_sym_PLUS] = ACTIONS(1571), - [anon_sym_STAR] = ACTIONS(1497), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1499), - [anon_sym_COLON_COLON] = ACTIONS(1577), - [anon_sym___based] = ACTIONS(47), - [sym_ms_restrict_modifier] = ACTIONS(2720), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(2720), - [sym_ms_signed_ptr_modifier] = ACTIONS(2720), - [anon_sym__unaligned] = ACTIONS(2722), - [anon_sym___unaligned] = ACTIONS(2722), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_const] = ACTIONS(2724), - [anon_sym_volatile] = ACTIONS(2724), - [anon_sym_restrict] = ACTIONS(2724), - [anon_sym__Atomic] = ACTIONS(2724), - [anon_sym_mutable] = ACTIONS(2724), - [anon_sym_constexpr] = ACTIONS(2724), - [anon_sym_constinit] = ACTIONS(2724), - [anon_sym_consteval] = ACTIONS(2724), - [sym_primitive_type] = ACTIONS(1581), - [anon_sym_not] = ACTIONS(1571), - [anon_sym_compl] = ACTIONS(1571), - [anon_sym_DASH_DASH] = ACTIONS(1583), - [anon_sym_PLUS_PLUS] = ACTIONS(1583), - [anon_sym_sizeof] = ACTIONS(1585), - [sym_number_literal] = ACTIONS(1587), - [anon_sym_L_SQUOTE] = ACTIONS(1589), - [anon_sym_u_SQUOTE] = ACTIONS(1589), - [anon_sym_U_SQUOTE] = ACTIONS(1589), - [anon_sym_u8_SQUOTE] = ACTIONS(1589), - [anon_sym_SQUOTE] = ACTIONS(1589), - [anon_sym_L_DQUOTE] = ACTIONS(1591), - [anon_sym_u_DQUOTE] = ACTIONS(1591), - [anon_sym_U_DQUOTE] = ACTIONS(1591), - [anon_sym_u8_DQUOTE] = ACTIONS(1591), - [anon_sym_DQUOTE] = ACTIONS(1591), - [sym_true] = ACTIONS(1593), - [sym_false] = ACTIONS(1593), - [sym_null] = ACTIONS(1593), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_operator] = ACTIONS(1521), - [anon_sym_delete] = ACTIONS(1595), - [anon_sym_R_DQUOTE] = ACTIONS(1597), - [anon_sym_LR_DQUOTE] = ACTIONS(1597), - [anon_sym_uR_DQUOTE] = ACTIONS(1597), - [anon_sym_UR_DQUOTE] = ACTIONS(1597), - [anon_sym_u8R_DQUOTE] = ACTIONS(1597), - [anon_sym_co_await] = ACTIONS(1599), - [anon_sym_new] = ACTIONS(1601), - [anon_sym_requires] = ACTIONS(1603), - [sym_this] = ACTIONS(1593), - [sym_nullptr] = ACTIONS(1593), + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token2] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [aux_sym_preproc_else_token1] = ACTIONS(3048), + [aux_sym_preproc_elif_token1] = ACTIONS(3048), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, [504] = { - [sym_identifier] = ACTIONS(1729), - [aux_sym_preproc_include_token1] = ACTIONS(1729), - [aux_sym_preproc_def_token1] = ACTIONS(1729), - [aux_sym_preproc_if_token1] = ACTIONS(1729), - [aux_sym_preproc_if_token2] = ACTIONS(1729), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1729), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1729), - [sym_preproc_directive] = ACTIONS(1729), - [anon_sym_LPAREN2] = ACTIONS(1727), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_PLUS] = ACTIONS(1729), - [anon_sym_STAR] = ACTIONS(1727), - [anon_sym_AMP_AMP] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1729), - [anon_sym_SEMI] = ACTIONS(1727), - [anon_sym_typedef] = ACTIONS(1729), - [anon_sym_extern] = ACTIONS(1729), - [anon_sym___attribute__] = ACTIONS(1729), - [anon_sym_COLON_COLON] = ACTIONS(1727), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1727), - [anon_sym___declspec] = ACTIONS(1729), - [anon_sym___based] = ACTIONS(1729), - [anon_sym___cdecl] = ACTIONS(1729), - [anon_sym___clrcall] = ACTIONS(1729), - [anon_sym___stdcall] = ACTIONS(1729), - [anon_sym___fastcall] = ACTIONS(1729), - [anon_sym___thiscall] = ACTIONS(1729), - [anon_sym___vectorcall] = ACTIONS(1729), - [anon_sym_LBRACE] = ACTIONS(1727), - [anon_sym_LBRACK] = ACTIONS(1729), - [anon_sym_static] = ACTIONS(1729), - [anon_sym_register] = ACTIONS(1729), - [anon_sym_inline] = ACTIONS(1729), - [anon_sym_thread_local] = ACTIONS(1729), - [anon_sym_const] = ACTIONS(1729), - [anon_sym_volatile] = ACTIONS(1729), - [anon_sym_restrict] = ACTIONS(1729), - [anon_sym__Atomic] = ACTIONS(1729), - [anon_sym_mutable] = ACTIONS(1729), - [anon_sym_constexpr] = ACTIONS(1729), - [anon_sym_constinit] = ACTIONS(1729), - [anon_sym_consteval] = ACTIONS(1729), - [anon_sym_signed] = ACTIONS(1729), - [anon_sym_unsigned] = ACTIONS(1729), - [anon_sym_long] = ACTIONS(1729), - [anon_sym_short] = ACTIONS(1729), - [sym_primitive_type] = ACTIONS(1729), - [anon_sym_enum] = ACTIONS(1729), - [anon_sym_class] = ACTIONS(1729), - [anon_sym_struct] = ACTIONS(1729), - [anon_sym_union] = ACTIONS(1729), - [anon_sym_if] = ACTIONS(1729), - [anon_sym_else] = ACTIONS(1729), - [anon_sym_switch] = ACTIONS(1729), - [anon_sym_case] = ACTIONS(1729), - [anon_sym_default] = ACTIONS(1729), - [anon_sym_while] = ACTIONS(1729), - [anon_sym_do] = ACTIONS(1729), - [anon_sym_for] = ACTIONS(1729), - [anon_sym_return] = ACTIONS(1729), - [anon_sym_break] = ACTIONS(1729), - [anon_sym_continue] = ACTIONS(1729), - [anon_sym_goto] = ACTIONS(1729), - [anon_sym_not] = ACTIONS(1729), - [anon_sym_compl] = ACTIONS(1729), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_sizeof] = ACTIONS(1729), - [sym_number_literal] = ACTIONS(1727), - [anon_sym_L_SQUOTE] = ACTIONS(1727), - [anon_sym_u_SQUOTE] = ACTIONS(1727), - [anon_sym_U_SQUOTE] = ACTIONS(1727), - [anon_sym_u8_SQUOTE] = ACTIONS(1727), - [anon_sym_SQUOTE] = ACTIONS(1727), - [anon_sym_L_DQUOTE] = ACTIONS(1727), - [anon_sym_u_DQUOTE] = ACTIONS(1727), - [anon_sym_U_DQUOTE] = ACTIONS(1727), - [anon_sym_u8_DQUOTE] = ACTIONS(1727), - [anon_sym_DQUOTE] = ACTIONS(1727), - [sym_true] = ACTIONS(1729), - [sym_false] = ACTIONS(1729), - [sym_null] = ACTIONS(1729), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1729), - [anon_sym_decltype] = ACTIONS(1729), - [anon_sym_virtual] = ACTIONS(1729), - [anon_sym_explicit] = ACTIONS(1729), - [anon_sym_typename] = ACTIONS(1729), - [anon_sym_template] = ACTIONS(1729), - [anon_sym_operator] = ACTIONS(1729), - [anon_sym_try] = ACTIONS(1729), - [anon_sym_delete] = ACTIONS(1729), - [anon_sym_throw] = ACTIONS(1729), - [anon_sym_namespace] = ACTIONS(1729), - [anon_sym_using] = ACTIONS(1729), - [anon_sym_static_assert] = ACTIONS(1729), - [anon_sym_concept] = ACTIONS(1729), - [anon_sym_co_return] = ACTIONS(1729), - [anon_sym_co_yield] = ACTIONS(1729), - [anon_sym_catch] = ACTIONS(1729), - [anon_sym_R_DQUOTE] = ACTIONS(1727), - [anon_sym_LR_DQUOTE] = ACTIONS(1727), - [anon_sym_uR_DQUOTE] = ACTIONS(1727), - [anon_sym_UR_DQUOTE] = ACTIONS(1727), - [anon_sym_u8R_DQUOTE] = ACTIONS(1727), - [anon_sym_co_await] = ACTIONS(1729), - [anon_sym_new] = ACTIONS(1729), - [anon_sym_requires] = ACTIONS(1729), - [sym_this] = ACTIONS(1729), - [sym_nullptr] = ACTIONS(1729), + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token2] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [aux_sym_preproc_else_token1] = ACTIONS(3048), + [aux_sym_preproc_elif_token1] = ACTIONS(3048), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, [505] = { - [sym_identifier] = ACTIONS(1737), - [aux_sym_preproc_include_token1] = ACTIONS(1737), - [aux_sym_preproc_def_token1] = ACTIONS(1737), - [aux_sym_preproc_if_token1] = ACTIONS(1737), - [aux_sym_preproc_if_token2] = ACTIONS(1737), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1737), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1737), - [sym_preproc_directive] = ACTIONS(1737), - [anon_sym_LPAREN2] = ACTIONS(1735), - [anon_sym_BANG] = ACTIONS(1735), - [anon_sym_TILDE] = ACTIONS(1735), - [anon_sym_DASH] = ACTIONS(1737), - [anon_sym_PLUS] = ACTIONS(1737), - [anon_sym_STAR] = ACTIONS(1735), - [anon_sym_AMP_AMP] = ACTIONS(1735), - [anon_sym_AMP] = ACTIONS(1737), - [anon_sym_SEMI] = ACTIONS(1735), - [anon_sym_typedef] = ACTIONS(1737), - [anon_sym_extern] = ACTIONS(1737), - [anon_sym___attribute__] = ACTIONS(1737), - [anon_sym_COLON_COLON] = ACTIONS(1735), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1735), - [anon_sym___declspec] = ACTIONS(1737), - [anon_sym___based] = ACTIONS(1737), - [anon_sym___cdecl] = ACTIONS(1737), - [anon_sym___clrcall] = ACTIONS(1737), - [anon_sym___stdcall] = ACTIONS(1737), - [anon_sym___fastcall] = ACTIONS(1737), - [anon_sym___thiscall] = ACTIONS(1737), - [anon_sym___vectorcall] = ACTIONS(1737), - [anon_sym_LBRACE] = ACTIONS(1735), - [anon_sym_LBRACK] = ACTIONS(1737), - [anon_sym_static] = ACTIONS(1737), - [anon_sym_register] = ACTIONS(1737), - [anon_sym_inline] = ACTIONS(1737), - [anon_sym_thread_local] = ACTIONS(1737), - [anon_sym_const] = ACTIONS(1737), - [anon_sym_volatile] = ACTIONS(1737), - [anon_sym_restrict] = ACTIONS(1737), - [anon_sym__Atomic] = ACTIONS(1737), - [anon_sym_mutable] = ACTIONS(1737), - [anon_sym_constexpr] = ACTIONS(1737), - [anon_sym_constinit] = ACTIONS(1737), - [anon_sym_consteval] = ACTIONS(1737), - [anon_sym_signed] = ACTIONS(1737), - [anon_sym_unsigned] = ACTIONS(1737), - [anon_sym_long] = ACTIONS(1737), - [anon_sym_short] = ACTIONS(1737), - [sym_primitive_type] = ACTIONS(1737), - [anon_sym_enum] = ACTIONS(1737), - [anon_sym_class] = ACTIONS(1737), - [anon_sym_struct] = ACTIONS(1737), - [anon_sym_union] = ACTIONS(1737), - [anon_sym_if] = ACTIONS(1737), - [anon_sym_else] = ACTIONS(1737), - [anon_sym_switch] = ACTIONS(1737), - [anon_sym_case] = ACTIONS(1737), - [anon_sym_default] = ACTIONS(1737), - [anon_sym_while] = ACTIONS(1737), - [anon_sym_do] = ACTIONS(1737), - [anon_sym_for] = ACTIONS(1737), - [anon_sym_return] = ACTIONS(1737), - [anon_sym_break] = ACTIONS(1737), - [anon_sym_continue] = ACTIONS(1737), - [anon_sym_goto] = ACTIONS(1737), - [anon_sym_not] = ACTIONS(1737), - [anon_sym_compl] = ACTIONS(1737), - [anon_sym_DASH_DASH] = ACTIONS(1735), - [anon_sym_PLUS_PLUS] = ACTIONS(1735), - [anon_sym_sizeof] = ACTIONS(1737), - [sym_number_literal] = ACTIONS(1735), - [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_L_DQUOTE] = ACTIONS(1735), - [anon_sym_u_DQUOTE] = ACTIONS(1735), - [anon_sym_U_DQUOTE] = ACTIONS(1735), - [anon_sym_u8_DQUOTE] = ACTIONS(1735), - [anon_sym_DQUOTE] = ACTIONS(1735), - [sym_true] = ACTIONS(1737), - [sym_false] = ACTIONS(1737), - [sym_null] = ACTIONS(1737), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1737), - [anon_sym_decltype] = ACTIONS(1737), - [anon_sym_virtual] = ACTIONS(1737), - [anon_sym_explicit] = ACTIONS(1737), - [anon_sym_typename] = ACTIONS(1737), - [anon_sym_template] = ACTIONS(1737), - [anon_sym_operator] = ACTIONS(1737), - [anon_sym_try] = ACTIONS(1737), - [anon_sym_delete] = ACTIONS(1737), - [anon_sym_throw] = ACTIONS(1737), - [anon_sym_namespace] = ACTIONS(1737), - [anon_sym_using] = ACTIONS(1737), - [anon_sym_static_assert] = ACTIONS(1737), - [anon_sym_concept] = ACTIONS(1737), - [anon_sym_co_return] = ACTIONS(1737), - [anon_sym_co_yield] = ACTIONS(1737), - [anon_sym_catch] = ACTIONS(1737), - [anon_sym_R_DQUOTE] = ACTIONS(1735), - [anon_sym_LR_DQUOTE] = ACTIONS(1735), - [anon_sym_uR_DQUOTE] = ACTIONS(1735), - [anon_sym_UR_DQUOTE] = ACTIONS(1735), - [anon_sym_u8R_DQUOTE] = ACTIONS(1735), - [anon_sym_co_await] = ACTIONS(1737), - [anon_sym_new] = ACTIONS(1737), - [anon_sym_requires] = ACTIONS(1737), - [sym_this] = ACTIONS(1737), - [sym_nullptr] = ACTIONS(1737), + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token2] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [aux_sym_preproc_else_token1] = ACTIONS(3028), + [aux_sym_preproc_elif_token1] = ACTIONS(3028), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, [506] = { - [sym_identifier] = ACTIONS(2726), - [aux_sym_preproc_include_token1] = ACTIONS(2726), - [aux_sym_preproc_def_token1] = ACTIONS(2726), - [aux_sym_preproc_if_token1] = ACTIONS(2726), - [aux_sym_preproc_if_token2] = ACTIONS(2726), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2726), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2726), - [aux_sym_preproc_else_token1] = ACTIONS(2726), - [aux_sym_preproc_elif_token1] = ACTIONS(2726), - [sym_preproc_directive] = ACTIONS(2726), - [anon_sym_LPAREN2] = ACTIONS(2728), - [anon_sym_BANG] = ACTIONS(2728), - [anon_sym_TILDE] = ACTIONS(2728), - [anon_sym_DASH] = ACTIONS(2726), - [anon_sym_PLUS] = ACTIONS(2726), - [anon_sym_STAR] = ACTIONS(2728), - [anon_sym_AMP_AMP] = ACTIONS(2728), - [anon_sym_AMP] = ACTIONS(2726), - [anon_sym_SEMI] = ACTIONS(2728), - [anon_sym_typedef] = ACTIONS(2726), - [anon_sym_extern] = ACTIONS(2726), - [anon_sym___attribute__] = ACTIONS(2726), - [anon_sym_COLON_COLON] = ACTIONS(2728), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2728), - [anon_sym___declspec] = ACTIONS(2726), - [anon_sym___based] = ACTIONS(2726), - [anon_sym___cdecl] = ACTIONS(2726), - [anon_sym___clrcall] = ACTIONS(2726), - [anon_sym___stdcall] = ACTIONS(2726), - [anon_sym___fastcall] = ACTIONS(2726), - [anon_sym___thiscall] = ACTIONS(2726), - [anon_sym___vectorcall] = ACTIONS(2726), - [anon_sym_LBRACE] = ACTIONS(2728), - [anon_sym_LBRACK] = ACTIONS(2726), - [anon_sym_static] = ACTIONS(2726), - [anon_sym_register] = ACTIONS(2726), - [anon_sym_inline] = ACTIONS(2726), - [anon_sym_thread_local] = ACTIONS(2726), - [anon_sym_const] = ACTIONS(2726), - [anon_sym_volatile] = ACTIONS(2726), - [anon_sym_restrict] = ACTIONS(2726), - [anon_sym__Atomic] = ACTIONS(2726), - [anon_sym_mutable] = ACTIONS(2726), - [anon_sym_constexpr] = ACTIONS(2726), - [anon_sym_constinit] = ACTIONS(2726), - [anon_sym_consteval] = ACTIONS(2726), - [anon_sym_signed] = ACTIONS(2726), - [anon_sym_unsigned] = ACTIONS(2726), - [anon_sym_long] = ACTIONS(2726), - [anon_sym_short] = ACTIONS(2726), - [sym_primitive_type] = ACTIONS(2726), - [anon_sym_enum] = ACTIONS(2726), - [anon_sym_class] = ACTIONS(2726), - [anon_sym_struct] = ACTIONS(2726), - [anon_sym_union] = ACTIONS(2726), - [anon_sym_if] = ACTIONS(2726), - [anon_sym_switch] = ACTIONS(2726), - [anon_sym_case] = ACTIONS(2726), - [anon_sym_default] = ACTIONS(2726), - [anon_sym_while] = ACTIONS(2726), - [anon_sym_do] = ACTIONS(2726), - [anon_sym_for] = ACTIONS(2726), - [anon_sym_return] = ACTIONS(2726), - [anon_sym_break] = ACTIONS(2726), - [anon_sym_continue] = ACTIONS(2726), - [anon_sym_goto] = ACTIONS(2726), - [anon_sym_not] = ACTIONS(2726), - [anon_sym_compl] = ACTIONS(2726), - [anon_sym_DASH_DASH] = ACTIONS(2728), - [anon_sym_PLUS_PLUS] = ACTIONS(2728), - [anon_sym_sizeof] = ACTIONS(2726), - [sym_number_literal] = ACTIONS(2728), - [anon_sym_L_SQUOTE] = ACTIONS(2728), - [anon_sym_u_SQUOTE] = ACTIONS(2728), - [anon_sym_U_SQUOTE] = ACTIONS(2728), - [anon_sym_u8_SQUOTE] = ACTIONS(2728), - [anon_sym_SQUOTE] = ACTIONS(2728), - [anon_sym_L_DQUOTE] = ACTIONS(2728), - [anon_sym_u_DQUOTE] = ACTIONS(2728), - [anon_sym_U_DQUOTE] = ACTIONS(2728), - [anon_sym_u8_DQUOTE] = ACTIONS(2728), - [anon_sym_DQUOTE] = ACTIONS(2728), - [sym_true] = ACTIONS(2726), - [sym_false] = ACTIONS(2726), - [sym_null] = ACTIONS(2726), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2726), - [anon_sym_decltype] = ACTIONS(2726), - [anon_sym_virtual] = ACTIONS(2726), - [anon_sym_explicit] = ACTIONS(2726), - [anon_sym_typename] = ACTIONS(2726), - [anon_sym_template] = ACTIONS(2726), - [anon_sym_operator] = ACTIONS(2726), - [anon_sym_try] = ACTIONS(2726), - [anon_sym_delete] = ACTIONS(2726), - [anon_sym_throw] = ACTIONS(2726), - [anon_sym_namespace] = ACTIONS(2726), - [anon_sym_using] = ACTIONS(2726), - [anon_sym_static_assert] = ACTIONS(2726), - [anon_sym_concept] = ACTIONS(2726), - [anon_sym_co_return] = ACTIONS(2726), - [anon_sym_co_yield] = ACTIONS(2726), - [anon_sym_R_DQUOTE] = ACTIONS(2728), - [anon_sym_LR_DQUOTE] = ACTIONS(2728), - [anon_sym_uR_DQUOTE] = ACTIONS(2728), - [anon_sym_UR_DQUOTE] = ACTIONS(2728), - [anon_sym_u8R_DQUOTE] = ACTIONS(2728), - [anon_sym_co_await] = ACTIONS(2726), - [anon_sym_new] = ACTIONS(2726), - [anon_sym_requires] = ACTIONS(2726), - [sym_this] = ACTIONS(2726), - [sym_nullptr] = ACTIONS(2726), + [sym_identifier] = ACTIONS(3097), + [aux_sym_preproc_include_token1] = ACTIONS(3097), + [aux_sym_preproc_def_token1] = ACTIONS(3097), + [aux_sym_preproc_if_token1] = ACTIONS(3097), + [aux_sym_preproc_if_token2] = ACTIONS(3097), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3097), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3097), + [aux_sym_preproc_else_token1] = ACTIONS(3097), + [aux_sym_preproc_elif_token1] = ACTIONS(3097), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3097), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3097), + [sym_preproc_directive] = ACTIONS(3097), + [anon_sym_LPAREN2] = ACTIONS(3099), + [anon_sym_BANG] = ACTIONS(3099), + [anon_sym_TILDE] = ACTIONS(3099), + [anon_sym_DASH] = ACTIONS(3097), + [anon_sym_PLUS] = ACTIONS(3097), + [anon_sym_STAR] = ACTIONS(3099), + [anon_sym_AMP_AMP] = ACTIONS(3099), + [anon_sym_AMP] = ACTIONS(3097), + [anon_sym_SEMI] = ACTIONS(3099), + [anon_sym_typedef] = ACTIONS(3097), + [anon_sym_extern] = ACTIONS(3097), + [anon_sym___attribute__] = ACTIONS(3097), + [anon_sym_COLON_COLON] = ACTIONS(3099), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3099), + [anon_sym___declspec] = ACTIONS(3097), + [anon_sym___based] = ACTIONS(3097), + [anon_sym___cdecl] = ACTIONS(3097), + [anon_sym___clrcall] = ACTIONS(3097), + [anon_sym___stdcall] = ACTIONS(3097), + [anon_sym___fastcall] = ACTIONS(3097), + [anon_sym___thiscall] = ACTIONS(3097), + [anon_sym___vectorcall] = ACTIONS(3097), + [anon_sym_LBRACE] = ACTIONS(3099), + [anon_sym_LBRACK] = ACTIONS(3097), + [anon_sym_static] = ACTIONS(3097), + [anon_sym_register] = ACTIONS(3097), + [anon_sym_inline] = ACTIONS(3097), + [anon_sym_thread_local] = ACTIONS(3097), + [anon_sym_const] = ACTIONS(3097), + [anon_sym_constexpr] = ACTIONS(3097), + [anon_sym_volatile] = ACTIONS(3097), + [anon_sym_restrict] = ACTIONS(3097), + [anon_sym___restrict__] = ACTIONS(3097), + [anon_sym__Atomic] = ACTIONS(3097), + [anon_sym__Noreturn] = ACTIONS(3097), + [anon_sym_noreturn] = ACTIONS(3097), + [anon_sym_mutable] = ACTIONS(3097), + [anon_sym_constinit] = ACTIONS(3097), + [anon_sym_consteval] = ACTIONS(3097), + [anon_sym_signed] = ACTIONS(3097), + [anon_sym_unsigned] = ACTIONS(3097), + [anon_sym_long] = ACTIONS(3097), + [anon_sym_short] = ACTIONS(3097), + [sym_primitive_type] = ACTIONS(3097), + [anon_sym_enum] = ACTIONS(3097), + [anon_sym_class] = ACTIONS(3097), + [anon_sym_struct] = ACTIONS(3097), + [anon_sym_union] = ACTIONS(3097), + [anon_sym_if] = ACTIONS(3097), + [anon_sym_else] = ACTIONS(3097), + [anon_sym_switch] = ACTIONS(3097), + [anon_sym_case] = ACTIONS(3097), + [anon_sym_default] = ACTIONS(3097), + [anon_sym_while] = ACTIONS(3097), + [anon_sym_do] = ACTIONS(3097), + [anon_sym_for] = ACTIONS(3097), + [anon_sym_return] = ACTIONS(3097), + [anon_sym_break] = ACTIONS(3097), + [anon_sym_continue] = ACTIONS(3097), + [anon_sym_goto] = ACTIONS(3097), + [anon_sym_not] = ACTIONS(3097), + [anon_sym_compl] = ACTIONS(3097), + [anon_sym_DASH_DASH] = ACTIONS(3099), + [anon_sym_PLUS_PLUS] = ACTIONS(3099), + [anon_sym_sizeof] = ACTIONS(3097), + [anon_sym_offsetof] = ACTIONS(3097), + [anon_sym__Generic] = ACTIONS(3097), + [anon_sym_asm] = ACTIONS(3097), + [anon_sym___asm__] = ACTIONS(3097), + [sym_number_literal] = ACTIONS(3099), + [anon_sym_L_SQUOTE] = ACTIONS(3099), + [anon_sym_u_SQUOTE] = ACTIONS(3099), + [anon_sym_U_SQUOTE] = ACTIONS(3099), + [anon_sym_u8_SQUOTE] = ACTIONS(3099), + [anon_sym_SQUOTE] = ACTIONS(3099), + [anon_sym_L_DQUOTE] = ACTIONS(3099), + [anon_sym_u_DQUOTE] = ACTIONS(3099), + [anon_sym_U_DQUOTE] = ACTIONS(3099), + [anon_sym_u8_DQUOTE] = ACTIONS(3099), + [anon_sym_DQUOTE] = ACTIONS(3099), + [sym_true] = ACTIONS(3097), + [sym_false] = ACTIONS(3097), + [anon_sym_NULL] = ACTIONS(3097), + [anon_sym_nullptr] = ACTIONS(3097), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3097), + [anon_sym_decltype] = ACTIONS(3097), + [anon_sym_virtual] = ACTIONS(3097), + [anon_sym_explicit] = ACTIONS(3097), + [anon_sym_typename] = ACTIONS(3097), + [anon_sym_template] = ACTIONS(3097), + [anon_sym_operator] = ACTIONS(3097), + [anon_sym_try] = ACTIONS(3097), + [anon_sym_delete] = ACTIONS(3097), + [anon_sym_throw] = ACTIONS(3097), + [anon_sym_namespace] = ACTIONS(3097), + [anon_sym_using] = ACTIONS(3097), + [anon_sym_static_assert] = ACTIONS(3097), + [anon_sym_concept] = ACTIONS(3097), + [anon_sym_co_return] = ACTIONS(3097), + [anon_sym_co_yield] = ACTIONS(3097), + [anon_sym_R_DQUOTE] = ACTIONS(3099), + [anon_sym_LR_DQUOTE] = ACTIONS(3099), + [anon_sym_uR_DQUOTE] = ACTIONS(3099), + [anon_sym_UR_DQUOTE] = ACTIONS(3099), + [anon_sym_u8R_DQUOTE] = ACTIONS(3099), + [anon_sym_co_await] = ACTIONS(3097), + [anon_sym_new] = ACTIONS(3097), + [anon_sym_requires] = ACTIONS(3097), + [sym_this] = ACTIONS(3097), }, [507] = { - [sym_identifier] = ACTIONS(2730), - [aux_sym_preproc_include_token1] = ACTIONS(2730), - [aux_sym_preproc_def_token1] = ACTIONS(2730), - [aux_sym_preproc_if_token1] = ACTIONS(2730), - [aux_sym_preproc_if_token2] = ACTIONS(2730), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2730), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2730), - [aux_sym_preproc_else_token1] = ACTIONS(2730), - [aux_sym_preproc_elif_token1] = ACTIONS(2730), - [sym_preproc_directive] = ACTIONS(2730), - [anon_sym_LPAREN2] = ACTIONS(2732), - [anon_sym_BANG] = ACTIONS(2732), - [anon_sym_TILDE] = ACTIONS(2732), - [anon_sym_DASH] = ACTIONS(2730), - [anon_sym_PLUS] = ACTIONS(2730), - [anon_sym_STAR] = ACTIONS(2732), - [anon_sym_AMP_AMP] = ACTIONS(2732), - [anon_sym_AMP] = ACTIONS(2730), - [anon_sym_SEMI] = ACTIONS(2732), - [anon_sym_typedef] = ACTIONS(2730), - [anon_sym_extern] = ACTIONS(2730), - [anon_sym___attribute__] = ACTIONS(2730), - [anon_sym_COLON_COLON] = ACTIONS(2732), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2732), - [anon_sym___declspec] = ACTIONS(2730), - [anon_sym___based] = ACTIONS(2730), - [anon_sym___cdecl] = ACTIONS(2730), - [anon_sym___clrcall] = ACTIONS(2730), - [anon_sym___stdcall] = ACTIONS(2730), - [anon_sym___fastcall] = ACTIONS(2730), - [anon_sym___thiscall] = ACTIONS(2730), - [anon_sym___vectorcall] = ACTIONS(2730), - [anon_sym_LBRACE] = ACTIONS(2732), - [anon_sym_LBRACK] = ACTIONS(2730), - [anon_sym_static] = ACTIONS(2730), - [anon_sym_register] = ACTIONS(2730), - [anon_sym_inline] = ACTIONS(2730), - [anon_sym_thread_local] = ACTIONS(2730), - [anon_sym_const] = ACTIONS(2730), - [anon_sym_volatile] = ACTIONS(2730), - [anon_sym_restrict] = ACTIONS(2730), - [anon_sym__Atomic] = ACTIONS(2730), - [anon_sym_mutable] = ACTIONS(2730), - [anon_sym_constexpr] = ACTIONS(2730), - [anon_sym_constinit] = ACTIONS(2730), - [anon_sym_consteval] = ACTIONS(2730), - [anon_sym_signed] = ACTIONS(2730), - [anon_sym_unsigned] = ACTIONS(2730), - [anon_sym_long] = ACTIONS(2730), - [anon_sym_short] = ACTIONS(2730), - [sym_primitive_type] = ACTIONS(2730), - [anon_sym_enum] = ACTIONS(2730), - [anon_sym_class] = ACTIONS(2730), - [anon_sym_struct] = ACTIONS(2730), - [anon_sym_union] = ACTIONS(2730), - [anon_sym_if] = ACTIONS(2730), - [anon_sym_switch] = ACTIONS(2730), - [anon_sym_case] = ACTIONS(2730), - [anon_sym_default] = ACTIONS(2730), - [anon_sym_while] = ACTIONS(2730), - [anon_sym_do] = ACTIONS(2730), - [anon_sym_for] = ACTIONS(2730), - [anon_sym_return] = ACTIONS(2730), - [anon_sym_break] = ACTIONS(2730), - [anon_sym_continue] = ACTIONS(2730), - [anon_sym_goto] = ACTIONS(2730), - [anon_sym_not] = ACTIONS(2730), - [anon_sym_compl] = ACTIONS(2730), - [anon_sym_DASH_DASH] = ACTIONS(2732), - [anon_sym_PLUS_PLUS] = ACTIONS(2732), - [anon_sym_sizeof] = ACTIONS(2730), - [sym_number_literal] = ACTIONS(2732), - [anon_sym_L_SQUOTE] = ACTIONS(2732), - [anon_sym_u_SQUOTE] = ACTIONS(2732), - [anon_sym_U_SQUOTE] = ACTIONS(2732), - [anon_sym_u8_SQUOTE] = ACTIONS(2732), - [anon_sym_SQUOTE] = ACTIONS(2732), - [anon_sym_L_DQUOTE] = ACTIONS(2732), - [anon_sym_u_DQUOTE] = ACTIONS(2732), - [anon_sym_U_DQUOTE] = ACTIONS(2732), - [anon_sym_u8_DQUOTE] = ACTIONS(2732), - [anon_sym_DQUOTE] = ACTIONS(2732), - [sym_true] = ACTIONS(2730), - [sym_false] = ACTIONS(2730), - [sym_null] = ACTIONS(2730), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2730), - [anon_sym_decltype] = ACTIONS(2730), - [anon_sym_virtual] = ACTIONS(2730), - [anon_sym_explicit] = ACTIONS(2730), - [anon_sym_typename] = ACTIONS(2730), - [anon_sym_template] = ACTIONS(2730), - [anon_sym_operator] = ACTIONS(2730), - [anon_sym_try] = ACTIONS(2730), - [anon_sym_delete] = ACTIONS(2730), - [anon_sym_throw] = ACTIONS(2730), - [anon_sym_namespace] = ACTIONS(2730), - [anon_sym_using] = ACTIONS(2730), - [anon_sym_static_assert] = ACTIONS(2730), - [anon_sym_concept] = ACTIONS(2730), - [anon_sym_co_return] = ACTIONS(2730), - [anon_sym_co_yield] = ACTIONS(2730), - [anon_sym_R_DQUOTE] = ACTIONS(2732), - [anon_sym_LR_DQUOTE] = ACTIONS(2732), - [anon_sym_uR_DQUOTE] = ACTIONS(2732), - [anon_sym_UR_DQUOTE] = ACTIONS(2732), - [anon_sym_u8R_DQUOTE] = ACTIONS(2732), - [anon_sym_co_await] = ACTIONS(2730), - [anon_sym_new] = ACTIONS(2730), - [anon_sym_requires] = ACTIONS(2730), - [sym_this] = ACTIONS(2730), - [sym_nullptr] = ACTIONS(2730), + [sym_identifier] = ACTIONS(3101), + [aux_sym_preproc_include_token1] = ACTIONS(3101), + [aux_sym_preproc_def_token1] = ACTIONS(3101), + [aux_sym_preproc_if_token1] = ACTIONS(3101), + [aux_sym_preproc_if_token2] = ACTIONS(3101), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3101), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3101), + [aux_sym_preproc_else_token1] = ACTIONS(3101), + [aux_sym_preproc_elif_token1] = ACTIONS(3101), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3101), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3101), + [sym_preproc_directive] = ACTIONS(3101), + [anon_sym_LPAREN2] = ACTIONS(3103), + [anon_sym_BANG] = ACTIONS(3103), + [anon_sym_TILDE] = ACTIONS(3103), + [anon_sym_DASH] = ACTIONS(3101), + [anon_sym_PLUS] = ACTIONS(3101), + [anon_sym_STAR] = ACTIONS(3103), + [anon_sym_AMP_AMP] = ACTIONS(3103), + [anon_sym_AMP] = ACTIONS(3101), + [anon_sym_SEMI] = ACTIONS(3103), + [anon_sym_typedef] = ACTIONS(3101), + [anon_sym_extern] = ACTIONS(3101), + [anon_sym___attribute__] = ACTIONS(3101), + [anon_sym_COLON_COLON] = ACTIONS(3103), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3103), + [anon_sym___declspec] = ACTIONS(3101), + [anon_sym___based] = ACTIONS(3101), + [anon_sym___cdecl] = ACTIONS(3101), + [anon_sym___clrcall] = ACTIONS(3101), + [anon_sym___stdcall] = ACTIONS(3101), + [anon_sym___fastcall] = ACTIONS(3101), + [anon_sym___thiscall] = ACTIONS(3101), + [anon_sym___vectorcall] = ACTIONS(3101), + [anon_sym_LBRACE] = ACTIONS(3103), + [anon_sym_LBRACK] = ACTIONS(3101), + [anon_sym_static] = ACTIONS(3101), + [anon_sym_register] = ACTIONS(3101), + [anon_sym_inline] = ACTIONS(3101), + [anon_sym_thread_local] = ACTIONS(3101), + [anon_sym_const] = ACTIONS(3101), + [anon_sym_constexpr] = ACTIONS(3101), + [anon_sym_volatile] = ACTIONS(3101), + [anon_sym_restrict] = ACTIONS(3101), + [anon_sym___restrict__] = ACTIONS(3101), + [anon_sym__Atomic] = ACTIONS(3101), + [anon_sym__Noreturn] = ACTIONS(3101), + [anon_sym_noreturn] = ACTIONS(3101), + [anon_sym_mutable] = ACTIONS(3101), + [anon_sym_constinit] = ACTIONS(3101), + [anon_sym_consteval] = ACTIONS(3101), + [anon_sym_signed] = ACTIONS(3101), + [anon_sym_unsigned] = ACTIONS(3101), + [anon_sym_long] = ACTIONS(3101), + [anon_sym_short] = ACTIONS(3101), + [sym_primitive_type] = ACTIONS(3101), + [anon_sym_enum] = ACTIONS(3101), + [anon_sym_class] = ACTIONS(3101), + [anon_sym_struct] = ACTIONS(3101), + [anon_sym_union] = ACTIONS(3101), + [anon_sym_if] = ACTIONS(3101), + [anon_sym_else] = ACTIONS(3101), + [anon_sym_switch] = ACTIONS(3101), + [anon_sym_case] = ACTIONS(3101), + [anon_sym_default] = ACTIONS(3101), + [anon_sym_while] = ACTIONS(3101), + [anon_sym_do] = ACTIONS(3101), + [anon_sym_for] = ACTIONS(3101), + [anon_sym_return] = ACTIONS(3101), + [anon_sym_break] = ACTIONS(3101), + [anon_sym_continue] = ACTIONS(3101), + [anon_sym_goto] = ACTIONS(3101), + [anon_sym_not] = ACTIONS(3101), + [anon_sym_compl] = ACTIONS(3101), + [anon_sym_DASH_DASH] = ACTIONS(3103), + [anon_sym_PLUS_PLUS] = ACTIONS(3103), + [anon_sym_sizeof] = ACTIONS(3101), + [anon_sym_offsetof] = ACTIONS(3101), + [anon_sym__Generic] = ACTIONS(3101), + [anon_sym_asm] = ACTIONS(3101), + [anon_sym___asm__] = ACTIONS(3101), + [sym_number_literal] = ACTIONS(3103), + [anon_sym_L_SQUOTE] = ACTIONS(3103), + [anon_sym_u_SQUOTE] = ACTIONS(3103), + [anon_sym_U_SQUOTE] = ACTIONS(3103), + [anon_sym_u8_SQUOTE] = ACTIONS(3103), + [anon_sym_SQUOTE] = ACTIONS(3103), + [anon_sym_L_DQUOTE] = ACTIONS(3103), + [anon_sym_u_DQUOTE] = ACTIONS(3103), + [anon_sym_U_DQUOTE] = ACTIONS(3103), + [anon_sym_u8_DQUOTE] = ACTIONS(3103), + [anon_sym_DQUOTE] = ACTIONS(3103), + [sym_true] = ACTIONS(3101), + [sym_false] = ACTIONS(3101), + [anon_sym_NULL] = ACTIONS(3101), + [anon_sym_nullptr] = ACTIONS(3101), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3101), + [anon_sym_decltype] = ACTIONS(3101), + [anon_sym_virtual] = ACTIONS(3101), + [anon_sym_explicit] = ACTIONS(3101), + [anon_sym_typename] = ACTIONS(3101), + [anon_sym_template] = ACTIONS(3101), + [anon_sym_operator] = ACTIONS(3101), + [anon_sym_try] = ACTIONS(3101), + [anon_sym_delete] = ACTIONS(3101), + [anon_sym_throw] = ACTIONS(3101), + [anon_sym_namespace] = ACTIONS(3101), + [anon_sym_using] = ACTIONS(3101), + [anon_sym_static_assert] = ACTIONS(3101), + [anon_sym_concept] = ACTIONS(3101), + [anon_sym_co_return] = ACTIONS(3101), + [anon_sym_co_yield] = ACTIONS(3101), + [anon_sym_R_DQUOTE] = ACTIONS(3103), + [anon_sym_LR_DQUOTE] = ACTIONS(3103), + [anon_sym_uR_DQUOTE] = ACTIONS(3103), + [anon_sym_UR_DQUOTE] = ACTIONS(3103), + [anon_sym_u8R_DQUOTE] = ACTIONS(3103), + [anon_sym_co_await] = ACTIONS(3101), + [anon_sym_new] = ACTIONS(3101), + [anon_sym_requires] = ACTIONS(3101), + [sym_this] = ACTIONS(3101), }, [508] = { - [sym_identifier] = ACTIONS(2734), - [aux_sym_preproc_include_token1] = ACTIONS(2734), - [aux_sym_preproc_def_token1] = ACTIONS(2734), - [aux_sym_preproc_if_token1] = ACTIONS(2734), - [aux_sym_preproc_if_token2] = ACTIONS(2734), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2734), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2734), - [aux_sym_preproc_else_token1] = ACTIONS(2734), - [aux_sym_preproc_elif_token1] = ACTIONS(2734), - [sym_preproc_directive] = ACTIONS(2734), - [anon_sym_LPAREN2] = ACTIONS(2736), - [anon_sym_BANG] = ACTIONS(2736), - [anon_sym_TILDE] = ACTIONS(2736), - [anon_sym_DASH] = ACTIONS(2734), - [anon_sym_PLUS] = ACTIONS(2734), - [anon_sym_STAR] = ACTIONS(2736), - [anon_sym_AMP_AMP] = ACTIONS(2736), - [anon_sym_AMP] = ACTIONS(2734), - [anon_sym_SEMI] = ACTIONS(2736), - [anon_sym_typedef] = ACTIONS(2734), - [anon_sym_extern] = ACTIONS(2734), - [anon_sym___attribute__] = ACTIONS(2734), - [anon_sym_COLON_COLON] = ACTIONS(2736), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2736), - [anon_sym___declspec] = ACTIONS(2734), - [anon_sym___based] = ACTIONS(2734), - [anon_sym___cdecl] = ACTIONS(2734), - [anon_sym___clrcall] = ACTIONS(2734), - [anon_sym___stdcall] = ACTIONS(2734), - [anon_sym___fastcall] = ACTIONS(2734), - [anon_sym___thiscall] = ACTIONS(2734), - [anon_sym___vectorcall] = ACTIONS(2734), - [anon_sym_LBRACE] = ACTIONS(2736), - [anon_sym_LBRACK] = ACTIONS(2734), - [anon_sym_static] = ACTIONS(2734), - [anon_sym_register] = ACTIONS(2734), - [anon_sym_inline] = ACTIONS(2734), - [anon_sym_thread_local] = ACTIONS(2734), - [anon_sym_const] = ACTIONS(2734), - [anon_sym_volatile] = ACTIONS(2734), - [anon_sym_restrict] = ACTIONS(2734), - [anon_sym__Atomic] = ACTIONS(2734), - [anon_sym_mutable] = ACTIONS(2734), - [anon_sym_constexpr] = ACTIONS(2734), - [anon_sym_constinit] = ACTIONS(2734), - [anon_sym_consteval] = ACTIONS(2734), - [anon_sym_signed] = ACTIONS(2734), - [anon_sym_unsigned] = ACTIONS(2734), - [anon_sym_long] = ACTIONS(2734), - [anon_sym_short] = ACTIONS(2734), - [sym_primitive_type] = ACTIONS(2734), - [anon_sym_enum] = ACTIONS(2734), - [anon_sym_class] = ACTIONS(2734), - [anon_sym_struct] = ACTIONS(2734), - [anon_sym_union] = ACTIONS(2734), - [anon_sym_if] = ACTIONS(2734), - [anon_sym_switch] = ACTIONS(2734), - [anon_sym_case] = ACTIONS(2734), - [anon_sym_default] = ACTIONS(2734), - [anon_sym_while] = ACTIONS(2734), - [anon_sym_do] = ACTIONS(2734), - [anon_sym_for] = ACTIONS(2734), - [anon_sym_return] = ACTIONS(2734), - [anon_sym_break] = ACTIONS(2734), - [anon_sym_continue] = ACTIONS(2734), - [anon_sym_goto] = ACTIONS(2734), - [anon_sym_not] = ACTIONS(2734), - [anon_sym_compl] = ACTIONS(2734), - [anon_sym_DASH_DASH] = ACTIONS(2736), - [anon_sym_PLUS_PLUS] = ACTIONS(2736), - [anon_sym_sizeof] = ACTIONS(2734), - [sym_number_literal] = ACTIONS(2736), - [anon_sym_L_SQUOTE] = ACTIONS(2736), - [anon_sym_u_SQUOTE] = ACTIONS(2736), - [anon_sym_U_SQUOTE] = ACTIONS(2736), - [anon_sym_u8_SQUOTE] = ACTIONS(2736), - [anon_sym_SQUOTE] = ACTIONS(2736), - [anon_sym_L_DQUOTE] = ACTIONS(2736), - [anon_sym_u_DQUOTE] = ACTIONS(2736), - [anon_sym_U_DQUOTE] = ACTIONS(2736), - [anon_sym_u8_DQUOTE] = ACTIONS(2736), - [anon_sym_DQUOTE] = ACTIONS(2736), - [sym_true] = ACTIONS(2734), - [sym_false] = ACTIONS(2734), - [sym_null] = ACTIONS(2734), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2734), - [anon_sym_decltype] = ACTIONS(2734), - [anon_sym_virtual] = ACTIONS(2734), - [anon_sym_explicit] = ACTIONS(2734), - [anon_sym_typename] = ACTIONS(2734), - [anon_sym_template] = ACTIONS(2734), - [anon_sym_operator] = ACTIONS(2734), - [anon_sym_try] = ACTIONS(2734), - [anon_sym_delete] = ACTIONS(2734), - [anon_sym_throw] = ACTIONS(2734), - [anon_sym_namespace] = ACTIONS(2734), - [anon_sym_using] = ACTIONS(2734), - [anon_sym_static_assert] = ACTIONS(2734), - [anon_sym_concept] = ACTIONS(2734), - [anon_sym_co_return] = ACTIONS(2734), - [anon_sym_co_yield] = ACTIONS(2734), - [anon_sym_R_DQUOTE] = ACTIONS(2736), - [anon_sym_LR_DQUOTE] = ACTIONS(2736), - [anon_sym_uR_DQUOTE] = ACTIONS(2736), - [anon_sym_UR_DQUOTE] = ACTIONS(2736), - [anon_sym_u8R_DQUOTE] = ACTIONS(2736), - [anon_sym_co_await] = ACTIONS(2734), - [anon_sym_new] = ACTIONS(2734), - [anon_sym_requires] = ACTIONS(2734), - [sym_this] = ACTIONS(2734), - [sym_nullptr] = ACTIONS(2734), + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token2] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [aux_sym_preproc_else_token1] = ACTIONS(3048), + [aux_sym_preproc_elif_token1] = ACTIONS(3048), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, [509] = { - [sym_identifier] = ACTIONS(2738), - [aux_sym_preproc_include_token1] = ACTIONS(2738), - [aux_sym_preproc_def_token1] = ACTIONS(2738), - [aux_sym_preproc_if_token1] = ACTIONS(2738), - [aux_sym_preproc_if_token2] = ACTIONS(2738), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2738), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2738), - [aux_sym_preproc_else_token1] = ACTIONS(2738), - [aux_sym_preproc_elif_token1] = ACTIONS(2738), - [sym_preproc_directive] = ACTIONS(2738), - [anon_sym_LPAREN2] = ACTIONS(2740), - [anon_sym_BANG] = ACTIONS(2740), - [anon_sym_TILDE] = ACTIONS(2740), - [anon_sym_DASH] = ACTIONS(2738), - [anon_sym_PLUS] = ACTIONS(2738), - [anon_sym_STAR] = ACTIONS(2740), - [anon_sym_AMP_AMP] = ACTIONS(2740), - [anon_sym_AMP] = ACTIONS(2738), - [anon_sym_SEMI] = ACTIONS(2740), - [anon_sym_typedef] = ACTIONS(2738), - [anon_sym_extern] = ACTIONS(2738), - [anon_sym___attribute__] = ACTIONS(2738), - [anon_sym_COLON_COLON] = ACTIONS(2740), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2740), - [anon_sym___declspec] = ACTIONS(2738), - [anon_sym___based] = ACTIONS(2738), - [anon_sym___cdecl] = ACTIONS(2738), - [anon_sym___clrcall] = ACTIONS(2738), - [anon_sym___stdcall] = ACTIONS(2738), - [anon_sym___fastcall] = ACTIONS(2738), - [anon_sym___thiscall] = ACTIONS(2738), - [anon_sym___vectorcall] = ACTIONS(2738), - [anon_sym_LBRACE] = ACTIONS(2740), - [anon_sym_LBRACK] = ACTIONS(2738), - [anon_sym_static] = ACTIONS(2738), - [anon_sym_register] = ACTIONS(2738), - [anon_sym_inline] = ACTIONS(2738), - [anon_sym_thread_local] = ACTIONS(2738), - [anon_sym_const] = ACTIONS(2738), - [anon_sym_volatile] = ACTIONS(2738), - [anon_sym_restrict] = ACTIONS(2738), - [anon_sym__Atomic] = ACTIONS(2738), - [anon_sym_mutable] = ACTIONS(2738), - [anon_sym_constexpr] = ACTIONS(2738), - [anon_sym_constinit] = ACTIONS(2738), - [anon_sym_consteval] = ACTIONS(2738), - [anon_sym_signed] = ACTIONS(2738), - [anon_sym_unsigned] = ACTIONS(2738), - [anon_sym_long] = ACTIONS(2738), - [anon_sym_short] = ACTIONS(2738), - [sym_primitive_type] = ACTIONS(2738), - [anon_sym_enum] = ACTIONS(2738), - [anon_sym_class] = ACTIONS(2738), - [anon_sym_struct] = ACTIONS(2738), - [anon_sym_union] = ACTIONS(2738), - [anon_sym_if] = ACTIONS(2738), - [anon_sym_switch] = ACTIONS(2738), - [anon_sym_case] = ACTIONS(2738), - [anon_sym_default] = ACTIONS(2738), - [anon_sym_while] = ACTIONS(2738), - [anon_sym_do] = ACTIONS(2738), - [anon_sym_for] = ACTIONS(2738), - [anon_sym_return] = ACTIONS(2738), - [anon_sym_break] = ACTIONS(2738), - [anon_sym_continue] = ACTIONS(2738), - [anon_sym_goto] = ACTIONS(2738), - [anon_sym_not] = ACTIONS(2738), - [anon_sym_compl] = ACTIONS(2738), - [anon_sym_DASH_DASH] = ACTIONS(2740), - [anon_sym_PLUS_PLUS] = ACTIONS(2740), - [anon_sym_sizeof] = ACTIONS(2738), - [sym_number_literal] = ACTIONS(2740), - [anon_sym_L_SQUOTE] = ACTIONS(2740), - [anon_sym_u_SQUOTE] = ACTIONS(2740), - [anon_sym_U_SQUOTE] = ACTIONS(2740), - [anon_sym_u8_SQUOTE] = ACTIONS(2740), - [anon_sym_SQUOTE] = ACTIONS(2740), - [anon_sym_L_DQUOTE] = ACTIONS(2740), - [anon_sym_u_DQUOTE] = ACTIONS(2740), - [anon_sym_U_DQUOTE] = ACTIONS(2740), - [anon_sym_u8_DQUOTE] = ACTIONS(2740), - [anon_sym_DQUOTE] = ACTIONS(2740), - [sym_true] = ACTIONS(2738), - [sym_false] = ACTIONS(2738), - [sym_null] = ACTIONS(2738), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2738), - [anon_sym_decltype] = ACTIONS(2738), - [anon_sym_virtual] = ACTIONS(2738), - [anon_sym_explicit] = ACTIONS(2738), - [anon_sym_typename] = ACTIONS(2738), - [anon_sym_template] = ACTIONS(2738), - [anon_sym_operator] = ACTIONS(2738), - [anon_sym_try] = ACTIONS(2738), - [anon_sym_delete] = ACTIONS(2738), - [anon_sym_throw] = ACTIONS(2738), - [anon_sym_namespace] = ACTIONS(2738), - [anon_sym_using] = ACTIONS(2738), - [anon_sym_static_assert] = ACTIONS(2738), - [anon_sym_concept] = ACTIONS(2738), - [anon_sym_co_return] = ACTIONS(2738), - [anon_sym_co_yield] = ACTIONS(2738), - [anon_sym_R_DQUOTE] = ACTIONS(2740), - [anon_sym_LR_DQUOTE] = ACTIONS(2740), - [anon_sym_uR_DQUOTE] = ACTIONS(2740), - [anon_sym_UR_DQUOTE] = ACTIONS(2740), - [anon_sym_u8R_DQUOTE] = ACTIONS(2740), - [anon_sym_co_await] = ACTIONS(2738), - [anon_sym_new] = ACTIONS(2738), - [anon_sym_requires] = ACTIONS(2738), - [sym_this] = ACTIONS(2738), - [sym_nullptr] = ACTIONS(2738), + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token2] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [aux_sym_preproc_else_token1] = ACTIONS(3048), + [aux_sym_preproc_elif_token1] = ACTIONS(3048), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, [510] = { - [sym_identifier] = ACTIONS(2742), - [aux_sym_preproc_include_token1] = ACTIONS(2742), - [aux_sym_preproc_def_token1] = ACTIONS(2742), - [aux_sym_preproc_if_token1] = ACTIONS(2742), - [aux_sym_preproc_if_token2] = ACTIONS(2742), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2742), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2742), - [aux_sym_preproc_else_token1] = ACTIONS(2742), - [aux_sym_preproc_elif_token1] = ACTIONS(2742), - [sym_preproc_directive] = ACTIONS(2742), - [anon_sym_LPAREN2] = ACTIONS(2744), - [anon_sym_BANG] = ACTIONS(2744), - [anon_sym_TILDE] = ACTIONS(2744), - [anon_sym_DASH] = ACTIONS(2742), - [anon_sym_PLUS] = ACTIONS(2742), - [anon_sym_STAR] = ACTIONS(2744), - [anon_sym_AMP_AMP] = ACTIONS(2744), - [anon_sym_AMP] = ACTIONS(2742), - [anon_sym_SEMI] = ACTIONS(2744), - [anon_sym_typedef] = ACTIONS(2742), - [anon_sym_extern] = ACTIONS(2742), - [anon_sym___attribute__] = ACTIONS(2742), - [anon_sym_COLON_COLON] = ACTIONS(2744), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2744), - [anon_sym___declspec] = ACTIONS(2742), - [anon_sym___based] = ACTIONS(2742), - [anon_sym___cdecl] = ACTIONS(2742), - [anon_sym___clrcall] = ACTIONS(2742), - [anon_sym___stdcall] = ACTIONS(2742), - [anon_sym___fastcall] = ACTIONS(2742), - [anon_sym___thiscall] = ACTIONS(2742), - [anon_sym___vectorcall] = ACTIONS(2742), - [anon_sym_LBRACE] = ACTIONS(2744), - [anon_sym_LBRACK] = ACTIONS(2742), - [anon_sym_static] = ACTIONS(2742), - [anon_sym_register] = ACTIONS(2742), - [anon_sym_inline] = ACTIONS(2742), - [anon_sym_thread_local] = ACTIONS(2742), - [anon_sym_const] = ACTIONS(2742), - [anon_sym_volatile] = ACTIONS(2742), - [anon_sym_restrict] = ACTIONS(2742), - [anon_sym__Atomic] = ACTIONS(2742), - [anon_sym_mutable] = ACTIONS(2742), - [anon_sym_constexpr] = ACTIONS(2742), - [anon_sym_constinit] = ACTIONS(2742), - [anon_sym_consteval] = ACTIONS(2742), - [anon_sym_signed] = ACTIONS(2742), - [anon_sym_unsigned] = ACTIONS(2742), - [anon_sym_long] = ACTIONS(2742), - [anon_sym_short] = ACTIONS(2742), - [sym_primitive_type] = ACTIONS(2742), - [anon_sym_enum] = ACTIONS(2742), - [anon_sym_class] = ACTIONS(2742), - [anon_sym_struct] = ACTIONS(2742), - [anon_sym_union] = ACTIONS(2742), - [anon_sym_if] = ACTIONS(2742), - [anon_sym_switch] = ACTIONS(2742), - [anon_sym_case] = ACTIONS(2742), - [anon_sym_default] = ACTIONS(2742), - [anon_sym_while] = ACTIONS(2742), - [anon_sym_do] = ACTIONS(2742), - [anon_sym_for] = ACTIONS(2742), - [anon_sym_return] = ACTIONS(2742), - [anon_sym_break] = ACTIONS(2742), - [anon_sym_continue] = ACTIONS(2742), - [anon_sym_goto] = ACTIONS(2742), - [anon_sym_not] = ACTIONS(2742), - [anon_sym_compl] = ACTIONS(2742), - [anon_sym_DASH_DASH] = ACTIONS(2744), - [anon_sym_PLUS_PLUS] = ACTIONS(2744), - [anon_sym_sizeof] = ACTIONS(2742), - [sym_number_literal] = ACTIONS(2744), - [anon_sym_L_SQUOTE] = ACTIONS(2744), - [anon_sym_u_SQUOTE] = ACTIONS(2744), - [anon_sym_U_SQUOTE] = ACTIONS(2744), - [anon_sym_u8_SQUOTE] = ACTIONS(2744), - [anon_sym_SQUOTE] = ACTIONS(2744), - [anon_sym_L_DQUOTE] = ACTIONS(2744), - [anon_sym_u_DQUOTE] = ACTIONS(2744), - [anon_sym_U_DQUOTE] = ACTIONS(2744), - [anon_sym_u8_DQUOTE] = ACTIONS(2744), - [anon_sym_DQUOTE] = ACTIONS(2744), - [sym_true] = ACTIONS(2742), - [sym_false] = ACTIONS(2742), - [sym_null] = ACTIONS(2742), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2742), - [anon_sym_decltype] = ACTIONS(2742), - [anon_sym_virtual] = ACTIONS(2742), - [anon_sym_explicit] = ACTIONS(2742), - [anon_sym_typename] = ACTIONS(2742), - [anon_sym_template] = ACTIONS(2742), - [anon_sym_operator] = ACTIONS(2742), - [anon_sym_try] = ACTIONS(2742), - [anon_sym_delete] = ACTIONS(2742), - [anon_sym_throw] = ACTIONS(2742), - [anon_sym_namespace] = ACTIONS(2742), - [anon_sym_using] = ACTIONS(2742), - [anon_sym_static_assert] = ACTIONS(2742), - [anon_sym_concept] = ACTIONS(2742), - [anon_sym_co_return] = ACTIONS(2742), - [anon_sym_co_yield] = ACTIONS(2742), - [anon_sym_R_DQUOTE] = ACTIONS(2744), - [anon_sym_LR_DQUOTE] = ACTIONS(2744), - [anon_sym_uR_DQUOTE] = ACTIONS(2744), - [anon_sym_UR_DQUOTE] = ACTIONS(2744), - [anon_sym_u8R_DQUOTE] = ACTIONS(2744), - [anon_sym_co_await] = ACTIONS(2742), - [anon_sym_new] = ACTIONS(2742), - [anon_sym_requires] = ACTIONS(2742), - [sym_this] = ACTIONS(2742), - [sym_nullptr] = ACTIONS(2742), + [sym_identifier] = ACTIONS(3105), + [aux_sym_preproc_include_token1] = ACTIONS(3105), + [aux_sym_preproc_def_token1] = ACTIONS(3105), + [aux_sym_preproc_if_token1] = ACTIONS(3105), + [aux_sym_preproc_if_token2] = ACTIONS(3105), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3105), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3105), + [aux_sym_preproc_else_token1] = ACTIONS(3105), + [aux_sym_preproc_elif_token1] = ACTIONS(3105), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3105), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3105), + [sym_preproc_directive] = ACTIONS(3105), + [anon_sym_LPAREN2] = ACTIONS(3107), + [anon_sym_BANG] = ACTIONS(3107), + [anon_sym_TILDE] = ACTIONS(3107), + [anon_sym_DASH] = ACTIONS(3105), + [anon_sym_PLUS] = ACTIONS(3105), + [anon_sym_STAR] = ACTIONS(3107), + [anon_sym_AMP_AMP] = ACTIONS(3107), + [anon_sym_AMP] = ACTIONS(3105), + [anon_sym_SEMI] = ACTIONS(3107), + [anon_sym_typedef] = ACTIONS(3105), + [anon_sym_extern] = ACTIONS(3105), + [anon_sym___attribute__] = ACTIONS(3105), + [anon_sym_COLON_COLON] = ACTIONS(3107), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3107), + [anon_sym___declspec] = ACTIONS(3105), + [anon_sym___based] = ACTIONS(3105), + [anon_sym___cdecl] = ACTIONS(3105), + [anon_sym___clrcall] = ACTIONS(3105), + [anon_sym___stdcall] = ACTIONS(3105), + [anon_sym___fastcall] = ACTIONS(3105), + [anon_sym___thiscall] = ACTIONS(3105), + [anon_sym___vectorcall] = ACTIONS(3105), + [anon_sym_LBRACE] = ACTIONS(3107), + [anon_sym_LBRACK] = ACTIONS(3105), + [anon_sym_static] = ACTIONS(3105), + [anon_sym_register] = ACTIONS(3105), + [anon_sym_inline] = ACTIONS(3105), + [anon_sym_thread_local] = ACTIONS(3105), + [anon_sym_const] = ACTIONS(3105), + [anon_sym_constexpr] = ACTIONS(3105), + [anon_sym_volatile] = ACTIONS(3105), + [anon_sym_restrict] = ACTIONS(3105), + [anon_sym___restrict__] = ACTIONS(3105), + [anon_sym__Atomic] = ACTIONS(3105), + [anon_sym__Noreturn] = ACTIONS(3105), + [anon_sym_noreturn] = ACTIONS(3105), + [anon_sym_mutable] = ACTIONS(3105), + [anon_sym_constinit] = ACTIONS(3105), + [anon_sym_consteval] = ACTIONS(3105), + [anon_sym_signed] = ACTIONS(3105), + [anon_sym_unsigned] = ACTIONS(3105), + [anon_sym_long] = ACTIONS(3105), + [anon_sym_short] = ACTIONS(3105), + [sym_primitive_type] = ACTIONS(3105), + [anon_sym_enum] = ACTIONS(3105), + [anon_sym_class] = ACTIONS(3105), + [anon_sym_struct] = ACTIONS(3105), + [anon_sym_union] = ACTIONS(3105), + [anon_sym_if] = ACTIONS(3105), + [anon_sym_else] = ACTIONS(3105), + [anon_sym_switch] = ACTIONS(3105), + [anon_sym_case] = ACTIONS(3105), + [anon_sym_default] = ACTIONS(3105), + [anon_sym_while] = ACTIONS(3105), + [anon_sym_do] = ACTIONS(3105), + [anon_sym_for] = ACTIONS(3105), + [anon_sym_return] = ACTIONS(3105), + [anon_sym_break] = ACTIONS(3105), + [anon_sym_continue] = ACTIONS(3105), + [anon_sym_goto] = ACTIONS(3105), + [anon_sym_not] = ACTIONS(3105), + [anon_sym_compl] = ACTIONS(3105), + [anon_sym_DASH_DASH] = ACTIONS(3107), + [anon_sym_PLUS_PLUS] = ACTIONS(3107), + [anon_sym_sizeof] = ACTIONS(3105), + [anon_sym_offsetof] = ACTIONS(3105), + [anon_sym__Generic] = ACTIONS(3105), + [anon_sym_asm] = ACTIONS(3105), + [anon_sym___asm__] = ACTIONS(3105), + [sym_number_literal] = ACTIONS(3107), + [anon_sym_L_SQUOTE] = ACTIONS(3107), + [anon_sym_u_SQUOTE] = ACTIONS(3107), + [anon_sym_U_SQUOTE] = ACTIONS(3107), + [anon_sym_u8_SQUOTE] = ACTIONS(3107), + [anon_sym_SQUOTE] = ACTIONS(3107), + [anon_sym_L_DQUOTE] = ACTIONS(3107), + [anon_sym_u_DQUOTE] = ACTIONS(3107), + [anon_sym_U_DQUOTE] = ACTIONS(3107), + [anon_sym_u8_DQUOTE] = ACTIONS(3107), + [anon_sym_DQUOTE] = ACTIONS(3107), + [sym_true] = ACTIONS(3105), + [sym_false] = ACTIONS(3105), + [anon_sym_NULL] = ACTIONS(3105), + [anon_sym_nullptr] = ACTIONS(3105), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3105), + [anon_sym_decltype] = ACTIONS(3105), + [anon_sym_virtual] = ACTIONS(3105), + [anon_sym_explicit] = ACTIONS(3105), + [anon_sym_typename] = ACTIONS(3105), + [anon_sym_template] = ACTIONS(3105), + [anon_sym_operator] = ACTIONS(3105), + [anon_sym_try] = ACTIONS(3105), + [anon_sym_delete] = ACTIONS(3105), + [anon_sym_throw] = ACTIONS(3105), + [anon_sym_namespace] = ACTIONS(3105), + [anon_sym_using] = ACTIONS(3105), + [anon_sym_static_assert] = ACTIONS(3105), + [anon_sym_concept] = ACTIONS(3105), + [anon_sym_co_return] = ACTIONS(3105), + [anon_sym_co_yield] = ACTIONS(3105), + [anon_sym_R_DQUOTE] = ACTIONS(3107), + [anon_sym_LR_DQUOTE] = ACTIONS(3107), + [anon_sym_uR_DQUOTE] = ACTIONS(3107), + [anon_sym_UR_DQUOTE] = ACTIONS(3107), + [anon_sym_u8R_DQUOTE] = ACTIONS(3107), + [anon_sym_co_await] = ACTIONS(3105), + [anon_sym_new] = ACTIONS(3105), + [anon_sym_requires] = ACTIONS(3105), + [sym_this] = ACTIONS(3105), }, [511] = { - [sym_identifier] = ACTIONS(2746), - [aux_sym_preproc_include_token1] = ACTIONS(2746), - [aux_sym_preproc_def_token1] = ACTIONS(2746), - [aux_sym_preproc_if_token1] = ACTIONS(2746), - [aux_sym_preproc_if_token2] = ACTIONS(2746), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2746), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2746), - [aux_sym_preproc_else_token1] = ACTIONS(2746), - [aux_sym_preproc_elif_token1] = ACTIONS(2746), - [sym_preproc_directive] = ACTIONS(2746), - [anon_sym_LPAREN2] = ACTIONS(2748), - [anon_sym_BANG] = ACTIONS(2748), - [anon_sym_TILDE] = ACTIONS(2748), - [anon_sym_DASH] = ACTIONS(2746), - [anon_sym_PLUS] = ACTIONS(2746), - [anon_sym_STAR] = ACTIONS(2748), - [anon_sym_AMP_AMP] = ACTIONS(2748), - [anon_sym_AMP] = ACTIONS(2746), - [anon_sym_SEMI] = ACTIONS(2748), - [anon_sym_typedef] = ACTIONS(2746), - [anon_sym_extern] = ACTIONS(2746), - [anon_sym___attribute__] = ACTIONS(2746), - [anon_sym_COLON_COLON] = ACTIONS(2748), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2748), - [anon_sym___declspec] = ACTIONS(2746), - [anon_sym___based] = ACTIONS(2746), - [anon_sym___cdecl] = ACTIONS(2746), - [anon_sym___clrcall] = ACTIONS(2746), - [anon_sym___stdcall] = ACTIONS(2746), - [anon_sym___fastcall] = ACTIONS(2746), - [anon_sym___thiscall] = ACTIONS(2746), - [anon_sym___vectorcall] = ACTIONS(2746), - [anon_sym_LBRACE] = ACTIONS(2748), - [anon_sym_LBRACK] = ACTIONS(2746), - [anon_sym_static] = ACTIONS(2746), - [anon_sym_register] = ACTIONS(2746), - [anon_sym_inline] = ACTIONS(2746), - [anon_sym_thread_local] = ACTIONS(2746), - [anon_sym_const] = ACTIONS(2746), - [anon_sym_volatile] = ACTIONS(2746), - [anon_sym_restrict] = ACTIONS(2746), - [anon_sym__Atomic] = ACTIONS(2746), - [anon_sym_mutable] = ACTIONS(2746), - [anon_sym_constexpr] = ACTIONS(2746), - [anon_sym_constinit] = ACTIONS(2746), - [anon_sym_consteval] = ACTIONS(2746), - [anon_sym_signed] = ACTIONS(2746), - [anon_sym_unsigned] = ACTIONS(2746), - [anon_sym_long] = ACTIONS(2746), - [anon_sym_short] = ACTIONS(2746), - [sym_primitive_type] = ACTIONS(2746), - [anon_sym_enum] = ACTIONS(2746), - [anon_sym_class] = ACTIONS(2746), - [anon_sym_struct] = ACTIONS(2746), - [anon_sym_union] = ACTIONS(2746), - [anon_sym_if] = ACTIONS(2746), - [anon_sym_switch] = ACTIONS(2746), - [anon_sym_case] = ACTIONS(2746), - [anon_sym_default] = ACTIONS(2746), - [anon_sym_while] = ACTIONS(2746), - [anon_sym_do] = ACTIONS(2746), - [anon_sym_for] = ACTIONS(2746), - [anon_sym_return] = ACTIONS(2746), - [anon_sym_break] = ACTIONS(2746), - [anon_sym_continue] = ACTIONS(2746), - [anon_sym_goto] = ACTIONS(2746), - [anon_sym_not] = ACTIONS(2746), - [anon_sym_compl] = ACTIONS(2746), - [anon_sym_DASH_DASH] = ACTIONS(2748), - [anon_sym_PLUS_PLUS] = ACTIONS(2748), - [anon_sym_sizeof] = ACTIONS(2746), - [sym_number_literal] = ACTIONS(2748), - [anon_sym_L_SQUOTE] = ACTIONS(2748), - [anon_sym_u_SQUOTE] = ACTIONS(2748), - [anon_sym_U_SQUOTE] = ACTIONS(2748), - [anon_sym_u8_SQUOTE] = ACTIONS(2748), - [anon_sym_SQUOTE] = ACTIONS(2748), - [anon_sym_L_DQUOTE] = ACTIONS(2748), - [anon_sym_u_DQUOTE] = ACTIONS(2748), - [anon_sym_U_DQUOTE] = ACTIONS(2748), - [anon_sym_u8_DQUOTE] = ACTIONS(2748), - [anon_sym_DQUOTE] = ACTIONS(2748), - [sym_true] = ACTIONS(2746), - [sym_false] = ACTIONS(2746), - [sym_null] = ACTIONS(2746), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2746), - [anon_sym_decltype] = ACTIONS(2746), - [anon_sym_virtual] = ACTIONS(2746), - [anon_sym_explicit] = ACTIONS(2746), - [anon_sym_typename] = ACTIONS(2746), - [anon_sym_template] = ACTIONS(2746), - [anon_sym_operator] = ACTIONS(2746), - [anon_sym_try] = ACTIONS(2746), - [anon_sym_delete] = ACTIONS(2746), - [anon_sym_throw] = ACTIONS(2746), - [anon_sym_namespace] = ACTIONS(2746), - [anon_sym_using] = ACTIONS(2746), - [anon_sym_static_assert] = ACTIONS(2746), - [anon_sym_concept] = ACTIONS(2746), - [anon_sym_co_return] = ACTIONS(2746), - [anon_sym_co_yield] = ACTIONS(2746), - [anon_sym_R_DQUOTE] = ACTIONS(2748), - [anon_sym_LR_DQUOTE] = ACTIONS(2748), - [anon_sym_uR_DQUOTE] = ACTIONS(2748), - [anon_sym_UR_DQUOTE] = ACTIONS(2748), - [anon_sym_u8R_DQUOTE] = ACTIONS(2748), - [anon_sym_co_await] = ACTIONS(2746), - [anon_sym_new] = ACTIONS(2746), - [anon_sym_requires] = ACTIONS(2746), - [sym_this] = ACTIONS(2746), - [sym_nullptr] = ACTIONS(2746), + [sym_identifier] = ACTIONS(3109), + [aux_sym_preproc_include_token1] = ACTIONS(3109), + [aux_sym_preproc_def_token1] = ACTIONS(3109), + [aux_sym_preproc_if_token1] = ACTIONS(3109), + [aux_sym_preproc_if_token2] = ACTIONS(3109), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3109), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3109), + [aux_sym_preproc_else_token1] = ACTIONS(3109), + [aux_sym_preproc_elif_token1] = ACTIONS(3109), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3109), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3109), + [sym_preproc_directive] = ACTIONS(3109), + [anon_sym_LPAREN2] = ACTIONS(3111), + [anon_sym_BANG] = ACTIONS(3111), + [anon_sym_TILDE] = ACTIONS(3111), + [anon_sym_DASH] = ACTIONS(3109), + [anon_sym_PLUS] = ACTIONS(3109), + [anon_sym_STAR] = ACTIONS(3111), + [anon_sym_AMP_AMP] = ACTIONS(3111), + [anon_sym_AMP] = ACTIONS(3109), + [anon_sym_SEMI] = ACTIONS(3111), + [anon_sym_typedef] = ACTIONS(3109), + [anon_sym_extern] = ACTIONS(3109), + [anon_sym___attribute__] = ACTIONS(3109), + [anon_sym_COLON_COLON] = ACTIONS(3111), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3111), + [anon_sym___declspec] = ACTIONS(3109), + [anon_sym___based] = ACTIONS(3109), + [anon_sym___cdecl] = ACTIONS(3109), + [anon_sym___clrcall] = ACTIONS(3109), + [anon_sym___stdcall] = ACTIONS(3109), + [anon_sym___fastcall] = ACTIONS(3109), + [anon_sym___thiscall] = ACTIONS(3109), + [anon_sym___vectorcall] = ACTIONS(3109), + [anon_sym_LBRACE] = ACTIONS(3111), + [anon_sym_LBRACK] = ACTIONS(3109), + [anon_sym_static] = ACTIONS(3109), + [anon_sym_register] = ACTIONS(3109), + [anon_sym_inline] = ACTIONS(3109), + [anon_sym_thread_local] = ACTIONS(3109), + [anon_sym_const] = ACTIONS(3109), + [anon_sym_constexpr] = ACTIONS(3109), + [anon_sym_volatile] = ACTIONS(3109), + [anon_sym_restrict] = ACTIONS(3109), + [anon_sym___restrict__] = ACTIONS(3109), + [anon_sym__Atomic] = ACTIONS(3109), + [anon_sym__Noreturn] = ACTIONS(3109), + [anon_sym_noreturn] = ACTIONS(3109), + [anon_sym_mutable] = ACTIONS(3109), + [anon_sym_constinit] = ACTIONS(3109), + [anon_sym_consteval] = ACTIONS(3109), + [anon_sym_signed] = ACTIONS(3109), + [anon_sym_unsigned] = ACTIONS(3109), + [anon_sym_long] = ACTIONS(3109), + [anon_sym_short] = ACTIONS(3109), + [sym_primitive_type] = ACTIONS(3109), + [anon_sym_enum] = ACTIONS(3109), + [anon_sym_class] = ACTIONS(3109), + [anon_sym_struct] = ACTIONS(3109), + [anon_sym_union] = ACTIONS(3109), + [anon_sym_if] = ACTIONS(3109), + [anon_sym_else] = ACTIONS(3109), + [anon_sym_switch] = ACTIONS(3109), + [anon_sym_case] = ACTIONS(3109), + [anon_sym_default] = ACTIONS(3109), + [anon_sym_while] = ACTIONS(3109), + [anon_sym_do] = ACTIONS(3109), + [anon_sym_for] = ACTIONS(3109), + [anon_sym_return] = ACTIONS(3109), + [anon_sym_break] = ACTIONS(3109), + [anon_sym_continue] = ACTIONS(3109), + [anon_sym_goto] = ACTIONS(3109), + [anon_sym_not] = ACTIONS(3109), + [anon_sym_compl] = ACTIONS(3109), + [anon_sym_DASH_DASH] = ACTIONS(3111), + [anon_sym_PLUS_PLUS] = ACTIONS(3111), + [anon_sym_sizeof] = ACTIONS(3109), + [anon_sym_offsetof] = ACTIONS(3109), + [anon_sym__Generic] = ACTIONS(3109), + [anon_sym_asm] = ACTIONS(3109), + [anon_sym___asm__] = ACTIONS(3109), + [sym_number_literal] = ACTIONS(3111), + [anon_sym_L_SQUOTE] = ACTIONS(3111), + [anon_sym_u_SQUOTE] = ACTIONS(3111), + [anon_sym_U_SQUOTE] = ACTIONS(3111), + [anon_sym_u8_SQUOTE] = ACTIONS(3111), + [anon_sym_SQUOTE] = ACTIONS(3111), + [anon_sym_L_DQUOTE] = ACTIONS(3111), + [anon_sym_u_DQUOTE] = ACTIONS(3111), + [anon_sym_U_DQUOTE] = ACTIONS(3111), + [anon_sym_u8_DQUOTE] = ACTIONS(3111), + [anon_sym_DQUOTE] = ACTIONS(3111), + [sym_true] = ACTIONS(3109), + [sym_false] = ACTIONS(3109), + [anon_sym_NULL] = ACTIONS(3109), + [anon_sym_nullptr] = ACTIONS(3109), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3109), + [anon_sym_decltype] = ACTIONS(3109), + [anon_sym_virtual] = ACTIONS(3109), + [anon_sym_explicit] = ACTIONS(3109), + [anon_sym_typename] = ACTIONS(3109), + [anon_sym_template] = ACTIONS(3109), + [anon_sym_operator] = ACTIONS(3109), + [anon_sym_try] = ACTIONS(3109), + [anon_sym_delete] = ACTIONS(3109), + [anon_sym_throw] = ACTIONS(3109), + [anon_sym_namespace] = ACTIONS(3109), + [anon_sym_using] = ACTIONS(3109), + [anon_sym_static_assert] = ACTIONS(3109), + [anon_sym_concept] = ACTIONS(3109), + [anon_sym_co_return] = ACTIONS(3109), + [anon_sym_co_yield] = ACTIONS(3109), + [anon_sym_R_DQUOTE] = ACTIONS(3111), + [anon_sym_LR_DQUOTE] = ACTIONS(3111), + [anon_sym_uR_DQUOTE] = ACTIONS(3111), + [anon_sym_UR_DQUOTE] = ACTIONS(3111), + [anon_sym_u8R_DQUOTE] = ACTIONS(3111), + [anon_sym_co_await] = ACTIONS(3109), + [anon_sym_new] = ACTIONS(3109), + [anon_sym_requires] = ACTIONS(3109), + [sym_this] = ACTIONS(3109), }, [512] = { - [sym_identifier] = ACTIONS(2750), - [aux_sym_preproc_include_token1] = ACTIONS(2750), - [aux_sym_preproc_def_token1] = ACTIONS(2750), - [aux_sym_preproc_if_token1] = ACTIONS(2750), - [aux_sym_preproc_if_token2] = ACTIONS(2750), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2750), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2750), - [aux_sym_preproc_else_token1] = ACTIONS(2750), - [aux_sym_preproc_elif_token1] = ACTIONS(2750), - [sym_preproc_directive] = ACTIONS(2750), - [anon_sym_LPAREN2] = ACTIONS(2752), - [anon_sym_BANG] = ACTIONS(2752), - [anon_sym_TILDE] = ACTIONS(2752), - [anon_sym_DASH] = ACTIONS(2750), - [anon_sym_PLUS] = ACTIONS(2750), - [anon_sym_STAR] = ACTIONS(2752), - [anon_sym_AMP_AMP] = ACTIONS(2752), - [anon_sym_AMP] = ACTIONS(2750), - [anon_sym_SEMI] = ACTIONS(2752), - [anon_sym_typedef] = ACTIONS(2750), - [anon_sym_extern] = ACTIONS(2750), - [anon_sym___attribute__] = ACTIONS(2750), - [anon_sym_COLON_COLON] = ACTIONS(2752), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2752), - [anon_sym___declspec] = ACTIONS(2750), - [anon_sym___based] = ACTIONS(2750), - [anon_sym___cdecl] = ACTIONS(2750), - [anon_sym___clrcall] = ACTIONS(2750), - [anon_sym___stdcall] = ACTIONS(2750), - [anon_sym___fastcall] = ACTIONS(2750), - [anon_sym___thiscall] = ACTIONS(2750), - [anon_sym___vectorcall] = ACTIONS(2750), - [anon_sym_LBRACE] = ACTIONS(2752), - [anon_sym_LBRACK] = ACTIONS(2750), - [anon_sym_static] = ACTIONS(2750), - [anon_sym_register] = ACTIONS(2750), - [anon_sym_inline] = ACTIONS(2750), - [anon_sym_thread_local] = ACTIONS(2750), - [anon_sym_const] = ACTIONS(2750), - [anon_sym_volatile] = ACTIONS(2750), - [anon_sym_restrict] = ACTIONS(2750), - [anon_sym__Atomic] = ACTIONS(2750), - [anon_sym_mutable] = ACTIONS(2750), - [anon_sym_constexpr] = ACTIONS(2750), - [anon_sym_constinit] = ACTIONS(2750), - [anon_sym_consteval] = ACTIONS(2750), - [anon_sym_signed] = ACTIONS(2750), - [anon_sym_unsigned] = ACTIONS(2750), - [anon_sym_long] = ACTIONS(2750), - [anon_sym_short] = ACTIONS(2750), - [sym_primitive_type] = ACTIONS(2750), - [anon_sym_enum] = ACTIONS(2750), - [anon_sym_class] = ACTIONS(2750), - [anon_sym_struct] = ACTIONS(2750), - [anon_sym_union] = ACTIONS(2750), - [anon_sym_if] = ACTIONS(2750), - [anon_sym_switch] = ACTIONS(2750), - [anon_sym_case] = ACTIONS(2750), - [anon_sym_default] = ACTIONS(2750), - [anon_sym_while] = ACTIONS(2750), - [anon_sym_do] = ACTIONS(2750), - [anon_sym_for] = ACTIONS(2750), - [anon_sym_return] = ACTIONS(2750), - [anon_sym_break] = ACTIONS(2750), - [anon_sym_continue] = ACTIONS(2750), - [anon_sym_goto] = ACTIONS(2750), - [anon_sym_not] = ACTIONS(2750), - [anon_sym_compl] = ACTIONS(2750), - [anon_sym_DASH_DASH] = ACTIONS(2752), - [anon_sym_PLUS_PLUS] = ACTIONS(2752), - [anon_sym_sizeof] = ACTIONS(2750), - [sym_number_literal] = ACTIONS(2752), - [anon_sym_L_SQUOTE] = ACTIONS(2752), - [anon_sym_u_SQUOTE] = ACTIONS(2752), - [anon_sym_U_SQUOTE] = ACTIONS(2752), - [anon_sym_u8_SQUOTE] = ACTIONS(2752), - [anon_sym_SQUOTE] = ACTIONS(2752), - [anon_sym_L_DQUOTE] = ACTIONS(2752), - [anon_sym_u_DQUOTE] = ACTIONS(2752), - [anon_sym_U_DQUOTE] = ACTIONS(2752), - [anon_sym_u8_DQUOTE] = ACTIONS(2752), - [anon_sym_DQUOTE] = ACTIONS(2752), - [sym_true] = ACTIONS(2750), - [sym_false] = ACTIONS(2750), - [sym_null] = ACTIONS(2750), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2750), - [anon_sym_decltype] = ACTIONS(2750), - [anon_sym_virtual] = ACTIONS(2750), - [anon_sym_explicit] = ACTIONS(2750), - [anon_sym_typename] = ACTIONS(2750), - [anon_sym_template] = ACTIONS(2750), - [anon_sym_operator] = ACTIONS(2750), - [anon_sym_try] = ACTIONS(2750), - [anon_sym_delete] = ACTIONS(2750), - [anon_sym_throw] = ACTIONS(2750), - [anon_sym_namespace] = ACTIONS(2750), - [anon_sym_using] = ACTIONS(2750), - [anon_sym_static_assert] = ACTIONS(2750), - [anon_sym_concept] = ACTIONS(2750), - [anon_sym_co_return] = ACTIONS(2750), - [anon_sym_co_yield] = ACTIONS(2750), - [anon_sym_R_DQUOTE] = ACTIONS(2752), - [anon_sym_LR_DQUOTE] = ACTIONS(2752), - [anon_sym_uR_DQUOTE] = ACTIONS(2752), - [anon_sym_UR_DQUOTE] = ACTIONS(2752), - [anon_sym_u8R_DQUOTE] = ACTIONS(2752), - [anon_sym_co_await] = ACTIONS(2750), - [anon_sym_new] = ACTIONS(2750), - [anon_sym_requires] = ACTIONS(2750), - [sym_this] = ACTIONS(2750), - [sym_nullptr] = ACTIONS(2750), + [sym_identifier] = ACTIONS(3113), + [aux_sym_preproc_include_token1] = ACTIONS(3113), + [aux_sym_preproc_def_token1] = ACTIONS(3113), + [aux_sym_preproc_if_token1] = ACTIONS(3113), + [aux_sym_preproc_if_token2] = ACTIONS(3113), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3113), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3113), + [aux_sym_preproc_else_token1] = ACTIONS(3113), + [aux_sym_preproc_elif_token1] = ACTIONS(3113), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3113), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3113), + [sym_preproc_directive] = ACTIONS(3113), + [anon_sym_LPAREN2] = ACTIONS(3115), + [anon_sym_BANG] = ACTIONS(3115), + [anon_sym_TILDE] = ACTIONS(3115), + [anon_sym_DASH] = ACTIONS(3113), + [anon_sym_PLUS] = ACTIONS(3113), + [anon_sym_STAR] = ACTIONS(3115), + [anon_sym_AMP_AMP] = ACTIONS(3115), + [anon_sym_AMP] = ACTIONS(3113), + [anon_sym_SEMI] = ACTIONS(3115), + [anon_sym_typedef] = ACTIONS(3113), + [anon_sym_extern] = ACTIONS(3113), + [anon_sym___attribute__] = ACTIONS(3113), + [anon_sym_COLON_COLON] = ACTIONS(3115), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3115), + [anon_sym___declspec] = ACTIONS(3113), + [anon_sym___based] = ACTIONS(3113), + [anon_sym___cdecl] = ACTIONS(3113), + [anon_sym___clrcall] = ACTIONS(3113), + [anon_sym___stdcall] = ACTIONS(3113), + [anon_sym___fastcall] = ACTIONS(3113), + [anon_sym___thiscall] = ACTIONS(3113), + [anon_sym___vectorcall] = ACTIONS(3113), + [anon_sym_LBRACE] = ACTIONS(3115), + [anon_sym_LBRACK] = ACTIONS(3113), + [anon_sym_static] = ACTIONS(3113), + [anon_sym_register] = ACTIONS(3113), + [anon_sym_inline] = ACTIONS(3113), + [anon_sym_thread_local] = ACTIONS(3113), + [anon_sym_const] = ACTIONS(3113), + [anon_sym_constexpr] = ACTIONS(3113), + [anon_sym_volatile] = ACTIONS(3113), + [anon_sym_restrict] = ACTIONS(3113), + [anon_sym___restrict__] = ACTIONS(3113), + [anon_sym__Atomic] = ACTIONS(3113), + [anon_sym__Noreturn] = ACTIONS(3113), + [anon_sym_noreturn] = ACTIONS(3113), + [anon_sym_mutable] = ACTIONS(3113), + [anon_sym_constinit] = ACTIONS(3113), + [anon_sym_consteval] = ACTIONS(3113), + [anon_sym_signed] = ACTIONS(3113), + [anon_sym_unsigned] = ACTIONS(3113), + [anon_sym_long] = ACTIONS(3113), + [anon_sym_short] = ACTIONS(3113), + [sym_primitive_type] = ACTIONS(3113), + [anon_sym_enum] = ACTIONS(3113), + [anon_sym_class] = ACTIONS(3113), + [anon_sym_struct] = ACTIONS(3113), + [anon_sym_union] = ACTIONS(3113), + [anon_sym_if] = ACTIONS(3113), + [anon_sym_else] = ACTIONS(3113), + [anon_sym_switch] = ACTIONS(3113), + [anon_sym_case] = ACTIONS(3113), + [anon_sym_default] = ACTIONS(3113), + [anon_sym_while] = ACTIONS(3113), + [anon_sym_do] = ACTIONS(3113), + [anon_sym_for] = ACTIONS(3113), + [anon_sym_return] = ACTIONS(3113), + [anon_sym_break] = ACTIONS(3113), + [anon_sym_continue] = ACTIONS(3113), + [anon_sym_goto] = ACTIONS(3113), + [anon_sym_not] = ACTIONS(3113), + [anon_sym_compl] = ACTIONS(3113), + [anon_sym_DASH_DASH] = ACTIONS(3115), + [anon_sym_PLUS_PLUS] = ACTIONS(3115), + [anon_sym_sizeof] = ACTIONS(3113), + [anon_sym_offsetof] = ACTIONS(3113), + [anon_sym__Generic] = ACTIONS(3113), + [anon_sym_asm] = ACTIONS(3113), + [anon_sym___asm__] = ACTIONS(3113), + [sym_number_literal] = ACTIONS(3115), + [anon_sym_L_SQUOTE] = ACTIONS(3115), + [anon_sym_u_SQUOTE] = ACTIONS(3115), + [anon_sym_U_SQUOTE] = ACTIONS(3115), + [anon_sym_u8_SQUOTE] = ACTIONS(3115), + [anon_sym_SQUOTE] = ACTIONS(3115), + [anon_sym_L_DQUOTE] = ACTIONS(3115), + [anon_sym_u_DQUOTE] = ACTIONS(3115), + [anon_sym_U_DQUOTE] = ACTIONS(3115), + [anon_sym_u8_DQUOTE] = ACTIONS(3115), + [anon_sym_DQUOTE] = ACTIONS(3115), + [sym_true] = ACTIONS(3113), + [sym_false] = ACTIONS(3113), + [anon_sym_NULL] = ACTIONS(3113), + [anon_sym_nullptr] = ACTIONS(3113), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3113), + [anon_sym_decltype] = ACTIONS(3113), + [anon_sym_virtual] = ACTIONS(3113), + [anon_sym_explicit] = ACTIONS(3113), + [anon_sym_typename] = ACTIONS(3113), + [anon_sym_template] = ACTIONS(3113), + [anon_sym_operator] = ACTIONS(3113), + [anon_sym_try] = ACTIONS(3113), + [anon_sym_delete] = ACTIONS(3113), + [anon_sym_throw] = ACTIONS(3113), + [anon_sym_namespace] = ACTIONS(3113), + [anon_sym_using] = ACTIONS(3113), + [anon_sym_static_assert] = ACTIONS(3113), + [anon_sym_concept] = ACTIONS(3113), + [anon_sym_co_return] = ACTIONS(3113), + [anon_sym_co_yield] = ACTIONS(3113), + [anon_sym_R_DQUOTE] = ACTIONS(3115), + [anon_sym_LR_DQUOTE] = ACTIONS(3115), + [anon_sym_uR_DQUOTE] = ACTIONS(3115), + [anon_sym_UR_DQUOTE] = ACTIONS(3115), + [anon_sym_u8R_DQUOTE] = ACTIONS(3115), + [anon_sym_co_await] = ACTIONS(3113), + [anon_sym_new] = ACTIONS(3113), + [anon_sym_requires] = ACTIONS(3113), + [sym_this] = ACTIONS(3113), }, [513] = { - [sym_identifier] = ACTIONS(2754), - [aux_sym_preproc_include_token1] = ACTIONS(2754), - [aux_sym_preproc_def_token1] = ACTIONS(2754), - [aux_sym_preproc_if_token1] = ACTIONS(2754), - [aux_sym_preproc_if_token2] = ACTIONS(2754), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2754), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2754), - [aux_sym_preproc_else_token1] = ACTIONS(2754), - [aux_sym_preproc_elif_token1] = ACTIONS(2754), - [sym_preproc_directive] = ACTIONS(2754), - [anon_sym_LPAREN2] = ACTIONS(2756), - [anon_sym_BANG] = ACTIONS(2756), - [anon_sym_TILDE] = ACTIONS(2756), - [anon_sym_DASH] = ACTIONS(2754), - [anon_sym_PLUS] = ACTIONS(2754), - [anon_sym_STAR] = ACTIONS(2756), - [anon_sym_AMP_AMP] = ACTIONS(2756), - [anon_sym_AMP] = ACTIONS(2754), - [anon_sym_SEMI] = ACTIONS(2756), - [anon_sym_typedef] = ACTIONS(2754), - [anon_sym_extern] = ACTIONS(2754), - [anon_sym___attribute__] = ACTIONS(2754), - [anon_sym_COLON_COLON] = ACTIONS(2756), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2756), - [anon_sym___declspec] = ACTIONS(2754), - [anon_sym___based] = ACTIONS(2754), - [anon_sym___cdecl] = ACTIONS(2754), - [anon_sym___clrcall] = ACTIONS(2754), - [anon_sym___stdcall] = ACTIONS(2754), - [anon_sym___fastcall] = ACTIONS(2754), - [anon_sym___thiscall] = ACTIONS(2754), - [anon_sym___vectorcall] = ACTIONS(2754), - [anon_sym_LBRACE] = ACTIONS(2756), - [anon_sym_LBRACK] = ACTIONS(2754), - [anon_sym_static] = ACTIONS(2754), - [anon_sym_register] = ACTIONS(2754), - [anon_sym_inline] = ACTIONS(2754), - [anon_sym_thread_local] = ACTIONS(2754), - [anon_sym_const] = ACTIONS(2754), - [anon_sym_volatile] = ACTIONS(2754), - [anon_sym_restrict] = ACTIONS(2754), - [anon_sym__Atomic] = ACTIONS(2754), - [anon_sym_mutable] = ACTIONS(2754), - [anon_sym_constexpr] = ACTIONS(2754), - [anon_sym_constinit] = ACTIONS(2754), - [anon_sym_consteval] = ACTIONS(2754), - [anon_sym_signed] = ACTIONS(2754), - [anon_sym_unsigned] = ACTIONS(2754), - [anon_sym_long] = ACTIONS(2754), - [anon_sym_short] = ACTIONS(2754), - [sym_primitive_type] = ACTIONS(2754), - [anon_sym_enum] = ACTIONS(2754), - [anon_sym_class] = ACTIONS(2754), - [anon_sym_struct] = ACTIONS(2754), - [anon_sym_union] = ACTIONS(2754), - [anon_sym_if] = ACTIONS(2754), - [anon_sym_switch] = ACTIONS(2754), - [anon_sym_case] = ACTIONS(2754), - [anon_sym_default] = ACTIONS(2754), - [anon_sym_while] = ACTIONS(2754), - [anon_sym_do] = ACTIONS(2754), - [anon_sym_for] = ACTIONS(2754), - [anon_sym_return] = ACTIONS(2754), - [anon_sym_break] = ACTIONS(2754), - [anon_sym_continue] = ACTIONS(2754), - [anon_sym_goto] = ACTIONS(2754), - [anon_sym_not] = ACTIONS(2754), - [anon_sym_compl] = ACTIONS(2754), - [anon_sym_DASH_DASH] = ACTIONS(2756), - [anon_sym_PLUS_PLUS] = ACTIONS(2756), - [anon_sym_sizeof] = ACTIONS(2754), - [sym_number_literal] = ACTIONS(2756), - [anon_sym_L_SQUOTE] = ACTIONS(2756), - [anon_sym_u_SQUOTE] = ACTIONS(2756), - [anon_sym_U_SQUOTE] = ACTIONS(2756), - [anon_sym_u8_SQUOTE] = ACTIONS(2756), - [anon_sym_SQUOTE] = ACTIONS(2756), - [anon_sym_L_DQUOTE] = ACTIONS(2756), - [anon_sym_u_DQUOTE] = ACTIONS(2756), - [anon_sym_U_DQUOTE] = ACTIONS(2756), - [anon_sym_u8_DQUOTE] = ACTIONS(2756), - [anon_sym_DQUOTE] = ACTIONS(2756), - [sym_true] = ACTIONS(2754), - [sym_false] = ACTIONS(2754), - [sym_null] = ACTIONS(2754), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2754), - [anon_sym_decltype] = ACTIONS(2754), - [anon_sym_virtual] = ACTIONS(2754), - [anon_sym_explicit] = ACTIONS(2754), - [anon_sym_typename] = ACTIONS(2754), - [anon_sym_template] = ACTIONS(2754), - [anon_sym_operator] = ACTIONS(2754), - [anon_sym_try] = ACTIONS(2754), - [anon_sym_delete] = ACTIONS(2754), - [anon_sym_throw] = ACTIONS(2754), - [anon_sym_namespace] = ACTIONS(2754), - [anon_sym_using] = ACTIONS(2754), - [anon_sym_static_assert] = ACTIONS(2754), - [anon_sym_concept] = ACTIONS(2754), - [anon_sym_co_return] = ACTIONS(2754), - [anon_sym_co_yield] = ACTIONS(2754), - [anon_sym_R_DQUOTE] = ACTIONS(2756), - [anon_sym_LR_DQUOTE] = ACTIONS(2756), - [anon_sym_uR_DQUOTE] = ACTIONS(2756), - [anon_sym_UR_DQUOTE] = ACTIONS(2756), - [anon_sym_u8R_DQUOTE] = ACTIONS(2756), - [anon_sym_co_await] = ACTIONS(2754), - [anon_sym_new] = ACTIONS(2754), - [anon_sym_requires] = ACTIONS(2754), - [sym_this] = ACTIONS(2754), - [sym_nullptr] = ACTIONS(2754), + [sym_identifier] = ACTIONS(3117), + [aux_sym_preproc_include_token1] = ACTIONS(3117), + [aux_sym_preproc_def_token1] = ACTIONS(3117), + [aux_sym_preproc_if_token1] = ACTIONS(3117), + [aux_sym_preproc_if_token2] = ACTIONS(3117), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3117), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3117), + [aux_sym_preproc_else_token1] = ACTIONS(3117), + [aux_sym_preproc_elif_token1] = ACTIONS(3117), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3117), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3117), + [sym_preproc_directive] = ACTIONS(3117), + [anon_sym_LPAREN2] = ACTIONS(3119), + [anon_sym_BANG] = ACTIONS(3119), + [anon_sym_TILDE] = ACTIONS(3119), + [anon_sym_DASH] = ACTIONS(3117), + [anon_sym_PLUS] = ACTIONS(3117), + [anon_sym_STAR] = ACTIONS(3119), + [anon_sym_AMP_AMP] = ACTIONS(3119), + [anon_sym_AMP] = ACTIONS(3117), + [anon_sym_SEMI] = ACTIONS(3119), + [anon_sym_typedef] = ACTIONS(3117), + [anon_sym_extern] = ACTIONS(3117), + [anon_sym___attribute__] = ACTIONS(3117), + [anon_sym_COLON_COLON] = ACTIONS(3119), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3119), + [anon_sym___declspec] = ACTIONS(3117), + [anon_sym___based] = ACTIONS(3117), + [anon_sym___cdecl] = ACTIONS(3117), + [anon_sym___clrcall] = ACTIONS(3117), + [anon_sym___stdcall] = ACTIONS(3117), + [anon_sym___fastcall] = ACTIONS(3117), + [anon_sym___thiscall] = ACTIONS(3117), + [anon_sym___vectorcall] = ACTIONS(3117), + [anon_sym_LBRACE] = ACTIONS(3119), + [anon_sym_LBRACK] = ACTIONS(3117), + [anon_sym_static] = ACTIONS(3117), + [anon_sym_register] = ACTIONS(3117), + [anon_sym_inline] = ACTIONS(3117), + [anon_sym_thread_local] = ACTIONS(3117), + [anon_sym_const] = ACTIONS(3117), + [anon_sym_constexpr] = ACTIONS(3117), + [anon_sym_volatile] = ACTIONS(3117), + [anon_sym_restrict] = ACTIONS(3117), + [anon_sym___restrict__] = ACTIONS(3117), + [anon_sym__Atomic] = ACTIONS(3117), + [anon_sym__Noreturn] = ACTIONS(3117), + [anon_sym_noreturn] = ACTIONS(3117), + [anon_sym_mutable] = ACTIONS(3117), + [anon_sym_constinit] = ACTIONS(3117), + [anon_sym_consteval] = ACTIONS(3117), + [anon_sym_signed] = ACTIONS(3117), + [anon_sym_unsigned] = ACTIONS(3117), + [anon_sym_long] = ACTIONS(3117), + [anon_sym_short] = ACTIONS(3117), + [sym_primitive_type] = ACTIONS(3117), + [anon_sym_enum] = ACTIONS(3117), + [anon_sym_class] = ACTIONS(3117), + [anon_sym_struct] = ACTIONS(3117), + [anon_sym_union] = ACTIONS(3117), + [anon_sym_if] = ACTIONS(3117), + [anon_sym_switch] = ACTIONS(3117), + [anon_sym_case] = ACTIONS(3117), + [anon_sym_default] = ACTIONS(3117), + [anon_sym_while] = ACTIONS(3117), + [anon_sym_do] = ACTIONS(3117), + [anon_sym_for] = ACTIONS(3117), + [anon_sym_return] = ACTIONS(3117), + [anon_sym_break] = ACTIONS(3117), + [anon_sym_continue] = ACTIONS(3117), + [anon_sym_goto] = ACTIONS(3117), + [anon_sym_not] = ACTIONS(3117), + [anon_sym_compl] = ACTIONS(3117), + [anon_sym_DASH_DASH] = ACTIONS(3119), + [anon_sym_PLUS_PLUS] = ACTIONS(3119), + [anon_sym_sizeof] = ACTIONS(3117), + [anon_sym_offsetof] = ACTIONS(3117), + [anon_sym__Generic] = ACTIONS(3117), + [anon_sym_asm] = ACTIONS(3117), + [anon_sym___asm__] = ACTIONS(3117), + [sym_number_literal] = ACTIONS(3119), + [anon_sym_L_SQUOTE] = ACTIONS(3119), + [anon_sym_u_SQUOTE] = ACTIONS(3119), + [anon_sym_U_SQUOTE] = ACTIONS(3119), + [anon_sym_u8_SQUOTE] = ACTIONS(3119), + [anon_sym_SQUOTE] = ACTIONS(3119), + [anon_sym_L_DQUOTE] = ACTIONS(3119), + [anon_sym_u_DQUOTE] = ACTIONS(3119), + [anon_sym_U_DQUOTE] = ACTIONS(3119), + [anon_sym_u8_DQUOTE] = ACTIONS(3119), + [anon_sym_DQUOTE] = ACTIONS(3119), + [sym_true] = ACTIONS(3117), + [sym_false] = ACTIONS(3117), + [anon_sym_NULL] = ACTIONS(3117), + [anon_sym_nullptr] = ACTIONS(3117), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3117), + [anon_sym_decltype] = ACTIONS(3117), + [anon_sym_virtual] = ACTIONS(3117), + [anon_sym_explicit] = ACTIONS(3117), + [anon_sym_typename] = ACTIONS(3117), + [anon_sym_template] = ACTIONS(3117), + [anon_sym_operator] = ACTIONS(3117), + [anon_sym_try] = ACTIONS(3117), + [anon_sym_delete] = ACTIONS(3117), + [anon_sym_throw] = ACTIONS(3117), + [anon_sym_namespace] = ACTIONS(3117), + [anon_sym_using] = ACTIONS(3117), + [anon_sym_static_assert] = ACTIONS(3117), + [anon_sym_concept] = ACTIONS(3117), + [anon_sym_co_return] = ACTIONS(3117), + [anon_sym_co_yield] = ACTIONS(3117), + [anon_sym_R_DQUOTE] = ACTIONS(3119), + [anon_sym_LR_DQUOTE] = ACTIONS(3119), + [anon_sym_uR_DQUOTE] = ACTIONS(3119), + [anon_sym_UR_DQUOTE] = ACTIONS(3119), + [anon_sym_u8R_DQUOTE] = ACTIONS(3119), + [anon_sym_co_await] = ACTIONS(3117), + [anon_sym_new] = ACTIONS(3117), + [anon_sym_requires] = ACTIONS(3117), + [sym_this] = ACTIONS(3117), }, [514] = { - [sym_identifier] = ACTIONS(2758), - [aux_sym_preproc_include_token1] = ACTIONS(2758), - [aux_sym_preproc_def_token1] = ACTIONS(2758), - [aux_sym_preproc_if_token1] = ACTIONS(2758), - [aux_sym_preproc_if_token2] = ACTIONS(2758), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2758), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2758), - [aux_sym_preproc_else_token1] = ACTIONS(2758), - [aux_sym_preproc_elif_token1] = ACTIONS(2758), - [sym_preproc_directive] = ACTIONS(2758), - [anon_sym_LPAREN2] = ACTIONS(2760), - [anon_sym_BANG] = ACTIONS(2760), - [anon_sym_TILDE] = ACTIONS(2760), - [anon_sym_DASH] = ACTIONS(2758), - [anon_sym_PLUS] = ACTIONS(2758), - [anon_sym_STAR] = ACTIONS(2760), - [anon_sym_AMP_AMP] = ACTIONS(2760), - [anon_sym_AMP] = ACTIONS(2758), - [anon_sym_SEMI] = ACTIONS(2760), - [anon_sym_typedef] = ACTIONS(2758), - [anon_sym_extern] = ACTIONS(2758), - [anon_sym___attribute__] = ACTIONS(2758), - [anon_sym_COLON_COLON] = ACTIONS(2760), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2760), - [anon_sym___declspec] = ACTIONS(2758), - [anon_sym___based] = ACTIONS(2758), - [anon_sym___cdecl] = ACTIONS(2758), - [anon_sym___clrcall] = ACTIONS(2758), - [anon_sym___stdcall] = ACTIONS(2758), - [anon_sym___fastcall] = ACTIONS(2758), - [anon_sym___thiscall] = ACTIONS(2758), - [anon_sym___vectorcall] = ACTIONS(2758), - [anon_sym_LBRACE] = ACTIONS(2760), - [anon_sym_LBRACK] = ACTIONS(2758), - [anon_sym_static] = ACTIONS(2758), - [anon_sym_register] = ACTIONS(2758), - [anon_sym_inline] = ACTIONS(2758), - [anon_sym_thread_local] = ACTIONS(2758), - [anon_sym_const] = ACTIONS(2758), - [anon_sym_volatile] = ACTIONS(2758), - [anon_sym_restrict] = ACTIONS(2758), - [anon_sym__Atomic] = ACTIONS(2758), - [anon_sym_mutable] = ACTIONS(2758), - [anon_sym_constexpr] = ACTIONS(2758), - [anon_sym_constinit] = ACTIONS(2758), - [anon_sym_consteval] = ACTIONS(2758), - [anon_sym_signed] = ACTIONS(2758), - [anon_sym_unsigned] = ACTIONS(2758), - [anon_sym_long] = ACTIONS(2758), - [anon_sym_short] = ACTIONS(2758), - [sym_primitive_type] = ACTIONS(2758), - [anon_sym_enum] = ACTIONS(2758), - [anon_sym_class] = ACTIONS(2758), - [anon_sym_struct] = ACTIONS(2758), - [anon_sym_union] = ACTIONS(2758), - [anon_sym_if] = ACTIONS(2758), - [anon_sym_switch] = ACTIONS(2758), - [anon_sym_case] = ACTIONS(2758), - [anon_sym_default] = ACTIONS(2758), - [anon_sym_while] = ACTIONS(2758), - [anon_sym_do] = ACTIONS(2758), - [anon_sym_for] = ACTIONS(2758), - [anon_sym_return] = ACTIONS(2758), - [anon_sym_break] = ACTIONS(2758), - [anon_sym_continue] = ACTIONS(2758), - [anon_sym_goto] = ACTIONS(2758), - [anon_sym_not] = ACTIONS(2758), - [anon_sym_compl] = ACTIONS(2758), - [anon_sym_DASH_DASH] = ACTIONS(2760), - [anon_sym_PLUS_PLUS] = ACTIONS(2760), - [anon_sym_sizeof] = ACTIONS(2758), - [sym_number_literal] = ACTIONS(2760), - [anon_sym_L_SQUOTE] = ACTIONS(2760), - [anon_sym_u_SQUOTE] = ACTIONS(2760), - [anon_sym_U_SQUOTE] = ACTIONS(2760), - [anon_sym_u8_SQUOTE] = ACTIONS(2760), - [anon_sym_SQUOTE] = ACTIONS(2760), - [anon_sym_L_DQUOTE] = ACTIONS(2760), - [anon_sym_u_DQUOTE] = ACTIONS(2760), - [anon_sym_U_DQUOTE] = ACTIONS(2760), - [anon_sym_u8_DQUOTE] = ACTIONS(2760), - [anon_sym_DQUOTE] = ACTIONS(2760), - [sym_true] = ACTIONS(2758), - [sym_false] = ACTIONS(2758), - [sym_null] = ACTIONS(2758), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2758), - [anon_sym_decltype] = ACTIONS(2758), - [anon_sym_virtual] = ACTIONS(2758), - [anon_sym_explicit] = ACTIONS(2758), - [anon_sym_typename] = ACTIONS(2758), - [anon_sym_template] = ACTIONS(2758), - [anon_sym_operator] = ACTIONS(2758), - [anon_sym_try] = ACTIONS(2758), - [anon_sym_delete] = ACTIONS(2758), - [anon_sym_throw] = ACTIONS(2758), - [anon_sym_namespace] = ACTIONS(2758), - [anon_sym_using] = ACTIONS(2758), - [anon_sym_static_assert] = ACTIONS(2758), - [anon_sym_concept] = ACTIONS(2758), - [anon_sym_co_return] = ACTIONS(2758), - [anon_sym_co_yield] = ACTIONS(2758), - [anon_sym_R_DQUOTE] = ACTIONS(2760), - [anon_sym_LR_DQUOTE] = ACTIONS(2760), - [anon_sym_uR_DQUOTE] = ACTIONS(2760), - [anon_sym_UR_DQUOTE] = ACTIONS(2760), - [anon_sym_u8R_DQUOTE] = ACTIONS(2760), - [anon_sym_co_await] = ACTIONS(2758), - [anon_sym_new] = ACTIONS(2758), - [anon_sym_requires] = ACTIONS(2758), - [sym_this] = ACTIONS(2758), - [sym_nullptr] = ACTIONS(2758), + [sym_identifier] = ACTIONS(3121), + [aux_sym_preproc_include_token1] = ACTIONS(3121), + [aux_sym_preproc_def_token1] = ACTIONS(3121), + [aux_sym_preproc_if_token1] = ACTIONS(3121), + [aux_sym_preproc_if_token2] = ACTIONS(3121), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3121), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3121), + [aux_sym_preproc_else_token1] = ACTIONS(3121), + [aux_sym_preproc_elif_token1] = ACTIONS(3121), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3121), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3121), + [sym_preproc_directive] = ACTIONS(3121), + [anon_sym_LPAREN2] = ACTIONS(3123), + [anon_sym_BANG] = ACTIONS(3123), + [anon_sym_TILDE] = ACTIONS(3123), + [anon_sym_DASH] = ACTIONS(3121), + [anon_sym_PLUS] = ACTIONS(3121), + [anon_sym_STAR] = ACTIONS(3123), + [anon_sym_AMP_AMP] = ACTIONS(3123), + [anon_sym_AMP] = ACTIONS(3121), + [anon_sym_SEMI] = ACTIONS(3123), + [anon_sym_typedef] = ACTIONS(3121), + [anon_sym_extern] = ACTIONS(3121), + [anon_sym___attribute__] = ACTIONS(3121), + [anon_sym_COLON_COLON] = ACTIONS(3123), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3123), + [anon_sym___declspec] = ACTIONS(3121), + [anon_sym___based] = ACTIONS(3121), + [anon_sym___cdecl] = ACTIONS(3121), + [anon_sym___clrcall] = ACTIONS(3121), + [anon_sym___stdcall] = ACTIONS(3121), + [anon_sym___fastcall] = ACTIONS(3121), + [anon_sym___thiscall] = ACTIONS(3121), + [anon_sym___vectorcall] = ACTIONS(3121), + [anon_sym_LBRACE] = ACTIONS(3123), + [anon_sym_LBRACK] = ACTIONS(3121), + [anon_sym_static] = ACTIONS(3121), + [anon_sym_register] = ACTIONS(3121), + [anon_sym_inline] = ACTIONS(3121), + [anon_sym_thread_local] = ACTIONS(3121), + [anon_sym_const] = ACTIONS(3121), + [anon_sym_constexpr] = ACTIONS(3121), + [anon_sym_volatile] = ACTIONS(3121), + [anon_sym_restrict] = ACTIONS(3121), + [anon_sym___restrict__] = ACTIONS(3121), + [anon_sym__Atomic] = ACTIONS(3121), + [anon_sym__Noreturn] = ACTIONS(3121), + [anon_sym_noreturn] = ACTIONS(3121), + [anon_sym_mutable] = ACTIONS(3121), + [anon_sym_constinit] = ACTIONS(3121), + [anon_sym_consteval] = ACTIONS(3121), + [anon_sym_signed] = ACTIONS(3121), + [anon_sym_unsigned] = ACTIONS(3121), + [anon_sym_long] = ACTIONS(3121), + [anon_sym_short] = ACTIONS(3121), + [sym_primitive_type] = ACTIONS(3121), + [anon_sym_enum] = ACTIONS(3121), + [anon_sym_class] = ACTIONS(3121), + [anon_sym_struct] = ACTIONS(3121), + [anon_sym_union] = ACTIONS(3121), + [anon_sym_if] = ACTIONS(3121), + [anon_sym_switch] = ACTIONS(3121), + [anon_sym_case] = ACTIONS(3121), + [anon_sym_default] = ACTIONS(3121), + [anon_sym_while] = ACTIONS(3121), + [anon_sym_do] = ACTIONS(3121), + [anon_sym_for] = ACTIONS(3121), + [anon_sym_return] = ACTIONS(3121), + [anon_sym_break] = ACTIONS(3121), + [anon_sym_continue] = ACTIONS(3121), + [anon_sym_goto] = ACTIONS(3121), + [anon_sym_not] = ACTIONS(3121), + [anon_sym_compl] = ACTIONS(3121), + [anon_sym_DASH_DASH] = ACTIONS(3123), + [anon_sym_PLUS_PLUS] = ACTIONS(3123), + [anon_sym_sizeof] = ACTIONS(3121), + [anon_sym_offsetof] = ACTIONS(3121), + [anon_sym__Generic] = ACTIONS(3121), + [anon_sym_asm] = ACTIONS(3121), + [anon_sym___asm__] = ACTIONS(3121), + [sym_number_literal] = ACTIONS(3123), + [anon_sym_L_SQUOTE] = ACTIONS(3123), + [anon_sym_u_SQUOTE] = ACTIONS(3123), + [anon_sym_U_SQUOTE] = ACTIONS(3123), + [anon_sym_u8_SQUOTE] = ACTIONS(3123), + [anon_sym_SQUOTE] = ACTIONS(3123), + [anon_sym_L_DQUOTE] = ACTIONS(3123), + [anon_sym_u_DQUOTE] = ACTIONS(3123), + [anon_sym_U_DQUOTE] = ACTIONS(3123), + [anon_sym_u8_DQUOTE] = ACTIONS(3123), + [anon_sym_DQUOTE] = ACTIONS(3123), + [sym_true] = ACTIONS(3121), + [sym_false] = ACTIONS(3121), + [anon_sym_NULL] = ACTIONS(3121), + [anon_sym_nullptr] = ACTIONS(3121), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3121), + [anon_sym_decltype] = ACTIONS(3121), + [anon_sym_virtual] = ACTIONS(3121), + [anon_sym_explicit] = ACTIONS(3121), + [anon_sym_typename] = ACTIONS(3121), + [anon_sym_template] = ACTIONS(3121), + [anon_sym_operator] = ACTIONS(3121), + [anon_sym_try] = ACTIONS(3121), + [anon_sym_delete] = ACTIONS(3121), + [anon_sym_throw] = ACTIONS(3121), + [anon_sym_namespace] = ACTIONS(3121), + [anon_sym_using] = ACTIONS(3121), + [anon_sym_static_assert] = ACTIONS(3121), + [anon_sym_concept] = ACTIONS(3121), + [anon_sym_co_return] = ACTIONS(3121), + [anon_sym_co_yield] = ACTIONS(3121), + [anon_sym_R_DQUOTE] = ACTIONS(3123), + [anon_sym_LR_DQUOTE] = ACTIONS(3123), + [anon_sym_uR_DQUOTE] = ACTIONS(3123), + [anon_sym_UR_DQUOTE] = ACTIONS(3123), + [anon_sym_u8R_DQUOTE] = ACTIONS(3123), + [anon_sym_co_await] = ACTIONS(3121), + [anon_sym_new] = ACTIONS(3121), + [anon_sym_requires] = ACTIONS(3121), + [sym_this] = ACTIONS(3121), }, [515] = { - [sym_identifier] = ACTIONS(2762), - [aux_sym_preproc_include_token1] = ACTIONS(2762), - [aux_sym_preproc_def_token1] = ACTIONS(2762), - [aux_sym_preproc_if_token1] = ACTIONS(2762), - [aux_sym_preproc_if_token2] = ACTIONS(2762), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2762), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2762), - [aux_sym_preproc_else_token1] = ACTIONS(2762), - [aux_sym_preproc_elif_token1] = ACTIONS(2762), - [sym_preproc_directive] = ACTIONS(2762), - [anon_sym_LPAREN2] = ACTIONS(2764), - [anon_sym_BANG] = ACTIONS(2764), - [anon_sym_TILDE] = ACTIONS(2764), - [anon_sym_DASH] = ACTIONS(2762), - [anon_sym_PLUS] = ACTIONS(2762), - [anon_sym_STAR] = ACTIONS(2764), - [anon_sym_AMP_AMP] = ACTIONS(2764), - [anon_sym_AMP] = ACTIONS(2762), - [anon_sym_SEMI] = ACTIONS(2764), - [anon_sym_typedef] = ACTIONS(2762), - [anon_sym_extern] = ACTIONS(2762), - [anon_sym___attribute__] = ACTIONS(2762), - [anon_sym_COLON_COLON] = ACTIONS(2764), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2764), - [anon_sym___declspec] = ACTIONS(2762), - [anon_sym___based] = ACTIONS(2762), - [anon_sym___cdecl] = ACTIONS(2762), - [anon_sym___clrcall] = ACTIONS(2762), - [anon_sym___stdcall] = ACTIONS(2762), - [anon_sym___fastcall] = ACTIONS(2762), - [anon_sym___thiscall] = ACTIONS(2762), - [anon_sym___vectorcall] = ACTIONS(2762), - [anon_sym_LBRACE] = ACTIONS(2764), - [anon_sym_LBRACK] = ACTIONS(2762), - [anon_sym_static] = ACTIONS(2762), - [anon_sym_register] = ACTIONS(2762), - [anon_sym_inline] = ACTIONS(2762), - [anon_sym_thread_local] = ACTIONS(2762), - [anon_sym_const] = ACTIONS(2762), - [anon_sym_volatile] = ACTIONS(2762), - [anon_sym_restrict] = ACTIONS(2762), - [anon_sym__Atomic] = ACTIONS(2762), - [anon_sym_mutable] = ACTIONS(2762), - [anon_sym_constexpr] = ACTIONS(2762), - [anon_sym_constinit] = ACTIONS(2762), - [anon_sym_consteval] = ACTIONS(2762), - [anon_sym_signed] = ACTIONS(2762), - [anon_sym_unsigned] = ACTIONS(2762), - [anon_sym_long] = ACTIONS(2762), - [anon_sym_short] = ACTIONS(2762), - [sym_primitive_type] = ACTIONS(2762), - [anon_sym_enum] = ACTIONS(2762), - [anon_sym_class] = ACTIONS(2762), - [anon_sym_struct] = ACTIONS(2762), - [anon_sym_union] = ACTIONS(2762), - [anon_sym_if] = ACTIONS(2762), - [anon_sym_switch] = ACTIONS(2762), - [anon_sym_case] = ACTIONS(2762), - [anon_sym_default] = ACTIONS(2762), - [anon_sym_while] = ACTIONS(2762), - [anon_sym_do] = ACTIONS(2762), - [anon_sym_for] = ACTIONS(2762), - [anon_sym_return] = ACTIONS(2762), - [anon_sym_break] = ACTIONS(2762), - [anon_sym_continue] = ACTIONS(2762), - [anon_sym_goto] = ACTIONS(2762), - [anon_sym_not] = ACTIONS(2762), - [anon_sym_compl] = ACTIONS(2762), - [anon_sym_DASH_DASH] = ACTIONS(2764), - [anon_sym_PLUS_PLUS] = ACTIONS(2764), - [anon_sym_sizeof] = ACTIONS(2762), - [sym_number_literal] = ACTIONS(2764), - [anon_sym_L_SQUOTE] = ACTIONS(2764), - [anon_sym_u_SQUOTE] = ACTIONS(2764), - [anon_sym_U_SQUOTE] = ACTIONS(2764), - [anon_sym_u8_SQUOTE] = ACTIONS(2764), - [anon_sym_SQUOTE] = ACTIONS(2764), - [anon_sym_L_DQUOTE] = ACTIONS(2764), - [anon_sym_u_DQUOTE] = ACTIONS(2764), - [anon_sym_U_DQUOTE] = ACTIONS(2764), - [anon_sym_u8_DQUOTE] = ACTIONS(2764), - [anon_sym_DQUOTE] = ACTIONS(2764), - [sym_true] = ACTIONS(2762), - [sym_false] = ACTIONS(2762), - [sym_null] = ACTIONS(2762), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2762), - [anon_sym_decltype] = ACTIONS(2762), - [anon_sym_virtual] = ACTIONS(2762), - [anon_sym_explicit] = ACTIONS(2762), - [anon_sym_typename] = ACTIONS(2762), - [anon_sym_template] = ACTIONS(2762), - [anon_sym_operator] = ACTIONS(2762), - [anon_sym_try] = ACTIONS(2762), - [anon_sym_delete] = ACTIONS(2762), - [anon_sym_throw] = ACTIONS(2762), - [anon_sym_namespace] = ACTIONS(2762), - [anon_sym_using] = ACTIONS(2762), - [anon_sym_static_assert] = ACTIONS(2762), - [anon_sym_concept] = ACTIONS(2762), - [anon_sym_co_return] = ACTIONS(2762), - [anon_sym_co_yield] = ACTIONS(2762), - [anon_sym_R_DQUOTE] = ACTIONS(2764), - [anon_sym_LR_DQUOTE] = ACTIONS(2764), - [anon_sym_uR_DQUOTE] = ACTIONS(2764), - [anon_sym_UR_DQUOTE] = ACTIONS(2764), - [anon_sym_u8R_DQUOTE] = ACTIONS(2764), - [anon_sym_co_await] = ACTIONS(2762), - [anon_sym_new] = ACTIONS(2762), - [anon_sym_requires] = ACTIONS(2762), - [sym_this] = ACTIONS(2762), - [sym_nullptr] = ACTIONS(2762), + [sym_identifier] = ACTIONS(3125), + [aux_sym_preproc_include_token1] = ACTIONS(3125), + [aux_sym_preproc_def_token1] = ACTIONS(3125), + [aux_sym_preproc_if_token1] = ACTIONS(3125), + [aux_sym_preproc_if_token2] = ACTIONS(3125), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3125), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3125), + [aux_sym_preproc_else_token1] = ACTIONS(3125), + [aux_sym_preproc_elif_token1] = ACTIONS(3125), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3125), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3125), + [sym_preproc_directive] = ACTIONS(3125), + [anon_sym_LPAREN2] = ACTIONS(3127), + [anon_sym_BANG] = ACTIONS(3127), + [anon_sym_TILDE] = ACTIONS(3127), + [anon_sym_DASH] = ACTIONS(3125), + [anon_sym_PLUS] = ACTIONS(3125), + [anon_sym_STAR] = ACTIONS(3127), + [anon_sym_AMP_AMP] = ACTIONS(3127), + [anon_sym_AMP] = ACTIONS(3125), + [anon_sym_SEMI] = ACTIONS(3127), + [anon_sym_typedef] = ACTIONS(3125), + [anon_sym_extern] = ACTIONS(3125), + [anon_sym___attribute__] = ACTIONS(3125), + [anon_sym_COLON_COLON] = ACTIONS(3127), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3127), + [anon_sym___declspec] = ACTIONS(3125), + [anon_sym___based] = ACTIONS(3125), + [anon_sym___cdecl] = ACTIONS(3125), + [anon_sym___clrcall] = ACTIONS(3125), + [anon_sym___stdcall] = ACTIONS(3125), + [anon_sym___fastcall] = ACTIONS(3125), + [anon_sym___thiscall] = ACTIONS(3125), + [anon_sym___vectorcall] = ACTIONS(3125), + [anon_sym_LBRACE] = ACTIONS(3127), + [anon_sym_LBRACK] = ACTIONS(3125), + [anon_sym_static] = ACTIONS(3125), + [anon_sym_register] = ACTIONS(3125), + [anon_sym_inline] = ACTIONS(3125), + [anon_sym_thread_local] = ACTIONS(3125), + [anon_sym_const] = ACTIONS(3125), + [anon_sym_constexpr] = ACTIONS(3125), + [anon_sym_volatile] = ACTIONS(3125), + [anon_sym_restrict] = ACTIONS(3125), + [anon_sym___restrict__] = ACTIONS(3125), + [anon_sym__Atomic] = ACTIONS(3125), + [anon_sym__Noreturn] = ACTIONS(3125), + [anon_sym_noreturn] = ACTIONS(3125), + [anon_sym_mutable] = ACTIONS(3125), + [anon_sym_constinit] = ACTIONS(3125), + [anon_sym_consteval] = ACTIONS(3125), + [anon_sym_signed] = ACTIONS(3125), + [anon_sym_unsigned] = ACTIONS(3125), + [anon_sym_long] = ACTIONS(3125), + [anon_sym_short] = ACTIONS(3125), + [sym_primitive_type] = ACTIONS(3125), + [anon_sym_enum] = ACTIONS(3125), + [anon_sym_class] = ACTIONS(3125), + [anon_sym_struct] = ACTIONS(3125), + [anon_sym_union] = ACTIONS(3125), + [anon_sym_if] = ACTIONS(3125), + [anon_sym_switch] = ACTIONS(3125), + [anon_sym_case] = ACTIONS(3125), + [anon_sym_default] = ACTIONS(3125), + [anon_sym_while] = ACTIONS(3125), + [anon_sym_do] = ACTIONS(3125), + [anon_sym_for] = ACTIONS(3125), + [anon_sym_return] = ACTIONS(3125), + [anon_sym_break] = ACTIONS(3125), + [anon_sym_continue] = ACTIONS(3125), + [anon_sym_goto] = ACTIONS(3125), + [anon_sym_not] = ACTIONS(3125), + [anon_sym_compl] = ACTIONS(3125), + [anon_sym_DASH_DASH] = ACTIONS(3127), + [anon_sym_PLUS_PLUS] = ACTIONS(3127), + [anon_sym_sizeof] = ACTIONS(3125), + [anon_sym_offsetof] = ACTIONS(3125), + [anon_sym__Generic] = ACTIONS(3125), + [anon_sym_asm] = ACTIONS(3125), + [anon_sym___asm__] = ACTIONS(3125), + [sym_number_literal] = ACTIONS(3127), + [anon_sym_L_SQUOTE] = ACTIONS(3127), + [anon_sym_u_SQUOTE] = ACTIONS(3127), + [anon_sym_U_SQUOTE] = ACTIONS(3127), + [anon_sym_u8_SQUOTE] = ACTIONS(3127), + [anon_sym_SQUOTE] = ACTIONS(3127), + [anon_sym_L_DQUOTE] = ACTIONS(3127), + [anon_sym_u_DQUOTE] = ACTIONS(3127), + [anon_sym_U_DQUOTE] = ACTIONS(3127), + [anon_sym_u8_DQUOTE] = ACTIONS(3127), + [anon_sym_DQUOTE] = ACTIONS(3127), + [sym_true] = ACTIONS(3125), + [sym_false] = ACTIONS(3125), + [anon_sym_NULL] = ACTIONS(3125), + [anon_sym_nullptr] = ACTIONS(3125), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3125), + [anon_sym_decltype] = ACTIONS(3125), + [anon_sym_virtual] = ACTIONS(3125), + [anon_sym_explicit] = ACTIONS(3125), + [anon_sym_typename] = ACTIONS(3125), + [anon_sym_template] = ACTIONS(3125), + [anon_sym_operator] = ACTIONS(3125), + [anon_sym_try] = ACTIONS(3125), + [anon_sym_delete] = ACTIONS(3125), + [anon_sym_throw] = ACTIONS(3125), + [anon_sym_namespace] = ACTIONS(3125), + [anon_sym_using] = ACTIONS(3125), + [anon_sym_static_assert] = ACTIONS(3125), + [anon_sym_concept] = ACTIONS(3125), + [anon_sym_co_return] = ACTIONS(3125), + [anon_sym_co_yield] = ACTIONS(3125), + [anon_sym_R_DQUOTE] = ACTIONS(3127), + [anon_sym_LR_DQUOTE] = ACTIONS(3127), + [anon_sym_uR_DQUOTE] = ACTIONS(3127), + [anon_sym_UR_DQUOTE] = ACTIONS(3127), + [anon_sym_u8R_DQUOTE] = ACTIONS(3127), + [anon_sym_co_await] = ACTIONS(3125), + [anon_sym_new] = ACTIONS(3125), + [anon_sym_requires] = ACTIONS(3125), + [sym_this] = ACTIONS(3125), }, [516] = { - [sym_identifier] = ACTIONS(2766), - [aux_sym_preproc_include_token1] = ACTIONS(2766), - [aux_sym_preproc_def_token1] = ACTIONS(2766), - [aux_sym_preproc_if_token1] = ACTIONS(2766), - [aux_sym_preproc_if_token2] = ACTIONS(2766), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2766), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2766), - [aux_sym_preproc_else_token1] = ACTIONS(2766), - [aux_sym_preproc_elif_token1] = ACTIONS(2766), - [sym_preproc_directive] = ACTIONS(2766), - [anon_sym_LPAREN2] = ACTIONS(2768), - [anon_sym_BANG] = ACTIONS(2768), - [anon_sym_TILDE] = ACTIONS(2768), - [anon_sym_DASH] = ACTIONS(2766), - [anon_sym_PLUS] = ACTIONS(2766), - [anon_sym_STAR] = ACTIONS(2768), - [anon_sym_AMP_AMP] = ACTIONS(2768), - [anon_sym_AMP] = ACTIONS(2766), - [anon_sym_SEMI] = ACTIONS(2768), - [anon_sym_typedef] = ACTIONS(2766), - [anon_sym_extern] = ACTIONS(2766), - [anon_sym___attribute__] = ACTIONS(2766), - [anon_sym_COLON_COLON] = ACTIONS(2768), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2768), - [anon_sym___declspec] = ACTIONS(2766), - [anon_sym___based] = ACTIONS(2766), - [anon_sym___cdecl] = ACTIONS(2766), - [anon_sym___clrcall] = ACTIONS(2766), - [anon_sym___stdcall] = ACTIONS(2766), - [anon_sym___fastcall] = ACTIONS(2766), - [anon_sym___thiscall] = ACTIONS(2766), - [anon_sym___vectorcall] = ACTIONS(2766), - [anon_sym_LBRACE] = ACTIONS(2768), - [anon_sym_LBRACK] = ACTIONS(2766), - [anon_sym_static] = ACTIONS(2766), - [anon_sym_register] = ACTIONS(2766), - [anon_sym_inline] = ACTIONS(2766), - [anon_sym_thread_local] = ACTIONS(2766), - [anon_sym_const] = ACTIONS(2766), - [anon_sym_volatile] = ACTIONS(2766), - [anon_sym_restrict] = ACTIONS(2766), - [anon_sym__Atomic] = ACTIONS(2766), - [anon_sym_mutable] = ACTIONS(2766), - [anon_sym_constexpr] = ACTIONS(2766), - [anon_sym_constinit] = ACTIONS(2766), - [anon_sym_consteval] = ACTIONS(2766), - [anon_sym_signed] = ACTIONS(2766), - [anon_sym_unsigned] = ACTIONS(2766), - [anon_sym_long] = ACTIONS(2766), - [anon_sym_short] = ACTIONS(2766), - [sym_primitive_type] = ACTIONS(2766), - [anon_sym_enum] = ACTIONS(2766), - [anon_sym_class] = ACTIONS(2766), - [anon_sym_struct] = ACTIONS(2766), - [anon_sym_union] = ACTIONS(2766), - [anon_sym_if] = ACTIONS(2766), - [anon_sym_switch] = ACTIONS(2766), - [anon_sym_case] = ACTIONS(2766), - [anon_sym_default] = ACTIONS(2766), - [anon_sym_while] = ACTIONS(2766), - [anon_sym_do] = ACTIONS(2766), - [anon_sym_for] = ACTIONS(2766), - [anon_sym_return] = ACTIONS(2766), - [anon_sym_break] = ACTIONS(2766), - [anon_sym_continue] = ACTIONS(2766), - [anon_sym_goto] = ACTIONS(2766), - [anon_sym_not] = ACTIONS(2766), - [anon_sym_compl] = ACTIONS(2766), - [anon_sym_DASH_DASH] = ACTIONS(2768), - [anon_sym_PLUS_PLUS] = ACTIONS(2768), - [anon_sym_sizeof] = ACTIONS(2766), - [sym_number_literal] = ACTIONS(2768), - [anon_sym_L_SQUOTE] = ACTIONS(2768), - [anon_sym_u_SQUOTE] = ACTIONS(2768), - [anon_sym_U_SQUOTE] = ACTIONS(2768), - [anon_sym_u8_SQUOTE] = ACTIONS(2768), - [anon_sym_SQUOTE] = ACTIONS(2768), - [anon_sym_L_DQUOTE] = ACTIONS(2768), - [anon_sym_u_DQUOTE] = ACTIONS(2768), - [anon_sym_U_DQUOTE] = ACTIONS(2768), - [anon_sym_u8_DQUOTE] = ACTIONS(2768), - [anon_sym_DQUOTE] = ACTIONS(2768), - [sym_true] = ACTIONS(2766), - [sym_false] = ACTIONS(2766), - [sym_null] = ACTIONS(2766), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2766), - [anon_sym_decltype] = ACTIONS(2766), - [anon_sym_virtual] = ACTIONS(2766), - [anon_sym_explicit] = ACTIONS(2766), - [anon_sym_typename] = ACTIONS(2766), - [anon_sym_template] = ACTIONS(2766), - [anon_sym_operator] = ACTIONS(2766), - [anon_sym_try] = ACTIONS(2766), - [anon_sym_delete] = ACTIONS(2766), - [anon_sym_throw] = ACTIONS(2766), - [anon_sym_namespace] = ACTIONS(2766), - [anon_sym_using] = ACTIONS(2766), - [anon_sym_static_assert] = ACTIONS(2766), - [anon_sym_concept] = ACTIONS(2766), - [anon_sym_co_return] = ACTIONS(2766), - [anon_sym_co_yield] = ACTIONS(2766), - [anon_sym_R_DQUOTE] = ACTIONS(2768), - [anon_sym_LR_DQUOTE] = ACTIONS(2768), - [anon_sym_uR_DQUOTE] = ACTIONS(2768), - [anon_sym_UR_DQUOTE] = ACTIONS(2768), - [anon_sym_u8R_DQUOTE] = ACTIONS(2768), - [anon_sym_co_await] = ACTIONS(2766), - [anon_sym_new] = ACTIONS(2766), - [anon_sym_requires] = ACTIONS(2766), - [sym_this] = ACTIONS(2766), - [sym_nullptr] = ACTIONS(2766), + [sym__expression] = STATE(4240), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7337), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3129), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(3132), + [anon_sym_extern] = ACTIONS(2966), + [anon_sym___attribute__] = ACTIONS(2966), + [anon_sym_COLON_COLON] = ACTIONS(3134), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2968), + [anon_sym___declspec] = ACTIONS(2966), + [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_static] = ACTIONS(2966), + [anon_sym_register] = ACTIONS(2966), + [anon_sym_inline] = ACTIONS(2966), + [anon_sym_thread_local] = 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_noreturn] = ACTIONS(2966), + [anon_sym_mutable] = ACTIONS(2966), + [anon_sym_constinit] = ACTIONS(2966), + [anon_sym_consteval] = ACTIONS(2966), + [anon_sym_signed] = ACTIONS(2966), + [anon_sym_unsigned] = ACTIONS(2966), + [anon_sym_long] = ACTIONS(2966), + [anon_sym_short] = ACTIONS(2966), + [sym_primitive_type] = ACTIONS(3137), + [anon_sym_enum] = ACTIONS(2966), + [anon_sym_class] = ACTIONS(2966), + [anon_sym_struct] = ACTIONS(2966), + [anon_sym_union] = ACTIONS(2966), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2966), + [anon_sym_decltype] = ACTIONS(3140), + [anon_sym_virtual] = ACTIONS(2966), + [anon_sym_typename] = ACTIONS(2966), + [anon_sym_template] = ACTIONS(3143), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [517] = { - [sym_identifier] = ACTIONS(2770), - [aux_sym_preproc_include_token1] = ACTIONS(2770), - [aux_sym_preproc_def_token1] = ACTIONS(2770), - [aux_sym_preproc_if_token1] = ACTIONS(2770), - [aux_sym_preproc_if_token2] = ACTIONS(2770), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2770), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2770), - [aux_sym_preproc_else_token1] = ACTIONS(2770), - [aux_sym_preproc_elif_token1] = ACTIONS(2770), - [sym_preproc_directive] = ACTIONS(2770), - [anon_sym_LPAREN2] = ACTIONS(2772), - [anon_sym_BANG] = ACTIONS(2772), - [anon_sym_TILDE] = ACTIONS(2772), - [anon_sym_DASH] = ACTIONS(2770), - [anon_sym_PLUS] = ACTIONS(2770), - [anon_sym_STAR] = ACTIONS(2772), - [anon_sym_AMP_AMP] = ACTIONS(2772), - [anon_sym_AMP] = ACTIONS(2770), - [anon_sym_SEMI] = ACTIONS(2772), - [anon_sym_typedef] = ACTIONS(2770), - [anon_sym_extern] = ACTIONS(2770), - [anon_sym___attribute__] = ACTIONS(2770), - [anon_sym_COLON_COLON] = ACTIONS(2772), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2772), - [anon_sym___declspec] = ACTIONS(2770), - [anon_sym___based] = ACTIONS(2770), - [anon_sym___cdecl] = ACTIONS(2770), - [anon_sym___clrcall] = ACTIONS(2770), - [anon_sym___stdcall] = ACTIONS(2770), - [anon_sym___fastcall] = ACTIONS(2770), - [anon_sym___thiscall] = ACTIONS(2770), - [anon_sym___vectorcall] = ACTIONS(2770), - [anon_sym_LBRACE] = ACTIONS(2772), - [anon_sym_LBRACK] = ACTIONS(2770), - [anon_sym_static] = ACTIONS(2770), - [anon_sym_register] = ACTIONS(2770), - [anon_sym_inline] = ACTIONS(2770), - [anon_sym_thread_local] = ACTIONS(2770), - [anon_sym_const] = ACTIONS(2770), - [anon_sym_volatile] = ACTIONS(2770), - [anon_sym_restrict] = ACTIONS(2770), - [anon_sym__Atomic] = ACTIONS(2770), - [anon_sym_mutable] = ACTIONS(2770), - [anon_sym_constexpr] = ACTIONS(2770), - [anon_sym_constinit] = ACTIONS(2770), - [anon_sym_consteval] = ACTIONS(2770), - [anon_sym_signed] = ACTIONS(2770), - [anon_sym_unsigned] = ACTIONS(2770), - [anon_sym_long] = ACTIONS(2770), - [anon_sym_short] = ACTIONS(2770), - [sym_primitive_type] = ACTIONS(2770), - [anon_sym_enum] = ACTIONS(2770), - [anon_sym_class] = ACTIONS(2770), - [anon_sym_struct] = ACTIONS(2770), - [anon_sym_union] = ACTIONS(2770), - [anon_sym_if] = ACTIONS(2770), - [anon_sym_switch] = ACTIONS(2770), - [anon_sym_case] = ACTIONS(2770), - [anon_sym_default] = ACTIONS(2770), - [anon_sym_while] = ACTIONS(2770), - [anon_sym_do] = ACTIONS(2770), - [anon_sym_for] = ACTIONS(2770), - [anon_sym_return] = ACTIONS(2770), - [anon_sym_break] = ACTIONS(2770), - [anon_sym_continue] = ACTIONS(2770), - [anon_sym_goto] = ACTIONS(2770), - [anon_sym_not] = ACTIONS(2770), - [anon_sym_compl] = ACTIONS(2770), - [anon_sym_DASH_DASH] = ACTIONS(2772), - [anon_sym_PLUS_PLUS] = ACTIONS(2772), - [anon_sym_sizeof] = ACTIONS(2770), - [sym_number_literal] = ACTIONS(2772), - [anon_sym_L_SQUOTE] = ACTIONS(2772), - [anon_sym_u_SQUOTE] = ACTIONS(2772), - [anon_sym_U_SQUOTE] = ACTIONS(2772), - [anon_sym_u8_SQUOTE] = ACTIONS(2772), - [anon_sym_SQUOTE] = ACTIONS(2772), - [anon_sym_L_DQUOTE] = ACTIONS(2772), - [anon_sym_u_DQUOTE] = ACTIONS(2772), - [anon_sym_U_DQUOTE] = ACTIONS(2772), - [anon_sym_u8_DQUOTE] = ACTIONS(2772), - [anon_sym_DQUOTE] = ACTIONS(2772), - [sym_true] = ACTIONS(2770), - [sym_false] = ACTIONS(2770), - [sym_null] = ACTIONS(2770), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2770), - [anon_sym_decltype] = ACTIONS(2770), - [anon_sym_virtual] = ACTIONS(2770), - [anon_sym_explicit] = ACTIONS(2770), - [anon_sym_typename] = ACTIONS(2770), - [anon_sym_template] = ACTIONS(2770), - [anon_sym_operator] = ACTIONS(2770), - [anon_sym_try] = ACTIONS(2770), - [anon_sym_delete] = ACTIONS(2770), - [anon_sym_throw] = ACTIONS(2770), - [anon_sym_namespace] = ACTIONS(2770), - [anon_sym_using] = ACTIONS(2770), - [anon_sym_static_assert] = ACTIONS(2770), - [anon_sym_concept] = ACTIONS(2770), - [anon_sym_co_return] = ACTIONS(2770), - [anon_sym_co_yield] = ACTIONS(2770), - [anon_sym_R_DQUOTE] = ACTIONS(2772), - [anon_sym_LR_DQUOTE] = ACTIONS(2772), - [anon_sym_uR_DQUOTE] = ACTIONS(2772), - [anon_sym_UR_DQUOTE] = ACTIONS(2772), - [anon_sym_u8R_DQUOTE] = ACTIONS(2772), - [anon_sym_co_await] = ACTIONS(2770), - [anon_sym_new] = ACTIONS(2770), - [anon_sym_requires] = ACTIONS(2770), - [sym_this] = ACTIONS(2770), - [sym_nullptr] = ACTIONS(2770), + [sym_identifier] = ACTIONS(3146), + [aux_sym_preproc_include_token1] = ACTIONS(3146), + [aux_sym_preproc_def_token1] = ACTIONS(3146), + [aux_sym_preproc_if_token1] = ACTIONS(3146), + [aux_sym_preproc_if_token2] = ACTIONS(3146), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3146), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3146), + [aux_sym_preproc_else_token1] = ACTIONS(3146), + [aux_sym_preproc_elif_token1] = ACTIONS(3146), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3146), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3146), + [sym_preproc_directive] = ACTIONS(3146), + [anon_sym_LPAREN2] = ACTIONS(3148), + [anon_sym_BANG] = ACTIONS(3148), + [anon_sym_TILDE] = ACTIONS(3148), + [anon_sym_DASH] = ACTIONS(3146), + [anon_sym_PLUS] = ACTIONS(3146), + [anon_sym_STAR] = ACTIONS(3148), + [anon_sym_AMP_AMP] = ACTIONS(3148), + [anon_sym_AMP] = ACTIONS(3146), + [anon_sym_SEMI] = ACTIONS(3148), + [anon_sym_typedef] = ACTIONS(3146), + [anon_sym_extern] = ACTIONS(3146), + [anon_sym___attribute__] = ACTIONS(3146), + [anon_sym_COLON_COLON] = ACTIONS(3148), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3148), + [anon_sym___declspec] = ACTIONS(3146), + [anon_sym___based] = ACTIONS(3146), + [anon_sym___cdecl] = ACTIONS(3146), + [anon_sym___clrcall] = ACTIONS(3146), + [anon_sym___stdcall] = ACTIONS(3146), + [anon_sym___fastcall] = ACTIONS(3146), + [anon_sym___thiscall] = ACTIONS(3146), + [anon_sym___vectorcall] = ACTIONS(3146), + [anon_sym_LBRACE] = ACTIONS(3148), + [anon_sym_LBRACK] = ACTIONS(3146), + [anon_sym_static] = ACTIONS(3146), + [anon_sym_register] = ACTIONS(3146), + [anon_sym_inline] = ACTIONS(3146), + [anon_sym_thread_local] = ACTIONS(3146), + [anon_sym_const] = ACTIONS(3146), + [anon_sym_constexpr] = ACTIONS(3146), + [anon_sym_volatile] = ACTIONS(3146), + [anon_sym_restrict] = ACTIONS(3146), + [anon_sym___restrict__] = ACTIONS(3146), + [anon_sym__Atomic] = ACTIONS(3146), + [anon_sym__Noreturn] = ACTIONS(3146), + [anon_sym_noreturn] = ACTIONS(3146), + [anon_sym_mutable] = ACTIONS(3146), + [anon_sym_constinit] = ACTIONS(3146), + [anon_sym_consteval] = ACTIONS(3146), + [anon_sym_signed] = ACTIONS(3146), + [anon_sym_unsigned] = ACTIONS(3146), + [anon_sym_long] = ACTIONS(3146), + [anon_sym_short] = ACTIONS(3146), + [sym_primitive_type] = ACTIONS(3146), + [anon_sym_enum] = ACTIONS(3146), + [anon_sym_class] = ACTIONS(3146), + [anon_sym_struct] = ACTIONS(3146), + [anon_sym_union] = ACTIONS(3146), + [anon_sym_if] = ACTIONS(3146), + [anon_sym_switch] = ACTIONS(3146), + [anon_sym_case] = ACTIONS(3146), + [anon_sym_default] = ACTIONS(3146), + [anon_sym_while] = ACTIONS(3146), + [anon_sym_do] = ACTIONS(3146), + [anon_sym_for] = ACTIONS(3146), + [anon_sym_return] = ACTIONS(3146), + [anon_sym_break] = ACTIONS(3146), + [anon_sym_continue] = ACTIONS(3146), + [anon_sym_goto] = ACTIONS(3146), + [anon_sym_not] = ACTIONS(3146), + [anon_sym_compl] = ACTIONS(3146), + [anon_sym_DASH_DASH] = ACTIONS(3148), + [anon_sym_PLUS_PLUS] = ACTIONS(3148), + [anon_sym_sizeof] = ACTIONS(3146), + [anon_sym_offsetof] = ACTIONS(3146), + [anon_sym__Generic] = ACTIONS(3146), + [anon_sym_asm] = ACTIONS(3146), + [anon_sym___asm__] = ACTIONS(3146), + [sym_number_literal] = ACTIONS(3148), + [anon_sym_L_SQUOTE] = ACTIONS(3148), + [anon_sym_u_SQUOTE] = ACTIONS(3148), + [anon_sym_U_SQUOTE] = ACTIONS(3148), + [anon_sym_u8_SQUOTE] = ACTIONS(3148), + [anon_sym_SQUOTE] = ACTIONS(3148), + [anon_sym_L_DQUOTE] = ACTIONS(3148), + [anon_sym_u_DQUOTE] = ACTIONS(3148), + [anon_sym_U_DQUOTE] = ACTIONS(3148), + [anon_sym_u8_DQUOTE] = ACTIONS(3148), + [anon_sym_DQUOTE] = ACTIONS(3148), + [sym_true] = ACTIONS(3146), + [sym_false] = ACTIONS(3146), + [anon_sym_NULL] = ACTIONS(3146), + [anon_sym_nullptr] = ACTIONS(3146), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3146), + [anon_sym_decltype] = ACTIONS(3146), + [anon_sym_virtual] = ACTIONS(3146), + [anon_sym_explicit] = ACTIONS(3146), + [anon_sym_typename] = ACTIONS(3146), + [anon_sym_template] = ACTIONS(3146), + [anon_sym_operator] = ACTIONS(3146), + [anon_sym_try] = ACTIONS(3146), + [anon_sym_delete] = ACTIONS(3146), + [anon_sym_throw] = ACTIONS(3146), + [anon_sym_namespace] = ACTIONS(3146), + [anon_sym_using] = ACTIONS(3146), + [anon_sym_static_assert] = ACTIONS(3146), + [anon_sym_concept] = ACTIONS(3146), + [anon_sym_co_return] = ACTIONS(3146), + [anon_sym_co_yield] = ACTIONS(3146), + [anon_sym_R_DQUOTE] = ACTIONS(3148), + [anon_sym_LR_DQUOTE] = ACTIONS(3148), + [anon_sym_uR_DQUOTE] = ACTIONS(3148), + [anon_sym_UR_DQUOTE] = ACTIONS(3148), + [anon_sym_u8R_DQUOTE] = ACTIONS(3148), + [anon_sym_co_await] = ACTIONS(3146), + [anon_sym_new] = ACTIONS(3146), + [anon_sym_requires] = ACTIONS(3146), + [sym_this] = ACTIONS(3146), }, [518] = { - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token2] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [aux_sym_preproc_else_token1] = ACTIONS(2774), - [aux_sym_preproc_elif_token1] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [sym_null] = ACTIONS(2774), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), - [sym_nullptr] = ACTIONS(2774), + [sym_identifier] = ACTIONS(3150), + [aux_sym_preproc_include_token1] = ACTIONS(3150), + [aux_sym_preproc_def_token1] = ACTIONS(3150), + [aux_sym_preproc_if_token1] = ACTIONS(3150), + [aux_sym_preproc_if_token2] = ACTIONS(3150), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3150), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3150), + [aux_sym_preproc_else_token1] = ACTIONS(3150), + [aux_sym_preproc_elif_token1] = ACTIONS(3150), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3150), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3150), + [sym_preproc_directive] = ACTIONS(3150), + [anon_sym_LPAREN2] = ACTIONS(3152), + [anon_sym_BANG] = ACTIONS(3152), + [anon_sym_TILDE] = ACTIONS(3152), + [anon_sym_DASH] = ACTIONS(3150), + [anon_sym_PLUS] = ACTIONS(3150), + [anon_sym_STAR] = ACTIONS(3152), + [anon_sym_AMP_AMP] = ACTIONS(3152), + [anon_sym_AMP] = ACTIONS(3150), + [anon_sym_SEMI] = ACTIONS(3152), + [anon_sym_typedef] = ACTIONS(3150), + [anon_sym_extern] = ACTIONS(3150), + [anon_sym___attribute__] = ACTIONS(3150), + [anon_sym_COLON_COLON] = ACTIONS(3152), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3152), + [anon_sym___declspec] = ACTIONS(3150), + [anon_sym___based] = ACTIONS(3150), + [anon_sym___cdecl] = ACTIONS(3150), + [anon_sym___clrcall] = ACTIONS(3150), + [anon_sym___stdcall] = ACTIONS(3150), + [anon_sym___fastcall] = ACTIONS(3150), + [anon_sym___thiscall] = ACTIONS(3150), + [anon_sym___vectorcall] = ACTIONS(3150), + [anon_sym_LBRACE] = ACTIONS(3152), + [anon_sym_LBRACK] = ACTIONS(3150), + [anon_sym_static] = ACTIONS(3150), + [anon_sym_register] = ACTIONS(3150), + [anon_sym_inline] = ACTIONS(3150), + [anon_sym_thread_local] = ACTIONS(3150), + [anon_sym_const] = ACTIONS(3150), + [anon_sym_constexpr] = ACTIONS(3150), + [anon_sym_volatile] = ACTIONS(3150), + [anon_sym_restrict] = ACTIONS(3150), + [anon_sym___restrict__] = ACTIONS(3150), + [anon_sym__Atomic] = ACTIONS(3150), + [anon_sym__Noreturn] = ACTIONS(3150), + [anon_sym_noreturn] = ACTIONS(3150), + [anon_sym_mutable] = ACTIONS(3150), + [anon_sym_constinit] = ACTIONS(3150), + [anon_sym_consteval] = ACTIONS(3150), + [anon_sym_signed] = ACTIONS(3150), + [anon_sym_unsigned] = ACTIONS(3150), + [anon_sym_long] = ACTIONS(3150), + [anon_sym_short] = ACTIONS(3150), + [sym_primitive_type] = ACTIONS(3150), + [anon_sym_enum] = ACTIONS(3150), + [anon_sym_class] = ACTIONS(3150), + [anon_sym_struct] = ACTIONS(3150), + [anon_sym_union] = ACTIONS(3150), + [anon_sym_if] = ACTIONS(3150), + [anon_sym_switch] = ACTIONS(3150), + [anon_sym_case] = ACTIONS(3150), + [anon_sym_default] = ACTIONS(3150), + [anon_sym_while] = ACTIONS(3150), + [anon_sym_do] = ACTIONS(3150), + [anon_sym_for] = ACTIONS(3150), + [anon_sym_return] = ACTIONS(3150), + [anon_sym_break] = ACTIONS(3150), + [anon_sym_continue] = ACTIONS(3150), + [anon_sym_goto] = ACTIONS(3150), + [anon_sym_not] = ACTIONS(3150), + [anon_sym_compl] = ACTIONS(3150), + [anon_sym_DASH_DASH] = ACTIONS(3152), + [anon_sym_PLUS_PLUS] = ACTIONS(3152), + [anon_sym_sizeof] = ACTIONS(3150), + [anon_sym_offsetof] = ACTIONS(3150), + [anon_sym__Generic] = ACTIONS(3150), + [anon_sym_asm] = ACTIONS(3150), + [anon_sym___asm__] = ACTIONS(3150), + [sym_number_literal] = ACTIONS(3152), + [anon_sym_L_SQUOTE] = ACTIONS(3152), + [anon_sym_u_SQUOTE] = ACTIONS(3152), + [anon_sym_U_SQUOTE] = ACTIONS(3152), + [anon_sym_u8_SQUOTE] = ACTIONS(3152), + [anon_sym_SQUOTE] = ACTIONS(3152), + [anon_sym_L_DQUOTE] = ACTIONS(3152), + [anon_sym_u_DQUOTE] = ACTIONS(3152), + [anon_sym_U_DQUOTE] = ACTIONS(3152), + [anon_sym_u8_DQUOTE] = ACTIONS(3152), + [anon_sym_DQUOTE] = ACTIONS(3152), + [sym_true] = ACTIONS(3150), + [sym_false] = ACTIONS(3150), + [anon_sym_NULL] = ACTIONS(3150), + [anon_sym_nullptr] = ACTIONS(3150), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3150), + [anon_sym_decltype] = ACTIONS(3150), + [anon_sym_virtual] = ACTIONS(3150), + [anon_sym_explicit] = ACTIONS(3150), + [anon_sym_typename] = ACTIONS(3150), + [anon_sym_template] = ACTIONS(3150), + [anon_sym_operator] = ACTIONS(3150), + [anon_sym_try] = ACTIONS(3150), + [anon_sym_delete] = ACTIONS(3150), + [anon_sym_throw] = ACTIONS(3150), + [anon_sym_namespace] = ACTIONS(3150), + [anon_sym_using] = ACTIONS(3150), + [anon_sym_static_assert] = ACTIONS(3150), + [anon_sym_concept] = ACTIONS(3150), + [anon_sym_co_return] = ACTIONS(3150), + [anon_sym_co_yield] = ACTIONS(3150), + [anon_sym_R_DQUOTE] = ACTIONS(3152), + [anon_sym_LR_DQUOTE] = ACTIONS(3152), + [anon_sym_uR_DQUOTE] = ACTIONS(3152), + [anon_sym_UR_DQUOTE] = ACTIONS(3152), + [anon_sym_u8R_DQUOTE] = ACTIONS(3152), + [anon_sym_co_await] = ACTIONS(3150), + [anon_sym_new] = ACTIONS(3150), + [anon_sym_requires] = ACTIONS(3150), + [sym_this] = ACTIONS(3150), }, [519] = { - [sym_identifier] = ACTIONS(2682), - [aux_sym_preproc_include_token1] = ACTIONS(2682), - [aux_sym_preproc_def_token1] = ACTIONS(2682), - [aux_sym_preproc_if_token1] = ACTIONS(2682), - [aux_sym_preproc_if_token2] = ACTIONS(2682), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2682), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2682), - [aux_sym_preproc_else_token1] = ACTIONS(2682), - [aux_sym_preproc_elif_token1] = ACTIONS(2682), - [sym_preproc_directive] = ACTIONS(2682), - [anon_sym_LPAREN2] = ACTIONS(2684), - [anon_sym_BANG] = ACTIONS(2684), - [anon_sym_TILDE] = ACTIONS(2684), - [anon_sym_DASH] = ACTIONS(2682), - [anon_sym_PLUS] = ACTIONS(2682), - [anon_sym_STAR] = ACTIONS(2684), - [anon_sym_AMP_AMP] = ACTIONS(2684), - [anon_sym_AMP] = ACTIONS(2682), - [anon_sym_SEMI] = ACTIONS(2684), - [anon_sym_typedef] = ACTIONS(2682), - [anon_sym_extern] = ACTIONS(2682), - [anon_sym___attribute__] = ACTIONS(2682), - [anon_sym_COLON_COLON] = ACTIONS(2684), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2684), - [anon_sym___declspec] = ACTIONS(2682), - [anon_sym___based] = ACTIONS(2682), - [anon_sym___cdecl] = ACTIONS(2682), - [anon_sym___clrcall] = ACTIONS(2682), - [anon_sym___stdcall] = ACTIONS(2682), - [anon_sym___fastcall] = ACTIONS(2682), - [anon_sym___thiscall] = ACTIONS(2682), - [anon_sym___vectorcall] = ACTIONS(2682), - [anon_sym_LBRACE] = ACTIONS(2684), - [anon_sym_LBRACK] = ACTIONS(2682), - [anon_sym_static] = ACTIONS(2682), - [anon_sym_register] = ACTIONS(2682), - [anon_sym_inline] = ACTIONS(2682), - [anon_sym_thread_local] = ACTIONS(2682), - [anon_sym_const] = ACTIONS(2682), - [anon_sym_volatile] = ACTIONS(2682), - [anon_sym_restrict] = ACTIONS(2682), - [anon_sym__Atomic] = ACTIONS(2682), - [anon_sym_mutable] = ACTIONS(2682), - [anon_sym_constexpr] = ACTIONS(2682), - [anon_sym_constinit] = ACTIONS(2682), - [anon_sym_consteval] = ACTIONS(2682), - [anon_sym_signed] = ACTIONS(2682), - [anon_sym_unsigned] = ACTIONS(2682), - [anon_sym_long] = ACTIONS(2682), - [anon_sym_short] = ACTIONS(2682), - [sym_primitive_type] = ACTIONS(2682), - [anon_sym_enum] = ACTIONS(2682), - [anon_sym_class] = ACTIONS(2682), - [anon_sym_struct] = ACTIONS(2682), - [anon_sym_union] = ACTIONS(2682), - [anon_sym_if] = ACTIONS(2682), - [anon_sym_switch] = ACTIONS(2682), - [anon_sym_case] = ACTIONS(2682), - [anon_sym_default] = ACTIONS(2682), - [anon_sym_while] = ACTIONS(2682), - [anon_sym_do] = ACTIONS(2682), - [anon_sym_for] = ACTIONS(2682), - [anon_sym_return] = ACTIONS(2682), - [anon_sym_break] = ACTIONS(2682), - [anon_sym_continue] = ACTIONS(2682), - [anon_sym_goto] = ACTIONS(2682), - [anon_sym_not] = ACTIONS(2682), - [anon_sym_compl] = ACTIONS(2682), - [anon_sym_DASH_DASH] = ACTIONS(2684), - [anon_sym_PLUS_PLUS] = ACTIONS(2684), - [anon_sym_sizeof] = ACTIONS(2682), - [sym_number_literal] = ACTIONS(2684), - [anon_sym_L_SQUOTE] = ACTIONS(2684), - [anon_sym_u_SQUOTE] = ACTIONS(2684), - [anon_sym_U_SQUOTE] = ACTIONS(2684), - [anon_sym_u8_SQUOTE] = ACTIONS(2684), - [anon_sym_SQUOTE] = ACTIONS(2684), - [anon_sym_L_DQUOTE] = ACTIONS(2684), - [anon_sym_u_DQUOTE] = ACTIONS(2684), - [anon_sym_U_DQUOTE] = ACTIONS(2684), - [anon_sym_u8_DQUOTE] = ACTIONS(2684), - [anon_sym_DQUOTE] = ACTIONS(2684), - [sym_true] = ACTIONS(2682), - [sym_false] = ACTIONS(2682), - [sym_null] = ACTIONS(2682), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2682), - [anon_sym_decltype] = ACTIONS(2682), - [anon_sym_virtual] = ACTIONS(2682), - [anon_sym_explicit] = ACTIONS(2682), - [anon_sym_typename] = ACTIONS(2682), - [anon_sym_template] = ACTIONS(2682), - [anon_sym_operator] = ACTIONS(2682), - [anon_sym_try] = ACTIONS(2682), - [anon_sym_delete] = ACTIONS(2682), - [anon_sym_throw] = ACTIONS(2682), - [anon_sym_namespace] = ACTIONS(2682), - [anon_sym_using] = ACTIONS(2682), - [anon_sym_static_assert] = ACTIONS(2682), - [anon_sym_concept] = ACTIONS(2682), - [anon_sym_co_return] = ACTIONS(2682), - [anon_sym_co_yield] = ACTIONS(2682), - [anon_sym_R_DQUOTE] = ACTIONS(2684), - [anon_sym_LR_DQUOTE] = ACTIONS(2684), - [anon_sym_uR_DQUOTE] = ACTIONS(2684), - [anon_sym_UR_DQUOTE] = ACTIONS(2684), - [anon_sym_u8R_DQUOTE] = ACTIONS(2684), - [anon_sym_co_await] = ACTIONS(2682), - [anon_sym_new] = ACTIONS(2682), - [anon_sym_requires] = ACTIONS(2682), - [sym_this] = ACTIONS(2682), - [sym_nullptr] = ACTIONS(2682), + [sym__expression] = STATE(4220), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7433), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3129), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(3154), + [anon_sym_extern] = ACTIONS(2966), + [anon_sym___attribute__] = ACTIONS(2966), + [anon_sym_COLON_COLON] = ACTIONS(3134), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2968), + [anon_sym___declspec] = ACTIONS(2966), + [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_static] = ACTIONS(2966), + [anon_sym_register] = ACTIONS(2966), + [anon_sym_inline] = ACTIONS(2966), + [anon_sym_thread_local] = 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_noreturn] = ACTIONS(2966), + [anon_sym_mutable] = ACTIONS(2966), + [anon_sym_constinit] = ACTIONS(2966), + [anon_sym_consteval] = ACTIONS(2966), + [anon_sym_signed] = ACTIONS(2966), + [anon_sym_unsigned] = ACTIONS(2966), + [anon_sym_long] = ACTIONS(2966), + [anon_sym_short] = ACTIONS(2966), + [sym_primitive_type] = ACTIONS(3137), + [anon_sym_enum] = ACTIONS(2966), + [anon_sym_class] = ACTIONS(2966), + [anon_sym_struct] = ACTIONS(2966), + [anon_sym_union] = ACTIONS(2966), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2966), + [anon_sym_decltype] = ACTIONS(3140), + [anon_sym_virtual] = ACTIONS(2966), + [anon_sym_typename] = ACTIONS(2966), + [anon_sym_template] = ACTIONS(3143), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [520] = { - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token2] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [aux_sym_preproc_else_token1] = ACTIONS(2778), - [aux_sym_preproc_elif_token1] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [sym_null] = ACTIONS(2778), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), - [sym_nullptr] = ACTIONS(2778), + [sym_identifier] = ACTIONS(3156), + [aux_sym_preproc_include_token1] = ACTIONS(3156), + [aux_sym_preproc_def_token1] = ACTIONS(3156), + [aux_sym_preproc_if_token1] = ACTIONS(3156), + [aux_sym_preproc_if_token2] = ACTIONS(3156), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3156), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3156), + [aux_sym_preproc_else_token1] = ACTIONS(3156), + [aux_sym_preproc_elif_token1] = ACTIONS(3156), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3156), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3156), + [sym_preproc_directive] = ACTIONS(3156), + [anon_sym_LPAREN2] = ACTIONS(3158), + [anon_sym_BANG] = ACTIONS(3158), + [anon_sym_TILDE] = ACTIONS(3158), + [anon_sym_DASH] = ACTIONS(3156), + [anon_sym_PLUS] = ACTIONS(3156), + [anon_sym_STAR] = ACTIONS(3158), + [anon_sym_AMP_AMP] = ACTIONS(3158), + [anon_sym_AMP] = ACTIONS(3156), + [anon_sym_SEMI] = ACTIONS(3158), + [anon_sym_typedef] = ACTIONS(3156), + [anon_sym_extern] = ACTIONS(3156), + [anon_sym___attribute__] = ACTIONS(3156), + [anon_sym_COLON_COLON] = ACTIONS(3158), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3158), + [anon_sym___declspec] = ACTIONS(3156), + [anon_sym___based] = ACTIONS(3156), + [anon_sym___cdecl] = ACTIONS(3156), + [anon_sym___clrcall] = ACTIONS(3156), + [anon_sym___stdcall] = ACTIONS(3156), + [anon_sym___fastcall] = ACTIONS(3156), + [anon_sym___thiscall] = ACTIONS(3156), + [anon_sym___vectorcall] = ACTIONS(3156), + [anon_sym_LBRACE] = ACTIONS(3158), + [anon_sym_LBRACK] = ACTIONS(3156), + [anon_sym_static] = ACTIONS(3156), + [anon_sym_register] = ACTIONS(3156), + [anon_sym_inline] = ACTIONS(3156), + [anon_sym_thread_local] = ACTIONS(3156), + [anon_sym_const] = ACTIONS(3156), + [anon_sym_constexpr] = ACTIONS(3156), + [anon_sym_volatile] = ACTIONS(3156), + [anon_sym_restrict] = ACTIONS(3156), + [anon_sym___restrict__] = ACTIONS(3156), + [anon_sym__Atomic] = ACTIONS(3156), + [anon_sym__Noreturn] = ACTIONS(3156), + [anon_sym_noreturn] = ACTIONS(3156), + [anon_sym_mutable] = ACTIONS(3156), + [anon_sym_constinit] = ACTIONS(3156), + [anon_sym_consteval] = ACTIONS(3156), + [anon_sym_signed] = ACTIONS(3156), + [anon_sym_unsigned] = ACTIONS(3156), + [anon_sym_long] = ACTIONS(3156), + [anon_sym_short] = ACTIONS(3156), + [sym_primitive_type] = ACTIONS(3156), + [anon_sym_enum] = ACTIONS(3156), + [anon_sym_class] = ACTIONS(3156), + [anon_sym_struct] = ACTIONS(3156), + [anon_sym_union] = ACTIONS(3156), + [anon_sym_if] = ACTIONS(3156), + [anon_sym_switch] = ACTIONS(3156), + [anon_sym_case] = ACTIONS(3156), + [anon_sym_default] = ACTIONS(3156), + [anon_sym_while] = ACTIONS(3156), + [anon_sym_do] = ACTIONS(3156), + [anon_sym_for] = ACTIONS(3156), + [anon_sym_return] = ACTIONS(3156), + [anon_sym_break] = ACTIONS(3156), + [anon_sym_continue] = ACTIONS(3156), + [anon_sym_goto] = ACTIONS(3156), + [anon_sym_not] = ACTIONS(3156), + [anon_sym_compl] = ACTIONS(3156), + [anon_sym_DASH_DASH] = ACTIONS(3158), + [anon_sym_PLUS_PLUS] = ACTIONS(3158), + [anon_sym_sizeof] = ACTIONS(3156), + [anon_sym_offsetof] = ACTIONS(3156), + [anon_sym__Generic] = ACTIONS(3156), + [anon_sym_asm] = ACTIONS(3156), + [anon_sym___asm__] = ACTIONS(3156), + [sym_number_literal] = ACTIONS(3158), + [anon_sym_L_SQUOTE] = ACTIONS(3158), + [anon_sym_u_SQUOTE] = ACTIONS(3158), + [anon_sym_U_SQUOTE] = ACTIONS(3158), + [anon_sym_u8_SQUOTE] = ACTIONS(3158), + [anon_sym_SQUOTE] = ACTIONS(3158), + [anon_sym_L_DQUOTE] = ACTIONS(3158), + [anon_sym_u_DQUOTE] = ACTIONS(3158), + [anon_sym_U_DQUOTE] = ACTIONS(3158), + [anon_sym_u8_DQUOTE] = ACTIONS(3158), + [anon_sym_DQUOTE] = ACTIONS(3158), + [sym_true] = ACTIONS(3156), + [sym_false] = ACTIONS(3156), + [anon_sym_NULL] = ACTIONS(3156), + [anon_sym_nullptr] = ACTIONS(3156), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3156), + [anon_sym_decltype] = ACTIONS(3156), + [anon_sym_virtual] = ACTIONS(3156), + [anon_sym_explicit] = ACTIONS(3156), + [anon_sym_typename] = ACTIONS(3156), + [anon_sym_template] = ACTIONS(3156), + [anon_sym_operator] = ACTIONS(3156), + [anon_sym_try] = ACTIONS(3156), + [anon_sym_delete] = ACTIONS(3156), + [anon_sym_throw] = ACTIONS(3156), + [anon_sym_namespace] = ACTIONS(3156), + [anon_sym_using] = ACTIONS(3156), + [anon_sym_static_assert] = ACTIONS(3156), + [anon_sym_concept] = ACTIONS(3156), + [anon_sym_co_return] = ACTIONS(3156), + [anon_sym_co_yield] = ACTIONS(3156), + [anon_sym_R_DQUOTE] = ACTIONS(3158), + [anon_sym_LR_DQUOTE] = ACTIONS(3158), + [anon_sym_uR_DQUOTE] = ACTIONS(3158), + [anon_sym_UR_DQUOTE] = ACTIONS(3158), + [anon_sym_u8R_DQUOTE] = ACTIONS(3158), + [anon_sym_co_await] = ACTIONS(3156), + [anon_sym_new] = ACTIONS(3156), + [anon_sym_requires] = ACTIONS(3156), + [sym_this] = ACTIONS(3156), }, [521] = { - [sym_identifier] = ACTIONS(2782), - [aux_sym_preproc_include_token1] = ACTIONS(2782), - [aux_sym_preproc_def_token1] = ACTIONS(2782), - [aux_sym_preproc_if_token1] = ACTIONS(2782), - [aux_sym_preproc_if_token2] = ACTIONS(2782), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2782), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2782), - [aux_sym_preproc_else_token1] = ACTIONS(2782), - [aux_sym_preproc_elif_token1] = ACTIONS(2782), - [sym_preproc_directive] = ACTIONS(2782), - [anon_sym_LPAREN2] = ACTIONS(2784), - [anon_sym_BANG] = ACTIONS(2784), - [anon_sym_TILDE] = ACTIONS(2784), - [anon_sym_DASH] = ACTIONS(2782), - [anon_sym_PLUS] = ACTIONS(2782), - [anon_sym_STAR] = ACTIONS(2784), - [anon_sym_AMP_AMP] = ACTIONS(2784), - [anon_sym_AMP] = ACTIONS(2782), - [anon_sym_SEMI] = ACTIONS(2784), - [anon_sym_typedef] = ACTIONS(2782), - [anon_sym_extern] = ACTIONS(2782), - [anon_sym___attribute__] = ACTIONS(2782), - [anon_sym_COLON_COLON] = ACTIONS(2784), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2784), - [anon_sym___declspec] = ACTIONS(2782), - [anon_sym___based] = ACTIONS(2782), - [anon_sym___cdecl] = ACTIONS(2782), - [anon_sym___clrcall] = ACTIONS(2782), - [anon_sym___stdcall] = ACTIONS(2782), - [anon_sym___fastcall] = ACTIONS(2782), - [anon_sym___thiscall] = ACTIONS(2782), - [anon_sym___vectorcall] = ACTIONS(2782), - [anon_sym_LBRACE] = ACTIONS(2784), - [anon_sym_LBRACK] = ACTIONS(2782), - [anon_sym_static] = ACTIONS(2782), - [anon_sym_register] = ACTIONS(2782), - [anon_sym_inline] = ACTIONS(2782), - [anon_sym_thread_local] = ACTIONS(2782), - [anon_sym_const] = ACTIONS(2782), - [anon_sym_volatile] = ACTIONS(2782), - [anon_sym_restrict] = ACTIONS(2782), - [anon_sym__Atomic] = ACTIONS(2782), - [anon_sym_mutable] = ACTIONS(2782), - [anon_sym_constexpr] = ACTIONS(2782), - [anon_sym_constinit] = ACTIONS(2782), - [anon_sym_consteval] = ACTIONS(2782), - [anon_sym_signed] = ACTIONS(2782), - [anon_sym_unsigned] = ACTIONS(2782), - [anon_sym_long] = ACTIONS(2782), - [anon_sym_short] = ACTIONS(2782), - [sym_primitive_type] = ACTIONS(2782), - [anon_sym_enum] = ACTIONS(2782), - [anon_sym_class] = ACTIONS(2782), - [anon_sym_struct] = ACTIONS(2782), - [anon_sym_union] = ACTIONS(2782), - [anon_sym_if] = ACTIONS(2782), - [anon_sym_switch] = ACTIONS(2782), - [anon_sym_case] = ACTIONS(2782), - [anon_sym_default] = ACTIONS(2782), - [anon_sym_while] = ACTIONS(2782), - [anon_sym_do] = ACTIONS(2782), - [anon_sym_for] = ACTIONS(2782), - [anon_sym_return] = ACTIONS(2782), - [anon_sym_break] = ACTIONS(2782), - [anon_sym_continue] = ACTIONS(2782), - [anon_sym_goto] = ACTIONS(2782), - [anon_sym_not] = ACTIONS(2782), - [anon_sym_compl] = ACTIONS(2782), - [anon_sym_DASH_DASH] = ACTIONS(2784), - [anon_sym_PLUS_PLUS] = ACTIONS(2784), - [anon_sym_sizeof] = ACTIONS(2782), - [sym_number_literal] = ACTIONS(2784), - [anon_sym_L_SQUOTE] = ACTIONS(2784), - [anon_sym_u_SQUOTE] = ACTIONS(2784), - [anon_sym_U_SQUOTE] = ACTIONS(2784), - [anon_sym_u8_SQUOTE] = ACTIONS(2784), - [anon_sym_SQUOTE] = ACTIONS(2784), - [anon_sym_L_DQUOTE] = ACTIONS(2784), - [anon_sym_u_DQUOTE] = ACTIONS(2784), - [anon_sym_U_DQUOTE] = ACTIONS(2784), - [anon_sym_u8_DQUOTE] = ACTIONS(2784), - [anon_sym_DQUOTE] = ACTIONS(2784), - [sym_true] = ACTIONS(2782), - [sym_false] = ACTIONS(2782), - [sym_null] = ACTIONS(2782), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2782), - [anon_sym_decltype] = ACTIONS(2782), - [anon_sym_virtual] = ACTIONS(2782), - [anon_sym_explicit] = ACTIONS(2782), - [anon_sym_typename] = ACTIONS(2782), - [anon_sym_template] = ACTIONS(2782), - [anon_sym_operator] = ACTIONS(2782), - [anon_sym_try] = ACTIONS(2782), - [anon_sym_delete] = ACTIONS(2782), - [anon_sym_throw] = ACTIONS(2782), - [anon_sym_namespace] = ACTIONS(2782), - [anon_sym_using] = ACTIONS(2782), - [anon_sym_static_assert] = ACTIONS(2782), - [anon_sym_concept] = ACTIONS(2782), - [anon_sym_co_return] = ACTIONS(2782), - [anon_sym_co_yield] = ACTIONS(2782), - [anon_sym_R_DQUOTE] = ACTIONS(2784), - [anon_sym_LR_DQUOTE] = ACTIONS(2784), - [anon_sym_uR_DQUOTE] = ACTIONS(2784), - [anon_sym_UR_DQUOTE] = ACTIONS(2784), - [anon_sym_u8R_DQUOTE] = ACTIONS(2784), - [anon_sym_co_await] = ACTIONS(2782), - [anon_sym_new] = ACTIONS(2782), - [anon_sym_requires] = ACTIONS(2782), - [sym_this] = ACTIONS(2782), - [sym_nullptr] = ACTIONS(2782), + [sym_identifier] = ACTIONS(3160), + [aux_sym_preproc_include_token1] = ACTIONS(3160), + [aux_sym_preproc_def_token1] = ACTIONS(3160), + [aux_sym_preproc_if_token1] = ACTIONS(3160), + [aux_sym_preproc_if_token2] = ACTIONS(3160), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3160), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3160), + [aux_sym_preproc_else_token1] = ACTIONS(3160), + [aux_sym_preproc_elif_token1] = ACTIONS(3160), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3160), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3160), + [sym_preproc_directive] = ACTIONS(3160), + [anon_sym_LPAREN2] = ACTIONS(3162), + [anon_sym_BANG] = ACTIONS(3162), + [anon_sym_TILDE] = ACTIONS(3162), + [anon_sym_DASH] = ACTIONS(3160), + [anon_sym_PLUS] = ACTIONS(3160), + [anon_sym_STAR] = ACTIONS(3162), + [anon_sym_AMP_AMP] = ACTIONS(3162), + [anon_sym_AMP] = ACTIONS(3160), + [anon_sym_SEMI] = ACTIONS(3162), + [anon_sym_typedef] = ACTIONS(3160), + [anon_sym_extern] = ACTIONS(3160), + [anon_sym___attribute__] = ACTIONS(3160), + [anon_sym_COLON_COLON] = ACTIONS(3162), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3162), + [anon_sym___declspec] = ACTIONS(3160), + [anon_sym___based] = ACTIONS(3160), + [anon_sym___cdecl] = ACTIONS(3160), + [anon_sym___clrcall] = ACTIONS(3160), + [anon_sym___stdcall] = ACTIONS(3160), + [anon_sym___fastcall] = ACTIONS(3160), + [anon_sym___thiscall] = ACTIONS(3160), + [anon_sym___vectorcall] = ACTIONS(3160), + [anon_sym_LBRACE] = ACTIONS(3162), + [anon_sym_LBRACK] = ACTIONS(3160), + [anon_sym_static] = ACTIONS(3160), + [anon_sym_register] = ACTIONS(3160), + [anon_sym_inline] = ACTIONS(3160), + [anon_sym_thread_local] = ACTIONS(3160), + [anon_sym_const] = ACTIONS(3160), + [anon_sym_constexpr] = ACTIONS(3160), + [anon_sym_volatile] = ACTIONS(3160), + [anon_sym_restrict] = ACTIONS(3160), + [anon_sym___restrict__] = ACTIONS(3160), + [anon_sym__Atomic] = ACTIONS(3160), + [anon_sym__Noreturn] = ACTIONS(3160), + [anon_sym_noreturn] = ACTIONS(3160), + [anon_sym_mutable] = ACTIONS(3160), + [anon_sym_constinit] = ACTIONS(3160), + [anon_sym_consteval] = ACTIONS(3160), + [anon_sym_signed] = ACTIONS(3160), + [anon_sym_unsigned] = ACTIONS(3160), + [anon_sym_long] = ACTIONS(3160), + [anon_sym_short] = ACTIONS(3160), + [sym_primitive_type] = ACTIONS(3160), + [anon_sym_enum] = ACTIONS(3160), + [anon_sym_class] = ACTIONS(3160), + [anon_sym_struct] = ACTIONS(3160), + [anon_sym_union] = ACTIONS(3160), + [anon_sym_if] = ACTIONS(3160), + [anon_sym_switch] = ACTIONS(3160), + [anon_sym_case] = ACTIONS(3160), + [anon_sym_default] = ACTIONS(3160), + [anon_sym_while] = ACTIONS(3160), + [anon_sym_do] = ACTIONS(3160), + [anon_sym_for] = ACTIONS(3160), + [anon_sym_return] = ACTIONS(3160), + [anon_sym_break] = ACTIONS(3160), + [anon_sym_continue] = ACTIONS(3160), + [anon_sym_goto] = ACTIONS(3160), + [anon_sym_not] = ACTIONS(3160), + [anon_sym_compl] = ACTIONS(3160), + [anon_sym_DASH_DASH] = ACTIONS(3162), + [anon_sym_PLUS_PLUS] = ACTIONS(3162), + [anon_sym_sizeof] = ACTIONS(3160), + [anon_sym_offsetof] = ACTIONS(3160), + [anon_sym__Generic] = ACTIONS(3160), + [anon_sym_asm] = ACTIONS(3160), + [anon_sym___asm__] = ACTIONS(3160), + [sym_number_literal] = ACTIONS(3162), + [anon_sym_L_SQUOTE] = ACTIONS(3162), + [anon_sym_u_SQUOTE] = ACTIONS(3162), + [anon_sym_U_SQUOTE] = ACTIONS(3162), + [anon_sym_u8_SQUOTE] = ACTIONS(3162), + [anon_sym_SQUOTE] = ACTIONS(3162), + [anon_sym_L_DQUOTE] = ACTIONS(3162), + [anon_sym_u_DQUOTE] = ACTIONS(3162), + [anon_sym_U_DQUOTE] = ACTIONS(3162), + [anon_sym_u8_DQUOTE] = ACTIONS(3162), + [anon_sym_DQUOTE] = ACTIONS(3162), + [sym_true] = ACTIONS(3160), + [sym_false] = ACTIONS(3160), + [anon_sym_NULL] = ACTIONS(3160), + [anon_sym_nullptr] = ACTIONS(3160), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3160), + [anon_sym_decltype] = ACTIONS(3160), + [anon_sym_virtual] = ACTIONS(3160), + [anon_sym_explicit] = ACTIONS(3160), + [anon_sym_typename] = ACTIONS(3160), + [anon_sym_template] = ACTIONS(3160), + [anon_sym_operator] = ACTIONS(3160), + [anon_sym_try] = ACTIONS(3160), + [anon_sym_delete] = ACTIONS(3160), + [anon_sym_throw] = ACTIONS(3160), + [anon_sym_namespace] = ACTIONS(3160), + [anon_sym_using] = ACTIONS(3160), + [anon_sym_static_assert] = ACTIONS(3160), + [anon_sym_concept] = ACTIONS(3160), + [anon_sym_co_return] = ACTIONS(3160), + [anon_sym_co_yield] = ACTIONS(3160), + [anon_sym_R_DQUOTE] = ACTIONS(3162), + [anon_sym_LR_DQUOTE] = ACTIONS(3162), + [anon_sym_uR_DQUOTE] = ACTIONS(3162), + [anon_sym_UR_DQUOTE] = ACTIONS(3162), + [anon_sym_u8R_DQUOTE] = ACTIONS(3162), + [anon_sym_co_await] = ACTIONS(3160), + [anon_sym_new] = ACTIONS(3160), + [anon_sym_requires] = ACTIONS(3160), + [sym_this] = ACTIONS(3160), }, [522] = { - [sym_identifier] = ACTIONS(2786), - [aux_sym_preproc_include_token1] = ACTIONS(2786), - [aux_sym_preproc_def_token1] = ACTIONS(2786), - [aux_sym_preproc_if_token1] = ACTIONS(2786), - [aux_sym_preproc_if_token2] = ACTIONS(2786), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2786), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2786), - [aux_sym_preproc_else_token1] = ACTIONS(2786), - [aux_sym_preproc_elif_token1] = ACTIONS(2786), - [sym_preproc_directive] = ACTIONS(2786), - [anon_sym_LPAREN2] = ACTIONS(2788), - [anon_sym_BANG] = ACTIONS(2788), - [anon_sym_TILDE] = ACTIONS(2788), - [anon_sym_DASH] = ACTIONS(2786), - [anon_sym_PLUS] = ACTIONS(2786), - [anon_sym_STAR] = ACTIONS(2788), - [anon_sym_AMP_AMP] = ACTIONS(2788), - [anon_sym_AMP] = ACTIONS(2786), - [anon_sym_SEMI] = ACTIONS(2788), - [anon_sym_typedef] = ACTIONS(2786), - [anon_sym_extern] = ACTIONS(2786), - [anon_sym___attribute__] = ACTIONS(2786), - [anon_sym_COLON_COLON] = ACTIONS(2788), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2788), - [anon_sym___declspec] = ACTIONS(2786), - [anon_sym___based] = ACTIONS(2786), - [anon_sym___cdecl] = ACTIONS(2786), - [anon_sym___clrcall] = ACTIONS(2786), - [anon_sym___stdcall] = ACTIONS(2786), - [anon_sym___fastcall] = ACTIONS(2786), - [anon_sym___thiscall] = ACTIONS(2786), - [anon_sym___vectorcall] = ACTIONS(2786), - [anon_sym_LBRACE] = ACTIONS(2788), - [anon_sym_LBRACK] = ACTIONS(2786), - [anon_sym_static] = ACTIONS(2786), - [anon_sym_register] = ACTIONS(2786), - [anon_sym_inline] = ACTIONS(2786), - [anon_sym_thread_local] = ACTIONS(2786), - [anon_sym_const] = ACTIONS(2786), - [anon_sym_volatile] = ACTIONS(2786), - [anon_sym_restrict] = ACTIONS(2786), - [anon_sym__Atomic] = ACTIONS(2786), - [anon_sym_mutable] = ACTIONS(2786), - [anon_sym_constexpr] = ACTIONS(2786), - [anon_sym_constinit] = ACTIONS(2786), - [anon_sym_consteval] = ACTIONS(2786), - [anon_sym_signed] = ACTIONS(2786), - [anon_sym_unsigned] = ACTIONS(2786), - [anon_sym_long] = ACTIONS(2786), - [anon_sym_short] = ACTIONS(2786), - [sym_primitive_type] = ACTIONS(2786), - [anon_sym_enum] = ACTIONS(2786), - [anon_sym_class] = ACTIONS(2786), - [anon_sym_struct] = ACTIONS(2786), - [anon_sym_union] = ACTIONS(2786), - [anon_sym_if] = ACTIONS(2786), - [anon_sym_switch] = ACTIONS(2786), - [anon_sym_case] = ACTIONS(2786), - [anon_sym_default] = ACTIONS(2786), - [anon_sym_while] = ACTIONS(2786), - [anon_sym_do] = ACTIONS(2786), - [anon_sym_for] = ACTIONS(2786), - [anon_sym_return] = ACTIONS(2786), - [anon_sym_break] = ACTIONS(2786), - [anon_sym_continue] = ACTIONS(2786), - [anon_sym_goto] = ACTIONS(2786), - [anon_sym_not] = ACTIONS(2786), - [anon_sym_compl] = ACTIONS(2786), - [anon_sym_DASH_DASH] = ACTIONS(2788), - [anon_sym_PLUS_PLUS] = ACTIONS(2788), - [anon_sym_sizeof] = ACTIONS(2786), - [sym_number_literal] = ACTIONS(2788), - [anon_sym_L_SQUOTE] = ACTIONS(2788), - [anon_sym_u_SQUOTE] = ACTIONS(2788), - [anon_sym_U_SQUOTE] = ACTIONS(2788), - [anon_sym_u8_SQUOTE] = ACTIONS(2788), - [anon_sym_SQUOTE] = ACTIONS(2788), - [anon_sym_L_DQUOTE] = ACTIONS(2788), - [anon_sym_u_DQUOTE] = ACTIONS(2788), - [anon_sym_U_DQUOTE] = ACTIONS(2788), - [anon_sym_u8_DQUOTE] = ACTIONS(2788), - [anon_sym_DQUOTE] = ACTIONS(2788), - [sym_true] = ACTIONS(2786), - [sym_false] = ACTIONS(2786), - [sym_null] = ACTIONS(2786), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2786), - [anon_sym_decltype] = ACTIONS(2786), - [anon_sym_virtual] = ACTIONS(2786), - [anon_sym_explicit] = ACTIONS(2786), - [anon_sym_typename] = ACTIONS(2786), - [anon_sym_template] = ACTIONS(2786), - [anon_sym_operator] = ACTIONS(2786), - [anon_sym_try] = ACTIONS(2786), - [anon_sym_delete] = ACTIONS(2786), - [anon_sym_throw] = ACTIONS(2786), - [anon_sym_namespace] = ACTIONS(2786), - [anon_sym_using] = ACTIONS(2786), - [anon_sym_static_assert] = ACTIONS(2786), - [anon_sym_concept] = ACTIONS(2786), - [anon_sym_co_return] = ACTIONS(2786), - [anon_sym_co_yield] = ACTIONS(2786), - [anon_sym_R_DQUOTE] = ACTIONS(2788), - [anon_sym_LR_DQUOTE] = ACTIONS(2788), - [anon_sym_uR_DQUOTE] = ACTIONS(2788), - [anon_sym_UR_DQUOTE] = ACTIONS(2788), - [anon_sym_u8R_DQUOTE] = ACTIONS(2788), - [anon_sym_co_await] = ACTIONS(2786), - [anon_sym_new] = ACTIONS(2786), - [anon_sym_requires] = ACTIONS(2786), - [sym_this] = ACTIONS(2786), - [sym_nullptr] = ACTIONS(2786), - }, - [523] = { - [sym_identifier] = ACTIONS(2790), - [aux_sym_preproc_include_token1] = ACTIONS(2790), - [aux_sym_preproc_def_token1] = ACTIONS(2790), - [aux_sym_preproc_if_token1] = ACTIONS(2790), - [aux_sym_preproc_if_token2] = ACTIONS(2790), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2790), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2790), - [aux_sym_preproc_else_token1] = ACTIONS(2790), - [aux_sym_preproc_elif_token1] = ACTIONS(2790), - [sym_preproc_directive] = ACTIONS(2790), - [anon_sym_LPAREN2] = ACTIONS(2792), - [anon_sym_BANG] = ACTIONS(2792), - [anon_sym_TILDE] = ACTIONS(2792), - [anon_sym_DASH] = ACTIONS(2790), - [anon_sym_PLUS] = ACTIONS(2790), - [anon_sym_STAR] = ACTIONS(2792), - [anon_sym_AMP_AMP] = ACTIONS(2792), - [anon_sym_AMP] = ACTIONS(2790), - [anon_sym_SEMI] = ACTIONS(2792), - [anon_sym_typedef] = ACTIONS(2790), - [anon_sym_extern] = ACTIONS(2790), - [anon_sym___attribute__] = ACTIONS(2790), - [anon_sym_COLON_COLON] = ACTIONS(2792), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2792), - [anon_sym___declspec] = ACTIONS(2790), - [anon_sym___based] = ACTIONS(2790), - [anon_sym___cdecl] = ACTIONS(2790), - [anon_sym___clrcall] = ACTIONS(2790), - [anon_sym___stdcall] = ACTIONS(2790), - [anon_sym___fastcall] = ACTIONS(2790), - [anon_sym___thiscall] = ACTIONS(2790), - [anon_sym___vectorcall] = ACTIONS(2790), - [anon_sym_LBRACE] = ACTIONS(2792), - [anon_sym_LBRACK] = ACTIONS(2790), - [anon_sym_static] = ACTIONS(2790), - [anon_sym_register] = ACTIONS(2790), - [anon_sym_inline] = ACTIONS(2790), - [anon_sym_thread_local] = ACTIONS(2790), - [anon_sym_const] = ACTIONS(2790), - [anon_sym_volatile] = ACTIONS(2790), - [anon_sym_restrict] = ACTIONS(2790), - [anon_sym__Atomic] = ACTIONS(2790), - [anon_sym_mutable] = ACTIONS(2790), - [anon_sym_constexpr] = ACTIONS(2790), - [anon_sym_constinit] = ACTIONS(2790), - [anon_sym_consteval] = ACTIONS(2790), - [anon_sym_signed] = ACTIONS(2790), - [anon_sym_unsigned] = ACTIONS(2790), - [anon_sym_long] = ACTIONS(2790), - [anon_sym_short] = ACTIONS(2790), - [sym_primitive_type] = ACTIONS(2790), - [anon_sym_enum] = ACTIONS(2790), - [anon_sym_class] = ACTIONS(2790), - [anon_sym_struct] = ACTIONS(2790), - [anon_sym_union] = ACTIONS(2790), - [anon_sym_if] = ACTIONS(2790), - [anon_sym_switch] = ACTIONS(2790), - [anon_sym_case] = ACTIONS(2790), - [anon_sym_default] = ACTIONS(2790), - [anon_sym_while] = ACTIONS(2790), - [anon_sym_do] = ACTIONS(2790), - [anon_sym_for] = ACTIONS(2790), - [anon_sym_return] = ACTIONS(2790), - [anon_sym_break] = ACTIONS(2790), - [anon_sym_continue] = ACTIONS(2790), - [anon_sym_goto] = ACTIONS(2790), - [anon_sym_not] = ACTIONS(2790), - [anon_sym_compl] = ACTIONS(2790), - [anon_sym_DASH_DASH] = ACTIONS(2792), - [anon_sym_PLUS_PLUS] = ACTIONS(2792), - [anon_sym_sizeof] = ACTIONS(2790), - [sym_number_literal] = ACTIONS(2792), - [anon_sym_L_SQUOTE] = ACTIONS(2792), - [anon_sym_u_SQUOTE] = ACTIONS(2792), - [anon_sym_U_SQUOTE] = ACTIONS(2792), - [anon_sym_u8_SQUOTE] = ACTIONS(2792), - [anon_sym_SQUOTE] = ACTIONS(2792), - [anon_sym_L_DQUOTE] = ACTIONS(2792), - [anon_sym_u_DQUOTE] = ACTIONS(2792), - [anon_sym_U_DQUOTE] = ACTIONS(2792), - [anon_sym_u8_DQUOTE] = ACTIONS(2792), - [anon_sym_DQUOTE] = ACTIONS(2792), - [sym_true] = ACTIONS(2790), - [sym_false] = ACTIONS(2790), - [sym_null] = ACTIONS(2790), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2790), - [anon_sym_decltype] = ACTIONS(2790), - [anon_sym_virtual] = ACTIONS(2790), - [anon_sym_explicit] = ACTIONS(2790), - [anon_sym_typename] = ACTIONS(2790), - [anon_sym_template] = ACTIONS(2790), - [anon_sym_operator] = ACTIONS(2790), - [anon_sym_try] = ACTIONS(2790), - [anon_sym_delete] = ACTIONS(2790), - [anon_sym_throw] = ACTIONS(2790), - [anon_sym_namespace] = ACTIONS(2790), - [anon_sym_using] = ACTIONS(2790), - [anon_sym_static_assert] = ACTIONS(2790), - [anon_sym_concept] = ACTIONS(2790), - [anon_sym_co_return] = ACTIONS(2790), - [anon_sym_co_yield] = ACTIONS(2790), - [anon_sym_R_DQUOTE] = ACTIONS(2792), - [anon_sym_LR_DQUOTE] = ACTIONS(2792), - [anon_sym_uR_DQUOTE] = ACTIONS(2792), - [anon_sym_UR_DQUOTE] = ACTIONS(2792), - [anon_sym_u8R_DQUOTE] = ACTIONS(2792), - [anon_sym_co_await] = ACTIONS(2790), - [anon_sym_new] = ACTIONS(2790), - [anon_sym_requires] = ACTIONS(2790), - [sym_this] = ACTIONS(2790), - [sym_nullptr] = ACTIONS(2790), - }, - [524] = { - [sym_identifier] = ACTIONS(2794), - [aux_sym_preproc_include_token1] = ACTIONS(2794), - [aux_sym_preproc_def_token1] = ACTIONS(2794), - [aux_sym_preproc_if_token1] = ACTIONS(2794), - [aux_sym_preproc_if_token2] = ACTIONS(2794), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2794), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2794), - [aux_sym_preproc_else_token1] = ACTIONS(2794), - [aux_sym_preproc_elif_token1] = ACTIONS(2794), - [sym_preproc_directive] = ACTIONS(2794), - [anon_sym_LPAREN2] = ACTIONS(2796), - [anon_sym_BANG] = ACTIONS(2796), - [anon_sym_TILDE] = ACTIONS(2796), - [anon_sym_DASH] = ACTIONS(2794), - [anon_sym_PLUS] = ACTIONS(2794), - [anon_sym_STAR] = ACTIONS(2796), - [anon_sym_AMP_AMP] = ACTIONS(2796), - [anon_sym_AMP] = ACTIONS(2794), - [anon_sym_SEMI] = ACTIONS(2796), - [anon_sym_typedef] = ACTIONS(2794), - [anon_sym_extern] = ACTIONS(2794), - [anon_sym___attribute__] = ACTIONS(2794), - [anon_sym_COLON_COLON] = ACTIONS(2796), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2796), - [anon_sym___declspec] = ACTIONS(2794), - [anon_sym___based] = ACTIONS(2794), - [anon_sym___cdecl] = ACTIONS(2794), - [anon_sym___clrcall] = ACTIONS(2794), - [anon_sym___stdcall] = ACTIONS(2794), - [anon_sym___fastcall] = ACTIONS(2794), - [anon_sym___thiscall] = ACTIONS(2794), - [anon_sym___vectorcall] = ACTIONS(2794), - [anon_sym_LBRACE] = ACTIONS(2796), - [anon_sym_LBRACK] = ACTIONS(2794), - [anon_sym_static] = ACTIONS(2794), - [anon_sym_register] = ACTIONS(2794), - [anon_sym_inline] = ACTIONS(2794), - [anon_sym_thread_local] = ACTIONS(2794), - [anon_sym_const] = ACTIONS(2794), - [anon_sym_volatile] = ACTIONS(2794), - [anon_sym_restrict] = ACTIONS(2794), - [anon_sym__Atomic] = ACTIONS(2794), - [anon_sym_mutable] = ACTIONS(2794), - [anon_sym_constexpr] = ACTIONS(2794), - [anon_sym_constinit] = ACTIONS(2794), - [anon_sym_consteval] = ACTIONS(2794), - [anon_sym_signed] = ACTIONS(2794), - [anon_sym_unsigned] = ACTIONS(2794), - [anon_sym_long] = ACTIONS(2794), - [anon_sym_short] = ACTIONS(2794), - [sym_primitive_type] = ACTIONS(2794), - [anon_sym_enum] = ACTIONS(2794), - [anon_sym_class] = ACTIONS(2794), - [anon_sym_struct] = ACTIONS(2794), - [anon_sym_union] = ACTIONS(2794), - [anon_sym_if] = ACTIONS(2794), - [anon_sym_switch] = ACTIONS(2794), - [anon_sym_case] = ACTIONS(2794), - [anon_sym_default] = ACTIONS(2794), - [anon_sym_while] = ACTIONS(2794), - [anon_sym_do] = ACTIONS(2794), - [anon_sym_for] = ACTIONS(2794), - [anon_sym_return] = ACTIONS(2794), - [anon_sym_break] = ACTIONS(2794), - [anon_sym_continue] = ACTIONS(2794), - [anon_sym_goto] = ACTIONS(2794), - [anon_sym_not] = ACTIONS(2794), - [anon_sym_compl] = ACTIONS(2794), - [anon_sym_DASH_DASH] = ACTIONS(2796), - [anon_sym_PLUS_PLUS] = ACTIONS(2796), - [anon_sym_sizeof] = ACTIONS(2794), - [sym_number_literal] = ACTIONS(2796), - [anon_sym_L_SQUOTE] = ACTIONS(2796), - [anon_sym_u_SQUOTE] = ACTIONS(2796), - [anon_sym_U_SQUOTE] = ACTIONS(2796), - [anon_sym_u8_SQUOTE] = ACTIONS(2796), - [anon_sym_SQUOTE] = ACTIONS(2796), - [anon_sym_L_DQUOTE] = ACTIONS(2796), - [anon_sym_u_DQUOTE] = ACTIONS(2796), - [anon_sym_U_DQUOTE] = ACTIONS(2796), - [anon_sym_u8_DQUOTE] = ACTIONS(2796), - [anon_sym_DQUOTE] = ACTIONS(2796), - [sym_true] = ACTIONS(2794), - [sym_false] = ACTIONS(2794), - [sym_null] = ACTIONS(2794), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2794), - [anon_sym_decltype] = ACTIONS(2794), - [anon_sym_virtual] = ACTIONS(2794), - [anon_sym_explicit] = ACTIONS(2794), - [anon_sym_typename] = ACTIONS(2794), - [anon_sym_template] = ACTIONS(2794), - [anon_sym_operator] = ACTIONS(2794), - [anon_sym_try] = ACTIONS(2794), - [anon_sym_delete] = ACTIONS(2794), - [anon_sym_throw] = ACTIONS(2794), - [anon_sym_namespace] = ACTIONS(2794), - [anon_sym_using] = ACTIONS(2794), - [anon_sym_static_assert] = ACTIONS(2794), - [anon_sym_concept] = ACTIONS(2794), - [anon_sym_co_return] = ACTIONS(2794), - [anon_sym_co_yield] = ACTIONS(2794), - [anon_sym_R_DQUOTE] = ACTIONS(2796), - [anon_sym_LR_DQUOTE] = ACTIONS(2796), - [anon_sym_uR_DQUOTE] = ACTIONS(2796), - [anon_sym_UR_DQUOTE] = ACTIONS(2796), - [anon_sym_u8R_DQUOTE] = ACTIONS(2796), - [anon_sym_co_await] = ACTIONS(2794), - [anon_sym_new] = ACTIONS(2794), - [anon_sym_requires] = ACTIONS(2794), - [sym_this] = ACTIONS(2794), - [sym_nullptr] = ACTIONS(2794), - }, - [525] = { - [sym_identifier] = ACTIONS(2798), - [aux_sym_preproc_include_token1] = ACTIONS(2798), - [aux_sym_preproc_def_token1] = ACTIONS(2798), - [aux_sym_preproc_if_token1] = ACTIONS(2798), - [aux_sym_preproc_if_token2] = ACTIONS(2798), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2798), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2798), - [aux_sym_preproc_else_token1] = ACTIONS(2798), - [aux_sym_preproc_elif_token1] = ACTIONS(2798), - [sym_preproc_directive] = ACTIONS(2798), - [anon_sym_LPAREN2] = ACTIONS(2800), - [anon_sym_BANG] = ACTIONS(2800), - [anon_sym_TILDE] = ACTIONS(2800), - [anon_sym_DASH] = ACTIONS(2798), - [anon_sym_PLUS] = ACTIONS(2798), - [anon_sym_STAR] = ACTIONS(2800), - [anon_sym_AMP_AMP] = ACTIONS(2800), - [anon_sym_AMP] = ACTIONS(2798), - [anon_sym_SEMI] = ACTIONS(2800), - [anon_sym_typedef] = ACTIONS(2798), - [anon_sym_extern] = ACTIONS(2798), - [anon_sym___attribute__] = ACTIONS(2798), - [anon_sym_COLON_COLON] = ACTIONS(2800), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2800), - [anon_sym___declspec] = ACTIONS(2798), - [anon_sym___based] = ACTIONS(2798), - [anon_sym___cdecl] = ACTIONS(2798), - [anon_sym___clrcall] = ACTIONS(2798), - [anon_sym___stdcall] = ACTIONS(2798), - [anon_sym___fastcall] = ACTIONS(2798), - [anon_sym___thiscall] = ACTIONS(2798), - [anon_sym___vectorcall] = ACTIONS(2798), - [anon_sym_LBRACE] = ACTIONS(2800), - [anon_sym_LBRACK] = ACTIONS(2798), - [anon_sym_static] = ACTIONS(2798), - [anon_sym_register] = ACTIONS(2798), - [anon_sym_inline] = ACTIONS(2798), - [anon_sym_thread_local] = ACTIONS(2798), - [anon_sym_const] = ACTIONS(2798), - [anon_sym_volatile] = ACTIONS(2798), - [anon_sym_restrict] = ACTIONS(2798), - [anon_sym__Atomic] = ACTIONS(2798), - [anon_sym_mutable] = ACTIONS(2798), - [anon_sym_constexpr] = ACTIONS(2798), - [anon_sym_constinit] = ACTIONS(2798), - [anon_sym_consteval] = ACTIONS(2798), - [anon_sym_signed] = ACTIONS(2798), - [anon_sym_unsigned] = ACTIONS(2798), - [anon_sym_long] = ACTIONS(2798), - [anon_sym_short] = ACTIONS(2798), - [sym_primitive_type] = ACTIONS(2798), - [anon_sym_enum] = ACTIONS(2798), - [anon_sym_class] = ACTIONS(2798), - [anon_sym_struct] = ACTIONS(2798), - [anon_sym_union] = ACTIONS(2798), - [anon_sym_if] = ACTIONS(2798), - [anon_sym_switch] = ACTIONS(2798), - [anon_sym_case] = ACTIONS(2798), - [anon_sym_default] = ACTIONS(2798), - [anon_sym_while] = ACTIONS(2798), - [anon_sym_do] = ACTIONS(2798), - [anon_sym_for] = ACTIONS(2798), - [anon_sym_return] = ACTIONS(2798), - [anon_sym_break] = ACTIONS(2798), - [anon_sym_continue] = ACTIONS(2798), - [anon_sym_goto] = ACTIONS(2798), - [anon_sym_not] = ACTIONS(2798), - [anon_sym_compl] = ACTIONS(2798), - [anon_sym_DASH_DASH] = ACTIONS(2800), - [anon_sym_PLUS_PLUS] = ACTIONS(2800), - [anon_sym_sizeof] = ACTIONS(2798), - [sym_number_literal] = ACTIONS(2800), - [anon_sym_L_SQUOTE] = ACTIONS(2800), - [anon_sym_u_SQUOTE] = ACTIONS(2800), - [anon_sym_U_SQUOTE] = ACTIONS(2800), - [anon_sym_u8_SQUOTE] = ACTIONS(2800), - [anon_sym_SQUOTE] = ACTIONS(2800), - [anon_sym_L_DQUOTE] = ACTIONS(2800), - [anon_sym_u_DQUOTE] = ACTIONS(2800), - [anon_sym_U_DQUOTE] = ACTIONS(2800), - [anon_sym_u8_DQUOTE] = ACTIONS(2800), - [anon_sym_DQUOTE] = ACTIONS(2800), - [sym_true] = ACTIONS(2798), - [sym_false] = ACTIONS(2798), - [sym_null] = ACTIONS(2798), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2798), - [anon_sym_decltype] = ACTIONS(2798), - [anon_sym_virtual] = ACTIONS(2798), - [anon_sym_explicit] = ACTIONS(2798), - [anon_sym_typename] = ACTIONS(2798), - [anon_sym_template] = ACTIONS(2798), - [anon_sym_operator] = ACTIONS(2798), - [anon_sym_try] = ACTIONS(2798), - [anon_sym_delete] = ACTIONS(2798), - [anon_sym_throw] = ACTIONS(2798), - [anon_sym_namespace] = ACTIONS(2798), - [anon_sym_using] = ACTIONS(2798), - [anon_sym_static_assert] = ACTIONS(2798), - [anon_sym_concept] = ACTIONS(2798), - [anon_sym_co_return] = ACTIONS(2798), - [anon_sym_co_yield] = ACTIONS(2798), - [anon_sym_R_DQUOTE] = ACTIONS(2800), - [anon_sym_LR_DQUOTE] = ACTIONS(2800), - [anon_sym_uR_DQUOTE] = ACTIONS(2800), - [anon_sym_UR_DQUOTE] = ACTIONS(2800), - [anon_sym_u8R_DQUOTE] = ACTIONS(2800), - [anon_sym_co_await] = ACTIONS(2798), - [anon_sym_new] = ACTIONS(2798), - [anon_sym_requires] = ACTIONS(2798), - [sym_this] = ACTIONS(2798), - [sym_nullptr] = ACTIONS(2798), - }, - [526] = { - [ts_builtin_sym_end] = ACTIONS(2406), - [sym_identifier] = ACTIONS(2404), - [aux_sym_preproc_include_token1] = ACTIONS(2404), - [aux_sym_preproc_def_token1] = ACTIONS(2404), - [aux_sym_preproc_if_token1] = ACTIONS(2404), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2404), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2404), - [sym_preproc_directive] = ACTIONS(2404), - [anon_sym_LPAREN2] = ACTIONS(2406), - [anon_sym_BANG] = ACTIONS(2406), - [anon_sym_TILDE] = ACTIONS(2406), - [anon_sym_DASH] = ACTIONS(2404), - [anon_sym_PLUS] = ACTIONS(2404), - [anon_sym_STAR] = ACTIONS(2406), - [anon_sym_AMP_AMP] = ACTIONS(2406), - [anon_sym_AMP] = ACTIONS(2404), - [anon_sym_SEMI] = ACTIONS(2406), - [anon_sym_typedef] = ACTIONS(2404), - [anon_sym_extern] = ACTIONS(2404), - [anon_sym___attribute__] = ACTIONS(2404), - [anon_sym_COLON_COLON] = ACTIONS(2406), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2406), - [anon_sym___declspec] = ACTIONS(2404), - [anon_sym___based] = ACTIONS(2404), - [anon_sym___cdecl] = ACTIONS(2404), - [anon_sym___clrcall] = ACTIONS(2404), - [anon_sym___stdcall] = ACTIONS(2404), - [anon_sym___fastcall] = ACTIONS(2404), - [anon_sym___thiscall] = ACTIONS(2404), - [anon_sym___vectorcall] = ACTIONS(2404), - [anon_sym_LBRACE] = ACTIONS(2406), - [anon_sym_LBRACK] = ACTIONS(2404), - [anon_sym_static] = ACTIONS(2404), - [anon_sym_register] = ACTIONS(2404), - [anon_sym_inline] = ACTIONS(2404), - [anon_sym_thread_local] = ACTIONS(2404), - [anon_sym_const] = ACTIONS(2404), - [anon_sym_volatile] = ACTIONS(2404), - [anon_sym_restrict] = ACTIONS(2404), - [anon_sym__Atomic] = ACTIONS(2404), - [anon_sym_mutable] = ACTIONS(2404), - [anon_sym_constexpr] = ACTIONS(2404), - [anon_sym_constinit] = ACTIONS(2404), - [anon_sym_consteval] = ACTIONS(2404), - [anon_sym_signed] = ACTIONS(2404), - [anon_sym_unsigned] = ACTIONS(2404), - [anon_sym_long] = ACTIONS(2404), - [anon_sym_short] = ACTIONS(2404), - [sym_primitive_type] = ACTIONS(2404), - [anon_sym_enum] = ACTIONS(2404), - [anon_sym_class] = ACTIONS(2404), - [anon_sym_struct] = ACTIONS(2404), - [anon_sym_union] = ACTIONS(2404), - [anon_sym_if] = ACTIONS(2404), - [anon_sym_else] = ACTIONS(2404), - [anon_sym_switch] = ACTIONS(2404), - [anon_sym_case] = ACTIONS(2404), - [anon_sym_default] = ACTIONS(2404), - [anon_sym_while] = ACTIONS(2404), - [anon_sym_do] = ACTIONS(2404), - [anon_sym_for] = ACTIONS(2404), - [anon_sym_return] = ACTIONS(2404), - [anon_sym_break] = ACTIONS(2404), - [anon_sym_continue] = ACTIONS(2404), - [anon_sym_goto] = ACTIONS(2404), - [anon_sym_not] = ACTIONS(2404), - [anon_sym_compl] = ACTIONS(2404), - [anon_sym_DASH_DASH] = ACTIONS(2406), - [anon_sym_PLUS_PLUS] = ACTIONS(2406), - [anon_sym_sizeof] = ACTIONS(2404), - [sym_number_literal] = ACTIONS(2406), - [anon_sym_L_SQUOTE] = ACTIONS(2406), - [anon_sym_u_SQUOTE] = ACTIONS(2406), - [anon_sym_U_SQUOTE] = ACTIONS(2406), - [anon_sym_u8_SQUOTE] = ACTIONS(2406), - [anon_sym_SQUOTE] = ACTIONS(2406), - [anon_sym_L_DQUOTE] = ACTIONS(2406), - [anon_sym_u_DQUOTE] = ACTIONS(2406), - [anon_sym_U_DQUOTE] = ACTIONS(2406), - [anon_sym_u8_DQUOTE] = ACTIONS(2406), - [anon_sym_DQUOTE] = ACTIONS(2406), - [sym_true] = ACTIONS(2404), - [sym_false] = ACTIONS(2404), - [sym_null] = ACTIONS(2404), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2404), - [anon_sym_decltype] = ACTIONS(2404), - [anon_sym_virtual] = ACTIONS(2404), - [anon_sym_explicit] = ACTIONS(2404), - [anon_sym_typename] = ACTIONS(2404), - [anon_sym_template] = ACTIONS(2404), - [anon_sym_operator] = ACTIONS(2404), - [anon_sym_try] = ACTIONS(2404), - [anon_sym_delete] = ACTIONS(2404), - [anon_sym_throw] = ACTIONS(2404), - [anon_sym_namespace] = ACTIONS(2404), - [anon_sym_using] = ACTIONS(2404), - [anon_sym_static_assert] = ACTIONS(2404), - [anon_sym_concept] = ACTIONS(2404), - [anon_sym_co_return] = ACTIONS(2404), - [anon_sym_co_yield] = ACTIONS(2404), - [anon_sym_catch] = ACTIONS(2404), - [anon_sym_R_DQUOTE] = ACTIONS(2406), - [anon_sym_LR_DQUOTE] = ACTIONS(2406), - [anon_sym_uR_DQUOTE] = ACTIONS(2406), - [anon_sym_UR_DQUOTE] = ACTIONS(2406), - [anon_sym_u8R_DQUOTE] = ACTIONS(2406), - [anon_sym_co_await] = ACTIONS(2404), - [anon_sym_new] = ACTIONS(2404), - [anon_sym_requires] = ACTIONS(2404), - [sym_this] = ACTIONS(2404), - [sym_nullptr] = ACTIONS(2404), - }, - [527] = { - [sym_identifier] = ACTIONS(2802), - [aux_sym_preproc_include_token1] = ACTIONS(2802), - [aux_sym_preproc_def_token1] = ACTIONS(2802), - [aux_sym_preproc_if_token1] = ACTIONS(2802), - [aux_sym_preproc_if_token2] = ACTIONS(2802), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2802), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2802), - [aux_sym_preproc_else_token1] = ACTIONS(2802), - [aux_sym_preproc_elif_token1] = ACTIONS(2802), - [sym_preproc_directive] = ACTIONS(2802), - [anon_sym_LPAREN2] = ACTIONS(2804), - [anon_sym_BANG] = ACTIONS(2804), - [anon_sym_TILDE] = ACTIONS(2804), - [anon_sym_DASH] = ACTIONS(2802), - [anon_sym_PLUS] = ACTIONS(2802), - [anon_sym_STAR] = ACTIONS(2804), - [anon_sym_AMP_AMP] = ACTIONS(2804), - [anon_sym_AMP] = ACTIONS(2802), - [anon_sym_SEMI] = ACTIONS(2804), - [anon_sym_typedef] = ACTIONS(2802), - [anon_sym_extern] = ACTIONS(2802), - [anon_sym___attribute__] = ACTIONS(2802), - [anon_sym_COLON_COLON] = ACTIONS(2804), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2804), - [anon_sym___declspec] = ACTIONS(2802), - [anon_sym___based] = ACTIONS(2802), - [anon_sym___cdecl] = ACTIONS(2802), - [anon_sym___clrcall] = ACTIONS(2802), - [anon_sym___stdcall] = ACTIONS(2802), - [anon_sym___fastcall] = ACTIONS(2802), - [anon_sym___thiscall] = ACTIONS(2802), - [anon_sym___vectorcall] = ACTIONS(2802), - [anon_sym_LBRACE] = ACTIONS(2804), - [anon_sym_LBRACK] = ACTIONS(2802), - [anon_sym_static] = ACTIONS(2802), - [anon_sym_register] = ACTIONS(2802), - [anon_sym_inline] = ACTIONS(2802), - [anon_sym_thread_local] = ACTIONS(2802), - [anon_sym_const] = ACTIONS(2802), - [anon_sym_volatile] = ACTIONS(2802), - [anon_sym_restrict] = ACTIONS(2802), - [anon_sym__Atomic] = ACTIONS(2802), - [anon_sym_mutable] = ACTIONS(2802), - [anon_sym_constexpr] = ACTIONS(2802), - [anon_sym_constinit] = ACTIONS(2802), - [anon_sym_consteval] = ACTIONS(2802), - [anon_sym_signed] = ACTIONS(2802), - [anon_sym_unsigned] = ACTIONS(2802), - [anon_sym_long] = ACTIONS(2802), - [anon_sym_short] = ACTIONS(2802), - [sym_primitive_type] = ACTIONS(2802), - [anon_sym_enum] = ACTIONS(2802), - [anon_sym_class] = ACTIONS(2802), - [anon_sym_struct] = ACTIONS(2802), - [anon_sym_union] = ACTIONS(2802), - [anon_sym_if] = ACTIONS(2802), - [anon_sym_switch] = ACTIONS(2802), - [anon_sym_case] = ACTIONS(2802), - [anon_sym_default] = ACTIONS(2802), - [anon_sym_while] = ACTIONS(2802), - [anon_sym_do] = ACTIONS(2802), - [anon_sym_for] = ACTIONS(2802), - [anon_sym_return] = ACTIONS(2802), - [anon_sym_break] = ACTIONS(2802), - [anon_sym_continue] = ACTIONS(2802), - [anon_sym_goto] = ACTIONS(2802), - [anon_sym_not] = ACTIONS(2802), - [anon_sym_compl] = ACTIONS(2802), - [anon_sym_DASH_DASH] = ACTIONS(2804), - [anon_sym_PLUS_PLUS] = ACTIONS(2804), - [anon_sym_sizeof] = ACTIONS(2802), - [sym_number_literal] = ACTIONS(2804), - [anon_sym_L_SQUOTE] = ACTIONS(2804), - [anon_sym_u_SQUOTE] = ACTIONS(2804), - [anon_sym_U_SQUOTE] = ACTIONS(2804), - [anon_sym_u8_SQUOTE] = ACTIONS(2804), - [anon_sym_SQUOTE] = ACTIONS(2804), - [anon_sym_L_DQUOTE] = ACTIONS(2804), - [anon_sym_u_DQUOTE] = ACTIONS(2804), - [anon_sym_U_DQUOTE] = ACTIONS(2804), - [anon_sym_u8_DQUOTE] = ACTIONS(2804), - [anon_sym_DQUOTE] = ACTIONS(2804), - [sym_true] = ACTIONS(2802), - [sym_false] = ACTIONS(2802), - [sym_null] = ACTIONS(2802), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2802), - [anon_sym_decltype] = ACTIONS(2802), - [anon_sym_virtual] = ACTIONS(2802), - [anon_sym_explicit] = ACTIONS(2802), - [anon_sym_typename] = ACTIONS(2802), - [anon_sym_template] = ACTIONS(2802), - [anon_sym_operator] = ACTIONS(2802), - [anon_sym_try] = ACTIONS(2802), - [anon_sym_delete] = ACTIONS(2802), - [anon_sym_throw] = ACTIONS(2802), - [anon_sym_namespace] = ACTIONS(2802), - [anon_sym_using] = ACTIONS(2802), - [anon_sym_static_assert] = ACTIONS(2802), - [anon_sym_concept] = ACTIONS(2802), - [anon_sym_co_return] = ACTIONS(2802), - [anon_sym_co_yield] = ACTIONS(2802), - [anon_sym_R_DQUOTE] = ACTIONS(2804), - [anon_sym_LR_DQUOTE] = ACTIONS(2804), - [anon_sym_uR_DQUOTE] = ACTIONS(2804), - [anon_sym_UR_DQUOTE] = ACTIONS(2804), - [anon_sym_u8R_DQUOTE] = ACTIONS(2804), - [anon_sym_co_await] = ACTIONS(2802), - [anon_sym_new] = ACTIONS(2802), - [anon_sym_requires] = ACTIONS(2802), - [sym_this] = ACTIONS(2802), - [sym_nullptr] = ACTIONS(2802), - }, - [528] = { - [sym_identifier] = ACTIONS(2806), - [aux_sym_preproc_include_token1] = ACTIONS(2806), - [aux_sym_preproc_def_token1] = ACTIONS(2806), - [aux_sym_preproc_if_token1] = ACTIONS(2806), - [aux_sym_preproc_if_token2] = ACTIONS(2806), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2806), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2806), - [aux_sym_preproc_else_token1] = ACTIONS(2806), - [aux_sym_preproc_elif_token1] = ACTIONS(2806), - [sym_preproc_directive] = ACTIONS(2806), - [anon_sym_LPAREN2] = ACTIONS(2808), - [anon_sym_BANG] = ACTIONS(2808), - [anon_sym_TILDE] = ACTIONS(2808), - [anon_sym_DASH] = ACTIONS(2806), - [anon_sym_PLUS] = ACTIONS(2806), - [anon_sym_STAR] = ACTIONS(2808), - [anon_sym_AMP_AMP] = ACTIONS(2808), - [anon_sym_AMP] = ACTIONS(2806), - [anon_sym_SEMI] = ACTIONS(2808), - [anon_sym_typedef] = ACTIONS(2806), - [anon_sym_extern] = ACTIONS(2806), - [anon_sym___attribute__] = ACTIONS(2806), - [anon_sym_COLON_COLON] = ACTIONS(2808), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2808), - [anon_sym___declspec] = ACTIONS(2806), - [anon_sym___based] = ACTIONS(2806), - [anon_sym___cdecl] = ACTIONS(2806), - [anon_sym___clrcall] = ACTIONS(2806), - [anon_sym___stdcall] = ACTIONS(2806), - [anon_sym___fastcall] = ACTIONS(2806), - [anon_sym___thiscall] = ACTIONS(2806), - [anon_sym___vectorcall] = ACTIONS(2806), - [anon_sym_LBRACE] = ACTIONS(2808), - [anon_sym_LBRACK] = ACTIONS(2806), - [anon_sym_static] = ACTIONS(2806), - [anon_sym_register] = ACTIONS(2806), - [anon_sym_inline] = ACTIONS(2806), - [anon_sym_thread_local] = ACTIONS(2806), - [anon_sym_const] = ACTIONS(2806), - [anon_sym_volatile] = ACTIONS(2806), - [anon_sym_restrict] = ACTIONS(2806), - [anon_sym__Atomic] = ACTIONS(2806), - [anon_sym_mutable] = ACTIONS(2806), - [anon_sym_constexpr] = ACTIONS(2806), - [anon_sym_constinit] = ACTIONS(2806), - [anon_sym_consteval] = ACTIONS(2806), - [anon_sym_signed] = ACTIONS(2806), - [anon_sym_unsigned] = ACTIONS(2806), - [anon_sym_long] = ACTIONS(2806), - [anon_sym_short] = ACTIONS(2806), - [sym_primitive_type] = ACTIONS(2806), - [anon_sym_enum] = ACTIONS(2806), - [anon_sym_class] = ACTIONS(2806), - [anon_sym_struct] = ACTIONS(2806), - [anon_sym_union] = ACTIONS(2806), - [anon_sym_if] = ACTIONS(2806), - [anon_sym_switch] = ACTIONS(2806), - [anon_sym_case] = ACTIONS(2806), - [anon_sym_default] = ACTIONS(2806), - [anon_sym_while] = ACTIONS(2806), - [anon_sym_do] = ACTIONS(2806), - [anon_sym_for] = ACTIONS(2806), - [anon_sym_return] = ACTIONS(2806), - [anon_sym_break] = ACTIONS(2806), - [anon_sym_continue] = ACTIONS(2806), - [anon_sym_goto] = ACTIONS(2806), - [anon_sym_not] = ACTIONS(2806), - [anon_sym_compl] = ACTIONS(2806), - [anon_sym_DASH_DASH] = ACTIONS(2808), - [anon_sym_PLUS_PLUS] = ACTIONS(2808), - [anon_sym_sizeof] = ACTIONS(2806), - [sym_number_literal] = ACTIONS(2808), - [anon_sym_L_SQUOTE] = ACTIONS(2808), - [anon_sym_u_SQUOTE] = ACTIONS(2808), - [anon_sym_U_SQUOTE] = ACTIONS(2808), - [anon_sym_u8_SQUOTE] = ACTIONS(2808), - [anon_sym_SQUOTE] = ACTIONS(2808), - [anon_sym_L_DQUOTE] = ACTIONS(2808), - [anon_sym_u_DQUOTE] = ACTIONS(2808), - [anon_sym_U_DQUOTE] = ACTIONS(2808), - [anon_sym_u8_DQUOTE] = ACTIONS(2808), - [anon_sym_DQUOTE] = ACTIONS(2808), - [sym_true] = ACTIONS(2806), - [sym_false] = ACTIONS(2806), - [sym_null] = ACTIONS(2806), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2806), - [anon_sym_decltype] = ACTIONS(2806), - [anon_sym_virtual] = ACTIONS(2806), - [anon_sym_explicit] = ACTIONS(2806), - [anon_sym_typename] = ACTIONS(2806), - [anon_sym_template] = ACTIONS(2806), - [anon_sym_operator] = ACTIONS(2806), - [anon_sym_try] = ACTIONS(2806), - [anon_sym_delete] = ACTIONS(2806), - [anon_sym_throw] = ACTIONS(2806), - [anon_sym_namespace] = ACTIONS(2806), - [anon_sym_using] = ACTIONS(2806), - [anon_sym_static_assert] = ACTIONS(2806), - [anon_sym_concept] = ACTIONS(2806), - [anon_sym_co_return] = ACTIONS(2806), - [anon_sym_co_yield] = ACTIONS(2806), - [anon_sym_R_DQUOTE] = ACTIONS(2808), - [anon_sym_LR_DQUOTE] = ACTIONS(2808), - [anon_sym_uR_DQUOTE] = ACTIONS(2808), - [anon_sym_UR_DQUOTE] = ACTIONS(2808), - [anon_sym_u8R_DQUOTE] = ACTIONS(2808), - [anon_sym_co_await] = ACTIONS(2806), - [anon_sym_new] = ACTIONS(2806), - [anon_sym_requires] = ACTIONS(2806), - [sym_this] = ACTIONS(2806), - [sym_nullptr] = ACTIONS(2806), - }, - [529] = { - [sym_identifier] = ACTIONS(2806), - [aux_sym_preproc_include_token1] = ACTIONS(2806), - [aux_sym_preproc_def_token1] = ACTIONS(2806), - [aux_sym_preproc_if_token1] = ACTIONS(2806), - [aux_sym_preproc_if_token2] = ACTIONS(2806), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2806), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2806), - [aux_sym_preproc_else_token1] = ACTIONS(2806), - [aux_sym_preproc_elif_token1] = ACTIONS(2806), - [sym_preproc_directive] = ACTIONS(2806), - [anon_sym_LPAREN2] = ACTIONS(2808), - [anon_sym_BANG] = ACTIONS(2808), - [anon_sym_TILDE] = ACTIONS(2808), - [anon_sym_DASH] = ACTIONS(2806), - [anon_sym_PLUS] = ACTIONS(2806), - [anon_sym_STAR] = ACTIONS(2808), - [anon_sym_AMP_AMP] = ACTIONS(2808), - [anon_sym_AMP] = ACTIONS(2806), - [anon_sym_SEMI] = ACTIONS(2808), - [anon_sym_typedef] = ACTIONS(2806), - [anon_sym_extern] = ACTIONS(2806), - [anon_sym___attribute__] = ACTIONS(2806), - [anon_sym_COLON_COLON] = ACTIONS(2808), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2808), - [anon_sym___declspec] = ACTIONS(2806), - [anon_sym___based] = ACTIONS(2806), - [anon_sym___cdecl] = ACTIONS(2806), - [anon_sym___clrcall] = ACTIONS(2806), - [anon_sym___stdcall] = ACTIONS(2806), - [anon_sym___fastcall] = ACTIONS(2806), - [anon_sym___thiscall] = ACTIONS(2806), - [anon_sym___vectorcall] = ACTIONS(2806), - [anon_sym_LBRACE] = ACTIONS(2808), - [anon_sym_LBRACK] = ACTIONS(2806), - [anon_sym_static] = ACTIONS(2806), - [anon_sym_register] = ACTIONS(2806), - [anon_sym_inline] = ACTIONS(2806), - [anon_sym_thread_local] = ACTIONS(2806), - [anon_sym_const] = ACTIONS(2806), - [anon_sym_volatile] = ACTIONS(2806), - [anon_sym_restrict] = ACTIONS(2806), - [anon_sym__Atomic] = ACTIONS(2806), - [anon_sym_mutable] = ACTIONS(2806), - [anon_sym_constexpr] = ACTIONS(2806), - [anon_sym_constinit] = ACTIONS(2806), - [anon_sym_consteval] = ACTIONS(2806), - [anon_sym_signed] = ACTIONS(2806), - [anon_sym_unsigned] = ACTIONS(2806), - [anon_sym_long] = ACTIONS(2806), - [anon_sym_short] = ACTIONS(2806), - [sym_primitive_type] = ACTIONS(2806), - [anon_sym_enum] = ACTIONS(2806), - [anon_sym_class] = ACTIONS(2806), - [anon_sym_struct] = ACTIONS(2806), - [anon_sym_union] = ACTIONS(2806), - [anon_sym_if] = ACTIONS(2806), - [anon_sym_switch] = ACTIONS(2806), - [anon_sym_case] = ACTIONS(2806), - [anon_sym_default] = ACTIONS(2806), - [anon_sym_while] = ACTIONS(2806), - [anon_sym_do] = ACTIONS(2806), - [anon_sym_for] = ACTIONS(2806), - [anon_sym_return] = ACTIONS(2806), - [anon_sym_break] = ACTIONS(2806), - [anon_sym_continue] = ACTIONS(2806), - [anon_sym_goto] = ACTIONS(2806), - [anon_sym_not] = ACTIONS(2806), - [anon_sym_compl] = ACTIONS(2806), - [anon_sym_DASH_DASH] = ACTIONS(2808), - [anon_sym_PLUS_PLUS] = ACTIONS(2808), - [anon_sym_sizeof] = ACTIONS(2806), - [sym_number_literal] = ACTIONS(2808), - [anon_sym_L_SQUOTE] = ACTIONS(2808), - [anon_sym_u_SQUOTE] = ACTIONS(2808), - [anon_sym_U_SQUOTE] = ACTIONS(2808), - [anon_sym_u8_SQUOTE] = ACTIONS(2808), - [anon_sym_SQUOTE] = ACTIONS(2808), - [anon_sym_L_DQUOTE] = ACTIONS(2808), - [anon_sym_u_DQUOTE] = ACTIONS(2808), - [anon_sym_U_DQUOTE] = ACTIONS(2808), - [anon_sym_u8_DQUOTE] = ACTIONS(2808), - [anon_sym_DQUOTE] = ACTIONS(2808), - [sym_true] = ACTIONS(2806), - [sym_false] = ACTIONS(2806), - [sym_null] = ACTIONS(2806), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2806), - [anon_sym_decltype] = ACTIONS(2806), - [anon_sym_virtual] = ACTIONS(2806), - [anon_sym_explicit] = ACTIONS(2806), - [anon_sym_typename] = ACTIONS(2806), - [anon_sym_template] = ACTIONS(2806), - [anon_sym_operator] = ACTIONS(2806), - [anon_sym_try] = ACTIONS(2806), - [anon_sym_delete] = ACTIONS(2806), - [anon_sym_throw] = ACTIONS(2806), - [anon_sym_namespace] = ACTIONS(2806), - [anon_sym_using] = ACTIONS(2806), - [anon_sym_static_assert] = ACTIONS(2806), - [anon_sym_concept] = ACTIONS(2806), - [anon_sym_co_return] = ACTIONS(2806), - [anon_sym_co_yield] = ACTIONS(2806), - [anon_sym_R_DQUOTE] = ACTIONS(2808), - [anon_sym_LR_DQUOTE] = ACTIONS(2808), - [anon_sym_uR_DQUOTE] = ACTIONS(2808), - [anon_sym_UR_DQUOTE] = ACTIONS(2808), - [anon_sym_u8R_DQUOTE] = ACTIONS(2808), - [anon_sym_co_await] = ACTIONS(2806), - [anon_sym_new] = ACTIONS(2806), - [anon_sym_requires] = ACTIONS(2806), - [sym_this] = ACTIONS(2806), - [sym_nullptr] = ACTIONS(2806), - }, - [530] = { - [sym_identifier] = ACTIONS(2810), - [aux_sym_preproc_include_token1] = ACTIONS(2810), - [aux_sym_preproc_def_token1] = ACTIONS(2810), - [aux_sym_preproc_if_token1] = ACTIONS(2810), - [aux_sym_preproc_if_token2] = ACTIONS(2810), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2810), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2810), - [aux_sym_preproc_else_token1] = ACTIONS(2810), - [aux_sym_preproc_elif_token1] = ACTIONS(2810), - [sym_preproc_directive] = ACTIONS(2810), - [anon_sym_LPAREN2] = ACTIONS(2812), - [anon_sym_BANG] = ACTIONS(2812), - [anon_sym_TILDE] = ACTIONS(2812), - [anon_sym_DASH] = ACTIONS(2810), - [anon_sym_PLUS] = ACTIONS(2810), - [anon_sym_STAR] = ACTIONS(2812), - [anon_sym_AMP_AMP] = ACTIONS(2812), - [anon_sym_AMP] = ACTIONS(2810), - [anon_sym_SEMI] = ACTIONS(2812), - [anon_sym_typedef] = ACTIONS(2810), - [anon_sym_extern] = ACTIONS(2810), - [anon_sym___attribute__] = ACTIONS(2810), - [anon_sym_COLON_COLON] = ACTIONS(2812), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2812), - [anon_sym___declspec] = ACTIONS(2810), - [anon_sym___based] = ACTIONS(2810), - [anon_sym___cdecl] = ACTIONS(2810), - [anon_sym___clrcall] = ACTIONS(2810), - [anon_sym___stdcall] = ACTIONS(2810), - [anon_sym___fastcall] = ACTIONS(2810), - [anon_sym___thiscall] = ACTIONS(2810), - [anon_sym___vectorcall] = ACTIONS(2810), - [anon_sym_LBRACE] = ACTIONS(2812), - [anon_sym_LBRACK] = ACTIONS(2810), - [anon_sym_static] = ACTIONS(2810), - [anon_sym_register] = ACTIONS(2810), - [anon_sym_inline] = ACTIONS(2810), - [anon_sym_thread_local] = ACTIONS(2810), - [anon_sym_const] = ACTIONS(2810), - [anon_sym_volatile] = ACTIONS(2810), - [anon_sym_restrict] = ACTIONS(2810), - [anon_sym__Atomic] = ACTIONS(2810), - [anon_sym_mutable] = ACTIONS(2810), - [anon_sym_constexpr] = ACTIONS(2810), - [anon_sym_constinit] = ACTIONS(2810), - [anon_sym_consteval] = ACTIONS(2810), - [anon_sym_signed] = ACTIONS(2810), - [anon_sym_unsigned] = ACTIONS(2810), - [anon_sym_long] = ACTIONS(2810), - [anon_sym_short] = ACTIONS(2810), - [sym_primitive_type] = ACTIONS(2810), - [anon_sym_enum] = ACTIONS(2810), - [anon_sym_class] = ACTIONS(2810), - [anon_sym_struct] = ACTIONS(2810), - [anon_sym_union] = ACTIONS(2810), - [anon_sym_if] = ACTIONS(2810), - [anon_sym_switch] = ACTIONS(2810), - [anon_sym_case] = ACTIONS(2810), - [anon_sym_default] = ACTIONS(2810), - [anon_sym_while] = ACTIONS(2810), - [anon_sym_do] = ACTIONS(2810), - [anon_sym_for] = ACTIONS(2810), - [anon_sym_return] = ACTIONS(2810), - [anon_sym_break] = ACTIONS(2810), - [anon_sym_continue] = ACTIONS(2810), - [anon_sym_goto] = ACTIONS(2810), - [anon_sym_not] = ACTIONS(2810), - [anon_sym_compl] = ACTIONS(2810), - [anon_sym_DASH_DASH] = ACTIONS(2812), - [anon_sym_PLUS_PLUS] = ACTIONS(2812), - [anon_sym_sizeof] = ACTIONS(2810), - [sym_number_literal] = ACTIONS(2812), - [anon_sym_L_SQUOTE] = ACTIONS(2812), - [anon_sym_u_SQUOTE] = ACTIONS(2812), - [anon_sym_U_SQUOTE] = ACTIONS(2812), - [anon_sym_u8_SQUOTE] = ACTIONS(2812), - [anon_sym_SQUOTE] = ACTIONS(2812), - [anon_sym_L_DQUOTE] = ACTIONS(2812), - [anon_sym_u_DQUOTE] = ACTIONS(2812), - [anon_sym_U_DQUOTE] = ACTIONS(2812), - [anon_sym_u8_DQUOTE] = ACTIONS(2812), - [anon_sym_DQUOTE] = ACTIONS(2812), - [sym_true] = ACTIONS(2810), - [sym_false] = ACTIONS(2810), - [sym_null] = ACTIONS(2810), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2810), - [anon_sym_decltype] = ACTIONS(2810), - [anon_sym_virtual] = ACTIONS(2810), - [anon_sym_explicit] = ACTIONS(2810), - [anon_sym_typename] = ACTIONS(2810), - [anon_sym_template] = ACTIONS(2810), - [anon_sym_operator] = ACTIONS(2810), - [anon_sym_try] = ACTIONS(2810), - [anon_sym_delete] = ACTIONS(2810), - [anon_sym_throw] = ACTIONS(2810), - [anon_sym_namespace] = ACTIONS(2810), - [anon_sym_using] = ACTIONS(2810), - [anon_sym_static_assert] = ACTIONS(2810), - [anon_sym_concept] = ACTIONS(2810), - [anon_sym_co_return] = ACTIONS(2810), - [anon_sym_co_yield] = ACTIONS(2810), - [anon_sym_R_DQUOTE] = ACTIONS(2812), - [anon_sym_LR_DQUOTE] = ACTIONS(2812), - [anon_sym_uR_DQUOTE] = ACTIONS(2812), - [anon_sym_UR_DQUOTE] = ACTIONS(2812), - [anon_sym_u8R_DQUOTE] = ACTIONS(2812), - [anon_sym_co_await] = ACTIONS(2810), - [anon_sym_new] = ACTIONS(2810), - [anon_sym_requires] = ACTIONS(2810), - [sym_this] = ACTIONS(2810), - [sym_nullptr] = ACTIONS(2810), - }, - [531] = { - [sym_identifier] = ACTIONS(2814), - [aux_sym_preproc_include_token1] = ACTIONS(2814), - [aux_sym_preproc_def_token1] = ACTIONS(2814), - [aux_sym_preproc_if_token1] = ACTIONS(2814), - [aux_sym_preproc_if_token2] = ACTIONS(2814), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2814), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2814), - [aux_sym_preproc_else_token1] = ACTIONS(2814), - [aux_sym_preproc_elif_token1] = ACTIONS(2814), - [sym_preproc_directive] = ACTIONS(2814), - [anon_sym_LPAREN2] = ACTIONS(2816), - [anon_sym_BANG] = ACTIONS(2816), - [anon_sym_TILDE] = ACTIONS(2816), - [anon_sym_DASH] = ACTIONS(2814), - [anon_sym_PLUS] = ACTIONS(2814), - [anon_sym_STAR] = ACTIONS(2816), - [anon_sym_AMP_AMP] = ACTIONS(2816), - [anon_sym_AMP] = ACTIONS(2814), - [anon_sym_SEMI] = ACTIONS(2816), - [anon_sym_typedef] = ACTIONS(2814), - [anon_sym_extern] = ACTIONS(2814), - [anon_sym___attribute__] = ACTIONS(2814), - [anon_sym_COLON_COLON] = ACTIONS(2816), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2816), - [anon_sym___declspec] = ACTIONS(2814), - [anon_sym___based] = ACTIONS(2814), - [anon_sym___cdecl] = ACTIONS(2814), - [anon_sym___clrcall] = ACTIONS(2814), - [anon_sym___stdcall] = ACTIONS(2814), - [anon_sym___fastcall] = ACTIONS(2814), - [anon_sym___thiscall] = ACTIONS(2814), - [anon_sym___vectorcall] = ACTIONS(2814), - [anon_sym_LBRACE] = ACTIONS(2816), - [anon_sym_LBRACK] = ACTIONS(2814), - [anon_sym_static] = ACTIONS(2814), - [anon_sym_register] = ACTIONS(2814), - [anon_sym_inline] = ACTIONS(2814), - [anon_sym_thread_local] = ACTIONS(2814), - [anon_sym_const] = ACTIONS(2814), - [anon_sym_volatile] = ACTIONS(2814), - [anon_sym_restrict] = ACTIONS(2814), - [anon_sym__Atomic] = ACTIONS(2814), - [anon_sym_mutable] = ACTIONS(2814), - [anon_sym_constexpr] = ACTIONS(2814), - [anon_sym_constinit] = ACTIONS(2814), - [anon_sym_consteval] = ACTIONS(2814), - [anon_sym_signed] = ACTIONS(2814), - [anon_sym_unsigned] = ACTIONS(2814), - [anon_sym_long] = ACTIONS(2814), - [anon_sym_short] = ACTIONS(2814), - [sym_primitive_type] = ACTIONS(2814), - [anon_sym_enum] = ACTIONS(2814), - [anon_sym_class] = ACTIONS(2814), - [anon_sym_struct] = ACTIONS(2814), - [anon_sym_union] = ACTIONS(2814), - [anon_sym_if] = ACTIONS(2814), - [anon_sym_switch] = ACTIONS(2814), - [anon_sym_case] = ACTIONS(2814), - [anon_sym_default] = ACTIONS(2814), - [anon_sym_while] = ACTIONS(2814), - [anon_sym_do] = ACTIONS(2814), - [anon_sym_for] = ACTIONS(2814), - [anon_sym_return] = ACTIONS(2814), - [anon_sym_break] = ACTIONS(2814), - [anon_sym_continue] = ACTIONS(2814), - [anon_sym_goto] = ACTIONS(2814), - [anon_sym_not] = ACTIONS(2814), - [anon_sym_compl] = ACTIONS(2814), - [anon_sym_DASH_DASH] = ACTIONS(2816), - [anon_sym_PLUS_PLUS] = ACTIONS(2816), - [anon_sym_sizeof] = ACTIONS(2814), - [sym_number_literal] = ACTIONS(2816), - [anon_sym_L_SQUOTE] = ACTIONS(2816), - [anon_sym_u_SQUOTE] = ACTIONS(2816), - [anon_sym_U_SQUOTE] = ACTIONS(2816), - [anon_sym_u8_SQUOTE] = ACTIONS(2816), - [anon_sym_SQUOTE] = ACTIONS(2816), - [anon_sym_L_DQUOTE] = ACTIONS(2816), - [anon_sym_u_DQUOTE] = ACTIONS(2816), - [anon_sym_U_DQUOTE] = ACTIONS(2816), - [anon_sym_u8_DQUOTE] = ACTIONS(2816), - [anon_sym_DQUOTE] = ACTIONS(2816), - [sym_true] = ACTIONS(2814), - [sym_false] = ACTIONS(2814), - [sym_null] = ACTIONS(2814), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2814), - [anon_sym_decltype] = ACTIONS(2814), - [anon_sym_virtual] = ACTIONS(2814), - [anon_sym_explicit] = ACTIONS(2814), - [anon_sym_typename] = ACTIONS(2814), - [anon_sym_template] = ACTIONS(2814), - [anon_sym_operator] = ACTIONS(2814), - [anon_sym_try] = ACTIONS(2814), - [anon_sym_delete] = ACTIONS(2814), - [anon_sym_throw] = ACTIONS(2814), - [anon_sym_namespace] = ACTIONS(2814), - [anon_sym_using] = ACTIONS(2814), - [anon_sym_static_assert] = ACTIONS(2814), - [anon_sym_concept] = ACTIONS(2814), - [anon_sym_co_return] = ACTIONS(2814), - [anon_sym_co_yield] = ACTIONS(2814), - [anon_sym_R_DQUOTE] = ACTIONS(2816), - [anon_sym_LR_DQUOTE] = ACTIONS(2816), - [anon_sym_uR_DQUOTE] = ACTIONS(2816), - [anon_sym_UR_DQUOTE] = ACTIONS(2816), - [anon_sym_u8R_DQUOTE] = ACTIONS(2816), - [anon_sym_co_await] = ACTIONS(2814), - [anon_sym_new] = ACTIONS(2814), - [anon_sym_requires] = ACTIONS(2814), - [sym_this] = ACTIONS(2814), - [sym_nullptr] = ACTIONS(2814), - }, - [532] = { - [sym_identifier] = ACTIONS(2818), - [aux_sym_preproc_include_token1] = ACTIONS(2818), - [aux_sym_preproc_def_token1] = ACTIONS(2818), - [aux_sym_preproc_if_token1] = ACTIONS(2818), - [aux_sym_preproc_if_token2] = ACTIONS(2818), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2818), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2818), - [aux_sym_preproc_else_token1] = ACTIONS(2818), - [aux_sym_preproc_elif_token1] = ACTIONS(2818), - [sym_preproc_directive] = ACTIONS(2818), - [anon_sym_LPAREN2] = ACTIONS(2820), - [anon_sym_BANG] = ACTIONS(2820), - [anon_sym_TILDE] = ACTIONS(2820), - [anon_sym_DASH] = ACTIONS(2818), - [anon_sym_PLUS] = ACTIONS(2818), - [anon_sym_STAR] = ACTIONS(2820), - [anon_sym_AMP_AMP] = ACTIONS(2820), - [anon_sym_AMP] = ACTIONS(2818), - [anon_sym_SEMI] = ACTIONS(2820), - [anon_sym_typedef] = ACTIONS(2818), - [anon_sym_extern] = ACTIONS(2818), - [anon_sym___attribute__] = ACTIONS(2818), - [anon_sym_COLON_COLON] = ACTIONS(2820), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2820), - [anon_sym___declspec] = ACTIONS(2818), - [anon_sym___based] = ACTIONS(2818), - [anon_sym___cdecl] = ACTIONS(2818), - [anon_sym___clrcall] = ACTIONS(2818), - [anon_sym___stdcall] = ACTIONS(2818), - [anon_sym___fastcall] = ACTIONS(2818), - [anon_sym___thiscall] = ACTIONS(2818), - [anon_sym___vectorcall] = ACTIONS(2818), - [anon_sym_LBRACE] = ACTIONS(2820), - [anon_sym_LBRACK] = ACTIONS(2818), - [anon_sym_static] = ACTIONS(2818), - [anon_sym_register] = ACTIONS(2818), - [anon_sym_inline] = ACTIONS(2818), - [anon_sym_thread_local] = ACTIONS(2818), - [anon_sym_const] = ACTIONS(2818), - [anon_sym_volatile] = ACTIONS(2818), - [anon_sym_restrict] = ACTIONS(2818), - [anon_sym__Atomic] = ACTIONS(2818), - [anon_sym_mutable] = ACTIONS(2818), - [anon_sym_constexpr] = ACTIONS(2818), - [anon_sym_constinit] = ACTIONS(2818), - [anon_sym_consteval] = ACTIONS(2818), - [anon_sym_signed] = ACTIONS(2818), - [anon_sym_unsigned] = ACTIONS(2818), - [anon_sym_long] = ACTIONS(2818), - [anon_sym_short] = ACTIONS(2818), - [sym_primitive_type] = ACTIONS(2818), - [anon_sym_enum] = ACTIONS(2818), - [anon_sym_class] = ACTIONS(2818), - [anon_sym_struct] = ACTIONS(2818), - [anon_sym_union] = ACTIONS(2818), - [anon_sym_if] = ACTIONS(2818), - [anon_sym_switch] = ACTIONS(2818), - [anon_sym_case] = ACTIONS(2818), - [anon_sym_default] = ACTIONS(2818), - [anon_sym_while] = ACTIONS(2818), - [anon_sym_do] = ACTIONS(2818), - [anon_sym_for] = ACTIONS(2818), - [anon_sym_return] = ACTIONS(2818), - [anon_sym_break] = ACTIONS(2818), - [anon_sym_continue] = ACTIONS(2818), - [anon_sym_goto] = ACTIONS(2818), - [anon_sym_not] = ACTIONS(2818), - [anon_sym_compl] = ACTIONS(2818), - [anon_sym_DASH_DASH] = ACTIONS(2820), - [anon_sym_PLUS_PLUS] = ACTIONS(2820), - [anon_sym_sizeof] = ACTIONS(2818), - [sym_number_literal] = ACTIONS(2820), - [anon_sym_L_SQUOTE] = ACTIONS(2820), - [anon_sym_u_SQUOTE] = ACTIONS(2820), - [anon_sym_U_SQUOTE] = ACTIONS(2820), - [anon_sym_u8_SQUOTE] = ACTIONS(2820), - [anon_sym_SQUOTE] = ACTIONS(2820), - [anon_sym_L_DQUOTE] = ACTIONS(2820), - [anon_sym_u_DQUOTE] = ACTIONS(2820), - [anon_sym_U_DQUOTE] = ACTIONS(2820), - [anon_sym_u8_DQUOTE] = ACTIONS(2820), - [anon_sym_DQUOTE] = ACTIONS(2820), - [sym_true] = ACTIONS(2818), - [sym_false] = ACTIONS(2818), - [sym_null] = ACTIONS(2818), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2818), - [anon_sym_decltype] = ACTIONS(2818), - [anon_sym_virtual] = ACTIONS(2818), - [anon_sym_explicit] = ACTIONS(2818), - [anon_sym_typename] = ACTIONS(2818), - [anon_sym_template] = ACTIONS(2818), - [anon_sym_operator] = ACTIONS(2818), - [anon_sym_try] = ACTIONS(2818), - [anon_sym_delete] = ACTIONS(2818), - [anon_sym_throw] = ACTIONS(2818), - [anon_sym_namespace] = ACTIONS(2818), - [anon_sym_using] = ACTIONS(2818), - [anon_sym_static_assert] = ACTIONS(2818), - [anon_sym_concept] = ACTIONS(2818), - [anon_sym_co_return] = ACTIONS(2818), - [anon_sym_co_yield] = ACTIONS(2818), - [anon_sym_R_DQUOTE] = ACTIONS(2820), - [anon_sym_LR_DQUOTE] = ACTIONS(2820), - [anon_sym_uR_DQUOTE] = ACTIONS(2820), - [anon_sym_UR_DQUOTE] = ACTIONS(2820), - [anon_sym_u8R_DQUOTE] = ACTIONS(2820), - [anon_sym_co_await] = ACTIONS(2818), - [anon_sym_new] = ACTIONS(2818), - [anon_sym_requires] = ACTIONS(2818), - [sym_this] = ACTIONS(2818), - [sym_nullptr] = ACTIONS(2818), - }, - [533] = { - [sym_identifier] = ACTIONS(2822), - [aux_sym_preproc_include_token1] = ACTIONS(2822), - [aux_sym_preproc_def_token1] = ACTIONS(2822), - [aux_sym_preproc_if_token1] = ACTIONS(2822), - [aux_sym_preproc_if_token2] = ACTIONS(2822), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2822), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2822), - [aux_sym_preproc_else_token1] = ACTIONS(2822), - [aux_sym_preproc_elif_token1] = ACTIONS(2822), - [sym_preproc_directive] = ACTIONS(2822), - [anon_sym_LPAREN2] = ACTIONS(2824), - [anon_sym_BANG] = ACTIONS(2824), - [anon_sym_TILDE] = ACTIONS(2824), - [anon_sym_DASH] = ACTIONS(2822), - [anon_sym_PLUS] = ACTIONS(2822), - [anon_sym_STAR] = ACTIONS(2824), - [anon_sym_AMP_AMP] = ACTIONS(2824), - [anon_sym_AMP] = ACTIONS(2822), - [anon_sym_SEMI] = ACTIONS(2824), - [anon_sym_typedef] = ACTIONS(2822), - [anon_sym_extern] = ACTIONS(2822), - [anon_sym___attribute__] = ACTIONS(2822), - [anon_sym_COLON_COLON] = ACTIONS(2824), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2824), - [anon_sym___declspec] = ACTIONS(2822), - [anon_sym___based] = ACTIONS(2822), - [anon_sym___cdecl] = ACTIONS(2822), - [anon_sym___clrcall] = ACTIONS(2822), - [anon_sym___stdcall] = ACTIONS(2822), - [anon_sym___fastcall] = ACTIONS(2822), - [anon_sym___thiscall] = ACTIONS(2822), - [anon_sym___vectorcall] = ACTIONS(2822), - [anon_sym_LBRACE] = ACTIONS(2824), - [anon_sym_LBRACK] = ACTIONS(2822), - [anon_sym_static] = ACTIONS(2822), - [anon_sym_register] = ACTIONS(2822), - [anon_sym_inline] = ACTIONS(2822), - [anon_sym_thread_local] = ACTIONS(2822), - [anon_sym_const] = ACTIONS(2822), - [anon_sym_volatile] = ACTIONS(2822), - [anon_sym_restrict] = ACTIONS(2822), - [anon_sym__Atomic] = ACTIONS(2822), - [anon_sym_mutable] = ACTIONS(2822), - [anon_sym_constexpr] = ACTIONS(2822), - [anon_sym_constinit] = ACTIONS(2822), - [anon_sym_consteval] = ACTIONS(2822), - [anon_sym_signed] = ACTIONS(2822), - [anon_sym_unsigned] = ACTIONS(2822), - [anon_sym_long] = ACTIONS(2822), - [anon_sym_short] = ACTIONS(2822), - [sym_primitive_type] = ACTIONS(2822), - [anon_sym_enum] = ACTIONS(2822), - [anon_sym_class] = ACTIONS(2822), - [anon_sym_struct] = ACTIONS(2822), - [anon_sym_union] = ACTIONS(2822), - [anon_sym_if] = ACTIONS(2822), - [anon_sym_switch] = ACTIONS(2822), - [anon_sym_case] = ACTIONS(2822), - [anon_sym_default] = ACTIONS(2822), - [anon_sym_while] = ACTIONS(2822), - [anon_sym_do] = ACTIONS(2822), - [anon_sym_for] = ACTIONS(2822), - [anon_sym_return] = ACTIONS(2822), - [anon_sym_break] = ACTIONS(2822), - [anon_sym_continue] = ACTIONS(2822), - [anon_sym_goto] = ACTIONS(2822), - [anon_sym_not] = ACTIONS(2822), - [anon_sym_compl] = ACTIONS(2822), - [anon_sym_DASH_DASH] = ACTIONS(2824), - [anon_sym_PLUS_PLUS] = ACTIONS(2824), - [anon_sym_sizeof] = ACTIONS(2822), - [sym_number_literal] = ACTIONS(2824), - [anon_sym_L_SQUOTE] = ACTIONS(2824), - [anon_sym_u_SQUOTE] = ACTIONS(2824), - [anon_sym_U_SQUOTE] = ACTIONS(2824), - [anon_sym_u8_SQUOTE] = ACTIONS(2824), - [anon_sym_SQUOTE] = ACTIONS(2824), - [anon_sym_L_DQUOTE] = ACTIONS(2824), - [anon_sym_u_DQUOTE] = ACTIONS(2824), - [anon_sym_U_DQUOTE] = ACTIONS(2824), - [anon_sym_u8_DQUOTE] = ACTIONS(2824), - [anon_sym_DQUOTE] = ACTIONS(2824), - [sym_true] = ACTIONS(2822), - [sym_false] = ACTIONS(2822), - [sym_null] = ACTIONS(2822), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2822), - [anon_sym_decltype] = ACTIONS(2822), - [anon_sym_virtual] = ACTIONS(2822), - [anon_sym_explicit] = ACTIONS(2822), - [anon_sym_typename] = ACTIONS(2822), - [anon_sym_template] = ACTIONS(2822), - [anon_sym_operator] = ACTIONS(2822), - [anon_sym_try] = ACTIONS(2822), - [anon_sym_delete] = ACTIONS(2822), - [anon_sym_throw] = ACTIONS(2822), - [anon_sym_namespace] = ACTIONS(2822), - [anon_sym_using] = ACTIONS(2822), - [anon_sym_static_assert] = ACTIONS(2822), - [anon_sym_concept] = ACTIONS(2822), - [anon_sym_co_return] = ACTIONS(2822), - [anon_sym_co_yield] = ACTIONS(2822), - [anon_sym_R_DQUOTE] = ACTIONS(2824), - [anon_sym_LR_DQUOTE] = ACTIONS(2824), - [anon_sym_uR_DQUOTE] = ACTIONS(2824), - [anon_sym_UR_DQUOTE] = ACTIONS(2824), - [anon_sym_u8R_DQUOTE] = ACTIONS(2824), - [anon_sym_co_await] = ACTIONS(2822), - [anon_sym_new] = ACTIONS(2822), - [anon_sym_requires] = ACTIONS(2822), - [sym_this] = ACTIONS(2822), - [sym_nullptr] = ACTIONS(2822), - }, - [534] = { - [sym_identifier] = ACTIONS(2826), - [aux_sym_preproc_include_token1] = ACTIONS(2826), - [aux_sym_preproc_def_token1] = ACTIONS(2826), - [aux_sym_preproc_if_token1] = ACTIONS(2826), - [aux_sym_preproc_if_token2] = ACTIONS(2826), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2826), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2826), - [aux_sym_preproc_else_token1] = ACTIONS(2826), - [aux_sym_preproc_elif_token1] = ACTIONS(2826), - [sym_preproc_directive] = ACTIONS(2826), - [anon_sym_LPAREN2] = ACTIONS(2828), - [anon_sym_BANG] = ACTIONS(2828), - [anon_sym_TILDE] = ACTIONS(2828), - [anon_sym_DASH] = ACTIONS(2826), - [anon_sym_PLUS] = ACTIONS(2826), - [anon_sym_STAR] = ACTIONS(2828), - [anon_sym_AMP_AMP] = ACTIONS(2828), - [anon_sym_AMP] = ACTIONS(2826), - [anon_sym_SEMI] = ACTIONS(2828), - [anon_sym_typedef] = ACTIONS(2826), - [anon_sym_extern] = ACTIONS(2826), - [anon_sym___attribute__] = ACTIONS(2826), - [anon_sym_COLON_COLON] = ACTIONS(2828), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2828), - [anon_sym___declspec] = ACTIONS(2826), - [anon_sym___based] = ACTIONS(2826), - [anon_sym___cdecl] = ACTIONS(2826), - [anon_sym___clrcall] = ACTIONS(2826), - [anon_sym___stdcall] = ACTIONS(2826), - [anon_sym___fastcall] = ACTIONS(2826), - [anon_sym___thiscall] = ACTIONS(2826), - [anon_sym___vectorcall] = ACTIONS(2826), - [anon_sym_LBRACE] = ACTIONS(2828), - [anon_sym_LBRACK] = ACTIONS(2826), - [anon_sym_static] = ACTIONS(2826), - [anon_sym_register] = ACTIONS(2826), - [anon_sym_inline] = ACTIONS(2826), - [anon_sym_thread_local] = ACTIONS(2826), - [anon_sym_const] = ACTIONS(2826), - [anon_sym_volatile] = ACTIONS(2826), - [anon_sym_restrict] = ACTIONS(2826), - [anon_sym__Atomic] = ACTIONS(2826), - [anon_sym_mutable] = ACTIONS(2826), - [anon_sym_constexpr] = ACTIONS(2826), - [anon_sym_constinit] = ACTIONS(2826), - [anon_sym_consteval] = ACTIONS(2826), - [anon_sym_signed] = ACTIONS(2826), - [anon_sym_unsigned] = ACTIONS(2826), - [anon_sym_long] = ACTIONS(2826), - [anon_sym_short] = ACTIONS(2826), - [sym_primitive_type] = ACTIONS(2826), - [anon_sym_enum] = ACTIONS(2826), - [anon_sym_class] = ACTIONS(2826), - [anon_sym_struct] = ACTIONS(2826), - [anon_sym_union] = ACTIONS(2826), - [anon_sym_if] = ACTIONS(2826), - [anon_sym_switch] = ACTIONS(2826), - [anon_sym_case] = ACTIONS(2826), - [anon_sym_default] = ACTIONS(2826), - [anon_sym_while] = ACTIONS(2826), - [anon_sym_do] = ACTIONS(2826), - [anon_sym_for] = ACTIONS(2826), - [anon_sym_return] = ACTIONS(2826), - [anon_sym_break] = ACTIONS(2826), - [anon_sym_continue] = ACTIONS(2826), - [anon_sym_goto] = ACTIONS(2826), - [anon_sym_not] = ACTIONS(2826), - [anon_sym_compl] = ACTIONS(2826), - [anon_sym_DASH_DASH] = ACTIONS(2828), - [anon_sym_PLUS_PLUS] = ACTIONS(2828), - [anon_sym_sizeof] = ACTIONS(2826), - [sym_number_literal] = ACTIONS(2828), - [anon_sym_L_SQUOTE] = ACTIONS(2828), - [anon_sym_u_SQUOTE] = ACTIONS(2828), - [anon_sym_U_SQUOTE] = ACTIONS(2828), - [anon_sym_u8_SQUOTE] = ACTIONS(2828), - [anon_sym_SQUOTE] = ACTIONS(2828), - [anon_sym_L_DQUOTE] = ACTIONS(2828), - [anon_sym_u_DQUOTE] = ACTIONS(2828), - [anon_sym_U_DQUOTE] = ACTIONS(2828), - [anon_sym_u8_DQUOTE] = ACTIONS(2828), - [anon_sym_DQUOTE] = ACTIONS(2828), - [sym_true] = ACTIONS(2826), - [sym_false] = ACTIONS(2826), - [sym_null] = ACTIONS(2826), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2826), - [anon_sym_decltype] = ACTIONS(2826), - [anon_sym_virtual] = ACTIONS(2826), - [anon_sym_explicit] = ACTIONS(2826), - [anon_sym_typename] = ACTIONS(2826), - [anon_sym_template] = ACTIONS(2826), - [anon_sym_operator] = ACTIONS(2826), - [anon_sym_try] = ACTIONS(2826), - [anon_sym_delete] = ACTIONS(2826), - [anon_sym_throw] = ACTIONS(2826), - [anon_sym_namespace] = ACTIONS(2826), - [anon_sym_using] = ACTIONS(2826), - [anon_sym_static_assert] = ACTIONS(2826), - [anon_sym_concept] = ACTIONS(2826), - [anon_sym_co_return] = ACTIONS(2826), - [anon_sym_co_yield] = ACTIONS(2826), - [anon_sym_R_DQUOTE] = ACTIONS(2828), - [anon_sym_LR_DQUOTE] = ACTIONS(2828), - [anon_sym_uR_DQUOTE] = ACTIONS(2828), - [anon_sym_UR_DQUOTE] = ACTIONS(2828), - [anon_sym_u8R_DQUOTE] = ACTIONS(2828), - [anon_sym_co_await] = ACTIONS(2826), - [anon_sym_new] = ACTIONS(2826), - [anon_sym_requires] = ACTIONS(2826), - [sym_this] = ACTIONS(2826), - [sym_nullptr] = ACTIONS(2826), - }, - [535] = { - [sym_identifier] = ACTIONS(2830), - [aux_sym_preproc_include_token1] = ACTIONS(2830), - [aux_sym_preproc_def_token1] = ACTIONS(2830), - [aux_sym_preproc_if_token1] = ACTIONS(2830), - [aux_sym_preproc_if_token2] = ACTIONS(2830), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2830), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2830), - [aux_sym_preproc_else_token1] = ACTIONS(2830), - [aux_sym_preproc_elif_token1] = ACTIONS(2830), - [sym_preproc_directive] = ACTIONS(2830), - [anon_sym_LPAREN2] = ACTIONS(2832), - [anon_sym_BANG] = ACTIONS(2832), - [anon_sym_TILDE] = ACTIONS(2832), - [anon_sym_DASH] = ACTIONS(2830), - [anon_sym_PLUS] = ACTIONS(2830), - [anon_sym_STAR] = ACTIONS(2832), - [anon_sym_AMP_AMP] = ACTIONS(2832), - [anon_sym_AMP] = ACTIONS(2830), - [anon_sym_SEMI] = ACTIONS(2832), - [anon_sym_typedef] = ACTIONS(2830), - [anon_sym_extern] = ACTIONS(2830), - [anon_sym___attribute__] = ACTIONS(2830), - [anon_sym_COLON_COLON] = ACTIONS(2832), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2832), - [anon_sym___declspec] = ACTIONS(2830), - [anon_sym___based] = ACTIONS(2830), - [anon_sym___cdecl] = ACTIONS(2830), - [anon_sym___clrcall] = ACTIONS(2830), - [anon_sym___stdcall] = ACTIONS(2830), - [anon_sym___fastcall] = ACTIONS(2830), - [anon_sym___thiscall] = ACTIONS(2830), - [anon_sym___vectorcall] = ACTIONS(2830), - [anon_sym_LBRACE] = ACTIONS(2832), - [anon_sym_LBRACK] = ACTIONS(2830), - [anon_sym_static] = ACTIONS(2830), - [anon_sym_register] = ACTIONS(2830), - [anon_sym_inline] = ACTIONS(2830), - [anon_sym_thread_local] = ACTIONS(2830), - [anon_sym_const] = ACTIONS(2830), - [anon_sym_volatile] = ACTIONS(2830), - [anon_sym_restrict] = ACTIONS(2830), - [anon_sym__Atomic] = ACTIONS(2830), - [anon_sym_mutable] = ACTIONS(2830), - [anon_sym_constexpr] = ACTIONS(2830), - [anon_sym_constinit] = ACTIONS(2830), - [anon_sym_consteval] = ACTIONS(2830), - [anon_sym_signed] = ACTIONS(2830), - [anon_sym_unsigned] = ACTIONS(2830), - [anon_sym_long] = ACTIONS(2830), - [anon_sym_short] = ACTIONS(2830), - [sym_primitive_type] = ACTIONS(2830), - [anon_sym_enum] = ACTIONS(2830), - [anon_sym_class] = ACTIONS(2830), - [anon_sym_struct] = ACTIONS(2830), - [anon_sym_union] = ACTIONS(2830), - [anon_sym_if] = ACTIONS(2830), - [anon_sym_switch] = ACTIONS(2830), - [anon_sym_case] = ACTIONS(2830), - [anon_sym_default] = ACTIONS(2830), - [anon_sym_while] = ACTIONS(2830), - [anon_sym_do] = ACTIONS(2830), - [anon_sym_for] = ACTIONS(2830), - [anon_sym_return] = ACTIONS(2830), - [anon_sym_break] = ACTIONS(2830), - [anon_sym_continue] = ACTIONS(2830), - [anon_sym_goto] = ACTIONS(2830), - [anon_sym_not] = ACTIONS(2830), - [anon_sym_compl] = ACTIONS(2830), - [anon_sym_DASH_DASH] = ACTIONS(2832), - [anon_sym_PLUS_PLUS] = ACTIONS(2832), - [anon_sym_sizeof] = ACTIONS(2830), - [sym_number_literal] = ACTIONS(2832), - [anon_sym_L_SQUOTE] = ACTIONS(2832), - [anon_sym_u_SQUOTE] = ACTIONS(2832), - [anon_sym_U_SQUOTE] = ACTIONS(2832), - [anon_sym_u8_SQUOTE] = ACTIONS(2832), - [anon_sym_SQUOTE] = ACTIONS(2832), - [anon_sym_L_DQUOTE] = ACTIONS(2832), - [anon_sym_u_DQUOTE] = ACTIONS(2832), - [anon_sym_U_DQUOTE] = ACTIONS(2832), - [anon_sym_u8_DQUOTE] = ACTIONS(2832), - [anon_sym_DQUOTE] = ACTIONS(2832), - [sym_true] = ACTIONS(2830), - [sym_false] = ACTIONS(2830), - [sym_null] = ACTIONS(2830), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2830), - [anon_sym_decltype] = ACTIONS(2830), - [anon_sym_virtual] = ACTIONS(2830), - [anon_sym_explicit] = ACTIONS(2830), - [anon_sym_typename] = ACTIONS(2830), - [anon_sym_template] = ACTIONS(2830), - [anon_sym_operator] = ACTIONS(2830), - [anon_sym_try] = ACTIONS(2830), - [anon_sym_delete] = ACTIONS(2830), - [anon_sym_throw] = ACTIONS(2830), - [anon_sym_namespace] = ACTIONS(2830), - [anon_sym_using] = ACTIONS(2830), - [anon_sym_static_assert] = ACTIONS(2830), - [anon_sym_concept] = ACTIONS(2830), - [anon_sym_co_return] = ACTIONS(2830), - [anon_sym_co_yield] = ACTIONS(2830), - [anon_sym_R_DQUOTE] = ACTIONS(2832), - [anon_sym_LR_DQUOTE] = ACTIONS(2832), - [anon_sym_uR_DQUOTE] = ACTIONS(2832), - [anon_sym_UR_DQUOTE] = ACTIONS(2832), - [anon_sym_u8R_DQUOTE] = ACTIONS(2832), - [anon_sym_co_await] = ACTIONS(2830), - [anon_sym_new] = ACTIONS(2830), - [anon_sym_requires] = ACTIONS(2830), - [sym_this] = ACTIONS(2830), - [sym_nullptr] = ACTIONS(2830), - }, - [536] = { - [sym_identifier] = ACTIONS(2834), - [aux_sym_preproc_include_token1] = ACTIONS(2834), - [aux_sym_preproc_def_token1] = ACTIONS(2834), - [aux_sym_preproc_if_token1] = ACTIONS(2834), - [aux_sym_preproc_if_token2] = ACTIONS(2834), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2834), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2834), - [aux_sym_preproc_else_token1] = ACTIONS(2834), - [aux_sym_preproc_elif_token1] = ACTIONS(2834), - [sym_preproc_directive] = ACTIONS(2834), - [anon_sym_LPAREN2] = ACTIONS(2836), - [anon_sym_BANG] = ACTIONS(2836), - [anon_sym_TILDE] = ACTIONS(2836), - [anon_sym_DASH] = ACTIONS(2834), - [anon_sym_PLUS] = ACTIONS(2834), - [anon_sym_STAR] = ACTIONS(2836), - [anon_sym_AMP_AMP] = ACTIONS(2836), - [anon_sym_AMP] = ACTIONS(2834), - [anon_sym_SEMI] = ACTIONS(2836), - [anon_sym_typedef] = ACTIONS(2834), - [anon_sym_extern] = ACTIONS(2834), - [anon_sym___attribute__] = ACTIONS(2834), - [anon_sym_COLON_COLON] = ACTIONS(2836), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2836), - [anon_sym___declspec] = ACTIONS(2834), - [anon_sym___based] = ACTIONS(2834), - [anon_sym___cdecl] = ACTIONS(2834), - [anon_sym___clrcall] = ACTIONS(2834), - [anon_sym___stdcall] = ACTIONS(2834), - [anon_sym___fastcall] = ACTIONS(2834), - [anon_sym___thiscall] = ACTIONS(2834), - [anon_sym___vectorcall] = ACTIONS(2834), - [anon_sym_LBRACE] = ACTIONS(2836), - [anon_sym_LBRACK] = ACTIONS(2834), - [anon_sym_static] = ACTIONS(2834), - [anon_sym_register] = ACTIONS(2834), - [anon_sym_inline] = ACTIONS(2834), - [anon_sym_thread_local] = ACTIONS(2834), - [anon_sym_const] = ACTIONS(2834), - [anon_sym_volatile] = ACTIONS(2834), - [anon_sym_restrict] = ACTIONS(2834), - [anon_sym__Atomic] = ACTIONS(2834), - [anon_sym_mutable] = ACTIONS(2834), - [anon_sym_constexpr] = ACTIONS(2834), - [anon_sym_constinit] = ACTIONS(2834), - [anon_sym_consteval] = ACTIONS(2834), - [anon_sym_signed] = ACTIONS(2834), - [anon_sym_unsigned] = ACTIONS(2834), - [anon_sym_long] = ACTIONS(2834), - [anon_sym_short] = ACTIONS(2834), - [sym_primitive_type] = ACTIONS(2834), - [anon_sym_enum] = ACTIONS(2834), - [anon_sym_class] = ACTIONS(2834), - [anon_sym_struct] = ACTIONS(2834), - [anon_sym_union] = ACTIONS(2834), - [anon_sym_if] = ACTIONS(2834), - [anon_sym_switch] = ACTIONS(2834), - [anon_sym_case] = ACTIONS(2834), - [anon_sym_default] = ACTIONS(2834), - [anon_sym_while] = ACTIONS(2834), - [anon_sym_do] = ACTIONS(2834), - [anon_sym_for] = ACTIONS(2834), - [anon_sym_return] = ACTIONS(2834), - [anon_sym_break] = ACTIONS(2834), - [anon_sym_continue] = ACTIONS(2834), - [anon_sym_goto] = ACTIONS(2834), - [anon_sym_not] = ACTIONS(2834), - [anon_sym_compl] = ACTIONS(2834), - [anon_sym_DASH_DASH] = ACTIONS(2836), - [anon_sym_PLUS_PLUS] = ACTIONS(2836), - [anon_sym_sizeof] = ACTIONS(2834), - [sym_number_literal] = ACTIONS(2836), - [anon_sym_L_SQUOTE] = ACTIONS(2836), - [anon_sym_u_SQUOTE] = ACTIONS(2836), - [anon_sym_U_SQUOTE] = ACTIONS(2836), - [anon_sym_u8_SQUOTE] = ACTIONS(2836), - [anon_sym_SQUOTE] = ACTIONS(2836), - [anon_sym_L_DQUOTE] = ACTIONS(2836), - [anon_sym_u_DQUOTE] = ACTIONS(2836), - [anon_sym_U_DQUOTE] = ACTIONS(2836), - [anon_sym_u8_DQUOTE] = ACTIONS(2836), - [anon_sym_DQUOTE] = ACTIONS(2836), - [sym_true] = ACTIONS(2834), - [sym_false] = ACTIONS(2834), - [sym_null] = ACTIONS(2834), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2834), - [anon_sym_decltype] = ACTIONS(2834), - [anon_sym_virtual] = ACTIONS(2834), - [anon_sym_explicit] = ACTIONS(2834), - [anon_sym_typename] = ACTIONS(2834), - [anon_sym_template] = ACTIONS(2834), - [anon_sym_operator] = ACTIONS(2834), - [anon_sym_try] = ACTIONS(2834), - [anon_sym_delete] = ACTIONS(2834), - [anon_sym_throw] = ACTIONS(2834), - [anon_sym_namespace] = ACTIONS(2834), - [anon_sym_using] = ACTIONS(2834), - [anon_sym_static_assert] = ACTIONS(2834), - [anon_sym_concept] = ACTIONS(2834), - [anon_sym_co_return] = ACTIONS(2834), - [anon_sym_co_yield] = ACTIONS(2834), - [anon_sym_R_DQUOTE] = ACTIONS(2836), - [anon_sym_LR_DQUOTE] = ACTIONS(2836), - [anon_sym_uR_DQUOTE] = ACTIONS(2836), - [anon_sym_UR_DQUOTE] = ACTIONS(2836), - [anon_sym_u8R_DQUOTE] = ACTIONS(2836), - [anon_sym_co_await] = ACTIONS(2834), - [anon_sym_new] = ACTIONS(2834), - [anon_sym_requires] = ACTIONS(2834), - [sym_this] = ACTIONS(2834), - [sym_nullptr] = ACTIONS(2834), - }, - [537] = { - [sym_identifier] = ACTIONS(2838), - [aux_sym_preproc_include_token1] = ACTIONS(2838), - [aux_sym_preproc_def_token1] = ACTIONS(2838), - [aux_sym_preproc_if_token1] = ACTIONS(2838), - [aux_sym_preproc_if_token2] = ACTIONS(2838), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2838), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2838), - [aux_sym_preproc_else_token1] = ACTIONS(2838), - [aux_sym_preproc_elif_token1] = ACTIONS(2838), - [sym_preproc_directive] = ACTIONS(2838), - [anon_sym_LPAREN2] = ACTIONS(2840), - [anon_sym_BANG] = ACTIONS(2840), - [anon_sym_TILDE] = ACTIONS(2840), - [anon_sym_DASH] = ACTIONS(2838), - [anon_sym_PLUS] = ACTIONS(2838), - [anon_sym_STAR] = ACTIONS(2840), - [anon_sym_AMP_AMP] = ACTIONS(2840), - [anon_sym_AMP] = ACTIONS(2838), - [anon_sym_SEMI] = ACTIONS(2840), - [anon_sym_typedef] = ACTIONS(2838), - [anon_sym_extern] = ACTIONS(2838), - [anon_sym___attribute__] = ACTIONS(2838), - [anon_sym_COLON_COLON] = ACTIONS(2840), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2840), - [anon_sym___declspec] = ACTIONS(2838), - [anon_sym___based] = ACTIONS(2838), - [anon_sym___cdecl] = ACTIONS(2838), - [anon_sym___clrcall] = ACTIONS(2838), - [anon_sym___stdcall] = ACTIONS(2838), - [anon_sym___fastcall] = ACTIONS(2838), - [anon_sym___thiscall] = ACTIONS(2838), - [anon_sym___vectorcall] = ACTIONS(2838), - [anon_sym_LBRACE] = ACTIONS(2840), - [anon_sym_LBRACK] = ACTIONS(2838), - [anon_sym_static] = ACTIONS(2838), - [anon_sym_register] = ACTIONS(2838), - [anon_sym_inline] = ACTIONS(2838), - [anon_sym_thread_local] = ACTIONS(2838), - [anon_sym_const] = ACTIONS(2838), - [anon_sym_volatile] = ACTIONS(2838), - [anon_sym_restrict] = ACTIONS(2838), - [anon_sym__Atomic] = ACTIONS(2838), - [anon_sym_mutable] = ACTIONS(2838), - [anon_sym_constexpr] = ACTIONS(2838), - [anon_sym_constinit] = ACTIONS(2838), - [anon_sym_consteval] = ACTIONS(2838), - [anon_sym_signed] = ACTIONS(2838), - [anon_sym_unsigned] = ACTIONS(2838), - [anon_sym_long] = ACTIONS(2838), - [anon_sym_short] = ACTIONS(2838), - [sym_primitive_type] = ACTIONS(2838), - [anon_sym_enum] = ACTIONS(2838), - [anon_sym_class] = ACTIONS(2838), - [anon_sym_struct] = ACTIONS(2838), - [anon_sym_union] = ACTIONS(2838), - [anon_sym_if] = ACTIONS(2838), - [anon_sym_switch] = ACTIONS(2838), - [anon_sym_case] = ACTIONS(2838), - [anon_sym_default] = ACTIONS(2838), - [anon_sym_while] = ACTIONS(2838), - [anon_sym_do] = ACTIONS(2838), - [anon_sym_for] = ACTIONS(2838), - [anon_sym_return] = ACTIONS(2838), - [anon_sym_break] = ACTIONS(2838), - [anon_sym_continue] = ACTIONS(2838), - [anon_sym_goto] = ACTIONS(2838), - [anon_sym_not] = ACTIONS(2838), - [anon_sym_compl] = ACTIONS(2838), - [anon_sym_DASH_DASH] = ACTIONS(2840), - [anon_sym_PLUS_PLUS] = ACTIONS(2840), - [anon_sym_sizeof] = ACTIONS(2838), - [sym_number_literal] = ACTIONS(2840), - [anon_sym_L_SQUOTE] = ACTIONS(2840), - [anon_sym_u_SQUOTE] = ACTIONS(2840), - [anon_sym_U_SQUOTE] = ACTIONS(2840), - [anon_sym_u8_SQUOTE] = ACTIONS(2840), - [anon_sym_SQUOTE] = ACTIONS(2840), - [anon_sym_L_DQUOTE] = ACTIONS(2840), - [anon_sym_u_DQUOTE] = ACTIONS(2840), - [anon_sym_U_DQUOTE] = ACTIONS(2840), - [anon_sym_u8_DQUOTE] = ACTIONS(2840), - [anon_sym_DQUOTE] = ACTIONS(2840), - [sym_true] = ACTIONS(2838), - [sym_false] = ACTIONS(2838), - [sym_null] = ACTIONS(2838), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2838), - [anon_sym_decltype] = ACTIONS(2838), - [anon_sym_virtual] = ACTIONS(2838), - [anon_sym_explicit] = ACTIONS(2838), - [anon_sym_typename] = ACTIONS(2838), - [anon_sym_template] = ACTIONS(2838), - [anon_sym_operator] = ACTIONS(2838), - [anon_sym_try] = ACTIONS(2838), - [anon_sym_delete] = ACTIONS(2838), - [anon_sym_throw] = ACTIONS(2838), - [anon_sym_namespace] = ACTIONS(2838), - [anon_sym_using] = ACTIONS(2838), - [anon_sym_static_assert] = ACTIONS(2838), - [anon_sym_concept] = ACTIONS(2838), - [anon_sym_co_return] = ACTIONS(2838), - [anon_sym_co_yield] = ACTIONS(2838), - [anon_sym_R_DQUOTE] = ACTIONS(2840), - [anon_sym_LR_DQUOTE] = ACTIONS(2840), - [anon_sym_uR_DQUOTE] = ACTIONS(2840), - [anon_sym_UR_DQUOTE] = ACTIONS(2840), - [anon_sym_u8R_DQUOTE] = ACTIONS(2840), - [anon_sym_co_await] = ACTIONS(2838), - [anon_sym_new] = ACTIONS(2838), - [anon_sym_requires] = ACTIONS(2838), - [sym_this] = ACTIONS(2838), - [sym_nullptr] = ACTIONS(2838), - }, - [538] = { - [sym_identifier] = ACTIONS(2842), - [aux_sym_preproc_include_token1] = ACTIONS(2842), - [aux_sym_preproc_def_token1] = ACTIONS(2842), - [aux_sym_preproc_if_token1] = ACTIONS(2842), - [aux_sym_preproc_if_token2] = ACTIONS(2842), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2842), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2842), - [aux_sym_preproc_else_token1] = ACTIONS(2842), - [aux_sym_preproc_elif_token1] = ACTIONS(2842), - [sym_preproc_directive] = ACTIONS(2842), - [anon_sym_LPAREN2] = ACTIONS(2844), - [anon_sym_BANG] = ACTIONS(2844), - [anon_sym_TILDE] = ACTIONS(2844), - [anon_sym_DASH] = ACTIONS(2842), - [anon_sym_PLUS] = ACTIONS(2842), - [anon_sym_STAR] = ACTIONS(2844), - [anon_sym_AMP_AMP] = ACTIONS(2844), - [anon_sym_AMP] = ACTIONS(2842), - [anon_sym_SEMI] = ACTIONS(2844), - [anon_sym_typedef] = ACTIONS(2842), - [anon_sym_extern] = ACTIONS(2842), - [anon_sym___attribute__] = ACTIONS(2842), - [anon_sym_COLON_COLON] = ACTIONS(2844), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2844), - [anon_sym___declspec] = ACTIONS(2842), - [anon_sym___based] = ACTIONS(2842), - [anon_sym___cdecl] = ACTIONS(2842), - [anon_sym___clrcall] = ACTIONS(2842), - [anon_sym___stdcall] = ACTIONS(2842), - [anon_sym___fastcall] = ACTIONS(2842), - [anon_sym___thiscall] = ACTIONS(2842), - [anon_sym___vectorcall] = ACTIONS(2842), - [anon_sym_LBRACE] = ACTIONS(2844), - [anon_sym_LBRACK] = ACTIONS(2842), - [anon_sym_static] = ACTIONS(2842), - [anon_sym_register] = ACTIONS(2842), - [anon_sym_inline] = ACTIONS(2842), - [anon_sym_thread_local] = ACTIONS(2842), - [anon_sym_const] = ACTIONS(2842), - [anon_sym_volatile] = ACTIONS(2842), - [anon_sym_restrict] = ACTIONS(2842), - [anon_sym__Atomic] = ACTIONS(2842), - [anon_sym_mutable] = ACTIONS(2842), - [anon_sym_constexpr] = ACTIONS(2842), - [anon_sym_constinit] = ACTIONS(2842), - [anon_sym_consteval] = ACTIONS(2842), - [anon_sym_signed] = ACTIONS(2842), - [anon_sym_unsigned] = ACTIONS(2842), - [anon_sym_long] = ACTIONS(2842), - [anon_sym_short] = ACTIONS(2842), - [sym_primitive_type] = ACTIONS(2842), - [anon_sym_enum] = ACTIONS(2842), - [anon_sym_class] = ACTIONS(2842), - [anon_sym_struct] = ACTIONS(2842), - [anon_sym_union] = ACTIONS(2842), - [anon_sym_if] = ACTIONS(2842), - [anon_sym_switch] = ACTIONS(2842), - [anon_sym_case] = ACTIONS(2842), - [anon_sym_default] = ACTIONS(2842), - [anon_sym_while] = ACTIONS(2842), - [anon_sym_do] = ACTIONS(2842), - [anon_sym_for] = ACTIONS(2842), - [anon_sym_return] = ACTIONS(2842), - [anon_sym_break] = ACTIONS(2842), - [anon_sym_continue] = ACTIONS(2842), - [anon_sym_goto] = ACTIONS(2842), - [anon_sym_not] = ACTIONS(2842), - [anon_sym_compl] = ACTIONS(2842), - [anon_sym_DASH_DASH] = ACTIONS(2844), - [anon_sym_PLUS_PLUS] = ACTIONS(2844), - [anon_sym_sizeof] = ACTIONS(2842), - [sym_number_literal] = ACTIONS(2844), - [anon_sym_L_SQUOTE] = ACTIONS(2844), - [anon_sym_u_SQUOTE] = ACTIONS(2844), - [anon_sym_U_SQUOTE] = ACTIONS(2844), - [anon_sym_u8_SQUOTE] = ACTIONS(2844), - [anon_sym_SQUOTE] = ACTIONS(2844), - [anon_sym_L_DQUOTE] = ACTIONS(2844), - [anon_sym_u_DQUOTE] = ACTIONS(2844), - [anon_sym_U_DQUOTE] = ACTIONS(2844), - [anon_sym_u8_DQUOTE] = ACTIONS(2844), - [anon_sym_DQUOTE] = ACTIONS(2844), - [sym_true] = ACTIONS(2842), - [sym_false] = ACTIONS(2842), - [sym_null] = ACTIONS(2842), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2842), - [anon_sym_decltype] = ACTIONS(2842), - [anon_sym_virtual] = ACTIONS(2842), - [anon_sym_explicit] = ACTIONS(2842), - [anon_sym_typename] = ACTIONS(2842), - [anon_sym_template] = ACTIONS(2842), - [anon_sym_operator] = ACTIONS(2842), - [anon_sym_try] = ACTIONS(2842), - [anon_sym_delete] = ACTIONS(2842), - [anon_sym_throw] = ACTIONS(2842), - [anon_sym_namespace] = ACTIONS(2842), - [anon_sym_using] = ACTIONS(2842), - [anon_sym_static_assert] = ACTIONS(2842), - [anon_sym_concept] = ACTIONS(2842), - [anon_sym_co_return] = ACTIONS(2842), - [anon_sym_co_yield] = ACTIONS(2842), - [anon_sym_R_DQUOTE] = ACTIONS(2844), - [anon_sym_LR_DQUOTE] = ACTIONS(2844), - [anon_sym_uR_DQUOTE] = ACTIONS(2844), - [anon_sym_UR_DQUOTE] = ACTIONS(2844), - [anon_sym_u8R_DQUOTE] = ACTIONS(2844), - [anon_sym_co_await] = ACTIONS(2842), - [anon_sym_new] = ACTIONS(2842), - [anon_sym_requires] = ACTIONS(2842), - [sym_this] = ACTIONS(2842), - [sym_nullptr] = ACTIONS(2842), - }, - [539] = { - [sym_ms_based_modifier] = STATE(6104), - [sym_ms_unaligned_ptr_modifier] = STATE(4091), - [sym_ms_pointer_modifier] = STATE(3101), - [sym__declarator] = STATE(4939), - [sym_parenthesized_declarator] = STATE(4918), - [sym_attributed_declarator] = STATE(4918), - [sym_pointer_declarator] = STATE(4918), - [sym_function_declarator] = STATE(4918), - [sym_array_declarator] = STATE(4918), - [sym_type_qualifier] = STATE(3370), - [sym__expression] = STATE(2495), - [sym_conditional_expression] = STATE(2574), - [sym_assignment_expression] = STATE(2574), - [sym_pointer_expression] = STATE(2578), - [sym_unary_expression] = STATE(2574), - [sym_binary_expression] = STATE(2574), - [sym_update_expression] = STATE(2574), - [sym_cast_expression] = STATE(2574), - [sym_sizeof_expression] = STATE(2574), - [sym_subscript_expression] = STATE(2578), - [sym_call_expression] = STATE(2578), - [sym_field_expression] = STATE(2578), - [sym_compound_literal_expression] = STATE(2574), - [sym_parenthesized_expression] = STATE(2578), - [sym_char_literal] = STATE(2207), - [sym_concatenated_string] = STATE(2207), - [sym_string_literal] = STATE(1820), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5944), - [sym_reference_declarator] = STATE(4918), - [sym_structured_binding_declarator] = STATE(4918), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(2736), - [sym_raw_string_literal] = STATE(1820), - [sym_co_await_expression] = STATE(2574), - [sym_new_expression] = STATE(2574), - [sym_delete_expression] = STATE(2574), - [sym_requires_clause] = STATE(2574), - [sym_requires_expression] = STATE(2574), - [sym_lambda_expression] = STATE(2574), - [sym_lambda_capture_specifier] = STATE(4479), - [sym_fold_expression] = STATE(2574), - [sym_parameter_pack_expansion] = STATE(2574), - [sym_destructor_name] = STATE(4918), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4540), - [sym_qualified_identifier] = STATE(2735), - [sym_qualified_type_identifier] = STATE(5944), - [sym_operator_name] = STATE(4918), - [sym_user_defined_literal] = STATE(2574), - [aux_sym_type_definition_repeat1] = STATE(3370), - [aux_sym_pointer_declarator_repeat1] = STATE(3101), - [sym_identifier] = ACTIONS(2846), - [anon_sym_LPAREN2] = ACTIONS(2848), - [anon_sym_BANG] = ACTIONS(1531), - [anon_sym_TILDE] = ACTIONS(2850), - [anon_sym_DASH] = ACTIONS(1529), - [anon_sym_PLUS] = ACTIONS(1529), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym___based] = ACTIONS(47), - [sym_ms_restrict_modifier] = ACTIONS(2720), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(2720), - [sym_ms_signed_ptr_modifier] = ACTIONS(2720), - [anon_sym__unaligned] = ACTIONS(2722), - [anon_sym___unaligned] = ACTIONS(2722), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_const] = ACTIONS(2724), - [anon_sym_volatile] = ACTIONS(2724), - [anon_sym_restrict] = ACTIONS(2724), - [anon_sym__Atomic] = ACTIONS(2724), - [anon_sym_mutable] = ACTIONS(2724), - [anon_sym_constexpr] = ACTIONS(2724), - [anon_sym_constinit] = ACTIONS(2724), - [anon_sym_consteval] = ACTIONS(2724), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(1529), - [anon_sym_compl] = ACTIONS(1529), - [anon_sym_DASH_DASH] = ACTIONS(1543), - [anon_sym_PLUS_PLUS] = ACTIONS(1543), - [anon_sym_sizeof] = ACTIONS(1545), - [sym_number_literal] = ACTIONS(1547), - [anon_sym_L_SQUOTE] = ACTIONS(1549), - [anon_sym_u_SQUOTE] = ACTIONS(1549), - [anon_sym_U_SQUOTE] = ACTIONS(1549), - [anon_sym_u8_SQUOTE] = ACTIONS(1549), - [anon_sym_SQUOTE] = ACTIONS(1549), - [anon_sym_L_DQUOTE] = ACTIONS(1551), - [anon_sym_u_DQUOTE] = ACTIONS(1551), - [anon_sym_U_DQUOTE] = ACTIONS(1551), - [anon_sym_u8_DQUOTE] = ACTIONS(1551), - [anon_sym_DQUOTE] = ACTIONS(1551), - [sym_true] = ACTIONS(1553), - [sym_false] = ACTIONS(1553), - [sym_null] = ACTIONS(1553), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_operator] = ACTIONS(1521), - [anon_sym_delete] = ACTIONS(1557), - [anon_sym_R_DQUOTE] = ACTIONS(1559), - [anon_sym_LR_DQUOTE] = ACTIONS(1559), - [anon_sym_uR_DQUOTE] = ACTIONS(1559), - [anon_sym_UR_DQUOTE] = ACTIONS(1559), - [anon_sym_u8R_DQUOTE] = ACTIONS(1559), - [anon_sym_co_await] = ACTIONS(1561), - [anon_sym_new] = ACTIONS(1563), - [anon_sym_requires] = ACTIONS(1565), - [sym_this] = ACTIONS(1553), - [sym_nullptr] = ACTIONS(1553), - }, - [540] = { - [sym_identifier] = ACTIONS(2852), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2854), - [anon_sym_AMP] = ACTIONS(2852), - [anon_sym_SEMI] = ACTIONS(2854), - [anon_sym_typedef] = ACTIONS(2852), - [anon_sym_extern] = ACTIONS(2852), - [anon_sym___attribute__] = ACTIONS(2852), - [anon_sym_COLON_COLON] = ACTIONS(2854), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2854), - [anon_sym___declspec] = ACTIONS(2852), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2852), - [anon_sym_static] = ACTIONS(2852), - [anon_sym_register] = ACTIONS(2852), - [anon_sym_inline] = ACTIONS(2852), - [anon_sym_thread_local] = ACTIONS(2852), - [anon_sym_const] = ACTIONS(2852), - [anon_sym_volatile] = ACTIONS(2852), - [anon_sym_restrict] = ACTIONS(2852), - [anon_sym__Atomic] = ACTIONS(2852), - [anon_sym_mutable] = ACTIONS(2852), - [anon_sym_constexpr] = ACTIONS(2852), - [anon_sym_constinit] = ACTIONS(2852), - [anon_sym_consteval] = ACTIONS(2852), - [anon_sym_signed] = ACTIONS(2852), - [anon_sym_unsigned] = ACTIONS(2852), - [anon_sym_long] = ACTIONS(2852), - [anon_sym_short] = ACTIONS(2852), - [sym_primitive_type] = ACTIONS(2852), - [anon_sym_enum] = ACTIONS(2852), - [anon_sym_class] = 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_return] = ACTIONS(2852), - [anon_sym_break] = ACTIONS(2852), - [anon_sym_continue] = ACTIONS(2852), - [anon_sym_goto] = ACTIONS(2852), - [anon_sym_not] = ACTIONS(2852), - [anon_sym_compl] = ACTIONS(2852), - [anon_sym_DASH_DASH] = ACTIONS(2854), - [anon_sym_PLUS_PLUS] = ACTIONS(2854), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2854), - [anon_sym_u_DQUOTE] = ACTIONS(2854), - [anon_sym_U_DQUOTE] = ACTIONS(2854), - [anon_sym_u8_DQUOTE] = ACTIONS(2854), - [anon_sym_DQUOTE] = ACTIONS(2854), - [sym_true] = ACTIONS(2852), - [sym_false] = ACTIONS(2852), - [sym_null] = ACTIONS(2852), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2852), - [anon_sym_decltype] = ACTIONS(2852), - [anon_sym_virtual] = ACTIONS(2852), - [anon_sym_explicit] = ACTIONS(2852), - [anon_sym_typename] = ACTIONS(2852), - [anon_sym_template] = ACTIONS(2852), - [anon_sym_operator] = ACTIONS(2852), - [anon_sym_try] = ACTIONS(2852), - [anon_sym_delete] = ACTIONS(2852), - [anon_sym_throw] = ACTIONS(2852), - [anon_sym_namespace] = ACTIONS(2852), - [anon_sym_using] = ACTIONS(2852), - [anon_sym_static_assert] = ACTIONS(2852), - [anon_sym_concept] = ACTIONS(2852), - [anon_sym_co_return] = ACTIONS(2852), - [anon_sym_co_yield] = ACTIONS(2852), - [anon_sym_R_DQUOTE] = ACTIONS(2854), - [anon_sym_LR_DQUOTE] = ACTIONS(2854), - [anon_sym_uR_DQUOTE] = ACTIONS(2854), - [anon_sym_UR_DQUOTE] = ACTIONS(2854), - [anon_sym_u8R_DQUOTE] = ACTIONS(2854), - [anon_sym_co_await] = ACTIONS(2852), - [anon_sym_new] = ACTIONS(2852), - [anon_sym_requires] = ACTIONS(2852), - [sym_this] = ACTIONS(2852), - [sym_nullptr] = ACTIONS(2852), - }, - [541] = { - [sym_identifier] = ACTIONS(2856), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2858), - [anon_sym_AMP] = ACTIONS(2856), - [anon_sym_SEMI] = ACTIONS(2858), - [anon_sym_typedef] = ACTIONS(2856), - [anon_sym_extern] = ACTIONS(2856), - [anon_sym___attribute__] = ACTIONS(2856), - [anon_sym_COLON_COLON] = ACTIONS(2858), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2858), - [anon_sym___declspec] = ACTIONS(2856), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2856), - [anon_sym_static] = ACTIONS(2856), - [anon_sym_register] = ACTIONS(2856), - [anon_sym_inline] = ACTIONS(2856), - [anon_sym_thread_local] = ACTIONS(2856), - [anon_sym_const] = ACTIONS(2856), - [anon_sym_volatile] = ACTIONS(2856), - [anon_sym_restrict] = ACTIONS(2856), - [anon_sym__Atomic] = ACTIONS(2856), - [anon_sym_mutable] = ACTIONS(2856), - [anon_sym_constexpr] = ACTIONS(2856), - [anon_sym_constinit] = ACTIONS(2856), - [anon_sym_consteval] = ACTIONS(2856), - [anon_sym_signed] = ACTIONS(2856), - [anon_sym_unsigned] = ACTIONS(2856), - [anon_sym_long] = ACTIONS(2856), - [anon_sym_short] = ACTIONS(2856), - [sym_primitive_type] = ACTIONS(2856), - [anon_sym_enum] = ACTIONS(2856), - [anon_sym_class] = 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_return] = ACTIONS(2856), - [anon_sym_break] = ACTIONS(2856), - [anon_sym_continue] = ACTIONS(2856), - [anon_sym_goto] = ACTIONS(2856), - [anon_sym_not] = ACTIONS(2856), - [anon_sym_compl] = ACTIONS(2856), - [anon_sym_DASH_DASH] = ACTIONS(2858), - [anon_sym_PLUS_PLUS] = ACTIONS(2858), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2858), - [anon_sym_u_DQUOTE] = ACTIONS(2858), - [anon_sym_U_DQUOTE] = ACTIONS(2858), - [anon_sym_u8_DQUOTE] = ACTIONS(2858), - [anon_sym_DQUOTE] = ACTIONS(2858), - [sym_true] = ACTIONS(2856), - [sym_false] = ACTIONS(2856), - [sym_null] = ACTIONS(2856), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2856), - [anon_sym_decltype] = ACTIONS(2856), - [anon_sym_virtual] = ACTIONS(2856), - [anon_sym_explicit] = ACTIONS(2856), - [anon_sym_typename] = ACTIONS(2856), - [anon_sym_template] = ACTIONS(2856), - [anon_sym_operator] = ACTIONS(2856), - [anon_sym_try] = ACTIONS(2856), - [anon_sym_delete] = ACTIONS(2856), - [anon_sym_throw] = ACTIONS(2856), - [anon_sym_namespace] = ACTIONS(2856), - [anon_sym_using] = ACTIONS(2856), - [anon_sym_static_assert] = ACTIONS(2856), - [anon_sym_concept] = ACTIONS(2856), - [anon_sym_co_return] = ACTIONS(2856), - [anon_sym_co_yield] = ACTIONS(2856), - [anon_sym_R_DQUOTE] = ACTIONS(2858), - [anon_sym_LR_DQUOTE] = ACTIONS(2858), - [anon_sym_uR_DQUOTE] = ACTIONS(2858), - [anon_sym_UR_DQUOTE] = ACTIONS(2858), - [anon_sym_u8R_DQUOTE] = ACTIONS(2858), - [anon_sym_co_await] = ACTIONS(2856), - [anon_sym_new] = ACTIONS(2856), - [anon_sym_requires] = ACTIONS(2856), - [sym_this] = ACTIONS(2856), - [sym_nullptr] = ACTIONS(2856), - }, - [542] = { - [sym_identifier] = ACTIONS(2860), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2862), - [anon_sym_AMP] = ACTIONS(2860), - [anon_sym_SEMI] = ACTIONS(2862), - [anon_sym_typedef] = ACTIONS(2860), - [anon_sym_extern] = ACTIONS(2860), - [anon_sym___attribute__] = ACTIONS(2860), - [anon_sym_COLON_COLON] = ACTIONS(2862), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2862), - [anon_sym___declspec] = ACTIONS(2860), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2860), - [anon_sym_static] = ACTIONS(2860), - [anon_sym_register] = ACTIONS(2860), - [anon_sym_inline] = ACTIONS(2860), - [anon_sym_thread_local] = ACTIONS(2860), - [anon_sym_const] = ACTIONS(2860), - [anon_sym_volatile] = ACTIONS(2860), - [anon_sym_restrict] = ACTIONS(2860), - [anon_sym__Atomic] = ACTIONS(2860), - [anon_sym_mutable] = ACTIONS(2860), - [anon_sym_constexpr] = ACTIONS(2860), - [anon_sym_constinit] = ACTIONS(2860), - [anon_sym_consteval] = ACTIONS(2860), - [anon_sym_signed] = ACTIONS(2860), - [anon_sym_unsigned] = ACTIONS(2860), - [anon_sym_long] = ACTIONS(2860), - [anon_sym_short] = ACTIONS(2860), - [sym_primitive_type] = ACTIONS(2860), - [anon_sym_enum] = ACTIONS(2860), - [anon_sym_class] = 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_return] = ACTIONS(2860), - [anon_sym_break] = ACTIONS(2860), - [anon_sym_continue] = ACTIONS(2860), - [anon_sym_goto] = ACTIONS(2860), - [anon_sym_not] = ACTIONS(2860), - [anon_sym_compl] = ACTIONS(2860), - [anon_sym_DASH_DASH] = ACTIONS(2862), - [anon_sym_PLUS_PLUS] = ACTIONS(2862), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2862), - [anon_sym_u_DQUOTE] = ACTIONS(2862), - [anon_sym_U_DQUOTE] = ACTIONS(2862), - [anon_sym_u8_DQUOTE] = ACTIONS(2862), - [anon_sym_DQUOTE] = ACTIONS(2862), - [sym_true] = ACTIONS(2860), - [sym_false] = ACTIONS(2860), - [sym_null] = ACTIONS(2860), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2860), - [anon_sym_decltype] = ACTIONS(2860), - [anon_sym_virtual] = ACTIONS(2860), - [anon_sym_explicit] = ACTIONS(2860), - [anon_sym_typename] = ACTIONS(2860), - [anon_sym_template] = ACTIONS(2860), - [anon_sym_operator] = ACTIONS(2860), - [anon_sym_try] = ACTIONS(2860), - [anon_sym_delete] = ACTIONS(2860), - [anon_sym_throw] = ACTIONS(2860), - [anon_sym_namespace] = ACTIONS(2860), - [anon_sym_using] = ACTIONS(2860), - [anon_sym_static_assert] = ACTIONS(2860), - [anon_sym_concept] = ACTIONS(2860), - [anon_sym_co_return] = ACTIONS(2860), - [anon_sym_co_yield] = ACTIONS(2860), - [anon_sym_R_DQUOTE] = ACTIONS(2862), - [anon_sym_LR_DQUOTE] = ACTIONS(2862), - [anon_sym_uR_DQUOTE] = ACTIONS(2862), - [anon_sym_UR_DQUOTE] = ACTIONS(2862), - [anon_sym_u8R_DQUOTE] = ACTIONS(2862), - [anon_sym_co_await] = ACTIONS(2860), - [anon_sym_new] = ACTIONS(2860), - [anon_sym_requires] = ACTIONS(2860), - [sym_this] = ACTIONS(2860), - [sym_nullptr] = ACTIONS(2860), - }, - [543] = { - [sym_identifier] = ACTIONS(2864), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2866), - [anon_sym_AMP] = ACTIONS(2864), - [anon_sym_SEMI] = ACTIONS(2866), - [anon_sym_typedef] = ACTIONS(2864), - [anon_sym_extern] = ACTIONS(2864), - [anon_sym___attribute__] = ACTIONS(2864), - [anon_sym_COLON_COLON] = ACTIONS(2866), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2866), - [anon_sym___declspec] = ACTIONS(2864), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2864), - [anon_sym_static] = ACTIONS(2864), - [anon_sym_register] = ACTIONS(2864), - [anon_sym_inline] = ACTIONS(2864), - [anon_sym_thread_local] = ACTIONS(2864), - [anon_sym_const] = ACTIONS(2864), - [anon_sym_volatile] = ACTIONS(2864), - [anon_sym_restrict] = ACTIONS(2864), - [anon_sym__Atomic] = ACTIONS(2864), - [anon_sym_mutable] = ACTIONS(2864), - [anon_sym_constexpr] = ACTIONS(2864), - [anon_sym_constinit] = ACTIONS(2864), - [anon_sym_consteval] = ACTIONS(2864), - [anon_sym_signed] = ACTIONS(2864), - [anon_sym_unsigned] = ACTIONS(2864), - [anon_sym_long] = ACTIONS(2864), - [anon_sym_short] = ACTIONS(2864), - [sym_primitive_type] = ACTIONS(2864), - [anon_sym_enum] = ACTIONS(2864), - [anon_sym_class] = 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_return] = ACTIONS(2864), - [anon_sym_break] = ACTIONS(2864), - [anon_sym_continue] = ACTIONS(2864), - [anon_sym_goto] = ACTIONS(2864), - [anon_sym_not] = ACTIONS(2864), - [anon_sym_compl] = ACTIONS(2864), - [anon_sym_DASH_DASH] = ACTIONS(2866), - [anon_sym_PLUS_PLUS] = ACTIONS(2866), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2866), - [anon_sym_u_DQUOTE] = ACTIONS(2866), - [anon_sym_U_DQUOTE] = ACTIONS(2866), - [anon_sym_u8_DQUOTE] = ACTIONS(2866), - [anon_sym_DQUOTE] = ACTIONS(2866), - [sym_true] = ACTIONS(2864), - [sym_false] = ACTIONS(2864), - [sym_null] = ACTIONS(2864), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2864), - [anon_sym_decltype] = ACTIONS(2864), - [anon_sym_virtual] = ACTIONS(2864), - [anon_sym_explicit] = ACTIONS(2864), - [anon_sym_typename] = ACTIONS(2864), - [anon_sym_template] = ACTIONS(2864), - [anon_sym_operator] = ACTIONS(2864), - [anon_sym_try] = ACTIONS(2864), - [anon_sym_delete] = ACTIONS(2864), - [anon_sym_throw] = ACTIONS(2864), - [anon_sym_namespace] = ACTIONS(2864), - [anon_sym_using] = ACTIONS(2864), - [anon_sym_static_assert] = ACTIONS(2864), - [anon_sym_concept] = ACTIONS(2864), - [anon_sym_co_return] = ACTIONS(2864), - [anon_sym_co_yield] = ACTIONS(2864), - [anon_sym_R_DQUOTE] = ACTIONS(2866), - [anon_sym_LR_DQUOTE] = ACTIONS(2866), - [anon_sym_uR_DQUOTE] = ACTIONS(2866), - [anon_sym_UR_DQUOTE] = ACTIONS(2866), - [anon_sym_u8R_DQUOTE] = ACTIONS(2866), - [anon_sym_co_await] = ACTIONS(2864), - [anon_sym_new] = ACTIONS(2864), - [anon_sym_requires] = ACTIONS(2864), - [sym_this] = ACTIONS(2864), - [sym_nullptr] = ACTIONS(2864), - }, - [544] = { - [sym_identifier] = ACTIONS(2868), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2870), - [anon_sym_AMP] = ACTIONS(2868), - [anon_sym_SEMI] = ACTIONS(2870), - [anon_sym_typedef] = ACTIONS(2868), - [anon_sym_extern] = ACTIONS(2868), - [anon_sym___attribute__] = ACTIONS(2868), - [anon_sym_COLON_COLON] = ACTIONS(2870), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2870), - [anon_sym___declspec] = ACTIONS(2868), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2868), - [anon_sym_static] = ACTIONS(2868), - [anon_sym_register] = ACTIONS(2868), - [anon_sym_inline] = ACTIONS(2868), - [anon_sym_thread_local] = ACTIONS(2868), - [anon_sym_const] = ACTIONS(2868), - [anon_sym_volatile] = ACTIONS(2868), - [anon_sym_restrict] = ACTIONS(2868), - [anon_sym__Atomic] = ACTIONS(2868), - [anon_sym_mutable] = ACTIONS(2868), - [anon_sym_constexpr] = ACTIONS(2868), - [anon_sym_constinit] = ACTIONS(2868), - [anon_sym_consteval] = ACTIONS(2868), - [anon_sym_signed] = ACTIONS(2868), - [anon_sym_unsigned] = ACTIONS(2868), - [anon_sym_long] = ACTIONS(2868), - [anon_sym_short] = ACTIONS(2868), - [sym_primitive_type] = ACTIONS(2868), - [anon_sym_enum] = ACTIONS(2868), - [anon_sym_class] = 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_return] = ACTIONS(2868), - [anon_sym_break] = ACTIONS(2868), - [anon_sym_continue] = ACTIONS(2868), - [anon_sym_goto] = ACTIONS(2868), - [anon_sym_not] = ACTIONS(2868), - [anon_sym_compl] = ACTIONS(2868), - [anon_sym_DASH_DASH] = ACTIONS(2870), - [anon_sym_PLUS_PLUS] = ACTIONS(2870), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2870), - [anon_sym_u_DQUOTE] = ACTIONS(2870), - [anon_sym_U_DQUOTE] = ACTIONS(2870), - [anon_sym_u8_DQUOTE] = ACTIONS(2870), - [anon_sym_DQUOTE] = ACTIONS(2870), - [sym_true] = ACTIONS(2868), - [sym_false] = ACTIONS(2868), - [sym_null] = ACTIONS(2868), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2868), - [anon_sym_decltype] = ACTIONS(2868), - [anon_sym_virtual] = ACTIONS(2868), - [anon_sym_explicit] = ACTIONS(2868), - [anon_sym_typename] = ACTIONS(2868), - [anon_sym_template] = ACTIONS(2868), - [anon_sym_operator] = ACTIONS(2868), - [anon_sym_try] = ACTIONS(2868), - [anon_sym_delete] = ACTIONS(2868), - [anon_sym_throw] = ACTIONS(2868), - [anon_sym_namespace] = ACTIONS(2868), - [anon_sym_using] = ACTIONS(2868), - [anon_sym_static_assert] = ACTIONS(2868), - [anon_sym_concept] = ACTIONS(2868), - [anon_sym_co_return] = ACTIONS(2868), - [anon_sym_co_yield] = ACTIONS(2868), - [anon_sym_R_DQUOTE] = ACTIONS(2870), - [anon_sym_LR_DQUOTE] = ACTIONS(2870), - [anon_sym_uR_DQUOTE] = ACTIONS(2870), - [anon_sym_UR_DQUOTE] = ACTIONS(2870), - [anon_sym_u8R_DQUOTE] = ACTIONS(2870), - [anon_sym_co_await] = ACTIONS(2868), - [anon_sym_new] = ACTIONS(2868), - [anon_sym_requires] = ACTIONS(2868), - [sym_this] = ACTIONS(2868), - [sym_nullptr] = ACTIONS(2868), - }, - [545] = { - [sym_identifier] = ACTIONS(2872), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2874), - [anon_sym_AMP] = ACTIONS(2872), - [anon_sym_SEMI] = ACTIONS(2874), - [anon_sym_typedef] = ACTIONS(2872), - [anon_sym_extern] = ACTIONS(2872), - [anon_sym___attribute__] = ACTIONS(2872), - [anon_sym_COLON_COLON] = ACTIONS(2874), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2874), - [anon_sym___declspec] = ACTIONS(2872), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2872), - [anon_sym_static] = ACTIONS(2872), - [anon_sym_register] = ACTIONS(2872), - [anon_sym_inline] = ACTIONS(2872), - [anon_sym_thread_local] = ACTIONS(2872), - [anon_sym_const] = ACTIONS(2872), - [anon_sym_volatile] = ACTIONS(2872), - [anon_sym_restrict] = ACTIONS(2872), - [anon_sym__Atomic] = ACTIONS(2872), - [anon_sym_mutable] = ACTIONS(2872), - [anon_sym_constexpr] = ACTIONS(2872), - [anon_sym_constinit] = ACTIONS(2872), - [anon_sym_consteval] = ACTIONS(2872), - [anon_sym_signed] = ACTIONS(2872), - [anon_sym_unsigned] = ACTIONS(2872), - [anon_sym_long] = ACTIONS(2872), - [anon_sym_short] = ACTIONS(2872), - [sym_primitive_type] = ACTIONS(2872), - [anon_sym_enum] = ACTIONS(2872), - [anon_sym_class] = 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_return] = ACTIONS(2872), - [anon_sym_break] = ACTIONS(2872), - [anon_sym_continue] = ACTIONS(2872), - [anon_sym_goto] = ACTIONS(2872), - [anon_sym_not] = ACTIONS(2872), - [anon_sym_compl] = ACTIONS(2872), - [anon_sym_DASH_DASH] = ACTIONS(2874), - [anon_sym_PLUS_PLUS] = ACTIONS(2874), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2874), - [anon_sym_u_DQUOTE] = ACTIONS(2874), - [anon_sym_U_DQUOTE] = ACTIONS(2874), - [anon_sym_u8_DQUOTE] = ACTIONS(2874), - [anon_sym_DQUOTE] = ACTIONS(2874), - [sym_true] = ACTIONS(2872), - [sym_false] = ACTIONS(2872), - [sym_null] = ACTIONS(2872), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2872), - [anon_sym_decltype] = ACTIONS(2872), - [anon_sym_virtual] = ACTIONS(2872), - [anon_sym_explicit] = ACTIONS(2872), - [anon_sym_typename] = ACTIONS(2872), - [anon_sym_template] = ACTIONS(2872), - [anon_sym_operator] = ACTIONS(2872), - [anon_sym_try] = ACTIONS(2872), - [anon_sym_delete] = ACTIONS(2872), - [anon_sym_throw] = ACTIONS(2872), - [anon_sym_namespace] = ACTIONS(2872), - [anon_sym_using] = ACTIONS(2872), - [anon_sym_static_assert] = ACTIONS(2872), - [anon_sym_concept] = ACTIONS(2872), - [anon_sym_co_return] = ACTIONS(2872), - [anon_sym_co_yield] = ACTIONS(2872), - [anon_sym_R_DQUOTE] = ACTIONS(2874), - [anon_sym_LR_DQUOTE] = ACTIONS(2874), - [anon_sym_uR_DQUOTE] = ACTIONS(2874), - [anon_sym_UR_DQUOTE] = ACTIONS(2874), - [anon_sym_u8R_DQUOTE] = ACTIONS(2874), - [anon_sym_co_await] = ACTIONS(2872), - [anon_sym_new] = ACTIONS(2872), - [anon_sym_requires] = ACTIONS(2872), - [sym_this] = ACTIONS(2872), - [sym_nullptr] = ACTIONS(2872), - }, - [546] = { - [sym_identifier] = ACTIONS(2876), - [aux_sym_preproc_include_token1] = ACTIONS(2876), - [aux_sym_preproc_def_token1] = ACTIONS(2876), - [aux_sym_preproc_if_token1] = ACTIONS(2876), - [aux_sym_preproc_if_token2] = ACTIONS(2876), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2876), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2876), - [aux_sym_preproc_else_token1] = ACTIONS(2876), - [aux_sym_preproc_elif_token1] = ACTIONS(2876), - [sym_preproc_directive] = ACTIONS(2876), - [anon_sym_LPAREN2] = ACTIONS(2878), - [anon_sym_BANG] = ACTIONS(2878), - [anon_sym_TILDE] = ACTIONS(2878), - [anon_sym_DASH] = ACTIONS(2876), - [anon_sym_PLUS] = ACTIONS(2876), - [anon_sym_STAR] = ACTIONS(2878), - [anon_sym_AMP_AMP] = ACTIONS(2878), - [anon_sym_AMP] = ACTIONS(2876), - [anon_sym_SEMI] = ACTIONS(2878), - [anon_sym_typedef] = ACTIONS(2876), - [anon_sym_extern] = ACTIONS(2876), - [anon_sym___attribute__] = ACTIONS(2876), - [anon_sym_COLON_COLON] = ACTIONS(2878), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2878), - [anon_sym___declspec] = ACTIONS(2876), - [anon_sym___based] = ACTIONS(2876), - [anon_sym___cdecl] = ACTIONS(2876), - [anon_sym___clrcall] = ACTIONS(2876), - [anon_sym___stdcall] = ACTIONS(2876), - [anon_sym___fastcall] = ACTIONS(2876), - [anon_sym___thiscall] = ACTIONS(2876), - [anon_sym___vectorcall] = ACTIONS(2876), - [anon_sym_LBRACE] = ACTIONS(2878), - [anon_sym_LBRACK] = ACTIONS(2876), - [anon_sym_static] = ACTIONS(2876), - [anon_sym_register] = ACTIONS(2876), - [anon_sym_inline] = ACTIONS(2876), - [anon_sym_thread_local] = ACTIONS(2876), - [anon_sym_const] = ACTIONS(2876), - [anon_sym_volatile] = ACTIONS(2876), - [anon_sym_restrict] = ACTIONS(2876), - [anon_sym__Atomic] = ACTIONS(2876), - [anon_sym_mutable] = ACTIONS(2876), - [anon_sym_constexpr] = ACTIONS(2876), - [anon_sym_constinit] = ACTIONS(2876), - [anon_sym_consteval] = ACTIONS(2876), - [anon_sym_signed] = ACTIONS(2876), - [anon_sym_unsigned] = ACTIONS(2876), - [anon_sym_long] = ACTIONS(2876), - [anon_sym_short] = ACTIONS(2876), - [sym_primitive_type] = ACTIONS(2876), - [anon_sym_enum] = ACTIONS(2876), - [anon_sym_class] = ACTIONS(2876), - [anon_sym_struct] = ACTIONS(2876), - [anon_sym_union] = ACTIONS(2876), - [anon_sym_if] = ACTIONS(2876), - [anon_sym_switch] = ACTIONS(2876), - [anon_sym_case] = ACTIONS(2876), - [anon_sym_default] = ACTIONS(2876), - [anon_sym_while] = ACTIONS(2876), - [anon_sym_do] = ACTIONS(2876), - [anon_sym_for] = ACTIONS(2876), - [anon_sym_return] = ACTIONS(2876), - [anon_sym_break] = ACTIONS(2876), - [anon_sym_continue] = ACTIONS(2876), - [anon_sym_goto] = ACTIONS(2876), - [anon_sym_not] = ACTIONS(2876), - [anon_sym_compl] = ACTIONS(2876), - [anon_sym_DASH_DASH] = ACTIONS(2878), - [anon_sym_PLUS_PLUS] = ACTIONS(2878), - [anon_sym_sizeof] = ACTIONS(2876), - [sym_number_literal] = ACTIONS(2878), - [anon_sym_L_SQUOTE] = ACTIONS(2878), - [anon_sym_u_SQUOTE] = ACTIONS(2878), - [anon_sym_U_SQUOTE] = ACTIONS(2878), - [anon_sym_u8_SQUOTE] = ACTIONS(2878), - [anon_sym_SQUOTE] = ACTIONS(2878), - [anon_sym_L_DQUOTE] = ACTIONS(2878), - [anon_sym_u_DQUOTE] = ACTIONS(2878), - [anon_sym_U_DQUOTE] = ACTIONS(2878), - [anon_sym_u8_DQUOTE] = ACTIONS(2878), - [anon_sym_DQUOTE] = ACTIONS(2878), - [sym_true] = ACTIONS(2876), - [sym_false] = ACTIONS(2876), - [sym_null] = ACTIONS(2876), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2876), - [anon_sym_decltype] = ACTIONS(2876), - [anon_sym_virtual] = ACTIONS(2876), - [anon_sym_explicit] = ACTIONS(2876), - [anon_sym_typename] = ACTIONS(2876), - [anon_sym_template] = ACTIONS(2876), - [anon_sym_operator] = ACTIONS(2876), - [anon_sym_try] = ACTIONS(2876), - [anon_sym_delete] = ACTIONS(2876), - [anon_sym_throw] = ACTIONS(2876), - [anon_sym_namespace] = ACTIONS(2876), - [anon_sym_using] = ACTIONS(2876), - [anon_sym_static_assert] = ACTIONS(2876), - [anon_sym_concept] = ACTIONS(2876), - [anon_sym_co_return] = ACTIONS(2876), - [anon_sym_co_yield] = ACTIONS(2876), - [anon_sym_R_DQUOTE] = ACTIONS(2878), - [anon_sym_LR_DQUOTE] = ACTIONS(2878), - [anon_sym_uR_DQUOTE] = ACTIONS(2878), - [anon_sym_UR_DQUOTE] = ACTIONS(2878), - [anon_sym_u8R_DQUOTE] = ACTIONS(2878), - [anon_sym_co_await] = ACTIONS(2876), - [anon_sym_new] = ACTIONS(2876), - [anon_sym_requires] = ACTIONS(2876), - [sym_this] = ACTIONS(2876), - [sym_nullptr] = ACTIONS(2876), - }, - [547] = { - [sym_identifier] = ACTIONS(2880), - [aux_sym_preproc_include_token1] = ACTIONS(2880), - [aux_sym_preproc_def_token1] = ACTIONS(2880), - [aux_sym_preproc_if_token1] = ACTIONS(2880), - [aux_sym_preproc_if_token2] = ACTIONS(2880), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2880), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2880), - [aux_sym_preproc_else_token1] = ACTIONS(2880), - [aux_sym_preproc_elif_token1] = ACTIONS(2880), - [sym_preproc_directive] = ACTIONS(2880), - [anon_sym_LPAREN2] = ACTIONS(2882), - [anon_sym_BANG] = ACTIONS(2882), - [anon_sym_TILDE] = ACTIONS(2882), - [anon_sym_DASH] = ACTIONS(2880), - [anon_sym_PLUS] = ACTIONS(2880), - [anon_sym_STAR] = ACTIONS(2882), - [anon_sym_AMP_AMP] = ACTIONS(2882), - [anon_sym_AMP] = ACTIONS(2880), - [anon_sym_SEMI] = ACTIONS(2882), - [anon_sym_typedef] = ACTIONS(2880), - [anon_sym_extern] = ACTIONS(2880), - [anon_sym___attribute__] = ACTIONS(2880), - [anon_sym_COLON_COLON] = ACTIONS(2882), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2882), - [anon_sym___declspec] = ACTIONS(2880), - [anon_sym___based] = ACTIONS(2880), - [anon_sym___cdecl] = ACTIONS(2880), - [anon_sym___clrcall] = ACTIONS(2880), - [anon_sym___stdcall] = ACTIONS(2880), - [anon_sym___fastcall] = ACTIONS(2880), - [anon_sym___thiscall] = ACTIONS(2880), - [anon_sym___vectorcall] = ACTIONS(2880), - [anon_sym_LBRACE] = ACTIONS(2882), - [anon_sym_LBRACK] = ACTIONS(2880), - [anon_sym_static] = ACTIONS(2880), - [anon_sym_register] = ACTIONS(2880), - [anon_sym_inline] = ACTIONS(2880), - [anon_sym_thread_local] = ACTIONS(2880), - [anon_sym_const] = ACTIONS(2880), - [anon_sym_volatile] = ACTIONS(2880), - [anon_sym_restrict] = ACTIONS(2880), - [anon_sym__Atomic] = ACTIONS(2880), - [anon_sym_mutable] = ACTIONS(2880), - [anon_sym_constexpr] = ACTIONS(2880), - [anon_sym_constinit] = ACTIONS(2880), - [anon_sym_consteval] = ACTIONS(2880), - [anon_sym_signed] = ACTIONS(2880), - [anon_sym_unsigned] = ACTIONS(2880), - [anon_sym_long] = ACTIONS(2880), - [anon_sym_short] = ACTIONS(2880), - [sym_primitive_type] = ACTIONS(2880), - [anon_sym_enum] = ACTIONS(2880), - [anon_sym_class] = ACTIONS(2880), - [anon_sym_struct] = ACTIONS(2880), - [anon_sym_union] = ACTIONS(2880), - [anon_sym_if] = ACTIONS(2880), - [anon_sym_switch] = ACTIONS(2880), - [anon_sym_case] = ACTIONS(2880), - [anon_sym_default] = ACTIONS(2880), - [anon_sym_while] = ACTIONS(2880), - [anon_sym_do] = ACTIONS(2880), - [anon_sym_for] = ACTIONS(2880), - [anon_sym_return] = ACTIONS(2880), - [anon_sym_break] = ACTIONS(2880), - [anon_sym_continue] = ACTIONS(2880), - [anon_sym_goto] = ACTIONS(2880), - [anon_sym_not] = ACTIONS(2880), - [anon_sym_compl] = ACTIONS(2880), - [anon_sym_DASH_DASH] = ACTIONS(2882), - [anon_sym_PLUS_PLUS] = ACTIONS(2882), - [anon_sym_sizeof] = ACTIONS(2880), - [sym_number_literal] = ACTIONS(2882), - [anon_sym_L_SQUOTE] = ACTIONS(2882), - [anon_sym_u_SQUOTE] = ACTIONS(2882), - [anon_sym_U_SQUOTE] = ACTIONS(2882), - [anon_sym_u8_SQUOTE] = ACTIONS(2882), - [anon_sym_SQUOTE] = ACTIONS(2882), - [anon_sym_L_DQUOTE] = ACTIONS(2882), - [anon_sym_u_DQUOTE] = ACTIONS(2882), - [anon_sym_U_DQUOTE] = ACTIONS(2882), - [anon_sym_u8_DQUOTE] = ACTIONS(2882), - [anon_sym_DQUOTE] = ACTIONS(2882), - [sym_true] = ACTIONS(2880), - [sym_false] = ACTIONS(2880), - [sym_null] = ACTIONS(2880), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2880), - [anon_sym_decltype] = ACTIONS(2880), - [anon_sym_virtual] = ACTIONS(2880), - [anon_sym_explicit] = ACTIONS(2880), - [anon_sym_typename] = ACTIONS(2880), - [anon_sym_template] = ACTIONS(2880), - [anon_sym_operator] = ACTIONS(2880), - [anon_sym_try] = ACTIONS(2880), - [anon_sym_delete] = ACTIONS(2880), - [anon_sym_throw] = ACTIONS(2880), - [anon_sym_namespace] = ACTIONS(2880), - [anon_sym_using] = ACTIONS(2880), - [anon_sym_static_assert] = ACTIONS(2880), - [anon_sym_concept] = ACTIONS(2880), - [anon_sym_co_return] = ACTIONS(2880), - [anon_sym_co_yield] = ACTIONS(2880), - [anon_sym_R_DQUOTE] = ACTIONS(2882), - [anon_sym_LR_DQUOTE] = ACTIONS(2882), - [anon_sym_uR_DQUOTE] = ACTIONS(2882), - [anon_sym_UR_DQUOTE] = ACTIONS(2882), - [anon_sym_u8R_DQUOTE] = ACTIONS(2882), - [anon_sym_co_await] = ACTIONS(2880), - [anon_sym_new] = ACTIONS(2880), - [anon_sym_requires] = ACTIONS(2880), - [sym_this] = ACTIONS(2880), - [sym_nullptr] = ACTIONS(2880), - }, - [548] = { - [sym_identifier] = ACTIONS(2884), - [aux_sym_preproc_include_token1] = ACTIONS(2884), - [aux_sym_preproc_def_token1] = ACTIONS(2884), - [aux_sym_preproc_if_token1] = ACTIONS(2884), - [aux_sym_preproc_if_token2] = ACTIONS(2884), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2884), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2884), - [aux_sym_preproc_else_token1] = ACTIONS(2884), - [aux_sym_preproc_elif_token1] = ACTIONS(2884), - [sym_preproc_directive] = ACTIONS(2884), - [anon_sym_LPAREN2] = ACTIONS(2886), - [anon_sym_BANG] = ACTIONS(2886), - [anon_sym_TILDE] = ACTIONS(2886), - [anon_sym_DASH] = ACTIONS(2884), - [anon_sym_PLUS] = ACTIONS(2884), - [anon_sym_STAR] = ACTIONS(2886), - [anon_sym_AMP_AMP] = ACTIONS(2886), - [anon_sym_AMP] = ACTIONS(2884), - [anon_sym_SEMI] = ACTIONS(2886), - [anon_sym_typedef] = ACTIONS(2884), - [anon_sym_extern] = ACTIONS(2884), - [anon_sym___attribute__] = ACTIONS(2884), - [anon_sym_COLON_COLON] = ACTIONS(2886), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2886), - [anon_sym___declspec] = ACTIONS(2884), - [anon_sym___based] = ACTIONS(2884), - [anon_sym___cdecl] = ACTIONS(2884), - [anon_sym___clrcall] = ACTIONS(2884), - [anon_sym___stdcall] = ACTIONS(2884), - [anon_sym___fastcall] = ACTIONS(2884), - [anon_sym___thiscall] = ACTIONS(2884), - [anon_sym___vectorcall] = ACTIONS(2884), - [anon_sym_LBRACE] = ACTIONS(2886), - [anon_sym_LBRACK] = ACTIONS(2884), - [anon_sym_static] = ACTIONS(2884), - [anon_sym_register] = ACTIONS(2884), - [anon_sym_inline] = ACTIONS(2884), - [anon_sym_thread_local] = ACTIONS(2884), - [anon_sym_const] = ACTIONS(2884), - [anon_sym_volatile] = ACTIONS(2884), - [anon_sym_restrict] = ACTIONS(2884), - [anon_sym__Atomic] = ACTIONS(2884), - [anon_sym_mutable] = ACTIONS(2884), - [anon_sym_constexpr] = ACTIONS(2884), - [anon_sym_constinit] = ACTIONS(2884), - [anon_sym_consteval] = ACTIONS(2884), - [anon_sym_signed] = ACTIONS(2884), - [anon_sym_unsigned] = ACTIONS(2884), - [anon_sym_long] = ACTIONS(2884), - [anon_sym_short] = ACTIONS(2884), - [sym_primitive_type] = ACTIONS(2884), - [anon_sym_enum] = ACTIONS(2884), - [anon_sym_class] = ACTIONS(2884), - [anon_sym_struct] = ACTIONS(2884), - [anon_sym_union] = ACTIONS(2884), - [anon_sym_if] = ACTIONS(2884), - [anon_sym_switch] = ACTIONS(2884), - [anon_sym_case] = ACTIONS(2884), - [anon_sym_default] = ACTIONS(2884), - [anon_sym_while] = ACTIONS(2884), - [anon_sym_do] = ACTIONS(2884), - [anon_sym_for] = ACTIONS(2884), - [anon_sym_return] = ACTIONS(2884), - [anon_sym_break] = ACTIONS(2884), - [anon_sym_continue] = ACTIONS(2884), - [anon_sym_goto] = ACTIONS(2884), - [anon_sym_not] = ACTIONS(2884), - [anon_sym_compl] = ACTIONS(2884), - [anon_sym_DASH_DASH] = ACTIONS(2886), - [anon_sym_PLUS_PLUS] = ACTIONS(2886), - [anon_sym_sizeof] = ACTIONS(2884), - [sym_number_literal] = ACTIONS(2886), - [anon_sym_L_SQUOTE] = ACTIONS(2886), - [anon_sym_u_SQUOTE] = ACTIONS(2886), - [anon_sym_U_SQUOTE] = ACTIONS(2886), - [anon_sym_u8_SQUOTE] = ACTIONS(2886), - [anon_sym_SQUOTE] = ACTIONS(2886), - [anon_sym_L_DQUOTE] = ACTIONS(2886), - [anon_sym_u_DQUOTE] = ACTIONS(2886), - [anon_sym_U_DQUOTE] = ACTIONS(2886), - [anon_sym_u8_DQUOTE] = ACTIONS(2886), - [anon_sym_DQUOTE] = ACTIONS(2886), - [sym_true] = ACTIONS(2884), - [sym_false] = ACTIONS(2884), - [sym_null] = ACTIONS(2884), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2884), - [anon_sym_decltype] = ACTIONS(2884), - [anon_sym_virtual] = ACTIONS(2884), - [anon_sym_explicit] = ACTIONS(2884), - [anon_sym_typename] = ACTIONS(2884), - [anon_sym_template] = ACTIONS(2884), - [anon_sym_operator] = ACTIONS(2884), - [anon_sym_try] = ACTIONS(2884), - [anon_sym_delete] = ACTIONS(2884), - [anon_sym_throw] = ACTIONS(2884), - [anon_sym_namespace] = ACTIONS(2884), - [anon_sym_using] = ACTIONS(2884), - [anon_sym_static_assert] = ACTIONS(2884), - [anon_sym_concept] = ACTIONS(2884), - [anon_sym_co_return] = ACTIONS(2884), - [anon_sym_co_yield] = ACTIONS(2884), - [anon_sym_R_DQUOTE] = ACTIONS(2886), - [anon_sym_LR_DQUOTE] = ACTIONS(2886), - [anon_sym_uR_DQUOTE] = ACTIONS(2886), - [anon_sym_UR_DQUOTE] = ACTIONS(2886), - [anon_sym_u8R_DQUOTE] = ACTIONS(2886), - [anon_sym_co_await] = ACTIONS(2884), - [anon_sym_new] = ACTIONS(2884), - [anon_sym_requires] = ACTIONS(2884), - [sym_this] = ACTIONS(2884), - [sym_nullptr] = ACTIONS(2884), - }, - [549] = { - [sym_identifier] = ACTIONS(2888), - [aux_sym_preproc_include_token1] = ACTIONS(2888), - [aux_sym_preproc_def_token1] = ACTIONS(2888), - [aux_sym_preproc_if_token1] = ACTIONS(2888), - [aux_sym_preproc_if_token2] = ACTIONS(2888), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2888), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2888), - [aux_sym_preproc_else_token1] = ACTIONS(2888), - [aux_sym_preproc_elif_token1] = ACTIONS(2888), - [sym_preproc_directive] = ACTIONS(2888), - [anon_sym_LPAREN2] = ACTIONS(2890), - [anon_sym_BANG] = ACTIONS(2890), - [anon_sym_TILDE] = ACTIONS(2890), - [anon_sym_DASH] = ACTIONS(2888), - [anon_sym_PLUS] = ACTIONS(2888), - [anon_sym_STAR] = ACTIONS(2890), - [anon_sym_AMP_AMP] = ACTIONS(2890), - [anon_sym_AMP] = ACTIONS(2888), - [anon_sym_SEMI] = ACTIONS(2890), - [anon_sym_typedef] = ACTIONS(2888), - [anon_sym_extern] = ACTIONS(2888), - [anon_sym___attribute__] = ACTIONS(2888), - [anon_sym_COLON_COLON] = ACTIONS(2890), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2890), - [anon_sym___declspec] = ACTIONS(2888), - [anon_sym___based] = ACTIONS(2888), - [anon_sym___cdecl] = ACTIONS(2888), - [anon_sym___clrcall] = ACTIONS(2888), - [anon_sym___stdcall] = ACTIONS(2888), - [anon_sym___fastcall] = ACTIONS(2888), - [anon_sym___thiscall] = ACTIONS(2888), - [anon_sym___vectorcall] = ACTIONS(2888), - [anon_sym_LBRACE] = ACTIONS(2890), - [anon_sym_LBRACK] = ACTIONS(2888), - [anon_sym_static] = ACTIONS(2888), - [anon_sym_register] = ACTIONS(2888), - [anon_sym_inline] = ACTIONS(2888), - [anon_sym_thread_local] = ACTIONS(2888), - [anon_sym_const] = ACTIONS(2888), - [anon_sym_volatile] = ACTIONS(2888), - [anon_sym_restrict] = ACTIONS(2888), - [anon_sym__Atomic] = ACTIONS(2888), - [anon_sym_mutable] = ACTIONS(2888), - [anon_sym_constexpr] = ACTIONS(2888), - [anon_sym_constinit] = ACTIONS(2888), - [anon_sym_consteval] = ACTIONS(2888), - [anon_sym_signed] = ACTIONS(2888), - [anon_sym_unsigned] = ACTIONS(2888), - [anon_sym_long] = ACTIONS(2888), - [anon_sym_short] = ACTIONS(2888), - [sym_primitive_type] = ACTIONS(2888), - [anon_sym_enum] = ACTIONS(2888), - [anon_sym_class] = ACTIONS(2888), - [anon_sym_struct] = ACTIONS(2888), - [anon_sym_union] = ACTIONS(2888), - [anon_sym_if] = ACTIONS(2888), - [anon_sym_switch] = ACTIONS(2888), - [anon_sym_case] = ACTIONS(2888), - [anon_sym_default] = ACTIONS(2888), - [anon_sym_while] = ACTIONS(2888), - [anon_sym_do] = ACTIONS(2888), - [anon_sym_for] = ACTIONS(2888), - [anon_sym_return] = ACTIONS(2888), - [anon_sym_break] = ACTIONS(2888), - [anon_sym_continue] = ACTIONS(2888), - [anon_sym_goto] = ACTIONS(2888), - [anon_sym_not] = ACTIONS(2888), - [anon_sym_compl] = ACTIONS(2888), - [anon_sym_DASH_DASH] = ACTIONS(2890), - [anon_sym_PLUS_PLUS] = ACTIONS(2890), - [anon_sym_sizeof] = ACTIONS(2888), - [sym_number_literal] = ACTIONS(2890), - [anon_sym_L_SQUOTE] = ACTIONS(2890), - [anon_sym_u_SQUOTE] = ACTIONS(2890), - [anon_sym_U_SQUOTE] = ACTIONS(2890), - [anon_sym_u8_SQUOTE] = ACTIONS(2890), - [anon_sym_SQUOTE] = ACTIONS(2890), - [anon_sym_L_DQUOTE] = ACTIONS(2890), - [anon_sym_u_DQUOTE] = ACTIONS(2890), - [anon_sym_U_DQUOTE] = ACTIONS(2890), - [anon_sym_u8_DQUOTE] = ACTIONS(2890), - [anon_sym_DQUOTE] = ACTIONS(2890), - [sym_true] = ACTIONS(2888), - [sym_false] = ACTIONS(2888), - [sym_null] = ACTIONS(2888), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2888), - [anon_sym_decltype] = ACTIONS(2888), - [anon_sym_virtual] = ACTIONS(2888), - [anon_sym_explicit] = ACTIONS(2888), - [anon_sym_typename] = ACTIONS(2888), - [anon_sym_template] = ACTIONS(2888), - [anon_sym_operator] = ACTIONS(2888), - [anon_sym_try] = ACTIONS(2888), - [anon_sym_delete] = ACTIONS(2888), - [anon_sym_throw] = ACTIONS(2888), - [anon_sym_namespace] = ACTIONS(2888), - [anon_sym_using] = ACTIONS(2888), - [anon_sym_static_assert] = ACTIONS(2888), - [anon_sym_concept] = ACTIONS(2888), - [anon_sym_co_return] = ACTIONS(2888), - [anon_sym_co_yield] = ACTIONS(2888), - [anon_sym_R_DQUOTE] = ACTIONS(2890), - [anon_sym_LR_DQUOTE] = ACTIONS(2890), - [anon_sym_uR_DQUOTE] = ACTIONS(2890), - [anon_sym_UR_DQUOTE] = ACTIONS(2890), - [anon_sym_u8R_DQUOTE] = ACTIONS(2890), - [anon_sym_co_await] = ACTIONS(2888), - [anon_sym_new] = ACTIONS(2888), - [anon_sym_requires] = ACTIONS(2888), - [sym_this] = ACTIONS(2888), - [sym_nullptr] = ACTIONS(2888), - }, - [550] = { - [sym_identifier] = ACTIONS(2892), - [aux_sym_preproc_include_token1] = ACTIONS(2892), - [aux_sym_preproc_def_token1] = ACTIONS(2892), - [aux_sym_preproc_if_token1] = ACTIONS(2892), - [aux_sym_preproc_if_token2] = ACTIONS(2892), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2892), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2892), - [aux_sym_preproc_else_token1] = ACTIONS(2892), - [aux_sym_preproc_elif_token1] = ACTIONS(2892), - [sym_preproc_directive] = ACTIONS(2892), - [anon_sym_LPAREN2] = ACTIONS(2894), - [anon_sym_BANG] = ACTIONS(2894), - [anon_sym_TILDE] = ACTIONS(2894), - [anon_sym_DASH] = ACTIONS(2892), - [anon_sym_PLUS] = ACTIONS(2892), - [anon_sym_STAR] = ACTIONS(2894), - [anon_sym_AMP_AMP] = ACTIONS(2894), - [anon_sym_AMP] = ACTIONS(2892), - [anon_sym_SEMI] = ACTIONS(2894), - [anon_sym_typedef] = ACTIONS(2892), - [anon_sym_extern] = ACTIONS(2892), - [anon_sym___attribute__] = ACTIONS(2892), - [anon_sym_COLON_COLON] = ACTIONS(2894), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2894), - [anon_sym___declspec] = ACTIONS(2892), - [anon_sym___based] = ACTIONS(2892), - [anon_sym___cdecl] = ACTIONS(2892), - [anon_sym___clrcall] = ACTIONS(2892), - [anon_sym___stdcall] = ACTIONS(2892), - [anon_sym___fastcall] = ACTIONS(2892), - [anon_sym___thiscall] = ACTIONS(2892), - [anon_sym___vectorcall] = ACTIONS(2892), - [anon_sym_LBRACE] = ACTIONS(2894), - [anon_sym_LBRACK] = ACTIONS(2892), - [anon_sym_static] = ACTIONS(2892), - [anon_sym_register] = ACTIONS(2892), - [anon_sym_inline] = ACTIONS(2892), - [anon_sym_thread_local] = ACTIONS(2892), - [anon_sym_const] = ACTIONS(2892), - [anon_sym_volatile] = ACTIONS(2892), - [anon_sym_restrict] = ACTIONS(2892), - [anon_sym__Atomic] = ACTIONS(2892), - [anon_sym_mutable] = ACTIONS(2892), - [anon_sym_constexpr] = ACTIONS(2892), - [anon_sym_constinit] = ACTIONS(2892), - [anon_sym_consteval] = ACTIONS(2892), - [anon_sym_signed] = ACTIONS(2892), - [anon_sym_unsigned] = ACTIONS(2892), - [anon_sym_long] = ACTIONS(2892), - [anon_sym_short] = ACTIONS(2892), - [sym_primitive_type] = ACTIONS(2892), - [anon_sym_enum] = ACTIONS(2892), - [anon_sym_class] = ACTIONS(2892), - [anon_sym_struct] = ACTIONS(2892), - [anon_sym_union] = ACTIONS(2892), - [anon_sym_if] = ACTIONS(2892), - [anon_sym_switch] = ACTIONS(2892), - [anon_sym_case] = ACTIONS(2892), - [anon_sym_default] = ACTIONS(2892), - [anon_sym_while] = ACTIONS(2892), - [anon_sym_do] = ACTIONS(2892), - [anon_sym_for] = ACTIONS(2892), - [anon_sym_return] = ACTIONS(2892), - [anon_sym_break] = ACTIONS(2892), - [anon_sym_continue] = ACTIONS(2892), - [anon_sym_goto] = ACTIONS(2892), - [anon_sym_not] = ACTIONS(2892), - [anon_sym_compl] = ACTIONS(2892), - [anon_sym_DASH_DASH] = ACTIONS(2894), - [anon_sym_PLUS_PLUS] = ACTIONS(2894), - [anon_sym_sizeof] = ACTIONS(2892), - [sym_number_literal] = ACTIONS(2894), - [anon_sym_L_SQUOTE] = ACTIONS(2894), - [anon_sym_u_SQUOTE] = ACTIONS(2894), - [anon_sym_U_SQUOTE] = ACTIONS(2894), - [anon_sym_u8_SQUOTE] = ACTIONS(2894), - [anon_sym_SQUOTE] = ACTIONS(2894), - [anon_sym_L_DQUOTE] = ACTIONS(2894), - [anon_sym_u_DQUOTE] = ACTIONS(2894), - [anon_sym_U_DQUOTE] = ACTIONS(2894), - [anon_sym_u8_DQUOTE] = ACTIONS(2894), - [anon_sym_DQUOTE] = ACTIONS(2894), - [sym_true] = ACTIONS(2892), - [sym_false] = ACTIONS(2892), - [sym_null] = ACTIONS(2892), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2892), - [anon_sym_decltype] = ACTIONS(2892), - [anon_sym_virtual] = ACTIONS(2892), - [anon_sym_explicit] = ACTIONS(2892), - [anon_sym_typename] = ACTIONS(2892), - [anon_sym_template] = ACTIONS(2892), - [anon_sym_operator] = ACTIONS(2892), - [anon_sym_try] = ACTIONS(2892), - [anon_sym_delete] = ACTIONS(2892), - [anon_sym_throw] = ACTIONS(2892), - [anon_sym_namespace] = ACTIONS(2892), - [anon_sym_using] = ACTIONS(2892), - [anon_sym_static_assert] = ACTIONS(2892), - [anon_sym_concept] = ACTIONS(2892), - [anon_sym_co_return] = ACTIONS(2892), - [anon_sym_co_yield] = ACTIONS(2892), - [anon_sym_R_DQUOTE] = ACTIONS(2894), - [anon_sym_LR_DQUOTE] = ACTIONS(2894), - [anon_sym_uR_DQUOTE] = ACTIONS(2894), - [anon_sym_UR_DQUOTE] = ACTIONS(2894), - [anon_sym_u8R_DQUOTE] = ACTIONS(2894), - [anon_sym_co_await] = ACTIONS(2892), - [anon_sym_new] = ACTIONS(2892), - [anon_sym_requires] = ACTIONS(2892), - [sym_this] = ACTIONS(2892), - [sym_nullptr] = ACTIONS(2892), - }, - [551] = { - [sym_identifier] = ACTIONS(2896), - [aux_sym_preproc_include_token1] = ACTIONS(2896), - [aux_sym_preproc_def_token1] = ACTIONS(2896), - [aux_sym_preproc_if_token1] = ACTIONS(2896), - [aux_sym_preproc_if_token2] = ACTIONS(2896), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2896), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2896), - [aux_sym_preproc_else_token1] = ACTIONS(2896), - [aux_sym_preproc_elif_token1] = ACTIONS(2896), - [sym_preproc_directive] = ACTIONS(2896), - [anon_sym_LPAREN2] = ACTIONS(2898), - [anon_sym_BANG] = ACTIONS(2898), - [anon_sym_TILDE] = ACTIONS(2898), - [anon_sym_DASH] = ACTIONS(2896), - [anon_sym_PLUS] = ACTIONS(2896), - [anon_sym_STAR] = ACTIONS(2898), - [anon_sym_AMP_AMP] = ACTIONS(2898), - [anon_sym_AMP] = ACTIONS(2896), - [anon_sym_SEMI] = ACTIONS(2898), - [anon_sym_typedef] = ACTIONS(2896), - [anon_sym_extern] = ACTIONS(2896), - [anon_sym___attribute__] = ACTIONS(2896), - [anon_sym_COLON_COLON] = ACTIONS(2898), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2898), - [anon_sym___declspec] = ACTIONS(2896), - [anon_sym___based] = ACTIONS(2896), - [anon_sym___cdecl] = ACTIONS(2896), - [anon_sym___clrcall] = ACTIONS(2896), - [anon_sym___stdcall] = ACTIONS(2896), - [anon_sym___fastcall] = ACTIONS(2896), - [anon_sym___thiscall] = ACTIONS(2896), - [anon_sym___vectorcall] = ACTIONS(2896), - [anon_sym_LBRACE] = ACTIONS(2898), - [anon_sym_LBRACK] = ACTIONS(2896), - [anon_sym_static] = ACTIONS(2896), - [anon_sym_register] = ACTIONS(2896), - [anon_sym_inline] = ACTIONS(2896), - [anon_sym_thread_local] = ACTIONS(2896), - [anon_sym_const] = ACTIONS(2896), - [anon_sym_volatile] = ACTIONS(2896), - [anon_sym_restrict] = ACTIONS(2896), - [anon_sym__Atomic] = ACTIONS(2896), - [anon_sym_mutable] = ACTIONS(2896), - [anon_sym_constexpr] = ACTIONS(2896), - [anon_sym_constinit] = ACTIONS(2896), - [anon_sym_consteval] = ACTIONS(2896), - [anon_sym_signed] = ACTIONS(2896), - [anon_sym_unsigned] = ACTIONS(2896), - [anon_sym_long] = ACTIONS(2896), - [anon_sym_short] = ACTIONS(2896), - [sym_primitive_type] = ACTIONS(2896), - [anon_sym_enum] = ACTIONS(2896), - [anon_sym_class] = ACTIONS(2896), - [anon_sym_struct] = ACTIONS(2896), - [anon_sym_union] = ACTIONS(2896), - [anon_sym_if] = ACTIONS(2896), - [anon_sym_switch] = ACTIONS(2896), - [anon_sym_case] = ACTIONS(2896), - [anon_sym_default] = ACTIONS(2896), - [anon_sym_while] = ACTIONS(2896), - [anon_sym_do] = ACTIONS(2896), - [anon_sym_for] = ACTIONS(2896), - [anon_sym_return] = ACTIONS(2896), - [anon_sym_break] = ACTIONS(2896), - [anon_sym_continue] = ACTIONS(2896), - [anon_sym_goto] = ACTIONS(2896), - [anon_sym_not] = ACTIONS(2896), - [anon_sym_compl] = ACTIONS(2896), - [anon_sym_DASH_DASH] = ACTIONS(2898), - [anon_sym_PLUS_PLUS] = ACTIONS(2898), - [anon_sym_sizeof] = ACTIONS(2896), - [sym_number_literal] = ACTIONS(2898), - [anon_sym_L_SQUOTE] = ACTIONS(2898), - [anon_sym_u_SQUOTE] = ACTIONS(2898), - [anon_sym_U_SQUOTE] = ACTIONS(2898), - [anon_sym_u8_SQUOTE] = ACTIONS(2898), - [anon_sym_SQUOTE] = ACTIONS(2898), - [anon_sym_L_DQUOTE] = ACTIONS(2898), - [anon_sym_u_DQUOTE] = ACTIONS(2898), - [anon_sym_U_DQUOTE] = ACTIONS(2898), - [anon_sym_u8_DQUOTE] = ACTIONS(2898), - [anon_sym_DQUOTE] = ACTIONS(2898), - [sym_true] = ACTIONS(2896), - [sym_false] = ACTIONS(2896), - [sym_null] = ACTIONS(2896), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2896), - [anon_sym_decltype] = ACTIONS(2896), - [anon_sym_virtual] = ACTIONS(2896), - [anon_sym_explicit] = ACTIONS(2896), - [anon_sym_typename] = ACTIONS(2896), - [anon_sym_template] = ACTIONS(2896), - [anon_sym_operator] = ACTIONS(2896), - [anon_sym_try] = ACTIONS(2896), - [anon_sym_delete] = ACTIONS(2896), - [anon_sym_throw] = ACTIONS(2896), - [anon_sym_namespace] = ACTIONS(2896), - [anon_sym_using] = ACTIONS(2896), - [anon_sym_static_assert] = ACTIONS(2896), - [anon_sym_concept] = ACTIONS(2896), - [anon_sym_co_return] = ACTIONS(2896), - [anon_sym_co_yield] = ACTIONS(2896), - [anon_sym_R_DQUOTE] = ACTIONS(2898), - [anon_sym_LR_DQUOTE] = ACTIONS(2898), - [anon_sym_uR_DQUOTE] = ACTIONS(2898), - [anon_sym_UR_DQUOTE] = ACTIONS(2898), - [anon_sym_u8R_DQUOTE] = ACTIONS(2898), - [anon_sym_co_await] = ACTIONS(2896), - [anon_sym_new] = ACTIONS(2896), - [anon_sym_requires] = ACTIONS(2896), - [sym_this] = ACTIONS(2896), - [sym_nullptr] = ACTIONS(2896), - }, - [552] = { [sym_identifier] = ACTIONS(2900), [aux_sym_preproc_include_token1] = ACTIONS(2900), [aux_sym_preproc_def_token1] = ACTIONS(2900), @@ -99815,11 +121443,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(2900), [anon_sym_thread_local] = ACTIONS(2900), [anon_sym_const] = ACTIONS(2900), + [anon_sym_constexpr] = ACTIONS(2900), [anon_sym_volatile] = ACTIONS(2900), [anon_sym_restrict] = ACTIONS(2900), + [anon_sym___restrict__] = ACTIONS(2900), [anon_sym__Atomic] = ACTIONS(2900), + [anon_sym__Noreturn] = ACTIONS(2900), + [anon_sym_noreturn] = ACTIONS(2900), [anon_sym_mutable] = ACTIONS(2900), - [anon_sym_constexpr] = ACTIONS(2900), [anon_sym_constinit] = ACTIONS(2900), [anon_sym_consteval] = ACTIONS(2900), [anon_sym_signed] = ACTIONS(2900), @@ -99832,6 +121463,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(2900), [anon_sym_union] = ACTIONS(2900), [anon_sym_if] = ACTIONS(2900), + [anon_sym_else] = ACTIONS(2900), [anon_sym_switch] = ACTIONS(2900), [anon_sym_case] = ACTIONS(2900), [anon_sym_default] = ACTIONS(2900), @@ -99847,6 +121479,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(2902), [anon_sym_PLUS_PLUS] = ACTIONS(2902), [anon_sym_sizeof] = ACTIONS(2900), + [anon_sym_offsetof] = ACTIONS(2900), + [anon_sym__Generic] = ACTIONS(2900), + [anon_sym_asm] = ACTIONS(2900), + [anon_sym___asm__] = ACTIONS(2900), [sym_number_literal] = ACTIONS(2902), [anon_sym_L_SQUOTE] = ACTIONS(2902), [anon_sym_u_SQUOTE] = ACTIONS(2902), @@ -99860,7 +121496,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(2902), [sym_true] = ACTIONS(2900), [sym_false] = ACTIONS(2900), - [sym_null] = ACTIONS(2900), + [anon_sym_NULL] = ACTIONS(2900), + [anon_sym_nullptr] = ACTIONS(2900), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(2900), [anon_sym_decltype] = ACTIONS(2900), @@ -99878,6 +121515,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_concept] = ACTIONS(2900), [anon_sym_co_return] = ACTIONS(2900), [anon_sym_co_yield] = ACTIONS(2900), + [anon_sym_catch] = ACTIONS(2900), [anon_sym_R_DQUOTE] = ACTIONS(2902), [anon_sym_LR_DQUOTE] = ACTIONS(2902), [anon_sym_uR_DQUOTE] = ACTIONS(2902), @@ -99887,1481 +121525,1853 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(2900), [anon_sym_requires] = ACTIONS(2900), [sym_this] = ACTIONS(2900), - [sym_nullptr] = ACTIONS(2900), }, - [553] = { - [sym_identifier] = ACTIONS(2904), - [aux_sym_preproc_include_token1] = ACTIONS(2904), - [aux_sym_preproc_def_token1] = ACTIONS(2904), - [aux_sym_preproc_if_token1] = ACTIONS(2904), - [aux_sym_preproc_if_token2] = ACTIONS(2904), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2904), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2904), - [aux_sym_preproc_else_token1] = ACTIONS(2904), - [aux_sym_preproc_elif_token1] = ACTIONS(2904), - [sym_preproc_directive] = ACTIONS(2904), - [anon_sym_LPAREN2] = ACTIONS(2906), - [anon_sym_BANG] = ACTIONS(2906), - [anon_sym_TILDE] = ACTIONS(2906), - [anon_sym_DASH] = ACTIONS(2904), - [anon_sym_PLUS] = ACTIONS(2904), - [anon_sym_STAR] = ACTIONS(2906), - [anon_sym_AMP_AMP] = ACTIONS(2906), - [anon_sym_AMP] = ACTIONS(2904), - [anon_sym_SEMI] = ACTIONS(2906), - [anon_sym_typedef] = ACTIONS(2904), - [anon_sym_extern] = ACTIONS(2904), - [anon_sym___attribute__] = ACTIONS(2904), - [anon_sym_COLON_COLON] = ACTIONS(2906), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2906), - [anon_sym___declspec] = ACTIONS(2904), - [anon_sym___based] = ACTIONS(2904), - [anon_sym___cdecl] = ACTIONS(2904), - [anon_sym___clrcall] = ACTIONS(2904), - [anon_sym___stdcall] = ACTIONS(2904), - [anon_sym___fastcall] = ACTIONS(2904), - [anon_sym___thiscall] = ACTIONS(2904), - [anon_sym___vectorcall] = ACTIONS(2904), - [anon_sym_LBRACE] = ACTIONS(2906), - [anon_sym_LBRACK] = ACTIONS(2904), - [anon_sym_static] = ACTIONS(2904), - [anon_sym_register] = ACTIONS(2904), - [anon_sym_inline] = ACTIONS(2904), - [anon_sym_thread_local] = ACTIONS(2904), - [anon_sym_const] = ACTIONS(2904), - [anon_sym_volatile] = ACTIONS(2904), - [anon_sym_restrict] = ACTIONS(2904), - [anon_sym__Atomic] = ACTIONS(2904), - [anon_sym_mutable] = ACTIONS(2904), - [anon_sym_constexpr] = ACTIONS(2904), - [anon_sym_constinit] = ACTIONS(2904), - [anon_sym_consteval] = ACTIONS(2904), - [anon_sym_signed] = ACTIONS(2904), - [anon_sym_unsigned] = ACTIONS(2904), - [anon_sym_long] = ACTIONS(2904), - [anon_sym_short] = ACTIONS(2904), - [sym_primitive_type] = ACTIONS(2904), - [anon_sym_enum] = ACTIONS(2904), - [anon_sym_class] = ACTIONS(2904), - [anon_sym_struct] = ACTIONS(2904), - [anon_sym_union] = ACTIONS(2904), - [anon_sym_if] = ACTIONS(2904), - [anon_sym_switch] = ACTIONS(2904), - [anon_sym_case] = ACTIONS(2904), - [anon_sym_default] = ACTIONS(2904), - [anon_sym_while] = ACTIONS(2904), - [anon_sym_do] = ACTIONS(2904), - [anon_sym_for] = ACTIONS(2904), - [anon_sym_return] = ACTIONS(2904), - [anon_sym_break] = ACTIONS(2904), - [anon_sym_continue] = ACTIONS(2904), - [anon_sym_goto] = ACTIONS(2904), - [anon_sym_not] = ACTIONS(2904), - [anon_sym_compl] = ACTIONS(2904), - [anon_sym_DASH_DASH] = ACTIONS(2906), - [anon_sym_PLUS_PLUS] = ACTIONS(2906), - [anon_sym_sizeof] = ACTIONS(2904), - [sym_number_literal] = ACTIONS(2906), - [anon_sym_L_SQUOTE] = ACTIONS(2906), - [anon_sym_u_SQUOTE] = ACTIONS(2906), - [anon_sym_U_SQUOTE] = ACTIONS(2906), - [anon_sym_u8_SQUOTE] = ACTIONS(2906), - [anon_sym_SQUOTE] = ACTIONS(2906), - [anon_sym_L_DQUOTE] = ACTIONS(2906), - [anon_sym_u_DQUOTE] = ACTIONS(2906), - [anon_sym_U_DQUOTE] = ACTIONS(2906), - [anon_sym_u8_DQUOTE] = ACTIONS(2906), - [anon_sym_DQUOTE] = ACTIONS(2906), - [sym_true] = ACTIONS(2904), - [sym_false] = ACTIONS(2904), - [sym_null] = ACTIONS(2904), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2904), - [anon_sym_decltype] = ACTIONS(2904), - [anon_sym_virtual] = ACTIONS(2904), - [anon_sym_explicit] = ACTIONS(2904), - [anon_sym_typename] = ACTIONS(2904), - [anon_sym_template] = ACTIONS(2904), - [anon_sym_operator] = ACTIONS(2904), - [anon_sym_try] = ACTIONS(2904), - [anon_sym_delete] = ACTIONS(2904), - [anon_sym_throw] = ACTIONS(2904), - [anon_sym_namespace] = ACTIONS(2904), - [anon_sym_using] = ACTIONS(2904), - [anon_sym_static_assert] = ACTIONS(2904), - [anon_sym_concept] = ACTIONS(2904), - [anon_sym_co_return] = ACTIONS(2904), - [anon_sym_co_yield] = ACTIONS(2904), - [anon_sym_R_DQUOTE] = ACTIONS(2906), - [anon_sym_LR_DQUOTE] = ACTIONS(2906), - [anon_sym_uR_DQUOTE] = ACTIONS(2906), - [anon_sym_UR_DQUOTE] = ACTIONS(2906), - [anon_sym_u8R_DQUOTE] = ACTIONS(2906), - [anon_sym_co_await] = ACTIONS(2904), - [anon_sym_new] = ACTIONS(2904), - [anon_sym_requires] = ACTIONS(2904), - [sym_this] = ACTIONS(2904), - [sym_nullptr] = ACTIONS(2904), + [523] = { + [sym_identifier] = ACTIONS(3164), + [aux_sym_preproc_include_token1] = ACTIONS(3164), + [aux_sym_preproc_def_token1] = ACTIONS(3164), + [aux_sym_preproc_if_token1] = ACTIONS(3164), + [aux_sym_preproc_if_token2] = ACTIONS(3164), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3164), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3164), + [aux_sym_preproc_else_token1] = ACTIONS(3164), + [aux_sym_preproc_elif_token1] = ACTIONS(3164), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3164), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3164), + [sym_preproc_directive] = ACTIONS(3164), + [anon_sym_LPAREN2] = ACTIONS(3166), + [anon_sym_BANG] = ACTIONS(3166), + [anon_sym_TILDE] = ACTIONS(3166), + [anon_sym_DASH] = ACTIONS(3164), + [anon_sym_PLUS] = ACTIONS(3164), + [anon_sym_STAR] = ACTIONS(3166), + [anon_sym_AMP_AMP] = ACTIONS(3166), + [anon_sym_AMP] = ACTIONS(3164), + [anon_sym_SEMI] = ACTIONS(3166), + [anon_sym_typedef] = ACTIONS(3164), + [anon_sym_extern] = ACTIONS(3164), + [anon_sym___attribute__] = ACTIONS(3164), + [anon_sym_COLON_COLON] = ACTIONS(3166), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3166), + [anon_sym___declspec] = ACTIONS(3164), + [anon_sym___based] = ACTIONS(3164), + [anon_sym___cdecl] = ACTIONS(3164), + [anon_sym___clrcall] = ACTIONS(3164), + [anon_sym___stdcall] = ACTIONS(3164), + [anon_sym___fastcall] = ACTIONS(3164), + [anon_sym___thiscall] = ACTIONS(3164), + [anon_sym___vectorcall] = ACTIONS(3164), + [anon_sym_LBRACE] = ACTIONS(3166), + [anon_sym_LBRACK] = ACTIONS(3164), + [anon_sym_static] = ACTIONS(3164), + [anon_sym_register] = ACTIONS(3164), + [anon_sym_inline] = ACTIONS(3164), + [anon_sym_thread_local] = ACTIONS(3164), + [anon_sym_const] = ACTIONS(3164), + [anon_sym_constexpr] = ACTIONS(3164), + [anon_sym_volatile] = ACTIONS(3164), + [anon_sym_restrict] = ACTIONS(3164), + [anon_sym___restrict__] = ACTIONS(3164), + [anon_sym__Atomic] = ACTIONS(3164), + [anon_sym__Noreturn] = ACTIONS(3164), + [anon_sym_noreturn] = ACTIONS(3164), + [anon_sym_mutable] = ACTIONS(3164), + [anon_sym_constinit] = ACTIONS(3164), + [anon_sym_consteval] = ACTIONS(3164), + [anon_sym_signed] = ACTIONS(3164), + [anon_sym_unsigned] = ACTIONS(3164), + [anon_sym_long] = ACTIONS(3164), + [anon_sym_short] = ACTIONS(3164), + [sym_primitive_type] = ACTIONS(3164), + [anon_sym_enum] = ACTIONS(3164), + [anon_sym_class] = ACTIONS(3164), + [anon_sym_struct] = ACTIONS(3164), + [anon_sym_union] = ACTIONS(3164), + [anon_sym_if] = ACTIONS(3164), + [anon_sym_switch] = ACTIONS(3164), + [anon_sym_case] = ACTIONS(3164), + [anon_sym_default] = ACTIONS(3164), + [anon_sym_while] = ACTIONS(3164), + [anon_sym_do] = ACTIONS(3164), + [anon_sym_for] = ACTIONS(3164), + [anon_sym_return] = ACTIONS(3164), + [anon_sym_break] = ACTIONS(3164), + [anon_sym_continue] = ACTIONS(3164), + [anon_sym_goto] = ACTIONS(3164), + [anon_sym_not] = ACTIONS(3164), + [anon_sym_compl] = ACTIONS(3164), + [anon_sym_DASH_DASH] = ACTIONS(3166), + [anon_sym_PLUS_PLUS] = ACTIONS(3166), + [anon_sym_sizeof] = ACTIONS(3164), + [anon_sym_offsetof] = ACTIONS(3164), + [anon_sym__Generic] = ACTIONS(3164), + [anon_sym_asm] = ACTIONS(3164), + [anon_sym___asm__] = ACTIONS(3164), + [sym_number_literal] = ACTIONS(3166), + [anon_sym_L_SQUOTE] = ACTIONS(3166), + [anon_sym_u_SQUOTE] = ACTIONS(3166), + [anon_sym_U_SQUOTE] = ACTIONS(3166), + [anon_sym_u8_SQUOTE] = ACTIONS(3166), + [anon_sym_SQUOTE] = ACTIONS(3166), + [anon_sym_L_DQUOTE] = ACTIONS(3166), + [anon_sym_u_DQUOTE] = ACTIONS(3166), + [anon_sym_U_DQUOTE] = ACTIONS(3166), + [anon_sym_u8_DQUOTE] = ACTIONS(3166), + [anon_sym_DQUOTE] = ACTIONS(3166), + [sym_true] = ACTIONS(3164), + [sym_false] = ACTIONS(3164), + [anon_sym_NULL] = ACTIONS(3164), + [anon_sym_nullptr] = ACTIONS(3164), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3164), + [anon_sym_decltype] = ACTIONS(3164), + [anon_sym_virtual] = ACTIONS(3164), + [anon_sym_explicit] = ACTIONS(3164), + [anon_sym_typename] = ACTIONS(3164), + [anon_sym_template] = ACTIONS(3164), + [anon_sym_operator] = ACTIONS(3164), + [anon_sym_try] = ACTIONS(3164), + [anon_sym_delete] = ACTIONS(3164), + [anon_sym_throw] = ACTIONS(3164), + [anon_sym_namespace] = ACTIONS(3164), + [anon_sym_using] = ACTIONS(3164), + [anon_sym_static_assert] = ACTIONS(3164), + [anon_sym_concept] = ACTIONS(3164), + [anon_sym_co_return] = ACTIONS(3164), + [anon_sym_co_yield] = ACTIONS(3164), + [anon_sym_R_DQUOTE] = ACTIONS(3166), + [anon_sym_LR_DQUOTE] = ACTIONS(3166), + [anon_sym_uR_DQUOTE] = ACTIONS(3166), + [anon_sym_UR_DQUOTE] = ACTIONS(3166), + [anon_sym_u8R_DQUOTE] = ACTIONS(3166), + [anon_sym_co_await] = ACTIONS(3164), + [anon_sym_new] = ACTIONS(3164), + [anon_sym_requires] = ACTIONS(3164), + [sym_this] = ACTIONS(3164), }, - [554] = { - [sym_identifier] = ACTIONS(2908), - [aux_sym_preproc_include_token1] = ACTIONS(2908), - [aux_sym_preproc_def_token1] = ACTIONS(2908), - [aux_sym_preproc_if_token1] = ACTIONS(2908), - [aux_sym_preproc_if_token2] = ACTIONS(2908), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2908), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2908), - [aux_sym_preproc_else_token1] = ACTIONS(2908), - [aux_sym_preproc_elif_token1] = ACTIONS(2908), - [sym_preproc_directive] = ACTIONS(2908), - [anon_sym_LPAREN2] = ACTIONS(2910), - [anon_sym_BANG] = ACTIONS(2910), - [anon_sym_TILDE] = ACTIONS(2910), - [anon_sym_DASH] = ACTIONS(2908), - [anon_sym_PLUS] = ACTIONS(2908), - [anon_sym_STAR] = ACTIONS(2910), - [anon_sym_AMP_AMP] = ACTIONS(2910), - [anon_sym_AMP] = ACTIONS(2908), - [anon_sym_SEMI] = ACTIONS(2910), - [anon_sym_typedef] = ACTIONS(2908), - [anon_sym_extern] = ACTIONS(2908), - [anon_sym___attribute__] = ACTIONS(2908), - [anon_sym_COLON_COLON] = ACTIONS(2910), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2910), - [anon_sym___declspec] = ACTIONS(2908), - [anon_sym___based] = ACTIONS(2908), - [anon_sym___cdecl] = ACTIONS(2908), - [anon_sym___clrcall] = ACTIONS(2908), - [anon_sym___stdcall] = ACTIONS(2908), - [anon_sym___fastcall] = ACTIONS(2908), - [anon_sym___thiscall] = ACTIONS(2908), - [anon_sym___vectorcall] = ACTIONS(2908), - [anon_sym_LBRACE] = ACTIONS(2910), - [anon_sym_LBRACK] = ACTIONS(2908), - [anon_sym_static] = ACTIONS(2908), - [anon_sym_register] = ACTIONS(2908), - [anon_sym_inline] = ACTIONS(2908), - [anon_sym_thread_local] = ACTIONS(2908), - [anon_sym_const] = ACTIONS(2908), - [anon_sym_volatile] = ACTIONS(2908), - [anon_sym_restrict] = ACTIONS(2908), - [anon_sym__Atomic] = ACTIONS(2908), - [anon_sym_mutable] = ACTIONS(2908), - [anon_sym_constexpr] = ACTIONS(2908), - [anon_sym_constinit] = ACTIONS(2908), - [anon_sym_consteval] = ACTIONS(2908), - [anon_sym_signed] = ACTIONS(2908), - [anon_sym_unsigned] = ACTIONS(2908), - [anon_sym_long] = ACTIONS(2908), - [anon_sym_short] = ACTIONS(2908), - [sym_primitive_type] = ACTIONS(2908), - [anon_sym_enum] = ACTIONS(2908), - [anon_sym_class] = ACTIONS(2908), - [anon_sym_struct] = ACTIONS(2908), - [anon_sym_union] = ACTIONS(2908), - [anon_sym_if] = ACTIONS(2908), - [anon_sym_switch] = ACTIONS(2908), - [anon_sym_case] = ACTIONS(2908), - [anon_sym_default] = ACTIONS(2908), - [anon_sym_while] = ACTIONS(2908), - [anon_sym_do] = ACTIONS(2908), - [anon_sym_for] = ACTIONS(2908), - [anon_sym_return] = ACTIONS(2908), - [anon_sym_break] = ACTIONS(2908), - [anon_sym_continue] = ACTIONS(2908), - [anon_sym_goto] = ACTIONS(2908), - [anon_sym_not] = ACTIONS(2908), - [anon_sym_compl] = ACTIONS(2908), - [anon_sym_DASH_DASH] = ACTIONS(2910), - [anon_sym_PLUS_PLUS] = ACTIONS(2910), - [anon_sym_sizeof] = ACTIONS(2908), - [sym_number_literal] = ACTIONS(2910), - [anon_sym_L_SQUOTE] = ACTIONS(2910), - [anon_sym_u_SQUOTE] = ACTIONS(2910), - [anon_sym_U_SQUOTE] = ACTIONS(2910), - [anon_sym_u8_SQUOTE] = ACTIONS(2910), - [anon_sym_SQUOTE] = ACTIONS(2910), - [anon_sym_L_DQUOTE] = ACTIONS(2910), - [anon_sym_u_DQUOTE] = ACTIONS(2910), - [anon_sym_U_DQUOTE] = ACTIONS(2910), - [anon_sym_u8_DQUOTE] = ACTIONS(2910), - [anon_sym_DQUOTE] = ACTIONS(2910), - [sym_true] = ACTIONS(2908), - [sym_false] = ACTIONS(2908), - [sym_null] = ACTIONS(2908), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2908), - [anon_sym_decltype] = ACTIONS(2908), - [anon_sym_virtual] = ACTIONS(2908), - [anon_sym_explicit] = ACTIONS(2908), - [anon_sym_typename] = ACTIONS(2908), - [anon_sym_template] = ACTIONS(2908), - [anon_sym_operator] = ACTIONS(2908), - [anon_sym_try] = ACTIONS(2908), - [anon_sym_delete] = ACTIONS(2908), - [anon_sym_throw] = ACTIONS(2908), - [anon_sym_namespace] = ACTIONS(2908), - [anon_sym_using] = ACTIONS(2908), - [anon_sym_static_assert] = ACTIONS(2908), - [anon_sym_concept] = ACTIONS(2908), - [anon_sym_co_return] = ACTIONS(2908), - [anon_sym_co_yield] = ACTIONS(2908), - [anon_sym_R_DQUOTE] = ACTIONS(2910), - [anon_sym_LR_DQUOTE] = ACTIONS(2910), - [anon_sym_uR_DQUOTE] = ACTIONS(2910), - [anon_sym_UR_DQUOTE] = ACTIONS(2910), - [anon_sym_u8R_DQUOTE] = ACTIONS(2910), - [anon_sym_co_await] = ACTIONS(2908), - [anon_sym_new] = ACTIONS(2908), - [anon_sym_requires] = ACTIONS(2908), - [sym_this] = ACTIONS(2908), - [sym_nullptr] = ACTIONS(2908), + [524] = { + [sym_identifier] = ACTIONS(3168), + [aux_sym_preproc_include_token1] = ACTIONS(3168), + [aux_sym_preproc_def_token1] = ACTIONS(3168), + [aux_sym_preproc_if_token1] = ACTIONS(3168), + [aux_sym_preproc_if_token2] = ACTIONS(3168), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3168), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3168), + [aux_sym_preproc_else_token1] = ACTIONS(3168), + [aux_sym_preproc_elif_token1] = ACTIONS(3168), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3168), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3168), + [sym_preproc_directive] = ACTIONS(3168), + [anon_sym_LPAREN2] = ACTIONS(3170), + [anon_sym_BANG] = ACTIONS(3170), + [anon_sym_TILDE] = ACTIONS(3170), + [anon_sym_DASH] = ACTIONS(3168), + [anon_sym_PLUS] = ACTIONS(3168), + [anon_sym_STAR] = ACTIONS(3170), + [anon_sym_AMP_AMP] = ACTIONS(3170), + [anon_sym_AMP] = ACTIONS(3168), + [anon_sym_SEMI] = ACTIONS(3170), + [anon_sym_typedef] = ACTIONS(3168), + [anon_sym_extern] = ACTIONS(3168), + [anon_sym___attribute__] = ACTIONS(3168), + [anon_sym_COLON_COLON] = ACTIONS(3170), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3170), + [anon_sym___declspec] = ACTIONS(3168), + [anon_sym___based] = ACTIONS(3168), + [anon_sym___cdecl] = ACTIONS(3168), + [anon_sym___clrcall] = ACTIONS(3168), + [anon_sym___stdcall] = ACTIONS(3168), + [anon_sym___fastcall] = ACTIONS(3168), + [anon_sym___thiscall] = ACTIONS(3168), + [anon_sym___vectorcall] = ACTIONS(3168), + [anon_sym_LBRACE] = ACTIONS(3170), + [anon_sym_LBRACK] = ACTIONS(3168), + [anon_sym_static] = ACTIONS(3168), + [anon_sym_register] = ACTIONS(3168), + [anon_sym_inline] = ACTIONS(3168), + [anon_sym_thread_local] = ACTIONS(3168), + [anon_sym_const] = ACTIONS(3168), + [anon_sym_constexpr] = ACTIONS(3168), + [anon_sym_volatile] = ACTIONS(3168), + [anon_sym_restrict] = ACTIONS(3168), + [anon_sym___restrict__] = ACTIONS(3168), + [anon_sym__Atomic] = ACTIONS(3168), + [anon_sym__Noreturn] = ACTIONS(3168), + [anon_sym_noreturn] = ACTIONS(3168), + [anon_sym_mutable] = ACTIONS(3168), + [anon_sym_constinit] = ACTIONS(3168), + [anon_sym_consteval] = ACTIONS(3168), + [anon_sym_signed] = ACTIONS(3168), + [anon_sym_unsigned] = ACTIONS(3168), + [anon_sym_long] = ACTIONS(3168), + [anon_sym_short] = ACTIONS(3168), + [sym_primitive_type] = ACTIONS(3168), + [anon_sym_enum] = ACTIONS(3168), + [anon_sym_class] = ACTIONS(3168), + [anon_sym_struct] = ACTIONS(3168), + [anon_sym_union] = ACTIONS(3168), + [anon_sym_if] = ACTIONS(3168), + [anon_sym_switch] = ACTIONS(3168), + [anon_sym_case] = ACTIONS(3168), + [anon_sym_default] = ACTIONS(3168), + [anon_sym_while] = ACTIONS(3168), + [anon_sym_do] = ACTIONS(3168), + [anon_sym_for] = ACTIONS(3168), + [anon_sym_return] = ACTIONS(3168), + [anon_sym_break] = ACTIONS(3168), + [anon_sym_continue] = ACTIONS(3168), + [anon_sym_goto] = ACTIONS(3168), + [anon_sym_not] = ACTIONS(3168), + [anon_sym_compl] = ACTIONS(3168), + [anon_sym_DASH_DASH] = ACTIONS(3170), + [anon_sym_PLUS_PLUS] = ACTIONS(3170), + [anon_sym_sizeof] = ACTIONS(3168), + [anon_sym_offsetof] = ACTIONS(3168), + [anon_sym__Generic] = ACTIONS(3168), + [anon_sym_asm] = ACTIONS(3168), + [anon_sym___asm__] = ACTIONS(3168), + [sym_number_literal] = ACTIONS(3170), + [anon_sym_L_SQUOTE] = ACTIONS(3170), + [anon_sym_u_SQUOTE] = ACTIONS(3170), + [anon_sym_U_SQUOTE] = ACTIONS(3170), + [anon_sym_u8_SQUOTE] = ACTIONS(3170), + [anon_sym_SQUOTE] = ACTIONS(3170), + [anon_sym_L_DQUOTE] = ACTIONS(3170), + [anon_sym_u_DQUOTE] = ACTIONS(3170), + [anon_sym_U_DQUOTE] = ACTIONS(3170), + [anon_sym_u8_DQUOTE] = ACTIONS(3170), + [anon_sym_DQUOTE] = ACTIONS(3170), + [sym_true] = ACTIONS(3168), + [sym_false] = ACTIONS(3168), + [anon_sym_NULL] = ACTIONS(3168), + [anon_sym_nullptr] = ACTIONS(3168), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3168), + [anon_sym_decltype] = ACTIONS(3168), + [anon_sym_virtual] = ACTIONS(3168), + [anon_sym_explicit] = ACTIONS(3168), + [anon_sym_typename] = ACTIONS(3168), + [anon_sym_template] = ACTIONS(3168), + [anon_sym_operator] = ACTIONS(3168), + [anon_sym_try] = ACTIONS(3168), + [anon_sym_delete] = ACTIONS(3168), + [anon_sym_throw] = ACTIONS(3168), + [anon_sym_namespace] = ACTIONS(3168), + [anon_sym_using] = ACTIONS(3168), + [anon_sym_static_assert] = ACTIONS(3168), + [anon_sym_concept] = ACTIONS(3168), + [anon_sym_co_return] = ACTIONS(3168), + [anon_sym_co_yield] = ACTIONS(3168), + [anon_sym_R_DQUOTE] = ACTIONS(3170), + [anon_sym_LR_DQUOTE] = ACTIONS(3170), + [anon_sym_uR_DQUOTE] = ACTIONS(3170), + [anon_sym_UR_DQUOTE] = ACTIONS(3170), + [anon_sym_u8R_DQUOTE] = ACTIONS(3170), + [anon_sym_co_await] = ACTIONS(3168), + [anon_sym_new] = ACTIONS(3168), + [anon_sym_requires] = ACTIONS(3168), + [sym_this] = ACTIONS(3168), }, - [555] = { - [sym_identifier] = ACTIONS(2912), - [aux_sym_preproc_include_token1] = ACTIONS(2912), - [aux_sym_preproc_def_token1] = ACTIONS(2912), - [aux_sym_preproc_if_token1] = ACTIONS(2912), - [aux_sym_preproc_if_token2] = ACTIONS(2912), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2912), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2912), - [aux_sym_preproc_else_token1] = ACTIONS(2912), - [aux_sym_preproc_elif_token1] = ACTIONS(2912), - [sym_preproc_directive] = ACTIONS(2912), - [anon_sym_LPAREN2] = ACTIONS(2914), - [anon_sym_BANG] = ACTIONS(2914), - [anon_sym_TILDE] = ACTIONS(2914), - [anon_sym_DASH] = ACTIONS(2912), - [anon_sym_PLUS] = ACTIONS(2912), - [anon_sym_STAR] = ACTIONS(2914), - [anon_sym_AMP_AMP] = ACTIONS(2914), - [anon_sym_AMP] = ACTIONS(2912), - [anon_sym_SEMI] = ACTIONS(2914), - [anon_sym_typedef] = ACTIONS(2912), - [anon_sym_extern] = ACTIONS(2912), - [anon_sym___attribute__] = ACTIONS(2912), - [anon_sym_COLON_COLON] = ACTIONS(2914), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2914), - [anon_sym___declspec] = ACTIONS(2912), - [anon_sym___based] = ACTIONS(2912), - [anon_sym___cdecl] = ACTIONS(2912), - [anon_sym___clrcall] = ACTIONS(2912), - [anon_sym___stdcall] = ACTIONS(2912), - [anon_sym___fastcall] = ACTIONS(2912), - [anon_sym___thiscall] = ACTIONS(2912), - [anon_sym___vectorcall] = ACTIONS(2912), - [anon_sym_LBRACE] = ACTIONS(2914), - [anon_sym_LBRACK] = ACTIONS(2912), - [anon_sym_static] = ACTIONS(2912), - [anon_sym_register] = ACTIONS(2912), - [anon_sym_inline] = ACTIONS(2912), - [anon_sym_thread_local] = ACTIONS(2912), - [anon_sym_const] = ACTIONS(2912), - [anon_sym_volatile] = ACTIONS(2912), - [anon_sym_restrict] = ACTIONS(2912), - [anon_sym__Atomic] = ACTIONS(2912), - [anon_sym_mutable] = ACTIONS(2912), - [anon_sym_constexpr] = ACTIONS(2912), - [anon_sym_constinit] = ACTIONS(2912), - [anon_sym_consteval] = ACTIONS(2912), - [anon_sym_signed] = ACTIONS(2912), - [anon_sym_unsigned] = ACTIONS(2912), - [anon_sym_long] = ACTIONS(2912), - [anon_sym_short] = ACTIONS(2912), - [sym_primitive_type] = ACTIONS(2912), - [anon_sym_enum] = ACTIONS(2912), - [anon_sym_class] = ACTIONS(2912), - [anon_sym_struct] = ACTIONS(2912), - [anon_sym_union] = ACTIONS(2912), - [anon_sym_if] = ACTIONS(2912), - [anon_sym_switch] = ACTIONS(2912), - [anon_sym_case] = ACTIONS(2912), - [anon_sym_default] = ACTIONS(2912), - [anon_sym_while] = ACTIONS(2912), - [anon_sym_do] = ACTIONS(2912), - [anon_sym_for] = ACTIONS(2912), - [anon_sym_return] = ACTIONS(2912), - [anon_sym_break] = ACTIONS(2912), - [anon_sym_continue] = ACTIONS(2912), - [anon_sym_goto] = ACTIONS(2912), - [anon_sym_not] = ACTIONS(2912), - [anon_sym_compl] = ACTIONS(2912), - [anon_sym_DASH_DASH] = ACTIONS(2914), - [anon_sym_PLUS_PLUS] = ACTIONS(2914), - [anon_sym_sizeof] = ACTIONS(2912), - [sym_number_literal] = ACTIONS(2914), - [anon_sym_L_SQUOTE] = ACTIONS(2914), - [anon_sym_u_SQUOTE] = ACTIONS(2914), - [anon_sym_U_SQUOTE] = ACTIONS(2914), - [anon_sym_u8_SQUOTE] = ACTIONS(2914), - [anon_sym_SQUOTE] = ACTIONS(2914), - [anon_sym_L_DQUOTE] = ACTIONS(2914), - [anon_sym_u_DQUOTE] = ACTIONS(2914), - [anon_sym_U_DQUOTE] = ACTIONS(2914), - [anon_sym_u8_DQUOTE] = ACTIONS(2914), - [anon_sym_DQUOTE] = ACTIONS(2914), - [sym_true] = ACTIONS(2912), - [sym_false] = ACTIONS(2912), - [sym_null] = ACTIONS(2912), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2912), - [anon_sym_decltype] = ACTIONS(2912), - [anon_sym_virtual] = ACTIONS(2912), - [anon_sym_explicit] = ACTIONS(2912), - [anon_sym_typename] = ACTIONS(2912), - [anon_sym_template] = ACTIONS(2912), - [anon_sym_operator] = ACTIONS(2912), - [anon_sym_try] = ACTIONS(2912), - [anon_sym_delete] = ACTIONS(2912), - [anon_sym_throw] = ACTIONS(2912), - [anon_sym_namespace] = ACTIONS(2912), - [anon_sym_using] = ACTIONS(2912), - [anon_sym_static_assert] = ACTIONS(2912), - [anon_sym_concept] = ACTIONS(2912), - [anon_sym_co_return] = ACTIONS(2912), - [anon_sym_co_yield] = ACTIONS(2912), - [anon_sym_R_DQUOTE] = ACTIONS(2914), - [anon_sym_LR_DQUOTE] = ACTIONS(2914), - [anon_sym_uR_DQUOTE] = ACTIONS(2914), - [anon_sym_UR_DQUOTE] = ACTIONS(2914), - [anon_sym_u8R_DQUOTE] = ACTIONS(2914), - [anon_sym_co_await] = ACTIONS(2912), - [anon_sym_new] = ACTIONS(2912), - [anon_sym_requires] = ACTIONS(2912), - [sym_this] = ACTIONS(2912), - [sym_nullptr] = ACTIONS(2912), + [525] = { + [sym_identifier] = ACTIONS(3172), + [aux_sym_preproc_include_token1] = ACTIONS(3172), + [aux_sym_preproc_def_token1] = ACTIONS(3172), + [aux_sym_preproc_if_token1] = ACTIONS(3172), + [aux_sym_preproc_if_token2] = ACTIONS(3172), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3172), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3172), + [aux_sym_preproc_else_token1] = ACTIONS(3172), + [aux_sym_preproc_elif_token1] = ACTIONS(3172), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3172), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3172), + [sym_preproc_directive] = ACTIONS(3172), + [anon_sym_LPAREN2] = ACTIONS(3174), + [anon_sym_BANG] = ACTIONS(3174), + [anon_sym_TILDE] = ACTIONS(3174), + [anon_sym_DASH] = ACTIONS(3172), + [anon_sym_PLUS] = ACTIONS(3172), + [anon_sym_STAR] = ACTIONS(3174), + [anon_sym_AMP_AMP] = ACTIONS(3174), + [anon_sym_AMP] = ACTIONS(3172), + [anon_sym_SEMI] = ACTIONS(3174), + [anon_sym_typedef] = ACTIONS(3172), + [anon_sym_extern] = ACTIONS(3172), + [anon_sym___attribute__] = ACTIONS(3172), + [anon_sym_COLON_COLON] = ACTIONS(3174), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3174), + [anon_sym___declspec] = ACTIONS(3172), + [anon_sym___based] = ACTIONS(3172), + [anon_sym___cdecl] = ACTIONS(3172), + [anon_sym___clrcall] = ACTIONS(3172), + [anon_sym___stdcall] = ACTIONS(3172), + [anon_sym___fastcall] = ACTIONS(3172), + [anon_sym___thiscall] = ACTIONS(3172), + [anon_sym___vectorcall] = ACTIONS(3172), + [anon_sym_LBRACE] = ACTIONS(3174), + [anon_sym_LBRACK] = ACTIONS(3172), + [anon_sym_static] = ACTIONS(3172), + [anon_sym_register] = ACTIONS(3172), + [anon_sym_inline] = ACTIONS(3172), + [anon_sym_thread_local] = ACTIONS(3172), + [anon_sym_const] = ACTIONS(3172), + [anon_sym_constexpr] = ACTIONS(3172), + [anon_sym_volatile] = ACTIONS(3172), + [anon_sym_restrict] = ACTIONS(3172), + [anon_sym___restrict__] = ACTIONS(3172), + [anon_sym__Atomic] = ACTIONS(3172), + [anon_sym__Noreturn] = ACTIONS(3172), + [anon_sym_noreturn] = ACTIONS(3172), + [anon_sym_mutable] = ACTIONS(3172), + [anon_sym_constinit] = ACTIONS(3172), + [anon_sym_consteval] = ACTIONS(3172), + [anon_sym_signed] = ACTIONS(3172), + [anon_sym_unsigned] = ACTIONS(3172), + [anon_sym_long] = ACTIONS(3172), + [anon_sym_short] = ACTIONS(3172), + [sym_primitive_type] = ACTIONS(3172), + [anon_sym_enum] = ACTIONS(3172), + [anon_sym_class] = ACTIONS(3172), + [anon_sym_struct] = ACTIONS(3172), + [anon_sym_union] = ACTIONS(3172), + [anon_sym_if] = ACTIONS(3172), + [anon_sym_switch] = ACTIONS(3172), + [anon_sym_case] = ACTIONS(3172), + [anon_sym_default] = ACTIONS(3172), + [anon_sym_while] = ACTIONS(3172), + [anon_sym_do] = ACTIONS(3172), + [anon_sym_for] = ACTIONS(3172), + [anon_sym_return] = ACTIONS(3172), + [anon_sym_break] = ACTIONS(3172), + [anon_sym_continue] = ACTIONS(3172), + [anon_sym_goto] = ACTIONS(3172), + [anon_sym_not] = ACTIONS(3172), + [anon_sym_compl] = ACTIONS(3172), + [anon_sym_DASH_DASH] = ACTIONS(3174), + [anon_sym_PLUS_PLUS] = ACTIONS(3174), + [anon_sym_sizeof] = ACTIONS(3172), + [anon_sym_offsetof] = ACTIONS(3172), + [anon_sym__Generic] = ACTIONS(3172), + [anon_sym_asm] = ACTIONS(3172), + [anon_sym___asm__] = ACTIONS(3172), + [sym_number_literal] = ACTIONS(3174), + [anon_sym_L_SQUOTE] = ACTIONS(3174), + [anon_sym_u_SQUOTE] = ACTIONS(3174), + [anon_sym_U_SQUOTE] = ACTIONS(3174), + [anon_sym_u8_SQUOTE] = ACTIONS(3174), + [anon_sym_SQUOTE] = ACTIONS(3174), + [anon_sym_L_DQUOTE] = ACTIONS(3174), + [anon_sym_u_DQUOTE] = ACTIONS(3174), + [anon_sym_U_DQUOTE] = ACTIONS(3174), + [anon_sym_u8_DQUOTE] = ACTIONS(3174), + [anon_sym_DQUOTE] = ACTIONS(3174), + [sym_true] = ACTIONS(3172), + [sym_false] = ACTIONS(3172), + [anon_sym_NULL] = ACTIONS(3172), + [anon_sym_nullptr] = ACTIONS(3172), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3172), + [anon_sym_decltype] = ACTIONS(3172), + [anon_sym_virtual] = ACTIONS(3172), + [anon_sym_explicit] = ACTIONS(3172), + [anon_sym_typename] = ACTIONS(3172), + [anon_sym_template] = ACTIONS(3172), + [anon_sym_operator] = ACTIONS(3172), + [anon_sym_try] = ACTIONS(3172), + [anon_sym_delete] = ACTIONS(3172), + [anon_sym_throw] = ACTIONS(3172), + [anon_sym_namespace] = ACTIONS(3172), + [anon_sym_using] = ACTIONS(3172), + [anon_sym_static_assert] = ACTIONS(3172), + [anon_sym_concept] = ACTIONS(3172), + [anon_sym_co_return] = ACTIONS(3172), + [anon_sym_co_yield] = ACTIONS(3172), + [anon_sym_R_DQUOTE] = ACTIONS(3174), + [anon_sym_LR_DQUOTE] = ACTIONS(3174), + [anon_sym_uR_DQUOTE] = ACTIONS(3174), + [anon_sym_UR_DQUOTE] = ACTIONS(3174), + [anon_sym_u8R_DQUOTE] = ACTIONS(3174), + [anon_sym_co_await] = ACTIONS(3172), + [anon_sym_new] = ACTIONS(3172), + [anon_sym_requires] = ACTIONS(3172), + [sym_this] = ACTIONS(3172), }, - [556] = { - [ts_builtin_sym_end] = ACTIONS(2498), - [sym_identifier] = ACTIONS(2496), - [aux_sym_preproc_include_token1] = ACTIONS(2496), - [aux_sym_preproc_def_token1] = ACTIONS(2496), - [aux_sym_preproc_if_token1] = ACTIONS(2496), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2496), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2496), - [sym_preproc_directive] = ACTIONS(2496), - [anon_sym_LPAREN2] = ACTIONS(2498), - [anon_sym_BANG] = ACTIONS(2498), - [anon_sym_TILDE] = ACTIONS(2498), - [anon_sym_DASH] = ACTIONS(2496), - [anon_sym_PLUS] = ACTIONS(2496), - [anon_sym_STAR] = ACTIONS(2498), - [anon_sym_AMP_AMP] = ACTIONS(2498), - [anon_sym_AMP] = ACTIONS(2496), - [anon_sym_SEMI] = ACTIONS(2498), - [anon_sym_typedef] = ACTIONS(2496), - [anon_sym_extern] = ACTIONS(2496), - [anon_sym___attribute__] = ACTIONS(2496), - [anon_sym_COLON_COLON] = ACTIONS(2498), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2498), - [anon_sym___declspec] = ACTIONS(2496), - [anon_sym___based] = ACTIONS(2496), - [anon_sym___cdecl] = ACTIONS(2496), - [anon_sym___clrcall] = ACTIONS(2496), - [anon_sym___stdcall] = ACTIONS(2496), - [anon_sym___fastcall] = ACTIONS(2496), - [anon_sym___thiscall] = ACTIONS(2496), - [anon_sym___vectorcall] = ACTIONS(2496), - [anon_sym_LBRACE] = ACTIONS(2498), - [anon_sym_LBRACK] = ACTIONS(2496), - [anon_sym_static] = ACTIONS(2496), - [anon_sym_register] = ACTIONS(2496), - [anon_sym_inline] = ACTIONS(2496), - [anon_sym_thread_local] = ACTIONS(2496), - [anon_sym_const] = ACTIONS(2496), - [anon_sym_volatile] = ACTIONS(2496), - [anon_sym_restrict] = ACTIONS(2496), - [anon_sym__Atomic] = ACTIONS(2496), - [anon_sym_mutable] = ACTIONS(2496), - [anon_sym_constexpr] = ACTIONS(2496), - [anon_sym_constinit] = ACTIONS(2496), - [anon_sym_consteval] = ACTIONS(2496), - [anon_sym_signed] = ACTIONS(2496), - [anon_sym_unsigned] = ACTIONS(2496), - [anon_sym_long] = ACTIONS(2496), - [anon_sym_short] = ACTIONS(2496), - [sym_primitive_type] = ACTIONS(2496), - [anon_sym_enum] = ACTIONS(2496), - [anon_sym_class] = ACTIONS(2496), - [anon_sym_struct] = ACTIONS(2496), - [anon_sym_union] = ACTIONS(2496), - [anon_sym_if] = ACTIONS(2496), - [anon_sym_else] = ACTIONS(2496), - [anon_sym_switch] = ACTIONS(2496), - [anon_sym_case] = ACTIONS(2496), - [anon_sym_default] = ACTIONS(2496), - [anon_sym_while] = ACTIONS(2496), - [anon_sym_do] = ACTIONS(2496), - [anon_sym_for] = ACTIONS(2496), - [anon_sym_return] = ACTIONS(2496), - [anon_sym_break] = ACTIONS(2496), - [anon_sym_continue] = ACTIONS(2496), - [anon_sym_goto] = ACTIONS(2496), - [anon_sym_not] = ACTIONS(2496), - [anon_sym_compl] = ACTIONS(2496), - [anon_sym_DASH_DASH] = ACTIONS(2498), - [anon_sym_PLUS_PLUS] = ACTIONS(2498), - [anon_sym_sizeof] = ACTIONS(2496), - [sym_number_literal] = ACTIONS(2498), - [anon_sym_L_SQUOTE] = ACTIONS(2498), - [anon_sym_u_SQUOTE] = ACTIONS(2498), - [anon_sym_U_SQUOTE] = ACTIONS(2498), - [anon_sym_u8_SQUOTE] = ACTIONS(2498), - [anon_sym_SQUOTE] = ACTIONS(2498), - [anon_sym_L_DQUOTE] = ACTIONS(2498), - [anon_sym_u_DQUOTE] = ACTIONS(2498), - [anon_sym_U_DQUOTE] = ACTIONS(2498), - [anon_sym_u8_DQUOTE] = ACTIONS(2498), - [anon_sym_DQUOTE] = ACTIONS(2498), - [sym_true] = ACTIONS(2496), - [sym_false] = ACTIONS(2496), - [sym_null] = ACTIONS(2496), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2496), - [anon_sym_decltype] = ACTIONS(2496), - [anon_sym_virtual] = ACTIONS(2496), - [anon_sym_explicit] = ACTIONS(2496), - [anon_sym_typename] = ACTIONS(2496), - [anon_sym_template] = ACTIONS(2496), - [anon_sym_operator] = ACTIONS(2496), - [anon_sym_try] = ACTIONS(2496), - [anon_sym_delete] = ACTIONS(2496), - [anon_sym_throw] = ACTIONS(2496), - [anon_sym_namespace] = ACTIONS(2496), - [anon_sym_using] = ACTIONS(2496), - [anon_sym_static_assert] = ACTIONS(2496), - [anon_sym_concept] = ACTIONS(2496), - [anon_sym_co_return] = ACTIONS(2496), - [anon_sym_co_yield] = ACTIONS(2496), - [anon_sym_R_DQUOTE] = ACTIONS(2498), - [anon_sym_LR_DQUOTE] = ACTIONS(2498), - [anon_sym_uR_DQUOTE] = ACTIONS(2498), - [anon_sym_UR_DQUOTE] = ACTIONS(2498), - [anon_sym_u8R_DQUOTE] = ACTIONS(2498), - [anon_sym_co_await] = ACTIONS(2496), - [anon_sym_new] = ACTIONS(2496), - [anon_sym_requires] = ACTIONS(2496), - [sym_this] = ACTIONS(2496), - [sym_nullptr] = ACTIONS(2496), + [526] = { + [sym_identifier] = ACTIONS(3176), + [aux_sym_preproc_include_token1] = ACTIONS(3176), + [aux_sym_preproc_def_token1] = ACTIONS(3176), + [aux_sym_preproc_if_token1] = ACTIONS(3176), + [aux_sym_preproc_if_token2] = ACTIONS(3176), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3176), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3176), + [aux_sym_preproc_else_token1] = ACTIONS(3176), + [aux_sym_preproc_elif_token1] = ACTIONS(3176), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3176), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3176), + [sym_preproc_directive] = ACTIONS(3176), + [anon_sym_LPAREN2] = ACTIONS(3178), + [anon_sym_BANG] = ACTIONS(3178), + [anon_sym_TILDE] = ACTIONS(3178), + [anon_sym_DASH] = ACTIONS(3176), + [anon_sym_PLUS] = ACTIONS(3176), + [anon_sym_STAR] = ACTIONS(3178), + [anon_sym_AMP_AMP] = ACTIONS(3178), + [anon_sym_AMP] = ACTIONS(3176), + [anon_sym_SEMI] = ACTIONS(3178), + [anon_sym_typedef] = ACTIONS(3176), + [anon_sym_extern] = ACTIONS(3176), + [anon_sym___attribute__] = ACTIONS(3176), + [anon_sym_COLON_COLON] = ACTIONS(3178), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3178), + [anon_sym___declspec] = ACTIONS(3176), + [anon_sym___based] = ACTIONS(3176), + [anon_sym___cdecl] = ACTIONS(3176), + [anon_sym___clrcall] = ACTIONS(3176), + [anon_sym___stdcall] = ACTIONS(3176), + [anon_sym___fastcall] = ACTIONS(3176), + [anon_sym___thiscall] = ACTIONS(3176), + [anon_sym___vectorcall] = ACTIONS(3176), + [anon_sym_LBRACE] = ACTIONS(3178), + [anon_sym_LBRACK] = ACTIONS(3176), + [anon_sym_static] = ACTIONS(3176), + [anon_sym_register] = ACTIONS(3176), + [anon_sym_inline] = ACTIONS(3176), + [anon_sym_thread_local] = ACTIONS(3176), + [anon_sym_const] = ACTIONS(3176), + [anon_sym_constexpr] = ACTIONS(3176), + [anon_sym_volatile] = ACTIONS(3176), + [anon_sym_restrict] = ACTIONS(3176), + [anon_sym___restrict__] = ACTIONS(3176), + [anon_sym__Atomic] = ACTIONS(3176), + [anon_sym__Noreturn] = ACTIONS(3176), + [anon_sym_noreturn] = ACTIONS(3176), + [anon_sym_mutable] = ACTIONS(3176), + [anon_sym_constinit] = ACTIONS(3176), + [anon_sym_consteval] = ACTIONS(3176), + [anon_sym_signed] = ACTIONS(3176), + [anon_sym_unsigned] = ACTIONS(3176), + [anon_sym_long] = ACTIONS(3176), + [anon_sym_short] = ACTIONS(3176), + [sym_primitive_type] = ACTIONS(3176), + [anon_sym_enum] = ACTIONS(3176), + [anon_sym_class] = ACTIONS(3176), + [anon_sym_struct] = ACTIONS(3176), + [anon_sym_union] = ACTIONS(3176), + [anon_sym_if] = ACTIONS(3176), + [anon_sym_switch] = ACTIONS(3176), + [anon_sym_case] = ACTIONS(3176), + [anon_sym_default] = ACTIONS(3176), + [anon_sym_while] = ACTIONS(3176), + [anon_sym_do] = ACTIONS(3176), + [anon_sym_for] = ACTIONS(3176), + [anon_sym_return] = ACTIONS(3176), + [anon_sym_break] = ACTIONS(3176), + [anon_sym_continue] = ACTIONS(3176), + [anon_sym_goto] = ACTIONS(3176), + [anon_sym_not] = ACTIONS(3176), + [anon_sym_compl] = ACTIONS(3176), + [anon_sym_DASH_DASH] = ACTIONS(3178), + [anon_sym_PLUS_PLUS] = ACTIONS(3178), + [anon_sym_sizeof] = ACTIONS(3176), + [anon_sym_offsetof] = ACTIONS(3176), + [anon_sym__Generic] = ACTIONS(3176), + [anon_sym_asm] = ACTIONS(3176), + [anon_sym___asm__] = ACTIONS(3176), + [sym_number_literal] = ACTIONS(3178), + [anon_sym_L_SQUOTE] = ACTIONS(3178), + [anon_sym_u_SQUOTE] = ACTIONS(3178), + [anon_sym_U_SQUOTE] = ACTIONS(3178), + [anon_sym_u8_SQUOTE] = ACTIONS(3178), + [anon_sym_SQUOTE] = ACTIONS(3178), + [anon_sym_L_DQUOTE] = ACTIONS(3178), + [anon_sym_u_DQUOTE] = ACTIONS(3178), + [anon_sym_U_DQUOTE] = ACTIONS(3178), + [anon_sym_u8_DQUOTE] = ACTIONS(3178), + [anon_sym_DQUOTE] = ACTIONS(3178), + [sym_true] = ACTIONS(3176), + [sym_false] = ACTIONS(3176), + [anon_sym_NULL] = ACTIONS(3176), + [anon_sym_nullptr] = ACTIONS(3176), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3176), + [anon_sym_decltype] = ACTIONS(3176), + [anon_sym_virtual] = ACTIONS(3176), + [anon_sym_explicit] = ACTIONS(3176), + [anon_sym_typename] = ACTIONS(3176), + [anon_sym_template] = ACTIONS(3176), + [anon_sym_operator] = ACTIONS(3176), + [anon_sym_try] = ACTIONS(3176), + [anon_sym_delete] = ACTIONS(3176), + [anon_sym_throw] = ACTIONS(3176), + [anon_sym_namespace] = ACTIONS(3176), + [anon_sym_using] = ACTIONS(3176), + [anon_sym_static_assert] = ACTIONS(3176), + [anon_sym_concept] = ACTIONS(3176), + [anon_sym_co_return] = ACTIONS(3176), + [anon_sym_co_yield] = ACTIONS(3176), + [anon_sym_R_DQUOTE] = ACTIONS(3178), + [anon_sym_LR_DQUOTE] = ACTIONS(3178), + [anon_sym_uR_DQUOTE] = ACTIONS(3178), + [anon_sym_UR_DQUOTE] = ACTIONS(3178), + [anon_sym_u8R_DQUOTE] = ACTIONS(3178), + [anon_sym_co_await] = ACTIONS(3176), + [anon_sym_new] = ACTIONS(3176), + [anon_sym_requires] = ACTIONS(3176), + [sym_this] = ACTIONS(3176), }, - [557] = { - [sym_identifier] = ACTIONS(2614), - [aux_sym_preproc_include_token1] = ACTIONS(2614), - [aux_sym_preproc_def_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2614), - [sym_preproc_directive] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP_AMP] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2614), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym___based] = ACTIONS(2614), - [anon_sym___cdecl] = ACTIONS(2614), - [anon_sym___clrcall] = ACTIONS(2614), - [anon_sym___stdcall] = ACTIONS(2614), - [anon_sym___fastcall] = ACTIONS(2614), - [anon_sym___thiscall] = ACTIONS(2614), - [anon_sym___vectorcall] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_RBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_case] = ACTIONS(2614), - [anon_sym_default] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_explicit] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_operator] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_namespace] = ACTIONS(2614), - [anon_sym_using] = ACTIONS(2614), - [anon_sym_static_assert] = ACTIONS(2614), - [anon_sym_concept] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), + [527] = { + [sym_identifier] = ACTIONS(3180), + [aux_sym_preproc_include_token1] = ACTIONS(3180), + [aux_sym_preproc_def_token1] = ACTIONS(3180), + [aux_sym_preproc_if_token1] = ACTIONS(3180), + [aux_sym_preproc_if_token2] = ACTIONS(3180), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3180), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3180), + [aux_sym_preproc_else_token1] = ACTIONS(3180), + [aux_sym_preproc_elif_token1] = ACTIONS(3180), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3180), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3180), + [sym_preproc_directive] = ACTIONS(3180), + [anon_sym_LPAREN2] = ACTIONS(3182), + [anon_sym_BANG] = ACTIONS(3182), + [anon_sym_TILDE] = ACTIONS(3182), + [anon_sym_DASH] = ACTIONS(3180), + [anon_sym_PLUS] = ACTIONS(3180), + [anon_sym_STAR] = ACTIONS(3182), + [anon_sym_AMP_AMP] = ACTIONS(3182), + [anon_sym_AMP] = ACTIONS(3180), + [anon_sym_SEMI] = ACTIONS(3182), + [anon_sym_typedef] = ACTIONS(3180), + [anon_sym_extern] = ACTIONS(3180), + [anon_sym___attribute__] = ACTIONS(3180), + [anon_sym_COLON_COLON] = ACTIONS(3182), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3182), + [anon_sym___declspec] = ACTIONS(3180), + [anon_sym___based] = ACTIONS(3180), + [anon_sym___cdecl] = ACTIONS(3180), + [anon_sym___clrcall] = ACTIONS(3180), + [anon_sym___stdcall] = ACTIONS(3180), + [anon_sym___fastcall] = ACTIONS(3180), + [anon_sym___thiscall] = ACTIONS(3180), + [anon_sym___vectorcall] = ACTIONS(3180), + [anon_sym_LBRACE] = ACTIONS(3182), + [anon_sym_LBRACK] = ACTIONS(3180), + [anon_sym_static] = ACTIONS(3180), + [anon_sym_register] = ACTIONS(3180), + [anon_sym_inline] = ACTIONS(3180), + [anon_sym_thread_local] = ACTIONS(3180), + [anon_sym_const] = ACTIONS(3180), + [anon_sym_constexpr] = ACTIONS(3180), + [anon_sym_volatile] = ACTIONS(3180), + [anon_sym_restrict] = ACTIONS(3180), + [anon_sym___restrict__] = ACTIONS(3180), + [anon_sym__Atomic] = ACTIONS(3180), + [anon_sym__Noreturn] = ACTIONS(3180), + [anon_sym_noreturn] = ACTIONS(3180), + [anon_sym_mutable] = ACTIONS(3180), + [anon_sym_constinit] = ACTIONS(3180), + [anon_sym_consteval] = ACTIONS(3180), + [anon_sym_signed] = ACTIONS(3180), + [anon_sym_unsigned] = ACTIONS(3180), + [anon_sym_long] = ACTIONS(3180), + [anon_sym_short] = ACTIONS(3180), + [sym_primitive_type] = ACTIONS(3180), + [anon_sym_enum] = ACTIONS(3180), + [anon_sym_class] = ACTIONS(3180), + [anon_sym_struct] = ACTIONS(3180), + [anon_sym_union] = ACTIONS(3180), + [anon_sym_if] = ACTIONS(3180), + [anon_sym_switch] = ACTIONS(3180), + [anon_sym_case] = ACTIONS(3180), + [anon_sym_default] = ACTIONS(3180), + [anon_sym_while] = ACTIONS(3180), + [anon_sym_do] = ACTIONS(3180), + [anon_sym_for] = ACTIONS(3180), + [anon_sym_return] = ACTIONS(3180), + [anon_sym_break] = ACTIONS(3180), + [anon_sym_continue] = ACTIONS(3180), + [anon_sym_goto] = ACTIONS(3180), + [anon_sym_not] = ACTIONS(3180), + [anon_sym_compl] = ACTIONS(3180), + [anon_sym_DASH_DASH] = ACTIONS(3182), + [anon_sym_PLUS_PLUS] = ACTIONS(3182), + [anon_sym_sizeof] = ACTIONS(3180), + [anon_sym_offsetof] = ACTIONS(3180), + [anon_sym__Generic] = ACTIONS(3180), + [anon_sym_asm] = ACTIONS(3180), + [anon_sym___asm__] = ACTIONS(3180), + [sym_number_literal] = ACTIONS(3182), + [anon_sym_L_SQUOTE] = ACTIONS(3182), + [anon_sym_u_SQUOTE] = ACTIONS(3182), + [anon_sym_U_SQUOTE] = ACTIONS(3182), + [anon_sym_u8_SQUOTE] = ACTIONS(3182), + [anon_sym_SQUOTE] = ACTIONS(3182), + [anon_sym_L_DQUOTE] = ACTIONS(3182), + [anon_sym_u_DQUOTE] = ACTIONS(3182), + [anon_sym_U_DQUOTE] = ACTIONS(3182), + [anon_sym_u8_DQUOTE] = ACTIONS(3182), + [anon_sym_DQUOTE] = ACTIONS(3182), + [sym_true] = ACTIONS(3180), + [sym_false] = ACTIONS(3180), + [anon_sym_NULL] = ACTIONS(3180), + [anon_sym_nullptr] = ACTIONS(3180), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3180), + [anon_sym_decltype] = ACTIONS(3180), + [anon_sym_virtual] = ACTIONS(3180), + [anon_sym_explicit] = ACTIONS(3180), + [anon_sym_typename] = ACTIONS(3180), + [anon_sym_template] = ACTIONS(3180), + [anon_sym_operator] = ACTIONS(3180), + [anon_sym_try] = ACTIONS(3180), + [anon_sym_delete] = ACTIONS(3180), + [anon_sym_throw] = ACTIONS(3180), + [anon_sym_namespace] = ACTIONS(3180), + [anon_sym_using] = ACTIONS(3180), + [anon_sym_static_assert] = ACTIONS(3180), + [anon_sym_concept] = ACTIONS(3180), + [anon_sym_co_return] = ACTIONS(3180), + [anon_sym_co_yield] = ACTIONS(3180), + [anon_sym_R_DQUOTE] = ACTIONS(3182), + [anon_sym_LR_DQUOTE] = ACTIONS(3182), + [anon_sym_uR_DQUOTE] = ACTIONS(3182), + [anon_sym_UR_DQUOTE] = ACTIONS(3182), + [anon_sym_u8R_DQUOTE] = ACTIONS(3182), + [anon_sym_co_await] = ACTIONS(3180), + [anon_sym_new] = ACTIONS(3180), + [anon_sym_requires] = ACTIONS(3180), + [sym_this] = ACTIONS(3180), }, - [558] = { - [ts_builtin_sym_end] = ACTIONS(2550), - [sym_identifier] = ACTIONS(2548), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2550), - [anon_sym_AMP] = ACTIONS(2548), - [anon_sym_SEMI] = ACTIONS(2550), - [anon_sym_typedef] = ACTIONS(2548), - [anon_sym_extern] = ACTIONS(2548), - [anon_sym___attribute__] = ACTIONS(2548), - [anon_sym_COLON_COLON] = ACTIONS(2550), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2550), - [anon_sym___declspec] = ACTIONS(2548), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2548), - [anon_sym_static] = ACTIONS(2548), - [anon_sym_register] = ACTIONS(2548), - [anon_sym_inline] = ACTIONS(2548), - [anon_sym_thread_local] = ACTIONS(2548), - [anon_sym_const] = ACTIONS(2548), - [anon_sym_volatile] = ACTIONS(2548), - [anon_sym_restrict] = ACTIONS(2548), - [anon_sym__Atomic] = ACTIONS(2548), - [anon_sym_mutable] = ACTIONS(2548), - [anon_sym_constexpr] = ACTIONS(2548), - [anon_sym_constinit] = ACTIONS(2548), - [anon_sym_consteval] = ACTIONS(2548), - [anon_sym_signed] = ACTIONS(2548), - [anon_sym_unsigned] = ACTIONS(2548), - [anon_sym_long] = ACTIONS(2548), - [anon_sym_short] = ACTIONS(2548), - [sym_primitive_type] = ACTIONS(2548), - [anon_sym_enum] = ACTIONS(2548), - [anon_sym_class] = 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_return] = ACTIONS(2548), - [anon_sym_break] = ACTIONS(2548), - [anon_sym_continue] = ACTIONS(2548), - [anon_sym_goto] = ACTIONS(2548), - [anon_sym_not] = ACTIONS(2548), - [anon_sym_compl] = ACTIONS(2548), - [anon_sym_DASH_DASH] = ACTIONS(2550), - [anon_sym_PLUS_PLUS] = ACTIONS(2550), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2550), - [anon_sym_u_DQUOTE] = ACTIONS(2550), - [anon_sym_U_DQUOTE] = ACTIONS(2550), - [anon_sym_u8_DQUOTE] = ACTIONS(2550), - [anon_sym_DQUOTE] = ACTIONS(2550), - [sym_true] = ACTIONS(2548), - [sym_false] = ACTIONS(2548), - [sym_null] = ACTIONS(2548), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2548), - [anon_sym_decltype] = ACTIONS(2548), - [anon_sym_virtual] = ACTIONS(2548), - [anon_sym_explicit] = ACTIONS(2548), - [anon_sym_typename] = ACTIONS(2548), - [anon_sym_template] = ACTIONS(2548), - [anon_sym_operator] = ACTIONS(2548), - [anon_sym_try] = ACTIONS(2548), - [anon_sym_delete] = ACTIONS(2548), - [anon_sym_throw] = ACTIONS(2548), - [anon_sym_namespace] = ACTIONS(2548), - [anon_sym_using] = ACTIONS(2548), - [anon_sym_static_assert] = ACTIONS(2548), - [anon_sym_concept] = ACTIONS(2548), - [anon_sym_co_return] = ACTIONS(2548), - [anon_sym_co_yield] = ACTIONS(2548), - [anon_sym_R_DQUOTE] = ACTIONS(2550), - [anon_sym_LR_DQUOTE] = ACTIONS(2550), - [anon_sym_uR_DQUOTE] = ACTIONS(2550), - [anon_sym_UR_DQUOTE] = ACTIONS(2550), - [anon_sym_u8R_DQUOTE] = ACTIONS(2550), - [anon_sym_co_await] = ACTIONS(2548), - [anon_sym_new] = ACTIONS(2548), - [anon_sym_requires] = ACTIONS(2548), - [sym_this] = ACTIONS(2548), - [sym_nullptr] = ACTIONS(2548), + [528] = { + [sym__expression] = STATE(4241), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7328), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3184), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(3187), + [anon_sym_extern] = ACTIONS(3189), + [anon_sym___attribute__] = ACTIONS(3189), + [anon_sym_COLON_COLON] = ACTIONS(3191), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3194), + [anon_sym___declspec] = ACTIONS(3189), + [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_static] = ACTIONS(3189), + [anon_sym_register] = ACTIONS(3189), + [anon_sym_inline] = ACTIONS(3189), + [anon_sym_thread_local] = ACTIONS(3189), + [anon_sym_const] = ACTIONS(3189), + [anon_sym_constexpr] = ACTIONS(3189), + [anon_sym_volatile] = ACTIONS(3189), + [anon_sym_restrict] = ACTIONS(3189), + [anon_sym___restrict__] = ACTIONS(3189), + [anon_sym__Atomic] = ACTIONS(3189), + [anon_sym__Noreturn] = ACTIONS(3189), + [anon_sym_noreturn] = ACTIONS(3189), + [anon_sym_mutable] = ACTIONS(3189), + [anon_sym_constinit] = ACTIONS(3189), + [anon_sym_consteval] = ACTIONS(3189), + [anon_sym_signed] = ACTIONS(3189), + [anon_sym_unsigned] = ACTIONS(3189), + [anon_sym_long] = ACTIONS(3189), + [anon_sym_short] = ACTIONS(3189), + [sym_primitive_type] = ACTIONS(3196), + [anon_sym_enum] = ACTIONS(3189), + [anon_sym_class] = ACTIONS(3189), + [anon_sym_struct] = ACTIONS(3189), + [anon_sym_union] = ACTIONS(3189), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3189), + [anon_sym_decltype] = ACTIONS(3199), + [anon_sym_virtual] = ACTIONS(3189), + [anon_sym_typename] = ACTIONS(3189), + [anon_sym_template] = ACTIONS(3202), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, - [559] = { - [ts_builtin_sym_end] = ACTIONS(2570), - [sym_identifier] = ACTIONS(2568), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2570), - [anon_sym_AMP] = ACTIONS(2568), - [anon_sym_SEMI] = ACTIONS(2570), - [anon_sym_typedef] = ACTIONS(2568), - [anon_sym_extern] = ACTIONS(2568), - [anon_sym___attribute__] = ACTIONS(2568), - [anon_sym_COLON_COLON] = ACTIONS(2570), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2570), - [anon_sym___declspec] = ACTIONS(2568), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2568), - [anon_sym_static] = ACTIONS(2568), - [anon_sym_register] = ACTIONS(2568), - [anon_sym_inline] = ACTIONS(2568), - [anon_sym_thread_local] = ACTIONS(2568), - [anon_sym_const] = ACTIONS(2568), - [anon_sym_volatile] = ACTIONS(2568), - [anon_sym_restrict] = ACTIONS(2568), - [anon_sym__Atomic] = ACTIONS(2568), - [anon_sym_mutable] = ACTIONS(2568), - [anon_sym_constexpr] = ACTIONS(2568), - [anon_sym_constinit] = ACTIONS(2568), - [anon_sym_consteval] = ACTIONS(2568), - [anon_sym_signed] = ACTIONS(2568), - [anon_sym_unsigned] = ACTIONS(2568), - [anon_sym_long] = ACTIONS(2568), - [anon_sym_short] = ACTIONS(2568), - [sym_primitive_type] = ACTIONS(2568), - [anon_sym_enum] = ACTIONS(2568), - [anon_sym_class] = 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_return] = ACTIONS(2568), - [anon_sym_break] = ACTIONS(2568), - [anon_sym_continue] = ACTIONS(2568), - [anon_sym_goto] = ACTIONS(2568), - [anon_sym_not] = ACTIONS(2568), - [anon_sym_compl] = ACTIONS(2568), - [anon_sym_DASH_DASH] = ACTIONS(2570), - [anon_sym_PLUS_PLUS] = ACTIONS(2570), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2570), - [anon_sym_u_DQUOTE] = ACTIONS(2570), - [anon_sym_U_DQUOTE] = ACTIONS(2570), - [anon_sym_u8_DQUOTE] = ACTIONS(2570), - [anon_sym_DQUOTE] = ACTIONS(2570), - [sym_true] = ACTIONS(2568), - [sym_false] = ACTIONS(2568), - [sym_null] = ACTIONS(2568), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2568), - [anon_sym_decltype] = ACTIONS(2568), - [anon_sym_virtual] = ACTIONS(2568), - [anon_sym_explicit] = ACTIONS(2568), - [anon_sym_typename] = ACTIONS(2568), - [anon_sym_template] = ACTIONS(2568), - [anon_sym_operator] = ACTIONS(2568), - [anon_sym_try] = ACTIONS(2568), - [anon_sym_delete] = ACTIONS(2568), - [anon_sym_throw] = ACTIONS(2568), - [anon_sym_namespace] = ACTIONS(2568), - [anon_sym_using] = ACTIONS(2568), - [anon_sym_static_assert] = ACTIONS(2568), - [anon_sym_concept] = ACTIONS(2568), - [anon_sym_co_return] = ACTIONS(2568), - [anon_sym_co_yield] = ACTIONS(2568), - [anon_sym_R_DQUOTE] = ACTIONS(2570), - [anon_sym_LR_DQUOTE] = ACTIONS(2570), - [anon_sym_uR_DQUOTE] = ACTIONS(2570), - [anon_sym_UR_DQUOTE] = ACTIONS(2570), - [anon_sym_u8R_DQUOTE] = ACTIONS(2570), - [anon_sym_co_await] = ACTIONS(2568), - [anon_sym_new] = ACTIONS(2568), - [anon_sym_requires] = ACTIONS(2568), - [sym_this] = ACTIONS(2568), - [sym_nullptr] = ACTIONS(2568), + [529] = { + [sym_identifier] = ACTIONS(3205), + [aux_sym_preproc_include_token1] = ACTIONS(3205), + [aux_sym_preproc_def_token1] = ACTIONS(3205), + [aux_sym_preproc_if_token1] = ACTIONS(3205), + [aux_sym_preproc_if_token2] = ACTIONS(3205), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3205), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3205), + [aux_sym_preproc_else_token1] = ACTIONS(3205), + [aux_sym_preproc_elif_token1] = ACTIONS(3205), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3205), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3205), + [sym_preproc_directive] = ACTIONS(3205), + [anon_sym_LPAREN2] = ACTIONS(3207), + [anon_sym_BANG] = ACTIONS(3207), + [anon_sym_TILDE] = ACTIONS(3207), + [anon_sym_DASH] = ACTIONS(3205), + [anon_sym_PLUS] = ACTIONS(3205), + [anon_sym_STAR] = ACTIONS(3207), + [anon_sym_AMP_AMP] = ACTIONS(3207), + [anon_sym_AMP] = ACTIONS(3205), + [anon_sym_SEMI] = ACTIONS(3207), + [anon_sym_typedef] = ACTIONS(3205), + [anon_sym_extern] = ACTIONS(3205), + [anon_sym___attribute__] = ACTIONS(3205), + [anon_sym_COLON_COLON] = ACTIONS(3207), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3207), + [anon_sym___declspec] = ACTIONS(3205), + [anon_sym___based] = ACTIONS(3205), + [anon_sym___cdecl] = ACTIONS(3205), + [anon_sym___clrcall] = ACTIONS(3205), + [anon_sym___stdcall] = ACTIONS(3205), + [anon_sym___fastcall] = ACTIONS(3205), + [anon_sym___thiscall] = ACTIONS(3205), + [anon_sym___vectorcall] = ACTIONS(3205), + [anon_sym_LBRACE] = ACTIONS(3207), + [anon_sym_LBRACK] = ACTIONS(3205), + [anon_sym_static] = ACTIONS(3205), + [anon_sym_register] = ACTIONS(3205), + [anon_sym_inline] = ACTIONS(3205), + [anon_sym_thread_local] = ACTIONS(3205), + [anon_sym_const] = ACTIONS(3205), + [anon_sym_constexpr] = ACTIONS(3205), + [anon_sym_volatile] = ACTIONS(3205), + [anon_sym_restrict] = ACTIONS(3205), + [anon_sym___restrict__] = ACTIONS(3205), + [anon_sym__Atomic] = ACTIONS(3205), + [anon_sym__Noreturn] = ACTIONS(3205), + [anon_sym_noreturn] = ACTIONS(3205), + [anon_sym_mutable] = ACTIONS(3205), + [anon_sym_constinit] = ACTIONS(3205), + [anon_sym_consteval] = ACTIONS(3205), + [anon_sym_signed] = ACTIONS(3205), + [anon_sym_unsigned] = ACTIONS(3205), + [anon_sym_long] = ACTIONS(3205), + [anon_sym_short] = ACTIONS(3205), + [sym_primitive_type] = ACTIONS(3205), + [anon_sym_enum] = ACTIONS(3205), + [anon_sym_class] = ACTIONS(3205), + [anon_sym_struct] = ACTIONS(3205), + [anon_sym_union] = ACTIONS(3205), + [anon_sym_if] = ACTIONS(3205), + [anon_sym_switch] = ACTIONS(3205), + [anon_sym_case] = ACTIONS(3205), + [anon_sym_default] = ACTIONS(3205), + [anon_sym_while] = ACTIONS(3205), + [anon_sym_do] = ACTIONS(3205), + [anon_sym_for] = ACTIONS(3205), + [anon_sym_return] = ACTIONS(3205), + [anon_sym_break] = ACTIONS(3205), + [anon_sym_continue] = ACTIONS(3205), + [anon_sym_goto] = ACTIONS(3205), + [anon_sym_not] = ACTIONS(3205), + [anon_sym_compl] = ACTIONS(3205), + [anon_sym_DASH_DASH] = ACTIONS(3207), + [anon_sym_PLUS_PLUS] = ACTIONS(3207), + [anon_sym_sizeof] = ACTIONS(3205), + [anon_sym_offsetof] = ACTIONS(3205), + [anon_sym__Generic] = ACTIONS(3205), + [anon_sym_asm] = ACTIONS(3205), + [anon_sym___asm__] = ACTIONS(3205), + [sym_number_literal] = ACTIONS(3207), + [anon_sym_L_SQUOTE] = ACTIONS(3207), + [anon_sym_u_SQUOTE] = ACTIONS(3207), + [anon_sym_U_SQUOTE] = ACTIONS(3207), + [anon_sym_u8_SQUOTE] = ACTIONS(3207), + [anon_sym_SQUOTE] = ACTIONS(3207), + [anon_sym_L_DQUOTE] = ACTIONS(3207), + [anon_sym_u_DQUOTE] = ACTIONS(3207), + [anon_sym_U_DQUOTE] = ACTIONS(3207), + [anon_sym_u8_DQUOTE] = ACTIONS(3207), + [anon_sym_DQUOTE] = ACTIONS(3207), + [sym_true] = ACTIONS(3205), + [sym_false] = ACTIONS(3205), + [anon_sym_NULL] = ACTIONS(3205), + [anon_sym_nullptr] = ACTIONS(3205), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3205), + [anon_sym_decltype] = ACTIONS(3205), + [anon_sym_virtual] = ACTIONS(3205), + [anon_sym_explicit] = ACTIONS(3205), + [anon_sym_typename] = ACTIONS(3205), + [anon_sym_template] = ACTIONS(3205), + [anon_sym_operator] = ACTIONS(3205), + [anon_sym_try] = ACTIONS(3205), + [anon_sym_delete] = ACTIONS(3205), + [anon_sym_throw] = ACTIONS(3205), + [anon_sym_namespace] = ACTIONS(3205), + [anon_sym_using] = ACTIONS(3205), + [anon_sym_static_assert] = ACTIONS(3205), + [anon_sym_concept] = ACTIONS(3205), + [anon_sym_co_return] = ACTIONS(3205), + [anon_sym_co_yield] = ACTIONS(3205), + [anon_sym_R_DQUOTE] = ACTIONS(3207), + [anon_sym_LR_DQUOTE] = ACTIONS(3207), + [anon_sym_uR_DQUOTE] = ACTIONS(3207), + [anon_sym_UR_DQUOTE] = ACTIONS(3207), + [anon_sym_u8R_DQUOTE] = ACTIONS(3207), + [anon_sym_co_await] = ACTIONS(3205), + [anon_sym_new] = ACTIONS(3205), + [anon_sym_requires] = ACTIONS(3205), + [sym_this] = ACTIONS(3205), }, - [560] = { - [ts_builtin_sym_end] = ACTIONS(2480), - [sym_identifier] = ACTIONS(2478), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2480), - [anon_sym_AMP] = ACTIONS(2478), - [anon_sym_SEMI] = ACTIONS(2480), - [anon_sym_typedef] = ACTIONS(2478), - [anon_sym_extern] = ACTIONS(2478), - [anon_sym___attribute__] = ACTIONS(2478), - [anon_sym_COLON_COLON] = ACTIONS(2480), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2480), - [anon_sym___declspec] = ACTIONS(2478), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2478), - [anon_sym_static] = ACTIONS(2478), - [anon_sym_register] = ACTIONS(2478), - [anon_sym_inline] = ACTIONS(2478), - [anon_sym_thread_local] = ACTIONS(2478), - [anon_sym_const] = ACTIONS(2478), - [anon_sym_volatile] = ACTIONS(2478), - [anon_sym_restrict] = ACTIONS(2478), - [anon_sym__Atomic] = ACTIONS(2478), - [anon_sym_mutable] = ACTIONS(2478), - [anon_sym_constexpr] = ACTIONS(2478), - [anon_sym_constinit] = ACTIONS(2478), - [anon_sym_consteval] = ACTIONS(2478), - [anon_sym_signed] = ACTIONS(2478), - [anon_sym_unsigned] = ACTIONS(2478), - [anon_sym_long] = ACTIONS(2478), - [anon_sym_short] = ACTIONS(2478), - [sym_primitive_type] = ACTIONS(2478), - [anon_sym_enum] = ACTIONS(2478), - [anon_sym_class] = 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_return] = ACTIONS(2478), - [anon_sym_break] = ACTIONS(2478), - [anon_sym_continue] = ACTIONS(2478), - [anon_sym_goto] = ACTIONS(2478), - [anon_sym_not] = ACTIONS(2478), - [anon_sym_compl] = ACTIONS(2478), - [anon_sym_DASH_DASH] = ACTIONS(2480), - [anon_sym_PLUS_PLUS] = ACTIONS(2480), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2480), - [anon_sym_u_DQUOTE] = ACTIONS(2480), - [anon_sym_U_DQUOTE] = ACTIONS(2480), - [anon_sym_u8_DQUOTE] = ACTIONS(2480), - [anon_sym_DQUOTE] = ACTIONS(2480), - [sym_true] = ACTIONS(2478), - [sym_false] = ACTIONS(2478), - [sym_null] = ACTIONS(2478), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2478), - [anon_sym_decltype] = ACTIONS(2478), - [anon_sym_virtual] = ACTIONS(2478), - [anon_sym_explicit] = ACTIONS(2478), - [anon_sym_typename] = ACTIONS(2478), - [anon_sym_template] = ACTIONS(2478), - [anon_sym_operator] = ACTIONS(2478), - [anon_sym_try] = ACTIONS(2478), - [anon_sym_delete] = ACTIONS(2478), - [anon_sym_throw] = ACTIONS(2478), - [anon_sym_namespace] = ACTIONS(2478), - [anon_sym_using] = ACTIONS(2478), - [anon_sym_static_assert] = ACTIONS(2478), - [anon_sym_concept] = ACTIONS(2478), - [anon_sym_co_return] = ACTIONS(2478), - [anon_sym_co_yield] = ACTIONS(2478), - [anon_sym_R_DQUOTE] = ACTIONS(2480), - [anon_sym_LR_DQUOTE] = ACTIONS(2480), - [anon_sym_uR_DQUOTE] = ACTIONS(2480), - [anon_sym_UR_DQUOTE] = ACTIONS(2480), - [anon_sym_u8R_DQUOTE] = ACTIONS(2480), - [anon_sym_co_await] = ACTIONS(2478), - [anon_sym_new] = ACTIONS(2478), - [anon_sym_requires] = ACTIONS(2478), - [sym_this] = ACTIONS(2478), - [sym_nullptr] = ACTIONS(2478), + [530] = { + [sym__expression] = STATE(4242), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7326), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3209), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(3212), + [anon_sym_extern] = ACTIONS(2962), + [anon_sym___attribute__] = ACTIONS(2962), + [anon_sym_COLON_COLON] = ACTIONS(3214), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2964), + [anon_sym___declspec] = ACTIONS(2962), + [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_static] = ACTIONS(2962), + [anon_sym_register] = ACTIONS(2962), + [anon_sym_inline] = ACTIONS(2962), + [anon_sym_thread_local] = ACTIONS(2962), + [anon_sym_const] = ACTIONS(2962), + [anon_sym_constexpr] = ACTIONS(2962), + [anon_sym_volatile] = ACTIONS(2962), + [anon_sym_restrict] = ACTIONS(2962), + [anon_sym___restrict__] = ACTIONS(2962), + [anon_sym__Atomic] = ACTIONS(2962), + [anon_sym__Noreturn] = ACTIONS(2962), + [anon_sym_noreturn] = ACTIONS(2962), + [anon_sym_mutable] = ACTIONS(2962), + [anon_sym_constinit] = ACTIONS(2962), + [anon_sym_consteval] = ACTIONS(2962), + [anon_sym_signed] = ACTIONS(2962), + [anon_sym_unsigned] = ACTIONS(2962), + [anon_sym_long] = ACTIONS(2962), + [anon_sym_short] = ACTIONS(2962), + [sym_primitive_type] = ACTIONS(3217), + [anon_sym_enum] = ACTIONS(2962), + [anon_sym_class] = ACTIONS(2962), + [anon_sym_struct] = ACTIONS(2962), + [anon_sym_union] = ACTIONS(2962), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2962), + [anon_sym_decltype] = ACTIONS(3220), + [anon_sym_virtual] = ACTIONS(2962), + [anon_sym_typename] = ACTIONS(2962), + [anon_sym_template] = ACTIONS(3223), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, - [561] = { - [ts_builtin_sym_end] = ACTIONS(2554), - [sym_identifier] = ACTIONS(2552), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2554), - [anon_sym_AMP] = ACTIONS(2552), - [anon_sym_SEMI] = ACTIONS(2554), - [anon_sym_typedef] = ACTIONS(2552), - [anon_sym_extern] = ACTIONS(2552), - [anon_sym___attribute__] = ACTIONS(2552), - [anon_sym_COLON_COLON] = ACTIONS(2554), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2554), - [anon_sym___declspec] = ACTIONS(2552), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2552), - [anon_sym_static] = ACTIONS(2552), - [anon_sym_register] = ACTIONS(2552), - [anon_sym_inline] = ACTIONS(2552), - [anon_sym_thread_local] = ACTIONS(2552), - [anon_sym_const] = ACTIONS(2552), - [anon_sym_volatile] = ACTIONS(2552), - [anon_sym_restrict] = ACTIONS(2552), - [anon_sym__Atomic] = ACTIONS(2552), - [anon_sym_mutable] = ACTIONS(2552), - [anon_sym_constexpr] = ACTIONS(2552), - [anon_sym_constinit] = ACTIONS(2552), - [anon_sym_consteval] = ACTIONS(2552), - [anon_sym_signed] = ACTIONS(2552), - [anon_sym_unsigned] = ACTIONS(2552), - [anon_sym_long] = ACTIONS(2552), - [anon_sym_short] = ACTIONS(2552), - [sym_primitive_type] = ACTIONS(2552), - [anon_sym_enum] = ACTIONS(2552), - [anon_sym_class] = 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_return] = ACTIONS(2552), - [anon_sym_break] = ACTIONS(2552), - [anon_sym_continue] = ACTIONS(2552), - [anon_sym_goto] = ACTIONS(2552), - [anon_sym_not] = ACTIONS(2552), - [anon_sym_compl] = ACTIONS(2552), - [anon_sym_DASH_DASH] = ACTIONS(2554), - [anon_sym_PLUS_PLUS] = ACTIONS(2554), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2554), - [anon_sym_u_DQUOTE] = ACTIONS(2554), - [anon_sym_U_DQUOTE] = ACTIONS(2554), - [anon_sym_u8_DQUOTE] = ACTIONS(2554), - [anon_sym_DQUOTE] = ACTIONS(2554), - [sym_true] = ACTIONS(2552), - [sym_false] = ACTIONS(2552), - [sym_null] = ACTIONS(2552), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2552), - [anon_sym_decltype] = ACTIONS(2552), - [anon_sym_virtual] = ACTIONS(2552), - [anon_sym_explicit] = ACTIONS(2552), - [anon_sym_typename] = ACTIONS(2552), - [anon_sym_template] = ACTIONS(2552), - [anon_sym_operator] = ACTIONS(2552), - [anon_sym_try] = ACTIONS(2552), - [anon_sym_delete] = ACTIONS(2552), - [anon_sym_throw] = ACTIONS(2552), - [anon_sym_namespace] = ACTIONS(2552), - [anon_sym_using] = ACTIONS(2552), - [anon_sym_static_assert] = ACTIONS(2552), - [anon_sym_concept] = ACTIONS(2552), - [anon_sym_co_return] = ACTIONS(2552), - [anon_sym_co_yield] = ACTIONS(2552), - [anon_sym_R_DQUOTE] = ACTIONS(2554), - [anon_sym_LR_DQUOTE] = ACTIONS(2554), - [anon_sym_uR_DQUOTE] = ACTIONS(2554), - [anon_sym_UR_DQUOTE] = ACTIONS(2554), - [anon_sym_u8R_DQUOTE] = ACTIONS(2554), - [anon_sym_co_await] = ACTIONS(2552), - [anon_sym_new] = ACTIONS(2552), - [anon_sym_requires] = ACTIONS(2552), - [sym_this] = ACTIONS(2552), - [sym_nullptr] = ACTIONS(2552), + [531] = { + [sym_identifier] = ACTIONS(3226), + [aux_sym_preproc_include_token1] = ACTIONS(3226), + [aux_sym_preproc_def_token1] = ACTIONS(3226), + [aux_sym_preproc_if_token1] = ACTIONS(3226), + [aux_sym_preproc_if_token2] = ACTIONS(3226), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3226), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3226), + [aux_sym_preproc_else_token1] = ACTIONS(3226), + [aux_sym_preproc_elif_token1] = ACTIONS(3226), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3226), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3226), + [sym_preproc_directive] = ACTIONS(3226), + [anon_sym_LPAREN2] = ACTIONS(3228), + [anon_sym_BANG] = ACTIONS(3228), + [anon_sym_TILDE] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(3226), + [anon_sym_PLUS] = ACTIONS(3226), + [anon_sym_STAR] = ACTIONS(3228), + [anon_sym_AMP_AMP] = ACTIONS(3228), + [anon_sym_AMP] = ACTIONS(3226), + [anon_sym_SEMI] = ACTIONS(3228), + [anon_sym_typedef] = ACTIONS(3226), + [anon_sym_extern] = ACTIONS(3226), + [anon_sym___attribute__] = ACTIONS(3226), + [anon_sym_COLON_COLON] = ACTIONS(3228), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3228), + [anon_sym___declspec] = ACTIONS(3226), + [anon_sym___based] = ACTIONS(3226), + [anon_sym___cdecl] = ACTIONS(3226), + [anon_sym___clrcall] = ACTIONS(3226), + [anon_sym___stdcall] = ACTIONS(3226), + [anon_sym___fastcall] = ACTIONS(3226), + [anon_sym___thiscall] = ACTIONS(3226), + [anon_sym___vectorcall] = ACTIONS(3226), + [anon_sym_LBRACE] = ACTIONS(3228), + [anon_sym_LBRACK] = ACTIONS(3226), + [anon_sym_static] = ACTIONS(3226), + [anon_sym_register] = ACTIONS(3226), + [anon_sym_inline] = ACTIONS(3226), + [anon_sym_thread_local] = ACTIONS(3226), + [anon_sym_const] = ACTIONS(3226), + [anon_sym_constexpr] = ACTIONS(3226), + [anon_sym_volatile] = ACTIONS(3226), + [anon_sym_restrict] = ACTIONS(3226), + [anon_sym___restrict__] = ACTIONS(3226), + [anon_sym__Atomic] = ACTIONS(3226), + [anon_sym__Noreturn] = ACTIONS(3226), + [anon_sym_noreturn] = ACTIONS(3226), + [anon_sym_mutable] = ACTIONS(3226), + [anon_sym_constinit] = ACTIONS(3226), + [anon_sym_consteval] = ACTIONS(3226), + [anon_sym_signed] = ACTIONS(3226), + [anon_sym_unsigned] = ACTIONS(3226), + [anon_sym_long] = ACTIONS(3226), + [anon_sym_short] = ACTIONS(3226), + [sym_primitive_type] = ACTIONS(3226), + [anon_sym_enum] = ACTIONS(3226), + [anon_sym_class] = ACTIONS(3226), + [anon_sym_struct] = ACTIONS(3226), + [anon_sym_union] = ACTIONS(3226), + [anon_sym_if] = ACTIONS(3226), + [anon_sym_switch] = ACTIONS(3226), + [anon_sym_case] = ACTIONS(3226), + [anon_sym_default] = ACTIONS(3226), + [anon_sym_while] = ACTIONS(3226), + [anon_sym_do] = ACTIONS(3226), + [anon_sym_for] = ACTIONS(3226), + [anon_sym_return] = ACTIONS(3226), + [anon_sym_break] = ACTIONS(3226), + [anon_sym_continue] = ACTIONS(3226), + [anon_sym_goto] = ACTIONS(3226), + [anon_sym_not] = ACTIONS(3226), + [anon_sym_compl] = ACTIONS(3226), + [anon_sym_DASH_DASH] = ACTIONS(3228), + [anon_sym_PLUS_PLUS] = ACTIONS(3228), + [anon_sym_sizeof] = ACTIONS(3226), + [anon_sym_offsetof] = ACTIONS(3226), + [anon_sym__Generic] = ACTIONS(3226), + [anon_sym_asm] = ACTIONS(3226), + [anon_sym___asm__] = ACTIONS(3226), + [sym_number_literal] = ACTIONS(3228), + [anon_sym_L_SQUOTE] = ACTIONS(3228), + [anon_sym_u_SQUOTE] = ACTIONS(3228), + [anon_sym_U_SQUOTE] = ACTIONS(3228), + [anon_sym_u8_SQUOTE] = ACTIONS(3228), + [anon_sym_SQUOTE] = ACTIONS(3228), + [anon_sym_L_DQUOTE] = ACTIONS(3228), + [anon_sym_u_DQUOTE] = ACTIONS(3228), + [anon_sym_U_DQUOTE] = ACTIONS(3228), + [anon_sym_u8_DQUOTE] = ACTIONS(3228), + [anon_sym_DQUOTE] = ACTIONS(3228), + [sym_true] = ACTIONS(3226), + [sym_false] = ACTIONS(3226), + [anon_sym_NULL] = ACTIONS(3226), + [anon_sym_nullptr] = ACTIONS(3226), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3226), + [anon_sym_decltype] = ACTIONS(3226), + [anon_sym_virtual] = ACTIONS(3226), + [anon_sym_explicit] = ACTIONS(3226), + [anon_sym_typename] = ACTIONS(3226), + [anon_sym_template] = ACTIONS(3226), + [anon_sym_operator] = ACTIONS(3226), + [anon_sym_try] = ACTIONS(3226), + [anon_sym_delete] = ACTIONS(3226), + [anon_sym_throw] = ACTIONS(3226), + [anon_sym_namespace] = ACTIONS(3226), + [anon_sym_using] = ACTIONS(3226), + [anon_sym_static_assert] = ACTIONS(3226), + [anon_sym_concept] = ACTIONS(3226), + [anon_sym_co_return] = ACTIONS(3226), + [anon_sym_co_yield] = ACTIONS(3226), + [anon_sym_R_DQUOTE] = ACTIONS(3228), + [anon_sym_LR_DQUOTE] = ACTIONS(3228), + [anon_sym_uR_DQUOTE] = ACTIONS(3228), + [anon_sym_UR_DQUOTE] = ACTIONS(3228), + [anon_sym_u8R_DQUOTE] = ACTIONS(3228), + [anon_sym_co_await] = ACTIONS(3226), + [anon_sym_new] = ACTIONS(3226), + [anon_sym_requires] = ACTIONS(3226), + [sym_this] = ACTIONS(3226), }, - [562] = { - [ts_builtin_sym_end] = ACTIONS(2624), - [sym_identifier] = ACTIONS(2622), - [aux_sym_preproc_include_token1] = ACTIONS(2622), - [aux_sym_preproc_def_token1] = ACTIONS(2622), - [aux_sym_preproc_if_token1] = ACTIONS(2622), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2622), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2622), - [sym_preproc_directive] = ACTIONS(2622), - [anon_sym_LPAREN2] = ACTIONS(2624), - [anon_sym_BANG] = ACTIONS(2624), - [anon_sym_TILDE] = ACTIONS(2624), - [anon_sym_DASH] = ACTIONS(2622), - [anon_sym_PLUS] = ACTIONS(2622), - [anon_sym_STAR] = ACTIONS(2624), - [anon_sym_AMP_AMP] = ACTIONS(2624), - [anon_sym_AMP] = ACTIONS(2622), - [anon_sym_SEMI] = ACTIONS(2624), - [anon_sym_typedef] = ACTIONS(2622), - [anon_sym_extern] = ACTIONS(2622), - [anon_sym___attribute__] = ACTIONS(2622), - [anon_sym_COLON_COLON] = ACTIONS(2624), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2624), - [anon_sym___declspec] = ACTIONS(2622), - [anon_sym___based] = ACTIONS(2622), - [anon_sym___cdecl] = ACTIONS(2622), - [anon_sym___clrcall] = ACTIONS(2622), - [anon_sym___stdcall] = ACTIONS(2622), - [anon_sym___fastcall] = ACTIONS(2622), - [anon_sym___thiscall] = ACTIONS(2622), - [anon_sym___vectorcall] = ACTIONS(2622), - [anon_sym_LBRACE] = ACTIONS(2624), - [anon_sym_LBRACK] = ACTIONS(2622), - [anon_sym_static] = ACTIONS(2622), - [anon_sym_register] = ACTIONS(2622), - [anon_sym_inline] = ACTIONS(2622), - [anon_sym_thread_local] = ACTIONS(2622), - [anon_sym_const] = ACTIONS(2622), - [anon_sym_volatile] = ACTIONS(2622), - [anon_sym_restrict] = ACTIONS(2622), - [anon_sym__Atomic] = ACTIONS(2622), - [anon_sym_mutable] = ACTIONS(2622), - [anon_sym_constexpr] = ACTIONS(2622), - [anon_sym_constinit] = ACTIONS(2622), - [anon_sym_consteval] = ACTIONS(2622), - [anon_sym_signed] = ACTIONS(2622), - [anon_sym_unsigned] = ACTIONS(2622), - [anon_sym_long] = ACTIONS(2622), - [anon_sym_short] = ACTIONS(2622), - [sym_primitive_type] = ACTIONS(2622), - [anon_sym_enum] = ACTIONS(2622), - [anon_sym_class] = ACTIONS(2622), - [anon_sym_struct] = ACTIONS(2622), - [anon_sym_union] = ACTIONS(2622), - [anon_sym_if] = ACTIONS(2622), - [anon_sym_else] = ACTIONS(2622), - [anon_sym_switch] = ACTIONS(2622), - [anon_sym_case] = ACTIONS(2622), - [anon_sym_default] = ACTIONS(2622), - [anon_sym_while] = ACTIONS(2622), - [anon_sym_do] = ACTIONS(2622), - [anon_sym_for] = ACTIONS(2622), - [anon_sym_return] = ACTIONS(2622), - [anon_sym_break] = ACTIONS(2622), - [anon_sym_continue] = ACTIONS(2622), - [anon_sym_goto] = ACTIONS(2622), - [anon_sym_not] = ACTIONS(2622), - [anon_sym_compl] = ACTIONS(2622), - [anon_sym_DASH_DASH] = ACTIONS(2624), - [anon_sym_PLUS_PLUS] = ACTIONS(2624), - [anon_sym_sizeof] = ACTIONS(2622), - [sym_number_literal] = ACTIONS(2624), - [anon_sym_L_SQUOTE] = ACTIONS(2624), - [anon_sym_u_SQUOTE] = ACTIONS(2624), - [anon_sym_U_SQUOTE] = ACTIONS(2624), - [anon_sym_u8_SQUOTE] = ACTIONS(2624), - [anon_sym_SQUOTE] = ACTIONS(2624), - [anon_sym_L_DQUOTE] = ACTIONS(2624), - [anon_sym_u_DQUOTE] = ACTIONS(2624), - [anon_sym_U_DQUOTE] = ACTIONS(2624), - [anon_sym_u8_DQUOTE] = ACTIONS(2624), - [anon_sym_DQUOTE] = ACTIONS(2624), - [sym_true] = ACTIONS(2622), - [sym_false] = ACTIONS(2622), - [sym_null] = ACTIONS(2622), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2622), - [anon_sym_decltype] = ACTIONS(2622), - [anon_sym_virtual] = ACTIONS(2622), - [anon_sym_explicit] = ACTIONS(2622), - [anon_sym_typename] = ACTIONS(2622), - [anon_sym_template] = ACTIONS(2622), - [anon_sym_operator] = ACTIONS(2622), - [anon_sym_try] = ACTIONS(2622), - [anon_sym_delete] = ACTIONS(2622), - [anon_sym_throw] = ACTIONS(2622), - [anon_sym_namespace] = ACTIONS(2622), - [anon_sym_using] = ACTIONS(2622), - [anon_sym_static_assert] = ACTIONS(2622), - [anon_sym_concept] = ACTIONS(2622), - [anon_sym_co_return] = ACTIONS(2622), - [anon_sym_co_yield] = ACTIONS(2622), - [anon_sym_R_DQUOTE] = ACTIONS(2624), - [anon_sym_LR_DQUOTE] = ACTIONS(2624), - [anon_sym_uR_DQUOTE] = ACTIONS(2624), - [anon_sym_UR_DQUOTE] = ACTIONS(2624), - [anon_sym_u8R_DQUOTE] = ACTIONS(2624), - [anon_sym_co_await] = ACTIONS(2622), - [anon_sym_new] = ACTIONS(2622), - [anon_sym_requires] = ACTIONS(2622), - [sym_this] = ACTIONS(2622), - [sym_nullptr] = ACTIONS(2622), + [532] = { + [sym_identifier] = ACTIONS(3230), + [aux_sym_preproc_include_token1] = ACTIONS(3230), + [aux_sym_preproc_def_token1] = ACTIONS(3230), + [aux_sym_preproc_if_token1] = ACTIONS(3230), + [aux_sym_preproc_if_token2] = ACTIONS(3230), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3230), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3230), + [aux_sym_preproc_else_token1] = ACTIONS(3230), + [aux_sym_preproc_elif_token1] = ACTIONS(3230), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3230), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3230), + [sym_preproc_directive] = ACTIONS(3230), + [anon_sym_LPAREN2] = ACTIONS(3232), + [anon_sym_BANG] = ACTIONS(3232), + [anon_sym_TILDE] = ACTIONS(3232), + [anon_sym_DASH] = ACTIONS(3230), + [anon_sym_PLUS] = ACTIONS(3230), + [anon_sym_STAR] = ACTIONS(3232), + [anon_sym_AMP_AMP] = ACTIONS(3232), + [anon_sym_AMP] = ACTIONS(3230), + [anon_sym_SEMI] = ACTIONS(3232), + [anon_sym_typedef] = ACTIONS(3230), + [anon_sym_extern] = ACTIONS(3230), + [anon_sym___attribute__] = ACTIONS(3230), + [anon_sym_COLON_COLON] = ACTIONS(3232), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3232), + [anon_sym___declspec] = ACTIONS(3230), + [anon_sym___based] = ACTIONS(3230), + [anon_sym___cdecl] = ACTIONS(3230), + [anon_sym___clrcall] = ACTIONS(3230), + [anon_sym___stdcall] = ACTIONS(3230), + [anon_sym___fastcall] = ACTIONS(3230), + [anon_sym___thiscall] = ACTIONS(3230), + [anon_sym___vectorcall] = ACTIONS(3230), + [anon_sym_LBRACE] = ACTIONS(3232), + [anon_sym_LBRACK] = ACTIONS(3230), + [anon_sym_static] = ACTIONS(3230), + [anon_sym_register] = ACTIONS(3230), + [anon_sym_inline] = ACTIONS(3230), + [anon_sym_thread_local] = ACTIONS(3230), + [anon_sym_const] = ACTIONS(3230), + [anon_sym_constexpr] = ACTIONS(3230), + [anon_sym_volatile] = ACTIONS(3230), + [anon_sym_restrict] = ACTIONS(3230), + [anon_sym___restrict__] = ACTIONS(3230), + [anon_sym__Atomic] = ACTIONS(3230), + [anon_sym__Noreturn] = ACTIONS(3230), + [anon_sym_noreturn] = ACTIONS(3230), + [anon_sym_mutable] = ACTIONS(3230), + [anon_sym_constinit] = ACTIONS(3230), + [anon_sym_consteval] = ACTIONS(3230), + [anon_sym_signed] = ACTIONS(3230), + [anon_sym_unsigned] = ACTIONS(3230), + [anon_sym_long] = ACTIONS(3230), + [anon_sym_short] = ACTIONS(3230), + [sym_primitive_type] = ACTIONS(3230), + [anon_sym_enum] = ACTIONS(3230), + [anon_sym_class] = ACTIONS(3230), + [anon_sym_struct] = ACTIONS(3230), + [anon_sym_union] = ACTIONS(3230), + [anon_sym_if] = ACTIONS(3230), + [anon_sym_switch] = ACTIONS(3230), + [anon_sym_case] = ACTIONS(3230), + [anon_sym_default] = ACTIONS(3230), + [anon_sym_while] = ACTIONS(3230), + [anon_sym_do] = ACTIONS(3230), + [anon_sym_for] = ACTIONS(3230), + [anon_sym_return] = ACTIONS(3230), + [anon_sym_break] = ACTIONS(3230), + [anon_sym_continue] = ACTIONS(3230), + [anon_sym_goto] = ACTIONS(3230), + [anon_sym_not] = ACTIONS(3230), + [anon_sym_compl] = ACTIONS(3230), + [anon_sym_DASH_DASH] = ACTIONS(3232), + [anon_sym_PLUS_PLUS] = ACTIONS(3232), + [anon_sym_sizeof] = ACTIONS(3230), + [anon_sym_offsetof] = ACTIONS(3230), + [anon_sym__Generic] = ACTIONS(3230), + [anon_sym_asm] = ACTIONS(3230), + [anon_sym___asm__] = ACTIONS(3230), + [sym_number_literal] = ACTIONS(3232), + [anon_sym_L_SQUOTE] = ACTIONS(3232), + [anon_sym_u_SQUOTE] = ACTIONS(3232), + [anon_sym_U_SQUOTE] = ACTIONS(3232), + [anon_sym_u8_SQUOTE] = ACTIONS(3232), + [anon_sym_SQUOTE] = ACTIONS(3232), + [anon_sym_L_DQUOTE] = ACTIONS(3232), + [anon_sym_u_DQUOTE] = ACTIONS(3232), + [anon_sym_U_DQUOTE] = ACTIONS(3232), + [anon_sym_u8_DQUOTE] = ACTIONS(3232), + [anon_sym_DQUOTE] = ACTIONS(3232), + [sym_true] = ACTIONS(3230), + [sym_false] = ACTIONS(3230), + [anon_sym_NULL] = ACTIONS(3230), + [anon_sym_nullptr] = ACTIONS(3230), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3230), + [anon_sym_decltype] = ACTIONS(3230), + [anon_sym_virtual] = ACTIONS(3230), + [anon_sym_explicit] = ACTIONS(3230), + [anon_sym_typename] = ACTIONS(3230), + [anon_sym_template] = ACTIONS(3230), + [anon_sym_operator] = ACTIONS(3230), + [anon_sym_try] = ACTIONS(3230), + [anon_sym_delete] = ACTIONS(3230), + [anon_sym_throw] = ACTIONS(3230), + [anon_sym_namespace] = ACTIONS(3230), + [anon_sym_using] = ACTIONS(3230), + [anon_sym_static_assert] = ACTIONS(3230), + [anon_sym_concept] = ACTIONS(3230), + [anon_sym_co_return] = ACTIONS(3230), + [anon_sym_co_yield] = ACTIONS(3230), + [anon_sym_R_DQUOTE] = ACTIONS(3232), + [anon_sym_LR_DQUOTE] = ACTIONS(3232), + [anon_sym_uR_DQUOTE] = ACTIONS(3232), + [anon_sym_UR_DQUOTE] = ACTIONS(3232), + [anon_sym_u8R_DQUOTE] = ACTIONS(3232), + [anon_sym_co_await] = ACTIONS(3230), + [anon_sym_new] = ACTIONS(3230), + [anon_sym_requires] = ACTIONS(3230), + [sym_this] = ACTIONS(3230), }, - [563] = { - [sym_identifier] = ACTIONS(2492), - [aux_sym_preproc_include_token1] = ACTIONS(2492), - [aux_sym_preproc_def_token1] = ACTIONS(2492), - [aux_sym_preproc_if_token1] = ACTIONS(2492), - [aux_sym_preproc_if_token2] = ACTIONS(2492), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2492), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2492), - [sym_preproc_directive] = ACTIONS(2492), - [anon_sym_LPAREN2] = ACTIONS(2494), - [anon_sym_BANG] = ACTIONS(2494), - [anon_sym_TILDE] = ACTIONS(2494), - [anon_sym_DASH] = ACTIONS(2492), - [anon_sym_PLUS] = ACTIONS(2492), - [anon_sym_STAR] = ACTIONS(2494), - [anon_sym_AMP_AMP] = ACTIONS(2494), - [anon_sym_AMP] = ACTIONS(2492), - [anon_sym_SEMI] = ACTIONS(2494), - [anon_sym_typedef] = ACTIONS(2492), - [anon_sym_extern] = ACTIONS(2492), - [anon_sym___attribute__] = ACTIONS(2492), - [anon_sym_COLON_COLON] = ACTIONS(2494), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2494), - [anon_sym___declspec] = ACTIONS(2492), - [anon_sym___based] = ACTIONS(2492), - [anon_sym___cdecl] = ACTIONS(2492), - [anon_sym___clrcall] = ACTIONS(2492), - [anon_sym___stdcall] = ACTIONS(2492), - [anon_sym___fastcall] = ACTIONS(2492), - [anon_sym___thiscall] = ACTIONS(2492), - [anon_sym___vectorcall] = ACTIONS(2492), - [anon_sym_LBRACE] = ACTIONS(2494), - [anon_sym_LBRACK] = ACTIONS(2492), - [anon_sym_static] = ACTIONS(2492), - [anon_sym_register] = ACTIONS(2492), - [anon_sym_inline] = ACTIONS(2492), - [anon_sym_thread_local] = ACTIONS(2492), - [anon_sym_const] = ACTIONS(2492), - [anon_sym_volatile] = ACTIONS(2492), - [anon_sym_restrict] = ACTIONS(2492), - [anon_sym__Atomic] = ACTIONS(2492), - [anon_sym_mutable] = ACTIONS(2492), - [anon_sym_constexpr] = ACTIONS(2492), - [anon_sym_constinit] = ACTIONS(2492), - [anon_sym_consteval] = ACTIONS(2492), - [anon_sym_signed] = ACTIONS(2492), - [anon_sym_unsigned] = ACTIONS(2492), - [anon_sym_long] = ACTIONS(2492), - [anon_sym_short] = ACTIONS(2492), - [sym_primitive_type] = ACTIONS(2492), - [anon_sym_enum] = ACTIONS(2492), - [anon_sym_class] = ACTIONS(2492), - [anon_sym_struct] = ACTIONS(2492), - [anon_sym_union] = ACTIONS(2492), - [anon_sym_if] = ACTIONS(2492), - [anon_sym_else] = ACTIONS(2492), - [anon_sym_switch] = ACTIONS(2492), - [anon_sym_case] = ACTIONS(2492), - [anon_sym_default] = ACTIONS(2492), - [anon_sym_while] = ACTIONS(2492), - [anon_sym_do] = ACTIONS(2492), - [anon_sym_for] = ACTIONS(2492), - [anon_sym_return] = ACTIONS(2492), - [anon_sym_break] = ACTIONS(2492), - [anon_sym_continue] = ACTIONS(2492), - [anon_sym_goto] = ACTIONS(2492), - [anon_sym_not] = ACTIONS(2492), - [anon_sym_compl] = ACTIONS(2492), - [anon_sym_DASH_DASH] = ACTIONS(2494), - [anon_sym_PLUS_PLUS] = ACTIONS(2494), - [anon_sym_sizeof] = ACTIONS(2492), - [sym_number_literal] = ACTIONS(2494), - [anon_sym_L_SQUOTE] = ACTIONS(2494), - [anon_sym_u_SQUOTE] = ACTIONS(2494), - [anon_sym_U_SQUOTE] = ACTIONS(2494), - [anon_sym_u8_SQUOTE] = ACTIONS(2494), - [anon_sym_SQUOTE] = ACTIONS(2494), - [anon_sym_L_DQUOTE] = ACTIONS(2494), - [anon_sym_u_DQUOTE] = ACTIONS(2494), - [anon_sym_U_DQUOTE] = ACTIONS(2494), - [anon_sym_u8_DQUOTE] = ACTIONS(2494), - [anon_sym_DQUOTE] = ACTIONS(2494), - [sym_true] = ACTIONS(2492), - [sym_false] = ACTIONS(2492), - [sym_null] = ACTIONS(2492), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2492), - [anon_sym_decltype] = ACTIONS(2492), - [anon_sym_virtual] = ACTIONS(2492), - [anon_sym_explicit] = ACTIONS(2492), - [anon_sym_typename] = ACTIONS(2492), - [anon_sym_template] = ACTIONS(2492), - [anon_sym_operator] = ACTIONS(2492), - [anon_sym_try] = ACTIONS(2492), - [anon_sym_delete] = ACTIONS(2492), - [anon_sym_throw] = ACTIONS(2492), - [anon_sym_namespace] = ACTIONS(2492), - [anon_sym_using] = ACTIONS(2492), - [anon_sym_static_assert] = ACTIONS(2492), - [anon_sym_concept] = ACTIONS(2492), - [anon_sym_co_return] = ACTIONS(2492), - [anon_sym_co_yield] = ACTIONS(2492), - [anon_sym_R_DQUOTE] = ACTIONS(2494), - [anon_sym_LR_DQUOTE] = ACTIONS(2494), - [anon_sym_uR_DQUOTE] = ACTIONS(2494), - [anon_sym_UR_DQUOTE] = ACTIONS(2494), - [anon_sym_u8R_DQUOTE] = ACTIONS(2494), - [anon_sym_co_await] = ACTIONS(2492), - [anon_sym_new] = ACTIONS(2492), - [anon_sym_requires] = ACTIONS(2492), - [sym_this] = ACTIONS(2492), - [sym_nullptr] = ACTIONS(2492), + [533] = { + [sym_identifier] = ACTIONS(3234), + [aux_sym_preproc_include_token1] = ACTIONS(3234), + [aux_sym_preproc_def_token1] = ACTIONS(3234), + [aux_sym_preproc_if_token1] = ACTIONS(3234), + [aux_sym_preproc_if_token2] = ACTIONS(3234), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3234), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3234), + [aux_sym_preproc_else_token1] = ACTIONS(3234), + [aux_sym_preproc_elif_token1] = ACTIONS(3234), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3234), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3234), + [sym_preproc_directive] = ACTIONS(3234), + [anon_sym_LPAREN2] = ACTIONS(3236), + [anon_sym_BANG] = ACTIONS(3236), + [anon_sym_TILDE] = ACTIONS(3236), + [anon_sym_DASH] = ACTIONS(3234), + [anon_sym_PLUS] = ACTIONS(3234), + [anon_sym_STAR] = ACTIONS(3236), + [anon_sym_AMP_AMP] = ACTIONS(3236), + [anon_sym_AMP] = ACTIONS(3234), + [anon_sym_SEMI] = ACTIONS(3236), + [anon_sym_typedef] = ACTIONS(3234), + [anon_sym_extern] = ACTIONS(3234), + [anon_sym___attribute__] = ACTIONS(3234), + [anon_sym_COLON_COLON] = ACTIONS(3236), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3236), + [anon_sym___declspec] = ACTIONS(3234), + [anon_sym___based] = ACTIONS(3234), + [anon_sym___cdecl] = ACTIONS(3234), + [anon_sym___clrcall] = ACTIONS(3234), + [anon_sym___stdcall] = ACTIONS(3234), + [anon_sym___fastcall] = ACTIONS(3234), + [anon_sym___thiscall] = ACTIONS(3234), + [anon_sym___vectorcall] = ACTIONS(3234), + [anon_sym_LBRACE] = ACTIONS(3236), + [anon_sym_LBRACK] = ACTIONS(3234), + [anon_sym_static] = ACTIONS(3234), + [anon_sym_register] = ACTIONS(3234), + [anon_sym_inline] = ACTIONS(3234), + [anon_sym_thread_local] = ACTIONS(3234), + [anon_sym_const] = ACTIONS(3234), + [anon_sym_constexpr] = ACTIONS(3234), + [anon_sym_volatile] = ACTIONS(3234), + [anon_sym_restrict] = ACTIONS(3234), + [anon_sym___restrict__] = ACTIONS(3234), + [anon_sym__Atomic] = ACTIONS(3234), + [anon_sym__Noreturn] = ACTIONS(3234), + [anon_sym_noreturn] = ACTIONS(3234), + [anon_sym_mutable] = ACTIONS(3234), + [anon_sym_constinit] = ACTIONS(3234), + [anon_sym_consteval] = ACTIONS(3234), + [anon_sym_signed] = ACTIONS(3234), + [anon_sym_unsigned] = ACTIONS(3234), + [anon_sym_long] = ACTIONS(3234), + [anon_sym_short] = ACTIONS(3234), + [sym_primitive_type] = ACTIONS(3234), + [anon_sym_enum] = ACTIONS(3234), + [anon_sym_class] = ACTIONS(3234), + [anon_sym_struct] = ACTIONS(3234), + [anon_sym_union] = ACTIONS(3234), + [anon_sym_if] = ACTIONS(3234), + [anon_sym_switch] = ACTIONS(3234), + [anon_sym_case] = ACTIONS(3234), + [anon_sym_default] = ACTIONS(3234), + [anon_sym_while] = ACTIONS(3234), + [anon_sym_do] = ACTIONS(3234), + [anon_sym_for] = ACTIONS(3234), + [anon_sym_return] = ACTIONS(3234), + [anon_sym_break] = ACTIONS(3234), + [anon_sym_continue] = ACTIONS(3234), + [anon_sym_goto] = ACTIONS(3234), + [anon_sym_not] = ACTIONS(3234), + [anon_sym_compl] = ACTIONS(3234), + [anon_sym_DASH_DASH] = ACTIONS(3236), + [anon_sym_PLUS_PLUS] = ACTIONS(3236), + [anon_sym_sizeof] = ACTIONS(3234), + [anon_sym_offsetof] = ACTIONS(3234), + [anon_sym__Generic] = ACTIONS(3234), + [anon_sym_asm] = ACTIONS(3234), + [anon_sym___asm__] = ACTIONS(3234), + [sym_number_literal] = ACTIONS(3236), + [anon_sym_L_SQUOTE] = ACTIONS(3236), + [anon_sym_u_SQUOTE] = ACTIONS(3236), + [anon_sym_U_SQUOTE] = ACTIONS(3236), + [anon_sym_u8_SQUOTE] = ACTIONS(3236), + [anon_sym_SQUOTE] = ACTIONS(3236), + [anon_sym_L_DQUOTE] = ACTIONS(3236), + [anon_sym_u_DQUOTE] = ACTIONS(3236), + [anon_sym_U_DQUOTE] = ACTIONS(3236), + [anon_sym_u8_DQUOTE] = ACTIONS(3236), + [anon_sym_DQUOTE] = ACTIONS(3236), + [sym_true] = ACTIONS(3234), + [sym_false] = ACTIONS(3234), + [anon_sym_NULL] = ACTIONS(3234), + [anon_sym_nullptr] = ACTIONS(3234), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3234), + [anon_sym_decltype] = ACTIONS(3234), + [anon_sym_virtual] = ACTIONS(3234), + [anon_sym_explicit] = ACTIONS(3234), + [anon_sym_typename] = ACTIONS(3234), + [anon_sym_template] = ACTIONS(3234), + [anon_sym_operator] = ACTIONS(3234), + [anon_sym_try] = ACTIONS(3234), + [anon_sym_delete] = ACTIONS(3234), + [anon_sym_throw] = ACTIONS(3234), + [anon_sym_namespace] = ACTIONS(3234), + [anon_sym_using] = ACTIONS(3234), + [anon_sym_static_assert] = ACTIONS(3234), + [anon_sym_concept] = ACTIONS(3234), + [anon_sym_co_return] = ACTIONS(3234), + [anon_sym_co_yield] = ACTIONS(3234), + [anon_sym_R_DQUOTE] = ACTIONS(3236), + [anon_sym_LR_DQUOTE] = ACTIONS(3236), + [anon_sym_uR_DQUOTE] = ACTIONS(3236), + [anon_sym_UR_DQUOTE] = ACTIONS(3236), + [anon_sym_u8R_DQUOTE] = ACTIONS(3236), + [anon_sym_co_await] = ACTIONS(3234), + [anon_sym_new] = ACTIONS(3234), + [anon_sym_requires] = ACTIONS(3234), + [sym_this] = ACTIONS(3234), }, - [564] = { - [ts_builtin_sym_end] = ACTIONS(2558), - [sym_identifier] = ACTIONS(2556), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2558), - [anon_sym_AMP] = ACTIONS(2556), - [anon_sym_SEMI] = ACTIONS(2558), - [anon_sym_typedef] = ACTIONS(2556), - [anon_sym_extern] = ACTIONS(2556), - [anon_sym___attribute__] = ACTIONS(2556), - [anon_sym_COLON_COLON] = ACTIONS(2558), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2558), - [anon_sym___declspec] = ACTIONS(2556), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2556), - [anon_sym_static] = ACTIONS(2556), - [anon_sym_register] = ACTIONS(2556), - [anon_sym_inline] = ACTIONS(2556), - [anon_sym_thread_local] = ACTIONS(2556), - [anon_sym_const] = ACTIONS(2556), - [anon_sym_volatile] = ACTIONS(2556), - [anon_sym_restrict] = ACTIONS(2556), - [anon_sym__Atomic] = ACTIONS(2556), - [anon_sym_mutable] = ACTIONS(2556), - [anon_sym_constexpr] = ACTIONS(2556), - [anon_sym_constinit] = ACTIONS(2556), - [anon_sym_consteval] = ACTIONS(2556), - [anon_sym_signed] = ACTIONS(2556), - [anon_sym_unsigned] = ACTIONS(2556), - [anon_sym_long] = ACTIONS(2556), - [anon_sym_short] = ACTIONS(2556), - [sym_primitive_type] = ACTIONS(2556), - [anon_sym_enum] = ACTIONS(2556), - [anon_sym_class] = 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_return] = ACTIONS(2556), - [anon_sym_break] = ACTIONS(2556), - [anon_sym_continue] = ACTIONS(2556), - [anon_sym_goto] = ACTIONS(2556), - [anon_sym_not] = ACTIONS(2556), - [anon_sym_compl] = ACTIONS(2556), - [anon_sym_DASH_DASH] = ACTIONS(2558), - [anon_sym_PLUS_PLUS] = ACTIONS(2558), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2558), - [anon_sym_u_DQUOTE] = ACTIONS(2558), - [anon_sym_U_DQUOTE] = ACTIONS(2558), - [anon_sym_u8_DQUOTE] = ACTIONS(2558), - [anon_sym_DQUOTE] = ACTIONS(2558), - [sym_true] = ACTIONS(2556), - [sym_false] = ACTIONS(2556), - [sym_null] = ACTIONS(2556), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2556), - [anon_sym_decltype] = ACTIONS(2556), - [anon_sym_virtual] = ACTIONS(2556), - [anon_sym_explicit] = ACTIONS(2556), - [anon_sym_typename] = ACTIONS(2556), - [anon_sym_template] = ACTIONS(2556), - [anon_sym_operator] = ACTIONS(2556), - [anon_sym_try] = ACTIONS(2556), - [anon_sym_delete] = ACTIONS(2556), - [anon_sym_throw] = ACTIONS(2556), - [anon_sym_namespace] = ACTIONS(2556), - [anon_sym_using] = ACTIONS(2556), - [anon_sym_static_assert] = ACTIONS(2556), - [anon_sym_concept] = ACTIONS(2556), - [anon_sym_co_return] = ACTIONS(2556), - [anon_sym_co_yield] = ACTIONS(2556), - [anon_sym_R_DQUOTE] = ACTIONS(2558), - [anon_sym_LR_DQUOTE] = ACTIONS(2558), - [anon_sym_uR_DQUOTE] = ACTIONS(2558), - [anon_sym_UR_DQUOTE] = ACTIONS(2558), - [anon_sym_u8R_DQUOTE] = ACTIONS(2558), - [anon_sym_co_await] = ACTIONS(2556), - [anon_sym_new] = ACTIONS(2556), - [anon_sym_requires] = ACTIONS(2556), - [sym_this] = ACTIONS(2556), - [sym_nullptr] = ACTIONS(2556), + [534] = { + [sym_identifier] = ACTIONS(3238), + [aux_sym_preproc_include_token1] = ACTIONS(3238), + [aux_sym_preproc_def_token1] = ACTIONS(3238), + [aux_sym_preproc_if_token1] = ACTIONS(3238), + [aux_sym_preproc_if_token2] = ACTIONS(3238), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3238), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3238), + [aux_sym_preproc_else_token1] = ACTIONS(3238), + [aux_sym_preproc_elif_token1] = ACTIONS(3238), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3238), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3238), + [sym_preproc_directive] = ACTIONS(3238), + [anon_sym_LPAREN2] = ACTIONS(3240), + [anon_sym_BANG] = ACTIONS(3240), + [anon_sym_TILDE] = ACTIONS(3240), + [anon_sym_DASH] = ACTIONS(3238), + [anon_sym_PLUS] = ACTIONS(3238), + [anon_sym_STAR] = ACTIONS(3240), + [anon_sym_AMP_AMP] = ACTIONS(3240), + [anon_sym_AMP] = ACTIONS(3238), + [anon_sym_SEMI] = ACTIONS(3240), + [anon_sym_typedef] = ACTIONS(3238), + [anon_sym_extern] = ACTIONS(3238), + [anon_sym___attribute__] = ACTIONS(3238), + [anon_sym_COLON_COLON] = ACTIONS(3240), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3240), + [anon_sym___declspec] = ACTIONS(3238), + [anon_sym___based] = ACTIONS(3238), + [anon_sym___cdecl] = ACTIONS(3238), + [anon_sym___clrcall] = ACTIONS(3238), + [anon_sym___stdcall] = ACTIONS(3238), + [anon_sym___fastcall] = ACTIONS(3238), + [anon_sym___thiscall] = ACTIONS(3238), + [anon_sym___vectorcall] = ACTIONS(3238), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_LBRACK] = ACTIONS(3238), + [anon_sym_static] = ACTIONS(3238), + [anon_sym_register] = ACTIONS(3238), + [anon_sym_inline] = ACTIONS(3238), + [anon_sym_thread_local] = ACTIONS(3238), + [anon_sym_const] = ACTIONS(3238), + [anon_sym_constexpr] = ACTIONS(3238), + [anon_sym_volatile] = ACTIONS(3238), + [anon_sym_restrict] = ACTIONS(3238), + [anon_sym___restrict__] = ACTIONS(3238), + [anon_sym__Atomic] = ACTIONS(3238), + [anon_sym__Noreturn] = ACTIONS(3238), + [anon_sym_noreturn] = ACTIONS(3238), + [anon_sym_mutable] = ACTIONS(3238), + [anon_sym_constinit] = ACTIONS(3238), + [anon_sym_consteval] = ACTIONS(3238), + [anon_sym_signed] = ACTIONS(3238), + [anon_sym_unsigned] = ACTIONS(3238), + [anon_sym_long] = ACTIONS(3238), + [anon_sym_short] = ACTIONS(3238), + [sym_primitive_type] = ACTIONS(3238), + [anon_sym_enum] = ACTIONS(3238), + [anon_sym_class] = ACTIONS(3238), + [anon_sym_struct] = ACTIONS(3238), + [anon_sym_union] = ACTIONS(3238), + [anon_sym_if] = ACTIONS(3238), + [anon_sym_switch] = ACTIONS(3238), + [anon_sym_case] = ACTIONS(3238), + [anon_sym_default] = ACTIONS(3238), + [anon_sym_while] = ACTIONS(3238), + [anon_sym_do] = ACTIONS(3238), + [anon_sym_for] = ACTIONS(3238), + [anon_sym_return] = ACTIONS(3238), + [anon_sym_break] = ACTIONS(3238), + [anon_sym_continue] = ACTIONS(3238), + [anon_sym_goto] = ACTIONS(3238), + [anon_sym_not] = ACTIONS(3238), + [anon_sym_compl] = ACTIONS(3238), + [anon_sym_DASH_DASH] = ACTIONS(3240), + [anon_sym_PLUS_PLUS] = ACTIONS(3240), + [anon_sym_sizeof] = ACTIONS(3238), + [anon_sym_offsetof] = ACTIONS(3238), + [anon_sym__Generic] = ACTIONS(3238), + [anon_sym_asm] = ACTIONS(3238), + [anon_sym___asm__] = ACTIONS(3238), + [sym_number_literal] = ACTIONS(3240), + [anon_sym_L_SQUOTE] = ACTIONS(3240), + [anon_sym_u_SQUOTE] = ACTIONS(3240), + [anon_sym_U_SQUOTE] = ACTIONS(3240), + [anon_sym_u8_SQUOTE] = ACTIONS(3240), + [anon_sym_SQUOTE] = ACTIONS(3240), + [anon_sym_L_DQUOTE] = ACTIONS(3240), + [anon_sym_u_DQUOTE] = ACTIONS(3240), + [anon_sym_U_DQUOTE] = ACTIONS(3240), + [anon_sym_u8_DQUOTE] = ACTIONS(3240), + [anon_sym_DQUOTE] = ACTIONS(3240), + [sym_true] = ACTIONS(3238), + [sym_false] = ACTIONS(3238), + [anon_sym_NULL] = ACTIONS(3238), + [anon_sym_nullptr] = ACTIONS(3238), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3238), + [anon_sym_decltype] = ACTIONS(3238), + [anon_sym_virtual] = ACTIONS(3238), + [anon_sym_explicit] = ACTIONS(3238), + [anon_sym_typename] = ACTIONS(3238), + [anon_sym_template] = ACTIONS(3238), + [anon_sym_operator] = ACTIONS(3238), + [anon_sym_try] = ACTIONS(3238), + [anon_sym_delete] = ACTIONS(3238), + [anon_sym_throw] = ACTIONS(3238), + [anon_sym_namespace] = ACTIONS(3238), + [anon_sym_using] = ACTIONS(3238), + [anon_sym_static_assert] = ACTIONS(3238), + [anon_sym_concept] = ACTIONS(3238), + [anon_sym_co_return] = ACTIONS(3238), + [anon_sym_co_yield] = ACTIONS(3238), + [anon_sym_R_DQUOTE] = ACTIONS(3240), + [anon_sym_LR_DQUOTE] = ACTIONS(3240), + [anon_sym_uR_DQUOTE] = ACTIONS(3240), + [anon_sym_UR_DQUOTE] = ACTIONS(3240), + [anon_sym_u8R_DQUOTE] = ACTIONS(3240), + [anon_sym_co_await] = ACTIONS(3238), + [anon_sym_new] = ACTIONS(3238), + [anon_sym_requires] = ACTIONS(3238), + [sym_this] = ACTIONS(3238), }, - [565] = { - [sym_identifier] = ACTIONS(2540), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2542), - [anon_sym_AMP] = ACTIONS(2540), - [anon_sym_SEMI] = ACTIONS(2542), - [anon_sym_typedef] = ACTIONS(2540), - [anon_sym_extern] = ACTIONS(2540), - [anon_sym___attribute__] = ACTIONS(2540), - [anon_sym_COLON_COLON] = ACTIONS(2542), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2542), - [anon_sym___declspec] = ACTIONS(2540), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2540), - [anon_sym_static] = ACTIONS(2540), - [anon_sym_register] = ACTIONS(2540), - [anon_sym_inline] = ACTIONS(2540), - [anon_sym_thread_local] = ACTIONS(2540), - [anon_sym_const] = ACTIONS(2540), - [anon_sym_volatile] = ACTIONS(2540), - [anon_sym_restrict] = ACTIONS(2540), - [anon_sym__Atomic] = ACTIONS(2540), - [anon_sym_mutable] = ACTIONS(2540), - [anon_sym_constexpr] = ACTIONS(2540), - [anon_sym_constinit] = ACTIONS(2540), - [anon_sym_consteval] = ACTIONS(2540), - [anon_sym_signed] = ACTIONS(2540), - [anon_sym_unsigned] = ACTIONS(2540), - [anon_sym_long] = ACTIONS(2540), - [anon_sym_short] = ACTIONS(2540), - [sym_primitive_type] = ACTIONS(2540), - [anon_sym_enum] = ACTIONS(2540), - [anon_sym_class] = 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_return] = ACTIONS(2540), - [anon_sym_break] = ACTIONS(2540), - [anon_sym_continue] = ACTIONS(2540), - [anon_sym_goto] = ACTIONS(2540), - [anon_sym_not] = ACTIONS(2540), - [anon_sym_compl] = ACTIONS(2540), - [anon_sym_DASH_DASH] = ACTIONS(2542), - [anon_sym_PLUS_PLUS] = ACTIONS(2542), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2542), - [anon_sym_u_DQUOTE] = ACTIONS(2542), - [anon_sym_U_DQUOTE] = ACTIONS(2542), - [anon_sym_u8_DQUOTE] = ACTIONS(2542), - [anon_sym_DQUOTE] = ACTIONS(2542), - [sym_true] = ACTIONS(2540), - [sym_false] = ACTIONS(2540), - [sym_null] = ACTIONS(2540), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2540), - [anon_sym_decltype] = ACTIONS(2540), - [anon_sym_virtual] = ACTIONS(2540), - [anon_sym_explicit] = ACTIONS(2540), - [anon_sym_typename] = ACTIONS(2540), - [anon_sym_template] = ACTIONS(2540), - [anon_sym_operator] = ACTIONS(2540), - [anon_sym_try] = ACTIONS(2540), - [anon_sym_delete] = ACTIONS(2540), - [anon_sym_throw] = ACTIONS(2540), - [anon_sym_namespace] = ACTIONS(2540), - [anon_sym_using] = ACTIONS(2540), - [anon_sym_static_assert] = ACTIONS(2540), - [anon_sym_concept] = ACTIONS(2540), - [anon_sym_co_return] = ACTIONS(2540), - [anon_sym_co_yield] = ACTIONS(2540), - [anon_sym_R_DQUOTE] = ACTIONS(2542), - [anon_sym_LR_DQUOTE] = ACTIONS(2542), - [anon_sym_uR_DQUOTE] = ACTIONS(2542), - [anon_sym_UR_DQUOTE] = ACTIONS(2542), - [anon_sym_u8R_DQUOTE] = ACTIONS(2542), - [anon_sym_co_await] = ACTIONS(2540), - [anon_sym_new] = ACTIONS(2540), - [anon_sym_requires] = ACTIONS(2540), - [sym_this] = ACTIONS(2540), - [sym_nullptr] = ACTIONS(2540), + [535] = { + [sym_identifier] = ACTIONS(3242), + [aux_sym_preproc_include_token1] = ACTIONS(3242), + [aux_sym_preproc_def_token1] = ACTIONS(3242), + [aux_sym_preproc_if_token1] = ACTIONS(3242), + [aux_sym_preproc_if_token2] = ACTIONS(3242), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3242), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3242), + [aux_sym_preproc_else_token1] = ACTIONS(3242), + [aux_sym_preproc_elif_token1] = ACTIONS(3242), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3242), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3242), + [sym_preproc_directive] = ACTIONS(3242), + [anon_sym_LPAREN2] = ACTIONS(3244), + [anon_sym_BANG] = ACTIONS(3244), + [anon_sym_TILDE] = ACTIONS(3244), + [anon_sym_DASH] = ACTIONS(3242), + [anon_sym_PLUS] = ACTIONS(3242), + [anon_sym_STAR] = ACTIONS(3244), + [anon_sym_AMP_AMP] = ACTIONS(3244), + [anon_sym_AMP] = ACTIONS(3242), + [anon_sym_SEMI] = ACTIONS(3244), + [anon_sym_typedef] = ACTIONS(3242), + [anon_sym_extern] = ACTIONS(3242), + [anon_sym___attribute__] = ACTIONS(3242), + [anon_sym_COLON_COLON] = ACTIONS(3244), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3244), + [anon_sym___declspec] = ACTIONS(3242), + [anon_sym___based] = ACTIONS(3242), + [anon_sym___cdecl] = ACTIONS(3242), + [anon_sym___clrcall] = ACTIONS(3242), + [anon_sym___stdcall] = ACTIONS(3242), + [anon_sym___fastcall] = ACTIONS(3242), + [anon_sym___thiscall] = ACTIONS(3242), + [anon_sym___vectorcall] = ACTIONS(3242), + [anon_sym_LBRACE] = ACTIONS(3244), + [anon_sym_LBRACK] = ACTIONS(3242), + [anon_sym_static] = ACTIONS(3242), + [anon_sym_register] = ACTIONS(3242), + [anon_sym_inline] = ACTIONS(3242), + [anon_sym_thread_local] = ACTIONS(3242), + [anon_sym_const] = ACTIONS(3242), + [anon_sym_constexpr] = ACTIONS(3242), + [anon_sym_volatile] = ACTIONS(3242), + [anon_sym_restrict] = ACTIONS(3242), + [anon_sym___restrict__] = ACTIONS(3242), + [anon_sym__Atomic] = ACTIONS(3242), + [anon_sym__Noreturn] = ACTIONS(3242), + [anon_sym_noreturn] = ACTIONS(3242), + [anon_sym_mutable] = ACTIONS(3242), + [anon_sym_constinit] = ACTIONS(3242), + [anon_sym_consteval] = ACTIONS(3242), + [anon_sym_signed] = ACTIONS(3242), + [anon_sym_unsigned] = ACTIONS(3242), + [anon_sym_long] = ACTIONS(3242), + [anon_sym_short] = ACTIONS(3242), + [sym_primitive_type] = ACTIONS(3242), + [anon_sym_enum] = ACTIONS(3242), + [anon_sym_class] = ACTIONS(3242), + [anon_sym_struct] = ACTIONS(3242), + [anon_sym_union] = ACTIONS(3242), + [anon_sym_if] = ACTIONS(3242), + [anon_sym_switch] = ACTIONS(3242), + [anon_sym_case] = ACTIONS(3242), + [anon_sym_default] = ACTIONS(3242), + [anon_sym_while] = ACTIONS(3242), + [anon_sym_do] = ACTIONS(3242), + [anon_sym_for] = ACTIONS(3242), + [anon_sym_return] = ACTIONS(3242), + [anon_sym_break] = ACTIONS(3242), + [anon_sym_continue] = ACTIONS(3242), + [anon_sym_goto] = ACTIONS(3242), + [anon_sym_not] = ACTIONS(3242), + [anon_sym_compl] = ACTIONS(3242), + [anon_sym_DASH_DASH] = ACTIONS(3244), + [anon_sym_PLUS_PLUS] = ACTIONS(3244), + [anon_sym_sizeof] = ACTIONS(3242), + [anon_sym_offsetof] = ACTIONS(3242), + [anon_sym__Generic] = ACTIONS(3242), + [anon_sym_asm] = ACTIONS(3242), + [anon_sym___asm__] = ACTIONS(3242), + [sym_number_literal] = ACTIONS(3244), + [anon_sym_L_SQUOTE] = ACTIONS(3244), + [anon_sym_u_SQUOTE] = ACTIONS(3244), + [anon_sym_U_SQUOTE] = ACTIONS(3244), + [anon_sym_u8_SQUOTE] = ACTIONS(3244), + [anon_sym_SQUOTE] = ACTIONS(3244), + [anon_sym_L_DQUOTE] = ACTIONS(3244), + [anon_sym_u_DQUOTE] = ACTIONS(3244), + [anon_sym_U_DQUOTE] = ACTIONS(3244), + [anon_sym_u8_DQUOTE] = ACTIONS(3244), + [anon_sym_DQUOTE] = ACTIONS(3244), + [sym_true] = ACTIONS(3242), + [sym_false] = ACTIONS(3242), + [anon_sym_NULL] = ACTIONS(3242), + [anon_sym_nullptr] = ACTIONS(3242), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3242), + [anon_sym_decltype] = ACTIONS(3242), + [anon_sym_virtual] = ACTIONS(3242), + [anon_sym_explicit] = ACTIONS(3242), + [anon_sym_typename] = ACTIONS(3242), + [anon_sym_template] = ACTIONS(3242), + [anon_sym_operator] = ACTIONS(3242), + [anon_sym_try] = ACTIONS(3242), + [anon_sym_delete] = ACTIONS(3242), + [anon_sym_throw] = ACTIONS(3242), + [anon_sym_namespace] = ACTIONS(3242), + [anon_sym_using] = ACTIONS(3242), + [anon_sym_static_assert] = ACTIONS(3242), + [anon_sym_concept] = ACTIONS(3242), + [anon_sym_co_return] = ACTIONS(3242), + [anon_sym_co_yield] = ACTIONS(3242), + [anon_sym_R_DQUOTE] = ACTIONS(3244), + [anon_sym_LR_DQUOTE] = ACTIONS(3244), + [anon_sym_uR_DQUOTE] = ACTIONS(3244), + [anon_sym_UR_DQUOTE] = ACTIONS(3244), + [anon_sym_u8R_DQUOTE] = ACTIONS(3244), + [anon_sym_co_await] = ACTIONS(3242), + [anon_sym_new] = ACTIONS(3242), + [anon_sym_requires] = ACTIONS(3242), + [sym_this] = ACTIONS(3242), }, - [566] = { + [536] = { + [sym_identifier] = ACTIONS(2542), + [aux_sym_preproc_include_token1] = ACTIONS(2542), + [aux_sym_preproc_def_token1] = ACTIONS(2542), + [aux_sym_preproc_if_token1] = ACTIONS(2542), + [aux_sym_preproc_if_token2] = ACTIONS(2542), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2542), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2542), + [aux_sym_preproc_else_token1] = ACTIONS(2542), + [aux_sym_preproc_elif_token1] = ACTIONS(2542), + [sym_preproc_directive] = ACTIONS(2542), + [anon_sym_LPAREN2] = ACTIONS(2540), + [anon_sym_BANG] = ACTIONS(2540), + [anon_sym_TILDE] = ACTIONS(2540), + [anon_sym_DASH] = ACTIONS(2542), + [anon_sym_PLUS] = ACTIONS(2542), + [anon_sym_STAR] = ACTIONS(2540), + [anon_sym_AMP_AMP] = ACTIONS(2540), + [anon_sym_AMP] = ACTIONS(2542), + [anon_sym_SEMI] = ACTIONS(2540), + [anon_sym_typedef] = ACTIONS(2542), + [anon_sym_extern] = ACTIONS(2542), + [anon_sym___attribute__] = ACTIONS(2542), + [anon_sym_COLON_COLON] = ACTIONS(2540), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2540), + [anon_sym___declspec] = ACTIONS(2542), + [anon_sym___based] = ACTIONS(2542), + [anon_sym___cdecl] = ACTIONS(2542), + [anon_sym___clrcall] = ACTIONS(2542), + [anon_sym___stdcall] = ACTIONS(2542), + [anon_sym___fastcall] = ACTIONS(2542), + [anon_sym___thiscall] = ACTIONS(2542), + [anon_sym___vectorcall] = ACTIONS(2542), + [anon_sym_LBRACE] = ACTIONS(2540), + [anon_sym_LBRACK] = ACTIONS(2542), + [anon_sym_static] = ACTIONS(2542), + [anon_sym_register] = ACTIONS(2542), + [anon_sym_inline] = ACTIONS(2542), + [anon_sym_thread_local] = ACTIONS(2542), + [anon_sym_const] = ACTIONS(2542), + [anon_sym_constexpr] = ACTIONS(2542), + [anon_sym_volatile] = ACTIONS(2542), + [anon_sym_restrict] = ACTIONS(2542), + [anon_sym___restrict__] = ACTIONS(2542), + [anon_sym__Atomic] = ACTIONS(2542), + [anon_sym__Noreturn] = ACTIONS(2542), + [anon_sym_noreturn] = ACTIONS(2542), + [anon_sym_mutable] = ACTIONS(2542), + [anon_sym_constinit] = ACTIONS(2542), + [anon_sym_consteval] = ACTIONS(2542), + [anon_sym_signed] = ACTIONS(2542), + [anon_sym_unsigned] = ACTIONS(2542), + [anon_sym_long] = ACTIONS(2542), + [anon_sym_short] = ACTIONS(2542), + [sym_primitive_type] = ACTIONS(2542), + [anon_sym_enum] = ACTIONS(2542), + [anon_sym_class] = ACTIONS(2542), + [anon_sym_struct] = ACTIONS(2542), + [anon_sym_union] = ACTIONS(2542), + [anon_sym_if] = ACTIONS(2542), + [anon_sym_else] = ACTIONS(2542), + [anon_sym_switch] = ACTIONS(2542), + [anon_sym_case] = ACTIONS(2542), + [anon_sym_default] = ACTIONS(2542), + [anon_sym_while] = ACTIONS(2542), + [anon_sym_do] = ACTIONS(2542), + [anon_sym_for] = ACTIONS(2542), + [anon_sym_return] = ACTIONS(2542), + [anon_sym_break] = ACTIONS(2542), + [anon_sym_continue] = ACTIONS(2542), + [anon_sym_goto] = ACTIONS(2542), + [anon_sym_not] = ACTIONS(2542), + [anon_sym_compl] = ACTIONS(2542), + [anon_sym_DASH_DASH] = ACTIONS(2540), + [anon_sym_PLUS_PLUS] = ACTIONS(2540), + [anon_sym_sizeof] = ACTIONS(2542), + [anon_sym_offsetof] = ACTIONS(2542), + [anon_sym__Generic] = ACTIONS(2542), + [anon_sym_asm] = ACTIONS(2542), + [anon_sym___asm__] = ACTIONS(2542), + [sym_number_literal] = ACTIONS(2540), + [anon_sym_L_SQUOTE] = ACTIONS(2540), + [anon_sym_u_SQUOTE] = ACTIONS(2540), + [anon_sym_U_SQUOTE] = ACTIONS(2540), + [anon_sym_u8_SQUOTE] = ACTIONS(2540), + [anon_sym_SQUOTE] = ACTIONS(2540), + [anon_sym_L_DQUOTE] = ACTIONS(2540), + [anon_sym_u_DQUOTE] = ACTIONS(2540), + [anon_sym_U_DQUOTE] = ACTIONS(2540), + [anon_sym_u8_DQUOTE] = ACTIONS(2540), + [anon_sym_DQUOTE] = ACTIONS(2540), + [sym_true] = ACTIONS(2542), + [sym_false] = ACTIONS(2542), + [anon_sym_NULL] = ACTIONS(2542), + [anon_sym_nullptr] = ACTIONS(2542), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2542), + [anon_sym_decltype] = ACTIONS(2542), + [anon_sym_virtual] = ACTIONS(2542), + [anon_sym_explicit] = ACTIONS(2542), + [anon_sym_typename] = ACTIONS(2542), + [anon_sym_template] = ACTIONS(2542), + [anon_sym_operator] = ACTIONS(2542), + [anon_sym_try] = ACTIONS(2542), + [anon_sym_delete] = ACTIONS(2542), + [anon_sym_throw] = ACTIONS(2542), + [anon_sym_namespace] = ACTIONS(2542), + [anon_sym_using] = ACTIONS(2542), + [anon_sym_static_assert] = ACTIONS(2542), + [anon_sym_concept] = ACTIONS(2542), + [anon_sym_co_return] = ACTIONS(2542), + [anon_sym_co_yield] = ACTIONS(2542), + [anon_sym_catch] = ACTIONS(2542), + [anon_sym_R_DQUOTE] = ACTIONS(2540), + [anon_sym_LR_DQUOTE] = ACTIONS(2540), + [anon_sym_uR_DQUOTE] = ACTIONS(2540), + [anon_sym_UR_DQUOTE] = ACTIONS(2540), + [anon_sym_u8R_DQUOTE] = ACTIONS(2540), + [anon_sym_co_await] = ACTIONS(2542), + [anon_sym_new] = ACTIONS(2542), + [anon_sym_requires] = ACTIONS(2542), + [sym_this] = ACTIONS(2542), + }, + [537] = { + [sym_identifier] = ACTIONS(3246), + [aux_sym_preproc_include_token1] = ACTIONS(3246), + [aux_sym_preproc_def_token1] = ACTIONS(3246), + [aux_sym_preproc_if_token1] = ACTIONS(3246), + [aux_sym_preproc_if_token2] = ACTIONS(3246), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3246), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3246), + [aux_sym_preproc_else_token1] = ACTIONS(3246), + [aux_sym_preproc_elif_token1] = ACTIONS(3246), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3246), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3246), + [sym_preproc_directive] = ACTIONS(3246), + [anon_sym_LPAREN2] = ACTIONS(3248), + [anon_sym_BANG] = ACTIONS(3248), + [anon_sym_TILDE] = ACTIONS(3248), + [anon_sym_DASH] = ACTIONS(3246), + [anon_sym_PLUS] = ACTIONS(3246), + [anon_sym_STAR] = ACTIONS(3248), + [anon_sym_AMP_AMP] = ACTIONS(3248), + [anon_sym_AMP] = ACTIONS(3246), + [anon_sym_SEMI] = ACTIONS(3248), + [anon_sym_typedef] = ACTIONS(3246), + [anon_sym_extern] = ACTIONS(3246), + [anon_sym___attribute__] = ACTIONS(3246), + [anon_sym_COLON_COLON] = ACTIONS(3248), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3248), + [anon_sym___declspec] = ACTIONS(3246), + [anon_sym___based] = ACTIONS(3246), + [anon_sym___cdecl] = ACTIONS(3246), + [anon_sym___clrcall] = ACTIONS(3246), + [anon_sym___stdcall] = ACTIONS(3246), + [anon_sym___fastcall] = ACTIONS(3246), + [anon_sym___thiscall] = ACTIONS(3246), + [anon_sym___vectorcall] = ACTIONS(3246), + [anon_sym_LBRACE] = ACTIONS(3248), + [anon_sym_LBRACK] = ACTIONS(3246), + [anon_sym_static] = ACTIONS(3246), + [anon_sym_register] = ACTIONS(3246), + [anon_sym_inline] = ACTIONS(3246), + [anon_sym_thread_local] = ACTIONS(3246), + [anon_sym_const] = ACTIONS(3246), + [anon_sym_constexpr] = ACTIONS(3246), + [anon_sym_volatile] = ACTIONS(3246), + [anon_sym_restrict] = ACTIONS(3246), + [anon_sym___restrict__] = ACTIONS(3246), + [anon_sym__Atomic] = ACTIONS(3246), + [anon_sym__Noreturn] = ACTIONS(3246), + [anon_sym_noreturn] = ACTIONS(3246), + [anon_sym_mutable] = ACTIONS(3246), + [anon_sym_constinit] = ACTIONS(3246), + [anon_sym_consteval] = ACTIONS(3246), + [anon_sym_signed] = ACTIONS(3246), + [anon_sym_unsigned] = ACTIONS(3246), + [anon_sym_long] = ACTIONS(3246), + [anon_sym_short] = ACTIONS(3246), + [sym_primitive_type] = ACTIONS(3246), + [anon_sym_enum] = ACTIONS(3246), + [anon_sym_class] = ACTIONS(3246), + [anon_sym_struct] = ACTIONS(3246), + [anon_sym_union] = ACTIONS(3246), + [anon_sym_if] = ACTIONS(3246), + [anon_sym_switch] = ACTIONS(3246), + [anon_sym_case] = ACTIONS(3246), + [anon_sym_default] = ACTIONS(3246), + [anon_sym_while] = ACTIONS(3246), + [anon_sym_do] = ACTIONS(3246), + [anon_sym_for] = ACTIONS(3246), + [anon_sym_return] = ACTIONS(3246), + [anon_sym_break] = ACTIONS(3246), + [anon_sym_continue] = ACTIONS(3246), + [anon_sym_goto] = ACTIONS(3246), + [anon_sym_not] = ACTIONS(3246), + [anon_sym_compl] = ACTIONS(3246), + [anon_sym_DASH_DASH] = ACTIONS(3248), + [anon_sym_PLUS_PLUS] = ACTIONS(3248), + [anon_sym_sizeof] = ACTIONS(3246), + [anon_sym_offsetof] = ACTIONS(3246), + [anon_sym__Generic] = ACTIONS(3246), + [anon_sym_asm] = ACTIONS(3246), + [anon_sym___asm__] = ACTIONS(3246), + [sym_number_literal] = ACTIONS(3248), + [anon_sym_L_SQUOTE] = ACTIONS(3248), + [anon_sym_u_SQUOTE] = ACTIONS(3248), + [anon_sym_U_SQUOTE] = ACTIONS(3248), + [anon_sym_u8_SQUOTE] = ACTIONS(3248), + [anon_sym_SQUOTE] = ACTIONS(3248), + [anon_sym_L_DQUOTE] = ACTIONS(3248), + [anon_sym_u_DQUOTE] = ACTIONS(3248), + [anon_sym_U_DQUOTE] = ACTIONS(3248), + [anon_sym_u8_DQUOTE] = ACTIONS(3248), + [anon_sym_DQUOTE] = ACTIONS(3248), + [sym_true] = ACTIONS(3246), + [sym_false] = ACTIONS(3246), + [anon_sym_NULL] = ACTIONS(3246), + [anon_sym_nullptr] = ACTIONS(3246), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3246), + [anon_sym_decltype] = ACTIONS(3246), + [anon_sym_virtual] = ACTIONS(3246), + [anon_sym_explicit] = ACTIONS(3246), + [anon_sym_typename] = ACTIONS(3246), + [anon_sym_template] = ACTIONS(3246), + [anon_sym_operator] = ACTIONS(3246), + [anon_sym_try] = ACTIONS(3246), + [anon_sym_delete] = ACTIONS(3246), + [anon_sym_throw] = ACTIONS(3246), + [anon_sym_namespace] = ACTIONS(3246), + [anon_sym_using] = ACTIONS(3246), + [anon_sym_static_assert] = ACTIONS(3246), + [anon_sym_concept] = ACTIONS(3246), + [anon_sym_co_return] = ACTIONS(3246), + [anon_sym_co_yield] = ACTIONS(3246), + [anon_sym_R_DQUOTE] = ACTIONS(3248), + [anon_sym_LR_DQUOTE] = ACTIONS(3248), + [anon_sym_uR_DQUOTE] = ACTIONS(3248), + [anon_sym_UR_DQUOTE] = ACTIONS(3248), + [anon_sym_u8R_DQUOTE] = ACTIONS(3248), + [anon_sym_co_await] = ACTIONS(3246), + [anon_sym_new] = ACTIONS(3246), + [anon_sym_requires] = ACTIONS(3246), + [sym_this] = ACTIONS(3246), + }, + [538] = { [sym_identifier] = ACTIONS(2536), [aux_sym_preproc_include_token1] = ACTIONS(2536), [aux_sym_preproc_def_token1] = ACTIONS(2536), @@ -101369,21 +123379,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_LPAREN2] = ACTIONS(2534), + [anon_sym_BANG] = ACTIONS(2534), + [anon_sym_TILDE] = ACTIONS(2534), [anon_sym_DASH] = ACTIONS(2536), [anon_sym_PLUS] = ACTIONS(2536), - [anon_sym_STAR] = ACTIONS(2538), - [anon_sym_AMP_AMP] = ACTIONS(2538), + [anon_sym_STAR] = ACTIONS(2534), + [anon_sym_AMP_AMP] = ACTIONS(2534), [anon_sym_AMP] = ACTIONS(2536), - [anon_sym_SEMI] = ACTIONS(2538), + [anon_sym_SEMI] = ACTIONS(2534), [anon_sym_typedef] = ACTIONS(2536), [anon_sym_extern] = ACTIONS(2536), [anon_sym___attribute__] = ACTIONS(2536), - [anon_sym_COLON_COLON] = ACTIONS(2538), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2538), + [anon_sym_COLON_COLON] = ACTIONS(2534), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2534), [anon_sym___declspec] = ACTIONS(2536), [anon_sym___based] = ACTIONS(2536), [anon_sym___cdecl] = ACTIONS(2536), @@ -101392,18 +123404,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(2536), [anon_sym___thiscall] = ACTIONS(2536), [anon_sym___vectorcall] = ACTIONS(2536), - [anon_sym_LBRACE] = ACTIONS(2538), + [anon_sym_LBRACE] = ACTIONS(2534), [anon_sym_LBRACK] = ACTIONS(2536), [anon_sym_static] = ACTIONS(2536), [anon_sym_register] = ACTIONS(2536), [anon_sym_inline] = ACTIONS(2536), [anon_sym_thread_local] = 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_noreturn] = ACTIONS(2536), [anon_sym_mutable] = ACTIONS(2536), - [anon_sym_constexpr] = ACTIONS(2536), [anon_sym_constinit] = ACTIONS(2536), [anon_sym_consteval] = ACTIONS(2536), [anon_sym_signed] = ACTIONS(2536), @@ -101429,23 +123444,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_goto] = ACTIONS(2536), [anon_sym_not] = ACTIONS(2536), [anon_sym_compl] = ACTIONS(2536), - [anon_sym_DASH_DASH] = ACTIONS(2538), - [anon_sym_PLUS_PLUS] = ACTIONS(2538), + [anon_sym_DASH_DASH] = ACTIONS(2534), + [anon_sym_PLUS_PLUS] = ACTIONS(2534), [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2538), - [anon_sym_u_DQUOTE] = ACTIONS(2538), - [anon_sym_U_DQUOTE] = ACTIONS(2538), - [anon_sym_u8_DQUOTE] = ACTIONS(2538), - [anon_sym_DQUOTE] = ACTIONS(2538), + [anon_sym_offsetof] = ACTIONS(2536), + [anon_sym__Generic] = ACTIONS(2536), + [anon_sym_asm] = ACTIONS(2536), + [anon_sym___asm__] = ACTIONS(2536), + [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_L_DQUOTE] = ACTIONS(2534), + [anon_sym_u_DQUOTE] = ACTIONS(2534), + [anon_sym_U_DQUOTE] = ACTIONS(2534), + [anon_sym_u8_DQUOTE] = ACTIONS(2534), + [anon_sym_DQUOTE] = ACTIONS(2534), [sym_true] = ACTIONS(2536), [sym_false] = ACTIONS(2536), - [sym_null] = ACTIONS(2536), + [anon_sym_NULL] = ACTIONS(2536), + [anon_sym_nullptr] = ACTIONS(2536), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(2536), [anon_sym_decltype] = ACTIONS(2536), @@ -101463,24200 +123483,31878 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_concept] = ACTIONS(2536), [anon_sym_co_return] = ACTIONS(2536), [anon_sym_co_yield] = ACTIONS(2536), - [anon_sym_R_DQUOTE] = ACTIONS(2538), - [anon_sym_LR_DQUOTE] = ACTIONS(2538), - [anon_sym_uR_DQUOTE] = ACTIONS(2538), - [anon_sym_UR_DQUOTE] = ACTIONS(2538), - [anon_sym_u8R_DQUOTE] = ACTIONS(2538), - [anon_sym_co_await] = ACTIONS(2536), - [anon_sym_new] = ACTIONS(2536), - [anon_sym_requires] = ACTIONS(2536), - [sym_this] = ACTIONS(2536), - [sym_nullptr] = ACTIONS(2536), - }, - [567] = { - [sym_identifier] = ACTIONS(2532), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2534), - [anon_sym_AMP] = ACTIONS(2532), - [anon_sym_SEMI] = ACTIONS(2534), - [anon_sym_typedef] = ACTIONS(2532), - [anon_sym_extern] = ACTIONS(2532), - [anon_sym___attribute__] = ACTIONS(2532), - [anon_sym_COLON_COLON] = ACTIONS(2534), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2534), - [anon_sym___declspec] = ACTIONS(2532), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2532), - [anon_sym_static] = ACTIONS(2532), - [anon_sym_register] = ACTIONS(2532), - [anon_sym_inline] = ACTIONS(2532), - [anon_sym_thread_local] = ACTIONS(2532), - [anon_sym_const] = ACTIONS(2532), - [anon_sym_volatile] = ACTIONS(2532), - [anon_sym_restrict] = ACTIONS(2532), - [anon_sym__Atomic] = ACTIONS(2532), - [anon_sym_mutable] = ACTIONS(2532), - [anon_sym_constexpr] = ACTIONS(2532), - [anon_sym_constinit] = ACTIONS(2532), - [anon_sym_consteval] = ACTIONS(2532), - [anon_sym_signed] = ACTIONS(2532), - [anon_sym_unsigned] = ACTIONS(2532), - [anon_sym_long] = ACTIONS(2532), - [anon_sym_short] = ACTIONS(2532), - [sym_primitive_type] = ACTIONS(2532), - [anon_sym_enum] = ACTIONS(2532), - [anon_sym_class] = 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_return] = ACTIONS(2532), - [anon_sym_break] = ACTIONS(2532), - [anon_sym_continue] = ACTIONS(2532), - [anon_sym_goto] = ACTIONS(2532), - [anon_sym_not] = ACTIONS(2532), - [anon_sym_compl] = ACTIONS(2532), - [anon_sym_DASH_DASH] = ACTIONS(2534), - [anon_sym_PLUS_PLUS] = ACTIONS(2534), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2534), - [anon_sym_u_DQUOTE] = ACTIONS(2534), - [anon_sym_U_DQUOTE] = ACTIONS(2534), - [anon_sym_u8_DQUOTE] = ACTIONS(2534), - [anon_sym_DQUOTE] = ACTIONS(2534), - [sym_true] = ACTIONS(2532), - [sym_false] = ACTIONS(2532), - [sym_null] = ACTIONS(2532), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2532), - [anon_sym_decltype] = ACTIONS(2532), - [anon_sym_virtual] = ACTIONS(2532), - [anon_sym_explicit] = ACTIONS(2532), - [anon_sym_typename] = ACTIONS(2532), - [anon_sym_template] = ACTIONS(2532), - [anon_sym_operator] = ACTIONS(2532), - [anon_sym_try] = ACTIONS(2532), - [anon_sym_delete] = ACTIONS(2532), - [anon_sym_throw] = ACTIONS(2532), - [anon_sym_namespace] = ACTIONS(2532), - [anon_sym_using] = ACTIONS(2532), - [anon_sym_static_assert] = ACTIONS(2532), - [anon_sym_concept] = ACTIONS(2532), - [anon_sym_co_return] = ACTIONS(2532), - [anon_sym_co_yield] = ACTIONS(2532), + [anon_sym_catch] = ACTIONS(2536), [anon_sym_R_DQUOTE] = ACTIONS(2534), [anon_sym_LR_DQUOTE] = ACTIONS(2534), [anon_sym_uR_DQUOTE] = ACTIONS(2534), [anon_sym_UR_DQUOTE] = ACTIONS(2534), [anon_sym_u8R_DQUOTE] = ACTIONS(2534), - [anon_sym_co_await] = ACTIONS(2532), - [anon_sym_new] = ACTIONS(2532), - [anon_sym_requires] = ACTIONS(2532), - [sym_this] = ACTIONS(2532), - [sym_nullptr] = ACTIONS(2532), + [anon_sym_co_await] = ACTIONS(2536), + [anon_sym_new] = ACTIONS(2536), + [anon_sym_requires] = ACTIONS(2536), + [sym_this] = ACTIONS(2536), }, - [568] = { - [ts_builtin_sym_end] = ACTIONS(2564), - [sym_identifier] = ACTIONS(2562), - [aux_sym_preproc_include_token1] = ACTIONS(2562), - [aux_sym_preproc_def_token1] = ACTIONS(2562), - [aux_sym_preproc_if_token1] = ACTIONS(2562), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2562), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2562), - [sym_preproc_directive] = ACTIONS(2562), - [anon_sym_LPAREN2] = ACTIONS(2564), - [anon_sym_BANG] = ACTIONS(2564), - [anon_sym_TILDE] = ACTIONS(2564), - [anon_sym_DASH] = ACTIONS(2562), - [anon_sym_PLUS] = ACTIONS(2562), - [anon_sym_STAR] = ACTIONS(2564), - [anon_sym_AMP_AMP] = ACTIONS(2564), - [anon_sym_AMP] = ACTIONS(2562), - [anon_sym_SEMI] = ACTIONS(2564), - [anon_sym_typedef] = ACTIONS(2562), - [anon_sym_extern] = ACTIONS(2562), - [anon_sym___attribute__] = ACTIONS(2562), - [anon_sym_COLON_COLON] = ACTIONS(2564), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2564), - [anon_sym___declspec] = ACTIONS(2562), - [anon_sym___based] = ACTIONS(2562), - [anon_sym___cdecl] = ACTIONS(2562), - [anon_sym___clrcall] = ACTIONS(2562), - [anon_sym___stdcall] = ACTIONS(2562), - [anon_sym___fastcall] = ACTIONS(2562), - [anon_sym___thiscall] = ACTIONS(2562), - [anon_sym___vectorcall] = ACTIONS(2562), - [anon_sym_LBRACE] = ACTIONS(2564), - [anon_sym_LBRACK] = ACTIONS(2562), - [anon_sym_static] = ACTIONS(2562), - [anon_sym_register] = ACTIONS(2562), - [anon_sym_inline] = ACTIONS(2562), - [anon_sym_thread_local] = ACTIONS(2562), - [anon_sym_const] = ACTIONS(2562), - [anon_sym_volatile] = ACTIONS(2562), - [anon_sym_restrict] = ACTIONS(2562), - [anon_sym__Atomic] = ACTIONS(2562), - [anon_sym_mutable] = ACTIONS(2562), - [anon_sym_constexpr] = ACTIONS(2562), - [anon_sym_constinit] = ACTIONS(2562), - [anon_sym_consteval] = ACTIONS(2562), - [anon_sym_signed] = ACTIONS(2562), - [anon_sym_unsigned] = ACTIONS(2562), - [anon_sym_long] = ACTIONS(2562), - [anon_sym_short] = ACTIONS(2562), - [sym_primitive_type] = ACTIONS(2562), - [anon_sym_enum] = ACTIONS(2562), - [anon_sym_class] = ACTIONS(2562), - [anon_sym_struct] = ACTIONS(2562), - [anon_sym_union] = ACTIONS(2562), - [anon_sym_if] = ACTIONS(2562), - [anon_sym_else] = ACTIONS(2562), - [anon_sym_switch] = ACTIONS(2562), - [anon_sym_case] = ACTIONS(2562), - [anon_sym_default] = ACTIONS(2562), - [anon_sym_while] = ACTIONS(2562), - [anon_sym_do] = ACTIONS(2562), - [anon_sym_for] = ACTIONS(2562), - [anon_sym_return] = ACTIONS(2562), - [anon_sym_break] = ACTIONS(2562), - [anon_sym_continue] = ACTIONS(2562), - [anon_sym_goto] = ACTIONS(2562), - [anon_sym_not] = ACTIONS(2562), - [anon_sym_compl] = ACTIONS(2562), - [anon_sym_DASH_DASH] = ACTIONS(2564), - [anon_sym_PLUS_PLUS] = ACTIONS(2564), - [anon_sym_sizeof] = ACTIONS(2562), - [sym_number_literal] = ACTIONS(2564), - [anon_sym_L_SQUOTE] = ACTIONS(2564), - [anon_sym_u_SQUOTE] = ACTIONS(2564), - [anon_sym_U_SQUOTE] = ACTIONS(2564), - [anon_sym_u8_SQUOTE] = ACTIONS(2564), - [anon_sym_SQUOTE] = ACTIONS(2564), - [anon_sym_L_DQUOTE] = ACTIONS(2564), - [anon_sym_u_DQUOTE] = ACTIONS(2564), - [anon_sym_U_DQUOTE] = ACTIONS(2564), - [anon_sym_u8_DQUOTE] = ACTIONS(2564), - [anon_sym_DQUOTE] = ACTIONS(2564), - [sym_true] = ACTIONS(2562), - [sym_false] = ACTIONS(2562), - [sym_null] = ACTIONS(2562), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2562), - [anon_sym_decltype] = ACTIONS(2562), - [anon_sym_virtual] = ACTIONS(2562), - [anon_sym_explicit] = ACTIONS(2562), - [anon_sym_typename] = ACTIONS(2562), - [anon_sym_template] = ACTIONS(2562), - [anon_sym_operator] = ACTIONS(2562), - [anon_sym_try] = ACTIONS(2562), - [anon_sym_delete] = ACTIONS(2562), - [anon_sym_throw] = ACTIONS(2562), - [anon_sym_namespace] = ACTIONS(2562), - [anon_sym_using] = ACTIONS(2562), - [anon_sym_static_assert] = ACTIONS(2562), - [anon_sym_concept] = ACTIONS(2562), - [anon_sym_co_return] = ACTIONS(2562), - [anon_sym_co_yield] = ACTIONS(2562), - [anon_sym_R_DQUOTE] = ACTIONS(2564), - [anon_sym_LR_DQUOTE] = ACTIONS(2564), - [anon_sym_uR_DQUOTE] = ACTIONS(2564), - [anon_sym_UR_DQUOTE] = ACTIONS(2564), - [anon_sym_u8R_DQUOTE] = ACTIONS(2564), - [anon_sym_co_await] = ACTIONS(2562), - [anon_sym_new] = ACTIONS(2562), - [anon_sym_requires] = ACTIONS(2562), - [sym_this] = ACTIONS(2562), - [sym_nullptr] = ACTIONS(2562), + [539] = { + [sym__expression] = STATE(4279), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7462), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3129), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(3250), + [anon_sym_extern] = ACTIONS(2966), + [anon_sym___attribute__] = ACTIONS(2966), + [anon_sym_COLON_COLON] = ACTIONS(3134), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2968), + [anon_sym___declspec] = ACTIONS(2966), + [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_static] = ACTIONS(2966), + [anon_sym_register] = ACTIONS(2966), + [anon_sym_inline] = ACTIONS(2966), + [anon_sym_thread_local] = 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_noreturn] = ACTIONS(2966), + [anon_sym_mutable] = ACTIONS(2966), + [anon_sym_constinit] = ACTIONS(2966), + [anon_sym_consteval] = ACTIONS(2966), + [anon_sym_signed] = ACTIONS(2966), + [anon_sym_unsigned] = ACTIONS(2966), + [anon_sym_long] = ACTIONS(2966), + [anon_sym_short] = ACTIONS(2966), + [sym_primitive_type] = ACTIONS(3137), + [anon_sym_enum] = ACTIONS(2966), + [anon_sym_class] = ACTIONS(2966), + [anon_sym_struct] = ACTIONS(2966), + [anon_sym_union] = ACTIONS(2966), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2966), + [anon_sym_decltype] = ACTIONS(3140), + [anon_sym_virtual] = ACTIONS(2966), + [anon_sym_typename] = ACTIONS(2966), + [anon_sym_template] = ACTIONS(3143), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, - [569] = { - [ts_builtin_sym_end] = ACTIONS(2578), - [sym_identifier] = ACTIONS(2576), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2578), - [anon_sym_AMP] = ACTIONS(2576), - [anon_sym_SEMI] = ACTIONS(2578), - [anon_sym_typedef] = ACTIONS(2576), - [anon_sym_extern] = ACTIONS(2576), - [anon_sym___attribute__] = ACTIONS(2576), - [anon_sym_COLON_COLON] = ACTIONS(2578), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2578), - [anon_sym___declspec] = ACTIONS(2576), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2576), - [anon_sym_static] = ACTIONS(2576), - [anon_sym_register] = ACTIONS(2576), - [anon_sym_inline] = ACTIONS(2576), - [anon_sym_thread_local] = ACTIONS(2576), - [anon_sym_const] = ACTIONS(2576), - [anon_sym_volatile] = ACTIONS(2576), - [anon_sym_restrict] = ACTIONS(2576), - [anon_sym__Atomic] = ACTIONS(2576), - [anon_sym_mutable] = ACTIONS(2576), - [anon_sym_constexpr] = ACTIONS(2576), - [anon_sym_constinit] = ACTIONS(2576), - [anon_sym_consteval] = ACTIONS(2576), - [anon_sym_signed] = ACTIONS(2576), - [anon_sym_unsigned] = ACTIONS(2576), - [anon_sym_long] = ACTIONS(2576), - [anon_sym_short] = ACTIONS(2576), - [sym_primitive_type] = ACTIONS(2576), - [anon_sym_enum] = ACTIONS(2576), - [anon_sym_class] = ACTIONS(2576), - [anon_sym_struct] = ACTIONS(2576), - [anon_sym_union] = ACTIONS(2576), - [anon_sym_if] = ACTIONS(2576), - [anon_sym_else] = 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_return] = ACTIONS(2576), - [anon_sym_break] = ACTIONS(2576), - [anon_sym_continue] = ACTIONS(2576), - [anon_sym_goto] = ACTIONS(2576), - [anon_sym_not] = ACTIONS(2576), - [anon_sym_compl] = ACTIONS(2576), - [anon_sym_DASH_DASH] = ACTIONS(2578), - [anon_sym_PLUS_PLUS] = ACTIONS(2578), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2578), - [anon_sym_u_DQUOTE] = ACTIONS(2578), - [anon_sym_U_DQUOTE] = ACTIONS(2578), - [anon_sym_u8_DQUOTE] = ACTIONS(2578), - [anon_sym_DQUOTE] = ACTIONS(2578), - [sym_true] = ACTIONS(2576), - [sym_false] = ACTIONS(2576), - [sym_null] = ACTIONS(2576), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2576), - [anon_sym_decltype] = ACTIONS(2576), - [anon_sym_virtual] = ACTIONS(2576), - [anon_sym_explicit] = ACTIONS(2576), - [anon_sym_typename] = ACTIONS(2576), - [anon_sym_template] = ACTIONS(2576), - [anon_sym_operator] = ACTIONS(2576), - [anon_sym_try] = ACTIONS(2576), - [anon_sym_delete] = ACTIONS(2576), - [anon_sym_throw] = ACTIONS(2576), - [anon_sym_namespace] = ACTIONS(2576), - [anon_sym_using] = ACTIONS(2576), - [anon_sym_static_assert] = ACTIONS(2576), - [anon_sym_concept] = ACTIONS(2576), - [anon_sym_co_return] = ACTIONS(2576), - [anon_sym_co_yield] = ACTIONS(2576), - [anon_sym_R_DQUOTE] = ACTIONS(2578), - [anon_sym_LR_DQUOTE] = ACTIONS(2578), - [anon_sym_uR_DQUOTE] = ACTIONS(2578), - [anon_sym_UR_DQUOTE] = ACTIONS(2578), - [anon_sym_u8R_DQUOTE] = ACTIONS(2578), - [anon_sym_co_await] = ACTIONS(2576), - [anon_sym_new] = ACTIONS(2576), - [anon_sym_requires] = ACTIONS(2576), - [sym_this] = ACTIONS(2576), - [sym_nullptr] = ACTIONS(2576), + [540] = { + [sym__expression] = STATE(4141), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(6984), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3209), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(3252), + [anon_sym_extern] = ACTIONS(2962), + [anon_sym___attribute__] = ACTIONS(2962), + [anon_sym_COLON_COLON] = ACTIONS(3214), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2964), + [anon_sym___declspec] = ACTIONS(2962), + [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_static] = ACTIONS(2962), + [anon_sym_register] = ACTIONS(2962), + [anon_sym_inline] = ACTIONS(2962), + [anon_sym_thread_local] = ACTIONS(2962), + [anon_sym_const] = ACTIONS(2962), + [anon_sym_constexpr] = ACTIONS(2962), + [anon_sym_volatile] = ACTIONS(2962), + [anon_sym_restrict] = ACTIONS(2962), + [anon_sym___restrict__] = ACTIONS(2962), + [anon_sym__Atomic] = ACTIONS(2962), + [anon_sym__Noreturn] = ACTIONS(2962), + [anon_sym_noreturn] = ACTIONS(2962), + [anon_sym_mutable] = ACTIONS(2962), + [anon_sym_constinit] = ACTIONS(2962), + [anon_sym_consteval] = ACTIONS(2962), + [anon_sym_signed] = ACTIONS(2962), + [anon_sym_unsigned] = ACTIONS(2962), + [anon_sym_long] = ACTIONS(2962), + [anon_sym_short] = ACTIONS(2962), + [sym_primitive_type] = ACTIONS(3217), + [anon_sym_enum] = ACTIONS(2962), + [anon_sym_class] = ACTIONS(2962), + [anon_sym_struct] = ACTIONS(2962), + [anon_sym_union] = ACTIONS(2962), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2962), + [anon_sym_decltype] = ACTIONS(3220), + [anon_sym_virtual] = ACTIONS(2962), + [anon_sym_typename] = ACTIONS(2962), + [anon_sym_template] = ACTIONS(3223), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, - [570] = { - [ts_builtin_sym_end] = ACTIONS(2582), - [sym_identifier] = ACTIONS(2580), - [aux_sym_preproc_include_token1] = ACTIONS(2580), - [aux_sym_preproc_def_token1] = ACTIONS(2580), - [aux_sym_preproc_if_token1] = ACTIONS(2580), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2580), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2580), - [sym_preproc_directive] = ACTIONS(2580), - [anon_sym_LPAREN2] = ACTIONS(2582), - [anon_sym_BANG] = ACTIONS(2582), - [anon_sym_TILDE] = ACTIONS(2582), - [anon_sym_DASH] = ACTIONS(2580), - [anon_sym_PLUS] = ACTIONS(2580), - [anon_sym_STAR] = ACTIONS(2582), - [anon_sym_AMP_AMP] = ACTIONS(2582), - [anon_sym_AMP] = ACTIONS(2580), - [anon_sym_SEMI] = ACTIONS(2582), - [anon_sym_typedef] = ACTIONS(2580), - [anon_sym_extern] = ACTIONS(2580), - [anon_sym___attribute__] = ACTIONS(2580), - [anon_sym_COLON_COLON] = ACTIONS(2582), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2582), - [anon_sym___declspec] = ACTIONS(2580), - [anon_sym___based] = ACTIONS(2580), - [anon_sym___cdecl] = ACTIONS(2580), - [anon_sym___clrcall] = ACTIONS(2580), - [anon_sym___stdcall] = ACTIONS(2580), - [anon_sym___fastcall] = ACTIONS(2580), - [anon_sym___thiscall] = ACTIONS(2580), - [anon_sym___vectorcall] = ACTIONS(2580), - [anon_sym_LBRACE] = ACTIONS(2582), - [anon_sym_LBRACK] = ACTIONS(2580), - [anon_sym_static] = ACTIONS(2580), - [anon_sym_register] = ACTIONS(2580), - [anon_sym_inline] = ACTIONS(2580), - [anon_sym_thread_local] = ACTIONS(2580), - [anon_sym_const] = ACTIONS(2580), - [anon_sym_volatile] = ACTIONS(2580), - [anon_sym_restrict] = ACTIONS(2580), - [anon_sym__Atomic] = ACTIONS(2580), - [anon_sym_mutable] = ACTIONS(2580), - [anon_sym_constexpr] = ACTIONS(2580), - [anon_sym_constinit] = ACTIONS(2580), - [anon_sym_consteval] = ACTIONS(2580), - [anon_sym_signed] = ACTIONS(2580), - [anon_sym_unsigned] = ACTIONS(2580), - [anon_sym_long] = ACTIONS(2580), - [anon_sym_short] = ACTIONS(2580), - [sym_primitive_type] = ACTIONS(2580), - [anon_sym_enum] = ACTIONS(2580), - [anon_sym_class] = ACTIONS(2580), - [anon_sym_struct] = ACTIONS(2580), - [anon_sym_union] = ACTIONS(2580), - [anon_sym_if] = ACTIONS(2580), - [anon_sym_else] = ACTIONS(2580), - [anon_sym_switch] = ACTIONS(2580), - [anon_sym_case] = ACTIONS(2580), - [anon_sym_default] = ACTIONS(2580), - [anon_sym_while] = ACTIONS(2580), - [anon_sym_do] = ACTIONS(2580), - [anon_sym_for] = ACTIONS(2580), - [anon_sym_return] = ACTIONS(2580), - [anon_sym_break] = ACTIONS(2580), - [anon_sym_continue] = ACTIONS(2580), - [anon_sym_goto] = ACTIONS(2580), - [anon_sym_not] = ACTIONS(2580), - [anon_sym_compl] = ACTIONS(2580), - [anon_sym_DASH_DASH] = ACTIONS(2582), - [anon_sym_PLUS_PLUS] = ACTIONS(2582), - [anon_sym_sizeof] = ACTIONS(2580), - [sym_number_literal] = ACTIONS(2582), - [anon_sym_L_SQUOTE] = ACTIONS(2582), - [anon_sym_u_SQUOTE] = ACTIONS(2582), - [anon_sym_U_SQUOTE] = ACTIONS(2582), - [anon_sym_u8_SQUOTE] = ACTIONS(2582), - [anon_sym_SQUOTE] = ACTIONS(2582), - [anon_sym_L_DQUOTE] = ACTIONS(2582), - [anon_sym_u_DQUOTE] = ACTIONS(2582), - [anon_sym_U_DQUOTE] = ACTIONS(2582), - [anon_sym_u8_DQUOTE] = ACTIONS(2582), - [anon_sym_DQUOTE] = ACTIONS(2582), - [sym_true] = ACTIONS(2580), - [sym_false] = ACTIONS(2580), - [sym_null] = ACTIONS(2580), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2580), - [anon_sym_decltype] = ACTIONS(2580), - [anon_sym_virtual] = ACTIONS(2580), - [anon_sym_explicit] = ACTIONS(2580), - [anon_sym_typename] = ACTIONS(2580), - [anon_sym_template] = ACTIONS(2580), - [anon_sym_operator] = ACTIONS(2580), - [anon_sym_try] = ACTIONS(2580), - [anon_sym_delete] = ACTIONS(2580), - [anon_sym_throw] = ACTIONS(2580), - [anon_sym_namespace] = ACTIONS(2580), - [anon_sym_using] = ACTIONS(2580), - [anon_sym_static_assert] = ACTIONS(2580), - [anon_sym_concept] = ACTIONS(2580), - [anon_sym_co_return] = ACTIONS(2580), - [anon_sym_co_yield] = ACTIONS(2580), - [anon_sym_R_DQUOTE] = ACTIONS(2582), - [anon_sym_LR_DQUOTE] = ACTIONS(2582), - [anon_sym_uR_DQUOTE] = ACTIONS(2582), - [anon_sym_UR_DQUOTE] = ACTIONS(2582), - [anon_sym_u8R_DQUOTE] = ACTIONS(2582), - [anon_sym_co_await] = ACTIONS(2580), - [anon_sym_new] = ACTIONS(2580), - [anon_sym_requires] = ACTIONS(2580), - [sym_this] = ACTIONS(2580), - [sym_nullptr] = ACTIONS(2580), + [541] = { + [sym__expression] = STATE(4139), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(6981), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3184), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(3254), + [anon_sym_extern] = ACTIONS(3189), + [anon_sym___attribute__] = ACTIONS(3189), + [anon_sym_COLON_COLON] = ACTIONS(3191), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3194), + [anon_sym___declspec] = ACTIONS(3189), + [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_static] = ACTIONS(3189), + [anon_sym_register] = ACTIONS(3189), + [anon_sym_inline] = ACTIONS(3189), + [anon_sym_thread_local] = ACTIONS(3189), + [anon_sym_const] = ACTIONS(3189), + [anon_sym_constexpr] = ACTIONS(3189), + [anon_sym_volatile] = ACTIONS(3189), + [anon_sym_restrict] = ACTIONS(3189), + [anon_sym___restrict__] = ACTIONS(3189), + [anon_sym__Atomic] = ACTIONS(3189), + [anon_sym__Noreturn] = ACTIONS(3189), + [anon_sym_noreturn] = ACTIONS(3189), + [anon_sym_mutable] = ACTIONS(3189), + [anon_sym_constinit] = ACTIONS(3189), + [anon_sym_consteval] = ACTIONS(3189), + [anon_sym_signed] = ACTIONS(3189), + [anon_sym_unsigned] = ACTIONS(3189), + [anon_sym_long] = ACTIONS(3189), + [anon_sym_short] = ACTIONS(3189), + [sym_primitive_type] = ACTIONS(3196), + [anon_sym_enum] = ACTIONS(3189), + [anon_sym_class] = ACTIONS(3189), + [anon_sym_struct] = ACTIONS(3189), + [anon_sym_union] = ACTIONS(3189), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3189), + [anon_sym_decltype] = ACTIONS(3199), + [anon_sym_virtual] = ACTIONS(3189), + [anon_sym_typename] = ACTIONS(3189), + [anon_sym_template] = ACTIONS(3202), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, - [571] = { - [sym_identifier] = ACTIONS(2522), - [aux_sym_preproc_include_token1] = ACTIONS(2522), - [aux_sym_preproc_def_token1] = ACTIONS(2522), - [aux_sym_preproc_if_token1] = ACTIONS(2522), - [aux_sym_preproc_if_token2] = ACTIONS(2522), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2522), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2522), - [sym_preproc_directive] = ACTIONS(2522), - [anon_sym_LPAREN2] = ACTIONS(2524), - [anon_sym_BANG] = ACTIONS(2524), - [anon_sym_TILDE] = ACTIONS(2524), - [anon_sym_DASH] = ACTIONS(2522), - [anon_sym_PLUS] = ACTIONS(2522), - [anon_sym_STAR] = ACTIONS(2524), - [anon_sym_AMP_AMP] = ACTIONS(2524), - [anon_sym_AMP] = ACTIONS(2522), - [anon_sym_SEMI] = ACTIONS(2524), - [anon_sym_typedef] = ACTIONS(2522), - [anon_sym_extern] = ACTIONS(2522), - [anon_sym___attribute__] = ACTIONS(2522), - [anon_sym_COLON_COLON] = ACTIONS(2524), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2524), - [anon_sym___declspec] = ACTIONS(2522), - [anon_sym___based] = ACTIONS(2522), - [anon_sym___cdecl] = ACTIONS(2522), - [anon_sym___clrcall] = ACTIONS(2522), - [anon_sym___stdcall] = ACTIONS(2522), - [anon_sym___fastcall] = ACTIONS(2522), - [anon_sym___thiscall] = ACTIONS(2522), - [anon_sym___vectorcall] = ACTIONS(2522), - [anon_sym_LBRACE] = ACTIONS(2524), - [anon_sym_LBRACK] = ACTIONS(2522), - [anon_sym_static] = ACTIONS(2522), - [anon_sym_register] = ACTIONS(2522), - [anon_sym_inline] = ACTIONS(2522), - [anon_sym_thread_local] = ACTIONS(2522), - [anon_sym_const] = ACTIONS(2522), - [anon_sym_volatile] = ACTIONS(2522), - [anon_sym_restrict] = ACTIONS(2522), - [anon_sym__Atomic] = ACTIONS(2522), - [anon_sym_mutable] = ACTIONS(2522), - [anon_sym_constexpr] = ACTIONS(2522), - [anon_sym_constinit] = ACTIONS(2522), - [anon_sym_consteval] = ACTIONS(2522), - [anon_sym_signed] = ACTIONS(2522), - [anon_sym_unsigned] = ACTIONS(2522), - [anon_sym_long] = ACTIONS(2522), - [anon_sym_short] = ACTIONS(2522), - [sym_primitive_type] = ACTIONS(2522), - [anon_sym_enum] = ACTIONS(2522), - [anon_sym_class] = ACTIONS(2522), - [anon_sym_struct] = ACTIONS(2522), - [anon_sym_union] = ACTIONS(2522), - [anon_sym_if] = ACTIONS(2522), - [anon_sym_else] = ACTIONS(2522), - [anon_sym_switch] = ACTIONS(2522), - [anon_sym_case] = ACTIONS(2522), - [anon_sym_default] = ACTIONS(2522), - [anon_sym_while] = ACTIONS(2522), - [anon_sym_do] = ACTIONS(2522), - [anon_sym_for] = ACTIONS(2522), - [anon_sym_return] = ACTIONS(2522), - [anon_sym_break] = ACTIONS(2522), - [anon_sym_continue] = ACTIONS(2522), - [anon_sym_goto] = ACTIONS(2522), - [anon_sym_not] = ACTIONS(2522), - [anon_sym_compl] = ACTIONS(2522), - [anon_sym_DASH_DASH] = ACTIONS(2524), - [anon_sym_PLUS_PLUS] = ACTIONS(2524), - [anon_sym_sizeof] = ACTIONS(2522), - [sym_number_literal] = ACTIONS(2524), - [anon_sym_L_SQUOTE] = ACTIONS(2524), - [anon_sym_u_SQUOTE] = ACTIONS(2524), - [anon_sym_U_SQUOTE] = ACTIONS(2524), - [anon_sym_u8_SQUOTE] = ACTIONS(2524), - [anon_sym_SQUOTE] = ACTIONS(2524), - [anon_sym_L_DQUOTE] = ACTIONS(2524), - [anon_sym_u_DQUOTE] = ACTIONS(2524), - [anon_sym_U_DQUOTE] = ACTIONS(2524), - [anon_sym_u8_DQUOTE] = ACTIONS(2524), - [anon_sym_DQUOTE] = ACTIONS(2524), - [sym_true] = ACTIONS(2522), - [sym_false] = ACTIONS(2522), - [sym_null] = ACTIONS(2522), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2522), - [anon_sym_decltype] = ACTIONS(2522), - [anon_sym_virtual] = ACTIONS(2522), - [anon_sym_explicit] = ACTIONS(2522), - [anon_sym_typename] = ACTIONS(2522), - [anon_sym_template] = ACTIONS(2522), - [anon_sym_operator] = ACTIONS(2522), - [anon_sym_try] = ACTIONS(2522), - [anon_sym_delete] = ACTIONS(2522), - [anon_sym_throw] = ACTIONS(2522), - [anon_sym_namespace] = ACTIONS(2522), - [anon_sym_using] = ACTIONS(2522), - [anon_sym_static_assert] = ACTIONS(2522), - [anon_sym_concept] = ACTIONS(2522), - [anon_sym_co_return] = ACTIONS(2522), - [anon_sym_co_yield] = ACTIONS(2522), - [anon_sym_R_DQUOTE] = ACTIONS(2524), - [anon_sym_LR_DQUOTE] = ACTIONS(2524), - [anon_sym_uR_DQUOTE] = ACTIONS(2524), - [anon_sym_UR_DQUOTE] = ACTIONS(2524), - [anon_sym_u8R_DQUOTE] = ACTIONS(2524), - [anon_sym_co_await] = ACTIONS(2522), - [anon_sym_new] = ACTIONS(2522), - [anon_sym_requires] = ACTIONS(2522), - [sym_this] = ACTIONS(2522), - [sym_nullptr] = ACTIONS(2522), + [542] = { + [sym__expression] = STATE(4209), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7487), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3184), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(3256), + [anon_sym_extern] = ACTIONS(3189), + [anon_sym___attribute__] = ACTIONS(3189), + [anon_sym_COLON_COLON] = ACTIONS(3191), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3194), + [anon_sym___declspec] = ACTIONS(3189), + [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_static] = ACTIONS(3189), + [anon_sym_register] = ACTIONS(3189), + [anon_sym_inline] = ACTIONS(3189), + [anon_sym_thread_local] = ACTIONS(3189), + [anon_sym_const] = ACTIONS(3189), + [anon_sym_constexpr] = ACTIONS(3189), + [anon_sym_volatile] = ACTIONS(3189), + [anon_sym_restrict] = ACTIONS(3189), + [anon_sym___restrict__] = ACTIONS(3189), + [anon_sym__Atomic] = ACTIONS(3189), + [anon_sym__Noreturn] = ACTIONS(3189), + [anon_sym_noreturn] = ACTIONS(3189), + [anon_sym_mutable] = ACTIONS(3189), + [anon_sym_constinit] = ACTIONS(3189), + [anon_sym_consteval] = ACTIONS(3189), + [anon_sym_signed] = ACTIONS(3189), + [anon_sym_unsigned] = ACTIONS(3189), + [anon_sym_long] = ACTIONS(3189), + [anon_sym_short] = ACTIONS(3189), + [sym_primitive_type] = ACTIONS(3196), + [anon_sym_enum] = ACTIONS(3189), + [anon_sym_class] = ACTIONS(3189), + [anon_sym_struct] = ACTIONS(3189), + [anon_sym_union] = ACTIONS(3189), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3189), + [anon_sym_decltype] = ACTIONS(3199), + [anon_sym_virtual] = ACTIONS(3189), + [anon_sym_typename] = ACTIONS(3189), + [anon_sym_template] = ACTIONS(3202), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, - [572] = { - [ts_builtin_sym_end] = ACTIONS(2586), - [sym_identifier] = ACTIONS(2584), - [aux_sym_preproc_include_token1] = ACTIONS(2584), - [aux_sym_preproc_def_token1] = ACTIONS(2584), - [aux_sym_preproc_if_token1] = ACTIONS(2584), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2584), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2584), - [sym_preproc_directive] = ACTIONS(2584), - [anon_sym_LPAREN2] = ACTIONS(2586), - [anon_sym_BANG] = ACTIONS(2586), - [anon_sym_TILDE] = ACTIONS(2586), - [anon_sym_DASH] = ACTIONS(2584), - [anon_sym_PLUS] = ACTIONS(2584), - [anon_sym_STAR] = ACTIONS(2586), - [anon_sym_AMP_AMP] = ACTIONS(2586), - [anon_sym_AMP] = ACTIONS(2584), - [anon_sym_SEMI] = ACTIONS(2586), - [anon_sym_typedef] = ACTIONS(2584), - [anon_sym_extern] = ACTIONS(2584), - [anon_sym___attribute__] = ACTIONS(2584), - [anon_sym_COLON_COLON] = ACTIONS(2586), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2586), - [anon_sym___declspec] = ACTIONS(2584), - [anon_sym___based] = ACTIONS(2584), - [anon_sym___cdecl] = ACTIONS(2584), - [anon_sym___clrcall] = ACTIONS(2584), - [anon_sym___stdcall] = ACTIONS(2584), - [anon_sym___fastcall] = ACTIONS(2584), - [anon_sym___thiscall] = ACTIONS(2584), - [anon_sym___vectorcall] = ACTIONS(2584), - [anon_sym_LBRACE] = ACTIONS(2586), - [anon_sym_LBRACK] = ACTIONS(2584), - [anon_sym_static] = ACTIONS(2584), - [anon_sym_register] = ACTIONS(2584), - [anon_sym_inline] = ACTIONS(2584), - [anon_sym_thread_local] = ACTIONS(2584), - [anon_sym_const] = ACTIONS(2584), - [anon_sym_volatile] = ACTIONS(2584), - [anon_sym_restrict] = ACTIONS(2584), - [anon_sym__Atomic] = ACTIONS(2584), - [anon_sym_mutable] = ACTIONS(2584), - [anon_sym_constexpr] = ACTIONS(2584), - [anon_sym_constinit] = ACTIONS(2584), - [anon_sym_consteval] = ACTIONS(2584), - [anon_sym_signed] = ACTIONS(2584), - [anon_sym_unsigned] = ACTIONS(2584), - [anon_sym_long] = ACTIONS(2584), - [anon_sym_short] = ACTIONS(2584), - [sym_primitive_type] = ACTIONS(2584), - [anon_sym_enum] = ACTIONS(2584), - [anon_sym_class] = ACTIONS(2584), - [anon_sym_struct] = ACTIONS(2584), - [anon_sym_union] = ACTIONS(2584), - [anon_sym_if] = ACTIONS(2584), - [anon_sym_else] = ACTIONS(2584), - [anon_sym_switch] = ACTIONS(2584), - [anon_sym_case] = ACTIONS(2584), - [anon_sym_default] = ACTIONS(2584), - [anon_sym_while] = ACTIONS(2584), - [anon_sym_do] = ACTIONS(2584), - [anon_sym_for] = ACTIONS(2584), - [anon_sym_return] = ACTIONS(2584), - [anon_sym_break] = ACTIONS(2584), - [anon_sym_continue] = ACTIONS(2584), - [anon_sym_goto] = ACTIONS(2584), - [anon_sym_not] = ACTIONS(2584), - [anon_sym_compl] = ACTIONS(2584), - [anon_sym_DASH_DASH] = ACTIONS(2586), - [anon_sym_PLUS_PLUS] = ACTIONS(2586), - [anon_sym_sizeof] = ACTIONS(2584), - [sym_number_literal] = ACTIONS(2586), - [anon_sym_L_SQUOTE] = ACTIONS(2586), - [anon_sym_u_SQUOTE] = ACTIONS(2586), - [anon_sym_U_SQUOTE] = ACTIONS(2586), - [anon_sym_u8_SQUOTE] = ACTIONS(2586), - [anon_sym_SQUOTE] = ACTIONS(2586), - [anon_sym_L_DQUOTE] = ACTIONS(2586), - [anon_sym_u_DQUOTE] = ACTIONS(2586), - [anon_sym_U_DQUOTE] = ACTIONS(2586), - [anon_sym_u8_DQUOTE] = ACTIONS(2586), - [anon_sym_DQUOTE] = ACTIONS(2586), - [sym_true] = ACTIONS(2584), - [sym_false] = ACTIONS(2584), - [sym_null] = ACTIONS(2584), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2584), - [anon_sym_decltype] = ACTIONS(2584), - [anon_sym_virtual] = ACTIONS(2584), - [anon_sym_explicit] = ACTIONS(2584), - [anon_sym_typename] = ACTIONS(2584), - [anon_sym_template] = ACTIONS(2584), - [anon_sym_operator] = ACTIONS(2584), - [anon_sym_try] = ACTIONS(2584), - [anon_sym_delete] = ACTIONS(2584), - [anon_sym_throw] = ACTIONS(2584), - [anon_sym_namespace] = ACTIONS(2584), - [anon_sym_using] = ACTIONS(2584), - [anon_sym_static_assert] = ACTIONS(2584), - [anon_sym_concept] = ACTIONS(2584), - [anon_sym_co_return] = ACTIONS(2584), - [anon_sym_co_yield] = ACTIONS(2584), - [anon_sym_R_DQUOTE] = ACTIONS(2586), - [anon_sym_LR_DQUOTE] = ACTIONS(2586), - [anon_sym_uR_DQUOTE] = ACTIONS(2586), - [anon_sym_UR_DQUOTE] = ACTIONS(2586), - [anon_sym_u8R_DQUOTE] = ACTIONS(2586), - [anon_sym_co_await] = ACTIONS(2584), - [anon_sym_new] = ACTIONS(2584), - [anon_sym_requires] = ACTIONS(2584), - [sym_this] = ACTIONS(2584), - [sym_nullptr] = ACTIONS(2584), + [543] = { + [sym_identifier] = ACTIONS(3258), + [aux_sym_preproc_include_token1] = ACTIONS(3258), + [aux_sym_preproc_def_token1] = ACTIONS(3258), + [aux_sym_preproc_if_token1] = ACTIONS(3258), + [aux_sym_preproc_if_token2] = ACTIONS(3258), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3258), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3258), + [aux_sym_preproc_else_token1] = ACTIONS(3258), + [aux_sym_preproc_elif_token1] = ACTIONS(3258), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3258), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3258), + [sym_preproc_directive] = ACTIONS(3258), + [anon_sym_LPAREN2] = ACTIONS(3260), + [anon_sym_BANG] = ACTIONS(3260), + [anon_sym_TILDE] = ACTIONS(3260), + [anon_sym_DASH] = ACTIONS(3258), + [anon_sym_PLUS] = ACTIONS(3258), + [anon_sym_STAR] = ACTIONS(3260), + [anon_sym_AMP_AMP] = ACTIONS(3260), + [anon_sym_AMP] = ACTIONS(3258), + [anon_sym_SEMI] = ACTIONS(3260), + [anon_sym_typedef] = ACTIONS(3258), + [anon_sym_extern] = ACTIONS(3258), + [anon_sym___attribute__] = ACTIONS(3258), + [anon_sym_COLON_COLON] = ACTIONS(3260), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3260), + [anon_sym___declspec] = ACTIONS(3258), + [anon_sym___based] = ACTIONS(3258), + [anon_sym___cdecl] = ACTIONS(3258), + [anon_sym___clrcall] = ACTIONS(3258), + [anon_sym___stdcall] = ACTIONS(3258), + [anon_sym___fastcall] = ACTIONS(3258), + [anon_sym___thiscall] = ACTIONS(3258), + [anon_sym___vectorcall] = ACTIONS(3258), + [anon_sym_LBRACE] = ACTIONS(3260), + [anon_sym_LBRACK] = ACTIONS(3258), + [anon_sym_static] = ACTIONS(3258), + [anon_sym_register] = ACTIONS(3258), + [anon_sym_inline] = ACTIONS(3258), + [anon_sym_thread_local] = ACTIONS(3258), + [anon_sym_const] = ACTIONS(3258), + [anon_sym_constexpr] = ACTIONS(3258), + [anon_sym_volatile] = ACTIONS(3258), + [anon_sym_restrict] = ACTIONS(3258), + [anon_sym___restrict__] = ACTIONS(3258), + [anon_sym__Atomic] = ACTIONS(3258), + [anon_sym__Noreturn] = ACTIONS(3258), + [anon_sym_noreturn] = ACTIONS(3258), + [anon_sym_mutable] = ACTIONS(3258), + [anon_sym_constinit] = ACTIONS(3258), + [anon_sym_consteval] = ACTIONS(3258), + [anon_sym_signed] = ACTIONS(3258), + [anon_sym_unsigned] = ACTIONS(3258), + [anon_sym_long] = ACTIONS(3258), + [anon_sym_short] = ACTIONS(3258), + [sym_primitive_type] = ACTIONS(3258), + [anon_sym_enum] = ACTIONS(3258), + [anon_sym_class] = ACTIONS(3258), + [anon_sym_struct] = ACTIONS(3258), + [anon_sym_union] = ACTIONS(3258), + [anon_sym_if] = ACTIONS(3258), + [anon_sym_switch] = ACTIONS(3258), + [anon_sym_case] = ACTIONS(3258), + [anon_sym_default] = ACTIONS(3258), + [anon_sym_while] = ACTIONS(3258), + [anon_sym_do] = ACTIONS(3258), + [anon_sym_for] = ACTIONS(3258), + [anon_sym_return] = ACTIONS(3258), + [anon_sym_break] = ACTIONS(3258), + [anon_sym_continue] = ACTIONS(3258), + [anon_sym_goto] = ACTIONS(3258), + [anon_sym_not] = ACTIONS(3258), + [anon_sym_compl] = ACTIONS(3258), + [anon_sym_DASH_DASH] = ACTIONS(3260), + [anon_sym_PLUS_PLUS] = ACTIONS(3260), + [anon_sym_sizeof] = ACTIONS(3258), + [anon_sym_offsetof] = ACTIONS(3258), + [anon_sym__Generic] = ACTIONS(3258), + [anon_sym_asm] = ACTIONS(3258), + [anon_sym___asm__] = ACTIONS(3258), + [sym_number_literal] = ACTIONS(3260), + [anon_sym_L_SQUOTE] = ACTIONS(3260), + [anon_sym_u_SQUOTE] = ACTIONS(3260), + [anon_sym_U_SQUOTE] = ACTIONS(3260), + [anon_sym_u8_SQUOTE] = ACTIONS(3260), + [anon_sym_SQUOTE] = ACTIONS(3260), + [anon_sym_L_DQUOTE] = ACTIONS(3260), + [anon_sym_u_DQUOTE] = ACTIONS(3260), + [anon_sym_U_DQUOTE] = ACTIONS(3260), + [anon_sym_u8_DQUOTE] = ACTIONS(3260), + [anon_sym_DQUOTE] = ACTIONS(3260), + [sym_true] = ACTIONS(3258), + [sym_false] = ACTIONS(3258), + [anon_sym_NULL] = ACTIONS(3258), + [anon_sym_nullptr] = ACTIONS(3258), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3258), + [anon_sym_decltype] = ACTIONS(3258), + [anon_sym_virtual] = ACTIONS(3258), + [anon_sym_explicit] = ACTIONS(3258), + [anon_sym_typename] = ACTIONS(3258), + [anon_sym_template] = ACTIONS(3258), + [anon_sym_operator] = ACTIONS(3258), + [anon_sym_try] = ACTIONS(3258), + [anon_sym_delete] = ACTIONS(3258), + [anon_sym_throw] = ACTIONS(3258), + [anon_sym_namespace] = ACTIONS(3258), + [anon_sym_using] = ACTIONS(3258), + [anon_sym_static_assert] = ACTIONS(3258), + [anon_sym_concept] = ACTIONS(3258), + [anon_sym_co_return] = ACTIONS(3258), + [anon_sym_co_yield] = ACTIONS(3258), + [anon_sym_R_DQUOTE] = ACTIONS(3260), + [anon_sym_LR_DQUOTE] = ACTIONS(3260), + [anon_sym_uR_DQUOTE] = ACTIONS(3260), + [anon_sym_UR_DQUOTE] = ACTIONS(3260), + [anon_sym_u8R_DQUOTE] = ACTIONS(3260), + [anon_sym_co_await] = ACTIONS(3258), + [anon_sym_new] = ACTIONS(3258), + [anon_sym_requires] = ACTIONS(3258), + [sym_this] = ACTIONS(3258), }, - [573] = { - [ts_builtin_sym_end] = ACTIONS(2590), - [sym_identifier] = ACTIONS(2588), - [aux_sym_preproc_include_token1] = ACTIONS(2588), - [aux_sym_preproc_def_token1] = ACTIONS(2588), - [aux_sym_preproc_if_token1] = ACTIONS(2588), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2588), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2588), - [sym_preproc_directive] = ACTIONS(2588), - [anon_sym_LPAREN2] = ACTIONS(2590), - [anon_sym_BANG] = ACTIONS(2590), - [anon_sym_TILDE] = ACTIONS(2590), - [anon_sym_DASH] = ACTIONS(2588), - [anon_sym_PLUS] = ACTIONS(2588), - [anon_sym_STAR] = ACTIONS(2590), - [anon_sym_AMP_AMP] = ACTIONS(2590), - [anon_sym_AMP] = ACTIONS(2588), - [anon_sym_SEMI] = ACTIONS(2590), - [anon_sym_typedef] = ACTIONS(2588), - [anon_sym_extern] = ACTIONS(2588), - [anon_sym___attribute__] = ACTIONS(2588), - [anon_sym_COLON_COLON] = ACTIONS(2590), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2590), - [anon_sym___declspec] = ACTIONS(2588), - [anon_sym___based] = ACTIONS(2588), - [anon_sym___cdecl] = ACTIONS(2588), - [anon_sym___clrcall] = ACTIONS(2588), - [anon_sym___stdcall] = ACTIONS(2588), - [anon_sym___fastcall] = ACTIONS(2588), - [anon_sym___thiscall] = ACTIONS(2588), - [anon_sym___vectorcall] = ACTIONS(2588), - [anon_sym_LBRACE] = ACTIONS(2590), - [anon_sym_LBRACK] = ACTIONS(2588), - [anon_sym_static] = ACTIONS(2588), - [anon_sym_register] = ACTIONS(2588), - [anon_sym_inline] = ACTIONS(2588), - [anon_sym_thread_local] = ACTIONS(2588), - [anon_sym_const] = ACTIONS(2588), - [anon_sym_volatile] = ACTIONS(2588), - [anon_sym_restrict] = ACTIONS(2588), - [anon_sym__Atomic] = ACTIONS(2588), - [anon_sym_mutable] = ACTIONS(2588), - [anon_sym_constexpr] = ACTIONS(2588), - [anon_sym_constinit] = ACTIONS(2588), - [anon_sym_consteval] = ACTIONS(2588), - [anon_sym_signed] = ACTIONS(2588), - [anon_sym_unsigned] = ACTIONS(2588), - [anon_sym_long] = ACTIONS(2588), - [anon_sym_short] = ACTIONS(2588), - [sym_primitive_type] = ACTIONS(2588), - [anon_sym_enum] = ACTIONS(2588), - [anon_sym_class] = ACTIONS(2588), - [anon_sym_struct] = ACTIONS(2588), - [anon_sym_union] = ACTIONS(2588), - [anon_sym_if] = ACTIONS(2588), - [anon_sym_else] = ACTIONS(2588), - [anon_sym_switch] = ACTIONS(2588), - [anon_sym_case] = ACTIONS(2588), - [anon_sym_default] = ACTIONS(2588), - [anon_sym_while] = ACTIONS(2588), - [anon_sym_do] = ACTIONS(2588), - [anon_sym_for] = ACTIONS(2588), - [anon_sym_return] = ACTIONS(2588), - [anon_sym_break] = ACTIONS(2588), - [anon_sym_continue] = ACTIONS(2588), - [anon_sym_goto] = ACTIONS(2588), - [anon_sym_not] = ACTIONS(2588), - [anon_sym_compl] = ACTIONS(2588), - [anon_sym_DASH_DASH] = ACTIONS(2590), - [anon_sym_PLUS_PLUS] = ACTIONS(2590), - [anon_sym_sizeof] = ACTIONS(2588), - [sym_number_literal] = ACTIONS(2590), - [anon_sym_L_SQUOTE] = ACTIONS(2590), - [anon_sym_u_SQUOTE] = ACTIONS(2590), - [anon_sym_U_SQUOTE] = ACTIONS(2590), - [anon_sym_u8_SQUOTE] = ACTIONS(2590), - [anon_sym_SQUOTE] = ACTIONS(2590), - [anon_sym_L_DQUOTE] = ACTIONS(2590), - [anon_sym_u_DQUOTE] = ACTIONS(2590), - [anon_sym_U_DQUOTE] = ACTIONS(2590), - [anon_sym_u8_DQUOTE] = ACTIONS(2590), - [anon_sym_DQUOTE] = ACTIONS(2590), - [sym_true] = ACTIONS(2588), - [sym_false] = ACTIONS(2588), - [sym_null] = ACTIONS(2588), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2588), - [anon_sym_decltype] = ACTIONS(2588), - [anon_sym_virtual] = ACTIONS(2588), - [anon_sym_explicit] = ACTIONS(2588), - [anon_sym_typename] = ACTIONS(2588), - [anon_sym_template] = ACTIONS(2588), - [anon_sym_operator] = ACTIONS(2588), - [anon_sym_try] = ACTIONS(2588), - [anon_sym_delete] = ACTIONS(2588), - [anon_sym_throw] = ACTIONS(2588), - [anon_sym_namespace] = ACTIONS(2588), - [anon_sym_using] = ACTIONS(2588), - [anon_sym_static_assert] = ACTIONS(2588), - [anon_sym_concept] = ACTIONS(2588), - [anon_sym_co_return] = ACTIONS(2588), - [anon_sym_co_yield] = ACTIONS(2588), - [anon_sym_R_DQUOTE] = ACTIONS(2590), - [anon_sym_LR_DQUOTE] = ACTIONS(2590), - [anon_sym_uR_DQUOTE] = ACTIONS(2590), - [anon_sym_UR_DQUOTE] = ACTIONS(2590), - [anon_sym_u8R_DQUOTE] = ACTIONS(2590), - [anon_sym_co_await] = ACTIONS(2588), - [anon_sym_new] = ACTIONS(2588), - [anon_sym_requires] = ACTIONS(2588), - [sym_this] = ACTIONS(2588), - [sym_nullptr] = ACTIONS(2588), + [544] = { + [sym_identifier] = ACTIONS(3262), + [aux_sym_preproc_include_token1] = ACTIONS(3262), + [aux_sym_preproc_def_token1] = ACTIONS(3262), + [aux_sym_preproc_if_token1] = ACTIONS(3262), + [aux_sym_preproc_if_token2] = ACTIONS(3262), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3262), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3262), + [aux_sym_preproc_else_token1] = ACTIONS(3262), + [aux_sym_preproc_elif_token1] = ACTIONS(3262), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3262), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3262), + [sym_preproc_directive] = ACTIONS(3262), + [anon_sym_LPAREN2] = ACTIONS(3264), + [anon_sym_BANG] = ACTIONS(3264), + [anon_sym_TILDE] = ACTIONS(3264), + [anon_sym_DASH] = ACTIONS(3262), + [anon_sym_PLUS] = ACTIONS(3262), + [anon_sym_STAR] = ACTIONS(3264), + [anon_sym_AMP_AMP] = ACTIONS(3264), + [anon_sym_AMP] = ACTIONS(3262), + [anon_sym_SEMI] = ACTIONS(3264), + [anon_sym_typedef] = ACTIONS(3262), + [anon_sym_extern] = ACTIONS(3262), + [anon_sym___attribute__] = ACTIONS(3262), + [anon_sym_COLON_COLON] = ACTIONS(3264), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3264), + [anon_sym___declspec] = ACTIONS(3262), + [anon_sym___based] = ACTIONS(3262), + [anon_sym___cdecl] = ACTIONS(3262), + [anon_sym___clrcall] = ACTIONS(3262), + [anon_sym___stdcall] = ACTIONS(3262), + [anon_sym___fastcall] = ACTIONS(3262), + [anon_sym___thiscall] = ACTIONS(3262), + [anon_sym___vectorcall] = ACTIONS(3262), + [anon_sym_LBRACE] = ACTIONS(3264), + [anon_sym_LBRACK] = ACTIONS(3262), + [anon_sym_static] = ACTIONS(3262), + [anon_sym_register] = ACTIONS(3262), + [anon_sym_inline] = ACTIONS(3262), + [anon_sym_thread_local] = ACTIONS(3262), + [anon_sym_const] = ACTIONS(3262), + [anon_sym_constexpr] = ACTIONS(3262), + [anon_sym_volatile] = ACTIONS(3262), + [anon_sym_restrict] = ACTIONS(3262), + [anon_sym___restrict__] = ACTIONS(3262), + [anon_sym__Atomic] = ACTIONS(3262), + [anon_sym__Noreturn] = ACTIONS(3262), + [anon_sym_noreturn] = ACTIONS(3262), + [anon_sym_mutable] = ACTIONS(3262), + [anon_sym_constinit] = ACTIONS(3262), + [anon_sym_consteval] = ACTIONS(3262), + [anon_sym_signed] = ACTIONS(3262), + [anon_sym_unsigned] = ACTIONS(3262), + [anon_sym_long] = ACTIONS(3262), + [anon_sym_short] = ACTIONS(3262), + [sym_primitive_type] = ACTIONS(3262), + [anon_sym_enum] = ACTIONS(3262), + [anon_sym_class] = ACTIONS(3262), + [anon_sym_struct] = ACTIONS(3262), + [anon_sym_union] = ACTIONS(3262), + [anon_sym_if] = ACTIONS(3262), + [anon_sym_switch] = ACTIONS(3262), + [anon_sym_case] = ACTIONS(3262), + [anon_sym_default] = ACTIONS(3262), + [anon_sym_while] = ACTIONS(3262), + [anon_sym_do] = ACTIONS(3262), + [anon_sym_for] = ACTIONS(3262), + [anon_sym_return] = ACTIONS(3262), + [anon_sym_break] = ACTIONS(3262), + [anon_sym_continue] = ACTIONS(3262), + [anon_sym_goto] = ACTIONS(3262), + [anon_sym_not] = ACTIONS(3262), + [anon_sym_compl] = ACTIONS(3262), + [anon_sym_DASH_DASH] = ACTIONS(3264), + [anon_sym_PLUS_PLUS] = ACTIONS(3264), + [anon_sym_sizeof] = ACTIONS(3262), + [anon_sym_offsetof] = ACTIONS(3262), + [anon_sym__Generic] = ACTIONS(3262), + [anon_sym_asm] = ACTIONS(3262), + [anon_sym___asm__] = ACTIONS(3262), + [sym_number_literal] = ACTIONS(3264), + [anon_sym_L_SQUOTE] = ACTIONS(3264), + [anon_sym_u_SQUOTE] = ACTIONS(3264), + [anon_sym_U_SQUOTE] = ACTIONS(3264), + [anon_sym_u8_SQUOTE] = ACTIONS(3264), + [anon_sym_SQUOTE] = ACTIONS(3264), + [anon_sym_L_DQUOTE] = ACTIONS(3264), + [anon_sym_u_DQUOTE] = ACTIONS(3264), + [anon_sym_U_DQUOTE] = ACTIONS(3264), + [anon_sym_u8_DQUOTE] = ACTIONS(3264), + [anon_sym_DQUOTE] = ACTIONS(3264), + [sym_true] = ACTIONS(3262), + [sym_false] = ACTIONS(3262), + [anon_sym_NULL] = ACTIONS(3262), + [anon_sym_nullptr] = ACTIONS(3262), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3262), + [anon_sym_decltype] = ACTIONS(3262), + [anon_sym_virtual] = ACTIONS(3262), + [anon_sym_explicit] = ACTIONS(3262), + [anon_sym_typename] = ACTIONS(3262), + [anon_sym_template] = ACTIONS(3262), + [anon_sym_operator] = ACTIONS(3262), + [anon_sym_try] = ACTIONS(3262), + [anon_sym_delete] = ACTIONS(3262), + [anon_sym_throw] = ACTIONS(3262), + [anon_sym_namespace] = ACTIONS(3262), + [anon_sym_using] = ACTIONS(3262), + [anon_sym_static_assert] = ACTIONS(3262), + [anon_sym_concept] = ACTIONS(3262), + [anon_sym_co_return] = ACTIONS(3262), + [anon_sym_co_yield] = ACTIONS(3262), + [anon_sym_R_DQUOTE] = ACTIONS(3264), + [anon_sym_LR_DQUOTE] = ACTIONS(3264), + [anon_sym_uR_DQUOTE] = ACTIONS(3264), + [anon_sym_UR_DQUOTE] = ACTIONS(3264), + [anon_sym_u8R_DQUOTE] = ACTIONS(3264), + [anon_sym_co_await] = ACTIONS(3262), + [anon_sym_new] = ACTIONS(3262), + [anon_sym_requires] = ACTIONS(3262), + [sym_this] = ACTIONS(3262), }, - [574] = { - [ts_builtin_sym_end] = ACTIONS(2490), - [sym_identifier] = ACTIONS(2488), - [aux_sym_preproc_include_token1] = ACTIONS(2488), - [aux_sym_preproc_def_token1] = ACTIONS(2488), - [aux_sym_preproc_if_token1] = ACTIONS(2488), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2488), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2488), - [sym_preproc_directive] = ACTIONS(2488), - [anon_sym_LPAREN2] = ACTIONS(2490), - [anon_sym_BANG] = ACTIONS(2490), - [anon_sym_TILDE] = ACTIONS(2490), - [anon_sym_DASH] = ACTIONS(2488), - [anon_sym_PLUS] = ACTIONS(2488), - [anon_sym_STAR] = ACTIONS(2490), - [anon_sym_AMP_AMP] = ACTIONS(2490), - [anon_sym_AMP] = ACTIONS(2488), - [anon_sym_SEMI] = ACTIONS(2490), - [anon_sym_typedef] = ACTIONS(2488), - [anon_sym_extern] = ACTIONS(2488), - [anon_sym___attribute__] = ACTIONS(2488), - [anon_sym_COLON_COLON] = ACTIONS(2490), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2490), - [anon_sym___declspec] = ACTIONS(2488), - [anon_sym___based] = ACTIONS(2488), - [anon_sym___cdecl] = ACTIONS(2488), - [anon_sym___clrcall] = ACTIONS(2488), - [anon_sym___stdcall] = ACTIONS(2488), - [anon_sym___fastcall] = ACTIONS(2488), - [anon_sym___thiscall] = ACTIONS(2488), - [anon_sym___vectorcall] = ACTIONS(2488), - [anon_sym_LBRACE] = ACTIONS(2490), - [anon_sym_LBRACK] = ACTIONS(2488), - [anon_sym_static] = ACTIONS(2488), - [anon_sym_register] = ACTIONS(2488), - [anon_sym_inline] = ACTIONS(2488), - [anon_sym_thread_local] = ACTIONS(2488), - [anon_sym_const] = ACTIONS(2488), - [anon_sym_volatile] = ACTIONS(2488), - [anon_sym_restrict] = ACTIONS(2488), - [anon_sym__Atomic] = ACTIONS(2488), - [anon_sym_mutable] = ACTIONS(2488), - [anon_sym_constexpr] = ACTIONS(2488), - [anon_sym_constinit] = ACTIONS(2488), - [anon_sym_consteval] = ACTIONS(2488), - [anon_sym_signed] = ACTIONS(2488), - [anon_sym_unsigned] = ACTIONS(2488), - [anon_sym_long] = ACTIONS(2488), - [anon_sym_short] = ACTIONS(2488), - [sym_primitive_type] = ACTIONS(2488), - [anon_sym_enum] = ACTIONS(2488), - [anon_sym_class] = ACTIONS(2488), - [anon_sym_struct] = ACTIONS(2488), - [anon_sym_union] = ACTIONS(2488), - [anon_sym_if] = ACTIONS(2488), - [anon_sym_else] = ACTIONS(2488), - [anon_sym_switch] = ACTIONS(2488), - [anon_sym_case] = ACTIONS(2488), - [anon_sym_default] = ACTIONS(2488), - [anon_sym_while] = ACTIONS(2488), - [anon_sym_do] = ACTIONS(2488), - [anon_sym_for] = ACTIONS(2488), - [anon_sym_return] = ACTIONS(2488), - [anon_sym_break] = ACTIONS(2488), - [anon_sym_continue] = ACTIONS(2488), - [anon_sym_goto] = ACTIONS(2488), - [anon_sym_not] = ACTIONS(2488), - [anon_sym_compl] = ACTIONS(2488), - [anon_sym_DASH_DASH] = ACTIONS(2490), - [anon_sym_PLUS_PLUS] = ACTIONS(2490), - [anon_sym_sizeof] = ACTIONS(2488), - [sym_number_literal] = ACTIONS(2490), - [anon_sym_L_SQUOTE] = ACTIONS(2490), - [anon_sym_u_SQUOTE] = ACTIONS(2490), - [anon_sym_U_SQUOTE] = ACTIONS(2490), - [anon_sym_u8_SQUOTE] = ACTIONS(2490), - [anon_sym_SQUOTE] = ACTIONS(2490), - [anon_sym_L_DQUOTE] = ACTIONS(2490), - [anon_sym_u_DQUOTE] = ACTIONS(2490), - [anon_sym_U_DQUOTE] = ACTIONS(2490), - [anon_sym_u8_DQUOTE] = ACTIONS(2490), - [anon_sym_DQUOTE] = ACTIONS(2490), - [sym_true] = ACTIONS(2488), - [sym_false] = ACTIONS(2488), - [sym_null] = ACTIONS(2488), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2488), - [anon_sym_decltype] = ACTIONS(2488), - [anon_sym_virtual] = ACTIONS(2488), - [anon_sym_explicit] = ACTIONS(2488), - [anon_sym_typename] = ACTIONS(2488), - [anon_sym_template] = ACTIONS(2488), - [anon_sym_operator] = ACTIONS(2488), - [anon_sym_try] = ACTIONS(2488), - [anon_sym_delete] = ACTIONS(2488), - [anon_sym_throw] = ACTIONS(2488), - [anon_sym_namespace] = ACTIONS(2488), - [anon_sym_using] = ACTIONS(2488), - [anon_sym_static_assert] = ACTIONS(2488), - [anon_sym_concept] = ACTIONS(2488), - [anon_sym_co_return] = ACTIONS(2488), - [anon_sym_co_yield] = ACTIONS(2488), - [anon_sym_R_DQUOTE] = ACTIONS(2490), - [anon_sym_LR_DQUOTE] = ACTIONS(2490), - [anon_sym_uR_DQUOTE] = ACTIONS(2490), - [anon_sym_UR_DQUOTE] = ACTIONS(2490), - [anon_sym_u8R_DQUOTE] = ACTIONS(2490), - [anon_sym_co_await] = ACTIONS(2488), - [anon_sym_new] = ACTIONS(2488), - [anon_sym_requires] = ACTIONS(2488), - [sym_this] = ACTIONS(2488), - [sym_nullptr] = ACTIONS(2488), + [545] = { + [sym_identifier] = ACTIONS(3266), + [aux_sym_preproc_include_token1] = ACTIONS(3266), + [aux_sym_preproc_def_token1] = ACTIONS(3266), + [aux_sym_preproc_if_token1] = ACTIONS(3266), + [aux_sym_preproc_if_token2] = ACTIONS(3266), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3266), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3266), + [aux_sym_preproc_else_token1] = ACTIONS(3266), + [aux_sym_preproc_elif_token1] = ACTIONS(3266), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3266), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3266), + [sym_preproc_directive] = ACTIONS(3266), + [anon_sym_LPAREN2] = ACTIONS(3268), + [anon_sym_BANG] = ACTIONS(3268), + [anon_sym_TILDE] = ACTIONS(3268), + [anon_sym_DASH] = ACTIONS(3266), + [anon_sym_PLUS] = ACTIONS(3266), + [anon_sym_STAR] = ACTIONS(3268), + [anon_sym_AMP_AMP] = ACTIONS(3268), + [anon_sym_AMP] = ACTIONS(3266), + [anon_sym_SEMI] = ACTIONS(3268), + [anon_sym_typedef] = ACTIONS(3266), + [anon_sym_extern] = ACTIONS(3266), + [anon_sym___attribute__] = ACTIONS(3266), + [anon_sym_COLON_COLON] = ACTIONS(3268), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3268), + [anon_sym___declspec] = ACTIONS(3266), + [anon_sym___based] = ACTIONS(3266), + [anon_sym___cdecl] = ACTIONS(3266), + [anon_sym___clrcall] = ACTIONS(3266), + [anon_sym___stdcall] = ACTIONS(3266), + [anon_sym___fastcall] = ACTIONS(3266), + [anon_sym___thiscall] = ACTIONS(3266), + [anon_sym___vectorcall] = ACTIONS(3266), + [anon_sym_LBRACE] = ACTIONS(3268), + [anon_sym_LBRACK] = ACTIONS(3266), + [anon_sym_static] = ACTIONS(3266), + [anon_sym_register] = ACTIONS(3266), + [anon_sym_inline] = ACTIONS(3266), + [anon_sym_thread_local] = ACTIONS(3266), + [anon_sym_const] = ACTIONS(3266), + [anon_sym_constexpr] = ACTIONS(3266), + [anon_sym_volatile] = ACTIONS(3266), + [anon_sym_restrict] = ACTIONS(3266), + [anon_sym___restrict__] = ACTIONS(3266), + [anon_sym__Atomic] = ACTIONS(3266), + [anon_sym__Noreturn] = ACTIONS(3266), + [anon_sym_noreturn] = ACTIONS(3266), + [anon_sym_mutable] = ACTIONS(3266), + [anon_sym_constinit] = ACTIONS(3266), + [anon_sym_consteval] = ACTIONS(3266), + [anon_sym_signed] = ACTIONS(3266), + [anon_sym_unsigned] = ACTIONS(3266), + [anon_sym_long] = ACTIONS(3266), + [anon_sym_short] = ACTIONS(3266), + [sym_primitive_type] = ACTIONS(3266), + [anon_sym_enum] = ACTIONS(3266), + [anon_sym_class] = ACTIONS(3266), + [anon_sym_struct] = ACTIONS(3266), + [anon_sym_union] = ACTIONS(3266), + [anon_sym_if] = ACTIONS(3266), + [anon_sym_switch] = ACTIONS(3266), + [anon_sym_case] = ACTIONS(3266), + [anon_sym_default] = ACTIONS(3266), + [anon_sym_while] = ACTIONS(3266), + [anon_sym_do] = ACTIONS(3266), + [anon_sym_for] = ACTIONS(3266), + [anon_sym_return] = ACTIONS(3266), + [anon_sym_break] = ACTIONS(3266), + [anon_sym_continue] = ACTIONS(3266), + [anon_sym_goto] = ACTIONS(3266), + [anon_sym_not] = ACTIONS(3266), + [anon_sym_compl] = ACTIONS(3266), + [anon_sym_DASH_DASH] = ACTIONS(3268), + [anon_sym_PLUS_PLUS] = ACTIONS(3268), + [anon_sym_sizeof] = ACTIONS(3266), + [anon_sym_offsetof] = ACTIONS(3266), + [anon_sym__Generic] = ACTIONS(3266), + [anon_sym_asm] = ACTIONS(3266), + [anon_sym___asm__] = ACTIONS(3266), + [sym_number_literal] = ACTIONS(3268), + [anon_sym_L_SQUOTE] = ACTIONS(3268), + [anon_sym_u_SQUOTE] = ACTIONS(3268), + [anon_sym_U_SQUOTE] = ACTIONS(3268), + [anon_sym_u8_SQUOTE] = ACTIONS(3268), + [anon_sym_SQUOTE] = ACTIONS(3268), + [anon_sym_L_DQUOTE] = ACTIONS(3268), + [anon_sym_u_DQUOTE] = ACTIONS(3268), + [anon_sym_U_DQUOTE] = ACTIONS(3268), + [anon_sym_u8_DQUOTE] = ACTIONS(3268), + [anon_sym_DQUOTE] = ACTIONS(3268), + [sym_true] = ACTIONS(3266), + [sym_false] = ACTIONS(3266), + [anon_sym_NULL] = ACTIONS(3266), + [anon_sym_nullptr] = ACTIONS(3266), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3266), + [anon_sym_decltype] = ACTIONS(3266), + [anon_sym_virtual] = ACTIONS(3266), + [anon_sym_explicit] = ACTIONS(3266), + [anon_sym_typename] = ACTIONS(3266), + [anon_sym_template] = ACTIONS(3266), + [anon_sym_operator] = ACTIONS(3266), + [anon_sym_try] = ACTIONS(3266), + [anon_sym_delete] = ACTIONS(3266), + [anon_sym_throw] = ACTIONS(3266), + [anon_sym_namespace] = ACTIONS(3266), + [anon_sym_using] = ACTIONS(3266), + [anon_sym_static_assert] = ACTIONS(3266), + [anon_sym_concept] = ACTIONS(3266), + [anon_sym_co_return] = ACTIONS(3266), + [anon_sym_co_yield] = ACTIONS(3266), + [anon_sym_R_DQUOTE] = ACTIONS(3268), + [anon_sym_LR_DQUOTE] = ACTIONS(3268), + [anon_sym_uR_DQUOTE] = ACTIONS(3268), + [anon_sym_UR_DQUOTE] = ACTIONS(3268), + [anon_sym_u8R_DQUOTE] = ACTIONS(3268), + [anon_sym_co_await] = ACTIONS(3266), + [anon_sym_new] = ACTIONS(3266), + [anon_sym_requires] = ACTIONS(3266), + [sym_this] = ACTIONS(3266), }, - [575] = { - [ts_builtin_sym_end] = ACTIONS(2472), - [sym_identifier] = ACTIONS(2470), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2472), - [anon_sym_AMP] = ACTIONS(2470), - [anon_sym_SEMI] = ACTIONS(2472), - [anon_sym_typedef] = ACTIONS(2470), - [anon_sym_extern] = ACTIONS(2470), - [anon_sym___attribute__] = ACTIONS(2470), - [anon_sym_COLON_COLON] = ACTIONS(2472), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2472), - [anon_sym___declspec] = ACTIONS(2470), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2470), - [anon_sym_static] = ACTIONS(2470), - [anon_sym_register] = ACTIONS(2470), - [anon_sym_inline] = ACTIONS(2470), - [anon_sym_thread_local] = ACTIONS(2470), - [anon_sym_const] = ACTIONS(2470), - [anon_sym_volatile] = ACTIONS(2470), - [anon_sym_restrict] = ACTIONS(2470), - [anon_sym__Atomic] = ACTIONS(2470), - [anon_sym_mutable] = ACTIONS(2470), - [anon_sym_constexpr] = ACTIONS(2470), - [anon_sym_constinit] = ACTIONS(2470), - [anon_sym_consteval] = ACTIONS(2470), - [anon_sym_signed] = ACTIONS(2470), - [anon_sym_unsigned] = ACTIONS(2470), - [anon_sym_long] = ACTIONS(2470), - [anon_sym_short] = ACTIONS(2470), - [sym_primitive_type] = ACTIONS(2470), - [anon_sym_enum] = ACTIONS(2470), - [anon_sym_class] = 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_return] = ACTIONS(2470), - [anon_sym_break] = ACTIONS(2470), - [anon_sym_continue] = ACTIONS(2470), - [anon_sym_goto] = ACTIONS(2470), - [anon_sym_not] = ACTIONS(2470), - [anon_sym_compl] = ACTIONS(2470), - [anon_sym_DASH_DASH] = ACTIONS(2472), - [anon_sym_PLUS_PLUS] = ACTIONS(2472), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2472), - [anon_sym_u_DQUOTE] = ACTIONS(2472), - [anon_sym_U_DQUOTE] = ACTIONS(2472), - [anon_sym_u8_DQUOTE] = ACTIONS(2472), - [anon_sym_DQUOTE] = ACTIONS(2472), - [sym_true] = ACTIONS(2470), - [sym_false] = ACTIONS(2470), - [sym_null] = ACTIONS(2470), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2470), - [anon_sym_decltype] = ACTIONS(2470), - [anon_sym_virtual] = ACTIONS(2470), - [anon_sym_explicit] = ACTIONS(2470), - [anon_sym_typename] = ACTIONS(2470), - [anon_sym_template] = ACTIONS(2470), - [anon_sym_operator] = ACTIONS(2470), - [anon_sym_try] = ACTIONS(2470), - [anon_sym_delete] = ACTIONS(2470), - [anon_sym_throw] = ACTIONS(2470), - [anon_sym_namespace] = ACTIONS(2470), - [anon_sym_using] = ACTIONS(2470), - [anon_sym_static_assert] = ACTIONS(2470), - [anon_sym_concept] = ACTIONS(2470), - [anon_sym_co_return] = ACTIONS(2470), - [anon_sym_co_yield] = ACTIONS(2470), - [anon_sym_R_DQUOTE] = ACTIONS(2472), - [anon_sym_LR_DQUOTE] = ACTIONS(2472), - [anon_sym_uR_DQUOTE] = ACTIONS(2472), - [anon_sym_UR_DQUOTE] = ACTIONS(2472), - [anon_sym_u8R_DQUOTE] = ACTIONS(2472), - [anon_sym_co_await] = ACTIONS(2470), - [anon_sym_new] = ACTIONS(2470), - [anon_sym_requires] = ACTIONS(2470), - [sym_this] = ACTIONS(2470), - [sym_nullptr] = ACTIONS(2470), + [546] = { + [sym_identifier] = ACTIONS(3270), + [aux_sym_preproc_include_token1] = ACTIONS(3270), + [aux_sym_preproc_def_token1] = ACTIONS(3270), + [aux_sym_preproc_if_token1] = ACTIONS(3270), + [aux_sym_preproc_if_token2] = ACTIONS(3270), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3270), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3270), + [aux_sym_preproc_else_token1] = ACTIONS(3270), + [aux_sym_preproc_elif_token1] = ACTIONS(3270), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3270), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3270), + [sym_preproc_directive] = ACTIONS(3270), + [anon_sym_LPAREN2] = ACTIONS(3272), + [anon_sym_BANG] = ACTIONS(3272), + [anon_sym_TILDE] = ACTIONS(3272), + [anon_sym_DASH] = ACTIONS(3270), + [anon_sym_PLUS] = ACTIONS(3270), + [anon_sym_STAR] = ACTIONS(3272), + [anon_sym_AMP_AMP] = ACTIONS(3272), + [anon_sym_AMP] = ACTIONS(3270), + [anon_sym_SEMI] = ACTIONS(3272), + [anon_sym_typedef] = ACTIONS(3270), + [anon_sym_extern] = ACTIONS(3270), + [anon_sym___attribute__] = ACTIONS(3270), + [anon_sym_COLON_COLON] = ACTIONS(3272), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3272), + [anon_sym___declspec] = ACTIONS(3270), + [anon_sym___based] = ACTIONS(3270), + [anon_sym___cdecl] = ACTIONS(3270), + [anon_sym___clrcall] = ACTIONS(3270), + [anon_sym___stdcall] = ACTIONS(3270), + [anon_sym___fastcall] = ACTIONS(3270), + [anon_sym___thiscall] = ACTIONS(3270), + [anon_sym___vectorcall] = ACTIONS(3270), + [anon_sym_LBRACE] = ACTIONS(3272), + [anon_sym_LBRACK] = ACTIONS(3270), + [anon_sym_static] = ACTIONS(3270), + [anon_sym_register] = ACTIONS(3270), + [anon_sym_inline] = ACTIONS(3270), + [anon_sym_thread_local] = ACTIONS(3270), + [anon_sym_const] = ACTIONS(3270), + [anon_sym_constexpr] = ACTIONS(3270), + [anon_sym_volatile] = ACTIONS(3270), + [anon_sym_restrict] = ACTIONS(3270), + [anon_sym___restrict__] = ACTIONS(3270), + [anon_sym__Atomic] = ACTIONS(3270), + [anon_sym__Noreturn] = ACTIONS(3270), + [anon_sym_noreturn] = ACTIONS(3270), + [anon_sym_mutable] = ACTIONS(3270), + [anon_sym_constinit] = ACTIONS(3270), + [anon_sym_consteval] = ACTIONS(3270), + [anon_sym_signed] = ACTIONS(3270), + [anon_sym_unsigned] = ACTIONS(3270), + [anon_sym_long] = ACTIONS(3270), + [anon_sym_short] = ACTIONS(3270), + [sym_primitive_type] = ACTIONS(3270), + [anon_sym_enum] = ACTIONS(3270), + [anon_sym_class] = ACTIONS(3270), + [anon_sym_struct] = ACTIONS(3270), + [anon_sym_union] = ACTIONS(3270), + [anon_sym_if] = ACTIONS(3270), + [anon_sym_switch] = ACTIONS(3270), + [anon_sym_case] = ACTIONS(3270), + [anon_sym_default] = ACTIONS(3270), + [anon_sym_while] = ACTIONS(3270), + [anon_sym_do] = ACTIONS(3270), + [anon_sym_for] = ACTIONS(3270), + [anon_sym_return] = ACTIONS(3270), + [anon_sym_break] = ACTIONS(3270), + [anon_sym_continue] = ACTIONS(3270), + [anon_sym_goto] = ACTIONS(3270), + [anon_sym_not] = ACTIONS(3270), + [anon_sym_compl] = ACTIONS(3270), + [anon_sym_DASH_DASH] = ACTIONS(3272), + [anon_sym_PLUS_PLUS] = ACTIONS(3272), + [anon_sym_sizeof] = ACTIONS(3270), + [anon_sym_offsetof] = ACTIONS(3270), + [anon_sym__Generic] = ACTIONS(3270), + [anon_sym_asm] = ACTIONS(3270), + [anon_sym___asm__] = ACTIONS(3270), + [sym_number_literal] = ACTIONS(3272), + [anon_sym_L_SQUOTE] = ACTIONS(3272), + [anon_sym_u_SQUOTE] = ACTIONS(3272), + [anon_sym_U_SQUOTE] = ACTIONS(3272), + [anon_sym_u8_SQUOTE] = ACTIONS(3272), + [anon_sym_SQUOTE] = ACTIONS(3272), + [anon_sym_L_DQUOTE] = ACTIONS(3272), + [anon_sym_u_DQUOTE] = ACTIONS(3272), + [anon_sym_U_DQUOTE] = ACTIONS(3272), + [anon_sym_u8_DQUOTE] = ACTIONS(3272), + [anon_sym_DQUOTE] = ACTIONS(3272), + [sym_true] = ACTIONS(3270), + [sym_false] = ACTIONS(3270), + [anon_sym_NULL] = ACTIONS(3270), + [anon_sym_nullptr] = ACTIONS(3270), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3270), + [anon_sym_decltype] = ACTIONS(3270), + [anon_sym_virtual] = ACTIONS(3270), + [anon_sym_explicit] = ACTIONS(3270), + [anon_sym_typename] = ACTIONS(3270), + [anon_sym_template] = ACTIONS(3270), + [anon_sym_operator] = ACTIONS(3270), + [anon_sym_try] = ACTIONS(3270), + [anon_sym_delete] = ACTIONS(3270), + [anon_sym_throw] = ACTIONS(3270), + [anon_sym_namespace] = ACTIONS(3270), + [anon_sym_using] = ACTIONS(3270), + [anon_sym_static_assert] = ACTIONS(3270), + [anon_sym_concept] = ACTIONS(3270), + [anon_sym_co_return] = ACTIONS(3270), + [anon_sym_co_yield] = ACTIONS(3270), + [anon_sym_R_DQUOTE] = ACTIONS(3272), + [anon_sym_LR_DQUOTE] = ACTIONS(3272), + [anon_sym_uR_DQUOTE] = ACTIONS(3272), + [anon_sym_UR_DQUOTE] = ACTIONS(3272), + [anon_sym_u8R_DQUOTE] = ACTIONS(3272), + [anon_sym_co_await] = ACTIONS(3270), + [anon_sym_new] = ACTIONS(3270), + [anon_sym_requires] = ACTIONS(3270), + [sym_this] = ACTIONS(3270), }, - [576] = { - [sym_identifier] = ACTIONS(2572), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2574), - [anon_sym_AMP] = ACTIONS(2572), - [anon_sym_SEMI] = ACTIONS(2574), - [anon_sym_typedef] = ACTIONS(2572), - [anon_sym_extern] = ACTIONS(2572), - [anon_sym___attribute__] = ACTIONS(2572), - [anon_sym_COLON_COLON] = ACTIONS(2574), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2574), - [anon_sym___declspec] = ACTIONS(2572), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2572), - [anon_sym_static] = ACTIONS(2572), - [anon_sym_register] = ACTIONS(2572), - [anon_sym_inline] = ACTIONS(2572), - [anon_sym_thread_local] = ACTIONS(2572), - [anon_sym_const] = ACTIONS(2572), - [anon_sym_volatile] = ACTIONS(2572), - [anon_sym_restrict] = ACTIONS(2572), - [anon_sym__Atomic] = ACTIONS(2572), - [anon_sym_mutable] = ACTIONS(2572), - [anon_sym_constexpr] = ACTIONS(2572), - [anon_sym_constinit] = ACTIONS(2572), - [anon_sym_consteval] = ACTIONS(2572), - [anon_sym_signed] = ACTIONS(2572), - [anon_sym_unsigned] = ACTIONS(2572), - [anon_sym_long] = ACTIONS(2572), - [anon_sym_short] = ACTIONS(2572), - [sym_primitive_type] = ACTIONS(2572), - [anon_sym_enum] = ACTIONS(2572), - [anon_sym_class] = ACTIONS(2572), - [anon_sym_struct] = ACTIONS(2572), - [anon_sym_union] = ACTIONS(2572), - [anon_sym_if] = ACTIONS(2572), - [anon_sym_else] = 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_return] = ACTIONS(2572), - [anon_sym_break] = ACTIONS(2572), - [anon_sym_continue] = ACTIONS(2572), - [anon_sym_goto] = ACTIONS(2572), - [anon_sym_not] = ACTIONS(2572), - [anon_sym_compl] = ACTIONS(2572), - [anon_sym_DASH_DASH] = ACTIONS(2574), - [anon_sym_PLUS_PLUS] = ACTIONS(2574), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2574), - [anon_sym_u_DQUOTE] = ACTIONS(2574), - [anon_sym_U_DQUOTE] = ACTIONS(2574), - [anon_sym_u8_DQUOTE] = ACTIONS(2574), - [anon_sym_DQUOTE] = ACTIONS(2574), - [sym_true] = ACTIONS(2572), - [sym_false] = ACTIONS(2572), - [sym_null] = ACTIONS(2572), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2572), - [anon_sym_decltype] = ACTIONS(2572), - [anon_sym_virtual] = ACTIONS(2572), - [anon_sym_explicit] = ACTIONS(2572), - [anon_sym_typename] = ACTIONS(2572), - [anon_sym_template] = ACTIONS(2572), - [anon_sym_operator] = ACTIONS(2572), - [anon_sym_try] = ACTIONS(2572), - [anon_sym_delete] = ACTIONS(2572), - [anon_sym_throw] = ACTIONS(2572), - [anon_sym_namespace] = ACTIONS(2572), - [anon_sym_using] = ACTIONS(2572), - [anon_sym_static_assert] = ACTIONS(2572), - [anon_sym_concept] = ACTIONS(2572), - [anon_sym_co_return] = ACTIONS(2572), - [anon_sym_co_yield] = ACTIONS(2572), - [anon_sym_R_DQUOTE] = ACTIONS(2574), - [anon_sym_LR_DQUOTE] = ACTIONS(2574), - [anon_sym_uR_DQUOTE] = ACTIONS(2574), - [anon_sym_UR_DQUOTE] = ACTIONS(2574), - [anon_sym_u8R_DQUOTE] = ACTIONS(2574), - [anon_sym_co_await] = ACTIONS(2572), - [anon_sym_new] = ACTIONS(2572), - [anon_sym_requires] = ACTIONS(2572), - [sym_this] = ACTIONS(2572), - [sym_nullptr] = ACTIONS(2572), + [547] = { + [sym_identifier] = ACTIONS(3274), + [aux_sym_preproc_include_token1] = ACTIONS(3274), + [aux_sym_preproc_def_token1] = ACTIONS(3274), + [aux_sym_preproc_if_token1] = ACTIONS(3274), + [aux_sym_preproc_if_token2] = ACTIONS(3274), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3274), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3274), + [aux_sym_preproc_else_token1] = ACTIONS(3274), + [aux_sym_preproc_elif_token1] = ACTIONS(3274), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3274), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3274), + [sym_preproc_directive] = ACTIONS(3274), + [anon_sym_LPAREN2] = ACTIONS(3276), + [anon_sym_BANG] = ACTIONS(3276), + [anon_sym_TILDE] = ACTIONS(3276), + [anon_sym_DASH] = ACTIONS(3274), + [anon_sym_PLUS] = ACTIONS(3274), + [anon_sym_STAR] = ACTIONS(3276), + [anon_sym_AMP_AMP] = ACTIONS(3276), + [anon_sym_AMP] = ACTIONS(3274), + [anon_sym_SEMI] = ACTIONS(3276), + [anon_sym_typedef] = ACTIONS(3274), + [anon_sym_extern] = ACTIONS(3274), + [anon_sym___attribute__] = ACTIONS(3274), + [anon_sym_COLON_COLON] = ACTIONS(3276), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3276), + [anon_sym___declspec] = ACTIONS(3274), + [anon_sym___based] = ACTIONS(3274), + [anon_sym___cdecl] = ACTIONS(3274), + [anon_sym___clrcall] = ACTIONS(3274), + [anon_sym___stdcall] = ACTIONS(3274), + [anon_sym___fastcall] = ACTIONS(3274), + [anon_sym___thiscall] = ACTIONS(3274), + [anon_sym___vectorcall] = ACTIONS(3274), + [anon_sym_LBRACE] = ACTIONS(3276), + [anon_sym_LBRACK] = ACTIONS(3274), + [anon_sym_static] = ACTIONS(3274), + [anon_sym_register] = ACTIONS(3274), + [anon_sym_inline] = ACTIONS(3274), + [anon_sym_thread_local] = ACTIONS(3274), + [anon_sym_const] = ACTIONS(3274), + [anon_sym_constexpr] = ACTIONS(3274), + [anon_sym_volatile] = ACTIONS(3274), + [anon_sym_restrict] = ACTIONS(3274), + [anon_sym___restrict__] = ACTIONS(3274), + [anon_sym__Atomic] = ACTIONS(3274), + [anon_sym__Noreturn] = ACTIONS(3274), + [anon_sym_noreturn] = ACTIONS(3274), + [anon_sym_mutable] = ACTIONS(3274), + [anon_sym_constinit] = ACTIONS(3274), + [anon_sym_consteval] = ACTIONS(3274), + [anon_sym_signed] = ACTIONS(3274), + [anon_sym_unsigned] = ACTIONS(3274), + [anon_sym_long] = ACTIONS(3274), + [anon_sym_short] = ACTIONS(3274), + [sym_primitive_type] = ACTIONS(3274), + [anon_sym_enum] = ACTIONS(3274), + [anon_sym_class] = ACTIONS(3274), + [anon_sym_struct] = ACTIONS(3274), + [anon_sym_union] = ACTIONS(3274), + [anon_sym_if] = ACTIONS(3274), + [anon_sym_switch] = ACTIONS(3274), + [anon_sym_case] = ACTIONS(3274), + [anon_sym_default] = ACTIONS(3274), + [anon_sym_while] = ACTIONS(3274), + [anon_sym_do] = ACTIONS(3274), + [anon_sym_for] = ACTIONS(3274), + [anon_sym_return] = ACTIONS(3274), + [anon_sym_break] = ACTIONS(3274), + [anon_sym_continue] = ACTIONS(3274), + [anon_sym_goto] = ACTIONS(3274), + [anon_sym_not] = ACTIONS(3274), + [anon_sym_compl] = ACTIONS(3274), + [anon_sym_DASH_DASH] = ACTIONS(3276), + [anon_sym_PLUS_PLUS] = ACTIONS(3276), + [anon_sym_sizeof] = ACTIONS(3274), + [anon_sym_offsetof] = ACTIONS(3274), + [anon_sym__Generic] = ACTIONS(3274), + [anon_sym_asm] = ACTIONS(3274), + [anon_sym___asm__] = ACTIONS(3274), + [sym_number_literal] = ACTIONS(3276), + [anon_sym_L_SQUOTE] = ACTIONS(3276), + [anon_sym_u_SQUOTE] = ACTIONS(3276), + [anon_sym_U_SQUOTE] = ACTIONS(3276), + [anon_sym_u8_SQUOTE] = ACTIONS(3276), + [anon_sym_SQUOTE] = ACTIONS(3276), + [anon_sym_L_DQUOTE] = ACTIONS(3276), + [anon_sym_u_DQUOTE] = ACTIONS(3276), + [anon_sym_U_DQUOTE] = ACTIONS(3276), + [anon_sym_u8_DQUOTE] = ACTIONS(3276), + [anon_sym_DQUOTE] = ACTIONS(3276), + [sym_true] = ACTIONS(3274), + [sym_false] = ACTIONS(3274), + [anon_sym_NULL] = ACTIONS(3274), + [anon_sym_nullptr] = ACTIONS(3274), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3274), + [anon_sym_decltype] = ACTIONS(3274), + [anon_sym_virtual] = ACTIONS(3274), + [anon_sym_explicit] = ACTIONS(3274), + [anon_sym_typename] = ACTIONS(3274), + [anon_sym_template] = ACTIONS(3274), + [anon_sym_operator] = ACTIONS(3274), + [anon_sym_try] = ACTIONS(3274), + [anon_sym_delete] = ACTIONS(3274), + [anon_sym_throw] = ACTIONS(3274), + [anon_sym_namespace] = ACTIONS(3274), + [anon_sym_using] = ACTIONS(3274), + [anon_sym_static_assert] = ACTIONS(3274), + [anon_sym_concept] = ACTIONS(3274), + [anon_sym_co_return] = ACTIONS(3274), + [anon_sym_co_yield] = ACTIONS(3274), + [anon_sym_R_DQUOTE] = ACTIONS(3276), + [anon_sym_LR_DQUOTE] = ACTIONS(3276), + [anon_sym_uR_DQUOTE] = ACTIONS(3276), + [anon_sym_UR_DQUOTE] = ACTIONS(3276), + [anon_sym_u8R_DQUOTE] = ACTIONS(3276), + [anon_sym_co_await] = ACTIONS(3274), + [anon_sym_new] = ACTIONS(3274), + [anon_sym_requires] = ACTIONS(3274), + [sym_this] = ACTIONS(3274), }, - [577] = { - [ts_builtin_sym_end] = ACTIONS(2598), - [sym_identifier] = ACTIONS(2596), - [aux_sym_preproc_include_token1] = ACTIONS(2596), - [aux_sym_preproc_def_token1] = ACTIONS(2596), - [aux_sym_preproc_if_token1] = ACTIONS(2596), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2596), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2596), - [sym_preproc_directive] = ACTIONS(2596), - [anon_sym_LPAREN2] = ACTIONS(2598), - [anon_sym_BANG] = ACTIONS(2598), - [anon_sym_TILDE] = ACTIONS(2598), - [anon_sym_DASH] = ACTIONS(2596), - [anon_sym_PLUS] = ACTIONS(2596), - [anon_sym_STAR] = ACTIONS(2598), - [anon_sym_AMP_AMP] = ACTIONS(2598), - [anon_sym_AMP] = ACTIONS(2596), - [anon_sym_SEMI] = ACTIONS(2598), - [anon_sym_typedef] = ACTIONS(2596), - [anon_sym_extern] = ACTIONS(2596), - [anon_sym___attribute__] = ACTIONS(2596), - [anon_sym_COLON_COLON] = ACTIONS(2598), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2598), - [anon_sym___declspec] = ACTIONS(2596), - [anon_sym___based] = ACTIONS(2596), - [anon_sym___cdecl] = ACTIONS(2596), - [anon_sym___clrcall] = ACTIONS(2596), - [anon_sym___stdcall] = ACTIONS(2596), - [anon_sym___fastcall] = ACTIONS(2596), - [anon_sym___thiscall] = ACTIONS(2596), - [anon_sym___vectorcall] = ACTIONS(2596), - [anon_sym_LBRACE] = ACTIONS(2598), - [anon_sym_LBRACK] = ACTIONS(2596), - [anon_sym_static] = ACTIONS(2596), - [anon_sym_register] = ACTIONS(2596), - [anon_sym_inline] = ACTIONS(2596), - [anon_sym_thread_local] = ACTIONS(2596), - [anon_sym_const] = ACTIONS(2596), - [anon_sym_volatile] = ACTIONS(2596), - [anon_sym_restrict] = ACTIONS(2596), - [anon_sym__Atomic] = ACTIONS(2596), - [anon_sym_mutable] = ACTIONS(2596), - [anon_sym_constexpr] = ACTIONS(2596), - [anon_sym_constinit] = ACTIONS(2596), - [anon_sym_consteval] = ACTIONS(2596), - [anon_sym_signed] = ACTIONS(2596), - [anon_sym_unsigned] = ACTIONS(2596), - [anon_sym_long] = ACTIONS(2596), - [anon_sym_short] = ACTIONS(2596), - [sym_primitive_type] = ACTIONS(2596), - [anon_sym_enum] = ACTIONS(2596), - [anon_sym_class] = ACTIONS(2596), - [anon_sym_struct] = ACTIONS(2596), - [anon_sym_union] = ACTIONS(2596), - [anon_sym_if] = ACTIONS(2596), - [anon_sym_else] = ACTIONS(2596), - [anon_sym_switch] = ACTIONS(2596), - [anon_sym_case] = ACTIONS(2596), - [anon_sym_default] = ACTIONS(2596), - [anon_sym_while] = ACTIONS(2596), - [anon_sym_do] = ACTIONS(2596), - [anon_sym_for] = ACTIONS(2596), - [anon_sym_return] = ACTIONS(2596), - [anon_sym_break] = ACTIONS(2596), - [anon_sym_continue] = ACTIONS(2596), - [anon_sym_goto] = ACTIONS(2596), - [anon_sym_not] = ACTIONS(2596), - [anon_sym_compl] = ACTIONS(2596), - [anon_sym_DASH_DASH] = ACTIONS(2598), - [anon_sym_PLUS_PLUS] = ACTIONS(2598), - [anon_sym_sizeof] = ACTIONS(2596), - [sym_number_literal] = ACTIONS(2598), - [anon_sym_L_SQUOTE] = ACTIONS(2598), - [anon_sym_u_SQUOTE] = ACTIONS(2598), - [anon_sym_U_SQUOTE] = ACTIONS(2598), - [anon_sym_u8_SQUOTE] = ACTIONS(2598), - [anon_sym_SQUOTE] = ACTIONS(2598), - [anon_sym_L_DQUOTE] = ACTIONS(2598), - [anon_sym_u_DQUOTE] = ACTIONS(2598), - [anon_sym_U_DQUOTE] = ACTIONS(2598), - [anon_sym_u8_DQUOTE] = ACTIONS(2598), - [anon_sym_DQUOTE] = ACTIONS(2598), - [sym_true] = ACTIONS(2596), - [sym_false] = ACTIONS(2596), - [sym_null] = ACTIONS(2596), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2596), - [anon_sym_decltype] = ACTIONS(2596), - [anon_sym_virtual] = ACTIONS(2596), - [anon_sym_explicit] = ACTIONS(2596), - [anon_sym_typename] = ACTIONS(2596), - [anon_sym_template] = ACTIONS(2596), - [anon_sym_operator] = ACTIONS(2596), - [anon_sym_try] = ACTIONS(2596), - [anon_sym_delete] = ACTIONS(2596), - [anon_sym_throw] = ACTIONS(2596), - [anon_sym_namespace] = ACTIONS(2596), - [anon_sym_using] = ACTIONS(2596), - [anon_sym_static_assert] = ACTIONS(2596), - [anon_sym_concept] = ACTIONS(2596), - [anon_sym_co_return] = ACTIONS(2596), - [anon_sym_co_yield] = ACTIONS(2596), - [anon_sym_R_DQUOTE] = ACTIONS(2598), - [anon_sym_LR_DQUOTE] = ACTIONS(2598), - [anon_sym_uR_DQUOTE] = ACTIONS(2598), - [anon_sym_UR_DQUOTE] = ACTIONS(2598), - [anon_sym_u8R_DQUOTE] = ACTIONS(2598), - [anon_sym_co_await] = ACTIONS(2596), - [anon_sym_new] = ACTIONS(2596), - [anon_sym_requires] = ACTIONS(2596), - [sym_this] = ACTIONS(2596), - [sym_nullptr] = ACTIONS(2596), + [548] = { + [sym_identifier] = ACTIONS(3278), + [aux_sym_preproc_include_token1] = ACTIONS(3278), + [aux_sym_preproc_def_token1] = ACTIONS(3278), + [aux_sym_preproc_if_token1] = ACTIONS(3278), + [aux_sym_preproc_if_token2] = ACTIONS(3278), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3278), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3278), + [aux_sym_preproc_else_token1] = ACTIONS(3278), + [aux_sym_preproc_elif_token1] = ACTIONS(3278), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3278), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3278), + [sym_preproc_directive] = ACTIONS(3278), + [anon_sym_LPAREN2] = ACTIONS(3280), + [anon_sym_BANG] = ACTIONS(3280), + [anon_sym_TILDE] = ACTIONS(3280), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3280), + [anon_sym_AMP_AMP] = ACTIONS(3280), + [anon_sym_AMP] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3280), + [anon_sym_typedef] = ACTIONS(3278), + [anon_sym_extern] = ACTIONS(3278), + [anon_sym___attribute__] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3280), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3280), + [anon_sym___declspec] = ACTIONS(3278), + [anon_sym___based] = ACTIONS(3278), + [anon_sym___cdecl] = ACTIONS(3278), + [anon_sym___clrcall] = ACTIONS(3278), + [anon_sym___stdcall] = ACTIONS(3278), + [anon_sym___fastcall] = ACTIONS(3278), + [anon_sym___thiscall] = ACTIONS(3278), + [anon_sym___vectorcall] = ACTIONS(3278), + [anon_sym_LBRACE] = ACTIONS(3280), + [anon_sym_LBRACK] = ACTIONS(3278), + [anon_sym_static] = ACTIONS(3278), + [anon_sym_register] = ACTIONS(3278), + [anon_sym_inline] = ACTIONS(3278), + [anon_sym_thread_local] = ACTIONS(3278), + [anon_sym_const] = ACTIONS(3278), + [anon_sym_constexpr] = ACTIONS(3278), + [anon_sym_volatile] = ACTIONS(3278), + [anon_sym_restrict] = ACTIONS(3278), + [anon_sym___restrict__] = ACTIONS(3278), + [anon_sym__Atomic] = ACTIONS(3278), + [anon_sym__Noreturn] = ACTIONS(3278), + [anon_sym_noreturn] = ACTIONS(3278), + [anon_sym_mutable] = ACTIONS(3278), + [anon_sym_constinit] = ACTIONS(3278), + [anon_sym_consteval] = ACTIONS(3278), + [anon_sym_signed] = ACTIONS(3278), + [anon_sym_unsigned] = ACTIONS(3278), + [anon_sym_long] = ACTIONS(3278), + [anon_sym_short] = ACTIONS(3278), + [sym_primitive_type] = ACTIONS(3278), + [anon_sym_enum] = ACTIONS(3278), + [anon_sym_class] = ACTIONS(3278), + [anon_sym_struct] = ACTIONS(3278), + [anon_sym_union] = ACTIONS(3278), + [anon_sym_if] = ACTIONS(3278), + [anon_sym_switch] = ACTIONS(3278), + [anon_sym_case] = ACTIONS(3278), + [anon_sym_default] = ACTIONS(3278), + [anon_sym_while] = ACTIONS(3278), + [anon_sym_do] = ACTIONS(3278), + [anon_sym_for] = ACTIONS(3278), + [anon_sym_return] = ACTIONS(3278), + [anon_sym_break] = ACTIONS(3278), + [anon_sym_continue] = ACTIONS(3278), + [anon_sym_goto] = ACTIONS(3278), + [anon_sym_not] = ACTIONS(3278), + [anon_sym_compl] = ACTIONS(3278), + [anon_sym_DASH_DASH] = ACTIONS(3280), + [anon_sym_PLUS_PLUS] = ACTIONS(3280), + [anon_sym_sizeof] = ACTIONS(3278), + [anon_sym_offsetof] = ACTIONS(3278), + [anon_sym__Generic] = ACTIONS(3278), + [anon_sym_asm] = ACTIONS(3278), + [anon_sym___asm__] = ACTIONS(3278), + [sym_number_literal] = ACTIONS(3280), + [anon_sym_L_SQUOTE] = ACTIONS(3280), + [anon_sym_u_SQUOTE] = ACTIONS(3280), + [anon_sym_U_SQUOTE] = ACTIONS(3280), + [anon_sym_u8_SQUOTE] = ACTIONS(3280), + [anon_sym_SQUOTE] = ACTIONS(3280), + [anon_sym_L_DQUOTE] = ACTIONS(3280), + [anon_sym_u_DQUOTE] = ACTIONS(3280), + [anon_sym_U_DQUOTE] = ACTIONS(3280), + [anon_sym_u8_DQUOTE] = ACTIONS(3280), + [anon_sym_DQUOTE] = ACTIONS(3280), + [sym_true] = ACTIONS(3278), + [sym_false] = ACTIONS(3278), + [anon_sym_NULL] = ACTIONS(3278), + [anon_sym_nullptr] = ACTIONS(3278), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3278), + [anon_sym_decltype] = ACTIONS(3278), + [anon_sym_virtual] = ACTIONS(3278), + [anon_sym_explicit] = ACTIONS(3278), + [anon_sym_typename] = ACTIONS(3278), + [anon_sym_template] = ACTIONS(3278), + [anon_sym_operator] = ACTIONS(3278), + [anon_sym_try] = ACTIONS(3278), + [anon_sym_delete] = ACTIONS(3278), + [anon_sym_throw] = ACTIONS(3278), + [anon_sym_namespace] = ACTIONS(3278), + [anon_sym_using] = ACTIONS(3278), + [anon_sym_static_assert] = ACTIONS(3278), + [anon_sym_concept] = ACTIONS(3278), + [anon_sym_co_return] = ACTIONS(3278), + [anon_sym_co_yield] = ACTIONS(3278), + [anon_sym_R_DQUOTE] = ACTIONS(3280), + [anon_sym_LR_DQUOTE] = ACTIONS(3280), + [anon_sym_uR_DQUOTE] = ACTIONS(3280), + [anon_sym_UR_DQUOTE] = ACTIONS(3280), + [anon_sym_u8R_DQUOTE] = ACTIONS(3280), + [anon_sym_co_await] = ACTIONS(3278), + [anon_sym_new] = ACTIONS(3278), + [anon_sym_requires] = ACTIONS(3278), + [sym_this] = ACTIONS(3278), }, - [578] = { - [ts_builtin_sym_end] = ACTIONS(2506), - [sym_identifier] = ACTIONS(2504), - [aux_sym_preproc_include_token1] = ACTIONS(2504), - [aux_sym_preproc_def_token1] = ACTIONS(2504), - [aux_sym_preproc_if_token1] = ACTIONS(2504), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2504), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2504), - [sym_preproc_directive] = ACTIONS(2504), - [anon_sym_LPAREN2] = ACTIONS(2506), - [anon_sym_BANG] = ACTIONS(2506), - [anon_sym_TILDE] = ACTIONS(2506), - [anon_sym_DASH] = ACTIONS(2504), - [anon_sym_PLUS] = ACTIONS(2504), - [anon_sym_STAR] = ACTIONS(2506), - [anon_sym_AMP_AMP] = ACTIONS(2506), - [anon_sym_AMP] = ACTIONS(2504), - [anon_sym_SEMI] = ACTIONS(2506), - [anon_sym_typedef] = ACTIONS(2504), - [anon_sym_extern] = ACTIONS(2504), - [anon_sym___attribute__] = ACTIONS(2504), - [anon_sym_COLON_COLON] = ACTIONS(2506), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2506), - [anon_sym___declspec] = ACTIONS(2504), - [anon_sym___based] = ACTIONS(2504), - [anon_sym___cdecl] = ACTIONS(2504), - [anon_sym___clrcall] = ACTIONS(2504), - [anon_sym___stdcall] = ACTIONS(2504), - [anon_sym___fastcall] = ACTIONS(2504), - [anon_sym___thiscall] = ACTIONS(2504), - [anon_sym___vectorcall] = ACTIONS(2504), - [anon_sym_LBRACE] = ACTIONS(2506), - [anon_sym_LBRACK] = ACTIONS(2504), - [anon_sym_static] = ACTIONS(2504), - [anon_sym_register] = ACTIONS(2504), - [anon_sym_inline] = ACTIONS(2504), - [anon_sym_thread_local] = ACTIONS(2504), - [anon_sym_const] = ACTIONS(2504), - [anon_sym_volatile] = ACTIONS(2504), - [anon_sym_restrict] = ACTIONS(2504), - [anon_sym__Atomic] = ACTIONS(2504), - [anon_sym_mutable] = ACTIONS(2504), - [anon_sym_constexpr] = ACTIONS(2504), - [anon_sym_constinit] = ACTIONS(2504), - [anon_sym_consteval] = ACTIONS(2504), - [anon_sym_signed] = ACTIONS(2504), - [anon_sym_unsigned] = ACTIONS(2504), - [anon_sym_long] = ACTIONS(2504), - [anon_sym_short] = ACTIONS(2504), - [sym_primitive_type] = ACTIONS(2504), - [anon_sym_enum] = ACTIONS(2504), - [anon_sym_class] = ACTIONS(2504), - [anon_sym_struct] = ACTIONS(2504), - [anon_sym_union] = ACTIONS(2504), - [anon_sym_if] = ACTIONS(2504), - [anon_sym_else] = ACTIONS(2504), - [anon_sym_switch] = ACTIONS(2504), - [anon_sym_case] = ACTIONS(2504), - [anon_sym_default] = ACTIONS(2504), - [anon_sym_while] = ACTIONS(2504), - [anon_sym_do] = ACTIONS(2504), - [anon_sym_for] = ACTIONS(2504), - [anon_sym_return] = ACTIONS(2504), - [anon_sym_break] = ACTIONS(2504), - [anon_sym_continue] = ACTIONS(2504), - [anon_sym_goto] = ACTIONS(2504), - [anon_sym_not] = ACTIONS(2504), - [anon_sym_compl] = ACTIONS(2504), - [anon_sym_DASH_DASH] = ACTIONS(2506), - [anon_sym_PLUS_PLUS] = ACTIONS(2506), - [anon_sym_sizeof] = ACTIONS(2504), - [sym_number_literal] = ACTIONS(2506), - [anon_sym_L_SQUOTE] = ACTIONS(2506), - [anon_sym_u_SQUOTE] = ACTIONS(2506), - [anon_sym_U_SQUOTE] = ACTIONS(2506), - [anon_sym_u8_SQUOTE] = ACTIONS(2506), - [anon_sym_SQUOTE] = ACTIONS(2506), - [anon_sym_L_DQUOTE] = ACTIONS(2506), - [anon_sym_u_DQUOTE] = ACTIONS(2506), - [anon_sym_U_DQUOTE] = ACTIONS(2506), - [anon_sym_u8_DQUOTE] = ACTIONS(2506), - [anon_sym_DQUOTE] = ACTIONS(2506), - [sym_true] = ACTIONS(2504), - [sym_false] = ACTIONS(2504), - [sym_null] = ACTIONS(2504), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2504), - [anon_sym_decltype] = ACTIONS(2504), - [anon_sym_virtual] = ACTIONS(2504), - [anon_sym_explicit] = ACTIONS(2504), - [anon_sym_typename] = ACTIONS(2504), - [anon_sym_template] = ACTIONS(2504), - [anon_sym_operator] = ACTIONS(2504), - [anon_sym_try] = ACTIONS(2504), - [anon_sym_delete] = ACTIONS(2504), - [anon_sym_throw] = ACTIONS(2504), - [anon_sym_namespace] = ACTIONS(2504), - [anon_sym_using] = ACTIONS(2504), - [anon_sym_static_assert] = ACTIONS(2504), - [anon_sym_concept] = ACTIONS(2504), - [anon_sym_co_return] = ACTIONS(2504), - [anon_sym_co_yield] = ACTIONS(2504), - [anon_sym_R_DQUOTE] = ACTIONS(2506), - [anon_sym_LR_DQUOTE] = ACTIONS(2506), - [anon_sym_uR_DQUOTE] = ACTIONS(2506), - [anon_sym_UR_DQUOTE] = ACTIONS(2506), - [anon_sym_u8R_DQUOTE] = ACTIONS(2506), - [anon_sym_co_await] = ACTIONS(2504), - [anon_sym_new] = ACTIONS(2504), - [anon_sym_requires] = ACTIONS(2504), - [sym_this] = ACTIONS(2504), - [sym_nullptr] = ACTIONS(2504), + [549] = { + [sym_identifier] = ACTIONS(3282), + [aux_sym_preproc_include_token1] = ACTIONS(3282), + [aux_sym_preproc_def_token1] = ACTIONS(3282), + [aux_sym_preproc_if_token1] = ACTIONS(3282), + [aux_sym_preproc_if_token2] = ACTIONS(3282), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3282), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3282), + [aux_sym_preproc_else_token1] = ACTIONS(3282), + [aux_sym_preproc_elif_token1] = ACTIONS(3282), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3282), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3282), + [sym_preproc_directive] = ACTIONS(3282), + [anon_sym_LPAREN2] = ACTIONS(3284), + [anon_sym_BANG] = ACTIONS(3284), + [anon_sym_TILDE] = ACTIONS(3284), + [anon_sym_DASH] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3282), + [anon_sym_STAR] = ACTIONS(3284), + [anon_sym_AMP_AMP] = ACTIONS(3284), + [anon_sym_AMP] = ACTIONS(3282), + [anon_sym_SEMI] = ACTIONS(3284), + [anon_sym_typedef] = ACTIONS(3282), + [anon_sym_extern] = ACTIONS(3282), + [anon_sym___attribute__] = ACTIONS(3282), + [anon_sym_COLON_COLON] = ACTIONS(3284), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3284), + [anon_sym___declspec] = ACTIONS(3282), + [anon_sym___based] = ACTIONS(3282), + [anon_sym___cdecl] = ACTIONS(3282), + [anon_sym___clrcall] = ACTIONS(3282), + [anon_sym___stdcall] = ACTIONS(3282), + [anon_sym___fastcall] = ACTIONS(3282), + [anon_sym___thiscall] = ACTIONS(3282), + [anon_sym___vectorcall] = ACTIONS(3282), + [anon_sym_LBRACE] = ACTIONS(3284), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_static] = ACTIONS(3282), + [anon_sym_register] = ACTIONS(3282), + [anon_sym_inline] = ACTIONS(3282), + [anon_sym_thread_local] = ACTIONS(3282), + [anon_sym_const] = ACTIONS(3282), + [anon_sym_constexpr] = ACTIONS(3282), + [anon_sym_volatile] = ACTIONS(3282), + [anon_sym_restrict] = ACTIONS(3282), + [anon_sym___restrict__] = ACTIONS(3282), + [anon_sym__Atomic] = ACTIONS(3282), + [anon_sym__Noreturn] = ACTIONS(3282), + [anon_sym_noreturn] = ACTIONS(3282), + [anon_sym_mutable] = ACTIONS(3282), + [anon_sym_constinit] = ACTIONS(3282), + [anon_sym_consteval] = ACTIONS(3282), + [anon_sym_signed] = ACTIONS(3282), + [anon_sym_unsigned] = ACTIONS(3282), + [anon_sym_long] = ACTIONS(3282), + [anon_sym_short] = ACTIONS(3282), + [sym_primitive_type] = ACTIONS(3282), + [anon_sym_enum] = ACTIONS(3282), + [anon_sym_class] = ACTIONS(3282), + [anon_sym_struct] = ACTIONS(3282), + [anon_sym_union] = ACTIONS(3282), + [anon_sym_if] = ACTIONS(3282), + [anon_sym_switch] = ACTIONS(3282), + [anon_sym_case] = ACTIONS(3282), + [anon_sym_default] = ACTIONS(3282), + [anon_sym_while] = ACTIONS(3282), + [anon_sym_do] = ACTIONS(3282), + [anon_sym_for] = ACTIONS(3282), + [anon_sym_return] = ACTIONS(3282), + [anon_sym_break] = ACTIONS(3282), + [anon_sym_continue] = ACTIONS(3282), + [anon_sym_goto] = ACTIONS(3282), + [anon_sym_not] = ACTIONS(3282), + [anon_sym_compl] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3284), + [anon_sym_PLUS_PLUS] = ACTIONS(3284), + [anon_sym_sizeof] = ACTIONS(3282), + [anon_sym_offsetof] = ACTIONS(3282), + [anon_sym__Generic] = ACTIONS(3282), + [anon_sym_asm] = ACTIONS(3282), + [anon_sym___asm__] = ACTIONS(3282), + [sym_number_literal] = ACTIONS(3284), + [anon_sym_L_SQUOTE] = ACTIONS(3284), + [anon_sym_u_SQUOTE] = ACTIONS(3284), + [anon_sym_U_SQUOTE] = ACTIONS(3284), + [anon_sym_u8_SQUOTE] = ACTIONS(3284), + [anon_sym_SQUOTE] = ACTIONS(3284), + [anon_sym_L_DQUOTE] = ACTIONS(3284), + [anon_sym_u_DQUOTE] = ACTIONS(3284), + [anon_sym_U_DQUOTE] = ACTIONS(3284), + [anon_sym_u8_DQUOTE] = ACTIONS(3284), + [anon_sym_DQUOTE] = ACTIONS(3284), + [sym_true] = ACTIONS(3282), + [sym_false] = ACTIONS(3282), + [anon_sym_NULL] = ACTIONS(3282), + [anon_sym_nullptr] = ACTIONS(3282), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3282), + [anon_sym_decltype] = ACTIONS(3282), + [anon_sym_virtual] = ACTIONS(3282), + [anon_sym_explicit] = ACTIONS(3282), + [anon_sym_typename] = ACTIONS(3282), + [anon_sym_template] = ACTIONS(3282), + [anon_sym_operator] = ACTIONS(3282), + [anon_sym_try] = ACTIONS(3282), + [anon_sym_delete] = ACTIONS(3282), + [anon_sym_throw] = ACTIONS(3282), + [anon_sym_namespace] = ACTIONS(3282), + [anon_sym_using] = ACTIONS(3282), + [anon_sym_static_assert] = ACTIONS(3282), + [anon_sym_concept] = ACTIONS(3282), + [anon_sym_co_return] = ACTIONS(3282), + [anon_sym_co_yield] = ACTIONS(3282), + [anon_sym_R_DQUOTE] = ACTIONS(3284), + [anon_sym_LR_DQUOTE] = ACTIONS(3284), + [anon_sym_uR_DQUOTE] = ACTIONS(3284), + [anon_sym_UR_DQUOTE] = ACTIONS(3284), + [anon_sym_u8R_DQUOTE] = ACTIONS(3284), + [anon_sym_co_await] = ACTIONS(3282), + [anon_sym_new] = ACTIONS(3282), + [anon_sym_requires] = ACTIONS(3282), + [sym_this] = ACTIONS(3282), }, - [579] = { - [ts_builtin_sym_end] = ACTIONS(2658), - [sym_identifier] = ACTIONS(2656), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2658), - [anon_sym_AMP] = ACTIONS(2656), - [anon_sym_SEMI] = ACTIONS(2658), - [anon_sym_typedef] = ACTIONS(2656), - [anon_sym_extern] = ACTIONS(2656), - [anon_sym___attribute__] = ACTIONS(2656), - [anon_sym_COLON_COLON] = ACTIONS(2658), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2658), - [anon_sym___declspec] = ACTIONS(2656), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2656), - [anon_sym_static] = ACTIONS(2656), - [anon_sym_register] = ACTIONS(2656), - [anon_sym_inline] = ACTIONS(2656), - [anon_sym_thread_local] = ACTIONS(2656), - [anon_sym_const] = ACTIONS(2656), - [anon_sym_volatile] = ACTIONS(2656), - [anon_sym_restrict] = ACTIONS(2656), - [anon_sym__Atomic] = ACTIONS(2656), - [anon_sym_mutable] = ACTIONS(2656), - [anon_sym_constexpr] = ACTIONS(2656), - [anon_sym_constinit] = ACTIONS(2656), - [anon_sym_consteval] = ACTIONS(2656), - [anon_sym_signed] = ACTIONS(2656), - [anon_sym_unsigned] = ACTIONS(2656), - [anon_sym_long] = ACTIONS(2656), - [anon_sym_short] = ACTIONS(2656), - [sym_primitive_type] = ACTIONS(2656), - [anon_sym_enum] = ACTIONS(2656), - [anon_sym_class] = ACTIONS(2656), - [anon_sym_struct] = ACTIONS(2656), - [anon_sym_union] = ACTIONS(2656), - [anon_sym_if] = ACTIONS(2656), - [anon_sym_else] = 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_return] = ACTIONS(2656), - [anon_sym_break] = ACTIONS(2656), - [anon_sym_continue] = ACTIONS(2656), - [anon_sym_goto] = ACTIONS(2656), - [anon_sym_not] = ACTIONS(2656), - [anon_sym_compl] = ACTIONS(2656), - [anon_sym_DASH_DASH] = ACTIONS(2658), - [anon_sym_PLUS_PLUS] = ACTIONS(2658), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2658), - [anon_sym_u_DQUOTE] = ACTIONS(2658), - [anon_sym_U_DQUOTE] = ACTIONS(2658), - [anon_sym_u8_DQUOTE] = ACTIONS(2658), - [anon_sym_DQUOTE] = ACTIONS(2658), - [sym_true] = ACTIONS(2656), - [sym_false] = ACTIONS(2656), - [sym_null] = ACTIONS(2656), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2656), - [anon_sym_decltype] = ACTIONS(2656), - [anon_sym_virtual] = ACTIONS(2656), - [anon_sym_explicit] = ACTIONS(2656), - [anon_sym_typename] = ACTIONS(2656), - [anon_sym_template] = ACTIONS(2656), - [anon_sym_operator] = ACTIONS(2656), - [anon_sym_try] = ACTIONS(2656), - [anon_sym_delete] = ACTIONS(2656), - [anon_sym_throw] = ACTIONS(2656), - [anon_sym_namespace] = ACTIONS(2656), - [anon_sym_using] = ACTIONS(2656), - [anon_sym_static_assert] = ACTIONS(2656), - [anon_sym_concept] = ACTIONS(2656), - [anon_sym_co_return] = ACTIONS(2656), - [anon_sym_co_yield] = ACTIONS(2656), - [anon_sym_R_DQUOTE] = ACTIONS(2658), - [anon_sym_LR_DQUOTE] = ACTIONS(2658), - [anon_sym_uR_DQUOTE] = ACTIONS(2658), - [anon_sym_UR_DQUOTE] = ACTIONS(2658), - [anon_sym_u8R_DQUOTE] = ACTIONS(2658), - [anon_sym_co_await] = ACTIONS(2656), - [anon_sym_new] = ACTIONS(2656), - [anon_sym_requires] = ACTIONS(2656), - [sym_this] = ACTIONS(2656), - [sym_nullptr] = ACTIONS(2656), + [550] = { + [sym_identifier] = ACTIONS(3286), + [aux_sym_preproc_include_token1] = ACTIONS(3286), + [aux_sym_preproc_def_token1] = ACTIONS(3286), + [aux_sym_preproc_if_token1] = ACTIONS(3286), + [aux_sym_preproc_if_token2] = ACTIONS(3286), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3286), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3286), + [aux_sym_preproc_else_token1] = ACTIONS(3286), + [aux_sym_preproc_elif_token1] = ACTIONS(3286), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3286), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3286), + [sym_preproc_directive] = ACTIONS(3286), + [anon_sym_LPAREN2] = ACTIONS(3288), + [anon_sym_BANG] = ACTIONS(3288), + [anon_sym_TILDE] = ACTIONS(3288), + [anon_sym_DASH] = ACTIONS(3286), + [anon_sym_PLUS] = ACTIONS(3286), + [anon_sym_STAR] = ACTIONS(3288), + [anon_sym_AMP_AMP] = ACTIONS(3288), + [anon_sym_AMP] = ACTIONS(3286), + [anon_sym_SEMI] = ACTIONS(3288), + [anon_sym_typedef] = ACTIONS(3286), + [anon_sym_extern] = ACTIONS(3286), + [anon_sym___attribute__] = ACTIONS(3286), + [anon_sym_COLON_COLON] = ACTIONS(3288), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3288), + [anon_sym___declspec] = ACTIONS(3286), + [anon_sym___based] = ACTIONS(3286), + [anon_sym___cdecl] = ACTIONS(3286), + [anon_sym___clrcall] = ACTIONS(3286), + [anon_sym___stdcall] = ACTIONS(3286), + [anon_sym___fastcall] = ACTIONS(3286), + [anon_sym___thiscall] = ACTIONS(3286), + [anon_sym___vectorcall] = ACTIONS(3286), + [anon_sym_LBRACE] = ACTIONS(3288), + [anon_sym_LBRACK] = ACTIONS(3286), + [anon_sym_static] = ACTIONS(3286), + [anon_sym_register] = ACTIONS(3286), + [anon_sym_inline] = ACTIONS(3286), + [anon_sym_thread_local] = ACTIONS(3286), + [anon_sym_const] = ACTIONS(3286), + [anon_sym_constexpr] = ACTIONS(3286), + [anon_sym_volatile] = ACTIONS(3286), + [anon_sym_restrict] = ACTIONS(3286), + [anon_sym___restrict__] = ACTIONS(3286), + [anon_sym__Atomic] = ACTIONS(3286), + [anon_sym__Noreturn] = ACTIONS(3286), + [anon_sym_noreturn] = ACTIONS(3286), + [anon_sym_mutable] = ACTIONS(3286), + [anon_sym_constinit] = ACTIONS(3286), + [anon_sym_consteval] = ACTIONS(3286), + [anon_sym_signed] = ACTIONS(3286), + [anon_sym_unsigned] = ACTIONS(3286), + [anon_sym_long] = ACTIONS(3286), + [anon_sym_short] = ACTIONS(3286), + [sym_primitive_type] = ACTIONS(3286), + [anon_sym_enum] = ACTIONS(3286), + [anon_sym_class] = ACTIONS(3286), + [anon_sym_struct] = ACTIONS(3286), + [anon_sym_union] = ACTIONS(3286), + [anon_sym_if] = ACTIONS(3286), + [anon_sym_switch] = ACTIONS(3286), + [anon_sym_case] = ACTIONS(3286), + [anon_sym_default] = ACTIONS(3286), + [anon_sym_while] = ACTIONS(3286), + [anon_sym_do] = ACTIONS(3286), + [anon_sym_for] = ACTIONS(3286), + [anon_sym_return] = ACTIONS(3286), + [anon_sym_break] = ACTIONS(3286), + [anon_sym_continue] = ACTIONS(3286), + [anon_sym_goto] = ACTIONS(3286), + [anon_sym_not] = ACTIONS(3286), + [anon_sym_compl] = ACTIONS(3286), + [anon_sym_DASH_DASH] = ACTIONS(3288), + [anon_sym_PLUS_PLUS] = ACTIONS(3288), + [anon_sym_sizeof] = ACTIONS(3286), + [anon_sym_offsetof] = ACTIONS(3286), + [anon_sym__Generic] = ACTIONS(3286), + [anon_sym_asm] = ACTIONS(3286), + [anon_sym___asm__] = ACTIONS(3286), + [sym_number_literal] = ACTIONS(3288), + [anon_sym_L_SQUOTE] = ACTIONS(3288), + [anon_sym_u_SQUOTE] = ACTIONS(3288), + [anon_sym_U_SQUOTE] = ACTIONS(3288), + [anon_sym_u8_SQUOTE] = ACTIONS(3288), + [anon_sym_SQUOTE] = ACTIONS(3288), + [anon_sym_L_DQUOTE] = ACTIONS(3288), + [anon_sym_u_DQUOTE] = ACTIONS(3288), + [anon_sym_U_DQUOTE] = ACTIONS(3288), + [anon_sym_u8_DQUOTE] = ACTIONS(3288), + [anon_sym_DQUOTE] = ACTIONS(3288), + [sym_true] = ACTIONS(3286), + [sym_false] = ACTIONS(3286), + [anon_sym_NULL] = ACTIONS(3286), + [anon_sym_nullptr] = ACTIONS(3286), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3286), + [anon_sym_decltype] = ACTIONS(3286), + [anon_sym_virtual] = ACTIONS(3286), + [anon_sym_explicit] = ACTIONS(3286), + [anon_sym_typename] = ACTIONS(3286), + [anon_sym_template] = ACTIONS(3286), + [anon_sym_operator] = ACTIONS(3286), + [anon_sym_try] = ACTIONS(3286), + [anon_sym_delete] = ACTIONS(3286), + [anon_sym_throw] = ACTIONS(3286), + [anon_sym_namespace] = ACTIONS(3286), + [anon_sym_using] = ACTIONS(3286), + [anon_sym_static_assert] = ACTIONS(3286), + [anon_sym_concept] = ACTIONS(3286), + [anon_sym_co_return] = ACTIONS(3286), + [anon_sym_co_yield] = ACTIONS(3286), + [anon_sym_R_DQUOTE] = ACTIONS(3288), + [anon_sym_LR_DQUOTE] = ACTIONS(3288), + [anon_sym_uR_DQUOTE] = ACTIONS(3288), + [anon_sym_UR_DQUOTE] = ACTIONS(3288), + [anon_sym_u8R_DQUOTE] = ACTIONS(3288), + [anon_sym_co_await] = ACTIONS(3286), + [anon_sym_new] = ACTIONS(3286), + [anon_sym_requires] = ACTIONS(3286), + [sym_this] = ACTIONS(3286), }, - [580] = { - [sym_identifier] = ACTIONS(2614), - [aux_sym_preproc_include_token1] = ACTIONS(2614), - [aux_sym_preproc_def_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token2] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2614), - [sym_preproc_directive] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP_AMP] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2614), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym___based] = ACTIONS(2614), - [anon_sym___cdecl] = ACTIONS(2614), - [anon_sym___clrcall] = ACTIONS(2614), - [anon_sym___stdcall] = ACTIONS(2614), - [anon_sym___fastcall] = ACTIONS(2614), - [anon_sym___thiscall] = ACTIONS(2614), - [anon_sym___vectorcall] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_case] = ACTIONS(2614), - [anon_sym_default] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_explicit] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_operator] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_namespace] = ACTIONS(2614), - [anon_sym_using] = ACTIONS(2614), - [anon_sym_static_assert] = ACTIONS(2614), - [anon_sym_concept] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), + [551] = { + [sym_identifier] = ACTIONS(3290), + [aux_sym_preproc_include_token1] = ACTIONS(3290), + [aux_sym_preproc_def_token1] = ACTIONS(3290), + [aux_sym_preproc_if_token1] = ACTIONS(3290), + [aux_sym_preproc_if_token2] = ACTIONS(3290), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3290), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3290), + [aux_sym_preproc_else_token1] = ACTIONS(3290), + [aux_sym_preproc_elif_token1] = ACTIONS(3290), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3290), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3290), + [sym_preproc_directive] = ACTIONS(3290), + [anon_sym_LPAREN2] = ACTIONS(3292), + [anon_sym_BANG] = ACTIONS(3292), + [anon_sym_TILDE] = ACTIONS(3292), + [anon_sym_DASH] = ACTIONS(3290), + [anon_sym_PLUS] = ACTIONS(3290), + [anon_sym_STAR] = ACTIONS(3292), + [anon_sym_AMP_AMP] = ACTIONS(3292), + [anon_sym_AMP] = ACTIONS(3290), + [anon_sym_SEMI] = ACTIONS(3292), + [anon_sym_typedef] = ACTIONS(3290), + [anon_sym_extern] = ACTIONS(3290), + [anon_sym___attribute__] = ACTIONS(3290), + [anon_sym_COLON_COLON] = ACTIONS(3292), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3292), + [anon_sym___declspec] = ACTIONS(3290), + [anon_sym___based] = ACTIONS(3290), + [anon_sym___cdecl] = ACTIONS(3290), + [anon_sym___clrcall] = ACTIONS(3290), + [anon_sym___stdcall] = ACTIONS(3290), + [anon_sym___fastcall] = ACTIONS(3290), + [anon_sym___thiscall] = ACTIONS(3290), + [anon_sym___vectorcall] = ACTIONS(3290), + [anon_sym_LBRACE] = ACTIONS(3292), + [anon_sym_LBRACK] = ACTIONS(3290), + [anon_sym_static] = ACTIONS(3290), + [anon_sym_register] = ACTIONS(3290), + [anon_sym_inline] = ACTIONS(3290), + [anon_sym_thread_local] = ACTIONS(3290), + [anon_sym_const] = ACTIONS(3290), + [anon_sym_constexpr] = ACTIONS(3290), + [anon_sym_volatile] = ACTIONS(3290), + [anon_sym_restrict] = ACTIONS(3290), + [anon_sym___restrict__] = ACTIONS(3290), + [anon_sym__Atomic] = ACTIONS(3290), + [anon_sym__Noreturn] = ACTIONS(3290), + [anon_sym_noreturn] = ACTIONS(3290), + [anon_sym_mutable] = ACTIONS(3290), + [anon_sym_constinit] = ACTIONS(3290), + [anon_sym_consteval] = ACTIONS(3290), + [anon_sym_signed] = ACTIONS(3290), + [anon_sym_unsigned] = ACTIONS(3290), + [anon_sym_long] = ACTIONS(3290), + [anon_sym_short] = ACTIONS(3290), + [sym_primitive_type] = ACTIONS(3290), + [anon_sym_enum] = ACTIONS(3290), + [anon_sym_class] = ACTIONS(3290), + [anon_sym_struct] = ACTIONS(3290), + [anon_sym_union] = ACTIONS(3290), + [anon_sym_if] = ACTIONS(3290), + [anon_sym_switch] = ACTIONS(3290), + [anon_sym_case] = ACTIONS(3290), + [anon_sym_default] = ACTIONS(3290), + [anon_sym_while] = ACTIONS(3290), + [anon_sym_do] = ACTIONS(3290), + [anon_sym_for] = ACTIONS(3290), + [anon_sym_return] = ACTIONS(3290), + [anon_sym_break] = ACTIONS(3290), + [anon_sym_continue] = ACTIONS(3290), + [anon_sym_goto] = ACTIONS(3290), + [anon_sym_not] = ACTIONS(3290), + [anon_sym_compl] = ACTIONS(3290), + [anon_sym_DASH_DASH] = ACTIONS(3292), + [anon_sym_PLUS_PLUS] = ACTIONS(3292), + [anon_sym_sizeof] = ACTIONS(3290), + [anon_sym_offsetof] = ACTIONS(3290), + [anon_sym__Generic] = ACTIONS(3290), + [anon_sym_asm] = ACTIONS(3290), + [anon_sym___asm__] = ACTIONS(3290), + [sym_number_literal] = ACTIONS(3292), + [anon_sym_L_SQUOTE] = ACTIONS(3292), + [anon_sym_u_SQUOTE] = ACTIONS(3292), + [anon_sym_U_SQUOTE] = ACTIONS(3292), + [anon_sym_u8_SQUOTE] = ACTIONS(3292), + [anon_sym_SQUOTE] = ACTIONS(3292), + [anon_sym_L_DQUOTE] = ACTIONS(3292), + [anon_sym_u_DQUOTE] = ACTIONS(3292), + [anon_sym_U_DQUOTE] = ACTIONS(3292), + [anon_sym_u8_DQUOTE] = ACTIONS(3292), + [anon_sym_DQUOTE] = ACTIONS(3292), + [sym_true] = ACTIONS(3290), + [sym_false] = ACTIONS(3290), + [anon_sym_NULL] = ACTIONS(3290), + [anon_sym_nullptr] = ACTIONS(3290), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3290), + [anon_sym_decltype] = ACTIONS(3290), + [anon_sym_virtual] = ACTIONS(3290), + [anon_sym_explicit] = ACTIONS(3290), + [anon_sym_typename] = ACTIONS(3290), + [anon_sym_template] = ACTIONS(3290), + [anon_sym_operator] = ACTIONS(3290), + [anon_sym_try] = ACTIONS(3290), + [anon_sym_delete] = ACTIONS(3290), + [anon_sym_throw] = ACTIONS(3290), + [anon_sym_namespace] = ACTIONS(3290), + [anon_sym_using] = ACTIONS(3290), + [anon_sym_static_assert] = ACTIONS(3290), + [anon_sym_concept] = ACTIONS(3290), + [anon_sym_co_return] = ACTIONS(3290), + [anon_sym_co_yield] = ACTIONS(3290), + [anon_sym_R_DQUOTE] = ACTIONS(3292), + [anon_sym_LR_DQUOTE] = ACTIONS(3292), + [anon_sym_uR_DQUOTE] = ACTIONS(3292), + [anon_sym_UR_DQUOTE] = ACTIONS(3292), + [anon_sym_u8R_DQUOTE] = ACTIONS(3292), + [anon_sym_co_await] = ACTIONS(3290), + [anon_sym_new] = ACTIONS(3290), + [anon_sym_requires] = ACTIONS(3290), + [sym_this] = ACTIONS(3290), }, - [581] = { - [ts_builtin_sym_end] = ACTIONS(2608), - [sym_identifier] = ACTIONS(2606), - [aux_sym_preproc_include_token1] = 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(2608), - [anon_sym_BANG] = ACTIONS(2608), - [anon_sym_TILDE] = ACTIONS(2608), - [anon_sym_DASH] = ACTIONS(2606), - [anon_sym_PLUS] = ACTIONS(2606), - [anon_sym_STAR] = ACTIONS(2608), - [anon_sym_AMP_AMP] = ACTIONS(2608), - [anon_sym_AMP] = ACTIONS(2606), - [anon_sym_SEMI] = ACTIONS(2608), - [anon_sym_typedef] = ACTIONS(2606), - [anon_sym_extern] = ACTIONS(2606), - [anon_sym___attribute__] = ACTIONS(2606), - [anon_sym_COLON_COLON] = ACTIONS(2608), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2608), - [anon_sym___declspec] = ACTIONS(2606), - [anon_sym___based] = 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(2608), - [anon_sym_LBRACK] = ACTIONS(2606), - [anon_sym_static] = ACTIONS(2606), - [anon_sym_register] = ACTIONS(2606), - [anon_sym_inline] = ACTIONS(2606), - [anon_sym_thread_local] = ACTIONS(2606), - [anon_sym_const] = ACTIONS(2606), - [anon_sym_volatile] = ACTIONS(2606), - [anon_sym_restrict] = ACTIONS(2606), - [anon_sym__Atomic] = ACTIONS(2606), - [anon_sym_mutable] = ACTIONS(2606), - [anon_sym_constexpr] = ACTIONS(2606), - [anon_sym_constinit] = ACTIONS(2606), - [anon_sym_consteval] = ACTIONS(2606), - [anon_sym_signed] = ACTIONS(2606), - [anon_sym_unsigned] = ACTIONS(2606), - [anon_sym_long] = ACTIONS(2606), - [anon_sym_short] = ACTIONS(2606), - [sym_primitive_type] = ACTIONS(2606), - [anon_sym_enum] = ACTIONS(2606), - [anon_sym_class] = ACTIONS(2606), - [anon_sym_struct] = ACTIONS(2606), - [anon_sym_union] = ACTIONS(2606), - [anon_sym_if] = ACTIONS(2606), - [anon_sym_else] = 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_return] = ACTIONS(2606), - [anon_sym_break] = ACTIONS(2606), - [anon_sym_continue] = ACTIONS(2606), - [anon_sym_goto] = ACTIONS(2606), - [anon_sym_not] = ACTIONS(2606), - [anon_sym_compl] = ACTIONS(2606), - [anon_sym_DASH_DASH] = ACTIONS(2608), - [anon_sym_PLUS_PLUS] = ACTIONS(2608), - [anon_sym_sizeof] = ACTIONS(2606), - [sym_number_literal] = ACTIONS(2608), - [anon_sym_L_SQUOTE] = ACTIONS(2608), - [anon_sym_u_SQUOTE] = ACTIONS(2608), - [anon_sym_U_SQUOTE] = ACTIONS(2608), - [anon_sym_u8_SQUOTE] = ACTIONS(2608), - [anon_sym_SQUOTE] = ACTIONS(2608), - [anon_sym_L_DQUOTE] = ACTIONS(2608), - [anon_sym_u_DQUOTE] = ACTIONS(2608), - [anon_sym_U_DQUOTE] = ACTIONS(2608), - [anon_sym_u8_DQUOTE] = ACTIONS(2608), - [anon_sym_DQUOTE] = ACTIONS(2608), - [sym_true] = ACTIONS(2606), - [sym_false] = ACTIONS(2606), - [sym_null] = ACTIONS(2606), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2606), - [anon_sym_decltype] = ACTIONS(2606), - [anon_sym_virtual] = ACTIONS(2606), - [anon_sym_explicit] = ACTIONS(2606), - [anon_sym_typename] = ACTIONS(2606), - [anon_sym_template] = ACTIONS(2606), - [anon_sym_operator] = ACTIONS(2606), - [anon_sym_try] = ACTIONS(2606), - [anon_sym_delete] = ACTIONS(2606), - [anon_sym_throw] = ACTIONS(2606), - [anon_sym_namespace] = ACTIONS(2606), - [anon_sym_using] = ACTIONS(2606), - [anon_sym_static_assert] = ACTIONS(2606), - [anon_sym_concept] = ACTIONS(2606), - [anon_sym_co_return] = ACTIONS(2606), - [anon_sym_co_yield] = ACTIONS(2606), - [anon_sym_R_DQUOTE] = ACTIONS(2608), - [anon_sym_LR_DQUOTE] = ACTIONS(2608), - [anon_sym_uR_DQUOTE] = ACTIONS(2608), - [anon_sym_UR_DQUOTE] = ACTIONS(2608), - [anon_sym_u8R_DQUOTE] = ACTIONS(2608), - [anon_sym_co_await] = ACTIONS(2606), - [anon_sym_new] = ACTIONS(2606), - [anon_sym_requires] = ACTIONS(2606), - [sym_this] = ACTIONS(2606), - [sym_nullptr] = ACTIONS(2606), + [552] = { + [sym__expression] = STATE(4280), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7451), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3129), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(3294), + [anon_sym_extern] = ACTIONS(2966), + [anon_sym___attribute__] = ACTIONS(2966), + [anon_sym_COLON_COLON] = ACTIONS(3134), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2968), + [anon_sym___declspec] = ACTIONS(2966), + [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_static] = ACTIONS(2966), + [anon_sym_register] = ACTIONS(2966), + [anon_sym_inline] = ACTIONS(2966), + [anon_sym_thread_local] = 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_noreturn] = ACTIONS(2966), + [anon_sym_mutable] = ACTIONS(2966), + [anon_sym_constinit] = ACTIONS(2966), + [anon_sym_consteval] = ACTIONS(2966), + [anon_sym_signed] = ACTIONS(2966), + [anon_sym_unsigned] = ACTIONS(2966), + [anon_sym_long] = ACTIONS(2966), + [anon_sym_short] = ACTIONS(2966), + [sym_primitive_type] = ACTIONS(3137), + [anon_sym_enum] = ACTIONS(2966), + [anon_sym_class] = ACTIONS(2966), + [anon_sym_struct] = ACTIONS(2966), + [anon_sym_union] = ACTIONS(2966), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2966), + [anon_sym_decltype] = ACTIONS(3140), + [anon_sym_virtual] = ACTIONS(2966), + [anon_sym_typename] = ACTIONS(2966), + [anon_sym_template] = ACTIONS(3143), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, - [582] = { - [ts_builtin_sym_end] = ACTIONS(2612), - [sym_identifier] = ACTIONS(2610), - [aux_sym_preproc_include_token1] = ACTIONS(2610), - [aux_sym_preproc_def_token1] = ACTIONS(2610), - [aux_sym_preproc_if_token1] = ACTIONS(2610), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2610), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2610), - [sym_preproc_directive] = ACTIONS(2610), - [anon_sym_LPAREN2] = ACTIONS(2612), - [anon_sym_BANG] = ACTIONS(2612), - [anon_sym_TILDE] = ACTIONS(2612), - [anon_sym_DASH] = ACTIONS(2610), - [anon_sym_PLUS] = ACTIONS(2610), - [anon_sym_STAR] = ACTIONS(2612), - [anon_sym_AMP_AMP] = ACTIONS(2612), - [anon_sym_AMP] = ACTIONS(2610), - [anon_sym_SEMI] = ACTIONS(2612), - [anon_sym_typedef] = ACTIONS(2610), - [anon_sym_extern] = ACTIONS(2610), - [anon_sym___attribute__] = ACTIONS(2610), - [anon_sym_COLON_COLON] = ACTIONS(2612), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2612), - [anon_sym___declspec] = ACTIONS(2610), - [anon_sym___based] = ACTIONS(2610), - [anon_sym___cdecl] = ACTIONS(2610), - [anon_sym___clrcall] = ACTIONS(2610), - [anon_sym___stdcall] = ACTIONS(2610), - [anon_sym___fastcall] = ACTIONS(2610), - [anon_sym___thiscall] = ACTIONS(2610), - [anon_sym___vectorcall] = ACTIONS(2610), - [anon_sym_LBRACE] = ACTIONS(2612), - [anon_sym_LBRACK] = ACTIONS(2610), - [anon_sym_static] = ACTIONS(2610), - [anon_sym_register] = ACTIONS(2610), - [anon_sym_inline] = ACTIONS(2610), - [anon_sym_thread_local] = ACTIONS(2610), - [anon_sym_const] = ACTIONS(2610), - [anon_sym_volatile] = ACTIONS(2610), - [anon_sym_restrict] = ACTIONS(2610), - [anon_sym__Atomic] = ACTIONS(2610), - [anon_sym_mutable] = ACTIONS(2610), - [anon_sym_constexpr] = ACTIONS(2610), - [anon_sym_constinit] = ACTIONS(2610), - [anon_sym_consteval] = ACTIONS(2610), - [anon_sym_signed] = ACTIONS(2610), - [anon_sym_unsigned] = ACTIONS(2610), - [anon_sym_long] = ACTIONS(2610), - [anon_sym_short] = ACTIONS(2610), - [sym_primitive_type] = ACTIONS(2610), - [anon_sym_enum] = ACTIONS(2610), - [anon_sym_class] = ACTIONS(2610), - [anon_sym_struct] = ACTIONS(2610), - [anon_sym_union] = ACTIONS(2610), - [anon_sym_if] = ACTIONS(2610), - [anon_sym_else] = ACTIONS(2610), - [anon_sym_switch] = ACTIONS(2610), - [anon_sym_case] = ACTIONS(2610), - [anon_sym_default] = ACTIONS(2610), - [anon_sym_while] = ACTIONS(2610), - [anon_sym_do] = ACTIONS(2610), - [anon_sym_for] = ACTIONS(2610), - [anon_sym_return] = ACTIONS(2610), - [anon_sym_break] = ACTIONS(2610), - [anon_sym_continue] = ACTIONS(2610), - [anon_sym_goto] = ACTIONS(2610), - [anon_sym_not] = ACTIONS(2610), - [anon_sym_compl] = ACTIONS(2610), - [anon_sym_DASH_DASH] = ACTIONS(2612), - [anon_sym_PLUS_PLUS] = ACTIONS(2612), - [anon_sym_sizeof] = ACTIONS(2610), - [sym_number_literal] = ACTIONS(2612), - [anon_sym_L_SQUOTE] = ACTIONS(2612), - [anon_sym_u_SQUOTE] = ACTIONS(2612), - [anon_sym_U_SQUOTE] = ACTIONS(2612), - [anon_sym_u8_SQUOTE] = ACTIONS(2612), - [anon_sym_SQUOTE] = ACTIONS(2612), - [anon_sym_L_DQUOTE] = ACTIONS(2612), - [anon_sym_u_DQUOTE] = ACTIONS(2612), - [anon_sym_U_DQUOTE] = ACTIONS(2612), - [anon_sym_u8_DQUOTE] = ACTIONS(2612), - [anon_sym_DQUOTE] = ACTIONS(2612), - [sym_true] = ACTIONS(2610), - [sym_false] = ACTIONS(2610), - [sym_null] = ACTIONS(2610), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2610), - [anon_sym_decltype] = ACTIONS(2610), - [anon_sym_virtual] = ACTIONS(2610), - [anon_sym_explicit] = ACTIONS(2610), - [anon_sym_typename] = ACTIONS(2610), - [anon_sym_template] = ACTIONS(2610), - [anon_sym_operator] = ACTIONS(2610), - [anon_sym_try] = ACTIONS(2610), - [anon_sym_delete] = ACTIONS(2610), - [anon_sym_throw] = ACTIONS(2610), - [anon_sym_namespace] = ACTIONS(2610), - [anon_sym_using] = ACTIONS(2610), - [anon_sym_static_assert] = ACTIONS(2610), - [anon_sym_concept] = ACTIONS(2610), - [anon_sym_co_return] = ACTIONS(2610), - [anon_sym_co_yield] = ACTIONS(2610), - [anon_sym_R_DQUOTE] = ACTIONS(2612), - [anon_sym_LR_DQUOTE] = ACTIONS(2612), - [anon_sym_uR_DQUOTE] = ACTIONS(2612), - [anon_sym_UR_DQUOTE] = ACTIONS(2612), - [anon_sym_u8R_DQUOTE] = ACTIONS(2612), - [anon_sym_co_await] = ACTIONS(2610), - [anon_sym_new] = ACTIONS(2610), - [anon_sym_requires] = ACTIONS(2610), - [sym_this] = ACTIONS(2610), - [sym_nullptr] = ACTIONS(2610), + [553] = { + [sym__expression] = STATE(4222), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7424), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3209), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(3296), + [anon_sym_extern] = ACTIONS(2962), + [anon_sym___attribute__] = ACTIONS(2962), + [anon_sym_COLON_COLON] = ACTIONS(3214), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2964), + [anon_sym___declspec] = ACTIONS(2962), + [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_static] = ACTIONS(2962), + [anon_sym_register] = ACTIONS(2962), + [anon_sym_inline] = ACTIONS(2962), + [anon_sym_thread_local] = ACTIONS(2962), + [anon_sym_const] = ACTIONS(2962), + [anon_sym_constexpr] = ACTIONS(2962), + [anon_sym_volatile] = ACTIONS(2962), + [anon_sym_restrict] = ACTIONS(2962), + [anon_sym___restrict__] = ACTIONS(2962), + [anon_sym__Atomic] = ACTIONS(2962), + [anon_sym__Noreturn] = ACTIONS(2962), + [anon_sym_noreturn] = ACTIONS(2962), + [anon_sym_mutable] = ACTIONS(2962), + [anon_sym_constinit] = ACTIONS(2962), + [anon_sym_consteval] = ACTIONS(2962), + [anon_sym_signed] = ACTIONS(2962), + [anon_sym_unsigned] = ACTIONS(2962), + [anon_sym_long] = ACTIONS(2962), + [anon_sym_short] = ACTIONS(2962), + [sym_primitive_type] = ACTIONS(3217), + [anon_sym_enum] = ACTIONS(2962), + [anon_sym_class] = ACTIONS(2962), + [anon_sym_struct] = ACTIONS(2962), + [anon_sym_union] = ACTIONS(2962), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2962), + [anon_sym_decltype] = ACTIONS(3220), + [anon_sym_virtual] = ACTIONS(2962), + [anon_sym_typename] = ACTIONS(2962), + [anon_sym_template] = ACTIONS(3223), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, - [583] = { - [sym_identifier] = ACTIONS(2646), - [aux_sym_preproc_include_token1] = ACTIONS(2646), - [aux_sym_preproc_def_token1] = ACTIONS(2646), - [aux_sym_preproc_if_token1] = ACTIONS(2646), - [aux_sym_preproc_if_token2] = ACTIONS(2646), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2646), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2646), - [sym_preproc_directive] = ACTIONS(2646), - [anon_sym_LPAREN2] = ACTIONS(2648), - [anon_sym_BANG] = ACTIONS(2648), - [anon_sym_TILDE] = ACTIONS(2648), - [anon_sym_DASH] = ACTIONS(2646), - [anon_sym_PLUS] = ACTIONS(2646), - [anon_sym_STAR] = ACTIONS(2648), - [anon_sym_AMP_AMP] = ACTIONS(2648), - [anon_sym_AMP] = ACTIONS(2646), - [anon_sym_SEMI] = ACTIONS(2648), - [anon_sym_typedef] = ACTIONS(2646), - [anon_sym_extern] = ACTIONS(2646), - [anon_sym___attribute__] = ACTIONS(2646), - [anon_sym_COLON_COLON] = ACTIONS(2648), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2648), - [anon_sym___declspec] = ACTIONS(2646), - [anon_sym___based] = ACTIONS(2646), - [anon_sym___cdecl] = ACTIONS(2646), - [anon_sym___clrcall] = ACTIONS(2646), - [anon_sym___stdcall] = ACTIONS(2646), - [anon_sym___fastcall] = ACTIONS(2646), - [anon_sym___thiscall] = ACTIONS(2646), - [anon_sym___vectorcall] = ACTIONS(2646), - [anon_sym_LBRACE] = ACTIONS(2648), - [anon_sym_LBRACK] = ACTIONS(2646), - [anon_sym_static] = ACTIONS(2646), - [anon_sym_register] = ACTIONS(2646), - [anon_sym_inline] = ACTIONS(2646), - [anon_sym_thread_local] = ACTIONS(2646), - [anon_sym_const] = ACTIONS(2646), - [anon_sym_volatile] = ACTIONS(2646), - [anon_sym_restrict] = ACTIONS(2646), - [anon_sym__Atomic] = ACTIONS(2646), - [anon_sym_mutable] = ACTIONS(2646), - [anon_sym_constexpr] = ACTIONS(2646), - [anon_sym_constinit] = ACTIONS(2646), - [anon_sym_consteval] = ACTIONS(2646), - [anon_sym_signed] = ACTIONS(2646), - [anon_sym_unsigned] = ACTIONS(2646), - [anon_sym_long] = ACTIONS(2646), - [anon_sym_short] = ACTIONS(2646), - [sym_primitive_type] = ACTIONS(2646), - [anon_sym_enum] = ACTIONS(2646), - [anon_sym_class] = ACTIONS(2646), - [anon_sym_struct] = ACTIONS(2646), - [anon_sym_union] = ACTIONS(2646), - [anon_sym_if] = ACTIONS(2646), - [anon_sym_else] = ACTIONS(2916), - [anon_sym_switch] = ACTIONS(2646), - [anon_sym_case] = ACTIONS(2646), - [anon_sym_default] = ACTIONS(2646), - [anon_sym_while] = ACTIONS(2646), - [anon_sym_do] = ACTIONS(2646), - [anon_sym_for] = ACTIONS(2646), - [anon_sym_return] = ACTIONS(2646), - [anon_sym_break] = ACTIONS(2646), - [anon_sym_continue] = ACTIONS(2646), - [anon_sym_goto] = ACTIONS(2646), - [anon_sym_not] = ACTIONS(2646), - [anon_sym_compl] = ACTIONS(2646), - [anon_sym_DASH_DASH] = ACTIONS(2648), - [anon_sym_PLUS_PLUS] = ACTIONS(2648), - [anon_sym_sizeof] = ACTIONS(2646), - [sym_number_literal] = ACTIONS(2648), - [anon_sym_L_SQUOTE] = ACTIONS(2648), - [anon_sym_u_SQUOTE] = ACTIONS(2648), - [anon_sym_U_SQUOTE] = ACTIONS(2648), - [anon_sym_u8_SQUOTE] = ACTIONS(2648), - [anon_sym_SQUOTE] = ACTIONS(2648), - [anon_sym_L_DQUOTE] = ACTIONS(2648), - [anon_sym_u_DQUOTE] = ACTIONS(2648), - [anon_sym_U_DQUOTE] = ACTIONS(2648), - [anon_sym_u8_DQUOTE] = ACTIONS(2648), - [anon_sym_DQUOTE] = ACTIONS(2648), - [sym_true] = ACTIONS(2646), - [sym_false] = ACTIONS(2646), - [sym_null] = ACTIONS(2646), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2646), - [anon_sym_decltype] = ACTIONS(2646), - [anon_sym_virtual] = ACTIONS(2646), - [anon_sym_explicit] = ACTIONS(2646), - [anon_sym_typename] = ACTIONS(2646), - [anon_sym_template] = ACTIONS(2646), - [anon_sym_operator] = ACTIONS(2646), - [anon_sym_try] = ACTIONS(2646), - [anon_sym_delete] = ACTIONS(2646), - [anon_sym_throw] = ACTIONS(2646), - [anon_sym_namespace] = ACTIONS(2646), - [anon_sym_using] = ACTIONS(2646), - [anon_sym_static_assert] = ACTIONS(2646), - [anon_sym_concept] = ACTIONS(2646), - [anon_sym_co_return] = ACTIONS(2646), - [anon_sym_co_yield] = ACTIONS(2646), - [anon_sym_R_DQUOTE] = ACTIONS(2648), - [anon_sym_LR_DQUOTE] = ACTIONS(2648), - [anon_sym_uR_DQUOTE] = ACTIONS(2648), - [anon_sym_UR_DQUOTE] = ACTIONS(2648), - [anon_sym_u8R_DQUOTE] = ACTIONS(2648), - [anon_sym_co_await] = ACTIONS(2646), - [anon_sym_new] = ACTIONS(2646), - [anon_sym_requires] = ACTIONS(2646), - [sym_this] = ACTIONS(2646), - [sym_nullptr] = ACTIONS(2646), + [554] = { + [sym__expression] = STATE(4211), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7485), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3209), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(3298), + [anon_sym_extern] = ACTIONS(2962), + [anon_sym___attribute__] = ACTIONS(2962), + [anon_sym_COLON_COLON] = ACTIONS(3214), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2964), + [anon_sym___declspec] = ACTIONS(2962), + [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_static] = ACTIONS(2962), + [anon_sym_register] = ACTIONS(2962), + [anon_sym_inline] = ACTIONS(2962), + [anon_sym_thread_local] = ACTIONS(2962), + [anon_sym_const] = ACTIONS(2962), + [anon_sym_constexpr] = ACTIONS(2962), + [anon_sym_volatile] = ACTIONS(2962), + [anon_sym_restrict] = ACTIONS(2962), + [anon_sym___restrict__] = ACTIONS(2962), + [anon_sym__Atomic] = ACTIONS(2962), + [anon_sym__Noreturn] = ACTIONS(2962), + [anon_sym_noreturn] = ACTIONS(2962), + [anon_sym_mutable] = ACTIONS(2962), + [anon_sym_constinit] = ACTIONS(2962), + [anon_sym_consteval] = ACTIONS(2962), + [anon_sym_signed] = ACTIONS(2962), + [anon_sym_unsigned] = ACTIONS(2962), + [anon_sym_long] = ACTIONS(2962), + [anon_sym_short] = ACTIONS(2962), + [sym_primitive_type] = ACTIONS(3217), + [anon_sym_enum] = ACTIONS(2962), + [anon_sym_class] = ACTIONS(2962), + [anon_sym_struct] = ACTIONS(2962), + [anon_sym_union] = ACTIONS(2962), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2962), + [anon_sym_decltype] = ACTIONS(3220), + [anon_sym_virtual] = ACTIONS(2962), + [anon_sym_typename] = ACTIONS(2962), + [anon_sym_template] = ACTIONS(3223), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, - [584] = { - [sym_identifier] = ACTIONS(2634), - [aux_sym_preproc_include_token1] = ACTIONS(2634), - [aux_sym_preproc_def_token1] = ACTIONS(2634), - [aux_sym_preproc_if_token1] = ACTIONS(2634), - [aux_sym_preproc_if_token2] = ACTIONS(2634), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2634), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2634), - [sym_preproc_directive] = ACTIONS(2634), - [anon_sym_LPAREN2] = ACTIONS(2636), - [anon_sym_BANG] = ACTIONS(2636), - [anon_sym_TILDE] = ACTIONS(2636), - [anon_sym_DASH] = ACTIONS(2634), - [anon_sym_PLUS] = ACTIONS(2634), - [anon_sym_STAR] = ACTIONS(2636), - [anon_sym_AMP_AMP] = ACTIONS(2636), - [anon_sym_AMP] = ACTIONS(2634), - [anon_sym_SEMI] = ACTIONS(2636), - [anon_sym_typedef] = ACTIONS(2634), - [anon_sym_extern] = ACTIONS(2634), - [anon_sym___attribute__] = ACTIONS(2634), - [anon_sym_COLON_COLON] = ACTIONS(2636), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2636), - [anon_sym___declspec] = ACTIONS(2634), - [anon_sym___based] = ACTIONS(2634), - [anon_sym___cdecl] = ACTIONS(2634), - [anon_sym___clrcall] = ACTIONS(2634), - [anon_sym___stdcall] = ACTIONS(2634), - [anon_sym___fastcall] = ACTIONS(2634), - [anon_sym___thiscall] = ACTIONS(2634), - [anon_sym___vectorcall] = ACTIONS(2634), - [anon_sym_LBRACE] = ACTIONS(2636), - [anon_sym_LBRACK] = ACTIONS(2634), - [anon_sym_static] = ACTIONS(2634), - [anon_sym_register] = ACTIONS(2634), - [anon_sym_inline] = ACTIONS(2634), - [anon_sym_thread_local] = ACTIONS(2634), - [anon_sym_const] = ACTIONS(2634), - [anon_sym_volatile] = ACTIONS(2634), - [anon_sym_restrict] = ACTIONS(2634), - [anon_sym__Atomic] = ACTIONS(2634), - [anon_sym_mutable] = ACTIONS(2634), - [anon_sym_constexpr] = ACTIONS(2634), - [anon_sym_constinit] = ACTIONS(2634), - [anon_sym_consteval] = ACTIONS(2634), - [anon_sym_signed] = ACTIONS(2634), - [anon_sym_unsigned] = ACTIONS(2634), - [anon_sym_long] = ACTIONS(2634), - [anon_sym_short] = ACTIONS(2634), - [sym_primitive_type] = ACTIONS(2634), - [anon_sym_enum] = ACTIONS(2634), - [anon_sym_class] = ACTIONS(2634), - [anon_sym_struct] = ACTIONS(2634), - [anon_sym_union] = ACTIONS(2634), - [anon_sym_if] = ACTIONS(2634), - [anon_sym_else] = ACTIONS(2634), - [anon_sym_switch] = ACTIONS(2634), - [anon_sym_case] = ACTIONS(2634), - [anon_sym_default] = ACTIONS(2634), - [anon_sym_while] = ACTIONS(2634), - [anon_sym_do] = ACTIONS(2634), - [anon_sym_for] = ACTIONS(2634), - [anon_sym_return] = ACTIONS(2634), - [anon_sym_break] = ACTIONS(2634), - [anon_sym_continue] = ACTIONS(2634), - [anon_sym_goto] = ACTIONS(2634), - [anon_sym_not] = ACTIONS(2634), - [anon_sym_compl] = ACTIONS(2634), - [anon_sym_DASH_DASH] = ACTIONS(2636), - [anon_sym_PLUS_PLUS] = ACTIONS(2636), - [anon_sym_sizeof] = ACTIONS(2634), - [sym_number_literal] = ACTIONS(2636), - [anon_sym_L_SQUOTE] = ACTIONS(2636), - [anon_sym_u_SQUOTE] = ACTIONS(2636), - [anon_sym_U_SQUOTE] = ACTIONS(2636), - [anon_sym_u8_SQUOTE] = ACTIONS(2636), - [anon_sym_SQUOTE] = ACTIONS(2636), - [anon_sym_L_DQUOTE] = ACTIONS(2636), - [anon_sym_u_DQUOTE] = ACTIONS(2636), - [anon_sym_U_DQUOTE] = ACTIONS(2636), - [anon_sym_u8_DQUOTE] = ACTIONS(2636), - [anon_sym_DQUOTE] = ACTIONS(2636), - [sym_true] = ACTIONS(2634), - [sym_false] = ACTIONS(2634), - [sym_null] = ACTIONS(2634), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2634), - [anon_sym_decltype] = ACTIONS(2634), - [anon_sym_virtual] = ACTIONS(2634), - [anon_sym_explicit] = ACTIONS(2634), - [anon_sym_typename] = ACTIONS(2634), - [anon_sym_template] = ACTIONS(2634), - [anon_sym_operator] = ACTIONS(2634), - [anon_sym_try] = ACTIONS(2634), - [anon_sym_delete] = ACTIONS(2634), - [anon_sym_throw] = ACTIONS(2634), - [anon_sym_namespace] = ACTIONS(2634), - [anon_sym_using] = ACTIONS(2634), - [anon_sym_static_assert] = ACTIONS(2634), - [anon_sym_concept] = ACTIONS(2634), - [anon_sym_co_return] = ACTIONS(2634), - [anon_sym_co_yield] = ACTIONS(2634), - [anon_sym_R_DQUOTE] = ACTIONS(2636), - [anon_sym_LR_DQUOTE] = ACTIONS(2636), - [anon_sym_uR_DQUOTE] = ACTIONS(2636), - [anon_sym_UR_DQUOTE] = ACTIONS(2636), - [anon_sym_u8R_DQUOTE] = ACTIONS(2636), - [anon_sym_co_await] = ACTIONS(2634), - [anon_sym_new] = ACTIONS(2634), - [anon_sym_requires] = ACTIONS(2634), - [sym_this] = ACTIONS(2634), - [sym_nullptr] = ACTIONS(2634), + [555] = { + [sym__expression] = STATE(4262), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7517), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3184), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(3300), + [anon_sym_extern] = ACTIONS(3189), + [anon_sym___attribute__] = ACTIONS(3189), + [anon_sym_COLON_COLON] = ACTIONS(3191), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3194), + [anon_sym___declspec] = ACTIONS(3189), + [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_static] = ACTIONS(3189), + [anon_sym_register] = ACTIONS(3189), + [anon_sym_inline] = ACTIONS(3189), + [anon_sym_thread_local] = ACTIONS(3189), + [anon_sym_const] = ACTIONS(3189), + [anon_sym_constexpr] = ACTIONS(3189), + [anon_sym_volatile] = ACTIONS(3189), + [anon_sym_restrict] = ACTIONS(3189), + [anon_sym___restrict__] = ACTIONS(3189), + [anon_sym__Atomic] = ACTIONS(3189), + [anon_sym__Noreturn] = ACTIONS(3189), + [anon_sym_noreturn] = ACTIONS(3189), + [anon_sym_mutable] = ACTIONS(3189), + [anon_sym_constinit] = ACTIONS(3189), + [anon_sym_consteval] = ACTIONS(3189), + [anon_sym_signed] = ACTIONS(3189), + [anon_sym_unsigned] = ACTIONS(3189), + [anon_sym_long] = ACTIONS(3189), + [anon_sym_short] = ACTIONS(3189), + [sym_primitive_type] = ACTIONS(3196), + [anon_sym_enum] = ACTIONS(3189), + [anon_sym_class] = ACTIONS(3189), + [anon_sym_struct] = ACTIONS(3189), + [anon_sym_union] = ACTIONS(3189), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3189), + [anon_sym_decltype] = ACTIONS(3199), + [anon_sym_virtual] = ACTIONS(3189), + [anon_sym_typename] = ACTIONS(3189), + [anon_sym_template] = ACTIONS(3202), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, - [585] = { - [ts_builtin_sym_end] = ACTIONS(2616), - [sym_identifier] = ACTIONS(2614), - [aux_sym_preproc_include_token1] = ACTIONS(2614), - [aux_sym_preproc_def_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2614), - [sym_preproc_directive] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP_AMP] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2614), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym___based] = ACTIONS(2614), - [anon_sym___cdecl] = ACTIONS(2614), - [anon_sym___clrcall] = ACTIONS(2614), - [anon_sym___stdcall] = ACTIONS(2614), - [anon_sym___fastcall] = ACTIONS(2614), - [anon_sym___thiscall] = ACTIONS(2614), - [anon_sym___vectorcall] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_case] = ACTIONS(2614), - [anon_sym_default] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_explicit] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_operator] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_namespace] = ACTIONS(2614), - [anon_sym_using] = ACTIONS(2614), - [anon_sym_static_assert] = ACTIONS(2614), - [anon_sym_concept] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), + [556] = { + [sym_catch_clause] = STATE(570), + [aux_sym_constructor_try_statement_repeat1] = STATE(570), + [sym_identifier] = ACTIONS(2709), + [aux_sym_preproc_include_token1] = ACTIONS(2709), + [aux_sym_preproc_def_token1] = ACTIONS(2709), + [aux_sym_preproc_if_token1] = ACTIONS(2709), + [aux_sym_preproc_if_token2] = ACTIONS(2709), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2709), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2709), + [sym_preproc_directive] = ACTIONS(2709), + [anon_sym_LPAREN2] = ACTIONS(2711), + [anon_sym_BANG] = ACTIONS(2711), + [anon_sym_TILDE] = ACTIONS(2711), + [anon_sym_DASH] = ACTIONS(2709), + [anon_sym_PLUS] = ACTIONS(2709), + [anon_sym_STAR] = ACTIONS(2711), + [anon_sym_AMP_AMP] = ACTIONS(2711), + [anon_sym_AMP] = ACTIONS(2709), + [anon_sym_SEMI] = ACTIONS(2711), + [anon_sym_typedef] = ACTIONS(2709), + [anon_sym_extern] = ACTIONS(2709), + [anon_sym___attribute__] = ACTIONS(2709), + [anon_sym_COLON_COLON] = ACTIONS(2711), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2711), + [anon_sym___declspec] = ACTIONS(2709), + [anon_sym___based] = ACTIONS(2709), + [anon_sym___cdecl] = ACTIONS(2709), + [anon_sym___clrcall] = ACTIONS(2709), + [anon_sym___stdcall] = ACTIONS(2709), + [anon_sym___fastcall] = ACTIONS(2709), + [anon_sym___thiscall] = ACTIONS(2709), + [anon_sym___vectorcall] = ACTIONS(2709), + [anon_sym_LBRACE] = ACTIONS(2711), + [anon_sym_LBRACK] = ACTIONS(2709), + [anon_sym_static] = ACTIONS(2709), + [anon_sym_register] = ACTIONS(2709), + [anon_sym_inline] = ACTIONS(2709), + [anon_sym_thread_local] = ACTIONS(2709), + [anon_sym_const] = ACTIONS(2709), + [anon_sym_constexpr] = ACTIONS(2709), + [anon_sym_volatile] = ACTIONS(2709), + [anon_sym_restrict] = ACTIONS(2709), + [anon_sym___restrict__] = ACTIONS(2709), + [anon_sym__Atomic] = ACTIONS(2709), + [anon_sym__Noreturn] = ACTIONS(2709), + [anon_sym_noreturn] = ACTIONS(2709), + [anon_sym_mutable] = ACTIONS(2709), + [anon_sym_constinit] = ACTIONS(2709), + [anon_sym_consteval] = ACTIONS(2709), + [anon_sym_signed] = ACTIONS(2709), + [anon_sym_unsigned] = ACTIONS(2709), + [anon_sym_long] = ACTIONS(2709), + [anon_sym_short] = ACTIONS(2709), + [sym_primitive_type] = ACTIONS(2709), + [anon_sym_enum] = ACTIONS(2709), + [anon_sym_class] = ACTIONS(2709), + [anon_sym_struct] = ACTIONS(2709), + [anon_sym_union] = ACTIONS(2709), + [anon_sym_if] = ACTIONS(2709), + [anon_sym_else] = ACTIONS(2709), + [anon_sym_switch] = ACTIONS(2709), + [anon_sym_case] = ACTIONS(2709), + [anon_sym_default] = ACTIONS(2709), + [anon_sym_while] = ACTIONS(2709), + [anon_sym_do] = ACTIONS(2709), + [anon_sym_for] = ACTIONS(2709), + [anon_sym_return] = ACTIONS(2709), + [anon_sym_break] = ACTIONS(2709), + [anon_sym_continue] = ACTIONS(2709), + [anon_sym_goto] = ACTIONS(2709), + [anon_sym_not] = ACTIONS(2709), + [anon_sym_compl] = ACTIONS(2709), + [anon_sym_DASH_DASH] = ACTIONS(2711), + [anon_sym_PLUS_PLUS] = ACTIONS(2711), + [anon_sym_sizeof] = ACTIONS(2709), + [anon_sym_offsetof] = ACTIONS(2709), + [anon_sym__Generic] = ACTIONS(2709), + [anon_sym_asm] = ACTIONS(2709), + [anon_sym___asm__] = ACTIONS(2709), + [sym_number_literal] = ACTIONS(2711), + [anon_sym_L_SQUOTE] = ACTIONS(2711), + [anon_sym_u_SQUOTE] = ACTIONS(2711), + [anon_sym_U_SQUOTE] = ACTIONS(2711), + [anon_sym_u8_SQUOTE] = ACTIONS(2711), + [anon_sym_SQUOTE] = ACTIONS(2711), + [anon_sym_L_DQUOTE] = ACTIONS(2711), + [anon_sym_u_DQUOTE] = ACTIONS(2711), + [anon_sym_U_DQUOTE] = ACTIONS(2711), + [anon_sym_u8_DQUOTE] = ACTIONS(2711), + [anon_sym_DQUOTE] = ACTIONS(2711), + [sym_true] = ACTIONS(2709), + [sym_false] = ACTIONS(2709), + [anon_sym_NULL] = ACTIONS(2709), + [anon_sym_nullptr] = ACTIONS(2709), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2709), + [anon_sym_decltype] = ACTIONS(2709), + [anon_sym_virtual] = ACTIONS(2709), + [anon_sym_explicit] = ACTIONS(2709), + [anon_sym_typename] = ACTIONS(2709), + [anon_sym_template] = ACTIONS(2709), + [anon_sym_operator] = ACTIONS(2709), + [anon_sym_try] = ACTIONS(2709), + [anon_sym_delete] = ACTIONS(2709), + [anon_sym_throw] = ACTIONS(2709), + [anon_sym_namespace] = ACTIONS(2709), + [anon_sym_using] = ACTIONS(2709), + [anon_sym_static_assert] = ACTIONS(2709), + [anon_sym_concept] = ACTIONS(2709), + [anon_sym_co_return] = ACTIONS(2709), + [anon_sym_co_yield] = ACTIONS(2709), + [anon_sym_catch] = ACTIONS(3302), + [anon_sym_R_DQUOTE] = ACTIONS(2711), + [anon_sym_LR_DQUOTE] = ACTIONS(2711), + [anon_sym_uR_DQUOTE] = ACTIONS(2711), + [anon_sym_UR_DQUOTE] = ACTIONS(2711), + [anon_sym_u8R_DQUOTE] = ACTIONS(2711), + [anon_sym_co_await] = ACTIONS(2709), + [anon_sym_new] = ACTIONS(2709), + [anon_sym_requires] = ACTIONS(2709), + [sym_this] = ACTIONS(2709), + }, + [557] = { + [sym_identifier] = ACTIONS(3304), + [aux_sym_preproc_include_token1] = ACTIONS(3304), + [aux_sym_preproc_def_token1] = ACTIONS(3304), + [aux_sym_preproc_if_token1] = ACTIONS(3304), + [aux_sym_preproc_if_token2] = ACTIONS(3304), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3304), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3304), + [aux_sym_preproc_else_token1] = ACTIONS(3304), + [aux_sym_preproc_elif_token1] = ACTIONS(3304), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3304), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3304), + [sym_preproc_directive] = ACTIONS(3304), + [anon_sym_LPAREN2] = ACTIONS(3306), + [anon_sym_BANG] = ACTIONS(3306), + [anon_sym_TILDE] = ACTIONS(3306), + [anon_sym_DASH] = ACTIONS(3304), + [anon_sym_PLUS] = ACTIONS(3304), + [anon_sym_STAR] = ACTIONS(3306), + [anon_sym_AMP_AMP] = ACTIONS(3306), + [anon_sym_AMP] = ACTIONS(3304), + [anon_sym_SEMI] = ACTIONS(3306), + [anon_sym_typedef] = ACTIONS(3304), + [anon_sym_extern] = ACTIONS(3304), + [anon_sym___attribute__] = ACTIONS(3304), + [anon_sym_COLON_COLON] = ACTIONS(3306), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3306), + [anon_sym___declspec] = ACTIONS(3304), + [anon_sym___based] = ACTIONS(3304), + [anon_sym___cdecl] = ACTIONS(3304), + [anon_sym___clrcall] = ACTIONS(3304), + [anon_sym___stdcall] = ACTIONS(3304), + [anon_sym___fastcall] = ACTIONS(3304), + [anon_sym___thiscall] = ACTIONS(3304), + [anon_sym___vectorcall] = ACTIONS(3304), + [anon_sym_LBRACE] = ACTIONS(3306), + [anon_sym_LBRACK] = ACTIONS(3304), + [anon_sym_static] = ACTIONS(3304), + [anon_sym_register] = ACTIONS(3304), + [anon_sym_inline] = ACTIONS(3304), + [anon_sym_thread_local] = ACTIONS(3304), + [anon_sym_const] = ACTIONS(3304), + [anon_sym_constexpr] = ACTIONS(3304), + [anon_sym_volatile] = ACTIONS(3304), + [anon_sym_restrict] = ACTIONS(3304), + [anon_sym___restrict__] = ACTIONS(3304), + [anon_sym__Atomic] = ACTIONS(3304), + [anon_sym__Noreturn] = ACTIONS(3304), + [anon_sym_noreturn] = ACTIONS(3304), + [anon_sym_mutable] = ACTIONS(3304), + [anon_sym_constinit] = ACTIONS(3304), + [anon_sym_consteval] = ACTIONS(3304), + [anon_sym_signed] = ACTIONS(3304), + [anon_sym_unsigned] = ACTIONS(3304), + [anon_sym_long] = ACTIONS(3304), + [anon_sym_short] = ACTIONS(3304), + [sym_primitive_type] = ACTIONS(3304), + [anon_sym_enum] = ACTIONS(3304), + [anon_sym_class] = ACTIONS(3304), + [anon_sym_struct] = ACTIONS(3304), + [anon_sym_union] = ACTIONS(3304), + [anon_sym_if] = ACTIONS(3304), + [anon_sym_switch] = ACTIONS(3304), + [anon_sym_case] = ACTIONS(3304), + [anon_sym_default] = ACTIONS(3304), + [anon_sym_while] = ACTIONS(3304), + [anon_sym_do] = ACTIONS(3304), + [anon_sym_for] = ACTIONS(3304), + [anon_sym_return] = ACTIONS(3304), + [anon_sym_break] = ACTIONS(3304), + [anon_sym_continue] = ACTIONS(3304), + [anon_sym_goto] = ACTIONS(3304), + [anon_sym_not] = ACTIONS(3304), + [anon_sym_compl] = ACTIONS(3304), + [anon_sym_DASH_DASH] = ACTIONS(3306), + [anon_sym_PLUS_PLUS] = ACTIONS(3306), + [anon_sym_sizeof] = ACTIONS(3304), + [anon_sym_offsetof] = ACTIONS(3304), + [anon_sym__Generic] = ACTIONS(3304), + [anon_sym_asm] = ACTIONS(3304), + [anon_sym___asm__] = ACTIONS(3304), + [sym_number_literal] = ACTIONS(3306), + [anon_sym_L_SQUOTE] = ACTIONS(3306), + [anon_sym_u_SQUOTE] = ACTIONS(3306), + [anon_sym_U_SQUOTE] = ACTIONS(3306), + [anon_sym_u8_SQUOTE] = ACTIONS(3306), + [anon_sym_SQUOTE] = ACTIONS(3306), + [anon_sym_L_DQUOTE] = ACTIONS(3306), + [anon_sym_u_DQUOTE] = ACTIONS(3306), + [anon_sym_U_DQUOTE] = ACTIONS(3306), + [anon_sym_u8_DQUOTE] = ACTIONS(3306), + [anon_sym_DQUOTE] = ACTIONS(3306), + [sym_true] = ACTIONS(3304), + [sym_false] = ACTIONS(3304), + [anon_sym_NULL] = ACTIONS(3304), + [anon_sym_nullptr] = ACTIONS(3304), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3304), + [anon_sym_decltype] = ACTIONS(3304), + [anon_sym_virtual] = ACTIONS(3304), + [anon_sym_explicit] = ACTIONS(3304), + [anon_sym_typename] = ACTIONS(3304), + [anon_sym_template] = ACTIONS(3304), + [anon_sym_operator] = ACTIONS(3304), + [anon_sym_try] = ACTIONS(3304), + [anon_sym_delete] = ACTIONS(3304), + [anon_sym_throw] = ACTIONS(3304), + [anon_sym_namespace] = ACTIONS(3304), + [anon_sym_using] = ACTIONS(3304), + [anon_sym_static_assert] = ACTIONS(3304), + [anon_sym_concept] = ACTIONS(3304), + [anon_sym_co_return] = ACTIONS(3304), + [anon_sym_co_yield] = ACTIONS(3304), + [anon_sym_R_DQUOTE] = ACTIONS(3306), + [anon_sym_LR_DQUOTE] = ACTIONS(3306), + [anon_sym_uR_DQUOTE] = ACTIONS(3306), + [anon_sym_UR_DQUOTE] = ACTIONS(3306), + [anon_sym_u8R_DQUOTE] = ACTIONS(3306), + [anon_sym_co_await] = ACTIONS(3304), + [anon_sym_new] = ACTIONS(3304), + [anon_sym_requires] = ACTIONS(3304), + [sym_this] = ACTIONS(3304), + }, + [558] = { + [sym_identifier] = ACTIONS(3308), + [aux_sym_preproc_include_token1] = ACTIONS(3308), + [aux_sym_preproc_def_token1] = ACTIONS(3308), + [aux_sym_preproc_if_token1] = ACTIONS(3308), + [aux_sym_preproc_if_token2] = ACTIONS(3308), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3308), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3308), + [aux_sym_preproc_else_token1] = ACTIONS(3308), + [aux_sym_preproc_elif_token1] = ACTIONS(3308), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3308), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3308), + [sym_preproc_directive] = ACTIONS(3308), + [anon_sym_LPAREN2] = ACTIONS(3310), + [anon_sym_BANG] = ACTIONS(3310), + [anon_sym_TILDE] = ACTIONS(3310), + [anon_sym_DASH] = ACTIONS(3308), + [anon_sym_PLUS] = ACTIONS(3308), + [anon_sym_STAR] = ACTIONS(3310), + [anon_sym_AMP_AMP] = ACTIONS(3310), + [anon_sym_AMP] = ACTIONS(3308), + [anon_sym_SEMI] = ACTIONS(3310), + [anon_sym_typedef] = ACTIONS(3308), + [anon_sym_extern] = ACTIONS(3308), + [anon_sym___attribute__] = ACTIONS(3308), + [anon_sym_COLON_COLON] = ACTIONS(3310), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3310), + [anon_sym___declspec] = ACTIONS(3308), + [anon_sym___based] = ACTIONS(3308), + [anon_sym___cdecl] = ACTIONS(3308), + [anon_sym___clrcall] = ACTIONS(3308), + [anon_sym___stdcall] = ACTIONS(3308), + [anon_sym___fastcall] = ACTIONS(3308), + [anon_sym___thiscall] = ACTIONS(3308), + [anon_sym___vectorcall] = ACTIONS(3308), + [anon_sym_LBRACE] = ACTIONS(3310), + [anon_sym_LBRACK] = ACTIONS(3308), + [anon_sym_static] = ACTIONS(3308), + [anon_sym_register] = ACTIONS(3308), + [anon_sym_inline] = ACTIONS(3308), + [anon_sym_thread_local] = ACTIONS(3308), + [anon_sym_const] = ACTIONS(3308), + [anon_sym_constexpr] = ACTIONS(3308), + [anon_sym_volatile] = ACTIONS(3308), + [anon_sym_restrict] = ACTIONS(3308), + [anon_sym___restrict__] = ACTIONS(3308), + [anon_sym__Atomic] = ACTIONS(3308), + [anon_sym__Noreturn] = ACTIONS(3308), + [anon_sym_noreturn] = ACTIONS(3308), + [anon_sym_mutable] = ACTIONS(3308), + [anon_sym_constinit] = ACTIONS(3308), + [anon_sym_consteval] = ACTIONS(3308), + [anon_sym_signed] = ACTIONS(3308), + [anon_sym_unsigned] = ACTIONS(3308), + [anon_sym_long] = ACTIONS(3308), + [anon_sym_short] = ACTIONS(3308), + [sym_primitive_type] = ACTIONS(3308), + [anon_sym_enum] = ACTIONS(3308), + [anon_sym_class] = ACTIONS(3308), + [anon_sym_struct] = ACTIONS(3308), + [anon_sym_union] = ACTIONS(3308), + [anon_sym_if] = ACTIONS(3308), + [anon_sym_switch] = ACTIONS(3308), + [anon_sym_case] = ACTIONS(3308), + [anon_sym_default] = ACTIONS(3308), + [anon_sym_while] = ACTIONS(3308), + [anon_sym_do] = ACTIONS(3308), + [anon_sym_for] = ACTIONS(3308), + [anon_sym_return] = ACTIONS(3308), + [anon_sym_break] = ACTIONS(3308), + [anon_sym_continue] = ACTIONS(3308), + [anon_sym_goto] = ACTIONS(3308), + [anon_sym_not] = ACTIONS(3308), + [anon_sym_compl] = ACTIONS(3308), + [anon_sym_DASH_DASH] = ACTIONS(3310), + [anon_sym_PLUS_PLUS] = ACTIONS(3310), + [anon_sym_sizeof] = ACTIONS(3308), + [anon_sym_offsetof] = ACTIONS(3308), + [anon_sym__Generic] = ACTIONS(3308), + [anon_sym_asm] = ACTIONS(3308), + [anon_sym___asm__] = ACTIONS(3308), + [sym_number_literal] = ACTIONS(3310), + [anon_sym_L_SQUOTE] = ACTIONS(3310), + [anon_sym_u_SQUOTE] = ACTIONS(3310), + [anon_sym_U_SQUOTE] = ACTIONS(3310), + [anon_sym_u8_SQUOTE] = ACTIONS(3310), + [anon_sym_SQUOTE] = ACTIONS(3310), + [anon_sym_L_DQUOTE] = ACTIONS(3310), + [anon_sym_u_DQUOTE] = ACTIONS(3310), + [anon_sym_U_DQUOTE] = ACTIONS(3310), + [anon_sym_u8_DQUOTE] = ACTIONS(3310), + [anon_sym_DQUOTE] = ACTIONS(3310), + [sym_true] = ACTIONS(3308), + [sym_false] = ACTIONS(3308), + [anon_sym_NULL] = ACTIONS(3308), + [anon_sym_nullptr] = ACTIONS(3308), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3308), + [anon_sym_decltype] = ACTIONS(3308), + [anon_sym_virtual] = ACTIONS(3308), + [anon_sym_explicit] = ACTIONS(3308), + [anon_sym_typename] = ACTIONS(3308), + [anon_sym_template] = ACTIONS(3308), + [anon_sym_operator] = ACTIONS(3308), + [anon_sym_try] = ACTIONS(3308), + [anon_sym_delete] = ACTIONS(3308), + [anon_sym_throw] = ACTIONS(3308), + [anon_sym_namespace] = ACTIONS(3308), + [anon_sym_using] = ACTIONS(3308), + [anon_sym_static_assert] = ACTIONS(3308), + [anon_sym_concept] = ACTIONS(3308), + [anon_sym_co_return] = ACTIONS(3308), + [anon_sym_co_yield] = ACTIONS(3308), + [anon_sym_R_DQUOTE] = ACTIONS(3310), + [anon_sym_LR_DQUOTE] = ACTIONS(3310), + [anon_sym_uR_DQUOTE] = ACTIONS(3310), + [anon_sym_UR_DQUOTE] = ACTIONS(3310), + [anon_sym_u8R_DQUOTE] = ACTIONS(3310), + [anon_sym_co_await] = ACTIONS(3308), + [anon_sym_new] = ACTIONS(3308), + [anon_sym_requires] = ACTIONS(3308), + [sym_this] = ACTIONS(3308), + }, + [559] = { + [sym_identifier] = ACTIONS(3312), + [aux_sym_preproc_include_token1] = ACTIONS(3312), + [aux_sym_preproc_def_token1] = ACTIONS(3312), + [aux_sym_preproc_if_token1] = ACTIONS(3312), + [aux_sym_preproc_if_token2] = ACTIONS(3312), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3312), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3312), + [aux_sym_preproc_else_token1] = ACTIONS(3312), + [aux_sym_preproc_elif_token1] = ACTIONS(3312), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3312), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3312), + [sym_preproc_directive] = ACTIONS(3312), + [anon_sym_LPAREN2] = ACTIONS(3314), + [anon_sym_BANG] = ACTIONS(3314), + [anon_sym_TILDE] = ACTIONS(3314), + [anon_sym_DASH] = ACTIONS(3312), + [anon_sym_PLUS] = ACTIONS(3312), + [anon_sym_STAR] = ACTIONS(3314), + [anon_sym_AMP_AMP] = ACTIONS(3314), + [anon_sym_AMP] = ACTIONS(3312), + [anon_sym_SEMI] = ACTIONS(3314), + [anon_sym_typedef] = ACTIONS(3312), + [anon_sym_extern] = ACTIONS(3312), + [anon_sym___attribute__] = ACTIONS(3312), + [anon_sym_COLON_COLON] = ACTIONS(3314), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3314), + [anon_sym___declspec] = ACTIONS(3312), + [anon_sym___based] = ACTIONS(3312), + [anon_sym___cdecl] = ACTIONS(3312), + [anon_sym___clrcall] = ACTIONS(3312), + [anon_sym___stdcall] = ACTIONS(3312), + [anon_sym___fastcall] = ACTIONS(3312), + [anon_sym___thiscall] = ACTIONS(3312), + [anon_sym___vectorcall] = ACTIONS(3312), + [anon_sym_LBRACE] = ACTIONS(3314), + [anon_sym_LBRACK] = ACTIONS(3312), + [anon_sym_static] = ACTIONS(3312), + [anon_sym_register] = ACTIONS(3312), + [anon_sym_inline] = ACTIONS(3312), + [anon_sym_thread_local] = ACTIONS(3312), + [anon_sym_const] = ACTIONS(3312), + [anon_sym_constexpr] = ACTIONS(3312), + [anon_sym_volatile] = ACTIONS(3312), + [anon_sym_restrict] = ACTIONS(3312), + [anon_sym___restrict__] = ACTIONS(3312), + [anon_sym__Atomic] = ACTIONS(3312), + [anon_sym__Noreturn] = ACTIONS(3312), + [anon_sym_noreturn] = ACTIONS(3312), + [anon_sym_mutable] = ACTIONS(3312), + [anon_sym_constinit] = ACTIONS(3312), + [anon_sym_consteval] = ACTIONS(3312), + [anon_sym_signed] = ACTIONS(3312), + [anon_sym_unsigned] = ACTIONS(3312), + [anon_sym_long] = ACTIONS(3312), + [anon_sym_short] = ACTIONS(3312), + [sym_primitive_type] = ACTIONS(3312), + [anon_sym_enum] = ACTIONS(3312), + [anon_sym_class] = ACTIONS(3312), + [anon_sym_struct] = ACTIONS(3312), + [anon_sym_union] = ACTIONS(3312), + [anon_sym_if] = ACTIONS(3312), + [anon_sym_switch] = ACTIONS(3312), + [anon_sym_case] = ACTIONS(3312), + [anon_sym_default] = ACTIONS(3312), + [anon_sym_while] = ACTIONS(3312), + [anon_sym_do] = ACTIONS(3312), + [anon_sym_for] = ACTIONS(3312), + [anon_sym_return] = ACTIONS(3312), + [anon_sym_break] = ACTIONS(3312), + [anon_sym_continue] = ACTIONS(3312), + [anon_sym_goto] = ACTIONS(3312), + [anon_sym_not] = ACTIONS(3312), + [anon_sym_compl] = ACTIONS(3312), + [anon_sym_DASH_DASH] = ACTIONS(3314), + [anon_sym_PLUS_PLUS] = ACTIONS(3314), + [anon_sym_sizeof] = ACTIONS(3312), + [anon_sym_offsetof] = ACTIONS(3312), + [anon_sym__Generic] = ACTIONS(3312), + [anon_sym_asm] = ACTIONS(3312), + [anon_sym___asm__] = ACTIONS(3312), + [sym_number_literal] = ACTIONS(3314), + [anon_sym_L_SQUOTE] = ACTIONS(3314), + [anon_sym_u_SQUOTE] = ACTIONS(3314), + [anon_sym_U_SQUOTE] = ACTIONS(3314), + [anon_sym_u8_SQUOTE] = ACTIONS(3314), + [anon_sym_SQUOTE] = ACTIONS(3314), + [anon_sym_L_DQUOTE] = ACTIONS(3314), + [anon_sym_u_DQUOTE] = ACTIONS(3314), + [anon_sym_U_DQUOTE] = ACTIONS(3314), + [anon_sym_u8_DQUOTE] = ACTIONS(3314), + [anon_sym_DQUOTE] = ACTIONS(3314), + [sym_true] = ACTIONS(3312), + [sym_false] = ACTIONS(3312), + [anon_sym_NULL] = ACTIONS(3312), + [anon_sym_nullptr] = ACTIONS(3312), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3312), + [anon_sym_decltype] = ACTIONS(3312), + [anon_sym_virtual] = ACTIONS(3312), + [anon_sym_explicit] = ACTIONS(3312), + [anon_sym_typename] = ACTIONS(3312), + [anon_sym_template] = ACTIONS(3312), + [anon_sym_operator] = ACTIONS(3312), + [anon_sym_try] = ACTIONS(3312), + [anon_sym_delete] = ACTIONS(3312), + [anon_sym_throw] = ACTIONS(3312), + [anon_sym_namespace] = ACTIONS(3312), + [anon_sym_using] = ACTIONS(3312), + [anon_sym_static_assert] = ACTIONS(3312), + [anon_sym_concept] = ACTIONS(3312), + [anon_sym_co_return] = ACTIONS(3312), + [anon_sym_co_yield] = ACTIONS(3312), + [anon_sym_R_DQUOTE] = ACTIONS(3314), + [anon_sym_LR_DQUOTE] = ACTIONS(3314), + [anon_sym_uR_DQUOTE] = ACTIONS(3314), + [anon_sym_UR_DQUOTE] = ACTIONS(3314), + [anon_sym_u8R_DQUOTE] = ACTIONS(3314), + [anon_sym_co_await] = ACTIONS(3312), + [anon_sym_new] = ACTIONS(3312), + [anon_sym_requires] = ACTIONS(3312), + [sym_this] = ACTIONS(3312), + }, + [560] = { + [sym_identifier] = ACTIONS(3316), + [aux_sym_preproc_include_token1] = ACTIONS(3316), + [aux_sym_preproc_def_token1] = ACTIONS(3316), + [aux_sym_preproc_if_token1] = ACTIONS(3316), + [aux_sym_preproc_if_token2] = ACTIONS(3316), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3316), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3316), + [aux_sym_preproc_else_token1] = ACTIONS(3316), + [aux_sym_preproc_elif_token1] = ACTIONS(3316), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3316), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3316), + [sym_preproc_directive] = ACTIONS(3316), + [anon_sym_LPAREN2] = ACTIONS(3318), + [anon_sym_BANG] = ACTIONS(3318), + [anon_sym_TILDE] = ACTIONS(3318), + [anon_sym_DASH] = ACTIONS(3316), + [anon_sym_PLUS] = ACTIONS(3316), + [anon_sym_STAR] = ACTIONS(3318), + [anon_sym_AMP_AMP] = ACTIONS(3318), + [anon_sym_AMP] = ACTIONS(3316), + [anon_sym_SEMI] = ACTIONS(3318), + [anon_sym_typedef] = ACTIONS(3316), + [anon_sym_extern] = ACTIONS(3316), + [anon_sym___attribute__] = ACTIONS(3316), + [anon_sym_COLON_COLON] = ACTIONS(3318), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3318), + [anon_sym___declspec] = ACTIONS(3316), + [anon_sym___based] = ACTIONS(3316), + [anon_sym___cdecl] = ACTIONS(3316), + [anon_sym___clrcall] = ACTIONS(3316), + [anon_sym___stdcall] = ACTIONS(3316), + [anon_sym___fastcall] = ACTIONS(3316), + [anon_sym___thiscall] = ACTIONS(3316), + [anon_sym___vectorcall] = ACTIONS(3316), + [anon_sym_LBRACE] = ACTIONS(3318), + [anon_sym_LBRACK] = ACTIONS(3316), + [anon_sym_static] = ACTIONS(3316), + [anon_sym_register] = ACTIONS(3316), + [anon_sym_inline] = ACTIONS(3316), + [anon_sym_thread_local] = ACTIONS(3316), + [anon_sym_const] = ACTIONS(3316), + [anon_sym_constexpr] = ACTIONS(3316), + [anon_sym_volatile] = ACTIONS(3316), + [anon_sym_restrict] = ACTIONS(3316), + [anon_sym___restrict__] = ACTIONS(3316), + [anon_sym__Atomic] = ACTIONS(3316), + [anon_sym__Noreturn] = ACTIONS(3316), + [anon_sym_noreturn] = ACTIONS(3316), + [anon_sym_mutable] = ACTIONS(3316), + [anon_sym_constinit] = ACTIONS(3316), + [anon_sym_consteval] = ACTIONS(3316), + [anon_sym_signed] = ACTIONS(3316), + [anon_sym_unsigned] = ACTIONS(3316), + [anon_sym_long] = ACTIONS(3316), + [anon_sym_short] = ACTIONS(3316), + [sym_primitive_type] = ACTIONS(3316), + [anon_sym_enum] = ACTIONS(3316), + [anon_sym_class] = ACTIONS(3316), + [anon_sym_struct] = ACTIONS(3316), + [anon_sym_union] = ACTIONS(3316), + [anon_sym_if] = ACTIONS(3316), + [anon_sym_switch] = ACTIONS(3316), + [anon_sym_case] = ACTIONS(3316), + [anon_sym_default] = ACTIONS(3316), + [anon_sym_while] = ACTIONS(3316), + [anon_sym_do] = ACTIONS(3316), + [anon_sym_for] = ACTIONS(3316), + [anon_sym_return] = ACTIONS(3316), + [anon_sym_break] = ACTIONS(3316), + [anon_sym_continue] = ACTIONS(3316), + [anon_sym_goto] = ACTIONS(3316), + [anon_sym_not] = ACTIONS(3316), + [anon_sym_compl] = ACTIONS(3316), + [anon_sym_DASH_DASH] = ACTIONS(3318), + [anon_sym_PLUS_PLUS] = ACTIONS(3318), + [anon_sym_sizeof] = ACTIONS(3316), + [anon_sym_offsetof] = ACTIONS(3316), + [anon_sym__Generic] = ACTIONS(3316), + [anon_sym_asm] = ACTIONS(3316), + [anon_sym___asm__] = ACTIONS(3316), + [sym_number_literal] = ACTIONS(3318), + [anon_sym_L_SQUOTE] = ACTIONS(3318), + [anon_sym_u_SQUOTE] = ACTIONS(3318), + [anon_sym_U_SQUOTE] = ACTIONS(3318), + [anon_sym_u8_SQUOTE] = ACTIONS(3318), + [anon_sym_SQUOTE] = ACTIONS(3318), + [anon_sym_L_DQUOTE] = ACTIONS(3318), + [anon_sym_u_DQUOTE] = ACTIONS(3318), + [anon_sym_U_DQUOTE] = ACTIONS(3318), + [anon_sym_u8_DQUOTE] = ACTIONS(3318), + [anon_sym_DQUOTE] = ACTIONS(3318), + [sym_true] = ACTIONS(3316), + [sym_false] = ACTIONS(3316), + [anon_sym_NULL] = ACTIONS(3316), + [anon_sym_nullptr] = ACTIONS(3316), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3316), + [anon_sym_decltype] = ACTIONS(3316), + [anon_sym_virtual] = ACTIONS(3316), + [anon_sym_explicit] = ACTIONS(3316), + [anon_sym_typename] = ACTIONS(3316), + [anon_sym_template] = ACTIONS(3316), + [anon_sym_operator] = ACTIONS(3316), + [anon_sym_try] = ACTIONS(3316), + [anon_sym_delete] = ACTIONS(3316), + [anon_sym_throw] = ACTIONS(3316), + [anon_sym_namespace] = ACTIONS(3316), + [anon_sym_using] = ACTIONS(3316), + [anon_sym_static_assert] = ACTIONS(3316), + [anon_sym_concept] = ACTIONS(3316), + [anon_sym_co_return] = ACTIONS(3316), + [anon_sym_co_yield] = ACTIONS(3316), + [anon_sym_R_DQUOTE] = ACTIONS(3318), + [anon_sym_LR_DQUOTE] = ACTIONS(3318), + [anon_sym_uR_DQUOTE] = ACTIONS(3318), + [anon_sym_UR_DQUOTE] = ACTIONS(3318), + [anon_sym_u8R_DQUOTE] = ACTIONS(3318), + [anon_sym_co_await] = ACTIONS(3316), + [anon_sym_new] = ACTIONS(3316), + [anon_sym_requires] = ACTIONS(3316), + [sym_this] = ACTIONS(3316), + }, + [561] = { + [sym__expression] = STATE(4221), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7426), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3184), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(3320), + [anon_sym_extern] = ACTIONS(3189), + [anon_sym___attribute__] = ACTIONS(3189), + [anon_sym_COLON_COLON] = ACTIONS(3191), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3194), + [anon_sym___declspec] = ACTIONS(3189), + [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_static] = ACTIONS(3189), + [anon_sym_register] = ACTIONS(3189), + [anon_sym_inline] = ACTIONS(3189), + [anon_sym_thread_local] = ACTIONS(3189), + [anon_sym_const] = ACTIONS(3189), + [anon_sym_constexpr] = ACTIONS(3189), + [anon_sym_volatile] = ACTIONS(3189), + [anon_sym_restrict] = ACTIONS(3189), + [anon_sym___restrict__] = ACTIONS(3189), + [anon_sym__Atomic] = ACTIONS(3189), + [anon_sym__Noreturn] = ACTIONS(3189), + [anon_sym_noreturn] = ACTIONS(3189), + [anon_sym_mutable] = ACTIONS(3189), + [anon_sym_constinit] = ACTIONS(3189), + [anon_sym_consteval] = ACTIONS(3189), + [anon_sym_signed] = ACTIONS(3189), + [anon_sym_unsigned] = ACTIONS(3189), + [anon_sym_long] = ACTIONS(3189), + [anon_sym_short] = ACTIONS(3189), + [sym_primitive_type] = ACTIONS(3196), + [anon_sym_enum] = ACTIONS(3189), + [anon_sym_class] = ACTIONS(3189), + [anon_sym_struct] = ACTIONS(3189), + [anon_sym_union] = ACTIONS(3189), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3189), + [anon_sym_decltype] = ACTIONS(3199), + [anon_sym_virtual] = ACTIONS(3189), + [anon_sym_typename] = ACTIONS(3189), + [anon_sym_template] = ACTIONS(3202), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), + }, + [562] = { + [sym_identifier] = ACTIONS(3322), + [aux_sym_preproc_include_token1] = ACTIONS(3322), + [aux_sym_preproc_def_token1] = ACTIONS(3322), + [aux_sym_preproc_if_token1] = ACTIONS(3322), + [aux_sym_preproc_if_token2] = ACTIONS(3322), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3322), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3322), + [aux_sym_preproc_else_token1] = ACTIONS(3322), + [aux_sym_preproc_elif_token1] = ACTIONS(3322), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3322), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3322), + [sym_preproc_directive] = ACTIONS(3322), + [anon_sym_LPAREN2] = ACTIONS(3324), + [anon_sym_BANG] = ACTIONS(3324), + [anon_sym_TILDE] = ACTIONS(3324), + [anon_sym_DASH] = ACTIONS(3322), + [anon_sym_PLUS] = ACTIONS(3322), + [anon_sym_STAR] = ACTIONS(3324), + [anon_sym_AMP_AMP] = ACTIONS(3324), + [anon_sym_AMP] = ACTIONS(3322), + [anon_sym_SEMI] = ACTIONS(3324), + [anon_sym_typedef] = ACTIONS(3322), + [anon_sym_extern] = ACTIONS(3322), + [anon_sym___attribute__] = ACTIONS(3322), + [anon_sym_COLON_COLON] = ACTIONS(3324), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3324), + [anon_sym___declspec] = ACTIONS(3322), + [anon_sym___based] = ACTIONS(3322), + [anon_sym___cdecl] = ACTIONS(3322), + [anon_sym___clrcall] = ACTIONS(3322), + [anon_sym___stdcall] = ACTIONS(3322), + [anon_sym___fastcall] = ACTIONS(3322), + [anon_sym___thiscall] = ACTIONS(3322), + [anon_sym___vectorcall] = ACTIONS(3322), + [anon_sym_LBRACE] = ACTIONS(3324), + [anon_sym_LBRACK] = ACTIONS(3322), + [anon_sym_static] = ACTIONS(3322), + [anon_sym_register] = ACTIONS(3322), + [anon_sym_inline] = ACTIONS(3322), + [anon_sym_thread_local] = ACTIONS(3322), + [anon_sym_const] = ACTIONS(3322), + [anon_sym_constexpr] = ACTIONS(3322), + [anon_sym_volatile] = ACTIONS(3322), + [anon_sym_restrict] = ACTIONS(3322), + [anon_sym___restrict__] = ACTIONS(3322), + [anon_sym__Atomic] = ACTIONS(3322), + [anon_sym__Noreturn] = ACTIONS(3322), + [anon_sym_noreturn] = ACTIONS(3322), + [anon_sym_mutable] = ACTIONS(3322), + [anon_sym_constinit] = ACTIONS(3322), + [anon_sym_consteval] = ACTIONS(3322), + [anon_sym_signed] = ACTIONS(3322), + [anon_sym_unsigned] = ACTIONS(3322), + [anon_sym_long] = ACTIONS(3322), + [anon_sym_short] = ACTIONS(3322), + [sym_primitive_type] = ACTIONS(3322), + [anon_sym_enum] = ACTIONS(3322), + [anon_sym_class] = ACTIONS(3322), + [anon_sym_struct] = ACTIONS(3322), + [anon_sym_union] = ACTIONS(3322), + [anon_sym_if] = ACTIONS(3322), + [anon_sym_switch] = ACTIONS(3322), + [anon_sym_case] = ACTIONS(3322), + [anon_sym_default] = ACTIONS(3322), + [anon_sym_while] = ACTIONS(3322), + [anon_sym_do] = ACTIONS(3322), + [anon_sym_for] = ACTIONS(3322), + [anon_sym_return] = ACTIONS(3322), + [anon_sym_break] = ACTIONS(3322), + [anon_sym_continue] = ACTIONS(3322), + [anon_sym_goto] = ACTIONS(3322), + [anon_sym_not] = ACTIONS(3322), + [anon_sym_compl] = ACTIONS(3322), + [anon_sym_DASH_DASH] = ACTIONS(3324), + [anon_sym_PLUS_PLUS] = ACTIONS(3324), + [anon_sym_sizeof] = ACTIONS(3322), + [anon_sym_offsetof] = ACTIONS(3322), + [anon_sym__Generic] = ACTIONS(3322), + [anon_sym_asm] = ACTIONS(3322), + [anon_sym___asm__] = ACTIONS(3322), + [sym_number_literal] = ACTIONS(3324), + [anon_sym_L_SQUOTE] = ACTIONS(3324), + [anon_sym_u_SQUOTE] = ACTIONS(3324), + [anon_sym_U_SQUOTE] = ACTIONS(3324), + [anon_sym_u8_SQUOTE] = ACTIONS(3324), + [anon_sym_SQUOTE] = ACTIONS(3324), + [anon_sym_L_DQUOTE] = ACTIONS(3324), + [anon_sym_u_DQUOTE] = ACTIONS(3324), + [anon_sym_U_DQUOTE] = ACTIONS(3324), + [anon_sym_u8_DQUOTE] = ACTIONS(3324), + [anon_sym_DQUOTE] = ACTIONS(3324), + [sym_true] = ACTIONS(3322), + [sym_false] = ACTIONS(3322), + [anon_sym_NULL] = ACTIONS(3322), + [anon_sym_nullptr] = ACTIONS(3322), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3322), + [anon_sym_decltype] = ACTIONS(3322), + [anon_sym_virtual] = ACTIONS(3322), + [anon_sym_explicit] = ACTIONS(3322), + [anon_sym_typename] = ACTIONS(3322), + [anon_sym_template] = ACTIONS(3322), + [anon_sym_operator] = ACTIONS(3322), + [anon_sym_try] = ACTIONS(3322), + [anon_sym_delete] = ACTIONS(3322), + [anon_sym_throw] = ACTIONS(3322), + [anon_sym_namespace] = ACTIONS(3322), + [anon_sym_using] = ACTIONS(3322), + [anon_sym_static_assert] = ACTIONS(3322), + [anon_sym_concept] = ACTIONS(3322), + [anon_sym_co_return] = ACTIONS(3322), + [anon_sym_co_yield] = ACTIONS(3322), + [anon_sym_R_DQUOTE] = ACTIONS(3324), + [anon_sym_LR_DQUOTE] = ACTIONS(3324), + [anon_sym_uR_DQUOTE] = ACTIONS(3324), + [anon_sym_UR_DQUOTE] = ACTIONS(3324), + [anon_sym_u8R_DQUOTE] = ACTIONS(3324), + [anon_sym_co_await] = ACTIONS(3322), + [anon_sym_new] = ACTIONS(3322), + [anon_sym_requires] = ACTIONS(3322), + [sym_this] = ACTIONS(3322), + }, + [563] = { + [sym__expression] = STATE(4295), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7519), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3209), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(3326), + [anon_sym_extern] = ACTIONS(2962), + [anon_sym___attribute__] = ACTIONS(2962), + [anon_sym_COLON_COLON] = ACTIONS(3214), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2964), + [anon_sym___declspec] = ACTIONS(2962), + [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_static] = ACTIONS(2962), + [anon_sym_register] = ACTIONS(2962), + [anon_sym_inline] = ACTIONS(2962), + [anon_sym_thread_local] = ACTIONS(2962), + [anon_sym_const] = ACTIONS(2962), + [anon_sym_constexpr] = ACTIONS(2962), + [anon_sym_volatile] = ACTIONS(2962), + [anon_sym_restrict] = ACTIONS(2962), + [anon_sym___restrict__] = ACTIONS(2962), + [anon_sym__Atomic] = ACTIONS(2962), + [anon_sym__Noreturn] = ACTIONS(2962), + [anon_sym_noreturn] = ACTIONS(2962), + [anon_sym_mutable] = ACTIONS(2962), + [anon_sym_constinit] = ACTIONS(2962), + [anon_sym_consteval] = ACTIONS(2962), + [anon_sym_signed] = ACTIONS(2962), + [anon_sym_unsigned] = ACTIONS(2962), + [anon_sym_long] = ACTIONS(2962), + [anon_sym_short] = ACTIONS(2962), + [sym_primitive_type] = ACTIONS(3217), + [anon_sym_enum] = ACTIONS(2962), + [anon_sym_class] = ACTIONS(2962), + [anon_sym_struct] = ACTIONS(2962), + [anon_sym_union] = ACTIONS(2962), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2962), + [anon_sym_decltype] = ACTIONS(3220), + [anon_sym_virtual] = ACTIONS(2962), + [anon_sym_typename] = ACTIONS(2962), + [anon_sym_template] = ACTIONS(3223), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), + }, + [564] = { + [sym_identifier] = ACTIONS(3328), + [aux_sym_preproc_include_token1] = ACTIONS(3328), + [aux_sym_preproc_def_token1] = ACTIONS(3328), + [aux_sym_preproc_if_token1] = ACTIONS(3328), + [aux_sym_preproc_if_token2] = ACTIONS(3328), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3328), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3328), + [aux_sym_preproc_else_token1] = ACTIONS(3328), + [aux_sym_preproc_elif_token1] = ACTIONS(3328), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3328), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3328), + [sym_preproc_directive] = ACTIONS(3328), + [anon_sym_LPAREN2] = ACTIONS(3330), + [anon_sym_BANG] = ACTIONS(3330), + [anon_sym_TILDE] = ACTIONS(3330), + [anon_sym_DASH] = ACTIONS(3328), + [anon_sym_PLUS] = ACTIONS(3328), + [anon_sym_STAR] = ACTIONS(3330), + [anon_sym_AMP_AMP] = ACTIONS(3330), + [anon_sym_AMP] = ACTIONS(3328), + [anon_sym_SEMI] = ACTIONS(3330), + [anon_sym_typedef] = ACTIONS(3328), + [anon_sym_extern] = ACTIONS(3328), + [anon_sym___attribute__] = ACTIONS(3328), + [anon_sym_COLON_COLON] = ACTIONS(3330), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3330), + [anon_sym___declspec] = ACTIONS(3328), + [anon_sym___based] = ACTIONS(3328), + [anon_sym___cdecl] = ACTIONS(3328), + [anon_sym___clrcall] = ACTIONS(3328), + [anon_sym___stdcall] = ACTIONS(3328), + [anon_sym___fastcall] = ACTIONS(3328), + [anon_sym___thiscall] = ACTIONS(3328), + [anon_sym___vectorcall] = ACTIONS(3328), + [anon_sym_LBRACE] = ACTIONS(3330), + [anon_sym_LBRACK] = ACTIONS(3328), + [anon_sym_static] = ACTIONS(3328), + [anon_sym_register] = ACTIONS(3328), + [anon_sym_inline] = ACTIONS(3328), + [anon_sym_thread_local] = ACTIONS(3328), + [anon_sym_const] = ACTIONS(3328), + [anon_sym_constexpr] = ACTIONS(3328), + [anon_sym_volatile] = ACTIONS(3328), + [anon_sym_restrict] = ACTIONS(3328), + [anon_sym___restrict__] = ACTIONS(3328), + [anon_sym__Atomic] = ACTIONS(3328), + [anon_sym__Noreturn] = ACTIONS(3328), + [anon_sym_noreturn] = ACTIONS(3328), + [anon_sym_mutable] = ACTIONS(3328), + [anon_sym_constinit] = ACTIONS(3328), + [anon_sym_consteval] = ACTIONS(3328), + [anon_sym_signed] = ACTIONS(3328), + [anon_sym_unsigned] = ACTIONS(3328), + [anon_sym_long] = ACTIONS(3328), + [anon_sym_short] = ACTIONS(3328), + [sym_primitive_type] = ACTIONS(3328), + [anon_sym_enum] = ACTIONS(3328), + [anon_sym_class] = ACTIONS(3328), + [anon_sym_struct] = ACTIONS(3328), + [anon_sym_union] = ACTIONS(3328), + [anon_sym_if] = ACTIONS(3328), + [anon_sym_switch] = ACTIONS(3328), + [anon_sym_case] = ACTIONS(3328), + [anon_sym_default] = ACTIONS(3328), + [anon_sym_while] = ACTIONS(3328), + [anon_sym_do] = ACTIONS(3328), + [anon_sym_for] = ACTIONS(3328), + [anon_sym_return] = ACTIONS(3328), + [anon_sym_break] = ACTIONS(3328), + [anon_sym_continue] = ACTIONS(3328), + [anon_sym_goto] = ACTIONS(3328), + [anon_sym_not] = ACTIONS(3328), + [anon_sym_compl] = ACTIONS(3328), + [anon_sym_DASH_DASH] = ACTIONS(3330), + [anon_sym_PLUS_PLUS] = ACTIONS(3330), + [anon_sym_sizeof] = ACTIONS(3328), + [anon_sym_offsetof] = ACTIONS(3328), + [anon_sym__Generic] = ACTIONS(3328), + [anon_sym_asm] = ACTIONS(3328), + [anon_sym___asm__] = ACTIONS(3328), + [sym_number_literal] = ACTIONS(3330), + [anon_sym_L_SQUOTE] = ACTIONS(3330), + [anon_sym_u_SQUOTE] = ACTIONS(3330), + [anon_sym_U_SQUOTE] = ACTIONS(3330), + [anon_sym_u8_SQUOTE] = ACTIONS(3330), + [anon_sym_SQUOTE] = ACTIONS(3330), + [anon_sym_L_DQUOTE] = ACTIONS(3330), + [anon_sym_u_DQUOTE] = ACTIONS(3330), + [anon_sym_U_DQUOTE] = ACTIONS(3330), + [anon_sym_u8_DQUOTE] = ACTIONS(3330), + [anon_sym_DQUOTE] = ACTIONS(3330), + [sym_true] = ACTIONS(3328), + [sym_false] = ACTIONS(3328), + [anon_sym_NULL] = ACTIONS(3328), + [anon_sym_nullptr] = ACTIONS(3328), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3328), + [anon_sym_decltype] = ACTIONS(3328), + [anon_sym_virtual] = ACTIONS(3328), + [anon_sym_explicit] = ACTIONS(3328), + [anon_sym_typename] = ACTIONS(3328), + [anon_sym_template] = ACTIONS(3328), + [anon_sym_operator] = ACTIONS(3328), + [anon_sym_try] = ACTIONS(3328), + [anon_sym_delete] = ACTIONS(3328), + [anon_sym_throw] = ACTIONS(3328), + [anon_sym_namespace] = ACTIONS(3328), + [anon_sym_using] = ACTIONS(3328), + [anon_sym_static_assert] = ACTIONS(3328), + [anon_sym_concept] = ACTIONS(3328), + [anon_sym_co_return] = ACTIONS(3328), + [anon_sym_co_yield] = ACTIONS(3328), + [anon_sym_R_DQUOTE] = ACTIONS(3330), + [anon_sym_LR_DQUOTE] = ACTIONS(3330), + [anon_sym_uR_DQUOTE] = ACTIONS(3330), + [anon_sym_UR_DQUOTE] = ACTIONS(3330), + [anon_sym_u8R_DQUOTE] = ACTIONS(3330), + [anon_sym_co_await] = ACTIONS(3328), + [anon_sym_new] = ACTIONS(3328), + [anon_sym_requires] = ACTIONS(3328), + [sym_this] = ACTIONS(3328), + }, + [565] = { + [sym_identifier] = ACTIONS(3332), + [aux_sym_preproc_include_token1] = ACTIONS(3332), + [aux_sym_preproc_def_token1] = ACTIONS(3332), + [aux_sym_preproc_if_token1] = ACTIONS(3332), + [aux_sym_preproc_if_token2] = ACTIONS(3332), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3332), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3332), + [aux_sym_preproc_else_token1] = ACTIONS(3332), + [aux_sym_preproc_elif_token1] = ACTIONS(3332), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3332), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3332), + [sym_preproc_directive] = ACTIONS(3332), + [anon_sym_LPAREN2] = ACTIONS(3334), + [anon_sym_BANG] = ACTIONS(3334), + [anon_sym_TILDE] = ACTIONS(3334), + [anon_sym_DASH] = ACTIONS(3332), + [anon_sym_PLUS] = ACTIONS(3332), + [anon_sym_STAR] = ACTIONS(3334), + [anon_sym_AMP_AMP] = ACTIONS(3334), + [anon_sym_AMP] = ACTIONS(3332), + [anon_sym_SEMI] = ACTIONS(3334), + [anon_sym_typedef] = ACTIONS(3332), + [anon_sym_extern] = ACTIONS(3332), + [anon_sym___attribute__] = ACTIONS(3332), + [anon_sym_COLON_COLON] = ACTIONS(3334), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3334), + [anon_sym___declspec] = ACTIONS(3332), + [anon_sym___based] = ACTIONS(3332), + [anon_sym___cdecl] = ACTIONS(3332), + [anon_sym___clrcall] = ACTIONS(3332), + [anon_sym___stdcall] = ACTIONS(3332), + [anon_sym___fastcall] = ACTIONS(3332), + [anon_sym___thiscall] = ACTIONS(3332), + [anon_sym___vectorcall] = ACTIONS(3332), + [anon_sym_LBRACE] = ACTIONS(3334), + [anon_sym_LBRACK] = ACTIONS(3332), + [anon_sym_static] = ACTIONS(3332), + [anon_sym_register] = ACTIONS(3332), + [anon_sym_inline] = ACTIONS(3332), + [anon_sym_thread_local] = ACTIONS(3332), + [anon_sym_const] = ACTIONS(3332), + [anon_sym_constexpr] = ACTIONS(3332), + [anon_sym_volatile] = ACTIONS(3332), + [anon_sym_restrict] = ACTIONS(3332), + [anon_sym___restrict__] = ACTIONS(3332), + [anon_sym__Atomic] = ACTIONS(3332), + [anon_sym__Noreturn] = ACTIONS(3332), + [anon_sym_noreturn] = ACTIONS(3332), + [anon_sym_mutable] = ACTIONS(3332), + [anon_sym_constinit] = ACTIONS(3332), + [anon_sym_consteval] = ACTIONS(3332), + [anon_sym_signed] = ACTIONS(3332), + [anon_sym_unsigned] = ACTIONS(3332), + [anon_sym_long] = ACTIONS(3332), + [anon_sym_short] = ACTIONS(3332), + [sym_primitive_type] = ACTIONS(3332), + [anon_sym_enum] = ACTIONS(3332), + [anon_sym_class] = ACTIONS(3332), + [anon_sym_struct] = ACTIONS(3332), + [anon_sym_union] = ACTIONS(3332), + [anon_sym_if] = ACTIONS(3332), + [anon_sym_switch] = ACTIONS(3332), + [anon_sym_case] = ACTIONS(3332), + [anon_sym_default] = ACTIONS(3332), + [anon_sym_while] = ACTIONS(3332), + [anon_sym_do] = ACTIONS(3332), + [anon_sym_for] = ACTIONS(3332), + [anon_sym_return] = ACTIONS(3332), + [anon_sym_break] = ACTIONS(3332), + [anon_sym_continue] = ACTIONS(3332), + [anon_sym_goto] = ACTIONS(3332), + [anon_sym_not] = ACTIONS(3332), + [anon_sym_compl] = ACTIONS(3332), + [anon_sym_DASH_DASH] = ACTIONS(3334), + [anon_sym_PLUS_PLUS] = ACTIONS(3334), + [anon_sym_sizeof] = ACTIONS(3332), + [anon_sym_offsetof] = ACTIONS(3332), + [anon_sym__Generic] = ACTIONS(3332), + [anon_sym_asm] = ACTIONS(3332), + [anon_sym___asm__] = ACTIONS(3332), + [sym_number_literal] = ACTIONS(3334), + [anon_sym_L_SQUOTE] = ACTIONS(3334), + [anon_sym_u_SQUOTE] = ACTIONS(3334), + [anon_sym_U_SQUOTE] = ACTIONS(3334), + [anon_sym_u8_SQUOTE] = ACTIONS(3334), + [anon_sym_SQUOTE] = ACTIONS(3334), + [anon_sym_L_DQUOTE] = ACTIONS(3334), + [anon_sym_u_DQUOTE] = ACTIONS(3334), + [anon_sym_U_DQUOTE] = ACTIONS(3334), + [anon_sym_u8_DQUOTE] = ACTIONS(3334), + [anon_sym_DQUOTE] = ACTIONS(3334), + [sym_true] = ACTIONS(3332), + [sym_false] = ACTIONS(3332), + [anon_sym_NULL] = ACTIONS(3332), + [anon_sym_nullptr] = ACTIONS(3332), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3332), + [anon_sym_decltype] = ACTIONS(3332), + [anon_sym_virtual] = ACTIONS(3332), + [anon_sym_explicit] = ACTIONS(3332), + [anon_sym_typename] = ACTIONS(3332), + [anon_sym_template] = ACTIONS(3332), + [anon_sym_operator] = ACTIONS(3332), + [anon_sym_try] = ACTIONS(3332), + [anon_sym_delete] = ACTIONS(3332), + [anon_sym_throw] = ACTIONS(3332), + [anon_sym_namespace] = ACTIONS(3332), + [anon_sym_using] = ACTIONS(3332), + [anon_sym_static_assert] = ACTIONS(3332), + [anon_sym_concept] = ACTIONS(3332), + [anon_sym_co_return] = ACTIONS(3332), + [anon_sym_co_yield] = ACTIONS(3332), + [anon_sym_R_DQUOTE] = ACTIONS(3334), + [anon_sym_LR_DQUOTE] = ACTIONS(3334), + [anon_sym_uR_DQUOTE] = ACTIONS(3334), + [anon_sym_UR_DQUOTE] = ACTIONS(3334), + [anon_sym_u8R_DQUOTE] = ACTIONS(3334), + [anon_sym_co_await] = ACTIONS(3332), + [anon_sym_new] = ACTIONS(3332), + [anon_sym_requires] = ACTIONS(3332), + [sym_this] = ACTIONS(3332), + }, + [566] = { + [sym_identifier] = ACTIONS(3332), + [aux_sym_preproc_include_token1] = ACTIONS(3332), + [aux_sym_preproc_def_token1] = ACTIONS(3332), + [aux_sym_preproc_if_token1] = ACTIONS(3332), + [aux_sym_preproc_if_token2] = ACTIONS(3332), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3332), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3332), + [aux_sym_preproc_else_token1] = ACTIONS(3332), + [aux_sym_preproc_elif_token1] = ACTIONS(3332), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3332), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3332), + [sym_preproc_directive] = ACTIONS(3332), + [anon_sym_LPAREN2] = ACTIONS(3334), + [anon_sym_BANG] = ACTIONS(3334), + [anon_sym_TILDE] = ACTIONS(3334), + [anon_sym_DASH] = ACTIONS(3332), + [anon_sym_PLUS] = ACTIONS(3332), + [anon_sym_STAR] = ACTIONS(3334), + [anon_sym_AMP_AMP] = ACTIONS(3334), + [anon_sym_AMP] = ACTIONS(3332), + [anon_sym_SEMI] = ACTIONS(3334), + [anon_sym_typedef] = ACTIONS(3332), + [anon_sym_extern] = ACTIONS(3332), + [anon_sym___attribute__] = ACTIONS(3332), + [anon_sym_COLON_COLON] = ACTIONS(3334), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3334), + [anon_sym___declspec] = ACTIONS(3332), + [anon_sym___based] = ACTIONS(3332), + [anon_sym___cdecl] = ACTIONS(3332), + [anon_sym___clrcall] = ACTIONS(3332), + [anon_sym___stdcall] = ACTIONS(3332), + [anon_sym___fastcall] = ACTIONS(3332), + [anon_sym___thiscall] = ACTIONS(3332), + [anon_sym___vectorcall] = ACTIONS(3332), + [anon_sym_LBRACE] = ACTIONS(3334), + [anon_sym_LBRACK] = ACTIONS(3332), + [anon_sym_static] = ACTIONS(3332), + [anon_sym_register] = ACTIONS(3332), + [anon_sym_inline] = ACTIONS(3332), + [anon_sym_thread_local] = ACTIONS(3332), + [anon_sym_const] = ACTIONS(3332), + [anon_sym_constexpr] = ACTIONS(3332), + [anon_sym_volatile] = ACTIONS(3332), + [anon_sym_restrict] = ACTIONS(3332), + [anon_sym___restrict__] = ACTIONS(3332), + [anon_sym__Atomic] = ACTIONS(3332), + [anon_sym__Noreturn] = ACTIONS(3332), + [anon_sym_noreturn] = ACTIONS(3332), + [anon_sym_mutable] = ACTIONS(3332), + [anon_sym_constinit] = ACTIONS(3332), + [anon_sym_consteval] = ACTIONS(3332), + [anon_sym_signed] = ACTIONS(3332), + [anon_sym_unsigned] = ACTIONS(3332), + [anon_sym_long] = ACTIONS(3332), + [anon_sym_short] = ACTIONS(3332), + [sym_primitive_type] = ACTIONS(3332), + [anon_sym_enum] = ACTIONS(3332), + [anon_sym_class] = ACTIONS(3332), + [anon_sym_struct] = ACTIONS(3332), + [anon_sym_union] = ACTIONS(3332), + [anon_sym_if] = ACTIONS(3332), + [anon_sym_switch] = ACTIONS(3332), + [anon_sym_case] = ACTIONS(3332), + [anon_sym_default] = ACTIONS(3332), + [anon_sym_while] = ACTIONS(3332), + [anon_sym_do] = ACTIONS(3332), + [anon_sym_for] = ACTIONS(3332), + [anon_sym_return] = ACTIONS(3332), + [anon_sym_break] = ACTIONS(3332), + [anon_sym_continue] = ACTIONS(3332), + [anon_sym_goto] = ACTIONS(3332), + [anon_sym_not] = ACTIONS(3332), + [anon_sym_compl] = ACTIONS(3332), + [anon_sym_DASH_DASH] = ACTIONS(3334), + [anon_sym_PLUS_PLUS] = ACTIONS(3334), + [anon_sym_sizeof] = ACTIONS(3332), + [anon_sym_offsetof] = ACTIONS(3332), + [anon_sym__Generic] = ACTIONS(3332), + [anon_sym_asm] = ACTIONS(3332), + [anon_sym___asm__] = ACTIONS(3332), + [sym_number_literal] = ACTIONS(3334), + [anon_sym_L_SQUOTE] = ACTIONS(3334), + [anon_sym_u_SQUOTE] = ACTIONS(3334), + [anon_sym_U_SQUOTE] = ACTIONS(3334), + [anon_sym_u8_SQUOTE] = ACTIONS(3334), + [anon_sym_SQUOTE] = ACTIONS(3334), + [anon_sym_L_DQUOTE] = ACTIONS(3334), + [anon_sym_u_DQUOTE] = ACTIONS(3334), + [anon_sym_U_DQUOTE] = ACTIONS(3334), + [anon_sym_u8_DQUOTE] = ACTIONS(3334), + [anon_sym_DQUOTE] = ACTIONS(3334), + [sym_true] = ACTIONS(3332), + [sym_false] = ACTIONS(3332), + [anon_sym_NULL] = ACTIONS(3332), + [anon_sym_nullptr] = ACTIONS(3332), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3332), + [anon_sym_decltype] = ACTIONS(3332), + [anon_sym_virtual] = ACTIONS(3332), + [anon_sym_explicit] = ACTIONS(3332), + [anon_sym_typename] = ACTIONS(3332), + [anon_sym_template] = ACTIONS(3332), + [anon_sym_operator] = ACTIONS(3332), + [anon_sym_try] = ACTIONS(3332), + [anon_sym_delete] = ACTIONS(3332), + [anon_sym_throw] = ACTIONS(3332), + [anon_sym_namespace] = ACTIONS(3332), + [anon_sym_using] = ACTIONS(3332), + [anon_sym_static_assert] = ACTIONS(3332), + [anon_sym_concept] = ACTIONS(3332), + [anon_sym_co_return] = ACTIONS(3332), + [anon_sym_co_yield] = ACTIONS(3332), + [anon_sym_R_DQUOTE] = ACTIONS(3334), + [anon_sym_LR_DQUOTE] = ACTIONS(3334), + [anon_sym_uR_DQUOTE] = ACTIONS(3334), + [anon_sym_UR_DQUOTE] = ACTIONS(3334), + [anon_sym_u8R_DQUOTE] = ACTIONS(3334), + [anon_sym_co_await] = ACTIONS(3332), + [anon_sym_new] = ACTIONS(3332), + [anon_sym_requires] = ACTIONS(3332), + [sym_this] = ACTIONS(3332), + }, + [567] = { + [sym_identifier] = ACTIONS(3336), + [aux_sym_preproc_include_token1] = ACTIONS(3336), + [aux_sym_preproc_def_token1] = ACTIONS(3336), + [aux_sym_preproc_if_token1] = ACTIONS(3336), + [aux_sym_preproc_if_token2] = ACTIONS(3336), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3336), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3336), + [aux_sym_preproc_else_token1] = ACTIONS(3336), + [aux_sym_preproc_elif_token1] = ACTIONS(3336), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3336), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3336), + [sym_preproc_directive] = ACTIONS(3336), + [anon_sym_LPAREN2] = ACTIONS(3338), + [anon_sym_BANG] = ACTIONS(3338), + [anon_sym_TILDE] = ACTIONS(3338), + [anon_sym_DASH] = ACTIONS(3336), + [anon_sym_PLUS] = ACTIONS(3336), + [anon_sym_STAR] = ACTIONS(3338), + [anon_sym_AMP_AMP] = ACTIONS(3338), + [anon_sym_AMP] = ACTIONS(3336), + [anon_sym_SEMI] = ACTIONS(3338), + [anon_sym_typedef] = ACTIONS(3336), + [anon_sym_extern] = ACTIONS(3336), + [anon_sym___attribute__] = ACTIONS(3336), + [anon_sym_COLON_COLON] = ACTIONS(3338), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3338), + [anon_sym___declspec] = ACTIONS(3336), + [anon_sym___based] = ACTIONS(3336), + [anon_sym___cdecl] = ACTIONS(3336), + [anon_sym___clrcall] = ACTIONS(3336), + [anon_sym___stdcall] = ACTIONS(3336), + [anon_sym___fastcall] = ACTIONS(3336), + [anon_sym___thiscall] = ACTIONS(3336), + [anon_sym___vectorcall] = ACTIONS(3336), + [anon_sym_LBRACE] = ACTIONS(3338), + [anon_sym_LBRACK] = ACTIONS(3336), + [anon_sym_static] = ACTIONS(3336), + [anon_sym_register] = ACTIONS(3336), + [anon_sym_inline] = ACTIONS(3336), + [anon_sym_thread_local] = ACTIONS(3336), + [anon_sym_const] = ACTIONS(3336), + [anon_sym_constexpr] = ACTIONS(3336), + [anon_sym_volatile] = ACTIONS(3336), + [anon_sym_restrict] = ACTIONS(3336), + [anon_sym___restrict__] = ACTIONS(3336), + [anon_sym__Atomic] = ACTIONS(3336), + [anon_sym__Noreturn] = ACTIONS(3336), + [anon_sym_noreturn] = ACTIONS(3336), + [anon_sym_mutable] = ACTIONS(3336), + [anon_sym_constinit] = ACTIONS(3336), + [anon_sym_consteval] = ACTIONS(3336), + [anon_sym_signed] = ACTIONS(3336), + [anon_sym_unsigned] = ACTIONS(3336), + [anon_sym_long] = ACTIONS(3336), + [anon_sym_short] = ACTIONS(3336), + [sym_primitive_type] = ACTIONS(3336), + [anon_sym_enum] = ACTIONS(3336), + [anon_sym_class] = ACTIONS(3336), + [anon_sym_struct] = ACTIONS(3336), + [anon_sym_union] = ACTIONS(3336), + [anon_sym_if] = ACTIONS(3336), + [anon_sym_switch] = ACTIONS(3336), + [anon_sym_case] = ACTIONS(3336), + [anon_sym_default] = ACTIONS(3336), + [anon_sym_while] = ACTIONS(3336), + [anon_sym_do] = ACTIONS(3336), + [anon_sym_for] = ACTIONS(3336), + [anon_sym_return] = ACTIONS(3336), + [anon_sym_break] = ACTIONS(3336), + [anon_sym_continue] = ACTIONS(3336), + [anon_sym_goto] = ACTIONS(3336), + [anon_sym_not] = ACTIONS(3336), + [anon_sym_compl] = ACTIONS(3336), + [anon_sym_DASH_DASH] = ACTIONS(3338), + [anon_sym_PLUS_PLUS] = ACTIONS(3338), + [anon_sym_sizeof] = ACTIONS(3336), + [anon_sym_offsetof] = ACTIONS(3336), + [anon_sym__Generic] = ACTIONS(3336), + [anon_sym_asm] = ACTIONS(3336), + [anon_sym___asm__] = ACTIONS(3336), + [sym_number_literal] = ACTIONS(3338), + [anon_sym_L_SQUOTE] = ACTIONS(3338), + [anon_sym_u_SQUOTE] = ACTIONS(3338), + [anon_sym_U_SQUOTE] = ACTIONS(3338), + [anon_sym_u8_SQUOTE] = ACTIONS(3338), + [anon_sym_SQUOTE] = ACTIONS(3338), + [anon_sym_L_DQUOTE] = ACTIONS(3338), + [anon_sym_u_DQUOTE] = ACTIONS(3338), + [anon_sym_U_DQUOTE] = ACTIONS(3338), + [anon_sym_u8_DQUOTE] = ACTIONS(3338), + [anon_sym_DQUOTE] = ACTIONS(3338), + [sym_true] = ACTIONS(3336), + [sym_false] = ACTIONS(3336), + [anon_sym_NULL] = ACTIONS(3336), + [anon_sym_nullptr] = ACTIONS(3336), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3336), + [anon_sym_decltype] = ACTIONS(3336), + [anon_sym_virtual] = ACTIONS(3336), + [anon_sym_explicit] = ACTIONS(3336), + [anon_sym_typename] = ACTIONS(3336), + [anon_sym_template] = ACTIONS(3336), + [anon_sym_operator] = ACTIONS(3336), + [anon_sym_try] = ACTIONS(3336), + [anon_sym_delete] = ACTIONS(3336), + [anon_sym_throw] = ACTIONS(3336), + [anon_sym_namespace] = ACTIONS(3336), + [anon_sym_using] = ACTIONS(3336), + [anon_sym_static_assert] = ACTIONS(3336), + [anon_sym_concept] = ACTIONS(3336), + [anon_sym_co_return] = ACTIONS(3336), + [anon_sym_co_yield] = ACTIONS(3336), + [anon_sym_R_DQUOTE] = ACTIONS(3338), + [anon_sym_LR_DQUOTE] = ACTIONS(3338), + [anon_sym_uR_DQUOTE] = ACTIONS(3338), + [anon_sym_UR_DQUOTE] = ACTIONS(3338), + [anon_sym_u8R_DQUOTE] = ACTIONS(3338), + [anon_sym_co_await] = ACTIONS(3336), + [anon_sym_new] = ACTIONS(3336), + [anon_sym_requires] = ACTIONS(3336), + [sym_this] = ACTIONS(3336), + }, + [568] = { + [sym_catch_clause] = STATE(583), + [aux_sym_constructor_try_statement_repeat1] = STATE(583), + [sym_identifier] = ACTIONS(2709), + [aux_sym_preproc_include_token1] = ACTIONS(2709), + [aux_sym_preproc_def_token1] = ACTIONS(2709), + [aux_sym_preproc_if_token1] = ACTIONS(2709), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2709), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2709), + [sym_preproc_directive] = ACTIONS(2709), + [anon_sym_LPAREN2] = ACTIONS(2711), + [anon_sym_BANG] = ACTIONS(2711), + [anon_sym_TILDE] = ACTIONS(2711), + [anon_sym_DASH] = ACTIONS(2709), + [anon_sym_PLUS] = ACTIONS(2709), + [anon_sym_STAR] = ACTIONS(2711), + [anon_sym_AMP_AMP] = ACTIONS(2711), + [anon_sym_AMP] = ACTIONS(2709), + [anon_sym_SEMI] = ACTIONS(2711), + [anon_sym_typedef] = ACTIONS(2709), + [anon_sym_extern] = ACTIONS(2709), + [anon_sym___attribute__] = ACTIONS(2709), + [anon_sym_COLON_COLON] = ACTIONS(2711), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2711), + [anon_sym___declspec] = ACTIONS(2709), + [anon_sym___based] = ACTIONS(2709), + [anon_sym___cdecl] = ACTIONS(2709), + [anon_sym___clrcall] = ACTIONS(2709), + [anon_sym___stdcall] = ACTIONS(2709), + [anon_sym___fastcall] = ACTIONS(2709), + [anon_sym___thiscall] = ACTIONS(2709), + [anon_sym___vectorcall] = ACTIONS(2709), + [anon_sym_LBRACE] = ACTIONS(2711), + [anon_sym_RBRACE] = ACTIONS(2711), + [anon_sym_LBRACK] = ACTIONS(2709), + [anon_sym_static] = ACTIONS(2709), + [anon_sym_register] = ACTIONS(2709), + [anon_sym_inline] = ACTIONS(2709), + [anon_sym_thread_local] = ACTIONS(2709), + [anon_sym_const] = ACTIONS(2709), + [anon_sym_constexpr] = ACTIONS(2709), + [anon_sym_volatile] = ACTIONS(2709), + [anon_sym_restrict] = ACTIONS(2709), + [anon_sym___restrict__] = ACTIONS(2709), + [anon_sym__Atomic] = ACTIONS(2709), + [anon_sym__Noreturn] = ACTIONS(2709), + [anon_sym_noreturn] = ACTIONS(2709), + [anon_sym_mutable] = ACTIONS(2709), + [anon_sym_constinit] = ACTIONS(2709), + [anon_sym_consteval] = ACTIONS(2709), + [anon_sym_signed] = ACTIONS(2709), + [anon_sym_unsigned] = ACTIONS(2709), + [anon_sym_long] = ACTIONS(2709), + [anon_sym_short] = ACTIONS(2709), + [sym_primitive_type] = ACTIONS(2709), + [anon_sym_enum] = ACTIONS(2709), + [anon_sym_class] = ACTIONS(2709), + [anon_sym_struct] = ACTIONS(2709), + [anon_sym_union] = ACTIONS(2709), + [anon_sym_if] = ACTIONS(2709), + [anon_sym_else] = ACTIONS(2709), + [anon_sym_switch] = ACTIONS(2709), + [anon_sym_case] = ACTIONS(2709), + [anon_sym_default] = ACTIONS(2709), + [anon_sym_while] = ACTIONS(2709), + [anon_sym_do] = ACTIONS(2709), + [anon_sym_for] = ACTIONS(2709), + [anon_sym_return] = ACTIONS(2709), + [anon_sym_break] = ACTIONS(2709), + [anon_sym_continue] = ACTIONS(2709), + [anon_sym_goto] = ACTIONS(2709), + [anon_sym_not] = ACTIONS(2709), + [anon_sym_compl] = ACTIONS(2709), + [anon_sym_DASH_DASH] = ACTIONS(2711), + [anon_sym_PLUS_PLUS] = ACTIONS(2711), + [anon_sym_sizeof] = ACTIONS(2709), + [anon_sym_offsetof] = ACTIONS(2709), + [anon_sym__Generic] = ACTIONS(2709), + [anon_sym_asm] = ACTIONS(2709), + [anon_sym___asm__] = ACTIONS(2709), + [sym_number_literal] = ACTIONS(2711), + [anon_sym_L_SQUOTE] = ACTIONS(2711), + [anon_sym_u_SQUOTE] = ACTIONS(2711), + [anon_sym_U_SQUOTE] = ACTIONS(2711), + [anon_sym_u8_SQUOTE] = ACTIONS(2711), + [anon_sym_SQUOTE] = ACTIONS(2711), + [anon_sym_L_DQUOTE] = ACTIONS(2711), + [anon_sym_u_DQUOTE] = ACTIONS(2711), + [anon_sym_U_DQUOTE] = ACTIONS(2711), + [anon_sym_u8_DQUOTE] = ACTIONS(2711), + [anon_sym_DQUOTE] = ACTIONS(2711), + [sym_true] = ACTIONS(2709), + [sym_false] = ACTIONS(2709), + [anon_sym_NULL] = ACTIONS(2709), + [anon_sym_nullptr] = ACTIONS(2709), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2709), + [anon_sym_decltype] = ACTIONS(2709), + [anon_sym_virtual] = ACTIONS(2709), + [anon_sym_explicit] = ACTIONS(2709), + [anon_sym_typename] = ACTIONS(2709), + [anon_sym_template] = ACTIONS(2709), + [anon_sym_operator] = ACTIONS(2709), + [anon_sym_try] = ACTIONS(2709), + [anon_sym_delete] = ACTIONS(2709), + [anon_sym_throw] = ACTIONS(2709), + [anon_sym_namespace] = ACTIONS(2709), + [anon_sym_using] = ACTIONS(2709), + [anon_sym_static_assert] = ACTIONS(2709), + [anon_sym_concept] = ACTIONS(2709), + [anon_sym_co_return] = ACTIONS(2709), + [anon_sym_co_yield] = ACTIONS(2709), + [anon_sym_catch] = ACTIONS(3340), + [anon_sym_R_DQUOTE] = ACTIONS(2711), + [anon_sym_LR_DQUOTE] = ACTIONS(2711), + [anon_sym_uR_DQUOTE] = ACTIONS(2711), + [anon_sym_UR_DQUOTE] = ACTIONS(2711), + [anon_sym_u8R_DQUOTE] = ACTIONS(2711), + [anon_sym_co_await] = ACTIONS(2709), + [anon_sym_new] = ACTIONS(2709), + [anon_sym_requires] = ACTIONS(2709), + [sym_this] = ACTIONS(2709), + }, + [569] = { + [sym_identifier] = ACTIONS(3342), + [aux_sym_preproc_include_token1] = ACTIONS(3342), + [aux_sym_preproc_def_token1] = ACTIONS(3342), + [aux_sym_preproc_if_token1] = ACTIONS(3342), + [aux_sym_preproc_if_token2] = ACTIONS(3342), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3342), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3342), + [aux_sym_preproc_else_token1] = ACTIONS(3342), + [aux_sym_preproc_elif_token1] = ACTIONS(3342), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3342), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3342), + [sym_preproc_directive] = ACTIONS(3342), + [anon_sym_LPAREN2] = ACTIONS(3344), + [anon_sym_BANG] = ACTIONS(3344), + [anon_sym_TILDE] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3342), + [anon_sym_PLUS] = ACTIONS(3342), + [anon_sym_STAR] = ACTIONS(3344), + [anon_sym_AMP_AMP] = ACTIONS(3344), + [anon_sym_AMP] = ACTIONS(3342), + [anon_sym_SEMI] = ACTIONS(3344), + [anon_sym_typedef] = ACTIONS(3342), + [anon_sym_extern] = ACTIONS(3342), + [anon_sym___attribute__] = ACTIONS(3342), + [anon_sym_COLON_COLON] = ACTIONS(3344), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3344), + [anon_sym___declspec] = ACTIONS(3342), + [anon_sym___based] = ACTIONS(3342), + [anon_sym___cdecl] = ACTIONS(3342), + [anon_sym___clrcall] = ACTIONS(3342), + [anon_sym___stdcall] = ACTIONS(3342), + [anon_sym___fastcall] = ACTIONS(3342), + [anon_sym___thiscall] = ACTIONS(3342), + [anon_sym___vectorcall] = ACTIONS(3342), + [anon_sym_LBRACE] = ACTIONS(3344), + [anon_sym_LBRACK] = ACTIONS(3342), + [anon_sym_static] = ACTIONS(3342), + [anon_sym_register] = ACTIONS(3342), + [anon_sym_inline] = ACTIONS(3342), + [anon_sym_thread_local] = ACTIONS(3342), + [anon_sym_const] = ACTIONS(3342), + [anon_sym_constexpr] = ACTIONS(3342), + [anon_sym_volatile] = ACTIONS(3342), + [anon_sym_restrict] = ACTIONS(3342), + [anon_sym___restrict__] = ACTIONS(3342), + [anon_sym__Atomic] = ACTIONS(3342), + [anon_sym__Noreturn] = ACTIONS(3342), + [anon_sym_noreturn] = ACTIONS(3342), + [anon_sym_mutable] = ACTIONS(3342), + [anon_sym_constinit] = ACTIONS(3342), + [anon_sym_consteval] = ACTIONS(3342), + [anon_sym_signed] = ACTIONS(3342), + [anon_sym_unsigned] = ACTIONS(3342), + [anon_sym_long] = ACTIONS(3342), + [anon_sym_short] = ACTIONS(3342), + [sym_primitive_type] = ACTIONS(3342), + [anon_sym_enum] = ACTIONS(3342), + [anon_sym_class] = ACTIONS(3342), + [anon_sym_struct] = ACTIONS(3342), + [anon_sym_union] = ACTIONS(3342), + [anon_sym_if] = ACTIONS(3342), + [anon_sym_switch] = ACTIONS(3342), + [anon_sym_case] = ACTIONS(3342), + [anon_sym_default] = ACTIONS(3342), + [anon_sym_while] = ACTIONS(3342), + [anon_sym_do] = ACTIONS(3342), + [anon_sym_for] = ACTIONS(3342), + [anon_sym_return] = ACTIONS(3342), + [anon_sym_break] = ACTIONS(3342), + [anon_sym_continue] = ACTIONS(3342), + [anon_sym_goto] = ACTIONS(3342), + [anon_sym_not] = ACTIONS(3342), + [anon_sym_compl] = ACTIONS(3342), + [anon_sym_DASH_DASH] = ACTIONS(3344), + [anon_sym_PLUS_PLUS] = ACTIONS(3344), + [anon_sym_sizeof] = ACTIONS(3342), + [anon_sym_offsetof] = ACTIONS(3342), + [anon_sym__Generic] = ACTIONS(3342), + [anon_sym_asm] = ACTIONS(3342), + [anon_sym___asm__] = ACTIONS(3342), + [sym_number_literal] = ACTIONS(3344), + [anon_sym_L_SQUOTE] = ACTIONS(3344), + [anon_sym_u_SQUOTE] = ACTIONS(3344), + [anon_sym_U_SQUOTE] = ACTIONS(3344), + [anon_sym_u8_SQUOTE] = ACTIONS(3344), + [anon_sym_SQUOTE] = ACTIONS(3344), + [anon_sym_L_DQUOTE] = ACTIONS(3344), + [anon_sym_u_DQUOTE] = ACTIONS(3344), + [anon_sym_U_DQUOTE] = ACTIONS(3344), + [anon_sym_u8_DQUOTE] = ACTIONS(3344), + [anon_sym_DQUOTE] = ACTIONS(3344), + [sym_true] = ACTIONS(3342), + [sym_false] = ACTIONS(3342), + [anon_sym_NULL] = ACTIONS(3342), + [anon_sym_nullptr] = ACTIONS(3342), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3342), + [anon_sym_decltype] = ACTIONS(3342), + [anon_sym_virtual] = ACTIONS(3342), + [anon_sym_explicit] = ACTIONS(3342), + [anon_sym_typename] = ACTIONS(3342), + [anon_sym_template] = ACTIONS(3342), + [anon_sym_operator] = ACTIONS(3342), + [anon_sym_try] = ACTIONS(3342), + [anon_sym_delete] = ACTIONS(3342), + [anon_sym_throw] = ACTIONS(3342), + [anon_sym_namespace] = ACTIONS(3342), + [anon_sym_using] = ACTIONS(3342), + [anon_sym_static_assert] = ACTIONS(3342), + [anon_sym_concept] = ACTIONS(3342), + [anon_sym_co_return] = ACTIONS(3342), + [anon_sym_co_yield] = ACTIONS(3342), + [anon_sym_R_DQUOTE] = ACTIONS(3344), + [anon_sym_LR_DQUOTE] = ACTIONS(3344), + [anon_sym_uR_DQUOTE] = ACTIONS(3344), + [anon_sym_UR_DQUOTE] = ACTIONS(3344), + [anon_sym_u8R_DQUOTE] = ACTIONS(3344), + [anon_sym_co_await] = ACTIONS(3342), + [anon_sym_new] = ACTIONS(3342), + [anon_sym_requires] = ACTIONS(3342), + [sym_this] = ACTIONS(3342), + }, + [570] = { + [sym_catch_clause] = STATE(570), + [aux_sym_constructor_try_statement_repeat1] = STATE(570), + [sym_identifier] = ACTIONS(2684), + [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2686), + [anon_sym_AMP] = ACTIONS(2684), + [anon_sym_SEMI] = ACTIONS(2686), + [anon_sym_typedef] = ACTIONS(2684), + [anon_sym_extern] = ACTIONS(2684), + [anon_sym___attribute__] = ACTIONS(2684), + [anon_sym_COLON_COLON] = ACTIONS(2686), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2686), + [anon_sym___declspec] = ACTIONS(2684), + [anon_sym___based] = 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_LBRACK] = ACTIONS(2684), + [anon_sym_static] = ACTIONS(2684), + [anon_sym_register] = ACTIONS(2684), + [anon_sym_inline] = ACTIONS(2684), + [anon_sym_thread_local] = 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_noreturn] = ACTIONS(2684), + [anon_sym_mutable] = ACTIONS(2684), + [anon_sym_constinit] = ACTIONS(2684), + [anon_sym_consteval] = ACTIONS(2684), + [anon_sym_signed] = ACTIONS(2684), + [anon_sym_unsigned] = ACTIONS(2684), + [anon_sym_long] = ACTIONS(2684), + [anon_sym_short] = ACTIONS(2684), + [sym_primitive_type] = ACTIONS(2684), + [anon_sym_enum] = ACTIONS(2684), + [anon_sym_class] = ACTIONS(2684), + [anon_sym_struct] = ACTIONS(2684), + [anon_sym_union] = ACTIONS(2684), + [anon_sym_if] = ACTIONS(2684), + [anon_sym_else] = 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_return] = ACTIONS(2684), + [anon_sym_break] = ACTIONS(2684), + [anon_sym_continue] = ACTIONS(2684), + [anon_sym_goto] = ACTIONS(2684), + [anon_sym_not] = ACTIONS(2684), + [anon_sym_compl] = ACTIONS(2684), + [anon_sym_DASH_DASH] = ACTIONS(2686), + [anon_sym_PLUS_PLUS] = ACTIONS(2686), + [anon_sym_sizeof] = ACTIONS(2684), + [anon_sym_offsetof] = ACTIONS(2684), + [anon_sym__Generic] = 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_L_DQUOTE] = ACTIONS(2686), + [anon_sym_u_DQUOTE] = ACTIONS(2686), + [anon_sym_U_DQUOTE] = ACTIONS(2686), + [anon_sym_u8_DQUOTE] = ACTIONS(2686), + [anon_sym_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), + [sym_auto] = ACTIONS(2684), + [anon_sym_decltype] = ACTIONS(2684), + [anon_sym_virtual] = ACTIONS(2684), + [anon_sym_explicit] = ACTIONS(2684), + [anon_sym_typename] = ACTIONS(2684), + [anon_sym_template] = ACTIONS(2684), + [anon_sym_operator] = ACTIONS(2684), + [anon_sym_try] = ACTIONS(2684), + [anon_sym_delete] = ACTIONS(2684), + [anon_sym_throw] = ACTIONS(2684), + [anon_sym_namespace] = ACTIONS(2684), + [anon_sym_using] = ACTIONS(2684), + [anon_sym_static_assert] = ACTIONS(2684), + [anon_sym_concept] = ACTIONS(2684), + [anon_sym_co_return] = ACTIONS(2684), + [anon_sym_co_yield] = ACTIONS(2684), + [anon_sym_catch] = ACTIONS(3346), + [anon_sym_R_DQUOTE] = ACTIONS(2686), + [anon_sym_LR_DQUOTE] = ACTIONS(2686), + [anon_sym_uR_DQUOTE] = ACTIONS(2686), + [anon_sym_UR_DQUOTE] = ACTIONS(2686), + [anon_sym_u8R_DQUOTE] = ACTIONS(2686), + [anon_sym_co_await] = ACTIONS(2684), + [anon_sym_new] = ACTIONS(2684), + [anon_sym_requires] = ACTIONS(2684), + [sym_this] = ACTIONS(2684), + }, + [571] = { + [sym_identifier] = ACTIONS(3117), + [aux_sym_preproc_include_token1] = ACTIONS(3117), + [aux_sym_preproc_def_token1] = ACTIONS(3117), + [aux_sym_preproc_if_token1] = ACTIONS(3117), + [aux_sym_preproc_if_token2] = ACTIONS(3117), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3117), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3117), + [aux_sym_preproc_else_token1] = ACTIONS(3117), + [aux_sym_preproc_elif_token1] = ACTIONS(3117), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3117), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3117), + [sym_preproc_directive] = ACTIONS(3117), + [anon_sym_LPAREN2] = ACTIONS(3119), + [anon_sym_BANG] = ACTIONS(3119), + [anon_sym_TILDE] = ACTIONS(3119), + [anon_sym_DASH] = ACTIONS(3117), + [anon_sym_PLUS] = ACTIONS(3117), + [anon_sym_STAR] = ACTIONS(3119), + [anon_sym_AMP_AMP] = ACTIONS(3119), + [anon_sym_AMP] = ACTIONS(3117), + [anon_sym_SEMI] = ACTIONS(3119), + [anon_sym_typedef] = ACTIONS(3117), + [anon_sym_extern] = ACTIONS(3117), + [anon_sym___attribute__] = ACTIONS(3117), + [anon_sym_COLON_COLON] = ACTIONS(3119), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3119), + [anon_sym___declspec] = ACTIONS(3117), + [anon_sym___based] = ACTIONS(3117), + [anon_sym___cdecl] = ACTIONS(3117), + [anon_sym___clrcall] = ACTIONS(3117), + [anon_sym___stdcall] = ACTIONS(3117), + [anon_sym___fastcall] = ACTIONS(3117), + [anon_sym___thiscall] = ACTIONS(3117), + [anon_sym___vectorcall] = ACTIONS(3117), + [anon_sym_LBRACE] = ACTIONS(3119), + [anon_sym_LBRACK] = ACTIONS(3117), + [anon_sym_static] = ACTIONS(3117), + [anon_sym_register] = ACTIONS(3117), + [anon_sym_inline] = ACTIONS(3117), + [anon_sym_thread_local] = ACTIONS(3117), + [anon_sym_const] = ACTIONS(3117), + [anon_sym_constexpr] = ACTIONS(3117), + [anon_sym_volatile] = ACTIONS(3117), + [anon_sym_restrict] = ACTIONS(3117), + [anon_sym___restrict__] = ACTIONS(3117), + [anon_sym__Atomic] = ACTIONS(3117), + [anon_sym__Noreturn] = ACTIONS(3117), + [anon_sym_noreturn] = ACTIONS(3117), + [anon_sym_mutable] = ACTIONS(3117), + [anon_sym_constinit] = ACTIONS(3117), + [anon_sym_consteval] = ACTIONS(3117), + [anon_sym_signed] = ACTIONS(3117), + [anon_sym_unsigned] = ACTIONS(3117), + [anon_sym_long] = ACTIONS(3117), + [anon_sym_short] = ACTIONS(3117), + [sym_primitive_type] = ACTIONS(3117), + [anon_sym_enum] = ACTIONS(3117), + [anon_sym_class] = ACTIONS(3117), + [anon_sym_struct] = ACTIONS(3117), + [anon_sym_union] = ACTIONS(3117), + [anon_sym_if] = ACTIONS(3117), + [anon_sym_switch] = ACTIONS(3117), + [anon_sym_case] = ACTIONS(3117), + [anon_sym_default] = ACTIONS(3117), + [anon_sym_while] = ACTIONS(3117), + [anon_sym_do] = ACTIONS(3117), + [anon_sym_for] = ACTIONS(3117), + [anon_sym_return] = ACTIONS(3117), + [anon_sym_break] = ACTIONS(3117), + [anon_sym_continue] = ACTIONS(3117), + [anon_sym_goto] = ACTIONS(3117), + [anon_sym_not] = ACTIONS(3117), + [anon_sym_compl] = ACTIONS(3117), + [anon_sym_DASH_DASH] = ACTIONS(3119), + [anon_sym_PLUS_PLUS] = ACTIONS(3119), + [anon_sym_sizeof] = ACTIONS(3117), + [anon_sym_offsetof] = ACTIONS(3117), + [anon_sym__Generic] = ACTIONS(3117), + [anon_sym_asm] = ACTIONS(3117), + [anon_sym___asm__] = ACTIONS(3117), + [sym_number_literal] = ACTIONS(3119), + [anon_sym_L_SQUOTE] = ACTIONS(3119), + [anon_sym_u_SQUOTE] = ACTIONS(3119), + [anon_sym_U_SQUOTE] = ACTIONS(3119), + [anon_sym_u8_SQUOTE] = ACTIONS(3119), + [anon_sym_SQUOTE] = ACTIONS(3119), + [anon_sym_L_DQUOTE] = ACTIONS(3119), + [anon_sym_u_DQUOTE] = ACTIONS(3119), + [anon_sym_U_DQUOTE] = ACTIONS(3119), + [anon_sym_u8_DQUOTE] = ACTIONS(3119), + [anon_sym_DQUOTE] = ACTIONS(3119), + [sym_true] = ACTIONS(3117), + [sym_false] = ACTIONS(3117), + [anon_sym_NULL] = ACTIONS(3117), + [anon_sym_nullptr] = ACTIONS(3117), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3117), + [anon_sym_decltype] = ACTIONS(3117), + [anon_sym_virtual] = ACTIONS(3117), + [anon_sym_explicit] = ACTIONS(3117), + [anon_sym_typename] = ACTIONS(3117), + [anon_sym_template] = ACTIONS(3117), + [anon_sym_operator] = ACTIONS(3117), + [anon_sym_try] = ACTIONS(3117), + [anon_sym_delete] = ACTIONS(3117), + [anon_sym_throw] = ACTIONS(3117), + [anon_sym_namespace] = ACTIONS(3117), + [anon_sym_using] = ACTIONS(3117), + [anon_sym_static_assert] = ACTIONS(3117), + [anon_sym_concept] = ACTIONS(3117), + [anon_sym_co_return] = ACTIONS(3117), + [anon_sym_co_yield] = ACTIONS(3117), + [anon_sym_R_DQUOTE] = ACTIONS(3119), + [anon_sym_LR_DQUOTE] = ACTIONS(3119), + [anon_sym_uR_DQUOTE] = ACTIONS(3119), + [anon_sym_UR_DQUOTE] = ACTIONS(3119), + [anon_sym_u8R_DQUOTE] = ACTIONS(3119), + [anon_sym_co_await] = ACTIONS(3117), + [anon_sym_new] = ACTIONS(3117), + [anon_sym_requires] = ACTIONS(3117), + [sym_this] = ACTIONS(3117), + }, + [572] = { + [sym__expression] = STATE(4206), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7493), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3129), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(3349), + [anon_sym_extern] = ACTIONS(2966), + [anon_sym___attribute__] = ACTIONS(2966), + [anon_sym_COLON_COLON] = ACTIONS(3134), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2968), + [anon_sym___declspec] = ACTIONS(2966), + [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_static] = ACTIONS(2966), + [anon_sym_register] = ACTIONS(2966), + [anon_sym_inline] = ACTIONS(2966), + [anon_sym_thread_local] = 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_noreturn] = ACTIONS(2966), + [anon_sym_mutable] = ACTIONS(2966), + [anon_sym_constinit] = ACTIONS(2966), + [anon_sym_consteval] = ACTIONS(2966), + [anon_sym_signed] = ACTIONS(2966), + [anon_sym_unsigned] = ACTIONS(2966), + [anon_sym_long] = ACTIONS(2966), + [anon_sym_short] = ACTIONS(2966), + [sym_primitive_type] = ACTIONS(3137), + [anon_sym_enum] = ACTIONS(2966), + [anon_sym_class] = ACTIONS(2966), + [anon_sym_struct] = ACTIONS(2966), + [anon_sym_union] = ACTIONS(2966), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2966), + [anon_sym_decltype] = ACTIONS(3140), + [anon_sym_virtual] = ACTIONS(2966), + [anon_sym_typename] = ACTIONS(2966), + [anon_sym_template] = ACTIONS(3143), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), + }, + [573] = { + [sym_catch_clause] = STATE(573), + [aux_sym_constructor_try_statement_repeat1] = STATE(573), + [ts_builtin_sym_end] = ACTIONS(2686), + [sym_identifier] = ACTIONS(2684), + [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2686), + [anon_sym_AMP] = ACTIONS(2684), + [anon_sym_SEMI] = ACTIONS(2686), + [anon_sym_typedef] = ACTIONS(2684), + [anon_sym_extern] = ACTIONS(2684), + [anon_sym___attribute__] = ACTIONS(2684), + [anon_sym_COLON_COLON] = ACTIONS(2686), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2686), + [anon_sym___declspec] = ACTIONS(2684), + [anon_sym___based] = 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_LBRACK] = ACTIONS(2684), + [anon_sym_static] = ACTIONS(2684), + [anon_sym_register] = ACTIONS(2684), + [anon_sym_inline] = ACTIONS(2684), + [anon_sym_thread_local] = 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_noreturn] = ACTIONS(2684), + [anon_sym_mutable] = ACTIONS(2684), + [anon_sym_constinit] = ACTIONS(2684), + [anon_sym_consteval] = ACTIONS(2684), + [anon_sym_signed] = ACTIONS(2684), + [anon_sym_unsigned] = ACTIONS(2684), + [anon_sym_long] = ACTIONS(2684), + [anon_sym_short] = ACTIONS(2684), + [sym_primitive_type] = ACTIONS(2684), + [anon_sym_enum] = ACTIONS(2684), + [anon_sym_class] = ACTIONS(2684), + [anon_sym_struct] = ACTIONS(2684), + [anon_sym_union] = ACTIONS(2684), + [anon_sym_if] = ACTIONS(2684), + [anon_sym_else] = 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_return] = ACTIONS(2684), + [anon_sym_break] = ACTIONS(2684), + [anon_sym_continue] = ACTIONS(2684), + [anon_sym_goto] = ACTIONS(2684), + [anon_sym_not] = ACTIONS(2684), + [anon_sym_compl] = ACTIONS(2684), + [anon_sym_DASH_DASH] = ACTIONS(2686), + [anon_sym_PLUS_PLUS] = ACTIONS(2686), + [anon_sym_sizeof] = ACTIONS(2684), + [anon_sym_offsetof] = ACTIONS(2684), + [anon_sym__Generic] = 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_L_DQUOTE] = ACTIONS(2686), + [anon_sym_u_DQUOTE] = ACTIONS(2686), + [anon_sym_U_DQUOTE] = ACTIONS(2686), + [anon_sym_u8_DQUOTE] = ACTIONS(2686), + [anon_sym_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), + [sym_auto] = ACTIONS(2684), + [anon_sym_decltype] = ACTIONS(2684), + [anon_sym_virtual] = ACTIONS(2684), + [anon_sym_explicit] = ACTIONS(2684), + [anon_sym_typename] = ACTIONS(2684), + [anon_sym_template] = ACTIONS(2684), + [anon_sym_operator] = ACTIONS(2684), + [anon_sym_try] = ACTIONS(2684), + [anon_sym_delete] = ACTIONS(2684), + [anon_sym_throw] = ACTIONS(2684), + [anon_sym_namespace] = ACTIONS(2684), + [anon_sym_using] = ACTIONS(2684), + [anon_sym_static_assert] = ACTIONS(2684), + [anon_sym_concept] = ACTIONS(2684), + [anon_sym_co_return] = ACTIONS(2684), + [anon_sym_co_yield] = ACTIONS(2684), + [anon_sym_catch] = ACTIONS(3351), + [anon_sym_R_DQUOTE] = ACTIONS(2686), + [anon_sym_LR_DQUOTE] = ACTIONS(2686), + [anon_sym_uR_DQUOTE] = ACTIONS(2686), + [anon_sym_UR_DQUOTE] = ACTIONS(2686), + [anon_sym_u8R_DQUOTE] = ACTIONS(2686), + [anon_sym_co_await] = ACTIONS(2684), + [anon_sym_new] = ACTIONS(2684), + [anon_sym_requires] = ACTIONS(2684), + [sym_this] = ACTIONS(2684), + }, + [574] = { + [sym_identifier] = ACTIONS(3354), + [aux_sym_preproc_include_token1] = ACTIONS(3354), + [aux_sym_preproc_def_token1] = ACTIONS(3354), + [aux_sym_preproc_if_token1] = ACTIONS(3354), + [aux_sym_preproc_if_token2] = ACTIONS(3354), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3354), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3354), + [aux_sym_preproc_else_token1] = ACTIONS(3354), + [aux_sym_preproc_elif_token1] = ACTIONS(3354), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3354), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3354), + [sym_preproc_directive] = ACTIONS(3354), + [anon_sym_LPAREN2] = ACTIONS(3356), + [anon_sym_BANG] = ACTIONS(3356), + [anon_sym_TILDE] = ACTIONS(3356), + [anon_sym_DASH] = ACTIONS(3354), + [anon_sym_PLUS] = ACTIONS(3354), + [anon_sym_STAR] = ACTIONS(3356), + [anon_sym_AMP_AMP] = ACTIONS(3356), + [anon_sym_AMP] = ACTIONS(3354), + [anon_sym_SEMI] = ACTIONS(3356), + [anon_sym_typedef] = ACTIONS(3354), + [anon_sym_extern] = ACTIONS(3354), + [anon_sym___attribute__] = ACTIONS(3354), + [anon_sym_COLON_COLON] = ACTIONS(3356), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3356), + [anon_sym___declspec] = ACTIONS(3354), + [anon_sym___based] = ACTIONS(3354), + [anon_sym___cdecl] = ACTIONS(3354), + [anon_sym___clrcall] = ACTIONS(3354), + [anon_sym___stdcall] = ACTIONS(3354), + [anon_sym___fastcall] = ACTIONS(3354), + [anon_sym___thiscall] = ACTIONS(3354), + [anon_sym___vectorcall] = ACTIONS(3354), + [anon_sym_LBRACE] = ACTIONS(3356), + [anon_sym_LBRACK] = ACTIONS(3354), + [anon_sym_static] = ACTIONS(3354), + [anon_sym_register] = ACTIONS(3354), + [anon_sym_inline] = ACTIONS(3354), + [anon_sym_thread_local] = ACTIONS(3354), + [anon_sym_const] = ACTIONS(3354), + [anon_sym_constexpr] = ACTIONS(3354), + [anon_sym_volatile] = ACTIONS(3354), + [anon_sym_restrict] = ACTIONS(3354), + [anon_sym___restrict__] = ACTIONS(3354), + [anon_sym__Atomic] = ACTIONS(3354), + [anon_sym__Noreturn] = ACTIONS(3354), + [anon_sym_noreturn] = ACTIONS(3354), + [anon_sym_mutable] = ACTIONS(3354), + [anon_sym_constinit] = ACTIONS(3354), + [anon_sym_consteval] = ACTIONS(3354), + [anon_sym_signed] = ACTIONS(3354), + [anon_sym_unsigned] = ACTIONS(3354), + [anon_sym_long] = ACTIONS(3354), + [anon_sym_short] = ACTIONS(3354), + [sym_primitive_type] = ACTIONS(3354), + [anon_sym_enum] = ACTIONS(3354), + [anon_sym_class] = ACTIONS(3354), + [anon_sym_struct] = ACTIONS(3354), + [anon_sym_union] = ACTIONS(3354), + [anon_sym_if] = ACTIONS(3354), + [anon_sym_switch] = ACTIONS(3354), + [anon_sym_case] = ACTIONS(3354), + [anon_sym_default] = ACTIONS(3354), + [anon_sym_while] = ACTIONS(3354), + [anon_sym_do] = ACTIONS(3354), + [anon_sym_for] = ACTIONS(3354), + [anon_sym_return] = ACTIONS(3354), + [anon_sym_break] = ACTIONS(3354), + [anon_sym_continue] = ACTIONS(3354), + [anon_sym_goto] = ACTIONS(3354), + [anon_sym_not] = ACTIONS(3354), + [anon_sym_compl] = ACTIONS(3354), + [anon_sym_DASH_DASH] = ACTIONS(3356), + [anon_sym_PLUS_PLUS] = ACTIONS(3356), + [anon_sym_sizeof] = ACTIONS(3354), + [anon_sym_offsetof] = ACTIONS(3354), + [anon_sym__Generic] = ACTIONS(3354), + [anon_sym_asm] = ACTIONS(3354), + [anon_sym___asm__] = ACTIONS(3354), + [sym_number_literal] = ACTIONS(3356), + [anon_sym_L_SQUOTE] = ACTIONS(3356), + [anon_sym_u_SQUOTE] = ACTIONS(3356), + [anon_sym_U_SQUOTE] = ACTIONS(3356), + [anon_sym_u8_SQUOTE] = ACTIONS(3356), + [anon_sym_SQUOTE] = ACTIONS(3356), + [anon_sym_L_DQUOTE] = ACTIONS(3356), + [anon_sym_u_DQUOTE] = ACTIONS(3356), + [anon_sym_U_DQUOTE] = ACTIONS(3356), + [anon_sym_u8_DQUOTE] = ACTIONS(3356), + [anon_sym_DQUOTE] = ACTIONS(3356), + [sym_true] = ACTIONS(3354), + [sym_false] = ACTIONS(3354), + [anon_sym_NULL] = ACTIONS(3354), + [anon_sym_nullptr] = ACTIONS(3354), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3354), + [anon_sym_decltype] = ACTIONS(3354), + [anon_sym_virtual] = ACTIONS(3354), + [anon_sym_explicit] = ACTIONS(3354), + [anon_sym_typename] = ACTIONS(3354), + [anon_sym_template] = ACTIONS(3354), + [anon_sym_operator] = ACTIONS(3354), + [anon_sym_try] = ACTIONS(3354), + [anon_sym_delete] = ACTIONS(3354), + [anon_sym_throw] = ACTIONS(3354), + [anon_sym_namespace] = ACTIONS(3354), + [anon_sym_using] = ACTIONS(3354), + [anon_sym_static_assert] = ACTIONS(3354), + [anon_sym_concept] = ACTIONS(3354), + [anon_sym_co_return] = ACTIONS(3354), + [anon_sym_co_yield] = ACTIONS(3354), + [anon_sym_R_DQUOTE] = ACTIONS(3356), + [anon_sym_LR_DQUOTE] = ACTIONS(3356), + [anon_sym_uR_DQUOTE] = ACTIONS(3356), + [anon_sym_UR_DQUOTE] = ACTIONS(3356), + [anon_sym_u8R_DQUOTE] = ACTIONS(3356), + [anon_sym_co_await] = ACTIONS(3354), + [anon_sym_new] = ACTIONS(3354), + [anon_sym_requires] = ACTIONS(3354), + [sym_this] = ACTIONS(3354), + }, + [575] = { + [sym_identifier] = ACTIONS(3358), + [aux_sym_preproc_include_token1] = ACTIONS(3358), + [aux_sym_preproc_def_token1] = ACTIONS(3358), + [aux_sym_preproc_if_token1] = ACTIONS(3358), + [aux_sym_preproc_if_token2] = ACTIONS(3358), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3358), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3358), + [aux_sym_preproc_else_token1] = ACTIONS(3358), + [aux_sym_preproc_elif_token1] = ACTIONS(3358), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3358), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3358), + [sym_preproc_directive] = ACTIONS(3358), + [anon_sym_LPAREN2] = ACTIONS(3360), + [anon_sym_BANG] = ACTIONS(3360), + [anon_sym_TILDE] = ACTIONS(3360), + [anon_sym_DASH] = ACTIONS(3358), + [anon_sym_PLUS] = ACTIONS(3358), + [anon_sym_STAR] = ACTIONS(3360), + [anon_sym_AMP_AMP] = ACTIONS(3360), + [anon_sym_AMP] = ACTIONS(3358), + [anon_sym_SEMI] = ACTIONS(3360), + [anon_sym_typedef] = ACTIONS(3358), + [anon_sym_extern] = ACTIONS(3358), + [anon_sym___attribute__] = ACTIONS(3358), + [anon_sym_COLON_COLON] = ACTIONS(3360), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3360), + [anon_sym___declspec] = ACTIONS(3358), + [anon_sym___based] = ACTIONS(3358), + [anon_sym___cdecl] = ACTIONS(3358), + [anon_sym___clrcall] = ACTIONS(3358), + [anon_sym___stdcall] = ACTIONS(3358), + [anon_sym___fastcall] = ACTIONS(3358), + [anon_sym___thiscall] = ACTIONS(3358), + [anon_sym___vectorcall] = ACTIONS(3358), + [anon_sym_LBRACE] = ACTIONS(3360), + [anon_sym_LBRACK] = ACTIONS(3358), + [anon_sym_static] = ACTIONS(3358), + [anon_sym_register] = ACTIONS(3358), + [anon_sym_inline] = ACTIONS(3358), + [anon_sym_thread_local] = ACTIONS(3358), + [anon_sym_const] = ACTIONS(3358), + [anon_sym_constexpr] = ACTIONS(3358), + [anon_sym_volatile] = ACTIONS(3358), + [anon_sym_restrict] = ACTIONS(3358), + [anon_sym___restrict__] = ACTIONS(3358), + [anon_sym__Atomic] = ACTIONS(3358), + [anon_sym__Noreturn] = ACTIONS(3358), + [anon_sym_noreturn] = ACTIONS(3358), + [anon_sym_mutable] = ACTIONS(3358), + [anon_sym_constinit] = ACTIONS(3358), + [anon_sym_consteval] = ACTIONS(3358), + [anon_sym_signed] = ACTIONS(3358), + [anon_sym_unsigned] = ACTIONS(3358), + [anon_sym_long] = ACTIONS(3358), + [anon_sym_short] = ACTIONS(3358), + [sym_primitive_type] = ACTIONS(3358), + [anon_sym_enum] = ACTIONS(3358), + [anon_sym_class] = ACTIONS(3358), + [anon_sym_struct] = ACTIONS(3358), + [anon_sym_union] = ACTIONS(3358), + [anon_sym_if] = ACTIONS(3358), + [anon_sym_switch] = ACTIONS(3358), + [anon_sym_case] = ACTIONS(3358), + [anon_sym_default] = ACTIONS(3358), + [anon_sym_while] = ACTIONS(3358), + [anon_sym_do] = ACTIONS(3358), + [anon_sym_for] = ACTIONS(3358), + [anon_sym_return] = ACTIONS(3358), + [anon_sym_break] = ACTIONS(3358), + [anon_sym_continue] = ACTIONS(3358), + [anon_sym_goto] = ACTIONS(3358), + [anon_sym_not] = ACTIONS(3358), + [anon_sym_compl] = ACTIONS(3358), + [anon_sym_DASH_DASH] = ACTIONS(3360), + [anon_sym_PLUS_PLUS] = ACTIONS(3360), + [anon_sym_sizeof] = ACTIONS(3358), + [anon_sym_offsetof] = ACTIONS(3358), + [anon_sym__Generic] = ACTIONS(3358), + [anon_sym_asm] = ACTIONS(3358), + [anon_sym___asm__] = ACTIONS(3358), + [sym_number_literal] = ACTIONS(3360), + [anon_sym_L_SQUOTE] = ACTIONS(3360), + [anon_sym_u_SQUOTE] = ACTIONS(3360), + [anon_sym_U_SQUOTE] = ACTIONS(3360), + [anon_sym_u8_SQUOTE] = ACTIONS(3360), + [anon_sym_SQUOTE] = ACTIONS(3360), + [anon_sym_L_DQUOTE] = ACTIONS(3360), + [anon_sym_u_DQUOTE] = ACTIONS(3360), + [anon_sym_U_DQUOTE] = ACTIONS(3360), + [anon_sym_u8_DQUOTE] = ACTIONS(3360), + [anon_sym_DQUOTE] = ACTIONS(3360), + [sym_true] = ACTIONS(3358), + [sym_false] = ACTIONS(3358), + [anon_sym_NULL] = ACTIONS(3358), + [anon_sym_nullptr] = ACTIONS(3358), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3358), + [anon_sym_decltype] = ACTIONS(3358), + [anon_sym_virtual] = ACTIONS(3358), + [anon_sym_explicit] = ACTIONS(3358), + [anon_sym_typename] = ACTIONS(3358), + [anon_sym_template] = ACTIONS(3358), + [anon_sym_operator] = ACTIONS(3358), + [anon_sym_try] = ACTIONS(3358), + [anon_sym_delete] = ACTIONS(3358), + [anon_sym_throw] = ACTIONS(3358), + [anon_sym_namespace] = ACTIONS(3358), + [anon_sym_using] = ACTIONS(3358), + [anon_sym_static_assert] = ACTIONS(3358), + [anon_sym_concept] = ACTIONS(3358), + [anon_sym_co_return] = ACTIONS(3358), + [anon_sym_co_yield] = ACTIONS(3358), + [anon_sym_R_DQUOTE] = ACTIONS(3360), + [anon_sym_LR_DQUOTE] = ACTIONS(3360), + [anon_sym_uR_DQUOTE] = ACTIONS(3360), + [anon_sym_UR_DQUOTE] = ACTIONS(3360), + [anon_sym_u8R_DQUOTE] = ACTIONS(3360), + [anon_sym_co_await] = ACTIONS(3358), + [anon_sym_new] = ACTIONS(3358), + [anon_sym_requires] = ACTIONS(3358), + [sym_this] = ACTIONS(3358), + }, + [576] = { + [sym__expression] = STATE(4151), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7048), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3129), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(3362), + [anon_sym_extern] = ACTIONS(2966), + [anon_sym___attribute__] = ACTIONS(2966), + [anon_sym_COLON_COLON] = ACTIONS(3134), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2968), + [anon_sym___declspec] = ACTIONS(2966), + [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_static] = ACTIONS(2966), + [anon_sym_register] = ACTIONS(2966), + [anon_sym_inline] = ACTIONS(2966), + [anon_sym_thread_local] = 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_noreturn] = ACTIONS(2966), + [anon_sym_mutable] = ACTIONS(2966), + [anon_sym_constinit] = ACTIONS(2966), + [anon_sym_consteval] = ACTIONS(2966), + [anon_sym_signed] = ACTIONS(2966), + [anon_sym_unsigned] = ACTIONS(2966), + [anon_sym_long] = ACTIONS(2966), + [anon_sym_short] = ACTIONS(2966), + [sym_primitive_type] = ACTIONS(3137), + [anon_sym_enum] = ACTIONS(2966), + [anon_sym_class] = ACTIONS(2966), + [anon_sym_struct] = ACTIONS(2966), + [anon_sym_union] = ACTIONS(2966), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2966), + [anon_sym_decltype] = ACTIONS(3140), + [anon_sym_virtual] = ACTIONS(2966), + [anon_sym_typename] = ACTIONS(2966), + [anon_sym_template] = ACTIONS(3143), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), + }, + [577] = { + [sym_identifier] = ACTIONS(3364), + [aux_sym_preproc_include_token1] = ACTIONS(3364), + [aux_sym_preproc_def_token1] = ACTIONS(3364), + [aux_sym_preproc_if_token1] = ACTIONS(3364), + [aux_sym_preproc_if_token2] = ACTIONS(3364), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3364), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3364), + [aux_sym_preproc_else_token1] = ACTIONS(3364), + [aux_sym_preproc_elif_token1] = ACTIONS(3364), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3364), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3364), + [sym_preproc_directive] = ACTIONS(3364), + [anon_sym_LPAREN2] = ACTIONS(3366), + [anon_sym_BANG] = ACTIONS(3366), + [anon_sym_TILDE] = ACTIONS(3366), + [anon_sym_DASH] = ACTIONS(3364), + [anon_sym_PLUS] = ACTIONS(3364), + [anon_sym_STAR] = ACTIONS(3366), + [anon_sym_AMP_AMP] = ACTIONS(3366), + [anon_sym_AMP] = ACTIONS(3364), + [anon_sym_SEMI] = ACTIONS(3366), + [anon_sym_typedef] = ACTIONS(3364), + [anon_sym_extern] = ACTIONS(3364), + [anon_sym___attribute__] = ACTIONS(3364), + [anon_sym_COLON_COLON] = ACTIONS(3366), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3366), + [anon_sym___declspec] = ACTIONS(3364), + [anon_sym___based] = ACTIONS(3364), + [anon_sym___cdecl] = ACTIONS(3364), + [anon_sym___clrcall] = ACTIONS(3364), + [anon_sym___stdcall] = ACTIONS(3364), + [anon_sym___fastcall] = ACTIONS(3364), + [anon_sym___thiscall] = ACTIONS(3364), + [anon_sym___vectorcall] = ACTIONS(3364), + [anon_sym_LBRACE] = ACTIONS(3366), + [anon_sym_LBRACK] = ACTIONS(3364), + [anon_sym_static] = ACTIONS(3364), + [anon_sym_register] = ACTIONS(3364), + [anon_sym_inline] = ACTIONS(3364), + [anon_sym_thread_local] = ACTIONS(3364), + [anon_sym_const] = ACTIONS(3364), + [anon_sym_constexpr] = ACTIONS(3364), + [anon_sym_volatile] = ACTIONS(3364), + [anon_sym_restrict] = ACTIONS(3364), + [anon_sym___restrict__] = ACTIONS(3364), + [anon_sym__Atomic] = ACTIONS(3364), + [anon_sym__Noreturn] = ACTIONS(3364), + [anon_sym_noreturn] = ACTIONS(3364), + [anon_sym_mutable] = ACTIONS(3364), + [anon_sym_constinit] = ACTIONS(3364), + [anon_sym_consteval] = ACTIONS(3364), + [anon_sym_signed] = ACTIONS(3364), + [anon_sym_unsigned] = ACTIONS(3364), + [anon_sym_long] = ACTIONS(3364), + [anon_sym_short] = ACTIONS(3364), + [sym_primitive_type] = ACTIONS(3364), + [anon_sym_enum] = ACTIONS(3364), + [anon_sym_class] = ACTIONS(3364), + [anon_sym_struct] = ACTIONS(3364), + [anon_sym_union] = ACTIONS(3364), + [anon_sym_if] = ACTIONS(3364), + [anon_sym_switch] = ACTIONS(3364), + [anon_sym_case] = ACTIONS(3364), + [anon_sym_default] = ACTIONS(3364), + [anon_sym_while] = ACTIONS(3364), + [anon_sym_do] = ACTIONS(3364), + [anon_sym_for] = ACTIONS(3364), + [anon_sym_return] = ACTIONS(3364), + [anon_sym_break] = ACTIONS(3364), + [anon_sym_continue] = ACTIONS(3364), + [anon_sym_goto] = ACTIONS(3364), + [anon_sym_not] = ACTIONS(3364), + [anon_sym_compl] = ACTIONS(3364), + [anon_sym_DASH_DASH] = ACTIONS(3366), + [anon_sym_PLUS_PLUS] = ACTIONS(3366), + [anon_sym_sizeof] = ACTIONS(3364), + [anon_sym_offsetof] = ACTIONS(3364), + [anon_sym__Generic] = ACTIONS(3364), + [anon_sym_asm] = ACTIONS(3364), + [anon_sym___asm__] = ACTIONS(3364), + [sym_number_literal] = ACTIONS(3366), + [anon_sym_L_SQUOTE] = ACTIONS(3366), + [anon_sym_u_SQUOTE] = ACTIONS(3366), + [anon_sym_U_SQUOTE] = ACTIONS(3366), + [anon_sym_u8_SQUOTE] = ACTIONS(3366), + [anon_sym_SQUOTE] = ACTIONS(3366), + [anon_sym_L_DQUOTE] = ACTIONS(3366), + [anon_sym_u_DQUOTE] = ACTIONS(3366), + [anon_sym_U_DQUOTE] = ACTIONS(3366), + [anon_sym_u8_DQUOTE] = ACTIONS(3366), + [anon_sym_DQUOTE] = ACTIONS(3366), + [sym_true] = ACTIONS(3364), + [sym_false] = ACTIONS(3364), + [anon_sym_NULL] = ACTIONS(3364), + [anon_sym_nullptr] = ACTIONS(3364), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3364), + [anon_sym_decltype] = ACTIONS(3364), + [anon_sym_virtual] = ACTIONS(3364), + [anon_sym_explicit] = ACTIONS(3364), + [anon_sym_typename] = ACTIONS(3364), + [anon_sym_template] = ACTIONS(3364), + [anon_sym_operator] = ACTIONS(3364), + [anon_sym_try] = ACTIONS(3364), + [anon_sym_delete] = ACTIONS(3364), + [anon_sym_throw] = ACTIONS(3364), + [anon_sym_namespace] = ACTIONS(3364), + [anon_sym_using] = ACTIONS(3364), + [anon_sym_static_assert] = ACTIONS(3364), + [anon_sym_concept] = ACTIONS(3364), + [anon_sym_co_return] = ACTIONS(3364), + [anon_sym_co_yield] = ACTIONS(3364), + [anon_sym_R_DQUOTE] = ACTIONS(3366), + [anon_sym_LR_DQUOTE] = ACTIONS(3366), + [anon_sym_uR_DQUOTE] = ACTIONS(3366), + [anon_sym_UR_DQUOTE] = ACTIONS(3366), + [anon_sym_u8R_DQUOTE] = ACTIONS(3366), + [anon_sym_co_await] = ACTIONS(3364), + [anon_sym_new] = ACTIONS(3364), + [anon_sym_requires] = ACTIONS(3364), + [sym_this] = ACTIONS(3364), + }, + [578] = { + [sym_identifier] = ACTIONS(3368), + [aux_sym_preproc_include_token1] = ACTIONS(3368), + [aux_sym_preproc_def_token1] = ACTIONS(3368), + [aux_sym_preproc_if_token1] = ACTIONS(3368), + [aux_sym_preproc_if_token2] = ACTIONS(3368), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3368), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3368), + [aux_sym_preproc_else_token1] = ACTIONS(3368), + [aux_sym_preproc_elif_token1] = ACTIONS(3368), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3368), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3368), + [sym_preproc_directive] = ACTIONS(3368), + [anon_sym_LPAREN2] = ACTIONS(3370), + [anon_sym_BANG] = ACTIONS(3370), + [anon_sym_TILDE] = ACTIONS(3370), + [anon_sym_DASH] = ACTIONS(3368), + [anon_sym_PLUS] = ACTIONS(3368), + [anon_sym_STAR] = ACTIONS(3370), + [anon_sym_AMP_AMP] = ACTIONS(3370), + [anon_sym_AMP] = ACTIONS(3368), + [anon_sym_SEMI] = ACTIONS(3370), + [anon_sym_typedef] = ACTIONS(3368), + [anon_sym_extern] = ACTIONS(3368), + [anon_sym___attribute__] = ACTIONS(3368), + [anon_sym_COLON_COLON] = ACTIONS(3370), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3370), + [anon_sym___declspec] = ACTIONS(3368), + [anon_sym___based] = ACTIONS(3368), + [anon_sym___cdecl] = ACTIONS(3368), + [anon_sym___clrcall] = ACTIONS(3368), + [anon_sym___stdcall] = ACTIONS(3368), + [anon_sym___fastcall] = ACTIONS(3368), + [anon_sym___thiscall] = ACTIONS(3368), + [anon_sym___vectorcall] = ACTIONS(3368), + [anon_sym_LBRACE] = ACTIONS(3370), + [anon_sym_LBRACK] = ACTIONS(3368), + [anon_sym_static] = ACTIONS(3368), + [anon_sym_register] = ACTIONS(3368), + [anon_sym_inline] = ACTIONS(3368), + [anon_sym_thread_local] = ACTIONS(3368), + [anon_sym_const] = ACTIONS(3368), + [anon_sym_constexpr] = ACTIONS(3368), + [anon_sym_volatile] = ACTIONS(3368), + [anon_sym_restrict] = ACTIONS(3368), + [anon_sym___restrict__] = ACTIONS(3368), + [anon_sym__Atomic] = ACTIONS(3368), + [anon_sym__Noreturn] = ACTIONS(3368), + [anon_sym_noreturn] = ACTIONS(3368), + [anon_sym_mutable] = ACTIONS(3368), + [anon_sym_constinit] = ACTIONS(3368), + [anon_sym_consteval] = ACTIONS(3368), + [anon_sym_signed] = ACTIONS(3368), + [anon_sym_unsigned] = ACTIONS(3368), + [anon_sym_long] = ACTIONS(3368), + [anon_sym_short] = ACTIONS(3368), + [sym_primitive_type] = ACTIONS(3368), + [anon_sym_enum] = ACTIONS(3368), + [anon_sym_class] = ACTIONS(3368), + [anon_sym_struct] = ACTIONS(3368), + [anon_sym_union] = ACTIONS(3368), + [anon_sym_if] = ACTIONS(3368), + [anon_sym_switch] = ACTIONS(3368), + [anon_sym_case] = ACTIONS(3368), + [anon_sym_default] = ACTIONS(3368), + [anon_sym_while] = ACTIONS(3368), + [anon_sym_do] = ACTIONS(3368), + [anon_sym_for] = ACTIONS(3368), + [anon_sym_return] = ACTIONS(3368), + [anon_sym_break] = ACTIONS(3368), + [anon_sym_continue] = ACTIONS(3368), + [anon_sym_goto] = ACTIONS(3368), + [anon_sym_not] = ACTIONS(3368), + [anon_sym_compl] = ACTIONS(3368), + [anon_sym_DASH_DASH] = ACTIONS(3370), + [anon_sym_PLUS_PLUS] = ACTIONS(3370), + [anon_sym_sizeof] = ACTIONS(3368), + [anon_sym_offsetof] = ACTIONS(3368), + [anon_sym__Generic] = ACTIONS(3368), + [anon_sym_asm] = ACTIONS(3368), + [anon_sym___asm__] = ACTIONS(3368), + [sym_number_literal] = ACTIONS(3370), + [anon_sym_L_SQUOTE] = ACTIONS(3370), + [anon_sym_u_SQUOTE] = ACTIONS(3370), + [anon_sym_U_SQUOTE] = ACTIONS(3370), + [anon_sym_u8_SQUOTE] = ACTIONS(3370), + [anon_sym_SQUOTE] = ACTIONS(3370), + [anon_sym_L_DQUOTE] = ACTIONS(3370), + [anon_sym_u_DQUOTE] = ACTIONS(3370), + [anon_sym_U_DQUOTE] = ACTIONS(3370), + [anon_sym_u8_DQUOTE] = ACTIONS(3370), + [anon_sym_DQUOTE] = ACTIONS(3370), + [sym_true] = ACTIONS(3368), + [sym_false] = ACTIONS(3368), + [anon_sym_NULL] = ACTIONS(3368), + [anon_sym_nullptr] = ACTIONS(3368), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3368), + [anon_sym_decltype] = ACTIONS(3368), + [anon_sym_virtual] = ACTIONS(3368), + [anon_sym_explicit] = ACTIONS(3368), + [anon_sym_typename] = ACTIONS(3368), + [anon_sym_template] = ACTIONS(3368), + [anon_sym_operator] = ACTIONS(3368), + [anon_sym_try] = ACTIONS(3368), + [anon_sym_delete] = ACTIONS(3368), + [anon_sym_throw] = ACTIONS(3368), + [anon_sym_namespace] = ACTIONS(3368), + [anon_sym_using] = ACTIONS(3368), + [anon_sym_static_assert] = ACTIONS(3368), + [anon_sym_concept] = ACTIONS(3368), + [anon_sym_co_return] = ACTIONS(3368), + [anon_sym_co_yield] = ACTIONS(3368), + [anon_sym_R_DQUOTE] = ACTIONS(3370), + [anon_sym_LR_DQUOTE] = ACTIONS(3370), + [anon_sym_uR_DQUOTE] = ACTIONS(3370), + [anon_sym_UR_DQUOTE] = ACTIONS(3370), + [anon_sym_u8R_DQUOTE] = ACTIONS(3370), + [anon_sym_co_await] = ACTIONS(3368), + [anon_sym_new] = ACTIONS(3368), + [anon_sym_requires] = ACTIONS(3368), + [sym_this] = ACTIONS(3368), + }, + [579] = { + [sym_identifier] = ACTIONS(3372), + [aux_sym_preproc_include_token1] = ACTIONS(3372), + [aux_sym_preproc_def_token1] = ACTIONS(3372), + [aux_sym_preproc_if_token1] = ACTIONS(3372), + [aux_sym_preproc_if_token2] = ACTIONS(3372), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3372), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3372), + [aux_sym_preproc_else_token1] = ACTIONS(3372), + [aux_sym_preproc_elif_token1] = ACTIONS(3372), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3372), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3372), + [sym_preproc_directive] = ACTIONS(3372), + [anon_sym_LPAREN2] = ACTIONS(3374), + [anon_sym_BANG] = ACTIONS(3374), + [anon_sym_TILDE] = ACTIONS(3374), + [anon_sym_DASH] = ACTIONS(3372), + [anon_sym_PLUS] = ACTIONS(3372), + [anon_sym_STAR] = ACTIONS(3374), + [anon_sym_AMP_AMP] = ACTIONS(3374), + [anon_sym_AMP] = ACTIONS(3372), + [anon_sym_SEMI] = ACTIONS(3374), + [anon_sym_typedef] = ACTIONS(3372), + [anon_sym_extern] = ACTIONS(3372), + [anon_sym___attribute__] = ACTIONS(3372), + [anon_sym_COLON_COLON] = ACTIONS(3374), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3374), + [anon_sym___declspec] = ACTIONS(3372), + [anon_sym___based] = ACTIONS(3372), + [anon_sym___cdecl] = ACTIONS(3372), + [anon_sym___clrcall] = ACTIONS(3372), + [anon_sym___stdcall] = ACTIONS(3372), + [anon_sym___fastcall] = ACTIONS(3372), + [anon_sym___thiscall] = ACTIONS(3372), + [anon_sym___vectorcall] = ACTIONS(3372), + [anon_sym_LBRACE] = ACTIONS(3374), + [anon_sym_LBRACK] = ACTIONS(3372), + [anon_sym_static] = ACTIONS(3372), + [anon_sym_register] = ACTIONS(3372), + [anon_sym_inline] = ACTIONS(3372), + [anon_sym_thread_local] = ACTIONS(3372), + [anon_sym_const] = ACTIONS(3372), + [anon_sym_constexpr] = ACTIONS(3372), + [anon_sym_volatile] = ACTIONS(3372), + [anon_sym_restrict] = ACTIONS(3372), + [anon_sym___restrict__] = ACTIONS(3372), + [anon_sym__Atomic] = ACTIONS(3372), + [anon_sym__Noreturn] = ACTIONS(3372), + [anon_sym_noreturn] = ACTIONS(3372), + [anon_sym_mutable] = ACTIONS(3372), + [anon_sym_constinit] = ACTIONS(3372), + [anon_sym_consteval] = ACTIONS(3372), + [anon_sym_signed] = ACTIONS(3372), + [anon_sym_unsigned] = ACTIONS(3372), + [anon_sym_long] = ACTIONS(3372), + [anon_sym_short] = ACTIONS(3372), + [sym_primitive_type] = ACTIONS(3372), + [anon_sym_enum] = ACTIONS(3372), + [anon_sym_class] = ACTIONS(3372), + [anon_sym_struct] = ACTIONS(3372), + [anon_sym_union] = ACTIONS(3372), + [anon_sym_if] = ACTIONS(3372), + [anon_sym_switch] = ACTIONS(3372), + [anon_sym_case] = ACTIONS(3372), + [anon_sym_default] = ACTIONS(3372), + [anon_sym_while] = ACTIONS(3372), + [anon_sym_do] = ACTIONS(3372), + [anon_sym_for] = ACTIONS(3372), + [anon_sym_return] = ACTIONS(3372), + [anon_sym_break] = ACTIONS(3372), + [anon_sym_continue] = ACTIONS(3372), + [anon_sym_goto] = ACTIONS(3372), + [anon_sym_not] = ACTIONS(3372), + [anon_sym_compl] = ACTIONS(3372), + [anon_sym_DASH_DASH] = ACTIONS(3374), + [anon_sym_PLUS_PLUS] = ACTIONS(3374), + [anon_sym_sizeof] = ACTIONS(3372), + [anon_sym_offsetof] = ACTIONS(3372), + [anon_sym__Generic] = ACTIONS(3372), + [anon_sym_asm] = ACTIONS(3372), + [anon_sym___asm__] = ACTIONS(3372), + [sym_number_literal] = ACTIONS(3374), + [anon_sym_L_SQUOTE] = ACTIONS(3374), + [anon_sym_u_SQUOTE] = ACTIONS(3374), + [anon_sym_U_SQUOTE] = ACTIONS(3374), + [anon_sym_u8_SQUOTE] = ACTIONS(3374), + [anon_sym_SQUOTE] = ACTIONS(3374), + [anon_sym_L_DQUOTE] = ACTIONS(3374), + [anon_sym_u_DQUOTE] = ACTIONS(3374), + [anon_sym_U_DQUOTE] = ACTIONS(3374), + [anon_sym_u8_DQUOTE] = ACTIONS(3374), + [anon_sym_DQUOTE] = ACTIONS(3374), + [sym_true] = ACTIONS(3372), + [sym_false] = ACTIONS(3372), + [anon_sym_NULL] = ACTIONS(3372), + [anon_sym_nullptr] = ACTIONS(3372), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3372), + [anon_sym_decltype] = ACTIONS(3372), + [anon_sym_virtual] = ACTIONS(3372), + [anon_sym_explicit] = ACTIONS(3372), + [anon_sym_typename] = ACTIONS(3372), + [anon_sym_template] = ACTIONS(3372), + [anon_sym_operator] = ACTIONS(3372), + [anon_sym_try] = ACTIONS(3372), + [anon_sym_delete] = ACTIONS(3372), + [anon_sym_throw] = ACTIONS(3372), + [anon_sym_namespace] = ACTIONS(3372), + [anon_sym_using] = ACTIONS(3372), + [anon_sym_static_assert] = ACTIONS(3372), + [anon_sym_concept] = ACTIONS(3372), + [anon_sym_co_return] = ACTIONS(3372), + [anon_sym_co_yield] = ACTIONS(3372), + [anon_sym_R_DQUOTE] = ACTIONS(3374), + [anon_sym_LR_DQUOTE] = ACTIONS(3374), + [anon_sym_uR_DQUOTE] = ACTIONS(3374), + [anon_sym_UR_DQUOTE] = ACTIONS(3374), + [anon_sym_u8R_DQUOTE] = ACTIONS(3374), + [anon_sym_co_await] = ACTIONS(3372), + [anon_sym_new] = ACTIONS(3372), + [anon_sym_requires] = ACTIONS(3372), + [sym_this] = ACTIONS(3372), + }, + [580] = { + [sym_identifier] = ACTIONS(3376), + [aux_sym_preproc_include_token1] = ACTIONS(3376), + [aux_sym_preproc_def_token1] = ACTIONS(3376), + [aux_sym_preproc_if_token1] = ACTIONS(3376), + [aux_sym_preproc_if_token2] = ACTIONS(3376), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3376), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3376), + [aux_sym_preproc_else_token1] = ACTIONS(3376), + [aux_sym_preproc_elif_token1] = ACTIONS(3376), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3376), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3376), + [sym_preproc_directive] = ACTIONS(3376), + [anon_sym_LPAREN2] = ACTIONS(3378), + [anon_sym_BANG] = ACTIONS(3378), + [anon_sym_TILDE] = ACTIONS(3378), + [anon_sym_DASH] = ACTIONS(3376), + [anon_sym_PLUS] = ACTIONS(3376), + [anon_sym_STAR] = ACTIONS(3378), + [anon_sym_AMP_AMP] = ACTIONS(3378), + [anon_sym_AMP] = ACTIONS(3376), + [anon_sym_SEMI] = ACTIONS(3378), + [anon_sym_typedef] = ACTIONS(3376), + [anon_sym_extern] = ACTIONS(3376), + [anon_sym___attribute__] = ACTIONS(3376), + [anon_sym_COLON_COLON] = ACTIONS(3378), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3378), + [anon_sym___declspec] = ACTIONS(3376), + [anon_sym___based] = ACTIONS(3376), + [anon_sym___cdecl] = ACTIONS(3376), + [anon_sym___clrcall] = ACTIONS(3376), + [anon_sym___stdcall] = ACTIONS(3376), + [anon_sym___fastcall] = ACTIONS(3376), + [anon_sym___thiscall] = ACTIONS(3376), + [anon_sym___vectorcall] = ACTIONS(3376), + [anon_sym_LBRACE] = ACTIONS(3378), + [anon_sym_LBRACK] = ACTIONS(3376), + [anon_sym_static] = ACTIONS(3376), + [anon_sym_register] = ACTIONS(3376), + [anon_sym_inline] = ACTIONS(3376), + [anon_sym_thread_local] = ACTIONS(3376), + [anon_sym_const] = ACTIONS(3376), + [anon_sym_constexpr] = ACTIONS(3376), + [anon_sym_volatile] = ACTIONS(3376), + [anon_sym_restrict] = ACTIONS(3376), + [anon_sym___restrict__] = ACTIONS(3376), + [anon_sym__Atomic] = ACTIONS(3376), + [anon_sym__Noreturn] = ACTIONS(3376), + [anon_sym_noreturn] = ACTIONS(3376), + [anon_sym_mutable] = ACTIONS(3376), + [anon_sym_constinit] = ACTIONS(3376), + [anon_sym_consteval] = ACTIONS(3376), + [anon_sym_signed] = ACTIONS(3376), + [anon_sym_unsigned] = ACTIONS(3376), + [anon_sym_long] = ACTIONS(3376), + [anon_sym_short] = ACTIONS(3376), + [sym_primitive_type] = ACTIONS(3376), + [anon_sym_enum] = ACTIONS(3376), + [anon_sym_class] = ACTIONS(3376), + [anon_sym_struct] = ACTIONS(3376), + [anon_sym_union] = ACTIONS(3376), + [anon_sym_if] = ACTIONS(3376), + [anon_sym_switch] = ACTIONS(3376), + [anon_sym_case] = ACTIONS(3376), + [anon_sym_default] = ACTIONS(3376), + [anon_sym_while] = ACTIONS(3376), + [anon_sym_do] = ACTIONS(3376), + [anon_sym_for] = ACTIONS(3376), + [anon_sym_return] = ACTIONS(3376), + [anon_sym_break] = ACTIONS(3376), + [anon_sym_continue] = ACTIONS(3376), + [anon_sym_goto] = ACTIONS(3376), + [anon_sym_not] = ACTIONS(3376), + [anon_sym_compl] = ACTIONS(3376), + [anon_sym_DASH_DASH] = ACTIONS(3378), + [anon_sym_PLUS_PLUS] = ACTIONS(3378), + [anon_sym_sizeof] = ACTIONS(3376), + [anon_sym_offsetof] = ACTIONS(3376), + [anon_sym__Generic] = ACTIONS(3376), + [anon_sym_asm] = ACTIONS(3376), + [anon_sym___asm__] = ACTIONS(3376), + [sym_number_literal] = ACTIONS(3378), + [anon_sym_L_SQUOTE] = ACTIONS(3378), + [anon_sym_u_SQUOTE] = ACTIONS(3378), + [anon_sym_U_SQUOTE] = ACTIONS(3378), + [anon_sym_u8_SQUOTE] = ACTIONS(3378), + [anon_sym_SQUOTE] = ACTIONS(3378), + [anon_sym_L_DQUOTE] = ACTIONS(3378), + [anon_sym_u_DQUOTE] = ACTIONS(3378), + [anon_sym_U_DQUOTE] = ACTIONS(3378), + [anon_sym_u8_DQUOTE] = ACTIONS(3378), + [anon_sym_DQUOTE] = ACTIONS(3378), + [sym_true] = ACTIONS(3376), + [sym_false] = ACTIONS(3376), + [anon_sym_NULL] = ACTIONS(3376), + [anon_sym_nullptr] = ACTIONS(3376), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3376), + [anon_sym_decltype] = ACTIONS(3376), + [anon_sym_virtual] = ACTIONS(3376), + [anon_sym_explicit] = ACTIONS(3376), + [anon_sym_typename] = ACTIONS(3376), + [anon_sym_template] = ACTIONS(3376), + [anon_sym_operator] = ACTIONS(3376), + [anon_sym_try] = ACTIONS(3376), + [anon_sym_delete] = ACTIONS(3376), + [anon_sym_throw] = ACTIONS(3376), + [anon_sym_namespace] = ACTIONS(3376), + [anon_sym_using] = ACTIONS(3376), + [anon_sym_static_assert] = ACTIONS(3376), + [anon_sym_concept] = ACTIONS(3376), + [anon_sym_co_return] = ACTIONS(3376), + [anon_sym_co_yield] = ACTIONS(3376), + [anon_sym_R_DQUOTE] = ACTIONS(3378), + [anon_sym_LR_DQUOTE] = ACTIONS(3378), + [anon_sym_uR_DQUOTE] = ACTIONS(3378), + [anon_sym_UR_DQUOTE] = ACTIONS(3378), + [anon_sym_u8R_DQUOTE] = ACTIONS(3378), + [anon_sym_co_await] = ACTIONS(3376), + [anon_sym_new] = ACTIONS(3376), + [anon_sym_requires] = ACTIONS(3376), + [sym_this] = ACTIONS(3376), + }, + [581] = { + [sym_identifier] = ACTIONS(3380), + [aux_sym_preproc_include_token1] = ACTIONS(3380), + [aux_sym_preproc_def_token1] = ACTIONS(3380), + [aux_sym_preproc_if_token1] = ACTIONS(3380), + [aux_sym_preproc_if_token2] = ACTIONS(3380), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3380), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3380), + [aux_sym_preproc_else_token1] = ACTIONS(3380), + [aux_sym_preproc_elif_token1] = ACTIONS(3380), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3380), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3380), + [sym_preproc_directive] = ACTIONS(3380), + [anon_sym_LPAREN2] = ACTIONS(3382), + [anon_sym_BANG] = ACTIONS(3382), + [anon_sym_TILDE] = ACTIONS(3382), + [anon_sym_DASH] = ACTIONS(3380), + [anon_sym_PLUS] = ACTIONS(3380), + [anon_sym_STAR] = ACTIONS(3382), + [anon_sym_AMP_AMP] = ACTIONS(3382), + [anon_sym_AMP] = ACTIONS(3380), + [anon_sym_SEMI] = ACTIONS(3382), + [anon_sym_typedef] = ACTIONS(3380), + [anon_sym_extern] = ACTIONS(3380), + [anon_sym___attribute__] = ACTIONS(3380), + [anon_sym_COLON_COLON] = ACTIONS(3382), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3382), + [anon_sym___declspec] = ACTIONS(3380), + [anon_sym___based] = ACTIONS(3380), + [anon_sym___cdecl] = ACTIONS(3380), + [anon_sym___clrcall] = ACTIONS(3380), + [anon_sym___stdcall] = ACTIONS(3380), + [anon_sym___fastcall] = ACTIONS(3380), + [anon_sym___thiscall] = ACTIONS(3380), + [anon_sym___vectorcall] = ACTIONS(3380), + [anon_sym_LBRACE] = ACTIONS(3382), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_static] = ACTIONS(3380), + [anon_sym_register] = ACTIONS(3380), + [anon_sym_inline] = ACTIONS(3380), + [anon_sym_thread_local] = ACTIONS(3380), + [anon_sym_const] = ACTIONS(3380), + [anon_sym_constexpr] = ACTIONS(3380), + [anon_sym_volatile] = ACTIONS(3380), + [anon_sym_restrict] = ACTIONS(3380), + [anon_sym___restrict__] = ACTIONS(3380), + [anon_sym__Atomic] = ACTIONS(3380), + [anon_sym__Noreturn] = ACTIONS(3380), + [anon_sym_noreturn] = ACTIONS(3380), + [anon_sym_mutable] = ACTIONS(3380), + [anon_sym_constinit] = ACTIONS(3380), + [anon_sym_consteval] = ACTIONS(3380), + [anon_sym_signed] = ACTIONS(3380), + [anon_sym_unsigned] = ACTIONS(3380), + [anon_sym_long] = ACTIONS(3380), + [anon_sym_short] = ACTIONS(3380), + [sym_primitive_type] = ACTIONS(3380), + [anon_sym_enum] = ACTIONS(3380), + [anon_sym_class] = ACTIONS(3380), + [anon_sym_struct] = ACTIONS(3380), + [anon_sym_union] = ACTIONS(3380), + [anon_sym_if] = ACTIONS(3380), + [anon_sym_switch] = ACTIONS(3380), + [anon_sym_case] = ACTIONS(3380), + [anon_sym_default] = ACTIONS(3380), + [anon_sym_while] = ACTIONS(3380), + [anon_sym_do] = ACTIONS(3380), + [anon_sym_for] = ACTIONS(3380), + [anon_sym_return] = ACTIONS(3380), + [anon_sym_break] = ACTIONS(3380), + [anon_sym_continue] = ACTIONS(3380), + [anon_sym_goto] = ACTIONS(3380), + [anon_sym_not] = ACTIONS(3380), + [anon_sym_compl] = ACTIONS(3380), + [anon_sym_DASH_DASH] = ACTIONS(3382), + [anon_sym_PLUS_PLUS] = ACTIONS(3382), + [anon_sym_sizeof] = ACTIONS(3380), + [anon_sym_offsetof] = ACTIONS(3380), + [anon_sym__Generic] = ACTIONS(3380), + [anon_sym_asm] = ACTIONS(3380), + [anon_sym___asm__] = ACTIONS(3380), + [sym_number_literal] = ACTIONS(3382), + [anon_sym_L_SQUOTE] = ACTIONS(3382), + [anon_sym_u_SQUOTE] = ACTIONS(3382), + [anon_sym_U_SQUOTE] = ACTIONS(3382), + [anon_sym_u8_SQUOTE] = ACTIONS(3382), + [anon_sym_SQUOTE] = ACTIONS(3382), + [anon_sym_L_DQUOTE] = ACTIONS(3382), + [anon_sym_u_DQUOTE] = ACTIONS(3382), + [anon_sym_U_DQUOTE] = ACTIONS(3382), + [anon_sym_u8_DQUOTE] = ACTIONS(3382), + [anon_sym_DQUOTE] = ACTIONS(3382), + [sym_true] = ACTIONS(3380), + [sym_false] = ACTIONS(3380), + [anon_sym_NULL] = ACTIONS(3380), + [anon_sym_nullptr] = ACTIONS(3380), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3380), + [anon_sym_decltype] = ACTIONS(3380), + [anon_sym_virtual] = ACTIONS(3380), + [anon_sym_explicit] = ACTIONS(3380), + [anon_sym_typename] = ACTIONS(3380), + [anon_sym_template] = ACTIONS(3380), + [anon_sym_operator] = ACTIONS(3380), + [anon_sym_try] = ACTIONS(3380), + [anon_sym_delete] = ACTIONS(3380), + [anon_sym_throw] = ACTIONS(3380), + [anon_sym_namespace] = ACTIONS(3380), + [anon_sym_using] = ACTIONS(3380), + [anon_sym_static_assert] = ACTIONS(3380), + [anon_sym_concept] = ACTIONS(3380), + [anon_sym_co_return] = ACTIONS(3380), + [anon_sym_co_yield] = ACTIONS(3380), + [anon_sym_R_DQUOTE] = ACTIONS(3382), + [anon_sym_LR_DQUOTE] = ACTIONS(3382), + [anon_sym_uR_DQUOTE] = ACTIONS(3382), + [anon_sym_UR_DQUOTE] = ACTIONS(3382), + [anon_sym_u8R_DQUOTE] = ACTIONS(3382), + [anon_sym_co_await] = ACTIONS(3380), + [anon_sym_new] = ACTIONS(3380), + [anon_sym_requires] = ACTIONS(3380), + [sym_this] = ACTIONS(3380), + }, + [582] = { + [sym_identifier] = ACTIONS(3384), + [aux_sym_preproc_include_token1] = ACTIONS(3384), + [aux_sym_preproc_def_token1] = ACTIONS(3384), + [aux_sym_preproc_if_token1] = ACTIONS(3384), + [aux_sym_preproc_if_token2] = ACTIONS(3384), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3384), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3384), + [aux_sym_preproc_else_token1] = ACTIONS(3384), + [aux_sym_preproc_elif_token1] = ACTIONS(3384), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3384), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3384), + [sym_preproc_directive] = ACTIONS(3384), + [anon_sym_LPAREN2] = ACTIONS(3386), + [anon_sym_BANG] = ACTIONS(3386), + [anon_sym_TILDE] = ACTIONS(3386), + [anon_sym_DASH] = ACTIONS(3384), + [anon_sym_PLUS] = ACTIONS(3384), + [anon_sym_STAR] = ACTIONS(3386), + [anon_sym_AMP_AMP] = ACTIONS(3386), + [anon_sym_AMP] = ACTIONS(3384), + [anon_sym_SEMI] = ACTIONS(3386), + [anon_sym_typedef] = ACTIONS(3384), + [anon_sym_extern] = ACTIONS(3384), + [anon_sym___attribute__] = ACTIONS(3384), + [anon_sym_COLON_COLON] = ACTIONS(3386), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3386), + [anon_sym___declspec] = ACTIONS(3384), + [anon_sym___based] = ACTIONS(3384), + [anon_sym___cdecl] = ACTIONS(3384), + [anon_sym___clrcall] = ACTIONS(3384), + [anon_sym___stdcall] = ACTIONS(3384), + [anon_sym___fastcall] = ACTIONS(3384), + [anon_sym___thiscall] = ACTIONS(3384), + [anon_sym___vectorcall] = ACTIONS(3384), + [anon_sym_LBRACE] = ACTIONS(3386), + [anon_sym_LBRACK] = ACTIONS(3384), + [anon_sym_static] = ACTIONS(3384), + [anon_sym_register] = ACTIONS(3384), + [anon_sym_inline] = ACTIONS(3384), + [anon_sym_thread_local] = ACTIONS(3384), + [anon_sym_const] = ACTIONS(3384), + [anon_sym_constexpr] = ACTIONS(3384), + [anon_sym_volatile] = ACTIONS(3384), + [anon_sym_restrict] = ACTIONS(3384), + [anon_sym___restrict__] = ACTIONS(3384), + [anon_sym__Atomic] = ACTIONS(3384), + [anon_sym__Noreturn] = ACTIONS(3384), + [anon_sym_noreturn] = ACTIONS(3384), + [anon_sym_mutable] = ACTIONS(3384), + [anon_sym_constinit] = ACTIONS(3384), + [anon_sym_consteval] = ACTIONS(3384), + [anon_sym_signed] = ACTIONS(3384), + [anon_sym_unsigned] = ACTIONS(3384), + [anon_sym_long] = ACTIONS(3384), + [anon_sym_short] = ACTIONS(3384), + [sym_primitive_type] = ACTIONS(3384), + [anon_sym_enum] = ACTIONS(3384), + [anon_sym_class] = ACTIONS(3384), + [anon_sym_struct] = ACTIONS(3384), + [anon_sym_union] = ACTIONS(3384), + [anon_sym_if] = ACTIONS(3384), + [anon_sym_switch] = ACTIONS(3384), + [anon_sym_case] = ACTIONS(3384), + [anon_sym_default] = ACTIONS(3384), + [anon_sym_while] = ACTIONS(3384), + [anon_sym_do] = ACTIONS(3384), + [anon_sym_for] = ACTIONS(3384), + [anon_sym_return] = ACTIONS(3384), + [anon_sym_break] = ACTIONS(3384), + [anon_sym_continue] = ACTIONS(3384), + [anon_sym_goto] = ACTIONS(3384), + [anon_sym_not] = ACTIONS(3384), + [anon_sym_compl] = ACTIONS(3384), + [anon_sym_DASH_DASH] = ACTIONS(3386), + [anon_sym_PLUS_PLUS] = ACTIONS(3386), + [anon_sym_sizeof] = ACTIONS(3384), + [anon_sym_offsetof] = ACTIONS(3384), + [anon_sym__Generic] = ACTIONS(3384), + [anon_sym_asm] = ACTIONS(3384), + [anon_sym___asm__] = ACTIONS(3384), + [sym_number_literal] = ACTIONS(3386), + [anon_sym_L_SQUOTE] = ACTIONS(3386), + [anon_sym_u_SQUOTE] = ACTIONS(3386), + [anon_sym_U_SQUOTE] = ACTIONS(3386), + [anon_sym_u8_SQUOTE] = ACTIONS(3386), + [anon_sym_SQUOTE] = ACTIONS(3386), + [anon_sym_L_DQUOTE] = ACTIONS(3386), + [anon_sym_u_DQUOTE] = ACTIONS(3386), + [anon_sym_U_DQUOTE] = ACTIONS(3386), + [anon_sym_u8_DQUOTE] = ACTIONS(3386), + [anon_sym_DQUOTE] = ACTIONS(3386), + [sym_true] = ACTIONS(3384), + [sym_false] = ACTIONS(3384), + [anon_sym_NULL] = ACTIONS(3384), + [anon_sym_nullptr] = ACTIONS(3384), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3384), + [anon_sym_decltype] = ACTIONS(3384), + [anon_sym_virtual] = ACTIONS(3384), + [anon_sym_explicit] = ACTIONS(3384), + [anon_sym_typename] = ACTIONS(3384), + [anon_sym_template] = ACTIONS(3384), + [anon_sym_operator] = ACTIONS(3384), + [anon_sym_try] = ACTIONS(3384), + [anon_sym_delete] = ACTIONS(3384), + [anon_sym_throw] = ACTIONS(3384), + [anon_sym_namespace] = ACTIONS(3384), + [anon_sym_using] = ACTIONS(3384), + [anon_sym_static_assert] = ACTIONS(3384), + [anon_sym_concept] = ACTIONS(3384), + [anon_sym_co_return] = ACTIONS(3384), + [anon_sym_co_yield] = ACTIONS(3384), + [anon_sym_R_DQUOTE] = ACTIONS(3386), + [anon_sym_LR_DQUOTE] = ACTIONS(3386), + [anon_sym_uR_DQUOTE] = ACTIONS(3386), + [anon_sym_UR_DQUOTE] = ACTIONS(3386), + [anon_sym_u8R_DQUOTE] = ACTIONS(3386), + [anon_sym_co_await] = ACTIONS(3384), + [anon_sym_new] = ACTIONS(3384), + [anon_sym_requires] = ACTIONS(3384), + [sym_this] = ACTIONS(3384), + }, + [583] = { + [sym_catch_clause] = STATE(583), + [aux_sym_constructor_try_statement_repeat1] = STATE(583), + [sym_identifier] = ACTIONS(2684), + [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2686), + [anon_sym_AMP] = ACTIONS(2684), + [anon_sym_SEMI] = ACTIONS(2686), + [anon_sym_typedef] = ACTIONS(2684), + [anon_sym_extern] = ACTIONS(2684), + [anon_sym___attribute__] = ACTIONS(2684), + [anon_sym_COLON_COLON] = ACTIONS(2686), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2686), + [anon_sym___declspec] = ACTIONS(2684), + [anon_sym___based] = 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_LBRACK] = ACTIONS(2684), + [anon_sym_static] = ACTIONS(2684), + [anon_sym_register] = ACTIONS(2684), + [anon_sym_inline] = ACTIONS(2684), + [anon_sym_thread_local] = 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_noreturn] = ACTIONS(2684), + [anon_sym_mutable] = ACTIONS(2684), + [anon_sym_constinit] = ACTIONS(2684), + [anon_sym_consteval] = ACTIONS(2684), + [anon_sym_signed] = ACTIONS(2684), + [anon_sym_unsigned] = ACTIONS(2684), + [anon_sym_long] = ACTIONS(2684), + [anon_sym_short] = ACTIONS(2684), + [sym_primitive_type] = ACTIONS(2684), + [anon_sym_enum] = ACTIONS(2684), + [anon_sym_class] = ACTIONS(2684), + [anon_sym_struct] = ACTIONS(2684), + [anon_sym_union] = ACTIONS(2684), + [anon_sym_if] = ACTIONS(2684), + [anon_sym_else] = 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_return] = ACTIONS(2684), + [anon_sym_break] = ACTIONS(2684), + [anon_sym_continue] = ACTIONS(2684), + [anon_sym_goto] = ACTIONS(2684), + [anon_sym_not] = ACTIONS(2684), + [anon_sym_compl] = ACTIONS(2684), + [anon_sym_DASH_DASH] = ACTIONS(2686), + [anon_sym_PLUS_PLUS] = ACTIONS(2686), + [anon_sym_sizeof] = ACTIONS(2684), + [anon_sym_offsetof] = ACTIONS(2684), + [anon_sym__Generic] = 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_L_DQUOTE] = ACTIONS(2686), + [anon_sym_u_DQUOTE] = ACTIONS(2686), + [anon_sym_U_DQUOTE] = ACTIONS(2686), + [anon_sym_u8_DQUOTE] = ACTIONS(2686), + [anon_sym_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), + [sym_auto] = ACTIONS(2684), + [anon_sym_decltype] = ACTIONS(2684), + [anon_sym_virtual] = ACTIONS(2684), + [anon_sym_explicit] = ACTIONS(2684), + [anon_sym_typename] = ACTIONS(2684), + [anon_sym_template] = ACTIONS(2684), + [anon_sym_operator] = ACTIONS(2684), + [anon_sym_try] = ACTIONS(2684), + [anon_sym_delete] = ACTIONS(2684), + [anon_sym_throw] = ACTIONS(2684), + [anon_sym_namespace] = ACTIONS(2684), + [anon_sym_using] = ACTIONS(2684), + [anon_sym_static_assert] = ACTIONS(2684), + [anon_sym_concept] = ACTIONS(2684), + [anon_sym_co_return] = ACTIONS(2684), + [anon_sym_co_yield] = ACTIONS(2684), + [anon_sym_catch] = ACTIONS(3388), + [anon_sym_R_DQUOTE] = ACTIONS(2686), + [anon_sym_LR_DQUOTE] = ACTIONS(2686), + [anon_sym_uR_DQUOTE] = ACTIONS(2686), + [anon_sym_UR_DQUOTE] = ACTIONS(2686), + [anon_sym_u8R_DQUOTE] = ACTIONS(2686), + [anon_sym_co_await] = ACTIONS(2684), + [anon_sym_new] = ACTIONS(2684), + [anon_sym_requires] = ACTIONS(2684), + [sym_this] = ACTIONS(2684), + }, + [584] = { + [sym_identifier] = ACTIONS(3391), + [aux_sym_preproc_include_token1] = ACTIONS(3391), + [aux_sym_preproc_def_token1] = ACTIONS(3391), + [aux_sym_preproc_if_token1] = ACTIONS(3391), + [aux_sym_preproc_if_token2] = ACTIONS(3391), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3391), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3391), + [aux_sym_preproc_else_token1] = ACTIONS(3391), + [aux_sym_preproc_elif_token1] = ACTIONS(3391), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3391), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3391), + [sym_preproc_directive] = ACTIONS(3391), + [anon_sym_LPAREN2] = ACTIONS(3393), + [anon_sym_BANG] = ACTIONS(3393), + [anon_sym_TILDE] = ACTIONS(3393), + [anon_sym_DASH] = ACTIONS(3391), + [anon_sym_PLUS] = ACTIONS(3391), + [anon_sym_STAR] = ACTIONS(3393), + [anon_sym_AMP_AMP] = ACTIONS(3393), + [anon_sym_AMP] = ACTIONS(3391), + [anon_sym_SEMI] = ACTIONS(3393), + [anon_sym_typedef] = ACTIONS(3391), + [anon_sym_extern] = ACTIONS(3391), + [anon_sym___attribute__] = ACTIONS(3391), + [anon_sym_COLON_COLON] = ACTIONS(3393), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3393), + [anon_sym___declspec] = ACTIONS(3391), + [anon_sym___based] = ACTIONS(3391), + [anon_sym___cdecl] = ACTIONS(3391), + [anon_sym___clrcall] = ACTIONS(3391), + [anon_sym___stdcall] = ACTIONS(3391), + [anon_sym___fastcall] = ACTIONS(3391), + [anon_sym___thiscall] = ACTIONS(3391), + [anon_sym___vectorcall] = ACTIONS(3391), + [anon_sym_LBRACE] = ACTIONS(3393), + [anon_sym_LBRACK] = ACTIONS(3391), + [anon_sym_static] = ACTIONS(3391), + [anon_sym_register] = ACTIONS(3391), + [anon_sym_inline] = ACTIONS(3391), + [anon_sym_thread_local] = ACTIONS(3391), + [anon_sym_const] = ACTIONS(3391), + [anon_sym_constexpr] = ACTIONS(3391), + [anon_sym_volatile] = ACTIONS(3391), + [anon_sym_restrict] = ACTIONS(3391), + [anon_sym___restrict__] = ACTIONS(3391), + [anon_sym__Atomic] = ACTIONS(3391), + [anon_sym__Noreturn] = ACTIONS(3391), + [anon_sym_noreturn] = ACTIONS(3391), + [anon_sym_mutable] = ACTIONS(3391), + [anon_sym_constinit] = ACTIONS(3391), + [anon_sym_consteval] = ACTIONS(3391), + [anon_sym_signed] = ACTIONS(3391), + [anon_sym_unsigned] = ACTIONS(3391), + [anon_sym_long] = ACTIONS(3391), + [anon_sym_short] = ACTIONS(3391), + [sym_primitive_type] = ACTIONS(3391), + [anon_sym_enum] = ACTIONS(3391), + [anon_sym_class] = ACTIONS(3391), + [anon_sym_struct] = ACTIONS(3391), + [anon_sym_union] = ACTIONS(3391), + [anon_sym_if] = ACTIONS(3391), + [anon_sym_switch] = ACTIONS(3391), + [anon_sym_case] = ACTIONS(3391), + [anon_sym_default] = ACTIONS(3391), + [anon_sym_while] = ACTIONS(3391), + [anon_sym_do] = ACTIONS(3391), + [anon_sym_for] = ACTIONS(3391), + [anon_sym_return] = ACTIONS(3391), + [anon_sym_break] = ACTIONS(3391), + [anon_sym_continue] = ACTIONS(3391), + [anon_sym_goto] = ACTIONS(3391), + [anon_sym_not] = ACTIONS(3391), + [anon_sym_compl] = ACTIONS(3391), + [anon_sym_DASH_DASH] = ACTIONS(3393), + [anon_sym_PLUS_PLUS] = ACTIONS(3393), + [anon_sym_sizeof] = ACTIONS(3391), + [anon_sym_offsetof] = ACTIONS(3391), + [anon_sym__Generic] = ACTIONS(3391), + [anon_sym_asm] = ACTIONS(3391), + [anon_sym___asm__] = ACTIONS(3391), + [sym_number_literal] = ACTIONS(3393), + [anon_sym_L_SQUOTE] = ACTIONS(3393), + [anon_sym_u_SQUOTE] = ACTIONS(3393), + [anon_sym_U_SQUOTE] = ACTIONS(3393), + [anon_sym_u8_SQUOTE] = ACTIONS(3393), + [anon_sym_SQUOTE] = ACTIONS(3393), + [anon_sym_L_DQUOTE] = ACTIONS(3393), + [anon_sym_u_DQUOTE] = ACTIONS(3393), + [anon_sym_U_DQUOTE] = ACTIONS(3393), + [anon_sym_u8_DQUOTE] = ACTIONS(3393), + [anon_sym_DQUOTE] = ACTIONS(3393), + [sym_true] = ACTIONS(3391), + [sym_false] = ACTIONS(3391), + [anon_sym_NULL] = ACTIONS(3391), + [anon_sym_nullptr] = ACTIONS(3391), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3391), + [anon_sym_decltype] = ACTIONS(3391), + [anon_sym_virtual] = ACTIONS(3391), + [anon_sym_explicit] = ACTIONS(3391), + [anon_sym_typename] = ACTIONS(3391), + [anon_sym_template] = ACTIONS(3391), + [anon_sym_operator] = ACTIONS(3391), + [anon_sym_try] = ACTIONS(3391), + [anon_sym_delete] = ACTIONS(3391), + [anon_sym_throw] = ACTIONS(3391), + [anon_sym_namespace] = ACTIONS(3391), + [anon_sym_using] = ACTIONS(3391), + [anon_sym_static_assert] = ACTIONS(3391), + [anon_sym_concept] = ACTIONS(3391), + [anon_sym_co_return] = ACTIONS(3391), + [anon_sym_co_yield] = ACTIONS(3391), + [anon_sym_R_DQUOTE] = ACTIONS(3393), + [anon_sym_LR_DQUOTE] = ACTIONS(3393), + [anon_sym_uR_DQUOTE] = ACTIONS(3393), + [anon_sym_UR_DQUOTE] = ACTIONS(3393), + [anon_sym_u8R_DQUOTE] = ACTIONS(3393), + [anon_sym_co_await] = ACTIONS(3391), + [anon_sym_new] = ACTIONS(3391), + [anon_sym_requires] = ACTIONS(3391), + [sym_this] = ACTIONS(3391), + }, + [585] = { + [sym_identifier] = ACTIONS(3395), + [aux_sym_preproc_include_token1] = ACTIONS(3395), + [aux_sym_preproc_def_token1] = ACTIONS(3395), + [aux_sym_preproc_if_token1] = ACTIONS(3395), + [aux_sym_preproc_if_token2] = ACTIONS(3395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3395), + [aux_sym_preproc_else_token1] = ACTIONS(3395), + [aux_sym_preproc_elif_token1] = ACTIONS(3395), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3395), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3395), + [sym_preproc_directive] = ACTIONS(3395), + [anon_sym_LPAREN2] = ACTIONS(3397), + [anon_sym_BANG] = ACTIONS(3397), + [anon_sym_TILDE] = ACTIONS(3397), + [anon_sym_DASH] = ACTIONS(3395), + [anon_sym_PLUS] = ACTIONS(3395), + [anon_sym_STAR] = ACTIONS(3397), + [anon_sym_AMP_AMP] = ACTIONS(3397), + [anon_sym_AMP] = ACTIONS(3395), + [anon_sym_SEMI] = ACTIONS(3397), + [anon_sym_typedef] = ACTIONS(3395), + [anon_sym_extern] = ACTIONS(3395), + [anon_sym___attribute__] = ACTIONS(3395), + [anon_sym_COLON_COLON] = ACTIONS(3397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3397), + [anon_sym___declspec] = ACTIONS(3395), + [anon_sym___based] = ACTIONS(3395), + [anon_sym___cdecl] = ACTIONS(3395), + [anon_sym___clrcall] = ACTIONS(3395), + [anon_sym___stdcall] = ACTIONS(3395), + [anon_sym___fastcall] = ACTIONS(3395), + [anon_sym___thiscall] = ACTIONS(3395), + [anon_sym___vectorcall] = ACTIONS(3395), + [anon_sym_LBRACE] = ACTIONS(3397), + [anon_sym_LBRACK] = ACTIONS(3395), + [anon_sym_static] = ACTIONS(3395), + [anon_sym_register] = ACTIONS(3395), + [anon_sym_inline] = ACTIONS(3395), + [anon_sym_thread_local] = ACTIONS(3395), + [anon_sym_const] = ACTIONS(3395), + [anon_sym_constexpr] = ACTIONS(3395), + [anon_sym_volatile] = ACTIONS(3395), + [anon_sym_restrict] = ACTIONS(3395), + [anon_sym___restrict__] = ACTIONS(3395), + [anon_sym__Atomic] = ACTIONS(3395), + [anon_sym__Noreturn] = ACTIONS(3395), + [anon_sym_noreturn] = ACTIONS(3395), + [anon_sym_mutable] = ACTIONS(3395), + [anon_sym_constinit] = ACTIONS(3395), + [anon_sym_consteval] = ACTIONS(3395), + [anon_sym_signed] = ACTIONS(3395), + [anon_sym_unsigned] = ACTIONS(3395), + [anon_sym_long] = ACTIONS(3395), + [anon_sym_short] = ACTIONS(3395), + [sym_primitive_type] = ACTIONS(3395), + [anon_sym_enum] = ACTIONS(3395), + [anon_sym_class] = ACTIONS(3395), + [anon_sym_struct] = ACTIONS(3395), + [anon_sym_union] = ACTIONS(3395), + [anon_sym_if] = ACTIONS(3395), + [anon_sym_switch] = ACTIONS(3395), + [anon_sym_case] = ACTIONS(3395), + [anon_sym_default] = ACTIONS(3395), + [anon_sym_while] = ACTIONS(3395), + [anon_sym_do] = ACTIONS(3395), + [anon_sym_for] = ACTIONS(3395), + [anon_sym_return] = ACTIONS(3395), + [anon_sym_break] = ACTIONS(3395), + [anon_sym_continue] = ACTIONS(3395), + [anon_sym_goto] = ACTIONS(3395), + [anon_sym_not] = ACTIONS(3395), + [anon_sym_compl] = ACTIONS(3395), + [anon_sym_DASH_DASH] = ACTIONS(3397), + [anon_sym_PLUS_PLUS] = ACTIONS(3397), + [anon_sym_sizeof] = ACTIONS(3395), + [anon_sym_offsetof] = ACTIONS(3395), + [anon_sym__Generic] = ACTIONS(3395), + [anon_sym_asm] = ACTIONS(3395), + [anon_sym___asm__] = ACTIONS(3395), + [sym_number_literal] = ACTIONS(3397), + [anon_sym_L_SQUOTE] = ACTIONS(3397), + [anon_sym_u_SQUOTE] = ACTIONS(3397), + [anon_sym_U_SQUOTE] = ACTIONS(3397), + [anon_sym_u8_SQUOTE] = ACTIONS(3397), + [anon_sym_SQUOTE] = ACTIONS(3397), + [anon_sym_L_DQUOTE] = ACTIONS(3397), + [anon_sym_u_DQUOTE] = ACTIONS(3397), + [anon_sym_U_DQUOTE] = ACTIONS(3397), + [anon_sym_u8_DQUOTE] = ACTIONS(3397), + [anon_sym_DQUOTE] = ACTIONS(3397), + [sym_true] = ACTIONS(3395), + [sym_false] = ACTIONS(3395), + [anon_sym_NULL] = ACTIONS(3395), + [anon_sym_nullptr] = ACTIONS(3395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3395), + [anon_sym_decltype] = ACTIONS(3395), + [anon_sym_virtual] = ACTIONS(3395), + [anon_sym_explicit] = ACTIONS(3395), + [anon_sym_typename] = ACTIONS(3395), + [anon_sym_template] = ACTIONS(3395), + [anon_sym_operator] = ACTIONS(3395), + [anon_sym_try] = ACTIONS(3395), + [anon_sym_delete] = ACTIONS(3395), + [anon_sym_throw] = ACTIONS(3395), + [anon_sym_namespace] = ACTIONS(3395), + [anon_sym_using] = ACTIONS(3395), + [anon_sym_static_assert] = ACTIONS(3395), + [anon_sym_concept] = ACTIONS(3395), + [anon_sym_co_return] = ACTIONS(3395), + [anon_sym_co_yield] = ACTIONS(3395), + [anon_sym_R_DQUOTE] = ACTIONS(3397), + [anon_sym_LR_DQUOTE] = ACTIONS(3397), + [anon_sym_uR_DQUOTE] = ACTIONS(3397), + [anon_sym_UR_DQUOTE] = ACTIONS(3397), + [anon_sym_u8R_DQUOTE] = ACTIONS(3397), + [anon_sym_co_await] = ACTIONS(3395), + [anon_sym_new] = ACTIONS(3395), + [anon_sym_requires] = ACTIONS(3395), + [sym_this] = ACTIONS(3395), }, [586] = { - [ts_builtin_sym_end] = ACTIONS(2616), - [sym_identifier] = ACTIONS(2614), - [aux_sym_preproc_include_token1] = ACTIONS(2614), - [aux_sym_preproc_def_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2614), - [sym_preproc_directive] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP_AMP] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2614), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym___based] = ACTIONS(2614), - [anon_sym___cdecl] = ACTIONS(2614), - [anon_sym___clrcall] = ACTIONS(2614), - [anon_sym___stdcall] = ACTIONS(2614), - [anon_sym___fastcall] = ACTIONS(2614), - [anon_sym___thiscall] = ACTIONS(2614), - [anon_sym___vectorcall] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_case] = ACTIONS(2614), - [anon_sym_default] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_explicit] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_operator] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_namespace] = ACTIONS(2614), - [anon_sym_using] = ACTIONS(2614), - [anon_sym_static_assert] = ACTIONS(2614), - [anon_sym_concept] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), + [sym_identifier] = ACTIONS(3399), + [aux_sym_preproc_include_token1] = ACTIONS(3399), + [aux_sym_preproc_def_token1] = ACTIONS(3399), + [aux_sym_preproc_if_token1] = ACTIONS(3399), + [aux_sym_preproc_if_token2] = ACTIONS(3399), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3399), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3399), + [aux_sym_preproc_else_token1] = ACTIONS(3399), + [aux_sym_preproc_elif_token1] = ACTIONS(3399), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3399), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3399), + [sym_preproc_directive] = ACTIONS(3399), + [anon_sym_LPAREN2] = ACTIONS(3401), + [anon_sym_BANG] = ACTIONS(3401), + [anon_sym_TILDE] = ACTIONS(3401), + [anon_sym_DASH] = ACTIONS(3399), + [anon_sym_PLUS] = ACTIONS(3399), + [anon_sym_STAR] = ACTIONS(3401), + [anon_sym_AMP_AMP] = ACTIONS(3401), + [anon_sym_AMP] = ACTIONS(3399), + [anon_sym_SEMI] = ACTIONS(3401), + [anon_sym_typedef] = ACTIONS(3399), + [anon_sym_extern] = ACTIONS(3399), + [anon_sym___attribute__] = ACTIONS(3399), + [anon_sym_COLON_COLON] = ACTIONS(3401), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3401), + [anon_sym___declspec] = ACTIONS(3399), + [anon_sym___based] = ACTIONS(3399), + [anon_sym___cdecl] = ACTIONS(3399), + [anon_sym___clrcall] = ACTIONS(3399), + [anon_sym___stdcall] = ACTIONS(3399), + [anon_sym___fastcall] = ACTIONS(3399), + [anon_sym___thiscall] = ACTIONS(3399), + [anon_sym___vectorcall] = ACTIONS(3399), + [anon_sym_LBRACE] = ACTIONS(3401), + [anon_sym_LBRACK] = ACTIONS(3399), + [anon_sym_static] = ACTIONS(3399), + [anon_sym_register] = ACTIONS(3399), + [anon_sym_inline] = ACTIONS(3399), + [anon_sym_thread_local] = ACTIONS(3399), + [anon_sym_const] = ACTIONS(3399), + [anon_sym_constexpr] = ACTIONS(3399), + [anon_sym_volatile] = ACTIONS(3399), + [anon_sym_restrict] = ACTIONS(3399), + [anon_sym___restrict__] = ACTIONS(3399), + [anon_sym__Atomic] = ACTIONS(3399), + [anon_sym__Noreturn] = ACTIONS(3399), + [anon_sym_noreturn] = ACTIONS(3399), + [anon_sym_mutable] = ACTIONS(3399), + [anon_sym_constinit] = ACTIONS(3399), + [anon_sym_consteval] = ACTIONS(3399), + [anon_sym_signed] = ACTIONS(3399), + [anon_sym_unsigned] = ACTIONS(3399), + [anon_sym_long] = ACTIONS(3399), + [anon_sym_short] = ACTIONS(3399), + [sym_primitive_type] = ACTIONS(3399), + [anon_sym_enum] = ACTIONS(3399), + [anon_sym_class] = ACTIONS(3399), + [anon_sym_struct] = ACTIONS(3399), + [anon_sym_union] = ACTIONS(3399), + [anon_sym_if] = ACTIONS(3399), + [anon_sym_switch] = ACTIONS(3399), + [anon_sym_case] = ACTIONS(3399), + [anon_sym_default] = ACTIONS(3399), + [anon_sym_while] = ACTIONS(3399), + [anon_sym_do] = ACTIONS(3399), + [anon_sym_for] = ACTIONS(3399), + [anon_sym_return] = ACTIONS(3399), + [anon_sym_break] = ACTIONS(3399), + [anon_sym_continue] = ACTIONS(3399), + [anon_sym_goto] = ACTIONS(3399), + [anon_sym_not] = ACTIONS(3399), + [anon_sym_compl] = ACTIONS(3399), + [anon_sym_DASH_DASH] = ACTIONS(3401), + [anon_sym_PLUS_PLUS] = ACTIONS(3401), + [anon_sym_sizeof] = ACTIONS(3399), + [anon_sym_offsetof] = ACTIONS(3399), + [anon_sym__Generic] = ACTIONS(3399), + [anon_sym_asm] = ACTIONS(3399), + [anon_sym___asm__] = ACTIONS(3399), + [sym_number_literal] = ACTIONS(3401), + [anon_sym_L_SQUOTE] = ACTIONS(3401), + [anon_sym_u_SQUOTE] = ACTIONS(3401), + [anon_sym_U_SQUOTE] = ACTIONS(3401), + [anon_sym_u8_SQUOTE] = ACTIONS(3401), + [anon_sym_SQUOTE] = ACTIONS(3401), + [anon_sym_L_DQUOTE] = ACTIONS(3401), + [anon_sym_u_DQUOTE] = ACTIONS(3401), + [anon_sym_U_DQUOTE] = ACTIONS(3401), + [anon_sym_u8_DQUOTE] = ACTIONS(3401), + [anon_sym_DQUOTE] = ACTIONS(3401), + [sym_true] = ACTIONS(3399), + [sym_false] = ACTIONS(3399), + [anon_sym_NULL] = ACTIONS(3399), + [anon_sym_nullptr] = ACTIONS(3399), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3399), + [anon_sym_decltype] = ACTIONS(3399), + [anon_sym_virtual] = ACTIONS(3399), + [anon_sym_explicit] = ACTIONS(3399), + [anon_sym_typename] = ACTIONS(3399), + [anon_sym_template] = ACTIONS(3399), + [anon_sym_operator] = ACTIONS(3399), + [anon_sym_try] = ACTIONS(3399), + [anon_sym_delete] = ACTIONS(3399), + [anon_sym_throw] = ACTIONS(3399), + [anon_sym_namespace] = ACTIONS(3399), + [anon_sym_using] = ACTIONS(3399), + [anon_sym_static_assert] = ACTIONS(3399), + [anon_sym_concept] = ACTIONS(3399), + [anon_sym_co_return] = ACTIONS(3399), + [anon_sym_co_yield] = ACTIONS(3399), + [anon_sym_R_DQUOTE] = ACTIONS(3401), + [anon_sym_LR_DQUOTE] = ACTIONS(3401), + [anon_sym_uR_DQUOTE] = ACTIONS(3401), + [anon_sym_UR_DQUOTE] = ACTIONS(3401), + [anon_sym_u8R_DQUOTE] = ACTIONS(3401), + [anon_sym_co_await] = ACTIONS(3399), + [anon_sym_new] = ACTIONS(3399), + [anon_sym_requires] = ACTIONS(3399), + [sym_this] = ACTIONS(3399), }, [587] = { - [ts_builtin_sym_end] = ACTIONS(2468), - [sym_identifier] = ACTIONS(2466), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2468), - [anon_sym_AMP] = ACTIONS(2466), - [anon_sym_SEMI] = ACTIONS(2468), - [anon_sym_typedef] = ACTIONS(2466), - [anon_sym_extern] = ACTIONS(2466), - [anon_sym___attribute__] = ACTIONS(2466), - [anon_sym_COLON_COLON] = ACTIONS(2468), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2468), - [anon_sym___declspec] = ACTIONS(2466), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2466), - [anon_sym_static] = ACTIONS(2466), - [anon_sym_register] = ACTIONS(2466), - [anon_sym_inline] = ACTIONS(2466), - [anon_sym_thread_local] = ACTIONS(2466), - [anon_sym_const] = ACTIONS(2466), - [anon_sym_volatile] = ACTIONS(2466), - [anon_sym_restrict] = ACTIONS(2466), - [anon_sym__Atomic] = ACTIONS(2466), - [anon_sym_mutable] = ACTIONS(2466), - [anon_sym_constexpr] = ACTIONS(2466), - [anon_sym_constinit] = ACTIONS(2466), - [anon_sym_consteval] = ACTIONS(2466), - [anon_sym_signed] = ACTIONS(2466), - [anon_sym_unsigned] = ACTIONS(2466), - [anon_sym_long] = ACTIONS(2466), - [anon_sym_short] = ACTIONS(2466), - [sym_primitive_type] = ACTIONS(2466), - [anon_sym_enum] = ACTIONS(2466), - [anon_sym_class] = 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_return] = ACTIONS(2466), - [anon_sym_break] = ACTIONS(2466), - [anon_sym_continue] = ACTIONS(2466), - [anon_sym_goto] = ACTIONS(2466), - [anon_sym_not] = ACTIONS(2466), - [anon_sym_compl] = ACTIONS(2466), - [anon_sym_DASH_DASH] = ACTIONS(2468), - [anon_sym_PLUS_PLUS] = ACTIONS(2468), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2468), - [anon_sym_u_DQUOTE] = ACTIONS(2468), - [anon_sym_U_DQUOTE] = ACTIONS(2468), - [anon_sym_u8_DQUOTE] = ACTIONS(2468), - [anon_sym_DQUOTE] = ACTIONS(2468), - [sym_true] = ACTIONS(2466), - [sym_false] = ACTIONS(2466), - [sym_null] = ACTIONS(2466), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2466), - [anon_sym_decltype] = ACTIONS(2466), - [anon_sym_virtual] = ACTIONS(2466), - [anon_sym_explicit] = ACTIONS(2466), - [anon_sym_typename] = ACTIONS(2466), - [anon_sym_template] = ACTIONS(2466), - [anon_sym_operator] = ACTIONS(2466), - [anon_sym_try] = ACTIONS(2466), - [anon_sym_delete] = ACTIONS(2466), - [anon_sym_throw] = ACTIONS(2466), - [anon_sym_namespace] = ACTIONS(2466), - [anon_sym_using] = ACTIONS(2466), - [anon_sym_static_assert] = ACTIONS(2466), - [anon_sym_concept] = ACTIONS(2466), - [anon_sym_co_return] = ACTIONS(2466), - [anon_sym_co_yield] = ACTIONS(2466), - [anon_sym_R_DQUOTE] = ACTIONS(2468), - [anon_sym_LR_DQUOTE] = ACTIONS(2468), - [anon_sym_uR_DQUOTE] = ACTIONS(2468), - [anon_sym_UR_DQUOTE] = ACTIONS(2468), - [anon_sym_u8R_DQUOTE] = ACTIONS(2468), - [anon_sym_co_await] = ACTIONS(2466), - [anon_sym_new] = ACTIONS(2466), - [anon_sym_requires] = ACTIONS(2466), - [sym_this] = ACTIONS(2466), - [sym_nullptr] = ACTIONS(2466), + [sym_identifier] = ACTIONS(3403), + [aux_sym_preproc_include_token1] = ACTIONS(3403), + [aux_sym_preproc_def_token1] = ACTIONS(3403), + [aux_sym_preproc_if_token1] = ACTIONS(3403), + [aux_sym_preproc_if_token2] = ACTIONS(3403), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3403), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3403), + [aux_sym_preproc_else_token1] = ACTIONS(3403), + [aux_sym_preproc_elif_token1] = ACTIONS(3403), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3403), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3403), + [sym_preproc_directive] = ACTIONS(3403), + [anon_sym_LPAREN2] = ACTIONS(3405), + [anon_sym_BANG] = ACTIONS(3405), + [anon_sym_TILDE] = ACTIONS(3405), + [anon_sym_DASH] = ACTIONS(3403), + [anon_sym_PLUS] = ACTIONS(3403), + [anon_sym_STAR] = ACTIONS(3405), + [anon_sym_AMP_AMP] = ACTIONS(3405), + [anon_sym_AMP] = ACTIONS(3403), + [anon_sym_SEMI] = ACTIONS(3405), + [anon_sym_typedef] = ACTIONS(3403), + [anon_sym_extern] = ACTIONS(3403), + [anon_sym___attribute__] = ACTIONS(3403), + [anon_sym_COLON_COLON] = ACTIONS(3405), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3405), + [anon_sym___declspec] = ACTIONS(3403), + [anon_sym___based] = ACTIONS(3403), + [anon_sym___cdecl] = ACTIONS(3403), + [anon_sym___clrcall] = ACTIONS(3403), + [anon_sym___stdcall] = ACTIONS(3403), + [anon_sym___fastcall] = ACTIONS(3403), + [anon_sym___thiscall] = ACTIONS(3403), + [anon_sym___vectorcall] = ACTIONS(3403), + [anon_sym_LBRACE] = ACTIONS(3405), + [anon_sym_LBRACK] = ACTIONS(3403), + [anon_sym_static] = ACTIONS(3403), + [anon_sym_register] = ACTIONS(3403), + [anon_sym_inline] = ACTIONS(3403), + [anon_sym_thread_local] = ACTIONS(3403), + [anon_sym_const] = ACTIONS(3403), + [anon_sym_constexpr] = ACTIONS(3403), + [anon_sym_volatile] = ACTIONS(3403), + [anon_sym_restrict] = ACTIONS(3403), + [anon_sym___restrict__] = ACTIONS(3403), + [anon_sym__Atomic] = ACTIONS(3403), + [anon_sym__Noreturn] = ACTIONS(3403), + [anon_sym_noreturn] = ACTIONS(3403), + [anon_sym_mutable] = ACTIONS(3403), + [anon_sym_constinit] = ACTIONS(3403), + [anon_sym_consteval] = ACTIONS(3403), + [anon_sym_signed] = ACTIONS(3403), + [anon_sym_unsigned] = ACTIONS(3403), + [anon_sym_long] = ACTIONS(3403), + [anon_sym_short] = ACTIONS(3403), + [sym_primitive_type] = ACTIONS(3403), + [anon_sym_enum] = ACTIONS(3403), + [anon_sym_class] = ACTIONS(3403), + [anon_sym_struct] = ACTIONS(3403), + [anon_sym_union] = ACTIONS(3403), + [anon_sym_if] = ACTIONS(3403), + [anon_sym_switch] = ACTIONS(3403), + [anon_sym_case] = ACTIONS(3403), + [anon_sym_default] = ACTIONS(3403), + [anon_sym_while] = ACTIONS(3403), + [anon_sym_do] = ACTIONS(3403), + [anon_sym_for] = ACTIONS(3403), + [anon_sym_return] = ACTIONS(3403), + [anon_sym_break] = ACTIONS(3403), + [anon_sym_continue] = ACTIONS(3403), + [anon_sym_goto] = ACTIONS(3403), + [anon_sym_not] = ACTIONS(3403), + [anon_sym_compl] = ACTIONS(3403), + [anon_sym_DASH_DASH] = ACTIONS(3405), + [anon_sym_PLUS_PLUS] = ACTIONS(3405), + [anon_sym_sizeof] = ACTIONS(3403), + [anon_sym_offsetof] = ACTIONS(3403), + [anon_sym__Generic] = ACTIONS(3403), + [anon_sym_asm] = ACTIONS(3403), + [anon_sym___asm__] = ACTIONS(3403), + [sym_number_literal] = ACTIONS(3405), + [anon_sym_L_SQUOTE] = ACTIONS(3405), + [anon_sym_u_SQUOTE] = ACTIONS(3405), + [anon_sym_U_SQUOTE] = ACTIONS(3405), + [anon_sym_u8_SQUOTE] = ACTIONS(3405), + [anon_sym_SQUOTE] = ACTIONS(3405), + [anon_sym_L_DQUOTE] = ACTIONS(3405), + [anon_sym_u_DQUOTE] = ACTIONS(3405), + [anon_sym_U_DQUOTE] = ACTIONS(3405), + [anon_sym_u8_DQUOTE] = ACTIONS(3405), + [anon_sym_DQUOTE] = ACTIONS(3405), + [sym_true] = ACTIONS(3403), + [sym_false] = ACTIONS(3403), + [anon_sym_NULL] = ACTIONS(3403), + [anon_sym_nullptr] = ACTIONS(3403), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3403), + [anon_sym_decltype] = ACTIONS(3403), + [anon_sym_virtual] = ACTIONS(3403), + [anon_sym_explicit] = ACTIONS(3403), + [anon_sym_typename] = ACTIONS(3403), + [anon_sym_template] = ACTIONS(3403), + [anon_sym_operator] = ACTIONS(3403), + [anon_sym_try] = ACTIONS(3403), + [anon_sym_delete] = ACTIONS(3403), + [anon_sym_throw] = ACTIONS(3403), + [anon_sym_namespace] = ACTIONS(3403), + [anon_sym_using] = ACTIONS(3403), + [anon_sym_static_assert] = ACTIONS(3403), + [anon_sym_concept] = ACTIONS(3403), + [anon_sym_co_return] = ACTIONS(3403), + [anon_sym_co_yield] = ACTIONS(3403), + [anon_sym_R_DQUOTE] = ACTIONS(3405), + [anon_sym_LR_DQUOTE] = ACTIONS(3405), + [anon_sym_uR_DQUOTE] = ACTIONS(3405), + [anon_sym_UR_DQUOTE] = ACTIONS(3405), + [anon_sym_u8R_DQUOTE] = ACTIONS(3405), + [anon_sym_co_await] = ACTIONS(3403), + [anon_sym_new] = ACTIONS(3403), + [anon_sym_requires] = ACTIONS(3403), + [sym_this] = ACTIONS(3403), }, [588] = { - [sym_identifier] = ACTIONS(2466), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2468), - [anon_sym_AMP] = ACTIONS(2466), - [anon_sym_SEMI] = ACTIONS(2468), - [anon_sym_typedef] = ACTIONS(2466), - [anon_sym_extern] = ACTIONS(2466), - [anon_sym___attribute__] = ACTIONS(2466), - [anon_sym_COLON_COLON] = ACTIONS(2468), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2468), - [anon_sym___declspec] = ACTIONS(2466), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2466), - [anon_sym_static] = ACTIONS(2466), - [anon_sym_register] = ACTIONS(2466), - [anon_sym_inline] = ACTIONS(2466), - [anon_sym_thread_local] = ACTIONS(2466), - [anon_sym_const] = ACTIONS(2466), - [anon_sym_volatile] = ACTIONS(2466), - [anon_sym_restrict] = ACTIONS(2466), - [anon_sym__Atomic] = ACTIONS(2466), - [anon_sym_mutable] = ACTIONS(2466), - [anon_sym_constexpr] = ACTIONS(2466), - [anon_sym_constinit] = ACTIONS(2466), - [anon_sym_consteval] = ACTIONS(2466), - [anon_sym_signed] = ACTIONS(2466), - [anon_sym_unsigned] = ACTIONS(2466), - [anon_sym_long] = ACTIONS(2466), - [anon_sym_short] = ACTIONS(2466), - [sym_primitive_type] = ACTIONS(2466), - [anon_sym_enum] = ACTIONS(2466), - [anon_sym_class] = 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_return] = ACTIONS(2466), - [anon_sym_break] = ACTIONS(2466), - [anon_sym_continue] = ACTIONS(2466), - [anon_sym_goto] = ACTIONS(2466), - [anon_sym_not] = ACTIONS(2466), - [anon_sym_compl] = ACTIONS(2466), - [anon_sym_DASH_DASH] = ACTIONS(2468), - [anon_sym_PLUS_PLUS] = ACTIONS(2468), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2468), - [anon_sym_u_DQUOTE] = ACTIONS(2468), - [anon_sym_U_DQUOTE] = ACTIONS(2468), - [anon_sym_u8_DQUOTE] = ACTIONS(2468), - [anon_sym_DQUOTE] = ACTIONS(2468), - [sym_true] = ACTIONS(2466), - [sym_false] = ACTIONS(2466), - [sym_null] = ACTIONS(2466), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2466), - [anon_sym_decltype] = ACTIONS(2466), - [anon_sym_virtual] = ACTIONS(2466), - [anon_sym_explicit] = ACTIONS(2466), - [anon_sym_typename] = ACTIONS(2466), - [anon_sym_template] = ACTIONS(2466), - [anon_sym_operator] = ACTIONS(2466), - [anon_sym_try] = ACTIONS(2466), - [anon_sym_delete] = ACTIONS(2466), - [anon_sym_throw] = ACTIONS(2466), - [anon_sym_namespace] = ACTIONS(2466), - [anon_sym_using] = ACTIONS(2466), - [anon_sym_static_assert] = ACTIONS(2466), - [anon_sym_concept] = ACTIONS(2466), - [anon_sym_co_return] = ACTIONS(2466), - [anon_sym_co_yield] = ACTIONS(2466), - [anon_sym_R_DQUOTE] = ACTIONS(2468), - [anon_sym_LR_DQUOTE] = ACTIONS(2468), - [anon_sym_uR_DQUOTE] = ACTIONS(2468), - [anon_sym_UR_DQUOTE] = ACTIONS(2468), - [anon_sym_u8R_DQUOTE] = ACTIONS(2468), - [anon_sym_co_await] = ACTIONS(2466), - [anon_sym_new] = ACTIONS(2466), - [anon_sym_requires] = ACTIONS(2466), - [sym_this] = ACTIONS(2466), - [sym_nullptr] = ACTIONS(2466), + [sym__expression] = STATE(4181), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7075), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3209), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(3407), + [anon_sym_extern] = ACTIONS(2962), + [anon_sym___attribute__] = ACTIONS(2962), + [anon_sym_COLON_COLON] = ACTIONS(3214), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2964), + [anon_sym___declspec] = ACTIONS(2962), + [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_static] = ACTIONS(2962), + [anon_sym_register] = ACTIONS(2962), + [anon_sym_inline] = ACTIONS(2962), + [anon_sym_thread_local] = ACTIONS(2962), + [anon_sym_const] = ACTIONS(2962), + [anon_sym_constexpr] = ACTIONS(2962), + [anon_sym_volatile] = ACTIONS(2962), + [anon_sym_restrict] = ACTIONS(2962), + [anon_sym___restrict__] = ACTIONS(2962), + [anon_sym__Atomic] = ACTIONS(2962), + [anon_sym__Noreturn] = ACTIONS(2962), + [anon_sym_noreturn] = ACTIONS(2962), + [anon_sym_mutable] = ACTIONS(2962), + [anon_sym_constinit] = ACTIONS(2962), + [anon_sym_consteval] = ACTIONS(2962), + [anon_sym_signed] = ACTIONS(2962), + [anon_sym_unsigned] = ACTIONS(2962), + [anon_sym_long] = ACTIONS(2962), + [anon_sym_short] = ACTIONS(2962), + [sym_primitive_type] = ACTIONS(3217), + [anon_sym_enum] = ACTIONS(2962), + [anon_sym_class] = ACTIONS(2962), + [anon_sym_struct] = ACTIONS(2962), + [anon_sym_union] = ACTIONS(2962), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2962), + [anon_sym_decltype] = ACTIONS(3220), + [anon_sym_virtual] = ACTIONS(2962), + [anon_sym_typename] = ACTIONS(2962), + [anon_sym_template] = ACTIONS(3223), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [589] = { - [sym_identifier] = ACTIONS(2470), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2472), - [anon_sym_AMP] = ACTIONS(2470), - [anon_sym_SEMI] = ACTIONS(2472), - [anon_sym_typedef] = ACTIONS(2470), - [anon_sym_extern] = ACTIONS(2470), - [anon_sym___attribute__] = ACTIONS(2470), - [anon_sym_COLON_COLON] = ACTIONS(2472), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2472), - [anon_sym___declspec] = ACTIONS(2470), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2470), - [anon_sym_static] = ACTIONS(2470), - [anon_sym_register] = ACTIONS(2470), - [anon_sym_inline] = ACTIONS(2470), - [anon_sym_thread_local] = ACTIONS(2470), - [anon_sym_const] = ACTIONS(2470), - [anon_sym_volatile] = ACTIONS(2470), - [anon_sym_restrict] = ACTIONS(2470), - [anon_sym__Atomic] = ACTIONS(2470), - [anon_sym_mutable] = ACTIONS(2470), - [anon_sym_constexpr] = ACTIONS(2470), - [anon_sym_constinit] = ACTIONS(2470), - [anon_sym_consteval] = ACTIONS(2470), - [anon_sym_signed] = ACTIONS(2470), - [anon_sym_unsigned] = ACTIONS(2470), - [anon_sym_long] = ACTIONS(2470), - [anon_sym_short] = ACTIONS(2470), - [sym_primitive_type] = ACTIONS(2470), - [anon_sym_enum] = ACTIONS(2470), - [anon_sym_class] = 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_return] = ACTIONS(2470), - [anon_sym_break] = ACTIONS(2470), - [anon_sym_continue] = ACTIONS(2470), - [anon_sym_goto] = ACTIONS(2470), - [anon_sym_not] = ACTIONS(2470), - [anon_sym_compl] = ACTIONS(2470), - [anon_sym_DASH_DASH] = ACTIONS(2472), - [anon_sym_PLUS_PLUS] = ACTIONS(2472), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2472), - [anon_sym_u_DQUOTE] = ACTIONS(2472), - [anon_sym_U_DQUOTE] = ACTIONS(2472), - [anon_sym_u8_DQUOTE] = ACTIONS(2472), - [anon_sym_DQUOTE] = ACTIONS(2472), - [sym_true] = ACTIONS(2470), - [sym_false] = ACTIONS(2470), - [sym_null] = ACTIONS(2470), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2470), - [anon_sym_decltype] = ACTIONS(2470), - [anon_sym_virtual] = ACTIONS(2470), - [anon_sym_explicit] = ACTIONS(2470), - [anon_sym_typename] = ACTIONS(2470), - [anon_sym_template] = ACTIONS(2470), - [anon_sym_operator] = ACTIONS(2470), - [anon_sym_try] = ACTIONS(2470), - [anon_sym_delete] = ACTIONS(2470), - [anon_sym_throw] = ACTIONS(2470), - [anon_sym_namespace] = ACTIONS(2470), - [anon_sym_using] = ACTIONS(2470), - [anon_sym_static_assert] = ACTIONS(2470), - [anon_sym_concept] = ACTIONS(2470), - [anon_sym_co_return] = ACTIONS(2470), - [anon_sym_co_yield] = ACTIONS(2470), - [anon_sym_R_DQUOTE] = ACTIONS(2472), - [anon_sym_LR_DQUOTE] = ACTIONS(2472), - [anon_sym_uR_DQUOTE] = ACTIONS(2472), - [anon_sym_UR_DQUOTE] = ACTIONS(2472), - [anon_sym_u8R_DQUOTE] = ACTIONS(2472), - [anon_sym_co_await] = ACTIONS(2470), - [anon_sym_new] = ACTIONS(2470), - [anon_sym_requires] = ACTIONS(2470), - [sym_this] = ACTIONS(2470), - [sym_nullptr] = ACTIONS(2470), + [sym_identifier] = ACTIONS(3409), + [aux_sym_preproc_include_token1] = ACTIONS(3409), + [aux_sym_preproc_def_token1] = ACTIONS(3409), + [aux_sym_preproc_if_token1] = ACTIONS(3409), + [aux_sym_preproc_if_token2] = ACTIONS(3409), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3409), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3409), + [aux_sym_preproc_else_token1] = ACTIONS(3409), + [aux_sym_preproc_elif_token1] = ACTIONS(3409), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3409), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3409), + [sym_preproc_directive] = ACTIONS(3409), + [anon_sym_LPAREN2] = ACTIONS(3411), + [anon_sym_BANG] = ACTIONS(3411), + [anon_sym_TILDE] = ACTIONS(3411), + [anon_sym_DASH] = ACTIONS(3409), + [anon_sym_PLUS] = ACTIONS(3409), + [anon_sym_STAR] = ACTIONS(3411), + [anon_sym_AMP_AMP] = ACTIONS(3411), + [anon_sym_AMP] = ACTIONS(3409), + [anon_sym_SEMI] = ACTIONS(3411), + [anon_sym_typedef] = ACTIONS(3409), + [anon_sym_extern] = ACTIONS(3409), + [anon_sym___attribute__] = ACTIONS(3409), + [anon_sym_COLON_COLON] = ACTIONS(3411), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3411), + [anon_sym___declspec] = ACTIONS(3409), + [anon_sym___based] = ACTIONS(3409), + [anon_sym___cdecl] = ACTIONS(3409), + [anon_sym___clrcall] = ACTIONS(3409), + [anon_sym___stdcall] = ACTIONS(3409), + [anon_sym___fastcall] = ACTIONS(3409), + [anon_sym___thiscall] = ACTIONS(3409), + [anon_sym___vectorcall] = ACTIONS(3409), + [anon_sym_LBRACE] = ACTIONS(3411), + [anon_sym_LBRACK] = ACTIONS(3409), + [anon_sym_static] = ACTIONS(3409), + [anon_sym_register] = ACTIONS(3409), + [anon_sym_inline] = ACTIONS(3409), + [anon_sym_thread_local] = ACTIONS(3409), + [anon_sym_const] = ACTIONS(3409), + [anon_sym_constexpr] = ACTIONS(3409), + [anon_sym_volatile] = ACTIONS(3409), + [anon_sym_restrict] = ACTIONS(3409), + [anon_sym___restrict__] = ACTIONS(3409), + [anon_sym__Atomic] = ACTIONS(3409), + [anon_sym__Noreturn] = ACTIONS(3409), + [anon_sym_noreturn] = ACTIONS(3409), + [anon_sym_mutable] = ACTIONS(3409), + [anon_sym_constinit] = ACTIONS(3409), + [anon_sym_consteval] = ACTIONS(3409), + [anon_sym_signed] = ACTIONS(3409), + [anon_sym_unsigned] = ACTIONS(3409), + [anon_sym_long] = ACTIONS(3409), + [anon_sym_short] = ACTIONS(3409), + [sym_primitive_type] = ACTIONS(3409), + [anon_sym_enum] = ACTIONS(3409), + [anon_sym_class] = ACTIONS(3409), + [anon_sym_struct] = ACTIONS(3409), + [anon_sym_union] = ACTIONS(3409), + [anon_sym_if] = ACTIONS(3409), + [anon_sym_switch] = ACTIONS(3409), + [anon_sym_case] = ACTIONS(3409), + [anon_sym_default] = ACTIONS(3409), + [anon_sym_while] = ACTIONS(3409), + [anon_sym_do] = ACTIONS(3409), + [anon_sym_for] = ACTIONS(3409), + [anon_sym_return] = ACTIONS(3409), + [anon_sym_break] = ACTIONS(3409), + [anon_sym_continue] = ACTIONS(3409), + [anon_sym_goto] = ACTIONS(3409), + [anon_sym_not] = ACTIONS(3409), + [anon_sym_compl] = ACTIONS(3409), + [anon_sym_DASH_DASH] = ACTIONS(3411), + [anon_sym_PLUS_PLUS] = ACTIONS(3411), + [anon_sym_sizeof] = ACTIONS(3409), + [anon_sym_offsetof] = ACTIONS(3409), + [anon_sym__Generic] = ACTIONS(3409), + [anon_sym_asm] = ACTIONS(3409), + [anon_sym___asm__] = ACTIONS(3409), + [sym_number_literal] = ACTIONS(3411), + [anon_sym_L_SQUOTE] = ACTIONS(3411), + [anon_sym_u_SQUOTE] = ACTIONS(3411), + [anon_sym_U_SQUOTE] = ACTIONS(3411), + [anon_sym_u8_SQUOTE] = ACTIONS(3411), + [anon_sym_SQUOTE] = ACTIONS(3411), + [anon_sym_L_DQUOTE] = ACTIONS(3411), + [anon_sym_u_DQUOTE] = ACTIONS(3411), + [anon_sym_U_DQUOTE] = ACTIONS(3411), + [anon_sym_u8_DQUOTE] = ACTIONS(3411), + [anon_sym_DQUOTE] = ACTIONS(3411), + [sym_true] = ACTIONS(3409), + [sym_false] = ACTIONS(3409), + [anon_sym_NULL] = ACTIONS(3409), + [anon_sym_nullptr] = ACTIONS(3409), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3409), + [anon_sym_decltype] = ACTIONS(3409), + [anon_sym_virtual] = ACTIONS(3409), + [anon_sym_explicit] = ACTIONS(3409), + [anon_sym_typename] = ACTIONS(3409), + [anon_sym_template] = ACTIONS(3409), + [anon_sym_operator] = ACTIONS(3409), + [anon_sym_try] = ACTIONS(3409), + [anon_sym_delete] = ACTIONS(3409), + [anon_sym_throw] = ACTIONS(3409), + [anon_sym_namespace] = ACTIONS(3409), + [anon_sym_using] = ACTIONS(3409), + [anon_sym_static_assert] = ACTIONS(3409), + [anon_sym_concept] = ACTIONS(3409), + [anon_sym_co_return] = ACTIONS(3409), + [anon_sym_co_yield] = ACTIONS(3409), + [anon_sym_R_DQUOTE] = ACTIONS(3411), + [anon_sym_LR_DQUOTE] = ACTIONS(3411), + [anon_sym_uR_DQUOTE] = ACTIONS(3411), + [anon_sym_UR_DQUOTE] = ACTIONS(3411), + [anon_sym_u8R_DQUOTE] = ACTIONS(3411), + [anon_sym_co_await] = ACTIONS(3409), + [anon_sym_new] = ACTIONS(3409), + [anon_sym_requires] = ACTIONS(3409), + [sym_this] = ACTIONS(3409), }, [590] = { - [ts_builtin_sym_end] = ACTIONS(2636), - [sym_identifier] = ACTIONS(2634), - [aux_sym_preproc_include_token1] = ACTIONS(2634), - [aux_sym_preproc_def_token1] = ACTIONS(2634), - [aux_sym_preproc_if_token1] = ACTIONS(2634), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2634), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2634), - [sym_preproc_directive] = ACTIONS(2634), - [anon_sym_LPAREN2] = ACTIONS(2636), - [anon_sym_BANG] = ACTIONS(2636), - [anon_sym_TILDE] = ACTIONS(2636), - [anon_sym_DASH] = ACTIONS(2634), - [anon_sym_PLUS] = ACTIONS(2634), - [anon_sym_STAR] = ACTIONS(2636), - [anon_sym_AMP_AMP] = ACTIONS(2636), - [anon_sym_AMP] = ACTIONS(2634), - [anon_sym_SEMI] = ACTIONS(2636), - [anon_sym_typedef] = ACTIONS(2634), - [anon_sym_extern] = ACTIONS(2634), - [anon_sym___attribute__] = ACTIONS(2634), - [anon_sym_COLON_COLON] = ACTIONS(2636), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2636), - [anon_sym___declspec] = ACTIONS(2634), - [anon_sym___based] = ACTIONS(2634), - [anon_sym___cdecl] = ACTIONS(2634), - [anon_sym___clrcall] = ACTIONS(2634), - [anon_sym___stdcall] = ACTIONS(2634), - [anon_sym___fastcall] = ACTIONS(2634), - [anon_sym___thiscall] = ACTIONS(2634), - [anon_sym___vectorcall] = ACTIONS(2634), - [anon_sym_LBRACE] = ACTIONS(2636), - [anon_sym_LBRACK] = ACTIONS(2634), - [anon_sym_static] = ACTIONS(2634), - [anon_sym_register] = ACTIONS(2634), - [anon_sym_inline] = ACTIONS(2634), - [anon_sym_thread_local] = ACTIONS(2634), - [anon_sym_const] = ACTIONS(2634), - [anon_sym_volatile] = ACTIONS(2634), - [anon_sym_restrict] = ACTIONS(2634), - [anon_sym__Atomic] = ACTIONS(2634), - [anon_sym_mutable] = ACTIONS(2634), - [anon_sym_constexpr] = ACTIONS(2634), - [anon_sym_constinit] = ACTIONS(2634), - [anon_sym_consteval] = ACTIONS(2634), - [anon_sym_signed] = ACTIONS(2634), - [anon_sym_unsigned] = ACTIONS(2634), - [anon_sym_long] = ACTIONS(2634), - [anon_sym_short] = ACTIONS(2634), - [sym_primitive_type] = ACTIONS(2634), - [anon_sym_enum] = ACTIONS(2634), - [anon_sym_class] = ACTIONS(2634), - [anon_sym_struct] = ACTIONS(2634), - [anon_sym_union] = ACTIONS(2634), - [anon_sym_if] = ACTIONS(2634), - [anon_sym_else] = ACTIONS(2634), - [anon_sym_switch] = ACTIONS(2634), - [anon_sym_case] = ACTIONS(2634), - [anon_sym_default] = ACTIONS(2634), - [anon_sym_while] = ACTIONS(2634), - [anon_sym_do] = ACTIONS(2634), - [anon_sym_for] = ACTIONS(2634), - [anon_sym_return] = ACTIONS(2634), - [anon_sym_break] = ACTIONS(2634), - [anon_sym_continue] = ACTIONS(2634), - [anon_sym_goto] = ACTIONS(2634), - [anon_sym_not] = ACTIONS(2634), - [anon_sym_compl] = ACTIONS(2634), - [anon_sym_DASH_DASH] = ACTIONS(2636), - [anon_sym_PLUS_PLUS] = ACTIONS(2636), - [anon_sym_sizeof] = ACTIONS(2634), - [sym_number_literal] = ACTIONS(2636), - [anon_sym_L_SQUOTE] = ACTIONS(2636), - [anon_sym_u_SQUOTE] = ACTIONS(2636), - [anon_sym_U_SQUOTE] = ACTIONS(2636), - [anon_sym_u8_SQUOTE] = ACTIONS(2636), - [anon_sym_SQUOTE] = ACTIONS(2636), - [anon_sym_L_DQUOTE] = ACTIONS(2636), - [anon_sym_u_DQUOTE] = ACTIONS(2636), - [anon_sym_U_DQUOTE] = ACTIONS(2636), - [anon_sym_u8_DQUOTE] = ACTIONS(2636), - [anon_sym_DQUOTE] = ACTIONS(2636), - [sym_true] = ACTIONS(2634), - [sym_false] = ACTIONS(2634), - [sym_null] = ACTIONS(2634), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2634), - [anon_sym_decltype] = ACTIONS(2634), - [anon_sym_virtual] = ACTIONS(2634), - [anon_sym_explicit] = ACTIONS(2634), - [anon_sym_typename] = ACTIONS(2634), - [anon_sym_template] = ACTIONS(2634), - [anon_sym_operator] = ACTIONS(2634), - [anon_sym_try] = ACTIONS(2634), - [anon_sym_delete] = ACTIONS(2634), - [anon_sym_throw] = ACTIONS(2634), - [anon_sym_namespace] = ACTIONS(2634), - [anon_sym_using] = ACTIONS(2634), - [anon_sym_static_assert] = ACTIONS(2634), - [anon_sym_concept] = ACTIONS(2634), - [anon_sym_co_return] = ACTIONS(2634), - [anon_sym_co_yield] = ACTIONS(2634), - [anon_sym_R_DQUOTE] = ACTIONS(2636), - [anon_sym_LR_DQUOTE] = ACTIONS(2636), - [anon_sym_uR_DQUOTE] = ACTIONS(2636), - [anon_sym_UR_DQUOTE] = ACTIONS(2636), - [anon_sym_u8R_DQUOTE] = ACTIONS(2636), - [anon_sym_co_await] = ACTIONS(2634), - [anon_sym_new] = ACTIONS(2634), - [anon_sym_requires] = ACTIONS(2634), - [sym_this] = ACTIONS(2634), - [sym_nullptr] = ACTIONS(2634), + [sym_catch_clause] = STATE(573), + [aux_sym_constructor_try_statement_repeat1] = STATE(573), + [ts_builtin_sym_end] = ACTIONS(2711), + [sym_identifier] = ACTIONS(2709), + [aux_sym_preproc_include_token1] = ACTIONS(2709), + [aux_sym_preproc_def_token1] = ACTIONS(2709), + [aux_sym_preproc_if_token1] = ACTIONS(2709), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2709), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2709), + [sym_preproc_directive] = ACTIONS(2709), + [anon_sym_LPAREN2] = ACTIONS(2711), + [anon_sym_BANG] = ACTIONS(2711), + [anon_sym_TILDE] = ACTIONS(2711), + [anon_sym_DASH] = ACTIONS(2709), + [anon_sym_PLUS] = ACTIONS(2709), + [anon_sym_STAR] = ACTIONS(2711), + [anon_sym_AMP_AMP] = ACTIONS(2711), + [anon_sym_AMP] = ACTIONS(2709), + [anon_sym_SEMI] = ACTIONS(2711), + [anon_sym_typedef] = ACTIONS(2709), + [anon_sym_extern] = ACTIONS(2709), + [anon_sym___attribute__] = ACTIONS(2709), + [anon_sym_COLON_COLON] = ACTIONS(2711), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2711), + [anon_sym___declspec] = ACTIONS(2709), + [anon_sym___based] = ACTIONS(2709), + [anon_sym___cdecl] = ACTIONS(2709), + [anon_sym___clrcall] = ACTIONS(2709), + [anon_sym___stdcall] = ACTIONS(2709), + [anon_sym___fastcall] = ACTIONS(2709), + [anon_sym___thiscall] = ACTIONS(2709), + [anon_sym___vectorcall] = ACTIONS(2709), + [anon_sym_LBRACE] = ACTIONS(2711), + [anon_sym_LBRACK] = ACTIONS(2709), + [anon_sym_static] = ACTIONS(2709), + [anon_sym_register] = ACTIONS(2709), + [anon_sym_inline] = ACTIONS(2709), + [anon_sym_thread_local] = ACTIONS(2709), + [anon_sym_const] = ACTIONS(2709), + [anon_sym_constexpr] = ACTIONS(2709), + [anon_sym_volatile] = ACTIONS(2709), + [anon_sym_restrict] = ACTIONS(2709), + [anon_sym___restrict__] = ACTIONS(2709), + [anon_sym__Atomic] = ACTIONS(2709), + [anon_sym__Noreturn] = ACTIONS(2709), + [anon_sym_noreturn] = ACTIONS(2709), + [anon_sym_mutable] = ACTIONS(2709), + [anon_sym_constinit] = ACTIONS(2709), + [anon_sym_consteval] = ACTIONS(2709), + [anon_sym_signed] = ACTIONS(2709), + [anon_sym_unsigned] = ACTIONS(2709), + [anon_sym_long] = ACTIONS(2709), + [anon_sym_short] = ACTIONS(2709), + [sym_primitive_type] = ACTIONS(2709), + [anon_sym_enum] = ACTIONS(2709), + [anon_sym_class] = ACTIONS(2709), + [anon_sym_struct] = ACTIONS(2709), + [anon_sym_union] = ACTIONS(2709), + [anon_sym_if] = ACTIONS(2709), + [anon_sym_else] = ACTIONS(2709), + [anon_sym_switch] = ACTIONS(2709), + [anon_sym_case] = ACTIONS(2709), + [anon_sym_default] = ACTIONS(2709), + [anon_sym_while] = ACTIONS(2709), + [anon_sym_do] = ACTIONS(2709), + [anon_sym_for] = ACTIONS(2709), + [anon_sym_return] = ACTIONS(2709), + [anon_sym_break] = ACTIONS(2709), + [anon_sym_continue] = ACTIONS(2709), + [anon_sym_goto] = ACTIONS(2709), + [anon_sym_not] = ACTIONS(2709), + [anon_sym_compl] = ACTIONS(2709), + [anon_sym_DASH_DASH] = ACTIONS(2711), + [anon_sym_PLUS_PLUS] = ACTIONS(2711), + [anon_sym_sizeof] = ACTIONS(2709), + [anon_sym_offsetof] = ACTIONS(2709), + [anon_sym__Generic] = ACTIONS(2709), + [anon_sym_asm] = ACTIONS(2709), + [anon_sym___asm__] = ACTIONS(2709), + [sym_number_literal] = ACTIONS(2711), + [anon_sym_L_SQUOTE] = ACTIONS(2711), + [anon_sym_u_SQUOTE] = ACTIONS(2711), + [anon_sym_U_SQUOTE] = ACTIONS(2711), + [anon_sym_u8_SQUOTE] = ACTIONS(2711), + [anon_sym_SQUOTE] = ACTIONS(2711), + [anon_sym_L_DQUOTE] = ACTIONS(2711), + [anon_sym_u_DQUOTE] = ACTIONS(2711), + [anon_sym_U_DQUOTE] = ACTIONS(2711), + [anon_sym_u8_DQUOTE] = ACTIONS(2711), + [anon_sym_DQUOTE] = ACTIONS(2711), + [sym_true] = ACTIONS(2709), + [sym_false] = ACTIONS(2709), + [anon_sym_NULL] = ACTIONS(2709), + [anon_sym_nullptr] = ACTIONS(2709), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2709), + [anon_sym_decltype] = ACTIONS(2709), + [anon_sym_virtual] = ACTIONS(2709), + [anon_sym_explicit] = ACTIONS(2709), + [anon_sym_typename] = ACTIONS(2709), + [anon_sym_template] = ACTIONS(2709), + [anon_sym_operator] = ACTIONS(2709), + [anon_sym_try] = ACTIONS(2709), + [anon_sym_delete] = ACTIONS(2709), + [anon_sym_throw] = ACTIONS(2709), + [anon_sym_namespace] = ACTIONS(2709), + [anon_sym_using] = ACTIONS(2709), + [anon_sym_static_assert] = ACTIONS(2709), + [anon_sym_concept] = ACTIONS(2709), + [anon_sym_co_return] = ACTIONS(2709), + [anon_sym_co_yield] = ACTIONS(2709), + [anon_sym_catch] = ACTIONS(3413), + [anon_sym_R_DQUOTE] = ACTIONS(2711), + [anon_sym_LR_DQUOTE] = ACTIONS(2711), + [anon_sym_uR_DQUOTE] = ACTIONS(2711), + [anon_sym_UR_DQUOTE] = ACTIONS(2711), + [anon_sym_u8R_DQUOTE] = ACTIONS(2711), + [anon_sym_co_await] = ACTIONS(2709), + [anon_sym_new] = ACTIONS(2709), + [anon_sym_requires] = ACTIONS(2709), + [sym_this] = ACTIONS(2709), }, [591] = { - [ts_builtin_sym_end] = ACTIONS(2648), - [sym_identifier] = ACTIONS(2646), - [aux_sym_preproc_include_token1] = ACTIONS(2646), - [aux_sym_preproc_def_token1] = ACTIONS(2646), - [aux_sym_preproc_if_token1] = ACTIONS(2646), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2646), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2646), - [sym_preproc_directive] = ACTIONS(2646), - [anon_sym_LPAREN2] = ACTIONS(2648), - [anon_sym_BANG] = ACTIONS(2648), - [anon_sym_TILDE] = ACTIONS(2648), - [anon_sym_DASH] = ACTIONS(2646), - [anon_sym_PLUS] = ACTIONS(2646), - [anon_sym_STAR] = ACTIONS(2648), - [anon_sym_AMP_AMP] = ACTIONS(2648), - [anon_sym_AMP] = ACTIONS(2646), - [anon_sym_SEMI] = ACTIONS(2648), - [anon_sym_typedef] = ACTIONS(2646), - [anon_sym_extern] = ACTIONS(2646), - [anon_sym___attribute__] = ACTIONS(2646), - [anon_sym_COLON_COLON] = ACTIONS(2648), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2648), - [anon_sym___declspec] = ACTIONS(2646), - [anon_sym___based] = ACTIONS(2646), - [anon_sym___cdecl] = ACTIONS(2646), - [anon_sym___clrcall] = ACTIONS(2646), - [anon_sym___stdcall] = ACTIONS(2646), - [anon_sym___fastcall] = ACTIONS(2646), - [anon_sym___thiscall] = ACTIONS(2646), - [anon_sym___vectorcall] = ACTIONS(2646), - [anon_sym_LBRACE] = ACTIONS(2648), - [anon_sym_LBRACK] = ACTIONS(2646), - [anon_sym_static] = ACTIONS(2646), - [anon_sym_register] = ACTIONS(2646), - [anon_sym_inline] = ACTIONS(2646), - [anon_sym_thread_local] = ACTIONS(2646), - [anon_sym_const] = ACTIONS(2646), - [anon_sym_volatile] = ACTIONS(2646), - [anon_sym_restrict] = ACTIONS(2646), - [anon_sym__Atomic] = ACTIONS(2646), - [anon_sym_mutable] = ACTIONS(2646), - [anon_sym_constexpr] = ACTIONS(2646), - [anon_sym_constinit] = ACTIONS(2646), - [anon_sym_consteval] = ACTIONS(2646), - [anon_sym_signed] = ACTIONS(2646), - [anon_sym_unsigned] = ACTIONS(2646), - [anon_sym_long] = ACTIONS(2646), - [anon_sym_short] = ACTIONS(2646), - [sym_primitive_type] = ACTIONS(2646), - [anon_sym_enum] = ACTIONS(2646), - [anon_sym_class] = ACTIONS(2646), - [anon_sym_struct] = ACTIONS(2646), - [anon_sym_union] = ACTIONS(2646), - [anon_sym_if] = ACTIONS(2646), - [anon_sym_else] = ACTIONS(2918), - [anon_sym_switch] = ACTIONS(2646), - [anon_sym_case] = ACTIONS(2646), - [anon_sym_default] = ACTIONS(2646), - [anon_sym_while] = ACTIONS(2646), - [anon_sym_do] = ACTIONS(2646), - [anon_sym_for] = ACTIONS(2646), - [anon_sym_return] = ACTIONS(2646), - [anon_sym_break] = ACTIONS(2646), - [anon_sym_continue] = ACTIONS(2646), - [anon_sym_goto] = ACTIONS(2646), - [anon_sym_not] = ACTIONS(2646), - [anon_sym_compl] = ACTIONS(2646), - [anon_sym_DASH_DASH] = ACTIONS(2648), - [anon_sym_PLUS_PLUS] = ACTIONS(2648), - [anon_sym_sizeof] = ACTIONS(2646), - [sym_number_literal] = ACTIONS(2648), - [anon_sym_L_SQUOTE] = ACTIONS(2648), - [anon_sym_u_SQUOTE] = ACTIONS(2648), - [anon_sym_U_SQUOTE] = ACTIONS(2648), - [anon_sym_u8_SQUOTE] = ACTIONS(2648), - [anon_sym_SQUOTE] = ACTIONS(2648), - [anon_sym_L_DQUOTE] = ACTIONS(2648), - [anon_sym_u_DQUOTE] = ACTIONS(2648), - [anon_sym_U_DQUOTE] = ACTIONS(2648), - [anon_sym_u8_DQUOTE] = ACTIONS(2648), - [anon_sym_DQUOTE] = ACTIONS(2648), - [sym_true] = ACTIONS(2646), - [sym_false] = ACTIONS(2646), - [sym_null] = ACTIONS(2646), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2646), - [anon_sym_decltype] = ACTIONS(2646), - [anon_sym_virtual] = ACTIONS(2646), - [anon_sym_explicit] = ACTIONS(2646), - [anon_sym_typename] = ACTIONS(2646), - [anon_sym_template] = ACTIONS(2646), - [anon_sym_operator] = ACTIONS(2646), - [anon_sym_try] = ACTIONS(2646), - [anon_sym_delete] = ACTIONS(2646), - [anon_sym_throw] = ACTIONS(2646), - [anon_sym_namespace] = ACTIONS(2646), - [anon_sym_using] = ACTIONS(2646), - [anon_sym_static_assert] = ACTIONS(2646), - [anon_sym_concept] = ACTIONS(2646), - [anon_sym_co_return] = ACTIONS(2646), - [anon_sym_co_yield] = ACTIONS(2646), - [anon_sym_R_DQUOTE] = ACTIONS(2648), - [anon_sym_LR_DQUOTE] = ACTIONS(2648), - [anon_sym_uR_DQUOTE] = ACTIONS(2648), - [anon_sym_UR_DQUOTE] = ACTIONS(2648), - [anon_sym_u8R_DQUOTE] = ACTIONS(2648), - [anon_sym_co_await] = ACTIONS(2646), - [anon_sym_new] = ACTIONS(2646), - [anon_sym_requires] = ACTIONS(2646), - [sym_this] = ACTIONS(2646), - [sym_nullptr] = ACTIONS(2646), + [sym_identifier] = ACTIONS(3415), + [aux_sym_preproc_include_token1] = ACTIONS(3415), + [aux_sym_preproc_def_token1] = ACTIONS(3415), + [aux_sym_preproc_if_token1] = ACTIONS(3415), + [aux_sym_preproc_if_token2] = ACTIONS(3415), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3415), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3415), + [aux_sym_preproc_else_token1] = ACTIONS(3415), + [aux_sym_preproc_elif_token1] = ACTIONS(3415), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3415), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3415), + [sym_preproc_directive] = ACTIONS(3415), + [anon_sym_LPAREN2] = ACTIONS(3417), + [anon_sym_BANG] = ACTIONS(3417), + [anon_sym_TILDE] = ACTIONS(3417), + [anon_sym_DASH] = ACTIONS(3415), + [anon_sym_PLUS] = ACTIONS(3415), + [anon_sym_STAR] = ACTIONS(3417), + [anon_sym_AMP_AMP] = ACTIONS(3417), + [anon_sym_AMP] = ACTIONS(3415), + [anon_sym_SEMI] = ACTIONS(3417), + [anon_sym_typedef] = ACTIONS(3415), + [anon_sym_extern] = ACTIONS(3415), + [anon_sym___attribute__] = ACTIONS(3415), + [anon_sym_COLON_COLON] = ACTIONS(3417), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3417), + [anon_sym___declspec] = ACTIONS(3415), + [anon_sym___based] = ACTIONS(3415), + [anon_sym___cdecl] = ACTIONS(3415), + [anon_sym___clrcall] = ACTIONS(3415), + [anon_sym___stdcall] = ACTIONS(3415), + [anon_sym___fastcall] = ACTIONS(3415), + [anon_sym___thiscall] = ACTIONS(3415), + [anon_sym___vectorcall] = ACTIONS(3415), + [anon_sym_LBRACE] = ACTIONS(3417), + [anon_sym_LBRACK] = ACTIONS(3415), + [anon_sym_static] = ACTIONS(3415), + [anon_sym_register] = ACTIONS(3415), + [anon_sym_inline] = ACTIONS(3415), + [anon_sym_thread_local] = ACTIONS(3415), + [anon_sym_const] = ACTIONS(3415), + [anon_sym_constexpr] = ACTIONS(3415), + [anon_sym_volatile] = ACTIONS(3415), + [anon_sym_restrict] = ACTIONS(3415), + [anon_sym___restrict__] = ACTIONS(3415), + [anon_sym__Atomic] = ACTIONS(3415), + [anon_sym__Noreturn] = ACTIONS(3415), + [anon_sym_noreturn] = ACTIONS(3415), + [anon_sym_mutable] = ACTIONS(3415), + [anon_sym_constinit] = ACTIONS(3415), + [anon_sym_consteval] = ACTIONS(3415), + [anon_sym_signed] = ACTIONS(3415), + [anon_sym_unsigned] = ACTIONS(3415), + [anon_sym_long] = ACTIONS(3415), + [anon_sym_short] = ACTIONS(3415), + [sym_primitive_type] = ACTIONS(3415), + [anon_sym_enum] = ACTIONS(3415), + [anon_sym_class] = ACTIONS(3415), + [anon_sym_struct] = ACTIONS(3415), + [anon_sym_union] = ACTIONS(3415), + [anon_sym_if] = ACTIONS(3415), + [anon_sym_switch] = ACTIONS(3415), + [anon_sym_case] = ACTIONS(3415), + [anon_sym_default] = ACTIONS(3415), + [anon_sym_while] = ACTIONS(3415), + [anon_sym_do] = ACTIONS(3415), + [anon_sym_for] = ACTIONS(3415), + [anon_sym_return] = ACTIONS(3415), + [anon_sym_break] = ACTIONS(3415), + [anon_sym_continue] = ACTIONS(3415), + [anon_sym_goto] = ACTIONS(3415), + [anon_sym_not] = ACTIONS(3415), + [anon_sym_compl] = ACTIONS(3415), + [anon_sym_DASH_DASH] = ACTIONS(3417), + [anon_sym_PLUS_PLUS] = ACTIONS(3417), + [anon_sym_sizeof] = ACTIONS(3415), + [anon_sym_offsetof] = ACTIONS(3415), + [anon_sym__Generic] = ACTIONS(3415), + [anon_sym_asm] = ACTIONS(3415), + [anon_sym___asm__] = ACTIONS(3415), + [sym_number_literal] = ACTIONS(3417), + [anon_sym_L_SQUOTE] = ACTIONS(3417), + [anon_sym_u_SQUOTE] = ACTIONS(3417), + [anon_sym_U_SQUOTE] = ACTIONS(3417), + [anon_sym_u8_SQUOTE] = ACTIONS(3417), + [anon_sym_SQUOTE] = ACTIONS(3417), + [anon_sym_L_DQUOTE] = ACTIONS(3417), + [anon_sym_u_DQUOTE] = ACTIONS(3417), + [anon_sym_U_DQUOTE] = ACTIONS(3417), + [anon_sym_u8_DQUOTE] = ACTIONS(3417), + [anon_sym_DQUOTE] = ACTIONS(3417), + [sym_true] = ACTIONS(3415), + [sym_false] = ACTIONS(3415), + [anon_sym_NULL] = ACTIONS(3415), + [anon_sym_nullptr] = ACTIONS(3415), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3415), + [anon_sym_decltype] = ACTIONS(3415), + [anon_sym_virtual] = ACTIONS(3415), + [anon_sym_explicit] = ACTIONS(3415), + [anon_sym_typename] = ACTIONS(3415), + [anon_sym_template] = ACTIONS(3415), + [anon_sym_operator] = ACTIONS(3415), + [anon_sym_try] = ACTIONS(3415), + [anon_sym_delete] = ACTIONS(3415), + [anon_sym_throw] = ACTIONS(3415), + [anon_sym_namespace] = ACTIONS(3415), + [anon_sym_using] = ACTIONS(3415), + [anon_sym_static_assert] = ACTIONS(3415), + [anon_sym_concept] = ACTIONS(3415), + [anon_sym_co_return] = ACTIONS(3415), + [anon_sym_co_yield] = ACTIONS(3415), + [anon_sym_R_DQUOTE] = ACTIONS(3417), + [anon_sym_LR_DQUOTE] = ACTIONS(3417), + [anon_sym_uR_DQUOTE] = ACTIONS(3417), + [anon_sym_UR_DQUOTE] = ACTIONS(3417), + [anon_sym_u8R_DQUOTE] = ACTIONS(3417), + [anon_sym_co_await] = ACTIONS(3415), + [anon_sym_new] = ACTIONS(3415), + [anon_sym_requires] = ACTIONS(3415), + [sym_this] = ACTIONS(3415), }, [592] = { - [sym_identifier] = ACTIONS(2488), - [aux_sym_preproc_include_token1] = ACTIONS(2488), - [aux_sym_preproc_def_token1] = ACTIONS(2488), - [aux_sym_preproc_if_token1] = ACTIONS(2488), - [aux_sym_preproc_if_token2] = ACTIONS(2488), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2488), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2488), - [sym_preproc_directive] = ACTIONS(2488), - [anon_sym_LPAREN2] = ACTIONS(2490), - [anon_sym_BANG] = ACTIONS(2490), - [anon_sym_TILDE] = ACTIONS(2490), - [anon_sym_DASH] = ACTIONS(2488), - [anon_sym_PLUS] = ACTIONS(2488), - [anon_sym_STAR] = ACTIONS(2490), - [anon_sym_AMP_AMP] = ACTIONS(2490), - [anon_sym_AMP] = ACTIONS(2488), - [anon_sym_SEMI] = ACTIONS(2490), - [anon_sym_typedef] = ACTIONS(2488), - [anon_sym_extern] = ACTIONS(2488), - [anon_sym___attribute__] = ACTIONS(2488), - [anon_sym_COLON_COLON] = ACTIONS(2490), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2490), - [anon_sym___declspec] = ACTIONS(2488), - [anon_sym___based] = ACTIONS(2488), - [anon_sym___cdecl] = ACTIONS(2488), - [anon_sym___clrcall] = ACTIONS(2488), - [anon_sym___stdcall] = ACTIONS(2488), - [anon_sym___fastcall] = ACTIONS(2488), - [anon_sym___thiscall] = ACTIONS(2488), - [anon_sym___vectorcall] = ACTIONS(2488), - [anon_sym_LBRACE] = ACTIONS(2490), - [anon_sym_LBRACK] = ACTIONS(2488), - [anon_sym_static] = ACTIONS(2488), - [anon_sym_register] = ACTIONS(2488), - [anon_sym_inline] = ACTIONS(2488), - [anon_sym_thread_local] = ACTIONS(2488), - [anon_sym_const] = ACTIONS(2488), - [anon_sym_volatile] = ACTIONS(2488), - [anon_sym_restrict] = ACTIONS(2488), - [anon_sym__Atomic] = ACTIONS(2488), - [anon_sym_mutable] = ACTIONS(2488), - [anon_sym_constexpr] = ACTIONS(2488), - [anon_sym_constinit] = ACTIONS(2488), - [anon_sym_consteval] = ACTIONS(2488), - [anon_sym_signed] = ACTIONS(2488), - [anon_sym_unsigned] = ACTIONS(2488), - [anon_sym_long] = ACTIONS(2488), - [anon_sym_short] = ACTIONS(2488), - [sym_primitive_type] = ACTIONS(2488), - [anon_sym_enum] = ACTIONS(2488), - [anon_sym_class] = ACTIONS(2488), - [anon_sym_struct] = ACTIONS(2488), - [anon_sym_union] = ACTIONS(2488), - [anon_sym_if] = ACTIONS(2488), - [anon_sym_else] = ACTIONS(2488), - [anon_sym_switch] = ACTIONS(2488), - [anon_sym_case] = ACTIONS(2488), - [anon_sym_default] = ACTIONS(2488), - [anon_sym_while] = ACTIONS(2488), - [anon_sym_do] = ACTIONS(2488), - [anon_sym_for] = ACTIONS(2488), - [anon_sym_return] = ACTIONS(2488), - [anon_sym_break] = ACTIONS(2488), - [anon_sym_continue] = ACTIONS(2488), - [anon_sym_goto] = ACTIONS(2488), - [anon_sym_not] = ACTIONS(2488), - [anon_sym_compl] = ACTIONS(2488), - [anon_sym_DASH_DASH] = ACTIONS(2490), - [anon_sym_PLUS_PLUS] = ACTIONS(2490), - [anon_sym_sizeof] = ACTIONS(2488), - [sym_number_literal] = ACTIONS(2490), - [anon_sym_L_SQUOTE] = ACTIONS(2490), - [anon_sym_u_SQUOTE] = ACTIONS(2490), - [anon_sym_U_SQUOTE] = ACTIONS(2490), - [anon_sym_u8_SQUOTE] = ACTIONS(2490), - [anon_sym_SQUOTE] = ACTIONS(2490), - [anon_sym_L_DQUOTE] = ACTIONS(2490), - [anon_sym_u_DQUOTE] = ACTIONS(2490), - [anon_sym_U_DQUOTE] = ACTIONS(2490), - [anon_sym_u8_DQUOTE] = ACTIONS(2490), - [anon_sym_DQUOTE] = ACTIONS(2490), - [sym_true] = ACTIONS(2488), - [sym_false] = ACTIONS(2488), - [sym_null] = ACTIONS(2488), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2488), - [anon_sym_decltype] = ACTIONS(2488), - [anon_sym_virtual] = ACTIONS(2488), - [anon_sym_explicit] = ACTIONS(2488), - [anon_sym_typename] = ACTIONS(2488), - [anon_sym_template] = ACTIONS(2488), - [anon_sym_operator] = ACTIONS(2488), - [anon_sym_try] = ACTIONS(2488), - [anon_sym_delete] = ACTIONS(2488), - [anon_sym_throw] = ACTIONS(2488), - [anon_sym_namespace] = ACTIONS(2488), - [anon_sym_using] = ACTIONS(2488), - [anon_sym_static_assert] = ACTIONS(2488), - [anon_sym_concept] = ACTIONS(2488), - [anon_sym_co_return] = ACTIONS(2488), - [anon_sym_co_yield] = ACTIONS(2488), - [anon_sym_R_DQUOTE] = ACTIONS(2490), - [anon_sym_LR_DQUOTE] = ACTIONS(2490), - [anon_sym_uR_DQUOTE] = ACTIONS(2490), - [anon_sym_UR_DQUOTE] = ACTIONS(2490), - [anon_sym_u8R_DQUOTE] = ACTIONS(2490), - [anon_sym_co_await] = ACTIONS(2488), - [anon_sym_new] = ACTIONS(2488), - [anon_sym_requires] = ACTIONS(2488), - [sym_this] = ACTIONS(2488), - [sym_nullptr] = ACTIONS(2488), + [sym_identifier] = ACTIONS(3419), + [aux_sym_preproc_include_token1] = ACTIONS(3419), + [aux_sym_preproc_def_token1] = ACTIONS(3419), + [aux_sym_preproc_if_token1] = ACTIONS(3419), + [aux_sym_preproc_if_token2] = ACTIONS(3419), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3419), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3419), + [aux_sym_preproc_else_token1] = ACTIONS(3419), + [aux_sym_preproc_elif_token1] = ACTIONS(3419), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3419), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3419), + [sym_preproc_directive] = ACTIONS(3419), + [anon_sym_LPAREN2] = ACTIONS(3421), + [anon_sym_BANG] = ACTIONS(3421), + [anon_sym_TILDE] = ACTIONS(3421), + [anon_sym_DASH] = ACTIONS(3419), + [anon_sym_PLUS] = ACTIONS(3419), + [anon_sym_STAR] = ACTIONS(3421), + [anon_sym_AMP_AMP] = ACTIONS(3421), + [anon_sym_AMP] = ACTIONS(3419), + [anon_sym_SEMI] = ACTIONS(3421), + [anon_sym_typedef] = ACTIONS(3419), + [anon_sym_extern] = ACTIONS(3419), + [anon_sym___attribute__] = ACTIONS(3419), + [anon_sym_COLON_COLON] = ACTIONS(3421), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3421), + [anon_sym___declspec] = ACTIONS(3419), + [anon_sym___based] = ACTIONS(3419), + [anon_sym___cdecl] = ACTIONS(3419), + [anon_sym___clrcall] = ACTIONS(3419), + [anon_sym___stdcall] = ACTIONS(3419), + [anon_sym___fastcall] = ACTIONS(3419), + [anon_sym___thiscall] = ACTIONS(3419), + [anon_sym___vectorcall] = ACTIONS(3419), + [anon_sym_LBRACE] = ACTIONS(3421), + [anon_sym_LBRACK] = ACTIONS(3419), + [anon_sym_static] = ACTIONS(3419), + [anon_sym_register] = ACTIONS(3419), + [anon_sym_inline] = ACTIONS(3419), + [anon_sym_thread_local] = ACTIONS(3419), + [anon_sym_const] = ACTIONS(3419), + [anon_sym_constexpr] = ACTIONS(3419), + [anon_sym_volatile] = ACTIONS(3419), + [anon_sym_restrict] = ACTIONS(3419), + [anon_sym___restrict__] = ACTIONS(3419), + [anon_sym__Atomic] = ACTIONS(3419), + [anon_sym__Noreturn] = ACTIONS(3419), + [anon_sym_noreturn] = ACTIONS(3419), + [anon_sym_mutable] = ACTIONS(3419), + [anon_sym_constinit] = ACTIONS(3419), + [anon_sym_consteval] = ACTIONS(3419), + [anon_sym_signed] = ACTIONS(3419), + [anon_sym_unsigned] = ACTIONS(3419), + [anon_sym_long] = ACTIONS(3419), + [anon_sym_short] = ACTIONS(3419), + [sym_primitive_type] = ACTIONS(3419), + [anon_sym_enum] = ACTIONS(3419), + [anon_sym_class] = ACTIONS(3419), + [anon_sym_struct] = ACTIONS(3419), + [anon_sym_union] = ACTIONS(3419), + [anon_sym_if] = ACTIONS(3419), + [anon_sym_switch] = ACTIONS(3419), + [anon_sym_case] = ACTIONS(3419), + [anon_sym_default] = ACTIONS(3419), + [anon_sym_while] = ACTIONS(3419), + [anon_sym_do] = ACTIONS(3419), + [anon_sym_for] = ACTIONS(3419), + [anon_sym_return] = ACTIONS(3419), + [anon_sym_break] = ACTIONS(3419), + [anon_sym_continue] = ACTIONS(3419), + [anon_sym_goto] = ACTIONS(3419), + [anon_sym_not] = ACTIONS(3419), + [anon_sym_compl] = ACTIONS(3419), + [anon_sym_DASH_DASH] = ACTIONS(3421), + [anon_sym_PLUS_PLUS] = ACTIONS(3421), + [anon_sym_sizeof] = ACTIONS(3419), + [anon_sym_offsetof] = ACTIONS(3419), + [anon_sym__Generic] = ACTIONS(3419), + [anon_sym_asm] = ACTIONS(3419), + [anon_sym___asm__] = ACTIONS(3419), + [sym_number_literal] = ACTIONS(3421), + [anon_sym_L_SQUOTE] = ACTIONS(3421), + [anon_sym_u_SQUOTE] = ACTIONS(3421), + [anon_sym_U_SQUOTE] = ACTIONS(3421), + [anon_sym_u8_SQUOTE] = ACTIONS(3421), + [anon_sym_SQUOTE] = ACTIONS(3421), + [anon_sym_L_DQUOTE] = ACTIONS(3421), + [anon_sym_u_DQUOTE] = ACTIONS(3421), + [anon_sym_U_DQUOTE] = ACTIONS(3421), + [anon_sym_u8_DQUOTE] = ACTIONS(3421), + [anon_sym_DQUOTE] = ACTIONS(3421), + [sym_true] = ACTIONS(3419), + [sym_false] = ACTIONS(3419), + [anon_sym_NULL] = ACTIONS(3419), + [anon_sym_nullptr] = ACTIONS(3419), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3419), + [anon_sym_decltype] = ACTIONS(3419), + [anon_sym_virtual] = ACTIONS(3419), + [anon_sym_explicit] = ACTIONS(3419), + [anon_sym_typename] = ACTIONS(3419), + [anon_sym_template] = ACTIONS(3419), + [anon_sym_operator] = ACTIONS(3419), + [anon_sym_try] = ACTIONS(3419), + [anon_sym_delete] = ACTIONS(3419), + [anon_sym_throw] = ACTIONS(3419), + [anon_sym_namespace] = ACTIONS(3419), + [anon_sym_using] = ACTIONS(3419), + [anon_sym_static_assert] = ACTIONS(3419), + [anon_sym_concept] = ACTIONS(3419), + [anon_sym_co_return] = ACTIONS(3419), + [anon_sym_co_yield] = ACTIONS(3419), + [anon_sym_R_DQUOTE] = ACTIONS(3421), + [anon_sym_LR_DQUOTE] = ACTIONS(3421), + [anon_sym_uR_DQUOTE] = ACTIONS(3421), + [anon_sym_UR_DQUOTE] = ACTIONS(3421), + [anon_sym_u8R_DQUOTE] = ACTIONS(3421), + [anon_sym_co_await] = ACTIONS(3419), + [anon_sym_new] = ACTIONS(3419), + [anon_sym_requires] = ACTIONS(3419), + [sym_this] = ACTIONS(3419), }, [593] = { - [ts_builtin_sym_end] = ACTIONS(2616), - [sym_identifier] = ACTIONS(2614), - [aux_sym_preproc_include_token1] = ACTIONS(2614), - [aux_sym_preproc_def_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2614), - [sym_preproc_directive] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP_AMP] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2614), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym___based] = ACTIONS(2614), - [anon_sym___cdecl] = ACTIONS(2614), - [anon_sym___clrcall] = ACTIONS(2614), - [anon_sym___stdcall] = ACTIONS(2614), - [anon_sym___fastcall] = ACTIONS(2614), - [anon_sym___thiscall] = ACTIONS(2614), - [anon_sym___vectorcall] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_case] = ACTIONS(2614), - [anon_sym_default] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_explicit] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_operator] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_namespace] = ACTIONS(2614), - [anon_sym_using] = ACTIONS(2614), - [anon_sym_static_assert] = ACTIONS(2614), - [anon_sym_concept] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), + [sym__expression] = STATE(4216), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7464), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3129), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(3423), + [anon_sym_extern] = ACTIONS(2966), + [anon_sym___attribute__] = ACTIONS(2966), + [anon_sym_COLON_COLON] = ACTIONS(3134), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2968), + [anon_sym___declspec] = ACTIONS(2966), + [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_static] = ACTIONS(2966), + [anon_sym_register] = ACTIONS(2966), + [anon_sym_inline] = ACTIONS(2966), + [anon_sym_thread_local] = 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_noreturn] = ACTIONS(2966), + [anon_sym_mutable] = ACTIONS(2966), + [anon_sym_constinit] = ACTIONS(2966), + [anon_sym_consteval] = ACTIONS(2966), + [anon_sym_signed] = ACTIONS(2966), + [anon_sym_unsigned] = ACTIONS(2966), + [anon_sym_long] = ACTIONS(2966), + [anon_sym_short] = ACTIONS(2966), + [sym_primitive_type] = ACTIONS(3137), + [anon_sym_enum] = ACTIONS(2966), + [anon_sym_class] = ACTIONS(2966), + [anon_sym_struct] = ACTIONS(2966), + [anon_sym_union] = ACTIONS(2966), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2966), + [anon_sym_decltype] = ACTIONS(3140), + [anon_sym_virtual] = ACTIONS(2966), + [anon_sym_typename] = ACTIONS(2966), + [anon_sym_template] = ACTIONS(3143), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [594] = { - [sym_identifier] = ACTIONS(2622), - [aux_sym_preproc_include_token1] = ACTIONS(2622), - [aux_sym_preproc_def_token1] = ACTIONS(2622), - [aux_sym_preproc_if_token1] = ACTIONS(2622), - [aux_sym_preproc_if_token2] = ACTIONS(2622), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2622), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2622), - [sym_preproc_directive] = ACTIONS(2622), - [anon_sym_LPAREN2] = ACTIONS(2624), - [anon_sym_BANG] = ACTIONS(2624), - [anon_sym_TILDE] = ACTIONS(2624), - [anon_sym_DASH] = ACTIONS(2622), - [anon_sym_PLUS] = ACTIONS(2622), - [anon_sym_STAR] = ACTIONS(2624), - [anon_sym_AMP_AMP] = ACTIONS(2624), - [anon_sym_AMP] = ACTIONS(2622), - [anon_sym_SEMI] = ACTIONS(2624), - [anon_sym_typedef] = ACTIONS(2622), - [anon_sym_extern] = ACTIONS(2622), - [anon_sym___attribute__] = ACTIONS(2622), - [anon_sym_COLON_COLON] = ACTIONS(2624), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2624), - [anon_sym___declspec] = ACTIONS(2622), - [anon_sym___based] = ACTIONS(2622), - [anon_sym___cdecl] = ACTIONS(2622), - [anon_sym___clrcall] = ACTIONS(2622), - [anon_sym___stdcall] = ACTIONS(2622), - [anon_sym___fastcall] = ACTIONS(2622), - [anon_sym___thiscall] = ACTIONS(2622), - [anon_sym___vectorcall] = ACTIONS(2622), - [anon_sym_LBRACE] = ACTIONS(2624), - [anon_sym_LBRACK] = ACTIONS(2622), - [anon_sym_static] = ACTIONS(2622), - [anon_sym_register] = ACTIONS(2622), - [anon_sym_inline] = ACTIONS(2622), - [anon_sym_thread_local] = ACTIONS(2622), - [anon_sym_const] = ACTIONS(2622), - [anon_sym_volatile] = ACTIONS(2622), - [anon_sym_restrict] = ACTIONS(2622), - [anon_sym__Atomic] = ACTIONS(2622), - [anon_sym_mutable] = ACTIONS(2622), - [anon_sym_constexpr] = ACTIONS(2622), - [anon_sym_constinit] = ACTIONS(2622), - [anon_sym_consteval] = ACTIONS(2622), - [anon_sym_signed] = ACTIONS(2622), - [anon_sym_unsigned] = ACTIONS(2622), - [anon_sym_long] = ACTIONS(2622), - [anon_sym_short] = ACTIONS(2622), - [sym_primitive_type] = ACTIONS(2622), - [anon_sym_enum] = ACTIONS(2622), - [anon_sym_class] = ACTIONS(2622), - [anon_sym_struct] = ACTIONS(2622), - [anon_sym_union] = ACTIONS(2622), - [anon_sym_if] = ACTIONS(2622), - [anon_sym_else] = ACTIONS(2622), - [anon_sym_switch] = ACTIONS(2622), - [anon_sym_case] = ACTIONS(2622), - [anon_sym_default] = ACTIONS(2622), - [anon_sym_while] = ACTIONS(2622), - [anon_sym_do] = ACTIONS(2622), - [anon_sym_for] = ACTIONS(2622), - [anon_sym_return] = ACTIONS(2622), - [anon_sym_break] = ACTIONS(2622), - [anon_sym_continue] = ACTIONS(2622), - [anon_sym_goto] = ACTIONS(2622), - [anon_sym_not] = ACTIONS(2622), - [anon_sym_compl] = ACTIONS(2622), - [anon_sym_DASH_DASH] = ACTIONS(2624), - [anon_sym_PLUS_PLUS] = ACTIONS(2624), - [anon_sym_sizeof] = ACTIONS(2622), - [sym_number_literal] = ACTIONS(2624), - [anon_sym_L_SQUOTE] = ACTIONS(2624), - [anon_sym_u_SQUOTE] = ACTIONS(2624), - [anon_sym_U_SQUOTE] = ACTIONS(2624), - [anon_sym_u8_SQUOTE] = ACTIONS(2624), - [anon_sym_SQUOTE] = ACTIONS(2624), - [anon_sym_L_DQUOTE] = ACTIONS(2624), - [anon_sym_u_DQUOTE] = ACTIONS(2624), - [anon_sym_U_DQUOTE] = ACTIONS(2624), - [anon_sym_u8_DQUOTE] = ACTIONS(2624), - [anon_sym_DQUOTE] = ACTIONS(2624), - [sym_true] = ACTIONS(2622), - [sym_false] = ACTIONS(2622), - [sym_null] = ACTIONS(2622), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2622), - [anon_sym_decltype] = ACTIONS(2622), - [anon_sym_virtual] = ACTIONS(2622), - [anon_sym_explicit] = ACTIONS(2622), - [anon_sym_typename] = ACTIONS(2622), - [anon_sym_template] = ACTIONS(2622), - [anon_sym_operator] = ACTIONS(2622), - [anon_sym_try] = ACTIONS(2622), - [anon_sym_delete] = ACTIONS(2622), - [anon_sym_throw] = ACTIONS(2622), - [anon_sym_namespace] = ACTIONS(2622), - [anon_sym_using] = ACTIONS(2622), - [anon_sym_static_assert] = ACTIONS(2622), - [anon_sym_concept] = ACTIONS(2622), - [anon_sym_co_return] = ACTIONS(2622), - [anon_sym_co_yield] = ACTIONS(2622), - [anon_sym_R_DQUOTE] = ACTIONS(2624), - [anon_sym_LR_DQUOTE] = ACTIONS(2624), - [anon_sym_uR_DQUOTE] = ACTIONS(2624), - [anon_sym_UR_DQUOTE] = ACTIONS(2624), - [anon_sym_u8R_DQUOTE] = ACTIONS(2624), - [anon_sym_co_await] = ACTIONS(2622), - [anon_sym_new] = ACTIONS(2622), - [anon_sym_requires] = ACTIONS(2622), - [sym_this] = ACTIONS(2622), - [sym_nullptr] = ACTIONS(2622), + [sym_identifier] = ACTIONS(3425), + [aux_sym_preproc_include_token1] = ACTIONS(3425), + [aux_sym_preproc_def_token1] = ACTIONS(3425), + [aux_sym_preproc_if_token1] = ACTIONS(3425), + [aux_sym_preproc_if_token2] = ACTIONS(3425), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3425), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3425), + [aux_sym_preproc_else_token1] = ACTIONS(3425), + [aux_sym_preproc_elif_token1] = ACTIONS(3425), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3425), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3425), + [sym_preproc_directive] = ACTIONS(3425), + [anon_sym_LPAREN2] = ACTIONS(3427), + [anon_sym_BANG] = ACTIONS(3427), + [anon_sym_TILDE] = ACTIONS(3427), + [anon_sym_DASH] = ACTIONS(3425), + [anon_sym_PLUS] = ACTIONS(3425), + [anon_sym_STAR] = ACTIONS(3427), + [anon_sym_AMP_AMP] = ACTIONS(3427), + [anon_sym_AMP] = ACTIONS(3425), + [anon_sym_SEMI] = ACTIONS(3427), + [anon_sym_typedef] = ACTIONS(3425), + [anon_sym_extern] = ACTIONS(3425), + [anon_sym___attribute__] = ACTIONS(3425), + [anon_sym_COLON_COLON] = ACTIONS(3427), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3427), + [anon_sym___declspec] = ACTIONS(3425), + [anon_sym___based] = ACTIONS(3425), + [anon_sym___cdecl] = ACTIONS(3425), + [anon_sym___clrcall] = ACTIONS(3425), + [anon_sym___stdcall] = ACTIONS(3425), + [anon_sym___fastcall] = ACTIONS(3425), + [anon_sym___thiscall] = ACTIONS(3425), + [anon_sym___vectorcall] = ACTIONS(3425), + [anon_sym_LBRACE] = ACTIONS(3427), + [anon_sym_LBRACK] = ACTIONS(3425), + [anon_sym_static] = ACTIONS(3425), + [anon_sym_register] = ACTIONS(3425), + [anon_sym_inline] = ACTIONS(3425), + [anon_sym_thread_local] = ACTIONS(3425), + [anon_sym_const] = ACTIONS(3425), + [anon_sym_constexpr] = ACTIONS(3425), + [anon_sym_volatile] = ACTIONS(3425), + [anon_sym_restrict] = ACTIONS(3425), + [anon_sym___restrict__] = ACTIONS(3425), + [anon_sym__Atomic] = ACTIONS(3425), + [anon_sym__Noreturn] = ACTIONS(3425), + [anon_sym_noreturn] = ACTIONS(3425), + [anon_sym_mutable] = ACTIONS(3425), + [anon_sym_constinit] = ACTIONS(3425), + [anon_sym_consteval] = ACTIONS(3425), + [anon_sym_signed] = ACTIONS(3425), + [anon_sym_unsigned] = ACTIONS(3425), + [anon_sym_long] = ACTIONS(3425), + [anon_sym_short] = ACTIONS(3425), + [sym_primitive_type] = ACTIONS(3425), + [anon_sym_enum] = ACTIONS(3425), + [anon_sym_class] = ACTIONS(3425), + [anon_sym_struct] = ACTIONS(3425), + [anon_sym_union] = ACTIONS(3425), + [anon_sym_if] = ACTIONS(3425), + [anon_sym_switch] = ACTIONS(3425), + [anon_sym_case] = ACTIONS(3425), + [anon_sym_default] = ACTIONS(3425), + [anon_sym_while] = ACTIONS(3425), + [anon_sym_do] = ACTIONS(3425), + [anon_sym_for] = ACTIONS(3425), + [anon_sym_return] = ACTIONS(3425), + [anon_sym_break] = ACTIONS(3425), + [anon_sym_continue] = ACTIONS(3425), + [anon_sym_goto] = ACTIONS(3425), + [anon_sym_not] = ACTIONS(3425), + [anon_sym_compl] = ACTIONS(3425), + [anon_sym_DASH_DASH] = ACTIONS(3427), + [anon_sym_PLUS_PLUS] = ACTIONS(3427), + [anon_sym_sizeof] = ACTIONS(3425), + [anon_sym_offsetof] = ACTIONS(3425), + [anon_sym__Generic] = ACTIONS(3425), + [anon_sym_asm] = ACTIONS(3425), + [anon_sym___asm__] = ACTIONS(3425), + [sym_number_literal] = ACTIONS(3427), + [anon_sym_L_SQUOTE] = ACTIONS(3427), + [anon_sym_u_SQUOTE] = ACTIONS(3427), + [anon_sym_U_SQUOTE] = ACTIONS(3427), + [anon_sym_u8_SQUOTE] = ACTIONS(3427), + [anon_sym_SQUOTE] = ACTIONS(3427), + [anon_sym_L_DQUOTE] = ACTIONS(3427), + [anon_sym_u_DQUOTE] = ACTIONS(3427), + [anon_sym_U_DQUOTE] = ACTIONS(3427), + [anon_sym_u8_DQUOTE] = ACTIONS(3427), + [anon_sym_DQUOTE] = ACTIONS(3427), + [sym_true] = ACTIONS(3425), + [sym_false] = ACTIONS(3425), + [anon_sym_NULL] = ACTIONS(3425), + [anon_sym_nullptr] = ACTIONS(3425), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3425), + [anon_sym_decltype] = ACTIONS(3425), + [anon_sym_virtual] = ACTIONS(3425), + [anon_sym_explicit] = ACTIONS(3425), + [anon_sym_typename] = ACTIONS(3425), + [anon_sym_template] = ACTIONS(3425), + [anon_sym_operator] = ACTIONS(3425), + [anon_sym_try] = ACTIONS(3425), + [anon_sym_delete] = ACTIONS(3425), + [anon_sym_throw] = ACTIONS(3425), + [anon_sym_namespace] = ACTIONS(3425), + [anon_sym_using] = ACTIONS(3425), + [anon_sym_static_assert] = ACTIONS(3425), + [anon_sym_concept] = ACTIONS(3425), + [anon_sym_co_return] = ACTIONS(3425), + [anon_sym_co_yield] = ACTIONS(3425), + [anon_sym_R_DQUOTE] = ACTIONS(3427), + [anon_sym_LR_DQUOTE] = ACTIONS(3427), + [anon_sym_uR_DQUOTE] = ACTIONS(3427), + [anon_sym_UR_DQUOTE] = ACTIONS(3427), + [anon_sym_u8R_DQUOTE] = ACTIONS(3427), + [anon_sym_co_await] = ACTIONS(3425), + [anon_sym_new] = ACTIONS(3425), + [anon_sym_requires] = ACTIONS(3425), + [sym_this] = ACTIONS(3425), }, [595] = { - [ts_builtin_sym_end] = ACTIONS(2616), - [sym_identifier] = ACTIONS(2614), - [aux_sym_preproc_include_token1] = ACTIONS(2614), - [aux_sym_preproc_def_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2614), - [sym_preproc_directive] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP_AMP] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2614), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym___based] = ACTIONS(2614), - [anon_sym___cdecl] = ACTIONS(2614), - [anon_sym___clrcall] = ACTIONS(2614), - [anon_sym___stdcall] = ACTIONS(2614), - [anon_sym___fastcall] = ACTIONS(2614), - [anon_sym___thiscall] = ACTIONS(2614), - [anon_sym___vectorcall] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_case] = ACTIONS(2614), - [anon_sym_default] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_explicit] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_operator] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_namespace] = ACTIONS(2614), - [anon_sym_using] = ACTIONS(2614), - [anon_sym_static_assert] = ACTIONS(2614), - [anon_sym_concept] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), + [sym_identifier] = ACTIONS(3429), + [aux_sym_preproc_include_token1] = ACTIONS(3429), + [aux_sym_preproc_def_token1] = ACTIONS(3429), + [aux_sym_preproc_if_token1] = ACTIONS(3429), + [aux_sym_preproc_if_token2] = ACTIONS(3429), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3429), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3429), + [aux_sym_preproc_else_token1] = ACTIONS(3429), + [aux_sym_preproc_elif_token1] = ACTIONS(3429), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3429), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3429), + [sym_preproc_directive] = ACTIONS(3429), + [anon_sym_LPAREN2] = ACTIONS(3431), + [anon_sym_BANG] = ACTIONS(3431), + [anon_sym_TILDE] = ACTIONS(3431), + [anon_sym_DASH] = ACTIONS(3429), + [anon_sym_PLUS] = ACTIONS(3429), + [anon_sym_STAR] = ACTIONS(3431), + [anon_sym_AMP_AMP] = ACTIONS(3431), + [anon_sym_AMP] = ACTIONS(3429), + [anon_sym_SEMI] = ACTIONS(3431), + [anon_sym_typedef] = ACTIONS(3429), + [anon_sym_extern] = ACTIONS(3429), + [anon_sym___attribute__] = ACTIONS(3429), + [anon_sym_COLON_COLON] = ACTIONS(3431), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3431), + [anon_sym___declspec] = ACTIONS(3429), + [anon_sym___based] = ACTIONS(3429), + [anon_sym___cdecl] = ACTIONS(3429), + [anon_sym___clrcall] = ACTIONS(3429), + [anon_sym___stdcall] = ACTIONS(3429), + [anon_sym___fastcall] = ACTIONS(3429), + [anon_sym___thiscall] = ACTIONS(3429), + [anon_sym___vectorcall] = ACTIONS(3429), + [anon_sym_LBRACE] = ACTIONS(3431), + [anon_sym_LBRACK] = ACTIONS(3429), + [anon_sym_static] = ACTIONS(3429), + [anon_sym_register] = ACTIONS(3429), + [anon_sym_inline] = ACTIONS(3429), + [anon_sym_thread_local] = ACTIONS(3429), + [anon_sym_const] = ACTIONS(3429), + [anon_sym_constexpr] = ACTIONS(3429), + [anon_sym_volatile] = ACTIONS(3429), + [anon_sym_restrict] = ACTIONS(3429), + [anon_sym___restrict__] = ACTIONS(3429), + [anon_sym__Atomic] = ACTIONS(3429), + [anon_sym__Noreturn] = ACTIONS(3429), + [anon_sym_noreturn] = ACTIONS(3429), + [anon_sym_mutable] = ACTIONS(3429), + [anon_sym_constinit] = ACTIONS(3429), + [anon_sym_consteval] = ACTIONS(3429), + [anon_sym_signed] = ACTIONS(3429), + [anon_sym_unsigned] = ACTIONS(3429), + [anon_sym_long] = ACTIONS(3429), + [anon_sym_short] = ACTIONS(3429), + [sym_primitive_type] = ACTIONS(3429), + [anon_sym_enum] = ACTIONS(3429), + [anon_sym_class] = ACTIONS(3429), + [anon_sym_struct] = ACTIONS(3429), + [anon_sym_union] = ACTIONS(3429), + [anon_sym_if] = ACTIONS(3429), + [anon_sym_switch] = ACTIONS(3429), + [anon_sym_case] = ACTIONS(3429), + [anon_sym_default] = ACTIONS(3429), + [anon_sym_while] = ACTIONS(3429), + [anon_sym_do] = ACTIONS(3429), + [anon_sym_for] = ACTIONS(3429), + [anon_sym_return] = ACTIONS(3429), + [anon_sym_break] = ACTIONS(3429), + [anon_sym_continue] = ACTIONS(3429), + [anon_sym_goto] = ACTIONS(3429), + [anon_sym_not] = ACTIONS(3429), + [anon_sym_compl] = ACTIONS(3429), + [anon_sym_DASH_DASH] = ACTIONS(3431), + [anon_sym_PLUS_PLUS] = ACTIONS(3431), + [anon_sym_sizeof] = ACTIONS(3429), + [anon_sym_offsetof] = ACTIONS(3429), + [anon_sym__Generic] = ACTIONS(3429), + [anon_sym_asm] = ACTIONS(3429), + [anon_sym___asm__] = ACTIONS(3429), + [sym_number_literal] = ACTIONS(3431), + [anon_sym_L_SQUOTE] = ACTIONS(3431), + [anon_sym_u_SQUOTE] = ACTIONS(3431), + [anon_sym_U_SQUOTE] = ACTIONS(3431), + [anon_sym_u8_SQUOTE] = ACTIONS(3431), + [anon_sym_SQUOTE] = ACTIONS(3431), + [anon_sym_L_DQUOTE] = ACTIONS(3431), + [anon_sym_u_DQUOTE] = ACTIONS(3431), + [anon_sym_U_DQUOTE] = ACTIONS(3431), + [anon_sym_u8_DQUOTE] = ACTIONS(3431), + [anon_sym_DQUOTE] = ACTIONS(3431), + [sym_true] = ACTIONS(3429), + [sym_false] = ACTIONS(3429), + [anon_sym_NULL] = ACTIONS(3429), + [anon_sym_nullptr] = ACTIONS(3429), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3429), + [anon_sym_decltype] = ACTIONS(3429), + [anon_sym_virtual] = ACTIONS(3429), + [anon_sym_explicit] = ACTIONS(3429), + [anon_sym_typename] = ACTIONS(3429), + [anon_sym_template] = ACTIONS(3429), + [anon_sym_operator] = ACTIONS(3429), + [anon_sym_try] = ACTIONS(3429), + [anon_sym_delete] = ACTIONS(3429), + [anon_sym_throw] = ACTIONS(3429), + [anon_sym_namespace] = ACTIONS(3429), + [anon_sym_using] = ACTIONS(3429), + [anon_sym_static_assert] = ACTIONS(3429), + [anon_sym_concept] = ACTIONS(3429), + [anon_sym_co_return] = ACTIONS(3429), + [anon_sym_co_yield] = ACTIONS(3429), + [anon_sym_R_DQUOTE] = ACTIONS(3431), + [anon_sym_LR_DQUOTE] = ACTIONS(3431), + [anon_sym_uR_DQUOTE] = ACTIONS(3431), + [anon_sym_UR_DQUOTE] = ACTIONS(3431), + [anon_sym_u8R_DQUOTE] = ACTIONS(3431), + [anon_sym_co_await] = ACTIONS(3429), + [anon_sym_new] = ACTIONS(3429), + [anon_sym_requires] = ACTIONS(3429), + [sym_this] = ACTIONS(3429), }, [596] = { - [sym_identifier] = ACTIONS(2478), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2480), - [anon_sym_AMP] = ACTIONS(2478), - [anon_sym_SEMI] = ACTIONS(2480), - [anon_sym_typedef] = ACTIONS(2478), - [anon_sym_extern] = ACTIONS(2478), - [anon_sym___attribute__] = ACTIONS(2478), - [anon_sym_COLON_COLON] = ACTIONS(2480), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2480), - [anon_sym___declspec] = ACTIONS(2478), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2478), - [anon_sym_static] = ACTIONS(2478), - [anon_sym_register] = ACTIONS(2478), - [anon_sym_inline] = ACTIONS(2478), - [anon_sym_thread_local] = ACTIONS(2478), - [anon_sym_const] = ACTIONS(2478), - [anon_sym_volatile] = ACTIONS(2478), - [anon_sym_restrict] = ACTIONS(2478), - [anon_sym__Atomic] = ACTIONS(2478), - [anon_sym_mutable] = ACTIONS(2478), - [anon_sym_constexpr] = ACTIONS(2478), - [anon_sym_constinit] = ACTIONS(2478), - [anon_sym_consteval] = ACTIONS(2478), - [anon_sym_signed] = ACTIONS(2478), - [anon_sym_unsigned] = ACTIONS(2478), - [anon_sym_long] = ACTIONS(2478), - [anon_sym_short] = ACTIONS(2478), - [sym_primitive_type] = ACTIONS(2478), - [anon_sym_enum] = ACTIONS(2478), - [anon_sym_class] = 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_return] = ACTIONS(2478), - [anon_sym_break] = ACTIONS(2478), - [anon_sym_continue] = ACTIONS(2478), - [anon_sym_goto] = ACTIONS(2478), - [anon_sym_not] = ACTIONS(2478), - [anon_sym_compl] = ACTIONS(2478), - [anon_sym_DASH_DASH] = ACTIONS(2480), - [anon_sym_PLUS_PLUS] = ACTIONS(2480), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2480), - [anon_sym_u_DQUOTE] = ACTIONS(2480), - [anon_sym_U_DQUOTE] = ACTIONS(2480), - [anon_sym_u8_DQUOTE] = ACTIONS(2480), - [anon_sym_DQUOTE] = ACTIONS(2480), - [sym_true] = ACTIONS(2478), - [sym_false] = ACTIONS(2478), - [sym_null] = ACTIONS(2478), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2478), - [anon_sym_decltype] = ACTIONS(2478), - [anon_sym_virtual] = ACTIONS(2478), - [anon_sym_explicit] = ACTIONS(2478), - [anon_sym_typename] = ACTIONS(2478), - [anon_sym_template] = ACTIONS(2478), - [anon_sym_operator] = ACTIONS(2478), - [anon_sym_try] = ACTIONS(2478), - [anon_sym_delete] = ACTIONS(2478), - [anon_sym_throw] = ACTIONS(2478), - [anon_sym_namespace] = ACTIONS(2478), - [anon_sym_using] = ACTIONS(2478), - [anon_sym_static_assert] = ACTIONS(2478), - [anon_sym_concept] = ACTIONS(2478), - [anon_sym_co_return] = ACTIONS(2478), - [anon_sym_co_yield] = ACTIONS(2478), - [anon_sym_R_DQUOTE] = ACTIONS(2480), - [anon_sym_LR_DQUOTE] = ACTIONS(2480), - [anon_sym_uR_DQUOTE] = ACTIONS(2480), - [anon_sym_UR_DQUOTE] = ACTIONS(2480), - [anon_sym_u8R_DQUOTE] = ACTIONS(2480), - [anon_sym_co_await] = ACTIONS(2478), - [anon_sym_new] = ACTIONS(2478), - [anon_sym_requires] = ACTIONS(2478), - [sym_this] = ACTIONS(2478), - [sym_nullptr] = ACTIONS(2478), + [sym__expression] = STATE(4129), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7068), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3184), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(3433), + [anon_sym_extern] = ACTIONS(3189), + [anon_sym___attribute__] = ACTIONS(3189), + [anon_sym_COLON_COLON] = ACTIONS(3191), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3194), + [anon_sym___declspec] = ACTIONS(3189), + [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_static] = ACTIONS(3189), + [anon_sym_register] = ACTIONS(3189), + [anon_sym_inline] = ACTIONS(3189), + [anon_sym_thread_local] = ACTIONS(3189), + [anon_sym_const] = ACTIONS(3189), + [anon_sym_constexpr] = ACTIONS(3189), + [anon_sym_volatile] = ACTIONS(3189), + [anon_sym_restrict] = ACTIONS(3189), + [anon_sym___restrict__] = ACTIONS(3189), + [anon_sym__Atomic] = ACTIONS(3189), + [anon_sym__Noreturn] = ACTIONS(3189), + [anon_sym_noreturn] = ACTIONS(3189), + [anon_sym_mutable] = ACTIONS(3189), + [anon_sym_constinit] = ACTIONS(3189), + [anon_sym_consteval] = ACTIONS(3189), + [anon_sym_signed] = ACTIONS(3189), + [anon_sym_unsigned] = ACTIONS(3189), + [anon_sym_long] = ACTIONS(3189), + [anon_sym_short] = ACTIONS(3189), + [sym_primitive_type] = ACTIONS(3196), + [anon_sym_enum] = ACTIONS(3189), + [anon_sym_class] = ACTIONS(3189), + [anon_sym_struct] = ACTIONS(3189), + [anon_sym_union] = ACTIONS(3189), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3189), + [anon_sym_decltype] = ACTIONS(3199), + [anon_sym_virtual] = ACTIONS(3189), + [anon_sym_typename] = ACTIONS(3189), + [anon_sym_template] = ACTIONS(3202), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [597] = { - [ts_builtin_sym_end] = ACTIONS(2616), - [sym_identifier] = ACTIONS(2614), - [aux_sym_preproc_include_token1] = ACTIONS(2614), - [aux_sym_preproc_def_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2614), - [sym_preproc_directive] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP_AMP] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2614), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym___based] = ACTIONS(2614), - [anon_sym___cdecl] = ACTIONS(2614), - [anon_sym___clrcall] = ACTIONS(2614), - [anon_sym___stdcall] = ACTIONS(2614), - [anon_sym___fastcall] = ACTIONS(2614), - [anon_sym___thiscall] = ACTIONS(2614), - [anon_sym___vectorcall] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_case] = ACTIONS(2614), - [anon_sym_default] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_explicit] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_operator] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_namespace] = ACTIONS(2614), - [anon_sym_using] = ACTIONS(2614), - [anon_sym_static_assert] = ACTIONS(2614), - [anon_sym_concept] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), + [sym__expression] = STATE(4218), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7458), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3184), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(3435), + [anon_sym_extern] = ACTIONS(3189), + [anon_sym___attribute__] = ACTIONS(3189), + [anon_sym_COLON_COLON] = ACTIONS(3191), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3194), + [anon_sym___declspec] = ACTIONS(3189), + [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_static] = ACTIONS(3189), + [anon_sym_register] = ACTIONS(3189), + [anon_sym_inline] = ACTIONS(3189), + [anon_sym_thread_local] = ACTIONS(3189), + [anon_sym_const] = ACTIONS(3189), + [anon_sym_constexpr] = ACTIONS(3189), + [anon_sym_volatile] = ACTIONS(3189), + [anon_sym_restrict] = ACTIONS(3189), + [anon_sym___restrict__] = ACTIONS(3189), + [anon_sym__Atomic] = ACTIONS(3189), + [anon_sym__Noreturn] = ACTIONS(3189), + [anon_sym_noreturn] = ACTIONS(3189), + [anon_sym_mutable] = ACTIONS(3189), + [anon_sym_constinit] = ACTIONS(3189), + [anon_sym_consteval] = ACTIONS(3189), + [anon_sym_signed] = ACTIONS(3189), + [anon_sym_unsigned] = ACTIONS(3189), + [anon_sym_long] = ACTIONS(3189), + [anon_sym_short] = ACTIONS(3189), + [sym_primitive_type] = ACTIONS(3196), + [anon_sym_enum] = ACTIONS(3189), + [anon_sym_class] = ACTIONS(3189), + [anon_sym_struct] = ACTIONS(3189), + [anon_sym_union] = ACTIONS(3189), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3189), + [anon_sym_decltype] = ACTIONS(3199), + [anon_sym_virtual] = ACTIONS(3189), + [anon_sym_typename] = ACTIONS(3189), + [anon_sym_template] = ACTIONS(3202), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [598] = { - [ts_builtin_sym_end] = ACTIONS(2616), - [sym_identifier] = ACTIONS(2614), - [aux_sym_preproc_include_token1] = ACTIONS(2614), - [aux_sym_preproc_def_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2614), - [sym_preproc_directive] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP_AMP] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2614), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym___based] = ACTIONS(2614), - [anon_sym___cdecl] = ACTIONS(2614), - [anon_sym___clrcall] = ACTIONS(2614), - [anon_sym___stdcall] = ACTIONS(2614), - [anon_sym___fastcall] = ACTIONS(2614), - [anon_sym___thiscall] = ACTIONS(2614), - [anon_sym___vectorcall] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_case] = ACTIONS(2614), - [anon_sym_default] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_explicit] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_operator] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_namespace] = ACTIONS(2614), - [anon_sym_using] = ACTIONS(2614), - [anon_sym_static_assert] = ACTIONS(2614), - [anon_sym_concept] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), + [sym__expression] = STATE(4219), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7456), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3209), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(3437), + [anon_sym_extern] = ACTIONS(2962), + [anon_sym___attribute__] = ACTIONS(2962), + [anon_sym_COLON_COLON] = ACTIONS(3214), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2964), + [anon_sym___declspec] = ACTIONS(2962), + [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_static] = ACTIONS(2962), + [anon_sym_register] = ACTIONS(2962), + [anon_sym_inline] = ACTIONS(2962), + [anon_sym_thread_local] = ACTIONS(2962), + [anon_sym_const] = ACTIONS(2962), + [anon_sym_constexpr] = ACTIONS(2962), + [anon_sym_volatile] = ACTIONS(2962), + [anon_sym_restrict] = ACTIONS(2962), + [anon_sym___restrict__] = ACTIONS(2962), + [anon_sym__Atomic] = ACTIONS(2962), + [anon_sym__Noreturn] = ACTIONS(2962), + [anon_sym_noreturn] = ACTIONS(2962), + [anon_sym_mutable] = ACTIONS(2962), + [anon_sym_constinit] = ACTIONS(2962), + [anon_sym_consteval] = ACTIONS(2962), + [anon_sym_signed] = ACTIONS(2962), + [anon_sym_unsigned] = ACTIONS(2962), + [anon_sym_long] = ACTIONS(2962), + [anon_sym_short] = ACTIONS(2962), + [sym_primitive_type] = ACTIONS(3217), + [anon_sym_enum] = ACTIONS(2962), + [anon_sym_class] = ACTIONS(2962), + [anon_sym_struct] = ACTIONS(2962), + [anon_sym_union] = ACTIONS(2962), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2962), + [anon_sym_decltype] = ACTIONS(3220), + [anon_sym_virtual] = ACTIONS(2962), + [anon_sym_typename] = ACTIONS(2962), + [anon_sym_template] = ACTIONS(3223), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [599] = { - [ts_builtin_sym_end] = ACTIONS(2616), - [sym_identifier] = ACTIONS(2614), - [aux_sym_preproc_include_token1] = ACTIONS(2614), - [aux_sym_preproc_def_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2614), - [sym_preproc_directive] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP_AMP] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2614), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym___based] = ACTIONS(2614), - [anon_sym___cdecl] = ACTIONS(2614), - [anon_sym___clrcall] = ACTIONS(2614), - [anon_sym___stdcall] = ACTIONS(2614), - [anon_sym___fastcall] = ACTIONS(2614), - [anon_sym___thiscall] = ACTIONS(2614), - [anon_sym___vectorcall] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_case] = ACTIONS(2614), - [anon_sym_default] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_explicit] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_operator] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_namespace] = ACTIONS(2614), - [anon_sym_using] = ACTIONS(2614), - [anon_sym_static_assert] = ACTIONS(2614), - [anon_sym_concept] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), + [sym_identifier] = ACTIONS(3439), + [aux_sym_preproc_include_token1] = ACTIONS(3439), + [aux_sym_preproc_def_token1] = ACTIONS(3439), + [aux_sym_preproc_if_token1] = ACTIONS(3439), + [aux_sym_preproc_if_token2] = ACTIONS(3439), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3439), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3439), + [aux_sym_preproc_else_token1] = ACTIONS(3439), + [aux_sym_preproc_elif_token1] = ACTIONS(3439), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3439), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3439), + [sym_preproc_directive] = ACTIONS(3439), + [anon_sym_LPAREN2] = ACTIONS(3441), + [anon_sym_BANG] = ACTIONS(3441), + [anon_sym_TILDE] = ACTIONS(3441), + [anon_sym_DASH] = ACTIONS(3439), + [anon_sym_PLUS] = ACTIONS(3439), + [anon_sym_STAR] = ACTIONS(3441), + [anon_sym_AMP_AMP] = ACTIONS(3441), + [anon_sym_AMP] = ACTIONS(3439), + [anon_sym_SEMI] = ACTIONS(3441), + [anon_sym_typedef] = ACTIONS(3439), + [anon_sym_extern] = ACTIONS(3439), + [anon_sym___attribute__] = ACTIONS(3439), + [anon_sym_COLON_COLON] = ACTIONS(3441), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3441), + [anon_sym___declspec] = ACTIONS(3439), + [anon_sym___based] = ACTIONS(3439), + [anon_sym___cdecl] = ACTIONS(3439), + [anon_sym___clrcall] = ACTIONS(3439), + [anon_sym___stdcall] = ACTIONS(3439), + [anon_sym___fastcall] = ACTIONS(3439), + [anon_sym___thiscall] = ACTIONS(3439), + [anon_sym___vectorcall] = ACTIONS(3439), + [anon_sym_LBRACE] = ACTIONS(3441), + [anon_sym_LBRACK] = ACTIONS(3439), + [anon_sym_static] = ACTIONS(3439), + [anon_sym_register] = ACTIONS(3439), + [anon_sym_inline] = ACTIONS(3439), + [anon_sym_thread_local] = ACTIONS(3439), + [anon_sym_const] = ACTIONS(3439), + [anon_sym_constexpr] = ACTIONS(3439), + [anon_sym_volatile] = ACTIONS(3439), + [anon_sym_restrict] = ACTIONS(3439), + [anon_sym___restrict__] = ACTIONS(3439), + [anon_sym__Atomic] = ACTIONS(3439), + [anon_sym__Noreturn] = ACTIONS(3439), + [anon_sym_noreturn] = ACTIONS(3439), + [anon_sym_mutable] = ACTIONS(3439), + [anon_sym_constinit] = ACTIONS(3439), + [anon_sym_consteval] = ACTIONS(3439), + [anon_sym_signed] = ACTIONS(3439), + [anon_sym_unsigned] = ACTIONS(3439), + [anon_sym_long] = ACTIONS(3439), + [anon_sym_short] = ACTIONS(3439), + [sym_primitive_type] = ACTIONS(3439), + [anon_sym_enum] = ACTIONS(3439), + [anon_sym_class] = ACTIONS(3439), + [anon_sym_struct] = ACTIONS(3439), + [anon_sym_union] = ACTIONS(3439), + [anon_sym_if] = ACTIONS(3439), + [anon_sym_switch] = ACTIONS(3439), + [anon_sym_case] = ACTIONS(3439), + [anon_sym_default] = ACTIONS(3439), + [anon_sym_while] = ACTIONS(3439), + [anon_sym_do] = ACTIONS(3439), + [anon_sym_for] = ACTIONS(3439), + [anon_sym_return] = ACTIONS(3439), + [anon_sym_break] = ACTIONS(3439), + [anon_sym_continue] = ACTIONS(3439), + [anon_sym_goto] = ACTIONS(3439), + [anon_sym_not] = ACTIONS(3439), + [anon_sym_compl] = ACTIONS(3439), + [anon_sym_DASH_DASH] = ACTIONS(3441), + [anon_sym_PLUS_PLUS] = ACTIONS(3441), + [anon_sym_sizeof] = ACTIONS(3439), + [anon_sym_offsetof] = ACTIONS(3439), + [anon_sym__Generic] = ACTIONS(3439), + [anon_sym_asm] = ACTIONS(3439), + [anon_sym___asm__] = ACTIONS(3439), + [sym_number_literal] = ACTIONS(3441), + [anon_sym_L_SQUOTE] = ACTIONS(3441), + [anon_sym_u_SQUOTE] = ACTIONS(3441), + [anon_sym_U_SQUOTE] = ACTIONS(3441), + [anon_sym_u8_SQUOTE] = ACTIONS(3441), + [anon_sym_SQUOTE] = ACTIONS(3441), + [anon_sym_L_DQUOTE] = ACTIONS(3441), + [anon_sym_u_DQUOTE] = ACTIONS(3441), + [anon_sym_U_DQUOTE] = ACTIONS(3441), + [anon_sym_u8_DQUOTE] = ACTIONS(3441), + [anon_sym_DQUOTE] = ACTIONS(3441), + [sym_true] = ACTIONS(3439), + [sym_false] = ACTIONS(3439), + [anon_sym_NULL] = ACTIONS(3439), + [anon_sym_nullptr] = ACTIONS(3439), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3439), + [anon_sym_decltype] = ACTIONS(3439), + [anon_sym_virtual] = ACTIONS(3439), + [anon_sym_explicit] = ACTIONS(3439), + [anon_sym_typename] = ACTIONS(3439), + [anon_sym_template] = ACTIONS(3439), + [anon_sym_operator] = ACTIONS(3439), + [anon_sym_try] = ACTIONS(3439), + [anon_sym_delete] = ACTIONS(3439), + [anon_sym_throw] = ACTIONS(3439), + [anon_sym_namespace] = ACTIONS(3439), + [anon_sym_using] = ACTIONS(3439), + [anon_sym_static_assert] = ACTIONS(3439), + [anon_sym_concept] = ACTIONS(3439), + [anon_sym_co_return] = ACTIONS(3439), + [anon_sym_co_yield] = ACTIONS(3439), + [anon_sym_R_DQUOTE] = ACTIONS(3441), + [anon_sym_LR_DQUOTE] = ACTIONS(3441), + [anon_sym_uR_DQUOTE] = ACTIONS(3441), + [anon_sym_UR_DQUOTE] = ACTIONS(3441), + [anon_sym_u8R_DQUOTE] = ACTIONS(3441), + [anon_sym_co_await] = ACTIONS(3439), + [anon_sym_new] = ACTIONS(3439), + [anon_sym_requires] = ACTIONS(3439), + [sym_this] = ACTIONS(3439), }, [600] = { - [ts_builtin_sym_end] = ACTIONS(2632), - [sym_identifier] = ACTIONS(2630), - [aux_sym_preproc_include_token1] = ACTIONS(2630), - [aux_sym_preproc_def_token1] = ACTIONS(2630), - [aux_sym_preproc_if_token1] = ACTIONS(2630), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2630), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2630), - [sym_preproc_directive] = ACTIONS(2630), - [anon_sym_LPAREN2] = ACTIONS(2632), - [anon_sym_BANG] = ACTIONS(2632), - [anon_sym_TILDE] = ACTIONS(2632), - [anon_sym_DASH] = ACTIONS(2630), - [anon_sym_PLUS] = ACTIONS(2630), - [anon_sym_STAR] = ACTIONS(2632), - [anon_sym_AMP_AMP] = ACTIONS(2632), - [anon_sym_AMP] = ACTIONS(2630), - [anon_sym_SEMI] = ACTIONS(2632), - [anon_sym_typedef] = ACTIONS(2630), - [anon_sym_extern] = ACTIONS(2630), - [anon_sym___attribute__] = ACTIONS(2630), - [anon_sym_COLON_COLON] = ACTIONS(2632), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2632), - [anon_sym___declspec] = ACTIONS(2630), - [anon_sym___based] = ACTIONS(2630), - [anon_sym___cdecl] = ACTIONS(2630), - [anon_sym___clrcall] = ACTIONS(2630), - [anon_sym___stdcall] = ACTIONS(2630), - [anon_sym___fastcall] = ACTIONS(2630), - [anon_sym___thiscall] = ACTIONS(2630), - [anon_sym___vectorcall] = ACTIONS(2630), - [anon_sym_LBRACE] = ACTIONS(2632), - [anon_sym_LBRACK] = ACTIONS(2630), - [anon_sym_static] = ACTIONS(2630), - [anon_sym_register] = ACTIONS(2630), - [anon_sym_inline] = ACTIONS(2630), - [anon_sym_thread_local] = ACTIONS(2630), - [anon_sym_const] = ACTIONS(2630), - [anon_sym_volatile] = ACTIONS(2630), - [anon_sym_restrict] = ACTIONS(2630), - [anon_sym__Atomic] = ACTIONS(2630), - [anon_sym_mutable] = ACTIONS(2630), - [anon_sym_constexpr] = ACTIONS(2630), - [anon_sym_constinit] = ACTIONS(2630), - [anon_sym_consteval] = ACTIONS(2630), - [anon_sym_signed] = ACTIONS(2630), - [anon_sym_unsigned] = ACTIONS(2630), - [anon_sym_long] = ACTIONS(2630), - [anon_sym_short] = ACTIONS(2630), - [sym_primitive_type] = ACTIONS(2630), - [anon_sym_enum] = ACTIONS(2630), - [anon_sym_class] = ACTIONS(2630), - [anon_sym_struct] = ACTIONS(2630), - [anon_sym_union] = ACTIONS(2630), - [anon_sym_if] = ACTIONS(2630), - [anon_sym_else] = ACTIONS(2630), - [anon_sym_switch] = ACTIONS(2630), - [anon_sym_case] = ACTIONS(2630), - [anon_sym_default] = ACTIONS(2630), - [anon_sym_while] = ACTIONS(2630), - [anon_sym_do] = ACTIONS(2630), - [anon_sym_for] = ACTIONS(2630), - [anon_sym_return] = ACTIONS(2630), - [anon_sym_break] = ACTIONS(2630), - [anon_sym_continue] = ACTIONS(2630), - [anon_sym_goto] = ACTIONS(2630), - [anon_sym_not] = ACTIONS(2630), - [anon_sym_compl] = ACTIONS(2630), - [anon_sym_DASH_DASH] = ACTIONS(2632), - [anon_sym_PLUS_PLUS] = ACTIONS(2632), - [anon_sym_sizeof] = ACTIONS(2630), - [sym_number_literal] = ACTIONS(2632), - [anon_sym_L_SQUOTE] = ACTIONS(2632), - [anon_sym_u_SQUOTE] = ACTIONS(2632), - [anon_sym_U_SQUOTE] = ACTIONS(2632), - [anon_sym_u8_SQUOTE] = ACTIONS(2632), - [anon_sym_SQUOTE] = ACTIONS(2632), - [anon_sym_L_DQUOTE] = ACTIONS(2632), - [anon_sym_u_DQUOTE] = ACTIONS(2632), - [anon_sym_U_DQUOTE] = ACTIONS(2632), - [anon_sym_u8_DQUOTE] = ACTIONS(2632), - [anon_sym_DQUOTE] = ACTIONS(2632), - [sym_true] = ACTIONS(2630), - [sym_false] = ACTIONS(2630), - [sym_null] = ACTIONS(2630), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2630), - [anon_sym_decltype] = ACTIONS(2630), - [anon_sym_virtual] = ACTIONS(2630), - [anon_sym_explicit] = ACTIONS(2630), - [anon_sym_typename] = ACTIONS(2630), - [anon_sym_template] = ACTIONS(2630), - [anon_sym_operator] = ACTIONS(2630), - [anon_sym_try] = ACTIONS(2630), - [anon_sym_delete] = ACTIONS(2630), - [anon_sym_throw] = ACTIONS(2630), - [anon_sym_namespace] = ACTIONS(2630), - [anon_sym_using] = ACTIONS(2630), - [anon_sym_static_assert] = ACTIONS(2630), - [anon_sym_concept] = ACTIONS(2630), - [anon_sym_co_return] = ACTIONS(2630), - [anon_sym_co_yield] = ACTIONS(2630), - [anon_sym_R_DQUOTE] = ACTIONS(2632), - [anon_sym_LR_DQUOTE] = ACTIONS(2632), - [anon_sym_uR_DQUOTE] = ACTIONS(2632), - [anon_sym_UR_DQUOTE] = ACTIONS(2632), - [anon_sym_u8R_DQUOTE] = ACTIONS(2632), - [anon_sym_co_await] = ACTIONS(2630), - [anon_sym_new] = ACTIONS(2630), - [anon_sym_requires] = ACTIONS(2630), - [sym_this] = ACTIONS(2630), - [sym_nullptr] = ACTIONS(2630), + [sym_identifier] = ACTIONS(3443), + [aux_sym_preproc_include_token1] = ACTIONS(3443), + [aux_sym_preproc_def_token1] = ACTIONS(3443), + [aux_sym_preproc_if_token1] = ACTIONS(3443), + [aux_sym_preproc_if_token2] = ACTIONS(3443), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3443), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3443), + [aux_sym_preproc_else_token1] = ACTIONS(3443), + [aux_sym_preproc_elif_token1] = ACTIONS(3443), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3443), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3443), + [sym_preproc_directive] = ACTIONS(3443), + [anon_sym_LPAREN2] = ACTIONS(3445), + [anon_sym_BANG] = ACTIONS(3445), + [anon_sym_TILDE] = ACTIONS(3445), + [anon_sym_DASH] = ACTIONS(3443), + [anon_sym_PLUS] = ACTIONS(3443), + [anon_sym_STAR] = ACTIONS(3445), + [anon_sym_AMP_AMP] = ACTIONS(3445), + [anon_sym_AMP] = ACTIONS(3443), + [anon_sym_SEMI] = ACTIONS(3445), + [anon_sym_typedef] = ACTIONS(3443), + [anon_sym_extern] = ACTIONS(3443), + [anon_sym___attribute__] = ACTIONS(3443), + [anon_sym_COLON_COLON] = ACTIONS(3445), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3445), + [anon_sym___declspec] = ACTIONS(3443), + [anon_sym___based] = ACTIONS(3443), + [anon_sym___cdecl] = ACTIONS(3443), + [anon_sym___clrcall] = ACTIONS(3443), + [anon_sym___stdcall] = ACTIONS(3443), + [anon_sym___fastcall] = ACTIONS(3443), + [anon_sym___thiscall] = ACTIONS(3443), + [anon_sym___vectorcall] = ACTIONS(3443), + [anon_sym_LBRACE] = ACTIONS(3445), + [anon_sym_LBRACK] = ACTIONS(3443), + [anon_sym_static] = ACTIONS(3443), + [anon_sym_register] = ACTIONS(3443), + [anon_sym_inline] = ACTIONS(3443), + [anon_sym_thread_local] = ACTIONS(3443), + [anon_sym_const] = ACTIONS(3443), + [anon_sym_constexpr] = ACTIONS(3443), + [anon_sym_volatile] = ACTIONS(3443), + [anon_sym_restrict] = ACTIONS(3443), + [anon_sym___restrict__] = ACTIONS(3443), + [anon_sym__Atomic] = ACTIONS(3443), + [anon_sym__Noreturn] = ACTIONS(3443), + [anon_sym_noreturn] = ACTIONS(3443), + [anon_sym_mutable] = ACTIONS(3443), + [anon_sym_constinit] = ACTIONS(3443), + [anon_sym_consteval] = ACTIONS(3443), + [anon_sym_signed] = ACTIONS(3443), + [anon_sym_unsigned] = ACTIONS(3443), + [anon_sym_long] = ACTIONS(3443), + [anon_sym_short] = ACTIONS(3443), + [sym_primitive_type] = ACTIONS(3443), + [anon_sym_enum] = ACTIONS(3443), + [anon_sym_class] = ACTIONS(3443), + [anon_sym_struct] = ACTIONS(3443), + [anon_sym_union] = ACTIONS(3443), + [anon_sym_if] = ACTIONS(3443), + [anon_sym_switch] = ACTIONS(3443), + [anon_sym_case] = ACTIONS(3443), + [anon_sym_default] = ACTIONS(3443), + [anon_sym_while] = ACTIONS(3443), + [anon_sym_do] = ACTIONS(3443), + [anon_sym_for] = ACTIONS(3443), + [anon_sym_return] = ACTIONS(3443), + [anon_sym_break] = ACTIONS(3443), + [anon_sym_continue] = ACTIONS(3443), + [anon_sym_goto] = ACTIONS(3443), + [anon_sym_not] = ACTIONS(3443), + [anon_sym_compl] = ACTIONS(3443), + [anon_sym_DASH_DASH] = ACTIONS(3445), + [anon_sym_PLUS_PLUS] = ACTIONS(3445), + [anon_sym_sizeof] = ACTIONS(3443), + [anon_sym_offsetof] = ACTIONS(3443), + [anon_sym__Generic] = ACTIONS(3443), + [anon_sym_asm] = ACTIONS(3443), + [anon_sym___asm__] = ACTIONS(3443), + [sym_number_literal] = ACTIONS(3445), + [anon_sym_L_SQUOTE] = ACTIONS(3445), + [anon_sym_u_SQUOTE] = ACTIONS(3445), + [anon_sym_U_SQUOTE] = ACTIONS(3445), + [anon_sym_u8_SQUOTE] = ACTIONS(3445), + [anon_sym_SQUOTE] = ACTIONS(3445), + [anon_sym_L_DQUOTE] = ACTIONS(3445), + [anon_sym_u_DQUOTE] = ACTIONS(3445), + [anon_sym_U_DQUOTE] = ACTIONS(3445), + [anon_sym_u8_DQUOTE] = ACTIONS(3445), + [anon_sym_DQUOTE] = ACTIONS(3445), + [sym_true] = ACTIONS(3443), + [sym_false] = ACTIONS(3443), + [anon_sym_NULL] = ACTIONS(3443), + [anon_sym_nullptr] = ACTIONS(3443), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3443), + [anon_sym_decltype] = ACTIONS(3443), + [anon_sym_virtual] = ACTIONS(3443), + [anon_sym_explicit] = ACTIONS(3443), + [anon_sym_typename] = ACTIONS(3443), + [anon_sym_template] = ACTIONS(3443), + [anon_sym_operator] = ACTIONS(3443), + [anon_sym_try] = ACTIONS(3443), + [anon_sym_delete] = ACTIONS(3443), + [anon_sym_throw] = ACTIONS(3443), + [anon_sym_namespace] = ACTIONS(3443), + [anon_sym_using] = ACTIONS(3443), + [anon_sym_static_assert] = ACTIONS(3443), + [anon_sym_concept] = ACTIONS(3443), + [anon_sym_co_return] = ACTIONS(3443), + [anon_sym_co_yield] = ACTIONS(3443), + [anon_sym_R_DQUOTE] = ACTIONS(3445), + [anon_sym_LR_DQUOTE] = ACTIONS(3445), + [anon_sym_uR_DQUOTE] = ACTIONS(3445), + [anon_sym_UR_DQUOTE] = ACTIONS(3445), + [anon_sym_u8R_DQUOTE] = ACTIONS(3445), + [anon_sym_co_await] = ACTIONS(3443), + [anon_sym_new] = ACTIONS(3443), + [anon_sym_requires] = ACTIONS(3443), + [sym_this] = ACTIONS(3443), }, [601] = { - [sym_identifier] = ACTIONS(2504), - [aux_sym_preproc_include_token1] = ACTIONS(2504), - [aux_sym_preproc_def_token1] = ACTIONS(2504), - [aux_sym_preproc_if_token1] = ACTIONS(2504), - [aux_sym_preproc_if_token2] = ACTIONS(2504), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2504), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2504), - [sym_preproc_directive] = ACTIONS(2504), - [anon_sym_LPAREN2] = ACTIONS(2506), - [anon_sym_BANG] = ACTIONS(2506), - [anon_sym_TILDE] = ACTIONS(2506), - [anon_sym_DASH] = ACTIONS(2504), - [anon_sym_PLUS] = ACTIONS(2504), - [anon_sym_STAR] = ACTIONS(2506), - [anon_sym_AMP_AMP] = ACTIONS(2506), - [anon_sym_AMP] = ACTIONS(2504), - [anon_sym_SEMI] = ACTIONS(2506), - [anon_sym_typedef] = ACTIONS(2504), - [anon_sym_extern] = ACTIONS(2504), - [anon_sym___attribute__] = ACTIONS(2504), - [anon_sym_COLON_COLON] = ACTIONS(2506), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2506), - [anon_sym___declspec] = ACTIONS(2504), - [anon_sym___based] = ACTIONS(2504), - [anon_sym___cdecl] = ACTIONS(2504), - [anon_sym___clrcall] = ACTIONS(2504), - [anon_sym___stdcall] = ACTIONS(2504), - [anon_sym___fastcall] = ACTIONS(2504), - [anon_sym___thiscall] = ACTIONS(2504), - [anon_sym___vectorcall] = ACTIONS(2504), - [anon_sym_LBRACE] = ACTIONS(2506), - [anon_sym_LBRACK] = ACTIONS(2504), - [anon_sym_static] = ACTIONS(2504), - [anon_sym_register] = ACTIONS(2504), - [anon_sym_inline] = ACTIONS(2504), - [anon_sym_thread_local] = ACTIONS(2504), - [anon_sym_const] = ACTIONS(2504), - [anon_sym_volatile] = ACTIONS(2504), - [anon_sym_restrict] = ACTIONS(2504), - [anon_sym__Atomic] = ACTIONS(2504), - [anon_sym_mutable] = ACTIONS(2504), - [anon_sym_constexpr] = ACTIONS(2504), - [anon_sym_constinit] = ACTIONS(2504), - [anon_sym_consteval] = ACTIONS(2504), - [anon_sym_signed] = ACTIONS(2504), - [anon_sym_unsigned] = ACTIONS(2504), - [anon_sym_long] = ACTIONS(2504), - [anon_sym_short] = ACTIONS(2504), - [sym_primitive_type] = ACTIONS(2504), - [anon_sym_enum] = ACTIONS(2504), - [anon_sym_class] = ACTIONS(2504), - [anon_sym_struct] = ACTIONS(2504), - [anon_sym_union] = ACTIONS(2504), - [anon_sym_if] = ACTIONS(2504), - [anon_sym_else] = ACTIONS(2504), - [anon_sym_switch] = ACTIONS(2504), - [anon_sym_case] = ACTIONS(2504), - [anon_sym_default] = ACTIONS(2504), - [anon_sym_while] = ACTIONS(2504), - [anon_sym_do] = ACTIONS(2504), - [anon_sym_for] = ACTIONS(2504), - [anon_sym_return] = ACTIONS(2504), - [anon_sym_break] = ACTIONS(2504), - [anon_sym_continue] = ACTIONS(2504), - [anon_sym_goto] = ACTIONS(2504), - [anon_sym_not] = ACTIONS(2504), - [anon_sym_compl] = ACTIONS(2504), - [anon_sym_DASH_DASH] = ACTIONS(2506), - [anon_sym_PLUS_PLUS] = ACTIONS(2506), - [anon_sym_sizeof] = ACTIONS(2504), - [sym_number_literal] = ACTIONS(2506), - [anon_sym_L_SQUOTE] = ACTIONS(2506), - [anon_sym_u_SQUOTE] = ACTIONS(2506), - [anon_sym_U_SQUOTE] = ACTIONS(2506), - [anon_sym_u8_SQUOTE] = ACTIONS(2506), - [anon_sym_SQUOTE] = ACTIONS(2506), - [anon_sym_L_DQUOTE] = ACTIONS(2506), - [anon_sym_u_DQUOTE] = ACTIONS(2506), - [anon_sym_U_DQUOTE] = ACTIONS(2506), - [anon_sym_u8_DQUOTE] = ACTIONS(2506), - [anon_sym_DQUOTE] = ACTIONS(2506), - [sym_true] = ACTIONS(2504), - [sym_false] = ACTIONS(2504), - [sym_null] = ACTIONS(2504), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2504), - [anon_sym_decltype] = ACTIONS(2504), - [anon_sym_virtual] = ACTIONS(2504), - [anon_sym_explicit] = ACTIONS(2504), - [anon_sym_typename] = ACTIONS(2504), - [anon_sym_template] = ACTIONS(2504), - [anon_sym_operator] = ACTIONS(2504), - [anon_sym_try] = ACTIONS(2504), - [anon_sym_delete] = ACTIONS(2504), - [anon_sym_throw] = ACTIONS(2504), - [anon_sym_namespace] = ACTIONS(2504), - [anon_sym_using] = ACTIONS(2504), - [anon_sym_static_assert] = ACTIONS(2504), - [anon_sym_concept] = ACTIONS(2504), - [anon_sym_co_return] = ACTIONS(2504), - [anon_sym_co_yield] = ACTIONS(2504), - [anon_sym_R_DQUOTE] = ACTIONS(2506), - [anon_sym_LR_DQUOTE] = ACTIONS(2506), - [anon_sym_uR_DQUOTE] = ACTIONS(2506), - [anon_sym_UR_DQUOTE] = ACTIONS(2506), - [anon_sym_u8R_DQUOTE] = ACTIONS(2506), - [anon_sym_co_await] = ACTIONS(2504), - [anon_sym_new] = ACTIONS(2504), - [anon_sym_requires] = ACTIONS(2504), - [sym_this] = ACTIONS(2504), - [sym_nullptr] = ACTIONS(2504), + [sym_identifier] = ACTIONS(3447), + [aux_sym_preproc_include_token1] = ACTIONS(3447), + [aux_sym_preproc_def_token1] = ACTIONS(3447), + [aux_sym_preproc_if_token1] = ACTIONS(3447), + [aux_sym_preproc_if_token2] = ACTIONS(3447), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3447), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3447), + [aux_sym_preproc_else_token1] = ACTIONS(3447), + [aux_sym_preproc_elif_token1] = ACTIONS(3447), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3447), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3447), + [sym_preproc_directive] = ACTIONS(3447), + [anon_sym_LPAREN2] = ACTIONS(3449), + [anon_sym_BANG] = ACTIONS(3449), + [anon_sym_TILDE] = ACTIONS(3449), + [anon_sym_DASH] = ACTIONS(3447), + [anon_sym_PLUS] = ACTIONS(3447), + [anon_sym_STAR] = ACTIONS(3449), + [anon_sym_AMP_AMP] = ACTIONS(3449), + [anon_sym_AMP] = ACTIONS(3447), + [anon_sym_SEMI] = ACTIONS(3449), + [anon_sym_typedef] = ACTIONS(3447), + [anon_sym_extern] = ACTIONS(3447), + [anon_sym___attribute__] = ACTIONS(3447), + [anon_sym_COLON_COLON] = ACTIONS(3449), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3449), + [anon_sym___declspec] = ACTIONS(3447), + [anon_sym___based] = ACTIONS(3447), + [anon_sym___cdecl] = ACTIONS(3447), + [anon_sym___clrcall] = ACTIONS(3447), + [anon_sym___stdcall] = ACTIONS(3447), + [anon_sym___fastcall] = ACTIONS(3447), + [anon_sym___thiscall] = ACTIONS(3447), + [anon_sym___vectorcall] = ACTIONS(3447), + [anon_sym_LBRACE] = ACTIONS(3449), + [anon_sym_LBRACK] = ACTIONS(3447), + [anon_sym_static] = ACTIONS(3447), + [anon_sym_register] = ACTIONS(3447), + [anon_sym_inline] = ACTIONS(3447), + [anon_sym_thread_local] = ACTIONS(3447), + [anon_sym_const] = ACTIONS(3447), + [anon_sym_constexpr] = ACTIONS(3447), + [anon_sym_volatile] = ACTIONS(3447), + [anon_sym_restrict] = ACTIONS(3447), + [anon_sym___restrict__] = ACTIONS(3447), + [anon_sym__Atomic] = ACTIONS(3447), + [anon_sym__Noreturn] = ACTIONS(3447), + [anon_sym_noreturn] = ACTIONS(3447), + [anon_sym_mutable] = ACTIONS(3447), + [anon_sym_constinit] = ACTIONS(3447), + [anon_sym_consteval] = ACTIONS(3447), + [anon_sym_signed] = ACTIONS(3447), + [anon_sym_unsigned] = ACTIONS(3447), + [anon_sym_long] = ACTIONS(3447), + [anon_sym_short] = ACTIONS(3447), + [sym_primitive_type] = ACTIONS(3447), + [anon_sym_enum] = ACTIONS(3447), + [anon_sym_class] = ACTIONS(3447), + [anon_sym_struct] = ACTIONS(3447), + [anon_sym_union] = ACTIONS(3447), + [anon_sym_if] = ACTIONS(3447), + [anon_sym_switch] = ACTIONS(3447), + [anon_sym_case] = ACTIONS(3447), + [anon_sym_default] = ACTIONS(3447), + [anon_sym_while] = ACTIONS(3447), + [anon_sym_do] = ACTIONS(3447), + [anon_sym_for] = ACTIONS(3447), + [anon_sym_return] = ACTIONS(3447), + [anon_sym_break] = ACTIONS(3447), + [anon_sym_continue] = ACTIONS(3447), + [anon_sym_goto] = ACTIONS(3447), + [anon_sym_not] = ACTIONS(3447), + [anon_sym_compl] = ACTIONS(3447), + [anon_sym_DASH_DASH] = ACTIONS(3449), + [anon_sym_PLUS_PLUS] = ACTIONS(3449), + [anon_sym_sizeof] = ACTIONS(3447), + [anon_sym_offsetof] = ACTIONS(3447), + [anon_sym__Generic] = ACTIONS(3447), + [anon_sym_asm] = ACTIONS(3447), + [anon_sym___asm__] = ACTIONS(3447), + [sym_number_literal] = ACTIONS(3449), + [anon_sym_L_SQUOTE] = ACTIONS(3449), + [anon_sym_u_SQUOTE] = ACTIONS(3449), + [anon_sym_U_SQUOTE] = ACTIONS(3449), + [anon_sym_u8_SQUOTE] = ACTIONS(3449), + [anon_sym_SQUOTE] = ACTIONS(3449), + [anon_sym_L_DQUOTE] = ACTIONS(3449), + [anon_sym_u_DQUOTE] = ACTIONS(3449), + [anon_sym_U_DQUOTE] = ACTIONS(3449), + [anon_sym_u8_DQUOTE] = ACTIONS(3449), + [anon_sym_DQUOTE] = ACTIONS(3449), + [sym_true] = ACTIONS(3447), + [sym_false] = ACTIONS(3447), + [anon_sym_NULL] = ACTIONS(3447), + [anon_sym_nullptr] = ACTIONS(3447), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3447), + [anon_sym_decltype] = ACTIONS(3447), + [anon_sym_virtual] = ACTIONS(3447), + [anon_sym_explicit] = ACTIONS(3447), + [anon_sym_typename] = ACTIONS(3447), + [anon_sym_template] = ACTIONS(3447), + [anon_sym_operator] = ACTIONS(3447), + [anon_sym_try] = ACTIONS(3447), + [anon_sym_delete] = ACTIONS(3447), + [anon_sym_throw] = ACTIONS(3447), + [anon_sym_namespace] = ACTIONS(3447), + [anon_sym_using] = ACTIONS(3447), + [anon_sym_static_assert] = ACTIONS(3447), + [anon_sym_concept] = ACTIONS(3447), + [anon_sym_co_return] = ACTIONS(3447), + [anon_sym_co_yield] = ACTIONS(3447), + [anon_sym_R_DQUOTE] = ACTIONS(3449), + [anon_sym_LR_DQUOTE] = ACTIONS(3449), + [anon_sym_uR_DQUOTE] = ACTIONS(3449), + [anon_sym_UR_DQUOTE] = ACTIONS(3449), + [anon_sym_u8R_DQUOTE] = ACTIONS(3449), + [anon_sym_co_await] = ACTIONS(3447), + [anon_sym_new] = ACTIONS(3447), + [anon_sym_requires] = ACTIONS(3447), + [sym_this] = ACTIONS(3447), }, [602] = { - [sym_identifier] = ACTIONS(2656), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2658), - [anon_sym_AMP] = ACTIONS(2656), - [anon_sym_SEMI] = ACTIONS(2658), - [anon_sym_typedef] = ACTIONS(2656), - [anon_sym_extern] = ACTIONS(2656), - [anon_sym___attribute__] = ACTIONS(2656), - [anon_sym_COLON_COLON] = ACTIONS(2658), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2658), - [anon_sym___declspec] = ACTIONS(2656), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2656), - [anon_sym_static] = ACTIONS(2656), - [anon_sym_register] = ACTIONS(2656), - [anon_sym_inline] = ACTIONS(2656), - [anon_sym_thread_local] = ACTIONS(2656), - [anon_sym_const] = ACTIONS(2656), - [anon_sym_volatile] = ACTIONS(2656), - [anon_sym_restrict] = ACTIONS(2656), - [anon_sym__Atomic] = ACTIONS(2656), - [anon_sym_mutable] = ACTIONS(2656), - [anon_sym_constexpr] = ACTIONS(2656), - [anon_sym_constinit] = ACTIONS(2656), - [anon_sym_consteval] = ACTIONS(2656), - [anon_sym_signed] = ACTIONS(2656), - [anon_sym_unsigned] = ACTIONS(2656), - [anon_sym_long] = ACTIONS(2656), - [anon_sym_short] = ACTIONS(2656), - [sym_primitive_type] = ACTIONS(2656), - [anon_sym_enum] = ACTIONS(2656), - [anon_sym_class] = ACTIONS(2656), - [anon_sym_struct] = ACTIONS(2656), - [anon_sym_union] = ACTIONS(2656), - [anon_sym_if] = ACTIONS(2656), - [anon_sym_else] = 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_return] = ACTIONS(2656), - [anon_sym_break] = ACTIONS(2656), - [anon_sym_continue] = ACTIONS(2656), - [anon_sym_goto] = ACTIONS(2656), - [anon_sym_not] = ACTIONS(2656), - [anon_sym_compl] = ACTIONS(2656), - [anon_sym_DASH_DASH] = ACTIONS(2658), - [anon_sym_PLUS_PLUS] = ACTIONS(2658), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2658), - [anon_sym_u_DQUOTE] = ACTIONS(2658), - [anon_sym_U_DQUOTE] = ACTIONS(2658), - [anon_sym_u8_DQUOTE] = ACTIONS(2658), - [anon_sym_DQUOTE] = ACTIONS(2658), - [sym_true] = ACTIONS(2656), - [sym_false] = ACTIONS(2656), - [sym_null] = ACTIONS(2656), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2656), - [anon_sym_decltype] = ACTIONS(2656), - [anon_sym_virtual] = ACTIONS(2656), - [anon_sym_explicit] = ACTIONS(2656), - [anon_sym_typename] = ACTIONS(2656), - [anon_sym_template] = ACTIONS(2656), - [anon_sym_operator] = ACTIONS(2656), - [anon_sym_try] = ACTIONS(2656), - [anon_sym_delete] = ACTIONS(2656), - [anon_sym_throw] = ACTIONS(2656), - [anon_sym_namespace] = ACTIONS(2656), - [anon_sym_using] = ACTIONS(2656), - [anon_sym_static_assert] = ACTIONS(2656), - [anon_sym_concept] = ACTIONS(2656), - [anon_sym_co_return] = ACTIONS(2656), - [anon_sym_co_yield] = ACTIONS(2656), - [anon_sym_R_DQUOTE] = ACTIONS(2658), - [anon_sym_LR_DQUOTE] = ACTIONS(2658), - [anon_sym_uR_DQUOTE] = ACTIONS(2658), - [anon_sym_UR_DQUOTE] = ACTIONS(2658), - [anon_sym_u8R_DQUOTE] = ACTIONS(2658), - [anon_sym_co_await] = ACTIONS(2656), - [anon_sym_new] = ACTIONS(2656), - [anon_sym_requires] = ACTIONS(2656), - [sym_this] = ACTIONS(2656), - [sym_nullptr] = ACTIONS(2656), + [sym_identifier] = ACTIONS(3451), + [aux_sym_preproc_include_token1] = ACTIONS(3451), + [aux_sym_preproc_def_token1] = ACTIONS(3451), + [aux_sym_preproc_if_token1] = ACTIONS(3451), + [aux_sym_preproc_if_token2] = ACTIONS(3451), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3451), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3451), + [aux_sym_preproc_else_token1] = ACTIONS(3451), + [aux_sym_preproc_elif_token1] = ACTIONS(3451), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3451), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3451), + [sym_preproc_directive] = ACTIONS(3451), + [anon_sym_LPAREN2] = ACTIONS(3453), + [anon_sym_BANG] = ACTIONS(3453), + [anon_sym_TILDE] = ACTIONS(3453), + [anon_sym_DASH] = ACTIONS(3451), + [anon_sym_PLUS] = ACTIONS(3451), + [anon_sym_STAR] = ACTIONS(3453), + [anon_sym_AMP_AMP] = ACTIONS(3453), + [anon_sym_AMP] = ACTIONS(3451), + [anon_sym_SEMI] = ACTIONS(3453), + [anon_sym_typedef] = ACTIONS(3451), + [anon_sym_extern] = ACTIONS(3451), + [anon_sym___attribute__] = ACTIONS(3451), + [anon_sym_COLON_COLON] = ACTIONS(3453), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3453), + [anon_sym___declspec] = ACTIONS(3451), + [anon_sym___based] = ACTIONS(3451), + [anon_sym___cdecl] = ACTIONS(3451), + [anon_sym___clrcall] = ACTIONS(3451), + [anon_sym___stdcall] = ACTIONS(3451), + [anon_sym___fastcall] = ACTIONS(3451), + [anon_sym___thiscall] = ACTIONS(3451), + [anon_sym___vectorcall] = ACTIONS(3451), + [anon_sym_LBRACE] = ACTIONS(3453), + [anon_sym_LBRACK] = ACTIONS(3451), + [anon_sym_static] = ACTIONS(3451), + [anon_sym_register] = ACTIONS(3451), + [anon_sym_inline] = ACTIONS(3451), + [anon_sym_thread_local] = ACTIONS(3451), + [anon_sym_const] = ACTIONS(3451), + [anon_sym_constexpr] = ACTIONS(3451), + [anon_sym_volatile] = ACTIONS(3451), + [anon_sym_restrict] = ACTIONS(3451), + [anon_sym___restrict__] = ACTIONS(3451), + [anon_sym__Atomic] = ACTIONS(3451), + [anon_sym__Noreturn] = ACTIONS(3451), + [anon_sym_noreturn] = ACTIONS(3451), + [anon_sym_mutable] = ACTIONS(3451), + [anon_sym_constinit] = ACTIONS(3451), + [anon_sym_consteval] = ACTIONS(3451), + [anon_sym_signed] = ACTIONS(3451), + [anon_sym_unsigned] = ACTIONS(3451), + [anon_sym_long] = ACTIONS(3451), + [anon_sym_short] = ACTIONS(3451), + [sym_primitive_type] = ACTIONS(3451), + [anon_sym_enum] = ACTIONS(3451), + [anon_sym_class] = ACTIONS(3451), + [anon_sym_struct] = ACTIONS(3451), + [anon_sym_union] = ACTIONS(3451), + [anon_sym_if] = ACTIONS(3451), + [anon_sym_switch] = ACTIONS(3451), + [anon_sym_case] = ACTIONS(3451), + [anon_sym_default] = ACTIONS(3451), + [anon_sym_while] = ACTIONS(3451), + [anon_sym_do] = ACTIONS(3451), + [anon_sym_for] = ACTIONS(3451), + [anon_sym_return] = ACTIONS(3451), + [anon_sym_break] = ACTIONS(3451), + [anon_sym_continue] = ACTIONS(3451), + [anon_sym_goto] = ACTIONS(3451), + [anon_sym_not] = ACTIONS(3451), + [anon_sym_compl] = ACTIONS(3451), + [anon_sym_DASH_DASH] = ACTIONS(3453), + [anon_sym_PLUS_PLUS] = ACTIONS(3453), + [anon_sym_sizeof] = ACTIONS(3451), + [anon_sym_offsetof] = ACTIONS(3451), + [anon_sym__Generic] = ACTIONS(3451), + [anon_sym_asm] = ACTIONS(3451), + [anon_sym___asm__] = ACTIONS(3451), + [sym_number_literal] = ACTIONS(3453), + [anon_sym_L_SQUOTE] = ACTIONS(3453), + [anon_sym_u_SQUOTE] = ACTIONS(3453), + [anon_sym_U_SQUOTE] = ACTIONS(3453), + [anon_sym_u8_SQUOTE] = ACTIONS(3453), + [anon_sym_SQUOTE] = ACTIONS(3453), + [anon_sym_L_DQUOTE] = ACTIONS(3453), + [anon_sym_u_DQUOTE] = ACTIONS(3453), + [anon_sym_U_DQUOTE] = ACTIONS(3453), + [anon_sym_u8_DQUOTE] = ACTIONS(3453), + [anon_sym_DQUOTE] = ACTIONS(3453), + [sym_true] = ACTIONS(3451), + [sym_false] = ACTIONS(3451), + [anon_sym_NULL] = ACTIONS(3451), + [anon_sym_nullptr] = ACTIONS(3451), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3451), + [anon_sym_decltype] = ACTIONS(3451), + [anon_sym_virtual] = ACTIONS(3451), + [anon_sym_explicit] = ACTIONS(3451), + [anon_sym_typename] = ACTIONS(3451), + [anon_sym_template] = ACTIONS(3451), + [anon_sym_operator] = ACTIONS(3451), + [anon_sym_try] = ACTIONS(3451), + [anon_sym_delete] = ACTIONS(3451), + [anon_sym_throw] = ACTIONS(3451), + [anon_sym_namespace] = ACTIONS(3451), + [anon_sym_using] = ACTIONS(3451), + [anon_sym_static_assert] = ACTIONS(3451), + [anon_sym_concept] = ACTIONS(3451), + [anon_sym_co_return] = ACTIONS(3451), + [anon_sym_co_yield] = ACTIONS(3451), + [anon_sym_R_DQUOTE] = ACTIONS(3453), + [anon_sym_LR_DQUOTE] = ACTIONS(3453), + [anon_sym_uR_DQUOTE] = ACTIONS(3453), + [anon_sym_UR_DQUOTE] = ACTIONS(3453), + [anon_sym_u8R_DQUOTE] = ACTIONS(3453), + [anon_sym_co_await] = ACTIONS(3451), + [anon_sym_new] = ACTIONS(3451), + [anon_sym_requires] = ACTIONS(3451), + [sym_this] = ACTIONS(3451), }, [603] = { - [ts_builtin_sym_end] = ACTIONS(2616), - [sym_identifier] = ACTIONS(2614), - [aux_sym_preproc_include_token1] = ACTIONS(2614), - [aux_sym_preproc_def_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2614), - [sym_preproc_directive] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP_AMP] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2614), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym___based] = ACTIONS(2614), - [anon_sym___cdecl] = ACTIONS(2614), - [anon_sym___clrcall] = ACTIONS(2614), - [anon_sym___stdcall] = ACTIONS(2614), - [anon_sym___fastcall] = ACTIONS(2614), - [anon_sym___thiscall] = ACTIONS(2614), - [anon_sym___vectorcall] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_case] = ACTIONS(2614), - [anon_sym_default] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_explicit] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_operator] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_namespace] = ACTIONS(2614), - [anon_sym_using] = ACTIONS(2614), - [anon_sym_static_assert] = ACTIONS(2614), - [anon_sym_concept] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), + [sym_identifier] = ACTIONS(3455), + [aux_sym_preproc_include_token1] = ACTIONS(3455), + [aux_sym_preproc_def_token1] = ACTIONS(3455), + [aux_sym_preproc_if_token1] = ACTIONS(3455), + [aux_sym_preproc_if_token2] = ACTIONS(3455), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3455), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3455), + [aux_sym_preproc_else_token1] = ACTIONS(3455), + [aux_sym_preproc_elif_token1] = ACTIONS(3455), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3455), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3455), + [sym_preproc_directive] = ACTIONS(3455), + [anon_sym_LPAREN2] = ACTIONS(3457), + [anon_sym_BANG] = ACTIONS(3457), + [anon_sym_TILDE] = ACTIONS(3457), + [anon_sym_DASH] = ACTIONS(3455), + [anon_sym_PLUS] = ACTIONS(3455), + [anon_sym_STAR] = ACTIONS(3457), + [anon_sym_AMP_AMP] = ACTIONS(3457), + [anon_sym_AMP] = ACTIONS(3455), + [anon_sym_SEMI] = ACTIONS(3457), + [anon_sym_typedef] = ACTIONS(3455), + [anon_sym_extern] = ACTIONS(3455), + [anon_sym___attribute__] = ACTIONS(3455), + [anon_sym_COLON_COLON] = ACTIONS(3457), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3457), + [anon_sym___declspec] = ACTIONS(3455), + [anon_sym___based] = ACTIONS(3455), + [anon_sym___cdecl] = ACTIONS(3455), + [anon_sym___clrcall] = ACTIONS(3455), + [anon_sym___stdcall] = ACTIONS(3455), + [anon_sym___fastcall] = ACTIONS(3455), + [anon_sym___thiscall] = ACTIONS(3455), + [anon_sym___vectorcall] = ACTIONS(3455), + [anon_sym_LBRACE] = ACTIONS(3457), + [anon_sym_LBRACK] = ACTIONS(3455), + [anon_sym_static] = ACTIONS(3455), + [anon_sym_register] = ACTIONS(3455), + [anon_sym_inline] = ACTIONS(3455), + [anon_sym_thread_local] = ACTIONS(3455), + [anon_sym_const] = ACTIONS(3455), + [anon_sym_constexpr] = ACTIONS(3455), + [anon_sym_volatile] = ACTIONS(3455), + [anon_sym_restrict] = ACTIONS(3455), + [anon_sym___restrict__] = ACTIONS(3455), + [anon_sym__Atomic] = ACTIONS(3455), + [anon_sym__Noreturn] = ACTIONS(3455), + [anon_sym_noreturn] = ACTIONS(3455), + [anon_sym_mutable] = ACTIONS(3455), + [anon_sym_constinit] = ACTIONS(3455), + [anon_sym_consteval] = ACTIONS(3455), + [anon_sym_signed] = ACTIONS(3455), + [anon_sym_unsigned] = ACTIONS(3455), + [anon_sym_long] = ACTIONS(3455), + [anon_sym_short] = ACTIONS(3455), + [sym_primitive_type] = ACTIONS(3455), + [anon_sym_enum] = ACTIONS(3455), + [anon_sym_class] = ACTIONS(3455), + [anon_sym_struct] = ACTIONS(3455), + [anon_sym_union] = ACTIONS(3455), + [anon_sym_if] = ACTIONS(3455), + [anon_sym_switch] = ACTIONS(3455), + [anon_sym_case] = ACTIONS(3455), + [anon_sym_default] = ACTIONS(3455), + [anon_sym_while] = ACTIONS(3455), + [anon_sym_do] = ACTIONS(3455), + [anon_sym_for] = ACTIONS(3455), + [anon_sym_return] = ACTIONS(3455), + [anon_sym_break] = ACTIONS(3455), + [anon_sym_continue] = ACTIONS(3455), + [anon_sym_goto] = ACTIONS(3455), + [anon_sym_not] = ACTIONS(3455), + [anon_sym_compl] = ACTIONS(3455), + [anon_sym_DASH_DASH] = ACTIONS(3457), + [anon_sym_PLUS_PLUS] = ACTIONS(3457), + [anon_sym_sizeof] = ACTIONS(3455), + [anon_sym_offsetof] = ACTIONS(3455), + [anon_sym__Generic] = ACTIONS(3455), + [anon_sym_asm] = ACTIONS(3455), + [anon_sym___asm__] = ACTIONS(3455), + [sym_number_literal] = ACTIONS(3457), + [anon_sym_L_SQUOTE] = ACTIONS(3457), + [anon_sym_u_SQUOTE] = ACTIONS(3457), + [anon_sym_U_SQUOTE] = ACTIONS(3457), + [anon_sym_u8_SQUOTE] = ACTIONS(3457), + [anon_sym_SQUOTE] = ACTIONS(3457), + [anon_sym_L_DQUOTE] = ACTIONS(3457), + [anon_sym_u_DQUOTE] = ACTIONS(3457), + [anon_sym_U_DQUOTE] = ACTIONS(3457), + [anon_sym_u8_DQUOTE] = ACTIONS(3457), + [anon_sym_DQUOTE] = ACTIONS(3457), + [sym_true] = ACTIONS(3455), + [sym_false] = ACTIONS(3455), + [anon_sym_NULL] = ACTIONS(3455), + [anon_sym_nullptr] = ACTIONS(3455), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3455), + [anon_sym_decltype] = ACTIONS(3455), + [anon_sym_virtual] = ACTIONS(3455), + [anon_sym_explicit] = ACTIONS(3455), + [anon_sym_typename] = ACTIONS(3455), + [anon_sym_template] = ACTIONS(3455), + [anon_sym_operator] = ACTIONS(3455), + [anon_sym_try] = ACTIONS(3455), + [anon_sym_delete] = ACTIONS(3455), + [anon_sym_throw] = ACTIONS(3455), + [anon_sym_namespace] = ACTIONS(3455), + [anon_sym_using] = ACTIONS(3455), + [anon_sym_static_assert] = ACTIONS(3455), + [anon_sym_concept] = ACTIONS(3455), + [anon_sym_co_return] = ACTIONS(3455), + [anon_sym_co_yield] = ACTIONS(3455), + [anon_sym_R_DQUOTE] = ACTIONS(3457), + [anon_sym_LR_DQUOTE] = ACTIONS(3457), + [anon_sym_uR_DQUOTE] = ACTIONS(3457), + [anon_sym_UR_DQUOTE] = ACTIONS(3457), + [anon_sym_u8R_DQUOTE] = ACTIONS(3457), + [anon_sym_co_await] = ACTIONS(3455), + [anon_sym_new] = ACTIONS(3455), + [anon_sym_requires] = ACTIONS(3455), + [sym_this] = ACTIONS(3455), }, [604] = { - [ts_builtin_sym_end] = ACTIONS(2616), - [sym_identifier] = ACTIONS(2614), - [aux_sym_preproc_include_token1] = ACTIONS(2614), - [aux_sym_preproc_def_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2614), - [sym_preproc_directive] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP_AMP] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2614), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym___based] = ACTIONS(2614), - [anon_sym___cdecl] = ACTIONS(2614), - [anon_sym___clrcall] = ACTIONS(2614), - [anon_sym___stdcall] = ACTIONS(2614), - [anon_sym___fastcall] = ACTIONS(2614), - [anon_sym___thiscall] = ACTIONS(2614), - [anon_sym___vectorcall] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_case] = ACTIONS(2614), - [anon_sym_default] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_explicit] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_operator] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_namespace] = ACTIONS(2614), - [anon_sym_using] = ACTIONS(2614), - [anon_sym_static_assert] = ACTIONS(2614), - [anon_sym_concept] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token2] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [aux_sym_preproc_else_token1] = ACTIONS(3028), + [aux_sym_preproc_elif_token1] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, [605] = { - [ts_builtin_sym_end] = ACTIONS(2616), - [sym_identifier] = ACTIONS(2614), - [aux_sym_preproc_include_token1] = ACTIONS(2614), - [aux_sym_preproc_def_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2614), - [sym_preproc_directive] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP_AMP] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2614), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym___based] = ACTIONS(2614), - [anon_sym___cdecl] = ACTIONS(2614), - [anon_sym___clrcall] = ACTIONS(2614), - [anon_sym___stdcall] = ACTIONS(2614), - [anon_sym___fastcall] = ACTIONS(2614), - [anon_sym___thiscall] = ACTIONS(2614), - [anon_sym___vectorcall] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_case] = ACTIONS(2614), - [anon_sym_default] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_explicit] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_operator] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_namespace] = ACTIONS(2614), - [anon_sym_using] = ACTIONS(2614), - [anon_sym_static_assert] = ACTIONS(2614), - [anon_sym_concept] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), + [sym_identifier] = ACTIONS(2956), + [aux_sym_preproc_include_token1] = ACTIONS(2956), + [aux_sym_preproc_def_token1] = ACTIONS(2956), + [aux_sym_preproc_if_token1] = ACTIONS(2956), + [aux_sym_preproc_if_token2] = ACTIONS(2956), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2956), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2956), + [aux_sym_preproc_else_token1] = ACTIONS(2956), + [aux_sym_preproc_elif_token1] = ACTIONS(2956), + [sym_preproc_directive] = ACTIONS(2956), + [anon_sym_LPAREN2] = ACTIONS(2958), + [anon_sym_BANG] = ACTIONS(2958), + [anon_sym_TILDE] = ACTIONS(2958), + [anon_sym_DASH] = ACTIONS(2956), + [anon_sym_PLUS] = ACTIONS(2956), + [anon_sym_STAR] = ACTIONS(2958), + [anon_sym_AMP_AMP] = ACTIONS(2958), + [anon_sym_AMP] = ACTIONS(2956), + [anon_sym_SEMI] = ACTIONS(2958), + [anon_sym_typedef] = ACTIONS(2956), + [anon_sym_extern] = ACTIONS(2956), + [anon_sym___attribute__] = ACTIONS(2956), + [anon_sym_COLON_COLON] = ACTIONS(2958), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2958), + [anon_sym___declspec] = ACTIONS(2956), + [anon_sym___based] = ACTIONS(2956), + [anon_sym___cdecl] = ACTIONS(2956), + [anon_sym___clrcall] = ACTIONS(2956), + [anon_sym___stdcall] = ACTIONS(2956), + [anon_sym___fastcall] = ACTIONS(2956), + [anon_sym___thiscall] = ACTIONS(2956), + [anon_sym___vectorcall] = ACTIONS(2956), + [anon_sym_LBRACE] = ACTIONS(2958), + [anon_sym_LBRACK] = ACTIONS(2956), + [anon_sym_static] = ACTIONS(2956), + [anon_sym_register] = ACTIONS(2956), + [anon_sym_inline] = ACTIONS(2956), + [anon_sym_thread_local] = ACTIONS(2956), + [anon_sym_const] = ACTIONS(2956), + [anon_sym_constexpr] = ACTIONS(2956), + [anon_sym_volatile] = ACTIONS(2956), + [anon_sym_restrict] = ACTIONS(2956), + [anon_sym___restrict__] = ACTIONS(2956), + [anon_sym__Atomic] = ACTIONS(2956), + [anon_sym__Noreturn] = ACTIONS(2956), + [anon_sym_noreturn] = ACTIONS(2956), + [anon_sym_mutable] = ACTIONS(2956), + [anon_sym_constinit] = ACTIONS(2956), + [anon_sym_consteval] = ACTIONS(2956), + [anon_sym_signed] = ACTIONS(2956), + [anon_sym_unsigned] = ACTIONS(2956), + [anon_sym_long] = ACTIONS(2956), + [anon_sym_short] = ACTIONS(2956), + [sym_primitive_type] = ACTIONS(2956), + [anon_sym_enum] = ACTIONS(2956), + [anon_sym_class] = ACTIONS(2956), + [anon_sym_struct] = ACTIONS(2956), + [anon_sym_union] = ACTIONS(2956), + [anon_sym_if] = ACTIONS(2956), + [anon_sym_else] = ACTIONS(2956), + [anon_sym_switch] = ACTIONS(2956), + [anon_sym_case] = ACTIONS(2956), + [anon_sym_default] = ACTIONS(2956), + [anon_sym_while] = ACTIONS(2956), + [anon_sym_do] = ACTIONS(2956), + [anon_sym_for] = ACTIONS(2956), + [anon_sym_return] = ACTIONS(2956), + [anon_sym_break] = ACTIONS(2956), + [anon_sym_continue] = ACTIONS(2956), + [anon_sym_goto] = ACTIONS(2956), + [anon_sym_not] = ACTIONS(2956), + [anon_sym_compl] = ACTIONS(2956), + [anon_sym_DASH_DASH] = ACTIONS(2958), + [anon_sym_PLUS_PLUS] = ACTIONS(2958), + [anon_sym_sizeof] = ACTIONS(2956), + [anon_sym_offsetof] = ACTIONS(2956), + [anon_sym__Generic] = ACTIONS(2956), + [anon_sym_asm] = ACTIONS(2956), + [anon_sym___asm__] = ACTIONS(2956), + [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_L_DQUOTE] = ACTIONS(2958), + [anon_sym_u_DQUOTE] = ACTIONS(2958), + [anon_sym_U_DQUOTE] = ACTIONS(2958), + [anon_sym_u8_DQUOTE] = ACTIONS(2958), + [anon_sym_DQUOTE] = ACTIONS(2958), + [sym_true] = ACTIONS(2956), + [sym_false] = ACTIONS(2956), + [anon_sym_NULL] = ACTIONS(2956), + [anon_sym_nullptr] = ACTIONS(2956), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2956), + [anon_sym_decltype] = ACTIONS(2956), + [anon_sym_virtual] = ACTIONS(2956), + [anon_sym_explicit] = ACTIONS(2956), + [anon_sym_typename] = ACTIONS(2956), + [anon_sym_template] = ACTIONS(2956), + [anon_sym_operator] = ACTIONS(2956), + [anon_sym_try] = ACTIONS(2956), + [anon_sym_delete] = ACTIONS(2956), + [anon_sym_throw] = ACTIONS(2956), + [anon_sym_namespace] = ACTIONS(2956), + [anon_sym_using] = ACTIONS(2956), + [anon_sym_static_assert] = ACTIONS(2956), + [anon_sym_concept] = ACTIONS(2956), + [anon_sym_co_return] = ACTIONS(2956), + [anon_sym_co_yield] = ACTIONS(2956), + [anon_sym_R_DQUOTE] = ACTIONS(2958), + [anon_sym_LR_DQUOTE] = ACTIONS(2958), + [anon_sym_uR_DQUOTE] = ACTIONS(2958), + [anon_sym_UR_DQUOTE] = ACTIONS(2958), + [anon_sym_u8R_DQUOTE] = ACTIONS(2958), + [anon_sym_co_await] = ACTIONS(2956), + [anon_sym_new] = ACTIONS(2956), + [anon_sym_requires] = ACTIONS(2956), + [sym_this] = ACTIONS(2956), }, [606] = { - [ts_builtin_sym_end] = ACTIONS(2616), - [sym_identifier] = ACTIONS(2614), - [aux_sym_preproc_include_token1] = ACTIONS(2614), - [aux_sym_preproc_def_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2614), - [sym_preproc_directive] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP_AMP] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2614), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym___based] = ACTIONS(2614), - [anon_sym___cdecl] = ACTIONS(2614), - [anon_sym___clrcall] = ACTIONS(2614), - [anon_sym___stdcall] = ACTIONS(2614), - [anon_sym___fastcall] = ACTIONS(2614), - [anon_sym___thiscall] = ACTIONS(2614), - [anon_sym___vectorcall] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_case] = ACTIONS(2614), - [anon_sym_default] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_explicit] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_operator] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_namespace] = ACTIONS(2614), - [anon_sym_using] = ACTIONS(2614), - [anon_sym_static_assert] = ACTIONS(2614), - [anon_sym_concept] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token2] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [aux_sym_preproc_else_token1] = ACTIONS(3048), + [aux_sym_preproc_elif_token1] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, [607] = { - [ts_builtin_sym_end] = ACTIONS(2632), - [sym_identifier] = ACTIONS(2630), - [aux_sym_preproc_include_token1] = ACTIONS(2630), - [aux_sym_preproc_def_token1] = ACTIONS(2630), - [aux_sym_preproc_if_token1] = ACTIONS(2630), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2630), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2630), - [sym_preproc_directive] = ACTIONS(2630), - [anon_sym_LPAREN2] = ACTIONS(2632), - [anon_sym_BANG] = ACTIONS(2632), - [anon_sym_TILDE] = ACTIONS(2632), - [anon_sym_DASH] = ACTIONS(2630), - [anon_sym_PLUS] = ACTIONS(2630), - [anon_sym_STAR] = ACTIONS(2632), - [anon_sym_AMP_AMP] = ACTIONS(2632), - [anon_sym_AMP] = ACTIONS(2630), - [anon_sym_SEMI] = ACTIONS(2632), - [anon_sym_typedef] = ACTIONS(2630), - [anon_sym_extern] = ACTIONS(2630), - [anon_sym___attribute__] = ACTIONS(2630), - [anon_sym_COLON_COLON] = ACTIONS(2632), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2632), - [anon_sym___declspec] = ACTIONS(2630), - [anon_sym___based] = ACTIONS(2630), - [anon_sym___cdecl] = ACTIONS(2630), - [anon_sym___clrcall] = ACTIONS(2630), - [anon_sym___stdcall] = ACTIONS(2630), - [anon_sym___fastcall] = ACTIONS(2630), - [anon_sym___thiscall] = ACTIONS(2630), - [anon_sym___vectorcall] = ACTIONS(2630), - [anon_sym_LBRACE] = ACTIONS(2632), - [anon_sym_LBRACK] = ACTIONS(2630), - [anon_sym_static] = ACTIONS(2630), - [anon_sym_register] = ACTIONS(2630), - [anon_sym_inline] = ACTIONS(2630), - [anon_sym_thread_local] = ACTIONS(2630), - [anon_sym_const] = ACTIONS(2630), - [anon_sym_volatile] = ACTIONS(2630), - [anon_sym_restrict] = ACTIONS(2630), - [anon_sym__Atomic] = ACTIONS(2630), - [anon_sym_mutable] = ACTIONS(2630), - [anon_sym_constexpr] = ACTIONS(2630), - [anon_sym_constinit] = ACTIONS(2630), - [anon_sym_consteval] = ACTIONS(2630), - [anon_sym_signed] = ACTIONS(2630), - [anon_sym_unsigned] = ACTIONS(2630), - [anon_sym_long] = ACTIONS(2630), - [anon_sym_short] = ACTIONS(2630), - [sym_primitive_type] = ACTIONS(2630), - [anon_sym_enum] = ACTIONS(2630), - [anon_sym_class] = ACTIONS(2630), - [anon_sym_struct] = ACTIONS(2630), - [anon_sym_union] = ACTIONS(2630), - [anon_sym_if] = ACTIONS(2630), - [anon_sym_else] = ACTIONS(2630), - [anon_sym_switch] = ACTIONS(2630), - [anon_sym_case] = ACTIONS(2630), - [anon_sym_default] = ACTIONS(2630), - [anon_sym_while] = ACTIONS(2630), - [anon_sym_do] = ACTIONS(2630), - [anon_sym_for] = ACTIONS(2630), - [anon_sym_return] = ACTIONS(2630), - [anon_sym_break] = ACTIONS(2630), - [anon_sym_continue] = ACTIONS(2630), - [anon_sym_goto] = ACTIONS(2630), - [anon_sym_not] = ACTIONS(2630), - [anon_sym_compl] = ACTIONS(2630), - [anon_sym_DASH_DASH] = ACTIONS(2632), - [anon_sym_PLUS_PLUS] = ACTIONS(2632), - [anon_sym_sizeof] = ACTIONS(2630), - [sym_number_literal] = ACTIONS(2632), - [anon_sym_L_SQUOTE] = ACTIONS(2632), - [anon_sym_u_SQUOTE] = ACTIONS(2632), - [anon_sym_U_SQUOTE] = ACTIONS(2632), - [anon_sym_u8_SQUOTE] = ACTIONS(2632), - [anon_sym_SQUOTE] = ACTIONS(2632), - [anon_sym_L_DQUOTE] = ACTIONS(2632), - [anon_sym_u_DQUOTE] = ACTIONS(2632), - [anon_sym_U_DQUOTE] = ACTIONS(2632), - [anon_sym_u8_DQUOTE] = ACTIONS(2632), - [anon_sym_DQUOTE] = ACTIONS(2632), - [sym_true] = ACTIONS(2630), - [sym_false] = ACTIONS(2630), - [sym_null] = ACTIONS(2630), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2630), - [anon_sym_decltype] = ACTIONS(2630), - [anon_sym_virtual] = ACTIONS(2630), - [anon_sym_explicit] = ACTIONS(2630), - [anon_sym_typename] = ACTIONS(2630), - [anon_sym_template] = ACTIONS(2630), - [anon_sym_operator] = ACTIONS(2630), - [anon_sym_try] = ACTIONS(2630), - [anon_sym_delete] = ACTIONS(2630), - [anon_sym_throw] = ACTIONS(2630), - [anon_sym_namespace] = ACTIONS(2630), - [anon_sym_using] = ACTIONS(2630), - [anon_sym_static_assert] = ACTIONS(2630), - [anon_sym_concept] = ACTIONS(2630), - [anon_sym_co_return] = ACTIONS(2630), - [anon_sym_co_yield] = ACTIONS(2630), - [anon_sym_R_DQUOTE] = ACTIONS(2632), - [anon_sym_LR_DQUOTE] = ACTIONS(2632), - [anon_sym_uR_DQUOTE] = ACTIONS(2632), - [anon_sym_UR_DQUOTE] = ACTIONS(2632), - [anon_sym_u8R_DQUOTE] = ACTIONS(2632), - [anon_sym_co_await] = ACTIONS(2630), - [anon_sym_new] = ACTIONS(2630), - [anon_sym_requires] = ACTIONS(2630), - [sym_this] = ACTIONS(2630), - [sym_nullptr] = ACTIONS(2630), + [sym_preproc_def] = STATE(612), + [sym_preproc_function_def] = STATE(612), + [sym_preproc_call] = STATE(612), + [sym_preproc_if_in_field_declaration_list] = STATE(612), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(612), + [sym_type_definition] = STATE(612), + [sym__declaration_modifiers] = STATE(3706), + [sym__declaration_specifiers] = STATE(4853), + [sym_attribute_specifier] = STATE(3706), + [sym_attribute_declaration] = STATE(3706), + [sym_ms_declspec_modifier] = STATE(3706), + [sym_ms_based_modifier] = STATE(7654), + [sym__declarator] = STATE(5881), + [sym_parenthesized_declarator] = STATE(5640), + [sym_attributed_declarator] = STATE(5640), + [sym_pointer_declarator] = STATE(5640), + [sym_function_declarator] = STATE(5507), + [sym_array_declarator] = STATE(5640), + [sym_storage_class_specifier] = STATE(3706), + [sym_type_qualifier] = STATE(3706), + [sym__type_specifier] = STATE(3845), + [sym_sized_type_specifier] = STATE(3918), + [sym_enum_specifier] = STATE(3918), + [sym_struct_specifier] = STATE(3918), + [sym_union_specifier] = STATE(3918), + [sym__field_declaration_list_item] = STATE(612), + [sym_field_declaration] = STATE(612), + [sym_placeholder_type_specifier] = STATE(3918), + [sym_decltype_auto] = STATE(3916), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3918), + [sym_virtual] = STATE(3706), + [sym_explicit_function_specifier] = STATE(2236), + [sym_dependent_type] = STATE(3918), + [sym_template_declaration] = STATE(612), + [sym_operator_cast] = STATE(5887), + [sym_inline_method_definition] = STATE(612), + [sym__constructor_specifiers] = STATE(2236), + [sym_operator_cast_definition] = STATE(612), + [sym_operator_cast_declaration] = STATE(612), + [sym_constructor_or_destructor_definition] = STATE(612), + [sym_constructor_or_destructor_declaration] = STATE(612), + [sym_friend_declaration] = STATE(612), + [sym_access_specifier] = STATE(7275), + [sym_reference_declarator] = STATE(5640), + [sym_structured_binding_declarator] = STATE(5640), + [sym_template_type] = STATE(3680), + [sym_template_function] = STATE(5640), + [sym_using_declaration] = STATE(612), + [sym_alias_declaration] = STATE(612), + [sym_static_assert_declaration] = STATE(612), + [sym_destructor_name] = STATE(5640), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5151), + [sym_qualified_identifier] = STATE(5640), + [sym_qualified_type_identifier] = STATE(3966), + [sym_qualified_operator_cast_identifier] = STATE(5887), + [sym_operator_name] = STATE(5640), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(612), + [aux_sym__declaration_specifiers_repeat1] = STATE(2509), + [aux_sym_sized_type_specifier_repeat1] = STATE(3981), + [aux_sym_operator_cast_definition_repeat1] = STATE(2236), + [sym_identifier] = ACTIONS(2544), + [aux_sym_preproc_def_token1] = ACTIONS(3459), + [aux_sym_preproc_if_token1] = ACTIONS(3461), + [aux_sym_preproc_if_token2] = ACTIONS(3463), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3465), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3465), + [sym_preproc_directive] = ACTIONS(3467), + [anon_sym_LPAREN2] = ACTIONS(2560), + [anon_sym_TILDE] = ACTIONS(2562), + [anon_sym_STAR] = ACTIONS(2564), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_typedef] = ACTIONS(3469), + [anon_sym_extern] = ACTIONS(53), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(2570), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1813), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(2572), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(53), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(2574), + [anon_sym_unsigned] = ACTIONS(2574), + [anon_sym_long] = ACTIONS(2574), + [anon_sym_short] = ACTIONS(2574), + [sym_primitive_type] = ACTIONS(2576), + [anon_sym_enum] = ACTIONS(2578), + [anon_sym_class] = ACTIONS(2580), + [anon_sym_struct] = ACTIONS(2582), + [anon_sym_union] = ACTIONS(2584), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2586), + [anon_sym_decltype] = ACTIONS(2588), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_explicit] = ACTIONS(119), + [anon_sym_typename] = ACTIONS(2590), + [anon_sym_template] = ACTIONS(3471), + [anon_sym_operator] = ACTIONS(125), + [anon_sym_friend] = ACTIONS(3473), + [anon_sym_public] = ACTIONS(2596), + [anon_sym_private] = ACTIONS(2596), + [anon_sym_protected] = ACTIONS(2596), + [anon_sym_using] = ACTIONS(3475), + [anon_sym_static_assert] = ACTIONS(3477), }, [608] = { - [ts_builtin_sym_end] = ACTIONS(2616), - [sym_identifier] = ACTIONS(2614), - [aux_sym_preproc_include_token1] = ACTIONS(2614), - [aux_sym_preproc_def_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2614), - [sym_preproc_directive] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP_AMP] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2614), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym___based] = ACTIONS(2614), - [anon_sym___cdecl] = ACTIONS(2614), - [anon_sym___clrcall] = ACTIONS(2614), - [anon_sym___stdcall] = ACTIONS(2614), - [anon_sym___fastcall] = ACTIONS(2614), - [anon_sym___thiscall] = ACTIONS(2614), - [anon_sym___vectorcall] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_case] = ACTIONS(2614), - [anon_sym_default] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_explicit] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_operator] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_namespace] = ACTIONS(2614), - [anon_sym_using] = ACTIONS(2614), - [anon_sym_static_assert] = ACTIONS(2614), - [anon_sym_concept] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token2] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [aux_sym_preproc_else_token1] = ACTIONS(3048), + [aux_sym_preproc_elif_token1] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, [609] = { - [ts_builtin_sym_end] = ACTIONS(2616), - [sym_identifier] = ACTIONS(2614), - [aux_sym_preproc_include_token1] = ACTIONS(2614), - [aux_sym_preproc_def_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2614), - [sym_preproc_directive] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP_AMP] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2614), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym___based] = ACTIONS(2614), - [anon_sym___cdecl] = ACTIONS(2614), - [anon_sym___clrcall] = ACTIONS(2614), - [anon_sym___stdcall] = ACTIONS(2614), - [anon_sym___fastcall] = ACTIONS(2614), - [anon_sym___thiscall] = ACTIONS(2614), - [anon_sym___vectorcall] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_case] = ACTIONS(2614), - [anon_sym_default] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_explicit] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_operator] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_namespace] = ACTIONS(2614), - [anon_sym_using] = ACTIONS(2614), - [anon_sym_static_assert] = ACTIONS(2614), - [anon_sym_concept] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token2] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [aux_sym_preproc_else_token1] = ACTIONS(3048), + [aux_sym_preproc_elif_token1] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, [610] = { - [ts_builtin_sym_end] = ACTIONS(2616), - [sym_identifier] = ACTIONS(2614), - [aux_sym_preproc_include_token1] = ACTIONS(2614), - [aux_sym_preproc_def_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2614), - [sym_preproc_directive] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP_AMP] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2614), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym___based] = ACTIONS(2614), - [anon_sym___cdecl] = ACTIONS(2614), - [anon_sym___clrcall] = ACTIONS(2614), - [anon_sym___stdcall] = ACTIONS(2614), - [anon_sym___fastcall] = ACTIONS(2614), - [anon_sym___thiscall] = ACTIONS(2614), - [anon_sym___vectorcall] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_case] = ACTIONS(2614), - [anon_sym_default] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_explicit] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_operator] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_namespace] = ACTIONS(2614), - [anon_sym_using] = ACTIONS(2614), - [anon_sym_static_assert] = ACTIONS(2614), - [anon_sym_concept] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), + [sym_preproc_def] = STATE(712), + [sym_preproc_function_def] = STATE(712), + [sym_preproc_call] = STATE(712), + [sym_preproc_if_in_field_declaration_list] = STATE(712), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(712), + [sym_type_definition] = STATE(712), + [sym__declaration_modifiers] = STATE(3706), + [sym__declaration_specifiers] = STATE(4831), + [sym_attribute_specifier] = STATE(3706), + [sym_attribute_declaration] = STATE(3706), + [sym_ms_declspec_modifier] = STATE(3706), + [sym_ms_based_modifier] = STATE(7654), + [sym__declarator] = STATE(5881), + [sym_parenthesized_declarator] = STATE(5640), + [sym_attributed_declarator] = STATE(5640), + [sym_pointer_declarator] = STATE(5640), + [sym_function_declarator] = STATE(5531), + [sym_array_declarator] = STATE(5640), + [sym_storage_class_specifier] = STATE(3706), + [sym_type_qualifier] = STATE(3706), + [sym__type_specifier] = STATE(3845), + [sym_sized_type_specifier] = STATE(3918), + [sym_enum_specifier] = STATE(3918), + [sym_struct_specifier] = STATE(3918), + [sym_union_specifier] = STATE(3918), + [sym__field_declaration_list_item] = STATE(712), + [sym_field_declaration] = STATE(712), + [sym_placeholder_type_specifier] = STATE(3918), + [sym_decltype_auto] = STATE(3916), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3918), + [sym_virtual] = STATE(3706), + [sym_explicit_function_specifier] = STATE(2247), + [sym_dependent_type] = STATE(3918), + [sym_template_declaration] = STATE(712), + [sym_operator_cast] = STATE(5897), + [sym_inline_method_definition] = STATE(712), + [sym__constructor_specifiers] = STATE(2247), + [sym_operator_cast_definition] = STATE(712), + [sym_operator_cast_declaration] = STATE(712), + [sym_constructor_or_destructor_definition] = STATE(712), + [sym_constructor_or_destructor_declaration] = STATE(712), + [sym_friend_declaration] = STATE(712), + [sym_access_specifier] = STATE(7346), + [sym_reference_declarator] = STATE(5640), + [sym_structured_binding_declarator] = STATE(5640), + [sym_template_type] = STATE(3680), + [sym_template_function] = STATE(5640), + [sym_using_declaration] = STATE(712), + [sym_alias_declaration] = STATE(712), + [sym_static_assert_declaration] = STATE(712), + [sym_destructor_name] = STATE(5640), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5151), + [sym_qualified_identifier] = STATE(5640), + [sym_qualified_type_identifier] = STATE(3966), + [sym_qualified_operator_cast_identifier] = STATE(5897), + [sym_operator_name] = STATE(5640), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(712), + [aux_sym__declaration_specifiers_repeat1] = STATE(2509), + [aux_sym_sized_type_specifier_repeat1] = STATE(3981), + [aux_sym_operator_cast_definition_repeat1] = STATE(2247), + [sym_identifier] = ACTIONS(2544), + [aux_sym_preproc_def_token1] = ACTIONS(3479), + [aux_sym_preproc_if_token1] = ACTIONS(3481), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3483), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3483), + [sym_preproc_directive] = ACTIONS(3485), + [anon_sym_LPAREN2] = ACTIONS(2560), + [anon_sym_TILDE] = ACTIONS(2562), + [anon_sym_STAR] = ACTIONS(2564), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_typedef] = ACTIONS(3487), + [anon_sym_extern] = ACTIONS(53), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(2570), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1813), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(45), + [anon_sym_RBRACE] = ACTIONS(3489), + [anon_sym_LBRACK] = ACTIONS(2572), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(53), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(2574), + [anon_sym_unsigned] = ACTIONS(2574), + [anon_sym_long] = ACTIONS(2574), + [anon_sym_short] = ACTIONS(2574), + [sym_primitive_type] = ACTIONS(2576), + [anon_sym_enum] = ACTIONS(2578), + [anon_sym_class] = ACTIONS(2580), + [anon_sym_struct] = ACTIONS(2582), + [anon_sym_union] = ACTIONS(2584), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2586), + [anon_sym_decltype] = ACTIONS(2588), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_explicit] = ACTIONS(119), + [anon_sym_typename] = ACTIONS(2590), + [anon_sym_template] = ACTIONS(3491), + [anon_sym_operator] = ACTIONS(125), + [anon_sym_friend] = ACTIONS(3493), + [anon_sym_public] = ACTIONS(2596), + [anon_sym_private] = ACTIONS(2596), + [anon_sym_protected] = ACTIONS(2596), + [anon_sym_using] = ACTIONS(3495), + [anon_sym_static_assert] = ACTIONS(3497), }, [611] = { - [ts_builtin_sym_end] = ACTIONS(2616), - [sym_identifier] = ACTIONS(2614), - [aux_sym_preproc_include_token1] = ACTIONS(2614), - [aux_sym_preproc_def_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2614), - [sym_preproc_directive] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP_AMP] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2614), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym___based] = ACTIONS(2614), - [anon_sym___cdecl] = ACTIONS(2614), - [anon_sym___clrcall] = ACTIONS(2614), - [anon_sym___stdcall] = ACTIONS(2614), - [anon_sym___fastcall] = ACTIONS(2614), - [anon_sym___thiscall] = ACTIONS(2614), - [anon_sym___vectorcall] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_case] = ACTIONS(2614), - [anon_sym_default] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_explicit] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_operator] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_namespace] = ACTIONS(2614), - [anon_sym_using] = ACTIONS(2614), - [anon_sym_static_assert] = ACTIONS(2614), - [anon_sym_concept] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token2] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [aux_sym_preproc_else_token1] = ACTIONS(3048), + [aux_sym_preproc_elif_token1] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, [612] = { - [ts_builtin_sym_end] = ACTIONS(2616), - [sym_identifier] = ACTIONS(2614), - [aux_sym_preproc_include_token1] = ACTIONS(2614), - [aux_sym_preproc_def_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2614), - [sym_preproc_directive] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP_AMP] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2614), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym___based] = ACTIONS(2614), - [anon_sym___cdecl] = ACTIONS(2614), - [anon_sym___clrcall] = ACTIONS(2614), - [anon_sym___stdcall] = ACTIONS(2614), - [anon_sym___fastcall] = ACTIONS(2614), - [anon_sym___thiscall] = ACTIONS(2614), - [anon_sym___vectorcall] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_case] = ACTIONS(2614), - [anon_sym_default] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_explicit] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_operator] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_namespace] = ACTIONS(2614), - [anon_sym_using] = ACTIONS(2614), - [anon_sym_static_assert] = ACTIONS(2614), - [anon_sym_concept] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), + [sym_preproc_def] = STATE(720), + [sym_preproc_function_def] = STATE(720), + [sym_preproc_call] = STATE(720), + [sym_preproc_if_in_field_declaration_list] = STATE(720), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(720), + [sym_type_definition] = STATE(720), + [sym__declaration_modifiers] = STATE(3706), + [sym__declaration_specifiers] = STATE(4853), + [sym_attribute_specifier] = STATE(3706), + [sym_attribute_declaration] = STATE(3706), + [sym_ms_declspec_modifier] = STATE(3706), + [sym_ms_based_modifier] = STATE(7654), + [sym__declarator] = STATE(5881), + [sym_parenthesized_declarator] = STATE(5640), + [sym_attributed_declarator] = STATE(5640), + [sym_pointer_declarator] = STATE(5640), + [sym_function_declarator] = STATE(5507), + [sym_array_declarator] = STATE(5640), + [sym_storage_class_specifier] = STATE(3706), + [sym_type_qualifier] = STATE(3706), + [sym__type_specifier] = STATE(3845), + [sym_sized_type_specifier] = STATE(3918), + [sym_enum_specifier] = STATE(3918), + [sym_struct_specifier] = STATE(3918), + [sym_union_specifier] = STATE(3918), + [sym__field_declaration_list_item] = STATE(720), + [sym_field_declaration] = STATE(720), + [sym_placeholder_type_specifier] = STATE(3918), + [sym_decltype_auto] = STATE(3916), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3918), + [sym_virtual] = STATE(3706), + [sym_explicit_function_specifier] = STATE(2236), + [sym_dependent_type] = STATE(3918), + [sym_template_declaration] = STATE(720), + [sym_operator_cast] = STATE(5887), + [sym_inline_method_definition] = STATE(720), + [sym__constructor_specifiers] = STATE(2236), + [sym_operator_cast_definition] = STATE(720), + [sym_operator_cast_declaration] = STATE(720), + [sym_constructor_or_destructor_definition] = STATE(720), + [sym_constructor_or_destructor_declaration] = STATE(720), + [sym_friend_declaration] = STATE(720), + [sym_access_specifier] = STATE(7275), + [sym_reference_declarator] = STATE(5640), + [sym_structured_binding_declarator] = STATE(5640), + [sym_template_type] = STATE(3680), + [sym_template_function] = STATE(5640), + [sym_using_declaration] = STATE(720), + [sym_alias_declaration] = STATE(720), + [sym_static_assert_declaration] = STATE(720), + [sym_destructor_name] = STATE(5640), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5151), + [sym_qualified_identifier] = STATE(5640), + [sym_qualified_type_identifier] = STATE(3966), + [sym_qualified_operator_cast_identifier] = STATE(5887), + [sym_operator_name] = STATE(5640), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(720), + [aux_sym__declaration_specifiers_repeat1] = STATE(2509), + [aux_sym_sized_type_specifier_repeat1] = STATE(3981), + [aux_sym_operator_cast_definition_repeat1] = STATE(2236), + [sym_identifier] = ACTIONS(2544), + [aux_sym_preproc_def_token1] = ACTIONS(3459), + [aux_sym_preproc_if_token1] = ACTIONS(3461), + [aux_sym_preproc_if_token2] = ACTIONS(3499), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3465), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3465), + [sym_preproc_directive] = ACTIONS(3467), + [anon_sym_LPAREN2] = ACTIONS(2560), + [anon_sym_TILDE] = ACTIONS(2562), + [anon_sym_STAR] = ACTIONS(2564), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_typedef] = ACTIONS(3469), + [anon_sym_extern] = ACTIONS(53), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(2570), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1813), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(2572), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(53), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(2574), + [anon_sym_unsigned] = ACTIONS(2574), + [anon_sym_long] = ACTIONS(2574), + [anon_sym_short] = ACTIONS(2574), + [sym_primitive_type] = ACTIONS(2576), + [anon_sym_enum] = ACTIONS(2578), + [anon_sym_class] = ACTIONS(2580), + [anon_sym_struct] = ACTIONS(2582), + [anon_sym_union] = ACTIONS(2584), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2586), + [anon_sym_decltype] = ACTIONS(2588), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_explicit] = ACTIONS(119), + [anon_sym_typename] = ACTIONS(2590), + [anon_sym_template] = ACTIONS(3471), + [anon_sym_operator] = ACTIONS(125), + [anon_sym_friend] = ACTIONS(3473), + [anon_sym_public] = ACTIONS(2596), + [anon_sym_private] = ACTIONS(2596), + [anon_sym_protected] = ACTIONS(2596), + [anon_sym_using] = ACTIONS(3475), + [anon_sym_static_assert] = ACTIONS(3477), }, [613] = { - [sym_identifier] = ACTIONS(2482), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2484), - [anon_sym_AMP] = ACTIONS(2482), - [anon_sym_SEMI] = ACTIONS(2484), - [anon_sym_typedef] = ACTIONS(2482), - [anon_sym_extern] = ACTIONS(2482), - [anon_sym___attribute__] = ACTIONS(2482), - [anon_sym_COLON_COLON] = ACTIONS(2484), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2484), - [anon_sym___declspec] = ACTIONS(2482), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2482), - [anon_sym_static] = ACTIONS(2482), - [anon_sym_register] = ACTIONS(2482), - [anon_sym_inline] = ACTIONS(2482), - [anon_sym_thread_local] = ACTIONS(2482), - [anon_sym_const] = ACTIONS(2482), - [anon_sym_volatile] = ACTIONS(2482), - [anon_sym_restrict] = ACTIONS(2482), - [anon_sym__Atomic] = ACTIONS(2482), - [anon_sym_mutable] = ACTIONS(2482), - [anon_sym_constexpr] = ACTIONS(2482), - [anon_sym_constinit] = ACTIONS(2482), - [anon_sym_consteval] = ACTIONS(2482), - [anon_sym_signed] = ACTIONS(2482), - [anon_sym_unsigned] = ACTIONS(2482), - [anon_sym_long] = ACTIONS(2482), - [anon_sym_short] = ACTIONS(2482), - [sym_primitive_type] = ACTIONS(2482), - [anon_sym_enum] = ACTIONS(2482), - [anon_sym_class] = ACTIONS(2482), - [anon_sym_struct] = ACTIONS(2482), - [anon_sym_union] = ACTIONS(2482), - [anon_sym_if] = ACTIONS(2482), - [anon_sym_else] = ACTIONS(2920), - [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_return] = ACTIONS(2482), - [anon_sym_break] = ACTIONS(2482), - [anon_sym_continue] = ACTIONS(2482), - [anon_sym_goto] = ACTIONS(2482), - [anon_sym_not] = ACTIONS(2482), - [anon_sym_compl] = ACTIONS(2482), - [anon_sym_DASH_DASH] = ACTIONS(2484), - [anon_sym_PLUS_PLUS] = ACTIONS(2484), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2484), - [anon_sym_u_DQUOTE] = ACTIONS(2484), - [anon_sym_U_DQUOTE] = ACTIONS(2484), - [anon_sym_u8_DQUOTE] = ACTIONS(2484), - [anon_sym_DQUOTE] = ACTIONS(2484), - [sym_true] = ACTIONS(2482), - [sym_false] = ACTIONS(2482), - [sym_null] = ACTIONS(2482), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2482), - [anon_sym_decltype] = ACTIONS(2482), - [anon_sym_virtual] = ACTIONS(2482), - [anon_sym_explicit] = ACTIONS(2482), - [anon_sym_typename] = ACTIONS(2482), - [anon_sym_template] = ACTIONS(2482), - [anon_sym_operator] = ACTIONS(2482), - [anon_sym_try] = ACTIONS(2482), - [anon_sym_delete] = ACTIONS(2482), - [anon_sym_throw] = ACTIONS(2482), - [anon_sym_namespace] = ACTIONS(2482), - [anon_sym_using] = ACTIONS(2482), - [anon_sym_static_assert] = ACTIONS(2482), - [anon_sym_concept] = ACTIONS(2482), - [anon_sym_co_return] = ACTIONS(2482), - [anon_sym_co_yield] = ACTIONS(2482), - [anon_sym_R_DQUOTE] = ACTIONS(2484), - [anon_sym_LR_DQUOTE] = ACTIONS(2484), - [anon_sym_uR_DQUOTE] = ACTIONS(2484), - [anon_sym_UR_DQUOTE] = ACTIONS(2484), - [anon_sym_u8R_DQUOTE] = ACTIONS(2484), - [anon_sym_co_await] = ACTIONS(2482), - [anon_sym_new] = ACTIONS(2482), - [anon_sym_requires] = ACTIONS(2482), - [sym_this] = ACTIONS(2482), - [sym_nullptr] = ACTIONS(2482), + [sym_preproc_def] = STATE(712), + [sym_preproc_function_def] = STATE(712), + [sym_preproc_call] = STATE(712), + [sym_preproc_if_in_field_declaration_list] = STATE(712), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(712), + [sym_type_definition] = STATE(712), + [sym__declaration_modifiers] = STATE(3706), + [sym__declaration_specifiers] = STATE(4831), + [sym_attribute_specifier] = STATE(3706), + [sym_attribute_declaration] = STATE(3706), + [sym_ms_declspec_modifier] = STATE(3706), + [sym_ms_based_modifier] = STATE(7654), + [sym__declarator] = STATE(5881), + [sym_parenthesized_declarator] = STATE(5640), + [sym_attributed_declarator] = STATE(5640), + [sym_pointer_declarator] = STATE(5640), + [sym_function_declarator] = STATE(5531), + [sym_array_declarator] = STATE(5640), + [sym_storage_class_specifier] = STATE(3706), + [sym_type_qualifier] = STATE(3706), + [sym__type_specifier] = STATE(3845), + [sym_sized_type_specifier] = STATE(3918), + [sym_enum_specifier] = STATE(3918), + [sym_struct_specifier] = STATE(3918), + [sym_union_specifier] = STATE(3918), + [sym__field_declaration_list_item] = STATE(712), + [sym_field_declaration] = STATE(712), + [sym_placeholder_type_specifier] = STATE(3918), + [sym_decltype_auto] = STATE(3916), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3918), + [sym_virtual] = STATE(3706), + [sym_explicit_function_specifier] = STATE(2247), + [sym_dependent_type] = STATE(3918), + [sym_template_declaration] = STATE(712), + [sym_operator_cast] = STATE(5897), + [sym_inline_method_definition] = STATE(712), + [sym__constructor_specifiers] = STATE(2247), + [sym_operator_cast_definition] = STATE(712), + [sym_operator_cast_declaration] = STATE(712), + [sym_constructor_or_destructor_definition] = STATE(712), + [sym_constructor_or_destructor_declaration] = STATE(712), + [sym_friend_declaration] = STATE(712), + [sym_access_specifier] = STATE(7346), + [sym_reference_declarator] = STATE(5640), + [sym_structured_binding_declarator] = STATE(5640), + [sym_template_type] = STATE(3680), + [sym_template_function] = STATE(5640), + [sym_using_declaration] = STATE(712), + [sym_alias_declaration] = STATE(712), + [sym_static_assert_declaration] = STATE(712), + [sym_destructor_name] = STATE(5640), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5151), + [sym_qualified_identifier] = STATE(5640), + [sym_qualified_type_identifier] = STATE(3966), + [sym_qualified_operator_cast_identifier] = STATE(5897), + [sym_operator_name] = STATE(5640), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(712), + [aux_sym__declaration_specifiers_repeat1] = STATE(2509), + [aux_sym_sized_type_specifier_repeat1] = STATE(3981), + [aux_sym_operator_cast_definition_repeat1] = STATE(2247), + [sym_identifier] = ACTIONS(2544), + [aux_sym_preproc_def_token1] = ACTIONS(3479), + [aux_sym_preproc_if_token1] = ACTIONS(3481), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3483), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3483), + [sym_preproc_directive] = ACTIONS(3485), + [anon_sym_LPAREN2] = ACTIONS(2560), + [anon_sym_TILDE] = ACTIONS(2562), + [anon_sym_STAR] = ACTIONS(2564), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_typedef] = ACTIONS(3487), + [anon_sym_extern] = ACTIONS(53), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(2570), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1813), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(45), + [anon_sym_RBRACE] = ACTIONS(3501), + [anon_sym_LBRACK] = ACTIONS(2572), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(53), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(2574), + [anon_sym_unsigned] = ACTIONS(2574), + [anon_sym_long] = ACTIONS(2574), + [anon_sym_short] = ACTIONS(2574), + [sym_primitive_type] = ACTIONS(2576), + [anon_sym_enum] = ACTIONS(2578), + [anon_sym_class] = ACTIONS(2580), + [anon_sym_struct] = ACTIONS(2582), + [anon_sym_union] = ACTIONS(2584), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2586), + [anon_sym_decltype] = ACTIONS(2588), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_explicit] = ACTIONS(119), + [anon_sym_typename] = ACTIONS(2590), + [anon_sym_template] = ACTIONS(3491), + [anon_sym_operator] = ACTIONS(125), + [anon_sym_friend] = ACTIONS(3493), + [anon_sym_public] = ACTIONS(2596), + [anon_sym_private] = ACTIONS(2596), + [anon_sym_protected] = ACTIONS(2596), + [anon_sym_using] = ACTIONS(3495), + [anon_sym_static_assert] = ACTIONS(3497), }, [614] = { - [ts_builtin_sym_end] = ACTIONS(2616), - [sym_identifier] = ACTIONS(2614), - [aux_sym_preproc_include_token1] = ACTIONS(2614), - [aux_sym_preproc_def_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2614), - [sym_preproc_directive] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP_AMP] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2614), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym___based] = ACTIONS(2614), - [anon_sym___cdecl] = ACTIONS(2614), - [anon_sym___clrcall] = ACTIONS(2614), - [anon_sym___stdcall] = ACTIONS(2614), - [anon_sym___fastcall] = ACTIONS(2614), - [anon_sym___thiscall] = ACTIONS(2614), - [anon_sym___vectorcall] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_case] = ACTIONS(2614), - [anon_sym_default] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_explicit] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_operator] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_namespace] = ACTIONS(2614), - [anon_sym_using] = ACTIONS(2614), - [anon_sym_static_assert] = ACTIONS(2614), - [anon_sym_concept] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token2] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [aux_sym_preproc_else_token1] = ACTIONS(3048), + [aux_sym_preproc_elif_token1] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, [615] = { - [ts_builtin_sym_end] = ACTIONS(2616), - [sym_identifier] = ACTIONS(2614), - [aux_sym_preproc_include_token1] = ACTIONS(2614), - [aux_sym_preproc_def_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2614), - [sym_preproc_directive] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP_AMP] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2614), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym___based] = ACTIONS(2614), - [anon_sym___cdecl] = ACTIONS(2614), - [anon_sym___clrcall] = ACTIONS(2614), - [anon_sym___stdcall] = ACTIONS(2614), - [anon_sym___fastcall] = ACTIONS(2614), - [anon_sym___thiscall] = ACTIONS(2614), - [anon_sym___vectorcall] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_case] = ACTIONS(2614), - [anon_sym_default] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_explicit] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_operator] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_namespace] = ACTIONS(2614), - [anon_sym_using] = ACTIONS(2614), - [anon_sym_static_assert] = ACTIONS(2614), - [anon_sym_concept] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), + [sym_identifier] = ACTIONS(3109), + [aux_sym_preproc_include_token1] = ACTIONS(3109), + [aux_sym_preproc_def_token1] = ACTIONS(3109), + [aux_sym_preproc_if_token1] = ACTIONS(3109), + [aux_sym_preproc_if_token2] = ACTIONS(3109), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3109), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3109), + [aux_sym_preproc_else_token1] = ACTIONS(3109), + [aux_sym_preproc_elif_token1] = ACTIONS(3109), + [sym_preproc_directive] = ACTIONS(3109), + [anon_sym_LPAREN2] = ACTIONS(3111), + [anon_sym_BANG] = ACTIONS(3111), + [anon_sym_TILDE] = ACTIONS(3111), + [anon_sym_DASH] = ACTIONS(3109), + [anon_sym_PLUS] = ACTIONS(3109), + [anon_sym_STAR] = ACTIONS(3111), + [anon_sym_AMP_AMP] = ACTIONS(3111), + [anon_sym_AMP] = ACTIONS(3109), + [anon_sym_SEMI] = ACTIONS(3111), + [anon_sym_typedef] = ACTIONS(3109), + [anon_sym_extern] = ACTIONS(3109), + [anon_sym___attribute__] = ACTIONS(3109), + [anon_sym_COLON_COLON] = ACTIONS(3111), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3111), + [anon_sym___declspec] = ACTIONS(3109), + [anon_sym___based] = ACTIONS(3109), + [anon_sym___cdecl] = ACTIONS(3109), + [anon_sym___clrcall] = ACTIONS(3109), + [anon_sym___stdcall] = ACTIONS(3109), + [anon_sym___fastcall] = ACTIONS(3109), + [anon_sym___thiscall] = ACTIONS(3109), + [anon_sym___vectorcall] = ACTIONS(3109), + [anon_sym_LBRACE] = ACTIONS(3111), + [anon_sym_LBRACK] = ACTIONS(3109), + [anon_sym_static] = ACTIONS(3109), + [anon_sym_register] = ACTIONS(3109), + [anon_sym_inline] = ACTIONS(3109), + [anon_sym_thread_local] = ACTIONS(3109), + [anon_sym_const] = ACTIONS(3109), + [anon_sym_constexpr] = ACTIONS(3109), + [anon_sym_volatile] = ACTIONS(3109), + [anon_sym_restrict] = ACTIONS(3109), + [anon_sym___restrict__] = ACTIONS(3109), + [anon_sym__Atomic] = ACTIONS(3109), + [anon_sym__Noreturn] = ACTIONS(3109), + [anon_sym_noreturn] = ACTIONS(3109), + [anon_sym_mutable] = ACTIONS(3109), + [anon_sym_constinit] = ACTIONS(3109), + [anon_sym_consteval] = ACTIONS(3109), + [anon_sym_signed] = ACTIONS(3109), + [anon_sym_unsigned] = ACTIONS(3109), + [anon_sym_long] = ACTIONS(3109), + [anon_sym_short] = ACTIONS(3109), + [sym_primitive_type] = ACTIONS(3109), + [anon_sym_enum] = ACTIONS(3109), + [anon_sym_class] = ACTIONS(3109), + [anon_sym_struct] = ACTIONS(3109), + [anon_sym_union] = ACTIONS(3109), + [anon_sym_if] = ACTIONS(3109), + [anon_sym_else] = ACTIONS(3109), + [anon_sym_switch] = ACTIONS(3109), + [anon_sym_case] = ACTIONS(3109), + [anon_sym_default] = ACTIONS(3109), + [anon_sym_while] = ACTIONS(3109), + [anon_sym_do] = ACTIONS(3109), + [anon_sym_for] = ACTIONS(3109), + [anon_sym_return] = ACTIONS(3109), + [anon_sym_break] = ACTIONS(3109), + [anon_sym_continue] = ACTIONS(3109), + [anon_sym_goto] = ACTIONS(3109), + [anon_sym_not] = ACTIONS(3109), + [anon_sym_compl] = ACTIONS(3109), + [anon_sym_DASH_DASH] = ACTIONS(3111), + [anon_sym_PLUS_PLUS] = ACTIONS(3111), + [anon_sym_sizeof] = ACTIONS(3109), + [anon_sym_offsetof] = ACTIONS(3109), + [anon_sym__Generic] = ACTIONS(3109), + [anon_sym_asm] = ACTIONS(3109), + [anon_sym___asm__] = ACTIONS(3109), + [sym_number_literal] = ACTIONS(3111), + [anon_sym_L_SQUOTE] = ACTIONS(3111), + [anon_sym_u_SQUOTE] = ACTIONS(3111), + [anon_sym_U_SQUOTE] = ACTIONS(3111), + [anon_sym_u8_SQUOTE] = ACTIONS(3111), + [anon_sym_SQUOTE] = ACTIONS(3111), + [anon_sym_L_DQUOTE] = ACTIONS(3111), + [anon_sym_u_DQUOTE] = ACTIONS(3111), + [anon_sym_U_DQUOTE] = ACTIONS(3111), + [anon_sym_u8_DQUOTE] = ACTIONS(3111), + [anon_sym_DQUOTE] = ACTIONS(3111), + [sym_true] = ACTIONS(3109), + [sym_false] = ACTIONS(3109), + [anon_sym_NULL] = ACTIONS(3109), + [anon_sym_nullptr] = ACTIONS(3109), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3109), + [anon_sym_decltype] = ACTIONS(3109), + [anon_sym_virtual] = ACTIONS(3109), + [anon_sym_explicit] = ACTIONS(3109), + [anon_sym_typename] = ACTIONS(3109), + [anon_sym_template] = ACTIONS(3109), + [anon_sym_operator] = ACTIONS(3109), + [anon_sym_try] = ACTIONS(3109), + [anon_sym_delete] = ACTIONS(3109), + [anon_sym_throw] = ACTIONS(3109), + [anon_sym_namespace] = ACTIONS(3109), + [anon_sym_using] = ACTIONS(3109), + [anon_sym_static_assert] = ACTIONS(3109), + [anon_sym_concept] = ACTIONS(3109), + [anon_sym_co_return] = ACTIONS(3109), + [anon_sym_co_yield] = ACTIONS(3109), + [anon_sym_R_DQUOTE] = ACTIONS(3111), + [anon_sym_LR_DQUOTE] = ACTIONS(3111), + [anon_sym_uR_DQUOTE] = ACTIONS(3111), + [anon_sym_UR_DQUOTE] = ACTIONS(3111), + [anon_sym_u8R_DQUOTE] = ACTIONS(3111), + [anon_sym_co_await] = ACTIONS(3109), + [anon_sym_new] = ACTIONS(3109), + [anon_sym_requires] = ACTIONS(3109), + [sym_this] = ACTIONS(3109), }, [616] = { - [ts_builtin_sym_end] = ACTIONS(2616), - [sym_identifier] = ACTIONS(2614), - [aux_sym_preproc_include_token1] = ACTIONS(2614), - [aux_sym_preproc_def_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2614), - [sym_preproc_directive] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP_AMP] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2614), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym___based] = ACTIONS(2614), - [anon_sym___cdecl] = ACTIONS(2614), - [anon_sym___clrcall] = ACTIONS(2614), - [anon_sym___stdcall] = ACTIONS(2614), - [anon_sym___fastcall] = ACTIONS(2614), - [anon_sym___thiscall] = ACTIONS(2614), - [anon_sym___vectorcall] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_case] = ACTIONS(2614), - [anon_sym_default] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_explicit] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_operator] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_namespace] = ACTIONS(2614), - [anon_sym_using] = ACTIONS(2614), - [anon_sym_static_assert] = ACTIONS(2614), - [anon_sym_concept] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), + [sym_identifier] = ACTIONS(2908), + [aux_sym_preproc_include_token1] = ACTIONS(2908), + [aux_sym_preproc_def_token1] = ACTIONS(2908), + [aux_sym_preproc_if_token1] = ACTIONS(2908), + [aux_sym_preproc_if_token2] = ACTIONS(2908), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2908), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2908), + [aux_sym_preproc_else_token1] = ACTIONS(2908), + [aux_sym_preproc_elif_token1] = ACTIONS(2908), + [sym_preproc_directive] = ACTIONS(2908), + [anon_sym_LPAREN2] = ACTIONS(2910), + [anon_sym_BANG] = ACTIONS(2910), + [anon_sym_TILDE] = ACTIONS(2910), + [anon_sym_DASH] = ACTIONS(2908), + [anon_sym_PLUS] = ACTIONS(2908), + [anon_sym_STAR] = ACTIONS(2910), + [anon_sym_AMP_AMP] = ACTIONS(2910), + [anon_sym_AMP] = ACTIONS(2908), + [anon_sym_SEMI] = ACTIONS(2910), + [anon_sym_typedef] = ACTIONS(2908), + [anon_sym_extern] = ACTIONS(2908), + [anon_sym___attribute__] = ACTIONS(2908), + [anon_sym_COLON_COLON] = ACTIONS(2910), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2910), + [anon_sym___declspec] = ACTIONS(2908), + [anon_sym___based] = ACTIONS(2908), + [anon_sym___cdecl] = ACTIONS(2908), + [anon_sym___clrcall] = ACTIONS(2908), + [anon_sym___stdcall] = ACTIONS(2908), + [anon_sym___fastcall] = ACTIONS(2908), + [anon_sym___thiscall] = ACTIONS(2908), + [anon_sym___vectorcall] = ACTIONS(2908), + [anon_sym_LBRACE] = ACTIONS(2910), + [anon_sym_LBRACK] = ACTIONS(2908), + [anon_sym_static] = ACTIONS(2908), + [anon_sym_register] = ACTIONS(2908), + [anon_sym_inline] = ACTIONS(2908), + [anon_sym_thread_local] = ACTIONS(2908), + [anon_sym_const] = ACTIONS(2908), + [anon_sym_constexpr] = ACTIONS(2908), + [anon_sym_volatile] = ACTIONS(2908), + [anon_sym_restrict] = ACTIONS(2908), + [anon_sym___restrict__] = ACTIONS(2908), + [anon_sym__Atomic] = ACTIONS(2908), + [anon_sym__Noreturn] = ACTIONS(2908), + [anon_sym_noreturn] = ACTIONS(2908), + [anon_sym_mutable] = ACTIONS(2908), + [anon_sym_constinit] = ACTIONS(2908), + [anon_sym_consteval] = ACTIONS(2908), + [anon_sym_signed] = ACTIONS(2908), + [anon_sym_unsigned] = ACTIONS(2908), + [anon_sym_long] = ACTIONS(2908), + [anon_sym_short] = ACTIONS(2908), + [sym_primitive_type] = ACTIONS(2908), + [anon_sym_enum] = ACTIONS(2908), + [anon_sym_class] = ACTIONS(2908), + [anon_sym_struct] = ACTIONS(2908), + [anon_sym_union] = ACTIONS(2908), + [anon_sym_if] = ACTIONS(2908), + [anon_sym_else] = ACTIONS(2908), + [anon_sym_switch] = ACTIONS(2908), + [anon_sym_case] = ACTIONS(2908), + [anon_sym_default] = ACTIONS(2908), + [anon_sym_while] = ACTIONS(2908), + [anon_sym_do] = ACTIONS(2908), + [anon_sym_for] = ACTIONS(2908), + [anon_sym_return] = ACTIONS(2908), + [anon_sym_break] = ACTIONS(2908), + [anon_sym_continue] = ACTIONS(2908), + [anon_sym_goto] = ACTIONS(2908), + [anon_sym_not] = ACTIONS(2908), + [anon_sym_compl] = ACTIONS(2908), + [anon_sym_DASH_DASH] = ACTIONS(2910), + [anon_sym_PLUS_PLUS] = ACTIONS(2910), + [anon_sym_sizeof] = ACTIONS(2908), + [anon_sym_offsetof] = ACTIONS(2908), + [anon_sym__Generic] = ACTIONS(2908), + [anon_sym_asm] = ACTIONS(2908), + [anon_sym___asm__] = ACTIONS(2908), + [sym_number_literal] = ACTIONS(2910), + [anon_sym_L_SQUOTE] = ACTIONS(2910), + [anon_sym_u_SQUOTE] = ACTIONS(2910), + [anon_sym_U_SQUOTE] = ACTIONS(2910), + [anon_sym_u8_SQUOTE] = ACTIONS(2910), + [anon_sym_SQUOTE] = ACTIONS(2910), + [anon_sym_L_DQUOTE] = ACTIONS(2910), + [anon_sym_u_DQUOTE] = ACTIONS(2910), + [anon_sym_U_DQUOTE] = ACTIONS(2910), + [anon_sym_u8_DQUOTE] = ACTIONS(2910), + [anon_sym_DQUOTE] = ACTIONS(2910), + [sym_true] = ACTIONS(2908), + [sym_false] = ACTIONS(2908), + [anon_sym_NULL] = ACTIONS(2908), + [anon_sym_nullptr] = ACTIONS(2908), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2908), + [anon_sym_decltype] = ACTIONS(2908), + [anon_sym_virtual] = ACTIONS(2908), + [anon_sym_explicit] = ACTIONS(2908), + [anon_sym_typename] = ACTIONS(2908), + [anon_sym_template] = ACTIONS(2908), + [anon_sym_operator] = ACTIONS(2908), + [anon_sym_try] = ACTIONS(2908), + [anon_sym_delete] = ACTIONS(2908), + [anon_sym_throw] = ACTIONS(2908), + [anon_sym_namespace] = ACTIONS(2908), + [anon_sym_using] = ACTIONS(2908), + [anon_sym_static_assert] = ACTIONS(2908), + [anon_sym_concept] = ACTIONS(2908), + [anon_sym_co_return] = ACTIONS(2908), + [anon_sym_co_yield] = ACTIONS(2908), + [anon_sym_R_DQUOTE] = ACTIONS(2910), + [anon_sym_LR_DQUOTE] = ACTIONS(2910), + [anon_sym_uR_DQUOTE] = ACTIONS(2910), + [anon_sym_UR_DQUOTE] = ACTIONS(2910), + [anon_sym_u8R_DQUOTE] = ACTIONS(2910), + [anon_sym_co_await] = ACTIONS(2908), + [anon_sym_new] = ACTIONS(2908), + [anon_sym_requires] = ACTIONS(2908), + [sym_this] = ACTIONS(2908), }, [617] = { - [ts_builtin_sym_end] = ACTIONS(2616), - [sym_identifier] = ACTIONS(2614), - [aux_sym_preproc_include_token1] = ACTIONS(2614), - [aux_sym_preproc_def_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2614), - [sym_preproc_directive] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP_AMP] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2614), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym___based] = ACTIONS(2614), - [anon_sym___cdecl] = ACTIONS(2614), - [anon_sym___clrcall] = ACTIONS(2614), - [anon_sym___stdcall] = ACTIONS(2614), - [anon_sym___fastcall] = ACTIONS(2614), - [anon_sym___thiscall] = ACTIONS(2614), - [anon_sym___vectorcall] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_case] = ACTIONS(2614), - [anon_sym_default] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_explicit] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_operator] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_namespace] = ACTIONS(2614), - [anon_sym_using] = ACTIONS(2614), - [anon_sym_static_assert] = ACTIONS(2614), - [anon_sym_concept] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), + [sym_preproc_def] = STATE(712), + [sym_preproc_function_def] = STATE(712), + [sym_preproc_call] = STATE(712), + [sym_preproc_if_in_field_declaration_list] = STATE(712), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(712), + [sym_type_definition] = STATE(712), + [sym__declaration_modifiers] = STATE(3706), + [sym__declaration_specifiers] = STATE(4831), + [sym_attribute_specifier] = STATE(3706), + [sym_attribute_declaration] = STATE(3706), + [sym_ms_declspec_modifier] = STATE(3706), + [sym_ms_based_modifier] = STATE(7654), + [sym__declarator] = STATE(5881), + [sym_parenthesized_declarator] = STATE(5640), + [sym_attributed_declarator] = STATE(5640), + [sym_pointer_declarator] = STATE(5640), + [sym_function_declarator] = STATE(5531), + [sym_array_declarator] = STATE(5640), + [sym_storage_class_specifier] = STATE(3706), + [sym_type_qualifier] = STATE(3706), + [sym__type_specifier] = STATE(3845), + [sym_sized_type_specifier] = STATE(3918), + [sym_enum_specifier] = STATE(3918), + [sym_struct_specifier] = STATE(3918), + [sym_union_specifier] = STATE(3918), + [sym__field_declaration_list_item] = STATE(712), + [sym_field_declaration] = STATE(712), + [sym_placeholder_type_specifier] = STATE(3918), + [sym_decltype_auto] = STATE(3916), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3918), + [sym_virtual] = STATE(3706), + [sym_explicit_function_specifier] = STATE(2247), + [sym_dependent_type] = STATE(3918), + [sym_template_declaration] = STATE(712), + [sym_operator_cast] = STATE(5897), + [sym_inline_method_definition] = STATE(712), + [sym__constructor_specifiers] = STATE(2247), + [sym_operator_cast_definition] = STATE(712), + [sym_operator_cast_declaration] = STATE(712), + [sym_constructor_or_destructor_definition] = STATE(712), + [sym_constructor_or_destructor_declaration] = STATE(712), + [sym_friend_declaration] = STATE(712), + [sym_access_specifier] = STATE(7346), + [sym_reference_declarator] = STATE(5640), + [sym_structured_binding_declarator] = STATE(5640), + [sym_template_type] = STATE(3680), + [sym_template_function] = STATE(5640), + [sym_using_declaration] = STATE(712), + [sym_alias_declaration] = STATE(712), + [sym_static_assert_declaration] = STATE(712), + [sym_destructor_name] = STATE(5640), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5151), + [sym_qualified_identifier] = STATE(5640), + [sym_qualified_type_identifier] = STATE(3966), + [sym_qualified_operator_cast_identifier] = STATE(5897), + [sym_operator_name] = STATE(5640), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(712), + [aux_sym__declaration_specifiers_repeat1] = STATE(2509), + [aux_sym_sized_type_specifier_repeat1] = STATE(3981), + [aux_sym_operator_cast_definition_repeat1] = STATE(2247), + [sym_identifier] = ACTIONS(2544), + [aux_sym_preproc_def_token1] = ACTIONS(3479), + [aux_sym_preproc_if_token1] = ACTIONS(3481), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3483), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3483), + [sym_preproc_directive] = ACTIONS(3485), + [anon_sym_LPAREN2] = ACTIONS(2560), + [anon_sym_TILDE] = ACTIONS(2562), + [anon_sym_STAR] = ACTIONS(2564), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_typedef] = ACTIONS(3487), + [anon_sym_extern] = ACTIONS(53), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(2570), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1813), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(45), + [anon_sym_RBRACE] = ACTIONS(3503), + [anon_sym_LBRACK] = ACTIONS(2572), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(53), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(2574), + [anon_sym_unsigned] = ACTIONS(2574), + [anon_sym_long] = ACTIONS(2574), + [anon_sym_short] = ACTIONS(2574), + [sym_primitive_type] = ACTIONS(2576), + [anon_sym_enum] = ACTIONS(2578), + [anon_sym_class] = ACTIONS(2580), + [anon_sym_struct] = ACTIONS(2582), + [anon_sym_union] = ACTIONS(2584), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2586), + [anon_sym_decltype] = ACTIONS(2588), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_explicit] = ACTIONS(119), + [anon_sym_typename] = ACTIONS(2590), + [anon_sym_template] = ACTIONS(3491), + [anon_sym_operator] = ACTIONS(125), + [anon_sym_friend] = ACTIONS(3493), + [anon_sym_public] = ACTIONS(2596), + [anon_sym_private] = ACTIONS(2596), + [anon_sym_protected] = ACTIONS(2596), + [anon_sym_using] = ACTIONS(3495), + [anon_sym_static_assert] = ACTIONS(3497), }, [618] = { - [ts_builtin_sym_end] = ACTIONS(2616), - [sym_identifier] = ACTIONS(2614), - [aux_sym_preproc_include_token1] = ACTIONS(2614), - [aux_sym_preproc_def_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2614), - [sym_preproc_directive] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP_AMP] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2614), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym___based] = ACTIONS(2614), - [anon_sym___cdecl] = ACTIONS(2614), - [anon_sym___clrcall] = ACTIONS(2614), - [anon_sym___stdcall] = ACTIONS(2614), - [anon_sym___fastcall] = ACTIONS(2614), - [anon_sym___thiscall] = ACTIONS(2614), - [anon_sym___vectorcall] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_case] = ACTIONS(2614), - [anon_sym_default] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_explicit] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_operator] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_namespace] = ACTIONS(2614), - [anon_sym_using] = ACTIONS(2614), - [anon_sym_static_assert] = ACTIONS(2614), - [anon_sym_concept] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), + [sym_identifier] = ACTIONS(3113), + [aux_sym_preproc_include_token1] = ACTIONS(3113), + [aux_sym_preproc_def_token1] = ACTIONS(3113), + [aux_sym_preproc_if_token1] = ACTIONS(3113), + [aux_sym_preproc_if_token2] = ACTIONS(3113), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3113), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3113), + [aux_sym_preproc_else_token1] = ACTIONS(3113), + [aux_sym_preproc_elif_token1] = ACTIONS(3113), + [sym_preproc_directive] = ACTIONS(3113), + [anon_sym_LPAREN2] = ACTIONS(3115), + [anon_sym_BANG] = ACTIONS(3115), + [anon_sym_TILDE] = ACTIONS(3115), + [anon_sym_DASH] = ACTIONS(3113), + [anon_sym_PLUS] = ACTIONS(3113), + [anon_sym_STAR] = ACTIONS(3115), + [anon_sym_AMP_AMP] = ACTIONS(3115), + [anon_sym_AMP] = ACTIONS(3113), + [anon_sym_SEMI] = ACTIONS(3115), + [anon_sym_typedef] = ACTIONS(3113), + [anon_sym_extern] = ACTIONS(3113), + [anon_sym___attribute__] = ACTIONS(3113), + [anon_sym_COLON_COLON] = ACTIONS(3115), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3115), + [anon_sym___declspec] = ACTIONS(3113), + [anon_sym___based] = ACTIONS(3113), + [anon_sym___cdecl] = ACTIONS(3113), + [anon_sym___clrcall] = ACTIONS(3113), + [anon_sym___stdcall] = ACTIONS(3113), + [anon_sym___fastcall] = ACTIONS(3113), + [anon_sym___thiscall] = ACTIONS(3113), + [anon_sym___vectorcall] = ACTIONS(3113), + [anon_sym_LBRACE] = ACTIONS(3115), + [anon_sym_LBRACK] = ACTIONS(3113), + [anon_sym_static] = ACTIONS(3113), + [anon_sym_register] = ACTIONS(3113), + [anon_sym_inline] = ACTIONS(3113), + [anon_sym_thread_local] = ACTIONS(3113), + [anon_sym_const] = ACTIONS(3113), + [anon_sym_constexpr] = ACTIONS(3113), + [anon_sym_volatile] = ACTIONS(3113), + [anon_sym_restrict] = ACTIONS(3113), + [anon_sym___restrict__] = ACTIONS(3113), + [anon_sym__Atomic] = ACTIONS(3113), + [anon_sym__Noreturn] = ACTIONS(3113), + [anon_sym_noreturn] = ACTIONS(3113), + [anon_sym_mutable] = ACTIONS(3113), + [anon_sym_constinit] = ACTIONS(3113), + [anon_sym_consteval] = ACTIONS(3113), + [anon_sym_signed] = ACTIONS(3113), + [anon_sym_unsigned] = ACTIONS(3113), + [anon_sym_long] = ACTIONS(3113), + [anon_sym_short] = ACTIONS(3113), + [sym_primitive_type] = ACTIONS(3113), + [anon_sym_enum] = ACTIONS(3113), + [anon_sym_class] = ACTIONS(3113), + [anon_sym_struct] = ACTIONS(3113), + [anon_sym_union] = ACTIONS(3113), + [anon_sym_if] = ACTIONS(3113), + [anon_sym_else] = ACTIONS(3113), + [anon_sym_switch] = ACTIONS(3113), + [anon_sym_case] = ACTIONS(3113), + [anon_sym_default] = ACTIONS(3113), + [anon_sym_while] = ACTIONS(3113), + [anon_sym_do] = ACTIONS(3113), + [anon_sym_for] = ACTIONS(3113), + [anon_sym_return] = ACTIONS(3113), + [anon_sym_break] = ACTIONS(3113), + [anon_sym_continue] = ACTIONS(3113), + [anon_sym_goto] = ACTIONS(3113), + [anon_sym_not] = ACTIONS(3113), + [anon_sym_compl] = ACTIONS(3113), + [anon_sym_DASH_DASH] = ACTIONS(3115), + [anon_sym_PLUS_PLUS] = ACTIONS(3115), + [anon_sym_sizeof] = ACTIONS(3113), + [anon_sym_offsetof] = ACTIONS(3113), + [anon_sym__Generic] = ACTIONS(3113), + [anon_sym_asm] = ACTIONS(3113), + [anon_sym___asm__] = ACTIONS(3113), + [sym_number_literal] = ACTIONS(3115), + [anon_sym_L_SQUOTE] = ACTIONS(3115), + [anon_sym_u_SQUOTE] = ACTIONS(3115), + [anon_sym_U_SQUOTE] = ACTIONS(3115), + [anon_sym_u8_SQUOTE] = ACTIONS(3115), + [anon_sym_SQUOTE] = ACTIONS(3115), + [anon_sym_L_DQUOTE] = ACTIONS(3115), + [anon_sym_u_DQUOTE] = ACTIONS(3115), + [anon_sym_U_DQUOTE] = ACTIONS(3115), + [anon_sym_u8_DQUOTE] = ACTIONS(3115), + [anon_sym_DQUOTE] = ACTIONS(3115), + [sym_true] = ACTIONS(3113), + [sym_false] = ACTIONS(3113), + [anon_sym_NULL] = ACTIONS(3113), + [anon_sym_nullptr] = ACTIONS(3113), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3113), + [anon_sym_decltype] = ACTIONS(3113), + [anon_sym_virtual] = ACTIONS(3113), + [anon_sym_explicit] = ACTIONS(3113), + [anon_sym_typename] = ACTIONS(3113), + [anon_sym_template] = ACTIONS(3113), + [anon_sym_operator] = ACTIONS(3113), + [anon_sym_try] = ACTIONS(3113), + [anon_sym_delete] = ACTIONS(3113), + [anon_sym_throw] = ACTIONS(3113), + [anon_sym_namespace] = ACTIONS(3113), + [anon_sym_using] = ACTIONS(3113), + [anon_sym_static_assert] = ACTIONS(3113), + [anon_sym_concept] = ACTIONS(3113), + [anon_sym_co_return] = ACTIONS(3113), + [anon_sym_co_yield] = ACTIONS(3113), + [anon_sym_R_DQUOTE] = ACTIONS(3115), + [anon_sym_LR_DQUOTE] = ACTIONS(3115), + [anon_sym_uR_DQUOTE] = ACTIONS(3115), + [anon_sym_UR_DQUOTE] = ACTIONS(3115), + [anon_sym_u8R_DQUOTE] = ACTIONS(3115), + [anon_sym_co_await] = ACTIONS(3113), + [anon_sym_new] = ACTIONS(3113), + [anon_sym_requires] = ACTIONS(3113), + [sym_this] = ACTIONS(3113), }, [619] = { - [ts_builtin_sym_end] = ACTIONS(2616), - [sym_identifier] = ACTIONS(2614), - [aux_sym_preproc_include_token1] = ACTIONS(2614), - [aux_sym_preproc_def_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2614), - [sym_preproc_directive] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP_AMP] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2614), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym___based] = ACTIONS(2614), - [anon_sym___cdecl] = ACTIONS(2614), - [anon_sym___clrcall] = ACTIONS(2614), - [anon_sym___stdcall] = ACTIONS(2614), - [anon_sym___fastcall] = ACTIONS(2614), - [anon_sym___thiscall] = ACTIONS(2614), - [anon_sym___vectorcall] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_case] = ACTIONS(2614), - [anon_sym_default] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_explicit] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_operator] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_namespace] = ACTIONS(2614), - [anon_sym_using] = ACTIONS(2614), - [anon_sym_static_assert] = ACTIONS(2614), - [anon_sym_concept] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), + [sym_catch_clause] = STATE(583), + [aux_sym_constructor_try_statement_repeat1] = STATE(583), + [sym_identifier] = ACTIONS(2857), + [aux_sym_preproc_include_token1] = ACTIONS(2857), + [aux_sym_preproc_def_token1] = ACTIONS(2857), + [aux_sym_preproc_if_token1] = ACTIONS(2857), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2857), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2857), + [sym_preproc_directive] = ACTIONS(2857), + [anon_sym_LPAREN2] = ACTIONS(2859), + [anon_sym_BANG] = ACTIONS(2859), + [anon_sym_TILDE] = ACTIONS(2859), + [anon_sym_DASH] = ACTIONS(2857), + [anon_sym_PLUS] = ACTIONS(2857), + [anon_sym_STAR] = ACTIONS(2859), + [anon_sym_AMP_AMP] = ACTIONS(2859), + [anon_sym_AMP] = ACTIONS(2857), + [anon_sym_SEMI] = ACTIONS(2859), + [anon_sym_typedef] = ACTIONS(2857), + [anon_sym_extern] = ACTIONS(2857), + [anon_sym___attribute__] = ACTIONS(2857), + [anon_sym_COLON_COLON] = ACTIONS(2859), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2859), + [anon_sym___declspec] = ACTIONS(2857), + [anon_sym___based] = ACTIONS(2857), + [anon_sym___cdecl] = ACTIONS(2857), + [anon_sym___clrcall] = ACTIONS(2857), + [anon_sym___stdcall] = ACTIONS(2857), + [anon_sym___fastcall] = ACTIONS(2857), + [anon_sym___thiscall] = ACTIONS(2857), + [anon_sym___vectorcall] = ACTIONS(2857), + [anon_sym_LBRACE] = ACTIONS(2859), + [anon_sym_RBRACE] = ACTIONS(2859), + [anon_sym_LBRACK] = ACTIONS(2857), + [anon_sym_static] = ACTIONS(2857), + [anon_sym_register] = ACTIONS(2857), + [anon_sym_inline] = ACTIONS(2857), + [anon_sym_thread_local] = ACTIONS(2857), + [anon_sym_const] = ACTIONS(2857), + [anon_sym_constexpr] = ACTIONS(2857), + [anon_sym_volatile] = ACTIONS(2857), + [anon_sym_restrict] = ACTIONS(2857), + [anon_sym___restrict__] = ACTIONS(2857), + [anon_sym__Atomic] = ACTIONS(2857), + [anon_sym__Noreturn] = ACTIONS(2857), + [anon_sym_noreturn] = ACTIONS(2857), + [anon_sym_mutable] = ACTIONS(2857), + [anon_sym_constinit] = ACTIONS(2857), + [anon_sym_consteval] = ACTIONS(2857), + [anon_sym_signed] = ACTIONS(2857), + [anon_sym_unsigned] = ACTIONS(2857), + [anon_sym_long] = ACTIONS(2857), + [anon_sym_short] = ACTIONS(2857), + [sym_primitive_type] = ACTIONS(2857), + [anon_sym_enum] = ACTIONS(2857), + [anon_sym_class] = ACTIONS(2857), + [anon_sym_struct] = ACTIONS(2857), + [anon_sym_union] = ACTIONS(2857), + [anon_sym_if] = ACTIONS(2857), + [anon_sym_switch] = ACTIONS(2857), + [anon_sym_case] = ACTIONS(2857), + [anon_sym_default] = ACTIONS(2857), + [anon_sym_while] = ACTIONS(2857), + [anon_sym_do] = ACTIONS(2857), + [anon_sym_for] = ACTIONS(2857), + [anon_sym_return] = ACTIONS(2857), + [anon_sym_break] = ACTIONS(2857), + [anon_sym_continue] = ACTIONS(2857), + [anon_sym_goto] = ACTIONS(2857), + [anon_sym_not] = ACTIONS(2857), + [anon_sym_compl] = ACTIONS(2857), + [anon_sym_DASH_DASH] = ACTIONS(2859), + [anon_sym_PLUS_PLUS] = ACTIONS(2859), + [anon_sym_sizeof] = ACTIONS(2857), + [anon_sym_offsetof] = ACTIONS(2857), + [anon_sym__Generic] = ACTIONS(2857), + [anon_sym_asm] = ACTIONS(2857), + [anon_sym___asm__] = ACTIONS(2857), + [sym_number_literal] = ACTIONS(2859), + [anon_sym_L_SQUOTE] = ACTIONS(2859), + [anon_sym_u_SQUOTE] = ACTIONS(2859), + [anon_sym_U_SQUOTE] = ACTIONS(2859), + [anon_sym_u8_SQUOTE] = ACTIONS(2859), + [anon_sym_SQUOTE] = ACTIONS(2859), + [anon_sym_L_DQUOTE] = ACTIONS(2859), + [anon_sym_u_DQUOTE] = ACTIONS(2859), + [anon_sym_U_DQUOTE] = ACTIONS(2859), + [anon_sym_u8_DQUOTE] = ACTIONS(2859), + [anon_sym_DQUOTE] = ACTIONS(2859), + [sym_true] = ACTIONS(2857), + [sym_false] = ACTIONS(2857), + [anon_sym_NULL] = ACTIONS(2857), + [anon_sym_nullptr] = ACTIONS(2857), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2857), + [anon_sym_decltype] = ACTIONS(2857), + [anon_sym_virtual] = ACTIONS(2857), + [anon_sym_explicit] = ACTIONS(2857), + [anon_sym_typename] = ACTIONS(2857), + [anon_sym_template] = ACTIONS(2857), + [anon_sym_operator] = ACTIONS(2857), + [anon_sym_try] = ACTIONS(2857), + [anon_sym_delete] = ACTIONS(2857), + [anon_sym_throw] = ACTIONS(2857), + [anon_sym_namespace] = ACTIONS(2857), + [anon_sym_using] = ACTIONS(2857), + [anon_sym_static_assert] = ACTIONS(2857), + [anon_sym_concept] = ACTIONS(2857), + [anon_sym_co_return] = ACTIONS(2857), + [anon_sym_co_yield] = ACTIONS(2857), + [anon_sym_catch] = ACTIONS(3340), + [anon_sym_R_DQUOTE] = ACTIONS(2859), + [anon_sym_LR_DQUOTE] = ACTIONS(2859), + [anon_sym_uR_DQUOTE] = ACTIONS(2859), + [anon_sym_UR_DQUOTE] = ACTIONS(2859), + [anon_sym_u8R_DQUOTE] = ACTIONS(2859), + [anon_sym_co_await] = ACTIONS(2857), + [anon_sym_new] = ACTIONS(2857), + [anon_sym_requires] = ACTIONS(2857), + [sym_this] = ACTIONS(2857), }, [620] = { - [ts_builtin_sym_end] = ACTIONS(2616), - [sym_identifier] = ACTIONS(2614), - [aux_sym_preproc_include_token1] = ACTIONS(2614), - [aux_sym_preproc_def_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2614), - [sym_preproc_directive] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP_AMP] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2614), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym___based] = ACTIONS(2614), - [anon_sym___cdecl] = ACTIONS(2614), - [anon_sym___clrcall] = ACTIONS(2614), - [anon_sym___stdcall] = ACTIONS(2614), - [anon_sym___fastcall] = ACTIONS(2614), - [anon_sym___thiscall] = ACTIONS(2614), - [anon_sym___vectorcall] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_case] = ACTIONS(2614), - [anon_sym_default] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_explicit] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_operator] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_namespace] = ACTIONS(2614), - [anon_sym_using] = ACTIONS(2614), - [anon_sym_static_assert] = ACTIONS(2614), - [anon_sym_concept] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token2] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [aux_sym_preproc_else_token1] = ACTIONS(3028), + [aux_sym_preproc_elif_token1] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, [621] = { - [ts_builtin_sym_end] = ACTIONS(2616), - [sym_identifier] = ACTIONS(2614), - [aux_sym_preproc_include_token1] = ACTIONS(2614), - [aux_sym_preproc_def_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2614), - [sym_preproc_directive] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP_AMP] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2614), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym___based] = ACTIONS(2614), - [anon_sym___cdecl] = ACTIONS(2614), - [anon_sym___clrcall] = ACTIONS(2614), - [anon_sym___stdcall] = ACTIONS(2614), - [anon_sym___fastcall] = ACTIONS(2614), - [anon_sym___thiscall] = ACTIONS(2614), - [anon_sym___vectorcall] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_case] = ACTIONS(2614), - [anon_sym_default] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_explicit] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_operator] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_namespace] = ACTIONS(2614), - [anon_sym_using] = ACTIONS(2614), - [anon_sym_static_assert] = ACTIONS(2614), - [anon_sym_concept] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token2] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [aux_sym_preproc_else_token1] = ACTIONS(3028), + [aux_sym_preproc_elif_token1] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, [622] = { - [sym_identifier] = ACTIONS(2518), - [aux_sym_preproc_include_token1] = ACTIONS(2518), - [aux_sym_preproc_def_token1] = ACTIONS(2518), - [aux_sym_preproc_if_token1] = ACTIONS(2518), - [aux_sym_preproc_if_token2] = ACTIONS(2518), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2518), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2518), - [sym_preproc_directive] = ACTIONS(2518), - [anon_sym_LPAREN2] = ACTIONS(2520), - [anon_sym_BANG] = ACTIONS(2520), - [anon_sym_TILDE] = ACTIONS(2520), - [anon_sym_DASH] = ACTIONS(2518), - [anon_sym_PLUS] = ACTIONS(2518), - [anon_sym_STAR] = ACTIONS(2520), - [anon_sym_AMP_AMP] = ACTIONS(2520), - [anon_sym_AMP] = ACTIONS(2518), - [anon_sym_SEMI] = ACTIONS(2520), - [anon_sym_typedef] = ACTIONS(2518), - [anon_sym_extern] = ACTIONS(2518), - [anon_sym___attribute__] = ACTIONS(2518), - [anon_sym_COLON_COLON] = ACTIONS(2520), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2520), - [anon_sym___declspec] = ACTIONS(2518), - [anon_sym___based] = ACTIONS(2518), - [anon_sym___cdecl] = ACTIONS(2518), - [anon_sym___clrcall] = ACTIONS(2518), - [anon_sym___stdcall] = ACTIONS(2518), - [anon_sym___fastcall] = ACTIONS(2518), - [anon_sym___thiscall] = ACTIONS(2518), - [anon_sym___vectorcall] = ACTIONS(2518), - [anon_sym_LBRACE] = ACTIONS(2520), - [anon_sym_LBRACK] = ACTIONS(2518), - [anon_sym_static] = ACTIONS(2518), - [anon_sym_register] = ACTIONS(2518), - [anon_sym_inline] = ACTIONS(2518), - [anon_sym_thread_local] = ACTIONS(2518), - [anon_sym_const] = ACTIONS(2518), - [anon_sym_volatile] = ACTIONS(2518), - [anon_sym_restrict] = ACTIONS(2518), - [anon_sym__Atomic] = ACTIONS(2518), - [anon_sym_mutable] = ACTIONS(2518), - [anon_sym_constexpr] = ACTIONS(2518), - [anon_sym_constinit] = ACTIONS(2518), - [anon_sym_consteval] = ACTIONS(2518), - [anon_sym_signed] = ACTIONS(2518), - [anon_sym_unsigned] = ACTIONS(2518), - [anon_sym_long] = ACTIONS(2518), - [anon_sym_short] = ACTIONS(2518), - [sym_primitive_type] = ACTIONS(2518), - [anon_sym_enum] = ACTIONS(2518), - [anon_sym_class] = ACTIONS(2518), - [anon_sym_struct] = ACTIONS(2518), - [anon_sym_union] = ACTIONS(2518), - [anon_sym_if] = ACTIONS(2518), - [anon_sym_else] = ACTIONS(2518), - [anon_sym_switch] = ACTIONS(2518), - [anon_sym_case] = ACTIONS(2518), - [anon_sym_default] = ACTIONS(2518), - [anon_sym_while] = ACTIONS(2518), - [anon_sym_do] = ACTIONS(2518), - [anon_sym_for] = ACTIONS(2518), - [anon_sym_return] = ACTIONS(2518), - [anon_sym_break] = ACTIONS(2518), - [anon_sym_continue] = ACTIONS(2518), - [anon_sym_goto] = ACTIONS(2518), - [anon_sym_not] = ACTIONS(2518), - [anon_sym_compl] = ACTIONS(2518), - [anon_sym_DASH_DASH] = ACTIONS(2520), - [anon_sym_PLUS_PLUS] = ACTIONS(2520), - [anon_sym_sizeof] = ACTIONS(2518), - [sym_number_literal] = ACTIONS(2520), - [anon_sym_L_SQUOTE] = ACTIONS(2520), - [anon_sym_u_SQUOTE] = ACTIONS(2520), - [anon_sym_U_SQUOTE] = ACTIONS(2520), - [anon_sym_u8_SQUOTE] = ACTIONS(2520), - [anon_sym_SQUOTE] = ACTIONS(2520), - [anon_sym_L_DQUOTE] = ACTIONS(2520), - [anon_sym_u_DQUOTE] = ACTIONS(2520), - [anon_sym_U_DQUOTE] = ACTIONS(2520), - [anon_sym_u8_DQUOTE] = ACTIONS(2520), - [anon_sym_DQUOTE] = ACTIONS(2520), - [sym_true] = ACTIONS(2518), - [sym_false] = ACTIONS(2518), - [sym_null] = ACTIONS(2518), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2518), - [anon_sym_decltype] = ACTIONS(2518), - [anon_sym_virtual] = ACTIONS(2518), - [anon_sym_explicit] = ACTIONS(2518), - [anon_sym_typename] = ACTIONS(2518), - [anon_sym_template] = ACTIONS(2518), - [anon_sym_operator] = ACTIONS(2518), - [anon_sym_try] = ACTIONS(2518), - [anon_sym_delete] = ACTIONS(2518), - [anon_sym_throw] = ACTIONS(2518), - [anon_sym_namespace] = ACTIONS(2518), - [anon_sym_using] = ACTIONS(2518), - [anon_sym_static_assert] = ACTIONS(2518), - [anon_sym_concept] = ACTIONS(2518), - [anon_sym_co_return] = ACTIONS(2518), - [anon_sym_co_yield] = ACTIONS(2518), - [anon_sym_R_DQUOTE] = ACTIONS(2520), - [anon_sym_LR_DQUOTE] = ACTIONS(2520), - [anon_sym_uR_DQUOTE] = ACTIONS(2520), - [anon_sym_UR_DQUOTE] = ACTIONS(2520), - [anon_sym_u8R_DQUOTE] = ACTIONS(2520), - [anon_sym_co_await] = ACTIONS(2518), - [anon_sym_new] = ACTIONS(2518), - [anon_sym_requires] = ACTIONS(2518), - [sym_this] = ACTIONS(2518), - [sym_nullptr] = ACTIONS(2518), + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token2] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [aux_sym_preproc_else_token1] = ACTIONS(3028), + [aux_sym_preproc_elif_token1] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, [623] = { - [sym_identifier] = ACTIONS(2526), - [aux_sym_preproc_include_token1] = ACTIONS(2526), - [aux_sym_preproc_def_token1] = ACTIONS(2526), - [aux_sym_preproc_if_token1] = ACTIONS(2526), - [aux_sym_preproc_if_token2] = ACTIONS(2526), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2526), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2526), - [sym_preproc_directive] = ACTIONS(2526), - [anon_sym_LPAREN2] = ACTIONS(2528), - [anon_sym_BANG] = ACTIONS(2528), - [anon_sym_TILDE] = ACTIONS(2528), - [anon_sym_DASH] = ACTIONS(2526), - [anon_sym_PLUS] = ACTIONS(2526), - [anon_sym_STAR] = ACTIONS(2528), - [anon_sym_AMP_AMP] = ACTIONS(2528), - [anon_sym_AMP] = ACTIONS(2526), - [anon_sym_SEMI] = ACTIONS(2528), - [anon_sym_typedef] = ACTIONS(2526), - [anon_sym_extern] = ACTIONS(2526), - [anon_sym___attribute__] = ACTIONS(2526), - [anon_sym_COLON_COLON] = ACTIONS(2528), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2528), - [anon_sym___declspec] = ACTIONS(2526), - [anon_sym___based] = ACTIONS(2526), - [anon_sym___cdecl] = ACTIONS(2526), - [anon_sym___clrcall] = ACTIONS(2526), - [anon_sym___stdcall] = ACTIONS(2526), - [anon_sym___fastcall] = ACTIONS(2526), - [anon_sym___thiscall] = ACTIONS(2526), - [anon_sym___vectorcall] = ACTIONS(2526), - [anon_sym_LBRACE] = ACTIONS(2528), - [anon_sym_LBRACK] = ACTIONS(2526), - [anon_sym_static] = ACTIONS(2526), - [anon_sym_register] = ACTIONS(2526), - [anon_sym_inline] = ACTIONS(2526), - [anon_sym_thread_local] = ACTIONS(2526), - [anon_sym_const] = ACTIONS(2526), - [anon_sym_volatile] = ACTIONS(2526), - [anon_sym_restrict] = ACTIONS(2526), - [anon_sym__Atomic] = ACTIONS(2526), - [anon_sym_mutable] = ACTIONS(2526), - [anon_sym_constexpr] = ACTIONS(2526), - [anon_sym_constinit] = ACTIONS(2526), - [anon_sym_consteval] = ACTIONS(2526), - [anon_sym_signed] = ACTIONS(2526), - [anon_sym_unsigned] = ACTIONS(2526), - [anon_sym_long] = ACTIONS(2526), - [anon_sym_short] = ACTIONS(2526), - [sym_primitive_type] = ACTIONS(2526), - [anon_sym_enum] = ACTIONS(2526), - [anon_sym_class] = ACTIONS(2526), - [anon_sym_struct] = ACTIONS(2526), - [anon_sym_union] = ACTIONS(2526), - [anon_sym_if] = ACTIONS(2526), - [anon_sym_else] = ACTIONS(2526), - [anon_sym_switch] = ACTIONS(2526), - [anon_sym_case] = ACTIONS(2526), - [anon_sym_default] = ACTIONS(2526), - [anon_sym_while] = ACTIONS(2526), - [anon_sym_do] = ACTIONS(2526), - [anon_sym_for] = ACTIONS(2526), - [anon_sym_return] = ACTIONS(2526), - [anon_sym_break] = ACTIONS(2526), - [anon_sym_continue] = ACTIONS(2526), - [anon_sym_goto] = ACTIONS(2526), - [anon_sym_not] = ACTIONS(2526), - [anon_sym_compl] = ACTIONS(2526), - [anon_sym_DASH_DASH] = ACTIONS(2528), - [anon_sym_PLUS_PLUS] = ACTIONS(2528), - [anon_sym_sizeof] = ACTIONS(2526), - [sym_number_literal] = ACTIONS(2528), - [anon_sym_L_SQUOTE] = ACTIONS(2528), - [anon_sym_u_SQUOTE] = ACTIONS(2528), - [anon_sym_U_SQUOTE] = ACTIONS(2528), - [anon_sym_u8_SQUOTE] = ACTIONS(2528), - [anon_sym_SQUOTE] = ACTIONS(2528), - [anon_sym_L_DQUOTE] = ACTIONS(2528), - [anon_sym_u_DQUOTE] = ACTIONS(2528), - [anon_sym_U_DQUOTE] = ACTIONS(2528), - [anon_sym_u8_DQUOTE] = ACTIONS(2528), - [anon_sym_DQUOTE] = ACTIONS(2528), - [sym_true] = ACTIONS(2526), - [sym_false] = ACTIONS(2526), - [sym_null] = ACTIONS(2526), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2526), - [anon_sym_decltype] = ACTIONS(2526), - [anon_sym_virtual] = ACTIONS(2526), - [anon_sym_explicit] = ACTIONS(2526), - [anon_sym_typename] = ACTIONS(2526), - [anon_sym_template] = ACTIONS(2526), - [anon_sym_operator] = ACTIONS(2526), - [anon_sym_try] = ACTIONS(2526), - [anon_sym_delete] = ACTIONS(2526), - [anon_sym_throw] = ACTIONS(2526), - [anon_sym_namespace] = ACTIONS(2526), - [anon_sym_using] = ACTIONS(2526), - [anon_sym_static_assert] = ACTIONS(2526), - [anon_sym_concept] = ACTIONS(2526), - [anon_sym_co_return] = ACTIONS(2526), - [anon_sym_co_yield] = ACTIONS(2526), - [anon_sym_R_DQUOTE] = ACTIONS(2528), - [anon_sym_LR_DQUOTE] = ACTIONS(2528), - [anon_sym_uR_DQUOTE] = ACTIONS(2528), - [anon_sym_UR_DQUOTE] = ACTIONS(2528), - [anon_sym_u8R_DQUOTE] = ACTIONS(2528), - [anon_sym_co_await] = ACTIONS(2526), - [anon_sym_new] = ACTIONS(2526), - [anon_sym_requires] = ACTIONS(2526), - [sym_this] = ACTIONS(2526), - [sym_nullptr] = ACTIONS(2526), + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token2] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [aux_sym_preproc_else_token1] = ACTIONS(3028), + [aux_sym_preproc_elif_token1] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, [624] = { - [ts_builtin_sym_end] = ACTIONS(2616), - [sym_identifier] = ACTIONS(2614), - [aux_sym_preproc_include_token1] = ACTIONS(2614), - [aux_sym_preproc_def_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2614), - [sym_preproc_directive] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP_AMP] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2614), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym___based] = ACTIONS(2614), - [anon_sym___cdecl] = ACTIONS(2614), - [anon_sym___clrcall] = ACTIONS(2614), - [anon_sym___stdcall] = ACTIONS(2614), - [anon_sym___fastcall] = ACTIONS(2614), - [anon_sym___thiscall] = ACTIONS(2614), - [anon_sym___vectorcall] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_case] = ACTIONS(2614), - [anon_sym_default] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_explicit] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_operator] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_namespace] = ACTIONS(2614), - [anon_sym_using] = ACTIONS(2614), - [anon_sym_static_assert] = ACTIONS(2614), - [anon_sym_concept] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), + [sym_preproc_def] = STATE(736), + [sym_preproc_function_def] = STATE(736), + [sym_preproc_call] = STATE(736), + [sym_preproc_if_in_field_declaration_list] = STATE(736), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(736), + [sym_type_definition] = STATE(736), + [sym__declaration_modifiers] = STATE(3706), + [sym__declaration_specifiers] = STATE(4831), + [sym_attribute_specifier] = STATE(3706), + [sym_attribute_declaration] = STATE(3706), + [sym_ms_declspec_modifier] = STATE(3706), + [sym_ms_based_modifier] = STATE(7654), + [sym__declarator] = STATE(5881), + [sym_parenthesized_declarator] = STATE(5640), + [sym_attributed_declarator] = STATE(5640), + [sym_pointer_declarator] = STATE(5640), + [sym_function_declarator] = STATE(5531), + [sym_array_declarator] = STATE(5640), + [sym_storage_class_specifier] = STATE(3706), + [sym_type_qualifier] = STATE(3706), + [sym__type_specifier] = STATE(3845), + [sym_sized_type_specifier] = STATE(3918), + [sym_enum_specifier] = STATE(3918), + [sym_struct_specifier] = STATE(3918), + [sym_union_specifier] = STATE(3918), + [sym__field_declaration_list_item] = STATE(736), + [sym_field_declaration] = STATE(736), + [sym_placeholder_type_specifier] = STATE(3918), + [sym_decltype_auto] = STATE(3916), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3918), + [sym_virtual] = STATE(3706), + [sym_explicit_function_specifier] = STATE(2247), + [sym_dependent_type] = STATE(3918), + [sym_template_declaration] = STATE(736), + [sym_operator_cast] = STATE(5897), + [sym_inline_method_definition] = STATE(736), + [sym__constructor_specifiers] = STATE(2247), + [sym_operator_cast_definition] = STATE(736), + [sym_operator_cast_declaration] = STATE(736), + [sym_constructor_or_destructor_definition] = STATE(736), + [sym_constructor_or_destructor_declaration] = STATE(736), + [sym_friend_declaration] = STATE(736), + [sym_access_specifier] = STATE(7346), + [sym_reference_declarator] = STATE(5640), + [sym_structured_binding_declarator] = STATE(5640), + [sym_template_type] = STATE(3680), + [sym_template_function] = STATE(5640), + [sym_using_declaration] = STATE(736), + [sym_alias_declaration] = STATE(736), + [sym_static_assert_declaration] = STATE(736), + [sym_destructor_name] = STATE(5640), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5151), + [sym_qualified_identifier] = STATE(5640), + [sym_qualified_type_identifier] = STATE(3966), + [sym_qualified_operator_cast_identifier] = STATE(5897), + [sym_operator_name] = STATE(5640), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(736), + [aux_sym__declaration_specifiers_repeat1] = STATE(2509), + [aux_sym_sized_type_specifier_repeat1] = STATE(3981), + [aux_sym_operator_cast_definition_repeat1] = STATE(2247), + [sym_identifier] = ACTIONS(2544), + [aux_sym_preproc_def_token1] = ACTIONS(3479), + [aux_sym_preproc_if_token1] = ACTIONS(3481), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3483), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3483), + [sym_preproc_directive] = ACTIONS(3485), + [anon_sym_LPAREN2] = ACTIONS(2560), + [anon_sym_TILDE] = ACTIONS(2562), + [anon_sym_STAR] = ACTIONS(2564), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_typedef] = ACTIONS(3487), + [anon_sym_extern] = ACTIONS(53), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(2570), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1813), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(45), + [anon_sym_RBRACE] = ACTIONS(3505), + [anon_sym_LBRACK] = ACTIONS(2572), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(53), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(2574), + [anon_sym_unsigned] = ACTIONS(2574), + [anon_sym_long] = ACTIONS(2574), + [anon_sym_short] = ACTIONS(2574), + [sym_primitive_type] = ACTIONS(2576), + [anon_sym_enum] = ACTIONS(2578), + [anon_sym_class] = ACTIONS(2580), + [anon_sym_struct] = ACTIONS(2582), + [anon_sym_union] = ACTIONS(2584), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2586), + [anon_sym_decltype] = ACTIONS(2588), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_explicit] = ACTIONS(119), + [anon_sym_typename] = ACTIONS(2590), + [anon_sym_template] = ACTIONS(3491), + [anon_sym_operator] = ACTIONS(125), + [anon_sym_friend] = ACTIONS(3493), + [anon_sym_public] = ACTIONS(2596), + [anon_sym_private] = ACTIONS(2596), + [anon_sym_protected] = ACTIONS(2596), + [anon_sym_using] = ACTIONS(3495), + [anon_sym_static_assert] = ACTIONS(3497), }, [625] = { - [ts_builtin_sym_end] = ACTIONS(2616), - [sym_identifier] = ACTIONS(2614), - [aux_sym_preproc_include_token1] = ACTIONS(2614), - [aux_sym_preproc_def_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2614), - [sym_preproc_directive] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP_AMP] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2614), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym___based] = ACTIONS(2614), - [anon_sym___cdecl] = ACTIONS(2614), - [anon_sym___clrcall] = ACTIONS(2614), - [anon_sym___stdcall] = ACTIONS(2614), - [anon_sym___fastcall] = ACTIONS(2614), - [anon_sym___thiscall] = ACTIONS(2614), - [anon_sym___vectorcall] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_case] = ACTIONS(2614), - [anon_sym_default] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_explicit] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_operator] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_namespace] = ACTIONS(2614), - [anon_sym_using] = ACTIONS(2614), - [anon_sym_static_assert] = ACTIONS(2614), - [anon_sym_concept] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token2] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [aux_sym_preproc_else_token1] = ACTIONS(3028), + [aux_sym_preproc_elif_token1] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, [626] = { - [ts_builtin_sym_end] = ACTIONS(2616), - [sym_identifier] = ACTIONS(2614), - [aux_sym_preproc_include_token1] = ACTIONS(2614), - [aux_sym_preproc_def_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2614), - [sym_preproc_directive] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP_AMP] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2614), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym___based] = ACTIONS(2614), - [anon_sym___cdecl] = ACTIONS(2614), - [anon_sym___clrcall] = ACTIONS(2614), - [anon_sym___stdcall] = ACTIONS(2614), - [anon_sym___fastcall] = ACTIONS(2614), - [anon_sym___thiscall] = ACTIONS(2614), - [anon_sym___vectorcall] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_case] = ACTIONS(2614), - [anon_sym_default] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_explicit] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_operator] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_namespace] = ACTIONS(2614), - [anon_sym_using] = ACTIONS(2614), - [anon_sym_static_assert] = ACTIONS(2614), - [anon_sym_concept] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), + [sym_identifier] = ACTIONS(3044), + [aux_sym_preproc_include_token1] = ACTIONS(3044), + [aux_sym_preproc_def_token1] = ACTIONS(3044), + [aux_sym_preproc_if_token1] = ACTIONS(3044), + [aux_sym_preproc_if_token2] = ACTIONS(3044), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3044), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3044), + [aux_sym_preproc_else_token1] = ACTIONS(3044), + [aux_sym_preproc_elif_token1] = ACTIONS(3044), + [sym_preproc_directive] = ACTIONS(3044), + [anon_sym_LPAREN2] = ACTIONS(3046), + [anon_sym_BANG] = ACTIONS(3046), + [anon_sym_TILDE] = ACTIONS(3046), + [anon_sym_DASH] = ACTIONS(3044), + [anon_sym_PLUS] = ACTIONS(3044), + [anon_sym_STAR] = ACTIONS(3046), + [anon_sym_AMP_AMP] = ACTIONS(3046), + [anon_sym_AMP] = ACTIONS(3044), + [anon_sym_SEMI] = ACTIONS(3046), + [anon_sym_typedef] = ACTIONS(3044), + [anon_sym_extern] = ACTIONS(3044), + [anon_sym___attribute__] = ACTIONS(3044), + [anon_sym_COLON_COLON] = ACTIONS(3046), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3046), + [anon_sym___declspec] = ACTIONS(3044), + [anon_sym___based] = ACTIONS(3044), + [anon_sym___cdecl] = ACTIONS(3044), + [anon_sym___clrcall] = ACTIONS(3044), + [anon_sym___stdcall] = ACTIONS(3044), + [anon_sym___fastcall] = ACTIONS(3044), + [anon_sym___thiscall] = ACTIONS(3044), + [anon_sym___vectorcall] = ACTIONS(3044), + [anon_sym_LBRACE] = ACTIONS(3046), + [anon_sym_LBRACK] = ACTIONS(3044), + [anon_sym_static] = ACTIONS(3044), + [anon_sym_register] = ACTIONS(3044), + [anon_sym_inline] = ACTIONS(3044), + [anon_sym_thread_local] = ACTIONS(3044), + [anon_sym_const] = ACTIONS(3044), + [anon_sym_constexpr] = ACTIONS(3044), + [anon_sym_volatile] = ACTIONS(3044), + [anon_sym_restrict] = ACTIONS(3044), + [anon_sym___restrict__] = ACTIONS(3044), + [anon_sym__Atomic] = ACTIONS(3044), + [anon_sym__Noreturn] = ACTIONS(3044), + [anon_sym_noreturn] = ACTIONS(3044), + [anon_sym_mutable] = ACTIONS(3044), + [anon_sym_constinit] = ACTIONS(3044), + [anon_sym_consteval] = ACTIONS(3044), + [anon_sym_signed] = ACTIONS(3044), + [anon_sym_unsigned] = ACTIONS(3044), + [anon_sym_long] = ACTIONS(3044), + [anon_sym_short] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(3044), + [anon_sym_enum] = ACTIONS(3044), + [anon_sym_class] = ACTIONS(3044), + [anon_sym_struct] = ACTIONS(3044), + [anon_sym_union] = ACTIONS(3044), + [anon_sym_if] = ACTIONS(3044), + [anon_sym_else] = ACTIONS(3044), + [anon_sym_switch] = ACTIONS(3044), + [anon_sym_case] = ACTIONS(3044), + [anon_sym_default] = ACTIONS(3044), + [anon_sym_while] = ACTIONS(3044), + [anon_sym_do] = ACTIONS(3044), + [anon_sym_for] = ACTIONS(3044), + [anon_sym_return] = ACTIONS(3044), + [anon_sym_break] = ACTIONS(3044), + [anon_sym_continue] = ACTIONS(3044), + [anon_sym_goto] = ACTIONS(3044), + [anon_sym_not] = ACTIONS(3044), + [anon_sym_compl] = ACTIONS(3044), + [anon_sym_DASH_DASH] = ACTIONS(3046), + [anon_sym_PLUS_PLUS] = ACTIONS(3046), + [anon_sym_sizeof] = ACTIONS(3044), + [anon_sym_offsetof] = ACTIONS(3044), + [anon_sym__Generic] = ACTIONS(3044), + [anon_sym_asm] = ACTIONS(3044), + [anon_sym___asm__] = ACTIONS(3044), + [sym_number_literal] = ACTIONS(3046), + [anon_sym_L_SQUOTE] = ACTIONS(3046), + [anon_sym_u_SQUOTE] = ACTIONS(3046), + [anon_sym_U_SQUOTE] = ACTIONS(3046), + [anon_sym_u8_SQUOTE] = ACTIONS(3046), + [anon_sym_SQUOTE] = ACTIONS(3046), + [anon_sym_L_DQUOTE] = ACTIONS(3046), + [anon_sym_u_DQUOTE] = ACTIONS(3046), + [anon_sym_U_DQUOTE] = ACTIONS(3046), + [anon_sym_u8_DQUOTE] = ACTIONS(3046), + [anon_sym_DQUOTE] = ACTIONS(3046), + [sym_true] = ACTIONS(3044), + [sym_false] = ACTIONS(3044), + [anon_sym_NULL] = ACTIONS(3044), + [anon_sym_nullptr] = ACTIONS(3044), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3044), + [anon_sym_decltype] = ACTIONS(3044), + [anon_sym_virtual] = ACTIONS(3044), + [anon_sym_explicit] = ACTIONS(3044), + [anon_sym_typename] = ACTIONS(3044), + [anon_sym_template] = ACTIONS(3044), + [anon_sym_operator] = ACTIONS(3044), + [anon_sym_try] = ACTIONS(3044), + [anon_sym_delete] = ACTIONS(3044), + [anon_sym_throw] = ACTIONS(3044), + [anon_sym_namespace] = ACTIONS(3044), + [anon_sym_using] = ACTIONS(3044), + [anon_sym_static_assert] = ACTIONS(3044), + [anon_sym_concept] = ACTIONS(3044), + [anon_sym_co_return] = ACTIONS(3044), + [anon_sym_co_yield] = ACTIONS(3044), + [anon_sym_R_DQUOTE] = ACTIONS(3046), + [anon_sym_LR_DQUOTE] = ACTIONS(3046), + [anon_sym_uR_DQUOTE] = ACTIONS(3046), + [anon_sym_UR_DQUOTE] = ACTIONS(3046), + [anon_sym_u8R_DQUOTE] = ACTIONS(3046), + [anon_sym_co_await] = ACTIONS(3044), + [anon_sym_new] = ACTIONS(3044), + [anon_sym_requires] = ACTIONS(3044), + [sym_this] = ACTIONS(3044), }, [627] = { - [ts_builtin_sym_end] = ACTIONS(2616), - [sym_identifier] = ACTIONS(2614), - [aux_sym_preproc_include_token1] = ACTIONS(2614), - [aux_sym_preproc_def_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2614), - [sym_preproc_directive] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP_AMP] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2614), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym___based] = ACTIONS(2614), - [anon_sym___cdecl] = ACTIONS(2614), - [anon_sym___clrcall] = ACTIONS(2614), - [anon_sym___stdcall] = ACTIONS(2614), - [anon_sym___fastcall] = ACTIONS(2614), - [anon_sym___thiscall] = ACTIONS(2614), - [anon_sym___vectorcall] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_case] = ACTIONS(2614), - [anon_sym_default] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_explicit] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_operator] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_namespace] = ACTIONS(2614), - [anon_sym_using] = ACTIONS(2614), - [anon_sym_static_assert] = ACTIONS(2614), - [anon_sym_concept] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), + [sym_identifier] = ACTIONS(3040), + [aux_sym_preproc_include_token1] = ACTIONS(3040), + [aux_sym_preproc_def_token1] = ACTIONS(3040), + [aux_sym_preproc_if_token1] = ACTIONS(3040), + [aux_sym_preproc_if_token2] = ACTIONS(3040), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3040), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3040), + [aux_sym_preproc_else_token1] = ACTIONS(3040), + [aux_sym_preproc_elif_token1] = ACTIONS(3040), + [sym_preproc_directive] = ACTIONS(3040), + [anon_sym_LPAREN2] = ACTIONS(3042), + [anon_sym_BANG] = ACTIONS(3042), + [anon_sym_TILDE] = ACTIONS(3042), + [anon_sym_DASH] = ACTIONS(3040), + [anon_sym_PLUS] = ACTIONS(3040), + [anon_sym_STAR] = ACTIONS(3042), + [anon_sym_AMP_AMP] = ACTIONS(3042), + [anon_sym_AMP] = ACTIONS(3040), + [anon_sym_SEMI] = ACTIONS(3042), + [anon_sym_typedef] = ACTIONS(3040), + [anon_sym_extern] = ACTIONS(3040), + [anon_sym___attribute__] = ACTIONS(3040), + [anon_sym_COLON_COLON] = ACTIONS(3042), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3042), + [anon_sym___declspec] = ACTIONS(3040), + [anon_sym___based] = ACTIONS(3040), + [anon_sym___cdecl] = ACTIONS(3040), + [anon_sym___clrcall] = ACTIONS(3040), + [anon_sym___stdcall] = ACTIONS(3040), + [anon_sym___fastcall] = ACTIONS(3040), + [anon_sym___thiscall] = ACTIONS(3040), + [anon_sym___vectorcall] = ACTIONS(3040), + [anon_sym_LBRACE] = ACTIONS(3042), + [anon_sym_LBRACK] = ACTIONS(3040), + [anon_sym_static] = ACTIONS(3040), + [anon_sym_register] = ACTIONS(3040), + [anon_sym_inline] = ACTIONS(3040), + [anon_sym_thread_local] = ACTIONS(3040), + [anon_sym_const] = ACTIONS(3040), + [anon_sym_constexpr] = ACTIONS(3040), + [anon_sym_volatile] = ACTIONS(3040), + [anon_sym_restrict] = ACTIONS(3040), + [anon_sym___restrict__] = ACTIONS(3040), + [anon_sym__Atomic] = ACTIONS(3040), + [anon_sym__Noreturn] = ACTIONS(3040), + [anon_sym_noreturn] = ACTIONS(3040), + [anon_sym_mutable] = ACTIONS(3040), + [anon_sym_constinit] = ACTIONS(3040), + [anon_sym_consteval] = ACTIONS(3040), + [anon_sym_signed] = ACTIONS(3040), + [anon_sym_unsigned] = ACTIONS(3040), + [anon_sym_long] = ACTIONS(3040), + [anon_sym_short] = ACTIONS(3040), + [sym_primitive_type] = ACTIONS(3040), + [anon_sym_enum] = ACTIONS(3040), + [anon_sym_class] = ACTIONS(3040), + [anon_sym_struct] = ACTIONS(3040), + [anon_sym_union] = ACTIONS(3040), + [anon_sym_if] = ACTIONS(3040), + [anon_sym_else] = ACTIONS(3040), + [anon_sym_switch] = ACTIONS(3040), + [anon_sym_case] = ACTIONS(3040), + [anon_sym_default] = ACTIONS(3040), + [anon_sym_while] = ACTIONS(3040), + [anon_sym_do] = ACTIONS(3040), + [anon_sym_for] = ACTIONS(3040), + [anon_sym_return] = ACTIONS(3040), + [anon_sym_break] = ACTIONS(3040), + [anon_sym_continue] = ACTIONS(3040), + [anon_sym_goto] = ACTIONS(3040), + [anon_sym_not] = ACTIONS(3040), + [anon_sym_compl] = ACTIONS(3040), + [anon_sym_DASH_DASH] = ACTIONS(3042), + [anon_sym_PLUS_PLUS] = ACTIONS(3042), + [anon_sym_sizeof] = ACTIONS(3040), + [anon_sym_offsetof] = ACTIONS(3040), + [anon_sym__Generic] = ACTIONS(3040), + [anon_sym_asm] = ACTIONS(3040), + [anon_sym___asm__] = ACTIONS(3040), + [sym_number_literal] = ACTIONS(3042), + [anon_sym_L_SQUOTE] = ACTIONS(3042), + [anon_sym_u_SQUOTE] = ACTIONS(3042), + [anon_sym_U_SQUOTE] = ACTIONS(3042), + [anon_sym_u8_SQUOTE] = ACTIONS(3042), + [anon_sym_SQUOTE] = ACTIONS(3042), + [anon_sym_L_DQUOTE] = ACTIONS(3042), + [anon_sym_u_DQUOTE] = ACTIONS(3042), + [anon_sym_U_DQUOTE] = ACTIONS(3042), + [anon_sym_u8_DQUOTE] = ACTIONS(3042), + [anon_sym_DQUOTE] = ACTIONS(3042), + [sym_true] = ACTIONS(3040), + [sym_false] = ACTIONS(3040), + [anon_sym_NULL] = ACTIONS(3040), + [anon_sym_nullptr] = ACTIONS(3040), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3040), + [anon_sym_decltype] = ACTIONS(3040), + [anon_sym_virtual] = ACTIONS(3040), + [anon_sym_explicit] = ACTIONS(3040), + [anon_sym_typename] = ACTIONS(3040), + [anon_sym_template] = ACTIONS(3040), + [anon_sym_operator] = ACTIONS(3040), + [anon_sym_try] = ACTIONS(3040), + [anon_sym_delete] = ACTIONS(3040), + [anon_sym_throw] = ACTIONS(3040), + [anon_sym_namespace] = ACTIONS(3040), + [anon_sym_using] = ACTIONS(3040), + [anon_sym_static_assert] = ACTIONS(3040), + [anon_sym_concept] = ACTIONS(3040), + [anon_sym_co_return] = ACTIONS(3040), + [anon_sym_co_yield] = ACTIONS(3040), + [anon_sym_R_DQUOTE] = ACTIONS(3042), + [anon_sym_LR_DQUOTE] = ACTIONS(3042), + [anon_sym_uR_DQUOTE] = ACTIONS(3042), + [anon_sym_UR_DQUOTE] = ACTIONS(3042), + [anon_sym_u8R_DQUOTE] = ACTIONS(3042), + [anon_sym_co_await] = ACTIONS(3040), + [anon_sym_new] = ACTIONS(3040), + [anon_sym_requires] = ACTIONS(3040), + [sym_this] = ACTIONS(3040), }, [628] = { - [ts_builtin_sym_end] = ACTIONS(2616), - [sym_identifier] = ACTIONS(2614), - [aux_sym_preproc_include_token1] = ACTIONS(2614), - [aux_sym_preproc_def_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2614), - [sym_preproc_directive] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP_AMP] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2614), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym___based] = ACTIONS(2614), - [anon_sym___cdecl] = ACTIONS(2614), - [anon_sym___clrcall] = ACTIONS(2614), - [anon_sym___stdcall] = ACTIONS(2614), - [anon_sym___fastcall] = ACTIONS(2614), - [anon_sym___thiscall] = ACTIONS(2614), - [anon_sym___vectorcall] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_case] = ACTIONS(2614), - [anon_sym_default] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_explicit] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_operator] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_namespace] = ACTIONS(2614), - [anon_sym_using] = ACTIONS(2614), - [anon_sym_static_assert] = ACTIONS(2614), - [anon_sym_concept] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), + [sym_identifier] = ACTIONS(3036), + [aux_sym_preproc_include_token1] = ACTIONS(3036), + [aux_sym_preproc_def_token1] = ACTIONS(3036), + [aux_sym_preproc_if_token1] = ACTIONS(3036), + [aux_sym_preproc_if_token2] = ACTIONS(3036), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3036), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3036), + [aux_sym_preproc_else_token1] = ACTIONS(3036), + [aux_sym_preproc_elif_token1] = ACTIONS(3036), + [sym_preproc_directive] = ACTIONS(3036), + [anon_sym_LPAREN2] = ACTIONS(3038), + [anon_sym_BANG] = ACTIONS(3038), + [anon_sym_TILDE] = ACTIONS(3038), + [anon_sym_DASH] = ACTIONS(3036), + [anon_sym_PLUS] = ACTIONS(3036), + [anon_sym_STAR] = ACTIONS(3038), + [anon_sym_AMP_AMP] = ACTIONS(3038), + [anon_sym_AMP] = ACTIONS(3036), + [anon_sym_SEMI] = ACTIONS(3038), + [anon_sym_typedef] = ACTIONS(3036), + [anon_sym_extern] = ACTIONS(3036), + [anon_sym___attribute__] = ACTIONS(3036), + [anon_sym_COLON_COLON] = ACTIONS(3038), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3038), + [anon_sym___declspec] = ACTIONS(3036), + [anon_sym___based] = ACTIONS(3036), + [anon_sym___cdecl] = ACTIONS(3036), + [anon_sym___clrcall] = ACTIONS(3036), + [anon_sym___stdcall] = ACTIONS(3036), + [anon_sym___fastcall] = ACTIONS(3036), + [anon_sym___thiscall] = ACTIONS(3036), + [anon_sym___vectorcall] = ACTIONS(3036), + [anon_sym_LBRACE] = ACTIONS(3038), + [anon_sym_LBRACK] = ACTIONS(3036), + [anon_sym_static] = ACTIONS(3036), + [anon_sym_register] = ACTIONS(3036), + [anon_sym_inline] = ACTIONS(3036), + [anon_sym_thread_local] = ACTIONS(3036), + [anon_sym_const] = ACTIONS(3036), + [anon_sym_constexpr] = ACTIONS(3036), + [anon_sym_volatile] = ACTIONS(3036), + [anon_sym_restrict] = ACTIONS(3036), + [anon_sym___restrict__] = ACTIONS(3036), + [anon_sym__Atomic] = ACTIONS(3036), + [anon_sym__Noreturn] = ACTIONS(3036), + [anon_sym_noreturn] = ACTIONS(3036), + [anon_sym_mutable] = ACTIONS(3036), + [anon_sym_constinit] = ACTIONS(3036), + [anon_sym_consteval] = ACTIONS(3036), + [anon_sym_signed] = ACTIONS(3036), + [anon_sym_unsigned] = ACTIONS(3036), + [anon_sym_long] = ACTIONS(3036), + [anon_sym_short] = ACTIONS(3036), + [sym_primitive_type] = ACTIONS(3036), + [anon_sym_enum] = ACTIONS(3036), + [anon_sym_class] = ACTIONS(3036), + [anon_sym_struct] = ACTIONS(3036), + [anon_sym_union] = ACTIONS(3036), + [anon_sym_if] = ACTIONS(3036), + [anon_sym_else] = ACTIONS(3036), + [anon_sym_switch] = ACTIONS(3036), + [anon_sym_case] = ACTIONS(3036), + [anon_sym_default] = ACTIONS(3036), + [anon_sym_while] = ACTIONS(3036), + [anon_sym_do] = ACTIONS(3036), + [anon_sym_for] = ACTIONS(3036), + [anon_sym_return] = ACTIONS(3036), + [anon_sym_break] = ACTIONS(3036), + [anon_sym_continue] = ACTIONS(3036), + [anon_sym_goto] = ACTIONS(3036), + [anon_sym_not] = ACTIONS(3036), + [anon_sym_compl] = ACTIONS(3036), + [anon_sym_DASH_DASH] = ACTIONS(3038), + [anon_sym_PLUS_PLUS] = ACTIONS(3038), + [anon_sym_sizeof] = ACTIONS(3036), + [anon_sym_offsetof] = ACTIONS(3036), + [anon_sym__Generic] = ACTIONS(3036), + [anon_sym_asm] = ACTIONS(3036), + [anon_sym___asm__] = ACTIONS(3036), + [sym_number_literal] = ACTIONS(3038), + [anon_sym_L_SQUOTE] = ACTIONS(3038), + [anon_sym_u_SQUOTE] = ACTIONS(3038), + [anon_sym_U_SQUOTE] = ACTIONS(3038), + [anon_sym_u8_SQUOTE] = ACTIONS(3038), + [anon_sym_SQUOTE] = ACTIONS(3038), + [anon_sym_L_DQUOTE] = ACTIONS(3038), + [anon_sym_u_DQUOTE] = ACTIONS(3038), + [anon_sym_U_DQUOTE] = ACTIONS(3038), + [anon_sym_u8_DQUOTE] = ACTIONS(3038), + [anon_sym_DQUOTE] = ACTIONS(3038), + [sym_true] = ACTIONS(3036), + [sym_false] = ACTIONS(3036), + [anon_sym_NULL] = ACTIONS(3036), + [anon_sym_nullptr] = ACTIONS(3036), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3036), + [anon_sym_decltype] = ACTIONS(3036), + [anon_sym_virtual] = ACTIONS(3036), + [anon_sym_explicit] = ACTIONS(3036), + [anon_sym_typename] = ACTIONS(3036), + [anon_sym_template] = ACTIONS(3036), + [anon_sym_operator] = ACTIONS(3036), + [anon_sym_try] = ACTIONS(3036), + [anon_sym_delete] = ACTIONS(3036), + [anon_sym_throw] = ACTIONS(3036), + [anon_sym_namespace] = ACTIONS(3036), + [anon_sym_using] = ACTIONS(3036), + [anon_sym_static_assert] = ACTIONS(3036), + [anon_sym_concept] = ACTIONS(3036), + [anon_sym_co_return] = ACTIONS(3036), + [anon_sym_co_yield] = ACTIONS(3036), + [anon_sym_R_DQUOTE] = ACTIONS(3038), + [anon_sym_LR_DQUOTE] = ACTIONS(3038), + [anon_sym_uR_DQUOTE] = ACTIONS(3038), + [anon_sym_UR_DQUOTE] = ACTIONS(3038), + [anon_sym_u8R_DQUOTE] = ACTIONS(3038), + [anon_sym_co_await] = ACTIONS(3036), + [anon_sym_new] = ACTIONS(3036), + [anon_sym_requires] = ACTIONS(3036), + [sym_this] = ACTIONS(3036), }, [629] = { - [sym_identifier] = ACTIONS(2552), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2554), - [anon_sym_AMP] = ACTIONS(2552), - [anon_sym_SEMI] = ACTIONS(2554), - [anon_sym_typedef] = ACTIONS(2552), - [anon_sym_extern] = ACTIONS(2552), - [anon_sym___attribute__] = ACTIONS(2552), - [anon_sym_COLON_COLON] = ACTIONS(2554), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2554), - [anon_sym___declspec] = ACTIONS(2552), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2552), - [anon_sym_static] = ACTIONS(2552), - [anon_sym_register] = ACTIONS(2552), - [anon_sym_inline] = ACTIONS(2552), - [anon_sym_thread_local] = ACTIONS(2552), - [anon_sym_const] = ACTIONS(2552), - [anon_sym_volatile] = ACTIONS(2552), - [anon_sym_restrict] = ACTIONS(2552), - [anon_sym__Atomic] = ACTIONS(2552), - [anon_sym_mutable] = ACTIONS(2552), - [anon_sym_constexpr] = ACTIONS(2552), - [anon_sym_constinit] = ACTIONS(2552), - [anon_sym_consteval] = ACTIONS(2552), - [anon_sym_signed] = ACTIONS(2552), - [anon_sym_unsigned] = ACTIONS(2552), - [anon_sym_long] = ACTIONS(2552), - [anon_sym_short] = ACTIONS(2552), - [sym_primitive_type] = ACTIONS(2552), - [anon_sym_enum] = ACTIONS(2552), - [anon_sym_class] = 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_return] = ACTIONS(2552), - [anon_sym_break] = ACTIONS(2552), - [anon_sym_continue] = ACTIONS(2552), - [anon_sym_goto] = ACTIONS(2552), - [anon_sym_not] = ACTIONS(2552), - [anon_sym_compl] = ACTIONS(2552), - [anon_sym_DASH_DASH] = ACTIONS(2554), - [anon_sym_PLUS_PLUS] = ACTIONS(2554), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2554), - [anon_sym_u_DQUOTE] = ACTIONS(2554), - [anon_sym_U_DQUOTE] = ACTIONS(2554), - [anon_sym_u8_DQUOTE] = ACTIONS(2554), - [anon_sym_DQUOTE] = ACTIONS(2554), - [sym_true] = ACTIONS(2552), - [sym_false] = ACTIONS(2552), - [sym_null] = ACTIONS(2552), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2552), - [anon_sym_decltype] = ACTIONS(2552), - [anon_sym_virtual] = ACTIONS(2552), - [anon_sym_explicit] = ACTIONS(2552), - [anon_sym_typename] = ACTIONS(2552), - [anon_sym_template] = ACTIONS(2552), - [anon_sym_operator] = ACTIONS(2552), - [anon_sym_try] = ACTIONS(2552), - [anon_sym_delete] = ACTIONS(2552), - [anon_sym_throw] = ACTIONS(2552), - [anon_sym_namespace] = ACTIONS(2552), - [anon_sym_using] = ACTIONS(2552), - [anon_sym_static_assert] = ACTIONS(2552), - [anon_sym_concept] = ACTIONS(2552), - [anon_sym_co_return] = ACTIONS(2552), - [anon_sym_co_yield] = ACTIONS(2552), - [anon_sym_R_DQUOTE] = ACTIONS(2554), - [anon_sym_LR_DQUOTE] = ACTIONS(2554), - [anon_sym_uR_DQUOTE] = ACTIONS(2554), - [anon_sym_UR_DQUOTE] = ACTIONS(2554), - [anon_sym_u8R_DQUOTE] = ACTIONS(2554), - [anon_sym_co_await] = ACTIONS(2552), - [anon_sym_new] = ACTIONS(2552), - [anon_sym_requires] = ACTIONS(2552), - [sym_this] = ACTIONS(2552), - [sym_nullptr] = ACTIONS(2552), + [sym_identifier] = ACTIONS(2944), + [aux_sym_preproc_include_token1] = ACTIONS(2944), + [aux_sym_preproc_def_token1] = ACTIONS(2944), + [aux_sym_preproc_if_token1] = ACTIONS(2944), + [aux_sym_preproc_if_token2] = ACTIONS(2944), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2944), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2944), + [aux_sym_preproc_else_token1] = ACTIONS(2944), + [aux_sym_preproc_elif_token1] = ACTIONS(2944), + [sym_preproc_directive] = ACTIONS(2944), + [anon_sym_LPAREN2] = ACTIONS(2946), + [anon_sym_BANG] = ACTIONS(2946), + [anon_sym_TILDE] = ACTIONS(2946), + [anon_sym_DASH] = ACTIONS(2944), + [anon_sym_PLUS] = ACTIONS(2944), + [anon_sym_STAR] = ACTIONS(2946), + [anon_sym_AMP_AMP] = ACTIONS(2946), + [anon_sym_AMP] = ACTIONS(2944), + [anon_sym_SEMI] = ACTIONS(2946), + [anon_sym_typedef] = ACTIONS(2944), + [anon_sym_extern] = ACTIONS(2944), + [anon_sym___attribute__] = ACTIONS(2944), + [anon_sym_COLON_COLON] = ACTIONS(2946), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2946), + [anon_sym___declspec] = ACTIONS(2944), + [anon_sym___based] = ACTIONS(2944), + [anon_sym___cdecl] = ACTIONS(2944), + [anon_sym___clrcall] = ACTIONS(2944), + [anon_sym___stdcall] = ACTIONS(2944), + [anon_sym___fastcall] = ACTIONS(2944), + [anon_sym___thiscall] = ACTIONS(2944), + [anon_sym___vectorcall] = ACTIONS(2944), + [anon_sym_LBRACE] = ACTIONS(2946), + [anon_sym_LBRACK] = ACTIONS(2944), + [anon_sym_static] = ACTIONS(2944), + [anon_sym_register] = ACTIONS(2944), + [anon_sym_inline] = ACTIONS(2944), + [anon_sym_thread_local] = ACTIONS(2944), + [anon_sym_const] = ACTIONS(2944), + [anon_sym_constexpr] = ACTIONS(2944), + [anon_sym_volatile] = ACTIONS(2944), + [anon_sym_restrict] = ACTIONS(2944), + [anon_sym___restrict__] = ACTIONS(2944), + [anon_sym__Atomic] = ACTIONS(2944), + [anon_sym__Noreturn] = ACTIONS(2944), + [anon_sym_noreturn] = ACTIONS(2944), + [anon_sym_mutable] = ACTIONS(2944), + [anon_sym_constinit] = ACTIONS(2944), + [anon_sym_consteval] = ACTIONS(2944), + [anon_sym_signed] = ACTIONS(2944), + [anon_sym_unsigned] = ACTIONS(2944), + [anon_sym_long] = ACTIONS(2944), + [anon_sym_short] = ACTIONS(2944), + [sym_primitive_type] = ACTIONS(2944), + [anon_sym_enum] = ACTIONS(2944), + [anon_sym_class] = ACTIONS(2944), + [anon_sym_struct] = ACTIONS(2944), + [anon_sym_union] = ACTIONS(2944), + [anon_sym_if] = ACTIONS(2944), + [anon_sym_else] = ACTIONS(2944), + [anon_sym_switch] = ACTIONS(2944), + [anon_sym_case] = ACTIONS(2944), + [anon_sym_default] = ACTIONS(2944), + [anon_sym_while] = ACTIONS(2944), + [anon_sym_do] = ACTIONS(2944), + [anon_sym_for] = ACTIONS(2944), + [anon_sym_return] = ACTIONS(2944), + [anon_sym_break] = ACTIONS(2944), + [anon_sym_continue] = ACTIONS(2944), + [anon_sym_goto] = ACTIONS(2944), + [anon_sym_not] = ACTIONS(2944), + [anon_sym_compl] = ACTIONS(2944), + [anon_sym_DASH_DASH] = ACTIONS(2946), + [anon_sym_PLUS_PLUS] = ACTIONS(2946), + [anon_sym_sizeof] = ACTIONS(2944), + [anon_sym_offsetof] = ACTIONS(2944), + [anon_sym__Generic] = ACTIONS(2944), + [anon_sym_asm] = ACTIONS(2944), + [anon_sym___asm__] = ACTIONS(2944), + [sym_number_literal] = ACTIONS(2946), + [anon_sym_L_SQUOTE] = ACTIONS(2946), + [anon_sym_u_SQUOTE] = ACTIONS(2946), + [anon_sym_U_SQUOTE] = ACTIONS(2946), + [anon_sym_u8_SQUOTE] = ACTIONS(2946), + [anon_sym_SQUOTE] = ACTIONS(2946), + [anon_sym_L_DQUOTE] = ACTIONS(2946), + [anon_sym_u_DQUOTE] = ACTIONS(2946), + [anon_sym_U_DQUOTE] = ACTIONS(2946), + [anon_sym_u8_DQUOTE] = ACTIONS(2946), + [anon_sym_DQUOTE] = ACTIONS(2946), + [sym_true] = ACTIONS(2944), + [sym_false] = ACTIONS(2944), + [anon_sym_NULL] = ACTIONS(2944), + [anon_sym_nullptr] = ACTIONS(2944), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2944), + [anon_sym_decltype] = ACTIONS(2944), + [anon_sym_virtual] = ACTIONS(2944), + [anon_sym_explicit] = ACTIONS(2944), + [anon_sym_typename] = ACTIONS(2944), + [anon_sym_template] = ACTIONS(2944), + [anon_sym_operator] = ACTIONS(2944), + [anon_sym_try] = ACTIONS(2944), + [anon_sym_delete] = ACTIONS(2944), + [anon_sym_throw] = ACTIONS(2944), + [anon_sym_namespace] = ACTIONS(2944), + [anon_sym_using] = ACTIONS(2944), + [anon_sym_static_assert] = ACTIONS(2944), + [anon_sym_concept] = ACTIONS(2944), + [anon_sym_co_return] = ACTIONS(2944), + [anon_sym_co_yield] = ACTIONS(2944), + [anon_sym_R_DQUOTE] = ACTIONS(2946), + [anon_sym_LR_DQUOTE] = ACTIONS(2946), + [anon_sym_uR_DQUOTE] = ACTIONS(2946), + [anon_sym_UR_DQUOTE] = ACTIONS(2946), + [anon_sym_u8R_DQUOTE] = ACTIONS(2946), + [anon_sym_co_await] = ACTIONS(2944), + [anon_sym_new] = ACTIONS(2944), + [anon_sym_requires] = ACTIONS(2944), + [sym_this] = ACTIONS(2944), }, [630] = { - [sym_identifier] = ACTIONS(2556), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2558), - [anon_sym_AMP] = ACTIONS(2556), - [anon_sym_SEMI] = ACTIONS(2558), - [anon_sym_typedef] = ACTIONS(2556), - [anon_sym_extern] = ACTIONS(2556), - [anon_sym___attribute__] = ACTIONS(2556), - [anon_sym_COLON_COLON] = ACTIONS(2558), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2558), - [anon_sym___declspec] = ACTIONS(2556), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2556), - [anon_sym_static] = ACTIONS(2556), - [anon_sym_register] = ACTIONS(2556), - [anon_sym_inline] = ACTIONS(2556), - [anon_sym_thread_local] = ACTIONS(2556), - [anon_sym_const] = ACTIONS(2556), - [anon_sym_volatile] = ACTIONS(2556), - [anon_sym_restrict] = ACTIONS(2556), - [anon_sym__Atomic] = ACTIONS(2556), - [anon_sym_mutable] = ACTIONS(2556), - [anon_sym_constexpr] = ACTIONS(2556), - [anon_sym_constinit] = ACTIONS(2556), - [anon_sym_consteval] = ACTIONS(2556), - [anon_sym_signed] = ACTIONS(2556), - [anon_sym_unsigned] = ACTIONS(2556), - [anon_sym_long] = ACTIONS(2556), - [anon_sym_short] = ACTIONS(2556), - [sym_primitive_type] = ACTIONS(2556), - [anon_sym_enum] = ACTIONS(2556), - [anon_sym_class] = 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_return] = ACTIONS(2556), - [anon_sym_break] = ACTIONS(2556), - [anon_sym_continue] = ACTIONS(2556), - [anon_sym_goto] = ACTIONS(2556), - [anon_sym_not] = ACTIONS(2556), - [anon_sym_compl] = ACTIONS(2556), - [anon_sym_DASH_DASH] = ACTIONS(2558), - [anon_sym_PLUS_PLUS] = ACTIONS(2558), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2558), - [anon_sym_u_DQUOTE] = ACTIONS(2558), - [anon_sym_U_DQUOTE] = ACTIONS(2558), - [anon_sym_u8_DQUOTE] = ACTIONS(2558), - [anon_sym_DQUOTE] = ACTIONS(2558), - [sym_true] = ACTIONS(2556), - [sym_false] = ACTIONS(2556), - [sym_null] = ACTIONS(2556), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2556), - [anon_sym_decltype] = ACTIONS(2556), - [anon_sym_virtual] = ACTIONS(2556), - [anon_sym_explicit] = ACTIONS(2556), - [anon_sym_typename] = ACTIONS(2556), - [anon_sym_template] = ACTIONS(2556), - [anon_sym_operator] = ACTIONS(2556), - [anon_sym_try] = ACTIONS(2556), - [anon_sym_delete] = ACTIONS(2556), - [anon_sym_throw] = ACTIONS(2556), - [anon_sym_namespace] = ACTIONS(2556), - [anon_sym_using] = ACTIONS(2556), - [anon_sym_static_assert] = ACTIONS(2556), - [anon_sym_concept] = ACTIONS(2556), - [anon_sym_co_return] = ACTIONS(2556), - [anon_sym_co_yield] = ACTIONS(2556), - [anon_sym_R_DQUOTE] = ACTIONS(2558), - [anon_sym_LR_DQUOTE] = ACTIONS(2558), - [anon_sym_uR_DQUOTE] = ACTIONS(2558), - [anon_sym_UR_DQUOTE] = ACTIONS(2558), - [anon_sym_u8R_DQUOTE] = ACTIONS(2558), - [anon_sym_co_await] = ACTIONS(2556), - [anon_sym_new] = ACTIONS(2556), - [anon_sym_requires] = ACTIONS(2556), - [sym_this] = ACTIONS(2556), - [sym_nullptr] = ACTIONS(2556), + [sym_identifier] = ACTIONS(2928), + [aux_sym_preproc_include_token1] = ACTIONS(2928), + [aux_sym_preproc_def_token1] = ACTIONS(2928), + [aux_sym_preproc_if_token1] = ACTIONS(2928), + [aux_sym_preproc_if_token2] = ACTIONS(2928), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2928), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2928), + [aux_sym_preproc_else_token1] = ACTIONS(2928), + [aux_sym_preproc_elif_token1] = ACTIONS(2928), + [sym_preproc_directive] = ACTIONS(2928), + [anon_sym_LPAREN2] = ACTIONS(2930), + [anon_sym_BANG] = ACTIONS(2930), + [anon_sym_TILDE] = ACTIONS(2930), + [anon_sym_DASH] = ACTIONS(2928), + [anon_sym_PLUS] = ACTIONS(2928), + [anon_sym_STAR] = ACTIONS(2930), + [anon_sym_AMP_AMP] = ACTIONS(2930), + [anon_sym_AMP] = ACTIONS(2928), + [anon_sym_SEMI] = ACTIONS(2930), + [anon_sym_typedef] = ACTIONS(2928), + [anon_sym_extern] = ACTIONS(2928), + [anon_sym___attribute__] = ACTIONS(2928), + [anon_sym_COLON_COLON] = ACTIONS(2930), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2930), + [anon_sym___declspec] = ACTIONS(2928), + [anon_sym___based] = ACTIONS(2928), + [anon_sym___cdecl] = ACTIONS(2928), + [anon_sym___clrcall] = ACTIONS(2928), + [anon_sym___stdcall] = ACTIONS(2928), + [anon_sym___fastcall] = ACTIONS(2928), + [anon_sym___thiscall] = ACTIONS(2928), + [anon_sym___vectorcall] = ACTIONS(2928), + [anon_sym_LBRACE] = ACTIONS(2930), + [anon_sym_LBRACK] = ACTIONS(2928), + [anon_sym_static] = ACTIONS(2928), + [anon_sym_register] = ACTIONS(2928), + [anon_sym_inline] = ACTIONS(2928), + [anon_sym_thread_local] = ACTIONS(2928), + [anon_sym_const] = ACTIONS(2928), + [anon_sym_constexpr] = ACTIONS(2928), + [anon_sym_volatile] = ACTIONS(2928), + [anon_sym_restrict] = ACTIONS(2928), + [anon_sym___restrict__] = ACTIONS(2928), + [anon_sym__Atomic] = ACTIONS(2928), + [anon_sym__Noreturn] = ACTIONS(2928), + [anon_sym_noreturn] = ACTIONS(2928), + [anon_sym_mutable] = ACTIONS(2928), + [anon_sym_constinit] = ACTIONS(2928), + [anon_sym_consteval] = ACTIONS(2928), + [anon_sym_signed] = ACTIONS(2928), + [anon_sym_unsigned] = ACTIONS(2928), + [anon_sym_long] = ACTIONS(2928), + [anon_sym_short] = ACTIONS(2928), + [sym_primitive_type] = ACTIONS(2928), + [anon_sym_enum] = ACTIONS(2928), + [anon_sym_class] = ACTIONS(2928), + [anon_sym_struct] = ACTIONS(2928), + [anon_sym_union] = ACTIONS(2928), + [anon_sym_if] = ACTIONS(2928), + [anon_sym_else] = ACTIONS(2928), + [anon_sym_switch] = ACTIONS(2928), + [anon_sym_case] = ACTIONS(2928), + [anon_sym_default] = ACTIONS(2928), + [anon_sym_while] = ACTIONS(2928), + [anon_sym_do] = ACTIONS(2928), + [anon_sym_for] = ACTIONS(2928), + [anon_sym_return] = ACTIONS(2928), + [anon_sym_break] = ACTIONS(2928), + [anon_sym_continue] = ACTIONS(2928), + [anon_sym_goto] = ACTIONS(2928), + [anon_sym_not] = ACTIONS(2928), + [anon_sym_compl] = ACTIONS(2928), + [anon_sym_DASH_DASH] = ACTIONS(2930), + [anon_sym_PLUS_PLUS] = ACTIONS(2930), + [anon_sym_sizeof] = ACTIONS(2928), + [anon_sym_offsetof] = ACTIONS(2928), + [anon_sym__Generic] = ACTIONS(2928), + [anon_sym_asm] = ACTIONS(2928), + [anon_sym___asm__] = ACTIONS(2928), + [sym_number_literal] = ACTIONS(2930), + [anon_sym_L_SQUOTE] = ACTIONS(2930), + [anon_sym_u_SQUOTE] = ACTIONS(2930), + [anon_sym_U_SQUOTE] = ACTIONS(2930), + [anon_sym_u8_SQUOTE] = ACTIONS(2930), + [anon_sym_SQUOTE] = ACTIONS(2930), + [anon_sym_L_DQUOTE] = ACTIONS(2930), + [anon_sym_u_DQUOTE] = ACTIONS(2930), + [anon_sym_U_DQUOTE] = ACTIONS(2930), + [anon_sym_u8_DQUOTE] = ACTIONS(2930), + [anon_sym_DQUOTE] = ACTIONS(2930), + [sym_true] = ACTIONS(2928), + [sym_false] = ACTIONS(2928), + [anon_sym_NULL] = ACTIONS(2928), + [anon_sym_nullptr] = ACTIONS(2928), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2928), + [anon_sym_decltype] = ACTIONS(2928), + [anon_sym_virtual] = ACTIONS(2928), + [anon_sym_explicit] = ACTIONS(2928), + [anon_sym_typename] = ACTIONS(2928), + [anon_sym_template] = ACTIONS(2928), + [anon_sym_operator] = ACTIONS(2928), + [anon_sym_try] = ACTIONS(2928), + [anon_sym_delete] = ACTIONS(2928), + [anon_sym_throw] = ACTIONS(2928), + [anon_sym_namespace] = ACTIONS(2928), + [anon_sym_using] = ACTIONS(2928), + [anon_sym_static_assert] = ACTIONS(2928), + [anon_sym_concept] = ACTIONS(2928), + [anon_sym_co_return] = ACTIONS(2928), + [anon_sym_co_yield] = ACTIONS(2928), + [anon_sym_R_DQUOTE] = ACTIONS(2930), + [anon_sym_LR_DQUOTE] = ACTIONS(2930), + [anon_sym_uR_DQUOTE] = ACTIONS(2930), + [anon_sym_UR_DQUOTE] = ACTIONS(2930), + [anon_sym_u8R_DQUOTE] = ACTIONS(2930), + [anon_sym_co_await] = ACTIONS(2928), + [anon_sym_new] = ACTIONS(2928), + [anon_sym_requires] = ACTIONS(2928), + [sym_this] = ACTIONS(2928), }, [631] = { - [sym_identifier] = ACTIONS(2562), - [aux_sym_preproc_include_token1] = ACTIONS(2562), - [aux_sym_preproc_def_token1] = ACTIONS(2562), - [aux_sym_preproc_if_token1] = ACTIONS(2562), - [aux_sym_preproc_if_token2] = ACTIONS(2562), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2562), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2562), - [sym_preproc_directive] = ACTIONS(2562), - [anon_sym_LPAREN2] = ACTIONS(2564), - [anon_sym_BANG] = ACTIONS(2564), - [anon_sym_TILDE] = ACTIONS(2564), - [anon_sym_DASH] = ACTIONS(2562), - [anon_sym_PLUS] = ACTIONS(2562), - [anon_sym_STAR] = ACTIONS(2564), - [anon_sym_AMP_AMP] = ACTIONS(2564), - [anon_sym_AMP] = ACTIONS(2562), - [anon_sym_SEMI] = ACTIONS(2564), - [anon_sym_typedef] = ACTIONS(2562), - [anon_sym_extern] = ACTIONS(2562), - [anon_sym___attribute__] = ACTIONS(2562), - [anon_sym_COLON_COLON] = ACTIONS(2564), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2564), - [anon_sym___declspec] = ACTIONS(2562), - [anon_sym___based] = ACTIONS(2562), - [anon_sym___cdecl] = ACTIONS(2562), - [anon_sym___clrcall] = ACTIONS(2562), - [anon_sym___stdcall] = ACTIONS(2562), - [anon_sym___fastcall] = ACTIONS(2562), - [anon_sym___thiscall] = ACTIONS(2562), - [anon_sym___vectorcall] = ACTIONS(2562), - [anon_sym_LBRACE] = ACTIONS(2564), - [anon_sym_LBRACK] = ACTIONS(2562), - [anon_sym_static] = ACTIONS(2562), - [anon_sym_register] = ACTIONS(2562), - [anon_sym_inline] = ACTIONS(2562), - [anon_sym_thread_local] = ACTIONS(2562), - [anon_sym_const] = ACTIONS(2562), - [anon_sym_volatile] = ACTIONS(2562), - [anon_sym_restrict] = ACTIONS(2562), - [anon_sym__Atomic] = ACTIONS(2562), - [anon_sym_mutable] = ACTIONS(2562), - [anon_sym_constexpr] = ACTIONS(2562), - [anon_sym_constinit] = ACTIONS(2562), - [anon_sym_consteval] = ACTIONS(2562), - [anon_sym_signed] = ACTIONS(2562), - [anon_sym_unsigned] = ACTIONS(2562), - [anon_sym_long] = ACTIONS(2562), - [anon_sym_short] = ACTIONS(2562), - [sym_primitive_type] = ACTIONS(2562), - [anon_sym_enum] = ACTIONS(2562), - [anon_sym_class] = ACTIONS(2562), - [anon_sym_struct] = ACTIONS(2562), - [anon_sym_union] = ACTIONS(2562), - [anon_sym_if] = ACTIONS(2562), - [anon_sym_else] = ACTIONS(2562), - [anon_sym_switch] = ACTIONS(2562), - [anon_sym_case] = ACTIONS(2562), - [anon_sym_default] = ACTIONS(2562), - [anon_sym_while] = ACTIONS(2562), - [anon_sym_do] = ACTIONS(2562), - [anon_sym_for] = ACTIONS(2562), - [anon_sym_return] = ACTIONS(2562), - [anon_sym_break] = ACTIONS(2562), - [anon_sym_continue] = ACTIONS(2562), - [anon_sym_goto] = ACTIONS(2562), - [anon_sym_not] = ACTIONS(2562), - [anon_sym_compl] = ACTIONS(2562), - [anon_sym_DASH_DASH] = ACTIONS(2564), - [anon_sym_PLUS_PLUS] = ACTIONS(2564), - [anon_sym_sizeof] = ACTIONS(2562), - [sym_number_literal] = ACTIONS(2564), - [anon_sym_L_SQUOTE] = ACTIONS(2564), - [anon_sym_u_SQUOTE] = ACTIONS(2564), - [anon_sym_U_SQUOTE] = ACTIONS(2564), - [anon_sym_u8_SQUOTE] = ACTIONS(2564), - [anon_sym_SQUOTE] = ACTIONS(2564), - [anon_sym_L_DQUOTE] = ACTIONS(2564), - [anon_sym_u_DQUOTE] = ACTIONS(2564), - [anon_sym_U_DQUOTE] = ACTIONS(2564), - [anon_sym_u8_DQUOTE] = ACTIONS(2564), - [anon_sym_DQUOTE] = ACTIONS(2564), - [sym_true] = ACTIONS(2562), - [sym_false] = ACTIONS(2562), - [sym_null] = ACTIONS(2562), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2562), - [anon_sym_decltype] = ACTIONS(2562), - [anon_sym_virtual] = ACTIONS(2562), - [anon_sym_explicit] = ACTIONS(2562), - [anon_sym_typename] = ACTIONS(2562), - [anon_sym_template] = ACTIONS(2562), - [anon_sym_operator] = ACTIONS(2562), - [anon_sym_try] = ACTIONS(2562), - [anon_sym_delete] = ACTIONS(2562), - [anon_sym_throw] = ACTIONS(2562), - [anon_sym_namespace] = ACTIONS(2562), - [anon_sym_using] = ACTIONS(2562), - [anon_sym_static_assert] = ACTIONS(2562), - [anon_sym_concept] = ACTIONS(2562), - [anon_sym_co_return] = ACTIONS(2562), - [anon_sym_co_yield] = ACTIONS(2562), - [anon_sym_R_DQUOTE] = ACTIONS(2564), - [anon_sym_LR_DQUOTE] = ACTIONS(2564), - [anon_sym_uR_DQUOTE] = ACTIONS(2564), - [anon_sym_UR_DQUOTE] = ACTIONS(2564), - [anon_sym_u8R_DQUOTE] = ACTIONS(2564), - [anon_sym_co_await] = ACTIONS(2562), - [anon_sym_new] = ACTIONS(2562), - [anon_sym_requires] = ACTIONS(2562), - [sym_this] = ACTIONS(2562), - [sym_nullptr] = ACTIONS(2562), + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token2] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [aux_sym_preproc_else_token1] = ACTIONS(3028), + [aux_sym_preproc_elif_token1] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, [632] = { - [ts_builtin_sym_end] = ACTIONS(2616), - [sym_identifier] = ACTIONS(2614), - [aux_sym_preproc_include_token1] = ACTIONS(2614), - [aux_sym_preproc_def_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2614), - [sym_preproc_directive] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP_AMP] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2614), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym___based] = ACTIONS(2614), - [anon_sym___cdecl] = ACTIONS(2614), - [anon_sym___clrcall] = ACTIONS(2614), - [anon_sym___stdcall] = ACTIONS(2614), - [anon_sym___fastcall] = ACTIONS(2614), - [anon_sym___thiscall] = ACTIONS(2614), - [anon_sym___vectorcall] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_case] = ACTIONS(2614), - [anon_sym_default] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_explicit] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_operator] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_namespace] = ACTIONS(2614), - [anon_sym_using] = ACTIONS(2614), - [anon_sym_static_assert] = ACTIONS(2614), - [anon_sym_concept] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token2] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [aux_sym_preproc_else_token1] = ACTIONS(3048), + [aux_sym_preproc_elif_token1] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, [633] = { - [sym_identifier] = ACTIONS(2576), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2578), - [anon_sym_AMP] = ACTIONS(2576), - [anon_sym_SEMI] = ACTIONS(2578), - [anon_sym_typedef] = ACTIONS(2576), - [anon_sym_extern] = ACTIONS(2576), - [anon_sym___attribute__] = ACTIONS(2576), - [anon_sym_COLON_COLON] = ACTIONS(2578), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2578), - [anon_sym___declspec] = ACTIONS(2576), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2576), - [anon_sym_static] = ACTIONS(2576), - [anon_sym_register] = ACTIONS(2576), - [anon_sym_inline] = ACTIONS(2576), - [anon_sym_thread_local] = ACTIONS(2576), - [anon_sym_const] = ACTIONS(2576), - [anon_sym_volatile] = ACTIONS(2576), - [anon_sym_restrict] = ACTIONS(2576), - [anon_sym__Atomic] = ACTIONS(2576), - [anon_sym_mutable] = ACTIONS(2576), - [anon_sym_constexpr] = ACTIONS(2576), - [anon_sym_constinit] = ACTIONS(2576), - [anon_sym_consteval] = ACTIONS(2576), - [anon_sym_signed] = ACTIONS(2576), - [anon_sym_unsigned] = ACTIONS(2576), - [anon_sym_long] = ACTIONS(2576), - [anon_sym_short] = ACTIONS(2576), - [sym_primitive_type] = ACTIONS(2576), - [anon_sym_enum] = ACTIONS(2576), - [anon_sym_class] = ACTIONS(2576), - [anon_sym_struct] = ACTIONS(2576), - [anon_sym_union] = ACTIONS(2576), - [anon_sym_if] = ACTIONS(2576), - [anon_sym_else] = 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_return] = ACTIONS(2576), - [anon_sym_break] = ACTIONS(2576), - [anon_sym_continue] = ACTIONS(2576), - [anon_sym_goto] = ACTIONS(2576), - [anon_sym_not] = ACTIONS(2576), - [anon_sym_compl] = ACTIONS(2576), - [anon_sym_DASH_DASH] = ACTIONS(2578), - [anon_sym_PLUS_PLUS] = ACTIONS(2578), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2578), - [anon_sym_u_DQUOTE] = ACTIONS(2578), - [anon_sym_U_DQUOTE] = ACTIONS(2578), - [anon_sym_u8_DQUOTE] = ACTIONS(2578), - [anon_sym_DQUOTE] = ACTIONS(2578), - [sym_true] = ACTIONS(2576), - [sym_false] = ACTIONS(2576), - [sym_null] = ACTIONS(2576), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2576), - [anon_sym_decltype] = ACTIONS(2576), - [anon_sym_virtual] = ACTIONS(2576), - [anon_sym_explicit] = ACTIONS(2576), - [anon_sym_typename] = ACTIONS(2576), - [anon_sym_template] = ACTIONS(2576), - [anon_sym_operator] = ACTIONS(2576), - [anon_sym_try] = ACTIONS(2576), - [anon_sym_delete] = ACTIONS(2576), - [anon_sym_throw] = ACTIONS(2576), - [anon_sym_namespace] = ACTIONS(2576), - [anon_sym_using] = ACTIONS(2576), - [anon_sym_static_assert] = ACTIONS(2576), - [anon_sym_concept] = ACTIONS(2576), - [anon_sym_co_return] = ACTIONS(2576), - [anon_sym_co_yield] = ACTIONS(2576), - [anon_sym_R_DQUOTE] = ACTIONS(2578), - [anon_sym_LR_DQUOTE] = ACTIONS(2578), - [anon_sym_uR_DQUOTE] = ACTIONS(2578), - [anon_sym_UR_DQUOTE] = ACTIONS(2578), - [anon_sym_u8R_DQUOTE] = ACTIONS(2578), - [anon_sym_co_await] = ACTIONS(2576), - [anon_sym_new] = ACTIONS(2576), - [anon_sym_requires] = ACTIONS(2576), - [sym_this] = ACTIONS(2576), - [sym_nullptr] = ACTIONS(2576), + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token2] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [aux_sym_preproc_else_token1] = ACTIONS(3028), + [aux_sym_preproc_elif_token1] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, [634] = { - [sym_identifier] = ACTIONS(2580), - [aux_sym_preproc_include_token1] = ACTIONS(2580), - [aux_sym_preproc_def_token1] = ACTIONS(2580), - [aux_sym_preproc_if_token1] = ACTIONS(2580), - [aux_sym_preproc_if_token2] = ACTIONS(2580), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2580), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2580), - [sym_preproc_directive] = ACTIONS(2580), - [anon_sym_LPAREN2] = ACTIONS(2582), - [anon_sym_BANG] = ACTIONS(2582), - [anon_sym_TILDE] = ACTIONS(2582), - [anon_sym_DASH] = ACTIONS(2580), - [anon_sym_PLUS] = ACTIONS(2580), - [anon_sym_STAR] = ACTIONS(2582), - [anon_sym_AMP_AMP] = ACTIONS(2582), - [anon_sym_AMP] = ACTIONS(2580), - [anon_sym_SEMI] = ACTIONS(2582), - [anon_sym_typedef] = ACTIONS(2580), - [anon_sym_extern] = ACTIONS(2580), - [anon_sym___attribute__] = ACTIONS(2580), - [anon_sym_COLON_COLON] = ACTIONS(2582), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2582), - [anon_sym___declspec] = ACTIONS(2580), - [anon_sym___based] = ACTIONS(2580), - [anon_sym___cdecl] = ACTIONS(2580), - [anon_sym___clrcall] = ACTIONS(2580), - [anon_sym___stdcall] = ACTIONS(2580), - [anon_sym___fastcall] = ACTIONS(2580), - [anon_sym___thiscall] = ACTIONS(2580), - [anon_sym___vectorcall] = ACTIONS(2580), - [anon_sym_LBRACE] = ACTIONS(2582), - [anon_sym_LBRACK] = ACTIONS(2580), - [anon_sym_static] = ACTIONS(2580), - [anon_sym_register] = ACTIONS(2580), - [anon_sym_inline] = ACTIONS(2580), - [anon_sym_thread_local] = ACTIONS(2580), - [anon_sym_const] = ACTIONS(2580), - [anon_sym_volatile] = ACTIONS(2580), - [anon_sym_restrict] = ACTIONS(2580), - [anon_sym__Atomic] = ACTIONS(2580), - [anon_sym_mutable] = ACTIONS(2580), - [anon_sym_constexpr] = ACTIONS(2580), - [anon_sym_constinit] = ACTIONS(2580), - [anon_sym_consteval] = ACTIONS(2580), - [anon_sym_signed] = ACTIONS(2580), - [anon_sym_unsigned] = ACTIONS(2580), - [anon_sym_long] = ACTIONS(2580), - [anon_sym_short] = ACTIONS(2580), - [sym_primitive_type] = ACTIONS(2580), - [anon_sym_enum] = ACTIONS(2580), - [anon_sym_class] = ACTIONS(2580), - [anon_sym_struct] = ACTIONS(2580), - [anon_sym_union] = ACTIONS(2580), - [anon_sym_if] = ACTIONS(2580), - [anon_sym_else] = ACTIONS(2580), - [anon_sym_switch] = ACTIONS(2580), - [anon_sym_case] = ACTIONS(2580), - [anon_sym_default] = ACTIONS(2580), - [anon_sym_while] = ACTIONS(2580), - [anon_sym_do] = ACTIONS(2580), - [anon_sym_for] = ACTIONS(2580), - [anon_sym_return] = ACTIONS(2580), - [anon_sym_break] = ACTIONS(2580), - [anon_sym_continue] = ACTIONS(2580), - [anon_sym_goto] = ACTIONS(2580), - [anon_sym_not] = ACTIONS(2580), - [anon_sym_compl] = ACTIONS(2580), - [anon_sym_DASH_DASH] = ACTIONS(2582), - [anon_sym_PLUS_PLUS] = ACTIONS(2582), - [anon_sym_sizeof] = ACTIONS(2580), - [sym_number_literal] = ACTIONS(2582), - [anon_sym_L_SQUOTE] = ACTIONS(2582), - [anon_sym_u_SQUOTE] = ACTIONS(2582), - [anon_sym_U_SQUOTE] = ACTIONS(2582), - [anon_sym_u8_SQUOTE] = ACTIONS(2582), - [anon_sym_SQUOTE] = ACTIONS(2582), - [anon_sym_L_DQUOTE] = ACTIONS(2582), - [anon_sym_u_DQUOTE] = ACTIONS(2582), - [anon_sym_U_DQUOTE] = ACTIONS(2582), - [anon_sym_u8_DQUOTE] = ACTIONS(2582), - [anon_sym_DQUOTE] = ACTIONS(2582), - [sym_true] = ACTIONS(2580), - [sym_false] = ACTIONS(2580), - [sym_null] = ACTIONS(2580), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2580), - [anon_sym_decltype] = ACTIONS(2580), - [anon_sym_virtual] = ACTIONS(2580), - [anon_sym_explicit] = ACTIONS(2580), - [anon_sym_typename] = ACTIONS(2580), - [anon_sym_template] = ACTIONS(2580), - [anon_sym_operator] = ACTIONS(2580), - [anon_sym_try] = ACTIONS(2580), - [anon_sym_delete] = ACTIONS(2580), - [anon_sym_throw] = ACTIONS(2580), - [anon_sym_namespace] = ACTIONS(2580), - [anon_sym_using] = ACTIONS(2580), - [anon_sym_static_assert] = ACTIONS(2580), - [anon_sym_concept] = ACTIONS(2580), - [anon_sym_co_return] = ACTIONS(2580), - [anon_sym_co_yield] = ACTIONS(2580), - [anon_sym_R_DQUOTE] = ACTIONS(2582), - [anon_sym_LR_DQUOTE] = ACTIONS(2582), - [anon_sym_uR_DQUOTE] = ACTIONS(2582), - [anon_sym_UR_DQUOTE] = ACTIONS(2582), - [anon_sym_u8R_DQUOTE] = ACTIONS(2582), - [anon_sym_co_await] = ACTIONS(2580), - [anon_sym_new] = ACTIONS(2580), - [anon_sym_requires] = ACTIONS(2580), - [sym_this] = ACTIONS(2580), - [sym_nullptr] = ACTIONS(2580), + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token2] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [aux_sym_preproc_else_token1] = ACTIONS(3028), + [aux_sym_preproc_elif_token1] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, [635] = { - [sym_identifier] = ACTIONS(2584), - [aux_sym_preproc_include_token1] = ACTIONS(2584), - [aux_sym_preproc_def_token1] = ACTIONS(2584), - [aux_sym_preproc_if_token1] = ACTIONS(2584), - [aux_sym_preproc_if_token2] = ACTIONS(2584), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2584), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2584), - [sym_preproc_directive] = ACTIONS(2584), - [anon_sym_LPAREN2] = ACTIONS(2586), - [anon_sym_BANG] = ACTIONS(2586), - [anon_sym_TILDE] = ACTIONS(2586), - [anon_sym_DASH] = ACTIONS(2584), - [anon_sym_PLUS] = ACTIONS(2584), - [anon_sym_STAR] = ACTIONS(2586), - [anon_sym_AMP_AMP] = ACTIONS(2586), - [anon_sym_AMP] = ACTIONS(2584), - [anon_sym_SEMI] = ACTIONS(2586), - [anon_sym_typedef] = ACTIONS(2584), - [anon_sym_extern] = ACTIONS(2584), - [anon_sym___attribute__] = ACTIONS(2584), - [anon_sym_COLON_COLON] = ACTIONS(2586), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2586), - [anon_sym___declspec] = ACTIONS(2584), - [anon_sym___based] = ACTIONS(2584), - [anon_sym___cdecl] = ACTIONS(2584), - [anon_sym___clrcall] = ACTIONS(2584), - [anon_sym___stdcall] = ACTIONS(2584), - [anon_sym___fastcall] = ACTIONS(2584), - [anon_sym___thiscall] = ACTIONS(2584), - [anon_sym___vectorcall] = ACTIONS(2584), - [anon_sym_LBRACE] = ACTIONS(2586), - [anon_sym_LBRACK] = ACTIONS(2584), - [anon_sym_static] = ACTIONS(2584), - [anon_sym_register] = ACTIONS(2584), - [anon_sym_inline] = ACTIONS(2584), - [anon_sym_thread_local] = ACTIONS(2584), - [anon_sym_const] = ACTIONS(2584), - [anon_sym_volatile] = ACTIONS(2584), - [anon_sym_restrict] = ACTIONS(2584), - [anon_sym__Atomic] = ACTIONS(2584), - [anon_sym_mutable] = ACTIONS(2584), - [anon_sym_constexpr] = ACTIONS(2584), - [anon_sym_constinit] = ACTIONS(2584), - [anon_sym_consteval] = ACTIONS(2584), - [anon_sym_signed] = ACTIONS(2584), - [anon_sym_unsigned] = ACTIONS(2584), - [anon_sym_long] = ACTIONS(2584), - [anon_sym_short] = ACTIONS(2584), - [sym_primitive_type] = ACTIONS(2584), - [anon_sym_enum] = ACTIONS(2584), - [anon_sym_class] = ACTIONS(2584), - [anon_sym_struct] = ACTIONS(2584), + [sym_preproc_def] = STATE(743), + [sym_preproc_function_def] = STATE(743), + [sym_preproc_call] = STATE(743), + [sym_preproc_if_in_field_declaration_list] = STATE(743), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(743), + [sym_type_definition] = STATE(743), + [sym__declaration_modifiers] = STATE(3706), + [sym__declaration_specifiers] = STATE(4831), + [sym_attribute_specifier] = STATE(3706), + [sym_attribute_declaration] = STATE(3706), + [sym_ms_declspec_modifier] = STATE(3706), + [sym_ms_based_modifier] = STATE(7654), + [sym__declarator] = STATE(5881), + [sym_parenthesized_declarator] = STATE(5640), + [sym_attributed_declarator] = STATE(5640), + [sym_pointer_declarator] = STATE(5640), + [sym_function_declarator] = STATE(5531), + [sym_array_declarator] = STATE(5640), + [sym_storage_class_specifier] = STATE(3706), + [sym_type_qualifier] = STATE(3706), + [sym__type_specifier] = STATE(3845), + [sym_sized_type_specifier] = STATE(3918), + [sym_enum_specifier] = STATE(3918), + [sym_struct_specifier] = STATE(3918), + [sym_union_specifier] = STATE(3918), + [sym__field_declaration_list_item] = STATE(743), + [sym_field_declaration] = STATE(743), + [sym_placeholder_type_specifier] = STATE(3918), + [sym_decltype_auto] = STATE(3916), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3918), + [sym_virtual] = STATE(3706), + [sym_explicit_function_specifier] = STATE(2247), + [sym_dependent_type] = STATE(3918), + [sym_template_declaration] = STATE(743), + [sym_operator_cast] = STATE(5897), + [sym_inline_method_definition] = STATE(743), + [sym__constructor_specifiers] = STATE(2247), + [sym_operator_cast_definition] = STATE(743), + [sym_operator_cast_declaration] = STATE(743), + [sym_constructor_or_destructor_definition] = STATE(743), + [sym_constructor_or_destructor_declaration] = STATE(743), + [sym_friend_declaration] = STATE(743), + [sym_access_specifier] = STATE(7346), + [sym_reference_declarator] = STATE(5640), + [sym_structured_binding_declarator] = STATE(5640), + [sym_template_type] = STATE(3680), + [sym_template_function] = STATE(5640), + [sym_using_declaration] = STATE(743), + [sym_alias_declaration] = STATE(743), + [sym_static_assert_declaration] = STATE(743), + [sym_destructor_name] = STATE(5640), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5151), + [sym_qualified_identifier] = STATE(5640), + [sym_qualified_type_identifier] = STATE(3966), + [sym_qualified_operator_cast_identifier] = STATE(5897), + [sym_operator_name] = STATE(5640), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(743), + [aux_sym__declaration_specifiers_repeat1] = STATE(2509), + [aux_sym_sized_type_specifier_repeat1] = STATE(3981), + [aux_sym_operator_cast_definition_repeat1] = STATE(2247), + [sym_identifier] = ACTIONS(2544), + [aux_sym_preproc_def_token1] = ACTIONS(3479), + [aux_sym_preproc_if_token1] = ACTIONS(3481), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3483), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3483), + [sym_preproc_directive] = ACTIONS(3485), + [anon_sym_LPAREN2] = ACTIONS(2560), + [anon_sym_TILDE] = ACTIONS(2562), + [anon_sym_STAR] = ACTIONS(2564), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_typedef] = ACTIONS(3487), + [anon_sym_extern] = ACTIONS(53), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(2570), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1813), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(45), + [anon_sym_RBRACE] = ACTIONS(3507), + [anon_sym_LBRACK] = ACTIONS(2572), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(53), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(2574), + [anon_sym_unsigned] = ACTIONS(2574), + [anon_sym_long] = ACTIONS(2574), + [anon_sym_short] = ACTIONS(2574), + [sym_primitive_type] = ACTIONS(2576), + [anon_sym_enum] = ACTIONS(2578), + [anon_sym_class] = ACTIONS(2580), + [anon_sym_struct] = ACTIONS(2582), [anon_sym_union] = ACTIONS(2584), - [anon_sym_if] = ACTIONS(2584), - [anon_sym_else] = ACTIONS(2584), - [anon_sym_switch] = ACTIONS(2584), - [anon_sym_case] = ACTIONS(2584), - [anon_sym_default] = ACTIONS(2584), - [anon_sym_while] = ACTIONS(2584), - [anon_sym_do] = ACTIONS(2584), - [anon_sym_for] = ACTIONS(2584), - [anon_sym_return] = ACTIONS(2584), - [anon_sym_break] = ACTIONS(2584), - [anon_sym_continue] = ACTIONS(2584), - [anon_sym_goto] = ACTIONS(2584), - [anon_sym_not] = ACTIONS(2584), - [anon_sym_compl] = ACTIONS(2584), - [anon_sym_DASH_DASH] = ACTIONS(2586), - [anon_sym_PLUS_PLUS] = ACTIONS(2586), - [anon_sym_sizeof] = ACTIONS(2584), - [sym_number_literal] = ACTIONS(2586), - [anon_sym_L_SQUOTE] = ACTIONS(2586), - [anon_sym_u_SQUOTE] = ACTIONS(2586), - [anon_sym_U_SQUOTE] = ACTIONS(2586), - [anon_sym_u8_SQUOTE] = ACTIONS(2586), - [anon_sym_SQUOTE] = ACTIONS(2586), - [anon_sym_L_DQUOTE] = ACTIONS(2586), - [anon_sym_u_DQUOTE] = ACTIONS(2586), - [anon_sym_U_DQUOTE] = ACTIONS(2586), - [anon_sym_u8_DQUOTE] = ACTIONS(2586), - [anon_sym_DQUOTE] = ACTIONS(2586), - [sym_true] = ACTIONS(2584), - [sym_false] = ACTIONS(2584), - [sym_null] = ACTIONS(2584), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2584), - [anon_sym_decltype] = ACTIONS(2584), - [anon_sym_virtual] = ACTIONS(2584), - [anon_sym_explicit] = ACTIONS(2584), - [anon_sym_typename] = ACTIONS(2584), - [anon_sym_template] = ACTIONS(2584), - [anon_sym_operator] = ACTIONS(2584), - [anon_sym_try] = ACTIONS(2584), - [anon_sym_delete] = ACTIONS(2584), - [anon_sym_throw] = ACTIONS(2584), - [anon_sym_namespace] = ACTIONS(2584), - [anon_sym_using] = ACTIONS(2584), - [anon_sym_static_assert] = ACTIONS(2584), - [anon_sym_concept] = ACTIONS(2584), - [anon_sym_co_return] = ACTIONS(2584), - [anon_sym_co_yield] = ACTIONS(2584), - [anon_sym_R_DQUOTE] = ACTIONS(2586), - [anon_sym_LR_DQUOTE] = ACTIONS(2586), - [anon_sym_uR_DQUOTE] = ACTIONS(2586), - [anon_sym_UR_DQUOTE] = ACTIONS(2586), - [anon_sym_u8R_DQUOTE] = ACTIONS(2586), - [anon_sym_co_await] = ACTIONS(2584), - [anon_sym_new] = ACTIONS(2584), - [anon_sym_requires] = ACTIONS(2584), - [sym_this] = ACTIONS(2584), - [sym_nullptr] = ACTIONS(2584), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2586), + [anon_sym_decltype] = ACTIONS(2588), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_explicit] = ACTIONS(119), + [anon_sym_typename] = ACTIONS(2590), + [anon_sym_template] = ACTIONS(3491), + [anon_sym_operator] = ACTIONS(125), + [anon_sym_friend] = ACTIONS(3493), + [anon_sym_public] = ACTIONS(2596), + [anon_sym_private] = ACTIONS(2596), + [anon_sym_protected] = ACTIONS(2596), + [anon_sym_using] = ACTIONS(3495), + [anon_sym_static_assert] = ACTIONS(3497), }, [636] = { - [sym_identifier] = ACTIONS(2588), - [aux_sym_preproc_include_token1] = ACTIONS(2588), - [aux_sym_preproc_def_token1] = ACTIONS(2588), - [aux_sym_preproc_if_token1] = ACTIONS(2588), - [aux_sym_preproc_if_token2] = ACTIONS(2588), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2588), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2588), - [sym_preproc_directive] = ACTIONS(2588), - [anon_sym_LPAREN2] = ACTIONS(2590), - [anon_sym_BANG] = ACTIONS(2590), - [anon_sym_TILDE] = ACTIONS(2590), - [anon_sym_DASH] = ACTIONS(2588), - [anon_sym_PLUS] = ACTIONS(2588), - [anon_sym_STAR] = ACTIONS(2590), - [anon_sym_AMP_AMP] = ACTIONS(2590), - [anon_sym_AMP] = ACTIONS(2588), - [anon_sym_SEMI] = ACTIONS(2590), - [anon_sym_typedef] = ACTIONS(2588), - [anon_sym_extern] = ACTIONS(2588), - [anon_sym___attribute__] = ACTIONS(2588), - [anon_sym_COLON_COLON] = ACTIONS(2590), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2590), - [anon_sym___declspec] = ACTIONS(2588), - [anon_sym___based] = ACTIONS(2588), - [anon_sym___cdecl] = ACTIONS(2588), - [anon_sym___clrcall] = ACTIONS(2588), - [anon_sym___stdcall] = ACTIONS(2588), - [anon_sym___fastcall] = ACTIONS(2588), - [anon_sym___thiscall] = ACTIONS(2588), - [anon_sym___vectorcall] = ACTIONS(2588), - [anon_sym_LBRACE] = ACTIONS(2590), - [anon_sym_LBRACK] = ACTIONS(2588), - [anon_sym_static] = ACTIONS(2588), - [anon_sym_register] = ACTIONS(2588), - [anon_sym_inline] = ACTIONS(2588), - [anon_sym_thread_local] = ACTIONS(2588), - [anon_sym_const] = ACTIONS(2588), - [anon_sym_volatile] = ACTIONS(2588), - [anon_sym_restrict] = ACTIONS(2588), - [anon_sym__Atomic] = ACTIONS(2588), - [anon_sym_mutable] = ACTIONS(2588), - [anon_sym_constexpr] = ACTIONS(2588), - [anon_sym_constinit] = ACTIONS(2588), - [anon_sym_consteval] = ACTIONS(2588), - [anon_sym_signed] = ACTIONS(2588), - [anon_sym_unsigned] = ACTIONS(2588), - [anon_sym_long] = ACTIONS(2588), - [anon_sym_short] = ACTIONS(2588), - [sym_primitive_type] = ACTIONS(2588), - [anon_sym_enum] = ACTIONS(2588), - [anon_sym_class] = ACTIONS(2588), - [anon_sym_struct] = ACTIONS(2588), - [anon_sym_union] = ACTIONS(2588), - [anon_sym_if] = ACTIONS(2588), - [anon_sym_else] = ACTIONS(2588), - [anon_sym_switch] = ACTIONS(2588), - [anon_sym_case] = ACTIONS(2588), - [anon_sym_default] = ACTIONS(2588), - [anon_sym_while] = ACTIONS(2588), - [anon_sym_do] = ACTIONS(2588), - [anon_sym_for] = ACTIONS(2588), - [anon_sym_return] = ACTIONS(2588), - [anon_sym_break] = ACTIONS(2588), - [anon_sym_continue] = ACTIONS(2588), - [anon_sym_goto] = ACTIONS(2588), - [anon_sym_not] = ACTIONS(2588), - [anon_sym_compl] = ACTIONS(2588), - [anon_sym_DASH_DASH] = ACTIONS(2590), - [anon_sym_PLUS_PLUS] = ACTIONS(2590), - [anon_sym_sizeof] = ACTIONS(2588), - [sym_number_literal] = ACTIONS(2590), - [anon_sym_L_SQUOTE] = ACTIONS(2590), - [anon_sym_u_SQUOTE] = ACTIONS(2590), - [anon_sym_U_SQUOTE] = ACTIONS(2590), - [anon_sym_u8_SQUOTE] = ACTIONS(2590), - [anon_sym_SQUOTE] = ACTIONS(2590), - [anon_sym_L_DQUOTE] = ACTIONS(2590), - [anon_sym_u_DQUOTE] = ACTIONS(2590), - [anon_sym_U_DQUOTE] = ACTIONS(2590), - [anon_sym_u8_DQUOTE] = ACTIONS(2590), - [anon_sym_DQUOTE] = ACTIONS(2590), - [sym_true] = ACTIONS(2588), - [sym_false] = ACTIONS(2588), - [sym_null] = ACTIONS(2588), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2588), - [anon_sym_decltype] = ACTIONS(2588), - [anon_sym_virtual] = ACTIONS(2588), - [anon_sym_explicit] = ACTIONS(2588), - [anon_sym_typename] = ACTIONS(2588), - [anon_sym_template] = ACTIONS(2588), - [anon_sym_operator] = ACTIONS(2588), - [anon_sym_try] = ACTIONS(2588), - [anon_sym_delete] = ACTIONS(2588), - [anon_sym_throw] = ACTIONS(2588), - [anon_sym_namespace] = ACTIONS(2588), - [anon_sym_using] = ACTIONS(2588), - [anon_sym_static_assert] = ACTIONS(2588), - [anon_sym_concept] = ACTIONS(2588), - [anon_sym_co_return] = ACTIONS(2588), - [anon_sym_co_yield] = ACTIONS(2588), - [anon_sym_R_DQUOTE] = ACTIONS(2590), - [anon_sym_LR_DQUOTE] = ACTIONS(2590), - [anon_sym_uR_DQUOTE] = ACTIONS(2590), - [anon_sym_UR_DQUOTE] = ACTIONS(2590), - [anon_sym_u8R_DQUOTE] = ACTIONS(2590), - [anon_sym_co_await] = ACTIONS(2588), - [anon_sym_new] = ACTIONS(2588), - [anon_sym_requires] = ACTIONS(2588), - [sym_this] = ACTIONS(2588), - [sym_nullptr] = ACTIONS(2588), + [sym_identifier] = ACTIONS(3032), + [aux_sym_preproc_include_token1] = ACTIONS(3032), + [aux_sym_preproc_def_token1] = ACTIONS(3032), + [aux_sym_preproc_if_token1] = ACTIONS(3032), + [aux_sym_preproc_if_token2] = ACTIONS(3032), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3032), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3032), + [aux_sym_preproc_else_token1] = ACTIONS(3032), + [aux_sym_preproc_elif_token1] = ACTIONS(3032), + [sym_preproc_directive] = ACTIONS(3032), + [anon_sym_LPAREN2] = ACTIONS(3034), + [anon_sym_BANG] = ACTIONS(3034), + [anon_sym_TILDE] = ACTIONS(3034), + [anon_sym_DASH] = ACTIONS(3032), + [anon_sym_PLUS] = ACTIONS(3032), + [anon_sym_STAR] = ACTIONS(3034), + [anon_sym_AMP_AMP] = ACTIONS(3034), + [anon_sym_AMP] = ACTIONS(3032), + [anon_sym_SEMI] = ACTIONS(3034), + [anon_sym_typedef] = ACTIONS(3032), + [anon_sym_extern] = ACTIONS(3032), + [anon_sym___attribute__] = ACTIONS(3032), + [anon_sym_COLON_COLON] = ACTIONS(3034), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3034), + [anon_sym___declspec] = ACTIONS(3032), + [anon_sym___based] = ACTIONS(3032), + [anon_sym___cdecl] = ACTIONS(3032), + [anon_sym___clrcall] = ACTIONS(3032), + [anon_sym___stdcall] = ACTIONS(3032), + [anon_sym___fastcall] = ACTIONS(3032), + [anon_sym___thiscall] = ACTIONS(3032), + [anon_sym___vectorcall] = ACTIONS(3032), + [anon_sym_LBRACE] = ACTIONS(3034), + [anon_sym_LBRACK] = ACTIONS(3032), + [anon_sym_static] = ACTIONS(3032), + [anon_sym_register] = ACTIONS(3032), + [anon_sym_inline] = ACTIONS(3032), + [anon_sym_thread_local] = ACTIONS(3032), + [anon_sym_const] = ACTIONS(3032), + [anon_sym_constexpr] = ACTIONS(3032), + [anon_sym_volatile] = ACTIONS(3032), + [anon_sym_restrict] = ACTIONS(3032), + [anon_sym___restrict__] = ACTIONS(3032), + [anon_sym__Atomic] = ACTIONS(3032), + [anon_sym__Noreturn] = ACTIONS(3032), + [anon_sym_noreturn] = ACTIONS(3032), + [anon_sym_mutable] = ACTIONS(3032), + [anon_sym_constinit] = ACTIONS(3032), + [anon_sym_consteval] = ACTIONS(3032), + [anon_sym_signed] = ACTIONS(3032), + [anon_sym_unsigned] = ACTIONS(3032), + [anon_sym_long] = ACTIONS(3032), + [anon_sym_short] = ACTIONS(3032), + [sym_primitive_type] = ACTIONS(3032), + [anon_sym_enum] = ACTIONS(3032), + [anon_sym_class] = ACTIONS(3032), + [anon_sym_struct] = ACTIONS(3032), + [anon_sym_union] = ACTIONS(3032), + [anon_sym_if] = ACTIONS(3032), + [anon_sym_else] = ACTIONS(3032), + [anon_sym_switch] = ACTIONS(3032), + [anon_sym_case] = ACTIONS(3032), + [anon_sym_default] = ACTIONS(3032), + [anon_sym_while] = ACTIONS(3032), + [anon_sym_do] = ACTIONS(3032), + [anon_sym_for] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3032), + [anon_sym_break] = ACTIONS(3032), + [anon_sym_continue] = ACTIONS(3032), + [anon_sym_goto] = ACTIONS(3032), + [anon_sym_not] = ACTIONS(3032), + [anon_sym_compl] = ACTIONS(3032), + [anon_sym_DASH_DASH] = ACTIONS(3034), + [anon_sym_PLUS_PLUS] = ACTIONS(3034), + [anon_sym_sizeof] = ACTIONS(3032), + [anon_sym_offsetof] = ACTIONS(3032), + [anon_sym__Generic] = ACTIONS(3032), + [anon_sym_asm] = ACTIONS(3032), + [anon_sym___asm__] = ACTIONS(3032), + [sym_number_literal] = ACTIONS(3034), + [anon_sym_L_SQUOTE] = ACTIONS(3034), + [anon_sym_u_SQUOTE] = ACTIONS(3034), + [anon_sym_U_SQUOTE] = ACTIONS(3034), + [anon_sym_u8_SQUOTE] = ACTIONS(3034), + [anon_sym_SQUOTE] = ACTIONS(3034), + [anon_sym_L_DQUOTE] = ACTIONS(3034), + [anon_sym_u_DQUOTE] = ACTIONS(3034), + [anon_sym_U_DQUOTE] = ACTIONS(3034), + [anon_sym_u8_DQUOTE] = ACTIONS(3034), + [anon_sym_DQUOTE] = ACTIONS(3034), + [sym_true] = ACTIONS(3032), + [sym_false] = ACTIONS(3032), + [anon_sym_NULL] = ACTIONS(3032), + [anon_sym_nullptr] = ACTIONS(3032), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3032), + [anon_sym_decltype] = ACTIONS(3032), + [anon_sym_virtual] = ACTIONS(3032), + [anon_sym_explicit] = ACTIONS(3032), + [anon_sym_typename] = ACTIONS(3032), + [anon_sym_template] = ACTIONS(3032), + [anon_sym_operator] = ACTIONS(3032), + [anon_sym_try] = ACTIONS(3032), + [anon_sym_delete] = ACTIONS(3032), + [anon_sym_throw] = ACTIONS(3032), + [anon_sym_namespace] = ACTIONS(3032), + [anon_sym_using] = ACTIONS(3032), + [anon_sym_static_assert] = ACTIONS(3032), + [anon_sym_concept] = ACTIONS(3032), + [anon_sym_co_return] = ACTIONS(3032), + [anon_sym_co_yield] = ACTIONS(3032), + [anon_sym_R_DQUOTE] = ACTIONS(3034), + [anon_sym_LR_DQUOTE] = ACTIONS(3034), + [anon_sym_uR_DQUOTE] = ACTIONS(3034), + [anon_sym_UR_DQUOTE] = ACTIONS(3034), + [anon_sym_u8R_DQUOTE] = ACTIONS(3034), + [anon_sym_co_await] = ACTIONS(3032), + [anon_sym_new] = ACTIONS(3032), + [anon_sym_requires] = ACTIONS(3032), + [sym_this] = ACTIONS(3032), }, [637] = { - [ts_builtin_sym_end] = ACTIONS(2616), - [sym_identifier] = ACTIONS(2614), - [aux_sym_preproc_include_token1] = ACTIONS(2614), - [aux_sym_preproc_def_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2614), - [sym_preproc_directive] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP_AMP] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2614), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym___based] = ACTIONS(2614), - [anon_sym___cdecl] = ACTIONS(2614), - [anon_sym___clrcall] = ACTIONS(2614), - [anon_sym___stdcall] = ACTIONS(2614), - [anon_sym___fastcall] = ACTIONS(2614), - [anon_sym___thiscall] = ACTIONS(2614), - [anon_sym___vectorcall] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_case] = ACTIONS(2614), - [anon_sym_default] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_explicit] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_operator] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_namespace] = ACTIONS(2614), - [anon_sym_using] = ACTIONS(2614), - [anon_sym_static_assert] = ACTIONS(2614), - [anon_sym_concept] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), + [sym_identifier] = ACTIONS(2952), + [aux_sym_preproc_include_token1] = ACTIONS(2952), + [aux_sym_preproc_def_token1] = ACTIONS(2952), + [aux_sym_preproc_if_token1] = ACTIONS(2952), + [aux_sym_preproc_if_token2] = ACTIONS(2952), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2952), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2952), + [aux_sym_preproc_else_token1] = ACTIONS(2952), + [aux_sym_preproc_elif_token1] = ACTIONS(2952), + [sym_preproc_directive] = ACTIONS(2952), + [anon_sym_LPAREN2] = ACTIONS(2954), + [anon_sym_BANG] = ACTIONS(2954), + [anon_sym_TILDE] = ACTIONS(2954), + [anon_sym_DASH] = ACTIONS(2952), + [anon_sym_PLUS] = ACTIONS(2952), + [anon_sym_STAR] = ACTIONS(2954), + [anon_sym_AMP_AMP] = ACTIONS(2954), + [anon_sym_AMP] = ACTIONS(2952), + [anon_sym_SEMI] = ACTIONS(2954), + [anon_sym_typedef] = ACTIONS(2952), + [anon_sym_extern] = ACTIONS(2952), + [anon_sym___attribute__] = ACTIONS(2952), + [anon_sym_COLON_COLON] = ACTIONS(2954), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2954), + [anon_sym___declspec] = ACTIONS(2952), + [anon_sym___based] = ACTIONS(2952), + [anon_sym___cdecl] = ACTIONS(2952), + [anon_sym___clrcall] = ACTIONS(2952), + [anon_sym___stdcall] = ACTIONS(2952), + [anon_sym___fastcall] = ACTIONS(2952), + [anon_sym___thiscall] = ACTIONS(2952), + [anon_sym___vectorcall] = ACTIONS(2952), + [anon_sym_LBRACE] = ACTIONS(2954), + [anon_sym_LBRACK] = ACTIONS(2952), + [anon_sym_static] = ACTIONS(2952), + [anon_sym_register] = ACTIONS(2952), + [anon_sym_inline] = ACTIONS(2952), + [anon_sym_thread_local] = ACTIONS(2952), + [anon_sym_const] = ACTIONS(2952), + [anon_sym_constexpr] = ACTIONS(2952), + [anon_sym_volatile] = ACTIONS(2952), + [anon_sym_restrict] = ACTIONS(2952), + [anon_sym___restrict__] = ACTIONS(2952), + [anon_sym__Atomic] = ACTIONS(2952), + [anon_sym__Noreturn] = ACTIONS(2952), + [anon_sym_noreturn] = ACTIONS(2952), + [anon_sym_mutable] = ACTIONS(2952), + [anon_sym_constinit] = ACTIONS(2952), + [anon_sym_consteval] = ACTIONS(2952), + [anon_sym_signed] = ACTIONS(2952), + [anon_sym_unsigned] = ACTIONS(2952), + [anon_sym_long] = ACTIONS(2952), + [anon_sym_short] = ACTIONS(2952), + [sym_primitive_type] = ACTIONS(2952), + [anon_sym_enum] = ACTIONS(2952), + [anon_sym_class] = ACTIONS(2952), + [anon_sym_struct] = ACTIONS(2952), + [anon_sym_union] = ACTIONS(2952), + [anon_sym_if] = ACTIONS(2952), + [anon_sym_else] = ACTIONS(2952), + [anon_sym_switch] = ACTIONS(2952), + [anon_sym_case] = ACTIONS(2952), + [anon_sym_default] = ACTIONS(2952), + [anon_sym_while] = ACTIONS(2952), + [anon_sym_do] = ACTIONS(2952), + [anon_sym_for] = ACTIONS(2952), + [anon_sym_return] = ACTIONS(2952), + [anon_sym_break] = ACTIONS(2952), + [anon_sym_continue] = ACTIONS(2952), + [anon_sym_goto] = ACTIONS(2952), + [anon_sym_not] = ACTIONS(2952), + [anon_sym_compl] = ACTIONS(2952), + [anon_sym_DASH_DASH] = ACTIONS(2954), + [anon_sym_PLUS_PLUS] = ACTIONS(2954), + [anon_sym_sizeof] = ACTIONS(2952), + [anon_sym_offsetof] = ACTIONS(2952), + [anon_sym__Generic] = ACTIONS(2952), + [anon_sym_asm] = ACTIONS(2952), + [anon_sym___asm__] = ACTIONS(2952), + [sym_number_literal] = ACTIONS(2954), + [anon_sym_L_SQUOTE] = ACTIONS(2954), + [anon_sym_u_SQUOTE] = ACTIONS(2954), + [anon_sym_U_SQUOTE] = ACTIONS(2954), + [anon_sym_u8_SQUOTE] = ACTIONS(2954), + [anon_sym_SQUOTE] = ACTIONS(2954), + [anon_sym_L_DQUOTE] = ACTIONS(2954), + [anon_sym_u_DQUOTE] = ACTIONS(2954), + [anon_sym_U_DQUOTE] = ACTIONS(2954), + [anon_sym_u8_DQUOTE] = ACTIONS(2954), + [anon_sym_DQUOTE] = ACTIONS(2954), + [sym_true] = ACTIONS(2952), + [sym_false] = ACTIONS(2952), + [anon_sym_NULL] = ACTIONS(2952), + [anon_sym_nullptr] = ACTIONS(2952), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2952), + [anon_sym_decltype] = ACTIONS(2952), + [anon_sym_virtual] = ACTIONS(2952), + [anon_sym_explicit] = ACTIONS(2952), + [anon_sym_typename] = ACTIONS(2952), + [anon_sym_template] = ACTIONS(2952), + [anon_sym_operator] = ACTIONS(2952), + [anon_sym_try] = ACTIONS(2952), + [anon_sym_delete] = ACTIONS(2952), + [anon_sym_throw] = ACTIONS(2952), + [anon_sym_namespace] = ACTIONS(2952), + [anon_sym_using] = ACTIONS(2952), + [anon_sym_static_assert] = ACTIONS(2952), + [anon_sym_concept] = ACTIONS(2952), + [anon_sym_co_return] = ACTIONS(2952), + [anon_sym_co_yield] = ACTIONS(2952), + [anon_sym_R_DQUOTE] = ACTIONS(2954), + [anon_sym_LR_DQUOTE] = ACTIONS(2954), + [anon_sym_uR_DQUOTE] = ACTIONS(2954), + [anon_sym_UR_DQUOTE] = ACTIONS(2954), + [anon_sym_u8R_DQUOTE] = ACTIONS(2954), + [anon_sym_co_await] = ACTIONS(2952), + [anon_sym_new] = ACTIONS(2952), + [anon_sym_requires] = ACTIONS(2952), + [sym_this] = ACTIONS(2952), }, [638] = { - [ts_builtin_sym_end] = ACTIONS(2616), - [sym_identifier] = ACTIONS(2614), - [aux_sym_preproc_include_token1] = ACTIONS(2614), - [aux_sym_preproc_def_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2614), - [sym_preproc_directive] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP_AMP] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2614), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym___based] = ACTIONS(2614), - [anon_sym___cdecl] = ACTIONS(2614), - [anon_sym___clrcall] = ACTIONS(2614), - [anon_sym___stdcall] = ACTIONS(2614), - [anon_sym___fastcall] = ACTIONS(2614), - [anon_sym___thiscall] = ACTIONS(2614), - [anon_sym___vectorcall] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_case] = ACTIONS(2614), - [anon_sym_default] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_explicit] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_operator] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_namespace] = ACTIONS(2614), - [anon_sym_using] = ACTIONS(2614), - [anon_sym_static_assert] = ACTIONS(2614), - [anon_sym_concept] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token2] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [aux_sym_preproc_else_token1] = ACTIONS(3048), + [aux_sym_preproc_elif_token1] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, [639] = { - [sym_identifier] = ACTIONS(2596), - [aux_sym_preproc_include_token1] = ACTIONS(2596), - [aux_sym_preproc_def_token1] = ACTIONS(2596), - [aux_sym_preproc_if_token1] = ACTIONS(2596), - [aux_sym_preproc_if_token2] = ACTIONS(2596), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2596), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2596), - [sym_preproc_directive] = ACTIONS(2596), - [anon_sym_LPAREN2] = ACTIONS(2598), - [anon_sym_BANG] = ACTIONS(2598), - [anon_sym_TILDE] = ACTIONS(2598), - [anon_sym_DASH] = ACTIONS(2596), - [anon_sym_PLUS] = ACTIONS(2596), - [anon_sym_STAR] = ACTIONS(2598), - [anon_sym_AMP_AMP] = ACTIONS(2598), - [anon_sym_AMP] = ACTIONS(2596), - [anon_sym_SEMI] = ACTIONS(2598), - [anon_sym_typedef] = ACTIONS(2596), - [anon_sym_extern] = ACTIONS(2596), - [anon_sym___attribute__] = ACTIONS(2596), - [anon_sym_COLON_COLON] = ACTIONS(2598), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2598), - [anon_sym___declspec] = ACTIONS(2596), - [anon_sym___based] = ACTIONS(2596), - [anon_sym___cdecl] = ACTIONS(2596), - [anon_sym___clrcall] = ACTIONS(2596), - [anon_sym___stdcall] = ACTIONS(2596), - [anon_sym___fastcall] = ACTIONS(2596), - [anon_sym___thiscall] = ACTIONS(2596), - [anon_sym___vectorcall] = ACTIONS(2596), - [anon_sym_LBRACE] = ACTIONS(2598), - [anon_sym_LBRACK] = ACTIONS(2596), - [anon_sym_static] = ACTIONS(2596), - [anon_sym_register] = ACTIONS(2596), - [anon_sym_inline] = ACTIONS(2596), - [anon_sym_thread_local] = ACTIONS(2596), - [anon_sym_const] = ACTIONS(2596), - [anon_sym_volatile] = ACTIONS(2596), - [anon_sym_restrict] = ACTIONS(2596), - [anon_sym__Atomic] = ACTIONS(2596), - [anon_sym_mutable] = ACTIONS(2596), - [anon_sym_constexpr] = ACTIONS(2596), - [anon_sym_constinit] = ACTIONS(2596), - [anon_sym_consteval] = ACTIONS(2596), - [anon_sym_signed] = ACTIONS(2596), - [anon_sym_unsigned] = ACTIONS(2596), - [anon_sym_long] = ACTIONS(2596), - [anon_sym_short] = ACTIONS(2596), - [sym_primitive_type] = ACTIONS(2596), - [anon_sym_enum] = ACTIONS(2596), - [anon_sym_class] = ACTIONS(2596), - [anon_sym_struct] = ACTIONS(2596), - [anon_sym_union] = ACTIONS(2596), - [anon_sym_if] = ACTIONS(2596), - [anon_sym_else] = ACTIONS(2596), - [anon_sym_switch] = ACTIONS(2596), - [anon_sym_case] = ACTIONS(2596), - [anon_sym_default] = ACTIONS(2596), - [anon_sym_while] = ACTIONS(2596), - [anon_sym_do] = ACTIONS(2596), - [anon_sym_for] = ACTIONS(2596), - [anon_sym_return] = ACTIONS(2596), - [anon_sym_break] = ACTIONS(2596), - [anon_sym_continue] = ACTIONS(2596), - [anon_sym_goto] = ACTIONS(2596), - [anon_sym_not] = ACTIONS(2596), - [anon_sym_compl] = ACTIONS(2596), - [anon_sym_DASH_DASH] = ACTIONS(2598), - [anon_sym_PLUS_PLUS] = ACTIONS(2598), - [anon_sym_sizeof] = ACTIONS(2596), - [sym_number_literal] = ACTIONS(2598), - [anon_sym_L_SQUOTE] = ACTIONS(2598), - [anon_sym_u_SQUOTE] = ACTIONS(2598), - [anon_sym_U_SQUOTE] = ACTIONS(2598), - [anon_sym_u8_SQUOTE] = ACTIONS(2598), - [anon_sym_SQUOTE] = ACTIONS(2598), - [anon_sym_L_DQUOTE] = ACTIONS(2598), - [anon_sym_u_DQUOTE] = ACTIONS(2598), - [anon_sym_U_DQUOTE] = ACTIONS(2598), - [anon_sym_u8_DQUOTE] = ACTIONS(2598), - [anon_sym_DQUOTE] = ACTIONS(2598), - [sym_true] = ACTIONS(2596), - [sym_false] = ACTIONS(2596), - [sym_null] = ACTIONS(2596), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2596), - [anon_sym_decltype] = ACTIONS(2596), - [anon_sym_virtual] = ACTIONS(2596), - [anon_sym_explicit] = ACTIONS(2596), - [anon_sym_typename] = ACTIONS(2596), - [anon_sym_template] = ACTIONS(2596), - [anon_sym_operator] = ACTIONS(2596), - [anon_sym_try] = ACTIONS(2596), - [anon_sym_delete] = ACTIONS(2596), - [anon_sym_throw] = ACTIONS(2596), - [anon_sym_namespace] = ACTIONS(2596), - [anon_sym_using] = ACTIONS(2596), - [anon_sym_static_assert] = ACTIONS(2596), - [anon_sym_concept] = ACTIONS(2596), - [anon_sym_co_return] = ACTIONS(2596), - [anon_sym_co_yield] = ACTIONS(2596), - [anon_sym_R_DQUOTE] = ACTIONS(2598), - [anon_sym_LR_DQUOTE] = ACTIONS(2598), - [anon_sym_uR_DQUOTE] = ACTIONS(2598), - [anon_sym_UR_DQUOTE] = ACTIONS(2598), - [anon_sym_u8R_DQUOTE] = ACTIONS(2598), - [anon_sym_co_await] = ACTIONS(2596), - [anon_sym_new] = ACTIONS(2596), - [anon_sym_requires] = ACTIONS(2596), - [sym_this] = ACTIONS(2596), - [sym_nullptr] = ACTIONS(2596), + [sym_identifier] = ACTIONS(2948), + [aux_sym_preproc_include_token1] = ACTIONS(2948), + [aux_sym_preproc_def_token1] = ACTIONS(2948), + [aux_sym_preproc_if_token1] = ACTIONS(2948), + [aux_sym_preproc_if_token2] = ACTIONS(2948), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2948), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2948), + [aux_sym_preproc_else_token1] = ACTIONS(2948), + [aux_sym_preproc_elif_token1] = ACTIONS(2948), + [sym_preproc_directive] = ACTIONS(2948), + [anon_sym_LPAREN2] = ACTIONS(2950), + [anon_sym_BANG] = ACTIONS(2950), + [anon_sym_TILDE] = ACTIONS(2950), + [anon_sym_DASH] = ACTIONS(2948), + [anon_sym_PLUS] = ACTIONS(2948), + [anon_sym_STAR] = ACTIONS(2950), + [anon_sym_AMP_AMP] = ACTIONS(2950), + [anon_sym_AMP] = ACTIONS(2948), + [anon_sym_SEMI] = ACTIONS(2950), + [anon_sym_typedef] = ACTIONS(2948), + [anon_sym_extern] = ACTIONS(2948), + [anon_sym___attribute__] = ACTIONS(2948), + [anon_sym_COLON_COLON] = ACTIONS(2950), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2950), + [anon_sym___declspec] = ACTIONS(2948), + [anon_sym___based] = ACTIONS(2948), + [anon_sym___cdecl] = ACTIONS(2948), + [anon_sym___clrcall] = ACTIONS(2948), + [anon_sym___stdcall] = ACTIONS(2948), + [anon_sym___fastcall] = ACTIONS(2948), + [anon_sym___thiscall] = ACTIONS(2948), + [anon_sym___vectorcall] = ACTIONS(2948), + [anon_sym_LBRACE] = ACTIONS(2950), + [anon_sym_LBRACK] = ACTIONS(2948), + [anon_sym_static] = ACTIONS(2948), + [anon_sym_register] = ACTIONS(2948), + [anon_sym_inline] = ACTIONS(2948), + [anon_sym_thread_local] = ACTIONS(2948), + [anon_sym_const] = ACTIONS(2948), + [anon_sym_constexpr] = ACTIONS(2948), + [anon_sym_volatile] = ACTIONS(2948), + [anon_sym_restrict] = ACTIONS(2948), + [anon_sym___restrict__] = ACTIONS(2948), + [anon_sym__Atomic] = ACTIONS(2948), + [anon_sym__Noreturn] = ACTIONS(2948), + [anon_sym_noreturn] = ACTIONS(2948), + [anon_sym_mutable] = ACTIONS(2948), + [anon_sym_constinit] = ACTIONS(2948), + [anon_sym_consteval] = ACTIONS(2948), + [anon_sym_signed] = ACTIONS(2948), + [anon_sym_unsigned] = ACTIONS(2948), + [anon_sym_long] = ACTIONS(2948), + [anon_sym_short] = ACTIONS(2948), + [sym_primitive_type] = ACTIONS(2948), + [anon_sym_enum] = ACTIONS(2948), + [anon_sym_class] = ACTIONS(2948), + [anon_sym_struct] = ACTIONS(2948), + [anon_sym_union] = ACTIONS(2948), + [anon_sym_if] = ACTIONS(2948), + [anon_sym_else] = ACTIONS(2948), + [anon_sym_switch] = ACTIONS(2948), + [anon_sym_case] = ACTIONS(2948), + [anon_sym_default] = ACTIONS(2948), + [anon_sym_while] = ACTIONS(2948), + [anon_sym_do] = ACTIONS(2948), + [anon_sym_for] = ACTIONS(2948), + [anon_sym_return] = ACTIONS(2948), + [anon_sym_break] = ACTIONS(2948), + [anon_sym_continue] = ACTIONS(2948), + [anon_sym_goto] = ACTIONS(2948), + [anon_sym_not] = ACTIONS(2948), + [anon_sym_compl] = ACTIONS(2948), + [anon_sym_DASH_DASH] = ACTIONS(2950), + [anon_sym_PLUS_PLUS] = ACTIONS(2950), + [anon_sym_sizeof] = ACTIONS(2948), + [anon_sym_offsetof] = ACTIONS(2948), + [anon_sym__Generic] = ACTIONS(2948), + [anon_sym_asm] = ACTIONS(2948), + [anon_sym___asm__] = ACTIONS(2948), + [sym_number_literal] = ACTIONS(2950), + [anon_sym_L_SQUOTE] = ACTIONS(2950), + [anon_sym_u_SQUOTE] = ACTIONS(2950), + [anon_sym_U_SQUOTE] = ACTIONS(2950), + [anon_sym_u8_SQUOTE] = ACTIONS(2950), + [anon_sym_SQUOTE] = ACTIONS(2950), + [anon_sym_L_DQUOTE] = ACTIONS(2950), + [anon_sym_u_DQUOTE] = ACTIONS(2950), + [anon_sym_U_DQUOTE] = ACTIONS(2950), + [anon_sym_u8_DQUOTE] = ACTIONS(2950), + [anon_sym_DQUOTE] = ACTIONS(2950), + [sym_true] = ACTIONS(2948), + [sym_false] = ACTIONS(2948), + [anon_sym_NULL] = ACTIONS(2948), + [anon_sym_nullptr] = ACTIONS(2948), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2948), + [anon_sym_decltype] = ACTIONS(2948), + [anon_sym_virtual] = ACTIONS(2948), + [anon_sym_explicit] = ACTIONS(2948), + [anon_sym_typename] = ACTIONS(2948), + [anon_sym_template] = ACTIONS(2948), + [anon_sym_operator] = ACTIONS(2948), + [anon_sym_try] = ACTIONS(2948), + [anon_sym_delete] = ACTIONS(2948), + [anon_sym_throw] = ACTIONS(2948), + [anon_sym_namespace] = ACTIONS(2948), + [anon_sym_using] = ACTIONS(2948), + [anon_sym_static_assert] = ACTIONS(2948), + [anon_sym_concept] = ACTIONS(2948), + [anon_sym_co_return] = ACTIONS(2948), + [anon_sym_co_yield] = ACTIONS(2948), + [anon_sym_R_DQUOTE] = ACTIONS(2950), + [anon_sym_LR_DQUOTE] = ACTIONS(2950), + [anon_sym_uR_DQUOTE] = ACTIONS(2950), + [anon_sym_UR_DQUOTE] = ACTIONS(2950), + [anon_sym_u8R_DQUOTE] = ACTIONS(2950), + [anon_sym_co_await] = ACTIONS(2948), + [anon_sym_new] = ACTIONS(2948), + [anon_sym_requires] = ACTIONS(2948), + [sym_this] = ACTIONS(2948), }, [640] = { - [sym_identifier] = ACTIONS(2606), - [aux_sym_preproc_include_token1] = 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(2608), - [anon_sym_BANG] = ACTIONS(2608), - [anon_sym_TILDE] = ACTIONS(2608), - [anon_sym_DASH] = ACTIONS(2606), - [anon_sym_PLUS] = ACTIONS(2606), - [anon_sym_STAR] = ACTIONS(2608), - [anon_sym_AMP_AMP] = ACTIONS(2608), - [anon_sym_AMP] = ACTIONS(2606), - [anon_sym_SEMI] = ACTIONS(2608), - [anon_sym_typedef] = ACTIONS(2606), - [anon_sym_extern] = ACTIONS(2606), - [anon_sym___attribute__] = ACTIONS(2606), - [anon_sym_COLON_COLON] = ACTIONS(2608), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2608), - [anon_sym___declspec] = ACTIONS(2606), - [anon_sym___based] = 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(2608), - [anon_sym_LBRACK] = ACTIONS(2606), - [anon_sym_static] = ACTIONS(2606), - [anon_sym_register] = ACTIONS(2606), - [anon_sym_inline] = ACTIONS(2606), - [anon_sym_thread_local] = ACTIONS(2606), - [anon_sym_const] = ACTIONS(2606), - [anon_sym_volatile] = ACTIONS(2606), - [anon_sym_restrict] = ACTIONS(2606), - [anon_sym__Atomic] = ACTIONS(2606), - [anon_sym_mutable] = ACTIONS(2606), - [anon_sym_constexpr] = ACTIONS(2606), - [anon_sym_constinit] = ACTIONS(2606), - [anon_sym_consteval] = ACTIONS(2606), - [anon_sym_signed] = ACTIONS(2606), - [anon_sym_unsigned] = ACTIONS(2606), - [anon_sym_long] = ACTIONS(2606), - [anon_sym_short] = ACTIONS(2606), - [sym_primitive_type] = ACTIONS(2606), - [anon_sym_enum] = ACTIONS(2606), - [anon_sym_class] = ACTIONS(2606), - [anon_sym_struct] = ACTIONS(2606), - [anon_sym_union] = ACTIONS(2606), - [anon_sym_if] = ACTIONS(2606), - [anon_sym_else] = 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_return] = ACTIONS(2606), - [anon_sym_break] = ACTIONS(2606), - [anon_sym_continue] = ACTIONS(2606), - [anon_sym_goto] = ACTIONS(2606), - [anon_sym_not] = ACTIONS(2606), - [anon_sym_compl] = ACTIONS(2606), - [anon_sym_DASH_DASH] = ACTIONS(2608), - [anon_sym_PLUS_PLUS] = ACTIONS(2608), - [anon_sym_sizeof] = ACTIONS(2606), - [sym_number_literal] = ACTIONS(2608), - [anon_sym_L_SQUOTE] = ACTIONS(2608), - [anon_sym_u_SQUOTE] = ACTIONS(2608), - [anon_sym_U_SQUOTE] = ACTIONS(2608), - [anon_sym_u8_SQUOTE] = ACTIONS(2608), - [anon_sym_SQUOTE] = ACTIONS(2608), - [anon_sym_L_DQUOTE] = ACTIONS(2608), - [anon_sym_u_DQUOTE] = ACTIONS(2608), - [anon_sym_U_DQUOTE] = ACTIONS(2608), - [anon_sym_u8_DQUOTE] = ACTIONS(2608), - [anon_sym_DQUOTE] = ACTIONS(2608), - [sym_true] = ACTIONS(2606), - [sym_false] = ACTIONS(2606), - [sym_null] = ACTIONS(2606), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2606), - [anon_sym_decltype] = ACTIONS(2606), - [anon_sym_virtual] = ACTIONS(2606), - [anon_sym_explicit] = ACTIONS(2606), - [anon_sym_typename] = ACTIONS(2606), - [anon_sym_template] = ACTIONS(2606), - [anon_sym_operator] = ACTIONS(2606), - [anon_sym_try] = ACTIONS(2606), - [anon_sym_delete] = ACTIONS(2606), - [anon_sym_throw] = ACTIONS(2606), - [anon_sym_namespace] = ACTIONS(2606), - [anon_sym_using] = ACTIONS(2606), - [anon_sym_static_assert] = ACTIONS(2606), - [anon_sym_concept] = ACTIONS(2606), - [anon_sym_co_return] = ACTIONS(2606), - [anon_sym_co_yield] = ACTIONS(2606), - [anon_sym_R_DQUOTE] = ACTIONS(2608), - [anon_sym_LR_DQUOTE] = ACTIONS(2608), - [anon_sym_uR_DQUOTE] = ACTIONS(2608), - [anon_sym_UR_DQUOTE] = ACTIONS(2608), - [anon_sym_u8R_DQUOTE] = ACTIONS(2608), - [anon_sym_co_await] = ACTIONS(2606), - [anon_sym_new] = ACTIONS(2606), - [anon_sym_requires] = ACTIONS(2606), - [sym_this] = ACTIONS(2606), - [sym_nullptr] = ACTIONS(2606), + [sym_identifier] = ACTIONS(2924), + [aux_sym_preproc_include_token1] = ACTIONS(2924), + [aux_sym_preproc_def_token1] = ACTIONS(2924), + [aux_sym_preproc_if_token1] = ACTIONS(2924), + [aux_sym_preproc_if_token2] = ACTIONS(2924), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2924), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2924), + [aux_sym_preproc_else_token1] = ACTIONS(2924), + [aux_sym_preproc_elif_token1] = ACTIONS(2924), + [sym_preproc_directive] = ACTIONS(2924), + [anon_sym_LPAREN2] = ACTIONS(2926), + [anon_sym_BANG] = ACTIONS(2926), + [anon_sym_TILDE] = ACTIONS(2926), + [anon_sym_DASH] = ACTIONS(2924), + [anon_sym_PLUS] = ACTIONS(2924), + [anon_sym_STAR] = ACTIONS(2926), + [anon_sym_AMP_AMP] = ACTIONS(2926), + [anon_sym_AMP] = ACTIONS(2924), + [anon_sym_SEMI] = ACTIONS(2926), + [anon_sym_typedef] = ACTIONS(2924), + [anon_sym_extern] = ACTIONS(2924), + [anon_sym___attribute__] = ACTIONS(2924), + [anon_sym_COLON_COLON] = ACTIONS(2926), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2926), + [anon_sym___declspec] = ACTIONS(2924), + [anon_sym___based] = ACTIONS(2924), + [anon_sym___cdecl] = ACTIONS(2924), + [anon_sym___clrcall] = ACTIONS(2924), + [anon_sym___stdcall] = ACTIONS(2924), + [anon_sym___fastcall] = ACTIONS(2924), + [anon_sym___thiscall] = ACTIONS(2924), + [anon_sym___vectorcall] = ACTIONS(2924), + [anon_sym_LBRACE] = ACTIONS(2926), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_static] = ACTIONS(2924), + [anon_sym_register] = ACTIONS(2924), + [anon_sym_inline] = ACTIONS(2924), + [anon_sym_thread_local] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(2924), + [anon_sym_constexpr] = ACTIONS(2924), + [anon_sym_volatile] = ACTIONS(2924), + [anon_sym_restrict] = ACTIONS(2924), + [anon_sym___restrict__] = ACTIONS(2924), + [anon_sym__Atomic] = ACTIONS(2924), + [anon_sym__Noreturn] = ACTIONS(2924), + [anon_sym_noreturn] = ACTIONS(2924), + [anon_sym_mutable] = ACTIONS(2924), + [anon_sym_constinit] = ACTIONS(2924), + [anon_sym_consteval] = ACTIONS(2924), + [anon_sym_signed] = ACTIONS(2924), + [anon_sym_unsigned] = ACTIONS(2924), + [anon_sym_long] = ACTIONS(2924), + [anon_sym_short] = ACTIONS(2924), + [sym_primitive_type] = ACTIONS(2924), + [anon_sym_enum] = ACTIONS(2924), + [anon_sym_class] = ACTIONS(2924), + [anon_sym_struct] = ACTIONS(2924), + [anon_sym_union] = ACTIONS(2924), + [anon_sym_if] = ACTIONS(2924), + [anon_sym_else] = ACTIONS(2924), + [anon_sym_switch] = ACTIONS(2924), + [anon_sym_case] = ACTIONS(2924), + [anon_sym_default] = ACTIONS(2924), + [anon_sym_while] = ACTIONS(2924), + [anon_sym_do] = ACTIONS(2924), + [anon_sym_for] = ACTIONS(2924), + [anon_sym_return] = ACTIONS(2924), + [anon_sym_break] = ACTIONS(2924), + [anon_sym_continue] = ACTIONS(2924), + [anon_sym_goto] = ACTIONS(2924), + [anon_sym_not] = ACTIONS(2924), + [anon_sym_compl] = ACTIONS(2924), + [anon_sym_DASH_DASH] = ACTIONS(2926), + [anon_sym_PLUS_PLUS] = ACTIONS(2926), + [anon_sym_sizeof] = ACTIONS(2924), + [anon_sym_offsetof] = ACTIONS(2924), + [anon_sym__Generic] = ACTIONS(2924), + [anon_sym_asm] = ACTIONS(2924), + [anon_sym___asm__] = ACTIONS(2924), + [sym_number_literal] = ACTIONS(2926), + [anon_sym_L_SQUOTE] = ACTIONS(2926), + [anon_sym_u_SQUOTE] = ACTIONS(2926), + [anon_sym_U_SQUOTE] = ACTIONS(2926), + [anon_sym_u8_SQUOTE] = ACTIONS(2926), + [anon_sym_SQUOTE] = ACTIONS(2926), + [anon_sym_L_DQUOTE] = ACTIONS(2926), + [anon_sym_u_DQUOTE] = ACTIONS(2926), + [anon_sym_U_DQUOTE] = ACTIONS(2926), + [anon_sym_u8_DQUOTE] = ACTIONS(2926), + [anon_sym_DQUOTE] = ACTIONS(2926), + [sym_true] = ACTIONS(2924), + [sym_false] = ACTIONS(2924), + [anon_sym_NULL] = ACTIONS(2924), + [anon_sym_nullptr] = ACTIONS(2924), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2924), + [anon_sym_decltype] = ACTIONS(2924), + [anon_sym_virtual] = ACTIONS(2924), + [anon_sym_explicit] = ACTIONS(2924), + [anon_sym_typename] = ACTIONS(2924), + [anon_sym_template] = ACTIONS(2924), + [anon_sym_operator] = ACTIONS(2924), + [anon_sym_try] = ACTIONS(2924), + [anon_sym_delete] = ACTIONS(2924), + [anon_sym_throw] = ACTIONS(2924), + [anon_sym_namespace] = ACTIONS(2924), + [anon_sym_using] = ACTIONS(2924), + [anon_sym_static_assert] = ACTIONS(2924), + [anon_sym_concept] = ACTIONS(2924), + [anon_sym_co_return] = ACTIONS(2924), + [anon_sym_co_yield] = ACTIONS(2924), + [anon_sym_R_DQUOTE] = ACTIONS(2926), + [anon_sym_LR_DQUOTE] = ACTIONS(2926), + [anon_sym_uR_DQUOTE] = ACTIONS(2926), + [anon_sym_UR_DQUOTE] = ACTIONS(2926), + [anon_sym_u8R_DQUOTE] = ACTIONS(2926), + [anon_sym_co_await] = ACTIONS(2924), + [anon_sym_new] = ACTIONS(2924), + [anon_sym_requires] = ACTIONS(2924), + [sym_this] = ACTIONS(2924), }, [641] = { - [sym_identifier] = ACTIONS(2610), - [aux_sym_preproc_include_token1] = ACTIONS(2610), - [aux_sym_preproc_def_token1] = ACTIONS(2610), - [aux_sym_preproc_if_token1] = ACTIONS(2610), - [aux_sym_preproc_if_token2] = ACTIONS(2610), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2610), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2610), - [sym_preproc_directive] = ACTIONS(2610), - [anon_sym_LPAREN2] = ACTIONS(2612), - [anon_sym_BANG] = ACTIONS(2612), - [anon_sym_TILDE] = ACTIONS(2612), - [anon_sym_DASH] = ACTIONS(2610), - [anon_sym_PLUS] = ACTIONS(2610), - [anon_sym_STAR] = ACTIONS(2612), - [anon_sym_AMP_AMP] = ACTIONS(2612), - [anon_sym_AMP] = ACTIONS(2610), - [anon_sym_SEMI] = ACTIONS(2612), - [anon_sym_typedef] = ACTIONS(2610), - [anon_sym_extern] = ACTIONS(2610), - [anon_sym___attribute__] = ACTIONS(2610), - [anon_sym_COLON_COLON] = ACTIONS(2612), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2612), - [anon_sym___declspec] = ACTIONS(2610), - [anon_sym___based] = ACTIONS(2610), - [anon_sym___cdecl] = ACTIONS(2610), - [anon_sym___clrcall] = ACTIONS(2610), - [anon_sym___stdcall] = ACTIONS(2610), - [anon_sym___fastcall] = ACTIONS(2610), - [anon_sym___thiscall] = ACTIONS(2610), - [anon_sym___vectorcall] = ACTIONS(2610), - [anon_sym_LBRACE] = ACTIONS(2612), - [anon_sym_LBRACK] = ACTIONS(2610), - [anon_sym_static] = ACTIONS(2610), - [anon_sym_register] = ACTIONS(2610), - [anon_sym_inline] = ACTIONS(2610), - [anon_sym_thread_local] = ACTIONS(2610), - [anon_sym_const] = ACTIONS(2610), - [anon_sym_volatile] = ACTIONS(2610), - [anon_sym_restrict] = ACTIONS(2610), - [anon_sym__Atomic] = ACTIONS(2610), - [anon_sym_mutable] = ACTIONS(2610), - [anon_sym_constexpr] = ACTIONS(2610), - [anon_sym_constinit] = ACTIONS(2610), - [anon_sym_consteval] = ACTIONS(2610), - [anon_sym_signed] = ACTIONS(2610), - [anon_sym_unsigned] = ACTIONS(2610), - [anon_sym_long] = ACTIONS(2610), - [anon_sym_short] = ACTIONS(2610), - [sym_primitive_type] = ACTIONS(2610), - [anon_sym_enum] = ACTIONS(2610), - [anon_sym_class] = ACTIONS(2610), - [anon_sym_struct] = ACTIONS(2610), - [anon_sym_union] = ACTIONS(2610), - [anon_sym_if] = ACTIONS(2610), - [anon_sym_else] = ACTIONS(2610), - [anon_sym_switch] = ACTIONS(2610), - [anon_sym_case] = ACTIONS(2610), - [anon_sym_default] = ACTIONS(2610), - [anon_sym_while] = ACTIONS(2610), - [anon_sym_do] = ACTIONS(2610), - [anon_sym_for] = ACTIONS(2610), - [anon_sym_return] = ACTIONS(2610), - [anon_sym_break] = ACTIONS(2610), - [anon_sym_continue] = ACTIONS(2610), - [anon_sym_goto] = ACTIONS(2610), - [anon_sym_not] = ACTIONS(2610), - [anon_sym_compl] = ACTIONS(2610), - [anon_sym_DASH_DASH] = ACTIONS(2612), - [anon_sym_PLUS_PLUS] = ACTIONS(2612), - [anon_sym_sizeof] = ACTIONS(2610), - [sym_number_literal] = ACTIONS(2612), - [anon_sym_L_SQUOTE] = ACTIONS(2612), - [anon_sym_u_SQUOTE] = ACTIONS(2612), - [anon_sym_U_SQUOTE] = ACTIONS(2612), - [anon_sym_u8_SQUOTE] = ACTIONS(2612), - [anon_sym_SQUOTE] = ACTIONS(2612), - [anon_sym_L_DQUOTE] = ACTIONS(2612), - [anon_sym_u_DQUOTE] = ACTIONS(2612), - [anon_sym_U_DQUOTE] = ACTIONS(2612), - [anon_sym_u8_DQUOTE] = ACTIONS(2612), - [anon_sym_DQUOTE] = ACTIONS(2612), - [sym_true] = ACTIONS(2610), - [sym_false] = ACTIONS(2610), - [sym_null] = ACTIONS(2610), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2610), - [anon_sym_decltype] = ACTIONS(2610), - [anon_sym_virtual] = ACTIONS(2610), - [anon_sym_explicit] = ACTIONS(2610), - [anon_sym_typename] = ACTIONS(2610), - [anon_sym_template] = ACTIONS(2610), - [anon_sym_operator] = ACTIONS(2610), - [anon_sym_try] = ACTIONS(2610), - [anon_sym_delete] = ACTIONS(2610), - [anon_sym_throw] = ACTIONS(2610), - [anon_sym_namespace] = ACTIONS(2610), - [anon_sym_using] = ACTIONS(2610), - [anon_sym_static_assert] = ACTIONS(2610), - [anon_sym_concept] = ACTIONS(2610), - [anon_sym_co_return] = ACTIONS(2610), - [anon_sym_co_yield] = ACTIONS(2610), - [anon_sym_R_DQUOTE] = ACTIONS(2612), - [anon_sym_LR_DQUOTE] = ACTIONS(2612), - [anon_sym_uR_DQUOTE] = ACTIONS(2612), - [anon_sym_UR_DQUOTE] = ACTIONS(2612), - [anon_sym_u8R_DQUOTE] = ACTIONS(2612), - [anon_sym_co_await] = ACTIONS(2610), - [anon_sym_new] = ACTIONS(2610), - [anon_sym_requires] = ACTIONS(2610), - [sym_this] = ACTIONS(2610), - [sym_nullptr] = ACTIONS(2610), + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token2] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [aux_sym_preproc_else_token1] = ACTIONS(3028), + [aux_sym_preproc_elif_token1] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, [642] = { - [sym_identifier] = ACTIONS(2614), - [aux_sym_preproc_include_token1] = ACTIONS(2614), - [aux_sym_preproc_def_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token2] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2614), - [sym_preproc_directive] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP_AMP] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2614), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym___based] = ACTIONS(2614), - [anon_sym___cdecl] = ACTIONS(2614), - [anon_sym___clrcall] = ACTIONS(2614), - [anon_sym___stdcall] = ACTIONS(2614), - [anon_sym___fastcall] = ACTIONS(2614), - [anon_sym___thiscall] = ACTIONS(2614), - [anon_sym___vectorcall] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_case] = ACTIONS(2614), - [anon_sym_default] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_explicit] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_operator] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_namespace] = ACTIONS(2614), - [anon_sym_using] = ACTIONS(2614), - [anon_sym_static_assert] = ACTIONS(2614), - [anon_sym_concept] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), + [sym_preproc_def] = STATE(676), + [sym_preproc_function_def] = STATE(676), + [sym_preproc_call] = STATE(676), + [sym_preproc_if_in_field_declaration_list] = STATE(676), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(676), + [sym_type_definition] = STATE(676), + [sym__declaration_modifiers] = STATE(3706), + [sym__declaration_specifiers] = STATE(4831), + [sym_attribute_specifier] = STATE(3706), + [sym_attribute_declaration] = STATE(3706), + [sym_ms_declspec_modifier] = STATE(3706), + [sym_ms_based_modifier] = STATE(7654), + [sym__declarator] = STATE(5881), + [sym_parenthesized_declarator] = STATE(5640), + [sym_attributed_declarator] = STATE(5640), + [sym_pointer_declarator] = STATE(5640), + [sym_function_declarator] = STATE(5531), + [sym_array_declarator] = STATE(5640), + [sym_storage_class_specifier] = STATE(3706), + [sym_type_qualifier] = STATE(3706), + [sym__type_specifier] = STATE(3845), + [sym_sized_type_specifier] = STATE(3918), + [sym_enum_specifier] = STATE(3918), + [sym_struct_specifier] = STATE(3918), + [sym_union_specifier] = STATE(3918), + [sym__field_declaration_list_item] = STATE(676), + [sym_field_declaration] = STATE(676), + [sym_placeholder_type_specifier] = STATE(3918), + [sym_decltype_auto] = STATE(3916), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3918), + [sym_virtual] = STATE(3706), + [sym_explicit_function_specifier] = STATE(2247), + [sym_dependent_type] = STATE(3918), + [sym_template_declaration] = STATE(676), + [sym_operator_cast] = STATE(5897), + [sym_inline_method_definition] = STATE(676), + [sym__constructor_specifiers] = STATE(2247), + [sym_operator_cast_definition] = STATE(676), + [sym_operator_cast_declaration] = STATE(676), + [sym_constructor_or_destructor_definition] = STATE(676), + [sym_constructor_or_destructor_declaration] = STATE(676), + [sym_friend_declaration] = STATE(676), + [sym_access_specifier] = STATE(7346), + [sym_reference_declarator] = STATE(5640), + [sym_structured_binding_declarator] = STATE(5640), + [sym_template_type] = STATE(3680), + [sym_template_function] = STATE(5640), + [sym_using_declaration] = STATE(676), + [sym_alias_declaration] = STATE(676), + [sym_static_assert_declaration] = STATE(676), + [sym_destructor_name] = STATE(5640), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5151), + [sym_qualified_identifier] = STATE(5640), + [sym_qualified_type_identifier] = STATE(3966), + [sym_qualified_operator_cast_identifier] = STATE(5897), + [sym_operator_name] = STATE(5640), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(676), + [aux_sym__declaration_specifiers_repeat1] = STATE(2509), + [aux_sym_sized_type_specifier_repeat1] = STATE(3981), + [aux_sym_operator_cast_definition_repeat1] = STATE(2247), + [sym_identifier] = ACTIONS(2544), + [aux_sym_preproc_def_token1] = ACTIONS(3479), + [aux_sym_preproc_if_token1] = ACTIONS(3481), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3483), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3483), + [sym_preproc_directive] = ACTIONS(3485), + [anon_sym_LPAREN2] = ACTIONS(2560), + [anon_sym_TILDE] = ACTIONS(2562), + [anon_sym_STAR] = ACTIONS(2564), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_typedef] = ACTIONS(3487), + [anon_sym_extern] = ACTIONS(53), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(2570), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1813), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(45), + [anon_sym_RBRACE] = ACTIONS(3509), + [anon_sym_LBRACK] = ACTIONS(2572), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(53), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(2574), + [anon_sym_unsigned] = ACTIONS(2574), + [anon_sym_long] = ACTIONS(2574), + [anon_sym_short] = ACTIONS(2574), + [sym_primitive_type] = ACTIONS(2576), + [anon_sym_enum] = ACTIONS(2578), + [anon_sym_class] = ACTIONS(2580), + [anon_sym_struct] = ACTIONS(2582), + [anon_sym_union] = ACTIONS(2584), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2586), + [anon_sym_decltype] = ACTIONS(2588), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_explicit] = ACTIONS(119), + [anon_sym_typename] = ACTIONS(2590), + [anon_sym_template] = ACTIONS(3491), + [anon_sym_operator] = ACTIONS(125), + [anon_sym_friend] = ACTIONS(3493), + [anon_sym_public] = ACTIONS(2596), + [anon_sym_private] = ACTIONS(2596), + [anon_sym_protected] = ACTIONS(2596), + [anon_sym_using] = ACTIONS(3495), + [anon_sym_static_assert] = ACTIONS(3497), }, [643] = { - [sym_identifier] = ACTIONS(2614), - [aux_sym_preproc_include_token1] = ACTIONS(2614), - [aux_sym_preproc_def_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token2] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2614), - [sym_preproc_directive] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP_AMP] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2614), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym___based] = ACTIONS(2614), - [anon_sym___cdecl] = ACTIONS(2614), - [anon_sym___clrcall] = ACTIONS(2614), - [anon_sym___stdcall] = ACTIONS(2614), - [anon_sym___fastcall] = ACTIONS(2614), - [anon_sym___thiscall] = ACTIONS(2614), - [anon_sym___vectorcall] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_case] = ACTIONS(2614), - [anon_sym_default] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_explicit] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_operator] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_namespace] = ACTIONS(2614), - [anon_sym_using] = ACTIONS(2614), - [anon_sym_static_assert] = ACTIONS(2614), - [anon_sym_concept] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token2] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [aux_sym_preproc_else_token1] = ACTIONS(3048), + [aux_sym_preproc_elif_token1] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, [644] = { - [sym_identifier] = ACTIONS(2614), - [aux_sym_preproc_include_token1] = ACTIONS(2614), - [aux_sym_preproc_def_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token2] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2614), - [sym_preproc_directive] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP_AMP] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2614), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym___based] = ACTIONS(2614), - [anon_sym___cdecl] = ACTIONS(2614), - [anon_sym___clrcall] = ACTIONS(2614), - [anon_sym___stdcall] = ACTIONS(2614), - [anon_sym___fastcall] = ACTIONS(2614), - [anon_sym___thiscall] = ACTIONS(2614), - [anon_sym___vectorcall] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_case] = ACTIONS(2614), - [anon_sym_default] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_explicit] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_operator] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_namespace] = ACTIONS(2614), - [anon_sym_using] = ACTIONS(2614), - [anon_sym_static_assert] = ACTIONS(2614), - [anon_sym_concept] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token2] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [aux_sym_preproc_else_token1] = ACTIONS(3028), + [aux_sym_preproc_elif_token1] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, [645] = { - [sym_identifier] = ACTIONS(2614), - [aux_sym_preproc_include_token1] = ACTIONS(2614), - [aux_sym_preproc_def_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token2] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2614), - [sym_preproc_directive] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP_AMP] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2614), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym___based] = ACTIONS(2614), - [anon_sym___cdecl] = ACTIONS(2614), - [anon_sym___clrcall] = ACTIONS(2614), - [anon_sym___stdcall] = ACTIONS(2614), - [anon_sym___fastcall] = ACTIONS(2614), - [anon_sym___thiscall] = ACTIONS(2614), - [anon_sym___vectorcall] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_case] = ACTIONS(2614), - [anon_sym_default] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_explicit] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_operator] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_namespace] = ACTIONS(2614), - [anon_sym_using] = ACTIONS(2614), - [anon_sym_static_assert] = ACTIONS(2614), - [anon_sym_concept] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token2] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [aux_sym_preproc_else_token1] = ACTIONS(3028), + [aux_sym_preproc_elif_token1] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, [646] = { - [sym_identifier] = ACTIONS(2614), - [aux_sym_preproc_include_token1] = ACTIONS(2614), - [aux_sym_preproc_def_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token2] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2614), - [sym_preproc_directive] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP_AMP] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2614), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym___based] = ACTIONS(2614), - [anon_sym___cdecl] = ACTIONS(2614), - [anon_sym___clrcall] = ACTIONS(2614), - [anon_sym___stdcall] = ACTIONS(2614), - [anon_sym___fastcall] = ACTIONS(2614), - [anon_sym___thiscall] = ACTIONS(2614), - [anon_sym___vectorcall] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_case] = ACTIONS(2614), - [anon_sym_default] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_explicit] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_operator] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_namespace] = ACTIONS(2614), - [anon_sym_using] = ACTIONS(2614), - [anon_sym_static_assert] = ACTIONS(2614), - [anon_sym_concept] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), + [sym_catch_clause] = STATE(583), + [aux_sym_constructor_try_statement_repeat1] = STATE(583), + [sym_identifier] = ACTIONS(2721), + [aux_sym_preproc_include_token1] = ACTIONS(2721), + [aux_sym_preproc_def_token1] = ACTIONS(2721), + [aux_sym_preproc_if_token1] = ACTIONS(2721), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2721), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2721), + [sym_preproc_directive] = ACTIONS(2721), + [anon_sym_LPAREN2] = ACTIONS(2723), + [anon_sym_BANG] = ACTIONS(2723), + [anon_sym_TILDE] = ACTIONS(2723), + [anon_sym_DASH] = ACTIONS(2721), + [anon_sym_PLUS] = ACTIONS(2721), + [anon_sym_STAR] = ACTIONS(2723), + [anon_sym_AMP_AMP] = ACTIONS(2723), + [anon_sym_AMP] = ACTIONS(2721), + [anon_sym_SEMI] = ACTIONS(2723), + [anon_sym_typedef] = ACTIONS(2721), + [anon_sym_extern] = ACTIONS(2721), + [anon_sym___attribute__] = ACTIONS(2721), + [anon_sym_COLON_COLON] = ACTIONS(2723), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2723), + [anon_sym___declspec] = ACTIONS(2721), + [anon_sym___based] = ACTIONS(2721), + [anon_sym___cdecl] = ACTIONS(2721), + [anon_sym___clrcall] = ACTIONS(2721), + [anon_sym___stdcall] = ACTIONS(2721), + [anon_sym___fastcall] = ACTIONS(2721), + [anon_sym___thiscall] = ACTIONS(2721), + [anon_sym___vectorcall] = ACTIONS(2721), + [anon_sym_LBRACE] = ACTIONS(2723), + [anon_sym_RBRACE] = ACTIONS(2723), + [anon_sym_LBRACK] = ACTIONS(2721), + [anon_sym_static] = ACTIONS(2721), + [anon_sym_register] = ACTIONS(2721), + [anon_sym_inline] = ACTIONS(2721), + [anon_sym_thread_local] = ACTIONS(2721), + [anon_sym_const] = ACTIONS(2721), + [anon_sym_constexpr] = ACTIONS(2721), + [anon_sym_volatile] = ACTIONS(2721), + [anon_sym_restrict] = ACTIONS(2721), + [anon_sym___restrict__] = ACTIONS(2721), + [anon_sym__Atomic] = ACTIONS(2721), + [anon_sym__Noreturn] = ACTIONS(2721), + [anon_sym_noreturn] = ACTIONS(2721), + [anon_sym_mutable] = ACTIONS(2721), + [anon_sym_constinit] = ACTIONS(2721), + [anon_sym_consteval] = ACTIONS(2721), + [anon_sym_signed] = ACTIONS(2721), + [anon_sym_unsigned] = ACTIONS(2721), + [anon_sym_long] = ACTIONS(2721), + [anon_sym_short] = ACTIONS(2721), + [sym_primitive_type] = ACTIONS(2721), + [anon_sym_enum] = ACTIONS(2721), + [anon_sym_class] = ACTIONS(2721), + [anon_sym_struct] = ACTIONS(2721), + [anon_sym_union] = ACTIONS(2721), + [anon_sym_if] = ACTIONS(2721), + [anon_sym_switch] = ACTIONS(2721), + [anon_sym_case] = ACTIONS(2721), + [anon_sym_default] = ACTIONS(2721), + [anon_sym_while] = ACTIONS(2721), + [anon_sym_do] = ACTIONS(2721), + [anon_sym_for] = ACTIONS(2721), + [anon_sym_return] = ACTIONS(2721), + [anon_sym_break] = ACTIONS(2721), + [anon_sym_continue] = ACTIONS(2721), + [anon_sym_goto] = ACTIONS(2721), + [anon_sym_not] = ACTIONS(2721), + [anon_sym_compl] = ACTIONS(2721), + [anon_sym_DASH_DASH] = ACTIONS(2723), + [anon_sym_PLUS_PLUS] = ACTIONS(2723), + [anon_sym_sizeof] = ACTIONS(2721), + [anon_sym_offsetof] = ACTIONS(2721), + [anon_sym__Generic] = ACTIONS(2721), + [anon_sym_asm] = ACTIONS(2721), + [anon_sym___asm__] = ACTIONS(2721), + [sym_number_literal] = ACTIONS(2723), + [anon_sym_L_SQUOTE] = ACTIONS(2723), + [anon_sym_u_SQUOTE] = ACTIONS(2723), + [anon_sym_U_SQUOTE] = ACTIONS(2723), + [anon_sym_u8_SQUOTE] = ACTIONS(2723), + [anon_sym_SQUOTE] = ACTIONS(2723), + [anon_sym_L_DQUOTE] = ACTIONS(2723), + [anon_sym_u_DQUOTE] = ACTIONS(2723), + [anon_sym_U_DQUOTE] = ACTIONS(2723), + [anon_sym_u8_DQUOTE] = ACTIONS(2723), + [anon_sym_DQUOTE] = ACTIONS(2723), + [sym_true] = ACTIONS(2721), + [sym_false] = ACTIONS(2721), + [anon_sym_NULL] = ACTIONS(2721), + [anon_sym_nullptr] = ACTIONS(2721), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2721), + [anon_sym_decltype] = ACTIONS(2721), + [anon_sym_virtual] = ACTIONS(2721), + [anon_sym_explicit] = ACTIONS(2721), + [anon_sym_typename] = ACTIONS(2721), + [anon_sym_template] = ACTIONS(2721), + [anon_sym_operator] = ACTIONS(2721), + [anon_sym_try] = ACTIONS(2721), + [anon_sym_delete] = ACTIONS(2721), + [anon_sym_throw] = ACTIONS(2721), + [anon_sym_namespace] = ACTIONS(2721), + [anon_sym_using] = ACTIONS(2721), + [anon_sym_static_assert] = ACTIONS(2721), + [anon_sym_concept] = ACTIONS(2721), + [anon_sym_co_return] = ACTIONS(2721), + [anon_sym_co_yield] = ACTIONS(2721), + [anon_sym_catch] = ACTIONS(3340), + [anon_sym_R_DQUOTE] = ACTIONS(2723), + [anon_sym_LR_DQUOTE] = ACTIONS(2723), + [anon_sym_uR_DQUOTE] = ACTIONS(2723), + [anon_sym_UR_DQUOTE] = ACTIONS(2723), + [anon_sym_u8R_DQUOTE] = ACTIONS(2723), + [anon_sym_co_await] = ACTIONS(2721), + [anon_sym_new] = ACTIONS(2721), + [anon_sym_requires] = ACTIONS(2721), + [sym_this] = ACTIONS(2721), }, [647] = { - [sym_identifier] = ACTIONS(2614), - [aux_sym_preproc_include_token1] = ACTIONS(2614), - [aux_sym_preproc_def_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token2] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2614), - [sym_preproc_directive] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP_AMP] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2614), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym___based] = ACTIONS(2614), - [anon_sym___cdecl] = ACTIONS(2614), - [anon_sym___clrcall] = ACTIONS(2614), - [anon_sym___stdcall] = ACTIONS(2614), - [anon_sym___fastcall] = ACTIONS(2614), - [anon_sym___thiscall] = ACTIONS(2614), - [anon_sym___vectorcall] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_case] = ACTIONS(2614), - [anon_sym_default] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_explicit] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_operator] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_namespace] = ACTIONS(2614), - [anon_sym_using] = ACTIONS(2614), - [anon_sym_static_assert] = ACTIONS(2614), - [anon_sym_concept] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token2] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [aux_sym_preproc_else_token1] = ACTIONS(3028), + [aux_sym_preproc_elif_token1] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, [648] = { - [sym_identifier] = ACTIONS(2614), - [aux_sym_preproc_include_token1] = ACTIONS(2614), - [aux_sym_preproc_def_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token2] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2614), - [sym_preproc_directive] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP_AMP] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2614), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym___based] = ACTIONS(2614), - [anon_sym___cdecl] = ACTIONS(2614), - [anon_sym___clrcall] = ACTIONS(2614), - [anon_sym___stdcall] = ACTIONS(2614), - [anon_sym___fastcall] = ACTIONS(2614), - [anon_sym___thiscall] = ACTIONS(2614), - [anon_sym___vectorcall] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_case] = ACTIONS(2614), - [anon_sym_default] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_explicit] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_operator] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_namespace] = ACTIONS(2614), - [anon_sym_using] = ACTIONS(2614), - [anon_sym_static_assert] = ACTIONS(2614), - [anon_sym_concept] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token2] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [aux_sym_preproc_else_token1] = ACTIONS(3028), + [aux_sym_preproc_elif_token1] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, [649] = { - [sym_identifier] = ACTIONS(2614), - [aux_sym_preproc_include_token1] = ACTIONS(2614), - [aux_sym_preproc_def_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token2] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2614), - [sym_preproc_directive] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP_AMP] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2614), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym___based] = ACTIONS(2614), - [anon_sym___cdecl] = ACTIONS(2614), - [anon_sym___clrcall] = ACTIONS(2614), - [anon_sym___stdcall] = ACTIONS(2614), - [anon_sym___fastcall] = ACTIONS(2614), - [anon_sym___thiscall] = ACTIONS(2614), - [anon_sym___vectorcall] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_case] = ACTIONS(2614), - [anon_sym_default] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_explicit] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_operator] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_namespace] = ACTIONS(2614), - [anon_sym_using] = ACTIONS(2614), - [anon_sym_static_assert] = ACTIONS(2614), - [anon_sym_concept] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token2] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [aux_sym_preproc_else_token1] = ACTIONS(3028), + [aux_sym_preproc_elif_token1] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, [650] = { - [sym_identifier] = ACTIONS(2614), - [aux_sym_preproc_include_token1] = ACTIONS(2614), - [aux_sym_preproc_def_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token2] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2614), - [sym_preproc_directive] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP_AMP] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2614), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym___based] = ACTIONS(2614), - [anon_sym___cdecl] = ACTIONS(2614), - [anon_sym___clrcall] = ACTIONS(2614), - [anon_sym___stdcall] = ACTIONS(2614), - [anon_sym___fastcall] = ACTIONS(2614), - [anon_sym___thiscall] = ACTIONS(2614), - [anon_sym___vectorcall] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_case] = ACTIONS(2614), - [anon_sym_default] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_explicit] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_operator] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_namespace] = ACTIONS(2614), - [anon_sym_using] = ACTIONS(2614), - [anon_sym_static_assert] = ACTIONS(2614), - [anon_sym_concept] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token2] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [aux_sym_preproc_else_token1] = ACTIONS(3028), + [aux_sym_preproc_elif_token1] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, [651] = { - [sym_identifier] = ACTIONS(2614), - [aux_sym_preproc_include_token1] = ACTIONS(2614), - [aux_sym_preproc_def_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token2] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2614), - [sym_preproc_directive] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP_AMP] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2614), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym___based] = ACTIONS(2614), - [anon_sym___cdecl] = ACTIONS(2614), - [anon_sym___clrcall] = ACTIONS(2614), - [anon_sym___stdcall] = ACTIONS(2614), - [anon_sym___fastcall] = ACTIONS(2614), - [anon_sym___thiscall] = ACTIONS(2614), - [anon_sym___vectorcall] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_case] = ACTIONS(2614), - [anon_sym_default] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_explicit] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_operator] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_namespace] = ACTIONS(2614), - [anon_sym_using] = ACTIONS(2614), - [anon_sym_static_assert] = ACTIONS(2614), - [anon_sym_concept] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), + [sym_identifier] = ACTIONS(2912), + [aux_sym_preproc_include_token1] = ACTIONS(2912), + [aux_sym_preproc_def_token1] = ACTIONS(2912), + [aux_sym_preproc_if_token1] = ACTIONS(2912), + [aux_sym_preproc_if_token2] = ACTIONS(2912), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2912), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2912), + [aux_sym_preproc_else_token1] = ACTIONS(2912), + [aux_sym_preproc_elif_token1] = ACTIONS(2912), + [sym_preproc_directive] = ACTIONS(2912), + [anon_sym_LPAREN2] = ACTIONS(2914), + [anon_sym_BANG] = ACTIONS(2914), + [anon_sym_TILDE] = ACTIONS(2914), + [anon_sym_DASH] = ACTIONS(2912), + [anon_sym_PLUS] = ACTIONS(2912), + [anon_sym_STAR] = ACTIONS(2914), + [anon_sym_AMP_AMP] = ACTIONS(2914), + [anon_sym_AMP] = ACTIONS(2912), + [anon_sym_SEMI] = ACTIONS(2914), + [anon_sym_typedef] = ACTIONS(2912), + [anon_sym_extern] = ACTIONS(2912), + [anon_sym___attribute__] = ACTIONS(2912), + [anon_sym_COLON_COLON] = ACTIONS(2914), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2914), + [anon_sym___declspec] = ACTIONS(2912), + [anon_sym___based] = ACTIONS(2912), + [anon_sym___cdecl] = ACTIONS(2912), + [anon_sym___clrcall] = ACTIONS(2912), + [anon_sym___stdcall] = ACTIONS(2912), + [anon_sym___fastcall] = ACTIONS(2912), + [anon_sym___thiscall] = ACTIONS(2912), + [anon_sym___vectorcall] = ACTIONS(2912), + [anon_sym_LBRACE] = ACTIONS(2914), + [anon_sym_LBRACK] = ACTIONS(2912), + [anon_sym_static] = ACTIONS(2912), + [anon_sym_register] = ACTIONS(2912), + [anon_sym_inline] = ACTIONS(2912), + [anon_sym_thread_local] = ACTIONS(2912), + [anon_sym_const] = ACTIONS(2912), + [anon_sym_constexpr] = ACTIONS(2912), + [anon_sym_volatile] = ACTIONS(2912), + [anon_sym_restrict] = ACTIONS(2912), + [anon_sym___restrict__] = ACTIONS(2912), + [anon_sym__Atomic] = ACTIONS(2912), + [anon_sym__Noreturn] = ACTIONS(2912), + [anon_sym_noreturn] = ACTIONS(2912), + [anon_sym_mutable] = ACTIONS(2912), + [anon_sym_constinit] = ACTIONS(2912), + [anon_sym_consteval] = ACTIONS(2912), + [anon_sym_signed] = ACTIONS(2912), + [anon_sym_unsigned] = ACTIONS(2912), + [anon_sym_long] = ACTIONS(2912), + [anon_sym_short] = ACTIONS(2912), + [sym_primitive_type] = ACTIONS(2912), + [anon_sym_enum] = ACTIONS(2912), + [anon_sym_class] = ACTIONS(2912), + [anon_sym_struct] = ACTIONS(2912), + [anon_sym_union] = ACTIONS(2912), + [anon_sym_if] = ACTIONS(2912), + [anon_sym_else] = ACTIONS(2912), + [anon_sym_switch] = ACTIONS(2912), + [anon_sym_case] = ACTIONS(2912), + [anon_sym_default] = ACTIONS(2912), + [anon_sym_while] = ACTIONS(2912), + [anon_sym_do] = ACTIONS(2912), + [anon_sym_for] = ACTIONS(2912), + [anon_sym_return] = ACTIONS(2912), + [anon_sym_break] = ACTIONS(2912), + [anon_sym_continue] = ACTIONS(2912), + [anon_sym_goto] = ACTIONS(2912), + [anon_sym_not] = ACTIONS(2912), + [anon_sym_compl] = ACTIONS(2912), + [anon_sym_DASH_DASH] = ACTIONS(2914), + [anon_sym_PLUS_PLUS] = ACTIONS(2914), + [anon_sym_sizeof] = ACTIONS(2912), + [anon_sym_offsetof] = ACTIONS(2912), + [anon_sym__Generic] = ACTIONS(2912), + [anon_sym_asm] = ACTIONS(2912), + [anon_sym___asm__] = ACTIONS(2912), + [sym_number_literal] = ACTIONS(2914), + [anon_sym_L_SQUOTE] = ACTIONS(2914), + [anon_sym_u_SQUOTE] = ACTIONS(2914), + [anon_sym_U_SQUOTE] = ACTIONS(2914), + [anon_sym_u8_SQUOTE] = ACTIONS(2914), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_L_DQUOTE] = ACTIONS(2914), + [anon_sym_u_DQUOTE] = ACTIONS(2914), + [anon_sym_U_DQUOTE] = ACTIONS(2914), + [anon_sym_u8_DQUOTE] = ACTIONS(2914), + [anon_sym_DQUOTE] = ACTIONS(2914), + [sym_true] = ACTIONS(2912), + [sym_false] = ACTIONS(2912), + [anon_sym_NULL] = ACTIONS(2912), + [anon_sym_nullptr] = ACTIONS(2912), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2912), + [anon_sym_decltype] = ACTIONS(2912), + [anon_sym_virtual] = ACTIONS(2912), + [anon_sym_explicit] = ACTIONS(2912), + [anon_sym_typename] = ACTIONS(2912), + [anon_sym_template] = ACTIONS(2912), + [anon_sym_operator] = ACTIONS(2912), + [anon_sym_try] = ACTIONS(2912), + [anon_sym_delete] = ACTIONS(2912), + [anon_sym_throw] = ACTIONS(2912), + [anon_sym_namespace] = ACTIONS(2912), + [anon_sym_using] = ACTIONS(2912), + [anon_sym_static_assert] = ACTIONS(2912), + [anon_sym_concept] = ACTIONS(2912), + [anon_sym_co_return] = ACTIONS(2912), + [anon_sym_co_yield] = ACTIONS(2912), + [anon_sym_R_DQUOTE] = ACTIONS(2914), + [anon_sym_LR_DQUOTE] = ACTIONS(2914), + [anon_sym_uR_DQUOTE] = ACTIONS(2914), + [anon_sym_UR_DQUOTE] = ACTIONS(2914), + [anon_sym_u8R_DQUOTE] = ACTIONS(2914), + [anon_sym_co_await] = ACTIONS(2912), + [anon_sym_new] = ACTIONS(2912), + [anon_sym_requires] = ACTIONS(2912), + [sym_this] = ACTIONS(2912), }, [652] = { - [sym_identifier] = ACTIONS(2614), - [aux_sym_preproc_include_token1] = ACTIONS(2614), - [aux_sym_preproc_def_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token2] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2614), - [sym_preproc_directive] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP_AMP] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2614), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym___based] = ACTIONS(2614), - [anon_sym___cdecl] = ACTIONS(2614), - [anon_sym___clrcall] = ACTIONS(2614), - [anon_sym___stdcall] = ACTIONS(2614), - [anon_sym___fastcall] = ACTIONS(2614), - [anon_sym___thiscall] = ACTIONS(2614), - [anon_sym___vectorcall] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_case] = ACTIONS(2614), - [anon_sym_default] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_explicit] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_operator] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_namespace] = ACTIONS(2614), - [anon_sym_using] = ACTIONS(2614), - [anon_sym_static_assert] = ACTIONS(2614), - [anon_sym_concept] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token2] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [aux_sym_preproc_else_token1] = ACTIONS(3048), + [aux_sym_preproc_elif_token1] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, [653] = { - [sym_identifier] = ACTIONS(2614), - [aux_sym_preproc_include_token1] = ACTIONS(2614), - [aux_sym_preproc_def_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token2] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2614), - [sym_preproc_directive] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP_AMP] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2614), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym___based] = ACTIONS(2614), - [anon_sym___cdecl] = ACTIONS(2614), - [anon_sym___clrcall] = ACTIONS(2614), - [anon_sym___stdcall] = ACTIONS(2614), - [anon_sym___fastcall] = ACTIONS(2614), - [anon_sym___thiscall] = ACTIONS(2614), - [anon_sym___vectorcall] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_case] = ACTIONS(2614), - [anon_sym_default] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_explicit] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_operator] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_namespace] = ACTIONS(2614), - [anon_sym_using] = ACTIONS(2614), - [anon_sym_static_assert] = ACTIONS(2614), - [anon_sym_concept] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), + [sym_identifier] = ACTIONS(2916), + [aux_sym_preproc_include_token1] = ACTIONS(2916), + [aux_sym_preproc_def_token1] = ACTIONS(2916), + [aux_sym_preproc_if_token1] = ACTIONS(2916), + [aux_sym_preproc_if_token2] = ACTIONS(2916), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2916), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2916), + [aux_sym_preproc_else_token1] = ACTIONS(2916), + [aux_sym_preproc_elif_token1] = ACTIONS(2916), + [sym_preproc_directive] = ACTIONS(2916), + [anon_sym_LPAREN2] = ACTIONS(2918), + [anon_sym_BANG] = ACTIONS(2918), + [anon_sym_TILDE] = ACTIONS(2918), + [anon_sym_DASH] = ACTIONS(2916), + [anon_sym_PLUS] = ACTIONS(2916), + [anon_sym_STAR] = ACTIONS(2918), + [anon_sym_AMP_AMP] = ACTIONS(2918), + [anon_sym_AMP] = ACTIONS(2916), + [anon_sym_SEMI] = ACTIONS(2918), + [anon_sym_typedef] = ACTIONS(2916), + [anon_sym_extern] = ACTIONS(2916), + [anon_sym___attribute__] = ACTIONS(2916), + [anon_sym_COLON_COLON] = ACTIONS(2918), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2918), + [anon_sym___declspec] = ACTIONS(2916), + [anon_sym___based] = ACTIONS(2916), + [anon_sym___cdecl] = ACTIONS(2916), + [anon_sym___clrcall] = ACTIONS(2916), + [anon_sym___stdcall] = ACTIONS(2916), + [anon_sym___fastcall] = ACTIONS(2916), + [anon_sym___thiscall] = ACTIONS(2916), + [anon_sym___vectorcall] = ACTIONS(2916), + [anon_sym_LBRACE] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(2916), + [anon_sym_static] = ACTIONS(2916), + [anon_sym_register] = ACTIONS(2916), + [anon_sym_inline] = ACTIONS(2916), + [anon_sym_thread_local] = ACTIONS(2916), + [anon_sym_const] = ACTIONS(2916), + [anon_sym_constexpr] = ACTIONS(2916), + [anon_sym_volatile] = ACTIONS(2916), + [anon_sym_restrict] = ACTIONS(2916), + [anon_sym___restrict__] = ACTIONS(2916), + [anon_sym__Atomic] = ACTIONS(2916), + [anon_sym__Noreturn] = ACTIONS(2916), + [anon_sym_noreturn] = ACTIONS(2916), + [anon_sym_mutable] = ACTIONS(2916), + [anon_sym_constinit] = ACTIONS(2916), + [anon_sym_consteval] = ACTIONS(2916), + [anon_sym_signed] = ACTIONS(2916), + [anon_sym_unsigned] = ACTIONS(2916), + [anon_sym_long] = ACTIONS(2916), + [anon_sym_short] = ACTIONS(2916), + [sym_primitive_type] = ACTIONS(2916), + [anon_sym_enum] = ACTIONS(2916), + [anon_sym_class] = ACTIONS(2916), + [anon_sym_struct] = ACTIONS(2916), + [anon_sym_union] = ACTIONS(2916), + [anon_sym_if] = ACTIONS(2916), + [anon_sym_else] = ACTIONS(2916), + [anon_sym_switch] = ACTIONS(2916), + [anon_sym_case] = ACTIONS(2916), + [anon_sym_default] = ACTIONS(2916), + [anon_sym_while] = ACTIONS(2916), + [anon_sym_do] = ACTIONS(2916), + [anon_sym_for] = ACTIONS(2916), + [anon_sym_return] = ACTIONS(2916), + [anon_sym_break] = ACTIONS(2916), + [anon_sym_continue] = ACTIONS(2916), + [anon_sym_goto] = ACTIONS(2916), + [anon_sym_not] = ACTIONS(2916), + [anon_sym_compl] = ACTIONS(2916), + [anon_sym_DASH_DASH] = ACTIONS(2918), + [anon_sym_PLUS_PLUS] = ACTIONS(2918), + [anon_sym_sizeof] = ACTIONS(2916), + [anon_sym_offsetof] = ACTIONS(2916), + [anon_sym__Generic] = ACTIONS(2916), + [anon_sym_asm] = ACTIONS(2916), + [anon_sym___asm__] = ACTIONS(2916), + [sym_number_literal] = ACTIONS(2918), + [anon_sym_L_SQUOTE] = ACTIONS(2918), + [anon_sym_u_SQUOTE] = ACTIONS(2918), + [anon_sym_U_SQUOTE] = ACTIONS(2918), + [anon_sym_u8_SQUOTE] = ACTIONS(2918), + [anon_sym_SQUOTE] = ACTIONS(2918), + [anon_sym_L_DQUOTE] = ACTIONS(2918), + [anon_sym_u_DQUOTE] = ACTIONS(2918), + [anon_sym_U_DQUOTE] = ACTIONS(2918), + [anon_sym_u8_DQUOTE] = ACTIONS(2918), + [anon_sym_DQUOTE] = ACTIONS(2918), + [sym_true] = ACTIONS(2916), + [sym_false] = ACTIONS(2916), + [anon_sym_NULL] = ACTIONS(2916), + [anon_sym_nullptr] = ACTIONS(2916), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2916), + [anon_sym_decltype] = ACTIONS(2916), + [anon_sym_virtual] = ACTIONS(2916), + [anon_sym_explicit] = ACTIONS(2916), + [anon_sym_typename] = ACTIONS(2916), + [anon_sym_template] = ACTIONS(2916), + [anon_sym_operator] = ACTIONS(2916), + [anon_sym_try] = ACTIONS(2916), + [anon_sym_delete] = ACTIONS(2916), + [anon_sym_throw] = ACTIONS(2916), + [anon_sym_namespace] = ACTIONS(2916), + [anon_sym_using] = ACTIONS(2916), + [anon_sym_static_assert] = ACTIONS(2916), + [anon_sym_concept] = ACTIONS(2916), + [anon_sym_co_return] = ACTIONS(2916), + [anon_sym_co_yield] = ACTIONS(2916), + [anon_sym_R_DQUOTE] = ACTIONS(2918), + [anon_sym_LR_DQUOTE] = ACTIONS(2918), + [anon_sym_uR_DQUOTE] = ACTIONS(2918), + [anon_sym_UR_DQUOTE] = ACTIONS(2918), + [anon_sym_u8R_DQUOTE] = ACTIONS(2918), + [anon_sym_co_await] = ACTIONS(2916), + [anon_sym_new] = ACTIONS(2916), + [anon_sym_requires] = ACTIONS(2916), + [sym_this] = ACTIONS(2916), }, [654] = { - [sym_identifier] = ACTIONS(2614), - [aux_sym_preproc_include_token1] = ACTIONS(2614), - [aux_sym_preproc_def_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token2] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2614), - [sym_preproc_directive] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP_AMP] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2614), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym___based] = ACTIONS(2614), - [anon_sym___cdecl] = ACTIONS(2614), - [anon_sym___clrcall] = ACTIONS(2614), - [anon_sym___stdcall] = ACTIONS(2614), - [anon_sym___fastcall] = ACTIONS(2614), - [anon_sym___thiscall] = ACTIONS(2614), - [anon_sym___vectorcall] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_case] = ACTIONS(2614), - [anon_sym_default] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_explicit] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_operator] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_namespace] = ACTIONS(2614), - [anon_sym_using] = ACTIONS(2614), - [anon_sym_static_assert] = ACTIONS(2614), - [anon_sym_concept] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token2] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [aux_sym_preproc_else_token1] = ACTIONS(3048), + [aux_sym_preproc_elif_token1] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, [655] = { - [sym_identifier] = ACTIONS(2614), - [aux_sym_preproc_include_token1] = ACTIONS(2614), - [aux_sym_preproc_def_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token2] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2614), - [sym_preproc_directive] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP_AMP] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2614), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym___based] = ACTIONS(2614), - [anon_sym___cdecl] = ACTIONS(2614), - [anon_sym___clrcall] = ACTIONS(2614), - [anon_sym___stdcall] = ACTIONS(2614), - [anon_sym___fastcall] = ACTIONS(2614), - [anon_sym___thiscall] = ACTIONS(2614), - [anon_sym___vectorcall] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_case] = ACTIONS(2614), - [anon_sym_default] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_explicit] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_operator] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_namespace] = ACTIONS(2614), - [anon_sym_using] = ACTIONS(2614), - [anon_sym_static_assert] = ACTIONS(2614), - [anon_sym_concept] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token2] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [aux_sym_preproc_else_token1] = ACTIONS(3028), + [aux_sym_preproc_elif_token1] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, [656] = { - [sym_identifier] = ACTIONS(2614), - [aux_sym_preproc_include_token1] = ACTIONS(2614), - [aux_sym_preproc_def_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token2] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2614), - [sym_preproc_directive] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP_AMP] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2614), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym___based] = ACTIONS(2614), - [anon_sym___cdecl] = ACTIONS(2614), - [anon_sym___clrcall] = ACTIONS(2614), - [anon_sym___stdcall] = ACTIONS(2614), - [anon_sym___fastcall] = ACTIONS(2614), - [anon_sym___thiscall] = ACTIONS(2614), - [anon_sym___vectorcall] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_case] = ACTIONS(2614), - [anon_sym_default] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_explicit] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_operator] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_namespace] = ACTIONS(2614), - [anon_sym_using] = ACTIONS(2614), - [anon_sym_static_assert] = ACTIONS(2614), - [anon_sym_concept] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token2] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [aux_sym_preproc_else_token1] = ACTIONS(3028), + [aux_sym_preproc_elif_token1] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, [657] = { - [sym_identifier] = ACTIONS(2614), - [aux_sym_preproc_include_token1] = ACTIONS(2614), - [aux_sym_preproc_def_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token2] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2614), - [sym_preproc_directive] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP_AMP] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2614), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym___based] = ACTIONS(2614), - [anon_sym___cdecl] = ACTIONS(2614), - [anon_sym___clrcall] = ACTIONS(2614), - [anon_sym___stdcall] = ACTIONS(2614), - [anon_sym___fastcall] = ACTIONS(2614), - [anon_sym___thiscall] = ACTIONS(2614), - [anon_sym___vectorcall] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_case] = ACTIONS(2614), - [anon_sym_default] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_explicit] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_operator] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_namespace] = ACTIONS(2614), - [anon_sym_using] = ACTIONS(2614), - [anon_sym_static_assert] = ACTIONS(2614), - [anon_sym_concept] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token2] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [aux_sym_preproc_else_token1] = ACTIONS(3028), + [aux_sym_preproc_elif_token1] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, [658] = { - [sym_identifier] = ACTIONS(2614), - [aux_sym_preproc_include_token1] = ACTIONS(2614), - [aux_sym_preproc_def_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token2] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2614), - [sym_preproc_directive] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP_AMP] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2614), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym___based] = ACTIONS(2614), - [anon_sym___cdecl] = ACTIONS(2614), - [anon_sym___clrcall] = ACTIONS(2614), - [anon_sym___stdcall] = ACTIONS(2614), - [anon_sym___fastcall] = ACTIONS(2614), - [anon_sym___thiscall] = ACTIONS(2614), - [anon_sym___vectorcall] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_case] = ACTIONS(2614), - [anon_sym_default] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_explicit] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_operator] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_namespace] = ACTIONS(2614), - [anon_sym_using] = ACTIONS(2614), - [anon_sym_static_assert] = ACTIONS(2614), - [anon_sym_concept] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token2] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [aux_sym_preproc_else_token1] = ACTIONS(3028), + [aux_sym_preproc_elif_token1] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, [659] = { - [sym_identifier] = ACTIONS(2614), - [aux_sym_preproc_include_token1] = ACTIONS(2614), - [aux_sym_preproc_def_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token2] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2614), - [sym_preproc_directive] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP_AMP] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2614), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym___based] = ACTIONS(2614), - [anon_sym___cdecl] = ACTIONS(2614), - [anon_sym___clrcall] = ACTIONS(2614), - [anon_sym___stdcall] = ACTIONS(2614), - [anon_sym___fastcall] = ACTIONS(2614), - [anon_sym___thiscall] = ACTIONS(2614), - [anon_sym___vectorcall] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_case] = ACTIONS(2614), - [anon_sym_default] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_explicit] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_operator] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_namespace] = ACTIONS(2614), - [anon_sym_using] = ACTIONS(2614), - [anon_sym_static_assert] = ACTIONS(2614), - [anon_sym_concept] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token2] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [aux_sym_preproc_else_token1] = ACTIONS(3048), + [aux_sym_preproc_elif_token1] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, [660] = { - [sym_identifier] = ACTIONS(2614), - [aux_sym_preproc_include_token1] = ACTIONS(2614), - [aux_sym_preproc_def_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token2] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2614), - [sym_preproc_directive] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP_AMP] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2614), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym___based] = ACTIONS(2614), - [anon_sym___cdecl] = ACTIONS(2614), - [anon_sym___clrcall] = ACTIONS(2614), - [anon_sym___stdcall] = ACTIONS(2614), - [anon_sym___fastcall] = ACTIONS(2614), - [anon_sym___thiscall] = ACTIONS(2614), - [anon_sym___vectorcall] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_case] = ACTIONS(2614), - [anon_sym_default] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_explicit] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_operator] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_namespace] = ACTIONS(2614), - [anon_sym_using] = ACTIONS(2614), - [anon_sym_static_assert] = ACTIONS(2614), - [anon_sym_concept] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token2] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [aux_sym_preproc_else_token1] = ACTIONS(3048), + [aux_sym_preproc_elif_token1] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, [661] = { - [sym_identifier] = ACTIONS(2614), - [aux_sym_preproc_include_token1] = ACTIONS(2614), - [aux_sym_preproc_def_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token2] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2614), - [sym_preproc_directive] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP_AMP] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2614), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym___based] = ACTIONS(2614), - [anon_sym___cdecl] = ACTIONS(2614), - [anon_sym___clrcall] = ACTIONS(2614), - [anon_sym___stdcall] = ACTIONS(2614), - [anon_sym___fastcall] = ACTIONS(2614), - [anon_sym___thiscall] = ACTIONS(2614), - [anon_sym___vectorcall] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_case] = ACTIONS(2614), - [anon_sym_default] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_explicit] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_operator] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_namespace] = ACTIONS(2614), - [anon_sym_using] = ACTIONS(2614), - [anon_sym_static_assert] = ACTIONS(2614), - [anon_sym_concept] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token2] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [aux_sym_preproc_else_token1] = ACTIONS(3028), + [aux_sym_preproc_elif_token1] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, [662] = { - [sym_identifier] = ACTIONS(2614), - [aux_sym_preproc_include_token1] = ACTIONS(2614), - [aux_sym_preproc_def_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token2] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2614), - [sym_preproc_directive] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP_AMP] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2614), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym___based] = ACTIONS(2614), - [anon_sym___cdecl] = ACTIONS(2614), - [anon_sym___clrcall] = ACTIONS(2614), - [anon_sym___stdcall] = ACTIONS(2614), - [anon_sym___fastcall] = ACTIONS(2614), - [anon_sym___thiscall] = ACTIONS(2614), - [anon_sym___vectorcall] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_case] = ACTIONS(2614), - [anon_sym_default] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_explicit] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_operator] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_namespace] = ACTIONS(2614), - [anon_sym_using] = ACTIONS(2614), - [anon_sym_static_assert] = ACTIONS(2614), - [anon_sym_concept] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), + [sym_preproc_def] = STATE(678), + [sym_preproc_function_def] = STATE(678), + [sym_preproc_call] = STATE(678), + [sym_preproc_if_in_field_declaration_list] = STATE(678), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(678), + [sym_type_definition] = STATE(678), + [sym__declaration_modifiers] = STATE(3706), + [sym__declaration_specifiers] = STATE(4831), + [sym_attribute_specifier] = STATE(3706), + [sym_attribute_declaration] = STATE(3706), + [sym_ms_declspec_modifier] = STATE(3706), + [sym_ms_based_modifier] = STATE(7654), + [sym__declarator] = STATE(5881), + [sym_parenthesized_declarator] = STATE(5640), + [sym_attributed_declarator] = STATE(5640), + [sym_pointer_declarator] = STATE(5640), + [sym_function_declarator] = STATE(5531), + [sym_array_declarator] = STATE(5640), + [sym_storage_class_specifier] = STATE(3706), + [sym_type_qualifier] = STATE(3706), + [sym__type_specifier] = STATE(3845), + [sym_sized_type_specifier] = STATE(3918), + [sym_enum_specifier] = STATE(3918), + [sym_struct_specifier] = STATE(3918), + [sym_union_specifier] = STATE(3918), + [sym__field_declaration_list_item] = STATE(678), + [sym_field_declaration] = STATE(678), + [sym_placeholder_type_specifier] = STATE(3918), + [sym_decltype_auto] = STATE(3916), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3918), + [sym_virtual] = STATE(3706), + [sym_explicit_function_specifier] = STATE(2247), + [sym_dependent_type] = STATE(3918), + [sym_template_declaration] = STATE(678), + [sym_operator_cast] = STATE(5897), + [sym_inline_method_definition] = STATE(678), + [sym__constructor_specifiers] = STATE(2247), + [sym_operator_cast_definition] = STATE(678), + [sym_operator_cast_declaration] = STATE(678), + [sym_constructor_or_destructor_definition] = STATE(678), + [sym_constructor_or_destructor_declaration] = STATE(678), + [sym_friend_declaration] = STATE(678), + [sym_access_specifier] = STATE(7346), + [sym_reference_declarator] = STATE(5640), + [sym_structured_binding_declarator] = STATE(5640), + [sym_template_type] = STATE(3680), + [sym_template_function] = STATE(5640), + [sym_using_declaration] = STATE(678), + [sym_alias_declaration] = STATE(678), + [sym_static_assert_declaration] = STATE(678), + [sym_destructor_name] = STATE(5640), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5151), + [sym_qualified_identifier] = STATE(5640), + [sym_qualified_type_identifier] = STATE(3966), + [sym_qualified_operator_cast_identifier] = STATE(5897), + [sym_operator_name] = STATE(5640), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(678), + [aux_sym__declaration_specifiers_repeat1] = STATE(2509), + [aux_sym_sized_type_specifier_repeat1] = STATE(3981), + [aux_sym_operator_cast_definition_repeat1] = STATE(2247), + [sym_identifier] = ACTIONS(2544), + [aux_sym_preproc_def_token1] = ACTIONS(3479), + [aux_sym_preproc_if_token1] = ACTIONS(3481), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3483), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3483), + [sym_preproc_directive] = ACTIONS(3485), + [anon_sym_LPAREN2] = ACTIONS(2560), + [anon_sym_TILDE] = ACTIONS(2562), + [anon_sym_STAR] = ACTIONS(2564), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_typedef] = ACTIONS(3487), + [anon_sym_extern] = ACTIONS(53), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(2570), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1813), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(45), + [anon_sym_RBRACE] = ACTIONS(3511), + [anon_sym_LBRACK] = ACTIONS(2572), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(53), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(2574), + [anon_sym_unsigned] = ACTIONS(2574), + [anon_sym_long] = ACTIONS(2574), + [anon_sym_short] = ACTIONS(2574), + [sym_primitive_type] = ACTIONS(2576), + [anon_sym_enum] = ACTIONS(2578), + [anon_sym_class] = ACTIONS(2580), + [anon_sym_struct] = ACTIONS(2582), + [anon_sym_union] = ACTIONS(2584), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2586), + [anon_sym_decltype] = ACTIONS(2588), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_explicit] = ACTIONS(119), + [anon_sym_typename] = ACTIONS(2590), + [anon_sym_template] = ACTIONS(3491), + [anon_sym_operator] = ACTIONS(125), + [anon_sym_friend] = ACTIONS(3493), + [anon_sym_public] = ACTIONS(2596), + [anon_sym_private] = ACTIONS(2596), + [anon_sym_protected] = ACTIONS(2596), + [anon_sym_using] = ACTIONS(3495), + [anon_sym_static_assert] = ACTIONS(3497), }, [663] = { - [sym_identifier] = ACTIONS(2614), - [aux_sym_preproc_include_token1] = ACTIONS(2614), - [aux_sym_preproc_def_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token2] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2614), - [sym_preproc_directive] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP_AMP] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2614), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym___based] = ACTIONS(2614), - [anon_sym___cdecl] = ACTIONS(2614), - [anon_sym___clrcall] = ACTIONS(2614), - [anon_sym___stdcall] = ACTIONS(2614), - [anon_sym___fastcall] = ACTIONS(2614), - [anon_sym___thiscall] = ACTIONS(2614), - [anon_sym___vectorcall] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_case] = ACTIONS(2614), - [anon_sym_default] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_explicit] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_operator] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_namespace] = ACTIONS(2614), - [anon_sym_using] = ACTIONS(2614), - [anon_sym_static_assert] = ACTIONS(2614), - [anon_sym_concept] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), + [sym_catch_clause] = STATE(570), + [aux_sym_constructor_try_statement_repeat1] = STATE(570), + [sym_identifier] = ACTIONS(2721), + [aux_sym_preproc_include_token1] = ACTIONS(2721), + [aux_sym_preproc_def_token1] = ACTIONS(2721), + [aux_sym_preproc_if_token1] = ACTIONS(2721), + [aux_sym_preproc_if_token2] = ACTIONS(2721), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2721), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2721), + [sym_preproc_directive] = ACTIONS(2721), + [anon_sym_LPAREN2] = ACTIONS(2723), + [anon_sym_BANG] = ACTIONS(2723), + [anon_sym_TILDE] = ACTIONS(2723), + [anon_sym_DASH] = ACTIONS(2721), + [anon_sym_PLUS] = ACTIONS(2721), + [anon_sym_STAR] = ACTIONS(2723), + [anon_sym_AMP_AMP] = ACTIONS(2723), + [anon_sym_AMP] = ACTIONS(2721), + [anon_sym_SEMI] = ACTIONS(2723), + [anon_sym_typedef] = ACTIONS(2721), + [anon_sym_extern] = ACTIONS(2721), + [anon_sym___attribute__] = ACTIONS(2721), + [anon_sym_COLON_COLON] = ACTIONS(2723), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2723), + [anon_sym___declspec] = ACTIONS(2721), + [anon_sym___based] = ACTIONS(2721), + [anon_sym___cdecl] = ACTIONS(2721), + [anon_sym___clrcall] = ACTIONS(2721), + [anon_sym___stdcall] = ACTIONS(2721), + [anon_sym___fastcall] = ACTIONS(2721), + [anon_sym___thiscall] = ACTIONS(2721), + [anon_sym___vectorcall] = ACTIONS(2721), + [anon_sym_LBRACE] = ACTIONS(2723), + [anon_sym_LBRACK] = ACTIONS(2721), + [anon_sym_static] = ACTIONS(2721), + [anon_sym_register] = ACTIONS(2721), + [anon_sym_inline] = ACTIONS(2721), + [anon_sym_thread_local] = ACTIONS(2721), + [anon_sym_const] = ACTIONS(2721), + [anon_sym_constexpr] = ACTIONS(2721), + [anon_sym_volatile] = ACTIONS(2721), + [anon_sym_restrict] = ACTIONS(2721), + [anon_sym___restrict__] = ACTIONS(2721), + [anon_sym__Atomic] = ACTIONS(2721), + [anon_sym__Noreturn] = ACTIONS(2721), + [anon_sym_noreturn] = ACTIONS(2721), + [anon_sym_mutable] = ACTIONS(2721), + [anon_sym_constinit] = ACTIONS(2721), + [anon_sym_consteval] = ACTIONS(2721), + [anon_sym_signed] = ACTIONS(2721), + [anon_sym_unsigned] = ACTIONS(2721), + [anon_sym_long] = ACTIONS(2721), + [anon_sym_short] = ACTIONS(2721), + [sym_primitive_type] = ACTIONS(2721), + [anon_sym_enum] = ACTIONS(2721), + [anon_sym_class] = ACTIONS(2721), + [anon_sym_struct] = ACTIONS(2721), + [anon_sym_union] = ACTIONS(2721), + [anon_sym_if] = ACTIONS(2721), + [anon_sym_switch] = ACTIONS(2721), + [anon_sym_case] = ACTIONS(2721), + [anon_sym_default] = ACTIONS(2721), + [anon_sym_while] = ACTIONS(2721), + [anon_sym_do] = ACTIONS(2721), + [anon_sym_for] = ACTIONS(2721), + [anon_sym_return] = ACTIONS(2721), + [anon_sym_break] = ACTIONS(2721), + [anon_sym_continue] = ACTIONS(2721), + [anon_sym_goto] = ACTIONS(2721), + [anon_sym_not] = ACTIONS(2721), + [anon_sym_compl] = ACTIONS(2721), + [anon_sym_DASH_DASH] = ACTIONS(2723), + [anon_sym_PLUS_PLUS] = ACTIONS(2723), + [anon_sym_sizeof] = ACTIONS(2721), + [anon_sym_offsetof] = ACTIONS(2721), + [anon_sym__Generic] = ACTIONS(2721), + [anon_sym_asm] = ACTIONS(2721), + [anon_sym___asm__] = ACTIONS(2721), + [sym_number_literal] = ACTIONS(2723), + [anon_sym_L_SQUOTE] = ACTIONS(2723), + [anon_sym_u_SQUOTE] = ACTIONS(2723), + [anon_sym_U_SQUOTE] = ACTIONS(2723), + [anon_sym_u8_SQUOTE] = ACTIONS(2723), + [anon_sym_SQUOTE] = ACTIONS(2723), + [anon_sym_L_DQUOTE] = ACTIONS(2723), + [anon_sym_u_DQUOTE] = ACTIONS(2723), + [anon_sym_U_DQUOTE] = ACTIONS(2723), + [anon_sym_u8_DQUOTE] = ACTIONS(2723), + [anon_sym_DQUOTE] = ACTIONS(2723), + [sym_true] = ACTIONS(2721), + [sym_false] = ACTIONS(2721), + [anon_sym_NULL] = ACTIONS(2721), + [anon_sym_nullptr] = ACTIONS(2721), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2721), + [anon_sym_decltype] = ACTIONS(2721), + [anon_sym_virtual] = ACTIONS(2721), + [anon_sym_explicit] = ACTIONS(2721), + [anon_sym_typename] = ACTIONS(2721), + [anon_sym_template] = ACTIONS(2721), + [anon_sym_operator] = ACTIONS(2721), + [anon_sym_try] = ACTIONS(2721), + [anon_sym_delete] = ACTIONS(2721), + [anon_sym_throw] = ACTIONS(2721), + [anon_sym_namespace] = ACTIONS(2721), + [anon_sym_using] = ACTIONS(2721), + [anon_sym_static_assert] = ACTIONS(2721), + [anon_sym_concept] = ACTIONS(2721), + [anon_sym_co_return] = ACTIONS(2721), + [anon_sym_co_yield] = ACTIONS(2721), + [anon_sym_catch] = ACTIONS(3302), + [anon_sym_R_DQUOTE] = ACTIONS(2723), + [anon_sym_LR_DQUOTE] = ACTIONS(2723), + [anon_sym_uR_DQUOTE] = ACTIONS(2723), + [anon_sym_UR_DQUOTE] = ACTIONS(2723), + [anon_sym_u8R_DQUOTE] = ACTIONS(2723), + [anon_sym_co_await] = ACTIONS(2721), + [anon_sym_new] = ACTIONS(2721), + [anon_sym_requires] = ACTIONS(2721), + [sym_this] = ACTIONS(2721), }, [664] = { - [sym_identifier] = ACTIONS(2614), - [aux_sym_preproc_include_token1] = ACTIONS(2614), - [aux_sym_preproc_def_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token2] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2614), - [sym_preproc_directive] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP_AMP] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2614), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym___based] = ACTIONS(2614), - [anon_sym___cdecl] = ACTIONS(2614), - [anon_sym___clrcall] = ACTIONS(2614), - [anon_sym___stdcall] = ACTIONS(2614), - [anon_sym___fastcall] = ACTIONS(2614), - [anon_sym___thiscall] = ACTIONS(2614), - [anon_sym___vectorcall] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_case] = ACTIONS(2614), - [anon_sym_default] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_explicit] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_operator] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_namespace] = ACTIONS(2614), - [anon_sym_using] = ACTIONS(2614), - [anon_sym_static_assert] = ACTIONS(2614), - [anon_sym_concept] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token2] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [aux_sym_preproc_else_token1] = ACTIONS(3028), + [aux_sym_preproc_elif_token1] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, [665] = { - [sym_identifier] = ACTIONS(2614), - [aux_sym_preproc_include_token1] = ACTIONS(2614), - [aux_sym_preproc_def_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token2] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2614), - [sym_preproc_directive] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP_AMP] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2614), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym___based] = ACTIONS(2614), - [anon_sym___cdecl] = ACTIONS(2614), - [anon_sym___clrcall] = ACTIONS(2614), - [anon_sym___stdcall] = ACTIONS(2614), - [anon_sym___fastcall] = ACTIONS(2614), - [anon_sym___thiscall] = ACTIONS(2614), - [anon_sym___vectorcall] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_case] = ACTIONS(2614), - [anon_sym_default] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_explicit] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_operator] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_namespace] = ACTIONS(2614), - [anon_sym_using] = ACTIONS(2614), - [anon_sym_static_assert] = ACTIONS(2614), - [anon_sym_concept] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token2] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [aux_sym_preproc_else_token1] = ACTIONS(3028), + [aux_sym_preproc_elif_token1] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, [666] = { - [sym_identifier] = ACTIONS(2614), - [aux_sym_preproc_include_token1] = ACTIONS(2614), - [aux_sym_preproc_def_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token2] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2614), - [sym_preproc_directive] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP_AMP] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2614), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym___based] = ACTIONS(2614), - [anon_sym___cdecl] = ACTIONS(2614), - [anon_sym___clrcall] = ACTIONS(2614), - [anon_sym___stdcall] = ACTIONS(2614), - [anon_sym___fastcall] = ACTIONS(2614), - [anon_sym___thiscall] = ACTIONS(2614), - [anon_sym___vectorcall] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_case] = ACTIONS(2614), - [anon_sym_default] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_explicit] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_operator] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_namespace] = ACTIONS(2614), - [anon_sym_using] = ACTIONS(2614), - [anon_sym_static_assert] = ACTIONS(2614), - [anon_sym_concept] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token2] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [aux_sym_preproc_else_token1] = ACTIONS(3028), + [aux_sym_preproc_elif_token1] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, [667] = { - [ts_builtin_sym_end] = ACTIONS(2616), - [sym_identifier] = ACTIONS(2614), - [aux_sym_preproc_include_token1] = ACTIONS(2614), - [aux_sym_preproc_def_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2614), - [sym_preproc_directive] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP_AMP] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2614), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym___based] = ACTIONS(2614), - [anon_sym___cdecl] = ACTIONS(2614), - [anon_sym___clrcall] = ACTIONS(2614), - [anon_sym___stdcall] = ACTIONS(2614), - [anon_sym___fastcall] = ACTIONS(2614), - [anon_sym___thiscall] = ACTIONS(2614), - [anon_sym___vectorcall] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_case] = ACTIONS(2614), - [anon_sym_default] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_explicit] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_operator] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_namespace] = ACTIONS(2614), - [anon_sym_using] = ACTIONS(2614), - [anon_sym_static_assert] = ACTIONS(2614), - [anon_sym_concept] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token2] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [aux_sym_preproc_else_token1] = ACTIONS(3028), + [aux_sym_preproc_elif_token1] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, [668] = { - [sym__declaration_modifiers] = STATE(2183), - [sym__declaration_specifiers] = STATE(4771), - [sym_attribute_specifier] = STATE(2183), - [sym_attribute_declaration] = STATE(2183), - [sym_ms_declspec_modifier] = STATE(2183), - [sym_storage_class_specifier] = STATE(2183), - [sym_type_qualifier] = STATE(2183), - [sym__type_specifier] = STATE(3885), - [sym_sized_type_specifier] = STATE(3232), - [sym_enum_specifier] = STATE(3232), - [sym_struct_specifier] = STATE(3232), - [sym_union_specifier] = STATE(3232), - [sym_placeholder_type_specifier] = STATE(3232), - [sym_decltype_auto] = STATE(3279), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3232), - [sym_virtual] = STATE(2183), - [sym_dependent_type] = STATE(3232), - [sym_template_type] = STATE(3198), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(5006), - [sym_qualified_type_identifier] = STATE(3259), - [aux_sym__declaration_specifiers_repeat1] = STATE(2183), - [aux_sym_sized_type_specifier_repeat1] = STATE(3272), - [sym_identifier] = ACTIONS(2922), - [anon_sym_COMMA] = ACTIONS(2924), - [anon_sym_BANG] = ACTIONS(2926), - [anon_sym_TILDE] = ACTIONS(2924), - [anon_sym_DASH] = ACTIONS(2926), - [anon_sym_PLUS] = ACTIONS(2926), - [anon_sym_STAR] = ACTIONS(2926), - [anon_sym_SLASH] = ACTIONS(2926), - [anon_sym_PERCENT] = ACTIONS(2926), - [anon_sym_PIPE_PIPE] = ACTIONS(2924), - [anon_sym_AMP_AMP] = ACTIONS(2924), - [anon_sym_PIPE] = ACTIONS(2926), - [anon_sym_CARET] = ACTIONS(2926), - [anon_sym_AMP] = ACTIONS(2926), - [anon_sym_EQ_EQ] = ACTIONS(2924), - [anon_sym_BANG_EQ] = ACTIONS(2924), - [anon_sym_GT] = ACTIONS(2926), - [anon_sym_GT_EQ] = ACTIONS(2924), - [anon_sym_LT_EQ] = ACTIONS(2926), - [anon_sym_LT] = ACTIONS(2926), - [anon_sym_LT_LT] = ACTIONS(2926), - [anon_sym_GT_GT] = ACTIONS(2926), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(2928), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1413), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym_EQ] = ACTIONS(2926), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(2930), - [anon_sym_unsigned] = ACTIONS(2930), - [anon_sym_long] = ACTIONS(2930), - [anon_sym_short] = ACTIONS(2930), - [sym_primitive_type] = ACTIONS(2932), - [anon_sym_enum] = ACTIONS(2934), - [anon_sym_class] = ACTIONS(2936), - [anon_sym_struct] = ACTIONS(2938), - [anon_sym_union] = ACTIONS(2940), - [anon_sym_STAR_EQ] = ACTIONS(2924), - [anon_sym_SLASH_EQ] = ACTIONS(2924), - [anon_sym_PERCENT_EQ] = ACTIONS(2924), - [anon_sym_PLUS_EQ] = ACTIONS(2924), - [anon_sym_DASH_EQ] = ACTIONS(2924), - [anon_sym_LT_LT_EQ] = ACTIONS(2924), - [anon_sym_GT_GT_EQ] = ACTIONS(2924), - [anon_sym_AMP_EQ] = ACTIONS(2924), - [anon_sym_CARET_EQ] = ACTIONS(2924), - [anon_sym_PIPE_EQ] = ACTIONS(2924), - [anon_sym_and_eq] = ACTIONS(2926), - [anon_sym_or_eq] = ACTIONS(2926), - [anon_sym_xor_eq] = ACTIONS(2926), - [anon_sym_not] = ACTIONS(2926), - [anon_sym_compl] = ACTIONS(2926), - [anon_sym_LT_EQ_GT] = ACTIONS(2924), - [anon_sym_or] = ACTIONS(2926), - [anon_sym_and] = ACTIONS(2926), - [anon_sym_bitor] = ACTIONS(2926), - [anon_sym_xor] = ACTIONS(2926), - [anon_sym_bitand] = ACTIONS(2926), - [anon_sym_not_eq] = ACTIONS(2926), - [anon_sym_DASH_DASH] = ACTIONS(2924), - [anon_sym_PLUS_PLUS] = ACTIONS(2924), - [anon_sym_DASH_GT] = ACTIONS(2926), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(107), - [anon_sym_decltype] = ACTIONS(109), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(2942), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(2944), - [anon_sym_co_await] = ACTIONS(2926), - [anon_sym_new] = ACTIONS(2944), - [anon_sym_DASH_GT_STAR] = ACTIONS(2924), - [anon_sym_LPAREN_RPAREN] = ACTIONS(2924), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2924), - [anon_sym_DQUOTE_DQUOTE] = ACTIONS(2946), + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token2] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [aux_sym_preproc_else_token1] = ACTIONS(3048), + [aux_sym_preproc_elif_token1] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, [669] = { - [sym_identifier] = ACTIONS(2614), - [aux_sym_preproc_include_token1] = ACTIONS(2614), - [aux_sym_preproc_def_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token2] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2614), - [sym_preproc_directive] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP_AMP] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2614), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym___based] = ACTIONS(2614), - [anon_sym___cdecl] = ACTIONS(2614), - [anon_sym___clrcall] = ACTIONS(2614), - [anon_sym___stdcall] = ACTIONS(2614), - [anon_sym___fastcall] = ACTIONS(2614), - [anon_sym___thiscall] = ACTIONS(2614), - [anon_sym___vectorcall] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_case] = ACTIONS(2614), - [anon_sym_default] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_explicit] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_operator] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_namespace] = ACTIONS(2614), - [anon_sym_using] = ACTIONS(2614), - [anon_sym_static_assert] = ACTIONS(2614), - [anon_sym_concept] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token2] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [aux_sym_preproc_else_token1] = ACTIONS(3028), + [aux_sym_preproc_elif_token1] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, [670] = { - [sym_identifier] = ACTIONS(2614), - [aux_sym_preproc_include_token1] = ACTIONS(2614), - [aux_sym_preproc_def_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token2] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2614), - [sym_preproc_directive] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP_AMP] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2614), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym___based] = ACTIONS(2614), - [anon_sym___cdecl] = ACTIONS(2614), - [anon_sym___clrcall] = ACTIONS(2614), - [anon_sym___stdcall] = ACTIONS(2614), - [anon_sym___fastcall] = ACTIONS(2614), - [anon_sym___thiscall] = ACTIONS(2614), - [anon_sym___vectorcall] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_case] = ACTIONS(2614), - [anon_sym_default] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_explicit] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_operator] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_namespace] = ACTIONS(2614), - [anon_sym_using] = ACTIONS(2614), - [anon_sym_static_assert] = ACTIONS(2614), - [anon_sym_concept] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token2] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [aux_sym_preproc_else_token1] = ACTIONS(3048), + [aux_sym_preproc_elif_token1] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, [671] = { - [sym_identifier] = ACTIONS(2614), - [aux_sym_preproc_include_token1] = ACTIONS(2614), - [aux_sym_preproc_def_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token2] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2614), - [sym_preproc_directive] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP_AMP] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2614), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym___based] = ACTIONS(2614), - [anon_sym___cdecl] = ACTIONS(2614), - [anon_sym___clrcall] = ACTIONS(2614), - [anon_sym___stdcall] = ACTIONS(2614), - [anon_sym___fastcall] = ACTIONS(2614), - [anon_sym___thiscall] = ACTIONS(2614), - [anon_sym___vectorcall] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_case] = ACTIONS(2614), - [anon_sym_default] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_explicit] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_operator] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_namespace] = ACTIONS(2614), - [anon_sym_using] = ACTIONS(2614), - [anon_sym_static_assert] = ACTIONS(2614), - [anon_sym_concept] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token2] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [aux_sym_preproc_else_token1] = ACTIONS(3048), + [aux_sym_preproc_elif_token1] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, [672] = { - [sym_identifier] = ACTIONS(2614), - [aux_sym_preproc_include_token1] = ACTIONS(2614), - [aux_sym_preproc_def_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token2] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2614), - [sym_preproc_directive] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP_AMP] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2614), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym___based] = ACTIONS(2614), - [anon_sym___cdecl] = ACTIONS(2614), - [anon_sym___clrcall] = ACTIONS(2614), - [anon_sym___stdcall] = ACTIONS(2614), - [anon_sym___fastcall] = ACTIONS(2614), - [anon_sym___thiscall] = ACTIONS(2614), - [anon_sym___vectorcall] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_case] = ACTIONS(2614), - [anon_sym_default] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_explicit] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_operator] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_namespace] = ACTIONS(2614), - [anon_sym_using] = ACTIONS(2614), - [anon_sym_static_assert] = ACTIONS(2614), - [anon_sym_concept] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token2] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [aux_sym_preproc_else_token1] = ACTIONS(3048), + [aux_sym_preproc_elif_token1] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, [673] = { - [ts_builtin_sym_end] = ACTIONS(2616), - [sym_identifier] = ACTIONS(2614), - [aux_sym_preproc_include_token1] = ACTIONS(2614), - [aux_sym_preproc_def_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2614), - [sym_preproc_directive] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP_AMP] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2614), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym___based] = ACTIONS(2614), - [anon_sym___cdecl] = ACTIONS(2614), - [anon_sym___clrcall] = ACTIONS(2614), - [anon_sym___stdcall] = ACTIONS(2614), - [anon_sym___fastcall] = ACTIONS(2614), - [anon_sym___thiscall] = ACTIONS(2614), - [anon_sym___vectorcall] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_case] = ACTIONS(2614), - [anon_sym_default] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_explicit] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_operator] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_namespace] = ACTIONS(2614), - [anon_sym_using] = ACTIONS(2614), - [anon_sym_static_assert] = ACTIONS(2614), - [anon_sym_concept] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token2] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [aux_sym_preproc_else_token1] = ACTIONS(3048), + [aux_sym_preproc_elif_token1] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, [674] = { - [sym_identifier] = ACTIONS(2614), - [aux_sym_preproc_include_token1] = ACTIONS(2614), - [aux_sym_preproc_def_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token2] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2614), - [sym_preproc_directive] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP_AMP] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2614), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym___based] = ACTIONS(2614), - [anon_sym___cdecl] = ACTIONS(2614), - [anon_sym___clrcall] = ACTIONS(2614), - [anon_sym___stdcall] = ACTIONS(2614), - [anon_sym___fastcall] = ACTIONS(2614), - [anon_sym___thiscall] = ACTIONS(2614), - [anon_sym___vectorcall] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_case] = ACTIONS(2614), - [anon_sym_default] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_explicit] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_operator] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_namespace] = ACTIONS(2614), - [anon_sym_using] = ACTIONS(2614), - [anon_sym_static_assert] = ACTIONS(2614), - [anon_sym_concept] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token2] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [aux_sym_preproc_else_token1] = ACTIONS(3048), + [aux_sym_preproc_elif_token1] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, [675] = { - [sym_identifier] = ACTIONS(2614), - [aux_sym_preproc_include_token1] = ACTIONS(2614), - [aux_sym_preproc_def_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token2] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2614), - [sym_preproc_directive] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP_AMP] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2614), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym___based] = ACTIONS(2614), - [anon_sym___cdecl] = ACTIONS(2614), - [anon_sym___clrcall] = ACTIONS(2614), - [anon_sym___stdcall] = ACTIONS(2614), - [anon_sym___fastcall] = ACTIONS(2614), - [anon_sym___thiscall] = ACTIONS(2614), - [anon_sym___vectorcall] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_case] = ACTIONS(2614), - [anon_sym_default] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_explicit] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_operator] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_namespace] = ACTIONS(2614), - [anon_sym_using] = ACTIONS(2614), - [anon_sym_static_assert] = ACTIONS(2614), - [anon_sym_concept] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token2] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [aux_sym_preproc_else_token1] = ACTIONS(3048), + [aux_sym_preproc_elif_token1] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, [676] = { - [sym_identifier] = ACTIONS(2614), - [aux_sym_preproc_include_token1] = ACTIONS(2614), - [aux_sym_preproc_def_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token2] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2614), - [sym_preproc_directive] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP_AMP] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2614), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym___based] = ACTIONS(2614), - [anon_sym___cdecl] = ACTIONS(2614), - [anon_sym___clrcall] = ACTIONS(2614), - [anon_sym___stdcall] = ACTIONS(2614), - [anon_sym___fastcall] = ACTIONS(2614), - [anon_sym___thiscall] = ACTIONS(2614), - [anon_sym___vectorcall] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_case] = ACTIONS(2614), - [anon_sym_default] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_explicit] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_operator] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_namespace] = ACTIONS(2614), - [anon_sym_using] = ACTIONS(2614), - [anon_sym_static_assert] = ACTIONS(2614), - [anon_sym_concept] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), + [sym_preproc_def] = STATE(712), + [sym_preproc_function_def] = STATE(712), + [sym_preproc_call] = STATE(712), + [sym_preproc_if_in_field_declaration_list] = STATE(712), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(712), + [sym_type_definition] = STATE(712), + [sym__declaration_modifiers] = STATE(3706), + [sym__declaration_specifiers] = STATE(4831), + [sym_attribute_specifier] = STATE(3706), + [sym_attribute_declaration] = STATE(3706), + [sym_ms_declspec_modifier] = STATE(3706), + [sym_ms_based_modifier] = STATE(7654), + [sym__declarator] = STATE(5881), + [sym_parenthesized_declarator] = STATE(5640), + [sym_attributed_declarator] = STATE(5640), + [sym_pointer_declarator] = STATE(5640), + [sym_function_declarator] = STATE(5531), + [sym_array_declarator] = STATE(5640), + [sym_storage_class_specifier] = STATE(3706), + [sym_type_qualifier] = STATE(3706), + [sym__type_specifier] = STATE(3845), + [sym_sized_type_specifier] = STATE(3918), + [sym_enum_specifier] = STATE(3918), + [sym_struct_specifier] = STATE(3918), + [sym_union_specifier] = STATE(3918), + [sym__field_declaration_list_item] = STATE(712), + [sym_field_declaration] = STATE(712), + [sym_placeholder_type_specifier] = STATE(3918), + [sym_decltype_auto] = STATE(3916), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3918), + [sym_virtual] = STATE(3706), + [sym_explicit_function_specifier] = STATE(2247), + [sym_dependent_type] = STATE(3918), + [sym_template_declaration] = STATE(712), + [sym_operator_cast] = STATE(5897), + [sym_inline_method_definition] = STATE(712), + [sym__constructor_specifiers] = STATE(2247), + [sym_operator_cast_definition] = STATE(712), + [sym_operator_cast_declaration] = STATE(712), + [sym_constructor_or_destructor_definition] = STATE(712), + [sym_constructor_or_destructor_declaration] = STATE(712), + [sym_friend_declaration] = STATE(712), + [sym_access_specifier] = STATE(7346), + [sym_reference_declarator] = STATE(5640), + [sym_structured_binding_declarator] = STATE(5640), + [sym_template_type] = STATE(3680), + [sym_template_function] = STATE(5640), + [sym_using_declaration] = STATE(712), + [sym_alias_declaration] = STATE(712), + [sym_static_assert_declaration] = STATE(712), + [sym_destructor_name] = STATE(5640), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5151), + [sym_qualified_identifier] = STATE(5640), + [sym_qualified_type_identifier] = STATE(3966), + [sym_qualified_operator_cast_identifier] = STATE(5897), + [sym_operator_name] = STATE(5640), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(712), + [aux_sym__declaration_specifiers_repeat1] = STATE(2509), + [aux_sym_sized_type_specifier_repeat1] = STATE(3981), + [aux_sym_operator_cast_definition_repeat1] = STATE(2247), + [sym_identifier] = ACTIONS(2544), + [aux_sym_preproc_def_token1] = ACTIONS(3479), + [aux_sym_preproc_if_token1] = ACTIONS(3481), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3483), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3483), + [sym_preproc_directive] = ACTIONS(3485), + [anon_sym_LPAREN2] = ACTIONS(2560), + [anon_sym_TILDE] = ACTIONS(2562), + [anon_sym_STAR] = ACTIONS(2564), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_typedef] = ACTIONS(3487), + [anon_sym_extern] = ACTIONS(53), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(2570), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1813), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(45), + [anon_sym_RBRACE] = ACTIONS(3513), + [anon_sym_LBRACK] = ACTIONS(2572), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(53), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(2574), + [anon_sym_unsigned] = ACTIONS(2574), + [anon_sym_long] = ACTIONS(2574), + [anon_sym_short] = ACTIONS(2574), + [sym_primitive_type] = ACTIONS(2576), + [anon_sym_enum] = ACTIONS(2578), + [anon_sym_class] = ACTIONS(2580), + [anon_sym_struct] = ACTIONS(2582), + [anon_sym_union] = ACTIONS(2584), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2586), + [anon_sym_decltype] = ACTIONS(2588), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_explicit] = ACTIONS(119), + [anon_sym_typename] = ACTIONS(2590), + [anon_sym_template] = ACTIONS(3491), + [anon_sym_operator] = ACTIONS(125), + [anon_sym_friend] = ACTIONS(3493), + [anon_sym_public] = ACTIONS(2596), + [anon_sym_private] = ACTIONS(2596), + [anon_sym_protected] = ACTIONS(2596), + [anon_sym_using] = ACTIONS(3495), + [anon_sym_static_assert] = ACTIONS(3497), }, [677] = { - [ts_builtin_sym_end] = ACTIONS(2616), - [sym_identifier] = ACTIONS(2614), - [aux_sym_preproc_include_token1] = ACTIONS(2614), - [aux_sym_preproc_def_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2614), - [sym_preproc_directive] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP_AMP] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2614), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym___based] = ACTIONS(2614), - [anon_sym___cdecl] = ACTIONS(2614), - [anon_sym___clrcall] = ACTIONS(2614), - [anon_sym___stdcall] = ACTIONS(2614), - [anon_sym___fastcall] = ACTIONS(2614), - [anon_sym___thiscall] = ACTIONS(2614), - [anon_sym___vectorcall] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_case] = ACTIONS(2614), - [anon_sym_default] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_explicit] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_operator] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_namespace] = ACTIONS(2614), - [anon_sym_using] = ACTIONS(2614), - [anon_sym_static_assert] = ACTIONS(2614), - [anon_sym_concept] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), + [sym_identifier] = ACTIONS(2904), + [aux_sym_preproc_include_token1] = ACTIONS(2904), + [aux_sym_preproc_def_token1] = ACTIONS(2904), + [aux_sym_preproc_if_token1] = ACTIONS(2904), + [aux_sym_preproc_if_token2] = ACTIONS(2904), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2904), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2904), + [aux_sym_preproc_else_token1] = ACTIONS(2904), + [aux_sym_preproc_elif_token1] = ACTIONS(2904), + [sym_preproc_directive] = ACTIONS(2904), + [anon_sym_LPAREN2] = ACTIONS(2906), + [anon_sym_BANG] = ACTIONS(2906), + [anon_sym_TILDE] = ACTIONS(2906), + [anon_sym_DASH] = ACTIONS(2904), + [anon_sym_PLUS] = ACTIONS(2904), + [anon_sym_STAR] = ACTIONS(2906), + [anon_sym_AMP_AMP] = ACTIONS(2906), + [anon_sym_AMP] = ACTIONS(2904), + [anon_sym_SEMI] = ACTIONS(2906), + [anon_sym_typedef] = ACTIONS(2904), + [anon_sym_extern] = ACTIONS(2904), + [anon_sym___attribute__] = ACTIONS(2904), + [anon_sym_COLON_COLON] = ACTIONS(2906), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2906), + [anon_sym___declspec] = ACTIONS(2904), + [anon_sym___based] = ACTIONS(2904), + [anon_sym___cdecl] = ACTIONS(2904), + [anon_sym___clrcall] = ACTIONS(2904), + [anon_sym___stdcall] = ACTIONS(2904), + [anon_sym___fastcall] = ACTIONS(2904), + [anon_sym___thiscall] = ACTIONS(2904), + [anon_sym___vectorcall] = ACTIONS(2904), + [anon_sym_LBRACE] = ACTIONS(2906), + [anon_sym_LBRACK] = ACTIONS(2904), + [anon_sym_static] = ACTIONS(2904), + [anon_sym_register] = ACTIONS(2904), + [anon_sym_inline] = ACTIONS(2904), + [anon_sym_thread_local] = ACTIONS(2904), + [anon_sym_const] = ACTIONS(2904), + [anon_sym_constexpr] = ACTIONS(2904), + [anon_sym_volatile] = ACTIONS(2904), + [anon_sym_restrict] = ACTIONS(2904), + [anon_sym___restrict__] = ACTIONS(2904), + [anon_sym__Atomic] = ACTIONS(2904), + [anon_sym__Noreturn] = ACTIONS(2904), + [anon_sym_noreturn] = ACTIONS(2904), + [anon_sym_mutable] = ACTIONS(2904), + [anon_sym_constinit] = ACTIONS(2904), + [anon_sym_consteval] = ACTIONS(2904), + [anon_sym_signed] = ACTIONS(2904), + [anon_sym_unsigned] = ACTIONS(2904), + [anon_sym_long] = ACTIONS(2904), + [anon_sym_short] = ACTIONS(2904), + [sym_primitive_type] = ACTIONS(2904), + [anon_sym_enum] = ACTIONS(2904), + [anon_sym_class] = ACTIONS(2904), + [anon_sym_struct] = ACTIONS(2904), + [anon_sym_union] = ACTIONS(2904), + [anon_sym_if] = ACTIONS(2904), + [anon_sym_else] = ACTIONS(2904), + [anon_sym_switch] = ACTIONS(2904), + [anon_sym_case] = ACTIONS(2904), + [anon_sym_default] = ACTIONS(2904), + [anon_sym_while] = ACTIONS(2904), + [anon_sym_do] = ACTIONS(2904), + [anon_sym_for] = ACTIONS(2904), + [anon_sym_return] = ACTIONS(2904), + [anon_sym_break] = ACTIONS(2904), + [anon_sym_continue] = ACTIONS(2904), + [anon_sym_goto] = ACTIONS(2904), + [anon_sym_not] = ACTIONS(2904), + [anon_sym_compl] = ACTIONS(2904), + [anon_sym_DASH_DASH] = ACTIONS(2906), + [anon_sym_PLUS_PLUS] = ACTIONS(2906), + [anon_sym_sizeof] = ACTIONS(2904), + [anon_sym_offsetof] = ACTIONS(2904), + [anon_sym__Generic] = ACTIONS(2904), + [anon_sym_asm] = ACTIONS(2904), + [anon_sym___asm__] = ACTIONS(2904), + [sym_number_literal] = ACTIONS(2906), + [anon_sym_L_SQUOTE] = ACTIONS(2906), + [anon_sym_u_SQUOTE] = ACTIONS(2906), + [anon_sym_U_SQUOTE] = ACTIONS(2906), + [anon_sym_u8_SQUOTE] = ACTIONS(2906), + [anon_sym_SQUOTE] = ACTIONS(2906), + [anon_sym_L_DQUOTE] = ACTIONS(2906), + [anon_sym_u_DQUOTE] = ACTIONS(2906), + [anon_sym_U_DQUOTE] = ACTIONS(2906), + [anon_sym_u8_DQUOTE] = ACTIONS(2906), + [anon_sym_DQUOTE] = ACTIONS(2906), + [sym_true] = ACTIONS(2904), + [sym_false] = ACTIONS(2904), + [anon_sym_NULL] = ACTIONS(2904), + [anon_sym_nullptr] = ACTIONS(2904), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2904), + [anon_sym_decltype] = ACTIONS(2904), + [anon_sym_virtual] = ACTIONS(2904), + [anon_sym_explicit] = ACTIONS(2904), + [anon_sym_typename] = ACTIONS(2904), + [anon_sym_template] = ACTIONS(2904), + [anon_sym_operator] = ACTIONS(2904), + [anon_sym_try] = ACTIONS(2904), + [anon_sym_delete] = ACTIONS(2904), + [anon_sym_throw] = ACTIONS(2904), + [anon_sym_namespace] = ACTIONS(2904), + [anon_sym_using] = ACTIONS(2904), + [anon_sym_static_assert] = ACTIONS(2904), + [anon_sym_concept] = ACTIONS(2904), + [anon_sym_co_return] = ACTIONS(2904), + [anon_sym_co_yield] = ACTIONS(2904), + [anon_sym_R_DQUOTE] = ACTIONS(2906), + [anon_sym_LR_DQUOTE] = ACTIONS(2906), + [anon_sym_uR_DQUOTE] = ACTIONS(2906), + [anon_sym_UR_DQUOTE] = ACTIONS(2906), + [anon_sym_u8R_DQUOTE] = ACTIONS(2906), + [anon_sym_co_await] = ACTIONS(2904), + [anon_sym_new] = ACTIONS(2904), + [anon_sym_requires] = ACTIONS(2904), + [sym_this] = ACTIONS(2904), }, [678] = { - [sym_identifier] = ACTIONS(2614), - [aux_sym_preproc_include_token1] = ACTIONS(2614), - [aux_sym_preproc_def_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token2] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2614), - [sym_preproc_directive] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP_AMP] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2614), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym___based] = ACTIONS(2614), - [anon_sym___cdecl] = ACTIONS(2614), - [anon_sym___clrcall] = ACTIONS(2614), - [anon_sym___stdcall] = ACTIONS(2614), - [anon_sym___fastcall] = ACTIONS(2614), - [anon_sym___thiscall] = ACTIONS(2614), - [anon_sym___vectorcall] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_case] = ACTIONS(2614), - [anon_sym_default] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_explicit] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_operator] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_namespace] = ACTIONS(2614), - [anon_sym_using] = ACTIONS(2614), - [anon_sym_static_assert] = ACTIONS(2614), - [anon_sym_concept] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), + [sym_preproc_def] = STATE(712), + [sym_preproc_function_def] = STATE(712), + [sym_preproc_call] = STATE(712), + [sym_preproc_if_in_field_declaration_list] = STATE(712), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(712), + [sym_type_definition] = STATE(712), + [sym__declaration_modifiers] = STATE(3706), + [sym__declaration_specifiers] = STATE(4831), + [sym_attribute_specifier] = STATE(3706), + [sym_attribute_declaration] = STATE(3706), + [sym_ms_declspec_modifier] = STATE(3706), + [sym_ms_based_modifier] = STATE(7654), + [sym__declarator] = STATE(5881), + [sym_parenthesized_declarator] = STATE(5640), + [sym_attributed_declarator] = STATE(5640), + [sym_pointer_declarator] = STATE(5640), + [sym_function_declarator] = STATE(5531), + [sym_array_declarator] = STATE(5640), + [sym_storage_class_specifier] = STATE(3706), + [sym_type_qualifier] = STATE(3706), + [sym__type_specifier] = STATE(3845), + [sym_sized_type_specifier] = STATE(3918), + [sym_enum_specifier] = STATE(3918), + [sym_struct_specifier] = STATE(3918), + [sym_union_specifier] = STATE(3918), + [sym__field_declaration_list_item] = STATE(712), + [sym_field_declaration] = STATE(712), + [sym_placeholder_type_specifier] = STATE(3918), + [sym_decltype_auto] = STATE(3916), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3918), + [sym_virtual] = STATE(3706), + [sym_explicit_function_specifier] = STATE(2247), + [sym_dependent_type] = STATE(3918), + [sym_template_declaration] = STATE(712), + [sym_operator_cast] = STATE(5897), + [sym_inline_method_definition] = STATE(712), + [sym__constructor_specifiers] = STATE(2247), + [sym_operator_cast_definition] = STATE(712), + [sym_operator_cast_declaration] = STATE(712), + [sym_constructor_or_destructor_definition] = STATE(712), + [sym_constructor_or_destructor_declaration] = STATE(712), + [sym_friend_declaration] = STATE(712), + [sym_access_specifier] = STATE(7346), + [sym_reference_declarator] = STATE(5640), + [sym_structured_binding_declarator] = STATE(5640), + [sym_template_type] = STATE(3680), + [sym_template_function] = STATE(5640), + [sym_using_declaration] = STATE(712), + [sym_alias_declaration] = STATE(712), + [sym_static_assert_declaration] = STATE(712), + [sym_destructor_name] = STATE(5640), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5151), + [sym_qualified_identifier] = STATE(5640), + [sym_qualified_type_identifier] = STATE(3966), + [sym_qualified_operator_cast_identifier] = STATE(5897), + [sym_operator_name] = STATE(5640), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(712), + [aux_sym__declaration_specifiers_repeat1] = STATE(2509), + [aux_sym_sized_type_specifier_repeat1] = STATE(3981), + [aux_sym_operator_cast_definition_repeat1] = STATE(2247), + [sym_identifier] = ACTIONS(2544), + [aux_sym_preproc_def_token1] = ACTIONS(3479), + [aux_sym_preproc_if_token1] = ACTIONS(3481), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3483), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3483), + [sym_preproc_directive] = ACTIONS(3485), + [anon_sym_LPAREN2] = ACTIONS(2560), + [anon_sym_TILDE] = ACTIONS(2562), + [anon_sym_STAR] = ACTIONS(2564), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_typedef] = ACTIONS(3487), + [anon_sym_extern] = ACTIONS(53), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(2570), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1813), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(45), + [anon_sym_RBRACE] = ACTIONS(3515), + [anon_sym_LBRACK] = ACTIONS(2572), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(53), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(2574), + [anon_sym_unsigned] = ACTIONS(2574), + [anon_sym_long] = ACTIONS(2574), + [anon_sym_short] = ACTIONS(2574), + [sym_primitive_type] = ACTIONS(2576), + [anon_sym_enum] = ACTIONS(2578), + [anon_sym_class] = ACTIONS(2580), + [anon_sym_struct] = ACTIONS(2582), + [anon_sym_union] = ACTIONS(2584), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2586), + [anon_sym_decltype] = ACTIONS(2588), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_explicit] = ACTIONS(119), + [anon_sym_typename] = ACTIONS(2590), + [anon_sym_template] = ACTIONS(3491), + [anon_sym_operator] = ACTIONS(125), + [anon_sym_friend] = ACTIONS(3493), + [anon_sym_public] = ACTIONS(2596), + [anon_sym_private] = ACTIONS(2596), + [anon_sym_protected] = ACTIONS(2596), + [anon_sym_using] = ACTIONS(3495), + [anon_sym_static_assert] = ACTIONS(3497), }, [679] = { - [ts_builtin_sym_end] = ACTIONS(2616), - [sym_identifier] = ACTIONS(2614), - [aux_sym_preproc_include_token1] = ACTIONS(2614), - [aux_sym_preproc_def_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2614), - [sym_preproc_directive] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP_AMP] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2614), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym___based] = ACTIONS(2614), - [anon_sym___cdecl] = ACTIONS(2614), - [anon_sym___clrcall] = ACTIONS(2614), - [anon_sym___stdcall] = ACTIONS(2614), - [anon_sym___fastcall] = ACTIONS(2614), - [anon_sym___thiscall] = ACTIONS(2614), - [anon_sym___vectorcall] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_case] = ACTIONS(2614), - [anon_sym_default] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_explicit] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_operator] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_namespace] = ACTIONS(2614), - [anon_sym_using] = ACTIONS(2614), - [anon_sym_static_assert] = ACTIONS(2614), - [anon_sym_concept] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token2] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [aux_sym_preproc_else_token1] = ACTIONS(3048), + [aux_sym_preproc_elif_token1] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, [680] = { - [ts_builtin_sym_end] = ACTIONS(2528), - [sym_identifier] = ACTIONS(2526), - [aux_sym_preproc_include_token1] = ACTIONS(2526), - [aux_sym_preproc_def_token1] = ACTIONS(2526), - [aux_sym_preproc_if_token1] = ACTIONS(2526), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2526), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2526), - [sym_preproc_directive] = ACTIONS(2526), - [anon_sym_LPAREN2] = ACTIONS(2528), - [anon_sym_BANG] = ACTIONS(2528), - [anon_sym_TILDE] = ACTIONS(2528), - [anon_sym_DASH] = ACTIONS(2526), - [anon_sym_PLUS] = ACTIONS(2526), - [anon_sym_STAR] = ACTIONS(2528), - [anon_sym_AMP_AMP] = ACTIONS(2528), - [anon_sym_AMP] = ACTIONS(2526), - [anon_sym_SEMI] = ACTIONS(2528), - [anon_sym_typedef] = ACTIONS(2526), - [anon_sym_extern] = ACTIONS(2526), - [anon_sym___attribute__] = ACTIONS(2526), - [anon_sym_COLON_COLON] = ACTIONS(2528), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2528), - [anon_sym___declspec] = ACTIONS(2526), - [anon_sym___based] = ACTIONS(2526), - [anon_sym___cdecl] = ACTIONS(2526), - [anon_sym___clrcall] = ACTIONS(2526), - [anon_sym___stdcall] = ACTIONS(2526), - [anon_sym___fastcall] = ACTIONS(2526), - [anon_sym___thiscall] = ACTIONS(2526), - [anon_sym___vectorcall] = ACTIONS(2526), - [anon_sym_LBRACE] = ACTIONS(2528), - [anon_sym_LBRACK] = ACTIONS(2526), - [anon_sym_static] = ACTIONS(2526), - [anon_sym_register] = ACTIONS(2526), - [anon_sym_inline] = ACTIONS(2526), - [anon_sym_thread_local] = ACTIONS(2526), - [anon_sym_const] = ACTIONS(2526), - [anon_sym_volatile] = ACTIONS(2526), - [anon_sym_restrict] = ACTIONS(2526), - [anon_sym__Atomic] = ACTIONS(2526), - [anon_sym_mutable] = ACTIONS(2526), - [anon_sym_constexpr] = ACTIONS(2526), - [anon_sym_constinit] = ACTIONS(2526), - [anon_sym_consteval] = ACTIONS(2526), - [anon_sym_signed] = ACTIONS(2526), - [anon_sym_unsigned] = ACTIONS(2526), - [anon_sym_long] = ACTIONS(2526), - [anon_sym_short] = ACTIONS(2526), - [sym_primitive_type] = ACTIONS(2526), - [anon_sym_enum] = ACTIONS(2526), - [anon_sym_class] = ACTIONS(2526), - [anon_sym_struct] = ACTIONS(2526), - [anon_sym_union] = ACTIONS(2526), - [anon_sym_if] = ACTIONS(2526), - [anon_sym_else] = ACTIONS(2526), - [anon_sym_switch] = ACTIONS(2526), - [anon_sym_case] = ACTIONS(2526), - [anon_sym_default] = ACTIONS(2526), - [anon_sym_while] = ACTIONS(2526), - [anon_sym_do] = ACTIONS(2526), - [anon_sym_for] = ACTIONS(2526), - [anon_sym_return] = ACTIONS(2526), - [anon_sym_break] = ACTIONS(2526), - [anon_sym_continue] = ACTIONS(2526), - [anon_sym_goto] = ACTIONS(2526), - [anon_sym_not] = ACTIONS(2526), - [anon_sym_compl] = ACTIONS(2526), - [anon_sym_DASH_DASH] = ACTIONS(2528), - [anon_sym_PLUS_PLUS] = ACTIONS(2528), - [anon_sym_sizeof] = ACTIONS(2526), - [sym_number_literal] = ACTIONS(2528), - [anon_sym_L_SQUOTE] = ACTIONS(2528), - [anon_sym_u_SQUOTE] = ACTIONS(2528), - [anon_sym_U_SQUOTE] = ACTIONS(2528), - [anon_sym_u8_SQUOTE] = ACTIONS(2528), - [anon_sym_SQUOTE] = ACTIONS(2528), - [anon_sym_L_DQUOTE] = ACTIONS(2528), - [anon_sym_u_DQUOTE] = ACTIONS(2528), - [anon_sym_U_DQUOTE] = ACTIONS(2528), - [anon_sym_u8_DQUOTE] = ACTIONS(2528), - [anon_sym_DQUOTE] = ACTIONS(2528), - [sym_true] = ACTIONS(2526), - [sym_false] = ACTIONS(2526), - [sym_null] = ACTIONS(2526), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2526), - [anon_sym_decltype] = ACTIONS(2526), - [anon_sym_virtual] = ACTIONS(2526), - [anon_sym_explicit] = ACTIONS(2526), - [anon_sym_typename] = ACTIONS(2526), - [anon_sym_template] = ACTIONS(2526), - [anon_sym_operator] = ACTIONS(2526), - [anon_sym_try] = ACTIONS(2526), - [anon_sym_delete] = ACTIONS(2526), - [anon_sym_throw] = ACTIONS(2526), - [anon_sym_namespace] = ACTIONS(2526), - [anon_sym_using] = ACTIONS(2526), - [anon_sym_static_assert] = ACTIONS(2526), - [anon_sym_concept] = ACTIONS(2526), - [anon_sym_co_return] = ACTIONS(2526), - [anon_sym_co_yield] = ACTIONS(2526), - [anon_sym_R_DQUOTE] = ACTIONS(2528), - [anon_sym_LR_DQUOTE] = ACTIONS(2528), - [anon_sym_uR_DQUOTE] = ACTIONS(2528), - [anon_sym_UR_DQUOTE] = ACTIONS(2528), - [anon_sym_u8R_DQUOTE] = ACTIONS(2528), - [anon_sym_co_await] = ACTIONS(2526), - [anon_sym_new] = ACTIONS(2526), - [anon_sym_requires] = ACTIONS(2526), - [sym_this] = ACTIONS(2526), - [sym_nullptr] = ACTIONS(2526), + [sym_preproc_def] = STATE(613), + [sym_preproc_function_def] = STATE(613), + [sym_preproc_call] = STATE(613), + [sym_preproc_if_in_field_declaration_list] = STATE(613), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(613), + [sym_type_definition] = STATE(613), + [sym__declaration_modifiers] = STATE(3706), + [sym__declaration_specifiers] = STATE(4831), + [sym_attribute_specifier] = STATE(3706), + [sym_attribute_declaration] = STATE(3706), + [sym_ms_declspec_modifier] = STATE(3706), + [sym_ms_based_modifier] = STATE(7654), + [sym__declarator] = STATE(5881), + [sym_parenthesized_declarator] = STATE(5640), + [sym_attributed_declarator] = STATE(5640), + [sym_pointer_declarator] = STATE(5640), + [sym_function_declarator] = STATE(5531), + [sym_array_declarator] = STATE(5640), + [sym_storage_class_specifier] = STATE(3706), + [sym_type_qualifier] = STATE(3706), + [sym__type_specifier] = STATE(3845), + [sym_sized_type_specifier] = STATE(3918), + [sym_enum_specifier] = STATE(3918), + [sym_struct_specifier] = STATE(3918), + [sym_union_specifier] = STATE(3918), + [sym__field_declaration_list_item] = STATE(613), + [sym_field_declaration] = STATE(613), + [sym_placeholder_type_specifier] = STATE(3918), + [sym_decltype_auto] = STATE(3916), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3918), + [sym_virtual] = STATE(3706), + [sym_explicit_function_specifier] = STATE(2247), + [sym_dependent_type] = STATE(3918), + [sym_template_declaration] = STATE(613), + [sym_operator_cast] = STATE(5897), + [sym_inline_method_definition] = STATE(613), + [sym__constructor_specifiers] = STATE(2247), + [sym_operator_cast_definition] = STATE(613), + [sym_operator_cast_declaration] = STATE(613), + [sym_constructor_or_destructor_definition] = STATE(613), + [sym_constructor_or_destructor_declaration] = STATE(613), + [sym_friend_declaration] = STATE(613), + [sym_access_specifier] = STATE(7346), + [sym_reference_declarator] = STATE(5640), + [sym_structured_binding_declarator] = STATE(5640), + [sym_template_type] = STATE(3680), + [sym_template_function] = STATE(5640), + [sym_using_declaration] = STATE(613), + [sym_alias_declaration] = STATE(613), + [sym_static_assert_declaration] = STATE(613), + [sym_destructor_name] = STATE(5640), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5151), + [sym_qualified_identifier] = STATE(5640), + [sym_qualified_type_identifier] = STATE(3966), + [sym_qualified_operator_cast_identifier] = STATE(5897), + [sym_operator_name] = STATE(5640), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(613), + [aux_sym__declaration_specifiers_repeat1] = STATE(2509), + [aux_sym_sized_type_specifier_repeat1] = STATE(3981), + [aux_sym_operator_cast_definition_repeat1] = STATE(2247), + [sym_identifier] = ACTIONS(2544), + [aux_sym_preproc_def_token1] = ACTIONS(3479), + [aux_sym_preproc_if_token1] = ACTIONS(3481), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3483), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3483), + [sym_preproc_directive] = ACTIONS(3485), + [anon_sym_LPAREN2] = ACTIONS(2560), + [anon_sym_TILDE] = ACTIONS(2562), + [anon_sym_STAR] = ACTIONS(2564), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_typedef] = ACTIONS(3487), + [anon_sym_extern] = ACTIONS(53), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(2570), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1813), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(45), + [anon_sym_RBRACE] = ACTIONS(3517), + [anon_sym_LBRACK] = ACTIONS(2572), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(53), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(2574), + [anon_sym_unsigned] = ACTIONS(2574), + [anon_sym_long] = ACTIONS(2574), + [anon_sym_short] = ACTIONS(2574), + [sym_primitive_type] = ACTIONS(2576), + [anon_sym_enum] = ACTIONS(2578), + [anon_sym_class] = ACTIONS(2580), + [anon_sym_struct] = ACTIONS(2582), + [anon_sym_union] = ACTIONS(2584), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2586), + [anon_sym_decltype] = ACTIONS(2588), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_explicit] = ACTIONS(119), + [anon_sym_typename] = ACTIONS(2590), + [anon_sym_template] = ACTIONS(3491), + [anon_sym_operator] = ACTIONS(125), + [anon_sym_friend] = ACTIONS(3493), + [anon_sym_public] = ACTIONS(2596), + [anon_sym_private] = ACTIONS(2596), + [anon_sym_protected] = ACTIONS(2596), + [anon_sym_using] = ACTIONS(3495), + [anon_sym_static_assert] = ACTIONS(3497), }, [681] = { - [sym_identifier] = ACTIONS(2614), - [aux_sym_preproc_include_token1] = ACTIONS(2614), - [aux_sym_preproc_def_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token2] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2614), - [sym_preproc_directive] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP_AMP] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2614), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym___based] = ACTIONS(2614), - [anon_sym___cdecl] = ACTIONS(2614), - [anon_sym___clrcall] = ACTIONS(2614), - [anon_sym___stdcall] = ACTIONS(2614), - [anon_sym___fastcall] = ACTIONS(2614), - [anon_sym___thiscall] = ACTIONS(2614), - [anon_sym___vectorcall] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_case] = ACTIONS(2614), - [anon_sym_default] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_explicit] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_operator] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_namespace] = ACTIONS(2614), - [anon_sym_using] = ACTIONS(2614), - [anon_sym_static_assert] = ACTIONS(2614), - [anon_sym_concept] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token2] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [aux_sym_preproc_else_token1] = ACTIONS(3048), + [aux_sym_preproc_elif_token1] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, [682] = { - [ts_builtin_sym_end] = ACTIONS(2616), - [sym_identifier] = ACTIONS(2614), - [aux_sym_preproc_include_token1] = ACTIONS(2614), - [aux_sym_preproc_def_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2614), - [sym_preproc_directive] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP_AMP] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2614), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym___based] = ACTIONS(2614), - [anon_sym___cdecl] = ACTIONS(2614), - [anon_sym___clrcall] = ACTIONS(2614), - [anon_sym___stdcall] = ACTIONS(2614), - [anon_sym___fastcall] = ACTIONS(2614), - [anon_sym___thiscall] = ACTIONS(2614), - [anon_sym___vectorcall] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_case] = ACTIONS(2614), - [anon_sym_default] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_explicit] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_operator] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_namespace] = ACTIONS(2614), - [anon_sym_using] = ACTIONS(2614), - [anon_sym_static_assert] = ACTIONS(2614), - [anon_sym_concept] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token2] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [aux_sym_preproc_else_token1] = ACTIONS(3048), + [aux_sym_preproc_elif_token1] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, [683] = { - [sym_identifier] = ACTIONS(2614), - [aux_sym_preproc_include_token1] = ACTIONS(2614), - [aux_sym_preproc_def_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token2] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2614), - [sym_preproc_directive] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP_AMP] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2614), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym___based] = ACTIONS(2614), - [anon_sym___cdecl] = ACTIONS(2614), - [anon_sym___clrcall] = ACTIONS(2614), - [anon_sym___stdcall] = ACTIONS(2614), - [anon_sym___fastcall] = ACTIONS(2614), - [anon_sym___thiscall] = ACTIONS(2614), - [anon_sym___vectorcall] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_case] = ACTIONS(2614), - [anon_sym_default] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_explicit] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_operator] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_namespace] = ACTIONS(2614), - [anon_sym_using] = ACTIONS(2614), - [anon_sym_static_assert] = ACTIONS(2614), - [anon_sym_concept] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token2] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [aux_sym_preproc_else_token1] = ACTIONS(3028), + [aux_sym_preproc_elif_token1] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, [684] = { - [sym_identifier] = ACTIONS(2614), - [aux_sym_preproc_include_token1] = ACTIONS(2614), - [aux_sym_preproc_def_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token2] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2614), - [sym_preproc_directive] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP_AMP] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2614), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym___based] = ACTIONS(2614), - [anon_sym___cdecl] = ACTIONS(2614), - [anon_sym___clrcall] = ACTIONS(2614), - [anon_sym___stdcall] = ACTIONS(2614), - [anon_sym___fastcall] = ACTIONS(2614), - [anon_sym___thiscall] = ACTIONS(2614), - [anon_sym___vectorcall] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_case] = ACTIONS(2614), - [anon_sym_default] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_explicit] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_operator] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_namespace] = ACTIONS(2614), - [anon_sym_using] = ACTIONS(2614), - [anon_sym_static_assert] = ACTIONS(2614), - [anon_sym_concept] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token2] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [aux_sym_preproc_else_token1] = ACTIONS(3028), + [aux_sym_preproc_elif_token1] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, [685] = { - [sym_identifier] = ACTIONS(2496), - [aux_sym_preproc_include_token1] = ACTIONS(2496), - [aux_sym_preproc_def_token1] = ACTIONS(2496), - [aux_sym_preproc_if_token1] = ACTIONS(2496), - [aux_sym_preproc_if_token2] = ACTIONS(2496), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2496), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2496), - [sym_preproc_directive] = ACTIONS(2496), - [anon_sym_LPAREN2] = ACTIONS(2498), - [anon_sym_BANG] = ACTIONS(2498), - [anon_sym_TILDE] = ACTIONS(2498), - [anon_sym_DASH] = ACTIONS(2496), - [anon_sym_PLUS] = ACTIONS(2496), - [anon_sym_STAR] = ACTIONS(2498), - [anon_sym_AMP_AMP] = ACTIONS(2498), - [anon_sym_AMP] = ACTIONS(2496), - [anon_sym_SEMI] = ACTIONS(2498), - [anon_sym_typedef] = ACTIONS(2496), - [anon_sym_extern] = ACTIONS(2496), - [anon_sym___attribute__] = ACTIONS(2496), - [anon_sym_COLON_COLON] = ACTIONS(2498), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2498), - [anon_sym___declspec] = ACTIONS(2496), - [anon_sym___based] = ACTIONS(2496), - [anon_sym___cdecl] = ACTIONS(2496), - [anon_sym___clrcall] = ACTIONS(2496), - [anon_sym___stdcall] = ACTIONS(2496), - [anon_sym___fastcall] = ACTIONS(2496), - [anon_sym___thiscall] = ACTIONS(2496), - [anon_sym___vectorcall] = ACTIONS(2496), - [anon_sym_LBRACE] = ACTIONS(2498), - [anon_sym_LBRACK] = ACTIONS(2496), - [anon_sym_static] = ACTIONS(2496), - [anon_sym_register] = ACTIONS(2496), - [anon_sym_inline] = ACTIONS(2496), - [anon_sym_thread_local] = ACTIONS(2496), - [anon_sym_const] = ACTIONS(2496), - [anon_sym_volatile] = ACTIONS(2496), - [anon_sym_restrict] = ACTIONS(2496), - [anon_sym__Atomic] = ACTIONS(2496), - [anon_sym_mutable] = ACTIONS(2496), - [anon_sym_constexpr] = ACTIONS(2496), - [anon_sym_constinit] = ACTIONS(2496), - [anon_sym_consteval] = ACTIONS(2496), - [anon_sym_signed] = ACTIONS(2496), - [anon_sym_unsigned] = ACTIONS(2496), - [anon_sym_long] = ACTIONS(2496), - [anon_sym_short] = ACTIONS(2496), - [sym_primitive_type] = ACTIONS(2496), - [anon_sym_enum] = ACTIONS(2496), - [anon_sym_class] = ACTIONS(2496), - [anon_sym_struct] = ACTIONS(2496), - [anon_sym_union] = ACTIONS(2496), - [anon_sym_if] = ACTIONS(2496), - [anon_sym_else] = ACTIONS(2496), - [anon_sym_switch] = ACTIONS(2496), - [anon_sym_case] = ACTIONS(2496), - [anon_sym_default] = ACTIONS(2496), - [anon_sym_while] = ACTIONS(2496), - [anon_sym_do] = ACTIONS(2496), - [anon_sym_for] = ACTIONS(2496), - [anon_sym_return] = ACTIONS(2496), - [anon_sym_break] = ACTIONS(2496), - [anon_sym_continue] = ACTIONS(2496), - [anon_sym_goto] = ACTIONS(2496), - [anon_sym_not] = ACTIONS(2496), - [anon_sym_compl] = ACTIONS(2496), - [anon_sym_DASH_DASH] = ACTIONS(2498), - [anon_sym_PLUS_PLUS] = ACTIONS(2498), - [anon_sym_sizeof] = ACTIONS(2496), - [sym_number_literal] = ACTIONS(2498), - [anon_sym_L_SQUOTE] = ACTIONS(2498), - [anon_sym_u_SQUOTE] = ACTIONS(2498), - [anon_sym_U_SQUOTE] = ACTIONS(2498), - [anon_sym_u8_SQUOTE] = ACTIONS(2498), - [anon_sym_SQUOTE] = ACTIONS(2498), - [anon_sym_L_DQUOTE] = ACTIONS(2498), - [anon_sym_u_DQUOTE] = ACTIONS(2498), - [anon_sym_U_DQUOTE] = ACTIONS(2498), - [anon_sym_u8_DQUOTE] = ACTIONS(2498), - [anon_sym_DQUOTE] = ACTIONS(2498), - [sym_true] = ACTIONS(2496), - [sym_false] = ACTIONS(2496), - [sym_null] = ACTIONS(2496), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2496), - [anon_sym_decltype] = ACTIONS(2496), - [anon_sym_virtual] = ACTIONS(2496), - [anon_sym_explicit] = ACTIONS(2496), - [anon_sym_typename] = ACTIONS(2496), - [anon_sym_template] = ACTIONS(2496), - [anon_sym_operator] = ACTIONS(2496), - [anon_sym_try] = ACTIONS(2496), - [anon_sym_delete] = ACTIONS(2496), - [anon_sym_throw] = ACTIONS(2496), - [anon_sym_namespace] = ACTIONS(2496), - [anon_sym_using] = ACTIONS(2496), - [anon_sym_static_assert] = ACTIONS(2496), - [anon_sym_concept] = ACTIONS(2496), - [anon_sym_co_return] = ACTIONS(2496), - [anon_sym_co_yield] = ACTIONS(2496), - [anon_sym_R_DQUOTE] = ACTIONS(2498), - [anon_sym_LR_DQUOTE] = ACTIONS(2498), - [anon_sym_uR_DQUOTE] = ACTIONS(2498), - [anon_sym_UR_DQUOTE] = ACTIONS(2498), - [anon_sym_u8R_DQUOTE] = ACTIONS(2498), - [anon_sym_co_await] = ACTIONS(2496), - [anon_sym_new] = ACTIONS(2496), - [anon_sym_requires] = ACTIONS(2496), - [sym_this] = ACTIONS(2496), - [sym_nullptr] = ACTIONS(2496), + [sym_identifier] = ACTIONS(3020), + [aux_sym_preproc_include_token1] = ACTIONS(3020), + [aux_sym_preproc_def_token1] = ACTIONS(3020), + [aux_sym_preproc_if_token1] = ACTIONS(3020), + [aux_sym_preproc_if_token2] = ACTIONS(3020), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3020), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3020), + [aux_sym_preproc_else_token1] = ACTIONS(3020), + [aux_sym_preproc_elif_token1] = ACTIONS(3020), + [sym_preproc_directive] = ACTIONS(3020), + [anon_sym_LPAREN2] = ACTIONS(3022), + [anon_sym_BANG] = ACTIONS(3022), + [anon_sym_TILDE] = ACTIONS(3022), + [anon_sym_DASH] = ACTIONS(3020), + [anon_sym_PLUS] = ACTIONS(3020), + [anon_sym_STAR] = ACTIONS(3022), + [anon_sym_AMP_AMP] = ACTIONS(3022), + [anon_sym_AMP] = ACTIONS(3020), + [anon_sym_SEMI] = ACTIONS(3022), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(3020), + [anon_sym___attribute__] = ACTIONS(3020), + [anon_sym_COLON_COLON] = ACTIONS(3022), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(3020), + [anon_sym___based] = ACTIONS(3020), + [anon_sym___cdecl] = ACTIONS(3020), + [anon_sym___clrcall] = ACTIONS(3020), + [anon_sym___stdcall] = ACTIONS(3020), + [anon_sym___fastcall] = ACTIONS(3020), + [anon_sym___thiscall] = ACTIONS(3020), + [anon_sym___vectorcall] = ACTIONS(3020), + [anon_sym_LBRACE] = ACTIONS(3022), + [anon_sym_LBRACK] = ACTIONS(3020), + [anon_sym_static] = ACTIONS(3020), + [anon_sym_register] = ACTIONS(3020), + [anon_sym_inline] = ACTIONS(3020), + [anon_sym_thread_local] = ACTIONS(3020), + [anon_sym_const] = ACTIONS(3020), + [anon_sym_constexpr] = ACTIONS(3020), + [anon_sym_volatile] = ACTIONS(3020), + [anon_sym_restrict] = ACTIONS(3020), + [anon_sym___restrict__] = ACTIONS(3020), + [anon_sym__Atomic] = ACTIONS(3020), + [anon_sym__Noreturn] = ACTIONS(3020), + [anon_sym_noreturn] = ACTIONS(3020), + [anon_sym_mutable] = ACTIONS(3020), + [anon_sym_constinit] = ACTIONS(3020), + [anon_sym_consteval] = ACTIONS(3020), + [anon_sym_signed] = ACTIONS(3020), + [anon_sym_unsigned] = ACTIONS(3020), + [anon_sym_long] = ACTIONS(3020), + [anon_sym_short] = ACTIONS(3020), + [sym_primitive_type] = ACTIONS(3020), + [anon_sym_enum] = ACTIONS(3020), + [anon_sym_class] = ACTIONS(3020), + [anon_sym_struct] = ACTIONS(3020), + [anon_sym_union] = ACTIONS(3020), + [anon_sym_if] = ACTIONS(3020), + [anon_sym_else] = ACTIONS(3020), + [anon_sym_switch] = ACTIONS(3020), + [anon_sym_case] = ACTIONS(3020), + [anon_sym_default] = ACTIONS(3020), + [anon_sym_while] = ACTIONS(3020), + [anon_sym_do] = ACTIONS(3020), + [anon_sym_for] = ACTIONS(3020), + [anon_sym_return] = ACTIONS(3020), + [anon_sym_break] = ACTIONS(3020), + [anon_sym_continue] = ACTIONS(3020), + [anon_sym_goto] = ACTIONS(3020), + [anon_sym_not] = ACTIONS(3020), + [anon_sym_compl] = ACTIONS(3020), + [anon_sym_DASH_DASH] = ACTIONS(3022), + [anon_sym_PLUS_PLUS] = ACTIONS(3022), + [anon_sym_sizeof] = ACTIONS(3020), + [anon_sym_offsetof] = ACTIONS(3020), + [anon_sym__Generic] = ACTIONS(3020), + [anon_sym_asm] = ACTIONS(3020), + [anon_sym___asm__] = ACTIONS(3020), + [sym_number_literal] = ACTIONS(3022), + [anon_sym_L_SQUOTE] = ACTIONS(3022), + [anon_sym_u_SQUOTE] = ACTIONS(3022), + [anon_sym_U_SQUOTE] = ACTIONS(3022), + [anon_sym_u8_SQUOTE] = ACTIONS(3022), + [anon_sym_SQUOTE] = ACTIONS(3022), + [anon_sym_L_DQUOTE] = ACTIONS(3022), + [anon_sym_u_DQUOTE] = ACTIONS(3022), + [anon_sym_U_DQUOTE] = ACTIONS(3022), + [anon_sym_u8_DQUOTE] = ACTIONS(3022), + [anon_sym_DQUOTE] = ACTIONS(3022), + [sym_true] = ACTIONS(3020), + [sym_false] = ACTIONS(3020), + [anon_sym_NULL] = ACTIONS(3020), + [anon_sym_nullptr] = ACTIONS(3020), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3020), + [anon_sym_decltype] = ACTIONS(3020), + [anon_sym_virtual] = ACTIONS(3020), + [anon_sym_explicit] = ACTIONS(3020), + [anon_sym_typename] = ACTIONS(3020), + [anon_sym_template] = ACTIONS(3020), + [anon_sym_operator] = ACTIONS(3020), + [anon_sym_try] = ACTIONS(3020), + [anon_sym_delete] = ACTIONS(3020), + [anon_sym_throw] = ACTIONS(3020), + [anon_sym_namespace] = ACTIONS(3020), + [anon_sym_using] = ACTIONS(3020), + [anon_sym_static_assert] = ACTIONS(3020), + [anon_sym_concept] = ACTIONS(3020), + [anon_sym_co_return] = ACTIONS(3020), + [anon_sym_co_yield] = ACTIONS(3020), + [anon_sym_R_DQUOTE] = ACTIONS(3022), + [anon_sym_LR_DQUOTE] = ACTIONS(3022), + [anon_sym_uR_DQUOTE] = ACTIONS(3022), + [anon_sym_UR_DQUOTE] = ACTIONS(3022), + [anon_sym_u8R_DQUOTE] = ACTIONS(3022), + [anon_sym_co_await] = ACTIONS(3020), + [anon_sym_new] = ACTIONS(3020), + [anon_sym_requires] = ACTIONS(3020), + [sym_this] = ACTIONS(3020), }, [686] = { - [sym_identifier] = ACTIONS(2614), - [aux_sym_preproc_include_token1] = ACTIONS(2614), - [aux_sym_preproc_def_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token2] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2614), - [sym_preproc_directive] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP_AMP] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2614), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym___based] = ACTIONS(2614), - [anon_sym___cdecl] = ACTIONS(2614), - [anon_sym___clrcall] = ACTIONS(2614), - [anon_sym___stdcall] = ACTIONS(2614), - [anon_sym___fastcall] = ACTIONS(2614), - [anon_sym___thiscall] = ACTIONS(2614), - [anon_sym___vectorcall] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_case] = ACTIONS(2614), - [anon_sym_default] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_explicit] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_operator] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_namespace] = ACTIONS(2614), - [anon_sym_using] = ACTIONS(2614), - [anon_sym_static_assert] = ACTIONS(2614), - [anon_sym_concept] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token2] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [aux_sym_preproc_else_token1] = ACTIONS(3048), + [aux_sym_preproc_elif_token1] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, [687] = { - [ts_builtin_sym_end] = ACTIONS(2520), - [sym_identifier] = ACTIONS(2518), - [aux_sym_preproc_include_token1] = ACTIONS(2518), - [aux_sym_preproc_def_token1] = ACTIONS(2518), - [aux_sym_preproc_if_token1] = ACTIONS(2518), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2518), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2518), - [sym_preproc_directive] = ACTIONS(2518), - [anon_sym_LPAREN2] = ACTIONS(2520), - [anon_sym_BANG] = ACTIONS(2520), - [anon_sym_TILDE] = ACTIONS(2520), - [anon_sym_DASH] = ACTIONS(2518), - [anon_sym_PLUS] = ACTIONS(2518), - [anon_sym_STAR] = ACTIONS(2520), - [anon_sym_AMP_AMP] = ACTIONS(2520), - [anon_sym_AMP] = ACTIONS(2518), - [anon_sym_SEMI] = ACTIONS(2520), - [anon_sym_typedef] = ACTIONS(2518), - [anon_sym_extern] = ACTIONS(2518), - [anon_sym___attribute__] = ACTIONS(2518), - [anon_sym_COLON_COLON] = ACTIONS(2520), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2520), - [anon_sym___declspec] = ACTIONS(2518), - [anon_sym___based] = ACTIONS(2518), - [anon_sym___cdecl] = ACTIONS(2518), - [anon_sym___clrcall] = ACTIONS(2518), - [anon_sym___stdcall] = ACTIONS(2518), - [anon_sym___fastcall] = ACTIONS(2518), - [anon_sym___thiscall] = ACTIONS(2518), - [anon_sym___vectorcall] = ACTIONS(2518), - [anon_sym_LBRACE] = ACTIONS(2520), - [anon_sym_LBRACK] = ACTIONS(2518), - [anon_sym_static] = ACTIONS(2518), - [anon_sym_register] = ACTIONS(2518), - [anon_sym_inline] = ACTIONS(2518), - [anon_sym_thread_local] = ACTIONS(2518), - [anon_sym_const] = ACTIONS(2518), - [anon_sym_volatile] = ACTIONS(2518), - [anon_sym_restrict] = ACTIONS(2518), - [anon_sym__Atomic] = ACTIONS(2518), - [anon_sym_mutable] = ACTIONS(2518), - [anon_sym_constexpr] = ACTIONS(2518), - [anon_sym_constinit] = ACTIONS(2518), - [anon_sym_consteval] = ACTIONS(2518), - [anon_sym_signed] = ACTIONS(2518), - [anon_sym_unsigned] = ACTIONS(2518), - [anon_sym_long] = ACTIONS(2518), - [anon_sym_short] = ACTIONS(2518), - [sym_primitive_type] = ACTIONS(2518), - [anon_sym_enum] = ACTIONS(2518), - [anon_sym_class] = ACTIONS(2518), - [anon_sym_struct] = ACTIONS(2518), - [anon_sym_union] = ACTIONS(2518), - [anon_sym_if] = ACTIONS(2518), - [anon_sym_else] = ACTIONS(2518), - [anon_sym_switch] = ACTIONS(2518), - [anon_sym_case] = ACTIONS(2518), - [anon_sym_default] = ACTIONS(2518), - [anon_sym_while] = ACTIONS(2518), - [anon_sym_do] = ACTIONS(2518), - [anon_sym_for] = ACTIONS(2518), - [anon_sym_return] = ACTIONS(2518), - [anon_sym_break] = ACTIONS(2518), - [anon_sym_continue] = ACTIONS(2518), - [anon_sym_goto] = ACTIONS(2518), - [anon_sym_not] = ACTIONS(2518), - [anon_sym_compl] = ACTIONS(2518), - [anon_sym_DASH_DASH] = ACTIONS(2520), - [anon_sym_PLUS_PLUS] = ACTIONS(2520), - [anon_sym_sizeof] = ACTIONS(2518), - [sym_number_literal] = ACTIONS(2520), - [anon_sym_L_SQUOTE] = ACTIONS(2520), - [anon_sym_u_SQUOTE] = ACTIONS(2520), - [anon_sym_U_SQUOTE] = ACTIONS(2520), - [anon_sym_u8_SQUOTE] = ACTIONS(2520), - [anon_sym_SQUOTE] = ACTIONS(2520), - [anon_sym_L_DQUOTE] = ACTIONS(2520), - [anon_sym_u_DQUOTE] = ACTIONS(2520), - [anon_sym_U_DQUOTE] = ACTIONS(2520), - [anon_sym_u8_DQUOTE] = ACTIONS(2520), - [anon_sym_DQUOTE] = ACTIONS(2520), - [sym_true] = ACTIONS(2518), - [sym_false] = ACTIONS(2518), - [sym_null] = ACTIONS(2518), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2518), - [anon_sym_decltype] = ACTIONS(2518), - [anon_sym_virtual] = ACTIONS(2518), - [anon_sym_explicit] = ACTIONS(2518), - [anon_sym_typename] = ACTIONS(2518), - [anon_sym_template] = ACTIONS(2518), - [anon_sym_operator] = ACTIONS(2518), - [anon_sym_try] = ACTIONS(2518), - [anon_sym_delete] = ACTIONS(2518), - [anon_sym_throw] = ACTIONS(2518), - [anon_sym_namespace] = ACTIONS(2518), - [anon_sym_using] = ACTIONS(2518), - [anon_sym_static_assert] = ACTIONS(2518), - [anon_sym_concept] = ACTIONS(2518), - [anon_sym_co_return] = ACTIONS(2518), - [anon_sym_co_yield] = ACTIONS(2518), - [anon_sym_R_DQUOTE] = ACTIONS(2520), - [anon_sym_LR_DQUOTE] = ACTIONS(2520), - [anon_sym_uR_DQUOTE] = ACTIONS(2520), - [anon_sym_UR_DQUOTE] = ACTIONS(2520), - [anon_sym_u8R_DQUOTE] = ACTIONS(2520), - [anon_sym_co_await] = ACTIONS(2518), - [anon_sym_new] = ACTIONS(2518), - [anon_sym_requires] = ACTIONS(2518), - [sym_this] = ACTIONS(2518), - [sym_nullptr] = ACTIONS(2518), + [sym_identifier] = ACTIONS(2920), + [aux_sym_preproc_include_token1] = ACTIONS(2920), + [aux_sym_preproc_def_token1] = ACTIONS(2920), + [aux_sym_preproc_if_token1] = ACTIONS(2920), + [aux_sym_preproc_if_token2] = ACTIONS(2920), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2920), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2920), + [aux_sym_preproc_else_token1] = ACTIONS(2920), + [aux_sym_preproc_elif_token1] = ACTIONS(2920), + [sym_preproc_directive] = ACTIONS(2920), + [anon_sym_LPAREN2] = ACTIONS(2922), + [anon_sym_BANG] = ACTIONS(2922), + [anon_sym_TILDE] = ACTIONS(2922), + [anon_sym_DASH] = ACTIONS(2920), + [anon_sym_PLUS] = ACTIONS(2920), + [anon_sym_STAR] = ACTIONS(2922), + [anon_sym_AMP_AMP] = ACTIONS(2922), + [anon_sym_AMP] = ACTIONS(2920), + [anon_sym_SEMI] = ACTIONS(2922), + [anon_sym_typedef] = ACTIONS(2920), + [anon_sym_extern] = ACTIONS(2920), + [anon_sym___attribute__] = ACTIONS(2920), + [anon_sym_COLON_COLON] = ACTIONS(2922), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2922), + [anon_sym___declspec] = ACTIONS(2920), + [anon_sym___based] = ACTIONS(2920), + [anon_sym___cdecl] = ACTIONS(2920), + [anon_sym___clrcall] = ACTIONS(2920), + [anon_sym___stdcall] = ACTIONS(2920), + [anon_sym___fastcall] = ACTIONS(2920), + [anon_sym___thiscall] = ACTIONS(2920), + [anon_sym___vectorcall] = ACTIONS(2920), + [anon_sym_LBRACE] = ACTIONS(2922), + [anon_sym_LBRACK] = ACTIONS(2920), + [anon_sym_static] = ACTIONS(2920), + [anon_sym_register] = ACTIONS(2920), + [anon_sym_inline] = ACTIONS(2920), + [anon_sym_thread_local] = ACTIONS(2920), + [anon_sym_const] = ACTIONS(2920), + [anon_sym_constexpr] = ACTIONS(2920), + [anon_sym_volatile] = ACTIONS(2920), + [anon_sym_restrict] = ACTIONS(2920), + [anon_sym___restrict__] = ACTIONS(2920), + [anon_sym__Atomic] = ACTIONS(2920), + [anon_sym__Noreturn] = ACTIONS(2920), + [anon_sym_noreturn] = ACTIONS(2920), + [anon_sym_mutable] = ACTIONS(2920), + [anon_sym_constinit] = ACTIONS(2920), + [anon_sym_consteval] = ACTIONS(2920), + [anon_sym_signed] = ACTIONS(2920), + [anon_sym_unsigned] = ACTIONS(2920), + [anon_sym_long] = ACTIONS(2920), + [anon_sym_short] = ACTIONS(2920), + [sym_primitive_type] = ACTIONS(2920), + [anon_sym_enum] = ACTIONS(2920), + [anon_sym_class] = ACTIONS(2920), + [anon_sym_struct] = ACTIONS(2920), + [anon_sym_union] = ACTIONS(2920), + [anon_sym_if] = ACTIONS(2920), + [anon_sym_else] = ACTIONS(2920), + [anon_sym_switch] = ACTIONS(2920), + [anon_sym_case] = ACTIONS(2920), + [anon_sym_default] = ACTIONS(2920), + [anon_sym_while] = ACTIONS(2920), + [anon_sym_do] = ACTIONS(2920), + [anon_sym_for] = ACTIONS(2920), + [anon_sym_return] = ACTIONS(2920), + [anon_sym_break] = ACTIONS(2920), + [anon_sym_continue] = ACTIONS(2920), + [anon_sym_goto] = ACTIONS(2920), + [anon_sym_not] = ACTIONS(2920), + [anon_sym_compl] = ACTIONS(2920), + [anon_sym_DASH_DASH] = ACTIONS(2922), + [anon_sym_PLUS_PLUS] = ACTIONS(2922), + [anon_sym_sizeof] = ACTIONS(2920), + [anon_sym_offsetof] = ACTIONS(2920), + [anon_sym__Generic] = ACTIONS(2920), + [anon_sym_asm] = ACTIONS(2920), + [anon_sym___asm__] = ACTIONS(2920), + [sym_number_literal] = ACTIONS(2922), + [anon_sym_L_SQUOTE] = ACTIONS(2922), + [anon_sym_u_SQUOTE] = ACTIONS(2922), + [anon_sym_U_SQUOTE] = ACTIONS(2922), + [anon_sym_u8_SQUOTE] = ACTIONS(2922), + [anon_sym_SQUOTE] = ACTIONS(2922), + [anon_sym_L_DQUOTE] = ACTIONS(2922), + [anon_sym_u_DQUOTE] = ACTIONS(2922), + [anon_sym_U_DQUOTE] = ACTIONS(2922), + [anon_sym_u8_DQUOTE] = ACTIONS(2922), + [anon_sym_DQUOTE] = ACTIONS(2922), + [sym_true] = ACTIONS(2920), + [sym_false] = ACTIONS(2920), + [anon_sym_NULL] = ACTIONS(2920), + [anon_sym_nullptr] = ACTIONS(2920), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2920), + [anon_sym_decltype] = ACTIONS(2920), + [anon_sym_virtual] = ACTIONS(2920), + [anon_sym_explicit] = ACTIONS(2920), + [anon_sym_typename] = ACTIONS(2920), + [anon_sym_template] = ACTIONS(2920), + [anon_sym_operator] = ACTIONS(2920), + [anon_sym_try] = ACTIONS(2920), + [anon_sym_delete] = ACTIONS(2920), + [anon_sym_throw] = ACTIONS(2920), + [anon_sym_namespace] = ACTIONS(2920), + [anon_sym_using] = ACTIONS(2920), + [anon_sym_static_assert] = ACTIONS(2920), + [anon_sym_concept] = ACTIONS(2920), + [anon_sym_co_return] = ACTIONS(2920), + [anon_sym_co_yield] = ACTIONS(2920), + [anon_sym_R_DQUOTE] = ACTIONS(2922), + [anon_sym_LR_DQUOTE] = ACTIONS(2922), + [anon_sym_uR_DQUOTE] = ACTIONS(2922), + [anon_sym_UR_DQUOTE] = ACTIONS(2922), + [anon_sym_u8R_DQUOTE] = ACTIONS(2922), + [anon_sym_co_await] = ACTIONS(2920), + [anon_sym_new] = ACTIONS(2920), + [anon_sym_requires] = ACTIONS(2920), + [sym_this] = ACTIONS(2920), }, [688] = { - [ts_builtin_sym_end] = ACTIONS(2616), - [sym_identifier] = ACTIONS(2614), - [aux_sym_preproc_include_token1] = ACTIONS(2614), - [aux_sym_preproc_def_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2614), - [sym_preproc_directive] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP_AMP] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2614), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym___based] = ACTIONS(2614), - [anon_sym___cdecl] = ACTIONS(2614), - [anon_sym___clrcall] = ACTIONS(2614), - [anon_sym___stdcall] = ACTIONS(2614), - [anon_sym___fastcall] = ACTIONS(2614), - [anon_sym___thiscall] = ACTIONS(2614), - [anon_sym___vectorcall] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_case] = ACTIONS(2614), - [anon_sym_default] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_explicit] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_operator] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_namespace] = ACTIONS(2614), - [anon_sym_using] = ACTIONS(2614), - [anon_sym_static_assert] = ACTIONS(2614), - [anon_sym_concept] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), + [sym_preproc_def] = STATE(733), + [sym_preproc_function_def] = STATE(733), + [sym_preproc_call] = STATE(733), + [sym_preproc_if_in_field_declaration_list] = STATE(733), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(733), + [sym_type_definition] = STATE(733), + [sym__declaration_modifiers] = STATE(3706), + [sym__declaration_specifiers] = STATE(4831), + [sym_attribute_specifier] = STATE(3706), + [sym_attribute_declaration] = STATE(3706), + [sym_ms_declspec_modifier] = STATE(3706), + [sym_ms_based_modifier] = STATE(7654), + [sym__declarator] = STATE(5881), + [sym_parenthesized_declarator] = STATE(5640), + [sym_attributed_declarator] = STATE(5640), + [sym_pointer_declarator] = STATE(5640), + [sym_function_declarator] = STATE(5531), + [sym_array_declarator] = STATE(5640), + [sym_storage_class_specifier] = STATE(3706), + [sym_type_qualifier] = STATE(3706), + [sym__type_specifier] = STATE(3845), + [sym_sized_type_specifier] = STATE(3918), + [sym_enum_specifier] = STATE(3918), + [sym_struct_specifier] = STATE(3918), + [sym_union_specifier] = STATE(3918), + [sym__field_declaration_list_item] = STATE(733), + [sym_field_declaration] = STATE(733), + [sym_placeholder_type_specifier] = STATE(3918), + [sym_decltype_auto] = STATE(3916), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3918), + [sym_virtual] = STATE(3706), + [sym_explicit_function_specifier] = STATE(2247), + [sym_dependent_type] = STATE(3918), + [sym_template_declaration] = STATE(733), + [sym_operator_cast] = STATE(5897), + [sym_inline_method_definition] = STATE(733), + [sym__constructor_specifiers] = STATE(2247), + [sym_operator_cast_definition] = STATE(733), + [sym_operator_cast_declaration] = STATE(733), + [sym_constructor_or_destructor_definition] = STATE(733), + [sym_constructor_or_destructor_declaration] = STATE(733), + [sym_friend_declaration] = STATE(733), + [sym_access_specifier] = STATE(7346), + [sym_reference_declarator] = STATE(5640), + [sym_structured_binding_declarator] = STATE(5640), + [sym_template_type] = STATE(3680), + [sym_template_function] = STATE(5640), + [sym_using_declaration] = STATE(733), + [sym_alias_declaration] = STATE(733), + [sym_static_assert_declaration] = STATE(733), + [sym_destructor_name] = STATE(5640), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5151), + [sym_qualified_identifier] = STATE(5640), + [sym_qualified_type_identifier] = STATE(3966), + [sym_qualified_operator_cast_identifier] = STATE(5897), + [sym_operator_name] = STATE(5640), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(733), + [aux_sym__declaration_specifiers_repeat1] = STATE(2509), + [aux_sym_sized_type_specifier_repeat1] = STATE(3981), + [aux_sym_operator_cast_definition_repeat1] = STATE(2247), + [sym_identifier] = ACTIONS(2544), + [aux_sym_preproc_def_token1] = ACTIONS(3479), + [aux_sym_preproc_if_token1] = ACTIONS(3481), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3483), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3483), + [sym_preproc_directive] = ACTIONS(3485), + [anon_sym_LPAREN2] = ACTIONS(2560), + [anon_sym_TILDE] = ACTIONS(2562), + [anon_sym_STAR] = ACTIONS(2564), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_typedef] = ACTIONS(3487), + [anon_sym_extern] = ACTIONS(53), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(2570), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1813), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(45), + [anon_sym_RBRACE] = ACTIONS(3519), + [anon_sym_LBRACK] = ACTIONS(2572), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(53), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(2574), + [anon_sym_unsigned] = ACTIONS(2574), + [anon_sym_long] = ACTIONS(2574), + [anon_sym_short] = ACTIONS(2574), + [sym_primitive_type] = ACTIONS(2576), + [anon_sym_enum] = ACTIONS(2578), + [anon_sym_class] = ACTIONS(2580), + [anon_sym_struct] = ACTIONS(2582), + [anon_sym_union] = ACTIONS(2584), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2586), + [anon_sym_decltype] = ACTIONS(2588), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_explicit] = ACTIONS(119), + [anon_sym_typename] = ACTIONS(2590), + [anon_sym_template] = ACTIONS(3491), + [anon_sym_operator] = ACTIONS(125), + [anon_sym_friend] = ACTIONS(3493), + [anon_sym_public] = ACTIONS(2596), + [anon_sym_private] = ACTIONS(2596), + [anon_sym_protected] = ACTIONS(2596), + [anon_sym_using] = ACTIONS(3495), + [anon_sym_static_assert] = ACTIONS(3497), }, [689] = { - [sym_identifier] = ACTIONS(2642), - [aux_sym_preproc_include_token1] = ACTIONS(2642), - [aux_sym_preproc_def_token1] = ACTIONS(2642), - [aux_sym_preproc_if_token1] = ACTIONS(2642), - [aux_sym_preproc_if_token2] = ACTIONS(2642), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2642), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2642), - [sym_preproc_directive] = ACTIONS(2642), - [anon_sym_LPAREN2] = ACTIONS(2644), - [anon_sym_BANG] = ACTIONS(2644), - [anon_sym_TILDE] = ACTIONS(2644), - [anon_sym_DASH] = ACTIONS(2642), - [anon_sym_PLUS] = ACTIONS(2642), - [anon_sym_STAR] = ACTIONS(2644), - [anon_sym_AMP_AMP] = ACTIONS(2644), - [anon_sym_AMP] = ACTIONS(2642), - [anon_sym_SEMI] = ACTIONS(2644), - [anon_sym_typedef] = ACTIONS(2642), - [anon_sym_extern] = ACTIONS(2642), - [anon_sym___attribute__] = ACTIONS(2642), - [anon_sym_COLON_COLON] = ACTIONS(2644), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2644), - [anon_sym___declspec] = ACTIONS(2642), - [anon_sym___based] = ACTIONS(2642), - [anon_sym___cdecl] = ACTIONS(2642), - [anon_sym___clrcall] = ACTIONS(2642), - [anon_sym___stdcall] = ACTIONS(2642), - [anon_sym___fastcall] = ACTIONS(2642), - [anon_sym___thiscall] = ACTIONS(2642), - [anon_sym___vectorcall] = ACTIONS(2642), - [anon_sym_LBRACE] = ACTIONS(2644), - [anon_sym_LBRACK] = ACTIONS(2642), - [anon_sym_static] = ACTIONS(2642), - [anon_sym_register] = ACTIONS(2642), - [anon_sym_inline] = ACTIONS(2642), - [anon_sym_thread_local] = ACTIONS(2642), - [anon_sym_const] = ACTIONS(2642), - [anon_sym_volatile] = ACTIONS(2642), - [anon_sym_restrict] = ACTIONS(2642), - [anon_sym__Atomic] = ACTIONS(2642), - [anon_sym_mutable] = ACTIONS(2642), - [anon_sym_constexpr] = ACTIONS(2642), - [anon_sym_constinit] = ACTIONS(2642), - [anon_sym_consteval] = ACTIONS(2642), - [anon_sym_signed] = ACTIONS(2642), - [anon_sym_unsigned] = ACTIONS(2642), - [anon_sym_long] = ACTIONS(2642), - [anon_sym_short] = ACTIONS(2642), - [sym_primitive_type] = ACTIONS(2642), - [anon_sym_enum] = ACTIONS(2642), - [anon_sym_class] = ACTIONS(2642), - [anon_sym_struct] = ACTIONS(2642), - [anon_sym_union] = ACTIONS(2642), - [anon_sym_if] = ACTIONS(2642), - [anon_sym_else] = ACTIONS(2642), - [anon_sym_switch] = ACTIONS(2642), - [anon_sym_case] = ACTIONS(2642), - [anon_sym_default] = ACTIONS(2642), - [anon_sym_while] = ACTIONS(2642), - [anon_sym_do] = ACTIONS(2642), - [anon_sym_for] = ACTIONS(2642), - [anon_sym_return] = ACTIONS(2642), - [anon_sym_break] = ACTIONS(2642), - [anon_sym_continue] = ACTIONS(2642), - [anon_sym_goto] = ACTIONS(2642), - [anon_sym_not] = ACTIONS(2642), - [anon_sym_compl] = ACTIONS(2642), - [anon_sym_DASH_DASH] = ACTIONS(2644), - [anon_sym_PLUS_PLUS] = ACTIONS(2644), - [anon_sym_sizeof] = ACTIONS(2642), - [sym_number_literal] = ACTIONS(2644), - [anon_sym_L_SQUOTE] = ACTIONS(2644), - [anon_sym_u_SQUOTE] = ACTIONS(2644), - [anon_sym_U_SQUOTE] = ACTIONS(2644), - [anon_sym_u8_SQUOTE] = ACTIONS(2644), - [anon_sym_SQUOTE] = ACTIONS(2644), - [anon_sym_L_DQUOTE] = ACTIONS(2644), - [anon_sym_u_DQUOTE] = ACTIONS(2644), - [anon_sym_U_DQUOTE] = ACTIONS(2644), - [anon_sym_u8_DQUOTE] = ACTIONS(2644), - [anon_sym_DQUOTE] = ACTIONS(2644), - [sym_true] = ACTIONS(2642), - [sym_false] = ACTIONS(2642), - [sym_null] = ACTIONS(2642), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2642), - [anon_sym_decltype] = ACTIONS(2642), - [anon_sym_virtual] = ACTIONS(2642), - [anon_sym_explicit] = ACTIONS(2642), - [anon_sym_typename] = ACTIONS(2642), - [anon_sym_template] = ACTIONS(2642), - [anon_sym_operator] = ACTIONS(2642), - [anon_sym_try] = ACTIONS(2642), - [anon_sym_delete] = ACTIONS(2642), - [anon_sym_throw] = ACTIONS(2642), - [anon_sym_namespace] = ACTIONS(2642), - [anon_sym_using] = ACTIONS(2642), - [anon_sym_static_assert] = ACTIONS(2642), - [anon_sym_concept] = ACTIONS(2642), - [anon_sym_co_return] = ACTIONS(2642), - [anon_sym_co_yield] = ACTIONS(2642), - [anon_sym_R_DQUOTE] = ACTIONS(2644), - [anon_sym_LR_DQUOTE] = ACTIONS(2644), - [anon_sym_uR_DQUOTE] = ACTIONS(2644), - [anon_sym_UR_DQUOTE] = ACTIONS(2644), - [anon_sym_u8R_DQUOTE] = ACTIONS(2644), - [anon_sym_co_await] = ACTIONS(2642), - [anon_sym_new] = ACTIONS(2642), - [anon_sym_requires] = ACTIONS(2642), - [sym_this] = ACTIONS(2642), - [sym_nullptr] = ACTIONS(2642), + [sym_identifier] = ACTIONS(3105), + [aux_sym_preproc_include_token1] = ACTIONS(3105), + [aux_sym_preproc_def_token1] = ACTIONS(3105), + [aux_sym_preproc_if_token1] = ACTIONS(3105), + [aux_sym_preproc_if_token2] = ACTIONS(3105), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3105), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3105), + [aux_sym_preproc_else_token1] = ACTIONS(3105), + [aux_sym_preproc_elif_token1] = ACTIONS(3105), + [sym_preproc_directive] = ACTIONS(3105), + [anon_sym_LPAREN2] = ACTIONS(3107), + [anon_sym_BANG] = ACTIONS(3107), + [anon_sym_TILDE] = ACTIONS(3107), + [anon_sym_DASH] = ACTIONS(3105), + [anon_sym_PLUS] = ACTIONS(3105), + [anon_sym_STAR] = ACTIONS(3107), + [anon_sym_AMP_AMP] = ACTIONS(3107), + [anon_sym_AMP] = ACTIONS(3105), + [anon_sym_SEMI] = ACTIONS(3107), + [anon_sym_typedef] = ACTIONS(3105), + [anon_sym_extern] = ACTIONS(3105), + [anon_sym___attribute__] = ACTIONS(3105), + [anon_sym_COLON_COLON] = ACTIONS(3107), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3107), + [anon_sym___declspec] = ACTIONS(3105), + [anon_sym___based] = ACTIONS(3105), + [anon_sym___cdecl] = ACTIONS(3105), + [anon_sym___clrcall] = ACTIONS(3105), + [anon_sym___stdcall] = ACTIONS(3105), + [anon_sym___fastcall] = ACTIONS(3105), + [anon_sym___thiscall] = ACTIONS(3105), + [anon_sym___vectorcall] = ACTIONS(3105), + [anon_sym_LBRACE] = ACTIONS(3107), + [anon_sym_LBRACK] = ACTIONS(3105), + [anon_sym_static] = ACTIONS(3105), + [anon_sym_register] = ACTIONS(3105), + [anon_sym_inline] = ACTIONS(3105), + [anon_sym_thread_local] = ACTIONS(3105), + [anon_sym_const] = ACTIONS(3105), + [anon_sym_constexpr] = ACTIONS(3105), + [anon_sym_volatile] = ACTIONS(3105), + [anon_sym_restrict] = ACTIONS(3105), + [anon_sym___restrict__] = ACTIONS(3105), + [anon_sym__Atomic] = ACTIONS(3105), + [anon_sym__Noreturn] = ACTIONS(3105), + [anon_sym_noreturn] = ACTIONS(3105), + [anon_sym_mutable] = ACTIONS(3105), + [anon_sym_constinit] = ACTIONS(3105), + [anon_sym_consteval] = ACTIONS(3105), + [anon_sym_signed] = ACTIONS(3105), + [anon_sym_unsigned] = ACTIONS(3105), + [anon_sym_long] = ACTIONS(3105), + [anon_sym_short] = ACTIONS(3105), + [sym_primitive_type] = ACTIONS(3105), + [anon_sym_enum] = ACTIONS(3105), + [anon_sym_class] = ACTIONS(3105), + [anon_sym_struct] = ACTIONS(3105), + [anon_sym_union] = ACTIONS(3105), + [anon_sym_if] = ACTIONS(3105), + [anon_sym_else] = ACTIONS(3105), + [anon_sym_switch] = ACTIONS(3105), + [anon_sym_case] = ACTIONS(3105), + [anon_sym_default] = ACTIONS(3105), + [anon_sym_while] = ACTIONS(3105), + [anon_sym_do] = ACTIONS(3105), + [anon_sym_for] = ACTIONS(3105), + [anon_sym_return] = ACTIONS(3105), + [anon_sym_break] = ACTIONS(3105), + [anon_sym_continue] = ACTIONS(3105), + [anon_sym_goto] = ACTIONS(3105), + [anon_sym_not] = ACTIONS(3105), + [anon_sym_compl] = ACTIONS(3105), + [anon_sym_DASH_DASH] = ACTIONS(3107), + [anon_sym_PLUS_PLUS] = ACTIONS(3107), + [anon_sym_sizeof] = ACTIONS(3105), + [anon_sym_offsetof] = ACTIONS(3105), + [anon_sym__Generic] = ACTIONS(3105), + [anon_sym_asm] = ACTIONS(3105), + [anon_sym___asm__] = ACTIONS(3105), + [sym_number_literal] = ACTIONS(3107), + [anon_sym_L_SQUOTE] = ACTIONS(3107), + [anon_sym_u_SQUOTE] = ACTIONS(3107), + [anon_sym_U_SQUOTE] = ACTIONS(3107), + [anon_sym_u8_SQUOTE] = ACTIONS(3107), + [anon_sym_SQUOTE] = ACTIONS(3107), + [anon_sym_L_DQUOTE] = ACTIONS(3107), + [anon_sym_u_DQUOTE] = ACTIONS(3107), + [anon_sym_U_DQUOTE] = ACTIONS(3107), + [anon_sym_u8_DQUOTE] = ACTIONS(3107), + [anon_sym_DQUOTE] = ACTIONS(3107), + [sym_true] = ACTIONS(3105), + [sym_false] = ACTIONS(3105), + [anon_sym_NULL] = ACTIONS(3105), + [anon_sym_nullptr] = ACTIONS(3105), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3105), + [anon_sym_decltype] = ACTIONS(3105), + [anon_sym_virtual] = ACTIONS(3105), + [anon_sym_explicit] = ACTIONS(3105), + [anon_sym_typename] = ACTIONS(3105), + [anon_sym_template] = ACTIONS(3105), + [anon_sym_operator] = ACTIONS(3105), + [anon_sym_try] = ACTIONS(3105), + [anon_sym_delete] = ACTIONS(3105), + [anon_sym_throw] = ACTIONS(3105), + [anon_sym_namespace] = ACTIONS(3105), + [anon_sym_using] = ACTIONS(3105), + [anon_sym_static_assert] = ACTIONS(3105), + [anon_sym_concept] = ACTIONS(3105), + [anon_sym_co_return] = ACTIONS(3105), + [anon_sym_co_yield] = ACTIONS(3105), + [anon_sym_R_DQUOTE] = ACTIONS(3107), + [anon_sym_LR_DQUOTE] = ACTIONS(3107), + [anon_sym_uR_DQUOTE] = ACTIONS(3107), + [anon_sym_UR_DQUOTE] = ACTIONS(3107), + [anon_sym_u8R_DQUOTE] = ACTIONS(3107), + [anon_sym_co_await] = ACTIONS(3105), + [anon_sym_new] = ACTIONS(3105), + [anon_sym_requires] = ACTIONS(3105), + [sym_this] = ACTIONS(3105), }, [690] = { - [sym_identifier] = ACTIONS(2638), - [aux_sym_preproc_include_token1] = ACTIONS(2638), - [aux_sym_preproc_def_token1] = ACTIONS(2638), - [aux_sym_preproc_if_token1] = ACTIONS(2638), - [aux_sym_preproc_if_token2] = ACTIONS(2638), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2638), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2638), - [sym_preproc_directive] = ACTIONS(2638), - [anon_sym_LPAREN2] = ACTIONS(2640), - [anon_sym_BANG] = ACTIONS(2640), - [anon_sym_TILDE] = ACTIONS(2640), - [anon_sym_DASH] = ACTIONS(2638), - [anon_sym_PLUS] = ACTIONS(2638), - [anon_sym_STAR] = ACTIONS(2640), - [anon_sym_AMP_AMP] = ACTIONS(2640), - [anon_sym_AMP] = ACTIONS(2638), - [anon_sym_SEMI] = ACTIONS(2640), - [anon_sym_typedef] = ACTIONS(2638), - [anon_sym_extern] = ACTIONS(2638), - [anon_sym___attribute__] = ACTIONS(2638), - [anon_sym_COLON_COLON] = ACTIONS(2640), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2640), - [anon_sym___declspec] = ACTIONS(2638), - [anon_sym___based] = ACTIONS(2638), - [anon_sym___cdecl] = ACTIONS(2638), - [anon_sym___clrcall] = ACTIONS(2638), - [anon_sym___stdcall] = ACTIONS(2638), - [anon_sym___fastcall] = ACTIONS(2638), - [anon_sym___thiscall] = ACTIONS(2638), - [anon_sym___vectorcall] = ACTIONS(2638), - [anon_sym_LBRACE] = ACTIONS(2640), - [anon_sym_LBRACK] = ACTIONS(2638), - [anon_sym_static] = ACTIONS(2638), - [anon_sym_register] = ACTIONS(2638), - [anon_sym_inline] = ACTIONS(2638), - [anon_sym_thread_local] = ACTIONS(2638), - [anon_sym_const] = ACTIONS(2638), - [anon_sym_volatile] = ACTIONS(2638), - [anon_sym_restrict] = ACTIONS(2638), - [anon_sym__Atomic] = ACTIONS(2638), - [anon_sym_mutable] = ACTIONS(2638), - [anon_sym_constexpr] = ACTIONS(2638), - [anon_sym_constinit] = ACTIONS(2638), - [anon_sym_consteval] = ACTIONS(2638), - [anon_sym_signed] = ACTIONS(2638), - [anon_sym_unsigned] = ACTIONS(2638), - [anon_sym_long] = ACTIONS(2638), - [anon_sym_short] = ACTIONS(2638), - [sym_primitive_type] = ACTIONS(2638), - [anon_sym_enum] = ACTIONS(2638), - [anon_sym_class] = ACTIONS(2638), - [anon_sym_struct] = ACTIONS(2638), - [anon_sym_union] = ACTIONS(2638), - [anon_sym_if] = ACTIONS(2638), - [anon_sym_else] = ACTIONS(2638), - [anon_sym_switch] = ACTIONS(2638), - [anon_sym_case] = ACTIONS(2638), - [anon_sym_default] = ACTIONS(2638), - [anon_sym_while] = ACTIONS(2638), - [anon_sym_do] = ACTIONS(2638), - [anon_sym_for] = ACTIONS(2638), - [anon_sym_return] = ACTIONS(2638), - [anon_sym_break] = ACTIONS(2638), - [anon_sym_continue] = ACTIONS(2638), - [anon_sym_goto] = ACTIONS(2638), - [anon_sym_not] = ACTIONS(2638), - [anon_sym_compl] = ACTIONS(2638), - [anon_sym_DASH_DASH] = ACTIONS(2640), - [anon_sym_PLUS_PLUS] = ACTIONS(2640), - [anon_sym_sizeof] = ACTIONS(2638), - [sym_number_literal] = ACTIONS(2640), - [anon_sym_L_SQUOTE] = ACTIONS(2640), - [anon_sym_u_SQUOTE] = ACTIONS(2640), - [anon_sym_U_SQUOTE] = ACTIONS(2640), - [anon_sym_u8_SQUOTE] = ACTIONS(2640), - [anon_sym_SQUOTE] = ACTIONS(2640), - [anon_sym_L_DQUOTE] = ACTIONS(2640), - [anon_sym_u_DQUOTE] = ACTIONS(2640), - [anon_sym_U_DQUOTE] = ACTIONS(2640), - [anon_sym_u8_DQUOTE] = ACTIONS(2640), - [anon_sym_DQUOTE] = ACTIONS(2640), - [sym_true] = ACTIONS(2638), - [sym_false] = ACTIONS(2638), - [sym_null] = ACTIONS(2638), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2638), - [anon_sym_decltype] = ACTIONS(2638), - [anon_sym_virtual] = ACTIONS(2638), - [anon_sym_explicit] = ACTIONS(2638), - [anon_sym_typename] = ACTIONS(2638), - [anon_sym_template] = ACTIONS(2638), - [anon_sym_operator] = ACTIONS(2638), - [anon_sym_try] = ACTIONS(2638), - [anon_sym_delete] = ACTIONS(2638), - [anon_sym_throw] = ACTIONS(2638), - [anon_sym_namespace] = ACTIONS(2638), - [anon_sym_using] = ACTIONS(2638), - [anon_sym_static_assert] = ACTIONS(2638), - [anon_sym_concept] = ACTIONS(2638), - [anon_sym_co_return] = ACTIONS(2638), - [anon_sym_co_yield] = ACTIONS(2638), - [anon_sym_R_DQUOTE] = ACTIONS(2640), - [anon_sym_LR_DQUOTE] = ACTIONS(2640), - [anon_sym_uR_DQUOTE] = ACTIONS(2640), - [anon_sym_UR_DQUOTE] = ACTIONS(2640), - [anon_sym_u8R_DQUOTE] = ACTIONS(2640), - [anon_sym_co_await] = ACTIONS(2638), - [anon_sym_new] = ACTIONS(2638), - [anon_sym_requires] = ACTIONS(2638), - [sym_this] = ACTIONS(2638), - [sym_nullptr] = ACTIONS(2638), + [sym_identifier] = ACTIONS(3101), + [aux_sym_preproc_include_token1] = ACTIONS(3101), + [aux_sym_preproc_def_token1] = ACTIONS(3101), + [aux_sym_preproc_if_token1] = ACTIONS(3101), + [aux_sym_preproc_if_token2] = ACTIONS(3101), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3101), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3101), + [aux_sym_preproc_else_token1] = ACTIONS(3101), + [aux_sym_preproc_elif_token1] = ACTIONS(3101), + [sym_preproc_directive] = ACTIONS(3101), + [anon_sym_LPAREN2] = ACTIONS(3103), + [anon_sym_BANG] = ACTIONS(3103), + [anon_sym_TILDE] = ACTIONS(3103), + [anon_sym_DASH] = ACTIONS(3101), + [anon_sym_PLUS] = ACTIONS(3101), + [anon_sym_STAR] = ACTIONS(3103), + [anon_sym_AMP_AMP] = ACTIONS(3103), + [anon_sym_AMP] = ACTIONS(3101), + [anon_sym_SEMI] = ACTIONS(3103), + [anon_sym_typedef] = ACTIONS(3101), + [anon_sym_extern] = ACTIONS(3101), + [anon_sym___attribute__] = ACTIONS(3101), + [anon_sym_COLON_COLON] = ACTIONS(3103), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3103), + [anon_sym___declspec] = ACTIONS(3101), + [anon_sym___based] = ACTIONS(3101), + [anon_sym___cdecl] = ACTIONS(3101), + [anon_sym___clrcall] = ACTIONS(3101), + [anon_sym___stdcall] = ACTIONS(3101), + [anon_sym___fastcall] = ACTIONS(3101), + [anon_sym___thiscall] = ACTIONS(3101), + [anon_sym___vectorcall] = ACTIONS(3101), + [anon_sym_LBRACE] = ACTIONS(3103), + [anon_sym_LBRACK] = ACTIONS(3101), + [anon_sym_static] = ACTIONS(3101), + [anon_sym_register] = ACTIONS(3101), + [anon_sym_inline] = ACTIONS(3101), + [anon_sym_thread_local] = ACTIONS(3101), + [anon_sym_const] = ACTIONS(3101), + [anon_sym_constexpr] = ACTIONS(3101), + [anon_sym_volatile] = ACTIONS(3101), + [anon_sym_restrict] = ACTIONS(3101), + [anon_sym___restrict__] = ACTIONS(3101), + [anon_sym__Atomic] = ACTIONS(3101), + [anon_sym__Noreturn] = ACTIONS(3101), + [anon_sym_noreturn] = ACTIONS(3101), + [anon_sym_mutable] = ACTIONS(3101), + [anon_sym_constinit] = ACTIONS(3101), + [anon_sym_consteval] = ACTIONS(3101), + [anon_sym_signed] = ACTIONS(3101), + [anon_sym_unsigned] = ACTIONS(3101), + [anon_sym_long] = ACTIONS(3101), + [anon_sym_short] = ACTIONS(3101), + [sym_primitive_type] = ACTIONS(3101), + [anon_sym_enum] = ACTIONS(3101), + [anon_sym_class] = ACTIONS(3101), + [anon_sym_struct] = ACTIONS(3101), + [anon_sym_union] = ACTIONS(3101), + [anon_sym_if] = ACTIONS(3101), + [anon_sym_else] = ACTIONS(3101), + [anon_sym_switch] = ACTIONS(3101), + [anon_sym_case] = ACTIONS(3101), + [anon_sym_default] = ACTIONS(3101), + [anon_sym_while] = ACTIONS(3101), + [anon_sym_do] = ACTIONS(3101), + [anon_sym_for] = ACTIONS(3101), + [anon_sym_return] = ACTIONS(3101), + [anon_sym_break] = ACTIONS(3101), + [anon_sym_continue] = ACTIONS(3101), + [anon_sym_goto] = ACTIONS(3101), + [anon_sym_not] = ACTIONS(3101), + [anon_sym_compl] = ACTIONS(3101), + [anon_sym_DASH_DASH] = ACTIONS(3103), + [anon_sym_PLUS_PLUS] = ACTIONS(3103), + [anon_sym_sizeof] = ACTIONS(3101), + [anon_sym_offsetof] = ACTIONS(3101), + [anon_sym__Generic] = ACTIONS(3101), + [anon_sym_asm] = ACTIONS(3101), + [anon_sym___asm__] = ACTIONS(3101), + [sym_number_literal] = ACTIONS(3103), + [anon_sym_L_SQUOTE] = ACTIONS(3103), + [anon_sym_u_SQUOTE] = ACTIONS(3103), + [anon_sym_U_SQUOTE] = ACTIONS(3103), + [anon_sym_u8_SQUOTE] = ACTIONS(3103), + [anon_sym_SQUOTE] = ACTIONS(3103), + [anon_sym_L_DQUOTE] = ACTIONS(3103), + [anon_sym_u_DQUOTE] = ACTIONS(3103), + [anon_sym_U_DQUOTE] = ACTIONS(3103), + [anon_sym_u8_DQUOTE] = ACTIONS(3103), + [anon_sym_DQUOTE] = ACTIONS(3103), + [sym_true] = ACTIONS(3101), + [sym_false] = ACTIONS(3101), + [anon_sym_NULL] = ACTIONS(3101), + [anon_sym_nullptr] = ACTIONS(3101), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3101), + [anon_sym_decltype] = ACTIONS(3101), + [anon_sym_virtual] = ACTIONS(3101), + [anon_sym_explicit] = ACTIONS(3101), + [anon_sym_typename] = ACTIONS(3101), + [anon_sym_template] = ACTIONS(3101), + [anon_sym_operator] = ACTIONS(3101), + [anon_sym_try] = ACTIONS(3101), + [anon_sym_delete] = ACTIONS(3101), + [anon_sym_throw] = ACTIONS(3101), + [anon_sym_namespace] = ACTIONS(3101), + [anon_sym_using] = ACTIONS(3101), + [anon_sym_static_assert] = ACTIONS(3101), + [anon_sym_concept] = ACTIONS(3101), + [anon_sym_co_return] = ACTIONS(3101), + [anon_sym_co_yield] = ACTIONS(3101), + [anon_sym_R_DQUOTE] = ACTIONS(3103), + [anon_sym_LR_DQUOTE] = ACTIONS(3103), + [anon_sym_uR_DQUOTE] = ACTIONS(3103), + [anon_sym_UR_DQUOTE] = ACTIONS(3103), + [anon_sym_u8R_DQUOTE] = ACTIONS(3103), + [anon_sym_co_await] = ACTIONS(3101), + [anon_sym_new] = ACTIONS(3101), + [anon_sym_requires] = ACTIONS(3101), + [sym_this] = ACTIONS(3101), }, [691] = { - [sym_identifier] = ACTIONS(2602), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2604), - [anon_sym_AMP] = ACTIONS(2602), - [anon_sym_SEMI] = ACTIONS(2604), - [anon_sym_typedef] = ACTIONS(2602), - [anon_sym_extern] = ACTIONS(2602), - [anon_sym___attribute__] = ACTIONS(2602), - [anon_sym_COLON_COLON] = ACTIONS(2604), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2604), - [anon_sym___declspec] = ACTIONS(2602), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2602), - [anon_sym_static] = ACTIONS(2602), - [anon_sym_register] = ACTIONS(2602), - [anon_sym_inline] = ACTIONS(2602), - [anon_sym_thread_local] = ACTIONS(2602), - [anon_sym_const] = ACTIONS(2602), - [anon_sym_volatile] = ACTIONS(2602), - [anon_sym_restrict] = ACTIONS(2602), - [anon_sym__Atomic] = ACTIONS(2602), - [anon_sym_mutable] = ACTIONS(2602), - [anon_sym_constexpr] = ACTIONS(2602), - [anon_sym_constinit] = ACTIONS(2602), - [anon_sym_consteval] = ACTIONS(2602), - [anon_sym_signed] = ACTIONS(2602), - [anon_sym_unsigned] = ACTIONS(2602), - [anon_sym_long] = ACTIONS(2602), - [anon_sym_short] = ACTIONS(2602), - [sym_primitive_type] = ACTIONS(2602), - [anon_sym_enum] = ACTIONS(2602), - [anon_sym_class] = ACTIONS(2602), - [anon_sym_struct] = ACTIONS(2602), - [anon_sym_union] = ACTIONS(2602), - [anon_sym_if] = ACTIONS(2602), - [anon_sym_else] = 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_return] = ACTIONS(2602), - [anon_sym_break] = ACTIONS(2602), - [anon_sym_continue] = ACTIONS(2602), - [anon_sym_goto] = ACTIONS(2602), - [anon_sym_not] = ACTIONS(2602), - [anon_sym_compl] = ACTIONS(2602), - [anon_sym_DASH_DASH] = ACTIONS(2604), - [anon_sym_PLUS_PLUS] = ACTIONS(2604), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2604), - [anon_sym_u_DQUOTE] = ACTIONS(2604), - [anon_sym_U_DQUOTE] = ACTIONS(2604), - [anon_sym_u8_DQUOTE] = ACTIONS(2604), - [anon_sym_DQUOTE] = ACTIONS(2604), - [sym_true] = ACTIONS(2602), - [sym_false] = ACTIONS(2602), - [sym_null] = ACTIONS(2602), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2602), - [anon_sym_decltype] = ACTIONS(2602), - [anon_sym_virtual] = ACTIONS(2602), - [anon_sym_explicit] = ACTIONS(2602), - [anon_sym_typename] = ACTIONS(2602), - [anon_sym_template] = ACTIONS(2602), - [anon_sym_operator] = ACTIONS(2602), - [anon_sym_try] = ACTIONS(2602), - [anon_sym_delete] = ACTIONS(2602), - [anon_sym_throw] = ACTIONS(2602), - [anon_sym_namespace] = ACTIONS(2602), - [anon_sym_using] = ACTIONS(2602), - [anon_sym_static_assert] = ACTIONS(2602), - [anon_sym_concept] = ACTIONS(2602), - [anon_sym_co_return] = ACTIONS(2602), - [anon_sym_co_yield] = ACTIONS(2602), - [anon_sym_R_DQUOTE] = ACTIONS(2604), - [anon_sym_LR_DQUOTE] = ACTIONS(2604), - [anon_sym_uR_DQUOTE] = ACTIONS(2604), - [anon_sym_UR_DQUOTE] = ACTIONS(2604), - [anon_sym_u8R_DQUOTE] = ACTIONS(2604), - [anon_sym_co_await] = ACTIONS(2602), - [anon_sym_new] = ACTIONS(2602), - [anon_sym_requires] = ACTIONS(2602), - [sym_this] = ACTIONS(2602), - [sym_nullptr] = ACTIONS(2602), + [sym_identifier] = ACTIONS(2932), + [aux_sym_preproc_include_token1] = ACTIONS(2932), + [aux_sym_preproc_def_token1] = ACTIONS(2932), + [aux_sym_preproc_if_token1] = ACTIONS(2932), + [aux_sym_preproc_if_token2] = ACTIONS(2932), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2932), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2932), + [aux_sym_preproc_else_token1] = ACTIONS(2932), + [aux_sym_preproc_elif_token1] = ACTIONS(2932), + [sym_preproc_directive] = ACTIONS(2932), + [anon_sym_LPAREN2] = ACTIONS(2934), + [anon_sym_BANG] = ACTIONS(2934), + [anon_sym_TILDE] = ACTIONS(2934), + [anon_sym_DASH] = ACTIONS(2932), + [anon_sym_PLUS] = ACTIONS(2932), + [anon_sym_STAR] = ACTIONS(2934), + [anon_sym_AMP_AMP] = ACTIONS(2934), + [anon_sym_AMP] = ACTIONS(2932), + [anon_sym_SEMI] = ACTIONS(2934), + [anon_sym_typedef] = ACTIONS(2932), + [anon_sym_extern] = ACTIONS(2932), + [anon_sym___attribute__] = ACTIONS(2932), + [anon_sym_COLON_COLON] = ACTIONS(2934), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2934), + [anon_sym___declspec] = ACTIONS(2932), + [anon_sym___based] = ACTIONS(2932), + [anon_sym___cdecl] = ACTIONS(2932), + [anon_sym___clrcall] = ACTIONS(2932), + [anon_sym___stdcall] = ACTIONS(2932), + [anon_sym___fastcall] = ACTIONS(2932), + [anon_sym___thiscall] = ACTIONS(2932), + [anon_sym___vectorcall] = ACTIONS(2932), + [anon_sym_LBRACE] = ACTIONS(2934), + [anon_sym_LBRACK] = ACTIONS(2932), + [anon_sym_static] = ACTIONS(2932), + [anon_sym_register] = ACTIONS(2932), + [anon_sym_inline] = ACTIONS(2932), + [anon_sym_thread_local] = ACTIONS(2932), + [anon_sym_const] = ACTIONS(2932), + [anon_sym_constexpr] = ACTIONS(2932), + [anon_sym_volatile] = ACTIONS(2932), + [anon_sym_restrict] = ACTIONS(2932), + [anon_sym___restrict__] = ACTIONS(2932), + [anon_sym__Atomic] = ACTIONS(2932), + [anon_sym__Noreturn] = ACTIONS(2932), + [anon_sym_noreturn] = ACTIONS(2932), + [anon_sym_mutable] = ACTIONS(2932), + [anon_sym_constinit] = ACTIONS(2932), + [anon_sym_consteval] = ACTIONS(2932), + [anon_sym_signed] = ACTIONS(2932), + [anon_sym_unsigned] = ACTIONS(2932), + [anon_sym_long] = ACTIONS(2932), + [anon_sym_short] = ACTIONS(2932), + [sym_primitive_type] = ACTIONS(2932), + [anon_sym_enum] = ACTIONS(2932), + [anon_sym_class] = ACTIONS(2932), + [anon_sym_struct] = ACTIONS(2932), + [anon_sym_union] = ACTIONS(2932), + [anon_sym_if] = ACTIONS(2932), + [anon_sym_else] = ACTIONS(2932), + [anon_sym_switch] = ACTIONS(2932), + [anon_sym_case] = ACTIONS(2932), + [anon_sym_default] = ACTIONS(2932), + [anon_sym_while] = ACTIONS(2932), + [anon_sym_do] = ACTIONS(2932), + [anon_sym_for] = ACTIONS(2932), + [anon_sym_return] = ACTIONS(2932), + [anon_sym_break] = ACTIONS(2932), + [anon_sym_continue] = ACTIONS(2932), + [anon_sym_goto] = ACTIONS(2932), + [anon_sym_not] = ACTIONS(2932), + [anon_sym_compl] = ACTIONS(2932), + [anon_sym_DASH_DASH] = ACTIONS(2934), + [anon_sym_PLUS_PLUS] = ACTIONS(2934), + [anon_sym_sizeof] = ACTIONS(2932), + [anon_sym_offsetof] = ACTIONS(2932), + [anon_sym__Generic] = ACTIONS(2932), + [anon_sym_asm] = ACTIONS(2932), + [anon_sym___asm__] = ACTIONS(2932), + [sym_number_literal] = ACTIONS(2934), + [anon_sym_L_SQUOTE] = ACTIONS(2934), + [anon_sym_u_SQUOTE] = ACTIONS(2934), + [anon_sym_U_SQUOTE] = ACTIONS(2934), + [anon_sym_u8_SQUOTE] = ACTIONS(2934), + [anon_sym_SQUOTE] = ACTIONS(2934), + [anon_sym_L_DQUOTE] = ACTIONS(2934), + [anon_sym_u_DQUOTE] = ACTIONS(2934), + [anon_sym_U_DQUOTE] = ACTIONS(2934), + [anon_sym_u8_DQUOTE] = ACTIONS(2934), + [anon_sym_DQUOTE] = ACTIONS(2934), + [sym_true] = ACTIONS(2932), + [sym_false] = ACTIONS(2932), + [anon_sym_NULL] = ACTIONS(2932), + [anon_sym_nullptr] = ACTIONS(2932), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2932), + [anon_sym_decltype] = ACTIONS(2932), + [anon_sym_virtual] = ACTIONS(2932), + [anon_sym_explicit] = ACTIONS(2932), + [anon_sym_typename] = ACTIONS(2932), + [anon_sym_template] = ACTIONS(2932), + [anon_sym_operator] = ACTIONS(2932), + [anon_sym_try] = ACTIONS(2932), + [anon_sym_delete] = ACTIONS(2932), + [anon_sym_throw] = ACTIONS(2932), + [anon_sym_namespace] = ACTIONS(2932), + [anon_sym_using] = ACTIONS(2932), + [anon_sym_static_assert] = ACTIONS(2932), + [anon_sym_concept] = ACTIONS(2932), + [anon_sym_co_return] = ACTIONS(2932), + [anon_sym_co_yield] = ACTIONS(2932), + [anon_sym_R_DQUOTE] = ACTIONS(2934), + [anon_sym_LR_DQUOTE] = ACTIONS(2934), + [anon_sym_uR_DQUOTE] = ACTIONS(2934), + [anon_sym_UR_DQUOTE] = ACTIONS(2934), + [anon_sym_u8R_DQUOTE] = ACTIONS(2934), + [anon_sym_co_await] = ACTIONS(2932), + [anon_sym_new] = ACTIONS(2932), + [anon_sym_requires] = ACTIONS(2932), + [sym_this] = ACTIONS(2932), }, [692] = { - [ts_builtin_sym_end] = ACTIONS(2644), - [sym_identifier] = ACTIONS(2642), - [aux_sym_preproc_include_token1] = ACTIONS(2642), - [aux_sym_preproc_def_token1] = ACTIONS(2642), - [aux_sym_preproc_if_token1] = ACTIONS(2642), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2642), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2642), - [sym_preproc_directive] = ACTIONS(2642), - [anon_sym_LPAREN2] = ACTIONS(2644), - [anon_sym_BANG] = ACTIONS(2644), - [anon_sym_TILDE] = ACTIONS(2644), - [anon_sym_DASH] = ACTIONS(2642), - [anon_sym_PLUS] = ACTIONS(2642), - [anon_sym_STAR] = ACTIONS(2644), - [anon_sym_AMP_AMP] = ACTIONS(2644), - [anon_sym_AMP] = ACTIONS(2642), - [anon_sym_SEMI] = ACTIONS(2644), - [anon_sym_typedef] = ACTIONS(2642), - [anon_sym_extern] = ACTIONS(2642), - [anon_sym___attribute__] = ACTIONS(2642), - [anon_sym_COLON_COLON] = ACTIONS(2644), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2644), - [anon_sym___declspec] = ACTIONS(2642), - [anon_sym___based] = ACTIONS(2642), - [anon_sym___cdecl] = ACTIONS(2642), - [anon_sym___clrcall] = ACTIONS(2642), - [anon_sym___stdcall] = ACTIONS(2642), - [anon_sym___fastcall] = ACTIONS(2642), - [anon_sym___thiscall] = ACTIONS(2642), - [anon_sym___vectorcall] = ACTIONS(2642), - [anon_sym_LBRACE] = ACTIONS(2644), - [anon_sym_LBRACK] = ACTIONS(2642), - [anon_sym_static] = ACTIONS(2642), - [anon_sym_register] = ACTIONS(2642), - [anon_sym_inline] = ACTIONS(2642), - [anon_sym_thread_local] = ACTIONS(2642), - [anon_sym_const] = ACTIONS(2642), - [anon_sym_volatile] = ACTIONS(2642), - [anon_sym_restrict] = ACTIONS(2642), - [anon_sym__Atomic] = ACTIONS(2642), - [anon_sym_mutable] = ACTIONS(2642), - [anon_sym_constexpr] = ACTIONS(2642), - [anon_sym_constinit] = ACTIONS(2642), - [anon_sym_consteval] = ACTIONS(2642), - [anon_sym_signed] = ACTIONS(2642), - [anon_sym_unsigned] = ACTIONS(2642), - [anon_sym_long] = ACTIONS(2642), - [anon_sym_short] = ACTIONS(2642), - [sym_primitive_type] = ACTIONS(2642), - [anon_sym_enum] = ACTIONS(2642), - [anon_sym_class] = ACTIONS(2642), - [anon_sym_struct] = ACTIONS(2642), - [anon_sym_union] = ACTIONS(2642), - [anon_sym_if] = ACTIONS(2642), - [anon_sym_else] = ACTIONS(2642), - [anon_sym_switch] = ACTIONS(2642), - [anon_sym_case] = ACTIONS(2642), - [anon_sym_default] = ACTIONS(2642), - [anon_sym_while] = ACTIONS(2642), - [anon_sym_do] = ACTIONS(2642), - [anon_sym_for] = ACTIONS(2642), - [anon_sym_return] = ACTIONS(2642), - [anon_sym_break] = ACTIONS(2642), - [anon_sym_continue] = ACTIONS(2642), - [anon_sym_goto] = ACTIONS(2642), - [anon_sym_not] = ACTIONS(2642), - [anon_sym_compl] = ACTIONS(2642), - [anon_sym_DASH_DASH] = ACTIONS(2644), - [anon_sym_PLUS_PLUS] = ACTIONS(2644), - [anon_sym_sizeof] = ACTIONS(2642), - [sym_number_literal] = ACTIONS(2644), - [anon_sym_L_SQUOTE] = ACTIONS(2644), - [anon_sym_u_SQUOTE] = ACTIONS(2644), - [anon_sym_U_SQUOTE] = ACTIONS(2644), - [anon_sym_u8_SQUOTE] = ACTIONS(2644), - [anon_sym_SQUOTE] = ACTIONS(2644), - [anon_sym_L_DQUOTE] = ACTIONS(2644), - [anon_sym_u_DQUOTE] = ACTIONS(2644), - [anon_sym_U_DQUOTE] = ACTIONS(2644), - [anon_sym_u8_DQUOTE] = ACTIONS(2644), - [anon_sym_DQUOTE] = ACTIONS(2644), - [sym_true] = ACTIONS(2642), - [sym_false] = ACTIONS(2642), - [sym_null] = ACTIONS(2642), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2642), - [anon_sym_decltype] = ACTIONS(2642), - [anon_sym_virtual] = ACTIONS(2642), - [anon_sym_explicit] = ACTIONS(2642), - [anon_sym_typename] = ACTIONS(2642), - [anon_sym_template] = ACTIONS(2642), - [anon_sym_operator] = ACTIONS(2642), - [anon_sym_try] = ACTIONS(2642), - [anon_sym_delete] = ACTIONS(2642), - [anon_sym_throw] = ACTIONS(2642), - [anon_sym_namespace] = ACTIONS(2642), - [anon_sym_using] = ACTIONS(2642), - [anon_sym_static_assert] = ACTIONS(2642), - [anon_sym_concept] = ACTIONS(2642), - [anon_sym_co_return] = ACTIONS(2642), - [anon_sym_co_yield] = ACTIONS(2642), - [anon_sym_R_DQUOTE] = ACTIONS(2644), - [anon_sym_LR_DQUOTE] = ACTIONS(2644), - [anon_sym_uR_DQUOTE] = ACTIONS(2644), - [anon_sym_UR_DQUOTE] = ACTIONS(2644), - [anon_sym_u8R_DQUOTE] = ACTIONS(2644), - [anon_sym_co_await] = ACTIONS(2642), - [anon_sym_new] = ACTIONS(2642), - [anon_sym_requires] = ACTIONS(2642), - [sym_this] = ACTIONS(2642), - [sym_nullptr] = ACTIONS(2642), + [sym_identifier] = ACTIONS(2970), + [aux_sym_preproc_include_token1] = ACTIONS(2970), + [aux_sym_preproc_def_token1] = ACTIONS(2970), + [aux_sym_preproc_if_token1] = ACTIONS(2970), + [aux_sym_preproc_if_token2] = ACTIONS(2970), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2970), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2970), + [aux_sym_preproc_else_token1] = ACTIONS(2970), + [aux_sym_preproc_elif_token1] = ACTIONS(2970), + [sym_preproc_directive] = 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_AMP_AMP] = ACTIONS(2972), + [anon_sym_AMP] = ACTIONS(2970), + [anon_sym_SEMI] = ACTIONS(2972), + [anon_sym_typedef] = ACTIONS(2970), + [anon_sym_extern] = ACTIONS(2970), + [anon_sym___attribute__] = ACTIONS(2970), + [anon_sym_COLON_COLON] = ACTIONS(2972), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2972), + [anon_sym___declspec] = ACTIONS(2970), + [anon_sym___based] = ACTIONS(2970), + [anon_sym___cdecl] = ACTIONS(2970), + [anon_sym___clrcall] = ACTIONS(2970), + [anon_sym___stdcall] = ACTIONS(2970), + [anon_sym___fastcall] = ACTIONS(2970), + [anon_sym___thiscall] = ACTIONS(2970), + [anon_sym___vectorcall] = ACTIONS(2970), + [anon_sym_LBRACE] = ACTIONS(2972), + [anon_sym_LBRACK] = ACTIONS(2970), + [anon_sym_static] = ACTIONS(2970), + [anon_sym_register] = ACTIONS(2970), + [anon_sym_inline] = ACTIONS(2970), + [anon_sym_thread_local] = 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_noreturn] = ACTIONS(2970), + [anon_sym_mutable] = ACTIONS(2970), + [anon_sym_constinit] = ACTIONS(2970), + [anon_sym_consteval] = ACTIONS(2970), + [anon_sym_signed] = ACTIONS(2970), + [anon_sym_unsigned] = ACTIONS(2970), + [anon_sym_long] = ACTIONS(2970), + [anon_sym_short] = ACTIONS(2970), + [sym_primitive_type] = ACTIONS(2970), + [anon_sym_enum] = ACTIONS(2970), + [anon_sym_class] = ACTIONS(2970), + [anon_sym_struct] = ACTIONS(2970), + [anon_sym_union] = ACTIONS(2970), + [anon_sym_if] = ACTIONS(2970), + [anon_sym_else] = ACTIONS(3521), + [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_return] = ACTIONS(2970), + [anon_sym_break] = ACTIONS(2970), + [anon_sym_continue] = ACTIONS(2970), + [anon_sym_goto] = ACTIONS(2970), + [anon_sym_not] = ACTIONS(2970), + [anon_sym_compl] = ACTIONS(2970), + [anon_sym_DASH_DASH] = ACTIONS(2972), + [anon_sym_PLUS_PLUS] = ACTIONS(2972), + [anon_sym_sizeof] = ACTIONS(2970), + [anon_sym_offsetof] = ACTIONS(2970), + [anon_sym__Generic] = 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_L_DQUOTE] = ACTIONS(2972), + [anon_sym_u_DQUOTE] = ACTIONS(2972), + [anon_sym_U_DQUOTE] = ACTIONS(2972), + [anon_sym_u8_DQUOTE] = ACTIONS(2972), + [anon_sym_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), + [sym_auto] = ACTIONS(2970), + [anon_sym_decltype] = ACTIONS(2970), + [anon_sym_virtual] = ACTIONS(2970), + [anon_sym_explicit] = ACTIONS(2970), + [anon_sym_typename] = ACTIONS(2970), + [anon_sym_template] = ACTIONS(2970), + [anon_sym_operator] = ACTIONS(2970), + [anon_sym_try] = ACTIONS(2970), + [anon_sym_delete] = ACTIONS(2970), + [anon_sym_throw] = ACTIONS(2970), + [anon_sym_namespace] = ACTIONS(2970), + [anon_sym_using] = ACTIONS(2970), + [anon_sym_static_assert] = ACTIONS(2970), + [anon_sym_concept] = ACTIONS(2970), + [anon_sym_co_return] = ACTIONS(2970), + [anon_sym_co_yield] = ACTIONS(2970), + [anon_sym_R_DQUOTE] = ACTIONS(2972), + [anon_sym_LR_DQUOTE] = ACTIONS(2972), + [anon_sym_uR_DQUOTE] = ACTIONS(2972), + [anon_sym_UR_DQUOTE] = ACTIONS(2972), + [anon_sym_u8R_DQUOTE] = ACTIONS(2972), + [anon_sym_co_await] = ACTIONS(2970), + [anon_sym_new] = ACTIONS(2970), + [anon_sym_requires] = ACTIONS(2970), + [sym_this] = ACTIONS(2970), }, [693] = { - [sym_identifier] = ACTIONS(2462), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2464), - [anon_sym_AMP] = ACTIONS(2462), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_explicit] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_operator] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_namespace] = ACTIONS(2462), - [anon_sym_using] = ACTIONS(2462), - [anon_sym_static_assert] = ACTIONS(2462), - [anon_sym_concept] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_identifier] = ACTIONS(2988), + [aux_sym_preproc_include_token1] = ACTIONS(2988), + [aux_sym_preproc_def_token1] = ACTIONS(2988), + [aux_sym_preproc_if_token1] = ACTIONS(2988), + [aux_sym_preproc_if_token2] = ACTIONS(2988), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2988), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2988), + [aux_sym_preproc_else_token1] = ACTIONS(2988), + [aux_sym_preproc_elif_token1] = ACTIONS(2988), + [sym_preproc_directive] = ACTIONS(2988), + [anon_sym_LPAREN2] = ACTIONS(2990), + [anon_sym_BANG] = ACTIONS(2990), + [anon_sym_TILDE] = ACTIONS(2990), + [anon_sym_DASH] = ACTIONS(2988), + [anon_sym_PLUS] = ACTIONS(2988), + [anon_sym_STAR] = ACTIONS(2990), + [anon_sym_AMP_AMP] = ACTIONS(2990), + [anon_sym_AMP] = ACTIONS(2988), + [anon_sym_SEMI] = ACTIONS(2990), + [anon_sym_typedef] = ACTIONS(2988), + [anon_sym_extern] = ACTIONS(2988), + [anon_sym___attribute__] = ACTIONS(2988), + [anon_sym_COLON_COLON] = ACTIONS(2990), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2990), + [anon_sym___declspec] = ACTIONS(2988), + [anon_sym___based] = ACTIONS(2988), + [anon_sym___cdecl] = ACTIONS(2988), + [anon_sym___clrcall] = ACTIONS(2988), + [anon_sym___stdcall] = ACTIONS(2988), + [anon_sym___fastcall] = ACTIONS(2988), + [anon_sym___thiscall] = ACTIONS(2988), + [anon_sym___vectorcall] = ACTIONS(2988), + [anon_sym_LBRACE] = ACTIONS(2990), + [anon_sym_LBRACK] = ACTIONS(2988), + [anon_sym_static] = ACTIONS(2988), + [anon_sym_register] = ACTIONS(2988), + [anon_sym_inline] = ACTIONS(2988), + [anon_sym_thread_local] = ACTIONS(2988), + [anon_sym_const] = ACTIONS(2988), + [anon_sym_constexpr] = ACTIONS(2988), + [anon_sym_volatile] = ACTIONS(2988), + [anon_sym_restrict] = ACTIONS(2988), + [anon_sym___restrict__] = ACTIONS(2988), + [anon_sym__Atomic] = ACTIONS(2988), + [anon_sym__Noreturn] = ACTIONS(2988), + [anon_sym_noreturn] = ACTIONS(2988), + [anon_sym_mutable] = ACTIONS(2988), + [anon_sym_constinit] = ACTIONS(2988), + [anon_sym_consteval] = ACTIONS(2988), + [anon_sym_signed] = ACTIONS(2988), + [anon_sym_unsigned] = ACTIONS(2988), + [anon_sym_long] = ACTIONS(2988), + [anon_sym_short] = ACTIONS(2988), + [sym_primitive_type] = ACTIONS(2988), + [anon_sym_enum] = ACTIONS(2988), + [anon_sym_class] = ACTIONS(2988), + [anon_sym_struct] = ACTIONS(2988), + [anon_sym_union] = ACTIONS(2988), + [anon_sym_if] = ACTIONS(2988), + [anon_sym_else] = ACTIONS(2988), + [anon_sym_switch] = ACTIONS(2988), + [anon_sym_case] = ACTIONS(2988), + [anon_sym_default] = ACTIONS(2988), + [anon_sym_while] = ACTIONS(2988), + [anon_sym_do] = ACTIONS(2988), + [anon_sym_for] = ACTIONS(2988), + [anon_sym_return] = ACTIONS(2988), + [anon_sym_break] = ACTIONS(2988), + [anon_sym_continue] = ACTIONS(2988), + [anon_sym_goto] = ACTIONS(2988), + [anon_sym_not] = ACTIONS(2988), + [anon_sym_compl] = ACTIONS(2988), + [anon_sym_DASH_DASH] = ACTIONS(2990), + [anon_sym_PLUS_PLUS] = ACTIONS(2990), + [anon_sym_sizeof] = ACTIONS(2988), + [anon_sym_offsetof] = ACTIONS(2988), + [anon_sym__Generic] = ACTIONS(2988), + [anon_sym_asm] = ACTIONS(2988), + [anon_sym___asm__] = ACTIONS(2988), + [sym_number_literal] = ACTIONS(2990), + [anon_sym_L_SQUOTE] = ACTIONS(2990), + [anon_sym_u_SQUOTE] = ACTIONS(2990), + [anon_sym_U_SQUOTE] = ACTIONS(2990), + [anon_sym_u8_SQUOTE] = ACTIONS(2990), + [anon_sym_SQUOTE] = ACTIONS(2990), + [anon_sym_L_DQUOTE] = ACTIONS(2990), + [anon_sym_u_DQUOTE] = ACTIONS(2990), + [anon_sym_U_DQUOTE] = ACTIONS(2990), + [anon_sym_u8_DQUOTE] = ACTIONS(2990), + [anon_sym_DQUOTE] = ACTIONS(2990), + [sym_true] = ACTIONS(2988), + [sym_false] = ACTIONS(2988), + [anon_sym_NULL] = ACTIONS(2988), + [anon_sym_nullptr] = ACTIONS(2988), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2988), + [anon_sym_decltype] = ACTIONS(2988), + [anon_sym_virtual] = ACTIONS(2988), + [anon_sym_explicit] = ACTIONS(2988), + [anon_sym_typename] = ACTIONS(2988), + [anon_sym_template] = ACTIONS(2988), + [anon_sym_operator] = ACTIONS(2988), + [anon_sym_try] = ACTIONS(2988), + [anon_sym_delete] = ACTIONS(2988), + [anon_sym_throw] = ACTIONS(2988), + [anon_sym_namespace] = ACTIONS(2988), + [anon_sym_using] = ACTIONS(2988), + [anon_sym_static_assert] = ACTIONS(2988), + [anon_sym_concept] = ACTIONS(2988), + [anon_sym_co_return] = ACTIONS(2988), + [anon_sym_co_yield] = ACTIONS(2988), + [anon_sym_R_DQUOTE] = ACTIONS(2990), + [anon_sym_LR_DQUOTE] = ACTIONS(2990), + [anon_sym_uR_DQUOTE] = ACTIONS(2990), + [anon_sym_UR_DQUOTE] = ACTIONS(2990), + [anon_sym_u8R_DQUOTE] = ACTIONS(2990), + [anon_sym_co_await] = ACTIONS(2988), + [anon_sym_new] = ACTIONS(2988), + [anon_sym_requires] = ACTIONS(2988), + [sym_this] = ACTIONS(2988), }, [694] = { - [sym_identifier] = ACTIONS(2462), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2464), - [anon_sym_AMP] = ACTIONS(2462), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_explicit] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_operator] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_namespace] = ACTIONS(2462), - [anon_sym_using] = ACTIONS(2462), - [anon_sym_static_assert] = ACTIONS(2462), - [anon_sym_concept] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_identifier] = ACTIONS(2992), + [aux_sym_preproc_include_token1] = ACTIONS(2992), + [aux_sym_preproc_def_token1] = ACTIONS(2992), + [aux_sym_preproc_if_token1] = ACTIONS(2992), + [aux_sym_preproc_if_token2] = ACTIONS(2992), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2992), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2992), + [aux_sym_preproc_else_token1] = ACTIONS(2992), + [aux_sym_preproc_elif_token1] = ACTIONS(2992), + [sym_preproc_directive] = ACTIONS(2992), + [anon_sym_LPAREN2] = ACTIONS(2994), + [anon_sym_BANG] = ACTIONS(2994), + [anon_sym_TILDE] = ACTIONS(2994), + [anon_sym_DASH] = ACTIONS(2992), + [anon_sym_PLUS] = ACTIONS(2992), + [anon_sym_STAR] = ACTIONS(2994), + [anon_sym_AMP_AMP] = ACTIONS(2994), + [anon_sym_AMP] = ACTIONS(2992), + [anon_sym_SEMI] = ACTIONS(2994), + [anon_sym_typedef] = ACTIONS(2992), + [anon_sym_extern] = ACTIONS(2992), + [anon_sym___attribute__] = ACTIONS(2992), + [anon_sym_COLON_COLON] = ACTIONS(2994), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2994), + [anon_sym___declspec] = ACTIONS(2992), + [anon_sym___based] = ACTIONS(2992), + [anon_sym___cdecl] = ACTIONS(2992), + [anon_sym___clrcall] = ACTIONS(2992), + [anon_sym___stdcall] = ACTIONS(2992), + [anon_sym___fastcall] = ACTIONS(2992), + [anon_sym___thiscall] = ACTIONS(2992), + [anon_sym___vectorcall] = ACTIONS(2992), + [anon_sym_LBRACE] = ACTIONS(2994), + [anon_sym_LBRACK] = ACTIONS(2992), + [anon_sym_static] = ACTIONS(2992), + [anon_sym_register] = ACTIONS(2992), + [anon_sym_inline] = ACTIONS(2992), + [anon_sym_thread_local] = ACTIONS(2992), + [anon_sym_const] = ACTIONS(2992), + [anon_sym_constexpr] = ACTIONS(2992), + [anon_sym_volatile] = ACTIONS(2992), + [anon_sym_restrict] = ACTIONS(2992), + [anon_sym___restrict__] = ACTIONS(2992), + [anon_sym__Atomic] = ACTIONS(2992), + [anon_sym__Noreturn] = ACTIONS(2992), + [anon_sym_noreturn] = ACTIONS(2992), + [anon_sym_mutable] = ACTIONS(2992), + [anon_sym_constinit] = ACTIONS(2992), + [anon_sym_consteval] = ACTIONS(2992), + [anon_sym_signed] = ACTIONS(2992), + [anon_sym_unsigned] = ACTIONS(2992), + [anon_sym_long] = ACTIONS(2992), + [anon_sym_short] = ACTIONS(2992), + [sym_primitive_type] = ACTIONS(2992), + [anon_sym_enum] = ACTIONS(2992), + [anon_sym_class] = ACTIONS(2992), + [anon_sym_struct] = ACTIONS(2992), + [anon_sym_union] = ACTIONS(2992), + [anon_sym_if] = ACTIONS(2992), + [anon_sym_else] = ACTIONS(2992), + [anon_sym_switch] = ACTIONS(2992), + [anon_sym_case] = ACTIONS(2992), + [anon_sym_default] = ACTIONS(2992), + [anon_sym_while] = ACTIONS(2992), + [anon_sym_do] = ACTIONS(2992), + [anon_sym_for] = ACTIONS(2992), + [anon_sym_return] = ACTIONS(2992), + [anon_sym_break] = ACTIONS(2992), + [anon_sym_continue] = ACTIONS(2992), + [anon_sym_goto] = ACTIONS(2992), + [anon_sym_not] = ACTIONS(2992), + [anon_sym_compl] = ACTIONS(2992), + [anon_sym_DASH_DASH] = ACTIONS(2994), + [anon_sym_PLUS_PLUS] = ACTIONS(2994), + [anon_sym_sizeof] = ACTIONS(2992), + [anon_sym_offsetof] = ACTIONS(2992), + [anon_sym__Generic] = ACTIONS(2992), + [anon_sym_asm] = ACTIONS(2992), + [anon_sym___asm__] = ACTIONS(2992), + [sym_number_literal] = ACTIONS(2994), + [anon_sym_L_SQUOTE] = ACTIONS(2994), + [anon_sym_u_SQUOTE] = ACTIONS(2994), + [anon_sym_U_SQUOTE] = ACTIONS(2994), + [anon_sym_u8_SQUOTE] = ACTIONS(2994), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_L_DQUOTE] = ACTIONS(2994), + [anon_sym_u_DQUOTE] = ACTIONS(2994), + [anon_sym_U_DQUOTE] = ACTIONS(2994), + [anon_sym_u8_DQUOTE] = ACTIONS(2994), + [anon_sym_DQUOTE] = ACTIONS(2994), + [sym_true] = ACTIONS(2992), + [sym_false] = ACTIONS(2992), + [anon_sym_NULL] = ACTIONS(2992), + [anon_sym_nullptr] = ACTIONS(2992), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2992), + [anon_sym_decltype] = ACTIONS(2992), + [anon_sym_virtual] = ACTIONS(2992), + [anon_sym_explicit] = ACTIONS(2992), + [anon_sym_typename] = ACTIONS(2992), + [anon_sym_template] = ACTIONS(2992), + [anon_sym_operator] = ACTIONS(2992), + [anon_sym_try] = ACTIONS(2992), + [anon_sym_delete] = ACTIONS(2992), + [anon_sym_throw] = ACTIONS(2992), + [anon_sym_namespace] = ACTIONS(2992), + [anon_sym_using] = ACTIONS(2992), + [anon_sym_static_assert] = ACTIONS(2992), + [anon_sym_concept] = ACTIONS(2992), + [anon_sym_co_return] = ACTIONS(2992), + [anon_sym_co_yield] = ACTIONS(2992), + [anon_sym_R_DQUOTE] = ACTIONS(2994), + [anon_sym_LR_DQUOTE] = ACTIONS(2994), + [anon_sym_uR_DQUOTE] = ACTIONS(2994), + [anon_sym_UR_DQUOTE] = ACTIONS(2994), + [anon_sym_u8R_DQUOTE] = ACTIONS(2994), + [anon_sym_co_await] = ACTIONS(2992), + [anon_sym_new] = ACTIONS(2992), + [anon_sym_requires] = ACTIONS(2992), + [sym_this] = ACTIONS(2992), }, [695] = { - [sym_identifier] = ACTIONS(2462), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2464), - [anon_sym_AMP] = ACTIONS(2462), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_explicit] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_operator] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_namespace] = ACTIONS(2462), - [anon_sym_using] = ACTIONS(2462), - [anon_sym_static_assert] = ACTIONS(2462), - [anon_sym_concept] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_identifier] = ACTIONS(2936), + [aux_sym_preproc_include_token1] = ACTIONS(2936), + [aux_sym_preproc_def_token1] = ACTIONS(2936), + [aux_sym_preproc_if_token1] = ACTIONS(2936), + [aux_sym_preproc_if_token2] = ACTIONS(2936), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2936), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2936), + [aux_sym_preproc_else_token1] = ACTIONS(2936), + [aux_sym_preproc_elif_token1] = ACTIONS(2936), + [sym_preproc_directive] = ACTIONS(2936), + [anon_sym_LPAREN2] = ACTIONS(2938), + [anon_sym_BANG] = ACTIONS(2938), + [anon_sym_TILDE] = ACTIONS(2938), + [anon_sym_DASH] = ACTIONS(2936), + [anon_sym_PLUS] = ACTIONS(2936), + [anon_sym_STAR] = ACTIONS(2938), + [anon_sym_AMP_AMP] = ACTIONS(2938), + [anon_sym_AMP] = ACTIONS(2936), + [anon_sym_SEMI] = ACTIONS(2938), + [anon_sym_typedef] = ACTIONS(2936), + [anon_sym_extern] = ACTIONS(2936), + [anon_sym___attribute__] = ACTIONS(2936), + [anon_sym_COLON_COLON] = ACTIONS(2938), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2938), + [anon_sym___declspec] = ACTIONS(2936), + [anon_sym___based] = ACTIONS(2936), + [anon_sym___cdecl] = ACTIONS(2936), + [anon_sym___clrcall] = ACTIONS(2936), + [anon_sym___stdcall] = ACTIONS(2936), + [anon_sym___fastcall] = ACTIONS(2936), + [anon_sym___thiscall] = ACTIONS(2936), + [anon_sym___vectorcall] = ACTIONS(2936), + [anon_sym_LBRACE] = ACTIONS(2938), + [anon_sym_LBRACK] = ACTIONS(2936), + [anon_sym_static] = ACTIONS(2936), + [anon_sym_register] = ACTIONS(2936), + [anon_sym_inline] = ACTIONS(2936), + [anon_sym_thread_local] = ACTIONS(2936), + [anon_sym_const] = ACTIONS(2936), + [anon_sym_constexpr] = ACTIONS(2936), + [anon_sym_volatile] = ACTIONS(2936), + [anon_sym_restrict] = ACTIONS(2936), + [anon_sym___restrict__] = ACTIONS(2936), + [anon_sym__Atomic] = ACTIONS(2936), + [anon_sym__Noreturn] = ACTIONS(2936), + [anon_sym_noreturn] = ACTIONS(2936), + [anon_sym_mutable] = ACTIONS(2936), + [anon_sym_constinit] = ACTIONS(2936), + [anon_sym_consteval] = ACTIONS(2936), + [anon_sym_signed] = ACTIONS(2936), + [anon_sym_unsigned] = ACTIONS(2936), + [anon_sym_long] = ACTIONS(2936), + [anon_sym_short] = ACTIONS(2936), + [sym_primitive_type] = ACTIONS(2936), + [anon_sym_enum] = ACTIONS(2936), + [anon_sym_class] = ACTIONS(2936), + [anon_sym_struct] = ACTIONS(2936), + [anon_sym_union] = ACTIONS(2936), + [anon_sym_if] = ACTIONS(2936), + [anon_sym_else] = ACTIONS(2936), + [anon_sym_switch] = ACTIONS(2936), + [anon_sym_case] = ACTIONS(2936), + [anon_sym_default] = ACTIONS(2936), + [anon_sym_while] = ACTIONS(2936), + [anon_sym_do] = ACTIONS(2936), + [anon_sym_for] = ACTIONS(2936), + [anon_sym_return] = ACTIONS(2936), + [anon_sym_break] = ACTIONS(2936), + [anon_sym_continue] = ACTIONS(2936), + [anon_sym_goto] = ACTIONS(2936), + [anon_sym_not] = ACTIONS(2936), + [anon_sym_compl] = ACTIONS(2936), + [anon_sym_DASH_DASH] = ACTIONS(2938), + [anon_sym_PLUS_PLUS] = ACTIONS(2938), + [anon_sym_sizeof] = ACTIONS(2936), + [anon_sym_offsetof] = ACTIONS(2936), + [anon_sym__Generic] = ACTIONS(2936), + [anon_sym_asm] = ACTIONS(2936), + [anon_sym___asm__] = ACTIONS(2936), + [sym_number_literal] = ACTIONS(2938), + [anon_sym_L_SQUOTE] = ACTIONS(2938), + [anon_sym_u_SQUOTE] = ACTIONS(2938), + [anon_sym_U_SQUOTE] = ACTIONS(2938), + [anon_sym_u8_SQUOTE] = ACTIONS(2938), + [anon_sym_SQUOTE] = ACTIONS(2938), + [anon_sym_L_DQUOTE] = ACTIONS(2938), + [anon_sym_u_DQUOTE] = ACTIONS(2938), + [anon_sym_U_DQUOTE] = ACTIONS(2938), + [anon_sym_u8_DQUOTE] = ACTIONS(2938), + [anon_sym_DQUOTE] = ACTIONS(2938), + [sym_true] = ACTIONS(2936), + [sym_false] = ACTIONS(2936), + [anon_sym_NULL] = ACTIONS(2936), + [anon_sym_nullptr] = ACTIONS(2936), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2936), + [anon_sym_decltype] = ACTIONS(2936), + [anon_sym_virtual] = ACTIONS(2936), + [anon_sym_explicit] = ACTIONS(2936), + [anon_sym_typename] = ACTIONS(2936), + [anon_sym_template] = ACTIONS(2936), + [anon_sym_operator] = ACTIONS(2936), + [anon_sym_try] = ACTIONS(2936), + [anon_sym_delete] = ACTIONS(2936), + [anon_sym_throw] = ACTIONS(2936), + [anon_sym_namespace] = ACTIONS(2936), + [anon_sym_using] = ACTIONS(2936), + [anon_sym_static_assert] = ACTIONS(2936), + [anon_sym_concept] = ACTIONS(2936), + [anon_sym_co_return] = ACTIONS(2936), + [anon_sym_co_yield] = ACTIONS(2936), + [anon_sym_R_DQUOTE] = ACTIONS(2938), + [anon_sym_LR_DQUOTE] = ACTIONS(2938), + [anon_sym_uR_DQUOTE] = ACTIONS(2938), + [anon_sym_UR_DQUOTE] = ACTIONS(2938), + [anon_sym_u8R_DQUOTE] = ACTIONS(2938), + [anon_sym_co_await] = ACTIONS(2936), + [anon_sym_new] = ACTIONS(2936), + [anon_sym_requires] = ACTIONS(2936), + [sym_this] = ACTIONS(2936), }, [696] = { - [sym_identifier] = ACTIONS(2462), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2464), - [anon_sym_AMP] = ACTIONS(2462), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_explicit] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_operator] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_namespace] = ACTIONS(2462), - [anon_sym_using] = ACTIONS(2462), - [anon_sym_static_assert] = ACTIONS(2462), - [anon_sym_concept] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_identifier] = ACTIONS(2996), + [aux_sym_preproc_include_token1] = ACTIONS(2996), + [aux_sym_preproc_def_token1] = ACTIONS(2996), + [aux_sym_preproc_if_token1] = ACTIONS(2996), + [aux_sym_preproc_if_token2] = ACTIONS(2996), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2996), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2996), + [aux_sym_preproc_else_token1] = ACTIONS(2996), + [aux_sym_preproc_elif_token1] = ACTIONS(2996), + [sym_preproc_directive] = ACTIONS(2996), + [anon_sym_LPAREN2] = ACTIONS(2998), + [anon_sym_BANG] = ACTIONS(2998), + [anon_sym_TILDE] = ACTIONS(2998), + [anon_sym_DASH] = ACTIONS(2996), + [anon_sym_PLUS] = ACTIONS(2996), + [anon_sym_STAR] = ACTIONS(2998), + [anon_sym_AMP_AMP] = ACTIONS(2998), + [anon_sym_AMP] = ACTIONS(2996), + [anon_sym_SEMI] = ACTIONS(2998), + [anon_sym_typedef] = ACTIONS(2996), + [anon_sym_extern] = ACTIONS(2996), + [anon_sym___attribute__] = ACTIONS(2996), + [anon_sym_COLON_COLON] = ACTIONS(2998), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2998), + [anon_sym___declspec] = ACTIONS(2996), + [anon_sym___based] = ACTIONS(2996), + [anon_sym___cdecl] = ACTIONS(2996), + [anon_sym___clrcall] = ACTIONS(2996), + [anon_sym___stdcall] = ACTIONS(2996), + [anon_sym___fastcall] = ACTIONS(2996), + [anon_sym___thiscall] = ACTIONS(2996), + [anon_sym___vectorcall] = ACTIONS(2996), + [anon_sym_LBRACE] = ACTIONS(2998), + [anon_sym_LBRACK] = ACTIONS(2996), + [anon_sym_static] = ACTIONS(2996), + [anon_sym_register] = ACTIONS(2996), + [anon_sym_inline] = ACTIONS(2996), + [anon_sym_thread_local] = ACTIONS(2996), + [anon_sym_const] = ACTIONS(2996), + [anon_sym_constexpr] = ACTIONS(2996), + [anon_sym_volatile] = ACTIONS(2996), + [anon_sym_restrict] = ACTIONS(2996), + [anon_sym___restrict__] = ACTIONS(2996), + [anon_sym__Atomic] = ACTIONS(2996), + [anon_sym__Noreturn] = ACTIONS(2996), + [anon_sym_noreturn] = ACTIONS(2996), + [anon_sym_mutable] = ACTIONS(2996), + [anon_sym_constinit] = ACTIONS(2996), + [anon_sym_consteval] = ACTIONS(2996), + [anon_sym_signed] = ACTIONS(2996), + [anon_sym_unsigned] = ACTIONS(2996), + [anon_sym_long] = ACTIONS(2996), + [anon_sym_short] = ACTIONS(2996), + [sym_primitive_type] = ACTIONS(2996), + [anon_sym_enum] = ACTIONS(2996), + [anon_sym_class] = ACTIONS(2996), + [anon_sym_struct] = ACTIONS(2996), + [anon_sym_union] = ACTIONS(2996), + [anon_sym_if] = ACTIONS(2996), + [anon_sym_else] = ACTIONS(2996), + [anon_sym_switch] = ACTIONS(2996), + [anon_sym_case] = ACTIONS(2996), + [anon_sym_default] = ACTIONS(2996), + [anon_sym_while] = ACTIONS(2996), + [anon_sym_do] = ACTIONS(2996), + [anon_sym_for] = ACTIONS(2996), + [anon_sym_return] = ACTIONS(2996), + [anon_sym_break] = ACTIONS(2996), + [anon_sym_continue] = ACTIONS(2996), + [anon_sym_goto] = ACTIONS(2996), + [anon_sym_not] = ACTIONS(2996), + [anon_sym_compl] = ACTIONS(2996), + [anon_sym_DASH_DASH] = ACTIONS(2998), + [anon_sym_PLUS_PLUS] = ACTIONS(2998), + [anon_sym_sizeof] = ACTIONS(2996), + [anon_sym_offsetof] = ACTIONS(2996), + [anon_sym__Generic] = ACTIONS(2996), + [anon_sym_asm] = ACTIONS(2996), + [anon_sym___asm__] = ACTIONS(2996), + [sym_number_literal] = ACTIONS(2998), + [anon_sym_L_SQUOTE] = ACTIONS(2998), + [anon_sym_u_SQUOTE] = ACTIONS(2998), + [anon_sym_U_SQUOTE] = ACTIONS(2998), + [anon_sym_u8_SQUOTE] = ACTIONS(2998), + [anon_sym_SQUOTE] = ACTIONS(2998), + [anon_sym_L_DQUOTE] = ACTIONS(2998), + [anon_sym_u_DQUOTE] = ACTIONS(2998), + [anon_sym_U_DQUOTE] = ACTIONS(2998), + [anon_sym_u8_DQUOTE] = ACTIONS(2998), + [anon_sym_DQUOTE] = ACTIONS(2998), + [sym_true] = ACTIONS(2996), + [sym_false] = ACTIONS(2996), + [anon_sym_NULL] = ACTIONS(2996), + [anon_sym_nullptr] = ACTIONS(2996), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2996), + [anon_sym_decltype] = ACTIONS(2996), + [anon_sym_virtual] = ACTIONS(2996), + [anon_sym_explicit] = ACTIONS(2996), + [anon_sym_typename] = ACTIONS(2996), + [anon_sym_template] = ACTIONS(2996), + [anon_sym_operator] = ACTIONS(2996), + [anon_sym_try] = ACTIONS(2996), + [anon_sym_delete] = ACTIONS(2996), + [anon_sym_throw] = ACTIONS(2996), + [anon_sym_namespace] = ACTIONS(2996), + [anon_sym_using] = ACTIONS(2996), + [anon_sym_static_assert] = ACTIONS(2996), + [anon_sym_concept] = ACTIONS(2996), + [anon_sym_co_return] = ACTIONS(2996), + [anon_sym_co_yield] = ACTIONS(2996), + [anon_sym_R_DQUOTE] = ACTIONS(2998), + [anon_sym_LR_DQUOTE] = ACTIONS(2998), + [anon_sym_uR_DQUOTE] = ACTIONS(2998), + [anon_sym_UR_DQUOTE] = ACTIONS(2998), + [anon_sym_u8R_DQUOTE] = ACTIONS(2998), + [anon_sym_co_await] = ACTIONS(2996), + [anon_sym_new] = ACTIONS(2996), + [anon_sym_requires] = ACTIONS(2996), + [sym_this] = ACTIONS(2996), }, [697] = { - [ts_builtin_sym_end] = ACTIONS(2640), - [sym_identifier] = ACTIONS(2638), - [aux_sym_preproc_include_token1] = ACTIONS(2638), - [aux_sym_preproc_def_token1] = ACTIONS(2638), - [aux_sym_preproc_if_token1] = ACTIONS(2638), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2638), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2638), - [sym_preproc_directive] = ACTIONS(2638), - [anon_sym_LPAREN2] = ACTIONS(2640), - [anon_sym_BANG] = ACTIONS(2640), - [anon_sym_TILDE] = ACTIONS(2640), - [anon_sym_DASH] = ACTIONS(2638), - [anon_sym_PLUS] = ACTIONS(2638), - [anon_sym_STAR] = ACTIONS(2640), - [anon_sym_AMP_AMP] = ACTIONS(2640), - [anon_sym_AMP] = ACTIONS(2638), - [anon_sym_SEMI] = ACTIONS(2640), - [anon_sym_typedef] = ACTIONS(2638), - [anon_sym_extern] = ACTIONS(2638), - [anon_sym___attribute__] = ACTIONS(2638), - [anon_sym_COLON_COLON] = ACTIONS(2640), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2640), - [anon_sym___declspec] = ACTIONS(2638), - [anon_sym___based] = ACTIONS(2638), - [anon_sym___cdecl] = ACTIONS(2638), - [anon_sym___clrcall] = ACTIONS(2638), - [anon_sym___stdcall] = ACTIONS(2638), - [anon_sym___fastcall] = ACTIONS(2638), - [anon_sym___thiscall] = ACTIONS(2638), - [anon_sym___vectorcall] = ACTIONS(2638), - [anon_sym_LBRACE] = ACTIONS(2640), - [anon_sym_LBRACK] = ACTIONS(2638), - [anon_sym_static] = ACTIONS(2638), - [anon_sym_register] = ACTIONS(2638), - [anon_sym_inline] = ACTIONS(2638), - [anon_sym_thread_local] = ACTIONS(2638), - [anon_sym_const] = ACTIONS(2638), - [anon_sym_volatile] = ACTIONS(2638), - [anon_sym_restrict] = ACTIONS(2638), - [anon_sym__Atomic] = ACTIONS(2638), - [anon_sym_mutable] = ACTIONS(2638), - [anon_sym_constexpr] = ACTIONS(2638), - [anon_sym_constinit] = ACTIONS(2638), - [anon_sym_consteval] = ACTIONS(2638), - [anon_sym_signed] = ACTIONS(2638), - [anon_sym_unsigned] = ACTIONS(2638), - [anon_sym_long] = ACTIONS(2638), - [anon_sym_short] = ACTIONS(2638), - [sym_primitive_type] = ACTIONS(2638), - [anon_sym_enum] = ACTIONS(2638), - [anon_sym_class] = ACTIONS(2638), - [anon_sym_struct] = ACTIONS(2638), - [anon_sym_union] = ACTIONS(2638), - [anon_sym_if] = ACTIONS(2638), - [anon_sym_else] = ACTIONS(2638), - [anon_sym_switch] = ACTIONS(2638), - [anon_sym_case] = ACTIONS(2638), - [anon_sym_default] = ACTIONS(2638), - [anon_sym_while] = ACTIONS(2638), - [anon_sym_do] = ACTIONS(2638), - [anon_sym_for] = ACTIONS(2638), - [anon_sym_return] = ACTIONS(2638), - [anon_sym_break] = ACTIONS(2638), - [anon_sym_continue] = ACTIONS(2638), - [anon_sym_goto] = ACTIONS(2638), - [anon_sym_not] = ACTIONS(2638), - [anon_sym_compl] = ACTIONS(2638), - [anon_sym_DASH_DASH] = ACTIONS(2640), - [anon_sym_PLUS_PLUS] = ACTIONS(2640), - [anon_sym_sizeof] = ACTIONS(2638), - [sym_number_literal] = ACTIONS(2640), - [anon_sym_L_SQUOTE] = ACTIONS(2640), - [anon_sym_u_SQUOTE] = ACTIONS(2640), - [anon_sym_U_SQUOTE] = ACTIONS(2640), - [anon_sym_u8_SQUOTE] = ACTIONS(2640), - [anon_sym_SQUOTE] = ACTIONS(2640), - [anon_sym_L_DQUOTE] = ACTIONS(2640), - [anon_sym_u_DQUOTE] = ACTIONS(2640), - [anon_sym_U_DQUOTE] = ACTIONS(2640), - [anon_sym_u8_DQUOTE] = ACTIONS(2640), - [anon_sym_DQUOTE] = ACTIONS(2640), - [sym_true] = ACTIONS(2638), - [sym_false] = ACTIONS(2638), - [sym_null] = ACTIONS(2638), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2638), - [anon_sym_decltype] = ACTIONS(2638), - [anon_sym_virtual] = ACTIONS(2638), - [anon_sym_explicit] = ACTIONS(2638), - [anon_sym_typename] = ACTIONS(2638), - [anon_sym_template] = ACTIONS(2638), - [anon_sym_operator] = ACTIONS(2638), - [anon_sym_try] = ACTIONS(2638), - [anon_sym_delete] = ACTIONS(2638), - [anon_sym_throw] = ACTIONS(2638), - [anon_sym_namespace] = ACTIONS(2638), - [anon_sym_using] = ACTIONS(2638), - [anon_sym_static_assert] = ACTIONS(2638), - [anon_sym_concept] = ACTIONS(2638), - [anon_sym_co_return] = ACTIONS(2638), - [anon_sym_co_yield] = ACTIONS(2638), - [anon_sym_R_DQUOTE] = ACTIONS(2640), - [anon_sym_LR_DQUOTE] = ACTIONS(2640), - [anon_sym_uR_DQUOTE] = ACTIONS(2640), - [anon_sym_UR_DQUOTE] = ACTIONS(2640), - [anon_sym_u8R_DQUOTE] = ACTIONS(2640), - [anon_sym_co_await] = ACTIONS(2638), - [anon_sym_new] = ACTIONS(2638), - [anon_sym_requires] = ACTIONS(2638), - [sym_this] = ACTIONS(2638), - [sym_nullptr] = ACTIONS(2638), + [sym_preproc_def] = STATE(617), + [sym_preproc_function_def] = STATE(617), + [sym_preproc_call] = STATE(617), + [sym_preproc_if_in_field_declaration_list] = STATE(617), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(617), + [sym_type_definition] = STATE(617), + [sym__declaration_modifiers] = STATE(3706), + [sym__declaration_specifiers] = STATE(4831), + [sym_attribute_specifier] = STATE(3706), + [sym_attribute_declaration] = STATE(3706), + [sym_ms_declspec_modifier] = STATE(3706), + [sym_ms_based_modifier] = STATE(7654), + [sym__declarator] = STATE(5881), + [sym_parenthesized_declarator] = STATE(5640), + [sym_attributed_declarator] = STATE(5640), + [sym_pointer_declarator] = STATE(5640), + [sym_function_declarator] = STATE(5531), + [sym_array_declarator] = STATE(5640), + [sym_storage_class_specifier] = STATE(3706), + [sym_type_qualifier] = STATE(3706), + [sym__type_specifier] = STATE(3845), + [sym_sized_type_specifier] = STATE(3918), + [sym_enum_specifier] = STATE(3918), + [sym_struct_specifier] = STATE(3918), + [sym_union_specifier] = STATE(3918), + [sym__field_declaration_list_item] = STATE(617), + [sym_field_declaration] = STATE(617), + [sym_placeholder_type_specifier] = STATE(3918), + [sym_decltype_auto] = STATE(3916), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3918), + [sym_virtual] = STATE(3706), + [sym_explicit_function_specifier] = STATE(2247), + [sym_dependent_type] = STATE(3918), + [sym_template_declaration] = STATE(617), + [sym_operator_cast] = STATE(5897), + [sym_inline_method_definition] = STATE(617), + [sym__constructor_specifiers] = STATE(2247), + [sym_operator_cast_definition] = STATE(617), + [sym_operator_cast_declaration] = STATE(617), + [sym_constructor_or_destructor_definition] = STATE(617), + [sym_constructor_or_destructor_declaration] = STATE(617), + [sym_friend_declaration] = STATE(617), + [sym_access_specifier] = STATE(7346), + [sym_reference_declarator] = STATE(5640), + [sym_structured_binding_declarator] = STATE(5640), + [sym_template_type] = STATE(3680), + [sym_template_function] = STATE(5640), + [sym_using_declaration] = STATE(617), + [sym_alias_declaration] = STATE(617), + [sym_static_assert_declaration] = STATE(617), + [sym_destructor_name] = STATE(5640), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5151), + [sym_qualified_identifier] = STATE(5640), + [sym_qualified_type_identifier] = STATE(3966), + [sym_qualified_operator_cast_identifier] = STATE(5897), + [sym_operator_name] = STATE(5640), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(617), + [aux_sym__declaration_specifiers_repeat1] = STATE(2509), + [aux_sym_sized_type_specifier_repeat1] = STATE(3981), + [aux_sym_operator_cast_definition_repeat1] = STATE(2247), + [sym_identifier] = ACTIONS(2544), + [aux_sym_preproc_def_token1] = ACTIONS(3479), + [aux_sym_preproc_if_token1] = ACTIONS(3481), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3483), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3483), + [sym_preproc_directive] = ACTIONS(3485), + [anon_sym_LPAREN2] = ACTIONS(2560), + [anon_sym_TILDE] = ACTIONS(2562), + [anon_sym_STAR] = ACTIONS(2564), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_typedef] = ACTIONS(3487), + [anon_sym_extern] = ACTIONS(53), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(2570), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1813), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(45), + [anon_sym_RBRACE] = ACTIONS(3523), + [anon_sym_LBRACK] = ACTIONS(2572), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(53), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(2574), + [anon_sym_unsigned] = ACTIONS(2574), + [anon_sym_long] = ACTIONS(2574), + [anon_sym_short] = ACTIONS(2574), + [sym_primitive_type] = ACTIONS(2576), + [anon_sym_enum] = ACTIONS(2578), + [anon_sym_class] = ACTIONS(2580), + [anon_sym_struct] = ACTIONS(2582), + [anon_sym_union] = ACTIONS(2584), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2586), + [anon_sym_decltype] = ACTIONS(2588), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_explicit] = ACTIONS(119), + [anon_sym_typename] = ACTIONS(2590), + [anon_sym_template] = ACTIONS(3491), + [anon_sym_operator] = ACTIONS(125), + [anon_sym_friend] = ACTIONS(3493), + [anon_sym_public] = ACTIONS(2596), + [anon_sym_private] = ACTIONS(2596), + [anon_sym_protected] = ACTIONS(2596), + [anon_sym_using] = ACTIONS(3495), + [anon_sym_static_assert] = ACTIONS(3497), }, [698] = { - [ts_builtin_sym_end] = ACTIONS(2604), - [sym_identifier] = ACTIONS(2602), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2604), - [anon_sym_AMP] = ACTIONS(2602), - [anon_sym_SEMI] = ACTIONS(2604), - [anon_sym_typedef] = ACTIONS(2602), - [anon_sym_extern] = ACTIONS(2602), - [anon_sym___attribute__] = ACTIONS(2602), - [anon_sym_COLON_COLON] = ACTIONS(2604), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2604), - [anon_sym___declspec] = ACTIONS(2602), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2602), - [anon_sym_static] = ACTIONS(2602), - [anon_sym_register] = ACTIONS(2602), - [anon_sym_inline] = ACTIONS(2602), - [anon_sym_thread_local] = ACTIONS(2602), - [anon_sym_const] = ACTIONS(2602), - [anon_sym_volatile] = ACTIONS(2602), - [anon_sym_restrict] = ACTIONS(2602), - [anon_sym__Atomic] = ACTIONS(2602), - [anon_sym_mutable] = ACTIONS(2602), - [anon_sym_constexpr] = ACTIONS(2602), - [anon_sym_constinit] = ACTIONS(2602), - [anon_sym_consteval] = ACTIONS(2602), - [anon_sym_signed] = ACTIONS(2602), - [anon_sym_unsigned] = ACTIONS(2602), - [anon_sym_long] = ACTIONS(2602), - [anon_sym_short] = ACTIONS(2602), - [sym_primitive_type] = ACTIONS(2602), - [anon_sym_enum] = ACTIONS(2602), - [anon_sym_class] = ACTIONS(2602), - [anon_sym_struct] = ACTIONS(2602), - [anon_sym_union] = ACTIONS(2602), - [anon_sym_if] = ACTIONS(2602), - [anon_sym_else] = 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_return] = ACTIONS(2602), - [anon_sym_break] = ACTIONS(2602), - [anon_sym_continue] = ACTIONS(2602), - [anon_sym_goto] = ACTIONS(2602), - [anon_sym_not] = ACTIONS(2602), - [anon_sym_compl] = ACTIONS(2602), - [anon_sym_DASH_DASH] = ACTIONS(2604), - [anon_sym_PLUS_PLUS] = ACTIONS(2604), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2604), - [anon_sym_u_DQUOTE] = ACTIONS(2604), - [anon_sym_U_DQUOTE] = ACTIONS(2604), - [anon_sym_u8_DQUOTE] = ACTIONS(2604), - [anon_sym_DQUOTE] = ACTIONS(2604), - [sym_true] = ACTIONS(2602), - [sym_false] = ACTIONS(2602), - [sym_null] = ACTIONS(2602), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2602), - [anon_sym_decltype] = ACTIONS(2602), - [anon_sym_virtual] = ACTIONS(2602), - [anon_sym_explicit] = ACTIONS(2602), - [anon_sym_typename] = ACTIONS(2602), - [anon_sym_template] = ACTIONS(2602), - [anon_sym_operator] = ACTIONS(2602), - [anon_sym_try] = ACTIONS(2602), - [anon_sym_delete] = ACTIONS(2602), - [anon_sym_throw] = ACTIONS(2602), - [anon_sym_namespace] = ACTIONS(2602), - [anon_sym_using] = ACTIONS(2602), - [anon_sym_static_assert] = ACTIONS(2602), - [anon_sym_concept] = ACTIONS(2602), - [anon_sym_co_return] = ACTIONS(2602), - [anon_sym_co_yield] = ACTIONS(2602), - [anon_sym_R_DQUOTE] = ACTIONS(2604), - [anon_sym_LR_DQUOTE] = ACTIONS(2604), - [anon_sym_uR_DQUOTE] = ACTIONS(2604), - [anon_sym_UR_DQUOTE] = ACTIONS(2604), - [anon_sym_u8R_DQUOTE] = ACTIONS(2604), - [anon_sym_co_await] = ACTIONS(2602), - [anon_sym_new] = ACTIONS(2602), - [anon_sym_requires] = ACTIONS(2602), - [sym_this] = ACTIONS(2602), - [sym_nullptr] = ACTIONS(2602), + [sym__expression] = STATE(3999), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_initializer_list] = STATE(4001), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1935), + [anon_sym_COMMA] = ACTIONS(1935), + [anon_sym_RPAREN] = ACTIONS(1935), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_SLASH] = ACTIONS(1943), + [anon_sym_PERCENT] = ACTIONS(1935), + [anon_sym_PIPE_PIPE] = ACTIONS(1935), + [anon_sym_AMP_AMP] = ACTIONS(1935), + [anon_sym_PIPE] = ACTIONS(1943), + [anon_sym_CARET] = ACTIONS(1935), + [anon_sym_AMP] = ACTIONS(1323), + [anon_sym_EQ_EQ] = ACTIONS(1935), + [anon_sym_BANG_EQ] = ACTIONS(1935), + [anon_sym_GT] = ACTIONS(1943), + [anon_sym_GT_EQ] = ACTIONS(1935), + [anon_sym_LT_EQ] = ACTIONS(1943), + [anon_sym_LT] = ACTIONS(1943), + [anon_sym_LT_LT] = ACTIONS(1935), + [anon_sym_GT_GT] = ACTIONS(1935), + [anon_sym_SEMI] = ACTIONS(1935), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(1899), + [anon_sym_RBRACE] = ACTIONS(1935), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_QMARK] = ACTIONS(1935), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_LT_EQ_GT] = ACTIONS(1935), + [anon_sym_or] = ACTIONS(1943), + [anon_sym_and] = ACTIONS(1943), + [anon_sym_bitor] = ACTIONS(1943), + [anon_sym_xor] = ACTIONS(1943), + [anon_sym_bitand] = ACTIONS(1943), + [anon_sym_not_eq] = ACTIONS(1943), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [anon_sym_DOT] = ACTIONS(1943), + [anon_sym_DASH_GT] = ACTIONS(1935), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [699] = { - [sym_identifier] = ACTIONS(2462), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2464), - [anon_sym_AMP] = ACTIONS(2462), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_explicit] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_operator] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_namespace] = ACTIONS(2462), - [anon_sym_using] = ACTIONS(2462), - [anon_sym_static_assert] = ACTIONS(2462), - [anon_sym_concept] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token2] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [aux_sym_preproc_else_token1] = ACTIONS(3048), + [aux_sym_preproc_elif_token1] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, [700] = { - [sym_identifier] = ACTIONS(2462), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2464), - [anon_sym_AMP] = ACTIONS(2462), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_explicit] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_operator] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_namespace] = ACTIONS(2462), - [anon_sym_using] = ACTIONS(2462), - [anon_sym_static_assert] = ACTIONS(2462), - [anon_sym_concept] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_identifier] = ACTIONS(3000), + [aux_sym_preproc_include_token1] = ACTIONS(3000), + [aux_sym_preproc_def_token1] = ACTIONS(3000), + [aux_sym_preproc_if_token1] = ACTIONS(3000), + [aux_sym_preproc_if_token2] = ACTIONS(3000), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3000), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3000), + [aux_sym_preproc_else_token1] = ACTIONS(3000), + [aux_sym_preproc_elif_token1] = ACTIONS(3000), + [sym_preproc_directive] = ACTIONS(3000), + [anon_sym_LPAREN2] = ACTIONS(3002), + [anon_sym_BANG] = ACTIONS(3002), + [anon_sym_TILDE] = ACTIONS(3002), + [anon_sym_DASH] = ACTIONS(3000), + [anon_sym_PLUS] = ACTIONS(3000), + [anon_sym_STAR] = ACTIONS(3002), + [anon_sym_AMP_AMP] = ACTIONS(3002), + [anon_sym_AMP] = ACTIONS(3000), + [anon_sym_SEMI] = ACTIONS(3002), + [anon_sym_typedef] = ACTIONS(3000), + [anon_sym_extern] = ACTIONS(3000), + [anon_sym___attribute__] = ACTIONS(3000), + [anon_sym_COLON_COLON] = ACTIONS(3002), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3002), + [anon_sym___declspec] = ACTIONS(3000), + [anon_sym___based] = ACTIONS(3000), + [anon_sym___cdecl] = ACTIONS(3000), + [anon_sym___clrcall] = ACTIONS(3000), + [anon_sym___stdcall] = ACTIONS(3000), + [anon_sym___fastcall] = ACTIONS(3000), + [anon_sym___thiscall] = ACTIONS(3000), + [anon_sym___vectorcall] = ACTIONS(3000), + [anon_sym_LBRACE] = ACTIONS(3002), + [anon_sym_LBRACK] = ACTIONS(3000), + [anon_sym_static] = ACTIONS(3000), + [anon_sym_register] = ACTIONS(3000), + [anon_sym_inline] = ACTIONS(3000), + [anon_sym_thread_local] = ACTIONS(3000), + [anon_sym_const] = ACTIONS(3000), + [anon_sym_constexpr] = ACTIONS(3000), + [anon_sym_volatile] = ACTIONS(3000), + [anon_sym_restrict] = ACTIONS(3000), + [anon_sym___restrict__] = ACTIONS(3000), + [anon_sym__Atomic] = ACTIONS(3000), + [anon_sym__Noreturn] = ACTIONS(3000), + [anon_sym_noreturn] = ACTIONS(3000), + [anon_sym_mutable] = ACTIONS(3000), + [anon_sym_constinit] = ACTIONS(3000), + [anon_sym_consteval] = ACTIONS(3000), + [anon_sym_signed] = ACTIONS(3000), + [anon_sym_unsigned] = ACTIONS(3000), + [anon_sym_long] = ACTIONS(3000), + [anon_sym_short] = ACTIONS(3000), + [sym_primitive_type] = ACTIONS(3000), + [anon_sym_enum] = ACTIONS(3000), + [anon_sym_class] = ACTIONS(3000), + [anon_sym_struct] = ACTIONS(3000), + [anon_sym_union] = ACTIONS(3000), + [anon_sym_if] = ACTIONS(3000), + [anon_sym_else] = ACTIONS(3000), + [anon_sym_switch] = ACTIONS(3000), + [anon_sym_case] = ACTIONS(3000), + [anon_sym_default] = ACTIONS(3000), + [anon_sym_while] = ACTIONS(3000), + [anon_sym_do] = ACTIONS(3000), + [anon_sym_for] = ACTIONS(3000), + [anon_sym_return] = ACTIONS(3000), + [anon_sym_break] = ACTIONS(3000), + [anon_sym_continue] = ACTIONS(3000), + [anon_sym_goto] = ACTIONS(3000), + [anon_sym_not] = ACTIONS(3000), + [anon_sym_compl] = ACTIONS(3000), + [anon_sym_DASH_DASH] = ACTIONS(3002), + [anon_sym_PLUS_PLUS] = ACTIONS(3002), + [anon_sym_sizeof] = ACTIONS(3000), + [anon_sym_offsetof] = ACTIONS(3000), + [anon_sym__Generic] = ACTIONS(3000), + [anon_sym_asm] = ACTIONS(3000), + [anon_sym___asm__] = ACTIONS(3000), + [sym_number_literal] = ACTIONS(3002), + [anon_sym_L_SQUOTE] = ACTIONS(3002), + [anon_sym_u_SQUOTE] = ACTIONS(3002), + [anon_sym_U_SQUOTE] = ACTIONS(3002), + [anon_sym_u8_SQUOTE] = ACTIONS(3002), + [anon_sym_SQUOTE] = ACTIONS(3002), + [anon_sym_L_DQUOTE] = ACTIONS(3002), + [anon_sym_u_DQUOTE] = ACTIONS(3002), + [anon_sym_U_DQUOTE] = ACTIONS(3002), + [anon_sym_u8_DQUOTE] = ACTIONS(3002), + [anon_sym_DQUOTE] = ACTIONS(3002), + [sym_true] = ACTIONS(3000), + [sym_false] = ACTIONS(3000), + [anon_sym_NULL] = ACTIONS(3000), + [anon_sym_nullptr] = ACTIONS(3000), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3000), + [anon_sym_decltype] = ACTIONS(3000), + [anon_sym_virtual] = ACTIONS(3000), + [anon_sym_explicit] = ACTIONS(3000), + [anon_sym_typename] = ACTIONS(3000), + [anon_sym_template] = ACTIONS(3000), + [anon_sym_operator] = ACTIONS(3000), + [anon_sym_try] = ACTIONS(3000), + [anon_sym_delete] = ACTIONS(3000), + [anon_sym_throw] = ACTIONS(3000), + [anon_sym_namespace] = ACTIONS(3000), + [anon_sym_using] = ACTIONS(3000), + [anon_sym_static_assert] = ACTIONS(3000), + [anon_sym_concept] = ACTIONS(3000), + [anon_sym_co_return] = ACTIONS(3000), + [anon_sym_co_yield] = ACTIONS(3000), + [anon_sym_R_DQUOTE] = ACTIONS(3002), + [anon_sym_LR_DQUOTE] = ACTIONS(3002), + [anon_sym_uR_DQUOTE] = ACTIONS(3002), + [anon_sym_UR_DQUOTE] = ACTIONS(3002), + [anon_sym_u8R_DQUOTE] = ACTIONS(3002), + [anon_sym_co_await] = ACTIONS(3000), + [anon_sym_new] = ACTIONS(3000), + [anon_sym_requires] = ACTIONS(3000), + [sym_this] = ACTIONS(3000), }, [701] = { - [sym_identifier] = ACTIONS(2462), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2464), - [anon_sym_AMP] = ACTIONS(2462), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_explicit] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_operator] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_namespace] = ACTIONS(2462), - [anon_sym_using] = ACTIONS(2462), - [anon_sym_static_assert] = ACTIONS(2462), - [anon_sym_concept] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_identifier] = ACTIONS(2940), + [aux_sym_preproc_include_token1] = ACTIONS(2940), + [aux_sym_preproc_def_token1] = ACTIONS(2940), + [aux_sym_preproc_if_token1] = ACTIONS(2940), + [aux_sym_preproc_if_token2] = ACTIONS(2940), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2940), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2940), + [aux_sym_preproc_else_token1] = ACTIONS(2940), + [aux_sym_preproc_elif_token1] = ACTIONS(2940), + [sym_preproc_directive] = ACTIONS(2940), + [anon_sym_LPAREN2] = ACTIONS(2942), + [anon_sym_BANG] = ACTIONS(2942), + [anon_sym_TILDE] = ACTIONS(2942), + [anon_sym_DASH] = ACTIONS(2940), + [anon_sym_PLUS] = ACTIONS(2940), + [anon_sym_STAR] = ACTIONS(2942), + [anon_sym_AMP_AMP] = ACTIONS(2942), + [anon_sym_AMP] = ACTIONS(2940), + [anon_sym_SEMI] = ACTIONS(2942), + [anon_sym_typedef] = ACTIONS(2940), + [anon_sym_extern] = ACTIONS(2940), + [anon_sym___attribute__] = ACTIONS(2940), + [anon_sym_COLON_COLON] = ACTIONS(2942), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2942), + [anon_sym___declspec] = ACTIONS(2940), + [anon_sym___based] = ACTIONS(2940), + [anon_sym___cdecl] = ACTIONS(2940), + [anon_sym___clrcall] = ACTIONS(2940), + [anon_sym___stdcall] = ACTIONS(2940), + [anon_sym___fastcall] = ACTIONS(2940), + [anon_sym___thiscall] = ACTIONS(2940), + [anon_sym___vectorcall] = ACTIONS(2940), + [anon_sym_LBRACE] = ACTIONS(2942), + [anon_sym_LBRACK] = ACTIONS(2940), + [anon_sym_static] = ACTIONS(2940), + [anon_sym_register] = ACTIONS(2940), + [anon_sym_inline] = ACTIONS(2940), + [anon_sym_thread_local] = ACTIONS(2940), + [anon_sym_const] = ACTIONS(2940), + [anon_sym_constexpr] = ACTIONS(2940), + [anon_sym_volatile] = ACTIONS(2940), + [anon_sym_restrict] = ACTIONS(2940), + [anon_sym___restrict__] = ACTIONS(2940), + [anon_sym__Atomic] = ACTIONS(2940), + [anon_sym__Noreturn] = ACTIONS(2940), + [anon_sym_noreturn] = ACTIONS(2940), + [anon_sym_mutable] = ACTIONS(2940), + [anon_sym_constinit] = ACTIONS(2940), + [anon_sym_consteval] = ACTIONS(2940), + [anon_sym_signed] = ACTIONS(2940), + [anon_sym_unsigned] = ACTIONS(2940), + [anon_sym_long] = ACTIONS(2940), + [anon_sym_short] = ACTIONS(2940), + [sym_primitive_type] = ACTIONS(2940), + [anon_sym_enum] = ACTIONS(2940), + [anon_sym_class] = ACTIONS(2940), + [anon_sym_struct] = ACTIONS(2940), + [anon_sym_union] = ACTIONS(2940), + [anon_sym_if] = ACTIONS(2940), + [anon_sym_else] = ACTIONS(2940), + [anon_sym_switch] = ACTIONS(2940), + [anon_sym_case] = ACTIONS(2940), + [anon_sym_default] = ACTIONS(2940), + [anon_sym_while] = ACTIONS(2940), + [anon_sym_do] = ACTIONS(2940), + [anon_sym_for] = ACTIONS(2940), + [anon_sym_return] = ACTIONS(2940), + [anon_sym_break] = ACTIONS(2940), + [anon_sym_continue] = ACTIONS(2940), + [anon_sym_goto] = ACTIONS(2940), + [anon_sym_not] = ACTIONS(2940), + [anon_sym_compl] = ACTIONS(2940), + [anon_sym_DASH_DASH] = ACTIONS(2942), + [anon_sym_PLUS_PLUS] = ACTIONS(2942), + [anon_sym_sizeof] = ACTIONS(2940), + [anon_sym_offsetof] = ACTIONS(2940), + [anon_sym__Generic] = ACTIONS(2940), + [anon_sym_asm] = ACTIONS(2940), + [anon_sym___asm__] = ACTIONS(2940), + [sym_number_literal] = ACTIONS(2942), + [anon_sym_L_SQUOTE] = ACTIONS(2942), + [anon_sym_u_SQUOTE] = ACTIONS(2942), + [anon_sym_U_SQUOTE] = ACTIONS(2942), + [anon_sym_u8_SQUOTE] = ACTIONS(2942), + [anon_sym_SQUOTE] = ACTIONS(2942), + [anon_sym_L_DQUOTE] = ACTIONS(2942), + [anon_sym_u_DQUOTE] = ACTIONS(2942), + [anon_sym_U_DQUOTE] = ACTIONS(2942), + [anon_sym_u8_DQUOTE] = ACTIONS(2942), + [anon_sym_DQUOTE] = ACTIONS(2942), + [sym_true] = ACTIONS(2940), + [sym_false] = ACTIONS(2940), + [anon_sym_NULL] = ACTIONS(2940), + [anon_sym_nullptr] = ACTIONS(2940), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2940), + [anon_sym_decltype] = ACTIONS(2940), + [anon_sym_virtual] = ACTIONS(2940), + [anon_sym_explicit] = ACTIONS(2940), + [anon_sym_typename] = ACTIONS(2940), + [anon_sym_template] = ACTIONS(2940), + [anon_sym_operator] = ACTIONS(2940), + [anon_sym_try] = ACTIONS(2940), + [anon_sym_delete] = ACTIONS(2940), + [anon_sym_throw] = ACTIONS(2940), + [anon_sym_namespace] = ACTIONS(2940), + [anon_sym_using] = ACTIONS(2940), + [anon_sym_static_assert] = ACTIONS(2940), + [anon_sym_concept] = ACTIONS(2940), + [anon_sym_co_return] = ACTIONS(2940), + [anon_sym_co_yield] = ACTIONS(2940), + [anon_sym_R_DQUOTE] = ACTIONS(2942), + [anon_sym_LR_DQUOTE] = ACTIONS(2942), + [anon_sym_uR_DQUOTE] = ACTIONS(2942), + [anon_sym_UR_DQUOTE] = ACTIONS(2942), + [anon_sym_u8R_DQUOTE] = ACTIONS(2942), + [anon_sym_co_await] = ACTIONS(2940), + [anon_sym_new] = ACTIONS(2940), + [anon_sym_requires] = ACTIONS(2940), + [sym_this] = ACTIONS(2940), }, [702] = { - [sym_identifier] = ACTIONS(2462), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2464), - [anon_sym_AMP] = ACTIONS(2462), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_explicit] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_operator] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_namespace] = ACTIONS(2462), - [anon_sym_using] = ACTIONS(2462), - [anon_sym_static_assert] = ACTIONS(2462), - [anon_sym_concept] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_identifier] = ACTIONS(3024), + [aux_sym_preproc_include_token1] = ACTIONS(3024), + [aux_sym_preproc_def_token1] = ACTIONS(3024), + [aux_sym_preproc_if_token1] = ACTIONS(3024), + [aux_sym_preproc_if_token2] = ACTIONS(3024), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3024), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3024), + [aux_sym_preproc_else_token1] = ACTIONS(3024), + [aux_sym_preproc_elif_token1] = ACTIONS(3024), + [sym_preproc_directive] = ACTIONS(3024), + [anon_sym_LPAREN2] = ACTIONS(3026), + [anon_sym_BANG] = ACTIONS(3026), + [anon_sym_TILDE] = ACTIONS(3026), + [anon_sym_DASH] = ACTIONS(3024), + [anon_sym_PLUS] = ACTIONS(3024), + [anon_sym_STAR] = ACTIONS(3026), + [anon_sym_AMP_AMP] = ACTIONS(3026), + [anon_sym_AMP] = ACTIONS(3024), + [anon_sym_SEMI] = ACTIONS(3026), + [anon_sym_typedef] = ACTIONS(3024), + [anon_sym_extern] = ACTIONS(3024), + [anon_sym___attribute__] = ACTIONS(3024), + [anon_sym_COLON_COLON] = ACTIONS(3026), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3026), + [anon_sym___declspec] = ACTIONS(3024), + [anon_sym___based] = ACTIONS(3024), + [anon_sym___cdecl] = ACTIONS(3024), + [anon_sym___clrcall] = ACTIONS(3024), + [anon_sym___stdcall] = ACTIONS(3024), + [anon_sym___fastcall] = ACTIONS(3024), + [anon_sym___thiscall] = ACTIONS(3024), + [anon_sym___vectorcall] = ACTIONS(3024), + [anon_sym_LBRACE] = ACTIONS(3026), + [anon_sym_LBRACK] = ACTIONS(3024), + [anon_sym_static] = ACTIONS(3024), + [anon_sym_register] = ACTIONS(3024), + [anon_sym_inline] = ACTIONS(3024), + [anon_sym_thread_local] = ACTIONS(3024), + [anon_sym_const] = ACTIONS(3024), + [anon_sym_constexpr] = ACTIONS(3024), + [anon_sym_volatile] = ACTIONS(3024), + [anon_sym_restrict] = ACTIONS(3024), + [anon_sym___restrict__] = ACTIONS(3024), + [anon_sym__Atomic] = ACTIONS(3024), + [anon_sym__Noreturn] = ACTIONS(3024), + [anon_sym_noreturn] = ACTIONS(3024), + [anon_sym_mutable] = ACTIONS(3024), + [anon_sym_constinit] = ACTIONS(3024), + [anon_sym_consteval] = ACTIONS(3024), + [anon_sym_signed] = ACTIONS(3024), + [anon_sym_unsigned] = ACTIONS(3024), + [anon_sym_long] = ACTIONS(3024), + [anon_sym_short] = ACTIONS(3024), + [sym_primitive_type] = ACTIONS(3024), + [anon_sym_enum] = ACTIONS(3024), + [anon_sym_class] = ACTIONS(3024), + [anon_sym_struct] = ACTIONS(3024), + [anon_sym_union] = ACTIONS(3024), + [anon_sym_if] = ACTIONS(3024), + [anon_sym_else] = ACTIONS(3024), + [anon_sym_switch] = ACTIONS(3024), + [anon_sym_case] = ACTIONS(3024), + [anon_sym_default] = ACTIONS(3024), + [anon_sym_while] = ACTIONS(3024), + [anon_sym_do] = ACTIONS(3024), + [anon_sym_for] = ACTIONS(3024), + [anon_sym_return] = ACTIONS(3024), + [anon_sym_break] = ACTIONS(3024), + [anon_sym_continue] = ACTIONS(3024), + [anon_sym_goto] = ACTIONS(3024), + [anon_sym_not] = ACTIONS(3024), + [anon_sym_compl] = ACTIONS(3024), + [anon_sym_DASH_DASH] = ACTIONS(3026), + [anon_sym_PLUS_PLUS] = ACTIONS(3026), + [anon_sym_sizeof] = ACTIONS(3024), + [anon_sym_offsetof] = ACTIONS(3024), + [anon_sym__Generic] = ACTIONS(3024), + [anon_sym_asm] = ACTIONS(3024), + [anon_sym___asm__] = ACTIONS(3024), + [sym_number_literal] = ACTIONS(3026), + [anon_sym_L_SQUOTE] = ACTIONS(3026), + [anon_sym_u_SQUOTE] = ACTIONS(3026), + [anon_sym_U_SQUOTE] = ACTIONS(3026), + [anon_sym_u8_SQUOTE] = ACTIONS(3026), + [anon_sym_SQUOTE] = ACTIONS(3026), + [anon_sym_L_DQUOTE] = ACTIONS(3026), + [anon_sym_u_DQUOTE] = ACTIONS(3026), + [anon_sym_U_DQUOTE] = ACTIONS(3026), + [anon_sym_u8_DQUOTE] = ACTIONS(3026), + [anon_sym_DQUOTE] = ACTIONS(3026), + [sym_true] = ACTIONS(3024), + [sym_false] = ACTIONS(3024), + [anon_sym_NULL] = ACTIONS(3024), + [anon_sym_nullptr] = ACTIONS(3024), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3024), + [anon_sym_decltype] = ACTIONS(3024), + [anon_sym_virtual] = ACTIONS(3024), + [anon_sym_explicit] = ACTIONS(3024), + [anon_sym_typename] = ACTIONS(3024), + [anon_sym_template] = ACTIONS(3024), + [anon_sym_operator] = ACTIONS(3024), + [anon_sym_try] = ACTIONS(3024), + [anon_sym_delete] = ACTIONS(3024), + [anon_sym_throw] = ACTIONS(3024), + [anon_sym_namespace] = ACTIONS(3024), + [anon_sym_using] = ACTIONS(3024), + [anon_sym_static_assert] = ACTIONS(3024), + [anon_sym_concept] = ACTIONS(3024), + [anon_sym_co_return] = ACTIONS(3024), + [anon_sym_co_yield] = ACTIONS(3024), + [anon_sym_R_DQUOTE] = ACTIONS(3026), + [anon_sym_LR_DQUOTE] = ACTIONS(3026), + [anon_sym_uR_DQUOTE] = ACTIONS(3026), + [anon_sym_UR_DQUOTE] = ACTIONS(3026), + [anon_sym_u8R_DQUOTE] = ACTIONS(3026), + [anon_sym_co_await] = ACTIONS(3024), + [anon_sym_new] = ACTIONS(3024), + [anon_sym_requires] = ACTIONS(3024), + [sym_this] = ACTIONS(3024), }, [703] = { - [sym_identifier] = ACTIONS(2462), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2464), - [anon_sym_AMP] = ACTIONS(2462), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_explicit] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_operator] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_namespace] = ACTIONS(2462), - [anon_sym_using] = ACTIONS(2462), - [anon_sym_static_assert] = ACTIONS(2462), - [anon_sym_concept] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_identifier] = ACTIONS(3004), + [aux_sym_preproc_include_token1] = ACTIONS(3004), + [aux_sym_preproc_def_token1] = ACTIONS(3004), + [aux_sym_preproc_if_token1] = ACTIONS(3004), + [aux_sym_preproc_if_token2] = ACTIONS(3004), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3004), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3004), + [aux_sym_preproc_else_token1] = ACTIONS(3004), + [aux_sym_preproc_elif_token1] = ACTIONS(3004), + [sym_preproc_directive] = ACTIONS(3004), + [anon_sym_LPAREN2] = ACTIONS(3006), + [anon_sym_BANG] = ACTIONS(3006), + [anon_sym_TILDE] = ACTIONS(3006), + [anon_sym_DASH] = ACTIONS(3004), + [anon_sym_PLUS] = ACTIONS(3004), + [anon_sym_STAR] = ACTIONS(3006), + [anon_sym_AMP_AMP] = ACTIONS(3006), + [anon_sym_AMP] = ACTIONS(3004), + [anon_sym_SEMI] = ACTIONS(3006), + [anon_sym_typedef] = ACTIONS(3004), + [anon_sym_extern] = ACTIONS(3004), + [anon_sym___attribute__] = ACTIONS(3004), + [anon_sym_COLON_COLON] = ACTIONS(3006), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3006), + [anon_sym___declspec] = ACTIONS(3004), + [anon_sym___based] = ACTIONS(3004), + [anon_sym___cdecl] = ACTIONS(3004), + [anon_sym___clrcall] = ACTIONS(3004), + [anon_sym___stdcall] = ACTIONS(3004), + [anon_sym___fastcall] = ACTIONS(3004), + [anon_sym___thiscall] = ACTIONS(3004), + [anon_sym___vectorcall] = ACTIONS(3004), + [anon_sym_LBRACE] = ACTIONS(3006), + [anon_sym_LBRACK] = ACTIONS(3004), + [anon_sym_static] = ACTIONS(3004), + [anon_sym_register] = ACTIONS(3004), + [anon_sym_inline] = ACTIONS(3004), + [anon_sym_thread_local] = ACTIONS(3004), + [anon_sym_const] = ACTIONS(3004), + [anon_sym_constexpr] = ACTIONS(3004), + [anon_sym_volatile] = ACTIONS(3004), + [anon_sym_restrict] = ACTIONS(3004), + [anon_sym___restrict__] = ACTIONS(3004), + [anon_sym__Atomic] = ACTIONS(3004), + [anon_sym__Noreturn] = ACTIONS(3004), + [anon_sym_noreturn] = ACTIONS(3004), + [anon_sym_mutable] = ACTIONS(3004), + [anon_sym_constinit] = ACTIONS(3004), + [anon_sym_consteval] = ACTIONS(3004), + [anon_sym_signed] = ACTIONS(3004), + [anon_sym_unsigned] = ACTIONS(3004), + [anon_sym_long] = ACTIONS(3004), + [anon_sym_short] = ACTIONS(3004), + [sym_primitive_type] = ACTIONS(3004), + [anon_sym_enum] = ACTIONS(3004), + [anon_sym_class] = ACTIONS(3004), + [anon_sym_struct] = ACTIONS(3004), + [anon_sym_union] = ACTIONS(3004), + [anon_sym_if] = ACTIONS(3004), + [anon_sym_else] = ACTIONS(3004), + [anon_sym_switch] = ACTIONS(3004), + [anon_sym_case] = ACTIONS(3004), + [anon_sym_default] = ACTIONS(3004), + [anon_sym_while] = ACTIONS(3004), + [anon_sym_do] = ACTIONS(3004), + [anon_sym_for] = ACTIONS(3004), + [anon_sym_return] = ACTIONS(3004), + [anon_sym_break] = ACTIONS(3004), + [anon_sym_continue] = ACTIONS(3004), + [anon_sym_goto] = ACTIONS(3004), + [anon_sym_not] = ACTIONS(3004), + [anon_sym_compl] = ACTIONS(3004), + [anon_sym_DASH_DASH] = ACTIONS(3006), + [anon_sym_PLUS_PLUS] = ACTIONS(3006), + [anon_sym_sizeof] = ACTIONS(3004), + [anon_sym_offsetof] = ACTIONS(3004), + [anon_sym__Generic] = ACTIONS(3004), + [anon_sym_asm] = ACTIONS(3004), + [anon_sym___asm__] = ACTIONS(3004), + [sym_number_literal] = ACTIONS(3006), + [anon_sym_L_SQUOTE] = ACTIONS(3006), + [anon_sym_u_SQUOTE] = ACTIONS(3006), + [anon_sym_U_SQUOTE] = ACTIONS(3006), + [anon_sym_u8_SQUOTE] = ACTIONS(3006), + [anon_sym_SQUOTE] = ACTIONS(3006), + [anon_sym_L_DQUOTE] = ACTIONS(3006), + [anon_sym_u_DQUOTE] = ACTIONS(3006), + [anon_sym_U_DQUOTE] = ACTIONS(3006), + [anon_sym_u8_DQUOTE] = ACTIONS(3006), + [anon_sym_DQUOTE] = ACTIONS(3006), + [sym_true] = ACTIONS(3004), + [sym_false] = ACTIONS(3004), + [anon_sym_NULL] = ACTIONS(3004), + [anon_sym_nullptr] = ACTIONS(3004), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3004), + [anon_sym_decltype] = ACTIONS(3004), + [anon_sym_virtual] = ACTIONS(3004), + [anon_sym_explicit] = ACTIONS(3004), + [anon_sym_typename] = ACTIONS(3004), + [anon_sym_template] = ACTIONS(3004), + [anon_sym_operator] = ACTIONS(3004), + [anon_sym_try] = ACTIONS(3004), + [anon_sym_delete] = ACTIONS(3004), + [anon_sym_throw] = ACTIONS(3004), + [anon_sym_namespace] = ACTIONS(3004), + [anon_sym_using] = ACTIONS(3004), + [anon_sym_static_assert] = ACTIONS(3004), + [anon_sym_concept] = ACTIONS(3004), + [anon_sym_co_return] = ACTIONS(3004), + [anon_sym_co_yield] = ACTIONS(3004), + [anon_sym_R_DQUOTE] = ACTIONS(3006), + [anon_sym_LR_DQUOTE] = ACTIONS(3006), + [anon_sym_uR_DQUOTE] = ACTIONS(3006), + [anon_sym_UR_DQUOTE] = ACTIONS(3006), + [anon_sym_u8R_DQUOTE] = ACTIONS(3006), + [anon_sym_co_await] = ACTIONS(3004), + [anon_sym_new] = ACTIONS(3004), + [anon_sym_requires] = ACTIONS(3004), + [sym_this] = ACTIONS(3004), }, [704] = { - [sym_identifier] = ACTIONS(2462), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2464), - [anon_sym_AMP] = ACTIONS(2462), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_explicit] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_operator] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_namespace] = ACTIONS(2462), - [anon_sym_using] = ACTIONS(2462), - [anon_sym_static_assert] = ACTIONS(2462), - [anon_sym_concept] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token2] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [aux_sym_preproc_else_token1] = ACTIONS(3048), + [aux_sym_preproc_elif_token1] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, [705] = { - [sym_identifier] = ACTIONS(2462), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2464), - [anon_sym_AMP] = ACTIONS(2462), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_explicit] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_operator] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_namespace] = ACTIONS(2462), - [anon_sym_using] = ACTIONS(2462), - [anon_sym_static_assert] = ACTIONS(2462), - [anon_sym_concept] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_identifier] = ACTIONS(3008), + [aux_sym_preproc_include_token1] = ACTIONS(3008), + [aux_sym_preproc_def_token1] = ACTIONS(3008), + [aux_sym_preproc_if_token1] = ACTIONS(3008), + [aux_sym_preproc_if_token2] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [aux_sym_preproc_else_token1] = ACTIONS(3008), + [aux_sym_preproc_elif_token1] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3008), + [anon_sym_LPAREN2] = ACTIONS(3010), + [anon_sym_BANG] = ACTIONS(3010), + [anon_sym_TILDE] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3008), + [anon_sym_PLUS] = ACTIONS(3008), + [anon_sym_STAR] = ACTIONS(3010), + [anon_sym_AMP_AMP] = ACTIONS(3010), + [anon_sym_AMP] = ACTIONS(3008), + [anon_sym_SEMI] = ACTIONS(3010), + [anon_sym_typedef] = ACTIONS(3008), + [anon_sym_extern] = ACTIONS(3008), + [anon_sym___attribute__] = ACTIONS(3008), + [anon_sym_COLON_COLON] = ACTIONS(3010), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3010), + [anon_sym___declspec] = ACTIONS(3008), + [anon_sym___based] = ACTIONS(3008), + [anon_sym___cdecl] = ACTIONS(3008), + [anon_sym___clrcall] = ACTIONS(3008), + [anon_sym___stdcall] = ACTIONS(3008), + [anon_sym___fastcall] = ACTIONS(3008), + [anon_sym___thiscall] = ACTIONS(3008), + [anon_sym___vectorcall] = ACTIONS(3008), + [anon_sym_LBRACE] = ACTIONS(3010), + [anon_sym_LBRACK] = ACTIONS(3008), + [anon_sym_static] = ACTIONS(3008), + [anon_sym_register] = ACTIONS(3008), + [anon_sym_inline] = ACTIONS(3008), + [anon_sym_thread_local] = ACTIONS(3008), + [anon_sym_const] = ACTIONS(3008), + [anon_sym_constexpr] = ACTIONS(3008), + [anon_sym_volatile] = ACTIONS(3008), + [anon_sym_restrict] = ACTIONS(3008), + [anon_sym___restrict__] = ACTIONS(3008), + [anon_sym__Atomic] = ACTIONS(3008), + [anon_sym__Noreturn] = ACTIONS(3008), + [anon_sym_noreturn] = ACTIONS(3008), + [anon_sym_mutable] = ACTIONS(3008), + [anon_sym_constinit] = ACTIONS(3008), + [anon_sym_consteval] = ACTIONS(3008), + [anon_sym_signed] = ACTIONS(3008), + [anon_sym_unsigned] = ACTIONS(3008), + [anon_sym_long] = ACTIONS(3008), + [anon_sym_short] = ACTIONS(3008), + [sym_primitive_type] = ACTIONS(3008), + [anon_sym_enum] = ACTIONS(3008), + [anon_sym_class] = ACTIONS(3008), + [anon_sym_struct] = ACTIONS(3008), + [anon_sym_union] = ACTIONS(3008), + [anon_sym_if] = ACTIONS(3008), + [anon_sym_else] = ACTIONS(3008), + [anon_sym_switch] = ACTIONS(3008), + [anon_sym_case] = ACTIONS(3008), + [anon_sym_default] = ACTIONS(3008), + [anon_sym_while] = ACTIONS(3008), + [anon_sym_do] = ACTIONS(3008), + [anon_sym_for] = ACTIONS(3008), + [anon_sym_return] = ACTIONS(3008), + [anon_sym_break] = ACTIONS(3008), + [anon_sym_continue] = ACTIONS(3008), + [anon_sym_goto] = ACTIONS(3008), + [anon_sym_not] = ACTIONS(3008), + [anon_sym_compl] = ACTIONS(3008), + [anon_sym_DASH_DASH] = ACTIONS(3010), + [anon_sym_PLUS_PLUS] = ACTIONS(3010), + [anon_sym_sizeof] = ACTIONS(3008), + [anon_sym_offsetof] = ACTIONS(3008), + [anon_sym__Generic] = ACTIONS(3008), + [anon_sym_asm] = ACTIONS(3008), + [anon_sym___asm__] = ACTIONS(3008), + [sym_number_literal] = ACTIONS(3010), + [anon_sym_L_SQUOTE] = ACTIONS(3010), + [anon_sym_u_SQUOTE] = ACTIONS(3010), + [anon_sym_U_SQUOTE] = ACTIONS(3010), + [anon_sym_u8_SQUOTE] = ACTIONS(3010), + [anon_sym_SQUOTE] = ACTIONS(3010), + [anon_sym_L_DQUOTE] = ACTIONS(3010), + [anon_sym_u_DQUOTE] = ACTIONS(3010), + [anon_sym_U_DQUOTE] = ACTIONS(3010), + [anon_sym_u8_DQUOTE] = ACTIONS(3010), + [anon_sym_DQUOTE] = ACTIONS(3010), + [sym_true] = ACTIONS(3008), + [sym_false] = ACTIONS(3008), + [anon_sym_NULL] = ACTIONS(3008), + [anon_sym_nullptr] = ACTIONS(3008), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3008), + [anon_sym_decltype] = ACTIONS(3008), + [anon_sym_virtual] = ACTIONS(3008), + [anon_sym_explicit] = ACTIONS(3008), + [anon_sym_typename] = ACTIONS(3008), + [anon_sym_template] = ACTIONS(3008), + [anon_sym_operator] = ACTIONS(3008), + [anon_sym_try] = ACTIONS(3008), + [anon_sym_delete] = ACTIONS(3008), + [anon_sym_throw] = ACTIONS(3008), + [anon_sym_namespace] = ACTIONS(3008), + [anon_sym_using] = ACTIONS(3008), + [anon_sym_static_assert] = ACTIONS(3008), + [anon_sym_concept] = ACTIONS(3008), + [anon_sym_co_return] = ACTIONS(3008), + [anon_sym_co_yield] = ACTIONS(3008), + [anon_sym_R_DQUOTE] = ACTIONS(3010), + [anon_sym_LR_DQUOTE] = ACTIONS(3010), + [anon_sym_uR_DQUOTE] = ACTIONS(3010), + [anon_sym_UR_DQUOTE] = ACTIONS(3010), + [anon_sym_u8R_DQUOTE] = ACTIONS(3010), + [anon_sym_co_await] = ACTIONS(3008), + [anon_sym_new] = ACTIONS(3008), + [anon_sym_requires] = ACTIONS(3008), + [sym_this] = ACTIONS(3008), }, [706] = { - [sym_identifier] = ACTIONS(2462), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2464), - [anon_sym_AMP] = ACTIONS(2462), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_explicit] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_operator] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_namespace] = ACTIONS(2462), - [anon_sym_using] = ACTIONS(2462), - [anon_sym_static_assert] = ACTIONS(2462), - [anon_sym_concept] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_identifier] = ACTIONS(3012), + [aux_sym_preproc_include_token1] = ACTIONS(3012), + [aux_sym_preproc_def_token1] = ACTIONS(3012), + [aux_sym_preproc_if_token1] = ACTIONS(3012), + [aux_sym_preproc_if_token2] = ACTIONS(3012), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3012), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3012), + [aux_sym_preproc_else_token1] = ACTIONS(3012), + [aux_sym_preproc_elif_token1] = ACTIONS(3012), + [sym_preproc_directive] = ACTIONS(3012), + [anon_sym_LPAREN2] = ACTIONS(3014), + [anon_sym_BANG] = ACTIONS(3014), + [anon_sym_TILDE] = ACTIONS(3014), + [anon_sym_DASH] = ACTIONS(3012), + [anon_sym_PLUS] = ACTIONS(3012), + [anon_sym_STAR] = ACTIONS(3014), + [anon_sym_AMP_AMP] = ACTIONS(3014), + [anon_sym_AMP] = ACTIONS(3012), + [anon_sym_SEMI] = ACTIONS(3014), + [anon_sym_typedef] = ACTIONS(3012), + [anon_sym_extern] = ACTIONS(3012), + [anon_sym___attribute__] = ACTIONS(3012), + [anon_sym_COLON_COLON] = ACTIONS(3014), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3014), + [anon_sym___declspec] = ACTIONS(3012), + [anon_sym___based] = ACTIONS(3012), + [anon_sym___cdecl] = ACTIONS(3012), + [anon_sym___clrcall] = ACTIONS(3012), + [anon_sym___stdcall] = ACTIONS(3012), + [anon_sym___fastcall] = ACTIONS(3012), + [anon_sym___thiscall] = ACTIONS(3012), + [anon_sym___vectorcall] = ACTIONS(3012), + [anon_sym_LBRACE] = ACTIONS(3014), + [anon_sym_LBRACK] = ACTIONS(3012), + [anon_sym_static] = ACTIONS(3012), + [anon_sym_register] = ACTIONS(3012), + [anon_sym_inline] = ACTIONS(3012), + [anon_sym_thread_local] = ACTIONS(3012), + [anon_sym_const] = ACTIONS(3012), + [anon_sym_constexpr] = ACTIONS(3012), + [anon_sym_volatile] = ACTIONS(3012), + [anon_sym_restrict] = ACTIONS(3012), + [anon_sym___restrict__] = ACTIONS(3012), + [anon_sym__Atomic] = ACTIONS(3012), + [anon_sym__Noreturn] = ACTIONS(3012), + [anon_sym_noreturn] = ACTIONS(3012), + [anon_sym_mutable] = ACTIONS(3012), + [anon_sym_constinit] = ACTIONS(3012), + [anon_sym_consteval] = ACTIONS(3012), + [anon_sym_signed] = ACTIONS(3012), + [anon_sym_unsigned] = ACTIONS(3012), + [anon_sym_long] = ACTIONS(3012), + [anon_sym_short] = ACTIONS(3012), + [sym_primitive_type] = ACTIONS(3012), + [anon_sym_enum] = ACTIONS(3012), + [anon_sym_class] = ACTIONS(3012), + [anon_sym_struct] = ACTIONS(3012), + [anon_sym_union] = ACTIONS(3012), + [anon_sym_if] = ACTIONS(3012), + [anon_sym_else] = ACTIONS(3012), + [anon_sym_switch] = ACTIONS(3012), + [anon_sym_case] = ACTIONS(3012), + [anon_sym_default] = ACTIONS(3012), + [anon_sym_while] = ACTIONS(3012), + [anon_sym_do] = ACTIONS(3012), + [anon_sym_for] = ACTIONS(3012), + [anon_sym_return] = ACTIONS(3012), + [anon_sym_break] = ACTIONS(3012), + [anon_sym_continue] = ACTIONS(3012), + [anon_sym_goto] = ACTIONS(3012), + [anon_sym_not] = ACTIONS(3012), + [anon_sym_compl] = ACTIONS(3012), + [anon_sym_DASH_DASH] = ACTIONS(3014), + [anon_sym_PLUS_PLUS] = ACTIONS(3014), + [anon_sym_sizeof] = ACTIONS(3012), + [anon_sym_offsetof] = ACTIONS(3012), + [anon_sym__Generic] = ACTIONS(3012), + [anon_sym_asm] = ACTIONS(3012), + [anon_sym___asm__] = ACTIONS(3012), + [sym_number_literal] = ACTIONS(3014), + [anon_sym_L_SQUOTE] = ACTIONS(3014), + [anon_sym_u_SQUOTE] = ACTIONS(3014), + [anon_sym_U_SQUOTE] = ACTIONS(3014), + [anon_sym_u8_SQUOTE] = ACTIONS(3014), + [anon_sym_SQUOTE] = ACTIONS(3014), + [anon_sym_L_DQUOTE] = ACTIONS(3014), + [anon_sym_u_DQUOTE] = ACTIONS(3014), + [anon_sym_U_DQUOTE] = ACTIONS(3014), + [anon_sym_u8_DQUOTE] = ACTIONS(3014), + [anon_sym_DQUOTE] = ACTIONS(3014), + [sym_true] = ACTIONS(3012), + [sym_false] = ACTIONS(3012), + [anon_sym_NULL] = ACTIONS(3012), + [anon_sym_nullptr] = ACTIONS(3012), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3012), + [anon_sym_decltype] = ACTIONS(3012), + [anon_sym_virtual] = ACTIONS(3012), + [anon_sym_explicit] = ACTIONS(3012), + [anon_sym_typename] = ACTIONS(3012), + [anon_sym_template] = ACTIONS(3012), + [anon_sym_operator] = ACTIONS(3012), + [anon_sym_try] = ACTIONS(3012), + [anon_sym_delete] = ACTIONS(3012), + [anon_sym_throw] = ACTIONS(3012), + [anon_sym_namespace] = ACTIONS(3012), + [anon_sym_using] = ACTIONS(3012), + [anon_sym_static_assert] = ACTIONS(3012), + [anon_sym_concept] = ACTIONS(3012), + [anon_sym_co_return] = ACTIONS(3012), + [anon_sym_co_yield] = ACTIONS(3012), + [anon_sym_R_DQUOTE] = ACTIONS(3014), + [anon_sym_LR_DQUOTE] = ACTIONS(3014), + [anon_sym_uR_DQUOTE] = ACTIONS(3014), + [anon_sym_UR_DQUOTE] = ACTIONS(3014), + [anon_sym_u8R_DQUOTE] = ACTIONS(3014), + [anon_sym_co_await] = ACTIONS(3012), + [anon_sym_new] = ACTIONS(3012), + [anon_sym_requires] = ACTIONS(3012), + [sym_this] = ACTIONS(3012), }, [707] = { - [ts_builtin_sym_end] = ACTIONS(2464), - [sym_identifier] = ACTIONS(2462), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2464), - [anon_sym_AMP] = ACTIONS(2462), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_explicit] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_operator] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_namespace] = ACTIONS(2462), - [anon_sym_using] = ACTIONS(2462), - [anon_sym_static_assert] = ACTIONS(2462), - [anon_sym_concept] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_identifier] = ACTIONS(3097), + [aux_sym_preproc_include_token1] = ACTIONS(3097), + [aux_sym_preproc_def_token1] = ACTIONS(3097), + [aux_sym_preproc_if_token1] = ACTIONS(3097), + [aux_sym_preproc_if_token2] = ACTIONS(3097), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3097), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3097), + [aux_sym_preproc_else_token1] = ACTIONS(3097), + [aux_sym_preproc_elif_token1] = ACTIONS(3097), + [sym_preproc_directive] = ACTIONS(3097), + [anon_sym_LPAREN2] = ACTIONS(3099), + [anon_sym_BANG] = ACTIONS(3099), + [anon_sym_TILDE] = ACTIONS(3099), + [anon_sym_DASH] = ACTIONS(3097), + [anon_sym_PLUS] = ACTIONS(3097), + [anon_sym_STAR] = ACTIONS(3099), + [anon_sym_AMP_AMP] = ACTIONS(3099), + [anon_sym_AMP] = ACTIONS(3097), + [anon_sym_SEMI] = ACTIONS(3099), + [anon_sym_typedef] = ACTIONS(3097), + [anon_sym_extern] = ACTIONS(3097), + [anon_sym___attribute__] = ACTIONS(3097), + [anon_sym_COLON_COLON] = ACTIONS(3099), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3099), + [anon_sym___declspec] = ACTIONS(3097), + [anon_sym___based] = ACTIONS(3097), + [anon_sym___cdecl] = ACTIONS(3097), + [anon_sym___clrcall] = ACTIONS(3097), + [anon_sym___stdcall] = ACTIONS(3097), + [anon_sym___fastcall] = ACTIONS(3097), + [anon_sym___thiscall] = ACTIONS(3097), + [anon_sym___vectorcall] = ACTIONS(3097), + [anon_sym_LBRACE] = ACTIONS(3099), + [anon_sym_LBRACK] = ACTIONS(3097), + [anon_sym_static] = ACTIONS(3097), + [anon_sym_register] = ACTIONS(3097), + [anon_sym_inline] = ACTIONS(3097), + [anon_sym_thread_local] = ACTIONS(3097), + [anon_sym_const] = ACTIONS(3097), + [anon_sym_constexpr] = ACTIONS(3097), + [anon_sym_volatile] = ACTIONS(3097), + [anon_sym_restrict] = ACTIONS(3097), + [anon_sym___restrict__] = ACTIONS(3097), + [anon_sym__Atomic] = ACTIONS(3097), + [anon_sym__Noreturn] = ACTIONS(3097), + [anon_sym_noreturn] = ACTIONS(3097), + [anon_sym_mutable] = ACTIONS(3097), + [anon_sym_constinit] = ACTIONS(3097), + [anon_sym_consteval] = ACTIONS(3097), + [anon_sym_signed] = ACTIONS(3097), + [anon_sym_unsigned] = ACTIONS(3097), + [anon_sym_long] = ACTIONS(3097), + [anon_sym_short] = ACTIONS(3097), + [sym_primitive_type] = ACTIONS(3097), + [anon_sym_enum] = ACTIONS(3097), + [anon_sym_class] = ACTIONS(3097), + [anon_sym_struct] = ACTIONS(3097), + [anon_sym_union] = ACTIONS(3097), + [anon_sym_if] = ACTIONS(3097), + [anon_sym_else] = ACTIONS(3097), + [anon_sym_switch] = ACTIONS(3097), + [anon_sym_case] = ACTIONS(3097), + [anon_sym_default] = ACTIONS(3097), + [anon_sym_while] = ACTIONS(3097), + [anon_sym_do] = ACTIONS(3097), + [anon_sym_for] = ACTIONS(3097), + [anon_sym_return] = ACTIONS(3097), + [anon_sym_break] = ACTIONS(3097), + [anon_sym_continue] = ACTIONS(3097), + [anon_sym_goto] = ACTIONS(3097), + [anon_sym_not] = ACTIONS(3097), + [anon_sym_compl] = ACTIONS(3097), + [anon_sym_DASH_DASH] = ACTIONS(3099), + [anon_sym_PLUS_PLUS] = ACTIONS(3099), + [anon_sym_sizeof] = ACTIONS(3097), + [anon_sym_offsetof] = ACTIONS(3097), + [anon_sym__Generic] = ACTIONS(3097), + [anon_sym_asm] = ACTIONS(3097), + [anon_sym___asm__] = ACTIONS(3097), + [sym_number_literal] = ACTIONS(3099), + [anon_sym_L_SQUOTE] = ACTIONS(3099), + [anon_sym_u_SQUOTE] = ACTIONS(3099), + [anon_sym_U_SQUOTE] = ACTIONS(3099), + [anon_sym_u8_SQUOTE] = ACTIONS(3099), + [anon_sym_SQUOTE] = ACTIONS(3099), + [anon_sym_L_DQUOTE] = ACTIONS(3099), + [anon_sym_u_DQUOTE] = ACTIONS(3099), + [anon_sym_U_DQUOTE] = ACTIONS(3099), + [anon_sym_u8_DQUOTE] = ACTIONS(3099), + [anon_sym_DQUOTE] = ACTIONS(3099), + [sym_true] = ACTIONS(3097), + [sym_false] = ACTIONS(3097), + [anon_sym_NULL] = ACTIONS(3097), + [anon_sym_nullptr] = ACTIONS(3097), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3097), + [anon_sym_decltype] = ACTIONS(3097), + [anon_sym_virtual] = ACTIONS(3097), + [anon_sym_explicit] = ACTIONS(3097), + [anon_sym_typename] = ACTIONS(3097), + [anon_sym_template] = ACTIONS(3097), + [anon_sym_operator] = ACTIONS(3097), + [anon_sym_try] = ACTIONS(3097), + [anon_sym_delete] = ACTIONS(3097), + [anon_sym_throw] = ACTIONS(3097), + [anon_sym_namespace] = ACTIONS(3097), + [anon_sym_using] = ACTIONS(3097), + [anon_sym_static_assert] = ACTIONS(3097), + [anon_sym_concept] = ACTIONS(3097), + [anon_sym_co_return] = ACTIONS(3097), + [anon_sym_co_yield] = ACTIONS(3097), + [anon_sym_R_DQUOTE] = ACTIONS(3099), + [anon_sym_LR_DQUOTE] = ACTIONS(3099), + [anon_sym_uR_DQUOTE] = ACTIONS(3099), + [anon_sym_UR_DQUOTE] = ACTIONS(3099), + [anon_sym_u8R_DQUOTE] = ACTIONS(3099), + [anon_sym_co_await] = ACTIONS(3097), + [anon_sym_new] = ACTIONS(3097), + [anon_sym_requires] = ACTIONS(3097), + [sym_this] = ACTIONS(3097), }, [708] = { - [ts_builtin_sym_end] = ACTIONS(2464), - [sym_identifier] = ACTIONS(2462), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2464), - [anon_sym_AMP] = ACTIONS(2462), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_explicit] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_operator] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_namespace] = ACTIONS(2462), - [anon_sym_using] = ACTIONS(2462), - [anon_sym_static_assert] = ACTIONS(2462), - [anon_sym_concept] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_identifier] = ACTIONS(3016), + [aux_sym_preproc_include_token1] = ACTIONS(3016), + [aux_sym_preproc_def_token1] = ACTIONS(3016), + [aux_sym_preproc_if_token1] = ACTIONS(3016), + [aux_sym_preproc_if_token2] = ACTIONS(3016), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3016), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3016), + [aux_sym_preproc_else_token1] = ACTIONS(3016), + [aux_sym_preproc_elif_token1] = ACTIONS(3016), + [sym_preproc_directive] = ACTIONS(3016), + [anon_sym_LPAREN2] = ACTIONS(3018), + [anon_sym_BANG] = ACTIONS(3018), + [anon_sym_TILDE] = ACTIONS(3018), + [anon_sym_DASH] = ACTIONS(3016), + [anon_sym_PLUS] = ACTIONS(3016), + [anon_sym_STAR] = ACTIONS(3018), + [anon_sym_AMP_AMP] = ACTIONS(3018), + [anon_sym_AMP] = ACTIONS(3016), + [anon_sym_SEMI] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3016), + [anon_sym_extern] = ACTIONS(3016), + [anon_sym___attribute__] = ACTIONS(3016), + [anon_sym_COLON_COLON] = ACTIONS(3018), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3018), + [anon_sym___declspec] = ACTIONS(3016), + [anon_sym___based] = ACTIONS(3016), + [anon_sym___cdecl] = ACTIONS(3016), + [anon_sym___clrcall] = ACTIONS(3016), + [anon_sym___stdcall] = ACTIONS(3016), + [anon_sym___fastcall] = ACTIONS(3016), + [anon_sym___thiscall] = ACTIONS(3016), + [anon_sym___vectorcall] = ACTIONS(3016), + [anon_sym_LBRACE] = ACTIONS(3018), + [anon_sym_LBRACK] = ACTIONS(3016), + [anon_sym_static] = ACTIONS(3016), + [anon_sym_register] = ACTIONS(3016), + [anon_sym_inline] = ACTIONS(3016), + [anon_sym_thread_local] = ACTIONS(3016), + [anon_sym_const] = ACTIONS(3016), + [anon_sym_constexpr] = ACTIONS(3016), + [anon_sym_volatile] = ACTIONS(3016), + [anon_sym_restrict] = ACTIONS(3016), + [anon_sym___restrict__] = ACTIONS(3016), + [anon_sym__Atomic] = ACTIONS(3016), + [anon_sym__Noreturn] = ACTIONS(3016), + [anon_sym_noreturn] = ACTIONS(3016), + [anon_sym_mutable] = ACTIONS(3016), + [anon_sym_constinit] = ACTIONS(3016), + [anon_sym_consteval] = ACTIONS(3016), + [anon_sym_signed] = ACTIONS(3016), + [anon_sym_unsigned] = ACTIONS(3016), + [anon_sym_long] = ACTIONS(3016), + [anon_sym_short] = ACTIONS(3016), + [sym_primitive_type] = ACTIONS(3016), + [anon_sym_enum] = ACTIONS(3016), + [anon_sym_class] = ACTIONS(3016), + [anon_sym_struct] = ACTIONS(3016), + [anon_sym_union] = ACTIONS(3016), + [anon_sym_if] = ACTIONS(3016), + [anon_sym_else] = ACTIONS(3016), + [anon_sym_switch] = ACTIONS(3016), + [anon_sym_case] = ACTIONS(3016), + [anon_sym_default] = ACTIONS(3016), + [anon_sym_while] = ACTIONS(3016), + [anon_sym_do] = ACTIONS(3016), + [anon_sym_for] = ACTIONS(3016), + [anon_sym_return] = ACTIONS(3016), + [anon_sym_break] = ACTIONS(3016), + [anon_sym_continue] = ACTIONS(3016), + [anon_sym_goto] = ACTIONS(3016), + [anon_sym_not] = ACTIONS(3016), + [anon_sym_compl] = ACTIONS(3016), + [anon_sym_DASH_DASH] = ACTIONS(3018), + [anon_sym_PLUS_PLUS] = ACTIONS(3018), + [anon_sym_sizeof] = ACTIONS(3016), + [anon_sym_offsetof] = ACTIONS(3016), + [anon_sym__Generic] = ACTIONS(3016), + [anon_sym_asm] = ACTIONS(3016), + [anon_sym___asm__] = ACTIONS(3016), + [sym_number_literal] = ACTIONS(3018), + [anon_sym_L_SQUOTE] = ACTIONS(3018), + [anon_sym_u_SQUOTE] = ACTIONS(3018), + [anon_sym_U_SQUOTE] = ACTIONS(3018), + [anon_sym_u8_SQUOTE] = ACTIONS(3018), + [anon_sym_SQUOTE] = ACTIONS(3018), + [anon_sym_L_DQUOTE] = ACTIONS(3018), + [anon_sym_u_DQUOTE] = ACTIONS(3018), + [anon_sym_U_DQUOTE] = ACTIONS(3018), + [anon_sym_u8_DQUOTE] = ACTIONS(3018), + [anon_sym_DQUOTE] = ACTIONS(3018), + [sym_true] = ACTIONS(3016), + [sym_false] = ACTIONS(3016), + [anon_sym_NULL] = ACTIONS(3016), + [anon_sym_nullptr] = ACTIONS(3016), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3016), + [anon_sym_decltype] = ACTIONS(3016), + [anon_sym_virtual] = ACTIONS(3016), + [anon_sym_explicit] = ACTIONS(3016), + [anon_sym_typename] = ACTIONS(3016), + [anon_sym_template] = ACTIONS(3016), + [anon_sym_operator] = ACTIONS(3016), + [anon_sym_try] = ACTIONS(3016), + [anon_sym_delete] = ACTIONS(3016), + [anon_sym_throw] = ACTIONS(3016), + [anon_sym_namespace] = ACTIONS(3016), + [anon_sym_using] = ACTIONS(3016), + [anon_sym_static_assert] = ACTIONS(3016), + [anon_sym_concept] = ACTIONS(3016), + [anon_sym_co_return] = ACTIONS(3016), + [anon_sym_co_yield] = ACTIONS(3016), + [anon_sym_R_DQUOTE] = ACTIONS(3018), + [anon_sym_LR_DQUOTE] = ACTIONS(3018), + [anon_sym_uR_DQUOTE] = ACTIONS(3018), + [anon_sym_UR_DQUOTE] = ACTIONS(3018), + [anon_sym_u8R_DQUOTE] = ACTIONS(3018), + [anon_sym_co_await] = ACTIONS(3016), + [anon_sym_new] = ACTIONS(3016), + [anon_sym_requires] = ACTIONS(3016), + [sym_this] = ACTIONS(3016), }, [709] = { - [sym_identifier] = ACTIONS(2462), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2464), - [anon_sym_AMP] = ACTIONS(2462), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_explicit] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_operator] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_namespace] = ACTIONS(2462), - [anon_sym_using] = ACTIONS(2462), - [anon_sym_static_assert] = ACTIONS(2462), - [anon_sym_concept] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_identifier] = ACTIONS(3024), + [aux_sym_preproc_include_token1] = ACTIONS(3024), + [aux_sym_preproc_def_token1] = ACTIONS(3024), + [aux_sym_preproc_if_token1] = ACTIONS(3024), + [aux_sym_preproc_if_token2] = ACTIONS(3024), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3024), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3024), + [aux_sym_preproc_else_token1] = ACTIONS(3024), + [aux_sym_preproc_elif_token1] = ACTIONS(3024), + [sym_preproc_directive] = ACTIONS(3024), + [anon_sym_LPAREN2] = ACTIONS(3026), + [anon_sym_BANG] = ACTIONS(3026), + [anon_sym_TILDE] = ACTIONS(3026), + [anon_sym_DASH] = ACTIONS(3024), + [anon_sym_PLUS] = ACTIONS(3024), + [anon_sym_STAR] = ACTIONS(3026), + [anon_sym_AMP_AMP] = ACTIONS(3026), + [anon_sym_AMP] = ACTIONS(3024), + [anon_sym_SEMI] = ACTIONS(3026), + [anon_sym_typedef] = ACTIONS(3024), + [anon_sym_extern] = ACTIONS(3024), + [anon_sym___attribute__] = ACTIONS(3024), + [anon_sym_COLON_COLON] = ACTIONS(3026), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3026), + [anon_sym___declspec] = ACTIONS(3024), + [anon_sym___based] = ACTIONS(3024), + [anon_sym___cdecl] = ACTIONS(3024), + [anon_sym___clrcall] = ACTIONS(3024), + [anon_sym___stdcall] = ACTIONS(3024), + [anon_sym___fastcall] = ACTIONS(3024), + [anon_sym___thiscall] = ACTIONS(3024), + [anon_sym___vectorcall] = ACTIONS(3024), + [anon_sym_LBRACE] = ACTIONS(3026), + [anon_sym_LBRACK] = ACTIONS(3024), + [anon_sym_static] = ACTIONS(3024), + [anon_sym_register] = ACTIONS(3024), + [anon_sym_inline] = ACTIONS(3024), + [anon_sym_thread_local] = ACTIONS(3024), + [anon_sym_const] = ACTIONS(3024), + [anon_sym_constexpr] = ACTIONS(3024), + [anon_sym_volatile] = ACTIONS(3024), + [anon_sym_restrict] = ACTIONS(3024), + [anon_sym___restrict__] = ACTIONS(3024), + [anon_sym__Atomic] = ACTIONS(3024), + [anon_sym__Noreturn] = ACTIONS(3024), + [anon_sym_noreturn] = ACTIONS(3024), + [anon_sym_mutable] = ACTIONS(3024), + [anon_sym_constinit] = ACTIONS(3024), + [anon_sym_consteval] = ACTIONS(3024), + [anon_sym_signed] = ACTIONS(3024), + [anon_sym_unsigned] = ACTIONS(3024), + [anon_sym_long] = ACTIONS(3024), + [anon_sym_short] = ACTIONS(3024), + [sym_primitive_type] = ACTIONS(3024), + [anon_sym_enum] = ACTIONS(3024), + [anon_sym_class] = ACTIONS(3024), + [anon_sym_struct] = ACTIONS(3024), + [anon_sym_union] = ACTIONS(3024), + [anon_sym_if] = ACTIONS(3024), + [anon_sym_else] = ACTIONS(3024), + [anon_sym_switch] = ACTIONS(3024), + [anon_sym_case] = ACTIONS(3024), + [anon_sym_default] = ACTIONS(3024), + [anon_sym_while] = ACTIONS(3024), + [anon_sym_do] = ACTIONS(3024), + [anon_sym_for] = ACTIONS(3024), + [anon_sym_return] = ACTIONS(3024), + [anon_sym_break] = ACTIONS(3024), + [anon_sym_continue] = ACTIONS(3024), + [anon_sym_goto] = ACTIONS(3024), + [anon_sym_not] = ACTIONS(3024), + [anon_sym_compl] = ACTIONS(3024), + [anon_sym_DASH_DASH] = ACTIONS(3026), + [anon_sym_PLUS_PLUS] = ACTIONS(3026), + [anon_sym_sizeof] = ACTIONS(3024), + [anon_sym_offsetof] = ACTIONS(3024), + [anon_sym__Generic] = ACTIONS(3024), + [anon_sym_asm] = ACTIONS(3024), + [anon_sym___asm__] = ACTIONS(3024), + [sym_number_literal] = ACTIONS(3026), + [anon_sym_L_SQUOTE] = ACTIONS(3026), + [anon_sym_u_SQUOTE] = ACTIONS(3026), + [anon_sym_U_SQUOTE] = ACTIONS(3026), + [anon_sym_u8_SQUOTE] = ACTIONS(3026), + [anon_sym_SQUOTE] = ACTIONS(3026), + [anon_sym_L_DQUOTE] = ACTIONS(3026), + [anon_sym_u_DQUOTE] = ACTIONS(3026), + [anon_sym_U_DQUOTE] = ACTIONS(3026), + [anon_sym_u8_DQUOTE] = ACTIONS(3026), + [anon_sym_DQUOTE] = ACTIONS(3026), + [sym_true] = ACTIONS(3024), + [sym_false] = ACTIONS(3024), + [anon_sym_NULL] = ACTIONS(3024), + [anon_sym_nullptr] = ACTIONS(3024), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3024), + [anon_sym_decltype] = ACTIONS(3024), + [anon_sym_virtual] = ACTIONS(3024), + [anon_sym_explicit] = ACTIONS(3024), + [anon_sym_typename] = ACTIONS(3024), + [anon_sym_template] = ACTIONS(3024), + [anon_sym_operator] = ACTIONS(3024), + [anon_sym_try] = ACTIONS(3024), + [anon_sym_delete] = ACTIONS(3024), + [anon_sym_throw] = ACTIONS(3024), + [anon_sym_namespace] = ACTIONS(3024), + [anon_sym_using] = ACTIONS(3024), + [anon_sym_static_assert] = ACTIONS(3024), + [anon_sym_concept] = ACTIONS(3024), + [anon_sym_co_return] = ACTIONS(3024), + [anon_sym_co_yield] = ACTIONS(3024), + [anon_sym_R_DQUOTE] = ACTIONS(3026), + [anon_sym_LR_DQUOTE] = ACTIONS(3026), + [anon_sym_uR_DQUOTE] = ACTIONS(3026), + [anon_sym_UR_DQUOTE] = ACTIONS(3026), + [anon_sym_u8R_DQUOTE] = ACTIONS(3026), + [anon_sym_co_await] = ACTIONS(3024), + [anon_sym_new] = ACTIONS(3024), + [anon_sym_requires] = ACTIONS(3024), + [sym_this] = ACTIONS(3024), }, [710] = { - [sym_identifier] = ACTIONS(2462), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2464), - [anon_sym_AMP] = ACTIONS(2462), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_explicit] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_operator] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_namespace] = ACTIONS(2462), - [anon_sym_using] = ACTIONS(2462), - [anon_sym_static_assert] = ACTIONS(2462), - [anon_sym_concept] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_identifier] = ACTIONS(2976), + [aux_sym_preproc_include_token1] = ACTIONS(2976), + [aux_sym_preproc_def_token1] = ACTIONS(2976), + [aux_sym_preproc_if_token1] = ACTIONS(2976), + [aux_sym_preproc_if_token2] = ACTIONS(2976), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2976), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2976), + [aux_sym_preproc_else_token1] = ACTIONS(2976), + [aux_sym_preproc_elif_token1] = ACTIONS(2976), + [sym_preproc_directive] = ACTIONS(2976), + [anon_sym_LPAREN2] = ACTIONS(2978), + [anon_sym_BANG] = ACTIONS(2978), + [anon_sym_TILDE] = ACTIONS(2978), + [anon_sym_DASH] = ACTIONS(2976), + [anon_sym_PLUS] = ACTIONS(2976), + [anon_sym_STAR] = ACTIONS(2978), + [anon_sym_AMP_AMP] = ACTIONS(2978), + [anon_sym_AMP] = ACTIONS(2976), + [anon_sym_SEMI] = ACTIONS(2978), + [anon_sym_typedef] = ACTIONS(2976), + [anon_sym_extern] = ACTIONS(2976), + [anon_sym___attribute__] = ACTIONS(2976), + [anon_sym_COLON_COLON] = ACTIONS(2978), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2978), + [anon_sym___declspec] = ACTIONS(2976), + [anon_sym___based] = ACTIONS(2976), + [anon_sym___cdecl] = ACTIONS(2976), + [anon_sym___clrcall] = ACTIONS(2976), + [anon_sym___stdcall] = ACTIONS(2976), + [anon_sym___fastcall] = ACTIONS(2976), + [anon_sym___thiscall] = ACTIONS(2976), + [anon_sym___vectorcall] = ACTIONS(2976), + [anon_sym_LBRACE] = ACTIONS(2978), + [anon_sym_LBRACK] = ACTIONS(2976), + [anon_sym_static] = ACTIONS(2976), + [anon_sym_register] = ACTIONS(2976), + [anon_sym_inline] = ACTIONS(2976), + [anon_sym_thread_local] = ACTIONS(2976), + [anon_sym_const] = ACTIONS(2976), + [anon_sym_constexpr] = ACTIONS(2976), + [anon_sym_volatile] = ACTIONS(2976), + [anon_sym_restrict] = ACTIONS(2976), + [anon_sym___restrict__] = ACTIONS(2976), + [anon_sym__Atomic] = ACTIONS(2976), + [anon_sym__Noreturn] = ACTIONS(2976), + [anon_sym_noreturn] = ACTIONS(2976), + [anon_sym_mutable] = ACTIONS(2976), + [anon_sym_constinit] = ACTIONS(2976), + [anon_sym_consteval] = ACTIONS(2976), + [anon_sym_signed] = ACTIONS(2976), + [anon_sym_unsigned] = ACTIONS(2976), + [anon_sym_long] = ACTIONS(2976), + [anon_sym_short] = ACTIONS(2976), + [sym_primitive_type] = ACTIONS(2976), + [anon_sym_enum] = ACTIONS(2976), + [anon_sym_class] = ACTIONS(2976), + [anon_sym_struct] = ACTIONS(2976), + [anon_sym_union] = ACTIONS(2976), + [anon_sym_if] = ACTIONS(2976), + [anon_sym_else] = ACTIONS(2976), + [anon_sym_switch] = ACTIONS(2976), + [anon_sym_case] = ACTIONS(2976), + [anon_sym_default] = ACTIONS(2976), + [anon_sym_while] = ACTIONS(2976), + [anon_sym_do] = ACTIONS(2976), + [anon_sym_for] = ACTIONS(2976), + [anon_sym_return] = ACTIONS(2976), + [anon_sym_break] = ACTIONS(2976), + [anon_sym_continue] = ACTIONS(2976), + [anon_sym_goto] = ACTIONS(2976), + [anon_sym_not] = ACTIONS(2976), + [anon_sym_compl] = ACTIONS(2976), + [anon_sym_DASH_DASH] = ACTIONS(2978), + [anon_sym_PLUS_PLUS] = ACTIONS(2978), + [anon_sym_sizeof] = ACTIONS(2976), + [anon_sym_offsetof] = ACTIONS(2976), + [anon_sym__Generic] = ACTIONS(2976), + [anon_sym_asm] = ACTIONS(2976), + [anon_sym___asm__] = ACTIONS(2976), + [sym_number_literal] = ACTIONS(2978), + [anon_sym_L_SQUOTE] = ACTIONS(2978), + [anon_sym_u_SQUOTE] = ACTIONS(2978), + [anon_sym_U_SQUOTE] = ACTIONS(2978), + [anon_sym_u8_SQUOTE] = ACTIONS(2978), + [anon_sym_SQUOTE] = ACTIONS(2978), + [anon_sym_L_DQUOTE] = ACTIONS(2978), + [anon_sym_u_DQUOTE] = ACTIONS(2978), + [anon_sym_U_DQUOTE] = ACTIONS(2978), + [anon_sym_u8_DQUOTE] = ACTIONS(2978), + [anon_sym_DQUOTE] = ACTIONS(2978), + [sym_true] = ACTIONS(2976), + [sym_false] = ACTIONS(2976), + [anon_sym_NULL] = ACTIONS(2976), + [anon_sym_nullptr] = ACTIONS(2976), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2976), + [anon_sym_decltype] = ACTIONS(2976), + [anon_sym_virtual] = ACTIONS(2976), + [anon_sym_explicit] = ACTIONS(2976), + [anon_sym_typename] = ACTIONS(2976), + [anon_sym_template] = ACTIONS(2976), + [anon_sym_operator] = ACTIONS(2976), + [anon_sym_try] = ACTIONS(2976), + [anon_sym_delete] = ACTIONS(2976), + [anon_sym_throw] = ACTIONS(2976), + [anon_sym_namespace] = ACTIONS(2976), + [anon_sym_using] = ACTIONS(2976), + [anon_sym_static_assert] = ACTIONS(2976), + [anon_sym_concept] = ACTIONS(2976), + [anon_sym_co_return] = ACTIONS(2976), + [anon_sym_co_yield] = ACTIONS(2976), + [anon_sym_R_DQUOTE] = ACTIONS(2978), + [anon_sym_LR_DQUOTE] = ACTIONS(2978), + [anon_sym_uR_DQUOTE] = ACTIONS(2978), + [anon_sym_UR_DQUOTE] = ACTIONS(2978), + [anon_sym_u8R_DQUOTE] = ACTIONS(2978), + [anon_sym_co_await] = ACTIONS(2976), + [anon_sym_new] = ACTIONS(2976), + [anon_sym_requires] = ACTIONS(2976), + [sym_this] = ACTIONS(2976), }, [711] = { - [sym_identifier] = ACTIONS(2462), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2464), - [anon_sym_AMP] = ACTIONS(2462), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_explicit] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_operator] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_namespace] = ACTIONS(2462), - [anon_sym_using] = ACTIONS(2462), - [anon_sym_static_assert] = ACTIONS(2462), - [anon_sym_concept] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_identifier] = ACTIONS(2980), + [aux_sym_preproc_include_token1] = ACTIONS(2980), + [aux_sym_preproc_def_token1] = ACTIONS(2980), + [aux_sym_preproc_if_token1] = ACTIONS(2980), + [aux_sym_preproc_if_token2] = ACTIONS(2980), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2980), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2980), + [aux_sym_preproc_else_token1] = ACTIONS(2980), + [aux_sym_preproc_elif_token1] = ACTIONS(2980), + [sym_preproc_directive] = ACTIONS(2980), + [anon_sym_LPAREN2] = ACTIONS(2982), + [anon_sym_BANG] = ACTIONS(2982), + [anon_sym_TILDE] = ACTIONS(2982), + [anon_sym_DASH] = ACTIONS(2980), + [anon_sym_PLUS] = ACTIONS(2980), + [anon_sym_STAR] = ACTIONS(2982), + [anon_sym_AMP_AMP] = ACTIONS(2982), + [anon_sym_AMP] = ACTIONS(2980), + [anon_sym_SEMI] = ACTIONS(2982), + [anon_sym_typedef] = ACTIONS(2980), + [anon_sym_extern] = ACTIONS(2980), + [anon_sym___attribute__] = ACTIONS(2980), + [anon_sym_COLON_COLON] = ACTIONS(2982), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2982), + [anon_sym___declspec] = ACTIONS(2980), + [anon_sym___based] = ACTIONS(2980), + [anon_sym___cdecl] = ACTIONS(2980), + [anon_sym___clrcall] = ACTIONS(2980), + [anon_sym___stdcall] = ACTIONS(2980), + [anon_sym___fastcall] = ACTIONS(2980), + [anon_sym___thiscall] = ACTIONS(2980), + [anon_sym___vectorcall] = ACTIONS(2980), + [anon_sym_LBRACE] = ACTIONS(2982), + [anon_sym_LBRACK] = ACTIONS(2980), + [anon_sym_static] = ACTIONS(2980), + [anon_sym_register] = ACTIONS(2980), + [anon_sym_inline] = ACTIONS(2980), + [anon_sym_thread_local] = ACTIONS(2980), + [anon_sym_const] = ACTIONS(2980), + [anon_sym_constexpr] = ACTIONS(2980), + [anon_sym_volatile] = ACTIONS(2980), + [anon_sym_restrict] = ACTIONS(2980), + [anon_sym___restrict__] = ACTIONS(2980), + [anon_sym__Atomic] = ACTIONS(2980), + [anon_sym__Noreturn] = ACTIONS(2980), + [anon_sym_noreturn] = ACTIONS(2980), + [anon_sym_mutable] = ACTIONS(2980), + [anon_sym_constinit] = ACTIONS(2980), + [anon_sym_consteval] = ACTIONS(2980), + [anon_sym_signed] = ACTIONS(2980), + [anon_sym_unsigned] = ACTIONS(2980), + [anon_sym_long] = ACTIONS(2980), + [anon_sym_short] = ACTIONS(2980), + [sym_primitive_type] = ACTIONS(2980), + [anon_sym_enum] = ACTIONS(2980), + [anon_sym_class] = ACTIONS(2980), + [anon_sym_struct] = ACTIONS(2980), + [anon_sym_union] = ACTIONS(2980), + [anon_sym_if] = ACTIONS(2980), + [anon_sym_else] = ACTIONS(2980), + [anon_sym_switch] = ACTIONS(2980), + [anon_sym_case] = ACTIONS(2980), + [anon_sym_default] = ACTIONS(2980), + [anon_sym_while] = ACTIONS(2980), + [anon_sym_do] = ACTIONS(2980), + [anon_sym_for] = ACTIONS(2980), + [anon_sym_return] = ACTIONS(2980), + [anon_sym_break] = ACTIONS(2980), + [anon_sym_continue] = ACTIONS(2980), + [anon_sym_goto] = ACTIONS(2980), + [anon_sym_not] = ACTIONS(2980), + [anon_sym_compl] = ACTIONS(2980), + [anon_sym_DASH_DASH] = ACTIONS(2982), + [anon_sym_PLUS_PLUS] = ACTIONS(2982), + [anon_sym_sizeof] = ACTIONS(2980), + [anon_sym_offsetof] = ACTIONS(2980), + [anon_sym__Generic] = ACTIONS(2980), + [anon_sym_asm] = ACTIONS(2980), + [anon_sym___asm__] = ACTIONS(2980), + [sym_number_literal] = ACTIONS(2982), + [anon_sym_L_SQUOTE] = ACTIONS(2982), + [anon_sym_u_SQUOTE] = ACTIONS(2982), + [anon_sym_U_SQUOTE] = ACTIONS(2982), + [anon_sym_u8_SQUOTE] = ACTIONS(2982), + [anon_sym_SQUOTE] = ACTIONS(2982), + [anon_sym_L_DQUOTE] = ACTIONS(2982), + [anon_sym_u_DQUOTE] = ACTIONS(2982), + [anon_sym_U_DQUOTE] = ACTIONS(2982), + [anon_sym_u8_DQUOTE] = ACTIONS(2982), + [anon_sym_DQUOTE] = ACTIONS(2982), + [sym_true] = ACTIONS(2980), + [sym_false] = ACTIONS(2980), + [anon_sym_NULL] = ACTIONS(2980), + [anon_sym_nullptr] = ACTIONS(2980), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2980), + [anon_sym_decltype] = ACTIONS(2980), + [anon_sym_virtual] = ACTIONS(2980), + [anon_sym_explicit] = ACTIONS(2980), + [anon_sym_typename] = ACTIONS(2980), + [anon_sym_template] = ACTIONS(2980), + [anon_sym_operator] = ACTIONS(2980), + [anon_sym_try] = ACTIONS(2980), + [anon_sym_delete] = ACTIONS(2980), + [anon_sym_throw] = ACTIONS(2980), + [anon_sym_namespace] = ACTIONS(2980), + [anon_sym_using] = ACTIONS(2980), + [anon_sym_static_assert] = ACTIONS(2980), + [anon_sym_concept] = ACTIONS(2980), + [anon_sym_co_return] = ACTIONS(2980), + [anon_sym_co_yield] = ACTIONS(2980), + [anon_sym_R_DQUOTE] = ACTIONS(2982), + [anon_sym_LR_DQUOTE] = ACTIONS(2982), + [anon_sym_uR_DQUOTE] = ACTIONS(2982), + [anon_sym_UR_DQUOTE] = ACTIONS(2982), + [anon_sym_u8R_DQUOTE] = ACTIONS(2982), + [anon_sym_co_await] = ACTIONS(2980), + [anon_sym_new] = ACTIONS(2980), + [anon_sym_requires] = ACTIONS(2980), + [sym_this] = ACTIONS(2980), }, [712] = { - [sym_identifier] = ACTIONS(2462), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2464), - [anon_sym_AMP] = ACTIONS(2462), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_explicit] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_operator] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_namespace] = ACTIONS(2462), - [anon_sym_using] = ACTIONS(2462), - [anon_sym_static_assert] = ACTIONS(2462), - [anon_sym_concept] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_preproc_def] = STATE(712), + [sym_preproc_function_def] = STATE(712), + [sym_preproc_call] = STATE(712), + [sym_preproc_if_in_field_declaration_list] = STATE(712), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(712), + [sym_type_definition] = STATE(712), + [sym__declaration_modifiers] = STATE(3706), + [sym__declaration_specifiers] = STATE(4831), + [sym_attribute_specifier] = STATE(3706), + [sym_attribute_declaration] = STATE(3706), + [sym_ms_declspec_modifier] = STATE(3706), + [sym_ms_based_modifier] = STATE(7654), + [sym__declarator] = STATE(5881), + [sym_parenthesized_declarator] = STATE(5640), + [sym_attributed_declarator] = STATE(5640), + [sym_pointer_declarator] = STATE(5640), + [sym_function_declarator] = STATE(5531), + [sym_array_declarator] = STATE(5640), + [sym_storage_class_specifier] = STATE(3706), + [sym_type_qualifier] = STATE(3706), + [sym__type_specifier] = STATE(3845), + [sym_sized_type_specifier] = STATE(3918), + [sym_enum_specifier] = STATE(3918), + [sym_struct_specifier] = STATE(3918), + [sym_union_specifier] = STATE(3918), + [sym__field_declaration_list_item] = STATE(712), + [sym_field_declaration] = STATE(712), + [sym_placeholder_type_specifier] = STATE(3918), + [sym_decltype_auto] = STATE(3916), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3918), + [sym_virtual] = STATE(3706), + [sym_explicit_function_specifier] = STATE(2247), + [sym_dependent_type] = STATE(3918), + [sym_template_declaration] = STATE(712), + [sym_operator_cast] = STATE(5897), + [sym_inline_method_definition] = STATE(712), + [sym__constructor_specifiers] = STATE(2247), + [sym_operator_cast_definition] = STATE(712), + [sym_operator_cast_declaration] = STATE(712), + [sym_constructor_or_destructor_definition] = STATE(712), + [sym_constructor_or_destructor_declaration] = STATE(712), + [sym_friend_declaration] = STATE(712), + [sym_access_specifier] = STATE(7346), + [sym_reference_declarator] = STATE(5640), + [sym_structured_binding_declarator] = STATE(5640), + [sym_template_type] = STATE(3680), + [sym_template_function] = STATE(5640), + [sym_using_declaration] = STATE(712), + [sym_alias_declaration] = STATE(712), + [sym_static_assert_declaration] = STATE(712), + [sym_destructor_name] = STATE(5640), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5151), + [sym_qualified_identifier] = STATE(5640), + [sym_qualified_type_identifier] = STATE(3966), + [sym_qualified_operator_cast_identifier] = STATE(5897), + [sym_operator_name] = STATE(5640), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(712), + [aux_sym__declaration_specifiers_repeat1] = STATE(2509), + [aux_sym_sized_type_specifier_repeat1] = STATE(3981), + [aux_sym_operator_cast_definition_repeat1] = STATE(2247), + [sym_identifier] = ACTIONS(2747), + [aux_sym_preproc_def_token1] = ACTIONS(3527), + [aux_sym_preproc_if_token1] = ACTIONS(3530), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3533), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3533), + [sym_preproc_directive] = ACTIONS(3536), + [anon_sym_LPAREN2] = ACTIONS(2764), + [anon_sym_TILDE] = ACTIONS(2767), + [anon_sym_STAR] = ACTIONS(2770), + [anon_sym_AMP_AMP] = ACTIONS(2773), + [anon_sym_AMP] = ACTIONS(2776), + [anon_sym_typedef] = ACTIONS(3539), + [anon_sym_extern] = ACTIONS(2782), + [anon_sym___attribute__] = ACTIONS(2785), + [anon_sym_COLON_COLON] = ACTIONS(2788), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2791), + [anon_sym___declspec] = ACTIONS(2794), + [anon_sym___based] = ACTIONS(2797), + [anon_sym_RBRACE] = ACTIONS(3542), + [anon_sym_LBRACK] = ACTIONS(2800), + [anon_sym_static] = ACTIONS(2782), + [anon_sym_register] = ACTIONS(2782), + [anon_sym_inline] = ACTIONS(2782), + [anon_sym_thread_local] = ACTIONS(2782), + [anon_sym_const] = ACTIONS(2803), + [anon_sym_constexpr] = ACTIONS(2803), + [anon_sym_volatile] = ACTIONS(2803), + [anon_sym_restrict] = ACTIONS(2803), + [anon_sym___restrict__] = ACTIONS(2803), + [anon_sym__Atomic] = ACTIONS(2803), + [anon_sym__Noreturn] = ACTIONS(2803), + [anon_sym_noreturn] = ACTIONS(2803), + [anon_sym_mutable] = ACTIONS(2803), + [anon_sym_constinit] = ACTIONS(2803), + [anon_sym_consteval] = ACTIONS(2803), + [anon_sym_signed] = ACTIONS(2806), + [anon_sym_unsigned] = ACTIONS(2806), + [anon_sym_long] = ACTIONS(2806), + [anon_sym_short] = ACTIONS(2806), + [sym_primitive_type] = ACTIONS(2809), + [anon_sym_enum] = ACTIONS(2812), + [anon_sym_class] = ACTIONS(2815), + [anon_sym_struct] = ACTIONS(2818), + [anon_sym_union] = ACTIONS(2821), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2824), + [anon_sym_decltype] = ACTIONS(2827), + [anon_sym_virtual] = ACTIONS(2830), + [anon_sym_explicit] = ACTIONS(2833), + [anon_sym_typename] = ACTIONS(2836), + [anon_sym_template] = ACTIONS(3544), + [anon_sym_operator] = ACTIONS(2842), + [anon_sym_friend] = ACTIONS(3547), + [anon_sym_public] = ACTIONS(2848), + [anon_sym_private] = ACTIONS(2848), + [anon_sym_protected] = ACTIONS(2848), + [anon_sym_using] = ACTIONS(3550), + [anon_sym_static_assert] = ACTIONS(3553), }, [713] = { - [sym_identifier] = ACTIONS(2462), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2464), - [anon_sym_AMP] = ACTIONS(2462), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_explicit] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_operator] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_namespace] = ACTIONS(2462), - [anon_sym_using] = ACTIONS(2462), - [anon_sym_static_assert] = ACTIONS(2462), - [anon_sym_concept] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_identifier] = ACTIONS(2984), + [aux_sym_preproc_include_token1] = ACTIONS(2984), + [aux_sym_preproc_def_token1] = ACTIONS(2984), + [aux_sym_preproc_if_token1] = ACTIONS(2984), + [aux_sym_preproc_if_token2] = ACTIONS(2984), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2984), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2984), + [aux_sym_preproc_else_token1] = ACTIONS(2984), + [aux_sym_preproc_elif_token1] = ACTIONS(2984), + [sym_preproc_directive] = ACTIONS(2984), + [anon_sym_LPAREN2] = ACTIONS(2986), + [anon_sym_BANG] = ACTIONS(2986), + [anon_sym_TILDE] = ACTIONS(2986), + [anon_sym_DASH] = ACTIONS(2984), + [anon_sym_PLUS] = ACTIONS(2984), + [anon_sym_STAR] = ACTIONS(2986), + [anon_sym_AMP_AMP] = ACTIONS(2986), + [anon_sym_AMP] = ACTIONS(2984), + [anon_sym_SEMI] = ACTIONS(2986), + [anon_sym_typedef] = ACTIONS(2984), + [anon_sym_extern] = ACTIONS(2984), + [anon_sym___attribute__] = ACTIONS(2984), + [anon_sym_COLON_COLON] = ACTIONS(2986), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2986), + [anon_sym___declspec] = ACTIONS(2984), + [anon_sym___based] = ACTIONS(2984), + [anon_sym___cdecl] = ACTIONS(2984), + [anon_sym___clrcall] = ACTIONS(2984), + [anon_sym___stdcall] = ACTIONS(2984), + [anon_sym___fastcall] = ACTIONS(2984), + [anon_sym___thiscall] = ACTIONS(2984), + [anon_sym___vectorcall] = ACTIONS(2984), + [anon_sym_LBRACE] = ACTIONS(2986), + [anon_sym_LBRACK] = ACTIONS(2984), + [anon_sym_static] = ACTIONS(2984), + [anon_sym_register] = ACTIONS(2984), + [anon_sym_inline] = ACTIONS(2984), + [anon_sym_thread_local] = ACTIONS(2984), + [anon_sym_const] = ACTIONS(2984), + [anon_sym_constexpr] = ACTIONS(2984), + [anon_sym_volatile] = ACTIONS(2984), + [anon_sym_restrict] = ACTIONS(2984), + [anon_sym___restrict__] = ACTIONS(2984), + [anon_sym__Atomic] = ACTIONS(2984), + [anon_sym__Noreturn] = ACTIONS(2984), + [anon_sym_noreturn] = ACTIONS(2984), + [anon_sym_mutable] = ACTIONS(2984), + [anon_sym_constinit] = ACTIONS(2984), + [anon_sym_consteval] = ACTIONS(2984), + [anon_sym_signed] = ACTIONS(2984), + [anon_sym_unsigned] = ACTIONS(2984), + [anon_sym_long] = ACTIONS(2984), + [anon_sym_short] = ACTIONS(2984), + [sym_primitive_type] = ACTIONS(2984), + [anon_sym_enum] = ACTIONS(2984), + [anon_sym_class] = ACTIONS(2984), + [anon_sym_struct] = ACTIONS(2984), + [anon_sym_union] = ACTIONS(2984), + [anon_sym_if] = ACTIONS(2984), + [anon_sym_else] = ACTIONS(2984), + [anon_sym_switch] = ACTIONS(2984), + [anon_sym_case] = ACTIONS(2984), + [anon_sym_default] = ACTIONS(2984), + [anon_sym_while] = ACTIONS(2984), + [anon_sym_do] = ACTIONS(2984), + [anon_sym_for] = ACTIONS(2984), + [anon_sym_return] = ACTIONS(2984), + [anon_sym_break] = ACTIONS(2984), + [anon_sym_continue] = ACTIONS(2984), + [anon_sym_goto] = ACTIONS(2984), + [anon_sym_not] = ACTIONS(2984), + [anon_sym_compl] = ACTIONS(2984), + [anon_sym_DASH_DASH] = ACTIONS(2986), + [anon_sym_PLUS_PLUS] = ACTIONS(2986), + [anon_sym_sizeof] = ACTIONS(2984), + [anon_sym_offsetof] = ACTIONS(2984), + [anon_sym__Generic] = ACTIONS(2984), + [anon_sym_asm] = ACTIONS(2984), + [anon_sym___asm__] = ACTIONS(2984), + [sym_number_literal] = ACTIONS(2986), + [anon_sym_L_SQUOTE] = ACTIONS(2986), + [anon_sym_u_SQUOTE] = ACTIONS(2986), + [anon_sym_U_SQUOTE] = ACTIONS(2986), + [anon_sym_u8_SQUOTE] = ACTIONS(2986), + [anon_sym_SQUOTE] = ACTIONS(2986), + [anon_sym_L_DQUOTE] = ACTIONS(2986), + [anon_sym_u_DQUOTE] = ACTIONS(2986), + [anon_sym_U_DQUOTE] = ACTIONS(2986), + [anon_sym_u8_DQUOTE] = ACTIONS(2986), + [anon_sym_DQUOTE] = ACTIONS(2986), + [sym_true] = ACTIONS(2984), + [sym_false] = ACTIONS(2984), + [anon_sym_NULL] = ACTIONS(2984), + [anon_sym_nullptr] = ACTIONS(2984), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2984), + [anon_sym_decltype] = ACTIONS(2984), + [anon_sym_virtual] = ACTIONS(2984), + [anon_sym_explicit] = ACTIONS(2984), + [anon_sym_typename] = ACTIONS(2984), + [anon_sym_template] = ACTIONS(2984), + [anon_sym_operator] = ACTIONS(2984), + [anon_sym_try] = ACTIONS(2984), + [anon_sym_delete] = ACTIONS(2984), + [anon_sym_throw] = ACTIONS(2984), + [anon_sym_namespace] = ACTIONS(2984), + [anon_sym_using] = ACTIONS(2984), + [anon_sym_static_assert] = ACTIONS(2984), + [anon_sym_concept] = ACTIONS(2984), + [anon_sym_co_return] = ACTIONS(2984), + [anon_sym_co_yield] = ACTIONS(2984), + [anon_sym_R_DQUOTE] = ACTIONS(2986), + [anon_sym_LR_DQUOTE] = ACTIONS(2986), + [anon_sym_uR_DQUOTE] = ACTIONS(2986), + [anon_sym_UR_DQUOTE] = ACTIONS(2986), + [anon_sym_u8R_DQUOTE] = ACTIONS(2986), + [anon_sym_co_await] = ACTIONS(2984), + [anon_sym_new] = ACTIONS(2984), + [anon_sym_requires] = ACTIONS(2984), + [sym_this] = ACTIONS(2984), }, [714] = { - [sym_identifier] = ACTIONS(2462), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2464), - [anon_sym_AMP] = ACTIONS(2462), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_explicit] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_operator] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_namespace] = ACTIONS(2462), - [anon_sym_using] = ACTIONS(2462), - [anon_sym_static_assert] = ACTIONS(2462), - [anon_sym_concept] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token2] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [aux_sym_preproc_else_token1] = ACTIONS(3048), + [aux_sym_preproc_elif_token1] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, [715] = { - [sym_identifier] = ACTIONS(2462), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2464), - [anon_sym_AMP] = ACTIONS(2462), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_explicit] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_operator] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_namespace] = ACTIONS(2462), - [anon_sym_using] = ACTIONS(2462), - [anon_sym_static_assert] = ACTIONS(2462), - [anon_sym_concept] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token2] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [aux_sym_preproc_else_token1] = ACTIONS(3048), + [aux_sym_preproc_elif_token1] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, [716] = { - [ts_builtin_sym_end] = ACTIONS(2464), - [sym_identifier] = ACTIONS(2462), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2464), - [anon_sym_AMP] = ACTIONS(2462), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_explicit] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_operator] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_namespace] = ACTIONS(2462), - [anon_sym_using] = ACTIONS(2462), - [anon_sym_static_assert] = ACTIONS(2462), - [anon_sym_concept] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_catch_clause] = STATE(570), + [aux_sym_constructor_try_statement_repeat1] = STATE(570), + [sym_identifier] = ACTIONS(2857), + [aux_sym_preproc_include_token1] = ACTIONS(2857), + [aux_sym_preproc_def_token1] = ACTIONS(2857), + [aux_sym_preproc_if_token1] = ACTIONS(2857), + [aux_sym_preproc_if_token2] = ACTIONS(2857), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2857), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2857), + [sym_preproc_directive] = ACTIONS(2857), + [anon_sym_LPAREN2] = ACTIONS(2859), + [anon_sym_BANG] = ACTIONS(2859), + [anon_sym_TILDE] = ACTIONS(2859), + [anon_sym_DASH] = ACTIONS(2857), + [anon_sym_PLUS] = ACTIONS(2857), + [anon_sym_STAR] = ACTIONS(2859), + [anon_sym_AMP_AMP] = ACTIONS(2859), + [anon_sym_AMP] = ACTIONS(2857), + [anon_sym_SEMI] = ACTIONS(2859), + [anon_sym_typedef] = ACTIONS(2857), + [anon_sym_extern] = ACTIONS(2857), + [anon_sym___attribute__] = ACTIONS(2857), + [anon_sym_COLON_COLON] = ACTIONS(2859), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2859), + [anon_sym___declspec] = ACTIONS(2857), + [anon_sym___based] = ACTIONS(2857), + [anon_sym___cdecl] = ACTIONS(2857), + [anon_sym___clrcall] = ACTIONS(2857), + [anon_sym___stdcall] = ACTIONS(2857), + [anon_sym___fastcall] = ACTIONS(2857), + [anon_sym___thiscall] = ACTIONS(2857), + [anon_sym___vectorcall] = ACTIONS(2857), + [anon_sym_LBRACE] = ACTIONS(2859), + [anon_sym_LBRACK] = ACTIONS(2857), + [anon_sym_static] = ACTIONS(2857), + [anon_sym_register] = ACTIONS(2857), + [anon_sym_inline] = ACTIONS(2857), + [anon_sym_thread_local] = ACTIONS(2857), + [anon_sym_const] = ACTIONS(2857), + [anon_sym_constexpr] = ACTIONS(2857), + [anon_sym_volatile] = ACTIONS(2857), + [anon_sym_restrict] = ACTIONS(2857), + [anon_sym___restrict__] = ACTIONS(2857), + [anon_sym__Atomic] = ACTIONS(2857), + [anon_sym__Noreturn] = ACTIONS(2857), + [anon_sym_noreturn] = ACTIONS(2857), + [anon_sym_mutable] = ACTIONS(2857), + [anon_sym_constinit] = ACTIONS(2857), + [anon_sym_consteval] = ACTIONS(2857), + [anon_sym_signed] = ACTIONS(2857), + [anon_sym_unsigned] = ACTIONS(2857), + [anon_sym_long] = ACTIONS(2857), + [anon_sym_short] = ACTIONS(2857), + [sym_primitive_type] = ACTIONS(2857), + [anon_sym_enum] = ACTIONS(2857), + [anon_sym_class] = ACTIONS(2857), + [anon_sym_struct] = ACTIONS(2857), + [anon_sym_union] = ACTIONS(2857), + [anon_sym_if] = ACTIONS(2857), + [anon_sym_switch] = ACTIONS(2857), + [anon_sym_case] = ACTIONS(2857), + [anon_sym_default] = ACTIONS(2857), + [anon_sym_while] = ACTIONS(2857), + [anon_sym_do] = ACTIONS(2857), + [anon_sym_for] = ACTIONS(2857), + [anon_sym_return] = ACTIONS(2857), + [anon_sym_break] = ACTIONS(2857), + [anon_sym_continue] = ACTIONS(2857), + [anon_sym_goto] = ACTIONS(2857), + [anon_sym_not] = ACTIONS(2857), + [anon_sym_compl] = ACTIONS(2857), + [anon_sym_DASH_DASH] = ACTIONS(2859), + [anon_sym_PLUS_PLUS] = ACTIONS(2859), + [anon_sym_sizeof] = ACTIONS(2857), + [anon_sym_offsetof] = ACTIONS(2857), + [anon_sym__Generic] = ACTIONS(2857), + [anon_sym_asm] = ACTIONS(2857), + [anon_sym___asm__] = ACTIONS(2857), + [sym_number_literal] = ACTIONS(2859), + [anon_sym_L_SQUOTE] = ACTIONS(2859), + [anon_sym_u_SQUOTE] = ACTIONS(2859), + [anon_sym_U_SQUOTE] = ACTIONS(2859), + [anon_sym_u8_SQUOTE] = ACTIONS(2859), + [anon_sym_SQUOTE] = ACTIONS(2859), + [anon_sym_L_DQUOTE] = ACTIONS(2859), + [anon_sym_u_DQUOTE] = ACTIONS(2859), + [anon_sym_U_DQUOTE] = ACTIONS(2859), + [anon_sym_u8_DQUOTE] = ACTIONS(2859), + [anon_sym_DQUOTE] = ACTIONS(2859), + [sym_true] = ACTIONS(2857), + [sym_false] = ACTIONS(2857), + [anon_sym_NULL] = ACTIONS(2857), + [anon_sym_nullptr] = ACTIONS(2857), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2857), + [anon_sym_decltype] = ACTIONS(2857), + [anon_sym_virtual] = ACTIONS(2857), + [anon_sym_explicit] = ACTIONS(2857), + [anon_sym_typename] = ACTIONS(2857), + [anon_sym_template] = ACTIONS(2857), + [anon_sym_operator] = ACTIONS(2857), + [anon_sym_try] = ACTIONS(2857), + [anon_sym_delete] = ACTIONS(2857), + [anon_sym_throw] = ACTIONS(2857), + [anon_sym_namespace] = ACTIONS(2857), + [anon_sym_using] = ACTIONS(2857), + [anon_sym_static_assert] = ACTIONS(2857), + [anon_sym_concept] = ACTIONS(2857), + [anon_sym_co_return] = ACTIONS(2857), + [anon_sym_co_yield] = ACTIONS(2857), + [anon_sym_catch] = ACTIONS(3302), + [anon_sym_R_DQUOTE] = ACTIONS(2859), + [anon_sym_LR_DQUOTE] = ACTIONS(2859), + [anon_sym_uR_DQUOTE] = ACTIONS(2859), + [anon_sym_UR_DQUOTE] = ACTIONS(2859), + [anon_sym_u8R_DQUOTE] = ACTIONS(2859), + [anon_sym_co_await] = ACTIONS(2857), + [anon_sym_new] = ACTIONS(2857), + [anon_sym_requires] = ACTIONS(2857), + [sym_this] = ACTIONS(2857), }, [717] = { - [sym_identifier] = ACTIONS(1737), - [aux_sym_preproc_include_token1] = ACTIONS(1737), - [aux_sym_preproc_def_token1] = ACTIONS(1737), - [anon_sym_COMMA] = ACTIONS(2652), - [aux_sym_preproc_if_token1] = ACTIONS(1737), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1737), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1737), - [sym_preproc_directive] = ACTIONS(1737), - [anon_sym_LPAREN2] = ACTIONS(1735), - [anon_sym_BANG] = ACTIONS(1735), - [anon_sym_TILDE] = ACTIONS(1735), - [anon_sym_DASH] = ACTIONS(1737), - [anon_sym_PLUS] = ACTIONS(1737), - [anon_sym_STAR] = ACTIONS(1735), - [anon_sym_AMP_AMP] = ACTIONS(1735), - [anon_sym_AMP] = ACTIONS(1737), - [anon_sym_SEMI] = ACTIONS(1735), - [anon_sym_typedef] = ACTIONS(1737), - [anon_sym_extern] = ACTIONS(1737), - [anon_sym___attribute__] = ACTIONS(1737), - [anon_sym_COLON_COLON] = ACTIONS(1735), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1735), - [anon_sym___declspec] = ACTIONS(1737), - [anon_sym___based] = ACTIONS(1737), - [anon_sym___cdecl] = ACTIONS(1737), - [anon_sym___clrcall] = ACTIONS(1737), - [anon_sym___stdcall] = ACTIONS(1737), - [anon_sym___fastcall] = ACTIONS(1737), - [anon_sym___thiscall] = ACTIONS(1737), - [anon_sym___vectorcall] = ACTIONS(1737), - [anon_sym_LBRACE] = ACTIONS(1735), - [anon_sym_RBRACE] = ACTIONS(2652), - [anon_sym_LBRACK] = ACTIONS(1737), - [anon_sym_static] = ACTIONS(1737), - [anon_sym_register] = ACTIONS(1737), - [anon_sym_inline] = ACTIONS(1737), - [anon_sym_thread_local] = ACTIONS(1737), - [anon_sym_const] = ACTIONS(1737), - [anon_sym_volatile] = ACTIONS(1737), - [anon_sym_restrict] = ACTIONS(1737), - [anon_sym__Atomic] = ACTIONS(1737), - [anon_sym_mutable] = ACTIONS(1737), - [anon_sym_constexpr] = ACTIONS(1737), - [anon_sym_constinit] = ACTIONS(1737), - [anon_sym_consteval] = ACTIONS(1737), - [anon_sym_signed] = ACTIONS(1737), - [anon_sym_unsigned] = ACTIONS(1737), - [anon_sym_long] = ACTIONS(1737), - [anon_sym_short] = ACTIONS(1737), - [sym_primitive_type] = ACTIONS(1737), - [anon_sym_enum] = ACTIONS(1737), - [anon_sym_class] = ACTIONS(1737), - [anon_sym_struct] = ACTIONS(1737), - [anon_sym_union] = ACTIONS(1737), - [anon_sym_if] = ACTIONS(1737), - [anon_sym_switch] = ACTIONS(1737), - [anon_sym_case] = ACTIONS(1737), - [anon_sym_default] = ACTIONS(1737), - [anon_sym_while] = ACTIONS(1737), - [anon_sym_do] = ACTIONS(1737), - [anon_sym_for] = ACTIONS(1737), - [anon_sym_return] = ACTIONS(1737), - [anon_sym_break] = ACTIONS(1737), - [anon_sym_continue] = ACTIONS(1737), - [anon_sym_goto] = ACTIONS(1737), - [anon_sym_not] = ACTIONS(1737), - [anon_sym_compl] = ACTIONS(1737), - [anon_sym_DASH_DASH] = ACTIONS(1735), - [anon_sym_PLUS_PLUS] = ACTIONS(1735), - [anon_sym_sizeof] = ACTIONS(1737), - [sym_number_literal] = ACTIONS(1735), - [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_L_DQUOTE] = ACTIONS(1735), - [anon_sym_u_DQUOTE] = ACTIONS(1735), - [anon_sym_U_DQUOTE] = ACTIONS(1735), - [anon_sym_u8_DQUOTE] = ACTIONS(1735), - [anon_sym_DQUOTE] = ACTIONS(1735), - [sym_true] = ACTIONS(1737), - [sym_false] = ACTIONS(1737), - [sym_null] = ACTIONS(1737), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1737), - [anon_sym_decltype] = ACTIONS(1737), - [anon_sym_virtual] = ACTIONS(1737), - [anon_sym_explicit] = ACTIONS(1737), - [anon_sym_typename] = ACTIONS(1737), - [anon_sym_template] = ACTIONS(1737), - [anon_sym_operator] = ACTIONS(1737), - [anon_sym_try] = ACTIONS(1737), - [anon_sym_delete] = ACTIONS(1737), - [anon_sym_throw] = ACTIONS(1737), - [anon_sym_namespace] = ACTIONS(1737), - [anon_sym_using] = ACTIONS(1737), - [anon_sym_static_assert] = ACTIONS(1737), - [anon_sym_concept] = ACTIONS(1737), - [anon_sym_co_return] = ACTIONS(1737), - [anon_sym_co_yield] = ACTIONS(1737), - [anon_sym_R_DQUOTE] = ACTIONS(1735), - [anon_sym_LR_DQUOTE] = ACTIONS(1735), - [anon_sym_uR_DQUOTE] = ACTIONS(1735), - [anon_sym_UR_DQUOTE] = ACTIONS(1735), - [anon_sym_u8R_DQUOTE] = ACTIONS(1735), - [anon_sym_co_await] = ACTIONS(1737), - [anon_sym_new] = ACTIONS(1737), - [anon_sym_requires] = ACTIONS(1737), - [sym_this] = ACTIONS(1737), - [sym_nullptr] = ACTIONS(1737), + [sym_preproc_def] = STATE(712), + [sym_preproc_function_def] = STATE(712), + [sym_preproc_call] = STATE(712), + [sym_preproc_if_in_field_declaration_list] = STATE(712), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(712), + [sym_type_definition] = STATE(712), + [sym__declaration_modifiers] = STATE(3706), + [sym__declaration_specifiers] = STATE(4831), + [sym_attribute_specifier] = STATE(3706), + [sym_attribute_declaration] = STATE(3706), + [sym_ms_declspec_modifier] = STATE(3706), + [sym_ms_based_modifier] = STATE(7654), + [sym__declarator] = STATE(5881), + [sym_parenthesized_declarator] = STATE(5640), + [sym_attributed_declarator] = STATE(5640), + [sym_pointer_declarator] = STATE(5640), + [sym_function_declarator] = STATE(5531), + [sym_array_declarator] = STATE(5640), + [sym_storage_class_specifier] = STATE(3706), + [sym_type_qualifier] = STATE(3706), + [sym__type_specifier] = STATE(3845), + [sym_sized_type_specifier] = STATE(3918), + [sym_enum_specifier] = STATE(3918), + [sym_struct_specifier] = STATE(3918), + [sym_union_specifier] = STATE(3918), + [sym__field_declaration_list_item] = STATE(712), + [sym_field_declaration] = STATE(712), + [sym_placeholder_type_specifier] = STATE(3918), + [sym_decltype_auto] = STATE(3916), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3918), + [sym_virtual] = STATE(3706), + [sym_explicit_function_specifier] = STATE(2247), + [sym_dependent_type] = STATE(3918), + [sym_template_declaration] = STATE(712), + [sym_operator_cast] = STATE(5897), + [sym_inline_method_definition] = STATE(712), + [sym__constructor_specifiers] = STATE(2247), + [sym_operator_cast_definition] = STATE(712), + [sym_operator_cast_declaration] = STATE(712), + [sym_constructor_or_destructor_definition] = STATE(712), + [sym_constructor_or_destructor_declaration] = STATE(712), + [sym_friend_declaration] = STATE(712), + [sym_access_specifier] = STATE(7346), + [sym_reference_declarator] = STATE(5640), + [sym_structured_binding_declarator] = STATE(5640), + [sym_template_type] = STATE(3680), + [sym_template_function] = STATE(5640), + [sym_using_declaration] = STATE(712), + [sym_alias_declaration] = STATE(712), + [sym_static_assert_declaration] = STATE(712), + [sym_destructor_name] = STATE(5640), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5151), + [sym_qualified_identifier] = STATE(5640), + [sym_qualified_type_identifier] = STATE(3966), + [sym_qualified_operator_cast_identifier] = STATE(5897), + [sym_operator_name] = STATE(5640), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(712), + [aux_sym__declaration_specifiers_repeat1] = STATE(2509), + [aux_sym_sized_type_specifier_repeat1] = STATE(3981), + [aux_sym_operator_cast_definition_repeat1] = STATE(2247), + [sym_identifier] = ACTIONS(2544), + [aux_sym_preproc_def_token1] = ACTIONS(3479), + [aux_sym_preproc_if_token1] = ACTIONS(3481), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3483), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3483), + [sym_preproc_directive] = ACTIONS(3485), + [anon_sym_LPAREN2] = ACTIONS(2560), + [anon_sym_TILDE] = ACTIONS(2562), + [anon_sym_STAR] = ACTIONS(2564), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_typedef] = ACTIONS(3487), + [anon_sym_extern] = ACTIONS(53), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(2570), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1813), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(45), + [anon_sym_RBRACE] = ACTIONS(3556), + [anon_sym_LBRACK] = ACTIONS(2572), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(53), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(2574), + [anon_sym_unsigned] = ACTIONS(2574), + [anon_sym_long] = ACTIONS(2574), + [anon_sym_short] = ACTIONS(2574), + [sym_primitive_type] = ACTIONS(2576), + [anon_sym_enum] = ACTIONS(2578), + [anon_sym_class] = ACTIONS(2580), + [anon_sym_struct] = ACTIONS(2582), + [anon_sym_union] = ACTIONS(2584), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2586), + [anon_sym_decltype] = ACTIONS(2588), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_explicit] = ACTIONS(119), + [anon_sym_typename] = ACTIONS(2590), + [anon_sym_template] = ACTIONS(3491), + [anon_sym_operator] = ACTIONS(125), + [anon_sym_friend] = ACTIONS(3493), + [anon_sym_public] = ACTIONS(2596), + [anon_sym_private] = ACTIONS(2596), + [anon_sym_protected] = ACTIONS(2596), + [anon_sym_using] = ACTIONS(3495), + [anon_sym_static_assert] = ACTIONS(3497), }, [718] = { - [sym_identifier] = ACTIONS(2462), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2464), - [anon_sym_AMP] = ACTIONS(2462), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_explicit] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_operator] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_namespace] = ACTIONS(2462), - [anon_sym_using] = ACTIONS(2462), - [anon_sym_static_assert] = ACTIONS(2462), - [anon_sym_concept] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token2] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [aux_sym_preproc_else_token1] = ACTIONS(3048), + [aux_sym_preproc_elif_token1] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, [719] = { - [sym_identifier] = ACTIONS(2462), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2464), - [anon_sym_AMP] = ACTIONS(2462), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_explicit] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_operator] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_namespace] = ACTIONS(2462), - [anon_sym_using] = ACTIONS(2462), - [anon_sym_static_assert] = ACTIONS(2462), - [anon_sym_concept] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token2] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [aux_sym_preproc_else_token1] = ACTIONS(3048), + [aux_sym_preproc_elif_token1] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, [720] = { - [ts_builtin_sym_end] = ACTIONS(2464), - [sym_identifier] = ACTIONS(2462), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2464), - [anon_sym_AMP] = ACTIONS(2462), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_explicit] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_operator] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_namespace] = ACTIONS(2462), - [anon_sym_using] = ACTIONS(2462), - [anon_sym_static_assert] = ACTIONS(2462), - [anon_sym_concept] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_preproc_def] = STATE(720), + [sym_preproc_function_def] = STATE(720), + [sym_preproc_call] = STATE(720), + [sym_preproc_if_in_field_declaration_list] = STATE(720), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(720), + [sym_type_definition] = STATE(720), + [sym__declaration_modifiers] = STATE(3706), + [sym__declaration_specifiers] = STATE(4853), + [sym_attribute_specifier] = STATE(3706), + [sym_attribute_declaration] = STATE(3706), + [sym_ms_declspec_modifier] = STATE(3706), + [sym_ms_based_modifier] = STATE(7654), + [sym__declarator] = STATE(5881), + [sym_parenthesized_declarator] = STATE(5640), + [sym_attributed_declarator] = STATE(5640), + [sym_pointer_declarator] = STATE(5640), + [sym_function_declarator] = STATE(5507), + [sym_array_declarator] = STATE(5640), + [sym_storage_class_specifier] = STATE(3706), + [sym_type_qualifier] = STATE(3706), + [sym__type_specifier] = STATE(3845), + [sym_sized_type_specifier] = STATE(3918), + [sym_enum_specifier] = STATE(3918), + [sym_struct_specifier] = STATE(3918), + [sym_union_specifier] = STATE(3918), + [sym__field_declaration_list_item] = STATE(720), + [sym_field_declaration] = STATE(720), + [sym_placeholder_type_specifier] = STATE(3918), + [sym_decltype_auto] = STATE(3916), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3918), + [sym_virtual] = STATE(3706), + [sym_explicit_function_specifier] = STATE(2236), + [sym_dependent_type] = STATE(3918), + [sym_template_declaration] = STATE(720), + [sym_operator_cast] = STATE(5887), + [sym_inline_method_definition] = STATE(720), + [sym__constructor_specifiers] = STATE(2236), + [sym_operator_cast_definition] = STATE(720), + [sym_operator_cast_declaration] = STATE(720), + [sym_constructor_or_destructor_definition] = STATE(720), + [sym_constructor_or_destructor_declaration] = STATE(720), + [sym_friend_declaration] = STATE(720), + [sym_access_specifier] = STATE(7275), + [sym_reference_declarator] = STATE(5640), + [sym_structured_binding_declarator] = STATE(5640), + [sym_template_type] = STATE(3680), + [sym_template_function] = STATE(5640), + [sym_using_declaration] = STATE(720), + [sym_alias_declaration] = STATE(720), + [sym_static_assert_declaration] = STATE(720), + [sym_destructor_name] = STATE(5640), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5151), + [sym_qualified_identifier] = STATE(5640), + [sym_qualified_type_identifier] = STATE(3966), + [sym_qualified_operator_cast_identifier] = STATE(5887), + [sym_operator_name] = STATE(5640), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(720), + [aux_sym__declaration_specifiers_repeat1] = STATE(2509), + [aux_sym_sized_type_specifier_repeat1] = STATE(3981), + [aux_sym_operator_cast_definition_repeat1] = STATE(2236), + [sym_identifier] = ACTIONS(2747), + [aux_sym_preproc_def_token1] = ACTIONS(3558), + [aux_sym_preproc_if_token1] = ACTIONS(3561), + [aux_sym_preproc_if_token2] = ACTIONS(2756), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3564), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3564), + [sym_preproc_directive] = ACTIONS(3567), + [anon_sym_LPAREN2] = ACTIONS(2764), + [anon_sym_TILDE] = ACTIONS(2767), + [anon_sym_STAR] = ACTIONS(2770), + [anon_sym_AMP_AMP] = ACTIONS(2773), + [anon_sym_AMP] = ACTIONS(2776), + [anon_sym_typedef] = ACTIONS(3570), + [anon_sym_extern] = ACTIONS(2782), + [anon_sym___attribute__] = ACTIONS(2785), + [anon_sym_COLON_COLON] = ACTIONS(2788), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2791), + [anon_sym___declspec] = ACTIONS(2794), + [anon_sym___based] = ACTIONS(2797), + [anon_sym_LBRACK] = ACTIONS(2800), + [anon_sym_static] = ACTIONS(2782), + [anon_sym_register] = ACTIONS(2782), + [anon_sym_inline] = ACTIONS(2782), + [anon_sym_thread_local] = ACTIONS(2782), + [anon_sym_const] = ACTIONS(2803), + [anon_sym_constexpr] = ACTIONS(2803), + [anon_sym_volatile] = ACTIONS(2803), + [anon_sym_restrict] = ACTIONS(2803), + [anon_sym___restrict__] = ACTIONS(2803), + [anon_sym__Atomic] = ACTIONS(2803), + [anon_sym__Noreturn] = ACTIONS(2803), + [anon_sym_noreturn] = ACTIONS(2803), + [anon_sym_mutable] = ACTIONS(2803), + [anon_sym_constinit] = ACTIONS(2803), + [anon_sym_consteval] = ACTIONS(2803), + [anon_sym_signed] = ACTIONS(2806), + [anon_sym_unsigned] = ACTIONS(2806), + [anon_sym_long] = ACTIONS(2806), + [anon_sym_short] = ACTIONS(2806), + [sym_primitive_type] = ACTIONS(2809), + [anon_sym_enum] = ACTIONS(2812), + [anon_sym_class] = ACTIONS(2815), + [anon_sym_struct] = ACTIONS(2818), + [anon_sym_union] = ACTIONS(2821), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2824), + [anon_sym_decltype] = ACTIONS(2827), + [anon_sym_virtual] = ACTIONS(2830), + [anon_sym_explicit] = ACTIONS(2833), + [anon_sym_typename] = ACTIONS(2836), + [anon_sym_template] = ACTIONS(3573), + [anon_sym_operator] = ACTIONS(2842), + [anon_sym_friend] = ACTIONS(3576), + [anon_sym_public] = ACTIONS(2848), + [anon_sym_private] = ACTIONS(2848), + [anon_sym_protected] = ACTIONS(2848), + [anon_sym_using] = ACTIONS(3579), + [anon_sym_static_assert] = ACTIONS(3582), }, [721] = { - [sym_identifier] = ACTIONS(2462), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2464), - [anon_sym_AMP] = ACTIONS(2462), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_explicit] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_operator] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_namespace] = ACTIONS(2462), - [anon_sym_using] = ACTIONS(2462), - [anon_sym_static_assert] = ACTIONS(2462), - [anon_sym_concept] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token2] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [aux_sym_preproc_else_token1] = ACTIONS(3028), + [aux_sym_preproc_elif_token1] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, [722] = { - [sym_identifier] = ACTIONS(2462), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2464), - [anon_sym_AMP] = ACTIONS(2462), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_explicit] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_operator] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_namespace] = ACTIONS(2462), - [anon_sym_using] = ACTIONS(2462), - [anon_sym_static_assert] = ACTIONS(2462), - [anon_sym_concept] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token2] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [aux_sym_preproc_else_token1] = ACTIONS(3048), + [aux_sym_preproc_elif_token1] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, [723] = { - [sym_identifier] = ACTIONS(2462), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2464), - [anon_sym_AMP] = ACTIONS(2462), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_explicit] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_operator] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_namespace] = ACTIONS(2462), - [anon_sym_using] = ACTIONS(2462), - [anon_sym_static_assert] = ACTIONS(2462), - [anon_sym_concept] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token2] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [aux_sym_preproc_else_token1] = ACTIONS(3028), + [aux_sym_preproc_elif_token1] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, [724] = { - [sym_identifier] = ACTIONS(2462), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2464), - [anon_sym_AMP] = ACTIONS(2462), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_explicit] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_operator] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_namespace] = ACTIONS(2462), - [anon_sym_using] = ACTIONS(2462), - [anon_sym_static_assert] = ACTIONS(2462), - [anon_sym_concept] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_identifier] = ACTIONS(3079), + [aux_sym_preproc_include_token1] = ACTIONS(3079), + [aux_sym_preproc_def_token1] = ACTIONS(3079), + [aux_sym_preproc_if_token1] = ACTIONS(3079), + [aux_sym_preproc_if_token2] = ACTIONS(3079), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3079), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3079), + [aux_sym_preproc_else_token1] = ACTIONS(3079), + [aux_sym_preproc_elif_token1] = ACTIONS(3079), + [sym_preproc_directive] = ACTIONS(3079), + [anon_sym_LPAREN2] = ACTIONS(3081), + [anon_sym_BANG] = ACTIONS(3081), + [anon_sym_TILDE] = ACTIONS(3081), + [anon_sym_DASH] = ACTIONS(3079), + [anon_sym_PLUS] = ACTIONS(3079), + [anon_sym_STAR] = ACTIONS(3081), + [anon_sym_AMP_AMP] = ACTIONS(3081), + [anon_sym_AMP] = ACTIONS(3079), + [anon_sym_SEMI] = ACTIONS(3081), + [anon_sym_typedef] = ACTIONS(3079), + [anon_sym_extern] = ACTIONS(3079), + [anon_sym___attribute__] = ACTIONS(3079), + [anon_sym_COLON_COLON] = ACTIONS(3081), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3081), + [anon_sym___declspec] = ACTIONS(3079), + [anon_sym___based] = ACTIONS(3079), + [anon_sym___cdecl] = ACTIONS(3079), + [anon_sym___clrcall] = ACTIONS(3079), + [anon_sym___stdcall] = ACTIONS(3079), + [anon_sym___fastcall] = ACTIONS(3079), + [anon_sym___thiscall] = ACTIONS(3079), + [anon_sym___vectorcall] = ACTIONS(3079), + [anon_sym_LBRACE] = ACTIONS(3081), + [anon_sym_LBRACK] = ACTIONS(3079), + [anon_sym_static] = ACTIONS(3079), + [anon_sym_register] = ACTIONS(3079), + [anon_sym_inline] = ACTIONS(3079), + [anon_sym_thread_local] = ACTIONS(3079), + [anon_sym_const] = ACTIONS(3079), + [anon_sym_constexpr] = ACTIONS(3079), + [anon_sym_volatile] = ACTIONS(3079), + [anon_sym_restrict] = ACTIONS(3079), + [anon_sym___restrict__] = ACTIONS(3079), + [anon_sym__Atomic] = ACTIONS(3079), + [anon_sym__Noreturn] = ACTIONS(3079), + [anon_sym_noreturn] = ACTIONS(3079), + [anon_sym_mutable] = ACTIONS(3079), + [anon_sym_constinit] = ACTIONS(3079), + [anon_sym_consteval] = ACTIONS(3079), + [anon_sym_signed] = ACTIONS(3079), + [anon_sym_unsigned] = ACTIONS(3079), + [anon_sym_long] = ACTIONS(3079), + [anon_sym_short] = ACTIONS(3079), + [sym_primitive_type] = ACTIONS(3079), + [anon_sym_enum] = ACTIONS(3079), + [anon_sym_class] = ACTIONS(3079), + [anon_sym_struct] = ACTIONS(3079), + [anon_sym_union] = ACTIONS(3079), + [anon_sym_if] = ACTIONS(3079), + [anon_sym_else] = ACTIONS(3585), + [anon_sym_switch] = ACTIONS(3079), + [anon_sym_case] = ACTIONS(3079), + [anon_sym_default] = ACTIONS(3079), + [anon_sym_while] = ACTIONS(3079), + [anon_sym_do] = ACTIONS(3079), + [anon_sym_for] = ACTIONS(3079), + [anon_sym_return] = ACTIONS(3079), + [anon_sym_break] = ACTIONS(3079), + [anon_sym_continue] = ACTIONS(3079), + [anon_sym_goto] = ACTIONS(3079), + [anon_sym_not] = ACTIONS(3079), + [anon_sym_compl] = ACTIONS(3079), + [anon_sym_DASH_DASH] = ACTIONS(3081), + [anon_sym_PLUS_PLUS] = ACTIONS(3081), + [anon_sym_sizeof] = ACTIONS(3079), + [anon_sym_offsetof] = ACTIONS(3079), + [anon_sym__Generic] = ACTIONS(3079), + [anon_sym_asm] = ACTIONS(3079), + [anon_sym___asm__] = ACTIONS(3079), + [sym_number_literal] = ACTIONS(3081), + [anon_sym_L_SQUOTE] = ACTIONS(3081), + [anon_sym_u_SQUOTE] = ACTIONS(3081), + [anon_sym_U_SQUOTE] = ACTIONS(3081), + [anon_sym_u8_SQUOTE] = ACTIONS(3081), + [anon_sym_SQUOTE] = ACTIONS(3081), + [anon_sym_L_DQUOTE] = ACTIONS(3081), + [anon_sym_u_DQUOTE] = ACTIONS(3081), + [anon_sym_U_DQUOTE] = ACTIONS(3081), + [anon_sym_u8_DQUOTE] = ACTIONS(3081), + [anon_sym_DQUOTE] = ACTIONS(3081), + [sym_true] = ACTIONS(3079), + [sym_false] = ACTIONS(3079), + [anon_sym_NULL] = ACTIONS(3079), + [anon_sym_nullptr] = ACTIONS(3079), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3079), + [anon_sym_decltype] = ACTIONS(3079), + [anon_sym_virtual] = ACTIONS(3079), + [anon_sym_explicit] = ACTIONS(3079), + [anon_sym_typename] = ACTIONS(3079), + [anon_sym_template] = ACTIONS(3079), + [anon_sym_operator] = ACTIONS(3079), + [anon_sym_try] = ACTIONS(3079), + [anon_sym_delete] = ACTIONS(3079), + [anon_sym_throw] = ACTIONS(3079), + [anon_sym_namespace] = ACTIONS(3079), + [anon_sym_using] = ACTIONS(3079), + [anon_sym_static_assert] = ACTIONS(3079), + [anon_sym_concept] = ACTIONS(3079), + [anon_sym_co_return] = ACTIONS(3079), + [anon_sym_co_yield] = ACTIONS(3079), + [anon_sym_R_DQUOTE] = ACTIONS(3081), + [anon_sym_LR_DQUOTE] = ACTIONS(3081), + [anon_sym_uR_DQUOTE] = ACTIONS(3081), + [anon_sym_UR_DQUOTE] = ACTIONS(3081), + [anon_sym_u8R_DQUOTE] = ACTIONS(3081), + [anon_sym_co_await] = ACTIONS(3079), + [anon_sym_new] = ACTIONS(3079), + [anon_sym_requires] = ACTIONS(3079), + [sym_this] = ACTIONS(3079), }, [725] = { - [sym_identifier] = ACTIONS(2462), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2464), - [anon_sym_AMP] = ACTIONS(2462), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_explicit] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_operator] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_namespace] = ACTIONS(2462), - [anon_sym_using] = ACTIONS(2462), - [anon_sym_static_assert] = ACTIONS(2462), - [anon_sym_concept] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token2] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [aux_sym_preproc_else_token1] = ACTIONS(3028), + [aux_sym_preproc_elif_token1] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, [726] = { - [sym_identifier] = ACTIONS(2462), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2464), - [anon_sym_AMP] = ACTIONS(2462), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_explicit] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_operator] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_namespace] = ACTIONS(2462), - [anon_sym_using] = ACTIONS(2462), - [anon_sym_static_assert] = ACTIONS(2462), - [anon_sym_concept] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token2] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [aux_sym_preproc_else_token1] = ACTIONS(3048), + [aux_sym_preproc_elif_token1] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, [727] = { - [sym_identifier] = ACTIONS(2462), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2464), - [anon_sym_AMP] = ACTIONS(2462), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_explicit] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_operator] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_namespace] = ACTIONS(2462), - [anon_sym_using] = ACTIONS(2462), - [anon_sym_static_assert] = ACTIONS(2462), - [anon_sym_concept] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token2] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [aux_sym_preproc_else_token1] = ACTIONS(3048), + [aux_sym_preproc_elif_token1] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, [728] = { - [sym_identifier] = ACTIONS(2462), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2464), - [anon_sym_AMP] = ACTIONS(2462), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_explicit] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_operator] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_namespace] = ACTIONS(2462), - [anon_sym_using] = ACTIONS(2462), - [anon_sym_static_assert] = ACTIONS(2462), - [anon_sym_concept] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token2] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [aux_sym_preproc_else_token1] = ACTIONS(3048), + [aux_sym_preproc_elif_token1] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, [729] = { - [ts_builtin_sym_end] = ACTIONS(2464), - [sym_identifier] = ACTIONS(2462), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2464), - [anon_sym_AMP] = ACTIONS(2462), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_explicit] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_operator] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_namespace] = ACTIONS(2462), - [anon_sym_using] = ACTIONS(2462), - [anon_sym_static_assert] = ACTIONS(2462), - [anon_sym_concept] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_identifier] = ACTIONS(2962), + [aux_sym_preproc_include_token1] = ACTIONS(2962), + [aux_sym_preproc_def_token1] = ACTIONS(2962), + [aux_sym_preproc_if_token1] = ACTIONS(2962), + [aux_sym_preproc_if_token2] = ACTIONS(2962), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2962), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2962), + [aux_sym_preproc_else_token1] = ACTIONS(2962), + [aux_sym_preproc_elif_token1] = ACTIONS(2962), + [sym_preproc_directive] = ACTIONS(2962), + [anon_sym_LPAREN2] = ACTIONS(2964), + [anon_sym_BANG] = ACTIONS(2964), + [anon_sym_TILDE] = ACTIONS(2964), + [anon_sym_DASH] = ACTIONS(2962), + [anon_sym_PLUS] = ACTIONS(2962), + [anon_sym_STAR] = ACTIONS(2964), + [anon_sym_AMP_AMP] = ACTIONS(2964), + [anon_sym_AMP] = ACTIONS(2962), + [anon_sym_SEMI] = ACTIONS(2964), + [anon_sym_typedef] = ACTIONS(2962), + [anon_sym_extern] = ACTIONS(2962), + [anon_sym___attribute__] = ACTIONS(2962), + [anon_sym_COLON_COLON] = ACTIONS(2964), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2964), + [anon_sym___declspec] = ACTIONS(2962), + [anon_sym___based] = ACTIONS(2962), + [anon_sym___cdecl] = ACTIONS(2962), + [anon_sym___clrcall] = ACTIONS(2962), + [anon_sym___stdcall] = ACTIONS(2962), + [anon_sym___fastcall] = ACTIONS(2962), + [anon_sym___thiscall] = ACTIONS(2962), + [anon_sym___vectorcall] = ACTIONS(2962), + [anon_sym_LBRACE] = ACTIONS(2964), + [anon_sym_LBRACK] = ACTIONS(2962), + [anon_sym_static] = ACTIONS(2962), + [anon_sym_register] = ACTIONS(2962), + [anon_sym_inline] = ACTIONS(2962), + [anon_sym_thread_local] = ACTIONS(2962), + [anon_sym_const] = ACTIONS(2962), + [anon_sym_constexpr] = ACTIONS(2962), + [anon_sym_volatile] = ACTIONS(2962), + [anon_sym_restrict] = ACTIONS(2962), + [anon_sym___restrict__] = ACTIONS(2962), + [anon_sym__Atomic] = ACTIONS(2962), + [anon_sym__Noreturn] = ACTIONS(2962), + [anon_sym_noreturn] = ACTIONS(2962), + [anon_sym_mutable] = ACTIONS(2962), + [anon_sym_constinit] = ACTIONS(2962), + [anon_sym_consteval] = ACTIONS(2962), + [anon_sym_signed] = ACTIONS(2962), + [anon_sym_unsigned] = ACTIONS(2962), + [anon_sym_long] = ACTIONS(2962), + [anon_sym_short] = ACTIONS(2962), + [sym_primitive_type] = ACTIONS(2962), + [anon_sym_enum] = ACTIONS(2962), + [anon_sym_class] = ACTIONS(2962), + [anon_sym_struct] = ACTIONS(2962), + [anon_sym_union] = ACTIONS(2962), + [anon_sym_if] = ACTIONS(2962), + [anon_sym_else] = ACTIONS(2962), + [anon_sym_switch] = ACTIONS(2962), + [anon_sym_case] = ACTIONS(2962), + [anon_sym_default] = ACTIONS(2962), + [anon_sym_while] = ACTIONS(2962), + [anon_sym_do] = ACTIONS(2962), + [anon_sym_for] = ACTIONS(2962), + [anon_sym_return] = ACTIONS(2962), + [anon_sym_break] = ACTIONS(2962), + [anon_sym_continue] = ACTIONS(2962), + [anon_sym_goto] = ACTIONS(2962), + [anon_sym_not] = ACTIONS(2962), + [anon_sym_compl] = ACTIONS(2962), + [anon_sym_DASH_DASH] = ACTIONS(2964), + [anon_sym_PLUS_PLUS] = ACTIONS(2964), + [anon_sym_sizeof] = ACTIONS(2962), + [anon_sym_offsetof] = ACTIONS(2962), + [anon_sym__Generic] = ACTIONS(2962), + [anon_sym_asm] = ACTIONS(2962), + [anon_sym___asm__] = ACTIONS(2962), + [sym_number_literal] = ACTIONS(2964), + [anon_sym_L_SQUOTE] = ACTIONS(2964), + [anon_sym_u_SQUOTE] = ACTIONS(2964), + [anon_sym_U_SQUOTE] = ACTIONS(2964), + [anon_sym_u8_SQUOTE] = ACTIONS(2964), + [anon_sym_SQUOTE] = ACTIONS(2964), + [anon_sym_L_DQUOTE] = ACTIONS(2964), + [anon_sym_u_DQUOTE] = ACTIONS(2964), + [anon_sym_U_DQUOTE] = ACTIONS(2964), + [anon_sym_u8_DQUOTE] = ACTIONS(2964), + [anon_sym_DQUOTE] = ACTIONS(2964), + [sym_true] = ACTIONS(2962), + [sym_false] = ACTIONS(2962), + [anon_sym_NULL] = ACTIONS(2962), + [anon_sym_nullptr] = ACTIONS(2962), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2962), + [anon_sym_decltype] = ACTIONS(2962), + [anon_sym_virtual] = ACTIONS(2962), + [anon_sym_explicit] = ACTIONS(2962), + [anon_sym_typename] = ACTIONS(2962), + [anon_sym_template] = ACTIONS(2962), + [anon_sym_operator] = ACTIONS(2962), + [anon_sym_try] = ACTIONS(2962), + [anon_sym_delete] = ACTIONS(2962), + [anon_sym_throw] = ACTIONS(2962), + [anon_sym_namespace] = ACTIONS(2962), + [anon_sym_using] = ACTIONS(2962), + [anon_sym_static_assert] = ACTIONS(2962), + [anon_sym_concept] = ACTIONS(2962), + [anon_sym_co_return] = ACTIONS(2962), + [anon_sym_co_yield] = ACTIONS(2962), + [anon_sym_R_DQUOTE] = ACTIONS(2964), + [anon_sym_LR_DQUOTE] = ACTIONS(2964), + [anon_sym_uR_DQUOTE] = ACTIONS(2964), + [anon_sym_UR_DQUOTE] = ACTIONS(2964), + [anon_sym_u8R_DQUOTE] = ACTIONS(2964), + [anon_sym_co_await] = ACTIONS(2962), + [anon_sym_new] = ACTIONS(2962), + [anon_sym_requires] = ACTIONS(2962), + [sym_this] = ACTIONS(2962), }, [730] = { - [ts_builtin_sym_end] = ACTIONS(2464), - [sym_identifier] = ACTIONS(2462), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2464), - [anon_sym_AMP] = ACTIONS(2462), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_explicit] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_operator] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_namespace] = ACTIONS(2462), - [anon_sym_using] = ACTIONS(2462), - [anon_sym_static_assert] = ACTIONS(2462), - [anon_sym_concept] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_preproc_def] = STATE(717), + [sym_preproc_function_def] = STATE(717), + [sym_preproc_call] = STATE(717), + [sym_preproc_if_in_field_declaration_list] = STATE(717), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(717), + [sym_type_definition] = STATE(717), + [sym__declaration_modifiers] = STATE(3706), + [sym__declaration_specifiers] = STATE(4831), + [sym_attribute_specifier] = STATE(3706), + [sym_attribute_declaration] = STATE(3706), + [sym_ms_declspec_modifier] = STATE(3706), + [sym_ms_based_modifier] = STATE(7654), + [sym__declarator] = STATE(5881), + [sym_parenthesized_declarator] = STATE(5640), + [sym_attributed_declarator] = STATE(5640), + [sym_pointer_declarator] = STATE(5640), + [sym_function_declarator] = STATE(5531), + [sym_array_declarator] = STATE(5640), + [sym_storage_class_specifier] = STATE(3706), + [sym_type_qualifier] = STATE(3706), + [sym__type_specifier] = STATE(3845), + [sym_sized_type_specifier] = STATE(3918), + [sym_enum_specifier] = STATE(3918), + [sym_struct_specifier] = STATE(3918), + [sym_union_specifier] = STATE(3918), + [sym__field_declaration_list_item] = STATE(717), + [sym_field_declaration] = STATE(717), + [sym_placeholder_type_specifier] = STATE(3918), + [sym_decltype_auto] = STATE(3916), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3918), + [sym_virtual] = STATE(3706), + [sym_explicit_function_specifier] = STATE(2247), + [sym_dependent_type] = STATE(3918), + [sym_template_declaration] = STATE(717), + [sym_operator_cast] = STATE(5897), + [sym_inline_method_definition] = STATE(717), + [sym__constructor_specifiers] = STATE(2247), + [sym_operator_cast_definition] = STATE(717), + [sym_operator_cast_declaration] = STATE(717), + [sym_constructor_or_destructor_definition] = STATE(717), + [sym_constructor_or_destructor_declaration] = STATE(717), + [sym_friend_declaration] = STATE(717), + [sym_access_specifier] = STATE(7346), + [sym_reference_declarator] = STATE(5640), + [sym_structured_binding_declarator] = STATE(5640), + [sym_template_type] = STATE(3680), + [sym_template_function] = STATE(5640), + [sym_using_declaration] = STATE(717), + [sym_alias_declaration] = STATE(717), + [sym_static_assert_declaration] = STATE(717), + [sym_destructor_name] = STATE(5640), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5151), + [sym_qualified_identifier] = STATE(5640), + [sym_qualified_type_identifier] = STATE(3966), + [sym_qualified_operator_cast_identifier] = STATE(5897), + [sym_operator_name] = STATE(5640), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(717), + [aux_sym__declaration_specifiers_repeat1] = STATE(2509), + [aux_sym_sized_type_specifier_repeat1] = STATE(3981), + [aux_sym_operator_cast_definition_repeat1] = STATE(2247), + [sym_identifier] = ACTIONS(2544), + [aux_sym_preproc_def_token1] = ACTIONS(3479), + [aux_sym_preproc_if_token1] = ACTIONS(3481), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3483), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3483), + [sym_preproc_directive] = ACTIONS(3485), + [anon_sym_LPAREN2] = ACTIONS(2560), + [anon_sym_TILDE] = ACTIONS(2562), + [anon_sym_STAR] = ACTIONS(2564), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_typedef] = ACTIONS(3487), + [anon_sym_extern] = ACTIONS(53), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(2570), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1813), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(45), + [anon_sym_RBRACE] = ACTIONS(3587), + [anon_sym_LBRACK] = ACTIONS(2572), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(53), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(2574), + [anon_sym_unsigned] = ACTIONS(2574), + [anon_sym_long] = ACTIONS(2574), + [anon_sym_short] = ACTIONS(2574), + [sym_primitive_type] = ACTIONS(2576), + [anon_sym_enum] = ACTIONS(2578), + [anon_sym_class] = ACTIONS(2580), + [anon_sym_struct] = ACTIONS(2582), + [anon_sym_union] = ACTIONS(2584), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2586), + [anon_sym_decltype] = ACTIONS(2588), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_explicit] = ACTIONS(119), + [anon_sym_typename] = ACTIONS(2590), + [anon_sym_template] = ACTIONS(3491), + [anon_sym_operator] = ACTIONS(125), + [anon_sym_friend] = ACTIONS(3493), + [anon_sym_public] = ACTIONS(2596), + [anon_sym_private] = ACTIONS(2596), + [anon_sym_protected] = ACTIONS(2596), + [anon_sym_using] = ACTIONS(3495), + [anon_sym_static_assert] = ACTIONS(3497), }, [731] = { - [sym_identifier] = ACTIONS(2462), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2464), - [anon_sym_AMP] = ACTIONS(2462), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_explicit] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_operator] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_namespace] = ACTIONS(2462), - [anon_sym_using] = ACTIONS(2462), - [anon_sym_static_assert] = ACTIONS(2462), - [anon_sym_concept] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_identifier] = ACTIONS(2542), + [aux_sym_preproc_include_token1] = ACTIONS(2542), + [aux_sym_preproc_def_token1] = ACTIONS(2542), + [anon_sym_COMMA] = ACTIONS(2960), + [aux_sym_preproc_if_token1] = ACTIONS(2542), + [aux_sym_preproc_if_token2] = ACTIONS(2542), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2542), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2542), + [aux_sym_preproc_else_token1] = ACTIONS(2542), + [aux_sym_preproc_elif_token1] = ACTIONS(2542), + [sym_preproc_directive] = ACTIONS(2542), + [anon_sym_LPAREN2] = ACTIONS(2540), + [anon_sym_BANG] = ACTIONS(2540), + [anon_sym_TILDE] = ACTIONS(2540), + [anon_sym_DASH] = ACTIONS(2542), + [anon_sym_PLUS] = ACTIONS(2542), + [anon_sym_STAR] = ACTIONS(2540), + [anon_sym_AMP_AMP] = ACTIONS(2540), + [anon_sym_AMP] = ACTIONS(2542), + [anon_sym_SEMI] = ACTIONS(2960), + [anon_sym_typedef] = ACTIONS(2542), + [anon_sym_extern] = ACTIONS(2542), + [anon_sym___attribute__] = ACTIONS(2542), + [anon_sym_COLON_COLON] = ACTIONS(2540), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2540), + [anon_sym___declspec] = ACTIONS(2542), + [anon_sym___based] = ACTIONS(2542), + [anon_sym___cdecl] = ACTIONS(2542), + [anon_sym___clrcall] = ACTIONS(2542), + [anon_sym___stdcall] = ACTIONS(2542), + [anon_sym___fastcall] = ACTIONS(2542), + [anon_sym___thiscall] = ACTIONS(2542), + [anon_sym___vectorcall] = ACTIONS(2542), + [anon_sym_LBRACE] = ACTIONS(2540), + [anon_sym_LBRACK] = ACTIONS(2542), + [anon_sym_static] = ACTIONS(2542), + [anon_sym_register] = ACTIONS(2542), + [anon_sym_inline] = ACTIONS(2542), + [anon_sym_thread_local] = ACTIONS(2542), + [anon_sym_const] = ACTIONS(2542), + [anon_sym_constexpr] = ACTIONS(2542), + [anon_sym_volatile] = ACTIONS(2542), + [anon_sym_restrict] = ACTIONS(2542), + [anon_sym___restrict__] = ACTIONS(2542), + [anon_sym__Atomic] = ACTIONS(2542), + [anon_sym__Noreturn] = ACTIONS(2542), + [anon_sym_noreturn] = ACTIONS(2542), + [anon_sym_mutable] = ACTIONS(2542), + [anon_sym_constinit] = ACTIONS(2542), + [anon_sym_consteval] = ACTIONS(2542), + [anon_sym_signed] = ACTIONS(2542), + [anon_sym_unsigned] = ACTIONS(2542), + [anon_sym_long] = ACTIONS(2542), + [anon_sym_short] = ACTIONS(2542), + [sym_primitive_type] = ACTIONS(2542), + [anon_sym_enum] = ACTIONS(2542), + [anon_sym_class] = ACTIONS(2542), + [anon_sym_struct] = ACTIONS(2542), + [anon_sym_union] = ACTIONS(2542), + [anon_sym_if] = ACTIONS(2542), + [anon_sym_switch] = ACTIONS(2542), + [anon_sym_case] = ACTIONS(2542), + [anon_sym_default] = ACTIONS(2542), + [anon_sym_while] = ACTIONS(2542), + [anon_sym_do] = ACTIONS(2542), + [anon_sym_for] = ACTIONS(2542), + [anon_sym_return] = ACTIONS(2542), + [anon_sym_break] = ACTIONS(2542), + [anon_sym_continue] = ACTIONS(2542), + [anon_sym_goto] = ACTIONS(2542), + [anon_sym_not] = ACTIONS(2542), + [anon_sym_compl] = ACTIONS(2542), + [anon_sym_DASH_DASH] = ACTIONS(2540), + [anon_sym_PLUS_PLUS] = ACTIONS(2540), + [anon_sym_sizeof] = ACTIONS(2542), + [anon_sym_offsetof] = ACTIONS(2542), + [anon_sym__Generic] = ACTIONS(2542), + [anon_sym_asm] = ACTIONS(2542), + [anon_sym___asm__] = ACTIONS(2542), + [sym_number_literal] = ACTIONS(2540), + [anon_sym_L_SQUOTE] = ACTIONS(2540), + [anon_sym_u_SQUOTE] = ACTIONS(2540), + [anon_sym_U_SQUOTE] = ACTIONS(2540), + [anon_sym_u8_SQUOTE] = ACTIONS(2540), + [anon_sym_SQUOTE] = ACTIONS(2540), + [anon_sym_L_DQUOTE] = ACTIONS(2540), + [anon_sym_u_DQUOTE] = ACTIONS(2540), + [anon_sym_U_DQUOTE] = ACTIONS(2540), + [anon_sym_u8_DQUOTE] = ACTIONS(2540), + [anon_sym_DQUOTE] = ACTIONS(2540), + [sym_true] = ACTIONS(2542), + [sym_false] = ACTIONS(2542), + [anon_sym_NULL] = ACTIONS(2542), + [anon_sym_nullptr] = ACTIONS(2542), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2542), + [anon_sym_decltype] = ACTIONS(2542), + [anon_sym_virtual] = ACTIONS(2542), + [anon_sym_explicit] = ACTIONS(2542), + [anon_sym_typename] = ACTIONS(2542), + [anon_sym_template] = ACTIONS(2542), + [anon_sym_operator] = ACTIONS(2542), + [anon_sym_try] = ACTIONS(2542), + [anon_sym_delete] = ACTIONS(2542), + [anon_sym_throw] = ACTIONS(2542), + [anon_sym_namespace] = ACTIONS(2542), + [anon_sym_using] = ACTIONS(2542), + [anon_sym_static_assert] = ACTIONS(2542), + [anon_sym_concept] = ACTIONS(2542), + [anon_sym_co_return] = ACTIONS(2542), + [anon_sym_co_yield] = ACTIONS(2542), + [anon_sym_R_DQUOTE] = ACTIONS(2540), + [anon_sym_LR_DQUOTE] = ACTIONS(2540), + [anon_sym_uR_DQUOTE] = ACTIONS(2540), + [anon_sym_UR_DQUOTE] = ACTIONS(2540), + [anon_sym_u8R_DQUOTE] = ACTIONS(2540), + [anon_sym_co_await] = ACTIONS(2542), + [anon_sym_new] = ACTIONS(2542), + [anon_sym_requires] = ACTIONS(2542), + [sym_this] = ACTIONS(2542), }, [732] = { - [sym_identifier] = ACTIONS(2462), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2464), - [anon_sym_AMP] = ACTIONS(2462), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_explicit] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_operator] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_namespace] = ACTIONS(2462), - [anon_sym_using] = ACTIONS(2462), - [anon_sym_static_assert] = ACTIONS(2462), - [anon_sym_concept] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_identifier] = ACTIONS(2966), + [aux_sym_preproc_include_token1] = ACTIONS(2966), + [aux_sym_preproc_def_token1] = ACTIONS(2966), + [aux_sym_preproc_if_token1] = ACTIONS(2966), + [aux_sym_preproc_if_token2] = ACTIONS(2966), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2966), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2966), + [aux_sym_preproc_else_token1] = ACTIONS(2966), + [aux_sym_preproc_elif_token1] = ACTIONS(2966), + [sym_preproc_directive] = 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_AMP_AMP] = ACTIONS(2968), + [anon_sym_AMP] = ACTIONS(2966), + [anon_sym_SEMI] = ACTIONS(2968), + [anon_sym_typedef] = ACTIONS(2966), + [anon_sym_extern] = ACTIONS(2966), + [anon_sym___attribute__] = ACTIONS(2966), + [anon_sym_COLON_COLON] = ACTIONS(2968), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2968), + [anon_sym___declspec] = ACTIONS(2966), + [anon_sym___based] = ACTIONS(2966), + [anon_sym___cdecl] = ACTIONS(2966), + [anon_sym___clrcall] = ACTIONS(2966), + [anon_sym___stdcall] = ACTIONS(2966), + [anon_sym___fastcall] = ACTIONS(2966), + [anon_sym___thiscall] = ACTIONS(2966), + [anon_sym___vectorcall] = ACTIONS(2966), + [anon_sym_LBRACE] = ACTIONS(2968), + [anon_sym_LBRACK] = ACTIONS(2966), + [anon_sym_static] = ACTIONS(2966), + [anon_sym_register] = ACTIONS(2966), + [anon_sym_inline] = ACTIONS(2966), + [anon_sym_thread_local] = 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_noreturn] = ACTIONS(2966), + [anon_sym_mutable] = ACTIONS(2966), + [anon_sym_constinit] = ACTIONS(2966), + [anon_sym_consteval] = ACTIONS(2966), + [anon_sym_signed] = ACTIONS(2966), + [anon_sym_unsigned] = ACTIONS(2966), + [anon_sym_long] = ACTIONS(2966), + [anon_sym_short] = ACTIONS(2966), + [sym_primitive_type] = ACTIONS(2966), + [anon_sym_enum] = ACTIONS(2966), + [anon_sym_class] = ACTIONS(2966), + [anon_sym_struct] = ACTIONS(2966), + [anon_sym_union] = ACTIONS(2966), + [anon_sym_if] = ACTIONS(2966), + [anon_sym_else] = 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_return] = ACTIONS(2966), + [anon_sym_break] = ACTIONS(2966), + [anon_sym_continue] = ACTIONS(2966), + [anon_sym_goto] = ACTIONS(2966), + [anon_sym_not] = ACTIONS(2966), + [anon_sym_compl] = ACTIONS(2966), + [anon_sym_DASH_DASH] = ACTIONS(2968), + [anon_sym_PLUS_PLUS] = ACTIONS(2968), + [anon_sym_sizeof] = ACTIONS(2966), + [anon_sym_offsetof] = ACTIONS(2966), + [anon_sym__Generic] = 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_L_DQUOTE] = ACTIONS(2968), + [anon_sym_u_DQUOTE] = ACTIONS(2968), + [anon_sym_U_DQUOTE] = ACTIONS(2968), + [anon_sym_u8_DQUOTE] = ACTIONS(2968), + [anon_sym_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), + [sym_auto] = ACTIONS(2966), + [anon_sym_decltype] = ACTIONS(2966), + [anon_sym_virtual] = ACTIONS(2966), + [anon_sym_explicit] = ACTIONS(2966), + [anon_sym_typename] = ACTIONS(2966), + [anon_sym_template] = ACTIONS(2966), + [anon_sym_operator] = ACTIONS(2966), + [anon_sym_try] = ACTIONS(2966), + [anon_sym_delete] = ACTIONS(2966), + [anon_sym_throw] = ACTIONS(2966), + [anon_sym_namespace] = ACTIONS(2966), + [anon_sym_using] = ACTIONS(2966), + [anon_sym_static_assert] = ACTIONS(2966), + [anon_sym_concept] = ACTIONS(2966), + [anon_sym_co_return] = ACTIONS(2966), + [anon_sym_co_yield] = ACTIONS(2966), + [anon_sym_R_DQUOTE] = ACTIONS(2968), + [anon_sym_LR_DQUOTE] = ACTIONS(2968), + [anon_sym_uR_DQUOTE] = ACTIONS(2968), + [anon_sym_UR_DQUOTE] = ACTIONS(2968), + [anon_sym_u8R_DQUOTE] = ACTIONS(2968), + [anon_sym_co_await] = ACTIONS(2966), + [anon_sym_new] = ACTIONS(2966), + [anon_sym_requires] = ACTIONS(2966), + [sym_this] = ACTIONS(2966), }, [733] = { - [sym_identifier] = ACTIONS(2462), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2464), - [anon_sym_AMP] = ACTIONS(2462), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_explicit] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_operator] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_namespace] = ACTIONS(2462), - [anon_sym_using] = ACTIONS(2462), - [anon_sym_static_assert] = ACTIONS(2462), - [anon_sym_concept] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_preproc_def] = STATE(712), + [sym_preproc_function_def] = STATE(712), + [sym_preproc_call] = STATE(712), + [sym_preproc_if_in_field_declaration_list] = STATE(712), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(712), + [sym_type_definition] = STATE(712), + [sym__declaration_modifiers] = STATE(3706), + [sym__declaration_specifiers] = STATE(4831), + [sym_attribute_specifier] = STATE(3706), + [sym_attribute_declaration] = STATE(3706), + [sym_ms_declspec_modifier] = STATE(3706), + [sym_ms_based_modifier] = STATE(7654), + [sym__declarator] = STATE(5881), + [sym_parenthesized_declarator] = STATE(5640), + [sym_attributed_declarator] = STATE(5640), + [sym_pointer_declarator] = STATE(5640), + [sym_function_declarator] = STATE(5531), + [sym_array_declarator] = STATE(5640), + [sym_storage_class_specifier] = STATE(3706), + [sym_type_qualifier] = STATE(3706), + [sym__type_specifier] = STATE(3845), + [sym_sized_type_specifier] = STATE(3918), + [sym_enum_specifier] = STATE(3918), + [sym_struct_specifier] = STATE(3918), + [sym_union_specifier] = STATE(3918), + [sym__field_declaration_list_item] = STATE(712), + [sym_field_declaration] = STATE(712), + [sym_placeholder_type_specifier] = STATE(3918), + [sym_decltype_auto] = STATE(3916), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3918), + [sym_virtual] = STATE(3706), + [sym_explicit_function_specifier] = STATE(2247), + [sym_dependent_type] = STATE(3918), + [sym_template_declaration] = STATE(712), + [sym_operator_cast] = STATE(5897), + [sym_inline_method_definition] = STATE(712), + [sym__constructor_specifiers] = STATE(2247), + [sym_operator_cast_definition] = STATE(712), + [sym_operator_cast_declaration] = STATE(712), + [sym_constructor_or_destructor_definition] = STATE(712), + [sym_constructor_or_destructor_declaration] = STATE(712), + [sym_friend_declaration] = STATE(712), + [sym_access_specifier] = STATE(7346), + [sym_reference_declarator] = STATE(5640), + [sym_structured_binding_declarator] = STATE(5640), + [sym_template_type] = STATE(3680), + [sym_template_function] = STATE(5640), + [sym_using_declaration] = STATE(712), + [sym_alias_declaration] = STATE(712), + [sym_static_assert_declaration] = STATE(712), + [sym_destructor_name] = STATE(5640), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5151), + [sym_qualified_identifier] = STATE(5640), + [sym_qualified_type_identifier] = STATE(3966), + [sym_qualified_operator_cast_identifier] = STATE(5897), + [sym_operator_name] = STATE(5640), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(712), + [aux_sym__declaration_specifiers_repeat1] = STATE(2509), + [aux_sym_sized_type_specifier_repeat1] = STATE(3981), + [aux_sym_operator_cast_definition_repeat1] = STATE(2247), + [sym_identifier] = ACTIONS(2544), + [aux_sym_preproc_def_token1] = ACTIONS(3479), + [aux_sym_preproc_if_token1] = ACTIONS(3481), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3483), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3483), + [sym_preproc_directive] = ACTIONS(3485), + [anon_sym_LPAREN2] = ACTIONS(2560), + [anon_sym_TILDE] = ACTIONS(2562), + [anon_sym_STAR] = ACTIONS(2564), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_typedef] = ACTIONS(3487), + [anon_sym_extern] = ACTIONS(53), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(2570), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1813), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(45), + [anon_sym_RBRACE] = ACTIONS(3589), + [anon_sym_LBRACK] = ACTIONS(2572), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(53), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(2574), + [anon_sym_unsigned] = ACTIONS(2574), + [anon_sym_long] = ACTIONS(2574), + [anon_sym_short] = ACTIONS(2574), + [sym_primitive_type] = ACTIONS(2576), + [anon_sym_enum] = ACTIONS(2578), + [anon_sym_class] = ACTIONS(2580), + [anon_sym_struct] = ACTIONS(2582), + [anon_sym_union] = ACTIONS(2584), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2586), + [anon_sym_decltype] = ACTIONS(2588), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_explicit] = ACTIONS(119), + [anon_sym_typename] = ACTIONS(2590), + [anon_sym_template] = ACTIONS(3491), + [anon_sym_operator] = ACTIONS(125), + [anon_sym_friend] = ACTIONS(3493), + [anon_sym_public] = ACTIONS(2596), + [anon_sym_private] = ACTIONS(2596), + [anon_sym_protected] = ACTIONS(2596), + [anon_sym_using] = ACTIONS(3495), + [anon_sym_static_assert] = ACTIONS(3497), }, [734] = { - [sym_identifier] = ACTIONS(2462), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2464), - [anon_sym_AMP] = ACTIONS(2462), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_explicit] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_operator] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_namespace] = ACTIONS(2462), - [anon_sym_using] = ACTIONS(2462), - [anon_sym_static_assert] = ACTIONS(2462), - [anon_sym_concept] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token2] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [aux_sym_preproc_else_token1] = ACTIONS(3028), + [aux_sym_preproc_elif_token1] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, [735] = { - [sym_identifier] = ACTIONS(2462), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2464), - [anon_sym_AMP] = ACTIONS(2462), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_explicit] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_operator] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_namespace] = ACTIONS(2462), - [anon_sym_using] = ACTIONS(2462), - [anon_sym_static_assert] = ACTIONS(2462), - [anon_sym_concept] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token2] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [aux_sym_preproc_else_token1] = ACTIONS(3028), + [aux_sym_preproc_elif_token1] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, [736] = { - [sym_identifier] = ACTIONS(2462), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2464), - [anon_sym_AMP] = ACTIONS(2462), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_explicit] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_operator] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_namespace] = ACTIONS(2462), - [anon_sym_using] = ACTIONS(2462), - [anon_sym_static_assert] = ACTIONS(2462), - [anon_sym_concept] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_preproc_def] = STATE(712), + [sym_preproc_function_def] = STATE(712), + [sym_preproc_call] = STATE(712), + [sym_preproc_if_in_field_declaration_list] = STATE(712), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(712), + [sym_type_definition] = STATE(712), + [sym__declaration_modifiers] = STATE(3706), + [sym__declaration_specifiers] = STATE(4831), + [sym_attribute_specifier] = STATE(3706), + [sym_attribute_declaration] = STATE(3706), + [sym_ms_declspec_modifier] = STATE(3706), + [sym_ms_based_modifier] = STATE(7654), + [sym__declarator] = STATE(5881), + [sym_parenthesized_declarator] = STATE(5640), + [sym_attributed_declarator] = STATE(5640), + [sym_pointer_declarator] = STATE(5640), + [sym_function_declarator] = STATE(5531), + [sym_array_declarator] = STATE(5640), + [sym_storage_class_specifier] = STATE(3706), + [sym_type_qualifier] = STATE(3706), + [sym__type_specifier] = STATE(3845), + [sym_sized_type_specifier] = STATE(3918), + [sym_enum_specifier] = STATE(3918), + [sym_struct_specifier] = STATE(3918), + [sym_union_specifier] = STATE(3918), + [sym__field_declaration_list_item] = STATE(712), + [sym_field_declaration] = STATE(712), + [sym_placeholder_type_specifier] = STATE(3918), + [sym_decltype_auto] = STATE(3916), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3918), + [sym_virtual] = STATE(3706), + [sym_explicit_function_specifier] = STATE(2247), + [sym_dependent_type] = STATE(3918), + [sym_template_declaration] = STATE(712), + [sym_operator_cast] = STATE(5897), + [sym_inline_method_definition] = STATE(712), + [sym__constructor_specifiers] = STATE(2247), + [sym_operator_cast_definition] = STATE(712), + [sym_operator_cast_declaration] = STATE(712), + [sym_constructor_or_destructor_definition] = STATE(712), + [sym_constructor_or_destructor_declaration] = STATE(712), + [sym_friend_declaration] = STATE(712), + [sym_access_specifier] = STATE(7346), + [sym_reference_declarator] = STATE(5640), + [sym_structured_binding_declarator] = STATE(5640), + [sym_template_type] = STATE(3680), + [sym_template_function] = STATE(5640), + [sym_using_declaration] = STATE(712), + [sym_alias_declaration] = STATE(712), + [sym_static_assert_declaration] = STATE(712), + [sym_destructor_name] = STATE(5640), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5151), + [sym_qualified_identifier] = STATE(5640), + [sym_qualified_type_identifier] = STATE(3966), + [sym_qualified_operator_cast_identifier] = STATE(5897), + [sym_operator_name] = STATE(5640), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(712), + [aux_sym__declaration_specifiers_repeat1] = STATE(2509), + [aux_sym_sized_type_specifier_repeat1] = STATE(3981), + [aux_sym_operator_cast_definition_repeat1] = STATE(2247), + [sym_identifier] = ACTIONS(2544), + [aux_sym_preproc_def_token1] = ACTIONS(3479), + [aux_sym_preproc_if_token1] = ACTIONS(3481), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3483), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3483), + [sym_preproc_directive] = ACTIONS(3485), + [anon_sym_LPAREN2] = ACTIONS(2560), + [anon_sym_TILDE] = ACTIONS(2562), + [anon_sym_STAR] = ACTIONS(2564), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_typedef] = ACTIONS(3487), + [anon_sym_extern] = ACTIONS(53), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(2570), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1813), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(45), + [anon_sym_RBRACE] = ACTIONS(3591), + [anon_sym_LBRACK] = ACTIONS(2572), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(53), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(2574), + [anon_sym_unsigned] = ACTIONS(2574), + [anon_sym_long] = ACTIONS(2574), + [anon_sym_short] = ACTIONS(2574), + [sym_primitive_type] = ACTIONS(2576), + [anon_sym_enum] = ACTIONS(2578), + [anon_sym_class] = ACTIONS(2580), + [anon_sym_struct] = ACTIONS(2582), + [anon_sym_union] = ACTIONS(2584), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2586), + [anon_sym_decltype] = ACTIONS(2588), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_explicit] = ACTIONS(119), + [anon_sym_typename] = ACTIONS(2590), + [anon_sym_template] = ACTIONS(3491), + [anon_sym_operator] = ACTIONS(125), + [anon_sym_friend] = ACTIONS(3493), + [anon_sym_public] = ACTIONS(2596), + [anon_sym_private] = ACTIONS(2596), + [anon_sym_protected] = ACTIONS(2596), + [anon_sym_using] = ACTIONS(3495), + [anon_sym_static_assert] = ACTIONS(3497), }, [737] = { - [sym_identifier] = ACTIONS(2462), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2464), - [anon_sym_AMP] = ACTIONS(2462), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_explicit] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_operator] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_namespace] = ACTIONS(2462), - [anon_sym_using] = ACTIONS(2462), - [anon_sym_static_assert] = ACTIONS(2462), - [anon_sym_concept] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token2] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [aux_sym_preproc_else_token1] = ACTIONS(3048), + [aux_sym_preproc_elif_token1] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, [738] = { - [sym_identifier] = ACTIONS(2462), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2464), - [anon_sym_AMP] = ACTIONS(2462), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_explicit] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_operator] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_namespace] = ACTIONS(2462), - [anon_sym_using] = ACTIONS(2462), - [anon_sym_static_assert] = ACTIONS(2462), - [anon_sym_concept] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token2] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [aux_sym_preproc_else_token1] = ACTIONS(3048), + [aux_sym_preproc_elif_token1] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, [739] = { - [sym_identifier] = ACTIONS(2462), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2464), - [anon_sym_AMP] = ACTIONS(2462), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_explicit] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_operator] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_namespace] = ACTIONS(2462), - [anon_sym_using] = ACTIONS(2462), - [anon_sym_static_assert] = ACTIONS(2462), - [anon_sym_concept] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token2] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [aux_sym_preproc_else_token1] = ACTIONS(3028), + [aux_sym_preproc_elif_token1] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, [740] = { - [ts_builtin_sym_end] = ACTIONS(2464), - [sym_identifier] = ACTIONS(2462), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2464), - [anon_sym_AMP] = ACTIONS(2462), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_explicit] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_operator] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_namespace] = ACTIONS(2462), - [anon_sym_using] = ACTIONS(2462), - [anon_sym_static_assert] = ACTIONS(2462), - [anon_sym_concept] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_preproc_def] = STATE(610), + [sym_preproc_function_def] = STATE(610), + [sym_preproc_call] = STATE(610), + [sym_preproc_if_in_field_declaration_list] = STATE(610), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(610), + [sym_type_definition] = STATE(610), + [sym__declaration_modifiers] = STATE(3706), + [sym__declaration_specifiers] = STATE(4831), + [sym_attribute_specifier] = STATE(3706), + [sym_attribute_declaration] = STATE(3706), + [sym_ms_declspec_modifier] = STATE(3706), + [sym_ms_based_modifier] = STATE(7654), + [sym__declarator] = STATE(5881), + [sym_parenthesized_declarator] = STATE(5640), + [sym_attributed_declarator] = STATE(5640), + [sym_pointer_declarator] = STATE(5640), + [sym_function_declarator] = STATE(5531), + [sym_array_declarator] = STATE(5640), + [sym_storage_class_specifier] = STATE(3706), + [sym_type_qualifier] = STATE(3706), + [sym__type_specifier] = STATE(3845), + [sym_sized_type_specifier] = STATE(3918), + [sym_enum_specifier] = STATE(3918), + [sym_struct_specifier] = STATE(3918), + [sym_union_specifier] = STATE(3918), + [sym__field_declaration_list_item] = STATE(610), + [sym_field_declaration] = STATE(610), + [sym_placeholder_type_specifier] = STATE(3918), + [sym_decltype_auto] = STATE(3916), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3918), + [sym_virtual] = STATE(3706), + [sym_explicit_function_specifier] = STATE(2247), + [sym_dependent_type] = STATE(3918), + [sym_template_declaration] = STATE(610), + [sym_operator_cast] = STATE(5897), + [sym_inline_method_definition] = STATE(610), + [sym__constructor_specifiers] = STATE(2247), + [sym_operator_cast_definition] = STATE(610), + [sym_operator_cast_declaration] = STATE(610), + [sym_constructor_or_destructor_definition] = STATE(610), + [sym_constructor_or_destructor_declaration] = STATE(610), + [sym_friend_declaration] = STATE(610), + [sym_access_specifier] = STATE(7346), + [sym_reference_declarator] = STATE(5640), + [sym_structured_binding_declarator] = STATE(5640), + [sym_template_type] = STATE(3680), + [sym_template_function] = STATE(5640), + [sym_using_declaration] = STATE(610), + [sym_alias_declaration] = STATE(610), + [sym_static_assert_declaration] = STATE(610), + [sym_destructor_name] = STATE(5640), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5151), + [sym_qualified_identifier] = STATE(5640), + [sym_qualified_type_identifier] = STATE(3966), + [sym_qualified_operator_cast_identifier] = STATE(5897), + [sym_operator_name] = STATE(5640), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(610), + [aux_sym__declaration_specifiers_repeat1] = STATE(2509), + [aux_sym_sized_type_specifier_repeat1] = STATE(3981), + [aux_sym_operator_cast_definition_repeat1] = STATE(2247), + [sym_identifier] = ACTIONS(2544), + [aux_sym_preproc_def_token1] = ACTIONS(3479), + [aux_sym_preproc_if_token1] = ACTIONS(3481), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3483), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3483), + [sym_preproc_directive] = ACTIONS(3485), + [anon_sym_LPAREN2] = ACTIONS(2560), + [anon_sym_TILDE] = ACTIONS(2562), + [anon_sym_STAR] = ACTIONS(2564), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_typedef] = ACTIONS(3487), + [anon_sym_extern] = ACTIONS(53), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(2570), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1813), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(45), + [anon_sym_RBRACE] = ACTIONS(3593), + [anon_sym_LBRACK] = ACTIONS(2572), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(53), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(2574), + [anon_sym_unsigned] = ACTIONS(2574), + [anon_sym_long] = ACTIONS(2574), + [anon_sym_short] = ACTIONS(2574), + [sym_primitive_type] = ACTIONS(2576), + [anon_sym_enum] = ACTIONS(2578), + [anon_sym_class] = ACTIONS(2580), + [anon_sym_struct] = ACTIONS(2582), + [anon_sym_union] = ACTIONS(2584), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2586), + [anon_sym_decltype] = ACTIONS(2588), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_explicit] = ACTIONS(119), + [anon_sym_typename] = ACTIONS(2590), + [anon_sym_template] = ACTIONS(3491), + [anon_sym_operator] = ACTIONS(125), + [anon_sym_friend] = ACTIONS(3493), + [anon_sym_public] = ACTIONS(2596), + [anon_sym_private] = ACTIONS(2596), + [anon_sym_protected] = ACTIONS(2596), + [anon_sym_using] = ACTIONS(3495), + [anon_sym_static_assert] = ACTIONS(3497), }, [741] = { - [ts_builtin_sym_end] = ACTIONS(2464), - [sym_identifier] = ACTIONS(2462), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2464), - [anon_sym_AMP] = ACTIONS(2462), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_explicit] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_operator] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_namespace] = ACTIONS(2462), - [anon_sym_using] = ACTIONS(2462), - [anon_sym_static_assert] = ACTIONS(2462), - [anon_sym_concept] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_identifier] = ACTIONS(3093), + [aux_sym_preproc_include_token1] = ACTIONS(3093), + [aux_sym_preproc_def_token1] = ACTIONS(3093), + [aux_sym_preproc_if_token1] = ACTIONS(3093), + [aux_sym_preproc_if_token2] = ACTIONS(3093), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3093), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3093), + [aux_sym_preproc_else_token1] = ACTIONS(3093), + [aux_sym_preproc_elif_token1] = ACTIONS(3093), + [sym_preproc_directive] = ACTIONS(3093), + [anon_sym_LPAREN2] = ACTIONS(3095), + [anon_sym_BANG] = ACTIONS(3095), + [anon_sym_TILDE] = ACTIONS(3095), + [anon_sym_DASH] = ACTIONS(3093), + [anon_sym_PLUS] = ACTIONS(3093), + [anon_sym_STAR] = ACTIONS(3095), + [anon_sym_AMP_AMP] = ACTIONS(3095), + [anon_sym_AMP] = ACTIONS(3093), + [anon_sym_SEMI] = ACTIONS(3095), + [anon_sym_typedef] = ACTIONS(3093), + [anon_sym_extern] = ACTIONS(3093), + [anon_sym___attribute__] = ACTIONS(3093), + [anon_sym_COLON_COLON] = ACTIONS(3095), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3095), + [anon_sym___declspec] = ACTIONS(3093), + [anon_sym___based] = ACTIONS(3093), + [anon_sym___cdecl] = ACTIONS(3093), + [anon_sym___clrcall] = ACTIONS(3093), + [anon_sym___stdcall] = ACTIONS(3093), + [anon_sym___fastcall] = ACTIONS(3093), + [anon_sym___thiscall] = ACTIONS(3093), + [anon_sym___vectorcall] = ACTIONS(3093), + [anon_sym_LBRACE] = ACTIONS(3095), + [anon_sym_LBRACK] = ACTIONS(3093), + [anon_sym_static] = ACTIONS(3093), + [anon_sym_register] = ACTIONS(3093), + [anon_sym_inline] = ACTIONS(3093), + [anon_sym_thread_local] = ACTIONS(3093), + [anon_sym_const] = ACTIONS(3093), + [anon_sym_constexpr] = ACTIONS(3093), + [anon_sym_volatile] = ACTIONS(3093), + [anon_sym_restrict] = ACTIONS(3093), + [anon_sym___restrict__] = ACTIONS(3093), + [anon_sym__Atomic] = ACTIONS(3093), + [anon_sym__Noreturn] = ACTIONS(3093), + [anon_sym_noreturn] = ACTIONS(3093), + [anon_sym_mutable] = ACTIONS(3093), + [anon_sym_constinit] = ACTIONS(3093), + [anon_sym_consteval] = ACTIONS(3093), + [anon_sym_signed] = ACTIONS(3093), + [anon_sym_unsigned] = ACTIONS(3093), + [anon_sym_long] = ACTIONS(3093), + [anon_sym_short] = ACTIONS(3093), + [sym_primitive_type] = ACTIONS(3093), + [anon_sym_enum] = ACTIONS(3093), + [anon_sym_class] = ACTIONS(3093), + [anon_sym_struct] = ACTIONS(3093), + [anon_sym_union] = ACTIONS(3093), + [anon_sym_if] = ACTIONS(3093), + [anon_sym_else] = ACTIONS(3093), + [anon_sym_switch] = ACTIONS(3093), + [anon_sym_case] = ACTIONS(3093), + [anon_sym_default] = ACTIONS(3093), + [anon_sym_while] = ACTIONS(3093), + [anon_sym_do] = ACTIONS(3093), + [anon_sym_for] = ACTIONS(3093), + [anon_sym_return] = ACTIONS(3093), + [anon_sym_break] = ACTIONS(3093), + [anon_sym_continue] = ACTIONS(3093), + [anon_sym_goto] = ACTIONS(3093), + [anon_sym_not] = ACTIONS(3093), + [anon_sym_compl] = ACTIONS(3093), + [anon_sym_DASH_DASH] = ACTIONS(3095), + [anon_sym_PLUS_PLUS] = ACTIONS(3095), + [anon_sym_sizeof] = ACTIONS(3093), + [anon_sym_offsetof] = ACTIONS(3093), + [anon_sym__Generic] = ACTIONS(3093), + [anon_sym_asm] = ACTIONS(3093), + [anon_sym___asm__] = ACTIONS(3093), + [sym_number_literal] = ACTIONS(3095), + [anon_sym_L_SQUOTE] = ACTIONS(3095), + [anon_sym_u_SQUOTE] = ACTIONS(3095), + [anon_sym_U_SQUOTE] = ACTIONS(3095), + [anon_sym_u8_SQUOTE] = ACTIONS(3095), + [anon_sym_SQUOTE] = ACTIONS(3095), + [anon_sym_L_DQUOTE] = ACTIONS(3095), + [anon_sym_u_DQUOTE] = ACTIONS(3095), + [anon_sym_U_DQUOTE] = ACTIONS(3095), + [anon_sym_u8_DQUOTE] = ACTIONS(3095), + [anon_sym_DQUOTE] = ACTIONS(3095), + [sym_true] = ACTIONS(3093), + [sym_false] = ACTIONS(3093), + [anon_sym_NULL] = ACTIONS(3093), + [anon_sym_nullptr] = ACTIONS(3093), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3093), + [anon_sym_decltype] = ACTIONS(3093), + [anon_sym_virtual] = ACTIONS(3093), + [anon_sym_explicit] = ACTIONS(3093), + [anon_sym_typename] = ACTIONS(3093), + [anon_sym_template] = ACTIONS(3093), + [anon_sym_operator] = ACTIONS(3093), + [anon_sym_try] = ACTIONS(3093), + [anon_sym_delete] = ACTIONS(3093), + [anon_sym_throw] = ACTIONS(3093), + [anon_sym_namespace] = ACTIONS(3093), + [anon_sym_using] = ACTIONS(3093), + [anon_sym_static_assert] = ACTIONS(3093), + [anon_sym_concept] = ACTIONS(3093), + [anon_sym_co_return] = ACTIONS(3093), + [anon_sym_co_yield] = ACTIONS(3093), + [anon_sym_R_DQUOTE] = ACTIONS(3095), + [anon_sym_LR_DQUOTE] = ACTIONS(3095), + [anon_sym_uR_DQUOTE] = ACTIONS(3095), + [anon_sym_UR_DQUOTE] = ACTIONS(3095), + [anon_sym_u8R_DQUOTE] = ACTIONS(3095), + [anon_sym_co_await] = ACTIONS(3093), + [anon_sym_new] = ACTIONS(3093), + [anon_sym_requires] = ACTIONS(3093), + [sym_this] = ACTIONS(3093), }, [742] = { - [ts_builtin_sym_end] = ACTIONS(2464), - [sym_identifier] = ACTIONS(2462), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2464), - [anon_sym_AMP] = ACTIONS(2462), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_explicit] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_operator] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_namespace] = ACTIONS(2462), - [anon_sym_using] = ACTIONS(2462), - [anon_sym_static_assert] = ACTIONS(2462), - [anon_sym_concept] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token2] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [aux_sym_preproc_else_token1] = ACTIONS(3048), + [aux_sym_preproc_elif_token1] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, [743] = { - [ts_builtin_sym_end] = ACTIONS(2464), - [sym_identifier] = ACTIONS(2462), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2464), - [anon_sym_AMP] = ACTIONS(2462), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_explicit] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_operator] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_namespace] = ACTIONS(2462), - [anon_sym_using] = ACTIONS(2462), - [anon_sym_static_assert] = ACTIONS(2462), - [anon_sym_concept] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_preproc_def] = STATE(712), + [sym_preproc_function_def] = STATE(712), + [sym_preproc_call] = STATE(712), + [sym_preproc_if_in_field_declaration_list] = STATE(712), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(712), + [sym_type_definition] = STATE(712), + [sym__declaration_modifiers] = STATE(3706), + [sym__declaration_specifiers] = STATE(4831), + [sym_attribute_specifier] = STATE(3706), + [sym_attribute_declaration] = STATE(3706), + [sym_ms_declspec_modifier] = STATE(3706), + [sym_ms_based_modifier] = STATE(7654), + [sym__declarator] = STATE(5881), + [sym_parenthesized_declarator] = STATE(5640), + [sym_attributed_declarator] = STATE(5640), + [sym_pointer_declarator] = STATE(5640), + [sym_function_declarator] = STATE(5531), + [sym_array_declarator] = STATE(5640), + [sym_storage_class_specifier] = STATE(3706), + [sym_type_qualifier] = STATE(3706), + [sym__type_specifier] = STATE(3845), + [sym_sized_type_specifier] = STATE(3918), + [sym_enum_specifier] = STATE(3918), + [sym_struct_specifier] = STATE(3918), + [sym_union_specifier] = STATE(3918), + [sym__field_declaration_list_item] = STATE(712), + [sym_field_declaration] = STATE(712), + [sym_placeholder_type_specifier] = STATE(3918), + [sym_decltype_auto] = STATE(3916), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3918), + [sym_virtual] = STATE(3706), + [sym_explicit_function_specifier] = STATE(2247), + [sym_dependent_type] = STATE(3918), + [sym_template_declaration] = STATE(712), + [sym_operator_cast] = STATE(5897), + [sym_inline_method_definition] = STATE(712), + [sym__constructor_specifiers] = STATE(2247), + [sym_operator_cast_definition] = STATE(712), + [sym_operator_cast_declaration] = STATE(712), + [sym_constructor_or_destructor_definition] = STATE(712), + [sym_constructor_or_destructor_declaration] = STATE(712), + [sym_friend_declaration] = STATE(712), + [sym_access_specifier] = STATE(7346), + [sym_reference_declarator] = STATE(5640), + [sym_structured_binding_declarator] = STATE(5640), + [sym_template_type] = STATE(3680), + [sym_template_function] = STATE(5640), + [sym_using_declaration] = STATE(712), + [sym_alias_declaration] = STATE(712), + [sym_static_assert_declaration] = STATE(712), + [sym_destructor_name] = STATE(5640), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5151), + [sym_qualified_identifier] = STATE(5640), + [sym_qualified_type_identifier] = STATE(3966), + [sym_qualified_operator_cast_identifier] = STATE(5897), + [sym_operator_name] = STATE(5640), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(712), + [aux_sym__declaration_specifiers_repeat1] = STATE(2509), + [aux_sym_sized_type_specifier_repeat1] = STATE(3981), + [aux_sym_operator_cast_definition_repeat1] = STATE(2247), + [sym_identifier] = ACTIONS(2544), + [aux_sym_preproc_def_token1] = ACTIONS(3479), + [aux_sym_preproc_if_token1] = ACTIONS(3481), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3483), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3483), + [sym_preproc_directive] = ACTIONS(3485), + [anon_sym_LPAREN2] = ACTIONS(2560), + [anon_sym_TILDE] = ACTIONS(2562), + [anon_sym_STAR] = ACTIONS(2564), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_typedef] = ACTIONS(3487), + [anon_sym_extern] = ACTIONS(53), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(2570), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1813), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(45), + [anon_sym_RBRACE] = ACTIONS(3595), + [anon_sym_LBRACK] = ACTIONS(2572), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(53), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(2574), + [anon_sym_unsigned] = ACTIONS(2574), + [anon_sym_long] = ACTIONS(2574), + [anon_sym_short] = ACTIONS(2574), + [sym_primitive_type] = ACTIONS(2576), + [anon_sym_enum] = ACTIONS(2578), + [anon_sym_class] = ACTIONS(2580), + [anon_sym_struct] = ACTIONS(2582), + [anon_sym_union] = ACTIONS(2584), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2586), + [anon_sym_decltype] = ACTIONS(2588), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_explicit] = ACTIONS(119), + [anon_sym_typename] = ACTIONS(2590), + [anon_sym_template] = ACTIONS(3491), + [anon_sym_operator] = ACTIONS(125), + [anon_sym_friend] = ACTIONS(3493), + [anon_sym_public] = ACTIONS(2596), + [anon_sym_private] = ACTIONS(2596), + [anon_sym_protected] = ACTIONS(2596), + [anon_sym_using] = ACTIONS(3495), + [anon_sym_static_assert] = ACTIONS(3497), }, [744] = { - [ts_builtin_sym_end] = ACTIONS(2464), - [sym_identifier] = ACTIONS(2462), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2464), - [anon_sym_AMP] = ACTIONS(2462), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_explicit] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_operator] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_namespace] = ACTIONS(2462), - [anon_sym_using] = ACTIONS(2462), - [anon_sym_static_assert] = ACTIONS(2462), - [anon_sym_concept] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token2] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [aux_sym_preproc_else_token1] = ACTIONS(3048), + [aux_sym_preproc_elif_token1] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, [745] = { - [ts_builtin_sym_end] = ACTIONS(2464), - [sym_identifier] = ACTIONS(2462), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2464), - [anon_sym_AMP] = ACTIONS(2462), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_explicit] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_operator] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_namespace] = ACTIONS(2462), - [anon_sym_using] = ACTIONS(2462), - [anon_sym_static_assert] = ACTIONS(2462), - [anon_sym_concept] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_identifier] = ACTIONS(3089), + [aux_sym_preproc_include_token1] = ACTIONS(3089), + [aux_sym_preproc_def_token1] = ACTIONS(3089), + [aux_sym_preproc_if_token1] = ACTIONS(3089), + [aux_sym_preproc_if_token2] = ACTIONS(3089), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3089), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3089), + [aux_sym_preproc_else_token1] = ACTIONS(3089), + [aux_sym_preproc_elif_token1] = ACTIONS(3089), + [sym_preproc_directive] = ACTIONS(3089), + [anon_sym_LPAREN2] = ACTIONS(3091), + [anon_sym_BANG] = ACTIONS(3091), + [anon_sym_TILDE] = ACTIONS(3091), + [anon_sym_DASH] = ACTIONS(3089), + [anon_sym_PLUS] = ACTIONS(3089), + [anon_sym_STAR] = ACTIONS(3091), + [anon_sym_AMP_AMP] = ACTIONS(3091), + [anon_sym_AMP] = ACTIONS(3089), + [anon_sym_SEMI] = ACTIONS(3091), + [anon_sym_typedef] = ACTIONS(3089), + [anon_sym_extern] = ACTIONS(3089), + [anon_sym___attribute__] = ACTIONS(3089), + [anon_sym_COLON_COLON] = ACTIONS(3091), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3091), + [anon_sym___declspec] = ACTIONS(3089), + [anon_sym___based] = ACTIONS(3089), + [anon_sym___cdecl] = ACTIONS(3089), + [anon_sym___clrcall] = ACTIONS(3089), + [anon_sym___stdcall] = ACTIONS(3089), + [anon_sym___fastcall] = ACTIONS(3089), + [anon_sym___thiscall] = ACTIONS(3089), + [anon_sym___vectorcall] = ACTIONS(3089), + [anon_sym_LBRACE] = ACTIONS(3091), + [anon_sym_LBRACK] = ACTIONS(3089), + [anon_sym_static] = ACTIONS(3089), + [anon_sym_register] = ACTIONS(3089), + [anon_sym_inline] = ACTIONS(3089), + [anon_sym_thread_local] = ACTIONS(3089), + [anon_sym_const] = ACTIONS(3089), + [anon_sym_constexpr] = ACTIONS(3089), + [anon_sym_volatile] = ACTIONS(3089), + [anon_sym_restrict] = ACTIONS(3089), + [anon_sym___restrict__] = ACTIONS(3089), + [anon_sym__Atomic] = ACTIONS(3089), + [anon_sym__Noreturn] = ACTIONS(3089), + [anon_sym_noreturn] = ACTIONS(3089), + [anon_sym_mutable] = ACTIONS(3089), + [anon_sym_constinit] = ACTIONS(3089), + [anon_sym_consteval] = ACTIONS(3089), + [anon_sym_signed] = ACTIONS(3089), + [anon_sym_unsigned] = ACTIONS(3089), + [anon_sym_long] = ACTIONS(3089), + [anon_sym_short] = ACTIONS(3089), + [sym_primitive_type] = ACTIONS(3089), + [anon_sym_enum] = ACTIONS(3089), + [anon_sym_class] = ACTIONS(3089), + [anon_sym_struct] = ACTIONS(3089), + [anon_sym_union] = ACTIONS(3089), + [anon_sym_if] = ACTIONS(3089), + [anon_sym_else] = ACTIONS(3089), + [anon_sym_switch] = ACTIONS(3089), + [anon_sym_case] = ACTIONS(3089), + [anon_sym_default] = ACTIONS(3089), + [anon_sym_while] = ACTIONS(3089), + [anon_sym_do] = ACTIONS(3089), + [anon_sym_for] = ACTIONS(3089), + [anon_sym_return] = ACTIONS(3089), + [anon_sym_break] = ACTIONS(3089), + [anon_sym_continue] = ACTIONS(3089), + [anon_sym_goto] = ACTIONS(3089), + [anon_sym_not] = ACTIONS(3089), + [anon_sym_compl] = ACTIONS(3089), + [anon_sym_DASH_DASH] = ACTIONS(3091), + [anon_sym_PLUS_PLUS] = ACTIONS(3091), + [anon_sym_sizeof] = ACTIONS(3089), + [anon_sym_offsetof] = ACTIONS(3089), + [anon_sym__Generic] = ACTIONS(3089), + [anon_sym_asm] = ACTIONS(3089), + [anon_sym___asm__] = ACTIONS(3089), + [sym_number_literal] = ACTIONS(3091), + [anon_sym_L_SQUOTE] = ACTIONS(3091), + [anon_sym_u_SQUOTE] = ACTIONS(3091), + [anon_sym_U_SQUOTE] = ACTIONS(3091), + [anon_sym_u8_SQUOTE] = ACTIONS(3091), + [anon_sym_SQUOTE] = ACTIONS(3091), + [anon_sym_L_DQUOTE] = ACTIONS(3091), + [anon_sym_u_DQUOTE] = ACTIONS(3091), + [anon_sym_U_DQUOTE] = ACTIONS(3091), + [anon_sym_u8_DQUOTE] = ACTIONS(3091), + [anon_sym_DQUOTE] = ACTIONS(3091), + [sym_true] = ACTIONS(3089), + [sym_false] = ACTIONS(3089), + [anon_sym_NULL] = ACTIONS(3089), + [anon_sym_nullptr] = ACTIONS(3089), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3089), + [anon_sym_decltype] = ACTIONS(3089), + [anon_sym_virtual] = ACTIONS(3089), + [anon_sym_explicit] = ACTIONS(3089), + [anon_sym_typename] = ACTIONS(3089), + [anon_sym_template] = ACTIONS(3089), + [anon_sym_operator] = ACTIONS(3089), + [anon_sym_try] = ACTIONS(3089), + [anon_sym_delete] = ACTIONS(3089), + [anon_sym_throw] = ACTIONS(3089), + [anon_sym_namespace] = ACTIONS(3089), + [anon_sym_using] = ACTIONS(3089), + [anon_sym_static_assert] = ACTIONS(3089), + [anon_sym_concept] = ACTIONS(3089), + [anon_sym_co_return] = ACTIONS(3089), + [anon_sym_co_yield] = ACTIONS(3089), + [anon_sym_R_DQUOTE] = ACTIONS(3091), + [anon_sym_LR_DQUOTE] = ACTIONS(3091), + [anon_sym_uR_DQUOTE] = ACTIONS(3091), + [anon_sym_UR_DQUOTE] = ACTIONS(3091), + [anon_sym_u8R_DQUOTE] = ACTIONS(3091), + [anon_sym_co_await] = ACTIONS(3089), + [anon_sym_new] = ACTIONS(3089), + [anon_sym_requires] = ACTIONS(3089), + [sym_this] = ACTIONS(3089), }, [746] = { - [ts_builtin_sym_end] = ACTIONS(2574), - [sym_identifier] = ACTIONS(2572), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2574), - [anon_sym_AMP] = ACTIONS(2572), - [anon_sym_SEMI] = ACTIONS(2574), - [anon_sym_typedef] = ACTIONS(2572), - [anon_sym_extern] = ACTIONS(2572), - [anon_sym___attribute__] = ACTIONS(2572), - [anon_sym_COLON_COLON] = ACTIONS(2574), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2574), - [anon_sym___declspec] = ACTIONS(2572), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2572), - [anon_sym_static] = ACTIONS(2572), - [anon_sym_register] = ACTIONS(2572), - [anon_sym_inline] = ACTIONS(2572), - [anon_sym_thread_local] = ACTIONS(2572), - [anon_sym_const] = ACTIONS(2572), - [anon_sym_volatile] = ACTIONS(2572), - [anon_sym_restrict] = ACTIONS(2572), - [anon_sym__Atomic] = ACTIONS(2572), - [anon_sym_mutable] = ACTIONS(2572), - [anon_sym_constexpr] = ACTIONS(2572), - [anon_sym_constinit] = ACTIONS(2572), - [anon_sym_consteval] = ACTIONS(2572), - [anon_sym_signed] = ACTIONS(2572), - [anon_sym_unsigned] = ACTIONS(2572), - [anon_sym_long] = ACTIONS(2572), - [anon_sym_short] = ACTIONS(2572), - [sym_primitive_type] = ACTIONS(2572), - [anon_sym_enum] = ACTIONS(2572), - [anon_sym_class] = ACTIONS(2572), - [anon_sym_struct] = ACTIONS(2572), - [anon_sym_union] = ACTIONS(2572), - [anon_sym_if] = ACTIONS(2572), - [anon_sym_else] = 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_return] = ACTIONS(2572), - [anon_sym_break] = ACTIONS(2572), - [anon_sym_continue] = ACTIONS(2572), - [anon_sym_goto] = ACTIONS(2572), - [anon_sym_not] = ACTIONS(2572), - [anon_sym_compl] = ACTIONS(2572), - [anon_sym_DASH_DASH] = ACTIONS(2574), - [anon_sym_PLUS_PLUS] = ACTIONS(2574), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2574), - [anon_sym_u_DQUOTE] = ACTIONS(2574), - [anon_sym_U_DQUOTE] = ACTIONS(2574), - [anon_sym_u8_DQUOTE] = ACTIONS(2574), - [anon_sym_DQUOTE] = ACTIONS(2574), - [sym_true] = ACTIONS(2572), - [sym_false] = ACTIONS(2572), - [sym_null] = ACTIONS(2572), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2572), - [anon_sym_decltype] = ACTIONS(2572), - [anon_sym_virtual] = ACTIONS(2572), - [anon_sym_explicit] = ACTIONS(2572), - [anon_sym_typename] = ACTIONS(2572), - [anon_sym_template] = ACTIONS(2572), - [anon_sym_operator] = ACTIONS(2572), - [anon_sym_try] = ACTIONS(2572), - [anon_sym_delete] = ACTIONS(2572), - [anon_sym_throw] = ACTIONS(2572), - [anon_sym_namespace] = ACTIONS(2572), - [anon_sym_using] = ACTIONS(2572), - [anon_sym_static_assert] = ACTIONS(2572), - [anon_sym_concept] = ACTIONS(2572), - [anon_sym_co_return] = ACTIONS(2572), - [anon_sym_co_yield] = ACTIONS(2572), - [anon_sym_R_DQUOTE] = ACTIONS(2574), - [anon_sym_LR_DQUOTE] = ACTIONS(2574), - [anon_sym_uR_DQUOTE] = ACTIONS(2574), - [anon_sym_UR_DQUOTE] = ACTIONS(2574), - [anon_sym_u8R_DQUOTE] = ACTIONS(2574), - [anon_sym_co_await] = ACTIONS(2572), - [anon_sym_new] = ACTIONS(2572), - [anon_sym_requires] = ACTIONS(2572), - [sym_this] = ACTIONS(2572), - [sym_nullptr] = ACTIONS(2572), + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token2] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [aux_sym_preproc_else_token1] = ACTIONS(3028), + [aux_sym_preproc_elif_token1] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, [747] = { - [ts_builtin_sym_end] = ACTIONS(2464), - [sym_identifier] = ACTIONS(2462), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2464), - [anon_sym_AMP] = ACTIONS(2462), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_explicit] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_operator] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_namespace] = ACTIONS(2462), - [anon_sym_using] = ACTIONS(2462), - [anon_sym_static_assert] = ACTIONS(2462), - [anon_sym_concept] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token2] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [aux_sym_preproc_else_token1] = ACTIONS(3028), + [aux_sym_preproc_elif_token1] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, [748] = { - [ts_builtin_sym_end] = ACTIONS(2464), - [sym_identifier] = ACTIONS(2462), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2464), - [anon_sym_AMP] = ACTIONS(2462), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_explicit] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_operator] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_namespace] = ACTIONS(2462), - [anon_sym_using] = ACTIONS(2462), - [anon_sym_static_assert] = ACTIONS(2462), - [anon_sym_concept] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_identifier] = ACTIONS(3085), + [aux_sym_preproc_include_token1] = ACTIONS(3085), + [aux_sym_preproc_def_token1] = ACTIONS(3085), + [aux_sym_preproc_if_token1] = ACTIONS(3085), + [aux_sym_preproc_if_token2] = ACTIONS(3085), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3085), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3085), + [aux_sym_preproc_else_token1] = ACTIONS(3085), + [aux_sym_preproc_elif_token1] = ACTIONS(3085), + [sym_preproc_directive] = ACTIONS(3085), + [anon_sym_LPAREN2] = ACTIONS(3087), + [anon_sym_BANG] = ACTIONS(3087), + [anon_sym_TILDE] = ACTIONS(3087), + [anon_sym_DASH] = ACTIONS(3085), + [anon_sym_PLUS] = ACTIONS(3085), + [anon_sym_STAR] = ACTIONS(3087), + [anon_sym_AMP_AMP] = ACTIONS(3087), + [anon_sym_AMP] = ACTIONS(3085), + [anon_sym_SEMI] = ACTIONS(3087), + [anon_sym_typedef] = ACTIONS(3085), + [anon_sym_extern] = ACTIONS(3085), + [anon_sym___attribute__] = ACTIONS(3085), + [anon_sym_COLON_COLON] = ACTIONS(3087), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3087), + [anon_sym___declspec] = ACTIONS(3085), + [anon_sym___based] = ACTIONS(3085), + [anon_sym___cdecl] = ACTIONS(3085), + [anon_sym___clrcall] = ACTIONS(3085), + [anon_sym___stdcall] = ACTIONS(3085), + [anon_sym___fastcall] = ACTIONS(3085), + [anon_sym___thiscall] = ACTIONS(3085), + [anon_sym___vectorcall] = ACTIONS(3085), + [anon_sym_LBRACE] = ACTIONS(3087), + [anon_sym_LBRACK] = ACTIONS(3085), + [anon_sym_static] = ACTIONS(3085), + [anon_sym_register] = ACTIONS(3085), + [anon_sym_inline] = ACTIONS(3085), + [anon_sym_thread_local] = ACTIONS(3085), + [anon_sym_const] = ACTIONS(3085), + [anon_sym_constexpr] = ACTIONS(3085), + [anon_sym_volatile] = ACTIONS(3085), + [anon_sym_restrict] = ACTIONS(3085), + [anon_sym___restrict__] = ACTIONS(3085), + [anon_sym__Atomic] = ACTIONS(3085), + [anon_sym__Noreturn] = ACTIONS(3085), + [anon_sym_noreturn] = ACTIONS(3085), + [anon_sym_mutable] = ACTIONS(3085), + [anon_sym_constinit] = ACTIONS(3085), + [anon_sym_consteval] = ACTIONS(3085), + [anon_sym_signed] = ACTIONS(3085), + [anon_sym_unsigned] = ACTIONS(3085), + [anon_sym_long] = ACTIONS(3085), + [anon_sym_short] = ACTIONS(3085), + [sym_primitive_type] = ACTIONS(3085), + [anon_sym_enum] = ACTIONS(3085), + [anon_sym_class] = ACTIONS(3085), + [anon_sym_struct] = ACTIONS(3085), + [anon_sym_union] = ACTIONS(3085), + [anon_sym_if] = ACTIONS(3085), + [anon_sym_else] = ACTIONS(3085), + [anon_sym_switch] = ACTIONS(3085), + [anon_sym_case] = ACTIONS(3085), + [anon_sym_default] = ACTIONS(3085), + [anon_sym_while] = ACTIONS(3085), + [anon_sym_do] = ACTIONS(3085), + [anon_sym_for] = ACTIONS(3085), + [anon_sym_return] = ACTIONS(3085), + [anon_sym_break] = ACTIONS(3085), + [anon_sym_continue] = ACTIONS(3085), + [anon_sym_goto] = ACTIONS(3085), + [anon_sym_not] = ACTIONS(3085), + [anon_sym_compl] = ACTIONS(3085), + [anon_sym_DASH_DASH] = ACTIONS(3087), + [anon_sym_PLUS_PLUS] = ACTIONS(3087), + [anon_sym_sizeof] = ACTIONS(3085), + [anon_sym_offsetof] = ACTIONS(3085), + [anon_sym__Generic] = ACTIONS(3085), + [anon_sym_asm] = ACTIONS(3085), + [anon_sym___asm__] = ACTIONS(3085), + [sym_number_literal] = ACTIONS(3087), + [anon_sym_L_SQUOTE] = ACTIONS(3087), + [anon_sym_u_SQUOTE] = ACTIONS(3087), + [anon_sym_U_SQUOTE] = ACTIONS(3087), + [anon_sym_u8_SQUOTE] = ACTIONS(3087), + [anon_sym_SQUOTE] = ACTIONS(3087), + [anon_sym_L_DQUOTE] = ACTIONS(3087), + [anon_sym_u_DQUOTE] = ACTIONS(3087), + [anon_sym_U_DQUOTE] = ACTIONS(3087), + [anon_sym_u8_DQUOTE] = ACTIONS(3087), + [anon_sym_DQUOTE] = ACTIONS(3087), + [sym_true] = ACTIONS(3085), + [sym_false] = ACTIONS(3085), + [anon_sym_NULL] = ACTIONS(3085), + [anon_sym_nullptr] = ACTIONS(3085), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3085), + [anon_sym_decltype] = ACTIONS(3085), + [anon_sym_virtual] = ACTIONS(3085), + [anon_sym_explicit] = ACTIONS(3085), + [anon_sym_typename] = ACTIONS(3085), + [anon_sym_template] = ACTIONS(3085), + [anon_sym_operator] = ACTIONS(3085), + [anon_sym_try] = ACTIONS(3085), + [anon_sym_delete] = ACTIONS(3085), + [anon_sym_throw] = ACTIONS(3085), + [anon_sym_namespace] = ACTIONS(3085), + [anon_sym_using] = ACTIONS(3085), + [anon_sym_static_assert] = ACTIONS(3085), + [anon_sym_concept] = ACTIONS(3085), + [anon_sym_co_return] = ACTIONS(3085), + [anon_sym_co_yield] = ACTIONS(3085), + [anon_sym_R_DQUOTE] = ACTIONS(3087), + [anon_sym_LR_DQUOTE] = ACTIONS(3087), + [anon_sym_uR_DQUOTE] = ACTIONS(3087), + [anon_sym_UR_DQUOTE] = ACTIONS(3087), + [anon_sym_u8R_DQUOTE] = ACTIONS(3087), + [anon_sym_co_await] = ACTIONS(3085), + [anon_sym_new] = ACTIONS(3085), + [anon_sym_requires] = ACTIONS(3085), + [sym_this] = ACTIONS(3085), }, [749] = { - [ts_builtin_sym_end] = ACTIONS(2464), - [sym_identifier] = ACTIONS(2462), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2464), - [anon_sym_AMP] = ACTIONS(2462), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_explicit] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_operator] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_namespace] = ACTIONS(2462), - [anon_sym_using] = ACTIONS(2462), - [anon_sym_static_assert] = ACTIONS(2462), - [anon_sym_concept] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token2] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [aux_sym_preproc_else_token1] = ACTIONS(3028), + [aux_sym_preproc_elif_token1] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, [750] = { - [ts_builtin_sym_end] = ACTIONS(2464), - [sym_identifier] = ACTIONS(2462), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2464), - [anon_sym_AMP] = ACTIONS(2462), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_explicit] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_operator] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_namespace] = ACTIONS(2462), - [anon_sym_using] = ACTIONS(2462), - [anon_sym_static_assert] = ACTIONS(2462), - [anon_sym_concept] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token2] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [aux_sym_preproc_else_token1] = ACTIONS(3028), + [aux_sym_preproc_elif_token1] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, [751] = { - [ts_builtin_sym_end] = ACTIONS(2464), - [sym_identifier] = ACTIONS(2462), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2464), - [anon_sym_AMP] = ACTIONS(2462), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_explicit] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_operator] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_namespace] = ACTIONS(2462), - [anon_sym_using] = ACTIONS(2462), - [anon_sym_static_assert] = ACTIONS(2462), - [anon_sym_concept] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token2] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [aux_sym_preproc_else_token1] = ACTIONS(3048), + [aux_sym_preproc_elif_token1] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, [752] = { - [sym_identifier] = ACTIONS(2630), - [aux_sym_preproc_include_token1] = ACTIONS(2630), - [aux_sym_preproc_def_token1] = ACTIONS(2630), - [aux_sym_preproc_if_token1] = ACTIONS(2630), - [aux_sym_preproc_if_token2] = ACTIONS(2630), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2630), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2630), - [sym_preproc_directive] = ACTIONS(2630), - [anon_sym_LPAREN2] = ACTIONS(2632), - [anon_sym_BANG] = ACTIONS(2632), - [anon_sym_TILDE] = ACTIONS(2632), - [anon_sym_DASH] = ACTIONS(2630), - [anon_sym_PLUS] = ACTIONS(2630), - [anon_sym_STAR] = ACTIONS(2632), - [anon_sym_AMP_AMP] = ACTIONS(2632), - [anon_sym_AMP] = ACTIONS(2630), - [anon_sym_SEMI] = ACTIONS(2632), - [anon_sym_typedef] = ACTIONS(2630), - [anon_sym_extern] = ACTIONS(2630), - [anon_sym___attribute__] = ACTIONS(2630), - [anon_sym_COLON_COLON] = ACTIONS(2632), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2632), - [anon_sym___declspec] = ACTIONS(2630), - [anon_sym___based] = ACTIONS(2630), - [anon_sym___cdecl] = ACTIONS(2630), - [anon_sym___clrcall] = ACTIONS(2630), - [anon_sym___stdcall] = ACTIONS(2630), - [anon_sym___fastcall] = ACTIONS(2630), - [anon_sym___thiscall] = ACTIONS(2630), - [anon_sym___vectorcall] = ACTIONS(2630), - [anon_sym_LBRACE] = ACTIONS(2632), - [anon_sym_LBRACK] = ACTIONS(2630), - [anon_sym_static] = ACTIONS(2630), - [anon_sym_register] = ACTIONS(2630), - [anon_sym_inline] = ACTIONS(2630), - [anon_sym_thread_local] = ACTIONS(2630), - [anon_sym_const] = ACTIONS(2630), - [anon_sym_volatile] = ACTIONS(2630), - [anon_sym_restrict] = ACTIONS(2630), - [anon_sym__Atomic] = ACTIONS(2630), - [anon_sym_mutable] = ACTIONS(2630), - [anon_sym_constexpr] = ACTIONS(2630), - [anon_sym_constinit] = ACTIONS(2630), - [anon_sym_consteval] = ACTIONS(2630), - [anon_sym_signed] = ACTIONS(2630), - [anon_sym_unsigned] = ACTIONS(2630), - [anon_sym_long] = ACTIONS(2630), - [anon_sym_short] = ACTIONS(2630), - [sym_primitive_type] = ACTIONS(2630), - [anon_sym_enum] = ACTIONS(2630), - [anon_sym_class] = ACTIONS(2630), - [anon_sym_struct] = ACTIONS(2630), - [anon_sym_union] = ACTIONS(2630), - [anon_sym_if] = ACTIONS(2630), - [anon_sym_else] = ACTIONS(2630), - [anon_sym_switch] = ACTIONS(2630), - [anon_sym_case] = ACTIONS(2630), - [anon_sym_default] = ACTIONS(2630), - [anon_sym_while] = ACTIONS(2630), - [anon_sym_do] = ACTIONS(2630), - [anon_sym_for] = ACTIONS(2630), - [anon_sym_return] = ACTIONS(2630), - [anon_sym_break] = ACTIONS(2630), - [anon_sym_continue] = ACTIONS(2630), - [anon_sym_goto] = ACTIONS(2630), - [anon_sym_not] = ACTIONS(2630), - [anon_sym_compl] = ACTIONS(2630), - [anon_sym_DASH_DASH] = ACTIONS(2632), - [anon_sym_PLUS_PLUS] = ACTIONS(2632), - [anon_sym_sizeof] = ACTIONS(2630), - [sym_number_literal] = ACTIONS(2632), - [anon_sym_L_SQUOTE] = ACTIONS(2632), - [anon_sym_u_SQUOTE] = ACTIONS(2632), - [anon_sym_U_SQUOTE] = ACTIONS(2632), - [anon_sym_u8_SQUOTE] = ACTIONS(2632), - [anon_sym_SQUOTE] = ACTIONS(2632), - [anon_sym_L_DQUOTE] = ACTIONS(2632), - [anon_sym_u_DQUOTE] = ACTIONS(2632), - [anon_sym_U_DQUOTE] = ACTIONS(2632), - [anon_sym_u8_DQUOTE] = ACTIONS(2632), - [anon_sym_DQUOTE] = ACTIONS(2632), - [sym_true] = ACTIONS(2630), - [sym_false] = ACTIONS(2630), - [sym_null] = ACTIONS(2630), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2630), - [anon_sym_decltype] = ACTIONS(2630), - [anon_sym_virtual] = ACTIONS(2630), - [anon_sym_explicit] = ACTIONS(2630), - [anon_sym_typename] = ACTIONS(2630), - [anon_sym_template] = ACTIONS(2630), - [anon_sym_operator] = ACTIONS(2630), - [anon_sym_try] = ACTIONS(2630), - [anon_sym_delete] = ACTIONS(2630), - [anon_sym_throw] = ACTIONS(2630), - [anon_sym_namespace] = ACTIONS(2630), - [anon_sym_using] = ACTIONS(2630), - [anon_sym_static_assert] = ACTIONS(2630), - [anon_sym_concept] = ACTIONS(2630), - [anon_sym_co_return] = ACTIONS(2630), - [anon_sym_co_yield] = ACTIONS(2630), - [anon_sym_R_DQUOTE] = ACTIONS(2632), - [anon_sym_LR_DQUOTE] = ACTIONS(2632), - [anon_sym_uR_DQUOTE] = ACTIONS(2632), - [anon_sym_UR_DQUOTE] = ACTIONS(2632), - [anon_sym_u8R_DQUOTE] = ACTIONS(2632), - [anon_sym_co_await] = ACTIONS(2630), - [anon_sym_new] = ACTIONS(2630), - [anon_sym_requires] = ACTIONS(2630), - [sym_this] = ACTIONS(2630), - [sym_nullptr] = ACTIONS(2630), + [sym_identifier] = ACTIONS(3085), + [aux_sym_preproc_include_token1] = ACTIONS(3085), + [aux_sym_preproc_def_token1] = ACTIONS(3085), + [aux_sym_preproc_if_token1] = ACTIONS(3085), + [aux_sym_preproc_if_token2] = ACTIONS(3085), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3085), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3085), + [aux_sym_preproc_else_token1] = ACTIONS(3085), + [aux_sym_preproc_elif_token1] = ACTIONS(3085), + [sym_preproc_directive] = ACTIONS(3085), + [anon_sym_LPAREN2] = ACTIONS(3087), + [anon_sym_BANG] = ACTIONS(3087), + [anon_sym_TILDE] = ACTIONS(3087), + [anon_sym_DASH] = ACTIONS(3085), + [anon_sym_PLUS] = ACTIONS(3085), + [anon_sym_STAR] = ACTIONS(3087), + [anon_sym_AMP_AMP] = ACTIONS(3087), + [anon_sym_AMP] = ACTIONS(3085), + [anon_sym_SEMI] = ACTIONS(3087), + [anon_sym_typedef] = ACTIONS(3085), + [anon_sym_extern] = ACTIONS(3085), + [anon_sym___attribute__] = ACTIONS(3085), + [anon_sym_COLON_COLON] = ACTIONS(3087), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3087), + [anon_sym___declspec] = ACTIONS(3085), + [anon_sym___based] = ACTIONS(3085), + [anon_sym___cdecl] = ACTIONS(3085), + [anon_sym___clrcall] = ACTIONS(3085), + [anon_sym___stdcall] = ACTIONS(3085), + [anon_sym___fastcall] = ACTIONS(3085), + [anon_sym___thiscall] = ACTIONS(3085), + [anon_sym___vectorcall] = ACTIONS(3085), + [anon_sym_LBRACE] = ACTIONS(3087), + [anon_sym_LBRACK] = ACTIONS(3085), + [anon_sym_static] = ACTIONS(3085), + [anon_sym_register] = ACTIONS(3085), + [anon_sym_inline] = ACTIONS(3085), + [anon_sym_thread_local] = ACTIONS(3085), + [anon_sym_const] = ACTIONS(3085), + [anon_sym_constexpr] = ACTIONS(3085), + [anon_sym_volatile] = ACTIONS(3085), + [anon_sym_restrict] = ACTIONS(3085), + [anon_sym___restrict__] = ACTIONS(3085), + [anon_sym__Atomic] = ACTIONS(3085), + [anon_sym__Noreturn] = ACTIONS(3085), + [anon_sym_noreturn] = ACTIONS(3085), + [anon_sym_mutable] = ACTIONS(3085), + [anon_sym_constinit] = ACTIONS(3085), + [anon_sym_consteval] = ACTIONS(3085), + [anon_sym_signed] = ACTIONS(3085), + [anon_sym_unsigned] = ACTIONS(3085), + [anon_sym_long] = ACTIONS(3085), + [anon_sym_short] = ACTIONS(3085), + [sym_primitive_type] = ACTIONS(3085), + [anon_sym_enum] = ACTIONS(3085), + [anon_sym_class] = ACTIONS(3085), + [anon_sym_struct] = ACTIONS(3085), + [anon_sym_union] = ACTIONS(3085), + [anon_sym_if] = ACTIONS(3085), + [anon_sym_else] = ACTIONS(3085), + [anon_sym_switch] = ACTIONS(3085), + [anon_sym_case] = ACTIONS(3085), + [anon_sym_default] = ACTIONS(3085), + [anon_sym_while] = ACTIONS(3085), + [anon_sym_do] = ACTIONS(3085), + [anon_sym_for] = ACTIONS(3085), + [anon_sym_return] = ACTIONS(3085), + [anon_sym_break] = ACTIONS(3085), + [anon_sym_continue] = ACTIONS(3085), + [anon_sym_goto] = ACTIONS(3085), + [anon_sym_not] = ACTIONS(3085), + [anon_sym_compl] = ACTIONS(3085), + [anon_sym_DASH_DASH] = ACTIONS(3087), + [anon_sym_PLUS_PLUS] = ACTIONS(3087), + [anon_sym_sizeof] = ACTIONS(3085), + [anon_sym_offsetof] = ACTIONS(3085), + [anon_sym__Generic] = ACTIONS(3085), + [anon_sym_asm] = ACTIONS(3085), + [anon_sym___asm__] = ACTIONS(3085), + [sym_number_literal] = ACTIONS(3087), + [anon_sym_L_SQUOTE] = ACTIONS(3087), + [anon_sym_u_SQUOTE] = ACTIONS(3087), + [anon_sym_U_SQUOTE] = ACTIONS(3087), + [anon_sym_u8_SQUOTE] = ACTIONS(3087), + [anon_sym_SQUOTE] = ACTIONS(3087), + [anon_sym_L_DQUOTE] = ACTIONS(3087), + [anon_sym_u_DQUOTE] = ACTIONS(3087), + [anon_sym_U_DQUOTE] = ACTIONS(3087), + [anon_sym_u8_DQUOTE] = ACTIONS(3087), + [anon_sym_DQUOTE] = ACTIONS(3087), + [sym_true] = ACTIONS(3085), + [sym_false] = ACTIONS(3085), + [anon_sym_NULL] = ACTIONS(3085), + [anon_sym_nullptr] = ACTIONS(3085), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3085), + [anon_sym_decltype] = ACTIONS(3085), + [anon_sym_virtual] = ACTIONS(3085), + [anon_sym_explicit] = ACTIONS(3085), + [anon_sym_typename] = ACTIONS(3085), + [anon_sym_template] = ACTIONS(3085), + [anon_sym_operator] = ACTIONS(3085), + [anon_sym_try] = ACTIONS(3085), + [anon_sym_delete] = ACTIONS(3085), + [anon_sym_throw] = ACTIONS(3085), + [anon_sym_namespace] = ACTIONS(3085), + [anon_sym_using] = ACTIONS(3085), + [anon_sym_static_assert] = ACTIONS(3085), + [anon_sym_concept] = ACTIONS(3085), + [anon_sym_co_return] = ACTIONS(3085), + [anon_sym_co_yield] = ACTIONS(3085), + [anon_sym_R_DQUOTE] = ACTIONS(3087), + [anon_sym_LR_DQUOTE] = ACTIONS(3087), + [anon_sym_uR_DQUOTE] = ACTIONS(3087), + [anon_sym_UR_DQUOTE] = ACTIONS(3087), + [anon_sym_u8R_DQUOTE] = ACTIONS(3087), + [anon_sym_co_await] = ACTIONS(3085), + [anon_sym_new] = ACTIONS(3085), + [anon_sym_requires] = ACTIONS(3085), + [sym_this] = ACTIONS(3085), }, [753] = { - [sym_identifier] = ACTIONS(2630), - [aux_sym_preproc_include_token1] = ACTIONS(2630), - [aux_sym_preproc_def_token1] = ACTIONS(2630), - [aux_sym_preproc_if_token1] = ACTIONS(2630), - [aux_sym_preproc_if_token2] = ACTIONS(2630), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2630), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2630), - [sym_preproc_directive] = ACTIONS(2630), - [anon_sym_LPAREN2] = ACTIONS(2632), - [anon_sym_BANG] = ACTIONS(2632), - [anon_sym_TILDE] = ACTIONS(2632), - [anon_sym_DASH] = ACTIONS(2630), - [anon_sym_PLUS] = ACTIONS(2630), - [anon_sym_STAR] = ACTIONS(2632), - [anon_sym_AMP_AMP] = ACTIONS(2632), - [anon_sym_AMP] = ACTIONS(2630), - [anon_sym_SEMI] = ACTIONS(2632), - [anon_sym_typedef] = ACTIONS(2630), - [anon_sym_extern] = ACTIONS(2630), - [anon_sym___attribute__] = ACTIONS(2630), - [anon_sym_COLON_COLON] = ACTIONS(2632), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2632), - [anon_sym___declspec] = ACTIONS(2630), - [anon_sym___based] = ACTIONS(2630), - [anon_sym___cdecl] = ACTIONS(2630), - [anon_sym___clrcall] = ACTIONS(2630), - [anon_sym___stdcall] = ACTIONS(2630), - [anon_sym___fastcall] = ACTIONS(2630), - [anon_sym___thiscall] = ACTIONS(2630), - [anon_sym___vectorcall] = ACTIONS(2630), - [anon_sym_LBRACE] = ACTIONS(2632), - [anon_sym_LBRACK] = ACTIONS(2630), - [anon_sym_static] = ACTIONS(2630), - [anon_sym_register] = ACTIONS(2630), - [anon_sym_inline] = ACTIONS(2630), - [anon_sym_thread_local] = ACTIONS(2630), - [anon_sym_const] = ACTIONS(2630), - [anon_sym_volatile] = ACTIONS(2630), - [anon_sym_restrict] = ACTIONS(2630), - [anon_sym__Atomic] = ACTIONS(2630), - [anon_sym_mutable] = ACTIONS(2630), - [anon_sym_constexpr] = ACTIONS(2630), - [anon_sym_constinit] = ACTIONS(2630), - [anon_sym_consteval] = ACTIONS(2630), - [anon_sym_signed] = ACTIONS(2630), - [anon_sym_unsigned] = ACTIONS(2630), - [anon_sym_long] = ACTIONS(2630), - [anon_sym_short] = ACTIONS(2630), - [sym_primitive_type] = ACTIONS(2630), - [anon_sym_enum] = ACTIONS(2630), - [anon_sym_class] = ACTIONS(2630), - [anon_sym_struct] = ACTIONS(2630), - [anon_sym_union] = ACTIONS(2630), - [anon_sym_if] = ACTIONS(2630), - [anon_sym_else] = ACTIONS(2630), - [anon_sym_switch] = ACTIONS(2630), - [anon_sym_case] = ACTIONS(2630), - [anon_sym_default] = ACTIONS(2630), - [anon_sym_while] = ACTIONS(2630), - [anon_sym_do] = ACTIONS(2630), - [anon_sym_for] = ACTIONS(2630), - [anon_sym_return] = ACTIONS(2630), - [anon_sym_break] = ACTIONS(2630), - [anon_sym_continue] = ACTIONS(2630), - [anon_sym_goto] = ACTIONS(2630), - [anon_sym_not] = ACTIONS(2630), - [anon_sym_compl] = ACTIONS(2630), - [anon_sym_DASH_DASH] = ACTIONS(2632), - [anon_sym_PLUS_PLUS] = ACTIONS(2632), - [anon_sym_sizeof] = ACTIONS(2630), - [sym_number_literal] = ACTIONS(2632), - [anon_sym_L_SQUOTE] = ACTIONS(2632), - [anon_sym_u_SQUOTE] = ACTIONS(2632), - [anon_sym_U_SQUOTE] = ACTIONS(2632), - [anon_sym_u8_SQUOTE] = ACTIONS(2632), - [anon_sym_SQUOTE] = ACTIONS(2632), - [anon_sym_L_DQUOTE] = ACTIONS(2632), - [anon_sym_u_DQUOTE] = ACTIONS(2632), - [anon_sym_U_DQUOTE] = ACTIONS(2632), - [anon_sym_u8_DQUOTE] = ACTIONS(2632), - [anon_sym_DQUOTE] = ACTIONS(2632), - [sym_true] = ACTIONS(2630), - [sym_false] = ACTIONS(2630), - [sym_null] = ACTIONS(2630), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2630), - [anon_sym_decltype] = ACTIONS(2630), - [anon_sym_virtual] = ACTIONS(2630), - [anon_sym_explicit] = ACTIONS(2630), - [anon_sym_typename] = ACTIONS(2630), - [anon_sym_template] = ACTIONS(2630), - [anon_sym_operator] = ACTIONS(2630), - [anon_sym_try] = ACTIONS(2630), - [anon_sym_delete] = ACTIONS(2630), - [anon_sym_throw] = ACTIONS(2630), - [anon_sym_namespace] = ACTIONS(2630), - [anon_sym_using] = ACTIONS(2630), - [anon_sym_static_assert] = ACTIONS(2630), - [anon_sym_concept] = ACTIONS(2630), - [anon_sym_co_return] = ACTIONS(2630), - [anon_sym_co_yield] = ACTIONS(2630), - [anon_sym_R_DQUOTE] = ACTIONS(2632), - [anon_sym_LR_DQUOTE] = ACTIONS(2632), - [anon_sym_uR_DQUOTE] = ACTIONS(2632), - [anon_sym_UR_DQUOTE] = ACTIONS(2632), - [anon_sym_u8R_DQUOTE] = ACTIONS(2632), - [anon_sym_co_await] = ACTIONS(2630), - [anon_sym_new] = ACTIONS(2630), - [anon_sym_requires] = ACTIONS(2630), - [sym_this] = ACTIONS(2630), - [sym_nullptr] = ACTIONS(2630), + [sym_identifier] = ACTIONS(3455), + [aux_sym_preproc_include_token1] = ACTIONS(3455), + [aux_sym_preproc_def_token1] = ACTIONS(3455), + [aux_sym_preproc_if_token1] = ACTIONS(3455), + [aux_sym_preproc_if_token2] = ACTIONS(3455), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3455), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3455), + [aux_sym_preproc_else_token1] = ACTIONS(3455), + [aux_sym_preproc_elif_token1] = ACTIONS(3455), + [sym_preproc_directive] = ACTIONS(3455), + [anon_sym_LPAREN2] = ACTIONS(3457), + [anon_sym_BANG] = ACTIONS(3457), + [anon_sym_TILDE] = ACTIONS(3457), + [anon_sym_DASH] = ACTIONS(3455), + [anon_sym_PLUS] = ACTIONS(3455), + [anon_sym_STAR] = ACTIONS(3457), + [anon_sym_AMP_AMP] = ACTIONS(3457), + [anon_sym_AMP] = ACTIONS(3455), + [anon_sym_SEMI] = ACTIONS(3457), + [anon_sym_typedef] = ACTIONS(3455), + [anon_sym_extern] = ACTIONS(3455), + [anon_sym___attribute__] = ACTIONS(3455), + [anon_sym_COLON_COLON] = ACTIONS(3457), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3457), + [anon_sym___declspec] = ACTIONS(3455), + [anon_sym___based] = ACTIONS(3455), + [anon_sym___cdecl] = ACTIONS(3455), + [anon_sym___clrcall] = ACTIONS(3455), + [anon_sym___stdcall] = ACTIONS(3455), + [anon_sym___fastcall] = ACTIONS(3455), + [anon_sym___thiscall] = ACTIONS(3455), + [anon_sym___vectorcall] = ACTIONS(3455), + [anon_sym_LBRACE] = ACTIONS(3457), + [anon_sym_LBRACK] = ACTIONS(3455), + [anon_sym_static] = ACTIONS(3455), + [anon_sym_register] = ACTIONS(3455), + [anon_sym_inline] = ACTIONS(3455), + [anon_sym_thread_local] = ACTIONS(3455), + [anon_sym_const] = ACTIONS(3455), + [anon_sym_constexpr] = ACTIONS(3455), + [anon_sym_volatile] = ACTIONS(3455), + [anon_sym_restrict] = ACTIONS(3455), + [anon_sym___restrict__] = ACTIONS(3455), + [anon_sym__Atomic] = ACTIONS(3455), + [anon_sym__Noreturn] = ACTIONS(3455), + [anon_sym_noreturn] = ACTIONS(3455), + [anon_sym_mutable] = ACTIONS(3455), + [anon_sym_constinit] = ACTIONS(3455), + [anon_sym_consteval] = ACTIONS(3455), + [anon_sym_signed] = ACTIONS(3455), + [anon_sym_unsigned] = ACTIONS(3455), + [anon_sym_long] = ACTIONS(3455), + [anon_sym_short] = ACTIONS(3455), + [sym_primitive_type] = ACTIONS(3455), + [anon_sym_enum] = ACTIONS(3455), + [anon_sym_class] = ACTIONS(3455), + [anon_sym_struct] = ACTIONS(3455), + [anon_sym_union] = ACTIONS(3455), + [anon_sym_if] = ACTIONS(3455), + [anon_sym_switch] = ACTIONS(3455), + [anon_sym_case] = ACTIONS(3455), + [anon_sym_default] = ACTIONS(3455), + [anon_sym_while] = ACTIONS(3455), + [anon_sym_do] = ACTIONS(3455), + [anon_sym_for] = ACTIONS(3455), + [anon_sym_return] = ACTIONS(3455), + [anon_sym_break] = ACTIONS(3455), + [anon_sym_continue] = ACTIONS(3455), + [anon_sym_goto] = ACTIONS(3455), + [anon_sym_not] = ACTIONS(3455), + [anon_sym_compl] = ACTIONS(3455), + [anon_sym_DASH_DASH] = ACTIONS(3457), + [anon_sym_PLUS_PLUS] = ACTIONS(3457), + [anon_sym_sizeof] = ACTIONS(3455), + [anon_sym_offsetof] = ACTIONS(3455), + [anon_sym__Generic] = ACTIONS(3455), + [anon_sym_asm] = ACTIONS(3455), + [anon_sym___asm__] = ACTIONS(3455), + [sym_number_literal] = ACTIONS(3457), + [anon_sym_L_SQUOTE] = ACTIONS(3457), + [anon_sym_u_SQUOTE] = ACTIONS(3457), + [anon_sym_U_SQUOTE] = ACTIONS(3457), + [anon_sym_u8_SQUOTE] = ACTIONS(3457), + [anon_sym_SQUOTE] = ACTIONS(3457), + [anon_sym_L_DQUOTE] = ACTIONS(3457), + [anon_sym_u_DQUOTE] = ACTIONS(3457), + [anon_sym_U_DQUOTE] = ACTIONS(3457), + [anon_sym_u8_DQUOTE] = ACTIONS(3457), + [anon_sym_DQUOTE] = ACTIONS(3457), + [sym_true] = ACTIONS(3455), + [sym_false] = ACTIONS(3455), + [anon_sym_NULL] = ACTIONS(3455), + [anon_sym_nullptr] = ACTIONS(3455), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3455), + [anon_sym_decltype] = ACTIONS(3455), + [anon_sym_virtual] = ACTIONS(3455), + [anon_sym_explicit] = ACTIONS(3455), + [anon_sym_typename] = ACTIONS(3455), + [anon_sym_template] = ACTIONS(3455), + [anon_sym_operator] = ACTIONS(3455), + [anon_sym_try] = ACTIONS(3455), + [anon_sym_delete] = ACTIONS(3455), + [anon_sym_throw] = ACTIONS(3455), + [anon_sym_namespace] = ACTIONS(3455), + [anon_sym_using] = ACTIONS(3455), + [anon_sym_static_assert] = ACTIONS(3455), + [anon_sym_concept] = ACTIONS(3455), + [anon_sym_co_return] = ACTIONS(3455), + [anon_sym_co_yield] = ACTIONS(3455), + [anon_sym_R_DQUOTE] = ACTIONS(3457), + [anon_sym_LR_DQUOTE] = ACTIONS(3457), + [anon_sym_uR_DQUOTE] = ACTIONS(3457), + [anon_sym_UR_DQUOTE] = ACTIONS(3457), + [anon_sym_u8R_DQUOTE] = ACTIONS(3457), + [anon_sym_co_await] = ACTIONS(3455), + [anon_sym_new] = ACTIONS(3455), + [anon_sym_requires] = ACTIONS(3455), + [sym_this] = ACTIONS(3455), }, [754] = { - [ts_builtin_sym_end] = ACTIONS(2464), - [sym_identifier] = ACTIONS(2462), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2464), - [anon_sym_AMP] = ACTIONS(2462), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_explicit] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_operator] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_namespace] = ACTIONS(2462), - [anon_sym_using] = ACTIONS(2462), - [anon_sym_static_assert] = ACTIONS(2462), - [anon_sym_concept] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_identifier] = ACTIONS(3368), + [aux_sym_preproc_include_token1] = ACTIONS(3368), + [aux_sym_preproc_def_token1] = ACTIONS(3368), + [aux_sym_preproc_if_token1] = ACTIONS(3368), + [aux_sym_preproc_if_token2] = ACTIONS(3368), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3368), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3368), + [aux_sym_preproc_else_token1] = ACTIONS(3368), + [aux_sym_preproc_elif_token1] = ACTIONS(3368), + [sym_preproc_directive] = ACTIONS(3368), + [anon_sym_LPAREN2] = ACTIONS(3370), + [anon_sym_BANG] = ACTIONS(3370), + [anon_sym_TILDE] = ACTIONS(3370), + [anon_sym_DASH] = ACTIONS(3368), + [anon_sym_PLUS] = ACTIONS(3368), + [anon_sym_STAR] = ACTIONS(3370), + [anon_sym_AMP_AMP] = ACTIONS(3370), + [anon_sym_AMP] = ACTIONS(3368), + [anon_sym_SEMI] = ACTIONS(3370), + [anon_sym_typedef] = ACTIONS(3368), + [anon_sym_extern] = ACTIONS(3368), + [anon_sym___attribute__] = ACTIONS(3368), + [anon_sym_COLON_COLON] = ACTIONS(3370), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3370), + [anon_sym___declspec] = ACTIONS(3368), + [anon_sym___based] = ACTIONS(3368), + [anon_sym___cdecl] = ACTIONS(3368), + [anon_sym___clrcall] = ACTIONS(3368), + [anon_sym___stdcall] = ACTIONS(3368), + [anon_sym___fastcall] = ACTIONS(3368), + [anon_sym___thiscall] = ACTIONS(3368), + [anon_sym___vectorcall] = ACTIONS(3368), + [anon_sym_LBRACE] = ACTIONS(3370), + [anon_sym_LBRACK] = ACTIONS(3368), + [anon_sym_static] = ACTIONS(3368), + [anon_sym_register] = ACTIONS(3368), + [anon_sym_inline] = ACTIONS(3368), + [anon_sym_thread_local] = ACTIONS(3368), + [anon_sym_const] = ACTIONS(3368), + [anon_sym_constexpr] = ACTIONS(3368), + [anon_sym_volatile] = ACTIONS(3368), + [anon_sym_restrict] = ACTIONS(3368), + [anon_sym___restrict__] = ACTIONS(3368), + [anon_sym__Atomic] = ACTIONS(3368), + [anon_sym__Noreturn] = ACTIONS(3368), + [anon_sym_noreturn] = ACTIONS(3368), + [anon_sym_mutable] = ACTIONS(3368), + [anon_sym_constinit] = ACTIONS(3368), + [anon_sym_consteval] = ACTIONS(3368), + [anon_sym_signed] = ACTIONS(3368), + [anon_sym_unsigned] = ACTIONS(3368), + [anon_sym_long] = ACTIONS(3368), + [anon_sym_short] = ACTIONS(3368), + [sym_primitive_type] = ACTIONS(3368), + [anon_sym_enum] = ACTIONS(3368), + [anon_sym_class] = ACTIONS(3368), + [anon_sym_struct] = ACTIONS(3368), + [anon_sym_union] = ACTIONS(3368), + [anon_sym_if] = ACTIONS(3368), + [anon_sym_switch] = ACTIONS(3368), + [anon_sym_case] = ACTIONS(3368), + [anon_sym_default] = ACTIONS(3368), + [anon_sym_while] = ACTIONS(3368), + [anon_sym_do] = ACTIONS(3368), + [anon_sym_for] = ACTIONS(3368), + [anon_sym_return] = ACTIONS(3368), + [anon_sym_break] = ACTIONS(3368), + [anon_sym_continue] = ACTIONS(3368), + [anon_sym_goto] = ACTIONS(3368), + [anon_sym_not] = ACTIONS(3368), + [anon_sym_compl] = ACTIONS(3368), + [anon_sym_DASH_DASH] = ACTIONS(3370), + [anon_sym_PLUS_PLUS] = ACTIONS(3370), + [anon_sym_sizeof] = ACTIONS(3368), + [anon_sym_offsetof] = ACTIONS(3368), + [anon_sym__Generic] = ACTIONS(3368), + [anon_sym_asm] = ACTIONS(3368), + [anon_sym___asm__] = ACTIONS(3368), + [sym_number_literal] = ACTIONS(3370), + [anon_sym_L_SQUOTE] = ACTIONS(3370), + [anon_sym_u_SQUOTE] = ACTIONS(3370), + [anon_sym_U_SQUOTE] = ACTIONS(3370), + [anon_sym_u8_SQUOTE] = ACTIONS(3370), + [anon_sym_SQUOTE] = ACTIONS(3370), + [anon_sym_L_DQUOTE] = ACTIONS(3370), + [anon_sym_u_DQUOTE] = ACTIONS(3370), + [anon_sym_U_DQUOTE] = ACTIONS(3370), + [anon_sym_u8_DQUOTE] = ACTIONS(3370), + [anon_sym_DQUOTE] = ACTIONS(3370), + [sym_true] = ACTIONS(3368), + [sym_false] = ACTIONS(3368), + [anon_sym_NULL] = ACTIONS(3368), + [anon_sym_nullptr] = ACTIONS(3368), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3368), + [anon_sym_decltype] = ACTIONS(3368), + [anon_sym_virtual] = ACTIONS(3368), + [anon_sym_explicit] = ACTIONS(3368), + [anon_sym_typename] = ACTIONS(3368), + [anon_sym_template] = ACTIONS(3368), + [anon_sym_operator] = ACTIONS(3368), + [anon_sym_try] = ACTIONS(3368), + [anon_sym_delete] = ACTIONS(3368), + [anon_sym_throw] = ACTIONS(3368), + [anon_sym_namespace] = ACTIONS(3368), + [anon_sym_using] = ACTIONS(3368), + [anon_sym_static_assert] = ACTIONS(3368), + [anon_sym_concept] = ACTIONS(3368), + [anon_sym_co_return] = ACTIONS(3368), + [anon_sym_co_yield] = ACTIONS(3368), + [anon_sym_R_DQUOTE] = ACTIONS(3370), + [anon_sym_LR_DQUOTE] = ACTIONS(3370), + [anon_sym_uR_DQUOTE] = ACTIONS(3370), + [anon_sym_UR_DQUOTE] = ACTIONS(3370), + [anon_sym_u8R_DQUOTE] = ACTIONS(3370), + [anon_sym_co_await] = ACTIONS(3368), + [anon_sym_new] = ACTIONS(3368), + [anon_sym_requires] = ACTIONS(3368), + [sym_this] = ACTIONS(3368), }, [755] = { - [ts_builtin_sym_end] = ACTIONS(2464), - [sym_identifier] = ACTIONS(2462), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2464), - [anon_sym_AMP] = ACTIONS(2462), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_explicit] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_operator] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_namespace] = ACTIONS(2462), - [anon_sym_using] = ACTIONS(2462), - [anon_sym_static_assert] = ACTIONS(2462), - [anon_sym_concept] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_identifier] = ACTIONS(3409), + [aux_sym_preproc_include_token1] = ACTIONS(3409), + [aux_sym_preproc_def_token1] = ACTIONS(3409), + [aux_sym_preproc_if_token1] = ACTIONS(3409), + [aux_sym_preproc_if_token2] = ACTIONS(3409), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3409), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3409), + [aux_sym_preproc_else_token1] = ACTIONS(3409), + [aux_sym_preproc_elif_token1] = ACTIONS(3409), + [sym_preproc_directive] = ACTIONS(3409), + [anon_sym_LPAREN2] = ACTIONS(3411), + [anon_sym_BANG] = ACTIONS(3411), + [anon_sym_TILDE] = ACTIONS(3411), + [anon_sym_DASH] = ACTIONS(3409), + [anon_sym_PLUS] = ACTIONS(3409), + [anon_sym_STAR] = ACTIONS(3411), + [anon_sym_AMP_AMP] = ACTIONS(3411), + [anon_sym_AMP] = ACTIONS(3409), + [anon_sym_SEMI] = ACTIONS(3411), + [anon_sym_typedef] = ACTIONS(3409), + [anon_sym_extern] = ACTIONS(3409), + [anon_sym___attribute__] = ACTIONS(3409), + [anon_sym_COLON_COLON] = ACTIONS(3411), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3411), + [anon_sym___declspec] = ACTIONS(3409), + [anon_sym___based] = ACTIONS(3409), + [anon_sym___cdecl] = ACTIONS(3409), + [anon_sym___clrcall] = ACTIONS(3409), + [anon_sym___stdcall] = ACTIONS(3409), + [anon_sym___fastcall] = ACTIONS(3409), + [anon_sym___thiscall] = ACTIONS(3409), + [anon_sym___vectorcall] = ACTIONS(3409), + [anon_sym_LBRACE] = ACTIONS(3411), + [anon_sym_LBRACK] = ACTIONS(3409), + [anon_sym_static] = ACTIONS(3409), + [anon_sym_register] = ACTIONS(3409), + [anon_sym_inline] = ACTIONS(3409), + [anon_sym_thread_local] = ACTIONS(3409), + [anon_sym_const] = ACTIONS(3409), + [anon_sym_constexpr] = ACTIONS(3409), + [anon_sym_volatile] = ACTIONS(3409), + [anon_sym_restrict] = ACTIONS(3409), + [anon_sym___restrict__] = ACTIONS(3409), + [anon_sym__Atomic] = ACTIONS(3409), + [anon_sym__Noreturn] = ACTIONS(3409), + [anon_sym_noreturn] = ACTIONS(3409), + [anon_sym_mutable] = ACTIONS(3409), + [anon_sym_constinit] = ACTIONS(3409), + [anon_sym_consteval] = ACTIONS(3409), + [anon_sym_signed] = ACTIONS(3409), + [anon_sym_unsigned] = ACTIONS(3409), + [anon_sym_long] = ACTIONS(3409), + [anon_sym_short] = ACTIONS(3409), + [sym_primitive_type] = ACTIONS(3409), + [anon_sym_enum] = ACTIONS(3409), + [anon_sym_class] = ACTIONS(3409), + [anon_sym_struct] = ACTIONS(3409), + [anon_sym_union] = ACTIONS(3409), + [anon_sym_if] = ACTIONS(3409), + [anon_sym_switch] = ACTIONS(3409), + [anon_sym_case] = ACTIONS(3409), + [anon_sym_default] = ACTIONS(3409), + [anon_sym_while] = ACTIONS(3409), + [anon_sym_do] = ACTIONS(3409), + [anon_sym_for] = ACTIONS(3409), + [anon_sym_return] = ACTIONS(3409), + [anon_sym_break] = ACTIONS(3409), + [anon_sym_continue] = ACTIONS(3409), + [anon_sym_goto] = ACTIONS(3409), + [anon_sym_not] = ACTIONS(3409), + [anon_sym_compl] = ACTIONS(3409), + [anon_sym_DASH_DASH] = ACTIONS(3411), + [anon_sym_PLUS_PLUS] = ACTIONS(3411), + [anon_sym_sizeof] = ACTIONS(3409), + [anon_sym_offsetof] = ACTIONS(3409), + [anon_sym__Generic] = ACTIONS(3409), + [anon_sym_asm] = ACTIONS(3409), + [anon_sym___asm__] = ACTIONS(3409), + [sym_number_literal] = ACTIONS(3411), + [anon_sym_L_SQUOTE] = ACTIONS(3411), + [anon_sym_u_SQUOTE] = ACTIONS(3411), + [anon_sym_U_SQUOTE] = ACTIONS(3411), + [anon_sym_u8_SQUOTE] = ACTIONS(3411), + [anon_sym_SQUOTE] = ACTIONS(3411), + [anon_sym_L_DQUOTE] = ACTIONS(3411), + [anon_sym_u_DQUOTE] = ACTIONS(3411), + [anon_sym_U_DQUOTE] = ACTIONS(3411), + [anon_sym_u8_DQUOTE] = ACTIONS(3411), + [anon_sym_DQUOTE] = ACTIONS(3411), + [sym_true] = ACTIONS(3409), + [sym_false] = ACTIONS(3409), + [anon_sym_NULL] = ACTIONS(3409), + [anon_sym_nullptr] = ACTIONS(3409), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3409), + [anon_sym_decltype] = ACTIONS(3409), + [anon_sym_virtual] = ACTIONS(3409), + [anon_sym_explicit] = ACTIONS(3409), + [anon_sym_typename] = ACTIONS(3409), + [anon_sym_template] = ACTIONS(3409), + [anon_sym_operator] = ACTIONS(3409), + [anon_sym_try] = ACTIONS(3409), + [anon_sym_delete] = ACTIONS(3409), + [anon_sym_throw] = ACTIONS(3409), + [anon_sym_namespace] = ACTIONS(3409), + [anon_sym_using] = ACTIONS(3409), + [anon_sym_static_assert] = ACTIONS(3409), + [anon_sym_concept] = ACTIONS(3409), + [anon_sym_co_return] = ACTIONS(3409), + [anon_sym_co_yield] = ACTIONS(3409), + [anon_sym_R_DQUOTE] = ACTIONS(3411), + [anon_sym_LR_DQUOTE] = ACTIONS(3411), + [anon_sym_uR_DQUOTE] = ACTIONS(3411), + [anon_sym_UR_DQUOTE] = ACTIONS(3411), + [anon_sym_u8R_DQUOTE] = ACTIONS(3411), + [anon_sym_co_await] = ACTIONS(3409), + [anon_sym_new] = ACTIONS(3409), + [anon_sym_requires] = ACTIONS(3409), + [sym_this] = ACTIONS(3409), }, [756] = { - [ts_builtin_sym_end] = ACTIONS(2464), - [sym_identifier] = ACTIONS(2462), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2464), - [anon_sym_AMP] = ACTIONS(2462), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_explicit] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_operator] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_namespace] = ACTIONS(2462), - [anon_sym_using] = ACTIONS(2462), - [anon_sym_static_assert] = ACTIONS(2462), - [anon_sym_concept] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_identifier] = ACTIONS(3278), + [aux_sym_preproc_include_token1] = ACTIONS(3278), + [aux_sym_preproc_def_token1] = ACTIONS(3278), + [aux_sym_preproc_if_token1] = ACTIONS(3278), + [aux_sym_preproc_if_token2] = ACTIONS(3278), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3278), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3278), + [aux_sym_preproc_else_token1] = ACTIONS(3278), + [aux_sym_preproc_elif_token1] = ACTIONS(3278), + [sym_preproc_directive] = ACTIONS(3278), + [anon_sym_LPAREN2] = ACTIONS(3280), + [anon_sym_BANG] = ACTIONS(3280), + [anon_sym_TILDE] = ACTIONS(3280), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3280), + [anon_sym_AMP_AMP] = ACTIONS(3280), + [anon_sym_AMP] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3280), + [anon_sym_typedef] = ACTIONS(3278), + [anon_sym_extern] = ACTIONS(3278), + [anon_sym___attribute__] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3280), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3280), + [anon_sym___declspec] = ACTIONS(3278), + [anon_sym___based] = ACTIONS(3278), + [anon_sym___cdecl] = ACTIONS(3278), + [anon_sym___clrcall] = ACTIONS(3278), + [anon_sym___stdcall] = ACTIONS(3278), + [anon_sym___fastcall] = ACTIONS(3278), + [anon_sym___thiscall] = ACTIONS(3278), + [anon_sym___vectorcall] = ACTIONS(3278), + [anon_sym_LBRACE] = ACTIONS(3280), + [anon_sym_LBRACK] = ACTIONS(3278), + [anon_sym_static] = ACTIONS(3278), + [anon_sym_register] = ACTIONS(3278), + [anon_sym_inline] = ACTIONS(3278), + [anon_sym_thread_local] = ACTIONS(3278), + [anon_sym_const] = ACTIONS(3278), + [anon_sym_constexpr] = ACTIONS(3278), + [anon_sym_volatile] = ACTIONS(3278), + [anon_sym_restrict] = ACTIONS(3278), + [anon_sym___restrict__] = ACTIONS(3278), + [anon_sym__Atomic] = ACTIONS(3278), + [anon_sym__Noreturn] = ACTIONS(3278), + [anon_sym_noreturn] = ACTIONS(3278), + [anon_sym_mutable] = ACTIONS(3278), + [anon_sym_constinit] = ACTIONS(3278), + [anon_sym_consteval] = ACTIONS(3278), + [anon_sym_signed] = ACTIONS(3278), + [anon_sym_unsigned] = ACTIONS(3278), + [anon_sym_long] = ACTIONS(3278), + [anon_sym_short] = ACTIONS(3278), + [sym_primitive_type] = ACTIONS(3278), + [anon_sym_enum] = ACTIONS(3278), + [anon_sym_class] = ACTIONS(3278), + [anon_sym_struct] = ACTIONS(3278), + [anon_sym_union] = ACTIONS(3278), + [anon_sym_if] = ACTIONS(3278), + [anon_sym_switch] = ACTIONS(3278), + [anon_sym_case] = ACTIONS(3278), + [anon_sym_default] = ACTIONS(3278), + [anon_sym_while] = ACTIONS(3278), + [anon_sym_do] = ACTIONS(3278), + [anon_sym_for] = ACTIONS(3278), + [anon_sym_return] = ACTIONS(3278), + [anon_sym_break] = ACTIONS(3278), + [anon_sym_continue] = ACTIONS(3278), + [anon_sym_goto] = ACTIONS(3278), + [anon_sym_not] = ACTIONS(3278), + [anon_sym_compl] = ACTIONS(3278), + [anon_sym_DASH_DASH] = ACTIONS(3280), + [anon_sym_PLUS_PLUS] = ACTIONS(3280), + [anon_sym_sizeof] = ACTIONS(3278), + [anon_sym_offsetof] = ACTIONS(3278), + [anon_sym__Generic] = ACTIONS(3278), + [anon_sym_asm] = ACTIONS(3278), + [anon_sym___asm__] = ACTIONS(3278), + [sym_number_literal] = ACTIONS(3280), + [anon_sym_L_SQUOTE] = ACTIONS(3280), + [anon_sym_u_SQUOTE] = ACTIONS(3280), + [anon_sym_U_SQUOTE] = ACTIONS(3280), + [anon_sym_u8_SQUOTE] = ACTIONS(3280), + [anon_sym_SQUOTE] = ACTIONS(3280), + [anon_sym_L_DQUOTE] = ACTIONS(3280), + [anon_sym_u_DQUOTE] = ACTIONS(3280), + [anon_sym_U_DQUOTE] = ACTIONS(3280), + [anon_sym_u8_DQUOTE] = ACTIONS(3280), + [anon_sym_DQUOTE] = ACTIONS(3280), + [sym_true] = ACTIONS(3278), + [sym_false] = ACTIONS(3278), + [anon_sym_NULL] = ACTIONS(3278), + [anon_sym_nullptr] = ACTIONS(3278), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3278), + [anon_sym_decltype] = ACTIONS(3278), + [anon_sym_virtual] = ACTIONS(3278), + [anon_sym_explicit] = ACTIONS(3278), + [anon_sym_typename] = ACTIONS(3278), + [anon_sym_template] = ACTIONS(3278), + [anon_sym_operator] = ACTIONS(3278), + [anon_sym_try] = ACTIONS(3278), + [anon_sym_delete] = ACTIONS(3278), + [anon_sym_throw] = ACTIONS(3278), + [anon_sym_namespace] = ACTIONS(3278), + [anon_sym_using] = ACTIONS(3278), + [anon_sym_static_assert] = ACTIONS(3278), + [anon_sym_concept] = ACTIONS(3278), + [anon_sym_co_return] = ACTIONS(3278), + [anon_sym_co_yield] = ACTIONS(3278), + [anon_sym_R_DQUOTE] = ACTIONS(3280), + [anon_sym_LR_DQUOTE] = ACTIONS(3280), + [anon_sym_uR_DQUOTE] = ACTIONS(3280), + [anon_sym_UR_DQUOTE] = ACTIONS(3280), + [anon_sym_u8R_DQUOTE] = ACTIONS(3280), + [anon_sym_co_await] = ACTIONS(3278), + [anon_sym_new] = ACTIONS(3278), + [anon_sym_requires] = ACTIONS(3278), + [sym_this] = ACTIONS(3278), }, [757] = { - [ts_builtin_sym_end] = ACTIONS(2464), - [sym_identifier] = ACTIONS(2462), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2464), - [anon_sym_AMP] = ACTIONS(2462), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_explicit] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_operator] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_namespace] = ACTIONS(2462), - [anon_sym_using] = ACTIONS(2462), - [anon_sym_static_assert] = ACTIONS(2462), - [anon_sym_concept] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_identifier] = ACTIONS(3274), + [aux_sym_preproc_include_token1] = ACTIONS(3274), + [aux_sym_preproc_def_token1] = ACTIONS(3274), + [aux_sym_preproc_if_token1] = ACTIONS(3274), + [aux_sym_preproc_if_token2] = ACTIONS(3274), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3274), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3274), + [aux_sym_preproc_else_token1] = ACTIONS(3274), + [aux_sym_preproc_elif_token1] = ACTIONS(3274), + [sym_preproc_directive] = ACTIONS(3274), + [anon_sym_LPAREN2] = ACTIONS(3276), + [anon_sym_BANG] = ACTIONS(3276), + [anon_sym_TILDE] = ACTIONS(3276), + [anon_sym_DASH] = ACTIONS(3274), + [anon_sym_PLUS] = ACTIONS(3274), + [anon_sym_STAR] = ACTIONS(3276), + [anon_sym_AMP_AMP] = ACTIONS(3276), + [anon_sym_AMP] = ACTIONS(3274), + [anon_sym_SEMI] = ACTIONS(3276), + [anon_sym_typedef] = ACTIONS(3274), + [anon_sym_extern] = ACTIONS(3274), + [anon_sym___attribute__] = ACTIONS(3274), + [anon_sym_COLON_COLON] = ACTIONS(3276), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3276), + [anon_sym___declspec] = ACTIONS(3274), + [anon_sym___based] = ACTIONS(3274), + [anon_sym___cdecl] = ACTIONS(3274), + [anon_sym___clrcall] = ACTIONS(3274), + [anon_sym___stdcall] = ACTIONS(3274), + [anon_sym___fastcall] = ACTIONS(3274), + [anon_sym___thiscall] = ACTIONS(3274), + [anon_sym___vectorcall] = ACTIONS(3274), + [anon_sym_LBRACE] = ACTIONS(3276), + [anon_sym_LBRACK] = ACTIONS(3274), + [anon_sym_static] = ACTIONS(3274), + [anon_sym_register] = ACTIONS(3274), + [anon_sym_inline] = ACTIONS(3274), + [anon_sym_thread_local] = ACTIONS(3274), + [anon_sym_const] = ACTIONS(3274), + [anon_sym_constexpr] = ACTIONS(3274), + [anon_sym_volatile] = ACTIONS(3274), + [anon_sym_restrict] = ACTIONS(3274), + [anon_sym___restrict__] = ACTIONS(3274), + [anon_sym__Atomic] = ACTIONS(3274), + [anon_sym__Noreturn] = ACTIONS(3274), + [anon_sym_noreturn] = ACTIONS(3274), + [anon_sym_mutable] = ACTIONS(3274), + [anon_sym_constinit] = ACTIONS(3274), + [anon_sym_consteval] = ACTIONS(3274), + [anon_sym_signed] = ACTIONS(3274), + [anon_sym_unsigned] = ACTIONS(3274), + [anon_sym_long] = ACTIONS(3274), + [anon_sym_short] = ACTIONS(3274), + [sym_primitive_type] = ACTIONS(3274), + [anon_sym_enum] = ACTIONS(3274), + [anon_sym_class] = ACTIONS(3274), + [anon_sym_struct] = ACTIONS(3274), + [anon_sym_union] = ACTIONS(3274), + [anon_sym_if] = ACTIONS(3274), + [anon_sym_switch] = ACTIONS(3274), + [anon_sym_case] = ACTIONS(3274), + [anon_sym_default] = ACTIONS(3274), + [anon_sym_while] = ACTIONS(3274), + [anon_sym_do] = ACTIONS(3274), + [anon_sym_for] = ACTIONS(3274), + [anon_sym_return] = ACTIONS(3274), + [anon_sym_break] = ACTIONS(3274), + [anon_sym_continue] = ACTIONS(3274), + [anon_sym_goto] = ACTIONS(3274), + [anon_sym_not] = ACTIONS(3274), + [anon_sym_compl] = ACTIONS(3274), + [anon_sym_DASH_DASH] = ACTIONS(3276), + [anon_sym_PLUS_PLUS] = ACTIONS(3276), + [anon_sym_sizeof] = ACTIONS(3274), + [anon_sym_offsetof] = ACTIONS(3274), + [anon_sym__Generic] = ACTIONS(3274), + [anon_sym_asm] = ACTIONS(3274), + [anon_sym___asm__] = ACTIONS(3274), + [sym_number_literal] = ACTIONS(3276), + [anon_sym_L_SQUOTE] = ACTIONS(3276), + [anon_sym_u_SQUOTE] = ACTIONS(3276), + [anon_sym_U_SQUOTE] = ACTIONS(3276), + [anon_sym_u8_SQUOTE] = ACTIONS(3276), + [anon_sym_SQUOTE] = ACTIONS(3276), + [anon_sym_L_DQUOTE] = ACTIONS(3276), + [anon_sym_u_DQUOTE] = ACTIONS(3276), + [anon_sym_U_DQUOTE] = ACTIONS(3276), + [anon_sym_u8_DQUOTE] = ACTIONS(3276), + [anon_sym_DQUOTE] = ACTIONS(3276), + [sym_true] = ACTIONS(3274), + [sym_false] = ACTIONS(3274), + [anon_sym_NULL] = ACTIONS(3274), + [anon_sym_nullptr] = ACTIONS(3274), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3274), + [anon_sym_decltype] = ACTIONS(3274), + [anon_sym_virtual] = ACTIONS(3274), + [anon_sym_explicit] = ACTIONS(3274), + [anon_sym_typename] = ACTIONS(3274), + [anon_sym_template] = ACTIONS(3274), + [anon_sym_operator] = ACTIONS(3274), + [anon_sym_try] = ACTIONS(3274), + [anon_sym_delete] = ACTIONS(3274), + [anon_sym_throw] = ACTIONS(3274), + [anon_sym_namespace] = ACTIONS(3274), + [anon_sym_using] = ACTIONS(3274), + [anon_sym_static_assert] = ACTIONS(3274), + [anon_sym_concept] = ACTIONS(3274), + [anon_sym_co_return] = ACTIONS(3274), + [anon_sym_co_yield] = ACTIONS(3274), + [anon_sym_R_DQUOTE] = ACTIONS(3276), + [anon_sym_LR_DQUOTE] = ACTIONS(3276), + [anon_sym_uR_DQUOTE] = ACTIONS(3276), + [anon_sym_UR_DQUOTE] = ACTIONS(3276), + [anon_sym_u8R_DQUOTE] = ACTIONS(3276), + [anon_sym_co_await] = ACTIONS(3274), + [anon_sym_new] = ACTIONS(3274), + [anon_sym_requires] = ACTIONS(3274), + [sym_this] = ACTIONS(3274), }, [758] = { - [ts_builtin_sym_end] = ACTIONS(2464), - [sym_identifier] = ACTIONS(2462), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2464), - [anon_sym_AMP] = ACTIONS(2462), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_explicit] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_operator] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_namespace] = ACTIONS(2462), - [anon_sym_using] = ACTIONS(2462), - [anon_sym_static_assert] = ACTIONS(2462), - [anon_sym_concept] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_identifier] = ACTIONS(3364), + [aux_sym_preproc_include_token1] = ACTIONS(3364), + [aux_sym_preproc_def_token1] = ACTIONS(3364), + [aux_sym_preproc_if_token1] = ACTIONS(3364), + [aux_sym_preproc_if_token2] = ACTIONS(3364), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3364), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3364), + [aux_sym_preproc_else_token1] = ACTIONS(3364), + [aux_sym_preproc_elif_token1] = ACTIONS(3364), + [sym_preproc_directive] = ACTIONS(3364), + [anon_sym_LPAREN2] = ACTIONS(3366), + [anon_sym_BANG] = ACTIONS(3366), + [anon_sym_TILDE] = ACTIONS(3366), + [anon_sym_DASH] = ACTIONS(3364), + [anon_sym_PLUS] = ACTIONS(3364), + [anon_sym_STAR] = ACTIONS(3366), + [anon_sym_AMP_AMP] = ACTIONS(3366), + [anon_sym_AMP] = ACTIONS(3364), + [anon_sym_SEMI] = ACTIONS(3366), + [anon_sym_typedef] = ACTIONS(3364), + [anon_sym_extern] = ACTIONS(3364), + [anon_sym___attribute__] = ACTIONS(3364), + [anon_sym_COLON_COLON] = ACTIONS(3366), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3366), + [anon_sym___declspec] = ACTIONS(3364), + [anon_sym___based] = ACTIONS(3364), + [anon_sym___cdecl] = ACTIONS(3364), + [anon_sym___clrcall] = ACTIONS(3364), + [anon_sym___stdcall] = ACTIONS(3364), + [anon_sym___fastcall] = ACTIONS(3364), + [anon_sym___thiscall] = ACTIONS(3364), + [anon_sym___vectorcall] = ACTIONS(3364), + [anon_sym_LBRACE] = ACTIONS(3366), + [anon_sym_LBRACK] = ACTIONS(3364), + [anon_sym_static] = ACTIONS(3364), + [anon_sym_register] = ACTIONS(3364), + [anon_sym_inline] = ACTIONS(3364), + [anon_sym_thread_local] = ACTIONS(3364), + [anon_sym_const] = ACTIONS(3364), + [anon_sym_constexpr] = ACTIONS(3364), + [anon_sym_volatile] = ACTIONS(3364), + [anon_sym_restrict] = ACTIONS(3364), + [anon_sym___restrict__] = ACTIONS(3364), + [anon_sym__Atomic] = ACTIONS(3364), + [anon_sym__Noreturn] = ACTIONS(3364), + [anon_sym_noreturn] = ACTIONS(3364), + [anon_sym_mutable] = ACTIONS(3364), + [anon_sym_constinit] = ACTIONS(3364), + [anon_sym_consteval] = ACTIONS(3364), + [anon_sym_signed] = ACTIONS(3364), + [anon_sym_unsigned] = ACTIONS(3364), + [anon_sym_long] = ACTIONS(3364), + [anon_sym_short] = ACTIONS(3364), + [sym_primitive_type] = ACTIONS(3364), + [anon_sym_enum] = ACTIONS(3364), + [anon_sym_class] = ACTIONS(3364), + [anon_sym_struct] = ACTIONS(3364), + [anon_sym_union] = ACTIONS(3364), + [anon_sym_if] = ACTIONS(3364), + [anon_sym_switch] = ACTIONS(3364), + [anon_sym_case] = ACTIONS(3364), + [anon_sym_default] = ACTIONS(3364), + [anon_sym_while] = ACTIONS(3364), + [anon_sym_do] = ACTIONS(3364), + [anon_sym_for] = ACTIONS(3364), + [anon_sym_return] = ACTIONS(3364), + [anon_sym_break] = ACTIONS(3364), + [anon_sym_continue] = ACTIONS(3364), + [anon_sym_goto] = ACTIONS(3364), + [anon_sym_not] = ACTIONS(3364), + [anon_sym_compl] = ACTIONS(3364), + [anon_sym_DASH_DASH] = ACTIONS(3366), + [anon_sym_PLUS_PLUS] = ACTIONS(3366), + [anon_sym_sizeof] = ACTIONS(3364), + [anon_sym_offsetof] = ACTIONS(3364), + [anon_sym__Generic] = ACTIONS(3364), + [anon_sym_asm] = ACTIONS(3364), + [anon_sym___asm__] = ACTIONS(3364), + [sym_number_literal] = ACTIONS(3366), + [anon_sym_L_SQUOTE] = ACTIONS(3366), + [anon_sym_u_SQUOTE] = ACTIONS(3366), + [anon_sym_U_SQUOTE] = ACTIONS(3366), + [anon_sym_u8_SQUOTE] = ACTIONS(3366), + [anon_sym_SQUOTE] = ACTIONS(3366), + [anon_sym_L_DQUOTE] = ACTIONS(3366), + [anon_sym_u_DQUOTE] = ACTIONS(3366), + [anon_sym_U_DQUOTE] = ACTIONS(3366), + [anon_sym_u8_DQUOTE] = ACTIONS(3366), + [anon_sym_DQUOTE] = ACTIONS(3366), + [sym_true] = ACTIONS(3364), + [sym_false] = ACTIONS(3364), + [anon_sym_NULL] = ACTIONS(3364), + [anon_sym_nullptr] = ACTIONS(3364), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3364), + [anon_sym_decltype] = ACTIONS(3364), + [anon_sym_virtual] = ACTIONS(3364), + [anon_sym_explicit] = ACTIONS(3364), + [anon_sym_typename] = ACTIONS(3364), + [anon_sym_template] = ACTIONS(3364), + [anon_sym_operator] = ACTIONS(3364), + [anon_sym_try] = ACTIONS(3364), + [anon_sym_delete] = ACTIONS(3364), + [anon_sym_throw] = ACTIONS(3364), + [anon_sym_namespace] = ACTIONS(3364), + [anon_sym_using] = ACTIONS(3364), + [anon_sym_static_assert] = ACTIONS(3364), + [anon_sym_concept] = ACTIONS(3364), + [anon_sym_co_return] = ACTIONS(3364), + [anon_sym_co_yield] = ACTIONS(3364), + [anon_sym_R_DQUOTE] = ACTIONS(3366), + [anon_sym_LR_DQUOTE] = ACTIONS(3366), + [anon_sym_uR_DQUOTE] = ACTIONS(3366), + [anon_sym_UR_DQUOTE] = ACTIONS(3366), + [anon_sym_u8R_DQUOTE] = ACTIONS(3366), + [anon_sym_co_await] = ACTIONS(3364), + [anon_sym_new] = ACTIONS(3364), + [anon_sym_requires] = ACTIONS(3364), + [sym_this] = ACTIONS(3364), }, [759] = { - [ts_builtin_sym_end] = ACTIONS(2464), - [sym_identifier] = ACTIONS(2462), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2464), - [anon_sym_AMP] = ACTIONS(2462), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_explicit] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_operator] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_namespace] = ACTIONS(2462), - [anon_sym_using] = ACTIONS(2462), - [anon_sym_static_assert] = ACTIONS(2462), - [anon_sym_concept] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_identifier] = ACTIONS(3358), + [aux_sym_preproc_include_token1] = ACTIONS(3358), + [aux_sym_preproc_def_token1] = ACTIONS(3358), + [aux_sym_preproc_if_token1] = ACTIONS(3358), + [aux_sym_preproc_if_token2] = ACTIONS(3358), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3358), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3358), + [aux_sym_preproc_else_token1] = ACTIONS(3358), + [aux_sym_preproc_elif_token1] = ACTIONS(3358), + [sym_preproc_directive] = ACTIONS(3358), + [anon_sym_LPAREN2] = ACTIONS(3360), + [anon_sym_BANG] = ACTIONS(3360), + [anon_sym_TILDE] = ACTIONS(3360), + [anon_sym_DASH] = ACTIONS(3358), + [anon_sym_PLUS] = ACTIONS(3358), + [anon_sym_STAR] = ACTIONS(3360), + [anon_sym_AMP_AMP] = ACTIONS(3360), + [anon_sym_AMP] = ACTIONS(3358), + [anon_sym_SEMI] = ACTIONS(3360), + [anon_sym_typedef] = ACTIONS(3358), + [anon_sym_extern] = ACTIONS(3358), + [anon_sym___attribute__] = ACTIONS(3358), + [anon_sym_COLON_COLON] = ACTIONS(3360), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3360), + [anon_sym___declspec] = ACTIONS(3358), + [anon_sym___based] = ACTIONS(3358), + [anon_sym___cdecl] = ACTIONS(3358), + [anon_sym___clrcall] = ACTIONS(3358), + [anon_sym___stdcall] = ACTIONS(3358), + [anon_sym___fastcall] = ACTIONS(3358), + [anon_sym___thiscall] = ACTIONS(3358), + [anon_sym___vectorcall] = ACTIONS(3358), + [anon_sym_LBRACE] = ACTIONS(3360), + [anon_sym_LBRACK] = ACTIONS(3358), + [anon_sym_static] = ACTIONS(3358), + [anon_sym_register] = ACTIONS(3358), + [anon_sym_inline] = ACTIONS(3358), + [anon_sym_thread_local] = ACTIONS(3358), + [anon_sym_const] = ACTIONS(3358), + [anon_sym_constexpr] = ACTIONS(3358), + [anon_sym_volatile] = ACTIONS(3358), + [anon_sym_restrict] = ACTIONS(3358), + [anon_sym___restrict__] = ACTIONS(3358), + [anon_sym__Atomic] = ACTIONS(3358), + [anon_sym__Noreturn] = ACTIONS(3358), + [anon_sym_noreturn] = ACTIONS(3358), + [anon_sym_mutable] = ACTIONS(3358), + [anon_sym_constinit] = ACTIONS(3358), + [anon_sym_consteval] = ACTIONS(3358), + [anon_sym_signed] = ACTIONS(3358), + [anon_sym_unsigned] = ACTIONS(3358), + [anon_sym_long] = ACTIONS(3358), + [anon_sym_short] = ACTIONS(3358), + [sym_primitive_type] = ACTIONS(3358), + [anon_sym_enum] = ACTIONS(3358), + [anon_sym_class] = ACTIONS(3358), + [anon_sym_struct] = ACTIONS(3358), + [anon_sym_union] = ACTIONS(3358), + [anon_sym_if] = ACTIONS(3358), + [anon_sym_switch] = ACTIONS(3358), + [anon_sym_case] = ACTIONS(3358), + [anon_sym_default] = ACTIONS(3358), + [anon_sym_while] = ACTIONS(3358), + [anon_sym_do] = ACTIONS(3358), + [anon_sym_for] = ACTIONS(3358), + [anon_sym_return] = ACTIONS(3358), + [anon_sym_break] = ACTIONS(3358), + [anon_sym_continue] = ACTIONS(3358), + [anon_sym_goto] = ACTIONS(3358), + [anon_sym_not] = ACTIONS(3358), + [anon_sym_compl] = ACTIONS(3358), + [anon_sym_DASH_DASH] = ACTIONS(3360), + [anon_sym_PLUS_PLUS] = ACTIONS(3360), + [anon_sym_sizeof] = ACTIONS(3358), + [anon_sym_offsetof] = ACTIONS(3358), + [anon_sym__Generic] = ACTIONS(3358), + [anon_sym_asm] = ACTIONS(3358), + [anon_sym___asm__] = ACTIONS(3358), + [sym_number_literal] = ACTIONS(3360), + [anon_sym_L_SQUOTE] = ACTIONS(3360), + [anon_sym_u_SQUOTE] = ACTIONS(3360), + [anon_sym_U_SQUOTE] = ACTIONS(3360), + [anon_sym_u8_SQUOTE] = ACTIONS(3360), + [anon_sym_SQUOTE] = ACTIONS(3360), + [anon_sym_L_DQUOTE] = ACTIONS(3360), + [anon_sym_u_DQUOTE] = ACTIONS(3360), + [anon_sym_U_DQUOTE] = ACTIONS(3360), + [anon_sym_u8_DQUOTE] = ACTIONS(3360), + [anon_sym_DQUOTE] = ACTIONS(3360), + [sym_true] = ACTIONS(3358), + [sym_false] = ACTIONS(3358), + [anon_sym_NULL] = ACTIONS(3358), + [anon_sym_nullptr] = ACTIONS(3358), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3358), + [anon_sym_decltype] = ACTIONS(3358), + [anon_sym_virtual] = ACTIONS(3358), + [anon_sym_explicit] = ACTIONS(3358), + [anon_sym_typename] = ACTIONS(3358), + [anon_sym_template] = ACTIONS(3358), + [anon_sym_operator] = ACTIONS(3358), + [anon_sym_try] = ACTIONS(3358), + [anon_sym_delete] = ACTIONS(3358), + [anon_sym_throw] = ACTIONS(3358), + [anon_sym_namespace] = ACTIONS(3358), + [anon_sym_using] = ACTIONS(3358), + [anon_sym_static_assert] = ACTIONS(3358), + [anon_sym_concept] = ACTIONS(3358), + [anon_sym_co_return] = ACTIONS(3358), + [anon_sym_co_yield] = ACTIONS(3358), + [anon_sym_R_DQUOTE] = ACTIONS(3360), + [anon_sym_LR_DQUOTE] = ACTIONS(3360), + [anon_sym_uR_DQUOTE] = ACTIONS(3360), + [anon_sym_UR_DQUOTE] = ACTIONS(3360), + [anon_sym_u8R_DQUOTE] = ACTIONS(3360), + [anon_sym_co_await] = ACTIONS(3358), + [anon_sym_new] = ACTIONS(3358), + [anon_sym_requires] = ACTIONS(3358), + [sym_this] = ACTIONS(3358), }, [760] = { - [ts_builtin_sym_end] = ACTIONS(2464), - [sym_identifier] = ACTIONS(2462), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2464), - [anon_sym_AMP] = ACTIONS(2462), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_explicit] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_operator] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_namespace] = ACTIONS(2462), - [anon_sym_using] = ACTIONS(2462), - [anon_sym_static_assert] = ACTIONS(2462), - [anon_sym_concept] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_identifier] = ACTIONS(3391), + [aux_sym_preproc_include_token1] = ACTIONS(3391), + [aux_sym_preproc_def_token1] = ACTIONS(3391), + [aux_sym_preproc_if_token1] = ACTIONS(3391), + [aux_sym_preproc_if_token2] = ACTIONS(3391), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3391), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3391), + [aux_sym_preproc_else_token1] = ACTIONS(3391), + [aux_sym_preproc_elif_token1] = ACTIONS(3391), + [sym_preproc_directive] = ACTIONS(3391), + [anon_sym_LPAREN2] = ACTIONS(3393), + [anon_sym_BANG] = ACTIONS(3393), + [anon_sym_TILDE] = ACTIONS(3393), + [anon_sym_DASH] = ACTIONS(3391), + [anon_sym_PLUS] = ACTIONS(3391), + [anon_sym_STAR] = ACTIONS(3393), + [anon_sym_AMP_AMP] = ACTIONS(3393), + [anon_sym_AMP] = ACTIONS(3391), + [anon_sym_SEMI] = ACTIONS(3393), + [anon_sym_typedef] = ACTIONS(3391), + [anon_sym_extern] = ACTIONS(3391), + [anon_sym___attribute__] = ACTIONS(3391), + [anon_sym_COLON_COLON] = ACTIONS(3393), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3393), + [anon_sym___declspec] = ACTIONS(3391), + [anon_sym___based] = ACTIONS(3391), + [anon_sym___cdecl] = ACTIONS(3391), + [anon_sym___clrcall] = ACTIONS(3391), + [anon_sym___stdcall] = ACTIONS(3391), + [anon_sym___fastcall] = ACTIONS(3391), + [anon_sym___thiscall] = ACTIONS(3391), + [anon_sym___vectorcall] = ACTIONS(3391), + [anon_sym_LBRACE] = ACTIONS(3393), + [anon_sym_LBRACK] = ACTIONS(3391), + [anon_sym_static] = ACTIONS(3391), + [anon_sym_register] = ACTIONS(3391), + [anon_sym_inline] = ACTIONS(3391), + [anon_sym_thread_local] = ACTIONS(3391), + [anon_sym_const] = ACTIONS(3391), + [anon_sym_constexpr] = ACTIONS(3391), + [anon_sym_volatile] = ACTIONS(3391), + [anon_sym_restrict] = ACTIONS(3391), + [anon_sym___restrict__] = ACTIONS(3391), + [anon_sym__Atomic] = ACTIONS(3391), + [anon_sym__Noreturn] = ACTIONS(3391), + [anon_sym_noreturn] = ACTIONS(3391), + [anon_sym_mutable] = ACTIONS(3391), + [anon_sym_constinit] = ACTIONS(3391), + [anon_sym_consteval] = ACTIONS(3391), + [anon_sym_signed] = ACTIONS(3391), + [anon_sym_unsigned] = ACTIONS(3391), + [anon_sym_long] = ACTIONS(3391), + [anon_sym_short] = ACTIONS(3391), + [sym_primitive_type] = ACTIONS(3391), + [anon_sym_enum] = ACTIONS(3391), + [anon_sym_class] = ACTIONS(3391), + [anon_sym_struct] = ACTIONS(3391), + [anon_sym_union] = ACTIONS(3391), + [anon_sym_if] = ACTIONS(3391), + [anon_sym_switch] = ACTIONS(3391), + [anon_sym_case] = ACTIONS(3391), + [anon_sym_default] = ACTIONS(3391), + [anon_sym_while] = ACTIONS(3391), + [anon_sym_do] = ACTIONS(3391), + [anon_sym_for] = ACTIONS(3391), + [anon_sym_return] = ACTIONS(3391), + [anon_sym_break] = ACTIONS(3391), + [anon_sym_continue] = ACTIONS(3391), + [anon_sym_goto] = ACTIONS(3391), + [anon_sym_not] = ACTIONS(3391), + [anon_sym_compl] = ACTIONS(3391), + [anon_sym_DASH_DASH] = ACTIONS(3393), + [anon_sym_PLUS_PLUS] = ACTIONS(3393), + [anon_sym_sizeof] = ACTIONS(3391), + [anon_sym_offsetof] = ACTIONS(3391), + [anon_sym__Generic] = ACTIONS(3391), + [anon_sym_asm] = ACTIONS(3391), + [anon_sym___asm__] = ACTIONS(3391), + [sym_number_literal] = ACTIONS(3393), + [anon_sym_L_SQUOTE] = ACTIONS(3393), + [anon_sym_u_SQUOTE] = ACTIONS(3393), + [anon_sym_U_SQUOTE] = ACTIONS(3393), + [anon_sym_u8_SQUOTE] = ACTIONS(3393), + [anon_sym_SQUOTE] = ACTIONS(3393), + [anon_sym_L_DQUOTE] = ACTIONS(3393), + [anon_sym_u_DQUOTE] = ACTIONS(3393), + [anon_sym_U_DQUOTE] = ACTIONS(3393), + [anon_sym_u8_DQUOTE] = ACTIONS(3393), + [anon_sym_DQUOTE] = ACTIONS(3393), + [sym_true] = ACTIONS(3391), + [sym_false] = ACTIONS(3391), + [anon_sym_NULL] = ACTIONS(3391), + [anon_sym_nullptr] = ACTIONS(3391), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3391), + [anon_sym_decltype] = ACTIONS(3391), + [anon_sym_virtual] = ACTIONS(3391), + [anon_sym_explicit] = ACTIONS(3391), + [anon_sym_typename] = ACTIONS(3391), + [anon_sym_template] = ACTIONS(3391), + [anon_sym_operator] = ACTIONS(3391), + [anon_sym_try] = ACTIONS(3391), + [anon_sym_delete] = ACTIONS(3391), + [anon_sym_throw] = ACTIONS(3391), + [anon_sym_namespace] = ACTIONS(3391), + [anon_sym_using] = ACTIONS(3391), + [anon_sym_static_assert] = ACTIONS(3391), + [anon_sym_concept] = ACTIONS(3391), + [anon_sym_co_return] = ACTIONS(3391), + [anon_sym_co_yield] = ACTIONS(3391), + [anon_sym_R_DQUOTE] = ACTIONS(3393), + [anon_sym_LR_DQUOTE] = ACTIONS(3393), + [anon_sym_uR_DQUOTE] = ACTIONS(3393), + [anon_sym_UR_DQUOTE] = ACTIONS(3393), + [anon_sym_u8R_DQUOTE] = ACTIONS(3393), + [anon_sym_co_await] = ACTIONS(3391), + [anon_sym_new] = ACTIONS(3391), + [anon_sym_requires] = ACTIONS(3391), + [sym_this] = ACTIONS(3391), }, [761] = { - [ts_builtin_sym_end] = ACTIONS(2464), - [sym_identifier] = ACTIONS(2462), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2464), - [anon_sym_AMP] = ACTIONS(2462), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_explicit] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_operator] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_namespace] = ACTIONS(2462), - [anon_sym_using] = ACTIONS(2462), - [anon_sym_static_assert] = ACTIONS(2462), - [anon_sym_concept] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_identifier] = ACTIONS(3156), + [aux_sym_preproc_include_token1] = ACTIONS(3156), + [aux_sym_preproc_def_token1] = ACTIONS(3156), + [aux_sym_preproc_if_token1] = ACTIONS(3156), + [aux_sym_preproc_if_token2] = ACTIONS(3156), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3156), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3156), + [aux_sym_preproc_else_token1] = ACTIONS(3156), + [aux_sym_preproc_elif_token1] = ACTIONS(3156), + [sym_preproc_directive] = ACTIONS(3156), + [anon_sym_LPAREN2] = ACTIONS(3158), + [anon_sym_BANG] = ACTIONS(3158), + [anon_sym_TILDE] = ACTIONS(3158), + [anon_sym_DASH] = ACTIONS(3156), + [anon_sym_PLUS] = ACTIONS(3156), + [anon_sym_STAR] = ACTIONS(3158), + [anon_sym_AMP_AMP] = ACTIONS(3158), + [anon_sym_AMP] = ACTIONS(3156), + [anon_sym_SEMI] = ACTIONS(3158), + [anon_sym_typedef] = ACTIONS(3156), + [anon_sym_extern] = ACTIONS(3156), + [anon_sym___attribute__] = ACTIONS(3156), + [anon_sym_COLON_COLON] = ACTIONS(3158), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3158), + [anon_sym___declspec] = ACTIONS(3156), + [anon_sym___based] = ACTIONS(3156), + [anon_sym___cdecl] = ACTIONS(3156), + [anon_sym___clrcall] = ACTIONS(3156), + [anon_sym___stdcall] = ACTIONS(3156), + [anon_sym___fastcall] = ACTIONS(3156), + [anon_sym___thiscall] = ACTIONS(3156), + [anon_sym___vectorcall] = ACTIONS(3156), + [anon_sym_LBRACE] = ACTIONS(3158), + [anon_sym_LBRACK] = ACTIONS(3156), + [anon_sym_static] = ACTIONS(3156), + [anon_sym_register] = ACTIONS(3156), + [anon_sym_inline] = ACTIONS(3156), + [anon_sym_thread_local] = ACTIONS(3156), + [anon_sym_const] = ACTIONS(3156), + [anon_sym_constexpr] = ACTIONS(3156), + [anon_sym_volatile] = ACTIONS(3156), + [anon_sym_restrict] = ACTIONS(3156), + [anon_sym___restrict__] = ACTIONS(3156), + [anon_sym__Atomic] = ACTIONS(3156), + [anon_sym__Noreturn] = ACTIONS(3156), + [anon_sym_noreturn] = ACTIONS(3156), + [anon_sym_mutable] = ACTIONS(3156), + [anon_sym_constinit] = ACTIONS(3156), + [anon_sym_consteval] = ACTIONS(3156), + [anon_sym_signed] = ACTIONS(3156), + [anon_sym_unsigned] = ACTIONS(3156), + [anon_sym_long] = ACTIONS(3156), + [anon_sym_short] = ACTIONS(3156), + [sym_primitive_type] = ACTIONS(3156), + [anon_sym_enum] = ACTIONS(3156), + [anon_sym_class] = ACTIONS(3156), + [anon_sym_struct] = ACTIONS(3156), + [anon_sym_union] = ACTIONS(3156), + [anon_sym_if] = ACTIONS(3156), + [anon_sym_switch] = ACTIONS(3156), + [anon_sym_case] = ACTIONS(3156), + [anon_sym_default] = ACTIONS(3156), + [anon_sym_while] = ACTIONS(3156), + [anon_sym_do] = ACTIONS(3156), + [anon_sym_for] = ACTIONS(3156), + [anon_sym_return] = ACTIONS(3156), + [anon_sym_break] = ACTIONS(3156), + [anon_sym_continue] = ACTIONS(3156), + [anon_sym_goto] = ACTIONS(3156), + [anon_sym_not] = ACTIONS(3156), + [anon_sym_compl] = ACTIONS(3156), + [anon_sym_DASH_DASH] = ACTIONS(3158), + [anon_sym_PLUS_PLUS] = ACTIONS(3158), + [anon_sym_sizeof] = ACTIONS(3156), + [anon_sym_offsetof] = ACTIONS(3156), + [anon_sym__Generic] = ACTIONS(3156), + [anon_sym_asm] = ACTIONS(3156), + [anon_sym___asm__] = ACTIONS(3156), + [sym_number_literal] = ACTIONS(3158), + [anon_sym_L_SQUOTE] = ACTIONS(3158), + [anon_sym_u_SQUOTE] = ACTIONS(3158), + [anon_sym_U_SQUOTE] = ACTIONS(3158), + [anon_sym_u8_SQUOTE] = ACTIONS(3158), + [anon_sym_SQUOTE] = ACTIONS(3158), + [anon_sym_L_DQUOTE] = ACTIONS(3158), + [anon_sym_u_DQUOTE] = ACTIONS(3158), + [anon_sym_U_DQUOTE] = ACTIONS(3158), + [anon_sym_u8_DQUOTE] = ACTIONS(3158), + [anon_sym_DQUOTE] = ACTIONS(3158), + [sym_true] = ACTIONS(3156), + [sym_false] = ACTIONS(3156), + [anon_sym_NULL] = ACTIONS(3156), + [anon_sym_nullptr] = ACTIONS(3156), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3156), + [anon_sym_decltype] = ACTIONS(3156), + [anon_sym_virtual] = ACTIONS(3156), + [anon_sym_explicit] = ACTIONS(3156), + [anon_sym_typename] = ACTIONS(3156), + [anon_sym_template] = ACTIONS(3156), + [anon_sym_operator] = ACTIONS(3156), + [anon_sym_try] = ACTIONS(3156), + [anon_sym_delete] = ACTIONS(3156), + [anon_sym_throw] = ACTIONS(3156), + [anon_sym_namespace] = ACTIONS(3156), + [anon_sym_using] = ACTIONS(3156), + [anon_sym_static_assert] = ACTIONS(3156), + [anon_sym_concept] = ACTIONS(3156), + [anon_sym_co_return] = ACTIONS(3156), + [anon_sym_co_yield] = ACTIONS(3156), + [anon_sym_R_DQUOTE] = ACTIONS(3158), + [anon_sym_LR_DQUOTE] = ACTIONS(3158), + [anon_sym_uR_DQUOTE] = ACTIONS(3158), + [anon_sym_UR_DQUOTE] = ACTIONS(3158), + [anon_sym_u8R_DQUOTE] = ACTIONS(3158), + [anon_sym_co_await] = ACTIONS(3156), + [anon_sym_new] = ACTIONS(3156), + [anon_sym_requires] = ACTIONS(3156), + [sym_this] = ACTIONS(3156), }, [762] = { - [ts_builtin_sym_end] = ACTIONS(2464), - [sym_identifier] = ACTIONS(2462), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2464), - [anon_sym_AMP] = ACTIONS(2462), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_explicit] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_operator] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_namespace] = ACTIONS(2462), - [anon_sym_using] = ACTIONS(2462), - [anon_sym_static_assert] = ACTIONS(2462), - [anon_sym_concept] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_identifier] = ACTIONS(3372), + [aux_sym_preproc_include_token1] = ACTIONS(3372), + [aux_sym_preproc_def_token1] = ACTIONS(3372), + [aux_sym_preproc_if_token1] = ACTIONS(3372), + [aux_sym_preproc_if_token2] = ACTIONS(3372), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3372), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3372), + [aux_sym_preproc_else_token1] = ACTIONS(3372), + [aux_sym_preproc_elif_token1] = ACTIONS(3372), + [sym_preproc_directive] = ACTIONS(3372), + [anon_sym_LPAREN2] = ACTIONS(3374), + [anon_sym_BANG] = ACTIONS(3374), + [anon_sym_TILDE] = ACTIONS(3374), + [anon_sym_DASH] = ACTIONS(3372), + [anon_sym_PLUS] = ACTIONS(3372), + [anon_sym_STAR] = ACTIONS(3374), + [anon_sym_AMP_AMP] = ACTIONS(3374), + [anon_sym_AMP] = ACTIONS(3372), + [anon_sym_SEMI] = ACTIONS(3374), + [anon_sym_typedef] = ACTIONS(3372), + [anon_sym_extern] = ACTIONS(3372), + [anon_sym___attribute__] = ACTIONS(3372), + [anon_sym_COLON_COLON] = ACTIONS(3374), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3374), + [anon_sym___declspec] = ACTIONS(3372), + [anon_sym___based] = ACTIONS(3372), + [anon_sym___cdecl] = ACTIONS(3372), + [anon_sym___clrcall] = ACTIONS(3372), + [anon_sym___stdcall] = ACTIONS(3372), + [anon_sym___fastcall] = ACTIONS(3372), + [anon_sym___thiscall] = ACTIONS(3372), + [anon_sym___vectorcall] = ACTIONS(3372), + [anon_sym_LBRACE] = ACTIONS(3374), + [anon_sym_LBRACK] = ACTIONS(3372), + [anon_sym_static] = ACTIONS(3372), + [anon_sym_register] = ACTIONS(3372), + [anon_sym_inline] = ACTIONS(3372), + [anon_sym_thread_local] = ACTIONS(3372), + [anon_sym_const] = ACTIONS(3372), + [anon_sym_constexpr] = ACTIONS(3372), + [anon_sym_volatile] = ACTIONS(3372), + [anon_sym_restrict] = ACTIONS(3372), + [anon_sym___restrict__] = ACTIONS(3372), + [anon_sym__Atomic] = ACTIONS(3372), + [anon_sym__Noreturn] = ACTIONS(3372), + [anon_sym_noreturn] = ACTIONS(3372), + [anon_sym_mutable] = ACTIONS(3372), + [anon_sym_constinit] = ACTIONS(3372), + [anon_sym_consteval] = ACTIONS(3372), + [anon_sym_signed] = ACTIONS(3372), + [anon_sym_unsigned] = ACTIONS(3372), + [anon_sym_long] = ACTIONS(3372), + [anon_sym_short] = ACTIONS(3372), + [sym_primitive_type] = ACTIONS(3372), + [anon_sym_enum] = ACTIONS(3372), + [anon_sym_class] = ACTIONS(3372), + [anon_sym_struct] = ACTIONS(3372), + [anon_sym_union] = ACTIONS(3372), + [anon_sym_if] = ACTIONS(3372), + [anon_sym_switch] = ACTIONS(3372), + [anon_sym_case] = ACTIONS(3372), + [anon_sym_default] = ACTIONS(3372), + [anon_sym_while] = ACTIONS(3372), + [anon_sym_do] = ACTIONS(3372), + [anon_sym_for] = ACTIONS(3372), + [anon_sym_return] = ACTIONS(3372), + [anon_sym_break] = ACTIONS(3372), + [anon_sym_continue] = ACTIONS(3372), + [anon_sym_goto] = ACTIONS(3372), + [anon_sym_not] = ACTIONS(3372), + [anon_sym_compl] = ACTIONS(3372), + [anon_sym_DASH_DASH] = ACTIONS(3374), + [anon_sym_PLUS_PLUS] = ACTIONS(3374), + [anon_sym_sizeof] = ACTIONS(3372), + [anon_sym_offsetof] = ACTIONS(3372), + [anon_sym__Generic] = ACTIONS(3372), + [anon_sym_asm] = ACTIONS(3372), + [anon_sym___asm__] = ACTIONS(3372), + [sym_number_literal] = ACTIONS(3374), + [anon_sym_L_SQUOTE] = ACTIONS(3374), + [anon_sym_u_SQUOTE] = ACTIONS(3374), + [anon_sym_U_SQUOTE] = ACTIONS(3374), + [anon_sym_u8_SQUOTE] = ACTIONS(3374), + [anon_sym_SQUOTE] = ACTIONS(3374), + [anon_sym_L_DQUOTE] = ACTIONS(3374), + [anon_sym_u_DQUOTE] = ACTIONS(3374), + [anon_sym_U_DQUOTE] = ACTIONS(3374), + [anon_sym_u8_DQUOTE] = ACTIONS(3374), + [anon_sym_DQUOTE] = ACTIONS(3374), + [sym_true] = ACTIONS(3372), + [sym_false] = ACTIONS(3372), + [anon_sym_NULL] = ACTIONS(3372), + [anon_sym_nullptr] = ACTIONS(3372), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3372), + [anon_sym_decltype] = ACTIONS(3372), + [anon_sym_virtual] = ACTIONS(3372), + [anon_sym_explicit] = ACTIONS(3372), + [anon_sym_typename] = ACTIONS(3372), + [anon_sym_template] = ACTIONS(3372), + [anon_sym_operator] = ACTIONS(3372), + [anon_sym_try] = ACTIONS(3372), + [anon_sym_delete] = ACTIONS(3372), + [anon_sym_throw] = ACTIONS(3372), + [anon_sym_namespace] = ACTIONS(3372), + [anon_sym_using] = ACTIONS(3372), + [anon_sym_static_assert] = ACTIONS(3372), + [anon_sym_concept] = ACTIONS(3372), + [anon_sym_co_return] = ACTIONS(3372), + [anon_sym_co_yield] = ACTIONS(3372), + [anon_sym_R_DQUOTE] = ACTIONS(3374), + [anon_sym_LR_DQUOTE] = ACTIONS(3374), + [anon_sym_uR_DQUOTE] = ACTIONS(3374), + [anon_sym_UR_DQUOTE] = ACTIONS(3374), + [anon_sym_u8R_DQUOTE] = ACTIONS(3374), + [anon_sym_co_await] = ACTIONS(3372), + [anon_sym_new] = ACTIONS(3372), + [anon_sym_requires] = ACTIONS(3372), + [sym_this] = ACTIONS(3372), }, [763] = { - [ts_builtin_sym_end] = ACTIONS(2476), - [sym_identifier] = ACTIONS(2474), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2476), - [anon_sym_AMP] = ACTIONS(2474), - [anon_sym_SEMI] = ACTIONS(2476), - [anon_sym_typedef] = ACTIONS(2474), - [anon_sym_extern] = ACTIONS(2474), - [anon_sym___attribute__] = ACTIONS(2474), - [anon_sym_COLON_COLON] = ACTIONS(2476), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2476), - [anon_sym___declspec] = ACTIONS(2474), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2474), - [anon_sym_static] = ACTIONS(2474), - [anon_sym_register] = ACTIONS(2474), - [anon_sym_inline] = ACTIONS(2474), - [anon_sym_thread_local] = ACTIONS(2474), - [anon_sym_const] = ACTIONS(2474), - [anon_sym_volatile] = ACTIONS(2474), - [anon_sym_restrict] = ACTIONS(2474), - [anon_sym__Atomic] = ACTIONS(2474), - [anon_sym_mutable] = ACTIONS(2474), - [anon_sym_constexpr] = ACTIONS(2474), - [anon_sym_constinit] = ACTIONS(2474), - [anon_sym_consteval] = ACTIONS(2474), - [anon_sym_signed] = ACTIONS(2474), - [anon_sym_unsigned] = ACTIONS(2474), - [anon_sym_long] = ACTIONS(2474), - [anon_sym_short] = ACTIONS(2474), - [sym_primitive_type] = ACTIONS(2474), - [anon_sym_enum] = ACTIONS(2474), - [anon_sym_class] = 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_return] = ACTIONS(2474), - [anon_sym_break] = ACTIONS(2474), - [anon_sym_continue] = ACTIONS(2474), - [anon_sym_goto] = ACTIONS(2474), - [anon_sym_not] = ACTIONS(2474), - [anon_sym_compl] = ACTIONS(2474), - [anon_sym_DASH_DASH] = ACTIONS(2476), - [anon_sym_PLUS_PLUS] = ACTIONS(2476), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2476), - [anon_sym_u_DQUOTE] = ACTIONS(2476), - [anon_sym_U_DQUOTE] = ACTIONS(2476), - [anon_sym_u8_DQUOTE] = ACTIONS(2476), - [anon_sym_DQUOTE] = ACTIONS(2476), - [sym_true] = ACTIONS(2474), - [sym_false] = ACTIONS(2474), - [sym_null] = ACTIONS(2474), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2474), - [anon_sym_decltype] = ACTIONS(2474), - [anon_sym_virtual] = ACTIONS(2474), - [anon_sym_explicit] = ACTIONS(2474), - [anon_sym_typename] = ACTIONS(2474), - [anon_sym_template] = ACTIONS(2474), - [anon_sym_operator] = ACTIONS(2474), - [anon_sym_try] = ACTIONS(2474), - [anon_sym_delete] = ACTIONS(2474), - [anon_sym_throw] = ACTIONS(2474), - [anon_sym_namespace] = ACTIONS(2474), - [anon_sym_using] = ACTIONS(2474), - [anon_sym_static_assert] = ACTIONS(2474), - [anon_sym_concept] = ACTIONS(2474), - [anon_sym_co_return] = ACTIONS(2474), - [anon_sym_co_yield] = ACTIONS(2474), - [anon_sym_R_DQUOTE] = ACTIONS(2476), - [anon_sym_LR_DQUOTE] = ACTIONS(2476), - [anon_sym_uR_DQUOTE] = ACTIONS(2476), - [anon_sym_UR_DQUOTE] = ACTIONS(2476), - [anon_sym_u8R_DQUOTE] = ACTIONS(2476), - [anon_sym_co_await] = ACTIONS(2474), - [anon_sym_new] = ACTIONS(2474), - [anon_sym_requires] = ACTIONS(2474), - [sym_this] = ACTIONS(2474), - [sym_nullptr] = ACTIONS(2474), + [sym_identifier] = ACTIONS(3160), + [aux_sym_preproc_include_token1] = ACTIONS(3160), + [aux_sym_preproc_def_token1] = ACTIONS(3160), + [aux_sym_preproc_if_token1] = ACTIONS(3160), + [aux_sym_preproc_if_token2] = ACTIONS(3160), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3160), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3160), + [aux_sym_preproc_else_token1] = ACTIONS(3160), + [aux_sym_preproc_elif_token1] = ACTIONS(3160), + [sym_preproc_directive] = ACTIONS(3160), + [anon_sym_LPAREN2] = ACTIONS(3162), + [anon_sym_BANG] = ACTIONS(3162), + [anon_sym_TILDE] = ACTIONS(3162), + [anon_sym_DASH] = ACTIONS(3160), + [anon_sym_PLUS] = ACTIONS(3160), + [anon_sym_STAR] = ACTIONS(3162), + [anon_sym_AMP_AMP] = ACTIONS(3162), + [anon_sym_AMP] = ACTIONS(3160), + [anon_sym_SEMI] = ACTIONS(3162), + [anon_sym_typedef] = ACTIONS(3160), + [anon_sym_extern] = ACTIONS(3160), + [anon_sym___attribute__] = ACTIONS(3160), + [anon_sym_COLON_COLON] = ACTIONS(3162), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3162), + [anon_sym___declspec] = ACTIONS(3160), + [anon_sym___based] = ACTIONS(3160), + [anon_sym___cdecl] = ACTIONS(3160), + [anon_sym___clrcall] = ACTIONS(3160), + [anon_sym___stdcall] = ACTIONS(3160), + [anon_sym___fastcall] = ACTIONS(3160), + [anon_sym___thiscall] = ACTIONS(3160), + [anon_sym___vectorcall] = ACTIONS(3160), + [anon_sym_LBRACE] = ACTIONS(3162), + [anon_sym_LBRACK] = ACTIONS(3160), + [anon_sym_static] = ACTIONS(3160), + [anon_sym_register] = ACTIONS(3160), + [anon_sym_inline] = ACTIONS(3160), + [anon_sym_thread_local] = ACTIONS(3160), + [anon_sym_const] = ACTIONS(3160), + [anon_sym_constexpr] = ACTIONS(3160), + [anon_sym_volatile] = ACTIONS(3160), + [anon_sym_restrict] = ACTIONS(3160), + [anon_sym___restrict__] = ACTIONS(3160), + [anon_sym__Atomic] = ACTIONS(3160), + [anon_sym__Noreturn] = ACTIONS(3160), + [anon_sym_noreturn] = ACTIONS(3160), + [anon_sym_mutable] = ACTIONS(3160), + [anon_sym_constinit] = ACTIONS(3160), + [anon_sym_consteval] = ACTIONS(3160), + [anon_sym_signed] = ACTIONS(3160), + [anon_sym_unsigned] = ACTIONS(3160), + [anon_sym_long] = ACTIONS(3160), + [anon_sym_short] = ACTIONS(3160), + [sym_primitive_type] = ACTIONS(3160), + [anon_sym_enum] = ACTIONS(3160), + [anon_sym_class] = ACTIONS(3160), + [anon_sym_struct] = ACTIONS(3160), + [anon_sym_union] = ACTIONS(3160), + [anon_sym_if] = ACTIONS(3160), + [anon_sym_switch] = ACTIONS(3160), + [anon_sym_case] = ACTIONS(3160), + [anon_sym_default] = ACTIONS(3160), + [anon_sym_while] = ACTIONS(3160), + [anon_sym_do] = ACTIONS(3160), + [anon_sym_for] = ACTIONS(3160), + [anon_sym_return] = ACTIONS(3160), + [anon_sym_break] = ACTIONS(3160), + [anon_sym_continue] = ACTIONS(3160), + [anon_sym_goto] = ACTIONS(3160), + [anon_sym_not] = ACTIONS(3160), + [anon_sym_compl] = ACTIONS(3160), + [anon_sym_DASH_DASH] = ACTIONS(3162), + [anon_sym_PLUS_PLUS] = ACTIONS(3162), + [anon_sym_sizeof] = ACTIONS(3160), + [anon_sym_offsetof] = ACTIONS(3160), + [anon_sym__Generic] = ACTIONS(3160), + [anon_sym_asm] = ACTIONS(3160), + [anon_sym___asm__] = ACTIONS(3160), + [sym_number_literal] = ACTIONS(3162), + [anon_sym_L_SQUOTE] = ACTIONS(3162), + [anon_sym_u_SQUOTE] = ACTIONS(3162), + [anon_sym_U_SQUOTE] = ACTIONS(3162), + [anon_sym_u8_SQUOTE] = ACTIONS(3162), + [anon_sym_SQUOTE] = ACTIONS(3162), + [anon_sym_L_DQUOTE] = ACTIONS(3162), + [anon_sym_u_DQUOTE] = ACTIONS(3162), + [anon_sym_U_DQUOTE] = ACTIONS(3162), + [anon_sym_u8_DQUOTE] = ACTIONS(3162), + [anon_sym_DQUOTE] = ACTIONS(3162), + [sym_true] = ACTIONS(3160), + [sym_false] = ACTIONS(3160), + [anon_sym_NULL] = ACTIONS(3160), + [anon_sym_nullptr] = ACTIONS(3160), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3160), + [anon_sym_decltype] = ACTIONS(3160), + [anon_sym_virtual] = ACTIONS(3160), + [anon_sym_explicit] = ACTIONS(3160), + [anon_sym_typename] = ACTIONS(3160), + [anon_sym_template] = ACTIONS(3160), + [anon_sym_operator] = ACTIONS(3160), + [anon_sym_try] = ACTIONS(3160), + [anon_sym_delete] = ACTIONS(3160), + [anon_sym_throw] = ACTIONS(3160), + [anon_sym_namespace] = ACTIONS(3160), + [anon_sym_using] = ACTIONS(3160), + [anon_sym_static_assert] = ACTIONS(3160), + [anon_sym_concept] = ACTIONS(3160), + [anon_sym_co_return] = ACTIONS(3160), + [anon_sym_co_yield] = ACTIONS(3160), + [anon_sym_R_DQUOTE] = ACTIONS(3162), + [anon_sym_LR_DQUOTE] = ACTIONS(3162), + [anon_sym_uR_DQUOTE] = ACTIONS(3162), + [anon_sym_UR_DQUOTE] = ACTIONS(3162), + [anon_sym_u8R_DQUOTE] = ACTIONS(3162), + [anon_sym_co_await] = ACTIONS(3160), + [anon_sym_new] = ACTIONS(3160), + [anon_sym_requires] = ACTIONS(3160), + [sym_this] = ACTIONS(3160), }, [764] = { - [ts_builtin_sym_end] = ACTIONS(2464), - [sym_identifier] = ACTIONS(2462), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2464), - [anon_sym_AMP] = ACTIONS(2462), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_explicit] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_operator] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_namespace] = ACTIONS(2462), - [anon_sym_using] = ACTIONS(2462), - [anon_sym_static_assert] = ACTIONS(2462), - [anon_sym_concept] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_identifier] = ACTIONS(3168), + [aux_sym_preproc_include_token1] = ACTIONS(3168), + [aux_sym_preproc_def_token1] = ACTIONS(3168), + [aux_sym_preproc_if_token1] = ACTIONS(3168), + [aux_sym_preproc_if_token2] = ACTIONS(3168), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3168), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3168), + [aux_sym_preproc_else_token1] = ACTIONS(3168), + [aux_sym_preproc_elif_token1] = ACTIONS(3168), + [sym_preproc_directive] = ACTIONS(3168), + [anon_sym_LPAREN2] = ACTIONS(3170), + [anon_sym_BANG] = ACTIONS(3170), + [anon_sym_TILDE] = ACTIONS(3170), + [anon_sym_DASH] = ACTIONS(3168), + [anon_sym_PLUS] = ACTIONS(3168), + [anon_sym_STAR] = ACTIONS(3170), + [anon_sym_AMP_AMP] = ACTIONS(3170), + [anon_sym_AMP] = ACTIONS(3168), + [anon_sym_SEMI] = ACTIONS(3170), + [anon_sym_typedef] = ACTIONS(3168), + [anon_sym_extern] = ACTIONS(3168), + [anon_sym___attribute__] = ACTIONS(3168), + [anon_sym_COLON_COLON] = ACTIONS(3170), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3170), + [anon_sym___declspec] = ACTIONS(3168), + [anon_sym___based] = ACTIONS(3168), + [anon_sym___cdecl] = ACTIONS(3168), + [anon_sym___clrcall] = ACTIONS(3168), + [anon_sym___stdcall] = ACTIONS(3168), + [anon_sym___fastcall] = ACTIONS(3168), + [anon_sym___thiscall] = ACTIONS(3168), + [anon_sym___vectorcall] = ACTIONS(3168), + [anon_sym_LBRACE] = ACTIONS(3170), + [anon_sym_LBRACK] = ACTIONS(3168), + [anon_sym_static] = ACTIONS(3168), + [anon_sym_register] = ACTIONS(3168), + [anon_sym_inline] = ACTIONS(3168), + [anon_sym_thread_local] = ACTIONS(3168), + [anon_sym_const] = ACTIONS(3168), + [anon_sym_constexpr] = ACTIONS(3168), + [anon_sym_volatile] = ACTIONS(3168), + [anon_sym_restrict] = ACTIONS(3168), + [anon_sym___restrict__] = ACTIONS(3168), + [anon_sym__Atomic] = ACTIONS(3168), + [anon_sym__Noreturn] = ACTIONS(3168), + [anon_sym_noreturn] = ACTIONS(3168), + [anon_sym_mutable] = ACTIONS(3168), + [anon_sym_constinit] = ACTIONS(3168), + [anon_sym_consteval] = ACTIONS(3168), + [anon_sym_signed] = ACTIONS(3168), + [anon_sym_unsigned] = ACTIONS(3168), + [anon_sym_long] = ACTIONS(3168), + [anon_sym_short] = ACTIONS(3168), + [sym_primitive_type] = ACTIONS(3168), + [anon_sym_enum] = ACTIONS(3168), + [anon_sym_class] = ACTIONS(3168), + [anon_sym_struct] = ACTIONS(3168), + [anon_sym_union] = ACTIONS(3168), + [anon_sym_if] = ACTIONS(3168), + [anon_sym_switch] = ACTIONS(3168), + [anon_sym_case] = ACTIONS(3168), + [anon_sym_default] = ACTIONS(3168), + [anon_sym_while] = ACTIONS(3168), + [anon_sym_do] = ACTIONS(3168), + [anon_sym_for] = ACTIONS(3168), + [anon_sym_return] = ACTIONS(3168), + [anon_sym_break] = ACTIONS(3168), + [anon_sym_continue] = ACTIONS(3168), + [anon_sym_goto] = ACTIONS(3168), + [anon_sym_not] = ACTIONS(3168), + [anon_sym_compl] = ACTIONS(3168), + [anon_sym_DASH_DASH] = ACTIONS(3170), + [anon_sym_PLUS_PLUS] = ACTIONS(3170), + [anon_sym_sizeof] = ACTIONS(3168), + [anon_sym_offsetof] = ACTIONS(3168), + [anon_sym__Generic] = ACTIONS(3168), + [anon_sym_asm] = ACTIONS(3168), + [anon_sym___asm__] = ACTIONS(3168), + [sym_number_literal] = ACTIONS(3170), + [anon_sym_L_SQUOTE] = ACTIONS(3170), + [anon_sym_u_SQUOTE] = ACTIONS(3170), + [anon_sym_U_SQUOTE] = ACTIONS(3170), + [anon_sym_u8_SQUOTE] = ACTIONS(3170), + [anon_sym_SQUOTE] = ACTIONS(3170), + [anon_sym_L_DQUOTE] = ACTIONS(3170), + [anon_sym_u_DQUOTE] = ACTIONS(3170), + [anon_sym_U_DQUOTE] = ACTIONS(3170), + [anon_sym_u8_DQUOTE] = ACTIONS(3170), + [anon_sym_DQUOTE] = ACTIONS(3170), + [sym_true] = ACTIONS(3168), + [sym_false] = ACTIONS(3168), + [anon_sym_NULL] = ACTIONS(3168), + [anon_sym_nullptr] = ACTIONS(3168), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3168), + [anon_sym_decltype] = ACTIONS(3168), + [anon_sym_virtual] = ACTIONS(3168), + [anon_sym_explicit] = ACTIONS(3168), + [anon_sym_typename] = ACTIONS(3168), + [anon_sym_template] = ACTIONS(3168), + [anon_sym_operator] = ACTIONS(3168), + [anon_sym_try] = ACTIONS(3168), + [anon_sym_delete] = ACTIONS(3168), + [anon_sym_throw] = ACTIONS(3168), + [anon_sym_namespace] = ACTIONS(3168), + [anon_sym_using] = ACTIONS(3168), + [anon_sym_static_assert] = ACTIONS(3168), + [anon_sym_concept] = ACTIONS(3168), + [anon_sym_co_return] = ACTIONS(3168), + [anon_sym_co_yield] = ACTIONS(3168), + [anon_sym_R_DQUOTE] = ACTIONS(3170), + [anon_sym_LR_DQUOTE] = ACTIONS(3170), + [anon_sym_uR_DQUOTE] = ACTIONS(3170), + [anon_sym_UR_DQUOTE] = ACTIONS(3170), + [anon_sym_u8R_DQUOTE] = ACTIONS(3170), + [anon_sym_co_await] = ACTIONS(3168), + [anon_sym_new] = ACTIONS(3168), + [anon_sym_requires] = ACTIONS(3168), + [sym_this] = ACTIONS(3168), }, [765] = { - [ts_builtin_sym_end] = ACTIONS(2464), - [sym_identifier] = ACTIONS(2462), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2464), - [anon_sym_AMP] = ACTIONS(2462), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_explicit] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_operator] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_namespace] = ACTIONS(2462), - [anon_sym_using] = ACTIONS(2462), - [anon_sym_static_assert] = ACTIONS(2462), - [anon_sym_concept] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_identifier] = ACTIONS(3308), + [aux_sym_preproc_include_token1] = ACTIONS(3308), + [aux_sym_preproc_def_token1] = ACTIONS(3308), + [aux_sym_preproc_if_token1] = ACTIONS(3308), + [aux_sym_preproc_if_token2] = ACTIONS(3308), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3308), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3308), + [aux_sym_preproc_else_token1] = ACTIONS(3308), + [aux_sym_preproc_elif_token1] = ACTIONS(3308), + [sym_preproc_directive] = ACTIONS(3308), + [anon_sym_LPAREN2] = ACTIONS(3310), + [anon_sym_BANG] = ACTIONS(3310), + [anon_sym_TILDE] = ACTIONS(3310), + [anon_sym_DASH] = ACTIONS(3308), + [anon_sym_PLUS] = ACTIONS(3308), + [anon_sym_STAR] = ACTIONS(3310), + [anon_sym_AMP_AMP] = ACTIONS(3310), + [anon_sym_AMP] = ACTIONS(3308), + [anon_sym_SEMI] = ACTIONS(3310), + [anon_sym_typedef] = ACTIONS(3308), + [anon_sym_extern] = ACTIONS(3308), + [anon_sym___attribute__] = ACTIONS(3308), + [anon_sym_COLON_COLON] = ACTIONS(3310), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3310), + [anon_sym___declspec] = ACTIONS(3308), + [anon_sym___based] = ACTIONS(3308), + [anon_sym___cdecl] = ACTIONS(3308), + [anon_sym___clrcall] = ACTIONS(3308), + [anon_sym___stdcall] = ACTIONS(3308), + [anon_sym___fastcall] = ACTIONS(3308), + [anon_sym___thiscall] = ACTIONS(3308), + [anon_sym___vectorcall] = ACTIONS(3308), + [anon_sym_LBRACE] = ACTIONS(3310), + [anon_sym_LBRACK] = ACTIONS(3308), + [anon_sym_static] = ACTIONS(3308), + [anon_sym_register] = ACTIONS(3308), + [anon_sym_inline] = ACTIONS(3308), + [anon_sym_thread_local] = ACTIONS(3308), + [anon_sym_const] = ACTIONS(3308), + [anon_sym_constexpr] = ACTIONS(3308), + [anon_sym_volatile] = ACTIONS(3308), + [anon_sym_restrict] = ACTIONS(3308), + [anon_sym___restrict__] = ACTIONS(3308), + [anon_sym__Atomic] = ACTIONS(3308), + [anon_sym__Noreturn] = ACTIONS(3308), + [anon_sym_noreturn] = ACTIONS(3308), + [anon_sym_mutable] = ACTIONS(3308), + [anon_sym_constinit] = ACTIONS(3308), + [anon_sym_consteval] = ACTIONS(3308), + [anon_sym_signed] = ACTIONS(3308), + [anon_sym_unsigned] = ACTIONS(3308), + [anon_sym_long] = ACTIONS(3308), + [anon_sym_short] = ACTIONS(3308), + [sym_primitive_type] = ACTIONS(3308), + [anon_sym_enum] = ACTIONS(3308), + [anon_sym_class] = ACTIONS(3308), + [anon_sym_struct] = ACTIONS(3308), + [anon_sym_union] = ACTIONS(3308), + [anon_sym_if] = ACTIONS(3308), + [anon_sym_switch] = ACTIONS(3308), + [anon_sym_case] = ACTIONS(3308), + [anon_sym_default] = ACTIONS(3308), + [anon_sym_while] = ACTIONS(3308), + [anon_sym_do] = ACTIONS(3308), + [anon_sym_for] = ACTIONS(3308), + [anon_sym_return] = ACTIONS(3308), + [anon_sym_break] = ACTIONS(3308), + [anon_sym_continue] = ACTIONS(3308), + [anon_sym_goto] = ACTIONS(3308), + [anon_sym_not] = ACTIONS(3308), + [anon_sym_compl] = ACTIONS(3308), + [anon_sym_DASH_DASH] = ACTIONS(3310), + [anon_sym_PLUS_PLUS] = ACTIONS(3310), + [anon_sym_sizeof] = ACTIONS(3308), + [anon_sym_offsetof] = ACTIONS(3308), + [anon_sym__Generic] = ACTIONS(3308), + [anon_sym_asm] = ACTIONS(3308), + [anon_sym___asm__] = ACTIONS(3308), + [sym_number_literal] = ACTIONS(3310), + [anon_sym_L_SQUOTE] = ACTIONS(3310), + [anon_sym_u_SQUOTE] = ACTIONS(3310), + [anon_sym_U_SQUOTE] = ACTIONS(3310), + [anon_sym_u8_SQUOTE] = ACTIONS(3310), + [anon_sym_SQUOTE] = ACTIONS(3310), + [anon_sym_L_DQUOTE] = ACTIONS(3310), + [anon_sym_u_DQUOTE] = ACTIONS(3310), + [anon_sym_U_DQUOTE] = ACTIONS(3310), + [anon_sym_u8_DQUOTE] = ACTIONS(3310), + [anon_sym_DQUOTE] = ACTIONS(3310), + [sym_true] = ACTIONS(3308), + [sym_false] = ACTIONS(3308), + [anon_sym_NULL] = ACTIONS(3308), + [anon_sym_nullptr] = ACTIONS(3308), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3308), + [anon_sym_decltype] = ACTIONS(3308), + [anon_sym_virtual] = ACTIONS(3308), + [anon_sym_explicit] = ACTIONS(3308), + [anon_sym_typename] = ACTIONS(3308), + [anon_sym_template] = ACTIONS(3308), + [anon_sym_operator] = ACTIONS(3308), + [anon_sym_try] = ACTIONS(3308), + [anon_sym_delete] = ACTIONS(3308), + [anon_sym_throw] = ACTIONS(3308), + [anon_sym_namespace] = ACTIONS(3308), + [anon_sym_using] = ACTIONS(3308), + [anon_sym_static_assert] = ACTIONS(3308), + [anon_sym_concept] = ACTIONS(3308), + [anon_sym_co_return] = ACTIONS(3308), + [anon_sym_co_yield] = ACTIONS(3308), + [anon_sym_R_DQUOTE] = ACTIONS(3310), + [anon_sym_LR_DQUOTE] = ACTIONS(3310), + [anon_sym_uR_DQUOTE] = ACTIONS(3310), + [anon_sym_UR_DQUOTE] = ACTIONS(3310), + [anon_sym_u8R_DQUOTE] = ACTIONS(3310), + [anon_sym_co_await] = ACTIONS(3308), + [anon_sym_new] = ACTIONS(3308), + [anon_sym_requires] = ACTIONS(3308), + [sym_this] = ACTIONS(3308), }, [766] = { - [ts_builtin_sym_end] = ACTIONS(2464), - [sym_identifier] = ACTIONS(2462), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2464), - [anon_sym_AMP] = ACTIONS(2462), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_explicit] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_operator] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_namespace] = ACTIONS(2462), - [anon_sym_using] = ACTIONS(2462), - [anon_sym_static_assert] = ACTIONS(2462), - [anon_sym_concept] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_identifier] = ACTIONS(3304), + [aux_sym_preproc_include_token1] = ACTIONS(3304), + [aux_sym_preproc_def_token1] = ACTIONS(3304), + [aux_sym_preproc_if_token1] = ACTIONS(3304), + [aux_sym_preproc_if_token2] = ACTIONS(3304), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3304), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3304), + [aux_sym_preproc_else_token1] = ACTIONS(3304), + [aux_sym_preproc_elif_token1] = ACTIONS(3304), + [sym_preproc_directive] = ACTIONS(3304), + [anon_sym_LPAREN2] = ACTIONS(3306), + [anon_sym_BANG] = ACTIONS(3306), + [anon_sym_TILDE] = ACTIONS(3306), + [anon_sym_DASH] = ACTIONS(3304), + [anon_sym_PLUS] = ACTIONS(3304), + [anon_sym_STAR] = ACTIONS(3306), + [anon_sym_AMP_AMP] = ACTIONS(3306), + [anon_sym_AMP] = ACTIONS(3304), + [anon_sym_SEMI] = ACTIONS(3306), + [anon_sym_typedef] = ACTIONS(3304), + [anon_sym_extern] = ACTIONS(3304), + [anon_sym___attribute__] = ACTIONS(3304), + [anon_sym_COLON_COLON] = ACTIONS(3306), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3306), + [anon_sym___declspec] = ACTIONS(3304), + [anon_sym___based] = ACTIONS(3304), + [anon_sym___cdecl] = ACTIONS(3304), + [anon_sym___clrcall] = ACTIONS(3304), + [anon_sym___stdcall] = ACTIONS(3304), + [anon_sym___fastcall] = ACTIONS(3304), + [anon_sym___thiscall] = ACTIONS(3304), + [anon_sym___vectorcall] = ACTIONS(3304), + [anon_sym_LBRACE] = ACTIONS(3306), + [anon_sym_LBRACK] = ACTIONS(3304), + [anon_sym_static] = ACTIONS(3304), + [anon_sym_register] = ACTIONS(3304), + [anon_sym_inline] = ACTIONS(3304), + [anon_sym_thread_local] = ACTIONS(3304), + [anon_sym_const] = ACTIONS(3304), + [anon_sym_constexpr] = ACTIONS(3304), + [anon_sym_volatile] = ACTIONS(3304), + [anon_sym_restrict] = ACTIONS(3304), + [anon_sym___restrict__] = ACTIONS(3304), + [anon_sym__Atomic] = ACTIONS(3304), + [anon_sym__Noreturn] = ACTIONS(3304), + [anon_sym_noreturn] = ACTIONS(3304), + [anon_sym_mutable] = ACTIONS(3304), + [anon_sym_constinit] = ACTIONS(3304), + [anon_sym_consteval] = ACTIONS(3304), + [anon_sym_signed] = ACTIONS(3304), + [anon_sym_unsigned] = ACTIONS(3304), + [anon_sym_long] = ACTIONS(3304), + [anon_sym_short] = ACTIONS(3304), + [sym_primitive_type] = ACTIONS(3304), + [anon_sym_enum] = ACTIONS(3304), + [anon_sym_class] = ACTIONS(3304), + [anon_sym_struct] = ACTIONS(3304), + [anon_sym_union] = ACTIONS(3304), + [anon_sym_if] = ACTIONS(3304), + [anon_sym_switch] = ACTIONS(3304), + [anon_sym_case] = ACTIONS(3304), + [anon_sym_default] = ACTIONS(3304), + [anon_sym_while] = ACTIONS(3304), + [anon_sym_do] = ACTIONS(3304), + [anon_sym_for] = ACTIONS(3304), + [anon_sym_return] = ACTIONS(3304), + [anon_sym_break] = ACTIONS(3304), + [anon_sym_continue] = ACTIONS(3304), + [anon_sym_goto] = ACTIONS(3304), + [anon_sym_not] = ACTIONS(3304), + [anon_sym_compl] = ACTIONS(3304), + [anon_sym_DASH_DASH] = ACTIONS(3306), + [anon_sym_PLUS_PLUS] = ACTIONS(3306), + [anon_sym_sizeof] = ACTIONS(3304), + [anon_sym_offsetof] = ACTIONS(3304), + [anon_sym__Generic] = ACTIONS(3304), + [anon_sym_asm] = ACTIONS(3304), + [anon_sym___asm__] = ACTIONS(3304), + [sym_number_literal] = ACTIONS(3306), + [anon_sym_L_SQUOTE] = ACTIONS(3306), + [anon_sym_u_SQUOTE] = ACTIONS(3306), + [anon_sym_U_SQUOTE] = ACTIONS(3306), + [anon_sym_u8_SQUOTE] = ACTIONS(3306), + [anon_sym_SQUOTE] = ACTIONS(3306), + [anon_sym_L_DQUOTE] = ACTIONS(3306), + [anon_sym_u_DQUOTE] = ACTIONS(3306), + [anon_sym_U_DQUOTE] = ACTIONS(3306), + [anon_sym_u8_DQUOTE] = ACTIONS(3306), + [anon_sym_DQUOTE] = ACTIONS(3306), + [sym_true] = ACTIONS(3304), + [sym_false] = ACTIONS(3304), + [anon_sym_NULL] = ACTIONS(3304), + [anon_sym_nullptr] = ACTIONS(3304), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3304), + [anon_sym_decltype] = ACTIONS(3304), + [anon_sym_virtual] = ACTIONS(3304), + [anon_sym_explicit] = ACTIONS(3304), + [anon_sym_typename] = ACTIONS(3304), + [anon_sym_template] = ACTIONS(3304), + [anon_sym_operator] = ACTIONS(3304), + [anon_sym_try] = ACTIONS(3304), + [anon_sym_delete] = ACTIONS(3304), + [anon_sym_throw] = ACTIONS(3304), + [anon_sym_namespace] = ACTIONS(3304), + [anon_sym_using] = ACTIONS(3304), + [anon_sym_static_assert] = ACTIONS(3304), + [anon_sym_concept] = ACTIONS(3304), + [anon_sym_co_return] = ACTIONS(3304), + [anon_sym_co_yield] = ACTIONS(3304), + [anon_sym_R_DQUOTE] = ACTIONS(3306), + [anon_sym_LR_DQUOTE] = ACTIONS(3306), + [anon_sym_uR_DQUOTE] = ACTIONS(3306), + [anon_sym_UR_DQUOTE] = ACTIONS(3306), + [anon_sym_u8R_DQUOTE] = ACTIONS(3306), + [anon_sym_co_await] = ACTIONS(3304), + [anon_sym_new] = ACTIONS(3304), + [anon_sym_requires] = ACTIONS(3304), + [sym_this] = ACTIONS(3304), }, [767] = { - [ts_builtin_sym_end] = ACTIONS(2464), - [sym_identifier] = ACTIONS(2462), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2464), - [anon_sym_AMP] = ACTIONS(2462), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_explicit] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_operator] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_namespace] = ACTIONS(2462), - [anon_sym_using] = ACTIONS(2462), - [anon_sym_static_assert] = ACTIONS(2462), - [anon_sym_concept] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_identifier] = ACTIONS(3270), + [aux_sym_preproc_include_token1] = ACTIONS(3270), + [aux_sym_preproc_def_token1] = ACTIONS(3270), + [aux_sym_preproc_if_token1] = ACTIONS(3270), + [aux_sym_preproc_if_token2] = ACTIONS(3270), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3270), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3270), + [aux_sym_preproc_else_token1] = ACTIONS(3270), + [aux_sym_preproc_elif_token1] = ACTIONS(3270), + [sym_preproc_directive] = ACTIONS(3270), + [anon_sym_LPAREN2] = ACTIONS(3272), + [anon_sym_BANG] = ACTIONS(3272), + [anon_sym_TILDE] = ACTIONS(3272), + [anon_sym_DASH] = ACTIONS(3270), + [anon_sym_PLUS] = ACTIONS(3270), + [anon_sym_STAR] = ACTIONS(3272), + [anon_sym_AMP_AMP] = ACTIONS(3272), + [anon_sym_AMP] = ACTIONS(3270), + [anon_sym_SEMI] = ACTIONS(3272), + [anon_sym_typedef] = ACTIONS(3270), + [anon_sym_extern] = ACTIONS(3270), + [anon_sym___attribute__] = ACTIONS(3270), + [anon_sym_COLON_COLON] = ACTIONS(3272), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3272), + [anon_sym___declspec] = ACTIONS(3270), + [anon_sym___based] = ACTIONS(3270), + [anon_sym___cdecl] = ACTIONS(3270), + [anon_sym___clrcall] = ACTIONS(3270), + [anon_sym___stdcall] = ACTIONS(3270), + [anon_sym___fastcall] = ACTIONS(3270), + [anon_sym___thiscall] = ACTIONS(3270), + [anon_sym___vectorcall] = ACTIONS(3270), + [anon_sym_LBRACE] = ACTIONS(3272), + [anon_sym_LBRACK] = ACTIONS(3270), + [anon_sym_static] = ACTIONS(3270), + [anon_sym_register] = ACTIONS(3270), + [anon_sym_inline] = ACTIONS(3270), + [anon_sym_thread_local] = ACTIONS(3270), + [anon_sym_const] = ACTIONS(3270), + [anon_sym_constexpr] = ACTIONS(3270), + [anon_sym_volatile] = ACTIONS(3270), + [anon_sym_restrict] = ACTIONS(3270), + [anon_sym___restrict__] = ACTIONS(3270), + [anon_sym__Atomic] = ACTIONS(3270), + [anon_sym__Noreturn] = ACTIONS(3270), + [anon_sym_noreturn] = ACTIONS(3270), + [anon_sym_mutable] = ACTIONS(3270), + [anon_sym_constinit] = ACTIONS(3270), + [anon_sym_consteval] = ACTIONS(3270), + [anon_sym_signed] = ACTIONS(3270), + [anon_sym_unsigned] = ACTIONS(3270), + [anon_sym_long] = ACTIONS(3270), + [anon_sym_short] = ACTIONS(3270), + [sym_primitive_type] = ACTIONS(3270), + [anon_sym_enum] = ACTIONS(3270), + [anon_sym_class] = ACTIONS(3270), + [anon_sym_struct] = ACTIONS(3270), + [anon_sym_union] = ACTIONS(3270), + [anon_sym_if] = ACTIONS(3270), + [anon_sym_switch] = ACTIONS(3270), + [anon_sym_case] = ACTIONS(3270), + [anon_sym_default] = ACTIONS(3270), + [anon_sym_while] = ACTIONS(3270), + [anon_sym_do] = ACTIONS(3270), + [anon_sym_for] = ACTIONS(3270), + [anon_sym_return] = ACTIONS(3270), + [anon_sym_break] = ACTIONS(3270), + [anon_sym_continue] = ACTIONS(3270), + [anon_sym_goto] = ACTIONS(3270), + [anon_sym_not] = ACTIONS(3270), + [anon_sym_compl] = ACTIONS(3270), + [anon_sym_DASH_DASH] = ACTIONS(3272), + [anon_sym_PLUS_PLUS] = ACTIONS(3272), + [anon_sym_sizeof] = ACTIONS(3270), + [anon_sym_offsetof] = ACTIONS(3270), + [anon_sym__Generic] = ACTIONS(3270), + [anon_sym_asm] = ACTIONS(3270), + [anon_sym___asm__] = ACTIONS(3270), + [sym_number_literal] = ACTIONS(3272), + [anon_sym_L_SQUOTE] = ACTIONS(3272), + [anon_sym_u_SQUOTE] = ACTIONS(3272), + [anon_sym_U_SQUOTE] = ACTIONS(3272), + [anon_sym_u8_SQUOTE] = ACTIONS(3272), + [anon_sym_SQUOTE] = ACTIONS(3272), + [anon_sym_L_DQUOTE] = ACTIONS(3272), + [anon_sym_u_DQUOTE] = ACTIONS(3272), + [anon_sym_U_DQUOTE] = ACTIONS(3272), + [anon_sym_u8_DQUOTE] = ACTIONS(3272), + [anon_sym_DQUOTE] = ACTIONS(3272), + [sym_true] = ACTIONS(3270), + [sym_false] = ACTIONS(3270), + [anon_sym_NULL] = ACTIONS(3270), + [anon_sym_nullptr] = ACTIONS(3270), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3270), + [anon_sym_decltype] = ACTIONS(3270), + [anon_sym_virtual] = ACTIONS(3270), + [anon_sym_explicit] = ACTIONS(3270), + [anon_sym_typename] = ACTIONS(3270), + [anon_sym_template] = ACTIONS(3270), + [anon_sym_operator] = ACTIONS(3270), + [anon_sym_try] = ACTIONS(3270), + [anon_sym_delete] = ACTIONS(3270), + [anon_sym_throw] = ACTIONS(3270), + [anon_sym_namespace] = ACTIONS(3270), + [anon_sym_using] = ACTIONS(3270), + [anon_sym_static_assert] = ACTIONS(3270), + [anon_sym_concept] = ACTIONS(3270), + [anon_sym_co_return] = ACTIONS(3270), + [anon_sym_co_yield] = ACTIONS(3270), + [anon_sym_R_DQUOTE] = ACTIONS(3272), + [anon_sym_LR_DQUOTE] = ACTIONS(3272), + [anon_sym_uR_DQUOTE] = ACTIONS(3272), + [anon_sym_UR_DQUOTE] = ACTIONS(3272), + [anon_sym_u8R_DQUOTE] = ACTIONS(3272), + [anon_sym_co_await] = ACTIONS(3270), + [anon_sym_new] = ACTIONS(3270), + [anon_sym_requires] = ACTIONS(3270), + [sym_this] = ACTIONS(3270), }, [768] = { - [ts_builtin_sym_end] = ACTIONS(2464), - [sym_identifier] = ACTIONS(2462), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2464), - [anon_sym_AMP] = ACTIONS(2462), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_explicit] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_operator] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_namespace] = ACTIONS(2462), - [anon_sym_using] = ACTIONS(2462), - [anon_sym_static_assert] = ACTIONS(2462), - [anon_sym_concept] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_identifier] = ACTIONS(3242), + [aux_sym_preproc_include_token1] = ACTIONS(3242), + [aux_sym_preproc_def_token1] = ACTIONS(3242), + [aux_sym_preproc_if_token1] = ACTIONS(3242), + [aux_sym_preproc_if_token2] = ACTIONS(3242), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3242), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3242), + [aux_sym_preproc_else_token1] = ACTIONS(3242), + [aux_sym_preproc_elif_token1] = ACTIONS(3242), + [sym_preproc_directive] = ACTIONS(3242), + [anon_sym_LPAREN2] = ACTIONS(3244), + [anon_sym_BANG] = ACTIONS(3244), + [anon_sym_TILDE] = ACTIONS(3244), + [anon_sym_DASH] = ACTIONS(3242), + [anon_sym_PLUS] = ACTIONS(3242), + [anon_sym_STAR] = ACTIONS(3244), + [anon_sym_AMP_AMP] = ACTIONS(3244), + [anon_sym_AMP] = ACTIONS(3242), + [anon_sym_SEMI] = ACTIONS(3244), + [anon_sym_typedef] = ACTIONS(3242), + [anon_sym_extern] = ACTIONS(3242), + [anon_sym___attribute__] = ACTIONS(3242), + [anon_sym_COLON_COLON] = ACTIONS(3244), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3244), + [anon_sym___declspec] = ACTIONS(3242), + [anon_sym___based] = ACTIONS(3242), + [anon_sym___cdecl] = ACTIONS(3242), + [anon_sym___clrcall] = ACTIONS(3242), + [anon_sym___stdcall] = ACTIONS(3242), + [anon_sym___fastcall] = ACTIONS(3242), + [anon_sym___thiscall] = ACTIONS(3242), + [anon_sym___vectorcall] = ACTIONS(3242), + [anon_sym_LBRACE] = ACTIONS(3244), + [anon_sym_LBRACK] = ACTIONS(3242), + [anon_sym_static] = ACTIONS(3242), + [anon_sym_register] = ACTIONS(3242), + [anon_sym_inline] = ACTIONS(3242), + [anon_sym_thread_local] = ACTIONS(3242), + [anon_sym_const] = ACTIONS(3242), + [anon_sym_constexpr] = ACTIONS(3242), + [anon_sym_volatile] = ACTIONS(3242), + [anon_sym_restrict] = ACTIONS(3242), + [anon_sym___restrict__] = ACTIONS(3242), + [anon_sym__Atomic] = ACTIONS(3242), + [anon_sym__Noreturn] = ACTIONS(3242), + [anon_sym_noreturn] = ACTIONS(3242), + [anon_sym_mutable] = ACTIONS(3242), + [anon_sym_constinit] = ACTIONS(3242), + [anon_sym_consteval] = ACTIONS(3242), + [anon_sym_signed] = ACTIONS(3242), + [anon_sym_unsigned] = ACTIONS(3242), + [anon_sym_long] = ACTIONS(3242), + [anon_sym_short] = ACTIONS(3242), + [sym_primitive_type] = ACTIONS(3242), + [anon_sym_enum] = ACTIONS(3242), + [anon_sym_class] = ACTIONS(3242), + [anon_sym_struct] = ACTIONS(3242), + [anon_sym_union] = ACTIONS(3242), + [anon_sym_if] = ACTIONS(3242), + [anon_sym_switch] = ACTIONS(3242), + [anon_sym_case] = ACTIONS(3242), + [anon_sym_default] = ACTIONS(3242), + [anon_sym_while] = ACTIONS(3242), + [anon_sym_do] = ACTIONS(3242), + [anon_sym_for] = ACTIONS(3242), + [anon_sym_return] = ACTIONS(3242), + [anon_sym_break] = ACTIONS(3242), + [anon_sym_continue] = ACTIONS(3242), + [anon_sym_goto] = ACTIONS(3242), + [anon_sym_not] = ACTIONS(3242), + [anon_sym_compl] = ACTIONS(3242), + [anon_sym_DASH_DASH] = ACTIONS(3244), + [anon_sym_PLUS_PLUS] = ACTIONS(3244), + [anon_sym_sizeof] = ACTIONS(3242), + [anon_sym_offsetof] = ACTIONS(3242), + [anon_sym__Generic] = ACTIONS(3242), + [anon_sym_asm] = ACTIONS(3242), + [anon_sym___asm__] = ACTIONS(3242), + [sym_number_literal] = ACTIONS(3244), + [anon_sym_L_SQUOTE] = ACTIONS(3244), + [anon_sym_u_SQUOTE] = ACTIONS(3244), + [anon_sym_U_SQUOTE] = ACTIONS(3244), + [anon_sym_u8_SQUOTE] = ACTIONS(3244), + [anon_sym_SQUOTE] = ACTIONS(3244), + [anon_sym_L_DQUOTE] = ACTIONS(3244), + [anon_sym_u_DQUOTE] = ACTIONS(3244), + [anon_sym_U_DQUOTE] = ACTIONS(3244), + [anon_sym_u8_DQUOTE] = ACTIONS(3244), + [anon_sym_DQUOTE] = ACTIONS(3244), + [sym_true] = ACTIONS(3242), + [sym_false] = ACTIONS(3242), + [anon_sym_NULL] = ACTIONS(3242), + [anon_sym_nullptr] = ACTIONS(3242), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3242), + [anon_sym_decltype] = ACTIONS(3242), + [anon_sym_virtual] = ACTIONS(3242), + [anon_sym_explicit] = ACTIONS(3242), + [anon_sym_typename] = ACTIONS(3242), + [anon_sym_template] = ACTIONS(3242), + [anon_sym_operator] = ACTIONS(3242), + [anon_sym_try] = ACTIONS(3242), + [anon_sym_delete] = ACTIONS(3242), + [anon_sym_throw] = ACTIONS(3242), + [anon_sym_namespace] = ACTIONS(3242), + [anon_sym_using] = ACTIONS(3242), + [anon_sym_static_assert] = ACTIONS(3242), + [anon_sym_concept] = ACTIONS(3242), + [anon_sym_co_return] = ACTIONS(3242), + [anon_sym_co_yield] = ACTIONS(3242), + [anon_sym_R_DQUOTE] = ACTIONS(3244), + [anon_sym_LR_DQUOTE] = ACTIONS(3244), + [anon_sym_uR_DQUOTE] = ACTIONS(3244), + [anon_sym_UR_DQUOTE] = ACTIONS(3244), + [anon_sym_u8R_DQUOTE] = ACTIONS(3244), + [anon_sym_co_await] = ACTIONS(3242), + [anon_sym_new] = ACTIONS(3242), + [anon_sym_requires] = ACTIONS(3242), + [sym_this] = ACTIONS(3242), }, [769] = { - [sym_identifier] = ACTIONS(2500), - [aux_sym_preproc_include_token1] = ACTIONS(2500), - [aux_sym_preproc_def_token1] = ACTIONS(2500), - [aux_sym_preproc_if_token1] = ACTIONS(2500), - [aux_sym_preproc_if_token2] = ACTIONS(2500), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2500), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2500), - [sym_preproc_directive] = ACTIONS(2500), - [anon_sym_LPAREN2] = ACTIONS(2502), - [anon_sym_BANG] = ACTIONS(2502), - [anon_sym_TILDE] = ACTIONS(2502), - [anon_sym_DASH] = ACTIONS(2500), - [anon_sym_PLUS] = ACTIONS(2500), - [anon_sym_STAR] = ACTIONS(2502), - [anon_sym_AMP_AMP] = ACTIONS(2502), - [anon_sym_AMP] = ACTIONS(2500), - [anon_sym_SEMI] = ACTIONS(2502), - [anon_sym_typedef] = ACTIONS(2500), - [anon_sym_extern] = ACTIONS(2500), - [anon_sym___attribute__] = ACTIONS(2500), - [anon_sym_COLON_COLON] = ACTIONS(2502), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2502), - [anon_sym___declspec] = ACTIONS(2500), - [anon_sym___based] = ACTIONS(2500), - [anon_sym___cdecl] = ACTIONS(2500), - [anon_sym___clrcall] = ACTIONS(2500), - [anon_sym___stdcall] = ACTIONS(2500), - [anon_sym___fastcall] = ACTIONS(2500), - [anon_sym___thiscall] = ACTIONS(2500), - [anon_sym___vectorcall] = ACTIONS(2500), - [anon_sym_LBRACE] = ACTIONS(2502), - [anon_sym_LBRACK] = ACTIONS(2500), - [anon_sym_static] = ACTIONS(2500), - [anon_sym_register] = ACTIONS(2500), - [anon_sym_inline] = ACTIONS(2500), - [anon_sym_thread_local] = ACTIONS(2500), - [anon_sym_const] = ACTIONS(2500), - [anon_sym_volatile] = ACTIONS(2500), - [anon_sym_restrict] = ACTIONS(2500), - [anon_sym__Atomic] = ACTIONS(2500), - [anon_sym_mutable] = ACTIONS(2500), - [anon_sym_constexpr] = ACTIONS(2500), - [anon_sym_constinit] = ACTIONS(2500), - [anon_sym_consteval] = ACTIONS(2500), - [anon_sym_signed] = ACTIONS(2500), - [anon_sym_unsigned] = ACTIONS(2500), - [anon_sym_long] = ACTIONS(2500), - [anon_sym_short] = ACTIONS(2500), - [sym_primitive_type] = ACTIONS(2500), - [anon_sym_enum] = ACTIONS(2500), - [anon_sym_class] = ACTIONS(2500), - [anon_sym_struct] = ACTIONS(2500), - [anon_sym_union] = ACTIONS(2500), - [anon_sym_if] = ACTIONS(2500), - [anon_sym_else] = ACTIONS(2500), - [anon_sym_switch] = ACTIONS(2500), - [anon_sym_case] = ACTIONS(2500), - [anon_sym_default] = ACTIONS(2500), - [anon_sym_while] = ACTIONS(2500), - [anon_sym_do] = ACTIONS(2500), - [anon_sym_for] = ACTIONS(2500), - [anon_sym_return] = ACTIONS(2500), - [anon_sym_break] = ACTIONS(2500), - [anon_sym_continue] = ACTIONS(2500), - [anon_sym_goto] = ACTIONS(2500), - [anon_sym_not] = ACTIONS(2500), - [anon_sym_compl] = ACTIONS(2500), - [anon_sym_DASH_DASH] = ACTIONS(2502), - [anon_sym_PLUS_PLUS] = ACTIONS(2502), - [anon_sym_sizeof] = ACTIONS(2500), - [sym_number_literal] = ACTIONS(2502), - [anon_sym_L_SQUOTE] = ACTIONS(2502), - [anon_sym_u_SQUOTE] = ACTIONS(2502), - [anon_sym_U_SQUOTE] = ACTIONS(2502), - [anon_sym_u8_SQUOTE] = ACTIONS(2502), - [anon_sym_SQUOTE] = ACTIONS(2502), - [anon_sym_L_DQUOTE] = ACTIONS(2502), - [anon_sym_u_DQUOTE] = ACTIONS(2502), - [anon_sym_U_DQUOTE] = ACTIONS(2502), - [anon_sym_u8_DQUOTE] = ACTIONS(2502), - [anon_sym_DQUOTE] = ACTIONS(2502), - [sym_true] = ACTIONS(2500), - [sym_false] = ACTIONS(2500), - [sym_null] = ACTIONS(2500), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2500), - [anon_sym_decltype] = ACTIONS(2500), - [anon_sym_virtual] = ACTIONS(2500), - [anon_sym_explicit] = ACTIONS(2500), - [anon_sym_typename] = ACTIONS(2500), - [anon_sym_template] = ACTIONS(2500), - [anon_sym_operator] = ACTIONS(2500), - [anon_sym_try] = ACTIONS(2500), - [anon_sym_delete] = ACTIONS(2500), - [anon_sym_throw] = ACTIONS(2500), - [anon_sym_namespace] = ACTIONS(2500), - [anon_sym_using] = ACTIONS(2500), - [anon_sym_static_assert] = ACTIONS(2500), - [anon_sym_concept] = ACTIONS(2500), - [anon_sym_co_return] = ACTIONS(2500), - [anon_sym_co_yield] = ACTIONS(2500), - [anon_sym_R_DQUOTE] = ACTIONS(2502), - [anon_sym_LR_DQUOTE] = ACTIONS(2502), - [anon_sym_uR_DQUOTE] = ACTIONS(2502), - [anon_sym_UR_DQUOTE] = ACTIONS(2502), - [anon_sym_u8R_DQUOTE] = ACTIONS(2502), - [anon_sym_co_await] = ACTIONS(2500), - [anon_sym_new] = ACTIONS(2500), - [anon_sym_requires] = ACTIONS(2500), - [sym_this] = ACTIONS(2500), - [sym_nullptr] = ACTIONS(2500), + [sym_identifier] = ACTIONS(3172), + [aux_sym_preproc_include_token1] = ACTIONS(3172), + [aux_sym_preproc_def_token1] = ACTIONS(3172), + [aux_sym_preproc_if_token1] = ACTIONS(3172), + [aux_sym_preproc_if_token2] = ACTIONS(3172), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3172), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3172), + [aux_sym_preproc_else_token1] = ACTIONS(3172), + [aux_sym_preproc_elif_token1] = ACTIONS(3172), + [sym_preproc_directive] = ACTIONS(3172), + [anon_sym_LPAREN2] = ACTIONS(3174), + [anon_sym_BANG] = ACTIONS(3174), + [anon_sym_TILDE] = ACTIONS(3174), + [anon_sym_DASH] = ACTIONS(3172), + [anon_sym_PLUS] = ACTIONS(3172), + [anon_sym_STAR] = ACTIONS(3174), + [anon_sym_AMP_AMP] = ACTIONS(3174), + [anon_sym_AMP] = ACTIONS(3172), + [anon_sym_SEMI] = ACTIONS(3174), + [anon_sym_typedef] = ACTIONS(3172), + [anon_sym_extern] = ACTIONS(3172), + [anon_sym___attribute__] = ACTIONS(3172), + [anon_sym_COLON_COLON] = ACTIONS(3174), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3174), + [anon_sym___declspec] = ACTIONS(3172), + [anon_sym___based] = ACTIONS(3172), + [anon_sym___cdecl] = ACTIONS(3172), + [anon_sym___clrcall] = ACTIONS(3172), + [anon_sym___stdcall] = ACTIONS(3172), + [anon_sym___fastcall] = ACTIONS(3172), + [anon_sym___thiscall] = ACTIONS(3172), + [anon_sym___vectorcall] = ACTIONS(3172), + [anon_sym_LBRACE] = ACTIONS(3174), + [anon_sym_LBRACK] = ACTIONS(3172), + [anon_sym_static] = ACTIONS(3172), + [anon_sym_register] = ACTIONS(3172), + [anon_sym_inline] = ACTIONS(3172), + [anon_sym_thread_local] = ACTIONS(3172), + [anon_sym_const] = ACTIONS(3172), + [anon_sym_constexpr] = ACTIONS(3172), + [anon_sym_volatile] = ACTIONS(3172), + [anon_sym_restrict] = ACTIONS(3172), + [anon_sym___restrict__] = ACTIONS(3172), + [anon_sym__Atomic] = ACTIONS(3172), + [anon_sym__Noreturn] = ACTIONS(3172), + [anon_sym_noreturn] = ACTIONS(3172), + [anon_sym_mutable] = ACTIONS(3172), + [anon_sym_constinit] = ACTIONS(3172), + [anon_sym_consteval] = ACTIONS(3172), + [anon_sym_signed] = ACTIONS(3172), + [anon_sym_unsigned] = ACTIONS(3172), + [anon_sym_long] = ACTIONS(3172), + [anon_sym_short] = ACTIONS(3172), + [sym_primitive_type] = ACTIONS(3172), + [anon_sym_enum] = ACTIONS(3172), + [anon_sym_class] = ACTIONS(3172), + [anon_sym_struct] = ACTIONS(3172), + [anon_sym_union] = ACTIONS(3172), + [anon_sym_if] = ACTIONS(3172), + [anon_sym_switch] = ACTIONS(3172), + [anon_sym_case] = ACTIONS(3172), + [anon_sym_default] = ACTIONS(3172), + [anon_sym_while] = ACTIONS(3172), + [anon_sym_do] = ACTIONS(3172), + [anon_sym_for] = ACTIONS(3172), + [anon_sym_return] = ACTIONS(3172), + [anon_sym_break] = ACTIONS(3172), + [anon_sym_continue] = ACTIONS(3172), + [anon_sym_goto] = ACTIONS(3172), + [anon_sym_not] = ACTIONS(3172), + [anon_sym_compl] = ACTIONS(3172), + [anon_sym_DASH_DASH] = ACTIONS(3174), + [anon_sym_PLUS_PLUS] = ACTIONS(3174), + [anon_sym_sizeof] = ACTIONS(3172), + [anon_sym_offsetof] = ACTIONS(3172), + [anon_sym__Generic] = ACTIONS(3172), + [anon_sym_asm] = ACTIONS(3172), + [anon_sym___asm__] = ACTIONS(3172), + [sym_number_literal] = ACTIONS(3174), + [anon_sym_L_SQUOTE] = ACTIONS(3174), + [anon_sym_u_SQUOTE] = ACTIONS(3174), + [anon_sym_U_SQUOTE] = ACTIONS(3174), + [anon_sym_u8_SQUOTE] = ACTIONS(3174), + [anon_sym_SQUOTE] = ACTIONS(3174), + [anon_sym_L_DQUOTE] = ACTIONS(3174), + [anon_sym_u_DQUOTE] = ACTIONS(3174), + [anon_sym_U_DQUOTE] = ACTIONS(3174), + [anon_sym_u8_DQUOTE] = ACTIONS(3174), + [anon_sym_DQUOTE] = ACTIONS(3174), + [sym_true] = ACTIONS(3172), + [sym_false] = ACTIONS(3172), + [anon_sym_NULL] = ACTIONS(3172), + [anon_sym_nullptr] = ACTIONS(3172), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3172), + [anon_sym_decltype] = ACTIONS(3172), + [anon_sym_virtual] = ACTIONS(3172), + [anon_sym_explicit] = ACTIONS(3172), + [anon_sym_typename] = ACTIONS(3172), + [anon_sym_template] = ACTIONS(3172), + [anon_sym_operator] = ACTIONS(3172), + [anon_sym_try] = ACTIONS(3172), + [anon_sym_delete] = ACTIONS(3172), + [anon_sym_throw] = ACTIONS(3172), + [anon_sym_namespace] = ACTIONS(3172), + [anon_sym_using] = ACTIONS(3172), + [anon_sym_static_assert] = ACTIONS(3172), + [anon_sym_concept] = ACTIONS(3172), + [anon_sym_co_return] = ACTIONS(3172), + [anon_sym_co_yield] = ACTIONS(3172), + [anon_sym_R_DQUOTE] = ACTIONS(3174), + [anon_sym_LR_DQUOTE] = ACTIONS(3174), + [anon_sym_uR_DQUOTE] = ACTIONS(3174), + [anon_sym_UR_DQUOTE] = ACTIONS(3174), + [anon_sym_u8R_DQUOTE] = ACTIONS(3174), + [anon_sym_co_await] = ACTIONS(3172), + [anon_sym_new] = ACTIONS(3172), + [anon_sym_requires] = ACTIONS(3172), + [sym_this] = ACTIONS(3172), }, [770] = { - [sym_identifier] = ACTIONS(2500), - [aux_sym_preproc_include_token1] = ACTIONS(2500), - [aux_sym_preproc_def_token1] = ACTIONS(2500), - [aux_sym_preproc_if_token1] = ACTIONS(2500), - [aux_sym_preproc_if_token2] = ACTIONS(2500), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2500), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2500), - [sym_preproc_directive] = ACTIONS(2500), - [anon_sym_LPAREN2] = ACTIONS(2502), - [anon_sym_BANG] = ACTIONS(2502), - [anon_sym_TILDE] = ACTIONS(2502), - [anon_sym_DASH] = ACTIONS(2500), - [anon_sym_PLUS] = ACTIONS(2500), - [anon_sym_STAR] = ACTIONS(2502), - [anon_sym_AMP_AMP] = ACTIONS(2502), - [anon_sym_AMP] = ACTIONS(2500), - [anon_sym_SEMI] = ACTIONS(2502), - [anon_sym_typedef] = ACTIONS(2500), - [anon_sym_extern] = ACTIONS(2500), - [anon_sym___attribute__] = ACTIONS(2500), - [anon_sym_COLON_COLON] = ACTIONS(2502), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2502), - [anon_sym___declspec] = ACTIONS(2500), - [anon_sym___based] = ACTIONS(2500), - [anon_sym___cdecl] = ACTIONS(2500), - [anon_sym___clrcall] = ACTIONS(2500), - [anon_sym___stdcall] = ACTIONS(2500), - [anon_sym___fastcall] = ACTIONS(2500), - [anon_sym___thiscall] = ACTIONS(2500), - [anon_sym___vectorcall] = ACTIONS(2500), - [anon_sym_LBRACE] = ACTIONS(2502), - [anon_sym_LBRACK] = ACTIONS(2500), - [anon_sym_static] = ACTIONS(2500), - [anon_sym_register] = ACTIONS(2500), - [anon_sym_inline] = ACTIONS(2500), - [anon_sym_thread_local] = ACTIONS(2500), - [anon_sym_const] = ACTIONS(2500), - [anon_sym_volatile] = ACTIONS(2500), - [anon_sym_restrict] = ACTIONS(2500), - [anon_sym__Atomic] = ACTIONS(2500), - [anon_sym_mutable] = ACTIONS(2500), - [anon_sym_constexpr] = ACTIONS(2500), - [anon_sym_constinit] = ACTIONS(2500), - [anon_sym_consteval] = ACTIONS(2500), - [anon_sym_signed] = ACTIONS(2500), - [anon_sym_unsigned] = ACTIONS(2500), - [anon_sym_long] = ACTIONS(2500), - [anon_sym_short] = ACTIONS(2500), - [sym_primitive_type] = ACTIONS(2500), - [anon_sym_enum] = ACTIONS(2500), - [anon_sym_class] = ACTIONS(2500), - [anon_sym_struct] = ACTIONS(2500), - [anon_sym_union] = ACTIONS(2500), - [anon_sym_if] = ACTIONS(2500), - [anon_sym_else] = ACTIONS(2500), - [anon_sym_switch] = ACTIONS(2500), - [anon_sym_case] = ACTIONS(2500), - [anon_sym_default] = ACTIONS(2500), - [anon_sym_while] = ACTIONS(2500), - [anon_sym_do] = ACTIONS(2500), - [anon_sym_for] = ACTIONS(2500), - [anon_sym_return] = ACTIONS(2500), - [anon_sym_break] = ACTIONS(2500), - [anon_sym_continue] = ACTIONS(2500), - [anon_sym_goto] = ACTIONS(2500), - [anon_sym_not] = ACTIONS(2500), - [anon_sym_compl] = ACTIONS(2500), - [anon_sym_DASH_DASH] = ACTIONS(2502), - [anon_sym_PLUS_PLUS] = ACTIONS(2502), - [anon_sym_sizeof] = ACTIONS(2500), - [sym_number_literal] = ACTIONS(2502), - [anon_sym_L_SQUOTE] = ACTIONS(2502), - [anon_sym_u_SQUOTE] = ACTIONS(2502), - [anon_sym_U_SQUOTE] = ACTIONS(2502), - [anon_sym_u8_SQUOTE] = ACTIONS(2502), - [anon_sym_SQUOTE] = ACTIONS(2502), - [anon_sym_L_DQUOTE] = ACTIONS(2502), - [anon_sym_u_DQUOTE] = ACTIONS(2502), - [anon_sym_U_DQUOTE] = ACTIONS(2502), - [anon_sym_u8_DQUOTE] = ACTIONS(2502), - [anon_sym_DQUOTE] = ACTIONS(2502), - [sym_true] = ACTIONS(2500), - [sym_false] = ACTIONS(2500), - [sym_null] = ACTIONS(2500), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2500), - [anon_sym_decltype] = ACTIONS(2500), - [anon_sym_virtual] = ACTIONS(2500), - [anon_sym_explicit] = ACTIONS(2500), - [anon_sym_typename] = ACTIONS(2500), - [anon_sym_template] = ACTIONS(2500), - [anon_sym_operator] = ACTIONS(2500), - [anon_sym_try] = ACTIONS(2500), - [anon_sym_delete] = ACTIONS(2500), - [anon_sym_throw] = ACTIONS(2500), - [anon_sym_namespace] = ACTIONS(2500), - [anon_sym_using] = ACTIONS(2500), - [anon_sym_static_assert] = ACTIONS(2500), - [anon_sym_concept] = ACTIONS(2500), - [anon_sym_co_return] = ACTIONS(2500), - [anon_sym_co_yield] = ACTIONS(2500), - [anon_sym_R_DQUOTE] = ACTIONS(2502), - [anon_sym_LR_DQUOTE] = ACTIONS(2502), - [anon_sym_uR_DQUOTE] = ACTIONS(2502), - [anon_sym_UR_DQUOTE] = ACTIONS(2502), - [anon_sym_u8R_DQUOTE] = ACTIONS(2502), - [anon_sym_co_await] = ACTIONS(2500), - [anon_sym_new] = ACTIONS(2500), - [anon_sym_requires] = ACTIONS(2500), - [sym_this] = ACTIONS(2500), - [sym_nullptr] = ACTIONS(2500), + [sym_identifier] = ACTIONS(3332), + [aux_sym_preproc_include_token1] = ACTIONS(3332), + [aux_sym_preproc_def_token1] = ACTIONS(3332), + [aux_sym_preproc_if_token1] = ACTIONS(3332), + [aux_sym_preproc_if_token2] = ACTIONS(3332), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3332), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3332), + [aux_sym_preproc_else_token1] = ACTIONS(3332), + [aux_sym_preproc_elif_token1] = ACTIONS(3332), + [sym_preproc_directive] = ACTIONS(3332), + [anon_sym_LPAREN2] = ACTIONS(3334), + [anon_sym_BANG] = ACTIONS(3334), + [anon_sym_TILDE] = ACTIONS(3334), + [anon_sym_DASH] = ACTIONS(3332), + [anon_sym_PLUS] = ACTIONS(3332), + [anon_sym_STAR] = ACTIONS(3334), + [anon_sym_AMP_AMP] = ACTIONS(3334), + [anon_sym_AMP] = ACTIONS(3332), + [anon_sym_SEMI] = ACTIONS(3334), + [anon_sym_typedef] = ACTIONS(3332), + [anon_sym_extern] = ACTIONS(3332), + [anon_sym___attribute__] = ACTIONS(3332), + [anon_sym_COLON_COLON] = ACTIONS(3334), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3334), + [anon_sym___declspec] = ACTIONS(3332), + [anon_sym___based] = ACTIONS(3332), + [anon_sym___cdecl] = ACTIONS(3332), + [anon_sym___clrcall] = ACTIONS(3332), + [anon_sym___stdcall] = ACTIONS(3332), + [anon_sym___fastcall] = ACTIONS(3332), + [anon_sym___thiscall] = ACTIONS(3332), + [anon_sym___vectorcall] = ACTIONS(3332), + [anon_sym_LBRACE] = ACTIONS(3334), + [anon_sym_LBRACK] = ACTIONS(3332), + [anon_sym_static] = ACTIONS(3332), + [anon_sym_register] = ACTIONS(3332), + [anon_sym_inline] = ACTIONS(3332), + [anon_sym_thread_local] = ACTIONS(3332), + [anon_sym_const] = ACTIONS(3332), + [anon_sym_constexpr] = ACTIONS(3332), + [anon_sym_volatile] = ACTIONS(3332), + [anon_sym_restrict] = ACTIONS(3332), + [anon_sym___restrict__] = ACTIONS(3332), + [anon_sym__Atomic] = ACTIONS(3332), + [anon_sym__Noreturn] = ACTIONS(3332), + [anon_sym_noreturn] = ACTIONS(3332), + [anon_sym_mutable] = ACTIONS(3332), + [anon_sym_constinit] = ACTIONS(3332), + [anon_sym_consteval] = ACTIONS(3332), + [anon_sym_signed] = ACTIONS(3332), + [anon_sym_unsigned] = ACTIONS(3332), + [anon_sym_long] = ACTIONS(3332), + [anon_sym_short] = ACTIONS(3332), + [sym_primitive_type] = ACTIONS(3332), + [anon_sym_enum] = ACTIONS(3332), + [anon_sym_class] = ACTIONS(3332), + [anon_sym_struct] = ACTIONS(3332), + [anon_sym_union] = ACTIONS(3332), + [anon_sym_if] = ACTIONS(3332), + [anon_sym_switch] = ACTIONS(3332), + [anon_sym_case] = ACTIONS(3332), + [anon_sym_default] = ACTIONS(3332), + [anon_sym_while] = ACTIONS(3332), + [anon_sym_do] = ACTIONS(3332), + [anon_sym_for] = ACTIONS(3332), + [anon_sym_return] = ACTIONS(3332), + [anon_sym_break] = ACTIONS(3332), + [anon_sym_continue] = ACTIONS(3332), + [anon_sym_goto] = ACTIONS(3332), + [anon_sym_not] = ACTIONS(3332), + [anon_sym_compl] = ACTIONS(3332), + [anon_sym_DASH_DASH] = ACTIONS(3334), + [anon_sym_PLUS_PLUS] = ACTIONS(3334), + [anon_sym_sizeof] = ACTIONS(3332), + [anon_sym_offsetof] = ACTIONS(3332), + [anon_sym__Generic] = ACTIONS(3332), + [anon_sym_asm] = ACTIONS(3332), + [anon_sym___asm__] = ACTIONS(3332), + [sym_number_literal] = ACTIONS(3334), + [anon_sym_L_SQUOTE] = ACTIONS(3334), + [anon_sym_u_SQUOTE] = ACTIONS(3334), + [anon_sym_U_SQUOTE] = ACTIONS(3334), + [anon_sym_u8_SQUOTE] = ACTIONS(3334), + [anon_sym_SQUOTE] = ACTIONS(3334), + [anon_sym_L_DQUOTE] = ACTIONS(3334), + [anon_sym_u_DQUOTE] = ACTIONS(3334), + [anon_sym_U_DQUOTE] = ACTIONS(3334), + [anon_sym_u8_DQUOTE] = ACTIONS(3334), + [anon_sym_DQUOTE] = ACTIONS(3334), + [sym_true] = ACTIONS(3332), + [sym_false] = ACTIONS(3332), + [anon_sym_NULL] = ACTIONS(3332), + [anon_sym_nullptr] = ACTIONS(3332), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3332), + [anon_sym_decltype] = ACTIONS(3332), + [anon_sym_virtual] = ACTIONS(3332), + [anon_sym_explicit] = ACTIONS(3332), + [anon_sym_typename] = ACTIONS(3332), + [anon_sym_template] = ACTIONS(3332), + [anon_sym_operator] = ACTIONS(3332), + [anon_sym_try] = ACTIONS(3332), + [anon_sym_delete] = ACTIONS(3332), + [anon_sym_throw] = ACTIONS(3332), + [anon_sym_namespace] = ACTIONS(3332), + [anon_sym_using] = ACTIONS(3332), + [anon_sym_static_assert] = ACTIONS(3332), + [anon_sym_concept] = ACTIONS(3332), + [anon_sym_co_return] = ACTIONS(3332), + [anon_sym_co_yield] = ACTIONS(3332), + [anon_sym_R_DQUOTE] = ACTIONS(3334), + [anon_sym_LR_DQUOTE] = ACTIONS(3334), + [anon_sym_uR_DQUOTE] = ACTIONS(3334), + [anon_sym_UR_DQUOTE] = ACTIONS(3334), + [anon_sym_u8R_DQUOTE] = ACTIONS(3334), + [anon_sym_co_await] = ACTIONS(3332), + [anon_sym_new] = ACTIONS(3332), + [anon_sym_requires] = ACTIONS(3332), + [sym_this] = ACTIONS(3332), }, [771] = { - [ts_builtin_sym_end] = ACTIONS(2464), - [sym_identifier] = ACTIONS(2462), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2464), - [anon_sym_AMP] = ACTIONS(2462), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_explicit] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_operator] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_namespace] = ACTIONS(2462), - [anon_sym_using] = ACTIONS(2462), - [anon_sym_static_assert] = ACTIONS(2462), - [anon_sym_concept] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_identifier] = ACTIONS(3332), + [aux_sym_preproc_include_token1] = ACTIONS(3332), + [aux_sym_preproc_def_token1] = ACTIONS(3332), + [aux_sym_preproc_if_token1] = ACTIONS(3332), + [aux_sym_preproc_if_token2] = ACTIONS(3332), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3332), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3332), + [aux_sym_preproc_else_token1] = ACTIONS(3332), + [aux_sym_preproc_elif_token1] = ACTIONS(3332), + [sym_preproc_directive] = ACTIONS(3332), + [anon_sym_LPAREN2] = ACTIONS(3334), + [anon_sym_BANG] = ACTIONS(3334), + [anon_sym_TILDE] = ACTIONS(3334), + [anon_sym_DASH] = ACTIONS(3332), + [anon_sym_PLUS] = ACTIONS(3332), + [anon_sym_STAR] = ACTIONS(3334), + [anon_sym_AMP_AMP] = ACTIONS(3334), + [anon_sym_AMP] = ACTIONS(3332), + [anon_sym_SEMI] = ACTIONS(3334), + [anon_sym_typedef] = ACTIONS(3332), + [anon_sym_extern] = ACTIONS(3332), + [anon_sym___attribute__] = ACTIONS(3332), + [anon_sym_COLON_COLON] = ACTIONS(3334), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3334), + [anon_sym___declspec] = ACTIONS(3332), + [anon_sym___based] = ACTIONS(3332), + [anon_sym___cdecl] = ACTIONS(3332), + [anon_sym___clrcall] = ACTIONS(3332), + [anon_sym___stdcall] = ACTIONS(3332), + [anon_sym___fastcall] = ACTIONS(3332), + [anon_sym___thiscall] = ACTIONS(3332), + [anon_sym___vectorcall] = ACTIONS(3332), + [anon_sym_LBRACE] = ACTIONS(3334), + [anon_sym_LBRACK] = ACTIONS(3332), + [anon_sym_static] = ACTIONS(3332), + [anon_sym_register] = ACTIONS(3332), + [anon_sym_inline] = ACTIONS(3332), + [anon_sym_thread_local] = ACTIONS(3332), + [anon_sym_const] = ACTIONS(3332), + [anon_sym_constexpr] = ACTIONS(3332), + [anon_sym_volatile] = ACTIONS(3332), + [anon_sym_restrict] = ACTIONS(3332), + [anon_sym___restrict__] = ACTIONS(3332), + [anon_sym__Atomic] = ACTIONS(3332), + [anon_sym__Noreturn] = ACTIONS(3332), + [anon_sym_noreturn] = ACTIONS(3332), + [anon_sym_mutable] = ACTIONS(3332), + [anon_sym_constinit] = ACTIONS(3332), + [anon_sym_consteval] = ACTIONS(3332), + [anon_sym_signed] = ACTIONS(3332), + [anon_sym_unsigned] = ACTIONS(3332), + [anon_sym_long] = ACTIONS(3332), + [anon_sym_short] = ACTIONS(3332), + [sym_primitive_type] = ACTIONS(3332), + [anon_sym_enum] = ACTIONS(3332), + [anon_sym_class] = ACTIONS(3332), + [anon_sym_struct] = ACTIONS(3332), + [anon_sym_union] = ACTIONS(3332), + [anon_sym_if] = ACTIONS(3332), + [anon_sym_switch] = ACTIONS(3332), + [anon_sym_case] = ACTIONS(3332), + [anon_sym_default] = ACTIONS(3332), + [anon_sym_while] = ACTIONS(3332), + [anon_sym_do] = ACTIONS(3332), + [anon_sym_for] = ACTIONS(3332), + [anon_sym_return] = ACTIONS(3332), + [anon_sym_break] = ACTIONS(3332), + [anon_sym_continue] = ACTIONS(3332), + [anon_sym_goto] = ACTIONS(3332), + [anon_sym_not] = ACTIONS(3332), + [anon_sym_compl] = ACTIONS(3332), + [anon_sym_DASH_DASH] = ACTIONS(3334), + [anon_sym_PLUS_PLUS] = ACTIONS(3334), + [anon_sym_sizeof] = ACTIONS(3332), + [anon_sym_offsetof] = ACTIONS(3332), + [anon_sym__Generic] = ACTIONS(3332), + [anon_sym_asm] = ACTIONS(3332), + [anon_sym___asm__] = ACTIONS(3332), + [sym_number_literal] = ACTIONS(3334), + [anon_sym_L_SQUOTE] = ACTIONS(3334), + [anon_sym_u_SQUOTE] = ACTIONS(3334), + [anon_sym_U_SQUOTE] = ACTIONS(3334), + [anon_sym_u8_SQUOTE] = ACTIONS(3334), + [anon_sym_SQUOTE] = ACTIONS(3334), + [anon_sym_L_DQUOTE] = ACTIONS(3334), + [anon_sym_u_DQUOTE] = ACTIONS(3334), + [anon_sym_U_DQUOTE] = ACTIONS(3334), + [anon_sym_u8_DQUOTE] = ACTIONS(3334), + [anon_sym_DQUOTE] = ACTIONS(3334), + [sym_true] = ACTIONS(3332), + [sym_false] = ACTIONS(3332), + [anon_sym_NULL] = ACTIONS(3332), + [anon_sym_nullptr] = ACTIONS(3332), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3332), + [anon_sym_decltype] = ACTIONS(3332), + [anon_sym_virtual] = ACTIONS(3332), + [anon_sym_explicit] = ACTIONS(3332), + [anon_sym_typename] = ACTIONS(3332), + [anon_sym_template] = ACTIONS(3332), + [anon_sym_operator] = ACTIONS(3332), + [anon_sym_try] = ACTIONS(3332), + [anon_sym_delete] = ACTIONS(3332), + [anon_sym_throw] = ACTIONS(3332), + [anon_sym_namespace] = ACTIONS(3332), + [anon_sym_using] = ACTIONS(3332), + [anon_sym_static_assert] = ACTIONS(3332), + [anon_sym_concept] = ACTIONS(3332), + [anon_sym_co_return] = ACTIONS(3332), + [anon_sym_co_yield] = ACTIONS(3332), + [anon_sym_R_DQUOTE] = ACTIONS(3334), + [anon_sym_LR_DQUOTE] = ACTIONS(3334), + [anon_sym_uR_DQUOTE] = ACTIONS(3334), + [anon_sym_UR_DQUOTE] = ACTIONS(3334), + [anon_sym_u8R_DQUOTE] = ACTIONS(3334), + [anon_sym_co_await] = ACTIONS(3332), + [anon_sym_new] = ACTIONS(3332), + [anon_sym_requires] = ACTIONS(3332), + [sym_this] = ACTIONS(3332), }, [772] = { - [ts_builtin_sym_end] = ACTIONS(2464), - [sym_identifier] = ACTIONS(2462), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2464), - [anon_sym_AMP] = ACTIONS(2462), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_explicit] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_operator] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_namespace] = ACTIONS(2462), - [anon_sym_using] = ACTIONS(2462), - [anon_sym_static_assert] = ACTIONS(2462), - [anon_sym_concept] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_identifier] = ACTIONS(2542), + [aux_sym_preproc_include_token1] = ACTIONS(2542), + [aux_sym_preproc_def_token1] = ACTIONS(2542), + [aux_sym_preproc_if_token1] = ACTIONS(2542), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2542), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2542), + [sym_preproc_directive] = ACTIONS(2542), + [anon_sym_LPAREN2] = ACTIONS(2540), + [anon_sym_BANG] = ACTIONS(2540), + [anon_sym_TILDE] = ACTIONS(2540), + [anon_sym_DASH] = ACTIONS(2542), + [anon_sym_PLUS] = ACTIONS(2542), + [anon_sym_STAR] = ACTIONS(2540), + [anon_sym_AMP_AMP] = ACTIONS(2540), + [anon_sym_AMP] = ACTIONS(2542), + [anon_sym_SEMI] = ACTIONS(2540), + [anon_sym_typedef] = ACTIONS(2542), + [anon_sym_extern] = ACTIONS(2542), + [anon_sym___attribute__] = ACTIONS(2542), + [anon_sym_COLON_COLON] = ACTIONS(2540), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2540), + [anon_sym___declspec] = ACTIONS(2542), + [anon_sym___based] = ACTIONS(2542), + [anon_sym___cdecl] = ACTIONS(2542), + [anon_sym___clrcall] = ACTIONS(2542), + [anon_sym___stdcall] = ACTIONS(2542), + [anon_sym___fastcall] = ACTIONS(2542), + [anon_sym___thiscall] = ACTIONS(2542), + [anon_sym___vectorcall] = ACTIONS(2542), + [anon_sym_LBRACE] = ACTIONS(2540), + [anon_sym_RBRACE] = ACTIONS(2540), + [anon_sym_LBRACK] = ACTIONS(2542), + [anon_sym_static] = ACTIONS(2542), + [anon_sym_register] = ACTIONS(2542), + [anon_sym_inline] = ACTIONS(2542), + [anon_sym_thread_local] = ACTIONS(2542), + [anon_sym_const] = ACTIONS(2542), + [anon_sym_constexpr] = ACTIONS(2542), + [anon_sym_volatile] = ACTIONS(2542), + [anon_sym_restrict] = ACTIONS(2542), + [anon_sym___restrict__] = ACTIONS(2542), + [anon_sym__Atomic] = ACTIONS(2542), + [anon_sym__Noreturn] = ACTIONS(2542), + [anon_sym_noreturn] = ACTIONS(2542), + [anon_sym_mutable] = ACTIONS(2542), + [anon_sym_constinit] = ACTIONS(2542), + [anon_sym_consteval] = ACTIONS(2542), + [anon_sym_signed] = ACTIONS(2542), + [anon_sym_unsigned] = ACTIONS(2542), + [anon_sym_long] = ACTIONS(2542), + [anon_sym_short] = ACTIONS(2542), + [sym_primitive_type] = ACTIONS(2542), + [anon_sym_enum] = ACTIONS(2542), + [anon_sym_class] = ACTIONS(2542), + [anon_sym_struct] = ACTIONS(2542), + [anon_sym_union] = ACTIONS(2542), + [anon_sym_if] = ACTIONS(2542), + [anon_sym_else] = ACTIONS(2542), + [anon_sym_switch] = ACTIONS(2542), + [anon_sym_case] = ACTIONS(2542), + [anon_sym_default] = ACTIONS(2542), + [anon_sym_while] = ACTIONS(2542), + [anon_sym_do] = ACTIONS(2542), + [anon_sym_for] = ACTIONS(2542), + [anon_sym_return] = ACTIONS(2542), + [anon_sym_break] = ACTIONS(2542), + [anon_sym_continue] = ACTIONS(2542), + [anon_sym_goto] = ACTIONS(2542), + [anon_sym_not] = ACTIONS(2542), + [anon_sym_compl] = ACTIONS(2542), + [anon_sym_DASH_DASH] = ACTIONS(2540), + [anon_sym_PLUS_PLUS] = ACTIONS(2540), + [anon_sym_sizeof] = ACTIONS(2542), + [anon_sym_offsetof] = ACTIONS(2542), + [anon_sym__Generic] = ACTIONS(2542), + [anon_sym_asm] = ACTIONS(2542), + [anon_sym___asm__] = ACTIONS(2542), + [sym_number_literal] = ACTIONS(2540), + [anon_sym_L_SQUOTE] = ACTIONS(2540), + [anon_sym_u_SQUOTE] = ACTIONS(2540), + [anon_sym_U_SQUOTE] = ACTIONS(2540), + [anon_sym_u8_SQUOTE] = ACTIONS(2540), + [anon_sym_SQUOTE] = ACTIONS(2540), + [anon_sym_L_DQUOTE] = ACTIONS(2540), + [anon_sym_u_DQUOTE] = ACTIONS(2540), + [anon_sym_U_DQUOTE] = ACTIONS(2540), + [anon_sym_u8_DQUOTE] = ACTIONS(2540), + [anon_sym_DQUOTE] = ACTIONS(2540), + [sym_true] = ACTIONS(2542), + [sym_false] = ACTIONS(2542), + [anon_sym_NULL] = ACTIONS(2542), + [anon_sym_nullptr] = ACTIONS(2542), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2542), + [anon_sym_decltype] = ACTIONS(2542), + [anon_sym_virtual] = ACTIONS(2542), + [anon_sym_explicit] = ACTIONS(2542), + [anon_sym_typename] = ACTIONS(2542), + [anon_sym_template] = ACTIONS(2542), + [anon_sym_operator] = ACTIONS(2542), + [anon_sym_try] = ACTIONS(2542), + [anon_sym_delete] = ACTIONS(2542), + [anon_sym_throw] = ACTIONS(2542), + [anon_sym_namespace] = ACTIONS(2542), + [anon_sym_using] = ACTIONS(2542), + [anon_sym_static_assert] = ACTIONS(2542), + [anon_sym_concept] = ACTIONS(2542), + [anon_sym_co_return] = ACTIONS(2542), + [anon_sym_co_yield] = ACTIONS(2542), + [anon_sym_catch] = ACTIONS(2542), + [anon_sym_R_DQUOTE] = ACTIONS(2540), + [anon_sym_LR_DQUOTE] = ACTIONS(2540), + [anon_sym_uR_DQUOTE] = ACTIONS(2540), + [anon_sym_UR_DQUOTE] = ACTIONS(2540), + [anon_sym_u8R_DQUOTE] = ACTIONS(2540), + [anon_sym_co_await] = ACTIONS(2542), + [anon_sym_new] = ACTIONS(2542), + [anon_sym_requires] = ACTIONS(2542), + [sym_this] = ACTIONS(2542), }, [773] = { - [ts_builtin_sym_end] = ACTIONS(2464), - [sym_identifier] = ACTIONS(2462), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2464), - [anon_sym_AMP] = ACTIONS(2462), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_explicit] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_operator] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_namespace] = ACTIONS(2462), - [anon_sym_using] = ACTIONS(2462), - [anon_sym_static_assert] = ACTIONS(2462), - [anon_sym_concept] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_identifier] = ACTIONS(3376), + [aux_sym_preproc_include_token1] = ACTIONS(3376), + [aux_sym_preproc_def_token1] = ACTIONS(3376), + [aux_sym_preproc_if_token1] = ACTIONS(3376), + [aux_sym_preproc_if_token2] = ACTIONS(3376), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3376), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3376), + [aux_sym_preproc_else_token1] = ACTIONS(3376), + [aux_sym_preproc_elif_token1] = ACTIONS(3376), + [sym_preproc_directive] = ACTIONS(3376), + [anon_sym_LPAREN2] = ACTIONS(3378), + [anon_sym_BANG] = ACTIONS(3378), + [anon_sym_TILDE] = ACTIONS(3378), + [anon_sym_DASH] = ACTIONS(3376), + [anon_sym_PLUS] = ACTIONS(3376), + [anon_sym_STAR] = ACTIONS(3378), + [anon_sym_AMP_AMP] = ACTIONS(3378), + [anon_sym_AMP] = ACTIONS(3376), + [anon_sym_SEMI] = ACTIONS(3378), + [anon_sym_typedef] = ACTIONS(3376), + [anon_sym_extern] = ACTIONS(3376), + [anon_sym___attribute__] = ACTIONS(3376), + [anon_sym_COLON_COLON] = ACTIONS(3378), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3378), + [anon_sym___declspec] = ACTIONS(3376), + [anon_sym___based] = ACTIONS(3376), + [anon_sym___cdecl] = ACTIONS(3376), + [anon_sym___clrcall] = ACTIONS(3376), + [anon_sym___stdcall] = ACTIONS(3376), + [anon_sym___fastcall] = ACTIONS(3376), + [anon_sym___thiscall] = ACTIONS(3376), + [anon_sym___vectorcall] = ACTIONS(3376), + [anon_sym_LBRACE] = ACTIONS(3378), + [anon_sym_LBRACK] = ACTIONS(3376), + [anon_sym_static] = ACTIONS(3376), + [anon_sym_register] = ACTIONS(3376), + [anon_sym_inline] = ACTIONS(3376), + [anon_sym_thread_local] = ACTIONS(3376), + [anon_sym_const] = ACTIONS(3376), + [anon_sym_constexpr] = ACTIONS(3376), + [anon_sym_volatile] = ACTIONS(3376), + [anon_sym_restrict] = ACTIONS(3376), + [anon_sym___restrict__] = ACTIONS(3376), + [anon_sym__Atomic] = ACTIONS(3376), + [anon_sym__Noreturn] = ACTIONS(3376), + [anon_sym_noreturn] = ACTIONS(3376), + [anon_sym_mutable] = ACTIONS(3376), + [anon_sym_constinit] = ACTIONS(3376), + [anon_sym_consteval] = ACTIONS(3376), + [anon_sym_signed] = ACTIONS(3376), + [anon_sym_unsigned] = ACTIONS(3376), + [anon_sym_long] = ACTIONS(3376), + [anon_sym_short] = ACTIONS(3376), + [sym_primitive_type] = ACTIONS(3376), + [anon_sym_enum] = ACTIONS(3376), + [anon_sym_class] = ACTIONS(3376), + [anon_sym_struct] = ACTIONS(3376), + [anon_sym_union] = ACTIONS(3376), + [anon_sym_if] = ACTIONS(3376), + [anon_sym_switch] = ACTIONS(3376), + [anon_sym_case] = ACTIONS(3376), + [anon_sym_default] = ACTIONS(3376), + [anon_sym_while] = ACTIONS(3376), + [anon_sym_do] = ACTIONS(3376), + [anon_sym_for] = ACTIONS(3376), + [anon_sym_return] = ACTIONS(3376), + [anon_sym_break] = ACTIONS(3376), + [anon_sym_continue] = ACTIONS(3376), + [anon_sym_goto] = ACTIONS(3376), + [anon_sym_not] = ACTIONS(3376), + [anon_sym_compl] = ACTIONS(3376), + [anon_sym_DASH_DASH] = ACTIONS(3378), + [anon_sym_PLUS_PLUS] = ACTIONS(3378), + [anon_sym_sizeof] = ACTIONS(3376), + [anon_sym_offsetof] = ACTIONS(3376), + [anon_sym__Generic] = ACTIONS(3376), + [anon_sym_asm] = ACTIONS(3376), + [anon_sym___asm__] = ACTIONS(3376), + [sym_number_literal] = ACTIONS(3378), + [anon_sym_L_SQUOTE] = ACTIONS(3378), + [anon_sym_u_SQUOTE] = ACTIONS(3378), + [anon_sym_U_SQUOTE] = ACTIONS(3378), + [anon_sym_u8_SQUOTE] = ACTIONS(3378), + [anon_sym_SQUOTE] = ACTIONS(3378), + [anon_sym_L_DQUOTE] = ACTIONS(3378), + [anon_sym_u_DQUOTE] = ACTIONS(3378), + [anon_sym_U_DQUOTE] = ACTIONS(3378), + [anon_sym_u8_DQUOTE] = ACTIONS(3378), + [anon_sym_DQUOTE] = ACTIONS(3378), + [sym_true] = ACTIONS(3376), + [sym_false] = ACTIONS(3376), + [anon_sym_NULL] = ACTIONS(3376), + [anon_sym_nullptr] = ACTIONS(3376), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3376), + [anon_sym_decltype] = ACTIONS(3376), + [anon_sym_virtual] = ACTIONS(3376), + [anon_sym_explicit] = ACTIONS(3376), + [anon_sym_typename] = ACTIONS(3376), + [anon_sym_template] = ACTIONS(3376), + [anon_sym_operator] = ACTIONS(3376), + [anon_sym_try] = ACTIONS(3376), + [anon_sym_delete] = ACTIONS(3376), + [anon_sym_throw] = ACTIONS(3376), + [anon_sym_namespace] = ACTIONS(3376), + [anon_sym_using] = ACTIONS(3376), + [anon_sym_static_assert] = ACTIONS(3376), + [anon_sym_concept] = ACTIONS(3376), + [anon_sym_co_return] = ACTIONS(3376), + [anon_sym_co_yield] = ACTIONS(3376), + [anon_sym_R_DQUOTE] = ACTIONS(3378), + [anon_sym_LR_DQUOTE] = ACTIONS(3378), + [anon_sym_uR_DQUOTE] = ACTIONS(3378), + [anon_sym_UR_DQUOTE] = ACTIONS(3378), + [anon_sym_u8R_DQUOTE] = ACTIONS(3378), + [anon_sym_co_await] = ACTIONS(3376), + [anon_sym_new] = ACTIONS(3376), + [anon_sym_requires] = ACTIONS(3376), + [sym_this] = ACTIONS(3376), }, [774] = { - [ts_builtin_sym_end] = ACTIONS(2464), - [sym_identifier] = ACTIONS(2462), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2464), - [anon_sym_AMP] = ACTIONS(2462), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_explicit] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_operator] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_namespace] = ACTIONS(2462), - [anon_sym_using] = ACTIONS(2462), - [anon_sym_static_assert] = ACTIONS(2462), - [anon_sym_concept] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_identifier] = ACTIONS(3403), + [aux_sym_preproc_include_token1] = ACTIONS(3403), + [aux_sym_preproc_def_token1] = ACTIONS(3403), + [aux_sym_preproc_if_token1] = ACTIONS(3403), + [aux_sym_preproc_if_token2] = ACTIONS(3403), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3403), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3403), + [aux_sym_preproc_else_token1] = ACTIONS(3403), + [aux_sym_preproc_elif_token1] = ACTIONS(3403), + [sym_preproc_directive] = ACTIONS(3403), + [anon_sym_LPAREN2] = ACTIONS(3405), + [anon_sym_BANG] = ACTIONS(3405), + [anon_sym_TILDE] = ACTIONS(3405), + [anon_sym_DASH] = ACTIONS(3403), + [anon_sym_PLUS] = ACTIONS(3403), + [anon_sym_STAR] = ACTIONS(3405), + [anon_sym_AMP_AMP] = ACTIONS(3405), + [anon_sym_AMP] = ACTIONS(3403), + [anon_sym_SEMI] = ACTIONS(3405), + [anon_sym_typedef] = ACTIONS(3403), + [anon_sym_extern] = ACTIONS(3403), + [anon_sym___attribute__] = ACTIONS(3403), + [anon_sym_COLON_COLON] = ACTIONS(3405), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3405), + [anon_sym___declspec] = ACTIONS(3403), + [anon_sym___based] = ACTIONS(3403), + [anon_sym___cdecl] = ACTIONS(3403), + [anon_sym___clrcall] = ACTIONS(3403), + [anon_sym___stdcall] = ACTIONS(3403), + [anon_sym___fastcall] = ACTIONS(3403), + [anon_sym___thiscall] = ACTIONS(3403), + [anon_sym___vectorcall] = ACTIONS(3403), + [anon_sym_LBRACE] = ACTIONS(3405), + [anon_sym_LBRACK] = ACTIONS(3403), + [anon_sym_static] = ACTIONS(3403), + [anon_sym_register] = ACTIONS(3403), + [anon_sym_inline] = ACTIONS(3403), + [anon_sym_thread_local] = ACTIONS(3403), + [anon_sym_const] = ACTIONS(3403), + [anon_sym_constexpr] = ACTIONS(3403), + [anon_sym_volatile] = ACTIONS(3403), + [anon_sym_restrict] = ACTIONS(3403), + [anon_sym___restrict__] = ACTIONS(3403), + [anon_sym__Atomic] = ACTIONS(3403), + [anon_sym__Noreturn] = ACTIONS(3403), + [anon_sym_noreturn] = ACTIONS(3403), + [anon_sym_mutable] = ACTIONS(3403), + [anon_sym_constinit] = ACTIONS(3403), + [anon_sym_consteval] = ACTIONS(3403), + [anon_sym_signed] = ACTIONS(3403), + [anon_sym_unsigned] = ACTIONS(3403), + [anon_sym_long] = ACTIONS(3403), + [anon_sym_short] = ACTIONS(3403), + [sym_primitive_type] = ACTIONS(3403), + [anon_sym_enum] = ACTIONS(3403), + [anon_sym_class] = ACTIONS(3403), + [anon_sym_struct] = ACTIONS(3403), + [anon_sym_union] = ACTIONS(3403), + [anon_sym_if] = ACTIONS(3403), + [anon_sym_switch] = ACTIONS(3403), + [anon_sym_case] = ACTIONS(3403), + [anon_sym_default] = ACTIONS(3403), + [anon_sym_while] = ACTIONS(3403), + [anon_sym_do] = ACTIONS(3403), + [anon_sym_for] = ACTIONS(3403), + [anon_sym_return] = ACTIONS(3403), + [anon_sym_break] = ACTIONS(3403), + [anon_sym_continue] = ACTIONS(3403), + [anon_sym_goto] = ACTIONS(3403), + [anon_sym_not] = ACTIONS(3403), + [anon_sym_compl] = ACTIONS(3403), + [anon_sym_DASH_DASH] = ACTIONS(3405), + [anon_sym_PLUS_PLUS] = ACTIONS(3405), + [anon_sym_sizeof] = ACTIONS(3403), + [anon_sym_offsetof] = ACTIONS(3403), + [anon_sym__Generic] = ACTIONS(3403), + [anon_sym_asm] = ACTIONS(3403), + [anon_sym___asm__] = ACTIONS(3403), + [sym_number_literal] = ACTIONS(3405), + [anon_sym_L_SQUOTE] = ACTIONS(3405), + [anon_sym_u_SQUOTE] = ACTIONS(3405), + [anon_sym_U_SQUOTE] = ACTIONS(3405), + [anon_sym_u8_SQUOTE] = ACTIONS(3405), + [anon_sym_SQUOTE] = ACTIONS(3405), + [anon_sym_L_DQUOTE] = ACTIONS(3405), + [anon_sym_u_DQUOTE] = ACTIONS(3405), + [anon_sym_U_DQUOTE] = ACTIONS(3405), + [anon_sym_u8_DQUOTE] = ACTIONS(3405), + [anon_sym_DQUOTE] = ACTIONS(3405), + [sym_true] = ACTIONS(3403), + [sym_false] = ACTIONS(3403), + [anon_sym_NULL] = ACTIONS(3403), + [anon_sym_nullptr] = ACTIONS(3403), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3403), + [anon_sym_decltype] = ACTIONS(3403), + [anon_sym_virtual] = ACTIONS(3403), + [anon_sym_explicit] = ACTIONS(3403), + [anon_sym_typename] = ACTIONS(3403), + [anon_sym_template] = ACTIONS(3403), + [anon_sym_operator] = ACTIONS(3403), + [anon_sym_try] = ACTIONS(3403), + [anon_sym_delete] = ACTIONS(3403), + [anon_sym_throw] = ACTIONS(3403), + [anon_sym_namespace] = ACTIONS(3403), + [anon_sym_using] = ACTIONS(3403), + [anon_sym_static_assert] = ACTIONS(3403), + [anon_sym_concept] = ACTIONS(3403), + [anon_sym_co_return] = ACTIONS(3403), + [anon_sym_co_yield] = ACTIONS(3403), + [anon_sym_R_DQUOTE] = ACTIONS(3405), + [anon_sym_LR_DQUOTE] = ACTIONS(3405), + [anon_sym_uR_DQUOTE] = ACTIONS(3405), + [anon_sym_UR_DQUOTE] = ACTIONS(3405), + [anon_sym_u8R_DQUOTE] = ACTIONS(3405), + [anon_sym_co_await] = ACTIONS(3403), + [anon_sym_new] = ACTIONS(3403), + [anon_sym_requires] = ACTIONS(3403), + [sym_this] = ACTIONS(3403), }, [775] = { - [ts_builtin_sym_end] = ACTIONS(2464), - [sym_identifier] = ACTIONS(2462), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2464), - [anon_sym_AMP] = ACTIONS(2462), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_explicit] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_operator] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_namespace] = ACTIONS(2462), - [anon_sym_using] = ACTIONS(2462), - [anon_sym_static_assert] = ACTIONS(2462), - [anon_sym_concept] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_identifier] = ACTIONS(3443), + [aux_sym_preproc_include_token1] = ACTIONS(3443), + [aux_sym_preproc_def_token1] = ACTIONS(3443), + [aux_sym_preproc_if_token1] = ACTIONS(3443), + [aux_sym_preproc_if_token2] = ACTIONS(3443), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3443), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3443), + [aux_sym_preproc_else_token1] = ACTIONS(3443), + [aux_sym_preproc_elif_token1] = ACTIONS(3443), + [sym_preproc_directive] = ACTIONS(3443), + [anon_sym_LPAREN2] = ACTIONS(3445), + [anon_sym_BANG] = ACTIONS(3445), + [anon_sym_TILDE] = ACTIONS(3445), + [anon_sym_DASH] = ACTIONS(3443), + [anon_sym_PLUS] = ACTIONS(3443), + [anon_sym_STAR] = ACTIONS(3445), + [anon_sym_AMP_AMP] = ACTIONS(3445), + [anon_sym_AMP] = ACTIONS(3443), + [anon_sym_SEMI] = ACTIONS(3445), + [anon_sym_typedef] = ACTIONS(3443), + [anon_sym_extern] = ACTIONS(3443), + [anon_sym___attribute__] = ACTIONS(3443), + [anon_sym_COLON_COLON] = ACTIONS(3445), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3445), + [anon_sym___declspec] = ACTIONS(3443), + [anon_sym___based] = ACTIONS(3443), + [anon_sym___cdecl] = ACTIONS(3443), + [anon_sym___clrcall] = ACTIONS(3443), + [anon_sym___stdcall] = ACTIONS(3443), + [anon_sym___fastcall] = ACTIONS(3443), + [anon_sym___thiscall] = ACTIONS(3443), + [anon_sym___vectorcall] = ACTIONS(3443), + [anon_sym_LBRACE] = ACTIONS(3445), + [anon_sym_LBRACK] = ACTIONS(3443), + [anon_sym_static] = ACTIONS(3443), + [anon_sym_register] = ACTIONS(3443), + [anon_sym_inline] = ACTIONS(3443), + [anon_sym_thread_local] = ACTIONS(3443), + [anon_sym_const] = ACTIONS(3443), + [anon_sym_constexpr] = ACTIONS(3443), + [anon_sym_volatile] = ACTIONS(3443), + [anon_sym_restrict] = ACTIONS(3443), + [anon_sym___restrict__] = ACTIONS(3443), + [anon_sym__Atomic] = ACTIONS(3443), + [anon_sym__Noreturn] = ACTIONS(3443), + [anon_sym_noreturn] = ACTIONS(3443), + [anon_sym_mutable] = ACTIONS(3443), + [anon_sym_constinit] = ACTIONS(3443), + [anon_sym_consteval] = ACTIONS(3443), + [anon_sym_signed] = ACTIONS(3443), + [anon_sym_unsigned] = ACTIONS(3443), + [anon_sym_long] = ACTIONS(3443), + [anon_sym_short] = ACTIONS(3443), + [sym_primitive_type] = ACTIONS(3443), + [anon_sym_enum] = ACTIONS(3443), + [anon_sym_class] = ACTIONS(3443), + [anon_sym_struct] = ACTIONS(3443), + [anon_sym_union] = ACTIONS(3443), + [anon_sym_if] = ACTIONS(3443), + [anon_sym_switch] = ACTIONS(3443), + [anon_sym_case] = ACTIONS(3443), + [anon_sym_default] = ACTIONS(3443), + [anon_sym_while] = ACTIONS(3443), + [anon_sym_do] = ACTIONS(3443), + [anon_sym_for] = ACTIONS(3443), + [anon_sym_return] = ACTIONS(3443), + [anon_sym_break] = ACTIONS(3443), + [anon_sym_continue] = ACTIONS(3443), + [anon_sym_goto] = ACTIONS(3443), + [anon_sym_not] = ACTIONS(3443), + [anon_sym_compl] = ACTIONS(3443), + [anon_sym_DASH_DASH] = ACTIONS(3445), + [anon_sym_PLUS_PLUS] = ACTIONS(3445), + [anon_sym_sizeof] = ACTIONS(3443), + [anon_sym_offsetof] = ACTIONS(3443), + [anon_sym__Generic] = ACTIONS(3443), + [anon_sym_asm] = ACTIONS(3443), + [anon_sym___asm__] = ACTIONS(3443), + [sym_number_literal] = ACTIONS(3445), + [anon_sym_L_SQUOTE] = ACTIONS(3445), + [anon_sym_u_SQUOTE] = ACTIONS(3445), + [anon_sym_U_SQUOTE] = ACTIONS(3445), + [anon_sym_u8_SQUOTE] = ACTIONS(3445), + [anon_sym_SQUOTE] = ACTIONS(3445), + [anon_sym_L_DQUOTE] = ACTIONS(3445), + [anon_sym_u_DQUOTE] = ACTIONS(3445), + [anon_sym_U_DQUOTE] = ACTIONS(3445), + [anon_sym_u8_DQUOTE] = ACTIONS(3445), + [anon_sym_DQUOTE] = ACTIONS(3445), + [sym_true] = ACTIONS(3443), + [sym_false] = ACTIONS(3443), + [anon_sym_NULL] = ACTIONS(3443), + [anon_sym_nullptr] = ACTIONS(3443), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3443), + [anon_sym_decltype] = ACTIONS(3443), + [anon_sym_virtual] = ACTIONS(3443), + [anon_sym_explicit] = ACTIONS(3443), + [anon_sym_typename] = ACTIONS(3443), + [anon_sym_template] = ACTIONS(3443), + [anon_sym_operator] = ACTIONS(3443), + [anon_sym_try] = ACTIONS(3443), + [anon_sym_delete] = ACTIONS(3443), + [anon_sym_throw] = ACTIONS(3443), + [anon_sym_namespace] = ACTIONS(3443), + [anon_sym_using] = ACTIONS(3443), + [anon_sym_static_assert] = ACTIONS(3443), + [anon_sym_concept] = ACTIONS(3443), + [anon_sym_co_return] = ACTIONS(3443), + [anon_sym_co_yield] = ACTIONS(3443), + [anon_sym_R_DQUOTE] = ACTIONS(3445), + [anon_sym_LR_DQUOTE] = ACTIONS(3445), + [anon_sym_uR_DQUOTE] = ACTIONS(3445), + [anon_sym_UR_DQUOTE] = ACTIONS(3445), + [anon_sym_u8R_DQUOTE] = ACTIONS(3445), + [anon_sym_co_await] = ACTIONS(3443), + [anon_sym_new] = ACTIONS(3443), + [anon_sym_requires] = ACTIONS(3443), + [sym_this] = ACTIONS(3443), }, [776] = { - [ts_builtin_sym_end] = ACTIONS(2464), - [sym_identifier] = ACTIONS(2462), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2464), - [anon_sym_AMP] = ACTIONS(2462), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_explicit] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_operator] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_namespace] = ACTIONS(2462), - [anon_sym_using] = ACTIONS(2462), - [anon_sym_static_assert] = ACTIONS(2462), - [anon_sym_concept] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_identifier] = ACTIONS(3447), + [aux_sym_preproc_include_token1] = ACTIONS(3447), + [aux_sym_preproc_def_token1] = ACTIONS(3447), + [aux_sym_preproc_if_token1] = ACTIONS(3447), + [aux_sym_preproc_if_token2] = ACTIONS(3447), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3447), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3447), + [aux_sym_preproc_else_token1] = ACTIONS(3447), + [aux_sym_preproc_elif_token1] = ACTIONS(3447), + [sym_preproc_directive] = ACTIONS(3447), + [anon_sym_LPAREN2] = ACTIONS(3449), + [anon_sym_BANG] = ACTIONS(3449), + [anon_sym_TILDE] = ACTIONS(3449), + [anon_sym_DASH] = ACTIONS(3447), + [anon_sym_PLUS] = ACTIONS(3447), + [anon_sym_STAR] = ACTIONS(3449), + [anon_sym_AMP_AMP] = ACTIONS(3449), + [anon_sym_AMP] = ACTIONS(3447), + [anon_sym_SEMI] = ACTIONS(3449), + [anon_sym_typedef] = ACTIONS(3447), + [anon_sym_extern] = ACTIONS(3447), + [anon_sym___attribute__] = ACTIONS(3447), + [anon_sym_COLON_COLON] = ACTIONS(3449), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3449), + [anon_sym___declspec] = ACTIONS(3447), + [anon_sym___based] = ACTIONS(3447), + [anon_sym___cdecl] = ACTIONS(3447), + [anon_sym___clrcall] = ACTIONS(3447), + [anon_sym___stdcall] = ACTIONS(3447), + [anon_sym___fastcall] = ACTIONS(3447), + [anon_sym___thiscall] = ACTIONS(3447), + [anon_sym___vectorcall] = ACTIONS(3447), + [anon_sym_LBRACE] = ACTIONS(3449), + [anon_sym_LBRACK] = ACTIONS(3447), + [anon_sym_static] = ACTIONS(3447), + [anon_sym_register] = ACTIONS(3447), + [anon_sym_inline] = ACTIONS(3447), + [anon_sym_thread_local] = ACTIONS(3447), + [anon_sym_const] = ACTIONS(3447), + [anon_sym_constexpr] = ACTIONS(3447), + [anon_sym_volatile] = ACTIONS(3447), + [anon_sym_restrict] = ACTIONS(3447), + [anon_sym___restrict__] = ACTIONS(3447), + [anon_sym__Atomic] = ACTIONS(3447), + [anon_sym__Noreturn] = ACTIONS(3447), + [anon_sym_noreturn] = ACTIONS(3447), + [anon_sym_mutable] = ACTIONS(3447), + [anon_sym_constinit] = ACTIONS(3447), + [anon_sym_consteval] = ACTIONS(3447), + [anon_sym_signed] = ACTIONS(3447), + [anon_sym_unsigned] = ACTIONS(3447), + [anon_sym_long] = ACTIONS(3447), + [anon_sym_short] = ACTIONS(3447), + [sym_primitive_type] = ACTIONS(3447), + [anon_sym_enum] = ACTIONS(3447), + [anon_sym_class] = ACTIONS(3447), + [anon_sym_struct] = ACTIONS(3447), + [anon_sym_union] = ACTIONS(3447), + [anon_sym_if] = ACTIONS(3447), + [anon_sym_switch] = ACTIONS(3447), + [anon_sym_case] = ACTIONS(3447), + [anon_sym_default] = ACTIONS(3447), + [anon_sym_while] = ACTIONS(3447), + [anon_sym_do] = ACTIONS(3447), + [anon_sym_for] = ACTIONS(3447), + [anon_sym_return] = ACTIONS(3447), + [anon_sym_break] = ACTIONS(3447), + [anon_sym_continue] = ACTIONS(3447), + [anon_sym_goto] = ACTIONS(3447), + [anon_sym_not] = ACTIONS(3447), + [anon_sym_compl] = ACTIONS(3447), + [anon_sym_DASH_DASH] = ACTIONS(3449), + [anon_sym_PLUS_PLUS] = ACTIONS(3449), + [anon_sym_sizeof] = ACTIONS(3447), + [anon_sym_offsetof] = ACTIONS(3447), + [anon_sym__Generic] = ACTIONS(3447), + [anon_sym_asm] = ACTIONS(3447), + [anon_sym___asm__] = ACTIONS(3447), + [sym_number_literal] = ACTIONS(3449), + [anon_sym_L_SQUOTE] = ACTIONS(3449), + [anon_sym_u_SQUOTE] = ACTIONS(3449), + [anon_sym_U_SQUOTE] = ACTIONS(3449), + [anon_sym_u8_SQUOTE] = ACTIONS(3449), + [anon_sym_SQUOTE] = ACTIONS(3449), + [anon_sym_L_DQUOTE] = ACTIONS(3449), + [anon_sym_u_DQUOTE] = ACTIONS(3449), + [anon_sym_U_DQUOTE] = ACTIONS(3449), + [anon_sym_u8_DQUOTE] = ACTIONS(3449), + [anon_sym_DQUOTE] = ACTIONS(3449), + [sym_true] = ACTIONS(3447), + [sym_false] = ACTIONS(3447), + [anon_sym_NULL] = ACTIONS(3447), + [anon_sym_nullptr] = ACTIONS(3447), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3447), + [anon_sym_decltype] = ACTIONS(3447), + [anon_sym_virtual] = ACTIONS(3447), + [anon_sym_explicit] = ACTIONS(3447), + [anon_sym_typename] = ACTIONS(3447), + [anon_sym_template] = ACTIONS(3447), + [anon_sym_operator] = ACTIONS(3447), + [anon_sym_try] = ACTIONS(3447), + [anon_sym_delete] = ACTIONS(3447), + [anon_sym_throw] = ACTIONS(3447), + [anon_sym_namespace] = ACTIONS(3447), + [anon_sym_using] = ACTIONS(3447), + [anon_sym_static_assert] = ACTIONS(3447), + [anon_sym_concept] = ACTIONS(3447), + [anon_sym_co_return] = ACTIONS(3447), + [anon_sym_co_yield] = ACTIONS(3447), + [anon_sym_R_DQUOTE] = ACTIONS(3449), + [anon_sym_LR_DQUOTE] = ACTIONS(3449), + [anon_sym_uR_DQUOTE] = ACTIONS(3449), + [anon_sym_UR_DQUOTE] = ACTIONS(3449), + [anon_sym_u8R_DQUOTE] = ACTIONS(3449), + [anon_sym_co_await] = ACTIONS(3447), + [anon_sym_new] = ACTIONS(3447), + [anon_sym_requires] = ACTIONS(3447), + [sym_this] = ACTIONS(3447), }, [777] = { - [ts_builtin_sym_end] = ACTIONS(2464), - [sym_identifier] = ACTIONS(2462), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2464), - [anon_sym_AMP] = ACTIONS(2462), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_explicit] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_operator] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_namespace] = ACTIONS(2462), - [anon_sym_using] = ACTIONS(2462), - [anon_sym_static_assert] = ACTIONS(2462), - [anon_sym_concept] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_identifier] = ACTIONS(3439), + [aux_sym_preproc_include_token1] = ACTIONS(3439), + [aux_sym_preproc_def_token1] = ACTIONS(3439), + [aux_sym_preproc_if_token1] = ACTIONS(3439), + [aux_sym_preproc_if_token2] = ACTIONS(3439), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3439), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3439), + [aux_sym_preproc_else_token1] = ACTIONS(3439), + [aux_sym_preproc_elif_token1] = ACTIONS(3439), + [sym_preproc_directive] = ACTIONS(3439), + [anon_sym_LPAREN2] = ACTIONS(3441), + [anon_sym_BANG] = ACTIONS(3441), + [anon_sym_TILDE] = ACTIONS(3441), + [anon_sym_DASH] = ACTIONS(3439), + [anon_sym_PLUS] = ACTIONS(3439), + [anon_sym_STAR] = ACTIONS(3441), + [anon_sym_AMP_AMP] = ACTIONS(3441), + [anon_sym_AMP] = ACTIONS(3439), + [anon_sym_SEMI] = ACTIONS(3441), + [anon_sym_typedef] = ACTIONS(3439), + [anon_sym_extern] = ACTIONS(3439), + [anon_sym___attribute__] = ACTIONS(3439), + [anon_sym_COLON_COLON] = ACTIONS(3441), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3441), + [anon_sym___declspec] = ACTIONS(3439), + [anon_sym___based] = ACTIONS(3439), + [anon_sym___cdecl] = ACTIONS(3439), + [anon_sym___clrcall] = ACTIONS(3439), + [anon_sym___stdcall] = ACTIONS(3439), + [anon_sym___fastcall] = ACTIONS(3439), + [anon_sym___thiscall] = ACTIONS(3439), + [anon_sym___vectorcall] = ACTIONS(3439), + [anon_sym_LBRACE] = ACTIONS(3441), + [anon_sym_LBRACK] = ACTIONS(3439), + [anon_sym_static] = ACTIONS(3439), + [anon_sym_register] = ACTIONS(3439), + [anon_sym_inline] = ACTIONS(3439), + [anon_sym_thread_local] = ACTIONS(3439), + [anon_sym_const] = ACTIONS(3439), + [anon_sym_constexpr] = ACTIONS(3439), + [anon_sym_volatile] = ACTIONS(3439), + [anon_sym_restrict] = ACTIONS(3439), + [anon_sym___restrict__] = ACTIONS(3439), + [anon_sym__Atomic] = ACTIONS(3439), + [anon_sym__Noreturn] = ACTIONS(3439), + [anon_sym_noreturn] = ACTIONS(3439), + [anon_sym_mutable] = ACTIONS(3439), + [anon_sym_constinit] = ACTIONS(3439), + [anon_sym_consteval] = ACTIONS(3439), + [anon_sym_signed] = ACTIONS(3439), + [anon_sym_unsigned] = ACTIONS(3439), + [anon_sym_long] = ACTIONS(3439), + [anon_sym_short] = ACTIONS(3439), + [sym_primitive_type] = ACTIONS(3439), + [anon_sym_enum] = ACTIONS(3439), + [anon_sym_class] = ACTIONS(3439), + [anon_sym_struct] = ACTIONS(3439), + [anon_sym_union] = ACTIONS(3439), + [anon_sym_if] = ACTIONS(3439), + [anon_sym_switch] = ACTIONS(3439), + [anon_sym_case] = ACTIONS(3439), + [anon_sym_default] = ACTIONS(3439), + [anon_sym_while] = ACTIONS(3439), + [anon_sym_do] = ACTIONS(3439), + [anon_sym_for] = ACTIONS(3439), + [anon_sym_return] = ACTIONS(3439), + [anon_sym_break] = ACTIONS(3439), + [anon_sym_continue] = ACTIONS(3439), + [anon_sym_goto] = ACTIONS(3439), + [anon_sym_not] = ACTIONS(3439), + [anon_sym_compl] = ACTIONS(3439), + [anon_sym_DASH_DASH] = ACTIONS(3441), + [anon_sym_PLUS_PLUS] = ACTIONS(3441), + [anon_sym_sizeof] = ACTIONS(3439), + [anon_sym_offsetof] = ACTIONS(3439), + [anon_sym__Generic] = ACTIONS(3439), + [anon_sym_asm] = ACTIONS(3439), + [anon_sym___asm__] = ACTIONS(3439), + [sym_number_literal] = ACTIONS(3441), + [anon_sym_L_SQUOTE] = ACTIONS(3441), + [anon_sym_u_SQUOTE] = ACTIONS(3441), + [anon_sym_U_SQUOTE] = ACTIONS(3441), + [anon_sym_u8_SQUOTE] = ACTIONS(3441), + [anon_sym_SQUOTE] = ACTIONS(3441), + [anon_sym_L_DQUOTE] = ACTIONS(3441), + [anon_sym_u_DQUOTE] = ACTIONS(3441), + [anon_sym_U_DQUOTE] = ACTIONS(3441), + [anon_sym_u8_DQUOTE] = ACTIONS(3441), + [anon_sym_DQUOTE] = ACTIONS(3441), + [sym_true] = ACTIONS(3439), + [sym_false] = ACTIONS(3439), + [anon_sym_NULL] = ACTIONS(3439), + [anon_sym_nullptr] = ACTIONS(3439), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3439), + [anon_sym_decltype] = ACTIONS(3439), + [anon_sym_virtual] = ACTIONS(3439), + [anon_sym_explicit] = ACTIONS(3439), + [anon_sym_typename] = ACTIONS(3439), + [anon_sym_template] = ACTIONS(3439), + [anon_sym_operator] = ACTIONS(3439), + [anon_sym_try] = ACTIONS(3439), + [anon_sym_delete] = ACTIONS(3439), + [anon_sym_throw] = ACTIONS(3439), + [anon_sym_namespace] = ACTIONS(3439), + [anon_sym_using] = ACTIONS(3439), + [anon_sym_static_assert] = ACTIONS(3439), + [anon_sym_concept] = ACTIONS(3439), + [anon_sym_co_return] = ACTIONS(3439), + [anon_sym_co_yield] = ACTIONS(3439), + [anon_sym_R_DQUOTE] = ACTIONS(3441), + [anon_sym_LR_DQUOTE] = ACTIONS(3441), + [anon_sym_uR_DQUOTE] = ACTIONS(3441), + [anon_sym_UR_DQUOTE] = ACTIONS(3441), + [anon_sym_u8R_DQUOTE] = ACTIONS(3441), + [anon_sym_co_await] = ACTIONS(3439), + [anon_sym_new] = ACTIONS(3439), + [anon_sym_requires] = ACTIONS(3439), + [sym_this] = ACTIONS(3439), }, [778] = { - [sym_identifier] = ACTIONS(2568), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2570), - [anon_sym_AMP] = ACTIONS(2568), - [anon_sym_SEMI] = ACTIONS(2570), - [anon_sym_typedef] = ACTIONS(2568), - [anon_sym_extern] = ACTIONS(2568), - [anon_sym___attribute__] = ACTIONS(2568), - [anon_sym_COLON_COLON] = ACTIONS(2570), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2570), - [anon_sym___declspec] = ACTIONS(2568), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2568), - [anon_sym_static] = ACTIONS(2568), - [anon_sym_register] = ACTIONS(2568), - [anon_sym_inline] = ACTIONS(2568), - [anon_sym_thread_local] = ACTIONS(2568), - [anon_sym_const] = ACTIONS(2568), - [anon_sym_volatile] = ACTIONS(2568), - [anon_sym_restrict] = ACTIONS(2568), - [anon_sym__Atomic] = ACTIONS(2568), - [anon_sym_mutable] = ACTIONS(2568), - [anon_sym_constexpr] = ACTIONS(2568), - [anon_sym_constinit] = ACTIONS(2568), - [anon_sym_consteval] = ACTIONS(2568), - [anon_sym_signed] = ACTIONS(2568), - [anon_sym_unsigned] = ACTIONS(2568), - [anon_sym_long] = ACTIONS(2568), - [anon_sym_short] = ACTIONS(2568), - [sym_primitive_type] = ACTIONS(2568), - [anon_sym_enum] = ACTIONS(2568), - [anon_sym_class] = 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_return] = ACTIONS(2568), - [anon_sym_break] = ACTIONS(2568), - [anon_sym_continue] = ACTIONS(2568), - [anon_sym_goto] = ACTIONS(2568), - [anon_sym_not] = ACTIONS(2568), - [anon_sym_compl] = ACTIONS(2568), - [anon_sym_DASH_DASH] = ACTIONS(2570), - [anon_sym_PLUS_PLUS] = ACTIONS(2570), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2570), - [anon_sym_u_DQUOTE] = ACTIONS(2570), - [anon_sym_U_DQUOTE] = ACTIONS(2570), - [anon_sym_u8_DQUOTE] = ACTIONS(2570), - [anon_sym_DQUOTE] = ACTIONS(2570), - [sym_true] = ACTIONS(2568), - [sym_false] = ACTIONS(2568), - [sym_null] = ACTIONS(2568), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2568), - [anon_sym_decltype] = ACTIONS(2568), - [anon_sym_virtual] = ACTIONS(2568), - [anon_sym_explicit] = ACTIONS(2568), - [anon_sym_typename] = ACTIONS(2568), - [anon_sym_template] = ACTIONS(2568), - [anon_sym_operator] = ACTIONS(2568), - [anon_sym_try] = ACTIONS(2568), - [anon_sym_delete] = ACTIONS(2568), - [anon_sym_throw] = ACTIONS(2568), - [anon_sym_namespace] = ACTIONS(2568), - [anon_sym_using] = ACTIONS(2568), - [anon_sym_static_assert] = ACTIONS(2568), - [anon_sym_concept] = ACTIONS(2568), - [anon_sym_co_return] = ACTIONS(2568), - [anon_sym_co_yield] = ACTIONS(2568), - [anon_sym_R_DQUOTE] = ACTIONS(2570), - [anon_sym_LR_DQUOTE] = ACTIONS(2570), - [anon_sym_uR_DQUOTE] = ACTIONS(2570), - [anon_sym_UR_DQUOTE] = ACTIONS(2570), - [anon_sym_u8R_DQUOTE] = ACTIONS(2570), - [anon_sym_co_await] = ACTIONS(2568), - [anon_sym_new] = ACTIONS(2568), - [anon_sym_requires] = ACTIONS(2568), - [sym_this] = ACTIONS(2568), - [sym_nullptr] = ACTIONS(2568), + [sym_identifier] = ACTIONS(3451), + [aux_sym_preproc_include_token1] = ACTIONS(3451), + [aux_sym_preproc_def_token1] = ACTIONS(3451), + [aux_sym_preproc_if_token1] = ACTIONS(3451), + [aux_sym_preproc_if_token2] = ACTIONS(3451), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3451), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3451), + [aux_sym_preproc_else_token1] = ACTIONS(3451), + [aux_sym_preproc_elif_token1] = ACTIONS(3451), + [sym_preproc_directive] = ACTIONS(3451), + [anon_sym_LPAREN2] = ACTIONS(3453), + [anon_sym_BANG] = ACTIONS(3453), + [anon_sym_TILDE] = ACTIONS(3453), + [anon_sym_DASH] = ACTIONS(3451), + [anon_sym_PLUS] = ACTIONS(3451), + [anon_sym_STAR] = ACTIONS(3453), + [anon_sym_AMP_AMP] = ACTIONS(3453), + [anon_sym_AMP] = ACTIONS(3451), + [anon_sym_SEMI] = ACTIONS(3453), + [anon_sym_typedef] = ACTIONS(3451), + [anon_sym_extern] = ACTIONS(3451), + [anon_sym___attribute__] = ACTIONS(3451), + [anon_sym_COLON_COLON] = ACTIONS(3453), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3453), + [anon_sym___declspec] = ACTIONS(3451), + [anon_sym___based] = ACTIONS(3451), + [anon_sym___cdecl] = ACTIONS(3451), + [anon_sym___clrcall] = ACTIONS(3451), + [anon_sym___stdcall] = ACTIONS(3451), + [anon_sym___fastcall] = ACTIONS(3451), + [anon_sym___thiscall] = ACTIONS(3451), + [anon_sym___vectorcall] = ACTIONS(3451), + [anon_sym_LBRACE] = ACTIONS(3453), + [anon_sym_LBRACK] = ACTIONS(3451), + [anon_sym_static] = ACTIONS(3451), + [anon_sym_register] = ACTIONS(3451), + [anon_sym_inline] = ACTIONS(3451), + [anon_sym_thread_local] = ACTIONS(3451), + [anon_sym_const] = ACTIONS(3451), + [anon_sym_constexpr] = ACTIONS(3451), + [anon_sym_volatile] = ACTIONS(3451), + [anon_sym_restrict] = ACTIONS(3451), + [anon_sym___restrict__] = ACTIONS(3451), + [anon_sym__Atomic] = ACTIONS(3451), + [anon_sym__Noreturn] = ACTIONS(3451), + [anon_sym_noreturn] = ACTIONS(3451), + [anon_sym_mutable] = ACTIONS(3451), + [anon_sym_constinit] = ACTIONS(3451), + [anon_sym_consteval] = ACTIONS(3451), + [anon_sym_signed] = ACTIONS(3451), + [anon_sym_unsigned] = ACTIONS(3451), + [anon_sym_long] = ACTIONS(3451), + [anon_sym_short] = ACTIONS(3451), + [sym_primitive_type] = ACTIONS(3451), + [anon_sym_enum] = ACTIONS(3451), + [anon_sym_class] = ACTIONS(3451), + [anon_sym_struct] = ACTIONS(3451), + [anon_sym_union] = ACTIONS(3451), + [anon_sym_if] = ACTIONS(3451), + [anon_sym_switch] = ACTIONS(3451), + [anon_sym_case] = ACTIONS(3451), + [anon_sym_default] = ACTIONS(3451), + [anon_sym_while] = ACTIONS(3451), + [anon_sym_do] = ACTIONS(3451), + [anon_sym_for] = ACTIONS(3451), + [anon_sym_return] = ACTIONS(3451), + [anon_sym_break] = ACTIONS(3451), + [anon_sym_continue] = ACTIONS(3451), + [anon_sym_goto] = ACTIONS(3451), + [anon_sym_not] = ACTIONS(3451), + [anon_sym_compl] = ACTIONS(3451), + [anon_sym_DASH_DASH] = ACTIONS(3453), + [anon_sym_PLUS_PLUS] = ACTIONS(3453), + [anon_sym_sizeof] = ACTIONS(3451), + [anon_sym_offsetof] = ACTIONS(3451), + [anon_sym__Generic] = ACTIONS(3451), + [anon_sym_asm] = ACTIONS(3451), + [anon_sym___asm__] = ACTIONS(3451), + [sym_number_literal] = ACTIONS(3453), + [anon_sym_L_SQUOTE] = ACTIONS(3453), + [anon_sym_u_SQUOTE] = ACTIONS(3453), + [anon_sym_U_SQUOTE] = ACTIONS(3453), + [anon_sym_u8_SQUOTE] = ACTIONS(3453), + [anon_sym_SQUOTE] = ACTIONS(3453), + [anon_sym_L_DQUOTE] = ACTIONS(3453), + [anon_sym_u_DQUOTE] = ACTIONS(3453), + [anon_sym_U_DQUOTE] = ACTIONS(3453), + [anon_sym_u8_DQUOTE] = ACTIONS(3453), + [anon_sym_DQUOTE] = ACTIONS(3453), + [sym_true] = ACTIONS(3451), + [sym_false] = ACTIONS(3451), + [anon_sym_NULL] = ACTIONS(3451), + [anon_sym_nullptr] = ACTIONS(3451), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3451), + [anon_sym_decltype] = ACTIONS(3451), + [anon_sym_virtual] = ACTIONS(3451), + [anon_sym_explicit] = ACTIONS(3451), + [anon_sym_typename] = ACTIONS(3451), + [anon_sym_template] = ACTIONS(3451), + [anon_sym_operator] = ACTIONS(3451), + [anon_sym_try] = ACTIONS(3451), + [anon_sym_delete] = ACTIONS(3451), + [anon_sym_throw] = ACTIONS(3451), + [anon_sym_namespace] = ACTIONS(3451), + [anon_sym_using] = ACTIONS(3451), + [anon_sym_static_assert] = ACTIONS(3451), + [anon_sym_concept] = ACTIONS(3451), + [anon_sym_co_return] = ACTIONS(3451), + [anon_sym_co_yield] = ACTIONS(3451), + [anon_sym_R_DQUOTE] = ACTIONS(3453), + [anon_sym_LR_DQUOTE] = ACTIONS(3453), + [anon_sym_uR_DQUOTE] = ACTIONS(3453), + [anon_sym_UR_DQUOTE] = ACTIONS(3453), + [anon_sym_u8R_DQUOTE] = ACTIONS(3453), + [anon_sym_co_await] = ACTIONS(3451), + [anon_sym_new] = ACTIONS(3451), + [anon_sym_requires] = ACTIONS(3451), + [sym_this] = ACTIONS(3451), }, [779] = { - [sym_identifier] = ACTIONS(2492), - [aux_sym_preproc_include_token1] = ACTIONS(2492), - [aux_sym_preproc_def_token1] = ACTIONS(2492), - [aux_sym_preproc_if_token1] = ACTIONS(2492), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2492), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2492), - [sym_preproc_directive] = ACTIONS(2492), - [anon_sym_LPAREN2] = ACTIONS(2494), - [anon_sym_BANG] = ACTIONS(2494), - [anon_sym_TILDE] = ACTIONS(2494), - [anon_sym_DASH] = ACTIONS(2492), - [anon_sym_PLUS] = ACTIONS(2492), - [anon_sym_STAR] = ACTIONS(2494), - [anon_sym_AMP_AMP] = ACTIONS(2494), - [anon_sym_AMP] = ACTIONS(2492), - [anon_sym_SEMI] = ACTIONS(2494), - [anon_sym_typedef] = ACTIONS(2492), - [anon_sym_extern] = ACTIONS(2492), - [anon_sym___attribute__] = ACTIONS(2492), - [anon_sym_COLON_COLON] = ACTIONS(2494), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2494), - [anon_sym___declspec] = ACTIONS(2492), - [anon_sym___based] = ACTIONS(2492), - [anon_sym___cdecl] = ACTIONS(2492), - [anon_sym___clrcall] = ACTIONS(2492), - [anon_sym___stdcall] = ACTIONS(2492), - [anon_sym___fastcall] = ACTIONS(2492), - [anon_sym___thiscall] = ACTIONS(2492), - [anon_sym___vectorcall] = ACTIONS(2492), - [anon_sym_LBRACE] = ACTIONS(2494), - [anon_sym_RBRACE] = ACTIONS(2494), - [anon_sym_LBRACK] = ACTIONS(2492), - [anon_sym_static] = ACTIONS(2492), - [anon_sym_register] = ACTIONS(2492), - [anon_sym_inline] = ACTIONS(2492), - [anon_sym_thread_local] = ACTIONS(2492), - [anon_sym_const] = ACTIONS(2492), - [anon_sym_volatile] = ACTIONS(2492), - [anon_sym_restrict] = ACTIONS(2492), - [anon_sym__Atomic] = ACTIONS(2492), - [anon_sym_mutable] = ACTIONS(2492), - [anon_sym_constexpr] = ACTIONS(2492), - [anon_sym_constinit] = ACTIONS(2492), - [anon_sym_consteval] = ACTIONS(2492), - [anon_sym_signed] = ACTIONS(2492), - [anon_sym_unsigned] = ACTIONS(2492), - [anon_sym_long] = ACTIONS(2492), - [anon_sym_short] = ACTIONS(2492), - [sym_primitive_type] = ACTIONS(2492), - [anon_sym_enum] = ACTIONS(2492), - [anon_sym_class] = ACTIONS(2492), - [anon_sym_struct] = ACTIONS(2492), - [anon_sym_union] = ACTIONS(2492), - [anon_sym_if] = ACTIONS(2492), - [anon_sym_else] = ACTIONS(2492), - [anon_sym_switch] = ACTIONS(2492), - [anon_sym_case] = ACTIONS(2492), - [anon_sym_default] = ACTIONS(2492), - [anon_sym_while] = ACTIONS(2492), - [anon_sym_do] = ACTIONS(2492), - [anon_sym_for] = ACTIONS(2492), - [anon_sym_return] = ACTIONS(2492), - [anon_sym_break] = ACTIONS(2492), - [anon_sym_continue] = ACTIONS(2492), - [anon_sym_goto] = ACTIONS(2492), - [anon_sym_not] = ACTIONS(2492), - [anon_sym_compl] = ACTIONS(2492), - [anon_sym_DASH_DASH] = ACTIONS(2494), - [anon_sym_PLUS_PLUS] = ACTIONS(2494), - [anon_sym_sizeof] = ACTIONS(2492), - [sym_number_literal] = ACTIONS(2494), - [anon_sym_L_SQUOTE] = ACTIONS(2494), - [anon_sym_u_SQUOTE] = ACTIONS(2494), - [anon_sym_U_SQUOTE] = ACTIONS(2494), - [anon_sym_u8_SQUOTE] = ACTIONS(2494), - [anon_sym_SQUOTE] = ACTIONS(2494), - [anon_sym_L_DQUOTE] = ACTIONS(2494), - [anon_sym_u_DQUOTE] = ACTIONS(2494), - [anon_sym_U_DQUOTE] = ACTIONS(2494), - [anon_sym_u8_DQUOTE] = ACTIONS(2494), - [anon_sym_DQUOTE] = ACTIONS(2494), - [sym_true] = ACTIONS(2492), - [sym_false] = ACTIONS(2492), - [sym_null] = ACTIONS(2492), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2492), - [anon_sym_decltype] = ACTIONS(2492), - [anon_sym_virtual] = ACTIONS(2492), - [anon_sym_explicit] = ACTIONS(2492), - [anon_sym_typename] = ACTIONS(2492), - [anon_sym_template] = ACTIONS(2492), - [anon_sym_operator] = ACTIONS(2492), - [anon_sym_try] = ACTIONS(2492), - [anon_sym_delete] = ACTIONS(2492), - [anon_sym_throw] = ACTIONS(2492), - [anon_sym_namespace] = ACTIONS(2492), - [anon_sym_using] = ACTIONS(2492), - [anon_sym_static_assert] = ACTIONS(2492), - [anon_sym_concept] = ACTIONS(2492), - [anon_sym_co_return] = ACTIONS(2492), - [anon_sym_co_yield] = ACTIONS(2492), - [anon_sym_R_DQUOTE] = ACTIONS(2494), - [anon_sym_LR_DQUOTE] = ACTIONS(2494), - [anon_sym_uR_DQUOTE] = ACTIONS(2494), - [anon_sym_UR_DQUOTE] = ACTIONS(2494), - [anon_sym_u8R_DQUOTE] = ACTIONS(2494), - [anon_sym_co_await] = ACTIONS(2492), - [anon_sym_new] = ACTIONS(2492), - [anon_sym_requires] = ACTIONS(2492), - [sym_this] = ACTIONS(2492), - [sym_nullptr] = ACTIONS(2492), + [sym_identifier] = ACTIONS(3121), + [aux_sym_preproc_include_token1] = ACTIONS(3121), + [aux_sym_preproc_def_token1] = ACTIONS(3121), + [aux_sym_preproc_if_token1] = ACTIONS(3121), + [aux_sym_preproc_if_token2] = ACTIONS(3121), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3121), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3121), + [aux_sym_preproc_else_token1] = ACTIONS(3121), + [aux_sym_preproc_elif_token1] = ACTIONS(3121), + [sym_preproc_directive] = ACTIONS(3121), + [anon_sym_LPAREN2] = ACTIONS(3123), + [anon_sym_BANG] = ACTIONS(3123), + [anon_sym_TILDE] = ACTIONS(3123), + [anon_sym_DASH] = ACTIONS(3121), + [anon_sym_PLUS] = ACTIONS(3121), + [anon_sym_STAR] = ACTIONS(3123), + [anon_sym_AMP_AMP] = ACTIONS(3123), + [anon_sym_AMP] = ACTIONS(3121), + [anon_sym_SEMI] = ACTIONS(3123), + [anon_sym_typedef] = ACTIONS(3121), + [anon_sym_extern] = ACTIONS(3121), + [anon_sym___attribute__] = ACTIONS(3121), + [anon_sym_COLON_COLON] = ACTIONS(3123), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3123), + [anon_sym___declspec] = ACTIONS(3121), + [anon_sym___based] = ACTIONS(3121), + [anon_sym___cdecl] = ACTIONS(3121), + [anon_sym___clrcall] = ACTIONS(3121), + [anon_sym___stdcall] = ACTIONS(3121), + [anon_sym___fastcall] = ACTIONS(3121), + [anon_sym___thiscall] = ACTIONS(3121), + [anon_sym___vectorcall] = ACTIONS(3121), + [anon_sym_LBRACE] = ACTIONS(3123), + [anon_sym_LBRACK] = ACTIONS(3121), + [anon_sym_static] = ACTIONS(3121), + [anon_sym_register] = ACTIONS(3121), + [anon_sym_inline] = ACTIONS(3121), + [anon_sym_thread_local] = ACTIONS(3121), + [anon_sym_const] = ACTIONS(3121), + [anon_sym_constexpr] = ACTIONS(3121), + [anon_sym_volatile] = ACTIONS(3121), + [anon_sym_restrict] = ACTIONS(3121), + [anon_sym___restrict__] = ACTIONS(3121), + [anon_sym__Atomic] = ACTIONS(3121), + [anon_sym__Noreturn] = ACTIONS(3121), + [anon_sym_noreturn] = ACTIONS(3121), + [anon_sym_mutable] = ACTIONS(3121), + [anon_sym_constinit] = ACTIONS(3121), + [anon_sym_consteval] = ACTIONS(3121), + [anon_sym_signed] = ACTIONS(3121), + [anon_sym_unsigned] = ACTIONS(3121), + [anon_sym_long] = ACTIONS(3121), + [anon_sym_short] = ACTIONS(3121), + [sym_primitive_type] = ACTIONS(3121), + [anon_sym_enum] = ACTIONS(3121), + [anon_sym_class] = ACTIONS(3121), + [anon_sym_struct] = ACTIONS(3121), + [anon_sym_union] = ACTIONS(3121), + [anon_sym_if] = ACTIONS(3121), + [anon_sym_switch] = ACTIONS(3121), + [anon_sym_case] = ACTIONS(3121), + [anon_sym_default] = ACTIONS(3121), + [anon_sym_while] = ACTIONS(3121), + [anon_sym_do] = ACTIONS(3121), + [anon_sym_for] = ACTIONS(3121), + [anon_sym_return] = ACTIONS(3121), + [anon_sym_break] = ACTIONS(3121), + [anon_sym_continue] = ACTIONS(3121), + [anon_sym_goto] = ACTIONS(3121), + [anon_sym_not] = ACTIONS(3121), + [anon_sym_compl] = ACTIONS(3121), + [anon_sym_DASH_DASH] = ACTIONS(3123), + [anon_sym_PLUS_PLUS] = ACTIONS(3123), + [anon_sym_sizeof] = ACTIONS(3121), + [anon_sym_offsetof] = ACTIONS(3121), + [anon_sym__Generic] = ACTIONS(3121), + [anon_sym_asm] = ACTIONS(3121), + [anon_sym___asm__] = ACTIONS(3121), + [sym_number_literal] = ACTIONS(3123), + [anon_sym_L_SQUOTE] = ACTIONS(3123), + [anon_sym_u_SQUOTE] = ACTIONS(3123), + [anon_sym_U_SQUOTE] = ACTIONS(3123), + [anon_sym_u8_SQUOTE] = ACTIONS(3123), + [anon_sym_SQUOTE] = ACTIONS(3123), + [anon_sym_L_DQUOTE] = ACTIONS(3123), + [anon_sym_u_DQUOTE] = ACTIONS(3123), + [anon_sym_U_DQUOTE] = ACTIONS(3123), + [anon_sym_u8_DQUOTE] = ACTIONS(3123), + [anon_sym_DQUOTE] = ACTIONS(3123), + [sym_true] = ACTIONS(3121), + [sym_false] = ACTIONS(3121), + [anon_sym_NULL] = ACTIONS(3121), + [anon_sym_nullptr] = ACTIONS(3121), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3121), + [anon_sym_decltype] = ACTIONS(3121), + [anon_sym_virtual] = ACTIONS(3121), + [anon_sym_explicit] = ACTIONS(3121), + [anon_sym_typename] = ACTIONS(3121), + [anon_sym_template] = ACTIONS(3121), + [anon_sym_operator] = ACTIONS(3121), + [anon_sym_try] = ACTIONS(3121), + [anon_sym_delete] = ACTIONS(3121), + [anon_sym_throw] = ACTIONS(3121), + [anon_sym_namespace] = ACTIONS(3121), + [anon_sym_using] = ACTIONS(3121), + [anon_sym_static_assert] = ACTIONS(3121), + [anon_sym_concept] = ACTIONS(3121), + [anon_sym_co_return] = ACTIONS(3121), + [anon_sym_co_yield] = ACTIONS(3121), + [anon_sym_R_DQUOTE] = ACTIONS(3123), + [anon_sym_LR_DQUOTE] = ACTIONS(3123), + [anon_sym_uR_DQUOTE] = ACTIONS(3123), + [anon_sym_UR_DQUOTE] = ACTIONS(3123), + [anon_sym_u8R_DQUOTE] = ACTIONS(3123), + [anon_sym_co_await] = ACTIONS(3121), + [anon_sym_new] = ACTIONS(3121), + [anon_sym_requires] = ACTIONS(3121), + [sym_this] = ACTIONS(3121), }, [780] = { - [sym_identifier] = ACTIONS(2540), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2542), - [anon_sym_AMP] = ACTIONS(2540), - [anon_sym_SEMI] = ACTIONS(2542), - [anon_sym_typedef] = ACTIONS(2540), - [anon_sym_extern] = ACTIONS(2540), - [anon_sym___attribute__] = ACTIONS(2540), - [anon_sym_COLON_COLON] = ACTIONS(2542), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2542), - [anon_sym___declspec] = ACTIONS(2540), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2540), - [anon_sym_static] = ACTIONS(2540), - [anon_sym_register] = ACTIONS(2540), - [anon_sym_inline] = ACTIONS(2540), - [anon_sym_thread_local] = ACTIONS(2540), - [anon_sym_const] = ACTIONS(2540), - [anon_sym_volatile] = ACTIONS(2540), - [anon_sym_restrict] = ACTIONS(2540), - [anon_sym__Atomic] = ACTIONS(2540), - [anon_sym_mutable] = ACTIONS(2540), - [anon_sym_constexpr] = ACTIONS(2540), - [anon_sym_constinit] = ACTIONS(2540), - [anon_sym_consteval] = ACTIONS(2540), - [anon_sym_signed] = ACTIONS(2540), - [anon_sym_unsigned] = ACTIONS(2540), - [anon_sym_long] = ACTIONS(2540), - [anon_sym_short] = ACTIONS(2540), - [sym_primitive_type] = ACTIONS(2540), - [anon_sym_enum] = ACTIONS(2540), - [anon_sym_class] = 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_return] = ACTIONS(2540), - [anon_sym_break] = ACTIONS(2540), - [anon_sym_continue] = ACTIONS(2540), - [anon_sym_goto] = ACTIONS(2540), - [anon_sym_not] = ACTIONS(2540), - [anon_sym_compl] = ACTIONS(2540), - [anon_sym_DASH_DASH] = ACTIONS(2542), - [anon_sym_PLUS_PLUS] = ACTIONS(2542), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2542), - [anon_sym_u_DQUOTE] = ACTIONS(2542), - [anon_sym_U_DQUOTE] = ACTIONS(2542), - [anon_sym_u8_DQUOTE] = ACTIONS(2542), - [anon_sym_DQUOTE] = ACTIONS(2542), - [sym_true] = ACTIONS(2540), - [sym_false] = ACTIONS(2540), - [sym_null] = ACTIONS(2540), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2540), - [anon_sym_decltype] = ACTIONS(2540), - [anon_sym_virtual] = ACTIONS(2540), - [anon_sym_explicit] = ACTIONS(2540), - [anon_sym_typename] = ACTIONS(2540), - [anon_sym_template] = ACTIONS(2540), - [anon_sym_operator] = ACTIONS(2540), - [anon_sym_try] = ACTIONS(2540), - [anon_sym_delete] = ACTIONS(2540), - [anon_sym_throw] = ACTIONS(2540), - [anon_sym_namespace] = ACTIONS(2540), - [anon_sym_using] = ACTIONS(2540), - [anon_sym_static_assert] = ACTIONS(2540), - [anon_sym_concept] = ACTIONS(2540), - [anon_sym_co_return] = ACTIONS(2540), - [anon_sym_co_yield] = ACTIONS(2540), - [anon_sym_R_DQUOTE] = ACTIONS(2542), - [anon_sym_LR_DQUOTE] = ACTIONS(2542), - [anon_sym_uR_DQUOTE] = ACTIONS(2542), - [anon_sym_UR_DQUOTE] = ACTIONS(2542), - [anon_sym_u8R_DQUOTE] = ACTIONS(2542), - [anon_sym_co_await] = ACTIONS(2540), - [anon_sym_new] = ACTIONS(2540), - [anon_sym_requires] = ACTIONS(2540), - [sym_this] = ACTIONS(2540), - [sym_nullptr] = ACTIONS(2540), + [sym_identifier] = ACTIONS(3419), + [aux_sym_preproc_include_token1] = ACTIONS(3419), + [aux_sym_preproc_def_token1] = ACTIONS(3419), + [aux_sym_preproc_if_token1] = ACTIONS(3419), + [aux_sym_preproc_if_token2] = ACTIONS(3419), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3419), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3419), + [aux_sym_preproc_else_token1] = ACTIONS(3419), + [aux_sym_preproc_elif_token1] = ACTIONS(3419), + [sym_preproc_directive] = ACTIONS(3419), + [anon_sym_LPAREN2] = ACTIONS(3421), + [anon_sym_BANG] = ACTIONS(3421), + [anon_sym_TILDE] = ACTIONS(3421), + [anon_sym_DASH] = ACTIONS(3419), + [anon_sym_PLUS] = ACTIONS(3419), + [anon_sym_STAR] = ACTIONS(3421), + [anon_sym_AMP_AMP] = ACTIONS(3421), + [anon_sym_AMP] = ACTIONS(3419), + [anon_sym_SEMI] = ACTIONS(3421), + [anon_sym_typedef] = ACTIONS(3419), + [anon_sym_extern] = ACTIONS(3419), + [anon_sym___attribute__] = ACTIONS(3419), + [anon_sym_COLON_COLON] = ACTIONS(3421), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3421), + [anon_sym___declspec] = ACTIONS(3419), + [anon_sym___based] = ACTIONS(3419), + [anon_sym___cdecl] = ACTIONS(3419), + [anon_sym___clrcall] = ACTIONS(3419), + [anon_sym___stdcall] = ACTIONS(3419), + [anon_sym___fastcall] = ACTIONS(3419), + [anon_sym___thiscall] = ACTIONS(3419), + [anon_sym___vectorcall] = ACTIONS(3419), + [anon_sym_LBRACE] = ACTIONS(3421), + [anon_sym_LBRACK] = ACTIONS(3419), + [anon_sym_static] = ACTIONS(3419), + [anon_sym_register] = ACTIONS(3419), + [anon_sym_inline] = ACTIONS(3419), + [anon_sym_thread_local] = ACTIONS(3419), + [anon_sym_const] = ACTIONS(3419), + [anon_sym_constexpr] = ACTIONS(3419), + [anon_sym_volatile] = ACTIONS(3419), + [anon_sym_restrict] = ACTIONS(3419), + [anon_sym___restrict__] = ACTIONS(3419), + [anon_sym__Atomic] = ACTIONS(3419), + [anon_sym__Noreturn] = ACTIONS(3419), + [anon_sym_noreturn] = ACTIONS(3419), + [anon_sym_mutable] = ACTIONS(3419), + [anon_sym_constinit] = ACTIONS(3419), + [anon_sym_consteval] = ACTIONS(3419), + [anon_sym_signed] = ACTIONS(3419), + [anon_sym_unsigned] = ACTIONS(3419), + [anon_sym_long] = ACTIONS(3419), + [anon_sym_short] = ACTIONS(3419), + [sym_primitive_type] = ACTIONS(3419), + [anon_sym_enum] = ACTIONS(3419), + [anon_sym_class] = ACTIONS(3419), + [anon_sym_struct] = ACTIONS(3419), + [anon_sym_union] = ACTIONS(3419), + [anon_sym_if] = ACTIONS(3419), + [anon_sym_switch] = ACTIONS(3419), + [anon_sym_case] = ACTIONS(3419), + [anon_sym_default] = ACTIONS(3419), + [anon_sym_while] = ACTIONS(3419), + [anon_sym_do] = ACTIONS(3419), + [anon_sym_for] = ACTIONS(3419), + [anon_sym_return] = ACTIONS(3419), + [anon_sym_break] = ACTIONS(3419), + [anon_sym_continue] = ACTIONS(3419), + [anon_sym_goto] = ACTIONS(3419), + [anon_sym_not] = ACTIONS(3419), + [anon_sym_compl] = ACTIONS(3419), + [anon_sym_DASH_DASH] = ACTIONS(3421), + [anon_sym_PLUS_PLUS] = ACTIONS(3421), + [anon_sym_sizeof] = ACTIONS(3419), + [anon_sym_offsetof] = ACTIONS(3419), + [anon_sym__Generic] = ACTIONS(3419), + [anon_sym_asm] = ACTIONS(3419), + [anon_sym___asm__] = ACTIONS(3419), + [sym_number_literal] = ACTIONS(3421), + [anon_sym_L_SQUOTE] = ACTIONS(3421), + [anon_sym_u_SQUOTE] = ACTIONS(3421), + [anon_sym_U_SQUOTE] = ACTIONS(3421), + [anon_sym_u8_SQUOTE] = ACTIONS(3421), + [anon_sym_SQUOTE] = ACTIONS(3421), + [anon_sym_L_DQUOTE] = ACTIONS(3421), + [anon_sym_u_DQUOTE] = ACTIONS(3421), + [anon_sym_U_DQUOTE] = ACTIONS(3421), + [anon_sym_u8_DQUOTE] = ACTIONS(3421), + [anon_sym_DQUOTE] = ACTIONS(3421), + [sym_true] = ACTIONS(3419), + [sym_false] = ACTIONS(3419), + [anon_sym_NULL] = ACTIONS(3419), + [anon_sym_nullptr] = ACTIONS(3419), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3419), + [anon_sym_decltype] = ACTIONS(3419), + [anon_sym_virtual] = ACTIONS(3419), + [anon_sym_explicit] = ACTIONS(3419), + [anon_sym_typename] = ACTIONS(3419), + [anon_sym_template] = ACTIONS(3419), + [anon_sym_operator] = ACTIONS(3419), + [anon_sym_try] = ACTIONS(3419), + [anon_sym_delete] = ACTIONS(3419), + [anon_sym_throw] = ACTIONS(3419), + [anon_sym_namespace] = ACTIONS(3419), + [anon_sym_using] = ACTIONS(3419), + [anon_sym_static_assert] = ACTIONS(3419), + [anon_sym_concept] = ACTIONS(3419), + [anon_sym_co_return] = ACTIONS(3419), + [anon_sym_co_yield] = ACTIONS(3419), + [anon_sym_R_DQUOTE] = ACTIONS(3421), + [anon_sym_LR_DQUOTE] = ACTIONS(3421), + [anon_sym_uR_DQUOTE] = ACTIONS(3421), + [anon_sym_UR_DQUOTE] = ACTIONS(3421), + [anon_sym_u8R_DQUOTE] = ACTIONS(3421), + [anon_sym_co_await] = ACTIONS(3419), + [anon_sym_new] = ACTIONS(3419), + [anon_sym_requires] = ACTIONS(3419), + [sym_this] = ACTIONS(3419), }, [781] = { + [sym_identifier] = ACTIONS(3117), + [aux_sym_preproc_include_token1] = ACTIONS(3117), + [aux_sym_preproc_def_token1] = ACTIONS(3117), + [aux_sym_preproc_if_token1] = ACTIONS(3117), + [aux_sym_preproc_if_token2] = ACTIONS(3117), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3117), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3117), + [aux_sym_preproc_else_token1] = ACTIONS(3117), + [aux_sym_preproc_elif_token1] = ACTIONS(3117), + [sym_preproc_directive] = ACTIONS(3117), + [anon_sym_LPAREN2] = ACTIONS(3119), + [anon_sym_BANG] = ACTIONS(3119), + [anon_sym_TILDE] = ACTIONS(3119), + [anon_sym_DASH] = ACTIONS(3117), + [anon_sym_PLUS] = ACTIONS(3117), + [anon_sym_STAR] = ACTIONS(3119), + [anon_sym_AMP_AMP] = ACTIONS(3119), + [anon_sym_AMP] = ACTIONS(3117), + [anon_sym_SEMI] = ACTIONS(3119), + [anon_sym_typedef] = ACTIONS(3117), + [anon_sym_extern] = ACTIONS(3117), + [anon_sym___attribute__] = ACTIONS(3117), + [anon_sym_COLON_COLON] = ACTIONS(3119), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3119), + [anon_sym___declspec] = ACTIONS(3117), + [anon_sym___based] = ACTIONS(3117), + [anon_sym___cdecl] = ACTIONS(3117), + [anon_sym___clrcall] = ACTIONS(3117), + [anon_sym___stdcall] = ACTIONS(3117), + [anon_sym___fastcall] = ACTIONS(3117), + [anon_sym___thiscall] = ACTIONS(3117), + [anon_sym___vectorcall] = ACTIONS(3117), + [anon_sym_LBRACE] = ACTIONS(3119), + [anon_sym_LBRACK] = ACTIONS(3117), + [anon_sym_static] = ACTIONS(3117), + [anon_sym_register] = ACTIONS(3117), + [anon_sym_inline] = ACTIONS(3117), + [anon_sym_thread_local] = ACTIONS(3117), + [anon_sym_const] = ACTIONS(3117), + [anon_sym_constexpr] = ACTIONS(3117), + [anon_sym_volatile] = ACTIONS(3117), + [anon_sym_restrict] = ACTIONS(3117), + [anon_sym___restrict__] = ACTIONS(3117), + [anon_sym__Atomic] = ACTIONS(3117), + [anon_sym__Noreturn] = ACTIONS(3117), + [anon_sym_noreturn] = ACTIONS(3117), + [anon_sym_mutable] = ACTIONS(3117), + [anon_sym_constinit] = ACTIONS(3117), + [anon_sym_consteval] = ACTIONS(3117), + [anon_sym_signed] = ACTIONS(3117), + [anon_sym_unsigned] = ACTIONS(3117), + [anon_sym_long] = ACTIONS(3117), + [anon_sym_short] = ACTIONS(3117), + [sym_primitive_type] = ACTIONS(3117), + [anon_sym_enum] = ACTIONS(3117), + [anon_sym_class] = ACTIONS(3117), + [anon_sym_struct] = ACTIONS(3117), + [anon_sym_union] = ACTIONS(3117), + [anon_sym_if] = ACTIONS(3117), + [anon_sym_switch] = ACTIONS(3117), + [anon_sym_case] = ACTIONS(3117), + [anon_sym_default] = ACTIONS(3117), + [anon_sym_while] = ACTIONS(3117), + [anon_sym_do] = ACTIONS(3117), + [anon_sym_for] = ACTIONS(3117), + [anon_sym_return] = ACTIONS(3117), + [anon_sym_break] = ACTIONS(3117), + [anon_sym_continue] = ACTIONS(3117), + [anon_sym_goto] = ACTIONS(3117), + [anon_sym_not] = ACTIONS(3117), + [anon_sym_compl] = ACTIONS(3117), + [anon_sym_DASH_DASH] = ACTIONS(3119), + [anon_sym_PLUS_PLUS] = ACTIONS(3119), + [anon_sym_sizeof] = ACTIONS(3117), + [anon_sym_offsetof] = ACTIONS(3117), + [anon_sym__Generic] = ACTIONS(3117), + [anon_sym_asm] = ACTIONS(3117), + [anon_sym___asm__] = ACTIONS(3117), + [sym_number_literal] = ACTIONS(3119), + [anon_sym_L_SQUOTE] = ACTIONS(3119), + [anon_sym_u_SQUOTE] = ACTIONS(3119), + [anon_sym_U_SQUOTE] = ACTIONS(3119), + [anon_sym_u8_SQUOTE] = ACTIONS(3119), + [anon_sym_SQUOTE] = ACTIONS(3119), + [anon_sym_L_DQUOTE] = ACTIONS(3119), + [anon_sym_u_DQUOTE] = ACTIONS(3119), + [anon_sym_U_DQUOTE] = ACTIONS(3119), + [anon_sym_u8_DQUOTE] = ACTIONS(3119), + [anon_sym_DQUOTE] = ACTIONS(3119), + [sym_true] = ACTIONS(3117), + [sym_false] = ACTIONS(3117), + [anon_sym_NULL] = ACTIONS(3117), + [anon_sym_nullptr] = ACTIONS(3117), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3117), + [anon_sym_decltype] = ACTIONS(3117), + [anon_sym_virtual] = ACTIONS(3117), + [anon_sym_explicit] = ACTIONS(3117), + [anon_sym_typename] = ACTIONS(3117), + [anon_sym_template] = ACTIONS(3117), + [anon_sym_operator] = ACTIONS(3117), + [anon_sym_try] = ACTIONS(3117), + [anon_sym_delete] = ACTIONS(3117), + [anon_sym_throw] = ACTIONS(3117), + [anon_sym_namespace] = ACTIONS(3117), + [anon_sym_using] = ACTIONS(3117), + [anon_sym_static_assert] = ACTIONS(3117), + [anon_sym_concept] = ACTIONS(3117), + [anon_sym_co_return] = ACTIONS(3117), + [anon_sym_co_yield] = ACTIONS(3117), + [anon_sym_R_DQUOTE] = ACTIONS(3119), + [anon_sym_LR_DQUOTE] = ACTIONS(3119), + [anon_sym_uR_DQUOTE] = ACTIONS(3119), + [anon_sym_UR_DQUOTE] = ACTIONS(3119), + [anon_sym_u8R_DQUOTE] = ACTIONS(3119), + [anon_sym_co_await] = ACTIONS(3117), + [anon_sym_new] = ACTIONS(3117), + [anon_sym_requires] = ACTIONS(3117), + [sym_this] = ACTIONS(3117), + }, + [782] = { + [sym_identifier] = ACTIONS(3117), + [aux_sym_preproc_include_token1] = ACTIONS(3117), + [aux_sym_preproc_def_token1] = ACTIONS(3117), + [aux_sym_preproc_if_token1] = ACTIONS(3117), + [aux_sym_preproc_if_token2] = ACTIONS(3117), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3117), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3117), + [aux_sym_preproc_else_token1] = ACTIONS(3117), + [aux_sym_preproc_elif_token1] = ACTIONS(3117), + [sym_preproc_directive] = ACTIONS(3117), + [anon_sym_LPAREN2] = ACTIONS(3119), + [anon_sym_BANG] = ACTIONS(3119), + [anon_sym_TILDE] = ACTIONS(3119), + [anon_sym_DASH] = ACTIONS(3117), + [anon_sym_PLUS] = ACTIONS(3117), + [anon_sym_STAR] = ACTIONS(3119), + [anon_sym_AMP_AMP] = ACTIONS(3119), + [anon_sym_AMP] = ACTIONS(3117), + [anon_sym_SEMI] = ACTIONS(3119), + [anon_sym_typedef] = ACTIONS(3117), + [anon_sym_extern] = ACTIONS(3117), + [anon_sym___attribute__] = ACTIONS(3117), + [anon_sym_COLON_COLON] = ACTIONS(3119), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3119), + [anon_sym___declspec] = ACTIONS(3117), + [anon_sym___based] = ACTIONS(3117), + [anon_sym___cdecl] = ACTIONS(3117), + [anon_sym___clrcall] = ACTIONS(3117), + [anon_sym___stdcall] = ACTIONS(3117), + [anon_sym___fastcall] = ACTIONS(3117), + [anon_sym___thiscall] = ACTIONS(3117), + [anon_sym___vectorcall] = ACTIONS(3117), + [anon_sym_LBRACE] = ACTIONS(3119), + [anon_sym_LBRACK] = ACTIONS(3117), + [anon_sym_static] = ACTIONS(3117), + [anon_sym_register] = ACTIONS(3117), + [anon_sym_inline] = ACTIONS(3117), + [anon_sym_thread_local] = ACTIONS(3117), + [anon_sym_const] = ACTIONS(3117), + [anon_sym_constexpr] = ACTIONS(3117), + [anon_sym_volatile] = ACTIONS(3117), + [anon_sym_restrict] = ACTIONS(3117), + [anon_sym___restrict__] = ACTIONS(3117), + [anon_sym__Atomic] = ACTIONS(3117), + [anon_sym__Noreturn] = ACTIONS(3117), + [anon_sym_noreturn] = ACTIONS(3117), + [anon_sym_mutable] = ACTIONS(3117), + [anon_sym_constinit] = ACTIONS(3117), + [anon_sym_consteval] = ACTIONS(3117), + [anon_sym_signed] = ACTIONS(3117), + [anon_sym_unsigned] = ACTIONS(3117), + [anon_sym_long] = ACTIONS(3117), + [anon_sym_short] = ACTIONS(3117), + [sym_primitive_type] = ACTIONS(3117), + [anon_sym_enum] = ACTIONS(3117), + [anon_sym_class] = ACTIONS(3117), + [anon_sym_struct] = ACTIONS(3117), + [anon_sym_union] = ACTIONS(3117), + [anon_sym_if] = ACTIONS(3117), + [anon_sym_switch] = ACTIONS(3117), + [anon_sym_case] = ACTIONS(3117), + [anon_sym_default] = ACTIONS(3117), + [anon_sym_while] = ACTIONS(3117), + [anon_sym_do] = ACTIONS(3117), + [anon_sym_for] = ACTIONS(3117), + [anon_sym_return] = ACTIONS(3117), + [anon_sym_break] = ACTIONS(3117), + [anon_sym_continue] = ACTIONS(3117), + [anon_sym_goto] = ACTIONS(3117), + [anon_sym_not] = ACTIONS(3117), + [anon_sym_compl] = ACTIONS(3117), + [anon_sym_DASH_DASH] = ACTIONS(3119), + [anon_sym_PLUS_PLUS] = ACTIONS(3119), + [anon_sym_sizeof] = ACTIONS(3117), + [anon_sym_offsetof] = ACTIONS(3117), + [anon_sym__Generic] = ACTIONS(3117), + [anon_sym_asm] = ACTIONS(3117), + [anon_sym___asm__] = ACTIONS(3117), + [sym_number_literal] = ACTIONS(3119), + [anon_sym_L_SQUOTE] = ACTIONS(3119), + [anon_sym_u_SQUOTE] = ACTIONS(3119), + [anon_sym_U_SQUOTE] = ACTIONS(3119), + [anon_sym_u8_SQUOTE] = ACTIONS(3119), + [anon_sym_SQUOTE] = ACTIONS(3119), + [anon_sym_L_DQUOTE] = ACTIONS(3119), + [anon_sym_u_DQUOTE] = ACTIONS(3119), + [anon_sym_U_DQUOTE] = ACTIONS(3119), + [anon_sym_u8_DQUOTE] = ACTIONS(3119), + [anon_sym_DQUOTE] = ACTIONS(3119), + [sym_true] = ACTIONS(3117), + [sym_false] = ACTIONS(3117), + [anon_sym_NULL] = ACTIONS(3117), + [anon_sym_nullptr] = ACTIONS(3117), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3117), + [anon_sym_decltype] = ACTIONS(3117), + [anon_sym_virtual] = ACTIONS(3117), + [anon_sym_explicit] = ACTIONS(3117), + [anon_sym_typename] = ACTIONS(3117), + [anon_sym_template] = ACTIONS(3117), + [anon_sym_operator] = ACTIONS(3117), + [anon_sym_try] = ACTIONS(3117), + [anon_sym_delete] = ACTIONS(3117), + [anon_sym_throw] = ACTIONS(3117), + [anon_sym_namespace] = ACTIONS(3117), + [anon_sym_using] = ACTIONS(3117), + [anon_sym_static_assert] = ACTIONS(3117), + [anon_sym_concept] = ACTIONS(3117), + [anon_sym_co_return] = ACTIONS(3117), + [anon_sym_co_yield] = ACTIONS(3117), + [anon_sym_R_DQUOTE] = ACTIONS(3119), + [anon_sym_LR_DQUOTE] = ACTIONS(3119), + [anon_sym_uR_DQUOTE] = ACTIONS(3119), + [anon_sym_UR_DQUOTE] = ACTIONS(3119), + [anon_sym_u8R_DQUOTE] = ACTIONS(3119), + [anon_sym_co_await] = ACTIONS(3117), + [anon_sym_new] = ACTIONS(3117), + [anon_sym_requires] = ACTIONS(3117), + [sym_this] = ACTIONS(3117), + }, + [783] = { + [sym_identifier] = ACTIONS(3415), + [aux_sym_preproc_include_token1] = ACTIONS(3415), + [aux_sym_preproc_def_token1] = ACTIONS(3415), + [aux_sym_preproc_if_token1] = ACTIONS(3415), + [aux_sym_preproc_if_token2] = ACTIONS(3415), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3415), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3415), + [aux_sym_preproc_else_token1] = ACTIONS(3415), + [aux_sym_preproc_elif_token1] = ACTIONS(3415), + [sym_preproc_directive] = ACTIONS(3415), + [anon_sym_LPAREN2] = ACTIONS(3417), + [anon_sym_BANG] = ACTIONS(3417), + [anon_sym_TILDE] = ACTIONS(3417), + [anon_sym_DASH] = ACTIONS(3415), + [anon_sym_PLUS] = ACTIONS(3415), + [anon_sym_STAR] = ACTIONS(3417), + [anon_sym_AMP_AMP] = ACTIONS(3417), + [anon_sym_AMP] = ACTIONS(3415), + [anon_sym_SEMI] = ACTIONS(3417), + [anon_sym_typedef] = ACTIONS(3415), + [anon_sym_extern] = ACTIONS(3415), + [anon_sym___attribute__] = ACTIONS(3415), + [anon_sym_COLON_COLON] = ACTIONS(3417), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3417), + [anon_sym___declspec] = ACTIONS(3415), + [anon_sym___based] = ACTIONS(3415), + [anon_sym___cdecl] = ACTIONS(3415), + [anon_sym___clrcall] = ACTIONS(3415), + [anon_sym___stdcall] = ACTIONS(3415), + [anon_sym___fastcall] = ACTIONS(3415), + [anon_sym___thiscall] = ACTIONS(3415), + [anon_sym___vectorcall] = ACTIONS(3415), + [anon_sym_LBRACE] = ACTIONS(3417), + [anon_sym_LBRACK] = ACTIONS(3415), + [anon_sym_static] = ACTIONS(3415), + [anon_sym_register] = ACTIONS(3415), + [anon_sym_inline] = ACTIONS(3415), + [anon_sym_thread_local] = ACTIONS(3415), + [anon_sym_const] = ACTIONS(3415), + [anon_sym_constexpr] = ACTIONS(3415), + [anon_sym_volatile] = ACTIONS(3415), + [anon_sym_restrict] = ACTIONS(3415), + [anon_sym___restrict__] = ACTIONS(3415), + [anon_sym__Atomic] = ACTIONS(3415), + [anon_sym__Noreturn] = ACTIONS(3415), + [anon_sym_noreturn] = ACTIONS(3415), + [anon_sym_mutable] = ACTIONS(3415), + [anon_sym_constinit] = ACTIONS(3415), + [anon_sym_consteval] = ACTIONS(3415), + [anon_sym_signed] = ACTIONS(3415), + [anon_sym_unsigned] = ACTIONS(3415), + [anon_sym_long] = ACTIONS(3415), + [anon_sym_short] = ACTIONS(3415), + [sym_primitive_type] = ACTIONS(3415), + [anon_sym_enum] = ACTIONS(3415), + [anon_sym_class] = ACTIONS(3415), + [anon_sym_struct] = ACTIONS(3415), + [anon_sym_union] = ACTIONS(3415), + [anon_sym_if] = ACTIONS(3415), + [anon_sym_switch] = ACTIONS(3415), + [anon_sym_case] = ACTIONS(3415), + [anon_sym_default] = ACTIONS(3415), + [anon_sym_while] = ACTIONS(3415), + [anon_sym_do] = ACTIONS(3415), + [anon_sym_for] = ACTIONS(3415), + [anon_sym_return] = ACTIONS(3415), + [anon_sym_break] = ACTIONS(3415), + [anon_sym_continue] = ACTIONS(3415), + [anon_sym_goto] = ACTIONS(3415), + [anon_sym_not] = ACTIONS(3415), + [anon_sym_compl] = ACTIONS(3415), + [anon_sym_DASH_DASH] = ACTIONS(3417), + [anon_sym_PLUS_PLUS] = ACTIONS(3417), + [anon_sym_sizeof] = ACTIONS(3415), + [anon_sym_offsetof] = ACTIONS(3415), + [anon_sym__Generic] = ACTIONS(3415), + [anon_sym_asm] = ACTIONS(3415), + [anon_sym___asm__] = ACTIONS(3415), + [sym_number_literal] = ACTIONS(3417), + [anon_sym_L_SQUOTE] = ACTIONS(3417), + [anon_sym_u_SQUOTE] = ACTIONS(3417), + [anon_sym_U_SQUOTE] = ACTIONS(3417), + [anon_sym_u8_SQUOTE] = ACTIONS(3417), + [anon_sym_SQUOTE] = ACTIONS(3417), + [anon_sym_L_DQUOTE] = ACTIONS(3417), + [anon_sym_u_DQUOTE] = ACTIONS(3417), + [anon_sym_U_DQUOTE] = ACTIONS(3417), + [anon_sym_u8_DQUOTE] = ACTIONS(3417), + [anon_sym_DQUOTE] = ACTIONS(3417), + [sym_true] = ACTIONS(3415), + [sym_false] = ACTIONS(3415), + [anon_sym_NULL] = ACTIONS(3415), + [anon_sym_nullptr] = ACTIONS(3415), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3415), + [anon_sym_decltype] = ACTIONS(3415), + [anon_sym_virtual] = ACTIONS(3415), + [anon_sym_explicit] = ACTIONS(3415), + [anon_sym_typename] = ACTIONS(3415), + [anon_sym_template] = ACTIONS(3415), + [anon_sym_operator] = ACTIONS(3415), + [anon_sym_try] = ACTIONS(3415), + [anon_sym_delete] = ACTIONS(3415), + [anon_sym_throw] = ACTIONS(3415), + [anon_sym_namespace] = ACTIONS(3415), + [anon_sym_using] = ACTIONS(3415), + [anon_sym_static_assert] = ACTIONS(3415), + [anon_sym_concept] = ACTIONS(3415), + [anon_sym_co_return] = ACTIONS(3415), + [anon_sym_co_yield] = ACTIONS(3415), + [anon_sym_R_DQUOTE] = ACTIONS(3417), + [anon_sym_LR_DQUOTE] = ACTIONS(3417), + [anon_sym_uR_DQUOTE] = ACTIONS(3417), + [anon_sym_UR_DQUOTE] = ACTIONS(3417), + [anon_sym_u8R_DQUOTE] = ACTIONS(3417), + [anon_sym_co_await] = ACTIONS(3415), + [anon_sym_new] = ACTIONS(3415), + [anon_sym_requires] = ACTIONS(3415), + [sym_this] = ACTIONS(3415), + }, + [784] = { + [sym_identifier] = ACTIONS(3230), + [aux_sym_preproc_include_token1] = ACTIONS(3230), + [aux_sym_preproc_def_token1] = ACTIONS(3230), + [aux_sym_preproc_if_token1] = ACTIONS(3230), + [aux_sym_preproc_if_token2] = ACTIONS(3230), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3230), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3230), + [aux_sym_preproc_else_token1] = ACTIONS(3230), + [aux_sym_preproc_elif_token1] = ACTIONS(3230), + [sym_preproc_directive] = ACTIONS(3230), + [anon_sym_LPAREN2] = ACTIONS(3232), + [anon_sym_BANG] = ACTIONS(3232), + [anon_sym_TILDE] = ACTIONS(3232), + [anon_sym_DASH] = ACTIONS(3230), + [anon_sym_PLUS] = ACTIONS(3230), + [anon_sym_STAR] = ACTIONS(3232), + [anon_sym_AMP_AMP] = ACTIONS(3232), + [anon_sym_AMP] = ACTIONS(3230), + [anon_sym_SEMI] = ACTIONS(3232), + [anon_sym_typedef] = ACTIONS(3230), + [anon_sym_extern] = ACTIONS(3230), + [anon_sym___attribute__] = ACTIONS(3230), + [anon_sym_COLON_COLON] = ACTIONS(3232), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3232), + [anon_sym___declspec] = ACTIONS(3230), + [anon_sym___based] = ACTIONS(3230), + [anon_sym___cdecl] = ACTIONS(3230), + [anon_sym___clrcall] = ACTIONS(3230), + [anon_sym___stdcall] = ACTIONS(3230), + [anon_sym___fastcall] = ACTIONS(3230), + [anon_sym___thiscall] = ACTIONS(3230), + [anon_sym___vectorcall] = ACTIONS(3230), + [anon_sym_LBRACE] = ACTIONS(3232), + [anon_sym_LBRACK] = ACTIONS(3230), + [anon_sym_static] = ACTIONS(3230), + [anon_sym_register] = ACTIONS(3230), + [anon_sym_inline] = ACTIONS(3230), + [anon_sym_thread_local] = ACTIONS(3230), + [anon_sym_const] = ACTIONS(3230), + [anon_sym_constexpr] = ACTIONS(3230), + [anon_sym_volatile] = ACTIONS(3230), + [anon_sym_restrict] = ACTIONS(3230), + [anon_sym___restrict__] = ACTIONS(3230), + [anon_sym__Atomic] = ACTIONS(3230), + [anon_sym__Noreturn] = ACTIONS(3230), + [anon_sym_noreturn] = ACTIONS(3230), + [anon_sym_mutable] = ACTIONS(3230), + [anon_sym_constinit] = ACTIONS(3230), + [anon_sym_consteval] = ACTIONS(3230), + [anon_sym_signed] = ACTIONS(3230), + [anon_sym_unsigned] = ACTIONS(3230), + [anon_sym_long] = ACTIONS(3230), + [anon_sym_short] = ACTIONS(3230), + [sym_primitive_type] = ACTIONS(3230), + [anon_sym_enum] = ACTIONS(3230), + [anon_sym_class] = ACTIONS(3230), + [anon_sym_struct] = ACTIONS(3230), + [anon_sym_union] = ACTIONS(3230), + [anon_sym_if] = ACTIONS(3230), + [anon_sym_switch] = ACTIONS(3230), + [anon_sym_case] = ACTIONS(3230), + [anon_sym_default] = ACTIONS(3230), + [anon_sym_while] = ACTIONS(3230), + [anon_sym_do] = ACTIONS(3230), + [anon_sym_for] = ACTIONS(3230), + [anon_sym_return] = ACTIONS(3230), + [anon_sym_break] = ACTIONS(3230), + [anon_sym_continue] = ACTIONS(3230), + [anon_sym_goto] = ACTIONS(3230), + [anon_sym_not] = ACTIONS(3230), + [anon_sym_compl] = ACTIONS(3230), + [anon_sym_DASH_DASH] = ACTIONS(3232), + [anon_sym_PLUS_PLUS] = ACTIONS(3232), + [anon_sym_sizeof] = ACTIONS(3230), + [anon_sym_offsetof] = ACTIONS(3230), + [anon_sym__Generic] = ACTIONS(3230), + [anon_sym_asm] = ACTIONS(3230), + [anon_sym___asm__] = ACTIONS(3230), + [sym_number_literal] = ACTIONS(3232), + [anon_sym_L_SQUOTE] = ACTIONS(3232), + [anon_sym_u_SQUOTE] = ACTIONS(3232), + [anon_sym_U_SQUOTE] = ACTIONS(3232), + [anon_sym_u8_SQUOTE] = ACTIONS(3232), + [anon_sym_SQUOTE] = ACTIONS(3232), + [anon_sym_L_DQUOTE] = ACTIONS(3232), + [anon_sym_u_DQUOTE] = ACTIONS(3232), + [anon_sym_U_DQUOTE] = ACTIONS(3232), + [anon_sym_u8_DQUOTE] = ACTIONS(3232), + [anon_sym_DQUOTE] = ACTIONS(3232), + [sym_true] = ACTIONS(3230), + [sym_false] = ACTIONS(3230), + [anon_sym_NULL] = ACTIONS(3230), + [anon_sym_nullptr] = ACTIONS(3230), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3230), + [anon_sym_decltype] = ACTIONS(3230), + [anon_sym_virtual] = ACTIONS(3230), + [anon_sym_explicit] = ACTIONS(3230), + [anon_sym_typename] = ACTIONS(3230), + [anon_sym_template] = ACTIONS(3230), + [anon_sym_operator] = ACTIONS(3230), + [anon_sym_try] = ACTIONS(3230), + [anon_sym_delete] = ACTIONS(3230), + [anon_sym_throw] = ACTIONS(3230), + [anon_sym_namespace] = ACTIONS(3230), + [anon_sym_using] = ACTIONS(3230), + [anon_sym_static_assert] = ACTIONS(3230), + [anon_sym_concept] = ACTIONS(3230), + [anon_sym_co_return] = ACTIONS(3230), + [anon_sym_co_yield] = ACTIONS(3230), + [anon_sym_R_DQUOTE] = ACTIONS(3232), + [anon_sym_LR_DQUOTE] = ACTIONS(3232), + [anon_sym_uR_DQUOTE] = ACTIONS(3232), + [anon_sym_UR_DQUOTE] = ACTIONS(3232), + [anon_sym_u8R_DQUOTE] = ACTIONS(3232), + [anon_sym_co_await] = ACTIONS(3230), + [anon_sym_new] = ACTIONS(3230), + [anon_sym_requires] = ACTIONS(3230), + [sym_this] = ACTIONS(3230), + }, + [785] = { + [sym_identifier] = ACTIONS(2900), + [aux_sym_preproc_include_token1] = ACTIONS(2900), + [aux_sym_preproc_def_token1] = ACTIONS(2900), + [aux_sym_preproc_if_token1] = ACTIONS(2900), + [aux_sym_preproc_if_token2] = ACTIONS(2900), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2900), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2900), + [sym_preproc_directive] = ACTIONS(2900), + [anon_sym_LPAREN2] = ACTIONS(2902), + [anon_sym_BANG] = ACTIONS(2902), + [anon_sym_TILDE] = ACTIONS(2902), + [anon_sym_DASH] = ACTIONS(2900), + [anon_sym_PLUS] = ACTIONS(2900), + [anon_sym_STAR] = ACTIONS(2902), + [anon_sym_AMP_AMP] = ACTIONS(2902), + [anon_sym_AMP] = ACTIONS(2900), + [anon_sym_SEMI] = ACTIONS(2902), + [anon_sym_typedef] = ACTIONS(2900), + [anon_sym_extern] = ACTIONS(2900), + [anon_sym___attribute__] = ACTIONS(2900), + [anon_sym_COLON_COLON] = ACTIONS(2902), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2902), + [anon_sym___declspec] = ACTIONS(2900), + [anon_sym___based] = ACTIONS(2900), + [anon_sym___cdecl] = ACTIONS(2900), + [anon_sym___clrcall] = ACTIONS(2900), + [anon_sym___stdcall] = ACTIONS(2900), + [anon_sym___fastcall] = ACTIONS(2900), + [anon_sym___thiscall] = ACTIONS(2900), + [anon_sym___vectorcall] = ACTIONS(2900), + [anon_sym_LBRACE] = ACTIONS(2902), + [anon_sym_LBRACK] = ACTIONS(2900), + [anon_sym_static] = ACTIONS(2900), + [anon_sym_register] = ACTIONS(2900), + [anon_sym_inline] = ACTIONS(2900), + [anon_sym_thread_local] = ACTIONS(2900), + [anon_sym_const] = ACTIONS(2900), + [anon_sym_constexpr] = ACTIONS(2900), + [anon_sym_volatile] = ACTIONS(2900), + [anon_sym_restrict] = ACTIONS(2900), + [anon_sym___restrict__] = ACTIONS(2900), + [anon_sym__Atomic] = ACTIONS(2900), + [anon_sym__Noreturn] = ACTIONS(2900), + [anon_sym_noreturn] = ACTIONS(2900), + [anon_sym_mutable] = ACTIONS(2900), + [anon_sym_constinit] = ACTIONS(2900), + [anon_sym_consteval] = ACTIONS(2900), + [anon_sym_signed] = ACTIONS(2900), + [anon_sym_unsigned] = ACTIONS(2900), + [anon_sym_long] = ACTIONS(2900), + [anon_sym_short] = ACTIONS(2900), + [sym_primitive_type] = ACTIONS(2900), + [anon_sym_enum] = ACTIONS(2900), + [anon_sym_class] = ACTIONS(2900), + [anon_sym_struct] = ACTIONS(2900), + [anon_sym_union] = ACTIONS(2900), + [anon_sym_if] = ACTIONS(2900), + [anon_sym_else] = ACTIONS(2900), + [anon_sym_switch] = ACTIONS(2900), + [anon_sym_case] = ACTIONS(2900), + [anon_sym_default] = ACTIONS(2900), + [anon_sym_while] = ACTIONS(2900), + [anon_sym_do] = ACTIONS(2900), + [anon_sym_for] = ACTIONS(2900), + [anon_sym_return] = ACTIONS(2900), + [anon_sym_break] = ACTIONS(2900), + [anon_sym_continue] = ACTIONS(2900), + [anon_sym_goto] = ACTIONS(2900), + [anon_sym_not] = ACTIONS(2900), + [anon_sym_compl] = ACTIONS(2900), + [anon_sym_DASH_DASH] = ACTIONS(2902), + [anon_sym_PLUS_PLUS] = ACTIONS(2902), + [anon_sym_sizeof] = ACTIONS(2900), + [anon_sym_offsetof] = ACTIONS(2900), + [anon_sym__Generic] = ACTIONS(2900), + [anon_sym_asm] = ACTIONS(2900), + [anon_sym___asm__] = ACTIONS(2900), + [sym_number_literal] = ACTIONS(2902), + [anon_sym_L_SQUOTE] = ACTIONS(2902), + [anon_sym_u_SQUOTE] = ACTIONS(2902), + [anon_sym_U_SQUOTE] = ACTIONS(2902), + [anon_sym_u8_SQUOTE] = ACTIONS(2902), + [anon_sym_SQUOTE] = ACTIONS(2902), + [anon_sym_L_DQUOTE] = ACTIONS(2902), + [anon_sym_u_DQUOTE] = ACTIONS(2902), + [anon_sym_U_DQUOTE] = ACTIONS(2902), + [anon_sym_u8_DQUOTE] = ACTIONS(2902), + [anon_sym_DQUOTE] = ACTIONS(2902), + [sym_true] = ACTIONS(2900), + [sym_false] = ACTIONS(2900), + [anon_sym_NULL] = ACTIONS(2900), + [anon_sym_nullptr] = ACTIONS(2900), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2900), + [anon_sym_decltype] = ACTIONS(2900), + [anon_sym_virtual] = ACTIONS(2900), + [anon_sym_explicit] = ACTIONS(2900), + [anon_sym_typename] = ACTIONS(2900), + [anon_sym_template] = ACTIONS(2900), + [anon_sym_operator] = ACTIONS(2900), + [anon_sym_try] = ACTIONS(2900), + [anon_sym_delete] = ACTIONS(2900), + [anon_sym_throw] = ACTIONS(2900), + [anon_sym_namespace] = ACTIONS(2900), + [anon_sym_using] = ACTIONS(2900), + [anon_sym_static_assert] = ACTIONS(2900), + [anon_sym_concept] = ACTIONS(2900), + [anon_sym_co_return] = ACTIONS(2900), + [anon_sym_co_yield] = ACTIONS(2900), + [anon_sym_catch] = ACTIONS(2900), + [anon_sym_R_DQUOTE] = ACTIONS(2902), + [anon_sym_LR_DQUOTE] = ACTIONS(2902), + [anon_sym_uR_DQUOTE] = ACTIONS(2902), + [anon_sym_UR_DQUOTE] = ACTIONS(2902), + [anon_sym_u8R_DQUOTE] = ACTIONS(2902), + [anon_sym_co_await] = ACTIONS(2900), + [anon_sym_new] = ACTIONS(2900), + [anon_sym_requires] = ACTIONS(2900), + [sym_this] = ACTIONS(2900), + }, + [786] = { + [sym_identifier] = ACTIONS(3205), + [aux_sym_preproc_include_token1] = ACTIONS(3205), + [aux_sym_preproc_def_token1] = ACTIONS(3205), + [aux_sym_preproc_if_token1] = ACTIONS(3205), + [aux_sym_preproc_if_token2] = ACTIONS(3205), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3205), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3205), + [aux_sym_preproc_else_token1] = ACTIONS(3205), + [aux_sym_preproc_elif_token1] = ACTIONS(3205), + [sym_preproc_directive] = ACTIONS(3205), + [anon_sym_LPAREN2] = ACTIONS(3207), + [anon_sym_BANG] = ACTIONS(3207), + [anon_sym_TILDE] = ACTIONS(3207), + [anon_sym_DASH] = ACTIONS(3205), + [anon_sym_PLUS] = ACTIONS(3205), + [anon_sym_STAR] = ACTIONS(3207), + [anon_sym_AMP_AMP] = ACTIONS(3207), + [anon_sym_AMP] = ACTIONS(3205), + [anon_sym_SEMI] = ACTIONS(3207), + [anon_sym_typedef] = ACTIONS(3205), + [anon_sym_extern] = ACTIONS(3205), + [anon_sym___attribute__] = ACTIONS(3205), + [anon_sym_COLON_COLON] = ACTIONS(3207), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3207), + [anon_sym___declspec] = ACTIONS(3205), + [anon_sym___based] = ACTIONS(3205), + [anon_sym___cdecl] = ACTIONS(3205), + [anon_sym___clrcall] = ACTIONS(3205), + [anon_sym___stdcall] = ACTIONS(3205), + [anon_sym___fastcall] = ACTIONS(3205), + [anon_sym___thiscall] = ACTIONS(3205), + [anon_sym___vectorcall] = ACTIONS(3205), + [anon_sym_LBRACE] = ACTIONS(3207), + [anon_sym_LBRACK] = ACTIONS(3205), + [anon_sym_static] = ACTIONS(3205), + [anon_sym_register] = ACTIONS(3205), + [anon_sym_inline] = ACTIONS(3205), + [anon_sym_thread_local] = ACTIONS(3205), + [anon_sym_const] = ACTIONS(3205), + [anon_sym_constexpr] = ACTIONS(3205), + [anon_sym_volatile] = ACTIONS(3205), + [anon_sym_restrict] = ACTIONS(3205), + [anon_sym___restrict__] = ACTIONS(3205), + [anon_sym__Atomic] = ACTIONS(3205), + [anon_sym__Noreturn] = ACTIONS(3205), + [anon_sym_noreturn] = ACTIONS(3205), + [anon_sym_mutable] = ACTIONS(3205), + [anon_sym_constinit] = ACTIONS(3205), + [anon_sym_consteval] = ACTIONS(3205), + [anon_sym_signed] = ACTIONS(3205), + [anon_sym_unsigned] = ACTIONS(3205), + [anon_sym_long] = ACTIONS(3205), + [anon_sym_short] = ACTIONS(3205), + [sym_primitive_type] = ACTIONS(3205), + [anon_sym_enum] = ACTIONS(3205), + [anon_sym_class] = ACTIONS(3205), + [anon_sym_struct] = ACTIONS(3205), + [anon_sym_union] = ACTIONS(3205), + [anon_sym_if] = ACTIONS(3205), + [anon_sym_switch] = ACTIONS(3205), + [anon_sym_case] = ACTIONS(3205), + [anon_sym_default] = ACTIONS(3205), + [anon_sym_while] = ACTIONS(3205), + [anon_sym_do] = ACTIONS(3205), + [anon_sym_for] = ACTIONS(3205), + [anon_sym_return] = ACTIONS(3205), + [anon_sym_break] = ACTIONS(3205), + [anon_sym_continue] = ACTIONS(3205), + [anon_sym_goto] = ACTIONS(3205), + [anon_sym_not] = ACTIONS(3205), + [anon_sym_compl] = ACTIONS(3205), + [anon_sym_DASH_DASH] = ACTIONS(3207), + [anon_sym_PLUS_PLUS] = ACTIONS(3207), + [anon_sym_sizeof] = ACTIONS(3205), + [anon_sym_offsetof] = ACTIONS(3205), + [anon_sym__Generic] = ACTIONS(3205), + [anon_sym_asm] = ACTIONS(3205), + [anon_sym___asm__] = ACTIONS(3205), + [sym_number_literal] = ACTIONS(3207), + [anon_sym_L_SQUOTE] = ACTIONS(3207), + [anon_sym_u_SQUOTE] = ACTIONS(3207), + [anon_sym_U_SQUOTE] = ACTIONS(3207), + [anon_sym_u8_SQUOTE] = ACTIONS(3207), + [anon_sym_SQUOTE] = ACTIONS(3207), + [anon_sym_L_DQUOTE] = ACTIONS(3207), + [anon_sym_u_DQUOTE] = ACTIONS(3207), + [anon_sym_U_DQUOTE] = ACTIONS(3207), + [anon_sym_u8_DQUOTE] = ACTIONS(3207), + [anon_sym_DQUOTE] = ACTIONS(3207), + [sym_true] = ACTIONS(3205), + [sym_false] = ACTIONS(3205), + [anon_sym_NULL] = ACTIONS(3205), + [anon_sym_nullptr] = ACTIONS(3205), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3205), + [anon_sym_decltype] = ACTIONS(3205), + [anon_sym_virtual] = ACTIONS(3205), + [anon_sym_explicit] = ACTIONS(3205), + [anon_sym_typename] = ACTIONS(3205), + [anon_sym_template] = ACTIONS(3205), + [anon_sym_operator] = ACTIONS(3205), + [anon_sym_try] = ACTIONS(3205), + [anon_sym_delete] = ACTIONS(3205), + [anon_sym_throw] = ACTIONS(3205), + [anon_sym_namespace] = ACTIONS(3205), + [anon_sym_using] = ACTIONS(3205), + [anon_sym_static_assert] = ACTIONS(3205), + [anon_sym_concept] = ACTIONS(3205), + [anon_sym_co_return] = ACTIONS(3205), + [anon_sym_co_yield] = ACTIONS(3205), + [anon_sym_R_DQUOTE] = ACTIONS(3207), + [anon_sym_LR_DQUOTE] = ACTIONS(3207), + [anon_sym_uR_DQUOTE] = ACTIONS(3207), + [anon_sym_UR_DQUOTE] = ACTIONS(3207), + [anon_sym_u8R_DQUOTE] = ACTIONS(3207), + [anon_sym_co_await] = ACTIONS(3205), + [anon_sym_new] = ACTIONS(3205), + [anon_sym_requires] = ACTIONS(3205), + [sym_this] = ACTIONS(3205), + }, + [787] = { + [sym_identifier] = ACTIONS(3336), + [aux_sym_preproc_include_token1] = ACTIONS(3336), + [aux_sym_preproc_def_token1] = ACTIONS(3336), + [aux_sym_preproc_if_token1] = ACTIONS(3336), + [aux_sym_preproc_if_token2] = ACTIONS(3336), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3336), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3336), + [aux_sym_preproc_else_token1] = ACTIONS(3336), + [aux_sym_preproc_elif_token1] = ACTIONS(3336), + [sym_preproc_directive] = ACTIONS(3336), + [anon_sym_LPAREN2] = ACTIONS(3338), + [anon_sym_BANG] = ACTIONS(3338), + [anon_sym_TILDE] = ACTIONS(3338), + [anon_sym_DASH] = ACTIONS(3336), + [anon_sym_PLUS] = ACTIONS(3336), + [anon_sym_STAR] = ACTIONS(3338), + [anon_sym_AMP_AMP] = ACTIONS(3338), + [anon_sym_AMP] = ACTIONS(3336), + [anon_sym_SEMI] = ACTIONS(3338), + [anon_sym_typedef] = ACTIONS(3336), + [anon_sym_extern] = ACTIONS(3336), + [anon_sym___attribute__] = ACTIONS(3336), + [anon_sym_COLON_COLON] = ACTIONS(3338), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3338), + [anon_sym___declspec] = ACTIONS(3336), + [anon_sym___based] = ACTIONS(3336), + [anon_sym___cdecl] = ACTIONS(3336), + [anon_sym___clrcall] = ACTIONS(3336), + [anon_sym___stdcall] = ACTIONS(3336), + [anon_sym___fastcall] = ACTIONS(3336), + [anon_sym___thiscall] = ACTIONS(3336), + [anon_sym___vectorcall] = ACTIONS(3336), + [anon_sym_LBRACE] = ACTIONS(3338), + [anon_sym_LBRACK] = ACTIONS(3336), + [anon_sym_static] = ACTIONS(3336), + [anon_sym_register] = ACTIONS(3336), + [anon_sym_inline] = ACTIONS(3336), + [anon_sym_thread_local] = ACTIONS(3336), + [anon_sym_const] = ACTIONS(3336), + [anon_sym_constexpr] = ACTIONS(3336), + [anon_sym_volatile] = ACTIONS(3336), + [anon_sym_restrict] = ACTIONS(3336), + [anon_sym___restrict__] = ACTIONS(3336), + [anon_sym__Atomic] = ACTIONS(3336), + [anon_sym__Noreturn] = ACTIONS(3336), + [anon_sym_noreturn] = ACTIONS(3336), + [anon_sym_mutable] = ACTIONS(3336), + [anon_sym_constinit] = ACTIONS(3336), + [anon_sym_consteval] = ACTIONS(3336), + [anon_sym_signed] = ACTIONS(3336), + [anon_sym_unsigned] = ACTIONS(3336), + [anon_sym_long] = ACTIONS(3336), + [anon_sym_short] = ACTIONS(3336), + [sym_primitive_type] = ACTIONS(3336), + [anon_sym_enum] = ACTIONS(3336), + [anon_sym_class] = ACTIONS(3336), + [anon_sym_struct] = ACTIONS(3336), + [anon_sym_union] = ACTIONS(3336), + [anon_sym_if] = ACTIONS(3336), + [anon_sym_switch] = ACTIONS(3336), + [anon_sym_case] = ACTIONS(3336), + [anon_sym_default] = ACTIONS(3336), + [anon_sym_while] = ACTIONS(3336), + [anon_sym_do] = ACTIONS(3336), + [anon_sym_for] = ACTIONS(3336), + [anon_sym_return] = ACTIONS(3336), + [anon_sym_break] = ACTIONS(3336), + [anon_sym_continue] = ACTIONS(3336), + [anon_sym_goto] = ACTIONS(3336), + [anon_sym_not] = ACTIONS(3336), + [anon_sym_compl] = ACTIONS(3336), + [anon_sym_DASH_DASH] = ACTIONS(3338), + [anon_sym_PLUS_PLUS] = ACTIONS(3338), + [anon_sym_sizeof] = ACTIONS(3336), + [anon_sym_offsetof] = ACTIONS(3336), + [anon_sym__Generic] = ACTIONS(3336), + [anon_sym_asm] = ACTIONS(3336), + [anon_sym___asm__] = ACTIONS(3336), + [sym_number_literal] = ACTIONS(3338), + [anon_sym_L_SQUOTE] = ACTIONS(3338), + [anon_sym_u_SQUOTE] = ACTIONS(3338), + [anon_sym_U_SQUOTE] = ACTIONS(3338), + [anon_sym_u8_SQUOTE] = ACTIONS(3338), + [anon_sym_SQUOTE] = ACTIONS(3338), + [anon_sym_L_DQUOTE] = ACTIONS(3338), + [anon_sym_u_DQUOTE] = ACTIONS(3338), + [anon_sym_U_DQUOTE] = ACTIONS(3338), + [anon_sym_u8_DQUOTE] = ACTIONS(3338), + [anon_sym_DQUOTE] = ACTIONS(3338), + [sym_true] = ACTIONS(3336), + [sym_false] = ACTIONS(3336), + [anon_sym_NULL] = ACTIONS(3336), + [anon_sym_nullptr] = ACTIONS(3336), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3336), + [anon_sym_decltype] = ACTIONS(3336), + [anon_sym_virtual] = ACTIONS(3336), + [anon_sym_explicit] = ACTIONS(3336), + [anon_sym_typename] = ACTIONS(3336), + [anon_sym_template] = ACTIONS(3336), + [anon_sym_operator] = ACTIONS(3336), + [anon_sym_try] = ACTIONS(3336), + [anon_sym_delete] = ACTIONS(3336), + [anon_sym_throw] = ACTIONS(3336), + [anon_sym_namespace] = ACTIONS(3336), + [anon_sym_using] = ACTIONS(3336), + [anon_sym_static_assert] = ACTIONS(3336), + [anon_sym_concept] = ACTIONS(3336), + [anon_sym_co_return] = ACTIONS(3336), + [anon_sym_co_yield] = ACTIONS(3336), + [anon_sym_R_DQUOTE] = ACTIONS(3338), + [anon_sym_LR_DQUOTE] = ACTIONS(3338), + [anon_sym_uR_DQUOTE] = ACTIONS(3338), + [anon_sym_UR_DQUOTE] = ACTIONS(3338), + [anon_sym_u8R_DQUOTE] = ACTIONS(3338), + [anon_sym_co_await] = ACTIONS(3336), + [anon_sym_new] = ACTIONS(3336), + [anon_sym_requires] = ACTIONS(3336), + [sym_this] = ACTIONS(3336), + }, + [788] = { + [sym_identifier] = ACTIONS(3328), + [aux_sym_preproc_include_token1] = ACTIONS(3328), + [aux_sym_preproc_def_token1] = ACTIONS(3328), + [aux_sym_preproc_if_token1] = ACTIONS(3328), + [aux_sym_preproc_if_token2] = ACTIONS(3328), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3328), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3328), + [aux_sym_preproc_else_token1] = ACTIONS(3328), + [aux_sym_preproc_elif_token1] = ACTIONS(3328), + [sym_preproc_directive] = ACTIONS(3328), + [anon_sym_LPAREN2] = ACTIONS(3330), + [anon_sym_BANG] = ACTIONS(3330), + [anon_sym_TILDE] = ACTIONS(3330), + [anon_sym_DASH] = ACTIONS(3328), + [anon_sym_PLUS] = ACTIONS(3328), + [anon_sym_STAR] = ACTIONS(3330), + [anon_sym_AMP_AMP] = ACTIONS(3330), + [anon_sym_AMP] = ACTIONS(3328), + [anon_sym_SEMI] = ACTIONS(3330), + [anon_sym_typedef] = ACTIONS(3328), + [anon_sym_extern] = ACTIONS(3328), + [anon_sym___attribute__] = ACTIONS(3328), + [anon_sym_COLON_COLON] = ACTIONS(3330), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3330), + [anon_sym___declspec] = ACTIONS(3328), + [anon_sym___based] = ACTIONS(3328), + [anon_sym___cdecl] = ACTIONS(3328), + [anon_sym___clrcall] = ACTIONS(3328), + [anon_sym___stdcall] = ACTIONS(3328), + [anon_sym___fastcall] = ACTIONS(3328), + [anon_sym___thiscall] = ACTIONS(3328), + [anon_sym___vectorcall] = ACTIONS(3328), + [anon_sym_LBRACE] = ACTIONS(3330), + [anon_sym_LBRACK] = ACTIONS(3328), + [anon_sym_static] = ACTIONS(3328), + [anon_sym_register] = ACTIONS(3328), + [anon_sym_inline] = ACTIONS(3328), + [anon_sym_thread_local] = ACTIONS(3328), + [anon_sym_const] = ACTIONS(3328), + [anon_sym_constexpr] = ACTIONS(3328), + [anon_sym_volatile] = ACTIONS(3328), + [anon_sym_restrict] = ACTIONS(3328), + [anon_sym___restrict__] = ACTIONS(3328), + [anon_sym__Atomic] = ACTIONS(3328), + [anon_sym__Noreturn] = ACTIONS(3328), + [anon_sym_noreturn] = ACTIONS(3328), + [anon_sym_mutable] = ACTIONS(3328), + [anon_sym_constinit] = ACTIONS(3328), + [anon_sym_consteval] = ACTIONS(3328), + [anon_sym_signed] = ACTIONS(3328), + [anon_sym_unsigned] = ACTIONS(3328), + [anon_sym_long] = ACTIONS(3328), + [anon_sym_short] = ACTIONS(3328), + [sym_primitive_type] = ACTIONS(3328), + [anon_sym_enum] = ACTIONS(3328), + [anon_sym_class] = ACTIONS(3328), + [anon_sym_struct] = ACTIONS(3328), + [anon_sym_union] = ACTIONS(3328), + [anon_sym_if] = ACTIONS(3328), + [anon_sym_switch] = ACTIONS(3328), + [anon_sym_case] = ACTIONS(3328), + [anon_sym_default] = ACTIONS(3328), + [anon_sym_while] = ACTIONS(3328), + [anon_sym_do] = ACTIONS(3328), + [anon_sym_for] = ACTIONS(3328), + [anon_sym_return] = ACTIONS(3328), + [anon_sym_break] = ACTIONS(3328), + [anon_sym_continue] = ACTIONS(3328), + [anon_sym_goto] = ACTIONS(3328), + [anon_sym_not] = ACTIONS(3328), + [anon_sym_compl] = ACTIONS(3328), + [anon_sym_DASH_DASH] = ACTIONS(3330), + [anon_sym_PLUS_PLUS] = ACTIONS(3330), + [anon_sym_sizeof] = ACTIONS(3328), + [anon_sym_offsetof] = ACTIONS(3328), + [anon_sym__Generic] = ACTIONS(3328), + [anon_sym_asm] = ACTIONS(3328), + [anon_sym___asm__] = ACTIONS(3328), + [sym_number_literal] = ACTIONS(3330), + [anon_sym_L_SQUOTE] = ACTIONS(3330), + [anon_sym_u_SQUOTE] = ACTIONS(3330), + [anon_sym_U_SQUOTE] = ACTIONS(3330), + [anon_sym_u8_SQUOTE] = ACTIONS(3330), + [anon_sym_SQUOTE] = ACTIONS(3330), + [anon_sym_L_DQUOTE] = ACTIONS(3330), + [anon_sym_u_DQUOTE] = ACTIONS(3330), + [anon_sym_U_DQUOTE] = ACTIONS(3330), + [anon_sym_u8_DQUOTE] = ACTIONS(3330), + [anon_sym_DQUOTE] = ACTIONS(3330), + [sym_true] = ACTIONS(3328), + [sym_false] = ACTIONS(3328), + [anon_sym_NULL] = ACTIONS(3328), + [anon_sym_nullptr] = ACTIONS(3328), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3328), + [anon_sym_decltype] = ACTIONS(3328), + [anon_sym_virtual] = ACTIONS(3328), + [anon_sym_explicit] = ACTIONS(3328), + [anon_sym_typename] = ACTIONS(3328), + [anon_sym_template] = ACTIONS(3328), + [anon_sym_operator] = ACTIONS(3328), + [anon_sym_try] = ACTIONS(3328), + [anon_sym_delete] = ACTIONS(3328), + [anon_sym_throw] = ACTIONS(3328), + [anon_sym_namespace] = ACTIONS(3328), + [anon_sym_using] = ACTIONS(3328), + [anon_sym_static_assert] = ACTIONS(3328), + [anon_sym_concept] = ACTIONS(3328), + [anon_sym_co_return] = ACTIONS(3328), + [anon_sym_co_yield] = ACTIONS(3328), + [anon_sym_R_DQUOTE] = ACTIONS(3330), + [anon_sym_LR_DQUOTE] = ACTIONS(3330), + [anon_sym_uR_DQUOTE] = ACTIONS(3330), + [anon_sym_UR_DQUOTE] = ACTIONS(3330), + [anon_sym_u8R_DQUOTE] = ACTIONS(3330), + [anon_sym_co_await] = ACTIONS(3328), + [anon_sym_new] = ACTIONS(3328), + [anon_sym_requires] = ACTIONS(3328), + [sym_this] = ACTIONS(3328), + }, + [789] = { + [sym_identifier] = ACTIONS(3399), + [aux_sym_preproc_include_token1] = ACTIONS(3399), + [aux_sym_preproc_def_token1] = ACTIONS(3399), + [aux_sym_preproc_if_token1] = ACTIONS(3399), + [aux_sym_preproc_if_token2] = ACTIONS(3399), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3399), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3399), + [aux_sym_preproc_else_token1] = ACTIONS(3399), + [aux_sym_preproc_elif_token1] = ACTIONS(3399), + [sym_preproc_directive] = ACTIONS(3399), + [anon_sym_LPAREN2] = ACTIONS(3401), + [anon_sym_BANG] = ACTIONS(3401), + [anon_sym_TILDE] = ACTIONS(3401), + [anon_sym_DASH] = ACTIONS(3399), + [anon_sym_PLUS] = ACTIONS(3399), + [anon_sym_STAR] = ACTIONS(3401), + [anon_sym_AMP_AMP] = ACTIONS(3401), + [anon_sym_AMP] = ACTIONS(3399), + [anon_sym_SEMI] = ACTIONS(3401), + [anon_sym_typedef] = ACTIONS(3399), + [anon_sym_extern] = ACTIONS(3399), + [anon_sym___attribute__] = ACTIONS(3399), + [anon_sym_COLON_COLON] = ACTIONS(3401), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3401), + [anon_sym___declspec] = ACTIONS(3399), + [anon_sym___based] = ACTIONS(3399), + [anon_sym___cdecl] = ACTIONS(3399), + [anon_sym___clrcall] = ACTIONS(3399), + [anon_sym___stdcall] = ACTIONS(3399), + [anon_sym___fastcall] = ACTIONS(3399), + [anon_sym___thiscall] = ACTIONS(3399), + [anon_sym___vectorcall] = ACTIONS(3399), + [anon_sym_LBRACE] = ACTIONS(3401), + [anon_sym_LBRACK] = ACTIONS(3399), + [anon_sym_static] = ACTIONS(3399), + [anon_sym_register] = ACTIONS(3399), + [anon_sym_inline] = ACTIONS(3399), + [anon_sym_thread_local] = ACTIONS(3399), + [anon_sym_const] = ACTIONS(3399), + [anon_sym_constexpr] = ACTIONS(3399), + [anon_sym_volatile] = ACTIONS(3399), + [anon_sym_restrict] = ACTIONS(3399), + [anon_sym___restrict__] = ACTIONS(3399), + [anon_sym__Atomic] = ACTIONS(3399), + [anon_sym__Noreturn] = ACTIONS(3399), + [anon_sym_noreturn] = ACTIONS(3399), + [anon_sym_mutable] = ACTIONS(3399), + [anon_sym_constinit] = ACTIONS(3399), + [anon_sym_consteval] = ACTIONS(3399), + [anon_sym_signed] = ACTIONS(3399), + [anon_sym_unsigned] = ACTIONS(3399), + [anon_sym_long] = ACTIONS(3399), + [anon_sym_short] = ACTIONS(3399), + [sym_primitive_type] = ACTIONS(3399), + [anon_sym_enum] = ACTIONS(3399), + [anon_sym_class] = ACTIONS(3399), + [anon_sym_struct] = ACTIONS(3399), + [anon_sym_union] = ACTIONS(3399), + [anon_sym_if] = ACTIONS(3399), + [anon_sym_switch] = ACTIONS(3399), + [anon_sym_case] = ACTIONS(3399), + [anon_sym_default] = ACTIONS(3399), + [anon_sym_while] = ACTIONS(3399), + [anon_sym_do] = ACTIONS(3399), + [anon_sym_for] = ACTIONS(3399), + [anon_sym_return] = ACTIONS(3399), + [anon_sym_break] = ACTIONS(3399), + [anon_sym_continue] = ACTIONS(3399), + [anon_sym_goto] = ACTIONS(3399), + [anon_sym_not] = ACTIONS(3399), + [anon_sym_compl] = ACTIONS(3399), + [anon_sym_DASH_DASH] = ACTIONS(3401), + [anon_sym_PLUS_PLUS] = ACTIONS(3401), + [anon_sym_sizeof] = ACTIONS(3399), + [anon_sym_offsetof] = ACTIONS(3399), + [anon_sym__Generic] = ACTIONS(3399), + [anon_sym_asm] = ACTIONS(3399), + [anon_sym___asm__] = ACTIONS(3399), + [sym_number_literal] = ACTIONS(3401), + [anon_sym_L_SQUOTE] = ACTIONS(3401), + [anon_sym_u_SQUOTE] = ACTIONS(3401), + [anon_sym_U_SQUOTE] = ACTIONS(3401), + [anon_sym_u8_SQUOTE] = ACTIONS(3401), + [anon_sym_SQUOTE] = ACTIONS(3401), + [anon_sym_L_DQUOTE] = ACTIONS(3401), + [anon_sym_u_DQUOTE] = ACTIONS(3401), + [anon_sym_U_DQUOTE] = ACTIONS(3401), + [anon_sym_u8_DQUOTE] = ACTIONS(3401), + [anon_sym_DQUOTE] = ACTIONS(3401), + [sym_true] = ACTIONS(3399), + [sym_false] = ACTIONS(3399), + [anon_sym_NULL] = ACTIONS(3399), + [anon_sym_nullptr] = ACTIONS(3399), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3399), + [anon_sym_decltype] = ACTIONS(3399), + [anon_sym_virtual] = ACTIONS(3399), + [anon_sym_explicit] = ACTIONS(3399), + [anon_sym_typename] = ACTIONS(3399), + [anon_sym_template] = ACTIONS(3399), + [anon_sym_operator] = ACTIONS(3399), + [anon_sym_try] = ACTIONS(3399), + [anon_sym_delete] = ACTIONS(3399), + [anon_sym_throw] = ACTIONS(3399), + [anon_sym_namespace] = ACTIONS(3399), + [anon_sym_using] = ACTIONS(3399), + [anon_sym_static_assert] = ACTIONS(3399), + [anon_sym_concept] = ACTIONS(3399), + [anon_sym_co_return] = ACTIONS(3399), + [anon_sym_co_yield] = ACTIONS(3399), + [anon_sym_R_DQUOTE] = ACTIONS(3401), + [anon_sym_LR_DQUOTE] = ACTIONS(3401), + [anon_sym_uR_DQUOTE] = ACTIONS(3401), + [anon_sym_UR_DQUOTE] = ACTIONS(3401), + [anon_sym_u8R_DQUOTE] = ACTIONS(3401), + [anon_sym_co_await] = ACTIONS(3399), + [anon_sym_new] = ACTIONS(3399), + [anon_sym_requires] = ACTIONS(3399), + [sym_this] = ACTIONS(3399), + }, + [790] = { + [sym_identifier] = ACTIONS(3322), + [aux_sym_preproc_include_token1] = ACTIONS(3322), + [aux_sym_preproc_def_token1] = ACTIONS(3322), + [aux_sym_preproc_if_token1] = ACTIONS(3322), + [aux_sym_preproc_if_token2] = ACTIONS(3322), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3322), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3322), + [aux_sym_preproc_else_token1] = ACTIONS(3322), + [aux_sym_preproc_elif_token1] = ACTIONS(3322), + [sym_preproc_directive] = ACTIONS(3322), + [anon_sym_LPAREN2] = ACTIONS(3324), + [anon_sym_BANG] = ACTIONS(3324), + [anon_sym_TILDE] = ACTIONS(3324), + [anon_sym_DASH] = ACTIONS(3322), + [anon_sym_PLUS] = ACTIONS(3322), + [anon_sym_STAR] = ACTIONS(3324), + [anon_sym_AMP_AMP] = ACTIONS(3324), + [anon_sym_AMP] = ACTIONS(3322), + [anon_sym_SEMI] = ACTIONS(3324), + [anon_sym_typedef] = ACTIONS(3322), + [anon_sym_extern] = ACTIONS(3322), + [anon_sym___attribute__] = ACTIONS(3322), + [anon_sym_COLON_COLON] = ACTIONS(3324), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3324), + [anon_sym___declspec] = ACTIONS(3322), + [anon_sym___based] = ACTIONS(3322), + [anon_sym___cdecl] = ACTIONS(3322), + [anon_sym___clrcall] = ACTIONS(3322), + [anon_sym___stdcall] = ACTIONS(3322), + [anon_sym___fastcall] = ACTIONS(3322), + [anon_sym___thiscall] = ACTIONS(3322), + [anon_sym___vectorcall] = ACTIONS(3322), + [anon_sym_LBRACE] = ACTIONS(3324), + [anon_sym_LBRACK] = ACTIONS(3322), + [anon_sym_static] = ACTIONS(3322), + [anon_sym_register] = ACTIONS(3322), + [anon_sym_inline] = ACTIONS(3322), + [anon_sym_thread_local] = ACTIONS(3322), + [anon_sym_const] = ACTIONS(3322), + [anon_sym_constexpr] = ACTIONS(3322), + [anon_sym_volatile] = ACTIONS(3322), + [anon_sym_restrict] = ACTIONS(3322), + [anon_sym___restrict__] = ACTIONS(3322), + [anon_sym__Atomic] = ACTIONS(3322), + [anon_sym__Noreturn] = ACTIONS(3322), + [anon_sym_noreturn] = ACTIONS(3322), + [anon_sym_mutable] = ACTIONS(3322), + [anon_sym_constinit] = ACTIONS(3322), + [anon_sym_consteval] = ACTIONS(3322), + [anon_sym_signed] = ACTIONS(3322), + [anon_sym_unsigned] = ACTIONS(3322), + [anon_sym_long] = ACTIONS(3322), + [anon_sym_short] = ACTIONS(3322), + [sym_primitive_type] = ACTIONS(3322), + [anon_sym_enum] = ACTIONS(3322), + [anon_sym_class] = ACTIONS(3322), + [anon_sym_struct] = ACTIONS(3322), + [anon_sym_union] = ACTIONS(3322), + [anon_sym_if] = ACTIONS(3322), + [anon_sym_switch] = ACTIONS(3322), + [anon_sym_case] = ACTIONS(3322), + [anon_sym_default] = ACTIONS(3322), + [anon_sym_while] = ACTIONS(3322), + [anon_sym_do] = ACTIONS(3322), + [anon_sym_for] = ACTIONS(3322), + [anon_sym_return] = ACTIONS(3322), + [anon_sym_break] = ACTIONS(3322), + [anon_sym_continue] = ACTIONS(3322), + [anon_sym_goto] = ACTIONS(3322), + [anon_sym_not] = ACTIONS(3322), + [anon_sym_compl] = ACTIONS(3322), + [anon_sym_DASH_DASH] = ACTIONS(3324), + [anon_sym_PLUS_PLUS] = ACTIONS(3324), + [anon_sym_sizeof] = ACTIONS(3322), + [anon_sym_offsetof] = ACTIONS(3322), + [anon_sym__Generic] = ACTIONS(3322), + [anon_sym_asm] = ACTIONS(3322), + [anon_sym___asm__] = ACTIONS(3322), + [sym_number_literal] = ACTIONS(3324), + [anon_sym_L_SQUOTE] = ACTIONS(3324), + [anon_sym_u_SQUOTE] = ACTIONS(3324), + [anon_sym_U_SQUOTE] = ACTIONS(3324), + [anon_sym_u8_SQUOTE] = ACTIONS(3324), + [anon_sym_SQUOTE] = ACTIONS(3324), + [anon_sym_L_DQUOTE] = ACTIONS(3324), + [anon_sym_u_DQUOTE] = ACTIONS(3324), + [anon_sym_U_DQUOTE] = ACTIONS(3324), + [anon_sym_u8_DQUOTE] = ACTIONS(3324), + [anon_sym_DQUOTE] = ACTIONS(3324), + [sym_true] = ACTIONS(3322), + [sym_false] = ACTIONS(3322), + [anon_sym_NULL] = ACTIONS(3322), + [anon_sym_nullptr] = ACTIONS(3322), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3322), + [anon_sym_decltype] = ACTIONS(3322), + [anon_sym_virtual] = ACTIONS(3322), + [anon_sym_explicit] = ACTIONS(3322), + [anon_sym_typename] = ACTIONS(3322), + [anon_sym_template] = ACTIONS(3322), + [anon_sym_operator] = ACTIONS(3322), + [anon_sym_try] = ACTIONS(3322), + [anon_sym_delete] = ACTIONS(3322), + [anon_sym_throw] = ACTIONS(3322), + [anon_sym_namespace] = ACTIONS(3322), + [anon_sym_using] = ACTIONS(3322), + [anon_sym_static_assert] = ACTIONS(3322), + [anon_sym_concept] = ACTIONS(3322), + [anon_sym_co_return] = ACTIONS(3322), + [anon_sym_co_yield] = ACTIONS(3322), + [anon_sym_R_DQUOTE] = ACTIONS(3324), + [anon_sym_LR_DQUOTE] = ACTIONS(3324), + [anon_sym_uR_DQUOTE] = ACTIONS(3324), + [anon_sym_UR_DQUOTE] = ACTIONS(3324), + [anon_sym_u8R_DQUOTE] = ACTIONS(3324), + [anon_sym_co_await] = ACTIONS(3322), + [anon_sym_new] = ACTIONS(3322), + [anon_sym_requires] = ACTIONS(3322), + [sym_this] = ACTIONS(3322), + }, + [791] = { + [sym_identifier] = ACTIONS(3425), + [aux_sym_preproc_include_token1] = ACTIONS(3425), + [aux_sym_preproc_def_token1] = ACTIONS(3425), + [aux_sym_preproc_if_token1] = ACTIONS(3425), + [aux_sym_preproc_if_token2] = ACTIONS(3425), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3425), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3425), + [aux_sym_preproc_else_token1] = ACTIONS(3425), + [aux_sym_preproc_elif_token1] = ACTIONS(3425), + [sym_preproc_directive] = ACTIONS(3425), + [anon_sym_LPAREN2] = ACTIONS(3427), + [anon_sym_BANG] = ACTIONS(3427), + [anon_sym_TILDE] = ACTIONS(3427), + [anon_sym_DASH] = ACTIONS(3425), + [anon_sym_PLUS] = ACTIONS(3425), + [anon_sym_STAR] = ACTIONS(3427), + [anon_sym_AMP_AMP] = ACTIONS(3427), + [anon_sym_AMP] = ACTIONS(3425), + [anon_sym_SEMI] = ACTIONS(3427), + [anon_sym_typedef] = ACTIONS(3425), + [anon_sym_extern] = ACTIONS(3425), + [anon_sym___attribute__] = ACTIONS(3425), + [anon_sym_COLON_COLON] = ACTIONS(3427), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3427), + [anon_sym___declspec] = ACTIONS(3425), + [anon_sym___based] = ACTIONS(3425), + [anon_sym___cdecl] = ACTIONS(3425), + [anon_sym___clrcall] = ACTIONS(3425), + [anon_sym___stdcall] = ACTIONS(3425), + [anon_sym___fastcall] = ACTIONS(3425), + [anon_sym___thiscall] = ACTIONS(3425), + [anon_sym___vectorcall] = ACTIONS(3425), + [anon_sym_LBRACE] = ACTIONS(3427), + [anon_sym_LBRACK] = ACTIONS(3425), + [anon_sym_static] = ACTIONS(3425), + [anon_sym_register] = ACTIONS(3425), + [anon_sym_inline] = ACTIONS(3425), + [anon_sym_thread_local] = ACTIONS(3425), + [anon_sym_const] = ACTIONS(3425), + [anon_sym_constexpr] = ACTIONS(3425), + [anon_sym_volatile] = ACTIONS(3425), + [anon_sym_restrict] = ACTIONS(3425), + [anon_sym___restrict__] = ACTIONS(3425), + [anon_sym__Atomic] = ACTIONS(3425), + [anon_sym__Noreturn] = ACTIONS(3425), + [anon_sym_noreturn] = ACTIONS(3425), + [anon_sym_mutable] = ACTIONS(3425), + [anon_sym_constinit] = ACTIONS(3425), + [anon_sym_consteval] = ACTIONS(3425), + [anon_sym_signed] = ACTIONS(3425), + [anon_sym_unsigned] = ACTIONS(3425), + [anon_sym_long] = ACTIONS(3425), + [anon_sym_short] = ACTIONS(3425), + [sym_primitive_type] = ACTIONS(3425), + [anon_sym_enum] = ACTIONS(3425), + [anon_sym_class] = ACTIONS(3425), + [anon_sym_struct] = ACTIONS(3425), + [anon_sym_union] = ACTIONS(3425), + [anon_sym_if] = ACTIONS(3425), + [anon_sym_switch] = ACTIONS(3425), + [anon_sym_case] = ACTIONS(3425), + [anon_sym_default] = ACTIONS(3425), + [anon_sym_while] = ACTIONS(3425), + [anon_sym_do] = ACTIONS(3425), + [anon_sym_for] = ACTIONS(3425), + [anon_sym_return] = ACTIONS(3425), + [anon_sym_break] = ACTIONS(3425), + [anon_sym_continue] = ACTIONS(3425), + [anon_sym_goto] = ACTIONS(3425), + [anon_sym_not] = ACTIONS(3425), + [anon_sym_compl] = ACTIONS(3425), + [anon_sym_DASH_DASH] = ACTIONS(3427), + [anon_sym_PLUS_PLUS] = ACTIONS(3427), + [anon_sym_sizeof] = ACTIONS(3425), + [anon_sym_offsetof] = ACTIONS(3425), + [anon_sym__Generic] = ACTIONS(3425), + [anon_sym_asm] = ACTIONS(3425), + [anon_sym___asm__] = ACTIONS(3425), + [sym_number_literal] = ACTIONS(3427), + [anon_sym_L_SQUOTE] = ACTIONS(3427), + [anon_sym_u_SQUOTE] = ACTIONS(3427), + [anon_sym_U_SQUOTE] = ACTIONS(3427), + [anon_sym_u8_SQUOTE] = ACTIONS(3427), + [anon_sym_SQUOTE] = ACTIONS(3427), + [anon_sym_L_DQUOTE] = ACTIONS(3427), + [anon_sym_u_DQUOTE] = ACTIONS(3427), + [anon_sym_U_DQUOTE] = ACTIONS(3427), + [anon_sym_u8_DQUOTE] = ACTIONS(3427), + [anon_sym_DQUOTE] = ACTIONS(3427), + [sym_true] = ACTIONS(3425), + [sym_false] = ACTIONS(3425), + [anon_sym_NULL] = ACTIONS(3425), + [anon_sym_nullptr] = ACTIONS(3425), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3425), + [anon_sym_decltype] = ACTIONS(3425), + [anon_sym_virtual] = ACTIONS(3425), + [anon_sym_explicit] = ACTIONS(3425), + [anon_sym_typename] = ACTIONS(3425), + [anon_sym_template] = ACTIONS(3425), + [anon_sym_operator] = ACTIONS(3425), + [anon_sym_try] = ACTIONS(3425), + [anon_sym_delete] = ACTIONS(3425), + [anon_sym_throw] = ACTIONS(3425), + [anon_sym_namespace] = ACTIONS(3425), + [anon_sym_using] = ACTIONS(3425), + [anon_sym_static_assert] = ACTIONS(3425), + [anon_sym_concept] = ACTIONS(3425), + [anon_sym_co_return] = ACTIONS(3425), + [anon_sym_co_yield] = ACTIONS(3425), + [anon_sym_R_DQUOTE] = ACTIONS(3427), + [anon_sym_LR_DQUOTE] = ACTIONS(3427), + [anon_sym_uR_DQUOTE] = ACTIONS(3427), + [anon_sym_UR_DQUOTE] = ACTIONS(3427), + [anon_sym_u8R_DQUOTE] = ACTIONS(3427), + [anon_sym_co_await] = ACTIONS(3425), + [anon_sym_new] = ACTIONS(3425), + [anon_sym_requires] = ACTIONS(3425), + [sym_this] = ACTIONS(3425), + }, + [792] = { + [sym_identifier] = ACTIONS(3312), + [aux_sym_preproc_include_token1] = ACTIONS(3312), + [aux_sym_preproc_def_token1] = ACTIONS(3312), + [aux_sym_preproc_if_token1] = ACTIONS(3312), + [aux_sym_preproc_if_token2] = ACTIONS(3312), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3312), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3312), + [aux_sym_preproc_else_token1] = ACTIONS(3312), + [aux_sym_preproc_elif_token1] = ACTIONS(3312), + [sym_preproc_directive] = ACTIONS(3312), + [anon_sym_LPAREN2] = ACTIONS(3314), + [anon_sym_BANG] = ACTIONS(3314), + [anon_sym_TILDE] = ACTIONS(3314), + [anon_sym_DASH] = ACTIONS(3312), + [anon_sym_PLUS] = ACTIONS(3312), + [anon_sym_STAR] = ACTIONS(3314), + [anon_sym_AMP_AMP] = ACTIONS(3314), + [anon_sym_AMP] = ACTIONS(3312), + [anon_sym_SEMI] = ACTIONS(3314), + [anon_sym_typedef] = ACTIONS(3312), + [anon_sym_extern] = ACTIONS(3312), + [anon_sym___attribute__] = ACTIONS(3312), + [anon_sym_COLON_COLON] = ACTIONS(3314), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3314), + [anon_sym___declspec] = ACTIONS(3312), + [anon_sym___based] = ACTIONS(3312), + [anon_sym___cdecl] = ACTIONS(3312), + [anon_sym___clrcall] = ACTIONS(3312), + [anon_sym___stdcall] = ACTIONS(3312), + [anon_sym___fastcall] = ACTIONS(3312), + [anon_sym___thiscall] = ACTIONS(3312), + [anon_sym___vectorcall] = ACTIONS(3312), + [anon_sym_LBRACE] = ACTIONS(3314), + [anon_sym_LBRACK] = ACTIONS(3312), + [anon_sym_static] = ACTIONS(3312), + [anon_sym_register] = ACTIONS(3312), + [anon_sym_inline] = ACTIONS(3312), + [anon_sym_thread_local] = ACTIONS(3312), + [anon_sym_const] = ACTIONS(3312), + [anon_sym_constexpr] = ACTIONS(3312), + [anon_sym_volatile] = ACTIONS(3312), + [anon_sym_restrict] = ACTIONS(3312), + [anon_sym___restrict__] = ACTIONS(3312), + [anon_sym__Atomic] = ACTIONS(3312), + [anon_sym__Noreturn] = ACTIONS(3312), + [anon_sym_noreturn] = ACTIONS(3312), + [anon_sym_mutable] = ACTIONS(3312), + [anon_sym_constinit] = ACTIONS(3312), + [anon_sym_consteval] = ACTIONS(3312), + [anon_sym_signed] = ACTIONS(3312), + [anon_sym_unsigned] = ACTIONS(3312), + [anon_sym_long] = ACTIONS(3312), + [anon_sym_short] = ACTIONS(3312), + [sym_primitive_type] = ACTIONS(3312), + [anon_sym_enum] = ACTIONS(3312), + [anon_sym_class] = ACTIONS(3312), + [anon_sym_struct] = ACTIONS(3312), + [anon_sym_union] = ACTIONS(3312), + [anon_sym_if] = ACTIONS(3312), + [anon_sym_switch] = ACTIONS(3312), + [anon_sym_case] = ACTIONS(3312), + [anon_sym_default] = ACTIONS(3312), + [anon_sym_while] = ACTIONS(3312), + [anon_sym_do] = ACTIONS(3312), + [anon_sym_for] = ACTIONS(3312), + [anon_sym_return] = ACTIONS(3312), + [anon_sym_break] = ACTIONS(3312), + [anon_sym_continue] = ACTIONS(3312), + [anon_sym_goto] = ACTIONS(3312), + [anon_sym_not] = ACTIONS(3312), + [anon_sym_compl] = ACTIONS(3312), + [anon_sym_DASH_DASH] = ACTIONS(3314), + [anon_sym_PLUS_PLUS] = ACTIONS(3314), + [anon_sym_sizeof] = ACTIONS(3312), + [anon_sym_offsetof] = ACTIONS(3312), + [anon_sym__Generic] = ACTIONS(3312), + [anon_sym_asm] = ACTIONS(3312), + [anon_sym___asm__] = ACTIONS(3312), + [sym_number_literal] = ACTIONS(3314), + [anon_sym_L_SQUOTE] = ACTIONS(3314), + [anon_sym_u_SQUOTE] = ACTIONS(3314), + [anon_sym_U_SQUOTE] = ACTIONS(3314), + [anon_sym_u8_SQUOTE] = ACTIONS(3314), + [anon_sym_SQUOTE] = ACTIONS(3314), + [anon_sym_L_DQUOTE] = ACTIONS(3314), + [anon_sym_u_DQUOTE] = ACTIONS(3314), + [anon_sym_U_DQUOTE] = ACTIONS(3314), + [anon_sym_u8_DQUOTE] = ACTIONS(3314), + [anon_sym_DQUOTE] = ACTIONS(3314), + [sym_true] = ACTIONS(3312), + [sym_false] = ACTIONS(3312), + [anon_sym_NULL] = ACTIONS(3312), + [anon_sym_nullptr] = ACTIONS(3312), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3312), + [anon_sym_decltype] = ACTIONS(3312), + [anon_sym_virtual] = ACTIONS(3312), + [anon_sym_explicit] = ACTIONS(3312), + [anon_sym_typename] = ACTIONS(3312), + [anon_sym_template] = ACTIONS(3312), + [anon_sym_operator] = ACTIONS(3312), + [anon_sym_try] = ACTIONS(3312), + [anon_sym_delete] = ACTIONS(3312), + [anon_sym_throw] = ACTIONS(3312), + [anon_sym_namespace] = ACTIONS(3312), + [anon_sym_using] = ACTIONS(3312), + [anon_sym_static_assert] = ACTIONS(3312), + [anon_sym_concept] = ACTIONS(3312), + [anon_sym_co_return] = ACTIONS(3312), + [anon_sym_co_yield] = ACTIONS(3312), + [anon_sym_R_DQUOTE] = ACTIONS(3314), + [anon_sym_LR_DQUOTE] = ACTIONS(3314), + [anon_sym_uR_DQUOTE] = ACTIONS(3314), + [anon_sym_UR_DQUOTE] = ACTIONS(3314), + [anon_sym_u8R_DQUOTE] = ACTIONS(3314), + [anon_sym_co_await] = ACTIONS(3312), + [anon_sym_new] = ACTIONS(3312), + [anon_sym_requires] = ACTIONS(3312), + [sym_this] = ACTIONS(3312), + }, + [793] = { + [sym_identifier] = ACTIONS(3282), + [aux_sym_preproc_include_token1] = ACTIONS(3282), + [aux_sym_preproc_def_token1] = ACTIONS(3282), + [aux_sym_preproc_if_token1] = ACTIONS(3282), + [aux_sym_preproc_if_token2] = ACTIONS(3282), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3282), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3282), + [aux_sym_preproc_else_token1] = ACTIONS(3282), + [aux_sym_preproc_elif_token1] = ACTIONS(3282), + [sym_preproc_directive] = ACTIONS(3282), + [anon_sym_LPAREN2] = ACTIONS(3284), + [anon_sym_BANG] = ACTIONS(3284), + [anon_sym_TILDE] = ACTIONS(3284), + [anon_sym_DASH] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3282), + [anon_sym_STAR] = ACTIONS(3284), + [anon_sym_AMP_AMP] = ACTIONS(3284), + [anon_sym_AMP] = ACTIONS(3282), + [anon_sym_SEMI] = ACTIONS(3284), + [anon_sym_typedef] = ACTIONS(3282), + [anon_sym_extern] = ACTIONS(3282), + [anon_sym___attribute__] = ACTIONS(3282), + [anon_sym_COLON_COLON] = ACTIONS(3284), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3284), + [anon_sym___declspec] = ACTIONS(3282), + [anon_sym___based] = ACTIONS(3282), + [anon_sym___cdecl] = ACTIONS(3282), + [anon_sym___clrcall] = ACTIONS(3282), + [anon_sym___stdcall] = ACTIONS(3282), + [anon_sym___fastcall] = ACTIONS(3282), + [anon_sym___thiscall] = ACTIONS(3282), + [anon_sym___vectorcall] = ACTIONS(3282), + [anon_sym_LBRACE] = ACTIONS(3284), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_static] = ACTIONS(3282), + [anon_sym_register] = ACTIONS(3282), + [anon_sym_inline] = ACTIONS(3282), + [anon_sym_thread_local] = ACTIONS(3282), + [anon_sym_const] = ACTIONS(3282), + [anon_sym_constexpr] = ACTIONS(3282), + [anon_sym_volatile] = ACTIONS(3282), + [anon_sym_restrict] = ACTIONS(3282), + [anon_sym___restrict__] = ACTIONS(3282), + [anon_sym__Atomic] = ACTIONS(3282), + [anon_sym__Noreturn] = ACTIONS(3282), + [anon_sym_noreturn] = ACTIONS(3282), + [anon_sym_mutable] = ACTIONS(3282), + [anon_sym_constinit] = ACTIONS(3282), + [anon_sym_consteval] = ACTIONS(3282), + [anon_sym_signed] = ACTIONS(3282), + [anon_sym_unsigned] = ACTIONS(3282), + [anon_sym_long] = ACTIONS(3282), + [anon_sym_short] = ACTIONS(3282), + [sym_primitive_type] = ACTIONS(3282), + [anon_sym_enum] = ACTIONS(3282), + [anon_sym_class] = ACTIONS(3282), + [anon_sym_struct] = ACTIONS(3282), + [anon_sym_union] = ACTIONS(3282), + [anon_sym_if] = ACTIONS(3282), + [anon_sym_switch] = ACTIONS(3282), + [anon_sym_case] = ACTIONS(3282), + [anon_sym_default] = ACTIONS(3282), + [anon_sym_while] = ACTIONS(3282), + [anon_sym_do] = ACTIONS(3282), + [anon_sym_for] = ACTIONS(3282), + [anon_sym_return] = ACTIONS(3282), + [anon_sym_break] = ACTIONS(3282), + [anon_sym_continue] = ACTIONS(3282), + [anon_sym_goto] = ACTIONS(3282), + [anon_sym_not] = ACTIONS(3282), + [anon_sym_compl] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3284), + [anon_sym_PLUS_PLUS] = ACTIONS(3284), + [anon_sym_sizeof] = ACTIONS(3282), + [anon_sym_offsetof] = ACTIONS(3282), + [anon_sym__Generic] = ACTIONS(3282), + [anon_sym_asm] = ACTIONS(3282), + [anon_sym___asm__] = ACTIONS(3282), + [sym_number_literal] = ACTIONS(3284), + [anon_sym_L_SQUOTE] = ACTIONS(3284), + [anon_sym_u_SQUOTE] = ACTIONS(3284), + [anon_sym_U_SQUOTE] = ACTIONS(3284), + [anon_sym_u8_SQUOTE] = ACTIONS(3284), + [anon_sym_SQUOTE] = ACTIONS(3284), + [anon_sym_L_DQUOTE] = ACTIONS(3284), + [anon_sym_u_DQUOTE] = ACTIONS(3284), + [anon_sym_U_DQUOTE] = ACTIONS(3284), + [anon_sym_u8_DQUOTE] = ACTIONS(3284), + [anon_sym_DQUOTE] = ACTIONS(3284), + [sym_true] = ACTIONS(3282), + [sym_false] = ACTIONS(3282), + [anon_sym_NULL] = ACTIONS(3282), + [anon_sym_nullptr] = ACTIONS(3282), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3282), + [anon_sym_decltype] = ACTIONS(3282), + [anon_sym_virtual] = ACTIONS(3282), + [anon_sym_explicit] = ACTIONS(3282), + [anon_sym_typename] = ACTIONS(3282), + [anon_sym_template] = ACTIONS(3282), + [anon_sym_operator] = ACTIONS(3282), + [anon_sym_try] = ACTIONS(3282), + [anon_sym_delete] = ACTIONS(3282), + [anon_sym_throw] = ACTIONS(3282), + [anon_sym_namespace] = ACTIONS(3282), + [anon_sym_using] = ACTIONS(3282), + [anon_sym_static_assert] = ACTIONS(3282), + [anon_sym_concept] = ACTIONS(3282), + [anon_sym_co_return] = ACTIONS(3282), + [anon_sym_co_yield] = ACTIONS(3282), + [anon_sym_R_DQUOTE] = ACTIONS(3284), + [anon_sym_LR_DQUOTE] = ACTIONS(3284), + [anon_sym_uR_DQUOTE] = ACTIONS(3284), + [anon_sym_UR_DQUOTE] = ACTIONS(3284), + [anon_sym_u8R_DQUOTE] = ACTIONS(3284), + [anon_sym_co_await] = ACTIONS(3282), + [anon_sym_new] = ACTIONS(3282), + [anon_sym_requires] = ACTIONS(3282), + [sym_this] = ACTIONS(3282), + }, + [794] = { + [sym_identifier] = ACTIONS(3258), + [aux_sym_preproc_include_token1] = ACTIONS(3258), + [aux_sym_preproc_def_token1] = ACTIONS(3258), + [aux_sym_preproc_if_token1] = ACTIONS(3258), + [aux_sym_preproc_if_token2] = ACTIONS(3258), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3258), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3258), + [aux_sym_preproc_else_token1] = ACTIONS(3258), + [aux_sym_preproc_elif_token1] = ACTIONS(3258), + [sym_preproc_directive] = ACTIONS(3258), + [anon_sym_LPAREN2] = ACTIONS(3260), + [anon_sym_BANG] = ACTIONS(3260), + [anon_sym_TILDE] = ACTIONS(3260), + [anon_sym_DASH] = ACTIONS(3258), + [anon_sym_PLUS] = ACTIONS(3258), + [anon_sym_STAR] = ACTIONS(3260), + [anon_sym_AMP_AMP] = ACTIONS(3260), + [anon_sym_AMP] = ACTIONS(3258), + [anon_sym_SEMI] = ACTIONS(3260), + [anon_sym_typedef] = ACTIONS(3258), + [anon_sym_extern] = ACTIONS(3258), + [anon_sym___attribute__] = ACTIONS(3258), + [anon_sym_COLON_COLON] = ACTIONS(3260), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3260), + [anon_sym___declspec] = ACTIONS(3258), + [anon_sym___based] = ACTIONS(3258), + [anon_sym___cdecl] = ACTIONS(3258), + [anon_sym___clrcall] = ACTIONS(3258), + [anon_sym___stdcall] = ACTIONS(3258), + [anon_sym___fastcall] = ACTIONS(3258), + [anon_sym___thiscall] = ACTIONS(3258), + [anon_sym___vectorcall] = ACTIONS(3258), + [anon_sym_LBRACE] = ACTIONS(3260), + [anon_sym_LBRACK] = ACTIONS(3258), + [anon_sym_static] = ACTIONS(3258), + [anon_sym_register] = ACTIONS(3258), + [anon_sym_inline] = ACTIONS(3258), + [anon_sym_thread_local] = ACTIONS(3258), + [anon_sym_const] = ACTIONS(3258), + [anon_sym_constexpr] = ACTIONS(3258), + [anon_sym_volatile] = ACTIONS(3258), + [anon_sym_restrict] = ACTIONS(3258), + [anon_sym___restrict__] = ACTIONS(3258), + [anon_sym__Atomic] = ACTIONS(3258), + [anon_sym__Noreturn] = ACTIONS(3258), + [anon_sym_noreturn] = ACTIONS(3258), + [anon_sym_mutable] = ACTIONS(3258), + [anon_sym_constinit] = ACTIONS(3258), + [anon_sym_consteval] = ACTIONS(3258), + [anon_sym_signed] = ACTIONS(3258), + [anon_sym_unsigned] = ACTIONS(3258), + [anon_sym_long] = ACTIONS(3258), + [anon_sym_short] = ACTIONS(3258), + [sym_primitive_type] = ACTIONS(3258), + [anon_sym_enum] = ACTIONS(3258), + [anon_sym_class] = ACTIONS(3258), + [anon_sym_struct] = ACTIONS(3258), + [anon_sym_union] = ACTIONS(3258), + [anon_sym_if] = ACTIONS(3258), + [anon_sym_switch] = ACTIONS(3258), + [anon_sym_case] = ACTIONS(3258), + [anon_sym_default] = ACTIONS(3258), + [anon_sym_while] = ACTIONS(3258), + [anon_sym_do] = ACTIONS(3258), + [anon_sym_for] = ACTIONS(3258), + [anon_sym_return] = ACTIONS(3258), + [anon_sym_break] = ACTIONS(3258), + [anon_sym_continue] = ACTIONS(3258), + [anon_sym_goto] = ACTIONS(3258), + [anon_sym_not] = ACTIONS(3258), + [anon_sym_compl] = ACTIONS(3258), + [anon_sym_DASH_DASH] = ACTIONS(3260), + [anon_sym_PLUS_PLUS] = ACTIONS(3260), + [anon_sym_sizeof] = ACTIONS(3258), + [anon_sym_offsetof] = ACTIONS(3258), + [anon_sym__Generic] = ACTIONS(3258), + [anon_sym_asm] = ACTIONS(3258), + [anon_sym___asm__] = ACTIONS(3258), + [sym_number_literal] = ACTIONS(3260), + [anon_sym_L_SQUOTE] = ACTIONS(3260), + [anon_sym_u_SQUOTE] = ACTIONS(3260), + [anon_sym_U_SQUOTE] = ACTIONS(3260), + [anon_sym_u8_SQUOTE] = ACTIONS(3260), + [anon_sym_SQUOTE] = ACTIONS(3260), + [anon_sym_L_DQUOTE] = ACTIONS(3260), + [anon_sym_u_DQUOTE] = ACTIONS(3260), + [anon_sym_U_DQUOTE] = ACTIONS(3260), + [anon_sym_u8_DQUOTE] = ACTIONS(3260), + [anon_sym_DQUOTE] = ACTIONS(3260), + [sym_true] = ACTIONS(3258), + [sym_false] = ACTIONS(3258), + [anon_sym_NULL] = ACTIONS(3258), + [anon_sym_nullptr] = ACTIONS(3258), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3258), + [anon_sym_decltype] = ACTIONS(3258), + [anon_sym_virtual] = ACTIONS(3258), + [anon_sym_explicit] = ACTIONS(3258), + [anon_sym_typename] = ACTIONS(3258), + [anon_sym_template] = ACTIONS(3258), + [anon_sym_operator] = ACTIONS(3258), + [anon_sym_try] = ACTIONS(3258), + [anon_sym_delete] = ACTIONS(3258), + [anon_sym_throw] = ACTIONS(3258), + [anon_sym_namespace] = ACTIONS(3258), + [anon_sym_using] = ACTIONS(3258), + [anon_sym_static_assert] = ACTIONS(3258), + [anon_sym_concept] = ACTIONS(3258), + [anon_sym_co_return] = ACTIONS(3258), + [anon_sym_co_yield] = ACTIONS(3258), + [anon_sym_R_DQUOTE] = ACTIONS(3260), + [anon_sym_LR_DQUOTE] = ACTIONS(3260), + [anon_sym_uR_DQUOTE] = ACTIONS(3260), + [anon_sym_UR_DQUOTE] = ACTIONS(3260), + [anon_sym_u8R_DQUOTE] = ACTIONS(3260), + [anon_sym_co_await] = ACTIONS(3258), + [anon_sym_new] = ACTIONS(3258), + [anon_sym_requires] = ACTIONS(3258), + [sym_this] = ACTIONS(3258), + }, + [795] = { + [sym_identifier] = ACTIONS(3238), + [aux_sym_preproc_include_token1] = ACTIONS(3238), + [aux_sym_preproc_def_token1] = ACTIONS(3238), + [aux_sym_preproc_if_token1] = ACTIONS(3238), + [aux_sym_preproc_if_token2] = ACTIONS(3238), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3238), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3238), + [aux_sym_preproc_else_token1] = ACTIONS(3238), + [aux_sym_preproc_elif_token1] = ACTIONS(3238), + [sym_preproc_directive] = ACTIONS(3238), + [anon_sym_LPAREN2] = ACTIONS(3240), + [anon_sym_BANG] = ACTIONS(3240), + [anon_sym_TILDE] = ACTIONS(3240), + [anon_sym_DASH] = ACTIONS(3238), + [anon_sym_PLUS] = ACTIONS(3238), + [anon_sym_STAR] = ACTIONS(3240), + [anon_sym_AMP_AMP] = ACTIONS(3240), + [anon_sym_AMP] = ACTIONS(3238), + [anon_sym_SEMI] = ACTIONS(3240), + [anon_sym_typedef] = ACTIONS(3238), + [anon_sym_extern] = ACTIONS(3238), + [anon_sym___attribute__] = ACTIONS(3238), + [anon_sym_COLON_COLON] = ACTIONS(3240), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3240), + [anon_sym___declspec] = ACTIONS(3238), + [anon_sym___based] = ACTIONS(3238), + [anon_sym___cdecl] = ACTIONS(3238), + [anon_sym___clrcall] = ACTIONS(3238), + [anon_sym___stdcall] = ACTIONS(3238), + [anon_sym___fastcall] = ACTIONS(3238), + [anon_sym___thiscall] = ACTIONS(3238), + [anon_sym___vectorcall] = ACTIONS(3238), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_LBRACK] = ACTIONS(3238), + [anon_sym_static] = ACTIONS(3238), + [anon_sym_register] = ACTIONS(3238), + [anon_sym_inline] = ACTIONS(3238), + [anon_sym_thread_local] = ACTIONS(3238), + [anon_sym_const] = ACTIONS(3238), + [anon_sym_constexpr] = ACTIONS(3238), + [anon_sym_volatile] = ACTIONS(3238), + [anon_sym_restrict] = ACTIONS(3238), + [anon_sym___restrict__] = ACTIONS(3238), + [anon_sym__Atomic] = ACTIONS(3238), + [anon_sym__Noreturn] = ACTIONS(3238), + [anon_sym_noreturn] = ACTIONS(3238), + [anon_sym_mutable] = ACTIONS(3238), + [anon_sym_constinit] = ACTIONS(3238), + [anon_sym_consteval] = ACTIONS(3238), + [anon_sym_signed] = ACTIONS(3238), + [anon_sym_unsigned] = ACTIONS(3238), + [anon_sym_long] = ACTIONS(3238), + [anon_sym_short] = ACTIONS(3238), + [sym_primitive_type] = ACTIONS(3238), + [anon_sym_enum] = ACTIONS(3238), + [anon_sym_class] = ACTIONS(3238), + [anon_sym_struct] = ACTIONS(3238), + [anon_sym_union] = ACTIONS(3238), + [anon_sym_if] = ACTIONS(3238), + [anon_sym_switch] = ACTIONS(3238), + [anon_sym_case] = ACTIONS(3238), + [anon_sym_default] = ACTIONS(3238), + [anon_sym_while] = ACTIONS(3238), + [anon_sym_do] = ACTIONS(3238), + [anon_sym_for] = ACTIONS(3238), + [anon_sym_return] = ACTIONS(3238), + [anon_sym_break] = ACTIONS(3238), + [anon_sym_continue] = ACTIONS(3238), + [anon_sym_goto] = ACTIONS(3238), + [anon_sym_not] = ACTIONS(3238), + [anon_sym_compl] = ACTIONS(3238), + [anon_sym_DASH_DASH] = ACTIONS(3240), + [anon_sym_PLUS_PLUS] = ACTIONS(3240), + [anon_sym_sizeof] = ACTIONS(3238), + [anon_sym_offsetof] = ACTIONS(3238), + [anon_sym__Generic] = ACTIONS(3238), + [anon_sym_asm] = ACTIONS(3238), + [anon_sym___asm__] = ACTIONS(3238), + [sym_number_literal] = ACTIONS(3240), + [anon_sym_L_SQUOTE] = ACTIONS(3240), + [anon_sym_u_SQUOTE] = ACTIONS(3240), + [anon_sym_U_SQUOTE] = ACTIONS(3240), + [anon_sym_u8_SQUOTE] = ACTIONS(3240), + [anon_sym_SQUOTE] = ACTIONS(3240), + [anon_sym_L_DQUOTE] = ACTIONS(3240), + [anon_sym_u_DQUOTE] = ACTIONS(3240), + [anon_sym_U_DQUOTE] = ACTIONS(3240), + [anon_sym_u8_DQUOTE] = ACTIONS(3240), + [anon_sym_DQUOTE] = ACTIONS(3240), + [sym_true] = ACTIONS(3238), + [sym_false] = ACTIONS(3238), + [anon_sym_NULL] = ACTIONS(3238), + [anon_sym_nullptr] = ACTIONS(3238), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3238), + [anon_sym_decltype] = ACTIONS(3238), + [anon_sym_virtual] = ACTIONS(3238), + [anon_sym_explicit] = ACTIONS(3238), + [anon_sym_typename] = ACTIONS(3238), + [anon_sym_template] = ACTIONS(3238), + [anon_sym_operator] = ACTIONS(3238), + [anon_sym_try] = ACTIONS(3238), + [anon_sym_delete] = ACTIONS(3238), + [anon_sym_throw] = ACTIONS(3238), + [anon_sym_namespace] = ACTIONS(3238), + [anon_sym_using] = ACTIONS(3238), + [anon_sym_static_assert] = ACTIONS(3238), + [anon_sym_concept] = ACTIONS(3238), + [anon_sym_co_return] = ACTIONS(3238), + [anon_sym_co_yield] = ACTIONS(3238), + [anon_sym_R_DQUOTE] = ACTIONS(3240), + [anon_sym_LR_DQUOTE] = ACTIONS(3240), + [anon_sym_uR_DQUOTE] = ACTIONS(3240), + [anon_sym_UR_DQUOTE] = ACTIONS(3240), + [anon_sym_u8R_DQUOTE] = ACTIONS(3240), + [anon_sym_co_await] = ACTIONS(3238), + [anon_sym_new] = ACTIONS(3238), + [anon_sym_requires] = ACTIONS(3238), + [sym_this] = ACTIONS(3238), + }, + [796] = { + [sym_identifier] = ACTIONS(3150), + [aux_sym_preproc_include_token1] = ACTIONS(3150), + [aux_sym_preproc_def_token1] = ACTIONS(3150), + [aux_sym_preproc_if_token1] = ACTIONS(3150), + [aux_sym_preproc_if_token2] = ACTIONS(3150), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3150), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3150), + [aux_sym_preproc_else_token1] = ACTIONS(3150), + [aux_sym_preproc_elif_token1] = ACTIONS(3150), + [sym_preproc_directive] = ACTIONS(3150), + [anon_sym_LPAREN2] = ACTIONS(3152), + [anon_sym_BANG] = ACTIONS(3152), + [anon_sym_TILDE] = ACTIONS(3152), + [anon_sym_DASH] = ACTIONS(3150), + [anon_sym_PLUS] = ACTIONS(3150), + [anon_sym_STAR] = ACTIONS(3152), + [anon_sym_AMP_AMP] = ACTIONS(3152), + [anon_sym_AMP] = ACTIONS(3150), + [anon_sym_SEMI] = ACTIONS(3152), + [anon_sym_typedef] = ACTIONS(3150), + [anon_sym_extern] = ACTIONS(3150), + [anon_sym___attribute__] = ACTIONS(3150), + [anon_sym_COLON_COLON] = ACTIONS(3152), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3152), + [anon_sym___declspec] = ACTIONS(3150), + [anon_sym___based] = ACTIONS(3150), + [anon_sym___cdecl] = ACTIONS(3150), + [anon_sym___clrcall] = ACTIONS(3150), + [anon_sym___stdcall] = ACTIONS(3150), + [anon_sym___fastcall] = ACTIONS(3150), + [anon_sym___thiscall] = ACTIONS(3150), + [anon_sym___vectorcall] = ACTIONS(3150), + [anon_sym_LBRACE] = ACTIONS(3152), + [anon_sym_LBRACK] = ACTIONS(3150), + [anon_sym_static] = ACTIONS(3150), + [anon_sym_register] = ACTIONS(3150), + [anon_sym_inline] = ACTIONS(3150), + [anon_sym_thread_local] = ACTIONS(3150), + [anon_sym_const] = ACTIONS(3150), + [anon_sym_constexpr] = ACTIONS(3150), + [anon_sym_volatile] = ACTIONS(3150), + [anon_sym_restrict] = ACTIONS(3150), + [anon_sym___restrict__] = ACTIONS(3150), + [anon_sym__Atomic] = ACTIONS(3150), + [anon_sym__Noreturn] = ACTIONS(3150), + [anon_sym_noreturn] = ACTIONS(3150), + [anon_sym_mutable] = ACTIONS(3150), + [anon_sym_constinit] = ACTIONS(3150), + [anon_sym_consteval] = ACTIONS(3150), + [anon_sym_signed] = ACTIONS(3150), + [anon_sym_unsigned] = ACTIONS(3150), + [anon_sym_long] = ACTIONS(3150), + [anon_sym_short] = ACTIONS(3150), + [sym_primitive_type] = ACTIONS(3150), + [anon_sym_enum] = ACTIONS(3150), + [anon_sym_class] = ACTIONS(3150), + [anon_sym_struct] = ACTIONS(3150), + [anon_sym_union] = ACTIONS(3150), + [anon_sym_if] = ACTIONS(3150), + [anon_sym_switch] = ACTIONS(3150), + [anon_sym_case] = ACTIONS(3150), + [anon_sym_default] = ACTIONS(3150), + [anon_sym_while] = ACTIONS(3150), + [anon_sym_do] = ACTIONS(3150), + [anon_sym_for] = ACTIONS(3150), + [anon_sym_return] = ACTIONS(3150), + [anon_sym_break] = ACTIONS(3150), + [anon_sym_continue] = ACTIONS(3150), + [anon_sym_goto] = ACTIONS(3150), + [anon_sym_not] = ACTIONS(3150), + [anon_sym_compl] = ACTIONS(3150), + [anon_sym_DASH_DASH] = ACTIONS(3152), + [anon_sym_PLUS_PLUS] = ACTIONS(3152), + [anon_sym_sizeof] = ACTIONS(3150), + [anon_sym_offsetof] = ACTIONS(3150), + [anon_sym__Generic] = ACTIONS(3150), + [anon_sym_asm] = ACTIONS(3150), + [anon_sym___asm__] = ACTIONS(3150), + [sym_number_literal] = ACTIONS(3152), + [anon_sym_L_SQUOTE] = ACTIONS(3152), + [anon_sym_u_SQUOTE] = ACTIONS(3152), + [anon_sym_U_SQUOTE] = ACTIONS(3152), + [anon_sym_u8_SQUOTE] = ACTIONS(3152), + [anon_sym_SQUOTE] = ACTIONS(3152), + [anon_sym_L_DQUOTE] = ACTIONS(3152), + [anon_sym_u_DQUOTE] = ACTIONS(3152), + [anon_sym_U_DQUOTE] = ACTIONS(3152), + [anon_sym_u8_DQUOTE] = ACTIONS(3152), + [anon_sym_DQUOTE] = ACTIONS(3152), + [sym_true] = ACTIONS(3150), + [sym_false] = ACTIONS(3150), + [anon_sym_NULL] = ACTIONS(3150), + [anon_sym_nullptr] = ACTIONS(3150), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3150), + [anon_sym_decltype] = ACTIONS(3150), + [anon_sym_virtual] = ACTIONS(3150), + [anon_sym_explicit] = ACTIONS(3150), + [anon_sym_typename] = ACTIONS(3150), + [anon_sym_template] = ACTIONS(3150), + [anon_sym_operator] = ACTIONS(3150), + [anon_sym_try] = ACTIONS(3150), + [anon_sym_delete] = ACTIONS(3150), + [anon_sym_throw] = ACTIONS(3150), + [anon_sym_namespace] = ACTIONS(3150), + [anon_sym_using] = ACTIONS(3150), + [anon_sym_static_assert] = ACTIONS(3150), + [anon_sym_concept] = ACTIONS(3150), + [anon_sym_co_return] = ACTIONS(3150), + [anon_sym_co_yield] = ACTIONS(3150), + [anon_sym_R_DQUOTE] = ACTIONS(3152), + [anon_sym_LR_DQUOTE] = ACTIONS(3152), + [anon_sym_uR_DQUOTE] = ACTIONS(3152), + [anon_sym_UR_DQUOTE] = ACTIONS(3152), + [anon_sym_u8R_DQUOTE] = ACTIONS(3152), + [anon_sym_co_await] = ACTIONS(3150), + [anon_sym_new] = ACTIONS(3150), + [anon_sym_requires] = ACTIONS(3150), + [sym_this] = ACTIONS(3150), + }, + [797] = { + [sym_identifier] = ACTIONS(3164), + [aux_sym_preproc_include_token1] = ACTIONS(3164), + [aux_sym_preproc_def_token1] = ACTIONS(3164), + [aux_sym_preproc_if_token1] = ACTIONS(3164), + [aux_sym_preproc_if_token2] = ACTIONS(3164), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3164), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3164), + [aux_sym_preproc_else_token1] = ACTIONS(3164), + [aux_sym_preproc_elif_token1] = ACTIONS(3164), + [sym_preproc_directive] = ACTIONS(3164), + [anon_sym_LPAREN2] = ACTIONS(3166), + [anon_sym_BANG] = ACTIONS(3166), + [anon_sym_TILDE] = ACTIONS(3166), + [anon_sym_DASH] = ACTIONS(3164), + [anon_sym_PLUS] = ACTIONS(3164), + [anon_sym_STAR] = ACTIONS(3166), + [anon_sym_AMP_AMP] = ACTIONS(3166), + [anon_sym_AMP] = ACTIONS(3164), + [anon_sym_SEMI] = ACTIONS(3166), + [anon_sym_typedef] = ACTIONS(3164), + [anon_sym_extern] = ACTIONS(3164), + [anon_sym___attribute__] = ACTIONS(3164), + [anon_sym_COLON_COLON] = ACTIONS(3166), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3166), + [anon_sym___declspec] = ACTIONS(3164), + [anon_sym___based] = ACTIONS(3164), + [anon_sym___cdecl] = ACTIONS(3164), + [anon_sym___clrcall] = ACTIONS(3164), + [anon_sym___stdcall] = ACTIONS(3164), + [anon_sym___fastcall] = ACTIONS(3164), + [anon_sym___thiscall] = ACTIONS(3164), + [anon_sym___vectorcall] = ACTIONS(3164), + [anon_sym_LBRACE] = ACTIONS(3166), + [anon_sym_LBRACK] = ACTIONS(3164), + [anon_sym_static] = ACTIONS(3164), + [anon_sym_register] = ACTIONS(3164), + [anon_sym_inline] = ACTIONS(3164), + [anon_sym_thread_local] = ACTIONS(3164), + [anon_sym_const] = ACTIONS(3164), + [anon_sym_constexpr] = ACTIONS(3164), + [anon_sym_volatile] = ACTIONS(3164), + [anon_sym_restrict] = ACTIONS(3164), + [anon_sym___restrict__] = ACTIONS(3164), + [anon_sym__Atomic] = ACTIONS(3164), + [anon_sym__Noreturn] = ACTIONS(3164), + [anon_sym_noreturn] = ACTIONS(3164), + [anon_sym_mutable] = ACTIONS(3164), + [anon_sym_constinit] = ACTIONS(3164), + [anon_sym_consteval] = ACTIONS(3164), + [anon_sym_signed] = ACTIONS(3164), + [anon_sym_unsigned] = ACTIONS(3164), + [anon_sym_long] = ACTIONS(3164), + [anon_sym_short] = ACTIONS(3164), + [sym_primitive_type] = ACTIONS(3164), + [anon_sym_enum] = ACTIONS(3164), + [anon_sym_class] = ACTIONS(3164), + [anon_sym_struct] = ACTIONS(3164), + [anon_sym_union] = ACTIONS(3164), + [anon_sym_if] = ACTIONS(3164), + [anon_sym_switch] = ACTIONS(3164), + [anon_sym_case] = ACTIONS(3164), + [anon_sym_default] = ACTIONS(3164), + [anon_sym_while] = ACTIONS(3164), + [anon_sym_do] = ACTIONS(3164), + [anon_sym_for] = ACTIONS(3164), + [anon_sym_return] = ACTIONS(3164), + [anon_sym_break] = ACTIONS(3164), + [anon_sym_continue] = ACTIONS(3164), + [anon_sym_goto] = ACTIONS(3164), + [anon_sym_not] = ACTIONS(3164), + [anon_sym_compl] = ACTIONS(3164), + [anon_sym_DASH_DASH] = ACTIONS(3166), + [anon_sym_PLUS_PLUS] = ACTIONS(3166), + [anon_sym_sizeof] = ACTIONS(3164), + [anon_sym_offsetof] = ACTIONS(3164), + [anon_sym__Generic] = ACTIONS(3164), + [anon_sym_asm] = ACTIONS(3164), + [anon_sym___asm__] = ACTIONS(3164), + [sym_number_literal] = ACTIONS(3166), + [anon_sym_L_SQUOTE] = ACTIONS(3166), + [anon_sym_u_SQUOTE] = ACTIONS(3166), + [anon_sym_U_SQUOTE] = ACTIONS(3166), + [anon_sym_u8_SQUOTE] = ACTIONS(3166), + [anon_sym_SQUOTE] = ACTIONS(3166), + [anon_sym_L_DQUOTE] = ACTIONS(3166), + [anon_sym_u_DQUOTE] = ACTIONS(3166), + [anon_sym_U_DQUOTE] = ACTIONS(3166), + [anon_sym_u8_DQUOTE] = ACTIONS(3166), + [anon_sym_DQUOTE] = ACTIONS(3166), + [sym_true] = ACTIONS(3164), + [sym_false] = ACTIONS(3164), + [anon_sym_NULL] = ACTIONS(3164), + [anon_sym_nullptr] = ACTIONS(3164), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3164), + [anon_sym_decltype] = ACTIONS(3164), + [anon_sym_virtual] = ACTIONS(3164), + [anon_sym_explicit] = ACTIONS(3164), + [anon_sym_typename] = ACTIONS(3164), + [anon_sym_template] = ACTIONS(3164), + [anon_sym_operator] = ACTIONS(3164), + [anon_sym_try] = ACTIONS(3164), + [anon_sym_delete] = ACTIONS(3164), + [anon_sym_throw] = ACTIONS(3164), + [anon_sym_namespace] = ACTIONS(3164), + [anon_sym_using] = ACTIONS(3164), + [anon_sym_static_assert] = ACTIONS(3164), + [anon_sym_concept] = ACTIONS(3164), + [anon_sym_co_return] = ACTIONS(3164), + [anon_sym_co_yield] = ACTIONS(3164), + [anon_sym_R_DQUOTE] = ACTIONS(3166), + [anon_sym_LR_DQUOTE] = ACTIONS(3166), + [anon_sym_uR_DQUOTE] = ACTIONS(3166), + [anon_sym_UR_DQUOTE] = ACTIONS(3166), + [anon_sym_u8R_DQUOTE] = ACTIONS(3166), + [anon_sym_co_await] = ACTIONS(3164), + [anon_sym_new] = ACTIONS(3164), + [anon_sym_requires] = ACTIONS(3164), + [sym_this] = ACTIONS(3164), + }, + [798] = { + [sym_identifier] = ACTIONS(3286), + [aux_sym_preproc_include_token1] = ACTIONS(3286), + [aux_sym_preproc_def_token1] = ACTIONS(3286), + [aux_sym_preproc_if_token1] = ACTIONS(3286), + [aux_sym_preproc_if_token2] = ACTIONS(3286), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3286), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3286), + [aux_sym_preproc_else_token1] = ACTIONS(3286), + [aux_sym_preproc_elif_token1] = ACTIONS(3286), + [sym_preproc_directive] = ACTIONS(3286), + [anon_sym_LPAREN2] = ACTIONS(3288), + [anon_sym_BANG] = ACTIONS(3288), + [anon_sym_TILDE] = ACTIONS(3288), + [anon_sym_DASH] = ACTIONS(3286), + [anon_sym_PLUS] = ACTIONS(3286), + [anon_sym_STAR] = ACTIONS(3288), + [anon_sym_AMP_AMP] = ACTIONS(3288), + [anon_sym_AMP] = ACTIONS(3286), + [anon_sym_SEMI] = ACTIONS(3288), + [anon_sym_typedef] = ACTIONS(3286), + [anon_sym_extern] = ACTIONS(3286), + [anon_sym___attribute__] = ACTIONS(3286), + [anon_sym_COLON_COLON] = ACTIONS(3288), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3288), + [anon_sym___declspec] = ACTIONS(3286), + [anon_sym___based] = ACTIONS(3286), + [anon_sym___cdecl] = ACTIONS(3286), + [anon_sym___clrcall] = ACTIONS(3286), + [anon_sym___stdcall] = ACTIONS(3286), + [anon_sym___fastcall] = ACTIONS(3286), + [anon_sym___thiscall] = ACTIONS(3286), + [anon_sym___vectorcall] = ACTIONS(3286), + [anon_sym_LBRACE] = ACTIONS(3288), + [anon_sym_LBRACK] = ACTIONS(3286), + [anon_sym_static] = ACTIONS(3286), + [anon_sym_register] = ACTIONS(3286), + [anon_sym_inline] = ACTIONS(3286), + [anon_sym_thread_local] = ACTIONS(3286), + [anon_sym_const] = ACTIONS(3286), + [anon_sym_constexpr] = ACTIONS(3286), + [anon_sym_volatile] = ACTIONS(3286), + [anon_sym_restrict] = ACTIONS(3286), + [anon_sym___restrict__] = ACTIONS(3286), + [anon_sym__Atomic] = ACTIONS(3286), + [anon_sym__Noreturn] = ACTIONS(3286), + [anon_sym_noreturn] = ACTIONS(3286), + [anon_sym_mutable] = ACTIONS(3286), + [anon_sym_constinit] = ACTIONS(3286), + [anon_sym_consteval] = ACTIONS(3286), + [anon_sym_signed] = ACTIONS(3286), + [anon_sym_unsigned] = ACTIONS(3286), + [anon_sym_long] = ACTIONS(3286), + [anon_sym_short] = ACTIONS(3286), + [sym_primitive_type] = ACTIONS(3286), + [anon_sym_enum] = ACTIONS(3286), + [anon_sym_class] = ACTIONS(3286), + [anon_sym_struct] = ACTIONS(3286), + [anon_sym_union] = ACTIONS(3286), + [anon_sym_if] = ACTIONS(3286), + [anon_sym_switch] = ACTIONS(3286), + [anon_sym_case] = ACTIONS(3286), + [anon_sym_default] = ACTIONS(3286), + [anon_sym_while] = ACTIONS(3286), + [anon_sym_do] = ACTIONS(3286), + [anon_sym_for] = ACTIONS(3286), + [anon_sym_return] = ACTIONS(3286), + [anon_sym_break] = ACTIONS(3286), + [anon_sym_continue] = ACTIONS(3286), + [anon_sym_goto] = ACTIONS(3286), + [anon_sym_not] = ACTIONS(3286), + [anon_sym_compl] = ACTIONS(3286), + [anon_sym_DASH_DASH] = ACTIONS(3288), + [anon_sym_PLUS_PLUS] = ACTIONS(3288), + [anon_sym_sizeof] = ACTIONS(3286), + [anon_sym_offsetof] = ACTIONS(3286), + [anon_sym__Generic] = ACTIONS(3286), + [anon_sym_asm] = ACTIONS(3286), + [anon_sym___asm__] = ACTIONS(3286), + [sym_number_literal] = ACTIONS(3288), + [anon_sym_L_SQUOTE] = ACTIONS(3288), + [anon_sym_u_SQUOTE] = ACTIONS(3288), + [anon_sym_U_SQUOTE] = ACTIONS(3288), + [anon_sym_u8_SQUOTE] = ACTIONS(3288), + [anon_sym_SQUOTE] = ACTIONS(3288), + [anon_sym_L_DQUOTE] = ACTIONS(3288), + [anon_sym_u_DQUOTE] = ACTIONS(3288), + [anon_sym_U_DQUOTE] = ACTIONS(3288), + [anon_sym_u8_DQUOTE] = ACTIONS(3288), + [anon_sym_DQUOTE] = ACTIONS(3288), + [sym_true] = ACTIONS(3286), + [sym_false] = ACTIONS(3286), + [anon_sym_NULL] = ACTIONS(3286), + [anon_sym_nullptr] = ACTIONS(3286), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3286), + [anon_sym_decltype] = ACTIONS(3286), + [anon_sym_virtual] = ACTIONS(3286), + [anon_sym_explicit] = ACTIONS(3286), + [anon_sym_typename] = ACTIONS(3286), + [anon_sym_template] = ACTIONS(3286), + [anon_sym_operator] = ACTIONS(3286), + [anon_sym_try] = ACTIONS(3286), + [anon_sym_delete] = ACTIONS(3286), + [anon_sym_throw] = ACTIONS(3286), + [anon_sym_namespace] = ACTIONS(3286), + [anon_sym_using] = ACTIONS(3286), + [anon_sym_static_assert] = ACTIONS(3286), + [anon_sym_concept] = ACTIONS(3286), + [anon_sym_co_return] = ACTIONS(3286), + [anon_sym_co_yield] = ACTIONS(3286), + [anon_sym_R_DQUOTE] = ACTIONS(3288), + [anon_sym_LR_DQUOTE] = ACTIONS(3288), + [anon_sym_uR_DQUOTE] = ACTIONS(3288), + [anon_sym_UR_DQUOTE] = ACTIONS(3288), + [anon_sym_u8R_DQUOTE] = ACTIONS(3288), + [anon_sym_co_await] = ACTIONS(3286), + [anon_sym_new] = ACTIONS(3286), + [anon_sym_requires] = ACTIONS(3286), + [sym_this] = ACTIONS(3286), + }, + [799] = { + [sym_identifier] = ACTIONS(3290), + [aux_sym_preproc_include_token1] = ACTIONS(3290), + [aux_sym_preproc_def_token1] = ACTIONS(3290), + [aux_sym_preproc_if_token1] = ACTIONS(3290), + [aux_sym_preproc_if_token2] = ACTIONS(3290), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3290), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3290), + [aux_sym_preproc_else_token1] = ACTIONS(3290), + [aux_sym_preproc_elif_token1] = ACTIONS(3290), + [sym_preproc_directive] = ACTIONS(3290), + [anon_sym_LPAREN2] = ACTIONS(3292), + [anon_sym_BANG] = ACTIONS(3292), + [anon_sym_TILDE] = ACTIONS(3292), + [anon_sym_DASH] = ACTIONS(3290), + [anon_sym_PLUS] = ACTIONS(3290), + [anon_sym_STAR] = ACTIONS(3292), + [anon_sym_AMP_AMP] = ACTIONS(3292), + [anon_sym_AMP] = ACTIONS(3290), + [anon_sym_SEMI] = ACTIONS(3292), + [anon_sym_typedef] = ACTIONS(3290), + [anon_sym_extern] = ACTIONS(3290), + [anon_sym___attribute__] = ACTIONS(3290), + [anon_sym_COLON_COLON] = ACTIONS(3292), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3292), + [anon_sym___declspec] = ACTIONS(3290), + [anon_sym___based] = ACTIONS(3290), + [anon_sym___cdecl] = ACTIONS(3290), + [anon_sym___clrcall] = ACTIONS(3290), + [anon_sym___stdcall] = ACTIONS(3290), + [anon_sym___fastcall] = ACTIONS(3290), + [anon_sym___thiscall] = ACTIONS(3290), + [anon_sym___vectorcall] = ACTIONS(3290), + [anon_sym_LBRACE] = ACTIONS(3292), + [anon_sym_LBRACK] = ACTIONS(3290), + [anon_sym_static] = ACTIONS(3290), + [anon_sym_register] = ACTIONS(3290), + [anon_sym_inline] = ACTIONS(3290), + [anon_sym_thread_local] = ACTIONS(3290), + [anon_sym_const] = ACTIONS(3290), + [anon_sym_constexpr] = ACTIONS(3290), + [anon_sym_volatile] = ACTIONS(3290), + [anon_sym_restrict] = ACTIONS(3290), + [anon_sym___restrict__] = ACTIONS(3290), + [anon_sym__Atomic] = ACTIONS(3290), + [anon_sym__Noreturn] = ACTIONS(3290), + [anon_sym_noreturn] = ACTIONS(3290), + [anon_sym_mutable] = ACTIONS(3290), + [anon_sym_constinit] = ACTIONS(3290), + [anon_sym_consteval] = ACTIONS(3290), + [anon_sym_signed] = ACTIONS(3290), + [anon_sym_unsigned] = ACTIONS(3290), + [anon_sym_long] = ACTIONS(3290), + [anon_sym_short] = ACTIONS(3290), + [sym_primitive_type] = ACTIONS(3290), + [anon_sym_enum] = ACTIONS(3290), + [anon_sym_class] = ACTIONS(3290), + [anon_sym_struct] = ACTIONS(3290), + [anon_sym_union] = ACTIONS(3290), + [anon_sym_if] = ACTIONS(3290), + [anon_sym_switch] = ACTIONS(3290), + [anon_sym_case] = ACTIONS(3290), + [anon_sym_default] = ACTIONS(3290), + [anon_sym_while] = ACTIONS(3290), + [anon_sym_do] = ACTIONS(3290), + [anon_sym_for] = ACTIONS(3290), + [anon_sym_return] = ACTIONS(3290), + [anon_sym_break] = ACTIONS(3290), + [anon_sym_continue] = ACTIONS(3290), + [anon_sym_goto] = ACTIONS(3290), + [anon_sym_not] = ACTIONS(3290), + [anon_sym_compl] = ACTIONS(3290), + [anon_sym_DASH_DASH] = ACTIONS(3292), + [anon_sym_PLUS_PLUS] = ACTIONS(3292), + [anon_sym_sizeof] = ACTIONS(3290), + [anon_sym_offsetof] = ACTIONS(3290), + [anon_sym__Generic] = ACTIONS(3290), + [anon_sym_asm] = ACTIONS(3290), + [anon_sym___asm__] = ACTIONS(3290), + [sym_number_literal] = ACTIONS(3292), + [anon_sym_L_SQUOTE] = ACTIONS(3292), + [anon_sym_u_SQUOTE] = ACTIONS(3292), + [anon_sym_U_SQUOTE] = ACTIONS(3292), + [anon_sym_u8_SQUOTE] = ACTIONS(3292), + [anon_sym_SQUOTE] = ACTIONS(3292), + [anon_sym_L_DQUOTE] = ACTIONS(3292), + [anon_sym_u_DQUOTE] = ACTIONS(3292), + [anon_sym_U_DQUOTE] = ACTIONS(3292), + [anon_sym_u8_DQUOTE] = ACTIONS(3292), + [anon_sym_DQUOTE] = ACTIONS(3292), + [sym_true] = ACTIONS(3290), + [sym_false] = ACTIONS(3290), + [anon_sym_NULL] = ACTIONS(3290), + [anon_sym_nullptr] = ACTIONS(3290), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3290), + [anon_sym_decltype] = ACTIONS(3290), + [anon_sym_virtual] = ACTIONS(3290), + [anon_sym_explicit] = ACTIONS(3290), + [anon_sym_typename] = ACTIONS(3290), + [anon_sym_template] = ACTIONS(3290), + [anon_sym_operator] = ACTIONS(3290), + [anon_sym_try] = ACTIONS(3290), + [anon_sym_delete] = ACTIONS(3290), + [anon_sym_throw] = ACTIONS(3290), + [anon_sym_namespace] = ACTIONS(3290), + [anon_sym_using] = ACTIONS(3290), + [anon_sym_static_assert] = ACTIONS(3290), + [anon_sym_concept] = ACTIONS(3290), + [anon_sym_co_return] = ACTIONS(3290), + [anon_sym_co_yield] = ACTIONS(3290), + [anon_sym_R_DQUOTE] = ACTIONS(3292), + [anon_sym_LR_DQUOTE] = ACTIONS(3292), + [anon_sym_uR_DQUOTE] = ACTIONS(3292), + [anon_sym_UR_DQUOTE] = ACTIONS(3292), + [anon_sym_u8R_DQUOTE] = ACTIONS(3292), + [anon_sym_co_await] = ACTIONS(3290), + [anon_sym_new] = ACTIONS(3290), + [anon_sym_requires] = ACTIONS(3290), + [sym_this] = ACTIONS(3290), + }, + [800] = { [sym_identifier] = ACTIONS(2536), [aux_sym_preproc_include_token1] = ACTIONS(2536), [aux_sym_preproc_def_token1] = ACTIONS(2536), @@ -125664,20 +155362,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_LPAREN2] = ACTIONS(2534), + [anon_sym_BANG] = ACTIONS(2534), + [anon_sym_TILDE] = ACTIONS(2534), [anon_sym_DASH] = ACTIONS(2536), [anon_sym_PLUS] = ACTIONS(2536), - [anon_sym_STAR] = ACTIONS(2538), - [anon_sym_AMP_AMP] = ACTIONS(2538), + [anon_sym_STAR] = ACTIONS(2534), + [anon_sym_AMP_AMP] = ACTIONS(2534), [anon_sym_AMP] = ACTIONS(2536), - [anon_sym_SEMI] = ACTIONS(2538), + [anon_sym_SEMI] = ACTIONS(2534), [anon_sym_typedef] = ACTIONS(2536), [anon_sym_extern] = ACTIONS(2536), [anon_sym___attribute__] = ACTIONS(2536), - [anon_sym_COLON_COLON] = ACTIONS(2538), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2538), + [anon_sym_COLON_COLON] = ACTIONS(2534), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2534), [anon_sym___declspec] = ACTIONS(2536), [anon_sym___based] = ACTIONS(2536), [anon_sym___cdecl] = ACTIONS(2536), @@ -125686,19 +155384,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_LBRACE] = ACTIONS(2534), + [anon_sym_RBRACE] = ACTIONS(2534), [anon_sym_LBRACK] = ACTIONS(2536), [anon_sym_static] = ACTIONS(2536), [anon_sym_register] = ACTIONS(2536), [anon_sym_inline] = ACTIONS(2536), [anon_sym_thread_local] = 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_noreturn] = ACTIONS(2536), [anon_sym_mutable] = ACTIONS(2536), - [anon_sym_constexpr] = ACTIONS(2536), [anon_sym_constinit] = ACTIONS(2536), [anon_sym_consteval] = ACTIONS(2536), [anon_sym_signed] = ACTIONS(2536), @@ -125724,23 +155425,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_goto] = ACTIONS(2536), [anon_sym_not] = ACTIONS(2536), [anon_sym_compl] = ACTIONS(2536), - [anon_sym_DASH_DASH] = ACTIONS(2538), - [anon_sym_PLUS_PLUS] = ACTIONS(2538), + [anon_sym_DASH_DASH] = ACTIONS(2534), + [anon_sym_PLUS_PLUS] = ACTIONS(2534), [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2538), - [anon_sym_u_DQUOTE] = ACTIONS(2538), - [anon_sym_U_DQUOTE] = ACTIONS(2538), - [anon_sym_u8_DQUOTE] = ACTIONS(2538), - [anon_sym_DQUOTE] = ACTIONS(2538), - [sym_true] = ACTIONS(2536), + [anon_sym_offsetof] = ACTIONS(2536), + [anon_sym__Generic] = ACTIONS(2536), + [anon_sym_asm] = ACTIONS(2536), + [anon_sym___asm__] = ACTIONS(2536), + [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_L_DQUOTE] = ACTIONS(2534), + [anon_sym_u_DQUOTE] = ACTIONS(2534), + [anon_sym_U_DQUOTE] = ACTIONS(2534), + [anon_sym_u8_DQUOTE] = ACTIONS(2534), + [anon_sym_DQUOTE] = ACTIONS(2534), + [sym_true] = ACTIONS(2536), [sym_false] = ACTIONS(2536), - [sym_null] = ACTIONS(2536), + [anon_sym_NULL] = ACTIONS(2536), + [anon_sym_nullptr] = ACTIONS(2536), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(2536), [anon_sym_decltype] = ACTIONS(2536), @@ -125758,15382 +155464,8440 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_concept] = ACTIONS(2536), [anon_sym_co_return] = ACTIONS(2536), [anon_sym_co_yield] = ACTIONS(2536), - [anon_sym_R_DQUOTE] = ACTIONS(2538), - [anon_sym_LR_DQUOTE] = ACTIONS(2538), - [anon_sym_uR_DQUOTE] = ACTIONS(2538), - [anon_sym_UR_DQUOTE] = ACTIONS(2538), - [anon_sym_u8R_DQUOTE] = ACTIONS(2538), - [anon_sym_co_await] = ACTIONS(2536), - [anon_sym_new] = ACTIONS(2536), - [anon_sym_requires] = ACTIONS(2536), - [sym_this] = ACTIONS(2536), - [sym_nullptr] = ACTIONS(2536), - }, - [782] = { - [sym_identifier] = ACTIONS(2532), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2534), - [anon_sym_AMP] = ACTIONS(2532), - [anon_sym_SEMI] = ACTIONS(2534), - [anon_sym_typedef] = ACTIONS(2532), - [anon_sym_extern] = ACTIONS(2532), - [anon_sym___attribute__] = ACTIONS(2532), - [anon_sym_COLON_COLON] = ACTIONS(2534), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2534), - [anon_sym___declspec] = ACTIONS(2532), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2532), - [anon_sym_static] = ACTIONS(2532), - [anon_sym_register] = ACTIONS(2532), - [anon_sym_inline] = ACTIONS(2532), - [anon_sym_thread_local] = ACTIONS(2532), - [anon_sym_const] = ACTIONS(2532), - [anon_sym_volatile] = ACTIONS(2532), - [anon_sym_restrict] = ACTIONS(2532), - [anon_sym__Atomic] = ACTIONS(2532), - [anon_sym_mutable] = ACTIONS(2532), - [anon_sym_constexpr] = ACTIONS(2532), - [anon_sym_constinit] = ACTIONS(2532), - [anon_sym_consteval] = ACTIONS(2532), - [anon_sym_signed] = ACTIONS(2532), - [anon_sym_unsigned] = ACTIONS(2532), - [anon_sym_long] = ACTIONS(2532), - [anon_sym_short] = ACTIONS(2532), - [sym_primitive_type] = ACTIONS(2532), - [anon_sym_enum] = ACTIONS(2532), - [anon_sym_class] = 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_return] = ACTIONS(2532), - [anon_sym_break] = ACTIONS(2532), - [anon_sym_continue] = ACTIONS(2532), - [anon_sym_goto] = ACTIONS(2532), - [anon_sym_not] = ACTIONS(2532), - [anon_sym_compl] = ACTIONS(2532), - [anon_sym_DASH_DASH] = ACTIONS(2534), - [anon_sym_PLUS_PLUS] = ACTIONS(2534), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2534), - [anon_sym_u_DQUOTE] = ACTIONS(2534), - [anon_sym_U_DQUOTE] = ACTIONS(2534), - [anon_sym_u8_DQUOTE] = ACTIONS(2534), - [anon_sym_DQUOTE] = ACTIONS(2534), - [sym_true] = ACTIONS(2532), - [sym_false] = ACTIONS(2532), - [sym_null] = ACTIONS(2532), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2532), - [anon_sym_decltype] = ACTIONS(2532), - [anon_sym_virtual] = ACTIONS(2532), - [anon_sym_explicit] = ACTIONS(2532), - [anon_sym_typename] = ACTIONS(2532), - [anon_sym_template] = ACTIONS(2532), - [anon_sym_operator] = ACTIONS(2532), - [anon_sym_try] = ACTIONS(2532), - [anon_sym_delete] = ACTIONS(2532), - [anon_sym_throw] = ACTIONS(2532), - [anon_sym_namespace] = ACTIONS(2532), - [anon_sym_using] = ACTIONS(2532), - [anon_sym_static_assert] = ACTIONS(2532), - [anon_sym_concept] = ACTIONS(2532), - [anon_sym_co_return] = ACTIONS(2532), - [anon_sym_co_yield] = ACTIONS(2532), + [anon_sym_catch] = ACTIONS(2536), [anon_sym_R_DQUOTE] = ACTIONS(2534), [anon_sym_LR_DQUOTE] = ACTIONS(2534), [anon_sym_uR_DQUOTE] = ACTIONS(2534), [anon_sym_UR_DQUOTE] = ACTIONS(2534), [anon_sym_u8R_DQUOTE] = ACTIONS(2534), - [anon_sym_co_await] = ACTIONS(2532), - [anon_sym_new] = ACTIONS(2532), - [anon_sym_requires] = ACTIONS(2532), - [sym_this] = ACTIONS(2532), - [sym_nullptr] = ACTIONS(2532), - }, - [783] = { - [sym_identifier] = ACTIONS(2522), - [aux_sym_preproc_include_token1] = ACTIONS(2522), - [aux_sym_preproc_def_token1] = ACTIONS(2522), - [aux_sym_preproc_if_token1] = ACTIONS(2522), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2522), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2522), - [sym_preproc_directive] = ACTIONS(2522), - [anon_sym_LPAREN2] = ACTIONS(2524), - [anon_sym_BANG] = ACTIONS(2524), - [anon_sym_TILDE] = ACTIONS(2524), - [anon_sym_DASH] = ACTIONS(2522), - [anon_sym_PLUS] = ACTIONS(2522), - [anon_sym_STAR] = ACTIONS(2524), - [anon_sym_AMP_AMP] = ACTIONS(2524), - [anon_sym_AMP] = ACTIONS(2522), - [anon_sym_SEMI] = ACTIONS(2524), - [anon_sym_typedef] = ACTIONS(2522), - [anon_sym_extern] = ACTIONS(2522), - [anon_sym___attribute__] = ACTIONS(2522), - [anon_sym_COLON_COLON] = ACTIONS(2524), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2524), - [anon_sym___declspec] = ACTIONS(2522), - [anon_sym___based] = ACTIONS(2522), - [anon_sym___cdecl] = ACTIONS(2522), - [anon_sym___clrcall] = ACTIONS(2522), - [anon_sym___stdcall] = ACTIONS(2522), - [anon_sym___fastcall] = ACTIONS(2522), - [anon_sym___thiscall] = ACTIONS(2522), - [anon_sym___vectorcall] = ACTIONS(2522), - [anon_sym_LBRACE] = ACTIONS(2524), - [anon_sym_RBRACE] = ACTIONS(2524), - [anon_sym_LBRACK] = ACTIONS(2522), - [anon_sym_static] = ACTIONS(2522), - [anon_sym_register] = ACTIONS(2522), - [anon_sym_inline] = ACTIONS(2522), - [anon_sym_thread_local] = ACTIONS(2522), - [anon_sym_const] = ACTIONS(2522), - [anon_sym_volatile] = ACTIONS(2522), - [anon_sym_restrict] = ACTIONS(2522), - [anon_sym__Atomic] = ACTIONS(2522), - [anon_sym_mutable] = ACTIONS(2522), - [anon_sym_constexpr] = ACTIONS(2522), - [anon_sym_constinit] = ACTIONS(2522), - [anon_sym_consteval] = ACTIONS(2522), - [anon_sym_signed] = ACTIONS(2522), - [anon_sym_unsigned] = ACTIONS(2522), - [anon_sym_long] = ACTIONS(2522), - [anon_sym_short] = ACTIONS(2522), - [sym_primitive_type] = ACTIONS(2522), - [anon_sym_enum] = ACTIONS(2522), - [anon_sym_class] = ACTIONS(2522), - [anon_sym_struct] = ACTIONS(2522), - [anon_sym_union] = ACTIONS(2522), - [anon_sym_if] = ACTIONS(2522), - [anon_sym_else] = ACTIONS(2522), - [anon_sym_switch] = ACTIONS(2522), - [anon_sym_case] = ACTIONS(2522), - [anon_sym_default] = ACTIONS(2522), - [anon_sym_while] = ACTIONS(2522), - [anon_sym_do] = ACTIONS(2522), - [anon_sym_for] = ACTIONS(2522), - [anon_sym_return] = ACTIONS(2522), - [anon_sym_break] = ACTIONS(2522), - [anon_sym_continue] = ACTIONS(2522), - [anon_sym_goto] = ACTIONS(2522), - [anon_sym_not] = ACTIONS(2522), - [anon_sym_compl] = ACTIONS(2522), - [anon_sym_DASH_DASH] = ACTIONS(2524), - [anon_sym_PLUS_PLUS] = ACTIONS(2524), - [anon_sym_sizeof] = ACTIONS(2522), - [sym_number_literal] = ACTIONS(2524), - [anon_sym_L_SQUOTE] = ACTIONS(2524), - [anon_sym_u_SQUOTE] = ACTIONS(2524), - [anon_sym_U_SQUOTE] = ACTIONS(2524), - [anon_sym_u8_SQUOTE] = ACTIONS(2524), - [anon_sym_SQUOTE] = ACTIONS(2524), - [anon_sym_L_DQUOTE] = ACTIONS(2524), - [anon_sym_u_DQUOTE] = ACTIONS(2524), - [anon_sym_U_DQUOTE] = ACTIONS(2524), - [anon_sym_u8_DQUOTE] = ACTIONS(2524), - [anon_sym_DQUOTE] = ACTIONS(2524), - [sym_true] = ACTIONS(2522), - [sym_false] = ACTIONS(2522), - [sym_null] = ACTIONS(2522), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2522), - [anon_sym_decltype] = ACTIONS(2522), - [anon_sym_virtual] = ACTIONS(2522), - [anon_sym_explicit] = ACTIONS(2522), - [anon_sym_typename] = ACTIONS(2522), - [anon_sym_template] = ACTIONS(2522), - [anon_sym_operator] = ACTIONS(2522), - [anon_sym_try] = ACTIONS(2522), - [anon_sym_delete] = ACTIONS(2522), - [anon_sym_throw] = ACTIONS(2522), - [anon_sym_namespace] = ACTIONS(2522), - [anon_sym_using] = ACTIONS(2522), - [anon_sym_static_assert] = ACTIONS(2522), - [anon_sym_concept] = ACTIONS(2522), - [anon_sym_co_return] = ACTIONS(2522), - [anon_sym_co_yield] = ACTIONS(2522), - [anon_sym_R_DQUOTE] = ACTIONS(2524), - [anon_sym_LR_DQUOTE] = ACTIONS(2524), - [anon_sym_uR_DQUOTE] = ACTIONS(2524), - [anon_sym_UR_DQUOTE] = ACTIONS(2524), - [anon_sym_u8R_DQUOTE] = ACTIONS(2524), - [anon_sym_co_await] = ACTIONS(2522), - [anon_sym_new] = ACTIONS(2522), - [anon_sym_requires] = ACTIONS(2522), - [sym_this] = ACTIONS(2522), - [sym_nullptr] = ACTIONS(2522), - }, - [784] = { - [sym_identifier] = ACTIONS(2568), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2570), - [anon_sym_AMP] = ACTIONS(2568), - [anon_sym_SEMI] = ACTIONS(2570), - [anon_sym_typedef] = ACTIONS(2568), - [anon_sym_extern] = ACTIONS(2568), - [anon_sym___attribute__] = ACTIONS(2568), - [anon_sym_COLON_COLON] = ACTIONS(2570), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2570), - [anon_sym___declspec] = ACTIONS(2568), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2568), - [anon_sym_static] = ACTIONS(2568), - [anon_sym_register] = ACTIONS(2568), - [anon_sym_inline] = ACTIONS(2568), - [anon_sym_thread_local] = ACTIONS(2568), - [anon_sym_const] = ACTIONS(2568), - [anon_sym_volatile] = ACTIONS(2568), - [anon_sym_restrict] = ACTIONS(2568), - [anon_sym__Atomic] = ACTIONS(2568), - [anon_sym_mutable] = ACTIONS(2568), - [anon_sym_constexpr] = ACTIONS(2568), - [anon_sym_constinit] = ACTIONS(2568), - [anon_sym_consteval] = ACTIONS(2568), - [anon_sym_signed] = ACTIONS(2568), - [anon_sym_unsigned] = ACTIONS(2568), - [anon_sym_long] = ACTIONS(2568), - [anon_sym_short] = ACTIONS(2568), - [sym_primitive_type] = ACTIONS(2568), - [anon_sym_enum] = ACTIONS(2568), - [anon_sym_class] = 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_return] = ACTIONS(2568), - [anon_sym_break] = ACTIONS(2568), - [anon_sym_continue] = ACTIONS(2568), - [anon_sym_goto] = ACTIONS(2568), - [anon_sym_not] = ACTIONS(2568), - [anon_sym_compl] = ACTIONS(2568), - [anon_sym_DASH_DASH] = ACTIONS(2570), - [anon_sym_PLUS_PLUS] = ACTIONS(2570), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2570), - [anon_sym_u_DQUOTE] = ACTIONS(2570), - [anon_sym_U_DQUOTE] = ACTIONS(2570), - [anon_sym_u8_DQUOTE] = ACTIONS(2570), - [anon_sym_DQUOTE] = ACTIONS(2570), - [sym_true] = ACTIONS(2568), - [sym_false] = ACTIONS(2568), - [sym_null] = ACTIONS(2568), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2568), - [anon_sym_decltype] = ACTIONS(2568), - [anon_sym_virtual] = ACTIONS(2568), - [anon_sym_explicit] = ACTIONS(2568), - [anon_sym_typename] = ACTIONS(2568), - [anon_sym_template] = ACTIONS(2568), - [anon_sym_operator] = ACTIONS(2568), - [anon_sym_try] = ACTIONS(2568), - [anon_sym_delete] = ACTIONS(2568), - [anon_sym_throw] = ACTIONS(2568), - [anon_sym_namespace] = ACTIONS(2568), - [anon_sym_using] = ACTIONS(2568), - [anon_sym_static_assert] = ACTIONS(2568), - [anon_sym_concept] = ACTIONS(2568), - [anon_sym_co_return] = ACTIONS(2568), - [anon_sym_co_yield] = ACTIONS(2568), - [anon_sym_R_DQUOTE] = ACTIONS(2570), - [anon_sym_LR_DQUOTE] = ACTIONS(2570), - [anon_sym_uR_DQUOTE] = ACTIONS(2570), - [anon_sym_UR_DQUOTE] = ACTIONS(2570), - [anon_sym_u8R_DQUOTE] = ACTIONS(2570), - [anon_sym_co_await] = ACTIONS(2568), - [anon_sym_new] = ACTIONS(2568), - [anon_sym_requires] = ACTIONS(2568), - [sym_this] = ACTIONS(2568), - [sym_nullptr] = ACTIONS(2568), - }, - [785] = { - [sym_identifier] = ACTIONS(2496), - [aux_sym_preproc_include_token1] = ACTIONS(2496), - [aux_sym_preproc_def_token1] = ACTIONS(2496), - [aux_sym_preproc_if_token1] = ACTIONS(2496), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2496), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2496), - [sym_preproc_directive] = ACTIONS(2496), - [anon_sym_LPAREN2] = ACTIONS(2498), - [anon_sym_BANG] = ACTIONS(2498), - [anon_sym_TILDE] = ACTIONS(2498), - [anon_sym_DASH] = ACTIONS(2496), - [anon_sym_PLUS] = ACTIONS(2496), - [anon_sym_STAR] = ACTIONS(2498), - [anon_sym_AMP_AMP] = ACTIONS(2498), - [anon_sym_AMP] = ACTIONS(2496), - [anon_sym_SEMI] = ACTIONS(2498), - [anon_sym_typedef] = ACTIONS(2496), - [anon_sym_extern] = ACTIONS(2496), - [anon_sym___attribute__] = ACTIONS(2496), - [anon_sym_COLON_COLON] = ACTIONS(2498), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2498), - [anon_sym___declspec] = ACTIONS(2496), - [anon_sym___based] = ACTIONS(2496), - [anon_sym___cdecl] = ACTIONS(2496), - [anon_sym___clrcall] = ACTIONS(2496), - [anon_sym___stdcall] = ACTIONS(2496), - [anon_sym___fastcall] = ACTIONS(2496), - [anon_sym___thiscall] = ACTIONS(2496), - [anon_sym___vectorcall] = ACTIONS(2496), - [anon_sym_LBRACE] = ACTIONS(2498), - [anon_sym_RBRACE] = ACTIONS(2498), - [anon_sym_LBRACK] = ACTIONS(2496), - [anon_sym_static] = ACTIONS(2496), - [anon_sym_register] = ACTIONS(2496), - [anon_sym_inline] = ACTIONS(2496), - [anon_sym_thread_local] = ACTIONS(2496), - [anon_sym_const] = ACTIONS(2496), - [anon_sym_volatile] = ACTIONS(2496), - [anon_sym_restrict] = ACTIONS(2496), - [anon_sym__Atomic] = ACTIONS(2496), - [anon_sym_mutable] = ACTIONS(2496), - [anon_sym_constexpr] = ACTIONS(2496), - [anon_sym_constinit] = ACTIONS(2496), - [anon_sym_consteval] = ACTIONS(2496), - [anon_sym_signed] = ACTIONS(2496), - [anon_sym_unsigned] = ACTIONS(2496), - [anon_sym_long] = ACTIONS(2496), - [anon_sym_short] = ACTIONS(2496), - [sym_primitive_type] = ACTIONS(2496), - [anon_sym_enum] = ACTIONS(2496), - [anon_sym_class] = ACTIONS(2496), - [anon_sym_struct] = ACTIONS(2496), - [anon_sym_union] = ACTIONS(2496), - [anon_sym_if] = ACTIONS(2496), - [anon_sym_else] = ACTIONS(2496), - [anon_sym_switch] = ACTIONS(2496), - [anon_sym_case] = ACTIONS(2496), - [anon_sym_default] = ACTIONS(2496), - [anon_sym_while] = ACTIONS(2496), - [anon_sym_do] = ACTIONS(2496), - [anon_sym_for] = ACTIONS(2496), - [anon_sym_return] = ACTIONS(2496), - [anon_sym_break] = ACTIONS(2496), - [anon_sym_continue] = ACTIONS(2496), - [anon_sym_goto] = ACTIONS(2496), - [anon_sym_not] = ACTIONS(2496), - [anon_sym_compl] = ACTIONS(2496), - [anon_sym_DASH_DASH] = ACTIONS(2498), - [anon_sym_PLUS_PLUS] = ACTIONS(2498), - [anon_sym_sizeof] = ACTIONS(2496), - [sym_number_literal] = ACTIONS(2498), - [anon_sym_L_SQUOTE] = ACTIONS(2498), - [anon_sym_u_SQUOTE] = ACTIONS(2498), - [anon_sym_U_SQUOTE] = ACTIONS(2498), - [anon_sym_u8_SQUOTE] = ACTIONS(2498), - [anon_sym_SQUOTE] = ACTIONS(2498), - [anon_sym_L_DQUOTE] = ACTIONS(2498), - [anon_sym_u_DQUOTE] = ACTIONS(2498), - [anon_sym_U_DQUOTE] = ACTIONS(2498), - [anon_sym_u8_DQUOTE] = ACTIONS(2498), - [anon_sym_DQUOTE] = ACTIONS(2498), - [sym_true] = ACTIONS(2496), - [sym_false] = ACTIONS(2496), - [sym_null] = ACTIONS(2496), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2496), - [anon_sym_decltype] = ACTIONS(2496), - [anon_sym_virtual] = ACTIONS(2496), - [anon_sym_explicit] = ACTIONS(2496), - [anon_sym_typename] = ACTIONS(2496), - [anon_sym_template] = ACTIONS(2496), - [anon_sym_operator] = ACTIONS(2496), - [anon_sym_try] = ACTIONS(2496), - [anon_sym_delete] = ACTIONS(2496), - [anon_sym_throw] = ACTIONS(2496), - [anon_sym_namespace] = ACTIONS(2496), - [anon_sym_using] = ACTIONS(2496), - [anon_sym_static_assert] = ACTIONS(2496), - [anon_sym_concept] = ACTIONS(2496), - [anon_sym_co_return] = ACTIONS(2496), - [anon_sym_co_yield] = ACTIONS(2496), - [anon_sym_R_DQUOTE] = ACTIONS(2498), - [anon_sym_LR_DQUOTE] = ACTIONS(2498), - [anon_sym_uR_DQUOTE] = ACTIONS(2498), - [anon_sym_UR_DQUOTE] = ACTIONS(2498), - [anon_sym_u8R_DQUOTE] = ACTIONS(2498), - [anon_sym_co_await] = ACTIONS(2496), - [anon_sym_new] = ACTIONS(2496), - [anon_sym_requires] = ACTIONS(2496), - [sym_this] = ACTIONS(2496), - [sym_nullptr] = ACTIONS(2496), - }, - [786] = { - [sym_identifier] = ACTIONS(2474), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2476), - [anon_sym_AMP] = ACTIONS(2474), - [anon_sym_SEMI] = ACTIONS(2476), - [anon_sym_typedef] = ACTIONS(2474), - [anon_sym_extern] = ACTIONS(2474), - [anon_sym___attribute__] = ACTIONS(2474), - [anon_sym_COLON_COLON] = ACTIONS(2476), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2476), - [anon_sym___declspec] = ACTIONS(2474), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2474), - [anon_sym_static] = ACTIONS(2474), - [anon_sym_register] = ACTIONS(2474), - [anon_sym_inline] = ACTIONS(2474), - [anon_sym_thread_local] = ACTIONS(2474), - [anon_sym_const] = ACTIONS(2474), - [anon_sym_volatile] = ACTIONS(2474), - [anon_sym_restrict] = ACTIONS(2474), - [anon_sym__Atomic] = ACTIONS(2474), - [anon_sym_mutable] = ACTIONS(2474), - [anon_sym_constexpr] = ACTIONS(2474), - [anon_sym_constinit] = ACTIONS(2474), - [anon_sym_consteval] = ACTIONS(2474), - [anon_sym_signed] = ACTIONS(2474), - [anon_sym_unsigned] = ACTIONS(2474), - [anon_sym_long] = ACTIONS(2474), - [anon_sym_short] = ACTIONS(2474), - [sym_primitive_type] = ACTIONS(2474), - [anon_sym_enum] = ACTIONS(2474), - [anon_sym_class] = 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_return] = ACTIONS(2474), - [anon_sym_break] = ACTIONS(2474), - [anon_sym_continue] = ACTIONS(2474), - [anon_sym_goto] = ACTIONS(2474), - [anon_sym_not] = ACTIONS(2474), - [anon_sym_compl] = ACTIONS(2474), - [anon_sym_DASH_DASH] = ACTIONS(2476), - [anon_sym_PLUS_PLUS] = ACTIONS(2476), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2476), - [anon_sym_u_DQUOTE] = ACTIONS(2476), - [anon_sym_U_DQUOTE] = ACTIONS(2476), - [anon_sym_u8_DQUOTE] = ACTIONS(2476), - [anon_sym_DQUOTE] = ACTIONS(2476), - [sym_true] = ACTIONS(2474), - [sym_false] = ACTIONS(2474), - [sym_null] = ACTIONS(2474), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2474), - [anon_sym_decltype] = ACTIONS(2474), - [anon_sym_virtual] = ACTIONS(2474), - [anon_sym_explicit] = ACTIONS(2474), - [anon_sym_typename] = ACTIONS(2474), - [anon_sym_template] = ACTIONS(2474), - [anon_sym_operator] = ACTIONS(2474), - [anon_sym_try] = ACTIONS(2474), - [anon_sym_delete] = ACTIONS(2474), - [anon_sym_throw] = ACTIONS(2474), - [anon_sym_namespace] = ACTIONS(2474), - [anon_sym_using] = ACTIONS(2474), - [anon_sym_static_assert] = ACTIONS(2474), - [anon_sym_concept] = ACTIONS(2474), - [anon_sym_co_return] = ACTIONS(2474), - [anon_sym_co_yield] = ACTIONS(2474), - [anon_sym_R_DQUOTE] = ACTIONS(2476), - [anon_sym_LR_DQUOTE] = ACTIONS(2476), - [anon_sym_uR_DQUOTE] = ACTIONS(2476), - [anon_sym_UR_DQUOTE] = ACTIONS(2476), - [anon_sym_u8R_DQUOTE] = ACTIONS(2476), - [anon_sym_co_await] = ACTIONS(2474), - [anon_sym_new] = ACTIONS(2474), - [anon_sym_requires] = ACTIONS(2474), - [sym_this] = ACTIONS(2474), - [sym_nullptr] = ACTIONS(2474), - }, - [787] = { - [sym_identifier] = ACTIONS(2572), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2574), - [anon_sym_AMP] = ACTIONS(2572), - [anon_sym_SEMI] = ACTIONS(2574), - [anon_sym_typedef] = ACTIONS(2572), - [anon_sym_extern] = ACTIONS(2572), - [anon_sym___attribute__] = ACTIONS(2572), - [anon_sym_COLON_COLON] = ACTIONS(2574), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2574), - [anon_sym___declspec] = ACTIONS(2572), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2572), - [anon_sym_static] = ACTIONS(2572), - [anon_sym_register] = ACTIONS(2572), - [anon_sym_inline] = ACTIONS(2572), - [anon_sym_thread_local] = ACTIONS(2572), - [anon_sym_const] = ACTIONS(2572), - [anon_sym_volatile] = ACTIONS(2572), - [anon_sym_restrict] = ACTIONS(2572), - [anon_sym__Atomic] = ACTIONS(2572), - [anon_sym_mutable] = ACTIONS(2572), - [anon_sym_constexpr] = ACTIONS(2572), - [anon_sym_constinit] = ACTIONS(2572), - [anon_sym_consteval] = ACTIONS(2572), - [anon_sym_signed] = ACTIONS(2572), - [anon_sym_unsigned] = ACTIONS(2572), - [anon_sym_long] = ACTIONS(2572), - [anon_sym_short] = ACTIONS(2572), - [sym_primitive_type] = ACTIONS(2572), - [anon_sym_enum] = ACTIONS(2572), - [anon_sym_class] = ACTIONS(2572), - [anon_sym_struct] = ACTIONS(2572), - [anon_sym_union] = ACTIONS(2572), - [anon_sym_if] = ACTIONS(2572), - [anon_sym_else] = 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_return] = ACTIONS(2572), - [anon_sym_break] = ACTIONS(2572), - [anon_sym_continue] = ACTIONS(2572), - [anon_sym_goto] = ACTIONS(2572), - [anon_sym_not] = ACTIONS(2572), - [anon_sym_compl] = ACTIONS(2572), - [anon_sym_DASH_DASH] = ACTIONS(2574), - [anon_sym_PLUS_PLUS] = ACTIONS(2574), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2574), - [anon_sym_u_DQUOTE] = ACTIONS(2574), - [anon_sym_U_DQUOTE] = ACTIONS(2574), - [anon_sym_u8_DQUOTE] = ACTIONS(2574), - [anon_sym_DQUOTE] = ACTIONS(2574), - [sym_true] = ACTIONS(2572), - [sym_false] = ACTIONS(2572), - [sym_null] = ACTIONS(2572), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2572), - [anon_sym_decltype] = ACTIONS(2572), - [anon_sym_virtual] = ACTIONS(2572), - [anon_sym_explicit] = ACTIONS(2572), - [anon_sym_typename] = ACTIONS(2572), - [anon_sym_template] = ACTIONS(2572), - [anon_sym_operator] = ACTIONS(2572), - [anon_sym_try] = ACTIONS(2572), - [anon_sym_delete] = ACTIONS(2572), - [anon_sym_throw] = ACTIONS(2572), - [anon_sym_namespace] = ACTIONS(2572), - [anon_sym_using] = ACTIONS(2572), - [anon_sym_static_assert] = ACTIONS(2572), - [anon_sym_concept] = ACTIONS(2572), - [anon_sym_co_return] = ACTIONS(2572), - [anon_sym_co_yield] = ACTIONS(2572), - [anon_sym_R_DQUOTE] = ACTIONS(2574), - [anon_sym_LR_DQUOTE] = ACTIONS(2574), - [anon_sym_uR_DQUOTE] = ACTIONS(2574), - [anon_sym_UR_DQUOTE] = ACTIONS(2574), - [anon_sym_u8R_DQUOTE] = ACTIONS(2574), - [anon_sym_co_await] = ACTIONS(2572), - [anon_sym_new] = ACTIONS(2572), - [anon_sym_requires] = ACTIONS(2572), - [sym_this] = ACTIONS(2572), - [sym_nullptr] = ACTIONS(2572), - }, - [788] = { - [ts_builtin_sym_end] = ACTIONS(2516), - [sym_identifier] = ACTIONS(2514), - [aux_sym_preproc_include_token1] = ACTIONS(2514), - [aux_sym_preproc_def_token1] = ACTIONS(2514), - [aux_sym_preproc_if_token1] = ACTIONS(2514), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2514), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2514), - [sym_preproc_directive] = ACTIONS(2514), - [anon_sym_LPAREN2] = ACTIONS(2516), - [anon_sym_BANG] = ACTIONS(2516), - [anon_sym_TILDE] = ACTIONS(2516), - [anon_sym_DASH] = ACTIONS(2514), - [anon_sym_PLUS] = ACTIONS(2514), - [anon_sym_STAR] = ACTIONS(2516), - [anon_sym_AMP_AMP] = ACTIONS(2516), - [anon_sym_AMP] = ACTIONS(2514), - [anon_sym_SEMI] = ACTIONS(2516), - [anon_sym_typedef] = ACTIONS(2514), - [anon_sym_extern] = ACTIONS(2514), - [anon_sym___attribute__] = ACTIONS(2514), - [anon_sym_COLON_COLON] = ACTIONS(2516), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2516), - [anon_sym___declspec] = ACTIONS(2514), - [anon_sym___based] = ACTIONS(2514), - [anon_sym___cdecl] = ACTIONS(2514), - [anon_sym___clrcall] = ACTIONS(2514), - [anon_sym___stdcall] = ACTIONS(2514), - [anon_sym___fastcall] = ACTIONS(2514), - [anon_sym___thiscall] = ACTIONS(2514), - [anon_sym___vectorcall] = ACTIONS(2514), - [anon_sym_LBRACE] = ACTIONS(2516), - [anon_sym_LBRACK] = ACTIONS(2514), - [anon_sym_static] = ACTIONS(2514), - [anon_sym_register] = ACTIONS(2514), - [anon_sym_inline] = ACTIONS(2514), - [anon_sym_thread_local] = ACTIONS(2514), - [anon_sym_const] = ACTIONS(2514), - [anon_sym_volatile] = ACTIONS(2514), - [anon_sym_restrict] = ACTIONS(2514), - [anon_sym__Atomic] = ACTIONS(2514), - [anon_sym_mutable] = ACTIONS(2514), - [anon_sym_constexpr] = ACTIONS(2514), - [anon_sym_constinit] = ACTIONS(2514), - [anon_sym_consteval] = ACTIONS(2514), - [anon_sym_signed] = ACTIONS(2514), - [anon_sym_unsigned] = ACTIONS(2514), - [anon_sym_long] = ACTIONS(2514), - [anon_sym_short] = ACTIONS(2514), - [sym_primitive_type] = ACTIONS(2514), - [anon_sym_enum] = ACTIONS(2514), - [anon_sym_class] = ACTIONS(2514), - [anon_sym_struct] = ACTIONS(2514), - [anon_sym_union] = ACTIONS(2514), - [anon_sym_if] = ACTIONS(2514), - [anon_sym_else] = ACTIONS(2514), - [anon_sym_switch] = ACTIONS(2514), - [anon_sym_case] = ACTIONS(2514), - [anon_sym_default] = ACTIONS(2514), - [anon_sym_while] = ACTIONS(2514), - [anon_sym_do] = ACTIONS(2514), - [anon_sym_for] = ACTIONS(2514), - [anon_sym_return] = ACTIONS(2514), - [anon_sym_break] = ACTIONS(2514), - [anon_sym_continue] = ACTIONS(2514), - [anon_sym_goto] = ACTIONS(2514), - [anon_sym_not] = ACTIONS(2514), - [anon_sym_compl] = ACTIONS(2514), - [anon_sym_DASH_DASH] = ACTIONS(2516), - [anon_sym_PLUS_PLUS] = ACTIONS(2516), - [anon_sym_sizeof] = ACTIONS(2514), - [sym_number_literal] = ACTIONS(2516), - [anon_sym_L_SQUOTE] = ACTIONS(2516), - [anon_sym_u_SQUOTE] = ACTIONS(2516), - [anon_sym_U_SQUOTE] = ACTIONS(2516), - [anon_sym_u8_SQUOTE] = ACTIONS(2516), - [anon_sym_SQUOTE] = ACTIONS(2516), - [anon_sym_L_DQUOTE] = ACTIONS(2516), - [anon_sym_u_DQUOTE] = ACTIONS(2516), - [anon_sym_U_DQUOTE] = ACTIONS(2516), - [anon_sym_u8_DQUOTE] = ACTIONS(2516), - [anon_sym_DQUOTE] = ACTIONS(2516), - [sym_true] = ACTIONS(2514), - [sym_false] = ACTIONS(2514), - [sym_null] = ACTIONS(2514), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2514), - [anon_sym_decltype] = ACTIONS(2514), - [anon_sym_virtual] = ACTIONS(2514), - [anon_sym_explicit] = ACTIONS(2514), - [anon_sym_typename] = ACTIONS(2514), - [anon_sym_template] = ACTIONS(2514), - [anon_sym_operator] = ACTIONS(2514), - [anon_sym_try] = ACTIONS(2514), - [anon_sym_delete] = ACTIONS(2514), - [anon_sym_throw] = ACTIONS(2514), - [anon_sym_namespace] = ACTIONS(2514), - [anon_sym_using] = ACTIONS(2514), - [anon_sym_static_assert] = ACTIONS(2514), - [anon_sym_concept] = ACTIONS(2514), - [anon_sym_co_return] = ACTIONS(2514), - [anon_sym_co_yield] = ACTIONS(2514), - [anon_sym_R_DQUOTE] = ACTIONS(2516), - [anon_sym_LR_DQUOTE] = ACTIONS(2516), - [anon_sym_uR_DQUOTE] = ACTIONS(2516), - [anon_sym_UR_DQUOTE] = ACTIONS(2516), - [anon_sym_u8R_DQUOTE] = ACTIONS(2516), - [anon_sym_co_await] = ACTIONS(2514), - [anon_sym_new] = ACTIONS(2514), - [anon_sym_requires] = ACTIONS(2514), - [sym_this] = ACTIONS(2514), - [sym_nullptr] = ACTIONS(2514), - }, - [789] = { - [ts_builtin_sym_end] = ACTIONS(2512), - [sym_identifier] = ACTIONS(2510), - [aux_sym_preproc_include_token1] = ACTIONS(2510), - [aux_sym_preproc_def_token1] = ACTIONS(2510), - [aux_sym_preproc_if_token1] = ACTIONS(2510), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2510), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2510), - [sym_preproc_directive] = ACTIONS(2510), - [anon_sym_LPAREN2] = ACTIONS(2512), - [anon_sym_BANG] = ACTIONS(2512), - [anon_sym_TILDE] = ACTIONS(2512), - [anon_sym_DASH] = ACTIONS(2510), - [anon_sym_PLUS] = ACTIONS(2510), - [anon_sym_STAR] = ACTIONS(2512), - [anon_sym_AMP_AMP] = ACTIONS(2512), - [anon_sym_AMP] = ACTIONS(2510), - [anon_sym_SEMI] = ACTIONS(2512), - [anon_sym_typedef] = ACTIONS(2510), - [anon_sym_extern] = ACTIONS(2510), - [anon_sym___attribute__] = ACTIONS(2510), - [anon_sym_COLON_COLON] = ACTIONS(2512), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2512), - [anon_sym___declspec] = ACTIONS(2510), - [anon_sym___based] = ACTIONS(2510), - [anon_sym___cdecl] = ACTIONS(2510), - [anon_sym___clrcall] = ACTIONS(2510), - [anon_sym___stdcall] = ACTIONS(2510), - [anon_sym___fastcall] = ACTIONS(2510), - [anon_sym___thiscall] = ACTIONS(2510), - [anon_sym___vectorcall] = ACTIONS(2510), - [anon_sym_LBRACE] = ACTIONS(2512), - [anon_sym_LBRACK] = ACTIONS(2510), - [anon_sym_static] = ACTIONS(2510), - [anon_sym_register] = ACTIONS(2510), - [anon_sym_inline] = ACTIONS(2510), - [anon_sym_thread_local] = ACTIONS(2510), - [anon_sym_const] = ACTIONS(2510), - [anon_sym_volatile] = ACTIONS(2510), - [anon_sym_restrict] = ACTIONS(2510), - [anon_sym__Atomic] = ACTIONS(2510), - [anon_sym_mutable] = ACTIONS(2510), - [anon_sym_constexpr] = ACTIONS(2510), - [anon_sym_constinit] = ACTIONS(2510), - [anon_sym_consteval] = ACTIONS(2510), - [anon_sym_signed] = ACTIONS(2510), - [anon_sym_unsigned] = ACTIONS(2510), - [anon_sym_long] = ACTIONS(2510), - [anon_sym_short] = ACTIONS(2510), - [sym_primitive_type] = ACTIONS(2510), - [anon_sym_enum] = ACTIONS(2510), - [anon_sym_class] = ACTIONS(2510), - [anon_sym_struct] = ACTIONS(2510), - [anon_sym_union] = ACTIONS(2510), - [anon_sym_if] = ACTIONS(2510), - [anon_sym_else] = ACTIONS(2510), - [anon_sym_switch] = ACTIONS(2510), - [anon_sym_case] = ACTIONS(2510), - [anon_sym_default] = ACTIONS(2510), - [anon_sym_while] = ACTIONS(2510), - [anon_sym_do] = ACTIONS(2510), - [anon_sym_for] = ACTIONS(2510), - [anon_sym_return] = ACTIONS(2510), - [anon_sym_break] = ACTIONS(2510), - [anon_sym_continue] = ACTIONS(2510), - [anon_sym_goto] = ACTIONS(2510), - [anon_sym_not] = ACTIONS(2510), - [anon_sym_compl] = ACTIONS(2510), - [anon_sym_DASH_DASH] = ACTIONS(2512), - [anon_sym_PLUS_PLUS] = ACTIONS(2512), - [anon_sym_sizeof] = ACTIONS(2510), - [sym_number_literal] = ACTIONS(2512), - [anon_sym_L_SQUOTE] = ACTIONS(2512), - [anon_sym_u_SQUOTE] = ACTIONS(2512), - [anon_sym_U_SQUOTE] = ACTIONS(2512), - [anon_sym_u8_SQUOTE] = ACTIONS(2512), - [anon_sym_SQUOTE] = ACTIONS(2512), - [anon_sym_L_DQUOTE] = ACTIONS(2512), - [anon_sym_u_DQUOTE] = ACTIONS(2512), - [anon_sym_U_DQUOTE] = ACTIONS(2512), - [anon_sym_u8_DQUOTE] = ACTIONS(2512), - [anon_sym_DQUOTE] = ACTIONS(2512), - [sym_true] = ACTIONS(2510), - [sym_false] = ACTIONS(2510), - [sym_null] = ACTIONS(2510), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2510), - [anon_sym_decltype] = ACTIONS(2510), - [anon_sym_virtual] = ACTIONS(2510), - [anon_sym_explicit] = ACTIONS(2510), - [anon_sym_typename] = ACTIONS(2510), - [anon_sym_template] = ACTIONS(2510), - [anon_sym_operator] = ACTIONS(2510), - [anon_sym_try] = ACTIONS(2510), - [anon_sym_delete] = ACTIONS(2510), - [anon_sym_throw] = ACTIONS(2510), - [anon_sym_namespace] = ACTIONS(2510), - [anon_sym_using] = ACTIONS(2510), - [anon_sym_static_assert] = ACTIONS(2510), - [anon_sym_concept] = ACTIONS(2510), - [anon_sym_co_return] = ACTIONS(2510), - [anon_sym_co_yield] = ACTIONS(2510), - [anon_sym_R_DQUOTE] = ACTIONS(2512), - [anon_sym_LR_DQUOTE] = ACTIONS(2512), - [anon_sym_uR_DQUOTE] = ACTIONS(2512), - [anon_sym_UR_DQUOTE] = ACTIONS(2512), - [anon_sym_u8R_DQUOTE] = ACTIONS(2512), - [anon_sym_co_await] = ACTIONS(2510), - [anon_sym_new] = ACTIONS(2510), - [anon_sym_requires] = ACTIONS(2510), - [sym_this] = ACTIONS(2510), - [sym_nullptr] = ACTIONS(2510), - }, - [790] = { - [sym_identifier] = ACTIONS(2646), - [aux_sym_preproc_include_token1] = ACTIONS(2646), - [aux_sym_preproc_def_token1] = ACTIONS(2646), - [aux_sym_preproc_if_token1] = ACTIONS(2646), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2646), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2646), - [sym_preproc_directive] = ACTIONS(2646), - [anon_sym_LPAREN2] = ACTIONS(2648), - [anon_sym_BANG] = ACTIONS(2648), - [anon_sym_TILDE] = ACTIONS(2648), - [anon_sym_DASH] = ACTIONS(2646), - [anon_sym_PLUS] = ACTIONS(2646), - [anon_sym_STAR] = ACTIONS(2648), - [anon_sym_AMP_AMP] = ACTIONS(2648), - [anon_sym_AMP] = ACTIONS(2646), - [anon_sym_SEMI] = ACTIONS(2648), - [anon_sym_typedef] = ACTIONS(2646), - [anon_sym_extern] = ACTIONS(2646), - [anon_sym___attribute__] = ACTIONS(2646), - [anon_sym_COLON_COLON] = ACTIONS(2648), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2648), - [anon_sym___declspec] = ACTIONS(2646), - [anon_sym___based] = ACTIONS(2646), - [anon_sym___cdecl] = ACTIONS(2646), - [anon_sym___clrcall] = ACTIONS(2646), - [anon_sym___stdcall] = ACTIONS(2646), - [anon_sym___fastcall] = ACTIONS(2646), - [anon_sym___thiscall] = ACTIONS(2646), - [anon_sym___vectorcall] = ACTIONS(2646), - [anon_sym_LBRACE] = ACTIONS(2648), - [anon_sym_RBRACE] = ACTIONS(2648), - [anon_sym_LBRACK] = ACTIONS(2646), - [anon_sym_static] = ACTIONS(2646), - [anon_sym_register] = ACTIONS(2646), - [anon_sym_inline] = ACTIONS(2646), - [anon_sym_thread_local] = ACTIONS(2646), - [anon_sym_const] = ACTIONS(2646), - [anon_sym_volatile] = ACTIONS(2646), - [anon_sym_restrict] = ACTIONS(2646), - [anon_sym__Atomic] = ACTIONS(2646), - [anon_sym_mutable] = ACTIONS(2646), - [anon_sym_constexpr] = ACTIONS(2646), - [anon_sym_constinit] = ACTIONS(2646), - [anon_sym_consteval] = ACTIONS(2646), - [anon_sym_signed] = ACTIONS(2646), - [anon_sym_unsigned] = ACTIONS(2646), - [anon_sym_long] = ACTIONS(2646), - [anon_sym_short] = ACTIONS(2646), - [sym_primitive_type] = ACTIONS(2646), - [anon_sym_enum] = ACTIONS(2646), - [anon_sym_class] = ACTIONS(2646), - [anon_sym_struct] = ACTIONS(2646), - [anon_sym_union] = ACTIONS(2646), - [anon_sym_if] = ACTIONS(2646), - [anon_sym_else] = ACTIONS(2948), - [anon_sym_switch] = ACTIONS(2646), - [anon_sym_case] = ACTIONS(2646), - [anon_sym_default] = ACTIONS(2646), - [anon_sym_while] = ACTIONS(2646), - [anon_sym_do] = ACTIONS(2646), - [anon_sym_for] = ACTIONS(2646), - [anon_sym_return] = ACTIONS(2646), - [anon_sym_break] = ACTIONS(2646), - [anon_sym_continue] = ACTIONS(2646), - [anon_sym_goto] = ACTIONS(2646), - [anon_sym_not] = ACTIONS(2646), - [anon_sym_compl] = ACTIONS(2646), - [anon_sym_DASH_DASH] = ACTIONS(2648), - [anon_sym_PLUS_PLUS] = ACTIONS(2648), - [anon_sym_sizeof] = ACTIONS(2646), - [sym_number_literal] = ACTIONS(2648), - [anon_sym_L_SQUOTE] = ACTIONS(2648), - [anon_sym_u_SQUOTE] = ACTIONS(2648), - [anon_sym_U_SQUOTE] = ACTIONS(2648), - [anon_sym_u8_SQUOTE] = ACTIONS(2648), - [anon_sym_SQUOTE] = ACTIONS(2648), - [anon_sym_L_DQUOTE] = ACTIONS(2648), - [anon_sym_u_DQUOTE] = ACTIONS(2648), - [anon_sym_U_DQUOTE] = ACTIONS(2648), - [anon_sym_u8_DQUOTE] = ACTIONS(2648), - [anon_sym_DQUOTE] = ACTIONS(2648), - [sym_true] = ACTIONS(2646), - [sym_false] = ACTIONS(2646), - [sym_null] = ACTIONS(2646), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2646), - [anon_sym_decltype] = ACTIONS(2646), - [anon_sym_virtual] = ACTIONS(2646), - [anon_sym_explicit] = ACTIONS(2646), - [anon_sym_typename] = ACTIONS(2646), - [anon_sym_template] = ACTIONS(2646), - [anon_sym_operator] = ACTIONS(2646), - [anon_sym_try] = ACTIONS(2646), - [anon_sym_delete] = ACTIONS(2646), - [anon_sym_throw] = ACTIONS(2646), - [anon_sym_namespace] = ACTIONS(2646), - [anon_sym_using] = ACTIONS(2646), - [anon_sym_static_assert] = ACTIONS(2646), - [anon_sym_concept] = ACTIONS(2646), - [anon_sym_co_return] = ACTIONS(2646), - [anon_sym_co_yield] = ACTIONS(2646), - [anon_sym_R_DQUOTE] = ACTIONS(2648), - [anon_sym_LR_DQUOTE] = ACTIONS(2648), - [anon_sym_uR_DQUOTE] = ACTIONS(2648), - [anon_sym_UR_DQUOTE] = ACTIONS(2648), - [anon_sym_u8R_DQUOTE] = ACTIONS(2648), - [anon_sym_co_await] = ACTIONS(2646), - [anon_sym_new] = ACTIONS(2646), - [anon_sym_requires] = ACTIONS(2646), - [sym_this] = ACTIONS(2646), - [sym_nullptr] = ACTIONS(2646), - }, - [791] = { - [sym_identifier] = ACTIONS(2634), - [aux_sym_preproc_include_token1] = ACTIONS(2634), - [aux_sym_preproc_def_token1] = ACTIONS(2634), - [aux_sym_preproc_if_token1] = ACTIONS(2634), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2634), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2634), - [sym_preproc_directive] = ACTIONS(2634), - [anon_sym_LPAREN2] = ACTIONS(2636), - [anon_sym_BANG] = ACTIONS(2636), - [anon_sym_TILDE] = ACTIONS(2636), - [anon_sym_DASH] = ACTIONS(2634), - [anon_sym_PLUS] = ACTIONS(2634), - [anon_sym_STAR] = ACTIONS(2636), - [anon_sym_AMP_AMP] = ACTIONS(2636), - [anon_sym_AMP] = ACTIONS(2634), - [anon_sym_SEMI] = ACTIONS(2636), - [anon_sym_typedef] = ACTIONS(2634), - [anon_sym_extern] = ACTIONS(2634), - [anon_sym___attribute__] = ACTIONS(2634), - [anon_sym_COLON_COLON] = ACTIONS(2636), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2636), - [anon_sym___declspec] = ACTIONS(2634), - [anon_sym___based] = ACTIONS(2634), - [anon_sym___cdecl] = ACTIONS(2634), - [anon_sym___clrcall] = ACTIONS(2634), - [anon_sym___stdcall] = ACTIONS(2634), - [anon_sym___fastcall] = ACTIONS(2634), - [anon_sym___thiscall] = ACTIONS(2634), - [anon_sym___vectorcall] = ACTIONS(2634), - [anon_sym_LBRACE] = ACTIONS(2636), - [anon_sym_RBRACE] = ACTIONS(2636), - [anon_sym_LBRACK] = ACTIONS(2634), - [anon_sym_static] = ACTIONS(2634), - [anon_sym_register] = ACTIONS(2634), - [anon_sym_inline] = ACTIONS(2634), - [anon_sym_thread_local] = ACTIONS(2634), - [anon_sym_const] = ACTIONS(2634), - [anon_sym_volatile] = ACTIONS(2634), - [anon_sym_restrict] = ACTIONS(2634), - [anon_sym__Atomic] = ACTIONS(2634), - [anon_sym_mutable] = ACTIONS(2634), - [anon_sym_constexpr] = ACTIONS(2634), - [anon_sym_constinit] = ACTIONS(2634), - [anon_sym_consteval] = ACTIONS(2634), - [anon_sym_signed] = ACTIONS(2634), - [anon_sym_unsigned] = ACTIONS(2634), - [anon_sym_long] = ACTIONS(2634), - [anon_sym_short] = ACTIONS(2634), - [sym_primitive_type] = ACTIONS(2634), - [anon_sym_enum] = ACTIONS(2634), - [anon_sym_class] = ACTIONS(2634), - [anon_sym_struct] = ACTIONS(2634), - [anon_sym_union] = ACTIONS(2634), - [anon_sym_if] = ACTIONS(2634), - [anon_sym_else] = ACTIONS(2634), - [anon_sym_switch] = ACTIONS(2634), - [anon_sym_case] = ACTIONS(2634), - [anon_sym_default] = ACTIONS(2634), - [anon_sym_while] = ACTIONS(2634), - [anon_sym_do] = ACTIONS(2634), - [anon_sym_for] = ACTIONS(2634), - [anon_sym_return] = ACTIONS(2634), - [anon_sym_break] = ACTIONS(2634), - [anon_sym_continue] = ACTIONS(2634), - [anon_sym_goto] = ACTIONS(2634), - [anon_sym_not] = ACTIONS(2634), - [anon_sym_compl] = ACTIONS(2634), - [anon_sym_DASH_DASH] = ACTIONS(2636), - [anon_sym_PLUS_PLUS] = ACTIONS(2636), - [anon_sym_sizeof] = ACTIONS(2634), - [sym_number_literal] = ACTIONS(2636), - [anon_sym_L_SQUOTE] = ACTIONS(2636), - [anon_sym_u_SQUOTE] = ACTIONS(2636), - [anon_sym_U_SQUOTE] = ACTIONS(2636), - [anon_sym_u8_SQUOTE] = ACTIONS(2636), - [anon_sym_SQUOTE] = ACTIONS(2636), - [anon_sym_L_DQUOTE] = ACTIONS(2636), - [anon_sym_u_DQUOTE] = ACTIONS(2636), - [anon_sym_U_DQUOTE] = ACTIONS(2636), - [anon_sym_u8_DQUOTE] = ACTIONS(2636), - [anon_sym_DQUOTE] = ACTIONS(2636), - [sym_true] = ACTIONS(2634), - [sym_false] = ACTIONS(2634), - [sym_null] = ACTIONS(2634), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2634), - [anon_sym_decltype] = ACTIONS(2634), - [anon_sym_virtual] = ACTIONS(2634), - [anon_sym_explicit] = ACTIONS(2634), - [anon_sym_typename] = ACTIONS(2634), - [anon_sym_template] = ACTIONS(2634), - [anon_sym_operator] = ACTIONS(2634), - [anon_sym_try] = ACTIONS(2634), - [anon_sym_delete] = ACTIONS(2634), - [anon_sym_throw] = ACTIONS(2634), - [anon_sym_namespace] = ACTIONS(2634), - [anon_sym_using] = ACTIONS(2634), - [anon_sym_static_assert] = ACTIONS(2634), - [anon_sym_concept] = ACTIONS(2634), - [anon_sym_co_return] = ACTIONS(2634), - [anon_sym_co_yield] = ACTIONS(2634), - [anon_sym_R_DQUOTE] = ACTIONS(2636), - [anon_sym_LR_DQUOTE] = ACTIONS(2636), - [anon_sym_uR_DQUOTE] = ACTIONS(2636), - [anon_sym_UR_DQUOTE] = ACTIONS(2636), - [anon_sym_u8R_DQUOTE] = ACTIONS(2636), - [anon_sym_co_await] = ACTIONS(2634), - [anon_sym_new] = ACTIONS(2634), - [anon_sym_requires] = ACTIONS(2634), - [sym_this] = ACTIONS(2634), - [sym_nullptr] = ACTIONS(2634), - }, - [792] = { - [sym_identifier] = ACTIONS(2466), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2468), - [anon_sym_AMP] = ACTIONS(2466), - [anon_sym_SEMI] = ACTIONS(2468), - [anon_sym_typedef] = ACTIONS(2466), - [anon_sym_extern] = ACTIONS(2466), - [anon_sym___attribute__] = ACTIONS(2466), - [anon_sym_COLON_COLON] = ACTIONS(2468), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2468), - [anon_sym___declspec] = ACTIONS(2466), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2466), - [anon_sym_static] = ACTIONS(2466), - [anon_sym_register] = ACTIONS(2466), - [anon_sym_inline] = ACTIONS(2466), - [anon_sym_thread_local] = ACTIONS(2466), - [anon_sym_const] = ACTIONS(2466), - [anon_sym_volatile] = ACTIONS(2466), - [anon_sym_restrict] = ACTIONS(2466), - [anon_sym__Atomic] = ACTIONS(2466), - [anon_sym_mutable] = ACTIONS(2466), - [anon_sym_constexpr] = ACTIONS(2466), - [anon_sym_constinit] = ACTIONS(2466), - [anon_sym_consteval] = ACTIONS(2466), - [anon_sym_signed] = ACTIONS(2466), - [anon_sym_unsigned] = ACTIONS(2466), - [anon_sym_long] = ACTIONS(2466), - [anon_sym_short] = ACTIONS(2466), - [sym_primitive_type] = ACTIONS(2466), - [anon_sym_enum] = ACTIONS(2466), - [anon_sym_class] = 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_return] = ACTIONS(2466), - [anon_sym_break] = ACTIONS(2466), - [anon_sym_continue] = ACTIONS(2466), - [anon_sym_goto] = ACTIONS(2466), - [anon_sym_not] = ACTIONS(2466), - [anon_sym_compl] = ACTIONS(2466), - [anon_sym_DASH_DASH] = ACTIONS(2468), - [anon_sym_PLUS_PLUS] = ACTIONS(2468), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2468), - [anon_sym_u_DQUOTE] = ACTIONS(2468), - [anon_sym_U_DQUOTE] = ACTIONS(2468), - [anon_sym_u8_DQUOTE] = ACTIONS(2468), - [anon_sym_DQUOTE] = ACTIONS(2468), - [sym_true] = ACTIONS(2466), - [sym_false] = ACTIONS(2466), - [sym_null] = ACTIONS(2466), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2466), - [anon_sym_decltype] = ACTIONS(2466), - [anon_sym_virtual] = ACTIONS(2466), - [anon_sym_explicit] = ACTIONS(2466), - [anon_sym_typename] = ACTIONS(2466), - [anon_sym_template] = ACTIONS(2466), - [anon_sym_operator] = ACTIONS(2466), - [anon_sym_try] = ACTIONS(2466), - [anon_sym_delete] = ACTIONS(2466), - [anon_sym_throw] = ACTIONS(2466), - [anon_sym_namespace] = ACTIONS(2466), - [anon_sym_using] = ACTIONS(2466), - [anon_sym_static_assert] = ACTIONS(2466), - [anon_sym_concept] = ACTIONS(2466), - [anon_sym_co_return] = ACTIONS(2466), - [anon_sym_co_yield] = ACTIONS(2466), - [anon_sym_R_DQUOTE] = ACTIONS(2468), - [anon_sym_LR_DQUOTE] = ACTIONS(2468), - [anon_sym_uR_DQUOTE] = ACTIONS(2468), - [anon_sym_UR_DQUOTE] = ACTIONS(2468), - [anon_sym_u8R_DQUOTE] = ACTIONS(2468), - [anon_sym_co_await] = ACTIONS(2466), - [anon_sym_new] = ACTIONS(2466), - [anon_sym_requires] = ACTIONS(2466), - [sym_this] = ACTIONS(2466), - [sym_nullptr] = ACTIONS(2466), - }, - [793] = { - [sym_identifier] = ACTIONS(1737), - [aux_sym_preproc_include_token1] = ACTIONS(1737), - [aux_sym_preproc_def_token1] = ACTIONS(1737), - [anon_sym_COMMA] = ACTIONS(2652), - [aux_sym_preproc_if_token1] = ACTIONS(1737), - [aux_sym_preproc_if_token2] = ACTIONS(1737), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1737), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1737), - [sym_preproc_directive] = ACTIONS(1737), - [anon_sym_LPAREN2] = ACTIONS(1735), - [anon_sym_BANG] = ACTIONS(1735), - [anon_sym_TILDE] = ACTIONS(1735), - [anon_sym_DASH] = ACTIONS(1737), - [anon_sym_PLUS] = ACTIONS(1737), - [anon_sym_STAR] = ACTIONS(1735), - [anon_sym_AMP_AMP] = ACTIONS(1735), - [anon_sym_AMP] = ACTIONS(1737), - [anon_sym_SEMI] = ACTIONS(2652), - [anon_sym_typedef] = ACTIONS(1737), - [anon_sym_extern] = ACTIONS(1737), - [anon_sym___attribute__] = ACTIONS(1737), - [anon_sym_COLON_COLON] = ACTIONS(1735), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1735), - [anon_sym___declspec] = ACTIONS(1737), - [anon_sym___based] = ACTIONS(1737), - [anon_sym___cdecl] = ACTIONS(1737), - [anon_sym___clrcall] = ACTIONS(1737), - [anon_sym___stdcall] = ACTIONS(1737), - [anon_sym___fastcall] = ACTIONS(1737), - [anon_sym___thiscall] = ACTIONS(1737), - [anon_sym___vectorcall] = ACTIONS(1737), - [anon_sym_LBRACE] = ACTIONS(1735), - [anon_sym_LBRACK] = ACTIONS(1737), - [anon_sym_static] = ACTIONS(1737), - [anon_sym_register] = ACTIONS(1737), - [anon_sym_inline] = ACTIONS(1737), - [anon_sym_thread_local] = ACTIONS(1737), - [anon_sym_const] = ACTIONS(1737), - [anon_sym_volatile] = ACTIONS(1737), - [anon_sym_restrict] = ACTIONS(1737), - [anon_sym__Atomic] = ACTIONS(1737), - [anon_sym_mutable] = ACTIONS(1737), - [anon_sym_constexpr] = ACTIONS(1737), - [anon_sym_constinit] = ACTIONS(1737), - [anon_sym_consteval] = ACTIONS(1737), - [anon_sym_signed] = ACTIONS(1737), - [anon_sym_unsigned] = ACTIONS(1737), - [anon_sym_long] = ACTIONS(1737), - [anon_sym_short] = ACTIONS(1737), - [sym_primitive_type] = ACTIONS(1737), - [anon_sym_enum] = ACTIONS(1737), - [anon_sym_class] = ACTIONS(1737), - [anon_sym_struct] = ACTIONS(1737), - [anon_sym_union] = ACTIONS(1737), - [anon_sym_if] = ACTIONS(1737), - [anon_sym_switch] = ACTIONS(1737), - [anon_sym_case] = ACTIONS(1737), - [anon_sym_default] = ACTIONS(1737), - [anon_sym_while] = ACTIONS(1737), - [anon_sym_do] = ACTIONS(1737), - [anon_sym_for] = ACTIONS(1737), - [anon_sym_return] = ACTIONS(1737), - [anon_sym_break] = ACTIONS(1737), - [anon_sym_continue] = ACTIONS(1737), - [anon_sym_goto] = ACTIONS(1737), - [anon_sym_not] = ACTIONS(1737), - [anon_sym_compl] = ACTIONS(1737), - [anon_sym_DASH_DASH] = ACTIONS(1735), - [anon_sym_PLUS_PLUS] = ACTIONS(1735), - [anon_sym_sizeof] = ACTIONS(1737), - [sym_number_literal] = ACTIONS(1735), - [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_L_DQUOTE] = ACTIONS(1735), - [anon_sym_u_DQUOTE] = ACTIONS(1735), - [anon_sym_U_DQUOTE] = ACTIONS(1735), - [anon_sym_u8_DQUOTE] = ACTIONS(1735), - [anon_sym_DQUOTE] = ACTIONS(1735), - [sym_true] = ACTIONS(1737), - [sym_false] = ACTIONS(1737), - [sym_null] = ACTIONS(1737), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1737), - [anon_sym_decltype] = ACTIONS(1737), - [anon_sym_virtual] = ACTIONS(1737), - [anon_sym_explicit] = ACTIONS(1737), - [anon_sym_typename] = ACTIONS(1737), - [anon_sym_template] = ACTIONS(1737), - [anon_sym_operator] = ACTIONS(1737), - [anon_sym_try] = ACTIONS(1737), - [anon_sym_delete] = ACTIONS(1737), - [anon_sym_throw] = ACTIONS(1737), - [anon_sym_namespace] = ACTIONS(1737), - [anon_sym_using] = ACTIONS(1737), - [anon_sym_static_assert] = ACTIONS(1737), - [anon_sym_concept] = ACTIONS(1737), - [anon_sym_co_return] = ACTIONS(1737), - [anon_sym_co_yield] = ACTIONS(1737), - [anon_sym_R_DQUOTE] = ACTIONS(1735), - [anon_sym_LR_DQUOTE] = ACTIONS(1735), - [anon_sym_uR_DQUOTE] = ACTIONS(1735), - [anon_sym_UR_DQUOTE] = ACTIONS(1735), - [anon_sym_u8R_DQUOTE] = ACTIONS(1735), - [anon_sym_co_await] = ACTIONS(1737), - [anon_sym_new] = ACTIONS(1737), - [anon_sym_requires] = ACTIONS(1737), - [sym_this] = ACTIONS(1737), - [sym_nullptr] = ACTIONS(1737), - }, - [794] = { - [sym_identifier] = ACTIONS(2470), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2472), - [anon_sym_AMP] = ACTIONS(2470), - [anon_sym_SEMI] = ACTIONS(2472), - [anon_sym_typedef] = ACTIONS(2470), - [anon_sym_extern] = ACTIONS(2470), - [anon_sym___attribute__] = ACTIONS(2470), - [anon_sym_COLON_COLON] = ACTIONS(2472), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2472), - [anon_sym___declspec] = ACTIONS(2470), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2470), - [anon_sym_static] = ACTIONS(2470), - [anon_sym_register] = ACTIONS(2470), - [anon_sym_inline] = ACTIONS(2470), - [anon_sym_thread_local] = ACTIONS(2470), - [anon_sym_const] = ACTIONS(2470), - [anon_sym_volatile] = ACTIONS(2470), - [anon_sym_restrict] = ACTIONS(2470), - [anon_sym__Atomic] = ACTIONS(2470), - [anon_sym_mutable] = ACTIONS(2470), - [anon_sym_constexpr] = ACTIONS(2470), - [anon_sym_constinit] = ACTIONS(2470), - [anon_sym_consteval] = ACTIONS(2470), - [anon_sym_signed] = ACTIONS(2470), - [anon_sym_unsigned] = ACTIONS(2470), - [anon_sym_long] = ACTIONS(2470), - [anon_sym_short] = ACTIONS(2470), - [sym_primitive_type] = ACTIONS(2470), - [anon_sym_enum] = ACTIONS(2470), - [anon_sym_class] = 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_return] = ACTIONS(2470), - [anon_sym_break] = ACTIONS(2470), - [anon_sym_continue] = ACTIONS(2470), - [anon_sym_goto] = ACTIONS(2470), - [anon_sym_not] = ACTIONS(2470), - [anon_sym_compl] = ACTIONS(2470), - [anon_sym_DASH_DASH] = ACTIONS(2472), - [anon_sym_PLUS_PLUS] = ACTIONS(2472), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2472), - [anon_sym_u_DQUOTE] = ACTIONS(2472), - [anon_sym_U_DQUOTE] = ACTIONS(2472), - [anon_sym_u8_DQUOTE] = ACTIONS(2472), - [anon_sym_DQUOTE] = ACTIONS(2472), - [sym_true] = ACTIONS(2470), - [sym_false] = ACTIONS(2470), - [sym_null] = ACTIONS(2470), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2470), - [anon_sym_decltype] = ACTIONS(2470), - [anon_sym_virtual] = ACTIONS(2470), - [anon_sym_explicit] = ACTIONS(2470), - [anon_sym_typename] = ACTIONS(2470), - [anon_sym_template] = ACTIONS(2470), - [anon_sym_operator] = ACTIONS(2470), - [anon_sym_try] = ACTIONS(2470), - [anon_sym_delete] = ACTIONS(2470), - [anon_sym_throw] = ACTIONS(2470), - [anon_sym_namespace] = ACTIONS(2470), - [anon_sym_using] = ACTIONS(2470), - [anon_sym_static_assert] = ACTIONS(2470), - [anon_sym_concept] = ACTIONS(2470), - [anon_sym_co_return] = ACTIONS(2470), - [anon_sym_co_yield] = ACTIONS(2470), - [anon_sym_R_DQUOTE] = ACTIONS(2472), - [anon_sym_LR_DQUOTE] = ACTIONS(2472), - [anon_sym_uR_DQUOTE] = ACTIONS(2472), - [anon_sym_UR_DQUOTE] = ACTIONS(2472), - [anon_sym_u8R_DQUOTE] = ACTIONS(2472), - [anon_sym_co_await] = ACTIONS(2470), - [anon_sym_new] = ACTIONS(2470), - [anon_sym_requires] = ACTIONS(2470), - [sym_this] = ACTIONS(2470), - [sym_nullptr] = ACTIONS(2470), - }, - [795] = { - [sym_identifier] = ACTIONS(2488), - [aux_sym_preproc_include_token1] = ACTIONS(2488), - [aux_sym_preproc_def_token1] = ACTIONS(2488), - [aux_sym_preproc_if_token1] = ACTIONS(2488), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2488), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2488), - [sym_preproc_directive] = ACTIONS(2488), - [anon_sym_LPAREN2] = ACTIONS(2490), - [anon_sym_BANG] = ACTIONS(2490), - [anon_sym_TILDE] = ACTIONS(2490), - [anon_sym_DASH] = ACTIONS(2488), - [anon_sym_PLUS] = ACTIONS(2488), - [anon_sym_STAR] = ACTIONS(2490), - [anon_sym_AMP_AMP] = ACTIONS(2490), - [anon_sym_AMP] = ACTIONS(2488), - [anon_sym_SEMI] = ACTIONS(2490), - [anon_sym_typedef] = ACTIONS(2488), - [anon_sym_extern] = ACTIONS(2488), - [anon_sym___attribute__] = ACTIONS(2488), - [anon_sym_COLON_COLON] = ACTIONS(2490), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2490), - [anon_sym___declspec] = ACTIONS(2488), - [anon_sym___based] = ACTIONS(2488), - [anon_sym___cdecl] = ACTIONS(2488), - [anon_sym___clrcall] = ACTIONS(2488), - [anon_sym___stdcall] = ACTIONS(2488), - [anon_sym___fastcall] = ACTIONS(2488), - [anon_sym___thiscall] = ACTIONS(2488), - [anon_sym___vectorcall] = ACTIONS(2488), - [anon_sym_LBRACE] = ACTIONS(2490), - [anon_sym_RBRACE] = ACTIONS(2490), - [anon_sym_LBRACK] = ACTIONS(2488), - [anon_sym_static] = ACTIONS(2488), - [anon_sym_register] = ACTIONS(2488), - [anon_sym_inline] = ACTIONS(2488), - [anon_sym_thread_local] = ACTIONS(2488), - [anon_sym_const] = ACTIONS(2488), - [anon_sym_volatile] = ACTIONS(2488), - [anon_sym_restrict] = ACTIONS(2488), - [anon_sym__Atomic] = ACTIONS(2488), - [anon_sym_mutable] = ACTIONS(2488), - [anon_sym_constexpr] = ACTIONS(2488), - [anon_sym_constinit] = ACTIONS(2488), - [anon_sym_consteval] = ACTIONS(2488), - [anon_sym_signed] = ACTIONS(2488), - [anon_sym_unsigned] = ACTIONS(2488), - [anon_sym_long] = ACTIONS(2488), - [anon_sym_short] = ACTIONS(2488), - [sym_primitive_type] = ACTIONS(2488), - [anon_sym_enum] = ACTIONS(2488), - [anon_sym_class] = ACTIONS(2488), - [anon_sym_struct] = ACTIONS(2488), - [anon_sym_union] = ACTIONS(2488), - [anon_sym_if] = ACTIONS(2488), - [anon_sym_else] = ACTIONS(2488), - [anon_sym_switch] = ACTIONS(2488), - [anon_sym_case] = ACTIONS(2488), - [anon_sym_default] = ACTIONS(2488), - [anon_sym_while] = ACTIONS(2488), - [anon_sym_do] = ACTIONS(2488), - [anon_sym_for] = ACTIONS(2488), - [anon_sym_return] = ACTIONS(2488), - [anon_sym_break] = ACTIONS(2488), - [anon_sym_continue] = ACTIONS(2488), - [anon_sym_goto] = ACTIONS(2488), - [anon_sym_not] = ACTIONS(2488), - [anon_sym_compl] = ACTIONS(2488), - [anon_sym_DASH_DASH] = ACTIONS(2490), - [anon_sym_PLUS_PLUS] = ACTIONS(2490), - [anon_sym_sizeof] = ACTIONS(2488), - [sym_number_literal] = ACTIONS(2490), - [anon_sym_L_SQUOTE] = ACTIONS(2490), - [anon_sym_u_SQUOTE] = ACTIONS(2490), - [anon_sym_U_SQUOTE] = ACTIONS(2490), - [anon_sym_u8_SQUOTE] = ACTIONS(2490), - [anon_sym_SQUOTE] = ACTIONS(2490), - [anon_sym_L_DQUOTE] = ACTIONS(2490), - [anon_sym_u_DQUOTE] = ACTIONS(2490), - [anon_sym_U_DQUOTE] = ACTIONS(2490), - [anon_sym_u8_DQUOTE] = ACTIONS(2490), - [anon_sym_DQUOTE] = ACTIONS(2490), - [sym_true] = ACTIONS(2488), - [sym_false] = ACTIONS(2488), - [sym_null] = ACTIONS(2488), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2488), - [anon_sym_decltype] = ACTIONS(2488), - [anon_sym_virtual] = ACTIONS(2488), - [anon_sym_explicit] = ACTIONS(2488), - [anon_sym_typename] = ACTIONS(2488), - [anon_sym_template] = ACTIONS(2488), - [anon_sym_operator] = ACTIONS(2488), - [anon_sym_try] = ACTIONS(2488), - [anon_sym_delete] = ACTIONS(2488), - [anon_sym_throw] = ACTIONS(2488), - [anon_sym_namespace] = ACTIONS(2488), - [anon_sym_using] = ACTIONS(2488), - [anon_sym_static_assert] = ACTIONS(2488), - [anon_sym_concept] = ACTIONS(2488), - [anon_sym_co_return] = ACTIONS(2488), - [anon_sym_co_yield] = ACTIONS(2488), - [anon_sym_R_DQUOTE] = ACTIONS(2490), - [anon_sym_LR_DQUOTE] = ACTIONS(2490), - [anon_sym_uR_DQUOTE] = ACTIONS(2490), - [anon_sym_UR_DQUOTE] = ACTIONS(2490), - [anon_sym_u8R_DQUOTE] = ACTIONS(2490), - [anon_sym_co_await] = ACTIONS(2488), - [anon_sym_new] = ACTIONS(2488), - [anon_sym_requires] = ACTIONS(2488), - [sym_this] = ACTIONS(2488), - [sym_nullptr] = ACTIONS(2488), - }, - [796] = { - [sym_identifier] = ACTIONS(2622), - [aux_sym_preproc_include_token1] = ACTIONS(2622), - [aux_sym_preproc_def_token1] = ACTIONS(2622), - [aux_sym_preproc_if_token1] = ACTIONS(2622), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2622), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2622), - [sym_preproc_directive] = ACTIONS(2622), - [anon_sym_LPAREN2] = ACTIONS(2624), - [anon_sym_BANG] = ACTIONS(2624), - [anon_sym_TILDE] = ACTIONS(2624), - [anon_sym_DASH] = ACTIONS(2622), - [anon_sym_PLUS] = ACTIONS(2622), - [anon_sym_STAR] = ACTIONS(2624), - [anon_sym_AMP_AMP] = ACTIONS(2624), - [anon_sym_AMP] = ACTIONS(2622), - [anon_sym_SEMI] = ACTIONS(2624), - [anon_sym_typedef] = ACTIONS(2622), - [anon_sym_extern] = ACTIONS(2622), - [anon_sym___attribute__] = ACTIONS(2622), - [anon_sym_COLON_COLON] = ACTIONS(2624), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2624), - [anon_sym___declspec] = ACTIONS(2622), - [anon_sym___based] = ACTIONS(2622), - [anon_sym___cdecl] = ACTIONS(2622), - [anon_sym___clrcall] = ACTIONS(2622), - [anon_sym___stdcall] = ACTIONS(2622), - [anon_sym___fastcall] = ACTIONS(2622), - [anon_sym___thiscall] = ACTIONS(2622), - [anon_sym___vectorcall] = ACTIONS(2622), - [anon_sym_LBRACE] = ACTIONS(2624), - [anon_sym_RBRACE] = ACTIONS(2624), - [anon_sym_LBRACK] = ACTIONS(2622), - [anon_sym_static] = ACTIONS(2622), - [anon_sym_register] = ACTIONS(2622), - [anon_sym_inline] = ACTIONS(2622), - [anon_sym_thread_local] = ACTIONS(2622), - [anon_sym_const] = ACTIONS(2622), - [anon_sym_volatile] = ACTIONS(2622), - [anon_sym_restrict] = ACTIONS(2622), - [anon_sym__Atomic] = ACTIONS(2622), - [anon_sym_mutable] = ACTIONS(2622), - [anon_sym_constexpr] = ACTIONS(2622), - [anon_sym_constinit] = ACTIONS(2622), - [anon_sym_consteval] = ACTIONS(2622), - [anon_sym_signed] = ACTIONS(2622), - [anon_sym_unsigned] = ACTIONS(2622), - [anon_sym_long] = ACTIONS(2622), - [anon_sym_short] = ACTIONS(2622), - [sym_primitive_type] = ACTIONS(2622), - [anon_sym_enum] = ACTIONS(2622), - [anon_sym_class] = ACTIONS(2622), - [anon_sym_struct] = ACTIONS(2622), - [anon_sym_union] = ACTIONS(2622), - [anon_sym_if] = ACTIONS(2622), - [anon_sym_else] = ACTIONS(2622), - [anon_sym_switch] = ACTIONS(2622), - [anon_sym_case] = ACTIONS(2622), - [anon_sym_default] = ACTIONS(2622), - [anon_sym_while] = ACTIONS(2622), - [anon_sym_do] = ACTIONS(2622), - [anon_sym_for] = ACTIONS(2622), - [anon_sym_return] = ACTIONS(2622), - [anon_sym_break] = ACTIONS(2622), - [anon_sym_continue] = ACTIONS(2622), - [anon_sym_goto] = ACTIONS(2622), - [anon_sym_not] = ACTIONS(2622), - [anon_sym_compl] = ACTIONS(2622), - [anon_sym_DASH_DASH] = ACTIONS(2624), - [anon_sym_PLUS_PLUS] = ACTIONS(2624), - [anon_sym_sizeof] = ACTIONS(2622), - [sym_number_literal] = ACTIONS(2624), - [anon_sym_L_SQUOTE] = ACTIONS(2624), - [anon_sym_u_SQUOTE] = ACTIONS(2624), - [anon_sym_U_SQUOTE] = ACTIONS(2624), - [anon_sym_u8_SQUOTE] = ACTIONS(2624), - [anon_sym_SQUOTE] = ACTIONS(2624), - [anon_sym_L_DQUOTE] = ACTIONS(2624), - [anon_sym_u_DQUOTE] = ACTIONS(2624), - [anon_sym_U_DQUOTE] = ACTIONS(2624), - [anon_sym_u8_DQUOTE] = ACTIONS(2624), - [anon_sym_DQUOTE] = ACTIONS(2624), - [sym_true] = ACTIONS(2622), - [sym_false] = ACTIONS(2622), - [sym_null] = ACTIONS(2622), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2622), - [anon_sym_decltype] = ACTIONS(2622), - [anon_sym_virtual] = ACTIONS(2622), - [anon_sym_explicit] = ACTIONS(2622), - [anon_sym_typename] = ACTIONS(2622), - [anon_sym_template] = ACTIONS(2622), - [anon_sym_operator] = ACTIONS(2622), - [anon_sym_try] = ACTIONS(2622), - [anon_sym_delete] = ACTIONS(2622), - [anon_sym_throw] = ACTIONS(2622), - [anon_sym_namespace] = ACTIONS(2622), - [anon_sym_using] = ACTIONS(2622), - [anon_sym_static_assert] = ACTIONS(2622), - [anon_sym_concept] = ACTIONS(2622), - [anon_sym_co_return] = ACTIONS(2622), - [anon_sym_co_yield] = ACTIONS(2622), - [anon_sym_R_DQUOTE] = ACTIONS(2624), - [anon_sym_LR_DQUOTE] = ACTIONS(2624), - [anon_sym_uR_DQUOTE] = ACTIONS(2624), - [anon_sym_UR_DQUOTE] = ACTIONS(2624), - [anon_sym_u8R_DQUOTE] = ACTIONS(2624), - [anon_sym_co_await] = ACTIONS(2622), - [anon_sym_new] = ACTIONS(2622), - [anon_sym_requires] = ACTIONS(2622), - [sym_this] = ACTIONS(2622), - [sym_nullptr] = ACTIONS(2622), - }, - [797] = { - [sym_identifier] = ACTIONS(2478), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2480), - [anon_sym_AMP] = ACTIONS(2478), - [anon_sym_SEMI] = ACTIONS(2480), - [anon_sym_typedef] = ACTIONS(2478), - [anon_sym_extern] = ACTIONS(2478), - [anon_sym___attribute__] = ACTIONS(2478), - [anon_sym_COLON_COLON] = ACTIONS(2480), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2480), - [anon_sym___declspec] = ACTIONS(2478), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2478), - [anon_sym_static] = ACTIONS(2478), - [anon_sym_register] = ACTIONS(2478), - [anon_sym_inline] = ACTIONS(2478), - [anon_sym_thread_local] = ACTIONS(2478), - [anon_sym_const] = ACTIONS(2478), - [anon_sym_volatile] = ACTIONS(2478), - [anon_sym_restrict] = ACTIONS(2478), - [anon_sym__Atomic] = ACTIONS(2478), - [anon_sym_mutable] = ACTIONS(2478), - [anon_sym_constexpr] = ACTIONS(2478), - [anon_sym_constinit] = ACTIONS(2478), - [anon_sym_consteval] = ACTIONS(2478), - [anon_sym_signed] = ACTIONS(2478), - [anon_sym_unsigned] = ACTIONS(2478), - [anon_sym_long] = ACTIONS(2478), - [anon_sym_short] = ACTIONS(2478), - [sym_primitive_type] = ACTIONS(2478), - [anon_sym_enum] = ACTIONS(2478), - [anon_sym_class] = 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_return] = ACTIONS(2478), - [anon_sym_break] = ACTIONS(2478), - [anon_sym_continue] = ACTIONS(2478), - [anon_sym_goto] = ACTIONS(2478), - [anon_sym_not] = ACTIONS(2478), - [anon_sym_compl] = ACTIONS(2478), - [anon_sym_DASH_DASH] = ACTIONS(2480), - [anon_sym_PLUS_PLUS] = ACTIONS(2480), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2480), - [anon_sym_u_DQUOTE] = ACTIONS(2480), - [anon_sym_U_DQUOTE] = ACTIONS(2480), - [anon_sym_u8_DQUOTE] = ACTIONS(2480), - [anon_sym_DQUOTE] = ACTIONS(2480), - [sym_true] = ACTIONS(2478), - [sym_false] = ACTIONS(2478), - [sym_null] = ACTIONS(2478), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2478), - [anon_sym_decltype] = ACTIONS(2478), - [anon_sym_virtual] = ACTIONS(2478), - [anon_sym_explicit] = ACTIONS(2478), - [anon_sym_typename] = ACTIONS(2478), - [anon_sym_template] = ACTIONS(2478), - [anon_sym_operator] = ACTIONS(2478), - [anon_sym_try] = ACTIONS(2478), - [anon_sym_delete] = ACTIONS(2478), - [anon_sym_throw] = ACTIONS(2478), - [anon_sym_namespace] = ACTIONS(2478), - [anon_sym_using] = ACTIONS(2478), - [anon_sym_static_assert] = ACTIONS(2478), - [anon_sym_concept] = ACTIONS(2478), - [anon_sym_co_return] = ACTIONS(2478), - [anon_sym_co_yield] = ACTIONS(2478), - [anon_sym_R_DQUOTE] = ACTIONS(2480), - [anon_sym_LR_DQUOTE] = ACTIONS(2480), - [anon_sym_uR_DQUOTE] = ACTIONS(2480), - [anon_sym_UR_DQUOTE] = ACTIONS(2480), - [anon_sym_u8R_DQUOTE] = ACTIONS(2480), - [anon_sym_co_await] = ACTIONS(2478), - [anon_sym_new] = ACTIONS(2478), - [anon_sym_requires] = ACTIONS(2478), - [sym_this] = ACTIONS(2478), - [sym_nullptr] = ACTIONS(2478), - }, - [798] = { - [sym_identifier] = ACTIONS(2504), - [aux_sym_preproc_include_token1] = ACTIONS(2504), - [aux_sym_preproc_def_token1] = ACTIONS(2504), - [aux_sym_preproc_if_token1] = ACTIONS(2504), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2504), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2504), - [sym_preproc_directive] = ACTIONS(2504), - [anon_sym_LPAREN2] = ACTIONS(2506), - [anon_sym_BANG] = ACTIONS(2506), - [anon_sym_TILDE] = ACTIONS(2506), - [anon_sym_DASH] = ACTIONS(2504), - [anon_sym_PLUS] = ACTIONS(2504), - [anon_sym_STAR] = ACTIONS(2506), - [anon_sym_AMP_AMP] = ACTIONS(2506), - [anon_sym_AMP] = ACTIONS(2504), - [anon_sym_SEMI] = ACTIONS(2506), - [anon_sym_typedef] = ACTIONS(2504), - [anon_sym_extern] = ACTIONS(2504), - [anon_sym___attribute__] = ACTIONS(2504), - [anon_sym_COLON_COLON] = ACTIONS(2506), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2506), - [anon_sym___declspec] = ACTIONS(2504), - [anon_sym___based] = ACTIONS(2504), - [anon_sym___cdecl] = ACTIONS(2504), - [anon_sym___clrcall] = ACTIONS(2504), - [anon_sym___stdcall] = ACTIONS(2504), - [anon_sym___fastcall] = ACTIONS(2504), - [anon_sym___thiscall] = ACTIONS(2504), - [anon_sym___vectorcall] = ACTIONS(2504), - [anon_sym_LBRACE] = ACTIONS(2506), - [anon_sym_RBRACE] = ACTIONS(2506), - [anon_sym_LBRACK] = ACTIONS(2504), - [anon_sym_static] = ACTIONS(2504), - [anon_sym_register] = ACTIONS(2504), - [anon_sym_inline] = ACTIONS(2504), - [anon_sym_thread_local] = ACTIONS(2504), - [anon_sym_const] = ACTIONS(2504), - [anon_sym_volatile] = ACTIONS(2504), - [anon_sym_restrict] = ACTIONS(2504), - [anon_sym__Atomic] = ACTIONS(2504), - [anon_sym_mutable] = ACTIONS(2504), - [anon_sym_constexpr] = ACTIONS(2504), - [anon_sym_constinit] = ACTIONS(2504), - [anon_sym_consteval] = ACTIONS(2504), - [anon_sym_signed] = ACTIONS(2504), - [anon_sym_unsigned] = ACTIONS(2504), - [anon_sym_long] = ACTIONS(2504), - [anon_sym_short] = ACTIONS(2504), - [sym_primitive_type] = ACTIONS(2504), - [anon_sym_enum] = ACTIONS(2504), - [anon_sym_class] = ACTIONS(2504), - [anon_sym_struct] = ACTIONS(2504), - [anon_sym_union] = ACTIONS(2504), - [anon_sym_if] = ACTIONS(2504), - [anon_sym_else] = ACTIONS(2504), - [anon_sym_switch] = ACTIONS(2504), - [anon_sym_case] = ACTIONS(2504), - [anon_sym_default] = ACTIONS(2504), - [anon_sym_while] = ACTIONS(2504), - [anon_sym_do] = ACTIONS(2504), - [anon_sym_for] = ACTIONS(2504), - [anon_sym_return] = ACTIONS(2504), - [anon_sym_break] = ACTIONS(2504), - [anon_sym_continue] = ACTIONS(2504), - [anon_sym_goto] = ACTIONS(2504), - [anon_sym_not] = ACTIONS(2504), - [anon_sym_compl] = ACTIONS(2504), - [anon_sym_DASH_DASH] = ACTIONS(2506), - [anon_sym_PLUS_PLUS] = ACTIONS(2506), - [anon_sym_sizeof] = ACTIONS(2504), - [sym_number_literal] = ACTIONS(2506), - [anon_sym_L_SQUOTE] = ACTIONS(2506), - [anon_sym_u_SQUOTE] = ACTIONS(2506), - [anon_sym_U_SQUOTE] = ACTIONS(2506), - [anon_sym_u8_SQUOTE] = ACTIONS(2506), - [anon_sym_SQUOTE] = ACTIONS(2506), - [anon_sym_L_DQUOTE] = ACTIONS(2506), - [anon_sym_u_DQUOTE] = ACTIONS(2506), - [anon_sym_U_DQUOTE] = ACTIONS(2506), - [anon_sym_u8_DQUOTE] = ACTIONS(2506), - [anon_sym_DQUOTE] = ACTIONS(2506), - [sym_true] = ACTIONS(2504), - [sym_false] = ACTIONS(2504), - [sym_null] = ACTIONS(2504), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2504), - [anon_sym_decltype] = ACTIONS(2504), - [anon_sym_virtual] = ACTIONS(2504), - [anon_sym_explicit] = ACTIONS(2504), - [anon_sym_typename] = ACTIONS(2504), - [anon_sym_template] = ACTIONS(2504), - [anon_sym_operator] = ACTIONS(2504), - [anon_sym_try] = ACTIONS(2504), - [anon_sym_delete] = ACTIONS(2504), - [anon_sym_throw] = ACTIONS(2504), - [anon_sym_namespace] = ACTIONS(2504), - [anon_sym_using] = ACTIONS(2504), - [anon_sym_static_assert] = ACTIONS(2504), - [anon_sym_concept] = ACTIONS(2504), - [anon_sym_co_return] = ACTIONS(2504), - [anon_sym_co_yield] = ACTIONS(2504), - [anon_sym_R_DQUOTE] = ACTIONS(2506), - [anon_sym_LR_DQUOTE] = ACTIONS(2506), - [anon_sym_uR_DQUOTE] = ACTIONS(2506), - [anon_sym_UR_DQUOTE] = ACTIONS(2506), - [anon_sym_u8R_DQUOTE] = ACTIONS(2506), - [anon_sym_co_await] = ACTIONS(2504), - [anon_sym_new] = ACTIONS(2504), - [anon_sym_requires] = ACTIONS(2504), - [sym_this] = ACTIONS(2504), - [sym_nullptr] = ACTIONS(2504), - }, - [799] = { - [ts_builtin_sym_end] = ACTIONS(2542), - [sym_identifier] = ACTIONS(2540), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2542), - [anon_sym_AMP] = ACTIONS(2540), - [anon_sym_SEMI] = ACTIONS(2542), - [anon_sym_typedef] = ACTIONS(2540), - [anon_sym_extern] = ACTIONS(2540), - [anon_sym___attribute__] = ACTIONS(2540), - [anon_sym_COLON_COLON] = ACTIONS(2542), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2542), - [anon_sym___declspec] = ACTIONS(2540), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2540), - [anon_sym_static] = ACTIONS(2540), - [anon_sym_register] = ACTIONS(2540), - [anon_sym_inline] = ACTIONS(2540), - [anon_sym_thread_local] = ACTIONS(2540), - [anon_sym_const] = ACTIONS(2540), - [anon_sym_volatile] = ACTIONS(2540), - [anon_sym_restrict] = ACTIONS(2540), - [anon_sym__Atomic] = ACTIONS(2540), - [anon_sym_mutable] = ACTIONS(2540), - [anon_sym_constexpr] = ACTIONS(2540), - [anon_sym_constinit] = ACTIONS(2540), - [anon_sym_consteval] = ACTIONS(2540), - [anon_sym_signed] = ACTIONS(2540), - [anon_sym_unsigned] = ACTIONS(2540), - [anon_sym_long] = ACTIONS(2540), - [anon_sym_short] = ACTIONS(2540), - [sym_primitive_type] = ACTIONS(2540), - [anon_sym_enum] = ACTIONS(2540), - [anon_sym_class] = 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_return] = ACTIONS(2540), - [anon_sym_break] = ACTIONS(2540), - [anon_sym_continue] = ACTIONS(2540), - [anon_sym_goto] = ACTIONS(2540), - [anon_sym_not] = ACTIONS(2540), - [anon_sym_compl] = ACTIONS(2540), - [anon_sym_DASH_DASH] = ACTIONS(2542), - [anon_sym_PLUS_PLUS] = ACTIONS(2542), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2542), - [anon_sym_u_DQUOTE] = ACTIONS(2542), - [anon_sym_U_DQUOTE] = ACTIONS(2542), - [anon_sym_u8_DQUOTE] = ACTIONS(2542), - [anon_sym_DQUOTE] = ACTIONS(2542), - [sym_true] = ACTIONS(2540), - [sym_false] = ACTIONS(2540), - [sym_null] = ACTIONS(2540), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2540), - [anon_sym_decltype] = ACTIONS(2540), - [anon_sym_virtual] = ACTIONS(2540), - [anon_sym_explicit] = ACTIONS(2540), - [anon_sym_typename] = ACTIONS(2540), - [anon_sym_template] = ACTIONS(2540), - [anon_sym_operator] = ACTIONS(2540), - [anon_sym_try] = ACTIONS(2540), - [anon_sym_delete] = ACTIONS(2540), - [anon_sym_throw] = ACTIONS(2540), - [anon_sym_namespace] = ACTIONS(2540), - [anon_sym_using] = ACTIONS(2540), - [anon_sym_static_assert] = ACTIONS(2540), - [anon_sym_concept] = ACTIONS(2540), - [anon_sym_co_return] = ACTIONS(2540), - [anon_sym_co_yield] = ACTIONS(2540), - [anon_sym_R_DQUOTE] = ACTIONS(2542), - [anon_sym_LR_DQUOTE] = ACTIONS(2542), - [anon_sym_uR_DQUOTE] = ACTIONS(2542), - [anon_sym_UR_DQUOTE] = ACTIONS(2542), - [anon_sym_u8R_DQUOTE] = ACTIONS(2542), - [anon_sym_co_await] = ACTIONS(2540), - [anon_sym_new] = ACTIONS(2540), - [anon_sym_requires] = ACTIONS(2540), - [sym_this] = ACTIONS(2540), - [sym_nullptr] = ACTIONS(2540), - }, - [800] = { - [sym_identifier] = ACTIONS(2462), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2464), - [anon_sym_AMP] = ACTIONS(2462), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_explicit] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_operator] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_namespace] = ACTIONS(2462), - [anon_sym_using] = ACTIONS(2462), - [anon_sym_static_assert] = ACTIONS(2462), - [anon_sym_concept] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [anon_sym_co_await] = ACTIONS(2536), + [anon_sym_new] = ACTIONS(2536), + [anon_sym_requires] = ACTIONS(2536), + [sym_this] = ACTIONS(2536), }, [801] = { - [sym_identifier] = ACTIONS(2510), - [aux_sym_preproc_include_token1] = ACTIONS(2510), - [aux_sym_preproc_def_token1] = ACTIONS(2510), - [aux_sym_preproc_if_token1] = ACTIONS(2510), - [aux_sym_preproc_if_token2] = ACTIONS(2510), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2510), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2510), - [sym_preproc_directive] = ACTIONS(2510), - [anon_sym_LPAREN2] = ACTIONS(2512), - [anon_sym_BANG] = ACTIONS(2512), - [anon_sym_TILDE] = ACTIONS(2512), - [anon_sym_DASH] = ACTIONS(2510), - [anon_sym_PLUS] = ACTIONS(2510), - [anon_sym_STAR] = ACTIONS(2512), - [anon_sym_AMP_AMP] = ACTIONS(2512), - [anon_sym_AMP] = ACTIONS(2510), - [anon_sym_SEMI] = ACTIONS(2512), - [anon_sym_typedef] = ACTIONS(2510), - [anon_sym_extern] = ACTIONS(2510), - [anon_sym___attribute__] = ACTIONS(2510), - [anon_sym_COLON_COLON] = ACTIONS(2512), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2512), - [anon_sym___declspec] = ACTIONS(2510), - [anon_sym___based] = ACTIONS(2510), - [anon_sym___cdecl] = ACTIONS(2510), - [anon_sym___clrcall] = ACTIONS(2510), - [anon_sym___stdcall] = ACTIONS(2510), - [anon_sym___fastcall] = ACTIONS(2510), - [anon_sym___thiscall] = ACTIONS(2510), - [anon_sym___vectorcall] = ACTIONS(2510), - [anon_sym_LBRACE] = ACTIONS(2512), - [anon_sym_LBRACK] = ACTIONS(2510), - [anon_sym_static] = ACTIONS(2510), - [anon_sym_register] = ACTIONS(2510), - [anon_sym_inline] = ACTIONS(2510), - [anon_sym_thread_local] = ACTIONS(2510), - [anon_sym_const] = ACTIONS(2510), - [anon_sym_volatile] = ACTIONS(2510), - [anon_sym_restrict] = ACTIONS(2510), - [anon_sym__Atomic] = ACTIONS(2510), - [anon_sym_mutable] = ACTIONS(2510), - [anon_sym_constexpr] = ACTIONS(2510), - [anon_sym_constinit] = ACTIONS(2510), - [anon_sym_consteval] = ACTIONS(2510), - [anon_sym_signed] = ACTIONS(2510), - [anon_sym_unsigned] = ACTIONS(2510), - [anon_sym_long] = ACTIONS(2510), - [anon_sym_short] = ACTIONS(2510), - [sym_primitive_type] = ACTIONS(2510), - [anon_sym_enum] = ACTIONS(2510), - [anon_sym_class] = ACTIONS(2510), - [anon_sym_struct] = ACTIONS(2510), - [anon_sym_union] = ACTIONS(2510), - [anon_sym_if] = ACTIONS(2510), - [anon_sym_else] = ACTIONS(2510), - [anon_sym_switch] = ACTIONS(2510), - [anon_sym_case] = ACTIONS(2510), - [anon_sym_default] = ACTIONS(2510), - [anon_sym_while] = ACTIONS(2510), - [anon_sym_do] = ACTIONS(2510), - [anon_sym_for] = ACTIONS(2510), - [anon_sym_return] = ACTIONS(2510), - [anon_sym_break] = ACTIONS(2510), - [anon_sym_continue] = ACTIONS(2510), - [anon_sym_goto] = ACTIONS(2510), - [anon_sym_not] = ACTIONS(2510), - [anon_sym_compl] = ACTIONS(2510), - [anon_sym_DASH_DASH] = ACTIONS(2512), - [anon_sym_PLUS_PLUS] = ACTIONS(2512), - [anon_sym_sizeof] = ACTIONS(2510), - [sym_number_literal] = ACTIONS(2512), - [anon_sym_L_SQUOTE] = ACTIONS(2512), - [anon_sym_u_SQUOTE] = ACTIONS(2512), - [anon_sym_U_SQUOTE] = ACTIONS(2512), - [anon_sym_u8_SQUOTE] = ACTIONS(2512), - [anon_sym_SQUOTE] = ACTIONS(2512), - [anon_sym_L_DQUOTE] = ACTIONS(2512), - [anon_sym_u_DQUOTE] = ACTIONS(2512), - [anon_sym_U_DQUOTE] = ACTIONS(2512), - [anon_sym_u8_DQUOTE] = ACTIONS(2512), - [anon_sym_DQUOTE] = ACTIONS(2512), - [sym_true] = ACTIONS(2510), - [sym_false] = ACTIONS(2510), - [sym_null] = ACTIONS(2510), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2510), - [anon_sym_decltype] = ACTIONS(2510), - [anon_sym_virtual] = ACTIONS(2510), - [anon_sym_explicit] = ACTIONS(2510), - [anon_sym_typename] = ACTIONS(2510), - [anon_sym_template] = ACTIONS(2510), - [anon_sym_operator] = ACTIONS(2510), - [anon_sym_try] = ACTIONS(2510), - [anon_sym_delete] = ACTIONS(2510), - [anon_sym_throw] = ACTIONS(2510), - [anon_sym_namespace] = ACTIONS(2510), - [anon_sym_using] = ACTIONS(2510), - [anon_sym_static_assert] = ACTIONS(2510), - [anon_sym_concept] = ACTIONS(2510), - [anon_sym_co_return] = ACTIONS(2510), - [anon_sym_co_yield] = ACTIONS(2510), - [anon_sym_R_DQUOTE] = ACTIONS(2512), - [anon_sym_LR_DQUOTE] = ACTIONS(2512), - [anon_sym_uR_DQUOTE] = ACTIONS(2512), - [anon_sym_UR_DQUOTE] = ACTIONS(2512), - [anon_sym_u8R_DQUOTE] = ACTIONS(2512), - [anon_sym_co_await] = ACTIONS(2510), - [anon_sym_new] = ACTIONS(2510), - [anon_sym_requires] = ACTIONS(2510), - [sym_this] = ACTIONS(2510), - [sym_nullptr] = ACTIONS(2510), + [sym_catch_clause] = STATE(573), + [aux_sym_constructor_try_statement_repeat1] = STATE(573), + [ts_builtin_sym_end] = ACTIONS(2723), + [sym_identifier] = ACTIONS(2721), + [aux_sym_preproc_include_token1] = ACTIONS(2721), + [aux_sym_preproc_def_token1] = ACTIONS(2721), + [aux_sym_preproc_if_token1] = ACTIONS(2721), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2721), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2721), + [sym_preproc_directive] = ACTIONS(2721), + [anon_sym_LPAREN2] = ACTIONS(2723), + [anon_sym_BANG] = ACTIONS(2723), + [anon_sym_TILDE] = ACTIONS(2723), + [anon_sym_DASH] = ACTIONS(2721), + [anon_sym_PLUS] = ACTIONS(2721), + [anon_sym_STAR] = ACTIONS(2723), + [anon_sym_AMP_AMP] = ACTIONS(2723), + [anon_sym_AMP] = ACTIONS(2721), + [anon_sym_typedef] = ACTIONS(2721), + [anon_sym_extern] = ACTIONS(2721), + [anon_sym___attribute__] = ACTIONS(2721), + [anon_sym_COLON_COLON] = ACTIONS(2723), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2723), + [anon_sym___declspec] = ACTIONS(2721), + [anon_sym___based] = ACTIONS(2721), + [anon_sym___cdecl] = ACTIONS(2721), + [anon_sym___clrcall] = ACTIONS(2721), + [anon_sym___stdcall] = ACTIONS(2721), + [anon_sym___fastcall] = ACTIONS(2721), + [anon_sym___thiscall] = ACTIONS(2721), + [anon_sym___vectorcall] = ACTIONS(2721), + [anon_sym_LBRACE] = ACTIONS(2723), + [anon_sym_LBRACK] = ACTIONS(2721), + [anon_sym_static] = ACTIONS(2721), + [anon_sym_register] = ACTIONS(2721), + [anon_sym_inline] = ACTIONS(2721), + [anon_sym_thread_local] = ACTIONS(2721), + [anon_sym_const] = ACTIONS(2721), + [anon_sym_constexpr] = ACTIONS(2721), + [anon_sym_volatile] = ACTIONS(2721), + [anon_sym_restrict] = ACTIONS(2721), + [anon_sym___restrict__] = ACTIONS(2721), + [anon_sym__Atomic] = ACTIONS(2721), + [anon_sym__Noreturn] = ACTIONS(2721), + [anon_sym_noreturn] = ACTIONS(2721), + [anon_sym_mutable] = ACTIONS(2721), + [anon_sym_constinit] = ACTIONS(2721), + [anon_sym_consteval] = ACTIONS(2721), + [anon_sym_signed] = ACTIONS(2721), + [anon_sym_unsigned] = ACTIONS(2721), + [anon_sym_long] = ACTIONS(2721), + [anon_sym_short] = ACTIONS(2721), + [sym_primitive_type] = ACTIONS(2721), + [anon_sym_enum] = ACTIONS(2721), + [anon_sym_class] = ACTIONS(2721), + [anon_sym_struct] = ACTIONS(2721), + [anon_sym_union] = ACTIONS(2721), + [anon_sym_if] = ACTIONS(2721), + [anon_sym_switch] = ACTIONS(2721), + [anon_sym_case] = ACTIONS(2721), + [anon_sym_default] = ACTIONS(2721), + [anon_sym_while] = ACTIONS(2721), + [anon_sym_do] = ACTIONS(2721), + [anon_sym_for] = ACTIONS(2721), + [anon_sym_return] = ACTIONS(2721), + [anon_sym_break] = ACTIONS(2721), + [anon_sym_continue] = ACTIONS(2721), + [anon_sym_goto] = ACTIONS(2721), + [anon_sym_not] = ACTIONS(2721), + [anon_sym_compl] = ACTIONS(2721), + [anon_sym_DASH_DASH] = ACTIONS(2723), + [anon_sym_PLUS_PLUS] = ACTIONS(2723), + [anon_sym_sizeof] = ACTIONS(2721), + [anon_sym_offsetof] = ACTIONS(2721), + [anon_sym__Generic] = ACTIONS(2721), + [anon_sym_asm] = ACTIONS(2721), + [anon_sym___asm__] = ACTIONS(2721), + [sym_number_literal] = ACTIONS(2723), + [anon_sym_L_SQUOTE] = ACTIONS(2723), + [anon_sym_u_SQUOTE] = ACTIONS(2723), + [anon_sym_U_SQUOTE] = ACTIONS(2723), + [anon_sym_u8_SQUOTE] = ACTIONS(2723), + [anon_sym_SQUOTE] = ACTIONS(2723), + [anon_sym_L_DQUOTE] = ACTIONS(2723), + [anon_sym_u_DQUOTE] = ACTIONS(2723), + [anon_sym_U_DQUOTE] = ACTIONS(2723), + [anon_sym_u8_DQUOTE] = ACTIONS(2723), + [anon_sym_DQUOTE] = ACTIONS(2723), + [sym_true] = ACTIONS(2721), + [sym_false] = ACTIONS(2721), + [anon_sym_NULL] = ACTIONS(2721), + [anon_sym_nullptr] = ACTIONS(2721), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2721), + [anon_sym_decltype] = ACTIONS(2721), + [anon_sym_virtual] = ACTIONS(2721), + [anon_sym_explicit] = ACTIONS(2721), + [anon_sym_typename] = ACTIONS(2721), + [anon_sym_template] = ACTIONS(2721), + [anon_sym_operator] = ACTIONS(2721), + [anon_sym_try] = ACTIONS(2721), + [anon_sym_delete] = ACTIONS(2721), + [anon_sym_throw] = ACTIONS(2721), + [anon_sym_namespace] = ACTIONS(2721), + [anon_sym_using] = ACTIONS(2721), + [anon_sym_static_assert] = ACTIONS(2721), + [anon_sym_concept] = ACTIONS(2721), + [anon_sym_co_return] = ACTIONS(2721), + [anon_sym_co_yield] = ACTIONS(2721), + [anon_sym_catch] = ACTIONS(3413), + [anon_sym_R_DQUOTE] = ACTIONS(2723), + [anon_sym_LR_DQUOTE] = ACTIONS(2723), + [anon_sym_uR_DQUOTE] = ACTIONS(2723), + [anon_sym_UR_DQUOTE] = ACTIONS(2723), + [anon_sym_u8R_DQUOTE] = ACTIONS(2723), + [anon_sym_co_await] = ACTIONS(2721), + [anon_sym_new] = ACTIONS(2721), + [anon_sym_requires] = ACTIONS(2721), + [sym_this] = ACTIONS(2721), }, [802] = { - [sym_identifier] = ACTIONS(2462), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2464), - [anon_sym_AMP] = ACTIONS(2462), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_explicit] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_operator] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_namespace] = ACTIONS(2462), - [anon_sym_using] = ACTIONS(2462), - [anon_sym_static_assert] = ACTIONS(2462), - [anon_sym_concept] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_identifier] = ACTIONS(3429), + [aux_sym_preproc_include_token1] = ACTIONS(3429), + [aux_sym_preproc_def_token1] = ACTIONS(3429), + [aux_sym_preproc_if_token1] = ACTIONS(3429), + [aux_sym_preproc_if_token2] = ACTIONS(3429), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3429), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3429), + [aux_sym_preproc_else_token1] = ACTIONS(3429), + [aux_sym_preproc_elif_token1] = ACTIONS(3429), + [sym_preproc_directive] = ACTIONS(3429), + [anon_sym_LPAREN2] = ACTIONS(3431), + [anon_sym_BANG] = ACTIONS(3431), + [anon_sym_TILDE] = ACTIONS(3431), + [anon_sym_DASH] = ACTIONS(3429), + [anon_sym_PLUS] = ACTIONS(3429), + [anon_sym_STAR] = ACTIONS(3431), + [anon_sym_AMP_AMP] = ACTIONS(3431), + [anon_sym_AMP] = ACTIONS(3429), + [anon_sym_SEMI] = ACTIONS(3431), + [anon_sym_typedef] = ACTIONS(3429), + [anon_sym_extern] = ACTIONS(3429), + [anon_sym___attribute__] = ACTIONS(3429), + [anon_sym_COLON_COLON] = ACTIONS(3431), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3431), + [anon_sym___declspec] = ACTIONS(3429), + [anon_sym___based] = ACTIONS(3429), + [anon_sym___cdecl] = ACTIONS(3429), + [anon_sym___clrcall] = ACTIONS(3429), + [anon_sym___stdcall] = ACTIONS(3429), + [anon_sym___fastcall] = ACTIONS(3429), + [anon_sym___thiscall] = ACTIONS(3429), + [anon_sym___vectorcall] = ACTIONS(3429), + [anon_sym_LBRACE] = ACTIONS(3431), + [anon_sym_LBRACK] = ACTIONS(3429), + [anon_sym_static] = ACTIONS(3429), + [anon_sym_register] = ACTIONS(3429), + [anon_sym_inline] = ACTIONS(3429), + [anon_sym_thread_local] = ACTIONS(3429), + [anon_sym_const] = ACTIONS(3429), + [anon_sym_constexpr] = ACTIONS(3429), + [anon_sym_volatile] = ACTIONS(3429), + [anon_sym_restrict] = ACTIONS(3429), + [anon_sym___restrict__] = ACTIONS(3429), + [anon_sym__Atomic] = ACTIONS(3429), + [anon_sym__Noreturn] = ACTIONS(3429), + [anon_sym_noreturn] = ACTIONS(3429), + [anon_sym_mutable] = ACTIONS(3429), + [anon_sym_constinit] = ACTIONS(3429), + [anon_sym_consteval] = ACTIONS(3429), + [anon_sym_signed] = ACTIONS(3429), + [anon_sym_unsigned] = ACTIONS(3429), + [anon_sym_long] = ACTIONS(3429), + [anon_sym_short] = ACTIONS(3429), + [sym_primitive_type] = ACTIONS(3429), + [anon_sym_enum] = ACTIONS(3429), + [anon_sym_class] = ACTIONS(3429), + [anon_sym_struct] = ACTIONS(3429), + [anon_sym_union] = ACTIONS(3429), + [anon_sym_if] = ACTIONS(3429), + [anon_sym_switch] = ACTIONS(3429), + [anon_sym_case] = ACTIONS(3429), + [anon_sym_default] = ACTIONS(3429), + [anon_sym_while] = ACTIONS(3429), + [anon_sym_do] = ACTIONS(3429), + [anon_sym_for] = ACTIONS(3429), + [anon_sym_return] = ACTIONS(3429), + [anon_sym_break] = ACTIONS(3429), + [anon_sym_continue] = ACTIONS(3429), + [anon_sym_goto] = ACTIONS(3429), + [anon_sym_not] = ACTIONS(3429), + [anon_sym_compl] = ACTIONS(3429), + [anon_sym_DASH_DASH] = ACTIONS(3431), + [anon_sym_PLUS_PLUS] = ACTIONS(3431), + [anon_sym_sizeof] = ACTIONS(3429), + [anon_sym_offsetof] = ACTIONS(3429), + [anon_sym__Generic] = ACTIONS(3429), + [anon_sym_asm] = ACTIONS(3429), + [anon_sym___asm__] = ACTIONS(3429), + [sym_number_literal] = ACTIONS(3431), + [anon_sym_L_SQUOTE] = ACTIONS(3431), + [anon_sym_u_SQUOTE] = ACTIONS(3431), + [anon_sym_U_SQUOTE] = ACTIONS(3431), + [anon_sym_u8_SQUOTE] = ACTIONS(3431), + [anon_sym_SQUOTE] = ACTIONS(3431), + [anon_sym_L_DQUOTE] = ACTIONS(3431), + [anon_sym_u_DQUOTE] = ACTIONS(3431), + [anon_sym_U_DQUOTE] = ACTIONS(3431), + [anon_sym_u8_DQUOTE] = ACTIONS(3431), + [anon_sym_DQUOTE] = ACTIONS(3431), + [sym_true] = ACTIONS(3429), + [sym_false] = ACTIONS(3429), + [anon_sym_NULL] = ACTIONS(3429), + [anon_sym_nullptr] = ACTIONS(3429), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3429), + [anon_sym_decltype] = ACTIONS(3429), + [anon_sym_virtual] = ACTIONS(3429), + [anon_sym_explicit] = ACTIONS(3429), + [anon_sym_typename] = ACTIONS(3429), + [anon_sym_template] = ACTIONS(3429), + [anon_sym_operator] = ACTIONS(3429), + [anon_sym_try] = ACTIONS(3429), + [anon_sym_delete] = ACTIONS(3429), + [anon_sym_throw] = ACTIONS(3429), + [anon_sym_namespace] = ACTIONS(3429), + [anon_sym_using] = ACTIONS(3429), + [anon_sym_static_assert] = ACTIONS(3429), + [anon_sym_concept] = ACTIONS(3429), + [anon_sym_co_return] = ACTIONS(3429), + [anon_sym_co_yield] = ACTIONS(3429), + [anon_sym_R_DQUOTE] = ACTIONS(3431), + [anon_sym_LR_DQUOTE] = ACTIONS(3431), + [anon_sym_uR_DQUOTE] = ACTIONS(3431), + [anon_sym_UR_DQUOTE] = ACTIONS(3431), + [anon_sym_u8R_DQUOTE] = ACTIONS(3431), + [anon_sym_co_await] = ACTIONS(3429), + [anon_sym_new] = ACTIONS(3429), + [anon_sym_requires] = ACTIONS(3429), + [sym_this] = ACTIONS(3429), }, [803] = { - [sym_identifier] = ACTIONS(2462), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2464), - [anon_sym_AMP] = ACTIONS(2462), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_explicit] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_operator] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_namespace] = ACTIONS(2462), - [anon_sym_using] = ACTIONS(2462), - [anon_sym_static_assert] = ACTIONS(2462), - [anon_sym_concept] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_identifier] = ACTIONS(3395), + [aux_sym_preproc_include_token1] = ACTIONS(3395), + [aux_sym_preproc_def_token1] = ACTIONS(3395), + [aux_sym_preproc_if_token1] = ACTIONS(3395), + [aux_sym_preproc_if_token2] = ACTIONS(3395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3395), + [aux_sym_preproc_else_token1] = ACTIONS(3395), + [aux_sym_preproc_elif_token1] = ACTIONS(3395), + [sym_preproc_directive] = ACTIONS(3395), + [anon_sym_LPAREN2] = ACTIONS(3397), + [anon_sym_BANG] = ACTIONS(3397), + [anon_sym_TILDE] = ACTIONS(3397), + [anon_sym_DASH] = ACTIONS(3395), + [anon_sym_PLUS] = ACTIONS(3395), + [anon_sym_STAR] = ACTIONS(3397), + [anon_sym_AMP_AMP] = ACTIONS(3397), + [anon_sym_AMP] = ACTIONS(3395), + [anon_sym_SEMI] = ACTIONS(3397), + [anon_sym_typedef] = ACTIONS(3395), + [anon_sym_extern] = ACTIONS(3395), + [anon_sym___attribute__] = ACTIONS(3395), + [anon_sym_COLON_COLON] = ACTIONS(3397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3397), + [anon_sym___declspec] = ACTIONS(3395), + [anon_sym___based] = ACTIONS(3395), + [anon_sym___cdecl] = ACTIONS(3395), + [anon_sym___clrcall] = ACTIONS(3395), + [anon_sym___stdcall] = ACTIONS(3395), + [anon_sym___fastcall] = ACTIONS(3395), + [anon_sym___thiscall] = ACTIONS(3395), + [anon_sym___vectorcall] = ACTIONS(3395), + [anon_sym_LBRACE] = ACTIONS(3397), + [anon_sym_LBRACK] = ACTIONS(3395), + [anon_sym_static] = ACTIONS(3395), + [anon_sym_register] = ACTIONS(3395), + [anon_sym_inline] = ACTIONS(3395), + [anon_sym_thread_local] = ACTIONS(3395), + [anon_sym_const] = ACTIONS(3395), + [anon_sym_constexpr] = ACTIONS(3395), + [anon_sym_volatile] = ACTIONS(3395), + [anon_sym_restrict] = ACTIONS(3395), + [anon_sym___restrict__] = ACTIONS(3395), + [anon_sym__Atomic] = ACTIONS(3395), + [anon_sym__Noreturn] = ACTIONS(3395), + [anon_sym_noreturn] = ACTIONS(3395), + [anon_sym_mutable] = ACTIONS(3395), + [anon_sym_constinit] = ACTIONS(3395), + [anon_sym_consteval] = ACTIONS(3395), + [anon_sym_signed] = ACTIONS(3395), + [anon_sym_unsigned] = ACTIONS(3395), + [anon_sym_long] = ACTIONS(3395), + [anon_sym_short] = ACTIONS(3395), + [sym_primitive_type] = ACTIONS(3395), + [anon_sym_enum] = ACTIONS(3395), + [anon_sym_class] = ACTIONS(3395), + [anon_sym_struct] = ACTIONS(3395), + [anon_sym_union] = ACTIONS(3395), + [anon_sym_if] = ACTIONS(3395), + [anon_sym_switch] = ACTIONS(3395), + [anon_sym_case] = ACTIONS(3395), + [anon_sym_default] = ACTIONS(3395), + [anon_sym_while] = ACTIONS(3395), + [anon_sym_do] = ACTIONS(3395), + [anon_sym_for] = ACTIONS(3395), + [anon_sym_return] = ACTIONS(3395), + [anon_sym_break] = ACTIONS(3395), + [anon_sym_continue] = ACTIONS(3395), + [anon_sym_goto] = ACTIONS(3395), + [anon_sym_not] = ACTIONS(3395), + [anon_sym_compl] = ACTIONS(3395), + [anon_sym_DASH_DASH] = ACTIONS(3397), + [anon_sym_PLUS_PLUS] = ACTIONS(3397), + [anon_sym_sizeof] = ACTIONS(3395), + [anon_sym_offsetof] = ACTIONS(3395), + [anon_sym__Generic] = ACTIONS(3395), + [anon_sym_asm] = ACTIONS(3395), + [anon_sym___asm__] = ACTIONS(3395), + [sym_number_literal] = ACTIONS(3397), + [anon_sym_L_SQUOTE] = ACTIONS(3397), + [anon_sym_u_SQUOTE] = ACTIONS(3397), + [anon_sym_U_SQUOTE] = ACTIONS(3397), + [anon_sym_u8_SQUOTE] = ACTIONS(3397), + [anon_sym_SQUOTE] = ACTIONS(3397), + [anon_sym_L_DQUOTE] = ACTIONS(3397), + [anon_sym_u_DQUOTE] = ACTIONS(3397), + [anon_sym_U_DQUOTE] = ACTIONS(3397), + [anon_sym_u8_DQUOTE] = ACTIONS(3397), + [anon_sym_DQUOTE] = ACTIONS(3397), + [sym_true] = ACTIONS(3395), + [sym_false] = ACTIONS(3395), + [anon_sym_NULL] = ACTIONS(3395), + [anon_sym_nullptr] = ACTIONS(3395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3395), + [anon_sym_decltype] = ACTIONS(3395), + [anon_sym_virtual] = ACTIONS(3395), + [anon_sym_explicit] = ACTIONS(3395), + [anon_sym_typename] = ACTIONS(3395), + [anon_sym_template] = ACTIONS(3395), + [anon_sym_operator] = ACTIONS(3395), + [anon_sym_try] = ACTIONS(3395), + [anon_sym_delete] = ACTIONS(3395), + [anon_sym_throw] = ACTIONS(3395), + [anon_sym_namespace] = ACTIONS(3395), + [anon_sym_using] = ACTIONS(3395), + [anon_sym_static_assert] = ACTIONS(3395), + [anon_sym_concept] = ACTIONS(3395), + [anon_sym_co_return] = ACTIONS(3395), + [anon_sym_co_yield] = ACTIONS(3395), + [anon_sym_R_DQUOTE] = ACTIONS(3397), + [anon_sym_LR_DQUOTE] = ACTIONS(3397), + [anon_sym_uR_DQUOTE] = ACTIONS(3397), + [anon_sym_UR_DQUOTE] = ACTIONS(3397), + [anon_sym_u8R_DQUOTE] = ACTIONS(3397), + [anon_sym_co_await] = ACTIONS(3395), + [anon_sym_new] = ACTIONS(3395), + [anon_sym_requires] = ACTIONS(3395), + [sym_this] = ACTIONS(3395), }, [804] = { - [sym_identifier] = ACTIONS(2462), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2464), - [anon_sym_AMP] = ACTIONS(2462), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_explicit] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_operator] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_namespace] = ACTIONS(2462), - [anon_sym_using] = ACTIONS(2462), - [anon_sym_static_assert] = ACTIONS(2462), - [anon_sym_concept] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [ts_builtin_sym_end] = ACTIONS(2902), + [sym_identifier] = ACTIONS(2900), + [aux_sym_preproc_include_token1] = ACTIONS(2900), + [aux_sym_preproc_def_token1] = ACTIONS(2900), + [aux_sym_preproc_if_token1] = ACTIONS(2900), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2900), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2900), + [sym_preproc_directive] = ACTIONS(2900), + [anon_sym_LPAREN2] = ACTIONS(2902), + [anon_sym_BANG] = ACTIONS(2902), + [anon_sym_TILDE] = ACTIONS(2902), + [anon_sym_DASH] = ACTIONS(2900), + [anon_sym_PLUS] = ACTIONS(2900), + [anon_sym_STAR] = ACTIONS(2902), + [anon_sym_AMP_AMP] = ACTIONS(2902), + [anon_sym_AMP] = ACTIONS(2900), + [anon_sym_SEMI] = ACTIONS(2902), + [anon_sym_typedef] = ACTIONS(2900), + [anon_sym_extern] = ACTIONS(2900), + [anon_sym___attribute__] = ACTIONS(2900), + [anon_sym_COLON_COLON] = ACTIONS(2902), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2902), + [anon_sym___declspec] = ACTIONS(2900), + [anon_sym___based] = ACTIONS(2900), + [anon_sym___cdecl] = ACTIONS(2900), + [anon_sym___clrcall] = ACTIONS(2900), + [anon_sym___stdcall] = ACTIONS(2900), + [anon_sym___fastcall] = ACTIONS(2900), + [anon_sym___thiscall] = ACTIONS(2900), + [anon_sym___vectorcall] = ACTIONS(2900), + [anon_sym_LBRACE] = ACTIONS(2902), + [anon_sym_LBRACK] = ACTIONS(2900), + [anon_sym_static] = ACTIONS(2900), + [anon_sym_register] = ACTIONS(2900), + [anon_sym_inline] = ACTIONS(2900), + [anon_sym_thread_local] = ACTIONS(2900), + [anon_sym_const] = ACTIONS(2900), + [anon_sym_constexpr] = ACTIONS(2900), + [anon_sym_volatile] = ACTIONS(2900), + [anon_sym_restrict] = ACTIONS(2900), + [anon_sym___restrict__] = ACTIONS(2900), + [anon_sym__Atomic] = ACTIONS(2900), + [anon_sym__Noreturn] = ACTIONS(2900), + [anon_sym_noreturn] = ACTIONS(2900), + [anon_sym_mutable] = ACTIONS(2900), + [anon_sym_constinit] = ACTIONS(2900), + [anon_sym_consteval] = ACTIONS(2900), + [anon_sym_signed] = ACTIONS(2900), + [anon_sym_unsigned] = ACTIONS(2900), + [anon_sym_long] = ACTIONS(2900), + [anon_sym_short] = ACTIONS(2900), + [sym_primitive_type] = ACTIONS(2900), + [anon_sym_enum] = ACTIONS(2900), + [anon_sym_class] = ACTIONS(2900), + [anon_sym_struct] = ACTIONS(2900), + [anon_sym_union] = ACTIONS(2900), + [anon_sym_if] = ACTIONS(2900), + [anon_sym_else] = ACTIONS(2900), + [anon_sym_switch] = ACTIONS(2900), + [anon_sym_case] = ACTIONS(2900), + [anon_sym_default] = ACTIONS(2900), + [anon_sym_while] = ACTIONS(2900), + [anon_sym_do] = ACTIONS(2900), + [anon_sym_for] = ACTIONS(2900), + [anon_sym_return] = ACTIONS(2900), + [anon_sym_break] = ACTIONS(2900), + [anon_sym_continue] = ACTIONS(2900), + [anon_sym_goto] = ACTIONS(2900), + [anon_sym_not] = ACTIONS(2900), + [anon_sym_compl] = ACTIONS(2900), + [anon_sym_DASH_DASH] = ACTIONS(2902), + [anon_sym_PLUS_PLUS] = ACTIONS(2902), + [anon_sym_sizeof] = ACTIONS(2900), + [anon_sym_offsetof] = ACTIONS(2900), + [anon_sym__Generic] = ACTIONS(2900), + [anon_sym_asm] = ACTIONS(2900), + [anon_sym___asm__] = ACTIONS(2900), + [sym_number_literal] = ACTIONS(2902), + [anon_sym_L_SQUOTE] = ACTIONS(2902), + [anon_sym_u_SQUOTE] = ACTIONS(2902), + [anon_sym_U_SQUOTE] = ACTIONS(2902), + [anon_sym_u8_SQUOTE] = ACTIONS(2902), + [anon_sym_SQUOTE] = ACTIONS(2902), + [anon_sym_L_DQUOTE] = ACTIONS(2902), + [anon_sym_u_DQUOTE] = ACTIONS(2902), + [anon_sym_U_DQUOTE] = ACTIONS(2902), + [anon_sym_u8_DQUOTE] = ACTIONS(2902), + [anon_sym_DQUOTE] = ACTIONS(2902), + [sym_true] = ACTIONS(2900), + [sym_false] = ACTIONS(2900), + [anon_sym_NULL] = ACTIONS(2900), + [anon_sym_nullptr] = ACTIONS(2900), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2900), + [anon_sym_decltype] = ACTIONS(2900), + [anon_sym_virtual] = ACTIONS(2900), + [anon_sym_explicit] = ACTIONS(2900), + [anon_sym_typename] = ACTIONS(2900), + [anon_sym_template] = ACTIONS(2900), + [anon_sym_operator] = ACTIONS(2900), + [anon_sym_try] = ACTIONS(2900), + [anon_sym_delete] = ACTIONS(2900), + [anon_sym_throw] = ACTIONS(2900), + [anon_sym_namespace] = ACTIONS(2900), + [anon_sym_using] = ACTIONS(2900), + [anon_sym_static_assert] = ACTIONS(2900), + [anon_sym_concept] = ACTIONS(2900), + [anon_sym_co_return] = ACTIONS(2900), + [anon_sym_co_yield] = ACTIONS(2900), + [anon_sym_catch] = ACTIONS(2900), + [anon_sym_R_DQUOTE] = ACTIONS(2902), + [anon_sym_LR_DQUOTE] = ACTIONS(2902), + [anon_sym_uR_DQUOTE] = ACTIONS(2902), + [anon_sym_UR_DQUOTE] = ACTIONS(2902), + [anon_sym_u8R_DQUOTE] = ACTIONS(2902), + [anon_sym_co_await] = ACTIONS(2900), + [anon_sym_new] = ACTIONS(2900), + [anon_sym_requires] = ACTIONS(2900), + [sym_this] = ACTIONS(2900), }, [805] = { - [sym_identifier] = ACTIONS(2462), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2464), - [anon_sym_AMP] = ACTIONS(2462), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_explicit] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_operator] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_namespace] = ACTIONS(2462), - [anon_sym_using] = ACTIONS(2462), - [anon_sym_static_assert] = ACTIONS(2462), - [anon_sym_concept] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_identifier] = ACTIONS(3266), + [aux_sym_preproc_include_token1] = ACTIONS(3266), + [aux_sym_preproc_def_token1] = ACTIONS(3266), + [aux_sym_preproc_if_token1] = ACTIONS(3266), + [aux_sym_preproc_if_token2] = ACTIONS(3266), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3266), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3266), + [aux_sym_preproc_else_token1] = ACTIONS(3266), + [aux_sym_preproc_elif_token1] = ACTIONS(3266), + [sym_preproc_directive] = ACTIONS(3266), + [anon_sym_LPAREN2] = ACTIONS(3268), + [anon_sym_BANG] = ACTIONS(3268), + [anon_sym_TILDE] = ACTIONS(3268), + [anon_sym_DASH] = ACTIONS(3266), + [anon_sym_PLUS] = ACTIONS(3266), + [anon_sym_STAR] = ACTIONS(3268), + [anon_sym_AMP_AMP] = ACTIONS(3268), + [anon_sym_AMP] = ACTIONS(3266), + [anon_sym_SEMI] = ACTIONS(3268), + [anon_sym_typedef] = ACTIONS(3266), + [anon_sym_extern] = ACTIONS(3266), + [anon_sym___attribute__] = ACTIONS(3266), + [anon_sym_COLON_COLON] = ACTIONS(3268), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3268), + [anon_sym___declspec] = ACTIONS(3266), + [anon_sym___based] = ACTIONS(3266), + [anon_sym___cdecl] = ACTIONS(3266), + [anon_sym___clrcall] = ACTIONS(3266), + [anon_sym___stdcall] = ACTIONS(3266), + [anon_sym___fastcall] = ACTIONS(3266), + [anon_sym___thiscall] = ACTIONS(3266), + [anon_sym___vectorcall] = ACTIONS(3266), + [anon_sym_LBRACE] = ACTIONS(3268), + [anon_sym_LBRACK] = ACTIONS(3266), + [anon_sym_static] = ACTIONS(3266), + [anon_sym_register] = ACTIONS(3266), + [anon_sym_inline] = ACTIONS(3266), + [anon_sym_thread_local] = ACTIONS(3266), + [anon_sym_const] = ACTIONS(3266), + [anon_sym_constexpr] = ACTIONS(3266), + [anon_sym_volatile] = ACTIONS(3266), + [anon_sym_restrict] = ACTIONS(3266), + [anon_sym___restrict__] = ACTIONS(3266), + [anon_sym__Atomic] = ACTIONS(3266), + [anon_sym__Noreturn] = ACTIONS(3266), + [anon_sym_noreturn] = ACTIONS(3266), + [anon_sym_mutable] = ACTIONS(3266), + [anon_sym_constinit] = ACTIONS(3266), + [anon_sym_consteval] = ACTIONS(3266), + [anon_sym_signed] = ACTIONS(3266), + [anon_sym_unsigned] = ACTIONS(3266), + [anon_sym_long] = ACTIONS(3266), + [anon_sym_short] = ACTIONS(3266), + [sym_primitive_type] = ACTIONS(3266), + [anon_sym_enum] = ACTIONS(3266), + [anon_sym_class] = ACTIONS(3266), + [anon_sym_struct] = ACTIONS(3266), + [anon_sym_union] = ACTIONS(3266), + [anon_sym_if] = ACTIONS(3266), + [anon_sym_switch] = ACTIONS(3266), + [anon_sym_case] = ACTIONS(3266), + [anon_sym_default] = ACTIONS(3266), + [anon_sym_while] = ACTIONS(3266), + [anon_sym_do] = ACTIONS(3266), + [anon_sym_for] = ACTIONS(3266), + [anon_sym_return] = ACTIONS(3266), + [anon_sym_break] = ACTIONS(3266), + [anon_sym_continue] = ACTIONS(3266), + [anon_sym_goto] = ACTIONS(3266), + [anon_sym_not] = ACTIONS(3266), + [anon_sym_compl] = ACTIONS(3266), + [anon_sym_DASH_DASH] = ACTIONS(3268), + [anon_sym_PLUS_PLUS] = ACTIONS(3268), + [anon_sym_sizeof] = ACTIONS(3266), + [anon_sym_offsetof] = ACTIONS(3266), + [anon_sym__Generic] = ACTIONS(3266), + [anon_sym_asm] = ACTIONS(3266), + [anon_sym___asm__] = ACTIONS(3266), + [sym_number_literal] = ACTIONS(3268), + [anon_sym_L_SQUOTE] = ACTIONS(3268), + [anon_sym_u_SQUOTE] = ACTIONS(3268), + [anon_sym_U_SQUOTE] = ACTIONS(3268), + [anon_sym_u8_SQUOTE] = ACTIONS(3268), + [anon_sym_SQUOTE] = ACTIONS(3268), + [anon_sym_L_DQUOTE] = ACTIONS(3268), + [anon_sym_u_DQUOTE] = ACTIONS(3268), + [anon_sym_U_DQUOTE] = ACTIONS(3268), + [anon_sym_u8_DQUOTE] = ACTIONS(3268), + [anon_sym_DQUOTE] = ACTIONS(3268), + [sym_true] = ACTIONS(3266), + [sym_false] = ACTIONS(3266), + [anon_sym_NULL] = ACTIONS(3266), + [anon_sym_nullptr] = ACTIONS(3266), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3266), + [anon_sym_decltype] = ACTIONS(3266), + [anon_sym_virtual] = ACTIONS(3266), + [anon_sym_explicit] = ACTIONS(3266), + [anon_sym_typename] = ACTIONS(3266), + [anon_sym_template] = ACTIONS(3266), + [anon_sym_operator] = ACTIONS(3266), + [anon_sym_try] = ACTIONS(3266), + [anon_sym_delete] = ACTIONS(3266), + [anon_sym_throw] = ACTIONS(3266), + [anon_sym_namespace] = ACTIONS(3266), + [anon_sym_using] = ACTIONS(3266), + [anon_sym_static_assert] = ACTIONS(3266), + [anon_sym_concept] = ACTIONS(3266), + [anon_sym_co_return] = ACTIONS(3266), + [anon_sym_co_yield] = ACTIONS(3266), + [anon_sym_R_DQUOTE] = ACTIONS(3268), + [anon_sym_LR_DQUOTE] = ACTIONS(3268), + [anon_sym_uR_DQUOTE] = ACTIONS(3268), + [anon_sym_UR_DQUOTE] = ACTIONS(3268), + [anon_sym_u8R_DQUOTE] = ACTIONS(3268), + [anon_sym_co_await] = ACTIONS(3266), + [anon_sym_new] = ACTIONS(3266), + [anon_sym_requires] = ACTIONS(3266), + [sym_this] = ACTIONS(3266), }, [806] = { - [sym_identifier] = ACTIONS(2462), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2464), - [anon_sym_AMP] = ACTIONS(2462), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_explicit] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_operator] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_namespace] = ACTIONS(2462), - [anon_sym_using] = ACTIONS(2462), - [anon_sym_static_assert] = ACTIONS(2462), - [anon_sym_concept] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_identifier] = ACTIONS(3384), + [aux_sym_preproc_include_token1] = ACTIONS(3384), + [aux_sym_preproc_def_token1] = ACTIONS(3384), + [aux_sym_preproc_if_token1] = ACTIONS(3384), + [aux_sym_preproc_if_token2] = ACTIONS(3384), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3384), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3384), + [aux_sym_preproc_else_token1] = ACTIONS(3384), + [aux_sym_preproc_elif_token1] = ACTIONS(3384), + [sym_preproc_directive] = ACTIONS(3384), + [anon_sym_LPAREN2] = ACTIONS(3386), + [anon_sym_BANG] = ACTIONS(3386), + [anon_sym_TILDE] = ACTIONS(3386), + [anon_sym_DASH] = ACTIONS(3384), + [anon_sym_PLUS] = ACTIONS(3384), + [anon_sym_STAR] = ACTIONS(3386), + [anon_sym_AMP_AMP] = ACTIONS(3386), + [anon_sym_AMP] = ACTIONS(3384), + [anon_sym_SEMI] = ACTIONS(3386), + [anon_sym_typedef] = ACTIONS(3384), + [anon_sym_extern] = ACTIONS(3384), + [anon_sym___attribute__] = ACTIONS(3384), + [anon_sym_COLON_COLON] = ACTIONS(3386), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3386), + [anon_sym___declspec] = ACTIONS(3384), + [anon_sym___based] = ACTIONS(3384), + [anon_sym___cdecl] = ACTIONS(3384), + [anon_sym___clrcall] = ACTIONS(3384), + [anon_sym___stdcall] = ACTIONS(3384), + [anon_sym___fastcall] = ACTIONS(3384), + [anon_sym___thiscall] = ACTIONS(3384), + [anon_sym___vectorcall] = ACTIONS(3384), + [anon_sym_LBRACE] = ACTIONS(3386), + [anon_sym_LBRACK] = ACTIONS(3384), + [anon_sym_static] = ACTIONS(3384), + [anon_sym_register] = ACTIONS(3384), + [anon_sym_inline] = ACTIONS(3384), + [anon_sym_thread_local] = ACTIONS(3384), + [anon_sym_const] = ACTIONS(3384), + [anon_sym_constexpr] = ACTIONS(3384), + [anon_sym_volatile] = ACTIONS(3384), + [anon_sym_restrict] = ACTIONS(3384), + [anon_sym___restrict__] = ACTIONS(3384), + [anon_sym__Atomic] = ACTIONS(3384), + [anon_sym__Noreturn] = ACTIONS(3384), + [anon_sym_noreturn] = ACTIONS(3384), + [anon_sym_mutable] = ACTIONS(3384), + [anon_sym_constinit] = ACTIONS(3384), + [anon_sym_consteval] = ACTIONS(3384), + [anon_sym_signed] = ACTIONS(3384), + [anon_sym_unsigned] = ACTIONS(3384), + [anon_sym_long] = ACTIONS(3384), + [anon_sym_short] = ACTIONS(3384), + [sym_primitive_type] = ACTIONS(3384), + [anon_sym_enum] = ACTIONS(3384), + [anon_sym_class] = ACTIONS(3384), + [anon_sym_struct] = ACTIONS(3384), + [anon_sym_union] = ACTIONS(3384), + [anon_sym_if] = ACTIONS(3384), + [anon_sym_switch] = ACTIONS(3384), + [anon_sym_case] = ACTIONS(3384), + [anon_sym_default] = ACTIONS(3384), + [anon_sym_while] = ACTIONS(3384), + [anon_sym_do] = ACTIONS(3384), + [anon_sym_for] = ACTIONS(3384), + [anon_sym_return] = ACTIONS(3384), + [anon_sym_break] = ACTIONS(3384), + [anon_sym_continue] = ACTIONS(3384), + [anon_sym_goto] = ACTIONS(3384), + [anon_sym_not] = ACTIONS(3384), + [anon_sym_compl] = ACTIONS(3384), + [anon_sym_DASH_DASH] = ACTIONS(3386), + [anon_sym_PLUS_PLUS] = ACTIONS(3386), + [anon_sym_sizeof] = ACTIONS(3384), + [anon_sym_offsetof] = ACTIONS(3384), + [anon_sym__Generic] = ACTIONS(3384), + [anon_sym_asm] = ACTIONS(3384), + [anon_sym___asm__] = ACTIONS(3384), + [sym_number_literal] = ACTIONS(3386), + [anon_sym_L_SQUOTE] = ACTIONS(3386), + [anon_sym_u_SQUOTE] = ACTIONS(3386), + [anon_sym_U_SQUOTE] = ACTIONS(3386), + [anon_sym_u8_SQUOTE] = ACTIONS(3386), + [anon_sym_SQUOTE] = ACTIONS(3386), + [anon_sym_L_DQUOTE] = ACTIONS(3386), + [anon_sym_u_DQUOTE] = ACTIONS(3386), + [anon_sym_U_DQUOTE] = ACTIONS(3386), + [anon_sym_u8_DQUOTE] = ACTIONS(3386), + [anon_sym_DQUOTE] = ACTIONS(3386), + [sym_true] = ACTIONS(3384), + [sym_false] = ACTIONS(3384), + [anon_sym_NULL] = ACTIONS(3384), + [anon_sym_nullptr] = ACTIONS(3384), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3384), + [anon_sym_decltype] = ACTIONS(3384), + [anon_sym_virtual] = ACTIONS(3384), + [anon_sym_explicit] = ACTIONS(3384), + [anon_sym_typename] = ACTIONS(3384), + [anon_sym_template] = ACTIONS(3384), + [anon_sym_operator] = ACTIONS(3384), + [anon_sym_try] = ACTIONS(3384), + [anon_sym_delete] = ACTIONS(3384), + [anon_sym_throw] = ACTIONS(3384), + [anon_sym_namespace] = ACTIONS(3384), + [anon_sym_using] = ACTIONS(3384), + [anon_sym_static_assert] = ACTIONS(3384), + [anon_sym_concept] = ACTIONS(3384), + [anon_sym_co_return] = ACTIONS(3384), + [anon_sym_co_yield] = ACTIONS(3384), + [anon_sym_R_DQUOTE] = ACTIONS(3386), + [anon_sym_LR_DQUOTE] = ACTIONS(3386), + [anon_sym_uR_DQUOTE] = ACTIONS(3386), + [anon_sym_UR_DQUOTE] = ACTIONS(3386), + [anon_sym_u8R_DQUOTE] = ACTIONS(3386), + [anon_sym_co_await] = ACTIONS(3384), + [anon_sym_new] = ACTIONS(3384), + [anon_sym_requires] = ACTIONS(3384), + [sym_this] = ACTIONS(3384), }, [807] = { - [sym_identifier] = ACTIONS(2462), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2464), - [anon_sym_AMP] = ACTIONS(2462), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_explicit] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_operator] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_namespace] = ACTIONS(2462), - [anon_sym_using] = ACTIONS(2462), - [anon_sym_static_assert] = ACTIONS(2462), - [anon_sym_concept] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_identifier] = ACTIONS(3125), + [aux_sym_preproc_include_token1] = ACTIONS(3125), + [aux_sym_preproc_def_token1] = ACTIONS(3125), + [aux_sym_preproc_if_token1] = ACTIONS(3125), + [aux_sym_preproc_if_token2] = ACTIONS(3125), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3125), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3125), + [aux_sym_preproc_else_token1] = ACTIONS(3125), + [aux_sym_preproc_elif_token1] = ACTIONS(3125), + [sym_preproc_directive] = ACTIONS(3125), + [anon_sym_LPAREN2] = ACTIONS(3127), + [anon_sym_BANG] = ACTIONS(3127), + [anon_sym_TILDE] = ACTIONS(3127), + [anon_sym_DASH] = ACTIONS(3125), + [anon_sym_PLUS] = ACTIONS(3125), + [anon_sym_STAR] = ACTIONS(3127), + [anon_sym_AMP_AMP] = ACTIONS(3127), + [anon_sym_AMP] = ACTIONS(3125), + [anon_sym_SEMI] = ACTIONS(3127), + [anon_sym_typedef] = ACTIONS(3125), + [anon_sym_extern] = ACTIONS(3125), + [anon_sym___attribute__] = ACTIONS(3125), + [anon_sym_COLON_COLON] = ACTIONS(3127), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3127), + [anon_sym___declspec] = ACTIONS(3125), + [anon_sym___based] = ACTIONS(3125), + [anon_sym___cdecl] = ACTIONS(3125), + [anon_sym___clrcall] = ACTIONS(3125), + [anon_sym___stdcall] = ACTIONS(3125), + [anon_sym___fastcall] = ACTIONS(3125), + [anon_sym___thiscall] = ACTIONS(3125), + [anon_sym___vectorcall] = ACTIONS(3125), + [anon_sym_LBRACE] = ACTIONS(3127), + [anon_sym_LBRACK] = ACTIONS(3125), + [anon_sym_static] = ACTIONS(3125), + [anon_sym_register] = ACTIONS(3125), + [anon_sym_inline] = ACTIONS(3125), + [anon_sym_thread_local] = ACTIONS(3125), + [anon_sym_const] = ACTIONS(3125), + [anon_sym_constexpr] = ACTIONS(3125), + [anon_sym_volatile] = ACTIONS(3125), + [anon_sym_restrict] = ACTIONS(3125), + [anon_sym___restrict__] = ACTIONS(3125), + [anon_sym__Atomic] = ACTIONS(3125), + [anon_sym__Noreturn] = ACTIONS(3125), + [anon_sym_noreturn] = ACTIONS(3125), + [anon_sym_mutable] = ACTIONS(3125), + [anon_sym_constinit] = ACTIONS(3125), + [anon_sym_consteval] = ACTIONS(3125), + [anon_sym_signed] = ACTIONS(3125), + [anon_sym_unsigned] = ACTIONS(3125), + [anon_sym_long] = ACTIONS(3125), + [anon_sym_short] = ACTIONS(3125), + [sym_primitive_type] = ACTIONS(3125), + [anon_sym_enum] = ACTIONS(3125), + [anon_sym_class] = ACTIONS(3125), + [anon_sym_struct] = ACTIONS(3125), + [anon_sym_union] = ACTIONS(3125), + [anon_sym_if] = ACTIONS(3125), + [anon_sym_switch] = ACTIONS(3125), + [anon_sym_case] = ACTIONS(3125), + [anon_sym_default] = ACTIONS(3125), + [anon_sym_while] = ACTIONS(3125), + [anon_sym_do] = ACTIONS(3125), + [anon_sym_for] = ACTIONS(3125), + [anon_sym_return] = ACTIONS(3125), + [anon_sym_break] = ACTIONS(3125), + [anon_sym_continue] = ACTIONS(3125), + [anon_sym_goto] = ACTIONS(3125), + [anon_sym_not] = ACTIONS(3125), + [anon_sym_compl] = ACTIONS(3125), + [anon_sym_DASH_DASH] = ACTIONS(3127), + [anon_sym_PLUS_PLUS] = ACTIONS(3127), + [anon_sym_sizeof] = ACTIONS(3125), + [anon_sym_offsetof] = ACTIONS(3125), + [anon_sym__Generic] = ACTIONS(3125), + [anon_sym_asm] = ACTIONS(3125), + [anon_sym___asm__] = ACTIONS(3125), + [sym_number_literal] = ACTIONS(3127), + [anon_sym_L_SQUOTE] = ACTIONS(3127), + [anon_sym_u_SQUOTE] = ACTIONS(3127), + [anon_sym_U_SQUOTE] = ACTIONS(3127), + [anon_sym_u8_SQUOTE] = ACTIONS(3127), + [anon_sym_SQUOTE] = ACTIONS(3127), + [anon_sym_L_DQUOTE] = ACTIONS(3127), + [anon_sym_u_DQUOTE] = ACTIONS(3127), + [anon_sym_U_DQUOTE] = ACTIONS(3127), + [anon_sym_u8_DQUOTE] = ACTIONS(3127), + [anon_sym_DQUOTE] = ACTIONS(3127), + [sym_true] = ACTIONS(3125), + [sym_false] = ACTIONS(3125), + [anon_sym_NULL] = ACTIONS(3125), + [anon_sym_nullptr] = ACTIONS(3125), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3125), + [anon_sym_decltype] = ACTIONS(3125), + [anon_sym_virtual] = ACTIONS(3125), + [anon_sym_explicit] = ACTIONS(3125), + [anon_sym_typename] = ACTIONS(3125), + [anon_sym_template] = ACTIONS(3125), + [anon_sym_operator] = ACTIONS(3125), + [anon_sym_try] = ACTIONS(3125), + [anon_sym_delete] = ACTIONS(3125), + [anon_sym_throw] = ACTIONS(3125), + [anon_sym_namespace] = ACTIONS(3125), + [anon_sym_using] = ACTIONS(3125), + [anon_sym_static_assert] = ACTIONS(3125), + [anon_sym_concept] = ACTIONS(3125), + [anon_sym_co_return] = ACTIONS(3125), + [anon_sym_co_yield] = ACTIONS(3125), + [anon_sym_R_DQUOTE] = ACTIONS(3127), + [anon_sym_LR_DQUOTE] = ACTIONS(3127), + [anon_sym_uR_DQUOTE] = ACTIONS(3127), + [anon_sym_UR_DQUOTE] = ACTIONS(3127), + [anon_sym_u8R_DQUOTE] = ACTIONS(3127), + [anon_sym_co_await] = ACTIONS(3125), + [anon_sym_new] = ACTIONS(3125), + [anon_sym_requires] = ACTIONS(3125), + [sym_this] = ACTIONS(3125), }, [808] = { - [sym_identifier] = ACTIONS(2462), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2464), - [anon_sym_AMP] = ACTIONS(2462), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_explicit] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_operator] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_namespace] = ACTIONS(2462), - [anon_sym_using] = ACTIONS(2462), - [anon_sym_static_assert] = ACTIONS(2462), - [anon_sym_concept] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_identifier] = ACTIONS(3146), + [aux_sym_preproc_include_token1] = ACTIONS(3146), + [aux_sym_preproc_def_token1] = ACTIONS(3146), + [aux_sym_preproc_if_token1] = ACTIONS(3146), + [aux_sym_preproc_if_token2] = ACTIONS(3146), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3146), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3146), + [aux_sym_preproc_else_token1] = ACTIONS(3146), + [aux_sym_preproc_elif_token1] = ACTIONS(3146), + [sym_preproc_directive] = ACTIONS(3146), + [anon_sym_LPAREN2] = ACTIONS(3148), + [anon_sym_BANG] = ACTIONS(3148), + [anon_sym_TILDE] = ACTIONS(3148), + [anon_sym_DASH] = ACTIONS(3146), + [anon_sym_PLUS] = ACTIONS(3146), + [anon_sym_STAR] = ACTIONS(3148), + [anon_sym_AMP_AMP] = ACTIONS(3148), + [anon_sym_AMP] = ACTIONS(3146), + [anon_sym_SEMI] = ACTIONS(3148), + [anon_sym_typedef] = ACTIONS(3146), + [anon_sym_extern] = ACTIONS(3146), + [anon_sym___attribute__] = ACTIONS(3146), + [anon_sym_COLON_COLON] = ACTIONS(3148), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3148), + [anon_sym___declspec] = ACTIONS(3146), + [anon_sym___based] = ACTIONS(3146), + [anon_sym___cdecl] = ACTIONS(3146), + [anon_sym___clrcall] = ACTIONS(3146), + [anon_sym___stdcall] = ACTIONS(3146), + [anon_sym___fastcall] = ACTIONS(3146), + [anon_sym___thiscall] = ACTIONS(3146), + [anon_sym___vectorcall] = ACTIONS(3146), + [anon_sym_LBRACE] = ACTIONS(3148), + [anon_sym_LBRACK] = ACTIONS(3146), + [anon_sym_static] = ACTIONS(3146), + [anon_sym_register] = ACTIONS(3146), + [anon_sym_inline] = ACTIONS(3146), + [anon_sym_thread_local] = ACTIONS(3146), + [anon_sym_const] = ACTIONS(3146), + [anon_sym_constexpr] = ACTIONS(3146), + [anon_sym_volatile] = ACTIONS(3146), + [anon_sym_restrict] = ACTIONS(3146), + [anon_sym___restrict__] = ACTIONS(3146), + [anon_sym__Atomic] = ACTIONS(3146), + [anon_sym__Noreturn] = ACTIONS(3146), + [anon_sym_noreturn] = ACTIONS(3146), + [anon_sym_mutable] = ACTIONS(3146), + [anon_sym_constinit] = ACTIONS(3146), + [anon_sym_consteval] = ACTIONS(3146), + [anon_sym_signed] = ACTIONS(3146), + [anon_sym_unsigned] = ACTIONS(3146), + [anon_sym_long] = ACTIONS(3146), + [anon_sym_short] = ACTIONS(3146), + [sym_primitive_type] = ACTIONS(3146), + [anon_sym_enum] = ACTIONS(3146), + [anon_sym_class] = ACTIONS(3146), + [anon_sym_struct] = ACTIONS(3146), + [anon_sym_union] = ACTIONS(3146), + [anon_sym_if] = ACTIONS(3146), + [anon_sym_switch] = ACTIONS(3146), + [anon_sym_case] = ACTIONS(3146), + [anon_sym_default] = ACTIONS(3146), + [anon_sym_while] = ACTIONS(3146), + [anon_sym_do] = ACTIONS(3146), + [anon_sym_for] = ACTIONS(3146), + [anon_sym_return] = ACTIONS(3146), + [anon_sym_break] = ACTIONS(3146), + [anon_sym_continue] = ACTIONS(3146), + [anon_sym_goto] = ACTIONS(3146), + [anon_sym_not] = ACTIONS(3146), + [anon_sym_compl] = ACTIONS(3146), + [anon_sym_DASH_DASH] = ACTIONS(3148), + [anon_sym_PLUS_PLUS] = ACTIONS(3148), + [anon_sym_sizeof] = ACTIONS(3146), + [anon_sym_offsetof] = ACTIONS(3146), + [anon_sym__Generic] = ACTIONS(3146), + [anon_sym_asm] = ACTIONS(3146), + [anon_sym___asm__] = ACTIONS(3146), + [sym_number_literal] = ACTIONS(3148), + [anon_sym_L_SQUOTE] = ACTIONS(3148), + [anon_sym_u_SQUOTE] = ACTIONS(3148), + [anon_sym_U_SQUOTE] = ACTIONS(3148), + [anon_sym_u8_SQUOTE] = ACTIONS(3148), + [anon_sym_SQUOTE] = ACTIONS(3148), + [anon_sym_L_DQUOTE] = ACTIONS(3148), + [anon_sym_u_DQUOTE] = ACTIONS(3148), + [anon_sym_U_DQUOTE] = ACTIONS(3148), + [anon_sym_u8_DQUOTE] = ACTIONS(3148), + [anon_sym_DQUOTE] = ACTIONS(3148), + [sym_true] = ACTIONS(3146), + [sym_false] = ACTIONS(3146), + [anon_sym_NULL] = ACTIONS(3146), + [anon_sym_nullptr] = ACTIONS(3146), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3146), + [anon_sym_decltype] = ACTIONS(3146), + [anon_sym_virtual] = ACTIONS(3146), + [anon_sym_explicit] = ACTIONS(3146), + [anon_sym_typename] = ACTIONS(3146), + [anon_sym_template] = ACTIONS(3146), + [anon_sym_operator] = ACTIONS(3146), + [anon_sym_try] = ACTIONS(3146), + [anon_sym_delete] = ACTIONS(3146), + [anon_sym_throw] = ACTIONS(3146), + [anon_sym_namespace] = ACTIONS(3146), + [anon_sym_using] = ACTIONS(3146), + [anon_sym_static_assert] = ACTIONS(3146), + [anon_sym_concept] = ACTIONS(3146), + [anon_sym_co_return] = ACTIONS(3146), + [anon_sym_co_yield] = ACTIONS(3146), + [anon_sym_R_DQUOTE] = ACTIONS(3148), + [anon_sym_LR_DQUOTE] = ACTIONS(3148), + [anon_sym_uR_DQUOTE] = ACTIONS(3148), + [anon_sym_UR_DQUOTE] = ACTIONS(3148), + [anon_sym_u8R_DQUOTE] = ACTIONS(3148), + [anon_sym_co_await] = ACTIONS(3146), + [anon_sym_new] = ACTIONS(3146), + [anon_sym_requires] = ACTIONS(3146), + [sym_this] = ACTIONS(3146), }, [809] = { - [sym_identifier] = ACTIONS(2462), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2464), - [anon_sym_AMP] = ACTIONS(2462), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_explicit] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_operator] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_namespace] = ACTIONS(2462), - [anon_sym_using] = ACTIONS(2462), - [anon_sym_static_assert] = ACTIONS(2462), - [anon_sym_concept] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_identifier] = ACTIONS(3234), + [aux_sym_preproc_include_token1] = ACTIONS(3234), + [aux_sym_preproc_def_token1] = ACTIONS(3234), + [aux_sym_preproc_if_token1] = ACTIONS(3234), + [aux_sym_preproc_if_token2] = ACTIONS(3234), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3234), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3234), + [aux_sym_preproc_else_token1] = ACTIONS(3234), + [aux_sym_preproc_elif_token1] = ACTIONS(3234), + [sym_preproc_directive] = ACTIONS(3234), + [anon_sym_LPAREN2] = ACTIONS(3236), + [anon_sym_BANG] = ACTIONS(3236), + [anon_sym_TILDE] = ACTIONS(3236), + [anon_sym_DASH] = ACTIONS(3234), + [anon_sym_PLUS] = ACTIONS(3234), + [anon_sym_STAR] = ACTIONS(3236), + [anon_sym_AMP_AMP] = ACTIONS(3236), + [anon_sym_AMP] = ACTIONS(3234), + [anon_sym_SEMI] = ACTIONS(3236), + [anon_sym_typedef] = ACTIONS(3234), + [anon_sym_extern] = ACTIONS(3234), + [anon_sym___attribute__] = ACTIONS(3234), + [anon_sym_COLON_COLON] = ACTIONS(3236), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3236), + [anon_sym___declspec] = ACTIONS(3234), + [anon_sym___based] = ACTIONS(3234), + [anon_sym___cdecl] = ACTIONS(3234), + [anon_sym___clrcall] = ACTIONS(3234), + [anon_sym___stdcall] = ACTIONS(3234), + [anon_sym___fastcall] = ACTIONS(3234), + [anon_sym___thiscall] = ACTIONS(3234), + [anon_sym___vectorcall] = ACTIONS(3234), + [anon_sym_LBRACE] = ACTIONS(3236), + [anon_sym_LBRACK] = ACTIONS(3234), + [anon_sym_static] = ACTIONS(3234), + [anon_sym_register] = ACTIONS(3234), + [anon_sym_inline] = ACTIONS(3234), + [anon_sym_thread_local] = ACTIONS(3234), + [anon_sym_const] = ACTIONS(3234), + [anon_sym_constexpr] = ACTIONS(3234), + [anon_sym_volatile] = ACTIONS(3234), + [anon_sym_restrict] = ACTIONS(3234), + [anon_sym___restrict__] = ACTIONS(3234), + [anon_sym__Atomic] = ACTIONS(3234), + [anon_sym__Noreturn] = ACTIONS(3234), + [anon_sym_noreturn] = ACTIONS(3234), + [anon_sym_mutable] = ACTIONS(3234), + [anon_sym_constinit] = ACTIONS(3234), + [anon_sym_consteval] = ACTIONS(3234), + [anon_sym_signed] = ACTIONS(3234), + [anon_sym_unsigned] = ACTIONS(3234), + [anon_sym_long] = ACTIONS(3234), + [anon_sym_short] = ACTIONS(3234), + [sym_primitive_type] = ACTIONS(3234), + [anon_sym_enum] = ACTIONS(3234), + [anon_sym_class] = ACTIONS(3234), + [anon_sym_struct] = ACTIONS(3234), + [anon_sym_union] = ACTIONS(3234), + [anon_sym_if] = ACTIONS(3234), + [anon_sym_switch] = ACTIONS(3234), + [anon_sym_case] = ACTIONS(3234), + [anon_sym_default] = ACTIONS(3234), + [anon_sym_while] = ACTIONS(3234), + [anon_sym_do] = ACTIONS(3234), + [anon_sym_for] = ACTIONS(3234), + [anon_sym_return] = ACTIONS(3234), + [anon_sym_break] = ACTIONS(3234), + [anon_sym_continue] = ACTIONS(3234), + [anon_sym_goto] = ACTIONS(3234), + [anon_sym_not] = ACTIONS(3234), + [anon_sym_compl] = ACTIONS(3234), + [anon_sym_DASH_DASH] = ACTIONS(3236), + [anon_sym_PLUS_PLUS] = ACTIONS(3236), + [anon_sym_sizeof] = ACTIONS(3234), + [anon_sym_offsetof] = ACTIONS(3234), + [anon_sym__Generic] = ACTIONS(3234), + [anon_sym_asm] = ACTIONS(3234), + [anon_sym___asm__] = ACTIONS(3234), + [sym_number_literal] = ACTIONS(3236), + [anon_sym_L_SQUOTE] = ACTIONS(3236), + [anon_sym_u_SQUOTE] = ACTIONS(3236), + [anon_sym_U_SQUOTE] = ACTIONS(3236), + [anon_sym_u8_SQUOTE] = ACTIONS(3236), + [anon_sym_SQUOTE] = ACTIONS(3236), + [anon_sym_L_DQUOTE] = ACTIONS(3236), + [anon_sym_u_DQUOTE] = ACTIONS(3236), + [anon_sym_U_DQUOTE] = ACTIONS(3236), + [anon_sym_u8_DQUOTE] = ACTIONS(3236), + [anon_sym_DQUOTE] = ACTIONS(3236), + [sym_true] = ACTIONS(3234), + [sym_false] = ACTIONS(3234), + [anon_sym_NULL] = ACTIONS(3234), + [anon_sym_nullptr] = ACTIONS(3234), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3234), + [anon_sym_decltype] = ACTIONS(3234), + [anon_sym_virtual] = ACTIONS(3234), + [anon_sym_explicit] = ACTIONS(3234), + [anon_sym_typename] = ACTIONS(3234), + [anon_sym_template] = ACTIONS(3234), + [anon_sym_operator] = ACTIONS(3234), + [anon_sym_try] = ACTIONS(3234), + [anon_sym_delete] = ACTIONS(3234), + [anon_sym_throw] = ACTIONS(3234), + [anon_sym_namespace] = ACTIONS(3234), + [anon_sym_using] = ACTIONS(3234), + [anon_sym_static_assert] = ACTIONS(3234), + [anon_sym_concept] = ACTIONS(3234), + [anon_sym_co_return] = ACTIONS(3234), + [anon_sym_co_yield] = ACTIONS(3234), + [anon_sym_R_DQUOTE] = ACTIONS(3236), + [anon_sym_LR_DQUOTE] = ACTIONS(3236), + [anon_sym_uR_DQUOTE] = ACTIONS(3236), + [anon_sym_UR_DQUOTE] = ACTIONS(3236), + [anon_sym_u8R_DQUOTE] = ACTIONS(3236), + [anon_sym_co_await] = ACTIONS(3234), + [anon_sym_new] = ACTIONS(3234), + [anon_sym_requires] = ACTIONS(3234), + [sym_this] = ACTIONS(3234), }, [810] = { - [sym_identifier] = ACTIONS(2462), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2464), - [anon_sym_AMP] = ACTIONS(2462), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_explicit] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_operator] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_namespace] = ACTIONS(2462), - [anon_sym_using] = ACTIONS(2462), - [anon_sym_static_assert] = ACTIONS(2462), - [anon_sym_concept] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_identifier] = ACTIONS(2542), + [aux_sym_preproc_include_token1] = ACTIONS(2542), + [aux_sym_preproc_def_token1] = ACTIONS(2542), + [aux_sym_preproc_if_token1] = ACTIONS(2542), + [aux_sym_preproc_if_token2] = ACTIONS(2542), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2542), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2542), + [sym_preproc_directive] = ACTIONS(2542), + [anon_sym_LPAREN2] = ACTIONS(2540), + [anon_sym_BANG] = ACTIONS(2540), + [anon_sym_TILDE] = ACTIONS(2540), + [anon_sym_DASH] = ACTIONS(2542), + [anon_sym_PLUS] = ACTIONS(2542), + [anon_sym_STAR] = ACTIONS(2540), + [anon_sym_AMP_AMP] = ACTIONS(2540), + [anon_sym_AMP] = ACTIONS(2542), + [anon_sym_SEMI] = ACTIONS(2540), + [anon_sym_typedef] = ACTIONS(2542), + [anon_sym_extern] = ACTIONS(2542), + [anon_sym___attribute__] = ACTIONS(2542), + [anon_sym_COLON_COLON] = ACTIONS(2540), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2540), + [anon_sym___declspec] = ACTIONS(2542), + [anon_sym___based] = ACTIONS(2542), + [anon_sym___cdecl] = ACTIONS(2542), + [anon_sym___clrcall] = ACTIONS(2542), + [anon_sym___stdcall] = ACTIONS(2542), + [anon_sym___fastcall] = ACTIONS(2542), + [anon_sym___thiscall] = ACTIONS(2542), + [anon_sym___vectorcall] = ACTIONS(2542), + [anon_sym_LBRACE] = ACTIONS(2540), + [anon_sym_LBRACK] = ACTIONS(2542), + [anon_sym_static] = ACTIONS(2542), + [anon_sym_register] = ACTIONS(2542), + [anon_sym_inline] = ACTIONS(2542), + [anon_sym_thread_local] = ACTIONS(2542), + [anon_sym_const] = ACTIONS(2542), + [anon_sym_constexpr] = ACTIONS(2542), + [anon_sym_volatile] = ACTIONS(2542), + [anon_sym_restrict] = ACTIONS(2542), + [anon_sym___restrict__] = ACTIONS(2542), + [anon_sym__Atomic] = ACTIONS(2542), + [anon_sym__Noreturn] = ACTIONS(2542), + [anon_sym_noreturn] = ACTIONS(2542), + [anon_sym_mutable] = ACTIONS(2542), + [anon_sym_constinit] = ACTIONS(2542), + [anon_sym_consteval] = ACTIONS(2542), + [anon_sym_signed] = ACTIONS(2542), + [anon_sym_unsigned] = ACTIONS(2542), + [anon_sym_long] = ACTIONS(2542), + [anon_sym_short] = ACTIONS(2542), + [sym_primitive_type] = ACTIONS(2542), + [anon_sym_enum] = ACTIONS(2542), + [anon_sym_class] = ACTIONS(2542), + [anon_sym_struct] = ACTIONS(2542), + [anon_sym_union] = ACTIONS(2542), + [anon_sym_if] = ACTIONS(2542), + [anon_sym_else] = ACTIONS(2542), + [anon_sym_switch] = ACTIONS(2542), + [anon_sym_case] = ACTIONS(2542), + [anon_sym_default] = ACTIONS(2542), + [anon_sym_while] = ACTIONS(2542), + [anon_sym_do] = ACTIONS(2542), + [anon_sym_for] = ACTIONS(2542), + [anon_sym_return] = ACTIONS(2542), + [anon_sym_break] = ACTIONS(2542), + [anon_sym_continue] = ACTIONS(2542), + [anon_sym_goto] = ACTIONS(2542), + [anon_sym_not] = ACTIONS(2542), + [anon_sym_compl] = ACTIONS(2542), + [anon_sym_DASH_DASH] = ACTIONS(2540), + [anon_sym_PLUS_PLUS] = ACTIONS(2540), + [anon_sym_sizeof] = ACTIONS(2542), + [anon_sym_offsetof] = ACTIONS(2542), + [anon_sym__Generic] = ACTIONS(2542), + [anon_sym_asm] = ACTIONS(2542), + [anon_sym___asm__] = ACTIONS(2542), + [sym_number_literal] = ACTIONS(2540), + [anon_sym_L_SQUOTE] = ACTIONS(2540), + [anon_sym_u_SQUOTE] = ACTIONS(2540), + [anon_sym_U_SQUOTE] = ACTIONS(2540), + [anon_sym_u8_SQUOTE] = ACTIONS(2540), + [anon_sym_SQUOTE] = ACTIONS(2540), + [anon_sym_L_DQUOTE] = ACTIONS(2540), + [anon_sym_u_DQUOTE] = ACTIONS(2540), + [anon_sym_U_DQUOTE] = ACTIONS(2540), + [anon_sym_u8_DQUOTE] = ACTIONS(2540), + [anon_sym_DQUOTE] = ACTIONS(2540), + [sym_true] = ACTIONS(2542), + [sym_false] = ACTIONS(2542), + [anon_sym_NULL] = ACTIONS(2542), + [anon_sym_nullptr] = ACTIONS(2542), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2542), + [anon_sym_decltype] = ACTIONS(2542), + [anon_sym_virtual] = ACTIONS(2542), + [anon_sym_explicit] = ACTIONS(2542), + [anon_sym_typename] = ACTIONS(2542), + [anon_sym_template] = ACTIONS(2542), + [anon_sym_operator] = ACTIONS(2542), + [anon_sym_try] = ACTIONS(2542), + [anon_sym_delete] = ACTIONS(2542), + [anon_sym_throw] = ACTIONS(2542), + [anon_sym_namespace] = ACTIONS(2542), + [anon_sym_using] = ACTIONS(2542), + [anon_sym_static_assert] = ACTIONS(2542), + [anon_sym_concept] = ACTIONS(2542), + [anon_sym_co_return] = ACTIONS(2542), + [anon_sym_co_yield] = ACTIONS(2542), + [anon_sym_catch] = ACTIONS(2542), + [anon_sym_R_DQUOTE] = ACTIONS(2540), + [anon_sym_LR_DQUOTE] = ACTIONS(2540), + [anon_sym_uR_DQUOTE] = ACTIONS(2540), + [anon_sym_UR_DQUOTE] = ACTIONS(2540), + [anon_sym_u8R_DQUOTE] = ACTIONS(2540), + [anon_sym_co_await] = ACTIONS(2542), + [anon_sym_new] = ACTIONS(2542), + [anon_sym_requires] = ACTIONS(2542), + [sym_this] = ACTIONS(2542), }, [811] = { - [sym_identifier] = ACTIONS(2462), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2464), - [anon_sym_AMP] = ACTIONS(2462), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_explicit] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_operator] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_namespace] = ACTIONS(2462), - [anon_sym_using] = ACTIONS(2462), - [anon_sym_static_assert] = ACTIONS(2462), - [anon_sym_concept] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_catch_clause] = STATE(573), + [aux_sym_constructor_try_statement_repeat1] = STATE(573), + [ts_builtin_sym_end] = ACTIONS(2859), + [sym_identifier] = ACTIONS(2857), + [aux_sym_preproc_include_token1] = ACTIONS(2857), + [aux_sym_preproc_def_token1] = ACTIONS(2857), + [aux_sym_preproc_if_token1] = ACTIONS(2857), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2857), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2857), + [sym_preproc_directive] = ACTIONS(2857), + [anon_sym_LPAREN2] = ACTIONS(2859), + [anon_sym_BANG] = ACTIONS(2859), + [anon_sym_TILDE] = ACTIONS(2859), + [anon_sym_DASH] = ACTIONS(2857), + [anon_sym_PLUS] = ACTIONS(2857), + [anon_sym_STAR] = ACTIONS(2859), + [anon_sym_AMP_AMP] = ACTIONS(2859), + [anon_sym_AMP] = ACTIONS(2857), + [anon_sym_typedef] = ACTIONS(2857), + [anon_sym_extern] = ACTIONS(2857), + [anon_sym___attribute__] = ACTIONS(2857), + [anon_sym_COLON_COLON] = ACTIONS(2859), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2859), + [anon_sym___declspec] = ACTIONS(2857), + [anon_sym___based] = ACTIONS(2857), + [anon_sym___cdecl] = ACTIONS(2857), + [anon_sym___clrcall] = ACTIONS(2857), + [anon_sym___stdcall] = ACTIONS(2857), + [anon_sym___fastcall] = ACTIONS(2857), + [anon_sym___thiscall] = ACTIONS(2857), + [anon_sym___vectorcall] = ACTIONS(2857), + [anon_sym_LBRACE] = ACTIONS(2859), + [anon_sym_LBRACK] = ACTIONS(2857), + [anon_sym_static] = ACTIONS(2857), + [anon_sym_register] = ACTIONS(2857), + [anon_sym_inline] = ACTIONS(2857), + [anon_sym_thread_local] = ACTIONS(2857), + [anon_sym_const] = ACTIONS(2857), + [anon_sym_constexpr] = ACTIONS(2857), + [anon_sym_volatile] = ACTIONS(2857), + [anon_sym_restrict] = ACTIONS(2857), + [anon_sym___restrict__] = ACTIONS(2857), + [anon_sym__Atomic] = ACTIONS(2857), + [anon_sym__Noreturn] = ACTIONS(2857), + [anon_sym_noreturn] = ACTIONS(2857), + [anon_sym_mutable] = ACTIONS(2857), + [anon_sym_constinit] = ACTIONS(2857), + [anon_sym_consteval] = ACTIONS(2857), + [anon_sym_signed] = ACTIONS(2857), + [anon_sym_unsigned] = ACTIONS(2857), + [anon_sym_long] = ACTIONS(2857), + [anon_sym_short] = ACTIONS(2857), + [sym_primitive_type] = ACTIONS(2857), + [anon_sym_enum] = ACTIONS(2857), + [anon_sym_class] = ACTIONS(2857), + [anon_sym_struct] = ACTIONS(2857), + [anon_sym_union] = ACTIONS(2857), + [anon_sym_if] = ACTIONS(2857), + [anon_sym_switch] = ACTIONS(2857), + [anon_sym_case] = ACTIONS(2857), + [anon_sym_default] = ACTIONS(2857), + [anon_sym_while] = ACTIONS(2857), + [anon_sym_do] = ACTIONS(2857), + [anon_sym_for] = ACTIONS(2857), + [anon_sym_return] = ACTIONS(2857), + [anon_sym_break] = ACTIONS(2857), + [anon_sym_continue] = ACTIONS(2857), + [anon_sym_goto] = ACTIONS(2857), + [anon_sym_not] = ACTIONS(2857), + [anon_sym_compl] = ACTIONS(2857), + [anon_sym_DASH_DASH] = ACTIONS(2859), + [anon_sym_PLUS_PLUS] = ACTIONS(2859), + [anon_sym_sizeof] = ACTIONS(2857), + [anon_sym_offsetof] = ACTIONS(2857), + [anon_sym__Generic] = ACTIONS(2857), + [anon_sym_asm] = ACTIONS(2857), + [anon_sym___asm__] = ACTIONS(2857), + [sym_number_literal] = ACTIONS(2859), + [anon_sym_L_SQUOTE] = ACTIONS(2859), + [anon_sym_u_SQUOTE] = ACTIONS(2859), + [anon_sym_U_SQUOTE] = ACTIONS(2859), + [anon_sym_u8_SQUOTE] = ACTIONS(2859), + [anon_sym_SQUOTE] = ACTIONS(2859), + [anon_sym_L_DQUOTE] = ACTIONS(2859), + [anon_sym_u_DQUOTE] = ACTIONS(2859), + [anon_sym_U_DQUOTE] = ACTIONS(2859), + [anon_sym_u8_DQUOTE] = ACTIONS(2859), + [anon_sym_DQUOTE] = ACTIONS(2859), + [sym_true] = ACTIONS(2857), + [sym_false] = ACTIONS(2857), + [anon_sym_NULL] = ACTIONS(2857), + [anon_sym_nullptr] = ACTIONS(2857), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2857), + [anon_sym_decltype] = ACTIONS(2857), + [anon_sym_virtual] = ACTIONS(2857), + [anon_sym_explicit] = ACTIONS(2857), + [anon_sym_typename] = ACTIONS(2857), + [anon_sym_template] = ACTIONS(2857), + [anon_sym_operator] = ACTIONS(2857), + [anon_sym_try] = ACTIONS(2857), + [anon_sym_delete] = ACTIONS(2857), + [anon_sym_throw] = ACTIONS(2857), + [anon_sym_namespace] = ACTIONS(2857), + [anon_sym_using] = ACTIONS(2857), + [anon_sym_static_assert] = ACTIONS(2857), + [anon_sym_concept] = ACTIONS(2857), + [anon_sym_co_return] = ACTIONS(2857), + [anon_sym_co_yield] = ACTIONS(2857), + [anon_sym_catch] = ACTIONS(3413), + [anon_sym_R_DQUOTE] = ACTIONS(2859), + [anon_sym_LR_DQUOTE] = ACTIONS(2859), + [anon_sym_uR_DQUOTE] = ACTIONS(2859), + [anon_sym_UR_DQUOTE] = ACTIONS(2859), + [anon_sym_u8R_DQUOTE] = ACTIONS(2859), + [anon_sym_co_await] = ACTIONS(2857), + [anon_sym_new] = ACTIONS(2857), + [anon_sym_requires] = ACTIONS(2857), + [sym_this] = ACTIONS(2857), }, [812] = { - [sym_identifier] = ACTIONS(2462), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2464), - [anon_sym_AMP] = ACTIONS(2462), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_explicit] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_operator] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_namespace] = ACTIONS(2462), - [anon_sym_using] = ACTIONS(2462), - [anon_sym_static_assert] = ACTIONS(2462), - [anon_sym_concept] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_identifier] = ACTIONS(3176), + [aux_sym_preproc_include_token1] = ACTIONS(3176), + [aux_sym_preproc_def_token1] = ACTIONS(3176), + [aux_sym_preproc_if_token1] = ACTIONS(3176), + [aux_sym_preproc_if_token2] = ACTIONS(3176), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3176), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3176), + [aux_sym_preproc_else_token1] = ACTIONS(3176), + [aux_sym_preproc_elif_token1] = ACTIONS(3176), + [sym_preproc_directive] = ACTIONS(3176), + [anon_sym_LPAREN2] = ACTIONS(3178), + [anon_sym_BANG] = ACTIONS(3178), + [anon_sym_TILDE] = ACTIONS(3178), + [anon_sym_DASH] = ACTIONS(3176), + [anon_sym_PLUS] = ACTIONS(3176), + [anon_sym_STAR] = ACTIONS(3178), + [anon_sym_AMP_AMP] = ACTIONS(3178), + [anon_sym_AMP] = ACTIONS(3176), + [anon_sym_SEMI] = ACTIONS(3178), + [anon_sym_typedef] = ACTIONS(3176), + [anon_sym_extern] = ACTIONS(3176), + [anon_sym___attribute__] = ACTIONS(3176), + [anon_sym_COLON_COLON] = ACTIONS(3178), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3178), + [anon_sym___declspec] = ACTIONS(3176), + [anon_sym___based] = ACTIONS(3176), + [anon_sym___cdecl] = ACTIONS(3176), + [anon_sym___clrcall] = ACTIONS(3176), + [anon_sym___stdcall] = ACTIONS(3176), + [anon_sym___fastcall] = ACTIONS(3176), + [anon_sym___thiscall] = ACTIONS(3176), + [anon_sym___vectorcall] = ACTIONS(3176), + [anon_sym_LBRACE] = ACTIONS(3178), + [anon_sym_LBRACK] = ACTIONS(3176), + [anon_sym_static] = ACTIONS(3176), + [anon_sym_register] = ACTIONS(3176), + [anon_sym_inline] = ACTIONS(3176), + [anon_sym_thread_local] = ACTIONS(3176), + [anon_sym_const] = ACTIONS(3176), + [anon_sym_constexpr] = ACTIONS(3176), + [anon_sym_volatile] = ACTIONS(3176), + [anon_sym_restrict] = ACTIONS(3176), + [anon_sym___restrict__] = ACTIONS(3176), + [anon_sym__Atomic] = ACTIONS(3176), + [anon_sym__Noreturn] = ACTIONS(3176), + [anon_sym_noreturn] = ACTIONS(3176), + [anon_sym_mutable] = ACTIONS(3176), + [anon_sym_constinit] = ACTIONS(3176), + [anon_sym_consteval] = ACTIONS(3176), + [anon_sym_signed] = ACTIONS(3176), + [anon_sym_unsigned] = ACTIONS(3176), + [anon_sym_long] = ACTIONS(3176), + [anon_sym_short] = ACTIONS(3176), + [sym_primitive_type] = ACTIONS(3176), + [anon_sym_enum] = ACTIONS(3176), + [anon_sym_class] = ACTIONS(3176), + [anon_sym_struct] = ACTIONS(3176), + [anon_sym_union] = ACTIONS(3176), + [anon_sym_if] = ACTIONS(3176), + [anon_sym_switch] = ACTIONS(3176), + [anon_sym_case] = ACTIONS(3176), + [anon_sym_default] = ACTIONS(3176), + [anon_sym_while] = ACTIONS(3176), + [anon_sym_do] = ACTIONS(3176), + [anon_sym_for] = ACTIONS(3176), + [anon_sym_return] = ACTIONS(3176), + [anon_sym_break] = ACTIONS(3176), + [anon_sym_continue] = ACTIONS(3176), + [anon_sym_goto] = ACTIONS(3176), + [anon_sym_not] = ACTIONS(3176), + [anon_sym_compl] = ACTIONS(3176), + [anon_sym_DASH_DASH] = ACTIONS(3178), + [anon_sym_PLUS_PLUS] = ACTIONS(3178), + [anon_sym_sizeof] = ACTIONS(3176), + [anon_sym_offsetof] = ACTIONS(3176), + [anon_sym__Generic] = ACTIONS(3176), + [anon_sym_asm] = ACTIONS(3176), + [anon_sym___asm__] = ACTIONS(3176), + [sym_number_literal] = ACTIONS(3178), + [anon_sym_L_SQUOTE] = ACTIONS(3178), + [anon_sym_u_SQUOTE] = ACTIONS(3178), + [anon_sym_U_SQUOTE] = ACTIONS(3178), + [anon_sym_u8_SQUOTE] = ACTIONS(3178), + [anon_sym_SQUOTE] = ACTIONS(3178), + [anon_sym_L_DQUOTE] = ACTIONS(3178), + [anon_sym_u_DQUOTE] = ACTIONS(3178), + [anon_sym_U_DQUOTE] = ACTIONS(3178), + [anon_sym_u8_DQUOTE] = ACTIONS(3178), + [anon_sym_DQUOTE] = ACTIONS(3178), + [sym_true] = ACTIONS(3176), + [sym_false] = ACTIONS(3176), + [anon_sym_NULL] = ACTIONS(3176), + [anon_sym_nullptr] = ACTIONS(3176), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3176), + [anon_sym_decltype] = ACTIONS(3176), + [anon_sym_virtual] = ACTIONS(3176), + [anon_sym_explicit] = ACTIONS(3176), + [anon_sym_typename] = ACTIONS(3176), + [anon_sym_template] = ACTIONS(3176), + [anon_sym_operator] = ACTIONS(3176), + [anon_sym_try] = ACTIONS(3176), + [anon_sym_delete] = ACTIONS(3176), + [anon_sym_throw] = ACTIONS(3176), + [anon_sym_namespace] = ACTIONS(3176), + [anon_sym_using] = ACTIONS(3176), + [anon_sym_static_assert] = ACTIONS(3176), + [anon_sym_concept] = ACTIONS(3176), + [anon_sym_co_return] = ACTIONS(3176), + [anon_sym_co_yield] = ACTIONS(3176), + [anon_sym_R_DQUOTE] = ACTIONS(3178), + [anon_sym_LR_DQUOTE] = ACTIONS(3178), + [anon_sym_uR_DQUOTE] = ACTIONS(3178), + [anon_sym_UR_DQUOTE] = ACTIONS(3178), + [anon_sym_u8R_DQUOTE] = ACTIONS(3178), + [anon_sym_co_await] = ACTIONS(3176), + [anon_sym_new] = ACTIONS(3176), + [anon_sym_requires] = ACTIONS(3176), + [sym_this] = ACTIONS(3176), }, [813] = { - [sym_identifier] = ACTIONS(2462), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2464), - [anon_sym_AMP] = ACTIONS(2462), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_explicit] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_operator] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_namespace] = ACTIONS(2462), - [anon_sym_using] = ACTIONS(2462), - [anon_sym_static_assert] = ACTIONS(2462), - [anon_sym_concept] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_identifier] = ACTIONS(2900), + [aux_sym_preproc_include_token1] = ACTIONS(2900), + [aux_sym_preproc_def_token1] = ACTIONS(2900), + [aux_sym_preproc_if_token1] = ACTIONS(2900), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2900), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2900), + [sym_preproc_directive] = ACTIONS(2900), + [anon_sym_LPAREN2] = ACTIONS(2902), + [anon_sym_BANG] = ACTIONS(2902), + [anon_sym_TILDE] = ACTIONS(2902), + [anon_sym_DASH] = ACTIONS(2900), + [anon_sym_PLUS] = ACTIONS(2900), + [anon_sym_STAR] = ACTIONS(2902), + [anon_sym_AMP_AMP] = ACTIONS(2902), + [anon_sym_AMP] = ACTIONS(2900), + [anon_sym_SEMI] = ACTIONS(2902), + [anon_sym_typedef] = ACTIONS(2900), + [anon_sym_extern] = ACTIONS(2900), + [anon_sym___attribute__] = ACTIONS(2900), + [anon_sym_COLON_COLON] = ACTIONS(2902), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2902), + [anon_sym___declspec] = ACTIONS(2900), + [anon_sym___based] = ACTIONS(2900), + [anon_sym___cdecl] = ACTIONS(2900), + [anon_sym___clrcall] = ACTIONS(2900), + [anon_sym___stdcall] = ACTIONS(2900), + [anon_sym___fastcall] = ACTIONS(2900), + [anon_sym___thiscall] = ACTIONS(2900), + [anon_sym___vectorcall] = ACTIONS(2900), + [anon_sym_LBRACE] = ACTIONS(2902), + [anon_sym_RBRACE] = ACTIONS(2902), + [anon_sym_LBRACK] = ACTIONS(2900), + [anon_sym_static] = ACTIONS(2900), + [anon_sym_register] = ACTIONS(2900), + [anon_sym_inline] = ACTIONS(2900), + [anon_sym_thread_local] = ACTIONS(2900), + [anon_sym_const] = ACTIONS(2900), + [anon_sym_constexpr] = ACTIONS(2900), + [anon_sym_volatile] = ACTIONS(2900), + [anon_sym_restrict] = ACTIONS(2900), + [anon_sym___restrict__] = ACTIONS(2900), + [anon_sym__Atomic] = ACTIONS(2900), + [anon_sym__Noreturn] = ACTIONS(2900), + [anon_sym_noreturn] = ACTIONS(2900), + [anon_sym_mutable] = ACTIONS(2900), + [anon_sym_constinit] = ACTIONS(2900), + [anon_sym_consteval] = ACTIONS(2900), + [anon_sym_signed] = ACTIONS(2900), + [anon_sym_unsigned] = ACTIONS(2900), + [anon_sym_long] = ACTIONS(2900), + [anon_sym_short] = ACTIONS(2900), + [sym_primitive_type] = ACTIONS(2900), + [anon_sym_enum] = ACTIONS(2900), + [anon_sym_class] = ACTIONS(2900), + [anon_sym_struct] = ACTIONS(2900), + [anon_sym_union] = ACTIONS(2900), + [anon_sym_if] = ACTIONS(2900), + [anon_sym_else] = ACTIONS(2900), + [anon_sym_switch] = ACTIONS(2900), + [anon_sym_case] = ACTIONS(2900), + [anon_sym_default] = ACTIONS(2900), + [anon_sym_while] = ACTIONS(2900), + [anon_sym_do] = ACTIONS(2900), + [anon_sym_for] = ACTIONS(2900), + [anon_sym_return] = ACTIONS(2900), + [anon_sym_break] = ACTIONS(2900), + [anon_sym_continue] = ACTIONS(2900), + [anon_sym_goto] = ACTIONS(2900), + [anon_sym_not] = ACTIONS(2900), + [anon_sym_compl] = ACTIONS(2900), + [anon_sym_DASH_DASH] = ACTIONS(2902), + [anon_sym_PLUS_PLUS] = ACTIONS(2902), + [anon_sym_sizeof] = ACTIONS(2900), + [anon_sym_offsetof] = ACTIONS(2900), + [anon_sym__Generic] = ACTIONS(2900), + [anon_sym_asm] = ACTIONS(2900), + [anon_sym___asm__] = ACTIONS(2900), + [sym_number_literal] = ACTIONS(2902), + [anon_sym_L_SQUOTE] = ACTIONS(2902), + [anon_sym_u_SQUOTE] = ACTIONS(2902), + [anon_sym_U_SQUOTE] = ACTIONS(2902), + [anon_sym_u8_SQUOTE] = ACTIONS(2902), + [anon_sym_SQUOTE] = ACTIONS(2902), + [anon_sym_L_DQUOTE] = ACTIONS(2902), + [anon_sym_u_DQUOTE] = ACTIONS(2902), + [anon_sym_U_DQUOTE] = ACTIONS(2902), + [anon_sym_u8_DQUOTE] = ACTIONS(2902), + [anon_sym_DQUOTE] = ACTIONS(2902), + [sym_true] = ACTIONS(2900), + [sym_false] = ACTIONS(2900), + [anon_sym_NULL] = ACTIONS(2900), + [anon_sym_nullptr] = ACTIONS(2900), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2900), + [anon_sym_decltype] = ACTIONS(2900), + [anon_sym_virtual] = ACTIONS(2900), + [anon_sym_explicit] = ACTIONS(2900), + [anon_sym_typename] = ACTIONS(2900), + [anon_sym_template] = ACTIONS(2900), + [anon_sym_operator] = ACTIONS(2900), + [anon_sym_try] = ACTIONS(2900), + [anon_sym_delete] = ACTIONS(2900), + [anon_sym_throw] = ACTIONS(2900), + [anon_sym_namespace] = ACTIONS(2900), + [anon_sym_using] = ACTIONS(2900), + [anon_sym_static_assert] = ACTIONS(2900), + [anon_sym_concept] = ACTIONS(2900), + [anon_sym_co_return] = ACTIONS(2900), + [anon_sym_co_yield] = ACTIONS(2900), + [anon_sym_catch] = ACTIONS(2900), + [anon_sym_R_DQUOTE] = ACTIONS(2902), + [anon_sym_LR_DQUOTE] = ACTIONS(2902), + [anon_sym_uR_DQUOTE] = ACTIONS(2902), + [anon_sym_UR_DQUOTE] = ACTIONS(2902), + [anon_sym_u8R_DQUOTE] = ACTIONS(2902), + [anon_sym_co_await] = ACTIONS(2900), + [anon_sym_new] = ACTIONS(2900), + [anon_sym_requires] = ACTIONS(2900), + [sym_this] = ACTIONS(2900), }, [814] = { - [sym_identifier] = ACTIONS(2462), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2464), - [anon_sym_AMP] = ACTIONS(2462), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_explicit] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_operator] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_namespace] = ACTIONS(2462), - [anon_sym_using] = ACTIONS(2462), - [anon_sym_static_assert] = ACTIONS(2462), - [anon_sym_concept] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_identifier] = ACTIONS(3246), + [aux_sym_preproc_include_token1] = ACTIONS(3246), + [aux_sym_preproc_def_token1] = ACTIONS(3246), + [aux_sym_preproc_if_token1] = ACTIONS(3246), + [aux_sym_preproc_if_token2] = ACTIONS(3246), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3246), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3246), + [aux_sym_preproc_else_token1] = ACTIONS(3246), + [aux_sym_preproc_elif_token1] = ACTIONS(3246), + [sym_preproc_directive] = ACTIONS(3246), + [anon_sym_LPAREN2] = ACTIONS(3248), + [anon_sym_BANG] = ACTIONS(3248), + [anon_sym_TILDE] = ACTIONS(3248), + [anon_sym_DASH] = ACTIONS(3246), + [anon_sym_PLUS] = ACTIONS(3246), + [anon_sym_STAR] = ACTIONS(3248), + [anon_sym_AMP_AMP] = ACTIONS(3248), + [anon_sym_AMP] = ACTIONS(3246), + [anon_sym_SEMI] = ACTIONS(3248), + [anon_sym_typedef] = ACTIONS(3246), + [anon_sym_extern] = ACTIONS(3246), + [anon_sym___attribute__] = ACTIONS(3246), + [anon_sym_COLON_COLON] = ACTIONS(3248), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3248), + [anon_sym___declspec] = ACTIONS(3246), + [anon_sym___based] = ACTIONS(3246), + [anon_sym___cdecl] = ACTIONS(3246), + [anon_sym___clrcall] = ACTIONS(3246), + [anon_sym___stdcall] = ACTIONS(3246), + [anon_sym___fastcall] = ACTIONS(3246), + [anon_sym___thiscall] = ACTIONS(3246), + [anon_sym___vectorcall] = ACTIONS(3246), + [anon_sym_LBRACE] = ACTIONS(3248), + [anon_sym_LBRACK] = ACTIONS(3246), + [anon_sym_static] = ACTIONS(3246), + [anon_sym_register] = ACTIONS(3246), + [anon_sym_inline] = ACTIONS(3246), + [anon_sym_thread_local] = ACTIONS(3246), + [anon_sym_const] = ACTIONS(3246), + [anon_sym_constexpr] = ACTIONS(3246), + [anon_sym_volatile] = ACTIONS(3246), + [anon_sym_restrict] = ACTIONS(3246), + [anon_sym___restrict__] = ACTIONS(3246), + [anon_sym__Atomic] = ACTIONS(3246), + [anon_sym__Noreturn] = ACTIONS(3246), + [anon_sym_noreturn] = ACTIONS(3246), + [anon_sym_mutable] = ACTIONS(3246), + [anon_sym_constinit] = ACTIONS(3246), + [anon_sym_consteval] = ACTIONS(3246), + [anon_sym_signed] = ACTIONS(3246), + [anon_sym_unsigned] = ACTIONS(3246), + [anon_sym_long] = ACTIONS(3246), + [anon_sym_short] = ACTIONS(3246), + [sym_primitive_type] = ACTIONS(3246), + [anon_sym_enum] = ACTIONS(3246), + [anon_sym_class] = ACTIONS(3246), + [anon_sym_struct] = ACTIONS(3246), + [anon_sym_union] = ACTIONS(3246), + [anon_sym_if] = ACTIONS(3246), + [anon_sym_switch] = ACTIONS(3246), + [anon_sym_case] = ACTIONS(3246), + [anon_sym_default] = ACTIONS(3246), + [anon_sym_while] = ACTIONS(3246), + [anon_sym_do] = ACTIONS(3246), + [anon_sym_for] = ACTIONS(3246), + [anon_sym_return] = ACTIONS(3246), + [anon_sym_break] = ACTIONS(3246), + [anon_sym_continue] = ACTIONS(3246), + [anon_sym_goto] = ACTIONS(3246), + [anon_sym_not] = ACTIONS(3246), + [anon_sym_compl] = ACTIONS(3246), + [anon_sym_DASH_DASH] = ACTIONS(3248), + [anon_sym_PLUS_PLUS] = ACTIONS(3248), + [anon_sym_sizeof] = ACTIONS(3246), + [anon_sym_offsetof] = ACTIONS(3246), + [anon_sym__Generic] = ACTIONS(3246), + [anon_sym_asm] = ACTIONS(3246), + [anon_sym___asm__] = ACTIONS(3246), + [sym_number_literal] = ACTIONS(3248), + [anon_sym_L_SQUOTE] = ACTIONS(3248), + [anon_sym_u_SQUOTE] = ACTIONS(3248), + [anon_sym_U_SQUOTE] = ACTIONS(3248), + [anon_sym_u8_SQUOTE] = ACTIONS(3248), + [anon_sym_SQUOTE] = ACTIONS(3248), + [anon_sym_L_DQUOTE] = ACTIONS(3248), + [anon_sym_u_DQUOTE] = ACTIONS(3248), + [anon_sym_U_DQUOTE] = ACTIONS(3248), + [anon_sym_u8_DQUOTE] = ACTIONS(3248), + [anon_sym_DQUOTE] = ACTIONS(3248), + [sym_true] = ACTIONS(3246), + [sym_false] = ACTIONS(3246), + [anon_sym_NULL] = ACTIONS(3246), + [anon_sym_nullptr] = ACTIONS(3246), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3246), + [anon_sym_decltype] = ACTIONS(3246), + [anon_sym_virtual] = ACTIONS(3246), + [anon_sym_explicit] = ACTIONS(3246), + [anon_sym_typename] = ACTIONS(3246), + [anon_sym_template] = ACTIONS(3246), + [anon_sym_operator] = ACTIONS(3246), + [anon_sym_try] = ACTIONS(3246), + [anon_sym_delete] = ACTIONS(3246), + [anon_sym_throw] = ACTIONS(3246), + [anon_sym_namespace] = ACTIONS(3246), + [anon_sym_using] = ACTIONS(3246), + [anon_sym_static_assert] = ACTIONS(3246), + [anon_sym_concept] = ACTIONS(3246), + [anon_sym_co_return] = ACTIONS(3246), + [anon_sym_co_yield] = ACTIONS(3246), + [anon_sym_R_DQUOTE] = ACTIONS(3248), + [anon_sym_LR_DQUOTE] = ACTIONS(3248), + [anon_sym_uR_DQUOTE] = ACTIONS(3248), + [anon_sym_UR_DQUOTE] = ACTIONS(3248), + [anon_sym_u8R_DQUOTE] = ACTIONS(3248), + [anon_sym_co_await] = ACTIONS(3246), + [anon_sym_new] = ACTIONS(3246), + [anon_sym_requires] = ACTIONS(3246), + [sym_this] = ACTIONS(3246), }, [815] = { - [sym_identifier] = ACTIONS(2462), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2464), - [anon_sym_AMP] = ACTIONS(2462), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_explicit] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_operator] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_namespace] = ACTIONS(2462), - [anon_sym_using] = ACTIONS(2462), - [anon_sym_static_assert] = ACTIONS(2462), - [anon_sym_concept] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_identifier] = ACTIONS(3262), + [aux_sym_preproc_include_token1] = ACTIONS(3262), + [aux_sym_preproc_def_token1] = ACTIONS(3262), + [aux_sym_preproc_if_token1] = ACTIONS(3262), + [aux_sym_preproc_if_token2] = ACTIONS(3262), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3262), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3262), + [aux_sym_preproc_else_token1] = ACTIONS(3262), + [aux_sym_preproc_elif_token1] = ACTIONS(3262), + [sym_preproc_directive] = ACTIONS(3262), + [anon_sym_LPAREN2] = ACTIONS(3264), + [anon_sym_BANG] = ACTIONS(3264), + [anon_sym_TILDE] = ACTIONS(3264), + [anon_sym_DASH] = ACTIONS(3262), + [anon_sym_PLUS] = ACTIONS(3262), + [anon_sym_STAR] = ACTIONS(3264), + [anon_sym_AMP_AMP] = ACTIONS(3264), + [anon_sym_AMP] = ACTIONS(3262), + [anon_sym_SEMI] = ACTIONS(3264), + [anon_sym_typedef] = ACTIONS(3262), + [anon_sym_extern] = ACTIONS(3262), + [anon_sym___attribute__] = ACTIONS(3262), + [anon_sym_COLON_COLON] = ACTIONS(3264), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3264), + [anon_sym___declspec] = ACTIONS(3262), + [anon_sym___based] = ACTIONS(3262), + [anon_sym___cdecl] = ACTIONS(3262), + [anon_sym___clrcall] = ACTIONS(3262), + [anon_sym___stdcall] = ACTIONS(3262), + [anon_sym___fastcall] = ACTIONS(3262), + [anon_sym___thiscall] = ACTIONS(3262), + [anon_sym___vectorcall] = ACTIONS(3262), + [anon_sym_LBRACE] = ACTIONS(3264), + [anon_sym_LBRACK] = ACTIONS(3262), + [anon_sym_static] = ACTIONS(3262), + [anon_sym_register] = ACTIONS(3262), + [anon_sym_inline] = ACTIONS(3262), + [anon_sym_thread_local] = ACTIONS(3262), + [anon_sym_const] = ACTIONS(3262), + [anon_sym_constexpr] = ACTIONS(3262), + [anon_sym_volatile] = ACTIONS(3262), + [anon_sym_restrict] = ACTIONS(3262), + [anon_sym___restrict__] = ACTIONS(3262), + [anon_sym__Atomic] = ACTIONS(3262), + [anon_sym__Noreturn] = ACTIONS(3262), + [anon_sym_noreturn] = ACTIONS(3262), + [anon_sym_mutable] = ACTIONS(3262), + [anon_sym_constinit] = ACTIONS(3262), + [anon_sym_consteval] = ACTIONS(3262), + [anon_sym_signed] = ACTIONS(3262), + [anon_sym_unsigned] = ACTIONS(3262), + [anon_sym_long] = ACTIONS(3262), + [anon_sym_short] = ACTIONS(3262), + [sym_primitive_type] = ACTIONS(3262), + [anon_sym_enum] = ACTIONS(3262), + [anon_sym_class] = ACTIONS(3262), + [anon_sym_struct] = ACTIONS(3262), + [anon_sym_union] = ACTIONS(3262), + [anon_sym_if] = ACTIONS(3262), + [anon_sym_switch] = ACTIONS(3262), + [anon_sym_case] = ACTIONS(3262), + [anon_sym_default] = ACTIONS(3262), + [anon_sym_while] = ACTIONS(3262), + [anon_sym_do] = ACTIONS(3262), + [anon_sym_for] = ACTIONS(3262), + [anon_sym_return] = ACTIONS(3262), + [anon_sym_break] = ACTIONS(3262), + [anon_sym_continue] = ACTIONS(3262), + [anon_sym_goto] = ACTIONS(3262), + [anon_sym_not] = ACTIONS(3262), + [anon_sym_compl] = ACTIONS(3262), + [anon_sym_DASH_DASH] = ACTIONS(3264), + [anon_sym_PLUS_PLUS] = ACTIONS(3264), + [anon_sym_sizeof] = ACTIONS(3262), + [anon_sym_offsetof] = ACTIONS(3262), + [anon_sym__Generic] = ACTIONS(3262), + [anon_sym_asm] = ACTIONS(3262), + [anon_sym___asm__] = ACTIONS(3262), + [sym_number_literal] = ACTIONS(3264), + [anon_sym_L_SQUOTE] = ACTIONS(3264), + [anon_sym_u_SQUOTE] = ACTIONS(3264), + [anon_sym_U_SQUOTE] = ACTIONS(3264), + [anon_sym_u8_SQUOTE] = ACTIONS(3264), + [anon_sym_SQUOTE] = ACTIONS(3264), + [anon_sym_L_DQUOTE] = ACTIONS(3264), + [anon_sym_u_DQUOTE] = ACTIONS(3264), + [anon_sym_U_DQUOTE] = ACTIONS(3264), + [anon_sym_u8_DQUOTE] = ACTIONS(3264), + [anon_sym_DQUOTE] = ACTIONS(3264), + [sym_true] = ACTIONS(3262), + [sym_false] = ACTIONS(3262), + [anon_sym_NULL] = ACTIONS(3262), + [anon_sym_nullptr] = ACTIONS(3262), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3262), + [anon_sym_decltype] = ACTIONS(3262), + [anon_sym_virtual] = ACTIONS(3262), + [anon_sym_explicit] = ACTIONS(3262), + [anon_sym_typename] = ACTIONS(3262), + [anon_sym_template] = ACTIONS(3262), + [anon_sym_operator] = ACTIONS(3262), + [anon_sym_try] = ACTIONS(3262), + [anon_sym_delete] = ACTIONS(3262), + [anon_sym_throw] = ACTIONS(3262), + [anon_sym_namespace] = ACTIONS(3262), + [anon_sym_using] = ACTIONS(3262), + [anon_sym_static_assert] = ACTIONS(3262), + [anon_sym_concept] = ACTIONS(3262), + [anon_sym_co_return] = ACTIONS(3262), + [anon_sym_co_yield] = ACTIONS(3262), + [anon_sym_R_DQUOTE] = ACTIONS(3264), + [anon_sym_LR_DQUOTE] = ACTIONS(3264), + [anon_sym_uR_DQUOTE] = ACTIONS(3264), + [anon_sym_UR_DQUOTE] = ACTIONS(3264), + [anon_sym_u8R_DQUOTE] = ACTIONS(3264), + [anon_sym_co_await] = ACTIONS(3262), + [anon_sym_new] = ACTIONS(3262), + [anon_sym_requires] = ACTIONS(3262), + [sym_this] = ACTIONS(3262), }, [816] = { - [sym_identifier] = ACTIONS(2462), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2464), - [anon_sym_AMP] = ACTIONS(2462), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_explicit] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_operator] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_namespace] = ACTIONS(2462), - [anon_sym_using] = ACTIONS(2462), - [anon_sym_static_assert] = ACTIONS(2462), - [anon_sym_concept] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_identifier] = ACTIONS(2536), + [aux_sym_preproc_include_token1] = 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(2534), + [anon_sym_BANG] = ACTIONS(2534), + [anon_sym_TILDE] = ACTIONS(2534), + [anon_sym_DASH] = ACTIONS(2536), + [anon_sym_PLUS] = ACTIONS(2536), + [anon_sym_STAR] = ACTIONS(2534), + [anon_sym_AMP_AMP] = ACTIONS(2534), + [anon_sym_AMP] = ACTIONS(2536), + [anon_sym_SEMI] = ACTIONS(2534), + [anon_sym_typedef] = ACTIONS(2536), + [anon_sym_extern] = ACTIONS(2536), + [anon_sym___attribute__] = ACTIONS(2536), + [anon_sym_COLON_COLON] = ACTIONS(2534), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2534), + [anon_sym___declspec] = ACTIONS(2536), + [anon_sym___based] = 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(2534), + [anon_sym_LBRACK] = ACTIONS(2536), + [anon_sym_static] = ACTIONS(2536), + [anon_sym_register] = ACTIONS(2536), + [anon_sym_inline] = ACTIONS(2536), + [anon_sym_thread_local] = 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_noreturn] = ACTIONS(2536), + [anon_sym_mutable] = ACTIONS(2536), + [anon_sym_constinit] = ACTIONS(2536), + [anon_sym_consteval] = ACTIONS(2536), + [anon_sym_signed] = ACTIONS(2536), + [anon_sym_unsigned] = ACTIONS(2536), + [anon_sym_long] = ACTIONS(2536), + [anon_sym_short] = ACTIONS(2536), + [sym_primitive_type] = ACTIONS(2536), + [anon_sym_enum] = ACTIONS(2536), + [anon_sym_class] = 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_return] = ACTIONS(2536), + [anon_sym_break] = ACTIONS(2536), + [anon_sym_continue] = ACTIONS(2536), + [anon_sym_goto] = ACTIONS(2536), + [anon_sym_not] = ACTIONS(2536), + [anon_sym_compl] = ACTIONS(2536), + [anon_sym_DASH_DASH] = ACTIONS(2534), + [anon_sym_PLUS_PLUS] = ACTIONS(2534), + [anon_sym_sizeof] = ACTIONS(2536), + [anon_sym_offsetof] = ACTIONS(2536), + [anon_sym__Generic] = ACTIONS(2536), + [anon_sym_asm] = ACTIONS(2536), + [anon_sym___asm__] = ACTIONS(2536), + [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_L_DQUOTE] = ACTIONS(2534), + [anon_sym_u_DQUOTE] = ACTIONS(2534), + [anon_sym_U_DQUOTE] = ACTIONS(2534), + [anon_sym_u8_DQUOTE] = ACTIONS(2534), + [anon_sym_DQUOTE] = ACTIONS(2534), + [sym_true] = ACTIONS(2536), + [sym_false] = ACTIONS(2536), + [anon_sym_NULL] = ACTIONS(2536), + [anon_sym_nullptr] = ACTIONS(2536), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2536), + [anon_sym_decltype] = ACTIONS(2536), + [anon_sym_virtual] = ACTIONS(2536), + [anon_sym_explicit] = ACTIONS(2536), + [anon_sym_typename] = ACTIONS(2536), + [anon_sym_template] = ACTIONS(2536), + [anon_sym_operator] = ACTIONS(2536), + [anon_sym_try] = ACTIONS(2536), + [anon_sym_delete] = ACTIONS(2536), + [anon_sym_throw] = ACTIONS(2536), + [anon_sym_namespace] = ACTIONS(2536), + [anon_sym_using] = ACTIONS(2536), + [anon_sym_static_assert] = ACTIONS(2536), + [anon_sym_concept] = ACTIONS(2536), + [anon_sym_co_return] = ACTIONS(2536), + [anon_sym_co_yield] = ACTIONS(2536), + [anon_sym_catch] = ACTIONS(2536), + [anon_sym_R_DQUOTE] = ACTIONS(2534), + [anon_sym_LR_DQUOTE] = ACTIONS(2534), + [anon_sym_uR_DQUOTE] = ACTIONS(2534), + [anon_sym_UR_DQUOTE] = ACTIONS(2534), + [anon_sym_u8R_DQUOTE] = ACTIONS(2534), + [anon_sym_co_await] = ACTIONS(2536), + [anon_sym_new] = ACTIONS(2536), + [anon_sym_requires] = ACTIONS(2536), + [sym_this] = ACTIONS(2536), }, [817] = { - [sym_identifier] = ACTIONS(2462), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2464), - [anon_sym_AMP] = ACTIONS(2462), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_explicit] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_operator] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_namespace] = ACTIONS(2462), - [anon_sym_using] = ACTIONS(2462), - [anon_sym_static_assert] = ACTIONS(2462), - [anon_sym_concept] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_identifier] = ACTIONS(3180), + [aux_sym_preproc_include_token1] = ACTIONS(3180), + [aux_sym_preproc_def_token1] = ACTIONS(3180), + [aux_sym_preproc_if_token1] = ACTIONS(3180), + [aux_sym_preproc_if_token2] = ACTIONS(3180), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3180), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3180), + [aux_sym_preproc_else_token1] = ACTIONS(3180), + [aux_sym_preproc_elif_token1] = ACTIONS(3180), + [sym_preproc_directive] = ACTIONS(3180), + [anon_sym_LPAREN2] = ACTIONS(3182), + [anon_sym_BANG] = ACTIONS(3182), + [anon_sym_TILDE] = ACTIONS(3182), + [anon_sym_DASH] = ACTIONS(3180), + [anon_sym_PLUS] = ACTIONS(3180), + [anon_sym_STAR] = ACTIONS(3182), + [anon_sym_AMP_AMP] = ACTIONS(3182), + [anon_sym_AMP] = ACTIONS(3180), + [anon_sym_SEMI] = ACTIONS(3182), + [anon_sym_typedef] = ACTIONS(3180), + [anon_sym_extern] = ACTIONS(3180), + [anon_sym___attribute__] = ACTIONS(3180), + [anon_sym_COLON_COLON] = ACTIONS(3182), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3182), + [anon_sym___declspec] = ACTIONS(3180), + [anon_sym___based] = ACTIONS(3180), + [anon_sym___cdecl] = ACTIONS(3180), + [anon_sym___clrcall] = ACTIONS(3180), + [anon_sym___stdcall] = ACTIONS(3180), + [anon_sym___fastcall] = ACTIONS(3180), + [anon_sym___thiscall] = ACTIONS(3180), + [anon_sym___vectorcall] = ACTIONS(3180), + [anon_sym_LBRACE] = ACTIONS(3182), + [anon_sym_LBRACK] = ACTIONS(3180), + [anon_sym_static] = ACTIONS(3180), + [anon_sym_register] = ACTIONS(3180), + [anon_sym_inline] = ACTIONS(3180), + [anon_sym_thread_local] = ACTIONS(3180), + [anon_sym_const] = ACTIONS(3180), + [anon_sym_constexpr] = ACTIONS(3180), + [anon_sym_volatile] = ACTIONS(3180), + [anon_sym_restrict] = ACTIONS(3180), + [anon_sym___restrict__] = ACTIONS(3180), + [anon_sym__Atomic] = ACTIONS(3180), + [anon_sym__Noreturn] = ACTIONS(3180), + [anon_sym_noreturn] = ACTIONS(3180), + [anon_sym_mutable] = ACTIONS(3180), + [anon_sym_constinit] = ACTIONS(3180), + [anon_sym_consteval] = ACTIONS(3180), + [anon_sym_signed] = ACTIONS(3180), + [anon_sym_unsigned] = ACTIONS(3180), + [anon_sym_long] = ACTIONS(3180), + [anon_sym_short] = ACTIONS(3180), + [sym_primitive_type] = ACTIONS(3180), + [anon_sym_enum] = ACTIONS(3180), + [anon_sym_class] = ACTIONS(3180), + [anon_sym_struct] = ACTIONS(3180), + [anon_sym_union] = ACTIONS(3180), + [anon_sym_if] = ACTIONS(3180), + [anon_sym_switch] = ACTIONS(3180), + [anon_sym_case] = ACTIONS(3180), + [anon_sym_default] = ACTIONS(3180), + [anon_sym_while] = ACTIONS(3180), + [anon_sym_do] = ACTIONS(3180), + [anon_sym_for] = ACTIONS(3180), + [anon_sym_return] = ACTIONS(3180), + [anon_sym_break] = ACTIONS(3180), + [anon_sym_continue] = ACTIONS(3180), + [anon_sym_goto] = ACTIONS(3180), + [anon_sym_not] = ACTIONS(3180), + [anon_sym_compl] = ACTIONS(3180), + [anon_sym_DASH_DASH] = ACTIONS(3182), + [anon_sym_PLUS_PLUS] = ACTIONS(3182), + [anon_sym_sizeof] = ACTIONS(3180), + [anon_sym_offsetof] = ACTIONS(3180), + [anon_sym__Generic] = ACTIONS(3180), + [anon_sym_asm] = ACTIONS(3180), + [anon_sym___asm__] = ACTIONS(3180), + [sym_number_literal] = ACTIONS(3182), + [anon_sym_L_SQUOTE] = ACTIONS(3182), + [anon_sym_u_SQUOTE] = ACTIONS(3182), + [anon_sym_U_SQUOTE] = ACTIONS(3182), + [anon_sym_u8_SQUOTE] = ACTIONS(3182), + [anon_sym_SQUOTE] = ACTIONS(3182), + [anon_sym_L_DQUOTE] = ACTIONS(3182), + [anon_sym_u_DQUOTE] = ACTIONS(3182), + [anon_sym_U_DQUOTE] = ACTIONS(3182), + [anon_sym_u8_DQUOTE] = ACTIONS(3182), + [anon_sym_DQUOTE] = ACTIONS(3182), + [sym_true] = ACTIONS(3180), + [sym_false] = ACTIONS(3180), + [anon_sym_NULL] = ACTIONS(3180), + [anon_sym_nullptr] = ACTIONS(3180), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3180), + [anon_sym_decltype] = ACTIONS(3180), + [anon_sym_virtual] = ACTIONS(3180), + [anon_sym_explicit] = ACTIONS(3180), + [anon_sym_typename] = ACTIONS(3180), + [anon_sym_template] = ACTIONS(3180), + [anon_sym_operator] = ACTIONS(3180), + [anon_sym_try] = ACTIONS(3180), + [anon_sym_delete] = ACTIONS(3180), + [anon_sym_throw] = ACTIONS(3180), + [anon_sym_namespace] = ACTIONS(3180), + [anon_sym_using] = ACTIONS(3180), + [anon_sym_static_assert] = ACTIONS(3180), + [anon_sym_concept] = ACTIONS(3180), + [anon_sym_co_return] = ACTIONS(3180), + [anon_sym_co_yield] = ACTIONS(3180), + [anon_sym_R_DQUOTE] = ACTIONS(3182), + [anon_sym_LR_DQUOTE] = ACTIONS(3182), + [anon_sym_uR_DQUOTE] = ACTIONS(3182), + [anon_sym_UR_DQUOTE] = ACTIONS(3182), + [anon_sym_u8R_DQUOTE] = ACTIONS(3182), + [anon_sym_co_await] = ACTIONS(3180), + [anon_sym_new] = ACTIONS(3180), + [anon_sym_requires] = ACTIONS(3180), + [sym_this] = ACTIONS(3180), }, [818] = { - [sym_identifier] = ACTIONS(2462), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2464), - [anon_sym_AMP] = ACTIONS(2462), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_explicit] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_operator] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_namespace] = ACTIONS(2462), - [anon_sym_using] = ACTIONS(2462), - [anon_sym_static_assert] = ACTIONS(2462), - [anon_sym_concept] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_identifier] = ACTIONS(3316), + [aux_sym_preproc_include_token1] = ACTIONS(3316), + [aux_sym_preproc_def_token1] = ACTIONS(3316), + [aux_sym_preproc_if_token1] = ACTIONS(3316), + [aux_sym_preproc_if_token2] = ACTIONS(3316), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3316), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3316), + [aux_sym_preproc_else_token1] = ACTIONS(3316), + [aux_sym_preproc_elif_token1] = ACTIONS(3316), + [sym_preproc_directive] = ACTIONS(3316), + [anon_sym_LPAREN2] = ACTIONS(3318), + [anon_sym_BANG] = ACTIONS(3318), + [anon_sym_TILDE] = ACTIONS(3318), + [anon_sym_DASH] = ACTIONS(3316), + [anon_sym_PLUS] = ACTIONS(3316), + [anon_sym_STAR] = ACTIONS(3318), + [anon_sym_AMP_AMP] = ACTIONS(3318), + [anon_sym_AMP] = ACTIONS(3316), + [anon_sym_SEMI] = ACTIONS(3318), + [anon_sym_typedef] = ACTIONS(3316), + [anon_sym_extern] = ACTIONS(3316), + [anon_sym___attribute__] = ACTIONS(3316), + [anon_sym_COLON_COLON] = ACTIONS(3318), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3318), + [anon_sym___declspec] = ACTIONS(3316), + [anon_sym___based] = ACTIONS(3316), + [anon_sym___cdecl] = ACTIONS(3316), + [anon_sym___clrcall] = ACTIONS(3316), + [anon_sym___stdcall] = ACTIONS(3316), + [anon_sym___fastcall] = ACTIONS(3316), + [anon_sym___thiscall] = ACTIONS(3316), + [anon_sym___vectorcall] = ACTIONS(3316), + [anon_sym_LBRACE] = ACTIONS(3318), + [anon_sym_LBRACK] = ACTIONS(3316), + [anon_sym_static] = ACTIONS(3316), + [anon_sym_register] = ACTIONS(3316), + [anon_sym_inline] = ACTIONS(3316), + [anon_sym_thread_local] = ACTIONS(3316), + [anon_sym_const] = ACTIONS(3316), + [anon_sym_constexpr] = ACTIONS(3316), + [anon_sym_volatile] = ACTIONS(3316), + [anon_sym_restrict] = ACTIONS(3316), + [anon_sym___restrict__] = ACTIONS(3316), + [anon_sym__Atomic] = ACTIONS(3316), + [anon_sym__Noreturn] = ACTIONS(3316), + [anon_sym_noreturn] = ACTIONS(3316), + [anon_sym_mutable] = ACTIONS(3316), + [anon_sym_constinit] = ACTIONS(3316), + [anon_sym_consteval] = ACTIONS(3316), + [anon_sym_signed] = ACTIONS(3316), + [anon_sym_unsigned] = ACTIONS(3316), + [anon_sym_long] = ACTIONS(3316), + [anon_sym_short] = ACTIONS(3316), + [sym_primitive_type] = ACTIONS(3316), + [anon_sym_enum] = ACTIONS(3316), + [anon_sym_class] = ACTIONS(3316), + [anon_sym_struct] = ACTIONS(3316), + [anon_sym_union] = ACTIONS(3316), + [anon_sym_if] = ACTIONS(3316), + [anon_sym_switch] = ACTIONS(3316), + [anon_sym_case] = ACTIONS(3316), + [anon_sym_default] = ACTIONS(3316), + [anon_sym_while] = ACTIONS(3316), + [anon_sym_do] = ACTIONS(3316), + [anon_sym_for] = ACTIONS(3316), + [anon_sym_return] = ACTIONS(3316), + [anon_sym_break] = ACTIONS(3316), + [anon_sym_continue] = ACTIONS(3316), + [anon_sym_goto] = ACTIONS(3316), + [anon_sym_not] = ACTIONS(3316), + [anon_sym_compl] = ACTIONS(3316), + [anon_sym_DASH_DASH] = ACTIONS(3318), + [anon_sym_PLUS_PLUS] = ACTIONS(3318), + [anon_sym_sizeof] = ACTIONS(3316), + [anon_sym_offsetof] = ACTIONS(3316), + [anon_sym__Generic] = ACTIONS(3316), + [anon_sym_asm] = ACTIONS(3316), + [anon_sym___asm__] = ACTIONS(3316), + [sym_number_literal] = ACTIONS(3318), + [anon_sym_L_SQUOTE] = ACTIONS(3318), + [anon_sym_u_SQUOTE] = ACTIONS(3318), + [anon_sym_U_SQUOTE] = ACTIONS(3318), + [anon_sym_u8_SQUOTE] = ACTIONS(3318), + [anon_sym_SQUOTE] = ACTIONS(3318), + [anon_sym_L_DQUOTE] = ACTIONS(3318), + [anon_sym_u_DQUOTE] = ACTIONS(3318), + [anon_sym_U_DQUOTE] = ACTIONS(3318), + [anon_sym_u8_DQUOTE] = ACTIONS(3318), + [anon_sym_DQUOTE] = ACTIONS(3318), + [sym_true] = ACTIONS(3316), + [sym_false] = ACTIONS(3316), + [anon_sym_NULL] = ACTIONS(3316), + [anon_sym_nullptr] = ACTIONS(3316), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3316), + [anon_sym_decltype] = ACTIONS(3316), + [anon_sym_virtual] = ACTIONS(3316), + [anon_sym_explicit] = ACTIONS(3316), + [anon_sym_typename] = ACTIONS(3316), + [anon_sym_template] = ACTIONS(3316), + [anon_sym_operator] = ACTIONS(3316), + [anon_sym_try] = ACTIONS(3316), + [anon_sym_delete] = ACTIONS(3316), + [anon_sym_throw] = ACTIONS(3316), + [anon_sym_namespace] = ACTIONS(3316), + [anon_sym_using] = ACTIONS(3316), + [anon_sym_static_assert] = ACTIONS(3316), + [anon_sym_concept] = ACTIONS(3316), + [anon_sym_co_return] = ACTIONS(3316), + [anon_sym_co_yield] = ACTIONS(3316), + [anon_sym_R_DQUOTE] = ACTIONS(3318), + [anon_sym_LR_DQUOTE] = ACTIONS(3318), + [anon_sym_uR_DQUOTE] = ACTIONS(3318), + [anon_sym_UR_DQUOTE] = ACTIONS(3318), + [anon_sym_u8R_DQUOTE] = ACTIONS(3318), + [anon_sym_co_await] = ACTIONS(3316), + [anon_sym_new] = ACTIONS(3316), + [anon_sym_requires] = ACTIONS(3316), + [sym_this] = ACTIONS(3316), }, [819] = { - [sym_identifier] = ACTIONS(2462), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2464), - [anon_sym_AMP] = ACTIONS(2462), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_explicit] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_operator] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_namespace] = ACTIONS(2462), - [anon_sym_using] = ACTIONS(2462), - [anon_sym_static_assert] = ACTIONS(2462), - [anon_sym_concept] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_identifier] = ACTIONS(3226), + [aux_sym_preproc_include_token1] = ACTIONS(3226), + [aux_sym_preproc_def_token1] = ACTIONS(3226), + [aux_sym_preproc_if_token1] = ACTIONS(3226), + [aux_sym_preproc_if_token2] = ACTIONS(3226), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3226), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3226), + [aux_sym_preproc_else_token1] = ACTIONS(3226), + [aux_sym_preproc_elif_token1] = ACTIONS(3226), + [sym_preproc_directive] = ACTIONS(3226), + [anon_sym_LPAREN2] = ACTIONS(3228), + [anon_sym_BANG] = ACTIONS(3228), + [anon_sym_TILDE] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(3226), + [anon_sym_PLUS] = ACTIONS(3226), + [anon_sym_STAR] = ACTIONS(3228), + [anon_sym_AMP_AMP] = ACTIONS(3228), + [anon_sym_AMP] = ACTIONS(3226), + [anon_sym_SEMI] = ACTIONS(3228), + [anon_sym_typedef] = ACTIONS(3226), + [anon_sym_extern] = ACTIONS(3226), + [anon_sym___attribute__] = ACTIONS(3226), + [anon_sym_COLON_COLON] = ACTIONS(3228), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3228), + [anon_sym___declspec] = ACTIONS(3226), + [anon_sym___based] = ACTIONS(3226), + [anon_sym___cdecl] = ACTIONS(3226), + [anon_sym___clrcall] = ACTIONS(3226), + [anon_sym___stdcall] = ACTIONS(3226), + [anon_sym___fastcall] = ACTIONS(3226), + [anon_sym___thiscall] = ACTIONS(3226), + [anon_sym___vectorcall] = ACTIONS(3226), + [anon_sym_LBRACE] = ACTIONS(3228), + [anon_sym_LBRACK] = ACTIONS(3226), + [anon_sym_static] = ACTIONS(3226), + [anon_sym_register] = ACTIONS(3226), + [anon_sym_inline] = ACTIONS(3226), + [anon_sym_thread_local] = ACTIONS(3226), + [anon_sym_const] = ACTIONS(3226), + [anon_sym_constexpr] = ACTIONS(3226), + [anon_sym_volatile] = ACTIONS(3226), + [anon_sym_restrict] = ACTIONS(3226), + [anon_sym___restrict__] = ACTIONS(3226), + [anon_sym__Atomic] = ACTIONS(3226), + [anon_sym__Noreturn] = ACTIONS(3226), + [anon_sym_noreturn] = ACTIONS(3226), + [anon_sym_mutable] = ACTIONS(3226), + [anon_sym_constinit] = ACTIONS(3226), + [anon_sym_consteval] = ACTIONS(3226), + [anon_sym_signed] = ACTIONS(3226), + [anon_sym_unsigned] = ACTIONS(3226), + [anon_sym_long] = ACTIONS(3226), + [anon_sym_short] = ACTIONS(3226), + [sym_primitive_type] = ACTIONS(3226), + [anon_sym_enum] = ACTIONS(3226), + [anon_sym_class] = ACTIONS(3226), + [anon_sym_struct] = ACTIONS(3226), + [anon_sym_union] = ACTIONS(3226), + [anon_sym_if] = ACTIONS(3226), + [anon_sym_switch] = ACTIONS(3226), + [anon_sym_case] = ACTIONS(3226), + [anon_sym_default] = ACTIONS(3226), + [anon_sym_while] = ACTIONS(3226), + [anon_sym_do] = ACTIONS(3226), + [anon_sym_for] = ACTIONS(3226), + [anon_sym_return] = ACTIONS(3226), + [anon_sym_break] = ACTIONS(3226), + [anon_sym_continue] = ACTIONS(3226), + [anon_sym_goto] = ACTIONS(3226), + [anon_sym_not] = ACTIONS(3226), + [anon_sym_compl] = ACTIONS(3226), + [anon_sym_DASH_DASH] = ACTIONS(3228), + [anon_sym_PLUS_PLUS] = ACTIONS(3228), + [anon_sym_sizeof] = ACTIONS(3226), + [anon_sym_offsetof] = ACTIONS(3226), + [anon_sym__Generic] = ACTIONS(3226), + [anon_sym_asm] = ACTIONS(3226), + [anon_sym___asm__] = ACTIONS(3226), + [sym_number_literal] = ACTIONS(3228), + [anon_sym_L_SQUOTE] = ACTIONS(3228), + [anon_sym_u_SQUOTE] = ACTIONS(3228), + [anon_sym_U_SQUOTE] = ACTIONS(3228), + [anon_sym_u8_SQUOTE] = ACTIONS(3228), + [anon_sym_SQUOTE] = ACTIONS(3228), + [anon_sym_L_DQUOTE] = ACTIONS(3228), + [anon_sym_u_DQUOTE] = ACTIONS(3228), + [anon_sym_U_DQUOTE] = ACTIONS(3228), + [anon_sym_u8_DQUOTE] = ACTIONS(3228), + [anon_sym_DQUOTE] = ACTIONS(3228), + [sym_true] = ACTIONS(3226), + [sym_false] = ACTIONS(3226), + [anon_sym_NULL] = ACTIONS(3226), + [anon_sym_nullptr] = ACTIONS(3226), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3226), + [anon_sym_decltype] = ACTIONS(3226), + [anon_sym_virtual] = ACTIONS(3226), + [anon_sym_explicit] = ACTIONS(3226), + [anon_sym_typename] = ACTIONS(3226), + [anon_sym_template] = ACTIONS(3226), + [anon_sym_operator] = ACTIONS(3226), + [anon_sym_try] = ACTIONS(3226), + [anon_sym_delete] = ACTIONS(3226), + [anon_sym_throw] = ACTIONS(3226), + [anon_sym_namespace] = ACTIONS(3226), + [anon_sym_using] = ACTIONS(3226), + [anon_sym_static_assert] = ACTIONS(3226), + [anon_sym_concept] = ACTIONS(3226), + [anon_sym_co_return] = ACTIONS(3226), + [anon_sym_co_yield] = ACTIONS(3226), + [anon_sym_R_DQUOTE] = ACTIONS(3228), + [anon_sym_LR_DQUOTE] = ACTIONS(3228), + [anon_sym_uR_DQUOTE] = ACTIONS(3228), + [anon_sym_UR_DQUOTE] = ACTIONS(3228), + [anon_sym_u8R_DQUOTE] = ACTIONS(3228), + [anon_sym_co_await] = ACTIONS(3226), + [anon_sym_new] = ACTIONS(3226), + [anon_sym_requires] = ACTIONS(3226), + [sym_this] = ACTIONS(3226), }, [820] = { - [sym_identifier] = ACTIONS(2462), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2464), - [anon_sym_AMP] = ACTIONS(2462), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_explicit] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_operator] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_namespace] = ACTIONS(2462), - [anon_sym_using] = ACTIONS(2462), - [anon_sym_static_assert] = ACTIONS(2462), - [anon_sym_concept] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_identifier] = ACTIONS(3342), + [aux_sym_preproc_include_token1] = ACTIONS(3342), + [aux_sym_preproc_def_token1] = ACTIONS(3342), + [aux_sym_preproc_if_token1] = ACTIONS(3342), + [aux_sym_preproc_if_token2] = ACTIONS(3342), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3342), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3342), + [aux_sym_preproc_else_token1] = ACTIONS(3342), + [aux_sym_preproc_elif_token1] = ACTIONS(3342), + [sym_preproc_directive] = ACTIONS(3342), + [anon_sym_LPAREN2] = ACTIONS(3344), + [anon_sym_BANG] = ACTIONS(3344), + [anon_sym_TILDE] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3342), + [anon_sym_PLUS] = ACTIONS(3342), + [anon_sym_STAR] = ACTIONS(3344), + [anon_sym_AMP_AMP] = ACTIONS(3344), + [anon_sym_AMP] = ACTIONS(3342), + [anon_sym_SEMI] = ACTIONS(3344), + [anon_sym_typedef] = ACTIONS(3342), + [anon_sym_extern] = ACTIONS(3342), + [anon_sym___attribute__] = ACTIONS(3342), + [anon_sym_COLON_COLON] = ACTIONS(3344), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3344), + [anon_sym___declspec] = ACTIONS(3342), + [anon_sym___based] = ACTIONS(3342), + [anon_sym___cdecl] = ACTIONS(3342), + [anon_sym___clrcall] = ACTIONS(3342), + [anon_sym___stdcall] = ACTIONS(3342), + [anon_sym___fastcall] = ACTIONS(3342), + [anon_sym___thiscall] = ACTIONS(3342), + [anon_sym___vectorcall] = ACTIONS(3342), + [anon_sym_LBRACE] = ACTIONS(3344), + [anon_sym_LBRACK] = ACTIONS(3342), + [anon_sym_static] = ACTIONS(3342), + [anon_sym_register] = ACTIONS(3342), + [anon_sym_inline] = ACTIONS(3342), + [anon_sym_thread_local] = ACTIONS(3342), + [anon_sym_const] = ACTIONS(3342), + [anon_sym_constexpr] = ACTIONS(3342), + [anon_sym_volatile] = ACTIONS(3342), + [anon_sym_restrict] = ACTIONS(3342), + [anon_sym___restrict__] = ACTIONS(3342), + [anon_sym__Atomic] = ACTIONS(3342), + [anon_sym__Noreturn] = ACTIONS(3342), + [anon_sym_noreturn] = ACTIONS(3342), + [anon_sym_mutable] = ACTIONS(3342), + [anon_sym_constinit] = ACTIONS(3342), + [anon_sym_consteval] = ACTIONS(3342), + [anon_sym_signed] = ACTIONS(3342), + [anon_sym_unsigned] = ACTIONS(3342), + [anon_sym_long] = ACTIONS(3342), + [anon_sym_short] = ACTIONS(3342), + [sym_primitive_type] = ACTIONS(3342), + [anon_sym_enum] = ACTIONS(3342), + [anon_sym_class] = ACTIONS(3342), + [anon_sym_struct] = ACTIONS(3342), + [anon_sym_union] = ACTIONS(3342), + [anon_sym_if] = ACTIONS(3342), + [anon_sym_switch] = ACTIONS(3342), + [anon_sym_case] = ACTIONS(3342), + [anon_sym_default] = ACTIONS(3342), + [anon_sym_while] = ACTIONS(3342), + [anon_sym_do] = ACTIONS(3342), + [anon_sym_for] = ACTIONS(3342), + [anon_sym_return] = ACTIONS(3342), + [anon_sym_break] = ACTIONS(3342), + [anon_sym_continue] = ACTIONS(3342), + [anon_sym_goto] = ACTIONS(3342), + [anon_sym_not] = ACTIONS(3342), + [anon_sym_compl] = ACTIONS(3342), + [anon_sym_DASH_DASH] = ACTIONS(3344), + [anon_sym_PLUS_PLUS] = ACTIONS(3344), + [anon_sym_sizeof] = ACTIONS(3342), + [anon_sym_offsetof] = ACTIONS(3342), + [anon_sym__Generic] = ACTIONS(3342), + [anon_sym_asm] = ACTIONS(3342), + [anon_sym___asm__] = ACTIONS(3342), + [sym_number_literal] = ACTIONS(3344), + [anon_sym_L_SQUOTE] = ACTIONS(3344), + [anon_sym_u_SQUOTE] = ACTIONS(3344), + [anon_sym_U_SQUOTE] = ACTIONS(3344), + [anon_sym_u8_SQUOTE] = ACTIONS(3344), + [anon_sym_SQUOTE] = ACTIONS(3344), + [anon_sym_L_DQUOTE] = ACTIONS(3344), + [anon_sym_u_DQUOTE] = ACTIONS(3344), + [anon_sym_U_DQUOTE] = ACTIONS(3344), + [anon_sym_u8_DQUOTE] = ACTIONS(3344), + [anon_sym_DQUOTE] = ACTIONS(3344), + [sym_true] = ACTIONS(3342), + [sym_false] = ACTIONS(3342), + [anon_sym_NULL] = ACTIONS(3342), + [anon_sym_nullptr] = ACTIONS(3342), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3342), + [anon_sym_decltype] = ACTIONS(3342), + [anon_sym_virtual] = ACTIONS(3342), + [anon_sym_explicit] = ACTIONS(3342), + [anon_sym_typename] = ACTIONS(3342), + [anon_sym_template] = ACTIONS(3342), + [anon_sym_operator] = ACTIONS(3342), + [anon_sym_try] = ACTIONS(3342), + [anon_sym_delete] = ACTIONS(3342), + [anon_sym_throw] = ACTIONS(3342), + [anon_sym_namespace] = ACTIONS(3342), + [anon_sym_using] = ACTIONS(3342), + [anon_sym_static_assert] = ACTIONS(3342), + [anon_sym_concept] = ACTIONS(3342), + [anon_sym_co_return] = ACTIONS(3342), + [anon_sym_co_yield] = ACTIONS(3342), + [anon_sym_R_DQUOTE] = ACTIONS(3344), + [anon_sym_LR_DQUOTE] = ACTIONS(3344), + [anon_sym_uR_DQUOTE] = ACTIONS(3344), + [anon_sym_UR_DQUOTE] = ACTIONS(3344), + [anon_sym_u8R_DQUOTE] = ACTIONS(3344), + [anon_sym_co_await] = ACTIONS(3342), + [anon_sym_new] = ACTIONS(3342), + [anon_sym_requires] = ACTIONS(3342), + [sym_this] = ACTIONS(3342), }, [821] = { - [sym_identifier] = ACTIONS(2462), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2464), - [anon_sym_AMP] = ACTIONS(2462), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_explicit] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_operator] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_namespace] = ACTIONS(2462), - [anon_sym_using] = ACTIONS(2462), - [anon_sym_static_assert] = ACTIONS(2462), - [anon_sym_concept] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_identifier] = ACTIONS(3380), + [aux_sym_preproc_include_token1] = ACTIONS(3380), + [aux_sym_preproc_def_token1] = ACTIONS(3380), + [aux_sym_preproc_if_token1] = ACTIONS(3380), + [aux_sym_preproc_if_token2] = ACTIONS(3380), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3380), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3380), + [aux_sym_preproc_else_token1] = ACTIONS(3380), + [aux_sym_preproc_elif_token1] = ACTIONS(3380), + [sym_preproc_directive] = ACTIONS(3380), + [anon_sym_LPAREN2] = ACTIONS(3382), + [anon_sym_BANG] = ACTIONS(3382), + [anon_sym_TILDE] = ACTIONS(3382), + [anon_sym_DASH] = ACTIONS(3380), + [anon_sym_PLUS] = ACTIONS(3380), + [anon_sym_STAR] = ACTIONS(3382), + [anon_sym_AMP_AMP] = ACTIONS(3382), + [anon_sym_AMP] = ACTIONS(3380), + [anon_sym_SEMI] = ACTIONS(3382), + [anon_sym_typedef] = ACTIONS(3380), + [anon_sym_extern] = ACTIONS(3380), + [anon_sym___attribute__] = ACTIONS(3380), + [anon_sym_COLON_COLON] = ACTIONS(3382), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3382), + [anon_sym___declspec] = ACTIONS(3380), + [anon_sym___based] = ACTIONS(3380), + [anon_sym___cdecl] = ACTIONS(3380), + [anon_sym___clrcall] = ACTIONS(3380), + [anon_sym___stdcall] = ACTIONS(3380), + [anon_sym___fastcall] = ACTIONS(3380), + [anon_sym___thiscall] = ACTIONS(3380), + [anon_sym___vectorcall] = ACTIONS(3380), + [anon_sym_LBRACE] = ACTIONS(3382), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_static] = ACTIONS(3380), + [anon_sym_register] = ACTIONS(3380), + [anon_sym_inline] = ACTIONS(3380), + [anon_sym_thread_local] = ACTIONS(3380), + [anon_sym_const] = ACTIONS(3380), + [anon_sym_constexpr] = ACTIONS(3380), + [anon_sym_volatile] = ACTIONS(3380), + [anon_sym_restrict] = ACTIONS(3380), + [anon_sym___restrict__] = ACTIONS(3380), + [anon_sym__Atomic] = ACTIONS(3380), + [anon_sym__Noreturn] = ACTIONS(3380), + [anon_sym_noreturn] = ACTIONS(3380), + [anon_sym_mutable] = ACTIONS(3380), + [anon_sym_constinit] = ACTIONS(3380), + [anon_sym_consteval] = ACTIONS(3380), + [anon_sym_signed] = ACTIONS(3380), + [anon_sym_unsigned] = ACTIONS(3380), + [anon_sym_long] = ACTIONS(3380), + [anon_sym_short] = ACTIONS(3380), + [sym_primitive_type] = ACTIONS(3380), + [anon_sym_enum] = ACTIONS(3380), + [anon_sym_class] = ACTIONS(3380), + [anon_sym_struct] = ACTIONS(3380), + [anon_sym_union] = ACTIONS(3380), + [anon_sym_if] = ACTIONS(3380), + [anon_sym_switch] = ACTIONS(3380), + [anon_sym_case] = ACTIONS(3380), + [anon_sym_default] = ACTIONS(3380), + [anon_sym_while] = ACTIONS(3380), + [anon_sym_do] = ACTIONS(3380), + [anon_sym_for] = ACTIONS(3380), + [anon_sym_return] = ACTIONS(3380), + [anon_sym_break] = ACTIONS(3380), + [anon_sym_continue] = ACTIONS(3380), + [anon_sym_goto] = ACTIONS(3380), + [anon_sym_not] = ACTIONS(3380), + [anon_sym_compl] = ACTIONS(3380), + [anon_sym_DASH_DASH] = ACTIONS(3382), + [anon_sym_PLUS_PLUS] = ACTIONS(3382), + [anon_sym_sizeof] = ACTIONS(3380), + [anon_sym_offsetof] = ACTIONS(3380), + [anon_sym__Generic] = ACTIONS(3380), + [anon_sym_asm] = ACTIONS(3380), + [anon_sym___asm__] = ACTIONS(3380), + [sym_number_literal] = ACTIONS(3382), + [anon_sym_L_SQUOTE] = ACTIONS(3382), + [anon_sym_u_SQUOTE] = ACTIONS(3382), + [anon_sym_U_SQUOTE] = ACTIONS(3382), + [anon_sym_u8_SQUOTE] = ACTIONS(3382), + [anon_sym_SQUOTE] = ACTIONS(3382), + [anon_sym_L_DQUOTE] = ACTIONS(3382), + [anon_sym_u_DQUOTE] = ACTIONS(3382), + [anon_sym_U_DQUOTE] = ACTIONS(3382), + [anon_sym_u8_DQUOTE] = ACTIONS(3382), + [anon_sym_DQUOTE] = ACTIONS(3382), + [sym_true] = ACTIONS(3380), + [sym_false] = ACTIONS(3380), + [anon_sym_NULL] = ACTIONS(3380), + [anon_sym_nullptr] = ACTIONS(3380), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3380), + [anon_sym_decltype] = ACTIONS(3380), + [anon_sym_virtual] = ACTIONS(3380), + [anon_sym_explicit] = ACTIONS(3380), + [anon_sym_typename] = ACTIONS(3380), + [anon_sym_template] = ACTIONS(3380), + [anon_sym_operator] = ACTIONS(3380), + [anon_sym_try] = ACTIONS(3380), + [anon_sym_delete] = ACTIONS(3380), + [anon_sym_throw] = ACTIONS(3380), + [anon_sym_namespace] = ACTIONS(3380), + [anon_sym_using] = ACTIONS(3380), + [anon_sym_static_assert] = ACTIONS(3380), + [anon_sym_concept] = ACTIONS(3380), + [anon_sym_co_return] = ACTIONS(3380), + [anon_sym_co_yield] = ACTIONS(3380), + [anon_sym_R_DQUOTE] = ACTIONS(3382), + [anon_sym_LR_DQUOTE] = ACTIONS(3382), + [anon_sym_uR_DQUOTE] = ACTIONS(3382), + [anon_sym_UR_DQUOTE] = ACTIONS(3382), + [anon_sym_u8R_DQUOTE] = ACTIONS(3382), + [anon_sym_co_await] = ACTIONS(3380), + [anon_sym_new] = ACTIONS(3380), + [anon_sym_requires] = ACTIONS(3380), + [sym_this] = ACTIONS(3380), }, [822] = { - [sym_identifier] = ACTIONS(2462), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2464), - [anon_sym_AMP] = ACTIONS(2462), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_explicit] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_operator] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_namespace] = ACTIONS(2462), - [anon_sym_using] = ACTIONS(2462), - [anon_sym_static_assert] = ACTIONS(2462), - [anon_sym_concept] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_identifier] = ACTIONS(3354), + [aux_sym_preproc_include_token1] = ACTIONS(3354), + [aux_sym_preproc_def_token1] = ACTIONS(3354), + [aux_sym_preproc_if_token1] = ACTIONS(3354), + [aux_sym_preproc_if_token2] = ACTIONS(3354), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3354), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3354), + [aux_sym_preproc_else_token1] = ACTIONS(3354), + [aux_sym_preproc_elif_token1] = ACTIONS(3354), + [sym_preproc_directive] = ACTIONS(3354), + [anon_sym_LPAREN2] = ACTIONS(3356), + [anon_sym_BANG] = ACTIONS(3356), + [anon_sym_TILDE] = ACTIONS(3356), + [anon_sym_DASH] = ACTIONS(3354), + [anon_sym_PLUS] = ACTIONS(3354), + [anon_sym_STAR] = ACTIONS(3356), + [anon_sym_AMP_AMP] = ACTIONS(3356), + [anon_sym_AMP] = ACTIONS(3354), + [anon_sym_SEMI] = ACTIONS(3356), + [anon_sym_typedef] = ACTIONS(3354), + [anon_sym_extern] = ACTIONS(3354), + [anon_sym___attribute__] = ACTIONS(3354), + [anon_sym_COLON_COLON] = ACTIONS(3356), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3356), + [anon_sym___declspec] = ACTIONS(3354), + [anon_sym___based] = ACTIONS(3354), + [anon_sym___cdecl] = ACTIONS(3354), + [anon_sym___clrcall] = ACTIONS(3354), + [anon_sym___stdcall] = ACTIONS(3354), + [anon_sym___fastcall] = ACTIONS(3354), + [anon_sym___thiscall] = ACTIONS(3354), + [anon_sym___vectorcall] = ACTIONS(3354), + [anon_sym_LBRACE] = ACTIONS(3356), + [anon_sym_LBRACK] = ACTIONS(3354), + [anon_sym_static] = ACTIONS(3354), + [anon_sym_register] = ACTIONS(3354), + [anon_sym_inline] = ACTIONS(3354), + [anon_sym_thread_local] = ACTIONS(3354), + [anon_sym_const] = ACTIONS(3354), + [anon_sym_constexpr] = ACTIONS(3354), + [anon_sym_volatile] = ACTIONS(3354), + [anon_sym_restrict] = ACTIONS(3354), + [anon_sym___restrict__] = ACTIONS(3354), + [anon_sym__Atomic] = ACTIONS(3354), + [anon_sym__Noreturn] = ACTIONS(3354), + [anon_sym_noreturn] = ACTIONS(3354), + [anon_sym_mutable] = ACTIONS(3354), + [anon_sym_constinit] = ACTIONS(3354), + [anon_sym_consteval] = ACTIONS(3354), + [anon_sym_signed] = ACTIONS(3354), + [anon_sym_unsigned] = ACTIONS(3354), + [anon_sym_long] = ACTIONS(3354), + [anon_sym_short] = ACTIONS(3354), + [sym_primitive_type] = ACTIONS(3354), + [anon_sym_enum] = ACTIONS(3354), + [anon_sym_class] = ACTIONS(3354), + [anon_sym_struct] = ACTIONS(3354), + [anon_sym_union] = ACTIONS(3354), + [anon_sym_if] = ACTIONS(3354), + [anon_sym_switch] = ACTIONS(3354), + [anon_sym_case] = ACTIONS(3354), + [anon_sym_default] = ACTIONS(3354), + [anon_sym_while] = ACTIONS(3354), + [anon_sym_do] = ACTIONS(3354), + [anon_sym_for] = ACTIONS(3354), + [anon_sym_return] = ACTIONS(3354), + [anon_sym_break] = ACTIONS(3354), + [anon_sym_continue] = ACTIONS(3354), + [anon_sym_goto] = ACTIONS(3354), + [anon_sym_not] = ACTIONS(3354), + [anon_sym_compl] = ACTIONS(3354), + [anon_sym_DASH_DASH] = ACTIONS(3356), + [anon_sym_PLUS_PLUS] = ACTIONS(3356), + [anon_sym_sizeof] = ACTIONS(3354), + [anon_sym_offsetof] = ACTIONS(3354), + [anon_sym__Generic] = ACTIONS(3354), + [anon_sym_asm] = ACTIONS(3354), + [anon_sym___asm__] = ACTIONS(3354), + [sym_number_literal] = ACTIONS(3356), + [anon_sym_L_SQUOTE] = ACTIONS(3356), + [anon_sym_u_SQUOTE] = ACTIONS(3356), + [anon_sym_U_SQUOTE] = ACTIONS(3356), + [anon_sym_u8_SQUOTE] = ACTIONS(3356), + [anon_sym_SQUOTE] = ACTIONS(3356), + [anon_sym_L_DQUOTE] = ACTIONS(3356), + [anon_sym_u_DQUOTE] = ACTIONS(3356), + [anon_sym_U_DQUOTE] = ACTIONS(3356), + [anon_sym_u8_DQUOTE] = ACTIONS(3356), + [anon_sym_DQUOTE] = ACTIONS(3356), + [sym_true] = ACTIONS(3354), + [sym_false] = ACTIONS(3354), + [anon_sym_NULL] = ACTIONS(3354), + [anon_sym_nullptr] = ACTIONS(3354), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3354), + [anon_sym_decltype] = ACTIONS(3354), + [anon_sym_virtual] = ACTIONS(3354), + [anon_sym_explicit] = ACTIONS(3354), + [anon_sym_typename] = ACTIONS(3354), + [anon_sym_template] = ACTIONS(3354), + [anon_sym_operator] = ACTIONS(3354), + [anon_sym_try] = ACTIONS(3354), + [anon_sym_delete] = ACTIONS(3354), + [anon_sym_throw] = ACTIONS(3354), + [anon_sym_namespace] = ACTIONS(3354), + [anon_sym_using] = ACTIONS(3354), + [anon_sym_static_assert] = ACTIONS(3354), + [anon_sym_concept] = ACTIONS(3354), + [anon_sym_co_return] = ACTIONS(3354), + [anon_sym_co_yield] = ACTIONS(3354), + [anon_sym_R_DQUOTE] = ACTIONS(3356), + [anon_sym_LR_DQUOTE] = ACTIONS(3356), + [anon_sym_uR_DQUOTE] = ACTIONS(3356), + [anon_sym_UR_DQUOTE] = ACTIONS(3356), + [anon_sym_u8R_DQUOTE] = ACTIONS(3356), + [anon_sym_co_await] = ACTIONS(3354), + [anon_sym_new] = ACTIONS(3354), + [anon_sym_requires] = ACTIONS(3354), + [sym_this] = ACTIONS(3354), }, [823] = { - [sym_identifier] = ACTIONS(2514), - [aux_sym_preproc_include_token1] = ACTIONS(2514), - [aux_sym_preproc_def_token1] = ACTIONS(2514), - [aux_sym_preproc_if_token1] = ACTIONS(2514), - [aux_sym_preproc_if_token2] = ACTIONS(2514), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2514), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2514), - [sym_preproc_directive] = ACTIONS(2514), - [anon_sym_LPAREN2] = ACTIONS(2516), - [anon_sym_BANG] = ACTIONS(2516), - [anon_sym_TILDE] = ACTIONS(2516), - [anon_sym_DASH] = ACTIONS(2514), - [anon_sym_PLUS] = ACTIONS(2514), - [anon_sym_STAR] = ACTIONS(2516), - [anon_sym_AMP_AMP] = ACTIONS(2516), - [anon_sym_AMP] = ACTIONS(2514), - [anon_sym_SEMI] = ACTIONS(2516), - [anon_sym_typedef] = ACTIONS(2514), - [anon_sym_extern] = ACTIONS(2514), - [anon_sym___attribute__] = ACTIONS(2514), - [anon_sym_COLON_COLON] = ACTIONS(2516), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2516), - [anon_sym___declspec] = ACTIONS(2514), - [anon_sym___based] = ACTIONS(2514), - [anon_sym___cdecl] = ACTIONS(2514), - [anon_sym___clrcall] = ACTIONS(2514), - [anon_sym___stdcall] = ACTIONS(2514), - [anon_sym___fastcall] = ACTIONS(2514), - [anon_sym___thiscall] = ACTIONS(2514), - [anon_sym___vectorcall] = ACTIONS(2514), - [anon_sym_LBRACE] = ACTIONS(2516), - [anon_sym_LBRACK] = ACTIONS(2514), - [anon_sym_static] = ACTIONS(2514), - [anon_sym_register] = ACTIONS(2514), - [anon_sym_inline] = ACTIONS(2514), - [anon_sym_thread_local] = ACTIONS(2514), - [anon_sym_const] = ACTIONS(2514), - [anon_sym_volatile] = ACTIONS(2514), - [anon_sym_restrict] = ACTIONS(2514), - [anon_sym__Atomic] = ACTIONS(2514), - [anon_sym_mutable] = ACTIONS(2514), - [anon_sym_constexpr] = ACTIONS(2514), - [anon_sym_constinit] = ACTIONS(2514), - [anon_sym_consteval] = ACTIONS(2514), - [anon_sym_signed] = ACTIONS(2514), - [anon_sym_unsigned] = ACTIONS(2514), - [anon_sym_long] = ACTIONS(2514), - [anon_sym_short] = ACTIONS(2514), - [sym_primitive_type] = ACTIONS(2514), - [anon_sym_enum] = ACTIONS(2514), - [anon_sym_class] = ACTIONS(2514), - [anon_sym_struct] = ACTIONS(2514), - [anon_sym_union] = ACTIONS(2514), - [anon_sym_if] = ACTIONS(2514), - [anon_sym_else] = ACTIONS(2514), - [anon_sym_switch] = ACTIONS(2514), - [anon_sym_case] = ACTIONS(2514), - [anon_sym_default] = ACTIONS(2514), - [anon_sym_while] = ACTIONS(2514), - [anon_sym_do] = ACTIONS(2514), - [anon_sym_for] = ACTIONS(2514), - [anon_sym_return] = ACTIONS(2514), - [anon_sym_break] = ACTIONS(2514), - [anon_sym_continue] = ACTIONS(2514), - [anon_sym_goto] = ACTIONS(2514), - [anon_sym_not] = ACTIONS(2514), - [anon_sym_compl] = ACTIONS(2514), - [anon_sym_DASH_DASH] = ACTIONS(2516), - [anon_sym_PLUS_PLUS] = ACTIONS(2516), - [anon_sym_sizeof] = ACTIONS(2514), - [sym_number_literal] = ACTIONS(2516), - [anon_sym_L_SQUOTE] = ACTIONS(2516), - [anon_sym_u_SQUOTE] = ACTIONS(2516), - [anon_sym_U_SQUOTE] = ACTIONS(2516), - [anon_sym_u8_SQUOTE] = ACTIONS(2516), - [anon_sym_SQUOTE] = ACTIONS(2516), - [anon_sym_L_DQUOTE] = ACTIONS(2516), - [anon_sym_u_DQUOTE] = ACTIONS(2516), - [anon_sym_U_DQUOTE] = ACTIONS(2516), - [anon_sym_u8_DQUOTE] = ACTIONS(2516), - [anon_sym_DQUOTE] = ACTIONS(2516), - [sym_true] = ACTIONS(2514), - [sym_false] = ACTIONS(2514), - [sym_null] = ACTIONS(2514), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2514), - [anon_sym_decltype] = ACTIONS(2514), - [anon_sym_virtual] = ACTIONS(2514), - [anon_sym_explicit] = ACTIONS(2514), - [anon_sym_typename] = ACTIONS(2514), - [anon_sym_template] = ACTIONS(2514), - [anon_sym_operator] = ACTIONS(2514), - [anon_sym_try] = ACTIONS(2514), - [anon_sym_delete] = ACTIONS(2514), - [anon_sym_throw] = ACTIONS(2514), - [anon_sym_namespace] = ACTIONS(2514), - [anon_sym_using] = ACTIONS(2514), - [anon_sym_static_assert] = ACTIONS(2514), - [anon_sym_concept] = ACTIONS(2514), - [anon_sym_co_return] = ACTIONS(2514), - [anon_sym_co_yield] = ACTIONS(2514), - [anon_sym_R_DQUOTE] = ACTIONS(2516), - [anon_sym_LR_DQUOTE] = ACTIONS(2516), - [anon_sym_uR_DQUOTE] = ACTIONS(2516), - [anon_sym_UR_DQUOTE] = ACTIONS(2516), - [anon_sym_u8R_DQUOTE] = ACTIONS(2516), - [anon_sym_co_await] = ACTIONS(2514), - [anon_sym_new] = ACTIONS(2514), - [anon_sym_requires] = ACTIONS(2514), - [sym_this] = ACTIONS(2514), - [sym_nullptr] = ACTIONS(2514), + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token2] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, [824] = { - [sym_identifier] = ACTIONS(2462), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2464), - [anon_sym_AMP] = ACTIONS(2462), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_explicit] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_operator] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_namespace] = ACTIONS(2462), - [anon_sym_using] = ACTIONS(2462), - [anon_sym_static_assert] = ACTIONS(2462), - [anon_sym_concept] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_identifier] = ACTIONS(3024), + [aux_sym_preproc_include_token1] = ACTIONS(3024), + [aux_sym_preproc_def_token1] = ACTIONS(3024), + [aux_sym_preproc_if_token1] = ACTIONS(3024), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3024), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3024), + [sym_preproc_directive] = ACTIONS(3024), + [anon_sym_LPAREN2] = ACTIONS(3026), + [anon_sym_BANG] = ACTIONS(3026), + [anon_sym_TILDE] = ACTIONS(3026), + [anon_sym_DASH] = ACTIONS(3024), + [anon_sym_PLUS] = ACTIONS(3024), + [anon_sym_STAR] = ACTIONS(3026), + [anon_sym_AMP_AMP] = ACTIONS(3026), + [anon_sym_AMP] = ACTIONS(3024), + [anon_sym_SEMI] = ACTIONS(3026), + [anon_sym_typedef] = ACTIONS(3024), + [anon_sym_extern] = ACTIONS(3024), + [anon_sym___attribute__] = ACTIONS(3024), + [anon_sym_COLON_COLON] = ACTIONS(3026), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3026), + [anon_sym___declspec] = ACTIONS(3024), + [anon_sym___based] = ACTIONS(3024), + [anon_sym___cdecl] = ACTIONS(3024), + [anon_sym___clrcall] = ACTIONS(3024), + [anon_sym___stdcall] = ACTIONS(3024), + [anon_sym___fastcall] = ACTIONS(3024), + [anon_sym___thiscall] = ACTIONS(3024), + [anon_sym___vectorcall] = ACTIONS(3024), + [anon_sym_LBRACE] = ACTIONS(3026), + [anon_sym_RBRACE] = ACTIONS(3026), + [anon_sym_LBRACK] = ACTIONS(3024), + [anon_sym_static] = ACTIONS(3024), + [anon_sym_register] = ACTIONS(3024), + [anon_sym_inline] = ACTIONS(3024), + [anon_sym_thread_local] = ACTIONS(3024), + [anon_sym_const] = ACTIONS(3024), + [anon_sym_constexpr] = ACTIONS(3024), + [anon_sym_volatile] = ACTIONS(3024), + [anon_sym_restrict] = ACTIONS(3024), + [anon_sym___restrict__] = ACTIONS(3024), + [anon_sym__Atomic] = ACTIONS(3024), + [anon_sym__Noreturn] = ACTIONS(3024), + [anon_sym_noreturn] = ACTIONS(3024), + [anon_sym_mutable] = ACTIONS(3024), + [anon_sym_constinit] = ACTIONS(3024), + [anon_sym_consteval] = ACTIONS(3024), + [anon_sym_signed] = ACTIONS(3024), + [anon_sym_unsigned] = ACTIONS(3024), + [anon_sym_long] = ACTIONS(3024), + [anon_sym_short] = ACTIONS(3024), + [sym_primitive_type] = ACTIONS(3024), + [anon_sym_enum] = ACTIONS(3024), + [anon_sym_class] = ACTIONS(3024), + [anon_sym_struct] = ACTIONS(3024), + [anon_sym_union] = ACTIONS(3024), + [anon_sym_if] = ACTIONS(3024), + [anon_sym_else] = ACTIONS(3024), + [anon_sym_switch] = ACTIONS(3024), + [anon_sym_case] = ACTIONS(3024), + [anon_sym_default] = ACTIONS(3024), + [anon_sym_while] = ACTIONS(3024), + [anon_sym_do] = ACTIONS(3024), + [anon_sym_for] = ACTIONS(3024), + [anon_sym_return] = ACTIONS(3024), + [anon_sym_break] = ACTIONS(3024), + [anon_sym_continue] = ACTIONS(3024), + [anon_sym_goto] = ACTIONS(3024), + [anon_sym_not] = ACTIONS(3024), + [anon_sym_compl] = ACTIONS(3024), + [anon_sym_DASH_DASH] = ACTIONS(3026), + [anon_sym_PLUS_PLUS] = ACTIONS(3026), + [anon_sym_sizeof] = ACTIONS(3024), + [anon_sym_offsetof] = ACTIONS(3024), + [anon_sym__Generic] = ACTIONS(3024), + [anon_sym_asm] = ACTIONS(3024), + [anon_sym___asm__] = ACTIONS(3024), + [sym_number_literal] = ACTIONS(3026), + [anon_sym_L_SQUOTE] = ACTIONS(3026), + [anon_sym_u_SQUOTE] = ACTIONS(3026), + [anon_sym_U_SQUOTE] = ACTIONS(3026), + [anon_sym_u8_SQUOTE] = ACTIONS(3026), + [anon_sym_SQUOTE] = ACTIONS(3026), + [anon_sym_L_DQUOTE] = ACTIONS(3026), + [anon_sym_u_DQUOTE] = ACTIONS(3026), + [anon_sym_U_DQUOTE] = ACTIONS(3026), + [anon_sym_u8_DQUOTE] = ACTIONS(3026), + [anon_sym_DQUOTE] = ACTIONS(3026), + [sym_true] = ACTIONS(3024), + [sym_false] = ACTIONS(3024), + [anon_sym_NULL] = ACTIONS(3024), + [anon_sym_nullptr] = ACTIONS(3024), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3024), + [anon_sym_decltype] = ACTIONS(3024), + [anon_sym_virtual] = ACTIONS(3024), + [anon_sym_explicit] = ACTIONS(3024), + [anon_sym_typename] = ACTIONS(3024), + [anon_sym_template] = ACTIONS(3024), + [anon_sym_operator] = ACTIONS(3024), + [anon_sym_try] = ACTIONS(3024), + [anon_sym_delete] = ACTIONS(3024), + [anon_sym_throw] = ACTIONS(3024), + [anon_sym_namespace] = ACTIONS(3024), + [anon_sym_using] = ACTIONS(3024), + [anon_sym_static_assert] = ACTIONS(3024), + [anon_sym_concept] = ACTIONS(3024), + [anon_sym_co_return] = ACTIONS(3024), + [anon_sym_co_yield] = ACTIONS(3024), + [anon_sym_R_DQUOTE] = ACTIONS(3026), + [anon_sym_LR_DQUOTE] = ACTIONS(3026), + [anon_sym_uR_DQUOTE] = ACTIONS(3026), + [anon_sym_UR_DQUOTE] = ACTIONS(3026), + [anon_sym_u8R_DQUOTE] = ACTIONS(3026), + [anon_sym_co_await] = ACTIONS(3024), + [anon_sym_new] = ACTIONS(3024), + [anon_sym_requires] = ACTIONS(3024), + [sym_this] = ACTIONS(3024), }, [825] = { - [sym_identifier] = ACTIONS(2462), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2464), - [anon_sym_AMP] = ACTIONS(2462), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_explicit] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_operator] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_namespace] = ACTIONS(2462), - [anon_sym_using] = ACTIONS(2462), - [anon_sym_static_assert] = ACTIONS(2462), - [anon_sym_concept] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_RBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, [826] = { - [sym_identifier] = ACTIONS(2462), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2464), - [anon_sym_AMP] = ACTIONS(2462), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_explicit] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_operator] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_namespace] = ACTIONS(2462), - [anon_sym_using] = ACTIONS(2462), - [anon_sym_static_assert] = ACTIONS(2462), - [anon_sym_concept] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_RBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, [827] = { - [sym_identifier] = ACTIONS(2462), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2464), - [anon_sym_AMP] = ACTIONS(2462), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_explicit] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_operator] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_namespace] = ACTIONS(2462), - [anon_sym_using] = ACTIONS(2462), - [anon_sym_static_assert] = ACTIONS(2462), - [anon_sym_concept] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_RBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, [828] = { - [sym_identifier] = ACTIONS(2462), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2464), - [anon_sym_AMP] = ACTIONS(2462), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_explicit] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_operator] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_namespace] = ACTIONS(2462), - [anon_sym_using] = ACTIONS(2462), - [anon_sym_static_assert] = ACTIONS(2462), - [anon_sym_concept] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_RBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, [829] = { - [sym_identifier] = ACTIONS(2462), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2464), - [anon_sym_AMP] = ACTIONS(2462), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_explicit] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_operator] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_namespace] = ACTIONS(2462), - [anon_sym_using] = ACTIONS(2462), - [anon_sym_static_assert] = ACTIONS(2462), - [anon_sym_concept] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [ts_builtin_sym_end] = ACTIONS(2982), + [sym_identifier] = ACTIONS(2980), + [aux_sym_preproc_include_token1] = ACTIONS(2980), + [aux_sym_preproc_def_token1] = ACTIONS(2980), + [aux_sym_preproc_if_token1] = ACTIONS(2980), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2980), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2980), + [sym_preproc_directive] = ACTIONS(2980), + [anon_sym_LPAREN2] = ACTIONS(2982), + [anon_sym_BANG] = ACTIONS(2982), + [anon_sym_TILDE] = ACTIONS(2982), + [anon_sym_DASH] = ACTIONS(2980), + [anon_sym_PLUS] = ACTIONS(2980), + [anon_sym_STAR] = ACTIONS(2982), + [anon_sym_AMP_AMP] = ACTIONS(2982), + [anon_sym_AMP] = ACTIONS(2980), + [anon_sym_SEMI] = ACTIONS(2982), + [anon_sym_typedef] = ACTIONS(2980), + [anon_sym_extern] = ACTIONS(2980), + [anon_sym___attribute__] = ACTIONS(2980), + [anon_sym_COLON_COLON] = ACTIONS(2982), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2982), + [anon_sym___declspec] = ACTIONS(2980), + [anon_sym___based] = ACTIONS(2980), + [anon_sym___cdecl] = ACTIONS(2980), + [anon_sym___clrcall] = ACTIONS(2980), + [anon_sym___stdcall] = ACTIONS(2980), + [anon_sym___fastcall] = ACTIONS(2980), + [anon_sym___thiscall] = ACTIONS(2980), + [anon_sym___vectorcall] = ACTIONS(2980), + [anon_sym_LBRACE] = ACTIONS(2982), + [anon_sym_LBRACK] = ACTIONS(2980), + [anon_sym_static] = ACTIONS(2980), + [anon_sym_register] = ACTIONS(2980), + [anon_sym_inline] = ACTIONS(2980), + [anon_sym_thread_local] = ACTIONS(2980), + [anon_sym_const] = ACTIONS(2980), + [anon_sym_constexpr] = ACTIONS(2980), + [anon_sym_volatile] = ACTIONS(2980), + [anon_sym_restrict] = ACTIONS(2980), + [anon_sym___restrict__] = ACTIONS(2980), + [anon_sym__Atomic] = ACTIONS(2980), + [anon_sym__Noreturn] = ACTIONS(2980), + [anon_sym_noreturn] = ACTIONS(2980), + [anon_sym_mutable] = ACTIONS(2980), + [anon_sym_constinit] = ACTIONS(2980), + [anon_sym_consteval] = ACTIONS(2980), + [anon_sym_signed] = ACTIONS(2980), + [anon_sym_unsigned] = ACTIONS(2980), + [anon_sym_long] = ACTIONS(2980), + [anon_sym_short] = ACTIONS(2980), + [sym_primitive_type] = ACTIONS(2980), + [anon_sym_enum] = ACTIONS(2980), + [anon_sym_class] = ACTIONS(2980), + [anon_sym_struct] = ACTIONS(2980), + [anon_sym_union] = ACTIONS(2980), + [anon_sym_if] = ACTIONS(2980), + [anon_sym_else] = ACTIONS(2980), + [anon_sym_switch] = ACTIONS(2980), + [anon_sym_case] = ACTIONS(2980), + [anon_sym_default] = ACTIONS(2980), + [anon_sym_while] = ACTIONS(2980), + [anon_sym_do] = ACTIONS(2980), + [anon_sym_for] = ACTIONS(2980), + [anon_sym_return] = ACTIONS(2980), + [anon_sym_break] = ACTIONS(2980), + [anon_sym_continue] = ACTIONS(2980), + [anon_sym_goto] = ACTIONS(2980), + [anon_sym_not] = ACTIONS(2980), + [anon_sym_compl] = ACTIONS(2980), + [anon_sym_DASH_DASH] = ACTIONS(2982), + [anon_sym_PLUS_PLUS] = ACTIONS(2982), + [anon_sym_sizeof] = ACTIONS(2980), + [anon_sym_offsetof] = ACTIONS(2980), + [anon_sym__Generic] = ACTIONS(2980), + [anon_sym_asm] = ACTIONS(2980), + [anon_sym___asm__] = ACTIONS(2980), + [sym_number_literal] = ACTIONS(2982), + [anon_sym_L_SQUOTE] = ACTIONS(2982), + [anon_sym_u_SQUOTE] = ACTIONS(2982), + [anon_sym_U_SQUOTE] = ACTIONS(2982), + [anon_sym_u8_SQUOTE] = ACTIONS(2982), + [anon_sym_SQUOTE] = ACTIONS(2982), + [anon_sym_L_DQUOTE] = ACTIONS(2982), + [anon_sym_u_DQUOTE] = ACTIONS(2982), + [anon_sym_U_DQUOTE] = ACTIONS(2982), + [anon_sym_u8_DQUOTE] = ACTIONS(2982), + [anon_sym_DQUOTE] = ACTIONS(2982), + [sym_true] = ACTIONS(2980), + [sym_false] = ACTIONS(2980), + [anon_sym_NULL] = ACTIONS(2980), + [anon_sym_nullptr] = ACTIONS(2980), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2980), + [anon_sym_decltype] = ACTIONS(2980), + [anon_sym_virtual] = ACTIONS(2980), + [anon_sym_explicit] = ACTIONS(2980), + [anon_sym_typename] = ACTIONS(2980), + [anon_sym_template] = ACTIONS(2980), + [anon_sym_operator] = ACTIONS(2980), + [anon_sym_try] = ACTIONS(2980), + [anon_sym_delete] = ACTIONS(2980), + [anon_sym_throw] = ACTIONS(2980), + [anon_sym_namespace] = ACTIONS(2980), + [anon_sym_using] = ACTIONS(2980), + [anon_sym_static_assert] = ACTIONS(2980), + [anon_sym_concept] = ACTIONS(2980), + [anon_sym_co_return] = ACTIONS(2980), + [anon_sym_co_yield] = ACTIONS(2980), + [anon_sym_R_DQUOTE] = ACTIONS(2982), + [anon_sym_LR_DQUOTE] = ACTIONS(2982), + [anon_sym_uR_DQUOTE] = ACTIONS(2982), + [anon_sym_UR_DQUOTE] = ACTIONS(2982), + [anon_sym_u8R_DQUOTE] = ACTIONS(2982), + [anon_sym_co_await] = ACTIONS(2980), + [anon_sym_new] = ACTIONS(2980), + [anon_sym_requires] = ACTIONS(2980), + [sym_this] = ACTIONS(2980), }, [830] = { - [sym_identifier] = ACTIONS(2462), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2464), - [anon_sym_AMP] = ACTIONS(2462), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_explicit] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_operator] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_namespace] = ACTIONS(2462), - [anon_sym_using] = ACTIONS(2462), - [anon_sym_static_assert] = ACTIONS(2462), - [anon_sym_concept] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [ts_builtin_sym_end] = ACTIONS(2986), + [sym_identifier] = ACTIONS(2984), + [aux_sym_preproc_include_token1] = ACTIONS(2984), + [aux_sym_preproc_def_token1] = ACTIONS(2984), + [aux_sym_preproc_if_token1] = ACTIONS(2984), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2984), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2984), + [sym_preproc_directive] = ACTIONS(2984), + [anon_sym_LPAREN2] = ACTIONS(2986), + [anon_sym_BANG] = ACTIONS(2986), + [anon_sym_TILDE] = ACTIONS(2986), + [anon_sym_DASH] = ACTIONS(2984), + [anon_sym_PLUS] = ACTIONS(2984), + [anon_sym_STAR] = ACTIONS(2986), + [anon_sym_AMP_AMP] = ACTIONS(2986), + [anon_sym_AMP] = ACTIONS(2984), + [anon_sym_SEMI] = ACTIONS(2986), + [anon_sym_typedef] = ACTIONS(2984), + [anon_sym_extern] = ACTIONS(2984), + [anon_sym___attribute__] = ACTIONS(2984), + [anon_sym_COLON_COLON] = ACTIONS(2986), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2986), + [anon_sym___declspec] = ACTIONS(2984), + [anon_sym___based] = ACTIONS(2984), + [anon_sym___cdecl] = ACTIONS(2984), + [anon_sym___clrcall] = ACTIONS(2984), + [anon_sym___stdcall] = ACTIONS(2984), + [anon_sym___fastcall] = ACTIONS(2984), + [anon_sym___thiscall] = ACTIONS(2984), + [anon_sym___vectorcall] = ACTIONS(2984), + [anon_sym_LBRACE] = ACTIONS(2986), + [anon_sym_LBRACK] = ACTIONS(2984), + [anon_sym_static] = ACTIONS(2984), + [anon_sym_register] = ACTIONS(2984), + [anon_sym_inline] = ACTIONS(2984), + [anon_sym_thread_local] = ACTIONS(2984), + [anon_sym_const] = ACTIONS(2984), + [anon_sym_constexpr] = ACTIONS(2984), + [anon_sym_volatile] = ACTIONS(2984), + [anon_sym_restrict] = ACTIONS(2984), + [anon_sym___restrict__] = ACTIONS(2984), + [anon_sym__Atomic] = ACTIONS(2984), + [anon_sym__Noreturn] = ACTIONS(2984), + [anon_sym_noreturn] = ACTIONS(2984), + [anon_sym_mutable] = ACTIONS(2984), + [anon_sym_constinit] = ACTIONS(2984), + [anon_sym_consteval] = ACTIONS(2984), + [anon_sym_signed] = ACTIONS(2984), + [anon_sym_unsigned] = ACTIONS(2984), + [anon_sym_long] = ACTIONS(2984), + [anon_sym_short] = ACTIONS(2984), + [sym_primitive_type] = ACTIONS(2984), + [anon_sym_enum] = ACTIONS(2984), + [anon_sym_class] = ACTIONS(2984), + [anon_sym_struct] = ACTIONS(2984), + [anon_sym_union] = ACTIONS(2984), + [anon_sym_if] = ACTIONS(2984), + [anon_sym_else] = ACTIONS(2984), + [anon_sym_switch] = ACTIONS(2984), + [anon_sym_case] = ACTIONS(2984), + [anon_sym_default] = ACTIONS(2984), + [anon_sym_while] = ACTIONS(2984), + [anon_sym_do] = ACTIONS(2984), + [anon_sym_for] = ACTIONS(2984), + [anon_sym_return] = ACTIONS(2984), + [anon_sym_break] = ACTIONS(2984), + [anon_sym_continue] = ACTIONS(2984), + [anon_sym_goto] = ACTIONS(2984), + [anon_sym_not] = ACTIONS(2984), + [anon_sym_compl] = ACTIONS(2984), + [anon_sym_DASH_DASH] = ACTIONS(2986), + [anon_sym_PLUS_PLUS] = ACTIONS(2986), + [anon_sym_sizeof] = ACTIONS(2984), + [anon_sym_offsetof] = ACTIONS(2984), + [anon_sym__Generic] = ACTIONS(2984), + [anon_sym_asm] = ACTIONS(2984), + [anon_sym___asm__] = ACTIONS(2984), + [sym_number_literal] = ACTIONS(2986), + [anon_sym_L_SQUOTE] = ACTIONS(2986), + [anon_sym_u_SQUOTE] = ACTIONS(2986), + [anon_sym_U_SQUOTE] = ACTIONS(2986), + [anon_sym_u8_SQUOTE] = ACTIONS(2986), + [anon_sym_SQUOTE] = ACTIONS(2986), + [anon_sym_L_DQUOTE] = ACTIONS(2986), + [anon_sym_u_DQUOTE] = ACTIONS(2986), + [anon_sym_U_DQUOTE] = ACTIONS(2986), + [anon_sym_u8_DQUOTE] = ACTIONS(2986), + [anon_sym_DQUOTE] = ACTIONS(2986), + [sym_true] = ACTIONS(2984), + [sym_false] = ACTIONS(2984), + [anon_sym_NULL] = ACTIONS(2984), + [anon_sym_nullptr] = ACTIONS(2984), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2984), + [anon_sym_decltype] = ACTIONS(2984), + [anon_sym_virtual] = ACTIONS(2984), + [anon_sym_explicit] = ACTIONS(2984), + [anon_sym_typename] = ACTIONS(2984), + [anon_sym_template] = ACTIONS(2984), + [anon_sym_operator] = ACTIONS(2984), + [anon_sym_try] = ACTIONS(2984), + [anon_sym_delete] = ACTIONS(2984), + [anon_sym_throw] = ACTIONS(2984), + [anon_sym_namespace] = ACTIONS(2984), + [anon_sym_using] = ACTIONS(2984), + [anon_sym_static_assert] = ACTIONS(2984), + [anon_sym_concept] = ACTIONS(2984), + [anon_sym_co_return] = ACTIONS(2984), + [anon_sym_co_yield] = ACTIONS(2984), + [anon_sym_R_DQUOTE] = ACTIONS(2986), + [anon_sym_LR_DQUOTE] = ACTIONS(2986), + [anon_sym_uR_DQUOTE] = ACTIONS(2986), + [anon_sym_UR_DQUOTE] = ACTIONS(2986), + [anon_sym_u8R_DQUOTE] = ACTIONS(2986), + [anon_sym_co_await] = ACTIONS(2984), + [anon_sym_new] = ACTIONS(2984), + [anon_sym_requires] = ACTIONS(2984), + [sym_this] = ACTIONS(2984), }, [831] = { - [sym_identifier] = ACTIONS(2462), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2464), - [anon_sym_AMP] = ACTIONS(2462), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_explicit] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_operator] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_namespace] = ACTIONS(2462), - [anon_sym_using] = ACTIONS(2462), - [anon_sym_static_assert] = ACTIONS(2462), - [anon_sym_concept] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_RBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, [832] = { - [sym_identifier] = ACTIONS(2462), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2464), - [anon_sym_AMP] = ACTIONS(2462), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_explicit] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_operator] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_namespace] = ACTIONS(2462), - [anon_sym_using] = ACTIONS(2462), - [anon_sym_static_assert] = ACTIONS(2462), - [anon_sym_concept] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_RBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, [833] = { - [sym_identifier] = ACTIONS(2462), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2464), - [anon_sym_AMP] = ACTIONS(2462), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_explicit] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_operator] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_namespace] = ACTIONS(2462), - [anon_sym_using] = ACTIONS(2462), - [anon_sym_static_assert] = ACTIONS(2462), - [anon_sym_concept] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_RBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, [834] = { - [sym_identifier] = ACTIONS(2462), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2464), - [anon_sym_AMP] = ACTIONS(2462), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_explicit] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_operator] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_namespace] = ACTIONS(2462), - [anon_sym_using] = ACTIONS(2462), - [anon_sym_static_assert] = ACTIONS(2462), - [anon_sym_concept] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_RBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, [835] = { - [sym_identifier] = ACTIONS(2462), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2464), - [anon_sym_AMP] = ACTIONS(2462), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_explicit] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_operator] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_namespace] = ACTIONS(2462), - [anon_sym_using] = ACTIONS(2462), - [anon_sym_static_assert] = ACTIONS(2462), - [anon_sym_concept] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_RBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, [836] = { - [sym_identifier] = ACTIONS(2462), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2464), - [anon_sym_AMP] = ACTIONS(2462), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_explicit] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_operator] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_namespace] = ACTIONS(2462), - [anon_sym_using] = ACTIONS(2462), - [anon_sym_static_assert] = ACTIONS(2462), - [anon_sym_concept] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_RBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, [837] = { - [sym_identifier] = ACTIONS(2462), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2464), - [anon_sym_AMP] = ACTIONS(2462), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_explicit] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_operator] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_namespace] = ACTIONS(2462), - [anon_sym_using] = ACTIONS(2462), - [anon_sym_static_assert] = ACTIONS(2462), - [anon_sym_concept] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_RBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, [838] = { - [sym_identifier] = ACTIONS(2462), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2464), - [anon_sym_AMP] = ACTIONS(2462), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_explicit] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_operator] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_namespace] = ACTIONS(2462), - [anon_sym_using] = ACTIONS(2462), - [anon_sym_static_assert] = ACTIONS(2462), - [anon_sym_concept] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_RBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, [839] = { - [sym_identifier] = ACTIONS(2462), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2464), - [anon_sym_AMP] = ACTIONS(2462), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_explicit] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_operator] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_namespace] = ACTIONS(2462), - [anon_sym_using] = ACTIONS(2462), - [anon_sym_static_assert] = ACTIONS(2462), - [anon_sym_concept] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_RBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, [840] = { - [sym_identifier] = ACTIONS(2602), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2604), - [anon_sym_AMP] = ACTIONS(2602), - [anon_sym_SEMI] = ACTIONS(2604), - [anon_sym_typedef] = ACTIONS(2602), - [anon_sym_extern] = ACTIONS(2602), - [anon_sym___attribute__] = ACTIONS(2602), - [anon_sym_COLON_COLON] = ACTIONS(2604), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2604), - [anon_sym___declspec] = ACTIONS(2602), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2602), - [anon_sym_static] = ACTIONS(2602), - [anon_sym_register] = ACTIONS(2602), - [anon_sym_inline] = ACTIONS(2602), - [anon_sym_thread_local] = ACTIONS(2602), - [anon_sym_const] = ACTIONS(2602), - [anon_sym_volatile] = ACTIONS(2602), - [anon_sym_restrict] = ACTIONS(2602), - [anon_sym__Atomic] = ACTIONS(2602), - [anon_sym_mutable] = ACTIONS(2602), - [anon_sym_constexpr] = ACTIONS(2602), - [anon_sym_constinit] = ACTIONS(2602), - [anon_sym_consteval] = ACTIONS(2602), - [anon_sym_signed] = ACTIONS(2602), - [anon_sym_unsigned] = ACTIONS(2602), - [anon_sym_long] = ACTIONS(2602), - [anon_sym_short] = ACTIONS(2602), - [sym_primitive_type] = ACTIONS(2602), - [anon_sym_enum] = ACTIONS(2602), - [anon_sym_class] = ACTIONS(2602), - [anon_sym_struct] = ACTIONS(2602), - [anon_sym_union] = ACTIONS(2602), - [anon_sym_if] = ACTIONS(2602), - [anon_sym_else] = 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_return] = ACTIONS(2602), - [anon_sym_break] = ACTIONS(2602), - [anon_sym_continue] = ACTIONS(2602), - [anon_sym_goto] = ACTIONS(2602), - [anon_sym_not] = ACTIONS(2602), - [anon_sym_compl] = ACTIONS(2602), - [anon_sym_DASH_DASH] = ACTIONS(2604), - [anon_sym_PLUS_PLUS] = ACTIONS(2604), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2604), - [anon_sym_u_DQUOTE] = ACTIONS(2604), - [anon_sym_U_DQUOTE] = ACTIONS(2604), - [anon_sym_u8_DQUOTE] = ACTIONS(2604), - [anon_sym_DQUOTE] = ACTIONS(2604), - [sym_true] = ACTIONS(2602), - [sym_false] = ACTIONS(2602), - [sym_null] = ACTIONS(2602), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2602), - [anon_sym_decltype] = ACTIONS(2602), - [anon_sym_virtual] = ACTIONS(2602), - [anon_sym_explicit] = ACTIONS(2602), - [anon_sym_typename] = ACTIONS(2602), - [anon_sym_template] = ACTIONS(2602), - [anon_sym_operator] = ACTIONS(2602), - [anon_sym_try] = ACTIONS(2602), - [anon_sym_delete] = ACTIONS(2602), - [anon_sym_throw] = ACTIONS(2602), - [anon_sym_namespace] = ACTIONS(2602), - [anon_sym_using] = ACTIONS(2602), - [anon_sym_static_assert] = ACTIONS(2602), - [anon_sym_concept] = ACTIONS(2602), - [anon_sym_co_return] = ACTIONS(2602), - [anon_sym_co_yield] = ACTIONS(2602), - [anon_sym_R_DQUOTE] = ACTIONS(2604), - [anon_sym_LR_DQUOTE] = ACTIONS(2604), - [anon_sym_uR_DQUOTE] = ACTIONS(2604), - [anon_sym_UR_DQUOTE] = ACTIONS(2604), - [anon_sym_u8R_DQUOTE] = ACTIONS(2604), - [anon_sym_co_await] = ACTIONS(2602), - [anon_sym_new] = ACTIONS(2602), - [anon_sym_requires] = ACTIONS(2602), - [sym_this] = ACTIONS(2602), - [sym_nullptr] = ACTIONS(2602), + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_RBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, [841] = { - [ts_builtin_sym_end] = ACTIONS(2524), - [sym_identifier] = ACTIONS(2522), - [aux_sym_preproc_include_token1] = ACTIONS(2522), - [aux_sym_preproc_def_token1] = ACTIONS(2522), - [aux_sym_preproc_if_token1] = ACTIONS(2522), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2522), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2522), - [sym_preproc_directive] = ACTIONS(2522), - [anon_sym_LPAREN2] = ACTIONS(2524), - [anon_sym_BANG] = ACTIONS(2524), - [anon_sym_TILDE] = ACTIONS(2524), - [anon_sym_DASH] = ACTIONS(2522), - [anon_sym_PLUS] = ACTIONS(2522), - [anon_sym_STAR] = ACTIONS(2524), - [anon_sym_AMP_AMP] = ACTIONS(2524), - [anon_sym_AMP] = ACTIONS(2522), - [anon_sym_SEMI] = ACTIONS(2524), - [anon_sym_typedef] = ACTIONS(2522), - [anon_sym_extern] = ACTIONS(2522), - [anon_sym___attribute__] = ACTIONS(2522), - [anon_sym_COLON_COLON] = ACTIONS(2524), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2524), - [anon_sym___declspec] = ACTIONS(2522), - [anon_sym___based] = ACTIONS(2522), - [anon_sym___cdecl] = ACTIONS(2522), - [anon_sym___clrcall] = ACTIONS(2522), - [anon_sym___stdcall] = ACTIONS(2522), - [anon_sym___fastcall] = ACTIONS(2522), - [anon_sym___thiscall] = ACTIONS(2522), - [anon_sym___vectorcall] = ACTIONS(2522), - [anon_sym_LBRACE] = ACTIONS(2524), - [anon_sym_LBRACK] = ACTIONS(2522), - [anon_sym_static] = ACTIONS(2522), - [anon_sym_register] = ACTIONS(2522), - [anon_sym_inline] = ACTIONS(2522), - [anon_sym_thread_local] = ACTIONS(2522), - [anon_sym_const] = ACTIONS(2522), - [anon_sym_volatile] = ACTIONS(2522), - [anon_sym_restrict] = ACTIONS(2522), - [anon_sym__Atomic] = ACTIONS(2522), - [anon_sym_mutable] = ACTIONS(2522), - [anon_sym_constexpr] = ACTIONS(2522), - [anon_sym_constinit] = ACTIONS(2522), - [anon_sym_consteval] = ACTIONS(2522), - [anon_sym_signed] = ACTIONS(2522), - [anon_sym_unsigned] = ACTIONS(2522), - [anon_sym_long] = ACTIONS(2522), - [anon_sym_short] = ACTIONS(2522), - [sym_primitive_type] = ACTIONS(2522), - [anon_sym_enum] = ACTIONS(2522), - [anon_sym_class] = ACTIONS(2522), - [anon_sym_struct] = ACTIONS(2522), - [anon_sym_union] = ACTIONS(2522), - [anon_sym_if] = ACTIONS(2522), - [anon_sym_else] = ACTIONS(2522), - [anon_sym_switch] = ACTIONS(2522), - [anon_sym_case] = ACTIONS(2522), - [anon_sym_default] = ACTIONS(2522), - [anon_sym_while] = ACTIONS(2522), - [anon_sym_do] = ACTIONS(2522), - [anon_sym_for] = ACTIONS(2522), - [anon_sym_return] = ACTIONS(2522), - [anon_sym_break] = ACTIONS(2522), - [anon_sym_continue] = ACTIONS(2522), - [anon_sym_goto] = ACTIONS(2522), - [anon_sym_not] = ACTIONS(2522), - [anon_sym_compl] = ACTIONS(2522), - [anon_sym_DASH_DASH] = ACTIONS(2524), - [anon_sym_PLUS_PLUS] = ACTIONS(2524), - [anon_sym_sizeof] = ACTIONS(2522), - [sym_number_literal] = ACTIONS(2524), - [anon_sym_L_SQUOTE] = ACTIONS(2524), - [anon_sym_u_SQUOTE] = ACTIONS(2524), - [anon_sym_U_SQUOTE] = ACTIONS(2524), - [anon_sym_u8_SQUOTE] = ACTIONS(2524), - [anon_sym_SQUOTE] = ACTIONS(2524), - [anon_sym_L_DQUOTE] = ACTIONS(2524), - [anon_sym_u_DQUOTE] = ACTIONS(2524), - [anon_sym_U_DQUOTE] = ACTIONS(2524), - [anon_sym_u8_DQUOTE] = ACTIONS(2524), - [anon_sym_DQUOTE] = ACTIONS(2524), - [sym_true] = ACTIONS(2522), - [sym_false] = ACTIONS(2522), - [sym_null] = ACTIONS(2522), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2522), - [anon_sym_decltype] = ACTIONS(2522), - [anon_sym_virtual] = ACTIONS(2522), - [anon_sym_explicit] = ACTIONS(2522), - [anon_sym_typename] = ACTIONS(2522), - [anon_sym_template] = ACTIONS(2522), - [anon_sym_operator] = ACTIONS(2522), - [anon_sym_try] = ACTIONS(2522), - [anon_sym_delete] = ACTIONS(2522), - [anon_sym_throw] = ACTIONS(2522), - [anon_sym_namespace] = ACTIONS(2522), - [anon_sym_using] = ACTIONS(2522), - [anon_sym_static_assert] = ACTIONS(2522), - [anon_sym_concept] = ACTIONS(2522), - [anon_sym_co_return] = ACTIONS(2522), - [anon_sym_co_yield] = ACTIONS(2522), - [anon_sym_R_DQUOTE] = ACTIONS(2524), - [anon_sym_LR_DQUOTE] = ACTIONS(2524), - [anon_sym_uR_DQUOTE] = ACTIONS(2524), - [anon_sym_UR_DQUOTE] = ACTIONS(2524), - [anon_sym_u8R_DQUOTE] = ACTIONS(2524), - [anon_sym_co_await] = ACTIONS(2522), - [anon_sym_new] = ACTIONS(2522), - [anon_sym_requires] = ACTIONS(2522), - [sym_this] = ACTIONS(2522), - [sym_nullptr] = ACTIONS(2522), + [sym_identifier] = ACTIONS(3000), + [aux_sym_preproc_include_token1] = ACTIONS(3000), + [aux_sym_preproc_def_token1] = ACTIONS(3000), + [aux_sym_preproc_if_token1] = ACTIONS(3000), + [aux_sym_preproc_if_token2] = ACTIONS(3000), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3000), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3000), + [sym_preproc_directive] = ACTIONS(3000), + [anon_sym_LPAREN2] = ACTIONS(3002), + [anon_sym_BANG] = ACTIONS(3002), + [anon_sym_TILDE] = ACTIONS(3002), + [anon_sym_DASH] = ACTIONS(3000), + [anon_sym_PLUS] = ACTIONS(3000), + [anon_sym_STAR] = ACTIONS(3002), + [anon_sym_AMP_AMP] = ACTIONS(3002), + [anon_sym_AMP] = ACTIONS(3000), + [anon_sym_SEMI] = ACTIONS(3002), + [anon_sym_typedef] = ACTIONS(3000), + [anon_sym_extern] = ACTIONS(3000), + [anon_sym___attribute__] = ACTIONS(3000), + [anon_sym_COLON_COLON] = ACTIONS(3002), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3002), + [anon_sym___declspec] = ACTIONS(3000), + [anon_sym___based] = ACTIONS(3000), + [anon_sym___cdecl] = ACTIONS(3000), + [anon_sym___clrcall] = ACTIONS(3000), + [anon_sym___stdcall] = ACTIONS(3000), + [anon_sym___fastcall] = ACTIONS(3000), + [anon_sym___thiscall] = ACTIONS(3000), + [anon_sym___vectorcall] = ACTIONS(3000), + [anon_sym_LBRACE] = ACTIONS(3002), + [anon_sym_LBRACK] = ACTIONS(3000), + [anon_sym_static] = ACTIONS(3000), + [anon_sym_register] = ACTIONS(3000), + [anon_sym_inline] = ACTIONS(3000), + [anon_sym_thread_local] = ACTIONS(3000), + [anon_sym_const] = ACTIONS(3000), + [anon_sym_constexpr] = ACTIONS(3000), + [anon_sym_volatile] = ACTIONS(3000), + [anon_sym_restrict] = ACTIONS(3000), + [anon_sym___restrict__] = ACTIONS(3000), + [anon_sym__Atomic] = ACTIONS(3000), + [anon_sym__Noreturn] = ACTIONS(3000), + [anon_sym_noreturn] = ACTIONS(3000), + [anon_sym_mutable] = ACTIONS(3000), + [anon_sym_constinit] = ACTIONS(3000), + [anon_sym_consteval] = ACTIONS(3000), + [anon_sym_signed] = ACTIONS(3000), + [anon_sym_unsigned] = ACTIONS(3000), + [anon_sym_long] = ACTIONS(3000), + [anon_sym_short] = ACTIONS(3000), + [sym_primitive_type] = ACTIONS(3000), + [anon_sym_enum] = ACTIONS(3000), + [anon_sym_class] = ACTIONS(3000), + [anon_sym_struct] = ACTIONS(3000), + [anon_sym_union] = ACTIONS(3000), + [anon_sym_if] = ACTIONS(3000), + [anon_sym_else] = ACTIONS(3000), + [anon_sym_switch] = ACTIONS(3000), + [anon_sym_case] = ACTIONS(3000), + [anon_sym_default] = ACTIONS(3000), + [anon_sym_while] = ACTIONS(3000), + [anon_sym_do] = ACTIONS(3000), + [anon_sym_for] = ACTIONS(3000), + [anon_sym_return] = ACTIONS(3000), + [anon_sym_break] = ACTIONS(3000), + [anon_sym_continue] = ACTIONS(3000), + [anon_sym_goto] = ACTIONS(3000), + [anon_sym_not] = ACTIONS(3000), + [anon_sym_compl] = ACTIONS(3000), + [anon_sym_DASH_DASH] = ACTIONS(3002), + [anon_sym_PLUS_PLUS] = ACTIONS(3002), + [anon_sym_sizeof] = ACTIONS(3000), + [anon_sym_offsetof] = ACTIONS(3000), + [anon_sym__Generic] = ACTIONS(3000), + [anon_sym_asm] = ACTIONS(3000), + [anon_sym___asm__] = ACTIONS(3000), + [sym_number_literal] = ACTIONS(3002), + [anon_sym_L_SQUOTE] = ACTIONS(3002), + [anon_sym_u_SQUOTE] = ACTIONS(3002), + [anon_sym_U_SQUOTE] = ACTIONS(3002), + [anon_sym_u8_SQUOTE] = ACTIONS(3002), + [anon_sym_SQUOTE] = ACTIONS(3002), + [anon_sym_L_DQUOTE] = ACTIONS(3002), + [anon_sym_u_DQUOTE] = ACTIONS(3002), + [anon_sym_U_DQUOTE] = ACTIONS(3002), + [anon_sym_u8_DQUOTE] = ACTIONS(3002), + [anon_sym_DQUOTE] = ACTIONS(3002), + [sym_true] = ACTIONS(3000), + [sym_false] = ACTIONS(3000), + [anon_sym_NULL] = ACTIONS(3000), + [anon_sym_nullptr] = ACTIONS(3000), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3000), + [anon_sym_decltype] = ACTIONS(3000), + [anon_sym_virtual] = ACTIONS(3000), + [anon_sym_explicit] = ACTIONS(3000), + [anon_sym_typename] = ACTIONS(3000), + [anon_sym_template] = ACTIONS(3000), + [anon_sym_operator] = ACTIONS(3000), + [anon_sym_try] = ACTIONS(3000), + [anon_sym_delete] = ACTIONS(3000), + [anon_sym_throw] = ACTIONS(3000), + [anon_sym_namespace] = ACTIONS(3000), + [anon_sym_using] = ACTIONS(3000), + [anon_sym_static_assert] = ACTIONS(3000), + [anon_sym_concept] = ACTIONS(3000), + [anon_sym_co_return] = ACTIONS(3000), + [anon_sym_co_yield] = ACTIONS(3000), + [anon_sym_R_DQUOTE] = ACTIONS(3002), + [anon_sym_LR_DQUOTE] = ACTIONS(3002), + [anon_sym_uR_DQUOTE] = ACTIONS(3002), + [anon_sym_UR_DQUOTE] = ACTIONS(3002), + [anon_sym_u8R_DQUOTE] = ACTIONS(3002), + [anon_sym_co_await] = ACTIONS(3000), + [anon_sym_new] = ACTIONS(3000), + [anon_sym_requires] = ACTIONS(3000), + [sym_this] = ACTIONS(3000), }, [842] = { - [sym_identifier] = ACTIONS(2656), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2658), - [anon_sym_AMP] = ACTIONS(2656), - [anon_sym_SEMI] = ACTIONS(2658), - [anon_sym_typedef] = ACTIONS(2656), - [anon_sym_extern] = ACTIONS(2656), - [anon_sym___attribute__] = ACTIONS(2656), - [anon_sym_COLON_COLON] = ACTIONS(2658), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2658), - [anon_sym___declspec] = ACTIONS(2656), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2656), - [anon_sym_static] = ACTIONS(2656), - [anon_sym_register] = ACTIONS(2656), - [anon_sym_inline] = ACTIONS(2656), - [anon_sym_thread_local] = ACTIONS(2656), - [anon_sym_const] = ACTIONS(2656), - [anon_sym_volatile] = ACTIONS(2656), - [anon_sym_restrict] = ACTIONS(2656), - [anon_sym__Atomic] = ACTIONS(2656), - [anon_sym_mutable] = ACTIONS(2656), - [anon_sym_constexpr] = ACTIONS(2656), - [anon_sym_constinit] = ACTIONS(2656), - [anon_sym_consteval] = ACTIONS(2656), - [anon_sym_signed] = ACTIONS(2656), - [anon_sym_unsigned] = ACTIONS(2656), - [anon_sym_long] = ACTIONS(2656), - [anon_sym_short] = ACTIONS(2656), - [sym_primitive_type] = ACTIONS(2656), - [anon_sym_enum] = ACTIONS(2656), - [anon_sym_class] = ACTIONS(2656), - [anon_sym_struct] = ACTIONS(2656), - [anon_sym_union] = ACTIONS(2656), - [anon_sym_if] = ACTIONS(2656), - [anon_sym_else] = 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_return] = ACTIONS(2656), - [anon_sym_break] = ACTIONS(2656), - [anon_sym_continue] = ACTIONS(2656), - [anon_sym_goto] = ACTIONS(2656), - [anon_sym_not] = ACTIONS(2656), - [anon_sym_compl] = ACTIONS(2656), - [anon_sym_DASH_DASH] = ACTIONS(2658), - [anon_sym_PLUS_PLUS] = ACTIONS(2658), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2658), - [anon_sym_u_DQUOTE] = ACTIONS(2658), - [anon_sym_U_DQUOTE] = ACTIONS(2658), - [anon_sym_u8_DQUOTE] = ACTIONS(2658), - [anon_sym_DQUOTE] = ACTIONS(2658), - [sym_true] = ACTIONS(2656), - [sym_false] = ACTIONS(2656), - [sym_null] = ACTIONS(2656), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2656), - [anon_sym_decltype] = ACTIONS(2656), - [anon_sym_virtual] = ACTIONS(2656), - [anon_sym_explicit] = ACTIONS(2656), - [anon_sym_typename] = ACTIONS(2656), - [anon_sym_template] = ACTIONS(2656), - [anon_sym_operator] = ACTIONS(2656), - [anon_sym_try] = ACTIONS(2656), - [anon_sym_delete] = ACTIONS(2656), - [anon_sym_throw] = ACTIONS(2656), - [anon_sym_namespace] = ACTIONS(2656), - [anon_sym_using] = ACTIONS(2656), - [anon_sym_static_assert] = ACTIONS(2656), - [anon_sym_concept] = ACTIONS(2656), - [anon_sym_co_return] = ACTIONS(2656), - [anon_sym_co_yield] = ACTIONS(2656), - [anon_sym_R_DQUOTE] = ACTIONS(2658), - [anon_sym_LR_DQUOTE] = ACTIONS(2658), - [anon_sym_uR_DQUOTE] = ACTIONS(2658), - [anon_sym_UR_DQUOTE] = ACTIONS(2658), - [anon_sym_u8R_DQUOTE] = ACTIONS(2658), - [anon_sym_co_await] = ACTIONS(2656), - [anon_sym_new] = ACTIONS(2656), - [anon_sym_requires] = ACTIONS(2656), - [sym_this] = ACTIONS(2656), - [sym_nullptr] = ACTIONS(2656), + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_RBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, [843] = { - [sym_identifier] = ACTIONS(2548), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2550), - [anon_sym_AMP] = ACTIONS(2548), - [anon_sym_SEMI] = ACTIONS(2550), - [anon_sym_typedef] = ACTIONS(2548), - [anon_sym_extern] = ACTIONS(2548), - [anon_sym___attribute__] = ACTIONS(2548), - [anon_sym_COLON_COLON] = ACTIONS(2550), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2550), - [anon_sym___declspec] = ACTIONS(2548), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2548), - [anon_sym_static] = ACTIONS(2548), - [anon_sym_register] = ACTIONS(2548), - [anon_sym_inline] = ACTIONS(2548), - [anon_sym_thread_local] = ACTIONS(2548), - [anon_sym_const] = ACTIONS(2548), - [anon_sym_volatile] = ACTIONS(2548), - [anon_sym_restrict] = ACTIONS(2548), - [anon_sym__Atomic] = ACTIONS(2548), - [anon_sym_mutable] = ACTIONS(2548), - [anon_sym_constexpr] = ACTIONS(2548), - [anon_sym_constinit] = ACTIONS(2548), - [anon_sym_consteval] = ACTIONS(2548), - [anon_sym_signed] = ACTIONS(2548), - [anon_sym_unsigned] = ACTIONS(2548), - [anon_sym_long] = ACTIONS(2548), - [anon_sym_short] = ACTIONS(2548), - [sym_primitive_type] = ACTIONS(2548), - [anon_sym_enum] = ACTIONS(2548), - [anon_sym_class] = 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_return] = ACTIONS(2548), - [anon_sym_break] = ACTIONS(2548), - [anon_sym_continue] = ACTIONS(2548), - [anon_sym_goto] = ACTIONS(2548), - [anon_sym_not] = ACTIONS(2548), - [anon_sym_compl] = ACTIONS(2548), - [anon_sym_DASH_DASH] = ACTIONS(2550), - [anon_sym_PLUS_PLUS] = ACTIONS(2550), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2550), - [anon_sym_u_DQUOTE] = ACTIONS(2550), - [anon_sym_U_DQUOTE] = ACTIONS(2550), - [anon_sym_u8_DQUOTE] = ACTIONS(2550), - [anon_sym_DQUOTE] = ACTIONS(2550), - [sym_true] = ACTIONS(2548), - [sym_false] = ACTIONS(2548), - [sym_null] = ACTIONS(2548), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2548), - [anon_sym_decltype] = ACTIONS(2548), - [anon_sym_virtual] = ACTIONS(2548), - [anon_sym_explicit] = ACTIONS(2548), - [anon_sym_typename] = ACTIONS(2548), - [anon_sym_template] = ACTIONS(2548), - [anon_sym_operator] = ACTIONS(2548), - [anon_sym_try] = ACTIONS(2548), - [anon_sym_delete] = ACTIONS(2548), - [anon_sym_throw] = ACTIONS(2548), - [anon_sym_namespace] = ACTIONS(2548), - [anon_sym_using] = ACTIONS(2548), - [anon_sym_static_assert] = ACTIONS(2548), - [anon_sym_concept] = ACTIONS(2548), - [anon_sym_co_return] = ACTIONS(2548), - [anon_sym_co_yield] = ACTIONS(2548), - [anon_sym_R_DQUOTE] = ACTIONS(2550), - [anon_sym_LR_DQUOTE] = ACTIONS(2550), - [anon_sym_uR_DQUOTE] = ACTIONS(2550), - [anon_sym_UR_DQUOTE] = ACTIONS(2550), - [anon_sym_u8R_DQUOTE] = ACTIONS(2550), - [anon_sym_co_await] = ACTIONS(2548), - [anon_sym_new] = ACTIONS(2548), - [anon_sym_requires] = ACTIONS(2548), - [sym_this] = ACTIONS(2548), - [sym_nullptr] = ACTIONS(2548), + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_RBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, [844] = { - [sym_identifier] = ACTIONS(2638), - [aux_sym_preproc_include_token1] = ACTIONS(2638), - [aux_sym_preproc_def_token1] = ACTIONS(2638), - [aux_sym_preproc_if_token1] = ACTIONS(2638), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2638), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2638), - [sym_preproc_directive] = ACTIONS(2638), - [anon_sym_LPAREN2] = ACTIONS(2640), - [anon_sym_BANG] = ACTIONS(2640), - [anon_sym_TILDE] = ACTIONS(2640), - [anon_sym_DASH] = ACTIONS(2638), - [anon_sym_PLUS] = ACTIONS(2638), - [anon_sym_STAR] = ACTIONS(2640), - [anon_sym_AMP_AMP] = ACTIONS(2640), - [anon_sym_AMP] = ACTIONS(2638), - [anon_sym_SEMI] = ACTIONS(2640), - [anon_sym_typedef] = ACTIONS(2638), - [anon_sym_extern] = ACTIONS(2638), - [anon_sym___attribute__] = ACTIONS(2638), - [anon_sym_COLON_COLON] = ACTIONS(2640), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2640), - [anon_sym___declspec] = ACTIONS(2638), - [anon_sym___based] = ACTIONS(2638), - [anon_sym___cdecl] = ACTIONS(2638), - [anon_sym___clrcall] = ACTIONS(2638), - [anon_sym___stdcall] = ACTIONS(2638), - [anon_sym___fastcall] = ACTIONS(2638), - [anon_sym___thiscall] = ACTIONS(2638), - [anon_sym___vectorcall] = ACTIONS(2638), - [anon_sym_LBRACE] = ACTIONS(2640), - [anon_sym_RBRACE] = ACTIONS(2640), - [anon_sym_LBRACK] = ACTIONS(2638), - [anon_sym_static] = ACTIONS(2638), - [anon_sym_register] = ACTIONS(2638), - [anon_sym_inline] = ACTIONS(2638), - [anon_sym_thread_local] = ACTIONS(2638), - [anon_sym_const] = ACTIONS(2638), - [anon_sym_volatile] = ACTIONS(2638), - [anon_sym_restrict] = ACTIONS(2638), - [anon_sym__Atomic] = ACTIONS(2638), - [anon_sym_mutable] = ACTIONS(2638), - [anon_sym_constexpr] = ACTIONS(2638), - [anon_sym_constinit] = ACTIONS(2638), - [anon_sym_consteval] = ACTIONS(2638), - [anon_sym_signed] = ACTIONS(2638), - [anon_sym_unsigned] = ACTIONS(2638), - [anon_sym_long] = ACTIONS(2638), - [anon_sym_short] = ACTIONS(2638), - [sym_primitive_type] = ACTIONS(2638), - [anon_sym_enum] = ACTIONS(2638), - [anon_sym_class] = ACTIONS(2638), - [anon_sym_struct] = ACTIONS(2638), - [anon_sym_union] = ACTIONS(2638), - [anon_sym_if] = ACTIONS(2638), - [anon_sym_else] = ACTIONS(2638), - [anon_sym_switch] = ACTIONS(2638), - [anon_sym_case] = ACTIONS(2638), - [anon_sym_default] = ACTIONS(2638), - [anon_sym_while] = ACTIONS(2638), - [anon_sym_do] = ACTIONS(2638), - [anon_sym_for] = ACTIONS(2638), - [anon_sym_return] = ACTIONS(2638), - [anon_sym_break] = ACTIONS(2638), - [anon_sym_continue] = ACTIONS(2638), - [anon_sym_goto] = ACTIONS(2638), - [anon_sym_not] = ACTIONS(2638), - [anon_sym_compl] = ACTIONS(2638), - [anon_sym_DASH_DASH] = ACTIONS(2640), - [anon_sym_PLUS_PLUS] = ACTIONS(2640), - [anon_sym_sizeof] = ACTIONS(2638), - [sym_number_literal] = ACTIONS(2640), - [anon_sym_L_SQUOTE] = ACTIONS(2640), - [anon_sym_u_SQUOTE] = ACTIONS(2640), - [anon_sym_U_SQUOTE] = ACTIONS(2640), - [anon_sym_u8_SQUOTE] = ACTIONS(2640), - [anon_sym_SQUOTE] = ACTIONS(2640), - [anon_sym_L_DQUOTE] = ACTIONS(2640), - [anon_sym_u_DQUOTE] = ACTIONS(2640), - [anon_sym_U_DQUOTE] = ACTIONS(2640), - [anon_sym_u8_DQUOTE] = ACTIONS(2640), - [anon_sym_DQUOTE] = ACTIONS(2640), - [sym_true] = ACTIONS(2638), - [sym_false] = ACTIONS(2638), - [sym_null] = ACTIONS(2638), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2638), - [anon_sym_decltype] = ACTIONS(2638), - [anon_sym_virtual] = ACTIONS(2638), - [anon_sym_explicit] = ACTIONS(2638), - [anon_sym_typename] = ACTIONS(2638), - [anon_sym_template] = ACTIONS(2638), - [anon_sym_operator] = ACTIONS(2638), - [anon_sym_try] = ACTIONS(2638), - [anon_sym_delete] = ACTIONS(2638), - [anon_sym_throw] = ACTIONS(2638), - [anon_sym_namespace] = ACTIONS(2638), - [anon_sym_using] = ACTIONS(2638), - [anon_sym_static_assert] = ACTIONS(2638), - [anon_sym_concept] = ACTIONS(2638), - [anon_sym_co_return] = ACTIONS(2638), - [anon_sym_co_yield] = ACTIONS(2638), - [anon_sym_R_DQUOTE] = ACTIONS(2640), - [anon_sym_LR_DQUOTE] = ACTIONS(2640), - [anon_sym_uR_DQUOTE] = ACTIONS(2640), - [anon_sym_UR_DQUOTE] = ACTIONS(2640), - [anon_sym_u8R_DQUOTE] = ACTIONS(2640), - [anon_sym_co_await] = ACTIONS(2638), - [anon_sym_new] = ACTIONS(2638), - [anon_sym_requires] = ACTIONS(2638), - [sym_this] = ACTIONS(2638), - [sym_nullptr] = ACTIONS(2638), + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_RBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, [845] = { - [sym_identifier] = ACTIONS(2642), - [aux_sym_preproc_include_token1] = ACTIONS(2642), - [aux_sym_preproc_def_token1] = ACTIONS(2642), - [aux_sym_preproc_if_token1] = ACTIONS(2642), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2642), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2642), - [sym_preproc_directive] = ACTIONS(2642), - [anon_sym_LPAREN2] = ACTIONS(2644), - [anon_sym_BANG] = ACTIONS(2644), - [anon_sym_TILDE] = ACTIONS(2644), - [anon_sym_DASH] = ACTIONS(2642), - [anon_sym_PLUS] = ACTIONS(2642), - [anon_sym_STAR] = ACTIONS(2644), - [anon_sym_AMP_AMP] = ACTIONS(2644), - [anon_sym_AMP] = ACTIONS(2642), - [anon_sym_SEMI] = ACTIONS(2644), - [anon_sym_typedef] = ACTIONS(2642), - [anon_sym_extern] = ACTIONS(2642), - [anon_sym___attribute__] = ACTIONS(2642), - [anon_sym_COLON_COLON] = ACTIONS(2644), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2644), - [anon_sym___declspec] = ACTIONS(2642), - [anon_sym___based] = ACTIONS(2642), - [anon_sym___cdecl] = ACTIONS(2642), - [anon_sym___clrcall] = ACTIONS(2642), - [anon_sym___stdcall] = ACTIONS(2642), - [anon_sym___fastcall] = ACTIONS(2642), - [anon_sym___thiscall] = ACTIONS(2642), - [anon_sym___vectorcall] = ACTIONS(2642), - [anon_sym_LBRACE] = ACTIONS(2644), - [anon_sym_RBRACE] = ACTIONS(2644), - [anon_sym_LBRACK] = ACTIONS(2642), - [anon_sym_static] = ACTIONS(2642), - [anon_sym_register] = ACTIONS(2642), - [anon_sym_inline] = ACTIONS(2642), - [anon_sym_thread_local] = ACTIONS(2642), - [anon_sym_const] = ACTIONS(2642), - [anon_sym_volatile] = ACTIONS(2642), - [anon_sym_restrict] = ACTIONS(2642), - [anon_sym__Atomic] = ACTIONS(2642), - [anon_sym_mutable] = ACTIONS(2642), - [anon_sym_constexpr] = ACTIONS(2642), - [anon_sym_constinit] = ACTIONS(2642), - [anon_sym_consteval] = ACTIONS(2642), - [anon_sym_signed] = ACTIONS(2642), - [anon_sym_unsigned] = ACTIONS(2642), - [anon_sym_long] = ACTIONS(2642), - [anon_sym_short] = ACTIONS(2642), - [sym_primitive_type] = ACTIONS(2642), - [anon_sym_enum] = ACTIONS(2642), - [anon_sym_class] = ACTIONS(2642), - [anon_sym_struct] = ACTIONS(2642), - [anon_sym_union] = ACTIONS(2642), - [anon_sym_if] = ACTIONS(2642), - [anon_sym_else] = ACTIONS(2642), - [anon_sym_switch] = ACTIONS(2642), - [anon_sym_case] = ACTIONS(2642), - [anon_sym_default] = ACTIONS(2642), - [anon_sym_while] = ACTIONS(2642), - [anon_sym_do] = ACTIONS(2642), - [anon_sym_for] = ACTIONS(2642), - [anon_sym_return] = ACTIONS(2642), - [anon_sym_break] = ACTIONS(2642), - [anon_sym_continue] = ACTIONS(2642), - [anon_sym_goto] = ACTIONS(2642), - [anon_sym_not] = ACTIONS(2642), - [anon_sym_compl] = ACTIONS(2642), - [anon_sym_DASH_DASH] = ACTIONS(2644), - [anon_sym_PLUS_PLUS] = ACTIONS(2644), - [anon_sym_sizeof] = ACTIONS(2642), - [sym_number_literal] = ACTIONS(2644), - [anon_sym_L_SQUOTE] = ACTIONS(2644), - [anon_sym_u_SQUOTE] = ACTIONS(2644), - [anon_sym_U_SQUOTE] = ACTIONS(2644), - [anon_sym_u8_SQUOTE] = ACTIONS(2644), - [anon_sym_SQUOTE] = ACTIONS(2644), - [anon_sym_L_DQUOTE] = ACTIONS(2644), - [anon_sym_u_DQUOTE] = ACTIONS(2644), - [anon_sym_U_DQUOTE] = ACTIONS(2644), - [anon_sym_u8_DQUOTE] = ACTIONS(2644), - [anon_sym_DQUOTE] = ACTIONS(2644), - [sym_true] = ACTIONS(2642), - [sym_false] = ACTIONS(2642), - [sym_null] = ACTIONS(2642), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2642), - [anon_sym_decltype] = ACTIONS(2642), - [anon_sym_virtual] = ACTIONS(2642), - [anon_sym_explicit] = ACTIONS(2642), - [anon_sym_typename] = ACTIONS(2642), - [anon_sym_template] = ACTIONS(2642), - [anon_sym_operator] = ACTIONS(2642), - [anon_sym_try] = ACTIONS(2642), - [anon_sym_delete] = ACTIONS(2642), - [anon_sym_throw] = ACTIONS(2642), - [anon_sym_namespace] = ACTIONS(2642), - [anon_sym_using] = ACTIONS(2642), - [anon_sym_static_assert] = ACTIONS(2642), - [anon_sym_concept] = ACTIONS(2642), - [anon_sym_co_return] = ACTIONS(2642), - [anon_sym_co_yield] = ACTIONS(2642), - [anon_sym_R_DQUOTE] = ACTIONS(2644), - [anon_sym_LR_DQUOTE] = ACTIONS(2644), - [anon_sym_uR_DQUOTE] = ACTIONS(2644), - [anon_sym_UR_DQUOTE] = ACTIONS(2644), - [anon_sym_u8R_DQUOTE] = ACTIONS(2644), - [anon_sym_co_await] = ACTIONS(2642), - [anon_sym_new] = ACTIONS(2642), - [anon_sym_requires] = ACTIONS(2642), - [sym_this] = ACTIONS(2642), - [sym_nullptr] = ACTIONS(2642), + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_RBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, [846] = { - [sym_identifier] = ACTIONS(2614), - [aux_sym_preproc_include_token1] = ACTIONS(2614), - [aux_sym_preproc_def_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2614), - [sym_preproc_directive] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP_AMP] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2614), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym___based] = ACTIONS(2614), - [anon_sym___cdecl] = ACTIONS(2614), - [anon_sym___clrcall] = ACTIONS(2614), - [anon_sym___stdcall] = ACTIONS(2614), - [anon_sym___fastcall] = ACTIONS(2614), - [anon_sym___thiscall] = ACTIONS(2614), - [anon_sym___vectorcall] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_RBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_case] = ACTIONS(2614), - [anon_sym_default] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_explicit] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_operator] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_namespace] = ACTIONS(2614), - [anon_sym_using] = ACTIONS(2614), - [anon_sym_static_assert] = ACTIONS(2614), - [anon_sym_concept] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_RBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, [847] = { - [ts_builtin_sym_end] = ACTIONS(2484), - [sym_identifier] = ACTIONS(2482), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2484), - [anon_sym_AMP] = ACTIONS(2482), - [anon_sym_SEMI] = ACTIONS(2484), - [anon_sym_typedef] = ACTIONS(2482), - [anon_sym_extern] = ACTIONS(2482), - [anon_sym___attribute__] = ACTIONS(2482), - [anon_sym_COLON_COLON] = ACTIONS(2484), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2484), - [anon_sym___declspec] = ACTIONS(2482), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2482), - [anon_sym_static] = ACTIONS(2482), - [anon_sym_register] = ACTIONS(2482), - [anon_sym_inline] = ACTIONS(2482), - [anon_sym_thread_local] = ACTIONS(2482), - [anon_sym_const] = ACTIONS(2482), - [anon_sym_volatile] = ACTIONS(2482), - [anon_sym_restrict] = ACTIONS(2482), - [anon_sym__Atomic] = ACTIONS(2482), - [anon_sym_mutable] = ACTIONS(2482), - [anon_sym_constexpr] = ACTIONS(2482), - [anon_sym_constinit] = ACTIONS(2482), - [anon_sym_consteval] = ACTIONS(2482), - [anon_sym_signed] = ACTIONS(2482), - [anon_sym_unsigned] = ACTIONS(2482), - [anon_sym_long] = ACTIONS(2482), - [anon_sym_short] = ACTIONS(2482), - [sym_primitive_type] = ACTIONS(2482), - [anon_sym_enum] = ACTIONS(2482), - [anon_sym_class] = ACTIONS(2482), - [anon_sym_struct] = ACTIONS(2482), - [anon_sym_union] = ACTIONS(2482), - [anon_sym_if] = ACTIONS(2482), - [anon_sym_else] = ACTIONS(2950), - [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_return] = ACTIONS(2482), - [anon_sym_break] = ACTIONS(2482), - [anon_sym_continue] = ACTIONS(2482), - [anon_sym_goto] = ACTIONS(2482), - [anon_sym_not] = ACTIONS(2482), - [anon_sym_compl] = ACTIONS(2482), - [anon_sym_DASH_DASH] = ACTIONS(2484), - [anon_sym_PLUS_PLUS] = ACTIONS(2484), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2484), - [anon_sym_u_DQUOTE] = ACTIONS(2484), - [anon_sym_U_DQUOTE] = ACTIONS(2484), - [anon_sym_u8_DQUOTE] = ACTIONS(2484), - [anon_sym_DQUOTE] = ACTIONS(2484), - [sym_true] = ACTIONS(2482), - [sym_false] = ACTIONS(2482), - [sym_null] = ACTIONS(2482), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2482), - [anon_sym_decltype] = ACTIONS(2482), - [anon_sym_virtual] = ACTIONS(2482), - [anon_sym_explicit] = ACTIONS(2482), - [anon_sym_typename] = ACTIONS(2482), - [anon_sym_template] = ACTIONS(2482), - [anon_sym_operator] = ACTIONS(2482), - [anon_sym_try] = ACTIONS(2482), - [anon_sym_delete] = ACTIONS(2482), - [anon_sym_throw] = ACTIONS(2482), - [anon_sym_namespace] = ACTIONS(2482), - [anon_sym_using] = ACTIONS(2482), - [anon_sym_static_assert] = ACTIONS(2482), - [anon_sym_concept] = ACTIONS(2482), - [anon_sym_co_return] = ACTIONS(2482), - [anon_sym_co_yield] = ACTIONS(2482), - [anon_sym_R_DQUOTE] = ACTIONS(2484), - [anon_sym_LR_DQUOTE] = ACTIONS(2484), - [anon_sym_uR_DQUOTE] = ACTIONS(2484), - [anon_sym_UR_DQUOTE] = ACTIONS(2484), - [anon_sym_u8R_DQUOTE] = ACTIONS(2484), - [anon_sym_co_await] = ACTIONS(2482), - [anon_sym_new] = ACTIONS(2482), - [anon_sym_requires] = ACTIONS(2482), - [sym_this] = ACTIONS(2482), - [sym_nullptr] = ACTIONS(2482), + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_RBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, [848] = { - [sym_identifier] = ACTIONS(2630), - [aux_sym_preproc_include_token1] = ACTIONS(2630), - [aux_sym_preproc_def_token1] = ACTIONS(2630), - [aux_sym_preproc_if_token1] = ACTIONS(2630), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2630), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2630), - [sym_preproc_directive] = ACTIONS(2630), - [anon_sym_LPAREN2] = ACTIONS(2632), - [anon_sym_BANG] = ACTIONS(2632), - [anon_sym_TILDE] = ACTIONS(2632), - [anon_sym_DASH] = ACTIONS(2630), - [anon_sym_PLUS] = ACTIONS(2630), - [anon_sym_STAR] = ACTIONS(2632), - [anon_sym_AMP_AMP] = ACTIONS(2632), - [anon_sym_AMP] = ACTIONS(2630), - [anon_sym_SEMI] = ACTIONS(2632), - [anon_sym_typedef] = ACTIONS(2630), - [anon_sym_extern] = ACTIONS(2630), - [anon_sym___attribute__] = ACTIONS(2630), - [anon_sym_COLON_COLON] = ACTIONS(2632), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2632), - [anon_sym___declspec] = ACTIONS(2630), - [anon_sym___based] = ACTIONS(2630), - [anon_sym___cdecl] = ACTIONS(2630), - [anon_sym___clrcall] = ACTIONS(2630), - [anon_sym___stdcall] = ACTIONS(2630), - [anon_sym___fastcall] = ACTIONS(2630), - [anon_sym___thiscall] = ACTIONS(2630), - [anon_sym___vectorcall] = ACTIONS(2630), - [anon_sym_LBRACE] = ACTIONS(2632), - [anon_sym_RBRACE] = ACTIONS(2632), - [anon_sym_LBRACK] = ACTIONS(2630), - [anon_sym_static] = ACTIONS(2630), - [anon_sym_register] = ACTIONS(2630), - [anon_sym_inline] = ACTIONS(2630), - [anon_sym_thread_local] = ACTIONS(2630), - [anon_sym_const] = ACTIONS(2630), - [anon_sym_volatile] = ACTIONS(2630), - [anon_sym_restrict] = ACTIONS(2630), - [anon_sym__Atomic] = ACTIONS(2630), - [anon_sym_mutable] = ACTIONS(2630), - [anon_sym_constexpr] = ACTIONS(2630), - [anon_sym_constinit] = ACTIONS(2630), - [anon_sym_consteval] = ACTIONS(2630), - [anon_sym_signed] = ACTIONS(2630), - [anon_sym_unsigned] = ACTIONS(2630), - [anon_sym_long] = ACTIONS(2630), - [anon_sym_short] = ACTIONS(2630), - [sym_primitive_type] = ACTIONS(2630), - [anon_sym_enum] = ACTIONS(2630), - [anon_sym_class] = ACTIONS(2630), - [anon_sym_struct] = ACTIONS(2630), - [anon_sym_union] = ACTIONS(2630), - [anon_sym_if] = ACTIONS(2630), - [anon_sym_else] = ACTIONS(2630), - [anon_sym_switch] = ACTIONS(2630), - [anon_sym_case] = ACTIONS(2630), - [anon_sym_default] = ACTIONS(2630), - [anon_sym_while] = ACTIONS(2630), - [anon_sym_do] = ACTIONS(2630), - [anon_sym_for] = ACTIONS(2630), - [anon_sym_return] = ACTIONS(2630), - [anon_sym_break] = ACTIONS(2630), - [anon_sym_continue] = ACTIONS(2630), - [anon_sym_goto] = ACTIONS(2630), - [anon_sym_not] = ACTIONS(2630), - [anon_sym_compl] = ACTIONS(2630), - [anon_sym_DASH_DASH] = ACTIONS(2632), - [anon_sym_PLUS_PLUS] = ACTIONS(2632), - [anon_sym_sizeof] = ACTIONS(2630), - [sym_number_literal] = ACTIONS(2632), - [anon_sym_L_SQUOTE] = ACTIONS(2632), - [anon_sym_u_SQUOTE] = ACTIONS(2632), - [anon_sym_U_SQUOTE] = ACTIONS(2632), - [anon_sym_u8_SQUOTE] = ACTIONS(2632), - [anon_sym_SQUOTE] = ACTIONS(2632), - [anon_sym_L_DQUOTE] = ACTIONS(2632), - [anon_sym_u_DQUOTE] = ACTIONS(2632), - [anon_sym_U_DQUOTE] = ACTIONS(2632), - [anon_sym_u8_DQUOTE] = ACTIONS(2632), - [anon_sym_DQUOTE] = ACTIONS(2632), - [sym_true] = ACTIONS(2630), - [sym_false] = ACTIONS(2630), - [sym_null] = ACTIONS(2630), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2630), - [anon_sym_decltype] = ACTIONS(2630), - [anon_sym_virtual] = ACTIONS(2630), - [anon_sym_explicit] = ACTIONS(2630), - [anon_sym_typename] = ACTIONS(2630), - [anon_sym_template] = ACTIONS(2630), - [anon_sym_operator] = ACTIONS(2630), - [anon_sym_try] = ACTIONS(2630), - [anon_sym_delete] = ACTIONS(2630), - [anon_sym_throw] = ACTIONS(2630), - [anon_sym_namespace] = ACTIONS(2630), - [anon_sym_using] = ACTIONS(2630), - [anon_sym_static_assert] = ACTIONS(2630), - [anon_sym_concept] = ACTIONS(2630), - [anon_sym_co_return] = ACTIONS(2630), - [anon_sym_co_yield] = ACTIONS(2630), - [anon_sym_R_DQUOTE] = ACTIONS(2632), - [anon_sym_LR_DQUOTE] = ACTIONS(2632), - [anon_sym_uR_DQUOTE] = ACTIONS(2632), - [anon_sym_UR_DQUOTE] = ACTIONS(2632), - [anon_sym_u8R_DQUOTE] = ACTIONS(2632), - [anon_sym_co_await] = ACTIONS(2630), - [anon_sym_new] = ACTIONS(2630), - [anon_sym_requires] = ACTIONS(2630), - [sym_this] = ACTIONS(2630), - [sym_nullptr] = ACTIONS(2630), + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_RBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, [849] = { - [sym_identifier] = ACTIONS(2630), - [aux_sym_preproc_include_token1] = ACTIONS(2630), - [aux_sym_preproc_def_token1] = ACTIONS(2630), - [aux_sym_preproc_if_token1] = ACTIONS(2630), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2630), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2630), - [sym_preproc_directive] = ACTIONS(2630), - [anon_sym_LPAREN2] = ACTIONS(2632), - [anon_sym_BANG] = ACTIONS(2632), - [anon_sym_TILDE] = ACTIONS(2632), - [anon_sym_DASH] = ACTIONS(2630), - [anon_sym_PLUS] = ACTIONS(2630), - [anon_sym_STAR] = ACTIONS(2632), - [anon_sym_AMP_AMP] = ACTIONS(2632), - [anon_sym_AMP] = ACTIONS(2630), - [anon_sym_SEMI] = ACTIONS(2632), - [anon_sym_typedef] = ACTIONS(2630), - [anon_sym_extern] = ACTIONS(2630), - [anon_sym___attribute__] = ACTIONS(2630), - [anon_sym_COLON_COLON] = ACTIONS(2632), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2632), - [anon_sym___declspec] = ACTIONS(2630), - [anon_sym___based] = ACTIONS(2630), - [anon_sym___cdecl] = ACTIONS(2630), - [anon_sym___clrcall] = ACTIONS(2630), - [anon_sym___stdcall] = ACTIONS(2630), - [anon_sym___fastcall] = ACTIONS(2630), - [anon_sym___thiscall] = ACTIONS(2630), - [anon_sym___vectorcall] = ACTIONS(2630), - [anon_sym_LBRACE] = ACTIONS(2632), - [anon_sym_RBRACE] = ACTIONS(2632), - [anon_sym_LBRACK] = ACTIONS(2630), - [anon_sym_static] = ACTIONS(2630), - [anon_sym_register] = ACTIONS(2630), - [anon_sym_inline] = ACTIONS(2630), - [anon_sym_thread_local] = ACTIONS(2630), - [anon_sym_const] = ACTIONS(2630), - [anon_sym_volatile] = ACTIONS(2630), - [anon_sym_restrict] = ACTIONS(2630), - [anon_sym__Atomic] = ACTIONS(2630), - [anon_sym_mutable] = ACTIONS(2630), - [anon_sym_constexpr] = ACTIONS(2630), - [anon_sym_constinit] = ACTIONS(2630), - [anon_sym_consteval] = ACTIONS(2630), - [anon_sym_signed] = ACTIONS(2630), - [anon_sym_unsigned] = ACTIONS(2630), - [anon_sym_long] = ACTIONS(2630), - [anon_sym_short] = ACTIONS(2630), - [sym_primitive_type] = ACTIONS(2630), - [anon_sym_enum] = ACTIONS(2630), - [anon_sym_class] = ACTIONS(2630), - [anon_sym_struct] = ACTIONS(2630), - [anon_sym_union] = ACTIONS(2630), - [anon_sym_if] = ACTIONS(2630), - [anon_sym_else] = ACTIONS(2630), - [anon_sym_switch] = ACTIONS(2630), - [anon_sym_case] = ACTIONS(2630), - [anon_sym_default] = ACTIONS(2630), - [anon_sym_while] = ACTIONS(2630), - [anon_sym_do] = ACTIONS(2630), - [anon_sym_for] = ACTIONS(2630), - [anon_sym_return] = ACTIONS(2630), - [anon_sym_break] = ACTIONS(2630), - [anon_sym_continue] = ACTIONS(2630), - [anon_sym_goto] = ACTIONS(2630), - [anon_sym_not] = ACTIONS(2630), - [anon_sym_compl] = ACTIONS(2630), - [anon_sym_DASH_DASH] = ACTIONS(2632), - [anon_sym_PLUS_PLUS] = ACTIONS(2632), - [anon_sym_sizeof] = ACTIONS(2630), - [sym_number_literal] = ACTIONS(2632), - [anon_sym_L_SQUOTE] = ACTIONS(2632), - [anon_sym_u_SQUOTE] = ACTIONS(2632), - [anon_sym_U_SQUOTE] = ACTIONS(2632), - [anon_sym_u8_SQUOTE] = ACTIONS(2632), - [anon_sym_SQUOTE] = ACTIONS(2632), - [anon_sym_L_DQUOTE] = ACTIONS(2632), - [anon_sym_u_DQUOTE] = ACTIONS(2632), - [anon_sym_U_DQUOTE] = ACTIONS(2632), - [anon_sym_u8_DQUOTE] = ACTIONS(2632), - [anon_sym_DQUOTE] = ACTIONS(2632), - [sym_true] = ACTIONS(2630), - [sym_false] = ACTIONS(2630), - [sym_null] = ACTIONS(2630), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2630), - [anon_sym_decltype] = ACTIONS(2630), - [anon_sym_virtual] = ACTIONS(2630), - [anon_sym_explicit] = ACTIONS(2630), - [anon_sym_typename] = ACTIONS(2630), - [anon_sym_template] = ACTIONS(2630), - [anon_sym_operator] = ACTIONS(2630), - [anon_sym_try] = ACTIONS(2630), - [anon_sym_delete] = ACTIONS(2630), - [anon_sym_throw] = ACTIONS(2630), - [anon_sym_namespace] = ACTIONS(2630), - [anon_sym_using] = ACTIONS(2630), - [anon_sym_static_assert] = ACTIONS(2630), - [anon_sym_concept] = ACTIONS(2630), - [anon_sym_co_return] = ACTIONS(2630), - [anon_sym_co_yield] = ACTIONS(2630), - [anon_sym_R_DQUOTE] = ACTIONS(2632), - [anon_sym_LR_DQUOTE] = ACTIONS(2632), - [anon_sym_uR_DQUOTE] = ACTIONS(2632), - [anon_sym_UR_DQUOTE] = ACTIONS(2632), - [anon_sym_u8R_DQUOTE] = ACTIONS(2632), - [anon_sym_co_await] = ACTIONS(2630), - [anon_sym_new] = ACTIONS(2630), - [anon_sym_requires] = ACTIONS(2630), - [sym_this] = ACTIONS(2630), - [sym_nullptr] = ACTIONS(2630), + [sym_identifier] = ACTIONS(2944), + [aux_sym_preproc_include_token1] = ACTIONS(2944), + [aux_sym_preproc_def_token1] = ACTIONS(2944), + [aux_sym_preproc_if_token1] = ACTIONS(2944), + [aux_sym_preproc_if_token2] = ACTIONS(2944), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2944), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2944), + [sym_preproc_directive] = ACTIONS(2944), + [anon_sym_LPAREN2] = ACTIONS(2946), + [anon_sym_BANG] = ACTIONS(2946), + [anon_sym_TILDE] = ACTIONS(2946), + [anon_sym_DASH] = ACTIONS(2944), + [anon_sym_PLUS] = ACTIONS(2944), + [anon_sym_STAR] = ACTIONS(2946), + [anon_sym_AMP_AMP] = ACTIONS(2946), + [anon_sym_AMP] = ACTIONS(2944), + [anon_sym_SEMI] = ACTIONS(2946), + [anon_sym_typedef] = ACTIONS(2944), + [anon_sym_extern] = ACTIONS(2944), + [anon_sym___attribute__] = ACTIONS(2944), + [anon_sym_COLON_COLON] = ACTIONS(2946), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2946), + [anon_sym___declspec] = ACTIONS(2944), + [anon_sym___based] = ACTIONS(2944), + [anon_sym___cdecl] = ACTIONS(2944), + [anon_sym___clrcall] = ACTIONS(2944), + [anon_sym___stdcall] = ACTIONS(2944), + [anon_sym___fastcall] = ACTIONS(2944), + [anon_sym___thiscall] = ACTIONS(2944), + [anon_sym___vectorcall] = ACTIONS(2944), + [anon_sym_LBRACE] = ACTIONS(2946), + [anon_sym_LBRACK] = ACTIONS(2944), + [anon_sym_static] = ACTIONS(2944), + [anon_sym_register] = ACTIONS(2944), + [anon_sym_inline] = ACTIONS(2944), + [anon_sym_thread_local] = ACTIONS(2944), + [anon_sym_const] = ACTIONS(2944), + [anon_sym_constexpr] = ACTIONS(2944), + [anon_sym_volatile] = ACTIONS(2944), + [anon_sym_restrict] = ACTIONS(2944), + [anon_sym___restrict__] = ACTIONS(2944), + [anon_sym__Atomic] = ACTIONS(2944), + [anon_sym__Noreturn] = ACTIONS(2944), + [anon_sym_noreturn] = ACTIONS(2944), + [anon_sym_mutable] = ACTIONS(2944), + [anon_sym_constinit] = ACTIONS(2944), + [anon_sym_consteval] = ACTIONS(2944), + [anon_sym_signed] = ACTIONS(2944), + [anon_sym_unsigned] = ACTIONS(2944), + [anon_sym_long] = ACTIONS(2944), + [anon_sym_short] = ACTIONS(2944), + [sym_primitive_type] = ACTIONS(2944), + [anon_sym_enum] = ACTIONS(2944), + [anon_sym_class] = ACTIONS(2944), + [anon_sym_struct] = ACTIONS(2944), + [anon_sym_union] = ACTIONS(2944), + [anon_sym_if] = ACTIONS(2944), + [anon_sym_else] = ACTIONS(2944), + [anon_sym_switch] = ACTIONS(2944), + [anon_sym_case] = ACTIONS(2944), + [anon_sym_default] = ACTIONS(2944), + [anon_sym_while] = ACTIONS(2944), + [anon_sym_do] = ACTIONS(2944), + [anon_sym_for] = ACTIONS(2944), + [anon_sym_return] = ACTIONS(2944), + [anon_sym_break] = ACTIONS(2944), + [anon_sym_continue] = ACTIONS(2944), + [anon_sym_goto] = ACTIONS(2944), + [anon_sym_not] = ACTIONS(2944), + [anon_sym_compl] = ACTIONS(2944), + [anon_sym_DASH_DASH] = ACTIONS(2946), + [anon_sym_PLUS_PLUS] = ACTIONS(2946), + [anon_sym_sizeof] = ACTIONS(2944), + [anon_sym_offsetof] = ACTIONS(2944), + [anon_sym__Generic] = ACTIONS(2944), + [anon_sym_asm] = ACTIONS(2944), + [anon_sym___asm__] = ACTIONS(2944), + [sym_number_literal] = ACTIONS(2946), + [anon_sym_L_SQUOTE] = ACTIONS(2946), + [anon_sym_u_SQUOTE] = ACTIONS(2946), + [anon_sym_U_SQUOTE] = ACTIONS(2946), + [anon_sym_u8_SQUOTE] = ACTIONS(2946), + [anon_sym_SQUOTE] = ACTIONS(2946), + [anon_sym_L_DQUOTE] = ACTIONS(2946), + [anon_sym_u_DQUOTE] = ACTIONS(2946), + [anon_sym_U_DQUOTE] = ACTIONS(2946), + [anon_sym_u8_DQUOTE] = ACTIONS(2946), + [anon_sym_DQUOTE] = ACTIONS(2946), + [sym_true] = ACTIONS(2944), + [sym_false] = ACTIONS(2944), + [anon_sym_NULL] = ACTIONS(2944), + [anon_sym_nullptr] = ACTIONS(2944), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2944), + [anon_sym_decltype] = ACTIONS(2944), + [anon_sym_virtual] = ACTIONS(2944), + [anon_sym_explicit] = ACTIONS(2944), + [anon_sym_typename] = ACTIONS(2944), + [anon_sym_template] = ACTIONS(2944), + [anon_sym_operator] = ACTIONS(2944), + [anon_sym_try] = ACTIONS(2944), + [anon_sym_delete] = ACTIONS(2944), + [anon_sym_throw] = ACTIONS(2944), + [anon_sym_namespace] = ACTIONS(2944), + [anon_sym_using] = ACTIONS(2944), + [anon_sym_static_assert] = ACTIONS(2944), + [anon_sym_concept] = ACTIONS(2944), + [anon_sym_co_return] = ACTIONS(2944), + [anon_sym_co_yield] = ACTIONS(2944), + [anon_sym_R_DQUOTE] = ACTIONS(2946), + [anon_sym_LR_DQUOTE] = ACTIONS(2946), + [anon_sym_uR_DQUOTE] = ACTIONS(2946), + [anon_sym_UR_DQUOTE] = ACTIONS(2946), + [anon_sym_u8R_DQUOTE] = ACTIONS(2946), + [anon_sym_co_await] = ACTIONS(2944), + [anon_sym_new] = ACTIONS(2944), + [anon_sym_requires] = ACTIONS(2944), + [sym_this] = ACTIONS(2944), }, [850] = { - [sym_identifier] = ACTIONS(2614), - [aux_sym_preproc_include_token1] = ACTIONS(2614), - [aux_sym_preproc_def_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2614), - [sym_preproc_directive] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP_AMP] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2614), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym___based] = ACTIONS(2614), - [anon_sym___cdecl] = ACTIONS(2614), - [anon_sym___clrcall] = ACTIONS(2614), - [anon_sym___stdcall] = ACTIONS(2614), - [anon_sym___fastcall] = ACTIONS(2614), - [anon_sym___thiscall] = ACTIONS(2614), - [anon_sym___vectorcall] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_RBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_case] = ACTIONS(2614), - [anon_sym_default] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_explicit] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_operator] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_namespace] = ACTIONS(2614), - [anon_sym_using] = ACTIONS(2614), - [anon_sym_static_assert] = ACTIONS(2614), - [anon_sym_concept] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), + [ts_builtin_sym_end] = ACTIONS(2958), + [sym_identifier] = ACTIONS(2956), + [aux_sym_preproc_include_token1] = ACTIONS(2956), + [aux_sym_preproc_def_token1] = ACTIONS(2956), + [aux_sym_preproc_if_token1] = ACTIONS(2956), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2956), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2956), + [sym_preproc_directive] = ACTIONS(2956), + [anon_sym_LPAREN2] = ACTIONS(2958), + [anon_sym_BANG] = ACTIONS(2958), + [anon_sym_TILDE] = ACTIONS(2958), + [anon_sym_DASH] = ACTIONS(2956), + [anon_sym_PLUS] = ACTIONS(2956), + [anon_sym_STAR] = ACTIONS(2958), + [anon_sym_AMP_AMP] = ACTIONS(2958), + [anon_sym_AMP] = ACTIONS(2956), + [anon_sym_SEMI] = ACTIONS(2958), + [anon_sym_typedef] = ACTIONS(2956), + [anon_sym_extern] = ACTIONS(2956), + [anon_sym___attribute__] = ACTIONS(2956), + [anon_sym_COLON_COLON] = ACTIONS(2958), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2958), + [anon_sym___declspec] = ACTIONS(2956), + [anon_sym___based] = ACTIONS(2956), + [anon_sym___cdecl] = ACTIONS(2956), + [anon_sym___clrcall] = ACTIONS(2956), + [anon_sym___stdcall] = ACTIONS(2956), + [anon_sym___fastcall] = ACTIONS(2956), + [anon_sym___thiscall] = ACTIONS(2956), + [anon_sym___vectorcall] = ACTIONS(2956), + [anon_sym_LBRACE] = ACTIONS(2958), + [anon_sym_LBRACK] = ACTIONS(2956), + [anon_sym_static] = ACTIONS(2956), + [anon_sym_register] = ACTIONS(2956), + [anon_sym_inline] = ACTIONS(2956), + [anon_sym_thread_local] = ACTIONS(2956), + [anon_sym_const] = ACTIONS(2956), + [anon_sym_constexpr] = ACTIONS(2956), + [anon_sym_volatile] = ACTIONS(2956), + [anon_sym_restrict] = ACTIONS(2956), + [anon_sym___restrict__] = ACTIONS(2956), + [anon_sym__Atomic] = ACTIONS(2956), + [anon_sym__Noreturn] = ACTIONS(2956), + [anon_sym_noreturn] = ACTIONS(2956), + [anon_sym_mutable] = ACTIONS(2956), + [anon_sym_constinit] = ACTIONS(2956), + [anon_sym_consteval] = ACTIONS(2956), + [anon_sym_signed] = ACTIONS(2956), + [anon_sym_unsigned] = ACTIONS(2956), + [anon_sym_long] = ACTIONS(2956), + [anon_sym_short] = ACTIONS(2956), + [sym_primitive_type] = ACTIONS(2956), + [anon_sym_enum] = ACTIONS(2956), + [anon_sym_class] = ACTIONS(2956), + [anon_sym_struct] = ACTIONS(2956), + [anon_sym_union] = ACTIONS(2956), + [anon_sym_if] = ACTIONS(2956), + [anon_sym_else] = ACTIONS(2956), + [anon_sym_switch] = ACTIONS(2956), + [anon_sym_case] = ACTIONS(2956), + [anon_sym_default] = ACTIONS(2956), + [anon_sym_while] = ACTIONS(2956), + [anon_sym_do] = ACTIONS(2956), + [anon_sym_for] = ACTIONS(2956), + [anon_sym_return] = ACTIONS(2956), + [anon_sym_break] = ACTIONS(2956), + [anon_sym_continue] = ACTIONS(2956), + [anon_sym_goto] = ACTIONS(2956), + [anon_sym_not] = ACTIONS(2956), + [anon_sym_compl] = ACTIONS(2956), + [anon_sym_DASH_DASH] = ACTIONS(2958), + [anon_sym_PLUS_PLUS] = ACTIONS(2958), + [anon_sym_sizeof] = ACTIONS(2956), + [anon_sym_offsetof] = ACTIONS(2956), + [anon_sym__Generic] = ACTIONS(2956), + [anon_sym_asm] = ACTIONS(2956), + [anon_sym___asm__] = ACTIONS(2956), + [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_L_DQUOTE] = ACTIONS(2958), + [anon_sym_u_DQUOTE] = ACTIONS(2958), + [anon_sym_U_DQUOTE] = ACTIONS(2958), + [anon_sym_u8_DQUOTE] = ACTIONS(2958), + [anon_sym_DQUOTE] = ACTIONS(2958), + [sym_true] = ACTIONS(2956), + [sym_false] = ACTIONS(2956), + [anon_sym_NULL] = ACTIONS(2956), + [anon_sym_nullptr] = ACTIONS(2956), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2956), + [anon_sym_decltype] = ACTIONS(2956), + [anon_sym_virtual] = ACTIONS(2956), + [anon_sym_explicit] = ACTIONS(2956), + [anon_sym_typename] = ACTIONS(2956), + [anon_sym_template] = ACTIONS(2956), + [anon_sym_operator] = ACTIONS(2956), + [anon_sym_try] = ACTIONS(2956), + [anon_sym_delete] = ACTIONS(2956), + [anon_sym_throw] = ACTIONS(2956), + [anon_sym_namespace] = ACTIONS(2956), + [anon_sym_using] = ACTIONS(2956), + [anon_sym_static_assert] = ACTIONS(2956), + [anon_sym_concept] = ACTIONS(2956), + [anon_sym_co_return] = ACTIONS(2956), + [anon_sym_co_yield] = ACTIONS(2956), + [anon_sym_R_DQUOTE] = ACTIONS(2958), + [anon_sym_LR_DQUOTE] = ACTIONS(2958), + [anon_sym_uR_DQUOTE] = ACTIONS(2958), + [anon_sym_UR_DQUOTE] = ACTIONS(2958), + [anon_sym_u8R_DQUOTE] = ACTIONS(2958), + [anon_sym_co_await] = ACTIONS(2956), + [anon_sym_new] = ACTIONS(2956), + [anon_sym_requires] = ACTIONS(2956), + [sym_this] = ACTIONS(2956), }, [851] = { - [sym_identifier] = ACTIONS(2474), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2476), - [anon_sym_AMP] = ACTIONS(2474), - [anon_sym_SEMI] = ACTIONS(2476), - [anon_sym_typedef] = ACTIONS(2474), - [anon_sym_extern] = ACTIONS(2474), - [anon_sym___attribute__] = ACTIONS(2474), - [anon_sym_COLON_COLON] = ACTIONS(2476), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2476), - [anon_sym___declspec] = ACTIONS(2474), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2474), - [anon_sym_static] = ACTIONS(2474), - [anon_sym_register] = ACTIONS(2474), - [anon_sym_inline] = ACTIONS(2474), - [anon_sym_thread_local] = ACTIONS(2474), - [anon_sym_const] = ACTIONS(2474), - [anon_sym_volatile] = ACTIONS(2474), - [anon_sym_restrict] = ACTIONS(2474), - [anon_sym__Atomic] = ACTIONS(2474), - [anon_sym_mutable] = ACTIONS(2474), - [anon_sym_constexpr] = ACTIONS(2474), - [anon_sym_constinit] = ACTIONS(2474), - [anon_sym_consteval] = ACTIONS(2474), - [anon_sym_signed] = ACTIONS(2474), - [anon_sym_unsigned] = ACTIONS(2474), - [anon_sym_long] = ACTIONS(2474), - [anon_sym_short] = ACTIONS(2474), - [sym_primitive_type] = ACTIONS(2474), - [anon_sym_enum] = ACTIONS(2474), - [anon_sym_class] = 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_return] = ACTIONS(2474), - [anon_sym_break] = ACTIONS(2474), - [anon_sym_continue] = ACTIONS(2474), - [anon_sym_goto] = ACTIONS(2474), - [anon_sym_not] = ACTIONS(2474), - [anon_sym_compl] = ACTIONS(2474), - [anon_sym_DASH_DASH] = ACTIONS(2476), - [anon_sym_PLUS_PLUS] = ACTIONS(2476), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2476), - [anon_sym_u_DQUOTE] = ACTIONS(2476), - [anon_sym_U_DQUOTE] = ACTIONS(2476), - [anon_sym_u8_DQUOTE] = ACTIONS(2476), - [anon_sym_DQUOTE] = ACTIONS(2476), - [sym_true] = ACTIONS(2474), - [sym_false] = ACTIONS(2474), - [sym_null] = ACTIONS(2474), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2474), - [anon_sym_decltype] = ACTIONS(2474), - [anon_sym_virtual] = ACTIONS(2474), - [anon_sym_explicit] = ACTIONS(2474), - [anon_sym_typename] = ACTIONS(2474), - [anon_sym_template] = ACTIONS(2474), - [anon_sym_operator] = ACTIONS(2474), - [anon_sym_try] = ACTIONS(2474), - [anon_sym_delete] = ACTIONS(2474), - [anon_sym_throw] = ACTIONS(2474), - [anon_sym_namespace] = ACTIONS(2474), - [anon_sym_using] = ACTIONS(2474), - [anon_sym_static_assert] = ACTIONS(2474), - [anon_sym_concept] = ACTIONS(2474), - [anon_sym_co_return] = ACTIONS(2474), - [anon_sym_co_yield] = ACTIONS(2474), - [anon_sym_R_DQUOTE] = ACTIONS(2476), - [anon_sym_LR_DQUOTE] = ACTIONS(2476), - [anon_sym_uR_DQUOTE] = ACTIONS(2476), - [anon_sym_UR_DQUOTE] = ACTIONS(2476), - [anon_sym_u8R_DQUOTE] = ACTIONS(2476), - [anon_sym_co_await] = ACTIONS(2474), - [anon_sym_new] = ACTIONS(2474), - [anon_sym_requires] = ACTIONS(2474), - [sym_this] = ACTIONS(2474), - [sym_nullptr] = ACTIONS(2474), + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_RBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, [852] = { - [sym_identifier] = ACTIONS(2614), - [aux_sym_preproc_include_token1] = ACTIONS(2614), - [aux_sym_preproc_def_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2614), - [sym_preproc_directive] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP_AMP] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2614), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym___based] = ACTIONS(2614), - [anon_sym___cdecl] = ACTIONS(2614), - [anon_sym___clrcall] = ACTIONS(2614), - [anon_sym___stdcall] = ACTIONS(2614), - [anon_sym___fastcall] = ACTIONS(2614), - [anon_sym___thiscall] = ACTIONS(2614), - [anon_sym___vectorcall] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_RBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_case] = ACTIONS(2614), - [anon_sym_default] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_explicit] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_operator] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_namespace] = ACTIONS(2614), - [anon_sym_using] = ACTIONS(2614), - [anon_sym_static_assert] = ACTIONS(2614), - [anon_sym_concept] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_RBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, [853] = { - [sym_identifier] = ACTIONS(2614), - [aux_sym_preproc_include_token1] = ACTIONS(2614), - [aux_sym_preproc_def_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2614), - [sym_preproc_directive] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP_AMP] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2614), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym___based] = ACTIONS(2614), - [anon_sym___cdecl] = ACTIONS(2614), - [anon_sym___clrcall] = ACTIONS(2614), - [anon_sym___stdcall] = ACTIONS(2614), - [anon_sym___fastcall] = ACTIONS(2614), - [anon_sym___thiscall] = ACTIONS(2614), - [anon_sym___vectorcall] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_RBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_case] = ACTIONS(2614), - [anon_sym_default] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_explicit] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_operator] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_namespace] = ACTIONS(2614), - [anon_sym_using] = ACTIONS(2614), - [anon_sym_static_assert] = ACTIONS(2614), - [anon_sym_concept] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), + [sym_identifier] = ACTIONS(3105), + [aux_sym_preproc_include_token1] = ACTIONS(3105), + [aux_sym_preproc_def_token1] = ACTIONS(3105), + [aux_sym_preproc_if_token1] = ACTIONS(3105), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3105), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3105), + [sym_preproc_directive] = ACTIONS(3105), + [anon_sym_LPAREN2] = ACTIONS(3107), + [anon_sym_BANG] = ACTIONS(3107), + [anon_sym_TILDE] = ACTIONS(3107), + [anon_sym_DASH] = ACTIONS(3105), + [anon_sym_PLUS] = ACTIONS(3105), + [anon_sym_STAR] = ACTIONS(3107), + [anon_sym_AMP_AMP] = ACTIONS(3107), + [anon_sym_AMP] = ACTIONS(3105), + [anon_sym_SEMI] = ACTIONS(3107), + [anon_sym_typedef] = ACTIONS(3105), + [anon_sym_extern] = ACTIONS(3105), + [anon_sym___attribute__] = ACTIONS(3105), + [anon_sym_COLON_COLON] = ACTIONS(3107), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3107), + [anon_sym___declspec] = ACTIONS(3105), + [anon_sym___based] = ACTIONS(3105), + [anon_sym___cdecl] = ACTIONS(3105), + [anon_sym___clrcall] = ACTIONS(3105), + [anon_sym___stdcall] = ACTIONS(3105), + [anon_sym___fastcall] = ACTIONS(3105), + [anon_sym___thiscall] = ACTIONS(3105), + [anon_sym___vectorcall] = ACTIONS(3105), + [anon_sym_LBRACE] = ACTIONS(3107), + [anon_sym_RBRACE] = ACTIONS(3107), + [anon_sym_LBRACK] = ACTIONS(3105), + [anon_sym_static] = ACTIONS(3105), + [anon_sym_register] = ACTIONS(3105), + [anon_sym_inline] = ACTIONS(3105), + [anon_sym_thread_local] = ACTIONS(3105), + [anon_sym_const] = ACTIONS(3105), + [anon_sym_constexpr] = ACTIONS(3105), + [anon_sym_volatile] = ACTIONS(3105), + [anon_sym_restrict] = ACTIONS(3105), + [anon_sym___restrict__] = ACTIONS(3105), + [anon_sym__Atomic] = ACTIONS(3105), + [anon_sym__Noreturn] = ACTIONS(3105), + [anon_sym_noreturn] = ACTIONS(3105), + [anon_sym_mutable] = ACTIONS(3105), + [anon_sym_constinit] = ACTIONS(3105), + [anon_sym_consteval] = ACTIONS(3105), + [anon_sym_signed] = ACTIONS(3105), + [anon_sym_unsigned] = ACTIONS(3105), + [anon_sym_long] = ACTIONS(3105), + [anon_sym_short] = ACTIONS(3105), + [sym_primitive_type] = ACTIONS(3105), + [anon_sym_enum] = ACTIONS(3105), + [anon_sym_class] = ACTIONS(3105), + [anon_sym_struct] = ACTIONS(3105), + [anon_sym_union] = ACTIONS(3105), + [anon_sym_if] = ACTIONS(3105), + [anon_sym_else] = ACTIONS(3105), + [anon_sym_switch] = ACTIONS(3105), + [anon_sym_case] = ACTIONS(3105), + [anon_sym_default] = ACTIONS(3105), + [anon_sym_while] = ACTIONS(3105), + [anon_sym_do] = ACTIONS(3105), + [anon_sym_for] = ACTIONS(3105), + [anon_sym_return] = ACTIONS(3105), + [anon_sym_break] = ACTIONS(3105), + [anon_sym_continue] = ACTIONS(3105), + [anon_sym_goto] = ACTIONS(3105), + [anon_sym_not] = ACTIONS(3105), + [anon_sym_compl] = ACTIONS(3105), + [anon_sym_DASH_DASH] = ACTIONS(3107), + [anon_sym_PLUS_PLUS] = ACTIONS(3107), + [anon_sym_sizeof] = ACTIONS(3105), + [anon_sym_offsetof] = ACTIONS(3105), + [anon_sym__Generic] = ACTIONS(3105), + [anon_sym_asm] = ACTIONS(3105), + [anon_sym___asm__] = ACTIONS(3105), + [sym_number_literal] = ACTIONS(3107), + [anon_sym_L_SQUOTE] = ACTIONS(3107), + [anon_sym_u_SQUOTE] = ACTIONS(3107), + [anon_sym_U_SQUOTE] = ACTIONS(3107), + [anon_sym_u8_SQUOTE] = ACTIONS(3107), + [anon_sym_SQUOTE] = ACTIONS(3107), + [anon_sym_L_DQUOTE] = ACTIONS(3107), + [anon_sym_u_DQUOTE] = ACTIONS(3107), + [anon_sym_U_DQUOTE] = ACTIONS(3107), + [anon_sym_u8_DQUOTE] = ACTIONS(3107), + [anon_sym_DQUOTE] = ACTIONS(3107), + [sym_true] = ACTIONS(3105), + [sym_false] = ACTIONS(3105), + [anon_sym_NULL] = ACTIONS(3105), + [anon_sym_nullptr] = ACTIONS(3105), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3105), + [anon_sym_decltype] = ACTIONS(3105), + [anon_sym_virtual] = ACTIONS(3105), + [anon_sym_explicit] = ACTIONS(3105), + [anon_sym_typename] = ACTIONS(3105), + [anon_sym_template] = ACTIONS(3105), + [anon_sym_operator] = ACTIONS(3105), + [anon_sym_try] = ACTIONS(3105), + [anon_sym_delete] = ACTIONS(3105), + [anon_sym_throw] = ACTIONS(3105), + [anon_sym_namespace] = ACTIONS(3105), + [anon_sym_using] = ACTIONS(3105), + [anon_sym_static_assert] = ACTIONS(3105), + [anon_sym_concept] = ACTIONS(3105), + [anon_sym_co_return] = ACTIONS(3105), + [anon_sym_co_yield] = ACTIONS(3105), + [anon_sym_R_DQUOTE] = ACTIONS(3107), + [anon_sym_LR_DQUOTE] = ACTIONS(3107), + [anon_sym_uR_DQUOTE] = ACTIONS(3107), + [anon_sym_UR_DQUOTE] = ACTIONS(3107), + [anon_sym_u8R_DQUOTE] = ACTIONS(3107), + [anon_sym_co_await] = ACTIONS(3105), + [anon_sym_new] = ACTIONS(3105), + [anon_sym_requires] = ACTIONS(3105), + [sym_this] = ACTIONS(3105), }, [854] = { - [sym_identifier] = ACTIONS(2614), - [aux_sym_preproc_include_token1] = ACTIONS(2614), - [aux_sym_preproc_def_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2614), - [sym_preproc_directive] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP_AMP] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2614), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym___based] = ACTIONS(2614), - [anon_sym___cdecl] = ACTIONS(2614), - [anon_sym___clrcall] = ACTIONS(2614), - [anon_sym___stdcall] = ACTIONS(2614), - [anon_sym___fastcall] = ACTIONS(2614), - [anon_sym___thiscall] = ACTIONS(2614), - [anon_sym___vectorcall] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_RBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_case] = ACTIONS(2614), - [anon_sym_default] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_explicit] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_operator] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_namespace] = ACTIONS(2614), - [anon_sym_using] = ACTIONS(2614), - [anon_sym_static_assert] = ACTIONS(2614), - [anon_sym_concept] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), + [sym_identifier] = ACTIONS(3036), + [aux_sym_preproc_include_token1] = ACTIONS(3036), + [aux_sym_preproc_def_token1] = ACTIONS(3036), + [aux_sym_preproc_if_token1] = ACTIONS(3036), + [aux_sym_preproc_if_token2] = ACTIONS(3036), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3036), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3036), + [sym_preproc_directive] = ACTIONS(3036), + [anon_sym_LPAREN2] = ACTIONS(3038), + [anon_sym_BANG] = ACTIONS(3038), + [anon_sym_TILDE] = ACTIONS(3038), + [anon_sym_DASH] = ACTIONS(3036), + [anon_sym_PLUS] = ACTIONS(3036), + [anon_sym_STAR] = ACTIONS(3038), + [anon_sym_AMP_AMP] = ACTIONS(3038), + [anon_sym_AMP] = ACTIONS(3036), + [anon_sym_SEMI] = ACTIONS(3038), + [anon_sym_typedef] = ACTIONS(3036), + [anon_sym_extern] = ACTIONS(3036), + [anon_sym___attribute__] = ACTIONS(3036), + [anon_sym_COLON_COLON] = ACTIONS(3038), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3038), + [anon_sym___declspec] = ACTIONS(3036), + [anon_sym___based] = ACTIONS(3036), + [anon_sym___cdecl] = ACTIONS(3036), + [anon_sym___clrcall] = ACTIONS(3036), + [anon_sym___stdcall] = ACTIONS(3036), + [anon_sym___fastcall] = ACTIONS(3036), + [anon_sym___thiscall] = ACTIONS(3036), + [anon_sym___vectorcall] = ACTIONS(3036), + [anon_sym_LBRACE] = ACTIONS(3038), + [anon_sym_LBRACK] = ACTIONS(3036), + [anon_sym_static] = ACTIONS(3036), + [anon_sym_register] = ACTIONS(3036), + [anon_sym_inline] = ACTIONS(3036), + [anon_sym_thread_local] = ACTIONS(3036), + [anon_sym_const] = ACTIONS(3036), + [anon_sym_constexpr] = ACTIONS(3036), + [anon_sym_volatile] = ACTIONS(3036), + [anon_sym_restrict] = ACTIONS(3036), + [anon_sym___restrict__] = ACTIONS(3036), + [anon_sym__Atomic] = ACTIONS(3036), + [anon_sym__Noreturn] = ACTIONS(3036), + [anon_sym_noreturn] = ACTIONS(3036), + [anon_sym_mutable] = ACTIONS(3036), + [anon_sym_constinit] = ACTIONS(3036), + [anon_sym_consteval] = ACTIONS(3036), + [anon_sym_signed] = ACTIONS(3036), + [anon_sym_unsigned] = ACTIONS(3036), + [anon_sym_long] = ACTIONS(3036), + [anon_sym_short] = ACTIONS(3036), + [sym_primitive_type] = ACTIONS(3036), + [anon_sym_enum] = ACTIONS(3036), + [anon_sym_class] = ACTIONS(3036), + [anon_sym_struct] = ACTIONS(3036), + [anon_sym_union] = ACTIONS(3036), + [anon_sym_if] = ACTIONS(3036), + [anon_sym_else] = ACTIONS(3036), + [anon_sym_switch] = ACTIONS(3036), + [anon_sym_case] = ACTIONS(3036), + [anon_sym_default] = ACTIONS(3036), + [anon_sym_while] = ACTIONS(3036), + [anon_sym_do] = ACTIONS(3036), + [anon_sym_for] = ACTIONS(3036), + [anon_sym_return] = ACTIONS(3036), + [anon_sym_break] = ACTIONS(3036), + [anon_sym_continue] = ACTIONS(3036), + [anon_sym_goto] = ACTIONS(3036), + [anon_sym_not] = ACTIONS(3036), + [anon_sym_compl] = ACTIONS(3036), + [anon_sym_DASH_DASH] = ACTIONS(3038), + [anon_sym_PLUS_PLUS] = ACTIONS(3038), + [anon_sym_sizeof] = ACTIONS(3036), + [anon_sym_offsetof] = ACTIONS(3036), + [anon_sym__Generic] = ACTIONS(3036), + [anon_sym_asm] = ACTIONS(3036), + [anon_sym___asm__] = ACTIONS(3036), + [sym_number_literal] = ACTIONS(3038), + [anon_sym_L_SQUOTE] = ACTIONS(3038), + [anon_sym_u_SQUOTE] = ACTIONS(3038), + [anon_sym_U_SQUOTE] = ACTIONS(3038), + [anon_sym_u8_SQUOTE] = ACTIONS(3038), + [anon_sym_SQUOTE] = ACTIONS(3038), + [anon_sym_L_DQUOTE] = ACTIONS(3038), + [anon_sym_u_DQUOTE] = ACTIONS(3038), + [anon_sym_U_DQUOTE] = ACTIONS(3038), + [anon_sym_u8_DQUOTE] = ACTIONS(3038), + [anon_sym_DQUOTE] = ACTIONS(3038), + [sym_true] = ACTIONS(3036), + [sym_false] = ACTIONS(3036), + [anon_sym_NULL] = ACTIONS(3036), + [anon_sym_nullptr] = ACTIONS(3036), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3036), + [anon_sym_decltype] = ACTIONS(3036), + [anon_sym_virtual] = ACTIONS(3036), + [anon_sym_explicit] = ACTIONS(3036), + [anon_sym_typename] = ACTIONS(3036), + [anon_sym_template] = ACTIONS(3036), + [anon_sym_operator] = ACTIONS(3036), + [anon_sym_try] = ACTIONS(3036), + [anon_sym_delete] = ACTIONS(3036), + [anon_sym_throw] = ACTIONS(3036), + [anon_sym_namespace] = ACTIONS(3036), + [anon_sym_using] = ACTIONS(3036), + [anon_sym_static_assert] = ACTIONS(3036), + [anon_sym_concept] = ACTIONS(3036), + [anon_sym_co_return] = ACTIONS(3036), + [anon_sym_co_yield] = ACTIONS(3036), + [anon_sym_R_DQUOTE] = ACTIONS(3038), + [anon_sym_LR_DQUOTE] = ACTIONS(3038), + [anon_sym_uR_DQUOTE] = ACTIONS(3038), + [anon_sym_UR_DQUOTE] = ACTIONS(3038), + [anon_sym_u8R_DQUOTE] = ACTIONS(3038), + [anon_sym_co_await] = ACTIONS(3036), + [anon_sym_new] = ACTIONS(3036), + [anon_sym_requires] = ACTIONS(3036), + [sym_this] = ACTIONS(3036), }, [855] = { - [sym_identifier] = ACTIONS(2614), - [aux_sym_preproc_include_token1] = ACTIONS(2614), - [aux_sym_preproc_def_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2614), - [sym_preproc_directive] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP_AMP] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2614), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym___based] = ACTIONS(2614), - [anon_sym___cdecl] = ACTIONS(2614), - [anon_sym___clrcall] = ACTIONS(2614), - [anon_sym___stdcall] = ACTIONS(2614), - [anon_sym___fastcall] = ACTIONS(2614), - [anon_sym___thiscall] = ACTIONS(2614), - [anon_sym___vectorcall] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_RBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_case] = ACTIONS(2614), - [anon_sym_default] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_explicit] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_operator] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_namespace] = ACTIONS(2614), - [anon_sym_using] = ACTIONS(2614), - [anon_sym_static_assert] = ACTIONS(2614), - [anon_sym_concept] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), + [sym_identifier] = ACTIONS(2940), + [aux_sym_preproc_include_token1] = ACTIONS(2940), + [aux_sym_preproc_def_token1] = ACTIONS(2940), + [aux_sym_preproc_if_token1] = ACTIONS(2940), + [aux_sym_preproc_if_token2] = ACTIONS(2940), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2940), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2940), + [sym_preproc_directive] = ACTIONS(2940), + [anon_sym_LPAREN2] = ACTIONS(2942), + [anon_sym_BANG] = ACTIONS(2942), + [anon_sym_TILDE] = ACTIONS(2942), + [anon_sym_DASH] = ACTIONS(2940), + [anon_sym_PLUS] = ACTIONS(2940), + [anon_sym_STAR] = ACTIONS(2942), + [anon_sym_AMP_AMP] = ACTIONS(2942), + [anon_sym_AMP] = ACTIONS(2940), + [anon_sym_SEMI] = ACTIONS(2942), + [anon_sym_typedef] = ACTIONS(2940), + [anon_sym_extern] = ACTIONS(2940), + [anon_sym___attribute__] = ACTIONS(2940), + [anon_sym_COLON_COLON] = ACTIONS(2942), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2942), + [anon_sym___declspec] = ACTIONS(2940), + [anon_sym___based] = ACTIONS(2940), + [anon_sym___cdecl] = ACTIONS(2940), + [anon_sym___clrcall] = ACTIONS(2940), + [anon_sym___stdcall] = ACTIONS(2940), + [anon_sym___fastcall] = ACTIONS(2940), + [anon_sym___thiscall] = ACTIONS(2940), + [anon_sym___vectorcall] = ACTIONS(2940), + [anon_sym_LBRACE] = ACTIONS(2942), + [anon_sym_LBRACK] = ACTIONS(2940), + [anon_sym_static] = ACTIONS(2940), + [anon_sym_register] = ACTIONS(2940), + [anon_sym_inline] = ACTIONS(2940), + [anon_sym_thread_local] = ACTIONS(2940), + [anon_sym_const] = ACTIONS(2940), + [anon_sym_constexpr] = ACTIONS(2940), + [anon_sym_volatile] = ACTIONS(2940), + [anon_sym_restrict] = ACTIONS(2940), + [anon_sym___restrict__] = ACTIONS(2940), + [anon_sym__Atomic] = ACTIONS(2940), + [anon_sym__Noreturn] = ACTIONS(2940), + [anon_sym_noreturn] = ACTIONS(2940), + [anon_sym_mutable] = ACTIONS(2940), + [anon_sym_constinit] = ACTIONS(2940), + [anon_sym_consteval] = ACTIONS(2940), + [anon_sym_signed] = ACTIONS(2940), + [anon_sym_unsigned] = ACTIONS(2940), + [anon_sym_long] = ACTIONS(2940), + [anon_sym_short] = ACTIONS(2940), + [sym_primitive_type] = ACTIONS(2940), + [anon_sym_enum] = ACTIONS(2940), + [anon_sym_class] = ACTIONS(2940), + [anon_sym_struct] = ACTIONS(2940), + [anon_sym_union] = ACTIONS(2940), + [anon_sym_if] = ACTIONS(2940), + [anon_sym_else] = ACTIONS(2940), + [anon_sym_switch] = ACTIONS(2940), + [anon_sym_case] = ACTIONS(2940), + [anon_sym_default] = ACTIONS(2940), + [anon_sym_while] = ACTIONS(2940), + [anon_sym_do] = ACTIONS(2940), + [anon_sym_for] = ACTIONS(2940), + [anon_sym_return] = ACTIONS(2940), + [anon_sym_break] = ACTIONS(2940), + [anon_sym_continue] = ACTIONS(2940), + [anon_sym_goto] = ACTIONS(2940), + [anon_sym_not] = ACTIONS(2940), + [anon_sym_compl] = ACTIONS(2940), + [anon_sym_DASH_DASH] = ACTIONS(2942), + [anon_sym_PLUS_PLUS] = ACTIONS(2942), + [anon_sym_sizeof] = ACTIONS(2940), + [anon_sym_offsetof] = ACTIONS(2940), + [anon_sym__Generic] = ACTIONS(2940), + [anon_sym_asm] = ACTIONS(2940), + [anon_sym___asm__] = ACTIONS(2940), + [sym_number_literal] = ACTIONS(2942), + [anon_sym_L_SQUOTE] = ACTIONS(2942), + [anon_sym_u_SQUOTE] = ACTIONS(2942), + [anon_sym_U_SQUOTE] = ACTIONS(2942), + [anon_sym_u8_SQUOTE] = ACTIONS(2942), + [anon_sym_SQUOTE] = ACTIONS(2942), + [anon_sym_L_DQUOTE] = ACTIONS(2942), + [anon_sym_u_DQUOTE] = ACTIONS(2942), + [anon_sym_U_DQUOTE] = ACTIONS(2942), + [anon_sym_u8_DQUOTE] = ACTIONS(2942), + [anon_sym_DQUOTE] = ACTIONS(2942), + [sym_true] = ACTIONS(2940), + [sym_false] = ACTIONS(2940), + [anon_sym_NULL] = ACTIONS(2940), + [anon_sym_nullptr] = ACTIONS(2940), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2940), + [anon_sym_decltype] = ACTIONS(2940), + [anon_sym_virtual] = ACTIONS(2940), + [anon_sym_explicit] = ACTIONS(2940), + [anon_sym_typename] = ACTIONS(2940), + [anon_sym_template] = ACTIONS(2940), + [anon_sym_operator] = ACTIONS(2940), + [anon_sym_try] = ACTIONS(2940), + [anon_sym_delete] = ACTIONS(2940), + [anon_sym_throw] = ACTIONS(2940), + [anon_sym_namespace] = ACTIONS(2940), + [anon_sym_using] = ACTIONS(2940), + [anon_sym_static_assert] = ACTIONS(2940), + [anon_sym_concept] = ACTIONS(2940), + [anon_sym_co_return] = ACTIONS(2940), + [anon_sym_co_yield] = ACTIONS(2940), + [anon_sym_R_DQUOTE] = ACTIONS(2942), + [anon_sym_LR_DQUOTE] = ACTIONS(2942), + [anon_sym_uR_DQUOTE] = ACTIONS(2942), + [anon_sym_UR_DQUOTE] = ACTIONS(2942), + [anon_sym_u8R_DQUOTE] = ACTIONS(2942), + [anon_sym_co_await] = ACTIONS(2940), + [anon_sym_new] = ACTIONS(2940), + [anon_sym_requires] = ACTIONS(2940), + [sym_this] = ACTIONS(2940), }, [856] = { - [sym_identifier] = ACTIONS(2614), - [aux_sym_preproc_include_token1] = ACTIONS(2614), - [aux_sym_preproc_def_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2614), - [sym_preproc_directive] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP_AMP] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2614), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym___based] = ACTIONS(2614), - [anon_sym___cdecl] = ACTIONS(2614), - [anon_sym___clrcall] = ACTIONS(2614), - [anon_sym___stdcall] = ACTIONS(2614), - [anon_sym___fastcall] = ACTIONS(2614), - [anon_sym___thiscall] = ACTIONS(2614), - [anon_sym___vectorcall] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_RBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_case] = ACTIONS(2614), - [anon_sym_default] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_explicit] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_operator] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_namespace] = ACTIONS(2614), - [anon_sym_using] = ACTIONS(2614), - [anon_sym_static_assert] = ACTIONS(2614), - [anon_sym_concept] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), + [sym_identifier] = ACTIONS(3040), + [aux_sym_preproc_include_token1] = ACTIONS(3040), + [aux_sym_preproc_def_token1] = ACTIONS(3040), + [aux_sym_preproc_if_token1] = ACTIONS(3040), + [aux_sym_preproc_if_token2] = ACTIONS(3040), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3040), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3040), + [sym_preproc_directive] = ACTIONS(3040), + [anon_sym_LPAREN2] = ACTIONS(3042), + [anon_sym_BANG] = ACTIONS(3042), + [anon_sym_TILDE] = ACTIONS(3042), + [anon_sym_DASH] = ACTIONS(3040), + [anon_sym_PLUS] = ACTIONS(3040), + [anon_sym_STAR] = ACTIONS(3042), + [anon_sym_AMP_AMP] = ACTIONS(3042), + [anon_sym_AMP] = ACTIONS(3040), + [anon_sym_SEMI] = ACTIONS(3042), + [anon_sym_typedef] = ACTIONS(3040), + [anon_sym_extern] = ACTIONS(3040), + [anon_sym___attribute__] = ACTIONS(3040), + [anon_sym_COLON_COLON] = ACTIONS(3042), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3042), + [anon_sym___declspec] = ACTIONS(3040), + [anon_sym___based] = ACTIONS(3040), + [anon_sym___cdecl] = ACTIONS(3040), + [anon_sym___clrcall] = ACTIONS(3040), + [anon_sym___stdcall] = ACTIONS(3040), + [anon_sym___fastcall] = ACTIONS(3040), + [anon_sym___thiscall] = ACTIONS(3040), + [anon_sym___vectorcall] = ACTIONS(3040), + [anon_sym_LBRACE] = ACTIONS(3042), + [anon_sym_LBRACK] = ACTIONS(3040), + [anon_sym_static] = ACTIONS(3040), + [anon_sym_register] = ACTIONS(3040), + [anon_sym_inline] = ACTIONS(3040), + [anon_sym_thread_local] = ACTIONS(3040), + [anon_sym_const] = ACTIONS(3040), + [anon_sym_constexpr] = ACTIONS(3040), + [anon_sym_volatile] = ACTIONS(3040), + [anon_sym_restrict] = ACTIONS(3040), + [anon_sym___restrict__] = ACTIONS(3040), + [anon_sym__Atomic] = ACTIONS(3040), + [anon_sym__Noreturn] = ACTIONS(3040), + [anon_sym_noreturn] = ACTIONS(3040), + [anon_sym_mutable] = ACTIONS(3040), + [anon_sym_constinit] = ACTIONS(3040), + [anon_sym_consteval] = ACTIONS(3040), + [anon_sym_signed] = ACTIONS(3040), + [anon_sym_unsigned] = ACTIONS(3040), + [anon_sym_long] = ACTIONS(3040), + [anon_sym_short] = ACTIONS(3040), + [sym_primitive_type] = ACTIONS(3040), + [anon_sym_enum] = ACTIONS(3040), + [anon_sym_class] = ACTIONS(3040), + [anon_sym_struct] = ACTIONS(3040), + [anon_sym_union] = ACTIONS(3040), + [anon_sym_if] = ACTIONS(3040), + [anon_sym_else] = ACTIONS(3040), + [anon_sym_switch] = ACTIONS(3040), + [anon_sym_case] = ACTIONS(3040), + [anon_sym_default] = ACTIONS(3040), + [anon_sym_while] = ACTIONS(3040), + [anon_sym_do] = ACTIONS(3040), + [anon_sym_for] = ACTIONS(3040), + [anon_sym_return] = ACTIONS(3040), + [anon_sym_break] = ACTIONS(3040), + [anon_sym_continue] = ACTIONS(3040), + [anon_sym_goto] = ACTIONS(3040), + [anon_sym_not] = ACTIONS(3040), + [anon_sym_compl] = ACTIONS(3040), + [anon_sym_DASH_DASH] = ACTIONS(3042), + [anon_sym_PLUS_PLUS] = ACTIONS(3042), + [anon_sym_sizeof] = ACTIONS(3040), + [anon_sym_offsetof] = ACTIONS(3040), + [anon_sym__Generic] = ACTIONS(3040), + [anon_sym_asm] = ACTIONS(3040), + [anon_sym___asm__] = ACTIONS(3040), + [sym_number_literal] = ACTIONS(3042), + [anon_sym_L_SQUOTE] = ACTIONS(3042), + [anon_sym_u_SQUOTE] = ACTIONS(3042), + [anon_sym_U_SQUOTE] = ACTIONS(3042), + [anon_sym_u8_SQUOTE] = ACTIONS(3042), + [anon_sym_SQUOTE] = ACTIONS(3042), + [anon_sym_L_DQUOTE] = ACTIONS(3042), + [anon_sym_u_DQUOTE] = ACTIONS(3042), + [anon_sym_U_DQUOTE] = ACTIONS(3042), + [anon_sym_u8_DQUOTE] = ACTIONS(3042), + [anon_sym_DQUOTE] = ACTIONS(3042), + [sym_true] = ACTIONS(3040), + [sym_false] = ACTIONS(3040), + [anon_sym_NULL] = ACTIONS(3040), + [anon_sym_nullptr] = ACTIONS(3040), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3040), + [anon_sym_decltype] = ACTIONS(3040), + [anon_sym_virtual] = ACTIONS(3040), + [anon_sym_explicit] = ACTIONS(3040), + [anon_sym_typename] = ACTIONS(3040), + [anon_sym_template] = ACTIONS(3040), + [anon_sym_operator] = ACTIONS(3040), + [anon_sym_try] = ACTIONS(3040), + [anon_sym_delete] = ACTIONS(3040), + [anon_sym_throw] = ACTIONS(3040), + [anon_sym_namespace] = ACTIONS(3040), + [anon_sym_using] = ACTIONS(3040), + [anon_sym_static_assert] = ACTIONS(3040), + [anon_sym_concept] = ACTIONS(3040), + [anon_sym_co_return] = ACTIONS(3040), + [anon_sym_co_yield] = ACTIONS(3040), + [anon_sym_R_DQUOTE] = ACTIONS(3042), + [anon_sym_LR_DQUOTE] = ACTIONS(3042), + [anon_sym_uR_DQUOTE] = ACTIONS(3042), + [anon_sym_UR_DQUOTE] = ACTIONS(3042), + [anon_sym_u8R_DQUOTE] = ACTIONS(3042), + [anon_sym_co_await] = ACTIONS(3040), + [anon_sym_new] = ACTIONS(3040), + [anon_sym_requires] = ACTIONS(3040), + [sym_this] = ACTIONS(3040), }, [857] = { - [sym_identifier] = ACTIONS(2614), - [aux_sym_preproc_include_token1] = ACTIONS(2614), - [aux_sym_preproc_def_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2614), - [sym_preproc_directive] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP_AMP] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2614), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym___based] = ACTIONS(2614), - [anon_sym___cdecl] = ACTIONS(2614), - [anon_sym___clrcall] = ACTIONS(2614), - [anon_sym___stdcall] = ACTIONS(2614), - [anon_sym___fastcall] = ACTIONS(2614), - [anon_sym___thiscall] = ACTIONS(2614), - [anon_sym___vectorcall] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_RBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_case] = ACTIONS(2614), - [anon_sym_default] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_explicit] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_operator] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_namespace] = ACTIONS(2614), - [anon_sym_using] = ACTIONS(2614), - [anon_sym_static_assert] = ACTIONS(2614), - [anon_sym_concept] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), + [sym_identifier] = ACTIONS(2936), + [aux_sym_preproc_include_token1] = ACTIONS(2936), + [aux_sym_preproc_def_token1] = ACTIONS(2936), + [aux_sym_preproc_if_token1] = ACTIONS(2936), + [aux_sym_preproc_if_token2] = ACTIONS(2936), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2936), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2936), + [sym_preproc_directive] = ACTIONS(2936), + [anon_sym_LPAREN2] = ACTIONS(2938), + [anon_sym_BANG] = ACTIONS(2938), + [anon_sym_TILDE] = ACTIONS(2938), + [anon_sym_DASH] = ACTIONS(2936), + [anon_sym_PLUS] = ACTIONS(2936), + [anon_sym_STAR] = ACTIONS(2938), + [anon_sym_AMP_AMP] = ACTIONS(2938), + [anon_sym_AMP] = ACTIONS(2936), + [anon_sym_SEMI] = ACTIONS(2938), + [anon_sym_typedef] = ACTIONS(2936), + [anon_sym_extern] = ACTIONS(2936), + [anon_sym___attribute__] = ACTIONS(2936), + [anon_sym_COLON_COLON] = ACTIONS(2938), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2938), + [anon_sym___declspec] = ACTIONS(2936), + [anon_sym___based] = ACTIONS(2936), + [anon_sym___cdecl] = ACTIONS(2936), + [anon_sym___clrcall] = ACTIONS(2936), + [anon_sym___stdcall] = ACTIONS(2936), + [anon_sym___fastcall] = ACTIONS(2936), + [anon_sym___thiscall] = ACTIONS(2936), + [anon_sym___vectorcall] = ACTIONS(2936), + [anon_sym_LBRACE] = ACTIONS(2938), + [anon_sym_LBRACK] = ACTIONS(2936), + [anon_sym_static] = ACTIONS(2936), + [anon_sym_register] = ACTIONS(2936), + [anon_sym_inline] = ACTIONS(2936), + [anon_sym_thread_local] = ACTIONS(2936), + [anon_sym_const] = ACTIONS(2936), + [anon_sym_constexpr] = ACTIONS(2936), + [anon_sym_volatile] = ACTIONS(2936), + [anon_sym_restrict] = ACTIONS(2936), + [anon_sym___restrict__] = ACTIONS(2936), + [anon_sym__Atomic] = ACTIONS(2936), + [anon_sym__Noreturn] = ACTIONS(2936), + [anon_sym_noreturn] = ACTIONS(2936), + [anon_sym_mutable] = ACTIONS(2936), + [anon_sym_constinit] = ACTIONS(2936), + [anon_sym_consteval] = ACTIONS(2936), + [anon_sym_signed] = ACTIONS(2936), + [anon_sym_unsigned] = ACTIONS(2936), + [anon_sym_long] = ACTIONS(2936), + [anon_sym_short] = ACTIONS(2936), + [sym_primitive_type] = ACTIONS(2936), + [anon_sym_enum] = ACTIONS(2936), + [anon_sym_class] = ACTIONS(2936), + [anon_sym_struct] = ACTIONS(2936), + [anon_sym_union] = ACTIONS(2936), + [anon_sym_if] = ACTIONS(2936), + [anon_sym_else] = ACTIONS(2936), + [anon_sym_switch] = ACTIONS(2936), + [anon_sym_case] = ACTIONS(2936), + [anon_sym_default] = ACTIONS(2936), + [anon_sym_while] = ACTIONS(2936), + [anon_sym_do] = ACTIONS(2936), + [anon_sym_for] = ACTIONS(2936), + [anon_sym_return] = ACTIONS(2936), + [anon_sym_break] = ACTIONS(2936), + [anon_sym_continue] = ACTIONS(2936), + [anon_sym_goto] = ACTIONS(2936), + [anon_sym_not] = ACTIONS(2936), + [anon_sym_compl] = ACTIONS(2936), + [anon_sym_DASH_DASH] = ACTIONS(2938), + [anon_sym_PLUS_PLUS] = ACTIONS(2938), + [anon_sym_sizeof] = ACTIONS(2936), + [anon_sym_offsetof] = ACTIONS(2936), + [anon_sym__Generic] = ACTIONS(2936), + [anon_sym_asm] = ACTIONS(2936), + [anon_sym___asm__] = ACTIONS(2936), + [sym_number_literal] = ACTIONS(2938), + [anon_sym_L_SQUOTE] = ACTIONS(2938), + [anon_sym_u_SQUOTE] = ACTIONS(2938), + [anon_sym_U_SQUOTE] = ACTIONS(2938), + [anon_sym_u8_SQUOTE] = ACTIONS(2938), + [anon_sym_SQUOTE] = ACTIONS(2938), + [anon_sym_L_DQUOTE] = ACTIONS(2938), + [anon_sym_u_DQUOTE] = ACTIONS(2938), + [anon_sym_U_DQUOTE] = ACTIONS(2938), + [anon_sym_u8_DQUOTE] = ACTIONS(2938), + [anon_sym_DQUOTE] = ACTIONS(2938), + [sym_true] = ACTIONS(2936), + [sym_false] = ACTIONS(2936), + [anon_sym_NULL] = ACTIONS(2936), + [anon_sym_nullptr] = ACTIONS(2936), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2936), + [anon_sym_decltype] = ACTIONS(2936), + [anon_sym_virtual] = ACTIONS(2936), + [anon_sym_explicit] = ACTIONS(2936), + [anon_sym_typename] = ACTIONS(2936), + [anon_sym_template] = ACTIONS(2936), + [anon_sym_operator] = ACTIONS(2936), + [anon_sym_try] = ACTIONS(2936), + [anon_sym_delete] = ACTIONS(2936), + [anon_sym_throw] = ACTIONS(2936), + [anon_sym_namespace] = ACTIONS(2936), + [anon_sym_using] = ACTIONS(2936), + [anon_sym_static_assert] = ACTIONS(2936), + [anon_sym_concept] = ACTIONS(2936), + [anon_sym_co_return] = ACTIONS(2936), + [anon_sym_co_yield] = ACTIONS(2936), + [anon_sym_R_DQUOTE] = ACTIONS(2938), + [anon_sym_LR_DQUOTE] = ACTIONS(2938), + [anon_sym_uR_DQUOTE] = ACTIONS(2938), + [anon_sym_UR_DQUOTE] = ACTIONS(2938), + [anon_sym_u8R_DQUOTE] = ACTIONS(2938), + [anon_sym_co_await] = ACTIONS(2936), + [anon_sym_new] = ACTIONS(2936), + [anon_sym_requires] = ACTIONS(2936), + [sym_this] = ACTIONS(2936), }, [858] = { - [sym_identifier] = ACTIONS(2614), - [aux_sym_preproc_include_token1] = ACTIONS(2614), - [aux_sym_preproc_def_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2614), - [sym_preproc_directive] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP_AMP] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2614), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym___based] = ACTIONS(2614), - [anon_sym___cdecl] = ACTIONS(2614), - [anon_sym___clrcall] = ACTIONS(2614), - [anon_sym___stdcall] = ACTIONS(2614), - [anon_sym___fastcall] = ACTIONS(2614), - [anon_sym___thiscall] = ACTIONS(2614), - [anon_sym___vectorcall] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_RBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_case] = ACTIONS(2614), - [anon_sym_default] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_explicit] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_operator] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_namespace] = ACTIONS(2614), - [anon_sym_using] = ACTIONS(2614), - [anon_sym_static_assert] = ACTIONS(2614), - [anon_sym_concept] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), + [sym_identifier] = ACTIONS(2932), + [aux_sym_preproc_include_token1] = ACTIONS(2932), + [aux_sym_preproc_def_token1] = ACTIONS(2932), + [aux_sym_preproc_if_token1] = ACTIONS(2932), + [aux_sym_preproc_if_token2] = ACTIONS(2932), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2932), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2932), + [sym_preproc_directive] = ACTIONS(2932), + [anon_sym_LPAREN2] = ACTIONS(2934), + [anon_sym_BANG] = ACTIONS(2934), + [anon_sym_TILDE] = ACTIONS(2934), + [anon_sym_DASH] = ACTIONS(2932), + [anon_sym_PLUS] = ACTIONS(2932), + [anon_sym_STAR] = ACTIONS(2934), + [anon_sym_AMP_AMP] = ACTIONS(2934), + [anon_sym_AMP] = ACTIONS(2932), + [anon_sym_SEMI] = ACTIONS(2934), + [anon_sym_typedef] = ACTIONS(2932), + [anon_sym_extern] = ACTIONS(2932), + [anon_sym___attribute__] = ACTIONS(2932), + [anon_sym_COLON_COLON] = ACTIONS(2934), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2934), + [anon_sym___declspec] = ACTIONS(2932), + [anon_sym___based] = ACTIONS(2932), + [anon_sym___cdecl] = ACTIONS(2932), + [anon_sym___clrcall] = ACTIONS(2932), + [anon_sym___stdcall] = ACTIONS(2932), + [anon_sym___fastcall] = ACTIONS(2932), + [anon_sym___thiscall] = ACTIONS(2932), + [anon_sym___vectorcall] = ACTIONS(2932), + [anon_sym_LBRACE] = ACTIONS(2934), + [anon_sym_LBRACK] = ACTIONS(2932), + [anon_sym_static] = ACTIONS(2932), + [anon_sym_register] = ACTIONS(2932), + [anon_sym_inline] = ACTIONS(2932), + [anon_sym_thread_local] = ACTIONS(2932), + [anon_sym_const] = ACTIONS(2932), + [anon_sym_constexpr] = ACTIONS(2932), + [anon_sym_volatile] = ACTIONS(2932), + [anon_sym_restrict] = ACTIONS(2932), + [anon_sym___restrict__] = ACTIONS(2932), + [anon_sym__Atomic] = ACTIONS(2932), + [anon_sym__Noreturn] = ACTIONS(2932), + [anon_sym_noreturn] = ACTIONS(2932), + [anon_sym_mutable] = ACTIONS(2932), + [anon_sym_constinit] = ACTIONS(2932), + [anon_sym_consteval] = ACTIONS(2932), + [anon_sym_signed] = ACTIONS(2932), + [anon_sym_unsigned] = ACTIONS(2932), + [anon_sym_long] = ACTIONS(2932), + [anon_sym_short] = ACTIONS(2932), + [sym_primitive_type] = ACTIONS(2932), + [anon_sym_enum] = ACTIONS(2932), + [anon_sym_class] = ACTIONS(2932), + [anon_sym_struct] = ACTIONS(2932), + [anon_sym_union] = ACTIONS(2932), + [anon_sym_if] = ACTIONS(2932), + [anon_sym_else] = ACTIONS(2932), + [anon_sym_switch] = ACTIONS(2932), + [anon_sym_case] = ACTIONS(2932), + [anon_sym_default] = ACTIONS(2932), + [anon_sym_while] = ACTIONS(2932), + [anon_sym_do] = ACTIONS(2932), + [anon_sym_for] = ACTIONS(2932), + [anon_sym_return] = ACTIONS(2932), + [anon_sym_break] = ACTIONS(2932), + [anon_sym_continue] = ACTIONS(2932), + [anon_sym_goto] = ACTIONS(2932), + [anon_sym_not] = ACTIONS(2932), + [anon_sym_compl] = ACTIONS(2932), + [anon_sym_DASH_DASH] = ACTIONS(2934), + [anon_sym_PLUS_PLUS] = ACTIONS(2934), + [anon_sym_sizeof] = ACTIONS(2932), + [anon_sym_offsetof] = ACTIONS(2932), + [anon_sym__Generic] = ACTIONS(2932), + [anon_sym_asm] = ACTIONS(2932), + [anon_sym___asm__] = ACTIONS(2932), + [sym_number_literal] = ACTIONS(2934), + [anon_sym_L_SQUOTE] = ACTIONS(2934), + [anon_sym_u_SQUOTE] = ACTIONS(2934), + [anon_sym_U_SQUOTE] = ACTIONS(2934), + [anon_sym_u8_SQUOTE] = ACTIONS(2934), + [anon_sym_SQUOTE] = ACTIONS(2934), + [anon_sym_L_DQUOTE] = ACTIONS(2934), + [anon_sym_u_DQUOTE] = ACTIONS(2934), + [anon_sym_U_DQUOTE] = ACTIONS(2934), + [anon_sym_u8_DQUOTE] = ACTIONS(2934), + [anon_sym_DQUOTE] = ACTIONS(2934), + [sym_true] = ACTIONS(2932), + [sym_false] = ACTIONS(2932), + [anon_sym_NULL] = ACTIONS(2932), + [anon_sym_nullptr] = ACTIONS(2932), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2932), + [anon_sym_decltype] = ACTIONS(2932), + [anon_sym_virtual] = ACTIONS(2932), + [anon_sym_explicit] = ACTIONS(2932), + [anon_sym_typename] = ACTIONS(2932), + [anon_sym_template] = ACTIONS(2932), + [anon_sym_operator] = ACTIONS(2932), + [anon_sym_try] = ACTIONS(2932), + [anon_sym_delete] = ACTIONS(2932), + [anon_sym_throw] = ACTIONS(2932), + [anon_sym_namespace] = ACTIONS(2932), + [anon_sym_using] = ACTIONS(2932), + [anon_sym_static_assert] = ACTIONS(2932), + [anon_sym_concept] = ACTIONS(2932), + [anon_sym_co_return] = ACTIONS(2932), + [anon_sym_co_yield] = ACTIONS(2932), + [anon_sym_R_DQUOTE] = ACTIONS(2934), + [anon_sym_LR_DQUOTE] = ACTIONS(2934), + [anon_sym_uR_DQUOTE] = ACTIONS(2934), + [anon_sym_UR_DQUOTE] = ACTIONS(2934), + [anon_sym_u8R_DQUOTE] = ACTIONS(2934), + [anon_sym_co_await] = ACTIONS(2932), + [anon_sym_new] = ACTIONS(2932), + [anon_sym_requires] = ACTIONS(2932), + [sym_this] = ACTIONS(2932), }, [859] = { - [sym_identifier] = ACTIONS(2614), - [aux_sym_preproc_include_token1] = ACTIONS(2614), - [aux_sym_preproc_def_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2614), - [sym_preproc_directive] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP_AMP] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2614), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym___based] = ACTIONS(2614), - [anon_sym___cdecl] = ACTIONS(2614), - [anon_sym___clrcall] = ACTIONS(2614), - [anon_sym___stdcall] = ACTIONS(2614), - [anon_sym___fastcall] = ACTIONS(2614), - [anon_sym___thiscall] = ACTIONS(2614), - [anon_sym___vectorcall] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_RBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_case] = ACTIONS(2614), - [anon_sym_default] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_explicit] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_operator] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_namespace] = ACTIONS(2614), - [anon_sym_using] = ACTIONS(2614), - [anon_sym_static_assert] = ACTIONS(2614), - [anon_sym_concept] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), + [sym_identifier] = ACTIONS(3044), + [aux_sym_preproc_include_token1] = ACTIONS(3044), + [aux_sym_preproc_def_token1] = ACTIONS(3044), + [aux_sym_preproc_if_token1] = ACTIONS(3044), + [aux_sym_preproc_if_token2] = ACTIONS(3044), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3044), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3044), + [sym_preproc_directive] = ACTIONS(3044), + [anon_sym_LPAREN2] = ACTIONS(3046), + [anon_sym_BANG] = ACTIONS(3046), + [anon_sym_TILDE] = ACTIONS(3046), + [anon_sym_DASH] = ACTIONS(3044), + [anon_sym_PLUS] = ACTIONS(3044), + [anon_sym_STAR] = ACTIONS(3046), + [anon_sym_AMP_AMP] = ACTIONS(3046), + [anon_sym_AMP] = ACTIONS(3044), + [anon_sym_SEMI] = ACTIONS(3046), + [anon_sym_typedef] = ACTIONS(3044), + [anon_sym_extern] = ACTIONS(3044), + [anon_sym___attribute__] = ACTIONS(3044), + [anon_sym_COLON_COLON] = ACTIONS(3046), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3046), + [anon_sym___declspec] = ACTIONS(3044), + [anon_sym___based] = ACTIONS(3044), + [anon_sym___cdecl] = ACTIONS(3044), + [anon_sym___clrcall] = ACTIONS(3044), + [anon_sym___stdcall] = ACTIONS(3044), + [anon_sym___fastcall] = ACTIONS(3044), + [anon_sym___thiscall] = ACTIONS(3044), + [anon_sym___vectorcall] = ACTIONS(3044), + [anon_sym_LBRACE] = ACTIONS(3046), + [anon_sym_LBRACK] = ACTIONS(3044), + [anon_sym_static] = ACTIONS(3044), + [anon_sym_register] = ACTIONS(3044), + [anon_sym_inline] = ACTIONS(3044), + [anon_sym_thread_local] = ACTIONS(3044), + [anon_sym_const] = ACTIONS(3044), + [anon_sym_constexpr] = ACTIONS(3044), + [anon_sym_volatile] = ACTIONS(3044), + [anon_sym_restrict] = ACTIONS(3044), + [anon_sym___restrict__] = ACTIONS(3044), + [anon_sym__Atomic] = ACTIONS(3044), + [anon_sym__Noreturn] = ACTIONS(3044), + [anon_sym_noreturn] = ACTIONS(3044), + [anon_sym_mutable] = ACTIONS(3044), + [anon_sym_constinit] = ACTIONS(3044), + [anon_sym_consteval] = ACTIONS(3044), + [anon_sym_signed] = ACTIONS(3044), + [anon_sym_unsigned] = ACTIONS(3044), + [anon_sym_long] = ACTIONS(3044), + [anon_sym_short] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(3044), + [anon_sym_enum] = ACTIONS(3044), + [anon_sym_class] = ACTIONS(3044), + [anon_sym_struct] = ACTIONS(3044), + [anon_sym_union] = ACTIONS(3044), + [anon_sym_if] = ACTIONS(3044), + [anon_sym_else] = ACTIONS(3044), + [anon_sym_switch] = ACTIONS(3044), + [anon_sym_case] = ACTIONS(3044), + [anon_sym_default] = ACTIONS(3044), + [anon_sym_while] = ACTIONS(3044), + [anon_sym_do] = ACTIONS(3044), + [anon_sym_for] = ACTIONS(3044), + [anon_sym_return] = ACTIONS(3044), + [anon_sym_break] = ACTIONS(3044), + [anon_sym_continue] = ACTIONS(3044), + [anon_sym_goto] = ACTIONS(3044), + [anon_sym_not] = ACTIONS(3044), + [anon_sym_compl] = ACTIONS(3044), + [anon_sym_DASH_DASH] = ACTIONS(3046), + [anon_sym_PLUS_PLUS] = ACTIONS(3046), + [anon_sym_sizeof] = ACTIONS(3044), + [anon_sym_offsetof] = ACTIONS(3044), + [anon_sym__Generic] = ACTIONS(3044), + [anon_sym_asm] = ACTIONS(3044), + [anon_sym___asm__] = ACTIONS(3044), + [sym_number_literal] = ACTIONS(3046), + [anon_sym_L_SQUOTE] = ACTIONS(3046), + [anon_sym_u_SQUOTE] = ACTIONS(3046), + [anon_sym_U_SQUOTE] = ACTIONS(3046), + [anon_sym_u8_SQUOTE] = ACTIONS(3046), + [anon_sym_SQUOTE] = ACTIONS(3046), + [anon_sym_L_DQUOTE] = ACTIONS(3046), + [anon_sym_u_DQUOTE] = ACTIONS(3046), + [anon_sym_U_DQUOTE] = ACTIONS(3046), + [anon_sym_u8_DQUOTE] = ACTIONS(3046), + [anon_sym_DQUOTE] = ACTIONS(3046), + [sym_true] = ACTIONS(3044), + [sym_false] = ACTIONS(3044), + [anon_sym_NULL] = ACTIONS(3044), + [anon_sym_nullptr] = ACTIONS(3044), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3044), + [anon_sym_decltype] = ACTIONS(3044), + [anon_sym_virtual] = ACTIONS(3044), + [anon_sym_explicit] = ACTIONS(3044), + [anon_sym_typename] = ACTIONS(3044), + [anon_sym_template] = ACTIONS(3044), + [anon_sym_operator] = ACTIONS(3044), + [anon_sym_try] = ACTIONS(3044), + [anon_sym_delete] = ACTIONS(3044), + [anon_sym_throw] = ACTIONS(3044), + [anon_sym_namespace] = ACTIONS(3044), + [anon_sym_using] = ACTIONS(3044), + [anon_sym_static_assert] = ACTIONS(3044), + [anon_sym_concept] = ACTIONS(3044), + [anon_sym_co_return] = ACTIONS(3044), + [anon_sym_co_yield] = ACTIONS(3044), + [anon_sym_R_DQUOTE] = ACTIONS(3046), + [anon_sym_LR_DQUOTE] = ACTIONS(3046), + [anon_sym_uR_DQUOTE] = ACTIONS(3046), + [anon_sym_UR_DQUOTE] = ACTIONS(3046), + [anon_sym_u8R_DQUOTE] = ACTIONS(3046), + [anon_sym_co_await] = ACTIONS(3044), + [anon_sym_new] = ACTIONS(3044), + [anon_sym_requires] = ACTIONS(3044), + [sym_this] = ACTIONS(3044), }, [860] = { - [sym_identifier] = ACTIONS(2614), - [aux_sym_preproc_include_token1] = ACTIONS(2614), - [aux_sym_preproc_def_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2614), - [sym_preproc_directive] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP_AMP] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2614), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym___based] = ACTIONS(2614), - [anon_sym___cdecl] = ACTIONS(2614), - [anon_sym___clrcall] = ACTIONS(2614), - [anon_sym___stdcall] = ACTIONS(2614), - [anon_sym___fastcall] = ACTIONS(2614), - [anon_sym___thiscall] = ACTIONS(2614), - [anon_sym___vectorcall] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_RBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_case] = ACTIONS(2614), - [anon_sym_default] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_explicit] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_operator] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_namespace] = ACTIONS(2614), - [anon_sym_using] = ACTIONS(2614), - [anon_sym_static_assert] = ACTIONS(2614), - [anon_sym_concept] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), + [sym_identifier] = ACTIONS(3079), + [aux_sym_preproc_include_token1] = ACTIONS(3079), + [aux_sym_preproc_def_token1] = ACTIONS(3079), + [aux_sym_preproc_if_token1] = ACTIONS(3079), + [aux_sym_preproc_if_token2] = ACTIONS(3079), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3079), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3079), + [sym_preproc_directive] = ACTIONS(3079), + [anon_sym_LPAREN2] = ACTIONS(3081), + [anon_sym_BANG] = ACTIONS(3081), + [anon_sym_TILDE] = ACTIONS(3081), + [anon_sym_DASH] = ACTIONS(3079), + [anon_sym_PLUS] = ACTIONS(3079), + [anon_sym_STAR] = ACTIONS(3081), + [anon_sym_AMP_AMP] = ACTIONS(3081), + [anon_sym_AMP] = ACTIONS(3079), + [anon_sym_SEMI] = ACTIONS(3081), + [anon_sym_typedef] = ACTIONS(3079), + [anon_sym_extern] = ACTIONS(3079), + [anon_sym___attribute__] = ACTIONS(3079), + [anon_sym_COLON_COLON] = ACTIONS(3081), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3081), + [anon_sym___declspec] = ACTIONS(3079), + [anon_sym___based] = ACTIONS(3079), + [anon_sym___cdecl] = ACTIONS(3079), + [anon_sym___clrcall] = ACTIONS(3079), + [anon_sym___stdcall] = ACTIONS(3079), + [anon_sym___fastcall] = ACTIONS(3079), + [anon_sym___thiscall] = ACTIONS(3079), + [anon_sym___vectorcall] = ACTIONS(3079), + [anon_sym_LBRACE] = ACTIONS(3081), + [anon_sym_LBRACK] = ACTIONS(3079), + [anon_sym_static] = ACTIONS(3079), + [anon_sym_register] = ACTIONS(3079), + [anon_sym_inline] = ACTIONS(3079), + [anon_sym_thread_local] = ACTIONS(3079), + [anon_sym_const] = ACTIONS(3079), + [anon_sym_constexpr] = ACTIONS(3079), + [anon_sym_volatile] = ACTIONS(3079), + [anon_sym_restrict] = ACTIONS(3079), + [anon_sym___restrict__] = ACTIONS(3079), + [anon_sym__Atomic] = ACTIONS(3079), + [anon_sym__Noreturn] = ACTIONS(3079), + [anon_sym_noreturn] = ACTIONS(3079), + [anon_sym_mutable] = ACTIONS(3079), + [anon_sym_constinit] = ACTIONS(3079), + [anon_sym_consteval] = ACTIONS(3079), + [anon_sym_signed] = ACTIONS(3079), + [anon_sym_unsigned] = ACTIONS(3079), + [anon_sym_long] = ACTIONS(3079), + [anon_sym_short] = ACTIONS(3079), + [sym_primitive_type] = ACTIONS(3079), + [anon_sym_enum] = ACTIONS(3079), + [anon_sym_class] = ACTIONS(3079), + [anon_sym_struct] = ACTIONS(3079), + [anon_sym_union] = ACTIONS(3079), + [anon_sym_if] = ACTIONS(3079), + [anon_sym_else] = ACTIONS(3597), + [anon_sym_switch] = ACTIONS(3079), + [anon_sym_case] = ACTIONS(3079), + [anon_sym_default] = ACTIONS(3079), + [anon_sym_while] = ACTIONS(3079), + [anon_sym_do] = ACTIONS(3079), + [anon_sym_for] = ACTIONS(3079), + [anon_sym_return] = ACTIONS(3079), + [anon_sym_break] = ACTIONS(3079), + [anon_sym_continue] = ACTIONS(3079), + [anon_sym_goto] = ACTIONS(3079), + [anon_sym_not] = ACTIONS(3079), + [anon_sym_compl] = ACTIONS(3079), + [anon_sym_DASH_DASH] = ACTIONS(3081), + [anon_sym_PLUS_PLUS] = ACTIONS(3081), + [anon_sym_sizeof] = ACTIONS(3079), + [anon_sym_offsetof] = ACTIONS(3079), + [anon_sym__Generic] = ACTIONS(3079), + [anon_sym_asm] = ACTIONS(3079), + [anon_sym___asm__] = ACTIONS(3079), + [sym_number_literal] = ACTIONS(3081), + [anon_sym_L_SQUOTE] = ACTIONS(3081), + [anon_sym_u_SQUOTE] = ACTIONS(3081), + [anon_sym_U_SQUOTE] = ACTIONS(3081), + [anon_sym_u8_SQUOTE] = ACTIONS(3081), + [anon_sym_SQUOTE] = ACTIONS(3081), + [anon_sym_L_DQUOTE] = ACTIONS(3081), + [anon_sym_u_DQUOTE] = ACTIONS(3081), + [anon_sym_U_DQUOTE] = ACTIONS(3081), + [anon_sym_u8_DQUOTE] = ACTIONS(3081), + [anon_sym_DQUOTE] = ACTIONS(3081), + [sym_true] = ACTIONS(3079), + [sym_false] = ACTIONS(3079), + [anon_sym_NULL] = ACTIONS(3079), + [anon_sym_nullptr] = ACTIONS(3079), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3079), + [anon_sym_decltype] = ACTIONS(3079), + [anon_sym_virtual] = ACTIONS(3079), + [anon_sym_explicit] = ACTIONS(3079), + [anon_sym_typename] = ACTIONS(3079), + [anon_sym_template] = ACTIONS(3079), + [anon_sym_operator] = ACTIONS(3079), + [anon_sym_try] = ACTIONS(3079), + [anon_sym_delete] = ACTIONS(3079), + [anon_sym_throw] = ACTIONS(3079), + [anon_sym_namespace] = ACTIONS(3079), + [anon_sym_using] = ACTIONS(3079), + [anon_sym_static_assert] = ACTIONS(3079), + [anon_sym_concept] = ACTIONS(3079), + [anon_sym_co_return] = ACTIONS(3079), + [anon_sym_co_yield] = ACTIONS(3079), + [anon_sym_R_DQUOTE] = ACTIONS(3081), + [anon_sym_LR_DQUOTE] = ACTIONS(3081), + [anon_sym_uR_DQUOTE] = ACTIONS(3081), + [anon_sym_UR_DQUOTE] = ACTIONS(3081), + [anon_sym_u8R_DQUOTE] = ACTIONS(3081), + [anon_sym_co_await] = ACTIONS(3079), + [anon_sym_new] = ACTIONS(3079), + [anon_sym_requires] = ACTIONS(3079), + [sym_this] = ACTIONS(3079), }, [861] = { - [sym_identifier] = ACTIONS(2482), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2484), - [anon_sym_AMP] = ACTIONS(2482), - [anon_sym_SEMI] = ACTIONS(2484), - [anon_sym_typedef] = ACTIONS(2482), - [anon_sym_extern] = ACTIONS(2482), - [anon_sym___attribute__] = ACTIONS(2482), - [anon_sym_COLON_COLON] = ACTIONS(2484), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2484), - [anon_sym___declspec] = ACTIONS(2482), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2482), - [anon_sym_static] = ACTIONS(2482), - [anon_sym_register] = ACTIONS(2482), - [anon_sym_inline] = ACTIONS(2482), - [anon_sym_thread_local] = ACTIONS(2482), - [anon_sym_const] = ACTIONS(2482), - [anon_sym_volatile] = ACTIONS(2482), - [anon_sym_restrict] = ACTIONS(2482), - [anon_sym__Atomic] = ACTIONS(2482), - [anon_sym_mutable] = ACTIONS(2482), - [anon_sym_constexpr] = ACTIONS(2482), - [anon_sym_constinit] = ACTIONS(2482), - [anon_sym_consteval] = ACTIONS(2482), - [anon_sym_signed] = ACTIONS(2482), - [anon_sym_unsigned] = ACTIONS(2482), - [anon_sym_long] = ACTIONS(2482), - [anon_sym_short] = ACTIONS(2482), - [sym_primitive_type] = ACTIONS(2482), - [anon_sym_enum] = ACTIONS(2482), - [anon_sym_class] = ACTIONS(2482), - [anon_sym_struct] = ACTIONS(2482), - [anon_sym_union] = ACTIONS(2482), - [anon_sym_if] = ACTIONS(2482), - [anon_sym_else] = ACTIONS(2952), - [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_return] = ACTIONS(2482), - [anon_sym_break] = ACTIONS(2482), - [anon_sym_continue] = ACTIONS(2482), - [anon_sym_goto] = ACTIONS(2482), - [anon_sym_not] = ACTIONS(2482), - [anon_sym_compl] = ACTIONS(2482), - [anon_sym_DASH_DASH] = ACTIONS(2484), - [anon_sym_PLUS_PLUS] = ACTIONS(2484), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2484), - [anon_sym_u_DQUOTE] = ACTIONS(2484), - [anon_sym_U_DQUOTE] = ACTIONS(2484), - [anon_sym_u8_DQUOTE] = ACTIONS(2484), - [anon_sym_DQUOTE] = ACTIONS(2484), - [sym_true] = ACTIONS(2482), - [sym_false] = ACTIONS(2482), - [sym_null] = ACTIONS(2482), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2482), - [anon_sym_decltype] = ACTIONS(2482), - [anon_sym_virtual] = ACTIONS(2482), - [anon_sym_explicit] = ACTIONS(2482), - [anon_sym_typename] = ACTIONS(2482), - [anon_sym_template] = ACTIONS(2482), - [anon_sym_operator] = ACTIONS(2482), - [anon_sym_try] = ACTIONS(2482), - [anon_sym_delete] = ACTIONS(2482), - [anon_sym_throw] = ACTIONS(2482), - [anon_sym_namespace] = ACTIONS(2482), - [anon_sym_using] = ACTIONS(2482), - [anon_sym_static_assert] = ACTIONS(2482), - [anon_sym_concept] = ACTIONS(2482), - [anon_sym_co_return] = ACTIONS(2482), - [anon_sym_co_yield] = ACTIONS(2482), - [anon_sym_R_DQUOTE] = ACTIONS(2484), - [anon_sym_LR_DQUOTE] = ACTIONS(2484), - [anon_sym_uR_DQUOTE] = ACTIONS(2484), - [anon_sym_UR_DQUOTE] = ACTIONS(2484), - [anon_sym_u8R_DQUOTE] = ACTIONS(2484), - [anon_sym_co_await] = ACTIONS(2482), - [anon_sym_new] = ACTIONS(2482), - [anon_sym_requires] = ACTIONS(2482), - [sym_this] = ACTIONS(2482), - [sym_nullptr] = ACTIONS(2482), + [sym__expression] = STATE(4180), + [sym__expression_not_binary] = STATE(4369), + [sym_conditional_expression] = STATE(4369), + [sym_assignment_expression] = STATE(4369), + [sym_pointer_expression] = STATE(3541), + [sym_unary_expression] = STATE(4369), + [sym_binary_expression] = STATE(4369), + [sym_update_expression] = STATE(4369), + [sym_cast_expression] = STATE(4369), + [sym_sizeof_expression] = STATE(4369), + [sym_offsetof_expression] = STATE(4369), + [sym_generic_expression] = STATE(4369), + [sym_subscript_expression] = STATE(3541), + [sym_call_expression] = STATE(3541), + [sym_gnu_asm_expression] = STATE(4369), + [sym_field_expression] = STATE(3541), + [sym_compound_literal_expression] = STATE(4369), + [sym_parenthesized_expression] = STATE(3541), + [sym_initializer_list] = STATE(4485), + [sym_char_literal] = STATE(4131), + [sym_concatenated_string] = STATE(4131), + [sym_string_literal] = STATE(3542), + [sym_null] = STATE(4369), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6872), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(4369), + [sym_raw_string_literal] = STATE(3542), + [sym_co_await_expression] = STATE(4369), + [sym_new_expression] = STATE(4369), + [sym_delete_expression] = STATE(4369), + [sym_requires_clause] = STATE(4369), + [sym_requires_expression] = STATE(4369), + [sym_lambda_expression] = STATE(4369), + [sym_lambda_capture_specifier] = STATE(5208), + [sym_fold_expression] = STATE(4369), + [sym_parameter_pack_expansion] = STATE(4369), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5289), + [sym_qualified_identifier] = STATE(3541), + [sym_qualified_type_identifier] = STATE(6872), + [sym_user_defined_literal] = STATE(4369), + [sym_identifier] = ACTIONS(3599), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1935), + [anon_sym_COMMA] = ACTIONS(1935), + [anon_sym_LPAREN2] = ACTIONS(2618), + [anon_sym_BANG] = ACTIONS(2622), + [anon_sym_TILDE] = ACTIONS(2620), + [anon_sym_DASH] = ACTIONS(2622), + [anon_sym_PLUS] = ACTIONS(2622), + [anon_sym_STAR] = ACTIONS(2624), + [anon_sym_SLASH] = ACTIONS(1943), + [anon_sym_PERCENT] = ACTIONS(1935), + [anon_sym_PIPE_PIPE] = ACTIONS(1935), + [anon_sym_AMP_AMP] = ACTIONS(1935), + [anon_sym_PIPE] = ACTIONS(1943), + [anon_sym_CARET] = ACTIONS(1935), + [anon_sym_AMP] = ACTIONS(2039), + [anon_sym_EQ_EQ] = ACTIONS(1935), + [anon_sym_BANG_EQ] = ACTIONS(1935), + [anon_sym_GT] = ACTIONS(1943), + [anon_sym_GT_EQ] = ACTIONS(1943), + [anon_sym_LT_EQ] = ACTIONS(1943), + [anon_sym_LT] = ACTIONS(1943), + [anon_sym_LT_LT] = ACTIONS(1935), + [anon_sym_GT_GT] = ACTIONS(1943), + [anon_sym_COLON_COLON] = ACTIONS(2626), + [anon_sym_LBRACE] = ACTIONS(3601), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(2045), + [anon_sym_QMARK] = ACTIONS(1935), + [anon_sym_not] = ACTIONS(2622), + [anon_sym_compl] = ACTIONS(2622), + [anon_sym_LT_EQ_GT] = ACTIONS(1935), + [anon_sym_or] = ACTIONS(1943), + [anon_sym_and] = ACTIONS(1943), + [anon_sym_bitor] = ACTIONS(1943), + [anon_sym_xor] = ACTIONS(1943), + [anon_sym_bitand] = ACTIONS(1943), + [anon_sym_not_eq] = ACTIONS(1943), + [anon_sym_DASH_DASH] = ACTIONS(2640), + [anon_sym_PLUS_PLUS] = ACTIONS(2640), + [anon_sym_sizeof] = ACTIONS(2642), + [anon_sym_offsetof] = ACTIONS(2644), + [anon_sym__Generic] = ACTIONS(2646), + [anon_sym_asm] = ACTIONS(2648), + [anon_sym___asm__] = ACTIONS(2648), + [anon_sym_DOT] = ACTIONS(1943), + [anon_sym_DASH_GT] = ACTIONS(1935), + [sym_number_literal] = ACTIONS(2650), + [anon_sym_L_SQUOTE] = ACTIONS(2652), + [anon_sym_u_SQUOTE] = ACTIONS(2652), + [anon_sym_U_SQUOTE] = ACTIONS(2652), + [anon_sym_u8_SQUOTE] = ACTIONS(2652), + [anon_sym_SQUOTE] = ACTIONS(2652), + [anon_sym_L_DQUOTE] = ACTIONS(2654), + [anon_sym_u_DQUOTE] = ACTIONS(2654), + [anon_sym_U_DQUOTE] = ACTIONS(2654), + [anon_sym_u8_DQUOTE] = ACTIONS(2654), + [anon_sym_DQUOTE] = ACTIONS(2654), + [sym_true] = ACTIONS(2656), + [sym_false] = ACTIONS(2656), + [anon_sym_NULL] = ACTIONS(2658), + [anon_sym_nullptr] = ACTIONS(2658), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_GT2] = ACTIONS(1935), + [anon_sym_delete] = ACTIONS(2668), + [anon_sym_R_DQUOTE] = ACTIONS(2670), + [anon_sym_LR_DQUOTE] = ACTIONS(2670), + [anon_sym_uR_DQUOTE] = ACTIONS(2670), + [anon_sym_UR_DQUOTE] = ACTIONS(2670), + [anon_sym_u8R_DQUOTE] = ACTIONS(2670), + [anon_sym_co_await] = ACTIONS(2672), + [anon_sym_new] = ACTIONS(2674), + [anon_sym_requires] = ACTIONS(2676), + [sym_this] = ACTIONS(2656), }, [862] = { - [sym_identifier] = ACTIONS(2614), - [aux_sym_preproc_include_token1] = ACTIONS(2614), - [aux_sym_preproc_def_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2614), - [sym_preproc_directive] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP_AMP] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2614), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym___based] = ACTIONS(2614), - [anon_sym___cdecl] = ACTIONS(2614), - [anon_sym___clrcall] = ACTIONS(2614), - [anon_sym___stdcall] = ACTIONS(2614), - [anon_sym___fastcall] = ACTIONS(2614), - [anon_sym___thiscall] = ACTIONS(2614), - [anon_sym___vectorcall] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_RBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_case] = ACTIONS(2614), - [anon_sym_default] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_explicit] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_operator] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_namespace] = ACTIONS(2614), - [anon_sym_using] = ACTIONS(2614), - [anon_sym_static_assert] = ACTIONS(2614), - [anon_sym_concept] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), + [sym_identifier] = ACTIONS(2956), + [aux_sym_preproc_include_token1] = ACTIONS(2956), + [aux_sym_preproc_def_token1] = ACTIONS(2956), + [aux_sym_preproc_if_token1] = ACTIONS(2956), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2956), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2956), + [sym_preproc_directive] = ACTIONS(2956), + [anon_sym_LPAREN2] = ACTIONS(2958), + [anon_sym_BANG] = ACTIONS(2958), + [anon_sym_TILDE] = ACTIONS(2958), + [anon_sym_DASH] = ACTIONS(2956), + [anon_sym_PLUS] = ACTIONS(2956), + [anon_sym_STAR] = ACTIONS(2958), + [anon_sym_AMP_AMP] = ACTIONS(2958), + [anon_sym_AMP] = ACTIONS(2956), + [anon_sym_SEMI] = ACTIONS(2958), + [anon_sym_typedef] = ACTIONS(2956), + [anon_sym_extern] = ACTIONS(2956), + [anon_sym___attribute__] = ACTIONS(2956), + [anon_sym_COLON_COLON] = ACTIONS(2958), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2958), + [anon_sym___declspec] = ACTIONS(2956), + [anon_sym___based] = ACTIONS(2956), + [anon_sym___cdecl] = ACTIONS(2956), + [anon_sym___clrcall] = ACTIONS(2956), + [anon_sym___stdcall] = ACTIONS(2956), + [anon_sym___fastcall] = ACTIONS(2956), + [anon_sym___thiscall] = ACTIONS(2956), + [anon_sym___vectorcall] = ACTIONS(2956), + [anon_sym_LBRACE] = ACTIONS(2958), + [anon_sym_RBRACE] = ACTIONS(2958), + [anon_sym_LBRACK] = ACTIONS(2956), + [anon_sym_static] = ACTIONS(2956), + [anon_sym_register] = ACTIONS(2956), + [anon_sym_inline] = ACTIONS(2956), + [anon_sym_thread_local] = ACTIONS(2956), + [anon_sym_const] = ACTIONS(2956), + [anon_sym_constexpr] = ACTIONS(2956), + [anon_sym_volatile] = ACTIONS(2956), + [anon_sym_restrict] = ACTIONS(2956), + [anon_sym___restrict__] = ACTIONS(2956), + [anon_sym__Atomic] = ACTIONS(2956), + [anon_sym__Noreturn] = ACTIONS(2956), + [anon_sym_noreturn] = ACTIONS(2956), + [anon_sym_mutable] = ACTIONS(2956), + [anon_sym_constinit] = ACTIONS(2956), + [anon_sym_consteval] = ACTIONS(2956), + [anon_sym_signed] = ACTIONS(2956), + [anon_sym_unsigned] = ACTIONS(2956), + [anon_sym_long] = ACTIONS(2956), + [anon_sym_short] = ACTIONS(2956), + [sym_primitive_type] = ACTIONS(2956), + [anon_sym_enum] = ACTIONS(2956), + [anon_sym_class] = ACTIONS(2956), + [anon_sym_struct] = ACTIONS(2956), + [anon_sym_union] = ACTIONS(2956), + [anon_sym_if] = ACTIONS(2956), + [anon_sym_else] = ACTIONS(2956), + [anon_sym_switch] = ACTIONS(2956), + [anon_sym_case] = ACTIONS(2956), + [anon_sym_default] = ACTIONS(2956), + [anon_sym_while] = ACTIONS(2956), + [anon_sym_do] = ACTIONS(2956), + [anon_sym_for] = ACTIONS(2956), + [anon_sym_return] = ACTIONS(2956), + [anon_sym_break] = ACTIONS(2956), + [anon_sym_continue] = ACTIONS(2956), + [anon_sym_goto] = ACTIONS(2956), + [anon_sym_not] = ACTIONS(2956), + [anon_sym_compl] = ACTIONS(2956), + [anon_sym_DASH_DASH] = ACTIONS(2958), + [anon_sym_PLUS_PLUS] = ACTIONS(2958), + [anon_sym_sizeof] = ACTIONS(2956), + [anon_sym_offsetof] = ACTIONS(2956), + [anon_sym__Generic] = ACTIONS(2956), + [anon_sym_asm] = ACTIONS(2956), + [anon_sym___asm__] = ACTIONS(2956), + [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_L_DQUOTE] = ACTIONS(2958), + [anon_sym_u_DQUOTE] = ACTIONS(2958), + [anon_sym_U_DQUOTE] = ACTIONS(2958), + [anon_sym_u8_DQUOTE] = ACTIONS(2958), + [anon_sym_DQUOTE] = ACTIONS(2958), + [sym_true] = ACTIONS(2956), + [sym_false] = ACTIONS(2956), + [anon_sym_NULL] = ACTIONS(2956), + [anon_sym_nullptr] = ACTIONS(2956), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2956), + [anon_sym_decltype] = ACTIONS(2956), + [anon_sym_virtual] = ACTIONS(2956), + [anon_sym_explicit] = ACTIONS(2956), + [anon_sym_typename] = ACTIONS(2956), + [anon_sym_template] = ACTIONS(2956), + [anon_sym_operator] = ACTIONS(2956), + [anon_sym_try] = ACTIONS(2956), + [anon_sym_delete] = ACTIONS(2956), + [anon_sym_throw] = ACTIONS(2956), + [anon_sym_namespace] = ACTIONS(2956), + [anon_sym_using] = ACTIONS(2956), + [anon_sym_static_assert] = ACTIONS(2956), + [anon_sym_concept] = ACTIONS(2956), + [anon_sym_co_return] = ACTIONS(2956), + [anon_sym_co_yield] = ACTIONS(2956), + [anon_sym_R_DQUOTE] = ACTIONS(2958), + [anon_sym_LR_DQUOTE] = ACTIONS(2958), + [anon_sym_uR_DQUOTE] = ACTIONS(2958), + [anon_sym_UR_DQUOTE] = ACTIONS(2958), + [anon_sym_u8R_DQUOTE] = ACTIONS(2958), + [anon_sym_co_await] = ACTIONS(2956), + [anon_sym_new] = ACTIONS(2956), + [anon_sym_requires] = ACTIONS(2956), + [sym_this] = ACTIONS(2956), }, [863] = { - [sym_identifier] = ACTIONS(2614), - [aux_sym_preproc_include_token1] = ACTIONS(2614), - [aux_sym_preproc_def_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2614), - [sym_preproc_directive] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP_AMP] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2614), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym___based] = ACTIONS(2614), - [anon_sym___cdecl] = ACTIONS(2614), - [anon_sym___clrcall] = ACTIONS(2614), - [anon_sym___stdcall] = ACTIONS(2614), - [anon_sym___fastcall] = ACTIONS(2614), - [anon_sym___thiscall] = ACTIONS(2614), - [anon_sym___vectorcall] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_RBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_case] = ACTIONS(2614), - [anon_sym_default] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_explicit] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_operator] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_namespace] = ACTIONS(2614), - [anon_sym_using] = ACTIONS(2614), - [anon_sym_static_assert] = ACTIONS(2614), - [anon_sym_concept] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), + [ts_builtin_sym_end] = ACTIONS(2918), + [sym_identifier] = ACTIONS(2916), + [aux_sym_preproc_include_token1] = ACTIONS(2916), + [aux_sym_preproc_def_token1] = ACTIONS(2916), + [aux_sym_preproc_if_token1] = ACTIONS(2916), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2916), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2916), + [sym_preproc_directive] = ACTIONS(2916), + [anon_sym_LPAREN2] = ACTIONS(2918), + [anon_sym_BANG] = ACTIONS(2918), + [anon_sym_TILDE] = ACTIONS(2918), + [anon_sym_DASH] = ACTIONS(2916), + [anon_sym_PLUS] = ACTIONS(2916), + [anon_sym_STAR] = ACTIONS(2918), + [anon_sym_AMP_AMP] = ACTIONS(2918), + [anon_sym_AMP] = ACTIONS(2916), + [anon_sym_SEMI] = ACTIONS(2918), + [anon_sym_typedef] = ACTIONS(2916), + [anon_sym_extern] = ACTIONS(2916), + [anon_sym___attribute__] = ACTIONS(2916), + [anon_sym_COLON_COLON] = ACTIONS(2918), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2918), + [anon_sym___declspec] = ACTIONS(2916), + [anon_sym___based] = ACTIONS(2916), + [anon_sym___cdecl] = ACTIONS(2916), + [anon_sym___clrcall] = ACTIONS(2916), + [anon_sym___stdcall] = ACTIONS(2916), + [anon_sym___fastcall] = ACTIONS(2916), + [anon_sym___thiscall] = ACTIONS(2916), + [anon_sym___vectorcall] = ACTIONS(2916), + [anon_sym_LBRACE] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(2916), + [anon_sym_static] = ACTIONS(2916), + [anon_sym_register] = ACTIONS(2916), + [anon_sym_inline] = ACTIONS(2916), + [anon_sym_thread_local] = ACTIONS(2916), + [anon_sym_const] = ACTIONS(2916), + [anon_sym_constexpr] = ACTIONS(2916), + [anon_sym_volatile] = ACTIONS(2916), + [anon_sym_restrict] = ACTIONS(2916), + [anon_sym___restrict__] = ACTIONS(2916), + [anon_sym__Atomic] = ACTIONS(2916), + [anon_sym__Noreturn] = ACTIONS(2916), + [anon_sym_noreturn] = ACTIONS(2916), + [anon_sym_mutable] = ACTIONS(2916), + [anon_sym_constinit] = ACTIONS(2916), + [anon_sym_consteval] = ACTIONS(2916), + [anon_sym_signed] = ACTIONS(2916), + [anon_sym_unsigned] = ACTIONS(2916), + [anon_sym_long] = ACTIONS(2916), + [anon_sym_short] = ACTIONS(2916), + [sym_primitive_type] = ACTIONS(2916), + [anon_sym_enum] = ACTIONS(2916), + [anon_sym_class] = ACTIONS(2916), + [anon_sym_struct] = ACTIONS(2916), + [anon_sym_union] = ACTIONS(2916), + [anon_sym_if] = ACTIONS(2916), + [anon_sym_else] = ACTIONS(2916), + [anon_sym_switch] = ACTIONS(2916), + [anon_sym_case] = ACTIONS(2916), + [anon_sym_default] = ACTIONS(2916), + [anon_sym_while] = ACTIONS(2916), + [anon_sym_do] = ACTIONS(2916), + [anon_sym_for] = ACTIONS(2916), + [anon_sym_return] = ACTIONS(2916), + [anon_sym_break] = ACTIONS(2916), + [anon_sym_continue] = ACTIONS(2916), + [anon_sym_goto] = ACTIONS(2916), + [anon_sym_not] = ACTIONS(2916), + [anon_sym_compl] = ACTIONS(2916), + [anon_sym_DASH_DASH] = ACTIONS(2918), + [anon_sym_PLUS_PLUS] = ACTIONS(2918), + [anon_sym_sizeof] = ACTIONS(2916), + [anon_sym_offsetof] = ACTIONS(2916), + [anon_sym__Generic] = ACTIONS(2916), + [anon_sym_asm] = ACTIONS(2916), + [anon_sym___asm__] = ACTIONS(2916), + [sym_number_literal] = ACTIONS(2918), + [anon_sym_L_SQUOTE] = ACTIONS(2918), + [anon_sym_u_SQUOTE] = ACTIONS(2918), + [anon_sym_U_SQUOTE] = ACTIONS(2918), + [anon_sym_u8_SQUOTE] = ACTIONS(2918), + [anon_sym_SQUOTE] = ACTIONS(2918), + [anon_sym_L_DQUOTE] = ACTIONS(2918), + [anon_sym_u_DQUOTE] = ACTIONS(2918), + [anon_sym_U_DQUOTE] = ACTIONS(2918), + [anon_sym_u8_DQUOTE] = ACTIONS(2918), + [anon_sym_DQUOTE] = ACTIONS(2918), + [sym_true] = ACTIONS(2916), + [sym_false] = ACTIONS(2916), + [anon_sym_NULL] = ACTIONS(2916), + [anon_sym_nullptr] = ACTIONS(2916), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2916), + [anon_sym_decltype] = ACTIONS(2916), + [anon_sym_virtual] = ACTIONS(2916), + [anon_sym_explicit] = ACTIONS(2916), + [anon_sym_typename] = ACTIONS(2916), + [anon_sym_template] = ACTIONS(2916), + [anon_sym_operator] = ACTIONS(2916), + [anon_sym_try] = ACTIONS(2916), + [anon_sym_delete] = ACTIONS(2916), + [anon_sym_throw] = ACTIONS(2916), + [anon_sym_namespace] = ACTIONS(2916), + [anon_sym_using] = ACTIONS(2916), + [anon_sym_static_assert] = ACTIONS(2916), + [anon_sym_concept] = ACTIONS(2916), + [anon_sym_co_return] = ACTIONS(2916), + [anon_sym_co_yield] = ACTIONS(2916), + [anon_sym_R_DQUOTE] = ACTIONS(2918), + [anon_sym_LR_DQUOTE] = ACTIONS(2918), + [anon_sym_uR_DQUOTE] = ACTIONS(2918), + [anon_sym_UR_DQUOTE] = ACTIONS(2918), + [anon_sym_u8R_DQUOTE] = ACTIONS(2918), + [anon_sym_co_await] = ACTIONS(2916), + [anon_sym_new] = ACTIONS(2916), + [anon_sym_requires] = ACTIONS(2916), + [sym_this] = ACTIONS(2916), }, [864] = { - [sym_identifier] = ACTIONS(2614), - [aux_sym_preproc_include_token1] = ACTIONS(2614), - [aux_sym_preproc_def_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2614), - [sym_preproc_directive] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP_AMP] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2614), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym___based] = ACTIONS(2614), - [anon_sym___cdecl] = ACTIONS(2614), - [anon_sym___clrcall] = ACTIONS(2614), - [anon_sym___stdcall] = ACTIONS(2614), - [anon_sym___fastcall] = ACTIONS(2614), - [anon_sym___thiscall] = ACTIONS(2614), - [anon_sym___vectorcall] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_RBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_case] = ACTIONS(2614), - [anon_sym_default] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_explicit] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_operator] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_namespace] = ACTIONS(2614), - [anon_sym_using] = ACTIONS(2614), - [anon_sym_static_assert] = ACTIONS(2614), - [anon_sym_concept] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), + [sym_identifier] = ACTIONS(3101), + [aux_sym_preproc_include_token1] = ACTIONS(3101), + [aux_sym_preproc_def_token1] = ACTIONS(3101), + [aux_sym_preproc_if_token1] = ACTIONS(3101), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3101), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3101), + [sym_preproc_directive] = ACTIONS(3101), + [anon_sym_LPAREN2] = ACTIONS(3103), + [anon_sym_BANG] = ACTIONS(3103), + [anon_sym_TILDE] = ACTIONS(3103), + [anon_sym_DASH] = ACTIONS(3101), + [anon_sym_PLUS] = ACTIONS(3101), + [anon_sym_STAR] = ACTIONS(3103), + [anon_sym_AMP_AMP] = ACTIONS(3103), + [anon_sym_AMP] = ACTIONS(3101), + [anon_sym_SEMI] = ACTIONS(3103), + [anon_sym_typedef] = ACTIONS(3101), + [anon_sym_extern] = ACTIONS(3101), + [anon_sym___attribute__] = ACTIONS(3101), + [anon_sym_COLON_COLON] = ACTIONS(3103), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3103), + [anon_sym___declspec] = ACTIONS(3101), + [anon_sym___based] = ACTIONS(3101), + [anon_sym___cdecl] = ACTIONS(3101), + [anon_sym___clrcall] = ACTIONS(3101), + [anon_sym___stdcall] = ACTIONS(3101), + [anon_sym___fastcall] = ACTIONS(3101), + [anon_sym___thiscall] = ACTIONS(3101), + [anon_sym___vectorcall] = ACTIONS(3101), + [anon_sym_LBRACE] = ACTIONS(3103), + [anon_sym_RBRACE] = ACTIONS(3103), + [anon_sym_LBRACK] = ACTIONS(3101), + [anon_sym_static] = ACTIONS(3101), + [anon_sym_register] = ACTIONS(3101), + [anon_sym_inline] = ACTIONS(3101), + [anon_sym_thread_local] = ACTIONS(3101), + [anon_sym_const] = ACTIONS(3101), + [anon_sym_constexpr] = ACTIONS(3101), + [anon_sym_volatile] = ACTIONS(3101), + [anon_sym_restrict] = ACTIONS(3101), + [anon_sym___restrict__] = ACTIONS(3101), + [anon_sym__Atomic] = ACTIONS(3101), + [anon_sym__Noreturn] = ACTIONS(3101), + [anon_sym_noreturn] = ACTIONS(3101), + [anon_sym_mutable] = ACTIONS(3101), + [anon_sym_constinit] = ACTIONS(3101), + [anon_sym_consteval] = ACTIONS(3101), + [anon_sym_signed] = ACTIONS(3101), + [anon_sym_unsigned] = ACTIONS(3101), + [anon_sym_long] = ACTIONS(3101), + [anon_sym_short] = ACTIONS(3101), + [sym_primitive_type] = ACTIONS(3101), + [anon_sym_enum] = ACTIONS(3101), + [anon_sym_class] = ACTIONS(3101), + [anon_sym_struct] = ACTIONS(3101), + [anon_sym_union] = ACTIONS(3101), + [anon_sym_if] = ACTIONS(3101), + [anon_sym_else] = ACTIONS(3101), + [anon_sym_switch] = ACTIONS(3101), + [anon_sym_case] = ACTIONS(3101), + [anon_sym_default] = ACTIONS(3101), + [anon_sym_while] = ACTIONS(3101), + [anon_sym_do] = ACTIONS(3101), + [anon_sym_for] = ACTIONS(3101), + [anon_sym_return] = ACTIONS(3101), + [anon_sym_break] = ACTIONS(3101), + [anon_sym_continue] = ACTIONS(3101), + [anon_sym_goto] = ACTIONS(3101), + [anon_sym_not] = ACTIONS(3101), + [anon_sym_compl] = ACTIONS(3101), + [anon_sym_DASH_DASH] = ACTIONS(3103), + [anon_sym_PLUS_PLUS] = ACTIONS(3103), + [anon_sym_sizeof] = ACTIONS(3101), + [anon_sym_offsetof] = ACTIONS(3101), + [anon_sym__Generic] = ACTIONS(3101), + [anon_sym_asm] = ACTIONS(3101), + [anon_sym___asm__] = ACTIONS(3101), + [sym_number_literal] = ACTIONS(3103), + [anon_sym_L_SQUOTE] = ACTIONS(3103), + [anon_sym_u_SQUOTE] = ACTIONS(3103), + [anon_sym_U_SQUOTE] = ACTIONS(3103), + [anon_sym_u8_SQUOTE] = ACTIONS(3103), + [anon_sym_SQUOTE] = ACTIONS(3103), + [anon_sym_L_DQUOTE] = ACTIONS(3103), + [anon_sym_u_DQUOTE] = ACTIONS(3103), + [anon_sym_U_DQUOTE] = ACTIONS(3103), + [anon_sym_u8_DQUOTE] = ACTIONS(3103), + [anon_sym_DQUOTE] = ACTIONS(3103), + [sym_true] = ACTIONS(3101), + [sym_false] = ACTIONS(3101), + [anon_sym_NULL] = ACTIONS(3101), + [anon_sym_nullptr] = ACTIONS(3101), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3101), + [anon_sym_decltype] = ACTIONS(3101), + [anon_sym_virtual] = ACTIONS(3101), + [anon_sym_explicit] = ACTIONS(3101), + [anon_sym_typename] = ACTIONS(3101), + [anon_sym_template] = ACTIONS(3101), + [anon_sym_operator] = ACTIONS(3101), + [anon_sym_try] = ACTIONS(3101), + [anon_sym_delete] = ACTIONS(3101), + [anon_sym_throw] = ACTIONS(3101), + [anon_sym_namespace] = ACTIONS(3101), + [anon_sym_using] = ACTIONS(3101), + [anon_sym_static_assert] = ACTIONS(3101), + [anon_sym_concept] = ACTIONS(3101), + [anon_sym_co_return] = ACTIONS(3101), + [anon_sym_co_yield] = ACTIONS(3101), + [anon_sym_R_DQUOTE] = ACTIONS(3103), + [anon_sym_LR_DQUOTE] = ACTIONS(3103), + [anon_sym_uR_DQUOTE] = ACTIONS(3103), + [anon_sym_UR_DQUOTE] = ACTIONS(3103), + [anon_sym_u8R_DQUOTE] = ACTIONS(3103), + [anon_sym_co_await] = ACTIONS(3101), + [anon_sym_new] = ACTIONS(3101), + [anon_sym_requires] = ACTIONS(3101), + [sym_this] = ACTIONS(3101), }, [865] = { - [sym_identifier] = ACTIONS(2614), - [aux_sym_preproc_include_token1] = ACTIONS(2614), - [aux_sym_preproc_def_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2614), - [sym_preproc_directive] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP_AMP] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2614), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym___based] = ACTIONS(2614), - [anon_sym___cdecl] = ACTIONS(2614), - [anon_sym___clrcall] = ACTIONS(2614), - [anon_sym___stdcall] = ACTIONS(2614), - [anon_sym___fastcall] = ACTIONS(2614), - [anon_sym___thiscall] = ACTIONS(2614), - [anon_sym___vectorcall] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_RBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_case] = ACTIONS(2614), - [anon_sym_default] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_explicit] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_operator] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_namespace] = ACTIONS(2614), - [anon_sym_using] = ACTIONS(2614), - [anon_sym_static_assert] = ACTIONS(2614), - [anon_sym_concept] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), + [sym_identifier] = ACTIONS(3097), + [aux_sym_preproc_include_token1] = ACTIONS(3097), + [aux_sym_preproc_def_token1] = ACTIONS(3097), + [aux_sym_preproc_if_token1] = ACTIONS(3097), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3097), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3097), + [sym_preproc_directive] = ACTIONS(3097), + [anon_sym_LPAREN2] = ACTIONS(3099), + [anon_sym_BANG] = ACTIONS(3099), + [anon_sym_TILDE] = ACTIONS(3099), + [anon_sym_DASH] = ACTIONS(3097), + [anon_sym_PLUS] = ACTIONS(3097), + [anon_sym_STAR] = ACTIONS(3099), + [anon_sym_AMP_AMP] = ACTIONS(3099), + [anon_sym_AMP] = ACTIONS(3097), + [anon_sym_SEMI] = ACTIONS(3099), + [anon_sym_typedef] = ACTIONS(3097), + [anon_sym_extern] = ACTIONS(3097), + [anon_sym___attribute__] = ACTIONS(3097), + [anon_sym_COLON_COLON] = ACTIONS(3099), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3099), + [anon_sym___declspec] = ACTIONS(3097), + [anon_sym___based] = ACTIONS(3097), + [anon_sym___cdecl] = ACTIONS(3097), + [anon_sym___clrcall] = ACTIONS(3097), + [anon_sym___stdcall] = ACTIONS(3097), + [anon_sym___fastcall] = ACTIONS(3097), + [anon_sym___thiscall] = ACTIONS(3097), + [anon_sym___vectorcall] = ACTIONS(3097), + [anon_sym_LBRACE] = ACTIONS(3099), + [anon_sym_RBRACE] = ACTIONS(3099), + [anon_sym_LBRACK] = ACTIONS(3097), + [anon_sym_static] = ACTIONS(3097), + [anon_sym_register] = ACTIONS(3097), + [anon_sym_inline] = ACTIONS(3097), + [anon_sym_thread_local] = ACTIONS(3097), + [anon_sym_const] = ACTIONS(3097), + [anon_sym_constexpr] = ACTIONS(3097), + [anon_sym_volatile] = ACTIONS(3097), + [anon_sym_restrict] = ACTIONS(3097), + [anon_sym___restrict__] = ACTIONS(3097), + [anon_sym__Atomic] = ACTIONS(3097), + [anon_sym__Noreturn] = ACTIONS(3097), + [anon_sym_noreturn] = ACTIONS(3097), + [anon_sym_mutable] = ACTIONS(3097), + [anon_sym_constinit] = ACTIONS(3097), + [anon_sym_consteval] = ACTIONS(3097), + [anon_sym_signed] = ACTIONS(3097), + [anon_sym_unsigned] = ACTIONS(3097), + [anon_sym_long] = ACTIONS(3097), + [anon_sym_short] = ACTIONS(3097), + [sym_primitive_type] = ACTIONS(3097), + [anon_sym_enum] = ACTIONS(3097), + [anon_sym_class] = ACTIONS(3097), + [anon_sym_struct] = ACTIONS(3097), + [anon_sym_union] = ACTIONS(3097), + [anon_sym_if] = ACTIONS(3097), + [anon_sym_else] = ACTIONS(3097), + [anon_sym_switch] = ACTIONS(3097), + [anon_sym_case] = ACTIONS(3097), + [anon_sym_default] = ACTIONS(3097), + [anon_sym_while] = ACTIONS(3097), + [anon_sym_do] = ACTIONS(3097), + [anon_sym_for] = ACTIONS(3097), + [anon_sym_return] = ACTIONS(3097), + [anon_sym_break] = ACTIONS(3097), + [anon_sym_continue] = ACTIONS(3097), + [anon_sym_goto] = ACTIONS(3097), + [anon_sym_not] = ACTIONS(3097), + [anon_sym_compl] = ACTIONS(3097), + [anon_sym_DASH_DASH] = ACTIONS(3099), + [anon_sym_PLUS_PLUS] = ACTIONS(3099), + [anon_sym_sizeof] = ACTIONS(3097), + [anon_sym_offsetof] = ACTIONS(3097), + [anon_sym__Generic] = ACTIONS(3097), + [anon_sym_asm] = ACTIONS(3097), + [anon_sym___asm__] = ACTIONS(3097), + [sym_number_literal] = ACTIONS(3099), + [anon_sym_L_SQUOTE] = ACTIONS(3099), + [anon_sym_u_SQUOTE] = ACTIONS(3099), + [anon_sym_U_SQUOTE] = ACTIONS(3099), + [anon_sym_u8_SQUOTE] = ACTIONS(3099), + [anon_sym_SQUOTE] = ACTIONS(3099), + [anon_sym_L_DQUOTE] = ACTIONS(3099), + [anon_sym_u_DQUOTE] = ACTIONS(3099), + [anon_sym_U_DQUOTE] = ACTIONS(3099), + [anon_sym_u8_DQUOTE] = ACTIONS(3099), + [anon_sym_DQUOTE] = ACTIONS(3099), + [sym_true] = ACTIONS(3097), + [sym_false] = ACTIONS(3097), + [anon_sym_NULL] = ACTIONS(3097), + [anon_sym_nullptr] = ACTIONS(3097), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3097), + [anon_sym_decltype] = ACTIONS(3097), + [anon_sym_virtual] = ACTIONS(3097), + [anon_sym_explicit] = ACTIONS(3097), + [anon_sym_typename] = ACTIONS(3097), + [anon_sym_template] = ACTIONS(3097), + [anon_sym_operator] = ACTIONS(3097), + [anon_sym_try] = ACTIONS(3097), + [anon_sym_delete] = ACTIONS(3097), + [anon_sym_throw] = ACTIONS(3097), + [anon_sym_namespace] = ACTIONS(3097), + [anon_sym_using] = ACTIONS(3097), + [anon_sym_static_assert] = ACTIONS(3097), + [anon_sym_concept] = ACTIONS(3097), + [anon_sym_co_return] = ACTIONS(3097), + [anon_sym_co_yield] = ACTIONS(3097), + [anon_sym_R_DQUOTE] = ACTIONS(3099), + [anon_sym_LR_DQUOTE] = ACTIONS(3099), + [anon_sym_uR_DQUOTE] = ACTIONS(3099), + [anon_sym_UR_DQUOTE] = ACTIONS(3099), + [anon_sym_u8R_DQUOTE] = ACTIONS(3099), + [anon_sym_co_await] = ACTIONS(3097), + [anon_sym_new] = ACTIONS(3097), + [anon_sym_requires] = ACTIONS(3097), + [sym_this] = ACTIONS(3097), }, [866] = { - [sym_identifier] = ACTIONS(2614), - [aux_sym_preproc_include_token1] = ACTIONS(2614), - [aux_sym_preproc_def_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2614), - [sym_preproc_directive] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP_AMP] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2614), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym___based] = ACTIONS(2614), - [anon_sym___cdecl] = ACTIONS(2614), - [anon_sym___clrcall] = ACTIONS(2614), - [anon_sym___stdcall] = ACTIONS(2614), - [anon_sym___fastcall] = ACTIONS(2614), - [anon_sym___thiscall] = ACTIONS(2614), - [anon_sym___vectorcall] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_RBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_case] = ACTIONS(2614), - [anon_sym_default] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_explicit] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_operator] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_namespace] = ACTIONS(2614), - [anon_sym_using] = ACTIONS(2614), - [anon_sym_static_assert] = ACTIONS(2614), - [anon_sym_concept] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_RBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, [867] = { - [sym_identifier] = ACTIONS(2614), - [aux_sym_preproc_include_token1] = ACTIONS(2614), - [aux_sym_preproc_def_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2614), - [sym_preproc_directive] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP_AMP] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2614), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym___based] = ACTIONS(2614), - [anon_sym___cdecl] = ACTIONS(2614), - [anon_sym___clrcall] = ACTIONS(2614), - [anon_sym___stdcall] = ACTIONS(2614), - [anon_sym___fastcall] = ACTIONS(2614), - [anon_sym___thiscall] = ACTIONS(2614), - [anon_sym___vectorcall] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_RBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_case] = ACTIONS(2614), - [anon_sym_default] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_explicit] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_operator] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_namespace] = ACTIONS(2614), - [anon_sym_using] = ACTIONS(2614), - [anon_sym_static_assert] = ACTIONS(2614), - [anon_sym_concept] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_RBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, [868] = { - [sym_identifier] = ACTIONS(2614), - [aux_sym_preproc_include_token1] = ACTIONS(2614), - [aux_sym_preproc_def_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2614), - [sym_preproc_directive] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP_AMP] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2614), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym___based] = ACTIONS(2614), - [anon_sym___cdecl] = ACTIONS(2614), - [anon_sym___clrcall] = ACTIONS(2614), - [anon_sym___stdcall] = ACTIONS(2614), - [anon_sym___fastcall] = ACTIONS(2614), - [anon_sym___thiscall] = ACTIONS(2614), - [anon_sym___vectorcall] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_RBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_case] = ACTIONS(2614), - [anon_sym_default] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_explicit] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_operator] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_namespace] = ACTIONS(2614), - [anon_sym_using] = ACTIONS(2614), - [anon_sym_static_assert] = ACTIONS(2614), - [anon_sym_concept] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_RBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, [869] = { - [sym_identifier] = ACTIONS(1737), - [aux_sym_preproc_include_token1] = ACTIONS(1737), - [aux_sym_preproc_def_token1] = ACTIONS(1737), - [anon_sym_COMMA] = ACTIONS(2652), - [aux_sym_preproc_if_token1] = ACTIONS(1737), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1737), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1737), - [sym_preproc_directive] = ACTIONS(1737), - [anon_sym_LPAREN2] = ACTIONS(1735), - [anon_sym_BANG] = ACTIONS(1735), - [anon_sym_TILDE] = ACTIONS(1735), - [anon_sym_DASH] = ACTIONS(1737), - [anon_sym_PLUS] = ACTIONS(1737), - [anon_sym_STAR] = ACTIONS(1735), - [anon_sym_AMP_AMP] = ACTIONS(1735), - [anon_sym_AMP] = ACTIONS(1737), - [anon_sym_SEMI] = ACTIONS(2652), - [anon_sym_typedef] = ACTIONS(1737), - [anon_sym_extern] = ACTIONS(1737), - [anon_sym___attribute__] = ACTIONS(1737), - [anon_sym_COLON_COLON] = ACTIONS(1735), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1735), - [anon_sym___declspec] = ACTIONS(1737), - [anon_sym___based] = ACTIONS(1737), - [anon_sym___cdecl] = ACTIONS(1737), - [anon_sym___clrcall] = ACTIONS(1737), - [anon_sym___stdcall] = ACTIONS(1737), - [anon_sym___fastcall] = ACTIONS(1737), - [anon_sym___thiscall] = ACTIONS(1737), - [anon_sym___vectorcall] = ACTIONS(1737), - [anon_sym_LBRACE] = ACTIONS(1735), - [anon_sym_RBRACE] = ACTIONS(1735), - [anon_sym_LBRACK] = ACTIONS(1737), - [anon_sym_static] = ACTIONS(1737), - [anon_sym_register] = ACTIONS(1737), - [anon_sym_inline] = ACTIONS(1737), - [anon_sym_thread_local] = ACTIONS(1737), - [anon_sym_const] = ACTIONS(1737), - [anon_sym_volatile] = ACTIONS(1737), - [anon_sym_restrict] = ACTIONS(1737), - [anon_sym__Atomic] = ACTIONS(1737), - [anon_sym_mutable] = ACTIONS(1737), - [anon_sym_constexpr] = ACTIONS(1737), - [anon_sym_constinit] = ACTIONS(1737), - [anon_sym_consteval] = ACTIONS(1737), - [anon_sym_signed] = ACTIONS(1737), - [anon_sym_unsigned] = ACTIONS(1737), - [anon_sym_long] = ACTIONS(1737), - [anon_sym_short] = ACTIONS(1737), - [sym_primitive_type] = ACTIONS(1737), - [anon_sym_enum] = ACTIONS(1737), - [anon_sym_class] = ACTIONS(1737), - [anon_sym_struct] = ACTIONS(1737), - [anon_sym_union] = ACTIONS(1737), - [anon_sym_if] = ACTIONS(1737), - [anon_sym_switch] = ACTIONS(1737), - [anon_sym_case] = ACTIONS(1737), - [anon_sym_default] = ACTIONS(1737), - [anon_sym_while] = ACTIONS(1737), - [anon_sym_do] = ACTIONS(1737), - [anon_sym_for] = ACTIONS(1737), - [anon_sym_return] = ACTIONS(1737), - [anon_sym_break] = ACTIONS(1737), - [anon_sym_continue] = ACTIONS(1737), - [anon_sym_goto] = ACTIONS(1737), - [anon_sym_not] = ACTIONS(1737), - [anon_sym_compl] = ACTIONS(1737), - [anon_sym_DASH_DASH] = ACTIONS(1735), - [anon_sym_PLUS_PLUS] = ACTIONS(1735), - [anon_sym_sizeof] = ACTIONS(1737), - [sym_number_literal] = ACTIONS(1735), - [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_L_DQUOTE] = ACTIONS(1735), - [anon_sym_u_DQUOTE] = ACTIONS(1735), - [anon_sym_U_DQUOTE] = ACTIONS(1735), - [anon_sym_u8_DQUOTE] = ACTIONS(1735), - [anon_sym_DQUOTE] = ACTIONS(1735), - [sym_true] = ACTIONS(1737), - [sym_false] = ACTIONS(1737), - [sym_null] = ACTIONS(1737), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1737), - [anon_sym_decltype] = ACTIONS(1737), - [anon_sym_virtual] = ACTIONS(1737), - [anon_sym_explicit] = ACTIONS(1737), - [anon_sym_typename] = ACTIONS(1737), - [anon_sym_template] = ACTIONS(1737), - [anon_sym_operator] = ACTIONS(1737), - [anon_sym_try] = ACTIONS(1737), - [anon_sym_delete] = ACTIONS(1737), - [anon_sym_throw] = ACTIONS(1737), - [anon_sym_namespace] = ACTIONS(1737), - [anon_sym_using] = ACTIONS(1737), - [anon_sym_static_assert] = ACTIONS(1737), - [anon_sym_concept] = ACTIONS(1737), - [anon_sym_co_return] = ACTIONS(1737), - [anon_sym_co_yield] = ACTIONS(1737), - [anon_sym_R_DQUOTE] = ACTIONS(1735), - [anon_sym_LR_DQUOTE] = ACTIONS(1735), - [anon_sym_uR_DQUOTE] = ACTIONS(1735), - [anon_sym_UR_DQUOTE] = ACTIONS(1735), - [anon_sym_u8R_DQUOTE] = ACTIONS(1735), - [anon_sym_co_await] = ACTIONS(1737), - [anon_sym_new] = ACTIONS(1737), - [anon_sym_requires] = ACTIONS(1737), - [sym_this] = ACTIONS(1737), - [sym_nullptr] = ACTIONS(1737), + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_RBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, [870] = { - [sym_identifier] = ACTIONS(2614), - [aux_sym_preproc_include_token1] = ACTIONS(2614), - [aux_sym_preproc_def_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2614), - [sym_preproc_directive] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP_AMP] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2614), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym___based] = ACTIONS(2614), - [anon_sym___cdecl] = ACTIONS(2614), - [anon_sym___clrcall] = ACTIONS(2614), - [anon_sym___stdcall] = ACTIONS(2614), - [anon_sym___fastcall] = ACTIONS(2614), - [anon_sym___thiscall] = ACTIONS(2614), - [anon_sym___vectorcall] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_RBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_case] = ACTIONS(2614), - [anon_sym_default] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_explicit] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_operator] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_namespace] = ACTIONS(2614), - [anon_sym_using] = ACTIONS(2614), - [anon_sym_static_assert] = ACTIONS(2614), - [anon_sym_concept] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_RBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, [871] = { - [sym_identifier] = ACTIONS(2614), - [aux_sym_preproc_include_token1] = ACTIONS(2614), - [aux_sym_preproc_def_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2614), - [sym_preproc_directive] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP_AMP] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2614), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym___based] = ACTIONS(2614), - [anon_sym___cdecl] = ACTIONS(2614), - [anon_sym___clrcall] = ACTIONS(2614), - [anon_sym___stdcall] = ACTIONS(2614), - [anon_sym___fastcall] = ACTIONS(2614), - [anon_sym___thiscall] = ACTIONS(2614), - [anon_sym___vectorcall] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_RBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_case] = ACTIONS(2614), - [anon_sym_default] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_explicit] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_operator] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_namespace] = ACTIONS(2614), - [anon_sym_using] = ACTIONS(2614), - [anon_sym_static_assert] = ACTIONS(2614), - [anon_sym_concept] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), - }, - [872] = { - [sym__expression] = STATE(3383), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_initializer_list] = STATE(3384), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2954), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1525), - [anon_sym_COMMA] = ACTIONS(1525), - [anon_sym_RPAREN] = ACTIONS(1525), - [anon_sym_LPAREN2] = ACTIONS(984), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_SLASH] = ACTIONS(1533), - [anon_sym_PERCENT] = ACTIONS(1525), - [anon_sym_PIPE_PIPE] = ACTIONS(1525), - [anon_sym_AMP_AMP] = ACTIONS(1525), - [anon_sym_PIPE] = ACTIONS(1533), - [anon_sym_CARET] = ACTIONS(1525), - [anon_sym_AMP] = ACTIONS(990), - [anon_sym_EQ_EQ] = ACTIONS(1525), - [anon_sym_BANG_EQ] = ACTIONS(1525), - [anon_sym_GT] = ACTIONS(1533), - [anon_sym_GT_EQ] = ACTIONS(1525), - [anon_sym_LT_EQ] = ACTIONS(1533), - [anon_sym_LT] = ACTIONS(1533), - [anon_sym_LT_LT] = ACTIONS(1525), - [anon_sym_GT_GT] = ACTIONS(1525), - [anon_sym_SEMI] = ACTIONS(1525), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1489), - [anon_sym_RBRACE] = ACTIONS(1525), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_QMARK] = ACTIONS(1525), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_LT_EQ_GT] = ACTIONS(1525), - [anon_sym_or] = ACTIONS(1533), - [anon_sym_and] = ACTIONS(1533), - [anon_sym_bitor] = ACTIONS(1533), - [anon_sym_xor] = ACTIONS(1533), - [anon_sym_bitand] = ACTIONS(1533), - [anon_sym_not_eq] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym_DOT] = ACTIONS(1533), - [anon_sym_DASH_GT] = ACTIONS(1525), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), - }, - [873] = { - [sym_identifier] = ACTIONS(2500), - [aux_sym_preproc_include_token1] = ACTIONS(2500), - [aux_sym_preproc_def_token1] = ACTIONS(2500), - [aux_sym_preproc_if_token1] = ACTIONS(2500), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2500), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2500), - [sym_preproc_directive] = ACTIONS(2500), - [anon_sym_LPAREN2] = ACTIONS(2502), - [anon_sym_BANG] = ACTIONS(2502), - [anon_sym_TILDE] = ACTIONS(2502), - [anon_sym_DASH] = ACTIONS(2500), - [anon_sym_PLUS] = ACTIONS(2500), - [anon_sym_STAR] = ACTIONS(2502), - [anon_sym_AMP_AMP] = ACTIONS(2502), - [anon_sym_AMP] = ACTIONS(2500), - [anon_sym_SEMI] = ACTIONS(2502), - [anon_sym_typedef] = ACTIONS(2500), - [anon_sym_extern] = ACTIONS(2500), - [anon_sym___attribute__] = ACTIONS(2500), - [anon_sym_COLON_COLON] = ACTIONS(2502), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2502), - [anon_sym___declspec] = ACTIONS(2500), - [anon_sym___based] = ACTIONS(2500), - [anon_sym___cdecl] = ACTIONS(2500), - [anon_sym___clrcall] = ACTIONS(2500), - [anon_sym___stdcall] = ACTIONS(2500), - [anon_sym___fastcall] = ACTIONS(2500), - [anon_sym___thiscall] = ACTIONS(2500), - [anon_sym___vectorcall] = ACTIONS(2500), - [anon_sym_LBRACE] = ACTIONS(2502), - [anon_sym_RBRACE] = ACTIONS(2502), - [anon_sym_LBRACK] = ACTIONS(2500), - [anon_sym_static] = ACTIONS(2500), - [anon_sym_register] = ACTIONS(2500), - [anon_sym_inline] = ACTIONS(2500), - [anon_sym_thread_local] = ACTIONS(2500), - [anon_sym_const] = ACTIONS(2500), - [anon_sym_volatile] = ACTIONS(2500), - [anon_sym_restrict] = ACTIONS(2500), - [anon_sym__Atomic] = ACTIONS(2500), - [anon_sym_mutable] = ACTIONS(2500), - [anon_sym_constexpr] = ACTIONS(2500), - [anon_sym_constinit] = ACTIONS(2500), - [anon_sym_consteval] = ACTIONS(2500), - [anon_sym_signed] = ACTIONS(2500), - [anon_sym_unsigned] = ACTIONS(2500), - [anon_sym_long] = ACTIONS(2500), - [anon_sym_short] = ACTIONS(2500), - [sym_primitive_type] = ACTIONS(2500), - [anon_sym_enum] = ACTIONS(2500), - [anon_sym_class] = ACTIONS(2500), - [anon_sym_struct] = ACTIONS(2500), - [anon_sym_union] = ACTIONS(2500), - [anon_sym_if] = ACTIONS(2500), - [anon_sym_else] = ACTIONS(2500), - [anon_sym_switch] = ACTIONS(2500), - [anon_sym_case] = ACTIONS(2500), - [anon_sym_default] = ACTIONS(2500), - [anon_sym_while] = ACTIONS(2500), - [anon_sym_do] = ACTIONS(2500), - [anon_sym_for] = ACTIONS(2500), - [anon_sym_return] = ACTIONS(2500), - [anon_sym_break] = ACTIONS(2500), - [anon_sym_continue] = ACTIONS(2500), - [anon_sym_goto] = ACTIONS(2500), - [anon_sym_not] = ACTIONS(2500), - [anon_sym_compl] = ACTIONS(2500), - [anon_sym_DASH_DASH] = ACTIONS(2502), - [anon_sym_PLUS_PLUS] = ACTIONS(2502), - [anon_sym_sizeof] = ACTIONS(2500), - [sym_number_literal] = ACTIONS(2502), - [anon_sym_L_SQUOTE] = ACTIONS(2502), - [anon_sym_u_SQUOTE] = ACTIONS(2502), - [anon_sym_U_SQUOTE] = ACTIONS(2502), - [anon_sym_u8_SQUOTE] = ACTIONS(2502), - [anon_sym_SQUOTE] = ACTIONS(2502), - [anon_sym_L_DQUOTE] = ACTIONS(2502), - [anon_sym_u_DQUOTE] = ACTIONS(2502), - [anon_sym_U_DQUOTE] = ACTIONS(2502), - [anon_sym_u8_DQUOTE] = ACTIONS(2502), - [anon_sym_DQUOTE] = ACTIONS(2502), - [sym_true] = ACTIONS(2500), - [sym_false] = ACTIONS(2500), - [sym_null] = ACTIONS(2500), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2500), - [anon_sym_decltype] = ACTIONS(2500), - [anon_sym_virtual] = ACTIONS(2500), - [anon_sym_explicit] = ACTIONS(2500), - [anon_sym_typename] = ACTIONS(2500), - [anon_sym_template] = ACTIONS(2500), - [anon_sym_operator] = ACTIONS(2500), - [anon_sym_try] = ACTIONS(2500), - [anon_sym_delete] = ACTIONS(2500), - [anon_sym_throw] = ACTIONS(2500), - [anon_sym_namespace] = ACTIONS(2500), - [anon_sym_using] = ACTIONS(2500), - [anon_sym_static_assert] = ACTIONS(2500), - [anon_sym_concept] = ACTIONS(2500), - [anon_sym_co_return] = ACTIONS(2500), - [anon_sym_co_yield] = ACTIONS(2500), - [anon_sym_R_DQUOTE] = ACTIONS(2502), - [anon_sym_LR_DQUOTE] = ACTIONS(2502), - [anon_sym_uR_DQUOTE] = ACTIONS(2502), - [anon_sym_UR_DQUOTE] = ACTIONS(2502), - [anon_sym_u8R_DQUOTE] = ACTIONS(2502), - [anon_sym_co_await] = ACTIONS(2500), - [anon_sym_new] = ACTIONS(2500), - [anon_sym_requires] = ACTIONS(2500), - [sym_this] = ACTIONS(2500), - [sym_nullptr] = ACTIONS(2500), - }, - [874] = { - [sym_identifier] = ACTIONS(2614), - [aux_sym_preproc_include_token1] = ACTIONS(2614), - [aux_sym_preproc_def_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2614), - [sym_preproc_directive] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP_AMP] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2614), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym___based] = ACTIONS(2614), - [anon_sym___cdecl] = ACTIONS(2614), - [anon_sym___clrcall] = ACTIONS(2614), - [anon_sym___stdcall] = ACTIONS(2614), - [anon_sym___fastcall] = ACTIONS(2614), - [anon_sym___thiscall] = ACTIONS(2614), - [anon_sym___vectorcall] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_RBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_case] = ACTIONS(2614), - [anon_sym_default] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_explicit] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_operator] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_namespace] = ACTIONS(2614), - [anon_sym_using] = ACTIONS(2614), - [anon_sym_static_assert] = ACTIONS(2614), - [anon_sym_concept] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), - }, - [875] = { - [sym_identifier] = ACTIONS(2614), - [aux_sym_preproc_include_token1] = ACTIONS(2614), - [aux_sym_preproc_def_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2614), - [sym_preproc_directive] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP_AMP] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2614), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym___based] = ACTIONS(2614), - [anon_sym___cdecl] = ACTIONS(2614), - [anon_sym___clrcall] = ACTIONS(2614), - [anon_sym___stdcall] = ACTIONS(2614), - [anon_sym___fastcall] = ACTIONS(2614), - [anon_sym___thiscall] = ACTIONS(2614), - [anon_sym___vectorcall] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_RBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_case] = ACTIONS(2614), - [anon_sym_default] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_explicit] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_operator] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_namespace] = ACTIONS(2614), - [anon_sym_using] = ACTIONS(2614), - [anon_sym_static_assert] = ACTIONS(2614), - [anon_sym_concept] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), - }, - [876] = { - [sym_identifier] = ACTIONS(2614), - [aux_sym_preproc_include_token1] = ACTIONS(2614), - [aux_sym_preproc_def_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2614), - [sym_preproc_directive] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP_AMP] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2614), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym___based] = ACTIONS(2614), - [anon_sym___cdecl] = ACTIONS(2614), - [anon_sym___clrcall] = ACTIONS(2614), - [anon_sym___stdcall] = ACTIONS(2614), - [anon_sym___fastcall] = ACTIONS(2614), - [anon_sym___thiscall] = ACTIONS(2614), - [anon_sym___vectorcall] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_RBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_case] = ACTIONS(2614), - [anon_sym_default] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_explicit] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_operator] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_namespace] = ACTIONS(2614), - [anon_sym_using] = ACTIONS(2614), - [anon_sym_static_assert] = ACTIONS(2614), - [anon_sym_concept] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), - }, - [877] = { - [sym_identifier] = ACTIONS(2614), - [aux_sym_preproc_include_token1] = ACTIONS(2614), - [aux_sym_preproc_def_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2614), - [sym_preproc_directive] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP_AMP] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2614), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym___based] = ACTIONS(2614), - [anon_sym___cdecl] = ACTIONS(2614), - [anon_sym___clrcall] = ACTIONS(2614), - [anon_sym___stdcall] = ACTIONS(2614), - [anon_sym___fastcall] = ACTIONS(2614), - [anon_sym___thiscall] = ACTIONS(2614), - [anon_sym___vectorcall] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_RBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_case] = ACTIONS(2614), - [anon_sym_default] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_explicit] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_operator] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_namespace] = ACTIONS(2614), - [anon_sym_using] = ACTIONS(2614), - [anon_sym_static_assert] = ACTIONS(2614), - [anon_sym_concept] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), - }, - [878] = { - [sym_identifier] = ACTIONS(2614), - [aux_sym_preproc_include_token1] = ACTIONS(2614), - [aux_sym_preproc_def_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2614), - [sym_preproc_directive] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP_AMP] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2614), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym___based] = ACTIONS(2614), - [anon_sym___cdecl] = ACTIONS(2614), - [anon_sym___clrcall] = ACTIONS(2614), - [anon_sym___stdcall] = ACTIONS(2614), - [anon_sym___fastcall] = ACTIONS(2614), - [anon_sym___thiscall] = ACTIONS(2614), - [anon_sym___vectorcall] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_RBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_case] = ACTIONS(2614), - [anon_sym_default] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_explicit] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_operator] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_namespace] = ACTIONS(2614), - [anon_sym_using] = ACTIONS(2614), - [anon_sym_static_assert] = ACTIONS(2614), - [anon_sym_concept] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), - }, - [879] = { - [sym_identifier] = ACTIONS(2614), - [aux_sym_preproc_include_token1] = ACTIONS(2614), - [aux_sym_preproc_def_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2614), - [sym_preproc_directive] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP_AMP] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2614), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym___based] = ACTIONS(2614), - [anon_sym___cdecl] = ACTIONS(2614), - [anon_sym___clrcall] = ACTIONS(2614), - [anon_sym___stdcall] = ACTIONS(2614), - [anon_sym___fastcall] = ACTIONS(2614), - [anon_sym___thiscall] = ACTIONS(2614), - [anon_sym___vectorcall] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_RBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_case] = ACTIONS(2614), - [anon_sym_default] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_explicit] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_operator] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_namespace] = ACTIONS(2614), - [anon_sym_using] = ACTIONS(2614), - [anon_sym_static_assert] = ACTIONS(2614), - [anon_sym_concept] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), - }, - [880] = { - [sym_identifier] = ACTIONS(2614), - [aux_sym_preproc_include_token1] = ACTIONS(2614), - [aux_sym_preproc_def_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2614), - [sym_preproc_directive] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP_AMP] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2614), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym___based] = ACTIONS(2614), - [anon_sym___cdecl] = ACTIONS(2614), - [anon_sym___clrcall] = ACTIONS(2614), - [anon_sym___stdcall] = ACTIONS(2614), - [anon_sym___fastcall] = ACTIONS(2614), - [anon_sym___thiscall] = ACTIONS(2614), - [anon_sym___vectorcall] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_RBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_case] = ACTIONS(2614), - [anon_sym_default] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_explicit] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_operator] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_namespace] = ACTIONS(2614), - [anon_sym_using] = ACTIONS(2614), - [anon_sym_static_assert] = ACTIONS(2614), - [anon_sym_concept] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), - }, - [881] = { - [sym_identifier] = ACTIONS(2614), - [aux_sym_preproc_include_token1] = ACTIONS(2614), - [aux_sym_preproc_def_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2614), - [sym_preproc_directive] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP_AMP] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2614), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym___based] = ACTIONS(2614), - [anon_sym___cdecl] = ACTIONS(2614), - [anon_sym___clrcall] = ACTIONS(2614), - [anon_sym___stdcall] = ACTIONS(2614), - [anon_sym___fastcall] = ACTIONS(2614), - [anon_sym___thiscall] = ACTIONS(2614), - [anon_sym___vectorcall] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_RBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_case] = ACTIONS(2614), - [anon_sym_default] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_explicit] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_operator] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_namespace] = ACTIONS(2614), - [anon_sym_using] = ACTIONS(2614), - [anon_sym_static_assert] = ACTIONS(2614), - [anon_sym_concept] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), - }, - [882] = { - [sym_identifier] = ACTIONS(2614), - [aux_sym_preproc_include_token1] = ACTIONS(2614), - [aux_sym_preproc_def_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2614), - [sym_preproc_directive] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP_AMP] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2614), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym___based] = ACTIONS(2614), - [anon_sym___cdecl] = ACTIONS(2614), - [anon_sym___clrcall] = ACTIONS(2614), - [anon_sym___stdcall] = ACTIONS(2614), - [anon_sym___fastcall] = ACTIONS(2614), - [anon_sym___thiscall] = ACTIONS(2614), - [anon_sym___vectorcall] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_RBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_case] = ACTIONS(2614), - [anon_sym_default] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_explicit] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_operator] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_namespace] = ACTIONS(2614), - [anon_sym_using] = ACTIONS(2614), - [anon_sym_static_assert] = ACTIONS(2614), - [anon_sym_concept] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), - }, - [883] = { - [sym_identifier] = ACTIONS(2614), - [aux_sym_preproc_include_token1] = ACTIONS(2614), - [aux_sym_preproc_def_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2614), - [sym_preproc_directive] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP_AMP] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2614), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym___based] = ACTIONS(2614), - [anon_sym___cdecl] = ACTIONS(2614), - [anon_sym___clrcall] = ACTIONS(2614), - [anon_sym___stdcall] = ACTIONS(2614), - [anon_sym___fastcall] = ACTIONS(2614), - [anon_sym___thiscall] = ACTIONS(2614), - [anon_sym___vectorcall] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_RBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_case] = ACTIONS(2614), - [anon_sym_default] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_explicit] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_operator] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_namespace] = ACTIONS(2614), - [anon_sym_using] = ACTIONS(2614), - [anon_sym_static_assert] = ACTIONS(2614), - [anon_sym_concept] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), - }, - [884] = { - [sym_identifier] = ACTIONS(2614), - [aux_sym_preproc_include_token1] = ACTIONS(2614), - [aux_sym_preproc_def_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2614), - [sym_preproc_directive] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP_AMP] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2614), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym___based] = ACTIONS(2614), - [anon_sym___cdecl] = ACTIONS(2614), - [anon_sym___clrcall] = ACTIONS(2614), - [anon_sym___stdcall] = ACTIONS(2614), - [anon_sym___fastcall] = ACTIONS(2614), - [anon_sym___thiscall] = ACTIONS(2614), - [anon_sym___vectorcall] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_RBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_case] = ACTIONS(2614), - [anon_sym_default] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_explicit] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_operator] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_namespace] = ACTIONS(2614), - [anon_sym_using] = ACTIONS(2614), - [anon_sym_static_assert] = ACTIONS(2614), - [anon_sym_concept] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), - }, - [885] = { - [sym_identifier] = ACTIONS(2614), - [aux_sym_preproc_include_token1] = ACTIONS(2614), - [aux_sym_preproc_def_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2614), - [sym_preproc_directive] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP_AMP] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2614), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym___based] = ACTIONS(2614), - [anon_sym___cdecl] = ACTIONS(2614), - [anon_sym___clrcall] = ACTIONS(2614), - [anon_sym___stdcall] = ACTIONS(2614), - [anon_sym___fastcall] = ACTIONS(2614), - [anon_sym___thiscall] = ACTIONS(2614), - [anon_sym___vectorcall] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_RBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_case] = ACTIONS(2614), - [anon_sym_default] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_explicit] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_operator] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_namespace] = ACTIONS(2614), - [anon_sym_using] = ACTIONS(2614), - [anon_sym_static_assert] = ACTIONS(2614), - [anon_sym_concept] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), - }, - [886] = { - [sym_identifier] = ACTIONS(2614), - [aux_sym_preproc_include_token1] = ACTIONS(2614), - [aux_sym_preproc_def_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2614), - [sym_preproc_directive] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP_AMP] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2614), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym___based] = ACTIONS(2614), - [anon_sym___cdecl] = ACTIONS(2614), - [anon_sym___clrcall] = ACTIONS(2614), - [anon_sym___stdcall] = ACTIONS(2614), - [anon_sym___fastcall] = ACTIONS(2614), - [anon_sym___thiscall] = ACTIONS(2614), - [anon_sym___vectorcall] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_RBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_case] = ACTIONS(2614), - [anon_sym_default] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_explicit] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_operator] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_namespace] = ACTIONS(2614), - [anon_sym_using] = ACTIONS(2614), - [anon_sym_static_assert] = ACTIONS(2614), - [anon_sym_concept] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), - }, - [887] = { - [sym_identifier] = ACTIONS(2614), - [aux_sym_preproc_include_token1] = ACTIONS(2614), - [aux_sym_preproc_def_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2614), - [sym_preproc_directive] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP_AMP] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2614), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym___based] = ACTIONS(2614), - [anon_sym___cdecl] = ACTIONS(2614), - [anon_sym___clrcall] = ACTIONS(2614), - [anon_sym___stdcall] = ACTIONS(2614), - [anon_sym___fastcall] = ACTIONS(2614), - [anon_sym___thiscall] = ACTIONS(2614), - [anon_sym___vectorcall] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_RBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_case] = ACTIONS(2614), - [anon_sym_default] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_explicit] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_operator] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_namespace] = ACTIONS(2614), - [anon_sym_using] = ACTIONS(2614), - [anon_sym_static_assert] = ACTIONS(2614), - [anon_sym_concept] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), - }, - [888] = { - [sym_identifier] = ACTIONS(2614), - [aux_sym_preproc_include_token1] = ACTIONS(2614), - [aux_sym_preproc_def_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2614), - [sym_preproc_directive] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP_AMP] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2614), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym___based] = ACTIONS(2614), - [anon_sym___cdecl] = ACTIONS(2614), - [anon_sym___clrcall] = ACTIONS(2614), - [anon_sym___stdcall] = ACTIONS(2614), - [anon_sym___fastcall] = ACTIONS(2614), - [anon_sym___thiscall] = ACTIONS(2614), - [anon_sym___vectorcall] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_RBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_case] = ACTIONS(2614), - [anon_sym_default] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_explicit] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_operator] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_namespace] = ACTIONS(2614), - [anon_sym_using] = ACTIONS(2614), - [anon_sym_static_assert] = ACTIONS(2614), - [anon_sym_concept] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), - }, - [889] = { - [sym_identifier] = ACTIONS(2614), - [aux_sym_preproc_include_token1] = ACTIONS(2614), - [aux_sym_preproc_def_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2614), - [sym_preproc_directive] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP_AMP] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2614), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym___based] = ACTIONS(2614), - [anon_sym___cdecl] = ACTIONS(2614), - [anon_sym___clrcall] = ACTIONS(2614), - [anon_sym___stdcall] = ACTIONS(2614), - [anon_sym___fastcall] = ACTIONS(2614), - [anon_sym___thiscall] = ACTIONS(2614), - [anon_sym___vectorcall] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_RBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_case] = ACTIONS(2614), - [anon_sym_default] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_explicit] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_operator] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_namespace] = ACTIONS(2614), - [anon_sym_using] = ACTIONS(2614), - [anon_sym_static_assert] = ACTIONS(2614), - [anon_sym_concept] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), - }, - [890] = { - [sym_identifier] = ACTIONS(2500), - [aux_sym_preproc_include_token1] = ACTIONS(2500), - [aux_sym_preproc_def_token1] = ACTIONS(2500), - [aux_sym_preproc_if_token1] = ACTIONS(2500), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2500), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2500), - [sym_preproc_directive] = ACTIONS(2500), - [anon_sym_LPAREN2] = ACTIONS(2502), - [anon_sym_BANG] = ACTIONS(2502), - [anon_sym_TILDE] = ACTIONS(2502), - [anon_sym_DASH] = ACTIONS(2500), - [anon_sym_PLUS] = ACTIONS(2500), - [anon_sym_STAR] = ACTIONS(2502), - [anon_sym_AMP_AMP] = ACTIONS(2502), - [anon_sym_AMP] = ACTIONS(2500), - [anon_sym_SEMI] = ACTIONS(2502), - [anon_sym_typedef] = ACTIONS(2500), - [anon_sym_extern] = ACTIONS(2500), - [anon_sym___attribute__] = ACTIONS(2500), - [anon_sym_COLON_COLON] = ACTIONS(2502), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2502), - [anon_sym___declspec] = ACTIONS(2500), - [anon_sym___based] = ACTIONS(2500), - [anon_sym___cdecl] = ACTIONS(2500), - [anon_sym___clrcall] = ACTIONS(2500), - [anon_sym___stdcall] = ACTIONS(2500), - [anon_sym___fastcall] = ACTIONS(2500), - [anon_sym___thiscall] = ACTIONS(2500), - [anon_sym___vectorcall] = ACTIONS(2500), - [anon_sym_LBRACE] = ACTIONS(2502), - [anon_sym_RBRACE] = ACTIONS(2502), - [anon_sym_LBRACK] = ACTIONS(2500), - [anon_sym_static] = ACTIONS(2500), - [anon_sym_register] = ACTIONS(2500), - [anon_sym_inline] = ACTIONS(2500), - [anon_sym_thread_local] = ACTIONS(2500), - [anon_sym_const] = ACTIONS(2500), - [anon_sym_volatile] = ACTIONS(2500), - [anon_sym_restrict] = ACTIONS(2500), - [anon_sym__Atomic] = ACTIONS(2500), - [anon_sym_mutable] = ACTIONS(2500), - [anon_sym_constexpr] = ACTIONS(2500), - [anon_sym_constinit] = ACTIONS(2500), - [anon_sym_consteval] = ACTIONS(2500), - [anon_sym_signed] = ACTIONS(2500), - [anon_sym_unsigned] = ACTIONS(2500), - [anon_sym_long] = ACTIONS(2500), - [anon_sym_short] = ACTIONS(2500), - [sym_primitive_type] = ACTIONS(2500), - [anon_sym_enum] = ACTIONS(2500), - [anon_sym_class] = ACTIONS(2500), - [anon_sym_struct] = ACTIONS(2500), - [anon_sym_union] = ACTIONS(2500), - [anon_sym_if] = ACTIONS(2500), - [anon_sym_else] = ACTIONS(2500), - [anon_sym_switch] = ACTIONS(2500), - [anon_sym_case] = ACTIONS(2500), - [anon_sym_default] = ACTIONS(2500), - [anon_sym_while] = ACTIONS(2500), - [anon_sym_do] = ACTIONS(2500), - [anon_sym_for] = ACTIONS(2500), - [anon_sym_return] = ACTIONS(2500), - [anon_sym_break] = ACTIONS(2500), - [anon_sym_continue] = ACTIONS(2500), - [anon_sym_goto] = ACTIONS(2500), - [anon_sym_not] = ACTIONS(2500), - [anon_sym_compl] = ACTIONS(2500), - [anon_sym_DASH_DASH] = ACTIONS(2502), - [anon_sym_PLUS_PLUS] = ACTIONS(2502), - [anon_sym_sizeof] = ACTIONS(2500), - [sym_number_literal] = ACTIONS(2502), - [anon_sym_L_SQUOTE] = ACTIONS(2502), - [anon_sym_u_SQUOTE] = ACTIONS(2502), - [anon_sym_U_SQUOTE] = ACTIONS(2502), - [anon_sym_u8_SQUOTE] = ACTIONS(2502), - [anon_sym_SQUOTE] = ACTIONS(2502), - [anon_sym_L_DQUOTE] = ACTIONS(2502), - [anon_sym_u_DQUOTE] = ACTIONS(2502), - [anon_sym_U_DQUOTE] = ACTIONS(2502), - [anon_sym_u8_DQUOTE] = ACTIONS(2502), - [anon_sym_DQUOTE] = ACTIONS(2502), - [sym_true] = ACTIONS(2500), - [sym_false] = ACTIONS(2500), - [sym_null] = ACTIONS(2500), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2500), - [anon_sym_decltype] = ACTIONS(2500), - [anon_sym_virtual] = ACTIONS(2500), - [anon_sym_explicit] = ACTIONS(2500), - [anon_sym_typename] = ACTIONS(2500), - [anon_sym_template] = ACTIONS(2500), - [anon_sym_operator] = ACTIONS(2500), - [anon_sym_try] = ACTIONS(2500), - [anon_sym_delete] = ACTIONS(2500), - [anon_sym_throw] = ACTIONS(2500), - [anon_sym_namespace] = ACTIONS(2500), - [anon_sym_using] = ACTIONS(2500), - [anon_sym_static_assert] = ACTIONS(2500), - [anon_sym_concept] = ACTIONS(2500), - [anon_sym_co_return] = ACTIONS(2500), - [anon_sym_co_yield] = ACTIONS(2500), - [anon_sym_R_DQUOTE] = ACTIONS(2502), - [anon_sym_LR_DQUOTE] = ACTIONS(2502), - [anon_sym_uR_DQUOTE] = ACTIONS(2502), - [anon_sym_UR_DQUOTE] = ACTIONS(2502), - [anon_sym_u8R_DQUOTE] = ACTIONS(2502), - [anon_sym_co_await] = ACTIONS(2500), - [anon_sym_new] = ACTIONS(2500), - [anon_sym_requires] = ACTIONS(2500), - [sym_this] = ACTIONS(2500), - [sym_nullptr] = ACTIONS(2500), - }, - [891] = { - [sym_identifier] = ACTIONS(2614), - [aux_sym_preproc_include_token1] = ACTIONS(2614), - [aux_sym_preproc_def_token1] = ACTIONS(2614), - [aux_sym_preproc_if_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2614), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2614), - [sym_preproc_directive] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP_AMP] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2614), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym___based] = ACTIONS(2614), - [anon_sym___cdecl] = ACTIONS(2614), - [anon_sym___clrcall] = ACTIONS(2614), - [anon_sym___stdcall] = ACTIONS(2614), - [anon_sym___fastcall] = ACTIONS(2614), - [anon_sym___thiscall] = ACTIONS(2614), - [anon_sym___vectorcall] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_RBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_case] = ACTIONS(2614), - [anon_sym_default] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_explicit] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_operator] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_namespace] = ACTIONS(2614), - [anon_sym_using] = ACTIONS(2614), - [anon_sym_static_assert] = ACTIONS(2614), - [anon_sym_concept] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), - }, - [892] = { - [sym_identifier] = ACTIONS(2610), - [aux_sym_preproc_include_token1] = ACTIONS(2610), - [aux_sym_preproc_def_token1] = ACTIONS(2610), - [aux_sym_preproc_if_token1] = ACTIONS(2610), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2610), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2610), - [sym_preproc_directive] = ACTIONS(2610), - [anon_sym_LPAREN2] = ACTIONS(2612), - [anon_sym_BANG] = ACTIONS(2612), - [anon_sym_TILDE] = ACTIONS(2612), - [anon_sym_DASH] = ACTIONS(2610), - [anon_sym_PLUS] = ACTIONS(2610), - [anon_sym_STAR] = ACTIONS(2612), - [anon_sym_AMP_AMP] = ACTIONS(2612), - [anon_sym_AMP] = ACTIONS(2610), - [anon_sym_SEMI] = ACTIONS(2612), - [anon_sym_typedef] = ACTIONS(2610), - [anon_sym_extern] = ACTIONS(2610), - [anon_sym___attribute__] = ACTIONS(2610), - [anon_sym_COLON_COLON] = ACTIONS(2612), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2612), - [anon_sym___declspec] = ACTIONS(2610), - [anon_sym___based] = ACTIONS(2610), - [anon_sym___cdecl] = ACTIONS(2610), - [anon_sym___clrcall] = ACTIONS(2610), - [anon_sym___stdcall] = ACTIONS(2610), - [anon_sym___fastcall] = ACTIONS(2610), - [anon_sym___thiscall] = ACTIONS(2610), - [anon_sym___vectorcall] = ACTIONS(2610), - [anon_sym_LBRACE] = ACTIONS(2612), - [anon_sym_RBRACE] = ACTIONS(2612), - [anon_sym_LBRACK] = ACTIONS(2610), - [anon_sym_static] = ACTIONS(2610), - [anon_sym_register] = ACTIONS(2610), - [anon_sym_inline] = ACTIONS(2610), - [anon_sym_thread_local] = ACTIONS(2610), - [anon_sym_const] = ACTIONS(2610), - [anon_sym_volatile] = ACTIONS(2610), - [anon_sym_restrict] = ACTIONS(2610), - [anon_sym__Atomic] = ACTIONS(2610), - [anon_sym_mutable] = ACTIONS(2610), - [anon_sym_constexpr] = ACTIONS(2610), - [anon_sym_constinit] = ACTIONS(2610), - [anon_sym_consteval] = ACTIONS(2610), - [anon_sym_signed] = ACTIONS(2610), - [anon_sym_unsigned] = ACTIONS(2610), - [anon_sym_long] = ACTIONS(2610), - [anon_sym_short] = ACTIONS(2610), - [sym_primitive_type] = ACTIONS(2610), - [anon_sym_enum] = ACTIONS(2610), - [anon_sym_class] = ACTIONS(2610), - [anon_sym_struct] = ACTIONS(2610), - [anon_sym_union] = ACTIONS(2610), - [anon_sym_if] = ACTIONS(2610), - [anon_sym_else] = ACTIONS(2610), - [anon_sym_switch] = ACTIONS(2610), - [anon_sym_case] = ACTIONS(2610), - [anon_sym_default] = ACTIONS(2610), - [anon_sym_while] = ACTIONS(2610), - [anon_sym_do] = ACTIONS(2610), - [anon_sym_for] = ACTIONS(2610), - [anon_sym_return] = ACTIONS(2610), - [anon_sym_break] = ACTIONS(2610), - [anon_sym_continue] = ACTIONS(2610), - [anon_sym_goto] = ACTIONS(2610), - [anon_sym_not] = ACTIONS(2610), - [anon_sym_compl] = ACTIONS(2610), - [anon_sym_DASH_DASH] = ACTIONS(2612), - [anon_sym_PLUS_PLUS] = ACTIONS(2612), - [anon_sym_sizeof] = ACTIONS(2610), - [sym_number_literal] = ACTIONS(2612), - [anon_sym_L_SQUOTE] = ACTIONS(2612), - [anon_sym_u_SQUOTE] = ACTIONS(2612), - [anon_sym_U_SQUOTE] = ACTIONS(2612), - [anon_sym_u8_SQUOTE] = ACTIONS(2612), - [anon_sym_SQUOTE] = ACTIONS(2612), - [anon_sym_L_DQUOTE] = ACTIONS(2612), - [anon_sym_u_DQUOTE] = ACTIONS(2612), - [anon_sym_U_DQUOTE] = ACTIONS(2612), - [anon_sym_u8_DQUOTE] = ACTIONS(2612), - [anon_sym_DQUOTE] = ACTIONS(2612), - [sym_true] = ACTIONS(2610), - [sym_false] = ACTIONS(2610), - [sym_null] = ACTIONS(2610), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2610), - [anon_sym_decltype] = ACTIONS(2610), - [anon_sym_virtual] = ACTIONS(2610), - [anon_sym_explicit] = ACTIONS(2610), - [anon_sym_typename] = ACTIONS(2610), - [anon_sym_template] = ACTIONS(2610), - [anon_sym_operator] = ACTIONS(2610), - [anon_sym_try] = ACTIONS(2610), - [anon_sym_delete] = ACTIONS(2610), - [anon_sym_throw] = ACTIONS(2610), - [anon_sym_namespace] = ACTIONS(2610), - [anon_sym_using] = ACTIONS(2610), - [anon_sym_static_assert] = ACTIONS(2610), - [anon_sym_concept] = ACTIONS(2610), - [anon_sym_co_return] = ACTIONS(2610), - [anon_sym_co_yield] = ACTIONS(2610), - [anon_sym_R_DQUOTE] = ACTIONS(2612), - [anon_sym_LR_DQUOTE] = ACTIONS(2612), - [anon_sym_uR_DQUOTE] = ACTIONS(2612), - [anon_sym_UR_DQUOTE] = ACTIONS(2612), - [anon_sym_u8R_DQUOTE] = ACTIONS(2612), - [anon_sym_co_await] = ACTIONS(2610), - [anon_sym_new] = ACTIONS(2610), - [anon_sym_requires] = ACTIONS(2610), - [sym_this] = ACTIONS(2610), - [sym_nullptr] = ACTIONS(2610), - }, - [893] = { - [ts_builtin_sym_end] = ACTIONS(2502), - [sym_identifier] = ACTIONS(2500), - [aux_sym_preproc_include_token1] = ACTIONS(2500), - [aux_sym_preproc_def_token1] = ACTIONS(2500), - [aux_sym_preproc_if_token1] = ACTIONS(2500), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2500), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2500), - [sym_preproc_directive] = ACTIONS(2500), - [anon_sym_LPAREN2] = ACTIONS(2502), - [anon_sym_BANG] = ACTIONS(2502), - [anon_sym_TILDE] = ACTIONS(2502), - [anon_sym_DASH] = ACTIONS(2500), - [anon_sym_PLUS] = ACTIONS(2500), - [anon_sym_STAR] = ACTIONS(2502), - [anon_sym_AMP_AMP] = ACTIONS(2502), - [anon_sym_AMP] = ACTIONS(2500), - [anon_sym_SEMI] = ACTIONS(2502), - [anon_sym_typedef] = ACTIONS(2500), - [anon_sym_extern] = ACTIONS(2500), - [anon_sym___attribute__] = ACTIONS(2500), - [anon_sym_COLON_COLON] = ACTIONS(2502), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2502), - [anon_sym___declspec] = ACTIONS(2500), - [anon_sym___based] = ACTIONS(2500), - [anon_sym___cdecl] = ACTIONS(2500), - [anon_sym___clrcall] = ACTIONS(2500), - [anon_sym___stdcall] = ACTIONS(2500), - [anon_sym___fastcall] = ACTIONS(2500), - [anon_sym___thiscall] = ACTIONS(2500), - [anon_sym___vectorcall] = ACTIONS(2500), - [anon_sym_LBRACE] = ACTIONS(2502), - [anon_sym_LBRACK] = ACTIONS(2500), - [anon_sym_static] = ACTIONS(2500), - [anon_sym_register] = ACTIONS(2500), - [anon_sym_inline] = ACTIONS(2500), - [anon_sym_thread_local] = ACTIONS(2500), - [anon_sym_const] = ACTIONS(2500), - [anon_sym_volatile] = ACTIONS(2500), - [anon_sym_restrict] = ACTIONS(2500), - [anon_sym__Atomic] = ACTIONS(2500), - [anon_sym_mutable] = ACTIONS(2500), - [anon_sym_constexpr] = ACTIONS(2500), - [anon_sym_constinit] = ACTIONS(2500), - [anon_sym_consteval] = ACTIONS(2500), - [anon_sym_signed] = ACTIONS(2500), - [anon_sym_unsigned] = ACTIONS(2500), - [anon_sym_long] = ACTIONS(2500), - [anon_sym_short] = ACTIONS(2500), - [sym_primitive_type] = ACTIONS(2500), - [anon_sym_enum] = ACTIONS(2500), - [anon_sym_class] = ACTIONS(2500), - [anon_sym_struct] = ACTIONS(2500), - [anon_sym_union] = ACTIONS(2500), - [anon_sym_if] = ACTIONS(2500), - [anon_sym_else] = ACTIONS(2500), - [anon_sym_switch] = ACTIONS(2500), - [anon_sym_case] = ACTIONS(2500), - [anon_sym_default] = ACTIONS(2500), - [anon_sym_while] = ACTIONS(2500), - [anon_sym_do] = ACTIONS(2500), - [anon_sym_for] = ACTIONS(2500), - [anon_sym_return] = ACTIONS(2500), - [anon_sym_break] = ACTIONS(2500), - [anon_sym_continue] = ACTIONS(2500), - [anon_sym_goto] = ACTIONS(2500), - [anon_sym_not] = ACTIONS(2500), - [anon_sym_compl] = ACTIONS(2500), - [anon_sym_DASH_DASH] = ACTIONS(2502), - [anon_sym_PLUS_PLUS] = ACTIONS(2502), - [anon_sym_sizeof] = ACTIONS(2500), - [sym_number_literal] = ACTIONS(2502), - [anon_sym_L_SQUOTE] = ACTIONS(2502), - [anon_sym_u_SQUOTE] = ACTIONS(2502), - [anon_sym_U_SQUOTE] = ACTIONS(2502), - [anon_sym_u8_SQUOTE] = ACTIONS(2502), - [anon_sym_SQUOTE] = ACTIONS(2502), - [anon_sym_L_DQUOTE] = ACTIONS(2502), - [anon_sym_u_DQUOTE] = ACTIONS(2502), - [anon_sym_U_DQUOTE] = ACTIONS(2502), - [anon_sym_u8_DQUOTE] = ACTIONS(2502), - [anon_sym_DQUOTE] = ACTIONS(2502), - [sym_true] = ACTIONS(2500), - [sym_false] = ACTIONS(2500), - [sym_null] = ACTIONS(2500), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2500), - [anon_sym_decltype] = ACTIONS(2500), - [anon_sym_virtual] = ACTIONS(2500), - [anon_sym_explicit] = ACTIONS(2500), - [anon_sym_typename] = ACTIONS(2500), - [anon_sym_template] = ACTIONS(2500), - [anon_sym_operator] = ACTIONS(2500), - [anon_sym_try] = ACTIONS(2500), - [anon_sym_delete] = ACTIONS(2500), - [anon_sym_throw] = ACTIONS(2500), - [anon_sym_namespace] = ACTIONS(2500), - [anon_sym_using] = ACTIONS(2500), - [anon_sym_static_assert] = ACTIONS(2500), - [anon_sym_concept] = ACTIONS(2500), - [anon_sym_co_return] = ACTIONS(2500), - [anon_sym_co_yield] = ACTIONS(2500), - [anon_sym_R_DQUOTE] = ACTIONS(2502), - [anon_sym_LR_DQUOTE] = ACTIONS(2502), - [anon_sym_uR_DQUOTE] = ACTIONS(2502), - [anon_sym_UR_DQUOTE] = ACTIONS(2502), - [anon_sym_u8R_DQUOTE] = ACTIONS(2502), - [anon_sym_co_await] = ACTIONS(2500), - [anon_sym_new] = ACTIONS(2500), - [anon_sym_requires] = ACTIONS(2500), - [sym_this] = ACTIONS(2500), - [sym_nullptr] = ACTIONS(2500), - }, - [894] = { - [sym_identifier] = ACTIONS(2606), - [aux_sym_preproc_include_token1] = 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(2608), - [anon_sym_BANG] = ACTIONS(2608), - [anon_sym_TILDE] = ACTIONS(2608), - [anon_sym_DASH] = ACTIONS(2606), - [anon_sym_PLUS] = ACTIONS(2606), - [anon_sym_STAR] = ACTIONS(2608), - [anon_sym_AMP_AMP] = ACTIONS(2608), - [anon_sym_AMP] = ACTIONS(2606), - [anon_sym_SEMI] = ACTIONS(2608), - [anon_sym_typedef] = ACTIONS(2606), - [anon_sym_extern] = ACTIONS(2606), - [anon_sym___attribute__] = ACTIONS(2606), - [anon_sym_COLON_COLON] = ACTIONS(2608), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2608), - [anon_sym___declspec] = ACTIONS(2606), - [anon_sym___based] = 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(2608), - [anon_sym_RBRACE] = ACTIONS(2608), - [anon_sym_LBRACK] = ACTIONS(2606), - [anon_sym_static] = ACTIONS(2606), - [anon_sym_register] = ACTIONS(2606), - [anon_sym_inline] = ACTIONS(2606), - [anon_sym_thread_local] = ACTIONS(2606), - [anon_sym_const] = ACTIONS(2606), - [anon_sym_volatile] = ACTIONS(2606), - [anon_sym_restrict] = ACTIONS(2606), - [anon_sym__Atomic] = ACTIONS(2606), - [anon_sym_mutable] = ACTIONS(2606), - [anon_sym_constexpr] = ACTIONS(2606), - [anon_sym_constinit] = ACTIONS(2606), - [anon_sym_consteval] = ACTIONS(2606), - [anon_sym_signed] = ACTIONS(2606), - [anon_sym_unsigned] = ACTIONS(2606), - [anon_sym_long] = ACTIONS(2606), - [anon_sym_short] = ACTIONS(2606), - [sym_primitive_type] = ACTIONS(2606), - [anon_sym_enum] = ACTIONS(2606), - [anon_sym_class] = ACTIONS(2606), - [anon_sym_struct] = ACTIONS(2606), - [anon_sym_union] = ACTIONS(2606), - [anon_sym_if] = ACTIONS(2606), - [anon_sym_else] = 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_return] = ACTIONS(2606), - [anon_sym_break] = ACTIONS(2606), - [anon_sym_continue] = ACTIONS(2606), - [anon_sym_goto] = ACTIONS(2606), - [anon_sym_not] = ACTIONS(2606), - [anon_sym_compl] = ACTIONS(2606), - [anon_sym_DASH_DASH] = ACTIONS(2608), - [anon_sym_PLUS_PLUS] = ACTIONS(2608), - [anon_sym_sizeof] = ACTIONS(2606), - [sym_number_literal] = ACTIONS(2608), - [anon_sym_L_SQUOTE] = ACTIONS(2608), - [anon_sym_u_SQUOTE] = ACTIONS(2608), - [anon_sym_U_SQUOTE] = ACTIONS(2608), - [anon_sym_u8_SQUOTE] = ACTIONS(2608), - [anon_sym_SQUOTE] = ACTIONS(2608), - [anon_sym_L_DQUOTE] = ACTIONS(2608), - [anon_sym_u_DQUOTE] = ACTIONS(2608), - [anon_sym_U_DQUOTE] = ACTIONS(2608), - [anon_sym_u8_DQUOTE] = ACTIONS(2608), - [anon_sym_DQUOTE] = ACTIONS(2608), - [sym_true] = ACTIONS(2606), - [sym_false] = ACTIONS(2606), - [sym_null] = ACTIONS(2606), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2606), - [anon_sym_decltype] = ACTIONS(2606), - [anon_sym_virtual] = ACTIONS(2606), - [anon_sym_explicit] = ACTIONS(2606), - [anon_sym_typename] = ACTIONS(2606), - [anon_sym_template] = ACTIONS(2606), - [anon_sym_operator] = ACTIONS(2606), - [anon_sym_try] = ACTIONS(2606), - [anon_sym_delete] = ACTIONS(2606), - [anon_sym_throw] = ACTIONS(2606), - [anon_sym_namespace] = ACTIONS(2606), - [anon_sym_using] = ACTIONS(2606), - [anon_sym_static_assert] = ACTIONS(2606), - [anon_sym_concept] = ACTIONS(2606), - [anon_sym_co_return] = ACTIONS(2606), - [anon_sym_co_yield] = ACTIONS(2606), - [anon_sym_R_DQUOTE] = ACTIONS(2608), - [anon_sym_LR_DQUOTE] = ACTIONS(2608), - [anon_sym_uR_DQUOTE] = ACTIONS(2608), - [anon_sym_UR_DQUOTE] = ACTIONS(2608), - [anon_sym_u8R_DQUOTE] = ACTIONS(2608), - [anon_sym_co_await] = ACTIONS(2606), - [anon_sym_new] = ACTIONS(2606), - [anon_sym_requires] = ACTIONS(2606), - [sym_this] = ACTIONS(2606), - [sym_nullptr] = ACTIONS(2606), - }, - [895] = { - [ts_builtin_sym_end] = ACTIONS(2502), - [sym_identifier] = ACTIONS(2500), - [aux_sym_preproc_include_token1] = ACTIONS(2500), - [aux_sym_preproc_def_token1] = ACTIONS(2500), - [aux_sym_preproc_if_token1] = ACTIONS(2500), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2500), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2500), - [sym_preproc_directive] = ACTIONS(2500), - [anon_sym_LPAREN2] = ACTIONS(2502), - [anon_sym_BANG] = ACTIONS(2502), - [anon_sym_TILDE] = ACTIONS(2502), - [anon_sym_DASH] = ACTIONS(2500), - [anon_sym_PLUS] = ACTIONS(2500), - [anon_sym_STAR] = ACTIONS(2502), - [anon_sym_AMP_AMP] = ACTIONS(2502), - [anon_sym_AMP] = ACTIONS(2500), - [anon_sym_SEMI] = ACTIONS(2502), - [anon_sym_typedef] = ACTIONS(2500), - [anon_sym_extern] = ACTIONS(2500), - [anon_sym___attribute__] = ACTIONS(2500), - [anon_sym_COLON_COLON] = ACTIONS(2502), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2502), - [anon_sym___declspec] = ACTIONS(2500), - [anon_sym___based] = ACTIONS(2500), - [anon_sym___cdecl] = ACTIONS(2500), - [anon_sym___clrcall] = ACTIONS(2500), - [anon_sym___stdcall] = ACTIONS(2500), - [anon_sym___fastcall] = ACTIONS(2500), - [anon_sym___thiscall] = ACTIONS(2500), - [anon_sym___vectorcall] = ACTIONS(2500), - [anon_sym_LBRACE] = ACTIONS(2502), - [anon_sym_LBRACK] = ACTIONS(2500), - [anon_sym_static] = ACTIONS(2500), - [anon_sym_register] = ACTIONS(2500), - [anon_sym_inline] = ACTIONS(2500), - [anon_sym_thread_local] = ACTIONS(2500), - [anon_sym_const] = ACTIONS(2500), - [anon_sym_volatile] = ACTIONS(2500), - [anon_sym_restrict] = ACTIONS(2500), - [anon_sym__Atomic] = ACTIONS(2500), - [anon_sym_mutable] = ACTIONS(2500), - [anon_sym_constexpr] = ACTIONS(2500), - [anon_sym_constinit] = ACTIONS(2500), - [anon_sym_consteval] = ACTIONS(2500), - [anon_sym_signed] = ACTIONS(2500), - [anon_sym_unsigned] = ACTIONS(2500), - [anon_sym_long] = ACTIONS(2500), - [anon_sym_short] = ACTIONS(2500), - [sym_primitive_type] = ACTIONS(2500), - [anon_sym_enum] = ACTIONS(2500), - [anon_sym_class] = ACTIONS(2500), - [anon_sym_struct] = ACTIONS(2500), - [anon_sym_union] = ACTIONS(2500), - [anon_sym_if] = ACTIONS(2500), - [anon_sym_else] = ACTIONS(2500), - [anon_sym_switch] = ACTIONS(2500), - [anon_sym_case] = ACTIONS(2500), - [anon_sym_default] = ACTIONS(2500), - [anon_sym_while] = ACTIONS(2500), - [anon_sym_do] = ACTIONS(2500), - [anon_sym_for] = ACTIONS(2500), - [anon_sym_return] = ACTIONS(2500), - [anon_sym_break] = ACTIONS(2500), - [anon_sym_continue] = ACTIONS(2500), - [anon_sym_goto] = ACTIONS(2500), - [anon_sym_not] = ACTIONS(2500), - [anon_sym_compl] = ACTIONS(2500), - [anon_sym_DASH_DASH] = ACTIONS(2502), - [anon_sym_PLUS_PLUS] = ACTIONS(2502), - [anon_sym_sizeof] = ACTIONS(2500), - [sym_number_literal] = ACTIONS(2502), - [anon_sym_L_SQUOTE] = ACTIONS(2502), - [anon_sym_u_SQUOTE] = ACTIONS(2502), - [anon_sym_U_SQUOTE] = ACTIONS(2502), - [anon_sym_u8_SQUOTE] = ACTIONS(2502), - [anon_sym_SQUOTE] = ACTIONS(2502), - [anon_sym_L_DQUOTE] = ACTIONS(2502), - [anon_sym_u_DQUOTE] = ACTIONS(2502), - [anon_sym_U_DQUOTE] = ACTIONS(2502), - [anon_sym_u8_DQUOTE] = ACTIONS(2502), - [anon_sym_DQUOTE] = ACTIONS(2502), - [sym_true] = ACTIONS(2500), - [sym_false] = ACTIONS(2500), - [sym_null] = ACTIONS(2500), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2500), - [anon_sym_decltype] = ACTIONS(2500), - [anon_sym_virtual] = ACTIONS(2500), - [anon_sym_explicit] = ACTIONS(2500), - [anon_sym_typename] = ACTIONS(2500), - [anon_sym_template] = ACTIONS(2500), - [anon_sym_operator] = ACTIONS(2500), - [anon_sym_try] = ACTIONS(2500), - [anon_sym_delete] = ACTIONS(2500), - [anon_sym_throw] = ACTIONS(2500), - [anon_sym_namespace] = ACTIONS(2500), - [anon_sym_using] = ACTIONS(2500), - [anon_sym_static_assert] = ACTIONS(2500), - [anon_sym_concept] = ACTIONS(2500), - [anon_sym_co_return] = ACTIONS(2500), - [anon_sym_co_yield] = ACTIONS(2500), - [anon_sym_R_DQUOTE] = ACTIONS(2502), - [anon_sym_LR_DQUOTE] = ACTIONS(2502), - [anon_sym_uR_DQUOTE] = ACTIONS(2502), - [anon_sym_UR_DQUOTE] = ACTIONS(2502), - [anon_sym_u8R_DQUOTE] = ACTIONS(2502), - [anon_sym_co_await] = ACTIONS(2500), - [anon_sym_new] = ACTIONS(2500), - [anon_sym_requires] = ACTIONS(2500), - [sym_this] = ACTIONS(2500), - [sym_nullptr] = ACTIONS(2500), - }, - [896] = { - [sym_identifier] = ACTIONS(2510), - [aux_sym_preproc_include_token1] = ACTIONS(2510), - [aux_sym_preproc_def_token1] = ACTIONS(2510), - [aux_sym_preproc_if_token1] = ACTIONS(2510), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2510), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2510), - [sym_preproc_directive] = ACTIONS(2510), - [anon_sym_LPAREN2] = ACTIONS(2512), - [anon_sym_BANG] = ACTIONS(2512), - [anon_sym_TILDE] = ACTIONS(2512), - [anon_sym_DASH] = ACTIONS(2510), - [anon_sym_PLUS] = ACTIONS(2510), - [anon_sym_STAR] = ACTIONS(2512), - [anon_sym_AMP_AMP] = ACTIONS(2512), - [anon_sym_AMP] = ACTIONS(2510), - [anon_sym_SEMI] = ACTIONS(2512), - [anon_sym_typedef] = ACTIONS(2510), - [anon_sym_extern] = ACTIONS(2510), - [anon_sym___attribute__] = ACTIONS(2510), - [anon_sym_COLON_COLON] = ACTIONS(2512), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2512), - [anon_sym___declspec] = ACTIONS(2510), - [anon_sym___based] = ACTIONS(2510), - [anon_sym___cdecl] = ACTIONS(2510), - [anon_sym___clrcall] = ACTIONS(2510), - [anon_sym___stdcall] = ACTIONS(2510), - [anon_sym___fastcall] = ACTIONS(2510), - [anon_sym___thiscall] = ACTIONS(2510), - [anon_sym___vectorcall] = ACTIONS(2510), - [anon_sym_LBRACE] = ACTIONS(2512), - [anon_sym_RBRACE] = ACTIONS(2512), - [anon_sym_LBRACK] = ACTIONS(2510), - [anon_sym_static] = ACTIONS(2510), - [anon_sym_register] = ACTIONS(2510), - [anon_sym_inline] = ACTIONS(2510), - [anon_sym_thread_local] = ACTIONS(2510), - [anon_sym_const] = ACTIONS(2510), - [anon_sym_volatile] = ACTIONS(2510), - [anon_sym_restrict] = ACTIONS(2510), - [anon_sym__Atomic] = ACTIONS(2510), - [anon_sym_mutable] = ACTIONS(2510), - [anon_sym_constexpr] = ACTIONS(2510), - [anon_sym_constinit] = ACTIONS(2510), - [anon_sym_consteval] = ACTIONS(2510), - [anon_sym_signed] = ACTIONS(2510), - [anon_sym_unsigned] = ACTIONS(2510), - [anon_sym_long] = ACTIONS(2510), - [anon_sym_short] = ACTIONS(2510), - [sym_primitive_type] = ACTIONS(2510), - [anon_sym_enum] = ACTIONS(2510), - [anon_sym_class] = ACTIONS(2510), - [anon_sym_struct] = ACTIONS(2510), - [anon_sym_union] = ACTIONS(2510), - [anon_sym_if] = ACTIONS(2510), - [anon_sym_else] = ACTIONS(2510), - [anon_sym_switch] = ACTIONS(2510), - [anon_sym_case] = ACTIONS(2510), - [anon_sym_default] = ACTIONS(2510), - [anon_sym_while] = ACTIONS(2510), - [anon_sym_do] = ACTIONS(2510), - [anon_sym_for] = ACTIONS(2510), - [anon_sym_return] = ACTIONS(2510), - [anon_sym_break] = ACTIONS(2510), - [anon_sym_continue] = ACTIONS(2510), - [anon_sym_goto] = ACTIONS(2510), - [anon_sym_not] = ACTIONS(2510), - [anon_sym_compl] = ACTIONS(2510), - [anon_sym_DASH_DASH] = ACTIONS(2512), - [anon_sym_PLUS_PLUS] = ACTIONS(2512), - [anon_sym_sizeof] = ACTIONS(2510), - [sym_number_literal] = ACTIONS(2512), - [anon_sym_L_SQUOTE] = ACTIONS(2512), - [anon_sym_u_SQUOTE] = ACTIONS(2512), - [anon_sym_U_SQUOTE] = ACTIONS(2512), - [anon_sym_u8_SQUOTE] = ACTIONS(2512), - [anon_sym_SQUOTE] = ACTIONS(2512), - [anon_sym_L_DQUOTE] = ACTIONS(2512), - [anon_sym_u_DQUOTE] = ACTIONS(2512), - [anon_sym_U_DQUOTE] = ACTIONS(2512), - [anon_sym_u8_DQUOTE] = ACTIONS(2512), - [anon_sym_DQUOTE] = ACTIONS(2512), - [sym_true] = ACTIONS(2510), - [sym_false] = ACTIONS(2510), - [sym_null] = ACTIONS(2510), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2510), - [anon_sym_decltype] = ACTIONS(2510), - [anon_sym_virtual] = ACTIONS(2510), - [anon_sym_explicit] = ACTIONS(2510), - [anon_sym_typename] = ACTIONS(2510), - [anon_sym_template] = ACTIONS(2510), - [anon_sym_operator] = ACTIONS(2510), - [anon_sym_try] = ACTIONS(2510), - [anon_sym_delete] = ACTIONS(2510), - [anon_sym_throw] = ACTIONS(2510), - [anon_sym_namespace] = ACTIONS(2510), - [anon_sym_using] = ACTIONS(2510), - [anon_sym_static_assert] = ACTIONS(2510), - [anon_sym_concept] = ACTIONS(2510), - [anon_sym_co_return] = ACTIONS(2510), - [anon_sym_co_yield] = ACTIONS(2510), - [anon_sym_R_DQUOTE] = ACTIONS(2512), - [anon_sym_LR_DQUOTE] = ACTIONS(2512), - [anon_sym_uR_DQUOTE] = ACTIONS(2512), - [anon_sym_UR_DQUOTE] = ACTIONS(2512), - [anon_sym_u8R_DQUOTE] = ACTIONS(2512), - [anon_sym_co_await] = ACTIONS(2510), - [anon_sym_new] = ACTIONS(2510), - [anon_sym_requires] = ACTIONS(2510), - [sym_this] = ACTIONS(2510), - [sym_nullptr] = ACTIONS(2510), - }, - [897] = { - [sym__declaration_modifiers] = STATE(2183), - [sym__declaration_specifiers] = STATE(4771), - [sym_attribute_specifier] = STATE(2183), - [sym_attribute_declaration] = STATE(2183), - [sym_ms_declspec_modifier] = STATE(2183), - [sym_storage_class_specifier] = STATE(2183), - [sym_type_qualifier] = STATE(2183), - [sym__type_specifier] = STATE(3885), - [sym_sized_type_specifier] = STATE(3232), - [sym_enum_specifier] = STATE(3232), - [sym_struct_specifier] = STATE(3232), - [sym_union_specifier] = STATE(3232), - [sym_placeholder_type_specifier] = STATE(3232), - [sym_decltype_auto] = STATE(3279), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3232), - [sym_virtual] = STATE(2183), - [sym_dependent_type] = STATE(3232), - [sym_template_type] = STATE(3198), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(5006), - [sym_qualified_type_identifier] = STATE(3259), - [aux_sym__declaration_specifiers_repeat1] = STATE(2183), - [aux_sym_sized_type_specifier_repeat1] = STATE(3272), - [sym_identifier] = ACTIONS(2922), - [anon_sym_COMMA] = ACTIONS(2956), - [anon_sym_BANG] = ACTIONS(2958), - [anon_sym_TILDE] = ACTIONS(2956), - [anon_sym_DASH] = ACTIONS(2958), - [anon_sym_PLUS] = ACTIONS(2958), - [anon_sym_STAR] = ACTIONS(2958), - [anon_sym_SLASH] = ACTIONS(2958), - [anon_sym_PERCENT] = ACTIONS(2958), - [anon_sym_PIPE_PIPE] = ACTIONS(2956), - [anon_sym_AMP_AMP] = ACTIONS(2956), - [anon_sym_PIPE] = ACTIONS(2958), - [anon_sym_CARET] = ACTIONS(2958), - [anon_sym_AMP] = ACTIONS(2958), - [anon_sym_EQ_EQ] = ACTIONS(2956), - [anon_sym_BANG_EQ] = ACTIONS(2956), - [anon_sym_GT] = ACTIONS(2958), - [anon_sym_GT_EQ] = ACTIONS(2956), - [anon_sym_LT_EQ] = ACTIONS(2958), - [anon_sym_LT] = ACTIONS(2958), - [anon_sym_LT_LT] = ACTIONS(2958), - [anon_sym_GT_GT] = ACTIONS(2958), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(2928), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1413), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym_EQ] = ACTIONS(2958), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(2930), - [anon_sym_unsigned] = ACTIONS(2930), - [anon_sym_long] = ACTIONS(2930), - [anon_sym_short] = ACTIONS(2930), - [sym_primitive_type] = ACTIONS(2932), - [anon_sym_enum] = ACTIONS(2934), - [anon_sym_class] = ACTIONS(2936), - [anon_sym_struct] = ACTIONS(2938), - [anon_sym_union] = ACTIONS(2940), - [anon_sym_STAR_EQ] = ACTIONS(2956), - [anon_sym_SLASH_EQ] = ACTIONS(2956), - [anon_sym_PERCENT_EQ] = ACTIONS(2956), - [anon_sym_PLUS_EQ] = ACTIONS(2956), - [anon_sym_DASH_EQ] = ACTIONS(2956), - [anon_sym_LT_LT_EQ] = ACTIONS(2956), - [anon_sym_GT_GT_EQ] = ACTIONS(2956), - [anon_sym_AMP_EQ] = ACTIONS(2956), - [anon_sym_CARET_EQ] = ACTIONS(2956), - [anon_sym_PIPE_EQ] = ACTIONS(2956), - [anon_sym_and_eq] = ACTIONS(2958), - [anon_sym_or_eq] = ACTIONS(2958), - [anon_sym_xor_eq] = ACTIONS(2958), - [anon_sym_not] = ACTIONS(2958), - [anon_sym_compl] = ACTIONS(2958), - [anon_sym_LT_EQ_GT] = ACTIONS(2956), - [anon_sym_or] = ACTIONS(2958), - [anon_sym_and] = ACTIONS(2958), - [anon_sym_bitor] = ACTIONS(2958), - [anon_sym_xor] = ACTIONS(2958), - [anon_sym_bitand] = ACTIONS(2958), - [anon_sym_not_eq] = ACTIONS(2958), - [anon_sym_DASH_DASH] = ACTIONS(2956), - [anon_sym_PLUS_PLUS] = ACTIONS(2956), - [anon_sym_DASH_GT] = ACTIONS(2958), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(107), - [anon_sym_decltype] = ACTIONS(109), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(2942), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(2960), - [anon_sym_co_await] = ACTIONS(2958), - [anon_sym_new] = ACTIONS(2960), - [anon_sym_DASH_GT_STAR] = ACTIONS(2956), - [anon_sym_LPAREN_RPAREN] = ACTIONS(2956), - [anon_sym_LBRACK_RBRACK] = ACTIONS(2956), - [anon_sym_DQUOTE_DQUOTE] = ACTIONS(2962), - }, - [898] = { - [sym_identifier] = ACTIONS(2596), - [aux_sym_preproc_include_token1] = ACTIONS(2596), - [aux_sym_preproc_def_token1] = ACTIONS(2596), - [aux_sym_preproc_if_token1] = ACTIONS(2596), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2596), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2596), - [sym_preproc_directive] = ACTIONS(2596), - [anon_sym_LPAREN2] = ACTIONS(2598), - [anon_sym_BANG] = ACTIONS(2598), - [anon_sym_TILDE] = ACTIONS(2598), - [anon_sym_DASH] = ACTIONS(2596), - [anon_sym_PLUS] = ACTIONS(2596), - [anon_sym_STAR] = ACTIONS(2598), - [anon_sym_AMP_AMP] = ACTIONS(2598), - [anon_sym_AMP] = ACTIONS(2596), - [anon_sym_SEMI] = ACTIONS(2598), - [anon_sym_typedef] = ACTIONS(2596), - [anon_sym_extern] = ACTIONS(2596), - [anon_sym___attribute__] = ACTIONS(2596), - [anon_sym_COLON_COLON] = ACTIONS(2598), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2598), - [anon_sym___declspec] = ACTIONS(2596), - [anon_sym___based] = ACTIONS(2596), - [anon_sym___cdecl] = ACTIONS(2596), - [anon_sym___clrcall] = ACTIONS(2596), - [anon_sym___stdcall] = ACTIONS(2596), - [anon_sym___fastcall] = ACTIONS(2596), - [anon_sym___thiscall] = ACTIONS(2596), - [anon_sym___vectorcall] = ACTIONS(2596), - [anon_sym_LBRACE] = ACTIONS(2598), - [anon_sym_RBRACE] = ACTIONS(2598), - [anon_sym_LBRACK] = ACTIONS(2596), - [anon_sym_static] = ACTIONS(2596), - [anon_sym_register] = ACTIONS(2596), - [anon_sym_inline] = ACTIONS(2596), - [anon_sym_thread_local] = ACTIONS(2596), - [anon_sym_const] = ACTIONS(2596), - [anon_sym_volatile] = ACTIONS(2596), - [anon_sym_restrict] = ACTIONS(2596), - [anon_sym__Atomic] = ACTIONS(2596), - [anon_sym_mutable] = ACTIONS(2596), - [anon_sym_constexpr] = ACTIONS(2596), - [anon_sym_constinit] = ACTIONS(2596), - [anon_sym_consteval] = ACTIONS(2596), - [anon_sym_signed] = ACTIONS(2596), - [anon_sym_unsigned] = ACTIONS(2596), - [anon_sym_long] = ACTIONS(2596), - [anon_sym_short] = ACTIONS(2596), - [sym_primitive_type] = ACTIONS(2596), - [anon_sym_enum] = ACTIONS(2596), - [anon_sym_class] = ACTIONS(2596), - [anon_sym_struct] = ACTIONS(2596), - [anon_sym_union] = ACTIONS(2596), - [anon_sym_if] = ACTIONS(2596), - [anon_sym_else] = ACTIONS(2596), - [anon_sym_switch] = ACTIONS(2596), - [anon_sym_case] = ACTIONS(2596), - [anon_sym_default] = ACTIONS(2596), - [anon_sym_while] = ACTIONS(2596), - [anon_sym_do] = ACTIONS(2596), - [anon_sym_for] = ACTIONS(2596), - [anon_sym_return] = ACTIONS(2596), - [anon_sym_break] = ACTIONS(2596), - [anon_sym_continue] = ACTIONS(2596), - [anon_sym_goto] = ACTIONS(2596), - [anon_sym_not] = ACTIONS(2596), - [anon_sym_compl] = ACTIONS(2596), - [anon_sym_DASH_DASH] = ACTIONS(2598), - [anon_sym_PLUS_PLUS] = ACTIONS(2598), - [anon_sym_sizeof] = ACTIONS(2596), - [sym_number_literal] = ACTIONS(2598), - [anon_sym_L_SQUOTE] = ACTIONS(2598), - [anon_sym_u_SQUOTE] = ACTIONS(2598), - [anon_sym_U_SQUOTE] = ACTIONS(2598), - [anon_sym_u8_SQUOTE] = ACTIONS(2598), - [anon_sym_SQUOTE] = ACTIONS(2598), - [anon_sym_L_DQUOTE] = ACTIONS(2598), - [anon_sym_u_DQUOTE] = ACTIONS(2598), - [anon_sym_U_DQUOTE] = ACTIONS(2598), - [anon_sym_u8_DQUOTE] = ACTIONS(2598), - [anon_sym_DQUOTE] = ACTIONS(2598), - [sym_true] = ACTIONS(2596), - [sym_false] = ACTIONS(2596), - [sym_null] = ACTIONS(2596), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2596), - [anon_sym_decltype] = ACTIONS(2596), - [anon_sym_virtual] = ACTIONS(2596), - [anon_sym_explicit] = ACTIONS(2596), - [anon_sym_typename] = ACTIONS(2596), - [anon_sym_template] = ACTIONS(2596), - [anon_sym_operator] = ACTIONS(2596), - [anon_sym_try] = ACTIONS(2596), - [anon_sym_delete] = ACTIONS(2596), - [anon_sym_throw] = ACTIONS(2596), - [anon_sym_namespace] = ACTIONS(2596), - [anon_sym_using] = ACTIONS(2596), - [anon_sym_static_assert] = ACTIONS(2596), - [anon_sym_concept] = ACTIONS(2596), - [anon_sym_co_return] = ACTIONS(2596), - [anon_sym_co_yield] = ACTIONS(2596), - [anon_sym_R_DQUOTE] = ACTIONS(2598), - [anon_sym_LR_DQUOTE] = ACTIONS(2598), - [anon_sym_uR_DQUOTE] = ACTIONS(2598), - [anon_sym_UR_DQUOTE] = ACTIONS(2598), - [anon_sym_u8R_DQUOTE] = ACTIONS(2598), - [anon_sym_co_await] = ACTIONS(2596), - [anon_sym_new] = ACTIONS(2596), - [anon_sym_requires] = ACTIONS(2596), - [sym_this] = ACTIONS(2596), - [sym_nullptr] = ACTIONS(2596), - }, - [899] = { - [ts_builtin_sym_end] = ACTIONS(2534), - [sym_identifier] = ACTIONS(2532), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2534), - [anon_sym_AMP] = ACTIONS(2532), - [anon_sym_SEMI] = ACTIONS(2534), - [anon_sym_typedef] = ACTIONS(2532), - [anon_sym_extern] = ACTIONS(2532), - [anon_sym___attribute__] = ACTIONS(2532), - [anon_sym_COLON_COLON] = ACTIONS(2534), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2534), - [anon_sym___declspec] = ACTIONS(2532), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2532), - [anon_sym_static] = ACTIONS(2532), - [anon_sym_register] = ACTIONS(2532), - [anon_sym_inline] = ACTIONS(2532), - [anon_sym_thread_local] = ACTIONS(2532), - [anon_sym_const] = ACTIONS(2532), - [anon_sym_volatile] = ACTIONS(2532), - [anon_sym_restrict] = ACTIONS(2532), - [anon_sym__Atomic] = ACTIONS(2532), - [anon_sym_mutable] = ACTIONS(2532), - [anon_sym_constexpr] = ACTIONS(2532), - [anon_sym_constinit] = ACTIONS(2532), - [anon_sym_consteval] = ACTIONS(2532), - [anon_sym_signed] = ACTIONS(2532), - [anon_sym_unsigned] = ACTIONS(2532), - [anon_sym_long] = ACTIONS(2532), - [anon_sym_short] = ACTIONS(2532), - [sym_primitive_type] = ACTIONS(2532), - [anon_sym_enum] = ACTIONS(2532), - [anon_sym_class] = 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_return] = ACTIONS(2532), - [anon_sym_break] = ACTIONS(2532), - [anon_sym_continue] = ACTIONS(2532), - [anon_sym_goto] = ACTIONS(2532), - [anon_sym_not] = ACTIONS(2532), - [anon_sym_compl] = ACTIONS(2532), - [anon_sym_DASH_DASH] = ACTIONS(2534), - [anon_sym_PLUS_PLUS] = ACTIONS(2534), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2534), - [anon_sym_u_DQUOTE] = ACTIONS(2534), - [anon_sym_U_DQUOTE] = ACTIONS(2534), - [anon_sym_u8_DQUOTE] = ACTIONS(2534), - [anon_sym_DQUOTE] = ACTIONS(2534), - [sym_true] = ACTIONS(2532), - [sym_false] = ACTIONS(2532), - [sym_null] = ACTIONS(2532), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2532), - [anon_sym_decltype] = ACTIONS(2532), - [anon_sym_virtual] = ACTIONS(2532), - [anon_sym_explicit] = ACTIONS(2532), - [anon_sym_typename] = ACTIONS(2532), - [anon_sym_template] = ACTIONS(2532), - [anon_sym_operator] = ACTIONS(2532), - [anon_sym_try] = ACTIONS(2532), - [anon_sym_delete] = ACTIONS(2532), - [anon_sym_throw] = ACTIONS(2532), - [anon_sym_namespace] = ACTIONS(2532), - [anon_sym_using] = ACTIONS(2532), - [anon_sym_static_assert] = ACTIONS(2532), - [anon_sym_concept] = ACTIONS(2532), - [anon_sym_co_return] = ACTIONS(2532), - [anon_sym_co_yield] = ACTIONS(2532), - [anon_sym_R_DQUOTE] = ACTIONS(2534), - [anon_sym_LR_DQUOTE] = ACTIONS(2534), - [anon_sym_uR_DQUOTE] = ACTIONS(2534), - [anon_sym_UR_DQUOTE] = ACTIONS(2534), - [anon_sym_u8R_DQUOTE] = ACTIONS(2534), - [anon_sym_co_await] = ACTIONS(2532), - [anon_sym_new] = ACTIONS(2532), - [anon_sym_requires] = ACTIONS(2532), - [sym_this] = ACTIONS(2532), - [sym_nullptr] = ACTIONS(2532), - }, - [900] = { - [sym_identifier] = ACTIONS(2514), - [aux_sym_preproc_include_token1] = ACTIONS(2514), - [aux_sym_preproc_def_token1] = ACTIONS(2514), - [aux_sym_preproc_if_token1] = ACTIONS(2514), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2514), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2514), - [sym_preproc_directive] = ACTIONS(2514), - [anon_sym_LPAREN2] = ACTIONS(2516), - [anon_sym_BANG] = ACTIONS(2516), - [anon_sym_TILDE] = ACTIONS(2516), - [anon_sym_DASH] = ACTIONS(2514), - [anon_sym_PLUS] = ACTIONS(2514), - [anon_sym_STAR] = ACTIONS(2516), - [anon_sym_AMP_AMP] = ACTIONS(2516), - [anon_sym_AMP] = ACTIONS(2514), - [anon_sym_SEMI] = ACTIONS(2516), - [anon_sym_typedef] = ACTIONS(2514), - [anon_sym_extern] = ACTIONS(2514), - [anon_sym___attribute__] = ACTIONS(2514), - [anon_sym_COLON_COLON] = ACTIONS(2516), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2516), - [anon_sym___declspec] = ACTIONS(2514), - [anon_sym___based] = ACTIONS(2514), - [anon_sym___cdecl] = ACTIONS(2514), - [anon_sym___clrcall] = ACTIONS(2514), - [anon_sym___stdcall] = ACTIONS(2514), - [anon_sym___fastcall] = ACTIONS(2514), - [anon_sym___thiscall] = ACTIONS(2514), - [anon_sym___vectorcall] = ACTIONS(2514), - [anon_sym_LBRACE] = ACTIONS(2516), - [anon_sym_RBRACE] = ACTIONS(2516), - [anon_sym_LBRACK] = ACTIONS(2514), - [anon_sym_static] = ACTIONS(2514), - [anon_sym_register] = ACTIONS(2514), - [anon_sym_inline] = ACTIONS(2514), - [anon_sym_thread_local] = ACTIONS(2514), - [anon_sym_const] = ACTIONS(2514), - [anon_sym_volatile] = ACTIONS(2514), - [anon_sym_restrict] = ACTIONS(2514), - [anon_sym__Atomic] = ACTIONS(2514), - [anon_sym_mutable] = ACTIONS(2514), - [anon_sym_constexpr] = ACTIONS(2514), - [anon_sym_constinit] = ACTIONS(2514), - [anon_sym_consteval] = ACTIONS(2514), - [anon_sym_signed] = ACTIONS(2514), - [anon_sym_unsigned] = ACTIONS(2514), - [anon_sym_long] = ACTIONS(2514), - [anon_sym_short] = ACTIONS(2514), - [sym_primitive_type] = ACTIONS(2514), - [anon_sym_enum] = ACTIONS(2514), - [anon_sym_class] = ACTIONS(2514), - [anon_sym_struct] = ACTIONS(2514), - [anon_sym_union] = ACTIONS(2514), - [anon_sym_if] = ACTIONS(2514), - [anon_sym_else] = ACTIONS(2514), - [anon_sym_switch] = ACTIONS(2514), - [anon_sym_case] = ACTIONS(2514), - [anon_sym_default] = ACTIONS(2514), - [anon_sym_while] = ACTIONS(2514), - [anon_sym_do] = ACTIONS(2514), - [anon_sym_for] = ACTIONS(2514), - [anon_sym_return] = ACTIONS(2514), - [anon_sym_break] = ACTIONS(2514), - [anon_sym_continue] = ACTIONS(2514), - [anon_sym_goto] = ACTIONS(2514), - [anon_sym_not] = ACTIONS(2514), - [anon_sym_compl] = ACTIONS(2514), - [anon_sym_DASH_DASH] = ACTIONS(2516), - [anon_sym_PLUS_PLUS] = ACTIONS(2516), - [anon_sym_sizeof] = ACTIONS(2514), - [sym_number_literal] = ACTIONS(2516), - [anon_sym_L_SQUOTE] = ACTIONS(2516), - [anon_sym_u_SQUOTE] = ACTIONS(2516), - [anon_sym_U_SQUOTE] = ACTIONS(2516), - [anon_sym_u8_SQUOTE] = ACTIONS(2516), - [anon_sym_SQUOTE] = ACTIONS(2516), - [anon_sym_L_DQUOTE] = ACTIONS(2516), - [anon_sym_u_DQUOTE] = ACTIONS(2516), - [anon_sym_U_DQUOTE] = ACTIONS(2516), - [anon_sym_u8_DQUOTE] = ACTIONS(2516), - [anon_sym_DQUOTE] = ACTIONS(2516), - [sym_true] = ACTIONS(2514), - [sym_false] = ACTIONS(2514), - [sym_null] = ACTIONS(2514), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2514), - [anon_sym_decltype] = ACTIONS(2514), - [anon_sym_virtual] = ACTIONS(2514), - [anon_sym_explicit] = ACTIONS(2514), - [anon_sym_typename] = ACTIONS(2514), - [anon_sym_template] = ACTIONS(2514), - [anon_sym_operator] = ACTIONS(2514), - [anon_sym_try] = ACTIONS(2514), - [anon_sym_delete] = ACTIONS(2514), - [anon_sym_throw] = ACTIONS(2514), - [anon_sym_namespace] = ACTIONS(2514), - [anon_sym_using] = ACTIONS(2514), - [anon_sym_static_assert] = ACTIONS(2514), - [anon_sym_concept] = ACTIONS(2514), - [anon_sym_co_return] = ACTIONS(2514), - [anon_sym_co_yield] = ACTIONS(2514), - [anon_sym_R_DQUOTE] = ACTIONS(2516), - [anon_sym_LR_DQUOTE] = ACTIONS(2516), - [anon_sym_uR_DQUOTE] = ACTIONS(2516), - [anon_sym_UR_DQUOTE] = ACTIONS(2516), - [anon_sym_u8R_DQUOTE] = ACTIONS(2516), - [anon_sym_co_await] = ACTIONS(2514), - [anon_sym_new] = ACTIONS(2514), - [anon_sym_requires] = ACTIONS(2514), - [sym_this] = ACTIONS(2514), - [sym_nullptr] = ACTIONS(2514), - }, - [901] = { - [ts_builtin_sym_end] = ACTIONS(1735), - [sym_identifier] = ACTIONS(1737), - [aux_sym_preproc_include_token1] = ACTIONS(1737), - [aux_sym_preproc_def_token1] = ACTIONS(1737), - [anon_sym_COMMA] = ACTIONS(2652), - [aux_sym_preproc_if_token1] = ACTIONS(1737), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1737), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1737), - [sym_preproc_directive] = ACTIONS(1737), - [anon_sym_LPAREN2] = ACTIONS(1735), - [anon_sym_BANG] = ACTIONS(1735), - [anon_sym_TILDE] = ACTIONS(1735), - [anon_sym_DASH] = ACTIONS(1737), - [anon_sym_PLUS] = ACTIONS(1737), - [anon_sym_STAR] = ACTIONS(1735), - [anon_sym_AMP_AMP] = ACTIONS(1735), - [anon_sym_AMP] = ACTIONS(1737), - [anon_sym_SEMI] = ACTIONS(2652), - [anon_sym_typedef] = ACTIONS(1737), - [anon_sym_extern] = ACTIONS(1737), - [anon_sym___attribute__] = ACTIONS(1737), - [anon_sym_COLON_COLON] = ACTIONS(1735), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1735), - [anon_sym___declspec] = ACTIONS(1737), - [anon_sym___based] = ACTIONS(1737), - [anon_sym___cdecl] = ACTIONS(1737), - [anon_sym___clrcall] = ACTIONS(1737), - [anon_sym___stdcall] = ACTIONS(1737), - [anon_sym___fastcall] = ACTIONS(1737), - [anon_sym___thiscall] = ACTIONS(1737), - [anon_sym___vectorcall] = ACTIONS(1737), - [anon_sym_LBRACE] = ACTIONS(1735), - [anon_sym_LBRACK] = ACTIONS(1737), - [anon_sym_static] = ACTIONS(1737), - [anon_sym_register] = ACTIONS(1737), - [anon_sym_inline] = ACTIONS(1737), - [anon_sym_thread_local] = ACTIONS(1737), - [anon_sym_const] = ACTIONS(1737), - [anon_sym_volatile] = ACTIONS(1737), - [anon_sym_restrict] = ACTIONS(1737), - [anon_sym__Atomic] = ACTIONS(1737), - [anon_sym_mutable] = ACTIONS(1737), - [anon_sym_constexpr] = ACTIONS(1737), - [anon_sym_constinit] = ACTIONS(1737), - [anon_sym_consteval] = ACTIONS(1737), - [anon_sym_signed] = ACTIONS(1737), - [anon_sym_unsigned] = ACTIONS(1737), - [anon_sym_long] = ACTIONS(1737), - [anon_sym_short] = ACTIONS(1737), - [sym_primitive_type] = ACTIONS(1737), - [anon_sym_enum] = ACTIONS(1737), - [anon_sym_class] = ACTIONS(1737), - [anon_sym_struct] = ACTIONS(1737), - [anon_sym_union] = ACTIONS(1737), - [anon_sym_if] = ACTIONS(1737), - [anon_sym_switch] = ACTIONS(1737), - [anon_sym_case] = ACTIONS(1737), - [anon_sym_default] = ACTIONS(1737), - [anon_sym_while] = ACTIONS(1737), - [anon_sym_do] = ACTIONS(1737), - [anon_sym_for] = ACTIONS(1737), - [anon_sym_return] = ACTIONS(1737), - [anon_sym_break] = ACTIONS(1737), - [anon_sym_continue] = ACTIONS(1737), - [anon_sym_goto] = ACTIONS(1737), - [anon_sym_not] = ACTIONS(1737), - [anon_sym_compl] = ACTIONS(1737), - [anon_sym_DASH_DASH] = ACTIONS(1735), - [anon_sym_PLUS_PLUS] = ACTIONS(1735), - [anon_sym_sizeof] = ACTIONS(1737), - [sym_number_literal] = ACTIONS(1735), - [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_L_DQUOTE] = ACTIONS(1735), - [anon_sym_u_DQUOTE] = ACTIONS(1735), - [anon_sym_U_DQUOTE] = ACTIONS(1735), - [anon_sym_u8_DQUOTE] = ACTIONS(1735), - [anon_sym_DQUOTE] = ACTIONS(1735), - [sym_true] = ACTIONS(1737), - [sym_false] = ACTIONS(1737), - [sym_null] = ACTIONS(1737), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1737), - [anon_sym_decltype] = ACTIONS(1737), - [anon_sym_virtual] = ACTIONS(1737), - [anon_sym_explicit] = ACTIONS(1737), - [anon_sym_typename] = ACTIONS(1737), - [anon_sym_template] = ACTIONS(1737), - [anon_sym_operator] = ACTIONS(1737), - [anon_sym_try] = ACTIONS(1737), - [anon_sym_delete] = ACTIONS(1737), - [anon_sym_throw] = ACTIONS(1737), - [anon_sym_namespace] = ACTIONS(1737), - [anon_sym_using] = ACTIONS(1737), - [anon_sym_static_assert] = ACTIONS(1737), - [anon_sym_concept] = ACTIONS(1737), - [anon_sym_co_return] = ACTIONS(1737), - [anon_sym_co_yield] = ACTIONS(1737), - [anon_sym_R_DQUOTE] = ACTIONS(1735), - [anon_sym_LR_DQUOTE] = ACTIONS(1735), - [anon_sym_uR_DQUOTE] = ACTIONS(1735), - [anon_sym_UR_DQUOTE] = ACTIONS(1735), - [anon_sym_u8R_DQUOTE] = ACTIONS(1735), - [anon_sym_co_await] = ACTIONS(1737), - [anon_sym_new] = ACTIONS(1737), - [anon_sym_requires] = ACTIONS(1737), - [sym_this] = ACTIONS(1737), - [sym_nullptr] = ACTIONS(1737), - }, - [902] = { - [ts_builtin_sym_end] = ACTIONS(2494), - [sym_identifier] = ACTIONS(2492), - [aux_sym_preproc_include_token1] = ACTIONS(2492), - [aux_sym_preproc_def_token1] = ACTIONS(2492), - [aux_sym_preproc_if_token1] = ACTIONS(2492), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2492), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2492), - [sym_preproc_directive] = ACTIONS(2492), - [anon_sym_LPAREN2] = ACTIONS(2494), - [anon_sym_BANG] = ACTIONS(2494), - [anon_sym_TILDE] = ACTIONS(2494), - [anon_sym_DASH] = ACTIONS(2492), - [anon_sym_PLUS] = ACTIONS(2492), - [anon_sym_STAR] = ACTIONS(2494), - [anon_sym_AMP_AMP] = ACTIONS(2494), - [anon_sym_AMP] = ACTIONS(2492), - [anon_sym_SEMI] = ACTIONS(2494), - [anon_sym_typedef] = ACTIONS(2492), - [anon_sym_extern] = ACTIONS(2492), - [anon_sym___attribute__] = ACTIONS(2492), - [anon_sym_COLON_COLON] = ACTIONS(2494), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2494), - [anon_sym___declspec] = ACTIONS(2492), - [anon_sym___based] = ACTIONS(2492), - [anon_sym___cdecl] = ACTIONS(2492), - [anon_sym___clrcall] = ACTIONS(2492), - [anon_sym___stdcall] = ACTIONS(2492), - [anon_sym___fastcall] = ACTIONS(2492), - [anon_sym___thiscall] = ACTIONS(2492), - [anon_sym___vectorcall] = ACTIONS(2492), - [anon_sym_LBRACE] = ACTIONS(2494), - [anon_sym_LBRACK] = ACTIONS(2492), - [anon_sym_static] = ACTIONS(2492), - [anon_sym_register] = ACTIONS(2492), - [anon_sym_inline] = ACTIONS(2492), - [anon_sym_thread_local] = ACTIONS(2492), - [anon_sym_const] = ACTIONS(2492), - [anon_sym_volatile] = ACTIONS(2492), - [anon_sym_restrict] = ACTIONS(2492), - [anon_sym__Atomic] = ACTIONS(2492), - [anon_sym_mutable] = ACTIONS(2492), - [anon_sym_constexpr] = ACTIONS(2492), - [anon_sym_constinit] = ACTIONS(2492), - [anon_sym_consteval] = ACTIONS(2492), - [anon_sym_signed] = ACTIONS(2492), - [anon_sym_unsigned] = ACTIONS(2492), - [anon_sym_long] = ACTIONS(2492), - [anon_sym_short] = ACTIONS(2492), - [sym_primitive_type] = ACTIONS(2492), - [anon_sym_enum] = ACTIONS(2492), - [anon_sym_class] = ACTIONS(2492), - [anon_sym_struct] = ACTIONS(2492), - [anon_sym_union] = ACTIONS(2492), - [anon_sym_if] = ACTIONS(2492), - [anon_sym_else] = ACTIONS(2492), - [anon_sym_switch] = ACTIONS(2492), - [anon_sym_case] = ACTIONS(2492), - [anon_sym_default] = ACTIONS(2492), - [anon_sym_while] = ACTIONS(2492), - [anon_sym_do] = ACTIONS(2492), - [anon_sym_for] = ACTIONS(2492), - [anon_sym_return] = ACTIONS(2492), - [anon_sym_break] = ACTIONS(2492), - [anon_sym_continue] = ACTIONS(2492), - [anon_sym_goto] = ACTIONS(2492), - [anon_sym_not] = ACTIONS(2492), - [anon_sym_compl] = ACTIONS(2492), - [anon_sym_DASH_DASH] = ACTIONS(2494), - [anon_sym_PLUS_PLUS] = ACTIONS(2494), - [anon_sym_sizeof] = ACTIONS(2492), - [sym_number_literal] = ACTIONS(2494), - [anon_sym_L_SQUOTE] = ACTIONS(2494), - [anon_sym_u_SQUOTE] = ACTIONS(2494), - [anon_sym_U_SQUOTE] = ACTIONS(2494), - [anon_sym_u8_SQUOTE] = ACTIONS(2494), - [anon_sym_SQUOTE] = ACTIONS(2494), - [anon_sym_L_DQUOTE] = ACTIONS(2494), - [anon_sym_u_DQUOTE] = ACTIONS(2494), - [anon_sym_U_DQUOTE] = ACTIONS(2494), - [anon_sym_u8_DQUOTE] = ACTIONS(2494), - [anon_sym_DQUOTE] = ACTIONS(2494), - [sym_true] = ACTIONS(2492), - [sym_false] = ACTIONS(2492), - [sym_null] = ACTIONS(2492), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2492), - [anon_sym_decltype] = ACTIONS(2492), - [anon_sym_virtual] = ACTIONS(2492), - [anon_sym_explicit] = ACTIONS(2492), - [anon_sym_typename] = ACTIONS(2492), - [anon_sym_template] = ACTIONS(2492), - [anon_sym_operator] = ACTIONS(2492), - [anon_sym_try] = ACTIONS(2492), - [anon_sym_delete] = ACTIONS(2492), - [anon_sym_throw] = ACTIONS(2492), - [anon_sym_namespace] = ACTIONS(2492), - [anon_sym_using] = ACTIONS(2492), - [anon_sym_static_assert] = ACTIONS(2492), - [anon_sym_concept] = ACTIONS(2492), - [anon_sym_co_return] = ACTIONS(2492), - [anon_sym_co_yield] = ACTIONS(2492), - [anon_sym_R_DQUOTE] = ACTIONS(2494), - [anon_sym_LR_DQUOTE] = ACTIONS(2494), - [anon_sym_uR_DQUOTE] = ACTIONS(2494), - [anon_sym_UR_DQUOTE] = ACTIONS(2494), - [anon_sym_u8R_DQUOTE] = ACTIONS(2494), - [anon_sym_co_await] = ACTIONS(2492), - [anon_sym_new] = ACTIONS(2492), - [anon_sym_requires] = ACTIONS(2492), - [sym_this] = ACTIONS(2492), - [sym_nullptr] = ACTIONS(2492), - }, - [903] = { - [sym_identifier] = ACTIONS(2588), - [aux_sym_preproc_include_token1] = ACTIONS(2588), - [aux_sym_preproc_def_token1] = ACTIONS(2588), - [aux_sym_preproc_if_token1] = ACTIONS(2588), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2588), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2588), - [sym_preproc_directive] = ACTIONS(2588), - [anon_sym_LPAREN2] = ACTIONS(2590), - [anon_sym_BANG] = ACTIONS(2590), - [anon_sym_TILDE] = ACTIONS(2590), - [anon_sym_DASH] = ACTIONS(2588), - [anon_sym_PLUS] = ACTIONS(2588), - [anon_sym_STAR] = ACTIONS(2590), - [anon_sym_AMP_AMP] = ACTIONS(2590), - [anon_sym_AMP] = ACTIONS(2588), - [anon_sym_SEMI] = ACTIONS(2590), - [anon_sym_typedef] = ACTIONS(2588), - [anon_sym_extern] = ACTIONS(2588), - [anon_sym___attribute__] = ACTIONS(2588), - [anon_sym_COLON_COLON] = ACTIONS(2590), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2590), - [anon_sym___declspec] = ACTIONS(2588), - [anon_sym___based] = ACTIONS(2588), - [anon_sym___cdecl] = ACTIONS(2588), - [anon_sym___clrcall] = ACTIONS(2588), - [anon_sym___stdcall] = ACTIONS(2588), - [anon_sym___fastcall] = ACTIONS(2588), - [anon_sym___thiscall] = ACTIONS(2588), - [anon_sym___vectorcall] = ACTIONS(2588), - [anon_sym_LBRACE] = ACTIONS(2590), - [anon_sym_RBRACE] = ACTIONS(2590), - [anon_sym_LBRACK] = ACTIONS(2588), - [anon_sym_static] = ACTIONS(2588), - [anon_sym_register] = ACTIONS(2588), - [anon_sym_inline] = ACTIONS(2588), - [anon_sym_thread_local] = ACTIONS(2588), - [anon_sym_const] = ACTIONS(2588), - [anon_sym_volatile] = ACTIONS(2588), - [anon_sym_restrict] = ACTIONS(2588), - [anon_sym__Atomic] = ACTIONS(2588), - [anon_sym_mutable] = ACTIONS(2588), - [anon_sym_constexpr] = ACTIONS(2588), - [anon_sym_constinit] = ACTIONS(2588), - [anon_sym_consteval] = ACTIONS(2588), - [anon_sym_signed] = ACTIONS(2588), - [anon_sym_unsigned] = ACTIONS(2588), - [anon_sym_long] = ACTIONS(2588), - [anon_sym_short] = ACTIONS(2588), - [sym_primitive_type] = ACTIONS(2588), - [anon_sym_enum] = ACTIONS(2588), - [anon_sym_class] = ACTIONS(2588), - [anon_sym_struct] = ACTIONS(2588), - [anon_sym_union] = ACTIONS(2588), - [anon_sym_if] = ACTIONS(2588), - [anon_sym_else] = ACTIONS(2588), - [anon_sym_switch] = ACTIONS(2588), - [anon_sym_case] = ACTIONS(2588), - [anon_sym_default] = ACTIONS(2588), - [anon_sym_while] = ACTIONS(2588), - [anon_sym_do] = ACTIONS(2588), - [anon_sym_for] = ACTIONS(2588), - [anon_sym_return] = ACTIONS(2588), - [anon_sym_break] = ACTIONS(2588), - [anon_sym_continue] = ACTIONS(2588), - [anon_sym_goto] = ACTIONS(2588), - [anon_sym_not] = ACTIONS(2588), - [anon_sym_compl] = ACTIONS(2588), - [anon_sym_DASH_DASH] = ACTIONS(2590), - [anon_sym_PLUS_PLUS] = ACTIONS(2590), - [anon_sym_sizeof] = ACTIONS(2588), - [sym_number_literal] = ACTIONS(2590), - [anon_sym_L_SQUOTE] = ACTIONS(2590), - [anon_sym_u_SQUOTE] = ACTIONS(2590), - [anon_sym_U_SQUOTE] = ACTIONS(2590), - [anon_sym_u8_SQUOTE] = ACTIONS(2590), - [anon_sym_SQUOTE] = ACTIONS(2590), - [anon_sym_L_DQUOTE] = ACTIONS(2590), - [anon_sym_u_DQUOTE] = ACTIONS(2590), - [anon_sym_U_DQUOTE] = ACTIONS(2590), - [anon_sym_u8_DQUOTE] = ACTIONS(2590), - [anon_sym_DQUOTE] = ACTIONS(2590), - [sym_true] = ACTIONS(2588), - [sym_false] = ACTIONS(2588), - [sym_null] = ACTIONS(2588), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2588), - [anon_sym_decltype] = ACTIONS(2588), - [anon_sym_virtual] = ACTIONS(2588), - [anon_sym_explicit] = ACTIONS(2588), - [anon_sym_typename] = ACTIONS(2588), - [anon_sym_template] = ACTIONS(2588), - [anon_sym_operator] = ACTIONS(2588), - [anon_sym_try] = ACTIONS(2588), - [anon_sym_delete] = ACTIONS(2588), - [anon_sym_throw] = ACTIONS(2588), - [anon_sym_namespace] = ACTIONS(2588), - [anon_sym_using] = ACTIONS(2588), - [anon_sym_static_assert] = ACTIONS(2588), - [anon_sym_concept] = ACTIONS(2588), - [anon_sym_co_return] = ACTIONS(2588), - [anon_sym_co_yield] = ACTIONS(2588), - [anon_sym_R_DQUOTE] = ACTIONS(2590), - [anon_sym_LR_DQUOTE] = ACTIONS(2590), - [anon_sym_uR_DQUOTE] = ACTIONS(2590), - [anon_sym_UR_DQUOTE] = ACTIONS(2590), - [anon_sym_u8R_DQUOTE] = ACTIONS(2590), - [anon_sym_co_await] = ACTIONS(2588), - [anon_sym_new] = ACTIONS(2588), - [anon_sym_requires] = ACTIONS(2588), - [sym_this] = ACTIONS(2588), - [sym_nullptr] = ACTIONS(2588), - }, - [904] = { - [sym_identifier] = ACTIONS(2518), - [aux_sym_preproc_include_token1] = ACTIONS(2518), - [aux_sym_preproc_def_token1] = ACTIONS(2518), - [aux_sym_preproc_if_token1] = ACTIONS(2518), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2518), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2518), - [sym_preproc_directive] = ACTIONS(2518), - [anon_sym_LPAREN2] = ACTIONS(2520), - [anon_sym_BANG] = ACTIONS(2520), - [anon_sym_TILDE] = ACTIONS(2520), - [anon_sym_DASH] = ACTIONS(2518), - [anon_sym_PLUS] = ACTIONS(2518), - [anon_sym_STAR] = ACTIONS(2520), - [anon_sym_AMP_AMP] = ACTIONS(2520), - [anon_sym_AMP] = ACTIONS(2518), - [anon_sym_SEMI] = ACTIONS(2520), - [anon_sym_typedef] = ACTIONS(2518), - [anon_sym_extern] = ACTIONS(2518), - [anon_sym___attribute__] = ACTIONS(2518), - [anon_sym_COLON_COLON] = ACTIONS(2520), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2520), - [anon_sym___declspec] = ACTIONS(2518), - [anon_sym___based] = ACTIONS(2518), - [anon_sym___cdecl] = ACTIONS(2518), - [anon_sym___clrcall] = ACTIONS(2518), - [anon_sym___stdcall] = ACTIONS(2518), - [anon_sym___fastcall] = ACTIONS(2518), - [anon_sym___thiscall] = ACTIONS(2518), - [anon_sym___vectorcall] = ACTIONS(2518), - [anon_sym_LBRACE] = ACTIONS(2520), - [anon_sym_RBRACE] = ACTIONS(2520), - [anon_sym_LBRACK] = ACTIONS(2518), - [anon_sym_static] = ACTIONS(2518), - [anon_sym_register] = ACTIONS(2518), - [anon_sym_inline] = ACTIONS(2518), - [anon_sym_thread_local] = ACTIONS(2518), - [anon_sym_const] = ACTIONS(2518), - [anon_sym_volatile] = ACTIONS(2518), - [anon_sym_restrict] = ACTIONS(2518), - [anon_sym__Atomic] = ACTIONS(2518), - [anon_sym_mutable] = ACTIONS(2518), - [anon_sym_constexpr] = ACTIONS(2518), - [anon_sym_constinit] = ACTIONS(2518), - [anon_sym_consteval] = ACTIONS(2518), - [anon_sym_signed] = ACTIONS(2518), - [anon_sym_unsigned] = ACTIONS(2518), - [anon_sym_long] = ACTIONS(2518), - [anon_sym_short] = ACTIONS(2518), - [sym_primitive_type] = ACTIONS(2518), - [anon_sym_enum] = ACTIONS(2518), - [anon_sym_class] = ACTIONS(2518), - [anon_sym_struct] = ACTIONS(2518), - [anon_sym_union] = ACTIONS(2518), - [anon_sym_if] = ACTIONS(2518), - [anon_sym_else] = ACTIONS(2518), - [anon_sym_switch] = ACTIONS(2518), - [anon_sym_case] = ACTIONS(2518), - [anon_sym_default] = ACTIONS(2518), - [anon_sym_while] = ACTIONS(2518), - [anon_sym_do] = ACTIONS(2518), - [anon_sym_for] = ACTIONS(2518), - [anon_sym_return] = ACTIONS(2518), - [anon_sym_break] = ACTIONS(2518), - [anon_sym_continue] = ACTIONS(2518), - [anon_sym_goto] = ACTIONS(2518), - [anon_sym_not] = ACTIONS(2518), - [anon_sym_compl] = ACTIONS(2518), - [anon_sym_DASH_DASH] = ACTIONS(2520), - [anon_sym_PLUS_PLUS] = ACTIONS(2520), - [anon_sym_sizeof] = ACTIONS(2518), - [sym_number_literal] = ACTIONS(2520), - [anon_sym_L_SQUOTE] = ACTIONS(2520), - [anon_sym_u_SQUOTE] = ACTIONS(2520), - [anon_sym_U_SQUOTE] = ACTIONS(2520), - [anon_sym_u8_SQUOTE] = ACTIONS(2520), - [anon_sym_SQUOTE] = ACTIONS(2520), - [anon_sym_L_DQUOTE] = ACTIONS(2520), - [anon_sym_u_DQUOTE] = ACTIONS(2520), - [anon_sym_U_DQUOTE] = ACTIONS(2520), - [anon_sym_u8_DQUOTE] = ACTIONS(2520), - [anon_sym_DQUOTE] = ACTIONS(2520), - [sym_true] = ACTIONS(2518), - [sym_false] = ACTIONS(2518), - [sym_null] = ACTIONS(2518), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2518), - [anon_sym_decltype] = ACTIONS(2518), - [anon_sym_virtual] = ACTIONS(2518), - [anon_sym_explicit] = ACTIONS(2518), - [anon_sym_typename] = ACTIONS(2518), - [anon_sym_template] = ACTIONS(2518), - [anon_sym_operator] = ACTIONS(2518), - [anon_sym_try] = ACTIONS(2518), - [anon_sym_delete] = ACTIONS(2518), - [anon_sym_throw] = ACTIONS(2518), - [anon_sym_namespace] = ACTIONS(2518), - [anon_sym_using] = ACTIONS(2518), - [anon_sym_static_assert] = ACTIONS(2518), - [anon_sym_concept] = ACTIONS(2518), - [anon_sym_co_return] = ACTIONS(2518), - [anon_sym_co_yield] = ACTIONS(2518), - [anon_sym_R_DQUOTE] = ACTIONS(2520), - [anon_sym_LR_DQUOTE] = ACTIONS(2520), - [anon_sym_uR_DQUOTE] = ACTIONS(2520), - [anon_sym_UR_DQUOTE] = ACTIONS(2520), - [anon_sym_u8R_DQUOTE] = ACTIONS(2520), - [anon_sym_co_await] = ACTIONS(2518), - [anon_sym_new] = ACTIONS(2518), - [anon_sym_requires] = ACTIONS(2518), - [sym_this] = ACTIONS(2518), - [sym_nullptr] = ACTIONS(2518), - }, - [905] = { - [sym_identifier] = ACTIONS(2584), - [aux_sym_preproc_include_token1] = ACTIONS(2584), - [aux_sym_preproc_def_token1] = ACTIONS(2584), - [aux_sym_preproc_if_token1] = ACTIONS(2584), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2584), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2584), - [sym_preproc_directive] = ACTIONS(2584), - [anon_sym_LPAREN2] = ACTIONS(2586), - [anon_sym_BANG] = ACTIONS(2586), - [anon_sym_TILDE] = ACTIONS(2586), - [anon_sym_DASH] = ACTIONS(2584), - [anon_sym_PLUS] = ACTIONS(2584), - [anon_sym_STAR] = ACTIONS(2586), - [anon_sym_AMP_AMP] = ACTIONS(2586), - [anon_sym_AMP] = ACTIONS(2584), - [anon_sym_SEMI] = ACTIONS(2586), - [anon_sym_typedef] = ACTIONS(2584), - [anon_sym_extern] = ACTIONS(2584), - [anon_sym___attribute__] = ACTIONS(2584), - [anon_sym_COLON_COLON] = ACTIONS(2586), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2586), - [anon_sym___declspec] = ACTIONS(2584), - [anon_sym___based] = ACTIONS(2584), - [anon_sym___cdecl] = ACTIONS(2584), - [anon_sym___clrcall] = ACTIONS(2584), - [anon_sym___stdcall] = ACTIONS(2584), - [anon_sym___fastcall] = ACTIONS(2584), - [anon_sym___thiscall] = ACTIONS(2584), - [anon_sym___vectorcall] = ACTIONS(2584), - [anon_sym_LBRACE] = ACTIONS(2586), - [anon_sym_RBRACE] = ACTIONS(2586), - [anon_sym_LBRACK] = ACTIONS(2584), - [anon_sym_static] = ACTIONS(2584), - [anon_sym_register] = ACTIONS(2584), - [anon_sym_inline] = ACTIONS(2584), - [anon_sym_thread_local] = ACTIONS(2584), - [anon_sym_const] = ACTIONS(2584), - [anon_sym_volatile] = ACTIONS(2584), - [anon_sym_restrict] = ACTIONS(2584), - [anon_sym__Atomic] = ACTIONS(2584), - [anon_sym_mutable] = ACTIONS(2584), - [anon_sym_constexpr] = ACTIONS(2584), - [anon_sym_constinit] = ACTIONS(2584), - [anon_sym_consteval] = ACTIONS(2584), - [anon_sym_signed] = ACTIONS(2584), - [anon_sym_unsigned] = ACTIONS(2584), - [anon_sym_long] = ACTIONS(2584), - [anon_sym_short] = ACTIONS(2584), - [sym_primitive_type] = ACTIONS(2584), - [anon_sym_enum] = ACTIONS(2584), - [anon_sym_class] = ACTIONS(2584), - [anon_sym_struct] = ACTIONS(2584), - [anon_sym_union] = ACTIONS(2584), - [anon_sym_if] = ACTIONS(2584), - [anon_sym_else] = ACTIONS(2584), - [anon_sym_switch] = ACTIONS(2584), - [anon_sym_case] = ACTIONS(2584), - [anon_sym_default] = ACTIONS(2584), - [anon_sym_while] = ACTIONS(2584), - [anon_sym_do] = ACTIONS(2584), - [anon_sym_for] = ACTIONS(2584), - [anon_sym_return] = ACTIONS(2584), - [anon_sym_break] = ACTIONS(2584), - [anon_sym_continue] = ACTIONS(2584), - [anon_sym_goto] = ACTIONS(2584), - [anon_sym_not] = ACTIONS(2584), - [anon_sym_compl] = ACTIONS(2584), - [anon_sym_DASH_DASH] = ACTIONS(2586), - [anon_sym_PLUS_PLUS] = ACTIONS(2586), - [anon_sym_sizeof] = ACTIONS(2584), - [sym_number_literal] = ACTIONS(2586), - [anon_sym_L_SQUOTE] = ACTIONS(2586), - [anon_sym_u_SQUOTE] = ACTIONS(2586), - [anon_sym_U_SQUOTE] = ACTIONS(2586), - [anon_sym_u8_SQUOTE] = ACTIONS(2586), - [anon_sym_SQUOTE] = ACTIONS(2586), - [anon_sym_L_DQUOTE] = ACTIONS(2586), - [anon_sym_u_DQUOTE] = ACTIONS(2586), - [anon_sym_U_DQUOTE] = ACTIONS(2586), - [anon_sym_u8_DQUOTE] = ACTIONS(2586), - [anon_sym_DQUOTE] = ACTIONS(2586), - [sym_true] = ACTIONS(2584), - [sym_false] = ACTIONS(2584), - [sym_null] = ACTIONS(2584), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2584), - [anon_sym_decltype] = ACTIONS(2584), - [anon_sym_virtual] = ACTIONS(2584), - [anon_sym_explicit] = ACTIONS(2584), - [anon_sym_typename] = ACTIONS(2584), - [anon_sym_template] = ACTIONS(2584), - [anon_sym_operator] = ACTIONS(2584), - [anon_sym_try] = ACTIONS(2584), - [anon_sym_delete] = ACTIONS(2584), - [anon_sym_throw] = ACTIONS(2584), - [anon_sym_namespace] = ACTIONS(2584), - [anon_sym_using] = ACTIONS(2584), - [anon_sym_static_assert] = ACTIONS(2584), - [anon_sym_concept] = ACTIONS(2584), - [anon_sym_co_return] = ACTIONS(2584), - [anon_sym_co_yield] = ACTIONS(2584), - [anon_sym_R_DQUOTE] = ACTIONS(2586), - [anon_sym_LR_DQUOTE] = ACTIONS(2586), - [anon_sym_uR_DQUOTE] = ACTIONS(2586), - [anon_sym_UR_DQUOTE] = ACTIONS(2586), - [anon_sym_u8R_DQUOTE] = ACTIONS(2586), - [anon_sym_co_await] = ACTIONS(2584), - [anon_sym_new] = ACTIONS(2584), - [anon_sym_requires] = ACTIONS(2584), - [sym_this] = ACTIONS(2584), - [sym_nullptr] = ACTIONS(2584), - }, - [906] = { - [sym_identifier] = ACTIONS(2526), - [aux_sym_preproc_include_token1] = ACTIONS(2526), - [aux_sym_preproc_def_token1] = ACTIONS(2526), - [aux_sym_preproc_if_token1] = ACTIONS(2526), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2526), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2526), - [sym_preproc_directive] = ACTIONS(2526), - [anon_sym_LPAREN2] = ACTIONS(2528), - [anon_sym_BANG] = ACTIONS(2528), - [anon_sym_TILDE] = ACTIONS(2528), - [anon_sym_DASH] = ACTIONS(2526), - [anon_sym_PLUS] = ACTIONS(2526), - [anon_sym_STAR] = ACTIONS(2528), - [anon_sym_AMP_AMP] = ACTIONS(2528), - [anon_sym_AMP] = ACTIONS(2526), - [anon_sym_SEMI] = ACTIONS(2528), - [anon_sym_typedef] = ACTIONS(2526), - [anon_sym_extern] = ACTIONS(2526), - [anon_sym___attribute__] = ACTIONS(2526), - [anon_sym_COLON_COLON] = ACTIONS(2528), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2528), - [anon_sym___declspec] = ACTIONS(2526), - [anon_sym___based] = ACTIONS(2526), - [anon_sym___cdecl] = ACTIONS(2526), - [anon_sym___clrcall] = ACTIONS(2526), - [anon_sym___stdcall] = ACTIONS(2526), - [anon_sym___fastcall] = ACTIONS(2526), - [anon_sym___thiscall] = ACTIONS(2526), - [anon_sym___vectorcall] = ACTIONS(2526), - [anon_sym_LBRACE] = ACTIONS(2528), - [anon_sym_RBRACE] = ACTIONS(2528), - [anon_sym_LBRACK] = ACTIONS(2526), - [anon_sym_static] = ACTIONS(2526), - [anon_sym_register] = ACTIONS(2526), - [anon_sym_inline] = ACTIONS(2526), - [anon_sym_thread_local] = ACTIONS(2526), - [anon_sym_const] = ACTIONS(2526), - [anon_sym_volatile] = ACTIONS(2526), - [anon_sym_restrict] = ACTIONS(2526), - [anon_sym__Atomic] = ACTIONS(2526), - [anon_sym_mutable] = ACTIONS(2526), - [anon_sym_constexpr] = ACTIONS(2526), - [anon_sym_constinit] = ACTIONS(2526), - [anon_sym_consteval] = ACTIONS(2526), - [anon_sym_signed] = ACTIONS(2526), - [anon_sym_unsigned] = ACTIONS(2526), - [anon_sym_long] = ACTIONS(2526), - [anon_sym_short] = ACTIONS(2526), - [sym_primitive_type] = ACTIONS(2526), - [anon_sym_enum] = ACTIONS(2526), - [anon_sym_class] = ACTIONS(2526), - [anon_sym_struct] = ACTIONS(2526), - [anon_sym_union] = ACTIONS(2526), - [anon_sym_if] = ACTIONS(2526), - [anon_sym_else] = ACTIONS(2526), - [anon_sym_switch] = ACTIONS(2526), - [anon_sym_case] = ACTIONS(2526), - [anon_sym_default] = ACTIONS(2526), - [anon_sym_while] = ACTIONS(2526), - [anon_sym_do] = ACTIONS(2526), - [anon_sym_for] = ACTIONS(2526), - [anon_sym_return] = ACTIONS(2526), - [anon_sym_break] = ACTIONS(2526), - [anon_sym_continue] = ACTIONS(2526), - [anon_sym_goto] = ACTIONS(2526), - [anon_sym_not] = ACTIONS(2526), - [anon_sym_compl] = ACTIONS(2526), - [anon_sym_DASH_DASH] = ACTIONS(2528), - [anon_sym_PLUS_PLUS] = ACTIONS(2528), - [anon_sym_sizeof] = ACTIONS(2526), - [sym_number_literal] = ACTIONS(2528), - [anon_sym_L_SQUOTE] = ACTIONS(2528), - [anon_sym_u_SQUOTE] = ACTIONS(2528), - [anon_sym_U_SQUOTE] = ACTIONS(2528), - [anon_sym_u8_SQUOTE] = ACTIONS(2528), - [anon_sym_SQUOTE] = ACTIONS(2528), - [anon_sym_L_DQUOTE] = ACTIONS(2528), - [anon_sym_u_DQUOTE] = ACTIONS(2528), - [anon_sym_U_DQUOTE] = ACTIONS(2528), - [anon_sym_u8_DQUOTE] = ACTIONS(2528), - [anon_sym_DQUOTE] = ACTIONS(2528), - [sym_true] = ACTIONS(2526), - [sym_false] = ACTIONS(2526), - [sym_null] = ACTIONS(2526), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2526), - [anon_sym_decltype] = ACTIONS(2526), - [anon_sym_virtual] = ACTIONS(2526), - [anon_sym_explicit] = ACTIONS(2526), - [anon_sym_typename] = ACTIONS(2526), - [anon_sym_template] = ACTIONS(2526), - [anon_sym_operator] = ACTIONS(2526), - [anon_sym_try] = ACTIONS(2526), - [anon_sym_delete] = ACTIONS(2526), - [anon_sym_throw] = ACTIONS(2526), - [anon_sym_namespace] = ACTIONS(2526), - [anon_sym_using] = ACTIONS(2526), - [anon_sym_static_assert] = ACTIONS(2526), - [anon_sym_concept] = ACTIONS(2526), - [anon_sym_co_return] = ACTIONS(2526), - [anon_sym_co_yield] = ACTIONS(2526), - [anon_sym_R_DQUOTE] = ACTIONS(2528), - [anon_sym_LR_DQUOTE] = ACTIONS(2528), - [anon_sym_uR_DQUOTE] = ACTIONS(2528), - [anon_sym_UR_DQUOTE] = ACTIONS(2528), - [anon_sym_u8R_DQUOTE] = ACTIONS(2528), - [anon_sym_co_await] = ACTIONS(2526), - [anon_sym_new] = ACTIONS(2526), - [anon_sym_requires] = ACTIONS(2526), - [sym_this] = ACTIONS(2526), - [sym_nullptr] = ACTIONS(2526), - }, - [907] = { - [ts_builtin_sym_end] = ACTIONS(2538), - [sym_identifier] = ACTIONS(2536), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2538), - [anon_sym_AMP] = ACTIONS(2536), - [anon_sym_SEMI] = ACTIONS(2538), - [anon_sym_typedef] = ACTIONS(2536), - [anon_sym_extern] = ACTIONS(2536), - [anon_sym___attribute__] = ACTIONS(2536), - [anon_sym_COLON_COLON] = ACTIONS(2538), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2538), - [anon_sym___declspec] = ACTIONS(2536), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2536), - [anon_sym_static] = ACTIONS(2536), - [anon_sym_register] = ACTIONS(2536), - [anon_sym_inline] = ACTIONS(2536), - [anon_sym_thread_local] = ACTIONS(2536), - [anon_sym_const] = ACTIONS(2536), - [anon_sym_volatile] = ACTIONS(2536), - [anon_sym_restrict] = ACTIONS(2536), - [anon_sym__Atomic] = ACTIONS(2536), - [anon_sym_mutable] = ACTIONS(2536), - [anon_sym_constexpr] = ACTIONS(2536), - [anon_sym_constinit] = ACTIONS(2536), - [anon_sym_consteval] = ACTIONS(2536), - [anon_sym_signed] = ACTIONS(2536), - [anon_sym_unsigned] = ACTIONS(2536), - [anon_sym_long] = ACTIONS(2536), - [anon_sym_short] = ACTIONS(2536), - [sym_primitive_type] = ACTIONS(2536), - [anon_sym_enum] = ACTIONS(2536), - [anon_sym_class] = 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_return] = ACTIONS(2536), - [anon_sym_break] = ACTIONS(2536), - [anon_sym_continue] = ACTIONS(2536), - [anon_sym_goto] = ACTIONS(2536), - [anon_sym_not] = ACTIONS(2536), - [anon_sym_compl] = ACTIONS(2536), - [anon_sym_DASH_DASH] = ACTIONS(2538), - [anon_sym_PLUS_PLUS] = ACTIONS(2538), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2538), - [anon_sym_u_DQUOTE] = ACTIONS(2538), - [anon_sym_U_DQUOTE] = ACTIONS(2538), - [anon_sym_u8_DQUOTE] = ACTIONS(2538), - [anon_sym_DQUOTE] = ACTIONS(2538), - [sym_true] = ACTIONS(2536), - [sym_false] = ACTIONS(2536), - [sym_null] = ACTIONS(2536), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2536), - [anon_sym_decltype] = ACTIONS(2536), - [anon_sym_virtual] = ACTIONS(2536), - [anon_sym_explicit] = ACTIONS(2536), - [anon_sym_typename] = ACTIONS(2536), - [anon_sym_template] = ACTIONS(2536), - [anon_sym_operator] = ACTIONS(2536), - [anon_sym_try] = ACTIONS(2536), - [anon_sym_delete] = ACTIONS(2536), - [anon_sym_throw] = ACTIONS(2536), - [anon_sym_namespace] = ACTIONS(2536), - [anon_sym_using] = ACTIONS(2536), - [anon_sym_static_assert] = ACTIONS(2536), - [anon_sym_concept] = ACTIONS(2536), - [anon_sym_co_return] = ACTIONS(2536), - [anon_sym_co_yield] = ACTIONS(2536), - [anon_sym_R_DQUOTE] = ACTIONS(2538), - [anon_sym_LR_DQUOTE] = ACTIONS(2538), - [anon_sym_uR_DQUOTE] = ACTIONS(2538), - [anon_sym_UR_DQUOTE] = ACTIONS(2538), - [anon_sym_u8R_DQUOTE] = ACTIONS(2538), - [anon_sym_co_await] = ACTIONS(2536), - [anon_sym_new] = ACTIONS(2536), - [anon_sym_requires] = ACTIONS(2536), - [sym_this] = ACTIONS(2536), - [sym_nullptr] = ACTIONS(2536), - }, - [908] = { - [sym_identifier] = ACTIONS(2548), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2550), - [anon_sym_AMP] = ACTIONS(2548), - [anon_sym_SEMI] = ACTIONS(2550), - [anon_sym_typedef] = ACTIONS(2548), - [anon_sym_extern] = ACTIONS(2548), - [anon_sym___attribute__] = ACTIONS(2548), - [anon_sym_COLON_COLON] = ACTIONS(2550), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2550), - [anon_sym___declspec] = ACTIONS(2548), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2548), - [anon_sym_static] = ACTIONS(2548), - [anon_sym_register] = ACTIONS(2548), - [anon_sym_inline] = ACTIONS(2548), - [anon_sym_thread_local] = ACTIONS(2548), - [anon_sym_const] = ACTIONS(2548), - [anon_sym_volatile] = ACTIONS(2548), - [anon_sym_restrict] = ACTIONS(2548), - [anon_sym__Atomic] = ACTIONS(2548), - [anon_sym_mutable] = ACTIONS(2548), - [anon_sym_constexpr] = ACTIONS(2548), - [anon_sym_constinit] = ACTIONS(2548), - [anon_sym_consteval] = ACTIONS(2548), - [anon_sym_signed] = ACTIONS(2548), - [anon_sym_unsigned] = ACTIONS(2548), - [anon_sym_long] = ACTIONS(2548), - [anon_sym_short] = ACTIONS(2548), - [sym_primitive_type] = ACTIONS(2548), - [anon_sym_enum] = ACTIONS(2548), - [anon_sym_class] = 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_return] = ACTIONS(2548), - [anon_sym_break] = ACTIONS(2548), - [anon_sym_continue] = ACTIONS(2548), - [anon_sym_goto] = ACTIONS(2548), - [anon_sym_not] = ACTIONS(2548), - [anon_sym_compl] = ACTIONS(2548), - [anon_sym_DASH_DASH] = ACTIONS(2550), - [anon_sym_PLUS_PLUS] = ACTIONS(2550), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2550), - [anon_sym_u_DQUOTE] = ACTIONS(2550), - [anon_sym_U_DQUOTE] = ACTIONS(2550), - [anon_sym_u8_DQUOTE] = ACTIONS(2550), - [anon_sym_DQUOTE] = ACTIONS(2550), - [sym_true] = ACTIONS(2548), - [sym_false] = ACTIONS(2548), - [sym_null] = ACTIONS(2548), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2548), - [anon_sym_decltype] = ACTIONS(2548), - [anon_sym_virtual] = ACTIONS(2548), - [anon_sym_explicit] = ACTIONS(2548), - [anon_sym_typename] = ACTIONS(2548), - [anon_sym_template] = ACTIONS(2548), - [anon_sym_operator] = ACTIONS(2548), - [anon_sym_try] = ACTIONS(2548), - [anon_sym_delete] = ACTIONS(2548), - [anon_sym_throw] = ACTIONS(2548), - [anon_sym_namespace] = ACTIONS(2548), - [anon_sym_using] = ACTIONS(2548), - [anon_sym_static_assert] = ACTIONS(2548), - [anon_sym_concept] = ACTIONS(2548), - [anon_sym_co_return] = ACTIONS(2548), - [anon_sym_co_yield] = ACTIONS(2548), - [anon_sym_R_DQUOTE] = ACTIONS(2550), - [anon_sym_LR_DQUOTE] = ACTIONS(2550), - [anon_sym_uR_DQUOTE] = ACTIONS(2550), - [anon_sym_UR_DQUOTE] = ACTIONS(2550), - [anon_sym_u8R_DQUOTE] = ACTIONS(2550), - [anon_sym_co_await] = ACTIONS(2548), - [anon_sym_new] = ACTIONS(2548), - [anon_sym_requires] = ACTIONS(2548), - [sym_this] = ACTIONS(2548), - [sym_nullptr] = ACTIONS(2548), - }, - [909] = { - [sym_identifier] = ACTIONS(2580), - [aux_sym_preproc_include_token1] = ACTIONS(2580), - [aux_sym_preproc_def_token1] = ACTIONS(2580), - [aux_sym_preproc_if_token1] = ACTIONS(2580), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2580), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2580), - [sym_preproc_directive] = ACTIONS(2580), - [anon_sym_LPAREN2] = ACTIONS(2582), - [anon_sym_BANG] = ACTIONS(2582), - [anon_sym_TILDE] = ACTIONS(2582), - [anon_sym_DASH] = ACTIONS(2580), - [anon_sym_PLUS] = ACTIONS(2580), - [anon_sym_STAR] = ACTIONS(2582), - [anon_sym_AMP_AMP] = ACTIONS(2582), - [anon_sym_AMP] = ACTIONS(2580), - [anon_sym_SEMI] = ACTIONS(2582), - [anon_sym_typedef] = ACTIONS(2580), - [anon_sym_extern] = ACTIONS(2580), - [anon_sym___attribute__] = ACTIONS(2580), - [anon_sym_COLON_COLON] = ACTIONS(2582), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2582), - [anon_sym___declspec] = ACTIONS(2580), - [anon_sym___based] = ACTIONS(2580), - [anon_sym___cdecl] = ACTIONS(2580), - [anon_sym___clrcall] = ACTIONS(2580), - [anon_sym___stdcall] = ACTIONS(2580), - [anon_sym___fastcall] = ACTIONS(2580), - [anon_sym___thiscall] = ACTIONS(2580), - [anon_sym___vectorcall] = ACTIONS(2580), - [anon_sym_LBRACE] = ACTIONS(2582), - [anon_sym_RBRACE] = ACTIONS(2582), - [anon_sym_LBRACK] = ACTIONS(2580), - [anon_sym_static] = ACTIONS(2580), - [anon_sym_register] = ACTIONS(2580), - [anon_sym_inline] = ACTIONS(2580), - [anon_sym_thread_local] = ACTIONS(2580), - [anon_sym_const] = ACTIONS(2580), - [anon_sym_volatile] = ACTIONS(2580), - [anon_sym_restrict] = ACTIONS(2580), - [anon_sym__Atomic] = ACTIONS(2580), - [anon_sym_mutable] = ACTIONS(2580), - [anon_sym_constexpr] = ACTIONS(2580), - [anon_sym_constinit] = ACTIONS(2580), - [anon_sym_consteval] = ACTIONS(2580), - [anon_sym_signed] = ACTIONS(2580), - [anon_sym_unsigned] = ACTIONS(2580), - [anon_sym_long] = ACTIONS(2580), - [anon_sym_short] = ACTIONS(2580), - [sym_primitive_type] = ACTIONS(2580), - [anon_sym_enum] = ACTIONS(2580), - [anon_sym_class] = ACTIONS(2580), - [anon_sym_struct] = ACTIONS(2580), - [anon_sym_union] = ACTIONS(2580), - [anon_sym_if] = ACTIONS(2580), - [anon_sym_else] = ACTIONS(2580), - [anon_sym_switch] = ACTIONS(2580), - [anon_sym_case] = ACTIONS(2580), - [anon_sym_default] = ACTIONS(2580), - [anon_sym_while] = ACTIONS(2580), - [anon_sym_do] = ACTIONS(2580), - [anon_sym_for] = ACTIONS(2580), - [anon_sym_return] = ACTIONS(2580), - [anon_sym_break] = ACTIONS(2580), - [anon_sym_continue] = ACTIONS(2580), - [anon_sym_goto] = ACTIONS(2580), - [anon_sym_not] = ACTIONS(2580), - [anon_sym_compl] = ACTIONS(2580), - [anon_sym_DASH_DASH] = ACTIONS(2582), - [anon_sym_PLUS_PLUS] = ACTIONS(2582), - [anon_sym_sizeof] = ACTIONS(2580), - [sym_number_literal] = ACTIONS(2582), - [anon_sym_L_SQUOTE] = ACTIONS(2582), - [anon_sym_u_SQUOTE] = ACTIONS(2582), - [anon_sym_U_SQUOTE] = ACTIONS(2582), - [anon_sym_u8_SQUOTE] = ACTIONS(2582), - [anon_sym_SQUOTE] = ACTIONS(2582), - [anon_sym_L_DQUOTE] = ACTIONS(2582), - [anon_sym_u_DQUOTE] = ACTIONS(2582), - [anon_sym_U_DQUOTE] = ACTIONS(2582), - [anon_sym_u8_DQUOTE] = ACTIONS(2582), - [anon_sym_DQUOTE] = ACTIONS(2582), - [sym_true] = ACTIONS(2580), - [sym_false] = ACTIONS(2580), - [sym_null] = ACTIONS(2580), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2580), - [anon_sym_decltype] = ACTIONS(2580), - [anon_sym_virtual] = ACTIONS(2580), - [anon_sym_explicit] = ACTIONS(2580), - [anon_sym_typename] = ACTIONS(2580), - [anon_sym_template] = ACTIONS(2580), - [anon_sym_operator] = ACTIONS(2580), - [anon_sym_try] = ACTIONS(2580), - [anon_sym_delete] = ACTIONS(2580), - [anon_sym_throw] = ACTIONS(2580), - [anon_sym_namespace] = ACTIONS(2580), - [anon_sym_using] = ACTIONS(2580), - [anon_sym_static_assert] = ACTIONS(2580), - [anon_sym_concept] = ACTIONS(2580), - [anon_sym_co_return] = ACTIONS(2580), - [anon_sym_co_yield] = ACTIONS(2580), - [anon_sym_R_DQUOTE] = ACTIONS(2582), - [anon_sym_LR_DQUOTE] = ACTIONS(2582), - [anon_sym_uR_DQUOTE] = ACTIONS(2582), - [anon_sym_UR_DQUOTE] = ACTIONS(2582), - [anon_sym_u8R_DQUOTE] = ACTIONS(2582), - [anon_sym_co_await] = ACTIONS(2580), - [anon_sym_new] = ACTIONS(2580), - [anon_sym_requires] = ACTIONS(2580), - [sym_this] = ACTIONS(2580), - [sym_nullptr] = ACTIONS(2580), - }, - [910] = { - [sym_identifier] = ACTIONS(2576), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2578), - [anon_sym_AMP] = ACTIONS(2576), - [anon_sym_SEMI] = ACTIONS(2578), - [anon_sym_typedef] = ACTIONS(2576), - [anon_sym_extern] = ACTIONS(2576), - [anon_sym___attribute__] = ACTIONS(2576), - [anon_sym_COLON_COLON] = ACTIONS(2578), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2578), - [anon_sym___declspec] = ACTIONS(2576), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2576), - [anon_sym_static] = ACTIONS(2576), - [anon_sym_register] = ACTIONS(2576), - [anon_sym_inline] = ACTIONS(2576), - [anon_sym_thread_local] = ACTIONS(2576), - [anon_sym_const] = ACTIONS(2576), - [anon_sym_volatile] = ACTIONS(2576), - [anon_sym_restrict] = ACTIONS(2576), - [anon_sym__Atomic] = ACTIONS(2576), - [anon_sym_mutable] = ACTIONS(2576), - [anon_sym_constexpr] = ACTIONS(2576), - [anon_sym_constinit] = ACTIONS(2576), - [anon_sym_consteval] = ACTIONS(2576), - [anon_sym_signed] = ACTIONS(2576), - [anon_sym_unsigned] = ACTIONS(2576), - [anon_sym_long] = ACTIONS(2576), - [anon_sym_short] = ACTIONS(2576), - [sym_primitive_type] = ACTIONS(2576), - [anon_sym_enum] = ACTIONS(2576), - [anon_sym_class] = ACTIONS(2576), - [anon_sym_struct] = ACTIONS(2576), - [anon_sym_union] = ACTIONS(2576), - [anon_sym_if] = ACTIONS(2576), - [anon_sym_else] = 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_return] = ACTIONS(2576), - [anon_sym_break] = ACTIONS(2576), - [anon_sym_continue] = ACTIONS(2576), - [anon_sym_goto] = ACTIONS(2576), - [anon_sym_not] = ACTIONS(2576), - [anon_sym_compl] = ACTIONS(2576), - [anon_sym_DASH_DASH] = ACTIONS(2578), - [anon_sym_PLUS_PLUS] = ACTIONS(2578), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2578), - [anon_sym_u_DQUOTE] = ACTIONS(2578), - [anon_sym_U_DQUOTE] = ACTIONS(2578), - [anon_sym_u8_DQUOTE] = ACTIONS(2578), - [anon_sym_DQUOTE] = ACTIONS(2578), - [sym_true] = ACTIONS(2576), - [sym_false] = ACTIONS(2576), - [sym_null] = ACTIONS(2576), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2576), - [anon_sym_decltype] = ACTIONS(2576), - [anon_sym_virtual] = ACTIONS(2576), - [anon_sym_explicit] = ACTIONS(2576), - [anon_sym_typename] = ACTIONS(2576), - [anon_sym_template] = ACTIONS(2576), - [anon_sym_operator] = ACTIONS(2576), - [anon_sym_try] = ACTIONS(2576), - [anon_sym_delete] = ACTIONS(2576), - [anon_sym_throw] = ACTIONS(2576), - [anon_sym_namespace] = ACTIONS(2576), - [anon_sym_using] = ACTIONS(2576), - [anon_sym_static_assert] = ACTIONS(2576), - [anon_sym_concept] = ACTIONS(2576), - [anon_sym_co_return] = ACTIONS(2576), - [anon_sym_co_yield] = ACTIONS(2576), - [anon_sym_R_DQUOTE] = ACTIONS(2578), - [anon_sym_LR_DQUOTE] = ACTIONS(2578), - [anon_sym_uR_DQUOTE] = ACTIONS(2578), - [anon_sym_UR_DQUOTE] = ACTIONS(2578), - [anon_sym_u8R_DQUOTE] = ACTIONS(2578), - [anon_sym_co_await] = ACTIONS(2576), - [anon_sym_new] = ACTIONS(2576), - [anon_sym_requires] = ACTIONS(2576), - [sym_this] = ACTIONS(2576), - [sym_nullptr] = ACTIONS(2576), - }, - [911] = { - [sym_identifier] = ACTIONS(2552), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2554), - [anon_sym_AMP] = ACTIONS(2552), - [anon_sym_SEMI] = ACTIONS(2554), - [anon_sym_typedef] = ACTIONS(2552), - [anon_sym_extern] = ACTIONS(2552), - [anon_sym___attribute__] = ACTIONS(2552), - [anon_sym_COLON_COLON] = ACTIONS(2554), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2554), - [anon_sym___declspec] = ACTIONS(2552), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2552), - [anon_sym_static] = ACTIONS(2552), - [anon_sym_register] = ACTIONS(2552), - [anon_sym_inline] = ACTIONS(2552), - [anon_sym_thread_local] = ACTIONS(2552), - [anon_sym_const] = ACTIONS(2552), - [anon_sym_volatile] = ACTIONS(2552), - [anon_sym_restrict] = ACTIONS(2552), - [anon_sym__Atomic] = ACTIONS(2552), - [anon_sym_mutable] = ACTIONS(2552), - [anon_sym_constexpr] = ACTIONS(2552), - [anon_sym_constinit] = ACTIONS(2552), - [anon_sym_consteval] = ACTIONS(2552), - [anon_sym_signed] = ACTIONS(2552), - [anon_sym_unsigned] = ACTIONS(2552), - [anon_sym_long] = ACTIONS(2552), - [anon_sym_short] = ACTIONS(2552), - [sym_primitive_type] = ACTIONS(2552), - [anon_sym_enum] = ACTIONS(2552), - [anon_sym_class] = 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_return] = ACTIONS(2552), - [anon_sym_break] = ACTIONS(2552), - [anon_sym_continue] = ACTIONS(2552), - [anon_sym_goto] = ACTIONS(2552), - [anon_sym_not] = ACTIONS(2552), - [anon_sym_compl] = ACTIONS(2552), - [anon_sym_DASH_DASH] = ACTIONS(2554), - [anon_sym_PLUS_PLUS] = ACTIONS(2554), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2554), - [anon_sym_u_DQUOTE] = ACTIONS(2554), - [anon_sym_U_DQUOTE] = ACTIONS(2554), - [anon_sym_u8_DQUOTE] = ACTIONS(2554), - [anon_sym_DQUOTE] = ACTIONS(2554), - [sym_true] = ACTIONS(2552), - [sym_false] = ACTIONS(2552), - [sym_null] = ACTIONS(2552), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2552), - [anon_sym_decltype] = ACTIONS(2552), - [anon_sym_virtual] = ACTIONS(2552), - [anon_sym_explicit] = ACTIONS(2552), - [anon_sym_typename] = ACTIONS(2552), - [anon_sym_template] = ACTIONS(2552), - [anon_sym_operator] = ACTIONS(2552), - [anon_sym_try] = ACTIONS(2552), - [anon_sym_delete] = ACTIONS(2552), - [anon_sym_throw] = ACTIONS(2552), - [anon_sym_namespace] = ACTIONS(2552), - [anon_sym_using] = ACTIONS(2552), - [anon_sym_static_assert] = ACTIONS(2552), - [anon_sym_concept] = ACTIONS(2552), - [anon_sym_co_return] = ACTIONS(2552), - [anon_sym_co_yield] = ACTIONS(2552), - [anon_sym_R_DQUOTE] = ACTIONS(2554), - [anon_sym_LR_DQUOTE] = ACTIONS(2554), - [anon_sym_uR_DQUOTE] = ACTIONS(2554), - [anon_sym_UR_DQUOTE] = ACTIONS(2554), - [anon_sym_u8R_DQUOTE] = ACTIONS(2554), - [anon_sym_co_await] = ACTIONS(2552), - [anon_sym_new] = ACTIONS(2552), - [anon_sym_requires] = ACTIONS(2552), - [sym_this] = ACTIONS(2552), - [sym_nullptr] = ACTIONS(2552), - }, - [912] = { - [sym_identifier] = ACTIONS(2556), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2558), - [anon_sym_AMP] = ACTIONS(2556), - [anon_sym_SEMI] = ACTIONS(2558), - [anon_sym_typedef] = ACTIONS(2556), - [anon_sym_extern] = ACTIONS(2556), - [anon_sym___attribute__] = ACTIONS(2556), - [anon_sym_COLON_COLON] = ACTIONS(2558), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2558), - [anon_sym___declspec] = ACTIONS(2556), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2556), - [anon_sym_static] = ACTIONS(2556), - [anon_sym_register] = ACTIONS(2556), - [anon_sym_inline] = ACTIONS(2556), - [anon_sym_thread_local] = ACTIONS(2556), - [anon_sym_const] = ACTIONS(2556), - [anon_sym_volatile] = ACTIONS(2556), - [anon_sym_restrict] = ACTIONS(2556), - [anon_sym__Atomic] = ACTIONS(2556), - [anon_sym_mutable] = ACTIONS(2556), - [anon_sym_constexpr] = ACTIONS(2556), - [anon_sym_constinit] = ACTIONS(2556), - [anon_sym_consteval] = ACTIONS(2556), - [anon_sym_signed] = ACTIONS(2556), - [anon_sym_unsigned] = ACTIONS(2556), - [anon_sym_long] = ACTIONS(2556), - [anon_sym_short] = ACTIONS(2556), - [sym_primitive_type] = ACTIONS(2556), - [anon_sym_enum] = ACTIONS(2556), - [anon_sym_class] = 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_return] = ACTIONS(2556), - [anon_sym_break] = ACTIONS(2556), - [anon_sym_continue] = ACTIONS(2556), - [anon_sym_goto] = ACTIONS(2556), - [anon_sym_not] = ACTIONS(2556), - [anon_sym_compl] = ACTIONS(2556), - [anon_sym_DASH_DASH] = ACTIONS(2558), - [anon_sym_PLUS_PLUS] = ACTIONS(2558), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2558), - [anon_sym_u_DQUOTE] = ACTIONS(2558), - [anon_sym_U_DQUOTE] = ACTIONS(2558), - [anon_sym_u8_DQUOTE] = ACTIONS(2558), - [anon_sym_DQUOTE] = ACTIONS(2558), - [sym_true] = ACTIONS(2556), - [sym_false] = ACTIONS(2556), - [sym_null] = ACTIONS(2556), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2556), - [anon_sym_decltype] = ACTIONS(2556), - [anon_sym_virtual] = ACTIONS(2556), - [anon_sym_explicit] = ACTIONS(2556), - [anon_sym_typename] = ACTIONS(2556), - [anon_sym_template] = ACTIONS(2556), - [anon_sym_operator] = ACTIONS(2556), - [anon_sym_try] = ACTIONS(2556), - [anon_sym_delete] = ACTIONS(2556), - [anon_sym_throw] = ACTIONS(2556), - [anon_sym_namespace] = ACTIONS(2556), - [anon_sym_using] = ACTIONS(2556), - [anon_sym_static_assert] = ACTIONS(2556), - [anon_sym_concept] = ACTIONS(2556), - [anon_sym_co_return] = ACTIONS(2556), - [anon_sym_co_yield] = ACTIONS(2556), - [anon_sym_R_DQUOTE] = ACTIONS(2558), - [anon_sym_LR_DQUOTE] = ACTIONS(2558), - [anon_sym_uR_DQUOTE] = ACTIONS(2558), - [anon_sym_UR_DQUOTE] = ACTIONS(2558), - [anon_sym_u8R_DQUOTE] = ACTIONS(2558), - [anon_sym_co_await] = ACTIONS(2556), - [anon_sym_new] = ACTIONS(2556), - [anon_sym_requires] = ACTIONS(2556), - [sym_this] = ACTIONS(2556), - [sym_nullptr] = ACTIONS(2556), - }, - [913] = { - [sym_identifier] = ACTIONS(2562), - [aux_sym_preproc_include_token1] = ACTIONS(2562), - [aux_sym_preproc_def_token1] = ACTIONS(2562), - [aux_sym_preproc_if_token1] = ACTIONS(2562), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2562), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2562), - [sym_preproc_directive] = ACTIONS(2562), - [anon_sym_LPAREN2] = ACTIONS(2564), - [anon_sym_BANG] = ACTIONS(2564), - [anon_sym_TILDE] = ACTIONS(2564), - [anon_sym_DASH] = ACTIONS(2562), - [anon_sym_PLUS] = ACTIONS(2562), - [anon_sym_STAR] = ACTIONS(2564), - [anon_sym_AMP_AMP] = ACTIONS(2564), - [anon_sym_AMP] = ACTIONS(2562), - [anon_sym_SEMI] = ACTIONS(2564), - [anon_sym_typedef] = ACTIONS(2562), - [anon_sym_extern] = ACTIONS(2562), - [anon_sym___attribute__] = ACTIONS(2562), - [anon_sym_COLON_COLON] = ACTIONS(2564), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2564), - [anon_sym___declspec] = ACTIONS(2562), - [anon_sym___based] = ACTIONS(2562), - [anon_sym___cdecl] = ACTIONS(2562), - [anon_sym___clrcall] = ACTIONS(2562), - [anon_sym___stdcall] = ACTIONS(2562), - [anon_sym___fastcall] = ACTIONS(2562), - [anon_sym___thiscall] = ACTIONS(2562), - [anon_sym___vectorcall] = ACTIONS(2562), - [anon_sym_LBRACE] = ACTIONS(2564), - [anon_sym_RBRACE] = ACTIONS(2564), - [anon_sym_LBRACK] = ACTIONS(2562), - [anon_sym_static] = ACTIONS(2562), - [anon_sym_register] = ACTIONS(2562), - [anon_sym_inline] = ACTIONS(2562), - [anon_sym_thread_local] = ACTIONS(2562), - [anon_sym_const] = ACTIONS(2562), - [anon_sym_volatile] = ACTIONS(2562), - [anon_sym_restrict] = ACTIONS(2562), - [anon_sym__Atomic] = ACTIONS(2562), - [anon_sym_mutable] = ACTIONS(2562), - [anon_sym_constexpr] = ACTIONS(2562), - [anon_sym_constinit] = ACTIONS(2562), - [anon_sym_consteval] = ACTIONS(2562), - [anon_sym_signed] = ACTIONS(2562), - [anon_sym_unsigned] = ACTIONS(2562), - [anon_sym_long] = ACTIONS(2562), - [anon_sym_short] = ACTIONS(2562), - [sym_primitive_type] = ACTIONS(2562), - [anon_sym_enum] = ACTIONS(2562), - [anon_sym_class] = ACTIONS(2562), - [anon_sym_struct] = ACTIONS(2562), - [anon_sym_union] = ACTIONS(2562), - [anon_sym_if] = ACTIONS(2562), - [anon_sym_else] = ACTIONS(2562), - [anon_sym_switch] = ACTIONS(2562), - [anon_sym_case] = ACTIONS(2562), - [anon_sym_default] = ACTIONS(2562), - [anon_sym_while] = ACTIONS(2562), - [anon_sym_do] = ACTIONS(2562), - [anon_sym_for] = ACTIONS(2562), - [anon_sym_return] = ACTIONS(2562), - [anon_sym_break] = ACTIONS(2562), - [anon_sym_continue] = ACTIONS(2562), - [anon_sym_goto] = ACTIONS(2562), - [anon_sym_not] = ACTIONS(2562), - [anon_sym_compl] = ACTIONS(2562), - [anon_sym_DASH_DASH] = ACTIONS(2564), - [anon_sym_PLUS_PLUS] = ACTIONS(2564), - [anon_sym_sizeof] = ACTIONS(2562), - [sym_number_literal] = ACTIONS(2564), - [anon_sym_L_SQUOTE] = ACTIONS(2564), - [anon_sym_u_SQUOTE] = ACTIONS(2564), - [anon_sym_U_SQUOTE] = ACTIONS(2564), - [anon_sym_u8_SQUOTE] = ACTIONS(2564), - [anon_sym_SQUOTE] = ACTIONS(2564), - [anon_sym_L_DQUOTE] = ACTIONS(2564), - [anon_sym_u_DQUOTE] = ACTIONS(2564), - [anon_sym_U_DQUOTE] = ACTIONS(2564), - [anon_sym_u8_DQUOTE] = ACTIONS(2564), - [anon_sym_DQUOTE] = ACTIONS(2564), - [sym_true] = ACTIONS(2562), - [sym_false] = ACTIONS(2562), - [sym_null] = ACTIONS(2562), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2562), - [anon_sym_decltype] = ACTIONS(2562), - [anon_sym_virtual] = ACTIONS(2562), - [anon_sym_explicit] = ACTIONS(2562), - [anon_sym_typename] = ACTIONS(2562), - [anon_sym_template] = ACTIONS(2562), - [anon_sym_operator] = ACTIONS(2562), - [anon_sym_try] = ACTIONS(2562), - [anon_sym_delete] = ACTIONS(2562), - [anon_sym_throw] = ACTIONS(2562), - [anon_sym_namespace] = ACTIONS(2562), - [anon_sym_using] = ACTIONS(2562), - [anon_sym_static_assert] = ACTIONS(2562), - [anon_sym_concept] = ACTIONS(2562), - [anon_sym_co_return] = ACTIONS(2562), - [anon_sym_co_yield] = ACTIONS(2562), - [anon_sym_R_DQUOTE] = ACTIONS(2564), - [anon_sym_LR_DQUOTE] = ACTIONS(2564), - [anon_sym_uR_DQUOTE] = ACTIONS(2564), - [anon_sym_UR_DQUOTE] = ACTIONS(2564), - [anon_sym_u8R_DQUOTE] = ACTIONS(2564), - [anon_sym_co_await] = ACTIONS(2562), - [anon_sym_new] = ACTIONS(2562), - [anon_sym_requires] = ACTIONS(2562), - [sym_this] = ACTIONS(2562), - [sym_nullptr] = ACTIONS(2562), - }, - [914] = { - [sym_identifier] = ACTIONS(2730), - [aux_sym_preproc_include_token1] = ACTIONS(2730), - [aux_sym_preproc_def_token1] = ACTIONS(2730), - [aux_sym_preproc_if_token1] = ACTIONS(2730), - [aux_sym_preproc_if_token2] = ACTIONS(2730), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2730), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2730), - [sym_preproc_directive] = ACTIONS(2730), - [anon_sym_LPAREN2] = ACTIONS(2732), - [anon_sym_BANG] = ACTIONS(2732), - [anon_sym_TILDE] = ACTIONS(2732), - [anon_sym_DASH] = ACTIONS(2730), - [anon_sym_PLUS] = ACTIONS(2730), - [anon_sym_STAR] = ACTIONS(2732), - [anon_sym_AMP_AMP] = ACTIONS(2732), - [anon_sym_AMP] = ACTIONS(2730), - [anon_sym_SEMI] = ACTIONS(2732), - [anon_sym_typedef] = ACTIONS(2730), - [anon_sym_extern] = ACTIONS(2730), - [anon_sym___attribute__] = ACTIONS(2730), - [anon_sym_COLON_COLON] = ACTIONS(2732), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2732), - [anon_sym___declspec] = ACTIONS(2730), - [anon_sym___based] = ACTIONS(2730), - [anon_sym___cdecl] = ACTIONS(2730), - [anon_sym___clrcall] = ACTIONS(2730), - [anon_sym___stdcall] = ACTIONS(2730), - [anon_sym___fastcall] = ACTIONS(2730), - [anon_sym___thiscall] = ACTIONS(2730), - [anon_sym___vectorcall] = ACTIONS(2730), - [anon_sym_LBRACE] = ACTIONS(2732), - [anon_sym_LBRACK] = ACTIONS(2730), - [anon_sym_static] = ACTIONS(2730), - [anon_sym_register] = ACTIONS(2730), - [anon_sym_inline] = ACTIONS(2730), - [anon_sym_thread_local] = ACTIONS(2730), - [anon_sym_const] = ACTIONS(2730), - [anon_sym_volatile] = ACTIONS(2730), - [anon_sym_restrict] = ACTIONS(2730), - [anon_sym__Atomic] = ACTIONS(2730), - [anon_sym_mutable] = ACTIONS(2730), - [anon_sym_constexpr] = ACTIONS(2730), - [anon_sym_constinit] = ACTIONS(2730), - [anon_sym_consteval] = ACTIONS(2730), - [anon_sym_signed] = ACTIONS(2730), - [anon_sym_unsigned] = ACTIONS(2730), - [anon_sym_long] = ACTIONS(2730), - [anon_sym_short] = ACTIONS(2730), - [sym_primitive_type] = ACTIONS(2730), - [anon_sym_enum] = ACTIONS(2730), - [anon_sym_class] = ACTIONS(2730), - [anon_sym_struct] = ACTIONS(2730), - [anon_sym_union] = ACTIONS(2730), - [anon_sym_if] = ACTIONS(2730), - [anon_sym_switch] = ACTIONS(2730), - [anon_sym_case] = ACTIONS(2730), - [anon_sym_default] = ACTIONS(2730), - [anon_sym_while] = ACTIONS(2730), - [anon_sym_do] = ACTIONS(2730), - [anon_sym_for] = ACTIONS(2730), - [anon_sym_return] = ACTIONS(2730), - [anon_sym_break] = ACTIONS(2730), - [anon_sym_continue] = ACTIONS(2730), - [anon_sym_goto] = ACTIONS(2730), - [anon_sym_not] = ACTIONS(2730), - [anon_sym_compl] = ACTIONS(2730), - [anon_sym_DASH_DASH] = ACTIONS(2732), - [anon_sym_PLUS_PLUS] = ACTIONS(2732), - [anon_sym_sizeof] = ACTIONS(2730), - [sym_number_literal] = ACTIONS(2732), - [anon_sym_L_SQUOTE] = ACTIONS(2732), - [anon_sym_u_SQUOTE] = ACTIONS(2732), - [anon_sym_U_SQUOTE] = ACTIONS(2732), - [anon_sym_u8_SQUOTE] = ACTIONS(2732), - [anon_sym_SQUOTE] = ACTIONS(2732), - [anon_sym_L_DQUOTE] = ACTIONS(2732), - [anon_sym_u_DQUOTE] = ACTIONS(2732), - [anon_sym_U_DQUOTE] = ACTIONS(2732), - [anon_sym_u8_DQUOTE] = ACTIONS(2732), - [anon_sym_DQUOTE] = ACTIONS(2732), - [sym_true] = ACTIONS(2730), - [sym_false] = ACTIONS(2730), - [sym_null] = ACTIONS(2730), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2730), - [anon_sym_decltype] = ACTIONS(2730), - [anon_sym_virtual] = ACTIONS(2730), - [anon_sym_explicit] = ACTIONS(2730), - [anon_sym_typename] = ACTIONS(2730), - [anon_sym_template] = ACTIONS(2730), - [anon_sym_operator] = ACTIONS(2730), - [anon_sym_try] = ACTIONS(2730), - [anon_sym_delete] = ACTIONS(2730), - [anon_sym_throw] = ACTIONS(2730), - [anon_sym_namespace] = ACTIONS(2730), - [anon_sym_using] = ACTIONS(2730), - [anon_sym_static_assert] = ACTIONS(2730), - [anon_sym_concept] = ACTIONS(2730), - [anon_sym_co_return] = ACTIONS(2730), - [anon_sym_co_yield] = ACTIONS(2730), - [anon_sym_R_DQUOTE] = ACTIONS(2732), - [anon_sym_LR_DQUOTE] = ACTIONS(2732), - [anon_sym_uR_DQUOTE] = ACTIONS(2732), - [anon_sym_UR_DQUOTE] = ACTIONS(2732), - [anon_sym_u8R_DQUOTE] = ACTIONS(2732), - [anon_sym_co_await] = ACTIONS(2730), - [anon_sym_new] = ACTIONS(2730), - [anon_sym_requires] = ACTIONS(2730), - [sym_this] = ACTIONS(2730), - [sym_nullptr] = ACTIONS(2730), - }, - [915] = { - [ts_builtin_sym_end] = ACTIONS(2882), - [sym_identifier] = ACTIONS(2880), - [aux_sym_preproc_include_token1] = ACTIONS(2880), - [aux_sym_preproc_def_token1] = ACTIONS(2880), - [aux_sym_preproc_if_token1] = ACTIONS(2880), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2880), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2880), - [sym_preproc_directive] = ACTIONS(2880), - [anon_sym_LPAREN2] = ACTIONS(2882), - [anon_sym_BANG] = ACTIONS(2882), - [anon_sym_TILDE] = ACTIONS(2882), - [anon_sym_DASH] = ACTIONS(2880), - [anon_sym_PLUS] = ACTIONS(2880), - [anon_sym_STAR] = ACTIONS(2882), - [anon_sym_AMP_AMP] = ACTIONS(2882), - [anon_sym_AMP] = ACTIONS(2880), - [anon_sym_SEMI] = ACTIONS(2882), - [anon_sym_typedef] = ACTIONS(2880), - [anon_sym_extern] = ACTIONS(2880), - [anon_sym___attribute__] = ACTIONS(2880), - [anon_sym_COLON_COLON] = ACTIONS(2882), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2882), - [anon_sym___declspec] = ACTIONS(2880), - [anon_sym___based] = ACTIONS(2880), - [anon_sym___cdecl] = ACTIONS(2880), - [anon_sym___clrcall] = ACTIONS(2880), - [anon_sym___stdcall] = ACTIONS(2880), - [anon_sym___fastcall] = ACTIONS(2880), - [anon_sym___thiscall] = ACTIONS(2880), - [anon_sym___vectorcall] = ACTIONS(2880), - [anon_sym_LBRACE] = ACTIONS(2882), - [anon_sym_LBRACK] = ACTIONS(2880), - [anon_sym_static] = ACTIONS(2880), - [anon_sym_register] = ACTIONS(2880), - [anon_sym_inline] = ACTIONS(2880), - [anon_sym_thread_local] = ACTIONS(2880), - [anon_sym_const] = ACTIONS(2880), - [anon_sym_volatile] = ACTIONS(2880), - [anon_sym_restrict] = ACTIONS(2880), - [anon_sym__Atomic] = ACTIONS(2880), - [anon_sym_mutable] = ACTIONS(2880), - [anon_sym_constexpr] = ACTIONS(2880), - [anon_sym_constinit] = ACTIONS(2880), - [anon_sym_consteval] = ACTIONS(2880), - [anon_sym_signed] = ACTIONS(2880), - [anon_sym_unsigned] = ACTIONS(2880), - [anon_sym_long] = ACTIONS(2880), - [anon_sym_short] = ACTIONS(2880), - [sym_primitive_type] = ACTIONS(2880), - [anon_sym_enum] = ACTIONS(2880), - [anon_sym_class] = ACTIONS(2880), - [anon_sym_struct] = ACTIONS(2880), - [anon_sym_union] = ACTIONS(2880), - [anon_sym_if] = ACTIONS(2880), - [anon_sym_switch] = ACTIONS(2880), - [anon_sym_case] = ACTIONS(2880), - [anon_sym_default] = ACTIONS(2880), - [anon_sym_while] = ACTIONS(2880), - [anon_sym_do] = ACTIONS(2880), - [anon_sym_for] = ACTIONS(2880), - [anon_sym_return] = ACTIONS(2880), - [anon_sym_break] = ACTIONS(2880), - [anon_sym_continue] = ACTIONS(2880), - [anon_sym_goto] = ACTIONS(2880), - [anon_sym_not] = ACTIONS(2880), - [anon_sym_compl] = ACTIONS(2880), - [anon_sym_DASH_DASH] = ACTIONS(2882), - [anon_sym_PLUS_PLUS] = ACTIONS(2882), - [anon_sym_sizeof] = ACTIONS(2880), - [sym_number_literal] = ACTIONS(2882), - [anon_sym_L_SQUOTE] = ACTIONS(2882), - [anon_sym_u_SQUOTE] = ACTIONS(2882), - [anon_sym_U_SQUOTE] = ACTIONS(2882), - [anon_sym_u8_SQUOTE] = ACTIONS(2882), - [anon_sym_SQUOTE] = ACTIONS(2882), - [anon_sym_L_DQUOTE] = ACTIONS(2882), - [anon_sym_u_DQUOTE] = ACTIONS(2882), - [anon_sym_U_DQUOTE] = ACTIONS(2882), - [anon_sym_u8_DQUOTE] = ACTIONS(2882), - [anon_sym_DQUOTE] = ACTIONS(2882), - [sym_true] = ACTIONS(2880), - [sym_false] = ACTIONS(2880), - [sym_null] = ACTIONS(2880), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2880), - [anon_sym_decltype] = ACTIONS(2880), - [anon_sym_virtual] = ACTIONS(2880), - [anon_sym_explicit] = ACTIONS(2880), - [anon_sym_typename] = ACTIONS(2880), - [anon_sym_template] = ACTIONS(2880), - [anon_sym_operator] = ACTIONS(2880), - [anon_sym_try] = ACTIONS(2880), - [anon_sym_delete] = ACTIONS(2880), - [anon_sym_throw] = ACTIONS(2880), - [anon_sym_namespace] = ACTIONS(2880), - [anon_sym_using] = ACTIONS(2880), - [anon_sym_static_assert] = ACTIONS(2880), - [anon_sym_concept] = ACTIONS(2880), - [anon_sym_co_return] = ACTIONS(2880), - [anon_sym_co_yield] = ACTIONS(2880), - [anon_sym_R_DQUOTE] = ACTIONS(2882), - [anon_sym_LR_DQUOTE] = ACTIONS(2882), - [anon_sym_uR_DQUOTE] = ACTIONS(2882), - [anon_sym_UR_DQUOTE] = ACTIONS(2882), - [anon_sym_u8R_DQUOTE] = ACTIONS(2882), - [anon_sym_co_await] = ACTIONS(2880), - [anon_sym_new] = ACTIONS(2880), - [anon_sym_requires] = ACTIONS(2880), - [sym_this] = ACTIONS(2880), - [sym_nullptr] = ACTIONS(2880), - }, - [916] = { - [ts_builtin_sym_end] = ACTIONS(2816), - [sym_identifier] = ACTIONS(2814), - [aux_sym_preproc_include_token1] = ACTIONS(2814), - [aux_sym_preproc_def_token1] = ACTIONS(2814), - [aux_sym_preproc_if_token1] = ACTIONS(2814), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2814), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2814), - [sym_preproc_directive] = ACTIONS(2814), - [anon_sym_LPAREN2] = ACTIONS(2816), - [anon_sym_BANG] = ACTIONS(2816), - [anon_sym_TILDE] = ACTIONS(2816), - [anon_sym_DASH] = ACTIONS(2814), - [anon_sym_PLUS] = ACTIONS(2814), - [anon_sym_STAR] = ACTIONS(2816), - [anon_sym_AMP_AMP] = ACTIONS(2816), - [anon_sym_AMP] = ACTIONS(2814), - [anon_sym_SEMI] = ACTIONS(2816), - [anon_sym_typedef] = ACTIONS(2814), - [anon_sym_extern] = ACTIONS(2814), - [anon_sym___attribute__] = ACTIONS(2814), - [anon_sym_COLON_COLON] = ACTIONS(2816), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2816), - [anon_sym___declspec] = ACTIONS(2814), - [anon_sym___based] = ACTIONS(2814), - [anon_sym___cdecl] = ACTIONS(2814), - [anon_sym___clrcall] = ACTIONS(2814), - [anon_sym___stdcall] = ACTIONS(2814), - [anon_sym___fastcall] = ACTIONS(2814), - [anon_sym___thiscall] = ACTIONS(2814), - [anon_sym___vectorcall] = ACTIONS(2814), - [anon_sym_LBRACE] = ACTIONS(2816), - [anon_sym_LBRACK] = ACTIONS(2814), - [anon_sym_static] = ACTIONS(2814), - [anon_sym_register] = ACTIONS(2814), - [anon_sym_inline] = ACTIONS(2814), - [anon_sym_thread_local] = ACTIONS(2814), - [anon_sym_const] = ACTIONS(2814), - [anon_sym_volatile] = ACTIONS(2814), - [anon_sym_restrict] = ACTIONS(2814), - [anon_sym__Atomic] = ACTIONS(2814), - [anon_sym_mutable] = ACTIONS(2814), - [anon_sym_constexpr] = ACTIONS(2814), - [anon_sym_constinit] = ACTIONS(2814), - [anon_sym_consteval] = ACTIONS(2814), - [anon_sym_signed] = ACTIONS(2814), - [anon_sym_unsigned] = ACTIONS(2814), - [anon_sym_long] = ACTIONS(2814), - [anon_sym_short] = ACTIONS(2814), - [sym_primitive_type] = ACTIONS(2814), - [anon_sym_enum] = ACTIONS(2814), - [anon_sym_class] = ACTIONS(2814), - [anon_sym_struct] = ACTIONS(2814), - [anon_sym_union] = ACTIONS(2814), - [anon_sym_if] = ACTIONS(2814), - [anon_sym_switch] = ACTIONS(2814), - [anon_sym_case] = ACTIONS(2814), - [anon_sym_default] = ACTIONS(2814), - [anon_sym_while] = ACTIONS(2814), - [anon_sym_do] = ACTIONS(2814), - [anon_sym_for] = ACTIONS(2814), - [anon_sym_return] = ACTIONS(2814), - [anon_sym_break] = ACTIONS(2814), - [anon_sym_continue] = ACTIONS(2814), - [anon_sym_goto] = ACTIONS(2814), - [anon_sym_not] = ACTIONS(2814), - [anon_sym_compl] = ACTIONS(2814), - [anon_sym_DASH_DASH] = ACTIONS(2816), - [anon_sym_PLUS_PLUS] = ACTIONS(2816), - [anon_sym_sizeof] = ACTIONS(2814), - [sym_number_literal] = ACTIONS(2816), - [anon_sym_L_SQUOTE] = ACTIONS(2816), - [anon_sym_u_SQUOTE] = ACTIONS(2816), - [anon_sym_U_SQUOTE] = ACTIONS(2816), - [anon_sym_u8_SQUOTE] = ACTIONS(2816), - [anon_sym_SQUOTE] = ACTIONS(2816), - [anon_sym_L_DQUOTE] = ACTIONS(2816), - [anon_sym_u_DQUOTE] = ACTIONS(2816), - [anon_sym_U_DQUOTE] = ACTIONS(2816), - [anon_sym_u8_DQUOTE] = ACTIONS(2816), - [anon_sym_DQUOTE] = ACTIONS(2816), - [sym_true] = ACTIONS(2814), - [sym_false] = ACTIONS(2814), - [sym_null] = ACTIONS(2814), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2814), - [anon_sym_decltype] = ACTIONS(2814), - [anon_sym_virtual] = ACTIONS(2814), - [anon_sym_explicit] = ACTIONS(2814), - [anon_sym_typename] = ACTIONS(2814), - [anon_sym_template] = ACTIONS(2814), - [anon_sym_operator] = ACTIONS(2814), - [anon_sym_try] = ACTIONS(2814), - [anon_sym_delete] = ACTIONS(2814), - [anon_sym_throw] = ACTIONS(2814), - [anon_sym_namespace] = ACTIONS(2814), - [anon_sym_using] = ACTIONS(2814), - [anon_sym_static_assert] = ACTIONS(2814), - [anon_sym_concept] = ACTIONS(2814), - [anon_sym_co_return] = ACTIONS(2814), - [anon_sym_co_yield] = ACTIONS(2814), - [anon_sym_R_DQUOTE] = ACTIONS(2816), - [anon_sym_LR_DQUOTE] = ACTIONS(2816), - [anon_sym_uR_DQUOTE] = ACTIONS(2816), - [anon_sym_UR_DQUOTE] = ACTIONS(2816), - [anon_sym_u8R_DQUOTE] = ACTIONS(2816), - [anon_sym_co_await] = ACTIONS(2814), - [anon_sym_new] = ACTIONS(2814), - [anon_sym_requires] = ACTIONS(2814), - [sym_this] = ACTIONS(2814), - [sym_nullptr] = ACTIONS(2814), - }, - [917] = { - [ts_builtin_sym_end] = ACTIONS(2700), - [sym_identifier] = ACTIONS(2698), - [aux_sym_preproc_include_token1] = ACTIONS(2698), - [aux_sym_preproc_def_token1] = ACTIONS(2698), - [aux_sym_preproc_if_token1] = ACTIONS(2698), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2698), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2698), - [sym_preproc_directive] = ACTIONS(2698), - [anon_sym_LPAREN2] = ACTIONS(2700), - [anon_sym_BANG] = ACTIONS(2700), - [anon_sym_TILDE] = ACTIONS(2700), - [anon_sym_DASH] = ACTIONS(2698), - [anon_sym_PLUS] = ACTIONS(2698), - [anon_sym_STAR] = ACTIONS(2700), - [anon_sym_AMP_AMP] = ACTIONS(2700), - [anon_sym_AMP] = ACTIONS(2698), - [anon_sym_SEMI] = ACTIONS(2700), - [anon_sym_typedef] = ACTIONS(2698), - [anon_sym_extern] = ACTIONS(2698), - [anon_sym___attribute__] = ACTIONS(2698), - [anon_sym_COLON_COLON] = ACTIONS(2700), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2700), - [anon_sym___declspec] = ACTIONS(2698), - [anon_sym___based] = ACTIONS(2698), - [anon_sym___cdecl] = ACTIONS(2698), - [anon_sym___clrcall] = ACTIONS(2698), - [anon_sym___stdcall] = ACTIONS(2698), - [anon_sym___fastcall] = ACTIONS(2698), - [anon_sym___thiscall] = ACTIONS(2698), - [anon_sym___vectorcall] = ACTIONS(2698), - [anon_sym_LBRACE] = ACTIONS(2700), - [anon_sym_LBRACK] = ACTIONS(2698), - [anon_sym_static] = ACTIONS(2698), - [anon_sym_register] = ACTIONS(2698), - [anon_sym_inline] = ACTIONS(2698), - [anon_sym_thread_local] = ACTIONS(2698), - [anon_sym_const] = ACTIONS(2698), - [anon_sym_volatile] = ACTIONS(2698), - [anon_sym_restrict] = ACTIONS(2698), - [anon_sym__Atomic] = ACTIONS(2698), - [anon_sym_mutable] = ACTIONS(2698), - [anon_sym_constexpr] = ACTIONS(2698), - [anon_sym_constinit] = ACTIONS(2698), - [anon_sym_consteval] = ACTIONS(2698), - [anon_sym_signed] = ACTIONS(2698), - [anon_sym_unsigned] = ACTIONS(2698), - [anon_sym_long] = ACTIONS(2698), - [anon_sym_short] = ACTIONS(2698), - [sym_primitive_type] = ACTIONS(2698), - [anon_sym_enum] = ACTIONS(2698), - [anon_sym_class] = ACTIONS(2698), - [anon_sym_struct] = ACTIONS(2698), - [anon_sym_union] = ACTIONS(2698), - [anon_sym_if] = ACTIONS(2698), - [anon_sym_switch] = ACTIONS(2698), - [anon_sym_case] = ACTIONS(2698), - [anon_sym_default] = ACTIONS(2698), - [anon_sym_while] = ACTIONS(2698), - [anon_sym_do] = ACTIONS(2698), - [anon_sym_for] = ACTIONS(2698), - [anon_sym_return] = ACTIONS(2698), - [anon_sym_break] = ACTIONS(2698), - [anon_sym_continue] = ACTIONS(2698), - [anon_sym_goto] = ACTIONS(2698), - [anon_sym_not] = ACTIONS(2698), - [anon_sym_compl] = ACTIONS(2698), - [anon_sym_DASH_DASH] = ACTIONS(2700), - [anon_sym_PLUS_PLUS] = ACTIONS(2700), - [anon_sym_sizeof] = ACTIONS(2698), - [sym_number_literal] = ACTIONS(2700), - [anon_sym_L_SQUOTE] = ACTIONS(2700), - [anon_sym_u_SQUOTE] = ACTIONS(2700), - [anon_sym_U_SQUOTE] = ACTIONS(2700), - [anon_sym_u8_SQUOTE] = ACTIONS(2700), - [anon_sym_SQUOTE] = ACTIONS(2700), - [anon_sym_L_DQUOTE] = ACTIONS(2700), - [anon_sym_u_DQUOTE] = ACTIONS(2700), - [anon_sym_U_DQUOTE] = ACTIONS(2700), - [anon_sym_u8_DQUOTE] = ACTIONS(2700), - [anon_sym_DQUOTE] = ACTIONS(2700), - [sym_true] = ACTIONS(2698), - [sym_false] = ACTIONS(2698), - [sym_null] = ACTIONS(2698), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2698), - [anon_sym_decltype] = ACTIONS(2698), - [anon_sym_virtual] = ACTIONS(2698), - [anon_sym_explicit] = ACTIONS(2698), - [anon_sym_typename] = ACTIONS(2698), - [anon_sym_template] = ACTIONS(2698), - [anon_sym_operator] = ACTIONS(2698), - [anon_sym_try] = ACTIONS(2698), - [anon_sym_delete] = ACTIONS(2698), - [anon_sym_throw] = ACTIONS(2698), - [anon_sym_namespace] = ACTIONS(2698), - [anon_sym_using] = ACTIONS(2698), - [anon_sym_static_assert] = ACTIONS(2698), - [anon_sym_concept] = ACTIONS(2698), - [anon_sym_co_return] = ACTIONS(2698), - [anon_sym_co_yield] = ACTIONS(2698), - [anon_sym_R_DQUOTE] = ACTIONS(2700), - [anon_sym_LR_DQUOTE] = ACTIONS(2700), - [anon_sym_uR_DQUOTE] = ACTIONS(2700), - [anon_sym_UR_DQUOTE] = ACTIONS(2700), - [anon_sym_u8R_DQUOTE] = ACTIONS(2700), - [anon_sym_co_await] = ACTIONS(2698), - [anon_sym_new] = ACTIONS(2698), - [anon_sym_requires] = ACTIONS(2698), - [sym_this] = ACTIONS(2698), - [sym_nullptr] = ACTIONS(2698), - }, - [918] = { [ts_builtin_sym_end] = ACTIONS(2914), [sym_identifier] = ACTIONS(2912), [aux_sym_preproc_include_token1] = ACTIONS(2912), @@ -141171,11 +163935,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(2912), [anon_sym_thread_local] = ACTIONS(2912), [anon_sym_const] = ACTIONS(2912), + [anon_sym_constexpr] = ACTIONS(2912), [anon_sym_volatile] = ACTIONS(2912), [anon_sym_restrict] = ACTIONS(2912), + [anon_sym___restrict__] = ACTIONS(2912), [anon_sym__Atomic] = ACTIONS(2912), + [anon_sym__Noreturn] = ACTIONS(2912), + [anon_sym_noreturn] = ACTIONS(2912), [anon_sym_mutable] = ACTIONS(2912), - [anon_sym_constexpr] = ACTIONS(2912), [anon_sym_constinit] = ACTIONS(2912), [anon_sym_consteval] = ACTIONS(2912), [anon_sym_signed] = ACTIONS(2912), @@ -141188,6 +163955,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(2912), [anon_sym_union] = ACTIONS(2912), [anon_sym_if] = ACTIONS(2912), + [anon_sym_else] = ACTIONS(2912), [anon_sym_switch] = ACTIONS(2912), [anon_sym_case] = ACTIONS(2912), [anon_sym_default] = ACTIONS(2912), @@ -141203,6 +163971,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(2914), [anon_sym_PLUS_PLUS] = ACTIONS(2914), [anon_sym_sizeof] = ACTIONS(2912), + [anon_sym_offsetof] = ACTIONS(2912), + [anon_sym__Generic] = ACTIONS(2912), + [anon_sym_asm] = ACTIONS(2912), + [anon_sym___asm__] = ACTIONS(2912), [sym_number_literal] = ACTIONS(2914), [anon_sym_L_SQUOTE] = ACTIONS(2914), [anon_sym_u_SQUOTE] = ACTIONS(2914), @@ -141216,7 +163988,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(2914), [sym_true] = ACTIONS(2912), [sym_false] = ACTIONS(2912), - [sym_null] = ACTIONS(2912), + [anon_sym_NULL] = ACTIONS(2912), + [anon_sym_nullptr] = ACTIONS(2912), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(2912), [anon_sym_decltype] = ACTIONS(2912), @@ -141243,3817 +164016,1328 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(2912), [anon_sym_requires] = ACTIONS(2912), [sym_this] = ACTIONS(2912), - [sym_nullptr] = ACTIONS(2912), - }, - [919] = { - [ts_builtin_sym_end] = ACTIONS(2732), - [sym_identifier] = ACTIONS(2730), - [aux_sym_preproc_include_token1] = ACTIONS(2730), - [aux_sym_preproc_def_token1] = ACTIONS(2730), - [aux_sym_preproc_if_token1] = ACTIONS(2730), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2730), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2730), - [sym_preproc_directive] = ACTIONS(2730), - [anon_sym_LPAREN2] = ACTIONS(2732), - [anon_sym_BANG] = ACTIONS(2732), - [anon_sym_TILDE] = ACTIONS(2732), - [anon_sym_DASH] = ACTIONS(2730), - [anon_sym_PLUS] = ACTIONS(2730), - [anon_sym_STAR] = ACTIONS(2732), - [anon_sym_AMP_AMP] = ACTIONS(2732), - [anon_sym_AMP] = ACTIONS(2730), - [anon_sym_SEMI] = ACTIONS(2732), - [anon_sym_typedef] = ACTIONS(2730), - [anon_sym_extern] = ACTIONS(2730), - [anon_sym___attribute__] = ACTIONS(2730), - [anon_sym_COLON_COLON] = ACTIONS(2732), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2732), - [anon_sym___declspec] = ACTIONS(2730), - [anon_sym___based] = ACTIONS(2730), - [anon_sym___cdecl] = ACTIONS(2730), - [anon_sym___clrcall] = ACTIONS(2730), - [anon_sym___stdcall] = ACTIONS(2730), - [anon_sym___fastcall] = ACTIONS(2730), - [anon_sym___thiscall] = ACTIONS(2730), - [anon_sym___vectorcall] = ACTIONS(2730), - [anon_sym_LBRACE] = ACTIONS(2732), - [anon_sym_LBRACK] = ACTIONS(2730), - [anon_sym_static] = ACTIONS(2730), - [anon_sym_register] = ACTIONS(2730), - [anon_sym_inline] = ACTIONS(2730), - [anon_sym_thread_local] = ACTIONS(2730), - [anon_sym_const] = ACTIONS(2730), - [anon_sym_volatile] = ACTIONS(2730), - [anon_sym_restrict] = ACTIONS(2730), - [anon_sym__Atomic] = ACTIONS(2730), - [anon_sym_mutable] = ACTIONS(2730), - [anon_sym_constexpr] = ACTIONS(2730), - [anon_sym_constinit] = ACTIONS(2730), - [anon_sym_consteval] = ACTIONS(2730), - [anon_sym_signed] = ACTIONS(2730), - [anon_sym_unsigned] = ACTIONS(2730), - [anon_sym_long] = ACTIONS(2730), - [anon_sym_short] = ACTIONS(2730), - [sym_primitive_type] = ACTIONS(2730), - [anon_sym_enum] = ACTIONS(2730), - [anon_sym_class] = ACTIONS(2730), - [anon_sym_struct] = ACTIONS(2730), - [anon_sym_union] = ACTIONS(2730), - [anon_sym_if] = ACTIONS(2730), - [anon_sym_switch] = ACTIONS(2730), - [anon_sym_case] = ACTIONS(2730), - [anon_sym_default] = ACTIONS(2730), - [anon_sym_while] = ACTIONS(2730), - [anon_sym_do] = ACTIONS(2730), - [anon_sym_for] = ACTIONS(2730), - [anon_sym_return] = ACTIONS(2730), - [anon_sym_break] = ACTIONS(2730), - [anon_sym_continue] = ACTIONS(2730), - [anon_sym_goto] = ACTIONS(2730), - [anon_sym_not] = ACTIONS(2730), - [anon_sym_compl] = ACTIONS(2730), - [anon_sym_DASH_DASH] = ACTIONS(2732), - [anon_sym_PLUS_PLUS] = ACTIONS(2732), - [anon_sym_sizeof] = ACTIONS(2730), - [sym_number_literal] = ACTIONS(2732), - [anon_sym_L_SQUOTE] = ACTIONS(2732), - [anon_sym_u_SQUOTE] = ACTIONS(2732), - [anon_sym_U_SQUOTE] = ACTIONS(2732), - [anon_sym_u8_SQUOTE] = ACTIONS(2732), - [anon_sym_SQUOTE] = ACTIONS(2732), - [anon_sym_L_DQUOTE] = ACTIONS(2732), - [anon_sym_u_DQUOTE] = ACTIONS(2732), - [anon_sym_U_DQUOTE] = ACTIONS(2732), - [anon_sym_u8_DQUOTE] = ACTIONS(2732), - [anon_sym_DQUOTE] = ACTIONS(2732), - [sym_true] = ACTIONS(2730), - [sym_false] = ACTIONS(2730), - [sym_null] = ACTIONS(2730), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2730), - [anon_sym_decltype] = ACTIONS(2730), - [anon_sym_virtual] = ACTIONS(2730), - [anon_sym_explicit] = ACTIONS(2730), - [anon_sym_typename] = ACTIONS(2730), - [anon_sym_template] = ACTIONS(2730), - [anon_sym_operator] = ACTIONS(2730), - [anon_sym_try] = ACTIONS(2730), - [anon_sym_delete] = ACTIONS(2730), - [anon_sym_throw] = ACTIONS(2730), - [anon_sym_namespace] = ACTIONS(2730), - [anon_sym_using] = ACTIONS(2730), - [anon_sym_static_assert] = ACTIONS(2730), - [anon_sym_concept] = ACTIONS(2730), - [anon_sym_co_return] = ACTIONS(2730), - [anon_sym_co_yield] = ACTIONS(2730), - [anon_sym_R_DQUOTE] = ACTIONS(2732), - [anon_sym_LR_DQUOTE] = ACTIONS(2732), - [anon_sym_uR_DQUOTE] = ACTIONS(2732), - [anon_sym_UR_DQUOTE] = ACTIONS(2732), - [anon_sym_u8R_DQUOTE] = ACTIONS(2732), - [anon_sym_co_await] = ACTIONS(2730), - [anon_sym_new] = ACTIONS(2730), - [anon_sym_requires] = ACTIONS(2730), - [sym_this] = ACTIONS(2730), - [sym_nullptr] = ACTIONS(2730), - }, - [920] = { - [sym_identifier] = ACTIONS(2710), - [aux_sym_preproc_include_token1] = ACTIONS(2710), - [aux_sym_preproc_def_token1] = ACTIONS(2710), - [aux_sym_preproc_if_token1] = ACTIONS(2710), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2710), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2710), - [sym_preproc_directive] = ACTIONS(2710), - [anon_sym_LPAREN2] = ACTIONS(2712), - [anon_sym_BANG] = ACTIONS(2712), - [anon_sym_TILDE] = ACTIONS(2712), - [anon_sym_DASH] = ACTIONS(2710), - [anon_sym_PLUS] = ACTIONS(2710), - [anon_sym_STAR] = ACTIONS(2712), - [anon_sym_AMP_AMP] = ACTIONS(2712), - [anon_sym_AMP] = ACTIONS(2710), - [anon_sym_SEMI] = ACTIONS(2712), - [anon_sym_typedef] = ACTIONS(2710), - [anon_sym_extern] = ACTIONS(2710), - [anon_sym___attribute__] = ACTIONS(2710), - [anon_sym_COLON_COLON] = ACTIONS(2712), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2712), - [anon_sym___declspec] = ACTIONS(2710), - [anon_sym___based] = ACTIONS(2710), - [anon_sym___cdecl] = ACTIONS(2710), - [anon_sym___clrcall] = ACTIONS(2710), - [anon_sym___stdcall] = ACTIONS(2710), - [anon_sym___fastcall] = ACTIONS(2710), - [anon_sym___thiscall] = ACTIONS(2710), - [anon_sym___vectorcall] = ACTIONS(2710), - [anon_sym_LBRACE] = ACTIONS(2712), - [anon_sym_RBRACE] = ACTIONS(2712), - [anon_sym_LBRACK] = ACTIONS(2710), - [anon_sym_static] = ACTIONS(2710), - [anon_sym_register] = ACTIONS(2710), - [anon_sym_inline] = ACTIONS(2710), - [anon_sym_thread_local] = ACTIONS(2710), - [anon_sym_const] = ACTIONS(2710), - [anon_sym_volatile] = ACTIONS(2710), - [anon_sym_restrict] = ACTIONS(2710), - [anon_sym__Atomic] = ACTIONS(2710), - [anon_sym_mutable] = ACTIONS(2710), - [anon_sym_constexpr] = ACTIONS(2710), - [anon_sym_constinit] = ACTIONS(2710), - [anon_sym_consteval] = ACTIONS(2710), - [anon_sym_signed] = ACTIONS(2710), - [anon_sym_unsigned] = ACTIONS(2710), - [anon_sym_long] = ACTIONS(2710), - [anon_sym_short] = ACTIONS(2710), - [sym_primitive_type] = ACTIONS(2710), - [anon_sym_enum] = ACTIONS(2710), - [anon_sym_class] = ACTIONS(2710), - [anon_sym_struct] = ACTIONS(2710), - [anon_sym_union] = ACTIONS(2710), - [anon_sym_if] = ACTIONS(2710), - [anon_sym_switch] = ACTIONS(2710), - [anon_sym_case] = ACTIONS(2710), - [anon_sym_default] = ACTIONS(2710), - [anon_sym_while] = ACTIONS(2710), - [anon_sym_do] = ACTIONS(2710), - [anon_sym_for] = ACTIONS(2710), - [anon_sym_return] = ACTIONS(2710), - [anon_sym_break] = ACTIONS(2710), - [anon_sym_continue] = ACTIONS(2710), - [anon_sym_goto] = ACTIONS(2710), - [anon_sym_not] = ACTIONS(2710), - [anon_sym_compl] = ACTIONS(2710), - [anon_sym_DASH_DASH] = ACTIONS(2712), - [anon_sym_PLUS_PLUS] = ACTIONS(2712), - [anon_sym_sizeof] = ACTIONS(2710), - [sym_number_literal] = ACTIONS(2712), - [anon_sym_L_SQUOTE] = ACTIONS(2712), - [anon_sym_u_SQUOTE] = ACTIONS(2712), - [anon_sym_U_SQUOTE] = ACTIONS(2712), - [anon_sym_u8_SQUOTE] = ACTIONS(2712), - [anon_sym_SQUOTE] = ACTIONS(2712), - [anon_sym_L_DQUOTE] = ACTIONS(2712), - [anon_sym_u_DQUOTE] = ACTIONS(2712), - [anon_sym_U_DQUOTE] = ACTIONS(2712), - [anon_sym_u8_DQUOTE] = ACTIONS(2712), - [anon_sym_DQUOTE] = ACTIONS(2712), - [sym_true] = ACTIONS(2710), - [sym_false] = ACTIONS(2710), - [sym_null] = ACTIONS(2710), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2710), - [anon_sym_decltype] = ACTIONS(2710), - [anon_sym_virtual] = ACTIONS(2710), - [anon_sym_explicit] = ACTIONS(2710), - [anon_sym_typename] = ACTIONS(2710), - [anon_sym_template] = ACTIONS(2710), - [anon_sym_operator] = ACTIONS(2710), - [anon_sym_try] = ACTIONS(2710), - [anon_sym_delete] = ACTIONS(2710), - [anon_sym_throw] = ACTIONS(2710), - [anon_sym_namespace] = ACTIONS(2710), - [anon_sym_using] = ACTIONS(2710), - [anon_sym_static_assert] = ACTIONS(2710), - [anon_sym_concept] = ACTIONS(2710), - [anon_sym_co_return] = ACTIONS(2710), - [anon_sym_co_yield] = ACTIONS(2710), - [anon_sym_R_DQUOTE] = ACTIONS(2712), - [anon_sym_LR_DQUOTE] = ACTIONS(2712), - [anon_sym_uR_DQUOTE] = ACTIONS(2712), - [anon_sym_UR_DQUOTE] = ACTIONS(2712), - [anon_sym_u8R_DQUOTE] = ACTIONS(2712), - [anon_sym_co_await] = ACTIONS(2710), - [anon_sym_new] = ACTIONS(2710), - [anon_sym_requires] = ACTIONS(2710), - [sym_this] = ACTIONS(2710), - [sym_nullptr] = ACTIONS(2710), - }, - [921] = { - [ts_builtin_sym_end] = ACTIONS(2688), - [sym_identifier] = ACTIONS(2686), - [aux_sym_preproc_include_token1] = ACTIONS(2686), - [aux_sym_preproc_def_token1] = ACTIONS(2686), - [aux_sym_preproc_if_token1] = ACTIONS(2686), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2686), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2686), - [sym_preproc_directive] = ACTIONS(2686), - [anon_sym_LPAREN2] = ACTIONS(2688), - [anon_sym_BANG] = ACTIONS(2688), - [anon_sym_TILDE] = ACTIONS(2688), - [anon_sym_DASH] = ACTIONS(2686), - [anon_sym_PLUS] = ACTIONS(2686), - [anon_sym_STAR] = ACTIONS(2688), - [anon_sym_AMP_AMP] = ACTIONS(2688), - [anon_sym_AMP] = ACTIONS(2686), - [anon_sym_SEMI] = ACTIONS(2688), - [anon_sym_typedef] = ACTIONS(2686), - [anon_sym_extern] = ACTIONS(2686), - [anon_sym___attribute__] = ACTIONS(2686), - [anon_sym_COLON_COLON] = ACTIONS(2688), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2688), - [anon_sym___declspec] = ACTIONS(2686), - [anon_sym___based] = ACTIONS(2686), - [anon_sym___cdecl] = ACTIONS(2686), - [anon_sym___clrcall] = ACTIONS(2686), - [anon_sym___stdcall] = ACTIONS(2686), - [anon_sym___fastcall] = ACTIONS(2686), - [anon_sym___thiscall] = ACTIONS(2686), - [anon_sym___vectorcall] = ACTIONS(2686), - [anon_sym_LBRACE] = ACTIONS(2688), - [anon_sym_LBRACK] = ACTIONS(2686), - [anon_sym_static] = ACTIONS(2686), - [anon_sym_register] = ACTIONS(2686), - [anon_sym_inline] = ACTIONS(2686), - [anon_sym_thread_local] = ACTIONS(2686), - [anon_sym_const] = ACTIONS(2686), - [anon_sym_volatile] = ACTIONS(2686), - [anon_sym_restrict] = ACTIONS(2686), - [anon_sym__Atomic] = ACTIONS(2686), - [anon_sym_mutable] = ACTIONS(2686), - [anon_sym_constexpr] = ACTIONS(2686), - [anon_sym_constinit] = ACTIONS(2686), - [anon_sym_consteval] = ACTIONS(2686), - [anon_sym_signed] = ACTIONS(2686), - [anon_sym_unsigned] = ACTIONS(2686), - [anon_sym_long] = ACTIONS(2686), - [anon_sym_short] = ACTIONS(2686), - [sym_primitive_type] = ACTIONS(2686), - [anon_sym_enum] = ACTIONS(2686), - [anon_sym_class] = ACTIONS(2686), - [anon_sym_struct] = ACTIONS(2686), - [anon_sym_union] = ACTIONS(2686), - [anon_sym_if] = ACTIONS(2686), - [anon_sym_switch] = ACTIONS(2686), - [anon_sym_case] = ACTIONS(2686), - [anon_sym_default] = ACTIONS(2686), - [anon_sym_while] = ACTIONS(2686), - [anon_sym_do] = ACTIONS(2686), - [anon_sym_for] = ACTIONS(2686), - [anon_sym_return] = ACTIONS(2686), - [anon_sym_break] = ACTIONS(2686), - [anon_sym_continue] = ACTIONS(2686), - [anon_sym_goto] = ACTIONS(2686), - [anon_sym_not] = ACTIONS(2686), - [anon_sym_compl] = ACTIONS(2686), - [anon_sym_DASH_DASH] = ACTIONS(2688), - [anon_sym_PLUS_PLUS] = ACTIONS(2688), - [anon_sym_sizeof] = ACTIONS(2686), - [sym_number_literal] = ACTIONS(2688), - [anon_sym_L_SQUOTE] = ACTIONS(2688), - [anon_sym_u_SQUOTE] = ACTIONS(2688), - [anon_sym_U_SQUOTE] = ACTIONS(2688), - [anon_sym_u8_SQUOTE] = ACTIONS(2688), - [anon_sym_SQUOTE] = ACTIONS(2688), - [anon_sym_L_DQUOTE] = ACTIONS(2688), - [anon_sym_u_DQUOTE] = ACTIONS(2688), - [anon_sym_U_DQUOTE] = ACTIONS(2688), - [anon_sym_u8_DQUOTE] = ACTIONS(2688), - [anon_sym_DQUOTE] = ACTIONS(2688), - [sym_true] = ACTIONS(2686), - [sym_false] = ACTIONS(2686), - [sym_null] = ACTIONS(2686), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2686), - [anon_sym_decltype] = ACTIONS(2686), - [anon_sym_virtual] = ACTIONS(2686), - [anon_sym_explicit] = ACTIONS(2686), - [anon_sym_typename] = ACTIONS(2686), - [anon_sym_template] = ACTIONS(2686), - [anon_sym_operator] = ACTIONS(2686), - [anon_sym_try] = ACTIONS(2686), - [anon_sym_delete] = ACTIONS(2686), - [anon_sym_throw] = ACTIONS(2686), - [anon_sym_namespace] = ACTIONS(2686), - [anon_sym_using] = ACTIONS(2686), - [anon_sym_static_assert] = ACTIONS(2686), - [anon_sym_concept] = ACTIONS(2686), - [anon_sym_co_return] = ACTIONS(2686), - [anon_sym_co_yield] = ACTIONS(2686), - [anon_sym_R_DQUOTE] = ACTIONS(2688), - [anon_sym_LR_DQUOTE] = ACTIONS(2688), - [anon_sym_uR_DQUOTE] = ACTIONS(2688), - [anon_sym_UR_DQUOTE] = ACTIONS(2688), - [anon_sym_u8R_DQUOTE] = ACTIONS(2688), - [anon_sym_co_await] = ACTIONS(2686), - [anon_sym_new] = ACTIONS(2686), - [anon_sym_requires] = ACTIONS(2686), - [sym_this] = ACTIONS(2686), - [sym_nullptr] = ACTIONS(2686), - }, - [922] = { - [ts_builtin_sym_end] = ACTIONS(2820), - [sym_identifier] = ACTIONS(2818), - [aux_sym_preproc_include_token1] = ACTIONS(2818), - [aux_sym_preproc_def_token1] = ACTIONS(2818), - [aux_sym_preproc_if_token1] = ACTIONS(2818), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2818), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2818), - [sym_preproc_directive] = ACTIONS(2818), - [anon_sym_LPAREN2] = ACTIONS(2820), - [anon_sym_BANG] = ACTIONS(2820), - [anon_sym_TILDE] = ACTIONS(2820), - [anon_sym_DASH] = ACTIONS(2818), - [anon_sym_PLUS] = ACTIONS(2818), - [anon_sym_STAR] = ACTIONS(2820), - [anon_sym_AMP_AMP] = ACTIONS(2820), - [anon_sym_AMP] = ACTIONS(2818), - [anon_sym_SEMI] = ACTIONS(2820), - [anon_sym_typedef] = ACTIONS(2818), - [anon_sym_extern] = ACTIONS(2818), - [anon_sym___attribute__] = ACTIONS(2818), - [anon_sym_COLON_COLON] = ACTIONS(2820), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2820), - [anon_sym___declspec] = ACTIONS(2818), - [anon_sym___based] = ACTIONS(2818), - [anon_sym___cdecl] = ACTIONS(2818), - [anon_sym___clrcall] = ACTIONS(2818), - [anon_sym___stdcall] = ACTIONS(2818), - [anon_sym___fastcall] = ACTIONS(2818), - [anon_sym___thiscall] = ACTIONS(2818), - [anon_sym___vectorcall] = ACTIONS(2818), - [anon_sym_LBRACE] = ACTIONS(2820), - [anon_sym_LBRACK] = ACTIONS(2818), - [anon_sym_static] = ACTIONS(2818), - [anon_sym_register] = ACTIONS(2818), - [anon_sym_inline] = ACTIONS(2818), - [anon_sym_thread_local] = ACTIONS(2818), - [anon_sym_const] = ACTIONS(2818), - [anon_sym_volatile] = ACTIONS(2818), - [anon_sym_restrict] = ACTIONS(2818), - [anon_sym__Atomic] = ACTIONS(2818), - [anon_sym_mutable] = ACTIONS(2818), - [anon_sym_constexpr] = ACTIONS(2818), - [anon_sym_constinit] = ACTIONS(2818), - [anon_sym_consteval] = ACTIONS(2818), - [anon_sym_signed] = ACTIONS(2818), - [anon_sym_unsigned] = ACTIONS(2818), - [anon_sym_long] = ACTIONS(2818), - [anon_sym_short] = ACTIONS(2818), - [sym_primitive_type] = ACTIONS(2818), - [anon_sym_enum] = ACTIONS(2818), - [anon_sym_class] = ACTIONS(2818), - [anon_sym_struct] = ACTIONS(2818), - [anon_sym_union] = ACTIONS(2818), - [anon_sym_if] = ACTIONS(2818), - [anon_sym_switch] = ACTIONS(2818), - [anon_sym_case] = ACTIONS(2818), - [anon_sym_default] = ACTIONS(2818), - [anon_sym_while] = ACTIONS(2818), - [anon_sym_do] = ACTIONS(2818), - [anon_sym_for] = ACTIONS(2818), - [anon_sym_return] = ACTIONS(2818), - [anon_sym_break] = ACTIONS(2818), - [anon_sym_continue] = ACTIONS(2818), - [anon_sym_goto] = ACTIONS(2818), - [anon_sym_not] = ACTIONS(2818), - [anon_sym_compl] = ACTIONS(2818), - [anon_sym_DASH_DASH] = ACTIONS(2820), - [anon_sym_PLUS_PLUS] = ACTIONS(2820), - [anon_sym_sizeof] = ACTIONS(2818), - [sym_number_literal] = ACTIONS(2820), - [anon_sym_L_SQUOTE] = ACTIONS(2820), - [anon_sym_u_SQUOTE] = ACTIONS(2820), - [anon_sym_U_SQUOTE] = ACTIONS(2820), - [anon_sym_u8_SQUOTE] = ACTIONS(2820), - [anon_sym_SQUOTE] = ACTIONS(2820), - [anon_sym_L_DQUOTE] = ACTIONS(2820), - [anon_sym_u_DQUOTE] = ACTIONS(2820), - [anon_sym_U_DQUOTE] = ACTIONS(2820), - [anon_sym_u8_DQUOTE] = ACTIONS(2820), - [anon_sym_DQUOTE] = ACTIONS(2820), - [sym_true] = ACTIONS(2818), - [sym_false] = ACTIONS(2818), - [sym_null] = ACTIONS(2818), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2818), - [anon_sym_decltype] = ACTIONS(2818), - [anon_sym_virtual] = ACTIONS(2818), - [anon_sym_explicit] = ACTIONS(2818), - [anon_sym_typename] = ACTIONS(2818), - [anon_sym_template] = ACTIONS(2818), - [anon_sym_operator] = ACTIONS(2818), - [anon_sym_try] = ACTIONS(2818), - [anon_sym_delete] = ACTIONS(2818), - [anon_sym_throw] = ACTIONS(2818), - [anon_sym_namespace] = ACTIONS(2818), - [anon_sym_using] = ACTIONS(2818), - [anon_sym_static_assert] = ACTIONS(2818), - [anon_sym_concept] = ACTIONS(2818), - [anon_sym_co_return] = ACTIONS(2818), - [anon_sym_co_yield] = ACTIONS(2818), - [anon_sym_R_DQUOTE] = ACTIONS(2820), - [anon_sym_LR_DQUOTE] = ACTIONS(2820), - [anon_sym_uR_DQUOTE] = ACTIONS(2820), - [anon_sym_UR_DQUOTE] = ACTIONS(2820), - [anon_sym_u8R_DQUOTE] = ACTIONS(2820), - [anon_sym_co_await] = ACTIONS(2818), - [anon_sym_new] = ACTIONS(2818), - [anon_sym_requires] = ACTIONS(2818), - [sym_this] = ACTIONS(2818), - [sym_nullptr] = ACTIONS(2818), - }, - [923] = { - [sym_identifier] = ACTIONS(2730), - [aux_sym_preproc_include_token1] = ACTIONS(2730), - [aux_sym_preproc_def_token1] = ACTIONS(2730), - [aux_sym_preproc_if_token1] = ACTIONS(2730), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2730), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2730), - [sym_preproc_directive] = ACTIONS(2730), - [anon_sym_LPAREN2] = ACTIONS(2732), - [anon_sym_BANG] = ACTIONS(2732), - [anon_sym_TILDE] = ACTIONS(2732), - [anon_sym_DASH] = ACTIONS(2730), - [anon_sym_PLUS] = ACTIONS(2730), - [anon_sym_STAR] = ACTIONS(2732), - [anon_sym_AMP_AMP] = ACTIONS(2732), - [anon_sym_AMP] = ACTIONS(2730), - [anon_sym_SEMI] = ACTIONS(2732), - [anon_sym_typedef] = ACTIONS(2730), - [anon_sym_extern] = ACTIONS(2730), - [anon_sym___attribute__] = ACTIONS(2730), - [anon_sym_COLON_COLON] = ACTIONS(2732), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2732), - [anon_sym___declspec] = ACTIONS(2730), - [anon_sym___based] = ACTIONS(2730), - [anon_sym___cdecl] = ACTIONS(2730), - [anon_sym___clrcall] = ACTIONS(2730), - [anon_sym___stdcall] = ACTIONS(2730), - [anon_sym___fastcall] = ACTIONS(2730), - [anon_sym___thiscall] = ACTIONS(2730), - [anon_sym___vectorcall] = ACTIONS(2730), - [anon_sym_LBRACE] = ACTIONS(2732), - [anon_sym_RBRACE] = ACTIONS(2732), - [anon_sym_LBRACK] = ACTIONS(2730), - [anon_sym_static] = ACTIONS(2730), - [anon_sym_register] = ACTIONS(2730), - [anon_sym_inline] = ACTIONS(2730), - [anon_sym_thread_local] = ACTIONS(2730), - [anon_sym_const] = ACTIONS(2730), - [anon_sym_volatile] = ACTIONS(2730), - [anon_sym_restrict] = ACTIONS(2730), - [anon_sym__Atomic] = ACTIONS(2730), - [anon_sym_mutable] = ACTIONS(2730), - [anon_sym_constexpr] = ACTIONS(2730), - [anon_sym_constinit] = ACTIONS(2730), - [anon_sym_consteval] = ACTIONS(2730), - [anon_sym_signed] = ACTIONS(2730), - [anon_sym_unsigned] = ACTIONS(2730), - [anon_sym_long] = ACTIONS(2730), - [anon_sym_short] = ACTIONS(2730), - [sym_primitive_type] = ACTIONS(2730), - [anon_sym_enum] = ACTIONS(2730), - [anon_sym_class] = ACTIONS(2730), - [anon_sym_struct] = ACTIONS(2730), - [anon_sym_union] = ACTIONS(2730), - [anon_sym_if] = ACTIONS(2730), - [anon_sym_switch] = ACTIONS(2730), - [anon_sym_case] = ACTIONS(2730), - [anon_sym_default] = ACTIONS(2730), - [anon_sym_while] = ACTIONS(2730), - [anon_sym_do] = ACTIONS(2730), - [anon_sym_for] = ACTIONS(2730), - [anon_sym_return] = ACTIONS(2730), - [anon_sym_break] = ACTIONS(2730), - [anon_sym_continue] = ACTIONS(2730), - [anon_sym_goto] = ACTIONS(2730), - [anon_sym_not] = ACTIONS(2730), - [anon_sym_compl] = ACTIONS(2730), - [anon_sym_DASH_DASH] = ACTIONS(2732), - [anon_sym_PLUS_PLUS] = ACTIONS(2732), - [anon_sym_sizeof] = ACTIONS(2730), - [sym_number_literal] = ACTIONS(2732), - [anon_sym_L_SQUOTE] = ACTIONS(2732), - [anon_sym_u_SQUOTE] = ACTIONS(2732), - [anon_sym_U_SQUOTE] = ACTIONS(2732), - [anon_sym_u8_SQUOTE] = ACTIONS(2732), - [anon_sym_SQUOTE] = ACTIONS(2732), - [anon_sym_L_DQUOTE] = ACTIONS(2732), - [anon_sym_u_DQUOTE] = ACTIONS(2732), - [anon_sym_U_DQUOTE] = ACTIONS(2732), - [anon_sym_u8_DQUOTE] = ACTIONS(2732), - [anon_sym_DQUOTE] = ACTIONS(2732), - [sym_true] = ACTIONS(2730), - [sym_false] = ACTIONS(2730), - [sym_null] = ACTIONS(2730), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2730), - [anon_sym_decltype] = ACTIONS(2730), - [anon_sym_virtual] = ACTIONS(2730), - [anon_sym_explicit] = ACTIONS(2730), - [anon_sym_typename] = ACTIONS(2730), - [anon_sym_template] = ACTIONS(2730), - [anon_sym_operator] = ACTIONS(2730), - [anon_sym_try] = ACTIONS(2730), - [anon_sym_delete] = ACTIONS(2730), - [anon_sym_throw] = ACTIONS(2730), - [anon_sym_namespace] = ACTIONS(2730), - [anon_sym_using] = ACTIONS(2730), - [anon_sym_static_assert] = ACTIONS(2730), - [anon_sym_concept] = ACTIONS(2730), - [anon_sym_co_return] = ACTIONS(2730), - [anon_sym_co_yield] = ACTIONS(2730), - [anon_sym_R_DQUOTE] = ACTIONS(2732), - [anon_sym_LR_DQUOTE] = ACTIONS(2732), - [anon_sym_uR_DQUOTE] = ACTIONS(2732), - [anon_sym_UR_DQUOTE] = ACTIONS(2732), - [anon_sym_u8R_DQUOTE] = ACTIONS(2732), - [anon_sym_co_await] = ACTIONS(2730), - [anon_sym_new] = ACTIONS(2730), - [anon_sym_requires] = ACTIONS(2730), - [sym_this] = ACTIONS(2730), - [sym_nullptr] = ACTIONS(2730), - }, - [924] = { - [sym_identifier] = ACTIONS(2734), - [aux_sym_preproc_include_token1] = ACTIONS(2734), - [aux_sym_preproc_def_token1] = ACTIONS(2734), - [aux_sym_preproc_if_token1] = ACTIONS(2734), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2734), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2734), - [sym_preproc_directive] = ACTIONS(2734), - [anon_sym_LPAREN2] = ACTIONS(2736), - [anon_sym_BANG] = ACTIONS(2736), - [anon_sym_TILDE] = ACTIONS(2736), - [anon_sym_DASH] = ACTIONS(2734), - [anon_sym_PLUS] = ACTIONS(2734), - [anon_sym_STAR] = ACTIONS(2736), - [anon_sym_AMP_AMP] = ACTIONS(2736), - [anon_sym_AMP] = ACTIONS(2734), - [anon_sym_SEMI] = ACTIONS(2736), - [anon_sym_typedef] = ACTIONS(2734), - [anon_sym_extern] = ACTIONS(2734), - [anon_sym___attribute__] = ACTIONS(2734), - [anon_sym_COLON_COLON] = ACTIONS(2736), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2736), - [anon_sym___declspec] = ACTIONS(2734), - [anon_sym___based] = ACTIONS(2734), - [anon_sym___cdecl] = ACTIONS(2734), - [anon_sym___clrcall] = ACTIONS(2734), - [anon_sym___stdcall] = ACTIONS(2734), - [anon_sym___fastcall] = ACTIONS(2734), - [anon_sym___thiscall] = ACTIONS(2734), - [anon_sym___vectorcall] = ACTIONS(2734), - [anon_sym_LBRACE] = ACTIONS(2736), - [anon_sym_RBRACE] = ACTIONS(2736), - [anon_sym_LBRACK] = ACTIONS(2734), - [anon_sym_static] = ACTIONS(2734), - [anon_sym_register] = ACTIONS(2734), - [anon_sym_inline] = ACTIONS(2734), - [anon_sym_thread_local] = ACTIONS(2734), - [anon_sym_const] = ACTIONS(2734), - [anon_sym_volatile] = ACTIONS(2734), - [anon_sym_restrict] = ACTIONS(2734), - [anon_sym__Atomic] = ACTIONS(2734), - [anon_sym_mutable] = ACTIONS(2734), - [anon_sym_constexpr] = ACTIONS(2734), - [anon_sym_constinit] = ACTIONS(2734), - [anon_sym_consteval] = ACTIONS(2734), - [anon_sym_signed] = ACTIONS(2734), - [anon_sym_unsigned] = ACTIONS(2734), - [anon_sym_long] = ACTIONS(2734), - [anon_sym_short] = ACTIONS(2734), - [sym_primitive_type] = ACTIONS(2734), - [anon_sym_enum] = ACTIONS(2734), - [anon_sym_class] = ACTIONS(2734), - [anon_sym_struct] = ACTIONS(2734), - [anon_sym_union] = ACTIONS(2734), - [anon_sym_if] = ACTIONS(2734), - [anon_sym_switch] = ACTIONS(2734), - [anon_sym_case] = ACTIONS(2734), - [anon_sym_default] = ACTIONS(2734), - [anon_sym_while] = ACTIONS(2734), - [anon_sym_do] = ACTIONS(2734), - [anon_sym_for] = ACTIONS(2734), - [anon_sym_return] = ACTIONS(2734), - [anon_sym_break] = ACTIONS(2734), - [anon_sym_continue] = ACTIONS(2734), - [anon_sym_goto] = ACTIONS(2734), - [anon_sym_not] = ACTIONS(2734), - [anon_sym_compl] = ACTIONS(2734), - [anon_sym_DASH_DASH] = ACTIONS(2736), - [anon_sym_PLUS_PLUS] = ACTIONS(2736), - [anon_sym_sizeof] = ACTIONS(2734), - [sym_number_literal] = ACTIONS(2736), - [anon_sym_L_SQUOTE] = ACTIONS(2736), - [anon_sym_u_SQUOTE] = ACTIONS(2736), - [anon_sym_U_SQUOTE] = ACTIONS(2736), - [anon_sym_u8_SQUOTE] = ACTIONS(2736), - [anon_sym_SQUOTE] = ACTIONS(2736), - [anon_sym_L_DQUOTE] = ACTIONS(2736), - [anon_sym_u_DQUOTE] = ACTIONS(2736), - [anon_sym_U_DQUOTE] = ACTIONS(2736), - [anon_sym_u8_DQUOTE] = ACTIONS(2736), - [anon_sym_DQUOTE] = ACTIONS(2736), - [sym_true] = ACTIONS(2734), - [sym_false] = ACTIONS(2734), - [sym_null] = ACTIONS(2734), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2734), - [anon_sym_decltype] = ACTIONS(2734), - [anon_sym_virtual] = ACTIONS(2734), - [anon_sym_explicit] = ACTIONS(2734), - [anon_sym_typename] = ACTIONS(2734), - [anon_sym_template] = ACTIONS(2734), - [anon_sym_operator] = ACTIONS(2734), - [anon_sym_try] = ACTIONS(2734), - [anon_sym_delete] = ACTIONS(2734), - [anon_sym_throw] = ACTIONS(2734), - [anon_sym_namespace] = ACTIONS(2734), - [anon_sym_using] = ACTIONS(2734), - [anon_sym_static_assert] = ACTIONS(2734), - [anon_sym_concept] = ACTIONS(2734), - [anon_sym_co_return] = ACTIONS(2734), - [anon_sym_co_yield] = ACTIONS(2734), - [anon_sym_R_DQUOTE] = ACTIONS(2736), - [anon_sym_LR_DQUOTE] = ACTIONS(2736), - [anon_sym_uR_DQUOTE] = ACTIONS(2736), - [anon_sym_UR_DQUOTE] = ACTIONS(2736), - [anon_sym_u8R_DQUOTE] = ACTIONS(2736), - [anon_sym_co_await] = ACTIONS(2734), - [anon_sym_new] = ACTIONS(2734), - [anon_sym_requires] = ACTIONS(2734), - [sym_this] = ACTIONS(2734), - [sym_nullptr] = ACTIONS(2734), - }, - [925] = { - [sym_identifier] = ACTIONS(2852), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2854), - [anon_sym_AMP] = ACTIONS(2852), - [anon_sym_SEMI] = ACTIONS(2854), - [anon_sym_typedef] = ACTIONS(2852), - [anon_sym_extern] = ACTIONS(2852), - [anon_sym___attribute__] = ACTIONS(2852), - [anon_sym_COLON_COLON] = ACTIONS(2854), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2854), - [anon_sym___declspec] = ACTIONS(2852), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2852), - [anon_sym_static] = ACTIONS(2852), - [anon_sym_register] = ACTIONS(2852), - [anon_sym_inline] = ACTIONS(2852), - [anon_sym_thread_local] = ACTIONS(2852), - [anon_sym_const] = ACTIONS(2852), - [anon_sym_volatile] = ACTIONS(2852), - [anon_sym_restrict] = ACTIONS(2852), - [anon_sym__Atomic] = ACTIONS(2852), - [anon_sym_mutable] = ACTIONS(2852), - [anon_sym_constexpr] = ACTIONS(2852), - [anon_sym_constinit] = ACTIONS(2852), - [anon_sym_consteval] = ACTIONS(2852), - [anon_sym_signed] = ACTIONS(2852), - [anon_sym_unsigned] = ACTIONS(2852), - [anon_sym_long] = ACTIONS(2852), - [anon_sym_short] = ACTIONS(2852), - [sym_primitive_type] = ACTIONS(2852), - [anon_sym_enum] = ACTIONS(2852), - [anon_sym_class] = 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_return] = ACTIONS(2852), - [anon_sym_break] = ACTIONS(2852), - [anon_sym_continue] = ACTIONS(2852), - [anon_sym_goto] = ACTIONS(2852), - [anon_sym_not] = ACTIONS(2852), - [anon_sym_compl] = ACTIONS(2852), - [anon_sym_DASH_DASH] = ACTIONS(2854), - [anon_sym_PLUS_PLUS] = ACTIONS(2854), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2854), - [anon_sym_u_DQUOTE] = ACTIONS(2854), - [anon_sym_U_DQUOTE] = ACTIONS(2854), - [anon_sym_u8_DQUOTE] = ACTIONS(2854), - [anon_sym_DQUOTE] = ACTIONS(2854), - [sym_true] = ACTIONS(2852), - [sym_false] = ACTIONS(2852), - [sym_null] = ACTIONS(2852), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2852), - [anon_sym_decltype] = ACTIONS(2852), - [anon_sym_virtual] = ACTIONS(2852), - [anon_sym_explicit] = ACTIONS(2852), - [anon_sym_typename] = ACTIONS(2852), - [anon_sym_template] = ACTIONS(2852), - [anon_sym_operator] = ACTIONS(2852), - [anon_sym_try] = ACTIONS(2852), - [anon_sym_delete] = ACTIONS(2852), - [anon_sym_throw] = ACTIONS(2852), - [anon_sym_namespace] = ACTIONS(2852), - [anon_sym_using] = ACTIONS(2852), - [anon_sym_static_assert] = ACTIONS(2852), - [anon_sym_concept] = ACTIONS(2852), - [anon_sym_co_return] = ACTIONS(2852), - [anon_sym_co_yield] = ACTIONS(2852), - [anon_sym_R_DQUOTE] = ACTIONS(2854), - [anon_sym_LR_DQUOTE] = ACTIONS(2854), - [anon_sym_uR_DQUOTE] = ACTIONS(2854), - [anon_sym_UR_DQUOTE] = ACTIONS(2854), - [anon_sym_u8R_DQUOTE] = ACTIONS(2854), - [anon_sym_co_await] = ACTIONS(2852), - [anon_sym_new] = ACTIONS(2852), - [anon_sym_requires] = ACTIONS(2852), - [sym_this] = ACTIONS(2852), - [sym_nullptr] = ACTIONS(2852), - }, - [926] = { - [sym_identifier] = ACTIONS(2738), - [aux_sym_preproc_include_token1] = ACTIONS(2738), - [aux_sym_preproc_def_token1] = ACTIONS(2738), - [aux_sym_preproc_if_token1] = ACTIONS(2738), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2738), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2738), - [sym_preproc_directive] = ACTIONS(2738), - [anon_sym_LPAREN2] = ACTIONS(2740), - [anon_sym_BANG] = ACTIONS(2740), - [anon_sym_TILDE] = ACTIONS(2740), - [anon_sym_DASH] = ACTIONS(2738), - [anon_sym_PLUS] = ACTIONS(2738), - [anon_sym_STAR] = ACTIONS(2740), - [anon_sym_AMP_AMP] = ACTIONS(2740), - [anon_sym_AMP] = ACTIONS(2738), - [anon_sym_SEMI] = ACTIONS(2740), - [anon_sym_typedef] = ACTIONS(2738), - [anon_sym_extern] = ACTIONS(2738), - [anon_sym___attribute__] = ACTIONS(2738), - [anon_sym_COLON_COLON] = ACTIONS(2740), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2740), - [anon_sym___declspec] = ACTIONS(2738), - [anon_sym___based] = ACTIONS(2738), - [anon_sym___cdecl] = ACTIONS(2738), - [anon_sym___clrcall] = ACTIONS(2738), - [anon_sym___stdcall] = ACTIONS(2738), - [anon_sym___fastcall] = ACTIONS(2738), - [anon_sym___thiscall] = ACTIONS(2738), - [anon_sym___vectorcall] = ACTIONS(2738), - [anon_sym_LBRACE] = ACTIONS(2740), - [anon_sym_RBRACE] = ACTIONS(2740), - [anon_sym_LBRACK] = ACTIONS(2738), - [anon_sym_static] = ACTIONS(2738), - [anon_sym_register] = ACTIONS(2738), - [anon_sym_inline] = ACTIONS(2738), - [anon_sym_thread_local] = ACTIONS(2738), - [anon_sym_const] = ACTIONS(2738), - [anon_sym_volatile] = ACTIONS(2738), - [anon_sym_restrict] = ACTIONS(2738), - [anon_sym__Atomic] = ACTIONS(2738), - [anon_sym_mutable] = ACTIONS(2738), - [anon_sym_constexpr] = ACTIONS(2738), - [anon_sym_constinit] = ACTIONS(2738), - [anon_sym_consteval] = ACTIONS(2738), - [anon_sym_signed] = ACTIONS(2738), - [anon_sym_unsigned] = ACTIONS(2738), - [anon_sym_long] = ACTIONS(2738), - [anon_sym_short] = ACTIONS(2738), - [sym_primitive_type] = ACTIONS(2738), - [anon_sym_enum] = ACTIONS(2738), - [anon_sym_class] = ACTIONS(2738), - [anon_sym_struct] = ACTIONS(2738), - [anon_sym_union] = ACTIONS(2738), - [anon_sym_if] = ACTIONS(2738), - [anon_sym_switch] = ACTIONS(2738), - [anon_sym_case] = ACTIONS(2738), - [anon_sym_default] = ACTIONS(2738), - [anon_sym_while] = ACTIONS(2738), - [anon_sym_do] = ACTIONS(2738), - [anon_sym_for] = ACTIONS(2738), - [anon_sym_return] = ACTIONS(2738), - [anon_sym_break] = ACTIONS(2738), - [anon_sym_continue] = ACTIONS(2738), - [anon_sym_goto] = ACTIONS(2738), - [anon_sym_not] = ACTIONS(2738), - [anon_sym_compl] = ACTIONS(2738), - [anon_sym_DASH_DASH] = ACTIONS(2740), - [anon_sym_PLUS_PLUS] = ACTIONS(2740), - [anon_sym_sizeof] = ACTIONS(2738), - [sym_number_literal] = ACTIONS(2740), - [anon_sym_L_SQUOTE] = ACTIONS(2740), - [anon_sym_u_SQUOTE] = ACTIONS(2740), - [anon_sym_U_SQUOTE] = ACTIONS(2740), - [anon_sym_u8_SQUOTE] = ACTIONS(2740), - [anon_sym_SQUOTE] = ACTIONS(2740), - [anon_sym_L_DQUOTE] = ACTIONS(2740), - [anon_sym_u_DQUOTE] = ACTIONS(2740), - [anon_sym_U_DQUOTE] = ACTIONS(2740), - [anon_sym_u8_DQUOTE] = ACTIONS(2740), - [anon_sym_DQUOTE] = ACTIONS(2740), - [sym_true] = ACTIONS(2738), - [sym_false] = ACTIONS(2738), - [sym_null] = ACTIONS(2738), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2738), - [anon_sym_decltype] = ACTIONS(2738), - [anon_sym_virtual] = ACTIONS(2738), - [anon_sym_explicit] = ACTIONS(2738), - [anon_sym_typename] = ACTIONS(2738), - [anon_sym_template] = ACTIONS(2738), - [anon_sym_operator] = ACTIONS(2738), - [anon_sym_try] = ACTIONS(2738), - [anon_sym_delete] = ACTIONS(2738), - [anon_sym_throw] = ACTIONS(2738), - [anon_sym_namespace] = ACTIONS(2738), - [anon_sym_using] = ACTIONS(2738), - [anon_sym_static_assert] = ACTIONS(2738), - [anon_sym_concept] = ACTIONS(2738), - [anon_sym_co_return] = ACTIONS(2738), - [anon_sym_co_yield] = ACTIONS(2738), - [anon_sym_R_DQUOTE] = ACTIONS(2740), - [anon_sym_LR_DQUOTE] = ACTIONS(2740), - [anon_sym_uR_DQUOTE] = ACTIONS(2740), - [anon_sym_UR_DQUOTE] = ACTIONS(2740), - [anon_sym_u8R_DQUOTE] = ACTIONS(2740), - [anon_sym_co_await] = ACTIONS(2738), - [anon_sym_new] = ACTIONS(2738), - [anon_sym_requires] = ACTIONS(2738), - [sym_this] = ACTIONS(2738), - [sym_nullptr] = ACTIONS(2738), - }, - [927] = { - [sym_identifier] = ACTIONS(2742), - [aux_sym_preproc_include_token1] = ACTIONS(2742), - [aux_sym_preproc_def_token1] = ACTIONS(2742), - [aux_sym_preproc_if_token1] = ACTIONS(2742), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2742), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2742), - [sym_preproc_directive] = ACTIONS(2742), - [anon_sym_LPAREN2] = ACTIONS(2744), - [anon_sym_BANG] = ACTIONS(2744), - [anon_sym_TILDE] = ACTIONS(2744), - [anon_sym_DASH] = ACTIONS(2742), - [anon_sym_PLUS] = ACTIONS(2742), - [anon_sym_STAR] = ACTIONS(2744), - [anon_sym_AMP_AMP] = ACTIONS(2744), - [anon_sym_AMP] = ACTIONS(2742), - [anon_sym_SEMI] = ACTIONS(2744), - [anon_sym_typedef] = ACTIONS(2742), - [anon_sym_extern] = ACTIONS(2742), - [anon_sym___attribute__] = ACTIONS(2742), - [anon_sym_COLON_COLON] = ACTIONS(2744), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2744), - [anon_sym___declspec] = ACTIONS(2742), - [anon_sym___based] = ACTIONS(2742), - [anon_sym___cdecl] = ACTIONS(2742), - [anon_sym___clrcall] = ACTIONS(2742), - [anon_sym___stdcall] = ACTIONS(2742), - [anon_sym___fastcall] = ACTIONS(2742), - [anon_sym___thiscall] = ACTIONS(2742), - [anon_sym___vectorcall] = ACTIONS(2742), - [anon_sym_LBRACE] = ACTIONS(2744), - [anon_sym_RBRACE] = ACTIONS(2744), - [anon_sym_LBRACK] = ACTIONS(2742), - [anon_sym_static] = ACTIONS(2742), - [anon_sym_register] = ACTIONS(2742), - [anon_sym_inline] = ACTIONS(2742), - [anon_sym_thread_local] = ACTIONS(2742), - [anon_sym_const] = ACTIONS(2742), - [anon_sym_volatile] = ACTIONS(2742), - [anon_sym_restrict] = ACTIONS(2742), - [anon_sym__Atomic] = ACTIONS(2742), - [anon_sym_mutable] = ACTIONS(2742), - [anon_sym_constexpr] = ACTIONS(2742), - [anon_sym_constinit] = ACTIONS(2742), - [anon_sym_consteval] = ACTIONS(2742), - [anon_sym_signed] = ACTIONS(2742), - [anon_sym_unsigned] = ACTIONS(2742), - [anon_sym_long] = ACTIONS(2742), - [anon_sym_short] = ACTIONS(2742), - [sym_primitive_type] = ACTIONS(2742), - [anon_sym_enum] = ACTIONS(2742), - [anon_sym_class] = ACTIONS(2742), - [anon_sym_struct] = ACTIONS(2742), - [anon_sym_union] = ACTIONS(2742), - [anon_sym_if] = ACTIONS(2742), - [anon_sym_switch] = ACTIONS(2742), - [anon_sym_case] = ACTIONS(2742), - [anon_sym_default] = ACTIONS(2742), - [anon_sym_while] = ACTIONS(2742), - [anon_sym_do] = ACTIONS(2742), - [anon_sym_for] = ACTIONS(2742), - [anon_sym_return] = ACTIONS(2742), - [anon_sym_break] = ACTIONS(2742), - [anon_sym_continue] = ACTIONS(2742), - [anon_sym_goto] = ACTIONS(2742), - [anon_sym_not] = ACTIONS(2742), - [anon_sym_compl] = ACTIONS(2742), - [anon_sym_DASH_DASH] = ACTIONS(2744), - [anon_sym_PLUS_PLUS] = ACTIONS(2744), - [anon_sym_sizeof] = ACTIONS(2742), - [sym_number_literal] = ACTIONS(2744), - [anon_sym_L_SQUOTE] = ACTIONS(2744), - [anon_sym_u_SQUOTE] = ACTIONS(2744), - [anon_sym_U_SQUOTE] = ACTIONS(2744), - [anon_sym_u8_SQUOTE] = ACTIONS(2744), - [anon_sym_SQUOTE] = ACTIONS(2744), - [anon_sym_L_DQUOTE] = ACTIONS(2744), - [anon_sym_u_DQUOTE] = ACTIONS(2744), - [anon_sym_U_DQUOTE] = ACTIONS(2744), - [anon_sym_u8_DQUOTE] = ACTIONS(2744), - [anon_sym_DQUOTE] = ACTIONS(2744), - [sym_true] = ACTIONS(2742), - [sym_false] = ACTIONS(2742), - [sym_null] = ACTIONS(2742), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2742), - [anon_sym_decltype] = ACTIONS(2742), - [anon_sym_virtual] = ACTIONS(2742), - [anon_sym_explicit] = ACTIONS(2742), - [anon_sym_typename] = ACTIONS(2742), - [anon_sym_template] = ACTIONS(2742), - [anon_sym_operator] = ACTIONS(2742), - [anon_sym_try] = ACTIONS(2742), - [anon_sym_delete] = ACTIONS(2742), - [anon_sym_throw] = ACTIONS(2742), - [anon_sym_namespace] = ACTIONS(2742), - [anon_sym_using] = ACTIONS(2742), - [anon_sym_static_assert] = ACTIONS(2742), - [anon_sym_concept] = ACTIONS(2742), - [anon_sym_co_return] = ACTIONS(2742), - [anon_sym_co_yield] = ACTIONS(2742), - [anon_sym_R_DQUOTE] = ACTIONS(2744), - [anon_sym_LR_DQUOTE] = ACTIONS(2744), - [anon_sym_uR_DQUOTE] = ACTIONS(2744), - [anon_sym_UR_DQUOTE] = ACTIONS(2744), - [anon_sym_u8R_DQUOTE] = ACTIONS(2744), - [anon_sym_co_await] = ACTIONS(2742), - [anon_sym_new] = ACTIONS(2742), - [anon_sym_requires] = ACTIONS(2742), - [sym_this] = ACTIONS(2742), - [sym_nullptr] = ACTIONS(2742), - }, - [928] = { - [sym_identifier] = ACTIONS(2746), - [aux_sym_preproc_include_token1] = ACTIONS(2746), - [aux_sym_preproc_def_token1] = ACTIONS(2746), - [aux_sym_preproc_if_token1] = ACTIONS(2746), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2746), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2746), - [sym_preproc_directive] = ACTIONS(2746), - [anon_sym_LPAREN2] = ACTIONS(2748), - [anon_sym_BANG] = ACTIONS(2748), - [anon_sym_TILDE] = ACTIONS(2748), - [anon_sym_DASH] = ACTIONS(2746), - [anon_sym_PLUS] = ACTIONS(2746), - [anon_sym_STAR] = ACTIONS(2748), - [anon_sym_AMP_AMP] = ACTIONS(2748), - [anon_sym_AMP] = ACTIONS(2746), - [anon_sym_SEMI] = ACTIONS(2748), - [anon_sym_typedef] = ACTIONS(2746), - [anon_sym_extern] = ACTIONS(2746), - [anon_sym___attribute__] = ACTIONS(2746), - [anon_sym_COLON_COLON] = ACTIONS(2748), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2748), - [anon_sym___declspec] = ACTIONS(2746), - [anon_sym___based] = ACTIONS(2746), - [anon_sym___cdecl] = ACTIONS(2746), - [anon_sym___clrcall] = ACTIONS(2746), - [anon_sym___stdcall] = ACTIONS(2746), - [anon_sym___fastcall] = ACTIONS(2746), - [anon_sym___thiscall] = ACTIONS(2746), - [anon_sym___vectorcall] = ACTIONS(2746), - [anon_sym_LBRACE] = ACTIONS(2748), - [anon_sym_RBRACE] = ACTIONS(2748), - [anon_sym_LBRACK] = ACTIONS(2746), - [anon_sym_static] = ACTIONS(2746), - [anon_sym_register] = ACTIONS(2746), - [anon_sym_inline] = ACTIONS(2746), - [anon_sym_thread_local] = ACTIONS(2746), - [anon_sym_const] = ACTIONS(2746), - [anon_sym_volatile] = ACTIONS(2746), - [anon_sym_restrict] = ACTIONS(2746), - [anon_sym__Atomic] = ACTIONS(2746), - [anon_sym_mutable] = ACTIONS(2746), - [anon_sym_constexpr] = ACTIONS(2746), - [anon_sym_constinit] = ACTIONS(2746), - [anon_sym_consteval] = ACTIONS(2746), - [anon_sym_signed] = ACTIONS(2746), - [anon_sym_unsigned] = ACTIONS(2746), - [anon_sym_long] = ACTIONS(2746), - [anon_sym_short] = ACTIONS(2746), - [sym_primitive_type] = ACTIONS(2746), - [anon_sym_enum] = ACTIONS(2746), - [anon_sym_class] = ACTIONS(2746), - [anon_sym_struct] = ACTIONS(2746), - [anon_sym_union] = ACTIONS(2746), - [anon_sym_if] = ACTIONS(2746), - [anon_sym_switch] = ACTIONS(2746), - [anon_sym_case] = ACTIONS(2746), - [anon_sym_default] = ACTIONS(2746), - [anon_sym_while] = ACTIONS(2746), - [anon_sym_do] = ACTIONS(2746), - [anon_sym_for] = ACTIONS(2746), - [anon_sym_return] = ACTIONS(2746), - [anon_sym_break] = ACTIONS(2746), - [anon_sym_continue] = ACTIONS(2746), - [anon_sym_goto] = ACTIONS(2746), - [anon_sym_not] = ACTIONS(2746), - [anon_sym_compl] = ACTIONS(2746), - [anon_sym_DASH_DASH] = ACTIONS(2748), - [anon_sym_PLUS_PLUS] = ACTIONS(2748), - [anon_sym_sizeof] = ACTIONS(2746), - [sym_number_literal] = ACTIONS(2748), - [anon_sym_L_SQUOTE] = ACTIONS(2748), - [anon_sym_u_SQUOTE] = ACTIONS(2748), - [anon_sym_U_SQUOTE] = ACTIONS(2748), - [anon_sym_u8_SQUOTE] = ACTIONS(2748), - [anon_sym_SQUOTE] = ACTIONS(2748), - [anon_sym_L_DQUOTE] = ACTIONS(2748), - [anon_sym_u_DQUOTE] = ACTIONS(2748), - [anon_sym_U_DQUOTE] = ACTIONS(2748), - [anon_sym_u8_DQUOTE] = ACTIONS(2748), - [anon_sym_DQUOTE] = ACTIONS(2748), - [sym_true] = ACTIONS(2746), - [sym_false] = ACTIONS(2746), - [sym_null] = ACTIONS(2746), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2746), - [anon_sym_decltype] = ACTIONS(2746), - [anon_sym_virtual] = ACTIONS(2746), - [anon_sym_explicit] = ACTIONS(2746), - [anon_sym_typename] = ACTIONS(2746), - [anon_sym_template] = ACTIONS(2746), - [anon_sym_operator] = ACTIONS(2746), - [anon_sym_try] = ACTIONS(2746), - [anon_sym_delete] = ACTIONS(2746), - [anon_sym_throw] = ACTIONS(2746), - [anon_sym_namespace] = ACTIONS(2746), - [anon_sym_using] = ACTIONS(2746), - [anon_sym_static_assert] = ACTIONS(2746), - [anon_sym_concept] = ACTIONS(2746), - [anon_sym_co_return] = ACTIONS(2746), - [anon_sym_co_yield] = ACTIONS(2746), - [anon_sym_R_DQUOTE] = ACTIONS(2748), - [anon_sym_LR_DQUOTE] = ACTIONS(2748), - [anon_sym_uR_DQUOTE] = ACTIONS(2748), - [anon_sym_UR_DQUOTE] = ACTIONS(2748), - [anon_sym_u8R_DQUOTE] = ACTIONS(2748), - [anon_sym_co_await] = ACTIONS(2746), - [anon_sym_new] = ACTIONS(2746), - [anon_sym_requires] = ACTIONS(2746), - [sym_this] = ACTIONS(2746), - [sym_nullptr] = ACTIONS(2746), - }, - [929] = { - [sym_identifier] = ACTIONS(2750), - [aux_sym_preproc_include_token1] = ACTIONS(2750), - [aux_sym_preproc_def_token1] = ACTIONS(2750), - [aux_sym_preproc_if_token1] = ACTIONS(2750), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2750), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2750), - [sym_preproc_directive] = ACTIONS(2750), - [anon_sym_LPAREN2] = ACTIONS(2752), - [anon_sym_BANG] = ACTIONS(2752), - [anon_sym_TILDE] = ACTIONS(2752), - [anon_sym_DASH] = ACTIONS(2750), - [anon_sym_PLUS] = ACTIONS(2750), - [anon_sym_STAR] = ACTIONS(2752), - [anon_sym_AMP_AMP] = ACTIONS(2752), - [anon_sym_AMP] = ACTIONS(2750), - [anon_sym_SEMI] = ACTIONS(2752), - [anon_sym_typedef] = ACTIONS(2750), - [anon_sym_extern] = ACTIONS(2750), - [anon_sym___attribute__] = ACTIONS(2750), - [anon_sym_COLON_COLON] = ACTIONS(2752), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2752), - [anon_sym___declspec] = ACTIONS(2750), - [anon_sym___based] = ACTIONS(2750), - [anon_sym___cdecl] = ACTIONS(2750), - [anon_sym___clrcall] = ACTIONS(2750), - [anon_sym___stdcall] = ACTIONS(2750), - [anon_sym___fastcall] = ACTIONS(2750), - [anon_sym___thiscall] = ACTIONS(2750), - [anon_sym___vectorcall] = ACTIONS(2750), - [anon_sym_LBRACE] = ACTIONS(2752), - [anon_sym_RBRACE] = ACTIONS(2752), - [anon_sym_LBRACK] = ACTIONS(2750), - [anon_sym_static] = ACTIONS(2750), - [anon_sym_register] = ACTIONS(2750), - [anon_sym_inline] = ACTIONS(2750), - [anon_sym_thread_local] = ACTIONS(2750), - [anon_sym_const] = ACTIONS(2750), - [anon_sym_volatile] = ACTIONS(2750), - [anon_sym_restrict] = ACTIONS(2750), - [anon_sym__Atomic] = ACTIONS(2750), - [anon_sym_mutable] = ACTIONS(2750), - [anon_sym_constexpr] = ACTIONS(2750), - [anon_sym_constinit] = ACTIONS(2750), - [anon_sym_consteval] = ACTIONS(2750), - [anon_sym_signed] = ACTIONS(2750), - [anon_sym_unsigned] = ACTIONS(2750), - [anon_sym_long] = ACTIONS(2750), - [anon_sym_short] = ACTIONS(2750), - [sym_primitive_type] = ACTIONS(2750), - [anon_sym_enum] = ACTIONS(2750), - [anon_sym_class] = ACTIONS(2750), - [anon_sym_struct] = ACTIONS(2750), - [anon_sym_union] = ACTIONS(2750), - [anon_sym_if] = ACTIONS(2750), - [anon_sym_switch] = ACTIONS(2750), - [anon_sym_case] = ACTIONS(2750), - [anon_sym_default] = ACTIONS(2750), - [anon_sym_while] = ACTIONS(2750), - [anon_sym_do] = ACTIONS(2750), - [anon_sym_for] = ACTIONS(2750), - [anon_sym_return] = ACTIONS(2750), - [anon_sym_break] = ACTIONS(2750), - [anon_sym_continue] = ACTIONS(2750), - [anon_sym_goto] = ACTIONS(2750), - [anon_sym_not] = ACTIONS(2750), - [anon_sym_compl] = ACTIONS(2750), - [anon_sym_DASH_DASH] = ACTIONS(2752), - [anon_sym_PLUS_PLUS] = ACTIONS(2752), - [anon_sym_sizeof] = ACTIONS(2750), - [sym_number_literal] = ACTIONS(2752), - [anon_sym_L_SQUOTE] = ACTIONS(2752), - [anon_sym_u_SQUOTE] = ACTIONS(2752), - [anon_sym_U_SQUOTE] = ACTIONS(2752), - [anon_sym_u8_SQUOTE] = ACTIONS(2752), - [anon_sym_SQUOTE] = ACTIONS(2752), - [anon_sym_L_DQUOTE] = ACTIONS(2752), - [anon_sym_u_DQUOTE] = ACTIONS(2752), - [anon_sym_U_DQUOTE] = ACTIONS(2752), - [anon_sym_u8_DQUOTE] = ACTIONS(2752), - [anon_sym_DQUOTE] = ACTIONS(2752), - [sym_true] = ACTIONS(2750), - [sym_false] = ACTIONS(2750), - [sym_null] = ACTIONS(2750), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2750), - [anon_sym_decltype] = ACTIONS(2750), - [anon_sym_virtual] = ACTIONS(2750), - [anon_sym_explicit] = ACTIONS(2750), - [anon_sym_typename] = ACTIONS(2750), - [anon_sym_template] = ACTIONS(2750), - [anon_sym_operator] = ACTIONS(2750), - [anon_sym_try] = ACTIONS(2750), - [anon_sym_delete] = ACTIONS(2750), - [anon_sym_throw] = ACTIONS(2750), - [anon_sym_namespace] = ACTIONS(2750), - [anon_sym_using] = ACTIONS(2750), - [anon_sym_static_assert] = ACTIONS(2750), - [anon_sym_concept] = ACTIONS(2750), - [anon_sym_co_return] = ACTIONS(2750), - [anon_sym_co_yield] = ACTIONS(2750), - [anon_sym_R_DQUOTE] = ACTIONS(2752), - [anon_sym_LR_DQUOTE] = ACTIONS(2752), - [anon_sym_uR_DQUOTE] = ACTIONS(2752), - [anon_sym_UR_DQUOTE] = ACTIONS(2752), - [anon_sym_u8R_DQUOTE] = ACTIONS(2752), - [anon_sym_co_await] = ACTIONS(2750), - [anon_sym_new] = ACTIONS(2750), - [anon_sym_requires] = ACTIONS(2750), - [sym_this] = ACTIONS(2750), - [sym_nullptr] = ACTIONS(2750), - }, - [930] = { - [ts_builtin_sym_end] = ACTIONS(2866), - [sym_identifier] = ACTIONS(2864), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2866), - [anon_sym_AMP] = ACTIONS(2864), - [anon_sym_SEMI] = ACTIONS(2866), - [anon_sym_typedef] = ACTIONS(2864), - [anon_sym_extern] = ACTIONS(2864), - [anon_sym___attribute__] = ACTIONS(2864), - [anon_sym_COLON_COLON] = ACTIONS(2866), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2866), - [anon_sym___declspec] = ACTIONS(2864), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2864), - [anon_sym_static] = ACTIONS(2864), - [anon_sym_register] = ACTIONS(2864), - [anon_sym_inline] = ACTIONS(2864), - [anon_sym_thread_local] = ACTIONS(2864), - [anon_sym_const] = ACTIONS(2864), - [anon_sym_volatile] = ACTIONS(2864), - [anon_sym_restrict] = ACTIONS(2864), - [anon_sym__Atomic] = ACTIONS(2864), - [anon_sym_mutable] = ACTIONS(2864), - [anon_sym_constexpr] = ACTIONS(2864), - [anon_sym_constinit] = ACTIONS(2864), - [anon_sym_consteval] = ACTIONS(2864), - [anon_sym_signed] = ACTIONS(2864), - [anon_sym_unsigned] = ACTIONS(2864), - [anon_sym_long] = ACTIONS(2864), - [anon_sym_short] = ACTIONS(2864), - [sym_primitive_type] = ACTIONS(2864), - [anon_sym_enum] = ACTIONS(2864), - [anon_sym_class] = 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_return] = ACTIONS(2864), - [anon_sym_break] = ACTIONS(2864), - [anon_sym_continue] = ACTIONS(2864), - [anon_sym_goto] = ACTIONS(2864), - [anon_sym_not] = ACTIONS(2864), - [anon_sym_compl] = ACTIONS(2864), - [anon_sym_DASH_DASH] = ACTIONS(2866), - [anon_sym_PLUS_PLUS] = ACTIONS(2866), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2866), - [anon_sym_u_DQUOTE] = ACTIONS(2866), - [anon_sym_U_DQUOTE] = ACTIONS(2866), - [anon_sym_u8_DQUOTE] = ACTIONS(2866), - [anon_sym_DQUOTE] = ACTIONS(2866), - [sym_true] = ACTIONS(2864), - [sym_false] = ACTIONS(2864), - [sym_null] = ACTIONS(2864), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2864), - [anon_sym_decltype] = ACTIONS(2864), - [anon_sym_virtual] = ACTIONS(2864), - [anon_sym_explicit] = ACTIONS(2864), - [anon_sym_typename] = ACTIONS(2864), - [anon_sym_template] = ACTIONS(2864), - [anon_sym_operator] = ACTIONS(2864), - [anon_sym_try] = ACTIONS(2864), - [anon_sym_delete] = ACTIONS(2864), - [anon_sym_throw] = ACTIONS(2864), - [anon_sym_namespace] = ACTIONS(2864), - [anon_sym_using] = ACTIONS(2864), - [anon_sym_static_assert] = ACTIONS(2864), - [anon_sym_concept] = ACTIONS(2864), - [anon_sym_co_return] = ACTIONS(2864), - [anon_sym_co_yield] = ACTIONS(2864), - [anon_sym_R_DQUOTE] = ACTIONS(2866), - [anon_sym_LR_DQUOTE] = ACTIONS(2866), - [anon_sym_uR_DQUOTE] = ACTIONS(2866), - [anon_sym_UR_DQUOTE] = ACTIONS(2866), - [anon_sym_u8R_DQUOTE] = ACTIONS(2866), - [anon_sym_co_await] = ACTIONS(2864), - [anon_sym_new] = ACTIONS(2864), - [anon_sym_requires] = ACTIONS(2864), - [sym_this] = ACTIONS(2864), - [sym_nullptr] = ACTIONS(2864), - }, - [931] = { - [ts_builtin_sym_end] = ACTIONS(2862), - [sym_identifier] = ACTIONS(2860), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2862), - [anon_sym_AMP] = ACTIONS(2860), - [anon_sym_SEMI] = ACTIONS(2862), - [anon_sym_typedef] = ACTIONS(2860), - [anon_sym_extern] = ACTIONS(2860), - [anon_sym___attribute__] = ACTIONS(2860), - [anon_sym_COLON_COLON] = ACTIONS(2862), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2862), - [anon_sym___declspec] = ACTIONS(2860), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2860), - [anon_sym_static] = ACTIONS(2860), - [anon_sym_register] = ACTIONS(2860), - [anon_sym_inline] = ACTIONS(2860), - [anon_sym_thread_local] = ACTIONS(2860), - [anon_sym_const] = ACTIONS(2860), - [anon_sym_volatile] = ACTIONS(2860), - [anon_sym_restrict] = ACTIONS(2860), - [anon_sym__Atomic] = ACTIONS(2860), - [anon_sym_mutable] = ACTIONS(2860), - [anon_sym_constexpr] = ACTIONS(2860), - [anon_sym_constinit] = ACTIONS(2860), - [anon_sym_consteval] = ACTIONS(2860), - [anon_sym_signed] = ACTIONS(2860), - [anon_sym_unsigned] = ACTIONS(2860), - [anon_sym_long] = ACTIONS(2860), - [anon_sym_short] = ACTIONS(2860), - [sym_primitive_type] = ACTIONS(2860), - [anon_sym_enum] = ACTIONS(2860), - [anon_sym_class] = 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_return] = ACTIONS(2860), - [anon_sym_break] = ACTIONS(2860), - [anon_sym_continue] = ACTIONS(2860), - [anon_sym_goto] = ACTIONS(2860), - [anon_sym_not] = ACTIONS(2860), - [anon_sym_compl] = ACTIONS(2860), - [anon_sym_DASH_DASH] = ACTIONS(2862), - [anon_sym_PLUS_PLUS] = ACTIONS(2862), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2862), - [anon_sym_u_DQUOTE] = ACTIONS(2862), - [anon_sym_U_DQUOTE] = ACTIONS(2862), - [anon_sym_u8_DQUOTE] = ACTIONS(2862), - [anon_sym_DQUOTE] = ACTIONS(2862), - [sym_true] = ACTIONS(2860), - [sym_false] = ACTIONS(2860), - [sym_null] = ACTIONS(2860), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2860), - [anon_sym_decltype] = ACTIONS(2860), - [anon_sym_virtual] = ACTIONS(2860), - [anon_sym_explicit] = ACTIONS(2860), - [anon_sym_typename] = ACTIONS(2860), - [anon_sym_template] = ACTIONS(2860), - [anon_sym_operator] = ACTIONS(2860), - [anon_sym_try] = ACTIONS(2860), - [anon_sym_delete] = ACTIONS(2860), - [anon_sym_throw] = ACTIONS(2860), - [anon_sym_namespace] = ACTIONS(2860), - [anon_sym_using] = ACTIONS(2860), - [anon_sym_static_assert] = ACTIONS(2860), - [anon_sym_concept] = ACTIONS(2860), - [anon_sym_co_return] = ACTIONS(2860), - [anon_sym_co_yield] = ACTIONS(2860), - [anon_sym_R_DQUOTE] = ACTIONS(2862), - [anon_sym_LR_DQUOTE] = ACTIONS(2862), - [anon_sym_uR_DQUOTE] = ACTIONS(2862), - [anon_sym_UR_DQUOTE] = ACTIONS(2862), - [anon_sym_u8R_DQUOTE] = ACTIONS(2862), - [anon_sym_co_await] = ACTIONS(2860), - [anon_sym_new] = ACTIONS(2860), - [anon_sym_requires] = ACTIONS(2860), - [sym_this] = ACTIONS(2860), - [sym_nullptr] = ACTIONS(2860), - }, - [932] = { - [ts_builtin_sym_end] = ACTIONS(2712), - [sym_identifier] = ACTIONS(2710), - [aux_sym_preproc_include_token1] = ACTIONS(2710), - [aux_sym_preproc_def_token1] = ACTIONS(2710), - [aux_sym_preproc_if_token1] = ACTIONS(2710), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2710), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2710), - [sym_preproc_directive] = ACTIONS(2710), - [anon_sym_LPAREN2] = ACTIONS(2712), - [anon_sym_BANG] = ACTIONS(2712), - [anon_sym_TILDE] = ACTIONS(2712), - [anon_sym_DASH] = ACTIONS(2710), - [anon_sym_PLUS] = ACTIONS(2710), - [anon_sym_STAR] = ACTIONS(2712), - [anon_sym_AMP_AMP] = ACTIONS(2712), - [anon_sym_AMP] = ACTIONS(2710), - [anon_sym_SEMI] = ACTIONS(2712), - [anon_sym_typedef] = ACTIONS(2710), - [anon_sym_extern] = ACTIONS(2710), - [anon_sym___attribute__] = ACTIONS(2710), - [anon_sym_COLON_COLON] = ACTIONS(2712), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2712), - [anon_sym___declspec] = ACTIONS(2710), - [anon_sym___based] = ACTIONS(2710), - [anon_sym___cdecl] = ACTIONS(2710), - [anon_sym___clrcall] = ACTIONS(2710), - [anon_sym___stdcall] = ACTIONS(2710), - [anon_sym___fastcall] = ACTIONS(2710), - [anon_sym___thiscall] = ACTIONS(2710), - [anon_sym___vectorcall] = ACTIONS(2710), - [anon_sym_LBRACE] = ACTIONS(2712), - [anon_sym_LBRACK] = ACTIONS(2710), - [anon_sym_static] = ACTIONS(2710), - [anon_sym_register] = ACTIONS(2710), - [anon_sym_inline] = ACTIONS(2710), - [anon_sym_thread_local] = ACTIONS(2710), - [anon_sym_const] = ACTIONS(2710), - [anon_sym_volatile] = ACTIONS(2710), - [anon_sym_restrict] = ACTIONS(2710), - [anon_sym__Atomic] = ACTIONS(2710), - [anon_sym_mutable] = ACTIONS(2710), - [anon_sym_constexpr] = ACTIONS(2710), - [anon_sym_constinit] = ACTIONS(2710), - [anon_sym_consteval] = ACTIONS(2710), - [anon_sym_signed] = ACTIONS(2710), - [anon_sym_unsigned] = ACTIONS(2710), - [anon_sym_long] = ACTIONS(2710), - [anon_sym_short] = ACTIONS(2710), - [sym_primitive_type] = ACTIONS(2710), - [anon_sym_enum] = ACTIONS(2710), - [anon_sym_class] = ACTIONS(2710), - [anon_sym_struct] = ACTIONS(2710), - [anon_sym_union] = ACTIONS(2710), - [anon_sym_if] = ACTIONS(2710), - [anon_sym_switch] = ACTIONS(2710), - [anon_sym_case] = ACTIONS(2710), - [anon_sym_default] = ACTIONS(2710), - [anon_sym_while] = ACTIONS(2710), - [anon_sym_do] = ACTIONS(2710), - [anon_sym_for] = ACTIONS(2710), - [anon_sym_return] = ACTIONS(2710), - [anon_sym_break] = ACTIONS(2710), - [anon_sym_continue] = ACTIONS(2710), - [anon_sym_goto] = ACTIONS(2710), - [anon_sym_not] = ACTIONS(2710), - [anon_sym_compl] = ACTIONS(2710), - [anon_sym_DASH_DASH] = ACTIONS(2712), - [anon_sym_PLUS_PLUS] = ACTIONS(2712), - [anon_sym_sizeof] = ACTIONS(2710), - [sym_number_literal] = ACTIONS(2712), - [anon_sym_L_SQUOTE] = ACTIONS(2712), - [anon_sym_u_SQUOTE] = ACTIONS(2712), - [anon_sym_U_SQUOTE] = ACTIONS(2712), - [anon_sym_u8_SQUOTE] = ACTIONS(2712), - [anon_sym_SQUOTE] = ACTIONS(2712), - [anon_sym_L_DQUOTE] = ACTIONS(2712), - [anon_sym_u_DQUOTE] = ACTIONS(2712), - [anon_sym_U_DQUOTE] = ACTIONS(2712), - [anon_sym_u8_DQUOTE] = ACTIONS(2712), - [anon_sym_DQUOTE] = ACTIONS(2712), - [sym_true] = ACTIONS(2710), - [sym_false] = ACTIONS(2710), - [sym_null] = ACTIONS(2710), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2710), - [anon_sym_decltype] = ACTIONS(2710), - [anon_sym_virtual] = ACTIONS(2710), - [anon_sym_explicit] = ACTIONS(2710), - [anon_sym_typename] = ACTIONS(2710), - [anon_sym_template] = ACTIONS(2710), - [anon_sym_operator] = ACTIONS(2710), - [anon_sym_try] = ACTIONS(2710), - [anon_sym_delete] = ACTIONS(2710), - [anon_sym_throw] = ACTIONS(2710), - [anon_sym_namespace] = ACTIONS(2710), - [anon_sym_using] = ACTIONS(2710), - [anon_sym_static_assert] = ACTIONS(2710), - [anon_sym_concept] = ACTIONS(2710), - [anon_sym_co_return] = ACTIONS(2710), - [anon_sym_co_yield] = ACTIONS(2710), - [anon_sym_R_DQUOTE] = ACTIONS(2712), - [anon_sym_LR_DQUOTE] = ACTIONS(2712), - [anon_sym_uR_DQUOTE] = ACTIONS(2712), - [anon_sym_UR_DQUOTE] = ACTIONS(2712), - [anon_sym_u8R_DQUOTE] = ACTIONS(2712), - [anon_sym_co_await] = ACTIONS(2710), - [anon_sym_new] = ACTIONS(2710), - [anon_sym_requires] = ACTIONS(2710), - [sym_this] = ACTIONS(2710), - [sym_nullptr] = ACTIONS(2710), - }, - [933] = { - [sym_identifier] = ACTIONS(2758), - [aux_sym_preproc_include_token1] = ACTIONS(2758), - [aux_sym_preproc_def_token1] = ACTIONS(2758), - [aux_sym_preproc_if_token1] = ACTIONS(2758), - [aux_sym_preproc_if_token2] = ACTIONS(2758), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2758), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2758), - [sym_preproc_directive] = ACTIONS(2758), - [anon_sym_LPAREN2] = ACTIONS(2760), - [anon_sym_BANG] = ACTIONS(2760), - [anon_sym_TILDE] = ACTIONS(2760), - [anon_sym_DASH] = ACTIONS(2758), - [anon_sym_PLUS] = ACTIONS(2758), - [anon_sym_STAR] = ACTIONS(2760), - [anon_sym_AMP_AMP] = ACTIONS(2760), - [anon_sym_AMP] = ACTIONS(2758), - [anon_sym_SEMI] = ACTIONS(2760), - [anon_sym_typedef] = ACTIONS(2758), - [anon_sym_extern] = ACTIONS(2758), - [anon_sym___attribute__] = ACTIONS(2758), - [anon_sym_COLON_COLON] = ACTIONS(2760), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2760), - [anon_sym___declspec] = ACTIONS(2758), - [anon_sym___based] = ACTIONS(2758), - [anon_sym___cdecl] = ACTIONS(2758), - [anon_sym___clrcall] = ACTIONS(2758), - [anon_sym___stdcall] = ACTIONS(2758), - [anon_sym___fastcall] = ACTIONS(2758), - [anon_sym___thiscall] = ACTIONS(2758), - [anon_sym___vectorcall] = ACTIONS(2758), - [anon_sym_LBRACE] = ACTIONS(2760), - [anon_sym_LBRACK] = ACTIONS(2758), - [anon_sym_static] = ACTIONS(2758), - [anon_sym_register] = ACTIONS(2758), - [anon_sym_inline] = ACTIONS(2758), - [anon_sym_thread_local] = ACTIONS(2758), - [anon_sym_const] = ACTIONS(2758), - [anon_sym_volatile] = ACTIONS(2758), - [anon_sym_restrict] = ACTIONS(2758), - [anon_sym__Atomic] = ACTIONS(2758), - [anon_sym_mutable] = ACTIONS(2758), - [anon_sym_constexpr] = ACTIONS(2758), - [anon_sym_constinit] = ACTIONS(2758), - [anon_sym_consteval] = ACTIONS(2758), - [anon_sym_signed] = ACTIONS(2758), - [anon_sym_unsigned] = ACTIONS(2758), - [anon_sym_long] = ACTIONS(2758), - [anon_sym_short] = ACTIONS(2758), - [sym_primitive_type] = ACTIONS(2758), - [anon_sym_enum] = ACTIONS(2758), - [anon_sym_class] = ACTIONS(2758), - [anon_sym_struct] = ACTIONS(2758), - [anon_sym_union] = ACTIONS(2758), - [anon_sym_if] = ACTIONS(2758), - [anon_sym_switch] = ACTIONS(2758), - [anon_sym_case] = ACTIONS(2758), - [anon_sym_default] = ACTIONS(2758), - [anon_sym_while] = ACTIONS(2758), - [anon_sym_do] = ACTIONS(2758), - [anon_sym_for] = ACTIONS(2758), - [anon_sym_return] = ACTIONS(2758), - [anon_sym_break] = ACTIONS(2758), - [anon_sym_continue] = ACTIONS(2758), - [anon_sym_goto] = ACTIONS(2758), - [anon_sym_not] = ACTIONS(2758), - [anon_sym_compl] = ACTIONS(2758), - [anon_sym_DASH_DASH] = ACTIONS(2760), - [anon_sym_PLUS_PLUS] = ACTIONS(2760), - [anon_sym_sizeof] = ACTIONS(2758), - [sym_number_literal] = ACTIONS(2760), - [anon_sym_L_SQUOTE] = ACTIONS(2760), - [anon_sym_u_SQUOTE] = ACTIONS(2760), - [anon_sym_U_SQUOTE] = ACTIONS(2760), - [anon_sym_u8_SQUOTE] = ACTIONS(2760), - [anon_sym_SQUOTE] = ACTIONS(2760), - [anon_sym_L_DQUOTE] = ACTIONS(2760), - [anon_sym_u_DQUOTE] = ACTIONS(2760), - [anon_sym_U_DQUOTE] = ACTIONS(2760), - [anon_sym_u8_DQUOTE] = ACTIONS(2760), - [anon_sym_DQUOTE] = ACTIONS(2760), - [sym_true] = ACTIONS(2758), - [sym_false] = ACTIONS(2758), - [sym_null] = ACTIONS(2758), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2758), - [anon_sym_decltype] = ACTIONS(2758), - [anon_sym_virtual] = ACTIONS(2758), - [anon_sym_explicit] = ACTIONS(2758), - [anon_sym_typename] = ACTIONS(2758), - [anon_sym_template] = ACTIONS(2758), - [anon_sym_operator] = ACTIONS(2758), - [anon_sym_try] = ACTIONS(2758), - [anon_sym_delete] = ACTIONS(2758), - [anon_sym_throw] = ACTIONS(2758), - [anon_sym_namespace] = ACTIONS(2758), - [anon_sym_using] = ACTIONS(2758), - [anon_sym_static_assert] = ACTIONS(2758), - [anon_sym_concept] = ACTIONS(2758), - [anon_sym_co_return] = ACTIONS(2758), - [anon_sym_co_yield] = ACTIONS(2758), - [anon_sym_R_DQUOTE] = ACTIONS(2760), - [anon_sym_LR_DQUOTE] = ACTIONS(2760), - [anon_sym_uR_DQUOTE] = ACTIONS(2760), - [anon_sym_UR_DQUOTE] = ACTIONS(2760), - [anon_sym_u8R_DQUOTE] = ACTIONS(2760), - [anon_sym_co_await] = ACTIONS(2758), - [anon_sym_new] = ACTIONS(2758), - [anon_sym_requires] = ACTIONS(2758), - [sym_this] = ACTIONS(2758), - [sym_nullptr] = ACTIONS(2758), - }, - [934] = { - [ts_builtin_sym_end] = ACTIONS(2858), - [sym_identifier] = ACTIONS(2856), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2858), - [anon_sym_AMP] = ACTIONS(2856), - [anon_sym_SEMI] = ACTIONS(2858), - [anon_sym_typedef] = ACTIONS(2856), - [anon_sym_extern] = ACTIONS(2856), - [anon_sym___attribute__] = ACTIONS(2856), - [anon_sym_COLON_COLON] = ACTIONS(2858), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2858), - [anon_sym___declspec] = ACTIONS(2856), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2856), - [anon_sym_static] = ACTIONS(2856), - [anon_sym_register] = ACTIONS(2856), - [anon_sym_inline] = ACTIONS(2856), - [anon_sym_thread_local] = ACTIONS(2856), - [anon_sym_const] = ACTIONS(2856), - [anon_sym_volatile] = ACTIONS(2856), - [anon_sym_restrict] = ACTIONS(2856), - [anon_sym__Atomic] = ACTIONS(2856), - [anon_sym_mutable] = ACTIONS(2856), - [anon_sym_constexpr] = ACTIONS(2856), - [anon_sym_constinit] = ACTIONS(2856), - [anon_sym_consteval] = ACTIONS(2856), - [anon_sym_signed] = ACTIONS(2856), - [anon_sym_unsigned] = ACTIONS(2856), - [anon_sym_long] = ACTIONS(2856), - [anon_sym_short] = ACTIONS(2856), - [sym_primitive_type] = ACTIONS(2856), - [anon_sym_enum] = ACTIONS(2856), - [anon_sym_class] = 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_return] = ACTIONS(2856), - [anon_sym_break] = ACTIONS(2856), - [anon_sym_continue] = ACTIONS(2856), - [anon_sym_goto] = ACTIONS(2856), - [anon_sym_not] = ACTIONS(2856), - [anon_sym_compl] = ACTIONS(2856), - [anon_sym_DASH_DASH] = ACTIONS(2858), - [anon_sym_PLUS_PLUS] = ACTIONS(2858), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2858), - [anon_sym_u_DQUOTE] = ACTIONS(2858), - [anon_sym_U_DQUOTE] = ACTIONS(2858), - [anon_sym_u8_DQUOTE] = ACTIONS(2858), - [anon_sym_DQUOTE] = ACTIONS(2858), - [sym_true] = ACTIONS(2856), - [sym_false] = ACTIONS(2856), - [sym_null] = ACTIONS(2856), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2856), - [anon_sym_decltype] = ACTIONS(2856), - [anon_sym_virtual] = ACTIONS(2856), - [anon_sym_explicit] = ACTIONS(2856), - [anon_sym_typename] = ACTIONS(2856), - [anon_sym_template] = ACTIONS(2856), - [anon_sym_operator] = ACTIONS(2856), - [anon_sym_try] = ACTIONS(2856), - [anon_sym_delete] = ACTIONS(2856), - [anon_sym_throw] = ACTIONS(2856), - [anon_sym_namespace] = ACTIONS(2856), - [anon_sym_using] = ACTIONS(2856), - [anon_sym_static_assert] = ACTIONS(2856), - [anon_sym_concept] = ACTIONS(2856), - [anon_sym_co_return] = ACTIONS(2856), - [anon_sym_co_yield] = ACTIONS(2856), - [anon_sym_R_DQUOTE] = ACTIONS(2858), - [anon_sym_LR_DQUOTE] = ACTIONS(2858), - [anon_sym_uR_DQUOTE] = ACTIONS(2858), - [anon_sym_UR_DQUOTE] = ACTIONS(2858), - [anon_sym_u8R_DQUOTE] = ACTIONS(2858), - [anon_sym_co_await] = ACTIONS(2856), - [anon_sym_new] = ACTIONS(2856), - [anon_sym_requires] = ACTIONS(2856), - [sym_this] = ACTIONS(2856), - [sym_nullptr] = ACTIONS(2856), - }, - [935] = { - [sym_identifier] = ACTIONS(2810), - [aux_sym_preproc_include_token1] = ACTIONS(2810), - [aux_sym_preproc_def_token1] = ACTIONS(2810), - [aux_sym_preproc_if_token1] = ACTIONS(2810), - [aux_sym_preproc_if_token2] = ACTIONS(2810), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2810), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2810), - [sym_preproc_directive] = ACTIONS(2810), - [anon_sym_LPAREN2] = ACTIONS(2812), - [anon_sym_BANG] = ACTIONS(2812), - [anon_sym_TILDE] = ACTIONS(2812), - [anon_sym_DASH] = ACTIONS(2810), - [anon_sym_PLUS] = ACTIONS(2810), - [anon_sym_STAR] = ACTIONS(2812), - [anon_sym_AMP_AMP] = ACTIONS(2812), - [anon_sym_AMP] = ACTIONS(2810), - [anon_sym_SEMI] = ACTIONS(2812), - [anon_sym_typedef] = ACTIONS(2810), - [anon_sym_extern] = ACTIONS(2810), - [anon_sym___attribute__] = ACTIONS(2810), - [anon_sym_COLON_COLON] = ACTIONS(2812), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2812), - [anon_sym___declspec] = ACTIONS(2810), - [anon_sym___based] = ACTIONS(2810), - [anon_sym___cdecl] = ACTIONS(2810), - [anon_sym___clrcall] = ACTIONS(2810), - [anon_sym___stdcall] = ACTIONS(2810), - [anon_sym___fastcall] = ACTIONS(2810), - [anon_sym___thiscall] = ACTIONS(2810), - [anon_sym___vectorcall] = ACTIONS(2810), - [anon_sym_LBRACE] = ACTIONS(2812), - [anon_sym_LBRACK] = ACTIONS(2810), - [anon_sym_static] = ACTIONS(2810), - [anon_sym_register] = ACTIONS(2810), - [anon_sym_inline] = ACTIONS(2810), - [anon_sym_thread_local] = ACTIONS(2810), - [anon_sym_const] = ACTIONS(2810), - [anon_sym_volatile] = ACTIONS(2810), - [anon_sym_restrict] = ACTIONS(2810), - [anon_sym__Atomic] = ACTIONS(2810), - [anon_sym_mutable] = ACTIONS(2810), - [anon_sym_constexpr] = ACTIONS(2810), - [anon_sym_constinit] = ACTIONS(2810), - [anon_sym_consteval] = ACTIONS(2810), - [anon_sym_signed] = ACTIONS(2810), - [anon_sym_unsigned] = ACTIONS(2810), - [anon_sym_long] = ACTIONS(2810), - [anon_sym_short] = ACTIONS(2810), - [sym_primitive_type] = ACTIONS(2810), - [anon_sym_enum] = ACTIONS(2810), - [anon_sym_class] = ACTIONS(2810), - [anon_sym_struct] = ACTIONS(2810), - [anon_sym_union] = ACTIONS(2810), - [anon_sym_if] = ACTIONS(2810), - [anon_sym_switch] = ACTIONS(2810), - [anon_sym_case] = ACTIONS(2810), - [anon_sym_default] = ACTIONS(2810), - [anon_sym_while] = ACTIONS(2810), - [anon_sym_do] = ACTIONS(2810), - [anon_sym_for] = ACTIONS(2810), - [anon_sym_return] = ACTIONS(2810), - [anon_sym_break] = ACTIONS(2810), - [anon_sym_continue] = ACTIONS(2810), - [anon_sym_goto] = ACTIONS(2810), - [anon_sym_not] = ACTIONS(2810), - [anon_sym_compl] = ACTIONS(2810), - [anon_sym_DASH_DASH] = ACTIONS(2812), - [anon_sym_PLUS_PLUS] = ACTIONS(2812), - [anon_sym_sizeof] = ACTIONS(2810), - [sym_number_literal] = ACTIONS(2812), - [anon_sym_L_SQUOTE] = ACTIONS(2812), - [anon_sym_u_SQUOTE] = ACTIONS(2812), - [anon_sym_U_SQUOTE] = ACTIONS(2812), - [anon_sym_u8_SQUOTE] = ACTIONS(2812), - [anon_sym_SQUOTE] = ACTIONS(2812), - [anon_sym_L_DQUOTE] = ACTIONS(2812), - [anon_sym_u_DQUOTE] = ACTIONS(2812), - [anon_sym_U_DQUOTE] = ACTIONS(2812), - [anon_sym_u8_DQUOTE] = ACTIONS(2812), - [anon_sym_DQUOTE] = ACTIONS(2812), - [sym_true] = ACTIONS(2810), - [sym_false] = ACTIONS(2810), - [sym_null] = ACTIONS(2810), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2810), - [anon_sym_decltype] = ACTIONS(2810), - [anon_sym_virtual] = ACTIONS(2810), - [anon_sym_explicit] = ACTIONS(2810), - [anon_sym_typename] = ACTIONS(2810), - [anon_sym_template] = ACTIONS(2810), - [anon_sym_operator] = ACTIONS(2810), - [anon_sym_try] = ACTIONS(2810), - [anon_sym_delete] = ACTIONS(2810), - [anon_sym_throw] = ACTIONS(2810), - [anon_sym_namespace] = ACTIONS(2810), - [anon_sym_using] = ACTIONS(2810), - [anon_sym_static_assert] = ACTIONS(2810), - [anon_sym_concept] = ACTIONS(2810), - [anon_sym_co_return] = ACTIONS(2810), - [anon_sym_co_yield] = ACTIONS(2810), - [anon_sym_R_DQUOTE] = ACTIONS(2812), - [anon_sym_LR_DQUOTE] = ACTIONS(2812), - [anon_sym_uR_DQUOTE] = ACTIONS(2812), - [anon_sym_UR_DQUOTE] = ACTIONS(2812), - [anon_sym_u8R_DQUOTE] = ACTIONS(2812), - [anon_sym_co_await] = ACTIONS(2810), - [anon_sym_new] = ACTIONS(2810), - [anon_sym_requires] = ACTIONS(2810), - [sym_this] = ACTIONS(2810), - [sym_nullptr] = ACTIONS(2810), - }, - [936] = { - [ts_builtin_sym_end] = ACTIONS(2824), - [sym_identifier] = ACTIONS(2822), - [aux_sym_preproc_include_token1] = ACTIONS(2822), - [aux_sym_preproc_def_token1] = ACTIONS(2822), - [aux_sym_preproc_if_token1] = ACTIONS(2822), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2822), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2822), - [sym_preproc_directive] = ACTIONS(2822), - [anon_sym_LPAREN2] = ACTIONS(2824), - [anon_sym_BANG] = ACTIONS(2824), - [anon_sym_TILDE] = ACTIONS(2824), - [anon_sym_DASH] = ACTIONS(2822), - [anon_sym_PLUS] = ACTIONS(2822), - [anon_sym_STAR] = ACTIONS(2824), - [anon_sym_AMP_AMP] = ACTIONS(2824), - [anon_sym_AMP] = ACTIONS(2822), - [anon_sym_SEMI] = ACTIONS(2824), - [anon_sym_typedef] = ACTIONS(2822), - [anon_sym_extern] = ACTIONS(2822), - [anon_sym___attribute__] = ACTIONS(2822), - [anon_sym_COLON_COLON] = ACTIONS(2824), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2824), - [anon_sym___declspec] = ACTIONS(2822), - [anon_sym___based] = ACTIONS(2822), - [anon_sym___cdecl] = ACTIONS(2822), - [anon_sym___clrcall] = ACTIONS(2822), - [anon_sym___stdcall] = ACTIONS(2822), - [anon_sym___fastcall] = ACTIONS(2822), - [anon_sym___thiscall] = ACTIONS(2822), - [anon_sym___vectorcall] = ACTIONS(2822), - [anon_sym_LBRACE] = ACTIONS(2824), - [anon_sym_LBRACK] = ACTIONS(2822), - [anon_sym_static] = ACTIONS(2822), - [anon_sym_register] = ACTIONS(2822), - [anon_sym_inline] = ACTIONS(2822), - [anon_sym_thread_local] = ACTIONS(2822), - [anon_sym_const] = ACTIONS(2822), - [anon_sym_volatile] = ACTIONS(2822), - [anon_sym_restrict] = ACTIONS(2822), - [anon_sym__Atomic] = ACTIONS(2822), - [anon_sym_mutable] = ACTIONS(2822), - [anon_sym_constexpr] = ACTIONS(2822), - [anon_sym_constinit] = ACTIONS(2822), - [anon_sym_consteval] = ACTIONS(2822), - [anon_sym_signed] = ACTIONS(2822), - [anon_sym_unsigned] = ACTIONS(2822), - [anon_sym_long] = ACTIONS(2822), - [anon_sym_short] = ACTIONS(2822), - [sym_primitive_type] = ACTIONS(2822), - [anon_sym_enum] = ACTIONS(2822), - [anon_sym_class] = ACTIONS(2822), - [anon_sym_struct] = ACTIONS(2822), - [anon_sym_union] = ACTIONS(2822), - [anon_sym_if] = ACTIONS(2822), - [anon_sym_switch] = ACTIONS(2822), - [anon_sym_case] = ACTIONS(2822), - [anon_sym_default] = ACTIONS(2822), - [anon_sym_while] = ACTIONS(2822), - [anon_sym_do] = ACTIONS(2822), - [anon_sym_for] = ACTIONS(2822), - [anon_sym_return] = ACTIONS(2822), - [anon_sym_break] = ACTIONS(2822), - [anon_sym_continue] = ACTIONS(2822), - [anon_sym_goto] = ACTIONS(2822), - [anon_sym_not] = ACTIONS(2822), - [anon_sym_compl] = ACTIONS(2822), - [anon_sym_DASH_DASH] = ACTIONS(2824), - [anon_sym_PLUS_PLUS] = ACTIONS(2824), - [anon_sym_sizeof] = ACTIONS(2822), - [sym_number_literal] = ACTIONS(2824), - [anon_sym_L_SQUOTE] = ACTIONS(2824), - [anon_sym_u_SQUOTE] = ACTIONS(2824), - [anon_sym_U_SQUOTE] = ACTIONS(2824), - [anon_sym_u8_SQUOTE] = ACTIONS(2824), - [anon_sym_SQUOTE] = ACTIONS(2824), - [anon_sym_L_DQUOTE] = ACTIONS(2824), - [anon_sym_u_DQUOTE] = ACTIONS(2824), - [anon_sym_U_DQUOTE] = ACTIONS(2824), - [anon_sym_u8_DQUOTE] = ACTIONS(2824), - [anon_sym_DQUOTE] = ACTIONS(2824), - [sym_true] = ACTIONS(2822), - [sym_false] = ACTIONS(2822), - [sym_null] = ACTIONS(2822), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2822), - [anon_sym_decltype] = ACTIONS(2822), - [anon_sym_virtual] = ACTIONS(2822), - [anon_sym_explicit] = ACTIONS(2822), - [anon_sym_typename] = ACTIONS(2822), - [anon_sym_template] = ACTIONS(2822), - [anon_sym_operator] = ACTIONS(2822), - [anon_sym_try] = ACTIONS(2822), - [anon_sym_delete] = ACTIONS(2822), - [anon_sym_throw] = ACTIONS(2822), - [anon_sym_namespace] = ACTIONS(2822), - [anon_sym_using] = ACTIONS(2822), - [anon_sym_static_assert] = ACTIONS(2822), - [anon_sym_concept] = ACTIONS(2822), - [anon_sym_co_return] = ACTIONS(2822), - [anon_sym_co_yield] = ACTIONS(2822), - [anon_sym_R_DQUOTE] = ACTIONS(2824), - [anon_sym_LR_DQUOTE] = ACTIONS(2824), - [anon_sym_uR_DQUOTE] = ACTIONS(2824), - [anon_sym_UR_DQUOTE] = ACTIONS(2824), - [anon_sym_u8R_DQUOTE] = ACTIONS(2824), - [anon_sym_co_await] = ACTIONS(2822), - [anon_sym_new] = ACTIONS(2822), - [anon_sym_requires] = ACTIONS(2822), - [sym_this] = ACTIONS(2822), - [sym_nullptr] = ACTIONS(2822), - }, - [937] = { - [ts_builtin_sym_end] = ACTIONS(2828), - [sym_identifier] = ACTIONS(2826), - [aux_sym_preproc_include_token1] = ACTIONS(2826), - [aux_sym_preproc_def_token1] = ACTIONS(2826), - [aux_sym_preproc_if_token1] = ACTIONS(2826), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2826), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2826), - [sym_preproc_directive] = ACTIONS(2826), - [anon_sym_LPAREN2] = ACTIONS(2828), - [anon_sym_BANG] = ACTIONS(2828), - [anon_sym_TILDE] = ACTIONS(2828), - [anon_sym_DASH] = ACTIONS(2826), - [anon_sym_PLUS] = ACTIONS(2826), - [anon_sym_STAR] = ACTIONS(2828), - [anon_sym_AMP_AMP] = ACTIONS(2828), - [anon_sym_AMP] = ACTIONS(2826), - [anon_sym_SEMI] = ACTIONS(2828), - [anon_sym_typedef] = ACTIONS(2826), - [anon_sym_extern] = ACTIONS(2826), - [anon_sym___attribute__] = ACTIONS(2826), - [anon_sym_COLON_COLON] = ACTIONS(2828), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2828), - [anon_sym___declspec] = ACTIONS(2826), - [anon_sym___based] = ACTIONS(2826), - [anon_sym___cdecl] = ACTIONS(2826), - [anon_sym___clrcall] = ACTIONS(2826), - [anon_sym___stdcall] = ACTIONS(2826), - [anon_sym___fastcall] = ACTIONS(2826), - [anon_sym___thiscall] = ACTIONS(2826), - [anon_sym___vectorcall] = ACTIONS(2826), - [anon_sym_LBRACE] = ACTIONS(2828), - [anon_sym_LBRACK] = ACTIONS(2826), - [anon_sym_static] = ACTIONS(2826), - [anon_sym_register] = ACTIONS(2826), - [anon_sym_inline] = ACTIONS(2826), - [anon_sym_thread_local] = ACTIONS(2826), - [anon_sym_const] = ACTIONS(2826), - [anon_sym_volatile] = ACTIONS(2826), - [anon_sym_restrict] = ACTIONS(2826), - [anon_sym__Atomic] = ACTIONS(2826), - [anon_sym_mutable] = ACTIONS(2826), - [anon_sym_constexpr] = ACTIONS(2826), - [anon_sym_constinit] = ACTIONS(2826), - [anon_sym_consteval] = ACTIONS(2826), - [anon_sym_signed] = ACTIONS(2826), - [anon_sym_unsigned] = ACTIONS(2826), - [anon_sym_long] = ACTIONS(2826), - [anon_sym_short] = ACTIONS(2826), - [sym_primitive_type] = ACTIONS(2826), - [anon_sym_enum] = ACTIONS(2826), - [anon_sym_class] = ACTIONS(2826), - [anon_sym_struct] = ACTIONS(2826), - [anon_sym_union] = ACTIONS(2826), - [anon_sym_if] = ACTIONS(2826), - [anon_sym_switch] = ACTIONS(2826), - [anon_sym_case] = ACTIONS(2826), - [anon_sym_default] = ACTIONS(2826), - [anon_sym_while] = ACTIONS(2826), - [anon_sym_do] = ACTIONS(2826), - [anon_sym_for] = ACTIONS(2826), - [anon_sym_return] = ACTIONS(2826), - [anon_sym_break] = ACTIONS(2826), - [anon_sym_continue] = ACTIONS(2826), - [anon_sym_goto] = ACTIONS(2826), - [anon_sym_not] = ACTIONS(2826), - [anon_sym_compl] = ACTIONS(2826), - [anon_sym_DASH_DASH] = ACTIONS(2828), - [anon_sym_PLUS_PLUS] = ACTIONS(2828), - [anon_sym_sizeof] = ACTIONS(2826), - [sym_number_literal] = ACTIONS(2828), - [anon_sym_L_SQUOTE] = ACTIONS(2828), - [anon_sym_u_SQUOTE] = ACTIONS(2828), - [anon_sym_U_SQUOTE] = ACTIONS(2828), - [anon_sym_u8_SQUOTE] = ACTIONS(2828), - [anon_sym_SQUOTE] = ACTIONS(2828), - [anon_sym_L_DQUOTE] = ACTIONS(2828), - [anon_sym_u_DQUOTE] = ACTIONS(2828), - [anon_sym_U_DQUOTE] = ACTIONS(2828), - [anon_sym_u8_DQUOTE] = ACTIONS(2828), - [anon_sym_DQUOTE] = ACTIONS(2828), - [sym_true] = ACTIONS(2826), - [sym_false] = ACTIONS(2826), - [sym_null] = ACTIONS(2826), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2826), - [anon_sym_decltype] = ACTIONS(2826), - [anon_sym_virtual] = ACTIONS(2826), - [anon_sym_explicit] = ACTIONS(2826), - [anon_sym_typename] = ACTIONS(2826), - [anon_sym_template] = ACTIONS(2826), - [anon_sym_operator] = ACTIONS(2826), - [anon_sym_try] = ACTIONS(2826), - [anon_sym_delete] = ACTIONS(2826), - [anon_sym_throw] = ACTIONS(2826), - [anon_sym_namespace] = ACTIONS(2826), - [anon_sym_using] = ACTIONS(2826), - [anon_sym_static_assert] = ACTIONS(2826), - [anon_sym_concept] = ACTIONS(2826), - [anon_sym_co_return] = ACTIONS(2826), - [anon_sym_co_yield] = ACTIONS(2826), - [anon_sym_R_DQUOTE] = ACTIONS(2828), - [anon_sym_LR_DQUOTE] = ACTIONS(2828), - [anon_sym_uR_DQUOTE] = ACTIONS(2828), - [anon_sym_UR_DQUOTE] = ACTIONS(2828), - [anon_sym_u8R_DQUOTE] = ACTIONS(2828), - [anon_sym_co_await] = ACTIONS(2826), - [anon_sym_new] = ACTIONS(2826), - [anon_sym_requires] = ACTIONS(2826), - [sym_this] = ACTIONS(2826), - [sym_nullptr] = ACTIONS(2826), - }, - [938] = { - [ts_builtin_sym_end] = ACTIONS(2680), - [sym_identifier] = ACTIONS(2678), - [aux_sym_preproc_include_token1] = ACTIONS(2678), - [aux_sym_preproc_def_token1] = ACTIONS(2678), - [aux_sym_preproc_if_token1] = ACTIONS(2678), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2678), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2678), - [sym_preproc_directive] = ACTIONS(2678), - [anon_sym_LPAREN2] = ACTIONS(2680), - [anon_sym_BANG] = ACTIONS(2680), - [anon_sym_TILDE] = ACTIONS(2680), - [anon_sym_DASH] = ACTIONS(2678), - [anon_sym_PLUS] = ACTIONS(2678), - [anon_sym_STAR] = ACTIONS(2680), - [anon_sym_AMP_AMP] = ACTIONS(2680), - [anon_sym_AMP] = ACTIONS(2678), - [anon_sym_SEMI] = ACTIONS(2680), - [anon_sym_typedef] = ACTIONS(2678), - [anon_sym_extern] = ACTIONS(2678), - [anon_sym___attribute__] = ACTIONS(2678), - [anon_sym_COLON_COLON] = ACTIONS(2680), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2680), - [anon_sym___declspec] = ACTIONS(2678), - [anon_sym___based] = ACTIONS(2678), - [anon_sym___cdecl] = ACTIONS(2678), - [anon_sym___clrcall] = ACTIONS(2678), - [anon_sym___stdcall] = ACTIONS(2678), - [anon_sym___fastcall] = ACTIONS(2678), - [anon_sym___thiscall] = ACTIONS(2678), - [anon_sym___vectorcall] = ACTIONS(2678), - [anon_sym_LBRACE] = ACTIONS(2680), - [anon_sym_LBRACK] = ACTIONS(2678), - [anon_sym_static] = ACTIONS(2678), - [anon_sym_register] = ACTIONS(2678), - [anon_sym_inline] = ACTIONS(2678), - [anon_sym_thread_local] = ACTIONS(2678), - [anon_sym_const] = ACTIONS(2678), - [anon_sym_volatile] = ACTIONS(2678), - [anon_sym_restrict] = ACTIONS(2678), - [anon_sym__Atomic] = ACTIONS(2678), - [anon_sym_mutable] = ACTIONS(2678), - [anon_sym_constexpr] = ACTIONS(2678), - [anon_sym_constinit] = ACTIONS(2678), - [anon_sym_consteval] = ACTIONS(2678), - [anon_sym_signed] = ACTIONS(2678), - [anon_sym_unsigned] = ACTIONS(2678), - [anon_sym_long] = ACTIONS(2678), - [anon_sym_short] = ACTIONS(2678), - [sym_primitive_type] = ACTIONS(2678), - [anon_sym_enum] = ACTIONS(2678), - [anon_sym_class] = ACTIONS(2678), - [anon_sym_struct] = ACTIONS(2678), - [anon_sym_union] = ACTIONS(2678), - [anon_sym_if] = ACTIONS(2678), - [anon_sym_switch] = ACTIONS(2678), - [anon_sym_case] = ACTIONS(2678), - [anon_sym_default] = ACTIONS(2678), - [anon_sym_while] = ACTIONS(2678), - [anon_sym_do] = ACTIONS(2678), - [anon_sym_for] = ACTIONS(2678), - [anon_sym_return] = ACTIONS(2678), - [anon_sym_break] = ACTIONS(2678), - [anon_sym_continue] = ACTIONS(2678), - [anon_sym_goto] = ACTIONS(2678), - [anon_sym_not] = ACTIONS(2678), - [anon_sym_compl] = ACTIONS(2678), - [anon_sym_DASH_DASH] = ACTIONS(2680), - [anon_sym_PLUS_PLUS] = ACTIONS(2680), - [anon_sym_sizeof] = ACTIONS(2678), - [sym_number_literal] = ACTIONS(2680), - [anon_sym_L_SQUOTE] = ACTIONS(2680), - [anon_sym_u_SQUOTE] = ACTIONS(2680), - [anon_sym_U_SQUOTE] = ACTIONS(2680), - [anon_sym_u8_SQUOTE] = ACTIONS(2680), - [anon_sym_SQUOTE] = ACTIONS(2680), - [anon_sym_L_DQUOTE] = ACTIONS(2680), - [anon_sym_u_DQUOTE] = ACTIONS(2680), - [anon_sym_U_DQUOTE] = ACTIONS(2680), - [anon_sym_u8_DQUOTE] = ACTIONS(2680), - [anon_sym_DQUOTE] = ACTIONS(2680), - [sym_true] = ACTIONS(2678), - [sym_false] = ACTIONS(2678), - [sym_null] = ACTIONS(2678), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2678), - [anon_sym_decltype] = ACTIONS(2678), - [anon_sym_virtual] = ACTIONS(2678), - [anon_sym_explicit] = ACTIONS(2678), - [anon_sym_typename] = ACTIONS(2678), - [anon_sym_template] = ACTIONS(2678), - [anon_sym_operator] = ACTIONS(2678), - [anon_sym_try] = ACTIONS(2678), - [anon_sym_delete] = ACTIONS(2678), - [anon_sym_throw] = ACTIONS(2678), - [anon_sym_namespace] = ACTIONS(2678), - [anon_sym_using] = ACTIONS(2678), - [anon_sym_static_assert] = ACTIONS(2678), - [anon_sym_concept] = ACTIONS(2678), - [anon_sym_co_return] = ACTIONS(2678), - [anon_sym_co_yield] = ACTIONS(2678), - [anon_sym_R_DQUOTE] = ACTIONS(2680), - [anon_sym_LR_DQUOTE] = ACTIONS(2680), - [anon_sym_uR_DQUOTE] = ACTIONS(2680), - [anon_sym_UR_DQUOTE] = ACTIONS(2680), - [anon_sym_u8R_DQUOTE] = ACTIONS(2680), - [anon_sym_co_await] = ACTIONS(2678), - [anon_sym_new] = ACTIONS(2678), - [anon_sym_requires] = ACTIONS(2678), - [sym_this] = ACTIONS(2678), - [sym_nullptr] = ACTIONS(2678), - }, - [939] = { - [ts_builtin_sym_end] = ACTIONS(2832), - [sym_identifier] = ACTIONS(2830), - [aux_sym_preproc_include_token1] = ACTIONS(2830), - [aux_sym_preproc_def_token1] = ACTIONS(2830), - [aux_sym_preproc_if_token1] = ACTIONS(2830), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2830), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2830), - [sym_preproc_directive] = ACTIONS(2830), - [anon_sym_LPAREN2] = ACTIONS(2832), - [anon_sym_BANG] = ACTIONS(2832), - [anon_sym_TILDE] = ACTIONS(2832), - [anon_sym_DASH] = ACTIONS(2830), - [anon_sym_PLUS] = ACTIONS(2830), - [anon_sym_STAR] = ACTIONS(2832), - [anon_sym_AMP_AMP] = ACTIONS(2832), - [anon_sym_AMP] = ACTIONS(2830), - [anon_sym_SEMI] = ACTIONS(2832), - [anon_sym_typedef] = ACTIONS(2830), - [anon_sym_extern] = ACTIONS(2830), - [anon_sym___attribute__] = ACTIONS(2830), - [anon_sym_COLON_COLON] = ACTIONS(2832), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2832), - [anon_sym___declspec] = ACTIONS(2830), - [anon_sym___based] = ACTIONS(2830), - [anon_sym___cdecl] = ACTIONS(2830), - [anon_sym___clrcall] = ACTIONS(2830), - [anon_sym___stdcall] = ACTIONS(2830), - [anon_sym___fastcall] = ACTIONS(2830), - [anon_sym___thiscall] = ACTIONS(2830), - [anon_sym___vectorcall] = ACTIONS(2830), - [anon_sym_LBRACE] = ACTIONS(2832), - [anon_sym_LBRACK] = ACTIONS(2830), - [anon_sym_static] = ACTIONS(2830), - [anon_sym_register] = ACTIONS(2830), - [anon_sym_inline] = ACTIONS(2830), - [anon_sym_thread_local] = ACTIONS(2830), - [anon_sym_const] = ACTIONS(2830), - [anon_sym_volatile] = ACTIONS(2830), - [anon_sym_restrict] = ACTIONS(2830), - [anon_sym__Atomic] = ACTIONS(2830), - [anon_sym_mutable] = ACTIONS(2830), - [anon_sym_constexpr] = ACTIONS(2830), - [anon_sym_constinit] = ACTIONS(2830), - [anon_sym_consteval] = ACTIONS(2830), - [anon_sym_signed] = ACTIONS(2830), - [anon_sym_unsigned] = ACTIONS(2830), - [anon_sym_long] = ACTIONS(2830), - [anon_sym_short] = ACTIONS(2830), - [sym_primitive_type] = ACTIONS(2830), - [anon_sym_enum] = ACTIONS(2830), - [anon_sym_class] = ACTIONS(2830), - [anon_sym_struct] = ACTIONS(2830), - [anon_sym_union] = ACTIONS(2830), - [anon_sym_if] = ACTIONS(2830), - [anon_sym_switch] = ACTIONS(2830), - [anon_sym_case] = ACTIONS(2830), - [anon_sym_default] = ACTIONS(2830), - [anon_sym_while] = ACTIONS(2830), - [anon_sym_do] = ACTIONS(2830), - [anon_sym_for] = ACTIONS(2830), - [anon_sym_return] = ACTIONS(2830), - [anon_sym_break] = ACTIONS(2830), - [anon_sym_continue] = ACTIONS(2830), - [anon_sym_goto] = ACTIONS(2830), - [anon_sym_not] = ACTIONS(2830), - [anon_sym_compl] = ACTIONS(2830), - [anon_sym_DASH_DASH] = ACTIONS(2832), - [anon_sym_PLUS_PLUS] = ACTIONS(2832), - [anon_sym_sizeof] = ACTIONS(2830), - [sym_number_literal] = ACTIONS(2832), - [anon_sym_L_SQUOTE] = ACTIONS(2832), - [anon_sym_u_SQUOTE] = ACTIONS(2832), - [anon_sym_U_SQUOTE] = ACTIONS(2832), - [anon_sym_u8_SQUOTE] = ACTIONS(2832), - [anon_sym_SQUOTE] = ACTIONS(2832), - [anon_sym_L_DQUOTE] = ACTIONS(2832), - [anon_sym_u_DQUOTE] = ACTIONS(2832), - [anon_sym_U_DQUOTE] = ACTIONS(2832), - [anon_sym_u8_DQUOTE] = ACTIONS(2832), - [anon_sym_DQUOTE] = ACTIONS(2832), - [sym_true] = ACTIONS(2830), - [sym_false] = ACTIONS(2830), - [sym_null] = ACTIONS(2830), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2830), - [anon_sym_decltype] = ACTIONS(2830), - [anon_sym_virtual] = ACTIONS(2830), - [anon_sym_explicit] = ACTIONS(2830), - [anon_sym_typename] = ACTIONS(2830), - [anon_sym_template] = ACTIONS(2830), - [anon_sym_operator] = ACTIONS(2830), - [anon_sym_try] = ACTIONS(2830), - [anon_sym_delete] = ACTIONS(2830), - [anon_sym_throw] = ACTIONS(2830), - [anon_sym_namespace] = ACTIONS(2830), - [anon_sym_using] = ACTIONS(2830), - [anon_sym_static_assert] = ACTIONS(2830), - [anon_sym_concept] = ACTIONS(2830), - [anon_sym_co_return] = ACTIONS(2830), - [anon_sym_co_yield] = ACTIONS(2830), - [anon_sym_R_DQUOTE] = ACTIONS(2832), - [anon_sym_LR_DQUOTE] = ACTIONS(2832), - [anon_sym_uR_DQUOTE] = ACTIONS(2832), - [anon_sym_UR_DQUOTE] = ACTIONS(2832), - [anon_sym_u8R_DQUOTE] = ACTIONS(2832), - [anon_sym_co_await] = ACTIONS(2830), - [anon_sym_new] = ACTIONS(2830), - [anon_sym_requires] = ACTIONS(2830), - [sym_this] = ACTIONS(2830), - [sym_nullptr] = ACTIONS(2830), - }, - [940] = { - [ts_builtin_sym_end] = ACTIONS(2676), - [sym_identifier] = ACTIONS(2674), - [aux_sym_preproc_include_token1] = ACTIONS(2674), - [aux_sym_preproc_def_token1] = ACTIONS(2674), - [aux_sym_preproc_if_token1] = ACTIONS(2674), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2674), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2674), - [sym_preproc_directive] = ACTIONS(2674), - [anon_sym_LPAREN2] = ACTIONS(2676), - [anon_sym_BANG] = ACTIONS(2676), - [anon_sym_TILDE] = ACTIONS(2676), - [anon_sym_DASH] = ACTIONS(2674), - [anon_sym_PLUS] = ACTIONS(2674), - [anon_sym_STAR] = ACTIONS(2676), - [anon_sym_AMP_AMP] = ACTIONS(2676), - [anon_sym_AMP] = ACTIONS(2674), - [anon_sym_SEMI] = ACTIONS(2676), - [anon_sym_typedef] = ACTIONS(2674), - [anon_sym_extern] = ACTIONS(2674), - [anon_sym___attribute__] = ACTIONS(2674), - [anon_sym_COLON_COLON] = ACTIONS(2676), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2676), - [anon_sym___declspec] = ACTIONS(2674), - [anon_sym___based] = ACTIONS(2674), - [anon_sym___cdecl] = ACTIONS(2674), - [anon_sym___clrcall] = ACTIONS(2674), - [anon_sym___stdcall] = ACTIONS(2674), - [anon_sym___fastcall] = ACTIONS(2674), - [anon_sym___thiscall] = ACTIONS(2674), - [anon_sym___vectorcall] = ACTIONS(2674), - [anon_sym_LBRACE] = ACTIONS(2676), - [anon_sym_LBRACK] = ACTIONS(2674), - [anon_sym_static] = ACTIONS(2674), - [anon_sym_register] = ACTIONS(2674), - [anon_sym_inline] = ACTIONS(2674), - [anon_sym_thread_local] = ACTIONS(2674), - [anon_sym_const] = ACTIONS(2674), - [anon_sym_volatile] = ACTIONS(2674), - [anon_sym_restrict] = ACTIONS(2674), - [anon_sym__Atomic] = ACTIONS(2674), - [anon_sym_mutable] = ACTIONS(2674), - [anon_sym_constexpr] = ACTIONS(2674), - [anon_sym_constinit] = ACTIONS(2674), - [anon_sym_consteval] = ACTIONS(2674), - [anon_sym_signed] = ACTIONS(2674), - [anon_sym_unsigned] = ACTIONS(2674), - [anon_sym_long] = ACTIONS(2674), - [anon_sym_short] = ACTIONS(2674), - [sym_primitive_type] = ACTIONS(2674), - [anon_sym_enum] = ACTIONS(2674), - [anon_sym_class] = ACTIONS(2674), - [anon_sym_struct] = ACTIONS(2674), - [anon_sym_union] = ACTIONS(2674), - [anon_sym_if] = ACTIONS(2674), - [anon_sym_switch] = ACTIONS(2674), - [anon_sym_case] = ACTIONS(2674), - [anon_sym_default] = ACTIONS(2674), - [anon_sym_while] = ACTIONS(2674), - [anon_sym_do] = ACTIONS(2674), - [anon_sym_for] = ACTIONS(2674), - [anon_sym_return] = ACTIONS(2674), - [anon_sym_break] = ACTIONS(2674), - [anon_sym_continue] = ACTIONS(2674), - [anon_sym_goto] = ACTIONS(2674), - [anon_sym_not] = ACTIONS(2674), - [anon_sym_compl] = ACTIONS(2674), - [anon_sym_DASH_DASH] = ACTIONS(2676), - [anon_sym_PLUS_PLUS] = ACTIONS(2676), - [anon_sym_sizeof] = ACTIONS(2674), - [sym_number_literal] = ACTIONS(2676), - [anon_sym_L_SQUOTE] = ACTIONS(2676), - [anon_sym_u_SQUOTE] = ACTIONS(2676), - [anon_sym_U_SQUOTE] = ACTIONS(2676), - [anon_sym_u8_SQUOTE] = ACTIONS(2676), - [anon_sym_SQUOTE] = ACTIONS(2676), - [anon_sym_L_DQUOTE] = ACTIONS(2676), - [anon_sym_u_DQUOTE] = ACTIONS(2676), - [anon_sym_U_DQUOTE] = ACTIONS(2676), - [anon_sym_u8_DQUOTE] = ACTIONS(2676), - [anon_sym_DQUOTE] = ACTIONS(2676), - [sym_true] = ACTIONS(2674), - [sym_false] = ACTIONS(2674), - [sym_null] = ACTIONS(2674), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2674), - [anon_sym_decltype] = ACTIONS(2674), - [anon_sym_virtual] = ACTIONS(2674), - [anon_sym_explicit] = ACTIONS(2674), - [anon_sym_typename] = ACTIONS(2674), - [anon_sym_template] = ACTIONS(2674), - [anon_sym_operator] = ACTIONS(2674), - [anon_sym_try] = ACTIONS(2674), - [anon_sym_delete] = ACTIONS(2674), - [anon_sym_throw] = ACTIONS(2674), - [anon_sym_namespace] = ACTIONS(2674), - [anon_sym_using] = ACTIONS(2674), - [anon_sym_static_assert] = ACTIONS(2674), - [anon_sym_concept] = ACTIONS(2674), - [anon_sym_co_return] = ACTIONS(2674), - [anon_sym_co_yield] = ACTIONS(2674), - [anon_sym_R_DQUOTE] = ACTIONS(2676), - [anon_sym_LR_DQUOTE] = ACTIONS(2676), - [anon_sym_uR_DQUOTE] = ACTIONS(2676), - [anon_sym_UR_DQUOTE] = ACTIONS(2676), - [anon_sym_u8R_DQUOTE] = ACTIONS(2676), - [anon_sym_co_await] = ACTIONS(2674), - [anon_sym_new] = ACTIONS(2674), - [anon_sym_requires] = ACTIONS(2674), - [sym_this] = ACTIONS(2674), - [sym_nullptr] = ACTIONS(2674), - }, - [941] = { - [ts_builtin_sym_end] = ACTIONS(2740), - [sym_identifier] = ACTIONS(2738), - [aux_sym_preproc_include_token1] = ACTIONS(2738), - [aux_sym_preproc_def_token1] = ACTIONS(2738), - [aux_sym_preproc_if_token1] = ACTIONS(2738), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2738), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2738), - [sym_preproc_directive] = ACTIONS(2738), - [anon_sym_LPAREN2] = ACTIONS(2740), - [anon_sym_BANG] = ACTIONS(2740), - [anon_sym_TILDE] = ACTIONS(2740), - [anon_sym_DASH] = ACTIONS(2738), - [anon_sym_PLUS] = ACTIONS(2738), - [anon_sym_STAR] = ACTIONS(2740), - [anon_sym_AMP_AMP] = ACTIONS(2740), - [anon_sym_AMP] = ACTIONS(2738), - [anon_sym_SEMI] = ACTIONS(2740), - [anon_sym_typedef] = ACTIONS(2738), - [anon_sym_extern] = ACTIONS(2738), - [anon_sym___attribute__] = ACTIONS(2738), - [anon_sym_COLON_COLON] = ACTIONS(2740), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2740), - [anon_sym___declspec] = ACTIONS(2738), - [anon_sym___based] = ACTIONS(2738), - [anon_sym___cdecl] = ACTIONS(2738), - [anon_sym___clrcall] = ACTIONS(2738), - [anon_sym___stdcall] = ACTIONS(2738), - [anon_sym___fastcall] = ACTIONS(2738), - [anon_sym___thiscall] = ACTIONS(2738), - [anon_sym___vectorcall] = ACTIONS(2738), - [anon_sym_LBRACE] = ACTIONS(2740), - [anon_sym_LBRACK] = ACTIONS(2738), - [anon_sym_static] = ACTIONS(2738), - [anon_sym_register] = ACTIONS(2738), - [anon_sym_inline] = ACTIONS(2738), - [anon_sym_thread_local] = ACTIONS(2738), - [anon_sym_const] = ACTIONS(2738), - [anon_sym_volatile] = ACTIONS(2738), - [anon_sym_restrict] = ACTIONS(2738), - [anon_sym__Atomic] = ACTIONS(2738), - [anon_sym_mutable] = ACTIONS(2738), - [anon_sym_constexpr] = ACTIONS(2738), - [anon_sym_constinit] = ACTIONS(2738), - [anon_sym_consteval] = ACTIONS(2738), - [anon_sym_signed] = ACTIONS(2738), - [anon_sym_unsigned] = ACTIONS(2738), - [anon_sym_long] = ACTIONS(2738), - [anon_sym_short] = ACTIONS(2738), - [sym_primitive_type] = ACTIONS(2738), - [anon_sym_enum] = ACTIONS(2738), - [anon_sym_class] = ACTIONS(2738), - [anon_sym_struct] = ACTIONS(2738), - [anon_sym_union] = ACTIONS(2738), - [anon_sym_if] = ACTIONS(2738), - [anon_sym_switch] = ACTIONS(2738), - [anon_sym_case] = ACTIONS(2738), - [anon_sym_default] = ACTIONS(2738), - [anon_sym_while] = ACTIONS(2738), - [anon_sym_do] = ACTIONS(2738), - [anon_sym_for] = ACTIONS(2738), - [anon_sym_return] = ACTIONS(2738), - [anon_sym_break] = ACTIONS(2738), - [anon_sym_continue] = ACTIONS(2738), - [anon_sym_goto] = ACTIONS(2738), - [anon_sym_not] = ACTIONS(2738), - [anon_sym_compl] = ACTIONS(2738), - [anon_sym_DASH_DASH] = ACTIONS(2740), - [anon_sym_PLUS_PLUS] = ACTIONS(2740), - [anon_sym_sizeof] = ACTIONS(2738), - [sym_number_literal] = ACTIONS(2740), - [anon_sym_L_SQUOTE] = ACTIONS(2740), - [anon_sym_u_SQUOTE] = ACTIONS(2740), - [anon_sym_U_SQUOTE] = ACTIONS(2740), - [anon_sym_u8_SQUOTE] = ACTIONS(2740), - [anon_sym_SQUOTE] = ACTIONS(2740), - [anon_sym_L_DQUOTE] = ACTIONS(2740), - [anon_sym_u_DQUOTE] = ACTIONS(2740), - [anon_sym_U_DQUOTE] = ACTIONS(2740), - [anon_sym_u8_DQUOTE] = ACTIONS(2740), - [anon_sym_DQUOTE] = ACTIONS(2740), - [sym_true] = ACTIONS(2738), - [sym_false] = ACTIONS(2738), - [sym_null] = ACTIONS(2738), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2738), - [anon_sym_decltype] = ACTIONS(2738), - [anon_sym_virtual] = ACTIONS(2738), - [anon_sym_explicit] = ACTIONS(2738), - [anon_sym_typename] = ACTIONS(2738), - [anon_sym_template] = ACTIONS(2738), - [anon_sym_operator] = ACTIONS(2738), - [anon_sym_try] = ACTIONS(2738), - [anon_sym_delete] = ACTIONS(2738), - [anon_sym_throw] = ACTIONS(2738), - [anon_sym_namespace] = ACTIONS(2738), - [anon_sym_using] = ACTIONS(2738), - [anon_sym_static_assert] = ACTIONS(2738), - [anon_sym_concept] = ACTIONS(2738), - [anon_sym_co_return] = ACTIONS(2738), - [anon_sym_co_yield] = ACTIONS(2738), - [anon_sym_R_DQUOTE] = ACTIONS(2740), - [anon_sym_LR_DQUOTE] = ACTIONS(2740), - [anon_sym_uR_DQUOTE] = ACTIONS(2740), - [anon_sym_UR_DQUOTE] = ACTIONS(2740), - [anon_sym_u8R_DQUOTE] = ACTIONS(2740), - [anon_sym_co_await] = ACTIONS(2738), - [anon_sym_new] = ACTIONS(2738), - [anon_sym_requires] = ACTIONS(2738), - [sym_this] = ACTIONS(2738), - [sym_nullptr] = ACTIONS(2738), }, - [942] = { - [ts_builtin_sym_end] = ACTIONS(2760), - [sym_identifier] = ACTIONS(2758), - [aux_sym_preproc_include_token1] = ACTIONS(2758), - [aux_sym_preproc_def_token1] = ACTIONS(2758), - [aux_sym_preproc_if_token1] = ACTIONS(2758), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2758), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2758), - [sym_preproc_directive] = ACTIONS(2758), - [anon_sym_LPAREN2] = ACTIONS(2760), - [anon_sym_BANG] = ACTIONS(2760), - [anon_sym_TILDE] = ACTIONS(2760), - [anon_sym_DASH] = ACTIONS(2758), - [anon_sym_PLUS] = ACTIONS(2758), - [anon_sym_STAR] = ACTIONS(2760), - [anon_sym_AMP_AMP] = ACTIONS(2760), - [anon_sym_AMP] = ACTIONS(2758), - [anon_sym_SEMI] = ACTIONS(2760), - [anon_sym_typedef] = ACTIONS(2758), - [anon_sym_extern] = ACTIONS(2758), - [anon_sym___attribute__] = ACTIONS(2758), - [anon_sym_COLON_COLON] = ACTIONS(2760), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2760), - [anon_sym___declspec] = ACTIONS(2758), - [anon_sym___based] = ACTIONS(2758), - [anon_sym___cdecl] = ACTIONS(2758), - [anon_sym___clrcall] = ACTIONS(2758), - [anon_sym___stdcall] = ACTIONS(2758), - [anon_sym___fastcall] = ACTIONS(2758), - [anon_sym___thiscall] = ACTIONS(2758), - [anon_sym___vectorcall] = ACTIONS(2758), - [anon_sym_LBRACE] = ACTIONS(2760), - [anon_sym_LBRACK] = ACTIONS(2758), - [anon_sym_static] = ACTIONS(2758), - [anon_sym_register] = ACTIONS(2758), - [anon_sym_inline] = ACTIONS(2758), - [anon_sym_thread_local] = ACTIONS(2758), - [anon_sym_const] = ACTIONS(2758), - [anon_sym_volatile] = ACTIONS(2758), - [anon_sym_restrict] = ACTIONS(2758), - [anon_sym__Atomic] = ACTIONS(2758), - [anon_sym_mutable] = ACTIONS(2758), - [anon_sym_constexpr] = ACTIONS(2758), - [anon_sym_constinit] = ACTIONS(2758), - [anon_sym_consteval] = ACTIONS(2758), - [anon_sym_signed] = ACTIONS(2758), - [anon_sym_unsigned] = ACTIONS(2758), - [anon_sym_long] = ACTIONS(2758), - [anon_sym_short] = ACTIONS(2758), - [sym_primitive_type] = ACTIONS(2758), - [anon_sym_enum] = ACTIONS(2758), - [anon_sym_class] = ACTIONS(2758), - [anon_sym_struct] = ACTIONS(2758), - [anon_sym_union] = ACTIONS(2758), - [anon_sym_if] = ACTIONS(2758), - [anon_sym_switch] = ACTIONS(2758), - [anon_sym_case] = ACTIONS(2758), - [anon_sym_default] = ACTIONS(2758), - [anon_sym_while] = ACTIONS(2758), - [anon_sym_do] = ACTIONS(2758), - [anon_sym_for] = ACTIONS(2758), - [anon_sym_return] = ACTIONS(2758), - [anon_sym_break] = ACTIONS(2758), - [anon_sym_continue] = ACTIONS(2758), - [anon_sym_goto] = ACTIONS(2758), - [anon_sym_not] = ACTIONS(2758), - [anon_sym_compl] = ACTIONS(2758), - [anon_sym_DASH_DASH] = ACTIONS(2760), - [anon_sym_PLUS_PLUS] = ACTIONS(2760), - [anon_sym_sizeof] = ACTIONS(2758), - [sym_number_literal] = ACTIONS(2760), - [anon_sym_L_SQUOTE] = ACTIONS(2760), - [anon_sym_u_SQUOTE] = ACTIONS(2760), - [anon_sym_U_SQUOTE] = ACTIONS(2760), - [anon_sym_u8_SQUOTE] = ACTIONS(2760), - [anon_sym_SQUOTE] = ACTIONS(2760), - [anon_sym_L_DQUOTE] = ACTIONS(2760), - [anon_sym_u_DQUOTE] = ACTIONS(2760), - [anon_sym_U_DQUOTE] = ACTIONS(2760), - [anon_sym_u8_DQUOTE] = ACTIONS(2760), - [anon_sym_DQUOTE] = ACTIONS(2760), - [sym_true] = ACTIONS(2758), - [sym_false] = ACTIONS(2758), - [sym_null] = ACTIONS(2758), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2758), - [anon_sym_decltype] = ACTIONS(2758), - [anon_sym_virtual] = ACTIONS(2758), - [anon_sym_explicit] = ACTIONS(2758), - [anon_sym_typename] = ACTIONS(2758), - [anon_sym_template] = ACTIONS(2758), - [anon_sym_operator] = ACTIONS(2758), - [anon_sym_try] = ACTIONS(2758), - [anon_sym_delete] = ACTIONS(2758), - [anon_sym_throw] = ACTIONS(2758), - [anon_sym_namespace] = ACTIONS(2758), - [anon_sym_using] = ACTIONS(2758), - [anon_sym_static_assert] = ACTIONS(2758), - [anon_sym_concept] = ACTIONS(2758), - [anon_sym_co_return] = ACTIONS(2758), - [anon_sym_co_yield] = ACTIONS(2758), - [anon_sym_R_DQUOTE] = ACTIONS(2760), - [anon_sym_LR_DQUOTE] = ACTIONS(2760), - [anon_sym_uR_DQUOTE] = ACTIONS(2760), - [anon_sym_UR_DQUOTE] = ACTIONS(2760), - [anon_sym_u8R_DQUOTE] = ACTIONS(2760), - [anon_sym_co_await] = ACTIONS(2758), - [anon_sym_new] = ACTIONS(2758), - [anon_sym_requires] = ACTIONS(2758), - [sym_this] = ACTIONS(2758), - [sym_nullptr] = ACTIONS(2758), + [872] = { + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_RBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, - [943] = { - [sym_identifier] = ACTIONS(2766), - [aux_sym_preproc_include_token1] = ACTIONS(2766), - [aux_sym_preproc_def_token1] = ACTIONS(2766), - [aux_sym_preproc_if_token1] = ACTIONS(2766), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2766), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2766), - [sym_preproc_directive] = ACTIONS(2766), - [anon_sym_LPAREN2] = ACTIONS(2768), - [anon_sym_BANG] = ACTIONS(2768), - [anon_sym_TILDE] = ACTIONS(2768), - [anon_sym_DASH] = ACTIONS(2766), - [anon_sym_PLUS] = ACTIONS(2766), - [anon_sym_STAR] = ACTIONS(2768), - [anon_sym_AMP_AMP] = ACTIONS(2768), - [anon_sym_AMP] = ACTIONS(2766), - [anon_sym_SEMI] = ACTIONS(2768), - [anon_sym_typedef] = ACTIONS(2766), - [anon_sym_extern] = ACTIONS(2766), - [anon_sym___attribute__] = ACTIONS(2766), - [anon_sym_COLON_COLON] = ACTIONS(2768), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2768), - [anon_sym___declspec] = ACTIONS(2766), - [anon_sym___based] = ACTIONS(2766), - [anon_sym___cdecl] = ACTIONS(2766), - [anon_sym___clrcall] = ACTIONS(2766), - [anon_sym___stdcall] = ACTIONS(2766), - [anon_sym___fastcall] = ACTIONS(2766), - [anon_sym___thiscall] = ACTIONS(2766), - [anon_sym___vectorcall] = ACTIONS(2766), - [anon_sym_LBRACE] = ACTIONS(2768), - [anon_sym_RBRACE] = ACTIONS(2768), - [anon_sym_LBRACK] = ACTIONS(2766), - [anon_sym_static] = ACTIONS(2766), - [anon_sym_register] = ACTIONS(2766), - [anon_sym_inline] = ACTIONS(2766), - [anon_sym_thread_local] = ACTIONS(2766), - [anon_sym_const] = ACTIONS(2766), - [anon_sym_volatile] = ACTIONS(2766), - [anon_sym_restrict] = ACTIONS(2766), - [anon_sym__Atomic] = ACTIONS(2766), - [anon_sym_mutable] = ACTIONS(2766), - [anon_sym_constexpr] = ACTIONS(2766), - [anon_sym_constinit] = ACTIONS(2766), - [anon_sym_consteval] = ACTIONS(2766), - [anon_sym_signed] = ACTIONS(2766), - [anon_sym_unsigned] = ACTIONS(2766), - [anon_sym_long] = ACTIONS(2766), - [anon_sym_short] = ACTIONS(2766), - [sym_primitive_type] = ACTIONS(2766), - [anon_sym_enum] = ACTIONS(2766), - [anon_sym_class] = ACTIONS(2766), - [anon_sym_struct] = ACTIONS(2766), - [anon_sym_union] = ACTIONS(2766), - [anon_sym_if] = ACTIONS(2766), - [anon_sym_switch] = ACTIONS(2766), - [anon_sym_case] = ACTIONS(2766), - [anon_sym_default] = ACTIONS(2766), - [anon_sym_while] = ACTIONS(2766), - [anon_sym_do] = ACTIONS(2766), - [anon_sym_for] = ACTIONS(2766), - [anon_sym_return] = ACTIONS(2766), - [anon_sym_break] = ACTIONS(2766), - [anon_sym_continue] = ACTIONS(2766), - [anon_sym_goto] = ACTIONS(2766), - [anon_sym_not] = ACTIONS(2766), - [anon_sym_compl] = ACTIONS(2766), - [anon_sym_DASH_DASH] = ACTIONS(2768), - [anon_sym_PLUS_PLUS] = ACTIONS(2768), - [anon_sym_sizeof] = ACTIONS(2766), - [sym_number_literal] = ACTIONS(2768), - [anon_sym_L_SQUOTE] = ACTIONS(2768), - [anon_sym_u_SQUOTE] = ACTIONS(2768), - [anon_sym_U_SQUOTE] = ACTIONS(2768), - [anon_sym_u8_SQUOTE] = ACTIONS(2768), - [anon_sym_SQUOTE] = ACTIONS(2768), - [anon_sym_L_DQUOTE] = ACTIONS(2768), - [anon_sym_u_DQUOTE] = ACTIONS(2768), - [anon_sym_U_DQUOTE] = ACTIONS(2768), - [anon_sym_u8_DQUOTE] = ACTIONS(2768), - [anon_sym_DQUOTE] = ACTIONS(2768), - [sym_true] = ACTIONS(2766), - [sym_false] = ACTIONS(2766), - [sym_null] = ACTIONS(2766), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2766), - [anon_sym_decltype] = ACTIONS(2766), - [anon_sym_virtual] = ACTIONS(2766), - [anon_sym_explicit] = ACTIONS(2766), - [anon_sym_typename] = ACTIONS(2766), - [anon_sym_template] = ACTIONS(2766), - [anon_sym_operator] = ACTIONS(2766), - [anon_sym_try] = ACTIONS(2766), - [anon_sym_delete] = ACTIONS(2766), - [anon_sym_throw] = ACTIONS(2766), - [anon_sym_namespace] = ACTIONS(2766), - [anon_sym_using] = ACTIONS(2766), - [anon_sym_static_assert] = ACTIONS(2766), - [anon_sym_concept] = ACTIONS(2766), - [anon_sym_co_return] = ACTIONS(2766), - [anon_sym_co_yield] = ACTIONS(2766), - [anon_sym_R_DQUOTE] = ACTIONS(2768), - [anon_sym_LR_DQUOTE] = ACTIONS(2768), - [anon_sym_uR_DQUOTE] = ACTIONS(2768), - [anon_sym_UR_DQUOTE] = ACTIONS(2768), - [anon_sym_u8R_DQUOTE] = ACTIONS(2768), - [anon_sym_co_await] = ACTIONS(2766), - [anon_sym_new] = ACTIONS(2766), - [anon_sym_requires] = ACTIONS(2766), - [sym_this] = ACTIONS(2766), - [sym_nullptr] = ACTIONS(2766), + [873] = { + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_RBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, - [944] = { - [sym_identifier] = ACTIONS(2702), - [aux_sym_preproc_include_token1] = ACTIONS(2702), - [aux_sym_preproc_def_token1] = ACTIONS(2702), - [aux_sym_preproc_if_token1] = ACTIONS(2702), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2702), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2702), - [sym_preproc_directive] = ACTIONS(2702), - [anon_sym_LPAREN2] = ACTIONS(2704), - [anon_sym_BANG] = ACTIONS(2704), - [anon_sym_TILDE] = ACTIONS(2704), - [anon_sym_DASH] = ACTIONS(2702), - [anon_sym_PLUS] = ACTIONS(2702), - [anon_sym_STAR] = ACTIONS(2704), - [anon_sym_AMP_AMP] = ACTIONS(2704), - [anon_sym_AMP] = ACTIONS(2702), - [anon_sym_SEMI] = ACTIONS(2704), - [anon_sym_typedef] = ACTIONS(2702), - [anon_sym_extern] = ACTIONS(2702), - [anon_sym___attribute__] = ACTIONS(2702), - [anon_sym_COLON_COLON] = ACTIONS(2704), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2704), - [anon_sym___declspec] = ACTIONS(2702), - [anon_sym___based] = ACTIONS(2702), - [anon_sym___cdecl] = ACTIONS(2702), - [anon_sym___clrcall] = ACTIONS(2702), - [anon_sym___stdcall] = ACTIONS(2702), - [anon_sym___fastcall] = ACTIONS(2702), - [anon_sym___thiscall] = ACTIONS(2702), - [anon_sym___vectorcall] = ACTIONS(2702), - [anon_sym_LBRACE] = ACTIONS(2704), - [anon_sym_RBRACE] = ACTIONS(2704), - [anon_sym_LBRACK] = ACTIONS(2702), - [anon_sym_static] = ACTIONS(2702), - [anon_sym_register] = ACTIONS(2702), - [anon_sym_inline] = ACTIONS(2702), - [anon_sym_thread_local] = ACTIONS(2702), - [anon_sym_const] = ACTIONS(2702), - [anon_sym_volatile] = ACTIONS(2702), - [anon_sym_restrict] = ACTIONS(2702), - [anon_sym__Atomic] = ACTIONS(2702), - [anon_sym_mutable] = ACTIONS(2702), - [anon_sym_constexpr] = ACTIONS(2702), - [anon_sym_constinit] = ACTIONS(2702), - [anon_sym_consteval] = ACTIONS(2702), - [anon_sym_signed] = ACTIONS(2702), - [anon_sym_unsigned] = ACTIONS(2702), - [anon_sym_long] = ACTIONS(2702), - [anon_sym_short] = ACTIONS(2702), - [sym_primitive_type] = ACTIONS(2702), - [anon_sym_enum] = ACTIONS(2702), - [anon_sym_class] = ACTIONS(2702), - [anon_sym_struct] = ACTIONS(2702), - [anon_sym_union] = ACTIONS(2702), - [anon_sym_if] = ACTIONS(2702), - [anon_sym_switch] = ACTIONS(2702), - [anon_sym_case] = ACTIONS(2702), - [anon_sym_default] = ACTIONS(2702), - [anon_sym_while] = ACTIONS(2702), - [anon_sym_do] = ACTIONS(2702), - [anon_sym_for] = ACTIONS(2702), - [anon_sym_return] = ACTIONS(2702), - [anon_sym_break] = ACTIONS(2702), - [anon_sym_continue] = ACTIONS(2702), - [anon_sym_goto] = ACTIONS(2702), - [anon_sym_not] = ACTIONS(2702), - [anon_sym_compl] = ACTIONS(2702), - [anon_sym_DASH_DASH] = ACTIONS(2704), - [anon_sym_PLUS_PLUS] = ACTIONS(2704), - [anon_sym_sizeof] = ACTIONS(2702), - [sym_number_literal] = ACTIONS(2704), - [anon_sym_L_SQUOTE] = ACTIONS(2704), - [anon_sym_u_SQUOTE] = ACTIONS(2704), - [anon_sym_U_SQUOTE] = ACTIONS(2704), - [anon_sym_u8_SQUOTE] = ACTIONS(2704), - [anon_sym_SQUOTE] = ACTIONS(2704), - [anon_sym_L_DQUOTE] = ACTIONS(2704), - [anon_sym_u_DQUOTE] = ACTIONS(2704), - [anon_sym_U_DQUOTE] = ACTIONS(2704), - [anon_sym_u8_DQUOTE] = ACTIONS(2704), - [anon_sym_DQUOTE] = ACTIONS(2704), - [sym_true] = ACTIONS(2702), - [sym_false] = ACTIONS(2702), - [sym_null] = ACTIONS(2702), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2702), - [anon_sym_decltype] = ACTIONS(2702), - [anon_sym_virtual] = ACTIONS(2702), - [anon_sym_explicit] = ACTIONS(2702), - [anon_sym_typename] = ACTIONS(2702), - [anon_sym_template] = ACTIONS(2702), - [anon_sym_operator] = ACTIONS(2702), - [anon_sym_try] = ACTIONS(2702), - [anon_sym_delete] = ACTIONS(2702), - [anon_sym_throw] = ACTIONS(2702), - [anon_sym_namespace] = ACTIONS(2702), - [anon_sym_using] = ACTIONS(2702), - [anon_sym_static_assert] = ACTIONS(2702), - [anon_sym_concept] = ACTIONS(2702), - [anon_sym_co_return] = ACTIONS(2702), - [anon_sym_co_yield] = ACTIONS(2702), - [anon_sym_R_DQUOTE] = ACTIONS(2704), - [anon_sym_LR_DQUOTE] = ACTIONS(2704), - [anon_sym_uR_DQUOTE] = ACTIONS(2704), - [anon_sym_UR_DQUOTE] = ACTIONS(2704), - [anon_sym_u8R_DQUOTE] = ACTIONS(2704), - [anon_sym_co_await] = ACTIONS(2702), - [anon_sym_new] = ACTIONS(2702), - [anon_sym_requires] = ACTIONS(2702), - [sym_this] = ACTIONS(2702), - [sym_nullptr] = ACTIONS(2702), + [874] = { + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_RBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, - [945] = { - [sym_identifier] = ACTIONS(2770), - [aux_sym_preproc_include_token1] = ACTIONS(2770), - [aux_sym_preproc_def_token1] = ACTIONS(2770), - [aux_sym_preproc_if_token1] = ACTIONS(2770), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2770), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2770), - [sym_preproc_directive] = ACTIONS(2770), - [anon_sym_LPAREN2] = ACTIONS(2772), - [anon_sym_BANG] = ACTIONS(2772), - [anon_sym_TILDE] = ACTIONS(2772), - [anon_sym_DASH] = ACTIONS(2770), - [anon_sym_PLUS] = ACTIONS(2770), - [anon_sym_STAR] = ACTIONS(2772), - [anon_sym_AMP_AMP] = ACTIONS(2772), - [anon_sym_AMP] = ACTIONS(2770), - [anon_sym_SEMI] = ACTIONS(2772), - [anon_sym_typedef] = ACTIONS(2770), - [anon_sym_extern] = ACTIONS(2770), - [anon_sym___attribute__] = ACTIONS(2770), - [anon_sym_COLON_COLON] = ACTIONS(2772), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2772), - [anon_sym___declspec] = ACTIONS(2770), - [anon_sym___based] = ACTIONS(2770), - [anon_sym___cdecl] = ACTIONS(2770), - [anon_sym___clrcall] = ACTIONS(2770), - [anon_sym___stdcall] = ACTIONS(2770), - [anon_sym___fastcall] = ACTIONS(2770), - [anon_sym___thiscall] = ACTIONS(2770), - [anon_sym___vectorcall] = ACTIONS(2770), - [anon_sym_LBRACE] = ACTIONS(2772), - [anon_sym_RBRACE] = ACTIONS(2772), - [anon_sym_LBRACK] = ACTIONS(2770), - [anon_sym_static] = ACTIONS(2770), - [anon_sym_register] = ACTIONS(2770), - [anon_sym_inline] = ACTIONS(2770), - [anon_sym_thread_local] = ACTIONS(2770), - [anon_sym_const] = ACTIONS(2770), - [anon_sym_volatile] = ACTIONS(2770), - [anon_sym_restrict] = ACTIONS(2770), - [anon_sym__Atomic] = ACTIONS(2770), - [anon_sym_mutable] = ACTIONS(2770), - [anon_sym_constexpr] = ACTIONS(2770), - [anon_sym_constinit] = ACTIONS(2770), - [anon_sym_consteval] = ACTIONS(2770), - [anon_sym_signed] = ACTIONS(2770), - [anon_sym_unsigned] = ACTIONS(2770), - [anon_sym_long] = ACTIONS(2770), - [anon_sym_short] = ACTIONS(2770), - [sym_primitive_type] = ACTIONS(2770), - [anon_sym_enum] = ACTIONS(2770), - [anon_sym_class] = ACTIONS(2770), - [anon_sym_struct] = ACTIONS(2770), - [anon_sym_union] = ACTIONS(2770), - [anon_sym_if] = ACTIONS(2770), - [anon_sym_switch] = ACTIONS(2770), - [anon_sym_case] = ACTIONS(2770), - [anon_sym_default] = ACTIONS(2770), - [anon_sym_while] = ACTIONS(2770), - [anon_sym_do] = ACTIONS(2770), - [anon_sym_for] = ACTIONS(2770), - [anon_sym_return] = ACTIONS(2770), - [anon_sym_break] = ACTIONS(2770), - [anon_sym_continue] = ACTIONS(2770), - [anon_sym_goto] = ACTIONS(2770), - [anon_sym_not] = ACTIONS(2770), - [anon_sym_compl] = ACTIONS(2770), - [anon_sym_DASH_DASH] = ACTIONS(2772), - [anon_sym_PLUS_PLUS] = ACTIONS(2772), - [anon_sym_sizeof] = ACTIONS(2770), - [sym_number_literal] = ACTIONS(2772), - [anon_sym_L_SQUOTE] = ACTIONS(2772), - [anon_sym_u_SQUOTE] = ACTIONS(2772), - [anon_sym_U_SQUOTE] = ACTIONS(2772), - [anon_sym_u8_SQUOTE] = ACTIONS(2772), - [anon_sym_SQUOTE] = ACTIONS(2772), - [anon_sym_L_DQUOTE] = ACTIONS(2772), - [anon_sym_u_DQUOTE] = ACTIONS(2772), - [anon_sym_U_DQUOTE] = ACTIONS(2772), - [anon_sym_u8_DQUOTE] = ACTIONS(2772), - [anon_sym_DQUOTE] = ACTIONS(2772), - [sym_true] = ACTIONS(2770), - [sym_false] = ACTIONS(2770), - [sym_null] = ACTIONS(2770), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2770), - [anon_sym_decltype] = ACTIONS(2770), - [anon_sym_virtual] = ACTIONS(2770), - [anon_sym_explicit] = ACTIONS(2770), - [anon_sym_typename] = ACTIONS(2770), - [anon_sym_template] = ACTIONS(2770), - [anon_sym_operator] = ACTIONS(2770), - [anon_sym_try] = ACTIONS(2770), - [anon_sym_delete] = ACTIONS(2770), - [anon_sym_throw] = ACTIONS(2770), - [anon_sym_namespace] = ACTIONS(2770), - [anon_sym_using] = ACTIONS(2770), - [anon_sym_static_assert] = ACTIONS(2770), - [anon_sym_concept] = ACTIONS(2770), - [anon_sym_co_return] = ACTIONS(2770), - [anon_sym_co_yield] = ACTIONS(2770), - [anon_sym_R_DQUOTE] = ACTIONS(2772), - [anon_sym_LR_DQUOTE] = ACTIONS(2772), - [anon_sym_uR_DQUOTE] = ACTIONS(2772), - [anon_sym_UR_DQUOTE] = ACTIONS(2772), - [anon_sym_u8R_DQUOTE] = ACTIONS(2772), - [anon_sym_co_await] = ACTIONS(2770), - [anon_sym_new] = ACTIONS(2770), - [anon_sym_requires] = ACTIONS(2770), - [sym_this] = ACTIONS(2770), - [sym_nullptr] = ACTIONS(2770), + [875] = { + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_RBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, - [946] = { - [ts_builtin_sym_end] = ACTIONS(2744), - [sym_identifier] = ACTIONS(2742), - [aux_sym_preproc_include_token1] = ACTIONS(2742), - [aux_sym_preproc_def_token1] = ACTIONS(2742), - [aux_sym_preproc_if_token1] = ACTIONS(2742), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2742), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2742), - [sym_preproc_directive] = ACTIONS(2742), - [anon_sym_LPAREN2] = ACTIONS(2744), - [anon_sym_BANG] = ACTIONS(2744), - [anon_sym_TILDE] = ACTIONS(2744), - [anon_sym_DASH] = ACTIONS(2742), - [anon_sym_PLUS] = ACTIONS(2742), - [anon_sym_STAR] = ACTIONS(2744), - [anon_sym_AMP_AMP] = ACTIONS(2744), - [anon_sym_AMP] = ACTIONS(2742), - [anon_sym_SEMI] = ACTIONS(2744), - [anon_sym_typedef] = ACTIONS(2742), - [anon_sym_extern] = ACTIONS(2742), - [anon_sym___attribute__] = ACTIONS(2742), - [anon_sym_COLON_COLON] = ACTIONS(2744), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2744), - [anon_sym___declspec] = ACTIONS(2742), - [anon_sym___based] = ACTIONS(2742), - [anon_sym___cdecl] = ACTIONS(2742), - [anon_sym___clrcall] = ACTIONS(2742), - [anon_sym___stdcall] = ACTIONS(2742), - [anon_sym___fastcall] = ACTIONS(2742), - [anon_sym___thiscall] = ACTIONS(2742), - [anon_sym___vectorcall] = ACTIONS(2742), - [anon_sym_LBRACE] = ACTIONS(2744), - [anon_sym_LBRACK] = ACTIONS(2742), - [anon_sym_static] = ACTIONS(2742), - [anon_sym_register] = ACTIONS(2742), - [anon_sym_inline] = ACTIONS(2742), - [anon_sym_thread_local] = ACTIONS(2742), - [anon_sym_const] = ACTIONS(2742), - [anon_sym_volatile] = ACTIONS(2742), - [anon_sym_restrict] = ACTIONS(2742), - [anon_sym__Atomic] = ACTIONS(2742), - [anon_sym_mutable] = ACTIONS(2742), - [anon_sym_constexpr] = ACTIONS(2742), - [anon_sym_constinit] = ACTIONS(2742), - [anon_sym_consteval] = ACTIONS(2742), - [anon_sym_signed] = ACTIONS(2742), - [anon_sym_unsigned] = ACTIONS(2742), - [anon_sym_long] = ACTIONS(2742), - [anon_sym_short] = ACTIONS(2742), - [sym_primitive_type] = ACTIONS(2742), - [anon_sym_enum] = ACTIONS(2742), - [anon_sym_class] = ACTIONS(2742), - [anon_sym_struct] = ACTIONS(2742), - [anon_sym_union] = ACTIONS(2742), - [anon_sym_if] = ACTIONS(2742), - [anon_sym_switch] = ACTIONS(2742), - [anon_sym_case] = ACTIONS(2742), - [anon_sym_default] = ACTIONS(2742), - [anon_sym_while] = ACTIONS(2742), - [anon_sym_do] = ACTIONS(2742), - [anon_sym_for] = ACTIONS(2742), - [anon_sym_return] = ACTIONS(2742), - [anon_sym_break] = ACTIONS(2742), - [anon_sym_continue] = ACTIONS(2742), - [anon_sym_goto] = ACTIONS(2742), - [anon_sym_not] = ACTIONS(2742), - [anon_sym_compl] = ACTIONS(2742), - [anon_sym_DASH_DASH] = ACTIONS(2744), - [anon_sym_PLUS_PLUS] = ACTIONS(2744), - [anon_sym_sizeof] = ACTIONS(2742), - [sym_number_literal] = ACTIONS(2744), - [anon_sym_L_SQUOTE] = ACTIONS(2744), - [anon_sym_u_SQUOTE] = ACTIONS(2744), - [anon_sym_U_SQUOTE] = ACTIONS(2744), - [anon_sym_u8_SQUOTE] = ACTIONS(2744), - [anon_sym_SQUOTE] = ACTIONS(2744), - [anon_sym_L_DQUOTE] = ACTIONS(2744), - [anon_sym_u_DQUOTE] = ACTIONS(2744), - [anon_sym_U_DQUOTE] = ACTIONS(2744), - [anon_sym_u8_DQUOTE] = ACTIONS(2744), - [anon_sym_DQUOTE] = ACTIONS(2744), - [sym_true] = ACTIONS(2742), - [sym_false] = ACTIONS(2742), - [sym_null] = ACTIONS(2742), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2742), - [anon_sym_decltype] = ACTIONS(2742), - [anon_sym_virtual] = ACTIONS(2742), - [anon_sym_explicit] = ACTIONS(2742), - [anon_sym_typename] = ACTIONS(2742), - [anon_sym_template] = ACTIONS(2742), - [anon_sym_operator] = ACTIONS(2742), - [anon_sym_try] = ACTIONS(2742), - [anon_sym_delete] = ACTIONS(2742), - [anon_sym_throw] = ACTIONS(2742), - [anon_sym_namespace] = ACTIONS(2742), - [anon_sym_using] = ACTIONS(2742), - [anon_sym_static_assert] = ACTIONS(2742), - [anon_sym_concept] = ACTIONS(2742), - [anon_sym_co_return] = ACTIONS(2742), - [anon_sym_co_yield] = ACTIONS(2742), - [anon_sym_R_DQUOTE] = ACTIONS(2744), - [anon_sym_LR_DQUOTE] = ACTIONS(2744), - [anon_sym_uR_DQUOTE] = ACTIONS(2744), - [anon_sym_UR_DQUOTE] = ACTIONS(2744), - [anon_sym_u8R_DQUOTE] = ACTIONS(2744), - [anon_sym_co_await] = ACTIONS(2742), - [anon_sym_new] = ACTIONS(2742), - [anon_sym_requires] = ACTIONS(2742), - [sym_this] = ACTIONS(2742), - [sym_nullptr] = ACTIONS(2742), + [876] = { + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_RBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, - [947] = { - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_RBRACE] = ACTIONS(2776), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [sym_null] = ACTIONS(2774), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), - [sym_nullptr] = ACTIONS(2774), + [877] = { + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_RBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, - [948] = { - [ts_builtin_sym_end] = ACTIONS(2808), - [sym_identifier] = ACTIONS(2806), - [aux_sym_preproc_include_token1] = ACTIONS(2806), - [aux_sym_preproc_def_token1] = ACTIONS(2806), - [aux_sym_preproc_if_token1] = ACTIONS(2806), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2806), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2806), - [sym_preproc_directive] = ACTIONS(2806), - [anon_sym_LPAREN2] = ACTIONS(2808), - [anon_sym_BANG] = ACTIONS(2808), - [anon_sym_TILDE] = ACTIONS(2808), - [anon_sym_DASH] = ACTIONS(2806), - [anon_sym_PLUS] = ACTIONS(2806), - [anon_sym_STAR] = ACTIONS(2808), - [anon_sym_AMP_AMP] = ACTIONS(2808), - [anon_sym_AMP] = ACTIONS(2806), - [anon_sym_SEMI] = ACTIONS(2808), - [anon_sym_typedef] = ACTIONS(2806), - [anon_sym_extern] = ACTIONS(2806), - [anon_sym___attribute__] = ACTIONS(2806), - [anon_sym_COLON_COLON] = ACTIONS(2808), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2808), - [anon_sym___declspec] = ACTIONS(2806), - [anon_sym___based] = ACTIONS(2806), - [anon_sym___cdecl] = ACTIONS(2806), - [anon_sym___clrcall] = ACTIONS(2806), - [anon_sym___stdcall] = ACTIONS(2806), - [anon_sym___fastcall] = ACTIONS(2806), - [anon_sym___thiscall] = ACTIONS(2806), - [anon_sym___vectorcall] = ACTIONS(2806), - [anon_sym_LBRACE] = ACTIONS(2808), - [anon_sym_LBRACK] = ACTIONS(2806), - [anon_sym_static] = ACTIONS(2806), - [anon_sym_register] = ACTIONS(2806), - [anon_sym_inline] = ACTIONS(2806), - [anon_sym_thread_local] = ACTIONS(2806), - [anon_sym_const] = ACTIONS(2806), - [anon_sym_volatile] = ACTIONS(2806), - [anon_sym_restrict] = ACTIONS(2806), - [anon_sym__Atomic] = ACTIONS(2806), - [anon_sym_mutable] = ACTIONS(2806), - [anon_sym_constexpr] = ACTIONS(2806), - [anon_sym_constinit] = ACTIONS(2806), - [anon_sym_consteval] = ACTIONS(2806), - [anon_sym_signed] = ACTIONS(2806), - [anon_sym_unsigned] = ACTIONS(2806), - [anon_sym_long] = ACTIONS(2806), - [anon_sym_short] = ACTIONS(2806), - [sym_primitive_type] = ACTIONS(2806), - [anon_sym_enum] = ACTIONS(2806), - [anon_sym_class] = ACTIONS(2806), - [anon_sym_struct] = ACTIONS(2806), - [anon_sym_union] = ACTIONS(2806), - [anon_sym_if] = ACTIONS(2806), - [anon_sym_switch] = ACTIONS(2806), - [anon_sym_case] = ACTIONS(2806), - [anon_sym_default] = ACTIONS(2806), - [anon_sym_while] = ACTIONS(2806), - [anon_sym_do] = ACTIONS(2806), - [anon_sym_for] = ACTIONS(2806), - [anon_sym_return] = ACTIONS(2806), - [anon_sym_break] = ACTIONS(2806), - [anon_sym_continue] = ACTIONS(2806), - [anon_sym_goto] = ACTIONS(2806), - [anon_sym_not] = ACTIONS(2806), - [anon_sym_compl] = ACTIONS(2806), - [anon_sym_DASH_DASH] = ACTIONS(2808), - [anon_sym_PLUS_PLUS] = ACTIONS(2808), - [anon_sym_sizeof] = ACTIONS(2806), - [sym_number_literal] = ACTIONS(2808), - [anon_sym_L_SQUOTE] = ACTIONS(2808), - [anon_sym_u_SQUOTE] = ACTIONS(2808), - [anon_sym_U_SQUOTE] = ACTIONS(2808), - [anon_sym_u8_SQUOTE] = ACTIONS(2808), - [anon_sym_SQUOTE] = ACTIONS(2808), - [anon_sym_L_DQUOTE] = ACTIONS(2808), - [anon_sym_u_DQUOTE] = ACTIONS(2808), - [anon_sym_U_DQUOTE] = ACTIONS(2808), - [anon_sym_u8_DQUOTE] = ACTIONS(2808), - [anon_sym_DQUOTE] = ACTIONS(2808), - [sym_true] = ACTIONS(2806), - [sym_false] = ACTIONS(2806), - [sym_null] = ACTIONS(2806), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2806), - [anon_sym_decltype] = ACTIONS(2806), - [anon_sym_virtual] = ACTIONS(2806), - [anon_sym_explicit] = ACTIONS(2806), - [anon_sym_typename] = ACTIONS(2806), - [anon_sym_template] = ACTIONS(2806), - [anon_sym_operator] = ACTIONS(2806), - [anon_sym_try] = ACTIONS(2806), - [anon_sym_delete] = ACTIONS(2806), - [anon_sym_throw] = ACTIONS(2806), - [anon_sym_namespace] = ACTIONS(2806), - [anon_sym_using] = ACTIONS(2806), - [anon_sym_static_assert] = ACTIONS(2806), - [anon_sym_concept] = ACTIONS(2806), - [anon_sym_co_return] = ACTIONS(2806), - [anon_sym_co_yield] = ACTIONS(2806), - [anon_sym_R_DQUOTE] = ACTIONS(2808), - [anon_sym_LR_DQUOTE] = ACTIONS(2808), - [anon_sym_uR_DQUOTE] = ACTIONS(2808), - [anon_sym_UR_DQUOTE] = ACTIONS(2808), - [anon_sym_u8R_DQUOTE] = ACTIONS(2808), - [anon_sym_co_await] = ACTIONS(2806), - [anon_sym_new] = ACTIONS(2806), - [anon_sym_requires] = ACTIONS(2806), - [sym_this] = ACTIONS(2806), - [sym_nullptr] = ACTIONS(2806), + [878] = { + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_RBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, - [949] = { - [ts_builtin_sym_end] = ACTIONS(2808), - [sym_identifier] = ACTIONS(2806), - [aux_sym_preproc_include_token1] = ACTIONS(2806), - [aux_sym_preproc_def_token1] = ACTIONS(2806), - [aux_sym_preproc_if_token1] = ACTIONS(2806), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2806), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2806), - [sym_preproc_directive] = ACTIONS(2806), - [anon_sym_LPAREN2] = ACTIONS(2808), - [anon_sym_BANG] = ACTIONS(2808), - [anon_sym_TILDE] = ACTIONS(2808), - [anon_sym_DASH] = ACTIONS(2806), - [anon_sym_PLUS] = ACTIONS(2806), - [anon_sym_STAR] = ACTIONS(2808), - [anon_sym_AMP_AMP] = ACTIONS(2808), - [anon_sym_AMP] = ACTIONS(2806), - [anon_sym_SEMI] = ACTIONS(2808), - [anon_sym_typedef] = ACTIONS(2806), - [anon_sym_extern] = ACTIONS(2806), - [anon_sym___attribute__] = ACTIONS(2806), - [anon_sym_COLON_COLON] = ACTIONS(2808), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2808), - [anon_sym___declspec] = ACTIONS(2806), - [anon_sym___based] = ACTIONS(2806), - [anon_sym___cdecl] = ACTIONS(2806), - [anon_sym___clrcall] = ACTIONS(2806), - [anon_sym___stdcall] = ACTIONS(2806), - [anon_sym___fastcall] = ACTIONS(2806), - [anon_sym___thiscall] = ACTIONS(2806), - [anon_sym___vectorcall] = ACTIONS(2806), - [anon_sym_LBRACE] = ACTIONS(2808), - [anon_sym_LBRACK] = ACTIONS(2806), - [anon_sym_static] = ACTIONS(2806), - [anon_sym_register] = ACTIONS(2806), - [anon_sym_inline] = ACTIONS(2806), - [anon_sym_thread_local] = ACTIONS(2806), - [anon_sym_const] = ACTIONS(2806), - [anon_sym_volatile] = ACTIONS(2806), - [anon_sym_restrict] = ACTIONS(2806), - [anon_sym__Atomic] = ACTIONS(2806), - [anon_sym_mutable] = ACTIONS(2806), - [anon_sym_constexpr] = ACTIONS(2806), - [anon_sym_constinit] = ACTIONS(2806), - [anon_sym_consteval] = ACTIONS(2806), - [anon_sym_signed] = ACTIONS(2806), - [anon_sym_unsigned] = ACTIONS(2806), - [anon_sym_long] = ACTIONS(2806), - [anon_sym_short] = ACTIONS(2806), - [sym_primitive_type] = ACTIONS(2806), - [anon_sym_enum] = ACTIONS(2806), - [anon_sym_class] = ACTIONS(2806), - [anon_sym_struct] = ACTIONS(2806), - [anon_sym_union] = ACTIONS(2806), - [anon_sym_if] = ACTIONS(2806), - [anon_sym_switch] = ACTIONS(2806), - [anon_sym_case] = ACTIONS(2806), - [anon_sym_default] = ACTIONS(2806), - [anon_sym_while] = ACTIONS(2806), - [anon_sym_do] = ACTIONS(2806), - [anon_sym_for] = ACTIONS(2806), - [anon_sym_return] = ACTIONS(2806), - [anon_sym_break] = ACTIONS(2806), - [anon_sym_continue] = ACTIONS(2806), - [anon_sym_goto] = ACTIONS(2806), - [anon_sym_not] = ACTIONS(2806), - [anon_sym_compl] = ACTIONS(2806), - [anon_sym_DASH_DASH] = ACTIONS(2808), - [anon_sym_PLUS_PLUS] = ACTIONS(2808), - [anon_sym_sizeof] = ACTIONS(2806), - [sym_number_literal] = ACTIONS(2808), - [anon_sym_L_SQUOTE] = ACTIONS(2808), - [anon_sym_u_SQUOTE] = ACTIONS(2808), - [anon_sym_U_SQUOTE] = ACTIONS(2808), - [anon_sym_u8_SQUOTE] = ACTIONS(2808), - [anon_sym_SQUOTE] = ACTIONS(2808), - [anon_sym_L_DQUOTE] = ACTIONS(2808), - [anon_sym_u_DQUOTE] = ACTIONS(2808), - [anon_sym_U_DQUOTE] = ACTIONS(2808), - [anon_sym_u8_DQUOTE] = ACTIONS(2808), - [anon_sym_DQUOTE] = ACTIONS(2808), - [sym_true] = ACTIONS(2806), - [sym_false] = ACTIONS(2806), - [sym_null] = ACTIONS(2806), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2806), - [anon_sym_decltype] = ACTIONS(2806), - [anon_sym_virtual] = ACTIONS(2806), - [anon_sym_explicit] = ACTIONS(2806), - [anon_sym_typename] = ACTIONS(2806), - [anon_sym_template] = ACTIONS(2806), - [anon_sym_operator] = ACTIONS(2806), - [anon_sym_try] = ACTIONS(2806), - [anon_sym_delete] = ACTIONS(2806), - [anon_sym_throw] = ACTIONS(2806), - [anon_sym_namespace] = ACTIONS(2806), - [anon_sym_using] = ACTIONS(2806), - [anon_sym_static_assert] = ACTIONS(2806), - [anon_sym_concept] = ACTIONS(2806), - [anon_sym_co_return] = ACTIONS(2806), - [anon_sym_co_yield] = ACTIONS(2806), - [anon_sym_R_DQUOTE] = ACTIONS(2808), - [anon_sym_LR_DQUOTE] = ACTIONS(2808), - [anon_sym_uR_DQUOTE] = ACTIONS(2808), - [anon_sym_UR_DQUOTE] = ACTIONS(2808), - [anon_sym_u8R_DQUOTE] = ACTIONS(2808), - [anon_sym_co_await] = ACTIONS(2806), - [anon_sym_new] = ACTIONS(2806), - [anon_sym_requires] = ACTIONS(2806), - [sym_this] = ACTIONS(2806), - [sym_nullptr] = ACTIONS(2806), + [879] = { + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_RBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, - [950] = { - [sym_identifier] = ACTIONS(2662), - [aux_sym_preproc_include_token1] = ACTIONS(2662), - [aux_sym_preproc_def_token1] = ACTIONS(2662), - [aux_sym_preproc_if_token1] = ACTIONS(2662), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2662), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2662), - [sym_preproc_directive] = ACTIONS(2662), - [anon_sym_LPAREN2] = ACTIONS(2664), - [anon_sym_BANG] = ACTIONS(2664), - [anon_sym_TILDE] = ACTIONS(2664), - [anon_sym_DASH] = ACTIONS(2662), - [anon_sym_PLUS] = ACTIONS(2662), - [anon_sym_STAR] = ACTIONS(2664), - [anon_sym_AMP_AMP] = ACTIONS(2664), - [anon_sym_AMP] = ACTIONS(2662), - [anon_sym_SEMI] = ACTIONS(2664), - [anon_sym_typedef] = ACTIONS(2662), - [anon_sym_extern] = ACTIONS(2662), - [anon_sym___attribute__] = ACTIONS(2662), - [anon_sym_COLON_COLON] = ACTIONS(2664), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2664), - [anon_sym___declspec] = ACTIONS(2662), - [anon_sym___based] = ACTIONS(2662), - [anon_sym___cdecl] = ACTIONS(2662), - [anon_sym___clrcall] = ACTIONS(2662), - [anon_sym___stdcall] = ACTIONS(2662), - [anon_sym___fastcall] = ACTIONS(2662), - [anon_sym___thiscall] = ACTIONS(2662), - [anon_sym___vectorcall] = ACTIONS(2662), - [anon_sym_LBRACE] = ACTIONS(2664), - [anon_sym_RBRACE] = ACTIONS(2664), - [anon_sym_LBRACK] = ACTIONS(2662), - [anon_sym_static] = ACTIONS(2662), - [anon_sym_register] = ACTIONS(2662), - [anon_sym_inline] = ACTIONS(2662), - [anon_sym_thread_local] = ACTIONS(2662), - [anon_sym_const] = ACTIONS(2662), - [anon_sym_volatile] = ACTIONS(2662), - [anon_sym_restrict] = ACTIONS(2662), - [anon_sym__Atomic] = ACTIONS(2662), - [anon_sym_mutable] = ACTIONS(2662), - [anon_sym_constexpr] = ACTIONS(2662), - [anon_sym_constinit] = ACTIONS(2662), - [anon_sym_consteval] = ACTIONS(2662), - [anon_sym_signed] = ACTIONS(2662), - [anon_sym_unsigned] = ACTIONS(2662), - [anon_sym_long] = ACTIONS(2662), - [anon_sym_short] = ACTIONS(2662), - [sym_primitive_type] = ACTIONS(2662), - [anon_sym_enum] = ACTIONS(2662), - [anon_sym_class] = ACTIONS(2662), - [anon_sym_struct] = ACTIONS(2662), - [anon_sym_union] = ACTIONS(2662), - [anon_sym_if] = ACTIONS(2662), - [anon_sym_switch] = ACTIONS(2662), - [anon_sym_case] = ACTIONS(2662), - [anon_sym_default] = ACTIONS(2662), - [anon_sym_while] = ACTIONS(2662), - [anon_sym_do] = ACTIONS(2662), - [anon_sym_for] = ACTIONS(2662), - [anon_sym_return] = ACTIONS(2662), - [anon_sym_break] = ACTIONS(2662), - [anon_sym_continue] = ACTIONS(2662), - [anon_sym_goto] = ACTIONS(2662), - [anon_sym_not] = ACTIONS(2662), - [anon_sym_compl] = ACTIONS(2662), - [anon_sym_DASH_DASH] = ACTIONS(2664), - [anon_sym_PLUS_PLUS] = ACTIONS(2664), - [anon_sym_sizeof] = ACTIONS(2662), - [sym_number_literal] = ACTIONS(2664), - [anon_sym_L_SQUOTE] = ACTIONS(2664), - [anon_sym_u_SQUOTE] = ACTIONS(2664), - [anon_sym_U_SQUOTE] = ACTIONS(2664), - [anon_sym_u8_SQUOTE] = ACTIONS(2664), - [anon_sym_SQUOTE] = ACTIONS(2664), - [anon_sym_L_DQUOTE] = ACTIONS(2664), - [anon_sym_u_DQUOTE] = ACTIONS(2664), - [anon_sym_U_DQUOTE] = ACTIONS(2664), - [anon_sym_u8_DQUOTE] = ACTIONS(2664), - [anon_sym_DQUOTE] = ACTIONS(2664), - [sym_true] = ACTIONS(2662), - [sym_false] = ACTIONS(2662), - [sym_null] = ACTIONS(2662), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2662), - [anon_sym_decltype] = ACTIONS(2662), - [anon_sym_virtual] = ACTIONS(2662), - [anon_sym_explicit] = ACTIONS(2662), - [anon_sym_typename] = ACTIONS(2662), - [anon_sym_template] = ACTIONS(2662), - [anon_sym_operator] = ACTIONS(2662), - [anon_sym_try] = ACTIONS(2662), - [anon_sym_delete] = ACTIONS(2662), - [anon_sym_throw] = ACTIONS(2662), - [anon_sym_namespace] = ACTIONS(2662), - [anon_sym_using] = ACTIONS(2662), - [anon_sym_static_assert] = ACTIONS(2662), - [anon_sym_concept] = ACTIONS(2662), - [anon_sym_co_return] = ACTIONS(2662), - [anon_sym_co_yield] = ACTIONS(2662), - [anon_sym_R_DQUOTE] = ACTIONS(2664), - [anon_sym_LR_DQUOTE] = ACTIONS(2664), - [anon_sym_uR_DQUOTE] = ACTIONS(2664), - [anon_sym_UR_DQUOTE] = ACTIONS(2664), - [anon_sym_u8R_DQUOTE] = ACTIONS(2664), - [anon_sym_co_await] = ACTIONS(2662), - [anon_sym_new] = ACTIONS(2662), - [anon_sym_requires] = ACTIONS(2662), - [sym_this] = ACTIONS(2662), - [sym_nullptr] = ACTIONS(2662), + [880] = { + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_RBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, - [951] = { - [sym_identifier] = ACTIONS(2790), - [aux_sym_preproc_include_token1] = ACTIONS(2790), - [aux_sym_preproc_def_token1] = ACTIONS(2790), - [aux_sym_preproc_if_token1] = ACTIONS(2790), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2790), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2790), - [sym_preproc_directive] = ACTIONS(2790), - [anon_sym_LPAREN2] = ACTIONS(2792), - [anon_sym_BANG] = ACTIONS(2792), - [anon_sym_TILDE] = ACTIONS(2792), - [anon_sym_DASH] = ACTIONS(2790), - [anon_sym_PLUS] = ACTIONS(2790), - [anon_sym_STAR] = ACTIONS(2792), - [anon_sym_AMP_AMP] = ACTIONS(2792), - [anon_sym_AMP] = ACTIONS(2790), - [anon_sym_SEMI] = ACTIONS(2792), - [anon_sym_typedef] = ACTIONS(2790), - [anon_sym_extern] = ACTIONS(2790), - [anon_sym___attribute__] = ACTIONS(2790), - [anon_sym_COLON_COLON] = ACTIONS(2792), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2792), - [anon_sym___declspec] = ACTIONS(2790), - [anon_sym___based] = ACTIONS(2790), - [anon_sym___cdecl] = ACTIONS(2790), - [anon_sym___clrcall] = ACTIONS(2790), - [anon_sym___stdcall] = ACTIONS(2790), - [anon_sym___fastcall] = ACTIONS(2790), - [anon_sym___thiscall] = ACTIONS(2790), - [anon_sym___vectorcall] = ACTIONS(2790), - [anon_sym_LBRACE] = ACTIONS(2792), - [anon_sym_RBRACE] = ACTIONS(2792), - [anon_sym_LBRACK] = ACTIONS(2790), - [anon_sym_static] = ACTIONS(2790), - [anon_sym_register] = ACTIONS(2790), - [anon_sym_inline] = ACTIONS(2790), - [anon_sym_thread_local] = ACTIONS(2790), - [anon_sym_const] = ACTIONS(2790), - [anon_sym_volatile] = ACTIONS(2790), - [anon_sym_restrict] = ACTIONS(2790), - [anon_sym__Atomic] = ACTIONS(2790), - [anon_sym_mutable] = ACTIONS(2790), - [anon_sym_constexpr] = ACTIONS(2790), - [anon_sym_constinit] = ACTIONS(2790), - [anon_sym_consteval] = ACTIONS(2790), - [anon_sym_signed] = ACTIONS(2790), - [anon_sym_unsigned] = ACTIONS(2790), - [anon_sym_long] = ACTIONS(2790), - [anon_sym_short] = ACTIONS(2790), - [sym_primitive_type] = ACTIONS(2790), - [anon_sym_enum] = ACTIONS(2790), - [anon_sym_class] = ACTIONS(2790), - [anon_sym_struct] = ACTIONS(2790), - [anon_sym_union] = ACTIONS(2790), - [anon_sym_if] = ACTIONS(2790), - [anon_sym_switch] = ACTIONS(2790), - [anon_sym_case] = ACTIONS(2790), - [anon_sym_default] = ACTIONS(2790), - [anon_sym_while] = ACTIONS(2790), - [anon_sym_do] = ACTIONS(2790), - [anon_sym_for] = ACTIONS(2790), - [anon_sym_return] = ACTIONS(2790), - [anon_sym_break] = ACTIONS(2790), - [anon_sym_continue] = ACTIONS(2790), - [anon_sym_goto] = ACTIONS(2790), - [anon_sym_not] = ACTIONS(2790), - [anon_sym_compl] = ACTIONS(2790), - [anon_sym_DASH_DASH] = ACTIONS(2792), - [anon_sym_PLUS_PLUS] = ACTIONS(2792), - [anon_sym_sizeof] = ACTIONS(2790), - [sym_number_literal] = ACTIONS(2792), - [anon_sym_L_SQUOTE] = ACTIONS(2792), - [anon_sym_u_SQUOTE] = ACTIONS(2792), - [anon_sym_U_SQUOTE] = ACTIONS(2792), - [anon_sym_u8_SQUOTE] = ACTIONS(2792), - [anon_sym_SQUOTE] = ACTIONS(2792), - [anon_sym_L_DQUOTE] = ACTIONS(2792), - [anon_sym_u_DQUOTE] = ACTIONS(2792), - [anon_sym_U_DQUOTE] = ACTIONS(2792), - [anon_sym_u8_DQUOTE] = ACTIONS(2792), - [anon_sym_DQUOTE] = ACTIONS(2792), - [sym_true] = ACTIONS(2790), - [sym_false] = ACTIONS(2790), - [sym_null] = ACTIONS(2790), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2790), - [anon_sym_decltype] = ACTIONS(2790), - [anon_sym_virtual] = ACTIONS(2790), - [anon_sym_explicit] = ACTIONS(2790), - [anon_sym_typename] = ACTIONS(2790), - [anon_sym_template] = ACTIONS(2790), - [anon_sym_operator] = ACTIONS(2790), - [anon_sym_try] = ACTIONS(2790), - [anon_sym_delete] = ACTIONS(2790), - [anon_sym_throw] = ACTIONS(2790), - [anon_sym_namespace] = ACTIONS(2790), - [anon_sym_using] = ACTIONS(2790), - [anon_sym_static_assert] = ACTIONS(2790), - [anon_sym_concept] = ACTIONS(2790), - [anon_sym_co_return] = ACTIONS(2790), - [anon_sym_co_yield] = ACTIONS(2790), - [anon_sym_R_DQUOTE] = ACTIONS(2792), - [anon_sym_LR_DQUOTE] = ACTIONS(2792), - [anon_sym_uR_DQUOTE] = ACTIONS(2792), - [anon_sym_UR_DQUOTE] = ACTIONS(2792), - [anon_sym_u8R_DQUOTE] = ACTIONS(2792), - [anon_sym_co_await] = ACTIONS(2790), - [anon_sym_new] = ACTIONS(2790), - [anon_sym_requires] = ACTIONS(2790), - [sym_this] = ACTIONS(2790), - [sym_nullptr] = ACTIONS(2790), + [881] = { + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_RBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, - [952] = { - [sym_identifier] = ACTIONS(2794), - [aux_sym_preproc_include_token1] = ACTIONS(2794), - [aux_sym_preproc_def_token1] = ACTIONS(2794), - [aux_sym_preproc_if_token1] = ACTIONS(2794), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2794), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2794), - [sym_preproc_directive] = ACTIONS(2794), - [anon_sym_LPAREN2] = ACTIONS(2796), - [anon_sym_BANG] = ACTIONS(2796), - [anon_sym_TILDE] = ACTIONS(2796), - [anon_sym_DASH] = ACTIONS(2794), - [anon_sym_PLUS] = ACTIONS(2794), - [anon_sym_STAR] = ACTIONS(2796), - [anon_sym_AMP_AMP] = ACTIONS(2796), - [anon_sym_AMP] = ACTIONS(2794), - [anon_sym_SEMI] = ACTIONS(2796), - [anon_sym_typedef] = ACTIONS(2794), - [anon_sym_extern] = ACTIONS(2794), - [anon_sym___attribute__] = ACTIONS(2794), - [anon_sym_COLON_COLON] = ACTIONS(2796), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2796), - [anon_sym___declspec] = ACTIONS(2794), - [anon_sym___based] = ACTIONS(2794), - [anon_sym___cdecl] = ACTIONS(2794), - [anon_sym___clrcall] = ACTIONS(2794), - [anon_sym___stdcall] = ACTIONS(2794), - [anon_sym___fastcall] = ACTIONS(2794), - [anon_sym___thiscall] = ACTIONS(2794), - [anon_sym___vectorcall] = ACTIONS(2794), - [anon_sym_LBRACE] = ACTIONS(2796), - [anon_sym_RBRACE] = ACTIONS(2796), - [anon_sym_LBRACK] = ACTIONS(2794), - [anon_sym_static] = ACTIONS(2794), - [anon_sym_register] = ACTIONS(2794), - [anon_sym_inline] = ACTIONS(2794), - [anon_sym_thread_local] = ACTIONS(2794), - [anon_sym_const] = ACTIONS(2794), - [anon_sym_volatile] = ACTIONS(2794), - [anon_sym_restrict] = ACTIONS(2794), - [anon_sym__Atomic] = ACTIONS(2794), - [anon_sym_mutable] = ACTIONS(2794), - [anon_sym_constexpr] = ACTIONS(2794), - [anon_sym_constinit] = ACTIONS(2794), - [anon_sym_consteval] = ACTIONS(2794), - [anon_sym_signed] = ACTIONS(2794), - [anon_sym_unsigned] = ACTIONS(2794), - [anon_sym_long] = ACTIONS(2794), - [anon_sym_short] = ACTIONS(2794), - [sym_primitive_type] = ACTIONS(2794), - [anon_sym_enum] = ACTIONS(2794), - [anon_sym_class] = ACTIONS(2794), - [anon_sym_struct] = ACTIONS(2794), - [anon_sym_union] = ACTIONS(2794), - [anon_sym_if] = ACTIONS(2794), - [anon_sym_switch] = ACTIONS(2794), - [anon_sym_case] = ACTIONS(2794), - [anon_sym_default] = ACTIONS(2794), - [anon_sym_while] = ACTIONS(2794), - [anon_sym_do] = ACTIONS(2794), - [anon_sym_for] = ACTIONS(2794), - [anon_sym_return] = ACTIONS(2794), - [anon_sym_break] = ACTIONS(2794), - [anon_sym_continue] = ACTIONS(2794), - [anon_sym_goto] = ACTIONS(2794), - [anon_sym_not] = ACTIONS(2794), - [anon_sym_compl] = ACTIONS(2794), - [anon_sym_DASH_DASH] = ACTIONS(2796), - [anon_sym_PLUS_PLUS] = ACTIONS(2796), - [anon_sym_sizeof] = ACTIONS(2794), - [sym_number_literal] = ACTIONS(2796), - [anon_sym_L_SQUOTE] = ACTIONS(2796), - [anon_sym_u_SQUOTE] = ACTIONS(2796), - [anon_sym_U_SQUOTE] = ACTIONS(2796), - [anon_sym_u8_SQUOTE] = ACTIONS(2796), - [anon_sym_SQUOTE] = ACTIONS(2796), - [anon_sym_L_DQUOTE] = ACTIONS(2796), - [anon_sym_u_DQUOTE] = ACTIONS(2796), - [anon_sym_U_DQUOTE] = ACTIONS(2796), - [anon_sym_u8_DQUOTE] = ACTIONS(2796), - [anon_sym_DQUOTE] = ACTIONS(2796), - [sym_true] = ACTIONS(2794), - [sym_false] = ACTIONS(2794), - [sym_null] = ACTIONS(2794), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2794), - [anon_sym_decltype] = ACTIONS(2794), - [anon_sym_virtual] = ACTIONS(2794), - [anon_sym_explicit] = ACTIONS(2794), - [anon_sym_typename] = ACTIONS(2794), - [anon_sym_template] = ACTIONS(2794), - [anon_sym_operator] = ACTIONS(2794), - [anon_sym_try] = ACTIONS(2794), - [anon_sym_delete] = ACTIONS(2794), - [anon_sym_throw] = ACTIONS(2794), - [anon_sym_namespace] = ACTIONS(2794), - [anon_sym_using] = ACTIONS(2794), - [anon_sym_static_assert] = ACTIONS(2794), - [anon_sym_concept] = ACTIONS(2794), - [anon_sym_co_return] = ACTIONS(2794), - [anon_sym_co_yield] = ACTIONS(2794), - [anon_sym_R_DQUOTE] = ACTIONS(2796), - [anon_sym_LR_DQUOTE] = ACTIONS(2796), - [anon_sym_uR_DQUOTE] = ACTIONS(2796), - [anon_sym_UR_DQUOTE] = ACTIONS(2796), - [anon_sym_u8R_DQUOTE] = ACTIONS(2796), - [anon_sym_co_await] = ACTIONS(2794), - [anon_sym_new] = ACTIONS(2794), - [anon_sym_requires] = ACTIONS(2794), - [sym_this] = ACTIONS(2794), - [sym_nullptr] = ACTIONS(2794), + [882] = { + [sym_identifier] = ACTIONS(3113), + [aux_sym_preproc_include_token1] = ACTIONS(3113), + [aux_sym_preproc_def_token1] = ACTIONS(3113), + [aux_sym_preproc_if_token1] = ACTIONS(3113), + [aux_sym_preproc_if_token2] = ACTIONS(3113), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3113), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3113), + [sym_preproc_directive] = ACTIONS(3113), + [anon_sym_LPAREN2] = ACTIONS(3115), + [anon_sym_BANG] = ACTIONS(3115), + [anon_sym_TILDE] = ACTIONS(3115), + [anon_sym_DASH] = ACTIONS(3113), + [anon_sym_PLUS] = ACTIONS(3113), + [anon_sym_STAR] = ACTIONS(3115), + [anon_sym_AMP_AMP] = ACTIONS(3115), + [anon_sym_AMP] = ACTIONS(3113), + [anon_sym_SEMI] = ACTIONS(3115), + [anon_sym_typedef] = ACTIONS(3113), + [anon_sym_extern] = ACTIONS(3113), + [anon_sym___attribute__] = ACTIONS(3113), + [anon_sym_COLON_COLON] = ACTIONS(3115), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3115), + [anon_sym___declspec] = ACTIONS(3113), + [anon_sym___based] = ACTIONS(3113), + [anon_sym___cdecl] = ACTIONS(3113), + [anon_sym___clrcall] = ACTIONS(3113), + [anon_sym___stdcall] = ACTIONS(3113), + [anon_sym___fastcall] = ACTIONS(3113), + [anon_sym___thiscall] = ACTIONS(3113), + [anon_sym___vectorcall] = ACTIONS(3113), + [anon_sym_LBRACE] = ACTIONS(3115), + [anon_sym_LBRACK] = ACTIONS(3113), + [anon_sym_static] = ACTIONS(3113), + [anon_sym_register] = ACTIONS(3113), + [anon_sym_inline] = ACTIONS(3113), + [anon_sym_thread_local] = ACTIONS(3113), + [anon_sym_const] = ACTIONS(3113), + [anon_sym_constexpr] = ACTIONS(3113), + [anon_sym_volatile] = ACTIONS(3113), + [anon_sym_restrict] = ACTIONS(3113), + [anon_sym___restrict__] = ACTIONS(3113), + [anon_sym__Atomic] = ACTIONS(3113), + [anon_sym__Noreturn] = ACTIONS(3113), + [anon_sym_noreturn] = ACTIONS(3113), + [anon_sym_mutable] = ACTIONS(3113), + [anon_sym_constinit] = ACTIONS(3113), + [anon_sym_consteval] = ACTIONS(3113), + [anon_sym_signed] = ACTIONS(3113), + [anon_sym_unsigned] = ACTIONS(3113), + [anon_sym_long] = ACTIONS(3113), + [anon_sym_short] = ACTIONS(3113), + [sym_primitive_type] = ACTIONS(3113), + [anon_sym_enum] = ACTIONS(3113), + [anon_sym_class] = ACTIONS(3113), + [anon_sym_struct] = ACTIONS(3113), + [anon_sym_union] = ACTIONS(3113), + [anon_sym_if] = ACTIONS(3113), + [anon_sym_else] = ACTIONS(3113), + [anon_sym_switch] = ACTIONS(3113), + [anon_sym_case] = ACTIONS(3113), + [anon_sym_default] = ACTIONS(3113), + [anon_sym_while] = ACTIONS(3113), + [anon_sym_do] = ACTIONS(3113), + [anon_sym_for] = ACTIONS(3113), + [anon_sym_return] = ACTIONS(3113), + [anon_sym_break] = ACTIONS(3113), + [anon_sym_continue] = ACTIONS(3113), + [anon_sym_goto] = ACTIONS(3113), + [anon_sym_not] = ACTIONS(3113), + [anon_sym_compl] = ACTIONS(3113), + [anon_sym_DASH_DASH] = ACTIONS(3115), + [anon_sym_PLUS_PLUS] = ACTIONS(3115), + [anon_sym_sizeof] = ACTIONS(3113), + [anon_sym_offsetof] = ACTIONS(3113), + [anon_sym__Generic] = ACTIONS(3113), + [anon_sym_asm] = ACTIONS(3113), + [anon_sym___asm__] = ACTIONS(3113), + [sym_number_literal] = ACTIONS(3115), + [anon_sym_L_SQUOTE] = ACTIONS(3115), + [anon_sym_u_SQUOTE] = ACTIONS(3115), + [anon_sym_U_SQUOTE] = ACTIONS(3115), + [anon_sym_u8_SQUOTE] = ACTIONS(3115), + [anon_sym_SQUOTE] = ACTIONS(3115), + [anon_sym_L_DQUOTE] = ACTIONS(3115), + [anon_sym_u_DQUOTE] = ACTIONS(3115), + [anon_sym_U_DQUOTE] = ACTIONS(3115), + [anon_sym_u8_DQUOTE] = ACTIONS(3115), + [anon_sym_DQUOTE] = ACTIONS(3115), + [sym_true] = ACTIONS(3113), + [sym_false] = ACTIONS(3113), + [anon_sym_NULL] = ACTIONS(3113), + [anon_sym_nullptr] = ACTIONS(3113), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3113), + [anon_sym_decltype] = ACTIONS(3113), + [anon_sym_virtual] = ACTIONS(3113), + [anon_sym_explicit] = ACTIONS(3113), + [anon_sym_typename] = ACTIONS(3113), + [anon_sym_template] = ACTIONS(3113), + [anon_sym_operator] = ACTIONS(3113), + [anon_sym_try] = ACTIONS(3113), + [anon_sym_delete] = ACTIONS(3113), + [anon_sym_throw] = ACTIONS(3113), + [anon_sym_namespace] = ACTIONS(3113), + [anon_sym_using] = ACTIONS(3113), + [anon_sym_static_assert] = ACTIONS(3113), + [anon_sym_concept] = ACTIONS(3113), + [anon_sym_co_return] = ACTIONS(3113), + [anon_sym_co_yield] = ACTIONS(3113), + [anon_sym_R_DQUOTE] = ACTIONS(3115), + [anon_sym_LR_DQUOTE] = ACTIONS(3115), + [anon_sym_uR_DQUOTE] = ACTIONS(3115), + [anon_sym_UR_DQUOTE] = ACTIONS(3115), + [anon_sym_u8R_DQUOTE] = ACTIONS(3115), + [anon_sym_co_await] = ACTIONS(3113), + [anon_sym_new] = ACTIONS(3113), + [anon_sym_requires] = ACTIONS(3113), + [sym_this] = ACTIONS(3113), }, - [953] = { + [883] = { [sym_identifier] = ACTIONS(2908), [aux_sym_preproc_include_token1] = ACTIONS(2908), [aux_sym_preproc_def_token1] = ACTIONS(2908), @@ -145091,11 +165375,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(2908), [anon_sym_thread_local] = ACTIONS(2908), [anon_sym_const] = ACTIONS(2908), + [anon_sym_constexpr] = ACTIONS(2908), [anon_sym_volatile] = ACTIONS(2908), [anon_sym_restrict] = ACTIONS(2908), + [anon_sym___restrict__] = ACTIONS(2908), [anon_sym__Atomic] = ACTIONS(2908), + [anon_sym__Noreturn] = ACTIONS(2908), + [anon_sym_noreturn] = ACTIONS(2908), [anon_sym_mutable] = ACTIONS(2908), - [anon_sym_constexpr] = ACTIONS(2908), [anon_sym_constinit] = ACTIONS(2908), [anon_sym_consteval] = ACTIONS(2908), [anon_sym_signed] = ACTIONS(2908), @@ -145108,6 +165395,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(2908), [anon_sym_union] = ACTIONS(2908), [anon_sym_if] = ACTIONS(2908), + [anon_sym_else] = ACTIONS(2908), [anon_sym_switch] = ACTIONS(2908), [anon_sym_case] = ACTIONS(2908), [anon_sym_default] = ACTIONS(2908), @@ -145123,6 +165411,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(2910), [anon_sym_PLUS_PLUS] = ACTIONS(2910), [anon_sym_sizeof] = ACTIONS(2908), + [anon_sym_offsetof] = ACTIONS(2908), + [anon_sym__Generic] = ACTIONS(2908), + [anon_sym_asm] = ACTIONS(2908), + [anon_sym___asm__] = ACTIONS(2908), [sym_number_literal] = ACTIONS(2910), [anon_sym_L_SQUOTE] = ACTIONS(2910), [anon_sym_u_SQUOTE] = ACTIONS(2910), @@ -145136,7 +165428,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(2910), [sym_true] = ACTIONS(2908), [sym_false] = ACTIONS(2908), - [sym_null] = ACTIONS(2908), + [anon_sym_NULL] = ACTIONS(2908), + [anon_sym_nullptr] = ACTIONS(2908), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(2908), [anon_sym_decltype] = ACTIONS(2908), @@ -145163,1358 +165456,4092 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(2908), [anon_sym_requires] = ACTIONS(2908), [sym_this] = ACTIONS(2908), - [sym_nullptr] = ACTIONS(2908), }, - [954] = { - [sym_identifier] = ACTIONS(2798), - [aux_sym_preproc_include_token1] = ACTIONS(2798), - [aux_sym_preproc_def_token1] = ACTIONS(2798), - [aux_sym_preproc_if_token1] = ACTIONS(2798), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2798), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2798), - [sym_preproc_directive] = ACTIONS(2798), - [anon_sym_LPAREN2] = ACTIONS(2800), - [anon_sym_BANG] = ACTIONS(2800), - [anon_sym_TILDE] = ACTIONS(2800), - [anon_sym_DASH] = ACTIONS(2798), - [anon_sym_PLUS] = ACTIONS(2798), - [anon_sym_STAR] = ACTIONS(2800), - [anon_sym_AMP_AMP] = ACTIONS(2800), - [anon_sym_AMP] = ACTIONS(2798), - [anon_sym_SEMI] = ACTIONS(2800), - [anon_sym_typedef] = ACTIONS(2798), - [anon_sym_extern] = ACTIONS(2798), - [anon_sym___attribute__] = ACTIONS(2798), - [anon_sym_COLON_COLON] = ACTIONS(2800), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2800), - [anon_sym___declspec] = ACTIONS(2798), - [anon_sym___based] = ACTIONS(2798), - [anon_sym___cdecl] = ACTIONS(2798), - [anon_sym___clrcall] = ACTIONS(2798), - [anon_sym___stdcall] = ACTIONS(2798), - [anon_sym___fastcall] = ACTIONS(2798), - [anon_sym___thiscall] = ACTIONS(2798), - [anon_sym___vectorcall] = ACTIONS(2798), - [anon_sym_LBRACE] = ACTIONS(2800), - [anon_sym_RBRACE] = ACTIONS(2800), - [anon_sym_LBRACK] = ACTIONS(2798), - [anon_sym_static] = ACTIONS(2798), - [anon_sym_register] = ACTIONS(2798), - [anon_sym_inline] = ACTIONS(2798), - [anon_sym_thread_local] = ACTIONS(2798), - [anon_sym_const] = ACTIONS(2798), - [anon_sym_volatile] = ACTIONS(2798), - [anon_sym_restrict] = ACTIONS(2798), - [anon_sym__Atomic] = ACTIONS(2798), - [anon_sym_mutable] = ACTIONS(2798), - [anon_sym_constexpr] = ACTIONS(2798), - [anon_sym_constinit] = ACTIONS(2798), - [anon_sym_consteval] = ACTIONS(2798), - [anon_sym_signed] = ACTIONS(2798), - [anon_sym_unsigned] = ACTIONS(2798), - [anon_sym_long] = ACTIONS(2798), - [anon_sym_short] = ACTIONS(2798), - [sym_primitive_type] = ACTIONS(2798), - [anon_sym_enum] = ACTIONS(2798), - [anon_sym_class] = ACTIONS(2798), - [anon_sym_struct] = ACTIONS(2798), - [anon_sym_union] = ACTIONS(2798), - [anon_sym_if] = ACTIONS(2798), - [anon_sym_switch] = ACTIONS(2798), - [anon_sym_case] = ACTIONS(2798), - [anon_sym_default] = ACTIONS(2798), - [anon_sym_while] = ACTIONS(2798), - [anon_sym_do] = ACTIONS(2798), - [anon_sym_for] = ACTIONS(2798), - [anon_sym_return] = ACTIONS(2798), - [anon_sym_break] = ACTIONS(2798), - [anon_sym_continue] = ACTIONS(2798), - [anon_sym_goto] = ACTIONS(2798), - [anon_sym_not] = ACTIONS(2798), - [anon_sym_compl] = ACTIONS(2798), - [anon_sym_DASH_DASH] = ACTIONS(2800), - [anon_sym_PLUS_PLUS] = ACTIONS(2800), - [anon_sym_sizeof] = ACTIONS(2798), - [sym_number_literal] = ACTIONS(2800), - [anon_sym_L_SQUOTE] = ACTIONS(2800), - [anon_sym_u_SQUOTE] = ACTIONS(2800), - [anon_sym_U_SQUOTE] = ACTIONS(2800), - [anon_sym_u8_SQUOTE] = ACTIONS(2800), - [anon_sym_SQUOTE] = ACTIONS(2800), - [anon_sym_L_DQUOTE] = ACTIONS(2800), - [anon_sym_u_DQUOTE] = ACTIONS(2800), - [anon_sym_U_DQUOTE] = ACTIONS(2800), - [anon_sym_u8_DQUOTE] = ACTIONS(2800), - [anon_sym_DQUOTE] = ACTIONS(2800), - [sym_true] = ACTIONS(2798), - [sym_false] = ACTIONS(2798), - [sym_null] = ACTIONS(2798), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2798), - [anon_sym_decltype] = ACTIONS(2798), - [anon_sym_virtual] = ACTIONS(2798), - [anon_sym_explicit] = ACTIONS(2798), - [anon_sym_typename] = ACTIONS(2798), - [anon_sym_template] = ACTIONS(2798), - [anon_sym_operator] = ACTIONS(2798), - [anon_sym_try] = ACTIONS(2798), - [anon_sym_delete] = ACTIONS(2798), - [anon_sym_throw] = ACTIONS(2798), - [anon_sym_namespace] = ACTIONS(2798), - [anon_sym_using] = ACTIONS(2798), - [anon_sym_static_assert] = ACTIONS(2798), - [anon_sym_concept] = ACTIONS(2798), - [anon_sym_co_return] = ACTIONS(2798), - [anon_sym_co_yield] = ACTIONS(2798), - [anon_sym_R_DQUOTE] = ACTIONS(2800), - [anon_sym_LR_DQUOTE] = ACTIONS(2800), - [anon_sym_uR_DQUOTE] = ACTIONS(2800), - [anon_sym_UR_DQUOTE] = ACTIONS(2800), - [anon_sym_u8R_DQUOTE] = ACTIONS(2800), - [anon_sym_co_await] = ACTIONS(2798), - [anon_sym_new] = ACTIONS(2798), - [anon_sym_requires] = ACTIONS(2798), - [sym_this] = ACTIONS(2798), - [sym_nullptr] = ACTIONS(2798), + [884] = { + [ts_builtin_sym_end] = ACTIONS(3081), + [sym_identifier] = ACTIONS(3079), + [aux_sym_preproc_include_token1] = ACTIONS(3079), + [aux_sym_preproc_def_token1] = ACTIONS(3079), + [aux_sym_preproc_if_token1] = ACTIONS(3079), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3079), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3079), + [sym_preproc_directive] = ACTIONS(3079), + [anon_sym_LPAREN2] = ACTIONS(3081), + [anon_sym_BANG] = ACTIONS(3081), + [anon_sym_TILDE] = ACTIONS(3081), + [anon_sym_DASH] = ACTIONS(3079), + [anon_sym_PLUS] = ACTIONS(3079), + [anon_sym_STAR] = ACTIONS(3081), + [anon_sym_AMP_AMP] = ACTIONS(3081), + [anon_sym_AMP] = ACTIONS(3079), + [anon_sym_SEMI] = ACTIONS(3081), + [anon_sym_typedef] = ACTIONS(3079), + [anon_sym_extern] = ACTIONS(3079), + [anon_sym___attribute__] = ACTIONS(3079), + [anon_sym_COLON_COLON] = ACTIONS(3081), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3081), + [anon_sym___declspec] = ACTIONS(3079), + [anon_sym___based] = ACTIONS(3079), + [anon_sym___cdecl] = ACTIONS(3079), + [anon_sym___clrcall] = ACTIONS(3079), + [anon_sym___stdcall] = ACTIONS(3079), + [anon_sym___fastcall] = ACTIONS(3079), + [anon_sym___thiscall] = ACTIONS(3079), + [anon_sym___vectorcall] = ACTIONS(3079), + [anon_sym_LBRACE] = ACTIONS(3081), + [anon_sym_LBRACK] = ACTIONS(3079), + [anon_sym_static] = ACTIONS(3079), + [anon_sym_register] = ACTIONS(3079), + [anon_sym_inline] = ACTIONS(3079), + [anon_sym_thread_local] = ACTIONS(3079), + [anon_sym_const] = ACTIONS(3079), + [anon_sym_constexpr] = ACTIONS(3079), + [anon_sym_volatile] = ACTIONS(3079), + [anon_sym_restrict] = ACTIONS(3079), + [anon_sym___restrict__] = ACTIONS(3079), + [anon_sym__Atomic] = ACTIONS(3079), + [anon_sym__Noreturn] = ACTIONS(3079), + [anon_sym_noreturn] = ACTIONS(3079), + [anon_sym_mutable] = ACTIONS(3079), + [anon_sym_constinit] = ACTIONS(3079), + [anon_sym_consteval] = ACTIONS(3079), + [anon_sym_signed] = ACTIONS(3079), + [anon_sym_unsigned] = ACTIONS(3079), + [anon_sym_long] = ACTIONS(3079), + [anon_sym_short] = ACTIONS(3079), + [sym_primitive_type] = ACTIONS(3079), + [anon_sym_enum] = ACTIONS(3079), + [anon_sym_class] = ACTIONS(3079), + [anon_sym_struct] = ACTIONS(3079), + [anon_sym_union] = ACTIONS(3079), + [anon_sym_if] = ACTIONS(3079), + [anon_sym_else] = ACTIONS(3603), + [anon_sym_switch] = ACTIONS(3079), + [anon_sym_case] = ACTIONS(3079), + [anon_sym_default] = ACTIONS(3079), + [anon_sym_while] = ACTIONS(3079), + [anon_sym_do] = ACTIONS(3079), + [anon_sym_for] = ACTIONS(3079), + [anon_sym_return] = ACTIONS(3079), + [anon_sym_break] = ACTIONS(3079), + [anon_sym_continue] = ACTIONS(3079), + [anon_sym_goto] = ACTIONS(3079), + [anon_sym_not] = ACTIONS(3079), + [anon_sym_compl] = ACTIONS(3079), + [anon_sym_DASH_DASH] = ACTIONS(3081), + [anon_sym_PLUS_PLUS] = ACTIONS(3081), + [anon_sym_sizeof] = ACTIONS(3079), + [anon_sym_offsetof] = ACTIONS(3079), + [anon_sym__Generic] = ACTIONS(3079), + [anon_sym_asm] = ACTIONS(3079), + [anon_sym___asm__] = ACTIONS(3079), + [sym_number_literal] = ACTIONS(3081), + [anon_sym_L_SQUOTE] = ACTIONS(3081), + [anon_sym_u_SQUOTE] = ACTIONS(3081), + [anon_sym_U_SQUOTE] = ACTIONS(3081), + [anon_sym_u8_SQUOTE] = ACTIONS(3081), + [anon_sym_SQUOTE] = ACTIONS(3081), + [anon_sym_L_DQUOTE] = ACTIONS(3081), + [anon_sym_u_DQUOTE] = ACTIONS(3081), + [anon_sym_U_DQUOTE] = ACTIONS(3081), + [anon_sym_u8_DQUOTE] = ACTIONS(3081), + [anon_sym_DQUOTE] = ACTIONS(3081), + [sym_true] = ACTIONS(3079), + [sym_false] = ACTIONS(3079), + [anon_sym_NULL] = ACTIONS(3079), + [anon_sym_nullptr] = ACTIONS(3079), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3079), + [anon_sym_decltype] = ACTIONS(3079), + [anon_sym_virtual] = ACTIONS(3079), + [anon_sym_explicit] = ACTIONS(3079), + [anon_sym_typename] = ACTIONS(3079), + [anon_sym_template] = ACTIONS(3079), + [anon_sym_operator] = ACTIONS(3079), + [anon_sym_try] = ACTIONS(3079), + [anon_sym_delete] = ACTIONS(3079), + [anon_sym_throw] = ACTIONS(3079), + [anon_sym_namespace] = ACTIONS(3079), + [anon_sym_using] = ACTIONS(3079), + [anon_sym_static_assert] = ACTIONS(3079), + [anon_sym_concept] = ACTIONS(3079), + [anon_sym_co_return] = ACTIONS(3079), + [anon_sym_co_yield] = ACTIONS(3079), + [anon_sym_R_DQUOTE] = ACTIONS(3081), + [anon_sym_LR_DQUOTE] = ACTIONS(3081), + [anon_sym_uR_DQUOTE] = ACTIONS(3081), + [anon_sym_UR_DQUOTE] = ACTIONS(3081), + [anon_sym_u8R_DQUOTE] = ACTIONS(3081), + [anon_sym_co_await] = ACTIONS(3079), + [anon_sym_new] = ACTIONS(3079), + [anon_sym_requires] = ACTIONS(3079), + [sym_this] = ACTIONS(3079), }, - [955] = { - [sym_identifier] = ACTIONS(2802), - [aux_sym_preproc_include_token1] = ACTIONS(2802), - [aux_sym_preproc_def_token1] = ACTIONS(2802), - [aux_sym_preproc_if_token1] = ACTIONS(2802), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2802), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2802), - [sym_preproc_directive] = ACTIONS(2802), - [anon_sym_LPAREN2] = ACTIONS(2804), - [anon_sym_BANG] = ACTIONS(2804), - [anon_sym_TILDE] = ACTIONS(2804), - [anon_sym_DASH] = ACTIONS(2802), - [anon_sym_PLUS] = ACTIONS(2802), - [anon_sym_STAR] = ACTIONS(2804), - [anon_sym_AMP_AMP] = ACTIONS(2804), - [anon_sym_AMP] = ACTIONS(2802), - [anon_sym_SEMI] = ACTIONS(2804), - [anon_sym_typedef] = ACTIONS(2802), - [anon_sym_extern] = ACTIONS(2802), - [anon_sym___attribute__] = ACTIONS(2802), - [anon_sym_COLON_COLON] = ACTIONS(2804), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2804), - [anon_sym___declspec] = ACTIONS(2802), - [anon_sym___based] = ACTIONS(2802), - [anon_sym___cdecl] = ACTIONS(2802), - [anon_sym___clrcall] = ACTIONS(2802), - [anon_sym___stdcall] = ACTIONS(2802), - [anon_sym___fastcall] = ACTIONS(2802), - [anon_sym___thiscall] = ACTIONS(2802), - [anon_sym___vectorcall] = ACTIONS(2802), - [anon_sym_LBRACE] = ACTIONS(2804), - [anon_sym_RBRACE] = ACTIONS(2804), - [anon_sym_LBRACK] = ACTIONS(2802), - [anon_sym_static] = ACTIONS(2802), - [anon_sym_register] = ACTIONS(2802), - [anon_sym_inline] = ACTIONS(2802), - [anon_sym_thread_local] = ACTIONS(2802), - [anon_sym_const] = ACTIONS(2802), - [anon_sym_volatile] = ACTIONS(2802), - [anon_sym_restrict] = ACTIONS(2802), - [anon_sym__Atomic] = ACTIONS(2802), - [anon_sym_mutable] = ACTIONS(2802), - [anon_sym_constexpr] = ACTIONS(2802), - [anon_sym_constinit] = ACTIONS(2802), - [anon_sym_consteval] = ACTIONS(2802), - [anon_sym_signed] = ACTIONS(2802), - [anon_sym_unsigned] = ACTIONS(2802), - [anon_sym_long] = ACTIONS(2802), - [anon_sym_short] = ACTIONS(2802), - [sym_primitive_type] = ACTIONS(2802), - [anon_sym_enum] = ACTIONS(2802), - [anon_sym_class] = ACTIONS(2802), - [anon_sym_struct] = ACTIONS(2802), - [anon_sym_union] = ACTIONS(2802), - [anon_sym_if] = ACTIONS(2802), - [anon_sym_switch] = ACTIONS(2802), - [anon_sym_case] = ACTIONS(2802), - [anon_sym_default] = ACTIONS(2802), - [anon_sym_while] = ACTIONS(2802), - [anon_sym_do] = ACTIONS(2802), - [anon_sym_for] = ACTIONS(2802), - [anon_sym_return] = ACTIONS(2802), - [anon_sym_break] = ACTIONS(2802), - [anon_sym_continue] = ACTIONS(2802), - [anon_sym_goto] = ACTIONS(2802), - [anon_sym_not] = ACTIONS(2802), - [anon_sym_compl] = ACTIONS(2802), - [anon_sym_DASH_DASH] = ACTIONS(2804), - [anon_sym_PLUS_PLUS] = ACTIONS(2804), - [anon_sym_sizeof] = ACTIONS(2802), - [sym_number_literal] = ACTIONS(2804), - [anon_sym_L_SQUOTE] = ACTIONS(2804), - [anon_sym_u_SQUOTE] = ACTIONS(2804), - [anon_sym_U_SQUOTE] = ACTIONS(2804), - [anon_sym_u8_SQUOTE] = ACTIONS(2804), - [anon_sym_SQUOTE] = ACTIONS(2804), - [anon_sym_L_DQUOTE] = ACTIONS(2804), - [anon_sym_u_DQUOTE] = ACTIONS(2804), - [anon_sym_U_DQUOTE] = ACTIONS(2804), - [anon_sym_u8_DQUOTE] = ACTIONS(2804), - [anon_sym_DQUOTE] = ACTIONS(2804), - [sym_true] = ACTIONS(2802), - [sym_false] = ACTIONS(2802), - [sym_null] = ACTIONS(2802), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2802), - [anon_sym_decltype] = ACTIONS(2802), - [anon_sym_virtual] = ACTIONS(2802), - [anon_sym_explicit] = ACTIONS(2802), - [anon_sym_typename] = ACTIONS(2802), - [anon_sym_template] = ACTIONS(2802), - [anon_sym_operator] = ACTIONS(2802), - [anon_sym_try] = ACTIONS(2802), - [anon_sym_delete] = ACTIONS(2802), - [anon_sym_throw] = ACTIONS(2802), - [anon_sym_namespace] = ACTIONS(2802), - [anon_sym_using] = ACTIONS(2802), - [anon_sym_static_assert] = ACTIONS(2802), - [anon_sym_concept] = ACTIONS(2802), - [anon_sym_co_return] = ACTIONS(2802), - [anon_sym_co_yield] = ACTIONS(2802), - [anon_sym_R_DQUOTE] = ACTIONS(2804), - [anon_sym_LR_DQUOTE] = ACTIONS(2804), - [anon_sym_uR_DQUOTE] = ACTIONS(2804), - [anon_sym_UR_DQUOTE] = ACTIONS(2804), - [anon_sym_u8R_DQUOTE] = ACTIONS(2804), - [anon_sym_co_await] = ACTIONS(2802), - [anon_sym_new] = ACTIONS(2802), - [anon_sym_requires] = ACTIONS(2802), - [sym_this] = ACTIONS(2802), - [sym_nullptr] = ACTIONS(2802), + [885] = { + [ts_builtin_sym_end] = ACTIONS(2946), + [sym_identifier] = ACTIONS(2944), + [aux_sym_preproc_include_token1] = ACTIONS(2944), + [aux_sym_preproc_def_token1] = ACTIONS(2944), + [aux_sym_preproc_if_token1] = ACTIONS(2944), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2944), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2944), + [sym_preproc_directive] = ACTIONS(2944), + [anon_sym_LPAREN2] = ACTIONS(2946), + [anon_sym_BANG] = ACTIONS(2946), + [anon_sym_TILDE] = ACTIONS(2946), + [anon_sym_DASH] = ACTIONS(2944), + [anon_sym_PLUS] = ACTIONS(2944), + [anon_sym_STAR] = ACTIONS(2946), + [anon_sym_AMP_AMP] = ACTIONS(2946), + [anon_sym_AMP] = ACTIONS(2944), + [anon_sym_SEMI] = ACTIONS(2946), + [anon_sym_typedef] = ACTIONS(2944), + [anon_sym_extern] = ACTIONS(2944), + [anon_sym___attribute__] = ACTIONS(2944), + [anon_sym_COLON_COLON] = ACTIONS(2946), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2946), + [anon_sym___declspec] = ACTIONS(2944), + [anon_sym___based] = ACTIONS(2944), + [anon_sym___cdecl] = ACTIONS(2944), + [anon_sym___clrcall] = ACTIONS(2944), + [anon_sym___stdcall] = ACTIONS(2944), + [anon_sym___fastcall] = ACTIONS(2944), + [anon_sym___thiscall] = ACTIONS(2944), + [anon_sym___vectorcall] = ACTIONS(2944), + [anon_sym_LBRACE] = ACTIONS(2946), + [anon_sym_LBRACK] = ACTIONS(2944), + [anon_sym_static] = ACTIONS(2944), + [anon_sym_register] = ACTIONS(2944), + [anon_sym_inline] = ACTIONS(2944), + [anon_sym_thread_local] = ACTIONS(2944), + [anon_sym_const] = ACTIONS(2944), + [anon_sym_constexpr] = ACTIONS(2944), + [anon_sym_volatile] = ACTIONS(2944), + [anon_sym_restrict] = ACTIONS(2944), + [anon_sym___restrict__] = ACTIONS(2944), + [anon_sym__Atomic] = ACTIONS(2944), + [anon_sym__Noreturn] = ACTIONS(2944), + [anon_sym_noreturn] = ACTIONS(2944), + [anon_sym_mutable] = ACTIONS(2944), + [anon_sym_constinit] = ACTIONS(2944), + [anon_sym_consteval] = ACTIONS(2944), + [anon_sym_signed] = ACTIONS(2944), + [anon_sym_unsigned] = ACTIONS(2944), + [anon_sym_long] = ACTIONS(2944), + [anon_sym_short] = ACTIONS(2944), + [sym_primitive_type] = ACTIONS(2944), + [anon_sym_enum] = ACTIONS(2944), + [anon_sym_class] = ACTIONS(2944), + [anon_sym_struct] = ACTIONS(2944), + [anon_sym_union] = ACTIONS(2944), + [anon_sym_if] = ACTIONS(2944), + [anon_sym_else] = ACTIONS(2944), + [anon_sym_switch] = ACTIONS(2944), + [anon_sym_case] = ACTIONS(2944), + [anon_sym_default] = ACTIONS(2944), + [anon_sym_while] = ACTIONS(2944), + [anon_sym_do] = ACTIONS(2944), + [anon_sym_for] = ACTIONS(2944), + [anon_sym_return] = ACTIONS(2944), + [anon_sym_break] = ACTIONS(2944), + [anon_sym_continue] = ACTIONS(2944), + [anon_sym_goto] = ACTIONS(2944), + [anon_sym_not] = ACTIONS(2944), + [anon_sym_compl] = ACTIONS(2944), + [anon_sym_DASH_DASH] = ACTIONS(2946), + [anon_sym_PLUS_PLUS] = ACTIONS(2946), + [anon_sym_sizeof] = ACTIONS(2944), + [anon_sym_offsetof] = ACTIONS(2944), + [anon_sym__Generic] = ACTIONS(2944), + [anon_sym_asm] = ACTIONS(2944), + [anon_sym___asm__] = ACTIONS(2944), + [sym_number_literal] = ACTIONS(2946), + [anon_sym_L_SQUOTE] = ACTIONS(2946), + [anon_sym_u_SQUOTE] = ACTIONS(2946), + [anon_sym_U_SQUOTE] = ACTIONS(2946), + [anon_sym_u8_SQUOTE] = ACTIONS(2946), + [anon_sym_SQUOTE] = ACTIONS(2946), + [anon_sym_L_DQUOTE] = ACTIONS(2946), + [anon_sym_u_DQUOTE] = ACTIONS(2946), + [anon_sym_U_DQUOTE] = ACTIONS(2946), + [anon_sym_u8_DQUOTE] = ACTIONS(2946), + [anon_sym_DQUOTE] = ACTIONS(2946), + [sym_true] = ACTIONS(2944), + [sym_false] = ACTIONS(2944), + [anon_sym_NULL] = ACTIONS(2944), + [anon_sym_nullptr] = ACTIONS(2944), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2944), + [anon_sym_decltype] = ACTIONS(2944), + [anon_sym_virtual] = ACTIONS(2944), + [anon_sym_explicit] = ACTIONS(2944), + [anon_sym_typename] = ACTIONS(2944), + [anon_sym_template] = ACTIONS(2944), + [anon_sym_operator] = ACTIONS(2944), + [anon_sym_try] = ACTIONS(2944), + [anon_sym_delete] = ACTIONS(2944), + [anon_sym_throw] = ACTIONS(2944), + [anon_sym_namespace] = ACTIONS(2944), + [anon_sym_using] = ACTIONS(2944), + [anon_sym_static_assert] = ACTIONS(2944), + [anon_sym_concept] = ACTIONS(2944), + [anon_sym_co_return] = ACTIONS(2944), + [anon_sym_co_yield] = ACTIONS(2944), + [anon_sym_R_DQUOTE] = ACTIONS(2946), + [anon_sym_LR_DQUOTE] = ACTIONS(2946), + [anon_sym_uR_DQUOTE] = ACTIONS(2946), + [anon_sym_UR_DQUOTE] = ACTIONS(2946), + [anon_sym_u8R_DQUOTE] = ACTIONS(2946), + [anon_sym_co_await] = ACTIONS(2944), + [anon_sym_new] = ACTIONS(2944), + [anon_sym_requires] = ACTIONS(2944), + [sym_this] = ACTIONS(2944), }, - [956] = { - [sym_identifier] = ACTIONS(2806), - [aux_sym_preproc_include_token1] = ACTIONS(2806), - [aux_sym_preproc_def_token1] = ACTIONS(2806), - [aux_sym_preproc_if_token1] = ACTIONS(2806), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2806), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2806), - [sym_preproc_directive] = ACTIONS(2806), - [anon_sym_LPAREN2] = ACTIONS(2808), - [anon_sym_BANG] = ACTIONS(2808), - [anon_sym_TILDE] = ACTIONS(2808), - [anon_sym_DASH] = ACTIONS(2806), - [anon_sym_PLUS] = ACTIONS(2806), - [anon_sym_STAR] = ACTIONS(2808), - [anon_sym_AMP_AMP] = ACTIONS(2808), - [anon_sym_AMP] = ACTIONS(2806), - [anon_sym_SEMI] = ACTIONS(2808), - [anon_sym_typedef] = ACTIONS(2806), - [anon_sym_extern] = ACTIONS(2806), - [anon_sym___attribute__] = ACTIONS(2806), - [anon_sym_COLON_COLON] = ACTIONS(2808), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2808), - [anon_sym___declspec] = ACTIONS(2806), - [anon_sym___based] = ACTIONS(2806), - [anon_sym___cdecl] = ACTIONS(2806), - [anon_sym___clrcall] = ACTIONS(2806), - [anon_sym___stdcall] = ACTIONS(2806), - [anon_sym___fastcall] = ACTIONS(2806), - [anon_sym___thiscall] = ACTIONS(2806), - [anon_sym___vectorcall] = ACTIONS(2806), - [anon_sym_LBRACE] = ACTIONS(2808), - [anon_sym_RBRACE] = ACTIONS(2808), - [anon_sym_LBRACK] = ACTIONS(2806), - [anon_sym_static] = ACTIONS(2806), - [anon_sym_register] = ACTIONS(2806), - [anon_sym_inline] = ACTIONS(2806), - [anon_sym_thread_local] = ACTIONS(2806), - [anon_sym_const] = ACTIONS(2806), - [anon_sym_volatile] = ACTIONS(2806), - [anon_sym_restrict] = ACTIONS(2806), - [anon_sym__Atomic] = ACTIONS(2806), - [anon_sym_mutable] = ACTIONS(2806), - [anon_sym_constexpr] = ACTIONS(2806), - [anon_sym_constinit] = ACTIONS(2806), - [anon_sym_consteval] = ACTIONS(2806), - [anon_sym_signed] = ACTIONS(2806), - [anon_sym_unsigned] = ACTIONS(2806), - [anon_sym_long] = ACTIONS(2806), - [anon_sym_short] = ACTIONS(2806), - [sym_primitive_type] = ACTIONS(2806), - [anon_sym_enum] = ACTIONS(2806), - [anon_sym_class] = ACTIONS(2806), - [anon_sym_struct] = ACTIONS(2806), - [anon_sym_union] = ACTIONS(2806), - [anon_sym_if] = ACTIONS(2806), - [anon_sym_switch] = ACTIONS(2806), - [anon_sym_case] = ACTIONS(2806), - [anon_sym_default] = ACTIONS(2806), - [anon_sym_while] = ACTIONS(2806), - [anon_sym_do] = ACTIONS(2806), - [anon_sym_for] = ACTIONS(2806), - [anon_sym_return] = ACTIONS(2806), - [anon_sym_break] = ACTIONS(2806), - [anon_sym_continue] = ACTIONS(2806), - [anon_sym_goto] = ACTIONS(2806), - [anon_sym_not] = ACTIONS(2806), - [anon_sym_compl] = ACTIONS(2806), - [anon_sym_DASH_DASH] = ACTIONS(2808), - [anon_sym_PLUS_PLUS] = ACTIONS(2808), - [anon_sym_sizeof] = ACTIONS(2806), - [sym_number_literal] = ACTIONS(2808), - [anon_sym_L_SQUOTE] = ACTIONS(2808), - [anon_sym_u_SQUOTE] = ACTIONS(2808), - [anon_sym_U_SQUOTE] = ACTIONS(2808), - [anon_sym_u8_SQUOTE] = ACTIONS(2808), - [anon_sym_SQUOTE] = ACTIONS(2808), - [anon_sym_L_DQUOTE] = ACTIONS(2808), - [anon_sym_u_DQUOTE] = ACTIONS(2808), - [anon_sym_U_DQUOTE] = ACTIONS(2808), - [anon_sym_u8_DQUOTE] = ACTIONS(2808), - [anon_sym_DQUOTE] = ACTIONS(2808), - [sym_true] = ACTIONS(2806), - [sym_false] = ACTIONS(2806), - [sym_null] = ACTIONS(2806), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2806), - [anon_sym_decltype] = ACTIONS(2806), - [anon_sym_virtual] = ACTIONS(2806), - [anon_sym_explicit] = ACTIONS(2806), - [anon_sym_typename] = ACTIONS(2806), - [anon_sym_template] = ACTIONS(2806), - [anon_sym_operator] = ACTIONS(2806), - [anon_sym_try] = ACTIONS(2806), - [anon_sym_delete] = ACTIONS(2806), - [anon_sym_throw] = ACTIONS(2806), - [anon_sym_namespace] = ACTIONS(2806), - [anon_sym_using] = ACTIONS(2806), - [anon_sym_static_assert] = ACTIONS(2806), - [anon_sym_concept] = ACTIONS(2806), - [anon_sym_co_return] = ACTIONS(2806), - [anon_sym_co_yield] = ACTIONS(2806), - [anon_sym_R_DQUOTE] = ACTIONS(2808), - [anon_sym_LR_DQUOTE] = ACTIONS(2808), - [anon_sym_uR_DQUOTE] = ACTIONS(2808), - [anon_sym_UR_DQUOTE] = ACTIONS(2808), - [anon_sym_u8R_DQUOTE] = ACTIONS(2808), - [anon_sym_co_await] = ACTIONS(2806), - [anon_sym_new] = ACTIONS(2806), - [anon_sym_requires] = ACTIONS(2806), - [sym_this] = ACTIONS(2806), - [sym_nullptr] = ACTIONS(2806), + [886] = { + [ts_builtin_sym_end] = ACTIONS(2926), + [sym_identifier] = ACTIONS(2924), + [aux_sym_preproc_include_token1] = ACTIONS(2924), + [aux_sym_preproc_def_token1] = ACTIONS(2924), + [aux_sym_preproc_if_token1] = ACTIONS(2924), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2924), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2924), + [sym_preproc_directive] = ACTIONS(2924), + [anon_sym_LPAREN2] = ACTIONS(2926), + [anon_sym_BANG] = ACTIONS(2926), + [anon_sym_TILDE] = ACTIONS(2926), + [anon_sym_DASH] = ACTIONS(2924), + [anon_sym_PLUS] = ACTIONS(2924), + [anon_sym_STAR] = ACTIONS(2926), + [anon_sym_AMP_AMP] = ACTIONS(2926), + [anon_sym_AMP] = ACTIONS(2924), + [anon_sym_SEMI] = ACTIONS(2926), + [anon_sym_typedef] = ACTIONS(2924), + [anon_sym_extern] = ACTIONS(2924), + [anon_sym___attribute__] = ACTIONS(2924), + [anon_sym_COLON_COLON] = ACTIONS(2926), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2926), + [anon_sym___declspec] = ACTIONS(2924), + [anon_sym___based] = ACTIONS(2924), + [anon_sym___cdecl] = ACTIONS(2924), + [anon_sym___clrcall] = ACTIONS(2924), + [anon_sym___stdcall] = ACTIONS(2924), + [anon_sym___fastcall] = ACTIONS(2924), + [anon_sym___thiscall] = ACTIONS(2924), + [anon_sym___vectorcall] = ACTIONS(2924), + [anon_sym_LBRACE] = ACTIONS(2926), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_static] = ACTIONS(2924), + [anon_sym_register] = ACTIONS(2924), + [anon_sym_inline] = ACTIONS(2924), + [anon_sym_thread_local] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(2924), + [anon_sym_constexpr] = ACTIONS(2924), + [anon_sym_volatile] = ACTIONS(2924), + [anon_sym_restrict] = ACTIONS(2924), + [anon_sym___restrict__] = ACTIONS(2924), + [anon_sym__Atomic] = ACTIONS(2924), + [anon_sym__Noreturn] = ACTIONS(2924), + [anon_sym_noreturn] = ACTIONS(2924), + [anon_sym_mutable] = ACTIONS(2924), + [anon_sym_constinit] = ACTIONS(2924), + [anon_sym_consteval] = ACTIONS(2924), + [anon_sym_signed] = ACTIONS(2924), + [anon_sym_unsigned] = ACTIONS(2924), + [anon_sym_long] = ACTIONS(2924), + [anon_sym_short] = ACTIONS(2924), + [sym_primitive_type] = ACTIONS(2924), + [anon_sym_enum] = ACTIONS(2924), + [anon_sym_class] = ACTIONS(2924), + [anon_sym_struct] = ACTIONS(2924), + [anon_sym_union] = ACTIONS(2924), + [anon_sym_if] = ACTIONS(2924), + [anon_sym_else] = ACTIONS(2924), + [anon_sym_switch] = ACTIONS(2924), + [anon_sym_case] = ACTIONS(2924), + [anon_sym_default] = ACTIONS(2924), + [anon_sym_while] = ACTIONS(2924), + [anon_sym_do] = ACTIONS(2924), + [anon_sym_for] = ACTIONS(2924), + [anon_sym_return] = ACTIONS(2924), + [anon_sym_break] = ACTIONS(2924), + [anon_sym_continue] = ACTIONS(2924), + [anon_sym_goto] = ACTIONS(2924), + [anon_sym_not] = ACTIONS(2924), + [anon_sym_compl] = ACTIONS(2924), + [anon_sym_DASH_DASH] = ACTIONS(2926), + [anon_sym_PLUS_PLUS] = ACTIONS(2926), + [anon_sym_sizeof] = ACTIONS(2924), + [anon_sym_offsetof] = ACTIONS(2924), + [anon_sym__Generic] = ACTIONS(2924), + [anon_sym_asm] = ACTIONS(2924), + [anon_sym___asm__] = ACTIONS(2924), + [sym_number_literal] = ACTIONS(2926), + [anon_sym_L_SQUOTE] = ACTIONS(2926), + [anon_sym_u_SQUOTE] = ACTIONS(2926), + [anon_sym_U_SQUOTE] = ACTIONS(2926), + [anon_sym_u8_SQUOTE] = ACTIONS(2926), + [anon_sym_SQUOTE] = ACTIONS(2926), + [anon_sym_L_DQUOTE] = ACTIONS(2926), + [anon_sym_u_DQUOTE] = ACTIONS(2926), + [anon_sym_U_DQUOTE] = ACTIONS(2926), + [anon_sym_u8_DQUOTE] = ACTIONS(2926), + [anon_sym_DQUOTE] = ACTIONS(2926), + [sym_true] = ACTIONS(2924), + [sym_false] = ACTIONS(2924), + [anon_sym_NULL] = ACTIONS(2924), + [anon_sym_nullptr] = ACTIONS(2924), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2924), + [anon_sym_decltype] = ACTIONS(2924), + [anon_sym_virtual] = ACTIONS(2924), + [anon_sym_explicit] = ACTIONS(2924), + [anon_sym_typename] = ACTIONS(2924), + [anon_sym_template] = ACTIONS(2924), + [anon_sym_operator] = ACTIONS(2924), + [anon_sym_try] = ACTIONS(2924), + [anon_sym_delete] = ACTIONS(2924), + [anon_sym_throw] = ACTIONS(2924), + [anon_sym_namespace] = ACTIONS(2924), + [anon_sym_using] = ACTIONS(2924), + [anon_sym_static_assert] = ACTIONS(2924), + [anon_sym_concept] = ACTIONS(2924), + [anon_sym_co_return] = ACTIONS(2924), + [anon_sym_co_yield] = ACTIONS(2924), + [anon_sym_R_DQUOTE] = ACTIONS(2926), + [anon_sym_LR_DQUOTE] = ACTIONS(2926), + [anon_sym_uR_DQUOTE] = ACTIONS(2926), + [anon_sym_UR_DQUOTE] = ACTIONS(2926), + [anon_sym_u8R_DQUOTE] = ACTIONS(2926), + [anon_sym_co_await] = ACTIONS(2924), + [anon_sym_new] = ACTIONS(2924), + [anon_sym_requires] = ACTIONS(2924), + [sym_this] = ACTIONS(2924), }, - [957] = { - [sym_identifier] = ACTIONS(2806), - [aux_sym_preproc_include_token1] = ACTIONS(2806), - [aux_sym_preproc_def_token1] = ACTIONS(2806), - [aux_sym_preproc_if_token1] = ACTIONS(2806), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2806), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2806), - [sym_preproc_directive] = ACTIONS(2806), - [anon_sym_LPAREN2] = ACTIONS(2808), - [anon_sym_BANG] = ACTIONS(2808), - [anon_sym_TILDE] = ACTIONS(2808), - [anon_sym_DASH] = ACTIONS(2806), - [anon_sym_PLUS] = ACTIONS(2806), - [anon_sym_STAR] = ACTIONS(2808), - [anon_sym_AMP_AMP] = ACTIONS(2808), - [anon_sym_AMP] = ACTIONS(2806), - [anon_sym_SEMI] = ACTIONS(2808), - [anon_sym_typedef] = ACTIONS(2806), - [anon_sym_extern] = ACTIONS(2806), - [anon_sym___attribute__] = ACTIONS(2806), - [anon_sym_COLON_COLON] = ACTIONS(2808), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2808), - [anon_sym___declspec] = ACTIONS(2806), - [anon_sym___based] = ACTIONS(2806), - [anon_sym___cdecl] = ACTIONS(2806), - [anon_sym___clrcall] = ACTIONS(2806), - [anon_sym___stdcall] = ACTIONS(2806), - [anon_sym___fastcall] = ACTIONS(2806), - [anon_sym___thiscall] = ACTIONS(2806), - [anon_sym___vectorcall] = ACTIONS(2806), - [anon_sym_LBRACE] = ACTIONS(2808), - [anon_sym_RBRACE] = ACTIONS(2808), - [anon_sym_LBRACK] = ACTIONS(2806), - [anon_sym_static] = ACTIONS(2806), - [anon_sym_register] = ACTIONS(2806), - [anon_sym_inline] = ACTIONS(2806), - [anon_sym_thread_local] = ACTIONS(2806), - [anon_sym_const] = ACTIONS(2806), - [anon_sym_volatile] = ACTIONS(2806), - [anon_sym_restrict] = ACTIONS(2806), - [anon_sym__Atomic] = ACTIONS(2806), - [anon_sym_mutable] = ACTIONS(2806), - [anon_sym_constexpr] = ACTIONS(2806), - [anon_sym_constinit] = ACTIONS(2806), - [anon_sym_consteval] = ACTIONS(2806), - [anon_sym_signed] = ACTIONS(2806), - [anon_sym_unsigned] = ACTIONS(2806), - [anon_sym_long] = ACTIONS(2806), - [anon_sym_short] = ACTIONS(2806), - [sym_primitive_type] = ACTIONS(2806), - [anon_sym_enum] = ACTIONS(2806), - [anon_sym_class] = ACTIONS(2806), - [anon_sym_struct] = ACTIONS(2806), - [anon_sym_union] = ACTIONS(2806), - [anon_sym_if] = ACTIONS(2806), - [anon_sym_switch] = ACTIONS(2806), - [anon_sym_case] = ACTIONS(2806), - [anon_sym_default] = ACTIONS(2806), - [anon_sym_while] = ACTIONS(2806), - [anon_sym_do] = ACTIONS(2806), - [anon_sym_for] = ACTIONS(2806), - [anon_sym_return] = ACTIONS(2806), - [anon_sym_break] = ACTIONS(2806), - [anon_sym_continue] = ACTIONS(2806), - [anon_sym_goto] = ACTIONS(2806), - [anon_sym_not] = ACTIONS(2806), - [anon_sym_compl] = ACTIONS(2806), - [anon_sym_DASH_DASH] = ACTIONS(2808), - [anon_sym_PLUS_PLUS] = ACTIONS(2808), - [anon_sym_sizeof] = ACTIONS(2806), - [sym_number_literal] = ACTIONS(2808), - [anon_sym_L_SQUOTE] = ACTIONS(2808), - [anon_sym_u_SQUOTE] = ACTIONS(2808), - [anon_sym_U_SQUOTE] = ACTIONS(2808), - [anon_sym_u8_SQUOTE] = ACTIONS(2808), - [anon_sym_SQUOTE] = ACTIONS(2808), - [anon_sym_L_DQUOTE] = ACTIONS(2808), - [anon_sym_u_DQUOTE] = ACTIONS(2808), - [anon_sym_U_DQUOTE] = ACTIONS(2808), - [anon_sym_u8_DQUOTE] = ACTIONS(2808), - [anon_sym_DQUOTE] = ACTIONS(2808), - [sym_true] = ACTIONS(2806), - [sym_false] = ACTIONS(2806), - [sym_null] = ACTIONS(2806), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2806), - [anon_sym_decltype] = ACTIONS(2806), - [anon_sym_virtual] = ACTIONS(2806), - [anon_sym_explicit] = ACTIONS(2806), - [anon_sym_typename] = ACTIONS(2806), - [anon_sym_template] = ACTIONS(2806), - [anon_sym_operator] = ACTIONS(2806), - [anon_sym_try] = ACTIONS(2806), - [anon_sym_delete] = ACTIONS(2806), - [anon_sym_throw] = ACTIONS(2806), - [anon_sym_namespace] = ACTIONS(2806), - [anon_sym_using] = ACTIONS(2806), - [anon_sym_static_assert] = ACTIONS(2806), - [anon_sym_concept] = ACTIONS(2806), - [anon_sym_co_return] = ACTIONS(2806), - [anon_sym_co_yield] = ACTIONS(2806), - [anon_sym_R_DQUOTE] = ACTIONS(2808), - [anon_sym_LR_DQUOTE] = ACTIONS(2808), - [anon_sym_uR_DQUOTE] = ACTIONS(2808), - [anon_sym_UR_DQUOTE] = ACTIONS(2808), - [anon_sym_u8R_DQUOTE] = ACTIONS(2808), - [anon_sym_co_await] = ACTIONS(2806), - [anon_sym_new] = ACTIONS(2806), - [anon_sym_requires] = ACTIONS(2806), - [sym_this] = ACTIONS(2806), - [sym_nullptr] = ACTIONS(2806), + [887] = { + [sym_identifier] = ACTIONS(3109), + [aux_sym_preproc_include_token1] = ACTIONS(3109), + [aux_sym_preproc_def_token1] = ACTIONS(3109), + [aux_sym_preproc_if_token1] = ACTIONS(3109), + [aux_sym_preproc_if_token2] = ACTIONS(3109), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3109), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3109), + [sym_preproc_directive] = ACTIONS(3109), + [anon_sym_LPAREN2] = ACTIONS(3111), + [anon_sym_BANG] = ACTIONS(3111), + [anon_sym_TILDE] = ACTIONS(3111), + [anon_sym_DASH] = ACTIONS(3109), + [anon_sym_PLUS] = ACTIONS(3109), + [anon_sym_STAR] = ACTIONS(3111), + [anon_sym_AMP_AMP] = ACTIONS(3111), + [anon_sym_AMP] = ACTIONS(3109), + [anon_sym_SEMI] = ACTIONS(3111), + [anon_sym_typedef] = ACTIONS(3109), + [anon_sym_extern] = ACTIONS(3109), + [anon_sym___attribute__] = ACTIONS(3109), + [anon_sym_COLON_COLON] = ACTIONS(3111), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3111), + [anon_sym___declspec] = ACTIONS(3109), + [anon_sym___based] = ACTIONS(3109), + [anon_sym___cdecl] = ACTIONS(3109), + [anon_sym___clrcall] = ACTIONS(3109), + [anon_sym___stdcall] = ACTIONS(3109), + [anon_sym___fastcall] = ACTIONS(3109), + [anon_sym___thiscall] = ACTIONS(3109), + [anon_sym___vectorcall] = ACTIONS(3109), + [anon_sym_LBRACE] = ACTIONS(3111), + [anon_sym_LBRACK] = ACTIONS(3109), + [anon_sym_static] = ACTIONS(3109), + [anon_sym_register] = ACTIONS(3109), + [anon_sym_inline] = ACTIONS(3109), + [anon_sym_thread_local] = ACTIONS(3109), + [anon_sym_const] = ACTIONS(3109), + [anon_sym_constexpr] = ACTIONS(3109), + [anon_sym_volatile] = ACTIONS(3109), + [anon_sym_restrict] = ACTIONS(3109), + [anon_sym___restrict__] = ACTIONS(3109), + [anon_sym__Atomic] = ACTIONS(3109), + [anon_sym__Noreturn] = ACTIONS(3109), + [anon_sym_noreturn] = ACTIONS(3109), + [anon_sym_mutable] = ACTIONS(3109), + [anon_sym_constinit] = ACTIONS(3109), + [anon_sym_consteval] = ACTIONS(3109), + [anon_sym_signed] = ACTIONS(3109), + [anon_sym_unsigned] = ACTIONS(3109), + [anon_sym_long] = ACTIONS(3109), + [anon_sym_short] = ACTIONS(3109), + [sym_primitive_type] = ACTIONS(3109), + [anon_sym_enum] = ACTIONS(3109), + [anon_sym_class] = ACTIONS(3109), + [anon_sym_struct] = ACTIONS(3109), + [anon_sym_union] = ACTIONS(3109), + [anon_sym_if] = ACTIONS(3109), + [anon_sym_else] = ACTIONS(3109), + [anon_sym_switch] = ACTIONS(3109), + [anon_sym_case] = ACTIONS(3109), + [anon_sym_default] = ACTIONS(3109), + [anon_sym_while] = ACTIONS(3109), + [anon_sym_do] = ACTIONS(3109), + [anon_sym_for] = ACTIONS(3109), + [anon_sym_return] = ACTIONS(3109), + [anon_sym_break] = ACTIONS(3109), + [anon_sym_continue] = ACTIONS(3109), + [anon_sym_goto] = ACTIONS(3109), + [anon_sym_not] = ACTIONS(3109), + [anon_sym_compl] = ACTIONS(3109), + [anon_sym_DASH_DASH] = ACTIONS(3111), + [anon_sym_PLUS_PLUS] = ACTIONS(3111), + [anon_sym_sizeof] = ACTIONS(3109), + [anon_sym_offsetof] = ACTIONS(3109), + [anon_sym__Generic] = ACTIONS(3109), + [anon_sym_asm] = ACTIONS(3109), + [anon_sym___asm__] = ACTIONS(3109), + [sym_number_literal] = ACTIONS(3111), + [anon_sym_L_SQUOTE] = ACTIONS(3111), + [anon_sym_u_SQUOTE] = ACTIONS(3111), + [anon_sym_U_SQUOTE] = ACTIONS(3111), + [anon_sym_u8_SQUOTE] = ACTIONS(3111), + [anon_sym_SQUOTE] = ACTIONS(3111), + [anon_sym_L_DQUOTE] = ACTIONS(3111), + [anon_sym_u_DQUOTE] = ACTIONS(3111), + [anon_sym_U_DQUOTE] = ACTIONS(3111), + [anon_sym_u8_DQUOTE] = ACTIONS(3111), + [anon_sym_DQUOTE] = ACTIONS(3111), + [sym_true] = ACTIONS(3109), + [sym_false] = ACTIONS(3109), + [anon_sym_NULL] = ACTIONS(3109), + [anon_sym_nullptr] = ACTIONS(3109), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3109), + [anon_sym_decltype] = ACTIONS(3109), + [anon_sym_virtual] = ACTIONS(3109), + [anon_sym_explicit] = ACTIONS(3109), + [anon_sym_typename] = ACTIONS(3109), + [anon_sym_template] = ACTIONS(3109), + [anon_sym_operator] = ACTIONS(3109), + [anon_sym_try] = ACTIONS(3109), + [anon_sym_delete] = ACTIONS(3109), + [anon_sym_throw] = ACTIONS(3109), + [anon_sym_namespace] = ACTIONS(3109), + [anon_sym_using] = ACTIONS(3109), + [anon_sym_static_assert] = ACTIONS(3109), + [anon_sym_concept] = ACTIONS(3109), + [anon_sym_co_return] = ACTIONS(3109), + [anon_sym_co_yield] = ACTIONS(3109), + [anon_sym_R_DQUOTE] = ACTIONS(3111), + [anon_sym_LR_DQUOTE] = ACTIONS(3111), + [anon_sym_uR_DQUOTE] = ACTIONS(3111), + [anon_sym_UR_DQUOTE] = ACTIONS(3111), + [anon_sym_u8R_DQUOTE] = ACTIONS(3111), + [anon_sym_co_await] = ACTIONS(3109), + [anon_sym_new] = ACTIONS(3109), + [anon_sym_requires] = ACTIONS(3109), + [sym_this] = ACTIONS(3109), }, - [958] = { - [ts_builtin_sym_end] = ACTIONS(2748), - [sym_identifier] = ACTIONS(2746), - [aux_sym_preproc_include_token1] = ACTIONS(2746), - [aux_sym_preproc_def_token1] = ACTIONS(2746), - [aux_sym_preproc_if_token1] = ACTIONS(2746), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2746), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2746), - [sym_preproc_directive] = ACTIONS(2746), - [anon_sym_LPAREN2] = ACTIONS(2748), - [anon_sym_BANG] = ACTIONS(2748), - [anon_sym_TILDE] = ACTIONS(2748), - [anon_sym_DASH] = ACTIONS(2746), - [anon_sym_PLUS] = ACTIONS(2746), - [anon_sym_STAR] = ACTIONS(2748), - [anon_sym_AMP_AMP] = ACTIONS(2748), - [anon_sym_AMP] = ACTIONS(2746), - [anon_sym_SEMI] = ACTIONS(2748), - [anon_sym_typedef] = ACTIONS(2746), - [anon_sym_extern] = ACTIONS(2746), - [anon_sym___attribute__] = ACTIONS(2746), - [anon_sym_COLON_COLON] = ACTIONS(2748), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2748), - [anon_sym___declspec] = ACTIONS(2746), - [anon_sym___based] = ACTIONS(2746), - [anon_sym___cdecl] = ACTIONS(2746), - [anon_sym___clrcall] = ACTIONS(2746), - [anon_sym___stdcall] = ACTIONS(2746), - [anon_sym___fastcall] = ACTIONS(2746), - [anon_sym___thiscall] = ACTIONS(2746), - [anon_sym___vectorcall] = ACTIONS(2746), - [anon_sym_LBRACE] = ACTIONS(2748), - [anon_sym_LBRACK] = ACTIONS(2746), - [anon_sym_static] = ACTIONS(2746), - [anon_sym_register] = ACTIONS(2746), - [anon_sym_inline] = ACTIONS(2746), - [anon_sym_thread_local] = ACTIONS(2746), - [anon_sym_const] = ACTIONS(2746), - [anon_sym_volatile] = ACTIONS(2746), - [anon_sym_restrict] = ACTIONS(2746), - [anon_sym__Atomic] = ACTIONS(2746), - [anon_sym_mutable] = ACTIONS(2746), - [anon_sym_constexpr] = ACTIONS(2746), - [anon_sym_constinit] = ACTIONS(2746), - [anon_sym_consteval] = ACTIONS(2746), - [anon_sym_signed] = ACTIONS(2746), - [anon_sym_unsigned] = ACTIONS(2746), - [anon_sym_long] = ACTIONS(2746), - [anon_sym_short] = ACTIONS(2746), - [sym_primitive_type] = ACTIONS(2746), - [anon_sym_enum] = ACTIONS(2746), - [anon_sym_class] = ACTIONS(2746), - [anon_sym_struct] = ACTIONS(2746), - [anon_sym_union] = ACTIONS(2746), - [anon_sym_if] = ACTIONS(2746), - [anon_sym_switch] = ACTIONS(2746), - [anon_sym_case] = ACTIONS(2746), - [anon_sym_default] = ACTIONS(2746), - [anon_sym_while] = ACTIONS(2746), - [anon_sym_do] = ACTIONS(2746), - [anon_sym_for] = ACTIONS(2746), - [anon_sym_return] = ACTIONS(2746), - [anon_sym_break] = ACTIONS(2746), - [anon_sym_continue] = ACTIONS(2746), - [anon_sym_goto] = ACTIONS(2746), - [anon_sym_not] = ACTIONS(2746), - [anon_sym_compl] = ACTIONS(2746), - [anon_sym_DASH_DASH] = ACTIONS(2748), - [anon_sym_PLUS_PLUS] = ACTIONS(2748), - [anon_sym_sizeof] = ACTIONS(2746), - [sym_number_literal] = ACTIONS(2748), - [anon_sym_L_SQUOTE] = ACTIONS(2748), - [anon_sym_u_SQUOTE] = ACTIONS(2748), - [anon_sym_U_SQUOTE] = ACTIONS(2748), - [anon_sym_u8_SQUOTE] = ACTIONS(2748), - [anon_sym_SQUOTE] = ACTIONS(2748), - [anon_sym_L_DQUOTE] = ACTIONS(2748), - [anon_sym_u_DQUOTE] = ACTIONS(2748), - [anon_sym_U_DQUOTE] = ACTIONS(2748), - [anon_sym_u8_DQUOTE] = ACTIONS(2748), - [anon_sym_DQUOTE] = ACTIONS(2748), - [sym_true] = ACTIONS(2746), - [sym_false] = ACTIONS(2746), - [sym_null] = ACTIONS(2746), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2746), - [anon_sym_decltype] = ACTIONS(2746), - [anon_sym_virtual] = ACTIONS(2746), - [anon_sym_explicit] = ACTIONS(2746), - [anon_sym_typename] = ACTIONS(2746), - [anon_sym_template] = ACTIONS(2746), - [anon_sym_operator] = ACTIONS(2746), - [anon_sym_try] = ACTIONS(2746), - [anon_sym_delete] = ACTIONS(2746), - [anon_sym_throw] = ACTIONS(2746), - [anon_sym_namespace] = ACTIONS(2746), - [anon_sym_using] = ACTIONS(2746), - [anon_sym_static_assert] = ACTIONS(2746), - [anon_sym_concept] = ACTIONS(2746), - [anon_sym_co_return] = ACTIONS(2746), - [anon_sym_co_yield] = ACTIONS(2746), - [anon_sym_R_DQUOTE] = ACTIONS(2748), - [anon_sym_LR_DQUOTE] = ACTIONS(2748), - [anon_sym_uR_DQUOTE] = ACTIONS(2748), - [anon_sym_UR_DQUOTE] = ACTIONS(2748), - [anon_sym_u8R_DQUOTE] = ACTIONS(2748), - [anon_sym_co_await] = ACTIONS(2746), - [anon_sym_new] = ACTIONS(2746), - [anon_sym_requires] = ACTIONS(2746), - [sym_this] = ACTIONS(2746), - [sym_nullptr] = ACTIONS(2746), + [888] = { + [ts_builtin_sym_end] = ACTIONS(2968), + [sym_identifier] = ACTIONS(2966), + [aux_sym_preproc_include_token1] = ACTIONS(2966), + [aux_sym_preproc_def_token1] = ACTIONS(2966), + [aux_sym_preproc_if_token1] = ACTIONS(2966), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2966), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2966), + [sym_preproc_directive] = 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_AMP_AMP] = ACTIONS(2968), + [anon_sym_AMP] = ACTIONS(2966), + [anon_sym_SEMI] = ACTIONS(2968), + [anon_sym_typedef] = ACTIONS(2966), + [anon_sym_extern] = ACTIONS(2966), + [anon_sym___attribute__] = ACTIONS(2966), + [anon_sym_COLON_COLON] = ACTIONS(2968), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2968), + [anon_sym___declspec] = ACTIONS(2966), + [anon_sym___based] = ACTIONS(2966), + [anon_sym___cdecl] = ACTIONS(2966), + [anon_sym___clrcall] = ACTIONS(2966), + [anon_sym___stdcall] = ACTIONS(2966), + [anon_sym___fastcall] = ACTIONS(2966), + [anon_sym___thiscall] = ACTIONS(2966), + [anon_sym___vectorcall] = ACTIONS(2966), + [anon_sym_LBRACE] = ACTIONS(2968), + [anon_sym_LBRACK] = ACTIONS(2966), + [anon_sym_static] = ACTIONS(2966), + [anon_sym_register] = ACTIONS(2966), + [anon_sym_inline] = ACTIONS(2966), + [anon_sym_thread_local] = 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_noreturn] = ACTIONS(2966), + [anon_sym_mutable] = ACTIONS(2966), + [anon_sym_constinit] = ACTIONS(2966), + [anon_sym_consteval] = ACTIONS(2966), + [anon_sym_signed] = ACTIONS(2966), + [anon_sym_unsigned] = ACTIONS(2966), + [anon_sym_long] = ACTIONS(2966), + [anon_sym_short] = ACTIONS(2966), + [sym_primitive_type] = ACTIONS(2966), + [anon_sym_enum] = ACTIONS(2966), + [anon_sym_class] = ACTIONS(2966), + [anon_sym_struct] = ACTIONS(2966), + [anon_sym_union] = ACTIONS(2966), + [anon_sym_if] = ACTIONS(2966), + [anon_sym_else] = 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_return] = ACTIONS(2966), + [anon_sym_break] = ACTIONS(2966), + [anon_sym_continue] = ACTIONS(2966), + [anon_sym_goto] = ACTIONS(2966), + [anon_sym_not] = ACTIONS(2966), + [anon_sym_compl] = ACTIONS(2966), + [anon_sym_DASH_DASH] = ACTIONS(2968), + [anon_sym_PLUS_PLUS] = ACTIONS(2968), + [anon_sym_sizeof] = ACTIONS(2966), + [anon_sym_offsetof] = ACTIONS(2966), + [anon_sym__Generic] = 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_L_DQUOTE] = ACTIONS(2968), + [anon_sym_u_DQUOTE] = ACTIONS(2968), + [anon_sym_U_DQUOTE] = ACTIONS(2968), + [anon_sym_u8_DQUOTE] = ACTIONS(2968), + [anon_sym_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), + [sym_auto] = ACTIONS(2966), + [anon_sym_decltype] = ACTIONS(2966), + [anon_sym_virtual] = ACTIONS(2966), + [anon_sym_explicit] = ACTIONS(2966), + [anon_sym_typename] = ACTIONS(2966), + [anon_sym_template] = ACTIONS(2966), + [anon_sym_operator] = ACTIONS(2966), + [anon_sym_try] = ACTIONS(2966), + [anon_sym_delete] = ACTIONS(2966), + [anon_sym_throw] = ACTIONS(2966), + [anon_sym_namespace] = ACTIONS(2966), + [anon_sym_using] = ACTIONS(2966), + [anon_sym_static_assert] = ACTIONS(2966), + [anon_sym_concept] = ACTIONS(2966), + [anon_sym_co_return] = ACTIONS(2966), + [anon_sym_co_yield] = ACTIONS(2966), + [anon_sym_R_DQUOTE] = ACTIONS(2968), + [anon_sym_LR_DQUOTE] = ACTIONS(2968), + [anon_sym_uR_DQUOTE] = ACTIONS(2968), + [anon_sym_UR_DQUOTE] = ACTIONS(2968), + [anon_sym_u8R_DQUOTE] = ACTIONS(2968), + [anon_sym_co_await] = ACTIONS(2966), + [anon_sym_new] = ACTIONS(2966), + [anon_sym_requires] = ACTIONS(2966), + [sym_this] = ACTIONS(2966), }, - [959] = { - [ts_builtin_sym_end] = ACTIONS(2752), - [sym_identifier] = ACTIONS(2750), - [aux_sym_preproc_include_token1] = ACTIONS(2750), - [aux_sym_preproc_def_token1] = ACTIONS(2750), - [aux_sym_preproc_if_token1] = ACTIONS(2750), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2750), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2750), - [sym_preproc_directive] = ACTIONS(2750), - [anon_sym_LPAREN2] = ACTIONS(2752), - [anon_sym_BANG] = ACTIONS(2752), - [anon_sym_TILDE] = ACTIONS(2752), - [anon_sym_DASH] = ACTIONS(2750), - [anon_sym_PLUS] = ACTIONS(2750), - [anon_sym_STAR] = ACTIONS(2752), - [anon_sym_AMP_AMP] = ACTIONS(2752), - [anon_sym_AMP] = ACTIONS(2750), - [anon_sym_SEMI] = ACTIONS(2752), - [anon_sym_typedef] = ACTIONS(2750), - [anon_sym_extern] = ACTIONS(2750), - [anon_sym___attribute__] = ACTIONS(2750), - [anon_sym_COLON_COLON] = ACTIONS(2752), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2752), - [anon_sym___declspec] = ACTIONS(2750), - [anon_sym___based] = ACTIONS(2750), - [anon_sym___cdecl] = ACTIONS(2750), - [anon_sym___clrcall] = ACTIONS(2750), - [anon_sym___stdcall] = ACTIONS(2750), - [anon_sym___fastcall] = ACTIONS(2750), - [anon_sym___thiscall] = ACTIONS(2750), - [anon_sym___vectorcall] = ACTIONS(2750), - [anon_sym_LBRACE] = ACTIONS(2752), - [anon_sym_LBRACK] = ACTIONS(2750), - [anon_sym_static] = ACTIONS(2750), - [anon_sym_register] = ACTIONS(2750), - [anon_sym_inline] = ACTIONS(2750), - [anon_sym_thread_local] = ACTIONS(2750), - [anon_sym_const] = ACTIONS(2750), - [anon_sym_volatile] = ACTIONS(2750), - [anon_sym_restrict] = ACTIONS(2750), - [anon_sym__Atomic] = ACTIONS(2750), - [anon_sym_mutable] = ACTIONS(2750), - [anon_sym_constexpr] = ACTIONS(2750), - [anon_sym_constinit] = ACTIONS(2750), - [anon_sym_consteval] = ACTIONS(2750), - [anon_sym_signed] = ACTIONS(2750), - [anon_sym_unsigned] = ACTIONS(2750), - [anon_sym_long] = ACTIONS(2750), - [anon_sym_short] = ACTIONS(2750), - [sym_primitive_type] = ACTIONS(2750), - [anon_sym_enum] = ACTIONS(2750), - [anon_sym_class] = ACTIONS(2750), - [anon_sym_struct] = ACTIONS(2750), - [anon_sym_union] = ACTIONS(2750), - [anon_sym_if] = ACTIONS(2750), - [anon_sym_switch] = ACTIONS(2750), - [anon_sym_case] = ACTIONS(2750), - [anon_sym_default] = ACTIONS(2750), - [anon_sym_while] = ACTIONS(2750), - [anon_sym_do] = ACTIONS(2750), - [anon_sym_for] = ACTIONS(2750), - [anon_sym_return] = ACTIONS(2750), - [anon_sym_break] = ACTIONS(2750), - [anon_sym_continue] = ACTIONS(2750), - [anon_sym_goto] = ACTIONS(2750), - [anon_sym_not] = ACTIONS(2750), - [anon_sym_compl] = ACTIONS(2750), - [anon_sym_DASH_DASH] = ACTIONS(2752), - [anon_sym_PLUS_PLUS] = ACTIONS(2752), - [anon_sym_sizeof] = ACTIONS(2750), - [sym_number_literal] = ACTIONS(2752), - [anon_sym_L_SQUOTE] = ACTIONS(2752), - [anon_sym_u_SQUOTE] = ACTIONS(2752), - [anon_sym_U_SQUOTE] = ACTIONS(2752), - [anon_sym_u8_SQUOTE] = ACTIONS(2752), - [anon_sym_SQUOTE] = ACTIONS(2752), - [anon_sym_L_DQUOTE] = ACTIONS(2752), - [anon_sym_u_DQUOTE] = ACTIONS(2752), - [anon_sym_U_DQUOTE] = ACTIONS(2752), - [anon_sym_u8_DQUOTE] = ACTIONS(2752), - [anon_sym_DQUOTE] = ACTIONS(2752), - [sym_true] = ACTIONS(2750), - [sym_false] = ACTIONS(2750), - [sym_null] = ACTIONS(2750), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2750), - [anon_sym_decltype] = ACTIONS(2750), - [anon_sym_virtual] = ACTIONS(2750), - [anon_sym_explicit] = ACTIONS(2750), - [anon_sym_typename] = ACTIONS(2750), - [anon_sym_template] = ACTIONS(2750), - [anon_sym_operator] = ACTIONS(2750), - [anon_sym_try] = ACTIONS(2750), - [anon_sym_delete] = ACTIONS(2750), - [anon_sym_throw] = ACTIONS(2750), - [anon_sym_namespace] = ACTIONS(2750), - [anon_sym_using] = ACTIONS(2750), - [anon_sym_static_assert] = ACTIONS(2750), - [anon_sym_concept] = ACTIONS(2750), - [anon_sym_co_return] = ACTIONS(2750), - [anon_sym_co_yield] = ACTIONS(2750), - [anon_sym_R_DQUOTE] = ACTIONS(2752), - [anon_sym_LR_DQUOTE] = ACTIONS(2752), - [anon_sym_uR_DQUOTE] = ACTIONS(2752), - [anon_sym_UR_DQUOTE] = ACTIONS(2752), - [anon_sym_u8R_DQUOTE] = ACTIONS(2752), - [anon_sym_co_await] = ACTIONS(2750), - [anon_sym_new] = ACTIONS(2750), - [anon_sym_requires] = ACTIONS(2750), - [sym_this] = ACTIONS(2750), - [sym_nullptr] = ACTIONS(2750), + [889] = { + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_RBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, - [960] = { - [ts_builtin_sym_end] = ACTIONS(2756), - [sym_identifier] = ACTIONS(2754), - [aux_sym_preproc_include_token1] = ACTIONS(2754), - [aux_sym_preproc_def_token1] = ACTIONS(2754), - [aux_sym_preproc_if_token1] = ACTIONS(2754), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2754), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2754), - [sym_preproc_directive] = ACTIONS(2754), - [anon_sym_LPAREN2] = ACTIONS(2756), - [anon_sym_BANG] = ACTIONS(2756), - [anon_sym_TILDE] = ACTIONS(2756), - [anon_sym_DASH] = ACTIONS(2754), - [anon_sym_PLUS] = ACTIONS(2754), - [anon_sym_STAR] = ACTIONS(2756), - [anon_sym_AMP_AMP] = ACTIONS(2756), - [anon_sym_AMP] = ACTIONS(2754), - [anon_sym_SEMI] = ACTIONS(2756), - [anon_sym_typedef] = ACTIONS(2754), - [anon_sym_extern] = ACTIONS(2754), - [anon_sym___attribute__] = ACTIONS(2754), - [anon_sym_COLON_COLON] = ACTIONS(2756), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2756), - [anon_sym___declspec] = ACTIONS(2754), - [anon_sym___based] = ACTIONS(2754), - [anon_sym___cdecl] = ACTIONS(2754), - [anon_sym___clrcall] = ACTIONS(2754), - [anon_sym___stdcall] = ACTIONS(2754), - [anon_sym___fastcall] = ACTIONS(2754), - [anon_sym___thiscall] = ACTIONS(2754), - [anon_sym___vectorcall] = ACTIONS(2754), - [anon_sym_LBRACE] = ACTIONS(2756), - [anon_sym_LBRACK] = ACTIONS(2754), - [anon_sym_static] = ACTIONS(2754), - [anon_sym_register] = ACTIONS(2754), - [anon_sym_inline] = ACTIONS(2754), - [anon_sym_thread_local] = ACTIONS(2754), - [anon_sym_const] = ACTIONS(2754), - [anon_sym_volatile] = ACTIONS(2754), - [anon_sym_restrict] = ACTIONS(2754), - [anon_sym__Atomic] = ACTIONS(2754), - [anon_sym_mutable] = ACTIONS(2754), - [anon_sym_constexpr] = ACTIONS(2754), - [anon_sym_constinit] = ACTIONS(2754), - [anon_sym_consteval] = ACTIONS(2754), - [anon_sym_signed] = ACTIONS(2754), - [anon_sym_unsigned] = ACTIONS(2754), - [anon_sym_long] = ACTIONS(2754), - [anon_sym_short] = ACTIONS(2754), - [sym_primitive_type] = ACTIONS(2754), - [anon_sym_enum] = ACTIONS(2754), - [anon_sym_class] = ACTIONS(2754), - [anon_sym_struct] = ACTIONS(2754), - [anon_sym_union] = ACTIONS(2754), - [anon_sym_if] = ACTIONS(2754), - [anon_sym_switch] = ACTIONS(2754), - [anon_sym_case] = ACTIONS(2754), - [anon_sym_default] = ACTIONS(2754), - [anon_sym_while] = ACTIONS(2754), - [anon_sym_do] = ACTIONS(2754), - [anon_sym_for] = ACTIONS(2754), - [anon_sym_return] = ACTIONS(2754), - [anon_sym_break] = ACTIONS(2754), - [anon_sym_continue] = ACTIONS(2754), - [anon_sym_goto] = ACTIONS(2754), - [anon_sym_not] = ACTIONS(2754), - [anon_sym_compl] = ACTIONS(2754), - [anon_sym_DASH_DASH] = ACTIONS(2756), - [anon_sym_PLUS_PLUS] = ACTIONS(2756), - [anon_sym_sizeof] = ACTIONS(2754), - [sym_number_literal] = ACTIONS(2756), - [anon_sym_L_SQUOTE] = ACTIONS(2756), - [anon_sym_u_SQUOTE] = ACTIONS(2756), - [anon_sym_U_SQUOTE] = ACTIONS(2756), - [anon_sym_u8_SQUOTE] = ACTIONS(2756), - [anon_sym_SQUOTE] = ACTIONS(2756), - [anon_sym_L_DQUOTE] = ACTIONS(2756), - [anon_sym_u_DQUOTE] = ACTIONS(2756), - [anon_sym_U_DQUOTE] = ACTIONS(2756), - [anon_sym_u8_DQUOTE] = ACTIONS(2756), - [anon_sym_DQUOTE] = ACTIONS(2756), - [sym_true] = ACTIONS(2754), - [sym_false] = ACTIONS(2754), - [sym_null] = ACTIONS(2754), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2754), - [anon_sym_decltype] = ACTIONS(2754), - [anon_sym_virtual] = ACTIONS(2754), - [anon_sym_explicit] = ACTIONS(2754), - [anon_sym_typename] = ACTIONS(2754), - [anon_sym_template] = ACTIONS(2754), - [anon_sym_operator] = ACTIONS(2754), - [anon_sym_try] = ACTIONS(2754), - [anon_sym_delete] = ACTIONS(2754), - [anon_sym_throw] = ACTIONS(2754), - [anon_sym_namespace] = ACTIONS(2754), - [anon_sym_using] = ACTIONS(2754), - [anon_sym_static_assert] = ACTIONS(2754), - [anon_sym_concept] = ACTIONS(2754), - [anon_sym_co_return] = ACTIONS(2754), - [anon_sym_co_yield] = ACTIONS(2754), - [anon_sym_R_DQUOTE] = ACTIONS(2756), - [anon_sym_LR_DQUOTE] = ACTIONS(2756), - [anon_sym_uR_DQUOTE] = ACTIONS(2756), - [anon_sym_UR_DQUOTE] = ACTIONS(2756), - [anon_sym_u8R_DQUOTE] = ACTIONS(2756), - [anon_sym_co_await] = ACTIONS(2754), - [anon_sym_new] = ACTIONS(2754), - [anon_sym_requires] = ACTIONS(2754), - [sym_this] = ACTIONS(2754), - [sym_nullptr] = ACTIONS(2754), + [890] = { + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_RBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, - [961] = { - [sym_identifier] = ACTIONS(2814), - [aux_sym_preproc_include_token1] = ACTIONS(2814), - [aux_sym_preproc_def_token1] = ACTIONS(2814), - [aux_sym_preproc_if_token1] = ACTIONS(2814), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2814), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2814), - [sym_preproc_directive] = ACTIONS(2814), - [anon_sym_LPAREN2] = ACTIONS(2816), - [anon_sym_BANG] = ACTIONS(2816), - [anon_sym_TILDE] = ACTIONS(2816), - [anon_sym_DASH] = ACTIONS(2814), - [anon_sym_PLUS] = ACTIONS(2814), - [anon_sym_STAR] = ACTIONS(2816), - [anon_sym_AMP_AMP] = ACTIONS(2816), - [anon_sym_AMP] = ACTIONS(2814), - [anon_sym_SEMI] = ACTIONS(2816), - [anon_sym_typedef] = ACTIONS(2814), - [anon_sym_extern] = ACTIONS(2814), - [anon_sym___attribute__] = ACTIONS(2814), - [anon_sym_COLON_COLON] = ACTIONS(2816), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2816), - [anon_sym___declspec] = ACTIONS(2814), - [anon_sym___based] = ACTIONS(2814), - [anon_sym___cdecl] = ACTIONS(2814), - [anon_sym___clrcall] = ACTIONS(2814), - [anon_sym___stdcall] = ACTIONS(2814), - [anon_sym___fastcall] = ACTIONS(2814), - [anon_sym___thiscall] = ACTIONS(2814), - [anon_sym___vectorcall] = ACTIONS(2814), - [anon_sym_LBRACE] = ACTIONS(2816), - [anon_sym_RBRACE] = ACTIONS(2816), - [anon_sym_LBRACK] = ACTIONS(2814), - [anon_sym_static] = ACTIONS(2814), - [anon_sym_register] = ACTIONS(2814), - [anon_sym_inline] = ACTIONS(2814), - [anon_sym_thread_local] = ACTIONS(2814), - [anon_sym_const] = ACTIONS(2814), - [anon_sym_volatile] = ACTIONS(2814), - [anon_sym_restrict] = ACTIONS(2814), - [anon_sym__Atomic] = ACTIONS(2814), - [anon_sym_mutable] = ACTIONS(2814), - [anon_sym_constexpr] = ACTIONS(2814), - [anon_sym_constinit] = ACTIONS(2814), - [anon_sym_consteval] = ACTIONS(2814), - [anon_sym_signed] = ACTIONS(2814), - [anon_sym_unsigned] = ACTIONS(2814), - [anon_sym_long] = ACTIONS(2814), - [anon_sym_short] = ACTIONS(2814), - [sym_primitive_type] = ACTIONS(2814), - [anon_sym_enum] = ACTIONS(2814), - [anon_sym_class] = ACTIONS(2814), - [anon_sym_struct] = ACTIONS(2814), - [anon_sym_union] = ACTIONS(2814), - [anon_sym_if] = ACTIONS(2814), - [anon_sym_switch] = ACTIONS(2814), - [anon_sym_case] = ACTIONS(2814), - [anon_sym_default] = ACTIONS(2814), - [anon_sym_while] = ACTIONS(2814), - [anon_sym_do] = ACTIONS(2814), - [anon_sym_for] = ACTIONS(2814), - [anon_sym_return] = ACTIONS(2814), - [anon_sym_break] = ACTIONS(2814), - [anon_sym_continue] = ACTIONS(2814), - [anon_sym_goto] = ACTIONS(2814), - [anon_sym_not] = ACTIONS(2814), - [anon_sym_compl] = ACTIONS(2814), - [anon_sym_DASH_DASH] = ACTIONS(2816), - [anon_sym_PLUS_PLUS] = ACTIONS(2816), - [anon_sym_sizeof] = ACTIONS(2814), - [sym_number_literal] = ACTIONS(2816), - [anon_sym_L_SQUOTE] = ACTIONS(2816), - [anon_sym_u_SQUOTE] = ACTIONS(2816), - [anon_sym_U_SQUOTE] = ACTIONS(2816), - [anon_sym_u8_SQUOTE] = ACTIONS(2816), - [anon_sym_SQUOTE] = ACTIONS(2816), - [anon_sym_L_DQUOTE] = ACTIONS(2816), - [anon_sym_u_DQUOTE] = ACTIONS(2816), - [anon_sym_U_DQUOTE] = ACTIONS(2816), - [anon_sym_u8_DQUOTE] = ACTIONS(2816), - [anon_sym_DQUOTE] = ACTIONS(2816), - [sym_true] = ACTIONS(2814), - [sym_false] = ACTIONS(2814), - [sym_null] = ACTIONS(2814), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2814), - [anon_sym_decltype] = ACTIONS(2814), - [anon_sym_virtual] = ACTIONS(2814), - [anon_sym_explicit] = ACTIONS(2814), - [anon_sym_typename] = ACTIONS(2814), - [anon_sym_template] = ACTIONS(2814), - [anon_sym_operator] = ACTIONS(2814), - [anon_sym_try] = ACTIONS(2814), - [anon_sym_delete] = ACTIONS(2814), - [anon_sym_throw] = ACTIONS(2814), - [anon_sym_namespace] = ACTIONS(2814), - [anon_sym_using] = ACTIONS(2814), - [anon_sym_static_assert] = ACTIONS(2814), - [anon_sym_concept] = ACTIONS(2814), - [anon_sym_co_return] = ACTIONS(2814), - [anon_sym_co_yield] = ACTIONS(2814), - [anon_sym_R_DQUOTE] = ACTIONS(2816), - [anon_sym_LR_DQUOTE] = ACTIONS(2816), - [anon_sym_uR_DQUOTE] = ACTIONS(2816), - [anon_sym_UR_DQUOTE] = ACTIONS(2816), - [anon_sym_u8R_DQUOTE] = ACTIONS(2816), - [anon_sym_co_await] = ACTIONS(2814), - [anon_sym_new] = ACTIONS(2814), - [anon_sym_requires] = ACTIONS(2814), - [sym_this] = ACTIONS(2814), - [sym_nullptr] = ACTIONS(2814), + [891] = { + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_RBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, - [962] = { - [sym_identifier] = ACTIONS(2818), - [aux_sym_preproc_include_token1] = ACTIONS(2818), - [aux_sym_preproc_def_token1] = ACTIONS(2818), - [aux_sym_preproc_if_token1] = ACTIONS(2818), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2818), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2818), - [sym_preproc_directive] = ACTIONS(2818), - [anon_sym_LPAREN2] = ACTIONS(2820), - [anon_sym_BANG] = ACTIONS(2820), - [anon_sym_TILDE] = ACTIONS(2820), - [anon_sym_DASH] = ACTIONS(2818), - [anon_sym_PLUS] = ACTIONS(2818), - [anon_sym_STAR] = ACTIONS(2820), - [anon_sym_AMP_AMP] = ACTIONS(2820), - [anon_sym_AMP] = ACTIONS(2818), - [anon_sym_SEMI] = ACTIONS(2820), - [anon_sym_typedef] = ACTIONS(2818), - [anon_sym_extern] = ACTIONS(2818), - [anon_sym___attribute__] = ACTIONS(2818), - [anon_sym_COLON_COLON] = ACTIONS(2820), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2820), - [anon_sym___declspec] = ACTIONS(2818), - [anon_sym___based] = ACTIONS(2818), - [anon_sym___cdecl] = ACTIONS(2818), - [anon_sym___clrcall] = ACTIONS(2818), - [anon_sym___stdcall] = ACTIONS(2818), - [anon_sym___fastcall] = ACTIONS(2818), - [anon_sym___thiscall] = ACTIONS(2818), - [anon_sym___vectorcall] = ACTIONS(2818), - [anon_sym_LBRACE] = ACTIONS(2820), - [anon_sym_RBRACE] = ACTIONS(2820), - [anon_sym_LBRACK] = ACTIONS(2818), - [anon_sym_static] = ACTIONS(2818), - [anon_sym_register] = ACTIONS(2818), - [anon_sym_inline] = ACTIONS(2818), - [anon_sym_thread_local] = ACTIONS(2818), - [anon_sym_const] = ACTIONS(2818), - [anon_sym_volatile] = ACTIONS(2818), - [anon_sym_restrict] = ACTIONS(2818), - [anon_sym__Atomic] = ACTIONS(2818), - [anon_sym_mutable] = ACTIONS(2818), - [anon_sym_constexpr] = ACTIONS(2818), - [anon_sym_constinit] = ACTIONS(2818), - [anon_sym_consteval] = ACTIONS(2818), - [anon_sym_signed] = ACTIONS(2818), - [anon_sym_unsigned] = ACTIONS(2818), - [anon_sym_long] = ACTIONS(2818), - [anon_sym_short] = ACTIONS(2818), - [sym_primitive_type] = ACTIONS(2818), - [anon_sym_enum] = ACTIONS(2818), - [anon_sym_class] = ACTIONS(2818), - [anon_sym_struct] = ACTIONS(2818), - [anon_sym_union] = ACTIONS(2818), - [anon_sym_if] = ACTIONS(2818), - [anon_sym_switch] = ACTIONS(2818), - [anon_sym_case] = ACTIONS(2818), - [anon_sym_default] = ACTIONS(2818), - [anon_sym_while] = ACTIONS(2818), - [anon_sym_do] = ACTIONS(2818), - [anon_sym_for] = ACTIONS(2818), - [anon_sym_return] = ACTIONS(2818), - [anon_sym_break] = ACTIONS(2818), - [anon_sym_continue] = ACTIONS(2818), - [anon_sym_goto] = ACTIONS(2818), - [anon_sym_not] = ACTIONS(2818), - [anon_sym_compl] = ACTIONS(2818), - [anon_sym_DASH_DASH] = ACTIONS(2820), - [anon_sym_PLUS_PLUS] = ACTIONS(2820), - [anon_sym_sizeof] = ACTIONS(2818), - [sym_number_literal] = ACTIONS(2820), - [anon_sym_L_SQUOTE] = ACTIONS(2820), - [anon_sym_u_SQUOTE] = ACTIONS(2820), - [anon_sym_U_SQUOTE] = ACTIONS(2820), - [anon_sym_u8_SQUOTE] = ACTIONS(2820), - [anon_sym_SQUOTE] = ACTIONS(2820), - [anon_sym_L_DQUOTE] = ACTIONS(2820), - [anon_sym_u_DQUOTE] = ACTIONS(2820), - [anon_sym_U_DQUOTE] = ACTIONS(2820), - [anon_sym_u8_DQUOTE] = ACTIONS(2820), - [anon_sym_DQUOTE] = ACTIONS(2820), - [sym_true] = ACTIONS(2818), - [sym_false] = ACTIONS(2818), - [sym_null] = ACTIONS(2818), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2818), - [anon_sym_decltype] = ACTIONS(2818), - [anon_sym_virtual] = ACTIONS(2818), - [anon_sym_explicit] = ACTIONS(2818), - [anon_sym_typename] = ACTIONS(2818), - [anon_sym_template] = ACTIONS(2818), - [anon_sym_operator] = ACTIONS(2818), - [anon_sym_try] = ACTIONS(2818), - [anon_sym_delete] = ACTIONS(2818), - [anon_sym_throw] = ACTIONS(2818), - [anon_sym_namespace] = ACTIONS(2818), - [anon_sym_using] = ACTIONS(2818), - [anon_sym_static_assert] = ACTIONS(2818), - [anon_sym_concept] = ACTIONS(2818), - [anon_sym_co_return] = ACTIONS(2818), - [anon_sym_co_yield] = ACTIONS(2818), - [anon_sym_R_DQUOTE] = ACTIONS(2820), - [anon_sym_LR_DQUOTE] = ACTIONS(2820), - [anon_sym_uR_DQUOTE] = ACTIONS(2820), - [anon_sym_UR_DQUOTE] = ACTIONS(2820), - [anon_sym_u8R_DQUOTE] = ACTIONS(2820), - [anon_sym_co_await] = ACTIONS(2818), - [anon_sym_new] = ACTIONS(2818), - [anon_sym_requires] = ACTIONS(2818), - [sym_this] = ACTIONS(2818), - [sym_nullptr] = ACTIONS(2818), + [892] = { + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_RBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, - [963] = { - [ts_builtin_sym_end] = ACTIONS(2704), - [sym_identifier] = ACTIONS(2702), - [aux_sym_preproc_include_token1] = ACTIONS(2702), - [aux_sym_preproc_def_token1] = ACTIONS(2702), - [aux_sym_preproc_if_token1] = ACTIONS(2702), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2702), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2702), - [sym_preproc_directive] = ACTIONS(2702), - [anon_sym_LPAREN2] = ACTIONS(2704), - [anon_sym_BANG] = ACTIONS(2704), - [anon_sym_TILDE] = ACTIONS(2704), - [anon_sym_DASH] = ACTIONS(2702), - [anon_sym_PLUS] = ACTIONS(2702), - [anon_sym_STAR] = ACTIONS(2704), - [anon_sym_AMP_AMP] = ACTIONS(2704), - [anon_sym_AMP] = ACTIONS(2702), - [anon_sym_SEMI] = ACTIONS(2704), - [anon_sym_typedef] = ACTIONS(2702), - [anon_sym_extern] = ACTIONS(2702), - [anon_sym___attribute__] = ACTIONS(2702), - [anon_sym_COLON_COLON] = ACTIONS(2704), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2704), - [anon_sym___declspec] = ACTIONS(2702), - [anon_sym___based] = ACTIONS(2702), - [anon_sym___cdecl] = ACTIONS(2702), - [anon_sym___clrcall] = ACTIONS(2702), - [anon_sym___stdcall] = ACTIONS(2702), - [anon_sym___fastcall] = ACTIONS(2702), - [anon_sym___thiscall] = ACTIONS(2702), - [anon_sym___vectorcall] = ACTIONS(2702), - [anon_sym_LBRACE] = ACTIONS(2704), - [anon_sym_LBRACK] = ACTIONS(2702), - [anon_sym_static] = ACTIONS(2702), - [anon_sym_register] = ACTIONS(2702), - [anon_sym_inline] = ACTIONS(2702), - [anon_sym_thread_local] = ACTIONS(2702), - [anon_sym_const] = ACTIONS(2702), - [anon_sym_volatile] = ACTIONS(2702), - [anon_sym_restrict] = ACTIONS(2702), - [anon_sym__Atomic] = ACTIONS(2702), - [anon_sym_mutable] = ACTIONS(2702), - [anon_sym_constexpr] = ACTIONS(2702), - [anon_sym_constinit] = ACTIONS(2702), - [anon_sym_consteval] = ACTIONS(2702), - [anon_sym_signed] = ACTIONS(2702), - [anon_sym_unsigned] = ACTIONS(2702), - [anon_sym_long] = ACTIONS(2702), - [anon_sym_short] = ACTIONS(2702), - [sym_primitive_type] = ACTIONS(2702), - [anon_sym_enum] = ACTIONS(2702), - [anon_sym_class] = ACTIONS(2702), - [anon_sym_struct] = ACTIONS(2702), - [anon_sym_union] = ACTIONS(2702), - [anon_sym_if] = ACTIONS(2702), - [anon_sym_switch] = ACTIONS(2702), - [anon_sym_case] = ACTIONS(2702), - [anon_sym_default] = ACTIONS(2702), - [anon_sym_while] = ACTIONS(2702), - [anon_sym_do] = ACTIONS(2702), - [anon_sym_for] = ACTIONS(2702), - [anon_sym_return] = ACTIONS(2702), - [anon_sym_break] = ACTIONS(2702), - [anon_sym_continue] = ACTIONS(2702), - [anon_sym_goto] = ACTIONS(2702), - [anon_sym_not] = ACTIONS(2702), - [anon_sym_compl] = ACTIONS(2702), - [anon_sym_DASH_DASH] = ACTIONS(2704), - [anon_sym_PLUS_PLUS] = ACTIONS(2704), - [anon_sym_sizeof] = ACTIONS(2702), - [sym_number_literal] = ACTIONS(2704), - [anon_sym_L_SQUOTE] = ACTIONS(2704), - [anon_sym_u_SQUOTE] = ACTIONS(2704), - [anon_sym_U_SQUOTE] = ACTIONS(2704), - [anon_sym_u8_SQUOTE] = ACTIONS(2704), - [anon_sym_SQUOTE] = ACTIONS(2704), - [anon_sym_L_DQUOTE] = ACTIONS(2704), - [anon_sym_u_DQUOTE] = ACTIONS(2704), - [anon_sym_U_DQUOTE] = ACTIONS(2704), - [anon_sym_u8_DQUOTE] = ACTIONS(2704), - [anon_sym_DQUOTE] = ACTIONS(2704), - [sym_true] = ACTIONS(2702), - [sym_false] = ACTIONS(2702), - [sym_null] = ACTIONS(2702), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2702), - [anon_sym_decltype] = ACTIONS(2702), - [anon_sym_virtual] = ACTIONS(2702), - [anon_sym_explicit] = ACTIONS(2702), - [anon_sym_typename] = ACTIONS(2702), - [anon_sym_template] = ACTIONS(2702), - [anon_sym_operator] = ACTIONS(2702), - [anon_sym_try] = ACTIONS(2702), - [anon_sym_delete] = ACTIONS(2702), - [anon_sym_throw] = ACTIONS(2702), - [anon_sym_namespace] = ACTIONS(2702), - [anon_sym_using] = ACTIONS(2702), - [anon_sym_static_assert] = ACTIONS(2702), - [anon_sym_concept] = ACTIONS(2702), - [anon_sym_co_return] = ACTIONS(2702), - [anon_sym_co_yield] = ACTIONS(2702), - [anon_sym_R_DQUOTE] = ACTIONS(2704), - [anon_sym_LR_DQUOTE] = ACTIONS(2704), - [anon_sym_uR_DQUOTE] = ACTIONS(2704), - [anon_sym_UR_DQUOTE] = ACTIONS(2704), - [anon_sym_u8R_DQUOTE] = ACTIONS(2704), - [anon_sym_co_await] = ACTIONS(2702), - [anon_sym_new] = ACTIONS(2702), - [anon_sym_requires] = ACTIONS(2702), - [sym_this] = ACTIONS(2702), - [sym_nullptr] = ACTIONS(2702), + [893] = { + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_RBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, - [964] = { - [sym_identifier] = ACTIONS(2822), - [aux_sym_preproc_include_token1] = ACTIONS(2822), - [aux_sym_preproc_def_token1] = ACTIONS(2822), - [aux_sym_preproc_if_token1] = ACTIONS(2822), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2822), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2822), - [sym_preproc_directive] = ACTIONS(2822), - [anon_sym_LPAREN2] = ACTIONS(2824), - [anon_sym_BANG] = ACTIONS(2824), - [anon_sym_TILDE] = ACTIONS(2824), - [anon_sym_DASH] = ACTIONS(2822), - [anon_sym_PLUS] = ACTIONS(2822), - [anon_sym_STAR] = ACTIONS(2824), - [anon_sym_AMP_AMP] = ACTIONS(2824), - [anon_sym_AMP] = ACTIONS(2822), - [anon_sym_SEMI] = ACTIONS(2824), - [anon_sym_typedef] = ACTIONS(2822), - [anon_sym_extern] = ACTIONS(2822), - [anon_sym___attribute__] = ACTIONS(2822), - [anon_sym_COLON_COLON] = ACTIONS(2824), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2824), - [anon_sym___declspec] = ACTIONS(2822), - [anon_sym___based] = ACTIONS(2822), - [anon_sym___cdecl] = ACTIONS(2822), - [anon_sym___clrcall] = ACTIONS(2822), - [anon_sym___stdcall] = ACTIONS(2822), - [anon_sym___fastcall] = ACTIONS(2822), - [anon_sym___thiscall] = ACTIONS(2822), - [anon_sym___vectorcall] = ACTIONS(2822), - [anon_sym_LBRACE] = ACTIONS(2824), - [anon_sym_RBRACE] = ACTIONS(2824), - [anon_sym_LBRACK] = ACTIONS(2822), - [anon_sym_static] = ACTIONS(2822), - [anon_sym_register] = ACTIONS(2822), - [anon_sym_inline] = ACTIONS(2822), - [anon_sym_thread_local] = ACTIONS(2822), - [anon_sym_const] = ACTIONS(2822), - [anon_sym_volatile] = ACTIONS(2822), - [anon_sym_restrict] = ACTIONS(2822), - [anon_sym__Atomic] = ACTIONS(2822), - [anon_sym_mutable] = ACTIONS(2822), - [anon_sym_constexpr] = ACTIONS(2822), - [anon_sym_constinit] = ACTIONS(2822), - [anon_sym_consteval] = ACTIONS(2822), - [anon_sym_signed] = ACTIONS(2822), - [anon_sym_unsigned] = ACTIONS(2822), - [anon_sym_long] = ACTIONS(2822), - [anon_sym_short] = ACTIONS(2822), - [sym_primitive_type] = ACTIONS(2822), - [anon_sym_enum] = ACTIONS(2822), - [anon_sym_class] = ACTIONS(2822), - [anon_sym_struct] = ACTIONS(2822), - [anon_sym_union] = ACTIONS(2822), - [anon_sym_if] = ACTIONS(2822), - [anon_sym_switch] = ACTIONS(2822), - [anon_sym_case] = ACTIONS(2822), - [anon_sym_default] = ACTIONS(2822), - [anon_sym_while] = ACTIONS(2822), - [anon_sym_do] = ACTIONS(2822), - [anon_sym_for] = ACTIONS(2822), - [anon_sym_return] = ACTIONS(2822), - [anon_sym_break] = ACTIONS(2822), - [anon_sym_continue] = ACTIONS(2822), - [anon_sym_goto] = ACTIONS(2822), - [anon_sym_not] = ACTIONS(2822), - [anon_sym_compl] = ACTIONS(2822), - [anon_sym_DASH_DASH] = ACTIONS(2824), - [anon_sym_PLUS_PLUS] = ACTIONS(2824), - [anon_sym_sizeof] = ACTIONS(2822), - [sym_number_literal] = ACTIONS(2824), - [anon_sym_L_SQUOTE] = ACTIONS(2824), - [anon_sym_u_SQUOTE] = ACTIONS(2824), - [anon_sym_U_SQUOTE] = ACTIONS(2824), - [anon_sym_u8_SQUOTE] = ACTIONS(2824), - [anon_sym_SQUOTE] = ACTIONS(2824), - [anon_sym_L_DQUOTE] = ACTIONS(2824), - [anon_sym_u_DQUOTE] = ACTIONS(2824), - [anon_sym_U_DQUOTE] = ACTIONS(2824), - [anon_sym_u8_DQUOTE] = ACTIONS(2824), - [anon_sym_DQUOTE] = ACTIONS(2824), - [sym_true] = ACTIONS(2822), - [sym_false] = ACTIONS(2822), - [sym_null] = ACTIONS(2822), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2822), - [anon_sym_decltype] = ACTIONS(2822), - [anon_sym_virtual] = ACTIONS(2822), - [anon_sym_explicit] = ACTIONS(2822), - [anon_sym_typename] = ACTIONS(2822), - [anon_sym_template] = ACTIONS(2822), - [anon_sym_operator] = ACTIONS(2822), - [anon_sym_try] = ACTIONS(2822), - [anon_sym_delete] = ACTIONS(2822), - [anon_sym_throw] = ACTIONS(2822), - [anon_sym_namespace] = ACTIONS(2822), - [anon_sym_using] = ACTIONS(2822), - [anon_sym_static_assert] = ACTIONS(2822), - [anon_sym_concept] = ACTIONS(2822), - [anon_sym_co_return] = ACTIONS(2822), - [anon_sym_co_yield] = ACTIONS(2822), - [anon_sym_R_DQUOTE] = ACTIONS(2824), - [anon_sym_LR_DQUOTE] = ACTIONS(2824), - [anon_sym_uR_DQUOTE] = ACTIONS(2824), - [anon_sym_UR_DQUOTE] = ACTIONS(2824), - [anon_sym_u8R_DQUOTE] = ACTIONS(2824), - [anon_sym_co_await] = ACTIONS(2822), - [anon_sym_new] = ACTIONS(2822), - [anon_sym_requires] = ACTIONS(2822), - [sym_this] = ACTIONS(2822), - [sym_nullptr] = ACTIONS(2822), + [894] = { + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_RBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, - [965] = { - [sym_identifier] = ACTIONS(2826), - [aux_sym_preproc_include_token1] = ACTIONS(2826), - [aux_sym_preproc_def_token1] = ACTIONS(2826), - [aux_sym_preproc_if_token1] = ACTIONS(2826), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2826), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2826), - [sym_preproc_directive] = ACTIONS(2826), - [anon_sym_LPAREN2] = ACTIONS(2828), - [anon_sym_BANG] = ACTIONS(2828), - [anon_sym_TILDE] = ACTIONS(2828), - [anon_sym_DASH] = ACTIONS(2826), - [anon_sym_PLUS] = ACTIONS(2826), - [anon_sym_STAR] = ACTIONS(2828), - [anon_sym_AMP_AMP] = ACTIONS(2828), - [anon_sym_AMP] = ACTIONS(2826), - [anon_sym_SEMI] = ACTIONS(2828), - [anon_sym_typedef] = ACTIONS(2826), - [anon_sym_extern] = ACTIONS(2826), - [anon_sym___attribute__] = ACTIONS(2826), - [anon_sym_COLON_COLON] = ACTIONS(2828), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2828), - [anon_sym___declspec] = ACTIONS(2826), - [anon_sym___based] = ACTIONS(2826), - [anon_sym___cdecl] = ACTIONS(2826), - [anon_sym___clrcall] = ACTIONS(2826), - [anon_sym___stdcall] = ACTIONS(2826), - [anon_sym___fastcall] = ACTIONS(2826), - [anon_sym___thiscall] = ACTIONS(2826), - [anon_sym___vectorcall] = ACTIONS(2826), - [anon_sym_LBRACE] = ACTIONS(2828), - [anon_sym_RBRACE] = ACTIONS(2828), - [anon_sym_LBRACK] = ACTIONS(2826), - [anon_sym_static] = ACTIONS(2826), - [anon_sym_register] = ACTIONS(2826), - [anon_sym_inline] = ACTIONS(2826), - [anon_sym_thread_local] = ACTIONS(2826), - [anon_sym_const] = ACTIONS(2826), - [anon_sym_volatile] = ACTIONS(2826), - [anon_sym_restrict] = ACTIONS(2826), - [anon_sym__Atomic] = ACTIONS(2826), - [anon_sym_mutable] = ACTIONS(2826), - [anon_sym_constexpr] = ACTIONS(2826), - [anon_sym_constinit] = ACTIONS(2826), - [anon_sym_consteval] = ACTIONS(2826), - [anon_sym_signed] = ACTIONS(2826), - [anon_sym_unsigned] = ACTIONS(2826), - [anon_sym_long] = ACTIONS(2826), - [anon_sym_short] = ACTIONS(2826), - [sym_primitive_type] = ACTIONS(2826), - [anon_sym_enum] = ACTIONS(2826), - [anon_sym_class] = ACTIONS(2826), - [anon_sym_struct] = ACTIONS(2826), - [anon_sym_union] = ACTIONS(2826), - [anon_sym_if] = ACTIONS(2826), - [anon_sym_switch] = ACTIONS(2826), - [anon_sym_case] = ACTIONS(2826), - [anon_sym_default] = ACTIONS(2826), - [anon_sym_while] = ACTIONS(2826), - [anon_sym_do] = ACTIONS(2826), - [anon_sym_for] = ACTIONS(2826), - [anon_sym_return] = ACTIONS(2826), - [anon_sym_break] = ACTIONS(2826), - [anon_sym_continue] = ACTIONS(2826), - [anon_sym_goto] = ACTIONS(2826), - [anon_sym_not] = ACTIONS(2826), - [anon_sym_compl] = ACTIONS(2826), - [anon_sym_DASH_DASH] = ACTIONS(2828), - [anon_sym_PLUS_PLUS] = ACTIONS(2828), - [anon_sym_sizeof] = ACTIONS(2826), - [sym_number_literal] = ACTIONS(2828), - [anon_sym_L_SQUOTE] = ACTIONS(2828), - [anon_sym_u_SQUOTE] = ACTIONS(2828), - [anon_sym_U_SQUOTE] = ACTIONS(2828), - [anon_sym_u8_SQUOTE] = ACTIONS(2828), - [anon_sym_SQUOTE] = ACTIONS(2828), - [anon_sym_L_DQUOTE] = ACTIONS(2828), - [anon_sym_u_DQUOTE] = ACTIONS(2828), - [anon_sym_U_DQUOTE] = ACTIONS(2828), - [anon_sym_u8_DQUOTE] = ACTIONS(2828), - [anon_sym_DQUOTE] = ACTIONS(2828), - [sym_true] = ACTIONS(2826), - [sym_false] = ACTIONS(2826), - [sym_null] = ACTIONS(2826), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2826), - [anon_sym_decltype] = ACTIONS(2826), - [anon_sym_virtual] = ACTIONS(2826), - [anon_sym_explicit] = ACTIONS(2826), - [anon_sym_typename] = ACTIONS(2826), - [anon_sym_template] = ACTIONS(2826), - [anon_sym_operator] = ACTIONS(2826), - [anon_sym_try] = ACTIONS(2826), - [anon_sym_delete] = ACTIONS(2826), - [anon_sym_throw] = ACTIONS(2826), - [anon_sym_namespace] = ACTIONS(2826), - [anon_sym_using] = ACTIONS(2826), - [anon_sym_static_assert] = ACTIONS(2826), - [anon_sym_concept] = ACTIONS(2826), - [anon_sym_co_return] = ACTIONS(2826), - [anon_sym_co_yield] = ACTIONS(2826), - [anon_sym_R_DQUOTE] = ACTIONS(2828), - [anon_sym_LR_DQUOTE] = ACTIONS(2828), - [anon_sym_uR_DQUOTE] = ACTIONS(2828), - [anon_sym_UR_DQUOTE] = ACTIONS(2828), - [anon_sym_u8R_DQUOTE] = ACTIONS(2828), - [anon_sym_co_await] = ACTIONS(2826), - [anon_sym_new] = ACTIONS(2826), - [anon_sym_requires] = ACTIONS(2826), - [sym_this] = ACTIONS(2826), - [sym_nullptr] = ACTIONS(2826), + [895] = { + [ts_builtin_sym_end] = ACTIONS(2950), + [sym_identifier] = ACTIONS(2948), + [aux_sym_preproc_include_token1] = ACTIONS(2948), + [aux_sym_preproc_def_token1] = ACTIONS(2948), + [aux_sym_preproc_if_token1] = ACTIONS(2948), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2948), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2948), + [sym_preproc_directive] = ACTIONS(2948), + [anon_sym_LPAREN2] = ACTIONS(2950), + [anon_sym_BANG] = ACTIONS(2950), + [anon_sym_TILDE] = ACTIONS(2950), + [anon_sym_DASH] = ACTIONS(2948), + [anon_sym_PLUS] = ACTIONS(2948), + [anon_sym_STAR] = ACTIONS(2950), + [anon_sym_AMP_AMP] = ACTIONS(2950), + [anon_sym_AMP] = ACTIONS(2948), + [anon_sym_SEMI] = ACTIONS(2950), + [anon_sym_typedef] = ACTIONS(2948), + [anon_sym_extern] = ACTIONS(2948), + [anon_sym___attribute__] = ACTIONS(2948), + [anon_sym_COLON_COLON] = ACTIONS(2950), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2950), + [anon_sym___declspec] = ACTIONS(2948), + [anon_sym___based] = ACTIONS(2948), + [anon_sym___cdecl] = ACTIONS(2948), + [anon_sym___clrcall] = ACTIONS(2948), + [anon_sym___stdcall] = ACTIONS(2948), + [anon_sym___fastcall] = ACTIONS(2948), + [anon_sym___thiscall] = ACTIONS(2948), + [anon_sym___vectorcall] = ACTIONS(2948), + [anon_sym_LBRACE] = ACTIONS(2950), + [anon_sym_LBRACK] = ACTIONS(2948), + [anon_sym_static] = ACTIONS(2948), + [anon_sym_register] = ACTIONS(2948), + [anon_sym_inline] = ACTIONS(2948), + [anon_sym_thread_local] = ACTIONS(2948), + [anon_sym_const] = ACTIONS(2948), + [anon_sym_constexpr] = ACTIONS(2948), + [anon_sym_volatile] = ACTIONS(2948), + [anon_sym_restrict] = ACTIONS(2948), + [anon_sym___restrict__] = ACTIONS(2948), + [anon_sym__Atomic] = ACTIONS(2948), + [anon_sym__Noreturn] = ACTIONS(2948), + [anon_sym_noreturn] = ACTIONS(2948), + [anon_sym_mutable] = ACTIONS(2948), + [anon_sym_constinit] = ACTIONS(2948), + [anon_sym_consteval] = ACTIONS(2948), + [anon_sym_signed] = ACTIONS(2948), + [anon_sym_unsigned] = ACTIONS(2948), + [anon_sym_long] = ACTIONS(2948), + [anon_sym_short] = ACTIONS(2948), + [sym_primitive_type] = ACTIONS(2948), + [anon_sym_enum] = ACTIONS(2948), + [anon_sym_class] = ACTIONS(2948), + [anon_sym_struct] = ACTIONS(2948), + [anon_sym_union] = ACTIONS(2948), + [anon_sym_if] = ACTIONS(2948), + [anon_sym_else] = ACTIONS(2948), + [anon_sym_switch] = ACTIONS(2948), + [anon_sym_case] = ACTIONS(2948), + [anon_sym_default] = ACTIONS(2948), + [anon_sym_while] = ACTIONS(2948), + [anon_sym_do] = ACTIONS(2948), + [anon_sym_for] = ACTIONS(2948), + [anon_sym_return] = ACTIONS(2948), + [anon_sym_break] = ACTIONS(2948), + [anon_sym_continue] = ACTIONS(2948), + [anon_sym_goto] = ACTIONS(2948), + [anon_sym_not] = ACTIONS(2948), + [anon_sym_compl] = ACTIONS(2948), + [anon_sym_DASH_DASH] = ACTIONS(2950), + [anon_sym_PLUS_PLUS] = ACTIONS(2950), + [anon_sym_sizeof] = ACTIONS(2948), + [anon_sym_offsetof] = ACTIONS(2948), + [anon_sym__Generic] = ACTIONS(2948), + [anon_sym_asm] = ACTIONS(2948), + [anon_sym___asm__] = ACTIONS(2948), + [sym_number_literal] = ACTIONS(2950), + [anon_sym_L_SQUOTE] = ACTIONS(2950), + [anon_sym_u_SQUOTE] = ACTIONS(2950), + [anon_sym_U_SQUOTE] = ACTIONS(2950), + [anon_sym_u8_SQUOTE] = ACTIONS(2950), + [anon_sym_SQUOTE] = ACTIONS(2950), + [anon_sym_L_DQUOTE] = ACTIONS(2950), + [anon_sym_u_DQUOTE] = ACTIONS(2950), + [anon_sym_U_DQUOTE] = ACTIONS(2950), + [anon_sym_u8_DQUOTE] = ACTIONS(2950), + [anon_sym_DQUOTE] = ACTIONS(2950), + [sym_true] = ACTIONS(2948), + [sym_false] = ACTIONS(2948), + [anon_sym_NULL] = ACTIONS(2948), + [anon_sym_nullptr] = ACTIONS(2948), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2948), + [anon_sym_decltype] = ACTIONS(2948), + [anon_sym_virtual] = ACTIONS(2948), + [anon_sym_explicit] = ACTIONS(2948), + [anon_sym_typename] = ACTIONS(2948), + [anon_sym_template] = ACTIONS(2948), + [anon_sym_operator] = ACTIONS(2948), + [anon_sym_try] = ACTIONS(2948), + [anon_sym_delete] = ACTIONS(2948), + [anon_sym_throw] = ACTIONS(2948), + [anon_sym_namespace] = ACTIONS(2948), + [anon_sym_using] = ACTIONS(2948), + [anon_sym_static_assert] = ACTIONS(2948), + [anon_sym_concept] = ACTIONS(2948), + [anon_sym_co_return] = ACTIONS(2948), + [anon_sym_co_yield] = ACTIONS(2948), + [anon_sym_R_DQUOTE] = ACTIONS(2950), + [anon_sym_LR_DQUOTE] = ACTIONS(2950), + [anon_sym_uR_DQUOTE] = ACTIONS(2950), + [anon_sym_UR_DQUOTE] = ACTIONS(2950), + [anon_sym_u8R_DQUOTE] = ACTIONS(2950), + [anon_sym_co_await] = ACTIONS(2948), + [anon_sym_new] = ACTIONS(2948), + [anon_sym_requires] = ACTIONS(2948), + [sym_this] = ACTIONS(2948), }, - [966] = { + [896] = { + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_RBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), + }, + [897] = { + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_RBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), + }, + [898] = { + [ts_builtin_sym_end] = ACTIONS(3050), + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), + }, + [899] = { + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_RBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), + }, + [900] = { + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_RBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), + }, + [901] = { + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_RBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), + }, + [902] = { + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_RBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), + }, + [903] = { + [ts_builtin_sym_end] = ACTIONS(3050), + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), + }, + [904] = { + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_RBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), + }, + [905] = { + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_RBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), + }, + [906] = { + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_RBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), + }, + [907] = { + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_RBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), + }, + [908] = { + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_RBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), + }, + [909] = { + [ts_builtin_sym_end] = ACTIONS(3050), + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), + }, + [910] = { + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_RBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), + }, + [911] = { + [ts_builtin_sym_end] = ACTIONS(3050), + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), + }, + [912] = { + [sym_identifier] = ACTIONS(3016), + [aux_sym_preproc_include_token1] = ACTIONS(3016), + [aux_sym_preproc_def_token1] = ACTIONS(3016), + [aux_sym_preproc_if_token1] = ACTIONS(3016), + [aux_sym_preproc_if_token2] = ACTIONS(3016), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3016), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3016), + [sym_preproc_directive] = ACTIONS(3016), + [anon_sym_LPAREN2] = ACTIONS(3018), + [anon_sym_BANG] = ACTIONS(3018), + [anon_sym_TILDE] = ACTIONS(3018), + [anon_sym_DASH] = ACTIONS(3016), + [anon_sym_PLUS] = ACTIONS(3016), + [anon_sym_STAR] = ACTIONS(3018), + [anon_sym_AMP_AMP] = ACTIONS(3018), + [anon_sym_AMP] = ACTIONS(3016), + [anon_sym_SEMI] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3016), + [anon_sym_extern] = ACTIONS(3016), + [anon_sym___attribute__] = ACTIONS(3016), + [anon_sym_COLON_COLON] = ACTIONS(3018), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3018), + [anon_sym___declspec] = ACTIONS(3016), + [anon_sym___based] = ACTIONS(3016), + [anon_sym___cdecl] = ACTIONS(3016), + [anon_sym___clrcall] = ACTIONS(3016), + [anon_sym___stdcall] = ACTIONS(3016), + [anon_sym___fastcall] = ACTIONS(3016), + [anon_sym___thiscall] = ACTIONS(3016), + [anon_sym___vectorcall] = ACTIONS(3016), + [anon_sym_LBRACE] = ACTIONS(3018), + [anon_sym_LBRACK] = ACTIONS(3016), + [anon_sym_static] = ACTIONS(3016), + [anon_sym_register] = ACTIONS(3016), + [anon_sym_inline] = ACTIONS(3016), + [anon_sym_thread_local] = ACTIONS(3016), + [anon_sym_const] = ACTIONS(3016), + [anon_sym_constexpr] = ACTIONS(3016), + [anon_sym_volatile] = ACTIONS(3016), + [anon_sym_restrict] = ACTIONS(3016), + [anon_sym___restrict__] = ACTIONS(3016), + [anon_sym__Atomic] = ACTIONS(3016), + [anon_sym__Noreturn] = ACTIONS(3016), + [anon_sym_noreturn] = ACTIONS(3016), + [anon_sym_mutable] = ACTIONS(3016), + [anon_sym_constinit] = ACTIONS(3016), + [anon_sym_consteval] = ACTIONS(3016), + [anon_sym_signed] = ACTIONS(3016), + [anon_sym_unsigned] = ACTIONS(3016), + [anon_sym_long] = ACTIONS(3016), + [anon_sym_short] = ACTIONS(3016), + [sym_primitive_type] = ACTIONS(3016), + [anon_sym_enum] = ACTIONS(3016), + [anon_sym_class] = ACTIONS(3016), + [anon_sym_struct] = ACTIONS(3016), + [anon_sym_union] = ACTIONS(3016), + [anon_sym_if] = ACTIONS(3016), + [anon_sym_else] = ACTIONS(3016), + [anon_sym_switch] = ACTIONS(3016), + [anon_sym_case] = ACTIONS(3016), + [anon_sym_default] = ACTIONS(3016), + [anon_sym_while] = ACTIONS(3016), + [anon_sym_do] = ACTIONS(3016), + [anon_sym_for] = ACTIONS(3016), + [anon_sym_return] = ACTIONS(3016), + [anon_sym_break] = ACTIONS(3016), + [anon_sym_continue] = ACTIONS(3016), + [anon_sym_goto] = ACTIONS(3016), + [anon_sym_not] = ACTIONS(3016), + [anon_sym_compl] = ACTIONS(3016), + [anon_sym_DASH_DASH] = ACTIONS(3018), + [anon_sym_PLUS_PLUS] = ACTIONS(3018), + [anon_sym_sizeof] = ACTIONS(3016), + [anon_sym_offsetof] = ACTIONS(3016), + [anon_sym__Generic] = ACTIONS(3016), + [anon_sym_asm] = ACTIONS(3016), + [anon_sym___asm__] = ACTIONS(3016), + [sym_number_literal] = ACTIONS(3018), + [anon_sym_L_SQUOTE] = ACTIONS(3018), + [anon_sym_u_SQUOTE] = ACTIONS(3018), + [anon_sym_U_SQUOTE] = ACTIONS(3018), + [anon_sym_u8_SQUOTE] = ACTIONS(3018), + [anon_sym_SQUOTE] = ACTIONS(3018), + [anon_sym_L_DQUOTE] = ACTIONS(3018), + [anon_sym_u_DQUOTE] = ACTIONS(3018), + [anon_sym_U_DQUOTE] = ACTIONS(3018), + [anon_sym_u8_DQUOTE] = ACTIONS(3018), + [anon_sym_DQUOTE] = ACTIONS(3018), + [sym_true] = ACTIONS(3016), + [sym_false] = ACTIONS(3016), + [anon_sym_NULL] = ACTIONS(3016), + [anon_sym_nullptr] = ACTIONS(3016), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3016), + [anon_sym_decltype] = ACTIONS(3016), + [anon_sym_virtual] = ACTIONS(3016), + [anon_sym_explicit] = ACTIONS(3016), + [anon_sym_typename] = ACTIONS(3016), + [anon_sym_template] = ACTIONS(3016), + [anon_sym_operator] = ACTIONS(3016), + [anon_sym_try] = ACTIONS(3016), + [anon_sym_delete] = ACTIONS(3016), + [anon_sym_throw] = ACTIONS(3016), + [anon_sym_namespace] = ACTIONS(3016), + [anon_sym_using] = ACTIONS(3016), + [anon_sym_static_assert] = ACTIONS(3016), + [anon_sym_concept] = ACTIONS(3016), + [anon_sym_co_return] = ACTIONS(3016), + [anon_sym_co_yield] = ACTIONS(3016), + [anon_sym_R_DQUOTE] = ACTIONS(3018), + [anon_sym_LR_DQUOTE] = ACTIONS(3018), + [anon_sym_uR_DQUOTE] = ACTIONS(3018), + [anon_sym_UR_DQUOTE] = ACTIONS(3018), + [anon_sym_u8R_DQUOTE] = ACTIONS(3018), + [anon_sym_co_await] = ACTIONS(3016), + [anon_sym_new] = ACTIONS(3016), + [anon_sym_requires] = ACTIONS(3016), + [sym_this] = ACTIONS(3016), + }, + [913] = { + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_RBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), + }, + [914] = { + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_RBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), + }, + [915] = { + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_RBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), + }, + [916] = { + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_RBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), + }, + [917] = { + [sym_identifier] = ACTIONS(3012), + [aux_sym_preproc_include_token1] = ACTIONS(3012), + [aux_sym_preproc_def_token1] = ACTIONS(3012), + [aux_sym_preproc_if_token1] = ACTIONS(3012), + [aux_sym_preproc_if_token2] = ACTIONS(3012), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3012), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3012), + [sym_preproc_directive] = ACTIONS(3012), + [anon_sym_LPAREN2] = ACTIONS(3014), + [anon_sym_BANG] = ACTIONS(3014), + [anon_sym_TILDE] = ACTIONS(3014), + [anon_sym_DASH] = ACTIONS(3012), + [anon_sym_PLUS] = ACTIONS(3012), + [anon_sym_STAR] = ACTIONS(3014), + [anon_sym_AMP_AMP] = ACTIONS(3014), + [anon_sym_AMP] = ACTIONS(3012), + [anon_sym_SEMI] = ACTIONS(3014), + [anon_sym_typedef] = ACTIONS(3012), + [anon_sym_extern] = ACTIONS(3012), + [anon_sym___attribute__] = ACTIONS(3012), + [anon_sym_COLON_COLON] = ACTIONS(3014), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3014), + [anon_sym___declspec] = ACTIONS(3012), + [anon_sym___based] = ACTIONS(3012), + [anon_sym___cdecl] = ACTIONS(3012), + [anon_sym___clrcall] = ACTIONS(3012), + [anon_sym___stdcall] = ACTIONS(3012), + [anon_sym___fastcall] = ACTIONS(3012), + [anon_sym___thiscall] = ACTIONS(3012), + [anon_sym___vectorcall] = ACTIONS(3012), + [anon_sym_LBRACE] = ACTIONS(3014), + [anon_sym_LBRACK] = ACTIONS(3012), + [anon_sym_static] = ACTIONS(3012), + [anon_sym_register] = ACTIONS(3012), + [anon_sym_inline] = ACTIONS(3012), + [anon_sym_thread_local] = ACTIONS(3012), + [anon_sym_const] = ACTIONS(3012), + [anon_sym_constexpr] = ACTIONS(3012), + [anon_sym_volatile] = ACTIONS(3012), + [anon_sym_restrict] = ACTIONS(3012), + [anon_sym___restrict__] = ACTIONS(3012), + [anon_sym__Atomic] = ACTIONS(3012), + [anon_sym__Noreturn] = ACTIONS(3012), + [anon_sym_noreturn] = ACTIONS(3012), + [anon_sym_mutable] = ACTIONS(3012), + [anon_sym_constinit] = ACTIONS(3012), + [anon_sym_consteval] = ACTIONS(3012), + [anon_sym_signed] = ACTIONS(3012), + [anon_sym_unsigned] = ACTIONS(3012), + [anon_sym_long] = ACTIONS(3012), + [anon_sym_short] = ACTIONS(3012), + [sym_primitive_type] = ACTIONS(3012), + [anon_sym_enum] = ACTIONS(3012), + [anon_sym_class] = ACTIONS(3012), + [anon_sym_struct] = ACTIONS(3012), + [anon_sym_union] = ACTIONS(3012), + [anon_sym_if] = ACTIONS(3012), + [anon_sym_else] = ACTIONS(3012), + [anon_sym_switch] = ACTIONS(3012), + [anon_sym_case] = ACTIONS(3012), + [anon_sym_default] = ACTIONS(3012), + [anon_sym_while] = ACTIONS(3012), + [anon_sym_do] = ACTIONS(3012), + [anon_sym_for] = ACTIONS(3012), + [anon_sym_return] = ACTIONS(3012), + [anon_sym_break] = ACTIONS(3012), + [anon_sym_continue] = ACTIONS(3012), + [anon_sym_goto] = ACTIONS(3012), + [anon_sym_not] = ACTIONS(3012), + [anon_sym_compl] = ACTIONS(3012), + [anon_sym_DASH_DASH] = ACTIONS(3014), + [anon_sym_PLUS_PLUS] = ACTIONS(3014), + [anon_sym_sizeof] = ACTIONS(3012), + [anon_sym_offsetof] = ACTIONS(3012), + [anon_sym__Generic] = ACTIONS(3012), + [anon_sym_asm] = ACTIONS(3012), + [anon_sym___asm__] = ACTIONS(3012), + [sym_number_literal] = ACTIONS(3014), + [anon_sym_L_SQUOTE] = ACTIONS(3014), + [anon_sym_u_SQUOTE] = ACTIONS(3014), + [anon_sym_U_SQUOTE] = ACTIONS(3014), + [anon_sym_u8_SQUOTE] = ACTIONS(3014), + [anon_sym_SQUOTE] = ACTIONS(3014), + [anon_sym_L_DQUOTE] = ACTIONS(3014), + [anon_sym_u_DQUOTE] = ACTIONS(3014), + [anon_sym_U_DQUOTE] = ACTIONS(3014), + [anon_sym_u8_DQUOTE] = ACTIONS(3014), + [anon_sym_DQUOTE] = ACTIONS(3014), + [sym_true] = ACTIONS(3012), + [sym_false] = ACTIONS(3012), + [anon_sym_NULL] = ACTIONS(3012), + [anon_sym_nullptr] = ACTIONS(3012), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3012), + [anon_sym_decltype] = ACTIONS(3012), + [anon_sym_virtual] = ACTIONS(3012), + [anon_sym_explicit] = ACTIONS(3012), + [anon_sym_typename] = ACTIONS(3012), + [anon_sym_template] = ACTIONS(3012), + [anon_sym_operator] = ACTIONS(3012), + [anon_sym_try] = ACTIONS(3012), + [anon_sym_delete] = ACTIONS(3012), + [anon_sym_throw] = ACTIONS(3012), + [anon_sym_namespace] = ACTIONS(3012), + [anon_sym_using] = ACTIONS(3012), + [anon_sym_static_assert] = ACTIONS(3012), + [anon_sym_concept] = ACTIONS(3012), + [anon_sym_co_return] = ACTIONS(3012), + [anon_sym_co_yield] = ACTIONS(3012), + [anon_sym_R_DQUOTE] = ACTIONS(3014), + [anon_sym_LR_DQUOTE] = ACTIONS(3014), + [anon_sym_uR_DQUOTE] = ACTIONS(3014), + [anon_sym_UR_DQUOTE] = ACTIONS(3014), + [anon_sym_u8R_DQUOTE] = ACTIONS(3014), + [anon_sym_co_await] = ACTIONS(3012), + [anon_sym_new] = ACTIONS(3012), + [anon_sym_requires] = ACTIONS(3012), + [sym_this] = ACTIONS(3012), + }, + [918] = { [sym_identifier] = ACTIONS(2904), [aux_sym_preproc_include_token1] = ACTIONS(2904), [aux_sym_preproc_def_token1] = ACTIONS(2904), [aux_sym_preproc_if_token1] = ACTIONS(2904), - [aux_sym_preproc_if_token2] = ACTIONS(2904), [aux_sym_preproc_ifdef_token1] = ACTIONS(2904), [aux_sym_preproc_ifdef_token2] = ACTIONS(2904), [sym_preproc_directive] = ACTIONS(2904), @@ -146541,17 +169568,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(2904), [anon_sym___vectorcall] = ACTIONS(2904), [anon_sym_LBRACE] = ACTIONS(2906), + [anon_sym_RBRACE] = ACTIONS(2906), [anon_sym_LBRACK] = ACTIONS(2904), [anon_sym_static] = ACTIONS(2904), [anon_sym_register] = ACTIONS(2904), [anon_sym_inline] = ACTIONS(2904), [anon_sym_thread_local] = ACTIONS(2904), [anon_sym_const] = ACTIONS(2904), + [anon_sym_constexpr] = ACTIONS(2904), [anon_sym_volatile] = ACTIONS(2904), [anon_sym_restrict] = ACTIONS(2904), + [anon_sym___restrict__] = ACTIONS(2904), [anon_sym__Atomic] = ACTIONS(2904), + [anon_sym__Noreturn] = ACTIONS(2904), + [anon_sym_noreturn] = ACTIONS(2904), [anon_sym_mutable] = ACTIONS(2904), - [anon_sym_constexpr] = ACTIONS(2904), [anon_sym_constinit] = ACTIONS(2904), [anon_sym_consteval] = ACTIONS(2904), [anon_sym_signed] = ACTIONS(2904), @@ -146564,6 +169595,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(2904), [anon_sym_union] = ACTIONS(2904), [anon_sym_if] = ACTIONS(2904), + [anon_sym_else] = ACTIONS(2904), [anon_sym_switch] = ACTIONS(2904), [anon_sym_case] = ACTIONS(2904), [anon_sym_default] = ACTIONS(2904), @@ -146579,6 +169611,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(2906), [anon_sym_PLUS_PLUS] = ACTIONS(2906), [anon_sym_sizeof] = ACTIONS(2904), + [anon_sym_offsetof] = ACTIONS(2904), + [anon_sym__Generic] = ACTIONS(2904), + [anon_sym_asm] = ACTIONS(2904), + [anon_sym___asm__] = ACTIONS(2904), [sym_number_literal] = ACTIONS(2906), [anon_sym_L_SQUOTE] = ACTIONS(2906), [anon_sym_u_SQUOTE] = ACTIONS(2906), @@ -146592,7 +169628,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(2906), [sym_true] = ACTIONS(2904), [sym_false] = ACTIONS(2904), - [sym_null] = ACTIONS(2904), + [anon_sym_NULL] = ACTIONS(2904), + [anon_sym_nullptr] = ACTIONS(2904), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(2904), [anon_sym_decltype] = ACTIONS(2904), @@ -146619,4265 +169656,13928 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(2904), [anon_sym_requires] = ACTIONS(2904), [sym_this] = ACTIONS(2904), - [sym_nullptr] = ACTIONS(2904), }, - [967] = { - [sym_identifier] = ACTIONS(2706), - [aux_sym_preproc_include_token1] = ACTIONS(2706), - [aux_sym_preproc_def_token1] = ACTIONS(2706), - [aux_sym_preproc_if_token1] = ACTIONS(2706), - [aux_sym_preproc_if_token2] = ACTIONS(2706), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2706), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2706), - [sym_preproc_directive] = ACTIONS(2706), - [anon_sym_LPAREN2] = ACTIONS(2708), - [anon_sym_BANG] = ACTIONS(2708), - [anon_sym_TILDE] = ACTIONS(2708), - [anon_sym_DASH] = ACTIONS(2706), - [anon_sym_PLUS] = ACTIONS(2706), - [anon_sym_STAR] = ACTIONS(2708), - [anon_sym_AMP_AMP] = ACTIONS(2708), - [anon_sym_AMP] = ACTIONS(2706), - [anon_sym_SEMI] = ACTIONS(2708), - [anon_sym_typedef] = ACTIONS(2706), - [anon_sym_extern] = ACTIONS(2706), - [anon_sym___attribute__] = ACTIONS(2706), - [anon_sym_COLON_COLON] = ACTIONS(2708), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2708), - [anon_sym___declspec] = ACTIONS(2706), - [anon_sym___based] = ACTIONS(2706), - [anon_sym___cdecl] = ACTIONS(2706), - [anon_sym___clrcall] = ACTIONS(2706), - [anon_sym___stdcall] = ACTIONS(2706), - [anon_sym___fastcall] = ACTIONS(2706), - [anon_sym___thiscall] = ACTIONS(2706), - [anon_sym___vectorcall] = ACTIONS(2706), - [anon_sym_LBRACE] = ACTIONS(2708), - [anon_sym_LBRACK] = ACTIONS(2706), - [anon_sym_static] = ACTIONS(2706), - [anon_sym_register] = ACTIONS(2706), - [anon_sym_inline] = ACTIONS(2706), - [anon_sym_thread_local] = ACTIONS(2706), - [anon_sym_const] = ACTIONS(2706), - [anon_sym_volatile] = ACTIONS(2706), - [anon_sym_restrict] = ACTIONS(2706), - [anon_sym__Atomic] = ACTIONS(2706), - [anon_sym_mutable] = ACTIONS(2706), - [anon_sym_constexpr] = ACTIONS(2706), - [anon_sym_constinit] = ACTIONS(2706), - [anon_sym_consteval] = ACTIONS(2706), - [anon_sym_signed] = ACTIONS(2706), - [anon_sym_unsigned] = ACTIONS(2706), - [anon_sym_long] = ACTIONS(2706), - [anon_sym_short] = ACTIONS(2706), - [sym_primitive_type] = ACTIONS(2706), - [anon_sym_enum] = ACTIONS(2706), - [anon_sym_class] = ACTIONS(2706), - [anon_sym_struct] = ACTIONS(2706), - [anon_sym_union] = ACTIONS(2706), - [anon_sym_if] = ACTIONS(2706), - [anon_sym_switch] = ACTIONS(2706), - [anon_sym_case] = ACTIONS(2706), - [anon_sym_default] = ACTIONS(2706), - [anon_sym_while] = ACTIONS(2706), - [anon_sym_do] = ACTIONS(2706), - [anon_sym_for] = ACTIONS(2706), - [anon_sym_return] = ACTIONS(2706), - [anon_sym_break] = ACTIONS(2706), - [anon_sym_continue] = ACTIONS(2706), - [anon_sym_goto] = ACTIONS(2706), - [anon_sym_not] = ACTIONS(2706), - [anon_sym_compl] = ACTIONS(2706), - [anon_sym_DASH_DASH] = ACTIONS(2708), - [anon_sym_PLUS_PLUS] = ACTIONS(2708), - [anon_sym_sizeof] = ACTIONS(2706), - [sym_number_literal] = ACTIONS(2708), - [anon_sym_L_SQUOTE] = ACTIONS(2708), - [anon_sym_u_SQUOTE] = ACTIONS(2708), - [anon_sym_U_SQUOTE] = ACTIONS(2708), - [anon_sym_u8_SQUOTE] = ACTIONS(2708), - [anon_sym_SQUOTE] = ACTIONS(2708), - [anon_sym_L_DQUOTE] = ACTIONS(2708), - [anon_sym_u_DQUOTE] = ACTIONS(2708), - [anon_sym_U_DQUOTE] = ACTIONS(2708), - [anon_sym_u8_DQUOTE] = ACTIONS(2708), - [anon_sym_DQUOTE] = ACTIONS(2708), - [sym_true] = ACTIONS(2706), - [sym_false] = ACTIONS(2706), - [sym_null] = ACTIONS(2706), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2706), - [anon_sym_decltype] = ACTIONS(2706), - [anon_sym_virtual] = ACTIONS(2706), - [anon_sym_explicit] = ACTIONS(2706), - [anon_sym_typename] = ACTIONS(2706), - [anon_sym_template] = ACTIONS(2706), - [anon_sym_operator] = ACTIONS(2706), - [anon_sym_try] = ACTIONS(2706), - [anon_sym_delete] = ACTIONS(2706), - [anon_sym_throw] = ACTIONS(2706), - [anon_sym_namespace] = ACTIONS(2706), - [anon_sym_using] = ACTIONS(2706), - [anon_sym_static_assert] = ACTIONS(2706), - [anon_sym_concept] = ACTIONS(2706), - [anon_sym_co_return] = ACTIONS(2706), - [anon_sym_co_yield] = ACTIONS(2706), - [anon_sym_R_DQUOTE] = ACTIONS(2708), - [anon_sym_LR_DQUOTE] = ACTIONS(2708), - [anon_sym_uR_DQUOTE] = ACTIONS(2708), - [anon_sym_UR_DQUOTE] = ACTIONS(2708), - [anon_sym_u8R_DQUOTE] = ACTIONS(2708), - [anon_sym_co_await] = ACTIONS(2706), - [anon_sym_new] = ACTIONS(2706), - [anon_sym_requires] = ACTIONS(2706), - [sym_this] = ACTIONS(2706), - [sym_nullptr] = ACTIONS(2706), + [919] = { + [sym_identifier] = ACTIONS(3020), + [aux_sym_preproc_include_token1] = ACTIONS(3020), + [aux_sym_preproc_def_token1] = ACTIONS(3020), + [aux_sym_preproc_if_token1] = ACTIONS(3020), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3020), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3020), + [sym_preproc_directive] = ACTIONS(3020), + [anon_sym_LPAREN2] = ACTIONS(3022), + [anon_sym_BANG] = ACTIONS(3022), + [anon_sym_TILDE] = ACTIONS(3022), + [anon_sym_DASH] = ACTIONS(3020), + [anon_sym_PLUS] = ACTIONS(3020), + [anon_sym_STAR] = ACTIONS(3022), + [anon_sym_AMP_AMP] = ACTIONS(3022), + [anon_sym_AMP] = ACTIONS(3020), + [anon_sym_SEMI] = ACTIONS(3022), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(3020), + [anon_sym___attribute__] = ACTIONS(3020), + [anon_sym_COLON_COLON] = ACTIONS(3022), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(3020), + [anon_sym___based] = ACTIONS(3020), + [anon_sym___cdecl] = ACTIONS(3020), + [anon_sym___clrcall] = ACTIONS(3020), + [anon_sym___stdcall] = ACTIONS(3020), + [anon_sym___fastcall] = ACTIONS(3020), + [anon_sym___thiscall] = ACTIONS(3020), + [anon_sym___vectorcall] = ACTIONS(3020), + [anon_sym_LBRACE] = ACTIONS(3022), + [anon_sym_RBRACE] = ACTIONS(3022), + [anon_sym_LBRACK] = ACTIONS(3020), + [anon_sym_static] = ACTIONS(3020), + [anon_sym_register] = ACTIONS(3020), + [anon_sym_inline] = ACTIONS(3020), + [anon_sym_thread_local] = ACTIONS(3020), + [anon_sym_const] = ACTIONS(3020), + [anon_sym_constexpr] = ACTIONS(3020), + [anon_sym_volatile] = ACTIONS(3020), + [anon_sym_restrict] = ACTIONS(3020), + [anon_sym___restrict__] = ACTIONS(3020), + [anon_sym__Atomic] = ACTIONS(3020), + [anon_sym__Noreturn] = ACTIONS(3020), + [anon_sym_noreturn] = ACTIONS(3020), + [anon_sym_mutable] = ACTIONS(3020), + [anon_sym_constinit] = ACTIONS(3020), + [anon_sym_consteval] = ACTIONS(3020), + [anon_sym_signed] = ACTIONS(3020), + [anon_sym_unsigned] = ACTIONS(3020), + [anon_sym_long] = ACTIONS(3020), + [anon_sym_short] = ACTIONS(3020), + [sym_primitive_type] = ACTIONS(3020), + [anon_sym_enum] = ACTIONS(3020), + [anon_sym_class] = ACTIONS(3020), + [anon_sym_struct] = ACTIONS(3020), + [anon_sym_union] = ACTIONS(3020), + [anon_sym_if] = ACTIONS(3020), + [anon_sym_else] = ACTIONS(3020), + [anon_sym_switch] = ACTIONS(3020), + [anon_sym_case] = ACTIONS(3020), + [anon_sym_default] = ACTIONS(3020), + [anon_sym_while] = ACTIONS(3020), + [anon_sym_do] = ACTIONS(3020), + [anon_sym_for] = ACTIONS(3020), + [anon_sym_return] = ACTIONS(3020), + [anon_sym_break] = ACTIONS(3020), + [anon_sym_continue] = ACTIONS(3020), + [anon_sym_goto] = ACTIONS(3020), + [anon_sym_not] = ACTIONS(3020), + [anon_sym_compl] = ACTIONS(3020), + [anon_sym_DASH_DASH] = ACTIONS(3022), + [anon_sym_PLUS_PLUS] = ACTIONS(3022), + [anon_sym_sizeof] = ACTIONS(3020), + [anon_sym_offsetof] = ACTIONS(3020), + [anon_sym__Generic] = ACTIONS(3020), + [anon_sym_asm] = ACTIONS(3020), + [anon_sym___asm__] = ACTIONS(3020), + [sym_number_literal] = ACTIONS(3022), + [anon_sym_L_SQUOTE] = ACTIONS(3022), + [anon_sym_u_SQUOTE] = ACTIONS(3022), + [anon_sym_U_SQUOTE] = ACTIONS(3022), + [anon_sym_u8_SQUOTE] = ACTIONS(3022), + [anon_sym_SQUOTE] = ACTIONS(3022), + [anon_sym_L_DQUOTE] = ACTIONS(3022), + [anon_sym_u_DQUOTE] = ACTIONS(3022), + [anon_sym_U_DQUOTE] = ACTIONS(3022), + [anon_sym_u8_DQUOTE] = ACTIONS(3022), + [anon_sym_DQUOTE] = ACTIONS(3022), + [sym_true] = ACTIONS(3020), + [sym_false] = ACTIONS(3020), + [anon_sym_NULL] = ACTIONS(3020), + [anon_sym_nullptr] = ACTIONS(3020), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3020), + [anon_sym_decltype] = ACTIONS(3020), + [anon_sym_virtual] = ACTIONS(3020), + [anon_sym_explicit] = ACTIONS(3020), + [anon_sym_typename] = ACTIONS(3020), + [anon_sym_template] = ACTIONS(3020), + [anon_sym_operator] = ACTIONS(3020), + [anon_sym_try] = ACTIONS(3020), + [anon_sym_delete] = ACTIONS(3020), + [anon_sym_throw] = ACTIONS(3020), + [anon_sym_namespace] = ACTIONS(3020), + [anon_sym_using] = ACTIONS(3020), + [anon_sym_static_assert] = ACTIONS(3020), + [anon_sym_concept] = ACTIONS(3020), + [anon_sym_co_return] = ACTIONS(3020), + [anon_sym_co_yield] = ACTIONS(3020), + [anon_sym_R_DQUOTE] = ACTIONS(3022), + [anon_sym_LR_DQUOTE] = ACTIONS(3022), + [anon_sym_uR_DQUOTE] = ACTIONS(3022), + [anon_sym_UR_DQUOTE] = ACTIONS(3022), + [anon_sym_u8R_DQUOTE] = ACTIONS(3022), + [anon_sym_co_await] = ACTIONS(3020), + [anon_sym_new] = ACTIONS(3020), + [anon_sym_requires] = ACTIONS(3020), + [sym_this] = ACTIONS(3020), }, - [968] = { - [sym_identifier] = ACTIONS(2698), - [aux_sym_preproc_include_token1] = ACTIONS(2698), - [aux_sym_preproc_def_token1] = ACTIONS(2698), - [aux_sym_preproc_if_token1] = ACTIONS(2698), - [aux_sym_preproc_if_token2] = ACTIONS(2698), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2698), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2698), - [sym_preproc_directive] = ACTIONS(2698), - [anon_sym_LPAREN2] = ACTIONS(2700), - [anon_sym_BANG] = ACTIONS(2700), - [anon_sym_TILDE] = ACTIONS(2700), - [anon_sym_DASH] = ACTIONS(2698), - [anon_sym_PLUS] = ACTIONS(2698), - [anon_sym_STAR] = ACTIONS(2700), - [anon_sym_AMP_AMP] = ACTIONS(2700), - [anon_sym_AMP] = ACTIONS(2698), - [anon_sym_SEMI] = ACTIONS(2700), - [anon_sym_typedef] = ACTIONS(2698), - [anon_sym_extern] = ACTIONS(2698), - [anon_sym___attribute__] = ACTIONS(2698), - [anon_sym_COLON_COLON] = ACTIONS(2700), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2700), - [anon_sym___declspec] = ACTIONS(2698), - [anon_sym___based] = ACTIONS(2698), - [anon_sym___cdecl] = ACTIONS(2698), - [anon_sym___clrcall] = ACTIONS(2698), - [anon_sym___stdcall] = ACTIONS(2698), - [anon_sym___fastcall] = ACTIONS(2698), - [anon_sym___thiscall] = ACTIONS(2698), - [anon_sym___vectorcall] = ACTIONS(2698), - [anon_sym_LBRACE] = ACTIONS(2700), - [anon_sym_LBRACK] = ACTIONS(2698), - [anon_sym_static] = ACTIONS(2698), - [anon_sym_register] = ACTIONS(2698), - [anon_sym_inline] = ACTIONS(2698), - [anon_sym_thread_local] = ACTIONS(2698), - [anon_sym_const] = ACTIONS(2698), - [anon_sym_volatile] = ACTIONS(2698), - [anon_sym_restrict] = ACTIONS(2698), - [anon_sym__Atomic] = ACTIONS(2698), - [anon_sym_mutable] = ACTIONS(2698), - [anon_sym_constexpr] = ACTIONS(2698), - [anon_sym_constinit] = ACTIONS(2698), - [anon_sym_consteval] = ACTIONS(2698), - [anon_sym_signed] = ACTIONS(2698), - [anon_sym_unsigned] = ACTIONS(2698), - [anon_sym_long] = ACTIONS(2698), - [anon_sym_short] = ACTIONS(2698), - [sym_primitive_type] = ACTIONS(2698), - [anon_sym_enum] = ACTIONS(2698), - [anon_sym_class] = ACTIONS(2698), - [anon_sym_struct] = ACTIONS(2698), - [anon_sym_union] = ACTIONS(2698), - [anon_sym_if] = ACTIONS(2698), - [anon_sym_switch] = ACTIONS(2698), - [anon_sym_case] = ACTIONS(2698), - [anon_sym_default] = ACTIONS(2698), - [anon_sym_while] = ACTIONS(2698), - [anon_sym_do] = ACTIONS(2698), - [anon_sym_for] = ACTIONS(2698), - [anon_sym_return] = ACTIONS(2698), - [anon_sym_break] = ACTIONS(2698), - [anon_sym_continue] = ACTIONS(2698), - [anon_sym_goto] = ACTIONS(2698), - [anon_sym_not] = ACTIONS(2698), - [anon_sym_compl] = ACTIONS(2698), - [anon_sym_DASH_DASH] = ACTIONS(2700), - [anon_sym_PLUS_PLUS] = ACTIONS(2700), - [anon_sym_sizeof] = ACTIONS(2698), - [sym_number_literal] = ACTIONS(2700), - [anon_sym_L_SQUOTE] = ACTIONS(2700), - [anon_sym_u_SQUOTE] = ACTIONS(2700), - [anon_sym_U_SQUOTE] = ACTIONS(2700), - [anon_sym_u8_SQUOTE] = ACTIONS(2700), - [anon_sym_SQUOTE] = ACTIONS(2700), - [anon_sym_L_DQUOTE] = ACTIONS(2700), - [anon_sym_u_DQUOTE] = ACTIONS(2700), - [anon_sym_U_DQUOTE] = ACTIONS(2700), - [anon_sym_u8_DQUOTE] = ACTIONS(2700), - [anon_sym_DQUOTE] = ACTIONS(2700), - [sym_true] = ACTIONS(2698), - [sym_false] = ACTIONS(2698), - [sym_null] = ACTIONS(2698), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2698), - [anon_sym_decltype] = ACTIONS(2698), - [anon_sym_virtual] = ACTIONS(2698), - [anon_sym_explicit] = ACTIONS(2698), - [anon_sym_typename] = ACTIONS(2698), - [anon_sym_template] = ACTIONS(2698), - [anon_sym_operator] = ACTIONS(2698), - [anon_sym_try] = ACTIONS(2698), - [anon_sym_delete] = ACTIONS(2698), - [anon_sym_throw] = ACTIONS(2698), - [anon_sym_namespace] = ACTIONS(2698), - [anon_sym_using] = ACTIONS(2698), - [anon_sym_static_assert] = ACTIONS(2698), - [anon_sym_concept] = ACTIONS(2698), - [anon_sym_co_return] = ACTIONS(2698), - [anon_sym_co_yield] = ACTIONS(2698), - [anon_sym_R_DQUOTE] = ACTIONS(2700), - [anon_sym_LR_DQUOTE] = ACTIONS(2700), - [anon_sym_uR_DQUOTE] = ACTIONS(2700), - [anon_sym_UR_DQUOTE] = ACTIONS(2700), - [anon_sym_u8R_DQUOTE] = ACTIONS(2700), - [anon_sym_co_await] = ACTIONS(2698), - [anon_sym_new] = ACTIONS(2698), - [anon_sym_requires] = ACTIONS(2698), - [sym_this] = ACTIONS(2698), - [sym_nullptr] = ACTIONS(2698), + [920] = { + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_RBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, - [969] = { - [ts_builtin_sym_end] = ACTIONS(2804), - [sym_identifier] = ACTIONS(2802), - [aux_sym_preproc_include_token1] = ACTIONS(2802), - [aux_sym_preproc_def_token1] = ACTIONS(2802), - [aux_sym_preproc_if_token1] = ACTIONS(2802), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2802), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2802), - [sym_preproc_directive] = ACTIONS(2802), - [anon_sym_LPAREN2] = ACTIONS(2804), - [anon_sym_BANG] = ACTIONS(2804), - [anon_sym_TILDE] = ACTIONS(2804), - [anon_sym_DASH] = ACTIONS(2802), - [anon_sym_PLUS] = ACTIONS(2802), - [anon_sym_STAR] = ACTIONS(2804), - [anon_sym_AMP_AMP] = ACTIONS(2804), - [anon_sym_AMP] = ACTIONS(2802), - [anon_sym_SEMI] = ACTIONS(2804), - [anon_sym_typedef] = ACTIONS(2802), - [anon_sym_extern] = ACTIONS(2802), - [anon_sym___attribute__] = ACTIONS(2802), - [anon_sym_COLON_COLON] = ACTIONS(2804), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2804), - [anon_sym___declspec] = ACTIONS(2802), - [anon_sym___based] = ACTIONS(2802), - [anon_sym___cdecl] = ACTIONS(2802), - [anon_sym___clrcall] = ACTIONS(2802), - [anon_sym___stdcall] = ACTIONS(2802), - [anon_sym___fastcall] = ACTIONS(2802), - [anon_sym___thiscall] = ACTIONS(2802), - [anon_sym___vectorcall] = ACTIONS(2802), - [anon_sym_LBRACE] = ACTIONS(2804), - [anon_sym_LBRACK] = ACTIONS(2802), - [anon_sym_static] = ACTIONS(2802), - [anon_sym_register] = ACTIONS(2802), - [anon_sym_inline] = ACTIONS(2802), - [anon_sym_thread_local] = ACTIONS(2802), - [anon_sym_const] = ACTIONS(2802), - [anon_sym_volatile] = ACTIONS(2802), - [anon_sym_restrict] = ACTIONS(2802), - [anon_sym__Atomic] = ACTIONS(2802), - [anon_sym_mutable] = ACTIONS(2802), - [anon_sym_constexpr] = ACTIONS(2802), - [anon_sym_constinit] = ACTIONS(2802), - [anon_sym_consteval] = ACTIONS(2802), - [anon_sym_signed] = ACTIONS(2802), - [anon_sym_unsigned] = ACTIONS(2802), - [anon_sym_long] = ACTIONS(2802), - [anon_sym_short] = ACTIONS(2802), - [sym_primitive_type] = ACTIONS(2802), - [anon_sym_enum] = ACTIONS(2802), - [anon_sym_class] = ACTIONS(2802), - [anon_sym_struct] = ACTIONS(2802), - [anon_sym_union] = ACTIONS(2802), - [anon_sym_if] = ACTIONS(2802), - [anon_sym_switch] = ACTIONS(2802), - [anon_sym_case] = ACTIONS(2802), - [anon_sym_default] = ACTIONS(2802), - [anon_sym_while] = ACTIONS(2802), - [anon_sym_do] = ACTIONS(2802), - [anon_sym_for] = ACTIONS(2802), - [anon_sym_return] = ACTIONS(2802), - [anon_sym_break] = ACTIONS(2802), - [anon_sym_continue] = ACTIONS(2802), - [anon_sym_goto] = ACTIONS(2802), - [anon_sym_not] = ACTIONS(2802), - [anon_sym_compl] = ACTIONS(2802), - [anon_sym_DASH_DASH] = ACTIONS(2804), - [anon_sym_PLUS_PLUS] = ACTIONS(2804), - [anon_sym_sizeof] = ACTIONS(2802), - [sym_number_literal] = ACTIONS(2804), - [anon_sym_L_SQUOTE] = ACTIONS(2804), - [anon_sym_u_SQUOTE] = ACTIONS(2804), - [anon_sym_U_SQUOTE] = ACTIONS(2804), - [anon_sym_u8_SQUOTE] = ACTIONS(2804), - [anon_sym_SQUOTE] = ACTIONS(2804), - [anon_sym_L_DQUOTE] = ACTIONS(2804), - [anon_sym_u_DQUOTE] = ACTIONS(2804), - [anon_sym_U_DQUOTE] = ACTIONS(2804), - [anon_sym_u8_DQUOTE] = ACTIONS(2804), - [anon_sym_DQUOTE] = ACTIONS(2804), - [sym_true] = ACTIONS(2802), - [sym_false] = ACTIONS(2802), - [sym_null] = ACTIONS(2802), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2802), - [anon_sym_decltype] = ACTIONS(2802), - [anon_sym_virtual] = ACTIONS(2802), - [anon_sym_explicit] = ACTIONS(2802), - [anon_sym_typename] = ACTIONS(2802), - [anon_sym_template] = ACTIONS(2802), - [anon_sym_operator] = ACTIONS(2802), - [anon_sym_try] = ACTIONS(2802), - [anon_sym_delete] = ACTIONS(2802), - [anon_sym_throw] = ACTIONS(2802), - [anon_sym_namespace] = ACTIONS(2802), - [anon_sym_using] = ACTIONS(2802), - [anon_sym_static_assert] = ACTIONS(2802), - [anon_sym_concept] = ACTIONS(2802), - [anon_sym_co_return] = ACTIONS(2802), - [anon_sym_co_yield] = ACTIONS(2802), - [anon_sym_R_DQUOTE] = ACTIONS(2804), - [anon_sym_LR_DQUOTE] = ACTIONS(2804), - [anon_sym_uR_DQUOTE] = ACTIONS(2804), - [anon_sym_UR_DQUOTE] = ACTIONS(2804), - [anon_sym_u8R_DQUOTE] = ACTIONS(2804), - [anon_sym_co_await] = ACTIONS(2802), - [anon_sym_new] = ACTIONS(2802), - [anon_sym_requires] = ACTIONS(2802), - [sym_this] = ACTIONS(2802), - [sym_nullptr] = ACTIONS(2802), + [921] = { + [sym_identifier] = ACTIONS(2976), + [aux_sym_preproc_include_token1] = ACTIONS(2976), + [aux_sym_preproc_def_token1] = ACTIONS(2976), + [aux_sym_preproc_if_token1] = ACTIONS(2976), + [aux_sym_preproc_if_token2] = ACTIONS(2976), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2976), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2976), + [sym_preproc_directive] = ACTIONS(2976), + [anon_sym_LPAREN2] = ACTIONS(2978), + [anon_sym_BANG] = ACTIONS(2978), + [anon_sym_TILDE] = ACTIONS(2978), + [anon_sym_DASH] = ACTIONS(2976), + [anon_sym_PLUS] = ACTIONS(2976), + [anon_sym_STAR] = ACTIONS(2978), + [anon_sym_AMP_AMP] = ACTIONS(2978), + [anon_sym_AMP] = ACTIONS(2976), + [anon_sym_SEMI] = ACTIONS(2978), + [anon_sym_typedef] = ACTIONS(2976), + [anon_sym_extern] = ACTIONS(2976), + [anon_sym___attribute__] = ACTIONS(2976), + [anon_sym_COLON_COLON] = ACTIONS(2978), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2978), + [anon_sym___declspec] = ACTIONS(2976), + [anon_sym___based] = ACTIONS(2976), + [anon_sym___cdecl] = ACTIONS(2976), + [anon_sym___clrcall] = ACTIONS(2976), + [anon_sym___stdcall] = ACTIONS(2976), + [anon_sym___fastcall] = ACTIONS(2976), + [anon_sym___thiscall] = ACTIONS(2976), + [anon_sym___vectorcall] = ACTIONS(2976), + [anon_sym_LBRACE] = ACTIONS(2978), + [anon_sym_LBRACK] = ACTIONS(2976), + [anon_sym_static] = ACTIONS(2976), + [anon_sym_register] = ACTIONS(2976), + [anon_sym_inline] = ACTIONS(2976), + [anon_sym_thread_local] = ACTIONS(2976), + [anon_sym_const] = ACTIONS(2976), + [anon_sym_constexpr] = ACTIONS(2976), + [anon_sym_volatile] = ACTIONS(2976), + [anon_sym_restrict] = ACTIONS(2976), + [anon_sym___restrict__] = ACTIONS(2976), + [anon_sym__Atomic] = ACTIONS(2976), + [anon_sym__Noreturn] = ACTIONS(2976), + [anon_sym_noreturn] = ACTIONS(2976), + [anon_sym_mutable] = ACTIONS(2976), + [anon_sym_constinit] = ACTIONS(2976), + [anon_sym_consteval] = ACTIONS(2976), + [anon_sym_signed] = ACTIONS(2976), + [anon_sym_unsigned] = ACTIONS(2976), + [anon_sym_long] = ACTIONS(2976), + [anon_sym_short] = ACTIONS(2976), + [sym_primitive_type] = ACTIONS(2976), + [anon_sym_enum] = ACTIONS(2976), + [anon_sym_class] = ACTIONS(2976), + [anon_sym_struct] = ACTIONS(2976), + [anon_sym_union] = ACTIONS(2976), + [anon_sym_if] = ACTIONS(2976), + [anon_sym_else] = ACTIONS(2976), + [anon_sym_switch] = ACTIONS(2976), + [anon_sym_case] = ACTIONS(2976), + [anon_sym_default] = ACTIONS(2976), + [anon_sym_while] = ACTIONS(2976), + [anon_sym_do] = ACTIONS(2976), + [anon_sym_for] = ACTIONS(2976), + [anon_sym_return] = ACTIONS(2976), + [anon_sym_break] = ACTIONS(2976), + [anon_sym_continue] = ACTIONS(2976), + [anon_sym_goto] = ACTIONS(2976), + [anon_sym_not] = ACTIONS(2976), + [anon_sym_compl] = ACTIONS(2976), + [anon_sym_DASH_DASH] = ACTIONS(2978), + [anon_sym_PLUS_PLUS] = ACTIONS(2978), + [anon_sym_sizeof] = ACTIONS(2976), + [anon_sym_offsetof] = ACTIONS(2976), + [anon_sym__Generic] = ACTIONS(2976), + [anon_sym_asm] = ACTIONS(2976), + [anon_sym___asm__] = ACTIONS(2976), + [sym_number_literal] = ACTIONS(2978), + [anon_sym_L_SQUOTE] = ACTIONS(2978), + [anon_sym_u_SQUOTE] = ACTIONS(2978), + [anon_sym_U_SQUOTE] = ACTIONS(2978), + [anon_sym_u8_SQUOTE] = ACTIONS(2978), + [anon_sym_SQUOTE] = ACTIONS(2978), + [anon_sym_L_DQUOTE] = ACTIONS(2978), + [anon_sym_u_DQUOTE] = ACTIONS(2978), + [anon_sym_U_DQUOTE] = ACTIONS(2978), + [anon_sym_u8_DQUOTE] = ACTIONS(2978), + [anon_sym_DQUOTE] = ACTIONS(2978), + [sym_true] = ACTIONS(2976), + [sym_false] = ACTIONS(2976), + [anon_sym_NULL] = ACTIONS(2976), + [anon_sym_nullptr] = ACTIONS(2976), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2976), + [anon_sym_decltype] = ACTIONS(2976), + [anon_sym_virtual] = ACTIONS(2976), + [anon_sym_explicit] = ACTIONS(2976), + [anon_sym_typename] = ACTIONS(2976), + [anon_sym_template] = ACTIONS(2976), + [anon_sym_operator] = ACTIONS(2976), + [anon_sym_try] = ACTIONS(2976), + [anon_sym_delete] = ACTIONS(2976), + [anon_sym_throw] = ACTIONS(2976), + [anon_sym_namespace] = ACTIONS(2976), + [anon_sym_using] = ACTIONS(2976), + [anon_sym_static_assert] = ACTIONS(2976), + [anon_sym_concept] = ACTIONS(2976), + [anon_sym_co_return] = ACTIONS(2976), + [anon_sym_co_yield] = ACTIONS(2976), + [anon_sym_R_DQUOTE] = ACTIONS(2978), + [anon_sym_LR_DQUOTE] = ACTIONS(2978), + [anon_sym_uR_DQUOTE] = ACTIONS(2978), + [anon_sym_UR_DQUOTE] = ACTIONS(2978), + [anon_sym_u8R_DQUOTE] = ACTIONS(2978), + [anon_sym_co_await] = ACTIONS(2976), + [anon_sym_new] = ACTIONS(2976), + [anon_sym_requires] = ACTIONS(2976), + [sym_this] = ACTIONS(2976), }, - [970] = { - [ts_builtin_sym_end] = ACTIONS(2800), - [sym_identifier] = ACTIONS(2798), - [aux_sym_preproc_include_token1] = ACTIONS(2798), - [aux_sym_preproc_def_token1] = ACTIONS(2798), - [aux_sym_preproc_if_token1] = ACTIONS(2798), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2798), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2798), - [sym_preproc_directive] = ACTIONS(2798), - [anon_sym_LPAREN2] = ACTIONS(2800), - [anon_sym_BANG] = ACTIONS(2800), - [anon_sym_TILDE] = ACTIONS(2800), - [anon_sym_DASH] = ACTIONS(2798), - [anon_sym_PLUS] = ACTIONS(2798), - [anon_sym_STAR] = ACTIONS(2800), - [anon_sym_AMP_AMP] = ACTIONS(2800), - [anon_sym_AMP] = ACTIONS(2798), - [anon_sym_SEMI] = ACTIONS(2800), - [anon_sym_typedef] = ACTIONS(2798), - [anon_sym_extern] = ACTIONS(2798), - [anon_sym___attribute__] = ACTIONS(2798), - [anon_sym_COLON_COLON] = ACTIONS(2800), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2800), - [anon_sym___declspec] = ACTIONS(2798), - [anon_sym___based] = ACTIONS(2798), - [anon_sym___cdecl] = ACTIONS(2798), - [anon_sym___clrcall] = ACTIONS(2798), - [anon_sym___stdcall] = ACTIONS(2798), - [anon_sym___fastcall] = ACTIONS(2798), - [anon_sym___thiscall] = ACTIONS(2798), - [anon_sym___vectorcall] = ACTIONS(2798), - [anon_sym_LBRACE] = ACTIONS(2800), - [anon_sym_LBRACK] = ACTIONS(2798), - [anon_sym_static] = ACTIONS(2798), - [anon_sym_register] = ACTIONS(2798), - [anon_sym_inline] = ACTIONS(2798), - [anon_sym_thread_local] = ACTIONS(2798), - [anon_sym_const] = ACTIONS(2798), - [anon_sym_volatile] = ACTIONS(2798), - [anon_sym_restrict] = ACTIONS(2798), - [anon_sym__Atomic] = ACTIONS(2798), - [anon_sym_mutable] = ACTIONS(2798), - [anon_sym_constexpr] = ACTIONS(2798), - [anon_sym_constinit] = ACTIONS(2798), - [anon_sym_consteval] = ACTIONS(2798), - [anon_sym_signed] = ACTIONS(2798), - [anon_sym_unsigned] = ACTIONS(2798), - [anon_sym_long] = ACTIONS(2798), - [anon_sym_short] = ACTIONS(2798), - [sym_primitive_type] = ACTIONS(2798), - [anon_sym_enum] = ACTIONS(2798), - [anon_sym_class] = ACTIONS(2798), - [anon_sym_struct] = ACTIONS(2798), - [anon_sym_union] = ACTIONS(2798), - [anon_sym_if] = ACTIONS(2798), - [anon_sym_switch] = ACTIONS(2798), - [anon_sym_case] = ACTIONS(2798), - [anon_sym_default] = ACTIONS(2798), - [anon_sym_while] = ACTIONS(2798), - [anon_sym_do] = ACTIONS(2798), - [anon_sym_for] = ACTIONS(2798), - [anon_sym_return] = ACTIONS(2798), - [anon_sym_break] = ACTIONS(2798), - [anon_sym_continue] = ACTIONS(2798), - [anon_sym_goto] = ACTIONS(2798), - [anon_sym_not] = ACTIONS(2798), - [anon_sym_compl] = ACTIONS(2798), - [anon_sym_DASH_DASH] = ACTIONS(2800), - [anon_sym_PLUS_PLUS] = ACTIONS(2800), - [anon_sym_sizeof] = ACTIONS(2798), - [sym_number_literal] = ACTIONS(2800), - [anon_sym_L_SQUOTE] = ACTIONS(2800), - [anon_sym_u_SQUOTE] = ACTIONS(2800), - [anon_sym_U_SQUOTE] = ACTIONS(2800), - [anon_sym_u8_SQUOTE] = ACTIONS(2800), - [anon_sym_SQUOTE] = ACTIONS(2800), - [anon_sym_L_DQUOTE] = ACTIONS(2800), - [anon_sym_u_DQUOTE] = ACTIONS(2800), - [anon_sym_U_DQUOTE] = ACTIONS(2800), - [anon_sym_u8_DQUOTE] = ACTIONS(2800), - [anon_sym_DQUOTE] = ACTIONS(2800), - [sym_true] = ACTIONS(2798), - [sym_false] = ACTIONS(2798), - [sym_null] = ACTIONS(2798), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2798), - [anon_sym_decltype] = ACTIONS(2798), - [anon_sym_virtual] = ACTIONS(2798), - [anon_sym_explicit] = ACTIONS(2798), - [anon_sym_typename] = ACTIONS(2798), - [anon_sym_template] = ACTIONS(2798), - [anon_sym_operator] = ACTIONS(2798), - [anon_sym_try] = ACTIONS(2798), - [anon_sym_delete] = ACTIONS(2798), - [anon_sym_throw] = ACTIONS(2798), - [anon_sym_namespace] = ACTIONS(2798), - [anon_sym_using] = ACTIONS(2798), - [anon_sym_static_assert] = ACTIONS(2798), - [anon_sym_concept] = ACTIONS(2798), - [anon_sym_co_return] = ACTIONS(2798), - [anon_sym_co_yield] = ACTIONS(2798), - [anon_sym_R_DQUOTE] = ACTIONS(2800), - [anon_sym_LR_DQUOTE] = ACTIONS(2800), - [anon_sym_uR_DQUOTE] = ACTIONS(2800), - [anon_sym_UR_DQUOTE] = ACTIONS(2800), - [anon_sym_u8R_DQUOTE] = ACTIONS(2800), - [anon_sym_co_await] = ACTIONS(2798), - [anon_sym_new] = ACTIONS(2798), - [anon_sym_requires] = ACTIONS(2798), - [sym_this] = ACTIONS(2798), - [sym_nullptr] = ACTIONS(2798), + [922] = { + [sym_identifier] = ACTIONS(2928), + [aux_sym_preproc_include_token1] = ACTIONS(2928), + [aux_sym_preproc_def_token1] = ACTIONS(2928), + [aux_sym_preproc_if_token1] = ACTIONS(2928), + [aux_sym_preproc_if_token2] = ACTIONS(2928), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2928), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2928), + [sym_preproc_directive] = ACTIONS(2928), + [anon_sym_LPAREN2] = ACTIONS(2930), + [anon_sym_BANG] = ACTIONS(2930), + [anon_sym_TILDE] = ACTIONS(2930), + [anon_sym_DASH] = ACTIONS(2928), + [anon_sym_PLUS] = ACTIONS(2928), + [anon_sym_STAR] = ACTIONS(2930), + [anon_sym_AMP_AMP] = ACTIONS(2930), + [anon_sym_AMP] = ACTIONS(2928), + [anon_sym_SEMI] = ACTIONS(2930), + [anon_sym_typedef] = ACTIONS(2928), + [anon_sym_extern] = ACTIONS(2928), + [anon_sym___attribute__] = ACTIONS(2928), + [anon_sym_COLON_COLON] = ACTIONS(2930), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2930), + [anon_sym___declspec] = ACTIONS(2928), + [anon_sym___based] = ACTIONS(2928), + [anon_sym___cdecl] = ACTIONS(2928), + [anon_sym___clrcall] = ACTIONS(2928), + [anon_sym___stdcall] = ACTIONS(2928), + [anon_sym___fastcall] = ACTIONS(2928), + [anon_sym___thiscall] = ACTIONS(2928), + [anon_sym___vectorcall] = ACTIONS(2928), + [anon_sym_LBRACE] = ACTIONS(2930), + [anon_sym_LBRACK] = ACTIONS(2928), + [anon_sym_static] = ACTIONS(2928), + [anon_sym_register] = ACTIONS(2928), + [anon_sym_inline] = ACTIONS(2928), + [anon_sym_thread_local] = ACTIONS(2928), + [anon_sym_const] = ACTIONS(2928), + [anon_sym_constexpr] = ACTIONS(2928), + [anon_sym_volatile] = ACTIONS(2928), + [anon_sym_restrict] = ACTIONS(2928), + [anon_sym___restrict__] = ACTIONS(2928), + [anon_sym__Atomic] = ACTIONS(2928), + [anon_sym__Noreturn] = ACTIONS(2928), + [anon_sym_noreturn] = ACTIONS(2928), + [anon_sym_mutable] = ACTIONS(2928), + [anon_sym_constinit] = ACTIONS(2928), + [anon_sym_consteval] = ACTIONS(2928), + [anon_sym_signed] = ACTIONS(2928), + [anon_sym_unsigned] = ACTIONS(2928), + [anon_sym_long] = ACTIONS(2928), + [anon_sym_short] = ACTIONS(2928), + [sym_primitive_type] = ACTIONS(2928), + [anon_sym_enum] = ACTIONS(2928), + [anon_sym_class] = ACTIONS(2928), + [anon_sym_struct] = ACTIONS(2928), + [anon_sym_union] = ACTIONS(2928), + [anon_sym_if] = ACTIONS(2928), + [anon_sym_else] = ACTIONS(2928), + [anon_sym_switch] = ACTIONS(2928), + [anon_sym_case] = ACTIONS(2928), + [anon_sym_default] = ACTIONS(2928), + [anon_sym_while] = ACTIONS(2928), + [anon_sym_do] = ACTIONS(2928), + [anon_sym_for] = ACTIONS(2928), + [anon_sym_return] = ACTIONS(2928), + [anon_sym_break] = ACTIONS(2928), + [anon_sym_continue] = ACTIONS(2928), + [anon_sym_goto] = ACTIONS(2928), + [anon_sym_not] = ACTIONS(2928), + [anon_sym_compl] = ACTIONS(2928), + [anon_sym_DASH_DASH] = ACTIONS(2930), + [anon_sym_PLUS_PLUS] = ACTIONS(2930), + [anon_sym_sizeof] = ACTIONS(2928), + [anon_sym_offsetof] = ACTIONS(2928), + [anon_sym__Generic] = ACTIONS(2928), + [anon_sym_asm] = ACTIONS(2928), + [anon_sym___asm__] = ACTIONS(2928), + [sym_number_literal] = ACTIONS(2930), + [anon_sym_L_SQUOTE] = ACTIONS(2930), + [anon_sym_u_SQUOTE] = ACTIONS(2930), + [anon_sym_U_SQUOTE] = ACTIONS(2930), + [anon_sym_u8_SQUOTE] = ACTIONS(2930), + [anon_sym_SQUOTE] = ACTIONS(2930), + [anon_sym_L_DQUOTE] = ACTIONS(2930), + [anon_sym_u_DQUOTE] = ACTIONS(2930), + [anon_sym_U_DQUOTE] = ACTIONS(2930), + [anon_sym_u8_DQUOTE] = ACTIONS(2930), + [anon_sym_DQUOTE] = ACTIONS(2930), + [sym_true] = ACTIONS(2928), + [sym_false] = ACTIONS(2928), + [anon_sym_NULL] = ACTIONS(2928), + [anon_sym_nullptr] = ACTIONS(2928), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2928), + [anon_sym_decltype] = ACTIONS(2928), + [anon_sym_virtual] = ACTIONS(2928), + [anon_sym_explicit] = ACTIONS(2928), + [anon_sym_typename] = ACTIONS(2928), + [anon_sym_template] = ACTIONS(2928), + [anon_sym_operator] = ACTIONS(2928), + [anon_sym_try] = ACTIONS(2928), + [anon_sym_delete] = ACTIONS(2928), + [anon_sym_throw] = ACTIONS(2928), + [anon_sym_namespace] = ACTIONS(2928), + [anon_sym_using] = ACTIONS(2928), + [anon_sym_static_assert] = ACTIONS(2928), + [anon_sym_concept] = ACTIONS(2928), + [anon_sym_co_return] = ACTIONS(2928), + [anon_sym_co_yield] = ACTIONS(2928), + [anon_sym_R_DQUOTE] = ACTIONS(2930), + [anon_sym_LR_DQUOTE] = ACTIONS(2930), + [anon_sym_uR_DQUOTE] = ACTIONS(2930), + [anon_sym_UR_DQUOTE] = ACTIONS(2930), + [anon_sym_u8R_DQUOTE] = ACTIONS(2930), + [anon_sym_co_await] = ACTIONS(2928), + [anon_sym_new] = ACTIONS(2928), + [anon_sym_requires] = ACTIONS(2928), + [sym_this] = ACTIONS(2928), }, - [971] = { - [sym_identifier] = ACTIONS(2864), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2866), - [anon_sym_AMP] = ACTIONS(2864), - [anon_sym_SEMI] = ACTIONS(2866), - [anon_sym_typedef] = ACTIONS(2864), - [anon_sym_extern] = ACTIONS(2864), - [anon_sym___attribute__] = ACTIONS(2864), - [anon_sym_COLON_COLON] = ACTIONS(2866), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2866), - [anon_sym___declspec] = ACTIONS(2864), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2864), - [anon_sym_static] = ACTIONS(2864), - [anon_sym_register] = ACTIONS(2864), - [anon_sym_inline] = ACTIONS(2864), - [anon_sym_thread_local] = ACTIONS(2864), - [anon_sym_const] = ACTIONS(2864), - [anon_sym_volatile] = ACTIONS(2864), - [anon_sym_restrict] = ACTIONS(2864), - [anon_sym__Atomic] = ACTIONS(2864), - [anon_sym_mutable] = ACTIONS(2864), - [anon_sym_constexpr] = ACTIONS(2864), - [anon_sym_constinit] = ACTIONS(2864), - [anon_sym_consteval] = ACTIONS(2864), - [anon_sym_signed] = ACTIONS(2864), - [anon_sym_unsigned] = ACTIONS(2864), - [anon_sym_long] = ACTIONS(2864), - [anon_sym_short] = ACTIONS(2864), - [sym_primitive_type] = ACTIONS(2864), - [anon_sym_enum] = ACTIONS(2864), - [anon_sym_class] = 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_return] = ACTIONS(2864), - [anon_sym_break] = ACTIONS(2864), - [anon_sym_continue] = ACTIONS(2864), - [anon_sym_goto] = ACTIONS(2864), - [anon_sym_not] = ACTIONS(2864), - [anon_sym_compl] = ACTIONS(2864), - [anon_sym_DASH_DASH] = ACTIONS(2866), - [anon_sym_PLUS_PLUS] = ACTIONS(2866), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2866), - [anon_sym_u_DQUOTE] = ACTIONS(2866), - [anon_sym_U_DQUOTE] = ACTIONS(2866), - [anon_sym_u8_DQUOTE] = ACTIONS(2866), - [anon_sym_DQUOTE] = ACTIONS(2866), - [sym_true] = ACTIONS(2864), - [sym_false] = ACTIONS(2864), - [sym_null] = ACTIONS(2864), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2864), - [anon_sym_decltype] = ACTIONS(2864), - [anon_sym_virtual] = ACTIONS(2864), - [anon_sym_explicit] = ACTIONS(2864), - [anon_sym_typename] = ACTIONS(2864), - [anon_sym_template] = ACTIONS(2864), - [anon_sym_operator] = ACTIONS(2864), - [anon_sym_try] = ACTIONS(2864), - [anon_sym_delete] = ACTIONS(2864), - [anon_sym_throw] = ACTIONS(2864), - [anon_sym_namespace] = ACTIONS(2864), - [anon_sym_using] = ACTIONS(2864), - [anon_sym_static_assert] = ACTIONS(2864), - [anon_sym_concept] = ACTIONS(2864), - [anon_sym_co_return] = ACTIONS(2864), - [anon_sym_co_yield] = ACTIONS(2864), - [anon_sym_R_DQUOTE] = ACTIONS(2866), - [anon_sym_LR_DQUOTE] = ACTIONS(2866), - [anon_sym_uR_DQUOTE] = ACTIONS(2866), - [anon_sym_UR_DQUOTE] = ACTIONS(2866), - [anon_sym_u8R_DQUOTE] = ACTIONS(2866), - [anon_sym_co_await] = ACTIONS(2864), - [anon_sym_new] = ACTIONS(2864), - [anon_sym_requires] = ACTIONS(2864), - [sym_this] = ACTIONS(2864), - [sym_nullptr] = ACTIONS(2864), + [923] = { + [ts_builtin_sym_end] = ACTIONS(2954), + [sym_identifier] = ACTIONS(2952), + [aux_sym_preproc_include_token1] = ACTIONS(2952), + [aux_sym_preproc_def_token1] = ACTIONS(2952), + [aux_sym_preproc_if_token1] = ACTIONS(2952), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2952), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2952), + [sym_preproc_directive] = ACTIONS(2952), + [anon_sym_LPAREN2] = ACTIONS(2954), + [anon_sym_BANG] = ACTIONS(2954), + [anon_sym_TILDE] = ACTIONS(2954), + [anon_sym_DASH] = ACTIONS(2952), + [anon_sym_PLUS] = ACTIONS(2952), + [anon_sym_STAR] = ACTIONS(2954), + [anon_sym_AMP_AMP] = ACTIONS(2954), + [anon_sym_AMP] = ACTIONS(2952), + [anon_sym_SEMI] = ACTIONS(2954), + [anon_sym_typedef] = ACTIONS(2952), + [anon_sym_extern] = ACTIONS(2952), + [anon_sym___attribute__] = ACTIONS(2952), + [anon_sym_COLON_COLON] = ACTIONS(2954), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2954), + [anon_sym___declspec] = ACTIONS(2952), + [anon_sym___based] = ACTIONS(2952), + [anon_sym___cdecl] = ACTIONS(2952), + [anon_sym___clrcall] = ACTIONS(2952), + [anon_sym___stdcall] = ACTIONS(2952), + [anon_sym___fastcall] = ACTIONS(2952), + [anon_sym___thiscall] = ACTIONS(2952), + [anon_sym___vectorcall] = ACTIONS(2952), + [anon_sym_LBRACE] = ACTIONS(2954), + [anon_sym_LBRACK] = ACTIONS(2952), + [anon_sym_static] = ACTIONS(2952), + [anon_sym_register] = ACTIONS(2952), + [anon_sym_inline] = ACTIONS(2952), + [anon_sym_thread_local] = ACTIONS(2952), + [anon_sym_const] = ACTIONS(2952), + [anon_sym_constexpr] = ACTIONS(2952), + [anon_sym_volatile] = ACTIONS(2952), + [anon_sym_restrict] = ACTIONS(2952), + [anon_sym___restrict__] = ACTIONS(2952), + [anon_sym__Atomic] = ACTIONS(2952), + [anon_sym__Noreturn] = ACTIONS(2952), + [anon_sym_noreturn] = ACTIONS(2952), + [anon_sym_mutable] = ACTIONS(2952), + [anon_sym_constinit] = ACTIONS(2952), + [anon_sym_consteval] = ACTIONS(2952), + [anon_sym_signed] = ACTIONS(2952), + [anon_sym_unsigned] = ACTIONS(2952), + [anon_sym_long] = ACTIONS(2952), + [anon_sym_short] = ACTIONS(2952), + [sym_primitive_type] = ACTIONS(2952), + [anon_sym_enum] = ACTIONS(2952), + [anon_sym_class] = ACTIONS(2952), + [anon_sym_struct] = ACTIONS(2952), + [anon_sym_union] = ACTIONS(2952), + [anon_sym_if] = ACTIONS(2952), + [anon_sym_else] = ACTIONS(2952), + [anon_sym_switch] = ACTIONS(2952), + [anon_sym_case] = ACTIONS(2952), + [anon_sym_default] = ACTIONS(2952), + [anon_sym_while] = ACTIONS(2952), + [anon_sym_do] = ACTIONS(2952), + [anon_sym_for] = ACTIONS(2952), + [anon_sym_return] = ACTIONS(2952), + [anon_sym_break] = ACTIONS(2952), + [anon_sym_continue] = ACTIONS(2952), + [anon_sym_goto] = ACTIONS(2952), + [anon_sym_not] = ACTIONS(2952), + [anon_sym_compl] = ACTIONS(2952), + [anon_sym_DASH_DASH] = ACTIONS(2954), + [anon_sym_PLUS_PLUS] = ACTIONS(2954), + [anon_sym_sizeof] = ACTIONS(2952), + [anon_sym_offsetof] = ACTIONS(2952), + [anon_sym__Generic] = ACTIONS(2952), + [anon_sym_asm] = ACTIONS(2952), + [anon_sym___asm__] = ACTIONS(2952), + [sym_number_literal] = ACTIONS(2954), + [anon_sym_L_SQUOTE] = ACTIONS(2954), + [anon_sym_u_SQUOTE] = ACTIONS(2954), + [anon_sym_U_SQUOTE] = ACTIONS(2954), + [anon_sym_u8_SQUOTE] = ACTIONS(2954), + [anon_sym_SQUOTE] = ACTIONS(2954), + [anon_sym_L_DQUOTE] = ACTIONS(2954), + [anon_sym_u_DQUOTE] = ACTIONS(2954), + [anon_sym_U_DQUOTE] = ACTIONS(2954), + [anon_sym_u8_DQUOTE] = ACTIONS(2954), + [anon_sym_DQUOTE] = ACTIONS(2954), + [sym_true] = ACTIONS(2952), + [sym_false] = ACTIONS(2952), + [anon_sym_NULL] = ACTIONS(2952), + [anon_sym_nullptr] = ACTIONS(2952), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2952), + [anon_sym_decltype] = ACTIONS(2952), + [anon_sym_virtual] = ACTIONS(2952), + [anon_sym_explicit] = ACTIONS(2952), + [anon_sym_typename] = ACTIONS(2952), + [anon_sym_template] = ACTIONS(2952), + [anon_sym_operator] = ACTIONS(2952), + [anon_sym_try] = ACTIONS(2952), + [anon_sym_delete] = ACTIONS(2952), + [anon_sym_throw] = ACTIONS(2952), + [anon_sym_namespace] = ACTIONS(2952), + [anon_sym_using] = ACTIONS(2952), + [anon_sym_static_assert] = ACTIONS(2952), + [anon_sym_concept] = ACTIONS(2952), + [anon_sym_co_return] = ACTIONS(2952), + [anon_sym_co_yield] = ACTIONS(2952), + [anon_sym_R_DQUOTE] = ACTIONS(2954), + [anon_sym_LR_DQUOTE] = ACTIONS(2954), + [anon_sym_uR_DQUOTE] = ACTIONS(2954), + [anon_sym_UR_DQUOTE] = ACTIONS(2954), + [anon_sym_u8R_DQUOTE] = ACTIONS(2954), + [anon_sym_co_await] = ACTIONS(2952), + [anon_sym_new] = ACTIONS(2952), + [anon_sym_requires] = ACTIONS(2952), + [sym_this] = ACTIONS(2952), }, - [972] = { - [sym_identifier] = ACTIONS(2860), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2862), - [anon_sym_AMP] = ACTIONS(2860), - [anon_sym_SEMI] = ACTIONS(2862), - [anon_sym_typedef] = ACTIONS(2860), - [anon_sym_extern] = ACTIONS(2860), - [anon_sym___attribute__] = ACTIONS(2860), - [anon_sym_COLON_COLON] = ACTIONS(2862), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2862), - [anon_sym___declspec] = ACTIONS(2860), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2860), - [anon_sym_static] = ACTIONS(2860), - [anon_sym_register] = ACTIONS(2860), - [anon_sym_inline] = ACTIONS(2860), - [anon_sym_thread_local] = ACTIONS(2860), - [anon_sym_const] = ACTIONS(2860), - [anon_sym_volatile] = ACTIONS(2860), - [anon_sym_restrict] = ACTIONS(2860), - [anon_sym__Atomic] = ACTIONS(2860), - [anon_sym_mutable] = ACTIONS(2860), - [anon_sym_constexpr] = ACTIONS(2860), - [anon_sym_constinit] = ACTIONS(2860), - [anon_sym_consteval] = ACTIONS(2860), - [anon_sym_signed] = ACTIONS(2860), - [anon_sym_unsigned] = ACTIONS(2860), - [anon_sym_long] = ACTIONS(2860), - [anon_sym_short] = ACTIONS(2860), - [sym_primitive_type] = ACTIONS(2860), - [anon_sym_enum] = ACTIONS(2860), - [anon_sym_class] = 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_return] = ACTIONS(2860), - [anon_sym_break] = ACTIONS(2860), - [anon_sym_continue] = ACTIONS(2860), - [anon_sym_goto] = ACTIONS(2860), - [anon_sym_not] = ACTIONS(2860), - [anon_sym_compl] = ACTIONS(2860), - [anon_sym_DASH_DASH] = ACTIONS(2862), - [anon_sym_PLUS_PLUS] = ACTIONS(2862), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2862), - [anon_sym_u_DQUOTE] = ACTIONS(2862), - [anon_sym_U_DQUOTE] = ACTIONS(2862), - [anon_sym_u8_DQUOTE] = ACTIONS(2862), - [anon_sym_DQUOTE] = ACTIONS(2862), - [sym_true] = ACTIONS(2860), - [sym_false] = ACTIONS(2860), - [sym_null] = ACTIONS(2860), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2860), - [anon_sym_decltype] = ACTIONS(2860), - [anon_sym_virtual] = ACTIONS(2860), - [anon_sym_explicit] = ACTIONS(2860), - [anon_sym_typename] = ACTIONS(2860), - [anon_sym_template] = ACTIONS(2860), - [anon_sym_operator] = ACTIONS(2860), - [anon_sym_try] = ACTIONS(2860), - [anon_sym_delete] = ACTIONS(2860), - [anon_sym_throw] = ACTIONS(2860), - [anon_sym_namespace] = ACTIONS(2860), - [anon_sym_using] = ACTIONS(2860), - [anon_sym_static_assert] = ACTIONS(2860), - [anon_sym_concept] = ACTIONS(2860), - [anon_sym_co_return] = ACTIONS(2860), - [anon_sym_co_yield] = ACTIONS(2860), - [anon_sym_R_DQUOTE] = ACTIONS(2862), - [anon_sym_LR_DQUOTE] = ACTIONS(2862), - [anon_sym_uR_DQUOTE] = ACTIONS(2862), - [anon_sym_UR_DQUOTE] = ACTIONS(2862), - [anon_sym_u8R_DQUOTE] = ACTIONS(2862), - [anon_sym_co_await] = ACTIONS(2860), - [anon_sym_new] = ACTIONS(2860), - [anon_sym_requires] = ACTIONS(2860), - [sym_this] = ACTIONS(2860), - [sym_nullptr] = ACTIONS(2860), + [924] = { + [sym_identifier] = ACTIONS(2962), + [aux_sym_preproc_include_token1] = ACTIONS(2962), + [aux_sym_preproc_def_token1] = ACTIONS(2962), + [aux_sym_preproc_if_token1] = ACTIONS(2962), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2962), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2962), + [sym_preproc_directive] = ACTIONS(2962), + [anon_sym_LPAREN2] = ACTIONS(2964), + [anon_sym_BANG] = ACTIONS(2964), + [anon_sym_TILDE] = ACTIONS(2964), + [anon_sym_DASH] = ACTIONS(2962), + [anon_sym_PLUS] = ACTIONS(2962), + [anon_sym_STAR] = ACTIONS(2964), + [anon_sym_AMP_AMP] = ACTIONS(2964), + [anon_sym_AMP] = ACTIONS(2962), + [anon_sym_SEMI] = ACTIONS(2964), + [anon_sym_typedef] = ACTIONS(2962), + [anon_sym_extern] = ACTIONS(2962), + [anon_sym___attribute__] = ACTIONS(2962), + [anon_sym_COLON_COLON] = ACTIONS(2964), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2964), + [anon_sym___declspec] = ACTIONS(2962), + [anon_sym___based] = ACTIONS(2962), + [anon_sym___cdecl] = ACTIONS(2962), + [anon_sym___clrcall] = ACTIONS(2962), + [anon_sym___stdcall] = ACTIONS(2962), + [anon_sym___fastcall] = ACTIONS(2962), + [anon_sym___thiscall] = ACTIONS(2962), + [anon_sym___vectorcall] = ACTIONS(2962), + [anon_sym_LBRACE] = ACTIONS(2964), + [anon_sym_RBRACE] = ACTIONS(2964), + [anon_sym_LBRACK] = ACTIONS(2962), + [anon_sym_static] = ACTIONS(2962), + [anon_sym_register] = ACTIONS(2962), + [anon_sym_inline] = ACTIONS(2962), + [anon_sym_thread_local] = ACTIONS(2962), + [anon_sym_const] = ACTIONS(2962), + [anon_sym_constexpr] = ACTIONS(2962), + [anon_sym_volatile] = ACTIONS(2962), + [anon_sym_restrict] = ACTIONS(2962), + [anon_sym___restrict__] = ACTIONS(2962), + [anon_sym__Atomic] = ACTIONS(2962), + [anon_sym__Noreturn] = ACTIONS(2962), + [anon_sym_noreturn] = ACTIONS(2962), + [anon_sym_mutable] = ACTIONS(2962), + [anon_sym_constinit] = ACTIONS(2962), + [anon_sym_consteval] = ACTIONS(2962), + [anon_sym_signed] = ACTIONS(2962), + [anon_sym_unsigned] = ACTIONS(2962), + [anon_sym_long] = ACTIONS(2962), + [anon_sym_short] = ACTIONS(2962), + [sym_primitive_type] = ACTIONS(2962), + [anon_sym_enum] = ACTIONS(2962), + [anon_sym_class] = ACTIONS(2962), + [anon_sym_struct] = ACTIONS(2962), + [anon_sym_union] = ACTIONS(2962), + [anon_sym_if] = ACTIONS(2962), + [anon_sym_else] = ACTIONS(2962), + [anon_sym_switch] = ACTIONS(2962), + [anon_sym_case] = ACTIONS(2962), + [anon_sym_default] = ACTIONS(2962), + [anon_sym_while] = ACTIONS(2962), + [anon_sym_do] = ACTIONS(2962), + [anon_sym_for] = ACTIONS(2962), + [anon_sym_return] = ACTIONS(2962), + [anon_sym_break] = ACTIONS(2962), + [anon_sym_continue] = ACTIONS(2962), + [anon_sym_goto] = ACTIONS(2962), + [anon_sym_not] = ACTIONS(2962), + [anon_sym_compl] = ACTIONS(2962), + [anon_sym_DASH_DASH] = ACTIONS(2964), + [anon_sym_PLUS_PLUS] = ACTIONS(2964), + [anon_sym_sizeof] = ACTIONS(2962), + [anon_sym_offsetof] = ACTIONS(2962), + [anon_sym__Generic] = ACTIONS(2962), + [anon_sym_asm] = ACTIONS(2962), + [anon_sym___asm__] = ACTIONS(2962), + [sym_number_literal] = ACTIONS(2964), + [anon_sym_L_SQUOTE] = ACTIONS(2964), + [anon_sym_u_SQUOTE] = ACTIONS(2964), + [anon_sym_U_SQUOTE] = ACTIONS(2964), + [anon_sym_u8_SQUOTE] = ACTIONS(2964), + [anon_sym_SQUOTE] = ACTIONS(2964), + [anon_sym_L_DQUOTE] = ACTIONS(2964), + [anon_sym_u_DQUOTE] = ACTIONS(2964), + [anon_sym_U_DQUOTE] = ACTIONS(2964), + [anon_sym_u8_DQUOTE] = ACTIONS(2964), + [anon_sym_DQUOTE] = ACTIONS(2964), + [sym_true] = ACTIONS(2962), + [sym_false] = ACTIONS(2962), + [anon_sym_NULL] = ACTIONS(2962), + [anon_sym_nullptr] = ACTIONS(2962), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2962), + [anon_sym_decltype] = ACTIONS(2962), + [anon_sym_virtual] = ACTIONS(2962), + [anon_sym_explicit] = ACTIONS(2962), + [anon_sym_typename] = ACTIONS(2962), + [anon_sym_template] = ACTIONS(2962), + [anon_sym_operator] = ACTIONS(2962), + [anon_sym_try] = ACTIONS(2962), + [anon_sym_delete] = ACTIONS(2962), + [anon_sym_throw] = ACTIONS(2962), + [anon_sym_namespace] = ACTIONS(2962), + [anon_sym_using] = ACTIONS(2962), + [anon_sym_static_assert] = ACTIONS(2962), + [anon_sym_concept] = ACTIONS(2962), + [anon_sym_co_return] = ACTIONS(2962), + [anon_sym_co_yield] = ACTIONS(2962), + [anon_sym_R_DQUOTE] = ACTIONS(2964), + [anon_sym_LR_DQUOTE] = ACTIONS(2964), + [anon_sym_uR_DQUOTE] = ACTIONS(2964), + [anon_sym_UR_DQUOTE] = ACTIONS(2964), + [anon_sym_u8R_DQUOTE] = ACTIONS(2964), + [anon_sym_co_await] = ACTIONS(2962), + [anon_sym_new] = ACTIONS(2962), + [anon_sym_requires] = ACTIONS(2962), + [sym_this] = ACTIONS(2962), }, - [973] = { - [sym_identifier] = ACTIONS(2856), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2858), - [anon_sym_AMP] = ACTIONS(2856), - [anon_sym_SEMI] = ACTIONS(2858), - [anon_sym_typedef] = ACTIONS(2856), - [anon_sym_extern] = ACTIONS(2856), - [anon_sym___attribute__] = ACTIONS(2856), - [anon_sym_COLON_COLON] = ACTIONS(2858), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2858), - [anon_sym___declspec] = ACTIONS(2856), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2856), - [anon_sym_static] = ACTIONS(2856), - [anon_sym_register] = ACTIONS(2856), - [anon_sym_inline] = ACTIONS(2856), - [anon_sym_thread_local] = ACTIONS(2856), - [anon_sym_const] = ACTIONS(2856), - [anon_sym_volatile] = ACTIONS(2856), - [anon_sym_restrict] = ACTIONS(2856), - [anon_sym__Atomic] = ACTIONS(2856), - [anon_sym_mutable] = ACTIONS(2856), - [anon_sym_constexpr] = ACTIONS(2856), - [anon_sym_constinit] = ACTIONS(2856), - [anon_sym_consteval] = ACTIONS(2856), - [anon_sym_signed] = ACTIONS(2856), - [anon_sym_unsigned] = ACTIONS(2856), - [anon_sym_long] = ACTIONS(2856), - [anon_sym_short] = ACTIONS(2856), - [sym_primitive_type] = ACTIONS(2856), - [anon_sym_enum] = ACTIONS(2856), - [anon_sym_class] = 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_return] = ACTIONS(2856), - [anon_sym_break] = ACTIONS(2856), - [anon_sym_continue] = ACTIONS(2856), - [anon_sym_goto] = ACTIONS(2856), - [anon_sym_not] = ACTIONS(2856), - [anon_sym_compl] = ACTIONS(2856), - [anon_sym_DASH_DASH] = ACTIONS(2858), - [anon_sym_PLUS_PLUS] = ACTIONS(2858), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2858), - [anon_sym_u_DQUOTE] = ACTIONS(2858), - [anon_sym_U_DQUOTE] = ACTIONS(2858), - [anon_sym_u8_DQUOTE] = ACTIONS(2858), - [anon_sym_DQUOTE] = ACTIONS(2858), - [sym_true] = ACTIONS(2856), - [sym_false] = ACTIONS(2856), - [sym_null] = ACTIONS(2856), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2856), - [anon_sym_decltype] = ACTIONS(2856), - [anon_sym_virtual] = ACTIONS(2856), - [anon_sym_explicit] = ACTIONS(2856), - [anon_sym_typename] = ACTIONS(2856), - [anon_sym_template] = ACTIONS(2856), - [anon_sym_operator] = ACTIONS(2856), - [anon_sym_try] = ACTIONS(2856), - [anon_sym_delete] = ACTIONS(2856), - [anon_sym_throw] = ACTIONS(2856), - [anon_sym_namespace] = ACTIONS(2856), - [anon_sym_using] = ACTIONS(2856), - [anon_sym_static_assert] = ACTIONS(2856), - [anon_sym_concept] = ACTIONS(2856), - [anon_sym_co_return] = ACTIONS(2856), - [anon_sym_co_yield] = ACTIONS(2856), - [anon_sym_R_DQUOTE] = ACTIONS(2858), - [anon_sym_LR_DQUOTE] = ACTIONS(2858), - [anon_sym_uR_DQUOTE] = ACTIONS(2858), - [anon_sym_UR_DQUOTE] = ACTIONS(2858), - [anon_sym_u8R_DQUOTE] = ACTIONS(2858), - [anon_sym_co_await] = ACTIONS(2856), - [anon_sym_new] = ACTIONS(2856), - [anon_sym_requires] = ACTIONS(2856), - [sym_this] = ACTIONS(2856), - [sym_nullptr] = ACTIONS(2856), + [925] = { + [sym_identifier] = ACTIONS(2920), + [aux_sym_preproc_include_token1] = ACTIONS(2920), + [aux_sym_preproc_def_token1] = ACTIONS(2920), + [aux_sym_preproc_if_token1] = ACTIONS(2920), + [aux_sym_preproc_if_token2] = ACTIONS(2920), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2920), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2920), + [sym_preproc_directive] = ACTIONS(2920), + [anon_sym_LPAREN2] = ACTIONS(2922), + [anon_sym_BANG] = ACTIONS(2922), + [anon_sym_TILDE] = ACTIONS(2922), + [anon_sym_DASH] = ACTIONS(2920), + [anon_sym_PLUS] = ACTIONS(2920), + [anon_sym_STAR] = ACTIONS(2922), + [anon_sym_AMP_AMP] = ACTIONS(2922), + [anon_sym_AMP] = ACTIONS(2920), + [anon_sym_SEMI] = ACTIONS(2922), + [anon_sym_typedef] = ACTIONS(2920), + [anon_sym_extern] = ACTIONS(2920), + [anon_sym___attribute__] = ACTIONS(2920), + [anon_sym_COLON_COLON] = ACTIONS(2922), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2922), + [anon_sym___declspec] = ACTIONS(2920), + [anon_sym___based] = ACTIONS(2920), + [anon_sym___cdecl] = ACTIONS(2920), + [anon_sym___clrcall] = ACTIONS(2920), + [anon_sym___stdcall] = ACTIONS(2920), + [anon_sym___fastcall] = ACTIONS(2920), + [anon_sym___thiscall] = ACTIONS(2920), + [anon_sym___vectorcall] = ACTIONS(2920), + [anon_sym_LBRACE] = ACTIONS(2922), + [anon_sym_LBRACK] = ACTIONS(2920), + [anon_sym_static] = ACTIONS(2920), + [anon_sym_register] = ACTIONS(2920), + [anon_sym_inline] = ACTIONS(2920), + [anon_sym_thread_local] = ACTIONS(2920), + [anon_sym_const] = ACTIONS(2920), + [anon_sym_constexpr] = ACTIONS(2920), + [anon_sym_volatile] = ACTIONS(2920), + [anon_sym_restrict] = ACTIONS(2920), + [anon_sym___restrict__] = ACTIONS(2920), + [anon_sym__Atomic] = ACTIONS(2920), + [anon_sym__Noreturn] = ACTIONS(2920), + [anon_sym_noreturn] = ACTIONS(2920), + [anon_sym_mutable] = ACTIONS(2920), + [anon_sym_constinit] = ACTIONS(2920), + [anon_sym_consteval] = ACTIONS(2920), + [anon_sym_signed] = ACTIONS(2920), + [anon_sym_unsigned] = ACTIONS(2920), + [anon_sym_long] = ACTIONS(2920), + [anon_sym_short] = ACTIONS(2920), + [sym_primitive_type] = ACTIONS(2920), + [anon_sym_enum] = ACTIONS(2920), + [anon_sym_class] = ACTIONS(2920), + [anon_sym_struct] = ACTIONS(2920), + [anon_sym_union] = ACTIONS(2920), + [anon_sym_if] = ACTIONS(2920), + [anon_sym_else] = ACTIONS(2920), + [anon_sym_switch] = ACTIONS(2920), + [anon_sym_case] = ACTIONS(2920), + [anon_sym_default] = ACTIONS(2920), + [anon_sym_while] = ACTIONS(2920), + [anon_sym_do] = ACTIONS(2920), + [anon_sym_for] = ACTIONS(2920), + [anon_sym_return] = ACTIONS(2920), + [anon_sym_break] = ACTIONS(2920), + [anon_sym_continue] = ACTIONS(2920), + [anon_sym_goto] = ACTIONS(2920), + [anon_sym_not] = ACTIONS(2920), + [anon_sym_compl] = ACTIONS(2920), + [anon_sym_DASH_DASH] = ACTIONS(2922), + [anon_sym_PLUS_PLUS] = ACTIONS(2922), + [anon_sym_sizeof] = ACTIONS(2920), + [anon_sym_offsetof] = ACTIONS(2920), + [anon_sym__Generic] = ACTIONS(2920), + [anon_sym_asm] = ACTIONS(2920), + [anon_sym___asm__] = ACTIONS(2920), + [sym_number_literal] = ACTIONS(2922), + [anon_sym_L_SQUOTE] = ACTIONS(2922), + [anon_sym_u_SQUOTE] = ACTIONS(2922), + [anon_sym_U_SQUOTE] = ACTIONS(2922), + [anon_sym_u8_SQUOTE] = ACTIONS(2922), + [anon_sym_SQUOTE] = ACTIONS(2922), + [anon_sym_L_DQUOTE] = ACTIONS(2922), + [anon_sym_u_DQUOTE] = ACTIONS(2922), + [anon_sym_U_DQUOTE] = ACTIONS(2922), + [anon_sym_u8_DQUOTE] = ACTIONS(2922), + [anon_sym_DQUOTE] = ACTIONS(2922), + [sym_true] = ACTIONS(2920), + [sym_false] = ACTIONS(2920), + [anon_sym_NULL] = ACTIONS(2920), + [anon_sym_nullptr] = ACTIONS(2920), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2920), + [anon_sym_decltype] = ACTIONS(2920), + [anon_sym_virtual] = ACTIONS(2920), + [anon_sym_explicit] = ACTIONS(2920), + [anon_sym_typename] = ACTIONS(2920), + [anon_sym_template] = ACTIONS(2920), + [anon_sym_operator] = ACTIONS(2920), + [anon_sym_try] = ACTIONS(2920), + [anon_sym_delete] = ACTIONS(2920), + [anon_sym_throw] = ACTIONS(2920), + [anon_sym_namespace] = ACTIONS(2920), + [anon_sym_using] = ACTIONS(2920), + [anon_sym_static_assert] = ACTIONS(2920), + [anon_sym_concept] = ACTIONS(2920), + [anon_sym_co_return] = ACTIONS(2920), + [anon_sym_co_yield] = ACTIONS(2920), + [anon_sym_R_DQUOTE] = ACTIONS(2922), + [anon_sym_LR_DQUOTE] = ACTIONS(2922), + [anon_sym_uR_DQUOTE] = ACTIONS(2922), + [anon_sym_UR_DQUOTE] = ACTIONS(2922), + [anon_sym_u8R_DQUOTE] = ACTIONS(2922), + [anon_sym_co_await] = ACTIONS(2920), + [anon_sym_new] = ACTIONS(2920), + [anon_sym_requires] = ACTIONS(2920), + [sym_this] = ACTIONS(2920), }, - [974] = { - [ts_builtin_sym_end] = ACTIONS(2784), - [sym_identifier] = ACTIONS(2782), - [aux_sym_preproc_include_token1] = ACTIONS(2782), - [aux_sym_preproc_def_token1] = ACTIONS(2782), - [aux_sym_preproc_if_token1] = ACTIONS(2782), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2782), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2782), - [sym_preproc_directive] = ACTIONS(2782), - [anon_sym_LPAREN2] = ACTIONS(2784), - [anon_sym_BANG] = ACTIONS(2784), - [anon_sym_TILDE] = ACTIONS(2784), - [anon_sym_DASH] = ACTIONS(2782), - [anon_sym_PLUS] = ACTIONS(2782), - [anon_sym_STAR] = ACTIONS(2784), - [anon_sym_AMP_AMP] = ACTIONS(2784), - [anon_sym_AMP] = ACTIONS(2782), - [anon_sym_SEMI] = ACTIONS(2784), - [anon_sym_typedef] = ACTIONS(2782), - [anon_sym_extern] = ACTIONS(2782), - [anon_sym___attribute__] = ACTIONS(2782), - [anon_sym_COLON_COLON] = ACTIONS(2784), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2784), - [anon_sym___declspec] = ACTIONS(2782), - [anon_sym___based] = ACTIONS(2782), - [anon_sym___cdecl] = ACTIONS(2782), - [anon_sym___clrcall] = ACTIONS(2782), - [anon_sym___stdcall] = ACTIONS(2782), - [anon_sym___fastcall] = ACTIONS(2782), - [anon_sym___thiscall] = ACTIONS(2782), - [anon_sym___vectorcall] = ACTIONS(2782), - [anon_sym_LBRACE] = ACTIONS(2784), - [anon_sym_LBRACK] = ACTIONS(2782), - [anon_sym_static] = ACTIONS(2782), - [anon_sym_register] = ACTIONS(2782), - [anon_sym_inline] = ACTIONS(2782), - [anon_sym_thread_local] = ACTIONS(2782), - [anon_sym_const] = ACTIONS(2782), - [anon_sym_volatile] = ACTIONS(2782), - [anon_sym_restrict] = ACTIONS(2782), - [anon_sym__Atomic] = ACTIONS(2782), - [anon_sym_mutable] = ACTIONS(2782), - [anon_sym_constexpr] = ACTIONS(2782), - [anon_sym_constinit] = ACTIONS(2782), - [anon_sym_consteval] = ACTIONS(2782), - [anon_sym_signed] = ACTIONS(2782), - [anon_sym_unsigned] = ACTIONS(2782), - [anon_sym_long] = ACTIONS(2782), - [anon_sym_short] = ACTIONS(2782), - [sym_primitive_type] = ACTIONS(2782), - [anon_sym_enum] = ACTIONS(2782), - [anon_sym_class] = ACTIONS(2782), - [anon_sym_struct] = ACTIONS(2782), - [anon_sym_union] = ACTIONS(2782), - [anon_sym_if] = ACTIONS(2782), - [anon_sym_switch] = ACTIONS(2782), - [anon_sym_case] = ACTIONS(2782), - [anon_sym_default] = ACTIONS(2782), - [anon_sym_while] = ACTIONS(2782), - [anon_sym_do] = ACTIONS(2782), - [anon_sym_for] = ACTIONS(2782), - [anon_sym_return] = ACTIONS(2782), - [anon_sym_break] = ACTIONS(2782), - [anon_sym_continue] = ACTIONS(2782), - [anon_sym_goto] = ACTIONS(2782), - [anon_sym_not] = ACTIONS(2782), - [anon_sym_compl] = ACTIONS(2782), - [anon_sym_DASH_DASH] = ACTIONS(2784), - [anon_sym_PLUS_PLUS] = ACTIONS(2784), - [anon_sym_sizeof] = ACTIONS(2782), - [sym_number_literal] = ACTIONS(2784), - [anon_sym_L_SQUOTE] = ACTIONS(2784), - [anon_sym_u_SQUOTE] = ACTIONS(2784), - [anon_sym_U_SQUOTE] = ACTIONS(2784), - [anon_sym_u8_SQUOTE] = ACTIONS(2784), - [anon_sym_SQUOTE] = ACTIONS(2784), - [anon_sym_L_DQUOTE] = ACTIONS(2784), - [anon_sym_u_DQUOTE] = ACTIONS(2784), - [anon_sym_U_DQUOTE] = ACTIONS(2784), - [anon_sym_u8_DQUOTE] = ACTIONS(2784), - [anon_sym_DQUOTE] = ACTIONS(2784), - [sym_true] = ACTIONS(2782), - [sym_false] = ACTIONS(2782), - [sym_null] = ACTIONS(2782), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2782), - [anon_sym_decltype] = ACTIONS(2782), - [anon_sym_virtual] = ACTIONS(2782), - [anon_sym_explicit] = ACTIONS(2782), - [anon_sym_typename] = ACTIONS(2782), - [anon_sym_template] = ACTIONS(2782), - [anon_sym_operator] = ACTIONS(2782), - [anon_sym_try] = ACTIONS(2782), - [anon_sym_delete] = ACTIONS(2782), - [anon_sym_throw] = ACTIONS(2782), - [anon_sym_namespace] = ACTIONS(2782), - [anon_sym_using] = ACTIONS(2782), - [anon_sym_static_assert] = ACTIONS(2782), - [anon_sym_concept] = ACTIONS(2782), - [anon_sym_co_return] = ACTIONS(2782), - [anon_sym_co_yield] = ACTIONS(2782), - [anon_sym_R_DQUOTE] = ACTIONS(2784), - [anon_sym_LR_DQUOTE] = ACTIONS(2784), - [anon_sym_uR_DQUOTE] = ACTIONS(2784), - [anon_sym_UR_DQUOTE] = ACTIONS(2784), - [anon_sym_u8R_DQUOTE] = ACTIONS(2784), - [anon_sym_co_await] = ACTIONS(2782), - [anon_sym_new] = ACTIONS(2782), - [anon_sym_requires] = ACTIONS(2782), - [sym_this] = ACTIONS(2782), - [sym_nullptr] = ACTIONS(2782), + [926] = { + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_RBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, - [975] = { - [ts_builtin_sym_end] = ACTIONS(2672), - [sym_identifier] = ACTIONS(2670), - [aux_sym_preproc_include_token1] = ACTIONS(2670), - [aux_sym_preproc_def_token1] = ACTIONS(2670), - [aux_sym_preproc_if_token1] = ACTIONS(2670), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2670), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2670), - [sym_preproc_directive] = ACTIONS(2670), - [anon_sym_LPAREN2] = ACTIONS(2672), - [anon_sym_BANG] = ACTIONS(2672), - [anon_sym_TILDE] = ACTIONS(2672), - [anon_sym_DASH] = ACTIONS(2670), - [anon_sym_PLUS] = ACTIONS(2670), - [anon_sym_STAR] = ACTIONS(2672), - [anon_sym_AMP_AMP] = ACTIONS(2672), - [anon_sym_AMP] = ACTIONS(2670), - [anon_sym_SEMI] = ACTIONS(2672), - [anon_sym_typedef] = ACTIONS(2670), - [anon_sym_extern] = ACTIONS(2670), - [anon_sym___attribute__] = ACTIONS(2670), - [anon_sym_COLON_COLON] = ACTIONS(2672), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2672), - [anon_sym___declspec] = ACTIONS(2670), - [anon_sym___based] = ACTIONS(2670), - [anon_sym___cdecl] = ACTIONS(2670), - [anon_sym___clrcall] = ACTIONS(2670), - [anon_sym___stdcall] = ACTIONS(2670), - [anon_sym___fastcall] = ACTIONS(2670), - [anon_sym___thiscall] = ACTIONS(2670), - [anon_sym___vectorcall] = ACTIONS(2670), - [anon_sym_LBRACE] = ACTIONS(2672), - [anon_sym_LBRACK] = ACTIONS(2670), - [anon_sym_static] = ACTIONS(2670), - [anon_sym_register] = ACTIONS(2670), - [anon_sym_inline] = ACTIONS(2670), - [anon_sym_thread_local] = ACTIONS(2670), - [anon_sym_const] = ACTIONS(2670), - [anon_sym_volatile] = ACTIONS(2670), - [anon_sym_restrict] = ACTIONS(2670), - [anon_sym__Atomic] = ACTIONS(2670), - [anon_sym_mutable] = ACTIONS(2670), - [anon_sym_constexpr] = ACTIONS(2670), - [anon_sym_constinit] = ACTIONS(2670), - [anon_sym_consteval] = ACTIONS(2670), - [anon_sym_signed] = ACTIONS(2670), - [anon_sym_unsigned] = ACTIONS(2670), - [anon_sym_long] = ACTIONS(2670), - [anon_sym_short] = ACTIONS(2670), - [sym_primitive_type] = ACTIONS(2670), - [anon_sym_enum] = ACTIONS(2670), - [anon_sym_class] = ACTIONS(2670), - [anon_sym_struct] = ACTIONS(2670), - [anon_sym_union] = ACTIONS(2670), - [anon_sym_if] = ACTIONS(2670), - [anon_sym_switch] = ACTIONS(2670), - [anon_sym_case] = ACTIONS(2670), - [anon_sym_default] = ACTIONS(2670), - [anon_sym_while] = ACTIONS(2670), - [anon_sym_do] = ACTIONS(2670), - [anon_sym_for] = ACTIONS(2670), - [anon_sym_return] = ACTIONS(2670), - [anon_sym_break] = ACTIONS(2670), - [anon_sym_continue] = ACTIONS(2670), - [anon_sym_goto] = ACTIONS(2670), - [anon_sym_not] = ACTIONS(2670), - [anon_sym_compl] = ACTIONS(2670), - [anon_sym_DASH_DASH] = ACTIONS(2672), - [anon_sym_PLUS_PLUS] = ACTIONS(2672), - [anon_sym_sizeof] = ACTIONS(2670), - [sym_number_literal] = ACTIONS(2672), - [anon_sym_L_SQUOTE] = ACTIONS(2672), - [anon_sym_u_SQUOTE] = ACTIONS(2672), - [anon_sym_U_SQUOTE] = ACTIONS(2672), - [anon_sym_u8_SQUOTE] = ACTIONS(2672), - [anon_sym_SQUOTE] = ACTIONS(2672), - [anon_sym_L_DQUOTE] = ACTIONS(2672), - [anon_sym_u_DQUOTE] = ACTIONS(2672), - [anon_sym_U_DQUOTE] = ACTIONS(2672), - [anon_sym_u8_DQUOTE] = ACTIONS(2672), - [anon_sym_DQUOTE] = ACTIONS(2672), - [sym_true] = ACTIONS(2670), - [sym_false] = ACTIONS(2670), - [sym_null] = ACTIONS(2670), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2670), - [anon_sym_decltype] = ACTIONS(2670), - [anon_sym_virtual] = ACTIONS(2670), - [anon_sym_explicit] = ACTIONS(2670), - [anon_sym_typename] = ACTIONS(2670), - [anon_sym_template] = ACTIONS(2670), - [anon_sym_operator] = ACTIONS(2670), - [anon_sym_try] = ACTIONS(2670), - [anon_sym_delete] = ACTIONS(2670), - [anon_sym_throw] = ACTIONS(2670), - [anon_sym_namespace] = ACTIONS(2670), - [anon_sym_using] = ACTIONS(2670), - [anon_sym_static_assert] = ACTIONS(2670), - [anon_sym_concept] = ACTIONS(2670), - [anon_sym_co_return] = ACTIONS(2670), - [anon_sym_co_yield] = ACTIONS(2670), - [anon_sym_R_DQUOTE] = ACTIONS(2672), - [anon_sym_LR_DQUOTE] = ACTIONS(2672), - [anon_sym_uR_DQUOTE] = ACTIONS(2672), - [anon_sym_UR_DQUOTE] = ACTIONS(2672), - [anon_sym_u8R_DQUOTE] = ACTIONS(2672), - [anon_sym_co_await] = ACTIONS(2670), - [anon_sym_new] = ACTIONS(2670), - [anon_sym_requires] = ACTIONS(2670), - [sym_this] = ACTIONS(2670), - [sym_nullptr] = ACTIONS(2670), + [927] = { + [sym_identifier] = ACTIONS(2970), + [aux_sym_preproc_include_token1] = ACTIONS(2970), + [aux_sym_preproc_def_token1] = ACTIONS(2970), + [aux_sym_preproc_if_token1] = ACTIONS(2970), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2970), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2970), + [sym_preproc_directive] = 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_AMP_AMP] = ACTIONS(2972), + [anon_sym_AMP] = ACTIONS(2970), + [anon_sym_SEMI] = ACTIONS(2972), + [anon_sym_typedef] = ACTIONS(2970), + [anon_sym_extern] = ACTIONS(2970), + [anon_sym___attribute__] = ACTIONS(2970), + [anon_sym_COLON_COLON] = ACTIONS(2972), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2972), + [anon_sym___declspec] = ACTIONS(2970), + [anon_sym___based] = ACTIONS(2970), + [anon_sym___cdecl] = ACTIONS(2970), + [anon_sym___clrcall] = ACTIONS(2970), + [anon_sym___stdcall] = ACTIONS(2970), + [anon_sym___fastcall] = ACTIONS(2970), + [anon_sym___thiscall] = ACTIONS(2970), + [anon_sym___vectorcall] = ACTIONS(2970), + [anon_sym_LBRACE] = ACTIONS(2972), + [anon_sym_RBRACE] = ACTIONS(2972), + [anon_sym_LBRACK] = ACTIONS(2970), + [anon_sym_static] = ACTIONS(2970), + [anon_sym_register] = ACTIONS(2970), + [anon_sym_inline] = ACTIONS(2970), + [anon_sym_thread_local] = 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_noreturn] = ACTIONS(2970), + [anon_sym_mutable] = ACTIONS(2970), + [anon_sym_constinit] = ACTIONS(2970), + [anon_sym_consteval] = ACTIONS(2970), + [anon_sym_signed] = ACTIONS(2970), + [anon_sym_unsigned] = ACTIONS(2970), + [anon_sym_long] = ACTIONS(2970), + [anon_sym_short] = ACTIONS(2970), + [sym_primitive_type] = ACTIONS(2970), + [anon_sym_enum] = ACTIONS(2970), + [anon_sym_class] = ACTIONS(2970), + [anon_sym_struct] = ACTIONS(2970), + [anon_sym_union] = ACTIONS(2970), + [anon_sym_if] = ACTIONS(2970), + [anon_sym_else] = ACTIONS(3605), + [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_return] = ACTIONS(2970), + [anon_sym_break] = ACTIONS(2970), + [anon_sym_continue] = ACTIONS(2970), + [anon_sym_goto] = ACTIONS(2970), + [anon_sym_not] = ACTIONS(2970), + [anon_sym_compl] = ACTIONS(2970), + [anon_sym_DASH_DASH] = ACTIONS(2972), + [anon_sym_PLUS_PLUS] = ACTIONS(2972), + [anon_sym_sizeof] = ACTIONS(2970), + [anon_sym_offsetof] = ACTIONS(2970), + [anon_sym__Generic] = 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_L_DQUOTE] = ACTIONS(2972), + [anon_sym_u_DQUOTE] = ACTIONS(2972), + [anon_sym_U_DQUOTE] = ACTIONS(2972), + [anon_sym_u8_DQUOTE] = ACTIONS(2972), + [anon_sym_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), + [sym_auto] = ACTIONS(2970), + [anon_sym_decltype] = ACTIONS(2970), + [anon_sym_virtual] = ACTIONS(2970), + [anon_sym_explicit] = ACTIONS(2970), + [anon_sym_typename] = ACTIONS(2970), + [anon_sym_template] = ACTIONS(2970), + [anon_sym_operator] = ACTIONS(2970), + [anon_sym_try] = ACTIONS(2970), + [anon_sym_delete] = ACTIONS(2970), + [anon_sym_throw] = ACTIONS(2970), + [anon_sym_namespace] = ACTIONS(2970), + [anon_sym_using] = ACTIONS(2970), + [anon_sym_static_assert] = ACTIONS(2970), + [anon_sym_concept] = ACTIONS(2970), + [anon_sym_co_return] = ACTIONS(2970), + [anon_sym_co_yield] = ACTIONS(2970), + [anon_sym_R_DQUOTE] = ACTIONS(2972), + [anon_sym_LR_DQUOTE] = ACTIONS(2972), + [anon_sym_uR_DQUOTE] = ACTIONS(2972), + [anon_sym_UR_DQUOTE] = ACTIONS(2972), + [anon_sym_u8R_DQUOTE] = ACTIONS(2972), + [anon_sym_co_await] = ACTIONS(2970), + [anon_sym_new] = ACTIONS(2970), + [anon_sym_requires] = ACTIONS(2970), + [sym_this] = ACTIONS(2970), }, - [976] = { - [sym_identifier] = ACTIONS(2842), - [aux_sym_preproc_include_token1] = ACTIONS(2842), - [aux_sym_preproc_def_token1] = ACTIONS(2842), - [aux_sym_preproc_if_token1] = ACTIONS(2842), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2842), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2842), - [sym_preproc_directive] = ACTIONS(2842), - [anon_sym_LPAREN2] = ACTIONS(2844), - [anon_sym_BANG] = ACTIONS(2844), - [anon_sym_TILDE] = ACTIONS(2844), - [anon_sym_DASH] = ACTIONS(2842), - [anon_sym_PLUS] = ACTIONS(2842), - [anon_sym_STAR] = ACTIONS(2844), - [anon_sym_AMP_AMP] = ACTIONS(2844), - [anon_sym_AMP] = ACTIONS(2842), - [anon_sym_SEMI] = ACTIONS(2844), - [anon_sym_typedef] = ACTIONS(2842), - [anon_sym_extern] = ACTIONS(2842), - [anon_sym___attribute__] = ACTIONS(2842), - [anon_sym_COLON_COLON] = ACTIONS(2844), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2844), - [anon_sym___declspec] = ACTIONS(2842), - [anon_sym___based] = ACTIONS(2842), - [anon_sym___cdecl] = ACTIONS(2842), - [anon_sym___clrcall] = ACTIONS(2842), - [anon_sym___stdcall] = ACTIONS(2842), - [anon_sym___fastcall] = ACTIONS(2842), - [anon_sym___thiscall] = ACTIONS(2842), - [anon_sym___vectorcall] = ACTIONS(2842), - [anon_sym_LBRACE] = ACTIONS(2844), - [anon_sym_RBRACE] = ACTIONS(2844), - [anon_sym_LBRACK] = ACTIONS(2842), - [anon_sym_static] = ACTIONS(2842), - [anon_sym_register] = ACTIONS(2842), - [anon_sym_inline] = ACTIONS(2842), - [anon_sym_thread_local] = ACTIONS(2842), - [anon_sym_const] = ACTIONS(2842), - [anon_sym_volatile] = ACTIONS(2842), - [anon_sym_restrict] = ACTIONS(2842), - [anon_sym__Atomic] = ACTIONS(2842), - [anon_sym_mutable] = ACTIONS(2842), - [anon_sym_constexpr] = ACTIONS(2842), - [anon_sym_constinit] = ACTIONS(2842), - [anon_sym_consteval] = ACTIONS(2842), - [anon_sym_signed] = ACTIONS(2842), - [anon_sym_unsigned] = ACTIONS(2842), - [anon_sym_long] = ACTIONS(2842), - [anon_sym_short] = ACTIONS(2842), - [sym_primitive_type] = ACTIONS(2842), - [anon_sym_enum] = ACTIONS(2842), - [anon_sym_class] = ACTIONS(2842), - [anon_sym_struct] = ACTIONS(2842), - [anon_sym_union] = ACTIONS(2842), - [anon_sym_if] = ACTIONS(2842), - [anon_sym_switch] = ACTIONS(2842), - [anon_sym_case] = ACTIONS(2842), - [anon_sym_default] = ACTIONS(2842), - [anon_sym_while] = ACTIONS(2842), - [anon_sym_do] = ACTIONS(2842), - [anon_sym_for] = ACTIONS(2842), - [anon_sym_return] = ACTIONS(2842), - [anon_sym_break] = ACTIONS(2842), - [anon_sym_continue] = ACTIONS(2842), - [anon_sym_goto] = ACTIONS(2842), - [anon_sym_not] = ACTIONS(2842), - [anon_sym_compl] = ACTIONS(2842), - [anon_sym_DASH_DASH] = ACTIONS(2844), - [anon_sym_PLUS_PLUS] = ACTIONS(2844), - [anon_sym_sizeof] = ACTIONS(2842), - [sym_number_literal] = ACTIONS(2844), - [anon_sym_L_SQUOTE] = ACTIONS(2844), - [anon_sym_u_SQUOTE] = ACTIONS(2844), - [anon_sym_U_SQUOTE] = ACTIONS(2844), - [anon_sym_u8_SQUOTE] = ACTIONS(2844), - [anon_sym_SQUOTE] = ACTIONS(2844), - [anon_sym_L_DQUOTE] = ACTIONS(2844), - [anon_sym_u_DQUOTE] = ACTIONS(2844), - [anon_sym_U_DQUOTE] = ACTIONS(2844), - [anon_sym_u8_DQUOTE] = ACTIONS(2844), - [anon_sym_DQUOTE] = ACTIONS(2844), - [sym_true] = ACTIONS(2842), - [sym_false] = ACTIONS(2842), - [sym_null] = ACTIONS(2842), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2842), - [anon_sym_decltype] = ACTIONS(2842), - [anon_sym_virtual] = ACTIONS(2842), - [anon_sym_explicit] = ACTIONS(2842), - [anon_sym_typename] = ACTIONS(2842), - [anon_sym_template] = ACTIONS(2842), - [anon_sym_operator] = ACTIONS(2842), - [anon_sym_try] = ACTIONS(2842), - [anon_sym_delete] = ACTIONS(2842), - [anon_sym_throw] = ACTIONS(2842), - [anon_sym_namespace] = ACTIONS(2842), - [anon_sym_using] = ACTIONS(2842), - [anon_sym_static_assert] = ACTIONS(2842), - [anon_sym_concept] = ACTIONS(2842), - [anon_sym_co_return] = ACTIONS(2842), - [anon_sym_co_yield] = ACTIONS(2842), - [anon_sym_R_DQUOTE] = ACTIONS(2844), - [anon_sym_LR_DQUOTE] = ACTIONS(2844), - [anon_sym_uR_DQUOTE] = ACTIONS(2844), - [anon_sym_UR_DQUOTE] = ACTIONS(2844), - [anon_sym_u8R_DQUOTE] = ACTIONS(2844), - [anon_sym_co_await] = ACTIONS(2842), - [anon_sym_new] = ACTIONS(2842), - [anon_sym_requires] = ACTIONS(2842), - [sym_this] = ACTIONS(2842), - [sym_nullptr] = ACTIONS(2842), + [928] = { + [sym_identifier] = ACTIONS(3008), + [aux_sym_preproc_include_token1] = ACTIONS(3008), + [aux_sym_preproc_def_token1] = ACTIONS(3008), + [aux_sym_preproc_if_token1] = ACTIONS(3008), + [aux_sym_preproc_if_token2] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3008), + [anon_sym_LPAREN2] = ACTIONS(3010), + [anon_sym_BANG] = ACTIONS(3010), + [anon_sym_TILDE] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3008), + [anon_sym_PLUS] = ACTIONS(3008), + [anon_sym_STAR] = ACTIONS(3010), + [anon_sym_AMP_AMP] = ACTIONS(3010), + [anon_sym_AMP] = ACTIONS(3008), + [anon_sym_SEMI] = ACTIONS(3010), + [anon_sym_typedef] = ACTIONS(3008), + [anon_sym_extern] = ACTIONS(3008), + [anon_sym___attribute__] = ACTIONS(3008), + [anon_sym_COLON_COLON] = ACTIONS(3010), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3010), + [anon_sym___declspec] = ACTIONS(3008), + [anon_sym___based] = ACTIONS(3008), + [anon_sym___cdecl] = ACTIONS(3008), + [anon_sym___clrcall] = ACTIONS(3008), + [anon_sym___stdcall] = ACTIONS(3008), + [anon_sym___fastcall] = ACTIONS(3008), + [anon_sym___thiscall] = ACTIONS(3008), + [anon_sym___vectorcall] = ACTIONS(3008), + [anon_sym_LBRACE] = ACTIONS(3010), + [anon_sym_LBRACK] = ACTIONS(3008), + [anon_sym_static] = ACTIONS(3008), + [anon_sym_register] = ACTIONS(3008), + [anon_sym_inline] = ACTIONS(3008), + [anon_sym_thread_local] = ACTIONS(3008), + [anon_sym_const] = ACTIONS(3008), + [anon_sym_constexpr] = ACTIONS(3008), + [anon_sym_volatile] = ACTIONS(3008), + [anon_sym_restrict] = ACTIONS(3008), + [anon_sym___restrict__] = ACTIONS(3008), + [anon_sym__Atomic] = ACTIONS(3008), + [anon_sym__Noreturn] = ACTIONS(3008), + [anon_sym_noreturn] = ACTIONS(3008), + [anon_sym_mutable] = ACTIONS(3008), + [anon_sym_constinit] = ACTIONS(3008), + [anon_sym_consteval] = ACTIONS(3008), + [anon_sym_signed] = ACTIONS(3008), + [anon_sym_unsigned] = ACTIONS(3008), + [anon_sym_long] = ACTIONS(3008), + [anon_sym_short] = ACTIONS(3008), + [sym_primitive_type] = ACTIONS(3008), + [anon_sym_enum] = ACTIONS(3008), + [anon_sym_class] = ACTIONS(3008), + [anon_sym_struct] = ACTIONS(3008), + [anon_sym_union] = ACTIONS(3008), + [anon_sym_if] = ACTIONS(3008), + [anon_sym_else] = ACTIONS(3008), + [anon_sym_switch] = ACTIONS(3008), + [anon_sym_case] = ACTIONS(3008), + [anon_sym_default] = ACTIONS(3008), + [anon_sym_while] = ACTIONS(3008), + [anon_sym_do] = ACTIONS(3008), + [anon_sym_for] = ACTIONS(3008), + [anon_sym_return] = ACTIONS(3008), + [anon_sym_break] = ACTIONS(3008), + [anon_sym_continue] = ACTIONS(3008), + [anon_sym_goto] = ACTIONS(3008), + [anon_sym_not] = ACTIONS(3008), + [anon_sym_compl] = ACTIONS(3008), + [anon_sym_DASH_DASH] = ACTIONS(3010), + [anon_sym_PLUS_PLUS] = ACTIONS(3010), + [anon_sym_sizeof] = ACTIONS(3008), + [anon_sym_offsetof] = ACTIONS(3008), + [anon_sym__Generic] = ACTIONS(3008), + [anon_sym_asm] = ACTIONS(3008), + [anon_sym___asm__] = ACTIONS(3008), + [sym_number_literal] = ACTIONS(3010), + [anon_sym_L_SQUOTE] = ACTIONS(3010), + [anon_sym_u_SQUOTE] = ACTIONS(3010), + [anon_sym_U_SQUOTE] = ACTIONS(3010), + [anon_sym_u8_SQUOTE] = ACTIONS(3010), + [anon_sym_SQUOTE] = ACTIONS(3010), + [anon_sym_L_DQUOTE] = ACTIONS(3010), + [anon_sym_u_DQUOTE] = ACTIONS(3010), + [anon_sym_U_DQUOTE] = ACTIONS(3010), + [anon_sym_u8_DQUOTE] = ACTIONS(3010), + [anon_sym_DQUOTE] = ACTIONS(3010), + [sym_true] = ACTIONS(3008), + [sym_false] = ACTIONS(3008), + [anon_sym_NULL] = ACTIONS(3008), + [anon_sym_nullptr] = ACTIONS(3008), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3008), + [anon_sym_decltype] = ACTIONS(3008), + [anon_sym_virtual] = ACTIONS(3008), + [anon_sym_explicit] = ACTIONS(3008), + [anon_sym_typename] = ACTIONS(3008), + [anon_sym_template] = ACTIONS(3008), + [anon_sym_operator] = ACTIONS(3008), + [anon_sym_try] = ACTIONS(3008), + [anon_sym_delete] = ACTIONS(3008), + [anon_sym_throw] = ACTIONS(3008), + [anon_sym_namespace] = ACTIONS(3008), + [anon_sym_using] = ACTIONS(3008), + [anon_sym_static_assert] = ACTIONS(3008), + [anon_sym_concept] = ACTIONS(3008), + [anon_sym_co_return] = ACTIONS(3008), + [anon_sym_co_yield] = ACTIONS(3008), + [anon_sym_R_DQUOTE] = ACTIONS(3010), + [anon_sym_LR_DQUOTE] = ACTIONS(3010), + [anon_sym_uR_DQUOTE] = ACTIONS(3010), + [anon_sym_UR_DQUOTE] = ACTIONS(3010), + [anon_sym_u8R_DQUOTE] = ACTIONS(3010), + [anon_sym_co_await] = ACTIONS(3008), + [anon_sym_new] = ACTIONS(3008), + [anon_sym_requires] = ACTIONS(3008), + [sym_this] = ACTIONS(3008), }, - [977] = { - [sym_identifier] = ACTIONS(2868), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2870), - [anon_sym_AMP] = ACTIONS(2868), - [anon_sym_SEMI] = ACTIONS(2870), - [anon_sym_typedef] = ACTIONS(2868), - [anon_sym_extern] = ACTIONS(2868), - [anon_sym___attribute__] = ACTIONS(2868), - [anon_sym_COLON_COLON] = ACTIONS(2870), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2870), - [anon_sym___declspec] = ACTIONS(2868), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2868), - [anon_sym_static] = ACTIONS(2868), - [anon_sym_register] = ACTIONS(2868), - [anon_sym_inline] = ACTIONS(2868), - [anon_sym_thread_local] = ACTIONS(2868), - [anon_sym_const] = ACTIONS(2868), - [anon_sym_volatile] = ACTIONS(2868), - [anon_sym_restrict] = ACTIONS(2868), - [anon_sym__Atomic] = ACTIONS(2868), - [anon_sym_mutable] = ACTIONS(2868), - [anon_sym_constexpr] = ACTIONS(2868), - [anon_sym_constinit] = ACTIONS(2868), - [anon_sym_consteval] = ACTIONS(2868), - [anon_sym_signed] = ACTIONS(2868), - [anon_sym_unsigned] = ACTIONS(2868), - [anon_sym_long] = ACTIONS(2868), - [anon_sym_short] = ACTIONS(2868), - [sym_primitive_type] = ACTIONS(2868), - [anon_sym_enum] = ACTIONS(2868), - [anon_sym_class] = 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_return] = ACTIONS(2868), - [anon_sym_break] = ACTIONS(2868), - [anon_sym_continue] = ACTIONS(2868), - [anon_sym_goto] = ACTIONS(2868), - [anon_sym_not] = ACTIONS(2868), - [anon_sym_compl] = ACTIONS(2868), - [anon_sym_DASH_DASH] = ACTIONS(2870), - [anon_sym_PLUS_PLUS] = ACTIONS(2870), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2870), - [anon_sym_u_DQUOTE] = ACTIONS(2870), - [anon_sym_U_DQUOTE] = ACTIONS(2870), - [anon_sym_u8_DQUOTE] = ACTIONS(2870), - [anon_sym_DQUOTE] = ACTIONS(2870), - [sym_true] = ACTIONS(2868), - [sym_false] = ACTIONS(2868), - [sym_null] = ACTIONS(2868), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2868), - [anon_sym_decltype] = ACTIONS(2868), - [anon_sym_virtual] = ACTIONS(2868), - [anon_sym_explicit] = ACTIONS(2868), - [anon_sym_typename] = ACTIONS(2868), - [anon_sym_template] = ACTIONS(2868), - [anon_sym_operator] = ACTIONS(2868), - [anon_sym_try] = ACTIONS(2868), - [anon_sym_delete] = ACTIONS(2868), - [anon_sym_throw] = ACTIONS(2868), - [anon_sym_namespace] = ACTIONS(2868), - [anon_sym_using] = ACTIONS(2868), - [anon_sym_static_assert] = ACTIONS(2868), - [anon_sym_concept] = ACTIONS(2868), - [anon_sym_co_return] = ACTIONS(2868), - [anon_sym_co_yield] = ACTIONS(2868), - [anon_sym_R_DQUOTE] = ACTIONS(2870), - [anon_sym_LR_DQUOTE] = ACTIONS(2870), - [anon_sym_uR_DQUOTE] = ACTIONS(2870), - [anon_sym_UR_DQUOTE] = ACTIONS(2870), - [anon_sym_u8R_DQUOTE] = ACTIONS(2870), - [anon_sym_co_await] = ACTIONS(2868), - [anon_sym_new] = ACTIONS(2868), - [anon_sym_requires] = ACTIONS(2868), - [sym_this] = ACTIONS(2868), - [sym_nullptr] = ACTIONS(2868), + [929] = { + [sym_identifier] = ACTIONS(2920), + [aux_sym_preproc_include_token1] = ACTIONS(2920), + [aux_sym_preproc_def_token1] = ACTIONS(2920), + [aux_sym_preproc_if_token1] = ACTIONS(2920), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2920), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2920), + [sym_preproc_directive] = ACTIONS(2920), + [anon_sym_LPAREN2] = ACTIONS(2922), + [anon_sym_BANG] = ACTIONS(2922), + [anon_sym_TILDE] = ACTIONS(2922), + [anon_sym_DASH] = ACTIONS(2920), + [anon_sym_PLUS] = ACTIONS(2920), + [anon_sym_STAR] = ACTIONS(2922), + [anon_sym_AMP_AMP] = ACTIONS(2922), + [anon_sym_AMP] = ACTIONS(2920), + [anon_sym_SEMI] = ACTIONS(2922), + [anon_sym_typedef] = ACTIONS(2920), + [anon_sym_extern] = ACTIONS(2920), + [anon_sym___attribute__] = ACTIONS(2920), + [anon_sym_COLON_COLON] = ACTIONS(2922), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2922), + [anon_sym___declspec] = ACTIONS(2920), + [anon_sym___based] = ACTIONS(2920), + [anon_sym___cdecl] = ACTIONS(2920), + [anon_sym___clrcall] = ACTIONS(2920), + [anon_sym___stdcall] = ACTIONS(2920), + [anon_sym___fastcall] = ACTIONS(2920), + [anon_sym___thiscall] = ACTIONS(2920), + [anon_sym___vectorcall] = ACTIONS(2920), + [anon_sym_LBRACE] = ACTIONS(2922), + [anon_sym_RBRACE] = ACTIONS(2922), + [anon_sym_LBRACK] = ACTIONS(2920), + [anon_sym_static] = ACTIONS(2920), + [anon_sym_register] = ACTIONS(2920), + [anon_sym_inline] = ACTIONS(2920), + [anon_sym_thread_local] = ACTIONS(2920), + [anon_sym_const] = ACTIONS(2920), + [anon_sym_constexpr] = ACTIONS(2920), + [anon_sym_volatile] = ACTIONS(2920), + [anon_sym_restrict] = ACTIONS(2920), + [anon_sym___restrict__] = ACTIONS(2920), + [anon_sym__Atomic] = ACTIONS(2920), + [anon_sym__Noreturn] = ACTIONS(2920), + [anon_sym_noreturn] = ACTIONS(2920), + [anon_sym_mutable] = ACTIONS(2920), + [anon_sym_constinit] = ACTIONS(2920), + [anon_sym_consteval] = ACTIONS(2920), + [anon_sym_signed] = ACTIONS(2920), + [anon_sym_unsigned] = ACTIONS(2920), + [anon_sym_long] = ACTIONS(2920), + [anon_sym_short] = ACTIONS(2920), + [sym_primitive_type] = ACTIONS(2920), + [anon_sym_enum] = ACTIONS(2920), + [anon_sym_class] = ACTIONS(2920), + [anon_sym_struct] = ACTIONS(2920), + [anon_sym_union] = ACTIONS(2920), + [anon_sym_if] = ACTIONS(2920), + [anon_sym_else] = ACTIONS(2920), + [anon_sym_switch] = ACTIONS(2920), + [anon_sym_case] = ACTIONS(2920), + [anon_sym_default] = ACTIONS(2920), + [anon_sym_while] = ACTIONS(2920), + [anon_sym_do] = ACTIONS(2920), + [anon_sym_for] = ACTIONS(2920), + [anon_sym_return] = ACTIONS(2920), + [anon_sym_break] = ACTIONS(2920), + [anon_sym_continue] = ACTIONS(2920), + [anon_sym_goto] = ACTIONS(2920), + [anon_sym_not] = ACTIONS(2920), + [anon_sym_compl] = ACTIONS(2920), + [anon_sym_DASH_DASH] = ACTIONS(2922), + [anon_sym_PLUS_PLUS] = ACTIONS(2922), + [anon_sym_sizeof] = ACTIONS(2920), + [anon_sym_offsetof] = ACTIONS(2920), + [anon_sym__Generic] = ACTIONS(2920), + [anon_sym_asm] = ACTIONS(2920), + [anon_sym___asm__] = ACTIONS(2920), + [sym_number_literal] = ACTIONS(2922), + [anon_sym_L_SQUOTE] = ACTIONS(2922), + [anon_sym_u_SQUOTE] = ACTIONS(2922), + [anon_sym_U_SQUOTE] = ACTIONS(2922), + [anon_sym_u8_SQUOTE] = ACTIONS(2922), + [anon_sym_SQUOTE] = ACTIONS(2922), + [anon_sym_L_DQUOTE] = ACTIONS(2922), + [anon_sym_u_DQUOTE] = ACTIONS(2922), + [anon_sym_U_DQUOTE] = ACTIONS(2922), + [anon_sym_u8_DQUOTE] = ACTIONS(2922), + [anon_sym_DQUOTE] = ACTIONS(2922), + [sym_true] = ACTIONS(2920), + [sym_false] = ACTIONS(2920), + [anon_sym_NULL] = ACTIONS(2920), + [anon_sym_nullptr] = ACTIONS(2920), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2920), + [anon_sym_decltype] = ACTIONS(2920), + [anon_sym_virtual] = ACTIONS(2920), + [anon_sym_explicit] = ACTIONS(2920), + [anon_sym_typename] = ACTIONS(2920), + [anon_sym_template] = ACTIONS(2920), + [anon_sym_operator] = ACTIONS(2920), + [anon_sym_try] = ACTIONS(2920), + [anon_sym_delete] = ACTIONS(2920), + [anon_sym_throw] = ACTIONS(2920), + [anon_sym_namespace] = ACTIONS(2920), + [anon_sym_using] = ACTIONS(2920), + [anon_sym_static_assert] = ACTIONS(2920), + [anon_sym_concept] = ACTIONS(2920), + [anon_sym_co_return] = ACTIONS(2920), + [anon_sym_co_yield] = ACTIONS(2920), + [anon_sym_R_DQUOTE] = ACTIONS(2922), + [anon_sym_LR_DQUOTE] = ACTIONS(2922), + [anon_sym_uR_DQUOTE] = ACTIONS(2922), + [anon_sym_UR_DQUOTE] = ACTIONS(2922), + [anon_sym_u8R_DQUOTE] = ACTIONS(2922), + [anon_sym_co_await] = ACTIONS(2920), + [anon_sym_new] = ACTIONS(2920), + [anon_sym_requires] = ACTIONS(2920), + [sym_this] = ACTIONS(2920), }, - [978] = { - [ts_builtin_sym_end] = ACTIONS(2684), - [sym_identifier] = ACTIONS(2682), - [aux_sym_preproc_include_token1] = ACTIONS(2682), - [aux_sym_preproc_def_token1] = ACTIONS(2682), - [aux_sym_preproc_if_token1] = ACTIONS(2682), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2682), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2682), - [sym_preproc_directive] = ACTIONS(2682), - [anon_sym_LPAREN2] = ACTIONS(2684), - [anon_sym_BANG] = ACTIONS(2684), - [anon_sym_TILDE] = ACTIONS(2684), - [anon_sym_DASH] = ACTIONS(2682), - [anon_sym_PLUS] = ACTIONS(2682), - [anon_sym_STAR] = ACTIONS(2684), - [anon_sym_AMP_AMP] = ACTIONS(2684), - [anon_sym_AMP] = ACTIONS(2682), - [anon_sym_SEMI] = ACTIONS(2684), - [anon_sym_typedef] = ACTIONS(2682), - [anon_sym_extern] = ACTIONS(2682), - [anon_sym___attribute__] = ACTIONS(2682), - [anon_sym_COLON_COLON] = ACTIONS(2684), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2684), - [anon_sym___declspec] = ACTIONS(2682), - [anon_sym___based] = ACTIONS(2682), - [anon_sym___cdecl] = ACTIONS(2682), - [anon_sym___clrcall] = ACTIONS(2682), - [anon_sym___stdcall] = ACTIONS(2682), - [anon_sym___fastcall] = ACTIONS(2682), - [anon_sym___thiscall] = ACTIONS(2682), - [anon_sym___vectorcall] = ACTIONS(2682), - [anon_sym_LBRACE] = ACTIONS(2684), - [anon_sym_LBRACK] = ACTIONS(2682), - [anon_sym_static] = ACTIONS(2682), - [anon_sym_register] = ACTIONS(2682), - [anon_sym_inline] = ACTIONS(2682), - [anon_sym_thread_local] = ACTIONS(2682), - [anon_sym_const] = ACTIONS(2682), - [anon_sym_volatile] = ACTIONS(2682), - [anon_sym_restrict] = ACTIONS(2682), - [anon_sym__Atomic] = ACTIONS(2682), - [anon_sym_mutable] = ACTIONS(2682), - [anon_sym_constexpr] = ACTIONS(2682), - [anon_sym_constinit] = ACTIONS(2682), - [anon_sym_consteval] = ACTIONS(2682), - [anon_sym_signed] = ACTIONS(2682), - [anon_sym_unsigned] = ACTIONS(2682), - [anon_sym_long] = ACTIONS(2682), - [anon_sym_short] = ACTIONS(2682), - [sym_primitive_type] = ACTIONS(2682), - [anon_sym_enum] = ACTIONS(2682), - [anon_sym_class] = ACTIONS(2682), - [anon_sym_struct] = ACTIONS(2682), - [anon_sym_union] = ACTIONS(2682), - [anon_sym_if] = ACTIONS(2682), - [anon_sym_switch] = ACTIONS(2682), - [anon_sym_case] = ACTIONS(2682), - [anon_sym_default] = ACTIONS(2682), - [anon_sym_while] = ACTIONS(2682), - [anon_sym_do] = ACTIONS(2682), - [anon_sym_for] = ACTIONS(2682), - [anon_sym_return] = ACTIONS(2682), - [anon_sym_break] = ACTIONS(2682), - [anon_sym_continue] = ACTIONS(2682), - [anon_sym_goto] = ACTIONS(2682), - [anon_sym_not] = ACTIONS(2682), - [anon_sym_compl] = ACTIONS(2682), - [anon_sym_DASH_DASH] = ACTIONS(2684), - [anon_sym_PLUS_PLUS] = ACTIONS(2684), - [anon_sym_sizeof] = ACTIONS(2682), - [sym_number_literal] = ACTIONS(2684), - [anon_sym_L_SQUOTE] = ACTIONS(2684), - [anon_sym_u_SQUOTE] = ACTIONS(2684), - [anon_sym_U_SQUOTE] = ACTIONS(2684), - [anon_sym_u8_SQUOTE] = ACTIONS(2684), - [anon_sym_SQUOTE] = ACTIONS(2684), - [anon_sym_L_DQUOTE] = ACTIONS(2684), - [anon_sym_u_DQUOTE] = ACTIONS(2684), - [anon_sym_U_DQUOTE] = ACTIONS(2684), - [anon_sym_u8_DQUOTE] = ACTIONS(2684), - [anon_sym_DQUOTE] = ACTIONS(2684), - [sym_true] = ACTIONS(2682), - [sym_false] = ACTIONS(2682), - [sym_null] = ACTIONS(2682), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2682), - [anon_sym_decltype] = ACTIONS(2682), - [anon_sym_virtual] = ACTIONS(2682), - [anon_sym_explicit] = ACTIONS(2682), - [anon_sym_typename] = ACTIONS(2682), - [anon_sym_template] = ACTIONS(2682), - [anon_sym_operator] = ACTIONS(2682), - [anon_sym_try] = ACTIONS(2682), - [anon_sym_delete] = ACTIONS(2682), - [anon_sym_throw] = ACTIONS(2682), - [anon_sym_namespace] = ACTIONS(2682), - [anon_sym_using] = ACTIONS(2682), - [anon_sym_static_assert] = ACTIONS(2682), - [anon_sym_concept] = ACTIONS(2682), - [anon_sym_co_return] = ACTIONS(2682), - [anon_sym_co_yield] = ACTIONS(2682), - [anon_sym_R_DQUOTE] = ACTIONS(2684), - [anon_sym_LR_DQUOTE] = ACTIONS(2684), - [anon_sym_uR_DQUOTE] = ACTIONS(2684), - [anon_sym_UR_DQUOTE] = ACTIONS(2684), - [anon_sym_u8R_DQUOTE] = ACTIONS(2684), - [anon_sym_co_await] = ACTIONS(2682), - [anon_sym_new] = ACTIONS(2682), - [anon_sym_requires] = ACTIONS(2682), - [sym_this] = ACTIONS(2682), - [sym_nullptr] = ACTIONS(2682), + [930] = { + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_RBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, - [979] = { - [sym_identifier] = ACTIONS(2872), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2874), - [anon_sym_AMP] = ACTIONS(2872), - [anon_sym_SEMI] = ACTIONS(2874), - [anon_sym_typedef] = ACTIONS(2872), - [anon_sym_extern] = ACTIONS(2872), - [anon_sym___attribute__] = ACTIONS(2872), - [anon_sym_COLON_COLON] = ACTIONS(2874), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2874), - [anon_sym___declspec] = ACTIONS(2872), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2872), - [anon_sym_static] = ACTIONS(2872), - [anon_sym_register] = ACTIONS(2872), - [anon_sym_inline] = ACTIONS(2872), - [anon_sym_thread_local] = ACTIONS(2872), - [anon_sym_const] = ACTIONS(2872), - [anon_sym_volatile] = ACTIONS(2872), - [anon_sym_restrict] = ACTIONS(2872), - [anon_sym__Atomic] = ACTIONS(2872), - [anon_sym_mutable] = ACTIONS(2872), - [anon_sym_constexpr] = ACTIONS(2872), - [anon_sym_constinit] = ACTIONS(2872), - [anon_sym_consteval] = ACTIONS(2872), - [anon_sym_signed] = ACTIONS(2872), - [anon_sym_unsigned] = ACTIONS(2872), - [anon_sym_long] = ACTIONS(2872), - [anon_sym_short] = ACTIONS(2872), - [sym_primitive_type] = ACTIONS(2872), - [anon_sym_enum] = ACTIONS(2872), - [anon_sym_class] = 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_return] = ACTIONS(2872), - [anon_sym_break] = ACTIONS(2872), - [anon_sym_continue] = ACTIONS(2872), - [anon_sym_goto] = ACTIONS(2872), - [anon_sym_not] = ACTIONS(2872), - [anon_sym_compl] = ACTIONS(2872), - [anon_sym_DASH_DASH] = ACTIONS(2874), - [anon_sym_PLUS_PLUS] = ACTIONS(2874), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2874), - [anon_sym_u_DQUOTE] = ACTIONS(2874), - [anon_sym_U_DQUOTE] = ACTIONS(2874), - [anon_sym_u8_DQUOTE] = ACTIONS(2874), - [anon_sym_DQUOTE] = ACTIONS(2874), - [sym_true] = ACTIONS(2872), - [sym_false] = ACTIONS(2872), - [sym_null] = ACTIONS(2872), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2872), - [anon_sym_decltype] = ACTIONS(2872), - [anon_sym_virtual] = ACTIONS(2872), - [anon_sym_explicit] = ACTIONS(2872), - [anon_sym_typename] = ACTIONS(2872), - [anon_sym_template] = ACTIONS(2872), - [anon_sym_operator] = ACTIONS(2872), - [anon_sym_try] = ACTIONS(2872), - [anon_sym_delete] = ACTIONS(2872), - [anon_sym_throw] = ACTIONS(2872), - [anon_sym_namespace] = ACTIONS(2872), - [anon_sym_using] = ACTIONS(2872), - [anon_sym_static_assert] = ACTIONS(2872), - [anon_sym_concept] = ACTIONS(2872), - [anon_sym_co_return] = ACTIONS(2872), - [anon_sym_co_yield] = ACTIONS(2872), - [anon_sym_R_DQUOTE] = ACTIONS(2874), - [anon_sym_LR_DQUOTE] = ACTIONS(2874), - [anon_sym_uR_DQUOTE] = ACTIONS(2874), - [anon_sym_UR_DQUOTE] = ACTIONS(2874), - [anon_sym_u8R_DQUOTE] = ACTIONS(2874), - [anon_sym_co_await] = ACTIONS(2872), - [anon_sym_new] = ACTIONS(2872), - [anon_sym_requires] = ACTIONS(2872), - [sym_this] = ACTIONS(2872), - [sym_nullptr] = ACTIONS(2872), + [931] = { + [ts_builtin_sym_end] = ACTIONS(3034), + [sym_identifier] = ACTIONS(3032), + [aux_sym_preproc_include_token1] = ACTIONS(3032), + [aux_sym_preproc_def_token1] = ACTIONS(3032), + [aux_sym_preproc_if_token1] = ACTIONS(3032), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3032), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3032), + [sym_preproc_directive] = ACTIONS(3032), + [anon_sym_LPAREN2] = ACTIONS(3034), + [anon_sym_BANG] = ACTIONS(3034), + [anon_sym_TILDE] = ACTIONS(3034), + [anon_sym_DASH] = ACTIONS(3032), + [anon_sym_PLUS] = ACTIONS(3032), + [anon_sym_STAR] = ACTIONS(3034), + [anon_sym_AMP_AMP] = ACTIONS(3034), + [anon_sym_AMP] = ACTIONS(3032), + [anon_sym_SEMI] = ACTIONS(3034), + [anon_sym_typedef] = ACTIONS(3032), + [anon_sym_extern] = ACTIONS(3032), + [anon_sym___attribute__] = ACTIONS(3032), + [anon_sym_COLON_COLON] = ACTIONS(3034), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3034), + [anon_sym___declspec] = ACTIONS(3032), + [anon_sym___based] = ACTIONS(3032), + [anon_sym___cdecl] = ACTIONS(3032), + [anon_sym___clrcall] = ACTIONS(3032), + [anon_sym___stdcall] = ACTIONS(3032), + [anon_sym___fastcall] = ACTIONS(3032), + [anon_sym___thiscall] = ACTIONS(3032), + [anon_sym___vectorcall] = ACTIONS(3032), + [anon_sym_LBRACE] = ACTIONS(3034), + [anon_sym_LBRACK] = ACTIONS(3032), + [anon_sym_static] = ACTIONS(3032), + [anon_sym_register] = ACTIONS(3032), + [anon_sym_inline] = ACTIONS(3032), + [anon_sym_thread_local] = ACTIONS(3032), + [anon_sym_const] = ACTIONS(3032), + [anon_sym_constexpr] = ACTIONS(3032), + [anon_sym_volatile] = ACTIONS(3032), + [anon_sym_restrict] = ACTIONS(3032), + [anon_sym___restrict__] = ACTIONS(3032), + [anon_sym__Atomic] = ACTIONS(3032), + [anon_sym__Noreturn] = ACTIONS(3032), + [anon_sym_noreturn] = ACTIONS(3032), + [anon_sym_mutable] = ACTIONS(3032), + [anon_sym_constinit] = ACTIONS(3032), + [anon_sym_consteval] = ACTIONS(3032), + [anon_sym_signed] = ACTIONS(3032), + [anon_sym_unsigned] = ACTIONS(3032), + [anon_sym_long] = ACTIONS(3032), + [anon_sym_short] = ACTIONS(3032), + [sym_primitive_type] = ACTIONS(3032), + [anon_sym_enum] = ACTIONS(3032), + [anon_sym_class] = ACTIONS(3032), + [anon_sym_struct] = ACTIONS(3032), + [anon_sym_union] = ACTIONS(3032), + [anon_sym_if] = ACTIONS(3032), + [anon_sym_else] = ACTIONS(3032), + [anon_sym_switch] = ACTIONS(3032), + [anon_sym_case] = ACTIONS(3032), + [anon_sym_default] = ACTIONS(3032), + [anon_sym_while] = ACTIONS(3032), + [anon_sym_do] = ACTIONS(3032), + [anon_sym_for] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3032), + [anon_sym_break] = ACTIONS(3032), + [anon_sym_continue] = ACTIONS(3032), + [anon_sym_goto] = ACTIONS(3032), + [anon_sym_not] = ACTIONS(3032), + [anon_sym_compl] = ACTIONS(3032), + [anon_sym_DASH_DASH] = ACTIONS(3034), + [anon_sym_PLUS_PLUS] = ACTIONS(3034), + [anon_sym_sizeof] = ACTIONS(3032), + [anon_sym_offsetof] = ACTIONS(3032), + [anon_sym__Generic] = ACTIONS(3032), + [anon_sym_asm] = ACTIONS(3032), + [anon_sym___asm__] = ACTIONS(3032), + [sym_number_literal] = ACTIONS(3034), + [anon_sym_L_SQUOTE] = ACTIONS(3034), + [anon_sym_u_SQUOTE] = ACTIONS(3034), + [anon_sym_U_SQUOTE] = ACTIONS(3034), + [anon_sym_u8_SQUOTE] = ACTIONS(3034), + [anon_sym_SQUOTE] = ACTIONS(3034), + [anon_sym_L_DQUOTE] = ACTIONS(3034), + [anon_sym_u_DQUOTE] = ACTIONS(3034), + [anon_sym_U_DQUOTE] = ACTIONS(3034), + [anon_sym_u8_DQUOTE] = ACTIONS(3034), + [anon_sym_DQUOTE] = ACTIONS(3034), + [sym_true] = ACTIONS(3032), + [sym_false] = ACTIONS(3032), + [anon_sym_NULL] = ACTIONS(3032), + [anon_sym_nullptr] = ACTIONS(3032), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3032), + [anon_sym_decltype] = ACTIONS(3032), + [anon_sym_virtual] = ACTIONS(3032), + [anon_sym_explicit] = ACTIONS(3032), + [anon_sym_typename] = ACTIONS(3032), + [anon_sym_template] = ACTIONS(3032), + [anon_sym_operator] = ACTIONS(3032), + [anon_sym_try] = ACTIONS(3032), + [anon_sym_delete] = ACTIONS(3032), + [anon_sym_throw] = ACTIONS(3032), + [anon_sym_namespace] = ACTIONS(3032), + [anon_sym_using] = ACTIONS(3032), + [anon_sym_static_assert] = ACTIONS(3032), + [anon_sym_concept] = ACTIONS(3032), + [anon_sym_co_return] = ACTIONS(3032), + [anon_sym_co_yield] = ACTIONS(3032), + [anon_sym_R_DQUOTE] = ACTIONS(3034), + [anon_sym_LR_DQUOTE] = ACTIONS(3034), + [anon_sym_uR_DQUOTE] = ACTIONS(3034), + [anon_sym_UR_DQUOTE] = ACTIONS(3034), + [anon_sym_u8R_DQUOTE] = ACTIONS(3034), + [anon_sym_co_await] = ACTIONS(3032), + [anon_sym_new] = ACTIONS(3032), + [anon_sym_requires] = ACTIONS(3032), + [sym_this] = ACTIONS(3032), }, - [980] = { - [sym_identifier] = ACTIONS(2876), - [aux_sym_preproc_include_token1] = ACTIONS(2876), - [aux_sym_preproc_def_token1] = ACTIONS(2876), - [aux_sym_preproc_if_token1] = ACTIONS(2876), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2876), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2876), - [sym_preproc_directive] = ACTIONS(2876), - [anon_sym_LPAREN2] = ACTIONS(2878), - [anon_sym_BANG] = ACTIONS(2878), - [anon_sym_TILDE] = ACTIONS(2878), - [anon_sym_DASH] = ACTIONS(2876), - [anon_sym_PLUS] = ACTIONS(2876), - [anon_sym_STAR] = ACTIONS(2878), - [anon_sym_AMP_AMP] = ACTIONS(2878), - [anon_sym_AMP] = ACTIONS(2876), - [anon_sym_SEMI] = ACTIONS(2878), - [anon_sym_typedef] = ACTIONS(2876), - [anon_sym_extern] = ACTIONS(2876), - [anon_sym___attribute__] = ACTIONS(2876), - [anon_sym_COLON_COLON] = ACTIONS(2878), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2878), - [anon_sym___declspec] = ACTIONS(2876), - [anon_sym___based] = ACTIONS(2876), - [anon_sym___cdecl] = ACTIONS(2876), - [anon_sym___clrcall] = ACTIONS(2876), - [anon_sym___stdcall] = ACTIONS(2876), - [anon_sym___fastcall] = ACTIONS(2876), - [anon_sym___thiscall] = ACTIONS(2876), - [anon_sym___vectorcall] = ACTIONS(2876), - [anon_sym_LBRACE] = ACTIONS(2878), - [anon_sym_RBRACE] = ACTIONS(2878), - [anon_sym_LBRACK] = ACTIONS(2876), - [anon_sym_static] = ACTIONS(2876), - [anon_sym_register] = ACTIONS(2876), - [anon_sym_inline] = ACTIONS(2876), - [anon_sym_thread_local] = ACTIONS(2876), - [anon_sym_const] = ACTIONS(2876), - [anon_sym_volatile] = ACTIONS(2876), - [anon_sym_restrict] = ACTIONS(2876), - [anon_sym__Atomic] = ACTIONS(2876), - [anon_sym_mutable] = ACTIONS(2876), - [anon_sym_constexpr] = ACTIONS(2876), - [anon_sym_constinit] = ACTIONS(2876), - [anon_sym_consteval] = ACTIONS(2876), - [anon_sym_signed] = ACTIONS(2876), - [anon_sym_unsigned] = ACTIONS(2876), - [anon_sym_long] = ACTIONS(2876), - [anon_sym_short] = ACTIONS(2876), - [sym_primitive_type] = ACTIONS(2876), - [anon_sym_enum] = ACTIONS(2876), - [anon_sym_class] = ACTIONS(2876), - [anon_sym_struct] = ACTIONS(2876), - [anon_sym_union] = ACTIONS(2876), - [anon_sym_if] = ACTIONS(2876), - [anon_sym_switch] = ACTIONS(2876), - [anon_sym_case] = ACTIONS(2876), - [anon_sym_default] = ACTIONS(2876), - [anon_sym_while] = ACTIONS(2876), - [anon_sym_do] = ACTIONS(2876), - [anon_sym_for] = ACTIONS(2876), - [anon_sym_return] = ACTIONS(2876), - [anon_sym_break] = ACTIONS(2876), - [anon_sym_continue] = ACTIONS(2876), - [anon_sym_goto] = ACTIONS(2876), - [anon_sym_not] = ACTIONS(2876), - [anon_sym_compl] = ACTIONS(2876), - [anon_sym_DASH_DASH] = ACTIONS(2878), - [anon_sym_PLUS_PLUS] = ACTIONS(2878), - [anon_sym_sizeof] = ACTIONS(2876), - [sym_number_literal] = ACTIONS(2878), - [anon_sym_L_SQUOTE] = ACTIONS(2878), - [anon_sym_u_SQUOTE] = ACTIONS(2878), - [anon_sym_U_SQUOTE] = ACTIONS(2878), - [anon_sym_u8_SQUOTE] = ACTIONS(2878), - [anon_sym_SQUOTE] = ACTIONS(2878), - [anon_sym_L_DQUOTE] = ACTIONS(2878), - [anon_sym_u_DQUOTE] = ACTIONS(2878), - [anon_sym_U_DQUOTE] = ACTIONS(2878), - [anon_sym_u8_DQUOTE] = ACTIONS(2878), - [anon_sym_DQUOTE] = ACTIONS(2878), - [sym_true] = ACTIONS(2876), - [sym_false] = ACTIONS(2876), - [sym_null] = ACTIONS(2876), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2876), - [anon_sym_decltype] = ACTIONS(2876), - [anon_sym_virtual] = ACTIONS(2876), - [anon_sym_explicit] = ACTIONS(2876), - [anon_sym_typename] = ACTIONS(2876), - [anon_sym_template] = ACTIONS(2876), - [anon_sym_operator] = ACTIONS(2876), - [anon_sym_try] = ACTIONS(2876), - [anon_sym_delete] = ACTIONS(2876), - [anon_sym_throw] = ACTIONS(2876), - [anon_sym_namespace] = ACTIONS(2876), - [anon_sym_using] = ACTIONS(2876), - [anon_sym_static_assert] = ACTIONS(2876), - [anon_sym_concept] = ACTIONS(2876), - [anon_sym_co_return] = ACTIONS(2876), - [anon_sym_co_yield] = ACTIONS(2876), - [anon_sym_R_DQUOTE] = ACTIONS(2878), - [anon_sym_LR_DQUOTE] = ACTIONS(2878), - [anon_sym_uR_DQUOTE] = ACTIONS(2878), - [anon_sym_UR_DQUOTE] = ACTIONS(2878), - [anon_sym_u8R_DQUOTE] = ACTIONS(2878), - [anon_sym_co_await] = ACTIONS(2876), - [anon_sym_new] = ACTIONS(2876), - [anon_sym_requires] = ACTIONS(2876), - [sym_this] = ACTIONS(2876), - [sym_nullptr] = ACTIONS(2876), + [932] = { + [sym_identifier] = ACTIONS(3032), + [aux_sym_preproc_include_token1] = ACTIONS(3032), + [aux_sym_preproc_def_token1] = ACTIONS(3032), + [aux_sym_preproc_if_token1] = ACTIONS(3032), + [aux_sym_preproc_if_token2] = ACTIONS(3032), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3032), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3032), + [sym_preproc_directive] = ACTIONS(3032), + [anon_sym_LPAREN2] = ACTIONS(3034), + [anon_sym_BANG] = ACTIONS(3034), + [anon_sym_TILDE] = ACTIONS(3034), + [anon_sym_DASH] = ACTIONS(3032), + [anon_sym_PLUS] = ACTIONS(3032), + [anon_sym_STAR] = ACTIONS(3034), + [anon_sym_AMP_AMP] = ACTIONS(3034), + [anon_sym_AMP] = ACTIONS(3032), + [anon_sym_SEMI] = ACTIONS(3034), + [anon_sym_typedef] = ACTIONS(3032), + [anon_sym_extern] = ACTIONS(3032), + [anon_sym___attribute__] = ACTIONS(3032), + [anon_sym_COLON_COLON] = ACTIONS(3034), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3034), + [anon_sym___declspec] = ACTIONS(3032), + [anon_sym___based] = ACTIONS(3032), + [anon_sym___cdecl] = ACTIONS(3032), + [anon_sym___clrcall] = ACTIONS(3032), + [anon_sym___stdcall] = ACTIONS(3032), + [anon_sym___fastcall] = ACTIONS(3032), + [anon_sym___thiscall] = ACTIONS(3032), + [anon_sym___vectorcall] = ACTIONS(3032), + [anon_sym_LBRACE] = ACTIONS(3034), + [anon_sym_LBRACK] = ACTIONS(3032), + [anon_sym_static] = ACTIONS(3032), + [anon_sym_register] = ACTIONS(3032), + [anon_sym_inline] = ACTIONS(3032), + [anon_sym_thread_local] = ACTIONS(3032), + [anon_sym_const] = ACTIONS(3032), + [anon_sym_constexpr] = ACTIONS(3032), + [anon_sym_volatile] = ACTIONS(3032), + [anon_sym_restrict] = ACTIONS(3032), + [anon_sym___restrict__] = ACTIONS(3032), + [anon_sym__Atomic] = ACTIONS(3032), + [anon_sym__Noreturn] = ACTIONS(3032), + [anon_sym_noreturn] = ACTIONS(3032), + [anon_sym_mutable] = ACTIONS(3032), + [anon_sym_constinit] = ACTIONS(3032), + [anon_sym_consteval] = ACTIONS(3032), + [anon_sym_signed] = ACTIONS(3032), + [anon_sym_unsigned] = ACTIONS(3032), + [anon_sym_long] = ACTIONS(3032), + [anon_sym_short] = ACTIONS(3032), + [sym_primitive_type] = ACTIONS(3032), + [anon_sym_enum] = ACTIONS(3032), + [anon_sym_class] = ACTIONS(3032), + [anon_sym_struct] = ACTIONS(3032), + [anon_sym_union] = ACTIONS(3032), + [anon_sym_if] = ACTIONS(3032), + [anon_sym_else] = ACTIONS(3032), + [anon_sym_switch] = ACTIONS(3032), + [anon_sym_case] = ACTIONS(3032), + [anon_sym_default] = ACTIONS(3032), + [anon_sym_while] = ACTIONS(3032), + [anon_sym_do] = ACTIONS(3032), + [anon_sym_for] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3032), + [anon_sym_break] = ACTIONS(3032), + [anon_sym_continue] = ACTIONS(3032), + [anon_sym_goto] = ACTIONS(3032), + [anon_sym_not] = ACTIONS(3032), + [anon_sym_compl] = ACTIONS(3032), + [anon_sym_DASH_DASH] = ACTIONS(3034), + [anon_sym_PLUS_PLUS] = ACTIONS(3034), + [anon_sym_sizeof] = ACTIONS(3032), + [anon_sym_offsetof] = ACTIONS(3032), + [anon_sym__Generic] = ACTIONS(3032), + [anon_sym_asm] = ACTIONS(3032), + [anon_sym___asm__] = ACTIONS(3032), + [sym_number_literal] = ACTIONS(3034), + [anon_sym_L_SQUOTE] = ACTIONS(3034), + [anon_sym_u_SQUOTE] = ACTIONS(3034), + [anon_sym_U_SQUOTE] = ACTIONS(3034), + [anon_sym_u8_SQUOTE] = ACTIONS(3034), + [anon_sym_SQUOTE] = ACTIONS(3034), + [anon_sym_L_DQUOTE] = ACTIONS(3034), + [anon_sym_u_DQUOTE] = ACTIONS(3034), + [anon_sym_U_DQUOTE] = ACTIONS(3034), + [anon_sym_u8_DQUOTE] = ACTIONS(3034), + [anon_sym_DQUOTE] = ACTIONS(3034), + [sym_true] = ACTIONS(3032), + [sym_false] = ACTIONS(3032), + [anon_sym_NULL] = ACTIONS(3032), + [anon_sym_nullptr] = ACTIONS(3032), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3032), + [anon_sym_decltype] = ACTIONS(3032), + [anon_sym_virtual] = ACTIONS(3032), + [anon_sym_explicit] = ACTIONS(3032), + [anon_sym_typename] = ACTIONS(3032), + [anon_sym_template] = ACTIONS(3032), + [anon_sym_operator] = ACTIONS(3032), + [anon_sym_try] = ACTIONS(3032), + [anon_sym_delete] = ACTIONS(3032), + [anon_sym_throw] = ACTIONS(3032), + [anon_sym_namespace] = ACTIONS(3032), + [anon_sym_using] = ACTIONS(3032), + [anon_sym_static_assert] = ACTIONS(3032), + [anon_sym_concept] = ACTIONS(3032), + [anon_sym_co_return] = ACTIONS(3032), + [anon_sym_co_yield] = ACTIONS(3032), + [anon_sym_R_DQUOTE] = ACTIONS(3034), + [anon_sym_LR_DQUOTE] = ACTIONS(3034), + [anon_sym_uR_DQUOTE] = ACTIONS(3034), + [anon_sym_UR_DQUOTE] = ACTIONS(3034), + [anon_sym_u8R_DQUOTE] = ACTIONS(3034), + [anon_sym_co_await] = ACTIONS(3032), + [anon_sym_new] = ACTIONS(3032), + [anon_sym_requires] = ACTIONS(3032), + [sym_this] = ACTIONS(3032), }, - [981] = { - [sym_identifier] = ACTIONS(2682), - [aux_sym_preproc_include_token1] = ACTIONS(2682), - [aux_sym_preproc_def_token1] = ACTIONS(2682), - [aux_sym_preproc_if_token1] = ACTIONS(2682), - [aux_sym_preproc_if_token2] = ACTIONS(2682), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2682), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2682), - [sym_preproc_directive] = ACTIONS(2682), - [anon_sym_LPAREN2] = ACTIONS(2684), - [anon_sym_BANG] = ACTIONS(2684), - [anon_sym_TILDE] = ACTIONS(2684), - [anon_sym_DASH] = ACTIONS(2682), - [anon_sym_PLUS] = ACTIONS(2682), - [anon_sym_STAR] = ACTIONS(2684), - [anon_sym_AMP_AMP] = ACTIONS(2684), - [anon_sym_AMP] = ACTIONS(2682), - [anon_sym_SEMI] = ACTIONS(2684), - [anon_sym_typedef] = ACTIONS(2682), - [anon_sym_extern] = ACTIONS(2682), - [anon_sym___attribute__] = ACTIONS(2682), - [anon_sym_COLON_COLON] = ACTIONS(2684), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2684), - [anon_sym___declspec] = ACTIONS(2682), - [anon_sym___based] = ACTIONS(2682), - [anon_sym___cdecl] = ACTIONS(2682), - [anon_sym___clrcall] = ACTIONS(2682), - [anon_sym___stdcall] = ACTIONS(2682), - [anon_sym___fastcall] = ACTIONS(2682), - [anon_sym___thiscall] = ACTIONS(2682), - [anon_sym___vectorcall] = ACTIONS(2682), - [anon_sym_LBRACE] = ACTIONS(2684), - [anon_sym_LBRACK] = ACTIONS(2682), - [anon_sym_static] = ACTIONS(2682), - [anon_sym_register] = ACTIONS(2682), - [anon_sym_inline] = ACTIONS(2682), - [anon_sym_thread_local] = ACTIONS(2682), - [anon_sym_const] = ACTIONS(2682), - [anon_sym_volatile] = ACTIONS(2682), - [anon_sym_restrict] = ACTIONS(2682), - [anon_sym__Atomic] = ACTIONS(2682), - [anon_sym_mutable] = ACTIONS(2682), - [anon_sym_constexpr] = ACTIONS(2682), - [anon_sym_constinit] = ACTIONS(2682), - [anon_sym_consteval] = ACTIONS(2682), - [anon_sym_signed] = ACTIONS(2682), - [anon_sym_unsigned] = ACTIONS(2682), - [anon_sym_long] = ACTIONS(2682), - [anon_sym_short] = ACTIONS(2682), - [sym_primitive_type] = ACTIONS(2682), - [anon_sym_enum] = ACTIONS(2682), - [anon_sym_class] = ACTIONS(2682), - [anon_sym_struct] = ACTIONS(2682), - [anon_sym_union] = ACTIONS(2682), - [anon_sym_if] = ACTIONS(2682), - [anon_sym_switch] = ACTIONS(2682), - [anon_sym_case] = ACTIONS(2682), - [anon_sym_default] = ACTIONS(2682), - [anon_sym_while] = ACTIONS(2682), - [anon_sym_do] = ACTIONS(2682), - [anon_sym_for] = ACTIONS(2682), - [anon_sym_return] = ACTIONS(2682), - [anon_sym_break] = ACTIONS(2682), - [anon_sym_continue] = ACTIONS(2682), - [anon_sym_goto] = ACTIONS(2682), - [anon_sym_not] = ACTIONS(2682), - [anon_sym_compl] = ACTIONS(2682), - [anon_sym_DASH_DASH] = ACTIONS(2684), - [anon_sym_PLUS_PLUS] = ACTIONS(2684), - [anon_sym_sizeof] = ACTIONS(2682), - [sym_number_literal] = ACTIONS(2684), - [anon_sym_L_SQUOTE] = ACTIONS(2684), - [anon_sym_u_SQUOTE] = ACTIONS(2684), - [anon_sym_U_SQUOTE] = ACTIONS(2684), - [anon_sym_u8_SQUOTE] = ACTIONS(2684), - [anon_sym_SQUOTE] = ACTIONS(2684), - [anon_sym_L_DQUOTE] = ACTIONS(2684), - [anon_sym_u_DQUOTE] = ACTIONS(2684), - [anon_sym_U_DQUOTE] = ACTIONS(2684), - [anon_sym_u8_DQUOTE] = ACTIONS(2684), - [anon_sym_DQUOTE] = ACTIONS(2684), - [sym_true] = ACTIONS(2682), - [sym_false] = ACTIONS(2682), - [sym_null] = ACTIONS(2682), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2682), - [anon_sym_decltype] = ACTIONS(2682), - [anon_sym_virtual] = ACTIONS(2682), - [anon_sym_explicit] = ACTIONS(2682), - [anon_sym_typename] = ACTIONS(2682), - [anon_sym_template] = ACTIONS(2682), - [anon_sym_operator] = ACTIONS(2682), - [anon_sym_try] = ACTIONS(2682), - [anon_sym_delete] = ACTIONS(2682), - [anon_sym_throw] = ACTIONS(2682), - [anon_sym_namespace] = ACTIONS(2682), - [anon_sym_using] = ACTIONS(2682), - [anon_sym_static_assert] = ACTIONS(2682), - [anon_sym_concept] = ACTIONS(2682), - [anon_sym_co_return] = ACTIONS(2682), - [anon_sym_co_yield] = ACTIONS(2682), - [anon_sym_R_DQUOTE] = ACTIONS(2684), - [anon_sym_LR_DQUOTE] = ACTIONS(2684), - [anon_sym_uR_DQUOTE] = ACTIONS(2684), - [anon_sym_UR_DQUOTE] = ACTIONS(2684), - [anon_sym_u8R_DQUOTE] = ACTIONS(2684), - [anon_sym_co_await] = ACTIONS(2682), - [anon_sym_new] = ACTIONS(2682), - [anon_sym_requires] = ACTIONS(2682), - [sym_this] = ACTIONS(2682), - [sym_nullptr] = ACTIONS(2682), + [933] = { + [ts_builtin_sym_end] = ACTIONS(3050), + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, - [982] = { - [sym_identifier] = ACTIONS(2880), - [aux_sym_preproc_include_token1] = ACTIONS(2880), - [aux_sym_preproc_def_token1] = ACTIONS(2880), - [aux_sym_preproc_if_token1] = ACTIONS(2880), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2880), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2880), - [sym_preproc_directive] = ACTIONS(2880), - [anon_sym_LPAREN2] = ACTIONS(2882), - [anon_sym_BANG] = ACTIONS(2882), - [anon_sym_TILDE] = ACTIONS(2882), - [anon_sym_DASH] = ACTIONS(2880), - [anon_sym_PLUS] = ACTIONS(2880), - [anon_sym_STAR] = ACTIONS(2882), - [anon_sym_AMP_AMP] = ACTIONS(2882), - [anon_sym_AMP] = ACTIONS(2880), - [anon_sym_SEMI] = ACTIONS(2882), - [anon_sym_typedef] = ACTIONS(2880), - [anon_sym_extern] = ACTIONS(2880), - [anon_sym___attribute__] = ACTIONS(2880), - [anon_sym_COLON_COLON] = ACTIONS(2882), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2882), - [anon_sym___declspec] = ACTIONS(2880), - [anon_sym___based] = ACTIONS(2880), - [anon_sym___cdecl] = ACTIONS(2880), - [anon_sym___clrcall] = ACTIONS(2880), - [anon_sym___stdcall] = ACTIONS(2880), - [anon_sym___fastcall] = ACTIONS(2880), - [anon_sym___thiscall] = ACTIONS(2880), - [anon_sym___vectorcall] = ACTIONS(2880), - [anon_sym_LBRACE] = ACTIONS(2882), - [anon_sym_RBRACE] = ACTIONS(2882), - [anon_sym_LBRACK] = ACTIONS(2880), - [anon_sym_static] = ACTIONS(2880), - [anon_sym_register] = ACTIONS(2880), - [anon_sym_inline] = ACTIONS(2880), - [anon_sym_thread_local] = ACTIONS(2880), - [anon_sym_const] = ACTIONS(2880), - [anon_sym_volatile] = ACTIONS(2880), - [anon_sym_restrict] = ACTIONS(2880), - [anon_sym__Atomic] = ACTIONS(2880), - [anon_sym_mutable] = ACTIONS(2880), - [anon_sym_constexpr] = ACTIONS(2880), - [anon_sym_constinit] = ACTIONS(2880), - [anon_sym_consteval] = ACTIONS(2880), - [anon_sym_signed] = ACTIONS(2880), - [anon_sym_unsigned] = ACTIONS(2880), - [anon_sym_long] = ACTIONS(2880), - [anon_sym_short] = ACTIONS(2880), - [sym_primitive_type] = ACTIONS(2880), - [anon_sym_enum] = ACTIONS(2880), - [anon_sym_class] = ACTIONS(2880), - [anon_sym_struct] = ACTIONS(2880), - [anon_sym_union] = ACTIONS(2880), - [anon_sym_if] = ACTIONS(2880), - [anon_sym_switch] = ACTIONS(2880), - [anon_sym_case] = ACTIONS(2880), - [anon_sym_default] = ACTIONS(2880), - [anon_sym_while] = ACTIONS(2880), - [anon_sym_do] = ACTIONS(2880), - [anon_sym_for] = ACTIONS(2880), - [anon_sym_return] = ACTIONS(2880), - [anon_sym_break] = ACTIONS(2880), - [anon_sym_continue] = ACTIONS(2880), - [anon_sym_goto] = ACTIONS(2880), - [anon_sym_not] = ACTIONS(2880), - [anon_sym_compl] = ACTIONS(2880), - [anon_sym_DASH_DASH] = ACTIONS(2882), - [anon_sym_PLUS_PLUS] = ACTIONS(2882), - [anon_sym_sizeof] = ACTIONS(2880), - [sym_number_literal] = ACTIONS(2882), - [anon_sym_L_SQUOTE] = ACTIONS(2882), - [anon_sym_u_SQUOTE] = ACTIONS(2882), - [anon_sym_U_SQUOTE] = ACTIONS(2882), - [anon_sym_u8_SQUOTE] = ACTIONS(2882), - [anon_sym_SQUOTE] = ACTIONS(2882), - [anon_sym_L_DQUOTE] = ACTIONS(2882), - [anon_sym_u_DQUOTE] = ACTIONS(2882), - [anon_sym_U_DQUOTE] = ACTIONS(2882), - [anon_sym_u8_DQUOTE] = ACTIONS(2882), - [anon_sym_DQUOTE] = ACTIONS(2882), - [sym_true] = ACTIONS(2880), - [sym_false] = ACTIONS(2880), - [sym_null] = ACTIONS(2880), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2880), - [anon_sym_decltype] = ACTIONS(2880), - [anon_sym_virtual] = ACTIONS(2880), - [anon_sym_explicit] = ACTIONS(2880), - [anon_sym_typename] = ACTIONS(2880), - [anon_sym_template] = ACTIONS(2880), - [anon_sym_operator] = ACTIONS(2880), - [anon_sym_try] = ACTIONS(2880), - [anon_sym_delete] = ACTIONS(2880), - [anon_sym_throw] = ACTIONS(2880), - [anon_sym_namespace] = ACTIONS(2880), - [anon_sym_using] = ACTIONS(2880), - [anon_sym_static_assert] = ACTIONS(2880), - [anon_sym_concept] = ACTIONS(2880), - [anon_sym_co_return] = ACTIONS(2880), - [anon_sym_co_yield] = ACTIONS(2880), - [anon_sym_R_DQUOTE] = ACTIONS(2882), - [anon_sym_LR_DQUOTE] = ACTIONS(2882), - [anon_sym_uR_DQUOTE] = ACTIONS(2882), - [anon_sym_UR_DQUOTE] = ACTIONS(2882), - [anon_sym_u8R_DQUOTE] = ACTIONS(2882), - [anon_sym_co_await] = ACTIONS(2880), - [anon_sym_new] = ACTIONS(2880), - [anon_sym_requires] = ACTIONS(2880), - [sym_this] = ACTIONS(2880), - [sym_nullptr] = ACTIONS(2880), + [934] = { + [ts_builtin_sym_end] = ACTIONS(3050), + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, - [983] = { - [sym_identifier] = ACTIONS(2884), - [aux_sym_preproc_include_token1] = ACTIONS(2884), - [aux_sym_preproc_def_token1] = ACTIONS(2884), - [aux_sym_preproc_if_token1] = ACTIONS(2884), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2884), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2884), - [sym_preproc_directive] = ACTIONS(2884), - [anon_sym_LPAREN2] = ACTIONS(2886), - [anon_sym_BANG] = ACTIONS(2886), - [anon_sym_TILDE] = ACTIONS(2886), - [anon_sym_DASH] = ACTIONS(2884), - [anon_sym_PLUS] = ACTIONS(2884), - [anon_sym_STAR] = ACTIONS(2886), - [anon_sym_AMP_AMP] = ACTIONS(2886), - [anon_sym_AMP] = ACTIONS(2884), - [anon_sym_SEMI] = ACTIONS(2886), - [anon_sym_typedef] = ACTIONS(2884), - [anon_sym_extern] = ACTIONS(2884), - [anon_sym___attribute__] = ACTIONS(2884), - [anon_sym_COLON_COLON] = ACTIONS(2886), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2886), - [anon_sym___declspec] = ACTIONS(2884), - [anon_sym___based] = ACTIONS(2884), - [anon_sym___cdecl] = ACTIONS(2884), - [anon_sym___clrcall] = ACTIONS(2884), - [anon_sym___stdcall] = ACTIONS(2884), - [anon_sym___fastcall] = ACTIONS(2884), - [anon_sym___thiscall] = ACTIONS(2884), - [anon_sym___vectorcall] = ACTIONS(2884), - [anon_sym_LBRACE] = ACTIONS(2886), - [anon_sym_RBRACE] = ACTIONS(2886), - [anon_sym_LBRACK] = ACTIONS(2884), - [anon_sym_static] = ACTIONS(2884), - [anon_sym_register] = ACTIONS(2884), - [anon_sym_inline] = ACTIONS(2884), - [anon_sym_thread_local] = ACTIONS(2884), - [anon_sym_const] = ACTIONS(2884), - [anon_sym_volatile] = ACTIONS(2884), - [anon_sym_restrict] = ACTIONS(2884), - [anon_sym__Atomic] = ACTIONS(2884), - [anon_sym_mutable] = ACTIONS(2884), - [anon_sym_constexpr] = ACTIONS(2884), - [anon_sym_constinit] = ACTIONS(2884), - [anon_sym_consteval] = ACTIONS(2884), - [anon_sym_signed] = ACTIONS(2884), - [anon_sym_unsigned] = ACTIONS(2884), - [anon_sym_long] = ACTIONS(2884), - [anon_sym_short] = ACTIONS(2884), - [sym_primitive_type] = ACTIONS(2884), - [anon_sym_enum] = ACTIONS(2884), - [anon_sym_class] = ACTIONS(2884), - [anon_sym_struct] = ACTIONS(2884), - [anon_sym_union] = ACTIONS(2884), - [anon_sym_if] = ACTIONS(2884), - [anon_sym_switch] = ACTIONS(2884), - [anon_sym_case] = ACTIONS(2884), - [anon_sym_default] = ACTIONS(2884), - [anon_sym_while] = ACTIONS(2884), - [anon_sym_do] = ACTIONS(2884), - [anon_sym_for] = ACTIONS(2884), - [anon_sym_return] = ACTIONS(2884), - [anon_sym_break] = ACTIONS(2884), - [anon_sym_continue] = ACTIONS(2884), - [anon_sym_goto] = ACTIONS(2884), - [anon_sym_not] = ACTIONS(2884), - [anon_sym_compl] = ACTIONS(2884), - [anon_sym_DASH_DASH] = ACTIONS(2886), - [anon_sym_PLUS_PLUS] = ACTIONS(2886), - [anon_sym_sizeof] = ACTIONS(2884), - [sym_number_literal] = ACTIONS(2886), - [anon_sym_L_SQUOTE] = ACTIONS(2886), - [anon_sym_u_SQUOTE] = ACTIONS(2886), - [anon_sym_U_SQUOTE] = ACTIONS(2886), - [anon_sym_u8_SQUOTE] = ACTIONS(2886), - [anon_sym_SQUOTE] = ACTIONS(2886), - [anon_sym_L_DQUOTE] = ACTIONS(2886), - [anon_sym_u_DQUOTE] = ACTIONS(2886), - [anon_sym_U_DQUOTE] = ACTIONS(2886), - [anon_sym_u8_DQUOTE] = ACTIONS(2886), - [anon_sym_DQUOTE] = ACTIONS(2886), - [sym_true] = ACTIONS(2884), - [sym_false] = ACTIONS(2884), - [sym_null] = ACTIONS(2884), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2884), - [anon_sym_decltype] = ACTIONS(2884), - [anon_sym_virtual] = ACTIONS(2884), - [anon_sym_explicit] = ACTIONS(2884), - [anon_sym_typename] = ACTIONS(2884), - [anon_sym_template] = ACTIONS(2884), - [anon_sym_operator] = ACTIONS(2884), - [anon_sym_try] = ACTIONS(2884), - [anon_sym_delete] = ACTIONS(2884), - [anon_sym_throw] = ACTIONS(2884), - [anon_sym_namespace] = ACTIONS(2884), - [anon_sym_using] = ACTIONS(2884), - [anon_sym_static_assert] = ACTIONS(2884), - [anon_sym_concept] = ACTIONS(2884), - [anon_sym_co_return] = ACTIONS(2884), - [anon_sym_co_yield] = ACTIONS(2884), - [anon_sym_R_DQUOTE] = ACTIONS(2886), - [anon_sym_LR_DQUOTE] = ACTIONS(2886), - [anon_sym_uR_DQUOTE] = ACTIONS(2886), - [anon_sym_UR_DQUOTE] = ACTIONS(2886), - [anon_sym_u8R_DQUOTE] = ACTIONS(2886), - [anon_sym_co_await] = ACTIONS(2884), - [anon_sym_new] = ACTIONS(2884), - [anon_sym_requires] = ACTIONS(2884), - [sym_this] = ACTIONS(2884), - [sym_nullptr] = ACTIONS(2884), + [935] = { + [sym_identifier] = ACTIONS(3004), + [aux_sym_preproc_include_token1] = ACTIONS(3004), + [aux_sym_preproc_def_token1] = ACTIONS(3004), + [aux_sym_preproc_if_token1] = ACTIONS(3004), + [aux_sym_preproc_if_token2] = ACTIONS(3004), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3004), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3004), + [sym_preproc_directive] = ACTIONS(3004), + [anon_sym_LPAREN2] = ACTIONS(3006), + [anon_sym_BANG] = ACTIONS(3006), + [anon_sym_TILDE] = ACTIONS(3006), + [anon_sym_DASH] = ACTIONS(3004), + [anon_sym_PLUS] = ACTIONS(3004), + [anon_sym_STAR] = ACTIONS(3006), + [anon_sym_AMP_AMP] = ACTIONS(3006), + [anon_sym_AMP] = ACTIONS(3004), + [anon_sym_SEMI] = ACTIONS(3006), + [anon_sym_typedef] = ACTIONS(3004), + [anon_sym_extern] = ACTIONS(3004), + [anon_sym___attribute__] = ACTIONS(3004), + [anon_sym_COLON_COLON] = ACTIONS(3006), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3006), + [anon_sym___declspec] = ACTIONS(3004), + [anon_sym___based] = ACTIONS(3004), + [anon_sym___cdecl] = ACTIONS(3004), + [anon_sym___clrcall] = ACTIONS(3004), + [anon_sym___stdcall] = ACTIONS(3004), + [anon_sym___fastcall] = ACTIONS(3004), + [anon_sym___thiscall] = ACTIONS(3004), + [anon_sym___vectorcall] = ACTIONS(3004), + [anon_sym_LBRACE] = ACTIONS(3006), + [anon_sym_LBRACK] = ACTIONS(3004), + [anon_sym_static] = ACTIONS(3004), + [anon_sym_register] = ACTIONS(3004), + [anon_sym_inline] = ACTIONS(3004), + [anon_sym_thread_local] = ACTIONS(3004), + [anon_sym_const] = ACTIONS(3004), + [anon_sym_constexpr] = ACTIONS(3004), + [anon_sym_volatile] = ACTIONS(3004), + [anon_sym_restrict] = ACTIONS(3004), + [anon_sym___restrict__] = ACTIONS(3004), + [anon_sym__Atomic] = ACTIONS(3004), + [anon_sym__Noreturn] = ACTIONS(3004), + [anon_sym_noreturn] = ACTIONS(3004), + [anon_sym_mutable] = ACTIONS(3004), + [anon_sym_constinit] = ACTIONS(3004), + [anon_sym_consteval] = ACTIONS(3004), + [anon_sym_signed] = ACTIONS(3004), + [anon_sym_unsigned] = ACTIONS(3004), + [anon_sym_long] = ACTIONS(3004), + [anon_sym_short] = ACTIONS(3004), + [sym_primitive_type] = ACTIONS(3004), + [anon_sym_enum] = ACTIONS(3004), + [anon_sym_class] = ACTIONS(3004), + [anon_sym_struct] = ACTIONS(3004), + [anon_sym_union] = ACTIONS(3004), + [anon_sym_if] = ACTIONS(3004), + [anon_sym_else] = ACTIONS(3004), + [anon_sym_switch] = ACTIONS(3004), + [anon_sym_case] = ACTIONS(3004), + [anon_sym_default] = ACTIONS(3004), + [anon_sym_while] = ACTIONS(3004), + [anon_sym_do] = ACTIONS(3004), + [anon_sym_for] = ACTIONS(3004), + [anon_sym_return] = ACTIONS(3004), + [anon_sym_break] = ACTIONS(3004), + [anon_sym_continue] = ACTIONS(3004), + [anon_sym_goto] = ACTIONS(3004), + [anon_sym_not] = ACTIONS(3004), + [anon_sym_compl] = ACTIONS(3004), + [anon_sym_DASH_DASH] = ACTIONS(3006), + [anon_sym_PLUS_PLUS] = ACTIONS(3006), + [anon_sym_sizeof] = ACTIONS(3004), + [anon_sym_offsetof] = ACTIONS(3004), + [anon_sym__Generic] = ACTIONS(3004), + [anon_sym_asm] = ACTIONS(3004), + [anon_sym___asm__] = ACTIONS(3004), + [sym_number_literal] = ACTIONS(3006), + [anon_sym_L_SQUOTE] = ACTIONS(3006), + [anon_sym_u_SQUOTE] = ACTIONS(3006), + [anon_sym_U_SQUOTE] = ACTIONS(3006), + [anon_sym_u8_SQUOTE] = ACTIONS(3006), + [anon_sym_SQUOTE] = ACTIONS(3006), + [anon_sym_L_DQUOTE] = ACTIONS(3006), + [anon_sym_u_DQUOTE] = ACTIONS(3006), + [anon_sym_U_DQUOTE] = ACTIONS(3006), + [anon_sym_u8_DQUOTE] = ACTIONS(3006), + [anon_sym_DQUOTE] = ACTIONS(3006), + [sym_true] = ACTIONS(3004), + [sym_false] = ACTIONS(3004), + [anon_sym_NULL] = ACTIONS(3004), + [anon_sym_nullptr] = ACTIONS(3004), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3004), + [anon_sym_decltype] = ACTIONS(3004), + [anon_sym_virtual] = ACTIONS(3004), + [anon_sym_explicit] = ACTIONS(3004), + [anon_sym_typename] = ACTIONS(3004), + [anon_sym_template] = ACTIONS(3004), + [anon_sym_operator] = ACTIONS(3004), + [anon_sym_try] = ACTIONS(3004), + [anon_sym_delete] = ACTIONS(3004), + [anon_sym_throw] = ACTIONS(3004), + [anon_sym_namespace] = ACTIONS(3004), + [anon_sym_using] = ACTIONS(3004), + [anon_sym_static_assert] = ACTIONS(3004), + [anon_sym_concept] = ACTIONS(3004), + [anon_sym_co_return] = ACTIONS(3004), + [anon_sym_co_yield] = ACTIONS(3004), + [anon_sym_R_DQUOTE] = ACTIONS(3006), + [anon_sym_LR_DQUOTE] = ACTIONS(3006), + [anon_sym_uR_DQUOTE] = ACTIONS(3006), + [anon_sym_UR_DQUOTE] = ACTIONS(3006), + [anon_sym_u8R_DQUOTE] = ACTIONS(3006), + [anon_sym_co_await] = ACTIONS(3004), + [anon_sym_new] = ACTIONS(3004), + [anon_sym_requires] = ACTIONS(3004), + [sym_this] = ACTIONS(3004), }, - [984] = { - [sym_identifier] = ACTIONS(2888), - [aux_sym_preproc_include_token1] = ACTIONS(2888), - [aux_sym_preproc_def_token1] = ACTIONS(2888), - [aux_sym_preproc_if_token1] = ACTIONS(2888), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2888), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2888), - [sym_preproc_directive] = ACTIONS(2888), - [anon_sym_LPAREN2] = ACTIONS(2890), - [anon_sym_BANG] = ACTIONS(2890), - [anon_sym_TILDE] = ACTIONS(2890), - [anon_sym_DASH] = ACTIONS(2888), - [anon_sym_PLUS] = ACTIONS(2888), - [anon_sym_STAR] = ACTIONS(2890), - [anon_sym_AMP_AMP] = ACTIONS(2890), - [anon_sym_AMP] = ACTIONS(2888), - [anon_sym_SEMI] = ACTIONS(2890), - [anon_sym_typedef] = ACTIONS(2888), - [anon_sym_extern] = ACTIONS(2888), - [anon_sym___attribute__] = ACTIONS(2888), - [anon_sym_COLON_COLON] = ACTIONS(2890), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2890), - [anon_sym___declspec] = ACTIONS(2888), - [anon_sym___based] = ACTIONS(2888), - [anon_sym___cdecl] = ACTIONS(2888), - [anon_sym___clrcall] = ACTIONS(2888), - [anon_sym___stdcall] = ACTIONS(2888), - [anon_sym___fastcall] = ACTIONS(2888), - [anon_sym___thiscall] = ACTIONS(2888), - [anon_sym___vectorcall] = ACTIONS(2888), - [anon_sym_LBRACE] = ACTIONS(2890), - [anon_sym_RBRACE] = ACTIONS(2890), - [anon_sym_LBRACK] = ACTIONS(2888), - [anon_sym_static] = ACTIONS(2888), - [anon_sym_register] = ACTIONS(2888), - [anon_sym_inline] = ACTIONS(2888), - [anon_sym_thread_local] = ACTIONS(2888), - [anon_sym_const] = ACTIONS(2888), - [anon_sym_volatile] = ACTIONS(2888), - [anon_sym_restrict] = ACTIONS(2888), - [anon_sym__Atomic] = ACTIONS(2888), - [anon_sym_mutable] = ACTIONS(2888), - [anon_sym_constexpr] = ACTIONS(2888), - [anon_sym_constinit] = ACTIONS(2888), - [anon_sym_consteval] = ACTIONS(2888), - [anon_sym_signed] = ACTIONS(2888), - [anon_sym_unsigned] = ACTIONS(2888), - [anon_sym_long] = ACTIONS(2888), - [anon_sym_short] = ACTIONS(2888), - [sym_primitive_type] = ACTIONS(2888), - [anon_sym_enum] = ACTIONS(2888), - [anon_sym_class] = ACTIONS(2888), - [anon_sym_struct] = ACTIONS(2888), - [anon_sym_union] = ACTIONS(2888), - [anon_sym_if] = ACTIONS(2888), - [anon_sym_switch] = ACTIONS(2888), - [anon_sym_case] = ACTIONS(2888), - [anon_sym_default] = ACTIONS(2888), - [anon_sym_while] = ACTIONS(2888), - [anon_sym_do] = ACTIONS(2888), - [anon_sym_for] = ACTIONS(2888), - [anon_sym_return] = ACTIONS(2888), - [anon_sym_break] = ACTIONS(2888), - [anon_sym_continue] = ACTIONS(2888), - [anon_sym_goto] = ACTIONS(2888), - [anon_sym_not] = ACTIONS(2888), - [anon_sym_compl] = ACTIONS(2888), - [anon_sym_DASH_DASH] = ACTIONS(2890), - [anon_sym_PLUS_PLUS] = ACTIONS(2890), - [anon_sym_sizeof] = ACTIONS(2888), - [sym_number_literal] = ACTIONS(2890), - [anon_sym_L_SQUOTE] = ACTIONS(2890), - [anon_sym_u_SQUOTE] = ACTIONS(2890), - [anon_sym_U_SQUOTE] = ACTIONS(2890), - [anon_sym_u8_SQUOTE] = ACTIONS(2890), - [anon_sym_SQUOTE] = ACTIONS(2890), - [anon_sym_L_DQUOTE] = ACTIONS(2890), - [anon_sym_u_DQUOTE] = ACTIONS(2890), - [anon_sym_U_DQUOTE] = ACTIONS(2890), - [anon_sym_u8_DQUOTE] = ACTIONS(2890), - [anon_sym_DQUOTE] = ACTIONS(2890), - [sym_true] = ACTIONS(2888), - [sym_false] = ACTIONS(2888), - [sym_null] = ACTIONS(2888), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2888), - [anon_sym_decltype] = ACTIONS(2888), - [anon_sym_virtual] = ACTIONS(2888), - [anon_sym_explicit] = ACTIONS(2888), - [anon_sym_typename] = ACTIONS(2888), - [anon_sym_template] = ACTIONS(2888), - [anon_sym_operator] = ACTIONS(2888), - [anon_sym_try] = ACTIONS(2888), - [anon_sym_delete] = ACTIONS(2888), - [anon_sym_throw] = ACTIONS(2888), - [anon_sym_namespace] = ACTIONS(2888), - [anon_sym_using] = ACTIONS(2888), - [anon_sym_static_assert] = ACTIONS(2888), - [anon_sym_concept] = ACTIONS(2888), - [anon_sym_co_return] = ACTIONS(2888), - [anon_sym_co_yield] = ACTIONS(2888), - [anon_sym_R_DQUOTE] = ACTIONS(2890), - [anon_sym_LR_DQUOTE] = ACTIONS(2890), - [anon_sym_uR_DQUOTE] = ACTIONS(2890), - [anon_sym_UR_DQUOTE] = ACTIONS(2890), - [anon_sym_u8R_DQUOTE] = ACTIONS(2890), - [anon_sym_co_await] = ACTIONS(2888), - [anon_sym_new] = ACTIONS(2888), - [anon_sym_requires] = ACTIONS(2888), - [sym_this] = ACTIONS(2888), - [sym_nullptr] = ACTIONS(2888), + [936] = { + [sym_identifier] = ACTIONS(2928), + [aux_sym_preproc_include_token1] = ACTIONS(2928), + [aux_sym_preproc_def_token1] = ACTIONS(2928), + [aux_sym_preproc_if_token1] = ACTIONS(2928), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2928), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2928), + [sym_preproc_directive] = ACTIONS(2928), + [anon_sym_LPAREN2] = ACTIONS(2930), + [anon_sym_BANG] = ACTIONS(2930), + [anon_sym_TILDE] = ACTIONS(2930), + [anon_sym_DASH] = ACTIONS(2928), + [anon_sym_PLUS] = ACTIONS(2928), + [anon_sym_STAR] = ACTIONS(2930), + [anon_sym_AMP_AMP] = ACTIONS(2930), + [anon_sym_AMP] = ACTIONS(2928), + [anon_sym_SEMI] = ACTIONS(2930), + [anon_sym_typedef] = ACTIONS(2928), + [anon_sym_extern] = ACTIONS(2928), + [anon_sym___attribute__] = ACTIONS(2928), + [anon_sym_COLON_COLON] = ACTIONS(2930), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2930), + [anon_sym___declspec] = ACTIONS(2928), + [anon_sym___based] = ACTIONS(2928), + [anon_sym___cdecl] = ACTIONS(2928), + [anon_sym___clrcall] = ACTIONS(2928), + [anon_sym___stdcall] = ACTIONS(2928), + [anon_sym___fastcall] = ACTIONS(2928), + [anon_sym___thiscall] = ACTIONS(2928), + [anon_sym___vectorcall] = ACTIONS(2928), + [anon_sym_LBRACE] = ACTIONS(2930), + [anon_sym_RBRACE] = ACTIONS(2930), + [anon_sym_LBRACK] = ACTIONS(2928), + [anon_sym_static] = ACTIONS(2928), + [anon_sym_register] = ACTIONS(2928), + [anon_sym_inline] = ACTIONS(2928), + [anon_sym_thread_local] = ACTIONS(2928), + [anon_sym_const] = ACTIONS(2928), + [anon_sym_constexpr] = ACTIONS(2928), + [anon_sym_volatile] = ACTIONS(2928), + [anon_sym_restrict] = ACTIONS(2928), + [anon_sym___restrict__] = ACTIONS(2928), + [anon_sym__Atomic] = ACTIONS(2928), + [anon_sym__Noreturn] = ACTIONS(2928), + [anon_sym_noreturn] = ACTIONS(2928), + [anon_sym_mutable] = ACTIONS(2928), + [anon_sym_constinit] = ACTIONS(2928), + [anon_sym_consteval] = ACTIONS(2928), + [anon_sym_signed] = ACTIONS(2928), + [anon_sym_unsigned] = ACTIONS(2928), + [anon_sym_long] = ACTIONS(2928), + [anon_sym_short] = ACTIONS(2928), + [sym_primitive_type] = ACTIONS(2928), + [anon_sym_enum] = ACTIONS(2928), + [anon_sym_class] = ACTIONS(2928), + [anon_sym_struct] = ACTIONS(2928), + [anon_sym_union] = ACTIONS(2928), + [anon_sym_if] = ACTIONS(2928), + [anon_sym_else] = ACTIONS(2928), + [anon_sym_switch] = ACTIONS(2928), + [anon_sym_case] = ACTIONS(2928), + [anon_sym_default] = ACTIONS(2928), + [anon_sym_while] = ACTIONS(2928), + [anon_sym_do] = ACTIONS(2928), + [anon_sym_for] = ACTIONS(2928), + [anon_sym_return] = ACTIONS(2928), + [anon_sym_break] = ACTIONS(2928), + [anon_sym_continue] = ACTIONS(2928), + [anon_sym_goto] = ACTIONS(2928), + [anon_sym_not] = ACTIONS(2928), + [anon_sym_compl] = ACTIONS(2928), + [anon_sym_DASH_DASH] = ACTIONS(2930), + [anon_sym_PLUS_PLUS] = ACTIONS(2930), + [anon_sym_sizeof] = ACTIONS(2928), + [anon_sym_offsetof] = ACTIONS(2928), + [anon_sym__Generic] = ACTIONS(2928), + [anon_sym_asm] = ACTIONS(2928), + [anon_sym___asm__] = ACTIONS(2928), + [sym_number_literal] = ACTIONS(2930), + [anon_sym_L_SQUOTE] = ACTIONS(2930), + [anon_sym_u_SQUOTE] = ACTIONS(2930), + [anon_sym_U_SQUOTE] = ACTIONS(2930), + [anon_sym_u8_SQUOTE] = ACTIONS(2930), + [anon_sym_SQUOTE] = ACTIONS(2930), + [anon_sym_L_DQUOTE] = ACTIONS(2930), + [anon_sym_u_DQUOTE] = ACTIONS(2930), + [anon_sym_U_DQUOTE] = ACTIONS(2930), + [anon_sym_u8_DQUOTE] = ACTIONS(2930), + [anon_sym_DQUOTE] = ACTIONS(2930), + [sym_true] = ACTIONS(2928), + [sym_false] = ACTIONS(2928), + [anon_sym_NULL] = ACTIONS(2928), + [anon_sym_nullptr] = ACTIONS(2928), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2928), + [anon_sym_decltype] = ACTIONS(2928), + [anon_sym_virtual] = ACTIONS(2928), + [anon_sym_explicit] = ACTIONS(2928), + [anon_sym_typename] = ACTIONS(2928), + [anon_sym_template] = ACTIONS(2928), + [anon_sym_operator] = ACTIONS(2928), + [anon_sym_try] = ACTIONS(2928), + [anon_sym_delete] = ACTIONS(2928), + [anon_sym_throw] = ACTIONS(2928), + [anon_sym_namespace] = ACTIONS(2928), + [anon_sym_using] = ACTIONS(2928), + [anon_sym_static_assert] = ACTIONS(2928), + [anon_sym_concept] = ACTIONS(2928), + [anon_sym_co_return] = ACTIONS(2928), + [anon_sym_co_yield] = ACTIONS(2928), + [anon_sym_R_DQUOTE] = ACTIONS(2930), + [anon_sym_LR_DQUOTE] = ACTIONS(2930), + [anon_sym_uR_DQUOTE] = ACTIONS(2930), + [anon_sym_UR_DQUOTE] = ACTIONS(2930), + [anon_sym_u8R_DQUOTE] = ACTIONS(2930), + [anon_sym_co_await] = ACTIONS(2928), + [anon_sym_new] = ACTIONS(2928), + [anon_sym_requires] = ACTIONS(2928), + [sym_this] = ACTIONS(2928), }, - [985] = { - [sym_identifier] = ACTIONS(2892), - [aux_sym_preproc_include_token1] = ACTIONS(2892), - [aux_sym_preproc_def_token1] = ACTIONS(2892), - [aux_sym_preproc_if_token1] = ACTIONS(2892), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2892), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2892), - [sym_preproc_directive] = ACTIONS(2892), - [anon_sym_LPAREN2] = ACTIONS(2894), - [anon_sym_BANG] = ACTIONS(2894), - [anon_sym_TILDE] = ACTIONS(2894), - [anon_sym_DASH] = ACTIONS(2892), - [anon_sym_PLUS] = ACTIONS(2892), - [anon_sym_STAR] = ACTIONS(2894), - [anon_sym_AMP_AMP] = ACTIONS(2894), - [anon_sym_AMP] = ACTIONS(2892), - [anon_sym_SEMI] = ACTIONS(2894), - [anon_sym_typedef] = ACTIONS(2892), - [anon_sym_extern] = ACTIONS(2892), - [anon_sym___attribute__] = ACTIONS(2892), - [anon_sym_COLON_COLON] = ACTIONS(2894), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2894), - [anon_sym___declspec] = ACTIONS(2892), - [anon_sym___based] = ACTIONS(2892), - [anon_sym___cdecl] = ACTIONS(2892), - [anon_sym___clrcall] = ACTIONS(2892), - [anon_sym___stdcall] = ACTIONS(2892), - [anon_sym___fastcall] = ACTIONS(2892), - [anon_sym___thiscall] = ACTIONS(2892), - [anon_sym___vectorcall] = ACTIONS(2892), - [anon_sym_LBRACE] = ACTIONS(2894), - [anon_sym_RBRACE] = ACTIONS(2894), - [anon_sym_LBRACK] = ACTIONS(2892), - [anon_sym_static] = ACTIONS(2892), - [anon_sym_register] = ACTIONS(2892), - [anon_sym_inline] = ACTIONS(2892), - [anon_sym_thread_local] = ACTIONS(2892), - [anon_sym_const] = ACTIONS(2892), - [anon_sym_volatile] = ACTIONS(2892), - [anon_sym_restrict] = ACTIONS(2892), - [anon_sym__Atomic] = ACTIONS(2892), - [anon_sym_mutable] = ACTIONS(2892), - [anon_sym_constexpr] = ACTIONS(2892), - [anon_sym_constinit] = ACTIONS(2892), - [anon_sym_consteval] = ACTIONS(2892), - [anon_sym_signed] = ACTIONS(2892), - [anon_sym_unsigned] = ACTIONS(2892), - [anon_sym_long] = ACTIONS(2892), - [anon_sym_short] = ACTIONS(2892), - [sym_primitive_type] = ACTIONS(2892), - [anon_sym_enum] = ACTIONS(2892), - [anon_sym_class] = ACTIONS(2892), - [anon_sym_struct] = ACTIONS(2892), - [anon_sym_union] = ACTIONS(2892), - [anon_sym_if] = ACTIONS(2892), - [anon_sym_switch] = ACTIONS(2892), - [anon_sym_case] = ACTIONS(2892), - [anon_sym_default] = ACTIONS(2892), - [anon_sym_while] = ACTIONS(2892), - [anon_sym_do] = ACTIONS(2892), - [anon_sym_for] = ACTIONS(2892), - [anon_sym_return] = ACTIONS(2892), - [anon_sym_break] = ACTIONS(2892), - [anon_sym_continue] = ACTIONS(2892), - [anon_sym_goto] = ACTIONS(2892), - [anon_sym_not] = ACTIONS(2892), - [anon_sym_compl] = ACTIONS(2892), - [anon_sym_DASH_DASH] = ACTIONS(2894), - [anon_sym_PLUS_PLUS] = ACTIONS(2894), - [anon_sym_sizeof] = ACTIONS(2892), - [sym_number_literal] = ACTIONS(2894), - [anon_sym_L_SQUOTE] = ACTIONS(2894), - [anon_sym_u_SQUOTE] = ACTIONS(2894), - [anon_sym_U_SQUOTE] = ACTIONS(2894), - [anon_sym_u8_SQUOTE] = ACTIONS(2894), - [anon_sym_SQUOTE] = ACTIONS(2894), - [anon_sym_L_DQUOTE] = ACTIONS(2894), - [anon_sym_u_DQUOTE] = ACTIONS(2894), - [anon_sym_U_DQUOTE] = ACTIONS(2894), - [anon_sym_u8_DQUOTE] = ACTIONS(2894), - [anon_sym_DQUOTE] = ACTIONS(2894), - [sym_true] = ACTIONS(2892), - [sym_false] = ACTIONS(2892), - [sym_null] = ACTIONS(2892), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2892), - [anon_sym_decltype] = ACTIONS(2892), - [anon_sym_virtual] = ACTIONS(2892), - [anon_sym_explicit] = ACTIONS(2892), - [anon_sym_typename] = ACTIONS(2892), - [anon_sym_template] = ACTIONS(2892), - [anon_sym_operator] = ACTIONS(2892), - [anon_sym_try] = ACTIONS(2892), - [anon_sym_delete] = ACTIONS(2892), - [anon_sym_throw] = ACTIONS(2892), - [anon_sym_namespace] = ACTIONS(2892), - [anon_sym_using] = ACTIONS(2892), - [anon_sym_static_assert] = ACTIONS(2892), - [anon_sym_concept] = ACTIONS(2892), - [anon_sym_co_return] = ACTIONS(2892), - [anon_sym_co_yield] = ACTIONS(2892), - [anon_sym_R_DQUOTE] = ACTIONS(2894), - [anon_sym_LR_DQUOTE] = ACTIONS(2894), - [anon_sym_uR_DQUOTE] = ACTIONS(2894), - [anon_sym_UR_DQUOTE] = ACTIONS(2894), - [anon_sym_u8R_DQUOTE] = ACTIONS(2894), - [anon_sym_co_await] = ACTIONS(2892), - [anon_sym_new] = ACTIONS(2892), - [anon_sym_requires] = ACTIONS(2892), - [sym_this] = ACTIONS(2892), - [sym_nullptr] = ACTIONS(2892), + [937] = { + [ts_builtin_sym_end] = ACTIONS(3050), + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, - [986] = { - [sym_identifier] = ACTIONS(2896), - [aux_sym_preproc_include_token1] = ACTIONS(2896), - [aux_sym_preproc_def_token1] = ACTIONS(2896), - [aux_sym_preproc_if_token1] = ACTIONS(2896), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2896), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2896), - [sym_preproc_directive] = ACTIONS(2896), - [anon_sym_LPAREN2] = ACTIONS(2898), - [anon_sym_BANG] = ACTIONS(2898), - [anon_sym_TILDE] = ACTIONS(2898), - [anon_sym_DASH] = ACTIONS(2896), - [anon_sym_PLUS] = ACTIONS(2896), - [anon_sym_STAR] = ACTIONS(2898), - [anon_sym_AMP_AMP] = ACTIONS(2898), - [anon_sym_AMP] = ACTIONS(2896), - [anon_sym_SEMI] = ACTIONS(2898), - [anon_sym_typedef] = ACTIONS(2896), - [anon_sym_extern] = ACTIONS(2896), - [anon_sym___attribute__] = ACTIONS(2896), - [anon_sym_COLON_COLON] = ACTIONS(2898), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2898), - [anon_sym___declspec] = ACTIONS(2896), - [anon_sym___based] = ACTIONS(2896), - [anon_sym___cdecl] = ACTIONS(2896), - [anon_sym___clrcall] = ACTIONS(2896), - [anon_sym___stdcall] = ACTIONS(2896), - [anon_sym___fastcall] = ACTIONS(2896), - [anon_sym___thiscall] = ACTIONS(2896), - [anon_sym___vectorcall] = ACTIONS(2896), - [anon_sym_LBRACE] = ACTIONS(2898), - [anon_sym_RBRACE] = ACTIONS(2898), - [anon_sym_LBRACK] = ACTIONS(2896), - [anon_sym_static] = ACTIONS(2896), - [anon_sym_register] = ACTIONS(2896), - [anon_sym_inline] = ACTIONS(2896), - [anon_sym_thread_local] = ACTIONS(2896), - [anon_sym_const] = ACTIONS(2896), - [anon_sym_volatile] = ACTIONS(2896), - [anon_sym_restrict] = ACTIONS(2896), - [anon_sym__Atomic] = ACTIONS(2896), - [anon_sym_mutable] = ACTIONS(2896), - [anon_sym_constexpr] = ACTIONS(2896), - [anon_sym_constinit] = ACTIONS(2896), - [anon_sym_consteval] = ACTIONS(2896), - [anon_sym_signed] = ACTIONS(2896), - [anon_sym_unsigned] = ACTIONS(2896), - [anon_sym_long] = ACTIONS(2896), - [anon_sym_short] = ACTIONS(2896), - [sym_primitive_type] = ACTIONS(2896), - [anon_sym_enum] = ACTIONS(2896), - [anon_sym_class] = ACTIONS(2896), - [anon_sym_struct] = ACTIONS(2896), - [anon_sym_union] = ACTIONS(2896), - [anon_sym_if] = ACTIONS(2896), - [anon_sym_switch] = ACTIONS(2896), - [anon_sym_case] = ACTIONS(2896), - [anon_sym_default] = ACTIONS(2896), - [anon_sym_while] = ACTIONS(2896), - [anon_sym_do] = ACTIONS(2896), - [anon_sym_for] = ACTIONS(2896), - [anon_sym_return] = ACTIONS(2896), - [anon_sym_break] = ACTIONS(2896), - [anon_sym_continue] = ACTIONS(2896), - [anon_sym_goto] = ACTIONS(2896), - [anon_sym_not] = ACTIONS(2896), - [anon_sym_compl] = ACTIONS(2896), - [anon_sym_DASH_DASH] = ACTIONS(2898), - [anon_sym_PLUS_PLUS] = ACTIONS(2898), - [anon_sym_sizeof] = ACTIONS(2896), - [sym_number_literal] = ACTIONS(2898), - [anon_sym_L_SQUOTE] = ACTIONS(2898), - [anon_sym_u_SQUOTE] = ACTIONS(2898), - [anon_sym_U_SQUOTE] = ACTIONS(2898), - [anon_sym_u8_SQUOTE] = ACTIONS(2898), - [anon_sym_SQUOTE] = ACTIONS(2898), - [anon_sym_L_DQUOTE] = ACTIONS(2898), - [anon_sym_u_DQUOTE] = ACTIONS(2898), - [anon_sym_U_DQUOTE] = ACTIONS(2898), - [anon_sym_u8_DQUOTE] = ACTIONS(2898), - [anon_sym_DQUOTE] = ACTIONS(2898), - [sym_true] = ACTIONS(2896), - [sym_false] = ACTIONS(2896), - [sym_null] = ACTIONS(2896), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2896), - [anon_sym_decltype] = ACTIONS(2896), - [anon_sym_virtual] = ACTIONS(2896), - [anon_sym_explicit] = ACTIONS(2896), - [anon_sym_typename] = ACTIONS(2896), - [anon_sym_template] = ACTIONS(2896), - [anon_sym_operator] = ACTIONS(2896), - [anon_sym_try] = ACTIONS(2896), - [anon_sym_delete] = ACTIONS(2896), - [anon_sym_throw] = ACTIONS(2896), - [anon_sym_namespace] = ACTIONS(2896), - [anon_sym_using] = ACTIONS(2896), - [anon_sym_static_assert] = ACTIONS(2896), - [anon_sym_concept] = ACTIONS(2896), - [anon_sym_co_return] = ACTIONS(2896), - [anon_sym_co_yield] = ACTIONS(2896), - [anon_sym_R_DQUOTE] = ACTIONS(2898), - [anon_sym_LR_DQUOTE] = ACTIONS(2898), - [anon_sym_uR_DQUOTE] = ACTIONS(2898), - [anon_sym_UR_DQUOTE] = ACTIONS(2898), - [anon_sym_u8R_DQUOTE] = ACTIONS(2898), - [anon_sym_co_await] = ACTIONS(2896), - [anon_sym_new] = ACTIONS(2896), - [anon_sym_requires] = ACTIONS(2896), - [sym_this] = ACTIONS(2896), - [sym_nullptr] = ACTIONS(2896), + [938] = { + [sym_identifier] = ACTIONS(2932), + [aux_sym_preproc_include_token1] = ACTIONS(2932), + [aux_sym_preproc_def_token1] = ACTIONS(2932), + [aux_sym_preproc_if_token1] = ACTIONS(2932), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2932), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2932), + [sym_preproc_directive] = ACTIONS(2932), + [anon_sym_LPAREN2] = ACTIONS(2934), + [anon_sym_BANG] = ACTIONS(2934), + [anon_sym_TILDE] = ACTIONS(2934), + [anon_sym_DASH] = ACTIONS(2932), + [anon_sym_PLUS] = ACTIONS(2932), + [anon_sym_STAR] = ACTIONS(2934), + [anon_sym_AMP_AMP] = ACTIONS(2934), + [anon_sym_AMP] = ACTIONS(2932), + [anon_sym_SEMI] = ACTIONS(2934), + [anon_sym_typedef] = ACTIONS(2932), + [anon_sym_extern] = ACTIONS(2932), + [anon_sym___attribute__] = ACTIONS(2932), + [anon_sym_COLON_COLON] = ACTIONS(2934), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2934), + [anon_sym___declspec] = ACTIONS(2932), + [anon_sym___based] = ACTIONS(2932), + [anon_sym___cdecl] = ACTIONS(2932), + [anon_sym___clrcall] = ACTIONS(2932), + [anon_sym___stdcall] = ACTIONS(2932), + [anon_sym___fastcall] = ACTIONS(2932), + [anon_sym___thiscall] = ACTIONS(2932), + [anon_sym___vectorcall] = ACTIONS(2932), + [anon_sym_LBRACE] = ACTIONS(2934), + [anon_sym_RBRACE] = ACTIONS(2934), + [anon_sym_LBRACK] = ACTIONS(2932), + [anon_sym_static] = ACTIONS(2932), + [anon_sym_register] = ACTIONS(2932), + [anon_sym_inline] = ACTIONS(2932), + [anon_sym_thread_local] = ACTIONS(2932), + [anon_sym_const] = ACTIONS(2932), + [anon_sym_constexpr] = ACTIONS(2932), + [anon_sym_volatile] = ACTIONS(2932), + [anon_sym_restrict] = ACTIONS(2932), + [anon_sym___restrict__] = ACTIONS(2932), + [anon_sym__Atomic] = ACTIONS(2932), + [anon_sym__Noreturn] = ACTIONS(2932), + [anon_sym_noreturn] = ACTIONS(2932), + [anon_sym_mutable] = ACTIONS(2932), + [anon_sym_constinit] = ACTIONS(2932), + [anon_sym_consteval] = ACTIONS(2932), + [anon_sym_signed] = ACTIONS(2932), + [anon_sym_unsigned] = ACTIONS(2932), + [anon_sym_long] = ACTIONS(2932), + [anon_sym_short] = ACTIONS(2932), + [sym_primitive_type] = ACTIONS(2932), + [anon_sym_enum] = ACTIONS(2932), + [anon_sym_class] = ACTIONS(2932), + [anon_sym_struct] = ACTIONS(2932), + [anon_sym_union] = ACTIONS(2932), + [anon_sym_if] = ACTIONS(2932), + [anon_sym_else] = ACTIONS(2932), + [anon_sym_switch] = ACTIONS(2932), + [anon_sym_case] = ACTIONS(2932), + [anon_sym_default] = ACTIONS(2932), + [anon_sym_while] = ACTIONS(2932), + [anon_sym_do] = ACTIONS(2932), + [anon_sym_for] = ACTIONS(2932), + [anon_sym_return] = ACTIONS(2932), + [anon_sym_break] = ACTIONS(2932), + [anon_sym_continue] = ACTIONS(2932), + [anon_sym_goto] = ACTIONS(2932), + [anon_sym_not] = ACTIONS(2932), + [anon_sym_compl] = ACTIONS(2932), + [anon_sym_DASH_DASH] = ACTIONS(2934), + [anon_sym_PLUS_PLUS] = ACTIONS(2934), + [anon_sym_sizeof] = ACTIONS(2932), + [anon_sym_offsetof] = ACTIONS(2932), + [anon_sym__Generic] = ACTIONS(2932), + [anon_sym_asm] = ACTIONS(2932), + [anon_sym___asm__] = ACTIONS(2932), + [sym_number_literal] = ACTIONS(2934), + [anon_sym_L_SQUOTE] = ACTIONS(2934), + [anon_sym_u_SQUOTE] = ACTIONS(2934), + [anon_sym_U_SQUOTE] = ACTIONS(2934), + [anon_sym_u8_SQUOTE] = ACTIONS(2934), + [anon_sym_SQUOTE] = ACTIONS(2934), + [anon_sym_L_DQUOTE] = ACTIONS(2934), + [anon_sym_u_DQUOTE] = ACTIONS(2934), + [anon_sym_U_DQUOTE] = ACTIONS(2934), + [anon_sym_u8_DQUOTE] = ACTIONS(2934), + [anon_sym_DQUOTE] = ACTIONS(2934), + [sym_true] = ACTIONS(2932), + [sym_false] = ACTIONS(2932), + [anon_sym_NULL] = ACTIONS(2932), + [anon_sym_nullptr] = ACTIONS(2932), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2932), + [anon_sym_decltype] = ACTIONS(2932), + [anon_sym_virtual] = ACTIONS(2932), + [anon_sym_explicit] = ACTIONS(2932), + [anon_sym_typename] = ACTIONS(2932), + [anon_sym_template] = ACTIONS(2932), + [anon_sym_operator] = ACTIONS(2932), + [anon_sym_try] = ACTIONS(2932), + [anon_sym_delete] = ACTIONS(2932), + [anon_sym_throw] = ACTIONS(2932), + [anon_sym_namespace] = ACTIONS(2932), + [anon_sym_using] = ACTIONS(2932), + [anon_sym_static_assert] = ACTIONS(2932), + [anon_sym_concept] = ACTIONS(2932), + [anon_sym_co_return] = ACTIONS(2932), + [anon_sym_co_yield] = ACTIONS(2932), + [anon_sym_R_DQUOTE] = ACTIONS(2934), + [anon_sym_LR_DQUOTE] = ACTIONS(2934), + [anon_sym_uR_DQUOTE] = ACTIONS(2934), + [anon_sym_UR_DQUOTE] = ACTIONS(2934), + [anon_sym_u8R_DQUOTE] = ACTIONS(2934), + [anon_sym_co_await] = ACTIONS(2932), + [anon_sym_new] = ACTIONS(2932), + [anon_sym_requires] = ACTIONS(2932), + [sym_this] = ACTIONS(2932), }, - [987] = { - [sym_identifier] = ACTIONS(2900), - [aux_sym_preproc_include_token1] = ACTIONS(2900), - [aux_sym_preproc_def_token1] = ACTIONS(2900), - [aux_sym_preproc_if_token1] = ACTIONS(2900), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2900), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2900), - [sym_preproc_directive] = ACTIONS(2900), - [anon_sym_LPAREN2] = ACTIONS(2902), - [anon_sym_BANG] = ACTIONS(2902), - [anon_sym_TILDE] = ACTIONS(2902), - [anon_sym_DASH] = ACTIONS(2900), - [anon_sym_PLUS] = ACTIONS(2900), - [anon_sym_STAR] = ACTIONS(2902), - [anon_sym_AMP_AMP] = ACTIONS(2902), - [anon_sym_AMP] = ACTIONS(2900), - [anon_sym_SEMI] = ACTIONS(2902), - [anon_sym_typedef] = ACTIONS(2900), - [anon_sym_extern] = ACTIONS(2900), - [anon_sym___attribute__] = ACTIONS(2900), - [anon_sym_COLON_COLON] = ACTIONS(2902), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2902), - [anon_sym___declspec] = ACTIONS(2900), - [anon_sym___based] = ACTIONS(2900), - [anon_sym___cdecl] = ACTIONS(2900), - [anon_sym___clrcall] = ACTIONS(2900), - [anon_sym___stdcall] = ACTIONS(2900), - [anon_sym___fastcall] = ACTIONS(2900), - [anon_sym___thiscall] = ACTIONS(2900), - [anon_sym___vectorcall] = ACTIONS(2900), - [anon_sym_LBRACE] = ACTIONS(2902), - [anon_sym_RBRACE] = ACTIONS(2902), - [anon_sym_LBRACK] = ACTIONS(2900), - [anon_sym_static] = ACTIONS(2900), - [anon_sym_register] = ACTIONS(2900), - [anon_sym_inline] = ACTIONS(2900), - [anon_sym_thread_local] = ACTIONS(2900), - [anon_sym_const] = ACTIONS(2900), - [anon_sym_volatile] = ACTIONS(2900), - [anon_sym_restrict] = ACTIONS(2900), - [anon_sym__Atomic] = ACTIONS(2900), - [anon_sym_mutable] = ACTIONS(2900), - [anon_sym_constexpr] = ACTIONS(2900), - [anon_sym_constinit] = ACTIONS(2900), - [anon_sym_consteval] = ACTIONS(2900), - [anon_sym_signed] = ACTIONS(2900), - [anon_sym_unsigned] = ACTIONS(2900), - [anon_sym_long] = ACTIONS(2900), - [anon_sym_short] = ACTIONS(2900), - [sym_primitive_type] = ACTIONS(2900), - [anon_sym_enum] = ACTIONS(2900), - [anon_sym_class] = ACTIONS(2900), - [anon_sym_struct] = ACTIONS(2900), - [anon_sym_union] = ACTIONS(2900), - [anon_sym_if] = ACTIONS(2900), - [anon_sym_switch] = ACTIONS(2900), - [anon_sym_case] = ACTIONS(2900), - [anon_sym_default] = ACTIONS(2900), - [anon_sym_while] = ACTIONS(2900), - [anon_sym_do] = ACTIONS(2900), - [anon_sym_for] = ACTIONS(2900), - [anon_sym_return] = ACTIONS(2900), - [anon_sym_break] = ACTIONS(2900), - [anon_sym_continue] = ACTIONS(2900), - [anon_sym_goto] = ACTIONS(2900), - [anon_sym_not] = ACTIONS(2900), - [anon_sym_compl] = ACTIONS(2900), - [anon_sym_DASH_DASH] = ACTIONS(2902), - [anon_sym_PLUS_PLUS] = ACTIONS(2902), - [anon_sym_sizeof] = ACTIONS(2900), - [sym_number_literal] = ACTIONS(2902), - [anon_sym_L_SQUOTE] = ACTIONS(2902), - [anon_sym_u_SQUOTE] = ACTIONS(2902), - [anon_sym_U_SQUOTE] = ACTIONS(2902), - [anon_sym_u8_SQUOTE] = ACTIONS(2902), - [anon_sym_SQUOTE] = ACTIONS(2902), - [anon_sym_L_DQUOTE] = ACTIONS(2902), - [anon_sym_u_DQUOTE] = ACTIONS(2902), - [anon_sym_U_DQUOTE] = ACTIONS(2902), - [anon_sym_u8_DQUOTE] = ACTIONS(2902), - [anon_sym_DQUOTE] = ACTIONS(2902), - [sym_true] = ACTIONS(2900), - [sym_false] = ACTIONS(2900), - [sym_null] = ACTIONS(2900), + [939] = { + [ts_builtin_sym_end] = ACTIONS(3050), + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), + }, + [940] = { + [sym_identifier] = ACTIONS(2936), + [aux_sym_preproc_include_token1] = ACTIONS(2936), + [aux_sym_preproc_def_token1] = ACTIONS(2936), + [aux_sym_preproc_if_token1] = ACTIONS(2936), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2936), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2936), + [sym_preproc_directive] = ACTIONS(2936), + [anon_sym_LPAREN2] = ACTIONS(2938), + [anon_sym_BANG] = ACTIONS(2938), + [anon_sym_TILDE] = ACTIONS(2938), + [anon_sym_DASH] = ACTIONS(2936), + [anon_sym_PLUS] = ACTIONS(2936), + [anon_sym_STAR] = ACTIONS(2938), + [anon_sym_AMP_AMP] = ACTIONS(2938), + [anon_sym_AMP] = ACTIONS(2936), + [anon_sym_SEMI] = ACTIONS(2938), + [anon_sym_typedef] = ACTIONS(2936), + [anon_sym_extern] = ACTIONS(2936), + [anon_sym___attribute__] = ACTIONS(2936), + [anon_sym_COLON_COLON] = ACTIONS(2938), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2938), + [anon_sym___declspec] = ACTIONS(2936), + [anon_sym___based] = ACTIONS(2936), + [anon_sym___cdecl] = ACTIONS(2936), + [anon_sym___clrcall] = ACTIONS(2936), + [anon_sym___stdcall] = ACTIONS(2936), + [anon_sym___fastcall] = ACTIONS(2936), + [anon_sym___thiscall] = ACTIONS(2936), + [anon_sym___vectorcall] = ACTIONS(2936), + [anon_sym_LBRACE] = ACTIONS(2938), + [anon_sym_RBRACE] = ACTIONS(2938), + [anon_sym_LBRACK] = ACTIONS(2936), + [anon_sym_static] = ACTIONS(2936), + [anon_sym_register] = ACTIONS(2936), + [anon_sym_inline] = ACTIONS(2936), + [anon_sym_thread_local] = ACTIONS(2936), + [anon_sym_const] = ACTIONS(2936), + [anon_sym_constexpr] = ACTIONS(2936), + [anon_sym_volatile] = ACTIONS(2936), + [anon_sym_restrict] = ACTIONS(2936), + [anon_sym___restrict__] = ACTIONS(2936), + [anon_sym__Atomic] = ACTIONS(2936), + [anon_sym__Noreturn] = ACTIONS(2936), + [anon_sym_noreturn] = ACTIONS(2936), + [anon_sym_mutable] = ACTIONS(2936), + [anon_sym_constinit] = ACTIONS(2936), + [anon_sym_consteval] = ACTIONS(2936), + [anon_sym_signed] = ACTIONS(2936), + [anon_sym_unsigned] = ACTIONS(2936), + [anon_sym_long] = ACTIONS(2936), + [anon_sym_short] = ACTIONS(2936), + [sym_primitive_type] = ACTIONS(2936), + [anon_sym_enum] = ACTIONS(2936), + [anon_sym_class] = ACTIONS(2936), + [anon_sym_struct] = ACTIONS(2936), + [anon_sym_union] = ACTIONS(2936), + [anon_sym_if] = ACTIONS(2936), + [anon_sym_else] = ACTIONS(2936), + [anon_sym_switch] = ACTIONS(2936), + [anon_sym_case] = ACTIONS(2936), + [anon_sym_default] = ACTIONS(2936), + [anon_sym_while] = ACTIONS(2936), + [anon_sym_do] = ACTIONS(2936), + [anon_sym_for] = ACTIONS(2936), + [anon_sym_return] = ACTIONS(2936), + [anon_sym_break] = ACTIONS(2936), + [anon_sym_continue] = ACTIONS(2936), + [anon_sym_goto] = ACTIONS(2936), + [anon_sym_not] = ACTIONS(2936), + [anon_sym_compl] = ACTIONS(2936), + [anon_sym_DASH_DASH] = ACTIONS(2938), + [anon_sym_PLUS_PLUS] = ACTIONS(2938), + [anon_sym_sizeof] = ACTIONS(2936), + [anon_sym_offsetof] = ACTIONS(2936), + [anon_sym__Generic] = ACTIONS(2936), + [anon_sym_asm] = ACTIONS(2936), + [anon_sym___asm__] = ACTIONS(2936), + [sym_number_literal] = ACTIONS(2938), + [anon_sym_L_SQUOTE] = ACTIONS(2938), + [anon_sym_u_SQUOTE] = ACTIONS(2938), + [anon_sym_U_SQUOTE] = ACTIONS(2938), + [anon_sym_u8_SQUOTE] = ACTIONS(2938), + [anon_sym_SQUOTE] = ACTIONS(2938), + [anon_sym_L_DQUOTE] = ACTIONS(2938), + [anon_sym_u_DQUOTE] = ACTIONS(2938), + [anon_sym_U_DQUOTE] = ACTIONS(2938), + [anon_sym_u8_DQUOTE] = ACTIONS(2938), + [anon_sym_DQUOTE] = ACTIONS(2938), + [sym_true] = ACTIONS(2936), + [sym_false] = ACTIONS(2936), + [anon_sym_NULL] = ACTIONS(2936), + [anon_sym_nullptr] = ACTIONS(2936), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2936), + [anon_sym_decltype] = ACTIONS(2936), + [anon_sym_virtual] = ACTIONS(2936), + [anon_sym_explicit] = ACTIONS(2936), + [anon_sym_typename] = ACTIONS(2936), + [anon_sym_template] = ACTIONS(2936), + [anon_sym_operator] = ACTIONS(2936), + [anon_sym_try] = ACTIONS(2936), + [anon_sym_delete] = ACTIONS(2936), + [anon_sym_throw] = ACTIONS(2936), + [anon_sym_namespace] = ACTIONS(2936), + [anon_sym_using] = ACTIONS(2936), + [anon_sym_static_assert] = ACTIONS(2936), + [anon_sym_concept] = ACTIONS(2936), + [anon_sym_co_return] = ACTIONS(2936), + [anon_sym_co_yield] = ACTIONS(2936), + [anon_sym_R_DQUOTE] = ACTIONS(2938), + [anon_sym_LR_DQUOTE] = ACTIONS(2938), + [anon_sym_uR_DQUOTE] = ACTIONS(2938), + [anon_sym_UR_DQUOTE] = ACTIONS(2938), + [anon_sym_u8R_DQUOTE] = ACTIONS(2938), + [anon_sym_co_await] = ACTIONS(2936), + [anon_sym_new] = ACTIONS(2936), + [anon_sym_requires] = ACTIONS(2936), + [sym_this] = ACTIONS(2936), + }, + [941] = { + [sym_identifier] = ACTIONS(2940), + [aux_sym_preproc_include_token1] = ACTIONS(2940), + [aux_sym_preproc_def_token1] = ACTIONS(2940), + [aux_sym_preproc_if_token1] = ACTIONS(2940), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2940), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2940), + [sym_preproc_directive] = ACTIONS(2940), + [anon_sym_LPAREN2] = ACTIONS(2942), + [anon_sym_BANG] = ACTIONS(2942), + [anon_sym_TILDE] = ACTIONS(2942), + [anon_sym_DASH] = ACTIONS(2940), + [anon_sym_PLUS] = ACTIONS(2940), + [anon_sym_STAR] = ACTIONS(2942), + [anon_sym_AMP_AMP] = ACTIONS(2942), + [anon_sym_AMP] = ACTIONS(2940), + [anon_sym_SEMI] = ACTIONS(2942), + [anon_sym_typedef] = ACTIONS(2940), + [anon_sym_extern] = ACTIONS(2940), + [anon_sym___attribute__] = ACTIONS(2940), + [anon_sym_COLON_COLON] = ACTIONS(2942), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2942), + [anon_sym___declspec] = ACTIONS(2940), + [anon_sym___based] = ACTIONS(2940), + [anon_sym___cdecl] = ACTIONS(2940), + [anon_sym___clrcall] = ACTIONS(2940), + [anon_sym___stdcall] = ACTIONS(2940), + [anon_sym___fastcall] = ACTIONS(2940), + [anon_sym___thiscall] = ACTIONS(2940), + [anon_sym___vectorcall] = ACTIONS(2940), + [anon_sym_LBRACE] = ACTIONS(2942), + [anon_sym_RBRACE] = ACTIONS(2942), + [anon_sym_LBRACK] = ACTIONS(2940), + [anon_sym_static] = ACTIONS(2940), + [anon_sym_register] = ACTIONS(2940), + [anon_sym_inline] = ACTIONS(2940), + [anon_sym_thread_local] = ACTIONS(2940), + [anon_sym_const] = ACTIONS(2940), + [anon_sym_constexpr] = ACTIONS(2940), + [anon_sym_volatile] = ACTIONS(2940), + [anon_sym_restrict] = ACTIONS(2940), + [anon_sym___restrict__] = ACTIONS(2940), + [anon_sym__Atomic] = ACTIONS(2940), + [anon_sym__Noreturn] = ACTIONS(2940), + [anon_sym_noreturn] = ACTIONS(2940), + [anon_sym_mutable] = ACTIONS(2940), + [anon_sym_constinit] = ACTIONS(2940), + [anon_sym_consteval] = ACTIONS(2940), + [anon_sym_signed] = ACTIONS(2940), + [anon_sym_unsigned] = ACTIONS(2940), + [anon_sym_long] = ACTIONS(2940), + [anon_sym_short] = ACTIONS(2940), + [sym_primitive_type] = ACTIONS(2940), + [anon_sym_enum] = ACTIONS(2940), + [anon_sym_class] = ACTIONS(2940), + [anon_sym_struct] = ACTIONS(2940), + [anon_sym_union] = ACTIONS(2940), + [anon_sym_if] = ACTIONS(2940), + [anon_sym_else] = ACTIONS(2940), + [anon_sym_switch] = ACTIONS(2940), + [anon_sym_case] = ACTIONS(2940), + [anon_sym_default] = ACTIONS(2940), + [anon_sym_while] = ACTIONS(2940), + [anon_sym_do] = ACTIONS(2940), + [anon_sym_for] = ACTIONS(2940), + [anon_sym_return] = ACTIONS(2940), + [anon_sym_break] = ACTIONS(2940), + [anon_sym_continue] = ACTIONS(2940), + [anon_sym_goto] = ACTIONS(2940), + [anon_sym_not] = ACTIONS(2940), + [anon_sym_compl] = ACTIONS(2940), + [anon_sym_DASH_DASH] = ACTIONS(2942), + [anon_sym_PLUS_PLUS] = ACTIONS(2942), + [anon_sym_sizeof] = ACTIONS(2940), + [anon_sym_offsetof] = ACTIONS(2940), + [anon_sym__Generic] = ACTIONS(2940), + [anon_sym_asm] = ACTIONS(2940), + [anon_sym___asm__] = ACTIONS(2940), + [sym_number_literal] = ACTIONS(2942), + [anon_sym_L_SQUOTE] = ACTIONS(2942), + [anon_sym_u_SQUOTE] = ACTIONS(2942), + [anon_sym_U_SQUOTE] = ACTIONS(2942), + [anon_sym_u8_SQUOTE] = ACTIONS(2942), + [anon_sym_SQUOTE] = ACTIONS(2942), + [anon_sym_L_DQUOTE] = ACTIONS(2942), + [anon_sym_u_DQUOTE] = ACTIONS(2942), + [anon_sym_U_DQUOTE] = ACTIONS(2942), + [anon_sym_u8_DQUOTE] = ACTIONS(2942), + [anon_sym_DQUOTE] = ACTIONS(2942), + [sym_true] = ACTIONS(2940), + [sym_false] = ACTIONS(2940), + [anon_sym_NULL] = ACTIONS(2940), + [anon_sym_nullptr] = ACTIONS(2940), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2940), + [anon_sym_decltype] = ACTIONS(2940), + [anon_sym_virtual] = ACTIONS(2940), + [anon_sym_explicit] = ACTIONS(2940), + [anon_sym_typename] = ACTIONS(2940), + [anon_sym_template] = ACTIONS(2940), + [anon_sym_operator] = ACTIONS(2940), + [anon_sym_try] = ACTIONS(2940), + [anon_sym_delete] = ACTIONS(2940), + [anon_sym_throw] = ACTIONS(2940), + [anon_sym_namespace] = ACTIONS(2940), + [anon_sym_using] = ACTIONS(2940), + [anon_sym_static_assert] = ACTIONS(2940), + [anon_sym_concept] = ACTIONS(2940), + [anon_sym_co_return] = ACTIONS(2940), + [anon_sym_co_yield] = ACTIONS(2940), + [anon_sym_R_DQUOTE] = ACTIONS(2942), + [anon_sym_LR_DQUOTE] = ACTIONS(2942), + [anon_sym_uR_DQUOTE] = ACTIONS(2942), + [anon_sym_UR_DQUOTE] = ACTIONS(2942), + [anon_sym_u8R_DQUOTE] = ACTIONS(2942), + [anon_sym_co_await] = ACTIONS(2940), + [anon_sym_new] = ACTIONS(2940), + [anon_sym_requires] = ACTIONS(2940), + [sym_this] = ACTIONS(2940), + }, + [942] = { + [sym_identifier] = ACTIONS(2944), + [aux_sym_preproc_include_token1] = ACTIONS(2944), + [aux_sym_preproc_def_token1] = ACTIONS(2944), + [aux_sym_preproc_if_token1] = ACTIONS(2944), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2944), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2944), + [sym_preproc_directive] = ACTIONS(2944), + [anon_sym_LPAREN2] = ACTIONS(2946), + [anon_sym_BANG] = ACTIONS(2946), + [anon_sym_TILDE] = ACTIONS(2946), + [anon_sym_DASH] = ACTIONS(2944), + [anon_sym_PLUS] = ACTIONS(2944), + [anon_sym_STAR] = ACTIONS(2946), + [anon_sym_AMP_AMP] = ACTIONS(2946), + [anon_sym_AMP] = ACTIONS(2944), + [anon_sym_SEMI] = ACTIONS(2946), + [anon_sym_typedef] = ACTIONS(2944), + [anon_sym_extern] = ACTIONS(2944), + [anon_sym___attribute__] = ACTIONS(2944), + [anon_sym_COLON_COLON] = ACTIONS(2946), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2946), + [anon_sym___declspec] = ACTIONS(2944), + [anon_sym___based] = ACTIONS(2944), + [anon_sym___cdecl] = ACTIONS(2944), + [anon_sym___clrcall] = ACTIONS(2944), + [anon_sym___stdcall] = ACTIONS(2944), + [anon_sym___fastcall] = ACTIONS(2944), + [anon_sym___thiscall] = ACTIONS(2944), + [anon_sym___vectorcall] = ACTIONS(2944), + [anon_sym_LBRACE] = ACTIONS(2946), + [anon_sym_RBRACE] = ACTIONS(2946), + [anon_sym_LBRACK] = ACTIONS(2944), + [anon_sym_static] = ACTIONS(2944), + [anon_sym_register] = ACTIONS(2944), + [anon_sym_inline] = ACTIONS(2944), + [anon_sym_thread_local] = ACTIONS(2944), + [anon_sym_const] = ACTIONS(2944), + [anon_sym_constexpr] = ACTIONS(2944), + [anon_sym_volatile] = ACTIONS(2944), + [anon_sym_restrict] = ACTIONS(2944), + [anon_sym___restrict__] = ACTIONS(2944), + [anon_sym__Atomic] = ACTIONS(2944), + [anon_sym__Noreturn] = ACTIONS(2944), + [anon_sym_noreturn] = ACTIONS(2944), + [anon_sym_mutable] = ACTIONS(2944), + [anon_sym_constinit] = ACTIONS(2944), + [anon_sym_consteval] = ACTIONS(2944), + [anon_sym_signed] = ACTIONS(2944), + [anon_sym_unsigned] = ACTIONS(2944), + [anon_sym_long] = ACTIONS(2944), + [anon_sym_short] = ACTIONS(2944), + [sym_primitive_type] = ACTIONS(2944), + [anon_sym_enum] = ACTIONS(2944), + [anon_sym_class] = ACTIONS(2944), + [anon_sym_struct] = ACTIONS(2944), + [anon_sym_union] = ACTIONS(2944), + [anon_sym_if] = ACTIONS(2944), + [anon_sym_else] = ACTIONS(2944), + [anon_sym_switch] = ACTIONS(2944), + [anon_sym_case] = ACTIONS(2944), + [anon_sym_default] = ACTIONS(2944), + [anon_sym_while] = ACTIONS(2944), + [anon_sym_do] = ACTIONS(2944), + [anon_sym_for] = ACTIONS(2944), + [anon_sym_return] = ACTIONS(2944), + [anon_sym_break] = ACTIONS(2944), + [anon_sym_continue] = ACTIONS(2944), + [anon_sym_goto] = ACTIONS(2944), + [anon_sym_not] = ACTIONS(2944), + [anon_sym_compl] = ACTIONS(2944), + [anon_sym_DASH_DASH] = ACTIONS(2946), + [anon_sym_PLUS_PLUS] = ACTIONS(2946), + [anon_sym_sizeof] = ACTIONS(2944), + [anon_sym_offsetof] = ACTIONS(2944), + [anon_sym__Generic] = ACTIONS(2944), + [anon_sym_asm] = ACTIONS(2944), + [anon_sym___asm__] = ACTIONS(2944), + [sym_number_literal] = ACTIONS(2946), + [anon_sym_L_SQUOTE] = ACTIONS(2946), + [anon_sym_u_SQUOTE] = ACTIONS(2946), + [anon_sym_U_SQUOTE] = ACTIONS(2946), + [anon_sym_u8_SQUOTE] = ACTIONS(2946), + [anon_sym_SQUOTE] = ACTIONS(2946), + [anon_sym_L_DQUOTE] = ACTIONS(2946), + [anon_sym_u_DQUOTE] = ACTIONS(2946), + [anon_sym_U_DQUOTE] = ACTIONS(2946), + [anon_sym_u8_DQUOTE] = ACTIONS(2946), + [anon_sym_DQUOTE] = ACTIONS(2946), + [sym_true] = ACTIONS(2944), + [sym_false] = ACTIONS(2944), + [anon_sym_NULL] = ACTIONS(2944), + [anon_sym_nullptr] = ACTIONS(2944), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2944), + [anon_sym_decltype] = ACTIONS(2944), + [anon_sym_virtual] = ACTIONS(2944), + [anon_sym_explicit] = ACTIONS(2944), + [anon_sym_typename] = ACTIONS(2944), + [anon_sym_template] = ACTIONS(2944), + [anon_sym_operator] = ACTIONS(2944), + [anon_sym_try] = ACTIONS(2944), + [anon_sym_delete] = ACTIONS(2944), + [anon_sym_throw] = ACTIONS(2944), + [anon_sym_namespace] = ACTIONS(2944), + [anon_sym_using] = ACTIONS(2944), + [anon_sym_static_assert] = ACTIONS(2944), + [anon_sym_concept] = ACTIONS(2944), + [anon_sym_co_return] = ACTIONS(2944), + [anon_sym_co_yield] = ACTIONS(2944), + [anon_sym_R_DQUOTE] = ACTIONS(2946), + [anon_sym_LR_DQUOTE] = ACTIONS(2946), + [anon_sym_uR_DQUOTE] = ACTIONS(2946), + [anon_sym_UR_DQUOTE] = ACTIONS(2946), + [anon_sym_u8R_DQUOTE] = ACTIONS(2946), + [anon_sym_co_await] = ACTIONS(2944), + [anon_sym_new] = ACTIONS(2944), + [anon_sym_requires] = ACTIONS(2944), + [sym_this] = ACTIONS(2944), + }, + [943] = { + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_RBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), + }, + [944] = { + [sym_identifier] = ACTIONS(2996), + [aux_sym_preproc_include_token1] = ACTIONS(2996), + [aux_sym_preproc_def_token1] = ACTIONS(2996), + [aux_sym_preproc_if_token1] = ACTIONS(2996), + [aux_sym_preproc_if_token2] = ACTIONS(2996), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2996), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2996), + [sym_preproc_directive] = ACTIONS(2996), + [anon_sym_LPAREN2] = ACTIONS(2998), + [anon_sym_BANG] = ACTIONS(2998), + [anon_sym_TILDE] = ACTIONS(2998), + [anon_sym_DASH] = ACTIONS(2996), + [anon_sym_PLUS] = ACTIONS(2996), + [anon_sym_STAR] = ACTIONS(2998), + [anon_sym_AMP_AMP] = ACTIONS(2998), + [anon_sym_AMP] = ACTIONS(2996), + [anon_sym_SEMI] = ACTIONS(2998), + [anon_sym_typedef] = ACTIONS(2996), + [anon_sym_extern] = ACTIONS(2996), + [anon_sym___attribute__] = ACTIONS(2996), + [anon_sym_COLON_COLON] = ACTIONS(2998), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2998), + [anon_sym___declspec] = ACTIONS(2996), + [anon_sym___based] = ACTIONS(2996), + [anon_sym___cdecl] = ACTIONS(2996), + [anon_sym___clrcall] = ACTIONS(2996), + [anon_sym___stdcall] = ACTIONS(2996), + [anon_sym___fastcall] = ACTIONS(2996), + [anon_sym___thiscall] = ACTIONS(2996), + [anon_sym___vectorcall] = ACTIONS(2996), + [anon_sym_LBRACE] = ACTIONS(2998), + [anon_sym_LBRACK] = ACTIONS(2996), + [anon_sym_static] = ACTIONS(2996), + [anon_sym_register] = ACTIONS(2996), + [anon_sym_inline] = ACTIONS(2996), + [anon_sym_thread_local] = ACTIONS(2996), + [anon_sym_const] = ACTIONS(2996), + [anon_sym_constexpr] = ACTIONS(2996), + [anon_sym_volatile] = ACTIONS(2996), + [anon_sym_restrict] = ACTIONS(2996), + [anon_sym___restrict__] = ACTIONS(2996), + [anon_sym__Atomic] = ACTIONS(2996), + [anon_sym__Noreturn] = ACTIONS(2996), + [anon_sym_noreturn] = ACTIONS(2996), + [anon_sym_mutable] = ACTIONS(2996), + [anon_sym_constinit] = ACTIONS(2996), + [anon_sym_consteval] = ACTIONS(2996), + [anon_sym_signed] = ACTIONS(2996), + [anon_sym_unsigned] = ACTIONS(2996), + [anon_sym_long] = ACTIONS(2996), + [anon_sym_short] = ACTIONS(2996), + [sym_primitive_type] = ACTIONS(2996), + [anon_sym_enum] = ACTIONS(2996), + [anon_sym_class] = ACTIONS(2996), + [anon_sym_struct] = ACTIONS(2996), + [anon_sym_union] = ACTIONS(2996), + [anon_sym_if] = ACTIONS(2996), + [anon_sym_else] = ACTIONS(2996), + [anon_sym_switch] = ACTIONS(2996), + [anon_sym_case] = ACTIONS(2996), + [anon_sym_default] = ACTIONS(2996), + [anon_sym_while] = ACTIONS(2996), + [anon_sym_do] = ACTIONS(2996), + [anon_sym_for] = ACTIONS(2996), + [anon_sym_return] = ACTIONS(2996), + [anon_sym_break] = ACTIONS(2996), + [anon_sym_continue] = ACTIONS(2996), + [anon_sym_goto] = ACTIONS(2996), + [anon_sym_not] = ACTIONS(2996), + [anon_sym_compl] = ACTIONS(2996), + [anon_sym_DASH_DASH] = ACTIONS(2998), + [anon_sym_PLUS_PLUS] = ACTIONS(2998), + [anon_sym_sizeof] = ACTIONS(2996), + [anon_sym_offsetof] = ACTIONS(2996), + [anon_sym__Generic] = ACTIONS(2996), + [anon_sym_asm] = ACTIONS(2996), + [anon_sym___asm__] = ACTIONS(2996), + [sym_number_literal] = ACTIONS(2998), + [anon_sym_L_SQUOTE] = ACTIONS(2998), + [anon_sym_u_SQUOTE] = ACTIONS(2998), + [anon_sym_U_SQUOTE] = ACTIONS(2998), + [anon_sym_u8_SQUOTE] = ACTIONS(2998), + [anon_sym_SQUOTE] = ACTIONS(2998), + [anon_sym_L_DQUOTE] = ACTIONS(2998), + [anon_sym_u_DQUOTE] = ACTIONS(2998), + [anon_sym_U_DQUOTE] = ACTIONS(2998), + [anon_sym_u8_DQUOTE] = ACTIONS(2998), + [anon_sym_DQUOTE] = ACTIONS(2998), + [sym_true] = ACTIONS(2996), + [sym_false] = ACTIONS(2996), + [anon_sym_NULL] = ACTIONS(2996), + [anon_sym_nullptr] = ACTIONS(2996), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2996), + [anon_sym_decltype] = ACTIONS(2996), + [anon_sym_virtual] = ACTIONS(2996), + [anon_sym_explicit] = ACTIONS(2996), + [anon_sym_typename] = ACTIONS(2996), + [anon_sym_template] = ACTIONS(2996), + [anon_sym_operator] = ACTIONS(2996), + [anon_sym_try] = ACTIONS(2996), + [anon_sym_delete] = ACTIONS(2996), + [anon_sym_throw] = ACTIONS(2996), + [anon_sym_namespace] = ACTIONS(2996), + [anon_sym_using] = ACTIONS(2996), + [anon_sym_static_assert] = ACTIONS(2996), + [anon_sym_concept] = ACTIONS(2996), + [anon_sym_co_return] = ACTIONS(2996), + [anon_sym_co_yield] = ACTIONS(2996), + [anon_sym_R_DQUOTE] = ACTIONS(2998), + [anon_sym_LR_DQUOTE] = ACTIONS(2998), + [anon_sym_uR_DQUOTE] = ACTIONS(2998), + [anon_sym_UR_DQUOTE] = ACTIONS(2998), + [anon_sym_u8R_DQUOTE] = ACTIONS(2998), + [anon_sym_co_await] = ACTIONS(2996), + [anon_sym_new] = ACTIONS(2996), + [anon_sym_requires] = ACTIONS(2996), + [sym_this] = ACTIONS(2996), + }, + [945] = { + [sym_identifier] = ACTIONS(2992), + [aux_sym_preproc_include_token1] = ACTIONS(2992), + [aux_sym_preproc_def_token1] = ACTIONS(2992), + [aux_sym_preproc_if_token1] = ACTIONS(2992), + [aux_sym_preproc_if_token2] = ACTIONS(2992), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2992), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2992), + [sym_preproc_directive] = ACTIONS(2992), + [anon_sym_LPAREN2] = ACTIONS(2994), + [anon_sym_BANG] = ACTIONS(2994), + [anon_sym_TILDE] = ACTIONS(2994), + [anon_sym_DASH] = ACTIONS(2992), + [anon_sym_PLUS] = ACTIONS(2992), + [anon_sym_STAR] = ACTIONS(2994), + [anon_sym_AMP_AMP] = ACTIONS(2994), + [anon_sym_AMP] = ACTIONS(2992), + [anon_sym_SEMI] = ACTIONS(2994), + [anon_sym_typedef] = ACTIONS(2992), + [anon_sym_extern] = ACTIONS(2992), + [anon_sym___attribute__] = ACTIONS(2992), + [anon_sym_COLON_COLON] = ACTIONS(2994), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2994), + [anon_sym___declspec] = ACTIONS(2992), + [anon_sym___based] = ACTIONS(2992), + [anon_sym___cdecl] = ACTIONS(2992), + [anon_sym___clrcall] = ACTIONS(2992), + [anon_sym___stdcall] = ACTIONS(2992), + [anon_sym___fastcall] = ACTIONS(2992), + [anon_sym___thiscall] = ACTIONS(2992), + [anon_sym___vectorcall] = ACTIONS(2992), + [anon_sym_LBRACE] = ACTIONS(2994), + [anon_sym_LBRACK] = ACTIONS(2992), + [anon_sym_static] = ACTIONS(2992), + [anon_sym_register] = ACTIONS(2992), + [anon_sym_inline] = ACTIONS(2992), + [anon_sym_thread_local] = ACTIONS(2992), + [anon_sym_const] = ACTIONS(2992), + [anon_sym_constexpr] = ACTIONS(2992), + [anon_sym_volatile] = ACTIONS(2992), + [anon_sym_restrict] = ACTIONS(2992), + [anon_sym___restrict__] = ACTIONS(2992), + [anon_sym__Atomic] = ACTIONS(2992), + [anon_sym__Noreturn] = ACTIONS(2992), + [anon_sym_noreturn] = ACTIONS(2992), + [anon_sym_mutable] = ACTIONS(2992), + [anon_sym_constinit] = ACTIONS(2992), + [anon_sym_consteval] = ACTIONS(2992), + [anon_sym_signed] = ACTIONS(2992), + [anon_sym_unsigned] = ACTIONS(2992), + [anon_sym_long] = ACTIONS(2992), + [anon_sym_short] = ACTIONS(2992), + [sym_primitive_type] = ACTIONS(2992), + [anon_sym_enum] = ACTIONS(2992), + [anon_sym_class] = ACTIONS(2992), + [anon_sym_struct] = ACTIONS(2992), + [anon_sym_union] = ACTIONS(2992), + [anon_sym_if] = ACTIONS(2992), + [anon_sym_else] = ACTIONS(2992), + [anon_sym_switch] = ACTIONS(2992), + [anon_sym_case] = ACTIONS(2992), + [anon_sym_default] = ACTIONS(2992), + [anon_sym_while] = ACTIONS(2992), + [anon_sym_do] = ACTIONS(2992), + [anon_sym_for] = ACTIONS(2992), + [anon_sym_return] = ACTIONS(2992), + [anon_sym_break] = ACTIONS(2992), + [anon_sym_continue] = ACTIONS(2992), + [anon_sym_goto] = ACTIONS(2992), + [anon_sym_not] = ACTIONS(2992), + [anon_sym_compl] = ACTIONS(2992), + [anon_sym_DASH_DASH] = ACTIONS(2994), + [anon_sym_PLUS_PLUS] = ACTIONS(2994), + [anon_sym_sizeof] = ACTIONS(2992), + [anon_sym_offsetof] = ACTIONS(2992), + [anon_sym__Generic] = ACTIONS(2992), + [anon_sym_asm] = ACTIONS(2992), + [anon_sym___asm__] = ACTIONS(2992), + [sym_number_literal] = ACTIONS(2994), + [anon_sym_L_SQUOTE] = ACTIONS(2994), + [anon_sym_u_SQUOTE] = ACTIONS(2994), + [anon_sym_U_SQUOTE] = ACTIONS(2994), + [anon_sym_u8_SQUOTE] = ACTIONS(2994), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_L_DQUOTE] = ACTIONS(2994), + [anon_sym_u_DQUOTE] = ACTIONS(2994), + [anon_sym_U_DQUOTE] = ACTIONS(2994), + [anon_sym_u8_DQUOTE] = ACTIONS(2994), + [anon_sym_DQUOTE] = ACTIONS(2994), + [sym_true] = ACTIONS(2992), + [sym_false] = ACTIONS(2992), + [anon_sym_NULL] = ACTIONS(2992), + [anon_sym_nullptr] = ACTIONS(2992), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2992), + [anon_sym_decltype] = ACTIONS(2992), + [anon_sym_virtual] = ACTIONS(2992), + [anon_sym_explicit] = ACTIONS(2992), + [anon_sym_typename] = ACTIONS(2992), + [anon_sym_template] = ACTIONS(2992), + [anon_sym_operator] = ACTIONS(2992), + [anon_sym_try] = ACTIONS(2992), + [anon_sym_delete] = ACTIONS(2992), + [anon_sym_throw] = ACTIONS(2992), + [anon_sym_namespace] = ACTIONS(2992), + [anon_sym_using] = ACTIONS(2992), + [anon_sym_static_assert] = ACTIONS(2992), + [anon_sym_concept] = ACTIONS(2992), + [anon_sym_co_return] = ACTIONS(2992), + [anon_sym_co_yield] = ACTIONS(2992), + [anon_sym_R_DQUOTE] = ACTIONS(2994), + [anon_sym_LR_DQUOTE] = ACTIONS(2994), + [anon_sym_uR_DQUOTE] = ACTIONS(2994), + [anon_sym_UR_DQUOTE] = ACTIONS(2994), + [anon_sym_u8R_DQUOTE] = ACTIONS(2994), + [anon_sym_co_await] = ACTIONS(2992), + [anon_sym_new] = ACTIONS(2992), + [anon_sym_requires] = ACTIONS(2992), + [sym_this] = ACTIONS(2992), + }, + [946] = { + [ts_builtin_sym_end] = ACTIONS(3050), + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), + }, + [947] = { + [sym_identifier] = ACTIONS(3020), + [aux_sym_preproc_include_token1] = ACTIONS(3020), + [aux_sym_preproc_def_token1] = ACTIONS(3020), + [aux_sym_preproc_if_token1] = ACTIONS(3020), + [aux_sym_preproc_if_token2] = ACTIONS(3020), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3020), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3020), + [sym_preproc_directive] = ACTIONS(3020), + [anon_sym_LPAREN2] = ACTIONS(3022), + [anon_sym_BANG] = ACTIONS(3022), + [anon_sym_TILDE] = ACTIONS(3022), + [anon_sym_DASH] = ACTIONS(3020), + [anon_sym_PLUS] = ACTIONS(3020), + [anon_sym_STAR] = ACTIONS(3022), + [anon_sym_AMP_AMP] = ACTIONS(3022), + [anon_sym_AMP] = ACTIONS(3020), + [anon_sym_SEMI] = ACTIONS(3022), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(3020), + [anon_sym___attribute__] = ACTIONS(3020), + [anon_sym_COLON_COLON] = ACTIONS(3022), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(3020), + [anon_sym___based] = ACTIONS(3020), + [anon_sym___cdecl] = ACTIONS(3020), + [anon_sym___clrcall] = ACTIONS(3020), + [anon_sym___stdcall] = ACTIONS(3020), + [anon_sym___fastcall] = ACTIONS(3020), + [anon_sym___thiscall] = ACTIONS(3020), + [anon_sym___vectorcall] = ACTIONS(3020), + [anon_sym_LBRACE] = ACTIONS(3022), + [anon_sym_LBRACK] = ACTIONS(3020), + [anon_sym_static] = ACTIONS(3020), + [anon_sym_register] = ACTIONS(3020), + [anon_sym_inline] = ACTIONS(3020), + [anon_sym_thread_local] = ACTIONS(3020), + [anon_sym_const] = ACTIONS(3020), + [anon_sym_constexpr] = ACTIONS(3020), + [anon_sym_volatile] = ACTIONS(3020), + [anon_sym_restrict] = ACTIONS(3020), + [anon_sym___restrict__] = ACTIONS(3020), + [anon_sym__Atomic] = ACTIONS(3020), + [anon_sym__Noreturn] = ACTIONS(3020), + [anon_sym_noreturn] = ACTIONS(3020), + [anon_sym_mutable] = ACTIONS(3020), + [anon_sym_constinit] = ACTIONS(3020), + [anon_sym_consteval] = ACTIONS(3020), + [anon_sym_signed] = ACTIONS(3020), + [anon_sym_unsigned] = ACTIONS(3020), + [anon_sym_long] = ACTIONS(3020), + [anon_sym_short] = ACTIONS(3020), + [sym_primitive_type] = ACTIONS(3020), + [anon_sym_enum] = ACTIONS(3020), + [anon_sym_class] = ACTIONS(3020), + [anon_sym_struct] = ACTIONS(3020), + [anon_sym_union] = ACTIONS(3020), + [anon_sym_if] = ACTIONS(3020), + [anon_sym_else] = ACTIONS(3020), + [anon_sym_switch] = ACTIONS(3020), + [anon_sym_case] = ACTIONS(3020), + [anon_sym_default] = ACTIONS(3020), + [anon_sym_while] = ACTIONS(3020), + [anon_sym_do] = ACTIONS(3020), + [anon_sym_for] = ACTIONS(3020), + [anon_sym_return] = ACTIONS(3020), + [anon_sym_break] = ACTIONS(3020), + [anon_sym_continue] = ACTIONS(3020), + [anon_sym_goto] = ACTIONS(3020), + [anon_sym_not] = ACTIONS(3020), + [anon_sym_compl] = ACTIONS(3020), + [anon_sym_DASH_DASH] = ACTIONS(3022), + [anon_sym_PLUS_PLUS] = ACTIONS(3022), + [anon_sym_sizeof] = ACTIONS(3020), + [anon_sym_offsetof] = ACTIONS(3020), + [anon_sym__Generic] = ACTIONS(3020), + [anon_sym_asm] = ACTIONS(3020), + [anon_sym___asm__] = ACTIONS(3020), + [sym_number_literal] = ACTIONS(3022), + [anon_sym_L_SQUOTE] = ACTIONS(3022), + [anon_sym_u_SQUOTE] = ACTIONS(3022), + [anon_sym_U_SQUOTE] = ACTIONS(3022), + [anon_sym_u8_SQUOTE] = ACTIONS(3022), + [anon_sym_SQUOTE] = ACTIONS(3022), + [anon_sym_L_DQUOTE] = ACTIONS(3022), + [anon_sym_u_DQUOTE] = ACTIONS(3022), + [anon_sym_U_DQUOTE] = ACTIONS(3022), + [anon_sym_u8_DQUOTE] = ACTIONS(3022), + [anon_sym_DQUOTE] = ACTIONS(3022), + [sym_true] = ACTIONS(3020), + [sym_false] = ACTIONS(3020), + [anon_sym_NULL] = ACTIONS(3020), + [anon_sym_nullptr] = ACTIONS(3020), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3020), + [anon_sym_decltype] = ACTIONS(3020), + [anon_sym_virtual] = ACTIONS(3020), + [anon_sym_explicit] = ACTIONS(3020), + [anon_sym_typename] = ACTIONS(3020), + [anon_sym_template] = ACTIONS(3020), + [anon_sym_operator] = ACTIONS(3020), + [anon_sym_try] = ACTIONS(3020), + [anon_sym_delete] = ACTIONS(3020), + [anon_sym_throw] = ACTIONS(3020), + [anon_sym_namespace] = ACTIONS(3020), + [anon_sym_using] = ACTIONS(3020), + [anon_sym_static_assert] = ACTIONS(3020), + [anon_sym_concept] = ACTIONS(3020), + [anon_sym_co_return] = ACTIONS(3020), + [anon_sym_co_yield] = ACTIONS(3020), + [anon_sym_R_DQUOTE] = ACTIONS(3022), + [anon_sym_LR_DQUOTE] = ACTIONS(3022), + [anon_sym_uR_DQUOTE] = ACTIONS(3022), + [anon_sym_UR_DQUOTE] = ACTIONS(3022), + [anon_sym_u8R_DQUOTE] = ACTIONS(3022), + [anon_sym_co_await] = ACTIONS(3020), + [anon_sym_new] = ACTIONS(3020), + [anon_sym_requires] = ACTIONS(3020), + [sym_this] = ACTIONS(3020), + }, + [948] = { + [ts_builtin_sym_end] = ACTIONS(3050), + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), + }, + [949] = { + [sym_identifier] = ACTIONS(2904), + [aux_sym_preproc_include_token1] = ACTIONS(2904), + [aux_sym_preproc_def_token1] = ACTIONS(2904), + [aux_sym_preproc_if_token1] = ACTIONS(2904), + [aux_sym_preproc_if_token2] = ACTIONS(2904), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2904), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2904), + [sym_preproc_directive] = ACTIONS(2904), + [anon_sym_LPAREN2] = ACTIONS(2906), + [anon_sym_BANG] = ACTIONS(2906), + [anon_sym_TILDE] = ACTIONS(2906), + [anon_sym_DASH] = ACTIONS(2904), + [anon_sym_PLUS] = ACTIONS(2904), + [anon_sym_STAR] = ACTIONS(2906), + [anon_sym_AMP_AMP] = ACTIONS(2906), + [anon_sym_AMP] = ACTIONS(2904), + [anon_sym_SEMI] = ACTIONS(2906), + [anon_sym_typedef] = ACTIONS(2904), + [anon_sym_extern] = ACTIONS(2904), + [anon_sym___attribute__] = ACTIONS(2904), + [anon_sym_COLON_COLON] = ACTIONS(2906), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2906), + [anon_sym___declspec] = ACTIONS(2904), + [anon_sym___based] = ACTIONS(2904), + [anon_sym___cdecl] = ACTIONS(2904), + [anon_sym___clrcall] = ACTIONS(2904), + [anon_sym___stdcall] = ACTIONS(2904), + [anon_sym___fastcall] = ACTIONS(2904), + [anon_sym___thiscall] = ACTIONS(2904), + [anon_sym___vectorcall] = ACTIONS(2904), + [anon_sym_LBRACE] = ACTIONS(2906), + [anon_sym_LBRACK] = ACTIONS(2904), + [anon_sym_static] = ACTIONS(2904), + [anon_sym_register] = ACTIONS(2904), + [anon_sym_inline] = ACTIONS(2904), + [anon_sym_thread_local] = ACTIONS(2904), + [anon_sym_const] = ACTIONS(2904), + [anon_sym_constexpr] = ACTIONS(2904), + [anon_sym_volatile] = ACTIONS(2904), + [anon_sym_restrict] = ACTIONS(2904), + [anon_sym___restrict__] = ACTIONS(2904), + [anon_sym__Atomic] = ACTIONS(2904), + [anon_sym__Noreturn] = ACTIONS(2904), + [anon_sym_noreturn] = ACTIONS(2904), + [anon_sym_mutable] = ACTIONS(2904), + [anon_sym_constinit] = ACTIONS(2904), + [anon_sym_consteval] = ACTIONS(2904), + [anon_sym_signed] = ACTIONS(2904), + [anon_sym_unsigned] = ACTIONS(2904), + [anon_sym_long] = ACTIONS(2904), + [anon_sym_short] = ACTIONS(2904), + [sym_primitive_type] = ACTIONS(2904), + [anon_sym_enum] = ACTIONS(2904), + [anon_sym_class] = ACTIONS(2904), + [anon_sym_struct] = ACTIONS(2904), + [anon_sym_union] = ACTIONS(2904), + [anon_sym_if] = ACTIONS(2904), + [anon_sym_else] = ACTIONS(2904), + [anon_sym_switch] = ACTIONS(2904), + [anon_sym_case] = ACTIONS(2904), + [anon_sym_default] = ACTIONS(2904), + [anon_sym_while] = ACTIONS(2904), + [anon_sym_do] = ACTIONS(2904), + [anon_sym_for] = ACTIONS(2904), + [anon_sym_return] = ACTIONS(2904), + [anon_sym_break] = ACTIONS(2904), + [anon_sym_continue] = ACTIONS(2904), + [anon_sym_goto] = ACTIONS(2904), + [anon_sym_not] = ACTIONS(2904), + [anon_sym_compl] = ACTIONS(2904), + [anon_sym_DASH_DASH] = ACTIONS(2906), + [anon_sym_PLUS_PLUS] = ACTIONS(2906), + [anon_sym_sizeof] = ACTIONS(2904), + [anon_sym_offsetof] = ACTIONS(2904), + [anon_sym__Generic] = ACTIONS(2904), + [anon_sym_asm] = ACTIONS(2904), + [anon_sym___asm__] = ACTIONS(2904), + [sym_number_literal] = ACTIONS(2906), + [anon_sym_L_SQUOTE] = ACTIONS(2906), + [anon_sym_u_SQUOTE] = ACTIONS(2906), + [anon_sym_U_SQUOTE] = ACTIONS(2906), + [anon_sym_u8_SQUOTE] = ACTIONS(2906), + [anon_sym_SQUOTE] = ACTIONS(2906), + [anon_sym_L_DQUOTE] = ACTIONS(2906), + [anon_sym_u_DQUOTE] = ACTIONS(2906), + [anon_sym_U_DQUOTE] = ACTIONS(2906), + [anon_sym_u8_DQUOTE] = ACTIONS(2906), + [anon_sym_DQUOTE] = ACTIONS(2906), + [sym_true] = ACTIONS(2904), + [sym_false] = ACTIONS(2904), + [anon_sym_NULL] = ACTIONS(2904), + [anon_sym_nullptr] = ACTIONS(2904), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2900), - [anon_sym_decltype] = ACTIONS(2900), - [anon_sym_virtual] = ACTIONS(2900), - [anon_sym_explicit] = ACTIONS(2900), - [anon_sym_typename] = ACTIONS(2900), - [anon_sym_template] = ACTIONS(2900), - [anon_sym_operator] = ACTIONS(2900), - [anon_sym_try] = ACTIONS(2900), - [anon_sym_delete] = ACTIONS(2900), - [anon_sym_throw] = ACTIONS(2900), - [anon_sym_namespace] = ACTIONS(2900), - [anon_sym_using] = ACTIONS(2900), - [anon_sym_static_assert] = ACTIONS(2900), - [anon_sym_concept] = ACTIONS(2900), - [anon_sym_co_return] = ACTIONS(2900), - [anon_sym_co_yield] = ACTIONS(2900), - [anon_sym_R_DQUOTE] = ACTIONS(2902), - [anon_sym_LR_DQUOTE] = ACTIONS(2902), - [anon_sym_uR_DQUOTE] = ACTIONS(2902), - [anon_sym_UR_DQUOTE] = ACTIONS(2902), - [anon_sym_u8R_DQUOTE] = ACTIONS(2902), - [anon_sym_co_await] = ACTIONS(2900), - [anon_sym_new] = ACTIONS(2900), - [anon_sym_requires] = ACTIONS(2900), - [sym_this] = ACTIONS(2900), - [sym_nullptr] = ACTIONS(2900), + [sym_auto] = ACTIONS(2904), + [anon_sym_decltype] = ACTIONS(2904), + [anon_sym_virtual] = ACTIONS(2904), + [anon_sym_explicit] = ACTIONS(2904), + [anon_sym_typename] = ACTIONS(2904), + [anon_sym_template] = ACTIONS(2904), + [anon_sym_operator] = ACTIONS(2904), + [anon_sym_try] = ACTIONS(2904), + [anon_sym_delete] = ACTIONS(2904), + [anon_sym_throw] = ACTIONS(2904), + [anon_sym_namespace] = ACTIONS(2904), + [anon_sym_using] = ACTIONS(2904), + [anon_sym_static_assert] = ACTIONS(2904), + [anon_sym_concept] = ACTIONS(2904), + [anon_sym_co_return] = ACTIONS(2904), + [anon_sym_co_yield] = ACTIONS(2904), + [anon_sym_R_DQUOTE] = ACTIONS(2906), + [anon_sym_LR_DQUOTE] = ACTIONS(2906), + [anon_sym_uR_DQUOTE] = ACTIONS(2906), + [anon_sym_UR_DQUOTE] = ACTIONS(2906), + [anon_sym_u8R_DQUOTE] = ACTIONS(2906), + [anon_sym_co_await] = ACTIONS(2904), + [anon_sym_new] = ACTIONS(2904), + [anon_sym_requires] = ACTIONS(2904), + [sym_this] = ACTIONS(2904), + }, + [950] = { + [sym_identifier] = ACTIONS(2988), + [aux_sym_preproc_include_token1] = ACTIONS(2988), + [aux_sym_preproc_def_token1] = ACTIONS(2988), + [aux_sym_preproc_if_token1] = ACTIONS(2988), + [aux_sym_preproc_if_token2] = ACTIONS(2988), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2988), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2988), + [sym_preproc_directive] = ACTIONS(2988), + [anon_sym_LPAREN2] = ACTIONS(2990), + [anon_sym_BANG] = ACTIONS(2990), + [anon_sym_TILDE] = ACTIONS(2990), + [anon_sym_DASH] = ACTIONS(2988), + [anon_sym_PLUS] = ACTIONS(2988), + [anon_sym_STAR] = ACTIONS(2990), + [anon_sym_AMP_AMP] = ACTIONS(2990), + [anon_sym_AMP] = ACTIONS(2988), + [anon_sym_SEMI] = ACTIONS(2990), + [anon_sym_typedef] = ACTIONS(2988), + [anon_sym_extern] = ACTIONS(2988), + [anon_sym___attribute__] = ACTIONS(2988), + [anon_sym_COLON_COLON] = ACTIONS(2990), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2990), + [anon_sym___declspec] = ACTIONS(2988), + [anon_sym___based] = ACTIONS(2988), + [anon_sym___cdecl] = ACTIONS(2988), + [anon_sym___clrcall] = ACTIONS(2988), + [anon_sym___stdcall] = ACTIONS(2988), + [anon_sym___fastcall] = ACTIONS(2988), + [anon_sym___thiscall] = ACTIONS(2988), + [anon_sym___vectorcall] = ACTIONS(2988), + [anon_sym_LBRACE] = ACTIONS(2990), + [anon_sym_LBRACK] = ACTIONS(2988), + [anon_sym_static] = ACTIONS(2988), + [anon_sym_register] = ACTIONS(2988), + [anon_sym_inline] = ACTIONS(2988), + [anon_sym_thread_local] = ACTIONS(2988), + [anon_sym_const] = ACTIONS(2988), + [anon_sym_constexpr] = ACTIONS(2988), + [anon_sym_volatile] = ACTIONS(2988), + [anon_sym_restrict] = ACTIONS(2988), + [anon_sym___restrict__] = ACTIONS(2988), + [anon_sym__Atomic] = ACTIONS(2988), + [anon_sym__Noreturn] = ACTIONS(2988), + [anon_sym_noreturn] = ACTIONS(2988), + [anon_sym_mutable] = ACTIONS(2988), + [anon_sym_constinit] = ACTIONS(2988), + [anon_sym_consteval] = ACTIONS(2988), + [anon_sym_signed] = ACTIONS(2988), + [anon_sym_unsigned] = ACTIONS(2988), + [anon_sym_long] = ACTIONS(2988), + [anon_sym_short] = ACTIONS(2988), + [sym_primitive_type] = ACTIONS(2988), + [anon_sym_enum] = ACTIONS(2988), + [anon_sym_class] = ACTIONS(2988), + [anon_sym_struct] = ACTIONS(2988), + [anon_sym_union] = ACTIONS(2988), + [anon_sym_if] = ACTIONS(2988), + [anon_sym_else] = ACTIONS(2988), + [anon_sym_switch] = ACTIONS(2988), + [anon_sym_case] = ACTIONS(2988), + [anon_sym_default] = ACTIONS(2988), + [anon_sym_while] = ACTIONS(2988), + [anon_sym_do] = ACTIONS(2988), + [anon_sym_for] = ACTIONS(2988), + [anon_sym_return] = ACTIONS(2988), + [anon_sym_break] = ACTIONS(2988), + [anon_sym_continue] = ACTIONS(2988), + [anon_sym_goto] = ACTIONS(2988), + [anon_sym_not] = ACTIONS(2988), + [anon_sym_compl] = ACTIONS(2988), + [anon_sym_DASH_DASH] = ACTIONS(2990), + [anon_sym_PLUS_PLUS] = ACTIONS(2990), + [anon_sym_sizeof] = ACTIONS(2988), + [anon_sym_offsetof] = ACTIONS(2988), + [anon_sym__Generic] = ACTIONS(2988), + [anon_sym_asm] = ACTIONS(2988), + [anon_sym___asm__] = ACTIONS(2988), + [sym_number_literal] = ACTIONS(2990), + [anon_sym_L_SQUOTE] = ACTIONS(2990), + [anon_sym_u_SQUOTE] = ACTIONS(2990), + [anon_sym_U_SQUOTE] = ACTIONS(2990), + [anon_sym_u8_SQUOTE] = ACTIONS(2990), + [anon_sym_SQUOTE] = ACTIONS(2990), + [anon_sym_L_DQUOTE] = ACTIONS(2990), + [anon_sym_u_DQUOTE] = ACTIONS(2990), + [anon_sym_U_DQUOTE] = ACTIONS(2990), + [anon_sym_u8_DQUOTE] = ACTIONS(2990), + [anon_sym_DQUOTE] = ACTIONS(2990), + [sym_true] = ACTIONS(2988), + [sym_false] = ACTIONS(2988), + [anon_sym_NULL] = ACTIONS(2988), + [anon_sym_nullptr] = ACTIONS(2988), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2988), + [anon_sym_decltype] = ACTIONS(2988), + [anon_sym_virtual] = ACTIONS(2988), + [anon_sym_explicit] = ACTIONS(2988), + [anon_sym_typename] = ACTIONS(2988), + [anon_sym_template] = ACTIONS(2988), + [anon_sym_operator] = ACTIONS(2988), + [anon_sym_try] = ACTIONS(2988), + [anon_sym_delete] = ACTIONS(2988), + [anon_sym_throw] = ACTIONS(2988), + [anon_sym_namespace] = ACTIONS(2988), + [anon_sym_using] = ACTIONS(2988), + [anon_sym_static_assert] = ACTIONS(2988), + [anon_sym_concept] = ACTIONS(2988), + [anon_sym_co_return] = ACTIONS(2988), + [anon_sym_co_yield] = ACTIONS(2988), + [anon_sym_R_DQUOTE] = ACTIONS(2990), + [anon_sym_LR_DQUOTE] = ACTIONS(2990), + [anon_sym_uR_DQUOTE] = ACTIONS(2990), + [anon_sym_UR_DQUOTE] = ACTIONS(2990), + [anon_sym_u8R_DQUOTE] = ACTIONS(2990), + [anon_sym_co_await] = ACTIONS(2988), + [anon_sym_new] = ACTIONS(2988), + [anon_sym_requires] = ACTIONS(2988), + [sym_this] = ACTIONS(2988), + }, + [951] = { + [ts_builtin_sym_end] = ACTIONS(3050), + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), + }, + [952] = { + [ts_builtin_sym_end] = ACTIONS(3050), + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), + }, + [953] = { + [sym_identifier] = ACTIONS(2988), + [aux_sym_preproc_include_token1] = ACTIONS(2988), + [aux_sym_preproc_def_token1] = ACTIONS(2988), + [aux_sym_preproc_if_token1] = ACTIONS(2988), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2988), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2988), + [sym_preproc_directive] = ACTIONS(2988), + [anon_sym_LPAREN2] = ACTIONS(2990), + [anon_sym_BANG] = ACTIONS(2990), + [anon_sym_TILDE] = ACTIONS(2990), + [anon_sym_DASH] = ACTIONS(2988), + [anon_sym_PLUS] = ACTIONS(2988), + [anon_sym_STAR] = ACTIONS(2990), + [anon_sym_AMP_AMP] = ACTIONS(2990), + [anon_sym_AMP] = ACTIONS(2988), + [anon_sym_SEMI] = ACTIONS(2990), + [anon_sym_typedef] = ACTIONS(2988), + [anon_sym_extern] = ACTIONS(2988), + [anon_sym___attribute__] = ACTIONS(2988), + [anon_sym_COLON_COLON] = ACTIONS(2990), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2990), + [anon_sym___declspec] = ACTIONS(2988), + [anon_sym___based] = ACTIONS(2988), + [anon_sym___cdecl] = ACTIONS(2988), + [anon_sym___clrcall] = ACTIONS(2988), + [anon_sym___stdcall] = ACTIONS(2988), + [anon_sym___fastcall] = ACTIONS(2988), + [anon_sym___thiscall] = ACTIONS(2988), + [anon_sym___vectorcall] = ACTIONS(2988), + [anon_sym_LBRACE] = ACTIONS(2990), + [anon_sym_RBRACE] = ACTIONS(2990), + [anon_sym_LBRACK] = ACTIONS(2988), + [anon_sym_static] = ACTIONS(2988), + [anon_sym_register] = ACTIONS(2988), + [anon_sym_inline] = ACTIONS(2988), + [anon_sym_thread_local] = ACTIONS(2988), + [anon_sym_const] = ACTIONS(2988), + [anon_sym_constexpr] = ACTIONS(2988), + [anon_sym_volatile] = ACTIONS(2988), + [anon_sym_restrict] = ACTIONS(2988), + [anon_sym___restrict__] = ACTIONS(2988), + [anon_sym__Atomic] = ACTIONS(2988), + [anon_sym__Noreturn] = ACTIONS(2988), + [anon_sym_noreturn] = ACTIONS(2988), + [anon_sym_mutable] = ACTIONS(2988), + [anon_sym_constinit] = ACTIONS(2988), + [anon_sym_consteval] = ACTIONS(2988), + [anon_sym_signed] = ACTIONS(2988), + [anon_sym_unsigned] = ACTIONS(2988), + [anon_sym_long] = ACTIONS(2988), + [anon_sym_short] = ACTIONS(2988), + [sym_primitive_type] = ACTIONS(2988), + [anon_sym_enum] = ACTIONS(2988), + [anon_sym_class] = ACTIONS(2988), + [anon_sym_struct] = ACTIONS(2988), + [anon_sym_union] = ACTIONS(2988), + [anon_sym_if] = ACTIONS(2988), + [anon_sym_else] = ACTIONS(2988), + [anon_sym_switch] = ACTIONS(2988), + [anon_sym_case] = ACTIONS(2988), + [anon_sym_default] = ACTIONS(2988), + [anon_sym_while] = ACTIONS(2988), + [anon_sym_do] = ACTIONS(2988), + [anon_sym_for] = ACTIONS(2988), + [anon_sym_return] = ACTIONS(2988), + [anon_sym_break] = ACTIONS(2988), + [anon_sym_continue] = ACTIONS(2988), + [anon_sym_goto] = ACTIONS(2988), + [anon_sym_not] = ACTIONS(2988), + [anon_sym_compl] = ACTIONS(2988), + [anon_sym_DASH_DASH] = ACTIONS(2990), + [anon_sym_PLUS_PLUS] = ACTIONS(2990), + [anon_sym_sizeof] = ACTIONS(2988), + [anon_sym_offsetof] = ACTIONS(2988), + [anon_sym__Generic] = ACTIONS(2988), + [anon_sym_asm] = ACTIONS(2988), + [anon_sym___asm__] = ACTIONS(2988), + [sym_number_literal] = ACTIONS(2990), + [anon_sym_L_SQUOTE] = ACTIONS(2990), + [anon_sym_u_SQUOTE] = ACTIONS(2990), + [anon_sym_U_SQUOTE] = ACTIONS(2990), + [anon_sym_u8_SQUOTE] = ACTIONS(2990), + [anon_sym_SQUOTE] = ACTIONS(2990), + [anon_sym_L_DQUOTE] = ACTIONS(2990), + [anon_sym_u_DQUOTE] = ACTIONS(2990), + [anon_sym_U_DQUOTE] = ACTIONS(2990), + [anon_sym_u8_DQUOTE] = ACTIONS(2990), + [anon_sym_DQUOTE] = ACTIONS(2990), + [sym_true] = ACTIONS(2988), + [sym_false] = ACTIONS(2988), + [anon_sym_NULL] = ACTIONS(2988), + [anon_sym_nullptr] = ACTIONS(2988), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2988), + [anon_sym_decltype] = ACTIONS(2988), + [anon_sym_virtual] = ACTIONS(2988), + [anon_sym_explicit] = ACTIONS(2988), + [anon_sym_typename] = ACTIONS(2988), + [anon_sym_template] = ACTIONS(2988), + [anon_sym_operator] = ACTIONS(2988), + [anon_sym_try] = ACTIONS(2988), + [anon_sym_delete] = ACTIONS(2988), + [anon_sym_throw] = ACTIONS(2988), + [anon_sym_namespace] = ACTIONS(2988), + [anon_sym_using] = ACTIONS(2988), + [anon_sym_static_assert] = ACTIONS(2988), + [anon_sym_concept] = ACTIONS(2988), + [anon_sym_co_return] = ACTIONS(2988), + [anon_sym_co_yield] = ACTIONS(2988), + [anon_sym_R_DQUOTE] = ACTIONS(2990), + [anon_sym_LR_DQUOTE] = ACTIONS(2990), + [anon_sym_uR_DQUOTE] = ACTIONS(2990), + [anon_sym_UR_DQUOTE] = ACTIONS(2990), + [anon_sym_u8R_DQUOTE] = ACTIONS(2990), + [anon_sym_co_await] = ACTIONS(2988), + [anon_sym_new] = ACTIONS(2988), + [anon_sym_requires] = ACTIONS(2988), + [sym_this] = ACTIONS(2988), + }, + [954] = { + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token2] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), + }, + [955] = { + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token2] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), + }, + [956] = { + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token2] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), + }, + [957] = { + [ts_builtin_sym_end] = ACTIONS(3050), + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), + }, + [958] = { + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token2] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), + }, + [959] = { + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token2] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), + }, + [960] = { + [ts_builtin_sym_end] = ACTIONS(3050), + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), + }, + [961] = { + [sym_identifier] = ACTIONS(2970), + [aux_sym_preproc_include_token1] = ACTIONS(2970), + [aux_sym_preproc_def_token1] = ACTIONS(2970), + [aux_sym_preproc_if_token1] = ACTIONS(2970), + [aux_sym_preproc_if_token2] = ACTIONS(2970), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2970), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2970), + [sym_preproc_directive] = 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_AMP_AMP] = ACTIONS(2972), + [anon_sym_AMP] = ACTIONS(2970), + [anon_sym_SEMI] = ACTIONS(2972), + [anon_sym_typedef] = ACTIONS(2970), + [anon_sym_extern] = ACTIONS(2970), + [anon_sym___attribute__] = ACTIONS(2970), + [anon_sym_COLON_COLON] = ACTIONS(2972), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2972), + [anon_sym___declspec] = ACTIONS(2970), + [anon_sym___based] = ACTIONS(2970), + [anon_sym___cdecl] = ACTIONS(2970), + [anon_sym___clrcall] = ACTIONS(2970), + [anon_sym___stdcall] = ACTIONS(2970), + [anon_sym___fastcall] = ACTIONS(2970), + [anon_sym___thiscall] = ACTIONS(2970), + [anon_sym___vectorcall] = ACTIONS(2970), + [anon_sym_LBRACE] = ACTIONS(2972), + [anon_sym_LBRACK] = ACTIONS(2970), + [anon_sym_static] = ACTIONS(2970), + [anon_sym_register] = ACTIONS(2970), + [anon_sym_inline] = ACTIONS(2970), + [anon_sym_thread_local] = 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_noreturn] = ACTIONS(2970), + [anon_sym_mutable] = ACTIONS(2970), + [anon_sym_constinit] = ACTIONS(2970), + [anon_sym_consteval] = ACTIONS(2970), + [anon_sym_signed] = ACTIONS(2970), + [anon_sym_unsigned] = ACTIONS(2970), + [anon_sym_long] = ACTIONS(2970), + [anon_sym_short] = ACTIONS(2970), + [sym_primitive_type] = ACTIONS(2970), + [anon_sym_enum] = ACTIONS(2970), + [anon_sym_class] = ACTIONS(2970), + [anon_sym_struct] = ACTIONS(2970), + [anon_sym_union] = ACTIONS(2970), + [anon_sym_if] = ACTIONS(2970), + [anon_sym_else] = ACTIONS(3607), + [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_return] = ACTIONS(2970), + [anon_sym_break] = ACTIONS(2970), + [anon_sym_continue] = ACTIONS(2970), + [anon_sym_goto] = ACTIONS(2970), + [anon_sym_not] = ACTIONS(2970), + [anon_sym_compl] = ACTIONS(2970), + [anon_sym_DASH_DASH] = ACTIONS(2972), + [anon_sym_PLUS_PLUS] = ACTIONS(2972), + [anon_sym_sizeof] = ACTIONS(2970), + [anon_sym_offsetof] = ACTIONS(2970), + [anon_sym__Generic] = 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_L_DQUOTE] = ACTIONS(2972), + [anon_sym_u_DQUOTE] = ACTIONS(2972), + [anon_sym_U_DQUOTE] = ACTIONS(2972), + [anon_sym_u8_DQUOTE] = ACTIONS(2972), + [anon_sym_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), + [sym_auto] = ACTIONS(2970), + [anon_sym_decltype] = ACTIONS(2970), + [anon_sym_virtual] = ACTIONS(2970), + [anon_sym_explicit] = ACTIONS(2970), + [anon_sym_typename] = ACTIONS(2970), + [anon_sym_template] = ACTIONS(2970), + [anon_sym_operator] = ACTIONS(2970), + [anon_sym_try] = ACTIONS(2970), + [anon_sym_delete] = ACTIONS(2970), + [anon_sym_throw] = ACTIONS(2970), + [anon_sym_namespace] = ACTIONS(2970), + [anon_sym_using] = ACTIONS(2970), + [anon_sym_static_assert] = ACTIONS(2970), + [anon_sym_concept] = ACTIONS(2970), + [anon_sym_co_return] = ACTIONS(2970), + [anon_sym_co_yield] = ACTIONS(2970), + [anon_sym_R_DQUOTE] = ACTIONS(2972), + [anon_sym_LR_DQUOTE] = ACTIONS(2972), + [anon_sym_uR_DQUOTE] = ACTIONS(2972), + [anon_sym_UR_DQUOTE] = ACTIONS(2972), + [anon_sym_u8R_DQUOTE] = ACTIONS(2972), + [anon_sym_co_await] = ACTIONS(2970), + [anon_sym_new] = ACTIONS(2970), + [anon_sym_requires] = ACTIONS(2970), + [sym_this] = ACTIONS(2970), + }, + [962] = { + [ts_builtin_sym_end] = ACTIONS(3038), + [sym_identifier] = ACTIONS(3036), + [aux_sym_preproc_include_token1] = ACTIONS(3036), + [aux_sym_preproc_def_token1] = ACTIONS(3036), + [aux_sym_preproc_if_token1] = ACTIONS(3036), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3036), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3036), + [sym_preproc_directive] = ACTIONS(3036), + [anon_sym_LPAREN2] = ACTIONS(3038), + [anon_sym_BANG] = ACTIONS(3038), + [anon_sym_TILDE] = ACTIONS(3038), + [anon_sym_DASH] = ACTIONS(3036), + [anon_sym_PLUS] = ACTIONS(3036), + [anon_sym_STAR] = ACTIONS(3038), + [anon_sym_AMP_AMP] = ACTIONS(3038), + [anon_sym_AMP] = ACTIONS(3036), + [anon_sym_SEMI] = ACTIONS(3038), + [anon_sym_typedef] = ACTIONS(3036), + [anon_sym_extern] = ACTIONS(3036), + [anon_sym___attribute__] = ACTIONS(3036), + [anon_sym_COLON_COLON] = ACTIONS(3038), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3038), + [anon_sym___declspec] = ACTIONS(3036), + [anon_sym___based] = ACTIONS(3036), + [anon_sym___cdecl] = ACTIONS(3036), + [anon_sym___clrcall] = ACTIONS(3036), + [anon_sym___stdcall] = ACTIONS(3036), + [anon_sym___fastcall] = ACTIONS(3036), + [anon_sym___thiscall] = ACTIONS(3036), + [anon_sym___vectorcall] = ACTIONS(3036), + [anon_sym_LBRACE] = ACTIONS(3038), + [anon_sym_LBRACK] = ACTIONS(3036), + [anon_sym_static] = ACTIONS(3036), + [anon_sym_register] = ACTIONS(3036), + [anon_sym_inline] = ACTIONS(3036), + [anon_sym_thread_local] = ACTIONS(3036), + [anon_sym_const] = ACTIONS(3036), + [anon_sym_constexpr] = ACTIONS(3036), + [anon_sym_volatile] = ACTIONS(3036), + [anon_sym_restrict] = ACTIONS(3036), + [anon_sym___restrict__] = ACTIONS(3036), + [anon_sym__Atomic] = ACTIONS(3036), + [anon_sym__Noreturn] = ACTIONS(3036), + [anon_sym_noreturn] = ACTIONS(3036), + [anon_sym_mutable] = ACTIONS(3036), + [anon_sym_constinit] = ACTIONS(3036), + [anon_sym_consteval] = ACTIONS(3036), + [anon_sym_signed] = ACTIONS(3036), + [anon_sym_unsigned] = ACTIONS(3036), + [anon_sym_long] = ACTIONS(3036), + [anon_sym_short] = ACTIONS(3036), + [sym_primitive_type] = ACTIONS(3036), + [anon_sym_enum] = ACTIONS(3036), + [anon_sym_class] = ACTIONS(3036), + [anon_sym_struct] = ACTIONS(3036), + [anon_sym_union] = ACTIONS(3036), + [anon_sym_if] = ACTIONS(3036), + [anon_sym_else] = ACTIONS(3036), + [anon_sym_switch] = ACTIONS(3036), + [anon_sym_case] = ACTIONS(3036), + [anon_sym_default] = ACTIONS(3036), + [anon_sym_while] = ACTIONS(3036), + [anon_sym_do] = ACTIONS(3036), + [anon_sym_for] = ACTIONS(3036), + [anon_sym_return] = ACTIONS(3036), + [anon_sym_break] = ACTIONS(3036), + [anon_sym_continue] = ACTIONS(3036), + [anon_sym_goto] = ACTIONS(3036), + [anon_sym_not] = ACTIONS(3036), + [anon_sym_compl] = ACTIONS(3036), + [anon_sym_DASH_DASH] = ACTIONS(3038), + [anon_sym_PLUS_PLUS] = ACTIONS(3038), + [anon_sym_sizeof] = ACTIONS(3036), + [anon_sym_offsetof] = ACTIONS(3036), + [anon_sym__Generic] = ACTIONS(3036), + [anon_sym_asm] = ACTIONS(3036), + [anon_sym___asm__] = ACTIONS(3036), + [sym_number_literal] = ACTIONS(3038), + [anon_sym_L_SQUOTE] = ACTIONS(3038), + [anon_sym_u_SQUOTE] = ACTIONS(3038), + [anon_sym_U_SQUOTE] = ACTIONS(3038), + [anon_sym_u8_SQUOTE] = ACTIONS(3038), + [anon_sym_SQUOTE] = ACTIONS(3038), + [anon_sym_L_DQUOTE] = ACTIONS(3038), + [anon_sym_u_DQUOTE] = ACTIONS(3038), + [anon_sym_U_DQUOTE] = ACTIONS(3038), + [anon_sym_u8_DQUOTE] = ACTIONS(3038), + [anon_sym_DQUOTE] = ACTIONS(3038), + [sym_true] = ACTIONS(3036), + [sym_false] = ACTIONS(3036), + [anon_sym_NULL] = ACTIONS(3036), + [anon_sym_nullptr] = ACTIONS(3036), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3036), + [anon_sym_decltype] = ACTIONS(3036), + [anon_sym_virtual] = ACTIONS(3036), + [anon_sym_explicit] = ACTIONS(3036), + [anon_sym_typename] = ACTIONS(3036), + [anon_sym_template] = ACTIONS(3036), + [anon_sym_operator] = ACTIONS(3036), + [anon_sym_try] = ACTIONS(3036), + [anon_sym_delete] = ACTIONS(3036), + [anon_sym_throw] = ACTIONS(3036), + [anon_sym_namespace] = ACTIONS(3036), + [anon_sym_using] = ACTIONS(3036), + [anon_sym_static_assert] = ACTIONS(3036), + [anon_sym_concept] = ACTIONS(3036), + [anon_sym_co_return] = ACTIONS(3036), + [anon_sym_co_yield] = ACTIONS(3036), + [anon_sym_R_DQUOTE] = ACTIONS(3038), + [anon_sym_LR_DQUOTE] = ACTIONS(3038), + [anon_sym_uR_DQUOTE] = ACTIONS(3038), + [anon_sym_UR_DQUOTE] = ACTIONS(3038), + [anon_sym_u8R_DQUOTE] = ACTIONS(3038), + [anon_sym_co_await] = ACTIONS(3036), + [anon_sym_new] = ACTIONS(3036), + [anon_sym_requires] = ACTIONS(3036), + [sym_this] = ACTIONS(3036), + }, + [963] = { + [sym_identifier] = ACTIONS(2976), + [aux_sym_preproc_include_token1] = ACTIONS(2976), + [aux_sym_preproc_def_token1] = ACTIONS(2976), + [aux_sym_preproc_if_token1] = ACTIONS(2976), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2976), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2976), + [sym_preproc_directive] = ACTIONS(2976), + [anon_sym_LPAREN2] = ACTIONS(2978), + [anon_sym_BANG] = ACTIONS(2978), + [anon_sym_TILDE] = ACTIONS(2978), + [anon_sym_DASH] = ACTIONS(2976), + [anon_sym_PLUS] = ACTIONS(2976), + [anon_sym_STAR] = ACTIONS(2978), + [anon_sym_AMP_AMP] = ACTIONS(2978), + [anon_sym_AMP] = ACTIONS(2976), + [anon_sym_SEMI] = ACTIONS(2978), + [anon_sym_typedef] = ACTIONS(2976), + [anon_sym_extern] = ACTIONS(2976), + [anon_sym___attribute__] = ACTIONS(2976), + [anon_sym_COLON_COLON] = ACTIONS(2978), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2978), + [anon_sym___declspec] = ACTIONS(2976), + [anon_sym___based] = ACTIONS(2976), + [anon_sym___cdecl] = ACTIONS(2976), + [anon_sym___clrcall] = ACTIONS(2976), + [anon_sym___stdcall] = ACTIONS(2976), + [anon_sym___fastcall] = ACTIONS(2976), + [anon_sym___thiscall] = ACTIONS(2976), + [anon_sym___vectorcall] = ACTIONS(2976), + [anon_sym_LBRACE] = ACTIONS(2978), + [anon_sym_RBRACE] = ACTIONS(2978), + [anon_sym_LBRACK] = ACTIONS(2976), + [anon_sym_static] = ACTIONS(2976), + [anon_sym_register] = ACTIONS(2976), + [anon_sym_inline] = ACTIONS(2976), + [anon_sym_thread_local] = ACTIONS(2976), + [anon_sym_const] = ACTIONS(2976), + [anon_sym_constexpr] = ACTIONS(2976), + [anon_sym_volatile] = ACTIONS(2976), + [anon_sym_restrict] = ACTIONS(2976), + [anon_sym___restrict__] = ACTIONS(2976), + [anon_sym__Atomic] = ACTIONS(2976), + [anon_sym__Noreturn] = ACTIONS(2976), + [anon_sym_noreturn] = ACTIONS(2976), + [anon_sym_mutable] = ACTIONS(2976), + [anon_sym_constinit] = ACTIONS(2976), + [anon_sym_consteval] = ACTIONS(2976), + [anon_sym_signed] = ACTIONS(2976), + [anon_sym_unsigned] = ACTIONS(2976), + [anon_sym_long] = ACTIONS(2976), + [anon_sym_short] = ACTIONS(2976), + [sym_primitive_type] = ACTIONS(2976), + [anon_sym_enum] = ACTIONS(2976), + [anon_sym_class] = ACTIONS(2976), + [anon_sym_struct] = ACTIONS(2976), + [anon_sym_union] = ACTIONS(2976), + [anon_sym_if] = ACTIONS(2976), + [anon_sym_else] = ACTIONS(2976), + [anon_sym_switch] = ACTIONS(2976), + [anon_sym_case] = ACTIONS(2976), + [anon_sym_default] = ACTIONS(2976), + [anon_sym_while] = ACTIONS(2976), + [anon_sym_do] = ACTIONS(2976), + [anon_sym_for] = ACTIONS(2976), + [anon_sym_return] = ACTIONS(2976), + [anon_sym_break] = ACTIONS(2976), + [anon_sym_continue] = ACTIONS(2976), + [anon_sym_goto] = ACTIONS(2976), + [anon_sym_not] = ACTIONS(2976), + [anon_sym_compl] = ACTIONS(2976), + [anon_sym_DASH_DASH] = ACTIONS(2978), + [anon_sym_PLUS_PLUS] = ACTIONS(2978), + [anon_sym_sizeof] = ACTIONS(2976), + [anon_sym_offsetof] = ACTIONS(2976), + [anon_sym__Generic] = ACTIONS(2976), + [anon_sym_asm] = ACTIONS(2976), + [anon_sym___asm__] = ACTIONS(2976), + [sym_number_literal] = ACTIONS(2978), + [anon_sym_L_SQUOTE] = ACTIONS(2978), + [anon_sym_u_SQUOTE] = ACTIONS(2978), + [anon_sym_U_SQUOTE] = ACTIONS(2978), + [anon_sym_u8_SQUOTE] = ACTIONS(2978), + [anon_sym_SQUOTE] = ACTIONS(2978), + [anon_sym_L_DQUOTE] = ACTIONS(2978), + [anon_sym_u_DQUOTE] = ACTIONS(2978), + [anon_sym_U_DQUOTE] = ACTIONS(2978), + [anon_sym_u8_DQUOTE] = ACTIONS(2978), + [anon_sym_DQUOTE] = ACTIONS(2978), + [sym_true] = ACTIONS(2976), + [sym_false] = ACTIONS(2976), + [anon_sym_NULL] = ACTIONS(2976), + [anon_sym_nullptr] = ACTIONS(2976), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2976), + [anon_sym_decltype] = ACTIONS(2976), + [anon_sym_virtual] = ACTIONS(2976), + [anon_sym_explicit] = ACTIONS(2976), + [anon_sym_typename] = ACTIONS(2976), + [anon_sym_template] = ACTIONS(2976), + [anon_sym_operator] = ACTIONS(2976), + [anon_sym_try] = ACTIONS(2976), + [anon_sym_delete] = ACTIONS(2976), + [anon_sym_throw] = ACTIONS(2976), + [anon_sym_namespace] = ACTIONS(2976), + [anon_sym_using] = ACTIONS(2976), + [anon_sym_static_assert] = ACTIONS(2976), + [anon_sym_concept] = ACTIONS(2976), + [anon_sym_co_return] = ACTIONS(2976), + [anon_sym_co_yield] = ACTIONS(2976), + [anon_sym_R_DQUOTE] = ACTIONS(2978), + [anon_sym_LR_DQUOTE] = ACTIONS(2978), + [anon_sym_uR_DQUOTE] = ACTIONS(2978), + [anon_sym_UR_DQUOTE] = ACTIONS(2978), + [anon_sym_u8R_DQUOTE] = ACTIONS(2978), + [anon_sym_co_await] = ACTIONS(2976), + [anon_sym_new] = ACTIONS(2976), + [anon_sym_requires] = ACTIONS(2976), + [sym_this] = ACTIONS(2976), + }, + [964] = { + [ts_builtin_sym_end] = ACTIONS(3050), + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), + }, + [965] = { + [ts_builtin_sym_end] = ACTIONS(3042), + [sym_identifier] = ACTIONS(3040), + [aux_sym_preproc_include_token1] = ACTIONS(3040), + [aux_sym_preproc_def_token1] = ACTIONS(3040), + [aux_sym_preproc_if_token1] = ACTIONS(3040), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3040), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3040), + [sym_preproc_directive] = ACTIONS(3040), + [anon_sym_LPAREN2] = ACTIONS(3042), + [anon_sym_BANG] = ACTIONS(3042), + [anon_sym_TILDE] = ACTIONS(3042), + [anon_sym_DASH] = ACTIONS(3040), + [anon_sym_PLUS] = ACTIONS(3040), + [anon_sym_STAR] = ACTIONS(3042), + [anon_sym_AMP_AMP] = ACTIONS(3042), + [anon_sym_AMP] = ACTIONS(3040), + [anon_sym_SEMI] = ACTIONS(3042), + [anon_sym_typedef] = ACTIONS(3040), + [anon_sym_extern] = ACTIONS(3040), + [anon_sym___attribute__] = ACTIONS(3040), + [anon_sym_COLON_COLON] = ACTIONS(3042), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3042), + [anon_sym___declspec] = ACTIONS(3040), + [anon_sym___based] = ACTIONS(3040), + [anon_sym___cdecl] = ACTIONS(3040), + [anon_sym___clrcall] = ACTIONS(3040), + [anon_sym___stdcall] = ACTIONS(3040), + [anon_sym___fastcall] = ACTIONS(3040), + [anon_sym___thiscall] = ACTIONS(3040), + [anon_sym___vectorcall] = ACTIONS(3040), + [anon_sym_LBRACE] = ACTIONS(3042), + [anon_sym_LBRACK] = ACTIONS(3040), + [anon_sym_static] = ACTIONS(3040), + [anon_sym_register] = ACTIONS(3040), + [anon_sym_inline] = ACTIONS(3040), + [anon_sym_thread_local] = ACTIONS(3040), + [anon_sym_const] = ACTIONS(3040), + [anon_sym_constexpr] = ACTIONS(3040), + [anon_sym_volatile] = ACTIONS(3040), + [anon_sym_restrict] = ACTIONS(3040), + [anon_sym___restrict__] = ACTIONS(3040), + [anon_sym__Atomic] = ACTIONS(3040), + [anon_sym__Noreturn] = ACTIONS(3040), + [anon_sym_noreturn] = ACTIONS(3040), + [anon_sym_mutable] = ACTIONS(3040), + [anon_sym_constinit] = ACTIONS(3040), + [anon_sym_consteval] = ACTIONS(3040), + [anon_sym_signed] = ACTIONS(3040), + [anon_sym_unsigned] = ACTIONS(3040), + [anon_sym_long] = ACTIONS(3040), + [anon_sym_short] = ACTIONS(3040), + [sym_primitive_type] = ACTIONS(3040), + [anon_sym_enum] = ACTIONS(3040), + [anon_sym_class] = ACTIONS(3040), + [anon_sym_struct] = ACTIONS(3040), + [anon_sym_union] = ACTIONS(3040), + [anon_sym_if] = ACTIONS(3040), + [anon_sym_else] = ACTIONS(3040), + [anon_sym_switch] = ACTIONS(3040), + [anon_sym_case] = ACTIONS(3040), + [anon_sym_default] = ACTIONS(3040), + [anon_sym_while] = ACTIONS(3040), + [anon_sym_do] = ACTIONS(3040), + [anon_sym_for] = ACTIONS(3040), + [anon_sym_return] = ACTIONS(3040), + [anon_sym_break] = ACTIONS(3040), + [anon_sym_continue] = ACTIONS(3040), + [anon_sym_goto] = ACTIONS(3040), + [anon_sym_not] = ACTIONS(3040), + [anon_sym_compl] = ACTIONS(3040), + [anon_sym_DASH_DASH] = ACTIONS(3042), + [anon_sym_PLUS_PLUS] = ACTIONS(3042), + [anon_sym_sizeof] = ACTIONS(3040), + [anon_sym_offsetof] = ACTIONS(3040), + [anon_sym__Generic] = ACTIONS(3040), + [anon_sym_asm] = ACTIONS(3040), + [anon_sym___asm__] = ACTIONS(3040), + [sym_number_literal] = ACTIONS(3042), + [anon_sym_L_SQUOTE] = ACTIONS(3042), + [anon_sym_u_SQUOTE] = ACTIONS(3042), + [anon_sym_U_SQUOTE] = ACTIONS(3042), + [anon_sym_u8_SQUOTE] = ACTIONS(3042), + [anon_sym_SQUOTE] = ACTIONS(3042), + [anon_sym_L_DQUOTE] = ACTIONS(3042), + [anon_sym_u_DQUOTE] = ACTIONS(3042), + [anon_sym_U_DQUOTE] = ACTIONS(3042), + [anon_sym_u8_DQUOTE] = ACTIONS(3042), + [anon_sym_DQUOTE] = ACTIONS(3042), + [sym_true] = ACTIONS(3040), + [sym_false] = ACTIONS(3040), + [anon_sym_NULL] = ACTIONS(3040), + [anon_sym_nullptr] = ACTIONS(3040), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3040), + [anon_sym_decltype] = ACTIONS(3040), + [anon_sym_virtual] = ACTIONS(3040), + [anon_sym_explicit] = ACTIONS(3040), + [anon_sym_typename] = ACTIONS(3040), + [anon_sym_template] = ACTIONS(3040), + [anon_sym_operator] = ACTIONS(3040), + [anon_sym_try] = ACTIONS(3040), + [anon_sym_delete] = ACTIONS(3040), + [anon_sym_throw] = ACTIONS(3040), + [anon_sym_namespace] = ACTIONS(3040), + [anon_sym_using] = ACTIONS(3040), + [anon_sym_static_assert] = ACTIONS(3040), + [anon_sym_concept] = ACTIONS(3040), + [anon_sym_co_return] = ACTIONS(3040), + [anon_sym_co_yield] = ACTIONS(3040), + [anon_sym_R_DQUOTE] = ACTIONS(3042), + [anon_sym_LR_DQUOTE] = ACTIONS(3042), + [anon_sym_uR_DQUOTE] = ACTIONS(3042), + [anon_sym_UR_DQUOTE] = ACTIONS(3042), + [anon_sym_u8R_DQUOTE] = ACTIONS(3042), + [anon_sym_co_await] = ACTIONS(3040), + [anon_sym_new] = ACTIONS(3040), + [anon_sym_requires] = ACTIONS(3040), + [sym_this] = ACTIONS(3040), + }, + [966] = { + [ts_builtin_sym_end] = ACTIONS(3050), + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), + }, + [967] = { + [sym_identifier] = ACTIONS(2980), + [aux_sym_preproc_include_token1] = ACTIONS(2980), + [aux_sym_preproc_def_token1] = ACTIONS(2980), + [aux_sym_preproc_if_token1] = ACTIONS(2980), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2980), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2980), + [sym_preproc_directive] = ACTIONS(2980), + [anon_sym_LPAREN2] = ACTIONS(2982), + [anon_sym_BANG] = ACTIONS(2982), + [anon_sym_TILDE] = ACTIONS(2982), + [anon_sym_DASH] = ACTIONS(2980), + [anon_sym_PLUS] = ACTIONS(2980), + [anon_sym_STAR] = ACTIONS(2982), + [anon_sym_AMP_AMP] = ACTIONS(2982), + [anon_sym_AMP] = ACTIONS(2980), + [anon_sym_SEMI] = ACTIONS(2982), + [anon_sym_typedef] = ACTIONS(2980), + [anon_sym_extern] = ACTIONS(2980), + [anon_sym___attribute__] = ACTIONS(2980), + [anon_sym_COLON_COLON] = ACTIONS(2982), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2982), + [anon_sym___declspec] = ACTIONS(2980), + [anon_sym___based] = ACTIONS(2980), + [anon_sym___cdecl] = ACTIONS(2980), + [anon_sym___clrcall] = ACTIONS(2980), + [anon_sym___stdcall] = ACTIONS(2980), + [anon_sym___fastcall] = ACTIONS(2980), + [anon_sym___thiscall] = ACTIONS(2980), + [anon_sym___vectorcall] = ACTIONS(2980), + [anon_sym_LBRACE] = ACTIONS(2982), + [anon_sym_RBRACE] = ACTIONS(2982), + [anon_sym_LBRACK] = ACTIONS(2980), + [anon_sym_static] = ACTIONS(2980), + [anon_sym_register] = ACTIONS(2980), + [anon_sym_inline] = ACTIONS(2980), + [anon_sym_thread_local] = ACTIONS(2980), + [anon_sym_const] = ACTIONS(2980), + [anon_sym_constexpr] = ACTIONS(2980), + [anon_sym_volatile] = ACTIONS(2980), + [anon_sym_restrict] = ACTIONS(2980), + [anon_sym___restrict__] = ACTIONS(2980), + [anon_sym__Atomic] = ACTIONS(2980), + [anon_sym__Noreturn] = ACTIONS(2980), + [anon_sym_noreturn] = ACTIONS(2980), + [anon_sym_mutable] = ACTIONS(2980), + [anon_sym_constinit] = ACTIONS(2980), + [anon_sym_consteval] = ACTIONS(2980), + [anon_sym_signed] = ACTIONS(2980), + [anon_sym_unsigned] = ACTIONS(2980), + [anon_sym_long] = ACTIONS(2980), + [anon_sym_short] = ACTIONS(2980), + [sym_primitive_type] = ACTIONS(2980), + [anon_sym_enum] = ACTIONS(2980), + [anon_sym_class] = ACTIONS(2980), + [anon_sym_struct] = ACTIONS(2980), + [anon_sym_union] = ACTIONS(2980), + [anon_sym_if] = ACTIONS(2980), + [anon_sym_else] = ACTIONS(2980), + [anon_sym_switch] = ACTIONS(2980), + [anon_sym_case] = ACTIONS(2980), + [anon_sym_default] = ACTIONS(2980), + [anon_sym_while] = ACTIONS(2980), + [anon_sym_do] = ACTIONS(2980), + [anon_sym_for] = ACTIONS(2980), + [anon_sym_return] = ACTIONS(2980), + [anon_sym_break] = ACTIONS(2980), + [anon_sym_continue] = ACTIONS(2980), + [anon_sym_goto] = ACTIONS(2980), + [anon_sym_not] = ACTIONS(2980), + [anon_sym_compl] = ACTIONS(2980), + [anon_sym_DASH_DASH] = ACTIONS(2982), + [anon_sym_PLUS_PLUS] = ACTIONS(2982), + [anon_sym_sizeof] = ACTIONS(2980), + [anon_sym_offsetof] = ACTIONS(2980), + [anon_sym__Generic] = ACTIONS(2980), + [anon_sym_asm] = ACTIONS(2980), + [anon_sym___asm__] = ACTIONS(2980), + [sym_number_literal] = ACTIONS(2982), + [anon_sym_L_SQUOTE] = ACTIONS(2982), + [anon_sym_u_SQUOTE] = ACTIONS(2982), + [anon_sym_U_SQUOTE] = ACTIONS(2982), + [anon_sym_u8_SQUOTE] = ACTIONS(2982), + [anon_sym_SQUOTE] = ACTIONS(2982), + [anon_sym_L_DQUOTE] = ACTIONS(2982), + [anon_sym_u_DQUOTE] = ACTIONS(2982), + [anon_sym_U_DQUOTE] = ACTIONS(2982), + [anon_sym_u8_DQUOTE] = ACTIONS(2982), + [anon_sym_DQUOTE] = ACTIONS(2982), + [sym_true] = ACTIONS(2980), + [sym_false] = ACTIONS(2980), + [anon_sym_NULL] = ACTIONS(2980), + [anon_sym_nullptr] = ACTIONS(2980), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2980), + [anon_sym_decltype] = ACTIONS(2980), + [anon_sym_virtual] = ACTIONS(2980), + [anon_sym_explicit] = ACTIONS(2980), + [anon_sym_typename] = ACTIONS(2980), + [anon_sym_template] = ACTIONS(2980), + [anon_sym_operator] = ACTIONS(2980), + [anon_sym_try] = ACTIONS(2980), + [anon_sym_delete] = ACTIONS(2980), + [anon_sym_throw] = ACTIONS(2980), + [anon_sym_namespace] = ACTIONS(2980), + [anon_sym_using] = ACTIONS(2980), + [anon_sym_static_assert] = ACTIONS(2980), + [anon_sym_concept] = ACTIONS(2980), + [anon_sym_co_return] = ACTIONS(2980), + [anon_sym_co_yield] = ACTIONS(2980), + [anon_sym_R_DQUOTE] = ACTIONS(2982), + [anon_sym_LR_DQUOTE] = ACTIONS(2982), + [anon_sym_uR_DQUOTE] = ACTIONS(2982), + [anon_sym_UR_DQUOTE] = ACTIONS(2982), + [anon_sym_u8R_DQUOTE] = ACTIONS(2982), + [anon_sym_co_await] = ACTIONS(2980), + [anon_sym_new] = ACTIONS(2980), + [anon_sym_requires] = ACTIONS(2980), + [sym_this] = ACTIONS(2980), + }, + [968] = { + [sym_identifier] = ACTIONS(2984), + [aux_sym_preproc_include_token1] = ACTIONS(2984), + [aux_sym_preproc_def_token1] = ACTIONS(2984), + [aux_sym_preproc_if_token1] = ACTIONS(2984), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2984), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2984), + [sym_preproc_directive] = ACTIONS(2984), + [anon_sym_LPAREN2] = ACTIONS(2986), + [anon_sym_BANG] = ACTIONS(2986), + [anon_sym_TILDE] = ACTIONS(2986), + [anon_sym_DASH] = ACTIONS(2984), + [anon_sym_PLUS] = ACTIONS(2984), + [anon_sym_STAR] = ACTIONS(2986), + [anon_sym_AMP_AMP] = ACTIONS(2986), + [anon_sym_AMP] = ACTIONS(2984), + [anon_sym_SEMI] = ACTIONS(2986), + [anon_sym_typedef] = ACTIONS(2984), + [anon_sym_extern] = ACTIONS(2984), + [anon_sym___attribute__] = ACTIONS(2984), + [anon_sym_COLON_COLON] = ACTIONS(2986), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2986), + [anon_sym___declspec] = ACTIONS(2984), + [anon_sym___based] = ACTIONS(2984), + [anon_sym___cdecl] = ACTIONS(2984), + [anon_sym___clrcall] = ACTIONS(2984), + [anon_sym___stdcall] = ACTIONS(2984), + [anon_sym___fastcall] = ACTIONS(2984), + [anon_sym___thiscall] = ACTIONS(2984), + [anon_sym___vectorcall] = ACTIONS(2984), + [anon_sym_LBRACE] = ACTIONS(2986), + [anon_sym_RBRACE] = ACTIONS(2986), + [anon_sym_LBRACK] = ACTIONS(2984), + [anon_sym_static] = ACTIONS(2984), + [anon_sym_register] = ACTIONS(2984), + [anon_sym_inline] = ACTIONS(2984), + [anon_sym_thread_local] = ACTIONS(2984), + [anon_sym_const] = ACTIONS(2984), + [anon_sym_constexpr] = ACTIONS(2984), + [anon_sym_volatile] = ACTIONS(2984), + [anon_sym_restrict] = ACTIONS(2984), + [anon_sym___restrict__] = ACTIONS(2984), + [anon_sym__Atomic] = ACTIONS(2984), + [anon_sym__Noreturn] = ACTIONS(2984), + [anon_sym_noreturn] = ACTIONS(2984), + [anon_sym_mutable] = ACTIONS(2984), + [anon_sym_constinit] = ACTIONS(2984), + [anon_sym_consteval] = ACTIONS(2984), + [anon_sym_signed] = ACTIONS(2984), + [anon_sym_unsigned] = ACTIONS(2984), + [anon_sym_long] = ACTIONS(2984), + [anon_sym_short] = ACTIONS(2984), + [sym_primitive_type] = ACTIONS(2984), + [anon_sym_enum] = ACTIONS(2984), + [anon_sym_class] = ACTIONS(2984), + [anon_sym_struct] = ACTIONS(2984), + [anon_sym_union] = ACTIONS(2984), + [anon_sym_if] = ACTIONS(2984), + [anon_sym_else] = ACTIONS(2984), + [anon_sym_switch] = ACTIONS(2984), + [anon_sym_case] = ACTIONS(2984), + [anon_sym_default] = ACTIONS(2984), + [anon_sym_while] = ACTIONS(2984), + [anon_sym_do] = ACTIONS(2984), + [anon_sym_for] = ACTIONS(2984), + [anon_sym_return] = ACTIONS(2984), + [anon_sym_break] = ACTIONS(2984), + [anon_sym_continue] = ACTIONS(2984), + [anon_sym_goto] = ACTIONS(2984), + [anon_sym_not] = ACTIONS(2984), + [anon_sym_compl] = ACTIONS(2984), + [anon_sym_DASH_DASH] = ACTIONS(2986), + [anon_sym_PLUS_PLUS] = ACTIONS(2986), + [anon_sym_sizeof] = ACTIONS(2984), + [anon_sym_offsetof] = ACTIONS(2984), + [anon_sym__Generic] = ACTIONS(2984), + [anon_sym_asm] = ACTIONS(2984), + [anon_sym___asm__] = ACTIONS(2984), + [sym_number_literal] = ACTIONS(2986), + [anon_sym_L_SQUOTE] = ACTIONS(2986), + [anon_sym_u_SQUOTE] = ACTIONS(2986), + [anon_sym_U_SQUOTE] = ACTIONS(2986), + [anon_sym_u8_SQUOTE] = ACTIONS(2986), + [anon_sym_SQUOTE] = ACTIONS(2986), + [anon_sym_L_DQUOTE] = ACTIONS(2986), + [anon_sym_u_DQUOTE] = ACTIONS(2986), + [anon_sym_U_DQUOTE] = ACTIONS(2986), + [anon_sym_u8_DQUOTE] = ACTIONS(2986), + [anon_sym_DQUOTE] = ACTIONS(2986), + [sym_true] = ACTIONS(2984), + [sym_false] = ACTIONS(2984), + [anon_sym_NULL] = ACTIONS(2984), + [anon_sym_nullptr] = ACTIONS(2984), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2984), + [anon_sym_decltype] = ACTIONS(2984), + [anon_sym_virtual] = ACTIONS(2984), + [anon_sym_explicit] = ACTIONS(2984), + [anon_sym_typename] = ACTIONS(2984), + [anon_sym_template] = ACTIONS(2984), + [anon_sym_operator] = ACTIONS(2984), + [anon_sym_try] = ACTIONS(2984), + [anon_sym_delete] = ACTIONS(2984), + [anon_sym_throw] = ACTIONS(2984), + [anon_sym_namespace] = ACTIONS(2984), + [anon_sym_using] = ACTIONS(2984), + [anon_sym_static_assert] = ACTIONS(2984), + [anon_sym_concept] = ACTIONS(2984), + [anon_sym_co_return] = ACTIONS(2984), + [anon_sym_co_yield] = ACTIONS(2984), + [anon_sym_R_DQUOTE] = ACTIONS(2986), + [anon_sym_LR_DQUOTE] = ACTIONS(2986), + [anon_sym_uR_DQUOTE] = ACTIONS(2986), + [anon_sym_UR_DQUOTE] = ACTIONS(2986), + [anon_sym_u8R_DQUOTE] = ACTIONS(2986), + [anon_sym_co_await] = ACTIONS(2984), + [anon_sym_new] = ACTIONS(2984), + [anon_sym_requires] = ACTIONS(2984), + [sym_this] = ACTIONS(2984), + }, + [969] = { + [ts_builtin_sym_end] = ACTIONS(3050), + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), + }, + [970] = { + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token2] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), + }, + [971] = { + [sym_identifier] = ACTIONS(3036), + [aux_sym_preproc_include_token1] = ACTIONS(3036), + [aux_sym_preproc_def_token1] = ACTIONS(3036), + [aux_sym_preproc_if_token1] = ACTIONS(3036), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3036), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3036), + [sym_preproc_directive] = ACTIONS(3036), + [anon_sym_LPAREN2] = ACTIONS(3038), + [anon_sym_BANG] = ACTIONS(3038), + [anon_sym_TILDE] = ACTIONS(3038), + [anon_sym_DASH] = ACTIONS(3036), + [anon_sym_PLUS] = ACTIONS(3036), + [anon_sym_STAR] = ACTIONS(3038), + [anon_sym_AMP_AMP] = ACTIONS(3038), + [anon_sym_AMP] = ACTIONS(3036), + [anon_sym_SEMI] = ACTIONS(3038), + [anon_sym_typedef] = ACTIONS(3036), + [anon_sym_extern] = ACTIONS(3036), + [anon_sym___attribute__] = ACTIONS(3036), + [anon_sym_COLON_COLON] = ACTIONS(3038), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3038), + [anon_sym___declspec] = ACTIONS(3036), + [anon_sym___based] = ACTIONS(3036), + [anon_sym___cdecl] = ACTIONS(3036), + [anon_sym___clrcall] = ACTIONS(3036), + [anon_sym___stdcall] = ACTIONS(3036), + [anon_sym___fastcall] = ACTIONS(3036), + [anon_sym___thiscall] = ACTIONS(3036), + [anon_sym___vectorcall] = ACTIONS(3036), + [anon_sym_LBRACE] = ACTIONS(3038), + [anon_sym_RBRACE] = ACTIONS(3038), + [anon_sym_LBRACK] = ACTIONS(3036), + [anon_sym_static] = ACTIONS(3036), + [anon_sym_register] = ACTIONS(3036), + [anon_sym_inline] = ACTIONS(3036), + [anon_sym_thread_local] = ACTIONS(3036), + [anon_sym_const] = ACTIONS(3036), + [anon_sym_constexpr] = ACTIONS(3036), + [anon_sym_volatile] = ACTIONS(3036), + [anon_sym_restrict] = ACTIONS(3036), + [anon_sym___restrict__] = ACTIONS(3036), + [anon_sym__Atomic] = ACTIONS(3036), + [anon_sym__Noreturn] = ACTIONS(3036), + [anon_sym_noreturn] = ACTIONS(3036), + [anon_sym_mutable] = ACTIONS(3036), + [anon_sym_constinit] = ACTIONS(3036), + [anon_sym_consteval] = ACTIONS(3036), + [anon_sym_signed] = ACTIONS(3036), + [anon_sym_unsigned] = ACTIONS(3036), + [anon_sym_long] = ACTIONS(3036), + [anon_sym_short] = ACTIONS(3036), + [sym_primitive_type] = ACTIONS(3036), + [anon_sym_enum] = ACTIONS(3036), + [anon_sym_class] = ACTIONS(3036), + [anon_sym_struct] = ACTIONS(3036), + [anon_sym_union] = ACTIONS(3036), + [anon_sym_if] = ACTIONS(3036), + [anon_sym_else] = ACTIONS(3036), + [anon_sym_switch] = ACTIONS(3036), + [anon_sym_case] = ACTIONS(3036), + [anon_sym_default] = ACTIONS(3036), + [anon_sym_while] = ACTIONS(3036), + [anon_sym_do] = ACTIONS(3036), + [anon_sym_for] = ACTIONS(3036), + [anon_sym_return] = ACTIONS(3036), + [anon_sym_break] = ACTIONS(3036), + [anon_sym_continue] = ACTIONS(3036), + [anon_sym_goto] = ACTIONS(3036), + [anon_sym_not] = ACTIONS(3036), + [anon_sym_compl] = ACTIONS(3036), + [anon_sym_DASH_DASH] = ACTIONS(3038), + [anon_sym_PLUS_PLUS] = ACTIONS(3038), + [anon_sym_sizeof] = ACTIONS(3036), + [anon_sym_offsetof] = ACTIONS(3036), + [anon_sym__Generic] = ACTIONS(3036), + [anon_sym_asm] = ACTIONS(3036), + [anon_sym___asm__] = ACTIONS(3036), + [sym_number_literal] = ACTIONS(3038), + [anon_sym_L_SQUOTE] = ACTIONS(3038), + [anon_sym_u_SQUOTE] = ACTIONS(3038), + [anon_sym_U_SQUOTE] = ACTIONS(3038), + [anon_sym_u8_SQUOTE] = ACTIONS(3038), + [anon_sym_SQUOTE] = ACTIONS(3038), + [anon_sym_L_DQUOTE] = ACTIONS(3038), + [anon_sym_u_DQUOTE] = ACTIONS(3038), + [anon_sym_U_DQUOTE] = ACTIONS(3038), + [anon_sym_u8_DQUOTE] = ACTIONS(3038), + [anon_sym_DQUOTE] = ACTIONS(3038), + [sym_true] = ACTIONS(3036), + [sym_false] = ACTIONS(3036), + [anon_sym_NULL] = ACTIONS(3036), + [anon_sym_nullptr] = ACTIONS(3036), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3036), + [anon_sym_decltype] = ACTIONS(3036), + [anon_sym_virtual] = ACTIONS(3036), + [anon_sym_explicit] = ACTIONS(3036), + [anon_sym_typename] = ACTIONS(3036), + [anon_sym_template] = ACTIONS(3036), + [anon_sym_operator] = ACTIONS(3036), + [anon_sym_try] = ACTIONS(3036), + [anon_sym_delete] = ACTIONS(3036), + [anon_sym_throw] = ACTIONS(3036), + [anon_sym_namespace] = ACTIONS(3036), + [anon_sym_using] = ACTIONS(3036), + [anon_sym_static_assert] = ACTIONS(3036), + [anon_sym_concept] = ACTIONS(3036), + [anon_sym_co_return] = ACTIONS(3036), + [anon_sym_co_yield] = ACTIONS(3036), + [anon_sym_R_DQUOTE] = ACTIONS(3038), + [anon_sym_LR_DQUOTE] = ACTIONS(3038), + [anon_sym_uR_DQUOTE] = ACTIONS(3038), + [anon_sym_UR_DQUOTE] = ACTIONS(3038), + [anon_sym_u8R_DQUOTE] = ACTIONS(3038), + [anon_sym_co_await] = ACTIONS(3036), + [anon_sym_new] = ACTIONS(3036), + [anon_sym_requires] = ACTIONS(3036), + [sym_this] = ACTIONS(3036), + }, + [972] = { + [sym_identifier] = ACTIONS(3040), + [aux_sym_preproc_include_token1] = ACTIONS(3040), + [aux_sym_preproc_def_token1] = ACTIONS(3040), + [aux_sym_preproc_if_token1] = ACTIONS(3040), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3040), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3040), + [sym_preproc_directive] = ACTIONS(3040), + [anon_sym_LPAREN2] = ACTIONS(3042), + [anon_sym_BANG] = ACTIONS(3042), + [anon_sym_TILDE] = ACTIONS(3042), + [anon_sym_DASH] = ACTIONS(3040), + [anon_sym_PLUS] = ACTIONS(3040), + [anon_sym_STAR] = ACTIONS(3042), + [anon_sym_AMP_AMP] = ACTIONS(3042), + [anon_sym_AMP] = ACTIONS(3040), + [anon_sym_SEMI] = ACTIONS(3042), + [anon_sym_typedef] = ACTIONS(3040), + [anon_sym_extern] = ACTIONS(3040), + [anon_sym___attribute__] = ACTIONS(3040), + [anon_sym_COLON_COLON] = ACTIONS(3042), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3042), + [anon_sym___declspec] = ACTIONS(3040), + [anon_sym___based] = ACTIONS(3040), + [anon_sym___cdecl] = ACTIONS(3040), + [anon_sym___clrcall] = ACTIONS(3040), + [anon_sym___stdcall] = ACTIONS(3040), + [anon_sym___fastcall] = ACTIONS(3040), + [anon_sym___thiscall] = ACTIONS(3040), + [anon_sym___vectorcall] = ACTIONS(3040), + [anon_sym_LBRACE] = ACTIONS(3042), + [anon_sym_RBRACE] = ACTIONS(3042), + [anon_sym_LBRACK] = ACTIONS(3040), + [anon_sym_static] = ACTIONS(3040), + [anon_sym_register] = ACTIONS(3040), + [anon_sym_inline] = ACTIONS(3040), + [anon_sym_thread_local] = ACTIONS(3040), + [anon_sym_const] = ACTIONS(3040), + [anon_sym_constexpr] = ACTIONS(3040), + [anon_sym_volatile] = ACTIONS(3040), + [anon_sym_restrict] = ACTIONS(3040), + [anon_sym___restrict__] = ACTIONS(3040), + [anon_sym__Atomic] = ACTIONS(3040), + [anon_sym__Noreturn] = ACTIONS(3040), + [anon_sym_noreturn] = ACTIONS(3040), + [anon_sym_mutable] = ACTIONS(3040), + [anon_sym_constinit] = ACTIONS(3040), + [anon_sym_consteval] = ACTIONS(3040), + [anon_sym_signed] = ACTIONS(3040), + [anon_sym_unsigned] = ACTIONS(3040), + [anon_sym_long] = ACTIONS(3040), + [anon_sym_short] = ACTIONS(3040), + [sym_primitive_type] = ACTIONS(3040), + [anon_sym_enum] = ACTIONS(3040), + [anon_sym_class] = ACTIONS(3040), + [anon_sym_struct] = ACTIONS(3040), + [anon_sym_union] = ACTIONS(3040), + [anon_sym_if] = ACTIONS(3040), + [anon_sym_else] = ACTIONS(3040), + [anon_sym_switch] = ACTIONS(3040), + [anon_sym_case] = ACTIONS(3040), + [anon_sym_default] = ACTIONS(3040), + [anon_sym_while] = ACTIONS(3040), + [anon_sym_do] = ACTIONS(3040), + [anon_sym_for] = ACTIONS(3040), + [anon_sym_return] = ACTIONS(3040), + [anon_sym_break] = ACTIONS(3040), + [anon_sym_continue] = ACTIONS(3040), + [anon_sym_goto] = ACTIONS(3040), + [anon_sym_not] = ACTIONS(3040), + [anon_sym_compl] = ACTIONS(3040), + [anon_sym_DASH_DASH] = ACTIONS(3042), + [anon_sym_PLUS_PLUS] = ACTIONS(3042), + [anon_sym_sizeof] = ACTIONS(3040), + [anon_sym_offsetof] = ACTIONS(3040), + [anon_sym__Generic] = ACTIONS(3040), + [anon_sym_asm] = ACTIONS(3040), + [anon_sym___asm__] = ACTIONS(3040), + [sym_number_literal] = ACTIONS(3042), + [anon_sym_L_SQUOTE] = ACTIONS(3042), + [anon_sym_u_SQUOTE] = ACTIONS(3042), + [anon_sym_U_SQUOTE] = ACTIONS(3042), + [anon_sym_u8_SQUOTE] = ACTIONS(3042), + [anon_sym_SQUOTE] = ACTIONS(3042), + [anon_sym_L_DQUOTE] = ACTIONS(3042), + [anon_sym_u_DQUOTE] = ACTIONS(3042), + [anon_sym_U_DQUOTE] = ACTIONS(3042), + [anon_sym_u8_DQUOTE] = ACTIONS(3042), + [anon_sym_DQUOTE] = ACTIONS(3042), + [sym_true] = ACTIONS(3040), + [sym_false] = ACTIONS(3040), + [anon_sym_NULL] = ACTIONS(3040), + [anon_sym_nullptr] = ACTIONS(3040), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3040), + [anon_sym_decltype] = ACTIONS(3040), + [anon_sym_virtual] = ACTIONS(3040), + [anon_sym_explicit] = ACTIONS(3040), + [anon_sym_typename] = ACTIONS(3040), + [anon_sym_template] = ACTIONS(3040), + [anon_sym_operator] = ACTIONS(3040), + [anon_sym_try] = ACTIONS(3040), + [anon_sym_delete] = ACTIONS(3040), + [anon_sym_throw] = ACTIONS(3040), + [anon_sym_namespace] = ACTIONS(3040), + [anon_sym_using] = ACTIONS(3040), + [anon_sym_static_assert] = ACTIONS(3040), + [anon_sym_concept] = ACTIONS(3040), + [anon_sym_co_return] = ACTIONS(3040), + [anon_sym_co_yield] = ACTIONS(3040), + [anon_sym_R_DQUOTE] = ACTIONS(3042), + [anon_sym_LR_DQUOTE] = ACTIONS(3042), + [anon_sym_uR_DQUOTE] = ACTIONS(3042), + [anon_sym_UR_DQUOTE] = ACTIONS(3042), + [anon_sym_u8R_DQUOTE] = ACTIONS(3042), + [anon_sym_co_await] = ACTIONS(3040), + [anon_sym_new] = ACTIONS(3040), + [anon_sym_requires] = ACTIONS(3040), + [sym_this] = ACTIONS(3040), + }, + [973] = { + [sym_identifier] = ACTIONS(3044), + [aux_sym_preproc_include_token1] = ACTIONS(3044), + [aux_sym_preproc_def_token1] = ACTIONS(3044), + [aux_sym_preproc_if_token1] = ACTIONS(3044), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3044), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3044), + [sym_preproc_directive] = ACTIONS(3044), + [anon_sym_LPAREN2] = ACTIONS(3046), + [anon_sym_BANG] = ACTIONS(3046), + [anon_sym_TILDE] = ACTIONS(3046), + [anon_sym_DASH] = ACTIONS(3044), + [anon_sym_PLUS] = ACTIONS(3044), + [anon_sym_STAR] = ACTIONS(3046), + [anon_sym_AMP_AMP] = ACTIONS(3046), + [anon_sym_AMP] = ACTIONS(3044), + [anon_sym_SEMI] = ACTIONS(3046), + [anon_sym_typedef] = ACTIONS(3044), + [anon_sym_extern] = ACTIONS(3044), + [anon_sym___attribute__] = ACTIONS(3044), + [anon_sym_COLON_COLON] = ACTIONS(3046), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3046), + [anon_sym___declspec] = ACTIONS(3044), + [anon_sym___based] = ACTIONS(3044), + [anon_sym___cdecl] = ACTIONS(3044), + [anon_sym___clrcall] = ACTIONS(3044), + [anon_sym___stdcall] = ACTIONS(3044), + [anon_sym___fastcall] = ACTIONS(3044), + [anon_sym___thiscall] = ACTIONS(3044), + [anon_sym___vectorcall] = ACTIONS(3044), + [anon_sym_LBRACE] = ACTIONS(3046), + [anon_sym_RBRACE] = ACTIONS(3046), + [anon_sym_LBRACK] = ACTIONS(3044), + [anon_sym_static] = ACTIONS(3044), + [anon_sym_register] = ACTIONS(3044), + [anon_sym_inline] = ACTIONS(3044), + [anon_sym_thread_local] = ACTIONS(3044), + [anon_sym_const] = ACTIONS(3044), + [anon_sym_constexpr] = ACTIONS(3044), + [anon_sym_volatile] = ACTIONS(3044), + [anon_sym_restrict] = ACTIONS(3044), + [anon_sym___restrict__] = ACTIONS(3044), + [anon_sym__Atomic] = ACTIONS(3044), + [anon_sym__Noreturn] = ACTIONS(3044), + [anon_sym_noreturn] = ACTIONS(3044), + [anon_sym_mutable] = ACTIONS(3044), + [anon_sym_constinit] = ACTIONS(3044), + [anon_sym_consteval] = ACTIONS(3044), + [anon_sym_signed] = ACTIONS(3044), + [anon_sym_unsigned] = ACTIONS(3044), + [anon_sym_long] = ACTIONS(3044), + [anon_sym_short] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(3044), + [anon_sym_enum] = ACTIONS(3044), + [anon_sym_class] = ACTIONS(3044), + [anon_sym_struct] = ACTIONS(3044), + [anon_sym_union] = ACTIONS(3044), + [anon_sym_if] = ACTIONS(3044), + [anon_sym_else] = ACTIONS(3044), + [anon_sym_switch] = ACTIONS(3044), + [anon_sym_case] = ACTIONS(3044), + [anon_sym_default] = ACTIONS(3044), + [anon_sym_while] = ACTIONS(3044), + [anon_sym_do] = ACTIONS(3044), + [anon_sym_for] = ACTIONS(3044), + [anon_sym_return] = ACTIONS(3044), + [anon_sym_break] = ACTIONS(3044), + [anon_sym_continue] = ACTIONS(3044), + [anon_sym_goto] = ACTIONS(3044), + [anon_sym_not] = ACTIONS(3044), + [anon_sym_compl] = ACTIONS(3044), + [anon_sym_DASH_DASH] = ACTIONS(3046), + [anon_sym_PLUS_PLUS] = ACTIONS(3046), + [anon_sym_sizeof] = ACTIONS(3044), + [anon_sym_offsetof] = ACTIONS(3044), + [anon_sym__Generic] = ACTIONS(3044), + [anon_sym_asm] = ACTIONS(3044), + [anon_sym___asm__] = ACTIONS(3044), + [sym_number_literal] = ACTIONS(3046), + [anon_sym_L_SQUOTE] = ACTIONS(3046), + [anon_sym_u_SQUOTE] = ACTIONS(3046), + [anon_sym_U_SQUOTE] = ACTIONS(3046), + [anon_sym_u8_SQUOTE] = ACTIONS(3046), + [anon_sym_SQUOTE] = ACTIONS(3046), + [anon_sym_L_DQUOTE] = ACTIONS(3046), + [anon_sym_u_DQUOTE] = ACTIONS(3046), + [anon_sym_U_DQUOTE] = ACTIONS(3046), + [anon_sym_u8_DQUOTE] = ACTIONS(3046), + [anon_sym_DQUOTE] = ACTIONS(3046), + [sym_true] = ACTIONS(3044), + [sym_false] = ACTIONS(3044), + [anon_sym_NULL] = ACTIONS(3044), + [anon_sym_nullptr] = ACTIONS(3044), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3044), + [anon_sym_decltype] = ACTIONS(3044), + [anon_sym_virtual] = ACTIONS(3044), + [anon_sym_explicit] = ACTIONS(3044), + [anon_sym_typename] = ACTIONS(3044), + [anon_sym_template] = ACTIONS(3044), + [anon_sym_operator] = ACTIONS(3044), + [anon_sym_try] = ACTIONS(3044), + [anon_sym_delete] = ACTIONS(3044), + [anon_sym_throw] = ACTIONS(3044), + [anon_sym_namespace] = ACTIONS(3044), + [anon_sym_using] = ACTIONS(3044), + [anon_sym_static_assert] = ACTIONS(3044), + [anon_sym_concept] = ACTIONS(3044), + [anon_sym_co_return] = ACTIONS(3044), + [anon_sym_co_yield] = ACTIONS(3044), + [anon_sym_R_DQUOTE] = ACTIONS(3046), + [anon_sym_LR_DQUOTE] = ACTIONS(3046), + [anon_sym_uR_DQUOTE] = ACTIONS(3046), + [anon_sym_UR_DQUOTE] = ACTIONS(3046), + [anon_sym_u8R_DQUOTE] = ACTIONS(3046), + [anon_sym_co_await] = ACTIONS(3044), + [anon_sym_new] = ACTIONS(3044), + [anon_sym_requires] = ACTIONS(3044), + [sym_this] = ACTIONS(3044), + }, + [974] = { + [ts_builtin_sym_end] = ACTIONS(3046), + [sym_identifier] = ACTIONS(3044), + [aux_sym_preproc_include_token1] = ACTIONS(3044), + [aux_sym_preproc_def_token1] = ACTIONS(3044), + [aux_sym_preproc_if_token1] = ACTIONS(3044), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3044), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3044), + [sym_preproc_directive] = ACTIONS(3044), + [anon_sym_LPAREN2] = ACTIONS(3046), + [anon_sym_BANG] = ACTIONS(3046), + [anon_sym_TILDE] = ACTIONS(3046), + [anon_sym_DASH] = ACTIONS(3044), + [anon_sym_PLUS] = ACTIONS(3044), + [anon_sym_STAR] = ACTIONS(3046), + [anon_sym_AMP_AMP] = ACTIONS(3046), + [anon_sym_AMP] = ACTIONS(3044), + [anon_sym_SEMI] = ACTIONS(3046), + [anon_sym_typedef] = ACTIONS(3044), + [anon_sym_extern] = ACTIONS(3044), + [anon_sym___attribute__] = ACTIONS(3044), + [anon_sym_COLON_COLON] = ACTIONS(3046), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3046), + [anon_sym___declspec] = ACTIONS(3044), + [anon_sym___based] = ACTIONS(3044), + [anon_sym___cdecl] = ACTIONS(3044), + [anon_sym___clrcall] = ACTIONS(3044), + [anon_sym___stdcall] = ACTIONS(3044), + [anon_sym___fastcall] = ACTIONS(3044), + [anon_sym___thiscall] = ACTIONS(3044), + [anon_sym___vectorcall] = ACTIONS(3044), + [anon_sym_LBRACE] = ACTIONS(3046), + [anon_sym_LBRACK] = ACTIONS(3044), + [anon_sym_static] = ACTIONS(3044), + [anon_sym_register] = ACTIONS(3044), + [anon_sym_inline] = ACTIONS(3044), + [anon_sym_thread_local] = ACTIONS(3044), + [anon_sym_const] = ACTIONS(3044), + [anon_sym_constexpr] = ACTIONS(3044), + [anon_sym_volatile] = ACTIONS(3044), + [anon_sym_restrict] = ACTIONS(3044), + [anon_sym___restrict__] = ACTIONS(3044), + [anon_sym__Atomic] = ACTIONS(3044), + [anon_sym__Noreturn] = ACTIONS(3044), + [anon_sym_noreturn] = ACTIONS(3044), + [anon_sym_mutable] = ACTIONS(3044), + [anon_sym_constinit] = ACTIONS(3044), + [anon_sym_consteval] = ACTIONS(3044), + [anon_sym_signed] = ACTIONS(3044), + [anon_sym_unsigned] = ACTIONS(3044), + [anon_sym_long] = ACTIONS(3044), + [anon_sym_short] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(3044), + [anon_sym_enum] = ACTIONS(3044), + [anon_sym_class] = ACTIONS(3044), + [anon_sym_struct] = ACTIONS(3044), + [anon_sym_union] = ACTIONS(3044), + [anon_sym_if] = ACTIONS(3044), + [anon_sym_else] = ACTIONS(3044), + [anon_sym_switch] = ACTIONS(3044), + [anon_sym_case] = ACTIONS(3044), + [anon_sym_default] = ACTIONS(3044), + [anon_sym_while] = ACTIONS(3044), + [anon_sym_do] = ACTIONS(3044), + [anon_sym_for] = ACTIONS(3044), + [anon_sym_return] = ACTIONS(3044), + [anon_sym_break] = ACTIONS(3044), + [anon_sym_continue] = ACTIONS(3044), + [anon_sym_goto] = ACTIONS(3044), + [anon_sym_not] = ACTIONS(3044), + [anon_sym_compl] = ACTIONS(3044), + [anon_sym_DASH_DASH] = ACTIONS(3046), + [anon_sym_PLUS_PLUS] = ACTIONS(3046), + [anon_sym_sizeof] = ACTIONS(3044), + [anon_sym_offsetof] = ACTIONS(3044), + [anon_sym__Generic] = ACTIONS(3044), + [anon_sym_asm] = ACTIONS(3044), + [anon_sym___asm__] = ACTIONS(3044), + [sym_number_literal] = ACTIONS(3046), + [anon_sym_L_SQUOTE] = ACTIONS(3046), + [anon_sym_u_SQUOTE] = ACTIONS(3046), + [anon_sym_U_SQUOTE] = ACTIONS(3046), + [anon_sym_u8_SQUOTE] = ACTIONS(3046), + [anon_sym_SQUOTE] = ACTIONS(3046), + [anon_sym_L_DQUOTE] = ACTIONS(3046), + [anon_sym_u_DQUOTE] = ACTIONS(3046), + [anon_sym_U_DQUOTE] = ACTIONS(3046), + [anon_sym_u8_DQUOTE] = ACTIONS(3046), + [anon_sym_DQUOTE] = ACTIONS(3046), + [sym_true] = ACTIONS(3044), + [sym_false] = ACTIONS(3044), + [anon_sym_NULL] = ACTIONS(3044), + [anon_sym_nullptr] = ACTIONS(3044), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3044), + [anon_sym_decltype] = ACTIONS(3044), + [anon_sym_virtual] = ACTIONS(3044), + [anon_sym_explicit] = ACTIONS(3044), + [anon_sym_typename] = ACTIONS(3044), + [anon_sym_template] = ACTIONS(3044), + [anon_sym_operator] = ACTIONS(3044), + [anon_sym_try] = ACTIONS(3044), + [anon_sym_delete] = ACTIONS(3044), + [anon_sym_throw] = ACTIONS(3044), + [anon_sym_namespace] = ACTIONS(3044), + [anon_sym_using] = ACTIONS(3044), + [anon_sym_static_assert] = ACTIONS(3044), + [anon_sym_concept] = ACTIONS(3044), + [anon_sym_co_return] = ACTIONS(3044), + [anon_sym_co_yield] = ACTIONS(3044), + [anon_sym_R_DQUOTE] = ACTIONS(3046), + [anon_sym_LR_DQUOTE] = ACTIONS(3046), + [anon_sym_uR_DQUOTE] = ACTIONS(3046), + [anon_sym_UR_DQUOTE] = ACTIONS(3046), + [anon_sym_u8R_DQUOTE] = ACTIONS(3046), + [anon_sym_co_await] = ACTIONS(3044), + [anon_sym_new] = ACTIONS(3044), + [anon_sym_requires] = ACTIONS(3044), + [sym_this] = ACTIONS(3044), + }, + [975] = { + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token2] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), + }, + [976] = { + [sym_identifier] = ACTIONS(2916), + [aux_sym_preproc_include_token1] = ACTIONS(2916), + [aux_sym_preproc_def_token1] = ACTIONS(2916), + [aux_sym_preproc_if_token1] = ACTIONS(2916), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2916), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2916), + [sym_preproc_directive] = ACTIONS(2916), + [anon_sym_LPAREN2] = ACTIONS(2918), + [anon_sym_BANG] = ACTIONS(2918), + [anon_sym_TILDE] = ACTIONS(2918), + [anon_sym_DASH] = ACTIONS(2916), + [anon_sym_PLUS] = ACTIONS(2916), + [anon_sym_STAR] = ACTIONS(2918), + [anon_sym_AMP_AMP] = ACTIONS(2918), + [anon_sym_AMP] = ACTIONS(2916), + [anon_sym_SEMI] = ACTIONS(2918), + [anon_sym_typedef] = ACTIONS(2916), + [anon_sym_extern] = ACTIONS(2916), + [anon_sym___attribute__] = ACTIONS(2916), + [anon_sym_COLON_COLON] = ACTIONS(2918), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2918), + [anon_sym___declspec] = ACTIONS(2916), + [anon_sym___based] = ACTIONS(2916), + [anon_sym___cdecl] = ACTIONS(2916), + [anon_sym___clrcall] = ACTIONS(2916), + [anon_sym___stdcall] = ACTIONS(2916), + [anon_sym___fastcall] = ACTIONS(2916), + [anon_sym___thiscall] = ACTIONS(2916), + [anon_sym___vectorcall] = ACTIONS(2916), + [anon_sym_LBRACE] = ACTIONS(2918), + [anon_sym_RBRACE] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(2916), + [anon_sym_static] = ACTIONS(2916), + [anon_sym_register] = ACTIONS(2916), + [anon_sym_inline] = ACTIONS(2916), + [anon_sym_thread_local] = ACTIONS(2916), + [anon_sym_const] = ACTIONS(2916), + [anon_sym_constexpr] = ACTIONS(2916), + [anon_sym_volatile] = ACTIONS(2916), + [anon_sym_restrict] = ACTIONS(2916), + [anon_sym___restrict__] = ACTIONS(2916), + [anon_sym__Atomic] = ACTIONS(2916), + [anon_sym__Noreturn] = ACTIONS(2916), + [anon_sym_noreturn] = ACTIONS(2916), + [anon_sym_mutable] = ACTIONS(2916), + [anon_sym_constinit] = ACTIONS(2916), + [anon_sym_consteval] = ACTIONS(2916), + [anon_sym_signed] = ACTIONS(2916), + [anon_sym_unsigned] = ACTIONS(2916), + [anon_sym_long] = ACTIONS(2916), + [anon_sym_short] = ACTIONS(2916), + [sym_primitive_type] = ACTIONS(2916), + [anon_sym_enum] = ACTIONS(2916), + [anon_sym_class] = ACTIONS(2916), + [anon_sym_struct] = ACTIONS(2916), + [anon_sym_union] = ACTIONS(2916), + [anon_sym_if] = ACTIONS(2916), + [anon_sym_else] = ACTIONS(2916), + [anon_sym_switch] = ACTIONS(2916), + [anon_sym_case] = ACTIONS(2916), + [anon_sym_default] = ACTIONS(2916), + [anon_sym_while] = ACTIONS(2916), + [anon_sym_do] = ACTIONS(2916), + [anon_sym_for] = ACTIONS(2916), + [anon_sym_return] = ACTIONS(2916), + [anon_sym_break] = ACTIONS(2916), + [anon_sym_continue] = ACTIONS(2916), + [anon_sym_goto] = ACTIONS(2916), + [anon_sym_not] = ACTIONS(2916), + [anon_sym_compl] = ACTIONS(2916), + [anon_sym_DASH_DASH] = ACTIONS(2918), + [anon_sym_PLUS_PLUS] = ACTIONS(2918), + [anon_sym_sizeof] = ACTIONS(2916), + [anon_sym_offsetof] = ACTIONS(2916), + [anon_sym__Generic] = ACTIONS(2916), + [anon_sym_asm] = ACTIONS(2916), + [anon_sym___asm__] = ACTIONS(2916), + [sym_number_literal] = ACTIONS(2918), + [anon_sym_L_SQUOTE] = ACTIONS(2918), + [anon_sym_u_SQUOTE] = ACTIONS(2918), + [anon_sym_U_SQUOTE] = ACTIONS(2918), + [anon_sym_u8_SQUOTE] = ACTIONS(2918), + [anon_sym_SQUOTE] = ACTIONS(2918), + [anon_sym_L_DQUOTE] = ACTIONS(2918), + [anon_sym_u_DQUOTE] = ACTIONS(2918), + [anon_sym_U_DQUOTE] = ACTIONS(2918), + [anon_sym_u8_DQUOTE] = ACTIONS(2918), + [anon_sym_DQUOTE] = ACTIONS(2918), + [sym_true] = ACTIONS(2916), + [sym_false] = ACTIONS(2916), + [anon_sym_NULL] = ACTIONS(2916), + [anon_sym_nullptr] = ACTIONS(2916), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2916), + [anon_sym_decltype] = ACTIONS(2916), + [anon_sym_virtual] = ACTIONS(2916), + [anon_sym_explicit] = ACTIONS(2916), + [anon_sym_typename] = ACTIONS(2916), + [anon_sym_template] = ACTIONS(2916), + [anon_sym_operator] = ACTIONS(2916), + [anon_sym_try] = ACTIONS(2916), + [anon_sym_delete] = ACTIONS(2916), + [anon_sym_throw] = ACTIONS(2916), + [anon_sym_namespace] = ACTIONS(2916), + [anon_sym_using] = ACTIONS(2916), + [anon_sym_static_assert] = ACTIONS(2916), + [anon_sym_concept] = ACTIONS(2916), + [anon_sym_co_return] = ACTIONS(2916), + [anon_sym_co_yield] = ACTIONS(2916), + [anon_sym_R_DQUOTE] = ACTIONS(2918), + [anon_sym_LR_DQUOTE] = ACTIONS(2918), + [anon_sym_uR_DQUOTE] = ACTIONS(2918), + [anon_sym_UR_DQUOTE] = ACTIONS(2918), + [anon_sym_u8R_DQUOTE] = ACTIONS(2918), + [anon_sym_co_await] = ACTIONS(2916), + [anon_sym_new] = ACTIONS(2916), + [anon_sym_requires] = ACTIONS(2916), + [sym_this] = ACTIONS(2916), + }, + [977] = { + [ts_builtin_sym_end] = ACTIONS(3050), + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), + }, + [978] = { + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_RBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), + }, + [979] = { + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token2] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), + }, + [980] = { + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token2] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), + }, + [981] = { + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_RBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), + }, + [982] = { + [ts_builtin_sym_end] = ACTIONS(2942), + [sym_identifier] = ACTIONS(2940), + [aux_sym_preproc_include_token1] = ACTIONS(2940), + [aux_sym_preproc_def_token1] = ACTIONS(2940), + [aux_sym_preproc_if_token1] = ACTIONS(2940), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2940), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2940), + [sym_preproc_directive] = ACTIONS(2940), + [anon_sym_LPAREN2] = ACTIONS(2942), + [anon_sym_BANG] = ACTIONS(2942), + [anon_sym_TILDE] = ACTIONS(2942), + [anon_sym_DASH] = ACTIONS(2940), + [anon_sym_PLUS] = ACTIONS(2940), + [anon_sym_STAR] = ACTIONS(2942), + [anon_sym_AMP_AMP] = ACTIONS(2942), + [anon_sym_AMP] = ACTIONS(2940), + [anon_sym_SEMI] = ACTIONS(2942), + [anon_sym_typedef] = ACTIONS(2940), + [anon_sym_extern] = ACTIONS(2940), + [anon_sym___attribute__] = ACTIONS(2940), + [anon_sym_COLON_COLON] = ACTIONS(2942), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2942), + [anon_sym___declspec] = ACTIONS(2940), + [anon_sym___based] = ACTIONS(2940), + [anon_sym___cdecl] = ACTIONS(2940), + [anon_sym___clrcall] = ACTIONS(2940), + [anon_sym___stdcall] = ACTIONS(2940), + [anon_sym___fastcall] = ACTIONS(2940), + [anon_sym___thiscall] = ACTIONS(2940), + [anon_sym___vectorcall] = ACTIONS(2940), + [anon_sym_LBRACE] = ACTIONS(2942), + [anon_sym_LBRACK] = ACTIONS(2940), + [anon_sym_static] = ACTIONS(2940), + [anon_sym_register] = ACTIONS(2940), + [anon_sym_inline] = ACTIONS(2940), + [anon_sym_thread_local] = ACTIONS(2940), + [anon_sym_const] = ACTIONS(2940), + [anon_sym_constexpr] = ACTIONS(2940), + [anon_sym_volatile] = ACTIONS(2940), + [anon_sym_restrict] = ACTIONS(2940), + [anon_sym___restrict__] = ACTIONS(2940), + [anon_sym__Atomic] = ACTIONS(2940), + [anon_sym__Noreturn] = ACTIONS(2940), + [anon_sym_noreturn] = ACTIONS(2940), + [anon_sym_mutable] = ACTIONS(2940), + [anon_sym_constinit] = ACTIONS(2940), + [anon_sym_consteval] = ACTIONS(2940), + [anon_sym_signed] = ACTIONS(2940), + [anon_sym_unsigned] = ACTIONS(2940), + [anon_sym_long] = ACTIONS(2940), + [anon_sym_short] = ACTIONS(2940), + [sym_primitive_type] = ACTIONS(2940), + [anon_sym_enum] = ACTIONS(2940), + [anon_sym_class] = ACTIONS(2940), + [anon_sym_struct] = ACTIONS(2940), + [anon_sym_union] = ACTIONS(2940), + [anon_sym_if] = ACTIONS(2940), + [anon_sym_else] = ACTIONS(2940), + [anon_sym_switch] = ACTIONS(2940), + [anon_sym_case] = ACTIONS(2940), + [anon_sym_default] = ACTIONS(2940), + [anon_sym_while] = ACTIONS(2940), + [anon_sym_do] = ACTIONS(2940), + [anon_sym_for] = ACTIONS(2940), + [anon_sym_return] = ACTIONS(2940), + [anon_sym_break] = ACTIONS(2940), + [anon_sym_continue] = ACTIONS(2940), + [anon_sym_goto] = ACTIONS(2940), + [anon_sym_not] = ACTIONS(2940), + [anon_sym_compl] = ACTIONS(2940), + [anon_sym_DASH_DASH] = ACTIONS(2942), + [anon_sym_PLUS_PLUS] = ACTIONS(2942), + [anon_sym_sizeof] = ACTIONS(2940), + [anon_sym_offsetof] = ACTIONS(2940), + [anon_sym__Generic] = ACTIONS(2940), + [anon_sym_asm] = ACTIONS(2940), + [anon_sym___asm__] = ACTIONS(2940), + [sym_number_literal] = ACTIONS(2942), + [anon_sym_L_SQUOTE] = ACTIONS(2942), + [anon_sym_u_SQUOTE] = ACTIONS(2942), + [anon_sym_U_SQUOTE] = ACTIONS(2942), + [anon_sym_u8_SQUOTE] = ACTIONS(2942), + [anon_sym_SQUOTE] = ACTIONS(2942), + [anon_sym_L_DQUOTE] = ACTIONS(2942), + [anon_sym_u_DQUOTE] = ACTIONS(2942), + [anon_sym_U_DQUOTE] = ACTIONS(2942), + [anon_sym_u8_DQUOTE] = ACTIONS(2942), + [anon_sym_DQUOTE] = ACTIONS(2942), + [sym_true] = ACTIONS(2940), + [sym_false] = ACTIONS(2940), + [anon_sym_NULL] = ACTIONS(2940), + [anon_sym_nullptr] = ACTIONS(2940), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2940), + [anon_sym_decltype] = ACTIONS(2940), + [anon_sym_virtual] = ACTIONS(2940), + [anon_sym_explicit] = ACTIONS(2940), + [anon_sym_typename] = ACTIONS(2940), + [anon_sym_template] = ACTIONS(2940), + [anon_sym_operator] = ACTIONS(2940), + [anon_sym_try] = ACTIONS(2940), + [anon_sym_delete] = ACTIONS(2940), + [anon_sym_throw] = ACTIONS(2940), + [anon_sym_namespace] = ACTIONS(2940), + [anon_sym_using] = ACTIONS(2940), + [anon_sym_static_assert] = ACTIONS(2940), + [anon_sym_concept] = ACTIONS(2940), + [anon_sym_co_return] = ACTIONS(2940), + [anon_sym_co_yield] = ACTIONS(2940), + [anon_sym_R_DQUOTE] = ACTIONS(2942), + [anon_sym_LR_DQUOTE] = ACTIONS(2942), + [anon_sym_uR_DQUOTE] = ACTIONS(2942), + [anon_sym_UR_DQUOTE] = ACTIONS(2942), + [anon_sym_u8R_DQUOTE] = ACTIONS(2942), + [anon_sym_co_await] = ACTIONS(2940), + [anon_sym_new] = ACTIONS(2940), + [anon_sym_requires] = ACTIONS(2940), + [sym_this] = ACTIONS(2940), + }, + [983] = { + [ts_builtin_sym_end] = ACTIONS(2540), + [sym_identifier] = ACTIONS(2542), + [aux_sym_preproc_include_token1] = ACTIONS(2542), + [aux_sym_preproc_def_token1] = ACTIONS(2542), + [anon_sym_COMMA] = ACTIONS(2960), + [aux_sym_preproc_if_token1] = ACTIONS(2542), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2542), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2542), + [sym_preproc_directive] = ACTIONS(2542), + [anon_sym_LPAREN2] = ACTIONS(2540), + [anon_sym_BANG] = ACTIONS(2540), + [anon_sym_TILDE] = ACTIONS(2540), + [anon_sym_DASH] = ACTIONS(2542), + [anon_sym_PLUS] = ACTIONS(2542), + [anon_sym_STAR] = ACTIONS(2540), + [anon_sym_AMP_AMP] = ACTIONS(2540), + [anon_sym_AMP] = ACTIONS(2542), + [anon_sym_SEMI] = ACTIONS(2960), + [anon_sym_typedef] = ACTIONS(2542), + [anon_sym_extern] = ACTIONS(2542), + [anon_sym___attribute__] = ACTIONS(2542), + [anon_sym_COLON_COLON] = ACTIONS(2540), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2540), + [anon_sym___declspec] = ACTIONS(2542), + [anon_sym___based] = ACTIONS(2542), + [anon_sym___cdecl] = ACTIONS(2542), + [anon_sym___clrcall] = ACTIONS(2542), + [anon_sym___stdcall] = ACTIONS(2542), + [anon_sym___fastcall] = ACTIONS(2542), + [anon_sym___thiscall] = ACTIONS(2542), + [anon_sym___vectorcall] = ACTIONS(2542), + [anon_sym_LBRACE] = ACTIONS(2540), + [anon_sym_LBRACK] = ACTIONS(2542), + [anon_sym_static] = ACTIONS(2542), + [anon_sym_register] = ACTIONS(2542), + [anon_sym_inline] = ACTIONS(2542), + [anon_sym_thread_local] = ACTIONS(2542), + [anon_sym_const] = ACTIONS(2542), + [anon_sym_constexpr] = ACTIONS(2542), + [anon_sym_volatile] = ACTIONS(2542), + [anon_sym_restrict] = ACTIONS(2542), + [anon_sym___restrict__] = ACTIONS(2542), + [anon_sym__Atomic] = ACTIONS(2542), + [anon_sym__Noreturn] = ACTIONS(2542), + [anon_sym_noreturn] = ACTIONS(2542), + [anon_sym_mutable] = ACTIONS(2542), + [anon_sym_constinit] = ACTIONS(2542), + [anon_sym_consteval] = ACTIONS(2542), + [anon_sym_signed] = ACTIONS(2542), + [anon_sym_unsigned] = ACTIONS(2542), + [anon_sym_long] = ACTIONS(2542), + [anon_sym_short] = ACTIONS(2542), + [sym_primitive_type] = ACTIONS(2542), + [anon_sym_enum] = ACTIONS(2542), + [anon_sym_class] = ACTIONS(2542), + [anon_sym_struct] = ACTIONS(2542), + [anon_sym_union] = ACTIONS(2542), + [anon_sym_if] = ACTIONS(2542), + [anon_sym_switch] = ACTIONS(2542), + [anon_sym_case] = ACTIONS(2542), + [anon_sym_default] = ACTIONS(2542), + [anon_sym_while] = ACTIONS(2542), + [anon_sym_do] = ACTIONS(2542), + [anon_sym_for] = ACTIONS(2542), + [anon_sym_return] = ACTIONS(2542), + [anon_sym_break] = ACTIONS(2542), + [anon_sym_continue] = ACTIONS(2542), + [anon_sym_goto] = ACTIONS(2542), + [anon_sym_not] = ACTIONS(2542), + [anon_sym_compl] = ACTIONS(2542), + [anon_sym_DASH_DASH] = ACTIONS(2540), + [anon_sym_PLUS_PLUS] = ACTIONS(2540), + [anon_sym_sizeof] = ACTIONS(2542), + [anon_sym_offsetof] = ACTIONS(2542), + [anon_sym__Generic] = ACTIONS(2542), + [anon_sym_asm] = ACTIONS(2542), + [anon_sym___asm__] = ACTIONS(2542), + [sym_number_literal] = ACTIONS(2540), + [anon_sym_L_SQUOTE] = ACTIONS(2540), + [anon_sym_u_SQUOTE] = ACTIONS(2540), + [anon_sym_U_SQUOTE] = ACTIONS(2540), + [anon_sym_u8_SQUOTE] = ACTIONS(2540), + [anon_sym_SQUOTE] = ACTIONS(2540), + [anon_sym_L_DQUOTE] = ACTIONS(2540), + [anon_sym_u_DQUOTE] = ACTIONS(2540), + [anon_sym_U_DQUOTE] = ACTIONS(2540), + [anon_sym_u8_DQUOTE] = ACTIONS(2540), + [anon_sym_DQUOTE] = ACTIONS(2540), + [sym_true] = ACTIONS(2542), + [sym_false] = ACTIONS(2542), + [anon_sym_NULL] = ACTIONS(2542), + [anon_sym_nullptr] = ACTIONS(2542), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2542), + [anon_sym_decltype] = ACTIONS(2542), + [anon_sym_virtual] = ACTIONS(2542), + [anon_sym_explicit] = ACTIONS(2542), + [anon_sym_typename] = ACTIONS(2542), + [anon_sym_template] = ACTIONS(2542), + [anon_sym_operator] = ACTIONS(2542), + [anon_sym_try] = ACTIONS(2542), + [anon_sym_delete] = ACTIONS(2542), + [anon_sym_throw] = ACTIONS(2542), + [anon_sym_namespace] = ACTIONS(2542), + [anon_sym_using] = ACTIONS(2542), + [anon_sym_static_assert] = ACTIONS(2542), + [anon_sym_concept] = ACTIONS(2542), + [anon_sym_co_return] = ACTIONS(2542), + [anon_sym_co_yield] = ACTIONS(2542), + [anon_sym_R_DQUOTE] = ACTIONS(2540), + [anon_sym_LR_DQUOTE] = ACTIONS(2540), + [anon_sym_uR_DQUOTE] = ACTIONS(2540), + [anon_sym_UR_DQUOTE] = ACTIONS(2540), + [anon_sym_u8R_DQUOTE] = ACTIONS(2540), + [anon_sym_co_await] = ACTIONS(2542), + [anon_sym_new] = ACTIONS(2542), + [anon_sym_requires] = ACTIONS(2542), + [sym_this] = ACTIONS(2542), + }, + [984] = { + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token2] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), + }, + [985] = { + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token2] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), + }, + [986] = { + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token2] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), + }, + [987] = { + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_RBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, [988] = { - [ts_builtin_sym_end] = ACTIONS(2796), - [sym_identifier] = ACTIONS(2794), - [aux_sym_preproc_include_token1] = ACTIONS(2794), - [aux_sym_preproc_def_token1] = ACTIONS(2794), - [aux_sym_preproc_if_token1] = ACTIONS(2794), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2794), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2794), - [sym_preproc_directive] = ACTIONS(2794), - [anon_sym_LPAREN2] = ACTIONS(2796), - [anon_sym_BANG] = ACTIONS(2796), - [anon_sym_TILDE] = ACTIONS(2796), - [anon_sym_DASH] = ACTIONS(2794), - [anon_sym_PLUS] = ACTIONS(2794), - [anon_sym_STAR] = ACTIONS(2796), - [anon_sym_AMP_AMP] = ACTIONS(2796), - [anon_sym_AMP] = ACTIONS(2794), - [anon_sym_SEMI] = ACTIONS(2796), - [anon_sym_typedef] = ACTIONS(2794), - [anon_sym_extern] = ACTIONS(2794), - [anon_sym___attribute__] = ACTIONS(2794), - [anon_sym_COLON_COLON] = ACTIONS(2796), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2796), - [anon_sym___declspec] = ACTIONS(2794), - [anon_sym___based] = ACTIONS(2794), - [anon_sym___cdecl] = ACTIONS(2794), - [anon_sym___clrcall] = ACTIONS(2794), - [anon_sym___stdcall] = ACTIONS(2794), - [anon_sym___fastcall] = ACTIONS(2794), - [anon_sym___thiscall] = ACTIONS(2794), - [anon_sym___vectorcall] = ACTIONS(2794), - [anon_sym_LBRACE] = ACTIONS(2796), - [anon_sym_LBRACK] = ACTIONS(2794), - [anon_sym_static] = ACTIONS(2794), - [anon_sym_register] = ACTIONS(2794), - [anon_sym_inline] = ACTIONS(2794), - [anon_sym_thread_local] = ACTIONS(2794), - [anon_sym_const] = ACTIONS(2794), - [anon_sym_volatile] = ACTIONS(2794), - [anon_sym_restrict] = ACTIONS(2794), - [anon_sym__Atomic] = ACTIONS(2794), - [anon_sym_mutable] = ACTIONS(2794), - [anon_sym_constexpr] = ACTIONS(2794), - [anon_sym_constinit] = ACTIONS(2794), - [anon_sym_consteval] = ACTIONS(2794), - [anon_sym_signed] = ACTIONS(2794), - [anon_sym_unsigned] = ACTIONS(2794), - [anon_sym_long] = ACTIONS(2794), - [anon_sym_short] = ACTIONS(2794), - [sym_primitive_type] = ACTIONS(2794), - [anon_sym_enum] = ACTIONS(2794), - [anon_sym_class] = ACTIONS(2794), - [anon_sym_struct] = ACTIONS(2794), - [anon_sym_union] = ACTIONS(2794), - [anon_sym_if] = ACTIONS(2794), - [anon_sym_switch] = ACTIONS(2794), - [anon_sym_case] = ACTIONS(2794), - [anon_sym_default] = ACTIONS(2794), - [anon_sym_while] = ACTIONS(2794), - [anon_sym_do] = ACTIONS(2794), - [anon_sym_for] = ACTIONS(2794), - [anon_sym_return] = ACTIONS(2794), - [anon_sym_break] = ACTIONS(2794), - [anon_sym_continue] = ACTIONS(2794), - [anon_sym_goto] = ACTIONS(2794), - [anon_sym_not] = ACTIONS(2794), - [anon_sym_compl] = ACTIONS(2794), - [anon_sym_DASH_DASH] = ACTIONS(2796), - [anon_sym_PLUS_PLUS] = ACTIONS(2796), - [anon_sym_sizeof] = ACTIONS(2794), - [sym_number_literal] = ACTIONS(2796), - [anon_sym_L_SQUOTE] = ACTIONS(2796), - [anon_sym_u_SQUOTE] = ACTIONS(2796), - [anon_sym_U_SQUOTE] = ACTIONS(2796), - [anon_sym_u8_SQUOTE] = ACTIONS(2796), - [anon_sym_SQUOTE] = ACTIONS(2796), - [anon_sym_L_DQUOTE] = ACTIONS(2796), - [anon_sym_u_DQUOTE] = ACTIONS(2796), - [anon_sym_U_DQUOTE] = ACTIONS(2796), - [anon_sym_u8_DQUOTE] = ACTIONS(2796), - [anon_sym_DQUOTE] = ACTIONS(2796), - [sym_true] = ACTIONS(2794), - [sym_false] = ACTIONS(2794), - [sym_null] = ACTIONS(2794), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2794), - [anon_sym_decltype] = ACTIONS(2794), - [anon_sym_virtual] = ACTIONS(2794), - [anon_sym_explicit] = ACTIONS(2794), - [anon_sym_typename] = ACTIONS(2794), - [anon_sym_template] = ACTIONS(2794), - [anon_sym_operator] = ACTIONS(2794), - [anon_sym_try] = ACTIONS(2794), - [anon_sym_delete] = ACTIONS(2794), - [anon_sym_throw] = ACTIONS(2794), - [anon_sym_namespace] = ACTIONS(2794), - [anon_sym_using] = ACTIONS(2794), - [anon_sym_static_assert] = ACTIONS(2794), - [anon_sym_concept] = ACTIONS(2794), - [anon_sym_co_return] = ACTIONS(2794), - [anon_sym_co_yield] = ACTIONS(2794), - [anon_sym_R_DQUOTE] = ACTIONS(2796), - [anon_sym_LR_DQUOTE] = ACTIONS(2796), - [anon_sym_uR_DQUOTE] = ACTIONS(2796), - [anon_sym_UR_DQUOTE] = ACTIONS(2796), - [anon_sym_u8R_DQUOTE] = ACTIONS(2796), - [anon_sym_co_await] = ACTIONS(2794), - [anon_sym_new] = ACTIONS(2794), - [anon_sym_requires] = ACTIONS(2794), - [sym_this] = ACTIONS(2794), - [sym_nullptr] = ACTIONS(2794), + [ts_builtin_sym_end] = ACTIONS(3087), + [sym_identifier] = ACTIONS(3085), + [aux_sym_preproc_include_token1] = ACTIONS(3085), + [aux_sym_preproc_def_token1] = ACTIONS(3085), + [aux_sym_preproc_if_token1] = ACTIONS(3085), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3085), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3085), + [sym_preproc_directive] = ACTIONS(3085), + [anon_sym_LPAREN2] = ACTIONS(3087), + [anon_sym_BANG] = ACTIONS(3087), + [anon_sym_TILDE] = ACTIONS(3087), + [anon_sym_DASH] = ACTIONS(3085), + [anon_sym_PLUS] = ACTIONS(3085), + [anon_sym_STAR] = ACTIONS(3087), + [anon_sym_AMP_AMP] = ACTIONS(3087), + [anon_sym_AMP] = ACTIONS(3085), + [anon_sym_SEMI] = ACTIONS(3087), + [anon_sym_typedef] = ACTIONS(3085), + [anon_sym_extern] = ACTIONS(3085), + [anon_sym___attribute__] = ACTIONS(3085), + [anon_sym_COLON_COLON] = ACTIONS(3087), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3087), + [anon_sym___declspec] = ACTIONS(3085), + [anon_sym___based] = ACTIONS(3085), + [anon_sym___cdecl] = ACTIONS(3085), + [anon_sym___clrcall] = ACTIONS(3085), + [anon_sym___stdcall] = ACTIONS(3085), + [anon_sym___fastcall] = ACTIONS(3085), + [anon_sym___thiscall] = ACTIONS(3085), + [anon_sym___vectorcall] = ACTIONS(3085), + [anon_sym_LBRACE] = ACTIONS(3087), + [anon_sym_LBRACK] = ACTIONS(3085), + [anon_sym_static] = ACTIONS(3085), + [anon_sym_register] = ACTIONS(3085), + [anon_sym_inline] = ACTIONS(3085), + [anon_sym_thread_local] = ACTIONS(3085), + [anon_sym_const] = ACTIONS(3085), + [anon_sym_constexpr] = ACTIONS(3085), + [anon_sym_volatile] = ACTIONS(3085), + [anon_sym_restrict] = ACTIONS(3085), + [anon_sym___restrict__] = ACTIONS(3085), + [anon_sym__Atomic] = ACTIONS(3085), + [anon_sym__Noreturn] = ACTIONS(3085), + [anon_sym_noreturn] = ACTIONS(3085), + [anon_sym_mutable] = ACTIONS(3085), + [anon_sym_constinit] = ACTIONS(3085), + [anon_sym_consteval] = ACTIONS(3085), + [anon_sym_signed] = ACTIONS(3085), + [anon_sym_unsigned] = ACTIONS(3085), + [anon_sym_long] = ACTIONS(3085), + [anon_sym_short] = ACTIONS(3085), + [sym_primitive_type] = ACTIONS(3085), + [anon_sym_enum] = ACTIONS(3085), + [anon_sym_class] = ACTIONS(3085), + [anon_sym_struct] = ACTIONS(3085), + [anon_sym_union] = ACTIONS(3085), + [anon_sym_if] = ACTIONS(3085), + [anon_sym_else] = ACTIONS(3085), + [anon_sym_switch] = ACTIONS(3085), + [anon_sym_case] = ACTIONS(3085), + [anon_sym_default] = ACTIONS(3085), + [anon_sym_while] = ACTIONS(3085), + [anon_sym_do] = ACTIONS(3085), + [anon_sym_for] = ACTIONS(3085), + [anon_sym_return] = ACTIONS(3085), + [anon_sym_break] = ACTIONS(3085), + [anon_sym_continue] = ACTIONS(3085), + [anon_sym_goto] = ACTIONS(3085), + [anon_sym_not] = ACTIONS(3085), + [anon_sym_compl] = ACTIONS(3085), + [anon_sym_DASH_DASH] = ACTIONS(3087), + [anon_sym_PLUS_PLUS] = ACTIONS(3087), + [anon_sym_sizeof] = ACTIONS(3085), + [anon_sym_offsetof] = ACTIONS(3085), + [anon_sym__Generic] = ACTIONS(3085), + [anon_sym_asm] = ACTIONS(3085), + [anon_sym___asm__] = ACTIONS(3085), + [sym_number_literal] = ACTIONS(3087), + [anon_sym_L_SQUOTE] = ACTIONS(3087), + [anon_sym_u_SQUOTE] = ACTIONS(3087), + [anon_sym_U_SQUOTE] = ACTIONS(3087), + [anon_sym_u8_SQUOTE] = ACTIONS(3087), + [anon_sym_SQUOTE] = ACTIONS(3087), + [anon_sym_L_DQUOTE] = ACTIONS(3087), + [anon_sym_u_DQUOTE] = ACTIONS(3087), + [anon_sym_U_DQUOTE] = ACTIONS(3087), + [anon_sym_u8_DQUOTE] = ACTIONS(3087), + [anon_sym_DQUOTE] = ACTIONS(3087), + [sym_true] = ACTIONS(3085), + [sym_false] = ACTIONS(3085), + [anon_sym_NULL] = ACTIONS(3085), + [anon_sym_nullptr] = ACTIONS(3085), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3085), + [anon_sym_decltype] = ACTIONS(3085), + [anon_sym_virtual] = ACTIONS(3085), + [anon_sym_explicit] = ACTIONS(3085), + [anon_sym_typename] = ACTIONS(3085), + [anon_sym_template] = ACTIONS(3085), + [anon_sym_operator] = ACTIONS(3085), + [anon_sym_try] = ACTIONS(3085), + [anon_sym_delete] = ACTIONS(3085), + [anon_sym_throw] = ACTIONS(3085), + [anon_sym_namespace] = ACTIONS(3085), + [anon_sym_using] = ACTIONS(3085), + [anon_sym_static_assert] = ACTIONS(3085), + [anon_sym_concept] = ACTIONS(3085), + [anon_sym_co_return] = ACTIONS(3085), + [anon_sym_co_yield] = ACTIONS(3085), + [anon_sym_R_DQUOTE] = ACTIONS(3087), + [anon_sym_LR_DQUOTE] = ACTIONS(3087), + [anon_sym_uR_DQUOTE] = ACTIONS(3087), + [anon_sym_UR_DQUOTE] = ACTIONS(3087), + [anon_sym_u8R_DQUOTE] = ACTIONS(3087), + [anon_sym_co_await] = ACTIONS(3085), + [anon_sym_new] = ACTIONS(3085), + [anon_sym_requires] = ACTIONS(3085), + [sym_this] = ACTIONS(3085), }, [989] = { - [sym_identifier] = ACTIONS(2694), - [aux_sym_preproc_include_token1] = ACTIONS(2694), - [aux_sym_preproc_def_token1] = ACTIONS(2694), - [aux_sym_preproc_if_token1] = ACTIONS(2694), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2694), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2694), - [sym_preproc_directive] = ACTIONS(2694), - [anon_sym_LPAREN2] = ACTIONS(2696), - [anon_sym_BANG] = ACTIONS(2696), - [anon_sym_TILDE] = ACTIONS(2696), - [anon_sym_DASH] = ACTIONS(2694), - [anon_sym_PLUS] = ACTIONS(2694), - [anon_sym_STAR] = ACTIONS(2696), - [anon_sym_AMP_AMP] = ACTIONS(2696), - [anon_sym_AMP] = ACTIONS(2694), - [anon_sym_SEMI] = ACTIONS(2696), - [anon_sym_typedef] = ACTIONS(2694), - [anon_sym_extern] = ACTIONS(2694), - [anon_sym___attribute__] = ACTIONS(2694), - [anon_sym_COLON_COLON] = ACTIONS(2696), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2696), - [anon_sym___declspec] = ACTIONS(2694), - [anon_sym___based] = ACTIONS(2694), - [anon_sym___cdecl] = ACTIONS(2694), - [anon_sym___clrcall] = ACTIONS(2694), - [anon_sym___stdcall] = ACTIONS(2694), - [anon_sym___fastcall] = ACTIONS(2694), - [anon_sym___thiscall] = ACTIONS(2694), - [anon_sym___vectorcall] = ACTIONS(2694), - [anon_sym_LBRACE] = ACTIONS(2696), - [anon_sym_RBRACE] = ACTIONS(2696), - [anon_sym_LBRACK] = ACTIONS(2694), - [anon_sym_static] = ACTIONS(2694), - [anon_sym_register] = ACTIONS(2694), - [anon_sym_inline] = ACTIONS(2694), - [anon_sym_thread_local] = ACTIONS(2694), - [anon_sym_const] = ACTIONS(2694), - [anon_sym_volatile] = ACTIONS(2694), - [anon_sym_restrict] = ACTIONS(2694), - [anon_sym__Atomic] = ACTIONS(2694), - [anon_sym_mutable] = ACTIONS(2694), - [anon_sym_constexpr] = ACTIONS(2694), - [anon_sym_constinit] = ACTIONS(2694), - [anon_sym_consteval] = ACTIONS(2694), - [anon_sym_signed] = ACTIONS(2694), - [anon_sym_unsigned] = ACTIONS(2694), - [anon_sym_long] = ACTIONS(2694), - [anon_sym_short] = ACTIONS(2694), - [sym_primitive_type] = ACTIONS(2694), - [anon_sym_enum] = ACTIONS(2694), - [anon_sym_class] = ACTIONS(2694), - [anon_sym_struct] = ACTIONS(2694), - [anon_sym_union] = ACTIONS(2694), - [anon_sym_if] = ACTIONS(2694), - [anon_sym_switch] = ACTIONS(2694), - [anon_sym_case] = ACTIONS(2694), - [anon_sym_default] = ACTIONS(2694), - [anon_sym_while] = ACTIONS(2694), - [anon_sym_do] = ACTIONS(2694), - [anon_sym_for] = ACTIONS(2694), - [anon_sym_return] = ACTIONS(2694), - [anon_sym_break] = ACTIONS(2694), - [anon_sym_continue] = ACTIONS(2694), - [anon_sym_goto] = ACTIONS(2694), - [anon_sym_not] = ACTIONS(2694), - [anon_sym_compl] = ACTIONS(2694), - [anon_sym_DASH_DASH] = ACTIONS(2696), - [anon_sym_PLUS_PLUS] = ACTIONS(2696), - [anon_sym_sizeof] = ACTIONS(2694), - [sym_number_literal] = ACTIONS(2696), - [anon_sym_L_SQUOTE] = ACTIONS(2696), - [anon_sym_u_SQUOTE] = ACTIONS(2696), - [anon_sym_U_SQUOTE] = ACTIONS(2696), - [anon_sym_u8_SQUOTE] = ACTIONS(2696), - [anon_sym_SQUOTE] = ACTIONS(2696), - [anon_sym_L_DQUOTE] = ACTIONS(2696), - [anon_sym_u_DQUOTE] = ACTIONS(2696), - [anon_sym_U_DQUOTE] = ACTIONS(2696), - [anon_sym_u8_DQUOTE] = ACTIONS(2696), - [anon_sym_DQUOTE] = ACTIONS(2696), - [sym_true] = ACTIONS(2694), - [sym_false] = ACTIONS(2694), - [sym_null] = ACTIONS(2694), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2694), - [anon_sym_decltype] = ACTIONS(2694), - [anon_sym_virtual] = ACTIONS(2694), - [anon_sym_explicit] = ACTIONS(2694), - [anon_sym_typename] = ACTIONS(2694), - [anon_sym_template] = ACTIONS(2694), - [anon_sym_operator] = ACTIONS(2694), - [anon_sym_try] = ACTIONS(2694), - [anon_sym_delete] = ACTIONS(2694), - [anon_sym_throw] = ACTIONS(2694), - [anon_sym_namespace] = ACTIONS(2694), - [anon_sym_using] = ACTIONS(2694), - [anon_sym_static_assert] = ACTIONS(2694), - [anon_sym_concept] = ACTIONS(2694), - [anon_sym_co_return] = ACTIONS(2694), - [anon_sym_co_yield] = ACTIONS(2694), - [anon_sym_R_DQUOTE] = ACTIONS(2696), - [anon_sym_LR_DQUOTE] = ACTIONS(2696), - [anon_sym_uR_DQUOTE] = ACTIONS(2696), - [anon_sym_UR_DQUOTE] = ACTIONS(2696), - [anon_sym_u8R_DQUOTE] = ACTIONS(2696), - [anon_sym_co_await] = ACTIONS(2694), - [anon_sym_new] = ACTIONS(2694), - [anon_sym_requires] = ACTIONS(2694), - [sym_this] = ACTIONS(2694), - [sym_nullptr] = ACTIONS(2694), + [ts_builtin_sym_end] = ACTIONS(2938), + [sym_identifier] = ACTIONS(2936), + [aux_sym_preproc_include_token1] = ACTIONS(2936), + [aux_sym_preproc_def_token1] = ACTIONS(2936), + [aux_sym_preproc_if_token1] = ACTIONS(2936), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2936), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2936), + [sym_preproc_directive] = ACTIONS(2936), + [anon_sym_LPAREN2] = ACTIONS(2938), + [anon_sym_BANG] = ACTIONS(2938), + [anon_sym_TILDE] = ACTIONS(2938), + [anon_sym_DASH] = ACTIONS(2936), + [anon_sym_PLUS] = ACTIONS(2936), + [anon_sym_STAR] = ACTIONS(2938), + [anon_sym_AMP_AMP] = ACTIONS(2938), + [anon_sym_AMP] = ACTIONS(2936), + [anon_sym_SEMI] = ACTIONS(2938), + [anon_sym_typedef] = ACTIONS(2936), + [anon_sym_extern] = ACTIONS(2936), + [anon_sym___attribute__] = ACTIONS(2936), + [anon_sym_COLON_COLON] = ACTIONS(2938), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2938), + [anon_sym___declspec] = ACTIONS(2936), + [anon_sym___based] = ACTIONS(2936), + [anon_sym___cdecl] = ACTIONS(2936), + [anon_sym___clrcall] = ACTIONS(2936), + [anon_sym___stdcall] = ACTIONS(2936), + [anon_sym___fastcall] = ACTIONS(2936), + [anon_sym___thiscall] = ACTIONS(2936), + [anon_sym___vectorcall] = ACTIONS(2936), + [anon_sym_LBRACE] = ACTIONS(2938), + [anon_sym_LBRACK] = ACTIONS(2936), + [anon_sym_static] = ACTIONS(2936), + [anon_sym_register] = ACTIONS(2936), + [anon_sym_inline] = ACTIONS(2936), + [anon_sym_thread_local] = ACTIONS(2936), + [anon_sym_const] = ACTIONS(2936), + [anon_sym_constexpr] = ACTIONS(2936), + [anon_sym_volatile] = ACTIONS(2936), + [anon_sym_restrict] = ACTIONS(2936), + [anon_sym___restrict__] = ACTIONS(2936), + [anon_sym__Atomic] = ACTIONS(2936), + [anon_sym__Noreturn] = ACTIONS(2936), + [anon_sym_noreturn] = ACTIONS(2936), + [anon_sym_mutable] = ACTIONS(2936), + [anon_sym_constinit] = ACTIONS(2936), + [anon_sym_consteval] = ACTIONS(2936), + [anon_sym_signed] = ACTIONS(2936), + [anon_sym_unsigned] = ACTIONS(2936), + [anon_sym_long] = ACTIONS(2936), + [anon_sym_short] = ACTIONS(2936), + [sym_primitive_type] = ACTIONS(2936), + [anon_sym_enum] = ACTIONS(2936), + [anon_sym_class] = ACTIONS(2936), + [anon_sym_struct] = ACTIONS(2936), + [anon_sym_union] = ACTIONS(2936), + [anon_sym_if] = ACTIONS(2936), + [anon_sym_else] = ACTIONS(2936), + [anon_sym_switch] = ACTIONS(2936), + [anon_sym_case] = ACTIONS(2936), + [anon_sym_default] = ACTIONS(2936), + [anon_sym_while] = ACTIONS(2936), + [anon_sym_do] = ACTIONS(2936), + [anon_sym_for] = ACTIONS(2936), + [anon_sym_return] = ACTIONS(2936), + [anon_sym_break] = ACTIONS(2936), + [anon_sym_continue] = ACTIONS(2936), + [anon_sym_goto] = ACTIONS(2936), + [anon_sym_not] = ACTIONS(2936), + [anon_sym_compl] = ACTIONS(2936), + [anon_sym_DASH_DASH] = ACTIONS(2938), + [anon_sym_PLUS_PLUS] = ACTIONS(2938), + [anon_sym_sizeof] = ACTIONS(2936), + [anon_sym_offsetof] = ACTIONS(2936), + [anon_sym__Generic] = ACTIONS(2936), + [anon_sym_asm] = ACTIONS(2936), + [anon_sym___asm__] = ACTIONS(2936), + [sym_number_literal] = ACTIONS(2938), + [anon_sym_L_SQUOTE] = ACTIONS(2938), + [anon_sym_u_SQUOTE] = ACTIONS(2938), + [anon_sym_U_SQUOTE] = ACTIONS(2938), + [anon_sym_u8_SQUOTE] = ACTIONS(2938), + [anon_sym_SQUOTE] = ACTIONS(2938), + [anon_sym_L_DQUOTE] = ACTIONS(2938), + [anon_sym_u_DQUOTE] = ACTIONS(2938), + [anon_sym_U_DQUOTE] = ACTIONS(2938), + [anon_sym_u8_DQUOTE] = ACTIONS(2938), + [anon_sym_DQUOTE] = ACTIONS(2938), + [sym_true] = ACTIONS(2936), + [sym_false] = ACTIONS(2936), + [anon_sym_NULL] = ACTIONS(2936), + [anon_sym_nullptr] = ACTIONS(2936), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2936), + [anon_sym_decltype] = ACTIONS(2936), + [anon_sym_virtual] = ACTIONS(2936), + [anon_sym_explicit] = ACTIONS(2936), + [anon_sym_typename] = ACTIONS(2936), + [anon_sym_template] = ACTIONS(2936), + [anon_sym_operator] = ACTIONS(2936), + [anon_sym_try] = ACTIONS(2936), + [anon_sym_delete] = ACTIONS(2936), + [anon_sym_throw] = ACTIONS(2936), + [anon_sym_namespace] = ACTIONS(2936), + [anon_sym_using] = ACTIONS(2936), + [anon_sym_static_assert] = ACTIONS(2936), + [anon_sym_concept] = ACTIONS(2936), + [anon_sym_co_return] = ACTIONS(2936), + [anon_sym_co_yield] = ACTIONS(2936), + [anon_sym_R_DQUOTE] = ACTIONS(2938), + [anon_sym_LR_DQUOTE] = ACTIONS(2938), + [anon_sym_uR_DQUOTE] = ACTIONS(2938), + [anon_sym_UR_DQUOTE] = ACTIONS(2938), + [anon_sym_u8R_DQUOTE] = ACTIONS(2938), + [anon_sym_co_await] = ACTIONS(2936), + [anon_sym_new] = ACTIONS(2936), + [anon_sym_requires] = ACTIONS(2936), + [sym_this] = ACTIONS(2936), }, [990] = { - [sym_identifier] = ACTIONS(2690), - [aux_sym_preproc_include_token1] = ACTIONS(2690), - [aux_sym_preproc_def_token1] = ACTIONS(2690), - [aux_sym_preproc_if_token1] = ACTIONS(2690), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2690), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2690), - [sym_preproc_directive] = ACTIONS(2690), - [anon_sym_LPAREN2] = ACTIONS(2692), - [anon_sym_BANG] = ACTIONS(2692), - [anon_sym_TILDE] = ACTIONS(2692), - [anon_sym_DASH] = ACTIONS(2690), - [anon_sym_PLUS] = ACTIONS(2690), - [anon_sym_STAR] = ACTIONS(2692), - [anon_sym_AMP_AMP] = ACTIONS(2692), - [anon_sym_AMP] = ACTIONS(2690), - [anon_sym_SEMI] = ACTIONS(2692), - [anon_sym_typedef] = ACTIONS(2690), - [anon_sym_extern] = ACTIONS(2690), - [anon_sym___attribute__] = ACTIONS(2690), - [anon_sym_COLON_COLON] = ACTIONS(2692), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2692), - [anon_sym___declspec] = ACTIONS(2690), - [anon_sym___based] = ACTIONS(2690), - [anon_sym___cdecl] = ACTIONS(2690), - [anon_sym___clrcall] = ACTIONS(2690), - [anon_sym___stdcall] = ACTIONS(2690), - [anon_sym___fastcall] = ACTIONS(2690), - [anon_sym___thiscall] = ACTIONS(2690), - [anon_sym___vectorcall] = ACTIONS(2690), - [anon_sym_LBRACE] = ACTIONS(2692), - [anon_sym_RBRACE] = ACTIONS(2692), - [anon_sym_LBRACK] = ACTIONS(2690), - [anon_sym_static] = ACTIONS(2690), - [anon_sym_register] = ACTIONS(2690), - [anon_sym_inline] = ACTIONS(2690), - [anon_sym_thread_local] = ACTIONS(2690), - [anon_sym_const] = ACTIONS(2690), - [anon_sym_volatile] = ACTIONS(2690), - [anon_sym_restrict] = ACTIONS(2690), - [anon_sym__Atomic] = ACTIONS(2690), - [anon_sym_mutable] = ACTIONS(2690), - [anon_sym_constexpr] = ACTIONS(2690), - [anon_sym_constinit] = ACTIONS(2690), - [anon_sym_consteval] = ACTIONS(2690), - [anon_sym_signed] = ACTIONS(2690), - [anon_sym_unsigned] = ACTIONS(2690), - [anon_sym_long] = ACTIONS(2690), - [anon_sym_short] = ACTIONS(2690), - [sym_primitive_type] = ACTIONS(2690), - [anon_sym_enum] = ACTIONS(2690), - [anon_sym_class] = ACTIONS(2690), - [anon_sym_struct] = ACTIONS(2690), - [anon_sym_union] = ACTIONS(2690), - [anon_sym_if] = ACTIONS(2690), - [anon_sym_switch] = ACTIONS(2690), - [anon_sym_case] = ACTIONS(2690), - [anon_sym_default] = ACTIONS(2690), - [anon_sym_while] = ACTIONS(2690), - [anon_sym_do] = ACTIONS(2690), - [anon_sym_for] = ACTIONS(2690), - [anon_sym_return] = ACTIONS(2690), - [anon_sym_break] = ACTIONS(2690), - [anon_sym_continue] = ACTIONS(2690), - [anon_sym_goto] = ACTIONS(2690), - [anon_sym_not] = ACTIONS(2690), - [anon_sym_compl] = ACTIONS(2690), - [anon_sym_DASH_DASH] = ACTIONS(2692), - [anon_sym_PLUS_PLUS] = ACTIONS(2692), - [anon_sym_sizeof] = ACTIONS(2690), - [sym_number_literal] = ACTIONS(2692), - [anon_sym_L_SQUOTE] = ACTIONS(2692), - [anon_sym_u_SQUOTE] = ACTIONS(2692), - [anon_sym_U_SQUOTE] = ACTIONS(2692), - [anon_sym_u8_SQUOTE] = ACTIONS(2692), - [anon_sym_SQUOTE] = ACTIONS(2692), - [anon_sym_L_DQUOTE] = ACTIONS(2692), - [anon_sym_u_DQUOTE] = ACTIONS(2692), - [anon_sym_U_DQUOTE] = ACTIONS(2692), - [anon_sym_u8_DQUOTE] = ACTIONS(2692), - [anon_sym_DQUOTE] = ACTIONS(2692), - [sym_true] = ACTIONS(2690), - [sym_false] = ACTIONS(2690), - [sym_null] = ACTIONS(2690), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2690), - [anon_sym_decltype] = ACTIONS(2690), - [anon_sym_virtual] = ACTIONS(2690), - [anon_sym_explicit] = ACTIONS(2690), - [anon_sym_typename] = ACTIONS(2690), - [anon_sym_template] = ACTIONS(2690), - [anon_sym_operator] = ACTIONS(2690), - [anon_sym_try] = ACTIONS(2690), - [anon_sym_delete] = ACTIONS(2690), - [anon_sym_throw] = ACTIONS(2690), - [anon_sym_namespace] = ACTIONS(2690), - [anon_sym_using] = ACTIONS(2690), - [anon_sym_static_assert] = ACTIONS(2690), - [anon_sym_concept] = ACTIONS(2690), - [anon_sym_co_return] = ACTIONS(2690), - [anon_sym_co_yield] = ACTIONS(2690), - [anon_sym_R_DQUOTE] = ACTIONS(2692), - [anon_sym_LR_DQUOTE] = ACTIONS(2692), - [anon_sym_uR_DQUOTE] = ACTIONS(2692), - [anon_sym_UR_DQUOTE] = ACTIONS(2692), - [anon_sym_u8R_DQUOTE] = ACTIONS(2692), - [anon_sym_co_await] = ACTIONS(2690), - [anon_sym_new] = ACTIONS(2690), - [anon_sym_requires] = ACTIONS(2690), - [sym_this] = ACTIONS(2690), - [sym_nullptr] = ACTIONS(2690), + [ts_builtin_sym_end] = ACTIONS(3087), + [sym_identifier] = ACTIONS(3085), + [aux_sym_preproc_include_token1] = ACTIONS(3085), + [aux_sym_preproc_def_token1] = ACTIONS(3085), + [aux_sym_preproc_if_token1] = ACTIONS(3085), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3085), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3085), + [sym_preproc_directive] = ACTIONS(3085), + [anon_sym_LPAREN2] = ACTIONS(3087), + [anon_sym_BANG] = ACTIONS(3087), + [anon_sym_TILDE] = ACTIONS(3087), + [anon_sym_DASH] = ACTIONS(3085), + [anon_sym_PLUS] = ACTIONS(3085), + [anon_sym_STAR] = ACTIONS(3087), + [anon_sym_AMP_AMP] = ACTIONS(3087), + [anon_sym_AMP] = ACTIONS(3085), + [anon_sym_SEMI] = ACTIONS(3087), + [anon_sym_typedef] = ACTIONS(3085), + [anon_sym_extern] = ACTIONS(3085), + [anon_sym___attribute__] = ACTIONS(3085), + [anon_sym_COLON_COLON] = ACTIONS(3087), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3087), + [anon_sym___declspec] = ACTIONS(3085), + [anon_sym___based] = ACTIONS(3085), + [anon_sym___cdecl] = ACTIONS(3085), + [anon_sym___clrcall] = ACTIONS(3085), + [anon_sym___stdcall] = ACTIONS(3085), + [anon_sym___fastcall] = ACTIONS(3085), + [anon_sym___thiscall] = ACTIONS(3085), + [anon_sym___vectorcall] = ACTIONS(3085), + [anon_sym_LBRACE] = ACTIONS(3087), + [anon_sym_LBRACK] = ACTIONS(3085), + [anon_sym_static] = ACTIONS(3085), + [anon_sym_register] = ACTIONS(3085), + [anon_sym_inline] = ACTIONS(3085), + [anon_sym_thread_local] = ACTIONS(3085), + [anon_sym_const] = ACTIONS(3085), + [anon_sym_constexpr] = ACTIONS(3085), + [anon_sym_volatile] = ACTIONS(3085), + [anon_sym_restrict] = ACTIONS(3085), + [anon_sym___restrict__] = ACTIONS(3085), + [anon_sym__Atomic] = ACTIONS(3085), + [anon_sym__Noreturn] = ACTIONS(3085), + [anon_sym_noreturn] = ACTIONS(3085), + [anon_sym_mutable] = ACTIONS(3085), + [anon_sym_constinit] = ACTIONS(3085), + [anon_sym_consteval] = ACTIONS(3085), + [anon_sym_signed] = ACTIONS(3085), + [anon_sym_unsigned] = ACTIONS(3085), + [anon_sym_long] = ACTIONS(3085), + [anon_sym_short] = ACTIONS(3085), + [sym_primitive_type] = ACTIONS(3085), + [anon_sym_enum] = ACTIONS(3085), + [anon_sym_class] = ACTIONS(3085), + [anon_sym_struct] = ACTIONS(3085), + [anon_sym_union] = ACTIONS(3085), + [anon_sym_if] = ACTIONS(3085), + [anon_sym_else] = ACTIONS(3085), + [anon_sym_switch] = ACTIONS(3085), + [anon_sym_case] = ACTIONS(3085), + [anon_sym_default] = ACTIONS(3085), + [anon_sym_while] = ACTIONS(3085), + [anon_sym_do] = ACTIONS(3085), + [anon_sym_for] = ACTIONS(3085), + [anon_sym_return] = ACTIONS(3085), + [anon_sym_break] = ACTIONS(3085), + [anon_sym_continue] = ACTIONS(3085), + [anon_sym_goto] = ACTIONS(3085), + [anon_sym_not] = ACTIONS(3085), + [anon_sym_compl] = ACTIONS(3085), + [anon_sym_DASH_DASH] = ACTIONS(3087), + [anon_sym_PLUS_PLUS] = ACTIONS(3087), + [anon_sym_sizeof] = ACTIONS(3085), + [anon_sym_offsetof] = ACTIONS(3085), + [anon_sym__Generic] = ACTIONS(3085), + [anon_sym_asm] = ACTIONS(3085), + [anon_sym___asm__] = ACTIONS(3085), + [sym_number_literal] = ACTIONS(3087), + [anon_sym_L_SQUOTE] = ACTIONS(3087), + [anon_sym_u_SQUOTE] = ACTIONS(3087), + [anon_sym_U_SQUOTE] = ACTIONS(3087), + [anon_sym_u8_SQUOTE] = ACTIONS(3087), + [anon_sym_SQUOTE] = ACTIONS(3087), + [anon_sym_L_DQUOTE] = ACTIONS(3087), + [anon_sym_u_DQUOTE] = ACTIONS(3087), + [anon_sym_U_DQUOTE] = ACTIONS(3087), + [anon_sym_u8_DQUOTE] = ACTIONS(3087), + [anon_sym_DQUOTE] = ACTIONS(3087), + [sym_true] = ACTIONS(3085), + [sym_false] = ACTIONS(3085), + [anon_sym_NULL] = ACTIONS(3085), + [anon_sym_nullptr] = ACTIONS(3085), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3085), + [anon_sym_decltype] = ACTIONS(3085), + [anon_sym_virtual] = ACTIONS(3085), + [anon_sym_explicit] = ACTIONS(3085), + [anon_sym_typename] = ACTIONS(3085), + [anon_sym_template] = ACTIONS(3085), + [anon_sym_operator] = ACTIONS(3085), + [anon_sym_try] = ACTIONS(3085), + [anon_sym_delete] = ACTIONS(3085), + [anon_sym_throw] = ACTIONS(3085), + [anon_sym_namespace] = ACTIONS(3085), + [anon_sym_using] = ACTIONS(3085), + [anon_sym_static_assert] = ACTIONS(3085), + [anon_sym_concept] = ACTIONS(3085), + [anon_sym_co_return] = ACTIONS(3085), + [anon_sym_co_yield] = ACTIONS(3085), + [anon_sym_R_DQUOTE] = ACTIONS(3087), + [anon_sym_LR_DQUOTE] = ACTIONS(3087), + [anon_sym_uR_DQUOTE] = ACTIONS(3087), + [anon_sym_UR_DQUOTE] = ACTIONS(3087), + [anon_sym_u8R_DQUOTE] = ACTIONS(3087), + [anon_sym_co_await] = ACTIONS(3085), + [anon_sym_new] = ACTIONS(3085), + [anon_sym_requires] = ACTIONS(3085), + [sym_this] = ACTIONS(3085), }, [991] = { - [ts_builtin_sym_end] = ACTIONS(2684), - [sym_identifier] = ACTIONS(2682), - [aux_sym_preproc_include_token1] = ACTIONS(2682), - [aux_sym_preproc_def_token1] = ACTIONS(2682), - [aux_sym_preproc_if_token1] = ACTIONS(2682), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2682), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2682), - [sym_preproc_directive] = ACTIONS(2682), - [anon_sym_LPAREN2] = ACTIONS(2684), - [anon_sym_BANG] = ACTIONS(2684), - [anon_sym_TILDE] = ACTIONS(2684), - [anon_sym_DASH] = ACTIONS(2682), - [anon_sym_PLUS] = ACTIONS(2682), - [anon_sym_STAR] = ACTIONS(2684), - [anon_sym_AMP_AMP] = ACTIONS(2684), - [anon_sym_AMP] = ACTIONS(2682), - [anon_sym_SEMI] = ACTIONS(2684), - [anon_sym_typedef] = ACTIONS(2682), - [anon_sym_extern] = ACTIONS(2682), - [anon_sym___attribute__] = ACTIONS(2682), - [anon_sym_COLON_COLON] = ACTIONS(2684), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2684), - [anon_sym___declspec] = ACTIONS(2682), - [anon_sym___based] = ACTIONS(2682), - [anon_sym___cdecl] = ACTIONS(2682), - [anon_sym___clrcall] = ACTIONS(2682), - [anon_sym___stdcall] = ACTIONS(2682), - [anon_sym___fastcall] = ACTIONS(2682), - [anon_sym___thiscall] = ACTIONS(2682), - [anon_sym___vectorcall] = ACTIONS(2682), - [anon_sym_LBRACE] = ACTIONS(2684), - [anon_sym_LBRACK] = ACTIONS(2682), - [anon_sym_static] = ACTIONS(2682), - [anon_sym_register] = ACTIONS(2682), - [anon_sym_inline] = ACTIONS(2682), - [anon_sym_thread_local] = ACTIONS(2682), - [anon_sym_const] = ACTIONS(2682), - [anon_sym_volatile] = ACTIONS(2682), - [anon_sym_restrict] = ACTIONS(2682), - [anon_sym__Atomic] = ACTIONS(2682), - [anon_sym_mutable] = ACTIONS(2682), - [anon_sym_constexpr] = ACTIONS(2682), - [anon_sym_constinit] = ACTIONS(2682), - [anon_sym_consteval] = ACTIONS(2682), - [anon_sym_signed] = ACTIONS(2682), - [anon_sym_unsigned] = ACTIONS(2682), - [anon_sym_long] = ACTIONS(2682), - [anon_sym_short] = ACTIONS(2682), - [sym_primitive_type] = ACTIONS(2682), - [anon_sym_enum] = ACTIONS(2682), - [anon_sym_class] = ACTIONS(2682), - [anon_sym_struct] = ACTIONS(2682), - [anon_sym_union] = ACTIONS(2682), - [anon_sym_if] = ACTIONS(2682), - [anon_sym_switch] = ACTIONS(2682), - [anon_sym_case] = ACTIONS(2682), - [anon_sym_default] = ACTIONS(2682), - [anon_sym_while] = ACTIONS(2682), - [anon_sym_do] = ACTIONS(2682), - [anon_sym_for] = ACTIONS(2682), - [anon_sym_return] = ACTIONS(2682), - [anon_sym_break] = ACTIONS(2682), - [anon_sym_continue] = ACTIONS(2682), - [anon_sym_goto] = ACTIONS(2682), - [anon_sym_not] = ACTIONS(2682), - [anon_sym_compl] = ACTIONS(2682), - [anon_sym_DASH_DASH] = ACTIONS(2684), - [anon_sym_PLUS_PLUS] = ACTIONS(2684), - [anon_sym_sizeof] = ACTIONS(2682), - [sym_number_literal] = ACTIONS(2684), - [anon_sym_L_SQUOTE] = ACTIONS(2684), - [anon_sym_u_SQUOTE] = ACTIONS(2684), - [anon_sym_U_SQUOTE] = ACTIONS(2684), - [anon_sym_u8_SQUOTE] = ACTIONS(2684), - [anon_sym_SQUOTE] = ACTIONS(2684), - [anon_sym_L_DQUOTE] = ACTIONS(2684), - [anon_sym_u_DQUOTE] = ACTIONS(2684), - [anon_sym_U_DQUOTE] = ACTIONS(2684), - [anon_sym_u8_DQUOTE] = ACTIONS(2684), - [anon_sym_DQUOTE] = ACTIONS(2684), - [sym_true] = ACTIONS(2682), - [sym_false] = ACTIONS(2682), - [sym_null] = ACTIONS(2682), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2682), - [anon_sym_decltype] = ACTIONS(2682), - [anon_sym_virtual] = ACTIONS(2682), - [anon_sym_explicit] = ACTIONS(2682), - [anon_sym_typename] = ACTIONS(2682), - [anon_sym_template] = ACTIONS(2682), - [anon_sym_operator] = ACTIONS(2682), - [anon_sym_try] = ACTIONS(2682), - [anon_sym_delete] = ACTIONS(2682), - [anon_sym_throw] = ACTIONS(2682), - [anon_sym_namespace] = ACTIONS(2682), - [anon_sym_using] = ACTIONS(2682), - [anon_sym_static_assert] = ACTIONS(2682), - [anon_sym_concept] = ACTIONS(2682), - [anon_sym_co_return] = ACTIONS(2682), - [anon_sym_co_yield] = ACTIONS(2682), - [anon_sym_R_DQUOTE] = ACTIONS(2684), - [anon_sym_LR_DQUOTE] = ACTIONS(2684), - [anon_sym_uR_DQUOTE] = ACTIONS(2684), - [anon_sym_UR_DQUOTE] = ACTIONS(2684), - [anon_sym_u8R_DQUOTE] = ACTIONS(2684), - [anon_sym_co_await] = ACTIONS(2682), - [anon_sym_new] = ACTIONS(2682), - [anon_sym_requires] = ACTIONS(2682), - [sym_this] = ACTIONS(2682), - [sym_nullptr] = ACTIONS(2682), + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token2] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, [992] = { - [sym_identifier] = ACTIONS(2682), - [aux_sym_preproc_include_token1] = ACTIONS(2682), - [aux_sym_preproc_def_token1] = ACTIONS(2682), - [aux_sym_preproc_if_token1] = ACTIONS(2682), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2682), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2682), - [sym_preproc_directive] = ACTIONS(2682), - [anon_sym_LPAREN2] = ACTIONS(2684), - [anon_sym_BANG] = ACTIONS(2684), - [anon_sym_TILDE] = ACTIONS(2684), - [anon_sym_DASH] = ACTIONS(2682), - [anon_sym_PLUS] = ACTIONS(2682), - [anon_sym_STAR] = ACTIONS(2684), - [anon_sym_AMP_AMP] = ACTIONS(2684), - [anon_sym_AMP] = ACTIONS(2682), - [anon_sym_SEMI] = ACTIONS(2684), - [anon_sym_typedef] = ACTIONS(2682), - [anon_sym_extern] = ACTIONS(2682), - [anon_sym___attribute__] = ACTIONS(2682), - [anon_sym_COLON_COLON] = ACTIONS(2684), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2684), - [anon_sym___declspec] = ACTIONS(2682), - [anon_sym___based] = ACTIONS(2682), - [anon_sym___cdecl] = ACTIONS(2682), - [anon_sym___clrcall] = ACTIONS(2682), - [anon_sym___stdcall] = ACTIONS(2682), - [anon_sym___fastcall] = ACTIONS(2682), - [anon_sym___thiscall] = ACTIONS(2682), - [anon_sym___vectorcall] = ACTIONS(2682), - [anon_sym_LBRACE] = ACTIONS(2684), - [anon_sym_RBRACE] = ACTIONS(2684), - [anon_sym_LBRACK] = ACTIONS(2682), - [anon_sym_static] = ACTIONS(2682), - [anon_sym_register] = ACTIONS(2682), - [anon_sym_inline] = ACTIONS(2682), - [anon_sym_thread_local] = ACTIONS(2682), - [anon_sym_const] = ACTIONS(2682), - [anon_sym_volatile] = ACTIONS(2682), - [anon_sym_restrict] = ACTIONS(2682), - [anon_sym__Atomic] = ACTIONS(2682), - [anon_sym_mutable] = ACTIONS(2682), - [anon_sym_constexpr] = ACTIONS(2682), - [anon_sym_constinit] = ACTIONS(2682), - [anon_sym_consteval] = ACTIONS(2682), - [anon_sym_signed] = ACTIONS(2682), - [anon_sym_unsigned] = ACTIONS(2682), - [anon_sym_long] = ACTIONS(2682), - [anon_sym_short] = ACTIONS(2682), - [sym_primitive_type] = ACTIONS(2682), - [anon_sym_enum] = ACTIONS(2682), - [anon_sym_class] = ACTIONS(2682), - [anon_sym_struct] = ACTIONS(2682), - [anon_sym_union] = ACTIONS(2682), - [anon_sym_if] = ACTIONS(2682), - [anon_sym_switch] = ACTIONS(2682), - [anon_sym_case] = ACTIONS(2682), - [anon_sym_default] = ACTIONS(2682), - [anon_sym_while] = ACTIONS(2682), - [anon_sym_do] = ACTIONS(2682), - [anon_sym_for] = ACTIONS(2682), - [anon_sym_return] = ACTIONS(2682), - [anon_sym_break] = ACTIONS(2682), - [anon_sym_continue] = ACTIONS(2682), - [anon_sym_goto] = ACTIONS(2682), - [anon_sym_not] = ACTIONS(2682), - [anon_sym_compl] = ACTIONS(2682), - [anon_sym_DASH_DASH] = ACTIONS(2684), - [anon_sym_PLUS_PLUS] = ACTIONS(2684), - [anon_sym_sizeof] = ACTIONS(2682), - [sym_number_literal] = ACTIONS(2684), - [anon_sym_L_SQUOTE] = ACTIONS(2684), - [anon_sym_u_SQUOTE] = ACTIONS(2684), - [anon_sym_U_SQUOTE] = ACTIONS(2684), - [anon_sym_u8_SQUOTE] = ACTIONS(2684), - [anon_sym_SQUOTE] = ACTIONS(2684), - [anon_sym_L_DQUOTE] = ACTIONS(2684), - [anon_sym_u_DQUOTE] = ACTIONS(2684), - [anon_sym_U_DQUOTE] = ACTIONS(2684), - [anon_sym_u8_DQUOTE] = ACTIONS(2684), - [anon_sym_DQUOTE] = ACTIONS(2684), - [sym_true] = ACTIONS(2682), - [sym_false] = ACTIONS(2682), - [sym_null] = ACTIONS(2682), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2682), - [anon_sym_decltype] = ACTIONS(2682), - [anon_sym_virtual] = ACTIONS(2682), - [anon_sym_explicit] = ACTIONS(2682), - [anon_sym_typename] = ACTIONS(2682), - [anon_sym_template] = ACTIONS(2682), - [anon_sym_operator] = ACTIONS(2682), - [anon_sym_try] = ACTIONS(2682), - [anon_sym_delete] = ACTIONS(2682), - [anon_sym_throw] = ACTIONS(2682), - [anon_sym_namespace] = ACTIONS(2682), - [anon_sym_using] = ACTIONS(2682), - [anon_sym_static_assert] = ACTIONS(2682), - [anon_sym_concept] = ACTIONS(2682), - [anon_sym_co_return] = ACTIONS(2682), - [anon_sym_co_yield] = ACTIONS(2682), - [anon_sym_R_DQUOTE] = ACTIONS(2684), - [anon_sym_LR_DQUOTE] = ACTIONS(2684), - [anon_sym_uR_DQUOTE] = ACTIONS(2684), - [anon_sym_UR_DQUOTE] = ACTIONS(2684), - [anon_sym_u8R_DQUOTE] = ACTIONS(2684), - [anon_sym_co_await] = ACTIONS(2682), - [anon_sym_new] = ACTIONS(2682), - [anon_sym_requires] = ACTIONS(2682), - [sym_this] = ACTIONS(2682), - [sym_nullptr] = ACTIONS(2682), + [ts_builtin_sym_end] = ACTIONS(3050), + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, [993] = { - [sym_identifier] = ACTIONS(2682), - [aux_sym_preproc_include_token1] = ACTIONS(2682), - [aux_sym_preproc_def_token1] = ACTIONS(2682), - [aux_sym_preproc_if_token1] = ACTIONS(2682), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2682), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2682), - [sym_preproc_directive] = ACTIONS(2682), - [anon_sym_LPAREN2] = ACTIONS(2684), - [anon_sym_BANG] = ACTIONS(2684), - [anon_sym_TILDE] = ACTIONS(2684), - [anon_sym_DASH] = ACTIONS(2682), - [anon_sym_PLUS] = ACTIONS(2682), - [anon_sym_STAR] = ACTIONS(2684), - [anon_sym_AMP_AMP] = ACTIONS(2684), - [anon_sym_AMP] = ACTIONS(2682), - [anon_sym_SEMI] = ACTIONS(2684), - [anon_sym_typedef] = ACTIONS(2682), - [anon_sym_extern] = ACTIONS(2682), - [anon_sym___attribute__] = ACTIONS(2682), - [anon_sym_COLON_COLON] = ACTIONS(2684), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2684), - [anon_sym___declspec] = ACTIONS(2682), - [anon_sym___based] = ACTIONS(2682), - [anon_sym___cdecl] = ACTIONS(2682), - [anon_sym___clrcall] = ACTIONS(2682), - [anon_sym___stdcall] = ACTIONS(2682), - [anon_sym___fastcall] = ACTIONS(2682), - [anon_sym___thiscall] = ACTIONS(2682), - [anon_sym___vectorcall] = ACTIONS(2682), - [anon_sym_LBRACE] = ACTIONS(2684), - [anon_sym_RBRACE] = ACTIONS(2684), - [anon_sym_LBRACK] = ACTIONS(2682), - [anon_sym_static] = ACTIONS(2682), - [anon_sym_register] = ACTIONS(2682), - [anon_sym_inline] = ACTIONS(2682), - [anon_sym_thread_local] = ACTIONS(2682), - [anon_sym_const] = ACTIONS(2682), - [anon_sym_volatile] = ACTIONS(2682), - [anon_sym_restrict] = ACTIONS(2682), - [anon_sym__Atomic] = ACTIONS(2682), - [anon_sym_mutable] = ACTIONS(2682), - [anon_sym_constexpr] = ACTIONS(2682), - [anon_sym_constinit] = ACTIONS(2682), - [anon_sym_consteval] = ACTIONS(2682), - [anon_sym_signed] = ACTIONS(2682), - [anon_sym_unsigned] = ACTIONS(2682), - [anon_sym_long] = ACTIONS(2682), - [anon_sym_short] = ACTIONS(2682), - [sym_primitive_type] = ACTIONS(2682), - [anon_sym_enum] = ACTIONS(2682), - [anon_sym_class] = ACTIONS(2682), - [anon_sym_struct] = ACTIONS(2682), - [anon_sym_union] = ACTIONS(2682), - [anon_sym_if] = ACTIONS(2682), - [anon_sym_switch] = ACTIONS(2682), - [anon_sym_case] = ACTIONS(2682), - [anon_sym_default] = ACTIONS(2682), - [anon_sym_while] = ACTIONS(2682), - [anon_sym_do] = ACTIONS(2682), - [anon_sym_for] = ACTIONS(2682), - [anon_sym_return] = ACTIONS(2682), - [anon_sym_break] = ACTIONS(2682), - [anon_sym_continue] = ACTIONS(2682), - [anon_sym_goto] = ACTIONS(2682), - [anon_sym_not] = ACTIONS(2682), - [anon_sym_compl] = ACTIONS(2682), - [anon_sym_DASH_DASH] = ACTIONS(2684), - [anon_sym_PLUS_PLUS] = ACTIONS(2684), - [anon_sym_sizeof] = ACTIONS(2682), - [sym_number_literal] = ACTIONS(2684), - [anon_sym_L_SQUOTE] = ACTIONS(2684), - [anon_sym_u_SQUOTE] = ACTIONS(2684), - [anon_sym_U_SQUOTE] = ACTIONS(2684), - [anon_sym_u8_SQUOTE] = ACTIONS(2684), - [anon_sym_SQUOTE] = ACTIONS(2684), - [anon_sym_L_DQUOTE] = ACTIONS(2684), - [anon_sym_u_DQUOTE] = ACTIONS(2684), - [anon_sym_U_DQUOTE] = ACTIONS(2684), - [anon_sym_u8_DQUOTE] = ACTIONS(2684), - [anon_sym_DQUOTE] = ACTIONS(2684), - [sym_true] = ACTIONS(2682), - [sym_false] = ACTIONS(2682), - [sym_null] = ACTIONS(2682), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2682), - [anon_sym_decltype] = ACTIONS(2682), - [anon_sym_virtual] = ACTIONS(2682), - [anon_sym_explicit] = ACTIONS(2682), - [anon_sym_typename] = ACTIONS(2682), - [anon_sym_template] = ACTIONS(2682), - [anon_sym_operator] = ACTIONS(2682), - [anon_sym_try] = ACTIONS(2682), - [anon_sym_delete] = ACTIONS(2682), - [anon_sym_throw] = ACTIONS(2682), - [anon_sym_namespace] = ACTIONS(2682), - [anon_sym_using] = ACTIONS(2682), - [anon_sym_static_assert] = ACTIONS(2682), - [anon_sym_concept] = ACTIONS(2682), - [anon_sym_co_return] = ACTIONS(2682), - [anon_sym_co_yield] = ACTIONS(2682), - [anon_sym_R_DQUOTE] = ACTIONS(2684), - [anon_sym_LR_DQUOTE] = ACTIONS(2684), - [anon_sym_uR_DQUOTE] = ACTIONS(2684), - [anon_sym_UR_DQUOTE] = ACTIONS(2684), - [anon_sym_u8R_DQUOTE] = ACTIONS(2684), - [anon_sym_co_await] = ACTIONS(2682), - [anon_sym_new] = ACTIONS(2682), - [anon_sym_requires] = ACTIONS(2682), - [sym_this] = ACTIONS(2682), - [sym_nullptr] = ACTIONS(2682), + [ts_builtin_sym_end] = ACTIONS(3050), + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, [994] = { - [sym_identifier] = ACTIONS(2710), - [aux_sym_preproc_include_token1] = ACTIONS(2710), - [aux_sym_preproc_def_token1] = ACTIONS(2710), - [aux_sym_preproc_if_token1] = ACTIONS(2710), - [aux_sym_preproc_if_token2] = ACTIONS(2710), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2710), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2710), - [sym_preproc_directive] = ACTIONS(2710), - [anon_sym_LPAREN2] = ACTIONS(2712), - [anon_sym_BANG] = ACTIONS(2712), - [anon_sym_TILDE] = ACTIONS(2712), - [anon_sym_DASH] = ACTIONS(2710), - [anon_sym_PLUS] = ACTIONS(2710), - [anon_sym_STAR] = ACTIONS(2712), - [anon_sym_AMP_AMP] = ACTIONS(2712), - [anon_sym_AMP] = ACTIONS(2710), - [anon_sym_SEMI] = ACTIONS(2712), - [anon_sym_typedef] = ACTIONS(2710), - [anon_sym_extern] = ACTIONS(2710), - [anon_sym___attribute__] = ACTIONS(2710), - [anon_sym_COLON_COLON] = ACTIONS(2712), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2712), - [anon_sym___declspec] = ACTIONS(2710), - [anon_sym___based] = ACTIONS(2710), - [anon_sym___cdecl] = ACTIONS(2710), - [anon_sym___clrcall] = ACTIONS(2710), - [anon_sym___stdcall] = ACTIONS(2710), - [anon_sym___fastcall] = ACTIONS(2710), - [anon_sym___thiscall] = ACTIONS(2710), - [anon_sym___vectorcall] = ACTIONS(2710), - [anon_sym_LBRACE] = ACTIONS(2712), - [anon_sym_LBRACK] = ACTIONS(2710), - [anon_sym_static] = ACTIONS(2710), - [anon_sym_register] = ACTIONS(2710), - [anon_sym_inline] = ACTIONS(2710), - [anon_sym_thread_local] = ACTIONS(2710), - [anon_sym_const] = ACTIONS(2710), - [anon_sym_volatile] = ACTIONS(2710), - [anon_sym_restrict] = ACTIONS(2710), - [anon_sym__Atomic] = ACTIONS(2710), - [anon_sym_mutable] = ACTIONS(2710), - [anon_sym_constexpr] = ACTIONS(2710), - [anon_sym_constinit] = ACTIONS(2710), - [anon_sym_consteval] = ACTIONS(2710), - [anon_sym_signed] = ACTIONS(2710), - [anon_sym_unsigned] = ACTIONS(2710), - [anon_sym_long] = ACTIONS(2710), - [anon_sym_short] = ACTIONS(2710), - [sym_primitive_type] = ACTIONS(2710), - [anon_sym_enum] = ACTIONS(2710), - [anon_sym_class] = ACTIONS(2710), - [anon_sym_struct] = ACTIONS(2710), - [anon_sym_union] = ACTIONS(2710), - [anon_sym_if] = ACTIONS(2710), - [anon_sym_switch] = ACTIONS(2710), - [anon_sym_case] = ACTIONS(2710), - [anon_sym_default] = ACTIONS(2710), - [anon_sym_while] = ACTIONS(2710), - [anon_sym_do] = ACTIONS(2710), - [anon_sym_for] = ACTIONS(2710), - [anon_sym_return] = ACTIONS(2710), - [anon_sym_break] = ACTIONS(2710), - [anon_sym_continue] = ACTIONS(2710), - [anon_sym_goto] = ACTIONS(2710), - [anon_sym_not] = ACTIONS(2710), - [anon_sym_compl] = ACTIONS(2710), - [anon_sym_DASH_DASH] = ACTIONS(2712), - [anon_sym_PLUS_PLUS] = ACTIONS(2712), - [anon_sym_sizeof] = ACTIONS(2710), - [sym_number_literal] = ACTIONS(2712), - [anon_sym_L_SQUOTE] = ACTIONS(2712), - [anon_sym_u_SQUOTE] = ACTIONS(2712), - [anon_sym_U_SQUOTE] = ACTIONS(2712), - [anon_sym_u8_SQUOTE] = ACTIONS(2712), - [anon_sym_SQUOTE] = ACTIONS(2712), - [anon_sym_L_DQUOTE] = ACTIONS(2712), - [anon_sym_u_DQUOTE] = ACTIONS(2712), - [anon_sym_U_DQUOTE] = ACTIONS(2712), - [anon_sym_u8_DQUOTE] = ACTIONS(2712), - [anon_sym_DQUOTE] = ACTIONS(2712), - [sym_true] = ACTIONS(2710), - [sym_false] = ACTIONS(2710), - [sym_null] = ACTIONS(2710), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2710), - [anon_sym_decltype] = ACTIONS(2710), - [anon_sym_virtual] = ACTIONS(2710), - [anon_sym_explicit] = ACTIONS(2710), - [anon_sym_typename] = ACTIONS(2710), - [anon_sym_template] = ACTIONS(2710), - [anon_sym_operator] = ACTIONS(2710), - [anon_sym_try] = ACTIONS(2710), - [anon_sym_delete] = ACTIONS(2710), - [anon_sym_throw] = ACTIONS(2710), - [anon_sym_namespace] = ACTIONS(2710), - [anon_sym_using] = ACTIONS(2710), - [anon_sym_static_assert] = ACTIONS(2710), - [anon_sym_concept] = ACTIONS(2710), - [anon_sym_co_return] = ACTIONS(2710), - [anon_sym_co_yield] = ACTIONS(2710), - [anon_sym_R_DQUOTE] = ACTIONS(2712), - [anon_sym_LR_DQUOTE] = ACTIONS(2712), - [anon_sym_uR_DQUOTE] = ACTIONS(2712), - [anon_sym_UR_DQUOTE] = ACTIONS(2712), - [anon_sym_u8R_DQUOTE] = ACTIONS(2712), - [anon_sym_co_await] = ACTIONS(2710), - [anon_sym_new] = ACTIONS(2710), - [anon_sym_requires] = ACTIONS(2710), - [sym_this] = ACTIONS(2710), - [sym_nullptr] = ACTIONS(2710), + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token2] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, [995] = { - [sym_identifier] = ACTIONS(2746), - [aux_sym_preproc_include_token1] = ACTIONS(2746), - [aux_sym_preproc_def_token1] = ACTIONS(2746), - [aux_sym_preproc_if_token1] = ACTIONS(2746), - [aux_sym_preproc_if_token2] = ACTIONS(2746), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2746), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2746), - [sym_preproc_directive] = ACTIONS(2746), - [anon_sym_LPAREN2] = ACTIONS(2748), - [anon_sym_BANG] = ACTIONS(2748), - [anon_sym_TILDE] = ACTIONS(2748), - [anon_sym_DASH] = ACTIONS(2746), - [anon_sym_PLUS] = ACTIONS(2746), - [anon_sym_STAR] = ACTIONS(2748), - [anon_sym_AMP_AMP] = ACTIONS(2748), - [anon_sym_AMP] = ACTIONS(2746), - [anon_sym_SEMI] = ACTIONS(2748), - [anon_sym_typedef] = ACTIONS(2746), - [anon_sym_extern] = ACTIONS(2746), - [anon_sym___attribute__] = ACTIONS(2746), - [anon_sym_COLON_COLON] = ACTIONS(2748), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2748), - [anon_sym___declspec] = ACTIONS(2746), - [anon_sym___based] = ACTIONS(2746), - [anon_sym___cdecl] = ACTIONS(2746), - [anon_sym___clrcall] = ACTIONS(2746), - [anon_sym___stdcall] = ACTIONS(2746), - [anon_sym___fastcall] = ACTIONS(2746), - [anon_sym___thiscall] = ACTIONS(2746), - [anon_sym___vectorcall] = ACTIONS(2746), - [anon_sym_LBRACE] = ACTIONS(2748), - [anon_sym_LBRACK] = ACTIONS(2746), - [anon_sym_static] = ACTIONS(2746), - [anon_sym_register] = ACTIONS(2746), - [anon_sym_inline] = ACTIONS(2746), - [anon_sym_thread_local] = ACTIONS(2746), - [anon_sym_const] = ACTIONS(2746), - [anon_sym_volatile] = ACTIONS(2746), - [anon_sym_restrict] = ACTIONS(2746), - [anon_sym__Atomic] = ACTIONS(2746), - [anon_sym_mutable] = ACTIONS(2746), - [anon_sym_constexpr] = ACTIONS(2746), - [anon_sym_constinit] = ACTIONS(2746), - [anon_sym_consteval] = ACTIONS(2746), - [anon_sym_signed] = ACTIONS(2746), - [anon_sym_unsigned] = ACTIONS(2746), - [anon_sym_long] = ACTIONS(2746), - [anon_sym_short] = ACTIONS(2746), - [sym_primitive_type] = ACTIONS(2746), - [anon_sym_enum] = ACTIONS(2746), - [anon_sym_class] = ACTIONS(2746), - [anon_sym_struct] = ACTIONS(2746), - [anon_sym_union] = ACTIONS(2746), - [anon_sym_if] = ACTIONS(2746), - [anon_sym_switch] = ACTIONS(2746), - [anon_sym_case] = ACTIONS(2746), - [anon_sym_default] = ACTIONS(2746), - [anon_sym_while] = ACTIONS(2746), - [anon_sym_do] = ACTIONS(2746), - [anon_sym_for] = ACTIONS(2746), - [anon_sym_return] = ACTIONS(2746), - [anon_sym_break] = ACTIONS(2746), - [anon_sym_continue] = ACTIONS(2746), - [anon_sym_goto] = ACTIONS(2746), - [anon_sym_not] = ACTIONS(2746), - [anon_sym_compl] = ACTIONS(2746), - [anon_sym_DASH_DASH] = ACTIONS(2748), - [anon_sym_PLUS_PLUS] = ACTIONS(2748), - [anon_sym_sizeof] = ACTIONS(2746), - [sym_number_literal] = ACTIONS(2748), - [anon_sym_L_SQUOTE] = ACTIONS(2748), - [anon_sym_u_SQUOTE] = ACTIONS(2748), - [anon_sym_U_SQUOTE] = ACTIONS(2748), - [anon_sym_u8_SQUOTE] = ACTIONS(2748), - [anon_sym_SQUOTE] = ACTIONS(2748), - [anon_sym_L_DQUOTE] = ACTIONS(2748), - [anon_sym_u_DQUOTE] = ACTIONS(2748), - [anon_sym_U_DQUOTE] = ACTIONS(2748), - [anon_sym_u8_DQUOTE] = ACTIONS(2748), - [anon_sym_DQUOTE] = ACTIONS(2748), - [sym_true] = ACTIONS(2746), - [sym_false] = ACTIONS(2746), - [sym_null] = ACTIONS(2746), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2746), - [anon_sym_decltype] = ACTIONS(2746), - [anon_sym_virtual] = ACTIONS(2746), - [anon_sym_explicit] = ACTIONS(2746), - [anon_sym_typename] = ACTIONS(2746), - [anon_sym_template] = ACTIONS(2746), - [anon_sym_operator] = ACTIONS(2746), - [anon_sym_try] = ACTIONS(2746), - [anon_sym_delete] = ACTIONS(2746), - [anon_sym_throw] = ACTIONS(2746), - [anon_sym_namespace] = ACTIONS(2746), - [anon_sym_using] = ACTIONS(2746), - [anon_sym_static_assert] = ACTIONS(2746), - [anon_sym_concept] = ACTIONS(2746), - [anon_sym_co_return] = ACTIONS(2746), - [anon_sym_co_yield] = ACTIONS(2746), - [anon_sym_R_DQUOTE] = ACTIONS(2748), - [anon_sym_LR_DQUOTE] = ACTIONS(2748), - [anon_sym_uR_DQUOTE] = ACTIONS(2748), - [anon_sym_UR_DQUOTE] = ACTIONS(2748), - [anon_sym_u8R_DQUOTE] = ACTIONS(2748), - [anon_sym_co_await] = ACTIONS(2746), - [anon_sym_new] = ACTIONS(2746), - [anon_sym_requires] = ACTIONS(2746), - [sym_this] = ACTIONS(2746), - [sym_nullptr] = ACTIONS(2746), + [sym_identifier] = ACTIONS(2992), + [aux_sym_preproc_include_token1] = ACTIONS(2992), + [aux_sym_preproc_def_token1] = ACTIONS(2992), + [aux_sym_preproc_if_token1] = ACTIONS(2992), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2992), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2992), + [sym_preproc_directive] = ACTIONS(2992), + [anon_sym_LPAREN2] = ACTIONS(2994), + [anon_sym_BANG] = ACTIONS(2994), + [anon_sym_TILDE] = ACTIONS(2994), + [anon_sym_DASH] = ACTIONS(2992), + [anon_sym_PLUS] = ACTIONS(2992), + [anon_sym_STAR] = ACTIONS(2994), + [anon_sym_AMP_AMP] = ACTIONS(2994), + [anon_sym_AMP] = ACTIONS(2992), + [anon_sym_SEMI] = ACTIONS(2994), + [anon_sym_typedef] = ACTIONS(2992), + [anon_sym_extern] = ACTIONS(2992), + [anon_sym___attribute__] = ACTIONS(2992), + [anon_sym_COLON_COLON] = ACTIONS(2994), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2994), + [anon_sym___declspec] = ACTIONS(2992), + [anon_sym___based] = ACTIONS(2992), + [anon_sym___cdecl] = ACTIONS(2992), + [anon_sym___clrcall] = ACTIONS(2992), + [anon_sym___stdcall] = ACTIONS(2992), + [anon_sym___fastcall] = ACTIONS(2992), + [anon_sym___thiscall] = ACTIONS(2992), + [anon_sym___vectorcall] = ACTIONS(2992), + [anon_sym_LBRACE] = ACTIONS(2994), + [anon_sym_RBRACE] = ACTIONS(2994), + [anon_sym_LBRACK] = ACTIONS(2992), + [anon_sym_static] = ACTIONS(2992), + [anon_sym_register] = ACTIONS(2992), + [anon_sym_inline] = ACTIONS(2992), + [anon_sym_thread_local] = ACTIONS(2992), + [anon_sym_const] = ACTIONS(2992), + [anon_sym_constexpr] = ACTIONS(2992), + [anon_sym_volatile] = ACTIONS(2992), + [anon_sym_restrict] = ACTIONS(2992), + [anon_sym___restrict__] = ACTIONS(2992), + [anon_sym__Atomic] = ACTIONS(2992), + [anon_sym__Noreturn] = ACTIONS(2992), + [anon_sym_noreturn] = ACTIONS(2992), + [anon_sym_mutable] = ACTIONS(2992), + [anon_sym_constinit] = ACTIONS(2992), + [anon_sym_consteval] = ACTIONS(2992), + [anon_sym_signed] = ACTIONS(2992), + [anon_sym_unsigned] = ACTIONS(2992), + [anon_sym_long] = ACTIONS(2992), + [anon_sym_short] = ACTIONS(2992), + [sym_primitive_type] = ACTIONS(2992), + [anon_sym_enum] = ACTIONS(2992), + [anon_sym_class] = ACTIONS(2992), + [anon_sym_struct] = ACTIONS(2992), + [anon_sym_union] = ACTIONS(2992), + [anon_sym_if] = ACTIONS(2992), + [anon_sym_else] = ACTIONS(2992), + [anon_sym_switch] = ACTIONS(2992), + [anon_sym_case] = ACTIONS(2992), + [anon_sym_default] = ACTIONS(2992), + [anon_sym_while] = ACTIONS(2992), + [anon_sym_do] = ACTIONS(2992), + [anon_sym_for] = ACTIONS(2992), + [anon_sym_return] = ACTIONS(2992), + [anon_sym_break] = ACTIONS(2992), + [anon_sym_continue] = ACTIONS(2992), + [anon_sym_goto] = ACTIONS(2992), + [anon_sym_not] = ACTIONS(2992), + [anon_sym_compl] = ACTIONS(2992), + [anon_sym_DASH_DASH] = ACTIONS(2994), + [anon_sym_PLUS_PLUS] = ACTIONS(2994), + [anon_sym_sizeof] = ACTIONS(2992), + [anon_sym_offsetof] = ACTIONS(2992), + [anon_sym__Generic] = ACTIONS(2992), + [anon_sym_asm] = ACTIONS(2992), + [anon_sym___asm__] = ACTIONS(2992), + [sym_number_literal] = ACTIONS(2994), + [anon_sym_L_SQUOTE] = ACTIONS(2994), + [anon_sym_u_SQUOTE] = ACTIONS(2994), + [anon_sym_U_SQUOTE] = ACTIONS(2994), + [anon_sym_u8_SQUOTE] = ACTIONS(2994), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_L_DQUOTE] = ACTIONS(2994), + [anon_sym_u_DQUOTE] = ACTIONS(2994), + [anon_sym_U_DQUOTE] = ACTIONS(2994), + [anon_sym_u8_DQUOTE] = ACTIONS(2994), + [anon_sym_DQUOTE] = ACTIONS(2994), + [sym_true] = ACTIONS(2992), + [sym_false] = ACTIONS(2992), + [anon_sym_NULL] = ACTIONS(2992), + [anon_sym_nullptr] = ACTIONS(2992), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2992), + [anon_sym_decltype] = ACTIONS(2992), + [anon_sym_virtual] = ACTIONS(2992), + [anon_sym_explicit] = ACTIONS(2992), + [anon_sym_typename] = ACTIONS(2992), + [anon_sym_template] = ACTIONS(2992), + [anon_sym_operator] = ACTIONS(2992), + [anon_sym_try] = ACTIONS(2992), + [anon_sym_delete] = ACTIONS(2992), + [anon_sym_throw] = ACTIONS(2992), + [anon_sym_namespace] = ACTIONS(2992), + [anon_sym_using] = ACTIONS(2992), + [anon_sym_static_assert] = ACTIONS(2992), + [anon_sym_concept] = ACTIONS(2992), + [anon_sym_co_return] = ACTIONS(2992), + [anon_sym_co_yield] = ACTIONS(2992), + [anon_sym_R_DQUOTE] = ACTIONS(2994), + [anon_sym_LR_DQUOTE] = ACTIONS(2994), + [anon_sym_uR_DQUOTE] = ACTIONS(2994), + [anon_sym_UR_DQUOTE] = ACTIONS(2994), + [anon_sym_u8R_DQUOTE] = ACTIONS(2994), + [anon_sym_co_await] = ACTIONS(2992), + [anon_sym_new] = ACTIONS(2992), + [anon_sym_requires] = ACTIONS(2992), + [sym_this] = ACTIONS(2992), }, [996] = { - [sym_identifier] = ACTIONS(2686), - [aux_sym_preproc_include_token1] = ACTIONS(2686), - [aux_sym_preproc_def_token1] = ACTIONS(2686), - [aux_sym_preproc_if_token1] = ACTIONS(2686), - [aux_sym_preproc_if_token2] = ACTIONS(2686), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2686), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2686), - [sym_preproc_directive] = ACTIONS(2686), - [anon_sym_LPAREN2] = ACTIONS(2688), - [anon_sym_BANG] = ACTIONS(2688), - [anon_sym_TILDE] = ACTIONS(2688), - [anon_sym_DASH] = ACTIONS(2686), - [anon_sym_PLUS] = ACTIONS(2686), - [anon_sym_STAR] = ACTIONS(2688), - [anon_sym_AMP_AMP] = ACTIONS(2688), - [anon_sym_AMP] = ACTIONS(2686), - [anon_sym_SEMI] = ACTIONS(2688), - [anon_sym_typedef] = ACTIONS(2686), - [anon_sym_extern] = ACTIONS(2686), - [anon_sym___attribute__] = ACTIONS(2686), - [anon_sym_COLON_COLON] = ACTIONS(2688), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2688), - [anon_sym___declspec] = ACTIONS(2686), - [anon_sym___based] = ACTIONS(2686), - [anon_sym___cdecl] = ACTIONS(2686), - [anon_sym___clrcall] = ACTIONS(2686), - [anon_sym___stdcall] = ACTIONS(2686), - [anon_sym___fastcall] = ACTIONS(2686), - [anon_sym___thiscall] = ACTIONS(2686), - [anon_sym___vectorcall] = ACTIONS(2686), - [anon_sym_LBRACE] = ACTIONS(2688), - [anon_sym_LBRACK] = ACTIONS(2686), - [anon_sym_static] = ACTIONS(2686), - [anon_sym_register] = ACTIONS(2686), - [anon_sym_inline] = ACTIONS(2686), - [anon_sym_thread_local] = ACTIONS(2686), - [anon_sym_const] = ACTIONS(2686), - [anon_sym_volatile] = ACTIONS(2686), - [anon_sym_restrict] = ACTIONS(2686), - [anon_sym__Atomic] = ACTIONS(2686), - [anon_sym_mutable] = ACTIONS(2686), - [anon_sym_constexpr] = ACTIONS(2686), - [anon_sym_constinit] = ACTIONS(2686), - [anon_sym_consteval] = ACTIONS(2686), - [anon_sym_signed] = ACTIONS(2686), - [anon_sym_unsigned] = ACTIONS(2686), - [anon_sym_long] = ACTIONS(2686), - [anon_sym_short] = ACTIONS(2686), - [sym_primitive_type] = ACTIONS(2686), - [anon_sym_enum] = ACTIONS(2686), - [anon_sym_class] = ACTIONS(2686), - [anon_sym_struct] = ACTIONS(2686), - [anon_sym_union] = ACTIONS(2686), - [anon_sym_if] = ACTIONS(2686), - [anon_sym_switch] = ACTIONS(2686), - [anon_sym_case] = ACTIONS(2686), - [anon_sym_default] = ACTIONS(2686), - [anon_sym_while] = ACTIONS(2686), - [anon_sym_do] = ACTIONS(2686), - [anon_sym_for] = ACTIONS(2686), - [anon_sym_return] = ACTIONS(2686), - [anon_sym_break] = ACTIONS(2686), - [anon_sym_continue] = ACTIONS(2686), - [anon_sym_goto] = ACTIONS(2686), - [anon_sym_not] = ACTIONS(2686), - [anon_sym_compl] = ACTIONS(2686), - [anon_sym_DASH_DASH] = ACTIONS(2688), - [anon_sym_PLUS_PLUS] = ACTIONS(2688), - [anon_sym_sizeof] = ACTIONS(2686), - [sym_number_literal] = ACTIONS(2688), - [anon_sym_L_SQUOTE] = ACTIONS(2688), - [anon_sym_u_SQUOTE] = ACTIONS(2688), - [anon_sym_U_SQUOTE] = ACTIONS(2688), - [anon_sym_u8_SQUOTE] = ACTIONS(2688), - [anon_sym_SQUOTE] = ACTIONS(2688), - [anon_sym_L_DQUOTE] = ACTIONS(2688), - [anon_sym_u_DQUOTE] = ACTIONS(2688), - [anon_sym_U_DQUOTE] = ACTIONS(2688), - [anon_sym_u8_DQUOTE] = ACTIONS(2688), - [anon_sym_DQUOTE] = ACTIONS(2688), - [sym_true] = ACTIONS(2686), - [sym_false] = ACTIONS(2686), - [sym_null] = ACTIONS(2686), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2686), - [anon_sym_decltype] = ACTIONS(2686), - [anon_sym_virtual] = ACTIONS(2686), - [anon_sym_explicit] = ACTIONS(2686), - [anon_sym_typename] = ACTIONS(2686), - [anon_sym_template] = ACTIONS(2686), - [anon_sym_operator] = ACTIONS(2686), - [anon_sym_try] = ACTIONS(2686), - [anon_sym_delete] = ACTIONS(2686), - [anon_sym_throw] = ACTIONS(2686), - [anon_sym_namespace] = ACTIONS(2686), - [anon_sym_using] = ACTIONS(2686), - [anon_sym_static_assert] = ACTIONS(2686), - [anon_sym_concept] = ACTIONS(2686), - [anon_sym_co_return] = ACTIONS(2686), - [anon_sym_co_yield] = ACTIONS(2686), - [anon_sym_R_DQUOTE] = ACTIONS(2688), - [anon_sym_LR_DQUOTE] = ACTIONS(2688), - [anon_sym_uR_DQUOTE] = ACTIONS(2688), - [anon_sym_UR_DQUOTE] = ACTIONS(2688), - [anon_sym_u8R_DQUOTE] = ACTIONS(2688), - [anon_sym_co_await] = ACTIONS(2686), - [anon_sym_new] = ACTIONS(2686), - [anon_sym_requires] = ACTIONS(2686), - [sym_this] = ACTIONS(2686), - [sym_nullptr] = ACTIONS(2686), + [ts_builtin_sym_end] = ACTIONS(2934), + [sym_identifier] = ACTIONS(2932), + [aux_sym_preproc_include_token1] = ACTIONS(2932), + [aux_sym_preproc_def_token1] = ACTIONS(2932), + [aux_sym_preproc_if_token1] = ACTIONS(2932), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2932), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2932), + [sym_preproc_directive] = ACTIONS(2932), + [anon_sym_LPAREN2] = ACTIONS(2934), + [anon_sym_BANG] = ACTIONS(2934), + [anon_sym_TILDE] = ACTIONS(2934), + [anon_sym_DASH] = ACTIONS(2932), + [anon_sym_PLUS] = ACTIONS(2932), + [anon_sym_STAR] = ACTIONS(2934), + [anon_sym_AMP_AMP] = ACTIONS(2934), + [anon_sym_AMP] = ACTIONS(2932), + [anon_sym_SEMI] = ACTIONS(2934), + [anon_sym_typedef] = ACTIONS(2932), + [anon_sym_extern] = ACTIONS(2932), + [anon_sym___attribute__] = ACTIONS(2932), + [anon_sym_COLON_COLON] = ACTIONS(2934), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2934), + [anon_sym___declspec] = ACTIONS(2932), + [anon_sym___based] = ACTIONS(2932), + [anon_sym___cdecl] = ACTIONS(2932), + [anon_sym___clrcall] = ACTIONS(2932), + [anon_sym___stdcall] = ACTIONS(2932), + [anon_sym___fastcall] = ACTIONS(2932), + [anon_sym___thiscall] = ACTIONS(2932), + [anon_sym___vectorcall] = ACTIONS(2932), + [anon_sym_LBRACE] = ACTIONS(2934), + [anon_sym_LBRACK] = ACTIONS(2932), + [anon_sym_static] = ACTIONS(2932), + [anon_sym_register] = ACTIONS(2932), + [anon_sym_inline] = ACTIONS(2932), + [anon_sym_thread_local] = ACTIONS(2932), + [anon_sym_const] = ACTIONS(2932), + [anon_sym_constexpr] = ACTIONS(2932), + [anon_sym_volatile] = ACTIONS(2932), + [anon_sym_restrict] = ACTIONS(2932), + [anon_sym___restrict__] = ACTIONS(2932), + [anon_sym__Atomic] = ACTIONS(2932), + [anon_sym__Noreturn] = ACTIONS(2932), + [anon_sym_noreturn] = ACTIONS(2932), + [anon_sym_mutable] = ACTIONS(2932), + [anon_sym_constinit] = ACTIONS(2932), + [anon_sym_consteval] = ACTIONS(2932), + [anon_sym_signed] = ACTIONS(2932), + [anon_sym_unsigned] = ACTIONS(2932), + [anon_sym_long] = ACTIONS(2932), + [anon_sym_short] = ACTIONS(2932), + [sym_primitive_type] = ACTIONS(2932), + [anon_sym_enum] = ACTIONS(2932), + [anon_sym_class] = ACTIONS(2932), + [anon_sym_struct] = ACTIONS(2932), + [anon_sym_union] = ACTIONS(2932), + [anon_sym_if] = ACTIONS(2932), + [anon_sym_else] = ACTIONS(2932), + [anon_sym_switch] = ACTIONS(2932), + [anon_sym_case] = ACTIONS(2932), + [anon_sym_default] = ACTIONS(2932), + [anon_sym_while] = ACTIONS(2932), + [anon_sym_do] = ACTIONS(2932), + [anon_sym_for] = ACTIONS(2932), + [anon_sym_return] = ACTIONS(2932), + [anon_sym_break] = ACTIONS(2932), + [anon_sym_continue] = ACTIONS(2932), + [anon_sym_goto] = ACTIONS(2932), + [anon_sym_not] = ACTIONS(2932), + [anon_sym_compl] = ACTIONS(2932), + [anon_sym_DASH_DASH] = ACTIONS(2934), + [anon_sym_PLUS_PLUS] = ACTIONS(2934), + [anon_sym_sizeof] = ACTIONS(2932), + [anon_sym_offsetof] = ACTIONS(2932), + [anon_sym__Generic] = ACTIONS(2932), + [anon_sym_asm] = ACTIONS(2932), + [anon_sym___asm__] = ACTIONS(2932), + [sym_number_literal] = ACTIONS(2934), + [anon_sym_L_SQUOTE] = ACTIONS(2934), + [anon_sym_u_SQUOTE] = ACTIONS(2934), + [anon_sym_U_SQUOTE] = ACTIONS(2934), + [anon_sym_u8_SQUOTE] = ACTIONS(2934), + [anon_sym_SQUOTE] = ACTIONS(2934), + [anon_sym_L_DQUOTE] = ACTIONS(2934), + [anon_sym_u_DQUOTE] = ACTIONS(2934), + [anon_sym_U_DQUOTE] = ACTIONS(2934), + [anon_sym_u8_DQUOTE] = ACTIONS(2934), + [anon_sym_DQUOTE] = ACTIONS(2934), + [sym_true] = ACTIONS(2932), + [sym_false] = ACTIONS(2932), + [anon_sym_NULL] = ACTIONS(2932), + [anon_sym_nullptr] = ACTIONS(2932), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2932), + [anon_sym_decltype] = ACTIONS(2932), + [anon_sym_virtual] = ACTIONS(2932), + [anon_sym_explicit] = ACTIONS(2932), + [anon_sym_typename] = ACTIONS(2932), + [anon_sym_template] = ACTIONS(2932), + [anon_sym_operator] = ACTIONS(2932), + [anon_sym_try] = ACTIONS(2932), + [anon_sym_delete] = ACTIONS(2932), + [anon_sym_throw] = ACTIONS(2932), + [anon_sym_namespace] = ACTIONS(2932), + [anon_sym_using] = ACTIONS(2932), + [anon_sym_static_assert] = ACTIONS(2932), + [anon_sym_concept] = ACTIONS(2932), + [anon_sym_co_return] = ACTIONS(2932), + [anon_sym_co_yield] = ACTIONS(2932), + [anon_sym_R_DQUOTE] = ACTIONS(2934), + [anon_sym_LR_DQUOTE] = ACTIONS(2934), + [anon_sym_uR_DQUOTE] = ACTIONS(2934), + [anon_sym_UR_DQUOTE] = ACTIONS(2934), + [anon_sym_u8R_DQUOTE] = ACTIONS(2934), + [anon_sym_co_await] = ACTIONS(2932), + [anon_sym_new] = ACTIONS(2932), + [anon_sym_requires] = ACTIONS(2932), + [sym_this] = ACTIONS(2932), }, [997] = { - [sym_identifier] = ACTIONS(2830), - [aux_sym_preproc_include_token1] = ACTIONS(2830), - [aux_sym_preproc_def_token1] = ACTIONS(2830), - [aux_sym_preproc_if_token1] = ACTIONS(2830), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2830), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2830), - [sym_preproc_directive] = ACTIONS(2830), - [anon_sym_LPAREN2] = ACTIONS(2832), - [anon_sym_BANG] = ACTIONS(2832), - [anon_sym_TILDE] = ACTIONS(2832), - [anon_sym_DASH] = ACTIONS(2830), - [anon_sym_PLUS] = ACTIONS(2830), - [anon_sym_STAR] = ACTIONS(2832), - [anon_sym_AMP_AMP] = ACTIONS(2832), - [anon_sym_AMP] = ACTIONS(2830), - [anon_sym_SEMI] = ACTIONS(2832), - [anon_sym_typedef] = ACTIONS(2830), - [anon_sym_extern] = ACTIONS(2830), - [anon_sym___attribute__] = ACTIONS(2830), - [anon_sym_COLON_COLON] = ACTIONS(2832), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2832), - [anon_sym___declspec] = ACTIONS(2830), - [anon_sym___based] = ACTIONS(2830), - [anon_sym___cdecl] = ACTIONS(2830), - [anon_sym___clrcall] = ACTIONS(2830), - [anon_sym___stdcall] = ACTIONS(2830), - [anon_sym___fastcall] = ACTIONS(2830), - [anon_sym___thiscall] = ACTIONS(2830), - [anon_sym___vectorcall] = ACTIONS(2830), - [anon_sym_LBRACE] = ACTIONS(2832), - [anon_sym_RBRACE] = ACTIONS(2832), - [anon_sym_LBRACK] = ACTIONS(2830), - [anon_sym_static] = ACTIONS(2830), - [anon_sym_register] = ACTIONS(2830), - [anon_sym_inline] = ACTIONS(2830), - [anon_sym_thread_local] = ACTIONS(2830), - [anon_sym_const] = ACTIONS(2830), - [anon_sym_volatile] = ACTIONS(2830), - [anon_sym_restrict] = ACTIONS(2830), - [anon_sym__Atomic] = ACTIONS(2830), - [anon_sym_mutable] = ACTIONS(2830), - [anon_sym_constexpr] = ACTIONS(2830), - [anon_sym_constinit] = ACTIONS(2830), - [anon_sym_consteval] = ACTIONS(2830), - [anon_sym_signed] = ACTIONS(2830), - [anon_sym_unsigned] = ACTIONS(2830), - [anon_sym_long] = ACTIONS(2830), - [anon_sym_short] = ACTIONS(2830), - [sym_primitive_type] = ACTIONS(2830), - [anon_sym_enum] = ACTIONS(2830), - [anon_sym_class] = ACTIONS(2830), - [anon_sym_struct] = ACTIONS(2830), - [anon_sym_union] = ACTIONS(2830), - [anon_sym_if] = ACTIONS(2830), - [anon_sym_switch] = ACTIONS(2830), - [anon_sym_case] = ACTIONS(2830), - [anon_sym_default] = ACTIONS(2830), - [anon_sym_while] = ACTIONS(2830), - [anon_sym_do] = ACTIONS(2830), - [anon_sym_for] = ACTIONS(2830), - [anon_sym_return] = ACTIONS(2830), - [anon_sym_break] = ACTIONS(2830), - [anon_sym_continue] = ACTIONS(2830), - [anon_sym_goto] = ACTIONS(2830), - [anon_sym_not] = ACTIONS(2830), - [anon_sym_compl] = ACTIONS(2830), - [anon_sym_DASH_DASH] = ACTIONS(2832), - [anon_sym_PLUS_PLUS] = ACTIONS(2832), - [anon_sym_sizeof] = ACTIONS(2830), - [sym_number_literal] = ACTIONS(2832), - [anon_sym_L_SQUOTE] = ACTIONS(2832), - [anon_sym_u_SQUOTE] = ACTIONS(2832), - [anon_sym_U_SQUOTE] = ACTIONS(2832), - [anon_sym_u8_SQUOTE] = ACTIONS(2832), - [anon_sym_SQUOTE] = ACTIONS(2832), - [anon_sym_L_DQUOTE] = ACTIONS(2832), - [anon_sym_u_DQUOTE] = ACTIONS(2832), - [anon_sym_U_DQUOTE] = ACTIONS(2832), - [anon_sym_u8_DQUOTE] = ACTIONS(2832), - [anon_sym_DQUOTE] = ACTIONS(2832), - [sym_true] = ACTIONS(2830), - [sym_false] = ACTIONS(2830), - [sym_null] = ACTIONS(2830), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2830), - [anon_sym_decltype] = ACTIONS(2830), - [anon_sym_virtual] = ACTIONS(2830), - [anon_sym_explicit] = ACTIONS(2830), - [anon_sym_typename] = ACTIONS(2830), - [anon_sym_template] = ACTIONS(2830), - [anon_sym_operator] = ACTIONS(2830), - [anon_sym_try] = ACTIONS(2830), - [anon_sym_delete] = ACTIONS(2830), - [anon_sym_throw] = ACTIONS(2830), - [anon_sym_namespace] = ACTIONS(2830), - [anon_sym_using] = ACTIONS(2830), - [anon_sym_static_assert] = ACTIONS(2830), - [anon_sym_concept] = ACTIONS(2830), - [anon_sym_co_return] = ACTIONS(2830), - [anon_sym_co_yield] = ACTIONS(2830), - [anon_sym_R_DQUOTE] = ACTIONS(2832), - [anon_sym_LR_DQUOTE] = ACTIONS(2832), - [anon_sym_uR_DQUOTE] = ACTIONS(2832), - [anon_sym_UR_DQUOTE] = ACTIONS(2832), - [anon_sym_u8R_DQUOTE] = ACTIONS(2832), - [anon_sym_co_await] = ACTIONS(2830), - [anon_sym_new] = ACTIONS(2830), - [anon_sym_requires] = ACTIONS(2830), - [sym_this] = ACTIONS(2830), - [sym_nullptr] = ACTIONS(2830), + [ts_builtin_sym_end] = ACTIONS(2930), + [sym_identifier] = ACTIONS(2928), + [aux_sym_preproc_include_token1] = ACTIONS(2928), + [aux_sym_preproc_def_token1] = ACTIONS(2928), + [aux_sym_preproc_if_token1] = ACTIONS(2928), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2928), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2928), + [sym_preproc_directive] = ACTIONS(2928), + [anon_sym_LPAREN2] = ACTIONS(2930), + [anon_sym_BANG] = ACTIONS(2930), + [anon_sym_TILDE] = ACTIONS(2930), + [anon_sym_DASH] = ACTIONS(2928), + [anon_sym_PLUS] = ACTIONS(2928), + [anon_sym_STAR] = ACTIONS(2930), + [anon_sym_AMP_AMP] = ACTIONS(2930), + [anon_sym_AMP] = ACTIONS(2928), + [anon_sym_SEMI] = ACTIONS(2930), + [anon_sym_typedef] = ACTIONS(2928), + [anon_sym_extern] = ACTIONS(2928), + [anon_sym___attribute__] = ACTIONS(2928), + [anon_sym_COLON_COLON] = ACTIONS(2930), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2930), + [anon_sym___declspec] = ACTIONS(2928), + [anon_sym___based] = ACTIONS(2928), + [anon_sym___cdecl] = ACTIONS(2928), + [anon_sym___clrcall] = ACTIONS(2928), + [anon_sym___stdcall] = ACTIONS(2928), + [anon_sym___fastcall] = ACTIONS(2928), + [anon_sym___thiscall] = ACTIONS(2928), + [anon_sym___vectorcall] = ACTIONS(2928), + [anon_sym_LBRACE] = ACTIONS(2930), + [anon_sym_LBRACK] = ACTIONS(2928), + [anon_sym_static] = ACTIONS(2928), + [anon_sym_register] = ACTIONS(2928), + [anon_sym_inline] = ACTIONS(2928), + [anon_sym_thread_local] = ACTIONS(2928), + [anon_sym_const] = ACTIONS(2928), + [anon_sym_constexpr] = ACTIONS(2928), + [anon_sym_volatile] = ACTIONS(2928), + [anon_sym_restrict] = ACTIONS(2928), + [anon_sym___restrict__] = ACTIONS(2928), + [anon_sym__Atomic] = ACTIONS(2928), + [anon_sym__Noreturn] = ACTIONS(2928), + [anon_sym_noreturn] = ACTIONS(2928), + [anon_sym_mutable] = ACTIONS(2928), + [anon_sym_constinit] = ACTIONS(2928), + [anon_sym_consteval] = ACTIONS(2928), + [anon_sym_signed] = ACTIONS(2928), + [anon_sym_unsigned] = ACTIONS(2928), + [anon_sym_long] = ACTIONS(2928), + [anon_sym_short] = ACTIONS(2928), + [sym_primitive_type] = ACTIONS(2928), + [anon_sym_enum] = ACTIONS(2928), + [anon_sym_class] = ACTIONS(2928), + [anon_sym_struct] = ACTIONS(2928), + [anon_sym_union] = ACTIONS(2928), + [anon_sym_if] = ACTIONS(2928), + [anon_sym_else] = ACTIONS(2928), + [anon_sym_switch] = ACTIONS(2928), + [anon_sym_case] = ACTIONS(2928), + [anon_sym_default] = ACTIONS(2928), + [anon_sym_while] = ACTIONS(2928), + [anon_sym_do] = ACTIONS(2928), + [anon_sym_for] = ACTIONS(2928), + [anon_sym_return] = ACTIONS(2928), + [anon_sym_break] = ACTIONS(2928), + [anon_sym_continue] = ACTIONS(2928), + [anon_sym_goto] = ACTIONS(2928), + [anon_sym_not] = ACTIONS(2928), + [anon_sym_compl] = ACTIONS(2928), + [anon_sym_DASH_DASH] = ACTIONS(2930), + [anon_sym_PLUS_PLUS] = ACTIONS(2930), + [anon_sym_sizeof] = ACTIONS(2928), + [anon_sym_offsetof] = ACTIONS(2928), + [anon_sym__Generic] = ACTIONS(2928), + [anon_sym_asm] = ACTIONS(2928), + [anon_sym___asm__] = ACTIONS(2928), + [sym_number_literal] = ACTIONS(2930), + [anon_sym_L_SQUOTE] = ACTIONS(2930), + [anon_sym_u_SQUOTE] = ACTIONS(2930), + [anon_sym_U_SQUOTE] = ACTIONS(2930), + [anon_sym_u8_SQUOTE] = ACTIONS(2930), + [anon_sym_SQUOTE] = ACTIONS(2930), + [anon_sym_L_DQUOTE] = ACTIONS(2930), + [anon_sym_u_DQUOTE] = ACTIONS(2930), + [anon_sym_U_DQUOTE] = ACTIONS(2930), + [anon_sym_u8_DQUOTE] = ACTIONS(2930), + [anon_sym_DQUOTE] = ACTIONS(2930), + [sym_true] = ACTIONS(2928), + [sym_false] = ACTIONS(2928), + [anon_sym_NULL] = ACTIONS(2928), + [anon_sym_nullptr] = ACTIONS(2928), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2928), + [anon_sym_decltype] = ACTIONS(2928), + [anon_sym_virtual] = ACTIONS(2928), + [anon_sym_explicit] = ACTIONS(2928), + [anon_sym_typename] = ACTIONS(2928), + [anon_sym_template] = ACTIONS(2928), + [anon_sym_operator] = ACTIONS(2928), + [anon_sym_try] = ACTIONS(2928), + [anon_sym_delete] = ACTIONS(2928), + [anon_sym_throw] = ACTIONS(2928), + [anon_sym_namespace] = ACTIONS(2928), + [anon_sym_using] = ACTIONS(2928), + [anon_sym_static_assert] = ACTIONS(2928), + [anon_sym_concept] = ACTIONS(2928), + [anon_sym_co_return] = ACTIONS(2928), + [anon_sym_co_yield] = ACTIONS(2928), + [anon_sym_R_DQUOTE] = ACTIONS(2930), + [anon_sym_LR_DQUOTE] = ACTIONS(2930), + [anon_sym_uR_DQUOTE] = ACTIONS(2930), + [anon_sym_UR_DQUOTE] = ACTIONS(2930), + [anon_sym_u8R_DQUOTE] = ACTIONS(2930), + [anon_sym_co_await] = ACTIONS(2928), + [anon_sym_new] = ACTIONS(2928), + [anon_sym_requires] = ACTIONS(2928), + [sym_this] = ACTIONS(2928), }, [998] = { - [sym_identifier] = ACTIONS(2682), - [aux_sym_preproc_include_token1] = ACTIONS(2682), - [aux_sym_preproc_def_token1] = ACTIONS(2682), - [aux_sym_preproc_if_token1] = ACTIONS(2682), - [aux_sym_preproc_if_token2] = ACTIONS(2682), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2682), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2682), - [sym_preproc_directive] = ACTIONS(2682), - [anon_sym_LPAREN2] = ACTIONS(2684), - [anon_sym_BANG] = ACTIONS(2684), - [anon_sym_TILDE] = ACTIONS(2684), - [anon_sym_DASH] = ACTIONS(2682), - [anon_sym_PLUS] = ACTIONS(2682), - [anon_sym_STAR] = ACTIONS(2684), - [anon_sym_AMP_AMP] = ACTIONS(2684), - [anon_sym_AMP] = ACTIONS(2682), - [anon_sym_SEMI] = ACTIONS(2684), - [anon_sym_typedef] = ACTIONS(2682), - [anon_sym_extern] = ACTIONS(2682), - [anon_sym___attribute__] = ACTIONS(2682), - [anon_sym_COLON_COLON] = ACTIONS(2684), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2684), - [anon_sym___declspec] = ACTIONS(2682), - [anon_sym___based] = ACTIONS(2682), - [anon_sym___cdecl] = ACTIONS(2682), - [anon_sym___clrcall] = ACTIONS(2682), - [anon_sym___stdcall] = ACTIONS(2682), - [anon_sym___fastcall] = ACTIONS(2682), - [anon_sym___thiscall] = ACTIONS(2682), - [anon_sym___vectorcall] = ACTIONS(2682), - [anon_sym_LBRACE] = ACTIONS(2684), - [anon_sym_LBRACK] = ACTIONS(2682), - [anon_sym_static] = ACTIONS(2682), - [anon_sym_register] = ACTIONS(2682), - [anon_sym_inline] = ACTIONS(2682), - [anon_sym_thread_local] = ACTIONS(2682), - [anon_sym_const] = ACTIONS(2682), - [anon_sym_volatile] = ACTIONS(2682), - [anon_sym_restrict] = ACTIONS(2682), - [anon_sym__Atomic] = ACTIONS(2682), - [anon_sym_mutable] = ACTIONS(2682), - [anon_sym_constexpr] = ACTIONS(2682), - [anon_sym_constinit] = ACTIONS(2682), - [anon_sym_consteval] = ACTIONS(2682), - [anon_sym_signed] = ACTIONS(2682), - [anon_sym_unsigned] = ACTIONS(2682), - [anon_sym_long] = ACTIONS(2682), - [anon_sym_short] = ACTIONS(2682), - [sym_primitive_type] = ACTIONS(2682), - [anon_sym_enum] = ACTIONS(2682), - [anon_sym_class] = ACTIONS(2682), - [anon_sym_struct] = ACTIONS(2682), - [anon_sym_union] = ACTIONS(2682), - [anon_sym_if] = ACTIONS(2682), - [anon_sym_switch] = ACTIONS(2682), - [anon_sym_case] = ACTIONS(2682), - [anon_sym_default] = ACTIONS(2682), - [anon_sym_while] = ACTIONS(2682), - [anon_sym_do] = ACTIONS(2682), - [anon_sym_for] = ACTIONS(2682), - [anon_sym_return] = ACTIONS(2682), - [anon_sym_break] = ACTIONS(2682), - [anon_sym_continue] = ACTIONS(2682), - [anon_sym_goto] = ACTIONS(2682), - [anon_sym_not] = ACTIONS(2682), - [anon_sym_compl] = ACTIONS(2682), - [anon_sym_DASH_DASH] = ACTIONS(2684), - [anon_sym_PLUS_PLUS] = ACTIONS(2684), - [anon_sym_sizeof] = ACTIONS(2682), - [sym_number_literal] = ACTIONS(2684), - [anon_sym_L_SQUOTE] = ACTIONS(2684), - [anon_sym_u_SQUOTE] = ACTIONS(2684), - [anon_sym_U_SQUOTE] = ACTIONS(2684), - [anon_sym_u8_SQUOTE] = ACTIONS(2684), - [anon_sym_SQUOTE] = ACTIONS(2684), - [anon_sym_L_DQUOTE] = ACTIONS(2684), - [anon_sym_u_DQUOTE] = ACTIONS(2684), - [anon_sym_U_DQUOTE] = ACTIONS(2684), - [anon_sym_u8_DQUOTE] = ACTIONS(2684), - [anon_sym_DQUOTE] = ACTIONS(2684), - [sym_true] = ACTIONS(2682), - [sym_false] = ACTIONS(2682), - [sym_null] = ACTIONS(2682), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2682), - [anon_sym_decltype] = ACTIONS(2682), - [anon_sym_virtual] = ACTIONS(2682), - [anon_sym_explicit] = ACTIONS(2682), - [anon_sym_typename] = ACTIONS(2682), - [anon_sym_template] = ACTIONS(2682), - [anon_sym_operator] = ACTIONS(2682), - [anon_sym_try] = ACTIONS(2682), - [anon_sym_delete] = ACTIONS(2682), - [anon_sym_throw] = ACTIONS(2682), - [anon_sym_namespace] = ACTIONS(2682), - [anon_sym_using] = ACTIONS(2682), - [anon_sym_static_assert] = ACTIONS(2682), - [anon_sym_concept] = ACTIONS(2682), - [anon_sym_co_return] = ACTIONS(2682), - [anon_sym_co_yield] = ACTIONS(2682), - [anon_sym_R_DQUOTE] = ACTIONS(2684), - [anon_sym_LR_DQUOTE] = ACTIONS(2684), - [anon_sym_uR_DQUOTE] = ACTIONS(2684), - [anon_sym_UR_DQUOTE] = ACTIONS(2684), - [anon_sym_u8R_DQUOTE] = ACTIONS(2684), - [anon_sym_co_await] = ACTIONS(2682), - [anon_sym_new] = ACTIONS(2682), - [anon_sym_requires] = ACTIONS(2682), - [sym_this] = ACTIONS(2682), - [sym_nullptr] = ACTIONS(2682), + [sym_identifier] = ACTIONS(2996), + [aux_sym_preproc_include_token1] = ACTIONS(2996), + [aux_sym_preproc_def_token1] = ACTIONS(2996), + [aux_sym_preproc_if_token1] = ACTIONS(2996), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2996), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2996), + [sym_preproc_directive] = ACTIONS(2996), + [anon_sym_LPAREN2] = ACTIONS(2998), + [anon_sym_BANG] = ACTIONS(2998), + [anon_sym_TILDE] = ACTIONS(2998), + [anon_sym_DASH] = ACTIONS(2996), + [anon_sym_PLUS] = ACTIONS(2996), + [anon_sym_STAR] = ACTIONS(2998), + [anon_sym_AMP_AMP] = ACTIONS(2998), + [anon_sym_AMP] = ACTIONS(2996), + [anon_sym_SEMI] = ACTIONS(2998), + [anon_sym_typedef] = ACTIONS(2996), + [anon_sym_extern] = ACTIONS(2996), + [anon_sym___attribute__] = ACTIONS(2996), + [anon_sym_COLON_COLON] = ACTIONS(2998), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2998), + [anon_sym___declspec] = ACTIONS(2996), + [anon_sym___based] = ACTIONS(2996), + [anon_sym___cdecl] = ACTIONS(2996), + [anon_sym___clrcall] = ACTIONS(2996), + [anon_sym___stdcall] = ACTIONS(2996), + [anon_sym___fastcall] = ACTIONS(2996), + [anon_sym___thiscall] = ACTIONS(2996), + [anon_sym___vectorcall] = ACTIONS(2996), + [anon_sym_LBRACE] = ACTIONS(2998), + [anon_sym_RBRACE] = ACTIONS(2998), + [anon_sym_LBRACK] = ACTIONS(2996), + [anon_sym_static] = ACTIONS(2996), + [anon_sym_register] = ACTIONS(2996), + [anon_sym_inline] = ACTIONS(2996), + [anon_sym_thread_local] = ACTIONS(2996), + [anon_sym_const] = ACTIONS(2996), + [anon_sym_constexpr] = ACTIONS(2996), + [anon_sym_volatile] = ACTIONS(2996), + [anon_sym_restrict] = ACTIONS(2996), + [anon_sym___restrict__] = ACTIONS(2996), + [anon_sym__Atomic] = ACTIONS(2996), + [anon_sym__Noreturn] = ACTIONS(2996), + [anon_sym_noreturn] = ACTIONS(2996), + [anon_sym_mutable] = ACTIONS(2996), + [anon_sym_constinit] = ACTIONS(2996), + [anon_sym_consteval] = ACTIONS(2996), + [anon_sym_signed] = ACTIONS(2996), + [anon_sym_unsigned] = ACTIONS(2996), + [anon_sym_long] = ACTIONS(2996), + [anon_sym_short] = ACTIONS(2996), + [sym_primitive_type] = ACTIONS(2996), + [anon_sym_enum] = ACTIONS(2996), + [anon_sym_class] = ACTIONS(2996), + [anon_sym_struct] = ACTIONS(2996), + [anon_sym_union] = ACTIONS(2996), + [anon_sym_if] = ACTIONS(2996), + [anon_sym_else] = ACTIONS(2996), + [anon_sym_switch] = ACTIONS(2996), + [anon_sym_case] = ACTIONS(2996), + [anon_sym_default] = ACTIONS(2996), + [anon_sym_while] = ACTIONS(2996), + [anon_sym_do] = ACTIONS(2996), + [anon_sym_for] = ACTIONS(2996), + [anon_sym_return] = ACTIONS(2996), + [anon_sym_break] = ACTIONS(2996), + [anon_sym_continue] = ACTIONS(2996), + [anon_sym_goto] = ACTIONS(2996), + [anon_sym_not] = ACTIONS(2996), + [anon_sym_compl] = ACTIONS(2996), + [anon_sym_DASH_DASH] = ACTIONS(2998), + [anon_sym_PLUS_PLUS] = ACTIONS(2998), + [anon_sym_sizeof] = ACTIONS(2996), + [anon_sym_offsetof] = ACTIONS(2996), + [anon_sym__Generic] = ACTIONS(2996), + [anon_sym_asm] = ACTIONS(2996), + [anon_sym___asm__] = ACTIONS(2996), + [sym_number_literal] = ACTIONS(2998), + [anon_sym_L_SQUOTE] = ACTIONS(2998), + [anon_sym_u_SQUOTE] = ACTIONS(2998), + [anon_sym_U_SQUOTE] = ACTIONS(2998), + [anon_sym_u8_SQUOTE] = ACTIONS(2998), + [anon_sym_SQUOTE] = ACTIONS(2998), + [anon_sym_L_DQUOTE] = ACTIONS(2998), + [anon_sym_u_DQUOTE] = ACTIONS(2998), + [anon_sym_U_DQUOTE] = ACTIONS(2998), + [anon_sym_u8_DQUOTE] = ACTIONS(2998), + [anon_sym_DQUOTE] = ACTIONS(2998), + [sym_true] = ACTIONS(2996), + [sym_false] = ACTIONS(2996), + [anon_sym_NULL] = ACTIONS(2996), + [anon_sym_nullptr] = ACTIONS(2996), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2996), + [anon_sym_decltype] = ACTIONS(2996), + [anon_sym_virtual] = ACTIONS(2996), + [anon_sym_explicit] = ACTIONS(2996), + [anon_sym_typename] = ACTIONS(2996), + [anon_sym_template] = ACTIONS(2996), + [anon_sym_operator] = ACTIONS(2996), + [anon_sym_try] = ACTIONS(2996), + [anon_sym_delete] = ACTIONS(2996), + [anon_sym_throw] = ACTIONS(2996), + [anon_sym_namespace] = ACTIONS(2996), + [anon_sym_using] = ACTIONS(2996), + [anon_sym_static_assert] = ACTIONS(2996), + [anon_sym_concept] = ACTIONS(2996), + [anon_sym_co_return] = ACTIONS(2996), + [anon_sym_co_yield] = ACTIONS(2996), + [anon_sym_R_DQUOTE] = ACTIONS(2998), + [anon_sym_LR_DQUOTE] = ACTIONS(2998), + [anon_sym_uR_DQUOTE] = ACTIONS(2998), + [anon_sym_UR_DQUOTE] = ACTIONS(2998), + [anon_sym_u8R_DQUOTE] = ACTIONS(2998), + [anon_sym_co_await] = ACTIONS(2996), + [anon_sym_new] = ACTIONS(2996), + [anon_sym_requires] = ACTIONS(2996), + [sym_this] = ACTIONS(2996), }, [999] = { - [sym_identifier] = ACTIONS(2856), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2858), - [anon_sym_AMP] = ACTIONS(2856), - [anon_sym_SEMI] = ACTIONS(2858), - [anon_sym_typedef] = ACTIONS(2856), - [anon_sym_extern] = ACTIONS(2856), - [anon_sym___attribute__] = ACTIONS(2856), - [anon_sym_COLON_COLON] = ACTIONS(2858), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2858), - [anon_sym___declspec] = ACTIONS(2856), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2856), - [anon_sym_static] = ACTIONS(2856), - [anon_sym_register] = ACTIONS(2856), - [anon_sym_inline] = ACTIONS(2856), - [anon_sym_thread_local] = ACTIONS(2856), - [anon_sym_const] = ACTIONS(2856), - [anon_sym_volatile] = ACTIONS(2856), - [anon_sym_restrict] = ACTIONS(2856), - [anon_sym__Atomic] = ACTIONS(2856), - [anon_sym_mutable] = ACTIONS(2856), - [anon_sym_constexpr] = ACTIONS(2856), - [anon_sym_constinit] = ACTIONS(2856), - [anon_sym_consteval] = ACTIONS(2856), - [anon_sym_signed] = ACTIONS(2856), - [anon_sym_unsigned] = ACTIONS(2856), - [anon_sym_long] = ACTIONS(2856), - [anon_sym_short] = ACTIONS(2856), - [sym_primitive_type] = ACTIONS(2856), - [anon_sym_enum] = ACTIONS(2856), - [anon_sym_class] = 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_return] = ACTIONS(2856), - [anon_sym_break] = ACTIONS(2856), - [anon_sym_continue] = ACTIONS(2856), - [anon_sym_goto] = ACTIONS(2856), - [anon_sym_not] = ACTIONS(2856), - [anon_sym_compl] = ACTIONS(2856), - [anon_sym_DASH_DASH] = ACTIONS(2858), - [anon_sym_PLUS_PLUS] = ACTIONS(2858), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2858), - [anon_sym_u_DQUOTE] = ACTIONS(2858), - [anon_sym_U_DQUOTE] = ACTIONS(2858), - [anon_sym_u8_DQUOTE] = ACTIONS(2858), - [anon_sym_DQUOTE] = ACTIONS(2858), - [sym_true] = ACTIONS(2856), - [sym_false] = ACTIONS(2856), - [sym_null] = ACTIONS(2856), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2856), - [anon_sym_decltype] = ACTIONS(2856), - [anon_sym_virtual] = ACTIONS(2856), - [anon_sym_explicit] = ACTIONS(2856), - [anon_sym_typename] = ACTIONS(2856), - [anon_sym_template] = ACTIONS(2856), - [anon_sym_operator] = ACTIONS(2856), - [anon_sym_try] = ACTIONS(2856), - [anon_sym_delete] = ACTIONS(2856), - [anon_sym_throw] = ACTIONS(2856), - [anon_sym_namespace] = ACTIONS(2856), - [anon_sym_using] = ACTIONS(2856), - [anon_sym_static_assert] = ACTIONS(2856), - [anon_sym_concept] = ACTIONS(2856), - [anon_sym_co_return] = ACTIONS(2856), - [anon_sym_co_yield] = ACTIONS(2856), - [anon_sym_R_DQUOTE] = ACTIONS(2858), - [anon_sym_LR_DQUOTE] = ACTIONS(2858), - [anon_sym_uR_DQUOTE] = ACTIONS(2858), - [anon_sym_UR_DQUOTE] = ACTIONS(2858), - [anon_sym_u8R_DQUOTE] = ACTIONS(2858), - [anon_sym_co_await] = ACTIONS(2856), - [anon_sym_new] = ACTIONS(2856), - [anon_sym_requires] = ACTIONS(2856), - [sym_this] = ACTIONS(2856), - [sym_nullptr] = ACTIONS(2856), + [sym_identifier] = ACTIONS(2984), + [aux_sym_preproc_include_token1] = ACTIONS(2984), + [aux_sym_preproc_def_token1] = ACTIONS(2984), + [aux_sym_preproc_if_token1] = ACTIONS(2984), + [aux_sym_preproc_if_token2] = ACTIONS(2984), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2984), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2984), + [sym_preproc_directive] = ACTIONS(2984), + [anon_sym_LPAREN2] = ACTIONS(2986), + [anon_sym_BANG] = ACTIONS(2986), + [anon_sym_TILDE] = ACTIONS(2986), + [anon_sym_DASH] = ACTIONS(2984), + [anon_sym_PLUS] = ACTIONS(2984), + [anon_sym_STAR] = ACTIONS(2986), + [anon_sym_AMP_AMP] = ACTIONS(2986), + [anon_sym_AMP] = ACTIONS(2984), + [anon_sym_SEMI] = ACTIONS(2986), + [anon_sym_typedef] = ACTIONS(2984), + [anon_sym_extern] = ACTIONS(2984), + [anon_sym___attribute__] = ACTIONS(2984), + [anon_sym_COLON_COLON] = ACTIONS(2986), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2986), + [anon_sym___declspec] = ACTIONS(2984), + [anon_sym___based] = ACTIONS(2984), + [anon_sym___cdecl] = ACTIONS(2984), + [anon_sym___clrcall] = ACTIONS(2984), + [anon_sym___stdcall] = ACTIONS(2984), + [anon_sym___fastcall] = ACTIONS(2984), + [anon_sym___thiscall] = ACTIONS(2984), + [anon_sym___vectorcall] = ACTIONS(2984), + [anon_sym_LBRACE] = ACTIONS(2986), + [anon_sym_LBRACK] = ACTIONS(2984), + [anon_sym_static] = ACTIONS(2984), + [anon_sym_register] = ACTIONS(2984), + [anon_sym_inline] = ACTIONS(2984), + [anon_sym_thread_local] = ACTIONS(2984), + [anon_sym_const] = ACTIONS(2984), + [anon_sym_constexpr] = ACTIONS(2984), + [anon_sym_volatile] = ACTIONS(2984), + [anon_sym_restrict] = ACTIONS(2984), + [anon_sym___restrict__] = ACTIONS(2984), + [anon_sym__Atomic] = ACTIONS(2984), + [anon_sym__Noreturn] = ACTIONS(2984), + [anon_sym_noreturn] = ACTIONS(2984), + [anon_sym_mutable] = ACTIONS(2984), + [anon_sym_constinit] = ACTIONS(2984), + [anon_sym_consteval] = ACTIONS(2984), + [anon_sym_signed] = ACTIONS(2984), + [anon_sym_unsigned] = ACTIONS(2984), + [anon_sym_long] = ACTIONS(2984), + [anon_sym_short] = ACTIONS(2984), + [sym_primitive_type] = ACTIONS(2984), + [anon_sym_enum] = ACTIONS(2984), + [anon_sym_class] = ACTIONS(2984), + [anon_sym_struct] = ACTIONS(2984), + [anon_sym_union] = ACTIONS(2984), + [anon_sym_if] = ACTIONS(2984), + [anon_sym_else] = ACTIONS(2984), + [anon_sym_switch] = ACTIONS(2984), + [anon_sym_case] = ACTIONS(2984), + [anon_sym_default] = ACTIONS(2984), + [anon_sym_while] = ACTIONS(2984), + [anon_sym_do] = ACTIONS(2984), + [anon_sym_for] = ACTIONS(2984), + [anon_sym_return] = ACTIONS(2984), + [anon_sym_break] = ACTIONS(2984), + [anon_sym_continue] = ACTIONS(2984), + [anon_sym_goto] = ACTIONS(2984), + [anon_sym_not] = ACTIONS(2984), + [anon_sym_compl] = ACTIONS(2984), + [anon_sym_DASH_DASH] = ACTIONS(2986), + [anon_sym_PLUS_PLUS] = ACTIONS(2986), + [anon_sym_sizeof] = ACTIONS(2984), + [anon_sym_offsetof] = ACTIONS(2984), + [anon_sym__Generic] = ACTIONS(2984), + [anon_sym_asm] = ACTIONS(2984), + [anon_sym___asm__] = ACTIONS(2984), + [sym_number_literal] = ACTIONS(2986), + [anon_sym_L_SQUOTE] = ACTIONS(2986), + [anon_sym_u_SQUOTE] = ACTIONS(2986), + [anon_sym_U_SQUOTE] = ACTIONS(2986), + [anon_sym_u8_SQUOTE] = ACTIONS(2986), + [anon_sym_SQUOTE] = ACTIONS(2986), + [anon_sym_L_DQUOTE] = ACTIONS(2986), + [anon_sym_u_DQUOTE] = ACTIONS(2986), + [anon_sym_U_DQUOTE] = ACTIONS(2986), + [anon_sym_u8_DQUOTE] = ACTIONS(2986), + [anon_sym_DQUOTE] = ACTIONS(2986), + [sym_true] = ACTIONS(2984), + [sym_false] = ACTIONS(2984), + [anon_sym_NULL] = ACTIONS(2984), + [anon_sym_nullptr] = ACTIONS(2984), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2984), + [anon_sym_decltype] = ACTIONS(2984), + [anon_sym_virtual] = ACTIONS(2984), + [anon_sym_explicit] = ACTIONS(2984), + [anon_sym_typename] = ACTIONS(2984), + [anon_sym_template] = ACTIONS(2984), + [anon_sym_operator] = ACTIONS(2984), + [anon_sym_try] = ACTIONS(2984), + [anon_sym_delete] = ACTIONS(2984), + [anon_sym_throw] = ACTIONS(2984), + [anon_sym_namespace] = ACTIONS(2984), + [anon_sym_using] = ACTIONS(2984), + [anon_sym_static_assert] = ACTIONS(2984), + [anon_sym_concept] = ACTIONS(2984), + [anon_sym_co_return] = ACTIONS(2984), + [anon_sym_co_yield] = ACTIONS(2984), + [anon_sym_R_DQUOTE] = ACTIONS(2986), + [anon_sym_LR_DQUOTE] = ACTIONS(2986), + [anon_sym_uR_DQUOTE] = ACTIONS(2986), + [anon_sym_UR_DQUOTE] = ACTIONS(2986), + [anon_sym_u8R_DQUOTE] = ACTIONS(2986), + [anon_sym_co_await] = ACTIONS(2984), + [anon_sym_new] = ACTIONS(2984), + [anon_sym_requires] = ACTIONS(2984), + [sym_this] = ACTIONS(2984), }, [1000] = { - [sym_identifier] = ACTIONS(2860), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2862), - [anon_sym_AMP] = ACTIONS(2860), - [anon_sym_SEMI] = ACTIONS(2862), - [anon_sym_typedef] = ACTIONS(2860), - [anon_sym_extern] = ACTIONS(2860), - [anon_sym___attribute__] = ACTIONS(2860), - [anon_sym_COLON_COLON] = ACTIONS(2862), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2862), - [anon_sym___declspec] = ACTIONS(2860), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2860), - [anon_sym_static] = ACTIONS(2860), - [anon_sym_register] = ACTIONS(2860), - [anon_sym_inline] = ACTIONS(2860), - [anon_sym_thread_local] = ACTIONS(2860), - [anon_sym_const] = ACTIONS(2860), - [anon_sym_volatile] = ACTIONS(2860), - [anon_sym_restrict] = ACTIONS(2860), - [anon_sym__Atomic] = ACTIONS(2860), - [anon_sym_mutable] = ACTIONS(2860), - [anon_sym_constexpr] = ACTIONS(2860), - [anon_sym_constinit] = ACTIONS(2860), - [anon_sym_consteval] = ACTIONS(2860), - [anon_sym_signed] = ACTIONS(2860), - [anon_sym_unsigned] = ACTIONS(2860), - [anon_sym_long] = ACTIONS(2860), - [anon_sym_short] = ACTIONS(2860), - [sym_primitive_type] = ACTIONS(2860), - [anon_sym_enum] = ACTIONS(2860), - [anon_sym_class] = 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_return] = ACTIONS(2860), - [anon_sym_break] = ACTIONS(2860), - [anon_sym_continue] = ACTIONS(2860), - [anon_sym_goto] = ACTIONS(2860), - [anon_sym_not] = ACTIONS(2860), - [anon_sym_compl] = ACTIONS(2860), - [anon_sym_DASH_DASH] = ACTIONS(2862), - [anon_sym_PLUS_PLUS] = ACTIONS(2862), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2862), - [anon_sym_u_DQUOTE] = ACTIONS(2862), - [anon_sym_U_DQUOTE] = ACTIONS(2862), - [anon_sym_u8_DQUOTE] = ACTIONS(2862), - [anon_sym_DQUOTE] = ACTIONS(2862), - [sym_true] = ACTIONS(2860), - [sym_false] = ACTIONS(2860), - [sym_null] = ACTIONS(2860), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2860), - [anon_sym_decltype] = ACTIONS(2860), - [anon_sym_virtual] = ACTIONS(2860), - [anon_sym_explicit] = ACTIONS(2860), - [anon_sym_typename] = ACTIONS(2860), - [anon_sym_template] = ACTIONS(2860), - [anon_sym_operator] = ACTIONS(2860), - [anon_sym_try] = ACTIONS(2860), - [anon_sym_delete] = ACTIONS(2860), - [anon_sym_throw] = ACTIONS(2860), - [anon_sym_namespace] = ACTIONS(2860), - [anon_sym_using] = ACTIONS(2860), - [anon_sym_static_assert] = ACTIONS(2860), - [anon_sym_concept] = ACTIONS(2860), - [anon_sym_co_return] = ACTIONS(2860), - [anon_sym_co_yield] = ACTIONS(2860), - [anon_sym_R_DQUOTE] = ACTIONS(2862), - [anon_sym_LR_DQUOTE] = ACTIONS(2862), - [anon_sym_uR_DQUOTE] = ACTIONS(2862), - [anon_sym_UR_DQUOTE] = ACTIONS(2862), - [anon_sym_u8R_DQUOTE] = ACTIONS(2862), - [anon_sym_co_await] = ACTIONS(2860), - [anon_sym_new] = ACTIONS(2860), - [anon_sym_requires] = ACTIONS(2860), - [sym_this] = ACTIONS(2860), - [sym_nullptr] = ACTIONS(2860), + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_RBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, [1001] = { - [sym_identifier] = ACTIONS(2864), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2866), - [anon_sym_AMP] = ACTIONS(2864), - [anon_sym_SEMI] = ACTIONS(2866), - [anon_sym_typedef] = ACTIONS(2864), - [anon_sym_extern] = ACTIONS(2864), - [anon_sym___attribute__] = ACTIONS(2864), - [anon_sym_COLON_COLON] = ACTIONS(2866), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2866), - [anon_sym___declspec] = ACTIONS(2864), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2864), - [anon_sym_static] = ACTIONS(2864), - [anon_sym_register] = ACTIONS(2864), - [anon_sym_inline] = ACTIONS(2864), - [anon_sym_thread_local] = ACTIONS(2864), - [anon_sym_const] = ACTIONS(2864), - [anon_sym_volatile] = ACTIONS(2864), - [anon_sym_restrict] = ACTIONS(2864), - [anon_sym__Atomic] = ACTIONS(2864), - [anon_sym_mutable] = ACTIONS(2864), - [anon_sym_constexpr] = ACTIONS(2864), - [anon_sym_constinit] = ACTIONS(2864), - [anon_sym_consteval] = ACTIONS(2864), - [anon_sym_signed] = ACTIONS(2864), - [anon_sym_unsigned] = ACTIONS(2864), - [anon_sym_long] = ACTIONS(2864), - [anon_sym_short] = ACTIONS(2864), - [sym_primitive_type] = ACTIONS(2864), - [anon_sym_enum] = ACTIONS(2864), - [anon_sym_class] = 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_return] = ACTIONS(2864), - [anon_sym_break] = ACTIONS(2864), - [anon_sym_continue] = ACTIONS(2864), - [anon_sym_goto] = ACTIONS(2864), - [anon_sym_not] = ACTIONS(2864), - [anon_sym_compl] = ACTIONS(2864), - [anon_sym_DASH_DASH] = ACTIONS(2866), - [anon_sym_PLUS_PLUS] = ACTIONS(2866), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2866), - [anon_sym_u_DQUOTE] = ACTIONS(2866), - [anon_sym_U_DQUOTE] = ACTIONS(2866), - [anon_sym_u8_DQUOTE] = ACTIONS(2866), - [anon_sym_DQUOTE] = ACTIONS(2866), - [sym_true] = ACTIONS(2864), - [sym_false] = ACTIONS(2864), - [sym_null] = ACTIONS(2864), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2864), - [anon_sym_decltype] = ACTIONS(2864), - [anon_sym_virtual] = ACTIONS(2864), - [anon_sym_explicit] = ACTIONS(2864), - [anon_sym_typename] = ACTIONS(2864), - [anon_sym_template] = ACTIONS(2864), - [anon_sym_operator] = ACTIONS(2864), - [anon_sym_try] = ACTIONS(2864), - [anon_sym_delete] = ACTIONS(2864), - [anon_sym_throw] = ACTIONS(2864), - [anon_sym_namespace] = ACTIONS(2864), - [anon_sym_using] = ACTIONS(2864), - [anon_sym_static_assert] = ACTIONS(2864), - [anon_sym_concept] = ACTIONS(2864), - [anon_sym_co_return] = ACTIONS(2864), - [anon_sym_co_yield] = ACTIONS(2864), - [anon_sym_R_DQUOTE] = ACTIONS(2866), - [anon_sym_LR_DQUOTE] = ACTIONS(2866), - [anon_sym_uR_DQUOTE] = ACTIONS(2866), - [anon_sym_UR_DQUOTE] = ACTIONS(2866), - [anon_sym_u8R_DQUOTE] = ACTIONS(2866), - [anon_sym_co_await] = ACTIONS(2864), - [anon_sym_new] = ACTIONS(2864), - [anon_sym_requires] = ACTIONS(2864), - [sym_this] = ACTIONS(2864), - [sym_nullptr] = ACTIONS(2864), + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token2] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, [1002] = { - [ts_builtin_sym_end] = ACTIONS(2792), - [sym_identifier] = ACTIONS(2790), - [aux_sym_preproc_include_token1] = ACTIONS(2790), - [aux_sym_preproc_def_token1] = ACTIONS(2790), - [aux_sym_preproc_if_token1] = ACTIONS(2790), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2790), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2790), - [sym_preproc_directive] = ACTIONS(2790), - [anon_sym_LPAREN2] = ACTIONS(2792), - [anon_sym_BANG] = ACTIONS(2792), - [anon_sym_TILDE] = ACTIONS(2792), - [anon_sym_DASH] = ACTIONS(2790), - [anon_sym_PLUS] = ACTIONS(2790), - [anon_sym_STAR] = ACTIONS(2792), - [anon_sym_AMP_AMP] = ACTIONS(2792), - [anon_sym_AMP] = ACTIONS(2790), - [anon_sym_SEMI] = ACTIONS(2792), - [anon_sym_typedef] = ACTIONS(2790), - [anon_sym_extern] = ACTIONS(2790), - [anon_sym___attribute__] = ACTIONS(2790), - [anon_sym_COLON_COLON] = ACTIONS(2792), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2792), - [anon_sym___declspec] = ACTIONS(2790), - [anon_sym___based] = ACTIONS(2790), - [anon_sym___cdecl] = ACTIONS(2790), - [anon_sym___clrcall] = ACTIONS(2790), - [anon_sym___stdcall] = ACTIONS(2790), - [anon_sym___fastcall] = ACTIONS(2790), - [anon_sym___thiscall] = ACTIONS(2790), - [anon_sym___vectorcall] = ACTIONS(2790), - [anon_sym_LBRACE] = ACTIONS(2792), - [anon_sym_LBRACK] = ACTIONS(2790), - [anon_sym_static] = ACTIONS(2790), - [anon_sym_register] = ACTIONS(2790), - [anon_sym_inline] = ACTIONS(2790), - [anon_sym_thread_local] = ACTIONS(2790), - [anon_sym_const] = ACTIONS(2790), - [anon_sym_volatile] = ACTIONS(2790), - [anon_sym_restrict] = ACTIONS(2790), - [anon_sym__Atomic] = ACTIONS(2790), - [anon_sym_mutable] = ACTIONS(2790), - [anon_sym_constexpr] = ACTIONS(2790), - [anon_sym_constinit] = ACTIONS(2790), - [anon_sym_consteval] = ACTIONS(2790), - [anon_sym_signed] = ACTIONS(2790), - [anon_sym_unsigned] = ACTIONS(2790), - [anon_sym_long] = ACTIONS(2790), - [anon_sym_short] = ACTIONS(2790), - [sym_primitive_type] = ACTIONS(2790), - [anon_sym_enum] = ACTIONS(2790), - [anon_sym_class] = ACTIONS(2790), - [anon_sym_struct] = ACTIONS(2790), - [anon_sym_union] = ACTIONS(2790), - [anon_sym_if] = ACTIONS(2790), - [anon_sym_switch] = ACTIONS(2790), - [anon_sym_case] = ACTIONS(2790), - [anon_sym_default] = ACTIONS(2790), - [anon_sym_while] = ACTIONS(2790), - [anon_sym_do] = ACTIONS(2790), - [anon_sym_for] = ACTIONS(2790), - [anon_sym_return] = ACTIONS(2790), - [anon_sym_break] = ACTIONS(2790), - [anon_sym_continue] = ACTIONS(2790), - [anon_sym_goto] = ACTIONS(2790), - [anon_sym_not] = ACTIONS(2790), - [anon_sym_compl] = ACTIONS(2790), - [anon_sym_DASH_DASH] = ACTIONS(2792), - [anon_sym_PLUS_PLUS] = ACTIONS(2792), - [anon_sym_sizeof] = ACTIONS(2790), - [sym_number_literal] = ACTIONS(2792), - [anon_sym_L_SQUOTE] = ACTIONS(2792), - [anon_sym_u_SQUOTE] = ACTIONS(2792), - [anon_sym_U_SQUOTE] = ACTIONS(2792), - [anon_sym_u8_SQUOTE] = ACTIONS(2792), - [anon_sym_SQUOTE] = ACTIONS(2792), - [anon_sym_L_DQUOTE] = ACTIONS(2792), - [anon_sym_u_DQUOTE] = ACTIONS(2792), - [anon_sym_U_DQUOTE] = ACTIONS(2792), - [anon_sym_u8_DQUOTE] = ACTIONS(2792), - [anon_sym_DQUOTE] = ACTIONS(2792), - [sym_true] = ACTIONS(2790), - [sym_false] = ACTIONS(2790), - [sym_null] = ACTIONS(2790), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2790), - [anon_sym_decltype] = ACTIONS(2790), - [anon_sym_virtual] = ACTIONS(2790), - [anon_sym_explicit] = ACTIONS(2790), - [anon_sym_typename] = ACTIONS(2790), - [anon_sym_template] = ACTIONS(2790), - [anon_sym_operator] = ACTIONS(2790), - [anon_sym_try] = ACTIONS(2790), - [anon_sym_delete] = ACTIONS(2790), - [anon_sym_throw] = ACTIONS(2790), - [anon_sym_namespace] = ACTIONS(2790), - [anon_sym_using] = ACTIONS(2790), - [anon_sym_static_assert] = ACTIONS(2790), - [anon_sym_concept] = ACTIONS(2790), - [anon_sym_co_return] = ACTIONS(2790), - [anon_sym_co_yield] = ACTIONS(2790), - [anon_sym_R_DQUOTE] = ACTIONS(2792), - [anon_sym_LR_DQUOTE] = ACTIONS(2792), - [anon_sym_uR_DQUOTE] = ACTIONS(2792), - [anon_sym_UR_DQUOTE] = ACTIONS(2792), - [anon_sym_u8R_DQUOTE] = ACTIONS(2792), - [anon_sym_co_await] = ACTIONS(2790), - [anon_sym_new] = ACTIONS(2790), - [anon_sym_requires] = ACTIONS(2790), - [sym_this] = ACTIONS(2790), - [sym_nullptr] = ACTIONS(2790), + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token2] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, [1003] = { - [sym_identifier] = ACTIONS(2880), - [aux_sym_preproc_include_token1] = ACTIONS(2880), - [aux_sym_preproc_def_token1] = ACTIONS(2880), - [aux_sym_preproc_if_token1] = ACTIONS(2880), - [aux_sym_preproc_if_token2] = ACTIONS(2880), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2880), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2880), - [sym_preproc_directive] = ACTIONS(2880), - [anon_sym_LPAREN2] = ACTIONS(2882), - [anon_sym_BANG] = ACTIONS(2882), - [anon_sym_TILDE] = ACTIONS(2882), - [anon_sym_DASH] = ACTIONS(2880), - [anon_sym_PLUS] = ACTIONS(2880), - [anon_sym_STAR] = ACTIONS(2882), - [anon_sym_AMP_AMP] = ACTIONS(2882), - [anon_sym_AMP] = ACTIONS(2880), - [anon_sym_SEMI] = ACTIONS(2882), - [anon_sym_typedef] = ACTIONS(2880), - [anon_sym_extern] = ACTIONS(2880), - [anon_sym___attribute__] = ACTIONS(2880), - [anon_sym_COLON_COLON] = ACTIONS(2882), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2882), - [anon_sym___declspec] = ACTIONS(2880), - [anon_sym___based] = ACTIONS(2880), - [anon_sym___cdecl] = ACTIONS(2880), - [anon_sym___clrcall] = ACTIONS(2880), - [anon_sym___stdcall] = ACTIONS(2880), - [anon_sym___fastcall] = ACTIONS(2880), - [anon_sym___thiscall] = ACTIONS(2880), - [anon_sym___vectorcall] = ACTIONS(2880), - [anon_sym_LBRACE] = ACTIONS(2882), - [anon_sym_LBRACK] = ACTIONS(2880), - [anon_sym_static] = ACTIONS(2880), - [anon_sym_register] = ACTIONS(2880), - [anon_sym_inline] = ACTIONS(2880), - [anon_sym_thread_local] = ACTIONS(2880), - [anon_sym_const] = ACTIONS(2880), - [anon_sym_volatile] = ACTIONS(2880), - [anon_sym_restrict] = ACTIONS(2880), - [anon_sym__Atomic] = ACTIONS(2880), - [anon_sym_mutable] = ACTIONS(2880), - [anon_sym_constexpr] = ACTIONS(2880), - [anon_sym_constinit] = ACTIONS(2880), - [anon_sym_consteval] = ACTIONS(2880), - [anon_sym_signed] = ACTIONS(2880), - [anon_sym_unsigned] = ACTIONS(2880), - [anon_sym_long] = ACTIONS(2880), - [anon_sym_short] = ACTIONS(2880), - [sym_primitive_type] = ACTIONS(2880), - [anon_sym_enum] = ACTIONS(2880), - [anon_sym_class] = ACTIONS(2880), - [anon_sym_struct] = ACTIONS(2880), - [anon_sym_union] = ACTIONS(2880), - [anon_sym_if] = ACTIONS(2880), - [anon_sym_switch] = ACTIONS(2880), - [anon_sym_case] = ACTIONS(2880), - [anon_sym_default] = ACTIONS(2880), - [anon_sym_while] = ACTIONS(2880), - [anon_sym_do] = ACTIONS(2880), - [anon_sym_for] = ACTIONS(2880), - [anon_sym_return] = ACTIONS(2880), - [anon_sym_break] = ACTIONS(2880), - [anon_sym_continue] = ACTIONS(2880), - [anon_sym_goto] = ACTIONS(2880), - [anon_sym_not] = ACTIONS(2880), - [anon_sym_compl] = ACTIONS(2880), - [anon_sym_DASH_DASH] = ACTIONS(2882), - [anon_sym_PLUS_PLUS] = ACTIONS(2882), - [anon_sym_sizeof] = ACTIONS(2880), - [sym_number_literal] = ACTIONS(2882), - [anon_sym_L_SQUOTE] = ACTIONS(2882), - [anon_sym_u_SQUOTE] = ACTIONS(2882), - [anon_sym_U_SQUOTE] = ACTIONS(2882), - [anon_sym_u8_SQUOTE] = ACTIONS(2882), - [anon_sym_SQUOTE] = ACTIONS(2882), - [anon_sym_L_DQUOTE] = ACTIONS(2882), - [anon_sym_u_DQUOTE] = ACTIONS(2882), - [anon_sym_U_DQUOTE] = ACTIONS(2882), - [anon_sym_u8_DQUOTE] = ACTIONS(2882), - [anon_sym_DQUOTE] = ACTIONS(2882), - [sym_true] = ACTIONS(2880), - [sym_false] = ACTIONS(2880), - [sym_null] = ACTIONS(2880), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2880), - [anon_sym_decltype] = ACTIONS(2880), - [anon_sym_virtual] = ACTIONS(2880), - [anon_sym_explicit] = ACTIONS(2880), - [anon_sym_typename] = ACTIONS(2880), - [anon_sym_template] = ACTIONS(2880), - [anon_sym_operator] = ACTIONS(2880), - [anon_sym_try] = ACTIONS(2880), - [anon_sym_delete] = ACTIONS(2880), - [anon_sym_throw] = ACTIONS(2880), - [anon_sym_namespace] = ACTIONS(2880), - [anon_sym_using] = ACTIONS(2880), - [anon_sym_static_assert] = ACTIONS(2880), - [anon_sym_concept] = ACTIONS(2880), - [anon_sym_co_return] = ACTIONS(2880), - [anon_sym_co_yield] = ACTIONS(2880), - [anon_sym_R_DQUOTE] = ACTIONS(2882), - [anon_sym_LR_DQUOTE] = ACTIONS(2882), - [anon_sym_uR_DQUOTE] = ACTIONS(2882), - [anon_sym_UR_DQUOTE] = ACTIONS(2882), - [anon_sym_u8R_DQUOTE] = ACTIONS(2882), - [anon_sym_co_await] = ACTIONS(2880), - [anon_sym_new] = ACTIONS(2880), - [anon_sym_requires] = ACTIONS(2880), - [sym_this] = ACTIONS(2880), - [sym_nullptr] = ACTIONS(2880), + [sym_identifier] = ACTIONS(2956), + [aux_sym_preproc_include_token1] = ACTIONS(2956), + [aux_sym_preproc_def_token1] = ACTIONS(2956), + [aux_sym_preproc_if_token1] = ACTIONS(2956), + [aux_sym_preproc_if_token2] = ACTIONS(2956), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2956), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2956), + [sym_preproc_directive] = ACTIONS(2956), + [anon_sym_LPAREN2] = ACTIONS(2958), + [anon_sym_BANG] = ACTIONS(2958), + [anon_sym_TILDE] = ACTIONS(2958), + [anon_sym_DASH] = ACTIONS(2956), + [anon_sym_PLUS] = ACTIONS(2956), + [anon_sym_STAR] = ACTIONS(2958), + [anon_sym_AMP_AMP] = ACTIONS(2958), + [anon_sym_AMP] = ACTIONS(2956), + [anon_sym_SEMI] = ACTIONS(2958), + [anon_sym_typedef] = ACTIONS(2956), + [anon_sym_extern] = ACTIONS(2956), + [anon_sym___attribute__] = ACTIONS(2956), + [anon_sym_COLON_COLON] = ACTIONS(2958), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2958), + [anon_sym___declspec] = ACTIONS(2956), + [anon_sym___based] = ACTIONS(2956), + [anon_sym___cdecl] = ACTIONS(2956), + [anon_sym___clrcall] = ACTIONS(2956), + [anon_sym___stdcall] = ACTIONS(2956), + [anon_sym___fastcall] = ACTIONS(2956), + [anon_sym___thiscall] = ACTIONS(2956), + [anon_sym___vectorcall] = ACTIONS(2956), + [anon_sym_LBRACE] = ACTIONS(2958), + [anon_sym_LBRACK] = ACTIONS(2956), + [anon_sym_static] = ACTIONS(2956), + [anon_sym_register] = ACTIONS(2956), + [anon_sym_inline] = ACTIONS(2956), + [anon_sym_thread_local] = ACTIONS(2956), + [anon_sym_const] = ACTIONS(2956), + [anon_sym_constexpr] = ACTIONS(2956), + [anon_sym_volatile] = ACTIONS(2956), + [anon_sym_restrict] = ACTIONS(2956), + [anon_sym___restrict__] = ACTIONS(2956), + [anon_sym__Atomic] = ACTIONS(2956), + [anon_sym__Noreturn] = ACTIONS(2956), + [anon_sym_noreturn] = ACTIONS(2956), + [anon_sym_mutable] = ACTIONS(2956), + [anon_sym_constinit] = ACTIONS(2956), + [anon_sym_consteval] = ACTIONS(2956), + [anon_sym_signed] = ACTIONS(2956), + [anon_sym_unsigned] = ACTIONS(2956), + [anon_sym_long] = ACTIONS(2956), + [anon_sym_short] = ACTIONS(2956), + [sym_primitive_type] = ACTIONS(2956), + [anon_sym_enum] = ACTIONS(2956), + [anon_sym_class] = ACTIONS(2956), + [anon_sym_struct] = ACTIONS(2956), + [anon_sym_union] = ACTIONS(2956), + [anon_sym_if] = ACTIONS(2956), + [anon_sym_else] = ACTIONS(2956), + [anon_sym_switch] = ACTIONS(2956), + [anon_sym_case] = ACTIONS(2956), + [anon_sym_default] = ACTIONS(2956), + [anon_sym_while] = ACTIONS(2956), + [anon_sym_do] = ACTIONS(2956), + [anon_sym_for] = ACTIONS(2956), + [anon_sym_return] = ACTIONS(2956), + [anon_sym_break] = ACTIONS(2956), + [anon_sym_continue] = ACTIONS(2956), + [anon_sym_goto] = ACTIONS(2956), + [anon_sym_not] = ACTIONS(2956), + [anon_sym_compl] = ACTIONS(2956), + [anon_sym_DASH_DASH] = ACTIONS(2958), + [anon_sym_PLUS_PLUS] = ACTIONS(2958), + [anon_sym_sizeof] = ACTIONS(2956), + [anon_sym_offsetof] = ACTIONS(2956), + [anon_sym__Generic] = ACTIONS(2956), + [anon_sym_asm] = ACTIONS(2956), + [anon_sym___asm__] = ACTIONS(2956), + [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_L_DQUOTE] = ACTIONS(2958), + [anon_sym_u_DQUOTE] = ACTIONS(2958), + [anon_sym_U_DQUOTE] = ACTIONS(2958), + [anon_sym_u8_DQUOTE] = ACTIONS(2958), + [anon_sym_DQUOTE] = ACTIONS(2958), + [sym_true] = ACTIONS(2956), + [sym_false] = ACTIONS(2956), + [anon_sym_NULL] = ACTIONS(2956), + [anon_sym_nullptr] = ACTIONS(2956), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2956), + [anon_sym_decltype] = ACTIONS(2956), + [anon_sym_virtual] = ACTIONS(2956), + [anon_sym_explicit] = ACTIONS(2956), + [anon_sym_typename] = ACTIONS(2956), + [anon_sym_template] = ACTIONS(2956), + [anon_sym_operator] = ACTIONS(2956), + [anon_sym_try] = ACTIONS(2956), + [anon_sym_delete] = ACTIONS(2956), + [anon_sym_throw] = ACTIONS(2956), + [anon_sym_namespace] = ACTIONS(2956), + [anon_sym_using] = ACTIONS(2956), + [anon_sym_static_assert] = ACTIONS(2956), + [anon_sym_concept] = ACTIONS(2956), + [anon_sym_co_return] = ACTIONS(2956), + [anon_sym_co_yield] = ACTIONS(2956), + [anon_sym_R_DQUOTE] = ACTIONS(2958), + [anon_sym_LR_DQUOTE] = ACTIONS(2958), + [anon_sym_uR_DQUOTE] = ACTIONS(2958), + [anon_sym_UR_DQUOTE] = ACTIONS(2958), + [anon_sym_u8R_DQUOTE] = ACTIONS(2958), + [anon_sym_co_await] = ACTIONS(2956), + [anon_sym_new] = ACTIONS(2956), + [anon_sym_requires] = ACTIONS(2956), + [sym_this] = ACTIONS(2956), }, [1004] = { - [sym_identifier] = ACTIONS(2876), - [aux_sym_preproc_include_token1] = ACTIONS(2876), - [aux_sym_preproc_def_token1] = ACTIONS(2876), - [aux_sym_preproc_if_token1] = ACTIONS(2876), - [aux_sym_preproc_if_token2] = ACTIONS(2876), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2876), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2876), - [sym_preproc_directive] = ACTIONS(2876), - [anon_sym_LPAREN2] = ACTIONS(2878), - [anon_sym_BANG] = ACTIONS(2878), - [anon_sym_TILDE] = ACTIONS(2878), - [anon_sym_DASH] = ACTIONS(2876), - [anon_sym_PLUS] = ACTIONS(2876), - [anon_sym_STAR] = ACTIONS(2878), - [anon_sym_AMP_AMP] = ACTIONS(2878), - [anon_sym_AMP] = ACTIONS(2876), - [anon_sym_SEMI] = ACTIONS(2878), - [anon_sym_typedef] = ACTIONS(2876), - [anon_sym_extern] = ACTIONS(2876), - [anon_sym___attribute__] = ACTIONS(2876), - [anon_sym_COLON_COLON] = ACTIONS(2878), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2878), - [anon_sym___declspec] = ACTIONS(2876), - [anon_sym___based] = ACTIONS(2876), - [anon_sym___cdecl] = ACTIONS(2876), - [anon_sym___clrcall] = ACTIONS(2876), - [anon_sym___stdcall] = ACTIONS(2876), - [anon_sym___fastcall] = ACTIONS(2876), - [anon_sym___thiscall] = ACTIONS(2876), - [anon_sym___vectorcall] = ACTIONS(2876), - [anon_sym_LBRACE] = ACTIONS(2878), - [anon_sym_LBRACK] = ACTIONS(2876), - [anon_sym_static] = ACTIONS(2876), - [anon_sym_register] = ACTIONS(2876), - [anon_sym_inline] = ACTIONS(2876), - [anon_sym_thread_local] = ACTIONS(2876), - [anon_sym_const] = ACTIONS(2876), - [anon_sym_volatile] = ACTIONS(2876), - [anon_sym_restrict] = ACTIONS(2876), - [anon_sym__Atomic] = ACTIONS(2876), - [anon_sym_mutable] = ACTIONS(2876), - [anon_sym_constexpr] = ACTIONS(2876), - [anon_sym_constinit] = ACTIONS(2876), - [anon_sym_consteval] = ACTIONS(2876), - [anon_sym_signed] = ACTIONS(2876), - [anon_sym_unsigned] = ACTIONS(2876), - [anon_sym_long] = ACTIONS(2876), - [anon_sym_short] = ACTIONS(2876), - [sym_primitive_type] = ACTIONS(2876), - [anon_sym_enum] = ACTIONS(2876), - [anon_sym_class] = ACTIONS(2876), - [anon_sym_struct] = ACTIONS(2876), - [anon_sym_union] = ACTIONS(2876), - [anon_sym_if] = ACTIONS(2876), - [anon_sym_switch] = ACTIONS(2876), - [anon_sym_case] = ACTIONS(2876), - [anon_sym_default] = ACTIONS(2876), - [anon_sym_while] = ACTIONS(2876), - [anon_sym_do] = ACTIONS(2876), - [anon_sym_for] = ACTIONS(2876), - [anon_sym_return] = ACTIONS(2876), - [anon_sym_break] = ACTIONS(2876), - [anon_sym_continue] = ACTIONS(2876), - [anon_sym_goto] = ACTIONS(2876), - [anon_sym_not] = ACTIONS(2876), - [anon_sym_compl] = ACTIONS(2876), - [anon_sym_DASH_DASH] = ACTIONS(2878), - [anon_sym_PLUS_PLUS] = ACTIONS(2878), - [anon_sym_sizeof] = ACTIONS(2876), - [sym_number_literal] = ACTIONS(2878), - [anon_sym_L_SQUOTE] = ACTIONS(2878), - [anon_sym_u_SQUOTE] = ACTIONS(2878), - [anon_sym_U_SQUOTE] = ACTIONS(2878), - [anon_sym_u8_SQUOTE] = ACTIONS(2878), - [anon_sym_SQUOTE] = ACTIONS(2878), - [anon_sym_L_DQUOTE] = ACTIONS(2878), - [anon_sym_u_DQUOTE] = ACTIONS(2878), - [anon_sym_U_DQUOTE] = ACTIONS(2878), - [anon_sym_u8_DQUOTE] = ACTIONS(2878), - [anon_sym_DQUOTE] = ACTIONS(2878), - [sym_true] = ACTIONS(2876), - [sym_false] = ACTIONS(2876), - [sym_null] = ACTIONS(2876), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2876), - [anon_sym_decltype] = ACTIONS(2876), - [anon_sym_virtual] = ACTIONS(2876), - [anon_sym_explicit] = ACTIONS(2876), - [anon_sym_typename] = ACTIONS(2876), - [anon_sym_template] = ACTIONS(2876), - [anon_sym_operator] = ACTIONS(2876), - [anon_sym_try] = ACTIONS(2876), - [anon_sym_delete] = ACTIONS(2876), - [anon_sym_throw] = ACTIONS(2876), - [anon_sym_namespace] = ACTIONS(2876), - [anon_sym_using] = ACTIONS(2876), - [anon_sym_static_assert] = ACTIONS(2876), - [anon_sym_concept] = ACTIONS(2876), - [anon_sym_co_return] = ACTIONS(2876), - [anon_sym_co_yield] = ACTIONS(2876), - [anon_sym_R_DQUOTE] = ACTIONS(2878), - [anon_sym_LR_DQUOTE] = ACTIONS(2878), - [anon_sym_uR_DQUOTE] = ACTIONS(2878), - [anon_sym_UR_DQUOTE] = ACTIONS(2878), - [anon_sym_u8R_DQUOTE] = ACTIONS(2878), - [anon_sym_co_await] = ACTIONS(2876), - [anon_sym_new] = ACTIONS(2876), - [anon_sym_requires] = ACTIONS(2876), - [sym_this] = ACTIONS(2876), - [sym_nullptr] = ACTIONS(2876), + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token2] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, [1005] = { + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token2] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), + }, + [1006] = { + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token2] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), + }, + [1007] = { + [sym_identifier] = ACTIONS(2952), + [aux_sym_preproc_include_token1] = ACTIONS(2952), + [aux_sym_preproc_def_token1] = ACTIONS(2952), + [aux_sym_preproc_if_token1] = ACTIONS(2952), + [aux_sym_preproc_if_token2] = ACTIONS(2952), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2952), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2952), + [sym_preproc_directive] = ACTIONS(2952), + [anon_sym_LPAREN2] = ACTIONS(2954), + [anon_sym_BANG] = ACTIONS(2954), + [anon_sym_TILDE] = ACTIONS(2954), + [anon_sym_DASH] = ACTIONS(2952), + [anon_sym_PLUS] = ACTIONS(2952), + [anon_sym_STAR] = ACTIONS(2954), + [anon_sym_AMP_AMP] = ACTIONS(2954), + [anon_sym_AMP] = ACTIONS(2952), + [anon_sym_SEMI] = ACTIONS(2954), + [anon_sym_typedef] = ACTIONS(2952), + [anon_sym_extern] = ACTIONS(2952), + [anon_sym___attribute__] = ACTIONS(2952), + [anon_sym_COLON_COLON] = ACTIONS(2954), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2954), + [anon_sym___declspec] = ACTIONS(2952), + [anon_sym___based] = ACTIONS(2952), + [anon_sym___cdecl] = ACTIONS(2952), + [anon_sym___clrcall] = ACTIONS(2952), + [anon_sym___stdcall] = ACTIONS(2952), + [anon_sym___fastcall] = ACTIONS(2952), + [anon_sym___thiscall] = ACTIONS(2952), + [anon_sym___vectorcall] = ACTIONS(2952), + [anon_sym_LBRACE] = ACTIONS(2954), + [anon_sym_LBRACK] = ACTIONS(2952), + [anon_sym_static] = ACTIONS(2952), + [anon_sym_register] = ACTIONS(2952), + [anon_sym_inline] = ACTIONS(2952), + [anon_sym_thread_local] = ACTIONS(2952), + [anon_sym_const] = ACTIONS(2952), + [anon_sym_constexpr] = ACTIONS(2952), + [anon_sym_volatile] = ACTIONS(2952), + [anon_sym_restrict] = ACTIONS(2952), + [anon_sym___restrict__] = ACTIONS(2952), + [anon_sym__Atomic] = ACTIONS(2952), + [anon_sym__Noreturn] = ACTIONS(2952), + [anon_sym_noreturn] = ACTIONS(2952), + [anon_sym_mutable] = ACTIONS(2952), + [anon_sym_constinit] = ACTIONS(2952), + [anon_sym_consteval] = ACTIONS(2952), + [anon_sym_signed] = ACTIONS(2952), + [anon_sym_unsigned] = ACTIONS(2952), + [anon_sym_long] = ACTIONS(2952), + [anon_sym_short] = ACTIONS(2952), + [sym_primitive_type] = ACTIONS(2952), + [anon_sym_enum] = ACTIONS(2952), + [anon_sym_class] = ACTIONS(2952), + [anon_sym_struct] = ACTIONS(2952), + [anon_sym_union] = ACTIONS(2952), + [anon_sym_if] = ACTIONS(2952), + [anon_sym_else] = ACTIONS(2952), + [anon_sym_switch] = ACTIONS(2952), + [anon_sym_case] = ACTIONS(2952), + [anon_sym_default] = ACTIONS(2952), + [anon_sym_while] = ACTIONS(2952), + [anon_sym_do] = ACTIONS(2952), + [anon_sym_for] = ACTIONS(2952), + [anon_sym_return] = ACTIONS(2952), + [anon_sym_break] = ACTIONS(2952), + [anon_sym_continue] = ACTIONS(2952), + [anon_sym_goto] = ACTIONS(2952), + [anon_sym_not] = ACTIONS(2952), + [anon_sym_compl] = ACTIONS(2952), + [anon_sym_DASH_DASH] = ACTIONS(2954), + [anon_sym_PLUS_PLUS] = ACTIONS(2954), + [anon_sym_sizeof] = ACTIONS(2952), + [anon_sym_offsetof] = ACTIONS(2952), + [anon_sym__Generic] = ACTIONS(2952), + [anon_sym_asm] = ACTIONS(2952), + [anon_sym___asm__] = ACTIONS(2952), + [sym_number_literal] = ACTIONS(2954), + [anon_sym_L_SQUOTE] = ACTIONS(2954), + [anon_sym_u_SQUOTE] = ACTIONS(2954), + [anon_sym_U_SQUOTE] = ACTIONS(2954), + [anon_sym_u8_SQUOTE] = ACTIONS(2954), + [anon_sym_SQUOTE] = ACTIONS(2954), + [anon_sym_L_DQUOTE] = ACTIONS(2954), + [anon_sym_u_DQUOTE] = ACTIONS(2954), + [anon_sym_U_DQUOTE] = ACTIONS(2954), + [anon_sym_u8_DQUOTE] = ACTIONS(2954), + [anon_sym_DQUOTE] = ACTIONS(2954), + [sym_true] = ACTIONS(2952), + [sym_false] = ACTIONS(2952), + [anon_sym_NULL] = ACTIONS(2952), + [anon_sym_nullptr] = ACTIONS(2952), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2952), + [anon_sym_decltype] = ACTIONS(2952), + [anon_sym_virtual] = ACTIONS(2952), + [anon_sym_explicit] = ACTIONS(2952), + [anon_sym_typename] = ACTIONS(2952), + [anon_sym_template] = ACTIONS(2952), + [anon_sym_operator] = ACTIONS(2952), + [anon_sym_try] = ACTIONS(2952), + [anon_sym_delete] = ACTIONS(2952), + [anon_sym_throw] = ACTIONS(2952), + [anon_sym_namespace] = ACTIONS(2952), + [anon_sym_using] = ACTIONS(2952), + [anon_sym_static_assert] = ACTIONS(2952), + [anon_sym_concept] = ACTIONS(2952), + [anon_sym_co_return] = ACTIONS(2952), + [anon_sym_co_yield] = ACTIONS(2952), + [anon_sym_R_DQUOTE] = ACTIONS(2954), + [anon_sym_LR_DQUOTE] = ACTIONS(2954), + [anon_sym_uR_DQUOTE] = ACTIONS(2954), + [anon_sym_UR_DQUOTE] = ACTIONS(2954), + [anon_sym_u8R_DQUOTE] = ACTIONS(2954), + [anon_sym_co_await] = ACTIONS(2952), + [anon_sym_new] = ACTIONS(2952), + [anon_sym_requires] = ACTIONS(2952), + [sym_this] = ACTIONS(2952), + }, + [1008] = { + [ts_builtin_sym_end] = ACTIONS(3050), + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), + }, + [1009] = { + [sym_identifier] = ACTIONS(3089), + [aux_sym_preproc_include_token1] = ACTIONS(3089), + [aux_sym_preproc_def_token1] = ACTIONS(3089), + [aux_sym_preproc_if_token1] = ACTIONS(3089), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3089), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3089), + [sym_preproc_directive] = ACTIONS(3089), + [anon_sym_LPAREN2] = ACTIONS(3091), + [anon_sym_BANG] = ACTIONS(3091), + [anon_sym_TILDE] = ACTIONS(3091), + [anon_sym_DASH] = ACTIONS(3089), + [anon_sym_PLUS] = ACTIONS(3089), + [anon_sym_STAR] = ACTIONS(3091), + [anon_sym_AMP_AMP] = ACTIONS(3091), + [anon_sym_AMP] = ACTIONS(3089), + [anon_sym_SEMI] = ACTIONS(3091), + [anon_sym_typedef] = ACTIONS(3089), + [anon_sym_extern] = ACTIONS(3089), + [anon_sym___attribute__] = ACTIONS(3089), + [anon_sym_COLON_COLON] = ACTIONS(3091), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3091), + [anon_sym___declspec] = ACTIONS(3089), + [anon_sym___based] = ACTIONS(3089), + [anon_sym___cdecl] = ACTIONS(3089), + [anon_sym___clrcall] = ACTIONS(3089), + [anon_sym___stdcall] = ACTIONS(3089), + [anon_sym___fastcall] = ACTIONS(3089), + [anon_sym___thiscall] = ACTIONS(3089), + [anon_sym___vectorcall] = ACTIONS(3089), + [anon_sym_LBRACE] = ACTIONS(3091), + [anon_sym_RBRACE] = ACTIONS(3091), + [anon_sym_LBRACK] = ACTIONS(3089), + [anon_sym_static] = ACTIONS(3089), + [anon_sym_register] = ACTIONS(3089), + [anon_sym_inline] = ACTIONS(3089), + [anon_sym_thread_local] = ACTIONS(3089), + [anon_sym_const] = ACTIONS(3089), + [anon_sym_constexpr] = ACTIONS(3089), + [anon_sym_volatile] = ACTIONS(3089), + [anon_sym_restrict] = ACTIONS(3089), + [anon_sym___restrict__] = ACTIONS(3089), + [anon_sym__Atomic] = ACTIONS(3089), + [anon_sym__Noreturn] = ACTIONS(3089), + [anon_sym_noreturn] = ACTIONS(3089), + [anon_sym_mutable] = ACTIONS(3089), + [anon_sym_constinit] = ACTIONS(3089), + [anon_sym_consteval] = ACTIONS(3089), + [anon_sym_signed] = ACTIONS(3089), + [anon_sym_unsigned] = ACTIONS(3089), + [anon_sym_long] = ACTIONS(3089), + [anon_sym_short] = ACTIONS(3089), + [sym_primitive_type] = ACTIONS(3089), + [anon_sym_enum] = ACTIONS(3089), + [anon_sym_class] = ACTIONS(3089), + [anon_sym_struct] = ACTIONS(3089), + [anon_sym_union] = ACTIONS(3089), + [anon_sym_if] = ACTIONS(3089), + [anon_sym_else] = ACTIONS(3089), + [anon_sym_switch] = ACTIONS(3089), + [anon_sym_case] = ACTIONS(3089), + [anon_sym_default] = ACTIONS(3089), + [anon_sym_while] = ACTIONS(3089), + [anon_sym_do] = ACTIONS(3089), + [anon_sym_for] = ACTIONS(3089), + [anon_sym_return] = ACTIONS(3089), + [anon_sym_break] = ACTIONS(3089), + [anon_sym_continue] = ACTIONS(3089), + [anon_sym_goto] = ACTIONS(3089), + [anon_sym_not] = ACTIONS(3089), + [anon_sym_compl] = ACTIONS(3089), + [anon_sym_DASH_DASH] = ACTIONS(3091), + [anon_sym_PLUS_PLUS] = ACTIONS(3091), + [anon_sym_sizeof] = ACTIONS(3089), + [anon_sym_offsetof] = ACTIONS(3089), + [anon_sym__Generic] = ACTIONS(3089), + [anon_sym_asm] = ACTIONS(3089), + [anon_sym___asm__] = ACTIONS(3089), + [sym_number_literal] = ACTIONS(3091), + [anon_sym_L_SQUOTE] = ACTIONS(3091), + [anon_sym_u_SQUOTE] = ACTIONS(3091), + [anon_sym_U_SQUOTE] = ACTIONS(3091), + [anon_sym_u8_SQUOTE] = ACTIONS(3091), + [anon_sym_SQUOTE] = ACTIONS(3091), + [anon_sym_L_DQUOTE] = ACTIONS(3091), + [anon_sym_u_DQUOTE] = ACTIONS(3091), + [anon_sym_U_DQUOTE] = ACTIONS(3091), + [anon_sym_u8_DQUOTE] = ACTIONS(3091), + [anon_sym_DQUOTE] = ACTIONS(3091), + [sym_true] = ACTIONS(3089), + [sym_false] = ACTIONS(3089), + [anon_sym_NULL] = ACTIONS(3089), + [anon_sym_nullptr] = ACTIONS(3089), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3089), + [anon_sym_decltype] = ACTIONS(3089), + [anon_sym_virtual] = ACTIONS(3089), + [anon_sym_explicit] = ACTIONS(3089), + [anon_sym_typename] = ACTIONS(3089), + [anon_sym_template] = ACTIONS(3089), + [anon_sym_operator] = ACTIONS(3089), + [anon_sym_try] = ACTIONS(3089), + [anon_sym_delete] = ACTIONS(3089), + [anon_sym_throw] = ACTIONS(3089), + [anon_sym_namespace] = ACTIONS(3089), + [anon_sym_using] = ACTIONS(3089), + [anon_sym_static_assert] = ACTIONS(3089), + [anon_sym_concept] = ACTIONS(3089), + [anon_sym_co_return] = ACTIONS(3089), + [anon_sym_co_yield] = ACTIONS(3089), + [anon_sym_R_DQUOTE] = ACTIONS(3091), + [anon_sym_LR_DQUOTE] = ACTIONS(3091), + [anon_sym_uR_DQUOTE] = ACTIONS(3091), + [anon_sym_UR_DQUOTE] = ACTIONS(3091), + [anon_sym_u8R_DQUOTE] = ACTIONS(3091), + [anon_sym_co_await] = ACTIONS(3089), + [anon_sym_new] = ACTIONS(3089), + [anon_sym_requires] = ACTIONS(3089), + [sym_this] = ACTIONS(3089), + }, + [1010] = { + [ts_builtin_sym_end] = ACTIONS(3026), + [sym_identifier] = ACTIONS(3024), + [aux_sym_preproc_include_token1] = ACTIONS(3024), + [aux_sym_preproc_def_token1] = ACTIONS(3024), + [aux_sym_preproc_if_token1] = ACTIONS(3024), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3024), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3024), + [sym_preproc_directive] = ACTIONS(3024), + [anon_sym_LPAREN2] = ACTIONS(3026), + [anon_sym_BANG] = ACTIONS(3026), + [anon_sym_TILDE] = ACTIONS(3026), + [anon_sym_DASH] = ACTIONS(3024), + [anon_sym_PLUS] = ACTIONS(3024), + [anon_sym_STAR] = ACTIONS(3026), + [anon_sym_AMP_AMP] = ACTIONS(3026), + [anon_sym_AMP] = ACTIONS(3024), + [anon_sym_SEMI] = ACTIONS(3026), + [anon_sym_typedef] = ACTIONS(3024), + [anon_sym_extern] = ACTIONS(3024), + [anon_sym___attribute__] = ACTIONS(3024), + [anon_sym_COLON_COLON] = ACTIONS(3026), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3026), + [anon_sym___declspec] = ACTIONS(3024), + [anon_sym___based] = ACTIONS(3024), + [anon_sym___cdecl] = ACTIONS(3024), + [anon_sym___clrcall] = ACTIONS(3024), + [anon_sym___stdcall] = ACTIONS(3024), + [anon_sym___fastcall] = ACTIONS(3024), + [anon_sym___thiscall] = ACTIONS(3024), + [anon_sym___vectorcall] = ACTIONS(3024), + [anon_sym_LBRACE] = ACTIONS(3026), + [anon_sym_LBRACK] = ACTIONS(3024), + [anon_sym_static] = ACTIONS(3024), + [anon_sym_register] = ACTIONS(3024), + [anon_sym_inline] = ACTIONS(3024), + [anon_sym_thread_local] = ACTIONS(3024), + [anon_sym_const] = ACTIONS(3024), + [anon_sym_constexpr] = ACTIONS(3024), + [anon_sym_volatile] = ACTIONS(3024), + [anon_sym_restrict] = ACTIONS(3024), + [anon_sym___restrict__] = ACTIONS(3024), + [anon_sym__Atomic] = ACTIONS(3024), + [anon_sym__Noreturn] = ACTIONS(3024), + [anon_sym_noreturn] = ACTIONS(3024), + [anon_sym_mutable] = ACTIONS(3024), + [anon_sym_constinit] = ACTIONS(3024), + [anon_sym_consteval] = ACTIONS(3024), + [anon_sym_signed] = ACTIONS(3024), + [anon_sym_unsigned] = ACTIONS(3024), + [anon_sym_long] = ACTIONS(3024), + [anon_sym_short] = ACTIONS(3024), + [sym_primitive_type] = ACTIONS(3024), + [anon_sym_enum] = ACTIONS(3024), + [anon_sym_class] = ACTIONS(3024), + [anon_sym_struct] = ACTIONS(3024), + [anon_sym_union] = ACTIONS(3024), + [anon_sym_if] = ACTIONS(3024), + [anon_sym_else] = ACTIONS(3024), + [anon_sym_switch] = ACTIONS(3024), + [anon_sym_case] = ACTIONS(3024), + [anon_sym_default] = ACTIONS(3024), + [anon_sym_while] = ACTIONS(3024), + [anon_sym_do] = ACTIONS(3024), + [anon_sym_for] = ACTIONS(3024), + [anon_sym_return] = ACTIONS(3024), + [anon_sym_break] = ACTIONS(3024), + [anon_sym_continue] = ACTIONS(3024), + [anon_sym_goto] = ACTIONS(3024), + [anon_sym_not] = ACTIONS(3024), + [anon_sym_compl] = ACTIONS(3024), + [anon_sym_DASH_DASH] = ACTIONS(3026), + [anon_sym_PLUS_PLUS] = ACTIONS(3026), + [anon_sym_sizeof] = ACTIONS(3024), + [anon_sym_offsetof] = ACTIONS(3024), + [anon_sym__Generic] = ACTIONS(3024), + [anon_sym_asm] = ACTIONS(3024), + [anon_sym___asm__] = ACTIONS(3024), + [sym_number_literal] = ACTIONS(3026), + [anon_sym_L_SQUOTE] = ACTIONS(3026), + [anon_sym_u_SQUOTE] = ACTIONS(3026), + [anon_sym_U_SQUOTE] = ACTIONS(3026), + [anon_sym_u8_SQUOTE] = ACTIONS(3026), + [anon_sym_SQUOTE] = ACTIONS(3026), + [anon_sym_L_DQUOTE] = ACTIONS(3026), + [anon_sym_u_DQUOTE] = ACTIONS(3026), + [anon_sym_U_DQUOTE] = ACTIONS(3026), + [anon_sym_u8_DQUOTE] = ACTIONS(3026), + [anon_sym_DQUOTE] = ACTIONS(3026), + [sym_true] = ACTIONS(3024), + [sym_false] = ACTIONS(3024), + [anon_sym_NULL] = ACTIONS(3024), + [anon_sym_nullptr] = ACTIONS(3024), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3024), + [anon_sym_decltype] = ACTIONS(3024), + [anon_sym_virtual] = ACTIONS(3024), + [anon_sym_explicit] = ACTIONS(3024), + [anon_sym_typename] = ACTIONS(3024), + [anon_sym_template] = ACTIONS(3024), + [anon_sym_operator] = ACTIONS(3024), + [anon_sym_try] = ACTIONS(3024), + [anon_sym_delete] = ACTIONS(3024), + [anon_sym_throw] = ACTIONS(3024), + [anon_sym_namespace] = ACTIONS(3024), + [anon_sym_using] = ACTIONS(3024), + [anon_sym_static_assert] = ACTIONS(3024), + [anon_sym_concept] = ACTIONS(3024), + [anon_sym_co_return] = ACTIONS(3024), + [anon_sym_co_yield] = ACTIONS(3024), + [anon_sym_R_DQUOTE] = ACTIONS(3026), + [anon_sym_LR_DQUOTE] = ACTIONS(3026), + [anon_sym_uR_DQUOTE] = ACTIONS(3026), + [anon_sym_UR_DQUOTE] = ACTIONS(3026), + [anon_sym_u8R_DQUOTE] = ACTIONS(3026), + [anon_sym_co_await] = ACTIONS(3024), + [anon_sym_new] = ACTIONS(3024), + [anon_sym_requires] = ACTIONS(3024), + [sym_this] = ACTIONS(3024), + }, + [1011] = { + [sym_identifier] = ACTIONS(3093), + [aux_sym_preproc_include_token1] = ACTIONS(3093), + [aux_sym_preproc_def_token1] = ACTIONS(3093), + [aux_sym_preproc_if_token1] = ACTIONS(3093), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3093), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3093), + [sym_preproc_directive] = ACTIONS(3093), + [anon_sym_LPAREN2] = ACTIONS(3095), + [anon_sym_BANG] = ACTIONS(3095), + [anon_sym_TILDE] = ACTIONS(3095), + [anon_sym_DASH] = ACTIONS(3093), + [anon_sym_PLUS] = ACTIONS(3093), + [anon_sym_STAR] = ACTIONS(3095), + [anon_sym_AMP_AMP] = ACTIONS(3095), + [anon_sym_AMP] = ACTIONS(3093), + [anon_sym_SEMI] = ACTIONS(3095), + [anon_sym_typedef] = ACTIONS(3093), + [anon_sym_extern] = ACTIONS(3093), + [anon_sym___attribute__] = ACTIONS(3093), + [anon_sym_COLON_COLON] = ACTIONS(3095), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3095), + [anon_sym___declspec] = ACTIONS(3093), + [anon_sym___based] = ACTIONS(3093), + [anon_sym___cdecl] = ACTIONS(3093), + [anon_sym___clrcall] = ACTIONS(3093), + [anon_sym___stdcall] = ACTIONS(3093), + [anon_sym___fastcall] = ACTIONS(3093), + [anon_sym___thiscall] = ACTIONS(3093), + [anon_sym___vectorcall] = ACTIONS(3093), + [anon_sym_LBRACE] = ACTIONS(3095), + [anon_sym_RBRACE] = ACTIONS(3095), + [anon_sym_LBRACK] = ACTIONS(3093), + [anon_sym_static] = ACTIONS(3093), + [anon_sym_register] = ACTIONS(3093), + [anon_sym_inline] = ACTIONS(3093), + [anon_sym_thread_local] = ACTIONS(3093), + [anon_sym_const] = ACTIONS(3093), + [anon_sym_constexpr] = ACTIONS(3093), + [anon_sym_volatile] = ACTIONS(3093), + [anon_sym_restrict] = ACTIONS(3093), + [anon_sym___restrict__] = ACTIONS(3093), + [anon_sym__Atomic] = ACTIONS(3093), + [anon_sym__Noreturn] = ACTIONS(3093), + [anon_sym_noreturn] = ACTIONS(3093), + [anon_sym_mutable] = ACTIONS(3093), + [anon_sym_constinit] = ACTIONS(3093), + [anon_sym_consteval] = ACTIONS(3093), + [anon_sym_signed] = ACTIONS(3093), + [anon_sym_unsigned] = ACTIONS(3093), + [anon_sym_long] = ACTIONS(3093), + [anon_sym_short] = ACTIONS(3093), + [sym_primitive_type] = ACTIONS(3093), + [anon_sym_enum] = ACTIONS(3093), + [anon_sym_class] = ACTIONS(3093), + [anon_sym_struct] = ACTIONS(3093), + [anon_sym_union] = ACTIONS(3093), + [anon_sym_if] = ACTIONS(3093), + [anon_sym_else] = ACTIONS(3093), + [anon_sym_switch] = ACTIONS(3093), + [anon_sym_case] = ACTIONS(3093), + [anon_sym_default] = ACTIONS(3093), + [anon_sym_while] = ACTIONS(3093), + [anon_sym_do] = ACTIONS(3093), + [anon_sym_for] = ACTIONS(3093), + [anon_sym_return] = ACTIONS(3093), + [anon_sym_break] = ACTIONS(3093), + [anon_sym_continue] = ACTIONS(3093), + [anon_sym_goto] = ACTIONS(3093), + [anon_sym_not] = ACTIONS(3093), + [anon_sym_compl] = ACTIONS(3093), + [anon_sym_DASH_DASH] = ACTIONS(3095), + [anon_sym_PLUS_PLUS] = ACTIONS(3095), + [anon_sym_sizeof] = ACTIONS(3093), + [anon_sym_offsetof] = ACTIONS(3093), + [anon_sym__Generic] = ACTIONS(3093), + [anon_sym_asm] = ACTIONS(3093), + [anon_sym___asm__] = ACTIONS(3093), + [sym_number_literal] = ACTIONS(3095), + [anon_sym_L_SQUOTE] = ACTIONS(3095), + [anon_sym_u_SQUOTE] = ACTIONS(3095), + [anon_sym_U_SQUOTE] = ACTIONS(3095), + [anon_sym_u8_SQUOTE] = ACTIONS(3095), + [anon_sym_SQUOTE] = ACTIONS(3095), + [anon_sym_L_DQUOTE] = ACTIONS(3095), + [anon_sym_u_DQUOTE] = ACTIONS(3095), + [anon_sym_U_DQUOTE] = ACTIONS(3095), + [anon_sym_u8_DQUOTE] = ACTIONS(3095), + [anon_sym_DQUOTE] = ACTIONS(3095), + [sym_true] = ACTIONS(3093), + [sym_false] = ACTIONS(3093), + [anon_sym_NULL] = ACTIONS(3093), + [anon_sym_nullptr] = ACTIONS(3093), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3093), + [anon_sym_decltype] = ACTIONS(3093), + [anon_sym_virtual] = ACTIONS(3093), + [anon_sym_explicit] = ACTIONS(3093), + [anon_sym_typename] = ACTIONS(3093), + [anon_sym_template] = ACTIONS(3093), + [anon_sym_operator] = ACTIONS(3093), + [anon_sym_try] = ACTIONS(3093), + [anon_sym_delete] = ACTIONS(3093), + [anon_sym_throw] = ACTIONS(3093), + [anon_sym_namespace] = ACTIONS(3093), + [anon_sym_using] = ACTIONS(3093), + [anon_sym_static_assert] = ACTIONS(3093), + [anon_sym_concept] = ACTIONS(3093), + [anon_sym_co_return] = ACTIONS(3093), + [anon_sym_co_yield] = ACTIONS(3093), + [anon_sym_R_DQUOTE] = ACTIONS(3095), + [anon_sym_LR_DQUOTE] = ACTIONS(3095), + [anon_sym_uR_DQUOTE] = ACTIONS(3095), + [anon_sym_UR_DQUOTE] = ACTIONS(3095), + [anon_sym_u8R_DQUOTE] = ACTIONS(3095), + [anon_sym_co_await] = ACTIONS(3093), + [anon_sym_new] = ACTIONS(3093), + [anon_sym_requires] = ACTIONS(3093), + [sym_this] = ACTIONS(3093), + }, + [1012] = { + [ts_builtin_sym_end] = ACTIONS(3050), + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), + }, + [1013] = { + [ts_builtin_sym_end] = ACTIONS(3050), + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), + }, + [1014] = { + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_RBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), + }, + [1015] = { + [ts_builtin_sym_end] = ACTIONS(3050), + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), + }, + [1016] = { + [ts_builtin_sym_end] = ACTIONS(3050), + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), + }, + [1017] = { + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token2] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), + }, + [1018] = { + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token2] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), + }, + [1019] = { + [ts_builtin_sym_end] = ACTIONS(3050), + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), + }, + [1020] = { + [ts_builtin_sym_end] = ACTIONS(3026), + [sym_identifier] = ACTIONS(3024), + [aux_sym_preproc_include_token1] = ACTIONS(3024), + [aux_sym_preproc_def_token1] = ACTIONS(3024), + [aux_sym_preproc_if_token1] = ACTIONS(3024), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3024), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3024), + [sym_preproc_directive] = ACTIONS(3024), + [anon_sym_LPAREN2] = ACTIONS(3026), + [anon_sym_BANG] = ACTIONS(3026), + [anon_sym_TILDE] = ACTIONS(3026), + [anon_sym_DASH] = ACTIONS(3024), + [anon_sym_PLUS] = ACTIONS(3024), + [anon_sym_STAR] = ACTIONS(3026), + [anon_sym_AMP_AMP] = ACTIONS(3026), + [anon_sym_AMP] = ACTIONS(3024), + [anon_sym_SEMI] = ACTIONS(3026), + [anon_sym_typedef] = ACTIONS(3024), + [anon_sym_extern] = ACTIONS(3024), + [anon_sym___attribute__] = ACTIONS(3024), + [anon_sym_COLON_COLON] = ACTIONS(3026), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3026), + [anon_sym___declspec] = ACTIONS(3024), + [anon_sym___based] = ACTIONS(3024), + [anon_sym___cdecl] = ACTIONS(3024), + [anon_sym___clrcall] = ACTIONS(3024), + [anon_sym___stdcall] = ACTIONS(3024), + [anon_sym___fastcall] = ACTIONS(3024), + [anon_sym___thiscall] = ACTIONS(3024), + [anon_sym___vectorcall] = ACTIONS(3024), + [anon_sym_LBRACE] = ACTIONS(3026), + [anon_sym_LBRACK] = ACTIONS(3024), + [anon_sym_static] = ACTIONS(3024), + [anon_sym_register] = ACTIONS(3024), + [anon_sym_inline] = ACTIONS(3024), + [anon_sym_thread_local] = ACTIONS(3024), + [anon_sym_const] = ACTIONS(3024), + [anon_sym_constexpr] = ACTIONS(3024), + [anon_sym_volatile] = ACTIONS(3024), + [anon_sym_restrict] = ACTIONS(3024), + [anon_sym___restrict__] = ACTIONS(3024), + [anon_sym__Atomic] = ACTIONS(3024), + [anon_sym__Noreturn] = ACTIONS(3024), + [anon_sym_noreturn] = ACTIONS(3024), + [anon_sym_mutable] = ACTIONS(3024), + [anon_sym_constinit] = ACTIONS(3024), + [anon_sym_consteval] = ACTIONS(3024), + [anon_sym_signed] = ACTIONS(3024), + [anon_sym_unsigned] = ACTIONS(3024), + [anon_sym_long] = ACTIONS(3024), + [anon_sym_short] = ACTIONS(3024), + [sym_primitive_type] = ACTIONS(3024), + [anon_sym_enum] = ACTIONS(3024), + [anon_sym_class] = ACTIONS(3024), + [anon_sym_struct] = ACTIONS(3024), + [anon_sym_union] = ACTIONS(3024), + [anon_sym_if] = ACTIONS(3024), + [anon_sym_else] = ACTIONS(3024), + [anon_sym_switch] = ACTIONS(3024), + [anon_sym_case] = ACTIONS(3024), + [anon_sym_default] = ACTIONS(3024), + [anon_sym_while] = ACTIONS(3024), + [anon_sym_do] = ACTIONS(3024), + [anon_sym_for] = ACTIONS(3024), + [anon_sym_return] = ACTIONS(3024), + [anon_sym_break] = ACTIONS(3024), + [anon_sym_continue] = ACTIONS(3024), + [anon_sym_goto] = ACTIONS(3024), + [anon_sym_not] = ACTIONS(3024), + [anon_sym_compl] = ACTIONS(3024), + [anon_sym_DASH_DASH] = ACTIONS(3026), + [anon_sym_PLUS_PLUS] = ACTIONS(3026), + [anon_sym_sizeof] = ACTIONS(3024), + [anon_sym_offsetof] = ACTIONS(3024), + [anon_sym__Generic] = ACTIONS(3024), + [anon_sym_asm] = ACTIONS(3024), + [anon_sym___asm__] = ACTIONS(3024), + [sym_number_literal] = ACTIONS(3026), + [anon_sym_L_SQUOTE] = ACTIONS(3026), + [anon_sym_u_SQUOTE] = ACTIONS(3026), + [anon_sym_U_SQUOTE] = ACTIONS(3026), + [anon_sym_u8_SQUOTE] = ACTIONS(3026), + [anon_sym_SQUOTE] = ACTIONS(3026), + [anon_sym_L_DQUOTE] = ACTIONS(3026), + [anon_sym_u_DQUOTE] = ACTIONS(3026), + [anon_sym_U_DQUOTE] = ACTIONS(3026), + [anon_sym_u8_DQUOTE] = ACTIONS(3026), + [anon_sym_DQUOTE] = ACTIONS(3026), + [sym_true] = ACTIONS(3024), + [sym_false] = ACTIONS(3024), + [anon_sym_NULL] = ACTIONS(3024), + [anon_sym_nullptr] = ACTIONS(3024), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3024), + [anon_sym_decltype] = ACTIONS(3024), + [anon_sym_virtual] = ACTIONS(3024), + [anon_sym_explicit] = ACTIONS(3024), + [anon_sym_typename] = ACTIONS(3024), + [anon_sym_template] = ACTIONS(3024), + [anon_sym_operator] = ACTIONS(3024), + [anon_sym_try] = ACTIONS(3024), + [anon_sym_delete] = ACTIONS(3024), + [anon_sym_throw] = ACTIONS(3024), + [anon_sym_namespace] = ACTIONS(3024), + [anon_sym_using] = ACTIONS(3024), + [anon_sym_static_assert] = ACTIONS(3024), + [anon_sym_concept] = ACTIONS(3024), + [anon_sym_co_return] = ACTIONS(3024), + [anon_sym_co_yield] = ACTIONS(3024), + [anon_sym_R_DQUOTE] = ACTIONS(3026), + [anon_sym_LR_DQUOTE] = ACTIONS(3026), + [anon_sym_uR_DQUOTE] = ACTIONS(3026), + [anon_sym_UR_DQUOTE] = ACTIONS(3026), + [anon_sym_u8R_DQUOTE] = ACTIONS(3026), + [anon_sym_co_await] = ACTIONS(3024), + [anon_sym_new] = ACTIONS(3024), + [anon_sym_requires] = ACTIONS(3024), + [sym_this] = ACTIONS(3024), + }, + [1021] = { + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token2] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), + }, + [1022] = { + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token2] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), + }, + [1023] = { + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token2] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), + }, + [1024] = { + [sym_identifier] = ACTIONS(3113), + [aux_sym_preproc_include_token1] = ACTIONS(3113), + [aux_sym_preproc_def_token1] = ACTIONS(3113), + [aux_sym_preproc_if_token1] = ACTIONS(3113), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3113), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3113), + [sym_preproc_directive] = ACTIONS(3113), + [anon_sym_LPAREN2] = ACTIONS(3115), + [anon_sym_BANG] = ACTIONS(3115), + [anon_sym_TILDE] = ACTIONS(3115), + [anon_sym_DASH] = ACTIONS(3113), + [anon_sym_PLUS] = ACTIONS(3113), + [anon_sym_STAR] = ACTIONS(3115), + [anon_sym_AMP_AMP] = ACTIONS(3115), + [anon_sym_AMP] = ACTIONS(3113), + [anon_sym_SEMI] = ACTIONS(3115), + [anon_sym_typedef] = ACTIONS(3113), + [anon_sym_extern] = ACTIONS(3113), + [anon_sym___attribute__] = ACTIONS(3113), + [anon_sym_COLON_COLON] = ACTIONS(3115), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3115), + [anon_sym___declspec] = ACTIONS(3113), + [anon_sym___based] = ACTIONS(3113), + [anon_sym___cdecl] = ACTIONS(3113), + [anon_sym___clrcall] = ACTIONS(3113), + [anon_sym___stdcall] = ACTIONS(3113), + [anon_sym___fastcall] = ACTIONS(3113), + [anon_sym___thiscall] = ACTIONS(3113), + [anon_sym___vectorcall] = ACTIONS(3113), + [anon_sym_LBRACE] = ACTIONS(3115), + [anon_sym_RBRACE] = ACTIONS(3115), + [anon_sym_LBRACK] = ACTIONS(3113), + [anon_sym_static] = ACTIONS(3113), + [anon_sym_register] = ACTIONS(3113), + [anon_sym_inline] = ACTIONS(3113), + [anon_sym_thread_local] = ACTIONS(3113), + [anon_sym_const] = ACTIONS(3113), + [anon_sym_constexpr] = ACTIONS(3113), + [anon_sym_volatile] = ACTIONS(3113), + [anon_sym_restrict] = ACTIONS(3113), + [anon_sym___restrict__] = ACTIONS(3113), + [anon_sym__Atomic] = ACTIONS(3113), + [anon_sym__Noreturn] = ACTIONS(3113), + [anon_sym_noreturn] = ACTIONS(3113), + [anon_sym_mutable] = ACTIONS(3113), + [anon_sym_constinit] = ACTIONS(3113), + [anon_sym_consteval] = ACTIONS(3113), + [anon_sym_signed] = ACTIONS(3113), + [anon_sym_unsigned] = ACTIONS(3113), + [anon_sym_long] = ACTIONS(3113), + [anon_sym_short] = ACTIONS(3113), + [sym_primitive_type] = ACTIONS(3113), + [anon_sym_enum] = ACTIONS(3113), + [anon_sym_class] = ACTIONS(3113), + [anon_sym_struct] = ACTIONS(3113), + [anon_sym_union] = ACTIONS(3113), + [anon_sym_if] = ACTIONS(3113), + [anon_sym_else] = ACTIONS(3113), + [anon_sym_switch] = ACTIONS(3113), + [anon_sym_case] = ACTIONS(3113), + [anon_sym_default] = ACTIONS(3113), + [anon_sym_while] = ACTIONS(3113), + [anon_sym_do] = ACTIONS(3113), + [anon_sym_for] = ACTIONS(3113), + [anon_sym_return] = ACTIONS(3113), + [anon_sym_break] = ACTIONS(3113), + [anon_sym_continue] = ACTIONS(3113), + [anon_sym_goto] = ACTIONS(3113), + [anon_sym_not] = ACTIONS(3113), + [anon_sym_compl] = ACTIONS(3113), + [anon_sym_DASH_DASH] = ACTIONS(3115), + [anon_sym_PLUS_PLUS] = ACTIONS(3115), + [anon_sym_sizeof] = ACTIONS(3113), + [anon_sym_offsetof] = ACTIONS(3113), + [anon_sym__Generic] = ACTIONS(3113), + [anon_sym_asm] = ACTIONS(3113), + [anon_sym___asm__] = ACTIONS(3113), + [sym_number_literal] = ACTIONS(3115), + [anon_sym_L_SQUOTE] = ACTIONS(3115), + [anon_sym_u_SQUOTE] = ACTIONS(3115), + [anon_sym_U_SQUOTE] = ACTIONS(3115), + [anon_sym_u8_SQUOTE] = ACTIONS(3115), + [anon_sym_SQUOTE] = ACTIONS(3115), + [anon_sym_L_DQUOTE] = ACTIONS(3115), + [anon_sym_u_DQUOTE] = ACTIONS(3115), + [anon_sym_U_DQUOTE] = ACTIONS(3115), + [anon_sym_u8_DQUOTE] = ACTIONS(3115), + [anon_sym_DQUOTE] = ACTIONS(3115), + [sym_true] = ACTIONS(3113), + [sym_false] = ACTIONS(3113), + [anon_sym_NULL] = ACTIONS(3113), + [anon_sym_nullptr] = ACTIONS(3113), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3113), + [anon_sym_decltype] = ACTIONS(3113), + [anon_sym_virtual] = ACTIONS(3113), + [anon_sym_explicit] = ACTIONS(3113), + [anon_sym_typename] = ACTIONS(3113), + [anon_sym_template] = ACTIONS(3113), + [anon_sym_operator] = ACTIONS(3113), + [anon_sym_try] = ACTIONS(3113), + [anon_sym_delete] = ACTIONS(3113), + [anon_sym_throw] = ACTIONS(3113), + [anon_sym_namespace] = ACTIONS(3113), + [anon_sym_using] = ACTIONS(3113), + [anon_sym_static_assert] = ACTIONS(3113), + [anon_sym_concept] = ACTIONS(3113), + [anon_sym_co_return] = ACTIONS(3113), + [anon_sym_co_yield] = ACTIONS(3113), + [anon_sym_R_DQUOTE] = ACTIONS(3115), + [anon_sym_LR_DQUOTE] = ACTIONS(3115), + [anon_sym_uR_DQUOTE] = ACTIONS(3115), + [anon_sym_UR_DQUOTE] = ACTIONS(3115), + [anon_sym_u8R_DQUOTE] = ACTIONS(3115), + [anon_sym_co_await] = ACTIONS(3113), + [anon_sym_new] = ACTIONS(3113), + [anon_sym_requires] = ACTIONS(3113), + [sym_this] = ACTIONS(3113), + }, + [1025] = { + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_RBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), + }, + [1026] = { + [sym_identifier] = ACTIONS(2908), + [aux_sym_preproc_include_token1] = ACTIONS(2908), + [aux_sym_preproc_def_token1] = ACTIONS(2908), + [aux_sym_preproc_if_token1] = ACTIONS(2908), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2908), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2908), + [sym_preproc_directive] = ACTIONS(2908), + [anon_sym_LPAREN2] = ACTIONS(2910), + [anon_sym_BANG] = ACTIONS(2910), + [anon_sym_TILDE] = ACTIONS(2910), + [anon_sym_DASH] = ACTIONS(2908), + [anon_sym_PLUS] = ACTIONS(2908), + [anon_sym_STAR] = ACTIONS(2910), + [anon_sym_AMP_AMP] = ACTIONS(2910), + [anon_sym_AMP] = ACTIONS(2908), + [anon_sym_SEMI] = ACTIONS(2910), + [anon_sym_typedef] = ACTIONS(2908), + [anon_sym_extern] = ACTIONS(2908), + [anon_sym___attribute__] = ACTIONS(2908), + [anon_sym_COLON_COLON] = ACTIONS(2910), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2910), + [anon_sym___declspec] = ACTIONS(2908), + [anon_sym___based] = ACTIONS(2908), + [anon_sym___cdecl] = ACTIONS(2908), + [anon_sym___clrcall] = ACTIONS(2908), + [anon_sym___stdcall] = ACTIONS(2908), + [anon_sym___fastcall] = ACTIONS(2908), + [anon_sym___thiscall] = ACTIONS(2908), + [anon_sym___vectorcall] = ACTIONS(2908), + [anon_sym_LBRACE] = ACTIONS(2910), + [anon_sym_RBRACE] = ACTIONS(2910), + [anon_sym_LBRACK] = ACTIONS(2908), + [anon_sym_static] = ACTIONS(2908), + [anon_sym_register] = ACTIONS(2908), + [anon_sym_inline] = ACTIONS(2908), + [anon_sym_thread_local] = ACTIONS(2908), + [anon_sym_const] = ACTIONS(2908), + [anon_sym_constexpr] = ACTIONS(2908), + [anon_sym_volatile] = ACTIONS(2908), + [anon_sym_restrict] = ACTIONS(2908), + [anon_sym___restrict__] = ACTIONS(2908), + [anon_sym__Atomic] = ACTIONS(2908), + [anon_sym__Noreturn] = ACTIONS(2908), + [anon_sym_noreturn] = ACTIONS(2908), + [anon_sym_mutable] = ACTIONS(2908), + [anon_sym_constinit] = ACTIONS(2908), + [anon_sym_consteval] = ACTIONS(2908), + [anon_sym_signed] = ACTIONS(2908), + [anon_sym_unsigned] = ACTIONS(2908), + [anon_sym_long] = ACTIONS(2908), + [anon_sym_short] = ACTIONS(2908), + [sym_primitive_type] = ACTIONS(2908), + [anon_sym_enum] = ACTIONS(2908), + [anon_sym_class] = ACTIONS(2908), + [anon_sym_struct] = ACTIONS(2908), + [anon_sym_union] = ACTIONS(2908), + [anon_sym_if] = ACTIONS(2908), + [anon_sym_else] = ACTIONS(2908), + [anon_sym_switch] = ACTIONS(2908), + [anon_sym_case] = ACTIONS(2908), + [anon_sym_default] = ACTIONS(2908), + [anon_sym_while] = ACTIONS(2908), + [anon_sym_do] = ACTIONS(2908), + [anon_sym_for] = ACTIONS(2908), + [anon_sym_return] = ACTIONS(2908), + [anon_sym_break] = ACTIONS(2908), + [anon_sym_continue] = ACTIONS(2908), + [anon_sym_goto] = ACTIONS(2908), + [anon_sym_not] = ACTIONS(2908), + [anon_sym_compl] = ACTIONS(2908), + [anon_sym_DASH_DASH] = ACTIONS(2910), + [anon_sym_PLUS_PLUS] = ACTIONS(2910), + [anon_sym_sizeof] = ACTIONS(2908), + [anon_sym_offsetof] = ACTIONS(2908), + [anon_sym__Generic] = ACTIONS(2908), + [anon_sym_asm] = ACTIONS(2908), + [anon_sym___asm__] = ACTIONS(2908), + [sym_number_literal] = ACTIONS(2910), + [anon_sym_L_SQUOTE] = ACTIONS(2910), + [anon_sym_u_SQUOTE] = ACTIONS(2910), + [anon_sym_U_SQUOTE] = ACTIONS(2910), + [anon_sym_u8_SQUOTE] = ACTIONS(2910), + [anon_sym_SQUOTE] = ACTIONS(2910), + [anon_sym_L_DQUOTE] = ACTIONS(2910), + [anon_sym_u_DQUOTE] = ACTIONS(2910), + [anon_sym_U_DQUOTE] = ACTIONS(2910), + [anon_sym_u8_DQUOTE] = ACTIONS(2910), + [anon_sym_DQUOTE] = ACTIONS(2910), + [sym_true] = ACTIONS(2908), + [sym_false] = ACTIONS(2908), + [anon_sym_NULL] = ACTIONS(2908), + [anon_sym_nullptr] = ACTIONS(2908), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2908), + [anon_sym_decltype] = ACTIONS(2908), + [anon_sym_virtual] = ACTIONS(2908), + [anon_sym_explicit] = ACTIONS(2908), + [anon_sym_typename] = ACTIONS(2908), + [anon_sym_template] = ACTIONS(2908), + [anon_sym_operator] = ACTIONS(2908), + [anon_sym_try] = ACTIONS(2908), + [anon_sym_delete] = ACTIONS(2908), + [anon_sym_throw] = ACTIONS(2908), + [anon_sym_namespace] = ACTIONS(2908), + [anon_sym_using] = ACTIONS(2908), + [anon_sym_static_assert] = ACTIONS(2908), + [anon_sym_concept] = ACTIONS(2908), + [anon_sym_co_return] = ACTIONS(2908), + [anon_sym_co_yield] = ACTIONS(2908), + [anon_sym_R_DQUOTE] = ACTIONS(2910), + [anon_sym_LR_DQUOTE] = ACTIONS(2910), + [anon_sym_uR_DQUOTE] = ACTIONS(2910), + [anon_sym_UR_DQUOTE] = ACTIONS(2910), + [anon_sym_u8R_DQUOTE] = ACTIONS(2910), + [anon_sym_co_await] = ACTIONS(2908), + [anon_sym_new] = ACTIONS(2908), + [anon_sym_requires] = ACTIONS(2908), + [sym_this] = ACTIONS(2908), + }, + [1027] = { + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_RBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), + }, + [1028] = { + [sym_identifier] = ACTIONS(3109), + [aux_sym_preproc_include_token1] = ACTIONS(3109), + [aux_sym_preproc_def_token1] = ACTIONS(3109), + [aux_sym_preproc_if_token1] = ACTIONS(3109), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3109), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3109), + [sym_preproc_directive] = ACTIONS(3109), + [anon_sym_LPAREN2] = ACTIONS(3111), + [anon_sym_BANG] = ACTIONS(3111), + [anon_sym_TILDE] = ACTIONS(3111), + [anon_sym_DASH] = ACTIONS(3109), + [anon_sym_PLUS] = ACTIONS(3109), + [anon_sym_STAR] = ACTIONS(3111), + [anon_sym_AMP_AMP] = ACTIONS(3111), + [anon_sym_AMP] = ACTIONS(3109), + [anon_sym_SEMI] = ACTIONS(3111), + [anon_sym_typedef] = ACTIONS(3109), + [anon_sym_extern] = ACTIONS(3109), + [anon_sym___attribute__] = ACTIONS(3109), + [anon_sym_COLON_COLON] = ACTIONS(3111), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3111), + [anon_sym___declspec] = ACTIONS(3109), + [anon_sym___based] = ACTIONS(3109), + [anon_sym___cdecl] = ACTIONS(3109), + [anon_sym___clrcall] = ACTIONS(3109), + [anon_sym___stdcall] = ACTIONS(3109), + [anon_sym___fastcall] = ACTIONS(3109), + [anon_sym___thiscall] = ACTIONS(3109), + [anon_sym___vectorcall] = ACTIONS(3109), + [anon_sym_LBRACE] = ACTIONS(3111), + [anon_sym_RBRACE] = ACTIONS(3111), + [anon_sym_LBRACK] = ACTIONS(3109), + [anon_sym_static] = ACTIONS(3109), + [anon_sym_register] = ACTIONS(3109), + [anon_sym_inline] = ACTIONS(3109), + [anon_sym_thread_local] = ACTIONS(3109), + [anon_sym_const] = ACTIONS(3109), + [anon_sym_constexpr] = ACTIONS(3109), + [anon_sym_volatile] = ACTIONS(3109), + [anon_sym_restrict] = ACTIONS(3109), + [anon_sym___restrict__] = ACTIONS(3109), + [anon_sym__Atomic] = ACTIONS(3109), + [anon_sym__Noreturn] = ACTIONS(3109), + [anon_sym_noreturn] = ACTIONS(3109), + [anon_sym_mutable] = ACTIONS(3109), + [anon_sym_constinit] = ACTIONS(3109), + [anon_sym_consteval] = ACTIONS(3109), + [anon_sym_signed] = ACTIONS(3109), + [anon_sym_unsigned] = ACTIONS(3109), + [anon_sym_long] = ACTIONS(3109), + [anon_sym_short] = ACTIONS(3109), + [sym_primitive_type] = ACTIONS(3109), + [anon_sym_enum] = ACTIONS(3109), + [anon_sym_class] = ACTIONS(3109), + [anon_sym_struct] = ACTIONS(3109), + [anon_sym_union] = ACTIONS(3109), + [anon_sym_if] = ACTIONS(3109), + [anon_sym_else] = ACTIONS(3109), + [anon_sym_switch] = ACTIONS(3109), + [anon_sym_case] = ACTIONS(3109), + [anon_sym_default] = ACTIONS(3109), + [anon_sym_while] = ACTIONS(3109), + [anon_sym_do] = ACTIONS(3109), + [anon_sym_for] = ACTIONS(3109), + [anon_sym_return] = ACTIONS(3109), + [anon_sym_break] = ACTIONS(3109), + [anon_sym_continue] = ACTIONS(3109), + [anon_sym_goto] = ACTIONS(3109), + [anon_sym_not] = ACTIONS(3109), + [anon_sym_compl] = ACTIONS(3109), + [anon_sym_DASH_DASH] = ACTIONS(3111), + [anon_sym_PLUS_PLUS] = ACTIONS(3111), + [anon_sym_sizeof] = ACTIONS(3109), + [anon_sym_offsetof] = ACTIONS(3109), + [anon_sym__Generic] = ACTIONS(3109), + [anon_sym_asm] = ACTIONS(3109), + [anon_sym___asm__] = ACTIONS(3109), + [sym_number_literal] = ACTIONS(3111), + [anon_sym_L_SQUOTE] = ACTIONS(3111), + [anon_sym_u_SQUOTE] = ACTIONS(3111), + [anon_sym_U_SQUOTE] = ACTIONS(3111), + [anon_sym_u8_SQUOTE] = ACTIONS(3111), + [anon_sym_SQUOTE] = ACTIONS(3111), + [anon_sym_L_DQUOTE] = ACTIONS(3111), + [anon_sym_u_DQUOTE] = ACTIONS(3111), + [anon_sym_U_DQUOTE] = ACTIONS(3111), + [anon_sym_u8_DQUOTE] = ACTIONS(3111), + [anon_sym_DQUOTE] = ACTIONS(3111), + [sym_true] = ACTIONS(3109), + [sym_false] = ACTIONS(3109), + [anon_sym_NULL] = ACTIONS(3109), + [anon_sym_nullptr] = ACTIONS(3109), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3109), + [anon_sym_decltype] = ACTIONS(3109), + [anon_sym_virtual] = ACTIONS(3109), + [anon_sym_explicit] = ACTIONS(3109), + [anon_sym_typename] = ACTIONS(3109), + [anon_sym_template] = ACTIONS(3109), + [anon_sym_operator] = ACTIONS(3109), + [anon_sym_try] = ACTIONS(3109), + [anon_sym_delete] = ACTIONS(3109), + [anon_sym_throw] = ACTIONS(3109), + [anon_sym_namespace] = ACTIONS(3109), + [anon_sym_using] = ACTIONS(3109), + [anon_sym_static_assert] = ACTIONS(3109), + [anon_sym_concept] = ACTIONS(3109), + [anon_sym_co_return] = ACTIONS(3109), + [anon_sym_co_yield] = ACTIONS(3109), + [anon_sym_R_DQUOTE] = ACTIONS(3111), + [anon_sym_LR_DQUOTE] = ACTIONS(3111), + [anon_sym_uR_DQUOTE] = ACTIONS(3111), + [anon_sym_UR_DQUOTE] = ACTIONS(3111), + [anon_sym_u8R_DQUOTE] = ACTIONS(3111), + [anon_sym_co_await] = ACTIONS(3109), + [anon_sym_new] = ACTIONS(3109), + [anon_sym_requires] = ACTIONS(3109), + [sym_this] = ACTIONS(3109), + }, + [1029] = { + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token2] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), + }, + [1030] = { + [sym_identifier] = ACTIONS(3000), + [aux_sym_preproc_include_token1] = ACTIONS(3000), + [aux_sym_preproc_def_token1] = ACTIONS(3000), + [aux_sym_preproc_if_token1] = ACTIONS(3000), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3000), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3000), + [sym_preproc_directive] = ACTIONS(3000), + [anon_sym_LPAREN2] = ACTIONS(3002), + [anon_sym_BANG] = ACTIONS(3002), + [anon_sym_TILDE] = ACTIONS(3002), + [anon_sym_DASH] = ACTIONS(3000), + [anon_sym_PLUS] = ACTIONS(3000), + [anon_sym_STAR] = ACTIONS(3002), + [anon_sym_AMP_AMP] = ACTIONS(3002), + [anon_sym_AMP] = ACTIONS(3000), + [anon_sym_SEMI] = ACTIONS(3002), + [anon_sym_typedef] = ACTIONS(3000), + [anon_sym_extern] = ACTIONS(3000), + [anon_sym___attribute__] = ACTIONS(3000), + [anon_sym_COLON_COLON] = ACTIONS(3002), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3002), + [anon_sym___declspec] = ACTIONS(3000), + [anon_sym___based] = ACTIONS(3000), + [anon_sym___cdecl] = ACTIONS(3000), + [anon_sym___clrcall] = ACTIONS(3000), + [anon_sym___stdcall] = ACTIONS(3000), + [anon_sym___fastcall] = ACTIONS(3000), + [anon_sym___thiscall] = ACTIONS(3000), + [anon_sym___vectorcall] = ACTIONS(3000), + [anon_sym_LBRACE] = ACTIONS(3002), + [anon_sym_RBRACE] = ACTIONS(3002), + [anon_sym_LBRACK] = ACTIONS(3000), + [anon_sym_static] = ACTIONS(3000), + [anon_sym_register] = ACTIONS(3000), + [anon_sym_inline] = ACTIONS(3000), + [anon_sym_thread_local] = ACTIONS(3000), + [anon_sym_const] = ACTIONS(3000), + [anon_sym_constexpr] = ACTIONS(3000), + [anon_sym_volatile] = ACTIONS(3000), + [anon_sym_restrict] = ACTIONS(3000), + [anon_sym___restrict__] = ACTIONS(3000), + [anon_sym__Atomic] = ACTIONS(3000), + [anon_sym__Noreturn] = ACTIONS(3000), + [anon_sym_noreturn] = ACTIONS(3000), + [anon_sym_mutable] = ACTIONS(3000), + [anon_sym_constinit] = ACTIONS(3000), + [anon_sym_consteval] = ACTIONS(3000), + [anon_sym_signed] = ACTIONS(3000), + [anon_sym_unsigned] = ACTIONS(3000), + [anon_sym_long] = ACTIONS(3000), + [anon_sym_short] = ACTIONS(3000), + [sym_primitive_type] = ACTIONS(3000), + [anon_sym_enum] = ACTIONS(3000), + [anon_sym_class] = ACTIONS(3000), + [anon_sym_struct] = ACTIONS(3000), + [anon_sym_union] = ACTIONS(3000), + [anon_sym_if] = ACTIONS(3000), + [anon_sym_else] = ACTIONS(3000), + [anon_sym_switch] = ACTIONS(3000), + [anon_sym_case] = ACTIONS(3000), + [anon_sym_default] = ACTIONS(3000), + [anon_sym_while] = ACTIONS(3000), + [anon_sym_do] = ACTIONS(3000), + [anon_sym_for] = ACTIONS(3000), + [anon_sym_return] = ACTIONS(3000), + [anon_sym_break] = ACTIONS(3000), + [anon_sym_continue] = ACTIONS(3000), + [anon_sym_goto] = ACTIONS(3000), + [anon_sym_not] = ACTIONS(3000), + [anon_sym_compl] = ACTIONS(3000), + [anon_sym_DASH_DASH] = ACTIONS(3002), + [anon_sym_PLUS_PLUS] = ACTIONS(3002), + [anon_sym_sizeof] = ACTIONS(3000), + [anon_sym_offsetof] = ACTIONS(3000), + [anon_sym__Generic] = ACTIONS(3000), + [anon_sym_asm] = ACTIONS(3000), + [anon_sym___asm__] = ACTIONS(3000), + [sym_number_literal] = ACTIONS(3002), + [anon_sym_L_SQUOTE] = ACTIONS(3002), + [anon_sym_u_SQUOTE] = ACTIONS(3002), + [anon_sym_U_SQUOTE] = ACTIONS(3002), + [anon_sym_u8_SQUOTE] = ACTIONS(3002), + [anon_sym_SQUOTE] = ACTIONS(3002), + [anon_sym_L_DQUOTE] = ACTIONS(3002), + [anon_sym_u_DQUOTE] = ACTIONS(3002), + [anon_sym_U_DQUOTE] = ACTIONS(3002), + [anon_sym_u8_DQUOTE] = ACTIONS(3002), + [anon_sym_DQUOTE] = ACTIONS(3002), + [sym_true] = ACTIONS(3000), + [sym_false] = ACTIONS(3000), + [anon_sym_NULL] = ACTIONS(3000), + [anon_sym_nullptr] = ACTIONS(3000), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3000), + [anon_sym_decltype] = ACTIONS(3000), + [anon_sym_virtual] = ACTIONS(3000), + [anon_sym_explicit] = ACTIONS(3000), + [anon_sym_typename] = ACTIONS(3000), + [anon_sym_template] = ACTIONS(3000), + [anon_sym_operator] = ACTIONS(3000), + [anon_sym_try] = ACTIONS(3000), + [anon_sym_delete] = ACTIONS(3000), + [anon_sym_throw] = ACTIONS(3000), + [anon_sym_namespace] = ACTIONS(3000), + [anon_sym_using] = ACTIONS(3000), + [anon_sym_static_assert] = ACTIONS(3000), + [anon_sym_concept] = ACTIONS(3000), + [anon_sym_co_return] = ACTIONS(3000), + [anon_sym_co_yield] = ACTIONS(3000), + [anon_sym_R_DQUOTE] = ACTIONS(3002), + [anon_sym_LR_DQUOTE] = ACTIONS(3002), + [anon_sym_uR_DQUOTE] = ACTIONS(3002), + [anon_sym_UR_DQUOTE] = ACTIONS(3002), + [anon_sym_u8R_DQUOTE] = ACTIONS(3002), + [anon_sym_co_await] = ACTIONS(3000), + [anon_sym_new] = ACTIONS(3000), + [anon_sym_requires] = ACTIONS(3000), + [sym_this] = ACTIONS(3000), + }, + [1031] = { + [ts_builtin_sym_end] = ACTIONS(2922), + [sym_identifier] = ACTIONS(2920), + [aux_sym_preproc_include_token1] = ACTIONS(2920), + [aux_sym_preproc_def_token1] = ACTIONS(2920), + [aux_sym_preproc_if_token1] = ACTIONS(2920), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2920), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2920), + [sym_preproc_directive] = ACTIONS(2920), + [anon_sym_LPAREN2] = ACTIONS(2922), + [anon_sym_BANG] = ACTIONS(2922), + [anon_sym_TILDE] = ACTIONS(2922), + [anon_sym_DASH] = ACTIONS(2920), + [anon_sym_PLUS] = ACTIONS(2920), + [anon_sym_STAR] = ACTIONS(2922), + [anon_sym_AMP_AMP] = ACTIONS(2922), + [anon_sym_AMP] = ACTIONS(2920), + [anon_sym_SEMI] = ACTIONS(2922), + [anon_sym_typedef] = ACTIONS(2920), + [anon_sym_extern] = ACTIONS(2920), + [anon_sym___attribute__] = ACTIONS(2920), + [anon_sym_COLON_COLON] = ACTIONS(2922), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2922), + [anon_sym___declspec] = ACTIONS(2920), + [anon_sym___based] = ACTIONS(2920), + [anon_sym___cdecl] = ACTIONS(2920), + [anon_sym___clrcall] = ACTIONS(2920), + [anon_sym___stdcall] = ACTIONS(2920), + [anon_sym___fastcall] = ACTIONS(2920), + [anon_sym___thiscall] = ACTIONS(2920), + [anon_sym___vectorcall] = ACTIONS(2920), + [anon_sym_LBRACE] = ACTIONS(2922), + [anon_sym_LBRACK] = ACTIONS(2920), + [anon_sym_static] = ACTIONS(2920), + [anon_sym_register] = ACTIONS(2920), + [anon_sym_inline] = ACTIONS(2920), + [anon_sym_thread_local] = ACTIONS(2920), + [anon_sym_const] = ACTIONS(2920), + [anon_sym_constexpr] = ACTIONS(2920), + [anon_sym_volatile] = ACTIONS(2920), + [anon_sym_restrict] = ACTIONS(2920), + [anon_sym___restrict__] = ACTIONS(2920), + [anon_sym__Atomic] = ACTIONS(2920), + [anon_sym__Noreturn] = ACTIONS(2920), + [anon_sym_noreturn] = ACTIONS(2920), + [anon_sym_mutable] = ACTIONS(2920), + [anon_sym_constinit] = ACTIONS(2920), + [anon_sym_consteval] = ACTIONS(2920), + [anon_sym_signed] = ACTIONS(2920), + [anon_sym_unsigned] = ACTIONS(2920), + [anon_sym_long] = ACTIONS(2920), + [anon_sym_short] = ACTIONS(2920), + [sym_primitive_type] = ACTIONS(2920), + [anon_sym_enum] = ACTIONS(2920), + [anon_sym_class] = ACTIONS(2920), + [anon_sym_struct] = ACTIONS(2920), + [anon_sym_union] = ACTIONS(2920), + [anon_sym_if] = ACTIONS(2920), + [anon_sym_else] = ACTIONS(2920), + [anon_sym_switch] = ACTIONS(2920), + [anon_sym_case] = ACTIONS(2920), + [anon_sym_default] = ACTIONS(2920), + [anon_sym_while] = ACTIONS(2920), + [anon_sym_do] = ACTIONS(2920), + [anon_sym_for] = ACTIONS(2920), + [anon_sym_return] = ACTIONS(2920), + [anon_sym_break] = ACTIONS(2920), + [anon_sym_continue] = ACTIONS(2920), + [anon_sym_goto] = ACTIONS(2920), + [anon_sym_not] = ACTIONS(2920), + [anon_sym_compl] = ACTIONS(2920), + [anon_sym_DASH_DASH] = ACTIONS(2922), + [anon_sym_PLUS_PLUS] = ACTIONS(2922), + [anon_sym_sizeof] = ACTIONS(2920), + [anon_sym_offsetof] = ACTIONS(2920), + [anon_sym__Generic] = ACTIONS(2920), + [anon_sym_asm] = ACTIONS(2920), + [anon_sym___asm__] = ACTIONS(2920), + [sym_number_literal] = ACTIONS(2922), + [anon_sym_L_SQUOTE] = ACTIONS(2922), + [anon_sym_u_SQUOTE] = ACTIONS(2922), + [anon_sym_U_SQUOTE] = ACTIONS(2922), + [anon_sym_u8_SQUOTE] = ACTIONS(2922), + [anon_sym_SQUOTE] = ACTIONS(2922), + [anon_sym_L_DQUOTE] = ACTIONS(2922), + [anon_sym_u_DQUOTE] = ACTIONS(2922), + [anon_sym_U_DQUOTE] = ACTIONS(2922), + [anon_sym_u8_DQUOTE] = ACTIONS(2922), + [anon_sym_DQUOTE] = ACTIONS(2922), + [sym_true] = ACTIONS(2920), + [sym_false] = ACTIONS(2920), + [anon_sym_NULL] = ACTIONS(2920), + [anon_sym_nullptr] = ACTIONS(2920), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2920), + [anon_sym_decltype] = ACTIONS(2920), + [anon_sym_virtual] = ACTIONS(2920), + [anon_sym_explicit] = ACTIONS(2920), + [anon_sym_typename] = ACTIONS(2920), + [anon_sym_template] = ACTIONS(2920), + [anon_sym_operator] = ACTIONS(2920), + [anon_sym_try] = ACTIONS(2920), + [anon_sym_delete] = ACTIONS(2920), + [anon_sym_throw] = ACTIONS(2920), + [anon_sym_namespace] = ACTIONS(2920), + [anon_sym_using] = ACTIONS(2920), + [anon_sym_static_assert] = ACTIONS(2920), + [anon_sym_concept] = ACTIONS(2920), + [anon_sym_co_return] = ACTIONS(2920), + [anon_sym_co_yield] = ACTIONS(2920), + [anon_sym_R_DQUOTE] = ACTIONS(2922), + [anon_sym_LR_DQUOTE] = ACTIONS(2922), + [anon_sym_uR_DQUOTE] = ACTIONS(2922), + [anon_sym_UR_DQUOTE] = ACTIONS(2922), + [anon_sym_u8R_DQUOTE] = ACTIONS(2922), + [anon_sym_co_await] = ACTIONS(2920), + [anon_sym_new] = ACTIONS(2920), + [anon_sym_requires] = ACTIONS(2920), + [sym_this] = ACTIONS(2920), + }, + [1032] = { + [sym_identifier] = ACTIONS(3004), + [aux_sym_preproc_include_token1] = ACTIONS(3004), + [aux_sym_preproc_def_token1] = ACTIONS(3004), + [aux_sym_preproc_if_token1] = ACTIONS(3004), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3004), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3004), + [sym_preproc_directive] = ACTIONS(3004), + [anon_sym_LPAREN2] = ACTIONS(3006), + [anon_sym_BANG] = ACTIONS(3006), + [anon_sym_TILDE] = ACTIONS(3006), + [anon_sym_DASH] = ACTIONS(3004), + [anon_sym_PLUS] = ACTIONS(3004), + [anon_sym_STAR] = ACTIONS(3006), + [anon_sym_AMP_AMP] = ACTIONS(3006), + [anon_sym_AMP] = ACTIONS(3004), + [anon_sym_SEMI] = ACTIONS(3006), + [anon_sym_typedef] = ACTIONS(3004), + [anon_sym_extern] = ACTIONS(3004), + [anon_sym___attribute__] = ACTIONS(3004), + [anon_sym_COLON_COLON] = ACTIONS(3006), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3006), + [anon_sym___declspec] = ACTIONS(3004), + [anon_sym___based] = ACTIONS(3004), + [anon_sym___cdecl] = ACTIONS(3004), + [anon_sym___clrcall] = ACTIONS(3004), + [anon_sym___stdcall] = ACTIONS(3004), + [anon_sym___fastcall] = ACTIONS(3004), + [anon_sym___thiscall] = ACTIONS(3004), + [anon_sym___vectorcall] = ACTIONS(3004), + [anon_sym_LBRACE] = ACTIONS(3006), + [anon_sym_RBRACE] = ACTIONS(3006), + [anon_sym_LBRACK] = ACTIONS(3004), + [anon_sym_static] = ACTIONS(3004), + [anon_sym_register] = ACTIONS(3004), + [anon_sym_inline] = ACTIONS(3004), + [anon_sym_thread_local] = ACTIONS(3004), + [anon_sym_const] = ACTIONS(3004), + [anon_sym_constexpr] = ACTIONS(3004), + [anon_sym_volatile] = ACTIONS(3004), + [anon_sym_restrict] = ACTIONS(3004), + [anon_sym___restrict__] = ACTIONS(3004), + [anon_sym__Atomic] = ACTIONS(3004), + [anon_sym__Noreturn] = ACTIONS(3004), + [anon_sym_noreturn] = ACTIONS(3004), + [anon_sym_mutable] = ACTIONS(3004), + [anon_sym_constinit] = ACTIONS(3004), + [anon_sym_consteval] = ACTIONS(3004), + [anon_sym_signed] = ACTIONS(3004), + [anon_sym_unsigned] = ACTIONS(3004), + [anon_sym_long] = ACTIONS(3004), + [anon_sym_short] = ACTIONS(3004), + [sym_primitive_type] = ACTIONS(3004), + [anon_sym_enum] = ACTIONS(3004), + [anon_sym_class] = ACTIONS(3004), + [anon_sym_struct] = ACTIONS(3004), + [anon_sym_union] = ACTIONS(3004), + [anon_sym_if] = ACTIONS(3004), + [anon_sym_else] = ACTIONS(3004), + [anon_sym_switch] = ACTIONS(3004), + [anon_sym_case] = ACTIONS(3004), + [anon_sym_default] = ACTIONS(3004), + [anon_sym_while] = ACTIONS(3004), + [anon_sym_do] = ACTIONS(3004), + [anon_sym_for] = ACTIONS(3004), + [anon_sym_return] = ACTIONS(3004), + [anon_sym_break] = ACTIONS(3004), + [anon_sym_continue] = ACTIONS(3004), + [anon_sym_goto] = ACTIONS(3004), + [anon_sym_not] = ACTIONS(3004), + [anon_sym_compl] = ACTIONS(3004), + [anon_sym_DASH_DASH] = ACTIONS(3006), + [anon_sym_PLUS_PLUS] = ACTIONS(3006), + [anon_sym_sizeof] = ACTIONS(3004), + [anon_sym_offsetof] = ACTIONS(3004), + [anon_sym__Generic] = ACTIONS(3004), + [anon_sym_asm] = ACTIONS(3004), + [anon_sym___asm__] = ACTIONS(3004), + [sym_number_literal] = ACTIONS(3006), + [anon_sym_L_SQUOTE] = ACTIONS(3006), + [anon_sym_u_SQUOTE] = ACTIONS(3006), + [anon_sym_U_SQUOTE] = ACTIONS(3006), + [anon_sym_u8_SQUOTE] = ACTIONS(3006), + [anon_sym_SQUOTE] = ACTIONS(3006), + [anon_sym_L_DQUOTE] = ACTIONS(3006), + [anon_sym_u_DQUOTE] = ACTIONS(3006), + [anon_sym_U_DQUOTE] = ACTIONS(3006), + [anon_sym_u8_DQUOTE] = ACTIONS(3006), + [anon_sym_DQUOTE] = ACTIONS(3006), + [sym_true] = ACTIONS(3004), + [sym_false] = ACTIONS(3004), + [anon_sym_NULL] = ACTIONS(3004), + [anon_sym_nullptr] = ACTIONS(3004), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3004), + [anon_sym_decltype] = ACTIONS(3004), + [anon_sym_virtual] = ACTIONS(3004), + [anon_sym_explicit] = ACTIONS(3004), + [anon_sym_typename] = ACTIONS(3004), + [anon_sym_template] = ACTIONS(3004), + [anon_sym_operator] = ACTIONS(3004), + [anon_sym_try] = ACTIONS(3004), + [anon_sym_delete] = ACTIONS(3004), + [anon_sym_throw] = ACTIONS(3004), + [anon_sym_namespace] = ACTIONS(3004), + [anon_sym_using] = ACTIONS(3004), + [anon_sym_static_assert] = ACTIONS(3004), + [anon_sym_concept] = ACTIONS(3004), + [anon_sym_co_return] = ACTIONS(3004), + [anon_sym_co_yield] = ACTIONS(3004), + [anon_sym_R_DQUOTE] = ACTIONS(3006), + [anon_sym_LR_DQUOTE] = ACTIONS(3006), + [anon_sym_uR_DQUOTE] = ACTIONS(3006), + [anon_sym_UR_DQUOTE] = ACTIONS(3006), + [anon_sym_u8R_DQUOTE] = ACTIONS(3006), + [anon_sym_co_await] = ACTIONS(3004), + [anon_sym_new] = ACTIONS(3004), + [anon_sym_requires] = ACTIONS(3004), + [sym_this] = ACTIONS(3004), + }, + [1033] = { + [ts_builtin_sym_end] = ACTIONS(3050), + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), + }, + [1034] = { + [ts_builtin_sym_end] = ACTIONS(3050), + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), + }, + [1035] = { [sym_identifier] = ACTIONS(2912), [aux_sym_preproc_include_token1] = ACTIONS(2912), [aux_sym_preproc_def_token1] = ACTIONS(2912), @@ -150915,11 +183615,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inline] = ACTIONS(2912), [anon_sym_thread_local] = ACTIONS(2912), [anon_sym_const] = ACTIONS(2912), + [anon_sym_constexpr] = ACTIONS(2912), [anon_sym_volatile] = ACTIONS(2912), [anon_sym_restrict] = ACTIONS(2912), + [anon_sym___restrict__] = ACTIONS(2912), [anon_sym__Atomic] = ACTIONS(2912), + [anon_sym__Noreturn] = ACTIONS(2912), + [anon_sym_noreturn] = ACTIONS(2912), [anon_sym_mutable] = ACTIONS(2912), - [anon_sym_constexpr] = ACTIONS(2912), [anon_sym_constinit] = ACTIONS(2912), [anon_sym_consteval] = ACTIONS(2912), [anon_sym_signed] = ACTIONS(2912), @@ -150932,6 +183635,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(2912), [anon_sym_union] = ACTIONS(2912), [anon_sym_if] = ACTIONS(2912), + [anon_sym_else] = ACTIONS(2912), [anon_sym_switch] = ACTIONS(2912), [anon_sym_case] = ACTIONS(2912), [anon_sym_default] = ACTIONS(2912), @@ -150947,6 +183651,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(2914), [anon_sym_PLUS_PLUS] = ACTIONS(2914), [anon_sym_sizeof] = ACTIONS(2912), + [anon_sym_offsetof] = ACTIONS(2912), + [anon_sym__Generic] = ACTIONS(2912), + [anon_sym_asm] = ACTIONS(2912), + [anon_sym___asm__] = ACTIONS(2912), [sym_number_literal] = ACTIONS(2914), [anon_sym_L_SQUOTE] = ACTIONS(2914), [anon_sym_u_SQUOTE] = ACTIONS(2914), @@ -150960,7 +183668,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(2914), [sym_true] = ACTIONS(2912), [sym_false] = ACTIONS(2912), - [sym_null] = ACTIONS(2912), + [anon_sym_NULL] = ACTIONS(2912), + [anon_sym_nullptr] = ACTIONS(2912), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(2912), [anon_sym_decltype] = ACTIONS(2912), @@ -150987,1913 +183696,4689 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(2912), [anon_sym_requires] = ACTIONS(2912), [sym_this] = ACTIONS(2912), - [sym_nullptr] = ACTIONS(2912), }, - [1006] = { - [sym_identifier] = ACTIONS(2698), - [aux_sym_preproc_include_token1] = ACTIONS(2698), - [aux_sym_preproc_def_token1] = ACTIONS(2698), - [aux_sym_preproc_if_token1] = ACTIONS(2698), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2698), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2698), - [sym_preproc_directive] = ACTIONS(2698), - [anon_sym_LPAREN2] = ACTIONS(2700), - [anon_sym_BANG] = ACTIONS(2700), - [anon_sym_TILDE] = ACTIONS(2700), - [anon_sym_DASH] = ACTIONS(2698), - [anon_sym_PLUS] = ACTIONS(2698), - [anon_sym_STAR] = ACTIONS(2700), - [anon_sym_AMP_AMP] = ACTIONS(2700), - [anon_sym_AMP] = ACTIONS(2698), - [anon_sym_SEMI] = ACTIONS(2700), - [anon_sym_typedef] = ACTIONS(2698), - [anon_sym_extern] = ACTIONS(2698), - [anon_sym___attribute__] = ACTIONS(2698), - [anon_sym_COLON_COLON] = ACTIONS(2700), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2700), - [anon_sym___declspec] = ACTIONS(2698), - [anon_sym___based] = ACTIONS(2698), - [anon_sym___cdecl] = ACTIONS(2698), - [anon_sym___clrcall] = ACTIONS(2698), - [anon_sym___stdcall] = ACTIONS(2698), - [anon_sym___fastcall] = ACTIONS(2698), - [anon_sym___thiscall] = ACTIONS(2698), - [anon_sym___vectorcall] = ACTIONS(2698), - [anon_sym_LBRACE] = ACTIONS(2700), - [anon_sym_RBRACE] = ACTIONS(2700), - [anon_sym_LBRACK] = ACTIONS(2698), - [anon_sym_static] = ACTIONS(2698), - [anon_sym_register] = ACTIONS(2698), - [anon_sym_inline] = ACTIONS(2698), - [anon_sym_thread_local] = ACTIONS(2698), - [anon_sym_const] = ACTIONS(2698), - [anon_sym_volatile] = ACTIONS(2698), - [anon_sym_restrict] = ACTIONS(2698), - [anon_sym__Atomic] = ACTIONS(2698), - [anon_sym_mutable] = ACTIONS(2698), - [anon_sym_constexpr] = ACTIONS(2698), - [anon_sym_constinit] = ACTIONS(2698), - [anon_sym_consteval] = ACTIONS(2698), - [anon_sym_signed] = ACTIONS(2698), - [anon_sym_unsigned] = ACTIONS(2698), - [anon_sym_long] = ACTIONS(2698), - [anon_sym_short] = ACTIONS(2698), - [sym_primitive_type] = ACTIONS(2698), - [anon_sym_enum] = ACTIONS(2698), - [anon_sym_class] = ACTIONS(2698), - [anon_sym_struct] = ACTIONS(2698), - [anon_sym_union] = ACTIONS(2698), - [anon_sym_if] = ACTIONS(2698), - [anon_sym_switch] = ACTIONS(2698), - [anon_sym_case] = ACTIONS(2698), - [anon_sym_default] = ACTIONS(2698), - [anon_sym_while] = ACTIONS(2698), - [anon_sym_do] = ACTIONS(2698), - [anon_sym_for] = ACTIONS(2698), - [anon_sym_return] = ACTIONS(2698), - [anon_sym_break] = ACTIONS(2698), - [anon_sym_continue] = ACTIONS(2698), - [anon_sym_goto] = ACTIONS(2698), - [anon_sym_not] = ACTIONS(2698), - [anon_sym_compl] = ACTIONS(2698), - [anon_sym_DASH_DASH] = ACTIONS(2700), - [anon_sym_PLUS_PLUS] = ACTIONS(2700), - [anon_sym_sizeof] = ACTIONS(2698), - [sym_number_literal] = ACTIONS(2700), - [anon_sym_L_SQUOTE] = ACTIONS(2700), - [anon_sym_u_SQUOTE] = ACTIONS(2700), - [anon_sym_U_SQUOTE] = ACTIONS(2700), - [anon_sym_u8_SQUOTE] = ACTIONS(2700), - [anon_sym_SQUOTE] = ACTIONS(2700), - [anon_sym_L_DQUOTE] = ACTIONS(2700), - [anon_sym_u_DQUOTE] = ACTIONS(2700), - [anon_sym_U_DQUOTE] = ACTIONS(2700), - [anon_sym_u8_DQUOTE] = ACTIONS(2700), - [anon_sym_DQUOTE] = ACTIONS(2700), - [sym_true] = ACTIONS(2698), - [sym_false] = ACTIONS(2698), - [sym_null] = ACTIONS(2698), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2698), - [anon_sym_decltype] = ACTIONS(2698), - [anon_sym_virtual] = ACTIONS(2698), - [anon_sym_explicit] = ACTIONS(2698), - [anon_sym_typename] = ACTIONS(2698), - [anon_sym_template] = ACTIONS(2698), - [anon_sym_operator] = ACTIONS(2698), - [anon_sym_try] = ACTIONS(2698), - [anon_sym_delete] = ACTIONS(2698), - [anon_sym_throw] = ACTIONS(2698), - [anon_sym_namespace] = ACTIONS(2698), - [anon_sym_using] = ACTIONS(2698), - [anon_sym_static_assert] = ACTIONS(2698), - [anon_sym_concept] = ACTIONS(2698), - [anon_sym_co_return] = ACTIONS(2698), - [anon_sym_co_yield] = ACTIONS(2698), - [anon_sym_R_DQUOTE] = ACTIONS(2700), - [anon_sym_LR_DQUOTE] = ACTIONS(2700), - [anon_sym_uR_DQUOTE] = ACTIONS(2700), - [anon_sym_UR_DQUOTE] = ACTIONS(2700), - [anon_sym_u8R_DQUOTE] = ACTIONS(2700), - [anon_sym_co_await] = ACTIONS(2698), - [anon_sym_new] = ACTIONS(2698), - [anon_sym_requires] = ACTIONS(2698), - [sym_this] = ACTIONS(2698), - [sym_nullptr] = ACTIONS(2698), + [1036] = { + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_RBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, - [1007] = { - [sym_identifier] = ACTIONS(2872), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2874), - [anon_sym_AMP] = ACTIONS(2872), - [anon_sym_SEMI] = ACTIONS(2874), - [anon_sym_typedef] = ACTIONS(2872), - [anon_sym_extern] = ACTIONS(2872), - [anon_sym___attribute__] = ACTIONS(2872), - [anon_sym_COLON_COLON] = ACTIONS(2874), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2874), - [anon_sym___declspec] = ACTIONS(2872), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2872), - [anon_sym_static] = ACTIONS(2872), - [anon_sym_register] = ACTIONS(2872), - [anon_sym_inline] = ACTIONS(2872), - [anon_sym_thread_local] = ACTIONS(2872), - [anon_sym_const] = ACTIONS(2872), - [anon_sym_volatile] = ACTIONS(2872), - [anon_sym_restrict] = ACTIONS(2872), - [anon_sym__Atomic] = ACTIONS(2872), - [anon_sym_mutable] = ACTIONS(2872), - [anon_sym_constexpr] = ACTIONS(2872), - [anon_sym_constinit] = ACTIONS(2872), - [anon_sym_consteval] = ACTIONS(2872), - [anon_sym_signed] = ACTIONS(2872), - [anon_sym_unsigned] = ACTIONS(2872), - [anon_sym_long] = ACTIONS(2872), - [anon_sym_short] = ACTIONS(2872), - [sym_primitive_type] = ACTIONS(2872), - [anon_sym_enum] = ACTIONS(2872), - [anon_sym_class] = 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_return] = ACTIONS(2872), - [anon_sym_break] = ACTIONS(2872), - [anon_sym_continue] = ACTIONS(2872), - [anon_sym_goto] = ACTIONS(2872), - [anon_sym_not] = ACTIONS(2872), - [anon_sym_compl] = ACTIONS(2872), - [anon_sym_DASH_DASH] = ACTIONS(2874), - [anon_sym_PLUS_PLUS] = ACTIONS(2874), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2874), - [anon_sym_u_DQUOTE] = ACTIONS(2874), - [anon_sym_U_DQUOTE] = ACTIONS(2874), - [anon_sym_u8_DQUOTE] = ACTIONS(2874), - [anon_sym_DQUOTE] = ACTIONS(2874), - [sym_true] = ACTIONS(2872), - [sym_false] = ACTIONS(2872), - [sym_null] = ACTIONS(2872), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2872), - [anon_sym_decltype] = ACTIONS(2872), - [anon_sym_virtual] = ACTIONS(2872), - [anon_sym_explicit] = ACTIONS(2872), - [anon_sym_typename] = ACTIONS(2872), - [anon_sym_template] = ACTIONS(2872), - [anon_sym_operator] = ACTIONS(2872), - [anon_sym_try] = ACTIONS(2872), - [anon_sym_delete] = ACTIONS(2872), - [anon_sym_throw] = ACTIONS(2872), - [anon_sym_namespace] = ACTIONS(2872), - [anon_sym_using] = ACTIONS(2872), - [anon_sym_static_assert] = ACTIONS(2872), - [anon_sym_concept] = ACTIONS(2872), - [anon_sym_co_return] = ACTIONS(2872), - [anon_sym_co_yield] = ACTIONS(2872), - [anon_sym_R_DQUOTE] = ACTIONS(2874), - [anon_sym_LR_DQUOTE] = ACTIONS(2874), - [anon_sym_uR_DQUOTE] = ACTIONS(2874), - [anon_sym_UR_DQUOTE] = ACTIONS(2874), - [anon_sym_u8R_DQUOTE] = ACTIONS(2874), - [anon_sym_co_await] = ACTIONS(2872), - [anon_sym_new] = ACTIONS(2872), - [anon_sym_requires] = ACTIONS(2872), - [sym_this] = ACTIONS(2872), - [sym_nullptr] = ACTIONS(2872), + [1037] = { + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token2] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, - [1008] = { - [sym_identifier] = ACTIONS(2678), - [aux_sym_preproc_include_token1] = ACTIONS(2678), - [aux_sym_preproc_def_token1] = ACTIONS(2678), - [aux_sym_preproc_if_token1] = ACTIONS(2678), - [aux_sym_preproc_if_token2] = ACTIONS(2678), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2678), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2678), - [sym_preproc_directive] = ACTIONS(2678), - [anon_sym_LPAREN2] = ACTIONS(2680), - [anon_sym_BANG] = ACTIONS(2680), - [anon_sym_TILDE] = ACTIONS(2680), - [anon_sym_DASH] = ACTIONS(2678), - [anon_sym_PLUS] = ACTIONS(2678), - [anon_sym_STAR] = ACTIONS(2680), - [anon_sym_AMP_AMP] = ACTIONS(2680), - [anon_sym_AMP] = ACTIONS(2678), - [anon_sym_SEMI] = ACTIONS(2680), - [anon_sym_typedef] = ACTIONS(2678), - [anon_sym_extern] = ACTIONS(2678), - [anon_sym___attribute__] = ACTIONS(2678), - [anon_sym_COLON_COLON] = ACTIONS(2680), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2680), - [anon_sym___declspec] = ACTIONS(2678), - [anon_sym___based] = ACTIONS(2678), - [anon_sym___cdecl] = ACTIONS(2678), - [anon_sym___clrcall] = ACTIONS(2678), - [anon_sym___stdcall] = ACTIONS(2678), - [anon_sym___fastcall] = ACTIONS(2678), - [anon_sym___thiscall] = ACTIONS(2678), - [anon_sym___vectorcall] = ACTIONS(2678), - [anon_sym_LBRACE] = ACTIONS(2680), - [anon_sym_LBRACK] = ACTIONS(2678), - [anon_sym_static] = ACTIONS(2678), - [anon_sym_register] = ACTIONS(2678), - [anon_sym_inline] = ACTIONS(2678), - [anon_sym_thread_local] = ACTIONS(2678), - [anon_sym_const] = ACTIONS(2678), - [anon_sym_volatile] = ACTIONS(2678), - [anon_sym_restrict] = ACTIONS(2678), - [anon_sym__Atomic] = ACTIONS(2678), - [anon_sym_mutable] = ACTIONS(2678), - [anon_sym_constexpr] = ACTIONS(2678), - [anon_sym_constinit] = ACTIONS(2678), - [anon_sym_consteval] = ACTIONS(2678), - [anon_sym_signed] = ACTIONS(2678), - [anon_sym_unsigned] = ACTIONS(2678), - [anon_sym_long] = ACTIONS(2678), - [anon_sym_short] = ACTIONS(2678), - [sym_primitive_type] = ACTIONS(2678), - [anon_sym_enum] = ACTIONS(2678), - [anon_sym_class] = ACTIONS(2678), - [anon_sym_struct] = ACTIONS(2678), - [anon_sym_union] = ACTIONS(2678), - [anon_sym_if] = ACTIONS(2678), - [anon_sym_switch] = ACTIONS(2678), - [anon_sym_case] = ACTIONS(2678), - [anon_sym_default] = ACTIONS(2678), - [anon_sym_while] = ACTIONS(2678), - [anon_sym_do] = ACTIONS(2678), - [anon_sym_for] = ACTIONS(2678), - [anon_sym_return] = ACTIONS(2678), - [anon_sym_break] = ACTIONS(2678), - [anon_sym_continue] = ACTIONS(2678), - [anon_sym_goto] = ACTIONS(2678), - [anon_sym_not] = ACTIONS(2678), - [anon_sym_compl] = ACTIONS(2678), - [anon_sym_DASH_DASH] = ACTIONS(2680), - [anon_sym_PLUS_PLUS] = ACTIONS(2680), - [anon_sym_sizeof] = ACTIONS(2678), - [sym_number_literal] = ACTIONS(2680), - [anon_sym_L_SQUOTE] = ACTIONS(2680), - [anon_sym_u_SQUOTE] = ACTIONS(2680), - [anon_sym_U_SQUOTE] = ACTIONS(2680), - [anon_sym_u8_SQUOTE] = ACTIONS(2680), - [anon_sym_SQUOTE] = ACTIONS(2680), - [anon_sym_L_DQUOTE] = ACTIONS(2680), - [anon_sym_u_DQUOTE] = ACTIONS(2680), - [anon_sym_U_DQUOTE] = ACTIONS(2680), - [anon_sym_u8_DQUOTE] = ACTIONS(2680), - [anon_sym_DQUOTE] = ACTIONS(2680), - [sym_true] = ACTIONS(2678), - [sym_false] = ACTIONS(2678), - [sym_null] = ACTIONS(2678), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2678), - [anon_sym_decltype] = ACTIONS(2678), - [anon_sym_virtual] = ACTIONS(2678), - [anon_sym_explicit] = ACTIONS(2678), - [anon_sym_typename] = ACTIONS(2678), - [anon_sym_template] = ACTIONS(2678), - [anon_sym_operator] = ACTIONS(2678), - [anon_sym_try] = ACTIONS(2678), - [anon_sym_delete] = ACTIONS(2678), - [anon_sym_throw] = ACTIONS(2678), - [anon_sym_namespace] = ACTIONS(2678), - [anon_sym_using] = ACTIONS(2678), - [anon_sym_static_assert] = ACTIONS(2678), - [anon_sym_concept] = ACTIONS(2678), - [anon_sym_co_return] = ACTIONS(2678), - [anon_sym_co_yield] = ACTIONS(2678), - [anon_sym_R_DQUOTE] = ACTIONS(2680), - [anon_sym_LR_DQUOTE] = ACTIONS(2680), - [anon_sym_uR_DQUOTE] = ACTIONS(2680), - [anon_sym_UR_DQUOTE] = ACTIONS(2680), - [anon_sym_u8R_DQUOTE] = ACTIONS(2680), - [anon_sym_co_await] = ACTIONS(2678), - [anon_sym_new] = ACTIONS(2678), - [anon_sym_requires] = ACTIONS(2678), - [sym_this] = ACTIONS(2678), - [sym_nullptr] = ACTIONS(2678), + [1038] = { + [sym_identifier] = ACTIONS(2924), + [aux_sym_preproc_include_token1] = ACTIONS(2924), + [aux_sym_preproc_def_token1] = ACTIONS(2924), + [aux_sym_preproc_if_token1] = ACTIONS(2924), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2924), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2924), + [sym_preproc_directive] = ACTIONS(2924), + [anon_sym_LPAREN2] = ACTIONS(2926), + [anon_sym_BANG] = ACTIONS(2926), + [anon_sym_TILDE] = ACTIONS(2926), + [anon_sym_DASH] = ACTIONS(2924), + [anon_sym_PLUS] = ACTIONS(2924), + [anon_sym_STAR] = ACTIONS(2926), + [anon_sym_AMP_AMP] = ACTIONS(2926), + [anon_sym_AMP] = ACTIONS(2924), + [anon_sym_SEMI] = ACTIONS(2926), + [anon_sym_typedef] = ACTIONS(2924), + [anon_sym_extern] = ACTIONS(2924), + [anon_sym___attribute__] = ACTIONS(2924), + [anon_sym_COLON_COLON] = ACTIONS(2926), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2926), + [anon_sym___declspec] = ACTIONS(2924), + [anon_sym___based] = ACTIONS(2924), + [anon_sym___cdecl] = ACTIONS(2924), + [anon_sym___clrcall] = ACTIONS(2924), + [anon_sym___stdcall] = ACTIONS(2924), + [anon_sym___fastcall] = ACTIONS(2924), + [anon_sym___thiscall] = ACTIONS(2924), + [anon_sym___vectorcall] = ACTIONS(2924), + [anon_sym_LBRACE] = ACTIONS(2926), + [anon_sym_RBRACE] = ACTIONS(2926), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_static] = ACTIONS(2924), + [anon_sym_register] = ACTIONS(2924), + [anon_sym_inline] = ACTIONS(2924), + [anon_sym_thread_local] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(2924), + [anon_sym_constexpr] = ACTIONS(2924), + [anon_sym_volatile] = ACTIONS(2924), + [anon_sym_restrict] = ACTIONS(2924), + [anon_sym___restrict__] = ACTIONS(2924), + [anon_sym__Atomic] = ACTIONS(2924), + [anon_sym__Noreturn] = ACTIONS(2924), + [anon_sym_noreturn] = ACTIONS(2924), + [anon_sym_mutable] = ACTIONS(2924), + [anon_sym_constinit] = ACTIONS(2924), + [anon_sym_consteval] = ACTIONS(2924), + [anon_sym_signed] = ACTIONS(2924), + [anon_sym_unsigned] = ACTIONS(2924), + [anon_sym_long] = ACTIONS(2924), + [anon_sym_short] = ACTIONS(2924), + [sym_primitive_type] = ACTIONS(2924), + [anon_sym_enum] = ACTIONS(2924), + [anon_sym_class] = ACTIONS(2924), + [anon_sym_struct] = ACTIONS(2924), + [anon_sym_union] = ACTIONS(2924), + [anon_sym_if] = ACTIONS(2924), + [anon_sym_else] = ACTIONS(2924), + [anon_sym_switch] = ACTIONS(2924), + [anon_sym_case] = ACTIONS(2924), + [anon_sym_default] = ACTIONS(2924), + [anon_sym_while] = ACTIONS(2924), + [anon_sym_do] = ACTIONS(2924), + [anon_sym_for] = ACTIONS(2924), + [anon_sym_return] = ACTIONS(2924), + [anon_sym_break] = ACTIONS(2924), + [anon_sym_continue] = ACTIONS(2924), + [anon_sym_goto] = ACTIONS(2924), + [anon_sym_not] = ACTIONS(2924), + [anon_sym_compl] = ACTIONS(2924), + [anon_sym_DASH_DASH] = ACTIONS(2926), + [anon_sym_PLUS_PLUS] = ACTIONS(2926), + [anon_sym_sizeof] = ACTIONS(2924), + [anon_sym_offsetof] = ACTIONS(2924), + [anon_sym__Generic] = ACTIONS(2924), + [anon_sym_asm] = ACTIONS(2924), + [anon_sym___asm__] = ACTIONS(2924), + [sym_number_literal] = ACTIONS(2926), + [anon_sym_L_SQUOTE] = ACTIONS(2926), + [anon_sym_u_SQUOTE] = ACTIONS(2926), + [anon_sym_U_SQUOTE] = ACTIONS(2926), + [anon_sym_u8_SQUOTE] = ACTIONS(2926), + [anon_sym_SQUOTE] = ACTIONS(2926), + [anon_sym_L_DQUOTE] = ACTIONS(2926), + [anon_sym_u_DQUOTE] = ACTIONS(2926), + [anon_sym_U_DQUOTE] = ACTIONS(2926), + [anon_sym_u8_DQUOTE] = ACTIONS(2926), + [anon_sym_DQUOTE] = ACTIONS(2926), + [sym_true] = ACTIONS(2924), + [sym_false] = ACTIONS(2924), + [anon_sym_NULL] = ACTIONS(2924), + [anon_sym_nullptr] = ACTIONS(2924), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2924), + [anon_sym_decltype] = ACTIONS(2924), + [anon_sym_virtual] = ACTIONS(2924), + [anon_sym_explicit] = ACTIONS(2924), + [anon_sym_typename] = ACTIONS(2924), + [anon_sym_template] = ACTIONS(2924), + [anon_sym_operator] = ACTIONS(2924), + [anon_sym_try] = ACTIONS(2924), + [anon_sym_delete] = ACTIONS(2924), + [anon_sym_throw] = ACTIONS(2924), + [anon_sym_namespace] = ACTIONS(2924), + [anon_sym_using] = ACTIONS(2924), + [anon_sym_static_assert] = ACTIONS(2924), + [anon_sym_concept] = ACTIONS(2924), + [anon_sym_co_return] = ACTIONS(2924), + [anon_sym_co_yield] = ACTIONS(2924), + [anon_sym_R_DQUOTE] = ACTIONS(2926), + [anon_sym_LR_DQUOTE] = ACTIONS(2926), + [anon_sym_uR_DQUOTE] = ACTIONS(2926), + [anon_sym_UR_DQUOTE] = ACTIONS(2926), + [anon_sym_u8R_DQUOTE] = ACTIONS(2926), + [anon_sym_co_await] = ACTIONS(2924), + [anon_sym_new] = ACTIONS(2924), + [anon_sym_requires] = ACTIONS(2924), + [sym_this] = ACTIONS(2924), }, - [1009] = { - [sym_identifier] = ACTIONS(2674), - [aux_sym_preproc_include_token1] = ACTIONS(2674), - [aux_sym_preproc_def_token1] = ACTIONS(2674), - [aux_sym_preproc_if_token1] = ACTIONS(2674), - [aux_sym_preproc_if_token2] = ACTIONS(2674), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2674), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2674), - [sym_preproc_directive] = ACTIONS(2674), - [anon_sym_LPAREN2] = ACTIONS(2676), - [anon_sym_BANG] = ACTIONS(2676), - [anon_sym_TILDE] = ACTIONS(2676), - [anon_sym_DASH] = ACTIONS(2674), - [anon_sym_PLUS] = ACTIONS(2674), - [anon_sym_STAR] = ACTIONS(2676), - [anon_sym_AMP_AMP] = ACTIONS(2676), - [anon_sym_AMP] = ACTIONS(2674), - [anon_sym_SEMI] = ACTIONS(2676), - [anon_sym_typedef] = ACTIONS(2674), - [anon_sym_extern] = ACTIONS(2674), - [anon_sym___attribute__] = ACTIONS(2674), - [anon_sym_COLON_COLON] = ACTIONS(2676), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2676), - [anon_sym___declspec] = ACTIONS(2674), - [anon_sym___based] = ACTIONS(2674), - [anon_sym___cdecl] = ACTIONS(2674), - [anon_sym___clrcall] = ACTIONS(2674), - [anon_sym___stdcall] = ACTIONS(2674), - [anon_sym___fastcall] = ACTIONS(2674), - [anon_sym___thiscall] = ACTIONS(2674), - [anon_sym___vectorcall] = ACTIONS(2674), - [anon_sym_LBRACE] = ACTIONS(2676), - [anon_sym_LBRACK] = ACTIONS(2674), - [anon_sym_static] = ACTIONS(2674), - [anon_sym_register] = ACTIONS(2674), - [anon_sym_inline] = ACTIONS(2674), - [anon_sym_thread_local] = ACTIONS(2674), - [anon_sym_const] = ACTIONS(2674), - [anon_sym_volatile] = ACTIONS(2674), - [anon_sym_restrict] = ACTIONS(2674), - [anon_sym__Atomic] = ACTIONS(2674), - [anon_sym_mutable] = ACTIONS(2674), - [anon_sym_constexpr] = ACTIONS(2674), - [anon_sym_constinit] = ACTIONS(2674), - [anon_sym_consteval] = ACTIONS(2674), - [anon_sym_signed] = ACTIONS(2674), - [anon_sym_unsigned] = ACTIONS(2674), - [anon_sym_long] = ACTIONS(2674), - [anon_sym_short] = ACTIONS(2674), - [sym_primitive_type] = ACTIONS(2674), - [anon_sym_enum] = ACTIONS(2674), - [anon_sym_class] = ACTIONS(2674), - [anon_sym_struct] = ACTIONS(2674), - [anon_sym_union] = ACTIONS(2674), - [anon_sym_if] = ACTIONS(2674), - [anon_sym_switch] = ACTIONS(2674), - [anon_sym_case] = ACTIONS(2674), - [anon_sym_default] = ACTIONS(2674), - [anon_sym_while] = ACTIONS(2674), - [anon_sym_do] = ACTIONS(2674), - [anon_sym_for] = ACTIONS(2674), - [anon_sym_return] = ACTIONS(2674), - [anon_sym_break] = ACTIONS(2674), - [anon_sym_continue] = ACTIONS(2674), - [anon_sym_goto] = ACTIONS(2674), - [anon_sym_not] = ACTIONS(2674), - [anon_sym_compl] = ACTIONS(2674), - [anon_sym_DASH_DASH] = ACTIONS(2676), - [anon_sym_PLUS_PLUS] = ACTIONS(2676), - [anon_sym_sizeof] = ACTIONS(2674), - [sym_number_literal] = ACTIONS(2676), - [anon_sym_L_SQUOTE] = ACTIONS(2676), - [anon_sym_u_SQUOTE] = ACTIONS(2676), - [anon_sym_U_SQUOTE] = ACTIONS(2676), - [anon_sym_u8_SQUOTE] = ACTIONS(2676), - [anon_sym_SQUOTE] = ACTIONS(2676), - [anon_sym_L_DQUOTE] = ACTIONS(2676), - [anon_sym_u_DQUOTE] = ACTIONS(2676), - [anon_sym_U_DQUOTE] = ACTIONS(2676), - [anon_sym_u8_DQUOTE] = ACTIONS(2676), - [anon_sym_DQUOTE] = ACTIONS(2676), - [sym_true] = ACTIONS(2674), - [sym_false] = ACTIONS(2674), - [sym_null] = ACTIONS(2674), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2674), - [anon_sym_decltype] = ACTIONS(2674), - [anon_sym_virtual] = ACTIONS(2674), - [anon_sym_explicit] = ACTIONS(2674), - [anon_sym_typename] = ACTIONS(2674), - [anon_sym_template] = ACTIONS(2674), - [anon_sym_operator] = ACTIONS(2674), - [anon_sym_try] = ACTIONS(2674), - [anon_sym_delete] = ACTIONS(2674), - [anon_sym_throw] = ACTIONS(2674), - [anon_sym_namespace] = ACTIONS(2674), - [anon_sym_using] = ACTIONS(2674), - [anon_sym_static_assert] = ACTIONS(2674), - [anon_sym_concept] = ACTIONS(2674), - [anon_sym_co_return] = ACTIONS(2674), - [anon_sym_co_yield] = ACTIONS(2674), - [anon_sym_R_DQUOTE] = ACTIONS(2676), - [anon_sym_LR_DQUOTE] = ACTIONS(2676), - [anon_sym_uR_DQUOTE] = ACTIONS(2676), - [anon_sym_UR_DQUOTE] = ACTIONS(2676), - [anon_sym_u8R_DQUOTE] = ACTIONS(2676), - [anon_sym_co_await] = ACTIONS(2674), - [anon_sym_new] = ACTIONS(2674), - [anon_sym_requires] = ACTIONS(2674), - [sym_this] = ACTIONS(2674), - [sym_nullptr] = ACTIONS(2674), + [1039] = { + [sym_identifier] = ACTIONS(2948), + [aux_sym_preproc_include_token1] = ACTIONS(2948), + [aux_sym_preproc_def_token1] = ACTIONS(2948), + [aux_sym_preproc_if_token1] = ACTIONS(2948), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2948), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2948), + [sym_preproc_directive] = ACTIONS(2948), + [anon_sym_LPAREN2] = ACTIONS(2950), + [anon_sym_BANG] = ACTIONS(2950), + [anon_sym_TILDE] = ACTIONS(2950), + [anon_sym_DASH] = ACTIONS(2948), + [anon_sym_PLUS] = ACTIONS(2948), + [anon_sym_STAR] = ACTIONS(2950), + [anon_sym_AMP_AMP] = ACTIONS(2950), + [anon_sym_AMP] = ACTIONS(2948), + [anon_sym_SEMI] = ACTIONS(2950), + [anon_sym_typedef] = ACTIONS(2948), + [anon_sym_extern] = ACTIONS(2948), + [anon_sym___attribute__] = ACTIONS(2948), + [anon_sym_COLON_COLON] = ACTIONS(2950), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2950), + [anon_sym___declspec] = ACTIONS(2948), + [anon_sym___based] = ACTIONS(2948), + [anon_sym___cdecl] = ACTIONS(2948), + [anon_sym___clrcall] = ACTIONS(2948), + [anon_sym___stdcall] = ACTIONS(2948), + [anon_sym___fastcall] = ACTIONS(2948), + [anon_sym___thiscall] = ACTIONS(2948), + [anon_sym___vectorcall] = ACTIONS(2948), + [anon_sym_LBRACE] = ACTIONS(2950), + [anon_sym_RBRACE] = ACTIONS(2950), + [anon_sym_LBRACK] = ACTIONS(2948), + [anon_sym_static] = ACTIONS(2948), + [anon_sym_register] = ACTIONS(2948), + [anon_sym_inline] = ACTIONS(2948), + [anon_sym_thread_local] = ACTIONS(2948), + [anon_sym_const] = ACTIONS(2948), + [anon_sym_constexpr] = ACTIONS(2948), + [anon_sym_volatile] = ACTIONS(2948), + [anon_sym_restrict] = ACTIONS(2948), + [anon_sym___restrict__] = ACTIONS(2948), + [anon_sym__Atomic] = ACTIONS(2948), + [anon_sym__Noreturn] = ACTIONS(2948), + [anon_sym_noreturn] = ACTIONS(2948), + [anon_sym_mutable] = ACTIONS(2948), + [anon_sym_constinit] = ACTIONS(2948), + [anon_sym_consteval] = ACTIONS(2948), + [anon_sym_signed] = ACTIONS(2948), + [anon_sym_unsigned] = ACTIONS(2948), + [anon_sym_long] = ACTIONS(2948), + [anon_sym_short] = ACTIONS(2948), + [sym_primitive_type] = ACTIONS(2948), + [anon_sym_enum] = ACTIONS(2948), + [anon_sym_class] = ACTIONS(2948), + [anon_sym_struct] = ACTIONS(2948), + [anon_sym_union] = ACTIONS(2948), + [anon_sym_if] = ACTIONS(2948), + [anon_sym_else] = ACTIONS(2948), + [anon_sym_switch] = ACTIONS(2948), + [anon_sym_case] = ACTIONS(2948), + [anon_sym_default] = ACTIONS(2948), + [anon_sym_while] = ACTIONS(2948), + [anon_sym_do] = ACTIONS(2948), + [anon_sym_for] = ACTIONS(2948), + [anon_sym_return] = ACTIONS(2948), + [anon_sym_break] = ACTIONS(2948), + [anon_sym_continue] = ACTIONS(2948), + [anon_sym_goto] = ACTIONS(2948), + [anon_sym_not] = ACTIONS(2948), + [anon_sym_compl] = ACTIONS(2948), + [anon_sym_DASH_DASH] = ACTIONS(2950), + [anon_sym_PLUS_PLUS] = ACTIONS(2950), + [anon_sym_sizeof] = ACTIONS(2948), + [anon_sym_offsetof] = ACTIONS(2948), + [anon_sym__Generic] = ACTIONS(2948), + [anon_sym_asm] = ACTIONS(2948), + [anon_sym___asm__] = ACTIONS(2948), + [sym_number_literal] = ACTIONS(2950), + [anon_sym_L_SQUOTE] = ACTIONS(2950), + [anon_sym_u_SQUOTE] = ACTIONS(2950), + [anon_sym_U_SQUOTE] = ACTIONS(2950), + [anon_sym_u8_SQUOTE] = ACTIONS(2950), + [anon_sym_SQUOTE] = ACTIONS(2950), + [anon_sym_L_DQUOTE] = ACTIONS(2950), + [anon_sym_u_DQUOTE] = ACTIONS(2950), + [anon_sym_U_DQUOTE] = ACTIONS(2950), + [anon_sym_u8_DQUOTE] = ACTIONS(2950), + [anon_sym_DQUOTE] = ACTIONS(2950), + [sym_true] = ACTIONS(2948), + [sym_false] = ACTIONS(2948), + [anon_sym_NULL] = ACTIONS(2948), + [anon_sym_nullptr] = ACTIONS(2948), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2948), + [anon_sym_decltype] = ACTIONS(2948), + [anon_sym_virtual] = ACTIONS(2948), + [anon_sym_explicit] = ACTIONS(2948), + [anon_sym_typename] = ACTIONS(2948), + [anon_sym_template] = ACTIONS(2948), + [anon_sym_operator] = ACTIONS(2948), + [anon_sym_try] = ACTIONS(2948), + [anon_sym_delete] = ACTIONS(2948), + [anon_sym_throw] = ACTIONS(2948), + [anon_sym_namespace] = ACTIONS(2948), + [anon_sym_using] = ACTIONS(2948), + [anon_sym_static_assert] = ACTIONS(2948), + [anon_sym_concept] = ACTIONS(2948), + [anon_sym_co_return] = ACTIONS(2948), + [anon_sym_co_yield] = ACTIONS(2948), + [anon_sym_R_DQUOTE] = ACTIONS(2950), + [anon_sym_LR_DQUOTE] = ACTIONS(2950), + [anon_sym_uR_DQUOTE] = ACTIONS(2950), + [anon_sym_UR_DQUOTE] = ACTIONS(2950), + [anon_sym_u8R_DQUOTE] = ACTIONS(2950), + [anon_sym_co_await] = ACTIONS(2948), + [anon_sym_new] = ACTIONS(2948), + [anon_sym_requires] = ACTIONS(2948), + [sym_this] = ACTIONS(2948), }, - [1010] = { - [ts_builtin_sym_end] = ACTIONS(2664), - [sym_identifier] = ACTIONS(2662), - [aux_sym_preproc_include_token1] = ACTIONS(2662), - [aux_sym_preproc_def_token1] = ACTIONS(2662), - [aux_sym_preproc_if_token1] = ACTIONS(2662), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2662), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2662), - [sym_preproc_directive] = ACTIONS(2662), - [anon_sym_LPAREN2] = ACTIONS(2664), - [anon_sym_BANG] = ACTIONS(2664), - [anon_sym_TILDE] = ACTIONS(2664), - [anon_sym_DASH] = ACTIONS(2662), - [anon_sym_PLUS] = ACTIONS(2662), - [anon_sym_STAR] = ACTIONS(2664), - [anon_sym_AMP_AMP] = ACTIONS(2664), - [anon_sym_AMP] = ACTIONS(2662), - [anon_sym_SEMI] = ACTIONS(2664), - [anon_sym_typedef] = ACTIONS(2662), - [anon_sym_extern] = ACTIONS(2662), - [anon_sym___attribute__] = ACTIONS(2662), - [anon_sym_COLON_COLON] = ACTIONS(2664), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2664), - [anon_sym___declspec] = ACTIONS(2662), - [anon_sym___based] = ACTIONS(2662), - [anon_sym___cdecl] = ACTIONS(2662), - [anon_sym___clrcall] = ACTIONS(2662), - [anon_sym___stdcall] = ACTIONS(2662), - [anon_sym___fastcall] = ACTIONS(2662), - [anon_sym___thiscall] = ACTIONS(2662), - [anon_sym___vectorcall] = ACTIONS(2662), - [anon_sym_LBRACE] = ACTIONS(2664), - [anon_sym_LBRACK] = ACTIONS(2662), - [anon_sym_static] = ACTIONS(2662), - [anon_sym_register] = ACTIONS(2662), - [anon_sym_inline] = ACTIONS(2662), - [anon_sym_thread_local] = ACTIONS(2662), - [anon_sym_const] = ACTIONS(2662), - [anon_sym_volatile] = ACTIONS(2662), - [anon_sym_restrict] = ACTIONS(2662), - [anon_sym__Atomic] = ACTIONS(2662), - [anon_sym_mutable] = ACTIONS(2662), - [anon_sym_constexpr] = ACTIONS(2662), - [anon_sym_constinit] = ACTIONS(2662), - [anon_sym_consteval] = ACTIONS(2662), - [anon_sym_signed] = ACTIONS(2662), - [anon_sym_unsigned] = ACTIONS(2662), - [anon_sym_long] = ACTIONS(2662), - [anon_sym_short] = ACTIONS(2662), - [sym_primitive_type] = ACTIONS(2662), - [anon_sym_enum] = ACTIONS(2662), - [anon_sym_class] = ACTIONS(2662), - [anon_sym_struct] = ACTIONS(2662), - [anon_sym_union] = ACTIONS(2662), - [anon_sym_if] = ACTIONS(2662), - [anon_sym_switch] = ACTIONS(2662), - [anon_sym_case] = ACTIONS(2662), - [anon_sym_default] = ACTIONS(2662), - [anon_sym_while] = ACTIONS(2662), - [anon_sym_do] = ACTIONS(2662), - [anon_sym_for] = ACTIONS(2662), - [anon_sym_return] = ACTIONS(2662), - [anon_sym_break] = ACTIONS(2662), - [anon_sym_continue] = ACTIONS(2662), - [anon_sym_goto] = ACTIONS(2662), - [anon_sym_not] = ACTIONS(2662), - [anon_sym_compl] = ACTIONS(2662), - [anon_sym_DASH_DASH] = ACTIONS(2664), - [anon_sym_PLUS_PLUS] = ACTIONS(2664), - [anon_sym_sizeof] = ACTIONS(2662), - [sym_number_literal] = ACTIONS(2664), - [anon_sym_L_SQUOTE] = ACTIONS(2664), - [anon_sym_u_SQUOTE] = ACTIONS(2664), - [anon_sym_U_SQUOTE] = ACTIONS(2664), - [anon_sym_u8_SQUOTE] = ACTIONS(2664), - [anon_sym_SQUOTE] = ACTIONS(2664), - [anon_sym_L_DQUOTE] = ACTIONS(2664), - [anon_sym_u_DQUOTE] = ACTIONS(2664), - [anon_sym_U_DQUOTE] = ACTIONS(2664), - [anon_sym_u8_DQUOTE] = ACTIONS(2664), - [anon_sym_DQUOTE] = ACTIONS(2664), - [sym_true] = ACTIONS(2662), - [sym_false] = ACTIONS(2662), - [sym_null] = ACTIONS(2662), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2662), - [anon_sym_decltype] = ACTIONS(2662), - [anon_sym_virtual] = ACTIONS(2662), - [anon_sym_explicit] = ACTIONS(2662), - [anon_sym_typename] = ACTIONS(2662), - [anon_sym_template] = ACTIONS(2662), - [anon_sym_operator] = ACTIONS(2662), - [anon_sym_try] = ACTIONS(2662), - [anon_sym_delete] = ACTIONS(2662), - [anon_sym_throw] = ACTIONS(2662), - [anon_sym_namespace] = ACTIONS(2662), - [anon_sym_using] = ACTIONS(2662), - [anon_sym_static_assert] = ACTIONS(2662), - [anon_sym_concept] = ACTIONS(2662), - [anon_sym_co_return] = ACTIONS(2662), - [anon_sym_co_yield] = ACTIONS(2662), - [anon_sym_R_DQUOTE] = ACTIONS(2664), - [anon_sym_LR_DQUOTE] = ACTIONS(2664), - [anon_sym_uR_DQUOTE] = ACTIONS(2664), - [anon_sym_UR_DQUOTE] = ACTIONS(2664), - [anon_sym_u8R_DQUOTE] = ACTIONS(2664), - [anon_sym_co_await] = ACTIONS(2662), - [anon_sym_new] = ACTIONS(2662), - [anon_sym_requires] = ACTIONS(2662), - [sym_this] = ACTIONS(2662), - [sym_nullptr] = ACTIONS(2662), + [1040] = { + [sym_identifier] = ACTIONS(2966), + [aux_sym_preproc_include_token1] = ACTIONS(2966), + [aux_sym_preproc_def_token1] = ACTIONS(2966), + [aux_sym_preproc_if_token1] = ACTIONS(2966), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2966), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2966), + [sym_preproc_directive] = 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_AMP_AMP] = ACTIONS(2968), + [anon_sym_AMP] = ACTIONS(2966), + [anon_sym_SEMI] = ACTIONS(2968), + [anon_sym_typedef] = ACTIONS(2966), + [anon_sym_extern] = ACTIONS(2966), + [anon_sym___attribute__] = ACTIONS(2966), + [anon_sym_COLON_COLON] = ACTIONS(2968), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2968), + [anon_sym___declspec] = ACTIONS(2966), + [anon_sym___based] = ACTIONS(2966), + [anon_sym___cdecl] = ACTIONS(2966), + [anon_sym___clrcall] = ACTIONS(2966), + [anon_sym___stdcall] = ACTIONS(2966), + [anon_sym___fastcall] = ACTIONS(2966), + [anon_sym___thiscall] = ACTIONS(2966), + [anon_sym___vectorcall] = ACTIONS(2966), + [anon_sym_LBRACE] = ACTIONS(2968), + [anon_sym_RBRACE] = ACTIONS(2968), + [anon_sym_LBRACK] = ACTIONS(2966), + [anon_sym_static] = ACTIONS(2966), + [anon_sym_register] = ACTIONS(2966), + [anon_sym_inline] = ACTIONS(2966), + [anon_sym_thread_local] = 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_noreturn] = ACTIONS(2966), + [anon_sym_mutable] = ACTIONS(2966), + [anon_sym_constinit] = ACTIONS(2966), + [anon_sym_consteval] = ACTIONS(2966), + [anon_sym_signed] = ACTIONS(2966), + [anon_sym_unsigned] = ACTIONS(2966), + [anon_sym_long] = ACTIONS(2966), + [anon_sym_short] = ACTIONS(2966), + [sym_primitive_type] = ACTIONS(2966), + [anon_sym_enum] = ACTIONS(2966), + [anon_sym_class] = ACTIONS(2966), + [anon_sym_struct] = ACTIONS(2966), + [anon_sym_union] = ACTIONS(2966), + [anon_sym_if] = ACTIONS(2966), + [anon_sym_else] = 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_return] = ACTIONS(2966), + [anon_sym_break] = ACTIONS(2966), + [anon_sym_continue] = ACTIONS(2966), + [anon_sym_goto] = ACTIONS(2966), + [anon_sym_not] = ACTIONS(2966), + [anon_sym_compl] = ACTIONS(2966), + [anon_sym_DASH_DASH] = ACTIONS(2968), + [anon_sym_PLUS_PLUS] = ACTIONS(2968), + [anon_sym_sizeof] = ACTIONS(2966), + [anon_sym_offsetof] = ACTIONS(2966), + [anon_sym__Generic] = 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_L_DQUOTE] = ACTIONS(2968), + [anon_sym_u_DQUOTE] = ACTIONS(2968), + [anon_sym_U_DQUOTE] = ACTIONS(2968), + [anon_sym_u8_DQUOTE] = ACTIONS(2968), + [anon_sym_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), + [sym_auto] = ACTIONS(2966), + [anon_sym_decltype] = ACTIONS(2966), + [anon_sym_virtual] = ACTIONS(2966), + [anon_sym_explicit] = ACTIONS(2966), + [anon_sym_typename] = ACTIONS(2966), + [anon_sym_template] = ACTIONS(2966), + [anon_sym_operator] = ACTIONS(2966), + [anon_sym_try] = ACTIONS(2966), + [anon_sym_delete] = ACTIONS(2966), + [anon_sym_throw] = ACTIONS(2966), + [anon_sym_namespace] = ACTIONS(2966), + [anon_sym_using] = ACTIONS(2966), + [anon_sym_static_assert] = ACTIONS(2966), + [anon_sym_concept] = ACTIONS(2966), + [anon_sym_co_return] = ACTIONS(2966), + [anon_sym_co_yield] = ACTIONS(2966), + [anon_sym_R_DQUOTE] = ACTIONS(2968), + [anon_sym_LR_DQUOTE] = ACTIONS(2968), + [anon_sym_uR_DQUOTE] = ACTIONS(2968), + [anon_sym_UR_DQUOTE] = ACTIONS(2968), + [anon_sym_u8R_DQUOTE] = ACTIONS(2968), + [anon_sym_co_await] = ACTIONS(2966), + [anon_sym_new] = ACTIONS(2966), + [anon_sym_requires] = ACTIONS(2966), + [sym_this] = ACTIONS(2966), }, - [1011] = { - [sym_identifier] = ACTIONS(2868), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2870), - [anon_sym_AMP] = ACTIONS(2868), - [anon_sym_SEMI] = ACTIONS(2870), - [anon_sym_typedef] = ACTIONS(2868), - [anon_sym_extern] = ACTIONS(2868), - [anon_sym___attribute__] = ACTIONS(2868), - [anon_sym_COLON_COLON] = ACTIONS(2870), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2870), - [anon_sym___declspec] = ACTIONS(2868), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2868), - [anon_sym_static] = ACTIONS(2868), - [anon_sym_register] = ACTIONS(2868), - [anon_sym_inline] = ACTIONS(2868), - [anon_sym_thread_local] = ACTIONS(2868), - [anon_sym_const] = ACTIONS(2868), - [anon_sym_volatile] = ACTIONS(2868), - [anon_sym_restrict] = ACTIONS(2868), - [anon_sym__Atomic] = ACTIONS(2868), - [anon_sym_mutable] = ACTIONS(2868), - [anon_sym_constexpr] = ACTIONS(2868), - [anon_sym_constinit] = ACTIONS(2868), - [anon_sym_consteval] = ACTIONS(2868), - [anon_sym_signed] = ACTIONS(2868), - [anon_sym_unsigned] = ACTIONS(2868), - [anon_sym_long] = ACTIONS(2868), - [anon_sym_short] = ACTIONS(2868), - [sym_primitive_type] = ACTIONS(2868), - [anon_sym_enum] = ACTIONS(2868), - [anon_sym_class] = 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_return] = ACTIONS(2868), - [anon_sym_break] = ACTIONS(2868), - [anon_sym_continue] = ACTIONS(2868), - [anon_sym_goto] = ACTIONS(2868), - [anon_sym_not] = ACTIONS(2868), - [anon_sym_compl] = ACTIONS(2868), - [anon_sym_DASH_DASH] = ACTIONS(2870), - [anon_sym_PLUS_PLUS] = ACTIONS(2870), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2870), - [anon_sym_u_DQUOTE] = ACTIONS(2870), - [anon_sym_U_DQUOTE] = ACTIONS(2870), - [anon_sym_u8_DQUOTE] = ACTIONS(2870), - [anon_sym_DQUOTE] = ACTIONS(2870), - [sym_true] = ACTIONS(2868), - [sym_false] = ACTIONS(2868), - [sym_null] = ACTIONS(2868), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2868), - [anon_sym_decltype] = ACTIONS(2868), - [anon_sym_virtual] = ACTIONS(2868), - [anon_sym_explicit] = ACTIONS(2868), - [anon_sym_typename] = ACTIONS(2868), - [anon_sym_template] = ACTIONS(2868), - [anon_sym_operator] = ACTIONS(2868), - [anon_sym_try] = ACTIONS(2868), - [anon_sym_delete] = ACTIONS(2868), - [anon_sym_throw] = ACTIONS(2868), - [anon_sym_namespace] = ACTIONS(2868), - [anon_sym_using] = ACTIONS(2868), - [anon_sym_static_assert] = ACTIONS(2868), - [anon_sym_concept] = ACTIONS(2868), - [anon_sym_co_return] = ACTIONS(2868), - [anon_sym_co_yield] = ACTIONS(2868), - [anon_sym_R_DQUOTE] = ACTIONS(2870), - [anon_sym_LR_DQUOTE] = ACTIONS(2870), - [anon_sym_uR_DQUOTE] = ACTIONS(2870), - [anon_sym_UR_DQUOTE] = ACTIONS(2870), - [anon_sym_u8R_DQUOTE] = ACTIONS(2870), - [anon_sym_co_await] = ACTIONS(2868), - [anon_sym_new] = ACTIONS(2868), - [anon_sym_requires] = ACTIONS(2868), - [sym_this] = ACTIONS(2868), - [sym_nullptr] = ACTIONS(2868), + [1041] = { + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_RBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, - [1012] = { - [ts_builtin_sym_end] = ACTIONS(2776), - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [sym_null] = ACTIONS(2774), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), - [sym_nullptr] = ACTIONS(2774), + [1042] = { + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_RBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, - [1013] = { - [ts_builtin_sym_end] = ACTIONS(2772), - [sym_identifier] = ACTIONS(2770), - [aux_sym_preproc_include_token1] = ACTIONS(2770), - [aux_sym_preproc_def_token1] = ACTIONS(2770), - [aux_sym_preproc_if_token1] = ACTIONS(2770), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2770), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2770), - [sym_preproc_directive] = ACTIONS(2770), - [anon_sym_LPAREN2] = ACTIONS(2772), - [anon_sym_BANG] = ACTIONS(2772), - [anon_sym_TILDE] = ACTIONS(2772), - [anon_sym_DASH] = ACTIONS(2770), - [anon_sym_PLUS] = ACTIONS(2770), - [anon_sym_STAR] = ACTIONS(2772), - [anon_sym_AMP_AMP] = ACTIONS(2772), - [anon_sym_AMP] = ACTIONS(2770), - [anon_sym_SEMI] = ACTIONS(2772), - [anon_sym_typedef] = ACTIONS(2770), - [anon_sym_extern] = ACTIONS(2770), - [anon_sym___attribute__] = ACTIONS(2770), - [anon_sym_COLON_COLON] = ACTIONS(2772), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2772), - [anon_sym___declspec] = ACTIONS(2770), - [anon_sym___based] = ACTIONS(2770), - [anon_sym___cdecl] = ACTIONS(2770), - [anon_sym___clrcall] = ACTIONS(2770), - [anon_sym___stdcall] = ACTIONS(2770), - [anon_sym___fastcall] = ACTIONS(2770), - [anon_sym___thiscall] = ACTIONS(2770), - [anon_sym___vectorcall] = ACTIONS(2770), - [anon_sym_LBRACE] = ACTIONS(2772), - [anon_sym_LBRACK] = ACTIONS(2770), - [anon_sym_static] = ACTIONS(2770), - [anon_sym_register] = ACTIONS(2770), - [anon_sym_inline] = ACTIONS(2770), - [anon_sym_thread_local] = ACTIONS(2770), - [anon_sym_const] = ACTIONS(2770), - [anon_sym_volatile] = ACTIONS(2770), - [anon_sym_restrict] = ACTIONS(2770), - [anon_sym__Atomic] = ACTIONS(2770), - [anon_sym_mutable] = ACTIONS(2770), - [anon_sym_constexpr] = ACTIONS(2770), - [anon_sym_constinit] = ACTIONS(2770), - [anon_sym_consteval] = ACTIONS(2770), - [anon_sym_signed] = ACTIONS(2770), - [anon_sym_unsigned] = ACTIONS(2770), - [anon_sym_long] = ACTIONS(2770), - [anon_sym_short] = ACTIONS(2770), - [sym_primitive_type] = ACTIONS(2770), - [anon_sym_enum] = ACTIONS(2770), - [anon_sym_class] = ACTIONS(2770), - [anon_sym_struct] = ACTIONS(2770), - [anon_sym_union] = ACTIONS(2770), - [anon_sym_if] = ACTIONS(2770), - [anon_sym_switch] = ACTIONS(2770), - [anon_sym_case] = ACTIONS(2770), - [anon_sym_default] = ACTIONS(2770), - [anon_sym_while] = ACTIONS(2770), - [anon_sym_do] = ACTIONS(2770), - [anon_sym_for] = ACTIONS(2770), - [anon_sym_return] = ACTIONS(2770), - [anon_sym_break] = ACTIONS(2770), - [anon_sym_continue] = ACTIONS(2770), - [anon_sym_goto] = ACTIONS(2770), - [anon_sym_not] = ACTIONS(2770), - [anon_sym_compl] = ACTIONS(2770), - [anon_sym_DASH_DASH] = ACTIONS(2772), - [anon_sym_PLUS_PLUS] = ACTIONS(2772), - [anon_sym_sizeof] = ACTIONS(2770), - [sym_number_literal] = ACTIONS(2772), - [anon_sym_L_SQUOTE] = ACTIONS(2772), - [anon_sym_u_SQUOTE] = ACTIONS(2772), - [anon_sym_U_SQUOTE] = ACTIONS(2772), - [anon_sym_u8_SQUOTE] = ACTIONS(2772), - [anon_sym_SQUOTE] = ACTIONS(2772), - [anon_sym_L_DQUOTE] = ACTIONS(2772), - [anon_sym_u_DQUOTE] = ACTIONS(2772), - [anon_sym_U_DQUOTE] = ACTIONS(2772), - [anon_sym_u8_DQUOTE] = ACTIONS(2772), - [anon_sym_DQUOTE] = ACTIONS(2772), - [sym_true] = ACTIONS(2770), - [sym_false] = ACTIONS(2770), - [sym_null] = ACTIONS(2770), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2770), - [anon_sym_decltype] = ACTIONS(2770), - [anon_sym_virtual] = ACTIONS(2770), - [anon_sym_explicit] = ACTIONS(2770), - [anon_sym_typename] = ACTIONS(2770), - [anon_sym_template] = ACTIONS(2770), - [anon_sym_operator] = ACTIONS(2770), - [anon_sym_try] = ACTIONS(2770), - [anon_sym_delete] = ACTIONS(2770), - [anon_sym_throw] = ACTIONS(2770), - [anon_sym_namespace] = ACTIONS(2770), - [anon_sym_using] = ACTIONS(2770), - [anon_sym_static_assert] = ACTIONS(2770), - [anon_sym_concept] = ACTIONS(2770), - [anon_sym_co_return] = ACTIONS(2770), - [anon_sym_co_yield] = ACTIONS(2770), - [anon_sym_R_DQUOTE] = ACTIONS(2772), - [anon_sym_LR_DQUOTE] = ACTIONS(2772), - [anon_sym_uR_DQUOTE] = ACTIONS(2772), - [anon_sym_UR_DQUOTE] = ACTIONS(2772), - [anon_sym_u8R_DQUOTE] = ACTIONS(2772), - [anon_sym_co_await] = ACTIONS(2770), - [anon_sym_new] = ACTIONS(2770), - [anon_sym_requires] = ACTIONS(2770), - [sym_this] = ACTIONS(2770), - [sym_nullptr] = ACTIONS(2770), + [1043] = { + [ts_builtin_sym_end] = ACTIONS(3050), + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, - [1014] = { - [sym_identifier] = ACTIONS(2842), - [aux_sym_preproc_include_token1] = ACTIONS(2842), - [aux_sym_preproc_def_token1] = ACTIONS(2842), - [aux_sym_preproc_if_token1] = ACTIONS(2842), - [aux_sym_preproc_if_token2] = ACTIONS(2842), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2842), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2842), - [sym_preproc_directive] = ACTIONS(2842), - [anon_sym_LPAREN2] = ACTIONS(2844), - [anon_sym_BANG] = ACTIONS(2844), - [anon_sym_TILDE] = ACTIONS(2844), - [anon_sym_DASH] = ACTIONS(2842), - [anon_sym_PLUS] = ACTIONS(2842), - [anon_sym_STAR] = ACTIONS(2844), - [anon_sym_AMP_AMP] = ACTIONS(2844), - [anon_sym_AMP] = ACTIONS(2842), - [anon_sym_SEMI] = ACTIONS(2844), - [anon_sym_typedef] = ACTIONS(2842), - [anon_sym_extern] = ACTIONS(2842), - [anon_sym___attribute__] = ACTIONS(2842), - [anon_sym_COLON_COLON] = ACTIONS(2844), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2844), - [anon_sym___declspec] = ACTIONS(2842), - [anon_sym___based] = ACTIONS(2842), - [anon_sym___cdecl] = ACTIONS(2842), - [anon_sym___clrcall] = ACTIONS(2842), - [anon_sym___stdcall] = ACTIONS(2842), - [anon_sym___fastcall] = ACTIONS(2842), - [anon_sym___thiscall] = ACTIONS(2842), - [anon_sym___vectorcall] = ACTIONS(2842), - [anon_sym_LBRACE] = ACTIONS(2844), - [anon_sym_LBRACK] = ACTIONS(2842), - [anon_sym_static] = ACTIONS(2842), - [anon_sym_register] = ACTIONS(2842), - [anon_sym_inline] = ACTIONS(2842), - [anon_sym_thread_local] = ACTIONS(2842), - [anon_sym_const] = ACTIONS(2842), - [anon_sym_volatile] = ACTIONS(2842), - [anon_sym_restrict] = ACTIONS(2842), - [anon_sym__Atomic] = ACTIONS(2842), - [anon_sym_mutable] = ACTIONS(2842), - [anon_sym_constexpr] = ACTIONS(2842), - [anon_sym_constinit] = ACTIONS(2842), - [anon_sym_consteval] = ACTIONS(2842), - [anon_sym_signed] = ACTIONS(2842), - [anon_sym_unsigned] = ACTIONS(2842), - [anon_sym_long] = ACTIONS(2842), - [anon_sym_short] = ACTIONS(2842), - [sym_primitive_type] = ACTIONS(2842), - [anon_sym_enum] = ACTIONS(2842), - [anon_sym_class] = ACTIONS(2842), - [anon_sym_struct] = ACTIONS(2842), - [anon_sym_union] = ACTIONS(2842), - [anon_sym_if] = ACTIONS(2842), - [anon_sym_switch] = ACTIONS(2842), - [anon_sym_case] = ACTIONS(2842), - [anon_sym_default] = ACTIONS(2842), - [anon_sym_while] = ACTIONS(2842), - [anon_sym_do] = ACTIONS(2842), - [anon_sym_for] = ACTIONS(2842), - [anon_sym_return] = ACTIONS(2842), - [anon_sym_break] = ACTIONS(2842), - [anon_sym_continue] = ACTIONS(2842), - [anon_sym_goto] = ACTIONS(2842), - [anon_sym_not] = ACTIONS(2842), - [anon_sym_compl] = ACTIONS(2842), - [anon_sym_DASH_DASH] = ACTIONS(2844), - [anon_sym_PLUS_PLUS] = ACTIONS(2844), - [anon_sym_sizeof] = ACTIONS(2842), - [sym_number_literal] = ACTIONS(2844), - [anon_sym_L_SQUOTE] = ACTIONS(2844), - [anon_sym_u_SQUOTE] = ACTIONS(2844), - [anon_sym_U_SQUOTE] = ACTIONS(2844), - [anon_sym_u8_SQUOTE] = ACTIONS(2844), - [anon_sym_SQUOTE] = ACTIONS(2844), - [anon_sym_L_DQUOTE] = ACTIONS(2844), - [anon_sym_u_DQUOTE] = ACTIONS(2844), - [anon_sym_U_DQUOTE] = ACTIONS(2844), - [anon_sym_u8_DQUOTE] = ACTIONS(2844), - [anon_sym_DQUOTE] = ACTIONS(2844), - [sym_true] = ACTIONS(2842), - [sym_false] = ACTIONS(2842), - [sym_null] = ACTIONS(2842), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2842), - [anon_sym_decltype] = ACTIONS(2842), - [anon_sym_virtual] = ACTIONS(2842), - [anon_sym_explicit] = ACTIONS(2842), - [anon_sym_typename] = ACTIONS(2842), - [anon_sym_template] = ACTIONS(2842), - [anon_sym_operator] = ACTIONS(2842), - [anon_sym_try] = ACTIONS(2842), - [anon_sym_delete] = ACTIONS(2842), - [anon_sym_throw] = ACTIONS(2842), - [anon_sym_namespace] = ACTIONS(2842), - [anon_sym_using] = ACTIONS(2842), - [anon_sym_static_assert] = ACTIONS(2842), - [anon_sym_concept] = ACTIONS(2842), - [anon_sym_co_return] = ACTIONS(2842), - [anon_sym_co_yield] = ACTIONS(2842), - [anon_sym_R_DQUOTE] = ACTIONS(2844), - [anon_sym_LR_DQUOTE] = ACTIONS(2844), - [anon_sym_uR_DQUOTE] = ACTIONS(2844), - [anon_sym_UR_DQUOTE] = ACTIONS(2844), - [anon_sym_u8R_DQUOTE] = ACTIONS(2844), - [anon_sym_co_await] = ACTIONS(2842), - [anon_sym_new] = ACTIONS(2842), - [anon_sym_requires] = ACTIONS(2842), - [sym_this] = ACTIONS(2842), - [sym_nullptr] = ACTIONS(2842), + [1044] = { + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token2] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, - [1015] = { - [sym_identifier] = ACTIONS(2826), - [aux_sym_preproc_include_token1] = ACTIONS(2826), - [aux_sym_preproc_def_token1] = ACTIONS(2826), - [aux_sym_preproc_if_token1] = ACTIONS(2826), - [aux_sym_preproc_if_token2] = ACTIONS(2826), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2826), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2826), - [sym_preproc_directive] = ACTIONS(2826), - [anon_sym_LPAREN2] = ACTIONS(2828), - [anon_sym_BANG] = ACTIONS(2828), - [anon_sym_TILDE] = ACTIONS(2828), - [anon_sym_DASH] = ACTIONS(2826), - [anon_sym_PLUS] = ACTIONS(2826), - [anon_sym_STAR] = ACTIONS(2828), - [anon_sym_AMP_AMP] = ACTIONS(2828), - [anon_sym_AMP] = ACTIONS(2826), - [anon_sym_SEMI] = ACTIONS(2828), - [anon_sym_typedef] = ACTIONS(2826), - [anon_sym_extern] = ACTIONS(2826), - [anon_sym___attribute__] = ACTIONS(2826), - [anon_sym_COLON_COLON] = ACTIONS(2828), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2828), - [anon_sym___declspec] = ACTIONS(2826), - [anon_sym___based] = ACTIONS(2826), - [anon_sym___cdecl] = ACTIONS(2826), - [anon_sym___clrcall] = ACTIONS(2826), - [anon_sym___stdcall] = ACTIONS(2826), - [anon_sym___fastcall] = ACTIONS(2826), - [anon_sym___thiscall] = ACTIONS(2826), - [anon_sym___vectorcall] = ACTIONS(2826), - [anon_sym_LBRACE] = ACTIONS(2828), - [anon_sym_LBRACK] = ACTIONS(2826), - [anon_sym_static] = ACTIONS(2826), - [anon_sym_register] = ACTIONS(2826), - [anon_sym_inline] = ACTIONS(2826), - [anon_sym_thread_local] = ACTIONS(2826), - [anon_sym_const] = ACTIONS(2826), - [anon_sym_volatile] = ACTIONS(2826), - [anon_sym_restrict] = ACTIONS(2826), - [anon_sym__Atomic] = ACTIONS(2826), - [anon_sym_mutable] = ACTIONS(2826), - [anon_sym_constexpr] = ACTIONS(2826), - [anon_sym_constinit] = ACTIONS(2826), - [anon_sym_consteval] = ACTIONS(2826), - [anon_sym_signed] = ACTIONS(2826), - [anon_sym_unsigned] = ACTIONS(2826), - [anon_sym_long] = ACTIONS(2826), - [anon_sym_short] = ACTIONS(2826), - [sym_primitive_type] = ACTIONS(2826), - [anon_sym_enum] = ACTIONS(2826), - [anon_sym_class] = ACTIONS(2826), - [anon_sym_struct] = ACTIONS(2826), - [anon_sym_union] = ACTIONS(2826), - [anon_sym_if] = ACTIONS(2826), - [anon_sym_switch] = ACTIONS(2826), - [anon_sym_case] = ACTIONS(2826), - [anon_sym_default] = ACTIONS(2826), - [anon_sym_while] = ACTIONS(2826), - [anon_sym_do] = ACTIONS(2826), - [anon_sym_for] = ACTIONS(2826), - [anon_sym_return] = ACTIONS(2826), - [anon_sym_break] = ACTIONS(2826), - [anon_sym_continue] = ACTIONS(2826), - [anon_sym_goto] = ACTIONS(2826), - [anon_sym_not] = ACTIONS(2826), - [anon_sym_compl] = ACTIONS(2826), - [anon_sym_DASH_DASH] = ACTIONS(2828), - [anon_sym_PLUS_PLUS] = ACTIONS(2828), - [anon_sym_sizeof] = ACTIONS(2826), - [sym_number_literal] = ACTIONS(2828), - [anon_sym_L_SQUOTE] = ACTIONS(2828), - [anon_sym_u_SQUOTE] = ACTIONS(2828), - [anon_sym_U_SQUOTE] = ACTIONS(2828), - [anon_sym_u8_SQUOTE] = ACTIONS(2828), - [anon_sym_SQUOTE] = ACTIONS(2828), - [anon_sym_L_DQUOTE] = ACTIONS(2828), - [anon_sym_u_DQUOTE] = ACTIONS(2828), - [anon_sym_U_DQUOTE] = ACTIONS(2828), - [anon_sym_u8_DQUOTE] = ACTIONS(2828), - [anon_sym_DQUOTE] = ACTIONS(2828), - [sym_true] = ACTIONS(2826), - [sym_false] = ACTIONS(2826), - [sym_null] = ACTIONS(2826), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2826), - [anon_sym_decltype] = ACTIONS(2826), - [anon_sym_virtual] = ACTIONS(2826), - [anon_sym_explicit] = ACTIONS(2826), - [anon_sym_typename] = ACTIONS(2826), - [anon_sym_template] = ACTIONS(2826), - [anon_sym_operator] = ACTIONS(2826), - [anon_sym_try] = ACTIONS(2826), - [anon_sym_delete] = ACTIONS(2826), - [anon_sym_throw] = ACTIONS(2826), - [anon_sym_namespace] = ACTIONS(2826), - [anon_sym_using] = ACTIONS(2826), - [anon_sym_static_assert] = ACTIONS(2826), - [anon_sym_concept] = ACTIONS(2826), - [anon_sym_co_return] = ACTIONS(2826), - [anon_sym_co_yield] = ACTIONS(2826), - [anon_sym_R_DQUOTE] = ACTIONS(2828), - [anon_sym_LR_DQUOTE] = ACTIONS(2828), - [anon_sym_uR_DQUOTE] = ACTIONS(2828), - [anon_sym_UR_DQUOTE] = ACTIONS(2828), - [anon_sym_u8R_DQUOTE] = ACTIONS(2828), - [anon_sym_co_await] = ACTIONS(2826), - [anon_sym_new] = ACTIONS(2826), - [anon_sym_requires] = ACTIONS(2826), - [sym_this] = ACTIONS(2826), - [sym_nullptr] = ACTIONS(2826), + [1045] = { + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token2] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, - [1016] = { - [ts_builtin_sym_end] = ACTIONS(2768), - [sym_identifier] = ACTIONS(2766), - [aux_sym_preproc_include_token1] = ACTIONS(2766), - [aux_sym_preproc_def_token1] = ACTIONS(2766), - [aux_sym_preproc_if_token1] = ACTIONS(2766), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2766), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2766), - [sym_preproc_directive] = ACTIONS(2766), - [anon_sym_LPAREN2] = ACTIONS(2768), - [anon_sym_BANG] = ACTIONS(2768), - [anon_sym_TILDE] = ACTIONS(2768), - [anon_sym_DASH] = ACTIONS(2766), - [anon_sym_PLUS] = ACTIONS(2766), - [anon_sym_STAR] = ACTIONS(2768), - [anon_sym_AMP_AMP] = ACTIONS(2768), - [anon_sym_AMP] = ACTIONS(2766), - [anon_sym_SEMI] = ACTIONS(2768), - [anon_sym_typedef] = ACTIONS(2766), - [anon_sym_extern] = ACTIONS(2766), - [anon_sym___attribute__] = ACTIONS(2766), - [anon_sym_COLON_COLON] = ACTIONS(2768), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2768), - [anon_sym___declspec] = ACTIONS(2766), - [anon_sym___based] = ACTIONS(2766), - [anon_sym___cdecl] = ACTIONS(2766), - [anon_sym___clrcall] = ACTIONS(2766), - [anon_sym___stdcall] = ACTIONS(2766), - [anon_sym___fastcall] = ACTIONS(2766), - [anon_sym___thiscall] = ACTIONS(2766), - [anon_sym___vectorcall] = ACTIONS(2766), - [anon_sym_LBRACE] = ACTIONS(2768), - [anon_sym_LBRACK] = ACTIONS(2766), - [anon_sym_static] = ACTIONS(2766), - [anon_sym_register] = ACTIONS(2766), - [anon_sym_inline] = ACTIONS(2766), - [anon_sym_thread_local] = ACTIONS(2766), - [anon_sym_const] = ACTIONS(2766), - [anon_sym_volatile] = ACTIONS(2766), - [anon_sym_restrict] = ACTIONS(2766), - [anon_sym__Atomic] = ACTIONS(2766), - [anon_sym_mutable] = ACTIONS(2766), - [anon_sym_constexpr] = ACTIONS(2766), - [anon_sym_constinit] = ACTIONS(2766), - [anon_sym_consteval] = ACTIONS(2766), - [anon_sym_signed] = ACTIONS(2766), - [anon_sym_unsigned] = ACTIONS(2766), - [anon_sym_long] = ACTIONS(2766), - [anon_sym_short] = ACTIONS(2766), - [sym_primitive_type] = ACTIONS(2766), - [anon_sym_enum] = ACTIONS(2766), - [anon_sym_class] = ACTIONS(2766), - [anon_sym_struct] = ACTIONS(2766), - [anon_sym_union] = ACTIONS(2766), - [anon_sym_if] = ACTIONS(2766), - [anon_sym_switch] = ACTIONS(2766), - [anon_sym_case] = ACTIONS(2766), - [anon_sym_default] = ACTIONS(2766), - [anon_sym_while] = ACTIONS(2766), - [anon_sym_do] = ACTIONS(2766), - [anon_sym_for] = ACTIONS(2766), - [anon_sym_return] = ACTIONS(2766), - [anon_sym_break] = ACTIONS(2766), - [anon_sym_continue] = ACTIONS(2766), - [anon_sym_goto] = ACTIONS(2766), - [anon_sym_not] = ACTIONS(2766), - [anon_sym_compl] = ACTIONS(2766), - [anon_sym_DASH_DASH] = ACTIONS(2768), - [anon_sym_PLUS_PLUS] = ACTIONS(2768), - [anon_sym_sizeof] = ACTIONS(2766), - [sym_number_literal] = ACTIONS(2768), - [anon_sym_L_SQUOTE] = ACTIONS(2768), - [anon_sym_u_SQUOTE] = ACTIONS(2768), - [anon_sym_U_SQUOTE] = ACTIONS(2768), - [anon_sym_u8_SQUOTE] = ACTIONS(2768), - [anon_sym_SQUOTE] = ACTIONS(2768), - [anon_sym_L_DQUOTE] = ACTIONS(2768), - [anon_sym_u_DQUOTE] = ACTIONS(2768), - [anon_sym_U_DQUOTE] = ACTIONS(2768), - [anon_sym_u8_DQUOTE] = ACTIONS(2768), - [anon_sym_DQUOTE] = ACTIONS(2768), - [sym_true] = ACTIONS(2766), - [sym_false] = ACTIONS(2766), - [sym_null] = ACTIONS(2766), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2766), - [anon_sym_decltype] = ACTIONS(2766), - [anon_sym_virtual] = ACTIONS(2766), - [anon_sym_explicit] = ACTIONS(2766), - [anon_sym_typename] = ACTIONS(2766), - [anon_sym_template] = ACTIONS(2766), - [anon_sym_operator] = ACTIONS(2766), - [anon_sym_try] = ACTIONS(2766), - [anon_sym_delete] = ACTIONS(2766), - [anon_sym_throw] = ACTIONS(2766), - [anon_sym_namespace] = ACTIONS(2766), - [anon_sym_using] = ACTIONS(2766), - [anon_sym_static_assert] = ACTIONS(2766), - [anon_sym_concept] = ACTIONS(2766), - [anon_sym_co_return] = ACTIONS(2766), - [anon_sym_co_yield] = ACTIONS(2766), - [anon_sym_R_DQUOTE] = ACTIONS(2768), - [anon_sym_LR_DQUOTE] = ACTIONS(2768), - [anon_sym_uR_DQUOTE] = ACTIONS(2768), - [anon_sym_UR_DQUOTE] = ACTIONS(2768), - [anon_sym_u8R_DQUOTE] = ACTIONS(2768), - [anon_sym_co_await] = ACTIONS(2766), - [anon_sym_new] = ACTIONS(2766), - [anon_sym_requires] = ACTIONS(2766), - [sym_this] = ACTIONS(2766), - [sym_nullptr] = ACTIONS(2766), + [1046] = { + [sym_identifier] = ACTIONS(2916), + [aux_sym_preproc_include_token1] = ACTIONS(2916), + [aux_sym_preproc_def_token1] = ACTIONS(2916), + [aux_sym_preproc_if_token1] = ACTIONS(2916), + [aux_sym_preproc_if_token2] = ACTIONS(2916), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2916), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2916), + [sym_preproc_directive] = ACTIONS(2916), + [anon_sym_LPAREN2] = ACTIONS(2918), + [anon_sym_BANG] = ACTIONS(2918), + [anon_sym_TILDE] = ACTIONS(2918), + [anon_sym_DASH] = ACTIONS(2916), + [anon_sym_PLUS] = ACTIONS(2916), + [anon_sym_STAR] = ACTIONS(2918), + [anon_sym_AMP_AMP] = ACTIONS(2918), + [anon_sym_AMP] = ACTIONS(2916), + [anon_sym_SEMI] = ACTIONS(2918), + [anon_sym_typedef] = ACTIONS(2916), + [anon_sym_extern] = ACTIONS(2916), + [anon_sym___attribute__] = ACTIONS(2916), + [anon_sym_COLON_COLON] = ACTIONS(2918), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2918), + [anon_sym___declspec] = ACTIONS(2916), + [anon_sym___based] = ACTIONS(2916), + [anon_sym___cdecl] = ACTIONS(2916), + [anon_sym___clrcall] = ACTIONS(2916), + [anon_sym___stdcall] = ACTIONS(2916), + [anon_sym___fastcall] = ACTIONS(2916), + [anon_sym___thiscall] = ACTIONS(2916), + [anon_sym___vectorcall] = ACTIONS(2916), + [anon_sym_LBRACE] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(2916), + [anon_sym_static] = ACTIONS(2916), + [anon_sym_register] = ACTIONS(2916), + [anon_sym_inline] = ACTIONS(2916), + [anon_sym_thread_local] = ACTIONS(2916), + [anon_sym_const] = ACTIONS(2916), + [anon_sym_constexpr] = ACTIONS(2916), + [anon_sym_volatile] = ACTIONS(2916), + [anon_sym_restrict] = ACTIONS(2916), + [anon_sym___restrict__] = ACTIONS(2916), + [anon_sym__Atomic] = ACTIONS(2916), + [anon_sym__Noreturn] = ACTIONS(2916), + [anon_sym_noreturn] = ACTIONS(2916), + [anon_sym_mutable] = ACTIONS(2916), + [anon_sym_constinit] = ACTIONS(2916), + [anon_sym_consteval] = ACTIONS(2916), + [anon_sym_signed] = ACTIONS(2916), + [anon_sym_unsigned] = ACTIONS(2916), + [anon_sym_long] = ACTIONS(2916), + [anon_sym_short] = ACTIONS(2916), + [sym_primitive_type] = ACTIONS(2916), + [anon_sym_enum] = ACTIONS(2916), + [anon_sym_class] = ACTIONS(2916), + [anon_sym_struct] = ACTIONS(2916), + [anon_sym_union] = ACTIONS(2916), + [anon_sym_if] = ACTIONS(2916), + [anon_sym_else] = ACTIONS(2916), + [anon_sym_switch] = ACTIONS(2916), + [anon_sym_case] = ACTIONS(2916), + [anon_sym_default] = ACTIONS(2916), + [anon_sym_while] = ACTIONS(2916), + [anon_sym_do] = ACTIONS(2916), + [anon_sym_for] = ACTIONS(2916), + [anon_sym_return] = ACTIONS(2916), + [anon_sym_break] = ACTIONS(2916), + [anon_sym_continue] = ACTIONS(2916), + [anon_sym_goto] = ACTIONS(2916), + [anon_sym_not] = ACTIONS(2916), + [anon_sym_compl] = ACTIONS(2916), + [anon_sym_DASH_DASH] = ACTIONS(2918), + [anon_sym_PLUS_PLUS] = ACTIONS(2918), + [anon_sym_sizeof] = ACTIONS(2916), + [anon_sym_offsetof] = ACTIONS(2916), + [anon_sym__Generic] = ACTIONS(2916), + [anon_sym_asm] = ACTIONS(2916), + [anon_sym___asm__] = ACTIONS(2916), + [sym_number_literal] = ACTIONS(2918), + [anon_sym_L_SQUOTE] = ACTIONS(2918), + [anon_sym_u_SQUOTE] = ACTIONS(2918), + [anon_sym_U_SQUOTE] = ACTIONS(2918), + [anon_sym_u8_SQUOTE] = ACTIONS(2918), + [anon_sym_SQUOTE] = ACTIONS(2918), + [anon_sym_L_DQUOTE] = ACTIONS(2918), + [anon_sym_u_DQUOTE] = ACTIONS(2918), + [anon_sym_U_DQUOTE] = ACTIONS(2918), + [anon_sym_u8_DQUOTE] = ACTIONS(2918), + [anon_sym_DQUOTE] = ACTIONS(2918), + [sym_true] = ACTIONS(2916), + [sym_false] = ACTIONS(2916), + [anon_sym_NULL] = ACTIONS(2916), + [anon_sym_nullptr] = ACTIONS(2916), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2916), + [anon_sym_decltype] = ACTIONS(2916), + [anon_sym_virtual] = ACTIONS(2916), + [anon_sym_explicit] = ACTIONS(2916), + [anon_sym_typename] = ACTIONS(2916), + [anon_sym_template] = ACTIONS(2916), + [anon_sym_operator] = ACTIONS(2916), + [anon_sym_try] = ACTIONS(2916), + [anon_sym_delete] = ACTIONS(2916), + [anon_sym_throw] = ACTIONS(2916), + [anon_sym_namespace] = ACTIONS(2916), + [anon_sym_using] = ACTIONS(2916), + [anon_sym_static_assert] = ACTIONS(2916), + [anon_sym_concept] = ACTIONS(2916), + [anon_sym_co_return] = ACTIONS(2916), + [anon_sym_co_yield] = ACTIONS(2916), + [anon_sym_R_DQUOTE] = ACTIONS(2918), + [anon_sym_LR_DQUOTE] = ACTIONS(2918), + [anon_sym_uR_DQUOTE] = ACTIONS(2918), + [anon_sym_UR_DQUOTE] = ACTIONS(2918), + [anon_sym_u8R_DQUOTE] = ACTIONS(2918), + [anon_sym_co_await] = ACTIONS(2916), + [anon_sym_new] = ACTIONS(2916), + [anon_sym_requires] = ACTIONS(2916), + [sym_this] = ACTIONS(2916), }, - [1017] = { - [sym_identifier] = ACTIONS(2818), - [aux_sym_preproc_include_token1] = ACTIONS(2818), - [aux_sym_preproc_def_token1] = ACTIONS(2818), - [aux_sym_preproc_if_token1] = ACTIONS(2818), - [aux_sym_preproc_if_token2] = ACTIONS(2818), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2818), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2818), - [sym_preproc_directive] = ACTIONS(2818), - [anon_sym_LPAREN2] = ACTIONS(2820), - [anon_sym_BANG] = ACTIONS(2820), - [anon_sym_TILDE] = ACTIONS(2820), - [anon_sym_DASH] = ACTIONS(2818), - [anon_sym_PLUS] = ACTIONS(2818), - [anon_sym_STAR] = ACTIONS(2820), - [anon_sym_AMP_AMP] = ACTIONS(2820), - [anon_sym_AMP] = ACTIONS(2818), - [anon_sym_SEMI] = ACTIONS(2820), - [anon_sym_typedef] = ACTIONS(2818), - [anon_sym_extern] = ACTIONS(2818), - [anon_sym___attribute__] = ACTIONS(2818), - [anon_sym_COLON_COLON] = ACTIONS(2820), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2820), - [anon_sym___declspec] = ACTIONS(2818), - [anon_sym___based] = ACTIONS(2818), - [anon_sym___cdecl] = ACTIONS(2818), - [anon_sym___clrcall] = ACTIONS(2818), - [anon_sym___stdcall] = ACTIONS(2818), - [anon_sym___fastcall] = ACTIONS(2818), - [anon_sym___thiscall] = ACTIONS(2818), - [anon_sym___vectorcall] = ACTIONS(2818), - [anon_sym_LBRACE] = ACTIONS(2820), - [anon_sym_LBRACK] = ACTIONS(2818), - [anon_sym_static] = ACTIONS(2818), - [anon_sym_register] = ACTIONS(2818), - [anon_sym_inline] = ACTIONS(2818), - [anon_sym_thread_local] = ACTIONS(2818), - [anon_sym_const] = ACTIONS(2818), - [anon_sym_volatile] = ACTIONS(2818), - [anon_sym_restrict] = ACTIONS(2818), - [anon_sym__Atomic] = ACTIONS(2818), - [anon_sym_mutable] = ACTIONS(2818), - [anon_sym_constexpr] = ACTIONS(2818), - [anon_sym_constinit] = ACTIONS(2818), - [anon_sym_consteval] = ACTIONS(2818), - [anon_sym_signed] = ACTIONS(2818), - [anon_sym_unsigned] = ACTIONS(2818), - [anon_sym_long] = ACTIONS(2818), - [anon_sym_short] = ACTIONS(2818), - [sym_primitive_type] = ACTIONS(2818), - [anon_sym_enum] = ACTIONS(2818), - [anon_sym_class] = ACTIONS(2818), - [anon_sym_struct] = ACTIONS(2818), - [anon_sym_union] = ACTIONS(2818), - [anon_sym_if] = ACTIONS(2818), - [anon_sym_switch] = ACTIONS(2818), - [anon_sym_case] = ACTIONS(2818), - [anon_sym_default] = ACTIONS(2818), - [anon_sym_while] = ACTIONS(2818), - [anon_sym_do] = ACTIONS(2818), - [anon_sym_for] = ACTIONS(2818), - [anon_sym_return] = ACTIONS(2818), - [anon_sym_break] = ACTIONS(2818), - [anon_sym_continue] = ACTIONS(2818), - [anon_sym_goto] = ACTIONS(2818), - [anon_sym_not] = ACTIONS(2818), - [anon_sym_compl] = ACTIONS(2818), - [anon_sym_DASH_DASH] = ACTIONS(2820), - [anon_sym_PLUS_PLUS] = ACTIONS(2820), - [anon_sym_sizeof] = ACTIONS(2818), - [sym_number_literal] = ACTIONS(2820), - [anon_sym_L_SQUOTE] = ACTIONS(2820), - [anon_sym_u_SQUOTE] = ACTIONS(2820), - [anon_sym_U_SQUOTE] = ACTIONS(2820), - [anon_sym_u8_SQUOTE] = ACTIONS(2820), - [anon_sym_SQUOTE] = ACTIONS(2820), - [anon_sym_L_DQUOTE] = ACTIONS(2820), - [anon_sym_u_DQUOTE] = ACTIONS(2820), - [anon_sym_U_DQUOTE] = ACTIONS(2820), - [anon_sym_u8_DQUOTE] = ACTIONS(2820), - [anon_sym_DQUOTE] = ACTIONS(2820), - [sym_true] = ACTIONS(2818), - [sym_false] = ACTIONS(2818), - [sym_null] = ACTIONS(2818), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2818), - [anon_sym_decltype] = ACTIONS(2818), - [anon_sym_virtual] = ACTIONS(2818), - [anon_sym_explicit] = ACTIONS(2818), - [anon_sym_typename] = ACTIONS(2818), - [anon_sym_template] = ACTIONS(2818), - [anon_sym_operator] = ACTIONS(2818), - [anon_sym_try] = ACTIONS(2818), - [anon_sym_delete] = ACTIONS(2818), - [anon_sym_throw] = ACTIONS(2818), - [anon_sym_namespace] = ACTIONS(2818), - [anon_sym_using] = ACTIONS(2818), - [anon_sym_static_assert] = ACTIONS(2818), - [anon_sym_concept] = ACTIONS(2818), - [anon_sym_co_return] = ACTIONS(2818), - [anon_sym_co_yield] = ACTIONS(2818), - [anon_sym_R_DQUOTE] = ACTIONS(2820), - [anon_sym_LR_DQUOTE] = ACTIONS(2820), - [anon_sym_uR_DQUOTE] = ACTIONS(2820), - [anon_sym_UR_DQUOTE] = ACTIONS(2820), - [anon_sym_u8R_DQUOTE] = ACTIONS(2820), - [anon_sym_co_await] = ACTIONS(2818), - [anon_sym_new] = ACTIONS(2818), - [anon_sym_requires] = ACTIONS(2818), - [sym_this] = ACTIONS(2818), - [sym_nullptr] = ACTIONS(2818), + [1047] = { + [ts_builtin_sym_end] = ACTIONS(3050), + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, - [1018] = { - [sym_identifier] = ACTIONS(2782), - [aux_sym_preproc_include_token1] = ACTIONS(2782), - [aux_sym_preproc_def_token1] = ACTIONS(2782), - [aux_sym_preproc_if_token1] = ACTIONS(2782), - [aux_sym_preproc_if_token2] = ACTIONS(2782), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2782), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2782), - [sym_preproc_directive] = ACTIONS(2782), - [anon_sym_LPAREN2] = ACTIONS(2784), - [anon_sym_BANG] = ACTIONS(2784), - [anon_sym_TILDE] = ACTIONS(2784), - [anon_sym_DASH] = ACTIONS(2782), - [anon_sym_PLUS] = ACTIONS(2782), - [anon_sym_STAR] = ACTIONS(2784), - [anon_sym_AMP_AMP] = ACTIONS(2784), - [anon_sym_AMP] = ACTIONS(2782), - [anon_sym_SEMI] = ACTIONS(2784), - [anon_sym_typedef] = ACTIONS(2782), - [anon_sym_extern] = ACTIONS(2782), - [anon_sym___attribute__] = ACTIONS(2782), - [anon_sym_COLON_COLON] = ACTIONS(2784), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2784), - [anon_sym___declspec] = ACTIONS(2782), - [anon_sym___based] = ACTIONS(2782), - [anon_sym___cdecl] = ACTIONS(2782), - [anon_sym___clrcall] = ACTIONS(2782), - [anon_sym___stdcall] = ACTIONS(2782), - [anon_sym___fastcall] = ACTIONS(2782), - [anon_sym___thiscall] = ACTIONS(2782), - [anon_sym___vectorcall] = ACTIONS(2782), - [anon_sym_LBRACE] = ACTIONS(2784), - [anon_sym_LBRACK] = ACTIONS(2782), - [anon_sym_static] = ACTIONS(2782), - [anon_sym_register] = ACTIONS(2782), - [anon_sym_inline] = ACTIONS(2782), - [anon_sym_thread_local] = ACTIONS(2782), - [anon_sym_const] = ACTIONS(2782), - [anon_sym_volatile] = ACTIONS(2782), - [anon_sym_restrict] = ACTIONS(2782), - [anon_sym__Atomic] = ACTIONS(2782), - [anon_sym_mutable] = ACTIONS(2782), - [anon_sym_constexpr] = ACTIONS(2782), - [anon_sym_constinit] = ACTIONS(2782), - [anon_sym_consteval] = ACTIONS(2782), - [anon_sym_signed] = ACTIONS(2782), - [anon_sym_unsigned] = ACTIONS(2782), - [anon_sym_long] = ACTIONS(2782), - [anon_sym_short] = ACTIONS(2782), - [sym_primitive_type] = ACTIONS(2782), - [anon_sym_enum] = ACTIONS(2782), - [anon_sym_class] = ACTIONS(2782), - [anon_sym_struct] = ACTIONS(2782), - [anon_sym_union] = ACTIONS(2782), - [anon_sym_if] = ACTIONS(2782), - [anon_sym_switch] = ACTIONS(2782), - [anon_sym_case] = ACTIONS(2782), - [anon_sym_default] = ACTIONS(2782), - [anon_sym_while] = ACTIONS(2782), - [anon_sym_do] = ACTIONS(2782), - [anon_sym_for] = ACTIONS(2782), - [anon_sym_return] = ACTIONS(2782), - [anon_sym_break] = ACTIONS(2782), - [anon_sym_continue] = ACTIONS(2782), - [anon_sym_goto] = ACTIONS(2782), - [anon_sym_not] = ACTIONS(2782), - [anon_sym_compl] = ACTIONS(2782), - [anon_sym_DASH_DASH] = ACTIONS(2784), - [anon_sym_PLUS_PLUS] = ACTIONS(2784), - [anon_sym_sizeof] = ACTIONS(2782), - [sym_number_literal] = ACTIONS(2784), - [anon_sym_L_SQUOTE] = ACTIONS(2784), - [anon_sym_u_SQUOTE] = ACTIONS(2784), - [anon_sym_U_SQUOTE] = ACTIONS(2784), - [anon_sym_u8_SQUOTE] = ACTIONS(2784), - [anon_sym_SQUOTE] = ACTIONS(2784), - [anon_sym_L_DQUOTE] = ACTIONS(2784), - [anon_sym_u_DQUOTE] = ACTIONS(2784), - [anon_sym_U_DQUOTE] = ACTIONS(2784), - [anon_sym_u8_DQUOTE] = ACTIONS(2784), - [anon_sym_DQUOTE] = ACTIONS(2784), - [sym_true] = ACTIONS(2782), - [sym_false] = ACTIONS(2782), - [sym_null] = ACTIONS(2782), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2782), - [anon_sym_decltype] = ACTIONS(2782), - [anon_sym_virtual] = ACTIONS(2782), - [anon_sym_explicit] = ACTIONS(2782), - [anon_sym_typename] = ACTIONS(2782), - [anon_sym_template] = ACTIONS(2782), - [anon_sym_operator] = ACTIONS(2782), - [anon_sym_try] = ACTIONS(2782), - [anon_sym_delete] = ACTIONS(2782), - [anon_sym_throw] = ACTIONS(2782), - [anon_sym_namespace] = ACTIONS(2782), - [anon_sym_using] = ACTIONS(2782), - [anon_sym_static_assert] = ACTIONS(2782), - [anon_sym_concept] = ACTIONS(2782), - [anon_sym_co_return] = ACTIONS(2782), - [anon_sym_co_yield] = ACTIONS(2782), - [anon_sym_R_DQUOTE] = ACTIONS(2784), - [anon_sym_LR_DQUOTE] = ACTIONS(2784), - [anon_sym_uR_DQUOTE] = ACTIONS(2784), - [anon_sym_UR_DQUOTE] = ACTIONS(2784), - [anon_sym_u8R_DQUOTE] = ACTIONS(2784), - [anon_sym_co_await] = ACTIONS(2782), - [anon_sym_new] = ACTIONS(2782), - [anon_sym_requires] = ACTIONS(2782), - [sym_this] = ACTIONS(2782), - [sym_nullptr] = ACTIONS(2782), + [1048] = { + [sym_identifier] = ACTIONS(2952), + [aux_sym_preproc_include_token1] = ACTIONS(2952), + [aux_sym_preproc_def_token1] = ACTIONS(2952), + [aux_sym_preproc_if_token1] = ACTIONS(2952), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2952), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2952), + [sym_preproc_directive] = ACTIONS(2952), + [anon_sym_LPAREN2] = ACTIONS(2954), + [anon_sym_BANG] = ACTIONS(2954), + [anon_sym_TILDE] = ACTIONS(2954), + [anon_sym_DASH] = ACTIONS(2952), + [anon_sym_PLUS] = ACTIONS(2952), + [anon_sym_STAR] = ACTIONS(2954), + [anon_sym_AMP_AMP] = ACTIONS(2954), + [anon_sym_AMP] = ACTIONS(2952), + [anon_sym_SEMI] = ACTIONS(2954), + [anon_sym_typedef] = ACTIONS(2952), + [anon_sym_extern] = ACTIONS(2952), + [anon_sym___attribute__] = ACTIONS(2952), + [anon_sym_COLON_COLON] = ACTIONS(2954), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2954), + [anon_sym___declspec] = ACTIONS(2952), + [anon_sym___based] = ACTIONS(2952), + [anon_sym___cdecl] = ACTIONS(2952), + [anon_sym___clrcall] = ACTIONS(2952), + [anon_sym___stdcall] = ACTIONS(2952), + [anon_sym___fastcall] = ACTIONS(2952), + [anon_sym___thiscall] = ACTIONS(2952), + [anon_sym___vectorcall] = ACTIONS(2952), + [anon_sym_LBRACE] = ACTIONS(2954), + [anon_sym_RBRACE] = ACTIONS(2954), + [anon_sym_LBRACK] = ACTIONS(2952), + [anon_sym_static] = ACTIONS(2952), + [anon_sym_register] = ACTIONS(2952), + [anon_sym_inline] = ACTIONS(2952), + [anon_sym_thread_local] = ACTIONS(2952), + [anon_sym_const] = ACTIONS(2952), + [anon_sym_constexpr] = ACTIONS(2952), + [anon_sym_volatile] = ACTIONS(2952), + [anon_sym_restrict] = ACTIONS(2952), + [anon_sym___restrict__] = ACTIONS(2952), + [anon_sym__Atomic] = ACTIONS(2952), + [anon_sym__Noreturn] = ACTIONS(2952), + [anon_sym_noreturn] = ACTIONS(2952), + [anon_sym_mutable] = ACTIONS(2952), + [anon_sym_constinit] = ACTIONS(2952), + [anon_sym_consteval] = ACTIONS(2952), + [anon_sym_signed] = ACTIONS(2952), + [anon_sym_unsigned] = ACTIONS(2952), + [anon_sym_long] = ACTIONS(2952), + [anon_sym_short] = ACTIONS(2952), + [sym_primitive_type] = ACTIONS(2952), + [anon_sym_enum] = ACTIONS(2952), + [anon_sym_class] = ACTIONS(2952), + [anon_sym_struct] = ACTIONS(2952), + [anon_sym_union] = ACTIONS(2952), + [anon_sym_if] = ACTIONS(2952), + [anon_sym_else] = ACTIONS(2952), + [anon_sym_switch] = ACTIONS(2952), + [anon_sym_case] = ACTIONS(2952), + [anon_sym_default] = ACTIONS(2952), + [anon_sym_while] = ACTIONS(2952), + [anon_sym_do] = ACTIONS(2952), + [anon_sym_for] = ACTIONS(2952), + [anon_sym_return] = ACTIONS(2952), + [anon_sym_break] = ACTIONS(2952), + [anon_sym_continue] = ACTIONS(2952), + [anon_sym_goto] = ACTIONS(2952), + [anon_sym_not] = ACTIONS(2952), + [anon_sym_compl] = ACTIONS(2952), + [anon_sym_DASH_DASH] = ACTIONS(2954), + [anon_sym_PLUS_PLUS] = ACTIONS(2954), + [anon_sym_sizeof] = ACTIONS(2952), + [anon_sym_offsetof] = ACTIONS(2952), + [anon_sym__Generic] = ACTIONS(2952), + [anon_sym_asm] = ACTIONS(2952), + [anon_sym___asm__] = ACTIONS(2952), + [sym_number_literal] = ACTIONS(2954), + [anon_sym_L_SQUOTE] = ACTIONS(2954), + [anon_sym_u_SQUOTE] = ACTIONS(2954), + [anon_sym_U_SQUOTE] = ACTIONS(2954), + [anon_sym_u8_SQUOTE] = ACTIONS(2954), + [anon_sym_SQUOTE] = ACTIONS(2954), + [anon_sym_L_DQUOTE] = ACTIONS(2954), + [anon_sym_u_DQUOTE] = ACTIONS(2954), + [anon_sym_U_DQUOTE] = ACTIONS(2954), + [anon_sym_u8_DQUOTE] = ACTIONS(2954), + [anon_sym_DQUOTE] = ACTIONS(2954), + [sym_true] = ACTIONS(2952), + [sym_false] = ACTIONS(2952), + [anon_sym_NULL] = ACTIONS(2952), + [anon_sym_nullptr] = ACTIONS(2952), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2952), + [anon_sym_decltype] = ACTIONS(2952), + [anon_sym_virtual] = ACTIONS(2952), + [anon_sym_explicit] = ACTIONS(2952), + [anon_sym_typename] = ACTIONS(2952), + [anon_sym_template] = ACTIONS(2952), + [anon_sym_operator] = ACTIONS(2952), + [anon_sym_try] = ACTIONS(2952), + [anon_sym_delete] = ACTIONS(2952), + [anon_sym_throw] = ACTIONS(2952), + [anon_sym_namespace] = ACTIONS(2952), + [anon_sym_using] = ACTIONS(2952), + [anon_sym_static_assert] = ACTIONS(2952), + [anon_sym_concept] = ACTIONS(2952), + [anon_sym_co_return] = ACTIONS(2952), + [anon_sym_co_yield] = ACTIONS(2952), + [anon_sym_R_DQUOTE] = ACTIONS(2954), + [anon_sym_LR_DQUOTE] = ACTIONS(2954), + [anon_sym_uR_DQUOTE] = ACTIONS(2954), + [anon_sym_UR_DQUOTE] = ACTIONS(2954), + [anon_sym_u8R_DQUOTE] = ACTIONS(2954), + [anon_sym_co_await] = ACTIONS(2952), + [anon_sym_new] = ACTIONS(2952), + [anon_sym_requires] = ACTIONS(2952), + [sym_this] = ACTIONS(2952), }, - [1019] = { - [ts_builtin_sym_end] = ACTIONS(2844), - [sym_identifier] = ACTIONS(2842), - [aux_sym_preproc_include_token1] = ACTIONS(2842), - [aux_sym_preproc_def_token1] = ACTIONS(2842), - [aux_sym_preproc_if_token1] = ACTIONS(2842), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2842), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2842), - [sym_preproc_directive] = ACTIONS(2842), - [anon_sym_LPAREN2] = ACTIONS(2844), - [anon_sym_BANG] = ACTIONS(2844), - [anon_sym_TILDE] = ACTIONS(2844), - [anon_sym_DASH] = ACTIONS(2842), - [anon_sym_PLUS] = ACTIONS(2842), - [anon_sym_STAR] = ACTIONS(2844), - [anon_sym_AMP_AMP] = ACTIONS(2844), - [anon_sym_AMP] = ACTIONS(2842), - [anon_sym_SEMI] = ACTIONS(2844), - [anon_sym_typedef] = ACTIONS(2842), - [anon_sym_extern] = ACTIONS(2842), - [anon_sym___attribute__] = ACTIONS(2842), - [anon_sym_COLON_COLON] = ACTIONS(2844), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2844), - [anon_sym___declspec] = ACTIONS(2842), - [anon_sym___based] = ACTIONS(2842), - [anon_sym___cdecl] = ACTIONS(2842), - [anon_sym___clrcall] = ACTIONS(2842), - [anon_sym___stdcall] = ACTIONS(2842), - [anon_sym___fastcall] = ACTIONS(2842), - [anon_sym___thiscall] = ACTIONS(2842), - [anon_sym___vectorcall] = ACTIONS(2842), - [anon_sym_LBRACE] = ACTIONS(2844), - [anon_sym_LBRACK] = ACTIONS(2842), - [anon_sym_static] = ACTIONS(2842), - [anon_sym_register] = ACTIONS(2842), - [anon_sym_inline] = ACTIONS(2842), - [anon_sym_thread_local] = ACTIONS(2842), - [anon_sym_const] = ACTIONS(2842), - [anon_sym_volatile] = ACTIONS(2842), - [anon_sym_restrict] = ACTIONS(2842), - [anon_sym__Atomic] = ACTIONS(2842), - [anon_sym_mutable] = ACTIONS(2842), - [anon_sym_constexpr] = ACTIONS(2842), - [anon_sym_constinit] = ACTIONS(2842), - [anon_sym_consteval] = ACTIONS(2842), - [anon_sym_signed] = ACTIONS(2842), - [anon_sym_unsigned] = ACTIONS(2842), - [anon_sym_long] = ACTIONS(2842), - [anon_sym_short] = ACTIONS(2842), - [sym_primitive_type] = ACTIONS(2842), - [anon_sym_enum] = ACTIONS(2842), - [anon_sym_class] = ACTIONS(2842), - [anon_sym_struct] = ACTIONS(2842), - [anon_sym_union] = ACTIONS(2842), - [anon_sym_if] = ACTIONS(2842), - [anon_sym_switch] = ACTIONS(2842), - [anon_sym_case] = ACTIONS(2842), - [anon_sym_default] = ACTIONS(2842), - [anon_sym_while] = ACTIONS(2842), - [anon_sym_do] = ACTIONS(2842), - [anon_sym_for] = ACTIONS(2842), - [anon_sym_return] = ACTIONS(2842), - [anon_sym_break] = ACTIONS(2842), - [anon_sym_continue] = ACTIONS(2842), - [anon_sym_goto] = ACTIONS(2842), - [anon_sym_not] = ACTIONS(2842), - [anon_sym_compl] = ACTIONS(2842), - [anon_sym_DASH_DASH] = ACTIONS(2844), - [anon_sym_PLUS_PLUS] = ACTIONS(2844), - [anon_sym_sizeof] = ACTIONS(2842), - [sym_number_literal] = ACTIONS(2844), - [anon_sym_L_SQUOTE] = ACTIONS(2844), - [anon_sym_u_SQUOTE] = ACTIONS(2844), - [anon_sym_U_SQUOTE] = ACTIONS(2844), - [anon_sym_u8_SQUOTE] = ACTIONS(2844), - [anon_sym_SQUOTE] = ACTIONS(2844), - [anon_sym_L_DQUOTE] = ACTIONS(2844), - [anon_sym_u_DQUOTE] = ACTIONS(2844), - [anon_sym_U_DQUOTE] = ACTIONS(2844), - [anon_sym_u8_DQUOTE] = ACTIONS(2844), - [anon_sym_DQUOTE] = ACTIONS(2844), - [sym_true] = ACTIONS(2842), - [sym_false] = ACTIONS(2842), - [sym_null] = ACTIONS(2842), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2842), - [anon_sym_decltype] = ACTIONS(2842), - [anon_sym_virtual] = ACTIONS(2842), - [anon_sym_explicit] = ACTIONS(2842), - [anon_sym_typename] = ACTIONS(2842), - [anon_sym_template] = ACTIONS(2842), - [anon_sym_operator] = ACTIONS(2842), - [anon_sym_try] = ACTIONS(2842), - [anon_sym_delete] = ACTIONS(2842), - [anon_sym_throw] = ACTIONS(2842), - [anon_sym_namespace] = ACTIONS(2842), - [anon_sym_using] = ACTIONS(2842), - [anon_sym_static_assert] = ACTIONS(2842), - [anon_sym_concept] = ACTIONS(2842), - [anon_sym_co_return] = ACTIONS(2842), - [anon_sym_co_yield] = ACTIONS(2842), - [anon_sym_R_DQUOTE] = ACTIONS(2844), - [anon_sym_LR_DQUOTE] = ACTIONS(2844), - [anon_sym_uR_DQUOTE] = ACTIONS(2844), - [anon_sym_UR_DQUOTE] = ACTIONS(2844), - [anon_sym_u8R_DQUOTE] = ACTIONS(2844), - [anon_sym_co_await] = ACTIONS(2842), - [anon_sym_new] = ACTIONS(2842), - [anon_sym_requires] = ACTIONS(2842), - [sym_this] = ACTIONS(2842), - [sym_nullptr] = ACTIONS(2842), + [1049] = { + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token2] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, - [1020] = { - [sym_identifier] = ACTIONS(2806), - [aux_sym_preproc_include_token1] = ACTIONS(2806), - [aux_sym_preproc_def_token1] = ACTIONS(2806), - [aux_sym_preproc_if_token1] = ACTIONS(2806), - [aux_sym_preproc_if_token2] = ACTIONS(2806), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2806), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2806), - [sym_preproc_directive] = ACTIONS(2806), - [anon_sym_LPAREN2] = ACTIONS(2808), - [anon_sym_BANG] = ACTIONS(2808), - [anon_sym_TILDE] = ACTIONS(2808), - [anon_sym_DASH] = ACTIONS(2806), - [anon_sym_PLUS] = ACTIONS(2806), - [anon_sym_STAR] = ACTIONS(2808), - [anon_sym_AMP_AMP] = ACTIONS(2808), - [anon_sym_AMP] = ACTIONS(2806), - [anon_sym_SEMI] = ACTIONS(2808), - [anon_sym_typedef] = ACTIONS(2806), - [anon_sym_extern] = ACTIONS(2806), - [anon_sym___attribute__] = ACTIONS(2806), - [anon_sym_COLON_COLON] = ACTIONS(2808), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2808), - [anon_sym___declspec] = ACTIONS(2806), - [anon_sym___based] = ACTIONS(2806), - [anon_sym___cdecl] = ACTIONS(2806), - [anon_sym___clrcall] = ACTIONS(2806), - [anon_sym___stdcall] = ACTIONS(2806), - [anon_sym___fastcall] = ACTIONS(2806), - [anon_sym___thiscall] = ACTIONS(2806), - [anon_sym___vectorcall] = ACTIONS(2806), - [anon_sym_LBRACE] = ACTIONS(2808), - [anon_sym_LBRACK] = ACTIONS(2806), - [anon_sym_static] = ACTIONS(2806), - [anon_sym_register] = ACTIONS(2806), - [anon_sym_inline] = ACTIONS(2806), - [anon_sym_thread_local] = ACTIONS(2806), - [anon_sym_const] = ACTIONS(2806), - [anon_sym_volatile] = ACTIONS(2806), - [anon_sym_restrict] = ACTIONS(2806), - [anon_sym__Atomic] = ACTIONS(2806), - [anon_sym_mutable] = ACTIONS(2806), - [anon_sym_constexpr] = ACTIONS(2806), - [anon_sym_constinit] = ACTIONS(2806), - [anon_sym_consteval] = ACTIONS(2806), - [anon_sym_signed] = ACTIONS(2806), - [anon_sym_unsigned] = ACTIONS(2806), - [anon_sym_long] = ACTIONS(2806), - [anon_sym_short] = ACTIONS(2806), - [sym_primitive_type] = ACTIONS(2806), - [anon_sym_enum] = ACTIONS(2806), - [anon_sym_class] = ACTIONS(2806), - [anon_sym_struct] = ACTIONS(2806), - [anon_sym_union] = ACTIONS(2806), - [anon_sym_if] = ACTIONS(2806), - [anon_sym_switch] = ACTIONS(2806), - [anon_sym_case] = ACTIONS(2806), - [anon_sym_default] = ACTIONS(2806), - [anon_sym_while] = ACTIONS(2806), - [anon_sym_do] = ACTIONS(2806), - [anon_sym_for] = ACTIONS(2806), - [anon_sym_return] = ACTIONS(2806), - [anon_sym_break] = ACTIONS(2806), - [anon_sym_continue] = ACTIONS(2806), - [anon_sym_goto] = ACTIONS(2806), - [anon_sym_not] = ACTIONS(2806), - [anon_sym_compl] = ACTIONS(2806), - [anon_sym_DASH_DASH] = ACTIONS(2808), - [anon_sym_PLUS_PLUS] = ACTIONS(2808), - [anon_sym_sizeof] = ACTIONS(2806), - [sym_number_literal] = ACTIONS(2808), - [anon_sym_L_SQUOTE] = ACTIONS(2808), - [anon_sym_u_SQUOTE] = ACTIONS(2808), - [anon_sym_U_SQUOTE] = ACTIONS(2808), - [anon_sym_u8_SQUOTE] = ACTIONS(2808), - [anon_sym_SQUOTE] = ACTIONS(2808), - [anon_sym_L_DQUOTE] = ACTIONS(2808), - [anon_sym_u_DQUOTE] = ACTIONS(2808), - [anon_sym_U_DQUOTE] = ACTIONS(2808), - [anon_sym_u8_DQUOTE] = ACTIONS(2808), - [anon_sym_DQUOTE] = ACTIONS(2808), - [sym_true] = ACTIONS(2806), - [sym_false] = ACTIONS(2806), - [sym_null] = ACTIONS(2806), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2806), - [anon_sym_decltype] = ACTIONS(2806), - [anon_sym_virtual] = ACTIONS(2806), - [anon_sym_explicit] = ACTIONS(2806), - [anon_sym_typename] = ACTIONS(2806), - [anon_sym_template] = ACTIONS(2806), - [anon_sym_operator] = ACTIONS(2806), - [anon_sym_try] = ACTIONS(2806), - [anon_sym_delete] = ACTIONS(2806), - [anon_sym_throw] = ACTIONS(2806), - [anon_sym_namespace] = ACTIONS(2806), - [anon_sym_using] = ACTIONS(2806), - [anon_sym_static_assert] = ACTIONS(2806), - [anon_sym_concept] = ACTIONS(2806), - [anon_sym_co_return] = ACTIONS(2806), - [anon_sym_co_yield] = ACTIONS(2806), - [anon_sym_R_DQUOTE] = ACTIONS(2808), - [anon_sym_LR_DQUOTE] = ACTIONS(2808), - [anon_sym_uR_DQUOTE] = ACTIONS(2808), - [anon_sym_UR_DQUOTE] = ACTIONS(2808), - [anon_sym_u8R_DQUOTE] = ACTIONS(2808), - [anon_sym_co_await] = ACTIONS(2806), - [anon_sym_new] = ACTIONS(2806), - [anon_sym_requires] = ACTIONS(2806), - [sym_this] = ACTIONS(2806), - [sym_nullptr] = ACTIONS(2806), + [1050] = { + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token2] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, - [1021] = { - [sym_identifier] = ACTIONS(2706), - [aux_sym_preproc_include_token1] = ACTIONS(2706), - [aux_sym_preproc_def_token1] = ACTIONS(2706), - [aux_sym_preproc_if_token1] = ACTIONS(2706), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2706), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2706), - [sym_preproc_directive] = ACTIONS(2706), - [anon_sym_LPAREN2] = ACTIONS(2708), - [anon_sym_BANG] = ACTIONS(2708), - [anon_sym_TILDE] = ACTIONS(2708), - [anon_sym_DASH] = ACTIONS(2706), - [anon_sym_PLUS] = ACTIONS(2706), - [anon_sym_STAR] = ACTIONS(2708), - [anon_sym_AMP_AMP] = ACTIONS(2708), - [anon_sym_AMP] = ACTIONS(2706), - [anon_sym_SEMI] = ACTIONS(2708), - [anon_sym_typedef] = ACTIONS(2706), - [anon_sym_extern] = ACTIONS(2706), - [anon_sym___attribute__] = ACTIONS(2706), - [anon_sym_COLON_COLON] = ACTIONS(2708), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2708), - [anon_sym___declspec] = ACTIONS(2706), - [anon_sym___based] = ACTIONS(2706), - [anon_sym___cdecl] = ACTIONS(2706), - [anon_sym___clrcall] = ACTIONS(2706), - [anon_sym___stdcall] = ACTIONS(2706), - [anon_sym___fastcall] = ACTIONS(2706), - [anon_sym___thiscall] = ACTIONS(2706), - [anon_sym___vectorcall] = ACTIONS(2706), - [anon_sym_LBRACE] = ACTIONS(2708), - [anon_sym_RBRACE] = ACTIONS(2708), - [anon_sym_LBRACK] = ACTIONS(2706), - [anon_sym_static] = ACTIONS(2706), - [anon_sym_register] = ACTIONS(2706), - [anon_sym_inline] = ACTIONS(2706), - [anon_sym_thread_local] = ACTIONS(2706), - [anon_sym_const] = ACTIONS(2706), - [anon_sym_volatile] = ACTIONS(2706), - [anon_sym_restrict] = ACTIONS(2706), - [anon_sym__Atomic] = ACTIONS(2706), - [anon_sym_mutable] = ACTIONS(2706), - [anon_sym_constexpr] = ACTIONS(2706), - [anon_sym_constinit] = ACTIONS(2706), - [anon_sym_consteval] = ACTIONS(2706), - [anon_sym_signed] = ACTIONS(2706), - [anon_sym_unsigned] = ACTIONS(2706), - [anon_sym_long] = ACTIONS(2706), - [anon_sym_short] = ACTIONS(2706), - [sym_primitive_type] = ACTIONS(2706), - [anon_sym_enum] = ACTIONS(2706), - [anon_sym_class] = ACTIONS(2706), - [anon_sym_struct] = ACTIONS(2706), - [anon_sym_union] = ACTIONS(2706), - [anon_sym_if] = ACTIONS(2706), - [anon_sym_switch] = ACTIONS(2706), - [anon_sym_case] = ACTIONS(2706), - [anon_sym_default] = ACTIONS(2706), - [anon_sym_while] = ACTIONS(2706), - [anon_sym_do] = ACTIONS(2706), - [anon_sym_for] = ACTIONS(2706), - [anon_sym_return] = ACTIONS(2706), - [anon_sym_break] = ACTIONS(2706), - [anon_sym_continue] = ACTIONS(2706), - [anon_sym_goto] = ACTIONS(2706), - [anon_sym_not] = ACTIONS(2706), - [anon_sym_compl] = ACTIONS(2706), - [anon_sym_DASH_DASH] = ACTIONS(2708), - [anon_sym_PLUS_PLUS] = ACTIONS(2708), - [anon_sym_sizeof] = ACTIONS(2706), - [sym_number_literal] = ACTIONS(2708), - [anon_sym_L_SQUOTE] = ACTIONS(2708), - [anon_sym_u_SQUOTE] = ACTIONS(2708), - [anon_sym_U_SQUOTE] = ACTIONS(2708), - [anon_sym_u8_SQUOTE] = ACTIONS(2708), - [anon_sym_SQUOTE] = ACTIONS(2708), - [anon_sym_L_DQUOTE] = ACTIONS(2708), - [anon_sym_u_DQUOTE] = ACTIONS(2708), - [anon_sym_U_DQUOTE] = ACTIONS(2708), - [anon_sym_u8_DQUOTE] = ACTIONS(2708), - [anon_sym_DQUOTE] = ACTIONS(2708), - [sym_true] = ACTIONS(2706), - [sym_false] = ACTIONS(2706), - [sym_null] = ACTIONS(2706), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2706), - [anon_sym_decltype] = ACTIONS(2706), - [anon_sym_virtual] = ACTIONS(2706), - [anon_sym_explicit] = ACTIONS(2706), - [anon_sym_typename] = ACTIONS(2706), - [anon_sym_template] = ACTIONS(2706), - [anon_sym_operator] = ACTIONS(2706), - [anon_sym_try] = ACTIONS(2706), - [anon_sym_delete] = ACTIONS(2706), - [anon_sym_throw] = ACTIONS(2706), - [anon_sym_namespace] = ACTIONS(2706), - [anon_sym_using] = ACTIONS(2706), - [anon_sym_static_assert] = ACTIONS(2706), - [anon_sym_concept] = ACTIONS(2706), - [anon_sym_co_return] = ACTIONS(2706), - [anon_sym_co_yield] = ACTIONS(2706), - [anon_sym_R_DQUOTE] = ACTIONS(2708), - [anon_sym_LR_DQUOTE] = ACTIONS(2708), - [anon_sym_uR_DQUOTE] = ACTIONS(2708), - [anon_sym_UR_DQUOTE] = ACTIONS(2708), - [anon_sym_u8R_DQUOTE] = ACTIONS(2708), - [anon_sym_co_await] = ACTIONS(2706), - [anon_sym_new] = ACTIONS(2706), - [anon_sym_requires] = ACTIONS(2706), - [sym_this] = ACTIONS(2706), - [sym_nullptr] = ACTIONS(2706), + [1051] = { + [ts_builtin_sym_end] = ACTIONS(3050), + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, - [1022] = { - [sym_identifier] = ACTIONS(2806), - [aux_sym_preproc_include_token1] = ACTIONS(2806), - [aux_sym_preproc_def_token1] = ACTIONS(2806), - [aux_sym_preproc_if_token1] = ACTIONS(2806), - [aux_sym_preproc_if_token2] = ACTIONS(2806), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2806), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2806), - [sym_preproc_directive] = ACTIONS(2806), - [anon_sym_LPAREN2] = ACTIONS(2808), - [anon_sym_BANG] = ACTIONS(2808), - [anon_sym_TILDE] = ACTIONS(2808), - [anon_sym_DASH] = ACTIONS(2806), - [anon_sym_PLUS] = ACTIONS(2806), - [anon_sym_STAR] = ACTIONS(2808), - [anon_sym_AMP_AMP] = ACTIONS(2808), - [anon_sym_AMP] = ACTIONS(2806), - [anon_sym_SEMI] = ACTIONS(2808), - [anon_sym_typedef] = ACTIONS(2806), - [anon_sym_extern] = ACTIONS(2806), - [anon_sym___attribute__] = ACTIONS(2806), - [anon_sym_COLON_COLON] = ACTIONS(2808), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2808), - [anon_sym___declspec] = ACTIONS(2806), - [anon_sym___based] = ACTIONS(2806), - [anon_sym___cdecl] = ACTIONS(2806), - [anon_sym___clrcall] = ACTIONS(2806), - [anon_sym___stdcall] = ACTIONS(2806), - [anon_sym___fastcall] = ACTIONS(2806), - [anon_sym___thiscall] = ACTIONS(2806), - [anon_sym___vectorcall] = ACTIONS(2806), - [anon_sym_LBRACE] = ACTIONS(2808), - [anon_sym_LBRACK] = ACTIONS(2806), - [anon_sym_static] = ACTIONS(2806), - [anon_sym_register] = ACTIONS(2806), - [anon_sym_inline] = ACTIONS(2806), - [anon_sym_thread_local] = ACTIONS(2806), - [anon_sym_const] = ACTIONS(2806), - [anon_sym_volatile] = ACTIONS(2806), - [anon_sym_restrict] = ACTIONS(2806), - [anon_sym__Atomic] = ACTIONS(2806), - [anon_sym_mutable] = ACTIONS(2806), - [anon_sym_constexpr] = ACTIONS(2806), - [anon_sym_constinit] = ACTIONS(2806), - [anon_sym_consteval] = ACTIONS(2806), - [anon_sym_signed] = ACTIONS(2806), - [anon_sym_unsigned] = ACTIONS(2806), - [anon_sym_long] = ACTIONS(2806), - [anon_sym_short] = ACTIONS(2806), - [sym_primitive_type] = ACTIONS(2806), - [anon_sym_enum] = ACTIONS(2806), - [anon_sym_class] = ACTIONS(2806), - [anon_sym_struct] = ACTIONS(2806), - [anon_sym_union] = ACTIONS(2806), - [anon_sym_if] = ACTIONS(2806), - [anon_sym_switch] = ACTIONS(2806), - [anon_sym_case] = ACTIONS(2806), - [anon_sym_default] = ACTIONS(2806), - [anon_sym_while] = ACTIONS(2806), - [anon_sym_do] = ACTIONS(2806), - [anon_sym_for] = ACTIONS(2806), - [anon_sym_return] = ACTIONS(2806), - [anon_sym_break] = ACTIONS(2806), - [anon_sym_continue] = ACTIONS(2806), - [anon_sym_goto] = ACTIONS(2806), - [anon_sym_not] = ACTIONS(2806), - [anon_sym_compl] = ACTIONS(2806), - [anon_sym_DASH_DASH] = ACTIONS(2808), - [anon_sym_PLUS_PLUS] = ACTIONS(2808), - [anon_sym_sizeof] = ACTIONS(2806), - [sym_number_literal] = ACTIONS(2808), - [anon_sym_L_SQUOTE] = ACTIONS(2808), - [anon_sym_u_SQUOTE] = ACTIONS(2808), - [anon_sym_U_SQUOTE] = ACTIONS(2808), - [anon_sym_u8_SQUOTE] = ACTIONS(2808), - [anon_sym_SQUOTE] = ACTIONS(2808), - [anon_sym_L_DQUOTE] = ACTIONS(2808), - [anon_sym_u_DQUOTE] = ACTIONS(2808), - [anon_sym_U_DQUOTE] = ACTIONS(2808), - [anon_sym_u8_DQUOTE] = ACTIONS(2808), - [anon_sym_DQUOTE] = ACTIONS(2808), - [sym_true] = ACTIONS(2806), - [sym_false] = ACTIONS(2806), - [sym_null] = ACTIONS(2806), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2806), - [anon_sym_decltype] = ACTIONS(2806), - [anon_sym_virtual] = ACTIONS(2806), - [anon_sym_explicit] = ACTIONS(2806), - [anon_sym_typename] = ACTIONS(2806), - [anon_sym_template] = ACTIONS(2806), - [anon_sym_operator] = ACTIONS(2806), - [anon_sym_try] = ACTIONS(2806), - [anon_sym_delete] = ACTIONS(2806), - [anon_sym_throw] = ACTIONS(2806), - [anon_sym_namespace] = ACTIONS(2806), - [anon_sym_using] = ACTIONS(2806), - [anon_sym_static_assert] = ACTIONS(2806), - [anon_sym_concept] = ACTIONS(2806), - [anon_sym_co_return] = ACTIONS(2806), - [anon_sym_co_yield] = ACTIONS(2806), - [anon_sym_R_DQUOTE] = ACTIONS(2808), - [anon_sym_LR_DQUOTE] = ACTIONS(2808), - [anon_sym_uR_DQUOTE] = ACTIONS(2808), - [anon_sym_UR_DQUOTE] = ACTIONS(2808), - [anon_sym_u8R_DQUOTE] = ACTIONS(2808), - [anon_sym_co_await] = ACTIONS(2806), - [anon_sym_new] = ACTIONS(2806), - [anon_sym_requires] = ACTIONS(2806), - [sym_this] = ACTIONS(2806), - [sym_nullptr] = ACTIONS(2806), + [1052] = { + [sym_identifier] = ACTIONS(3089), + [aux_sym_preproc_include_token1] = ACTIONS(3089), + [aux_sym_preproc_def_token1] = ACTIONS(3089), + [aux_sym_preproc_if_token1] = ACTIONS(3089), + [aux_sym_preproc_if_token2] = ACTIONS(3089), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3089), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3089), + [sym_preproc_directive] = ACTIONS(3089), + [anon_sym_LPAREN2] = ACTIONS(3091), + [anon_sym_BANG] = ACTIONS(3091), + [anon_sym_TILDE] = ACTIONS(3091), + [anon_sym_DASH] = ACTIONS(3089), + [anon_sym_PLUS] = ACTIONS(3089), + [anon_sym_STAR] = ACTIONS(3091), + [anon_sym_AMP_AMP] = ACTIONS(3091), + [anon_sym_AMP] = ACTIONS(3089), + [anon_sym_SEMI] = ACTIONS(3091), + [anon_sym_typedef] = ACTIONS(3089), + [anon_sym_extern] = ACTIONS(3089), + [anon_sym___attribute__] = ACTIONS(3089), + [anon_sym_COLON_COLON] = ACTIONS(3091), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3091), + [anon_sym___declspec] = ACTIONS(3089), + [anon_sym___based] = ACTIONS(3089), + [anon_sym___cdecl] = ACTIONS(3089), + [anon_sym___clrcall] = ACTIONS(3089), + [anon_sym___stdcall] = ACTIONS(3089), + [anon_sym___fastcall] = ACTIONS(3089), + [anon_sym___thiscall] = ACTIONS(3089), + [anon_sym___vectorcall] = ACTIONS(3089), + [anon_sym_LBRACE] = ACTIONS(3091), + [anon_sym_LBRACK] = ACTIONS(3089), + [anon_sym_static] = ACTIONS(3089), + [anon_sym_register] = ACTIONS(3089), + [anon_sym_inline] = ACTIONS(3089), + [anon_sym_thread_local] = ACTIONS(3089), + [anon_sym_const] = ACTIONS(3089), + [anon_sym_constexpr] = ACTIONS(3089), + [anon_sym_volatile] = ACTIONS(3089), + [anon_sym_restrict] = ACTIONS(3089), + [anon_sym___restrict__] = ACTIONS(3089), + [anon_sym__Atomic] = ACTIONS(3089), + [anon_sym__Noreturn] = ACTIONS(3089), + [anon_sym_noreturn] = ACTIONS(3089), + [anon_sym_mutable] = ACTIONS(3089), + [anon_sym_constinit] = ACTIONS(3089), + [anon_sym_consteval] = ACTIONS(3089), + [anon_sym_signed] = ACTIONS(3089), + [anon_sym_unsigned] = ACTIONS(3089), + [anon_sym_long] = ACTIONS(3089), + [anon_sym_short] = ACTIONS(3089), + [sym_primitive_type] = ACTIONS(3089), + [anon_sym_enum] = ACTIONS(3089), + [anon_sym_class] = ACTIONS(3089), + [anon_sym_struct] = ACTIONS(3089), + [anon_sym_union] = ACTIONS(3089), + [anon_sym_if] = ACTIONS(3089), + [anon_sym_else] = ACTIONS(3089), + [anon_sym_switch] = ACTIONS(3089), + [anon_sym_case] = ACTIONS(3089), + [anon_sym_default] = ACTIONS(3089), + [anon_sym_while] = ACTIONS(3089), + [anon_sym_do] = ACTIONS(3089), + [anon_sym_for] = ACTIONS(3089), + [anon_sym_return] = ACTIONS(3089), + [anon_sym_break] = ACTIONS(3089), + [anon_sym_continue] = ACTIONS(3089), + [anon_sym_goto] = ACTIONS(3089), + [anon_sym_not] = ACTIONS(3089), + [anon_sym_compl] = ACTIONS(3089), + [anon_sym_DASH_DASH] = ACTIONS(3091), + [anon_sym_PLUS_PLUS] = ACTIONS(3091), + [anon_sym_sizeof] = ACTIONS(3089), + [anon_sym_offsetof] = ACTIONS(3089), + [anon_sym__Generic] = ACTIONS(3089), + [anon_sym_asm] = ACTIONS(3089), + [anon_sym___asm__] = ACTIONS(3089), + [sym_number_literal] = ACTIONS(3091), + [anon_sym_L_SQUOTE] = ACTIONS(3091), + [anon_sym_u_SQUOTE] = ACTIONS(3091), + [anon_sym_U_SQUOTE] = ACTIONS(3091), + [anon_sym_u8_SQUOTE] = ACTIONS(3091), + [anon_sym_SQUOTE] = ACTIONS(3091), + [anon_sym_L_DQUOTE] = ACTIONS(3091), + [anon_sym_u_DQUOTE] = ACTIONS(3091), + [anon_sym_U_DQUOTE] = ACTIONS(3091), + [anon_sym_u8_DQUOTE] = ACTIONS(3091), + [anon_sym_DQUOTE] = ACTIONS(3091), + [sym_true] = ACTIONS(3089), + [sym_false] = ACTIONS(3089), + [anon_sym_NULL] = ACTIONS(3089), + [anon_sym_nullptr] = ACTIONS(3089), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3089), + [anon_sym_decltype] = ACTIONS(3089), + [anon_sym_virtual] = ACTIONS(3089), + [anon_sym_explicit] = ACTIONS(3089), + [anon_sym_typename] = ACTIONS(3089), + [anon_sym_template] = ACTIONS(3089), + [anon_sym_operator] = ACTIONS(3089), + [anon_sym_try] = ACTIONS(3089), + [anon_sym_delete] = ACTIONS(3089), + [anon_sym_throw] = ACTIONS(3089), + [anon_sym_namespace] = ACTIONS(3089), + [anon_sym_using] = ACTIONS(3089), + [anon_sym_static_assert] = ACTIONS(3089), + [anon_sym_concept] = ACTIONS(3089), + [anon_sym_co_return] = ACTIONS(3089), + [anon_sym_co_yield] = ACTIONS(3089), + [anon_sym_R_DQUOTE] = ACTIONS(3091), + [anon_sym_LR_DQUOTE] = ACTIONS(3091), + [anon_sym_uR_DQUOTE] = ACTIONS(3091), + [anon_sym_UR_DQUOTE] = ACTIONS(3091), + [anon_sym_u8R_DQUOTE] = ACTIONS(3091), + [anon_sym_co_await] = ACTIONS(3089), + [anon_sym_new] = ACTIONS(3089), + [anon_sym_requires] = ACTIONS(3089), + [sym_this] = ACTIONS(3089), }, - [1023] = { + [1053] = { + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token2] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), + }, + [1054] = { + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token2] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), + }, + [1055] = { + [ts_builtin_sym_end] = ACTIONS(3050), + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), + }, + [1056] = { + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_RBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), + }, + [1057] = { + [ts_builtin_sym_end] = ACTIONS(3050), + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), + }, + [1058] = { + [ts_builtin_sym_end] = ACTIONS(3050), + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), + }, + [1059] = { + [ts_builtin_sym_end] = ACTIONS(3050), + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), + }, + [1060] = { + [ts_builtin_sym_end] = ACTIONS(3050), + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), + }, + [1061] = { + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token2] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), + }, + [1062] = { + [sym_identifier] = ACTIONS(2912), + [aux_sym_preproc_include_token1] = ACTIONS(2912), + [aux_sym_preproc_def_token1] = ACTIONS(2912), + [aux_sym_preproc_if_token1] = ACTIONS(2912), + [aux_sym_preproc_if_token2] = ACTIONS(2912), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2912), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2912), + [sym_preproc_directive] = ACTIONS(2912), + [anon_sym_LPAREN2] = ACTIONS(2914), + [anon_sym_BANG] = ACTIONS(2914), + [anon_sym_TILDE] = ACTIONS(2914), + [anon_sym_DASH] = ACTIONS(2912), + [anon_sym_PLUS] = ACTIONS(2912), + [anon_sym_STAR] = ACTIONS(2914), + [anon_sym_AMP_AMP] = ACTIONS(2914), + [anon_sym_AMP] = ACTIONS(2912), + [anon_sym_SEMI] = ACTIONS(2914), + [anon_sym_typedef] = ACTIONS(2912), + [anon_sym_extern] = ACTIONS(2912), + [anon_sym___attribute__] = ACTIONS(2912), + [anon_sym_COLON_COLON] = ACTIONS(2914), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2914), + [anon_sym___declspec] = ACTIONS(2912), + [anon_sym___based] = ACTIONS(2912), + [anon_sym___cdecl] = ACTIONS(2912), + [anon_sym___clrcall] = ACTIONS(2912), + [anon_sym___stdcall] = ACTIONS(2912), + [anon_sym___fastcall] = ACTIONS(2912), + [anon_sym___thiscall] = ACTIONS(2912), + [anon_sym___vectorcall] = ACTIONS(2912), + [anon_sym_LBRACE] = ACTIONS(2914), + [anon_sym_LBRACK] = ACTIONS(2912), + [anon_sym_static] = ACTIONS(2912), + [anon_sym_register] = ACTIONS(2912), + [anon_sym_inline] = ACTIONS(2912), + [anon_sym_thread_local] = ACTIONS(2912), + [anon_sym_const] = ACTIONS(2912), + [anon_sym_constexpr] = ACTIONS(2912), + [anon_sym_volatile] = ACTIONS(2912), + [anon_sym_restrict] = ACTIONS(2912), + [anon_sym___restrict__] = ACTIONS(2912), + [anon_sym__Atomic] = ACTIONS(2912), + [anon_sym__Noreturn] = ACTIONS(2912), + [anon_sym_noreturn] = ACTIONS(2912), + [anon_sym_mutable] = ACTIONS(2912), + [anon_sym_constinit] = ACTIONS(2912), + [anon_sym_consteval] = ACTIONS(2912), + [anon_sym_signed] = ACTIONS(2912), + [anon_sym_unsigned] = ACTIONS(2912), + [anon_sym_long] = ACTIONS(2912), + [anon_sym_short] = ACTIONS(2912), + [sym_primitive_type] = ACTIONS(2912), + [anon_sym_enum] = ACTIONS(2912), + [anon_sym_class] = ACTIONS(2912), + [anon_sym_struct] = ACTIONS(2912), + [anon_sym_union] = ACTIONS(2912), + [anon_sym_if] = ACTIONS(2912), + [anon_sym_else] = ACTIONS(2912), + [anon_sym_switch] = ACTIONS(2912), + [anon_sym_case] = ACTIONS(2912), + [anon_sym_default] = ACTIONS(2912), + [anon_sym_while] = ACTIONS(2912), + [anon_sym_do] = ACTIONS(2912), + [anon_sym_for] = ACTIONS(2912), + [anon_sym_return] = ACTIONS(2912), + [anon_sym_break] = ACTIONS(2912), + [anon_sym_continue] = ACTIONS(2912), + [anon_sym_goto] = ACTIONS(2912), + [anon_sym_not] = ACTIONS(2912), + [anon_sym_compl] = ACTIONS(2912), + [anon_sym_DASH_DASH] = ACTIONS(2914), + [anon_sym_PLUS_PLUS] = ACTIONS(2914), + [anon_sym_sizeof] = ACTIONS(2912), + [anon_sym_offsetof] = ACTIONS(2912), + [anon_sym__Generic] = ACTIONS(2912), + [anon_sym_asm] = ACTIONS(2912), + [anon_sym___asm__] = ACTIONS(2912), + [sym_number_literal] = ACTIONS(2914), + [anon_sym_L_SQUOTE] = ACTIONS(2914), + [anon_sym_u_SQUOTE] = ACTIONS(2914), + [anon_sym_U_SQUOTE] = ACTIONS(2914), + [anon_sym_u8_SQUOTE] = ACTIONS(2914), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_L_DQUOTE] = ACTIONS(2914), + [anon_sym_u_DQUOTE] = ACTIONS(2914), + [anon_sym_U_DQUOTE] = ACTIONS(2914), + [anon_sym_u8_DQUOTE] = ACTIONS(2914), + [anon_sym_DQUOTE] = ACTIONS(2914), + [sym_true] = ACTIONS(2912), + [sym_false] = ACTIONS(2912), + [anon_sym_NULL] = ACTIONS(2912), + [anon_sym_nullptr] = ACTIONS(2912), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2912), + [anon_sym_decltype] = ACTIONS(2912), + [anon_sym_virtual] = ACTIONS(2912), + [anon_sym_explicit] = ACTIONS(2912), + [anon_sym_typename] = ACTIONS(2912), + [anon_sym_template] = ACTIONS(2912), + [anon_sym_operator] = ACTIONS(2912), + [anon_sym_try] = ACTIONS(2912), + [anon_sym_delete] = ACTIONS(2912), + [anon_sym_throw] = ACTIONS(2912), + [anon_sym_namespace] = ACTIONS(2912), + [anon_sym_using] = ACTIONS(2912), + [anon_sym_static_assert] = ACTIONS(2912), + [anon_sym_concept] = ACTIONS(2912), + [anon_sym_co_return] = ACTIONS(2912), + [anon_sym_co_yield] = ACTIONS(2912), + [anon_sym_R_DQUOTE] = ACTIONS(2914), + [anon_sym_LR_DQUOTE] = ACTIONS(2914), + [anon_sym_uR_DQUOTE] = ACTIONS(2914), + [anon_sym_UR_DQUOTE] = ACTIONS(2914), + [anon_sym_u8R_DQUOTE] = ACTIONS(2914), + [anon_sym_co_await] = ACTIONS(2912), + [anon_sym_new] = ACTIONS(2912), + [anon_sym_requires] = ACTIONS(2912), + [sym_this] = ACTIONS(2912), + }, + [1063] = { + [ts_builtin_sym_end] = ACTIONS(3050), + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), + }, + [1064] = { + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token2] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), + }, + [1065] = { + [ts_builtin_sym_end] = ACTIONS(3018), + [sym_identifier] = ACTIONS(3016), + [aux_sym_preproc_include_token1] = ACTIONS(3016), + [aux_sym_preproc_def_token1] = ACTIONS(3016), + [aux_sym_preproc_if_token1] = ACTIONS(3016), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3016), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3016), + [sym_preproc_directive] = ACTIONS(3016), + [anon_sym_LPAREN2] = ACTIONS(3018), + [anon_sym_BANG] = ACTIONS(3018), + [anon_sym_TILDE] = ACTIONS(3018), + [anon_sym_DASH] = ACTIONS(3016), + [anon_sym_PLUS] = ACTIONS(3016), + [anon_sym_STAR] = ACTIONS(3018), + [anon_sym_AMP_AMP] = ACTIONS(3018), + [anon_sym_AMP] = ACTIONS(3016), + [anon_sym_SEMI] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3016), + [anon_sym_extern] = ACTIONS(3016), + [anon_sym___attribute__] = ACTIONS(3016), + [anon_sym_COLON_COLON] = ACTIONS(3018), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3018), + [anon_sym___declspec] = ACTIONS(3016), + [anon_sym___based] = ACTIONS(3016), + [anon_sym___cdecl] = ACTIONS(3016), + [anon_sym___clrcall] = ACTIONS(3016), + [anon_sym___stdcall] = ACTIONS(3016), + [anon_sym___fastcall] = ACTIONS(3016), + [anon_sym___thiscall] = ACTIONS(3016), + [anon_sym___vectorcall] = ACTIONS(3016), + [anon_sym_LBRACE] = ACTIONS(3018), + [anon_sym_LBRACK] = ACTIONS(3016), + [anon_sym_static] = ACTIONS(3016), + [anon_sym_register] = ACTIONS(3016), + [anon_sym_inline] = ACTIONS(3016), + [anon_sym_thread_local] = ACTIONS(3016), + [anon_sym_const] = ACTIONS(3016), + [anon_sym_constexpr] = ACTIONS(3016), + [anon_sym_volatile] = ACTIONS(3016), + [anon_sym_restrict] = ACTIONS(3016), + [anon_sym___restrict__] = ACTIONS(3016), + [anon_sym__Atomic] = ACTIONS(3016), + [anon_sym__Noreturn] = ACTIONS(3016), + [anon_sym_noreturn] = ACTIONS(3016), + [anon_sym_mutable] = ACTIONS(3016), + [anon_sym_constinit] = ACTIONS(3016), + [anon_sym_consteval] = ACTIONS(3016), + [anon_sym_signed] = ACTIONS(3016), + [anon_sym_unsigned] = ACTIONS(3016), + [anon_sym_long] = ACTIONS(3016), + [anon_sym_short] = ACTIONS(3016), + [sym_primitive_type] = ACTIONS(3016), + [anon_sym_enum] = ACTIONS(3016), + [anon_sym_class] = ACTIONS(3016), + [anon_sym_struct] = ACTIONS(3016), + [anon_sym_union] = ACTIONS(3016), + [anon_sym_if] = ACTIONS(3016), + [anon_sym_else] = ACTIONS(3016), + [anon_sym_switch] = ACTIONS(3016), + [anon_sym_case] = ACTIONS(3016), + [anon_sym_default] = ACTIONS(3016), + [anon_sym_while] = ACTIONS(3016), + [anon_sym_do] = ACTIONS(3016), + [anon_sym_for] = ACTIONS(3016), + [anon_sym_return] = ACTIONS(3016), + [anon_sym_break] = ACTIONS(3016), + [anon_sym_continue] = ACTIONS(3016), + [anon_sym_goto] = ACTIONS(3016), + [anon_sym_not] = ACTIONS(3016), + [anon_sym_compl] = ACTIONS(3016), + [anon_sym_DASH_DASH] = ACTIONS(3018), + [anon_sym_PLUS_PLUS] = ACTIONS(3018), + [anon_sym_sizeof] = ACTIONS(3016), + [anon_sym_offsetof] = ACTIONS(3016), + [anon_sym__Generic] = ACTIONS(3016), + [anon_sym_asm] = ACTIONS(3016), + [anon_sym___asm__] = ACTIONS(3016), + [sym_number_literal] = ACTIONS(3018), + [anon_sym_L_SQUOTE] = ACTIONS(3018), + [anon_sym_u_SQUOTE] = ACTIONS(3018), + [anon_sym_U_SQUOTE] = ACTIONS(3018), + [anon_sym_u8_SQUOTE] = ACTIONS(3018), + [anon_sym_SQUOTE] = ACTIONS(3018), + [anon_sym_L_DQUOTE] = ACTIONS(3018), + [anon_sym_u_DQUOTE] = ACTIONS(3018), + [anon_sym_U_DQUOTE] = ACTIONS(3018), + [anon_sym_u8_DQUOTE] = ACTIONS(3018), + [anon_sym_DQUOTE] = ACTIONS(3018), + [sym_true] = ACTIONS(3016), + [sym_false] = ACTIONS(3016), + [anon_sym_NULL] = ACTIONS(3016), + [anon_sym_nullptr] = ACTIONS(3016), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3016), + [anon_sym_decltype] = ACTIONS(3016), + [anon_sym_virtual] = ACTIONS(3016), + [anon_sym_explicit] = ACTIONS(3016), + [anon_sym_typename] = ACTIONS(3016), + [anon_sym_template] = ACTIONS(3016), + [anon_sym_operator] = ACTIONS(3016), + [anon_sym_try] = ACTIONS(3016), + [anon_sym_delete] = ACTIONS(3016), + [anon_sym_throw] = ACTIONS(3016), + [anon_sym_namespace] = ACTIONS(3016), + [anon_sym_using] = ACTIONS(3016), + [anon_sym_static_assert] = ACTIONS(3016), + [anon_sym_concept] = ACTIONS(3016), + [anon_sym_co_return] = ACTIONS(3016), + [anon_sym_co_yield] = ACTIONS(3016), + [anon_sym_R_DQUOTE] = ACTIONS(3018), + [anon_sym_LR_DQUOTE] = ACTIONS(3018), + [anon_sym_uR_DQUOTE] = ACTIONS(3018), + [anon_sym_UR_DQUOTE] = ACTIONS(3018), + [anon_sym_u8R_DQUOTE] = ACTIONS(3018), + [anon_sym_co_await] = ACTIONS(3016), + [anon_sym_new] = ACTIONS(3016), + [anon_sym_requires] = ACTIONS(3016), + [sym_this] = ACTIONS(3016), + }, + [1066] = { + [ts_builtin_sym_end] = ACTIONS(3014), + [sym_identifier] = ACTIONS(3012), + [aux_sym_preproc_include_token1] = ACTIONS(3012), + [aux_sym_preproc_def_token1] = ACTIONS(3012), + [aux_sym_preproc_if_token1] = ACTIONS(3012), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3012), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3012), + [sym_preproc_directive] = ACTIONS(3012), + [anon_sym_LPAREN2] = ACTIONS(3014), + [anon_sym_BANG] = ACTIONS(3014), + [anon_sym_TILDE] = ACTIONS(3014), + [anon_sym_DASH] = ACTIONS(3012), + [anon_sym_PLUS] = ACTIONS(3012), + [anon_sym_STAR] = ACTIONS(3014), + [anon_sym_AMP_AMP] = ACTIONS(3014), + [anon_sym_AMP] = ACTIONS(3012), + [anon_sym_SEMI] = ACTIONS(3014), + [anon_sym_typedef] = ACTIONS(3012), + [anon_sym_extern] = ACTIONS(3012), + [anon_sym___attribute__] = ACTIONS(3012), + [anon_sym_COLON_COLON] = ACTIONS(3014), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3014), + [anon_sym___declspec] = ACTIONS(3012), + [anon_sym___based] = ACTIONS(3012), + [anon_sym___cdecl] = ACTIONS(3012), + [anon_sym___clrcall] = ACTIONS(3012), + [anon_sym___stdcall] = ACTIONS(3012), + [anon_sym___fastcall] = ACTIONS(3012), + [anon_sym___thiscall] = ACTIONS(3012), + [anon_sym___vectorcall] = ACTIONS(3012), + [anon_sym_LBRACE] = ACTIONS(3014), + [anon_sym_LBRACK] = ACTIONS(3012), + [anon_sym_static] = ACTIONS(3012), + [anon_sym_register] = ACTIONS(3012), + [anon_sym_inline] = ACTIONS(3012), + [anon_sym_thread_local] = ACTIONS(3012), + [anon_sym_const] = ACTIONS(3012), + [anon_sym_constexpr] = ACTIONS(3012), + [anon_sym_volatile] = ACTIONS(3012), + [anon_sym_restrict] = ACTIONS(3012), + [anon_sym___restrict__] = ACTIONS(3012), + [anon_sym__Atomic] = ACTIONS(3012), + [anon_sym__Noreturn] = ACTIONS(3012), + [anon_sym_noreturn] = ACTIONS(3012), + [anon_sym_mutable] = ACTIONS(3012), + [anon_sym_constinit] = ACTIONS(3012), + [anon_sym_consteval] = ACTIONS(3012), + [anon_sym_signed] = ACTIONS(3012), + [anon_sym_unsigned] = ACTIONS(3012), + [anon_sym_long] = ACTIONS(3012), + [anon_sym_short] = ACTIONS(3012), + [sym_primitive_type] = ACTIONS(3012), + [anon_sym_enum] = ACTIONS(3012), + [anon_sym_class] = ACTIONS(3012), + [anon_sym_struct] = ACTIONS(3012), + [anon_sym_union] = ACTIONS(3012), + [anon_sym_if] = ACTIONS(3012), + [anon_sym_else] = ACTIONS(3012), + [anon_sym_switch] = ACTIONS(3012), + [anon_sym_case] = ACTIONS(3012), + [anon_sym_default] = ACTIONS(3012), + [anon_sym_while] = ACTIONS(3012), + [anon_sym_do] = ACTIONS(3012), + [anon_sym_for] = ACTIONS(3012), + [anon_sym_return] = ACTIONS(3012), + [anon_sym_break] = ACTIONS(3012), + [anon_sym_continue] = ACTIONS(3012), + [anon_sym_goto] = ACTIONS(3012), + [anon_sym_not] = ACTIONS(3012), + [anon_sym_compl] = ACTIONS(3012), + [anon_sym_DASH_DASH] = ACTIONS(3014), + [anon_sym_PLUS_PLUS] = ACTIONS(3014), + [anon_sym_sizeof] = ACTIONS(3012), + [anon_sym_offsetof] = ACTIONS(3012), + [anon_sym__Generic] = ACTIONS(3012), + [anon_sym_asm] = ACTIONS(3012), + [anon_sym___asm__] = ACTIONS(3012), + [sym_number_literal] = ACTIONS(3014), + [anon_sym_L_SQUOTE] = ACTIONS(3014), + [anon_sym_u_SQUOTE] = ACTIONS(3014), + [anon_sym_U_SQUOTE] = ACTIONS(3014), + [anon_sym_u8_SQUOTE] = ACTIONS(3014), + [anon_sym_SQUOTE] = ACTIONS(3014), + [anon_sym_L_DQUOTE] = ACTIONS(3014), + [anon_sym_u_DQUOTE] = ACTIONS(3014), + [anon_sym_U_DQUOTE] = ACTIONS(3014), + [anon_sym_u8_DQUOTE] = ACTIONS(3014), + [anon_sym_DQUOTE] = ACTIONS(3014), + [sym_true] = ACTIONS(3012), + [sym_false] = ACTIONS(3012), + [anon_sym_NULL] = ACTIONS(3012), + [anon_sym_nullptr] = ACTIONS(3012), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3012), + [anon_sym_decltype] = ACTIONS(3012), + [anon_sym_virtual] = ACTIONS(3012), + [anon_sym_explicit] = ACTIONS(3012), + [anon_sym_typename] = ACTIONS(3012), + [anon_sym_template] = ACTIONS(3012), + [anon_sym_operator] = ACTIONS(3012), + [anon_sym_try] = ACTIONS(3012), + [anon_sym_delete] = ACTIONS(3012), + [anon_sym_throw] = ACTIONS(3012), + [anon_sym_namespace] = ACTIONS(3012), + [anon_sym_using] = ACTIONS(3012), + [anon_sym_static_assert] = ACTIONS(3012), + [anon_sym_concept] = ACTIONS(3012), + [anon_sym_co_return] = ACTIONS(3012), + [anon_sym_co_yield] = ACTIONS(3012), + [anon_sym_R_DQUOTE] = ACTIONS(3014), + [anon_sym_LR_DQUOTE] = ACTIONS(3014), + [anon_sym_uR_DQUOTE] = ACTIONS(3014), + [anon_sym_UR_DQUOTE] = ACTIONS(3014), + [anon_sym_u8R_DQUOTE] = ACTIONS(3014), + [anon_sym_co_await] = ACTIONS(3012), + [anon_sym_new] = ACTIONS(3012), + [anon_sym_requires] = ACTIONS(3012), + [sym_this] = ACTIONS(3012), + }, + [1067] = { + [sym_identifier] = ACTIONS(2924), + [aux_sym_preproc_include_token1] = ACTIONS(2924), + [aux_sym_preproc_def_token1] = ACTIONS(2924), + [aux_sym_preproc_if_token1] = ACTIONS(2924), + [aux_sym_preproc_if_token2] = ACTIONS(2924), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2924), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2924), + [sym_preproc_directive] = ACTIONS(2924), + [anon_sym_LPAREN2] = ACTIONS(2926), + [anon_sym_BANG] = ACTIONS(2926), + [anon_sym_TILDE] = ACTIONS(2926), + [anon_sym_DASH] = ACTIONS(2924), + [anon_sym_PLUS] = ACTIONS(2924), + [anon_sym_STAR] = ACTIONS(2926), + [anon_sym_AMP_AMP] = ACTIONS(2926), + [anon_sym_AMP] = ACTIONS(2924), + [anon_sym_SEMI] = ACTIONS(2926), + [anon_sym_typedef] = ACTIONS(2924), + [anon_sym_extern] = ACTIONS(2924), + [anon_sym___attribute__] = ACTIONS(2924), + [anon_sym_COLON_COLON] = ACTIONS(2926), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2926), + [anon_sym___declspec] = ACTIONS(2924), + [anon_sym___based] = ACTIONS(2924), + [anon_sym___cdecl] = ACTIONS(2924), + [anon_sym___clrcall] = ACTIONS(2924), + [anon_sym___stdcall] = ACTIONS(2924), + [anon_sym___fastcall] = ACTIONS(2924), + [anon_sym___thiscall] = ACTIONS(2924), + [anon_sym___vectorcall] = ACTIONS(2924), + [anon_sym_LBRACE] = ACTIONS(2926), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_static] = ACTIONS(2924), + [anon_sym_register] = ACTIONS(2924), + [anon_sym_inline] = ACTIONS(2924), + [anon_sym_thread_local] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(2924), + [anon_sym_constexpr] = ACTIONS(2924), + [anon_sym_volatile] = ACTIONS(2924), + [anon_sym_restrict] = ACTIONS(2924), + [anon_sym___restrict__] = ACTIONS(2924), + [anon_sym__Atomic] = ACTIONS(2924), + [anon_sym__Noreturn] = ACTIONS(2924), + [anon_sym_noreturn] = ACTIONS(2924), + [anon_sym_mutable] = ACTIONS(2924), + [anon_sym_constinit] = ACTIONS(2924), + [anon_sym_consteval] = ACTIONS(2924), + [anon_sym_signed] = ACTIONS(2924), + [anon_sym_unsigned] = ACTIONS(2924), + [anon_sym_long] = ACTIONS(2924), + [anon_sym_short] = ACTIONS(2924), + [sym_primitive_type] = ACTIONS(2924), + [anon_sym_enum] = ACTIONS(2924), + [anon_sym_class] = ACTIONS(2924), + [anon_sym_struct] = ACTIONS(2924), + [anon_sym_union] = ACTIONS(2924), + [anon_sym_if] = ACTIONS(2924), + [anon_sym_else] = ACTIONS(2924), + [anon_sym_switch] = ACTIONS(2924), + [anon_sym_case] = ACTIONS(2924), + [anon_sym_default] = ACTIONS(2924), + [anon_sym_while] = ACTIONS(2924), + [anon_sym_do] = ACTIONS(2924), + [anon_sym_for] = ACTIONS(2924), + [anon_sym_return] = ACTIONS(2924), + [anon_sym_break] = ACTIONS(2924), + [anon_sym_continue] = ACTIONS(2924), + [anon_sym_goto] = ACTIONS(2924), + [anon_sym_not] = ACTIONS(2924), + [anon_sym_compl] = ACTIONS(2924), + [anon_sym_DASH_DASH] = ACTIONS(2926), + [anon_sym_PLUS_PLUS] = ACTIONS(2926), + [anon_sym_sizeof] = ACTIONS(2924), + [anon_sym_offsetof] = ACTIONS(2924), + [anon_sym__Generic] = ACTIONS(2924), + [anon_sym_asm] = ACTIONS(2924), + [anon_sym___asm__] = ACTIONS(2924), + [sym_number_literal] = ACTIONS(2926), + [anon_sym_L_SQUOTE] = ACTIONS(2926), + [anon_sym_u_SQUOTE] = ACTIONS(2926), + [anon_sym_U_SQUOTE] = ACTIONS(2926), + [anon_sym_u8_SQUOTE] = ACTIONS(2926), + [anon_sym_SQUOTE] = ACTIONS(2926), + [anon_sym_L_DQUOTE] = ACTIONS(2926), + [anon_sym_u_DQUOTE] = ACTIONS(2926), + [anon_sym_U_DQUOTE] = ACTIONS(2926), + [anon_sym_u8_DQUOTE] = ACTIONS(2926), + [anon_sym_DQUOTE] = ACTIONS(2926), + [sym_true] = ACTIONS(2924), + [sym_false] = ACTIONS(2924), + [anon_sym_NULL] = ACTIONS(2924), + [anon_sym_nullptr] = ACTIONS(2924), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2924), + [anon_sym_decltype] = ACTIONS(2924), + [anon_sym_virtual] = ACTIONS(2924), + [anon_sym_explicit] = ACTIONS(2924), + [anon_sym_typename] = ACTIONS(2924), + [anon_sym_template] = ACTIONS(2924), + [anon_sym_operator] = ACTIONS(2924), + [anon_sym_try] = ACTIONS(2924), + [anon_sym_delete] = ACTIONS(2924), + [anon_sym_throw] = ACTIONS(2924), + [anon_sym_namespace] = ACTIONS(2924), + [anon_sym_using] = ACTIONS(2924), + [anon_sym_static_assert] = ACTIONS(2924), + [anon_sym_concept] = ACTIONS(2924), + [anon_sym_co_return] = ACTIONS(2924), + [anon_sym_co_yield] = ACTIONS(2924), + [anon_sym_R_DQUOTE] = ACTIONS(2926), + [anon_sym_LR_DQUOTE] = ACTIONS(2926), + [anon_sym_uR_DQUOTE] = ACTIONS(2926), + [anon_sym_UR_DQUOTE] = ACTIONS(2926), + [anon_sym_u8R_DQUOTE] = ACTIONS(2926), + [anon_sym_co_await] = ACTIONS(2924), + [anon_sym_new] = ACTIONS(2924), + [anon_sym_requires] = ACTIONS(2924), + [sym_this] = ACTIONS(2924), + }, + [1068] = { + [sym_identifier] = ACTIONS(3008), + [aux_sym_preproc_include_token1] = ACTIONS(3008), + [aux_sym_preproc_def_token1] = ACTIONS(3008), + [aux_sym_preproc_if_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3008), + [anon_sym_LPAREN2] = ACTIONS(3010), + [anon_sym_BANG] = ACTIONS(3010), + [anon_sym_TILDE] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3008), + [anon_sym_PLUS] = ACTIONS(3008), + [anon_sym_STAR] = ACTIONS(3010), + [anon_sym_AMP_AMP] = ACTIONS(3010), + [anon_sym_AMP] = ACTIONS(3008), + [anon_sym_SEMI] = ACTIONS(3010), + [anon_sym_typedef] = ACTIONS(3008), + [anon_sym_extern] = ACTIONS(3008), + [anon_sym___attribute__] = ACTIONS(3008), + [anon_sym_COLON_COLON] = ACTIONS(3010), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3010), + [anon_sym___declspec] = ACTIONS(3008), + [anon_sym___based] = ACTIONS(3008), + [anon_sym___cdecl] = ACTIONS(3008), + [anon_sym___clrcall] = ACTIONS(3008), + [anon_sym___stdcall] = ACTIONS(3008), + [anon_sym___fastcall] = ACTIONS(3008), + [anon_sym___thiscall] = ACTIONS(3008), + [anon_sym___vectorcall] = ACTIONS(3008), + [anon_sym_LBRACE] = ACTIONS(3010), + [anon_sym_RBRACE] = ACTIONS(3010), + [anon_sym_LBRACK] = ACTIONS(3008), + [anon_sym_static] = ACTIONS(3008), + [anon_sym_register] = ACTIONS(3008), + [anon_sym_inline] = ACTIONS(3008), + [anon_sym_thread_local] = ACTIONS(3008), + [anon_sym_const] = ACTIONS(3008), + [anon_sym_constexpr] = ACTIONS(3008), + [anon_sym_volatile] = ACTIONS(3008), + [anon_sym_restrict] = ACTIONS(3008), + [anon_sym___restrict__] = ACTIONS(3008), + [anon_sym__Atomic] = ACTIONS(3008), + [anon_sym__Noreturn] = ACTIONS(3008), + [anon_sym_noreturn] = ACTIONS(3008), + [anon_sym_mutable] = ACTIONS(3008), + [anon_sym_constinit] = ACTIONS(3008), + [anon_sym_consteval] = ACTIONS(3008), + [anon_sym_signed] = ACTIONS(3008), + [anon_sym_unsigned] = ACTIONS(3008), + [anon_sym_long] = ACTIONS(3008), + [anon_sym_short] = ACTIONS(3008), + [sym_primitive_type] = ACTIONS(3008), + [anon_sym_enum] = ACTIONS(3008), + [anon_sym_class] = ACTIONS(3008), + [anon_sym_struct] = ACTIONS(3008), + [anon_sym_union] = ACTIONS(3008), + [anon_sym_if] = ACTIONS(3008), + [anon_sym_else] = ACTIONS(3008), + [anon_sym_switch] = ACTIONS(3008), + [anon_sym_case] = ACTIONS(3008), + [anon_sym_default] = ACTIONS(3008), + [anon_sym_while] = ACTIONS(3008), + [anon_sym_do] = ACTIONS(3008), + [anon_sym_for] = ACTIONS(3008), + [anon_sym_return] = ACTIONS(3008), + [anon_sym_break] = ACTIONS(3008), + [anon_sym_continue] = ACTIONS(3008), + [anon_sym_goto] = ACTIONS(3008), + [anon_sym_not] = ACTIONS(3008), + [anon_sym_compl] = ACTIONS(3008), + [anon_sym_DASH_DASH] = ACTIONS(3010), + [anon_sym_PLUS_PLUS] = ACTIONS(3010), + [anon_sym_sizeof] = ACTIONS(3008), + [anon_sym_offsetof] = ACTIONS(3008), + [anon_sym__Generic] = ACTIONS(3008), + [anon_sym_asm] = ACTIONS(3008), + [anon_sym___asm__] = ACTIONS(3008), + [sym_number_literal] = ACTIONS(3010), + [anon_sym_L_SQUOTE] = ACTIONS(3010), + [anon_sym_u_SQUOTE] = ACTIONS(3010), + [anon_sym_U_SQUOTE] = ACTIONS(3010), + [anon_sym_u8_SQUOTE] = ACTIONS(3010), + [anon_sym_SQUOTE] = ACTIONS(3010), + [anon_sym_L_DQUOTE] = ACTIONS(3010), + [anon_sym_u_DQUOTE] = ACTIONS(3010), + [anon_sym_U_DQUOTE] = ACTIONS(3010), + [anon_sym_u8_DQUOTE] = ACTIONS(3010), + [anon_sym_DQUOTE] = ACTIONS(3010), + [sym_true] = ACTIONS(3008), + [sym_false] = ACTIONS(3008), + [anon_sym_NULL] = ACTIONS(3008), + [anon_sym_nullptr] = ACTIONS(3008), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3008), + [anon_sym_decltype] = ACTIONS(3008), + [anon_sym_virtual] = ACTIONS(3008), + [anon_sym_explicit] = ACTIONS(3008), + [anon_sym_typename] = ACTIONS(3008), + [anon_sym_template] = ACTIONS(3008), + [anon_sym_operator] = ACTIONS(3008), + [anon_sym_try] = ACTIONS(3008), + [anon_sym_delete] = ACTIONS(3008), + [anon_sym_throw] = ACTIONS(3008), + [anon_sym_namespace] = ACTIONS(3008), + [anon_sym_using] = ACTIONS(3008), + [anon_sym_static_assert] = ACTIONS(3008), + [anon_sym_concept] = ACTIONS(3008), + [anon_sym_co_return] = ACTIONS(3008), + [anon_sym_co_yield] = ACTIONS(3008), + [anon_sym_R_DQUOTE] = ACTIONS(3010), + [anon_sym_LR_DQUOTE] = ACTIONS(3010), + [anon_sym_uR_DQUOTE] = ACTIONS(3010), + [anon_sym_UR_DQUOTE] = ACTIONS(3010), + [anon_sym_u8R_DQUOTE] = ACTIONS(3010), + [anon_sym_co_await] = ACTIONS(3008), + [anon_sym_new] = ACTIONS(3008), + [anon_sym_requires] = ACTIONS(3008), + [sym_this] = ACTIONS(3008), + }, + [1069] = { + [sym_identifier] = ACTIONS(3093), + [aux_sym_preproc_include_token1] = ACTIONS(3093), + [aux_sym_preproc_def_token1] = ACTIONS(3093), + [aux_sym_preproc_if_token1] = ACTIONS(3093), + [aux_sym_preproc_if_token2] = ACTIONS(3093), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3093), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3093), + [sym_preproc_directive] = ACTIONS(3093), + [anon_sym_LPAREN2] = ACTIONS(3095), + [anon_sym_BANG] = ACTIONS(3095), + [anon_sym_TILDE] = ACTIONS(3095), + [anon_sym_DASH] = ACTIONS(3093), + [anon_sym_PLUS] = ACTIONS(3093), + [anon_sym_STAR] = ACTIONS(3095), + [anon_sym_AMP_AMP] = ACTIONS(3095), + [anon_sym_AMP] = ACTIONS(3093), + [anon_sym_SEMI] = ACTIONS(3095), + [anon_sym_typedef] = ACTIONS(3093), + [anon_sym_extern] = ACTIONS(3093), + [anon_sym___attribute__] = ACTIONS(3093), + [anon_sym_COLON_COLON] = ACTIONS(3095), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3095), + [anon_sym___declspec] = ACTIONS(3093), + [anon_sym___based] = ACTIONS(3093), + [anon_sym___cdecl] = ACTIONS(3093), + [anon_sym___clrcall] = ACTIONS(3093), + [anon_sym___stdcall] = ACTIONS(3093), + [anon_sym___fastcall] = ACTIONS(3093), + [anon_sym___thiscall] = ACTIONS(3093), + [anon_sym___vectorcall] = ACTIONS(3093), + [anon_sym_LBRACE] = ACTIONS(3095), + [anon_sym_LBRACK] = ACTIONS(3093), + [anon_sym_static] = ACTIONS(3093), + [anon_sym_register] = ACTIONS(3093), + [anon_sym_inline] = ACTIONS(3093), + [anon_sym_thread_local] = ACTIONS(3093), + [anon_sym_const] = ACTIONS(3093), + [anon_sym_constexpr] = ACTIONS(3093), + [anon_sym_volatile] = ACTIONS(3093), + [anon_sym_restrict] = ACTIONS(3093), + [anon_sym___restrict__] = ACTIONS(3093), + [anon_sym__Atomic] = ACTIONS(3093), + [anon_sym__Noreturn] = ACTIONS(3093), + [anon_sym_noreturn] = ACTIONS(3093), + [anon_sym_mutable] = ACTIONS(3093), + [anon_sym_constinit] = ACTIONS(3093), + [anon_sym_consteval] = ACTIONS(3093), + [anon_sym_signed] = ACTIONS(3093), + [anon_sym_unsigned] = ACTIONS(3093), + [anon_sym_long] = ACTIONS(3093), + [anon_sym_short] = ACTIONS(3093), + [sym_primitive_type] = ACTIONS(3093), + [anon_sym_enum] = ACTIONS(3093), + [anon_sym_class] = ACTIONS(3093), + [anon_sym_struct] = ACTIONS(3093), + [anon_sym_union] = ACTIONS(3093), + [anon_sym_if] = ACTIONS(3093), + [anon_sym_else] = ACTIONS(3093), + [anon_sym_switch] = ACTIONS(3093), + [anon_sym_case] = ACTIONS(3093), + [anon_sym_default] = ACTIONS(3093), + [anon_sym_while] = ACTIONS(3093), + [anon_sym_do] = ACTIONS(3093), + [anon_sym_for] = ACTIONS(3093), + [anon_sym_return] = ACTIONS(3093), + [anon_sym_break] = ACTIONS(3093), + [anon_sym_continue] = ACTIONS(3093), + [anon_sym_goto] = ACTIONS(3093), + [anon_sym_not] = ACTIONS(3093), + [anon_sym_compl] = ACTIONS(3093), + [anon_sym_DASH_DASH] = ACTIONS(3095), + [anon_sym_PLUS_PLUS] = ACTIONS(3095), + [anon_sym_sizeof] = ACTIONS(3093), + [anon_sym_offsetof] = ACTIONS(3093), + [anon_sym__Generic] = ACTIONS(3093), + [anon_sym_asm] = ACTIONS(3093), + [anon_sym___asm__] = ACTIONS(3093), + [sym_number_literal] = ACTIONS(3095), + [anon_sym_L_SQUOTE] = ACTIONS(3095), + [anon_sym_u_SQUOTE] = ACTIONS(3095), + [anon_sym_U_SQUOTE] = ACTIONS(3095), + [anon_sym_u8_SQUOTE] = ACTIONS(3095), + [anon_sym_SQUOTE] = ACTIONS(3095), + [anon_sym_L_DQUOTE] = ACTIONS(3095), + [anon_sym_u_DQUOTE] = ACTIONS(3095), + [anon_sym_U_DQUOTE] = ACTIONS(3095), + [anon_sym_u8_DQUOTE] = ACTIONS(3095), + [anon_sym_DQUOTE] = ACTIONS(3095), + [sym_true] = ACTIONS(3093), + [sym_false] = ACTIONS(3093), + [anon_sym_NULL] = ACTIONS(3093), + [anon_sym_nullptr] = ACTIONS(3093), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3093), + [anon_sym_decltype] = ACTIONS(3093), + [anon_sym_virtual] = ACTIONS(3093), + [anon_sym_explicit] = ACTIONS(3093), + [anon_sym_typename] = ACTIONS(3093), + [anon_sym_template] = ACTIONS(3093), + [anon_sym_operator] = ACTIONS(3093), + [anon_sym_try] = ACTIONS(3093), + [anon_sym_delete] = ACTIONS(3093), + [anon_sym_throw] = ACTIONS(3093), + [anon_sym_namespace] = ACTIONS(3093), + [anon_sym_using] = ACTIONS(3093), + [anon_sym_static_assert] = ACTIONS(3093), + [anon_sym_concept] = ACTIONS(3093), + [anon_sym_co_return] = ACTIONS(3093), + [anon_sym_co_yield] = ACTIONS(3093), + [anon_sym_R_DQUOTE] = ACTIONS(3095), + [anon_sym_LR_DQUOTE] = ACTIONS(3095), + [anon_sym_uR_DQUOTE] = ACTIONS(3095), + [anon_sym_UR_DQUOTE] = ACTIONS(3095), + [anon_sym_u8R_DQUOTE] = ACTIONS(3095), + [anon_sym_co_await] = ACTIONS(3093), + [anon_sym_new] = ACTIONS(3093), + [anon_sym_requires] = ACTIONS(3093), + [sym_this] = ACTIONS(3093), + }, + [1070] = { + [sym_identifier] = ACTIONS(2948), + [aux_sym_preproc_include_token1] = ACTIONS(2948), + [aux_sym_preproc_def_token1] = ACTIONS(2948), + [aux_sym_preproc_if_token1] = ACTIONS(2948), + [aux_sym_preproc_if_token2] = ACTIONS(2948), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2948), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2948), + [sym_preproc_directive] = ACTIONS(2948), + [anon_sym_LPAREN2] = ACTIONS(2950), + [anon_sym_BANG] = ACTIONS(2950), + [anon_sym_TILDE] = ACTIONS(2950), + [anon_sym_DASH] = ACTIONS(2948), + [anon_sym_PLUS] = ACTIONS(2948), + [anon_sym_STAR] = ACTIONS(2950), + [anon_sym_AMP_AMP] = ACTIONS(2950), + [anon_sym_AMP] = ACTIONS(2948), + [anon_sym_SEMI] = ACTIONS(2950), + [anon_sym_typedef] = ACTIONS(2948), + [anon_sym_extern] = ACTIONS(2948), + [anon_sym___attribute__] = ACTIONS(2948), + [anon_sym_COLON_COLON] = ACTIONS(2950), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2950), + [anon_sym___declspec] = ACTIONS(2948), + [anon_sym___based] = ACTIONS(2948), + [anon_sym___cdecl] = ACTIONS(2948), + [anon_sym___clrcall] = ACTIONS(2948), + [anon_sym___stdcall] = ACTIONS(2948), + [anon_sym___fastcall] = ACTIONS(2948), + [anon_sym___thiscall] = ACTIONS(2948), + [anon_sym___vectorcall] = ACTIONS(2948), + [anon_sym_LBRACE] = ACTIONS(2950), + [anon_sym_LBRACK] = ACTIONS(2948), + [anon_sym_static] = ACTIONS(2948), + [anon_sym_register] = ACTIONS(2948), + [anon_sym_inline] = ACTIONS(2948), + [anon_sym_thread_local] = ACTIONS(2948), + [anon_sym_const] = ACTIONS(2948), + [anon_sym_constexpr] = ACTIONS(2948), + [anon_sym_volatile] = ACTIONS(2948), + [anon_sym_restrict] = ACTIONS(2948), + [anon_sym___restrict__] = ACTIONS(2948), + [anon_sym__Atomic] = ACTIONS(2948), + [anon_sym__Noreturn] = ACTIONS(2948), + [anon_sym_noreturn] = ACTIONS(2948), + [anon_sym_mutable] = ACTIONS(2948), + [anon_sym_constinit] = ACTIONS(2948), + [anon_sym_consteval] = ACTIONS(2948), + [anon_sym_signed] = ACTIONS(2948), + [anon_sym_unsigned] = ACTIONS(2948), + [anon_sym_long] = ACTIONS(2948), + [anon_sym_short] = ACTIONS(2948), + [sym_primitive_type] = ACTIONS(2948), + [anon_sym_enum] = ACTIONS(2948), + [anon_sym_class] = ACTIONS(2948), + [anon_sym_struct] = ACTIONS(2948), + [anon_sym_union] = ACTIONS(2948), + [anon_sym_if] = ACTIONS(2948), + [anon_sym_else] = ACTIONS(2948), + [anon_sym_switch] = ACTIONS(2948), + [anon_sym_case] = ACTIONS(2948), + [anon_sym_default] = ACTIONS(2948), + [anon_sym_while] = ACTIONS(2948), + [anon_sym_do] = ACTIONS(2948), + [anon_sym_for] = ACTIONS(2948), + [anon_sym_return] = ACTIONS(2948), + [anon_sym_break] = ACTIONS(2948), + [anon_sym_continue] = ACTIONS(2948), + [anon_sym_goto] = ACTIONS(2948), + [anon_sym_not] = ACTIONS(2948), + [anon_sym_compl] = ACTIONS(2948), + [anon_sym_DASH_DASH] = ACTIONS(2950), + [anon_sym_PLUS_PLUS] = ACTIONS(2950), + [anon_sym_sizeof] = ACTIONS(2948), + [anon_sym_offsetof] = ACTIONS(2948), + [anon_sym__Generic] = ACTIONS(2948), + [anon_sym_asm] = ACTIONS(2948), + [anon_sym___asm__] = ACTIONS(2948), + [sym_number_literal] = ACTIONS(2950), + [anon_sym_L_SQUOTE] = ACTIONS(2950), + [anon_sym_u_SQUOTE] = ACTIONS(2950), + [anon_sym_U_SQUOTE] = ACTIONS(2950), + [anon_sym_u8_SQUOTE] = ACTIONS(2950), + [anon_sym_SQUOTE] = ACTIONS(2950), + [anon_sym_L_DQUOTE] = ACTIONS(2950), + [anon_sym_u_DQUOTE] = ACTIONS(2950), + [anon_sym_U_DQUOTE] = ACTIONS(2950), + [anon_sym_u8_DQUOTE] = ACTIONS(2950), + [anon_sym_DQUOTE] = ACTIONS(2950), + [sym_true] = ACTIONS(2948), + [sym_false] = ACTIONS(2948), + [anon_sym_NULL] = ACTIONS(2948), + [anon_sym_nullptr] = ACTIONS(2948), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2948), + [anon_sym_decltype] = ACTIONS(2948), + [anon_sym_virtual] = ACTIONS(2948), + [anon_sym_explicit] = ACTIONS(2948), + [anon_sym_typename] = ACTIONS(2948), + [anon_sym_template] = ACTIONS(2948), + [anon_sym_operator] = ACTIONS(2948), + [anon_sym_try] = ACTIONS(2948), + [anon_sym_delete] = ACTIONS(2948), + [anon_sym_throw] = ACTIONS(2948), + [anon_sym_namespace] = ACTIONS(2948), + [anon_sym_using] = ACTIONS(2948), + [anon_sym_static_assert] = ACTIONS(2948), + [anon_sym_concept] = ACTIONS(2948), + [anon_sym_co_return] = ACTIONS(2948), + [anon_sym_co_yield] = ACTIONS(2948), + [anon_sym_R_DQUOTE] = ACTIONS(2950), + [anon_sym_LR_DQUOTE] = ACTIONS(2950), + [anon_sym_uR_DQUOTE] = ACTIONS(2950), + [anon_sym_UR_DQUOTE] = ACTIONS(2950), + [anon_sym_u8R_DQUOTE] = ACTIONS(2950), + [anon_sym_co_await] = ACTIONS(2948), + [anon_sym_new] = ACTIONS(2948), + [anon_sym_requires] = ACTIONS(2948), + [sym_this] = ACTIONS(2948), + }, + [1071] = { + [ts_builtin_sym_end] = ACTIONS(3050), + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), + }, + [1072] = { + [sym_identifier] = ACTIONS(3024), + [aux_sym_preproc_include_token1] = ACTIONS(3024), + [aux_sym_preproc_def_token1] = ACTIONS(3024), + [aux_sym_preproc_if_token1] = ACTIONS(3024), + [aux_sym_preproc_if_token2] = ACTIONS(3024), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3024), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3024), + [sym_preproc_directive] = ACTIONS(3024), + [anon_sym_LPAREN2] = ACTIONS(3026), + [anon_sym_BANG] = ACTIONS(3026), + [anon_sym_TILDE] = ACTIONS(3026), + [anon_sym_DASH] = ACTIONS(3024), + [anon_sym_PLUS] = ACTIONS(3024), + [anon_sym_STAR] = ACTIONS(3026), + [anon_sym_AMP_AMP] = ACTIONS(3026), + [anon_sym_AMP] = ACTIONS(3024), + [anon_sym_SEMI] = ACTIONS(3026), + [anon_sym_typedef] = ACTIONS(3024), + [anon_sym_extern] = ACTIONS(3024), + [anon_sym___attribute__] = ACTIONS(3024), + [anon_sym_COLON_COLON] = ACTIONS(3026), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3026), + [anon_sym___declspec] = ACTIONS(3024), + [anon_sym___based] = ACTIONS(3024), + [anon_sym___cdecl] = ACTIONS(3024), + [anon_sym___clrcall] = ACTIONS(3024), + [anon_sym___stdcall] = ACTIONS(3024), + [anon_sym___fastcall] = ACTIONS(3024), + [anon_sym___thiscall] = ACTIONS(3024), + [anon_sym___vectorcall] = ACTIONS(3024), + [anon_sym_LBRACE] = ACTIONS(3026), + [anon_sym_LBRACK] = ACTIONS(3024), + [anon_sym_static] = ACTIONS(3024), + [anon_sym_register] = ACTIONS(3024), + [anon_sym_inline] = ACTIONS(3024), + [anon_sym_thread_local] = ACTIONS(3024), + [anon_sym_const] = ACTIONS(3024), + [anon_sym_constexpr] = ACTIONS(3024), + [anon_sym_volatile] = ACTIONS(3024), + [anon_sym_restrict] = ACTIONS(3024), + [anon_sym___restrict__] = ACTIONS(3024), + [anon_sym__Atomic] = ACTIONS(3024), + [anon_sym__Noreturn] = ACTIONS(3024), + [anon_sym_noreturn] = ACTIONS(3024), + [anon_sym_mutable] = ACTIONS(3024), + [anon_sym_constinit] = ACTIONS(3024), + [anon_sym_consteval] = ACTIONS(3024), + [anon_sym_signed] = ACTIONS(3024), + [anon_sym_unsigned] = ACTIONS(3024), + [anon_sym_long] = ACTIONS(3024), + [anon_sym_short] = ACTIONS(3024), + [sym_primitive_type] = ACTIONS(3024), + [anon_sym_enum] = ACTIONS(3024), + [anon_sym_class] = ACTIONS(3024), + [anon_sym_struct] = ACTIONS(3024), + [anon_sym_union] = ACTIONS(3024), + [anon_sym_if] = ACTIONS(3024), + [anon_sym_else] = ACTIONS(3024), + [anon_sym_switch] = ACTIONS(3024), + [anon_sym_case] = ACTIONS(3024), + [anon_sym_default] = ACTIONS(3024), + [anon_sym_while] = ACTIONS(3024), + [anon_sym_do] = ACTIONS(3024), + [anon_sym_for] = ACTIONS(3024), + [anon_sym_return] = ACTIONS(3024), + [anon_sym_break] = ACTIONS(3024), + [anon_sym_continue] = ACTIONS(3024), + [anon_sym_goto] = ACTIONS(3024), + [anon_sym_not] = ACTIONS(3024), + [anon_sym_compl] = ACTIONS(3024), + [anon_sym_DASH_DASH] = ACTIONS(3026), + [anon_sym_PLUS_PLUS] = ACTIONS(3026), + [anon_sym_sizeof] = ACTIONS(3024), + [anon_sym_offsetof] = ACTIONS(3024), + [anon_sym__Generic] = ACTIONS(3024), + [anon_sym_asm] = ACTIONS(3024), + [anon_sym___asm__] = ACTIONS(3024), + [sym_number_literal] = ACTIONS(3026), + [anon_sym_L_SQUOTE] = ACTIONS(3026), + [anon_sym_u_SQUOTE] = ACTIONS(3026), + [anon_sym_U_SQUOTE] = ACTIONS(3026), + [anon_sym_u8_SQUOTE] = ACTIONS(3026), + [anon_sym_SQUOTE] = ACTIONS(3026), + [anon_sym_L_DQUOTE] = ACTIONS(3026), + [anon_sym_u_DQUOTE] = ACTIONS(3026), + [anon_sym_U_DQUOTE] = ACTIONS(3026), + [anon_sym_u8_DQUOTE] = ACTIONS(3026), + [anon_sym_DQUOTE] = ACTIONS(3026), + [sym_true] = ACTIONS(3024), + [sym_false] = ACTIONS(3024), + [anon_sym_NULL] = ACTIONS(3024), + [anon_sym_nullptr] = ACTIONS(3024), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3024), + [anon_sym_decltype] = ACTIONS(3024), + [anon_sym_virtual] = ACTIONS(3024), + [anon_sym_explicit] = ACTIONS(3024), + [anon_sym_typename] = ACTIONS(3024), + [anon_sym_template] = ACTIONS(3024), + [anon_sym_operator] = ACTIONS(3024), + [anon_sym_try] = ACTIONS(3024), + [anon_sym_delete] = ACTIONS(3024), + [anon_sym_throw] = ACTIONS(3024), + [anon_sym_namespace] = ACTIONS(3024), + [anon_sym_using] = ACTIONS(3024), + [anon_sym_static_assert] = ACTIONS(3024), + [anon_sym_concept] = ACTIONS(3024), + [anon_sym_co_return] = ACTIONS(3024), + [anon_sym_co_yield] = ACTIONS(3024), + [anon_sym_R_DQUOTE] = ACTIONS(3026), + [anon_sym_LR_DQUOTE] = ACTIONS(3026), + [anon_sym_uR_DQUOTE] = ACTIONS(3026), + [anon_sym_UR_DQUOTE] = ACTIONS(3026), + [anon_sym_u8R_DQUOTE] = ACTIONS(3026), + [anon_sym_co_await] = ACTIONS(3024), + [anon_sym_new] = ACTIONS(3024), + [anon_sym_requires] = ACTIONS(3024), + [sym_this] = ACTIONS(3024), + }, + [1073] = { + [ts_builtin_sym_end] = ACTIONS(3107), + [sym_identifier] = ACTIONS(3105), + [aux_sym_preproc_include_token1] = ACTIONS(3105), + [aux_sym_preproc_def_token1] = ACTIONS(3105), + [aux_sym_preproc_if_token1] = ACTIONS(3105), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3105), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3105), + [sym_preproc_directive] = ACTIONS(3105), + [anon_sym_LPAREN2] = ACTIONS(3107), + [anon_sym_BANG] = ACTIONS(3107), + [anon_sym_TILDE] = ACTIONS(3107), + [anon_sym_DASH] = ACTIONS(3105), + [anon_sym_PLUS] = ACTIONS(3105), + [anon_sym_STAR] = ACTIONS(3107), + [anon_sym_AMP_AMP] = ACTIONS(3107), + [anon_sym_AMP] = ACTIONS(3105), + [anon_sym_SEMI] = ACTIONS(3107), + [anon_sym_typedef] = ACTIONS(3105), + [anon_sym_extern] = ACTIONS(3105), + [anon_sym___attribute__] = ACTIONS(3105), + [anon_sym_COLON_COLON] = ACTIONS(3107), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3107), + [anon_sym___declspec] = ACTIONS(3105), + [anon_sym___based] = ACTIONS(3105), + [anon_sym___cdecl] = ACTIONS(3105), + [anon_sym___clrcall] = ACTIONS(3105), + [anon_sym___stdcall] = ACTIONS(3105), + [anon_sym___fastcall] = ACTIONS(3105), + [anon_sym___thiscall] = ACTIONS(3105), + [anon_sym___vectorcall] = ACTIONS(3105), + [anon_sym_LBRACE] = ACTIONS(3107), + [anon_sym_LBRACK] = ACTIONS(3105), + [anon_sym_static] = ACTIONS(3105), + [anon_sym_register] = ACTIONS(3105), + [anon_sym_inline] = ACTIONS(3105), + [anon_sym_thread_local] = ACTIONS(3105), + [anon_sym_const] = ACTIONS(3105), + [anon_sym_constexpr] = ACTIONS(3105), + [anon_sym_volatile] = ACTIONS(3105), + [anon_sym_restrict] = ACTIONS(3105), + [anon_sym___restrict__] = ACTIONS(3105), + [anon_sym__Atomic] = ACTIONS(3105), + [anon_sym__Noreturn] = ACTIONS(3105), + [anon_sym_noreturn] = ACTIONS(3105), + [anon_sym_mutable] = ACTIONS(3105), + [anon_sym_constinit] = ACTIONS(3105), + [anon_sym_consteval] = ACTIONS(3105), + [anon_sym_signed] = ACTIONS(3105), + [anon_sym_unsigned] = ACTIONS(3105), + [anon_sym_long] = ACTIONS(3105), + [anon_sym_short] = ACTIONS(3105), + [sym_primitive_type] = ACTIONS(3105), + [anon_sym_enum] = ACTIONS(3105), + [anon_sym_class] = ACTIONS(3105), + [anon_sym_struct] = ACTIONS(3105), + [anon_sym_union] = ACTIONS(3105), + [anon_sym_if] = ACTIONS(3105), + [anon_sym_else] = ACTIONS(3105), + [anon_sym_switch] = ACTIONS(3105), + [anon_sym_case] = ACTIONS(3105), + [anon_sym_default] = ACTIONS(3105), + [anon_sym_while] = ACTIONS(3105), + [anon_sym_do] = ACTIONS(3105), + [anon_sym_for] = ACTIONS(3105), + [anon_sym_return] = ACTIONS(3105), + [anon_sym_break] = ACTIONS(3105), + [anon_sym_continue] = ACTIONS(3105), + [anon_sym_goto] = ACTIONS(3105), + [anon_sym_not] = ACTIONS(3105), + [anon_sym_compl] = ACTIONS(3105), + [anon_sym_DASH_DASH] = ACTIONS(3107), + [anon_sym_PLUS_PLUS] = ACTIONS(3107), + [anon_sym_sizeof] = ACTIONS(3105), + [anon_sym_offsetof] = ACTIONS(3105), + [anon_sym__Generic] = ACTIONS(3105), + [anon_sym_asm] = ACTIONS(3105), + [anon_sym___asm__] = ACTIONS(3105), + [sym_number_literal] = ACTIONS(3107), + [anon_sym_L_SQUOTE] = ACTIONS(3107), + [anon_sym_u_SQUOTE] = ACTIONS(3107), + [anon_sym_U_SQUOTE] = ACTIONS(3107), + [anon_sym_u8_SQUOTE] = ACTIONS(3107), + [anon_sym_SQUOTE] = ACTIONS(3107), + [anon_sym_L_DQUOTE] = ACTIONS(3107), + [anon_sym_u_DQUOTE] = ACTIONS(3107), + [anon_sym_U_DQUOTE] = ACTIONS(3107), + [anon_sym_u8_DQUOTE] = ACTIONS(3107), + [anon_sym_DQUOTE] = ACTIONS(3107), + [sym_true] = ACTIONS(3105), + [sym_false] = ACTIONS(3105), + [anon_sym_NULL] = ACTIONS(3105), + [anon_sym_nullptr] = ACTIONS(3105), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3105), + [anon_sym_decltype] = ACTIONS(3105), + [anon_sym_virtual] = ACTIONS(3105), + [anon_sym_explicit] = ACTIONS(3105), + [anon_sym_typename] = ACTIONS(3105), + [anon_sym_template] = ACTIONS(3105), + [anon_sym_operator] = ACTIONS(3105), + [anon_sym_try] = ACTIONS(3105), + [anon_sym_delete] = ACTIONS(3105), + [anon_sym_throw] = ACTIONS(3105), + [anon_sym_namespace] = ACTIONS(3105), + [anon_sym_using] = ACTIONS(3105), + [anon_sym_static_assert] = ACTIONS(3105), + [anon_sym_concept] = ACTIONS(3105), + [anon_sym_co_return] = ACTIONS(3105), + [anon_sym_co_yield] = ACTIONS(3105), + [anon_sym_R_DQUOTE] = ACTIONS(3107), + [anon_sym_LR_DQUOTE] = ACTIONS(3107), + [anon_sym_uR_DQUOTE] = ACTIONS(3107), + [anon_sym_UR_DQUOTE] = ACTIONS(3107), + [anon_sym_u8R_DQUOTE] = ACTIONS(3107), + [anon_sym_co_await] = ACTIONS(3105), + [anon_sym_new] = ACTIONS(3105), + [anon_sym_requires] = ACTIONS(3105), + [sym_this] = ACTIONS(3105), + }, + [1074] = { + [ts_builtin_sym_end] = ACTIONS(3022), + [sym_identifier] = ACTIONS(3020), + [aux_sym_preproc_include_token1] = ACTIONS(3020), + [aux_sym_preproc_def_token1] = ACTIONS(3020), + [aux_sym_preproc_if_token1] = ACTIONS(3020), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3020), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3020), + [sym_preproc_directive] = ACTIONS(3020), + [anon_sym_LPAREN2] = ACTIONS(3022), + [anon_sym_BANG] = ACTIONS(3022), + [anon_sym_TILDE] = ACTIONS(3022), + [anon_sym_DASH] = ACTIONS(3020), + [anon_sym_PLUS] = ACTIONS(3020), + [anon_sym_STAR] = ACTIONS(3022), + [anon_sym_AMP_AMP] = ACTIONS(3022), + [anon_sym_AMP] = ACTIONS(3020), + [anon_sym_SEMI] = ACTIONS(3022), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(3020), + [anon_sym___attribute__] = ACTIONS(3020), + [anon_sym_COLON_COLON] = ACTIONS(3022), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(3020), + [anon_sym___based] = ACTIONS(3020), + [anon_sym___cdecl] = ACTIONS(3020), + [anon_sym___clrcall] = ACTIONS(3020), + [anon_sym___stdcall] = ACTIONS(3020), + [anon_sym___fastcall] = ACTIONS(3020), + [anon_sym___thiscall] = ACTIONS(3020), + [anon_sym___vectorcall] = ACTIONS(3020), + [anon_sym_LBRACE] = ACTIONS(3022), + [anon_sym_LBRACK] = ACTIONS(3020), + [anon_sym_static] = ACTIONS(3020), + [anon_sym_register] = ACTIONS(3020), + [anon_sym_inline] = ACTIONS(3020), + [anon_sym_thread_local] = ACTIONS(3020), + [anon_sym_const] = ACTIONS(3020), + [anon_sym_constexpr] = ACTIONS(3020), + [anon_sym_volatile] = ACTIONS(3020), + [anon_sym_restrict] = ACTIONS(3020), + [anon_sym___restrict__] = ACTIONS(3020), + [anon_sym__Atomic] = ACTIONS(3020), + [anon_sym__Noreturn] = ACTIONS(3020), + [anon_sym_noreturn] = ACTIONS(3020), + [anon_sym_mutable] = ACTIONS(3020), + [anon_sym_constinit] = ACTIONS(3020), + [anon_sym_consteval] = ACTIONS(3020), + [anon_sym_signed] = ACTIONS(3020), + [anon_sym_unsigned] = ACTIONS(3020), + [anon_sym_long] = ACTIONS(3020), + [anon_sym_short] = ACTIONS(3020), + [sym_primitive_type] = ACTIONS(3020), + [anon_sym_enum] = ACTIONS(3020), + [anon_sym_class] = ACTIONS(3020), + [anon_sym_struct] = ACTIONS(3020), + [anon_sym_union] = ACTIONS(3020), + [anon_sym_if] = ACTIONS(3020), + [anon_sym_else] = ACTIONS(3020), + [anon_sym_switch] = ACTIONS(3020), + [anon_sym_case] = ACTIONS(3020), + [anon_sym_default] = ACTIONS(3020), + [anon_sym_while] = ACTIONS(3020), + [anon_sym_do] = ACTIONS(3020), + [anon_sym_for] = ACTIONS(3020), + [anon_sym_return] = ACTIONS(3020), + [anon_sym_break] = ACTIONS(3020), + [anon_sym_continue] = ACTIONS(3020), + [anon_sym_goto] = ACTIONS(3020), + [anon_sym_not] = ACTIONS(3020), + [anon_sym_compl] = ACTIONS(3020), + [anon_sym_DASH_DASH] = ACTIONS(3022), + [anon_sym_PLUS_PLUS] = ACTIONS(3022), + [anon_sym_sizeof] = ACTIONS(3020), + [anon_sym_offsetof] = ACTIONS(3020), + [anon_sym__Generic] = ACTIONS(3020), + [anon_sym_asm] = ACTIONS(3020), + [anon_sym___asm__] = ACTIONS(3020), + [sym_number_literal] = ACTIONS(3022), + [anon_sym_L_SQUOTE] = ACTIONS(3022), + [anon_sym_u_SQUOTE] = ACTIONS(3022), + [anon_sym_U_SQUOTE] = ACTIONS(3022), + [anon_sym_u8_SQUOTE] = ACTIONS(3022), + [anon_sym_SQUOTE] = ACTIONS(3022), + [anon_sym_L_DQUOTE] = ACTIONS(3022), + [anon_sym_u_DQUOTE] = ACTIONS(3022), + [anon_sym_U_DQUOTE] = ACTIONS(3022), + [anon_sym_u8_DQUOTE] = ACTIONS(3022), + [anon_sym_DQUOTE] = ACTIONS(3022), + [sym_true] = ACTIONS(3020), + [sym_false] = ACTIONS(3020), + [anon_sym_NULL] = ACTIONS(3020), + [anon_sym_nullptr] = ACTIONS(3020), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3020), + [anon_sym_decltype] = ACTIONS(3020), + [anon_sym_virtual] = ACTIONS(3020), + [anon_sym_explicit] = ACTIONS(3020), + [anon_sym_typename] = ACTIONS(3020), + [anon_sym_template] = ACTIONS(3020), + [anon_sym_operator] = ACTIONS(3020), + [anon_sym_try] = ACTIONS(3020), + [anon_sym_delete] = ACTIONS(3020), + [anon_sym_throw] = ACTIONS(3020), + [anon_sym_namespace] = ACTIONS(3020), + [anon_sym_using] = ACTIONS(3020), + [anon_sym_static_assert] = ACTIONS(3020), + [anon_sym_concept] = ACTIONS(3020), + [anon_sym_co_return] = ACTIONS(3020), + [anon_sym_co_yield] = ACTIONS(3020), + [anon_sym_R_DQUOTE] = ACTIONS(3022), + [anon_sym_LR_DQUOTE] = ACTIONS(3022), + [anon_sym_uR_DQUOTE] = ACTIONS(3022), + [anon_sym_UR_DQUOTE] = ACTIONS(3022), + [anon_sym_u8R_DQUOTE] = ACTIONS(3022), + [anon_sym_co_await] = ACTIONS(3020), + [anon_sym_new] = ACTIONS(3020), + [anon_sym_requires] = ACTIONS(3020), + [sym_this] = ACTIONS(3020), + }, + [1075] = { + [ts_builtin_sym_end] = ACTIONS(2906), [sym_identifier] = ACTIONS(2904), [aux_sym_preproc_include_token1] = ACTIONS(2904), [aux_sym_preproc_def_token1] = ACTIONS(2904), @@ -152924,18 +188409,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(2904), [anon_sym___vectorcall] = ACTIONS(2904), [anon_sym_LBRACE] = ACTIONS(2906), - [anon_sym_RBRACE] = ACTIONS(2906), [anon_sym_LBRACK] = ACTIONS(2904), [anon_sym_static] = ACTIONS(2904), [anon_sym_register] = ACTIONS(2904), [anon_sym_inline] = ACTIONS(2904), [anon_sym_thread_local] = ACTIONS(2904), [anon_sym_const] = ACTIONS(2904), + [anon_sym_constexpr] = ACTIONS(2904), [anon_sym_volatile] = ACTIONS(2904), [anon_sym_restrict] = ACTIONS(2904), + [anon_sym___restrict__] = ACTIONS(2904), [anon_sym__Atomic] = ACTIONS(2904), + [anon_sym__Noreturn] = ACTIONS(2904), + [anon_sym_noreturn] = ACTIONS(2904), [anon_sym_mutable] = ACTIONS(2904), - [anon_sym_constexpr] = ACTIONS(2904), [anon_sym_constinit] = ACTIONS(2904), [anon_sym_consteval] = ACTIONS(2904), [anon_sym_signed] = ACTIONS(2904), @@ -152948,6 +188435,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(2904), [anon_sym_union] = ACTIONS(2904), [anon_sym_if] = ACTIONS(2904), + [anon_sym_else] = ACTIONS(2904), [anon_sym_switch] = ACTIONS(2904), [anon_sym_case] = ACTIONS(2904), [anon_sym_default] = ACTIONS(2904), @@ -152963,6 +188451,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(2906), [anon_sym_PLUS_PLUS] = ACTIONS(2906), [anon_sym_sizeof] = ACTIONS(2904), + [anon_sym_offsetof] = ACTIONS(2904), + [anon_sym__Generic] = ACTIONS(2904), + [anon_sym_asm] = ACTIONS(2904), + [anon_sym___asm__] = ACTIONS(2904), [sym_number_literal] = ACTIONS(2906), [anon_sym_L_SQUOTE] = ACTIONS(2906), [anon_sym_u_SQUOTE] = ACTIONS(2906), @@ -152976,7 +188468,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(2906), [sym_true] = ACTIONS(2904), [sym_false] = ACTIONS(2904), - [sym_null] = ACTIONS(2904), + [anon_sym_NULL] = ACTIONS(2904), + [anon_sym_nullptr] = ACTIONS(2904), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(2904), [anon_sym_decltype] = ACTIONS(2904), @@ -153003,569 +188496,249 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(2904), [anon_sym_requires] = ACTIONS(2904), [sym_this] = ACTIONS(2904), - [sym_nullptr] = ACTIONS(2904), }, - [1024] = { - [sym_identifier] = ACTIONS(2786), - [aux_sym_preproc_include_token1] = ACTIONS(2786), - [aux_sym_preproc_def_token1] = ACTIONS(2786), - [aux_sym_preproc_if_token1] = ACTIONS(2786), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2786), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2786), - [sym_preproc_directive] = ACTIONS(2786), - [anon_sym_LPAREN2] = ACTIONS(2788), - [anon_sym_BANG] = ACTIONS(2788), - [anon_sym_TILDE] = ACTIONS(2788), - [anon_sym_DASH] = ACTIONS(2786), - [anon_sym_PLUS] = ACTIONS(2786), - [anon_sym_STAR] = ACTIONS(2788), - [anon_sym_AMP_AMP] = ACTIONS(2788), - [anon_sym_AMP] = ACTIONS(2786), - [anon_sym_SEMI] = ACTIONS(2788), - [anon_sym_typedef] = ACTIONS(2786), - [anon_sym_extern] = ACTIONS(2786), - [anon_sym___attribute__] = ACTIONS(2786), - [anon_sym_COLON_COLON] = ACTIONS(2788), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2788), - [anon_sym___declspec] = ACTIONS(2786), - [anon_sym___based] = ACTIONS(2786), - [anon_sym___cdecl] = ACTIONS(2786), - [anon_sym___clrcall] = ACTIONS(2786), - [anon_sym___stdcall] = ACTIONS(2786), - [anon_sym___fastcall] = ACTIONS(2786), - [anon_sym___thiscall] = ACTIONS(2786), - [anon_sym___vectorcall] = ACTIONS(2786), - [anon_sym_LBRACE] = ACTIONS(2788), - [anon_sym_RBRACE] = ACTIONS(2788), - [anon_sym_LBRACK] = ACTIONS(2786), - [anon_sym_static] = ACTIONS(2786), - [anon_sym_register] = ACTIONS(2786), - [anon_sym_inline] = ACTIONS(2786), - [anon_sym_thread_local] = ACTIONS(2786), - [anon_sym_const] = ACTIONS(2786), - [anon_sym_volatile] = ACTIONS(2786), - [anon_sym_restrict] = ACTIONS(2786), - [anon_sym__Atomic] = ACTIONS(2786), - [anon_sym_mutable] = ACTIONS(2786), - [anon_sym_constexpr] = ACTIONS(2786), - [anon_sym_constinit] = ACTIONS(2786), - [anon_sym_consteval] = ACTIONS(2786), - [anon_sym_signed] = ACTIONS(2786), - [anon_sym_unsigned] = ACTIONS(2786), - [anon_sym_long] = ACTIONS(2786), - [anon_sym_short] = ACTIONS(2786), - [sym_primitive_type] = ACTIONS(2786), - [anon_sym_enum] = ACTIONS(2786), - [anon_sym_class] = ACTIONS(2786), - [anon_sym_struct] = ACTIONS(2786), - [anon_sym_union] = ACTIONS(2786), - [anon_sym_if] = ACTIONS(2786), - [anon_sym_switch] = ACTIONS(2786), - [anon_sym_case] = ACTIONS(2786), - [anon_sym_default] = ACTIONS(2786), - [anon_sym_while] = ACTIONS(2786), - [anon_sym_do] = ACTIONS(2786), - [anon_sym_for] = ACTIONS(2786), - [anon_sym_return] = ACTIONS(2786), - [anon_sym_break] = ACTIONS(2786), - [anon_sym_continue] = ACTIONS(2786), - [anon_sym_goto] = ACTIONS(2786), - [anon_sym_not] = ACTIONS(2786), - [anon_sym_compl] = ACTIONS(2786), - [anon_sym_DASH_DASH] = ACTIONS(2788), - [anon_sym_PLUS_PLUS] = ACTIONS(2788), - [anon_sym_sizeof] = ACTIONS(2786), - [sym_number_literal] = ACTIONS(2788), - [anon_sym_L_SQUOTE] = ACTIONS(2788), - [anon_sym_u_SQUOTE] = ACTIONS(2788), - [anon_sym_U_SQUOTE] = ACTIONS(2788), - [anon_sym_u8_SQUOTE] = ACTIONS(2788), - [anon_sym_SQUOTE] = ACTIONS(2788), - [anon_sym_L_DQUOTE] = ACTIONS(2788), - [anon_sym_u_DQUOTE] = ACTIONS(2788), - [anon_sym_U_DQUOTE] = ACTIONS(2788), - [anon_sym_u8_DQUOTE] = ACTIONS(2788), - [anon_sym_DQUOTE] = ACTIONS(2788), - [sym_true] = ACTIONS(2786), - [sym_false] = ACTIONS(2786), - [sym_null] = ACTIONS(2786), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2786), - [anon_sym_decltype] = ACTIONS(2786), - [anon_sym_virtual] = ACTIONS(2786), - [anon_sym_explicit] = ACTIONS(2786), - [anon_sym_typename] = ACTIONS(2786), - [anon_sym_template] = ACTIONS(2786), - [anon_sym_operator] = ACTIONS(2786), - [anon_sym_try] = ACTIONS(2786), - [anon_sym_delete] = ACTIONS(2786), - [anon_sym_throw] = ACTIONS(2786), - [anon_sym_namespace] = ACTIONS(2786), - [anon_sym_using] = ACTIONS(2786), - [anon_sym_static_assert] = ACTIONS(2786), - [anon_sym_concept] = ACTIONS(2786), - [anon_sym_co_return] = ACTIONS(2786), - [anon_sym_co_yield] = ACTIONS(2786), - [anon_sym_R_DQUOTE] = ACTIONS(2788), - [anon_sym_LR_DQUOTE] = ACTIONS(2788), - [anon_sym_uR_DQUOTE] = ACTIONS(2788), - [anon_sym_UR_DQUOTE] = ACTIONS(2788), - [anon_sym_u8R_DQUOTE] = ACTIONS(2788), - [anon_sym_co_await] = ACTIONS(2786), - [anon_sym_new] = ACTIONS(2786), - [anon_sym_requires] = ACTIONS(2786), - [sym_this] = ACTIONS(2786), - [sym_nullptr] = ACTIONS(2786), - }, - [1025] = { - [sym_identifier] = ACTIONS(2852), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2854), - [anon_sym_AMP] = ACTIONS(2852), - [anon_sym_SEMI] = ACTIONS(2854), - [anon_sym_typedef] = ACTIONS(2852), - [anon_sym_extern] = ACTIONS(2852), - [anon_sym___attribute__] = ACTIONS(2852), - [anon_sym_COLON_COLON] = ACTIONS(2854), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2854), - [anon_sym___declspec] = ACTIONS(2852), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2852), - [anon_sym_static] = ACTIONS(2852), - [anon_sym_register] = ACTIONS(2852), - [anon_sym_inline] = ACTIONS(2852), - [anon_sym_thread_local] = ACTIONS(2852), - [anon_sym_const] = ACTIONS(2852), - [anon_sym_volatile] = ACTIONS(2852), - [anon_sym_restrict] = ACTIONS(2852), - [anon_sym__Atomic] = ACTIONS(2852), - [anon_sym_mutable] = ACTIONS(2852), - [anon_sym_constexpr] = ACTIONS(2852), - [anon_sym_constinit] = ACTIONS(2852), - [anon_sym_consteval] = ACTIONS(2852), - [anon_sym_signed] = ACTIONS(2852), - [anon_sym_unsigned] = ACTIONS(2852), - [anon_sym_long] = ACTIONS(2852), - [anon_sym_short] = ACTIONS(2852), - [sym_primitive_type] = ACTIONS(2852), - [anon_sym_enum] = ACTIONS(2852), - [anon_sym_class] = 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_return] = ACTIONS(2852), - [anon_sym_break] = ACTIONS(2852), - [anon_sym_continue] = ACTIONS(2852), - [anon_sym_goto] = ACTIONS(2852), - [anon_sym_not] = ACTIONS(2852), - [anon_sym_compl] = ACTIONS(2852), - [anon_sym_DASH_DASH] = ACTIONS(2854), - [anon_sym_PLUS_PLUS] = ACTIONS(2854), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2854), - [anon_sym_u_DQUOTE] = ACTIONS(2854), - [anon_sym_U_DQUOTE] = ACTIONS(2854), - [anon_sym_u8_DQUOTE] = ACTIONS(2854), - [anon_sym_DQUOTE] = ACTIONS(2854), - [sym_true] = ACTIONS(2852), - [sym_false] = ACTIONS(2852), - [sym_null] = ACTIONS(2852), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2852), - [anon_sym_decltype] = ACTIONS(2852), - [anon_sym_virtual] = ACTIONS(2852), - [anon_sym_explicit] = ACTIONS(2852), - [anon_sym_typename] = ACTIONS(2852), - [anon_sym_template] = ACTIONS(2852), - [anon_sym_operator] = ACTIONS(2852), - [anon_sym_try] = ACTIONS(2852), - [anon_sym_delete] = ACTIONS(2852), - [anon_sym_throw] = ACTIONS(2852), - [anon_sym_namespace] = ACTIONS(2852), - [anon_sym_using] = ACTIONS(2852), - [anon_sym_static_assert] = ACTIONS(2852), - [anon_sym_concept] = ACTIONS(2852), - [anon_sym_co_return] = ACTIONS(2852), - [anon_sym_co_yield] = ACTIONS(2852), - [anon_sym_R_DQUOTE] = ACTIONS(2854), - [anon_sym_LR_DQUOTE] = ACTIONS(2854), - [anon_sym_uR_DQUOTE] = ACTIONS(2854), - [anon_sym_UR_DQUOTE] = ACTIONS(2854), - [anon_sym_u8R_DQUOTE] = ACTIONS(2854), - [anon_sym_co_await] = ACTIONS(2852), - [anon_sym_new] = ACTIONS(2852), - [anon_sym_requires] = ACTIONS(2852), - [sym_this] = ACTIONS(2852), - [sym_nullptr] = ACTIONS(2852), - }, - [1026] = { - [sym_identifier] = ACTIONS(2666), - [aux_sym_preproc_include_token1] = ACTIONS(2666), - [aux_sym_preproc_def_token1] = ACTIONS(2666), - [aux_sym_preproc_if_token1] = ACTIONS(2666), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2666), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2666), - [sym_preproc_directive] = ACTIONS(2666), - [anon_sym_LPAREN2] = ACTIONS(2668), - [anon_sym_BANG] = ACTIONS(2668), - [anon_sym_TILDE] = ACTIONS(2668), - [anon_sym_DASH] = ACTIONS(2666), - [anon_sym_PLUS] = ACTIONS(2666), - [anon_sym_STAR] = ACTIONS(2668), - [anon_sym_AMP_AMP] = ACTIONS(2668), - [anon_sym_AMP] = ACTIONS(2666), - [anon_sym_SEMI] = ACTIONS(2668), - [anon_sym_typedef] = ACTIONS(2666), - [anon_sym_extern] = ACTIONS(2666), - [anon_sym___attribute__] = ACTIONS(2666), - [anon_sym_COLON_COLON] = ACTIONS(2668), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2668), - [anon_sym___declspec] = ACTIONS(2666), - [anon_sym___based] = ACTIONS(2666), - [anon_sym___cdecl] = ACTIONS(2666), - [anon_sym___clrcall] = ACTIONS(2666), - [anon_sym___stdcall] = ACTIONS(2666), - [anon_sym___fastcall] = ACTIONS(2666), - [anon_sym___thiscall] = ACTIONS(2666), - [anon_sym___vectorcall] = ACTIONS(2666), - [anon_sym_LBRACE] = ACTIONS(2668), - [anon_sym_RBRACE] = ACTIONS(2668), - [anon_sym_LBRACK] = ACTIONS(2666), - [anon_sym_static] = ACTIONS(2666), - [anon_sym_register] = ACTIONS(2666), - [anon_sym_inline] = ACTIONS(2666), - [anon_sym_thread_local] = ACTIONS(2666), - [anon_sym_const] = ACTIONS(2666), - [anon_sym_volatile] = ACTIONS(2666), - [anon_sym_restrict] = ACTIONS(2666), - [anon_sym__Atomic] = ACTIONS(2666), - [anon_sym_mutable] = ACTIONS(2666), - [anon_sym_constexpr] = ACTIONS(2666), - [anon_sym_constinit] = ACTIONS(2666), - [anon_sym_consteval] = ACTIONS(2666), - [anon_sym_signed] = ACTIONS(2666), - [anon_sym_unsigned] = ACTIONS(2666), - [anon_sym_long] = ACTIONS(2666), - [anon_sym_short] = ACTIONS(2666), - [sym_primitive_type] = ACTIONS(2666), - [anon_sym_enum] = ACTIONS(2666), - [anon_sym_class] = ACTIONS(2666), - [anon_sym_struct] = ACTIONS(2666), - [anon_sym_union] = ACTIONS(2666), - [anon_sym_if] = ACTIONS(2666), - [anon_sym_switch] = ACTIONS(2666), - [anon_sym_case] = ACTIONS(2666), - [anon_sym_default] = ACTIONS(2666), - [anon_sym_while] = ACTIONS(2666), - [anon_sym_do] = ACTIONS(2666), - [anon_sym_for] = ACTIONS(2666), - [anon_sym_return] = ACTIONS(2666), - [anon_sym_break] = ACTIONS(2666), - [anon_sym_continue] = ACTIONS(2666), - [anon_sym_goto] = ACTIONS(2666), - [anon_sym_not] = ACTIONS(2666), - [anon_sym_compl] = ACTIONS(2666), - [anon_sym_DASH_DASH] = ACTIONS(2668), - [anon_sym_PLUS_PLUS] = ACTIONS(2668), - [anon_sym_sizeof] = ACTIONS(2666), - [sym_number_literal] = ACTIONS(2668), - [anon_sym_L_SQUOTE] = ACTIONS(2668), - [anon_sym_u_SQUOTE] = ACTIONS(2668), - [anon_sym_U_SQUOTE] = ACTIONS(2668), - [anon_sym_u8_SQUOTE] = ACTIONS(2668), - [anon_sym_SQUOTE] = ACTIONS(2668), - [anon_sym_L_DQUOTE] = ACTIONS(2668), - [anon_sym_u_DQUOTE] = ACTIONS(2668), - [anon_sym_U_DQUOTE] = ACTIONS(2668), - [anon_sym_u8_DQUOTE] = ACTIONS(2668), - [anon_sym_DQUOTE] = ACTIONS(2668), - [sym_true] = ACTIONS(2666), - [sym_false] = ACTIONS(2666), - [sym_null] = ACTIONS(2666), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2666), - [anon_sym_decltype] = ACTIONS(2666), - [anon_sym_virtual] = ACTIONS(2666), - [anon_sym_explicit] = ACTIONS(2666), - [anon_sym_typename] = ACTIONS(2666), - [anon_sym_template] = ACTIONS(2666), - [anon_sym_operator] = ACTIONS(2666), - [anon_sym_try] = ACTIONS(2666), - [anon_sym_delete] = ACTIONS(2666), - [anon_sym_throw] = ACTIONS(2666), - [anon_sym_namespace] = ACTIONS(2666), - [anon_sym_using] = ACTIONS(2666), - [anon_sym_static_assert] = ACTIONS(2666), - [anon_sym_concept] = ACTIONS(2666), - [anon_sym_co_return] = ACTIONS(2666), - [anon_sym_co_yield] = ACTIONS(2666), - [anon_sym_R_DQUOTE] = ACTIONS(2668), - [anon_sym_LR_DQUOTE] = ACTIONS(2668), - [anon_sym_uR_DQUOTE] = ACTIONS(2668), - [anon_sym_UR_DQUOTE] = ACTIONS(2668), - [anon_sym_u8R_DQUOTE] = ACTIONS(2668), - [anon_sym_co_await] = ACTIONS(2666), - [anon_sym_new] = ACTIONS(2666), - [anon_sym_requires] = ACTIONS(2666), - [sym_this] = ACTIONS(2666), - [sym_nullptr] = ACTIONS(2666), - }, - [1027] = { - [sym_identifier] = ACTIONS(2774), - [aux_sym_preproc_include_token1] = ACTIONS(2774), - [aux_sym_preproc_def_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token1] = ACTIONS(2774), - [aux_sym_preproc_if_token2] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2774), - [sym_preproc_directive] = ACTIONS(2774), - [anon_sym_LPAREN2] = ACTIONS(2776), - [anon_sym_BANG] = ACTIONS(2776), - [anon_sym_TILDE] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_PLUS] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2776), - [anon_sym_AMP_AMP] = ACTIONS(2776), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_SEMI] = ACTIONS(2776), - [anon_sym_typedef] = ACTIONS(2774), - [anon_sym_extern] = ACTIONS(2774), - [anon_sym___attribute__] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2776), - [anon_sym___declspec] = ACTIONS(2774), - [anon_sym___based] = ACTIONS(2774), - [anon_sym___cdecl] = ACTIONS(2774), - [anon_sym___clrcall] = ACTIONS(2774), - [anon_sym___stdcall] = ACTIONS(2774), - [anon_sym___fastcall] = ACTIONS(2774), - [anon_sym___thiscall] = ACTIONS(2774), - [anon_sym___vectorcall] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2776), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_static] = ACTIONS(2774), - [anon_sym_register] = ACTIONS(2774), - [anon_sym_inline] = ACTIONS(2774), - [anon_sym_thread_local] = ACTIONS(2774), - [anon_sym_const] = ACTIONS(2774), - [anon_sym_volatile] = ACTIONS(2774), - [anon_sym_restrict] = ACTIONS(2774), - [anon_sym__Atomic] = ACTIONS(2774), - [anon_sym_mutable] = ACTIONS(2774), - [anon_sym_constexpr] = ACTIONS(2774), - [anon_sym_constinit] = ACTIONS(2774), - [anon_sym_consteval] = ACTIONS(2774), - [anon_sym_signed] = ACTIONS(2774), - [anon_sym_unsigned] = ACTIONS(2774), - [anon_sym_long] = ACTIONS(2774), - [anon_sym_short] = ACTIONS(2774), - [sym_primitive_type] = ACTIONS(2774), - [anon_sym_enum] = ACTIONS(2774), - [anon_sym_class] = ACTIONS(2774), - [anon_sym_struct] = ACTIONS(2774), - [anon_sym_union] = ACTIONS(2774), - [anon_sym_if] = ACTIONS(2774), - [anon_sym_switch] = ACTIONS(2774), - [anon_sym_case] = ACTIONS(2774), - [anon_sym_default] = ACTIONS(2774), - [anon_sym_while] = ACTIONS(2774), - [anon_sym_do] = ACTIONS(2774), - [anon_sym_for] = ACTIONS(2774), - [anon_sym_return] = ACTIONS(2774), - [anon_sym_break] = ACTIONS(2774), - [anon_sym_continue] = ACTIONS(2774), - [anon_sym_goto] = ACTIONS(2774), - [anon_sym_not] = ACTIONS(2774), - [anon_sym_compl] = ACTIONS(2774), - [anon_sym_DASH_DASH] = ACTIONS(2776), - [anon_sym_PLUS_PLUS] = ACTIONS(2776), - [anon_sym_sizeof] = ACTIONS(2774), - [sym_number_literal] = ACTIONS(2776), - [anon_sym_L_SQUOTE] = ACTIONS(2776), - [anon_sym_u_SQUOTE] = ACTIONS(2776), - [anon_sym_U_SQUOTE] = ACTIONS(2776), - [anon_sym_u8_SQUOTE] = ACTIONS(2776), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_L_DQUOTE] = ACTIONS(2776), - [anon_sym_u_DQUOTE] = ACTIONS(2776), - [anon_sym_U_DQUOTE] = ACTIONS(2776), - [anon_sym_u8_DQUOTE] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2776), - [sym_true] = ACTIONS(2774), - [sym_false] = ACTIONS(2774), - [sym_null] = ACTIONS(2774), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2774), - [anon_sym_decltype] = ACTIONS(2774), - [anon_sym_virtual] = ACTIONS(2774), - [anon_sym_explicit] = ACTIONS(2774), - [anon_sym_typename] = ACTIONS(2774), - [anon_sym_template] = ACTIONS(2774), - [anon_sym_operator] = ACTIONS(2774), - [anon_sym_try] = ACTIONS(2774), - [anon_sym_delete] = ACTIONS(2774), - [anon_sym_throw] = ACTIONS(2774), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_using] = ACTIONS(2774), - [anon_sym_static_assert] = ACTIONS(2774), - [anon_sym_concept] = ACTIONS(2774), - [anon_sym_co_return] = ACTIONS(2774), - [anon_sym_co_yield] = ACTIONS(2774), - [anon_sym_R_DQUOTE] = ACTIONS(2776), - [anon_sym_LR_DQUOTE] = ACTIONS(2776), - [anon_sym_uR_DQUOTE] = ACTIONS(2776), - [anon_sym_UR_DQUOTE] = ACTIONS(2776), - [anon_sym_u8R_DQUOTE] = ACTIONS(2776), - [anon_sym_co_await] = ACTIONS(2774), - [anon_sym_new] = ACTIONS(2774), - [anon_sym_requires] = ACTIONS(2774), - [sym_this] = ACTIONS(2774), - [sym_nullptr] = ACTIONS(2774), + [1076] = { + [ts_builtin_sym_end] = ACTIONS(3111), + [sym_identifier] = ACTIONS(3109), + [aux_sym_preproc_include_token1] = ACTIONS(3109), + [aux_sym_preproc_def_token1] = ACTIONS(3109), + [aux_sym_preproc_if_token1] = ACTIONS(3109), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3109), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3109), + [sym_preproc_directive] = ACTIONS(3109), + [anon_sym_LPAREN2] = ACTIONS(3111), + [anon_sym_BANG] = ACTIONS(3111), + [anon_sym_TILDE] = ACTIONS(3111), + [anon_sym_DASH] = ACTIONS(3109), + [anon_sym_PLUS] = ACTIONS(3109), + [anon_sym_STAR] = ACTIONS(3111), + [anon_sym_AMP_AMP] = ACTIONS(3111), + [anon_sym_AMP] = ACTIONS(3109), + [anon_sym_SEMI] = ACTIONS(3111), + [anon_sym_typedef] = ACTIONS(3109), + [anon_sym_extern] = ACTIONS(3109), + [anon_sym___attribute__] = ACTIONS(3109), + [anon_sym_COLON_COLON] = ACTIONS(3111), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3111), + [anon_sym___declspec] = ACTIONS(3109), + [anon_sym___based] = ACTIONS(3109), + [anon_sym___cdecl] = ACTIONS(3109), + [anon_sym___clrcall] = ACTIONS(3109), + [anon_sym___stdcall] = ACTIONS(3109), + [anon_sym___fastcall] = ACTIONS(3109), + [anon_sym___thiscall] = ACTIONS(3109), + [anon_sym___vectorcall] = ACTIONS(3109), + [anon_sym_LBRACE] = ACTIONS(3111), + [anon_sym_LBRACK] = ACTIONS(3109), + [anon_sym_static] = ACTIONS(3109), + [anon_sym_register] = ACTIONS(3109), + [anon_sym_inline] = ACTIONS(3109), + [anon_sym_thread_local] = ACTIONS(3109), + [anon_sym_const] = ACTIONS(3109), + [anon_sym_constexpr] = ACTIONS(3109), + [anon_sym_volatile] = ACTIONS(3109), + [anon_sym_restrict] = ACTIONS(3109), + [anon_sym___restrict__] = ACTIONS(3109), + [anon_sym__Atomic] = ACTIONS(3109), + [anon_sym__Noreturn] = ACTIONS(3109), + [anon_sym_noreturn] = ACTIONS(3109), + [anon_sym_mutable] = ACTIONS(3109), + [anon_sym_constinit] = ACTIONS(3109), + [anon_sym_consteval] = ACTIONS(3109), + [anon_sym_signed] = ACTIONS(3109), + [anon_sym_unsigned] = ACTIONS(3109), + [anon_sym_long] = ACTIONS(3109), + [anon_sym_short] = ACTIONS(3109), + [sym_primitive_type] = ACTIONS(3109), + [anon_sym_enum] = ACTIONS(3109), + [anon_sym_class] = ACTIONS(3109), + [anon_sym_struct] = ACTIONS(3109), + [anon_sym_union] = ACTIONS(3109), + [anon_sym_if] = ACTIONS(3109), + [anon_sym_else] = ACTIONS(3109), + [anon_sym_switch] = ACTIONS(3109), + [anon_sym_case] = ACTIONS(3109), + [anon_sym_default] = ACTIONS(3109), + [anon_sym_while] = ACTIONS(3109), + [anon_sym_do] = ACTIONS(3109), + [anon_sym_for] = ACTIONS(3109), + [anon_sym_return] = ACTIONS(3109), + [anon_sym_break] = ACTIONS(3109), + [anon_sym_continue] = ACTIONS(3109), + [anon_sym_goto] = ACTIONS(3109), + [anon_sym_not] = ACTIONS(3109), + [anon_sym_compl] = ACTIONS(3109), + [anon_sym_DASH_DASH] = ACTIONS(3111), + [anon_sym_PLUS_PLUS] = ACTIONS(3111), + [anon_sym_sizeof] = ACTIONS(3109), + [anon_sym_offsetof] = ACTIONS(3109), + [anon_sym__Generic] = ACTIONS(3109), + [anon_sym_asm] = ACTIONS(3109), + [anon_sym___asm__] = ACTIONS(3109), + [sym_number_literal] = ACTIONS(3111), + [anon_sym_L_SQUOTE] = ACTIONS(3111), + [anon_sym_u_SQUOTE] = ACTIONS(3111), + [anon_sym_U_SQUOTE] = ACTIONS(3111), + [anon_sym_u8_SQUOTE] = ACTIONS(3111), + [anon_sym_SQUOTE] = ACTIONS(3111), + [anon_sym_L_DQUOTE] = ACTIONS(3111), + [anon_sym_u_DQUOTE] = ACTIONS(3111), + [anon_sym_U_DQUOTE] = ACTIONS(3111), + [anon_sym_u8_DQUOTE] = ACTIONS(3111), + [anon_sym_DQUOTE] = ACTIONS(3111), + [sym_true] = ACTIONS(3109), + [sym_false] = ACTIONS(3109), + [anon_sym_NULL] = ACTIONS(3109), + [anon_sym_nullptr] = ACTIONS(3109), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3109), + [anon_sym_decltype] = ACTIONS(3109), + [anon_sym_virtual] = ACTIONS(3109), + [anon_sym_explicit] = ACTIONS(3109), + [anon_sym_typename] = ACTIONS(3109), + [anon_sym_template] = ACTIONS(3109), + [anon_sym_operator] = ACTIONS(3109), + [anon_sym_try] = ACTIONS(3109), + [anon_sym_delete] = ACTIONS(3109), + [anon_sym_throw] = ACTIONS(3109), + [anon_sym_namespace] = ACTIONS(3109), + [anon_sym_using] = ACTIONS(3109), + [anon_sym_static_assert] = ACTIONS(3109), + [anon_sym_concept] = ACTIONS(3109), + [anon_sym_co_return] = ACTIONS(3109), + [anon_sym_co_yield] = ACTIONS(3109), + [anon_sym_R_DQUOTE] = ACTIONS(3111), + [anon_sym_LR_DQUOTE] = ACTIONS(3111), + [anon_sym_uR_DQUOTE] = ACTIONS(3111), + [anon_sym_UR_DQUOTE] = ACTIONS(3111), + [anon_sym_u8R_DQUOTE] = ACTIONS(3111), + [anon_sym_co_await] = ACTIONS(3109), + [anon_sym_new] = ACTIONS(3109), + [anon_sym_requires] = ACTIONS(3109), + [sym_this] = ACTIONS(3109), }, - [1028] = { - [ts_builtin_sym_end] = ACTIONS(2870), - [sym_identifier] = ACTIONS(2868), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2870), - [anon_sym_AMP] = ACTIONS(2868), - [anon_sym_SEMI] = ACTIONS(2870), - [anon_sym_typedef] = ACTIONS(2868), - [anon_sym_extern] = ACTIONS(2868), - [anon_sym___attribute__] = ACTIONS(2868), - [anon_sym_COLON_COLON] = ACTIONS(2870), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2870), - [anon_sym___declspec] = ACTIONS(2868), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2868), - [anon_sym_static] = ACTIONS(2868), - [anon_sym_register] = ACTIONS(2868), - [anon_sym_inline] = ACTIONS(2868), - [anon_sym_thread_local] = ACTIONS(2868), - [anon_sym_const] = ACTIONS(2868), - [anon_sym_volatile] = ACTIONS(2868), - [anon_sym_restrict] = ACTIONS(2868), - [anon_sym__Atomic] = ACTIONS(2868), - [anon_sym_mutable] = ACTIONS(2868), - [anon_sym_constexpr] = ACTIONS(2868), - [anon_sym_constinit] = ACTIONS(2868), - [anon_sym_consteval] = ACTIONS(2868), - [anon_sym_signed] = ACTIONS(2868), - [anon_sym_unsigned] = ACTIONS(2868), - [anon_sym_long] = ACTIONS(2868), - [anon_sym_short] = ACTIONS(2868), - [sym_primitive_type] = ACTIONS(2868), - [anon_sym_enum] = ACTIONS(2868), - [anon_sym_class] = 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_return] = ACTIONS(2868), - [anon_sym_break] = ACTIONS(2868), - [anon_sym_continue] = ACTIONS(2868), - [anon_sym_goto] = ACTIONS(2868), - [anon_sym_not] = ACTIONS(2868), - [anon_sym_compl] = ACTIONS(2868), - [anon_sym_DASH_DASH] = ACTIONS(2870), - [anon_sym_PLUS_PLUS] = ACTIONS(2870), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2870), - [anon_sym_u_DQUOTE] = ACTIONS(2870), - [anon_sym_U_DQUOTE] = ACTIONS(2870), - [anon_sym_u8_DQUOTE] = ACTIONS(2870), - [anon_sym_DQUOTE] = ACTIONS(2870), - [sym_true] = ACTIONS(2868), - [sym_false] = ACTIONS(2868), - [sym_null] = ACTIONS(2868), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2868), - [anon_sym_decltype] = ACTIONS(2868), - [anon_sym_virtual] = ACTIONS(2868), - [anon_sym_explicit] = ACTIONS(2868), - [anon_sym_typename] = ACTIONS(2868), - [anon_sym_template] = ACTIONS(2868), - [anon_sym_operator] = ACTIONS(2868), - [anon_sym_try] = ACTIONS(2868), - [anon_sym_delete] = ACTIONS(2868), - [anon_sym_throw] = ACTIONS(2868), - [anon_sym_namespace] = ACTIONS(2868), - [anon_sym_using] = ACTIONS(2868), - [anon_sym_static_assert] = ACTIONS(2868), - [anon_sym_concept] = ACTIONS(2868), - [anon_sym_co_return] = ACTIONS(2868), - [anon_sym_co_yield] = ACTIONS(2868), - [anon_sym_R_DQUOTE] = ACTIONS(2870), - [anon_sym_LR_DQUOTE] = ACTIONS(2870), - [anon_sym_uR_DQUOTE] = ACTIONS(2870), - [anon_sym_UR_DQUOTE] = ACTIONS(2870), - [anon_sym_u8R_DQUOTE] = ACTIONS(2870), - [anon_sym_co_await] = ACTIONS(2868), - [anon_sym_new] = ACTIONS(2868), - [anon_sym_requires] = ACTIONS(2868), - [sym_this] = ACTIONS(2868), - [sym_nullptr] = ACTIONS(2868), + [1077] = { + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token2] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, - [1029] = { + [1078] = { + [ts_builtin_sym_end] = ACTIONS(2910), [sym_identifier] = ACTIONS(2908), [aux_sym_preproc_include_token1] = ACTIONS(2908), [aux_sym_preproc_def_token1] = ACTIONS(2908), @@ -153596,18 +188769,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(2908), [anon_sym___vectorcall] = ACTIONS(2908), [anon_sym_LBRACE] = ACTIONS(2910), - [anon_sym_RBRACE] = ACTIONS(2910), [anon_sym_LBRACK] = ACTIONS(2908), [anon_sym_static] = ACTIONS(2908), [anon_sym_register] = ACTIONS(2908), [anon_sym_inline] = ACTIONS(2908), [anon_sym_thread_local] = ACTIONS(2908), [anon_sym_const] = ACTIONS(2908), + [anon_sym_constexpr] = ACTIONS(2908), [anon_sym_volatile] = ACTIONS(2908), [anon_sym_restrict] = ACTIONS(2908), + [anon_sym___restrict__] = ACTIONS(2908), [anon_sym__Atomic] = ACTIONS(2908), + [anon_sym__Noreturn] = ACTIONS(2908), + [anon_sym_noreturn] = ACTIONS(2908), [anon_sym_mutable] = ACTIONS(2908), - [anon_sym_constexpr] = ACTIONS(2908), [anon_sym_constinit] = ACTIONS(2908), [anon_sym_consteval] = ACTIONS(2908), [anon_sym_signed] = ACTIONS(2908), @@ -153620,6 +188795,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(2908), [anon_sym_union] = ACTIONS(2908), [anon_sym_if] = ACTIONS(2908), + [anon_sym_else] = ACTIONS(2908), [anon_sym_switch] = ACTIONS(2908), [anon_sym_case] = ACTIONS(2908), [anon_sym_default] = ACTIONS(2908), @@ -153635,6 +188811,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(2910), [anon_sym_PLUS_PLUS] = ACTIONS(2910), [anon_sym_sizeof] = ACTIONS(2908), + [anon_sym_offsetof] = ACTIONS(2908), + [anon_sym__Generic] = ACTIONS(2908), + [anon_sym_asm] = ACTIONS(2908), + [anon_sym___asm__] = ACTIONS(2908), [sym_number_literal] = ACTIONS(2910), [anon_sym_L_SQUOTE] = ACTIONS(2910), [anon_sym_u_SQUOTE] = ACTIONS(2910), @@ -153648,7 +188828,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(2910), [sym_true] = ACTIONS(2908), [sym_false] = ACTIONS(2908), - [sym_null] = ACTIONS(2908), + [anon_sym_NULL] = ACTIONS(2908), + [anon_sym_nullptr] = ACTIONS(2908), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(2908), [anon_sym_decltype] = ACTIONS(2908), @@ -153675,73243 +188856,112481 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(2908), [anon_sym_requires] = ACTIONS(2908), [sym_this] = ACTIONS(2908), - [sym_nullptr] = ACTIONS(2908), }, - [1030] = { - [sym_identifier] = ACTIONS(2670), - [aux_sym_preproc_include_token1] = ACTIONS(2670), - [aux_sym_preproc_def_token1] = ACTIONS(2670), - [aux_sym_preproc_if_token1] = ACTIONS(2670), - [aux_sym_preproc_if_token2] = ACTIONS(2670), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2670), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2670), - [sym_preproc_directive] = ACTIONS(2670), - [anon_sym_LPAREN2] = ACTIONS(2672), - [anon_sym_BANG] = ACTIONS(2672), - [anon_sym_TILDE] = ACTIONS(2672), - [anon_sym_DASH] = ACTIONS(2670), - [anon_sym_PLUS] = ACTIONS(2670), - [anon_sym_STAR] = ACTIONS(2672), - [anon_sym_AMP_AMP] = ACTIONS(2672), - [anon_sym_AMP] = ACTIONS(2670), - [anon_sym_SEMI] = ACTIONS(2672), - [anon_sym_typedef] = ACTIONS(2670), - [anon_sym_extern] = ACTIONS(2670), - [anon_sym___attribute__] = ACTIONS(2670), - [anon_sym_COLON_COLON] = ACTIONS(2672), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2672), - [anon_sym___declspec] = ACTIONS(2670), - [anon_sym___based] = ACTIONS(2670), - [anon_sym___cdecl] = ACTIONS(2670), - [anon_sym___clrcall] = ACTIONS(2670), - [anon_sym___stdcall] = ACTIONS(2670), - [anon_sym___fastcall] = ACTIONS(2670), - [anon_sym___thiscall] = ACTIONS(2670), - [anon_sym___vectorcall] = ACTIONS(2670), - [anon_sym_LBRACE] = ACTIONS(2672), - [anon_sym_LBRACK] = ACTIONS(2670), - [anon_sym_static] = ACTIONS(2670), - [anon_sym_register] = ACTIONS(2670), - [anon_sym_inline] = ACTIONS(2670), - [anon_sym_thread_local] = ACTIONS(2670), - [anon_sym_const] = ACTIONS(2670), - [anon_sym_volatile] = ACTIONS(2670), - [anon_sym_restrict] = ACTIONS(2670), - [anon_sym__Atomic] = ACTIONS(2670), - [anon_sym_mutable] = ACTIONS(2670), - [anon_sym_constexpr] = ACTIONS(2670), - [anon_sym_constinit] = ACTIONS(2670), - [anon_sym_consteval] = ACTIONS(2670), - [anon_sym_signed] = ACTIONS(2670), - [anon_sym_unsigned] = ACTIONS(2670), - [anon_sym_long] = ACTIONS(2670), - [anon_sym_short] = ACTIONS(2670), - [sym_primitive_type] = ACTIONS(2670), - [anon_sym_enum] = ACTIONS(2670), - [anon_sym_class] = ACTIONS(2670), - [anon_sym_struct] = ACTIONS(2670), - [anon_sym_union] = ACTIONS(2670), - [anon_sym_if] = ACTIONS(2670), - [anon_sym_switch] = ACTIONS(2670), - [anon_sym_case] = ACTIONS(2670), - [anon_sym_default] = ACTIONS(2670), - [anon_sym_while] = ACTIONS(2670), - [anon_sym_do] = ACTIONS(2670), - [anon_sym_for] = ACTIONS(2670), - [anon_sym_return] = ACTIONS(2670), - [anon_sym_break] = ACTIONS(2670), - [anon_sym_continue] = ACTIONS(2670), - [anon_sym_goto] = ACTIONS(2670), - [anon_sym_not] = ACTIONS(2670), - [anon_sym_compl] = ACTIONS(2670), - [anon_sym_DASH_DASH] = ACTIONS(2672), - [anon_sym_PLUS_PLUS] = ACTIONS(2672), - [anon_sym_sizeof] = ACTIONS(2670), - [sym_number_literal] = ACTIONS(2672), - [anon_sym_L_SQUOTE] = ACTIONS(2672), - [anon_sym_u_SQUOTE] = ACTIONS(2672), - [anon_sym_U_SQUOTE] = ACTIONS(2672), - [anon_sym_u8_SQUOTE] = ACTIONS(2672), - [anon_sym_SQUOTE] = ACTIONS(2672), - [anon_sym_L_DQUOTE] = ACTIONS(2672), - [anon_sym_u_DQUOTE] = ACTIONS(2672), - [anon_sym_U_DQUOTE] = ACTIONS(2672), - [anon_sym_u8_DQUOTE] = ACTIONS(2672), - [anon_sym_DQUOTE] = ACTIONS(2672), - [sym_true] = ACTIONS(2670), - [sym_false] = ACTIONS(2670), - [sym_null] = ACTIONS(2670), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2670), - [anon_sym_decltype] = ACTIONS(2670), - [anon_sym_virtual] = ACTIONS(2670), - [anon_sym_explicit] = ACTIONS(2670), - [anon_sym_typename] = ACTIONS(2670), - [anon_sym_template] = ACTIONS(2670), - [anon_sym_operator] = ACTIONS(2670), - [anon_sym_try] = ACTIONS(2670), - [anon_sym_delete] = ACTIONS(2670), - [anon_sym_throw] = ACTIONS(2670), - [anon_sym_namespace] = ACTIONS(2670), - [anon_sym_using] = ACTIONS(2670), - [anon_sym_static_assert] = ACTIONS(2670), - [anon_sym_concept] = ACTIONS(2670), - [anon_sym_co_return] = ACTIONS(2670), - [anon_sym_co_yield] = ACTIONS(2670), - [anon_sym_R_DQUOTE] = ACTIONS(2672), - [anon_sym_LR_DQUOTE] = ACTIONS(2672), - [anon_sym_uR_DQUOTE] = ACTIONS(2672), - [anon_sym_UR_DQUOTE] = ACTIONS(2672), - [anon_sym_u8R_DQUOTE] = ACTIONS(2672), - [anon_sym_co_await] = ACTIONS(2670), - [anon_sym_new] = ACTIONS(2670), - [anon_sym_requires] = ACTIONS(2670), - [sym_this] = ACTIONS(2670), - [sym_nullptr] = ACTIONS(2670), + [1079] = { + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token2] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, - [1031] = { - [sym_identifier] = ACTIONS(2770), - [aux_sym_preproc_include_token1] = ACTIONS(2770), - [aux_sym_preproc_def_token1] = ACTIONS(2770), - [aux_sym_preproc_if_token1] = ACTIONS(2770), - [aux_sym_preproc_if_token2] = ACTIONS(2770), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2770), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2770), - [sym_preproc_directive] = ACTIONS(2770), - [anon_sym_LPAREN2] = ACTIONS(2772), - [anon_sym_BANG] = ACTIONS(2772), - [anon_sym_TILDE] = ACTIONS(2772), - [anon_sym_DASH] = ACTIONS(2770), - [anon_sym_PLUS] = ACTIONS(2770), - [anon_sym_STAR] = ACTIONS(2772), - [anon_sym_AMP_AMP] = ACTIONS(2772), - [anon_sym_AMP] = ACTIONS(2770), - [anon_sym_SEMI] = ACTIONS(2772), - [anon_sym_typedef] = ACTIONS(2770), - [anon_sym_extern] = ACTIONS(2770), - [anon_sym___attribute__] = ACTIONS(2770), - [anon_sym_COLON_COLON] = ACTIONS(2772), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2772), - [anon_sym___declspec] = ACTIONS(2770), - [anon_sym___based] = ACTIONS(2770), - [anon_sym___cdecl] = ACTIONS(2770), - [anon_sym___clrcall] = ACTIONS(2770), - [anon_sym___stdcall] = ACTIONS(2770), - [anon_sym___fastcall] = ACTIONS(2770), - [anon_sym___thiscall] = ACTIONS(2770), - [anon_sym___vectorcall] = ACTIONS(2770), - [anon_sym_LBRACE] = ACTIONS(2772), - [anon_sym_LBRACK] = ACTIONS(2770), - [anon_sym_static] = ACTIONS(2770), - [anon_sym_register] = ACTIONS(2770), - [anon_sym_inline] = ACTIONS(2770), - [anon_sym_thread_local] = ACTIONS(2770), - [anon_sym_const] = ACTIONS(2770), - [anon_sym_volatile] = ACTIONS(2770), - [anon_sym_restrict] = ACTIONS(2770), - [anon_sym__Atomic] = ACTIONS(2770), - [anon_sym_mutable] = ACTIONS(2770), - [anon_sym_constexpr] = ACTIONS(2770), - [anon_sym_constinit] = ACTIONS(2770), - [anon_sym_consteval] = ACTIONS(2770), - [anon_sym_signed] = ACTIONS(2770), - [anon_sym_unsigned] = ACTIONS(2770), - [anon_sym_long] = ACTIONS(2770), - [anon_sym_short] = ACTIONS(2770), - [sym_primitive_type] = ACTIONS(2770), - [anon_sym_enum] = ACTIONS(2770), - [anon_sym_class] = ACTIONS(2770), - [anon_sym_struct] = ACTIONS(2770), - [anon_sym_union] = ACTIONS(2770), - [anon_sym_if] = ACTIONS(2770), - [anon_sym_switch] = ACTIONS(2770), - [anon_sym_case] = ACTIONS(2770), - [anon_sym_default] = ACTIONS(2770), - [anon_sym_while] = ACTIONS(2770), - [anon_sym_do] = ACTIONS(2770), - [anon_sym_for] = ACTIONS(2770), - [anon_sym_return] = ACTIONS(2770), - [anon_sym_break] = ACTIONS(2770), - [anon_sym_continue] = ACTIONS(2770), - [anon_sym_goto] = ACTIONS(2770), - [anon_sym_not] = ACTIONS(2770), - [anon_sym_compl] = ACTIONS(2770), - [anon_sym_DASH_DASH] = ACTIONS(2772), - [anon_sym_PLUS_PLUS] = ACTIONS(2772), - [anon_sym_sizeof] = ACTIONS(2770), - [sym_number_literal] = ACTIONS(2772), - [anon_sym_L_SQUOTE] = ACTIONS(2772), - [anon_sym_u_SQUOTE] = ACTIONS(2772), - [anon_sym_U_SQUOTE] = ACTIONS(2772), - [anon_sym_u8_SQUOTE] = ACTIONS(2772), - [anon_sym_SQUOTE] = ACTIONS(2772), - [anon_sym_L_DQUOTE] = ACTIONS(2772), - [anon_sym_u_DQUOTE] = ACTIONS(2772), - [anon_sym_U_DQUOTE] = ACTIONS(2772), - [anon_sym_u8_DQUOTE] = ACTIONS(2772), - [anon_sym_DQUOTE] = ACTIONS(2772), - [sym_true] = ACTIONS(2770), - [sym_false] = ACTIONS(2770), - [sym_null] = ACTIONS(2770), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2770), - [anon_sym_decltype] = ACTIONS(2770), - [anon_sym_virtual] = ACTIONS(2770), - [anon_sym_explicit] = ACTIONS(2770), - [anon_sym_typename] = ACTIONS(2770), - [anon_sym_template] = ACTIONS(2770), - [anon_sym_operator] = ACTIONS(2770), - [anon_sym_try] = ACTIONS(2770), - [anon_sym_delete] = ACTIONS(2770), - [anon_sym_throw] = ACTIONS(2770), - [anon_sym_namespace] = ACTIONS(2770), - [anon_sym_using] = ACTIONS(2770), - [anon_sym_static_assert] = ACTIONS(2770), - [anon_sym_concept] = ACTIONS(2770), - [anon_sym_co_return] = ACTIONS(2770), - [anon_sym_co_yield] = ACTIONS(2770), - [anon_sym_R_DQUOTE] = ACTIONS(2772), - [anon_sym_LR_DQUOTE] = ACTIONS(2772), - [anon_sym_uR_DQUOTE] = ACTIONS(2772), - [anon_sym_UR_DQUOTE] = ACTIONS(2772), - [anon_sym_u8R_DQUOTE] = ACTIONS(2772), - [anon_sym_co_await] = ACTIONS(2770), - [anon_sym_new] = ACTIONS(2770), - [anon_sym_requires] = ACTIONS(2770), - [sym_this] = ACTIONS(2770), - [sym_nullptr] = ACTIONS(2770), + [1080] = { + [ts_builtin_sym_end] = ACTIONS(3115), + [sym_identifier] = ACTIONS(3113), + [aux_sym_preproc_include_token1] = ACTIONS(3113), + [aux_sym_preproc_def_token1] = ACTIONS(3113), + [aux_sym_preproc_if_token1] = ACTIONS(3113), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3113), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3113), + [sym_preproc_directive] = ACTIONS(3113), + [anon_sym_LPAREN2] = ACTIONS(3115), + [anon_sym_BANG] = ACTIONS(3115), + [anon_sym_TILDE] = ACTIONS(3115), + [anon_sym_DASH] = ACTIONS(3113), + [anon_sym_PLUS] = ACTIONS(3113), + [anon_sym_STAR] = ACTIONS(3115), + [anon_sym_AMP_AMP] = ACTIONS(3115), + [anon_sym_AMP] = ACTIONS(3113), + [anon_sym_SEMI] = ACTIONS(3115), + [anon_sym_typedef] = ACTIONS(3113), + [anon_sym_extern] = ACTIONS(3113), + [anon_sym___attribute__] = ACTIONS(3113), + [anon_sym_COLON_COLON] = ACTIONS(3115), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3115), + [anon_sym___declspec] = ACTIONS(3113), + [anon_sym___based] = ACTIONS(3113), + [anon_sym___cdecl] = ACTIONS(3113), + [anon_sym___clrcall] = ACTIONS(3113), + [anon_sym___stdcall] = ACTIONS(3113), + [anon_sym___fastcall] = ACTIONS(3113), + [anon_sym___thiscall] = ACTIONS(3113), + [anon_sym___vectorcall] = ACTIONS(3113), + [anon_sym_LBRACE] = ACTIONS(3115), + [anon_sym_LBRACK] = ACTIONS(3113), + [anon_sym_static] = ACTIONS(3113), + [anon_sym_register] = ACTIONS(3113), + [anon_sym_inline] = ACTIONS(3113), + [anon_sym_thread_local] = ACTIONS(3113), + [anon_sym_const] = ACTIONS(3113), + [anon_sym_constexpr] = ACTIONS(3113), + [anon_sym_volatile] = ACTIONS(3113), + [anon_sym_restrict] = ACTIONS(3113), + [anon_sym___restrict__] = ACTIONS(3113), + [anon_sym__Atomic] = ACTIONS(3113), + [anon_sym__Noreturn] = ACTIONS(3113), + [anon_sym_noreturn] = ACTIONS(3113), + [anon_sym_mutable] = ACTIONS(3113), + [anon_sym_constinit] = ACTIONS(3113), + [anon_sym_consteval] = ACTIONS(3113), + [anon_sym_signed] = ACTIONS(3113), + [anon_sym_unsigned] = ACTIONS(3113), + [anon_sym_long] = ACTIONS(3113), + [anon_sym_short] = ACTIONS(3113), + [sym_primitive_type] = ACTIONS(3113), + [anon_sym_enum] = ACTIONS(3113), + [anon_sym_class] = ACTIONS(3113), + [anon_sym_struct] = ACTIONS(3113), + [anon_sym_union] = ACTIONS(3113), + [anon_sym_if] = ACTIONS(3113), + [anon_sym_else] = ACTIONS(3113), + [anon_sym_switch] = ACTIONS(3113), + [anon_sym_case] = ACTIONS(3113), + [anon_sym_default] = ACTIONS(3113), + [anon_sym_while] = ACTIONS(3113), + [anon_sym_do] = ACTIONS(3113), + [anon_sym_for] = ACTIONS(3113), + [anon_sym_return] = ACTIONS(3113), + [anon_sym_break] = ACTIONS(3113), + [anon_sym_continue] = ACTIONS(3113), + [anon_sym_goto] = ACTIONS(3113), + [anon_sym_not] = ACTIONS(3113), + [anon_sym_compl] = ACTIONS(3113), + [anon_sym_DASH_DASH] = ACTIONS(3115), + [anon_sym_PLUS_PLUS] = ACTIONS(3115), + [anon_sym_sizeof] = ACTIONS(3113), + [anon_sym_offsetof] = ACTIONS(3113), + [anon_sym__Generic] = ACTIONS(3113), + [anon_sym_asm] = ACTIONS(3113), + [anon_sym___asm__] = ACTIONS(3113), + [sym_number_literal] = ACTIONS(3115), + [anon_sym_L_SQUOTE] = ACTIONS(3115), + [anon_sym_u_SQUOTE] = ACTIONS(3115), + [anon_sym_U_SQUOTE] = ACTIONS(3115), + [anon_sym_u8_SQUOTE] = ACTIONS(3115), + [anon_sym_SQUOTE] = ACTIONS(3115), + [anon_sym_L_DQUOTE] = ACTIONS(3115), + [anon_sym_u_DQUOTE] = ACTIONS(3115), + [anon_sym_U_DQUOTE] = ACTIONS(3115), + [anon_sym_u8_DQUOTE] = ACTIONS(3115), + [anon_sym_DQUOTE] = ACTIONS(3115), + [sym_true] = ACTIONS(3113), + [sym_false] = ACTIONS(3113), + [anon_sym_NULL] = ACTIONS(3113), + [anon_sym_nullptr] = ACTIONS(3113), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3113), + [anon_sym_decltype] = ACTIONS(3113), + [anon_sym_virtual] = ACTIONS(3113), + [anon_sym_explicit] = ACTIONS(3113), + [anon_sym_typename] = ACTIONS(3113), + [anon_sym_template] = ACTIONS(3113), + [anon_sym_operator] = ACTIONS(3113), + [anon_sym_try] = ACTIONS(3113), + [anon_sym_delete] = ACTIONS(3113), + [anon_sym_throw] = ACTIONS(3113), + [anon_sym_namespace] = ACTIONS(3113), + [anon_sym_using] = ACTIONS(3113), + [anon_sym_static_assert] = ACTIONS(3113), + [anon_sym_concept] = ACTIONS(3113), + [anon_sym_co_return] = ACTIONS(3113), + [anon_sym_co_yield] = ACTIONS(3113), + [anon_sym_R_DQUOTE] = ACTIONS(3115), + [anon_sym_LR_DQUOTE] = ACTIONS(3115), + [anon_sym_uR_DQUOTE] = ACTIONS(3115), + [anon_sym_UR_DQUOTE] = ACTIONS(3115), + [anon_sym_u8R_DQUOTE] = ACTIONS(3115), + [anon_sym_co_await] = ACTIONS(3113), + [anon_sym_new] = ACTIONS(3113), + [anon_sym_requires] = ACTIONS(3113), + [sym_this] = ACTIONS(3113), }, - [1032] = { - [sym_identifier] = ACTIONS(2766), - [aux_sym_preproc_include_token1] = ACTIONS(2766), - [aux_sym_preproc_def_token1] = ACTIONS(2766), - [aux_sym_preproc_if_token1] = ACTIONS(2766), - [aux_sym_preproc_if_token2] = ACTIONS(2766), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2766), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2766), - [sym_preproc_directive] = ACTIONS(2766), - [anon_sym_LPAREN2] = ACTIONS(2768), - [anon_sym_BANG] = ACTIONS(2768), - [anon_sym_TILDE] = ACTIONS(2768), - [anon_sym_DASH] = ACTIONS(2766), - [anon_sym_PLUS] = ACTIONS(2766), - [anon_sym_STAR] = ACTIONS(2768), - [anon_sym_AMP_AMP] = ACTIONS(2768), - [anon_sym_AMP] = ACTIONS(2766), - [anon_sym_SEMI] = ACTIONS(2768), - [anon_sym_typedef] = ACTIONS(2766), - [anon_sym_extern] = ACTIONS(2766), - [anon_sym___attribute__] = ACTIONS(2766), - [anon_sym_COLON_COLON] = ACTIONS(2768), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2768), - [anon_sym___declspec] = ACTIONS(2766), - [anon_sym___based] = ACTIONS(2766), - [anon_sym___cdecl] = ACTIONS(2766), - [anon_sym___clrcall] = ACTIONS(2766), - [anon_sym___stdcall] = ACTIONS(2766), - [anon_sym___fastcall] = ACTIONS(2766), - [anon_sym___thiscall] = ACTIONS(2766), - [anon_sym___vectorcall] = ACTIONS(2766), - [anon_sym_LBRACE] = ACTIONS(2768), - [anon_sym_LBRACK] = ACTIONS(2766), - [anon_sym_static] = ACTIONS(2766), - [anon_sym_register] = ACTIONS(2766), - [anon_sym_inline] = ACTIONS(2766), - [anon_sym_thread_local] = ACTIONS(2766), - [anon_sym_const] = ACTIONS(2766), - [anon_sym_volatile] = ACTIONS(2766), - [anon_sym_restrict] = ACTIONS(2766), - [anon_sym__Atomic] = ACTIONS(2766), - [anon_sym_mutable] = ACTIONS(2766), - [anon_sym_constexpr] = ACTIONS(2766), - [anon_sym_constinit] = ACTIONS(2766), - [anon_sym_consteval] = ACTIONS(2766), - [anon_sym_signed] = ACTIONS(2766), - [anon_sym_unsigned] = ACTIONS(2766), - [anon_sym_long] = ACTIONS(2766), - [anon_sym_short] = ACTIONS(2766), - [sym_primitive_type] = ACTIONS(2766), - [anon_sym_enum] = ACTIONS(2766), - [anon_sym_class] = ACTIONS(2766), - [anon_sym_struct] = ACTIONS(2766), - [anon_sym_union] = ACTIONS(2766), - [anon_sym_if] = ACTIONS(2766), - [anon_sym_switch] = ACTIONS(2766), - [anon_sym_case] = ACTIONS(2766), - [anon_sym_default] = ACTIONS(2766), - [anon_sym_while] = ACTIONS(2766), - [anon_sym_do] = ACTIONS(2766), - [anon_sym_for] = ACTIONS(2766), - [anon_sym_return] = ACTIONS(2766), - [anon_sym_break] = ACTIONS(2766), - [anon_sym_continue] = ACTIONS(2766), - [anon_sym_goto] = ACTIONS(2766), - [anon_sym_not] = ACTIONS(2766), - [anon_sym_compl] = ACTIONS(2766), - [anon_sym_DASH_DASH] = ACTIONS(2768), - [anon_sym_PLUS_PLUS] = ACTIONS(2768), - [anon_sym_sizeof] = ACTIONS(2766), - [sym_number_literal] = ACTIONS(2768), - [anon_sym_L_SQUOTE] = ACTIONS(2768), - [anon_sym_u_SQUOTE] = ACTIONS(2768), - [anon_sym_U_SQUOTE] = ACTIONS(2768), - [anon_sym_u8_SQUOTE] = ACTIONS(2768), - [anon_sym_SQUOTE] = ACTIONS(2768), - [anon_sym_L_DQUOTE] = ACTIONS(2768), - [anon_sym_u_DQUOTE] = ACTIONS(2768), - [anon_sym_U_DQUOTE] = ACTIONS(2768), - [anon_sym_u8_DQUOTE] = ACTIONS(2768), - [anon_sym_DQUOTE] = ACTIONS(2768), - [sym_true] = ACTIONS(2766), - [sym_false] = ACTIONS(2766), - [sym_null] = ACTIONS(2766), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2766), - [anon_sym_decltype] = ACTIONS(2766), - [anon_sym_virtual] = ACTIONS(2766), - [anon_sym_explicit] = ACTIONS(2766), - [anon_sym_typename] = ACTIONS(2766), - [anon_sym_template] = ACTIONS(2766), - [anon_sym_operator] = ACTIONS(2766), - [anon_sym_try] = ACTIONS(2766), - [anon_sym_delete] = ACTIONS(2766), - [anon_sym_throw] = ACTIONS(2766), - [anon_sym_namespace] = ACTIONS(2766), - [anon_sym_using] = ACTIONS(2766), - [anon_sym_static_assert] = ACTIONS(2766), - [anon_sym_concept] = ACTIONS(2766), - [anon_sym_co_return] = ACTIONS(2766), - [anon_sym_co_yield] = ACTIONS(2766), - [anon_sym_R_DQUOTE] = ACTIONS(2768), - [anon_sym_LR_DQUOTE] = ACTIONS(2768), - [anon_sym_uR_DQUOTE] = ACTIONS(2768), - [anon_sym_UR_DQUOTE] = ACTIONS(2768), - [anon_sym_u8R_DQUOTE] = ACTIONS(2768), - [anon_sym_co_await] = ACTIONS(2766), - [anon_sym_new] = ACTIONS(2766), - [anon_sym_requires] = ACTIONS(2766), - [sym_this] = ACTIONS(2766), - [sym_nullptr] = ACTIONS(2766), + [1081] = { + [ts_builtin_sym_end] = ACTIONS(3030), + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, - [1033] = { - [ts_builtin_sym_end] = ACTIONS(2728), - [sym_identifier] = ACTIONS(2726), - [aux_sym_preproc_include_token1] = ACTIONS(2726), - [aux_sym_preproc_def_token1] = ACTIONS(2726), - [aux_sym_preproc_if_token1] = ACTIONS(2726), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2726), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2726), - [sym_preproc_directive] = ACTIONS(2726), - [anon_sym_LPAREN2] = ACTIONS(2728), - [anon_sym_BANG] = ACTIONS(2728), - [anon_sym_TILDE] = ACTIONS(2728), - [anon_sym_DASH] = ACTIONS(2726), - [anon_sym_PLUS] = ACTIONS(2726), - [anon_sym_STAR] = ACTIONS(2728), - [anon_sym_AMP_AMP] = ACTIONS(2728), - [anon_sym_AMP] = ACTIONS(2726), - [anon_sym_SEMI] = ACTIONS(2728), - [anon_sym_typedef] = ACTIONS(2726), - [anon_sym_extern] = ACTIONS(2726), - [anon_sym___attribute__] = ACTIONS(2726), - [anon_sym_COLON_COLON] = ACTIONS(2728), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2728), - [anon_sym___declspec] = ACTIONS(2726), - [anon_sym___based] = ACTIONS(2726), - [anon_sym___cdecl] = ACTIONS(2726), - [anon_sym___clrcall] = ACTIONS(2726), - [anon_sym___stdcall] = ACTIONS(2726), - [anon_sym___fastcall] = ACTIONS(2726), - [anon_sym___thiscall] = ACTIONS(2726), - [anon_sym___vectorcall] = ACTIONS(2726), - [anon_sym_LBRACE] = ACTIONS(2728), - [anon_sym_LBRACK] = ACTIONS(2726), - [anon_sym_static] = ACTIONS(2726), - [anon_sym_register] = ACTIONS(2726), - [anon_sym_inline] = ACTIONS(2726), - [anon_sym_thread_local] = ACTIONS(2726), - [anon_sym_const] = ACTIONS(2726), - [anon_sym_volatile] = ACTIONS(2726), - [anon_sym_restrict] = ACTIONS(2726), - [anon_sym__Atomic] = ACTIONS(2726), - [anon_sym_mutable] = ACTIONS(2726), - [anon_sym_constexpr] = ACTIONS(2726), - [anon_sym_constinit] = ACTIONS(2726), - [anon_sym_consteval] = ACTIONS(2726), - [anon_sym_signed] = ACTIONS(2726), - [anon_sym_unsigned] = ACTIONS(2726), - [anon_sym_long] = ACTIONS(2726), - [anon_sym_short] = ACTIONS(2726), - [sym_primitive_type] = ACTIONS(2726), - [anon_sym_enum] = ACTIONS(2726), - [anon_sym_class] = ACTIONS(2726), - [anon_sym_struct] = ACTIONS(2726), - [anon_sym_union] = ACTIONS(2726), - [anon_sym_if] = ACTIONS(2726), - [anon_sym_switch] = ACTIONS(2726), - [anon_sym_case] = ACTIONS(2726), - [anon_sym_default] = ACTIONS(2726), - [anon_sym_while] = ACTIONS(2726), - [anon_sym_do] = ACTIONS(2726), - [anon_sym_for] = ACTIONS(2726), - [anon_sym_return] = ACTIONS(2726), - [anon_sym_break] = ACTIONS(2726), - [anon_sym_continue] = ACTIONS(2726), - [anon_sym_goto] = ACTIONS(2726), - [anon_sym_not] = ACTIONS(2726), - [anon_sym_compl] = ACTIONS(2726), - [anon_sym_DASH_DASH] = ACTIONS(2728), - [anon_sym_PLUS_PLUS] = ACTIONS(2728), - [anon_sym_sizeof] = ACTIONS(2726), - [sym_number_literal] = ACTIONS(2728), - [anon_sym_L_SQUOTE] = ACTIONS(2728), - [anon_sym_u_SQUOTE] = ACTIONS(2728), - [anon_sym_U_SQUOTE] = ACTIONS(2728), - [anon_sym_u8_SQUOTE] = ACTIONS(2728), - [anon_sym_SQUOTE] = ACTIONS(2728), - [anon_sym_L_DQUOTE] = ACTIONS(2728), - [anon_sym_u_DQUOTE] = ACTIONS(2728), - [anon_sym_U_DQUOTE] = ACTIONS(2728), - [anon_sym_u8_DQUOTE] = ACTIONS(2728), - [anon_sym_DQUOTE] = ACTIONS(2728), - [sym_true] = ACTIONS(2726), - [sym_false] = ACTIONS(2726), - [sym_null] = ACTIONS(2726), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2726), - [anon_sym_decltype] = ACTIONS(2726), - [anon_sym_virtual] = ACTIONS(2726), - [anon_sym_explicit] = ACTIONS(2726), - [anon_sym_typename] = ACTIONS(2726), - [anon_sym_template] = ACTIONS(2726), - [anon_sym_operator] = ACTIONS(2726), - [anon_sym_try] = ACTIONS(2726), - [anon_sym_delete] = ACTIONS(2726), - [anon_sym_throw] = ACTIONS(2726), - [anon_sym_namespace] = ACTIONS(2726), - [anon_sym_using] = ACTIONS(2726), - [anon_sym_static_assert] = ACTIONS(2726), - [anon_sym_concept] = ACTIONS(2726), - [anon_sym_co_return] = ACTIONS(2726), - [anon_sym_co_yield] = ACTIONS(2726), - [anon_sym_R_DQUOTE] = ACTIONS(2728), - [anon_sym_LR_DQUOTE] = ACTIONS(2728), - [anon_sym_uR_DQUOTE] = ACTIONS(2728), - [anon_sym_UR_DQUOTE] = ACTIONS(2728), - [anon_sym_u8R_DQUOTE] = ACTIONS(2728), - [anon_sym_co_await] = ACTIONS(2726), - [anon_sym_new] = ACTIONS(2726), - [anon_sym_requires] = ACTIONS(2726), - [sym_this] = ACTIONS(2726), - [sym_nullptr] = ACTIONS(2726), + [1082] = { + [ts_builtin_sym_end] = ACTIONS(3030), + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, - [1034] = { - [sym_identifier] = ACTIONS(2838), - [aux_sym_preproc_include_token1] = ACTIONS(2838), - [aux_sym_preproc_def_token1] = ACTIONS(2838), - [aux_sym_preproc_if_token1] = ACTIONS(2838), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2838), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2838), - [sym_preproc_directive] = ACTIONS(2838), - [anon_sym_LPAREN2] = ACTIONS(2840), - [anon_sym_BANG] = ACTIONS(2840), - [anon_sym_TILDE] = ACTIONS(2840), - [anon_sym_DASH] = ACTIONS(2838), - [anon_sym_PLUS] = ACTIONS(2838), - [anon_sym_STAR] = ACTIONS(2840), - [anon_sym_AMP_AMP] = ACTIONS(2840), - [anon_sym_AMP] = ACTIONS(2838), - [anon_sym_SEMI] = ACTIONS(2840), - [anon_sym_typedef] = ACTIONS(2838), - [anon_sym_extern] = ACTIONS(2838), - [anon_sym___attribute__] = ACTIONS(2838), - [anon_sym_COLON_COLON] = ACTIONS(2840), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2840), - [anon_sym___declspec] = ACTIONS(2838), - [anon_sym___based] = ACTIONS(2838), - [anon_sym___cdecl] = ACTIONS(2838), - [anon_sym___clrcall] = ACTIONS(2838), - [anon_sym___stdcall] = ACTIONS(2838), - [anon_sym___fastcall] = ACTIONS(2838), - [anon_sym___thiscall] = ACTIONS(2838), - [anon_sym___vectorcall] = ACTIONS(2838), - [anon_sym_LBRACE] = ACTIONS(2840), - [anon_sym_RBRACE] = ACTIONS(2840), - [anon_sym_LBRACK] = ACTIONS(2838), - [anon_sym_static] = ACTIONS(2838), - [anon_sym_register] = ACTIONS(2838), - [anon_sym_inline] = ACTIONS(2838), - [anon_sym_thread_local] = ACTIONS(2838), - [anon_sym_const] = ACTIONS(2838), - [anon_sym_volatile] = ACTIONS(2838), - [anon_sym_restrict] = ACTIONS(2838), - [anon_sym__Atomic] = ACTIONS(2838), - [anon_sym_mutable] = ACTIONS(2838), - [anon_sym_constexpr] = ACTIONS(2838), - [anon_sym_constinit] = ACTIONS(2838), - [anon_sym_consteval] = ACTIONS(2838), - [anon_sym_signed] = ACTIONS(2838), - [anon_sym_unsigned] = ACTIONS(2838), - [anon_sym_long] = ACTIONS(2838), - [anon_sym_short] = ACTIONS(2838), - [sym_primitive_type] = ACTIONS(2838), - [anon_sym_enum] = ACTIONS(2838), - [anon_sym_class] = ACTIONS(2838), - [anon_sym_struct] = ACTIONS(2838), - [anon_sym_union] = ACTIONS(2838), - [anon_sym_if] = ACTIONS(2838), - [anon_sym_switch] = ACTIONS(2838), - [anon_sym_case] = ACTIONS(2838), - [anon_sym_default] = ACTIONS(2838), - [anon_sym_while] = ACTIONS(2838), - [anon_sym_do] = ACTIONS(2838), - [anon_sym_for] = ACTIONS(2838), - [anon_sym_return] = ACTIONS(2838), - [anon_sym_break] = ACTIONS(2838), - [anon_sym_continue] = ACTIONS(2838), - [anon_sym_goto] = ACTIONS(2838), - [anon_sym_not] = ACTIONS(2838), - [anon_sym_compl] = ACTIONS(2838), - [anon_sym_DASH_DASH] = ACTIONS(2840), - [anon_sym_PLUS_PLUS] = ACTIONS(2840), - [anon_sym_sizeof] = ACTIONS(2838), - [sym_number_literal] = ACTIONS(2840), - [anon_sym_L_SQUOTE] = ACTIONS(2840), - [anon_sym_u_SQUOTE] = ACTIONS(2840), - [anon_sym_U_SQUOTE] = ACTIONS(2840), - [anon_sym_u8_SQUOTE] = ACTIONS(2840), - [anon_sym_SQUOTE] = ACTIONS(2840), - [anon_sym_L_DQUOTE] = ACTIONS(2840), - [anon_sym_u_DQUOTE] = ACTIONS(2840), - [anon_sym_U_DQUOTE] = ACTIONS(2840), - [anon_sym_u8_DQUOTE] = ACTIONS(2840), - [anon_sym_DQUOTE] = ACTIONS(2840), - [sym_true] = ACTIONS(2838), - [sym_false] = ACTIONS(2838), - [sym_null] = ACTIONS(2838), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2838), - [anon_sym_decltype] = ACTIONS(2838), - [anon_sym_virtual] = ACTIONS(2838), - [anon_sym_explicit] = ACTIONS(2838), - [anon_sym_typename] = ACTIONS(2838), - [anon_sym_template] = ACTIONS(2838), - [anon_sym_operator] = ACTIONS(2838), - [anon_sym_try] = ACTIONS(2838), - [anon_sym_delete] = ACTIONS(2838), - [anon_sym_throw] = ACTIONS(2838), - [anon_sym_namespace] = ACTIONS(2838), - [anon_sym_using] = ACTIONS(2838), - [anon_sym_static_assert] = ACTIONS(2838), - [anon_sym_concept] = ACTIONS(2838), - [anon_sym_co_return] = ACTIONS(2838), - [anon_sym_co_yield] = ACTIONS(2838), - [anon_sym_R_DQUOTE] = ACTIONS(2840), - [anon_sym_LR_DQUOTE] = ACTIONS(2840), - [anon_sym_uR_DQUOTE] = ACTIONS(2840), - [anon_sym_UR_DQUOTE] = ACTIONS(2840), - [anon_sym_u8R_DQUOTE] = ACTIONS(2840), - [anon_sym_co_await] = ACTIONS(2838), - [anon_sym_new] = ACTIONS(2838), - [anon_sym_requires] = ACTIONS(2838), - [sym_this] = ACTIONS(2838), - [sym_nullptr] = ACTIONS(2838), + [1083] = { + [ts_builtin_sym_end] = ACTIONS(3030), + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, - [1035] = { - [sym_identifier] = ACTIONS(2834), - [aux_sym_preproc_include_token1] = ACTIONS(2834), - [aux_sym_preproc_def_token1] = ACTIONS(2834), - [aux_sym_preproc_if_token1] = ACTIONS(2834), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2834), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2834), - [sym_preproc_directive] = ACTIONS(2834), - [anon_sym_LPAREN2] = ACTIONS(2836), - [anon_sym_BANG] = ACTIONS(2836), - [anon_sym_TILDE] = ACTIONS(2836), - [anon_sym_DASH] = ACTIONS(2834), - [anon_sym_PLUS] = ACTIONS(2834), - [anon_sym_STAR] = ACTIONS(2836), - [anon_sym_AMP_AMP] = ACTIONS(2836), - [anon_sym_AMP] = ACTIONS(2834), - [anon_sym_SEMI] = ACTIONS(2836), - [anon_sym_typedef] = ACTIONS(2834), - [anon_sym_extern] = ACTIONS(2834), - [anon_sym___attribute__] = ACTIONS(2834), - [anon_sym_COLON_COLON] = ACTIONS(2836), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2836), - [anon_sym___declspec] = ACTIONS(2834), - [anon_sym___based] = ACTIONS(2834), - [anon_sym___cdecl] = ACTIONS(2834), - [anon_sym___clrcall] = ACTIONS(2834), - [anon_sym___stdcall] = ACTIONS(2834), - [anon_sym___fastcall] = ACTIONS(2834), - [anon_sym___thiscall] = ACTIONS(2834), - [anon_sym___vectorcall] = ACTIONS(2834), - [anon_sym_LBRACE] = ACTIONS(2836), - [anon_sym_RBRACE] = ACTIONS(2836), - [anon_sym_LBRACK] = ACTIONS(2834), - [anon_sym_static] = ACTIONS(2834), - [anon_sym_register] = ACTIONS(2834), - [anon_sym_inline] = ACTIONS(2834), - [anon_sym_thread_local] = ACTIONS(2834), - [anon_sym_const] = ACTIONS(2834), - [anon_sym_volatile] = ACTIONS(2834), - [anon_sym_restrict] = ACTIONS(2834), - [anon_sym__Atomic] = ACTIONS(2834), - [anon_sym_mutable] = ACTIONS(2834), - [anon_sym_constexpr] = ACTIONS(2834), - [anon_sym_constinit] = ACTIONS(2834), - [anon_sym_consteval] = ACTIONS(2834), - [anon_sym_signed] = ACTIONS(2834), - [anon_sym_unsigned] = ACTIONS(2834), - [anon_sym_long] = ACTIONS(2834), - [anon_sym_short] = ACTIONS(2834), - [sym_primitive_type] = ACTIONS(2834), - [anon_sym_enum] = ACTIONS(2834), - [anon_sym_class] = ACTIONS(2834), - [anon_sym_struct] = ACTIONS(2834), - [anon_sym_union] = ACTIONS(2834), - [anon_sym_if] = ACTIONS(2834), - [anon_sym_switch] = ACTIONS(2834), - [anon_sym_case] = ACTIONS(2834), - [anon_sym_default] = ACTIONS(2834), - [anon_sym_while] = ACTIONS(2834), - [anon_sym_do] = ACTIONS(2834), - [anon_sym_for] = ACTIONS(2834), - [anon_sym_return] = ACTIONS(2834), - [anon_sym_break] = ACTIONS(2834), - [anon_sym_continue] = ACTIONS(2834), - [anon_sym_goto] = ACTIONS(2834), - [anon_sym_not] = ACTIONS(2834), - [anon_sym_compl] = ACTIONS(2834), - [anon_sym_DASH_DASH] = ACTIONS(2836), - [anon_sym_PLUS_PLUS] = ACTIONS(2836), - [anon_sym_sizeof] = ACTIONS(2834), - [sym_number_literal] = ACTIONS(2836), - [anon_sym_L_SQUOTE] = ACTIONS(2836), - [anon_sym_u_SQUOTE] = ACTIONS(2836), - [anon_sym_U_SQUOTE] = ACTIONS(2836), - [anon_sym_u8_SQUOTE] = ACTIONS(2836), - [anon_sym_SQUOTE] = ACTIONS(2836), - [anon_sym_L_DQUOTE] = ACTIONS(2836), - [anon_sym_u_DQUOTE] = ACTIONS(2836), - [anon_sym_U_DQUOTE] = ACTIONS(2836), - [anon_sym_u8_DQUOTE] = ACTIONS(2836), - [anon_sym_DQUOTE] = ACTIONS(2836), - [sym_true] = ACTIONS(2834), - [sym_false] = ACTIONS(2834), - [sym_null] = ACTIONS(2834), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2834), - [anon_sym_decltype] = ACTIONS(2834), - [anon_sym_virtual] = ACTIONS(2834), - [anon_sym_explicit] = ACTIONS(2834), - [anon_sym_typename] = ACTIONS(2834), - [anon_sym_template] = ACTIONS(2834), - [anon_sym_operator] = ACTIONS(2834), - [anon_sym_try] = ACTIONS(2834), - [anon_sym_delete] = ACTIONS(2834), - [anon_sym_throw] = ACTIONS(2834), - [anon_sym_namespace] = ACTIONS(2834), - [anon_sym_using] = ACTIONS(2834), - [anon_sym_static_assert] = ACTIONS(2834), - [anon_sym_concept] = ACTIONS(2834), - [anon_sym_co_return] = ACTIONS(2834), - [anon_sym_co_yield] = ACTIONS(2834), - [anon_sym_R_DQUOTE] = ACTIONS(2836), - [anon_sym_LR_DQUOTE] = ACTIONS(2836), - [anon_sym_uR_DQUOTE] = ACTIONS(2836), - [anon_sym_UR_DQUOTE] = ACTIONS(2836), - [anon_sym_u8R_DQUOTE] = ACTIONS(2836), - [anon_sym_co_await] = ACTIONS(2834), - [anon_sym_new] = ACTIONS(2834), - [anon_sym_requires] = ACTIONS(2834), - [sym_this] = ACTIONS(2834), - [sym_nullptr] = ACTIONS(2834), + [1084] = { + [ts_builtin_sym_end] = ACTIONS(3030), + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, - [1036] = { - [ts_builtin_sym_end] = ACTIONS(2708), - [sym_identifier] = ACTIONS(2706), - [aux_sym_preproc_include_token1] = ACTIONS(2706), - [aux_sym_preproc_def_token1] = ACTIONS(2706), - [aux_sym_preproc_if_token1] = ACTIONS(2706), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2706), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2706), - [sym_preproc_directive] = ACTIONS(2706), - [anon_sym_LPAREN2] = ACTIONS(2708), - [anon_sym_BANG] = ACTIONS(2708), - [anon_sym_TILDE] = ACTIONS(2708), - [anon_sym_DASH] = ACTIONS(2706), - [anon_sym_PLUS] = ACTIONS(2706), - [anon_sym_STAR] = ACTIONS(2708), - [anon_sym_AMP_AMP] = ACTIONS(2708), - [anon_sym_AMP] = ACTIONS(2706), - [anon_sym_SEMI] = ACTIONS(2708), - [anon_sym_typedef] = ACTIONS(2706), - [anon_sym_extern] = ACTIONS(2706), - [anon_sym___attribute__] = ACTIONS(2706), - [anon_sym_COLON_COLON] = ACTIONS(2708), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2708), - [anon_sym___declspec] = ACTIONS(2706), - [anon_sym___based] = ACTIONS(2706), - [anon_sym___cdecl] = ACTIONS(2706), - [anon_sym___clrcall] = ACTIONS(2706), - [anon_sym___stdcall] = ACTIONS(2706), - [anon_sym___fastcall] = ACTIONS(2706), - [anon_sym___thiscall] = ACTIONS(2706), - [anon_sym___vectorcall] = ACTIONS(2706), - [anon_sym_LBRACE] = ACTIONS(2708), - [anon_sym_LBRACK] = ACTIONS(2706), - [anon_sym_static] = ACTIONS(2706), - [anon_sym_register] = ACTIONS(2706), - [anon_sym_inline] = ACTIONS(2706), - [anon_sym_thread_local] = ACTIONS(2706), - [anon_sym_const] = ACTIONS(2706), - [anon_sym_volatile] = ACTIONS(2706), - [anon_sym_restrict] = ACTIONS(2706), - [anon_sym__Atomic] = ACTIONS(2706), - [anon_sym_mutable] = ACTIONS(2706), - [anon_sym_constexpr] = ACTIONS(2706), - [anon_sym_constinit] = ACTIONS(2706), - [anon_sym_consteval] = ACTIONS(2706), - [anon_sym_signed] = ACTIONS(2706), - [anon_sym_unsigned] = ACTIONS(2706), - [anon_sym_long] = ACTIONS(2706), - [anon_sym_short] = ACTIONS(2706), - [sym_primitive_type] = ACTIONS(2706), - [anon_sym_enum] = ACTIONS(2706), - [anon_sym_class] = ACTIONS(2706), - [anon_sym_struct] = ACTIONS(2706), - [anon_sym_union] = ACTIONS(2706), - [anon_sym_if] = ACTIONS(2706), - [anon_sym_switch] = ACTIONS(2706), - [anon_sym_case] = ACTIONS(2706), - [anon_sym_default] = ACTIONS(2706), - [anon_sym_while] = ACTIONS(2706), - [anon_sym_do] = ACTIONS(2706), - [anon_sym_for] = ACTIONS(2706), - [anon_sym_return] = ACTIONS(2706), - [anon_sym_break] = ACTIONS(2706), - [anon_sym_continue] = ACTIONS(2706), - [anon_sym_goto] = ACTIONS(2706), - [anon_sym_not] = ACTIONS(2706), - [anon_sym_compl] = ACTIONS(2706), - [anon_sym_DASH_DASH] = ACTIONS(2708), - [anon_sym_PLUS_PLUS] = ACTIONS(2708), - [anon_sym_sizeof] = ACTIONS(2706), - [sym_number_literal] = ACTIONS(2708), - [anon_sym_L_SQUOTE] = ACTIONS(2708), - [anon_sym_u_SQUOTE] = ACTIONS(2708), - [anon_sym_U_SQUOTE] = ACTIONS(2708), - [anon_sym_u8_SQUOTE] = ACTIONS(2708), - [anon_sym_SQUOTE] = ACTIONS(2708), - [anon_sym_L_DQUOTE] = ACTIONS(2708), - [anon_sym_u_DQUOTE] = ACTIONS(2708), - [anon_sym_U_DQUOTE] = ACTIONS(2708), - [anon_sym_u8_DQUOTE] = ACTIONS(2708), - [anon_sym_DQUOTE] = ACTIONS(2708), - [sym_true] = ACTIONS(2706), - [sym_false] = ACTIONS(2706), - [sym_null] = ACTIONS(2706), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2706), - [anon_sym_decltype] = ACTIONS(2706), - [anon_sym_virtual] = ACTIONS(2706), - [anon_sym_explicit] = ACTIONS(2706), - [anon_sym_typename] = ACTIONS(2706), - [anon_sym_template] = ACTIONS(2706), - [anon_sym_operator] = ACTIONS(2706), - [anon_sym_try] = ACTIONS(2706), - [anon_sym_delete] = ACTIONS(2706), - [anon_sym_throw] = ACTIONS(2706), - [anon_sym_namespace] = ACTIONS(2706), - [anon_sym_using] = ACTIONS(2706), - [anon_sym_static_assert] = ACTIONS(2706), - [anon_sym_concept] = ACTIONS(2706), - [anon_sym_co_return] = ACTIONS(2706), - [anon_sym_co_yield] = ACTIONS(2706), - [anon_sym_R_DQUOTE] = ACTIONS(2708), - [anon_sym_LR_DQUOTE] = ACTIONS(2708), - [anon_sym_uR_DQUOTE] = ACTIONS(2708), - [anon_sym_UR_DQUOTE] = ACTIONS(2708), - [anon_sym_u8R_DQUOTE] = ACTIONS(2708), - [anon_sym_co_await] = ACTIONS(2706), - [anon_sym_new] = ACTIONS(2706), - [anon_sym_requires] = ACTIONS(2706), - [sym_this] = ACTIONS(2706), - [sym_nullptr] = ACTIONS(2706), + [1085] = { + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token2] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, - [1037] = { - [sym_identifier] = ACTIONS(2810), - [aux_sym_preproc_include_token1] = ACTIONS(2810), - [aux_sym_preproc_def_token1] = ACTIONS(2810), - [aux_sym_preproc_if_token1] = ACTIONS(2810), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2810), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2810), - [sym_preproc_directive] = ACTIONS(2810), - [anon_sym_LPAREN2] = ACTIONS(2812), - [anon_sym_BANG] = ACTIONS(2812), - [anon_sym_TILDE] = ACTIONS(2812), - [anon_sym_DASH] = ACTIONS(2810), - [anon_sym_PLUS] = ACTIONS(2810), - [anon_sym_STAR] = ACTIONS(2812), - [anon_sym_AMP_AMP] = ACTIONS(2812), - [anon_sym_AMP] = ACTIONS(2810), - [anon_sym_SEMI] = ACTIONS(2812), - [anon_sym_typedef] = ACTIONS(2810), - [anon_sym_extern] = ACTIONS(2810), - [anon_sym___attribute__] = ACTIONS(2810), - [anon_sym_COLON_COLON] = ACTIONS(2812), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2812), - [anon_sym___declspec] = ACTIONS(2810), - [anon_sym___based] = ACTIONS(2810), - [anon_sym___cdecl] = ACTIONS(2810), - [anon_sym___clrcall] = ACTIONS(2810), - [anon_sym___stdcall] = ACTIONS(2810), - [anon_sym___fastcall] = ACTIONS(2810), - [anon_sym___thiscall] = ACTIONS(2810), - [anon_sym___vectorcall] = ACTIONS(2810), - [anon_sym_LBRACE] = ACTIONS(2812), - [anon_sym_RBRACE] = ACTIONS(2812), - [anon_sym_LBRACK] = ACTIONS(2810), - [anon_sym_static] = ACTIONS(2810), - [anon_sym_register] = ACTIONS(2810), - [anon_sym_inline] = ACTIONS(2810), - [anon_sym_thread_local] = ACTIONS(2810), - [anon_sym_const] = ACTIONS(2810), - [anon_sym_volatile] = ACTIONS(2810), - [anon_sym_restrict] = ACTIONS(2810), - [anon_sym__Atomic] = ACTIONS(2810), - [anon_sym_mutable] = ACTIONS(2810), - [anon_sym_constexpr] = ACTIONS(2810), - [anon_sym_constinit] = ACTIONS(2810), - [anon_sym_consteval] = ACTIONS(2810), - [anon_sym_signed] = ACTIONS(2810), - [anon_sym_unsigned] = ACTIONS(2810), - [anon_sym_long] = ACTIONS(2810), - [anon_sym_short] = ACTIONS(2810), - [sym_primitive_type] = ACTIONS(2810), - [anon_sym_enum] = ACTIONS(2810), - [anon_sym_class] = ACTIONS(2810), - [anon_sym_struct] = ACTIONS(2810), - [anon_sym_union] = ACTIONS(2810), - [anon_sym_if] = ACTIONS(2810), - [anon_sym_switch] = ACTIONS(2810), - [anon_sym_case] = ACTIONS(2810), - [anon_sym_default] = ACTIONS(2810), - [anon_sym_while] = ACTIONS(2810), - [anon_sym_do] = ACTIONS(2810), - [anon_sym_for] = ACTIONS(2810), - [anon_sym_return] = ACTIONS(2810), - [anon_sym_break] = ACTIONS(2810), - [anon_sym_continue] = ACTIONS(2810), - [anon_sym_goto] = ACTIONS(2810), - [anon_sym_not] = ACTIONS(2810), - [anon_sym_compl] = ACTIONS(2810), - [anon_sym_DASH_DASH] = ACTIONS(2812), - [anon_sym_PLUS_PLUS] = ACTIONS(2812), - [anon_sym_sizeof] = ACTIONS(2810), - [sym_number_literal] = ACTIONS(2812), - [anon_sym_L_SQUOTE] = ACTIONS(2812), - [anon_sym_u_SQUOTE] = ACTIONS(2812), - [anon_sym_U_SQUOTE] = ACTIONS(2812), - [anon_sym_u8_SQUOTE] = ACTIONS(2812), - [anon_sym_SQUOTE] = ACTIONS(2812), - [anon_sym_L_DQUOTE] = ACTIONS(2812), - [anon_sym_u_DQUOTE] = ACTIONS(2812), - [anon_sym_U_DQUOTE] = ACTIONS(2812), - [anon_sym_u8_DQUOTE] = ACTIONS(2812), - [anon_sym_DQUOTE] = ACTIONS(2812), - [sym_true] = ACTIONS(2810), - [sym_false] = ACTIONS(2810), - [sym_null] = ACTIONS(2810), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2810), - [anon_sym_decltype] = ACTIONS(2810), - [anon_sym_virtual] = ACTIONS(2810), - [anon_sym_explicit] = ACTIONS(2810), - [anon_sym_typename] = ACTIONS(2810), - [anon_sym_template] = ACTIONS(2810), - [anon_sym_operator] = ACTIONS(2810), - [anon_sym_try] = ACTIONS(2810), - [anon_sym_delete] = ACTIONS(2810), - [anon_sym_throw] = ACTIONS(2810), - [anon_sym_namespace] = ACTIONS(2810), - [anon_sym_using] = ACTIONS(2810), - [anon_sym_static_assert] = ACTIONS(2810), - [anon_sym_concept] = ACTIONS(2810), - [anon_sym_co_return] = ACTIONS(2810), - [anon_sym_co_yield] = ACTIONS(2810), - [anon_sym_R_DQUOTE] = ACTIONS(2812), - [anon_sym_LR_DQUOTE] = ACTIONS(2812), - [anon_sym_uR_DQUOTE] = ACTIONS(2812), - [anon_sym_UR_DQUOTE] = ACTIONS(2812), - [anon_sym_u8R_DQUOTE] = ACTIONS(2812), - [anon_sym_co_await] = ACTIONS(2810), - [anon_sym_new] = ACTIONS(2810), - [anon_sym_requires] = ACTIONS(2810), - [sym_this] = ACTIONS(2810), - [sym_nullptr] = ACTIONS(2810), + [1086] = { + [sym_identifier] = ACTIONS(3097), + [aux_sym_preproc_include_token1] = ACTIONS(3097), + [aux_sym_preproc_def_token1] = ACTIONS(3097), + [aux_sym_preproc_if_token1] = ACTIONS(3097), + [aux_sym_preproc_if_token2] = ACTIONS(3097), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3097), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3097), + [sym_preproc_directive] = ACTIONS(3097), + [anon_sym_LPAREN2] = ACTIONS(3099), + [anon_sym_BANG] = ACTIONS(3099), + [anon_sym_TILDE] = ACTIONS(3099), + [anon_sym_DASH] = ACTIONS(3097), + [anon_sym_PLUS] = ACTIONS(3097), + [anon_sym_STAR] = ACTIONS(3099), + [anon_sym_AMP_AMP] = ACTIONS(3099), + [anon_sym_AMP] = ACTIONS(3097), + [anon_sym_SEMI] = ACTIONS(3099), + [anon_sym_typedef] = ACTIONS(3097), + [anon_sym_extern] = ACTIONS(3097), + [anon_sym___attribute__] = ACTIONS(3097), + [anon_sym_COLON_COLON] = ACTIONS(3099), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3099), + [anon_sym___declspec] = ACTIONS(3097), + [anon_sym___based] = ACTIONS(3097), + [anon_sym___cdecl] = ACTIONS(3097), + [anon_sym___clrcall] = ACTIONS(3097), + [anon_sym___stdcall] = ACTIONS(3097), + [anon_sym___fastcall] = ACTIONS(3097), + [anon_sym___thiscall] = ACTIONS(3097), + [anon_sym___vectorcall] = ACTIONS(3097), + [anon_sym_LBRACE] = ACTIONS(3099), + [anon_sym_LBRACK] = ACTIONS(3097), + [anon_sym_static] = ACTIONS(3097), + [anon_sym_register] = ACTIONS(3097), + [anon_sym_inline] = ACTIONS(3097), + [anon_sym_thread_local] = ACTIONS(3097), + [anon_sym_const] = ACTIONS(3097), + [anon_sym_constexpr] = ACTIONS(3097), + [anon_sym_volatile] = ACTIONS(3097), + [anon_sym_restrict] = ACTIONS(3097), + [anon_sym___restrict__] = ACTIONS(3097), + [anon_sym__Atomic] = ACTIONS(3097), + [anon_sym__Noreturn] = ACTIONS(3097), + [anon_sym_noreturn] = ACTIONS(3097), + [anon_sym_mutable] = ACTIONS(3097), + [anon_sym_constinit] = ACTIONS(3097), + [anon_sym_consteval] = ACTIONS(3097), + [anon_sym_signed] = ACTIONS(3097), + [anon_sym_unsigned] = ACTIONS(3097), + [anon_sym_long] = ACTIONS(3097), + [anon_sym_short] = ACTIONS(3097), + [sym_primitive_type] = ACTIONS(3097), + [anon_sym_enum] = ACTIONS(3097), + [anon_sym_class] = ACTIONS(3097), + [anon_sym_struct] = ACTIONS(3097), + [anon_sym_union] = ACTIONS(3097), + [anon_sym_if] = ACTIONS(3097), + [anon_sym_else] = ACTIONS(3097), + [anon_sym_switch] = ACTIONS(3097), + [anon_sym_case] = ACTIONS(3097), + [anon_sym_default] = ACTIONS(3097), + [anon_sym_while] = ACTIONS(3097), + [anon_sym_do] = ACTIONS(3097), + [anon_sym_for] = ACTIONS(3097), + [anon_sym_return] = ACTIONS(3097), + [anon_sym_break] = ACTIONS(3097), + [anon_sym_continue] = ACTIONS(3097), + [anon_sym_goto] = ACTIONS(3097), + [anon_sym_not] = ACTIONS(3097), + [anon_sym_compl] = ACTIONS(3097), + [anon_sym_DASH_DASH] = ACTIONS(3099), + [anon_sym_PLUS_PLUS] = ACTIONS(3099), + [anon_sym_sizeof] = ACTIONS(3097), + [anon_sym_offsetof] = ACTIONS(3097), + [anon_sym__Generic] = ACTIONS(3097), + [anon_sym_asm] = ACTIONS(3097), + [anon_sym___asm__] = ACTIONS(3097), + [sym_number_literal] = ACTIONS(3099), + [anon_sym_L_SQUOTE] = ACTIONS(3099), + [anon_sym_u_SQUOTE] = ACTIONS(3099), + [anon_sym_U_SQUOTE] = ACTIONS(3099), + [anon_sym_u8_SQUOTE] = ACTIONS(3099), + [anon_sym_SQUOTE] = ACTIONS(3099), + [anon_sym_L_DQUOTE] = ACTIONS(3099), + [anon_sym_u_DQUOTE] = ACTIONS(3099), + [anon_sym_U_DQUOTE] = ACTIONS(3099), + [anon_sym_u8_DQUOTE] = ACTIONS(3099), + [anon_sym_DQUOTE] = ACTIONS(3099), + [sym_true] = ACTIONS(3097), + [sym_false] = ACTIONS(3097), + [anon_sym_NULL] = ACTIONS(3097), + [anon_sym_nullptr] = ACTIONS(3097), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3097), + [anon_sym_decltype] = ACTIONS(3097), + [anon_sym_virtual] = ACTIONS(3097), + [anon_sym_explicit] = ACTIONS(3097), + [anon_sym_typename] = ACTIONS(3097), + [anon_sym_template] = ACTIONS(3097), + [anon_sym_operator] = ACTIONS(3097), + [anon_sym_try] = ACTIONS(3097), + [anon_sym_delete] = ACTIONS(3097), + [anon_sym_throw] = ACTIONS(3097), + [anon_sym_namespace] = ACTIONS(3097), + [anon_sym_using] = ACTIONS(3097), + [anon_sym_static_assert] = ACTIONS(3097), + [anon_sym_concept] = ACTIONS(3097), + [anon_sym_co_return] = ACTIONS(3097), + [anon_sym_co_yield] = ACTIONS(3097), + [anon_sym_R_DQUOTE] = ACTIONS(3099), + [anon_sym_LR_DQUOTE] = ACTIONS(3099), + [anon_sym_uR_DQUOTE] = ACTIONS(3099), + [anon_sym_UR_DQUOTE] = ACTIONS(3099), + [anon_sym_u8R_DQUOTE] = ACTIONS(3099), + [anon_sym_co_await] = ACTIONS(3097), + [anon_sym_new] = ACTIONS(3097), + [anon_sym_requires] = ACTIONS(3097), + [sym_this] = ACTIONS(3097), }, - [1038] = { - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_RBRACE] = ACTIONS(2780), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [sym_null] = ACTIONS(2778), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), - [sym_nullptr] = ACTIONS(2778), + [1087] = { + [ts_builtin_sym_end] = ACTIONS(3030), + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, - [1039] = { - [sym_identifier] = ACTIONS(2762), - [aux_sym_preproc_include_token1] = ACTIONS(2762), - [aux_sym_preproc_def_token1] = ACTIONS(2762), - [aux_sym_preproc_if_token1] = ACTIONS(2762), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2762), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2762), - [sym_preproc_directive] = ACTIONS(2762), - [anon_sym_LPAREN2] = ACTIONS(2764), - [anon_sym_BANG] = ACTIONS(2764), - [anon_sym_TILDE] = ACTIONS(2764), - [anon_sym_DASH] = ACTIONS(2762), - [anon_sym_PLUS] = ACTIONS(2762), - [anon_sym_STAR] = ACTIONS(2764), - [anon_sym_AMP_AMP] = ACTIONS(2764), - [anon_sym_AMP] = ACTIONS(2762), - [anon_sym_SEMI] = ACTIONS(2764), - [anon_sym_typedef] = ACTIONS(2762), - [anon_sym_extern] = ACTIONS(2762), - [anon_sym___attribute__] = ACTIONS(2762), - [anon_sym_COLON_COLON] = ACTIONS(2764), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2764), - [anon_sym___declspec] = ACTIONS(2762), - [anon_sym___based] = ACTIONS(2762), - [anon_sym___cdecl] = ACTIONS(2762), - [anon_sym___clrcall] = ACTIONS(2762), - [anon_sym___stdcall] = ACTIONS(2762), - [anon_sym___fastcall] = ACTIONS(2762), - [anon_sym___thiscall] = ACTIONS(2762), - [anon_sym___vectorcall] = ACTIONS(2762), - [anon_sym_LBRACE] = ACTIONS(2764), - [anon_sym_RBRACE] = ACTIONS(2764), - [anon_sym_LBRACK] = ACTIONS(2762), - [anon_sym_static] = ACTIONS(2762), - [anon_sym_register] = ACTIONS(2762), - [anon_sym_inline] = ACTIONS(2762), - [anon_sym_thread_local] = ACTIONS(2762), - [anon_sym_const] = ACTIONS(2762), - [anon_sym_volatile] = ACTIONS(2762), - [anon_sym_restrict] = ACTIONS(2762), - [anon_sym__Atomic] = ACTIONS(2762), - [anon_sym_mutable] = ACTIONS(2762), - [anon_sym_constexpr] = ACTIONS(2762), - [anon_sym_constinit] = ACTIONS(2762), - [anon_sym_consteval] = ACTIONS(2762), - [anon_sym_signed] = ACTIONS(2762), - [anon_sym_unsigned] = ACTIONS(2762), - [anon_sym_long] = ACTIONS(2762), - [anon_sym_short] = ACTIONS(2762), - [sym_primitive_type] = ACTIONS(2762), - [anon_sym_enum] = ACTIONS(2762), - [anon_sym_class] = ACTIONS(2762), - [anon_sym_struct] = ACTIONS(2762), - [anon_sym_union] = ACTIONS(2762), - [anon_sym_if] = ACTIONS(2762), - [anon_sym_switch] = ACTIONS(2762), - [anon_sym_case] = ACTIONS(2762), - [anon_sym_default] = ACTIONS(2762), - [anon_sym_while] = ACTIONS(2762), - [anon_sym_do] = ACTIONS(2762), - [anon_sym_for] = ACTIONS(2762), - [anon_sym_return] = ACTIONS(2762), - [anon_sym_break] = ACTIONS(2762), - [anon_sym_continue] = ACTIONS(2762), - [anon_sym_goto] = ACTIONS(2762), - [anon_sym_not] = ACTIONS(2762), - [anon_sym_compl] = ACTIONS(2762), - [anon_sym_DASH_DASH] = ACTIONS(2764), - [anon_sym_PLUS_PLUS] = ACTIONS(2764), - [anon_sym_sizeof] = ACTIONS(2762), - [sym_number_literal] = ACTIONS(2764), - [anon_sym_L_SQUOTE] = ACTIONS(2764), - [anon_sym_u_SQUOTE] = ACTIONS(2764), - [anon_sym_U_SQUOTE] = ACTIONS(2764), - [anon_sym_u8_SQUOTE] = ACTIONS(2764), - [anon_sym_SQUOTE] = ACTIONS(2764), - [anon_sym_L_DQUOTE] = ACTIONS(2764), - [anon_sym_u_DQUOTE] = ACTIONS(2764), - [anon_sym_U_DQUOTE] = ACTIONS(2764), - [anon_sym_u8_DQUOTE] = ACTIONS(2764), - [anon_sym_DQUOTE] = ACTIONS(2764), - [sym_true] = ACTIONS(2762), - [sym_false] = ACTIONS(2762), - [sym_null] = ACTIONS(2762), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2762), - [anon_sym_decltype] = ACTIONS(2762), - [anon_sym_virtual] = ACTIONS(2762), - [anon_sym_explicit] = ACTIONS(2762), - [anon_sym_typename] = ACTIONS(2762), - [anon_sym_template] = ACTIONS(2762), - [anon_sym_operator] = ACTIONS(2762), - [anon_sym_try] = ACTIONS(2762), - [anon_sym_delete] = ACTIONS(2762), - [anon_sym_throw] = ACTIONS(2762), - [anon_sym_namespace] = ACTIONS(2762), - [anon_sym_using] = ACTIONS(2762), - [anon_sym_static_assert] = ACTIONS(2762), - [anon_sym_concept] = ACTIONS(2762), - [anon_sym_co_return] = ACTIONS(2762), - [anon_sym_co_yield] = ACTIONS(2762), - [anon_sym_R_DQUOTE] = ACTIONS(2764), - [anon_sym_LR_DQUOTE] = ACTIONS(2764), - [anon_sym_uR_DQUOTE] = ACTIONS(2764), - [anon_sym_UR_DQUOTE] = ACTIONS(2764), - [anon_sym_u8R_DQUOTE] = ACTIONS(2764), - [anon_sym_co_await] = ACTIONS(2762), - [anon_sym_new] = ACTIONS(2762), - [anon_sym_requires] = ACTIONS(2762), - [sym_this] = ACTIONS(2762), - [sym_nullptr] = ACTIONS(2762), + [1088] = { + [ts_builtin_sym_end] = ACTIONS(3030), + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, - [1040] = { - [sym_identifier] = ACTIONS(2702), - [aux_sym_preproc_include_token1] = ACTIONS(2702), - [aux_sym_preproc_def_token1] = ACTIONS(2702), - [aux_sym_preproc_if_token1] = ACTIONS(2702), - [aux_sym_preproc_if_token2] = ACTIONS(2702), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2702), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2702), - [sym_preproc_directive] = ACTIONS(2702), - [anon_sym_LPAREN2] = ACTIONS(2704), - [anon_sym_BANG] = ACTIONS(2704), - [anon_sym_TILDE] = ACTIONS(2704), - [anon_sym_DASH] = ACTIONS(2702), - [anon_sym_PLUS] = ACTIONS(2702), - [anon_sym_STAR] = ACTIONS(2704), - [anon_sym_AMP_AMP] = ACTIONS(2704), - [anon_sym_AMP] = ACTIONS(2702), - [anon_sym_SEMI] = ACTIONS(2704), - [anon_sym_typedef] = ACTIONS(2702), - [anon_sym_extern] = ACTIONS(2702), - [anon_sym___attribute__] = ACTIONS(2702), - [anon_sym_COLON_COLON] = ACTIONS(2704), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2704), - [anon_sym___declspec] = ACTIONS(2702), - [anon_sym___based] = ACTIONS(2702), - [anon_sym___cdecl] = ACTIONS(2702), - [anon_sym___clrcall] = ACTIONS(2702), - [anon_sym___stdcall] = ACTIONS(2702), - [anon_sym___fastcall] = ACTIONS(2702), - [anon_sym___thiscall] = ACTIONS(2702), - [anon_sym___vectorcall] = ACTIONS(2702), - [anon_sym_LBRACE] = ACTIONS(2704), - [anon_sym_LBRACK] = ACTIONS(2702), - [anon_sym_static] = ACTIONS(2702), - [anon_sym_register] = ACTIONS(2702), - [anon_sym_inline] = ACTIONS(2702), - [anon_sym_thread_local] = ACTIONS(2702), - [anon_sym_const] = ACTIONS(2702), - [anon_sym_volatile] = ACTIONS(2702), - [anon_sym_restrict] = ACTIONS(2702), - [anon_sym__Atomic] = ACTIONS(2702), - [anon_sym_mutable] = ACTIONS(2702), - [anon_sym_constexpr] = ACTIONS(2702), - [anon_sym_constinit] = ACTIONS(2702), - [anon_sym_consteval] = ACTIONS(2702), - [anon_sym_signed] = ACTIONS(2702), - [anon_sym_unsigned] = ACTIONS(2702), - [anon_sym_long] = ACTIONS(2702), - [anon_sym_short] = ACTIONS(2702), - [sym_primitive_type] = ACTIONS(2702), - [anon_sym_enum] = ACTIONS(2702), - [anon_sym_class] = ACTIONS(2702), - [anon_sym_struct] = ACTIONS(2702), - [anon_sym_union] = ACTIONS(2702), - [anon_sym_if] = ACTIONS(2702), - [anon_sym_switch] = ACTIONS(2702), - [anon_sym_case] = ACTIONS(2702), - [anon_sym_default] = ACTIONS(2702), - [anon_sym_while] = ACTIONS(2702), - [anon_sym_do] = ACTIONS(2702), - [anon_sym_for] = ACTIONS(2702), - [anon_sym_return] = ACTIONS(2702), - [anon_sym_break] = ACTIONS(2702), - [anon_sym_continue] = ACTIONS(2702), - [anon_sym_goto] = ACTIONS(2702), - [anon_sym_not] = ACTIONS(2702), - [anon_sym_compl] = ACTIONS(2702), - [anon_sym_DASH_DASH] = ACTIONS(2704), - [anon_sym_PLUS_PLUS] = ACTIONS(2704), - [anon_sym_sizeof] = ACTIONS(2702), - [sym_number_literal] = ACTIONS(2704), - [anon_sym_L_SQUOTE] = ACTIONS(2704), - [anon_sym_u_SQUOTE] = ACTIONS(2704), - [anon_sym_U_SQUOTE] = ACTIONS(2704), - [anon_sym_u8_SQUOTE] = ACTIONS(2704), - [anon_sym_SQUOTE] = ACTIONS(2704), - [anon_sym_L_DQUOTE] = ACTIONS(2704), - [anon_sym_u_DQUOTE] = ACTIONS(2704), - [anon_sym_U_DQUOTE] = ACTIONS(2704), - [anon_sym_u8_DQUOTE] = ACTIONS(2704), - [anon_sym_DQUOTE] = ACTIONS(2704), - [sym_true] = ACTIONS(2702), - [sym_false] = ACTIONS(2702), - [sym_null] = ACTIONS(2702), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2702), - [anon_sym_decltype] = ACTIONS(2702), - [anon_sym_virtual] = ACTIONS(2702), - [anon_sym_explicit] = ACTIONS(2702), - [anon_sym_typename] = ACTIONS(2702), - [anon_sym_template] = ACTIONS(2702), - [anon_sym_operator] = ACTIONS(2702), - [anon_sym_try] = ACTIONS(2702), - [anon_sym_delete] = ACTIONS(2702), - [anon_sym_throw] = ACTIONS(2702), - [anon_sym_namespace] = ACTIONS(2702), - [anon_sym_using] = ACTIONS(2702), - [anon_sym_static_assert] = ACTIONS(2702), - [anon_sym_concept] = ACTIONS(2702), - [anon_sym_co_return] = ACTIONS(2702), - [anon_sym_co_yield] = ACTIONS(2702), - [anon_sym_R_DQUOTE] = ACTIONS(2704), - [anon_sym_LR_DQUOTE] = ACTIONS(2704), - [anon_sym_uR_DQUOTE] = ACTIONS(2704), - [anon_sym_UR_DQUOTE] = ACTIONS(2704), - [anon_sym_u8R_DQUOTE] = ACTIONS(2704), - [anon_sym_co_await] = ACTIONS(2702), - [anon_sym_new] = ACTIONS(2702), - [anon_sym_requires] = ACTIONS(2702), - [sym_this] = ACTIONS(2702), - [sym_nullptr] = ACTIONS(2702), + [1089] = { + [sym_identifier] = ACTIONS(3085), + [aux_sym_preproc_include_token1] = ACTIONS(3085), + [aux_sym_preproc_def_token1] = ACTIONS(3085), + [aux_sym_preproc_if_token1] = ACTIONS(3085), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3085), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3085), + [sym_preproc_directive] = ACTIONS(3085), + [anon_sym_LPAREN2] = ACTIONS(3087), + [anon_sym_BANG] = ACTIONS(3087), + [anon_sym_TILDE] = ACTIONS(3087), + [anon_sym_DASH] = ACTIONS(3085), + [anon_sym_PLUS] = ACTIONS(3085), + [anon_sym_STAR] = ACTIONS(3087), + [anon_sym_AMP_AMP] = ACTIONS(3087), + [anon_sym_AMP] = ACTIONS(3085), + [anon_sym_SEMI] = ACTIONS(3087), + [anon_sym_typedef] = ACTIONS(3085), + [anon_sym_extern] = ACTIONS(3085), + [anon_sym___attribute__] = ACTIONS(3085), + [anon_sym_COLON_COLON] = ACTIONS(3087), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3087), + [anon_sym___declspec] = ACTIONS(3085), + [anon_sym___based] = ACTIONS(3085), + [anon_sym___cdecl] = ACTIONS(3085), + [anon_sym___clrcall] = ACTIONS(3085), + [anon_sym___stdcall] = ACTIONS(3085), + [anon_sym___fastcall] = ACTIONS(3085), + [anon_sym___thiscall] = ACTIONS(3085), + [anon_sym___vectorcall] = ACTIONS(3085), + [anon_sym_LBRACE] = ACTIONS(3087), + [anon_sym_RBRACE] = ACTIONS(3087), + [anon_sym_LBRACK] = ACTIONS(3085), + [anon_sym_static] = ACTIONS(3085), + [anon_sym_register] = ACTIONS(3085), + [anon_sym_inline] = ACTIONS(3085), + [anon_sym_thread_local] = ACTIONS(3085), + [anon_sym_const] = ACTIONS(3085), + [anon_sym_constexpr] = ACTIONS(3085), + [anon_sym_volatile] = ACTIONS(3085), + [anon_sym_restrict] = ACTIONS(3085), + [anon_sym___restrict__] = ACTIONS(3085), + [anon_sym__Atomic] = ACTIONS(3085), + [anon_sym__Noreturn] = ACTIONS(3085), + [anon_sym_noreturn] = ACTIONS(3085), + [anon_sym_mutable] = ACTIONS(3085), + [anon_sym_constinit] = ACTIONS(3085), + [anon_sym_consteval] = ACTIONS(3085), + [anon_sym_signed] = ACTIONS(3085), + [anon_sym_unsigned] = ACTIONS(3085), + [anon_sym_long] = ACTIONS(3085), + [anon_sym_short] = ACTIONS(3085), + [sym_primitive_type] = ACTIONS(3085), + [anon_sym_enum] = ACTIONS(3085), + [anon_sym_class] = ACTIONS(3085), + [anon_sym_struct] = ACTIONS(3085), + [anon_sym_union] = ACTIONS(3085), + [anon_sym_if] = ACTIONS(3085), + [anon_sym_else] = ACTIONS(3085), + [anon_sym_switch] = ACTIONS(3085), + [anon_sym_case] = ACTIONS(3085), + [anon_sym_default] = ACTIONS(3085), + [anon_sym_while] = ACTIONS(3085), + [anon_sym_do] = ACTIONS(3085), + [anon_sym_for] = ACTIONS(3085), + [anon_sym_return] = ACTIONS(3085), + [anon_sym_break] = ACTIONS(3085), + [anon_sym_continue] = ACTIONS(3085), + [anon_sym_goto] = ACTIONS(3085), + [anon_sym_not] = ACTIONS(3085), + [anon_sym_compl] = ACTIONS(3085), + [anon_sym_DASH_DASH] = ACTIONS(3087), + [anon_sym_PLUS_PLUS] = ACTIONS(3087), + [anon_sym_sizeof] = ACTIONS(3085), + [anon_sym_offsetof] = ACTIONS(3085), + [anon_sym__Generic] = ACTIONS(3085), + [anon_sym_asm] = ACTIONS(3085), + [anon_sym___asm__] = ACTIONS(3085), + [sym_number_literal] = ACTIONS(3087), + [anon_sym_L_SQUOTE] = ACTIONS(3087), + [anon_sym_u_SQUOTE] = ACTIONS(3087), + [anon_sym_U_SQUOTE] = ACTIONS(3087), + [anon_sym_u8_SQUOTE] = ACTIONS(3087), + [anon_sym_SQUOTE] = ACTIONS(3087), + [anon_sym_L_DQUOTE] = ACTIONS(3087), + [anon_sym_u_DQUOTE] = ACTIONS(3087), + [anon_sym_U_DQUOTE] = ACTIONS(3087), + [anon_sym_u8_DQUOTE] = ACTIONS(3087), + [anon_sym_DQUOTE] = ACTIONS(3087), + [sym_true] = ACTIONS(3085), + [sym_false] = ACTIONS(3085), + [anon_sym_NULL] = ACTIONS(3085), + [anon_sym_nullptr] = ACTIONS(3085), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3085), + [anon_sym_decltype] = ACTIONS(3085), + [anon_sym_virtual] = ACTIONS(3085), + [anon_sym_explicit] = ACTIONS(3085), + [anon_sym_typename] = ACTIONS(3085), + [anon_sym_template] = ACTIONS(3085), + [anon_sym_operator] = ACTIONS(3085), + [anon_sym_try] = ACTIONS(3085), + [anon_sym_delete] = ACTIONS(3085), + [anon_sym_throw] = ACTIONS(3085), + [anon_sym_namespace] = ACTIONS(3085), + [anon_sym_using] = ACTIONS(3085), + [anon_sym_static_assert] = ACTIONS(3085), + [anon_sym_concept] = ACTIONS(3085), + [anon_sym_co_return] = ACTIONS(3085), + [anon_sym_co_yield] = ACTIONS(3085), + [anon_sym_R_DQUOTE] = ACTIONS(3087), + [anon_sym_LR_DQUOTE] = ACTIONS(3087), + [anon_sym_uR_DQUOTE] = ACTIONS(3087), + [anon_sym_UR_DQUOTE] = ACTIONS(3087), + [anon_sym_u8R_DQUOTE] = ACTIONS(3087), + [anon_sym_co_await] = ACTIONS(3085), + [anon_sym_new] = ACTIONS(3085), + [anon_sym_requires] = ACTIONS(3085), + [sym_this] = ACTIONS(3085), }, - [1041] = { - [sym_identifier] = ACTIONS(2758), - [aux_sym_preproc_include_token1] = ACTIONS(2758), - [aux_sym_preproc_def_token1] = ACTIONS(2758), - [aux_sym_preproc_if_token1] = ACTIONS(2758), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2758), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2758), - [sym_preproc_directive] = ACTIONS(2758), - [anon_sym_LPAREN2] = ACTIONS(2760), - [anon_sym_BANG] = ACTIONS(2760), - [anon_sym_TILDE] = ACTIONS(2760), - [anon_sym_DASH] = ACTIONS(2758), - [anon_sym_PLUS] = ACTIONS(2758), - [anon_sym_STAR] = ACTIONS(2760), - [anon_sym_AMP_AMP] = ACTIONS(2760), - [anon_sym_AMP] = ACTIONS(2758), - [anon_sym_SEMI] = ACTIONS(2760), - [anon_sym_typedef] = ACTIONS(2758), - [anon_sym_extern] = ACTIONS(2758), - [anon_sym___attribute__] = ACTIONS(2758), - [anon_sym_COLON_COLON] = ACTIONS(2760), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2760), - [anon_sym___declspec] = ACTIONS(2758), - [anon_sym___based] = ACTIONS(2758), - [anon_sym___cdecl] = ACTIONS(2758), - [anon_sym___clrcall] = ACTIONS(2758), - [anon_sym___stdcall] = ACTIONS(2758), - [anon_sym___fastcall] = ACTIONS(2758), - [anon_sym___thiscall] = ACTIONS(2758), - [anon_sym___vectorcall] = ACTIONS(2758), - [anon_sym_LBRACE] = ACTIONS(2760), - [anon_sym_RBRACE] = ACTIONS(2760), - [anon_sym_LBRACK] = ACTIONS(2758), - [anon_sym_static] = ACTIONS(2758), - [anon_sym_register] = ACTIONS(2758), - [anon_sym_inline] = ACTIONS(2758), - [anon_sym_thread_local] = ACTIONS(2758), - [anon_sym_const] = ACTIONS(2758), - [anon_sym_volatile] = ACTIONS(2758), - [anon_sym_restrict] = ACTIONS(2758), - [anon_sym__Atomic] = ACTIONS(2758), - [anon_sym_mutable] = ACTIONS(2758), - [anon_sym_constexpr] = ACTIONS(2758), - [anon_sym_constinit] = ACTIONS(2758), - [anon_sym_consteval] = ACTIONS(2758), - [anon_sym_signed] = ACTIONS(2758), - [anon_sym_unsigned] = ACTIONS(2758), - [anon_sym_long] = ACTIONS(2758), - [anon_sym_short] = ACTIONS(2758), - [sym_primitive_type] = ACTIONS(2758), - [anon_sym_enum] = ACTIONS(2758), - [anon_sym_class] = ACTIONS(2758), - [anon_sym_struct] = ACTIONS(2758), - [anon_sym_union] = ACTIONS(2758), - [anon_sym_if] = ACTIONS(2758), - [anon_sym_switch] = ACTIONS(2758), - [anon_sym_case] = ACTIONS(2758), - [anon_sym_default] = ACTIONS(2758), - [anon_sym_while] = ACTIONS(2758), - [anon_sym_do] = ACTIONS(2758), - [anon_sym_for] = ACTIONS(2758), - [anon_sym_return] = ACTIONS(2758), - [anon_sym_break] = ACTIONS(2758), - [anon_sym_continue] = ACTIONS(2758), - [anon_sym_goto] = ACTIONS(2758), - [anon_sym_not] = ACTIONS(2758), - [anon_sym_compl] = ACTIONS(2758), - [anon_sym_DASH_DASH] = ACTIONS(2760), - [anon_sym_PLUS_PLUS] = ACTIONS(2760), - [anon_sym_sizeof] = ACTIONS(2758), - [sym_number_literal] = ACTIONS(2760), - [anon_sym_L_SQUOTE] = ACTIONS(2760), - [anon_sym_u_SQUOTE] = ACTIONS(2760), - [anon_sym_U_SQUOTE] = ACTIONS(2760), - [anon_sym_u8_SQUOTE] = ACTIONS(2760), - [anon_sym_SQUOTE] = ACTIONS(2760), - [anon_sym_L_DQUOTE] = ACTIONS(2760), - [anon_sym_u_DQUOTE] = ACTIONS(2760), - [anon_sym_U_DQUOTE] = ACTIONS(2760), - [anon_sym_u8_DQUOTE] = ACTIONS(2760), - [anon_sym_DQUOTE] = ACTIONS(2760), - [sym_true] = ACTIONS(2758), - [sym_false] = ACTIONS(2758), - [sym_null] = ACTIONS(2758), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2758), - [anon_sym_decltype] = ACTIONS(2758), - [anon_sym_virtual] = ACTIONS(2758), - [anon_sym_explicit] = ACTIONS(2758), - [anon_sym_typename] = ACTIONS(2758), - [anon_sym_template] = ACTIONS(2758), - [anon_sym_operator] = ACTIONS(2758), - [anon_sym_try] = ACTIONS(2758), - [anon_sym_delete] = ACTIONS(2758), - [anon_sym_throw] = ACTIONS(2758), - [anon_sym_namespace] = ACTIONS(2758), - [anon_sym_using] = ACTIONS(2758), - [anon_sym_static_assert] = ACTIONS(2758), - [anon_sym_concept] = ACTIONS(2758), - [anon_sym_co_return] = ACTIONS(2758), - [anon_sym_co_yield] = ACTIONS(2758), - [anon_sym_R_DQUOTE] = ACTIONS(2760), - [anon_sym_LR_DQUOTE] = ACTIONS(2760), - [anon_sym_uR_DQUOTE] = ACTIONS(2760), - [anon_sym_UR_DQUOTE] = ACTIONS(2760), - [anon_sym_u8R_DQUOTE] = ACTIONS(2760), - [anon_sym_co_await] = ACTIONS(2758), - [anon_sym_new] = ACTIONS(2758), - [anon_sym_requires] = ACTIONS(2758), - [sym_this] = ACTIONS(2758), - [sym_nullptr] = ACTIONS(2758), + [1090] = { + [sym_identifier] = ACTIONS(3085), + [aux_sym_preproc_include_token1] = ACTIONS(3085), + [aux_sym_preproc_def_token1] = ACTIONS(3085), + [aux_sym_preproc_if_token1] = ACTIONS(3085), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3085), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3085), + [sym_preproc_directive] = ACTIONS(3085), + [anon_sym_LPAREN2] = ACTIONS(3087), + [anon_sym_BANG] = ACTIONS(3087), + [anon_sym_TILDE] = ACTIONS(3087), + [anon_sym_DASH] = ACTIONS(3085), + [anon_sym_PLUS] = ACTIONS(3085), + [anon_sym_STAR] = ACTIONS(3087), + [anon_sym_AMP_AMP] = ACTIONS(3087), + [anon_sym_AMP] = ACTIONS(3085), + [anon_sym_SEMI] = ACTIONS(3087), + [anon_sym_typedef] = ACTIONS(3085), + [anon_sym_extern] = ACTIONS(3085), + [anon_sym___attribute__] = ACTIONS(3085), + [anon_sym_COLON_COLON] = ACTIONS(3087), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3087), + [anon_sym___declspec] = ACTIONS(3085), + [anon_sym___based] = ACTIONS(3085), + [anon_sym___cdecl] = ACTIONS(3085), + [anon_sym___clrcall] = ACTIONS(3085), + [anon_sym___stdcall] = ACTIONS(3085), + [anon_sym___fastcall] = ACTIONS(3085), + [anon_sym___thiscall] = ACTIONS(3085), + [anon_sym___vectorcall] = ACTIONS(3085), + [anon_sym_LBRACE] = ACTIONS(3087), + [anon_sym_RBRACE] = ACTIONS(3087), + [anon_sym_LBRACK] = ACTIONS(3085), + [anon_sym_static] = ACTIONS(3085), + [anon_sym_register] = ACTIONS(3085), + [anon_sym_inline] = ACTIONS(3085), + [anon_sym_thread_local] = ACTIONS(3085), + [anon_sym_const] = ACTIONS(3085), + [anon_sym_constexpr] = ACTIONS(3085), + [anon_sym_volatile] = ACTIONS(3085), + [anon_sym_restrict] = ACTIONS(3085), + [anon_sym___restrict__] = ACTIONS(3085), + [anon_sym__Atomic] = ACTIONS(3085), + [anon_sym__Noreturn] = ACTIONS(3085), + [anon_sym_noreturn] = ACTIONS(3085), + [anon_sym_mutable] = ACTIONS(3085), + [anon_sym_constinit] = ACTIONS(3085), + [anon_sym_consteval] = ACTIONS(3085), + [anon_sym_signed] = ACTIONS(3085), + [anon_sym_unsigned] = ACTIONS(3085), + [anon_sym_long] = ACTIONS(3085), + [anon_sym_short] = ACTIONS(3085), + [sym_primitive_type] = ACTIONS(3085), + [anon_sym_enum] = ACTIONS(3085), + [anon_sym_class] = ACTIONS(3085), + [anon_sym_struct] = ACTIONS(3085), + [anon_sym_union] = ACTIONS(3085), + [anon_sym_if] = ACTIONS(3085), + [anon_sym_else] = ACTIONS(3085), + [anon_sym_switch] = ACTIONS(3085), + [anon_sym_case] = ACTIONS(3085), + [anon_sym_default] = ACTIONS(3085), + [anon_sym_while] = ACTIONS(3085), + [anon_sym_do] = ACTIONS(3085), + [anon_sym_for] = ACTIONS(3085), + [anon_sym_return] = ACTIONS(3085), + [anon_sym_break] = ACTIONS(3085), + [anon_sym_continue] = ACTIONS(3085), + [anon_sym_goto] = ACTIONS(3085), + [anon_sym_not] = ACTIONS(3085), + [anon_sym_compl] = ACTIONS(3085), + [anon_sym_DASH_DASH] = ACTIONS(3087), + [anon_sym_PLUS_PLUS] = ACTIONS(3087), + [anon_sym_sizeof] = ACTIONS(3085), + [anon_sym_offsetof] = ACTIONS(3085), + [anon_sym__Generic] = ACTIONS(3085), + [anon_sym_asm] = ACTIONS(3085), + [anon_sym___asm__] = ACTIONS(3085), + [sym_number_literal] = ACTIONS(3087), + [anon_sym_L_SQUOTE] = ACTIONS(3087), + [anon_sym_u_SQUOTE] = ACTIONS(3087), + [anon_sym_U_SQUOTE] = ACTIONS(3087), + [anon_sym_u8_SQUOTE] = ACTIONS(3087), + [anon_sym_SQUOTE] = ACTIONS(3087), + [anon_sym_L_DQUOTE] = ACTIONS(3087), + [anon_sym_u_DQUOTE] = ACTIONS(3087), + [anon_sym_U_DQUOTE] = ACTIONS(3087), + [anon_sym_u8_DQUOTE] = ACTIONS(3087), + [anon_sym_DQUOTE] = ACTIONS(3087), + [sym_true] = ACTIONS(3085), + [sym_false] = ACTIONS(3085), + [anon_sym_NULL] = ACTIONS(3085), + [anon_sym_nullptr] = ACTIONS(3085), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3085), + [anon_sym_decltype] = ACTIONS(3085), + [anon_sym_virtual] = ACTIONS(3085), + [anon_sym_explicit] = ACTIONS(3085), + [anon_sym_typename] = ACTIONS(3085), + [anon_sym_template] = ACTIONS(3085), + [anon_sym_operator] = ACTIONS(3085), + [anon_sym_try] = ACTIONS(3085), + [anon_sym_delete] = ACTIONS(3085), + [anon_sym_throw] = ACTIONS(3085), + [anon_sym_namespace] = ACTIONS(3085), + [anon_sym_using] = ACTIONS(3085), + [anon_sym_static_assert] = ACTIONS(3085), + [anon_sym_concept] = ACTIONS(3085), + [anon_sym_co_return] = ACTIONS(3085), + [anon_sym_co_yield] = ACTIONS(3085), + [anon_sym_R_DQUOTE] = ACTIONS(3087), + [anon_sym_LR_DQUOTE] = ACTIONS(3087), + [anon_sym_uR_DQUOTE] = ACTIONS(3087), + [anon_sym_UR_DQUOTE] = ACTIONS(3087), + [anon_sym_u8R_DQUOTE] = ACTIONS(3087), + [anon_sym_co_await] = ACTIONS(3085), + [anon_sym_new] = ACTIONS(3085), + [anon_sym_requires] = ACTIONS(3085), + [sym_this] = ACTIONS(3085), }, - [1042] = { - [ts_builtin_sym_end] = ACTIONS(2764), - [sym_identifier] = ACTIONS(2762), - [aux_sym_preproc_include_token1] = ACTIONS(2762), - [aux_sym_preproc_def_token1] = ACTIONS(2762), - [aux_sym_preproc_if_token1] = ACTIONS(2762), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2762), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2762), - [sym_preproc_directive] = ACTIONS(2762), - [anon_sym_LPAREN2] = ACTIONS(2764), - [anon_sym_BANG] = ACTIONS(2764), - [anon_sym_TILDE] = ACTIONS(2764), - [anon_sym_DASH] = ACTIONS(2762), - [anon_sym_PLUS] = ACTIONS(2762), - [anon_sym_STAR] = ACTIONS(2764), - [anon_sym_AMP_AMP] = ACTIONS(2764), - [anon_sym_AMP] = ACTIONS(2762), - [anon_sym_SEMI] = ACTIONS(2764), - [anon_sym_typedef] = ACTIONS(2762), - [anon_sym_extern] = ACTIONS(2762), - [anon_sym___attribute__] = ACTIONS(2762), - [anon_sym_COLON_COLON] = ACTIONS(2764), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2764), - [anon_sym___declspec] = ACTIONS(2762), - [anon_sym___based] = ACTIONS(2762), - [anon_sym___cdecl] = ACTIONS(2762), - [anon_sym___clrcall] = ACTIONS(2762), - [anon_sym___stdcall] = ACTIONS(2762), - [anon_sym___fastcall] = ACTIONS(2762), - [anon_sym___thiscall] = ACTIONS(2762), - [anon_sym___vectorcall] = ACTIONS(2762), - [anon_sym_LBRACE] = ACTIONS(2764), - [anon_sym_LBRACK] = ACTIONS(2762), - [anon_sym_static] = ACTIONS(2762), - [anon_sym_register] = ACTIONS(2762), - [anon_sym_inline] = ACTIONS(2762), - [anon_sym_thread_local] = ACTIONS(2762), - [anon_sym_const] = ACTIONS(2762), - [anon_sym_volatile] = ACTIONS(2762), - [anon_sym_restrict] = ACTIONS(2762), - [anon_sym__Atomic] = ACTIONS(2762), - [anon_sym_mutable] = ACTIONS(2762), - [anon_sym_constexpr] = ACTIONS(2762), - [anon_sym_constinit] = ACTIONS(2762), - [anon_sym_consteval] = ACTIONS(2762), - [anon_sym_signed] = ACTIONS(2762), - [anon_sym_unsigned] = ACTIONS(2762), - [anon_sym_long] = ACTIONS(2762), - [anon_sym_short] = ACTIONS(2762), - [sym_primitive_type] = ACTIONS(2762), - [anon_sym_enum] = ACTIONS(2762), - [anon_sym_class] = ACTIONS(2762), - [anon_sym_struct] = ACTIONS(2762), - [anon_sym_union] = ACTIONS(2762), - [anon_sym_if] = ACTIONS(2762), - [anon_sym_switch] = ACTIONS(2762), - [anon_sym_case] = ACTIONS(2762), - [anon_sym_default] = ACTIONS(2762), - [anon_sym_while] = ACTIONS(2762), - [anon_sym_do] = ACTIONS(2762), - [anon_sym_for] = ACTIONS(2762), - [anon_sym_return] = ACTIONS(2762), - [anon_sym_break] = ACTIONS(2762), - [anon_sym_continue] = ACTIONS(2762), - [anon_sym_goto] = ACTIONS(2762), - [anon_sym_not] = ACTIONS(2762), - [anon_sym_compl] = ACTIONS(2762), - [anon_sym_DASH_DASH] = ACTIONS(2764), - [anon_sym_PLUS_PLUS] = ACTIONS(2764), - [anon_sym_sizeof] = ACTIONS(2762), - [sym_number_literal] = ACTIONS(2764), - [anon_sym_L_SQUOTE] = ACTIONS(2764), - [anon_sym_u_SQUOTE] = ACTIONS(2764), - [anon_sym_U_SQUOTE] = ACTIONS(2764), - [anon_sym_u8_SQUOTE] = ACTIONS(2764), - [anon_sym_SQUOTE] = ACTIONS(2764), - [anon_sym_L_DQUOTE] = ACTIONS(2764), - [anon_sym_u_DQUOTE] = ACTIONS(2764), - [anon_sym_U_DQUOTE] = ACTIONS(2764), - [anon_sym_u8_DQUOTE] = ACTIONS(2764), - [anon_sym_DQUOTE] = ACTIONS(2764), - [sym_true] = ACTIONS(2762), - [sym_false] = ACTIONS(2762), - [sym_null] = ACTIONS(2762), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2762), - [anon_sym_decltype] = ACTIONS(2762), - [anon_sym_virtual] = ACTIONS(2762), - [anon_sym_explicit] = ACTIONS(2762), - [anon_sym_typename] = ACTIONS(2762), - [anon_sym_template] = ACTIONS(2762), - [anon_sym_operator] = ACTIONS(2762), - [anon_sym_try] = ACTIONS(2762), - [anon_sym_delete] = ACTIONS(2762), - [anon_sym_throw] = ACTIONS(2762), - [anon_sym_namespace] = ACTIONS(2762), - [anon_sym_using] = ACTIONS(2762), - [anon_sym_static_assert] = ACTIONS(2762), - [anon_sym_concept] = ACTIONS(2762), - [anon_sym_co_return] = ACTIONS(2762), - [anon_sym_co_yield] = ACTIONS(2762), - [anon_sym_R_DQUOTE] = ACTIONS(2764), - [anon_sym_LR_DQUOTE] = ACTIONS(2764), - [anon_sym_uR_DQUOTE] = ACTIONS(2764), - [anon_sym_UR_DQUOTE] = ACTIONS(2764), - [anon_sym_u8R_DQUOTE] = ACTIONS(2764), - [anon_sym_co_await] = ACTIONS(2762), - [anon_sym_new] = ACTIONS(2762), - [anon_sym_requires] = ACTIONS(2762), - [sym_this] = ACTIONS(2762), - [sym_nullptr] = ACTIONS(2762), + [1091] = { + [sym_identifier] = ACTIONS(2542), + [aux_sym_preproc_include_token1] = ACTIONS(2542), + [aux_sym_preproc_def_token1] = ACTIONS(2542), + [anon_sym_COMMA] = ACTIONS(2960), + [aux_sym_preproc_if_token1] = ACTIONS(2542), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2542), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2542), + [sym_preproc_directive] = ACTIONS(2542), + [anon_sym_LPAREN2] = ACTIONS(2540), + [anon_sym_BANG] = ACTIONS(2540), + [anon_sym_TILDE] = ACTIONS(2540), + [anon_sym_DASH] = ACTIONS(2542), + [anon_sym_PLUS] = ACTIONS(2542), + [anon_sym_STAR] = ACTIONS(2540), + [anon_sym_AMP_AMP] = ACTIONS(2540), + [anon_sym_AMP] = ACTIONS(2542), + [anon_sym_SEMI] = ACTIONS(2960), + [anon_sym_typedef] = ACTIONS(2542), + [anon_sym_extern] = ACTIONS(2542), + [anon_sym___attribute__] = ACTIONS(2542), + [anon_sym_COLON_COLON] = ACTIONS(2540), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2540), + [anon_sym___declspec] = ACTIONS(2542), + [anon_sym___based] = ACTIONS(2542), + [anon_sym___cdecl] = ACTIONS(2542), + [anon_sym___clrcall] = ACTIONS(2542), + [anon_sym___stdcall] = ACTIONS(2542), + [anon_sym___fastcall] = ACTIONS(2542), + [anon_sym___thiscall] = ACTIONS(2542), + [anon_sym___vectorcall] = ACTIONS(2542), + [anon_sym_LBRACE] = ACTIONS(2540), + [anon_sym_RBRACE] = ACTIONS(2540), + [anon_sym_LBRACK] = ACTIONS(2542), + [anon_sym_static] = ACTIONS(2542), + [anon_sym_register] = ACTIONS(2542), + [anon_sym_inline] = ACTIONS(2542), + [anon_sym_thread_local] = ACTIONS(2542), + [anon_sym_const] = ACTIONS(2542), + [anon_sym_constexpr] = ACTIONS(2542), + [anon_sym_volatile] = ACTIONS(2542), + [anon_sym_restrict] = ACTIONS(2542), + [anon_sym___restrict__] = ACTIONS(2542), + [anon_sym__Atomic] = ACTIONS(2542), + [anon_sym__Noreturn] = ACTIONS(2542), + [anon_sym_noreturn] = ACTIONS(2542), + [anon_sym_mutable] = ACTIONS(2542), + [anon_sym_constinit] = ACTIONS(2542), + [anon_sym_consteval] = ACTIONS(2542), + [anon_sym_signed] = ACTIONS(2542), + [anon_sym_unsigned] = ACTIONS(2542), + [anon_sym_long] = ACTIONS(2542), + [anon_sym_short] = ACTIONS(2542), + [sym_primitive_type] = ACTIONS(2542), + [anon_sym_enum] = ACTIONS(2542), + [anon_sym_class] = ACTIONS(2542), + [anon_sym_struct] = ACTIONS(2542), + [anon_sym_union] = ACTIONS(2542), + [anon_sym_if] = ACTIONS(2542), + [anon_sym_switch] = ACTIONS(2542), + [anon_sym_case] = ACTIONS(2542), + [anon_sym_default] = ACTIONS(2542), + [anon_sym_while] = ACTIONS(2542), + [anon_sym_do] = ACTIONS(2542), + [anon_sym_for] = ACTIONS(2542), + [anon_sym_return] = ACTIONS(2542), + [anon_sym_break] = ACTIONS(2542), + [anon_sym_continue] = ACTIONS(2542), + [anon_sym_goto] = ACTIONS(2542), + [anon_sym_not] = ACTIONS(2542), + [anon_sym_compl] = ACTIONS(2542), + [anon_sym_DASH_DASH] = ACTIONS(2540), + [anon_sym_PLUS_PLUS] = ACTIONS(2540), + [anon_sym_sizeof] = ACTIONS(2542), + [anon_sym_offsetof] = ACTIONS(2542), + [anon_sym__Generic] = ACTIONS(2542), + [anon_sym_asm] = ACTIONS(2542), + [anon_sym___asm__] = ACTIONS(2542), + [sym_number_literal] = ACTIONS(2540), + [anon_sym_L_SQUOTE] = ACTIONS(2540), + [anon_sym_u_SQUOTE] = ACTIONS(2540), + [anon_sym_U_SQUOTE] = ACTIONS(2540), + [anon_sym_u8_SQUOTE] = ACTIONS(2540), + [anon_sym_SQUOTE] = ACTIONS(2540), + [anon_sym_L_DQUOTE] = ACTIONS(2540), + [anon_sym_u_DQUOTE] = ACTIONS(2540), + [anon_sym_U_DQUOTE] = ACTIONS(2540), + [anon_sym_u8_DQUOTE] = ACTIONS(2540), + [anon_sym_DQUOTE] = ACTIONS(2540), + [sym_true] = ACTIONS(2542), + [sym_false] = ACTIONS(2542), + [anon_sym_NULL] = ACTIONS(2542), + [anon_sym_nullptr] = ACTIONS(2542), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2542), + [anon_sym_decltype] = ACTIONS(2542), + [anon_sym_virtual] = ACTIONS(2542), + [anon_sym_explicit] = ACTIONS(2542), + [anon_sym_typename] = ACTIONS(2542), + [anon_sym_template] = ACTIONS(2542), + [anon_sym_operator] = ACTIONS(2542), + [anon_sym_try] = ACTIONS(2542), + [anon_sym_delete] = ACTIONS(2542), + [anon_sym_throw] = ACTIONS(2542), + [anon_sym_namespace] = ACTIONS(2542), + [anon_sym_using] = ACTIONS(2542), + [anon_sym_static_assert] = ACTIONS(2542), + [anon_sym_concept] = ACTIONS(2542), + [anon_sym_co_return] = ACTIONS(2542), + [anon_sym_co_yield] = ACTIONS(2542), + [anon_sym_R_DQUOTE] = ACTIONS(2540), + [anon_sym_LR_DQUOTE] = ACTIONS(2540), + [anon_sym_uR_DQUOTE] = ACTIONS(2540), + [anon_sym_UR_DQUOTE] = ACTIONS(2540), + [anon_sym_u8R_DQUOTE] = ACTIONS(2540), + [anon_sym_co_await] = ACTIONS(2542), + [anon_sym_new] = ACTIONS(2542), + [anon_sym_requires] = ACTIONS(2542), + [sym_this] = ACTIONS(2542), }, - [1043] = { - [sym_identifier] = ACTIONS(2754), - [aux_sym_preproc_include_token1] = ACTIONS(2754), - [aux_sym_preproc_def_token1] = ACTIONS(2754), - [aux_sym_preproc_if_token1] = ACTIONS(2754), - [aux_sym_preproc_if_token2] = ACTIONS(2754), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2754), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2754), - [sym_preproc_directive] = ACTIONS(2754), - [anon_sym_LPAREN2] = ACTIONS(2756), - [anon_sym_BANG] = ACTIONS(2756), - [anon_sym_TILDE] = ACTIONS(2756), - [anon_sym_DASH] = ACTIONS(2754), - [anon_sym_PLUS] = ACTIONS(2754), - [anon_sym_STAR] = ACTIONS(2756), - [anon_sym_AMP_AMP] = ACTIONS(2756), - [anon_sym_AMP] = ACTIONS(2754), - [anon_sym_SEMI] = ACTIONS(2756), - [anon_sym_typedef] = ACTIONS(2754), - [anon_sym_extern] = ACTIONS(2754), - [anon_sym___attribute__] = ACTIONS(2754), - [anon_sym_COLON_COLON] = ACTIONS(2756), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2756), - [anon_sym___declspec] = ACTIONS(2754), - [anon_sym___based] = ACTIONS(2754), - [anon_sym___cdecl] = ACTIONS(2754), - [anon_sym___clrcall] = ACTIONS(2754), - [anon_sym___stdcall] = ACTIONS(2754), - [anon_sym___fastcall] = ACTIONS(2754), - [anon_sym___thiscall] = ACTIONS(2754), - [anon_sym___vectorcall] = ACTIONS(2754), - [anon_sym_LBRACE] = ACTIONS(2756), - [anon_sym_LBRACK] = ACTIONS(2754), - [anon_sym_static] = ACTIONS(2754), - [anon_sym_register] = ACTIONS(2754), - [anon_sym_inline] = ACTIONS(2754), - [anon_sym_thread_local] = ACTIONS(2754), - [anon_sym_const] = ACTIONS(2754), - [anon_sym_volatile] = ACTIONS(2754), - [anon_sym_restrict] = ACTIONS(2754), - [anon_sym__Atomic] = ACTIONS(2754), - [anon_sym_mutable] = ACTIONS(2754), - [anon_sym_constexpr] = ACTIONS(2754), - [anon_sym_constinit] = ACTIONS(2754), - [anon_sym_consteval] = ACTIONS(2754), - [anon_sym_signed] = ACTIONS(2754), - [anon_sym_unsigned] = ACTIONS(2754), - [anon_sym_long] = ACTIONS(2754), - [anon_sym_short] = ACTIONS(2754), - [sym_primitive_type] = ACTIONS(2754), - [anon_sym_enum] = ACTIONS(2754), - [anon_sym_class] = ACTIONS(2754), - [anon_sym_struct] = ACTIONS(2754), - [anon_sym_union] = ACTIONS(2754), - [anon_sym_if] = ACTIONS(2754), - [anon_sym_switch] = ACTIONS(2754), - [anon_sym_case] = ACTIONS(2754), - [anon_sym_default] = ACTIONS(2754), - [anon_sym_while] = ACTIONS(2754), - [anon_sym_do] = ACTIONS(2754), - [anon_sym_for] = ACTIONS(2754), - [anon_sym_return] = ACTIONS(2754), - [anon_sym_break] = ACTIONS(2754), - [anon_sym_continue] = ACTIONS(2754), - [anon_sym_goto] = ACTIONS(2754), - [anon_sym_not] = ACTIONS(2754), - [anon_sym_compl] = ACTIONS(2754), - [anon_sym_DASH_DASH] = ACTIONS(2756), - [anon_sym_PLUS_PLUS] = ACTIONS(2756), - [anon_sym_sizeof] = ACTIONS(2754), - [sym_number_literal] = ACTIONS(2756), - [anon_sym_L_SQUOTE] = ACTIONS(2756), - [anon_sym_u_SQUOTE] = ACTIONS(2756), - [anon_sym_U_SQUOTE] = ACTIONS(2756), - [anon_sym_u8_SQUOTE] = ACTIONS(2756), - [anon_sym_SQUOTE] = ACTIONS(2756), - [anon_sym_L_DQUOTE] = ACTIONS(2756), - [anon_sym_u_DQUOTE] = ACTIONS(2756), - [anon_sym_U_DQUOTE] = ACTIONS(2756), - [anon_sym_u8_DQUOTE] = ACTIONS(2756), - [anon_sym_DQUOTE] = ACTIONS(2756), - [sym_true] = ACTIONS(2754), - [sym_false] = ACTIONS(2754), - [sym_null] = ACTIONS(2754), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2754), - [anon_sym_decltype] = ACTIONS(2754), - [anon_sym_virtual] = ACTIONS(2754), - [anon_sym_explicit] = ACTIONS(2754), - [anon_sym_typename] = ACTIONS(2754), - [anon_sym_template] = ACTIONS(2754), - [anon_sym_operator] = ACTIONS(2754), - [anon_sym_try] = ACTIONS(2754), - [anon_sym_delete] = ACTIONS(2754), - [anon_sym_throw] = ACTIONS(2754), - [anon_sym_namespace] = ACTIONS(2754), - [anon_sym_using] = ACTIONS(2754), - [anon_sym_static_assert] = ACTIONS(2754), - [anon_sym_concept] = ACTIONS(2754), - [anon_sym_co_return] = ACTIONS(2754), - [anon_sym_co_yield] = ACTIONS(2754), - [anon_sym_R_DQUOTE] = ACTIONS(2756), - [anon_sym_LR_DQUOTE] = ACTIONS(2756), - [anon_sym_uR_DQUOTE] = ACTIONS(2756), - [anon_sym_UR_DQUOTE] = ACTIONS(2756), - [anon_sym_u8R_DQUOTE] = ACTIONS(2756), - [anon_sym_co_await] = ACTIONS(2754), - [anon_sym_new] = ACTIONS(2754), - [anon_sym_requires] = ACTIONS(2754), - [sym_this] = ACTIONS(2754), - [sym_nullptr] = ACTIONS(2754), + [1092] = { + [sym_identifier] = ACTIONS(2542), + [aux_sym_preproc_include_token1] = ACTIONS(2542), + [aux_sym_preproc_def_token1] = ACTIONS(2542), + [anon_sym_COMMA] = ACTIONS(2960), + [aux_sym_preproc_if_token1] = ACTIONS(2542), + [aux_sym_preproc_if_token2] = ACTIONS(2542), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2542), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2542), + [sym_preproc_directive] = ACTIONS(2542), + [anon_sym_LPAREN2] = ACTIONS(2540), + [anon_sym_BANG] = ACTIONS(2540), + [anon_sym_TILDE] = ACTIONS(2540), + [anon_sym_DASH] = ACTIONS(2542), + [anon_sym_PLUS] = ACTIONS(2542), + [anon_sym_STAR] = ACTIONS(2540), + [anon_sym_AMP_AMP] = ACTIONS(2540), + [anon_sym_AMP] = ACTIONS(2542), + [anon_sym_SEMI] = ACTIONS(2960), + [anon_sym_typedef] = ACTIONS(2542), + [anon_sym_extern] = ACTIONS(2542), + [anon_sym___attribute__] = ACTIONS(2542), + [anon_sym_COLON_COLON] = ACTIONS(2540), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2540), + [anon_sym___declspec] = ACTIONS(2542), + [anon_sym___based] = ACTIONS(2542), + [anon_sym___cdecl] = ACTIONS(2542), + [anon_sym___clrcall] = ACTIONS(2542), + [anon_sym___stdcall] = ACTIONS(2542), + [anon_sym___fastcall] = ACTIONS(2542), + [anon_sym___thiscall] = ACTIONS(2542), + [anon_sym___vectorcall] = ACTIONS(2542), + [anon_sym_LBRACE] = ACTIONS(2540), + [anon_sym_LBRACK] = ACTIONS(2542), + [anon_sym_static] = ACTIONS(2542), + [anon_sym_register] = ACTIONS(2542), + [anon_sym_inline] = ACTIONS(2542), + [anon_sym_thread_local] = ACTIONS(2542), + [anon_sym_const] = ACTIONS(2542), + [anon_sym_constexpr] = ACTIONS(2542), + [anon_sym_volatile] = ACTIONS(2542), + [anon_sym_restrict] = ACTIONS(2542), + [anon_sym___restrict__] = ACTIONS(2542), + [anon_sym__Atomic] = ACTIONS(2542), + [anon_sym__Noreturn] = ACTIONS(2542), + [anon_sym_noreturn] = ACTIONS(2542), + [anon_sym_mutable] = ACTIONS(2542), + [anon_sym_constinit] = ACTIONS(2542), + [anon_sym_consteval] = ACTIONS(2542), + [anon_sym_signed] = ACTIONS(2542), + [anon_sym_unsigned] = ACTIONS(2542), + [anon_sym_long] = ACTIONS(2542), + [anon_sym_short] = ACTIONS(2542), + [sym_primitive_type] = ACTIONS(2542), + [anon_sym_enum] = ACTIONS(2542), + [anon_sym_class] = ACTIONS(2542), + [anon_sym_struct] = ACTIONS(2542), + [anon_sym_union] = ACTIONS(2542), + [anon_sym_if] = ACTIONS(2542), + [anon_sym_switch] = ACTIONS(2542), + [anon_sym_case] = ACTIONS(2542), + [anon_sym_default] = ACTIONS(2542), + [anon_sym_while] = ACTIONS(2542), + [anon_sym_do] = ACTIONS(2542), + [anon_sym_for] = ACTIONS(2542), + [anon_sym_return] = ACTIONS(2542), + [anon_sym_break] = ACTIONS(2542), + [anon_sym_continue] = ACTIONS(2542), + [anon_sym_goto] = ACTIONS(2542), + [anon_sym_not] = ACTIONS(2542), + [anon_sym_compl] = ACTIONS(2542), + [anon_sym_DASH_DASH] = ACTIONS(2540), + [anon_sym_PLUS_PLUS] = ACTIONS(2540), + [anon_sym_sizeof] = ACTIONS(2542), + [anon_sym_offsetof] = ACTIONS(2542), + [anon_sym__Generic] = ACTIONS(2542), + [anon_sym_asm] = ACTIONS(2542), + [anon_sym___asm__] = ACTIONS(2542), + [sym_number_literal] = ACTIONS(2540), + [anon_sym_L_SQUOTE] = ACTIONS(2540), + [anon_sym_u_SQUOTE] = ACTIONS(2540), + [anon_sym_U_SQUOTE] = ACTIONS(2540), + [anon_sym_u8_SQUOTE] = ACTIONS(2540), + [anon_sym_SQUOTE] = ACTIONS(2540), + [anon_sym_L_DQUOTE] = ACTIONS(2540), + [anon_sym_u_DQUOTE] = ACTIONS(2540), + [anon_sym_U_DQUOTE] = ACTIONS(2540), + [anon_sym_u8_DQUOTE] = ACTIONS(2540), + [anon_sym_DQUOTE] = ACTIONS(2540), + [sym_true] = ACTIONS(2542), + [sym_false] = ACTIONS(2542), + [anon_sym_NULL] = ACTIONS(2542), + [anon_sym_nullptr] = ACTIONS(2542), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2542), + [anon_sym_decltype] = ACTIONS(2542), + [anon_sym_virtual] = ACTIONS(2542), + [anon_sym_explicit] = ACTIONS(2542), + [anon_sym_typename] = ACTIONS(2542), + [anon_sym_template] = ACTIONS(2542), + [anon_sym_operator] = ACTIONS(2542), + [anon_sym_try] = ACTIONS(2542), + [anon_sym_delete] = ACTIONS(2542), + [anon_sym_throw] = ACTIONS(2542), + [anon_sym_namespace] = ACTIONS(2542), + [anon_sym_using] = ACTIONS(2542), + [anon_sym_static_assert] = ACTIONS(2542), + [anon_sym_concept] = ACTIONS(2542), + [anon_sym_co_return] = ACTIONS(2542), + [anon_sym_co_yield] = ACTIONS(2542), + [anon_sym_R_DQUOTE] = ACTIONS(2540), + [anon_sym_LR_DQUOTE] = ACTIONS(2540), + [anon_sym_uR_DQUOTE] = ACTIONS(2540), + [anon_sym_UR_DQUOTE] = ACTIONS(2540), + [anon_sym_u8R_DQUOTE] = ACTIONS(2540), + [anon_sym_co_await] = ACTIONS(2542), + [anon_sym_new] = ACTIONS(2542), + [anon_sym_requires] = ACTIONS(2542), + [sym_this] = ACTIONS(2542), }, - [1044] = { - [ts_builtin_sym_end] = ACTIONS(2780), - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [sym_null] = ACTIONS(2778), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), - [sym_nullptr] = ACTIONS(2778), + [1093] = { + [ts_builtin_sym_end] = ACTIONS(3030), + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, - [1045] = { - [ts_builtin_sym_end] = ACTIONS(2812), - [sym_identifier] = ACTIONS(2810), - [aux_sym_preproc_include_token1] = ACTIONS(2810), - [aux_sym_preproc_def_token1] = ACTIONS(2810), - [aux_sym_preproc_if_token1] = ACTIONS(2810), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2810), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2810), - [sym_preproc_directive] = ACTIONS(2810), - [anon_sym_LPAREN2] = ACTIONS(2812), - [anon_sym_BANG] = ACTIONS(2812), - [anon_sym_TILDE] = ACTIONS(2812), - [anon_sym_DASH] = ACTIONS(2810), - [anon_sym_PLUS] = ACTIONS(2810), - [anon_sym_STAR] = ACTIONS(2812), - [anon_sym_AMP_AMP] = ACTIONS(2812), - [anon_sym_AMP] = ACTIONS(2810), - [anon_sym_SEMI] = ACTIONS(2812), - [anon_sym_typedef] = ACTIONS(2810), - [anon_sym_extern] = ACTIONS(2810), - [anon_sym___attribute__] = ACTIONS(2810), - [anon_sym_COLON_COLON] = ACTIONS(2812), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2812), - [anon_sym___declspec] = ACTIONS(2810), - [anon_sym___based] = ACTIONS(2810), - [anon_sym___cdecl] = ACTIONS(2810), - [anon_sym___clrcall] = ACTIONS(2810), - [anon_sym___stdcall] = ACTIONS(2810), - [anon_sym___fastcall] = ACTIONS(2810), - [anon_sym___thiscall] = ACTIONS(2810), - [anon_sym___vectorcall] = ACTIONS(2810), - [anon_sym_LBRACE] = ACTIONS(2812), - [anon_sym_LBRACK] = ACTIONS(2810), - [anon_sym_static] = ACTIONS(2810), - [anon_sym_register] = ACTIONS(2810), - [anon_sym_inline] = ACTIONS(2810), - [anon_sym_thread_local] = ACTIONS(2810), - [anon_sym_const] = ACTIONS(2810), - [anon_sym_volatile] = ACTIONS(2810), - [anon_sym_restrict] = ACTIONS(2810), - [anon_sym__Atomic] = ACTIONS(2810), - [anon_sym_mutable] = ACTIONS(2810), - [anon_sym_constexpr] = ACTIONS(2810), - [anon_sym_constinit] = ACTIONS(2810), - [anon_sym_consteval] = ACTIONS(2810), - [anon_sym_signed] = ACTIONS(2810), - [anon_sym_unsigned] = ACTIONS(2810), - [anon_sym_long] = ACTIONS(2810), - [anon_sym_short] = ACTIONS(2810), - [sym_primitive_type] = ACTIONS(2810), - [anon_sym_enum] = ACTIONS(2810), - [anon_sym_class] = ACTIONS(2810), - [anon_sym_struct] = ACTIONS(2810), - [anon_sym_union] = ACTIONS(2810), - [anon_sym_if] = ACTIONS(2810), - [anon_sym_switch] = ACTIONS(2810), - [anon_sym_case] = ACTIONS(2810), - [anon_sym_default] = ACTIONS(2810), - [anon_sym_while] = ACTIONS(2810), - [anon_sym_do] = ACTIONS(2810), - [anon_sym_for] = ACTIONS(2810), - [anon_sym_return] = ACTIONS(2810), - [anon_sym_break] = ACTIONS(2810), - [anon_sym_continue] = ACTIONS(2810), - [anon_sym_goto] = ACTIONS(2810), - [anon_sym_not] = ACTIONS(2810), - [anon_sym_compl] = ACTIONS(2810), - [anon_sym_DASH_DASH] = ACTIONS(2812), - [anon_sym_PLUS_PLUS] = ACTIONS(2812), - [anon_sym_sizeof] = ACTIONS(2810), - [sym_number_literal] = ACTIONS(2812), - [anon_sym_L_SQUOTE] = ACTIONS(2812), - [anon_sym_u_SQUOTE] = ACTIONS(2812), - [anon_sym_U_SQUOTE] = ACTIONS(2812), - [anon_sym_u8_SQUOTE] = ACTIONS(2812), - [anon_sym_SQUOTE] = ACTIONS(2812), - [anon_sym_L_DQUOTE] = ACTIONS(2812), - [anon_sym_u_DQUOTE] = ACTIONS(2812), - [anon_sym_U_DQUOTE] = ACTIONS(2812), - [anon_sym_u8_DQUOTE] = ACTIONS(2812), - [anon_sym_DQUOTE] = ACTIONS(2812), - [sym_true] = ACTIONS(2810), - [sym_false] = ACTIONS(2810), - [sym_null] = ACTIONS(2810), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2810), - [anon_sym_decltype] = ACTIONS(2810), - [anon_sym_virtual] = ACTIONS(2810), - [anon_sym_explicit] = ACTIONS(2810), - [anon_sym_typename] = ACTIONS(2810), - [anon_sym_template] = ACTIONS(2810), - [anon_sym_operator] = ACTIONS(2810), - [anon_sym_try] = ACTIONS(2810), - [anon_sym_delete] = ACTIONS(2810), - [anon_sym_throw] = ACTIONS(2810), - [anon_sym_namespace] = ACTIONS(2810), - [anon_sym_using] = ACTIONS(2810), - [anon_sym_static_assert] = ACTIONS(2810), - [anon_sym_concept] = ACTIONS(2810), - [anon_sym_co_return] = ACTIONS(2810), - [anon_sym_co_yield] = ACTIONS(2810), - [anon_sym_R_DQUOTE] = ACTIONS(2812), - [anon_sym_LR_DQUOTE] = ACTIONS(2812), - [anon_sym_uR_DQUOTE] = ACTIONS(2812), - [anon_sym_UR_DQUOTE] = ACTIONS(2812), - [anon_sym_u8R_DQUOTE] = ACTIONS(2812), - [anon_sym_co_await] = ACTIONS(2810), - [anon_sym_new] = ACTIONS(2810), - [anon_sym_requires] = ACTIONS(2810), - [sym_this] = ACTIONS(2810), - [sym_nullptr] = ACTIONS(2810), + [1094] = { + [sym_identifier] = ACTIONS(3101), + [aux_sym_preproc_include_token1] = ACTIONS(3101), + [aux_sym_preproc_def_token1] = ACTIONS(3101), + [aux_sym_preproc_if_token1] = ACTIONS(3101), + [aux_sym_preproc_if_token2] = ACTIONS(3101), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3101), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3101), + [sym_preproc_directive] = ACTIONS(3101), + [anon_sym_LPAREN2] = ACTIONS(3103), + [anon_sym_BANG] = ACTIONS(3103), + [anon_sym_TILDE] = ACTIONS(3103), + [anon_sym_DASH] = ACTIONS(3101), + [anon_sym_PLUS] = ACTIONS(3101), + [anon_sym_STAR] = ACTIONS(3103), + [anon_sym_AMP_AMP] = ACTIONS(3103), + [anon_sym_AMP] = ACTIONS(3101), + [anon_sym_SEMI] = ACTIONS(3103), + [anon_sym_typedef] = ACTIONS(3101), + [anon_sym_extern] = ACTIONS(3101), + [anon_sym___attribute__] = ACTIONS(3101), + [anon_sym_COLON_COLON] = ACTIONS(3103), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3103), + [anon_sym___declspec] = ACTIONS(3101), + [anon_sym___based] = ACTIONS(3101), + [anon_sym___cdecl] = ACTIONS(3101), + [anon_sym___clrcall] = ACTIONS(3101), + [anon_sym___stdcall] = ACTIONS(3101), + [anon_sym___fastcall] = ACTIONS(3101), + [anon_sym___thiscall] = ACTIONS(3101), + [anon_sym___vectorcall] = ACTIONS(3101), + [anon_sym_LBRACE] = ACTIONS(3103), + [anon_sym_LBRACK] = ACTIONS(3101), + [anon_sym_static] = ACTIONS(3101), + [anon_sym_register] = ACTIONS(3101), + [anon_sym_inline] = ACTIONS(3101), + [anon_sym_thread_local] = ACTIONS(3101), + [anon_sym_const] = ACTIONS(3101), + [anon_sym_constexpr] = ACTIONS(3101), + [anon_sym_volatile] = ACTIONS(3101), + [anon_sym_restrict] = ACTIONS(3101), + [anon_sym___restrict__] = ACTIONS(3101), + [anon_sym__Atomic] = ACTIONS(3101), + [anon_sym__Noreturn] = ACTIONS(3101), + [anon_sym_noreturn] = ACTIONS(3101), + [anon_sym_mutable] = ACTIONS(3101), + [anon_sym_constinit] = ACTIONS(3101), + [anon_sym_consteval] = ACTIONS(3101), + [anon_sym_signed] = ACTIONS(3101), + [anon_sym_unsigned] = ACTIONS(3101), + [anon_sym_long] = ACTIONS(3101), + [anon_sym_short] = ACTIONS(3101), + [sym_primitive_type] = ACTIONS(3101), + [anon_sym_enum] = ACTIONS(3101), + [anon_sym_class] = ACTIONS(3101), + [anon_sym_struct] = ACTIONS(3101), + [anon_sym_union] = ACTIONS(3101), + [anon_sym_if] = ACTIONS(3101), + [anon_sym_else] = ACTIONS(3101), + [anon_sym_switch] = ACTIONS(3101), + [anon_sym_case] = ACTIONS(3101), + [anon_sym_default] = ACTIONS(3101), + [anon_sym_while] = ACTIONS(3101), + [anon_sym_do] = ACTIONS(3101), + [anon_sym_for] = ACTIONS(3101), + [anon_sym_return] = ACTIONS(3101), + [anon_sym_break] = ACTIONS(3101), + [anon_sym_continue] = ACTIONS(3101), + [anon_sym_goto] = ACTIONS(3101), + [anon_sym_not] = ACTIONS(3101), + [anon_sym_compl] = ACTIONS(3101), + [anon_sym_DASH_DASH] = ACTIONS(3103), + [anon_sym_PLUS_PLUS] = ACTIONS(3103), + [anon_sym_sizeof] = ACTIONS(3101), + [anon_sym_offsetof] = ACTIONS(3101), + [anon_sym__Generic] = ACTIONS(3101), + [anon_sym_asm] = ACTIONS(3101), + [anon_sym___asm__] = ACTIONS(3101), + [sym_number_literal] = ACTIONS(3103), + [anon_sym_L_SQUOTE] = ACTIONS(3103), + [anon_sym_u_SQUOTE] = ACTIONS(3103), + [anon_sym_U_SQUOTE] = ACTIONS(3103), + [anon_sym_u8_SQUOTE] = ACTIONS(3103), + [anon_sym_SQUOTE] = ACTIONS(3103), + [anon_sym_L_DQUOTE] = ACTIONS(3103), + [anon_sym_u_DQUOTE] = ACTIONS(3103), + [anon_sym_U_DQUOTE] = ACTIONS(3103), + [anon_sym_u8_DQUOTE] = ACTIONS(3103), + [anon_sym_DQUOTE] = ACTIONS(3103), + [sym_true] = ACTIONS(3101), + [sym_false] = ACTIONS(3101), + [anon_sym_NULL] = ACTIONS(3101), + [anon_sym_nullptr] = ACTIONS(3101), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3101), + [anon_sym_decltype] = ACTIONS(3101), + [anon_sym_virtual] = ACTIONS(3101), + [anon_sym_explicit] = ACTIONS(3101), + [anon_sym_typename] = ACTIONS(3101), + [anon_sym_template] = ACTIONS(3101), + [anon_sym_operator] = ACTIONS(3101), + [anon_sym_try] = ACTIONS(3101), + [anon_sym_delete] = ACTIONS(3101), + [anon_sym_throw] = ACTIONS(3101), + [anon_sym_namespace] = ACTIONS(3101), + [anon_sym_using] = ACTIONS(3101), + [anon_sym_static_assert] = ACTIONS(3101), + [anon_sym_concept] = ACTIONS(3101), + [anon_sym_co_return] = ACTIONS(3101), + [anon_sym_co_yield] = ACTIONS(3101), + [anon_sym_R_DQUOTE] = ACTIONS(3103), + [anon_sym_LR_DQUOTE] = ACTIONS(3103), + [anon_sym_uR_DQUOTE] = ACTIONS(3103), + [anon_sym_UR_DQUOTE] = ACTIONS(3103), + [anon_sym_u8R_DQUOTE] = ACTIONS(3103), + [anon_sym_co_await] = ACTIONS(3101), + [anon_sym_new] = ACTIONS(3101), + [anon_sym_requires] = ACTIONS(3101), + [sym_this] = ACTIONS(3101), }, - [1046] = { - [sym_identifier] = ACTIONS(2734), - [aux_sym_preproc_include_token1] = ACTIONS(2734), - [aux_sym_preproc_def_token1] = ACTIONS(2734), - [aux_sym_preproc_if_token1] = ACTIONS(2734), - [aux_sym_preproc_if_token2] = ACTIONS(2734), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2734), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2734), - [sym_preproc_directive] = ACTIONS(2734), - [anon_sym_LPAREN2] = ACTIONS(2736), - [anon_sym_BANG] = ACTIONS(2736), - [anon_sym_TILDE] = ACTIONS(2736), - [anon_sym_DASH] = ACTIONS(2734), - [anon_sym_PLUS] = ACTIONS(2734), - [anon_sym_STAR] = ACTIONS(2736), - [anon_sym_AMP_AMP] = ACTIONS(2736), - [anon_sym_AMP] = ACTIONS(2734), - [anon_sym_SEMI] = ACTIONS(2736), - [anon_sym_typedef] = ACTIONS(2734), - [anon_sym_extern] = ACTIONS(2734), - [anon_sym___attribute__] = ACTIONS(2734), - [anon_sym_COLON_COLON] = ACTIONS(2736), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2736), - [anon_sym___declspec] = ACTIONS(2734), - [anon_sym___based] = ACTIONS(2734), - [anon_sym___cdecl] = ACTIONS(2734), - [anon_sym___clrcall] = ACTIONS(2734), - [anon_sym___stdcall] = ACTIONS(2734), - [anon_sym___fastcall] = ACTIONS(2734), - [anon_sym___thiscall] = ACTIONS(2734), - [anon_sym___vectorcall] = ACTIONS(2734), - [anon_sym_LBRACE] = ACTIONS(2736), - [anon_sym_LBRACK] = ACTIONS(2734), - [anon_sym_static] = ACTIONS(2734), - [anon_sym_register] = ACTIONS(2734), - [anon_sym_inline] = ACTIONS(2734), - [anon_sym_thread_local] = ACTIONS(2734), - [anon_sym_const] = ACTIONS(2734), - [anon_sym_volatile] = ACTIONS(2734), - [anon_sym_restrict] = ACTIONS(2734), - [anon_sym__Atomic] = ACTIONS(2734), - [anon_sym_mutable] = ACTIONS(2734), - [anon_sym_constexpr] = ACTIONS(2734), - [anon_sym_constinit] = ACTIONS(2734), - [anon_sym_consteval] = ACTIONS(2734), - [anon_sym_signed] = ACTIONS(2734), - [anon_sym_unsigned] = ACTIONS(2734), - [anon_sym_long] = ACTIONS(2734), - [anon_sym_short] = ACTIONS(2734), - [sym_primitive_type] = ACTIONS(2734), - [anon_sym_enum] = ACTIONS(2734), - [anon_sym_class] = ACTIONS(2734), - [anon_sym_struct] = ACTIONS(2734), - [anon_sym_union] = ACTIONS(2734), - [anon_sym_if] = ACTIONS(2734), - [anon_sym_switch] = ACTIONS(2734), - [anon_sym_case] = ACTIONS(2734), - [anon_sym_default] = ACTIONS(2734), - [anon_sym_while] = ACTIONS(2734), - [anon_sym_do] = ACTIONS(2734), - [anon_sym_for] = ACTIONS(2734), - [anon_sym_return] = ACTIONS(2734), - [anon_sym_break] = ACTIONS(2734), - [anon_sym_continue] = ACTIONS(2734), - [anon_sym_goto] = ACTIONS(2734), - [anon_sym_not] = ACTIONS(2734), - [anon_sym_compl] = ACTIONS(2734), - [anon_sym_DASH_DASH] = ACTIONS(2736), - [anon_sym_PLUS_PLUS] = ACTIONS(2736), - [anon_sym_sizeof] = ACTIONS(2734), - [sym_number_literal] = ACTIONS(2736), - [anon_sym_L_SQUOTE] = ACTIONS(2736), - [anon_sym_u_SQUOTE] = ACTIONS(2736), - [anon_sym_U_SQUOTE] = ACTIONS(2736), - [anon_sym_u8_SQUOTE] = ACTIONS(2736), - [anon_sym_SQUOTE] = ACTIONS(2736), - [anon_sym_L_DQUOTE] = ACTIONS(2736), - [anon_sym_u_DQUOTE] = ACTIONS(2736), - [anon_sym_U_DQUOTE] = ACTIONS(2736), - [anon_sym_u8_DQUOTE] = ACTIONS(2736), - [anon_sym_DQUOTE] = ACTIONS(2736), - [sym_true] = ACTIONS(2734), - [sym_false] = ACTIONS(2734), - [sym_null] = ACTIONS(2734), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2734), - [anon_sym_decltype] = ACTIONS(2734), - [anon_sym_virtual] = ACTIONS(2734), - [anon_sym_explicit] = ACTIONS(2734), - [anon_sym_typename] = ACTIONS(2734), - [anon_sym_template] = ACTIONS(2734), - [anon_sym_operator] = ACTIONS(2734), - [anon_sym_try] = ACTIONS(2734), - [anon_sym_delete] = ACTIONS(2734), - [anon_sym_throw] = ACTIONS(2734), - [anon_sym_namespace] = ACTIONS(2734), - [anon_sym_using] = ACTIONS(2734), - [anon_sym_static_assert] = ACTIONS(2734), - [anon_sym_concept] = ACTIONS(2734), - [anon_sym_co_return] = ACTIONS(2734), - [anon_sym_co_yield] = ACTIONS(2734), - [anon_sym_R_DQUOTE] = ACTIONS(2736), - [anon_sym_LR_DQUOTE] = ACTIONS(2736), - [anon_sym_uR_DQUOTE] = ACTIONS(2736), - [anon_sym_UR_DQUOTE] = ACTIONS(2736), - [anon_sym_u8R_DQUOTE] = ACTIONS(2736), - [anon_sym_co_await] = ACTIONS(2734), - [anon_sym_new] = ACTIONS(2734), - [anon_sym_requires] = ACTIONS(2734), - [sym_this] = ACTIONS(2734), - [sym_nullptr] = ACTIONS(2734), + [1095] = { + [sym_identifier] = ACTIONS(3105), + [aux_sym_preproc_include_token1] = ACTIONS(3105), + [aux_sym_preproc_def_token1] = ACTIONS(3105), + [aux_sym_preproc_if_token1] = ACTIONS(3105), + [aux_sym_preproc_if_token2] = ACTIONS(3105), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3105), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3105), + [sym_preproc_directive] = ACTIONS(3105), + [anon_sym_LPAREN2] = ACTIONS(3107), + [anon_sym_BANG] = ACTIONS(3107), + [anon_sym_TILDE] = ACTIONS(3107), + [anon_sym_DASH] = ACTIONS(3105), + [anon_sym_PLUS] = ACTIONS(3105), + [anon_sym_STAR] = ACTIONS(3107), + [anon_sym_AMP_AMP] = ACTIONS(3107), + [anon_sym_AMP] = ACTIONS(3105), + [anon_sym_SEMI] = ACTIONS(3107), + [anon_sym_typedef] = ACTIONS(3105), + [anon_sym_extern] = ACTIONS(3105), + [anon_sym___attribute__] = ACTIONS(3105), + [anon_sym_COLON_COLON] = ACTIONS(3107), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3107), + [anon_sym___declspec] = ACTIONS(3105), + [anon_sym___based] = ACTIONS(3105), + [anon_sym___cdecl] = ACTIONS(3105), + [anon_sym___clrcall] = ACTIONS(3105), + [anon_sym___stdcall] = ACTIONS(3105), + [anon_sym___fastcall] = ACTIONS(3105), + [anon_sym___thiscall] = ACTIONS(3105), + [anon_sym___vectorcall] = ACTIONS(3105), + [anon_sym_LBRACE] = ACTIONS(3107), + [anon_sym_LBRACK] = ACTIONS(3105), + [anon_sym_static] = ACTIONS(3105), + [anon_sym_register] = ACTIONS(3105), + [anon_sym_inline] = ACTIONS(3105), + [anon_sym_thread_local] = ACTIONS(3105), + [anon_sym_const] = ACTIONS(3105), + [anon_sym_constexpr] = ACTIONS(3105), + [anon_sym_volatile] = ACTIONS(3105), + [anon_sym_restrict] = ACTIONS(3105), + [anon_sym___restrict__] = ACTIONS(3105), + [anon_sym__Atomic] = ACTIONS(3105), + [anon_sym__Noreturn] = ACTIONS(3105), + [anon_sym_noreturn] = ACTIONS(3105), + [anon_sym_mutable] = ACTIONS(3105), + [anon_sym_constinit] = ACTIONS(3105), + [anon_sym_consteval] = ACTIONS(3105), + [anon_sym_signed] = ACTIONS(3105), + [anon_sym_unsigned] = ACTIONS(3105), + [anon_sym_long] = ACTIONS(3105), + [anon_sym_short] = ACTIONS(3105), + [sym_primitive_type] = ACTIONS(3105), + [anon_sym_enum] = ACTIONS(3105), + [anon_sym_class] = ACTIONS(3105), + [anon_sym_struct] = ACTIONS(3105), + [anon_sym_union] = ACTIONS(3105), + [anon_sym_if] = ACTIONS(3105), + [anon_sym_else] = ACTIONS(3105), + [anon_sym_switch] = ACTIONS(3105), + [anon_sym_case] = ACTIONS(3105), + [anon_sym_default] = ACTIONS(3105), + [anon_sym_while] = ACTIONS(3105), + [anon_sym_do] = ACTIONS(3105), + [anon_sym_for] = ACTIONS(3105), + [anon_sym_return] = ACTIONS(3105), + [anon_sym_break] = ACTIONS(3105), + [anon_sym_continue] = ACTIONS(3105), + [anon_sym_goto] = ACTIONS(3105), + [anon_sym_not] = ACTIONS(3105), + [anon_sym_compl] = ACTIONS(3105), + [anon_sym_DASH_DASH] = ACTIONS(3107), + [anon_sym_PLUS_PLUS] = ACTIONS(3107), + [anon_sym_sizeof] = ACTIONS(3105), + [anon_sym_offsetof] = ACTIONS(3105), + [anon_sym__Generic] = ACTIONS(3105), + [anon_sym_asm] = ACTIONS(3105), + [anon_sym___asm__] = ACTIONS(3105), + [sym_number_literal] = ACTIONS(3107), + [anon_sym_L_SQUOTE] = ACTIONS(3107), + [anon_sym_u_SQUOTE] = ACTIONS(3107), + [anon_sym_U_SQUOTE] = ACTIONS(3107), + [anon_sym_u8_SQUOTE] = ACTIONS(3107), + [anon_sym_SQUOTE] = ACTIONS(3107), + [anon_sym_L_DQUOTE] = ACTIONS(3107), + [anon_sym_u_DQUOTE] = ACTIONS(3107), + [anon_sym_U_DQUOTE] = ACTIONS(3107), + [anon_sym_u8_DQUOTE] = ACTIONS(3107), + [anon_sym_DQUOTE] = ACTIONS(3107), + [sym_true] = ACTIONS(3105), + [sym_false] = ACTIONS(3105), + [anon_sym_NULL] = ACTIONS(3105), + [anon_sym_nullptr] = ACTIONS(3105), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3105), + [anon_sym_decltype] = ACTIONS(3105), + [anon_sym_virtual] = ACTIONS(3105), + [anon_sym_explicit] = ACTIONS(3105), + [anon_sym_typename] = ACTIONS(3105), + [anon_sym_template] = ACTIONS(3105), + [anon_sym_operator] = ACTIONS(3105), + [anon_sym_try] = ACTIONS(3105), + [anon_sym_delete] = ACTIONS(3105), + [anon_sym_throw] = ACTIONS(3105), + [anon_sym_namespace] = ACTIONS(3105), + [anon_sym_using] = ACTIONS(3105), + [anon_sym_static_assert] = ACTIONS(3105), + [anon_sym_concept] = ACTIONS(3105), + [anon_sym_co_return] = ACTIONS(3105), + [anon_sym_co_yield] = ACTIONS(3105), + [anon_sym_R_DQUOTE] = ACTIONS(3107), + [anon_sym_LR_DQUOTE] = ACTIONS(3107), + [anon_sym_uR_DQUOTE] = ACTIONS(3107), + [anon_sym_UR_DQUOTE] = ACTIONS(3107), + [anon_sym_u8R_DQUOTE] = ACTIONS(3107), + [anon_sym_co_await] = ACTIONS(3105), + [anon_sym_new] = ACTIONS(3105), + [anon_sym_requires] = ACTIONS(3105), + [sym_this] = ACTIONS(3105), }, - [1047] = { - [sym_identifier] = ACTIONS(2750), - [aux_sym_preproc_include_token1] = ACTIONS(2750), - [aux_sym_preproc_def_token1] = ACTIONS(2750), - [aux_sym_preproc_if_token1] = ACTIONS(2750), - [aux_sym_preproc_if_token2] = ACTIONS(2750), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2750), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2750), - [sym_preproc_directive] = ACTIONS(2750), - [anon_sym_LPAREN2] = ACTIONS(2752), - [anon_sym_BANG] = ACTIONS(2752), - [anon_sym_TILDE] = ACTIONS(2752), - [anon_sym_DASH] = ACTIONS(2750), - [anon_sym_PLUS] = ACTIONS(2750), - [anon_sym_STAR] = ACTIONS(2752), - [anon_sym_AMP_AMP] = ACTIONS(2752), - [anon_sym_AMP] = ACTIONS(2750), - [anon_sym_SEMI] = ACTIONS(2752), - [anon_sym_typedef] = ACTIONS(2750), - [anon_sym_extern] = ACTIONS(2750), - [anon_sym___attribute__] = ACTIONS(2750), - [anon_sym_COLON_COLON] = ACTIONS(2752), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2752), - [anon_sym___declspec] = ACTIONS(2750), - [anon_sym___based] = ACTIONS(2750), - [anon_sym___cdecl] = ACTIONS(2750), - [anon_sym___clrcall] = ACTIONS(2750), - [anon_sym___stdcall] = ACTIONS(2750), - [anon_sym___fastcall] = ACTIONS(2750), - [anon_sym___thiscall] = ACTIONS(2750), - [anon_sym___vectorcall] = ACTIONS(2750), - [anon_sym_LBRACE] = ACTIONS(2752), - [anon_sym_LBRACK] = ACTIONS(2750), - [anon_sym_static] = ACTIONS(2750), - [anon_sym_register] = ACTIONS(2750), - [anon_sym_inline] = ACTIONS(2750), - [anon_sym_thread_local] = ACTIONS(2750), - [anon_sym_const] = ACTIONS(2750), - [anon_sym_volatile] = ACTIONS(2750), - [anon_sym_restrict] = ACTIONS(2750), - [anon_sym__Atomic] = ACTIONS(2750), - [anon_sym_mutable] = ACTIONS(2750), - [anon_sym_constexpr] = ACTIONS(2750), - [anon_sym_constinit] = ACTIONS(2750), - [anon_sym_consteval] = ACTIONS(2750), - [anon_sym_signed] = ACTIONS(2750), - [anon_sym_unsigned] = ACTIONS(2750), - [anon_sym_long] = ACTIONS(2750), - [anon_sym_short] = ACTIONS(2750), - [sym_primitive_type] = ACTIONS(2750), - [anon_sym_enum] = ACTIONS(2750), - [anon_sym_class] = ACTIONS(2750), - [anon_sym_struct] = ACTIONS(2750), - [anon_sym_union] = ACTIONS(2750), - [anon_sym_if] = ACTIONS(2750), - [anon_sym_switch] = ACTIONS(2750), - [anon_sym_case] = ACTIONS(2750), - [anon_sym_default] = ACTIONS(2750), - [anon_sym_while] = ACTIONS(2750), - [anon_sym_do] = ACTIONS(2750), - [anon_sym_for] = ACTIONS(2750), - [anon_sym_return] = ACTIONS(2750), - [anon_sym_break] = ACTIONS(2750), - [anon_sym_continue] = ACTIONS(2750), - [anon_sym_goto] = ACTIONS(2750), - [anon_sym_not] = ACTIONS(2750), - [anon_sym_compl] = ACTIONS(2750), - [anon_sym_DASH_DASH] = ACTIONS(2752), - [anon_sym_PLUS_PLUS] = ACTIONS(2752), - [anon_sym_sizeof] = ACTIONS(2750), - [sym_number_literal] = ACTIONS(2752), - [anon_sym_L_SQUOTE] = ACTIONS(2752), - [anon_sym_u_SQUOTE] = ACTIONS(2752), - [anon_sym_U_SQUOTE] = ACTIONS(2752), - [anon_sym_u8_SQUOTE] = ACTIONS(2752), - [anon_sym_SQUOTE] = ACTIONS(2752), - [anon_sym_L_DQUOTE] = ACTIONS(2752), - [anon_sym_u_DQUOTE] = ACTIONS(2752), - [anon_sym_U_DQUOTE] = ACTIONS(2752), - [anon_sym_u8_DQUOTE] = ACTIONS(2752), - [anon_sym_DQUOTE] = ACTIONS(2752), - [sym_true] = ACTIONS(2750), - [sym_false] = ACTIONS(2750), - [sym_null] = ACTIONS(2750), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2750), - [anon_sym_decltype] = ACTIONS(2750), - [anon_sym_virtual] = ACTIONS(2750), - [anon_sym_explicit] = ACTIONS(2750), - [anon_sym_typename] = ACTIONS(2750), - [anon_sym_template] = ACTIONS(2750), - [anon_sym_operator] = ACTIONS(2750), - [anon_sym_try] = ACTIONS(2750), - [anon_sym_delete] = ACTIONS(2750), - [anon_sym_throw] = ACTIONS(2750), - [anon_sym_namespace] = ACTIONS(2750), - [anon_sym_using] = ACTIONS(2750), - [anon_sym_static_assert] = ACTIONS(2750), - [anon_sym_concept] = ACTIONS(2750), - [anon_sym_co_return] = ACTIONS(2750), - [anon_sym_co_yield] = ACTIONS(2750), - [anon_sym_R_DQUOTE] = ACTIONS(2752), - [anon_sym_LR_DQUOTE] = ACTIONS(2752), - [anon_sym_uR_DQUOTE] = ACTIONS(2752), - [anon_sym_UR_DQUOTE] = ACTIONS(2752), - [anon_sym_u8R_DQUOTE] = ACTIONS(2752), - [anon_sym_co_await] = ACTIONS(2750), - [anon_sym_new] = ACTIONS(2750), - [anon_sym_requires] = ACTIONS(2750), - [sym_this] = ACTIONS(2750), - [sym_nullptr] = ACTIONS(2750), + [1096] = { + [ts_builtin_sym_end] = ACTIONS(3030), + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, - [1048] = { - [sym_identifier] = ACTIONS(2754), - [aux_sym_preproc_include_token1] = ACTIONS(2754), - [aux_sym_preproc_def_token1] = ACTIONS(2754), - [aux_sym_preproc_if_token1] = ACTIONS(2754), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2754), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2754), - [sym_preproc_directive] = ACTIONS(2754), - [anon_sym_LPAREN2] = ACTIONS(2756), - [anon_sym_BANG] = ACTIONS(2756), - [anon_sym_TILDE] = ACTIONS(2756), - [anon_sym_DASH] = ACTIONS(2754), - [anon_sym_PLUS] = ACTIONS(2754), - [anon_sym_STAR] = ACTIONS(2756), - [anon_sym_AMP_AMP] = ACTIONS(2756), - [anon_sym_AMP] = ACTIONS(2754), - [anon_sym_SEMI] = ACTIONS(2756), - [anon_sym_typedef] = ACTIONS(2754), - [anon_sym_extern] = ACTIONS(2754), - [anon_sym___attribute__] = ACTIONS(2754), - [anon_sym_COLON_COLON] = ACTIONS(2756), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2756), - [anon_sym___declspec] = ACTIONS(2754), - [anon_sym___based] = ACTIONS(2754), - [anon_sym___cdecl] = ACTIONS(2754), - [anon_sym___clrcall] = ACTIONS(2754), - [anon_sym___stdcall] = ACTIONS(2754), - [anon_sym___fastcall] = ACTIONS(2754), - [anon_sym___thiscall] = ACTIONS(2754), - [anon_sym___vectorcall] = ACTIONS(2754), - [anon_sym_LBRACE] = ACTIONS(2756), - [anon_sym_RBRACE] = ACTIONS(2756), - [anon_sym_LBRACK] = ACTIONS(2754), - [anon_sym_static] = ACTIONS(2754), - [anon_sym_register] = ACTIONS(2754), - [anon_sym_inline] = ACTIONS(2754), - [anon_sym_thread_local] = ACTIONS(2754), - [anon_sym_const] = ACTIONS(2754), - [anon_sym_volatile] = ACTIONS(2754), - [anon_sym_restrict] = ACTIONS(2754), - [anon_sym__Atomic] = ACTIONS(2754), - [anon_sym_mutable] = ACTIONS(2754), - [anon_sym_constexpr] = ACTIONS(2754), - [anon_sym_constinit] = ACTIONS(2754), - [anon_sym_consteval] = ACTIONS(2754), - [anon_sym_signed] = ACTIONS(2754), - [anon_sym_unsigned] = ACTIONS(2754), - [anon_sym_long] = ACTIONS(2754), - [anon_sym_short] = ACTIONS(2754), - [sym_primitive_type] = ACTIONS(2754), - [anon_sym_enum] = ACTIONS(2754), - [anon_sym_class] = ACTIONS(2754), - [anon_sym_struct] = ACTIONS(2754), - [anon_sym_union] = ACTIONS(2754), - [anon_sym_if] = ACTIONS(2754), - [anon_sym_switch] = ACTIONS(2754), - [anon_sym_case] = ACTIONS(2754), - [anon_sym_default] = ACTIONS(2754), - [anon_sym_while] = ACTIONS(2754), - [anon_sym_do] = ACTIONS(2754), - [anon_sym_for] = ACTIONS(2754), - [anon_sym_return] = ACTIONS(2754), - [anon_sym_break] = ACTIONS(2754), - [anon_sym_continue] = ACTIONS(2754), - [anon_sym_goto] = ACTIONS(2754), - [anon_sym_not] = ACTIONS(2754), - [anon_sym_compl] = ACTIONS(2754), - [anon_sym_DASH_DASH] = ACTIONS(2756), - [anon_sym_PLUS_PLUS] = ACTIONS(2756), - [anon_sym_sizeof] = ACTIONS(2754), - [sym_number_literal] = ACTIONS(2756), - [anon_sym_L_SQUOTE] = ACTIONS(2756), - [anon_sym_u_SQUOTE] = ACTIONS(2756), - [anon_sym_U_SQUOTE] = ACTIONS(2756), - [anon_sym_u8_SQUOTE] = ACTIONS(2756), - [anon_sym_SQUOTE] = ACTIONS(2756), - [anon_sym_L_DQUOTE] = ACTIONS(2756), - [anon_sym_u_DQUOTE] = ACTIONS(2756), - [anon_sym_U_DQUOTE] = ACTIONS(2756), - [anon_sym_u8_DQUOTE] = ACTIONS(2756), - [anon_sym_DQUOTE] = ACTIONS(2756), - [sym_true] = ACTIONS(2754), - [sym_false] = ACTIONS(2754), - [sym_null] = ACTIONS(2754), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2754), - [anon_sym_decltype] = ACTIONS(2754), - [anon_sym_virtual] = ACTIONS(2754), - [anon_sym_explicit] = ACTIONS(2754), - [anon_sym_typename] = ACTIONS(2754), - [anon_sym_template] = ACTIONS(2754), - [anon_sym_operator] = ACTIONS(2754), - [anon_sym_try] = ACTIONS(2754), - [anon_sym_delete] = ACTIONS(2754), - [anon_sym_throw] = ACTIONS(2754), - [anon_sym_namespace] = ACTIONS(2754), - [anon_sym_using] = ACTIONS(2754), - [anon_sym_static_assert] = ACTIONS(2754), - [anon_sym_concept] = ACTIONS(2754), - [anon_sym_co_return] = ACTIONS(2754), - [anon_sym_co_yield] = ACTIONS(2754), - [anon_sym_R_DQUOTE] = ACTIONS(2756), - [anon_sym_LR_DQUOTE] = ACTIONS(2756), - [anon_sym_uR_DQUOTE] = ACTIONS(2756), - [anon_sym_UR_DQUOTE] = ACTIONS(2756), - [anon_sym_u8R_DQUOTE] = ACTIONS(2756), - [anon_sym_co_await] = ACTIONS(2754), - [anon_sym_new] = ACTIONS(2754), - [anon_sym_requires] = ACTIONS(2754), - [sym_this] = ACTIONS(2754), - [sym_nullptr] = ACTIONS(2754), + [1097] = { + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token2] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, - [1049] = { - [sym_identifier] = ACTIONS(2738), - [aux_sym_preproc_include_token1] = ACTIONS(2738), - [aux_sym_preproc_def_token1] = ACTIONS(2738), - [aux_sym_preproc_if_token1] = ACTIONS(2738), - [aux_sym_preproc_if_token2] = ACTIONS(2738), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2738), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2738), - [sym_preproc_directive] = ACTIONS(2738), - [anon_sym_LPAREN2] = ACTIONS(2740), - [anon_sym_BANG] = ACTIONS(2740), - [anon_sym_TILDE] = ACTIONS(2740), - [anon_sym_DASH] = ACTIONS(2738), - [anon_sym_PLUS] = ACTIONS(2738), - [anon_sym_STAR] = ACTIONS(2740), - [anon_sym_AMP_AMP] = ACTIONS(2740), - [anon_sym_AMP] = ACTIONS(2738), - [anon_sym_SEMI] = ACTIONS(2740), - [anon_sym_typedef] = ACTIONS(2738), - [anon_sym_extern] = ACTIONS(2738), - [anon_sym___attribute__] = ACTIONS(2738), - [anon_sym_COLON_COLON] = ACTIONS(2740), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2740), - [anon_sym___declspec] = ACTIONS(2738), - [anon_sym___based] = ACTIONS(2738), - [anon_sym___cdecl] = ACTIONS(2738), - [anon_sym___clrcall] = ACTIONS(2738), - [anon_sym___stdcall] = ACTIONS(2738), - [anon_sym___fastcall] = ACTIONS(2738), - [anon_sym___thiscall] = ACTIONS(2738), - [anon_sym___vectorcall] = ACTIONS(2738), - [anon_sym_LBRACE] = ACTIONS(2740), - [anon_sym_LBRACK] = ACTIONS(2738), - [anon_sym_static] = ACTIONS(2738), - [anon_sym_register] = ACTIONS(2738), - [anon_sym_inline] = ACTIONS(2738), - [anon_sym_thread_local] = ACTIONS(2738), - [anon_sym_const] = ACTIONS(2738), - [anon_sym_volatile] = ACTIONS(2738), - [anon_sym_restrict] = ACTIONS(2738), - [anon_sym__Atomic] = ACTIONS(2738), - [anon_sym_mutable] = ACTIONS(2738), - [anon_sym_constexpr] = ACTIONS(2738), - [anon_sym_constinit] = ACTIONS(2738), - [anon_sym_consteval] = ACTIONS(2738), - [anon_sym_signed] = ACTIONS(2738), - [anon_sym_unsigned] = ACTIONS(2738), - [anon_sym_long] = ACTIONS(2738), - [anon_sym_short] = ACTIONS(2738), - [sym_primitive_type] = ACTIONS(2738), - [anon_sym_enum] = ACTIONS(2738), - [anon_sym_class] = ACTIONS(2738), - [anon_sym_struct] = ACTIONS(2738), - [anon_sym_union] = ACTIONS(2738), - [anon_sym_if] = ACTIONS(2738), - [anon_sym_switch] = ACTIONS(2738), - [anon_sym_case] = ACTIONS(2738), - [anon_sym_default] = ACTIONS(2738), - [anon_sym_while] = ACTIONS(2738), - [anon_sym_do] = ACTIONS(2738), - [anon_sym_for] = ACTIONS(2738), - [anon_sym_return] = ACTIONS(2738), - [anon_sym_break] = ACTIONS(2738), - [anon_sym_continue] = ACTIONS(2738), - [anon_sym_goto] = ACTIONS(2738), - [anon_sym_not] = ACTIONS(2738), - [anon_sym_compl] = ACTIONS(2738), - [anon_sym_DASH_DASH] = ACTIONS(2740), - [anon_sym_PLUS_PLUS] = ACTIONS(2740), - [anon_sym_sizeof] = ACTIONS(2738), - [sym_number_literal] = ACTIONS(2740), - [anon_sym_L_SQUOTE] = ACTIONS(2740), - [anon_sym_u_SQUOTE] = ACTIONS(2740), - [anon_sym_U_SQUOTE] = ACTIONS(2740), - [anon_sym_u8_SQUOTE] = ACTIONS(2740), - [anon_sym_SQUOTE] = ACTIONS(2740), - [anon_sym_L_DQUOTE] = ACTIONS(2740), - [anon_sym_u_DQUOTE] = ACTIONS(2740), - [anon_sym_U_DQUOTE] = ACTIONS(2740), - [anon_sym_u8_DQUOTE] = ACTIONS(2740), - [anon_sym_DQUOTE] = ACTIONS(2740), - [sym_true] = ACTIONS(2738), - [sym_false] = ACTIONS(2738), - [sym_null] = ACTIONS(2738), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2738), - [anon_sym_decltype] = ACTIONS(2738), - [anon_sym_virtual] = ACTIONS(2738), - [anon_sym_explicit] = ACTIONS(2738), - [anon_sym_typename] = ACTIONS(2738), - [anon_sym_template] = ACTIONS(2738), - [anon_sym_operator] = ACTIONS(2738), - [anon_sym_try] = ACTIONS(2738), - [anon_sym_delete] = ACTIONS(2738), - [anon_sym_throw] = ACTIONS(2738), - [anon_sym_namespace] = ACTIONS(2738), - [anon_sym_using] = ACTIONS(2738), - [anon_sym_static_assert] = ACTIONS(2738), - [anon_sym_concept] = ACTIONS(2738), - [anon_sym_co_return] = ACTIONS(2738), - [anon_sym_co_yield] = ACTIONS(2738), - [anon_sym_R_DQUOTE] = ACTIONS(2740), - [anon_sym_LR_DQUOTE] = ACTIONS(2740), - [anon_sym_uR_DQUOTE] = ACTIONS(2740), - [anon_sym_UR_DQUOTE] = ACTIONS(2740), - [anon_sym_u8R_DQUOTE] = ACTIONS(2740), - [anon_sym_co_await] = ACTIONS(2738), - [anon_sym_new] = ACTIONS(2738), - [anon_sym_requires] = ACTIONS(2738), - [sym_this] = ACTIONS(2738), - [sym_nullptr] = ACTIONS(2738), + [1098] = { + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token2] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, - [1050] = { - [ts_builtin_sym_end] = ACTIONS(2692), - [sym_identifier] = ACTIONS(2690), - [aux_sym_preproc_include_token1] = ACTIONS(2690), - [aux_sym_preproc_def_token1] = ACTIONS(2690), - [aux_sym_preproc_if_token1] = ACTIONS(2690), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2690), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2690), - [sym_preproc_directive] = ACTIONS(2690), - [anon_sym_LPAREN2] = ACTIONS(2692), - [anon_sym_BANG] = ACTIONS(2692), - [anon_sym_TILDE] = ACTIONS(2692), - [anon_sym_DASH] = ACTIONS(2690), - [anon_sym_PLUS] = ACTIONS(2690), - [anon_sym_STAR] = ACTIONS(2692), - [anon_sym_AMP_AMP] = ACTIONS(2692), - [anon_sym_AMP] = ACTIONS(2690), - [anon_sym_SEMI] = ACTIONS(2692), - [anon_sym_typedef] = ACTIONS(2690), - [anon_sym_extern] = ACTIONS(2690), - [anon_sym___attribute__] = ACTIONS(2690), - [anon_sym_COLON_COLON] = ACTIONS(2692), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2692), - [anon_sym___declspec] = ACTIONS(2690), - [anon_sym___based] = ACTIONS(2690), - [anon_sym___cdecl] = ACTIONS(2690), - [anon_sym___clrcall] = ACTIONS(2690), - [anon_sym___stdcall] = ACTIONS(2690), - [anon_sym___fastcall] = ACTIONS(2690), - [anon_sym___thiscall] = ACTIONS(2690), - [anon_sym___vectorcall] = ACTIONS(2690), - [anon_sym_LBRACE] = ACTIONS(2692), - [anon_sym_LBRACK] = ACTIONS(2690), - [anon_sym_static] = ACTIONS(2690), - [anon_sym_register] = ACTIONS(2690), - [anon_sym_inline] = ACTIONS(2690), - [anon_sym_thread_local] = ACTIONS(2690), - [anon_sym_const] = ACTIONS(2690), - [anon_sym_volatile] = ACTIONS(2690), - [anon_sym_restrict] = ACTIONS(2690), - [anon_sym__Atomic] = ACTIONS(2690), - [anon_sym_mutable] = ACTIONS(2690), - [anon_sym_constexpr] = ACTIONS(2690), - [anon_sym_constinit] = ACTIONS(2690), - [anon_sym_consteval] = ACTIONS(2690), - [anon_sym_signed] = ACTIONS(2690), - [anon_sym_unsigned] = ACTIONS(2690), - [anon_sym_long] = ACTIONS(2690), - [anon_sym_short] = ACTIONS(2690), - [sym_primitive_type] = ACTIONS(2690), - [anon_sym_enum] = ACTIONS(2690), - [anon_sym_class] = ACTIONS(2690), - [anon_sym_struct] = ACTIONS(2690), - [anon_sym_union] = ACTIONS(2690), - [anon_sym_if] = ACTIONS(2690), - [anon_sym_switch] = ACTIONS(2690), - [anon_sym_case] = ACTIONS(2690), - [anon_sym_default] = ACTIONS(2690), - [anon_sym_while] = ACTIONS(2690), - [anon_sym_do] = ACTIONS(2690), - [anon_sym_for] = ACTIONS(2690), - [anon_sym_return] = ACTIONS(2690), - [anon_sym_break] = ACTIONS(2690), - [anon_sym_continue] = ACTIONS(2690), - [anon_sym_goto] = ACTIONS(2690), - [anon_sym_not] = ACTIONS(2690), - [anon_sym_compl] = ACTIONS(2690), - [anon_sym_DASH_DASH] = ACTIONS(2692), - [anon_sym_PLUS_PLUS] = ACTIONS(2692), - [anon_sym_sizeof] = ACTIONS(2690), - [sym_number_literal] = ACTIONS(2692), - [anon_sym_L_SQUOTE] = ACTIONS(2692), - [anon_sym_u_SQUOTE] = ACTIONS(2692), - [anon_sym_U_SQUOTE] = ACTIONS(2692), - [anon_sym_u8_SQUOTE] = ACTIONS(2692), - [anon_sym_SQUOTE] = ACTIONS(2692), - [anon_sym_L_DQUOTE] = ACTIONS(2692), - [anon_sym_u_DQUOTE] = ACTIONS(2692), - [anon_sym_U_DQUOTE] = ACTIONS(2692), - [anon_sym_u8_DQUOTE] = ACTIONS(2692), - [anon_sym_DQUOTE] = ACTIONS(2692), - [sym_true] = ACTIONS(2690), - [sym_false] = ACTIONS(2690), - [sym_null] = ACTIONS(2690), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2690), - [anon_sym_decltype] = ACTIONS(2690), - [anon_sym_virtual] = ACTIONS(2690), - [anon_sym_explicit] = ACTIONS(2690), - [anon_sym_typename] = ACTIONS(2690), - [anon_sym_template] = ACTIONS(2690), - [anon_sym_operator] = ACTIONS(2690), - [anon_sym_try] = ACTIONS(2690), - [anon_sym_delete] = ACTIONS(2690), - [anon_sym_throw] = ACTIONS(2690), - [anon_sym_namespace] = ACTIONS(2690), - [anon_sym_using] = ACTIONS(2690), - [anon_sym_static_assert] = ACTIONS(2690), - [anon_sym_concept] = ACTIONS(2690), - [anon_sym_co_return] = ACTIONS(2690), - [anon_sym_co_yield] = ACTIONS(2690), - [anon_sym_R_DQUOTE] = ACTIONS(2692), - [anon_sym_LR_DQUOTE] = ACTIONS(2692), - [anon_sym_uR_DQUOTE] = ACTIONS(2692), - [anon_sym_UR_DQUOTE] = ACTIONS(2692), - [anon_sym_u8R_DQUOTE] = ACTIONS(2692), - [anon_sym_co_await] = ACTIONS(2690), - [anon_sym_new] = ACTIONS(2690), - [anon_sym_requires] = ACTIONS(2690), - [sym_this] = ACTIONS(2690), - [sym_nullptr] = ACTIONS(2690), + [1099] = { + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token2] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, - [1051] = { - [ts_builtin_sym_end] = ACTIONS(2906), - [sym_identifier] = ACTIONS(2904), - [aux_sym_preproc_include_token1] = ACTIONS(2904), - [aux_sym_preproc_def_token1] = ACTIONS(2904), - [aux_sym_preproc_if_token1] = ACTIONS(2904), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2904), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2904), - [sym_preproc_directive] = ACTIONS(2904), - [anon_sym_LPAREN2] = ACTIONS(2906), - [anon_sym_BANG] = ACTIONS(2906), - [anon_sym_TILDE] = ACTIONS(2906), - [anon_sym_DASH] = ACTIONS(2904), - [anon_sym_PLUS] = ACTIONS(2904), - [anon_sym_STAR] = ACTIONS(2906), - [anon_sym_AMP_AMP] = ACTIONS(2906), - [anon_sym_AMP] = ACTIONS(2904), - [anon_sym_SEMI] = ACTIONS(2906), - [anon_sym_typedef] = ACTIONS(2904), - [anon_sym_extern] = ACTIONS(2904), - [anon_sym___attribute__] = ACTIONS(2904), - [anon_sym_COLON_COLON] = ACTIONS(2906), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2906), - [anon_sym___declspec] = ACTIONS(2904), - [anon_sym___based] = ACTIONS(2904), - [anon_sym___cdecl] = ACTIONS(2904), - [anon_sym___clrcall] = ACTIONS(2904), - [anon_sym___stdcall] = ACTIONS(2904), - [anon_sym___fastcall] = ACTIONS(2904), - [anon_sym___thiscall] = ACTIONS(2904), - [anon_sym___vectorcall] = ACTIONS(2904), - [anon_sym_LBRACE] = ACTIONS(2906), - [anon_sym_LBRACK] = ACTIONS(2904), - [anon_sym_static] = ACTIONS(2904), - [anon_sym_register] = ACTIONS(2904), - [anon_sym_inline] = ACTIONS(2904), - [anon_sym_thread_local] = ACTIONS(2904), - [anon_sym_const] = ACTIONS(2904), - [anon_sym_volatile] = ACTIONS(2904), - [anon_sym_restrict] = ACTIONS(2904), - [anon_sym__Atomic] = ACTIONS(2904), - [anon_sym_mutable] = ACTIONS(2904), - [anon_sym_constexpr] = ACTIONS(2904), - [anon_sym_constinit] = ACTIONS(2904), - [anon_sym_consteval] = ACTIONS(2904), - [anon_sym_signed] = ACTIONS(2904), - [anon_sym_unsigned] = ACTIONS(2904), - [anon_sym_long] = ACTIONS(2904), - [anon_sym_short] = ACTIONS(2904), - [sym_primitive_type] = ACTIONS(2904), - [anon_sym_enum] = ACTIONS(2904), - [anon_sym_class] = ACTIONS(2904), - [anon_sym_struct] = ACTIONS(2904), - [anon_sym_union] = ACTIONS(2904), - [anon_sym_if] = ACTIONS(2904), - [anon_sym_switch] = ACTIONS(2904), - [anon_sym_case] = ACTIONS(2904), - [anon_sym_default] = ACTIONS(2904), - [anon_sym_while] = ACTIONS(2904), - [anon_sym_do] = ACTIONS(2904), - [anon_sym_for] = ACTIONS(2904), - [anon_sym_return] = ACTIONS(2904), - [anon_sym_break] = ACTIONS(2904), - [anon_sym_continue] = ACTIONS(2904), - [anon_sym_goto] = ACTIONS(2904), - [anon_sym_not] = ACTIONS(2904), - [anon_sym_compl] = ACTIONS(2904), - [anon_sym_DASH_DASH] = ACTIONS(2906), - [anon_sym_PLUS_PLUS] = ACTIONS(2906), - [anon_sym_sizeof] = ACTIONS(2904), - [sym_number_literal] = ACTIONS(2906), - [anon_sym_L_SQUOTE] = ACTIONS(2906), - [anon_sym_u_SQUOTE] = ACTIONS(2906), - [anon_sym_U_SQUOTE] = ACTIONS(2906), - [anon_sym_u8_SQUOTE] = ACTIONS(2906), - [anon_sym_SQUOTE] = ACTIONS(2906), - [anon_sym_L_DQUOTE] = ACTIONS(2906), - [anon_sym_u_DQUOTE] = ACTIONS(2906), - [anon_sym_U_DQUOTE] = ACTIONS(2906), - [anon_sym_u8_DQUOTE] = ACTIONS(2906), - [anon_sym_DQUOTE] = ACTIONS(2906), - [sym_true] = ACTIONS(2904), - [sym_false] = ACTIONS(2904), - [sym_null] = ACTIONS(2904), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2904), - [anon_sym_decltype] = ACTIONS(2904), - [anon_sym_virtual] = ACTIONS(2904), - [anon_sym_explicit] = ACTIONS(2904), - [anon_sym_typename] = ACTIONS(2904), - [anon_sym_template] = ACTIONS(2904), - [anon_sym_operator] = ACTIONS(2904), - [anon_sym_try] = ACTIONS(2904), - [anon_sym_delete] = ACTIONS(2904), - [anon_sym_throw] = ACTIONS(2904), - [anon_sym_namespace] = ACTIONS(2904), - [anon_sym_using] = ACTIONS(2904), - [anon_sym_static_assert] = ACTIONS(2904), - [anon_sym_concept] = ACTIONS(2904), - [anon_sym_co_return] = ACTIONS(2904), - [anon_sym_co_yield] = ACTIONS(2904), - [anon_sym_R_DQUOTE] = ACTIONS(2906), - [anon_sym_LR_DQUOTE] = ACTIONS(2906), - [anon_sym_uR_DQUOTE] = ACTIONS(2906), - [anon_sym_UR_DQUOTE] = ACTIONS(2906), - [anon_sym_u8R_DQUOTE] = ACTIONS(2906), - [anon_sym_co_await] = ACTIONS(2904), - [anon_sym_new] = ACTIONS(2904), - [anon_sym_requires] = ACTIONS(2904), - [sym_this] = ACTIONS(2904), - [sym_nullptr] = ACTIONS(2904), + [1100] = { + [ts_builtin_sym_end] = ACTIONS(3030), + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, - [1052] = { - [sym_identifier] = ACTIONS(2686), - [aux_sym_preproc_include_token1] = ACTIONS(2686), - [aux_sym_preproc_def_token1] = ACTIONS(2686), - [aux_sym_preproc_if_token1] = ACTIONS(2686), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2686), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2686), - [sym_preproc_directive] = ACTIONS(2686), - [anon_sym_LPAREN2] = ACTIONS(2688), - [anon_sym_BANG] = ACTIONS(2688), - [anon_sym_TILDE] = ACTIONS(2688), - [anon_sym_DASH] = ACTIONS(2686), - [anon_sym_PLUS] = ACTIONS(2686), - [anon_sym_STAR] = ACTIONS(2688), - [anon_sym_AMP_AMP] = ACTIONS(2688), - [anon_sym_AMP] = ACTIONS(2686), - [anon_sym_SEMI] = ACTIONS(2688), - [anon_sym_typedef] = ACTIONS(2686), - [anon_sym_extern] = ACTIONS(2686), - [anon_sym___attribute__] = ACTIONS(2686), - [anon_sym_COLON_COLON] = ACTIONS(2688), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2688), - [anon_sym___declspec] = ACTIONS(2686), - [anon_sym___based] = ACTIONS(2686), - [anon_sym___cdecl] = ACTIONS(2686), - [anon_sym___clrcall] = ACTIONS(2686), - [anon_sym___stdcall] = ACTIONS(2686), - [anon_sym___fastcall] = ACTIONS(2686), - [anon_sym___thiscall] = ACTIONS(2686), - [anon_sym___vectorcall] = ACTIONS(2686), - [anon_sym_LBRACE] = ACTIONS(2688), - [anon_sym_RBRACE] = ACTIONS(2688), - [anon_sym_LBRACK] = ACTIONS(2686), - [anon_sym_static] = ACTIONS(2686), - [anon_sym_register] = ACTIONS(2686), - [anon_sym_inline] = ACTIONS(2686), - [anon_sym_thread_local] = ACTIONS(2686), - [anon_sym_const] = ACTIONS(2686), - [anon_sym_volatile] = ACTIONS(2686), - [anon_sym_restrict] = ACTIONS(2686), - [anon_sym__Atomic] = ACTIONS(2686), - [anon_sym_mutable] = ACTIONS(2686), - [anon_sym_constexpr] = ACTIONS(2686), - [anon_sym_constinit] = ACTIONS(2686), - [anon_sym_consteval] = ACTIONS(2686), - [anon_sym_signed] = ACTIONS(2686), - [anon_sym_unsigned] = ACTIONS(2686), - [anon_sym_long] = ACTIONS(2686), - [anon_sym_short] = ACTIONS(2686), - [sym_primitive_type] = ACTIONS(2686), - [anon_sym_enum] = ACTIONS(2686), - [anon_sym_class] = ACTIONS(2686), - [anon_sym_struct] = ACTIONS(2686), - [anon_sym_union] = ACTIONS(2686), - [anon_sym_if] = ACTIONS(2686), - [anon_sym_switch] = ACTIONS(2686), - [anon_sym_case] = ACTIONS(2686), - [anon_sym_default] = ACTIONS(2686), - [anon_sym_while] = ACTIONS(2686), - [anon_sym_do] = ACTIONS(2686), - [anon_sym_for] = ACTIONS(2686), - [anon_sym_return] = ACTIONS(2686), - [anon_sym_break] = ACTIONS(2686), - [anon_sym_continue] = ACTIONS(2686), - [anon_sym_goto] = ACTIONS(2686), - [anon_sym_not] = ACTIONS(2686), - [anon_sym_compl] = ACTIONS(2686), - [anon_sym_DASH_DASH] = ACTIONS(2688), - [anon_sym_PLUS_PLUS] = ACTIONS(2688), - [anon_sym_sizeof] = ACTIONS(2686), - [sym_number_literal] = ACTIONS(2688), - [anon_sym_L_SQUOTE] = ACTIONS(2688), - [anon_sym_u_SQUOTE] = ACTIONS(2688), - [anon_sym_U_SQUOTE] = ACTIONS(2688), - [anon_sym_u8_SQUOTE] = ACTIONS(2688), - [anon_sym_SQUOTE] = ACTIONS(2688), - [anon_sym_L_DQUOTE] = ACTIONS(2688), - [anon_sym_u_DQUOTE] = ACTIONS(2688), - [anon_sym_U_DQUOTE] = ACTIONS(2688), - [anon_sym_u8_DQUOTE] = ACTIONS(2688), - [anon_sym_DQUOTE] = ACTIONS(2688), - [sym_true] = ACTIONS(2686), - [sym_false] = ACTIONS(2686), - [sym_null] = ACTIONS(2686), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2686), - [anon_sym_decltype] = ACTIONS(2686), - [anon_sym_virtual] = ACTIONS(2686), - [anon_sym_explicit] = ACTIONS(2686), - [anon_sym_typename] = ACTIONS(2686), - [anon_sym_template] = ACTIONS(2686), - [anon_sym_operator] = ACTIONS(2686), - [anon_sym_try] = ACTIONS(2686), - [anon_sym_delete] = ACTIONS(2686), - [anon_sym_throw] = ACTIONS(2686), - [anon_sym_namespace] = ACTIONS(2686), - [anon_sym_using] = ACTIONS(2686), - [anon_sym_static_assert] = ACTIONS(2686), - [anon_sym_concept] = ACTIONS(2686), - [anon_sym_co_return] = ACTIONS(2686), - [anon_sym_co_yield] = ACTIONS(2686), - [anon_sym_R_DQUOTE] = ACTIONS(2688), - [anon_sym_LR_DQUOTE] = ACTIONS(2688), - [anon_sym_uR_DQUOTE] = ACTIONS(2688), - [anon_sym_UR_DQUOTE] = ACTIONS(2688), - [anon_sym_u8R_DQUOTE] = ACTIONS(2688), - [anon_sym_co_await] = ACTIONS(2686), - [anon_sym_new] = ACTIONS(2686), - [anon_sym_requires] = ACTIONS(2686), - [sym_this] = ACTIONS(2686), - [sym_nullptr] = ACTIONS(2686), + [1101] = { + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token2] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, - [1053] = { - [sym_identifier] = ACTIONS(2726), - [aux_sym_preproc_include_token1] = ACTIONS(2726), - [aux_sym_preproc_def_token1] = ACTIONS(2726), - [aux_sym_preproc_if_token1] = ACTIONS(2726), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2726), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2726), - [sym_preproc_directive] = ACTIONS(2726), - [anon_sym_LPAREN2] = ACTIONS(2728), - [anon_sym_BANG] = ACTIONS(2728), - [anon_sym_TILDE] = ACTIONS(2728), - [anon_sym_DASH] = ACTIONS(2726), - [anon_sym_PLUS] = ACTIONS(2726), - [anon_sym_STAR] = ACTIONS(2728), - [anon_sym_AMP_AMP] = ACTIONS(2728), - [anon_sym_AMP] = ACTIONS(2726), - [anon_sym_SEMI] = ACTIONS(2728), - [anon_sym_typedef] = ACTIONS(2726), - [anon_sym_extern] = ACTIONS(2726), - [anon_sym___attribute__] = ACTIONS(2726), - [anon_sym_COLON_COLON] = ACTIONS(2728), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2728), - [anon_sym___declspec] = ACTIONS(2726), - [anon_sym___based] = ACTIONS(2726), - [anon_sym___cdecl] = ACTIONS(2726), - [anon_sym___clrcall] = ACTIONS(2726), - [anon_sym___stdcall] = ACTIONS(2726), - [anon_sym___fastcall] = ACTIONS(2726), - [anon_sym___thiscall] = ACTIONS(2726), - [anon_sym___vectorcall] = ACTIONS(2726), - [anon_sym_LBRACE] = ACTIONS(2728), - [anon_sym_RBRACE] = ACTIONS(2728), - [anon_sym_LBRACK] = ACTIONS(2726), - [anon_sym_static] = ACTIONS(2726), - [anon_sym_register] = ACTIONS(2726), - [anon_sym_inline] = ACTIONS(2726), - [anon_sym_thread_local] = ACTIONS(2726), - [anon_sym_const] = ACTIONS(2726), - [anon_sym_volatile] = ACTIONS(2726), - [anon_sym_restrict] = ACTIONS(2726), - [anon_sym__Atomic] = ACTIONS(2726), - [anon_sym_mutable] = ACTIONS(2726), - [anon_sym_constexpr] = ACTIONS(2726), - [anon_sym_constinit] = ACTIONS(2726), - [anon_sym_consteval] = ACTIONS(2726), - [anon_sym_signed] = ACTIONS(2726), - [anon_sym_unsigned] = ACTIONS(2726), - [anon_sym_long] = ACTIONS(2726), - [anon_sym_short] = ACTIONS(2726), - [sym_primitive_type] = ACTIONS(2726), - [anon_sym_enum] = ACTIONS(2726), - [anon_sym_class] = ACTIONS(2726), - [anon_sym_struct] = ACTIONS(2726), - [anon_sym_union] = ACTIONS(2726), - [anon_sym_if] = ACTIONS(2726), - [anon_sym_switch] = ACTIONS(2726), - [anon_sym_case] = ACTIONS(2726), - [anon_sym_default] = ACTIONS(2726), - [anon_sym_while] = ACTIONS(2726), - [anon_sym_do] = ACTIONS(2726), - [anon_sym_for] = ACTIONS(2726), - [anon_sym_return] = ACTIONS(2726), - [anon_sym_break] = ACTIONS(2726), - [anon_sym_continue] = ACTIONS(2726), - [anon_sym_goto] = ACTIONS(2726), - [anon_sym_not] = ACTIONS(2726), - [anon_sym_compl] = ACTIONS(2726), - [anon_sym_DASH_DASH] = ACTIONS(2728), - [anon_sym_PLUS_PLUS] = ACTIONS(2728), - [anon_sym_sizeof] = ACTIONS(2726), - [sym_number_literal] = ACTIONS(2728), - [anon_sym_L_SQUOTE] = ACTIONS(2728), - [anon_sym_u_SQUOTE] = ACTIONS(2728), - [anon_sym_U_SQUOTE] = ACTIONS(2728), - [anon_sym_u8_SQUOTE] = ACTIONS(2728), - [anon_sym_SQUOTE] = ACTIONS(2728), - [anon_sym_L_DQUOTE] = ACTIONS(2728), - [anon_sym_u_DQUOTE] = ACTIONS(2728), - [anon_sym_U_DQUOTE] = ACTIONS(2728), - [anon_sym_u8_DQUOTE] = ACTIONS(2728), - [anon_sym_DQUOTE] = ACTIONS(2728), - [sym_true] = ACTIONS(2726), - [sym_false] = ACTIONS(2726), - [sym_null] = ACTIONS(2726), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2726), - [anon_sym_decltype] = ACTIONS(2726), - [anon_sym_virtual] = ACTIONS(2726), - [anon_sym_explicit] = ACTIONS(2726), - [anon_sym_typename] = ACTIONS(2726), - [anon_sym_template] = ACTIONS(2726), - [anon_sym_operator] = ACTIONS(2726), - [anon_sym_try] = ACTIONS(2726), - [anon_sym_delete] = ACTIONS(2726), - [anon_sym_throw] = ACTIONS(2726), - [anon_sym_namespace] = ACTIONS(2726), - [anon_sym_using] = ACTIONS(2726), - [anon_sym_static_assert] = ACTIONS(2726), - [anon_sym_concept] = ACTIONS(2726), - [anon_sym_co_return] = ACTIONS(2726), - [anon_sym_co_yield] = ACTIONS(2726), - [anon_sym_R_DQUOTE] = ACTIONS(2728), - [anon_sym_LR_DQUOTE] = ACTIONS(2728), - [anon_sym_uR_DQUOTE] = ACTIONS(2728), - [anon_sym_UR_DQUOTE] = ACTIONS(2728), - [anon_sym_u8R_DQUOTE] = ACTIONS(2728), - [anon_sym_co_await] = ACTIONS(2726), - [anon_sym_new] = ACTIONS(2726), - [anon_sym_requires] = ACTIONS(2726), - [sym_this] = ACTIONS(2726), - [sym_nullptr] = ACTIONS(2726), + [1102] = { + [ts_builtin_sym_end] = ACTIONS(2964), + [sym_identifier] = ACTIONS(2962), + [aux_sym_preproc_include_token1] = ACTIONS(2962), + [aux_sym_preproc_def_token1] = ACTIONS(2962), + [aux_sym_preproc_if_token1] = ACTIONS(2962), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2962), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2962), + [sym_preproc_directive] = ACTIONS(2962), + [anon_sym_LPAREN2] = ACTIONS(2964), + [anon_sym_BANG] = ACTIONS(2964), + [anon_sym_TILDE] = ACTIONS(2964), + [anon_sym_DASH] = ACTIONS(2962), + [anon_sym_PLUS] = ACTIONS(2962), + [anon_sym_STAR] = ACTIONS(2964), + [anon_sym_AMP_AMP] = ACTIONS(2964), + [anon_sym_AMP] = ACTIONS(2962), + [anon_sym_SEMI] = ACTIONS(2964), + [anon_sym_typedef] = ACTIONS(2962), + [anon_sym_extern] = ACTIONS(2962), + [anon_sym___attribute__] = ACTIONS(2962), + [anon_sym_COLON_COLON] = ACTIONS(2964), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2964), + [anon_sym___declspec] = ACTIONS(2962), + [anon_sym___based] = ACTIONS(2962), + [anon_sym___cdecl] = ACTIONS(2962), + [anon_sym___clrcall] = ACTIONS(2962), + [anon_sym___stdcall] = ACTIONS(2962), + [anon_sym___fastcall] = ACTIONS(2962), + [anon_sym___thiscall] = ACTIONS(2962), + [anon_sym___vectorcall] = ACTIONS(2962), + [anon_sym_LBRACE] = ACTIONS(2964), + [anon_sym_LBRACK] = ACTIONS(2962), + [anon_sym_static] = ACTIONS(2962), + [anon_sym_register] = ACTIONS(2962), + [anon_sym_inline] = ACTIONS(2962), + [anon_sym_thread_local] = ACTIONS(2962), + [anon_sym_const] = ACTIONS(2962), + [anon_sym_constexpr] = ACTIONS(2962), + [anon_sym_volatile] = ACTIONS(2962), + [anon_sym_restrict] = ACTIONS(2962), + [anon_sym___restrict__] = ACTIONS(2962), + [anon_sym__Atomic] = ACTIONS(2962), + [anon_sym__Noreturn] = ACTIONS(2962), + [anon_sym_noreturn] = ACTIONS(2962), + [anon_sym_mutable] = ACTIONS(2962), + [anon_sym_constinit] = ACTIONS(2962), + [anon_sym_consteval] = ACTIONS(2962), + [anon_sym_signed] = ACTIONS(2962), + [anon_sym_unsigned] = ACTIONS(2962), + [anon_sym_long] = ACTIONS(2962), + [anon_sym_short] = ACTIONS(2962), + [sym_primitive_type] = ACTIONS(2962), + [anon_sym_enum] = ACTIONS(2962), + [anon_sym_class] = ACTIONS(2962), + [anon_sym_struct] = ACTIONS(2962), + [anon_sym_union] = ACTIONS(2962), + [anon_sym_if] = ACTIONS(2962), + [anon_sym_else] = ACTIONS(2962), + [anon_sym_switch] = ACTIONS(2962), + [anon_sym_case] = ACTIONS(2962), + [anon_sym_default] = ACTIONS(2962), + [anon_sym_while] = ACTIONS(2962), + [anon_sym_do] = ACTIONS(2962), + [anon_sym_for] = ACTIONS(2962), + [anon_sym_return] = ACTIONS(2962), + [anon_sym_break] = ACTIONS(2962), + [anon_sym_continue] = ACTIONS(2962), + [anon_sym_goto] = ACTIONS(2962), + [anon_sym_not] = ACTIONS(2962), + [anon_sym_compl] = ACTIONS(2962), + [anon_sym_DASH_DASH] = ACTIONS(2964), + [anon_sym_PLUS_PLUS] = ACTIONS(2964), + [anon_sym_sizeof] = ACTIONS(2962), + [anon_sym_offsetof] = ACTIONS(2962), + [anon_sym__Generic] = ACTIONS(2962), + [anon_sym_asm] = ACTIONS(2962), + [anon_sym___asm__] = ACTIONS(2962), + [sym_number_literal] = ACTIONS(2964), + [anon_sym_L_SQUOTE] = ACTIONS(2964), + [anon_sym_u_SQUOTE] = ACTIONS(2964), + [anon_sym_U_SQUOTE] = ACTIONS(2964), + [anon_sym_u8_SQUOTE] = ACTIONS(2964), + [anon_sym_SQUOTE] = ACTIONS(2964), + [anon_sym_L_DQUOTE] = ACTIONS(2964), + [anon_sym_u_DQUOTE] = ACTIONS(2964), + [anon_sym_U_DQUOTE] = ACTIONS(2964), + [anon_sym_u8_DQUOTE] = ACTIONS(2964), + [anon_sym_DQUOTE] = ACTIONS(2964), + [sym_true] = ACTIONS(2962), + [sym_false] = ACTIONS(2962), + [anon_sym_NULL] = ACTIONS(2962), + [anon_sym_nullptr] = ACTIONS(2962), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2962), + [anon_sym_decltype] = ACTIONS(2962), + [anon_sym_virtual] = ACTIONS(2962), + [anon_sym_explicit] = ACTIONS(2962), + [anon_sym_typename] = ACTIONS(2962), + [anon_sym_template] = ACTIONS(2962), + [anon_sym_operator] = ACTIONS(2962), + [anon_sym_try] = ACTIONS(2962), + [anon_sym_delete] = ACTIONS(2962), + [anon_sym_throw] = ACTIONS(2962), + [anon_sym_namespace] = ACTIONS(2962), + [anon_sym_using] = ACTIONS(2962), + [anon_sym_static_assert] = ACTIONS(2962), + [anon_sym_concept] = ACTIONS(2962), + [anon_sym_co_return] = ACTIONS(2962), + [anon_sym_co_yield] = ACTIONS(2962), + [anon_sym_R_DQUOTE] = ACTIONS(2964), + [anon_sym_LR_DQUOTE] = ACTIONS(2964), + [anon_sym_uR_DQUOTE] = ACTIONS(2964), + [anon_sym_UR_DQUOTE] = ACTIONS(2964), + [anon_sym_u8R_DQUOTE] = ACTIONS(2964), + [anon_sym_co_await] = ACTIONS(2962), + [anon_sym_new] = ACTIONS(2962), + [anon_sym_requires] = ACTIONS(2962), + [sym_this] = ACTIONS(2962), }, - [1054] = { - [ts_builtin_sym_end] = ACTIONS(2696), - [sym_identifier] = ACTIONS(2694), - [aux_sym_preproc_include_token1] = ACTIONS(2694), - [aux_sym_preproc_def_token1] = ACTIONS(2694), - [aux_sym_preproc_if_token1] = ACTIONS(2694), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2694), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2694), - [sym_preproc_directive] = ACTIONS(2694), - [anon_sym_LPAREN2] = ACTIONS(2696), - [anon_sym_BANG] = ACTIONS(2696), - [anon_sym_TILDE] = ACTIONS(2696), - [anon_sym_DASH] = ACTIONS(2694), - [anon_sym_PLUS] = ACTIONS(2694), - [anon_sym_STAR] = ACTIONS(2696), - [anon_sym_AMP_AMP] = ACTIONS(2696), - [anon_sym_AMP] = ACTIONS(2694), - [anon_sym_SEMI] = ACTIONS(2696), - [anon_sym_typedef] = ACTIONS(2694), - [anon_sym_extern] = ACTIONS(2694), - [anon_sym___attribute__] = ACTIONS(2694), - [anon_sym_COLON_COLON] = ACTIONS(2696), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2696), - [anon_sym___declspec] = ACTIONS(2694), - [anon_sym___based] = ACTIONS(2694), - [anon_sym___cdecl] = ACTIONS(2694), - [anon_sym___clrcall] = ACTIONS(2694), - [anon_sym___stdcall] = ACTIONS(2694), - [anon_sym___fastcall] = ACTIONS(2694), - [anon_sym___thiscall] = ACTIONS(2694), - [anon_sym___vectorcall] = ACTIONS(2694), - [anon_sym_LBRACE] = ACTIONS(2696), - [anon_sym_LBRACK] = ACTIONS(2694), - [anon_sym_static] = ACTIONS(2694), - [anon_sym_register] = ACTIONS(2694), - [anon_sym_inline] = ACTIONS(2694), - [anon_sym_thread_local] = ACTIONS(2694), - [anon_sym_const] = ACTIONS(2694), - [anon_sym_volatile] = ACTIONS(2694), - [anon_sym_restrict] = ACTIONS(2694), - [anon_sym__Atomic] = ACTIONS(2694), - [anon_sym_mutable] = ACTIONS(2694), - [anon_sym_constexpr] = ACTIONS(2694), - [anon_sym_constinit] = ACTIONS(2694), - [anon_sym_consteval] = ACTIONS(2694), - [anon_sym_signed] = ACTIONS(2694), - [anon_sym_unsigned] = ACTIONS(2694), - [anon_sym_long] = ACTIONS(2694), - [anon_sym_short] = ACTIONS(2694), - [sym_primitive_type] = ACTIONS(2694), - [anon_sym_enum] = ACTIONS(2694), - [anon_sym_class] = ACTIONS(2694), - [anon_sym_struct] = ACTIONS(2694), - [anon_sym_union] = ACTIONS(2694), - [anon_sym_if] = ACTIONS(2694), - [anon_sym_switch] = ACTIONS(2694), - [anon_sym_case] = ACTIONS(2694), - [anon_sym_default] = ACTIONS(2694), - [anon_sym_while] = ACTIONS(2694), - [anon_sym_do] = ACTIONS(2694), - [anon_sym_for] = ACTIONS(2694), - [anon_sym_return] = ACTIONS(2694), - [anon_sym_break] = ACTIONS(2694), - [anon_sym_continue] = ACTIONS(2694), - [anon_sym_goto] = ACTIONS(2694), - [anon_sym_not] = ACTIONS(2694), - [anon_sym_compl] = ACTIONS(2694), - [anon_sym_DASH_DASH] = ACTIONS(2696), - [anon_sym_PLUS_PLUS] = ACTIONS(2696), - [anon_sym_sizeof] = ACTIONS(2694), - [sym_number_literal] = ACTIONS(2696), - [anon_sym_L_SQUOTE] = ACTIONS(2696), - [anon_sym_u_SQUOTE] = ACTIONS(2696), - [anon_sym_U_SQUOTE] = ACTIONS(2696), - [anon_sym_u8_SQUOTE] = ACTIONS(2696), - [anon_sym_SQUOTE] = ACTIONS(2696), - [anon_sym_L_DQUOTE] = ACTIONS(2696), - [anon_sym_u_DQUOTE] = ACTIONS(2696), - [anon_sym_U_DQUOTE] = ACTIONS(2696), - [anon_sym_u8_DQUOTE] = ACTIONS(2696), - [anon_sym_DQUOTE] = ACTIONS(2696), - [sym_true] = ACTIONS(2694), - [sym_false] = ACTIONS(2694), - [sym_null] = ACTIONS(2694), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2694), - [anon_sym_decltype] = ACTIONS(2694), - [anon_sym_virtual] = ACTIONS(2694), - [anon_sym_explicit] = ACTIONS(2694), - [anon_sym_typename] = ACTIONS(2694), - [anon_sym_template] = ACTIONS(2694), - [anon_sym_operator] = ACTIONS(2694), - [anon_sym_try] = ACTIONS(2694), - [anon_sym_delete] = ACTIONS(2694), - [anon_sym_throw] = ACTIONS(2694), - [anon_sym_namespace] = ACTIONS(2694), - [anon_sym_using] = ACTIONS(2694), - [anon_sym_static_assert] = ACTIONS(2694), - [anon_sym_concept] = ACTIONS(2694), - [anon_sym_co_return] = ACTIONS(2694), - [anon_sym_co_yield] = ACTIONS(2694), - [anon_sym_R_DQUOTE] = ACTIONS(2696), - [anon_sym_LR_DQUOTE] = ACTIONS(2696), - [anon_sym_uR_DQUOTE] = ACTIONS(2696), - [anon_sym_UR_DQUOTE] = ACTIONS(2696), - [anon_sym_u8R_DQUOTE] = ACTIONS(2696), - [anon_sym_co_await] = ACTIONS(2694), - [anon_sym_new] = ACTIONS(2694), - [anon_sym_requires] = ACTIONS(2694), - [sym_this] = ACTIONS(2694), - [sym_nullptr] = ACTIONS(2694), + [1103] = { + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token2] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, - [1055] = { - [ts_builtin_sym_end] = ACTIONS(2902), - [sym_identifier] = ACTIONS(2900), - [aux_sym_preproc_include_token1] = ACTIONS(2900), - [aux_sym_preproc_def_token1] = ACTIONS(2900), - [aux_sym_preproc_if_token1] = ACTIONS(2900), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2900), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2900), - [sym_preproc_directive] = ACTIONS(2900), - [anon_sym_LPAREN2] = ACTIONS(2902), - [anon_sym_BANG] = ACTIONS(2902), - [anon_sym_TILDE] = ACTIONS(2902), - [anon_sym_DASH] = ACTIONS(2900), - [anon_sym_PLUS] = ACTIONS(2900), - [anon_sym_STAR] = ACTIONS(2902), - [anon_sym_AMP_AMP] = ACTIONS(2902), - [anon_sym_AMP] = ACTIONS(2900), - [anon_sym_SEMI] = ACTIONS(2902), - [anon_sym_typedef] = ACTIONS(2900), - [anon_sym_extern] = ACTIONS(2900), - [anon_sym___attribute__] = ACTIONS(2900), - [anon_sym_COLON_COLON] = ACTIONS(2902), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2902), - [anon_sym___declspec] = ACTIONS(2900), - [anon_sym___based] = ACTIONS(2900), - [anon_sym___cdecl] = ACTIONS(2900), - [anon_sym___clrcall] = ACTIONS(2900), - [anon_sym___stdcall] = ACTIONS(2900), - [anon_sym___fastcall] = ACTIONS(2900), - [anon_sym___thiscall] = ACTIONS(2900), - [anon_sym___vectorcall] = ACTIONS(2900), - [anon_sym_LBRACE] = ACTIONS(2902), - [anon_sym_LBRACK] = ACTIONS(2900), - [anon_sym_static] = ACTIONS(2900), - [anon_sym_register] = ACTIONS(2900), - [anon_sym_inline] = ACTIONS(2900), - [anon_sym_thread_local] = ACTIONS(2900), - [anon_sym_const] = ACTIONS(2900), - [anon_sym_volatile] = ACTIONS(2900), - [anon_sym_restrict] = ACTIONS(2900), - [anon_sym__Atomic] = ACTIONS(2900), - [anon_sym_mutable] = ACTIONS(2900), - [anon_sym_constexpr] = ACTIONS(2900), - [anon_sym_constinit] = ACTIONS(2900), - [anon_sym_consteval] = ACTIONS(2900), - [anon_sym_signed] = ACTIONS(2900), - [anon_sym_unsigned] = ACTIONS(2900), - [anon_sym_long] = ACTIONS(2900), - [anon_sym_short] = ACTIONS(2900), - [sym_primitive_type] = ACTIONS(2900), - [anon_sym_enum] = ACTIONS(2900), - [anon_sym_class] = ACTIONS(2900), - [anon_sym_struct] = ACTIONS(2900), - [anon_sym_union] = ACTIONS(2900), - [anon_sym_if] = ACTIONS(2900), - [anon_sym_switch] = ACTIONS(2900), - [anon_sym_case] = ACTIONS(2900), - [anon_sym_default] = ACTIONS(2900), - [anon_sym_while] = ACTIONS(2900), - [anon_sym_do] = ACTIONS(2900), - [anon_sym_for] = ACTIONS(2900), - [anon_sym_return] = ACTIONS(2900), - [anon_sym_break] = ACTIONS(2900), - [anon_sym_continue] = ACTIONS(2900), - [anon_sym_goto] = ACTIONS(2900), - [anon_sym_not] = ACTIONS(2900), - [anon_sym_compl] = ACTIONS(2900), - [anon_sym_DASH_DASH] = ACTIONS(2902), - [anon_sym_PLUS_PLUS] = ACTIONS(2902), - [anon_sym_sizeof] = ACTIONS(2900), - [sym_number_literal] = ACTIONS(2902), - [anon_sym_L_SQUOTE] = ACTIONS(2902), - [anon_sym_u_SQUOTE] = ACTIONS(2902), - [anon_sym_U_SQUOTE] = ACTIONS(2902), - [anon_sym_u8_SQUOTE] = ACTIONS(2902), - [anon_sym_SQUOTE] = ACTIONS(2902), - [anon_sym_L_DQUOTE] = ACTIONS(2902), - [anon_sym_u_DQUOTE] = ACTIONS(2902), - [anon_sym_U_DQUOTE] = ACTIONS(2902), - [anon_sym_u8_DQUOTE] = ACTIONS(2902), - [anon_sym_DQUOTE] = ACTIONS(2902), - [sym_true] = ACTIONS(2900), - [sym_false] = ACTIONS(2900), - [sym_null] = ACTIONS(2900), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2900), - [anon_sym_decltype] = ACTIONS(2900), - [anon_sym_virtual] = ACTIONS(2900), - [anon_sym_explicit] = ACTIONS(2900), - [anon_sym_typename] = ACTIONS(2900), - [anon_sym_template] = ACTIONS(2900), - [anon_sym_operator] = ACTIONS(2900), - [anon_sym_try] = ACTIONS(2900), - [anon_sym_delete] = ACTIONS(2900), - [anon_sym_throw] = ACTIONS(2900), - [anon_sym_namespace] = ACTIONS(2900), - [anon_sym_using] = ACTIONS(2900), - [anon_sym_static_assert] = ACTIONS(2900), - [anon_sym_concept] = ACTIONS(2900), - [anon_sym_co_return] = ACTIONS(2900), - [anon_sym_co_yield] = ACTIONS(2900), - [anon_sym_R_DQUOTE] = ACTIONS(2902), - [anon_sym_LR_DQUOTE] = ACTIONS(2902), - [anon_sym_uR_DQUOTE] = ACTIONS(2902), - [anon_sym_UR_DQUOTE] = ACTIONS(2902), - [anon_sym_u8R_DQUOTE] = ACTIONS(2902), - [anon_sym_co_await] = ACTIONS(2900), - [anon_sym_new] = ACTIONS(2900), - [anon_sym_requires] = ACTIONS(2900), - [sym_this] = ACTIONS(2900), - [sym_nullptr] = ACTIONS(2900), + [1104] = { + [ts_builtin_sym_end] = ACTIONS(3030), + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, - [1056] = { - [sym_identifier] = ACTIONS(2742), - [aux_sym_preproc_include_token1] = ACTIONS(2742), - [aux_sym_preproc_def_token1] = ACTIONS(2742), - [aux_sym_preproc_if_token1] = ACTIONS(2742), - [aux_sym_preproc_if_token2] = ACTIONS(2742), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2742), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2742), - [sym_preproc_directive] = ACTIONS(2742), - [anon_sym_LPAREN2] = ACTIONS(2744), - [anon_sym_BANG] = ACTIONS(2744), - [anon_sym_TILDE] = ACTIONS(2744), - [anon_sym_DASH] = ACTIONS(2742), - [anon_sym_PLUS] = ACTIONS(2742), - [anon_sym_STAR] = ACTIONS(2744), - [anon_sym_AMP_AMP] = ACTIONS(2744), - [anon_sym_AMP] = ACTIONS(2742), - [anon_sym_SEMI] = ACTIONS(2744), - [anon_sym_typedef] = ACTIONS(2742), - [anon_sym_extern] = ACTIONS(2742), - [anon_sym___attribute__] = ACTIONS(2742), - [anon_sym_COLON_COLON] = ACTIONS(2744), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2744), - [anon_sym___declspec] = ACTIONS(2742), - [anon_sym___based] = ACTIONS(2742), - [anon_sym___cdecl] = ACTIONS(2742), - [anon_sym___clrcall] = ACTIONS(2742), - [anon_sym___stdcall] = ACTIONS(2742), - [anon_sym___fastcall] = ACTIONS(2742), - [anon_sym___thiscall] = ACTIONS(2742), - [anon_sym___vectorcall] = ACTIONS(2742), - [anon_sym_LBRACE] = ACTIONS(2744), - [anon_sym_LBRACK] = ACTIONS(2742), - [anon_sym_static] = ACTIONS(2742), - [anon_sym_register] = ACTIONS(2742), - [anon_sym_inline] = ACTIONS(2742), - [anon_sym_thread_local] = ACTIONS(2742), - [anon_sym_const] = ACTIONS(2742), - [anon_sym_volatile] = ACTIONS(2742), - [anon_sym_restrict] = ACTIONS(2742), - [anon_sym__Atomic] = ACTIONS(2742), - [anon_sym_mutable] = ACTIONS(2742), - [anon_sym_constexpr] = ACTIONS(2742), - [anon_sym_constinit] = ACTIONS(2742), - [anon_sym_consteval] = ACTIONS(2742), - [anon_sym_signed] = ACTIONS(2742), - [anon_sym_unsigned] = ACTIONS(2742), - [anon_sym_long] = ACTIONS(2742), - [anon_sym_short] = ACTIONS(2742), - [sym_primitive_type] = ACTIONS(2742), - [anon_sym_enum] = ACTIONS(2742), - [anon_sym_class] = ACTIONS(2742), - [anon_sym_struct] = ACTIONS(2742), - [anon_sym_union] = ACTIONS(2742), - [anon_sym_if] = ACTIONS(2742), - [anon_sym_switch] = ACTIONS(2742), - [anon_sym_case] = ACTIONS(2742), - [anon_sym_default] = ACTIONS(2742), - [anon_sym_while] = ACTIONS(2742), - [anon_sym_do] = ACTIONS(2742), - [anon_sym_for] = ACTIONS(2742), - [anon_sym_return] = ACTIONS(2742), - [anon_sym_break] = ACTIONS(2742), - [anon_sym_continue] = ACTIONS(2742), - [anon_sym_goto] = ACTIONS(2742), - [anon_sym_not] = ACTIONS(2742), - [anon_sym_compl] = ACTIONS(2742), - [anon_sym_DASH_DASH] = ACTIONS(2744), - [anon_sym_PLUS_PLUS] = ACTIONS(2744), - [anon_sym_sizeof] = ACTIONS(2742), - [sym_number_literal] = ACTIONS(2744), - [anon_sym_L_SQUOTE] = ACTIONS(2744), - [anon_sym_u_SQUOTE] = ACTIONS(2744), - [anon_sym_U_SQUOTE] = ACTIONS(2744), - [anon_sym_u8_SQUOTE] = ACTIONS(2744), - [anon_sym_SQUOTE] = ACTIONS(2744), - [anon_sym_L_DQUOTE] = ACTIONS(2744), - [anon_sym_u_DQUOTE] = ACTIONS(2744), - [anon_sym_U_DQUOTE] = ACTIONS(2744), - [anon_sym_u8_DQUOTE] = ACTIONS(2744), - [anon_sym_DQUOTE] = ACTIONS(2744), - [sym_true] = ACTIONS(2742), - [sym_false] = ACTIONS(2742), - [sym_null] = ACTIONS(2742), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2742), - [anon_sym_decltype] = ACTIONS(2742), - [anon_sym_virtual] = ACTIONS(2742), - [anon_sym_explicit] = ACTIONS(2742), - [anon_sym_typename] = ACTIONS(2742), - [anon_sym_template] = ACTIONS(2742), - [anon_sym_operator] = ACTIONS(2742), - [anon_sym_try] = ACTIONS(2742), - [anon_sym_delete] = ACTIONS(2742), - [anon_sym_throw] = ACTIONS(2742), - [anon_sym_namespace] = ACTIONS(2742), - [anon_sym_using] = ACTIONS(2742), - [anon_sym_static_assert] = ACTIONS(2742), - [anon_sym_concept] = ACTIONS(2742), - [anon_sym_co_return] = ACTIONS(2742), - [anon_sym_co_yield] = ACTIONS(2742), - [anon_sym_R_DQUOTE] = ACTIONS(2744), - [anon_sym_LR_DQUOTE] = ACTIONS(2744), - [anon_sym_uR_DQUOTE] = ACTIONS(2744), - [anon_sym_UR_DQUOTE] = ACTIONS(2744), - [anon_sym_u8R_DQUOTE] = ACTIONS(2744), - [anon_sym_co_await] = ACTIONS(2742), - [anon_sym_new] = ACTIONS(2742), - [anon_sym_requires] = ACTIONS(2742), - [sym_this] = ACTIONS(2742), - [sym_nullptr] = ACTIONS(2742), + [1105] = { + [ts_builtin_sym_end] = ACTIONS(3010), + [sym_identifier] = ACTIONS(3008), + [aux_sym_preproc_include_token1] = ACTIONS(3008), + [aux_sym_preproc_def_token1] = ACTIONS(3008), + [aux_sym_preproc_if_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3008), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3008), + [sym_preproc_directive] = ACTIONS(3008), + [anon_sym_LPAREN2] = ACTIONS(3010), + [anon_sym_BANG] = ACTIONS(3010), + [anon_sym_TILDE] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3008), + [anon_sym_PLUS] = ACTIONS(3008), + [anon_sym_STAR] = ACTIONS(3010), + [anon_sym_AMP_AMP] = ACTIONS(3010), + [anon_sym_AMP] = ACTIONS(3008), + [anon_sym_SEMI] = ACTIONS(3010), + [anon_sym_typedef] = ACTIONS(3008), + [anon_sym_extern] = ACTIONS(3008), + [anon_sym___attribute__] = ACTIONS(3008), + [anon_sym_COLON_COLON] = ACTIONS(3010), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3010), + [anon_sym___declspec] = ACTIONS(3008), + [anon_sym___based] = ACTIONS(3008), + [anon_sym___cdecl] = ACTIONS(3008), + [anon_sym___clrcall] = ACTIONS(3008), + [anon_sym___stdcall] = ACTIONS(3008), + [anon_sym___fastcall] = ACTIONS(3008), + [anon_sym___thiscall] = ACTIONS(3008), + [anon_sym___vectorcall] = ACTIONS(3008), + [anon_sym_LBRACE] = ACTIONS(3010), + [anon_sym_LBRACK] = ACTIONS(3008), + [anon_sym_static] = ACTIONS(3008), + [anon_sym_register] = ACTIONS(3008), + [anon_sym_inline] = ACTIONS(3008), + [anon_sym_thread_local] = ACTIONS(3008), + [anon_sym_const] = ACTIONS(3008), + [anon_sym_constexpr] = ACTIONS(3008), + [anon_sym_volatile] = ACTIONS(3008), + [anon_sym_restrict] = ACTIONS(3008), + [anon_sym___restrict__] = ACTIONS(3008), + [anon_sym__Atomic] = ACTIONS(3008), + [anon_sym__Noreturn] = ACTIONS(3008), + [anon_sym_noreturn] = ACTIONS(3008), + [anon_sym_mutable] = ACTIONS(3008), + [anon_sym_constinit] = ACTIONS(3008), + [anon_sym_consteval] = ACTIONS(3008), + [anon_sym_signed] = ACTIONS(3008), + [anon_sym_unsigned] = ACTIONS(3008), + [anon_sym_long] = ACTIONS(3008), + [anon_sym_short] = ACTIONS(3008), + [sym_primitive_type] = ACTIONS(3008), + [anon_sym_enum] = ACTIONS(3008), + [anon_sym_class] = ACTIONS(3008), + [anon_sym_struct] = ACTIONS(3008), + [anon_sym_union] = ACTIONS(3008), + [anon_sym_if] = ACTIONS(3008), + [anon_sym_else] = ACTIONS(3008), + [anon_sym_switch] = ACTIONS(3008), + [anon_sym_case] = ACTIONS(3008), + [anon_sym_default] = ACTIONS(3008), + [anon_sym_while] = ACTIONS(3008), + [anon_sym_do] = ACTIONS(3008), + [anon_sym_for] = ACTIONS(3008), + [anon_sym_return] = ACTIONS(3008), + [anon_sym_break] = ACTIONS(3008), + [anon_sym_continue] = ACTIONS(3008), + [anon_sym_goto] = ACTIONS(3008), + [anon_sym_not] = ACTIONS(3008), + [anon_sym_compl] = ACTIONS(3008), + [anon_sym_DASH_DASH] = ACTIONS(3010), + [anon_sym_PLUS_PLUS] = ACTIONS(3010), + [anon_sym_sizeof] = ACTIONS(3008), + [anon_sym_offsetof] = ACTIONS(3008), + [anon_sym__Generic] = ACTIONS(3008), + [anon_sym_asm] = ACTIONS(3008), + [anon_sym___asm__] = ACTIONS(3008), + [sym_number_literal] = ACTIONS(3010), + [anon_sym_L_SQUOTE] = ACTIONS(3010), + [anon_sym_u_SQUOTE] = ACTIONS(3010), + [anon_sym_U_SQUOTE] = ACTIONS(3010), + [anon_sym_u8_SQUOTE] = ACTIONS(3010), + [anon_sym_SQUOTE] = ACTIONS(3010), + [anon_sym_L_DQUOTE] = ACTIONS(3010), + [anon_sym_u_DQUOTE] = ACTIONS(3010), + [anon_sym_U_DQUOTE] = ACTIONS(3010), + [anon_sym_u8_DQUOTE] = ACTIONS(3010), + [anon_sym_DQUOTE] = ACTIONS(3010), + [sym_true] = ACTIONS(3008), + [sym_false] = ACTIONS(3008), + [anon_sym_NULL] = ACTIONS(3008), + [anon_sym_nullptr] = ACTIONS(3008), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3008), + [anon_sym_decltype] = ACTIONS(3008), + [anon_sym_virtual] = ACTIONS(3008), + [anon_sym_explicit] = ACTIONS(3008), + [anon_sym_typename] = ACTIONS(3008), + [anon_sym_template] = ACTIONS(3008), + [anon_sym_operator] = ACTIONS(3008), + [anon_sym_try] = ACTIONS(3008), + [anon_sym_delete] = ACTIONS(3008), + [anon_sym_throw] = ACTIONS(3008), + [anon_sym_namespace] = ACTIONS(3008), + [anon_sym_using] = ACTIONS(3008), + [anon_sym_static_assert] = ACTIONS(3008), + [anon_sym_concept] = ACTIONS(3008), + [anon_sym_co_return] = ACTIONS(3008), + [anon_sym_co_yield] = ACTIONS(3008), + [anon_sym_R_DQUOTE] = ACTIONS(3010), + [anon_sym_LR_DQUOTE] = ACTIONS(3010), + [anon_sym_uR_DQUOTE] = ACTIONS(3010), + [anon_sym_UR_DQUOTE] = ACTIONS(3010), + [anon_sym_u8R_DQUOTE] = ACTIONS(3010), + [anon_sym_co_await] = ACTIONS(3008), + [anon_sym_new] = ACTIONS(3008), + [anon_sym_requires] = ACTIONS(3008), + [sym_this] = ACTIONS(3008), }, - [1057] = { - [ts_builtin_sym_end] = ACTIONS(2736), - [sym_identifier] = ACTIONS(2734), - [aux_sym_preproc_include_token1] = ACTIONS(2734), - [aux_sym_preproc_def_token1] = ACTIONS(2734), - [aux_sym_preproc_if_token1] = ACTIONS(2734), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2734), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2734), - [sym_preproc_directive] = ACTIONS(2734), - [anon_sym_LPAREN2] = ACTIONS(2736), - [anon_sym_BANG] = ACTIONS(2736), - [anon_sym_TILDE] = ACTIONS(2736), - [anon_sym_DASH] = ACTIONS(2734), - [anon_sym_PLUS] = ACTIONS(2734), - [anon_sym_STAR] = ACTIONS(2736), - [anon_sym_AMP_AMP] = ACTIONS(2736), - [anon_sym_AMP] = ACTIONS(2734), - [anon_sym_SEMI] = ACTIONS(2736), - [anon_sym_typedef] = ACTIONS(2734), - [anon_sym_extern] = ACTIONS(2734), - [anon_sym___attribute__] = ACTIONS(2734), - [anon_sym_COLON_COLON] = ACTIONS(2736), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2736), - [anon_sym___declspec] = ACTIONS(2734), - [anon_sym___based] = ACTIONS(2734), - [anon_sym___cdecl] = ACTIONS(2734), - [anon_sym___clrcall] = ACTIONS(2734), - [anon_sym___stdcall] = ACTIONS(2734), - [anon_sym___fastcall] = ACTIONS(2734), - [anon_sym___thiscall] = ACTIONS(2734), - [anon_sym___vectorcall] = ACTIONS(2734), - [anon_sym_LBRACE] = ACTIONS(2736), - [anon_sym_LBRACK] = ACTIONS(2734), - [anon_sym_static] = ACTIONS(2734), - [anon_sym_register] = ACTIONS(2734), - [anon_sym_inline] = ACTIONS(2734), - [anon_sym_thread_local] = ACTIONS(2734), - [anon_sym_const] = ACTIONS(2734), - [anon_sym_volatile] = ACTIONS(2734), - [anon_sym_restrict] = ACTIONS(2734), - [anon_sym__Atomic] = ACTIONS(2734), - [anon_sym_mutable] = ACTIONS(2734), - [anon_sym_constexpr] = ACTIONS(2734), - [anon_sym_constinit] = ACTIONS(2734), - [anon_sym_consteval] = ACTIONS(2734), - [anon_sym_signed] = ACTIONS(2734), - [anon_sym_unsigned] = ACTIONS(2734), - [anon_sym_long] = ACTIONS(2734), - [anon_sym_short] = ACTIONS(2734), - [sym_primitive_type] = ACTIONS(2734), - [anon_sym_enum] = ACTIONS(2734), - [anon_sym_class] = ACTIONS(2734), - [anon_sym_struct] = ACTIONS(2734), - [anon_sym_union] = ACTIONS(2734), - [anon_sym_if] = ACTIONS(2734), - [anon_sym_switch] = ACTIONS(2734), - [anon_sym_case] = ACTIONS(2734), - [anon_sym_default] = ACTIONS(2734), - [anon_sym_while] = ACTIONS(2734), - [anon_sym_do] = ACTIONS(2734), - [anon_sym_for] = ACTIONS(2734), - [anon_sym_return] = ACTIONS(2734), - [anon_sym_break] = ACTIONS(2734), - [anon_sym_continue] = ACTIONS(2734), - [anon_sym_goto] = ACTIONS(2734), - [anon_sym_not] = ACTIONS(2734), - [anon_sym_compl] = ACTIONS(2734), - [anon_sym_DASH_DASH] = ACTIONS(2736), - [anon_sym_PLUS_PLUS] = ACTIONS(2736), - [anon_sym_sizeof] = ACTIONS(2734), - [sym_number_literal] = ACTIONS(2736), - [anon_sym_L_SQUOTE] = ACTIONS(2736), - [anon_sym_u_SQUOTE] = ACTIONS(2736), - [anon_sym_U_SQUOTE] = ACTIONS(2736), - [anon_sym_u8_SQUOTE] = ACTIONS(2736), - [anon_sym_SQUOTE] = ACTIONS(2736), - [anon_sym_L_DQUOTE] = ACTIONS(2736), - [anon_sym_u_DQUOTE] = ACTIONS(2736), - [anon_sym_U_DQUOTE] = ACTIONS(2736), - [anon_sym_u8_DQUOTE] = ACTIONS(2736), - [anon_sym_DQUOTE] = ACTIONS(2736), - [sym_true] = ACTIONS(2734), - [sym_false] = ACTIONS(2734), - [sym_null] = ACTIONS(2734), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2734), - [anon_sym_decltype] = ACTIONS(2734), - [anon_sym_virtual] = ACTIONS(2734), - [anon_sym_explicit] = ACTIONS(2734), - [anon_sym_typename] = ACTIONS(2734), - [anon_sym_template] = ACTIONS(2734), - [anon_sym_operator] = ACTIONS(2734), - [anon_sym_try] = ACTIONS(2734), - [anon_sym_delete] = ACTIONS(2734), - [anon_sym_throw] = ACTIONS(2734), - [anon_sym_namespace] = ACTIONS(2734), - [anon_sym_using] = ACTIONS(2734), - [anon_sym_static_assert] = ACTIONS(2734), - [anon_sym_concept] = ACTIONS(2734), - [anon_sym_co_return] = ACTIONS(2734), - [anon_sym_co_yield] = ACTIONS(2734), - [anon_sym_R_DQUOTE] = ACTIONS(2736), - [anon_sym_LR_DQUOTE] = ACTIONS(2736), - [anon_sym_uR_DQUOTE] = ACTIONS(2736), - [anon_sym_UR_DQUOTE] = ACTIONS(2736), - [anon_sym_u8R_DQUOTE] = ACTIONS(2736), - [anon_sym_co_await] = ACTIONS(2734), - [anon_sym_new] = ACTIONS(2734), - [anon_sym_requires] = ACTIONS(2734), - [sym_this] = ACTIONS(2734), - [sym_nullptr] = ACTIONS(2734), + [1106] = { + [ts_builtin_sym_end] = ACTIONS(3030), + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, - [1058] = { - [ts_builtin_sym_end] = ACTIONS(2898), - [sym_identifier] = ACTIONS(2896), - [aux_sym_preproc_include_token1] = ACTIONS(2896), - [aux_sym_preproc_def_token1] = ACTIONS(2896), - [aux_sym_preproc_if_token1] = ACTIONS(2896), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2896), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2896), - [sym_preproc_directive] = ACTIONS(2896), - [anon_sym_LPAREN2] = ACTIONS(2898), - [anon_sym_BANG] = ACTIONS(2898), - [anon_sym_TILDE] = ACTIONS(2898), - [anon_sym_DASH] = ACTIONS(2896), - [anon_sym_PLUS] = ACTIONS(2896), - [anon_sym_STAR] = ACTIONS(2898), - [anon_sym_AMP_AMP] = ACTIONS(2898), - [anon_sym_AMP] = ACTIONS(2896), - [anon_sym_SEMI] = ACTIONS(2898), - [anon_sym_typedef] = ACTIONS(2896), - [anon_sym_extern] = ACTIONS(2896), - [anon_sym___attribute__] = ACTIONS(2896), - [anon_sym_COLON_COLON] = ACTIONS(2898), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2898), - [anon_sym___declspec] = ACTIONS(2896), - [anon_sym___based] = ACTIONS(2896), - [anon_sym___cdecl] = ACTIONS(2896), - [anon_sym___clrcall] = ACTIONS(2896), - [anon_sym___stdcall] = ACTIONS(2896), - [anon_sym___fastcall] = ACTIONS(2896), - [anon_sym___thiscall] = ACTIONS(2896), - [anon_sym___vectorcall] = ACTIONS(2896), - [anon_sym_LBRACE] = ACTIONS(2898), - [anon_sym_LBRACK] = ACTIONS(2896), - [anon_sym_static] = ACTIONS(2896), - [anon_sym_register] = ACTIONS(2896), - [anon_sym_inline] = ACTIONS(2896), - [anon_sym_thread_local] = ACTIONS(2896), - [anon_sym_const] = ACTIONS(2896), - [anon_sym_volatile] = ACTIONS(2896), - [anon_sym_restrict] = ACTIONS(2896), - [anon_sym__Atomic] = ACTIONS(2896), - [anon_sym_mutable] = ACTIONS(2896), - [anon_sym_constexpr] = ACTIONS(2896), - [anon_sym_constinit] = ACTIONS(2896), - [anon_sym_consteval] = ACTIONS(2896), - [anon_sym_signed] = ACTIONS(2896), - [anon_sym_unsigned] = ACTIONS(2896), - [anon_sym_long] = ACTIONS(2896), - [anon_sym_short] = ACTIONS(2896), - [sym_primitive_type] = ACTIONS(2896), - [anon_sym_enum] = ACTIONS(2896), - [anon_sym_class] = ACTIONS(2896), - [anon_sym_struct] = ACTIONS(2896), - [anon_sym_union] = ACTIONS(2896), - [anon_sym_if] = ACTIONS(2896), - [anon_sym_switch] = ACTIONS(2896), - [anon_sym_case] = ACTIONS(2896), - [anon_sym_default] = ACTIONS(2896), - [anon_sym_while] = ACTIONS(2896), - [anon_sym_do] = ACTIONS(2896), - [anon_sym_for] = ACTIONS(2896), - [anon_sym_return] = ACTIONS(2896), - [anon_sym_break] = ACTIONS(2896), - [anon_sym_continue] = ACTIONS(2896), - [anon_sym_goto] = ACTIONS(2896), - [anon_sym_not] = ACTIONS(2896), - [anon_sym_compl] = ACTIONS(2896), - [anon_sym_DASH_DASH] = ACTIONS(2898), - [anon_sym_PLUS_PLUS] = ACTIONS(2898), - [anon_sym_sizeof] = ACTIONS(2896), - [sym_number_literal] = ACTIONS(2898), - [anon_sym_L_SQUOTE] = ACTIONS(2898), - [anon_sym_u_SQUOTE] = ACTIONS(2898), - [anon_sym_U_SQUOTE] = ACTIONS(2898), - [anon_sym_u8_SQUOTE] = ACTIONS(2898), - [anon_sym_SQUOTE] = ACTIONS(2898), - [anon_sym_L_DQUOTE] = ACTIONS(2898), - [anon_sym_u_DQUOTE] = ACTIONS(2898), - [anon_sym_U_DQUOTE] = ACTIONS(2898), - [anon_sym_u8_DQUOTE] = ACTIONS(2898), - [anon_sym_DQUOTE] = ACTIONS(2898), - [sym_true] = ACTIONS(2896), - [sym_false] = ACTIONS(2896), - [sym_null] = ACTIONS(2896), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2896), - [anon_sym_decltype] = ACTIONS(2896), - [anon_sym_virtual] = ACTIONS(2896), - [anon_sym_explicit] = ACTIONS(2896), - [anon_sym_typename] = ACTIONS(2896), - [anon_sym_template] = ACTIONS(2896), - [anon_sym_operator] = ACTIONS(2896), - [anon_sym_try] = ACTIONS(2896), - [anon_sym_delete] = ACTIONS(2896), - [anon_sym_throw] = ACTIONS(2896), - [anon_sym_namespace] = ACTIONS(2896), - [anon_sym_using] = ACTIONS(2896), - [anon_sym_static_assert] = ACTIONS(2896), - [anon_sym_concept] = ACTIONS(2896), - [anon_sym_co_return] = ACTIONS(2896), - [anon_sym_co_yield] = ACTIONS(2896), - [anon_sym_R_DQUOTE] = ACTIONS(2898), - [anon_sym_LR_DQUOTE] = ACTIONS(2898), - [anon_sym_uR_DQUOTE] = ACTIONS(2898), - [anon_sym_UR_DQUOTE] = ACTIONS(2898), - [anon_sym_u8R_DQUOTE] = ACTIONS(2898), - [anon_sym_co_await] = ACTIONS(2896), - [anon_sym_new] = ACTIONS(2896), - [anon_sym_requires] = ACTIONS(2896), - [sym_this] = ACTIONS(2896), - [sym_nullptr] = ACTIONS(2896), + [1107] = { + [ts_builtin_sym_end] = ACTIONS(3030), + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, - [1059] = { - [sym_identifier] = ACTIONS(2662), - [aux_sym_preproc_include_token1] = ACTIONS(2662), - [aux_sym_preproc_def_token1] = ACTIONS(2662), - [aux_sym_preproc_if_token1] = ACTIONS(2662), - [aux_sym_preproc_if_token2] = ACTIONS(2662), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2662), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2662), - [sym_preproc_directive] = ACTIONS(2662), - [anon_sym_LPAREN2] = ACTIONS(2664), - [anon_sym_BANG] = ACTIONS(2664), - [anon_sym_TILDE] = ACTIONS(2664), - [anon_sym_DASH] = ACTIONS(2662), - [anon_sym_PLUS] = ACTIONS(2662), - [anon_sym_STAR] = ACTIONS(2664), - [anon_sym_AMP_AMP] = ACTIONS(2664), - [anon_sym_AMP] = ACTIONS(2662), - [anon_sym_SEMI] = ACTIONS(2664), - [anon_sym_typedef] = ACTIONS(2662), - [anon_sym_extern] = ACTIONS(2662), - [anon_sym___attribute__] = ACTIONS(2662), - [anon_sym_COLON_COLON] = ACTIONS(2664), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2664), - [anon_sym___declspec] = ACTIONS(2662), - [anon_sym___based] = ACTIONS(2662), - [anon_sym___cdecl] = ACTIONS(2662), - [anon_sym___clrcall] = ACTIONS(2662), - [anon_sym___stdcall] = ACTIONS(2662), - [anon_sym___fastcall] = ACTIONS(2662), - [anon_sym___thiscall] = ACTIONS(2662), - [anon_sym___vectorcall] = ACTIONS(2662), - [anon_sym_LBRACE] = ACTIONS(2664), - [anon_sym_LBRACK] = ACTIONS(2662), - [anon_sym_static] = ACTIONS(2662), - [anon_sym_register] = ACTIONS(2662), - [anon_sym_inline] = ACTIONS(2662), - [anon_sym_thread_local] = ACTIONS(2662), - [anon_sym_const] = ACTIONS(2662), - [anon_sym_volatile] = ACTIONS(2662), - [anon_sym_restrict] = ACTIONS(2662), - [anon_sym__Atomic] = ACTIONS(2662), - [anon_sym_mutable] = ACTIONS(2662), - [anon_sym_constexpr] = ACTIONS(2662), - [anon_sym_constinit] = ACTIONS(2662), - [anon_sym_consteval] = ACTIONS(2662), - [anon_sym_signed] = ACTIONS(2662), - [anon_sym_unsigned] = ACTIONS(2662), - [anon_sym_long] = ACTIONS(2662), - [anon_sym_short] = ACTIONS(2662), - [sym_primitive_type] = ACTIONS(2662), - [anon_sym_enum] = ACTIONS(2662), - [anon_sym_class] = ACTIONS(2662), - [anon_sym_struct] = ACTIONS(2662), - [anon_sym_union] = ACTIONS(2662), - [anon_sym_if] = ACTIONS(2662), - [anon_sym_switch] = ACTIONS(2662), - [anon_sym_case] = ACTIONS(2662), - [anon_sym_default] = ACTIONS(2662), - [anon_sym_while] = ACTIONS(2662), - [anon_sym_do] = ACTIONS(2662), - [anon_sym_for] = ACTIONS(2662), - [anon_sym_return] = ACTIONS(2662), - [anon_sym_break] = ACTIONS(2662), - [anon_sym_continue] = ACTIONS(2662), - [anon_sym_goto] = ACTIONS(2662), - [anon_sym_not] = ACTIONS(2662), - [anon_sym_compl] = ACTIONS(2662), - [anon_sym_DASH_DASH] = ACTIONS(2664), - [anon_sym_PLUS_PLUS] = ACTIONS(2664), - [anon_sym_sizeof] = ACTIONS(2662), - [sym_number_literal] = ACTIONS(2664), - [anon_sym_L_SQUOTE] = ACTIONS(2664), - [anon_sym_u_SQUOTE] = ACTIONS(2664), - [anon_sym_U_SQUOTE] = ACTIONS(2664), - [anon_sym_u8_SQUOTE] = ACTIONS(2664), - [anon_sym_SQUOTE] = ACTIONS(2664), - [anon_sym_L_DQUOTE] = ACTIONS(2664), - [anon_sym_u_DQUOTE] = ACTIONS(2664), - [anon_sym_U_DQUOTE] = ACTIONS(2664), - [anon_sym_u8_DQUOTE] = ACTIONS(2664), - [anon_sym_DQUOTE] = ACTIONS(2664), - [sym_true] = ACTIONS(2662), - [sym_false] = ACTIONS(2662), - [sym_null] = ACTIONS(2662), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2662), - [anon_sym_decltype] = ACTIONS(2662), - [anon_sym_virtual] = ACTIONS(2662), - [anon_sym_explicit] = ACTIONS(2662), - [anon_sym_typename] = ACTIONS(2662), - [anon_sym_template] = ACTIONS(2662), - [anon_sym_operator] = ACTIONS(2662), - [anon_sym_try] = ACTIONS(2662), - [anon_sym_delete] = ACTIONS(2662), - [anon_sym_throw] = ACTIONS(2662), - [anon_sym_namespace] = ACTIONS(2662), - [anon_sym_using] = ACTIONS(2662), - [anon_sym_static_assert] = ACTIONS(2662), - [anon_sym_concept] = ACTIONS(2662), - [anon_sym_co_return] = ACTIONS(2662), - [anon_sym_co_yield] = ACTIONS(2662), - [anon_sym_R_DQUOTE] = ACTIONS(2664), - [anon_sym_LR_DQUOTE] = ACTIONS(2664), - [anon_sym_uR_DQUOTE] = ACTIONS(2664), - [anon_sym_UR_DQUOTE] = ACTIONS(2664), - [anon_sym_u8R_DQUOTE] = ACTIONS(2664), - [anon_sym_co_await] = ACTIONS(2662), - [anon_sym_new] = ACTIONS(2662), - [anon_sym_requires] = ACTIONS(2662), - [sym_this] = ACTIONS(2662), - [sym_nullptr] = ACTIONS(2662), + [1108] = { + [ts_builtin_sym_end] = ACTIONS(3030), + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, - [1060] = { - [sym_identifier] = ACTIONS(2790), - [aux_sym_preproc_include_token1] = ACTIONS(2790), - [aux_sym_preproc_def_token1] = ACTIONS(2790), - [aux_sym_preproc_if_token1] = ACTIONS(2790), - [aux_sym_preproc_if_token2] = ACTIONS(2790), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2790), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2790), - [sym_preproc_directive] = ACTIONS(2790), - [anon_sym_LPAREN2] = ACTIONS(2792), - [anon_sym_BANG] = ACTIONS(2792), - [anon_sym_TILDE] = ACTIONS(2792), - [anon_sym_DASH] = ACTIONS(2790), - [anon_sym_PLUS] = ACTIONS(2790), - [anon_sym_STAR] = ACTIONS(2792), - [anon_sym_AMP_AMP] = ACTIONS(2792), - [anon_sym_AMP] = ACTIONS(2790), - [anon_sym_SEMI] = ACTIONS(2792), - [anon_sym_typedef] = ACTIONS(2790), - [anon_sym_extern] = ACTIONS(2790), - [anon_sym___attribute__] = ACTIONS(2790), - [anon_sym_COLON_COLON] = ACTIONS(2792), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2792), - [anon_sym___declspec] = ACTIONS(2790), - [anon_sym___based] = ACTIONS(2790), - [anon_sym___cdecl] = ACTIONS(2790), - [anon_sym___clrcall] = ACTIONS(2790), - [anon_sym___stdcall] = ACTIONS(2790), - [anon_sym___fastcall] = ACTIONS(2790), - [anon_sym___thiscall] = ACTIONS(2790), - [anon_sym___vectorcall] = ACTIONS(2790), - [anon_sym_LBRACE] = ACTIONS(2792), - [anon_sym_LBRACK] = ACTIONS(2790), - [anon_sym_static] = ACTIONS(2790), - [anon_sym_register] = ACTIONS(2790), - [anon_sym_inline] = ACTIONS(2790), - [anon_sym_thread_local] = ACTIONS(2790), - [anon_sym_const] = ACTIONS(2790), - [anon_sym_volatile] = ACTIONS(2790), - [anon_sym_restrict] = ACTIONS(2790), - [anon_sym__Atomic] = ACTIONS(2790), - [anon_sym_mutable] = ACTIONS(2790), - [anon_sym_constexpr] = ACTIONS(2790), - [anon_sym_constinit] = ACTIONS(2790), - [anon_sym_consteval] = ACTIONS(2790), - [anon_sym_signed] = ACTIONS(2790), - [anon_sym_unsigned] = ACTIONS(2790), - [anon_sym_long] = ACTIONS(2790), - [anon_sym_short] = ACTIONS(2790), - [sym_primitive_type] = ACTIONS(2790), - [anon_sym_enum] = ACTIONS(2790), - [anon_sym_class] = ACTIONS(2790), - [anon_sym_struct] = ACTIONS(2790), - [anon_sym_union] = ACTIONS(2790), - [anon_sym_if] = ACTIONS(2790), - [anon_sym_switch] = ACTIONS(2790), - [anon_sym_case] = ACTIONS(2790), - [anon_sym_default] = ACTIONS(2790), - [anon_sym_while] = ACTIONS(2790), - [anon_sym_do] = ACTIONS(2790), - [anon_sym_for] = ACTIONS(2790), - [anon_sym_return] = ACTIONS(2790), - [anon_sym_break] = ACTIONS(2790), - [anon_sym_continue] = ACTIONS(2790), - [anon_sym_goto] = ACTIONS(2790), - [anon_sym_not] = ACTIONS(2790), - [anon_sym_compl] = ACTIONS(2790), - [anon_sym_DASH_DASH] = ACTIONS(2792), - [anon_sym_PLUS_PLUS] = ACTIONS(2792), - [anon_sym_sizeof] = ACTIONS(2790), - [sym_number_literal] = ACTIONS(2792), - [anon_sym_L_SQUOTE] = ACTIONS(2792), - [anon_sym_u_SQUOTE] = ACTIONS(2792), - [anon_sym_U_SQUOTE] = ACTIONS(2792), - [anon_sym_u8_SQUOTE] = ACTIONS(2792), - [anon_sym_SQUOTE] = ACTIONS(2792), - [anon_sym_L_DQUOTE] = ACTIONS(2792), - [anon_sym_u_DQUOTE] = ACTIONS(2792), - [anon_sym_U_DQUOTE] = ACTIONS(2792), - [anon_sym_u8_DQUOTE] = ACTIONS(2792), - [anon_sym_DQUOTE] = ACTIONS(2792), - [sym_true] = ACTIONS(2790), - [sym_false] = ACTIONS(2790), - [sym_null] = ACTIONS(2790), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2790), - [anon_sym_decltype] = ACTIONS(2790), - [anon_sym_virtual] = ACTIONS(2790), - [anon_sym_explicit] = ACTIONS(2790), - [anon_sym_typename] = ACTIONS(2790), - [anon_sym_template] = ACTIONS(2790), - [anon_sym_operator] = ACTIONS(2790), - [anon_sym_try] = ACTIONS(2790), - [anon_sym_delete] = ACTIONS(2790), - [anon_sym_throw] = ACTIONS(2790), - [anon_sym_namespace] = ACTIONS(2790), - [anon_sym_using] = ACTIONS(2790), - [anon_sym_static_assert] = ACTIONS(2790), - [anon_sym_concept] = ACTIONS(2790), - [anon_sym_co_return] = ACTIONS(2790), - [anon_sym_co_yield] = ACTIONS(2790), - [anon_sym_R_DQUOTE] = ACTIONS(2792), - [anon_sym_LR_DQUOTE] = ACTIONS(2792), - [anon_sym_uR_DQUOTE] = ACTIONS(2792), - [anon_sym_UR_DQUOTE] = ACTIONS(2792), - [anon_sym_u8R_DQUOTE] = ACTIONS(2792), - [anon_sym_co_await] = ACTIONS(2790), - [anon_sym_new] = ACTIONS(2790), - [anon_sym_requires] = ACTIONS(2790), - [sym_this] = ACTIONS(2790), - [sym_nullptr] = ACTIONS(2790), + [1109] = { + [ts_builtin_sym_end] = ACTIONS(3030), + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, - [1061] = { - [sym_identifier] = ACTIONS(2794), - [aux_sym_preproc_include_token1] = ACTIONS(2794), - [aux_sym_preproc_def_token1] = ACTIONS(2794), - [aux_sym_preproc_if_token1] = ACTIONS(2794), - [aux_sym_preproc_if_token2] = ACTIONS(2794), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2794), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2794), - [sym_preproc_directive] = ACTIONS(2794), - [anon_sym_LPAREN2] = ACTIONS(2796), - [anon_sym_BANG] = ACTIONS(2796), - [anon_sym_TILDE] = ACTIONS(2796), - [anon_sym_DASH] = ACTIONS(2794), - [anon_sym_PLUS] = ACTIONS(2794), - [anon_sym_STAR] = ACTIONS(2796), - [anon_sym_AMP_AMP] = ACTIONS(2796), - [anon_sym_AMP] = ACTIONS(2794), - [anon_sym_SEMI] = ACTIONS(2796), - [anon_sym_typedef] = ACTIONS(2794), - [anon_sym_extern] = ACTIONS(2794), - [anon_sym___attribute__] = ACTIONS(2794), - [anon_sym_COLON_COLON] = ACTIONS(2796), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2796), - [anon_sym___declspec] = ACTIONS(2794), - [anon_sym___based] = ACTIONS(2794), - [anon_sym___cdecl] = ACTIONS(2794), - [anon_sym___clrcall] = ACTIONS(2794), - [anon_sym___stdcall] = ACTIONS(2794), - [anon_sym___fastcall] = ACTIONS(2794), - [anon_sym___thiscall] = ACTIONS(2794), - [anon_sym___vectorcall] = ACTIONS(2794), - [anon_sym_LBRACE] = ACTIONS(2796), - [anon_sym_LBRACK] = ACTIONS(2794), - [anon_sym_static] = ACTIONS(2794), - [anon_sym_register] = ACTIONS(2794), - [anon_sym_inline] = ACTIONS(2794), - [anon_sym_thread_local] = ACTIONS(2794), - [anon_sym_const] = ACTIONS(2794), - [anon_sym_volatile] = ACTIONS(2794), - [anon_sym_restrict] = ACTIONS(2794), - [anon_sym__Atomic] = ACTIONS(2794), - [anon_sym_mutable] = ACTIONS(2794), - [anon_sym_constexpr] = ACTIONS(2794), - [anon_sym_constinit] = ACTIONS(2794), - [anon_sym_consteval] = ACTIONS(2794), - [anon_sym_signed] = ACTIONS(2794), - [anon_sym_unsigned] = ACTIONS(2794), - [anon_sym_long] = ACTIONS(2794), - [anon_sym_short] = ACTIONS(2794), - [sym_primitive_type] = ACTIONS(2794), - [anon_sym_enum] = ACTIONS(2794), - [anon_sym_class] = ACTIONS(2794), - [anon_sym_struct] = ACTIONS(2794), - [anon_sym_union] = ACTIONS(2794), - [anon_sym_if] = ACTIONS(2794), - [anon_sym_switch] = ACTIONS(2794), - [anon_sym_case] = ACTIONS(2794), - [anon_sym_default] = ACTIONS(2794), - [anon_sym_while] = ACTIONS(2794), - [anon_sym_do] = ACTIONS(2794), - [anon_sym_for] = ACTIONS(2794), - [anon_sym_return] = ACTIONS(2794), - [anon_sym_break] = ACTIONS(2794), - [anon_sym_continue] = ACTIONS(2794), - [anon_sym_goto] = ACTIONS(2794), - [anon_sym_not] = ACTIONS(2794), - [anon_sym_compl] = ACTIONS(2794), - [anon_sym_DASH_DASH] = ACTIONS(2796), - [anon_sym_PLUS_PLUS] = ACTIONS(2796), - [anon_sym_sizeof] = ACTIONS(2794), - [sym_number_literal] = ACTIONS(2796), - [anon_sym_L_SQUOTE] = ACTIONS(2796), - [anon_sym_u_SQUOTE] = ACTIONS(2796), - [anon_sym_U_SQUOTE] = ACTIONS(2796), - [anon_sym_u8_SQUOTE] = ACTIONS(2796), - [anon_sym_SQUOTE] = ACTIONS(2796), - [anon_sym_L_DQUOTE] = ACTIONS(2796), - [anon_sym_u_DQUOTE] = ACTIONS(2796), - [anon_sym_U_DQUOTE] = ACTIONS(2796), - [anon_sym_u8_DQUOTE] = ACTIONS(2796), - [anon_sym_DQUOTE] = ACTIONS(2796), - [sym_true] = ACTIONS(2794), - [sym_false] = ACTIONS(2794), - [sym_null] = ACTIONS(2794), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2794), - [anon_sym_decltype] = ACTIONS(2794), - [anon_sym_virtual] = ACTIONS(2794), - [anon_sym_explicit] = ACTIONS(2794), - [anon_sym_typename] = ACTIONS(2794), - [anon_sym_template] = ACTIONS(2794), - [anon_sym_operator] = ACTIONS(2794), - [anon_sym_try] = ACTIONS(2794), - [anon_sym_delete] = ACTIONS(2794), - [anon_sym_throw] = ACTIONS(2794), - [anon_sym_namespace] = ACTIONS(2794), - [anon_sym_using] = ACTIONS(2794), - [anon_sym_static_assert] = ACTIONS(2794), - [anon_sym_concept] = ACTIONS(2794), - [anon_sym_co_return] = ACTIONS(2794), - [anon_sym_co_yield] = ACTIONS(2794), - [anon_sym_R_DQUOTE] = ACTIONS(2796), - [anon_sym_LR_DQUOTE] = ACTIONS(2796), - [anon_sym_uR_DQUOTE] = ACTIONS(2796), - [anon_sym_UR_DQUOTE] = ACTIONS(2796), - [anon_sym_u8R_DQUOTE] = ACTIONS(2796), - [anon_sym_co_await] = ACTIONS(2794), - [anon_sym_new] = ACTIONS(2794), - [anon_sym_requires] = ACTIONS(2794), - [sym_this] = ACTIONS(2794), - [sym_nullptr] = ACTIONS(2794), + [1110] = { + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token2] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, - [1062] = { - [sym_identifier] = ACTIONS(2798), - [aux_sym_preproc_include_token1] = ACTIONS(2798), - [aux_sym_preproc_def_token1] = ACTIONS(2798), - [aux_sym_preproc_if_token1] = ACTIONS(2798), - [aux_sym_preproc_if_token2] = ACTIONS(2798), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2798), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2798), - [sym_preproc_directive] = ACTIONS(2798), - [anon_sym_LPAREN2] = ACTIONS(2800), - [anon_sym_BANG] = ACTIONS(2800), - [anon_sym_TILDE] = ACTIONS(2800), - [anon_sym_DASH] = ACTIONS(2798), - [anon_sym_PLUS] = ACTIONS(2798), - [anon_sym_STAR] = ACTIONS(2800), - [anon_sym_AMP_AMP] = ACTIONS(2800), - [anon_sym_AMP] = ACTIONS(2798), - [anon_sym_SEMI] = ACTIONS(2800), - [anon_sym_typedef] = ACTIONS(2798), - [anon_sym_extern] = ACTIONS(2798), - [anon_sym___attribute__] = ACTIONS(2798), - [anon_sym_COLON_COLON] = ACTIONS(2800), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2800), - [anon_sym___declspec] = ACTIONS(2798), - [anon_sym___based] = ACTIONS(2798), - [anon_sym___cdecl] = ACTIONS(2798), - [anon_sym___clrcall] = ACTIONS(2798), - [anon_sym___stdcall] = ACTIONS(2798), - [anon_sym___fastcall] = ACTIONS(2798), - [anon_sym___thiscall] = ACTIONS(2798), - [anon_sym___vectorcall] = ACTIONS(2798), - [anon_sym_LBRACE] = ACTIONS(2800), - [anon_sym_LBRACK] = ACTIONS(2798), - [anon_sym_static] = ACTIONS(2798), - [anon_sym_register] = ACTIONS(2798), - [anon_sym_inline] = ACTIONS(2798), - [anon_sym_thread_local] = ACTIONS(2798), - [anon_sym_const] = ACTIONS(2798), - [anon_sym_volatile] = ACTIONS(2798), - [anon_sym_restrict] = ACTIONS(2798), - [anon_sym__Atomic] = ACTIONS(2798), - [anon_sym_mutable] = ACTIONS(2798), - [anon_sym_constexpr] = ACTIONS(2798), - [anon_sym_constinit] = ACTIONS(2798), - [anon_sym_consteval] = ACTIONS(2798), - [anon_sym_signed] = ACTIONS(2798), - [anon_sym_unsigned] = ACTIONS(2798), - [anon_sym_long] = ACTIONS(2798), - [anon_sym_short] = ACTIONS(2798), - [sym_primitive_type] = ACTIONS(2798), - [anon_sym_enum] = ACTIONS(2798), - [anon_sym_class] = ACTIONS(2798), - [anon_sym_struct] = ACTIONS(2798), - [anon_sym_union] = ACTIONS(2798), - [anon_sym_if] = ACTIONS(2798), - [anon_sym_switch] = ACTIONS(2798), - [anon_sym_case] = ACTIONS(2798), - [anon_sym_default] = ACTIONS(2798), - [anon_sym_while] = ACTIONS(2798), - [anon_sym_do] = ACTIONS(2798), - [anon_sym_for] = ACTIONS(2798), - [anon_sym_return] = ACTIONS(2798), - [anon_sym_break] = ACTIONS(2798), - [anon_sym_continue] = ACTIONS(2798), - [anon_sym_goto] = ACTIONS(2798), - [anon_sym_not] = ACTIONS(2798), - [anon_sym_compl] = ACTIONS(2798), - [anon_sym_DASH_DASH] = ACTIONS(2800), - [anon_sym_PLUS_PLUS] = ACTIONS(2800), - [anon_sym_sizeof] = ACTIONS(2798), - [sym_number_literal] = ACTIONS(2800), - [anon_sym_L_SQUOTE] = ACTIONS(2800), - [anon_sym_u_SQUOTE] = ACTIONS(2800), - [anon_sym_U_SQUOTE] = ACTIONS(2800), - [anon_sym_u8_SQUOTE] = ACTIONS(2800), - [anon_sym_SQUOTE] = ACTIONS(2800), - [anon_sym_L_DQUOTE] = ACTIONS(2800), - [anon_sym_u_DQUOTE] = ACTIONS(2800), - [anon_sym_U_DQUOTE] = ACTIONS(2800), - [anon_sym_u8_DQUOTE] = ACTIONS(2800), - [anon_sym_DQUOTE] = ACTIONS(2800), - [sym_true] = ACTIONS(2798), - [sym_false] = ACTIONS(2798), - [sym_null] = ACTIONS(2798), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2798), - [anon_sym_decltype] = ACTIONS(2798), - [anon_sym_virtual] = ACTIONS(2798), - [anon_sym_explicit] = ACTIONS(2798), - [anon_sym_typename] = ACTIONS(2798), - [anon_sym_template] = ACTIONS(2798), - [anon_sym_operator] = ACTIONS(2798), - [anon_sym_try] = ACTIONS(2798), - [anon_sym_delete] = ACTIONS(2798), - [anon_sym_throw] = ACTIONS(2798), - [anon_sym_namespace] = ACTIONS(2798), - [anon_sym_using] = ACTIONS(2798), - [anon_sym_static_assert] = ACTIONS(2798), - [anon_sym_concept] = ACTIONS(2798), - [anon_sym_co_return] = ACTIONS(2798), - [anon_sym_co_yield] = ACTIONS(2798), - [anon_sym_R_DQUOTE] = ACTIONS(2800), - [anon_sym_LR_DQUOTE] = ACTIONS(2800), - [anon_sym_uR_DQUOTE] = ACTIONS(2800), - [anon_sym_UR_DQUOTE] = ACTIONS(2800), - [anon_sym_u8R_DQUOTE] = ACTIONS(2800), - [anon_sym_co_await] = ACTIONS(2798), - [anon_sym_new] = ACTIONS(2798), - [anon_sym_requires] = ACTIONS(2798), - [sym_this] = ACTIONS(2798), - [sym_nullptr] = ACTIONS(2798), + [1111] = { + [sym_identifier] = ACTIONS(3085), + [aux_sym_preproc_include_token1] = ACTIONS(3085), + [aux_sym_preproc_def_token1] = ACTIONS(3085), + [aux_sym_preproc_if_token1] = ACTIONS(3085), + [aux_sym_preproc_if_token2] = ACTIONS(3085), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3085), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3085), + [sym_preproc_directive] = ACTIONS(3085), + [anon_sym_LPAREN2] = ACTIONS(3087), + [anon_sym_BANG] = ACTIONS(3087), + [anon_sym_TILDE] = ACTIONS(3087), + [anon_sym_DASH] = ACTIONS(3085), + [anon_sym_PLUS] = ACTIONS(3085), + [anon_sym_STAR] = ACTIONS(3087), + [anon_sym_AMP_AMP] = ACTIONS(3087), + [anon_sym_AMP] = ACTIONS(3085), + [anon_sym_SEMI] = ACTIONS(3087), + [anon_sym_typedef] = ACTIONS(3085), + [anon_sym_extern] = ACTIONS(3085), + [anon_sym___attribute__] = ACTIONS(3085), + [anon_sym_COLON_COLON] = ACTIONS(3087), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3087), + [anon_sym___declspec] = ACTIONS(3085), + [anon_sym___based] = ACTIONS(3085), + [anon_sym___cdecl] = ACTIONS(3085), + [anon_sym___clrcall] = ACTIONS(3085), + [anon_sym___stdcall] = ACTIONS(3085), + [anon_sym___fastcall] = ACTIONS(3085), + [anon_sym___thiscall] = ACTIONS(3085), + [anon_sym___vectorcall] = ACTIONS(3085), + [anon_sym_LBRACE] = ACTIONS(3087), + [anon_sym_LBRACK] = ACTIONS(3085), + [anon_sym_static] = ACTIONS(3085), + [anon_sym_register] = ACTIONS(3085), + [anon_sym_inline] = ACTIONS(3085), + [anon_sym_thread_local] = ACTIONS(3085), + [anon_sym_const] = ACTIONS(3085), + [anon_sym_constexpr] = ACTIONS(3085), + [anon_sym_volatile] = ACTIONS(3085), + [anon_sym_restrict] = ACTIONS(3085), + [anon_sym___restrict__] = ACTIONS(3085), + [anon_sym__Atomic] = ACTIONS(3085), + [anon_sym__Noreturn] = ACTIONS(3085), + [anon_sym_noreturn] = ACTIONS(3085), + [anon_sym_mutable] = ACTIONS(3085), + [anon_sym_constinit] = ACTIONS(3085), + [anon_sym_consteval] = ACTIONS(3085), + [anon_sym_signed] = ACTIONS(3085), + [anon_sym_unsigned] = ACTIONS(3085), + [anon_sym_long] = ACTIONS(3085), + [anon_sym_short] = ACTIONS(3085), + [sym_primitive_type] = ACTIONS(3085), + [anon_sym_enum] = ACTIONS(3085), + [anon_sym_class] = ACTIONS(3085), + [anon_sym_struct] = ACTIONS(3085), + [anon_sym_union] = ACTIONS(3085), + [anon_sym_if] = ACTIONS(3085), + [anon_sym_else] = ACTIONS(3085), + [anon_sym_switch] = ACTIONS(3085), + [anon_sym_case] = ACTIONS(3085), + [anon_sym_default] = ACTIONS(3085), + [anon_sym_while] = ACTIONS(3085), + [anon_sym_do] = ACTIONS(3085), + [anon_sym_for] = ACTIONS(3085), + [anon_sym_return] = ACTIONS(3085), + [anon_sym_break] = ACTIONS(3085), + [anon_sym_continue] = ACTIONS(3085), + [anon_sym_goto] = ACTIONS(3085), + [anon_sym_not] = ACTIONS(3085), + [anon_sym_compl] = ACTIONS(3085), + [anon_sym_DASH_DASH] = ACTIONS(3087), + [anon_sym_PLUS_PLUS] = ACTIONS(3087), + [anon_sym_sizeof] = ACTIONS(3085), + [anon_sym_offsetof] = ACTIONS(3085), + [anon_sym__Generic] = ACTIONS(3085), + [anon_sym_asm] = ACTIONS(3085), + [anon_sym___asm__] = ACTIONS(3085), + [sym_number_literal] = ACTIONS(3087), + [anon_sym_L_SQUOTE] = ACTIONS(3087), + [anon_sym_u_SQUOTE] = ACTIONS(3087), + [anon_sym_U_SQUOTE] = ACTIONS(3087), + [anon_sym_u8_SQUOTE] = ACTIONS(3087), + [anon_sym_SQUOTE] = ACTIONS(3087), + [anon_sym_L_DQUOTE] = ACTIONS(3087), + [anon_sym_u_DQUOTE] = ACTIONS(3087), + [anon_sym_U_DQUOTE] = ACTIONS(3087), + [anon_sym_u8_DQUOTE] = ACTIONS(3087), + [anon_sym_DQUOTE] = ACTIONS(3087), + [sym_true] = ACTIONS(3085), + [sym_false] = ACTIONS(3085), + [anon_sym_NULL] = ACTIONS(3085), + [anon_sym_nullptr] = ACTIONS(3085), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3085), + [anon_sym_decltype] = ACTIONS(3085), + [anon_sym_virtual] = ACTIONS(3085), + [anon_sym_explicit] = ACTIONS(3085), + [anon_sym_typename] = ACTIONS(3085), + [anon_sym_template] = ACTIONS(3085), + [anon_sym_operator] = ACTIONS(3085), + [anon_sym_try] = ACTIONS(3085), + [anon_sym_delete] = ACTIONS(3085), + [anon_sym_throw] = ACTIONS(3085), + [anon_sym_namespace] = ACTIONS(3085), + [anon_sym_using] = ACTIONS(3085), + [anon_sym_static_assert] = ACTIONS(3085), + [anon_sym_concept] = ACTIONS(3085), + [anon_sym_co_return] = ACTIONS(3085), + [anon_sym_co_yield] = ACTIONS(3085), + [anon_sym_R_DQUOTE] = ACTIONS(3087), + [anon_sym_LR_DQUOTE] = ACTIONS(3087), + [anon_sym_uR_DQUOTE] = ACTIONS(3087), + [anon_sym_UR_DQUOTE] = ACTIONS(3087), + [anon_sym_u8R_DQUOTE] = ACTIONS(3087), + [anon_sym_co_await] = ACTIONS(3085), + [anon_sym_new] = ACTIONS(3085), + [anon_sym_requires] = ACTIONS(3085), + [sym_this] = ACTIONS(3085), }, - [1063] = { - [sym_identifier] = ACTIONS(2802), - [aux_sym_preproc_include_token1] = ACTIONS(2802), - [aux_sym_preproc_def_token1] = ACTIONS(2802), - [aux_sym_preproc_if_token1] = ACTIONS(2802), - [aux_sym_preproc_if_token2] = ACTIONS(2802), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2802), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2802), - [sym_preproc_directive] = ACTIONS(2802), - [anon_sym_LPAREN2] = ACTIONS(2804), - [anon_sym_BANG] = ACTIONS(2804), - [anon_sym_TILDE] = ACTIONS(2804), - [anon_sym_DASH] = ACTIONS(2802), - [anon_sym_PLUS] = ACTIONS(2802), - [anon_sym_STAR] = ACTIONS(2804), - [anon_sym_AMP_AMP] = ACTIONS(2804), - [anon_sym_AMP] = ACTIONS(2802), - [anon_sym_SEMI] = ACTIONS(2804), - [anon_sym_typedef] = ACTIONS(2802), - [anon_sym_extern] = ACTIONS(2802), - [anon_sym___attribute__] = ACTIONS(2802), - [anon_sym_COLON_COLON] = ACTIONS(2804), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2804), - [anon_sym___declspec] = ACTIONS(2802), - [anon_sym___based] = ACTIONS(2802), - [anon_sym___cdecl] = ACTIONS(2802), - [anon_sym___clrcall] = ACTIONS(2802), - [anon_sym___stdcall] = ACTIONS(2802), - [anon_sym___fastcall] = ACTIONS(2802), - [anon_sym___thiscall] = ACTIONS(2802), - [anon_sym___vectorcall] = ACTIONS(2802), - [anon_sym_LBRACE] = ACTIONS(2804), - [anon_sym_LBRACK] = ACTIONS(2802), - [anon_sym_static] = ACTIONS(2802), - [anon_sym_register] = ACTIONS(2802), - [anon_sym_inline] = ACTIONS(2802), - [anon_sym_thread_local] = ACTIONS(2802), - [anon_sym_const] = ACTIONS(2802), - [anon_sym_volatile] = ACTIONS(2802), - [anon_sym_restrict] = ACTIONS(2802), - [anon_sym__Atomic] = ACTIONS(2802), - [anon_sym_mutable] = ACTIONS(2802), - [anon_sym_constexpr] = ACTIONS(2802), - [anon_sym_constinit] = ACTIONS(2802), - [anon_sym_consteval] = ACTIONS(2802), - [anon_sym_signed] = ACTIONS(2802), - [anon_sym_unsigned] = ACTIONS(2802), - [anon_sym_long] = ACTIONS(2802), - [anon_sym_short] = ACTIONS(2802), - [sym_primitive_type] = ACTIONS(2802), - [anon_sym_enum] = ACTIONS(2802), - [anon_sym_class] = ACTIONS(2802), - [anon_sym_struct] = ACTIONS(2802), - [anon_sym_union] = ACTIONS(2802), - [anon_sym_if] = ACTIONS(2802), - [anon_sym_switch] = ACTIONS(2802), - [anon_sym_case] = ACTIONS(2802), - [anon_sym_default] = ACTIONS(2802), - [anon_sym_while] = ACTIONS(2802), - [anon_sym_do] = ACTIONS(2802), - [anon_sym_for] = ACTIONS(2802), - [anon_sym_return] = ACTIONS(2802), - [anon_sym_break] = ACTIONS(2802), - [anon_sym_continue] = ACTIONS(2802), - [anon_sym_goto] = ACTIONS(2802), - [anon_sym_not] = ACTIONS(2802), - [anon_sym_compl] = ACTIONS(2802), - [anon_sym_DASH_DASH] = ACTIONS(2804), - [anon_sym_PLUS_PLUS] = ACTIONS(2804), - [anon_sym_sizeof] = ACTIONS(2802), - [sym_number_literal] = ACTIONS(2804), - [anon_sym_L_SQUOTE] = ACTIONS(2804), - [anon_sym_u_SQUOTE] = ACTIONS(2804), - [anon_sym_U_SQUOTE] = ACTIONS(2804), - [anon_sym_u8_SQUOTE] = ACTIONS(2804), - [anon_sym_SQUOTE] = ACTIONS(2804), - [anon_sym_L_DQUOTE] = ACTIONS(2804), - [anon_sym_u_DQUOTE] = ACTIONS(2804), - [anon_sym_U_DQUOTE] = ACTIONS(2804), - [anon_sym_u8_DQUOTE] = ACTIONS(2804), - [anon_sym_DQUOTE] = ACTIONS(2804), - [sym_true] = ACTIONS(2802), - [sym_false] = ACTIONS(2802), - [sym_null] = ACTIONS(2802), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2802), - [anon_sym_decltype] = ACTIONS(2802), - [anon_sym_virtual] = ACTIONS(2802), - [anon_sym_explicit] = ACTIONS(2802), - [anon_sym_typename] = ACTIONS(2802), - [anon_sym_template] = ACTIONS(2802), - [anon_sym_operator] = ACTIONS(2802), - [anon_sym_try] = ACTIONS(2802), - [anon_sym_delete] = ACTIONS(2802), - [anon_sym_throw] = ACTIONS(2802), - [anon_sym_namespace] = ACTIONS(2802), - [anon_sym_using] = ACTIONS(2802), - [anon_sym_static_assert] = ACTIONS(2802), - [anon_sym_concept] = ACTIONS(2802), - [anon_sym_co_return] = ACTIONS(2802), - [anon_sym_co_yield] = ACTIONS(2802), - [anon_sym_R_DQUOTE] = ACTIONS(2804), - [anon_sym_LR_DQUOTE] = ACTIONS(2804), - [anon_sym_uR_DQUOTE] = ACTIONS(2804), - [anon_sym_UR_DQUOTE] = ACTIONS(2804), - [anon_sym_u8R_DQUOTE] = ACTIONS(2804), - [anon_sym_co_await] = ACTIONS(2802), - [anon_sym_new] = ACTIONS(2802), - [anon_sym_requires] = ACTIONS(2802), - [sym_this] = ACTIONS(2802), - [sym_nullptr] = ACTIONS(2802), + [1112] = { + [ts_builtin_sym_end] = ACTIONS(3030), + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, - [1064] = { - [ts_builtin_sym_end] = ACTIONS(2836), - [sym_identifier] = ACTIONS(2834), - [aux_sym_preproc_include_token1] = ACTIONS(2834), - [aux_sym_preproc_def_token1] = ACTIONS(2834), - [aux_sym_preproc_if_token1] = ACTIONS(2834), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2834), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2834), - [sym_preproc_directive] = ACTIONS(2834), - [anon_sym_LPAREN2] = ACTIONS(2836), - [anon_sym_BANG] = ACTIONS(2836), - [anon_sym_TILDE] = ACTIONS(2836), - [anon_sym_DASH] = ACTIONS(2834), - [anon_sym_PLUS] = ACTIONS(2834), - [anon_sym_STAR] = ACTIONS(2836), - [anon_sym_AMP_AMP] = ACTIONS(2836), - [anon_sym_AMP] = ACTIONS(2834), - [anon_sym_SEMI] = ACTIONS(2836), - [anon_sym_typedef] = ACTIONS(2834), - [anon_sym_extern] = ACTIONS(2834), - [anon_sym___attribute__] = ACTIONS(2834), - [anon_sym_COLON_COLON] = ACTIONS(2836), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2836), - [anon_sym___declspec] = ACTIONS(2834), - [anon_sym___based] = ACTIONS(2834), - [anon_sym___cdecl] = ACTIONS(2834), - [anon_sym___clrcall] = ACTIONS(2834), - [anon_sym___stdcall] = ACTIONS(2834), - [anon_sym___fastcall] = ACTIONS(2834), - [anon_sym___thiscall] = ACTIONS(2834), - [anon_sym___vectorcall] = ACTIONS(2834), - [anon_sym_LBRACE] = ACTIONS(2836), - [anon_sym_LBRACK] = ACTIONS(2834), - [anon_sym_static] = ACTIONS(2834), - [anon_sym_register] = ACTIONS(2834), - [anon_sym_inline] = ACTIONS(2834), - [anon_sym_thread_local] = ACTIONS(2834), - [anon_sym_const] = ACTIONS(2834), - [anon_sym_volatile] = ACTIONS(2834), - [anon_sym_restrict] = ACTIONS(2834), - [anon_sym__Atomic] = ACTIONS(2834), - [anon_sym_mutable] = ACTIONS(2834), - [anon_sym_constexpr] = ACTIONS(2834), - [anon_sym_constinit] = ACTIONS(2834), - [anon_sym_consteval] = ACTIONS(2834), - [anon_sym_signed] = ACTIONS(2834), - [anon_sym_unsigned] = ACTIONS(2834), - [anon_sym_long] = ACTIONS(2834), - [anon_sym_short] = ACTIONS(2834), - [sym_primitive_type] = ACTIONS(2834), - [anon_sym_enum] = ACTIONS(2834), - [anon_sym_class] = ACTIONS(2834), - [anon_sym_struct] = ACTIONS(2834), - [anon_sym_union] = ACTIONS(2834), - [anon_sym_if] = ACTIONS(2834), - [anon_sym_switch] = ACTIONS(2834), - [anon_sym_case] = ACTIONS(2834), - [anon_sym_default] = ACTIONS(2834), - [anon_sym_while] = ACTIONS(2834), - [anon_sym_do] = ACTIONS(2834), - [anon_sym_for] = ACTIONS(2834), - [anon_sym_return] = ACTIONS(2834), - [anon_sym_break] = ACTIONS(2834), - [anon_sym_continue] = ACTIONS(2834), - [anon_sym_goto] = ACTIONS(2834), - [anon_sym_not] = ACTIONS(2834), - [anon_sym_compl] = ACTIONS(2834), - [anon_sym_DASH_DASH] = ACTIONS(2836), - [anon_sym_PLUS_PLUS] = ACTIONS(2836), - [anon_sym_sizeof] = ACTIONS(2834), - [sym_number_literal] = ACTIONS(2836), - [anon_sym_L_SQUOTE] = ACTIONS(2836), - [anon_sym_u_SQUOTE] = ACTIONS(2836), - [anon_sym_U_SQUOTE] = ACTIONS(2836), - [anon_sym_u8_SQUOTE] = ACTIONS(2836), - [anon_sym_SQUOTE] = ACTIONS(2836), - [anon_sym_L_DQUOTE] = ACTIONS(2836), - [anon_sym_u_DQUOTE] = ACTIONS(2836), - [anon_sym_U_DQUOTE] = ACTIONS(2836), - [anon_sym_u8_DQUOTE] = ACTIONS(2836), - [anon_sym_DQUOTE] = ACTIONS(2836), - [sym_true] = ACTIONS(2834), - [sym_false] = ACTIONS(2834), - [sym_null] = ACTIONS(2834), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2834), - [anon_sym_decltype] = ACTIONS(2834), - [anon_sym_virtual] = ACTIONS(2834), - [anon_sym_explicit] = ACTIONS(2834), - [anon_sym_typename] = ACTIONS(2834), - [anon_sym_template] = ACTIONS(2834), - [anon_sym_operator] = ACTIONS(2834), - [anon_sym_try] = ACTIONS(2834), - [anon_sym_delete] = ACTIONS(2834), - [anon_sym_throw] = ACTIONS(2834), - [anon_sym_namespace] = ACTIONS(2834), - [anon_sym_using] = ACTIONS(2834), - [anon_sym_static_assert] = ACTIONS(2834), - [anon_sym_concept] = ACTIONS(2834), - [anon_sym_co_return] = ACTIONS(2834), - [anon_sym_co_yield] = ACTIONS(2834), - [anon_sym_R_DQUOTE] = ACTIONS(2836), - [anon_sym_LR_DQUOTE] = ACTIONS(2836), - [anon_sym_uR_DQUOTE] = ACTIONS(2836), - [anon_sym_UR_DQUOTE] = ACTIONS(2836), - [anon_sym_u8R_DQUOTE] = ACTIONS(2836), - [anon_sym_co_await] = ACTIONS(2834), - [anon_sym_new] = ACTIONS(2834), - [anon_sym_requires] = ACTIONS(2834), - [sym_this] = ACTIONS(2834), - [sym_nullptr] = ACTIONS(2834), + [1113] = { + [sym_identifier] = ACTIONS(3012), + [aux_sym_preproc_include_token1] = ACTIONS(3012), + [aux_sym_preproc_def_token1] = ACTIONS(3012), + [aux_sym_preproc_if_token1] = ACTIONS(3012), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3012), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3012), + [sym_preproc_directive] = ACTIONS(3012), + [anon_sym_LPAREN2] = ACTIONS(3014), + [anon_sym_BANG] = ACTIONS(3014), + [anon_sym_TILDE] = ACTIONS(3014), + [anon_sym_DASH] = ACTIONS(3012), + [anon_sym_PLUS] = ACTIONS(3012), + [anon_sym_STAR] = ACTIONS(3014), + [anon_sym_AMP_AMP] = ACTIONS(3014), + [anon_sym_AMP] = ACTIONS(3012), + [anon_sym_SEMI] = ACTIONS(3014), + [anon_sym_typedef] = ACTIONS(3012), + [anon_sym_extern] = ACTIONS(3012), + [anon_sym___attribute__] = ACTIONS(3012), + [anon_sym_COLON_COLON] = ACTIONS(3014), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3014), + [anon_sym___declspec] = ACTIONS(3012), + [anon_sym___based] = ACTIONS(3012), + [anon_sym___cdecl] = ACTIONS(3012), + [anon_sym___clrcall] = ACTIONS(3012), + [anon_sym___stdcall] = ACTIONS(3012), + [anon_sym___fastcall] = ACTIONS(3012), + [anon_sym___thiscall] = ACTIONS(3012), + [anon_sym___vectorcall] = ACTIONS(3012), + [anon_sym_LBRACE] = ACTIONS(3014), + [anon_sym_RBRACE] = ACTIONS(3014), + [anon_sym_LBRACK] = ACTIONS(3012), + [anon_sym_static] = ACTIONS(3012), + [anon_sym_register] = ACTIONS(3012), + [anon_sym_inline] = ACTIONS(3012), + [anon_sym_thread_local] = ACTIONS(3012), + [anon_sym_const] = ACTIONS(3012), + [anon_sym_constexpr] = ACTIONS(3012), + [anon_sym_volatile] = ACTIONS(3012), + [anon_sym_restrict] = ACTIONS(3012), + [anon_sym___restrict__] = ACTIONS(3012), + [anon_sym__Atomic] = ACTIONS(3012), + [anon_sym__Noreturn] = ACTIONS(3012), + [anon_sym_noreturn] = ACTIONS(3012), + [anon_sym_mutable] = ACTIONS(3012), + [anon_sym_constinit] = ACTIONS(3012), + [anon_sym_consteval] = ACTIONS(3012), + [anon_sym_signed] = ACTIONS(3012), + [anon_sym_unsigned] = ACTIONS(3012), + [anon_sym_long] = ACTIONS(3012), + [anon_sym_short] = ACTIONS(3012), + [sym_primitive_type] = ACTIONS(3012), + [anon_sym_enum] = ACTIONS(3012), + [anon_sym_class] = ACTIONS(3012), + [anon_sym_struct] = ACTIONS(3012), + [anon_sym_union] = ACTIONS(3012), + [anon_sym_if] = ACTIONS(3012), + [anon_sym_else] = ACTIONS(3012), + [anon_sym_switch] = ACTIONS(3012), + [anon_sym_case] = ACTIONS(3012), + [anon_sym_default] = ACTIONS(3012), + [anon_sym_while] = ACTIONS(3012), + [anon_sym_do] = ACTIONS(3012), + [anon_sym_for] = ACTIONS(3012), + [anon_sym_return] = ACTIONS(3012), + [anon_sym_break] = ACTIONS(3012), + [anon_sym_continue] = ACTIONS(3012), + [anon_sym_goto] = ACTIONS(3012), + [anon_sym_not] = ACTIONS(3012), + [anon_sym_compl] = ACTIONS(3012), + [anon_sym_DASH_DASH] = ACTIONS(3014), + [anon_sym_PLUS_PLUS] = ACTIONS(3014), + [anon_sym_sizeof] = ACTIONS(3012), + [anon_sym_offsetof] = ACTIONS(3012), + [anon_sym__Generic] = ACTIONS(3012), + [anon_sym_asm] = ACTIONS(3012), + [anon_sym___asm__] = ACTIONS(3012), + [sym_number_literal] = ACTIONS(3014), + [anon_sym_L_SQUOTE] = ACTIONS(3014), + [anon_sym_u_SQUOTE] = ACTIONS(3014), + [anon_sym_U_SQUOTE] = ACTIONS(3014), + [anon_sym_u8_SQUOTE] = ACTIONS(3014), + [anon_sym_SQUOTE] = ACTIONS(3014), + [anon_sym_L_DQUOTE] = ACTIONS(3014), + [anon_sym_u_DQUOTE] = ACTIONS(3014), + [anon_sym_U_DQUOTE] = ACTIONS(3014), + [anon_sym_u8_DQUOTE] = ACTIONS(3014), + [anon_sym_DQUOTE] = ACTIONS(3014), + [sym_true] = ACTIONS(3012), + [sym_false] = ACTIONS(3012), + [anon_sym_NULL] = ACTIONS(3012), + [anon_sym_nullptr] = ACTIONS(3012), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3012), + [anon_sym_decltype] = ACTIONS(3012), + [anon_sym_virtual] = ACTIONS(3012), + [anon_sym_explicit] = ACTIONS(3012), + [anon_sym_typename] = ACTIONS(3012), + [anon_sym_template] = ACTIONS(3012), + [anon_sym_operator] = ACTIONS(3012), + [anon_sym_try] = ACTIONS(3012), + [anon_sym_delete] = ACTIONS(3012), + [anon_sym_throw] = ACTIONS(3012), + [anon_sym_namespace] = ACTIONS(3012), + [anon_sym_using] = ACTIONS(3012), + [anon_sym_static_assert] = ACTIONS(3012), + [anon_sym_concept] = ACTIONS(3012), + [anon_sym_co_return] = ACTIONS(3012), + [anon_sym_co_yield] = ACTIONS(3012), + [anon_sym_R_DQUOTE] = ACTIONS(3014), + [anon_sym_LR_DQUOTE] = ACTIONS(3014), + [anon_sym_uR_DQUOTE] = ACTIONS(3014), + [anon_sym_UR_DQUOTE] = ACTIONS(3014), + [anon_sym_u8R_DQUOTE] = ACTIONS(3014), + [anon_sym_co_await] = ACTIONS(3012), + [anon_sym_new] = ACTIONS(3012), + [anon_sym_requires] = ACTIONS(3012), + [sym_this] = ACTIONS(3012), }, - [1065] = { - [sym_identifier] = ACTIONS(2814), - [aux_sym_preproc_include_token1] = ACTIONS(2814), - [aux_sym_preproc_def_token1] = ACTIONS(2814), - [aux_sym_preproc_if_token1] = ACTIONS(2814), - [aux_sym_preproc_if_token2] = ACTIONS(2814), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2814), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2814), - [sym_preproc_directive] = ACTIONS(2814), - [anon_sym_LPAREN2] = ACTIONS(2816), - [anon_sym_BANG] = ACTIONS(2816), - [anon_sym_TILDE] = ACTIONS(2816), - [anon_sym_DASH] = ACTIONS(2814), - [anon_sym_PLUS] = ACTIONS(2814), - [anon_sym_STAR] = ACTIONS(2816), - [anon_sym_AMP_AMP] = ACTIONS(2816), - [anon_sym_AMP] = ACTIONS(2814), - [anon_sym_SEMI] = ACTIONS(2816), - [anon_sym_typedef] = ACTIONS(2814), - [anon_sym_extern] = ACTIONS(2814), - [anon_sym___attribute__] = ACTIONS(2814), - [anon_sym_COLON_COLON] = ACTIONS(2816), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2816), - [anon_sym___declspec] = ACTIONS(2814), - [anon_sym___based] = ACTIONS(2814), - [anon_sym___cdecl] = ACTIONS(2814), - [anon_sym___clrcall] = ACTIONS(2814), - [anon_sym___stdcall] = ACTIONS(2814), - [anon_sym___fastcall] = ACTIONS(2814), - [anon_sym___thiscall] = ACTIONS(2814), - [anon_sym___vectorcall] = ACTIONS(2814), - [anon_sym_LBRACE] = ACTIONS(2816), - [anon_sym_LBRACK] = ACTIONS(2814), - [anon_sym_static] = ACTIONS(2814), - [anon_sym_register] = ACTIONS(2814), - [anon_sym_inline] = ACTIONS(2814), - [anon_sym_thread_local] = ACTIONS(2814), - [anon_sym_const] = ACTIONS(2814), - [anon_sym_volatile] = ACTIONS(2814), - [anon_sym_restrict] = ACTIONS(2814), - [anon_sym__Atomic] = ACTIONS(2814), - [anon_sym_mutable] = ACTIONS(2814), - [anon_sym_constexpr] = ACTIONS(2814), - [anon_sym_constinit] = ACTIONS(2814), - [anon_sym_consteval] = ACTIONS(2814), - [anon_sym_signed] = ACTIONS(2814), - [anon_sym_unsigned] = ACTIONS(2814), - [anon_sym_long] = ACTIONS(2814), - [anon_sym_short] = ACTIONS(2814), - [sym_primitive_type] = ACTIONS(2814), - [anon_sym_enum] = ACTIONS(2814), - [anon_sym_class] = ACTIONS(2814), - [anon_sym_struct] = ACTIONS(2814), - [anon_sym_union] = ACTIONS(2814), - [anon_sym_if] = ACTIONS(2814), - [anon_sym_switch] = ACTIONS(2814), - [anon_sym_case] = ACTIONS(2814), - [anon_sym_default] = ACTIONS(2814), - [anon_sym_while] = ACTIONS(2814), - [anon_sym_do] = ACTIONS(2814), - [anon_sym_for] = ACTIONS(2814), - [anon_sym_return] = ACTIONS(2814), - [anon_sym_break] = ACTIONS(2814), - [anon_sym_continue] = ACTIONS(2814), - [anon_sym_goto] = ACTIONS(2814), - [anon_sym_not] = ACTIONS(2814), - [anon_sym_compl] = ACTIONS(2814), - [anon_sym_DASH_DASH] = ACTIONS(2816), - [anon_sym_PLUS_PLUS] = ACTIONS(2816), - [anon_sym_sizeof] = ACTIONS(2814), - [sym_number_literal] = ACTIONS(2816), - [anon_sym_L_SQUOTE] = ACTIONS(2816), - [anon_sym_u_SQUOTE] = ACTIONS(2816), - [anon_sym_U_SQUOTE] = ACTIONS(2816), - [anon_sym_u8_SQUOTE] = ACTIONS(2816), - [anon_sym_SQUOTE] = ACTIONS(2816), - [anon_sym_L_DQUOTE] = ACTIONS(2816), - [anon_sym_u_DQUOTE] = ACTIONS(2816), - [anon_sym_U_DQUOTE] = ACTIONS(2816), - [anon_sym_u8_DQUOTE] = ACTIONS(2816), - [anon_sym_DQUOTE] = ACTIONS(2816), - [sym_true] = ACTIONS(2814), - [sym_false] = ACTIONS(2814), - [sym_null] = ACTIONS(2814), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2814), - [anon_sym_decltype] = ACTIONS(2814), - [anon_sym_virtual] = ACTIONS(2814), - [anon_sym_explicit] = ACTIONS(2814), - [anon_sym_typename] = ACTIONS(2814), - [anon_sym_template] = ACTIONS(2814), - [anon_sym_operator] = ACTIONS(2814), - [anon_sym_try] = ACTIONS(2814), - [anon_sym_delete] = ACTIONS(2814), - [anon_sym_throw] = ACTIONS(2814), - [anon_sym_namespace] = ACTIONS(2814), - [anon_sym_using] = ACTIONS(2814), - [anon_sym_static_assert] = ACTIONS(2814), - [anon_sym_concept] = ACTIONS(2814), - [anon_sym_co_return] = ACTIONS(2814), - [anon_sym_co_yield] = ACTIONS(2814), - [anon_sym_R_DQUOTE] = ACTIONS(2816), - [anon_sym_LR_DQUOTE] = ACTIONS(2816), - [anon_sym_uR_DQUOTE] = ACTIONS(2816), - [anon_sym_UR_DQUOTE] = ACTIONS(2816), - [anon_sym_u8R_DQUOTE] = ACTIONS(2816), - [anon_sym_co_await] = ACTIONS(2814), - [anon_sym_new] = ACTIONS(2814), - [anon_sym_requires] = ACTIONS(2814), - [sym_this] = ACTIONS(2814), - [sym_nullptr] = ACTIONS(2814), + [1114] = { + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token2] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, - [1066] = { - [ts_builtin_sym_end] = ACTIONS(2840), - [sym_identifier] = ACTIONS(2838), - [aux_sym_preproc_include_token1] = ACTIONS(2838), - [aux_sym_preproc_def_token1] = ACTIONS(2838), - [aux_sym_preproc_if_token1] = ACTIONS(2838), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2838), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2838), - [sym_preproc_directive] = ACTIONS(2838), - [anon_sym_LPAREN2] = ACTIONS(2840), - [anon_sym_BANG] = ACTIONS(2840), - [anon_sym_TILDE] = ACTIONS(2840), - [anon_sym_DASH] = ACTIONS(2838), - [anon_sym_PLUS] = ACTIONS(2838), - [anon_sym_STAR] = ACTIONS(2840), - [anon_sym_AMP_AMP] = ACTIONS(2840), - [anon_sym_AMP] = ACTIONS(2838), - [anon_sym_SEMI] = ACTIONS(2840), - [anon_sym_typedef] = ACTIONS(2838), - [anon_sym_extern] = ACTIONS(2838), - [anon_sym___attribute__] = ACTIONS(2838), - [anon_sym_COLON_COLON] = ACTIONS(2840), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2840), - [anon_sym___declspec] = ACTIONS(2838), - [anon_sym___based] = ACTIONS(2838), - [anon_sym___cdecl] = ACTIONS(2838), - [anon_sym___clrcall] = ACTIONS(2838), - [anon_sym___stdcall] = ACTIONS(2838), - [anon_sym___fastcall] = ACTIONS(2838), - [anon_sym___thiscall] = ACTIONS(2838), - [anon_sym___vectorcall] = ACTIONS(2838), - [anon_sym_LBRACE] = ACTIONS(2840), - [anon_sym_LBRACK] = ACTIONS(2838), - [anon_sym_static] = ACTIONS(2838), - [anon_sym_register] = ACTIONS(2838), - [anon_sym_inline] = ACTIONS(2838), - [anon_sym_thread_local] = ACTIONS(2838), - [anon_sym_const] = ACTIONS(2838), - [anon_sym_volatile] = ACTIONS(2838), - [anon_sym_restrict] = ACTIONS(2838), - [anon_sym__Atomic] = ACTIONS(2838), - [anon_sym_mutable] = ACTIONS(2838), - [anon_sym_constexpr] = ACTIONS(2838), - [anon_sym_constinit] = ACTIONS(2838), - [anon_sym_consteval] = ACTIONS(2838), - [anon_sym_signed] = ACTIONS(2838), - [anon_sym_unsigned] = ACTIONS(2838), - [anon_sym_long] = ACTIONS(2838), - [anon_sym_short] = ACTIONS(2838), - [sym_primitive_type] = ACTIONS(2838), - [anon_sym_enum] = ACTIONS(2838), - [anon_sym_class] = ACTIONS(2838), - [anon_sym_struct] = ACTIONS(2838), - [anon_sym_union] = ACTIONS(2838), - [anon_sym_if] = ACTIONS(2838), - [anon_sym_switch] = ACTIONS(2838), - [anon_sym_case] = ACTIONS(2838), - [anon_sym_default] = ACTIONS(2838), - [anon_sym_while] = ACTIONS(2838), - [anon_sym_do] = ACTIONS(2838), - [anon_sym_for] = ACTIONS(2838), - [anon_sym_return] = ACTIONS(2838), - [anon_sym_break] = ACTIONS(2838), - [anon_sym_continue] = ACTIONS(2838), - [anon_sym_goto] = ACTIONS(2838), - [anon_sym_not] = ACTIONS(2838), - [anon_sym_compl] = ACTIONS(2838), - [anon_sym_DASH_DASH] = ACTIONS(2840), - [anon_sym_PLUS_PLUS] = ACTIONS(2840), - [anon_sym_sizeof] = ACTIONS(2838), - [sym_number_literal] = ACTIONS(2840), - [anon_sym_L_SQUOTE] = ACTIONS(2840), - [anon_sym_u_SQUOTE] = ACTIONS(2840), - [anon_sym_U_SQUOTE] = ACTIONS(2840), - [anon_sym_u8_SQUOTE] = ACTIONS(2840), - [anon_sym_SQUOTE] = ACTIONS(2840), - [anon_sym_L_DQUOTE] = ACTIONS(2840), - [anon_sym_u_DQUOTE] = ACTIONS(2840), - [anon_sym_U_DQUOTE] = ACTIONS(2840), - [anon_sym_u8_DQUOTE] = ACTIONS(2840), - [anon_sym_DQUOTE] = ACTIONS(2840), - [sym_true] = ACTIONS(2838), - [sym_false] = ACTIONS(2838), - [sym_null] = ACTIONS(2838), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2838), - [anon_sym_decltype] = ACTIONS(2838), - [anon_sym_virtual] = ACTIONS(2838), - [anon_sym_explicit] = ACTIONS(2838), - [anon_sym_typename] = ACTIONS(2838), - [anon_sym_template] = ACTIONS(2838), - [anon_sym_operator] = ACTIONS(2838), - [anon_sym_try] = ACTIONS(2838), - [anon_sym_delete] = ACTIONS(2838), - [anon_sym_throw] = ACTIONS(2838), - [anon_sym_namespace] = ACTIONS(2838), - [anon_sym_using] = ACTIONS(2838), - [anon_sym_static_assert] = ACTIONS(2838), - [anon_sym_concept] = ACTIONS(2838), - [anon_sym_co_return] = ACTIONS(2838), - [anon_sym_co_yield] = ACTIONS(2838), - [anon_sym_R_DQUOTE] = ACTIONS(2840), - [anon_sym_LR_DQUOTE] = ACTIONS(2840), - [anon_sym_uR_DQUOTE] = ACTIONS(2840), - [anon_sym_UR_DQUOTE] = ACTIONS(2840), - [anon_sym_u8R_DQUOTE] = ACTIONS(2840), - [anon_sym_co_await] = ACTIONS(2838), - [anon_sym_new] = ACTIONS(2838), - [anon_sym_requires] = ACTIONS(2838), - [sym_this] = ACTIONS(2838), - [sym_nullptr] = ACTIONS(2838), + [1115] = { + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token2] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, - [1067] = { - [sym_identifier] = ACTIONS(2822), - [aux_sym_preproc_include_token1] = ACTIONS(2822), - [aux_sym_preproc_def_token1] = ACTIONS(2822), - [aux_sym_preproc_if_token1] = ACTIONS(2822), - [aux_sym_preproc_if_token2] = ACTIONS(2822), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2822), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2822), - [sym_preproc_directive] = ACTIONS(2822), - [anon_sym_LPAREN2] = ACTIONS(2824), - [anon_sym_BANG] = ACTIONS(2824), - [anon_sym_TILDE] = ACTIONS(2824), - [anon_sym_DASH] = ACTIONS(2822), - [anon_sym_PLUS] = ACTIONS(2822), - [anon_sym_STAR] = ACTIONS(2824), - [anon_sym_AMP_AMP] = ACTIONS(2824), - [anon_sym_AMP] = ACTIONS(2822), - [anon_sym_SEMI] = ACTIONS(2824), - [anon_sym_typedef] = ACTIONS(2822), - [anon_sym_extern] = ACTIONS(2822), - [anon_sym___attribute__] = ACTIONS(2822), - [anon_sym_COLON_COLON] = ACTIONS(2824), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2824), - [anon_sym___declspec] = ACTIONS(2822), - [anon_sym___based] = ACTIONS(2822), - [anon_sym___cdecl] = ACTIONS(2822), - [anon_sym___clrcall] = ACTIONS(2822), - [anon_sym___stdcall] = ACTIONS(2822), - [anon_sym___fastcall] = ACTIONS(2822), - [anon_sym___thiscall] = ACTIONS(2822), - [anon_sym___vectorcall] = ACTIONS(2822), - [anon_sym_LBRACE] = ACTIONS(2824), - [anon_sym_LBRACK] = ACTIONS(2822), - [anon_sym_static] = ACTIONS(2822), - [anon_sym_register] = ACTIONS(2822), - [anon_sym_inline] = ACTIONS(2822), - [anon_sym_thread_local] = ACTIONS(2822), - [anon_sym_const] = ACTIONS(2822), - [anon_sym_volatile] = ACTIONS(2822), - [anon_sym_restrict] = ACTIONS(2822), - [anon_sym__Atomic] = ACTIONS(2822), - [anon_sym_mutable] = ACTIONS(2822), - [anon_sym_constexpr] = ACTIONS(2822), - [anon_sym_constinit] = ACTIONS(2822), - [anon_sym_consteval] = ACTIONS(2822), - [anon_sym_signed] = ACTIONS(2822), - [anon_sym_unsigned] = ACTIONS(2822), - [anon_sym_long] = ACTIONS(2822), - [anon_sym_short] = ACTIONS(2822), - [sym_primitive_type] = ACTIONS(2822), - [anon_sym_enum] = ACTIONS(2822), - [anon_sym_class] = ACTIONS(2822), - [anon_sym_struct] = ACTIONS(2822), - [anon_sym_union] = ACTIONS(2822), - [anon_sym_if] = ACTIONS(2822), - [anon_sym_switch] = ACTIONS(2822), - [anon_sym_case] = ACTIONS(2822), - [anon_sym_default] = ACTIONS(2822), - [anon_sym_while] = ACTIONS(2822), - [anon_sym_do] = ACTIONS(2822), - [anon_sym_for] = ACTIONS(2822), - [anon_sym_return] = ACTIONS(2822), - [anon_sym_break] = ACTIONS(2822), - [anon_sym_continue] = ACTIONS(2822), - [anon_sym_goto] = ACTIONS(2822), - [anon_sym_not] = ACTIONS(2822), - [anon_sym_compl] = ACTIONS(2822), - [anon_sym_DASH_DASH] = ACTIONS(2824), - [anon_sym_PLUS_PLUS] = ACTIONS(2824), - [anon_sym_sizeof] = ACTIONS(2822), - [sym_number_literal] = ACTIONS(2824), - [anon_sym_L_SQUOTE] = ACTIONS(2824), - [anon_sym_u_SQUOTE] = ACTIONS(2824), - [anon_sym_U_SQUOTE] = ACTIONS(2824), - [anon_sym_u8_SQUOTE] = ACTIONS(2824), - [anon_sym_SQUOTE] = ACTIONS(2824), - [anon_sym_L_DQUOTE] = ACTIONS(2824), - [anon_sym_u_DQUOTE] = ACTIONS(2824), - [anon_sym_U_DQUOTE] = ACTIONS(2824), - [anon_sym_u8_DQUOTE] = ACTIONS(2824), - [anon_sym_DQUOTE] = ACTIONS(2824), - [sym_true] = ACTIONS(2822), - [sym_false] = ACTIONS(2822), - [sym_null] = ACTIONS(2822), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2822), - [anon_sym_decltype] = ACTIONS(2822), - [anon_sym_virtual] = ACTIONS(2822), - [anon_sym_explicit] = ACTIONS(2822), - [anon_sym_typename] = ACTIONS(2822), - [anon_sym_template] = ACTIONS(2822), - [anon_sym_operator] = ACTIONS(2822), - [anon_sym_try] = ACTIONS(2822), - [anon_sym_delete] = ACTIONS(2822), - [anon_sym_throw] = ACTIONS(2822), - [anon_sym_namespace] = ACTIONS(2822), - [anon_sym_using] = ACTIONS(2822), - [anon_sym_static_assert] = ACTIONS(2822), - [anon_sym_concept] = ACTIONS(2822), - [anon_sym_co_return] = ACTIONS(2822), - [anon_sym_co_yield] = ACTIONS(2822), - [anon_sym_R_DQUOTE] = ACTIONS(2824), - [anon_sym_LR_DQUOTE] = ACTIONS(2824), - [anon_sym_uR_DQUOTE] = ACTIONS(2824), - [anon_sym_UR_DQUOTE] = ACTIONS(2824), - [anon_sym_u8R_DQUOTE] = ACTIONS(2824), - [anon_sym_co_await] = ACTIONS(2822), - [anon_sym_new] = ACTIONS(2822), - [anon_sym_requires] = ACTIONS(2822), - [sym_this] = ACTIONS(2822), - [sym_nullptr] = ACTIONS(2822), + [1116] = { + [sym_identifier] = ACTIONS(3085), + [aux_sym_preproc_include_token1] = ACTIONS(3085), + [aux_sym_preproc_def_token1] = ACTIONS(3085), + [aux_sym_preproc_if_token1] = ACTIONS(3085), + [aux_sym_preproc_if_token2] = ACTIONS(3085), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3085), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3085), + [sym_preproc_directive] = ACTIONS(3085), + [anon_sym_LPAREN2] = ACTIONS(3087), + [anon_sym_BANG] = ACTIONS(3087), + [anon_sym_TILDE] = ACTIONS(3087), + [anon_sym_DASH] = ACTIONS(3085), + [anon_sym_PLUS] = ACTIONS(3085), + [anon_sym_STAR] = ACTIONS(3087), + [anon_sym_AMP_AMP] = ACTIONS(3087), + [anon_sym_AMP] = ACTIONS(3085), + [anon_sym_SEMI] = ACTIONS(3087), + [anon_sym_typedef] = ACTIONS(3085), + [anon_sym_extern] = ACTIONS(3085), + [anon_sym___attribute__] = ACTIONS(3085), + [anon_sym_COLON_COLON] = ACTIONS(3087), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3087), + [anon_sym___declspec] = ACTIONS(3085), + [anon_sym___based] = ACTIONS(3085), + [anon_sym___cdecl] = ACTIONS(3085), + [anon_sym___clrcall] = ACTIONS(3085), + [anon_sym___stdcall] = ACTIONS(3085), + [anon_sym___fastcall] = ACTIONS(3085), + [anon_sym___thiscall] = ACTIONS(3085), + [anon_sym___vectorcall] = ACTIONS(3085), + [anon_sym_LBRACE] = ACTIONS(3087), + [anon_sym_LBRACK] = ACTIONS(3085), + [anon_sym_static] = ACTIONS(3085), + [anon_sym_register] = ACTIONS(3085), + [anon_sym_inline] = ACTIONS(3085), + [anon_sym_thread_local] = ACTIONS(3085), + [anon_sym_const] = ACTIONS(3085), + [anon_sym_constexpr] = ACTIONS(3085), + [anon_sym_volatile] = ACTIONS(3085), + [anon_sym_restrict] = ACTIONS(3085), + [anon_sym___restrict__] = ACTIONS(3085), + [anon_sym__Atomic] = ACTIONS(3085), + [anon_sym__Noreturn] = ACTIONS(3085), + [anon_sym_noreturn] = ACTIONS(3085), + [anon_sym_mutable] = ACTIONS(3085), + [anon_sym_constinit] = ACTIONS(3085), + [anon_sym_consteval] = ACTIONS(3085), + [anon_sym_signed] = ACTIONS(3085), + [anon_sym_unsigned] = ACTIONS(3085), + [anon_sym_long] = ACTIONS(3085), + [anon_sym_short] = ACTIONS(3085), + [sym_primitive_type] = ACTIONS(3085), + [anon_sym_enum] = ACTIONS(3085), + [anon_sym_class] = ACTIONS(3085), + [anon_sym_struct] = ACTIONS(3085), + [anon_sym_union] = ACTIONS(3085), + [anon_sym_if] = ACTIONS(3085), + [anon_sym_else] = ACTIONS(3085), + [anon_sym_switch] = ACTIONS(3085), + [anon_sym_case] = ACTIONS(3085), + [anon_sym_default] = ACTIONS(3085), + [anon_sym_while] = ACTIONS(3085), + [anon_sym_do] = ACTIONS(3085), + [anon_sym_for] = ACTIONS(3085), + [anon_sym_return] = ACTIONS(3085), + [anon_sym_break] = ACTIONS(3085), + [anon_sym_continue] = ACTIONS(3085), + [anon_sym_goto] = ACTIONS(3085), + [anon_sym_not] = ACTIONS(3085), + [anon_sym_compl] = ACTIONS(3085), + [anon_sym_DASH_DASH] = ACTIONS(3087), + [anon_sym_PLUS_PLUS] = ACTIONS(3087), + [anon_sym_sizeof] = ACTIONS(3085), + [anon_sym_offsetof] = ACTIONS(3085), + [anon_sym__Generic] = ACTIONS(3085), + [anon_sym_asm] = ACTIONS(3085), + [anon_sym___asm__] = ACTIONS(3085), + [sym_number_literal] = ACTIONS(3087), + [anon_sym_L_SQUOTE] = ACTIONS(3087), + [anon_sym_u_SQUOTE] = ACTIONS(3087), + [anon_sym_U_SQUOTE] = ACTIONS(3087), + [anon_sym_u8_SQUOTE] = ACTIONS(3087), + [anon_sym_SQUOTE] = ACTIONS(3087), + [anon_sym_L_DQUOTE] = ACTIONS(3087), + [anon_sym_u_DQUOTE] = ACTIONS(3087), + [anon_sym_U_DQUOTE] = ACTIONS(3087), + [anon_sym_u8_DQUOTE] = ACTIONS(3087), + [anon_sym_DQUOTE] = ACTIONS(3087), + [sym_true] = ACTIONS(3085), + [sym_false] = ACTIONS(3085), + [anon_sym_NULL] = ACTIONS(3085), + [anon_sym_nullptr] = ACTIONS(3085), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3085), + [anon_sym_decltype] = ACTIONS(3085), + [anon_sym_virtual] = ACTIONS(3085), + [anon_sym_explicit] = ACTIONS(3085), + [anon_sym_typename] = ACTIONS(3085), + [anon_sym_template] = ACTIONS(3085), + [anon_sym_operator] = ACTIONS(3085), + [anon_sym_try] = ACTIONS(3085), + [anon_sym_delete] = ACTIONS(3085), + [anon_sym_throw] = ACTIONS(3085), + [anon_sym_namespace] = ACTIONS(3085), + [anon_sym_using] = ACTIONS(3085), + [anon_sym_static_assert] = ACTIONS(3085), + [anon_sym_concept] = ACTIONS(3085), + [anon_sym_co_return] = ACTIONS(3085), + [anon_sym_co_yield] = ACTIONS(3085), + [anon_sym_R_DQUOTE] = ACTIONS(3087), + [anon_sym_LR_DQUOTE] = ACTIONS(3087), + [anon_sym_uR_DQUOTE] = ACTIONS(3087), + [anon_sym_UR_DQUOTE] = ACTIONS(3087), + [anon_sym_u8R_DQUOTE] = ACTIONS(3087), + [anon_sym_co_await] = ACTIONS(3085), + [anon_sym_new] = ACTIONS(3085), + [anon_sym_requires] = ACTIONS(3085), + [sym_this] = ACTIONS(3085), }, - [1068] = { - [ts_builtin_sym_end] = ACTIONS(2894), - [sym_identifier] = ACTIONS(2892), - [aux_sym_preproc_include_token1] = ACTIONS(2892), - [aux_sym_preproc_def_token1] = ACTIONS(2892), - [aux_sym_preproc_if_token1] = ACTIONS(2892), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2892), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2892), - [sym_preproc_directive] = ACTIONS(2892), - [anon_sym_LPAREN2] = ACTIONS(2894), - [anon_sym_BANG] = ACTIONS(2894), - [anon_sym_TILDE] = ACTIONS(2894), - [anon_sym_DASH] = ACTIONS(2892), - [anon_sym_PLUS] = ACTIONS(2892), - [anon_sym_STAR] = ACTIONS(2894), - [anon_sym_AMP_AMP] = ACTIONS(2894), - [anon_sym_AMP] = ACTIONS(2892), - [anon_sym_SEMI] = ACTIONS(2894), - [anon_sym_typedef] = ACTIONS(2892), - [anon_sym_extern] = ACTIONS(2892), - [anon_sym___attribute__] = ACTIONS(2892), - [anon_sym_COLON_COLON] = ACTIONS(2894), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2894), - [anon_sym___declspec] = ACTIONS(2892), - [anon_sym___based] = ACTIONS(2892), - [anon_sym___cdecl] = ACTIONS(2892), - [anon_sym___clrcall] = ACTIONS(2892), - [anon_sym___stdcall] = ACTIONS(2892), - [anon_sym___fastcall] = ACTIONS(2892), - [anon_sym___thiscall] = ACTIONS(2892), - [anon_sym___vectorcall] = ACTIONS(2892), - [anon_sym_LBRACE] = ACTIONS(2894), - [anon_sym_LBRACK] = ACTIONS(2892), - [anon_sym_static] = ACTIONS(2892), - [anon_sym_register] = ACTIONS(2892), - [anon_sym_inline] = ACTIONS(2892), - [anon_sym_thread_local] = ACTIONS(2892), - [anon_sym_const] = ACTIONS(2892), - [anon_sym_volatile] = ACTIONS(2892), - [anon_sym_restrict] = ACTIONS(2892), - [anon_sym__Atomic] = ACTIONS(2892), - [anon_sym_mutable] = ACTIONS(2892), - [anon_sym_constexpr] = ACTIONS(2892), - [anon_sym_constinit] = ACTIONS(2892), - [anon_sym_consteval] = ACTIONS(2892), - [anon_sym_signed] = ACTIONS(2892), - [anon_sym_unsigned] = ACTIONS(2892), - [anon_sym_long] = ACTIONS(2892), - [anon_sym_short] = ACTIONS(2892), - [sym_primitive_type] = ACTIONS(2892), - [anon_sym_enum] = ACTIONS(2892), - [anon_sym_class] = ACTIONS(2892), - [anon_sym_struct] = ACTIONS(2892), - [anon_sym_union] = ACTIONS(2892), - [anon_sym_if] = ACTIONS(2892), - [anon_sym_switch] = ACTIONS(2892), - [anon_sym_case] = ACTIONS(2892), - [anon_sym_default] = ACTIONS(2892), - [anon_sym_while] = ACTIONS(2892), - [anon_sym_do] = ACTIONS(2892), - [anon_sym_for] = ACTIONS(2892), - [anon_sym_return] = ACTIONS(2892), - [anon_sym_break] = ACTIONS(2892), - [anon_sym_continue] = ACTIONS(2892), - [anon_sym_goto] = ACTIONS(2892), - [anon_sym_not] = ACTIONS(2892), - [anon_sym_compl] = ACTIONS(2892), - [anon_sym_DASH_DASH] = ACTIONS(2894), - [anon_sym_PLUS_PLUS] = ACTIONS(2894), - [anon_sym_sizeof] = ACTIONS(2892), - [sym_number_literal] = ACTIONS(2894), - [anon_sym_L_SQUOTE] = ACTIONS(2894), - [anon_sym_u_SQUOTE] = ACTIONS(2894), - [anon_sym_U_SQUOTE] = ACTIONS(2894), - [anon_sym_u8_SQUOTE] = ACTIONS(2894), - [anon_sym_SQUOTE] = ACTIONS(2894), - [anon_sym_L_DQUOTE] = ACTIONS(2894), - [anon_sym_u_DQUOTE] = ACTIONS(2894), - [anon_sym_U_DQUOTE] = ACTIONS(2894), - [anon_sym_u8_DQUOTE] = ACTIONS(2894), - [anon_sym_DQUOTE] = ACTIONS(2894), - [sym_true] = ACTIONS(2892), - [sym_false] = ACTIONS(2892), - [sym_null] = ACTIONS(2892), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2892), - [anon_sym_decltype] = ACTIONS(2892), - [anon_sym_virtual] = ACTIONS(2892), - [anon_sym_explicit] = ACTIONS(2892), - [anon_sym_typename] = ACTIONS(2892), - [anon_sym_template] = ACTIONS(2892), - [anon_sym_operator] = ACTIONS(2892), - [anon_sym_try] = ACTIONS(2892), - [anon_sym_delete] = ACTIONS(2892), - [anon_sym_throw] = ACTIONS(2892), - [anon_sym_namespace] = ACTIONS(2892), - [anon_sym_using] = ACTIONS(2892), - [anon_sym_static_assert] = ACTIONS(2892), - [anon_sym_concept] = ACTIONS(2892), - [anon_sym_co_return] = ACTIONS(2892), - [anon_sym_co_yield] = ACTIONS(2892), - [anon_sym_R_DQUOTE] = ACTIONS(2894), - [anon_sym_LR_DQUOTE] = ACTIONS(2894), - [anon_sym_uR_DQUOTE] = ACTIONS(2894), - [anon_sym_UR_DQUOTE] = ACTIONS(2894), - [anon_sym_u8R_DQUOTE] = ACTIONS(2894), - [anon_sym_co_await] = ACTIONS(2892), - [anon_sym_new] = ACTIONS(2892), - [anon_sym_requires] = ACTIONS(2892), - [sym_this] = ACTIONS(2892), - [sym_nullptr] = ACTIONS(2892), + [1117] = { + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token2] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, - [1069] = { - [ts_builtin_sym_end] = ACTIONS(2890), - [sym_identifier] = ACTIONS(2888), - [aux_sym_preproc_include_token1] = ACTIONS(2888), - [aux_sym_preproc_def_token1] = ACTIONS(2888), - [aux_sym_preproc_if_token1] = ACTIONS(2888), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2888), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2888), - [sym_preproc_directive] = ACTIONS(2888), - [anon_sym_LPAREN2] = ACTIONS(2890), - [anon_sym_BANG] = ACTIONS(2890), - [anon_sym_TILDE] = ACTIONS(2890), - [anon_sym_DASH] = ACTIONS(2888), - [anon_sym_PLUS] = ACTIONS(2888), - [anon_sym_STAR] = ACTIONS(2890), - [anon_sym_AMP_AMP] = ACTIONS(2890), - [anon_sym_AMP] = ACTIONS(2888), - [anon_sym_SEMI] = ACTIONS(2890), - [anon_sym_typedef] = ACTIONS(2888), - [anon_sym_extern] = ACTIONS(2888), - [anon_sym___attribute__] = ACTIONS(2888), - [anon_sym_COLON_COLON] = ACTIONS(2890), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2890), - [anon_sym___declspec] = ACTIONS(2888), - [anon_sym___based] = ACTIONS(2888), - [anon_sym___cdecl] = ACTIONS(2888), - [anon_sym___clrcall] = ACTIONS(2888), - [anon_sym___stdcall] = ACTIONS(2888), - [anon_sym___fastcall] = ACTIONS(2888), - [anon_sym___thiscall] = ACTIONS(2888), - [anon_sym___vectorcall] = ACTIONS(2888), - [anon_sym_LBRACE] = ACTIONS(2890), - [anon_sym_LBRACK] = ACTIONS(2888), - [anon_sym_static] = ACTIONS(2888), - [anon_sym_register] = ACTIONS(2888), - [anon_sym_inline] = ACTIONS(2888), - [anon_sym_thread_local] = ACTIONS(2888), - [anon_sym_const] = ACTIONS(2888), - [anon_sym_volatile] = ACTIONS(2888), - [anon_sym_restrict] = ACTIONS(2888), - [anon_sym__Atomic] = ACTIONS(2888), - [anon_sym_mutable] = ACTIONS(2888), - [anon_sym_constexpr] = ACTIONS(2888), - [anon_sym_constinit] = ACTIONS(2888), - [anon_sym_consteval] = ACTIONS(2888), - [anon_sym_signed] = ACTIONS(2888), - [anon_sym_unsigned] = ACTIONS(2888), - [anon_sym_long] = ACTIONS(2888), - [anon_sym_short] = ACTIONS(2888), - [sym_primitive_type] = ACTIONS(2888), - [anon_sym_enum] = ACTIONS(2888), - [anon_sym_class] = ACTIONS(2888), - [anon_sym_struct] = ACTIONS(2888), - [anon_sym_union] = ACTIONS(2888), - [anon_sym_if] = ACTIONS(2888), - [anon_sym_switch] = ACTIONS(2888), - [anon_sym_case] = ACTIONS(2888), - [anon_sym_default] = ACTIONS(2888), - [anon_sym_while] = ACTIONS(2888), - [anon_sym_do] = ACTIONS(2888), - [anon_sym_for] = ACTIONS(2888), - [anon_sym_return] = ACTIONS(2888), - [anon_sym_break] = ACTIONS(2888), - [anon_sym_continue] = ACTIONS(2888), - [anon_sym_goto] = ACTIONS(2888), - [anon_sym_not] = ACTIONS(2888), - [anon_sym_compl] = ACTIONS(2888), - [anon_sym_DASH_DASH] = ACTIONS(2890), - [anon_sym_PLUS_PLUS] = ACTIONS(2890), - [anon_sym_sizeof] = ACTIONS(2888), - [sym_number_literal] = ACTIONS(2890), - [anon_sym_L_SQUOTE] = ACTIONS(2890), - [anon_sym_u_SQUOTE] = ACTIONS(2890), - [anon_sym_U_SQUOTE] = ACTIONS(2890), - [anon_sym_u8_SQUOTE] = ACTIONS(2890), - [anon_sym_SQUOTE] = ACTIONS(2890), - [anon_sym_L_DQUOTE] = ACTIONS(2890), - [anon_sym_u_DQUOTE] = ACTIONS(2890), - [anon_sym_U_DQUOTE] = ACTIONS(2890), - [anon_sym_u8_DQUOTE] = ACTIONS(2890), - [anon_sym_DQUOTE] = ACTIONS(2890), - [sym_true] = ACTIONS(2888), - [sym_false] = ACTIONS(2888), - [sym_null] = ACTIONS(2888), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2888), - [anon_sym_decltype] = ACTIONS(2888), - [anon_sym_virtual] = ACTIONS(2888), - [anon_sym_explicit] = ACTIONS(2888), - [anon_sym_typename] = ACTIONS(2888), - [anon_sym_template] = ACTIONS(2888), - [anon_sym_operator] = ACTIONS(2888), - [anon_sym_try] = ACTIONS(2888), - [anon_sym_delete] = ACTIONS(2888), - [anon_sym_throw] = ACTIONS(2888), - [anon_sym_namespace] = ACTIONS(2888), - [anon_sym_using] = ACTIONS(2888), - [anon_sym_static_assert] = ACTIONS(2888), - [anon_sym_concept] = ACTIONS(2888), - [anon_sym_co_return] = ACTIONS(2888), - [anon_sym_co_yield] = ACTIONS(2888), - [anon_sym_R_DQUOTE] = ACTIONS(2890), - [anon_sym_LR_DQUOTE] = ACTIONS(2890), - [anon_sym_uR_DQUOTE] = ACTIONS(2890), - [anon_sym_UR_DQUOTE] = ACTIONS(2890), - [anon_sym_u8R_DQUOTE] = ACTIONS(2890), - [anon_sym_co_await] = ACTIONS(2888), - [anon_sym_new] = ACTIONS(2888), - [anon_sym_requires] = ACTIONS(2888), - [sym_this] = ACTIONS(2888), - [sym_nullptr] = ACTIONS(2888), + [1118] = { + [ts_builtin_sym_end] = ACTIONS(3006), + [sym_identifier] = ACTIONS(3004), + [aux_sym_preproc_include_token1] = ACTIONS(3004), + [aux_sym_preproc_def_token1] = ACTIONS(3004), + [aux_sym_preproc_if_token1] = ACTIONS(3004), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3004), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3004), + [sym_preproc_directive] = ACTIONS(3004), + [anon_sym_LPAREN2] = ACTIONS(3006), + [anon_sym_BANG] = ACTIONS(3006), + [anon_sym_TILDE] = ACTIONS(3006), + [anon_sym_DASH] = ACTIONS(3004), + [anon_sym_PLUS] = ACTIONS(3004), + [anon_sym_STAR] = ACTIONS(3006), + [anon_sym_AMP_AMP] = ACTIONS(3006), + [anon_sym_AMP] = ACTIONS(3004), + [anon_sym_SEMI] = ACTIONS(3006), + [anon_sym_typedef] = ACTIONS(3004), + [anon_sym_extern] = ACTIONS(3004), + [anon_sym___attribute__] = ACTIONS(3004), + [anon_sym_COLON_COLON] = ACTIONS(3006), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3006), + [anon_sym___declspec] = ACTIONS(3004), + [anon_sym___based] = ACTIONS(3004), + [anon_sym___cdecl] = ACTIONS(3004), + [anon_sym___clrcall] = ACTIONS(3004), + [anon_sym___stdcall] = ACTIONS(3004), + [anon_sym___fastcall] = ACTIONS(3004), + [anon_sym___thiscall] = ACTIONS(3004), + [anon_sym___vectorcall] = ACTIONS(3004), + [anon_sym_LBRACE] = ACTIONS(3006), + [anon_sym_LBRACK] = ACTIONS(3004), + [anon_sym_static] = ACTIONS(3004), + [anon_sym_register] = ACTIONS(3004), + [anon_sym_inline] = ACTIONS(3004), + [anon_sym_thread_local] = ACTIONS(3004), + [anon_sym_const] = ACTIONS(3004), + [anon_sym_constexpr] = ACTIONS(3004), + [anon_sym_volatile] = ACTIONS(3004), + [anon_sym_restrict] = ACTIONS(3004), + [anon_sym___restrict__] = ACTIONS(3004), + [anon_sym__Atomic] = ACTIONS(3004), + [anon_sym__Noreturn] = ACTIONS(3004), + [anon_sym_noreturn] = ACTIONS(3004), + [anon_sym_mutable] = ACTIONS(3004), + [anon_sym_constinit] = ACTIONS(3004), + [anon_sym_consteval] = ACTIONS(3004), + [anon_sym_signed] = ACTIONS(3004), + [anon_sym_unsigned] = ACTIONS(3004), + [anon_sym_long] = ACTIONS(3004), + [anon_sym_short] = ACTIONS(3004), + [sym_primitive_type] = ACTIONS(3004), + [anon_sym_enum] = ACTIONS(3004), + [anon_sym_class] = ACTIONS(3004), + [anon_sym_struct] = ACTIONS(3004), + [anon_sym_union] = ACTIONS(3004), + [anon_sym_if] = ACTIONS(3004), + [anon_sym_else] = ACTIONS(3004), + [anon_sym_switch] = ACTIONS(3004), + [anon_sym_case] = ACTIONS(3004), + [anon_sym_default] = ACTIONS(3004), + [anon_sym_while] = ACTIONS(3004), + [anon_sym_do] = ACTIONS(3004), + [anon_sym_for] = ACTIONS(3004), + [anon_sym_return] = ACTIONS(3004), + [anon_sym_break] = ACTIONS(3004), + [anon_sym_continue] = ACTIONS(3004), + [anon_sym_goto] = ACTIONS(3004), + [anon_sym_not] = ACTIONS(3004), + [anon_sym_compl] = ACTIONS(3004), + [anon_sym_DASH_DASH] = ACTIONS(3006), + [anon_sym_PLUS_PLUS] = ACTIONS(3006), + [anon_sym_sizeof] = ACTIONS(3004), + [anon_sym_offsetof] = ACTIONS(3004), + [anon_sym__Generic] = ACTIONS(3004), + [anon_sym_asm] = ACTIONS(3004), + [anon_sym___asm__] = ACTIONS(3004), + [sym_number_literal] = ACTIONS(3006), + [anon_sym_L_SQUOTE] = ACTIONS(3006), + [anon_sym_u_SQUOTE] = ACTIONS(3006), + [anon_sym_U_SQUOTE] = ACTIONS(3006), + [anon_sym_u8_SQUOTE] = ACTIONS(3006), + [anon_sym_SQUOTE] = ACTIONS(3006), + [anon_sym_L_DQUOTE] = ACTIONS(3006), + [anon_sym_u_DQUOTE] = ACTIONS(3006), + [anon_sym_U_DQUOTE] = ACTIONS(3006), + [anon_sym_u8_DQUOTE] = ACTIONS(3006), + [anon_sym_DQUOTE] = ACTIONS(3006), + [sym_true] = ACTIONS(3004), + [sym_false] = ACTIONS(3004), + [anon_sym_NULL] = ACTIONS(3004), + [anon_sym_nullptr] = ACTIONS(3004), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3004), + [anon_sym_decltype] = ACTIONS(3004), + [anon_sym_virtual] = ACTIONS(3004), + [anon_sym_explicit] = ACTIONS(3004), + [anon_sym_typename] = ACTIONS(3004), + [anon_sym_template] = ACTIONS(3004), + [anon_sym_operator] = ACTIONS(3004), + [anon_sym_try] = ACTIONS(3004), + [anon_sym_delete] = ACTIONS(3004), + [anon_sym_throw] = ACTIONS(3004), + [anon_sym_namespace] = ACTIONS(3004), + [anon_sym_using] = ACTIONS(3004), + [anon_sym_static_assert] = ACTIONS(3004), + [anon_sym_concept] = ACTIONS(3004), + [anon_sym_co_return] = ACTIONS(3004), + [anon_sym_co_yield] = ACTIONS(3004), + [anon_sym_R_DQUOTE] = ACTIONS(3006), + [anon_sym_LR_DQUOTE] = ACTIONS(3006), + [anon_sym_uR_DQUOTE] = ACTIONS(3006), + [anon_sym_UR_DQUOTE] = ACTIONS(3006), + [anon_sym_u8R_DQUOTE] = ACTIONS(3006), + [anon_sym_co_await] = ACTIONS(3004), + [anon_sym_new] = ACTIONS(3004), + [anon_sym_requires] = ACTIONS(3004), + [sym_this] = ACTIONS(3004), }, - [1070] = { - [ts_builtin_sym_end] = ACTIONS(2886), - [sym_identifier] = ACTIONS(2884), - [aux_sym_preproc_include_token1] = ACTIONS(2884), - [aux_sym_preproc_def_token1] = ACTIONS(2884), - [aux_sym_preproc_if_token1] = ACTIONS(2884), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2884), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2884), - [sym_preproc_directive] = ACTIONS(2884), - [anon_sym_LPAREN2] = ACTIONS(2886), - [anon_sym_BANG] = ACTIONS(2886), - [anon_sym_TILDE] = ACTIONS(2886), - [anon_sym_DASH] = ACTIONS(2884), - [anon_sym_PLUS] = ACTIONS(2884), - [anon_sym_STAR] = ACTIONS(2886), - [anon_sym_AMP_AMP] = ACTIONS(2886), - [anon_sym_AMP] = ACTIONS(2884), - [anon_sym_SEMI] = ACTIONS(2886), - [anon_sym_typedef] = ACTIONS(2884), - [anon_sym_extern] = ACTIONS(2884), - [anon_sym___attribute__] = ACTIONS(2884), - [anon_sym_COLON_COLON] = ACTIONS(2886), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2886), - [anon_sym___declspec] = ACTIONS(2884), - [anon_sym___based] = ACTIONS(2884), - [anon_sym___cdecl] = ACTIONS(2884), - [anon_sym___clrcall] = ACTIONS(2884), - [anon_sym___stdcall] = ACTIONS(2884), - [anon_sym___fastcall] = ACTIONS(2884), - [anon_sym___thiscall] = ACTIONS(2884), - [anon_sym___vectorcall] = ACTIONS(2884), - [anon_sym_LBRACE] = ACTIONS(2886), - [anon_sym_LBRACK] = ACTIONS(2884), - [anon_sym_static] = ACTIONS(2884), - [anon_sym_register] = ACTIONS(2884), - [anon_sym_inline] = ACTIONS(2884), - [anon_sym_thread_local] = ACTIONS(2884), - [anon_sym_const] = ACTIONS(2884), - [anon_sym_volatile] = ACTIONS(2884), - [anon_sym_restrict] = ACTIONS(2884), - [anon_sym__Atomic] = ACTIONS(2884), - [anon_sym_mutable] = ACTIONS(2884), - [anon_sym_constexpr] = ACTIONS(2884), - [anon_sym_constinit] = ACTIONS(2884), - [anon_sym_consteval] = ACTIONS(2884), - [anon_sym_signed] = ACTIONS(2884), - [anon_sym_unsigned] = ACTIONS(2884), - [anon_sym_long] = ACTIONS(2884), - [anon_sym_short] = ACTIONS(2884), - [sym_primitive_type] = ACTIONS(2884), - [anon_sym_enum] = ACTIONS(2884), - [anon_sym_class] = ACTIONS(2884), - [anon_sym_struct] = ACTIONS(2884), - [anon_sym_union] = ACTIONS(2884), - [anon_sym_if] = ACTIONS(2884), - [anon_sym_switch] = ACTIONS(2884), - [anon_sym_case] = ACTIONS(2884), - [anon_sym_default] = ACTIONS(2884), - [anon_sym_while] = ACTIONS(2884), - [anon_sym_do] = ACTIONS(2884), - [anon_sym_for] = ACTIONS(2884), - [anon_sym_return] = ACTIONS(2884), - [anon_sym_break] = ACTIONS(2884), - [anon_sym_continue] = ACTIONS(2884), - [anon_sym_goto] = ACTIONS(2884), - [anon_sym_not] = ACTIONS(2884), - [anon_sym_compl] = ACTIONS(2884), - [anon_sym_DASH_DASH] = ACTIONS(2886), - [anon_sym_PLUS_PLUS] = ACTIONS(2886), - [anon_sym_sizeof] = ACTIONS(2884), - [sym_number_literal] = ACTIONS(2886), - [anon_sym_L_SQUOTE] = ACTIONS(2886), - [anon_sym_u_SQUOTE] = ACTIONS(2886), - [anon_sym_U_SQUOTE] = ACTIONS(2886), - [anon_sym_u8_SQUOTE] = ACTIONS(2886), - [anon_sym_SQUOTE] = ACTIONS(2886), - [anon_sym_L_DQUOTE] = ACTIONS(2886), - [anon_sym_u_DQUOTE] = ACTIONS(2886), - [anon_sym_U_DQUOTE] = ACTIONS(2886), - [anon_sym_u8_DQUOTE] = ACTIONS(2886), - [anon_sym_DQUOTE] = ACTIONS(2886), - [sym_true] = ACTIONS(2884), - [sym_false] = ACTIONS(2884), - [sym_null] = ACTIONS(2884), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2884), - [anon_sym_decltype] = ACTIONS(2884), - [anon_sym_virtual] = ACTIONS(2884), - [anon_sym_explicit] = ACTIONS(2884), - [anon_sym_typename] = ACTIONS(2884), - [anon_sym_template] = ACTIONS(2884), - [anon_sym_operator] = ACTIONS(2884), - [anon_sym_try] = ACTIONS(2884), - [anon_sym_delete] = ACTIONS(2884), - [anon_sym_throw] = ACTIONS(2884), - [anon_sym_namespace] = ACTIONS(2884), - [anon_sym_using] = ACTIONS(2884), - [anon_sym_static_assert] = ACTIONS(2884), - [anon_sym_concept] = ACTIONS(2884), - [anon_sym_co_return] = ACTIONS(2884), - [anon_sym_co_yield] = ACTIONS(2884), - [anon_sym_R_DQUOTE] = ACTIONS(2886), - [anon_sym_LR_DQUOTE] = ACTIONS(2886), - [anon_sym_uR_DQUOTE] = ACTIONS(2886), - [anon_sym_UR_DQUOTE] = ACTIONS(2886), - [anon_sym_u8R_DQUOTE] = ACTIONS(2886), - [anon_sym_co_await] = ACTIONS(2884), - [anon_sym_new] = ACTIONS(2884), - [anon_sym_requires] = ACTIONS(2884), - [sym_this] = ACTIONS(2884), - [sym_nullptr] = ACTIONS(2884), + [1119] = { + [ts_builtin_sym_end] = ACTIONS(3030), + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, - [1071] = { - [sym_identifier] = ACTIONS(2678), - [aux_sym_preproc_include_token1] = ACTIONS(2678), - [aux_sym_preproc_def_token1] = ACTIONS(2678), - [aux_sym_preproc_if_token1] = ACTIONS(2678), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2678), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2678), - [sym_preproc_directive] = ACTIONS(2678), - [anon_sym_LPAREN2] = ACTIONS(2680), - [anon_sym_BANG] = ACTIONS(2680), - [anon_sym_TILDE] = ACTIONS(2680), - [anon_sym_DASH] = ACTIONS(2678), - [anon_sym_PLUS] = ACTIONS(2678), - [anon_sym_STAR] = ACTIONS(2680), - [anon_sym_AMP_AMP] = ACTIONS(2680), - [anon_sym_AMP] = ACTIONS(2678), - [anon_sym_SEMI] = ACTIONS(2680), - [anon_sym_typedef] = ACTIONS(2678), - [anon_sym_extern] = ACTIONS(2678), - [anon_sym___attribute__] = ACTIONS(2678), - [anon_sym_COLON_COLON] = ACTIONS(2680), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2680), - [anon_sym___declspec] = ACTIONS(2678), - [anon_sym___based] = ACTIONS(2678), - [anon_sym___cdecl] = ACTIONS(2678), - [anon_sym___clrcall] = ACTIONS(2678), - [anon_sym___stdcall] = ACTIONS(2678), - [anon_sym___fastcall] = ACTIONS(2678), - [anon_sym___thiscall] = ACTIONS(2678), - [anon_sym___vectorcall] = ACTIONS(2678), - [anon_sym_LBRACE] = ACTIONS(2680), - [anon_sym_RBRACE] = ACTIONS(2680), - [anon_sym_LBRACK] = ACTIONS(2678), - [anon_sym_static] = ACTIONS(2678), - [anon_sym_register] = ACTIONS(2678), - [anon_sym_inline] = ACTIONS(2678), - [anon_sym_thread_local] = ACTIONS(2678), - [anon_sym_const] = ACTIONS(2678), - [anon_sym_volatile] = ACTIONS(2678), - [anon_sym_restrict] = ACTIONS(2678), - [anon_sym__Atomic] = ACTIONS(2678), - [anon_sym_mutable] = ACTIONS(2678), - [anon_sym_constexpr] = ACTIONS(2678), - [anon_sym_constinit] = ACTIONS(2678), - [anon_sym_consteval] = ACTIONS(2678), - [anon_sym_signed] = ACTIONS(2678), - [anon_sym_unsigned] = ACTIONS(2678), - [anon_sym_long] = ACTIONS(2678), - [anon_sym_short] = ACTIONS(2678), - [sym_primitive_type] = ACTIONS(2678), - [anon_sym_enum] = ACTIONS(2678), - [anon_sym_class] = ACTIONS(2678), - [anon_sym_struct] = ACTIONS(2678), - [anon_sym_union] = ACTIONS(2678), - [anon_sym_if] = ACTIONS(2678), - [anon_sym_switch] = ACTIONS(2678), - [anon_sym_case] = ACTIONS(2678), - [anon_sym_default] = ACTIONS(2678), - [anon_sym_while] = ACTIONS(2678), - [anon_sym_do] = ACTIONS(2678), - [anon_sym_for] = ACTIONS(2678), - [anon_sym_return] = ACTIONS(2678), - [anon_sym_break] = ACTIONS(2678), - [anon_sym_continue] = ACTIONS(2678), - [anon_sym_goto] = ACTIONS(2678), - [anon_sym_not] = ACTIONS(2678), - [anon_sym_compl] = ACTIONS(2678), - [anon_sym_DASH_DASH] = ACTIONS(2680), - [anon_sym_PLUS_PLUS] = ACTIONS(2680), - [anon_sym_sizeof] = ACTIONS(2678), - [sym_number_literal] = ACTIONS(2680), - [anon_sym_L_SQUOTE] = ACTIONS(2680), - [anon_sym_u_SQUOTE] = ACTIONS(2680), - [anon_sym_U_SQUOTE] = ACTIONS(2680), - [anon_sym_u8_SQUOTE] = ACTIONS(2680), - [anon_sym_SQUOTE] = ACTIONS(2680), - [anon_sym_L_DQUOTE] = ACTIONS(2680), - [anon_sym_u_DQUOTE] = ACTIONS(2680), - [anon_sym_U_DQUOTE] = ACTIONS(2680), - [anon_sym_u8_DQUOTE] = ACTIONS(2680), - [anon_sym_DQUOTE] = ACTIONS(2680), - [sym_true] = ACTIONS(2678), - [sym_false] = ACTIONS(2678), - [sym_null] = ACTIONS(2678), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2678), - [anon_sym_decltype] = ACTIONS(2678), - [anon_sym_virtual] = ACTIONS(2678), - [anon_sym_explicit] = ACTIONS(2678), - [anon_sym_typename] = ACTIONS(2678), - [anon_sym_template] = ACTIONS(2678), - [anon_sym_operator] = ACTIONS(2678), - [anon_sym_try] = ACTIONS(2678), - [anon_sym_delete] = ACTIONS(2678), - [anon_sym_throw] = ACTIONS(2678), - [anon_sym_namespace] = ACTIONS(2678), - [anon_sym_using] = ACTIONS(2678), - [anon_sym_static_assert] = ACTIONS(2678), - [anon_sym_concept] = ACTIONS(2678), - [anon_sym_co_return] = ACTIONS(2678), - [anon_sym_co_yield] = ACTIONS(2678), - [anon_sym_R_DQUOTE] = ACTIONS(2680), - [anon_sym_LR_DQUOTE] = ACTIONS(2680), - [anon_sym_uR_DQUOTE] = ACTIONS(2680), - [anon_sym_UR_DQUOTE] = ACTIONS(2680), - [anon_sym_u8R_DQUOTE] = ACTIONS(2680), - [anon_sym_co_await] = ACTIONS(2678), - [anon_sym_new] = ACTIONS(2678), - [anon_sym_requires] = ACTIONS(2678), - [sym_this] = ACTIONS(2678), - [sym_nullptr] = ACTIONS(2678), + [1120] = { + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token2] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, - [1072] = { - [sym_identifier] = ACTIONS(2884), - [aux_sym_preproc_include_token1] = ACTIONS(2884), - [aux_sym_preproc_def_token1] = ACTIONS(2884), - [aux_sym_preproc_if_token1] = ACTIONS(2884), - [aux_sym_preproc_if_token2] = ACTIONS(2884), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2884), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2884), - [sym_preproc_directive] = ACTIONS(2884), - [anon_sym_LPAREN2] = ACTIONS(2886), - [anon_sym_BANG] = ACTIONS(2886), - [anon_sym_TILDE] = ACTIONS(2886), - [anon_sym_DASH] = ACTIONS(2884), - [anon_sym_PLUS] = ACTIONS(2884), - [anon_sym_STAR] = ACTIONS(2886), - [anon_sym_AMP_AMP] = ACTIONS(2886), - [anon_sym_AMP] = ACTIONS(2884), - [anon_sym_SEMI] = ACTIONS(2886), - [anon_sym_typedef] = ACTIONS(2884), - [anon_sym_extern] = ACTIONS(2884), - [anon_sym___attribute__] = ACTIONS(2884), - [anon_sym_COLON_COLON] = ACTIONS(2886), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2886), - [anon_sym___declspec] = ACTIONS(2884), - [anon_sym___based] = ACTIONS(2884), - [anon_sym___cdecl] = ACTIONS(2884), - [anon_sym___clrcall] = ACTIONS(2884), - [anon_sym___stdcall] = ACTIONS(2884), - [anon_sym___fastcall] = ACTIONS(2884), - [anon_sym___thiscall] = ACTIONS(2884), - [anon_sym___vectorcall] = ACTIONS(2884), - [anon_sym_LBRACE] = ACTIONS(2886), - [anon_sym_LBRACK] = ACTIONS(2884), - [anon_sym_static] = ACTIONS(2884), - [anon_sym_register] = ACTIONS(2884), - [anon_sym_inline] = ACTIONS(2884), - [anon_sym_thread_local] = ACTIONS(2884), - [anon_sym_const] = ACTIONS(2884), - [anon_sym_volatile] = ACTIONS(2884), - [anon_sym_restrict] = ACTIONS(2884), - [anon_sym__Atomic] = ACTIONS(2884), - [anon_sym_mutable] = ACTIONS(2884), - [anon_sym_constexpr] = ACTIONS(2884), - [anon_sym_constinit] = ACTIONS(2884), - [anon_sym_consteval] = ACTIONS(2884), - [anon_sym_signed] = ACTIONS(2884), - [anon_sym_unsigned] = ACTIONS(2884), - [anon_sym_long] = ACTIONS(2884), - [anon_sym_short] = ACTIONS(2884), - [sym_primitive_type] = ACTIONS(2884), - [anon_sym_enum] = ACTIONS(2884), - [anon_sym_class] = ACTIONS(2884), - [anon_sym_struct] = ACTIONS(2884), - [anon_sym_union] = ACTIONS(2884), - [anon_sym_if] = ACTIONS(2884), - [anon_sym_switch] = ACTIONS(2884), - [anon_sym_case] = ACTIONS(2884), - [anon_sym_default] = ACTIONS(2884), - [anon_sym_while] = ACTIONS(2884), - [anon_sym_do] = ACTIONS(2884), - [anon_sym_for] = ACTIONS(2884), - [anon_sym_return] = ACTIONS(2884), - [anon_sym_break] = ACTIONS(2884), - [anon_sym_continue] = ACTIONS(2884), - [anon_sym_goto] = ACTIONS(2884), - [anon_sym_not] = ACTIONS(2884), - [anon_sym_compl] = ACTIONS(2884), - [anon_sym_DASH_DASH] = ACTIONS(2886), - [anon_sym_PLUS_PLUS] = ACTIONS(2886), - [anon_sym_sizeof] = ACTIONS(2884), - [sym_number_literal] = ACTIONS(2886), - [anon_sym_L_SQUOTE] = ACTIONS(2886), - [anon_sym_u_SQUOTE] = ACTIONS(2886), - [anon_sym_U_SQUOTE] = ACTIONS(2886), - [anon_sym_u8_SQUOTE] = ACTIONS(2886), - [anon_sym_SQUOTE] = ACTIONS(2886), - [anon_sym_L_DQUOTE] = ACTIONS(2886), - [anon_sym_u_DQUOTE] = ACTIONS(2886), - [anon_sym_U_DQUOTE] = ACTIONS(2886), - [anon_sym_u8_DQUOTE] = ACTIONS(2886), - [anon_sym_DQUOTE] = ACTIONS(2886), - [sym_true] = ACTIONS(2884), - [sym_false] = ACTIONS(2884), - [sym_null] = ACTIONS(2884), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2884), - [anon_sym_decltype] = ACTIONS(2884), - [anon_sym_virtual] = ACTIONS(2884), - [anon_sym_explicit] = ACTIONS(2884), - [anon_sym_typename] = ACTIONS(2884), - [anon_sym_template] = ACTIONS(2884), - [anon_sym_operator] = ACTIONS(2884), - [anon_sym_try] = ACTIONS(2884), - [anon_sym_delete] = ACTIONS(2884), - [anon_sym_throw] = ACTIONS(2884), - [anon_sym_namespace] = ACTIONS(2884), - [anon_sym_using] = ACTIONS(2884), - [anon_sym_static_assert] = ACTIONS(2884), - [anon_sym_concept] = ACTIONS(2884), - [anon_sym_co_return] = ACTIONS(2884), - [anon_sym_co_yield] = ACTIONS(2884), - [anon_sym_R_DQUOTE] = ACTIONS(2886), - [anon_sym_LR_DQUOTE] = ACTIONS(2886), - [anon_sym_uR_DQUOTE] = ACTIONS(2886), - [anon_sym_UR_DQUOTE] = ACTIONS(2886), - [anon_sym_u8R_DQUOTE] = ACTIONS(2886), - [anon_sym_co_await] = ACTIONS(2884), - [anon_sym_new] = ACTIONS(2884), - [anon_sym_requires] = ACTIONS(2884), - [sym_this] = ACTIONS(2884), - [sym_nullptr] = ACTIONS(2884), + [1121] = { + [sym_identifier] = ACTIONS(2542), + [aux_sym_preproc_include_token1] = ACTIONS(2542), + [aux_sym_preproc_def_token1] = ACTIONS(2542), + [anon_sym_COMMA] = ACTIONS(2960), + [aux_sym_preproc_if_token1] = ACTIONS(2542), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2542), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2542), + [sym_preproc_directive] = ACTIONS(2542), + [anon_sym_LPAREN2] = ACTIONS(2540), + [anon_sym_BANG] = ACTIONS(2540), + [anon_sym_TILDE] = ACTIONS(2540), + [anon_sym_DASH] = ACTIONS(2542), + [anon_sym_PLUS] = ACTIONS(2542), + [anon_sym_STAR] = ACTIONS(2540), + [anon_sym_AMP_AMP] = ACTIONS(2540), + [anon_sym_AMP] = ACTIONS(2542), + [anon_sym_SEMI] = ACTIONS(2540), + [anon_sym_typedef] = ACTIONS(2542), + [anon_sym_extern] = ACTIONS(2542), + [anon_sym___attribute__] = ACTIONS(2542), + [anon_sym_COLON_COLON] = ACTIONS(2540), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2540), + [anon_sym___declspec] = ACTIONS(2542), + [anon_sym___based] = ACTIONS(2542), + [anon_sym___cdecl] = ACTIONS(2542), + [anon_sym___clrcall] = ACTIONS(2542), + [anon_sym___stdcall] = ACTIONS(2542), + [anon_sym___fastcall] = ACTIONS(2542), + [anon_sym___thiscall] = ACTIONS(2542), + [anon_sym___vectorcall] = ACTIONS(2542), + [anon_sym_LBRACE] = ACTIONS(2540), + [anon_sym_RBRACE] = ACTIONS(2960), + [anon_sym_LBRACK] = ACTIONS(2542), + [anon_sym_static] = ACTIONS(2542), + [anon_sym_register] = ACTIONS(2542), + [anon_sym_inline] = ACTIONS(2542), + [anon_sym_thread_local] = ACTIONS(2542), + [anon_sym_const] = ACTIONS(2542), + [anon_sym_constexpr] = ACTIONS(2542), + [anon_sym_volatile] = ACTIONS(2542), + [anon_sym_restrict] = ACTIONS(2542), + [anon_sym___restrict__] = ACTIONS(2542), + [anon_sym__Atomic] = ACTIONS(2542), + [anon_sym__Noreturn] = ACTIONS(2542), + [anon_sym_noreturn] = ACTIONS(2542), + [anon_sym_mutable] = ACTIONS(2542), + [anon_sym_constinit] = ACTIONS(2542), + [anon_sym_consteval] = ACTIONS(2542), + [anon_sym_signed] = ACTIONS(2542), + [anon_sym_unsigned] = ACTIONS(2542), + [anon_sym_long] = ACTIONS(2542), + [anon_sym_short] = ACTIONS(2542), + [sym_primitive_type] = ACTIONS(2542), + [anon_sym_enum] = ACTIONS(2542), + [anon_sym_class] = ACTIONS(2542), + [anon_sym_struct] = ACTIONS(2542), + [anon_sym_union] = ACTIONS(2542), + [anon_sym_if] = ACTIONS(2542), + [anon_sym_switch] = ACTIONS(2542), + [anon_sym_case] = ACTIONS(2542), + [anon_sym_default] = ACTIONS(2542), + [anon_sym_while] = ACTIONS(2542), + [anon_sym_do] = ACTIONS(2542), + [anon_sym_for] = ACTIONS(2542), + [anon_sym_return] = ACTIONS(2542), + [anon_sym_break] = ACTIONS(2542), + [anon_sym_continue] = ACTIONS(2542), + [anon_sym_goto] = ACTIONS(2542), + [anon_sym_not] = ACTIONS(2542), + [anon_sym_compl] = ACTIONS(2542), + [anon_sym_DASH_DASH] = ACTIONS(2540), + [anon_sym_PLUS_PLUS] = ACTIONS(2540), + [anon_sym_sizeof] = ACTIONS(2542), + [anon_sym_offsetof] = ACTIONS(2542), + [anon_sym__Generic] = ACTIONS(2542), + [anon_sym_asm] = ACTIONS(2542), + [anon_sym___asm__] = ACTIONS(2542), + [sym_number_literal] = ACTIONS(2540), + [anon_sym_L_SQUOTE] = ACTIONS(2540), + [anon_sym_u_SQUOTE] = ACTIONS(2540), + [anon_sym_U_SQUOTE] = ACTIONS(2540), + [anon_sym_u8_SQUOTE] = ACTIONS(2540), + [anon_sym_SQUOTE] = ACTIONS(2540), + [anon_sym_L_DQUOTE] = ACTIONS(2540), + [anon_sym_u_DQUOTE] = ACTIONS(2540), + [anon_sym_U_DQUOTE] = ACTIONS(2540), + [anon_sym_u8_DQUOTE] = ACTIONS(2540), + [anon_sym_DQUOTE] = ACTIONS(2540), + [sym_true] = ACTIONS(2542), + [sym_false] = ACTIONS(2542), + [anon_sym_NULL] = ACTIONS(2542), + [anon_sym_nullptr] = ACTIONS(2542), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2542), + [anon_sym_decltype] = ACTIONS(2542), + [anon_sym_virtual] = ACTIONS(2542), + [anon_sym_explicit] = ACTIONS(2542), + [anon_sym_typename] = ACTIONS(2542), + [anon_sym_template] = ACTIONS(2542), + [anon_sym_operator] = ACTIONS(2542), + [anon_sym_try] = ACTIONS(2542), + [anon_sym_delete] = ACTIONS(2542), + [anon_sym_throw] = ACTIONS(2542), + [anon_sym_namespace] = ACTIONS(2542), + [anon_sym_using] = ACTIONS(2542), + [anon_sym_static_assert] = ACTIONS(2542), + [anon_sym_concept] = ACTIONS(2542), + [anon_sym_co_return] = ACTIONS(2542), + [anon_sym_co_yield] = ACTIONS(2542), + [anon_sym_R_DQUOTE] = ACTIONS(2540), + [anon_sym_LR_DQUOTE] = ACTIONS(2540), + [anon_sym_uR_DQUOTE] = ACTIONS(2540), + [anon_sym_UR_DQUOTE] = ACTIONS(2540), + [anon_sym_u8R_DQUOTE] = ACTIONS(2540), + [anon_sym_co_await] = ACTIONS(2542), + [anon_sym_new] = ACTIONS(2542), + [anon_sym_requires] = ACTIONS(2542), + [sym_this] = ACTIONS(2542), }, - [1073] = { - [sym_identifier] = ACTIONS(2888), - [aux_sym_preproc_include_token1] = ACTIONS(2888), - [aux_sym_preproc_def_token1] = ACTIONS(2888), - [aux_sym_preproc_if_token1] = ACTIONS(2888), - [aux_sym_preproc_if_token2] = ACTIONS(2888), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2888), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2888), - [sym_preproc_directive] = ACTIONS(2888), - [anon_sym_LPAREN2] = ACTIONS(2890), - [anon_sym_BANG] = ACTIONS(2890), - [anon_sym_TILDE] = ACTIONS(2890), - [anon_sym_DASH] = ACTIONS(2888), - [anon_sym_PLUS] = ACTIONS(2888), - [anon_sym_STAR] = ACTIONS(2890), - [anon_sym_AMP_AMP] = ACTIONS(2890), - [anon_sym_AMP] = ACTIONS(2888), - [anon_sym_SEMI] = ACTIONS(2890), - [anon_sym_typedef] = ACTIONS(2888), - [anon_sym_extern] = ACTIONS(2888), - [anon_sym___attribute__] = ACTIONS(2888), - [anon_sym_COLON_COLON] = ACTIONS(2890), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2890), - [anon_sym___declspec] = ACTIONS(2888), - [anon_sym___based] = ACTIONS(2888), - [anon_sym___cdecl] = ACTIONS(2888), - [anon_sym___clrcall] = ACTIONS(2888), - [anon_sym___stdcall] = ACTIONS(2888), - [anon_sym___fastcall] = ACTIONS(2888), - [anon_sym___thiscall] = ACTIONS(2888), - [anon_sym___vectorcall] = ACTIONS(2888), - [anon_sym_LBRACE] = ACTIONS(2890), - [anon_sym_LBRACK] = ACTIONS(2888), - [anon_sym_static] = ACTIONS(2888), - [anon_sym_register] = ACTIONS(2888), - [anon_sym_inline] = ACTIONS(2888), - [anon_sym_thread_local] = ACTIONS(2888), - [anon_sym_const] = ACTIONS(2888), - [anon_sym_volatile] = ACTIONS(2888), - [anon_sym_restrict] = ACTIONS(2888), - [anon_sym__Atomic] = ACTIONS(2888), - [anon_sym_mutable] = ACTIONS(2888), - [anon_sym_constexpr] = ACTIONS(2888), - [anon_sym_constinit] = ACTIONS(2888), - [anon_sym_consteval] = ACTIONS(2888), - [anon_sym_signed] = ACTIONS(2888), - [anon_sym_unsigned] = ACTIONS(2888), - [anon_sym_long] = ACTIONS(2888), - [anon_sym_short] = ACTIONS(2888), - [sym_primitive_type] = ACTIONS(2888), - [anon_sym_enum] = ACTIONS(2888), - [anon_sym_class] = ACTIONS(2888), - [anon_sym_struct] = ACTIONS(2888), - [anon_sym_union] = ACTIONS(2888), - [anon_sym_if] = ACTIONS(2888), - [anon_sym_switch] = ACTIONS(2888), - [anon_sym_case] = ACTIONS(2888), - [anon_sym_default] = ACTIONS(2888), - [anon_sym_while] = ACTIONS(2888), - [anon_sym_do] = ACTIONS(2888), - [anon_sym_for] = ACTIONS(2888), - [anon_sym_return] = ACTIONS(2888), - [anon_sym_break] = ACTIONS(2888), - [anon_sym_continue] = ACTIONS(2888), - [anon_sym_goto] = ACTIONS(2888), - [anon_sym_not] = ACTIONS(2888), - [anon_sym_compl] = ACTIONS(2888), - [anon_sym_DASH_DASH] = ACTIONS(2890), - [anon_sym_PLUS_PLUS] = ACTIONS(2890), - [anon_sym_sizeof] = ACTIONS(2888), - [sym_number_literal] = ACTIONS(2890), - [anon_sym_L_SQUOTE] = ACTIONS(2890), - [anon_sym_u_SQUOTE] = ACTIONS(2890), - [anon_sym_U_SQUOTE] = ACTIONS(2890), - [anon_sym_u8_SQUOTE] = ACTIONS(2890), - [anon_sym_SQUOTE] = ACTIONS(2890), - [anon_sym_L_DQUOTE] = ACTIONS(2890), - [anon_sym_u_DQUOTE] = ACTIONS(2890), - [anon_sym_U_DQUOTE] = ACTIONS(2890), - [anon_sym_u8_DQUOTE] = ACTIONS(2890), - [anon_sym_DQUOTE] = ACTIONS(2890), - [sym_true] = ACTIONS(2888), - [sym_false] = ACTIONS(2888), - [sym_null] = ACTIONS(2888), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2888), - [anon_sym_decltype] = ACTIONS(2888), - [anon_sym_virtual] = ACTIONS(2888), - [anon_sym_explicit] = ACTIONS(2888), - [anon_sym_typename] = ACTIONS(2888), - [anon_sym_template] = ACTIONS(2888), - [anon_sym_operator] = ACTIONS(2888), - [anon_sym_try] = ACTIONS(2888), - [anon_sym_delete] = ACTIONS(2888), - [anon_sym_throw] = ACTIONS(2888), - [anon_sym_namespace] = ACTIONS(2888), - [anon_sym_using] = ACTIONS(2888), - [anon_sym_static_assert] = ACTIONS(2888), - [anon_sym_concept] = ACTIONS(2888), - [anon_sym_co_return] = ACTIONS(2888), - [anon_sym_co_yield] = ACTIONS(2888), - [anon_sym_R_DQUOTE] = ACTIONS(2890), - [anon_sym_LR_DQUOTE] = ACTIONS(2890), - [anon_sym_uR_DQUOTE] = ACTIONS(2890), - [anon_sym_UR_DQUOTE] = ACTIONS(2890), - [anon_sym_u8R_DQUOTE] = ACTIONS(2890), - [anon_sym_co_await] = ACTIONS(2888), - [anon_sym_new] = ACTIONS(2888), - [anon_sym_requires] = ACTIONS(2888), - [sym_this] = ACTIONS(2888), - [sym_nullptr] = ACTIONS(2888), + [1122] = { + [ts_builtin_sym_end] = ACTIONS(3030), + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, - [1074] = { - [sym_identifier] = ACTIONS(2892), - [aux_sym_preproc_include_token1] = ACTIONS(2892), - [aux_sym_preproc_def_token1] = ACTIONS(2892), - [aux_sym_preproc_if_token1] = ACTIONS(2892), - [aux_sym_preproc_if_token2] = ACTIONS(2892), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2892), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2892), - [sym_preproc_directive] = ACTIONS(2892), - [anon_sym_LPAREN2] = ACTIONS(2894), - [anon_sym_BANG] = ACTIONS(2894), - [anon_sym_TILDE] = ACTIONS(2894), - [anon_sym_DASH] = ACTIONS(2892), - [anon_sym_PLUS] = ACTIONS(2892), - [anon_sym_STAR] = ACTIONS(2894), - [anon_sym_AMP_AMP] = ACTIONS(2894), - [anon_sym_AMP] = ACTIONS(2892), - [anon_sym_SEMI] = ACTIONS(2894), - [anon_sym_typedef] = ACTIONS(2892), - [anon_sym_extern] = ACTIONS(2892), - [anon_sym___attribute__] = ACTIONS(2892), - [anon_sym_COLON_COLON] = ACTIONS(2894), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2894), - [anon_sym___declspec] = ACTIONS(2892), - [anon_sym___based] = ACTIONS(2892), - [anon_sym___cdecl] = ACTIONS(2892), - [anon_sym___clrcall] = ACTIONS(2892), - [anon_sym___stdcall] = ACTIONS(2892), - [anon_sym___fastcall] = ACTIONS(2892), - [anon_sym___thiscall] = ACTIONS(2892), - [anon_sym___vectorcall] = ACTIONS(2892), - [anon_sym_LBRACE] = ACTIONS(2894), - [anon_sym_LBRACK] = ACTIONS(2892), - [anon_sym_static] = ACTIONS(2892), - [anon_sym_register] = ACTIONS(2892), - [anon_sym_inline] = ACTIONS(2892), - [anon_sym_thread_local] = ACTIONS(2892), - [anon_sym_const] = ACTIONS(2892), - [anon_sym_volatile] = ACTIONS(2892), - [anon_sym_restrict] = ACTIONS(2892), - [anon_sym__Atomic] = ACTIONS(2892), - [anon_sym_mutable] = ACTIONS(2892), - [anon_sym_constexpr] = ACTIONS(2892), - [anon_sym_constinit] = ACTIONS(2892), - [anon_sym_consteval] = ACTIONS(2892), - [anon_sym_signed] = ACTIONS(2892), - [anon_sym_unsigned] = ACTIONS(2892), - [anon_sym_long] = ACTIONS(2892), - [anon_sym_short] = ACTIONS(2892), - [sym_primitive_type] = ACTIONS(2892), - [anon_sym_enum] = ACTIONS(2892), - [anon_sym_class] = ACTIONS(2892), - [anon_sym_struct] = ACTIONS(2892), - [anon_sym_union] = ACTIONS(2892), - [anon_sym_if] = ACTIONS(2892), - [anon_sym_switch] = ACTIONS(2892), - [anon_sym_case] = ACTIONS(2892), - [anon_sym_default] = ACTIONS(2892), - [anon_sym_while] = ACTIONS(2892), - [anon_sym_do] = ACTIONS(2892), - [anon_sym_for] = ACTIONS(2892), - [anon_sym_return] = ACTIONS(2892), - [anon_sym_break] = ACTIONS(2892), - [anon_sym_continue] = ACTIONS(2892), - [anon_sym_goto] = ACTIONS(2892), - [anon_sym_not] = ACTIONS(2892), - [anon_sym_compl] = ACTIONS(2892), - [anon_sym_DASH_DASH] = ACTIONS(2894), - [anon_sym_PLUS_PLUS] = ACTIONS(2894), - [anon_sym_sizeof] = ACTIONS(2892), - [sym_number_literal] = ACTIONS(2894), - [anon_sym_L_SQUOTE] = ACTIONS(2894), - [anon_sym_u_SQUOTE] = ACTIONS(2894), - [anon_sym_U_SQUOTE] = ACTIONS(2894), - [anon_sym_u8_SQUOTE] = ACTIONS(2894), - [anon_sym_SQUOTE] = ACTIONS(2894), - [anon_sym_L_DQUOTE] = ACTIONS(2894), - [anon_sym_u_DQUOTE] = ACTIONS(2894), - [anon_sym_U_DQUOTE] = ACTIONS(2894), - [anon_sym_u8_DQUOTE] = ACTIONS(2894), - [anon_sym_DQUOTE] = ACTIONS(2894), - [sym_true] = ACTIONS(2892), - [sym_false] = ACTIONS(2892), - [sym_null] = ACTIONS(2892), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2892), - [anon_sym_decltype] = ACTIONS(2892), - [anon_sym_virtual] = ACTIONS(2892), - [anon_sym_explicit] = ACTIONS(2892), - [anon_sym_typename] = ACTIONS(2892), - [anon_sym_template] = ACTIONS(2892), - [anon_sym_operator] = ACTIONS(2892), - [anon_sym_try] = ACTIONS(2892), - [anon_sym_delete] = ACTIONS(2892), - [anon_sym_throw] = ACTIONS(2892), - [anon_sym_namespace] = ACTIONS(2892), - [anon_sym_using] = ACTIONS(2892), - [anon_sym_static_assert] = ACTIONS(2892), - [anon_sym_concept] = ACTIONS(2892), - [anon_sym_co_return] = ACTIONS(2892), - [anon_sym_co_yield] = ACTIONS(2892), - [anon_sym_R_DQUOTE] = ACTIONS(2894), - [anon_sym_LR_DQUOTE] = ACTIONS(2894), - [anon_sym_uR_DQUOTE] = ACTIONS(2894), - [anon_sym_UR_DQUOTE] = ACTIONS(2894), - [anon_sym_u8R_DQUOTE] = ACTIONS(2894), - [anon_sym_co_await] = ACTIONS(2892), - [anon_sym_new] = ACTIONS(2892), - [anon_sym_requires] = ACTIONS(2892), - [sym_this] = ACTIONS(2892), - [sym_nullptr] = ACTIONS(2892), + [1123] = { + [sym_identifier] = ACTIONS(3079), + [aux_sym_preproc_include_token1] = ACTIONS(3079), + [aux_sym_preproc_def_token1] = ACTIONS(3079), + [aux_sym_preproc_if_token1] = ACTIONS(3079), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3079), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3079), + [sym_preproc_directive] = ACTIONS(3079), + [anon_sym_LPAREN2] = ACTIONS(3081), + [anon_sym_BANG] = ACTIONS(3081), + [anon_sym_TILDE] = ACTIONS(3081), + [anon_sym_DASH] = ACTIONS(3079), + [anon_sym_PLUS] = ACTIONS(3079), + [anon_sym_STAR] = ACTIONS(3081), + [anon_sym_AMP_AMP] = ACTIONS(3081), + [anon_sym_AMP] = ACTIONS(3079), + [anon_sym_SEMI] = ACTIONS(3081), + [anon_sym_typedef] = ACTIONS(3079), + [anon_sym_extern] = ACTIONS(3079), + [anon_sym___attribute__] = ACTIONS(3079), + [anon_sym_COLON_COLON] = ACTIONS(3081), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3081), + [anon_sym___declspec] = ACTIONS(3079), + [anon_sym___based] = ACTIONS(3079), + [anon_sym___cdecl] = ACTIONS(3079), + [anon_sym___clrcall] = ACTIONS(3079), + [anon_sym___stdcall] = ACTIONS(3079), + [anon_sym___fastcall] = ACTIONS(3079), + [anon_sym___thiscall] = ACTIONS(3079), + [anon_sym___vectorcall] = ACTIONS(3079), + [anon_sym_LBRACE] = ACTIONS(3081), + [anon_sym_RBRACE] = ACTIONS(3081), + [anon_sym_LBRACK] = ACTIONS(3079), + [anon_sym_static] = ACTIONS(3079), + [anon_sym_register] = ACTIONS(3079), + [anon_sym_inline] = ACTIONS(3079), + [anon_sym_thread_local] = ACTIONS(3079), + [anon_sym_const] = ACTIONS(3079), + [anon_sym_constexpr] = ACTIONS(3079), + [anon_sym_volatile] = ACTIONS(3079), + [anon_sym_restrict] = ACTIONS(3079), + [anon_sym___restrict__] = ACTIONS(3079), + [anon_sym__Atomic] = ACTIONS(3079), + [anon_sym__Noreturn] = ACTIONS(3079), + [anon_sym_noreturn] = ACTIONS(3079), + [anon_sym_mutable] = ACTIONS(3079), + [anon_sym_constinit] = ACTIONS(3079), + [anon_sym_consteval] = ACTIONS(3079), + [anon_sym_signed] = ACTIONS(3079), + [anon_sym_unsigned] = ACTIONS(3079), + [anon_sym_long] = ACTIONS(3079), + [anon_sym_short] = ACTIONS(3079), + [sym_primitive_type] = ACTIONS(3079), + [anon_sym_enum] = ACTIONS(3079), + [anon_sym_class] = ACTIONS(3079), + [anon_sym_struct] = ACTIONS(3079), + [anon_sym_union] = ACTIONS(3079), + [anon_sym_if] = ACTIONS(3079), + [anon_sym_else] = ACTIONS(3609), + [anon_sym_switch] = ACTIONS(3079), + [anon_sym_case] = ACTIONS(3079), + [anon_sym_default] = ACTIONS(3079), + [anon_sym_while] = ACTIONS(3079), + [anon_sym_do] = ACTIONS(3079), + [anon_sym_for] = ACTIONS(3079), + [anon_sym_return] = ACTIONS(3079), + [anon_sym_break] = ACTIONS(3079), + [anon_sym_continue] = ACTIONS(3079), + [anon_sym_goto] = ACTIONS(3079), + [anon_sym_not] = ACTIONS(3079), + [anon_sym_compl] = ACTIONS(3079), + [anon_sym_DASH_DASH] = ACTIONS(3081), + [anon_sym_PLUS_PLUS] = ACTIONS(3081), + [anon_sym_sizeof] = ACTIONS(3079), + [anon_sym_offsetof] = ACTIONS(3079), + [anon_sym__Generic] = ACTIONS(3079), + [anon_sym_asm] = ACTIONS(3079), + [anon_sym___asm__] = ACTIONS(3079), + [sym_number_literal] = ACTIONS(3081), + [anon_sym_L_SQUOTE] = ACTIONS(3081), + [anon_sym_u_SQUOTE] = ACTIONS(3081), + [anon_sym_U_SQUOTE] = ACTIONS(3081), + [anon_sym_u8_SQUOTE] = ACTIONS(3081), + [anon_sym_SQUOTE] = ACTIONS(3081), + [anon_sym_L_DQUOTE] = ACTIONS(3081), + [anon_sym_u_DQUOTE] = ACTIONS(3081), + [anon_sym_U_DQUOTE] = ACTIONS(3081), + [anon_sym_u8_DQUOTE] = ACTIONS(3081), + [anon_sym_DQUOTE] = ACTIONS(3081), + [sym_true] = ACTIONS(3079), + [sym_false] = ACTIONS(3079), + [anon_sym_NULL] = ACTIONS(3079), + [anon_sym_nullptr] = ACTIONS(3079), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3079), + [anon_sym_decltype] = ACTIONS(3079), + [anon_sym_virtual] = ACTIONS(3079), + [anon_sym_explicit] = ACTIONS(3079), + [anon_sym_typename] = ACTIONS(3079), + [anon_sym_template] = ACTIONS(3079), + [anon_sym_operator] = ACTIONS(3079), + [anon_sym_try] = ACTIONS(3079), + [anon_sym_delete] = ACTIONS(3079), + [anon_sym_throw] = ACTIONS(3079), + [anon_sym_namespace] = ACTIONS(3079), + [anon_sym_using] = ACTIONS(3079), + [anon_sym_static_assert] = ACTIONS(3079), + [anon_sym_concept] = ACTIONS(3079), + [anon_sym_co_return] = ACTIONS(3079), + [anon_sym_co_yield] = ACTIONS(3079), + [anon_sym_R_DQUOTE] = ACTIONS(3081), + [anon_sym_LR_DQUOTE] = ACTIONS(3081), + [anon_sym_uR_DQUOTE] = ACTIONS(3081), + [anon_sym_UR_DQUOTE] = ACTIONS(3081), + [anon_sym_u8R_DQUOTE] = ACTIONS(3081), + [anon_sym_co_await] = ACTIONS(3079), + [anon_sym_new] = ACTIONS(3079), + [anon_sym_requires] = ACTIONS(3079), + [sym_this] = ACTIONS(3079), }, - [1075] = { - [sym_identifier] = ACTIONS(2896), - [aux_sym_preproc_include_token1] = ACTIONS(2896), - [aux_sym_preproc_def_token1] = ACTIONS(2896), - [aux_sym_preproc_if_token1] = ACTIONS(2896), - [aux_sym_preproc_if_token2] = ACTIONS(2896), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2896), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2896), - [sym_preproc_directive] = ACTIONS(2896), - [anon_sym_LPAREN2] = ACTIONS(2898), - [anon_sym_BANG] = ACTIONS(2898), - [anon_sym_TILDE] = ACTIONS(2898), - [anon_sym_DASH] = ACTIONS(2896), - [anon_sym_PLUS] = ACTIONS(2896), - [anon_sym_STAR] = ACTIONS(2898), - [anon_sym_AMP_AMP] = ACTIONS(2898), - [anon_sym_AMP] = ACTIONS(2896), - [anon_sym_SEMI] = ACTIONS(2898), - [anon_sym_typedef] = ACTIONS(2896), - [anon_sym_extern] = ACTIONS(2896), - [anon_sym___attribute__] = ACTIONS(2896), - [anon_sym_COLON_COLON] = ACTIONS(2898), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2898), - [anon_sym___declspec] = ACTIONS(2896), - [anon_sym___based] = ACTIONS(2896), - [anon_sym___cdecl] = ACTIONS(2896), - [anon_sym___clrcall] = ACTIONS(2896), - [anon_sym___stdcall] = ACTIONS(2896), - [anon_sym___fastcall] = ACTIONS(2896), - [anon_sym___thiscall] = ACTIONS(2896), - [anon_sym___vectorcall] = ACTIONS(2896), - [anon_sym_LBRACE] = ACTIONS(2898), - [anon_sym_LBRACK] = ACTIONS(2896), - [anon_sym_static] = ACTIONS(2896), - [anon_sym_register] = ACTIONS(2896), - [anon_sym_inline] = ACTIONS(2896), - [anon_sym_thread_local] = ACTIONS(2896), - [anon_sym_const] = ACTIONS(2896), - [anon_sym_volatile] = ACTIONS(2896), - [anon_sym_restrict] = ACTIONS(2896), - [anon_sym__Atomic] = ACTIONS(2896), - [anon_sym_mutable] = ACTIONS(2896), - [anon_sym_constexpr] = ACTIONS(2896), - [anon_sym_constinit] = ACTIONS(2896), - [anon_sym_consteval] = ACTIONS(2896), - [anon_sym_signed] = ACTIONS(2896), - [anon_sym_unsigned] = ACTIONS(2896), - [anon_sym_long] = ACTIONS(2896), - [anon_sym_short] = ACTIONS(2896), - [sym_primitive_type] = ACTIONS(2896), - [anon_sym_enum] = ACTIONS(2896), - [anon_sym_class] = ACTIONS(2896), - [anon_sym_struct] = ACTIONS(2896), - [anon_sym_union] = ACTIONS(2896), - [anon_sym_if] = ACTIONS(2896), - [anon_sym_switch] = ACTIONS(2896), - [anon_sym_case] = ACTIONS(2896), - [anon_sym_default] = ACTIONS(2896), - [anon_sym_while] = ACTIONS(2896), - [anon_sym_do] = ACTIONS(2896), - [anon_sym_for] = ACTIONS(2896), - [anon_sym_return] = ACTIONS(2896), - [anon_sym_break] = ACTIONS(2896), - [anon_sym_continue] = ACTIONS(2896), - [anon_sym_goto] = ACTIONS(2896), - [anon_sym_not] = ACTIONS(2896), - [anon_sym_compl] = ACTIONS(2896), - [anon_sym_DASH_DASH] = ACTIONS(2898), - [anon_sym_PLUS_PLUS] = ACTIONS(2898), - [anon_sym_sizeof] = ACTIONS(2896), - [sym_number_literal] = ACTIONS(2898), - [anon_sym_L_SQUOTE] = ACTIONS(2898), - [anon_sym_u_SQUOTE] = ACTIONS(2898), - [anon_sym_U_SQUOTE] = ACTIONS(2898), - [anon_sym_u8_SQUOTE] = ACTIONS(2898), - [anon_sym_SQUOTE] = ACTIONS(2898), - [anon_sym_L_DQUOTE] = ACTIONS(2898), - [anon_sym_u_DQUOTE] = ACTIONS(2898), - [anon_sym_U_DQUOTE] = ACTIONS(2898), - [anon_sym_u8_DQUOTE] = ACTIONS(2898), - [anon_sym_DQUOTE] = ACTIONS(2898), - [sym_true] = ACTIONS(2896), - [sym_false] = ACTIONS(2896), - [sym_null] = ACTIONS(2896), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2896), - [anon_sym_decltype] = ACTIONS(2896), - [anon_sym_virtual] = ACTIONS(2896), - [anon_sym_explicit] = ACTIONS(2896), - [anon_sym_typename] = ACTIONS(2896), - [anon_sym_template] = ACTIONS(2896), - [anon_sym_operator] = ACTIONS(2896), - [anon_sym_try] = ACTIONS(2896), - [anon_sym_delete] = ACTIONS(2896), - [anon_sym_throw] = ACTIONS(2896), - [anon_sym_namespace] = ACTIONS(2896), - [anon_sym_using] = ACTIONS(2896), - [anon_sym_static_assert] = ACTIONS(2896), - [anon_sym_concept] = ACTIONS(2896), - [anon_sym_co_return] = ACTIONS(2896), - [anon_sym_co_yield] = ACTIONS(2896), - [anon_sym_R_DQUOTE] = ACTIONS(2898), - [anon_sym_LR_DQUOTE] = ACTIONS(2898), - [anon_sym_uR_DQUOTE] = ACTIONS(2898), - [anon_sym_UR_DQUOTE] = ACTIONS(2898), - [anon_sym_u8R_DQUOTE] = ACTIONS(2898), - [anon_sym_co_await] = ACTIONS(2896), - [anon_sym_new] = ACTIONS(2896), - [anon_sym_requires] = ACTIONS(2896), - [sym_this] = ACTIONS(2896), - [sym_nullptr] = ACTIONS(2896), - }, - [1076] = { - [sym_identifier] = ACTIONS(2900), - [aux_sym_preproc_include_token1] = ACTIONS(2900), - [aux_sym_preproc_def_token1] = ACTIONS(2900), - [aux_sym_preproc_if_token1] = ACTIONS(2900), - [aux_sym_preproc_if_token2] = ACTIONS(2900), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2900), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2900), - [sym_preproc_directive] = ACTIONS(2900), - [anon_sym_LPAREN2] = ACTIONS(2902), - [anon_sym_BANG] = ACTIONS(2902), - [anon_sym_TILDE] = ACTIONS(2902), - [anon_sym_DASH] = ACTIONS(2900), - [anon_sym_PLUS] = ACTIONS(2900), - [anon_sym_STAR] = ACTIONS(2902), - [anon_sym_AMP_AMP] = ACTIONS(2902), - [anon_sym_AMP] = ACTIONS(2900), - [anon_sym_SEMI] = ACTIONS(2902), - [anon_sym_typedef] = ACTIONS(2900), - [anon_sym_extern] = ACTIONS(2900), - [anon_sym___attribute__] = ACTIONS(2900), - [anon_sym_COLON_COLON] = ACTIONS(2902), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2902), - [anon_sym___declspec] = ACTIONS(2900), - [anon_sym___based] = ACTIONS(2900), - [anon_sym___cdecl] = ACTIONS(2900), - [anon_sym___clrcall] = ACTIONS(2900), - [anon_sym___stdcall] = ACTIONS(2900), - [anon_sym___fastcall] = ACTIONS(2900), - [anon_sym___thiscall] = ACTIONS(2900), - [anon_sym___vectorcall] = ACTIONS(2900), - [anon_sym_LBRACE] = ACTIONS(2902), - [anon_sym_LBRACK] = ACTIONS(2900), - [anon_sym_static] = ACTIONS(2900), - [anon_sym_register] = ACTIONS(2900), - [anon_sym_inline] = ACTIONS(2900), - [anon_sym_thread_local] = ACTIONS(2900), - [anon_sym_const] = ACTIONS(2900), - [anon_sym_volatile] = ACTIONS(2900), - [anon_sym_restrict] = ACTIONS(2900), - [anon_sym__Atomic] = ACTIONS(2900), - [anon_sym_mutable] = ACTIONS(2900), - [anon_sym_constexpr] = ACTIONS(2900), - [anon_sym_constinit] = ACTIONS(2900), - [anon_sym_consteval] = ACTIONS(2900), - [anon_sym_signed] = ACTIONS(2900), - [anon_sym_unsigned] = ACTIONS(2900), - [anon_sym_long] = ACTIONS(2900), - [anon_sym_short] = ACTIONS(2900), - [sym_primitive_type] = ACTIONS(2900), - [anon_sym_enum] = ACTIONS(2900), - [anon_sym_class] = ACTIONS(2900), - [anon_sym_struct] = ACTIONS(2900), - [anon_sym_union] = ACTIONS(2900), - [anon_sym_if] = ACTIONS(2900), - [anon_sym_switch] = ACTIONS(2900), - [anon_sym_case] = ACTIONS(2900), - [anon_sym_default] = ACTIONS(2900), - [anon_sym_while] = ACTIONS(2900), - [anon_sym_do] = ACTIONS(2900), - [anon_sym_for] = ACTIONS(2900), - [anon_sym_return] = ACTIONS(2900), - [anon_sym_break] = ACTIONS(2900), - [anon_sym_continue] = ACTIONS(2900), - [anon_sym_goto] = ACTIONS(2900), - [anon_sym_not] = ACTIONS(2900), - [anon_sym_compl] = ACTIONS(2900), - [anon_sym_DASH_DASH] = ACTIONS(2902), - [anon_sym_PLUS_PLUS] = ACTIONS(2902), - [anon_sym_sizeof] = ACTIONS(2900), - [sym_number_literal] = ACTIONS(2902), - [anon_sym_L_SQUOTE] = ACTIONS(2902), - [anon_sym_u_SQUOTE] = ACTIONS(2902), - [anon_sym_U_SQUOTE] = ACTIONS(2902), - [anon_sym_u8_SQUOTE] = ACTIONS(2902), - [anon_sym_SQUOTE] = ACTIONS(2902), - [anon_sym_L_DQUOTE] = ACTIONS(2902), - [anon_sym_u_DQUOTE] = ACTIONS(2902), - [anon_sym_U_DQUOTE] = ACTIONS(2902), - [anon_sym_u8_DQUOTE] = ACTIONS(2902), - [anon_sym_DQUOTE] = ACTIONS(2902), - [sym_true] = ACTIONS(2900), - [sym_false] = ACTIONS(2900), - [sym_null] = ACTIONS(2900), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2900), - [anon_sym_decltype] = ACTIONS(2900), - [anon_sym_virtual] = ACTIONS(2900), - [anon_sym_explicit] = ACTIONS(2900), - [anon_sym_typename] = ACTIONS(2900), - [anon_sym_template] = ACTIONS(2900), - [anon_sym_operator] = ACTIONS(2900), - [anon_sym_try] = ACTIONS(2900), - [anon_sym_delete] = ACTIONS(2900), - [anon_sym_throw] = ACTIONS(2900), - [anon_sym_namespace] = ACTIONS(2900), - [anon_sym_using] = ACTIONS(2900), - [anon_sym_static_assert] = ACTIONS(2900), - [anon_sym_concept] = ACTIONS(2900), - [anon_sym_co_return] = ACTIONS(2900), - [anon_sym_co_yield] = ACTIONS(2900), - [anon_sym_R_DQUOTE] = ACTIONS(2902), - [anon_sym_LR_DQUOTE] = ACTIONS(2902), - [anon_sym_uR_DQUOTE] = ACTIONS(2902), - [anon_sym_UR_DQUOTE] = ACTIONS(2902), - [anon_sym_u8R_DQUOTE] = ACTIONS(2902), - [anon_sym_co_await] = ACTIONS(2900), - [anon_sym_new] = ACTIONS(2900), - [anon_sym_requires] = ACTIONS(2900), - [sym_this] = ACTIONS(2900), - [sym_nullptr] = ACTIONS(2900), - }, - [1077] = { - [sym_identifier] = ACTIONS(2694), - [aux_sym_preproc_include_token1] = ACTIONS(2694), - [aux_sym_preproc_def_token1] = ACTIONS(2694), - [aux_sym_preproc_if_token1] = ACTIONS(2694), - [aux_sym_preproc_if_token2] = ACTIONS(2694), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2694), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2694), - [sym_preproc_directive] = ACTIONS(2694), - [anon_sym_LPAREN2] = ACTIONS(2696), - [anon_sym_BANG] = ACTIONS(2696), - [anon_sym_TILDE] = ACTIONS(2696), - [anon_sym_DASH] = ACTIONS(2694), - [anon_sym_PLUS] = ACTIONS(2694), - [anon_sym_STAR] = ACTIONS(2696), - [anon_sym_AMP_AMP] = ACTIONS(2696), - [anon_sym_AMP] = ACTIONS(2694), - [anon_sym_SEMI] = ACTIONS(2696), - [anon_sym_typedef] = ACTIONS(2694), - [anon_sym_extern] = ACTIONS(2694), - [anon_sym___attribute__] = ACTIONS(2694), - [anon_sym_COLON_COLON] = ACTIONS(2696), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2696), - [anon_sym___declspec] = ACTIONS(2694), - [anon_sym___based] = ACTIONS(2694), - [anon_sym___cdecl] = ACTIONS(2694), - [anon_sym___clrcall] = ACTIONS(2694), - [anon_sym___stdcall] = ACTIONS(2694), - [anon_sym___fastcall] = ACTIONS(2694), - [anon_sym___thiscall] = ACTIONS(2694), - [anon_sym___vectorcall] = ACTIONS(2694), - [anon_sym_LBRACE] = ACTIONS(2696), - [anon_sym_LBRACK] = ACTIONS(2694), - [anon_sym_static] = ACTIONS(2694), - [anon_sym_register] = ACTIONS(2694), - [anon_sym_inline] = ACTIONS(2694), - [anon_sym_thread_local] = ACTIONS(2694), - [anon_sym_const] = ACTIONS(2694), - [anon_sym_volatile] = ACTIONS(2694), - [anon_sym_restrict] = ACTIONS(2694), - [anon_sym__Atomic] = ACTIONS(2694), - [anon_sym_mutable] = ACTIONS(2694), - [anon_sym_constexpr] = ACTIONS(2694), - [anon_sym_constinit] = ACTIONS(2694), - [anon_sym_consteval] = ACTIONS(2694), - [anon_sym_signed] = ACTIONS(2694), - [anon_sym_unsigned] = ACTIONS(2694), - [anon_sym_long] = ACTIONS(2694), - [anon_sym_short] = ACTIONS(2694), - [sym_primitive_type] = ACTIONS(2694), - [anon_sym_enum] = ACTIONS(2694), - [anon_sym_class] = ACTIONS(2694), - [anon_sym_struct] = ACTIONS(2694), - [anon_sym_union] = ACTIONS(2694), - [anon_sym_if] = ACTIONS(2694), - [anon_sym_switch] = ACTIONS(2694), - [anon_sym_case] = ACTIONS(2694), - [anon_sym_default] = ACTIONS(2694), - [anon_sym_while] = ACTIONS(2694), - [anon_sym_do] = ACTIONS(2694), - [anon_sym_for] = ACTIONS(2694), - [anon_sym_return] = ACTIONS(2694), - [anon_sym_break] = ACTIONS(2694), - [anon_sym_continue] = ACTIONS(2694), - [anon_sym_goto] = ACTIONS(2694), - [anon_sym_not] = ACTIONS(2694), - [anon_sym_compl] = ACTIONS(2694), - [anon_sym_DASH_DASH] = ACTIONS(2696), - [anon_sym_PLUS_PLUS] = ACTIONS(2696), - [anon_sym_sizeof] = ACTIONS(2694), - [sym_number_literal] = ACTIONS(2696), - [anon_sym_L_SQUOTE] = ACTIONS(2696), - [anon_sym_u_SQUOTE] = ACTIONS(2696), - [anon_sym_U_SQUOTE] = ACTIONS(2696), - [anon_sym_u8_SQUOTE] = ACTIONS(2696), - [anon_sym_SQUOTE] = ACTIONS(2696), - [anon_sym_L_DQUOTE] = ACTIONS(2696), - [anon_sym_u_DQUOTE] = ACTIONS(2696), - [anon_sym_U_DQUOTE] = ACTIONS(2696), - [anon_sym_u8_DQUOTE] = ACTIONS(2696), - [anon_sym_DQUOTE] = ACTIONS(2696), - [sym_true] = ACTIONS(2694), - [sym_false] = ACTIONS(2694), - [sym_null] = ACTIONS(2694), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2694), - [anon_sym_decltype] = ACTIONS(2694), - [anon_sym_virtual] = ACTIONS(2694), - [anon_sym_explicit] = ACTIONS(2694), - [anon_sym_typename] = ACTIONS(2694), - [anon_sym_template] = ACTIONS(2694), - [anon_sym_operator] = ACTIONS(2694), - [anon_sym_try] = ACTIONS(2694), - [anon_sym_delete] = ACTIONS(2694), - [anon_sym_throw] = ACTIONS(2694), - [anon_sym_namespace] = ACTIONS(2694), - [anon_sym_using] = ACTIONS(2694), - [anon_sym_static_assert] = ACTIONS(2694), - [anon_sym_concept] = ACTIONS(2694), - [anon_sym_co_return] = ACTIONS(2694), - [anon_sym_co_yield] = ACTIONS(2694), - [anon_sym_R_DQUOTE] = ACTIONS(2696), - [anon_sym_LR_DQUOTE] = ACTIONS(2696), - [anon_sym_uR_DQUOTE] = ACTIONS(2696), - [anon_sym_UR_DQUOTE] = ACTIONS(2696), - [anon_sym_u8R_DQUOTE] = ACTIONS(2696), - [anon_sym_co_await] = ACTIONS(2694), - [anon_sym_new] = ACTIONS(2694), - [anon_sym_requires] = ACTIONS(2694), - [sym_this] = ACTIONS(2694), - [sym_nullptr] = ACTIONS(2694), - }, - [1078] = { - [sym_identifier] = ACTIONS(2690), - [aux_sym_preproc_include_token1] = ACTIONS(2690), - [aux_sym_preproc_def_token1] = ACTIONS(2690), - [aux_sym_preproc_if_token1] = ACTIONS(2690), - [aux_sym_preproc_if_token2] = ACTIONS(2690), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2690), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2690), - [sym_preproc_directive] = ACTIONS(2690), - [anon_sym_LPAREN2] = ACTIONS(2692), - [anon_sym_BANG] = ACTIONS(2692), - [anon_sym_TILDE] = ACTIONS(2692), - [anon_sym_DASH] = ACTIONS(2690), - [anon_sym_PLUS] = ACTIONS(2690), - [anon_sym_STAR] = ACTIONS(2692), - [anon_sym_AMP_AMP] = ACTIONS(2692), - [anon_sym_AMP] = ACTIONS(2690), - [anon_sym_SEMI] = ACTIONS(2692), - [anon_sym_typedef] = ACTIONS(2690), - [anon_sym_extern] = ACTIONS(2690), - [anon_sym___attribute__] = ACTIONS(2690), - [anon_sym_COLON_COLON] = ACTIONS(2692), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2692), - [anon_sym___declspec] = ACTIONS(2690), - [anon_sym___based] = ACTIONS(2690), - [anon_sym___cdecl] = ACTIONS(2690), - [anon_sym___clrcall] = ACTIONS(2690), - [anon_sym___stdcall] = ACTIONS(2690), - [anon_sym___fastcall] = ACTIONS(2690), - [anon_sym___thiscall] = ACTIONS(2690), - [anon_sym___vectorcall] = ACTIONS(2690), - [anon_sym_LBRACE] = ACTIONS(2692), - [anon_sym_LBRACK] = ACTIONS(2690), - [anon_sym_static] = ACTIONS(2690), - [anon_sym_register] = ACTIONS(2690), - [anon_sym_inline] = ACTIONS(2690), - [anon_sym_thread_local] = ACTIONS(2690), - [anon_sym_const] = ACTIONS(2690), - [anon_sym_volatile] = ACTIONS(2690), - [anon_sym_restrict] = ACTIONS(2690), - [anon_sym__Atomic] = ACTIONS(2690), - [anon_sym_mutable] = ACTIONS(2690), - [anon_sym_constexpr] = ACTIONS(2690), - [anon_sym_constinit] = ACTIONS(2690), - [anon_sym_consteval] = ACTIONS(2690), - [anon_sym_signed] = ACTIONS(2690), - [anon_sym_unsigned] = ACTIONS(2690), - [anon_sym_long] = ACTIONS(2690), - [anon_sym_short] = ACTIONS(2690), - [sym_primitive_type] = ACTIONS(2690), - [anon_sym_enum] = ACTIONS(2690), - [anon_sym_class] = ACTIONS(2690), - [anon_sym_struct] = ACTIONS(2690), - [anon_sym_union] = ACTIONS(2690), - [anon_sym_if] = ACTIONS(2690), - [anon_sym_switch] = ACTIONS(2690), - [anon_sym_case] = ACTIONS(2690), - [anon_sym_default] = ACTIONS(2690), - [anon_sym_while] = ACTIONS(2690), - [anon_sym_do] = ACTIONS(2690), - [anon_sym_for] = ACTIONS(2690), - [anon_sym_return] = ACTIONS(2690), - [anon_sym_break] = ACTIONS(2690), - [anon_sym_continue] = ACTIONS(2690), - [anon_sym_goto] = ACTIONS(2690), - [anon_sym_not] = ACTIONS(2690), - [anon_sym_compl] = ACTIONS(2690), - [anon_sym_DASH_DASH] = ACTIONS(2692), - [anon_sym_PLUS_PLUS] = ACTIONS(2692), - [anon_sym_sizeof] = ACTIONS(2690), - [sym_number_literal] = ACTIONS(2692), - [anon_sym_L_SQUOTE] = ACTIONS(2692), - [anon_sym_u_SQUOTE] = ACTIONS(2692), - [anon_sym_U_SQUOTE] = ACTIONS(2692), - [anon_sym_u8_SQUOTE] = ACTIONS(2692), - [anon_sym_SQUOTE] = ACTIONS(2692), - [anon_sym_L_DQUOTE] = ACTIONS(2692), - [anon_sym_u_DQUOTE] = ACTIONS(2692), - [anon_sym_U_DQUOTE] = ACTIONS(2692), - [anon_sym_u8_DQUOTE] = ACTIONS(2692), - [anon_sym_DQUOTE] = ACTIONS(2692), - [sym_true] = ACTIONS(2690), - [sym_false] = ACTIONS(2690), - [sym_null] = ACTIONS(2690), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2690), - [anon_sym_decltype] = ACTIONS(2690), - [anon_sym_virtual] = ACTIONS(2690), - [anon_sym_explicit] = ACTIONS(2690), - [anon_sym_typename] = ACTIONS(2690), - [anon_sym_template] = ACTIONS(2690), - [anon_sym_operator] = ACTIONS(2690), - [anon_sym_try] = ACTIONS(2690), - [anon_sym_delete] = ACTIONS(2690), - [anon_sym_throw] = ACTIONS(2690), - [anon_sym_namespace] = ACTIONS(2690), - [anon_sym_using] = ACTIONS(2690), - [anon_sym_static_assert] = ACTIONS(2690), - [anon_sym_concept] = ACTIONS(2690), - [anon_sym_co_return] = ACTIONS(2690), - [anon_sym_co_yield] = ACTIONS(2690), - [anon_sym_R_DQUOTE] = ACTIONS(2692), - [anon_sym_LR_DQUOTE] = ACTIONS(2692), - [anon_sym_uR_DQUOTE] = ACTIONS(2692), - [anon_sym_UR_DQUOTE] = ACTIONS(2692), - [anon_sym_u8R_DQUOTE] = ACTIONS(2692), - [anon_sym_co_await] = ACTIONS(2690), - [anon_sym_new] = ACTIONS(2690), - [anon_sym_requires] = ACTIONS(2690), - [sym_this] = ACTIONS(2690), - [sym_nullptr] = ACTIONS(2690), - }, - [1079] = { - [sym_identifier] = ACTIONS(2830), - [aux_sym_preproc_include_token1] = ACTIONS(2830), - [aux_sym_preproc_def_token1] = ACTIONS(2830), - [aux_sym_preproc_if_token1] = ACTIONS(2830), - [aux_sym_preproc_if_token2] = ACTIONS(2830), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2830), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2830), - [sym_preproc_directive] = ACTIONS(2830), - [anon_sym_LPAREN2] = ACTIONS(2832), - [anon_sym_BANG] = ACTIONS(2832), - [anon_sym_TILDE] = ACTIONS(2832), - [anon_sym_DASH] = ACTIONS(2830), - [anon_sym_PLUS] = ACTIONS(2830), - [anon_sym_STAR] = ACTIONS(2832), - [anon_sym_AMP_AMP] = ACTIONS(2832), - [anon_sym_AMP] = ACTIONS(2830), - [anon_sym_SEMI] = ACTIONS(2832), - [anon_sym_typedef] = ACTIONS(2830), - [anon_sym_extern] = ACTIONS(2830), - [anon_sym___attribute__] = ACTIONS(2830), - [anon_sym_COLON_COLON] = ACTIONS(2832), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2832), - [anon_sym___declspec] = ACTIONS(2830), - [anon_sym___based] = ACTIONS(2830), - [anon_sym___cdecl] = ACTIONS(2830), - [anon_sym___clrcall] = ACTIONS(2830), - [anon_sym___stdcall] = ACTIONS(2830), - [anon_sym___fastcall] = ACTIONS(2830), - [anon_sym___thiscall] = ACTIONS(2830), - [anon_sym___vectorcall] = ACTIONS(2830), - [anon_sym_LBRACE] = ACTIONS(2832), - [anon_sym_LBRACK] = ACTIONS(2830), - [anon_sym_static] = ACTIONS(2830), - [anon_sym_register] = ACTIONS(2830), - [anon_sym_inline] = ACTIONS(2830), - [anon_sym_thread_local] = ACTIONS(2830), - [anon_sym_const] = ACTIONS(2830), - [anon_sym_volatile] = ACTIONS(2830), - [anon_sym_restrict] = ACTIONS(2830), - [anon_sym__Atomic] = ACTIONS(2830), - [anon_sym_mutable] = ACTIONS(2830), - [anon_sym_constexpr] = ACTIONS(2830), - [anon_sym_constinit] = ACTIONS(2830), - [anon_sym_consteval] = ACTIONS(2830), - [anon_sym_signed] = ACTIONS(2830), - [anon_sym_unsigned] = ACTIONS(2830), - [anon_sym_long] = ACTIONS(2830), - [anon_sym_short] = ACTIONS(2830), - [sym_primitive_type] = ACTIONS(2830), - [anon_sym_enum] = ACTIONS(2830), - [anon_sym_class] = ACTIONS(2830), - [anon_sym_struct] = ACTIONS(2830), - [anon_sym_union] = ACTIONS(2830), - [anon_sym_if] = ACTIONS(2830), - [anon_sym_switch] = ACTIONS(2830), - [anon_sym_case] = ACTIONS(2830), - [anon_sym_default] = ACTIONS(2830), - [anon_sym_while] = ACTIONS(2830), - [anon_sym_do] = ACTIONS(2830), - [anon_sym_for] = ACTIONS(2830), - [anon_sym_return] = ACTIONS(2830), - [anon_sym_break] = ACTIONS(2830), - [anon_sym_continue] = ACTIONS(2830), - [anon_sym_goto] = ACTIONS(2830), - [anon_sym_not] = ACTIONS(2830), - [anon_sym_compl] = ACTIONS(2830), - [anon_sym_DASH_DASH] = ACTIONS(2832), - [anon_sym_PLUS_PLUS] = ACTIONS(2832), - [anon_sym_sizeof] = ACTIONS(2830), - [sym_number_literal] = ACTIONS(2832), - [anon_sym_L_SQUOTE] = ACTIONS(2832), - [anon_sym_u_SQUOTE] = ACTIONS(2832), - [anon_sym_U_SQUOTE] = ACTIONS(2832), - [anon_sym_u8_SQUOTE] = ACTIONS(2832), - [anon_sym_SQUOTE] = ACTIONS(2832), - [anon_sym_L_DQUOTE] = ACTIONS(2832), - [anon_sym_u_DQUOTE] = ACTIONS(2832), - [anon_sym_U_DQUOTE] = ACTIONS(2832), - [anon_sym_u8_DQUOTE] = ACTIONS(2832), - [anon_sym_DQUOTE] = ACTIONS(2832), - [sym_true] = ACTIONS(2830), - [sym_false] = ACTIONS(2830), - [sym_null] = ACTIONS(2830), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2830), - [anon_sym_decltype] = ACTIONS(2830), - [anon_sym_virtual] = ACTIONS(2830), - [anon_sym_explicit] = ACTIONS(2830), - [anon_sym_typename] = ACTIONS(2830), - [anon_sym_template] = ACTIONS(2830), - [anon_sym_operator] = ACTIONS(2830), - [anon_sym_try] = ACTIONS(2830), - [anon_sym_delete] = ACTIONS(2830), - [anon_sym_throw] = ACTIONS(2830), - [anon_sym_namespace] = ACTIONS(2830), - [anon_sym_using] = ACTIONS(2830), - [anon_sym_static_assert] = ACTIONS(2830), - [anon_sym_concept] = ACTIONS(2830), - [anon_sym_co_return] = ACTIONS(2830), - [anon_sym_co_yield] = ACTIONS(2830), - [anon_sym_R_DQUOTE] = ACTIONS(2832), - [anon_sym_LR_DQUOTE] = ACTIONS(2832), - [anon_sym_uR_DQUOTE] = ACTIONS(2832), - [anon_sym_UR_DQUOTE] = ACTIONS(2832), - [anon_sym_u8R_DQUOTE] = ACTIONS(2832), - [anon_sym_co_await] = ACTIONS(2830), - [anon_sym_new] = ACTIONS(2830), - [anon_sym_requires] = ACTIONS(2830), - [sym_this] = ACTIONS(2830), - [sym_nullptr] = ACTIONS(2830), - }, - [1080] = { - [sym_identifier] = ACTIONS(2912), - [aux_sym_preproc_include_token1] = ACTIONS(2912), - [aux_sym_preproc_def_token1] = ACTIONS(2912), - [aux_sym_preproc_if_token1] = ACTIONS(2912), - [aux_sym_preproc_if_token2] = ACTIONS(2912), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2912), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2912), - [sym_preproc_directive] = ACTIONS(2912), - [anon_sym_LPAREN2] = ACTIONS(2914), - [anon_sym_BANG] = ACTIONS(2914), - [anon_sym_TILDE] = ACTIONS(2914), - [anon_sym_DASH] = ACTIONS(2912), - [anon_sym_PLUS] = ACTIONS(2912), - [anon_sym_STAR] = ACTIONS(2914), - [anon_sym_AMP_AMP] = ACTIONS(2914), - [anon_sym_AMP] = ACTIONS(2912), - [anon_sym_SEMI] = ACTIONS(2914), - [anon_sym_typedef] = ACTIONS(2912), - [anon_sym_extern] = ACTIONS(2912), - [anon_sym___attribute__] = ACTIONS(2912), - [anon_sym_COLON_COLON] = ACTIONS(2914), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2914), - [anon_sym___declspec] = ACTIONS(2912), - [anon_sym___based] = ACTIONS(2912), - [anon_sym___cdecl] = ACTIONS(2912), - [anon_sym___clrcall] = ACTIONS(2912), - [anon_sym___stdcall] = ACTIONS(2912), - [anon_sym___fastcall] = ACTIONS(2912), - [anon_sym___thiscall] = ACTIONS(2912), - [anon_sym___vectorcall] = ACTIONS(2912), - [anon_sym_LBRACE] = ACTIONS(2914), - [anon_sym_LBRACK] = ACTIONS(2912), - [anon_sym_static] = ACTIONS(2912), - [anon_sym_register] = ACTIONS(2912), - [anon_sym_inline] = ACTIONS(2912), - [anon_sym_thread_local] = ACTIONS(2912), - [anon_sym_const] = ACTIONS(2912), - [anon_sym_volatile] = ACTIONS(2912), - [anon_sym_restrict] = ACTIONS(2912), - [anon_sym__Atomic] = ACTIONS(2912), - [anon_sym_mutable] = ACTIONS(2912), - [anon_sym_constexpr] = ACTIONS(2912), - [anon_sym_constinit] = ACTIONS(2912), - [anon_sym_consteval] = ACTIONS(2912), - [anon_sym_signed] = ACTIONS(2912), - [anon_sym_unsigned] = ACTIONS(2912), - [anon_sym_long] = ACTIONS(2912), - [anon_sym_short] = ACTIONS(2912), - [sym_primitive_type] = ACTIONS(2912), - [anon_sym_enum] = ACTIONS(2912), - [anon_sym_class] = ACTIONS(2912), - [anon_sym_struct] = ACTIONS(2912), - [anon_sym_union] = ACTIONS(2912), - [anon_sym_if] = ACTIONS(2912), - [anon_sym_switch] = ACTIONS(2912), - [anon_sym_case] = ACTIONS(2912), - [anon_sym_default] = ACTIONS(2912), - [anon_sym_while] = ACTIONS(2912), - [anon_sym_do] = ACTIONS(2912), - [anon_sym_for] = ACTIONS(2912), - [anon_sym_return] = ACTIONS(2912), - [anon_sym_break] = ACTIONS(2912), - [anon_sym_continue] = ACTIONS(2912), - [anon_sym_goto] = ACTIONS(2912), - [anon_sym_not] = ACTIONS(2912), - [anon_sym_compl] = ACTIONS(2912), - [anon_sym_DASH_DASH] = ACTIONS(2914), - [anon_sym_PLUS_PLUS] = ACTIONS(2914), - [anon_sym_sizeof] = ACTIONS(2912), - [sym_number_literal] = ACTIONS(2914), - [anon_sym_L_SQUOTE] = ACTIONS(2914), - [anon_sym_u_SQUOTE] = ACTIONS(2914), - [anon_sym_U_SQUOTE] = ACTIONS(2914), - [anon_sym_u8_SQUOTE] = ACTIONS(2914), - [anon_sym_SQUOTE] = ACTIONS(2914), - [anon_sym_L_DQUOTE] = ACTIONS(2914), - [anon_sym_u_DQUOTE] = ACTIONS(2914), - [anon_sym_U_DQUOTE] = ACTIONS(2914), - [anon_sym_u8_DQUOTE] = ACTIONS(2914), - [anon_sym_DQUOTE] = ACTIONS(2914), - [sym_true] = ACTIONS(2912), - [sym_false] = ACTIONS(2912), - [sym_null] = ACTIONS(2912), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2912), - [anon_sym_decltype] = ACTIONS(2912), - [anon_sym_virtual] = ACTIONS(2912), - [anon_sym_explicit] = ACTIONS(2912), - [anon_sym_typename] = ACTIONS(2912), - [anon_sym_template] = ACTIONS(2912), - [anon_sym_operator] = ACTIONS(2912), - [anon_sym_try] = ACTIONS(2912), - [anon_sym_delete] = ACTIONS(2912), - [anon_sym_throw] = ACTIONS(2912), - [anon_sym_namespace] = ACTIONS(2912), - [anon_sym_using] = ACTIONS(2912), - [anon_sym_static_assert] = ACTIONS(2912), - [anon_sym_concept] = ACTIONS(2912), - [anon_sym_co_return] = ACTIONS(2912), - [anon_sym_co_yield] = ACTIONS(2912), - [anon_sym_R_DQUOTE] = ACTIONS(2914), - [anon_sym_LR_DQUOTE] = ACTIONS(2914), - [anon_sym_uR_DQUOTE] = ACTIONS(2914), - [anon_sym_UR_DQUOTE] = ACTIONS(2914), - [anon_sym_u8R_DQUOTE] = ACTIONS(2914), - [anon_sym_co_await] = ACTIONS(2912), - [anon_sym_new] = ACTIONS(2912), - [anon_sym_requires] = ACTIONS(2912), - [sym_this] = ACTIONS(2912), - [sym_nullptr] = ACTIONS(2912), - }, - [1081] = { - [sym_identifier] = ACTIONS(2786), - [aux_sym_preproc_include_token1] = ACTIONS(2786), - [aux_sym_preproc_def_token1] = ACTIONS(2786), - [aux_sym_preproc_if_token1] = ACTIONS(2786), - [aux_sym_preproc_if_token2] = ACTIONS(2786), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2786), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2786), - [sym_preproc_directive] = ACTIONS(2786), - [anon_sym_LPAREN2] = ACTIONS(2788), - [anon_sym_BANG] = ACTIONS(2788), - [anon_sym_TILDE] = ACTIONS(2788), - [anon_sym_DASH] = ACTIONS(2786), - [anon_sym_PLUS] = ACTIONS(2786), - [anon_sym_STAR] = ACTIONS(2788), - [anon_sym_AMP_AMP] = ACTIONS(2788), - [anon_sym_AMP] = ACTIONS(2786), - [anon_sym_SEMI] = ACTIONS(2788), - [anon_sym_typedef] = ACTIONS(2786), - [anon_sym_extern] = ACTIONS(2786), - [anon_sym___attribute__] = ACTIONS(2786), - [anon_sym_COLON_COLON] = ACTIONS(2788), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2788), - [anon_sym___declspec] = ACTIONS(2786), - [anon_sym___based] = ACTIONS(2786), - [anon_sym___cdecl] = ACTIONS(2786), - [anon_sym___clrcall] = ACTIONS(2786), - [anon_sym___stdcall] = ACTIONS(2786), - [anon_sym___fastcall] = ACTIONS(2786), - [anon_sym___thiscall] = ACTIONS(2786), - [anon_sym___vectorcall] = ACTIONS(2786), - [anon_sym_LBRACE] = ACTIONS(2788), - [anon_sym_LBRACK] = ACTIONS(2786), - [anon_sym_static] = ACTIONS(2786), - [anon_sym_register] = ACTIONS(2786), - [anon_sym_inline] = ACTIONS(2786), - [anon_sym_thread_local] = ACTIONS(2786), - [anon_sym_const] = ACTIONS(2786), - [anon_sym_volatile] = ACTIONS(2786), - [anon_sym_restrict] = ACTIONS(2786), - [anon_sym__Atomic] = ACTIONS(2786), - [anon_sym_mutable] = ACTIONS(2786), - [anon_sym_constexpr] = ACTIONS(2786), - [anon_sym_constinit] = ACTIONS(2786), - [anon_sym_consteval] = ACTIONS(2786), - [anon_sym_signed] = ACTIONS(2786), - [anon_sym_unsigned] = ACTIONS(2786), - [anon_sym_long] = ACTIONS(2786), - [anon_sym_short] = ACTIONS(2786), - [sym_primitive_type] = ACTIONS(2786), - [anon_sym_enum] = ACTIONS(2786), - [anon_sym_class] = ACTIONS(2786), - [anon_sym_struct] = ACTIONS(2786), - [anon_sym_union] = ACTIONS(2786), - [anon_sym_if] = ACTIONS(2786), - [anon_sym_switch] = ACTIONS(2786), - [anon_sym_case] = ACTIONS(2786), - [anon_sym_default] = ACTIONS(2786), - [anon_sym_while] = ACTIONS(2786), - [anon_sym_do] = ACTIONS(2786), - [anon_sym_for] = ACTIONS(2786), - [anon_sym_return] = ACTIONS(2786), - [anon_sym_break] = ACTIONS(2786), - [anon_sym_continue] = ACTIONS(2786), - [anon_sym_goto] = ACTIONS(2786), - [anon_sym_not] = ACTIONS(2786), - [anon_sym_compl] = ACTIONS(2786), - [anon_sym_DASH_DASH] = ACTIONS(2788), - [anon_sym_PLUS_PLUS] = ACTIONS(2788), - [anon_sym_sizeof] = ACTIONS(2786), - [sym_number_literal] = ACTIONS(2788), - [anon_sym_L_SQUOTE] = ACTIONS(2788), - [anon_sym_u_SQUOTE] = ACTIONS(2788), - [anon_sym_U_SQUOTE] = ACTIONS(2788), - [anon_sym_u8_SQUOTE] = ACTIONS(2788), - [anon_sym_SQUOTE] = ACTIONS(2788), - [anon_sym_L_DQUOTE] = ACTIONS(2788), - [anon_sym_u_DQUOTE] = ACTIONS(2788), - [anon_sym_U_DQUOTE] = ACTIONS(2788), - [anon_sym_u8_DQUOTE] = ACTIONS(2788), - [anon_sym_DQUOTE] = ACTIONS(2788), - [sym_true] = ACTIONS(2786), - [sym_false] = ACTIONS(2786), - [sym_null] = ACTIONS(2786), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2786), - [anon_sym_decltype] = ACTIONS(2786), - [anon_sym_virtual] = ACTIONS(2786), - [anon_sym_explicit] = ACTIONS(2786), - [anon_sym_typename] = ACTIONS(2786), - [anon_sym_template] = ACTIONS(2786), - [anon_sym_operator] = ACTIONS(2786), - [anon_sym_try] = ACTIONS(2786), - [anon_sym_delete] = ACTIONS(2786), - [anon_sym_throw] = ACTIONS(2786), - [anon_sym_namespace] = ACTIONS(2786), - [anon_sym_using] = ACTIONS(2786), - [anon_sym_static_assert] = ACTIONS(2786), - [anon_sym_concept] = ACTIONS(2786), - [anon_sym_co_return] = ACTIONS(2786), - [anon_sym_co_yield] = ACTIONS(2786), - [anon_sym_R_DQUOTE] = ACTIONS(2788), - [anon_sym_LR_DQUOTE] = ACTIONS(2788), - [anon_sym_uR_DQUOTE] = ACTIONS(2788), - [anon_sym_UR_DQUOTE] = ACTIONS(2788), - [anon_sym_u8R_DQUOTE] = ACTIONS(2788), - [anon_sym_co_await] = ACTIONS(2786), - [anon_sym_new] = ACTIONS(2786), - [anon_sym_requires] = ACTIONS(2786), - [sym_this] = ACTIONS(2786), - [sym_nullptr] = ACTIONS(2786), - }, - [1082] = { - [sym_identifier] = ACTIONS(2666), - [aux_sym_preproc_include_token1] = ACTIONS(2666), - [aux_sym_preproc_def_token1] = ACTIONS(2666), - [aux_sym_preproc_if_token1] = ACTIONS(2666), - [aux_sym_preproc_if_token2] = ACTIONS(2666), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2666), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2666), - [sym_preproc_directive] = ACTIONS(2666), - [anon_sym_LPAREN2] = ACTIONS(2668), - [anon_sym_BANG] = ACTIONS(2668), - [anon_sym_TILDE] = ACTIONS(2668), - [anon_sym_DASH] = ACTIONS(2666), - [anon_sym_PLUS] = ACTIONS(2666), - [anon_sym_STAR] = ACTIONS(2668), - [anon_sym_AMP_AMP] = ACTIONS(2668), - [anon_sym_AMP] = ACTIONS(2666), - [anon_sym_SEMI] = ACTIONS(2668), - [anon_sym_typedef] = ACTIONS(2666), - [anon_sym_extern] = ACTIONS(2666), - [anon_sym___attribute__] = ACTIONS(2666), - [anon_sym_COLON_COLON] = ACTIONS(2668), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2668), - [anon_sym___declspec] = ACTIONS(2666), - [anon_sym___based] = ACTIONS(2666), - [anon_sym___cdecl] = ACTIONS(2666), - [anon_sym___clrcall] = ACTIONS(2666), - [anon_sym___stdcall] = ACTIONS(2666), - [anon_sym___fastcall] = ACTIONS(2666), - [anon_sym___thiscall] = ACTIONS(2666), - [anon_sym___vectorcall] = ACTIONS(2666), - [anon_sym_LBRACE] = ACTIONS(2668), - [anon_sym_LBRACK] = ACTIONS(2666), - [anon_sym_static] = ACTIONS(2666), - [anon_sym_register] = ACTIONS(2666), - [anon_sym_inline] = ACTIONS(2666), - [anon_sym_thread_local] = ACTIONS(2666), - [anon_sym_const] = ACTIONS(2666), - [anon_sym_volatile] = ACTIONS(2666), - [anon_sym_restrict] = ACTIONS(2666), - [anon_sym__Atomic] = ACTIONS(2666), - [anon_sym_mutable] = ACTIONS(2666), - [anon_sym_constexpr] = ACTIONS(2666), - [anon_sym_constinit] = ACTIONS(2666), - [anon_sym_consteval] = ACTIONS(2666), - [anon_sym_signed] = ACTIONS(2666), - [anon_sym_unsigned] = ACTIONS(2666), - [anon_sym_long] = ACTIONS(2666), - [anon_sym_short] = ACTIONS(2666), - [sym_primitive_type] = ACTIONS(2666), - [anon_sym_enum] = ACTIONS(2666), - [anon_sym_class] = ACTIONS(2666), - [anon_sym_struct] = ACTIONS(2666), - [anon_sym_union] = ACTIONS(2666), - [anon_sym_if] = ACTIONS(2666), - [anon_sym_switch] = ACTIONS(2666), - [anon_sym_case] = ACTIONS(2666), - [anon_sym_default] = ACTIONS(2666), - [anon_sym_while] = ACTIONS(2666), - [anon_sym_do] = ACTIONS(2666), - [anon_sym_for] = ACTIONS(2666), - [anon_sym_return] = ACTIONS(2666), - [anon_sym_break] = ACTIONS(2666), - [anon_sym_continue] = ACTIONS(2666), - [anon_sym_goto] = ACTIONS(2666), - [anon_sym_not] = ACTIONS(2666), - [anon_sym_compl] = ACTIONS(2666), - [anon_sym_DASH_DASH] = ACTIONS(2668), - [anon_sym_PLUS_PLUS] = ACTIONS(2668), - [anon_sym_sizeof] = ACTIONS(2666), - [sym_number_literal] = ACTIONS(2668), - [anon_sym_L_SQUOTE] = ACTIONS(2668), - [anon_sym_u_SQUOTE] = ACTIONS(2668), - [anon_sym_U_SQUOTE] = ACTIONS(2668), - [anon_sym_u8_SQUOTE] = ACTIONS(2668), - [anon_sym_SQUOTE] = ACTIONS(2668), - [anon_sym_L_DQUOTE] = ACTIONS(2668), - [anon_sym_u_DQUOTE] = ACTIONS(2668), - [anon_sym_U_DQUOTE] = ACTIONS(2668), - [anon_sym_u8_DQUOTE] = ACTIONS(2668), - [anon_sym_DQUOTE] = ACTIONS(2668), - [sym_true] = ACTIONS(2666), - [sym_false] = ACTIONS(2666), - [sym_null] = ACTIONS(2666), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2666), - [anon_sym_decltype] = ACTIONS(2666), - [anon_sym_virtual] = ACTIONS(2666), - [anon_sym_explicit] = ACTIONS(2666), - [anon_sym_typename] = ACTIONS(2666), - [anon_sym_template] = ACTIONS(2666), - [anon_sym_operator] = ACTIONS(2666), - [anon_sym_try] = ACTIONS(2666), - [anon_sym_delete] = ACTIONS(2666), - [anon_sym_throw] = ACTIONS(2666), - [anon_sym_namespace] = ACTIONS(2666), - [anon_sym_using] = ACTIONS(2666), - [anon_sym_static_assert] = ACTIONS(2666), - [anon_sym_concept] = ACTIONS(2666), - [anon_sym_co_return] = ACTIONS(2666), - [anon_sym_co_yield] = ACTIONS(2666), - [anon_sym_R_DQUOTE] = ACTIONS(2668), - [anon_sym_LR_DQUOTE] = ACTIONS(2668), - [anon_sym_uR_DQUOTE] = ACTIONS(2668), - [anon_sym_UR_DQUOTE] = ACTIONS(2668), - [anon_sym_u8R_DQUOTE] = ACTIONS(2668), - [anon_sym_co_await] = ACTIONS(2666), - [anon_sym_new] = ACTIONS(2666), - [anon_sym_requires] = ACTIONS(2666), - [sym_this] = ACTIONS(2666), - [sym_nullptr] = ACTIONS(2666), - }, - [1083] = { - [sym_identifier] = ACTIONS(2838), - [aux_sym_preproc_include_token1] = ACTIONS(2838), - [aux_sym_preproc_def_token1] = ACTIONS(2838), - [aux_sym_preproc_if_token1] = ACTIONS(2838), - [aux_sym_preproc_if_token2] = ACTIONS(2838), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2838), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2838), - [sym_preproc_directive] = ACTIONS(2838), - [anon_sym_LPAREN2] = ACTIONS(2840), - [anon_sym_BANG] = ACTIONS(2840), - [anon_sym_TILDE] = ACTIONS(2840), - [anon_sym_DASH] = ACTIONS(2838), - [anon_sym_PLUS] = ACTIONS(2838), - [anon_sym_STAR] = ACTIONS(2840), - [anon_sym_AMP_AMP] = ACTIONS(2840), - [anon_sym_AMP] = ACTIONS(2838), - [anon_sym_SEMI] = ACTIONS(2840), - [anon_sym_typedef] = ACTIONS(2838), - [anon_sym_extern] = ACTIONS(2838), - [anon_sym___attribute__] = ACTIONS(2838), - [anon_sym_COLON_COLON] = ACTIONS(2840), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2840), - [anon_sym___declspec] = ACTIONS(2838), - [anon_sym___based] = ACTIONS(2838), - [anon_sym___cdecl] = ACTIONS(2838), - [anon_sym___clrcall] = ACTIONS(2838), - [anon_sym___stdcall] = ACTIONS(2838), - [anon_sym___fastcall] = ACTIONS(2838), - [anon_sym___thiscall] = ACTIONS(2838), - [anon_sym___vectorcall] = ACTIONS(2838), - [anon_sym_LBRACE] = ACTIONS(2840), - [anon_sym_LBRACK] = ACTIONS(2838), - [anon_sym_static] = ACTIONS(2838), - [anon_sym_register] = ACTIONS(2838), - [anon_sym_inline] = ACTIONS(2838), - [anon_sym_thread_local] = ACTIONS(2838), - [anon_sym_const] = ACTIONS(2838), - [anon_sym_volatile] = ACTIONS(2838), - [anon_sym_restrict] = ACTIONS(2838), - [anon_sym__Atomic] = ACTIONS(2838), - [anon_sym_mutable] = ACTIONS(2838), - [anon_sym_constexpr] = ACTIONS(2838), - [anon_sym_constinit] = ACTIONS(2838), - [anon_sym_consteval] = ACTIONS(2838), - [anon_sym_signed] = ACTIONS(2838), - [anon_sym_unsigned] = ACTIONS(2838), - [anon_sym_long] = ACTIONS(2838), - [anon_sym_short] = ACTIONS(2838), - [sym_primitive_type] = ACTIONS(2838), - [anon_sym_enum] = ACTIONS(2838), - [anon_sym_class] = ACTIONS(2838), - [anon_sym_struct] = ACTIONS(2838), - [anon_sym_union] = ACTIONS(2838), - [anon_sym_if] = ACTIONS(2838), - [anon_sym_switch] = ACTIONS(2838), - [anon_sym_case] = ACTIONS(2838), - [anon_sym_default] = ACTIONS(2838), - [anon_sym_while] = ACTIONS(2838), - [anon_sym_do] = ACTIONS(2838), - [anon_sym_for] = ACTIONS(2838), - [anon_sym_return] = ACTIONS(2838), - [anon_sym_break] = ACTIONS(2838), - [anon_sym_continue] = ACTIONS(2838), - [anon_sym_goto] = ACTIONS(2838), - [anon_sym_not] = ACTIONS(2838), - [anon_sym_compl] = ACTIONS(2838), - [anon_sym_DASH_DASH] = ACTIONS(2840), - [anon_sym_PLUS_PLUS] = ACTIONS(2840), - [anon_sym_sizeof] = ACTIONS(2838), - [sym_number_literal] = ACTIONS(2840), - [anon_sym_L_SQUOTE] = ACTIONS(2840), - [anon_sym_u_SQUOTE] = ACTIONS(2840), - [anon_sym_U_SQUOTE] = ACTIONS(2840), - [anon_sym_u8_SQUOTE] = ACTIONS(2840), - [anon_sym_SQUOTE] = ACTIONS(2840), - [anon_sym_L_DQUOTE] = ACTIONS(2840), - [anon_sym_u_DQUOTE] = ACTIONS(2840), - [anon_sym_U_DQUOTE] = ACTIONS(2840), - [anon_sym_u8_DQUOTE] = ACTIONS(2840), - [anon_sym_DQUOTE] = ACTIONS(2840), - [sym_true] = ACTIONS(2838), - [sym_false] = ACTIONS(2838), - [sym_null] = ACTIONS(2838), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2838), - [anon_sym_decltype] = ACTIONS(2838), - [anon_sym_virtual] = ACTIONS(2838), - [anon_sym_explicit] = ACTIONS(2838), - [anon_sym_typename] = ACTIONS(2838), - [anon_sym_template] = ACTIONS(2838), - [anon_sym_operator] = ACTIONS(2838), - [anon_sym_try] = ACTIONS(2838), - [anon_sym_delete] = ACTIONS(2838), - [anon_sym_throw] = ACTIONS(2838), - [anon_sym_namespace] = ACTIONS(2838), - [anon_sym_using] = ACTIONS(2838), - [anon_sym_static_assert] = ACTIONS(2838), - [anon_sym_concept] = ACTIONS(2838), - [anon_sym_co_return] = ACTIONS(2838), - [anon_sym_co_yield] = ACTIONS(2838), - [anon_sym_R_DQUOTE] = ACTIONS(2840), - [anon_sym_LR_DQUOTE] = ACTIONS(2840), - [anon_sym_uR_DQUOTE] = ACTIONS(2840), - [anon_sym_UR_DQUOTE] = ACTIONS(2840), - [anon_sym_u8R_DQUOTE] = ACTIONS(2840), - [anon_sym_co_await] = ACTIONS(2838), - [anon_sym_new] = ACTIONS(2838), - [anon_sym_requires] = ACTIONS(2838), - [sym_this] = ACTIONS(2838), - [sym_nullptr] = ACTIONS(2838), - }, - [1084] = { - [sym_identifier] = ACTIONS(2834), - [aux_sym_preproc_include_token1] = ACTIONS(2834), - [aux_sym_preproc_def_token1] = ACTIONS(2834), - [aux_sym_preproc_if_token1] = ACTIONS(2834), - [aux_sym_preproc_if_token2] = ACTIONS(2834), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2834), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2834), - [sym_preproc_directive] = ACTIONS(2834), - [anon_sym_LPAREN2] = ACTIONS(2836), - [anon_sym_BANG] = ACTIONS(2836), - [anon_sym_TILDE] = ACTIONS(2836), - [anon_sym_DASH] = ACTIONS(2834), - [anon_sym_PLUS] = ACTIONS(2834), - [anon_sym_STAR] = ACTIONS(2836), - [anon_sym_AMP_AMP] = ACTIONS(2836), - [anon_sym_AMP] = ACTIONS(2834), - [anon_sym_SEMI] = ACTIONS(2836), - [anon_sym_typedef] = ACTIONS(2834), - [anon_sym_extern] = ACTIONS(2834), - [anon_sym___attribute__] = ACTIONS(2834), - [anon_sym_COLON_COLON] = ACTIONS(2836), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2836), - [anon_sym___declspec] = ACTIONS(2834), - [anon_sym___based] = ACTIONS(2834), - [anon_sym___cdecl] = ACTIONS(2834), - [anon_sym___clrcall] = ACTIONS(2834), - [anon_sym___stdcall] = ACTIONS(2834), - [anon_sym___fastcall] = ACTIONS(2834), - [anon_sym___thiscall] = ACTIONS(2834), - [anon_sym___vectorcall] = ACTIONS(2834), - [anon_sym_LBRACE] = ACTIONS(2836), - [anon_sym_LBRACK] = ACTIONS(2834), - [anon_sym_static] = ACTIONS(2834), - [anon_sym_register] = ACTIONS(2834), - [anon_sym_inline] = ACTIONS(2834), - [anon_sym_thread_local] = ACTIONS(2834), - [anon_sym_const] = ACTIONS(2834), - [anon_sym_volatile] = ACTIONS(2834), - [anon_sym_restrict] = ACTIONS(2834), - [anon_sym__Atomic] = ACTIONS(2834), - [anon_sym_mutable] = ACTIONS(2834), - [anon_sym_constexpr] = ACTIONS(2834), - [anon_sym_constinit] = ACTIONS(2834), - [anon_sym_consteval] = ACTIONS(2834), - [anon_sym_signed] = ACTIONS(2834), - [anon_sym_unsigned] = ACTIONS(2834), - [anon_sym_long] = ACTIONS(2834), - [anon_sym_short] = ACTIONS(2834), - [sym_primitive_type] = ACTIONS(2834), - [anon_sym_enum] = ACTIONS(2834), - [anon_sym_class] = ACTIONS(2834), - [anon_sym_struct] = ACTIONS(2834), - [anon_sym_union] = ACTIONS(2834), - [anon_sym_if] = ACTIONS(2834), - [anon_sym_switch] = ACTIONS(2834), - [anon_sym_case] = ACTIONS(2834), - [anon_sym_default] = ACTIONS(2834), - [anon_sym_while] = ACTIONS(2834), - [anon_sym_do] = ACTIONS(2834), - [anon_sym_for] = ACTIONS(2834), - [anon_sym_return] = ACTIONS(2834), - [anon_sym_break] = ACTIONS(2834), - [anon_sym_continue] = ACTIONS(2834), - [anon_sym_goto] = ACTIONS(2834), - [anon_sym_not] = ACTIONS(2834), - [anon_sym_compl] = ACTIONS(2834), - [anon_sym_DASH_DASH] = ACTIONS(2836), - [anon_sym_PLUS_PLUS] = ACTIONS(2836), - [anon_sym_sizeof] = ACTIONS(2834), - [sym_number_literal] = ACTIONS(2836), - [anon_sym_L_SQUOTE] = ACTIONS(2836), - [anon_sym_u_SQUOTE] = ACTIONS(2836), - [anon_sym_U_SQUOTE] = ACTIONS(2836), - [anon_sym_u8_SQUOTE] = ACTIONS(2836), - [anon_sym_SQUOTE] = ACTIONS(2836), - [anon_sym_L_DQUOTE] = ACTIONS(2836), - [anon_sym_u_DQUOTE] = ACTIONS(2836), - [anon_sym_U_DQUOTE] = ACTIONS(2836), - [anon_sym_u8_DQUOTE] = ACTIONS(2836), - [anon_sym_DQUOTE] = ACTIONS(2836), - [sym_true] = ACTIONS(2834), - [sym_false] = ACTIONS(2834), - [sym_null] = ACTIONS(2834), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2834), - [anon_sym_decltype] = ACTIONS(2834), - [anon_sym_virtual] = ACTIONS(2834), - [anon_sym_explicit] = ACTIONS(2834), - [anon_sym_typename] = ACTIONS(2834), - [anon_sym_template] = ACTIONS(2834), - [anon_sym_operator] = ACTIONS(2834), - [anon_sym_try] = ACTIONS(2834), - [anon_sym_delete] = ACTIONS(2834), - [anon_sym_throw] = ACTIONS(2834), - [anon_sym_namespace] = ACTIONS(2834), - [anon_sym_using] = ACTIONS(2834), - [anon_sym_static_assert] = ACTIONS(2834), - [anon_sym_concept] = ACTIONS(2834), - [anon_sym_co_return] = ACTIONS(2834), - [anon_sym_co_yield] = ACTIONS(2834), - [anon_sym_R_DQUOTE] = ACTIONS(2836), - [anon_sym_LR_DQUOTE] = ACTIONS(2836), - [anon_sym_uR_DQUOTE] = ACTIONS(2836), - [anon_sym_UR_DQUOTE] = ACTIONS(2836), - [anon_sym_u8R_DQUOTE] = ACTIONS(2836), - [anon_sym_co_await] = ACTIONS(2834), - [anon_sym_new] = ACTIONS(2834), - [anon_sym_requires] = ACTIONS(2834), - [sym_this] = ACTIONS(2834), - [sym_nullptr] = ACTIONS(2834), - }, - [1085] = { - [sym_identifier] = ACTIONS(2778), - [aux_sym_preproc_include_token1] = ACTIONS(2778), - [aux_sym_preproc_def_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token1] = ACTIONS(2778), - [aux_sym_preproc_if_token2] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2778), - [sym_preproc_directive] = ACTIONS(2778), - [anon_sym_LPAREN2] = ACTIONS(2780), - [anon_sym_BANG] = ACTIONS(2780), - [anon_sym_TILDE] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_PLUS] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2780), - [anon_sym_AMP_AMP] = ACTIONS(2780), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_SEMI] = ACTIONS(2780), - [anon_sym_typedef] = ACTIONS(2778), - [anon_sym_extern] = ACTIONS(2778), - [anon_sym___attribute__] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2780), - [anon_sym___declspec] = ACTIONS(2778), - [anon_sym___based] = ACTIONS(2778), - [anon_sym___cdecl] = ACTIONS(2778), - [anon_sym___clrcall] = ACTIONS(2778), - [anon_sym___stdcall] = ACTIONS(2778), - [anon_sym___fastcall] = ACTIONS(2778), - [anon_sym___thiscall] = ACTIONS(2778), - [anon_sym___vectorcall] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2780), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_static] = ACTIONS(2778), - [anon_sym_register] = ACTIONS(2778), - [anon_sym_inline] = ACTIONS(2778), - [anon_sym_thread_local] = ACTIONS(2778), - [anon_sym_const] = ACTIONS(2778), - [anon_sym_volatile] = ACTIONS(2778), - [anon_sym_restrict] = ACTIONS(2778), - [anon_sym__Atomic] = ACTIONS(2778), - [anon_sym_mutable] = ACTIONS(2778), - [anon_sym_constexpr] = ACTIONS(2778), - [anon_sym_constinit] = ACTIONS(2778), - [anon_sym_consteval] = ACTIONS(2778), - [anon_sym_signed] = ACTIONS(2778), - [anon_sym_unsigned] = ACTIONS(2778), - [anon_sym_long] = ACTIONS(2778), - [anon_sym_short] = ACTIONS(2778), - [sym_primitive_type] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2778), - [anon_sym_class] = ACTIONS(2778), - [anon_sym_struct] = ACTIONS(2778), - [anon_sym_union] = ACTIONS(2778), - [anon_sym_if] = ACTIONS(2778), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2778), - [anon_sym_default] = ACTIONS(2778), - [anon_sym_while] = ACTIONS(2778), - [anon_sym_do] = ACTIONS(2778), - [anon_sym_for] = ACTIONS(2778), - [anon_sym_return] = ACTIONS(2778), - [anon_sym_break] = ACTIONS(2778), - [anon_sym_continue] = ACTIONS(2778), - [anon_sym_goto] = ACTIONS(2778), - [anon_sym_not] = ACTIONS(2778), - [anon_sym_compl] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2780), - [anon_sym_PLUS_PLUS] = ACTIONS(2780), - [anon_sym_sizeof] = ACTIONS(2778), - [sym_number_literal] = ACTIONS(2780), - [anon_sym_L_SQUOTE] = ACTIONS(2780), - [anon_sym_u_SQUOTE] = ACTIONS(2780), - [anon_sym_U_SQUOTE] = ACTIONS(2780), - [anon_sym_u8_SQUOTE] = ACTIONS(2780), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_L_DQUOTE] = ACTIONS(2780), - [anon_sym_u_DQUOTE] = ACTIONS(2780), - [anon_sym_U_DQUOTE] = ACTIONS(2780), - [anon_sym_u8_DQUOTE] = ACTIONS(2780), - [anon_sym_DQUOTE] = ACTIONS(2780), - [sym_true] = ACTIONS(2778), - [sym_false] = ACTIONS(2778), - [sym_null] = ACTIONS(2778), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2778), - [anon_sym_decltype] = ACTIONS(2778), - [anon_sym_virtual] = ACTIONS(2778), - [anon_sym_explicit] = ACTIONS(2778), - [anon_sym_typename] = ACTIONS(2778), - [anon_sym_template] = ACTIONS(2778), - [anon_sym_operator] = ACTIONS(2778), - [anon_sym_try] = ACTIONS(2778), - [anon_sym_delete] = ACTIONS(2778), - [anon_sym_throw] = ACTIONS(2778), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(2778), - [anon_sym_static_assert] = ACTIONS(2778), - [anon_sym_concept] = ACTIONS(2778), - [anon_sym_co_return] = ACTIONS(2778), - [anon_sym_co_yield] = ACTIONS(2778), - [anon_sym_R_DQUOTE] = ACTIONS(2780), - [anon_sym_LR_DQUOTE] = ACTIONS(2780), - [anon_sym_uR_DQUOTE] = ACTIONS(2780), - [anon_sym_UR_DQUOTE] = ACTIONS(2780), - [anon_sym_u8R_DQUOTE] = ACTIONS(2780), - [anon_sym_co_await] = ACTIONS(2778), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_requires] = ACTIONS(2778), - [sym_this] = ACTIONS(2778), - [sym_nullptr] = ACTIONS(2778), - }, - [1086] = { - [sym_identifier] = ACTIONS(2762), - [aux_sym_preproc_include_token1] = ACTIONS(2762), - [aux_sym_preproc_def_token1] = ACTIONS(2762), - [aux_sym_preproc_if_token1] = ACTIONS(2762), - [aux_sym_preproc_if_token2] = ACTIONS(2762), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2762), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2762), - [sym_preproc_directive] = ACTIONS(2762), - [anon_sym_LPAREN2] = ACTIONS(2764), - [anon_sym_BANG] = ACTIONS(2764), - [anon_sym_TILDE] = ACTIONS(2764), - [anon_sym_DASH] = ACTIONS(2762), - [anon_sym_PLUS] = ACTIONS(2762), - [anon_sym_STAR] = ACTIONS(2764), - [anon_sym_AMP_AMP] = ACTIONS(2764), - [anon_sym_AMP] = ACTIONS(2762), - [anon_sym_SEMI] = ACTIONS(2764), - [anon_sym_typedef] = ACTIONS(2762), - [anon_sym_extern] = ACTIONS(2762), - [anon_sym___attribute__] = ACTIONS(2762), - [anon_sym_COLON_COLON] = ACTIONS(2764), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2764), - [anon_sym___declspec] = ACTIONS(2762), - [anon_sym___based] = ACTIONS(2762), - [anon_sym___cdecl] = ACTIONS(2762), - [anon_sym___clrcall] = ACTIONS(2762), - [anon_sym___stdcall] = ACTIONS(2762), - [anon_sym___fastcall] = ACTIONS(2762), - [anon_sym___thiscall] = ACTIONS(2762), - [anon_sym___vectorcall] = ACTIONS(2762), - [anon_sym_LBRACE] = ACTIONS(2764), - [anon_sym_LBRACK] = ACTIONS(2762), - [anon_sym_static] = ACTIONS(2762), - [anon_sym_register] = ACTIONS(2762), - [anon_sym_inline] = ACTIONS(2762), - [anon_sym_thread_local] = ACTIONS(2762), - [anon_sym_const] = ACTIONS(2762), - [anon_sym_volatile] = ACTIONS(2762), - [anon_sym_restrict] = ACTIONS(2762), - [anon_sym__Atomic] = ACTIONS(2762), - [anon_sym_mutable] = ACTIONS(2762), - [anon_sym_constexpr] = ACTIONS(2762), - [anon_sym_constinit] = ACTIONS(2762), - [anon_sym_consteval] = ACTIONS(2762), - [anon_sym_signed] = ACTIONS(2762), - [anon_sym_unsigned] = ACTIONS(2762), - [anon_sym_long] = ACTIONS(2762), - [anon_sym_short] = ACTIONS(2762), - [sym_primitive_type] = ACTIONS(2762), - [anon_sym_enum] = ACTIONS(2762), - [anon_sym_class] = ACTIONS(2762), - [anon_sym_struct] = ACTIONS(2762), - [anon_sym_union] = ACTIONS(2762), - [anon_sym_if] = ACTIONS(2762), - [anon_sym_switch] = ACTIONS(2762), - [anon_sym_case] = ACTIONS(2762), - [anon_sym_default] = ACTIONS(2762), - [anon_sym_while] = ACTIONS(2762), - [anon_sym_do] = ACTIONS(2762), - [anon_sym_for] = ACTIONS(2762), - [anon_sym_return] = ACTIONS(2762), - [anon_sym_break] = ACTIONS(2762), - [anon_sym_continue] = ACTIONS(2762), - [anon_sym_goto] = ACTIONS(2762), - [anon_sym_not] = ACTIONS(2762), - [anon_sym_compl] = ACTIONS(2762), - [anon_sym_DASH_DASH] = ACTIONS(2764), - [anon_sym_PLUS_PLUS] = ACTIONS(2764), - [anon_sym_sizeof] = ACTIONS(2762), - [sym_number_literal] = ACTIONS(2764), - [anon_sym_L_SQUOTE] = ACTIONS(2764), - [anon_sym_u_SQUOTE] = ACTIONS(2764), - [anon_sym_U_SQUOTE] = ACTIONS(2764), - [anon_sym_u8_SQUOTE] = ACTIONS(2764), - [anon_sym_SQUOTE] = ACTIONS(2764), - [anon_sym_L_DQUOTE] = ACTIONS(2764), - [anon_sym_u_DQUOTE] = ACTIONS(2764), - [anon_sym_U_DQUOTE] = ACTIONS(2764), - [anon_sym_u8_DQUOTE] = ACTIONS(2764), - [anon_sym_DQUOTE] = ACTIONS(2764), - [sym_true] = ACTIONS(2762), - [sym_false] = ACTIONS(2762), - [sym_null] = ACTIONS(2762), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2762), - [anon_sym_decltype] = ACTIONS(2762), - [anon_sym_virtual] = ACTIONS(2762), - [anon_sym_explicit] = ACTIONS(2762), - [anon_sym_typename] = ACTIONS(2762), - [anon_sym_template] = ACTIONS(2762), - [anon_sym_operator] = ACTIONS(2762), - [anon_sym_try] = ACTIONS(2762), - [anon_sym_delete] = ACTIONS(2762), - [anon_sym_throw] = ACTIONS(2762), - [anon_sym_namespace] = ACTIONS(2762), - [anon_sym_using] = ACTIONS(2762), - [anon_sym_static_assert] = ACTIONS(2762), - [anon_sym_concept] = ACTIONS(2762), - [anon_sym_co_return] = ACTIONS(2762), - [anon_sym_co_yield] = ACTIONS(2762), - [anon_sym_R_DQUOTE] = ACTIONS(2764), - [anon_sym_LR_DQUOTE] = ACTIONS(2764), - [anon_sym_uR_DQUOTE] = ACTIONS(2764), - [anon_sym_UR_DQUOTE] = ACTIONS(2764), - [anon_sym_u8R_DQUOTE] = ACTIONS(2764), - [anon_sym_co_await] = ACTIONS(2762), - [anon_sym_new] = ACTIONS(2762), - [anon_sym_requires] = ACTIONS(2762), - [sym_this] = ACTIONS(2762), - [sym_nullptr] = ACTIONS(2762), - }, - [1087] = { - [ts_builtin_sym_end] = ACTIONS(2910), - [sym_identifier] = ACTIONS(2908), - [aux_sym_preproc_include_token1] = ACTIONS(2908), - [aux_sym_preproc_def_token1] = ACTIONS(2908), - [aux_sym_preproc_if_token1] = ACTIONS(2908), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2908), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2908), - [sym_preproc_directive] = ACTIONS(2908), - [anon_sym_LPAREN2] = ACTIONS(2910), - [anon_sym_BANG] = ACTIONS(2910), - [anon_sym_TILDE] = ACTIONS(2910), - [anon_sym_DASH] = ACTIONS(2908), - [anon_sym_PLUS] = ACTIONS(2908), - [anon_sym_STAR] = ACTIONS(2910), - [anon_sym_AMP_AMP] = ACTIONS(2910), - [anon_sym_AMP] = ACTIONS(2908), - [anon_sym_SEMI] = ACTIONS(2910), - [anon_sym_typedef] = ACTIONS(2908), - [anon_sym_extern] = ACTIONS(2908), - [anon_sym___attribute__] = ACTIONS(2908), - [anon_sym_COLON_COLON] = ACTIONS(2910), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2910), - [anon_sym___declspec] = ACTIONS(2908), - [anon_sym___based] = ACTIONS(2908), - [anon_sym___cdecl] = ACTIONS(2908), - [anon_sym___clrcall] = ACTIONS(2908), - [anon_sym___stdcall] = ACTIONS(2908), - [anon_sym___fastcall] = ACTIONS(2908), - [anon_sym___thiscall] = ACTIONS(2908), - [anon_sym___vectorcall] = ACTIONS(2908), - [anon_sym_LBRACE] = ACTIONS(2910), - [anon_sym_LBRACK] = ACTIONS(2908), - [anon_sym_static] = ACTIONS(2908), - [anon_sym_register] = ACTIONS(2908), - [anon_sym_inline] = ACTIONS(2908), - [anon_sym_thread_local] = ACTIONS(2908), - [anon_sym_const] = ACTIONS(2908), - [anon_sym_volatile] = ACTIONS(2908), - [anon_sym_restrict] = ACTIONS(2908), - [anon_sym__Atomic] = ACTIONS(2908), - [anon_sym_mutable] = ACTIONS(2908), - [anon_sym_constexpr] = ACTIONS(2908), - [anon_sym_constinit] = ACTIONS(2908), - [anon_sym_consteval] = ACTIONS(2908), - [anon_sym_signed] = ACTIONS(2908), - [anon_sym_unsigned] = ACTIONS(2908), - [anon_sym_long] = ACTIONS(2908), - [anon_sym_short] = ACTIONS(2908), - [sym_primitive_type] = ACTIONS(2908), - [anon_sym_enum] = ACTIONS(2908), - [anon_sym_class] = ACTIONS(2908), - [anon_sym_struct] = ACTIONS(2908), - [anon_sym_union] = ACTIONS(2908), - [anon_sym_if] = ACTIONS(2908), - [anon_sym_switch] = ACTIONS(2908), - [anon_sym_case] = ACTIONS(2908), - [anon_sym_default] = ACTIONS(2908), - [anon_sym_while] = ACTIONS(2908), - [anon_sym_do] = ACTIONS(2908), - [anon_sym_for] = ACTIONS(2908), - [anon_sym_return] = ACTIONS(2908), - [anon_sym_break] = ACTIONS(2908), - [anon_sym_continue] = ACTIONS(2908), - [anon_sym_goto] = ACTIONS(2908), - [anon_sym_not] = ACTIONS(2908), - [anon_sym_compl] = ACTIONS(2908), - [anon_sym_DASH_DASH] = ACTIONS(2910), - [anon_sym_PLUS_PLUS] = ACTIONS(2910), - [anon_sym_sizeof] = ACTIONS(2908), - [sym_number_literal] = ACTIONS(2910), - [anon_sym_L_SQUOTE] = ACTIONS(2910), - [anon_sym_u_SQUOTE] = ACTIONS(2910), - [anon_sym_U_SQUOTE] = ACTIONS(2910), - [anon_sym_u8_SQUOTE] = ACTIONS(2910), - [anon_sym_SQUOTE] = ACTIONS(2910), - [anon_sym_L_DQUOTE] = ACTIONS(2910), - [anon_sym_u_DQUOTE] = ACTIONS(2910), - [anon_sym_U_DQUOTE] = ACTIONS(2910), - [anon_sym_u8_DQUOTE] = ACTIONS(2910), - [anon_sym_DQUOTE] = ACTIONS(2910), - [sym_true] = ACTIONS(2908), - [sym_false] = ACTIONS(2908), - [sym_null] = ACTIONS(2908), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2908), - [anon_sym_decltype] = ACTIONS(2908), - [anon_sym_virtual] = ACTIONS(2908), - [anon_sym_explicit] = ACTIONS(2908), - [anon_sym_typename] = ACTIONS(2908), - [anon_sym_template] = ACTIONS(2908), - [anon_sym_operator] = ACTIONS(2908), - [anon_sym_try] = ACTIONS(2908), - [anon_sym_delete] = ACTIONS(2908), - [anon_sym_throw] = ACTIONS(2908), - [anon_sym_namespace] = ACTIONS(2908), - [anon_sym_using] = ACTIONS(2908), - [anon_sym_static_assert] = ACTIONS(2908), - [anon_sym_concept] = ACTIONS(2908), - [anon_sym_co_return] = ACTIONS(2908), - [anon_sym_co_yield] = ACTIONS(2908), - [anon_sym_R_DQUOTE] = ACTIONS(2910), - [anon_sym_LR_DQUOTE] = ACTIONS(2910), - [anon_sym_uR_DQUOTE] = ACTIONS(2910), - [anon_sym_UR_DQUOTE] = ACTIONS(2910), - [anon_sym_u8R_DQUOTE] = ACTIONS(2910), - [anon_sym_co_await] = ACTIONS(2908), - [anon_sym_new] = ACTIONS(2908), - [anon_sym_requires] = ACTIONS(2908), - [sym_this] = ACTIONS(2908), - [sym_nullptr] = ACTIONS(2908), - }, - [1088] = { - [sym_identifier] = ACTIONS(2726), - [aux_sym_preproc_include_token1] = ACTIONS(2726), - [aux_sym_preproc_def_token1] = ACTIONS(2726), - [aux_sym_preproc_if_token1] = ACTIONS(2726), - [aux_sym_preproc_if_token2] = ACTIONS(2726), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2726), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2726), - [sym_preproc_directive] = ACTIONS(2726), - [anon_sym_LPAREN2] = ACTIONS(2728), - [anon_sym_BANG] = ACTIONS(2728), - [anon_sym_TILDE] = ACTIONS(2728), - [anon_sym_DASH] = ACTIONS(2726), - [anon_sym_PLUS] = ACTIONS(2726), - [anon_sym_STAR] = ACTIONS(2728), - [anon_sym_AMP_AMP] = ACTIONS(2728), - [anon_sym_AMP] = ACTIONS(2726), - [anon_sym_SEMI] = ACTIONS(2728), - [anon_sym_typedef] = ACTIONS(2726), - [anon_sym_extern] = ACTIONS(2726), - [anon_sym___attribute__] = ACTIONS(2726), - [anon_sym_COLON_COLON] = ACTIONS(2728), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2728), - [anon_sym___declspec] = ACTIONS(2726), - [anon_sym___based] = ACTIONS(2726), - [anon_sym___cdecl] = ACTIONS(2726), - [anon_sym___clrcall] = ACTIONS(2726), - [anon_sym___stdcall] = ACTIONS(2726), - [anon_sym___fastcall] = ACTIONS(2726), - [anon_sym___thiscall] = ACTIONS(2726), - [anon_sym___vectorcall] = ACTIONS(2726), - [anon_sym_LBRACE] = ACTIONS(2728), - [anon_sym_LBRACK] = ACTIONS(2726), - [anon_sym_static] = ACTIONS(2726), - [anon_sym_register] = ACTIONS(2726), - [anon_sym_inline] = ACTIONS(2726), - [anon_sym_thread_local] = ACTIONS(2726), - [anon_sym_const] = ACTIONS(2726), - [anon_sym_volatile] = ACTIONS(2726), - [anon_sym_restrict] = ACTIONS(2726), - [anon_sym__Atomic] = ACTIONS(2726), - [anon_sym_mutable] = ACTIONS(2726), - [anon_sym_constexpr] = ACTIONS(2726), - [anon_sym_constinit] = ACTIONS(2726), - [anon_sym_consteval] = ACTIONS(2726), - [anon_sym_signed] = ACTIONS(2726), - [anon_sym_unsigned] = ACTIONS(2726), - [anon_sym_long] = ACTIONS(2726), - [anon_sym_short] = ACTIONS(2726), - [sym_primitive_type] = ACTIONS(2726), - [anon_sym_enum] = ACTIONS(2726), - [anon_sym_class] = ACTIONS(2726), - [anon_sym_struct] = ACTIONS(2726), - [anon_sym_union] = ACTIONS(2726), - [anon_sym_if] = ACTIONS(2726), - [anon_sym_switch] = ACTIONS(2726), - [anon_sym_case] = ACTIONS(2726), - [anon_sym_default] = ACTIONS(2726), - [anon_sym_while] = ACTIONS(2726), - [anon_sym_do] = ACTIONS(2726), - [anon_sym_for] = ACTIONS(2726), - [anon_sym_return] = ACTIONS(2726), - [anon_sym_break] = ACTIONS(2726), - [anon_sym_continue] = ACTIONS(2726), - [anon_sym_goto] = ACTIONS(2726), - [anon_sym_not] = ACTIONS(2726), - [anon_sym_compl] = ACTIONS(2726), - [anon_sym_DASH_DASH] = ACTIONS(2728), - [anon_sym_PLUS_PLUS] = ACTIONS(2728), - [anon_sym_sizeof] = ACTIONS(2726), - [sym_number_literal] = ACTIONS(2728), - [anon_sym_L_SQUOTE] = ACTIONS(2728), - [anon_sym_u_SQUOTE] = ACTIONS(2728), - [anon_sym_U_SQUOTE] = ACTIONS(2728), - [anon_sym_u8_SQUOTE] = ACTIONS(2728), - [anon_sym_SQUOTE] = ACTIONS(2728), - [anon_sym_L_DQUOTE] = ACTIONS(2728), - [anon_sym_u_DQUOTE] = ACTIONS(2728), - [anon_sym_U_DQUOTE] = ACTIONS(2728), - [anon_sym_u8_DQUOTE] = ACTIONS(2728), - [anon_sym_DQUOTE] = ACTIONS(2728), - [sym_true] = ACTIONS(2726), - [sym_false] = ACTIONS(2726), - [sym_null] = ACTIONS(2726), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2726), - [anon_sym_decltype] = ACTIONS(2726), - [anon_sym_virtual] = ACTIONS(2726), - [anon_sym_explicit] = ACTIONS(2726), - [anon_sym_typename] = ACTIONS(2726), - [anon_sym_template] = ACTIONS(2726), - [anon_sym_operator] = ACTIONS(2726), - [anon_sym_try] = ACTIONS(2726), - [anon_sym_delete] = ACTIONS(2726), - [anon_sym_throw] = ACTIONS(2726), - [anon_sym_namespace] = ACTIONS(2726), - [anon_sym_using] = ACTIONS(2726), - [anon_sym_static_assert] = ACTIONS(2726), - [anon_sym_concept] = ACTIONS(2726), - [anon_sym_co_return] = ACTIONS(2726), - [anon_sym_co_yield] = ACTIONS(2726), - [anon_sym_R_DQUOTE] = ACTIONS(2728), - [anon_sym_LR_DQUOTE] = ACTIONS(2728), - [anon_sym_uR_DQUOTE] = ACTIONS(2728), - [anon_sym_UR_DQUOTE] = ACTIONS(2728), - [anon_sym_u8R_DQUOTE] = ACTIONS(2728), - [anon_sym_co_await] = ACTIONS(2726), - [anon_sym_new] = ACTIONS(2726), - [anon_sym_requires] = ACTIONS(2726), - [sym_this] = ACTIONS(2726), - [sym_nullptr] = ACTIONS(2726), - }, - [1089] = { - [ts_builtin_sym_end] = ACTIONS(2668), - [sym_identifier] = ACTIONS(2666), - [aux_sym_preproc_include_token1] = ACTIONS(2666), - [aux_sym_preproc_def_token1] = ACTIONS(2666), - [aux_sym_preproc_if_token1] = ACTIONS(2666), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2666), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2666), - [sym_preproc_directive] = ACTIONS(2666), - [anon_sym_LPAREN2] = ACTIONS(2668), - [anon_sym_BANG] = ACTIONS(2668), - [anon_sym_TILDE] = ACTIONS(2668), - [anon_sym_DASH] = ACTIONS(2666), - [anon_sym_PLUS] = ACTIONS(2666), - [anon_sym_STAR] = ACTIONS(2668), - [anon_sym_AMP_AMP] = ACTIONS(2668), - [anon_sym_AMP] = ACTIONS(2666), - [anon_sym_SEMI] = ACTIONS(2668), - [anon_sym_typedef] = ACTIONS(2666), - [anon_sym_extern] = ACTIONS(2666), - [anon_sym___attribute__] = ACTIONS(2666), - [anon_sym_COLON_COLON] = ACTIONS(2668), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2668), - [anon_sym___declspec] = ACTIONS(2666), - [anon_sym___based] = ACTIONS(2666), - [anon_sym___cdecl] = ACTIONS(2666), - [anon_sym___clrcall] = ACTIONS(2666), - [anon_sym___stdcall] = ACTIONS(2666), - [anon_sym___fastcall] = ACTIONS(2666), - [anon_sym___thiscall] = ACTIONS(2666), - [anon_sym___vectorcall] = ACTIONS(2666), - [anon_sym_LBRACE] = ACTIONS(2668), - [anon_sym_LBRACK] = ACTIONS(2666), - [anon_sym_static] = ACTIONS(2666), - [anon_sym_register] = ACTIONS(2666), - [anon_sym_inline] = ACTIONS(2666), - [anon_sym_thread_local] = ACTIONS(2666), - [anon_sym_const] = ACTIONS(2666), - [anon_sym_volatile] = ACTIONS(2666), - [anon_sym_restrict] = ACTIONS(2666), - [anon_sym__Atomic] = ACTIONS(2666), - [anon_sym_mutable] = ACTIONS(2666), - [anon_sym_constexpr] = ACTIONS(2666), - [anon_sym_constinit] = ACTIONS(2666), - [anon_sym_consteval] = ACTIONS(2666), - [anon_sym_signed] = ACTIONS(2666), - [anon_sym_unsigned] = ACTIONS(2666), - [anon_sym_long] = ACTIONS(2666), - [anon_sym_short] = ACTIONS(2666), - [sym_primitive_type] = ACTIONS(2666), - [anon_sym_enum] = ACTIONS(2666), - [anon_sym_class] = ACTIONS(2666), - [anon_sym_struct] = ACTIONS(2666), - [anon_sym_union] = ACTIONS(2666), - [anon_sym_if] = ACTIONS(2666), - [anon_sym_switch] = ACTIONS(2666), - [anon_sym_case] = ACTIONS(2666), - [anon_sym_default] = ACTIONS(2666), - [anon_sym_while] = ACTIONS(2666), - [anon_sym_do] = ACTIONS(2666), - [anon_sym_for] = ACTIONS(2666), - [anon_sym_return] = ACTIONS(2666), - [anon_sym_break] = ACTIONS(2666), - [anon_sym_continue] = ACTIONS(2666), - [anon_sym_goto] = ACTIONS(2666), - [anon_sym_not] = ACTIONS(2666), - [anon_sym_compl] = ACTIONS(2666), - [anon_sym_DASH_DASH] = ACTIONS(2668), - [anon_sym_PLUS_PLUS] = ACTIONS(2668), - [anon_sym_sizeof] = ACTIONS(2666), - [sym_number_literal] = ACTIONS(2668), - [anon_sym_L_SQUOTE] = ACTIONS(2668), - [anon_sym_u_SQUOTE] = ACTIONS(2668), - [anon_sym_U_SQUOTE] = ACTIONS(2668), - [anon_sym_u8_SQUOTE] = ACTIONS(2668), - [anon_sym_SQUOTE] = ACTIONS(2668), - [anon_sym_L_DQUOTE] = ACTIONS(2668), - [anon_sym_u_DQUOTE] = ACTIONS(2668), - [anon_sym_U_DQUOTE] = ACTIONS(2668), - [anon_sym_u8_DQUOTE] = ACTIONS(2668), - [anon_sym_DQUOTE] = ACTIONS(2668), - [sym_true] = ACTIONS(2666), - [sym_false] = ACTIONS(2666), - [sym_null] = ACTIONS(2666), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2666), - [anon_sym_decltype] = ACTIONS(2666), - [anon_sym_virtual] = ACTIONS(2666), - [anon_sym_explicit] = ACTIONS(2666), - [anon_sym_typename] = ACTIONS(2666), - [anon_sym_template] = ACTIONS(2666), - [anon_sym_operator] = ACTIONS(2666), - [anon_sym_try] = ACTIONS(2666), - [anon_sym_delete] = ACTIONS(2666), - [anon_sym_throw] = ACTIONS(2666), - [anon_sym_namespace] = ACTIONS(2666), - [anon_sym_using] = ACTIONS(2666), - [anon_sym_static_assert] = ACTIONS(2666), - [anon_sym_concept] = ACTIONS(2666), - [anon_sym_co_return] = ACTIONS(2666), - [anon_sym_co_yield] = ACTIONS(2666), - [anon_sym_R_DQUOTE] = ACTIONS(2668), - [anon_sym_LR_DQUOTE] = ACTIONS(2668), - [anon_sym_uR_DQUOTE] = ACTIONS(2668), - [anon_sym_UR_DQUOTE] = ACTIONS(2668), - [anon_sym_u8R_DQUOTE] = ACTIONS(2668), - [anon_sym_co_await] = ACTIONS(2666), - [anon_sym_new] = ACTIONS(2666), - [anon_sym_requires] = ACTIONS(2666), - [sym_this] = ACTIONS(2666), - [sym_nullptr] = ACTIONS(2666), - }, - [1090] = { - [sym_identifier] = ACTIONS(2670), - [aux_sym_preproc_include_token1] = ACTIONS(2670), - [aux_sym_preproc_def_token1] = ACTIONS(2670), - [aux_sym_preproc_if_token1] = ACTIONS(2670), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2670), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2670), - [sym_preproc_directive] = ACTIONS(2670), - [anon_sym_LPAREN2] = ACTIONS(2672), - [anon_sym_BANG] = ACTIONS(2672), - [anon_sym_TILDE] = ACTIONS(2672), - [anon_sym_DASH] = ACTIONS(2670), - [anon_sym_PLUS] = ACTIONS(2670), - [anon_sym_STAR] = ACTIONS(2672), - [anon_sym_AMP_AMP] = ACTIONS(2672), - [anon_sym_AMP] = ACTIONS(2670), - [anon_sym_SEMI] = ACTIONS(2672), - [anon_sym_typedef] = ACTIONS(2670), - [anon_sym_extern] = ACTIONS(2670), - [anon_sym___attribute__] = ACTIONS(2670), - [anon_sym_COLON_COLON] = ACTIONS(2672), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2672), - [anon_sym___declspec] = ACTIONS(2670), - [anon_sym___based] = ACTIONS(2670), - [anon_sym___cdecl] = ACTIONS(2670), - [anon_sym___clrcall] = ACTIONS(2670), - [anon_sym___stdcall] = ACTIONS(2670), - [anon_sym___fastcall] = ACTIONS(2670), - [anon_sym___thiscall] = ACTIONS(2670), - [anon_sym___vectorcall] = ACTIONS(2670), - [anon_sym_LBRACE] = ACTIONS(2672), - [anon_sym_RBRACE] = ACTIONS(2672), - [anon_sym_LBRACK] = ACTIONS(2670), - [anon_sym_static] = ACTIONS(2670), - [anon_sym_register] = ACTIONS(2670), - [anon_sym_inline] = ACTIONS(2670), - [anon_sym_thread_local] = ACTIONS(2670), - [anon_sym_const] = ACTIONS(2670), - [anon_sym_volatile] = ACTIONS(2670), - [anon_sym_restrict] = ACTIONS(2670), - [anon_sym__Atomic] = ACTIONS(2670), - [anon_sym_mutable] = ACTIONS(2670), - [anon_sym_constexpr] = ACTIONS(2670), - [anon_sym_constinit] = ACTIONS(2670), - [anon_sym_consteval] = ACTIONS(2670), - [anon_sym_signed] = ACTIONS(2670), - [anon_sym_unsigned] = ACTIONS(2670), - [anon_sym_long] = ACTIONS(2670), - [anon_sym_short] = ACTIONS(2670), - [sym_primitive_type] = ACTIONS(2670), - [anon_sym_enum] = ACTIONS(2670), - [anon_sym_class] = ACTIONS(2670), - [anon_sym_struct] = ACTIONS(2670), - [anon_sym_union] = ACTIONS(2670), - [anon_sym_if] = ACTIONS(2670), - [anon_sym_switch] = ACTIONS(2670), - [anon_sym_case] = ACTIONS(2670), - [anon_sym_default] = ACTIONS(2670), - [anon_sym_while] = ACTIONS(2670), - [anon_sym_do] = ACTIONS(2670), - [anon_sym_for] = ACTIONS(2670), - [anon_sym_return] = ACTIONS(2670), - [anon_sym_break] = ACTIONS(2670), - [anon_sym_continue] = ACTIONS(2670), - [anon_sym_goto] = ACTIONS(2670), - [anon_sym_not] = ACTIONS(2670), - [anon_sym_compl] = ACTIONS(2670), - [anon_sym_DASH_DASH] = ACTIONS(2672), - [anon_sym_PLUS_PLUS] = ACTIONS(2672), - [anon_sym_sizeof] = ACTIONS(2670), - [sym_number_literal] = ACTIONS(2672), - [anon_sym_L_SQUOTE] = ACTIONS(2672), - [anon_sym_u_SQUOTE] = ACTIONS(2672), - [anon_sym_U_SQUOTE] = ACTIONS(2672), - [anon_sym_u8_SQUOTE] = ACTIONS(2672), - [anon_sym_SQUOTE] = ACTIONS(2672), - [anon_sym_L_DQUOTE] = ACTIONS(2672), - [anon_sym_u_DQUOTE] = ACTIONS(2672), - [anon_sym_U_DQUOTE] = ACTIONS(2672), - [anon_sym_u8_DQUOTE] = ACTIONS(2672), - [anon_sym_DQUOTE] = ACTIONS(2672), - [sym_true] = ACTIONS(2670), - [sym_false] = ACTIONS(2670), - [sym_null] = ACTIONS(2670), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2670), - [anon_sym_decltype] = ACTIONS(2670), - [anon_sym_virtual] = ACTIONS(2670), - [anon_sym_explicit] = ACTIONS(2670), - [anon_sym_typename] = ACTIONS(2670), - [anon_sym_template] = ACTIONS(2670), - [anon_sym_operator] = ACTIONS(2670), - [anon_sym_try] = ACTIONS(2670), - [anon_sym_delete] = ACTIONS(2670), - [anon_sym_throw] = ACTIONS(2670), - [anon_sym_namespace] = ACTIONS(2670), - [anon_sym_using] = ACTIONS(2670), - [anon_sym_static_assert] = ACTIONS(2670), - [anon_sym_concept] = ACTIONS(2670), - [anon_sym_co_return] = ACTIONS(2670), - [anon_sym_co_yield] = ACTIONS(2670), - [anon_sym_R_DQUOTE] = ACTIONS(2672), - [anon_sym_LR_DQUOTE] = ACTIONS(2672), - [anon_sym_uR_DQUOTE] = ACTIONS(2672), - [anon_sym_UR_DQUOTE] = ACTIONS(2672), - [anon_sym_u8R_DQUOTE] = ACTIONS(2672), - [anon_sym_co_await] = ACTIONS(2670), - [anon_sym_new] = ACTIONS(2670), - [anon_sym_requires] = ACTIONS(2670), - [sym_this] = ACTIONS(2670), - [sym_nullptr] = ACTIONS(2670), - }, - [1091] = { - [sym_identifier] = ACTIONS(2782), - [aux_sym_preproc_include_token1] = ACTIONS(2782), - [aux_sym_preproc_def_token1] = ACTIONS(2782), - [aux_sym_preproc_if_token1] = ACTIONS(2782), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2782), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2782), - [sym_preproc_directive] = ACTIONS(2782), - [anon_sym_LPAREN2] = ACTIONS(2784), - [anon_sym_BANG] = ACTIONS(2784), - [anon_sym_TILDE] = ACTIONS(2784), - [anon_sym_DASH] = ACTIONS(2782), - [anon_sym_PLUS] = ACTIONS(2782), - [anon_sym_STAR] = ACTIONS(2784), - [anon_sym_AMP_AMP] = ACTIONS(2784), - [anon_sym_AMP] = ACTIONS(2782), - [anon_sym_SEMI] = ACTIONS(2784), - [anon_sym_typedef] = ACTIONS(2782), - [anon_sym_extern] = ACTIONS(2782), - [anon_sym___attribute__] = ACTIONS(2782), - [anon_sym_COLON_COLON] = ACTIONS(2784), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2784), - [anon_sym___declspec] = ACTIONS(2782), - [anon_sym___based] = ACTIONS(2782), - [anon_sym___cdecl] = ACTIONS(2782), - [anon_sym___clrcall] = ACTIONS(2782), - [anon_sym___stdcall] = ACTIONS(2782), - [anon_sym___fastcall] = ACTIONS(2782), - [anon_sym___thiscall] = ACTIONS(2782), - [anon_sym___vectorcall] = ACTIONS(2782), - [anon_sym_LBRACE] = ACTIONS(2784), - [anon_sym_RBRACE] = ACTIONS(2784), - [anon_sym_LBRACK] = ACTIONS(2782), - [anon_sym_static] = ACTIONS(2782), - [anon_sym_register] = ACTIONS(2782), - [anon_sym_inline] = ACTIONS(2782), - [anon_sym_thread_local] = ACTIONS(2782), - [anon_sym_const] = ACTIONS(2782), - [anon_sym_volatile] = ACTIONS(2782), - [anon_sym_restrict] = ACTIONS(2782), - [anon_sym__Atomic] = ACTIONS(2782), - [anon_sym_mutable] = ACTIONS(2782), - [anon_sym_constexpr] = ACTIONS(2782), - [anon_sym_constinit] = ACTIONS(2782), - [anon_sym_consteval] = ACTIONS(2782), - [anon_sym_signed] = ACTIONS(2782), - [anon_sym_unsigned] = ACTIONS(2782), - [anon_sym_long] = ACTIONS(2782), - [anon_sym_short] = ACTIONS(2782), - [sym_primitive_type] = ACTIONS(2782), - [anon_sym_enum] = ACTIONS(2782), - [anon_sym_class] = ACTIONS(2782), - [anon_sym_struct] = ACTIONS(2782), - [anon_sym_union] = ACTIONS(2782), - [anon_sym_if] = ACTIONS(2782), - [anon_sym_switch] = ACTIONS(2782), - [anon_sym_case] = ACTIONS(2782), - [anon_sym_default] = ACTIONS(2782), - [anon_sym_while] = ACTIONS(2782), - [anon_sym_do] = ACTIONS(2782), - [anon_sym_for] = ACTIONS(2782), - [anon_sym_return] = ACTIONS(2782), - [anon_sym_break] = ACTIONS(2782), - [anon_sym_continue] = ACTIONS(2782), - [anon_sym_goto] = ACTIONS(2782), - [anon_sym_not] = ACTIONS(2782), - [anon_sym_compl] = ACTIONS(2782), - [anon_sym_DASH_DASH] = ACTIONS(2784), - [anon_sym_PLUS_PLUS] = ACTIONS(2784), - [anon_sym_sizeof] = ACTIONS(2782), - [sym_number_literal] = ACTIONS(2784), - [anon_sym_L_SQUOTE] = ACTIONS(2784), - [anon_sym_u_SQUOTE] = ACTIONS(2784), - [anon_sym_U_SQUOTE] = ACTIONS(2784), - [anon_sym_u8_SQUOTE] = ACTIONS(2784), - [anon_sym_SQUOTE] = ACTIONS(2784), - [anon_sym_L_DQUOTE] = ACTIONS(2784), - [anon_sym_u_DQUOTE] = ACTIONS(2784), - [anon_sym_U_DQUOTE] = ACTIONS(2784), - [anon_sym_u8_DQUOTE] = ACTIONS(2784), - [anon_sym_DQUOTE] = ACTIONS(2784), - [sym_true] = ACTIONS(2782), - [sym_false] = ACTIONS(2782), - [sym_null] = ACTIONS(2782), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2782), - [anon_sym_decltype] = ACTIONS(2782), - [anon_sym_virtual] = ACTIONS(2782), - [anon_sym_explicit] = ACTIONS(2782), - [anon_sym_typename] = ACTIONS(2782), - [anon_sym_template] = ACTIONS(2782), - [anon_sym_operator] = ACTIONS(2782), - [anon_sym_try] = ACTIONS(2782), - [anon_sym_delete] = ACTIONS(2782), - [anon_sym_throw] = ACTIONS(2782), - [anon_sym_namespace] = ACTIONS(2782), - [anon_sym_using] = ACTIONS(2782), - [anon_sym_static_assert] = ACTIONS(2782), - [anon_sym_concept] = ACTIONS(2782), - [anon_sym_co_return] = ACTIONS(2782), - [anon_sym_co_yield] = ACTIONS(2782), - [anon_sym_R_DQUOTE] = ACTIONS(2784), - [anon_sym_LR_DQUOTE] = ACTIONS(2784), - [anon_sym_uR_DQUOTE] = ACTIONS(2784), - [anon_sym_UR_DQUOTE] = ACTIONS(2784), - [anon_sym_u8R_DQUOTE] = ACTIONS(2784), - [anon_sym_co_await] = ACTIONS(2782), - [anon_sym_new] = ACTIONS(2782), - [anon_sym_requires] = ACTIONS(2782), - [sym_this] = ACTIONS(2782), - [sym_nullptr] = ACTIONS(2782), - }, - [1092] = { - [ts_builtin_sym_end] = ACTIONS(2854), - [sym_identifier] = ACTIONS(2852), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2854), - [anon_sym_AMP] = ACTIONS(2852), - [anon_sym_SEMI] = ACTIONS(2854), - [anon_sym_typedef] = ACTIONS(2852), - [anon_sym_extern] = ACTIONS(2852), - [anon_sym___attribute__] = ACTIONS(2852), - [anon_sym_COLON_COLON] = ACTIONS(2854), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2854), - [anon_sym___declspec] = ACTIONS(2852), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2852), - [anon_sym_static] = ACTIONS(2852), - [anon_sym_register] = ACTIONS(2852), - [anon_sym_inline] = ACTIONS(2852), - [anon_sym_thread_local] = ACTIONS(2852), - [anon_sym_const] = ACTIONS(2852), - [anon_sym_volatile] = ACTIONS(2852), - [anon_sym_restrict] = ACTIONS(2852), - [anon_sym__Atomic] = ACTIONS(2852), - [anon_sym_mutable] = ACTIONS(2852), - [anon_sym_constexpr] = ACTIONS(2852), - [anon_sym_constinit] = ACTIONS(2852), - [anon_sym_consteval] = ACTIONS(2852), - [anon_sym_signed] = ACTIONS(2852), - [anon_sym_unsigned] = ACTIONS(2852), - [anon_sym_long] = ACTIONS(2852), - [anon_sym_short] = ACTIONS(2852), - [sym_primitive_type] = ACTIONS(2852), - [anon_sym_enum] = ACTIONS(2852), - [anon_sym_class] = 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_return] = ACTIONS(2852), - [anon_sym_break] = ACTIONS(2852), - [anon_sym_continue] = ACTIONS(2852), - [anon_sym_goto] = ACTIONS(2852), - [anon_sym_not] = ACTIONS(2852), - [anon_sym_compl] = ACTIONS(2852), - [anon_sym_DASH_DASH] = ACTIONS(2854), - [anon_sym_PLUS_PLUS] = ACTIONS(2854), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2854), - [anon_sym_u_DQUOTE] = ACTIONS(2854), - [anon_sym_U_DQUOTE] = ACTIONS(2854), - [anon_sym_u8_DQUOTE] = ACTIONS(2854), - [anon_sym_DQUOTE] = ACTIONS(2854), - [sym_true] = ACTIONS(2852), - [sym_false] = ACTIONS(2852), - [sym_null] = ACTIONS(2852), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2852), - [anon_sym_decltype] = ACTIONS(2852), - [anon_sym_virtual] = ACTIONS(2852), - [anon_sym_explicit] = ACTIONS(2852), - [anon_sym_typename] = ACTIONS(2852), - [anon_sym_template] = ACTIONS(2852), - [anon_sym_operator] = ACTIONS(2852), - [anon_sym_try] = ACTIONS(2852), - [anon_sym_delete] = ACTIONS(2852), - [anon_sym_throw] = ACTIONS(2852), - [anon_sym_namespace] = ACTIONS(2852), - [anon_sym_using] = ACTIONS(2852), - [anon_sym_static_assert] = ACTIONS(2852), - [anon_sym_concept] = ACTIONS(2852), - [anon_sym_co_return] = ACTIONS(2852), - [anon_sym_co_yield] = ACTIONS(2852), - [anon_sym_R_DQUOTE] = ACTIONS(2854), - [anon_sym_LR_DQUOTE] = ACTIONS(2854), - [anon_sym_uR_DQUOTE] = ACTIONS(2854), - [anon_sym_UR_DQUOTE] = ACTIONS(2854), - [anon_sym_u8R_DQUOTE] = ACTIONS(2854), - [anon_sym_co_await] = ACTIONS(2852), - [anon_sym_new] = ACTIONS(2852), - [anon_sym_requires] = ACTIONS(2852), - [sym_this] = ACTIONS(2852), - [sym_nullptr] = ACTIONS(2852), - }, - [1093] = { - [ts_builtin_sym_end] = ACTIONS(2788), - [sym_identifier] = ACTIONS(2786), - [aux_sym_preproc_include_token1] = ACTIONS(2786), - [aux_sym_preproc_def_token1] = ACTIONS(2786), - [aux_sym_preproc_if_token1] = ACTIONS(2786), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2786), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2786), - [sym_preproc_directive] = ACTIONS(2786), - [anon_sym_LPAREN2] = ACTIONS(2788), - [anon_sym_BANG] = ACTIONS(2788), - [anon_sym_TILDE] = ACTIONS(2788), - [anon_sym_DASH] = ACTIONS(2786), - [anon_sym_PLUS] = ACTIONS(2786), - [anon_sym_STAR] = ACTIONS(2788), - [anon_sym_AMP_AMP] = ACTIONS(2788), - [anon_sym_AMP] = ACTIONS(2786), - [anon_sym_SEMI] = ACTIONS(2788), - [anon_sym_typedef] = ACTIONS(2786), - [anon_sym_extern] = ACTIONS(2786), - [anon_sym___attribute__] = ACTIONS(2786), - [anon_sym_COLON_COLON] = ACTIONS(2788), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2788), - [anon_sym___declspec] = ACTIONS(2786), - [anon_sym___based] = ACTIONS(2786), - [anon_sym___cdecl] = ACTIONS(2786), - [anon_sym___clrcall] = ACTIONS(2786), - [anon_sym___stdcall] = ACTIONS(2786), - [anon_sym___fastcall] = ACTIONS(2786), - [anon_sym___thiscall] = ACTIONS(2786), - [anon_sym___vectorcall] = ACTIONS(2786), - [anon_sym_LBRACE] = ACTIONS(2788), - [anon_sym_LBRACK] = ACTIONS(2786), - [anon_sym_static] = ACTIONS(2786), - [anon_sym_register] = ACTIONS(2786), - [anon_sym_inline] = ACTIONS(2786), - [anon_sym_thread_local] = ACTIONS(2786), - [anon_sym_const] = ACTIONS(2786), - [anon_sym_volatile] = ACTIONS(2786), - [anon_sym_restrict] = ACTIONS(2786), - [anon_sym__Atomic] = ACTIONS(2786), - [anon_sym_mutable] = ACTIONS(2786), - [anon_sym_constexpr] = ACTIONS(2786), - [anon_sym_constinit] = ACTIONS(2786), - [anon_sym_consteval] = ACTIONS(2786), - [anon_sym_signed] = ACTIONS(2786), - [anon_sym_unsigned] = ACTIONS(2786), - [anon_sym_long] = ACTIONS(2786), - [anon_sym_short] = ACTIONS(2786), - [sym_primitive_type] = ACTIONS(2786), - [anon_sym_enum] = ACTIONS(2786), - [anon_sym_class] = ACTIONS(2786), - [anon_sym_struct] = ACTIONS(2786), - [anon_sym_union] = ACTIONS(2786), - [anon_sym_if] = ACTIONS(2786), - [anon_sym_switch] = ACTIONS(2786), - [anon_sym_case] = ACTIONS(2786), - [anon_sym_default] = ACTIONS(2786), - [anon_sym_while] = ACTIONS(2786), - [anon_sym_do] = ACTIONS(2786), - [anon_sym_for] = ACTIONS(2786), - [anon_sym_return] = ACTIONS(2786), - [anon_sym_break] = ACTIONS(2786), - [anon_sym_continue] = ACTIONS(2786), - [anon_sym_goto] = ACTIONS(2786), - [anon_sym_not] = ACTIONS(2786), - [anon_sym_compl] = ACTIONS(2786), - [anon_sym_DASH_DASH] = ACTIONS(2788), - [anon_sym_PLUS_PLUS] = ACTIONS(2788), - [anon_sym_sizeof] = ACTIONS(2786), - [sym_number_literal] = ACTIONS(2788), - [anon_sym_L_SQUOTE] = ACTIONS(2788), - [anon_sym_u_SQUOTE] = ACTIONS(2788), - [anon_sym_U_SQUOTE] = ACTIONS(2788), - [anon_sym_u8_SQUOTE] = ACTIONS(2788), - [anon_sym_SQUOTE] = ACTIONS(2788), - [anon_sym_L_DQUOTE] = ACTIONS(2788), - [anon_sym_u_DQUOTE] = ACTIONS(2788), - [anon_sym_U_DQUOTE] = ACTIONS(2788), - [anon_sym_u8_DQUOTE] = ACTIONS(2788), - [anon_sym_DQUOTE] = ACTIONS(2788), - [sym_true] = ACTIONS(2786), - [sym_false] = ACTIONS(2786), - [sym_null] = ACTIONS(2786), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2786), - [anon_sym_decltype] = ACTIONS(2786), - [anon_sym_virtual] = ACTIONS(2786), - [anon_sym_explicit] = ACTIONS(2786), - [anon_sym_typename] = ACTIONS(2786), - [anon_sym_template] = ACTIONS(2786), - [anon_sym_operator] = ACTIONS(2786), - [anon_sym_try] = ACTIONS(2786), - [anon_sym_delete] = ACTIONS(2786), - [anon_sym_throw] = ACTIONS(2786), - [anon_sym_namespace] = ACTIONS(2786), - [anon_sym_using] = ACTIONS(2786), - [anon_sym_static_assert] = ACTIONS(2786), - [anon_sym_concept] = ACTIONS(2786), - [anon_sym_co_return] = ACTIONS(2786), - [anon_sym_co_yield] = ACTIONS(2786), - [anon_sym_R_DQUOTE] = ACTIONS(2788), - [anon_sym_LR_DQUOTE] = ACTIONS(2788), - [anon_sym_uR_DQUOTE] = ACTIONS(2788), - [anon_sym_UR_DQUOTE] = ACTIONS(2788), - [anon_sym_u8R_DQUOTE] = ACTIONS(2788), - [anon_sym_co_await] = ACTIONS(2786), - [anon_sym_new] = ACTIONS(2786), - [anon_sym_requires] = ACTIONS(2786), - [sym_this] = ACTIONS(2786), - [sym_nullptr] = ACTIONS(2786), - }, - [1094] = { - [ts_builtin_sym_end] = ACTIONS(2874), - [sym_identifier] = ACTIONS(2872), - [aux_sym_preproc_include_token1] = 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_AMP_AMP] = ACTIONS(2874), - [anon_sym_AMP] = ACTIONS(2872), - [anon_sym_SEMI] = ACTIONS(2874), - [anon_sym_typedef] = ACTIONS(2872), - [anon_sym_extern] = ACTIONS(2872), - [anon_sym___attribute__] = ACTIONS(2872), - [anon_sym_COLON_COLON] = ACTIONS(2874), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2874), - [anon_sym___declspec] = ACTIONS(2872), - [anon_sym___based] = 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_LBRACK] = ACTIONS(2872), - [anon_sym_static] = ACTIONS(2872), - [anon_sym_register] = ACTIONS(2872), - [anon_sym_inline] = ACTIONS(2872), - [anon_sym_thread_local] = ACTIONS(2872), - [anon_sym_const] = ACTIONS(2872), - [anon_sym_volatile] = ACTIONS(2872), - [anon_sym_restrict] = ACTIONS(2872), - [anon_sym__Atomic] = ACTIONS(2872), - [anon_sym_mutable] = ACTIONS(2872), - [anon_sym_constexpr] = ACTIONS(2872), - [anon_sym_constinit] = ACTIONS(2872), - [anon_sym_consteval] = ACTIONS(2872), - [anon_sym_signed] = ACTIONS(2872), - [anon_sym_unsigned] = ACTIONS(2872), - [anon_sym_long] = ACTIONS(2872), - [anon_sym_short] = ACTIONS(2872), - [sym_primitive_type] = ACTIONS(2872), - [anon_sym_enum] = ACTIONS(2872), - [anon_sym_class] = 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_return] = ACTIONS(2872), - [anon_sym_break] = ACTIONS(2872), - [anon_sym_continue] = ACTIONS(2872), - [anon_sym_goto] = ACTIONS(2872), - [anon_sym_not] = ACTIONS(2872), - [anon_sym_compl] = ACTIONS(2872), - [anon_sym_DASH_DASH] = ACTIONS(2874), - [anon_sym_PLUS_PLUS] = ACTIONS(2874), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2874), - [anon_sym_u_DQUOTE] = ACTIONS(2874), - [anon_sym_U_DQUOTE] = ACTIONS(2874), - [anon_sym_u8_DQUOTE] = ACTIONS(2874), - [anon_sym_DQUOTE] = ACTIONS(2874), - [sym_true] = ACTIONS(2872), - [sym_false] = ACTIONS(2872), - [sym_null] = ACTIONS(2872), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2872), - [anon_sym_decltype] = ACTIONS(2872), - [anon_sym_virtual] = ACTIONS(2872), - [anon_sym_explicit] = ACTIONS(2872), - [anon_sym_typename] = ACTIONS(2872), - [anon_sym_template] = ACTIONS(2872), - [anon_sym_operator] = ACTIONS(2872), - [anon_sym_try] = ACTIONS(2872), - [anon_sym_delete] = ACTIONS(2872), - [anon_sym_throw] = ACTIONS(2872), - [anon_sym_namespace] = ACTIONS(2872), - [anon_sym_using] = ACTIONS(2872), - [anon_sym_static_assert] = ACTIONS(2872), - [anon_sym_concept] = ACTIONS(2872), - [anon_sym_co_return] = ACTIONS(2872), - [anon_sym_co_yield] = ACTIONS(2872), - [anon_sym_R_DQUOTE] = ACTIONS(2874), - [anon_sym_LR_DQUOTE] = ACTIONS(2874), - [anon_sym_uR_DQUOTE] = ACTIONS(2874), - [anon_sym_UR_DQUOTE] = ACTIONS(2874), - [anon_sym_u8R_DQUOTE] = ACTIONS(2874), - [anon_sym_co_await] = ACTIONS(2872), - [anon_sym_new] = ACTIONS(2872), - [anon_sym_requires] = ACTIONS(2872), - [sym_this] = ACTIONS(2872), - [sym_nullptr] = ACTIONS(2872), - }, - [1095] = { - [ts_builtin_sym_end] = ACTIONS(2878), - [sym_identifier] = ACTIONS(2876), - [aux_sym_preproc_include_token1] = ACTIONS(2876), - [aux_sym_preproc_def_token1] = ACTIONS(2876), - [aux_sym_preproc_if_token1] = ACTIONS(2876), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2876), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2876), - [sym_preproc_directive] = ACTIONS(2876), - [anon_sym_LPAREN2] = ACTIONS(2878), - [anon_sym_BANG] = ACTIONS(2878), - [anon_sym_TILDE] = ACTIONS(2878), - [anon_sym_DASH] = ACTIONS(2876), - [anon_sym_PLUS] = ACTIONS(2876), - [anon_sym_STAR] = ACTIONS(2878), - [anon_sym_AMP_AMP] = ACTIONS(2878), - [anon_sym_AMP] = ACTIONS(2876), - [anon_sym_SEMI] = ACTIONS(2878), - [anon_sym_typedef] = ACTIONS(2876), - [anon_sym_extern] = ACTIONS(2876), - [anon_sym___attribute__] = ACTIONS(2876), - [anon_sym_COLON_COLON] = ACTIONS(2878), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2878), - [anon_sym___declspec] = ACTIONS(2876), - [anon_sym___based] = ACTIONS(2876), - [anon_sym___cdecl] = ACTIONS(2876), - [anon_sym___clrcall] = ACTIONS(2876), - [anon_sym___stdcall] = ACTIONS(2876), - [anon_sym___fastcall] = ACTIONS(2876), - [anon_sym___thiscall] = ACTIONS(2876), - [anon_sym___vectorcall] = ACTIONS(2876), - [anon_sym_LBRACE] = ACTIONS(2878), - [anon_sym_LBRACK] = ACTIONS(2876), - [anon_sym_static] = ACTIONS(2876), - [anon_sym_register] = ACTIONS(2876), - [anon_sym_inline] = ACTIONS(2876), - [anon_sym_thread_local] = ACTIONS(2876), - [anon_sym_const] = ACTIONS(2876), - [anon_sym_volatile] = ACTIONS(2876), - [anon_sym_restrict] = ACTIONS(2876), - [anon_sym__Atomic] = ACTIONS(2876), - [anon_sym_mutable] = ACTIONS(2876), - [anon_sym_constexpr] = ACTIONS(2876), - [anon_sym_constinit] = ACTIONS(2876), - [anon_sym_consteval] = ACTIONS(2876), - [anon_sym_signed] = ACTIONS(2876), - [anon_sym_unsigned] = ACTIONS(2876), - [anon_sym_long] = ACTIONS(2876), - [anon_sym_short] = ACTIONS(2876), - [sym_primitive_type] = ACTIONS(2876), - [anon_sym_enum] = ACTIONS(2876), - [anon_sym_class] = ACTIONS(2876), - [anon_sym_struct] = ACTIONS(2876), - [anon_sym_union] = ACTIONS(2876), - [anon_sym_if] = ACTIONS(2876), - [anon_sym_switch] = ACTIONS(2876), - [anon_sym_case] = ACTIONS(2876), - [anon_sym_default] = ACTIONS(2876), - [anon_sym_while] = ACTIONS(2876), - [anon_sym_do] = ACTIONS(2876), - [anon_sym_for] = ACTIONS(2876), - [anon_sym_return] = ACTIONS(2876), - [anon_sym_break] = ACTIONS(2876), - [anon_sym_continue] = ACTIONS(2876), - [anon_sym_goto] = ACTIONS(2876), - [anon_sym_not] = ACTIONS(2876), - [anon_sym_compl] = ACTIONS(2876), - [anon_sym_DASH_DASH] = ACTIONS(2878), - [anon_sym_PLUS_PLUS] = ACTIONS(2878), - [anon_sym_sizeof] = ACTIONS(2876), - [sym_number_literal] = ACTIONS(2878), - [anon_sym_L_SQUOTE] = ACTIONS(2878), - [anon_sym_u_SQUOTE] = ACTIONS(2878), - [anon_sym_U_SQUOTE] = ACTIONS(2878), - [anon_sym_u8_SQUOTE] = ACTIONS(2878), - [anon_sym_SQUOTE] = ACTIONS(2878), - [anon_sym_L_DQUOTE] = ACTIONS(2878), - [anon_sym_u_DQUOTE] = ACTIONS(2878), - [anon_sym_U_DQUOTE] = ACTIONS(2878), - [anon_sym_u8_DQUOTE] = ACTIONS(2878), - [anon_sym_DQUOTE] = ACTIONS(2878), - [sym_true] = ACTIONS(2876), - [sym_false] = ACTIONS(2876), - [sym_null] = ACTIONS(2876), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2876), - [anon_sym_decltype] = ACTIONS(2876), - [anon_sym_virtual] = ACTIONS(2876), - [anon_sym_explicit] = ACTIONS(2876), - [anon_sym_typename] = ACTIONS(2876), - [anon_sym_template] = ACTIONS(2876), - [anon_sym_operator] = ACTIONS(2876), - [anon_sym_try] = ACTIONS(2876), - [anon_sym_delete] = ACTIONS(2876), - [anon_sym_throw] = ACTIONS(2876), - [anon_sym_namespace] = ACTIONS(2876), - [anon_sym_using] = ACTIONS(2876), - [anon_sym_static_assert] = ACTIONS(2876), - [anon_sym_concept] = ACTIONS(2876), - [anon_sym_co_return] = ACTIONS(2876), - [anon_sym_co_yield] = ACTIONS(2876), - [anon_sym_R_DQUOTE] = ACTIONS(2878), - [anon_sym_LR_DQUOTE] = ACTIONS(2878), - [anon_sym_uR_DQUOTE] = ACTIONS(2878), - [anon_sym_UR_DQUOTE] = ACTIONS(2878), - [anon_sym_u8R_DQUOTE] = ACTIONS(2878), - [anon_sym_co_await] = ACTIONS(2876), - [anon_sym_new] = ACTIONS(2876), - [anon_sym_requires] = ACTIONS(2876), - [sym_this] = ACTIONS(2876), - [sym_nullptr] = ACTIONS(2876), - }, - [1096] = { - [sym_identifier] = ACTIONS(2674), - [aux_sym_preproc_include_token1] = ACTIONS(2674), - [aux_sym_preproc_def_token1] = ACTIONS(2674), - [aux_sym_preproc_if_token1] = ACTIONS(2674), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2674), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2674), - [sym_preproc_directive] = ACTIONS(2674), - [anon_sym_LPAREN2] = ACTIONS(2676), - [anon_sym_BANG] = ACTIONS(2676), - [anon_sym_TILDE] = ACTIONS(2676), - [anon_sym_DASH] = ACTIONS(2674), - [anon_sym_PLUS] = ACTIONS(2674), - [anon_sym_STAR] = ACTIONS(2676), - [anon_sym_AMP_AMP] = ACTIONS(2676), - [anon_sym_AMP] = ACTIONS(2674), - [anon_sym_SEMI] = ACTIONS(2676), - [anon_sym_typedef] = ACTIONS(2674), - [anon_sym_extern] = ACTIONS(2674), - [anon_sym___attribute__] = ACTIONS(2674), - [anon_sym_COLON_COLON] = ACTIONS(2676), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2676), - [anon_sym___declspec] = ACTIONS(2674), - [anon_sym___based] = ACTIONS(2674), - [anon_sym___cdecl] = ACTIONS(2674), - [anon_sym___clrcall] = ACTIONS(2674), - [anon_sym___stdcall] = ACTIONS(2674), - [anon_sym___fastcall] = ACTIONS(2674), - [anon_sym___thiscall] = ACTIONS(2674), - [anon_sym___vectorcall] = ACTIONS(2674), - [anon_sym_LBRACE] = ACTIONS(2676), - [anon_sym_RBRACE] = ACTIONS(2676), - [anon_sym_LBRACK] = ACTIONS(2674), - [anon_sym_static] = ACTIONS(2674), - [anon_sym_register] = ACTIONS(2674), - [anon_sym_inline] = ACTIONS(2674), - [anon_sym_thread_local] = ACTIONS(2674), - [anon_sym_const] = ACTIONS(2674), - [anon_sym_volatile] = ACTIONS(2674), - [anon_sym_restrict] = ACTIONS(2674), - [anon_sym__Atomic] = ACTIONS(2674), - [anon_sym_mutable] = ACTIONS(2674), - [anon_sym_constexpr] = ACTIONS(2674), - [anon_sym_constinit] = ACTIONS(2674), - [anon_sym_consteval] = ACTIONS(2674), - [anon_sym_signed] = ACTIONS(2674), - [anon_sym_unsigned] = ACTIONS(2674), - [anon_sym_long] = ACTIONS(2674), - [anon_sym_short] = ACTIONS(2674), - [sym_primitive_type] = ACTIONS(2674), - [anon_sym_enum] = ACTIONS(2674), - [anon_sym_class] = ACTIONS(2674), - [anon_sym_struct] = ACTIONS(2674), - [anon_sym_union] = ACTIONS(2674), - [anon_sym_if] = ACTIONS(2674), - [anon_sym_switch] = ACTIONS(2674), - [anon_sym_case] = ACTIONS(2674), - [anon_sym_default] = ACTIONS(2674), - [anon_sym_while] = ACTIONS(2674), - [anon_sym_do] = ACTIONS(2674), - [anon_sym_for] = ACTIONS(2674), - [anon_sym_return] = ACTIONS(2674), - [anon_sym_break] = ACTIONS(2674), - [anon_sym_continue] = ACTIONS(2674), - [anon_sym_goto] = ACTIONS(2674), - [anon_sym_not] = ACTIONS(2674), - [anon_sym_compl] = ACTIONS(2674), - [anon_sym_DASH_DASH] = ACTIONS(2676), - [anon_sym_PLUS_PLUS] = ACTIONS(2676), - [anon_sym_sizeof] = ACTIONS(2674), - [sym_number_literal] = ACTIONS(2676), - [anon_sym_L_SQUOTE] = ACTIONS(2676), - [anon_sym_u_SQUOTE] = ACTIONS(2676), - [anon_sym_U_SQUOTE] = ACTIONS(2676), - [anon_sym_u8_SQUOTE] = ACTIONS(2676), - [anon_sym_SQUOTE] = ACTIONS(2676), - [anon_sym_L_DQUOTE] = ACTIONS(2676), - [anon_sym_u_DQUOTE] = ACTIONS(2676), - [anon_sym_U_DQUOTE] = ACTIONS(2676), - [anon_sym_u8_DQUOTE] = ACTIONS(2676), - [anon_sym_DQUOTE] = ACTIONS(2676), - [sym_true] = ACTIONS(2674), - [sym_false] = ACTIONS(2674), - [sym_null] = ACTIONS(2674), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2674), - [anon_sym_decltype] = ACTIONS(2674), - [anon_sym_virtual] = ACTIONS(2674), - [anon_sym_explicit] = ACTIONS(2674), - [anon_sym_typename] = ACTIONS(2674), - [anon_sym_template] = ACTIONS(2674), - [anon_sym_operator] = ACTIONS(2674), - [anon_sym_try] = ACTIONS(2674), - [anon_sym_delete] = ACTIONS(2674), - [anon_sym_throw] = ACTIONS(2674), - [anon_sym_namespace] = ACTIONS(2674), - [anon_sym_using] = ACTIONS(2674), - [anon_sym_static_assert] = ACTIONS(2674), - [anon_sym_concept] = ACTIONS(2674), - [anon_sym_co_return] = ACTIONS(2674), - [anon_sym_co_yield] = ACTIONS(2674), - [anon_sym_R_DQUOTE] = ACTIONS(2676), - [anon_sym_LR_DQUOTE] = ACTIONS(2676), - [anon_sym_uR_DQUOTE] = ACTIONS(2676), - [anon_sym_UR_DQUOTE] = ACTIONS(2676), - [anon_sym_u8R_DQUOTE] = ACTIONS(2676), - [anon_sym_co_await] = ACTIONS(2674), - [anon_sym_new] = ACTIONS(2674), - [anon_sym_requires] = ACTIONS(2674), - [sym_this] = ACTIONS(2674), - [sym_nullptr] = ACTIONS(2674), - }, - [1097] = { - [sym__expression] = STATE(3587), - [sym_comma_expression] = STATE(6166), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2964), - [anon_sym_LPAREN2] = ACTIONS(984), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(2967), - [anon_sym_extern] = ACTIONS(2969), - [anon_sym___attribute__] = ACTIONS(2969), - [anon_sym_COLON_COLON] = ACTIONS(2971), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2974), - [anon_sym___declspec] = ACTIONS(2969), - [anon_sym_LBRACK] = ACTIONS(994), - [anon_sym_static] = ACTIONS(2969), - [anon_sym_register] = ACTIONS(2969), - [anon_sym_inline] = ACTIONS(2969), - [anon_sym_thread_local] = ACTIONS(2969), - [anon_sym_const] = ACTIONS(2969), - [anon_sym_volatile] = ACTIONS(2969), - [anon_sym_restrict] = ACTIONS(2969), - [anon_sym__Atomic] = ACTIONS(2969), - [anon_sym_mutable] = ACTIONS(2969), - [anon_sym_constexpr] = ACTIONS(2969), - [anon_sym_constinit] = ACTIONS(2969), - [anon_sym_consteval] = ACTIONS(2969), - [anon_sym_signed] = ACTIONS(2969), - [anon_sym_unsigned] = ACTIONS(2969), - [anon_sym_long] = ACTIONS(2969), - [anon_sym_short] = ACTIONS(2969), - [sym_primitive_type] = ACTIONS(2976), - [anon_sym_enum] = ACTIONS(2969), - [anon_sym_class] = ACTIONS(2969), - [anon_sym_struct] = ACTIONS(2969), - [anon_sym_union] = ACTIONS(2969), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2969), - [anon_sym_decltype] = ACTIONS(2979), - [anon_sym_virtual] = ACTIONS(2969), - [anon_sym_typename] = ACTIONS(2969), - [anon_sym_template] = ACTIONS(2982), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), - }, - [1098] = { - [sym__expression] = STATE(3597), - [sym_comma_expression] = STATE(6367), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2985), - [anon_sym_LPAREN2] = ACTIONS(984), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(2988), - [anon_sym_extern] = ACTIONS(2496), - [anon_sym___attribute__] = ACTIONS(2496), - [anon_sym_COLON_COLON] = ACTIONS(2990), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2498), - [anon_sym___declspec] = ACTIONS(2496), - [anon_sym_LBRACK] = ACTIONS(994), - [anon_sym_static] = ACTIONS(2496), - [anon_sym_register] = ACTIONS(2496), - [anon_sym_inline] = ACTIONS(2496), - [anon_sym_thread_local] = ACTIONS(2496), - [anon_sym_const] = ACTIONS(2496), - [anon_sym_volatile] = ACTIONS(2496), - [anon_sym_restrict] = ACTIONS(2496), - [anon_sym__Atomic] = ACTIONS(2496), - [anon_sym_mutable] = ACTIONS(2496), - [anon_sym_constexpr] = ACTIONS(2496), - [anon_sym_constinit] = ACTIONS(2496), - [anon_sym_consteval] = ACTIONS(2496), - [anon_sym_signed] = ACTIONS(2496), - [anon_sym_unsigned] = ACTIONS(2496), - [anon_sym_long] = ACTIONS(2496), - [anon_sym_short] = ACTIONS(2496), - [sym_primitive_type] = ACTIONS(2993), - [anon_sym_enum] = ACTIONS(2496), - [anon_sym_class] = ACTIONS(2496), - [anon_sym_struct] = ACTIONS(2496), - [anon_sym_union] = ACTIONS(2496), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2496), - [anon_sym_decltype] = ACTIONS(2996), - [anon_sym_virtual] = ACTIONS(2496), - [anon_sym_typename] = ACTIONS(2496), - [anon_sym_template] = ACTIONS(2999), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), - }, - [1099] = { - [sym__expression] = STATE(3594), - [sym_comma_expression] = STATE(6049), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(3002), - [anon_sym_LPAREN2] = ACTIONS(984), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(3005), - [anon_sym_extern] = ACTIONS(2568), - [anon_sym___attribute__] = ACTIONS(2568), - [anon_sym_COLON_COLON] = ACTIONS(3007), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2570), - [anon_sym___declspec] = ACTIONS(2568), - [anon_sym_LBRACK] = ACTIONS(994), - [anon_sym_static] = ACTIONS(2568), - [anon_sym_register] = ACTIONS(2568), - [anon_sym_inline] = ACTIONS(2568), - [anon_sym_thread_local] = ACTIONS(2568), - [anon_sym_const] = ACTIONS(2568), - [anon_sym_volatile] = ACTIONS(2568), - [anon_sym_restrict] = ACTIONS(2568), - [anon_sym__Atomic] = ACTIONS(2568), - [anon_sym_mutable] = ACTIONS(2568), - [anon_sym_constexpr] = ACTIONS(2568), - [anon_sym_constinit] = ACTIONS(2568), - [anon_sym_consteval] = ACTIONS(2568), - [anon_sym_signed] = ACTIONS(2568), - [anon_sym_unsigned] = ACTIONS(2568), - [anon_sym_long] = ACTIONS(2568), - [anon_sym_short] = ACTIONS(2568), - [sym_primitive_type] = ACTIONS(3010), - [anon_sym_enum] = ACTIONS(2568), - [anon_sym_class] = ACTIONS(2568), - [anon_sym_struct] = ACTIONS(2568), - [anon_sym_union] = ACTIONS(2568), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2568), - [anon_sym_decltype] = ACTIONS(3013), - [anon_sym_virtual] = ACTIONS(2568), - [anon_sym_typename] = ACTIONS(2568), - [anon_sym_template] = ACTIONS(3016), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), - }, - [1100] = { - [sym__expression] = STATE(3684), - [sym_comma_expression] = STATE(6321), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2985), - [anon_sym_LPAREN2] = ACTIONS(984), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(3019), - [anon_sym_extern] = ACTIONS(2496), - [anon_sym___attribute__] = ACTIONS(2496), - [anon_sym_COLON_COLON] = ACTIONS(2990), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2498), - [anon_sym___declspec] = ACTIONS(2496), - [anon_sym_LBRACK] = ACTIONS(994), - [anon_sym_static] = ACTIONS(2496), - [anon_sym_register] = ACTIONS(2496), - [anon_sym_inline] = ACTIONS(2496), - [anon_sym_thread_local] = ACTIONS(2496), - [anon_sym_const] = ACTIONS(2496), - [anon_sym_volatile] = ACTIONS(2496), - [anon_sym_restrict] = ACTIONS(2496), - [anon_sym__Atomic] = ACTIONS(2496), - [anon_sym_mutable] = ACTIONS(2496), - [anon_sym_constexpr] = ACTIONS(2496), - [anon_sym_constinit] = ACTIONS(2496), - [anon_sym_consteval] = ACTIONS(2496), - [anon_sym_signed] = ACTIONS(2496), - [anon_sym_unsigned] = ACTIONS(2496), - [anon_sym_long] = ACTIONS(2496), - [anon_sym_short] = ACTIONS(2496), - [sym_primitive_type] = ACTIONS(2993), - [anon_sym_enum] = ACTIONS(2496), - [anon_sym_class] = ACTIONS(2496), - [anon_sym_struct] = ACTIONS(2496), - [anon_sym_union] = ACTIONS(2496), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2496), - [anon_sym_decltype] = ACTIONS(2996), - [anon_sym_virtual] = ACTIONS(2496), - [anon_sym_typename] = ACTIONS(2496), - [anon_sym_template] = ACTIONS(2999), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), - }, - [1101] = { - [sym__expression] = STATE(3592), - [sym_comma_expression] = STATE(6048), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2964), - [anon_sym_LPAREN2] = ACTIONS(984), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(3021), - [anon_sym_extern] = ACTIONS(2969), - [anon_sym___attribute__] = ACTIONS(2969), - [anon_sym_COLON_COLON] = ACTIONS(2971), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2974), - [anon_sym___declspec] = ACTIONS(2969), - [anon_sym_LBRACK] = ACTIONS(994), - [anon_sym_static] = ACTIONS(2969), - [anon_sym_register] = ACTIONS(2969), - [anon_sym_inline] = ACTIONS(2969), - [anon_sym_thread_local] = ACTIONS(2969), - [anon_sym_const] = ACTIONS(2969), - [anon_sym_volatile] = ACTIONS(2969), - [anon_sym_restrict] = ACTIONS(2969), - [anon_sym__Atomic] = ACTIONS(2969), - [anon_sym_mutable] = ACTIONS(2969), - [anon_sym_constexpr] = ACTIONS(2969), - [anon_sym_constinit] = ACTIONS(2969), - [anon_sym_consteval] = ACTIONS(2969), - [anon_sym_signed] = ACTIONS(2969), - [anon_sym_unsigned] = ACTIONS(2969), - [anon_sym_long] = ACTIONS(2969), - [anon_sym_short] = ACTIONS(2969), - [sym_primitive_type] = ACTIONS(2976), - [anon_sym_enum] = ACTIONS(2969), - [anon_sym_class] = ACTIONS(2969), - [anon_sym_struct] = ACTIONS(2969), - [anon_sym_union] = ACTIONS(2969), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2969), - [anon_sym_decltype] = ACTIONS(2979), - [anon_sym_virtual] = ACTIONS(2969), - [anon_sym_typename] = ACTIONS(2969), - [anon_sym_template] = ACTIONS(2982), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), - }, - [1102] = { - [sym__expression] = STATE(3647), - [sym_conditional_expression] = STATE(3855), - [sym_assignment_expression] = STATE(3855), - [sym_pointer_expression] = STATE(2954), - [sym_unary_expression] = STATE(3855), - [sym_binary_expression] = STATE(3855), - [sym_update_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_subscript_expression] = STATE(2954), - [sym_call_expression] = STATE(2954), - [sym_field_expression] = STATE(2954), - [sym_compound_literal_expression] = STATE(3855), - [sym_parenthesized_expression] = STATE(2954), - [sym_initializer_list] = STATE(3752), - [sym_char_literal] = STATE(3557), - [sym_concatenated_string] = STATE(3557), - [sym_string_literal] = STATE(2955), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5844), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3855), - [sym_raw_string_literal] = STATE(2955), - [sym_co_await_expression] = STATE(3855), - [sym_new_expression] = STATE(3855), - [sym_delete_expression] = STATE(3855), - [sym_requires_clause] = STATE(3855), - [sym_requires_expression] = STATE(3855), - [sym_lambda_expression] = STATE(3855), - [sym_lambda_capture_specifier] = STATE(4501), - [sym_fold_expression] = STATE(3855), - [sym_parameter_pack_expansion] = STATE(3855), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4570), - [sym_qualified_identifier] = STATE(2954), - [sym_qualified_type_identifier] = STATE(5844), - [sym_user_defined_literal] = STATE(3855), - [sym_identifier] = ACTIONS(3023), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1525), - [anon_sym_COMMA] = ACTIONS(1525), - [anon_sym_LPAREN2] = ACTIONS(2410), - [anon_sym_BANG] = ACTIONS(2414), - [anon_sym_TILDE] = ACTIONS(2412), - [anon_sym_DASH] = ACTIONS(2414), - [anon_sym_PLUS] = ACTIONS(2414), - [anon_sym_STAR] = ACTIONS(2416), - [anon_sym_SLASH] = ACTIONS(1533), - [anon_sym_PERCENT] = ACTIONS(1525), - [anon_sym_PIPE_PIPE] = ACTIONS(1525), - [anon_sym_AMP_AMP] = ACTIONS(1525), - [anon_sym_PIPE] = ACTIONS(1533), - [anon_sym_CARET] = ACTIONS(1525), - [anon_sym_AMP] = ACTIONS(1613), - [anon_sym_EQ_EQ] = ACTIONS(1525), - [anon_sym_BANG_EQ] = ACTIONS(1525), - [anon_sym_GT] = ACTIONS(1533), - [anon_sym_GT_EQ] = ACTIONS(1533), - [anon_sym_LT_EQ] = ACTIONS(1533), - [anon_sym_LT] = ACTIONS(1533), - [anon_sym_LT_LT] = ACTIONS(1525), - [anon_sym_GT_GT] = ACTIONS(1533), - [anon_sym_COLON_COLON] = ACTIONS(2418), - [anon_sym_LBRACE] = ACTIONS(3025), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1619), - [anon_sym_QMARK] = ACTIONS(1525), - [anon_sym_not] = ACTIONS(2414), - [anon_sym_compl] = ACTIONS(2414), - [anon_sym_LT_EQ_GT] = ACTIONS(1525), - [anon_sym_or] = ACTIONS(1533), - [anon_sym_and] = ACTIONS(1533), - [anon_sym_bitor] = ACTIONS(1533), - [anon_sym_xor] = ACTIONS(1533), - [anon_sym_bitand] = ACTIONS(1533), - [anon_sym_not_eq] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(2432), - [anon_sym_sizeof] = ACTIONS(2434), - [anon_sym_DOT] = ACTIONS(1533), - [anon_sym_DASH_GT] = ACTIONS(1525), - [sym_number_literal] = ACTIONS(2436), - [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_L_DQUOTE] = ACTIONS(2440), - [anon_sym_u_DQUOTE] = ACTIONS(2440), - [anon_sym_U_DQUOTE] = ACTIONS(2440), - [anon_sym_u8_DQUOTE] = ACTIONS(2440), - [anon_sym_DQUOTE] = ACTIONS(2440), - [sym_true] = ACTIONS(2442), - [sym_false] = ACTIONS(2442), - [sym_null] = ACTIONS(2442), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_GT2] = ACTIONS(1525), - [anon_sym_delete] = ACTIONS(2452), - [anon_sym_R_DQUOTE] = ACTIONS(2454), - [anon_sym_LR_DQUOTE] = ACTIONS(2454), - [anon_sym_uR_DQUOTE] = ACTIONS(2454), - [anon_sym_UR_DQUOTE] = ACTIONS(2454), - [anon_sym_u8R_DQUOTE] = ACTIONS(2454), - [anon_sym_co_await] = ACTIONS(2456), - [anon_sym_new] = ACTIONS(2458), - [anon_sym_requires] = ACTIONS(2460), - [sym_this] = ACTIONS(2442), - [sym_nullptr] = ACTIONS(2442), - }, - [1103] = { - [sym__expression] = STATE(3682), - [sym_comma_expression] = STATE(6312), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2964), - [anon_sym_LPAREN2] = ACTIONS(984), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(3027), - [anon_sym_extern] = ACTIONS(2969), - [anon_sym___attribute__] = ACTIONS(2969), - [anon_sym_COLON_COLON] = ACTIONS(2971), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2974), - [anon_sym___declspec] = ACTIONS(2969), - [anon_sym_LBRACK] = ACTIONS(994), - [anon_sym_static] = ACTIONS(2969), - [anon_sym_register] = ACTIONS(2969), - [anon_sym_inline] = ACTIONS(2969), - [anon_sym_thread_local] = ACTIONS(2969), - [anon_sym_const] = ACTIONS(2969), - [anon_sym_volatile] = ACTIONS(2969), - [anon_sym_restrict] = ACTIONS(2969), - [anon_sym__Atomic] = ACTIONS(2969), - [anon_sym_mutable] = ACTIONS(2969), - [anon_sym_constexpr] = ACTIONS(2969), - [anon_sym_constinit] = ACTIONS(2969), - [anon_sym_consteval] = ACTIONS(2969), - [anon_sym_signed] = ACTIONS(2969), - [anon_sym_unsigned] = ACTIONS(2969), - [anon_sym_long] = ACTIONS(2969), - [anon_sym_short] = ACTIONS(2969), - [sym_primitive_type] = ACTIONS(2976), - [anon_sym_enum] = ACTIONS(2969), - [anon_sym_class] = ACTIONS(2969), - [anon_sym_struct] = ACTIONS(2969), - [anon_sym_union] = ACTIONS(2969), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2969), - [anon_sym_decltype] = ACTIONS(2979), - [anon_sym_virtual] = ACTIONS(2969), - [anon_sym_typename] = ACTIONS(2969), - [anon_sym_template] = ACTIONS(2982), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), - }, - [1104] = { - [sym__expression] = STATE(3679), - [sym_comma_expression] = STATE(6310), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(3002), - [anon_sym_LPAREN2] = ACTIONS(984), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(3029), - [anon_sym_extern] = ACTIONS(2568), - [anon_sym___attribute__] = ACTIONS(2568), - [anon_sym_COLON_COLON] = ACTIONS(3007), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2570), - [anon_sym___declspec] = ACTIONS(2568), - [anon_sym_LBRACK] = ACTIONS(994), - [anon_sym_static] = ACTIONS(2568), - [anon_sym_register] = ACTIONS(2568), - [anon_sym_inline] = ACTIONS(2568), - [anon_sym_thread_local] = ACTIONS(2568), - [anon_sym_const] = ACTIONS(2568), - [anon_sym_volatile] = ACTIONS(2568), - [anon_sym_restrict] = ACTIONS(2568), - [anon_sym__Atomic] = ACTIONS(2568), - [anon_sym_mutable] = ACTIONS(2568), - [anon_sym_constexpr] = ACTIONS(2568), - [anon_sym_constinit] = ACTIONS(2568), - [anon_sym_consteval] = ACTIONS(2568), - [anon_sym_signed] = ACTIONS(2568), - [anon_sym_unsigned] = ACTIONS(2568), - [anon_sym_long] = ACTIONS(2568), - [anon_sym_short] = ACTIONS(2568), - [sym_primitive_type] = ACTIONS(3010), - [anon_sym_enum] = ACTIONS(2568), - [anon_sym_class] = ACTIONS(2568), - [anon_sym_struct] = ACTIONS(2568), - [anon_sym_union] = ACTIONS(2568), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2568), - [anon_sym_decltype] = ACTIONS(3013), - [anon_sym_virtual] = ACTIONS(2568), - [anon_sym_typename] = ACTIONS(2568), - [anon_sym_template] = ACTIONS(3016), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), - }, - [1105] = { - [sym__expression] = STATE(3595), - [sym_comma_expression] = STATE(6172), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2985), - [anon_sym_LPAREN2] = ACTIONS(984), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(3031), - [anon_sym_extern] = ACTIONS(2496), - [anon_sym___attribute__] = ACTIONS(2496), - [anon_sym_COLON_COLON] = ACTIONS(2990), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2498), - [anon_sym___declspec] = ACTIONS(2496), - [anon_sym_LBRACK] = ACTIONS(994), - [anon_sym_static] = ACTIONS(2496), - [anon_sym_register] = ACTIONS(2496), - [anon_sym_inline] = ACTIONS(2496), - [anon_sym_thread_local] = ACTIONS(2496), - [anon_sym_const] = ACTIONS(2496), - [anon_sym_volatile] = ACTIONS(2496), - [anon_sym_restrict] = ACTIONS(2496), - [anon_sym__Atomic] = ACTIONS(2496), - [anon_sym_mutable] = ACTIONS(2496), - [anon_sym_constexpr] = ACTIONS(2496), - [anon_sym_constinit] = ACTIONS(2496), - [anon_sym_consteval] = ACTIONS(2496), - [anon_sym_signed] = ACTIONS(2496), - [anon_sym_unsigned] = ACTIONS(2496), - [anon_sym_long] = ACTIONS(2496), - [anon_sym_short] = ACTIONS(2496), - [sym_primitive_type] = ACTIONS(2993), - [anon_sym_enum] = ACTIONS(2496), - [anon_sym_class] = ACTIONS(2496), - [anon_sym_struct] = ACTIONS(2496), - [anon_sym_union] = ACTIONS(2496), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2496), - [anon_sym_decltype] = ACTIONS(2996), - [anon_sym_virtual] = ACTIONS(2496), - [anon_sym_typename] = ACTIONS(2496), - [anon_sym_template] = ACTIONS(2999), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), - }, - [1106] = { - [sym__expression] = STATE(3585), - [sym_comma_expression] = STATE(6043), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(3002), - [anon_sym_LPAREN2] = ACTIONS(984), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(3033), - [anon_sym_extern] = ACTIONS(2568), - [anon_sym___attribute__] = ACTIONS(2568), - [anon_sym_COLON_COLON] = ACTIONS(3007), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2570), - [anon_sym___declspec] = ACTIONS(2568), - [anon_sym_LBRACK] = ACTIONS(994), - [anon_sym_static] = ACTIONS(2568), - [anon_sym_register] = ACTIONS(2568), - [anon_sym_inline] = ACTIONS(2568), - [anon_sym_thread_local] = ACTIONS(2568), - [anon_sym_const] = ACTIONS(2568), - [anon_sym_volatile] = ACTIONS(2568), - [anon_sym_restrict] = ACTIONS(2568), - [anon_sym__Atomic] = ACTIONS(2568), - [anon_sym_mutable] = ACTIONS(2568), - [anon_sym_constexpr] = ACTIONS(2568), - [anon_sym_constinit] = ACTIONS(2568), - [anon_sym_consteval] = ACTIONS(2568), - [anon_sym_signed] = ACTIONS(2568), - [anon_sym_unsigned] = ACTIONS(2568), - [anon_sym_long] = ACTIONS(2568), - [anon_sym_short] = ACTIONS(2568), - [sym_primitive_type] = ACTIONS(3010), - [anon_sym_enum] = ACTIONS(2568), - [anon_sym_class] = ACTIONS(2568), - [anon_sym_struct] = ACTIONS(2568), - [anon_sym_union] = ACTIONS(2568), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2568), - [anon_sym_decltype] = ACTIONS(3013), - [anon_sym_virtual] = ACTIONS(2568), - [anon_sym_typename] = ACTIONS(2568), - [anon_sym_template] = ACTIONS(3016), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), - }, - [1107] = { - [sym__expression] = STATE(3507), - [sym_comma_expression] = STATE(6044), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2985), - [anon_sym_LPAREN2] = ACTIONS(984), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(3035), - [anon_sym_extern] = ACTIONS(2496), - [anon_sym___attribute__] = ACTIONS(2496), - [anon_sym_COLON_COLON] = ACTIONS(2990), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2498), - [anon_sym___declspec] = ACTIONS(2496), - [anon_sym_LBRACK] = ACTIONS(994), - [anon_sym_static] = ACTIONS(2496), - [anon_sym_register] = ACTIONS(2496), - [anon_sym_inline] = ACTIONS(2496), - [anon_sym_thread_local] = ACTIONS(2496), - [anon_sym_const] = ACTIONS(2496), - [anon_sym_volatile] = ACTIONS(2496), - [anon_sym_restrict] = ACTIONS(2496), - [anon_sym__Atomic] = ACTIONS(2496), - [anon_sym_mutable] = ACTIONS(2496), - [anon_sym_constexpr] = ACTIONS(2496), - [anon_sym_constinit] = ACTIONS(2496), - [anon_sym_consteval] = ACTIONS(2496), - [anon_sym_signed] = ACTIONS(2496), - [anon_sym_unsigned] = ACTIONS(2496), - [anon_sym_long] = ACTIONS(2496), - [anon_sym_short] = ACTIONS(2496), - [sym_primitive_type] = ACTIONS(2993), - [anon_sym_enum] = ACTIONS(2496), - [anon_sym_class] = ACTIONS(2496), - [anon_sym_struct] = ACTIONS(2496), - [anon_sym_union] = ACTIONS(2496), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2496), - [anon_sym_decltype] = ACTIONS(2996), - [anon_sym_virtual] = ACTIONS(2496), - [anon_sym_typename] = ACTIONS(2496), - [anon_sym_template] = ACTIONS(2999), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), - }, - [1108] = { - [sym__expression] = STATE(3583), - [sym_comma_expression] = STATE(6042), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2964), - [anon_sym_LPAREN2] = ACTIONS(984), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(3037), - [anon_sym_extern] = ACTIONS(2969), - [anon_sym___attribute__] = ACTIONS(2969), - [anon_sym_COLON_COLON] = ACTIONS(2971), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2974), - [anon_sym___declspec] = ACTIONS(2969), - [anon_sym_LBRACK] = ACTIONS(994), - [anon_sym_static] = ACTIONS(2969), - [anon_sym_register] = ACTIONS(2969), - [anon_sym_inline] = ACTIONS(2969), - [anon_sym_thread_local] = ACTIONS(2969), - [anon_sym_const] = ACTIONS(2969), - [anon_sym_volatile] = ACTIONS(2969), - [anon_sym_restrict] = ACTIONS(2969), - [anon_sym__Atomic] = ACTIONS(2969), - [anon_sym_mutable] = ACTIONS(2969), - [anon_sym_constexpr] = ACTIONS(2969), - [anon_sym_constinit] = ACTIONS(2969), - [anon_sym_consteval] = ACTIONS(2969), - [anon_sym_signed] = ACTIONS(2969), - [anon_sym_unsigned] = ACTIONS(2969), - [anon_sym_long] = ACTIONS(2969), - [anon_sym_short] = ACTIONS(2969), - [sym_primitive_type] = ACTIONS(2976), - [anon_sym_enum] = ACTIONS(2969), - [anon_sym_class] = ACTIONS(2969), - [anon_sym_struct] = ACTIONS(2969), - [anon_sym_union] = ACTIONS(2969), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2969), - [anon_sym_decltype] = ACTIONS(2979), - [anon_sym_virtual] = ACTIONS(2969), - [anon_sym_typename] = ACTIONS(2969), - [anon_sym_template] = ACTIONS(2982), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), - }, - [1109] = { - [sym__expression] = STATE(3567), - [sym_comma_expression] = STATE(6033), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2985), - [anon_sym_LPAREN2] = ACTIONS(984), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(3039), - [anon_sym_extern] = ACTIONS(2496), - [anon_sym___attribute__] = ACTIONS(2496), - [anon_sym_COLON_COLON] = ACTIONS(2990), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2498), - [anon_sym___declspec] = ACTIONS(2496), - [anon_sym_LBRACK] = ACTIONS(994), - [anon_sym_static] = ACTIONS(2496), - [anon_sym_register] = ACTIONS(2496), - [anon_sym_inline] = ACTIONS(2496), - [anon_sym_thread_local] = ACTIONS(2496), - [anon_sym_const] = ACTIONS(2496), - [anon_sym_volatile] = ACTIONS(2496), - [anon_sym_restrict] = ACTIONS(2496), - [anon_sym__Atomic] = ACTIONS(2496), - [anon_sym_mutable] = ACTIONS(2496), - [anon_sym_constexpr] = ACTIONS(2496), - [anon_sym_constinit] = ACTIONS(2496), - [anon_sym_consteval] = ACTIONS(2496), - [anon_sym_signed] = ACTIONS(2496), - [anon_sym_unsigned] = ACTIONS(2496), - [anon_sym_long] = ACTIONS(2496), - [anon_sym_short] = ACTIONS(2496), - [sym_primitive_type] = ACTIONS(2993), - [anon_sym_enum] = ACTIONS(2496), - [anon_sym_class] = ACTIONS(2496), - [anon_sym_struct] = ACTIONS(2496), - [anon_sym_union] = ACTIONS(2496), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2496), - [anon_sym_decltype] = ACTIONS(2996), - [anon_sym_virtual] = ACTIONS(2496), - [anon_sym_typename] = ACTIONS(2496), - [anon_sym_template] = ACTIONS(2999), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), - }, - [1110] = { - [sym__expression] = STATE(3582), - [sym_comma_expression] = STATE(6164), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(3002), - [anon_sym_LPAREN2] = ACTIONS(984), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(3041), - [anon_sym_extern] = ACTIONS(2568), - [anon_sym___attribute__] = ACTIONS(2568), - [anon_sym_COLON_COLON] = ACTIONS(3007), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2570), - [anon_sym___declspec] = ACTIONS(2568), - [anon_sym_LBRACK] = ACTIONS(994), - [anon_sym_static] = ACTIONS(2568), - [anon_sym_register] = ACTIONS(2568), - [anon_sym_inline] = ACTIONS(2568), - [anon_sym_thread_local] = ACTIONS(2568), - [anon_sym_const] = ACTIONS(2568), - [anon_sym_volatile] = ACTIONS(2568), - [anon_sym_restrict] = ACTIONS(2568), - [anon_sym__Atomic] = ACTIONS(2568), - [anon_sym_mutable] = ACTIONS(2568), - [anon_sym_constexpr] = ACTIONS(2568), - [anon_sym_constinit] = ACTIONS(2568), - [anon_sym_consteval] = ACTIONS(2568), - [anon_sym_signed] = ACTIONS(2568), - [anon_sym_unsigned] = ACTIONS(2568), - [anon_sym_long] = ACTIONS(2568), - [anon_sym_short] = ACTIONS(2568), - [sym_primitive_type] = ACTIONS(3010), - [anon_sym_enum] = ACTIONS(2568), - [anon_sym_class] = ACTIONS(2568), - [anon_sym_struct] = ACTIONS(2568), - [anon_sym_union] = ACTIONS(2568), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2568), - [anon_sym_decltype] = ACTIONS(3013), - [anon_sym_virtual] = ACTIONS(2568), - [anon_sym_typename] = ACTIONS(2568), - [anon_sym_template] = ACTIONS(3016), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), - }, - [1111] = { - [sym__expression] = STATE(3521), - [sym_comma_expression] = STATE(6116), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2985), - [anon_sym_LPAREN2] = ACTIONS(984), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(3043), - [anon_sym_extern] = ACTIONS(2496), - [anon_sym___attribute__] = ACTIONS(2496), - [anon_sym_COLON_COLON] = ACTIONS(2990), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2498), - [anon_sym___declspec] = ACTIONS(2496), - [anon_sym_LBRACK] = ACTIONS(994), - [anon_sym_static] = ACTIONS(2496), - [anon_sym_register] = ACTIONS(2496), - [anon_sym_inline] = ACTIONS(2496), - [anon_sym_thread_local] = ACTIONS(2496), - [anon_sym_const] = ACTIONS(2496), - [anon_sym_volatile] = ACTIONS(2496), - [anon_sym_restrict] = ACTIONS(2496), - [anon_sym__Atomic] = ACTIONS(2496), - [anon_sym_mutable] = ACTIONS(2496), - [anon_sym_constexpr] = ACTIONS(2496), - [anon_sym_constinit] = ACTIONS(2496), - [anon_sym_consteval] = ACTIONS(2496), - [anon_sym_signed] = ACTIONS(2496), - [anon_sym_unsigned] = ACTIONS(2496), - [anon_sym_long] = ACTIONS(2496), - [anon_sym_short] = ACTIONS(2496), - [sym_primitive_type] = ACTIONS(2993), - [anon_sym_enum] = ACTIONS(2496), - [anon_sym_class] = ACTIONS(2496), - [anon_sym_struct] = ACTIONS(2496), - [anon_sym_union] = ACTIONS(2496), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2496), - [anon_sym_decltype] = ACTIONS(2996), - [anon_sym_virtual] = ACTIONS(2496), - [anon_sym_typename] = ACTIONS(2496), - [anon_sym_template] = ACTIONS(2999), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), - }, - [1112] = { - [sym__expression] = STATE(3543), - [sym_comma_expression] = STATE(6110), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2964), - [anon_sym_LPAREN2] = ACTIONS(984), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(3045), - [anon_sym_extern] = ACTIONS(2969), - [anon_sym___attribute__] = ACTIONS(2969), - [anon_sym_COLON_COLON] = ACTIONS(2971), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2974), - [anon_sym___declspec] = ACTIONS(2969), - [anon_sym_LBRACK] = ACTIONS(994), - [anon_sym_static] = ACTIONS(2969), - [anon_sym_register] = ACTIONS(2969), - [anon_sym_inline] = ACTIONS(2969), - [anon_sym_thread_local] = ACTIONS(2969), - [anon_sym_const] = ACTIONS(2969), - [anon_sym_volatile] = ACTIONS(2969), - [anon_sym_restrict] = ACTIONS(2969), - [anon_sym__Atomic] = ACTIONS(2969), - [anon_sym_mutable] = ACTIONS(2969), - [anon_sym_constexpr] = ACTIONS(2969), - [anon_sym_constinit] = ACTIONS(2969), - [anon_sym_consteval] = ACTIONS(2969), - [anon_sym_signed] = ACTIONS(2969), - [anon_sym_unsigned] = ACTIONS(2969), - [anon_sym_long] = ACTIONS(2969), - [anon_sym_short] = ACTIONS(2969), - [sym_primitive_type] = ACTIONS(2976), - [anon_sym_enum] = ACTIONS(2969), - [anon_sym_class] = ACTIONS(2969), - [anon_sym_struct] = ACTIONS(2969), - [anon_sym_union] = ACTIONS(2969), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2969), - [anon_sym_decltype] = ACTIONS(2979), - [anon_sym_virtual] = ACTIONS(2969), - [anon_sym_typename] = ACTIONS(2969), - [anon_sym_template] = ACTIONS(2982), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), - }, - [1113] = { - [sym__expression] = STATE(3383), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2984), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2984), - [sym_call_expression] = STATE(2984), - [sym_field_expression] = STATE(2984), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2984), - [sym_initializer_list] = STATE(3384), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2984), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(3047), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1525), - [anon_sym_COMMA] = ACTIONS(1525), - [anon_sym_LPAREN2] = ACTIONS(3049), - [anon_sym_BANG] = ACTIONS(3051), - [anon_sym_TILDE] = ACTIONS(3053), - [anon_sym_DASH] = ACTIONS(3051), - [anon_sym_PLUS] = ACTIONS(3051), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_SLASH] = ACTIONS(1533), - [anon_sym_PERCENT] = ACTIONS(1525), - [anon_sym_PIPE_PIPE] = ACTIONS(1525), - [anon_sym_AMP_AMP] = ACTIONS(1525), - [anon_sym_PIPE] = ACTIONS(1533), - [anon_sym_CARET] = ACTIONS(1525), - [anon_sym_AMP] = ACTIONS(990), - [anon_sym_EQ_EQ] = ACTIONS(1525), - [anon_sym_BANG_EQ] = ACTIONS(1525), - [anon_sym_GT] = ACTIONS(1533), - [anon_sym_GT_EQ] = ACTIONS(1525), - [anon_sym_LT_EQ] = ACTIONS(1533), - [anon_sym_LT] = ACTIONS(1533), - [anon_sym_LT_LT] = ACTIONS(1525), - [anon_sym_GT_GT] = ACTIONS(1525), - [anon_sym_COLON_COLON] = ACTIONS(3055), - [anon_sym_LBRACE] = ACTIONS(1489), - [anon_sym_LBRACK] = ACTIONS(1539), - [anon_sym_RBRACK] = ACTIONS(1525), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_QMARK] = ACTIONS(1525), - [anon_sym_not] = ACTIONS(3051), - [anon_sym_compl] = ACTIONS(3051), - [anon_sym_LT_EQ_GT] = ACTIONS(1525), - [anon_sym_or] = ACTIONS(1533), - [anon_sym_and] = ACTIONS(1533), - [anon_sym_bitor] = ACTIONS(1533), - [anon_sym_xor] = ACTIONS(1533), - [anon_sym_bitand] = ACTIONS(1533), - [anon_sym_not_eq] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(3057), - [anon_sym_PLUS_PLUS] = ACTIONS(3057), - [anon_sym_sizeof] = ACTIONS(3059), - [anon_sym_DOT] = ACTIONS(1533), - [anon_sym_DASH_GT] = ACTIONS(1525), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(3061), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(3063), - [anon_sym_new] = ACTIONS(3065), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), - }, - [1114] = { - [sym__expression] = STATE(3539), - [sym_comma_expression] = STATE(6108), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(3002), - [anon_sym_LPAREN2] = ACTIONS(984), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(3067), - [anon_sym_extern] = ACTIONS(2568), - [anon_sym___attribute__] = ACTIONS(2568), - [anon_sym_COLON_COLON] = ACTIONS(3007), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2570), - [anon_sym___declspec] = ACTIONS(2568), - [anon_sym_LBRACK] = ACTIONS(994), - [anon_sym_static] = ACTIONS(2568), - [anon_sym_register] = ACTIONS(2568), - [anon_sym_inline] = ACTIONS(2568), - [anon_sym_thread_local] = ACTIONS(2568), - [anon_sym_const] = ACTIONS(2568), - [anon_sym_volatile] = ACTIONS(2568), - [anon_sym_restrict] = ACTIONS(2568), - [anon_sym__Atomic] = ACTIONS(2568), - [anon_sym_mutable] = ACTIONS(2568), - [anon_sym_constexpr] = ACTIONS(2568), - [anon_sym_constinit] = ACTIONS(2568), - [anon_sym_consteval] = ACTIONS(2568), - [anon_sym_signed] = ACTIONS(2568), - [anon_sym_unsigned] = ACTIONS(2568), - [anon_sym_long] = ACTIONS(2568), - [anon_sym_short] = ACTIONS(2568), - [sym_primitive_type] = ACTIONS(3010), - [anon_sym_enum] = ACTIONS(2568), - [anon_sym_class] = ACTIONS(2568), - [anon_sym_struct] = ACTIONS(2568), - [anon_sym_union] = ACTIONS(2568), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2568), - [anon_sym_decltype] = ACTIONS(3013), - [anon_sym_virtual] = ACTIONS(2568), - [anon_sym_typename] = ACTIONS(2568), - [anon_sym_template] = ACTIONS(3016), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), - }, - [1115] = { - [sym__expression] = STATE(3510), - [sym_comma_expression] = STATE(6034), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(3002), - [anon_sym_LPAREN2] = ACTIONS(984), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(3069), - [anon_sym_extern] = ACTIONS(2568), - [anon_sym___attribute__] = ACTIONS(2568), - [anon_sym_COLON_COLON] = ACTIONS(3007), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2570), - [anon_sym___declspec] = ACTIONS(2568), - [anon_sym_LBRACK] = ACTIONS(994), - [anon_sym_static] = ACTIONS(2568), - [anon_sym_register] = ACTIONS(2568), - [anon_sym_inline] = ACTIONS(2568), - [anon_sym_thread_local] = ACTIONS(2568), - [anon_sym_const] = ACTIONS(2568), - [anon_sym_volatile] = ACTIONS(2568), - [anon_sym_restrict] = ACTIONS(2568), - [anon_sym__Atomic] = ACTIONS(2568), - [anon_sym_mutable] = ACTIONS(2568), - [anon_sym_constexpr] = ACTIONS(2568), - [anon_sym_constinit] = ACTIONS(2568), - [anon_sym_consteval] = ACTIONS(2568), - [anon_sym_signed] = ACTIONS(2568), - [anon_sym_unsigned] = ACTIONS(2568), - [anon_sym_long] = ACTIONS(2568), - [anon_sym_short] = ACTIONS(2568), - [sym_primitive_type] = ACTIONS(3010), - [anon_sym_enum] = ACTIONS(2568), - [anon_sym_class] = ACTIONS(2568), - [anon_sym_struct] = ACTIONS(2568), - [anon_sym_union] = ACTIONS(2568), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2568), - [anon_sym_decltype] = ACTIONS(3013), - [anon_sym_virtual] = ACTIONS(2568), - [anon_sym_typename] = ACTIONS(2568), - [anon_sym_template] = ACTIONS(3016), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), - }, - [1116] = { - [sym__expression] = STATE(3631), - [sym_comma_expression] = STATE(6036), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2964), - [anon_sym_LPAREN2] = ACTIONS(984), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(3071), - [anon_sym_extern] = ACTIONS(2969), - [anon_sym___attribute__] = ACTIONS(2969), - [anon_sym_COLON_COLON] = ACTIONS(2971), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2974), - [anon_sym___declspec] = ACTIONS(2969), - [anon_sym_LBRACK] = ACTIONS(994), - [anon_sym_static] = ACTIONS(2969), - [anon_sym_register] = ACTIONS(2969), - [anon_sym_inline] = ACTIONS(2969), - [anon_sym_thread_local] = ACTIONS(2969), - [anon_sym_const] = ACTIONS(2969), - [anon_sym_volatile] = ACTIONS(2969), - [anon_sym_restrict] = ACTIONS(2969), - [anon_sym__Atomic] = ACTIONS(2969), - [anon_sym_mutable] = ACTIONS(2969), - [anon_sym_constexpr] = ACTIONS(2969), - [anon_sym_constinit] = ACTIONS(2969), - [anon_sym_consteval] = ACTIONS(2969), - [anon_sym_signed] = ACTIONS(2969), - [anon_sym_unsigned] = ACTIONS(2969), - [anon_sym_long] = ACTIONS(2969), - [anon_sym_short] = ACTIONS(2969), - [sym_primitive_type] = ACTIONS(2976), - [anon_sym_enum] = ACTIONS(2969), - [anon_sym_class] = ACTIONS(2969), - [anon_sym_struct] = ACTIONS(2969), - [anon_sym_union] = ACTIONS(2969), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2969), - [anon_sym_decltype] = ACTIONS(2979), - [anon_sym_virtual] = ACTIONS(2969), - [anon_sym_typename] = ACTIONS(2969), - [anon_sym_template] = ACTIONS(2982), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), - }, - [1117] = { - [sym__expression] = STATE(3690), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(3036), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(3036), - [sym_call_expression] = STATE(3036), - [sym_field_expression] = STATE(3036), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(3036), - [sym_initializer_list] = STATE(3384), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(3036), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(3073), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1525), - [anon_sym_LPAREN2] = ACTIONS(3075), - [anon_sym_BANG] = ACTIONS(3077), - [anon_sym_TILDE] = ACTIONS(3079), - [anon_sym_DASH] = ACTIONS(3077), - [anon_sym_PLUS] = ACTIONS(3077), - [anon_sym_STAR] = ACTIONS(3081), - [anon_sym_SLASH] = ACTIONS(1533), - [anon_sym_PERCENT] = ACTIONS(1525), - [anon_sym_PIPE_PIPE] = ACTIONS(1525), - [anon_sym_AMP_AMP] = ACTIONS(1525), - [anon_sym_PIPE] = ACTIONS(1533), - [anon_sym_CARET] = ACTIONS(1525), - [anon_sym_AMP] = ACTIONS(1653), - [anon_sym_EQ_EQ] = ACTIONS(1525), - [anon_sym_BANG_EQ] = ACTIONS(1525), - [anon_sym_GT] = ACTIONS(1533), - [anon_sym_GT_EQ] = ACTIONS(1525), - [anon_sym_LT_EQ] = ACTIONS(1533), - [anon_sym_LT] = ACTIONS(1533), - [anon_sym_LT_LT] = ACTIONS(1525), - [anon_sym_GT_GT] = ACTIONS(1525), - [anon_sym_COLON_COLON] = ACTIONS(3083), - [anon_sym_LBRACE] = ACTIONS(1489), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_COLON] = ACTIONS(1533), - [anon_sym_QMARK] = ACTIONS(1525), - [anon_sym_not] = ACTIONS(3077), - [anon_sym_compl] = ACTIONS(3077), - [anon_sym_LT_EQ_GT] = ACTIONS(1525), - [anon_sym_or] = ACTIONS(1533), - [anon_sym_and] = ACTIONS(1533), - [anon_sym_bitor] = ACTIONS(1533), - [anon_sym_xor] = ACTIONS(1533), - [anon_sym_bitand] = ACTIONS(1533), - [anon_sym_not_eq] = ACTIONS(1533), - [anon_sym_DASH_DASH] = ACTIONS(3085), - [anon_sym_PLUS_PLUS] = ACTIONS(3085), - [anon_sym_sizeof] = ACTIONS(3087), - [anon_sym_DOT] = ACTIONS(1533), - [anon_sym_DASH_GT] = ACTIONS(1525), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(3089), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(3091), - [anon_sym_new] = ACTIONS(3065), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), - }, - [1118] = { - [sym_function_definition] = STATE(1005), - [sym_declaration] = STATE(1005), - [sym__declaration_modifiers] = STATE(3225), - [sym__declaration_specifiers] = STATE(3962), - [sym_attribute_specifier] = STATE(3225), - [sym_attribute_declaration] = STATE(3225), - [sym_ms_declspec_modifier] = STATE(3225), - [sym_ms_based_modifier] = STATE(6104), - [sym_ms_call_modifier] = STATE(2065), - [sym__declarator] = STATE(5113), - [sym_parenthesized_declarator] = STATE(4918), - [sym_attributed_declarator] = STATE(4918), - [sym_pointer_declarator] = STATE(4918), - [sym_function_declarator] = STATE(4758), - [sym_array_declarator] = STATE(4918), - [sym_storage_class_specifier] = STATE(3225), - [sym_type_qualifier] = STATE(3225), - [sym__type_specifier] = STATE(3322), - [sym_sized_type_specifier] = STATE(3232), - [sym_enum_specifier] = STATE(3232), - [sym_struct_specifier] = STATE(3232), - [sym_union_specifier] = STATE(3232), - [sym__empty_declaration] = STATE(1005), - [sym_placeholder_type_specifier] = STATE(3232), - [sym_decltype_auto] = STATE(3279), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3232), - [sym_virtual] = STATE(3225), - [sym_explicit_function_specifier] = STATE(1935), - [sym_dependent_type] = STATE(3232), - [sym_template_declaration] = STATE(1005), - [sym_operator_cast] = STATE(5134), - [sym__constructor_specifiers] = STATE(1935), - [sym_operator_cast_definition] = STATE(1005), - [sym_operator_cast_declaration] = STATE(1005), - [sym_constructor_or_destructor_definition] = STATE(1005), - [sym_constructor_or_destructor_declaration] = STATE(1005), - [sym_friend_declaration] = STATE(1005), - [sym_reference_declarator] = STATE(4918), - [sym_structured_binding_declarator] = STATE(4918), - [sym_template_type] = STATE(3198), - [sym_template_function] = STATE(4918), - [sym_alias_declaration] = STATE(1005), - [sym_concept_definition] = STATE(1005), - [sym_requires_clause] = STATE(1125), - [sym_destructor_name] = STATE(4918), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4458), - [sym_qualified_identifier] = STATE(4918), - [sym_qualified_type_identifier] = STATE(3259), - [sym_qualified_operator_cast_identifier] = STATE(5134), - [sym_operator_name] = STATE(4918), - [aux_sym__declaration_specifiers_repeat1] = STATE(2179), - [aux_sym_sized_type_specifier_repeat1] = STATE(3171), - [aux_sym_operator_cast_definition_repeat1] = STATE(1935), - [sym_identifier] = ACTIONS(3093), - [anon_sym_LPAREN2] = ACTIONS(1681), - [anon_sym_TILDE] = ACTIONS(1683), - [anon_sym_STAR] = ACTIONS(1685), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1687), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(3095), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1413), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACK] = ACTIONS(1693), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(61), - [anon_sym_unsigned] = ACTIONS(61), - [anon_sym_long] = ACTIONS(61), - [anon_sym_short] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2932), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(107), - [anon_sym_decltype] = ACTIONS(109), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_explicit] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(115), - [anon_sym_template] = ACTIONS(3097), - [anon_sym_operator] = ACTIONS(119), - [anon_sym_friend] = ACTIONS(3099), - [anon_sym_using] = ACTIONS(3101), - [anon_sym_concept] = ACTIONS(211), - [anon_sym_requires] = ACTIONS(3103), - }, - [1119] = { - [sym_function_definition] = STATE(918), - [sym_declaration] = STATE(918), - [sym__declaration_modifiers] = STATE(3225), - [sym__declaration_specifiers] = STATE(3946), - [sym_attribute_specifier] = STATE(3225), - [sym_attribute_declaration] = STATE(3225), - [sym_ms_declspec_modifier] = STATE(3225), - [sym_ms_based_modifier] = STATE(6104), - [sym_ms_call_modifier] = STATE(2076), - [sym__declarator] = STATE(5113), - [sym_parenthesized_declarator] = STATE(4918), - [sym_attributed_declarator] = STATE(4918), - [sym_pointer_declarator] = STATE(4918), - [sym_function_declarator] = STATE(4782), - [sym_array_declarator] = STATE(4918), - [sym_storage_class_specifier] = STATE(3225), - [sym_type_qualifier] = STATE(3225), - [sym__type_specifier] = STATE(3325), - [sym_sized_type_specifier] = STATE(3232), - [sym_enum_specifier] = STATE(3232), - [sym_struct_specifier] = STATE(3232), - [sym_union_specifier] = STATE(3232), - [sym__empty_declaration] = STATE(918), - [sym_placeholder_type_specifier] = STATE(3232), - [sym_decltype_auto] = STATE(3279), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3232), - [sym_virtual] = STATE(3225), - [sym_explicit_function_specifier] = STATE(1953), - [sym_dependent_type] = STATE(3232), - [sym_template_declaration] = STATE(918), - [sym_operator_cast] = STATE(5130), - [sym__constructor_specifiers] = STATE(1953), - [sym_operator_cast_definition] = STATE(918), - [sym_operator_cast_declaration] = STATE(918), - [sym_constructor_or_destructor_definition] = STATE(918), - [sym_constructor_or_destructor_declaration] = STATE(918), - [sym_friend_declaration] = STATE(918), - [sym_reference_declarator] = STATE(4918), - [sym_structured_binding_declarator] = STATE(4918), - [sym_template_type] = STATE(3198), - [sym_template_function] = STATE(4918), - [sym_alias_declaration] = STATE(918), - [sym_concept_definition] = STATE(918), - [sym_requires_clause] = STATE(1127), - [sym_destructor_name] = STATE(4918), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4458), - [sym_qualified_identifier] = STATE(4918), - [sym_qualified_type_identifier] = STATE(3259), - [sym_qualified_operator_cast_identifier] = STATE(5130), - [sym_operator_name] = STATE(4918), - [aux_sym__declaration_specifiers_repeat1] = STATE(2179), - [aux_sym_sized_type_specifier_repeat1] = STATE(3171), - [aux_sym_operator_cast_definition_repeat1] = STATE(1953), - [sym_identifier] = ACTIONS(3093), - [anon_sym_LPAREN2] = ACTIONS(1681), - [anon_sym_TILDE] = ACTIONS(1683), - [anon_sym_STAR] = ACTIONS(1685), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1687), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(3095), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1413), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACK] = ACTIONS(1693), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(61), - [anon_sym_unsigned] = ACTIONS(61), - [anon_sym_long] = ACTIONS(61), - [anon_sym_short] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2932), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(107), - [anon_sym_decltype] = ACTIONS(109), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_explicit] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(115), - [anon_sym_template] = ACTIONS(3105), - [anon_sym_operator] = ACTIONS(119), - [anon_sym_friend] = ACTIONS(3107), - [anon_sym_using] = ACTIONS(3109), - [anon_sym_concept] = ACTIONS(133), - [anon_sym_requires] = ACTIONS(3103), - }, - [1120] = { - [sym_function_definition] = STATE(2106), - [sym_declaration] = STATE(2106), - [sym__declaration_modifiers] = STATE(3225), - [sym__declaration_specifiers] = STATE(3993), - [sym_attribute_specifier] = STATE(3225), - [sym_attribute_declaration] = STATE(3225), - [sym_ms_declspec_modifier] = STATE(3225), - [sym_ms_based_modifier] = STATE(6104), - [sym_ms_call_modifier] = STATE(2040), - [sym__declarator] = STATE(5113), - [sym_parenthesized_declarator] = STATE(4918), - [sym_attributed_declarator] = STATE(4918), - [sym_pointer_declarator] = STATE(4918), - [sym_function_declarator] = STATE(4752), - [sym_array_declarator] = STATE(4918), - [sym_storage_class_specifier] = STATE(3225), - [sym_type_qualifier] = STATE(3225), - [sym__type_specifier] = STATE(3334), - [sym_sized_type_specifier] = STATE(3232), - [sym_enum_specifier] = STATE(3232), - [sym_struct_specifier] = STATE(3232), - [sym_union_specifier] = STATE(3232), - [sym__empty_declaration] = STATE(2106), - [sym_placeholder_type_specifier] = STATE(3232), - [sym_decltype_auto] = STATE(3279), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3232), - [sym_virtual] = STATE(3225), - [sym_explicit_function_specifier] = STATE(1945), - [sym_dependent_type] = STATE(3232), - [sym_template_declaration] = STATE(2106), - [sym_operator_cast] = STATE(5126), - [sym__constructor_specifiers] = STATE(1945), - [sym_operator_cast_definition] = STATE(2106), - [sym_operator_cast_declaration] = STATE(2106), - [sym_constructor_or_destructor_definition] = STATE(2106), - [sym_constructor_or_destructor_declaration] = STATE(2106), - [sym_friend_declaration] = STATE(2106), - [sym_reference_declarator] = STATE(4918), - [sym_structured_binding_declarator] = STATE(4918), - [sym_template_type] = STATE(3198), - [sym_template_function] = STATE(4918), - [sym_alias_declaration] = STATE(2106), - [sym_concept_definition] = STATE(2106), - [sym_requires_clause] = STATE(1131), - [sym_destructor_name] = STATE(4918), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4458), - [sym_qualified_identifier] = STATE(4918), - [sym_qualified_type_identifier] = STATE(3259), - [sym_qualified_operator_cast_identifier] = STATE(5126), - [sym_operator_name] = STATE(4918), - [aux_sym__declaration_specifiers_repeat1] = STATE(2179), - [aux_sym_sized_type_specifier_repeat1] = STATE(3171), - [aux_sym_operator_cast_definition_repeat1] = STATE(1945), - [sym_identifier] = ACTIONS(3093), - [anon_sym_LPAREN2] = ACTIONS(1681), - [anon_sym_TILDE] = ACTIONS(1683), - [anon_sym_STAR] = ACTIONS(1685), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1687), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(3095), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1413), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACK] = ACTIONS(1693), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(61), - [anon_sym_unsigned] = ACTIONS(61), - [anon_sym_long] = ACTIONS(61), - [anon_sym_short] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2932), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(107), - [anon_sym_decltype] = ACTIONS(109), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_explicit] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(115), - [anon_sym_template] = ACTIONS(1713), - [anon_sym_operator] = ACTIONS(119), - [anon_sym_friend] = ACTIONS(1715), - [anon_sym_using] = ACTIONS(3111), - [anon_sym_concept] = ACTIONS(3113), - [anon_sym_requires] = ACTIONS(3103), - }, - [1121] = { - [sym_function_definition] = STATE(2243), - [sym_declaration] = STATE(2243), - [sym__declaration_modifiers] = STATE(3225), - [sym__declaration_specifiers] = STATE(3964), - [sym_attribute_specifier] = STATE(3225), - [sym_attribute_declaration] = STATE(3225), - [sym_ms_declspec_modifier] = STATE(3225), - [sym_ms_based_modifier] = STATE(6104), - [sym_ms_call_modifier] = STATE(2029), - [sym__declarator] = STATE(5113), - [sym_parenthesized_declarator] = STATE(4918), - [sym_attributed_declarator] = STATE(4918), - [sym_pointer_declarator] = STATE(4918), - [sym_function_declarator] = STATE(4799), - [sym_array_declarator] = STATE(4918), - [sym_storage_class_specifier] = STATE(3225), - [sym_type_qualifier] = STATE(3225), - [sym__type_specifier] = STATE(3298), - [sym_sized_type_specifier] = STATE(3232), - [sym_enum_specifier] = STATE(3232), - [sym_struct_specifier] = STATE(3232), - [sym_union_specifier] = STATE(3232), - [sym__empty_declaration] = STATE(2243), - [sym_placeholder_type_specifier] = STATE(3232), - [sym_decltype_auto] = STATE(3279), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3232), - [sym_virtual] = STATE(3225), - [sym_explicit_function_specifier] = STATE(1961), - [sym_dependent_type] = STATE(3232), - [sym_template_declaration] = STATE(2243), - [sym_operator_cast] = STATE(5140), - [sym__constructor_specifiers] = STATE(1961), - [sym_operator_cast_definition] = STATE(2243), - [sym_operator_cast_declaration] = STATE(2243), - [sym_constructor_or_destructor_definition] = STATE(2243), - [sym_constructor_or_destructor_declaration] = STATE(2243), - [sym_friend_declaration] = STATE(2243), - [sym_reference_declarator] = STATE(4918), - [sym_structured_binding_declarator] = STATE(4918), - [sym_template_type] = STATE(3198), - [sym_template_function] = STATE(4918), - [sym_alias_declaration] = STATE(2243), - [sym_concept_definition] = STATE(2243), - [sym_requires_clause] = STATE(1129), - [sym_destructor_name] = STATE(4918), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4458), - [sym_qualified_identifier] = STATE(4918), - [sym_qualified_type_identifier] = STATE(3259), - [sym_qualified_operator_cast_identifier] = STATE(5140), - [sym_operator_name] = STATE(4918), - [aux_sym__declaration_specifiers_repeat1] = STATE(2179), - [aux_sym_sized_type_specifier_repeat1] = STATE(3171), - [aux_sym_operator_cast_definition_repeat1] = STATE(1961), - [sym_identifier] = ACTIONS(3093), - [anon_sym_LPAREN2] = ACTIONS(1681), - [anon_sym_TILDE] = ACTIONS(1683), - [anon_sym_STAR] = ACTIONS(1685), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1687), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(3095), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1413), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACK] = ACTIONS(1693), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(61), - [anon_sym_unsigned] = ACTIONS(61), - [anon_sym_long] = ACTIONS(61), - [anon_sym_short] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2932), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(107), - [anon_sym_decltype] = ACTIONS(109), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_explicit] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(115), - [anon_sym_template] = ACTIONS(2246), - [anon_sym_operator] = ACTIONS(119), - [anon_sym_friend] = ACTIONS(2248), - [anon_sym_using] = ACTIONS(3115), - [anon_sym_concept] = ACTIONS(3117), - [anon_sym_requires] = ACTIONS(3103), - }, - [1122] = { - [sym_function_definition] = STATE(1080), - [sym_declaration] = STATE(1080), - [sym__declaration_modifiers] = STATE(3225), - [sym__declaration_specifiers] = STATE(3990), - [sym_attribute_specifier] = STATE(3225), - [sym_attribute_declaration] = STATE(3225), - [sym_ms_declspec_modifier] = STATE(3225), - [sym_ms_based_modifier] = STATE(6104), - [sym_ms_call_modifier] = STATE(2018), - [sym__declarator] = STATE(5113), - [sym_parenthesized_declarator] = STATE(4918), - [sym_attributed_declarator] = STATE(4918), - [sym_pointer_declarator] = STATE(4918), - [sym_function_declarator] = STATE(4757), - [sym_array_declarator] = STATE(4918), - [sym_storage_class_specifier] = STATE(3225), - [sym_type_qualifier] = STATE(3225), - [sym__type_specifier] = STATE(3317), - [sym_sized_type_specifier] = STATE(3232), - [sym_enum_specifier] = STATE(3232), - [sym_struct_specifier] = STATE(3232), - [sym_union_specifier] = STATE(3232), - [sym__empty_declaration] = STATE(1080), - [sym_placeholder_type_specifier] = STATE(3232), - [sym_decltype_auto] = STATE(3279), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3232), - [sym_virtual] = STATE(3225), - [sym_explicit_function_specifier] = STATE(1959), - [sym_dependent_type] = STATE(3232), - [sym_template_declaration] = STATE(1080), - [sym_operator_cast] = STATE(5144), - [sym__constructor_specifiers] = STATE(1959), - [sym_operator_cast_definition] = STATE(1080), - [sym_operator_cast_declaration] = STATE(1080), - [sym_constructor_or_destructor_definition] = STATE(1080), - [sym_constructor_or_destructor_declaration] = STATE(1080), - [sym_friend_declaration] = STATE(1080), - [sym_reference_declarator] = STATE(4918), - [sym_structured_binding_declarator] = STATE(4918), - [sym_template_type] = STATE(3198), - [sym_template_function] = STATE(4918), - [sym_alias_declaration] = STATE(1080), - [sym_concept_definition] = STATE(1080), - [sym_requires_clause] = STATE(1126), - [sym_destructor_name] = STATE(4918), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4458), - [sym_qualified_identifier] = STATE(4918), - [sym_qualified_type_identifier] = STATE(3259), - [sym_qualified_operator_cast_identifier] = STATE(5144), - [sym_operator_name] = STATE(4918), - [aux_sym__declaration_specifiers_repeat1] = STATE(2179), - [aux_sym_sized_type_specifier_repeat1] = STATE(3171), - [aux_sym_operator_cast_definition_repeat1] = STATE(1959), - [sym_identifier] = ACTIONS(3093), - [anon_sym_LPAREN2] = ACTIONS(1681), - [anon_sym_TILDE] = ACTIONS(1683), - [anon_sym_STAR] = ACTIONS(1685), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1687), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(3095), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1413), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACK] = ACTIONS(1693), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(61), - [anon_sym_unsigned] = ACTIONS(61), - [anon_sym_long] = ACTIONS(61), - [anon_sym_short] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2932), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(107), - [anon_sym_decltype] = ACTIONS(109), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_explicit] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(115), - [anon_sym_template] = ACTIONS(3119), - [anon_sym_operator] = ACTIONS(119), - [anon_sym_friend] = ACTIONS(3121), - [anon_sym_using] = ACTIONS(3123), - [anon_sym_concept] = ACTIONS(704), - [anon_sym_requires] = ACTIONS(3103), - }, - [1123] = { - [sym_function_definition] = STATE(2364), - [sym_declaration] = STATE(2364), - [sym__declaration_modifiers] = STATE(3225), - [sym__declaration_specifiers] = STATE(3977), - [sym_attribute_specifier] = STATE(3225), - [sym_attribute_declaration] = STATE(3225), - [sym_ms_declspec_modifier] = STATE(3225), - [sym_ms_based_modifier] = STATE(6104), - [sym_ms_call_modifier] = STATE(2058), - [sym__declarator] = STATE(5113), - [sym_parenthesized_declarator] = STATE(4918), - [sym_attributed_declarator] = STATE(4918), - [sym_pointer_declarator] = STATE(4918), - [sym_function_declarator] = STATE(4792), - [sym_array_declarator] = STATE(4918), - [sym_storage_class_specifier] = STATE(3225), - [sym_type_qualifier] = STATE(3225), - [sym__type_specifier] = STATE(3292), - [sym_sized_type_specifier] = STATE(3232), - [sym_enum_specifier] = STATE(3232), - [sym_struct_specifier] = STATE(3232), - [sym_union_specifier] = STATE(3232), - [sym__empty_declaration] = STATE(2364), - [sym_placeholder_type_specifier] = STATE(3232), - [sym_decltype_auto] = STATE(3279), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3232), - [sym_virtual] = STATE(3225), - [sym_explicit_function_specifier] = STATE(1947), - [sym_dependent_type] = STATE(3232), - [sym_template_declaration] = STATE(2364), - [sym_operator_cast] = STATE(5120), - [sym__constructor_specifiers] = STATE(1947), - [sym_operator_cast_definition] = STATE(2364), - [sym_operator_cast_declaration] = STATE(2364), - [sym_constructor_or_destructor_definition] = STATE(2364), - [sym_constructor_or_destructor_declaration] = STATE(2364), - [sym_friend_declaration] = STATE(2364), - [sym_reference_declarator] = STATE(4918), - [sym_structured_binding_declarator] = STATE(4918), - [sym_template_type] = STATE(3198), - [sym_template_function] = STATE(4918), - [sym_alias_declaration] = STATE(2364), - [sym_concept_definition] = STATE(2364), - [sym_requires_clause] = STATE(1128), - [sym_destructor_name] = STATE(4918), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4458), - [sym_qualified_identifier] = STATE(4918), - [sym_qualified_type_identifier] = STATE(3259), - [sym_qualified_operator_cast_identifier] = STATE(5120), - [sym_operator_name] = STATE(4918), - [aux_sym__declaration_specifiers_repeat1] = STATE(2179), - [aux_sym_sized_type_specifier_repeat1] = STATE(3171), - [aux_sym_operator_cast_definition_repeat1] = STATE(1947), - [sym_identifier] = ACTIONS(3093), - [anon_sym_LPAREN2] = ACTIONS(1681), - [anon_sym_TILDE] = ACTIONS(1683), - [anon_sym_STAR] = ACTIONS(1685), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1687), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(3095), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1413), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACK] = ACTIONS(1693), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(61), - [anon_sym_unsigned] = ACTIONS(61), - [anon_sym_long] = ACTIONS(61), - [anon_sym_short] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2932), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(107), - [anon_sym_decltype] = ACTIONS(109), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_explicit] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(115), - [anon_sym_template] = ACTIONS(2266), - [anon_sym_operator] = ACTIONS(119), - [anon_sym_friend] = ACTIONS(2268), - [anon_sym_using] = ACTIONS(3125), - [anon_sym_concept] = ACTIONS(3127), - [anon_sym_requires] = ACTIONS(3103), - }, - [1124] = { - [sym_function_definition] = STATE(555), - [sym_declaration] = STATE(555), - [sym__declaration_modifiers] = STATE(3225), - [sym__declaration_specifiers] = STATE(3935), - [sym_attribute_specifier] = STATE(3225), - [sym_attribute_declaration] = STATE(3225), - [sym_ms_declspec_modifier] = STATE(3225), - [sym_ms_based_modifier] = STATE(6104), - [sym_ms_call_modifier] = STATE(2012), - [sym__declarator] = STATE(5113), - [sym_parenthesized_declarator] = STATE(4918), - [sym_attributed_declarator] = STATE(4918), - [sym_pointer_declarator] = STATE(4918), - [sym_function_declarator] = STATE(4818), - [sym_array_declarator] = STATE(4918), - [sym_storage_class_specifier] = STATE(3225), - [sym_type_qualifier] = STATE(3225), - [sym__type_specifier] = STATE(3297), - [sym_sized_type_specifier] = STATE(3232), - [sym_enum_specifier] = STATE(3232), - [sym_struct_specifier] = STATE(3232), - [sym_union_specifier] = STATE(3232), - [sym__empty_declaration] = STATE(555), - [sym_placeholder_type_specifier] = STATE(3232), - [sym_decltype_auto] = STATE(3279), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3232), - [sym_virtual] = STATE(3225), - [sym_explicit_function_specifier] = STATE(1932), - [sym_dependent_type] = STATE(3232), - [sym_template_declaration] = STATE(555), - [sym_operator_cast] = STATE(5146), - [sym__constructor_specifiers] = STATE(1932), - [sym_operator_cast_definition] = STATE(555), - [sym_operator_cast_declaration] = STATE(555), - [sym_constructor_or_destructor_definition] = STATE(555), - [sym_constructor_or_destructor_declaration] = STATE(555), - [sym_friend_declaration] = STATE(555), - [sym_reference_declarator] = STATE(4918), - [sym_structured_binding_declarator] = STATE(4918), - [sym_template_type] = STATE(3198), - [sym_template_function] = STATE(4918), - [sym_alias_declaration] = STATE(555), - [sym_concept_definition] = STATE(555), - [sym_requires_clause] = STATE(1130), - [sym_destructor_name] = STATE(4918), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4458), - [sym_qualified_identifier] = STATE(4918), - [sym_qualified_type_identifier] = STATE(3259), - [sym_qualified_operator_cast_identifier] = STATE(5146), - [sym_operator_name] = STATE(4918), - [aux_sym__declaration_specifiers_repeat1] = STATE(2179), - [aux_sym_sized_type_specifier_repeat1] = STATE(3171), - [aux_sym_operator_cast_definition_repeat1] = STATE(1932), - [sym_identifier] = ACTIONS(3093), - [anon_sym_LPAREN2] = ACTIONS(1681), - [anon_sym_TILDE] = ACTIONS(1683), - [anon_sym_STAR] = ACTIONS(1685), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1687), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(3095), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1413), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACK] = ACTIONS(1693), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(61), - [anon_sym_unsigned] = ACTIONS(61), - [anon_sym_long] = ACTIONS(61), - [anon_sym_short] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2932), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(107), - [anon_sym_decltype] = ACTIONS(109), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_explicit] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(115), - [anon_sym_template] = ACTIONS(3129), - [anon_sym_operator] = ACTIONS(119), - [anon_sym_friend] = ACTIONS(3131), - [anon_sym_using] = ACTIONS(3133), - [anon_sym_concept] = ACTIONS(293), - [anon_sym_requires] = ACTIONS(3103), + [1124] = { + [ts_builtin_sym_end] = ACTIONS(3002), + [sym_identifier] = ACTIONS(3000), + [aux_sym_preproc_include_token1] = ACTIONS(3000), + [aux_sym_preproc_def_token1] = ACTIONS(3000), + [aux_sym_preproc_if_token1] = ACTIONS(3000), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3000), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3000), + [sym_preproc_directive] = ACTIONS(3000), + [anon_sym_LPAREN2] = ACTIONS(3002), + [anon_sym_BANG] = ACTIONS(3002), + [anon_sym_TILDE] = ACTIONS(3002), + [anon_sym_DASH] = ACTIONS(3000), + [anon_sym_PLUS] = ACTIONS(3000), + [anon_sym_STAR] = ACTIONS(3002), + [anon_sym_AMP_AMP] = ACTIONS(3002), + [anon_sym_AMP] = ACTIONS(3000), + [anon_sym_SEMI] = ACTIONS(3002), + [anon_sym_typedef] = ACTIONS(3000), + [anon_sym_extern] = ACTIONS(3000), + [anon_sym___attribute__] = ACTIONS(3000), + [anon_sym_COLON_COLON] = ACTIONS(3002), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3002), + [anon_sym___declspec] = ACTIONS(3000), + [anon_sym___based] = ACTIONS(3000), + [anon_sym___cdecl] = ACTIONS(3000), + [anon_sym___clrcall] = ACTIONS(3000), + [anon_sym___stdcall] = ACTIONS(3000), + [anon_sym___fastcall] = ACTIONS(3000), + [anon_sym___thiscall] = ACTIONS(3000), + [anon_sym___vectorcall] = ACTIONS(3000), + [anon_sym_LBRACE] = ACTIONS(3002), + [anon_sym_LBRACK] = ACTIONS(3000), + [anon_sym_static] = ACTIONS(3000), + [anon_sym_register] = ACTIONS(3000), + [anon_sym_inline] = ACTIONS(3000), + [anon_sym_thread_local] = ACTIONS(3000), + [anon_sym_const] = ACTIONS(3000), + [anon_sym_constexpr] = ACTIONS(3000), + [anon_sym_volatile] = ACTIONS(3000), + [anon_sym_restrict] = ACTIONS(3000), + [anon_sym___restrict__] = ACTIONS(3000), + [anon_sym__Atomic] = ACTIONS(3000), + [anon_sym__Noreturn] = ACTIONS(3000), + [anon_sym_noreturn] = ACTIONS(3000), + [anon_sym_mutable] = ACTIONS(3000), + [anon_sym_constinit] = ACTIONS(3000), + [anon_sym_consteval] = ACTIONS(3000), + [anon_sym_signed] = ACTIONS(3000), + [anon_sym_unsigned] = ACTIONS(3000), + [anon_sym_long] = ACTIONS(3000), + [anon_sym_short] = ACTIONS(3000), + [sym_primitive_type] = ACTIONS(3000), + [anon_sym_enum] = ACTIONS(3000), + [anon_sym_class] = ACTIONS(3000), + [anon_sym_struct] = ACTIONS(3000), + [anon_sym_union] = ACTIONS(3000), + [anon_sym_if] = ACTIONS(3000), + [anon_sym_else] = ACTIONS(3000), + [anon_sym_switch] = ACTIONS(3000), + [anon_sym_case] = ACTIONS(3000), + [anon_sym_default] = ACTIONS(3000), + [anon_sym_while] = ACTIONS(3000), + [anon_sym_do] = ACTIONS(3000), + [anon_sym_for] = ACTIONS(3000), + [anon_sym_return] = ACTIONS(3000), + [anon_sym_break] = ACTIONS(3000), + [anon_sym_continue] = ACTIONS(3000), + [anon_sym_goto] = ACTIONS(3000), + [anon_sym_not] = ACTIONS(3000), + [anon_sym_compl] = ACTIONS(3000), + [anon_sym_DASH_DASH] = ACTIONS(3002), + [anon_sym_PLUS_PLUS] = ACTIONS(3002), + [anon_sym_sizeof] = ACTIONS(3000), + [anon_sym_offsetof] = ACTIONS(3000), + [anon_sym__Generic] = ACTIONS(3000), + [anon_sym_asm] = ACTIONS(3000), + [anon_sym___asm__] = ACTIONS(3000), + [sym_number_literal] = ACTIONS(3002), + [anon_sym_L_SQUOTE] = ACTIONS(3002), + [anon_sym_u_SQUOTE] = ACTIONS(3002), + [anon_sym_U_SQUOTE] = ACTIONS(3002), + [anon_sym_u8_SQUOTE] = ACTIONS(3002), + [anon_sym_SQUOTE] = ACTIONS(3002), + [anon_sym_L_DQUOTE] = ACTIONS(3002), + [anon_sym_u_DQUOTE] = ACTIONS(3002), + [anon_sym_U_DQUOTE] = ACTIONS(3002), + [anon_sym_u8_DQUOTE] = ACTIONS(3002), + [anon_sym_DQUOTE] = ACTIONS(3002), + [sym_true] = ACTIONS(3000), + [sym_false] = ACTIONS(3000), + [anon_sym_NULL] = ACTIONS(3000), + [anon_sym_nullptr] = ACTIONS(3000), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3000), + [anon_sym_decltype] = ACTIONS(3000), + [anon_sym_virtual] = ACTIONS(3000), + [anon_sym_explicit] = ACTIONS(3000), + [anon_sym_typename] = ACTIONS(3000), + [anon_sym_template] = ACTIONS(3000), + [anon_sym_operator] = ACTIONS(3000), + [anon_sym_try] = ACTIONS(3000), + [anon_sym_delete] = ACTIONS(3000), + [anon_sym_throw] = ACTIONS(3000), + [anon_sym_namespace] = ACTIONS(3000), + [anon_sym_using] = ACTIONS(3000), + [anon_sym_static_assert] = ACTIONS(3000), + [anon_sym_concept] = ACTIONS(3000), + [anon_sym_co_return] = ACTIONS(3000), + [anon_sym_co_yield] = ACTIONS(3000), + [anon_sym_R_DQUOTE] = ACTIONS(3002), + [anon_sym_LR_DQUOTE] = ACTIONS(3002), + [anon_sym_uR_DQUOTE] = ACTIONS(3002), + [anon_sym_UR_DQUOTE] = ACTIONS(3002), + [anon_sym_u8R_DQUOTE] = ACTIONS(3002), + [anon_sym_co_await] = ACTIONS(3000), + [anon_sym_new] = ACTIONS(3000), + [anon_sym_requires] = ACTIONS(3000), + [sym_this] = ACTIONS(3000), }, [1125] = { - [sym_function_definition] = STATE(964), - [sym_declaration] = STATE(964), - [sym__declaration_modifiers] = STATE(3225), - [sym__declaration_specifiers] = STATE(3962), - [sym_attribute_specifier] = STATE(3225), - [sym_attribute_declaration] = STATE(3225), - [sym_ms_declspec_modifier] = STATE(3225), - [sym_ms_based_modifier] = STATE(6104), - [sym_ms_call_modifier] = STATE(2065), - [sym__declarator] = STATE(5113), - [sym_parenthesized_declarator] = STATE(4918), - [sym_attributed_declarator] = STATE(4918), - [sym_pointer_declarator] = STATE(4918), - [sym_function_declarator] = STATE(4758), - [sym_array_declarator] = STATE(4918), - [sym_storage_class_specifier] = STATE(3225), - [sym_type_qualifier] = STATE(3225), - [sym__type_specifier] = STATE(3322), - [sym_sized_type_specifier] = STATE(3232), - [sym_enum_specifier] = STATE(3232), - [sym_struct_specifier] = STATE(3232), - [sym_union_specifier] = STATE(3232), - [sym__empty_declaration] = STATE(964), - [sym_placeholder_type_specifier] = STATE(3232), - [sym_decltype_auto] = STATE(3279), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3232), - [sym_virtual] = STATE(3225), - [sym_explicit_function_specifier] = STATE(1935), - [sym_dependent_type] = STATE(3232), - [sym_template_declaration] = STATE(964), - [sym_operator_cast] = STATE(5134), - [sym__constructor_specifiers] = STATE(1935), - [sym_operator_cast_definition] = STATE(964), - [sym_operator_cast_declaration] = STATE(964), - [sym_constructor_or_destructor_definition] = STATE(964), - [sym_constructor_or_destructor_declaration] = STATE(964), - [sym_friend_declaration] = STATE(964), - [sym_reference_declarator] = STATE(4918), - [sym_structured_binding_declarator] = STATE(4918), - [sym_template_type] = STATE(3198), - [sym_template_function] = STATE(4918), - [sym_alias_declaration] = STATE(964), - [sym_concept_definition] = STATE(964), - [sym_destructor_name] = STATE(4918), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4458), - [sym_qualified_identifier] = STATE(4918), - [sym_qualified_type_identifier] = STATE(3259), - [sym_qualified_operator_cast_identifier] = STATE(5134), - [sym_operator_name] = STATE(4918), - [aux_sym__declaration_specifiers_repeat1] = STATE(2179), - [aux_sym_sized_type_specifier_repeat1] = STATE(3171), - [aux_sym_operator_cast_definition_repeat1] = STATE(1935), - [sym_identifier] = ACTIONS(3093), - [anon_sym_LPAREN2] = ACTIONS(1681), - [anon_sym_TILDE] = ACTIONS(1683), - [anon_sym_STAR] = ACTIONS(1685), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1687), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(3095), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1413), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACK] = ACTIONS(1693), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(61), - [anon_sym_unsigned] = ACTIONS(61), - [anon_sym_long] = ACTIONS(61), - [anon_sym_short] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2932), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(107), - [anon_sym_decltype] = ACTIONS(109), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_explicit] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(115), - [anon_sym_template] = ACTIONS(3097), - [anon_sym_operator] = ACTIONS(119), - [anon_sym_friend] = ACTIONS(3099), - [anon_sym_using] = ACTIONS(3101), - [anon_sym_concept] = ACTIONS(211), + [ts_builtin_sym_end] = ACTIONS(3030), + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, [1126] = { - [sym_function_definition] = STATE(1067), - [sym_declaration] = STATE(1067), - [sym__declaration_modifiers] = STATE(3225), - [sym__declaration_specifiers] = STATE(3990), - [sym_attribute_specifier] = STATE(3225), - [sym_attribute_declaration] = STATE(3225), - [sym_ms_declspec_modifier] = STATE(3225), - [sym_ms_based_modifier] = STATE(6104), - [sym_ms_call_modifier] = STATE(2018), - [sym__declarator] = STATE(5113), - [sym_parenthesized_declarator] = STATE(4918), - [sym_attributed_declarator] = STATE(4918), - [sym_pointer_declarator] = STATE(4918), - [sym_function_declarator] = STATE(4757), - [sym_array_declarator] = STATE(4918), - [sym_storage_class_specifier] = STATE(3225), - [sym_type_qualifier] = STATE(3225), - [sym__type_specifier] = STATE(3317), - [sym_sized_type_specifier] = STATE(3232), - [sym_enum_specifier] = STATE(3232), - [sym_struct_specifier] = STATE(3232), - [sym_union_specifier] = STATE(3232), - [sym__empty_declaration] = STATE(1067), - [sym_placeholder_type_specifier] = STATE(3232), - [sym_decltype_auto] = STATE(3279), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3232), - [sym_virtual] = STATE(3225), - [sym_explicit_function_specifier] = STATE(1959), - [sym_dependent_type] = STATE(3232), - [sym_template_declaration] = STATE(1067), - [sym_operator_cast] = STATE(5144), - [sym__constructor_specifiers] = STATE(1959), - [sym_operator_cast_definition] = STATE(1067), - [sym_operator_cast_declaration] = STATE(1067), - [sym_constructor_or_destructor_definition] = STATE(1067), - [sym_constructor_or_destructor_declaration] = STATE(1067), - [sym_friend_declaration] = STATE(1067), - [sym_reference_declarator] = STATE(4918), - [sym_structured_binding_declarator] = STATE(4918), - [sym_template_type] = STATE(3198), - [sym_template_function] = STATE(4918), - [sym_alias_declaration] = STATE(1067), - [sym_concept_definition] = STATE(1067), - [sym_destructor_name] = STATE(4918), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4458), - [sym_qualified_identifier] = STATE(4918), - [sym_qualified_type_identifier] = STATE(3259), - [sym_qualified_operator_cast_identifier] = STATE(5144), - [sym_operator_name] = STATE(4918), - [aux_sym__declaration_specifiers_repeat1] = STATE(2179), - [aux_sym_sized_type_specifier_repeat1] = STATE(3171), - [aux_sym_operator_cast_definition_repeat1] = STATE(1959), - [sym_identifier] = ACTIONS(3093), - [anon_sym_LPAREN2] = ACTIONS(1681), - [anon_sym_TILDE] = ACTIONS(1683), - [anon_sym_STAR] = ACTIONS(1685), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1687), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(3095), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1413), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACK] = ACTIONS(1693), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(61), - [anon_sym_unsigned] = ACTIONS(61), - [anon_sym_long] = ACTIONS(61), - [anon_sym_short] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2932), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(107), - [anon_sym_decltype] = ACTIONS(109), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_explicit] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(115), - [anon_sym_template] = ACTIONS(3119), - [anon_sym_operator] = ACTIONS(119), - [anon_sym_friend] = ACTIONS(3121), - [anon_sym_using] = ACTIONS(3123), - [anon_sym_concept] = ACTIONS(704), + [sym_identifier] = ACTIONS(3024), + [aux_sym_preproc_include_token1] = ACTIONS(3024), + [aux_sym_preproc_def_token1] = ACTIONS(3024), + [aux_sym_preproc_if_token1] = ACTIONS(3024), + [aux_sym_preproc_if_token2] = ACTIONS(3024), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3024), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3024), + [sym_preproc_directive] = ACTIONS(3024), + [anon_sym_LPAREN2] = ACTIONS(3026), + [anon_sym_BANG] = ACTIONS(3026), + [anon_sym_TILDE] = ACTIONS(3026), + [anon_sym_DASH] = ACTIONS(3024), + [anon_sym_PLUS] = ACTIONS(3024), + [anon_sym_STAR] = ACTIONS(3026), + [anon_sym_AMP_AMP] = ACTIONS(3026), + [anon_sym_AMP] = ACTIONS(3024), + [anon_sym_SEMI] = ACTIONS(3026), + [anon_sym_typedef] = ACTIONS(3024), + [anon_sym_extern] = ACTIONS(3024), + [anon_sym___attribute__] = ACTIONS(3024), + [anon_sym_COLON_COLON] = ACTIONS(3026), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3026), + [anon_sym___declspec] = ACTIONS(3024), + [anon_sym___based] = ACTIONS(3024), + [anon_sym___cdecl] = ACTIONS(3024), + [anon_sym___clrcall] = ACTIONS(3024), + [anon_sym___stdcall] = ACTIONS(3024), + [anon_sym___fastcall] = ACTIONS(3024), + [anon_sym___thiscall] = ACTIONS(3024), + [anon_sym___vectorcall] = ACTIONS(3024), + [anon_sym_LBRACE] = ACTIONS(3026), + [anon_sym_LBRACK] = ACTIONS(3024), + [anon_sym_static] = ACTIONS(3024), + [anon_sym_register] = ACTIONS(3024), + [anon_sym_inline] = ACTIONS(3024), + [anon_sym_thread_local] = ACTIONS(3024), + [anon_sym_const] = ACTIONS(3024), + [anon_sym_constexpr] = ACTIONS(3024), + [anon_sym_volatile] = ACTIONS(3024), + [anon_sym_restrict] = ACTIONS(3024), + [anon_sym___restrict__] = ACTIONS(3024), + [anon_sym__Atomic] = ACTIONS(3024), + [anon_sym__Noreturn] = ACTIONS(3024), + [anon_sym_noreturn] = ACTIONS(3024), + [anon_sym_mutable] = ACTIONS(3024), + [anon_sym_constinit] = ACTIONS(3024), + [anon_sym_consteval] = ACTIONS(3024), + [anon_sym_signed] = ACTIONS(3024), + [anon_sym_unsigned] = ACTIONS(3024), + [anon_sym_long] = ACTIONS(3024), + [anon_sym_short] = ACTIONS(3024), + [sym_primitive_type] = ACTIONS(3024), + [anon_sym_enum] = ACTIONS(3024), + [anon_sym_class] = ACTIONS(3024), + [anon_sym_struct] = ACTIONS(3024), + [anon_sym_union] = ACTIONS(3024), + [anon_sym_if] = ACTIONS(3024), + [anon_sym_else] = ACTIONS(3024), + [anon_sym_switch] = ACTIONS(3024), + [anon_sym_case] = ACTIONS(3024), + [anon_sym_default] = ACTIONS(3024), + [anon_sym_while] = ACTIONS(3024), + [anon_sym_do] = ACTIONS(3024), + [anon_sym_for] = ACTIONS(3024), + [anon_sym_return] = ACTIONS(3024), + [anon_sym_break] = ACTIONS(3024), + [anon_sym_continue] = ACTIONS(3024), + [anon_sym_goto] = ACTIONS(3024), + [anon_sym_not] = ACTIONS(3024), + [anon_sym_compl] = ACTIONS(3024), + [anon_sym_DASH_DASH] = ACTIONS(3026), + [anon_sym_PLUS_PLUS] = ACTIONS(3026), + [anon_sym_sizeof] = ACTIONS(3024), + [anon_sym_offsetof] = ACTIONS(3024), + [anon_sym__Generic] = ACTIONS(3024), + [anon_sym_asm] = ACTIONS(3024), + [anon_sym___asm__] = ACTIONS(3024), + [sym_number_literal] = ACTIONS(3026), + [anon_sym_L_SQUOTE] = ACTIONS(3026), + [anon_sym_u_SQUOTE] = ACTIONS(3026), + [anon_sym_U_SQUOTE] = ACTIONS(3026), + [anon_sym_u8_SQUOTE] = ACTIONS(3026), + [anon_sym_SQUOTE] = ACTIONS(3026), + [anon_sym_L_DQUOTE] = ACTIONS(3026), + [anon_sym_u_DQUOTE] = ACTIONS(3026), + [anon_sym_U_DQUOTE] = ACTIONS(3026), + [anon_sym_u8_DQUOTE] = ACTIONS(3026), + [anon_sym_DQUOTE] = ACTIONS(3026), + [sym_true] = ACTIONS(3024), + [sym_false] = ACTIONS(3024), + [anon_sym_NULL] = ACTIONS(3024), + [anon_sym_nullptr] = ACTIONS(3024), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3024), + [anon_sym_decltype] = ACTIONS(3024), + [anon_sym_virtual] = ACTIONS(3024), + [anon_sym_explicit] = ACTIONS(3024), + [anon_sym_typename] = ACTIONS(3024), + [anon_sym_template] = ACTIONS(3024), + [anon_sym_operator] = ACTIONS(3024), + [anon_sym_try] = ACTIONS(3024), + [anon_sym_delete] = ACTIONS(3024), + [anon_sym_throw] = ACTIONS(3024), + [anon_sym_namespace] = ACTIONS(3024), + [anon_sym_using] = ACTIONS(3024), + [anon_sym_static_assert] = ACTIONS(3024), + [anon_sym_concept] = ACTIONS(3024), + [anon_sym_co_return] = ACTIONS(3024), + [anon_sym_co_yield] = ACTIONS(3024), + [anon_sym_R_DQUOTE] = ACTIONS(3026), + [anon_sym_LR_DQUOTE] = ACTIONS(3026), + [anon_sym_uR_DQUOTE] = ACTIONS(3026), + [anon_sym_UR_DQUOTE] = ACTIONS(3026), + [anon_sym_u8R_DQUOTE] = ACTIONS(3026), + [anon_sym_co_await] = ACTIONS(3024), + [anon_sym_new] = ACTIONS(3024), + [anon_sym_requires] = ACTIONS(3024), + [sym_this] = ACTIONS(3024), }, [1127] = { - [sym_function_definition] = STATE(936), - [sym_declaration] = STATE(936), - [sym__declaration_modifiers] = STATE(3225), - [sym__declaration_specifiers] = STATE(3946), - [sym_attribute_specifier] = STATE(3225), - [sym_attribute_declaration] = STATE(3225), - [sym_ms_declspec_modifier] = STATE(3225), - [sym_ms_based_modifier] = STATE(6104), - [sym_ms_call_modifier] = STATE(2076), - [sym__declarator] = STATE(5113), - [sym_parenthesized_declarator] = STATE(4918), - [sym_attributed_declarator] = STATE(4918), - [sym_pointer_declarator] = STATE(4918), - [sym_function_declarator] = STATE(4782), - [sym_array_declarator] = STATE(4918), - [sym_storage_class_specifier] = STATE(3225), - [sym_type_qualifier] = STATE(3225), - [sym__type_specifier] = STATE(3325), - [sym_sized_type_specifier] = STATE(3232), - [sym_enum_specifier] = STATE(3232), - [sym_struct_specifier] = STATE(3232), - [sym_union_specifier] = STATE(3232), - [sym__empty_declaration] = STATE(936), - [sym_placeholder_type_specifier] = STATE(3232), - [sym_decltype_auto] = STATE(3279), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3232), - [sym_virtual] = STATE(3225), - [sym_explicit_function_specifier] = STATE(1953), - [sym_dependent_type] = STATE(3232), - [sym_template_declaration] = STATE(936), - [sym_operator_cast] = STATE(5130), - [sym__constructor_specifiers] = STATE(1953), - [sym_operator_cast_definition] = STATE(936), - [sym_operator_cast_declaration] = STATE(936), - [sym_constructor_or_destructor_definition] = STATE(936), - [sym_constructor_or_destructor_declaration] = STATE(936), - [sym_friend_declaration] = STATE(936), - [sym_reference_declarator] = STATE(4918), - [sym_structured_binding_declarator] = STATE(4918), - [sym_template_type] = STATE(3198), - [sym_template_function] = STATE(4918), - [sym_alias_declaration] = STATE(936), - [sym_concept_definition] = STATE(936), - [sym_destructor_name] = STATE(4918), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4458), - [sym_qualified_identifier] = STATE(4918), - [sym_qualified_type_identifier] = STATE(3259), - [sym_qualified_operator_cast_identifier] = STATE(5130), - [sym_operator_name] = STATE(4918), - [aux_sym__declaration_specifiers_repeat1] = STATE(2179), - [aux_sym_sized_type_specifier_repeat1] = STATE(3171), - [aux_sym_operator_cast_definition_repeat1] = STATE(1953), - [sym_identifier] = ACTIONS(3093), - [anon_sym_LPAREN2] = ACTIONS(1681), - [anon_sym_TILDE] = ACTIONS(1683), - [anon_sym_STAR] = ACTIONS(1685), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1687), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(3095), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1413), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACK] = ACTIONS(1693), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(61), - [anon_sym_unsigned] = ACTIONS(61), - [anon_sym_long] = ACTIONS(61), - [anon_sym_short] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2932), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(107), - [anon_sym_decltype] = ACTIONS(109), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_explicit] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(115), - [anon_sym_template] = ACTIONS(3105), - [anon_sym_operator] = ACTIONS(119), - [anon_sym_friend] = ACTIONS(3107), - [anon_sym_using] = ACTIONS(3109), - [anon_sym_concept] = ACTIONS(133), + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token2] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, [1128] = { - [sym_function_definition] = STATE(2284), - [sym_declaration] = STATE(2284), - [sym__declaration_modifiers] = STATE(3225), - [sym__declaration_specifiers] = STATE(3977), - [sym_attribute_specifier] = STATE(3225), - [sym_attribute_declaration] = STATE(3225), - [sym_ms_declspec_modifier] = STATE(3225), - [sym_ms_based_modifier] = STATE(6104), - [sym_ms_call_modifier] = STATE(2058), - [sym__declarator] = STATE(5113), - [sym_parenthesized_declarator] = STATE(4918), - [sym_attributed_declarator] = STATE(4918), - [sym_pointer_declarator] = STATE(4918), - [sym_function_declarator] = STATE(4792), - [sym_array_declarator] = STATE(4918), - [sym_storage_class_specifier] = STATE(3225), - [sym_type_qualifier] = STATE(3225), - [sym__type_specifier] = STATE(3292), - [sym_sized_type_specifier] = STATE(3232), - [sym_enum_specifier] = STATE(3232), - [sym_struct_specifier] = STATE(3232), - [sym_union_specifier] = STATE(3232), - [sym__empty_declaration] = STATE(2284), - [sym_placeholder_type_specifier] = STATE(3232), - [sym_decltype_auto] = STATE(3279), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3232), - [sym_virtual] = STATE(3225), - [sym_explicit_function_specifier] = STATE(1947), - [sym_dependent_type] = STATE(3232), - [sym_template_declaration] = STATE(2284), - [sym_operator_cast] = STATE(5120), - [sym__constructor_specifiers] = STATE(1947), - [sym_operator_cast_definition] = STATE(2284), - [sym_operator_cast_declaration] = STATE(2284), - [sym_constructor_or_destructor_definition] = STATE(2284), - [sym_constructor_or_destructor_declaration] = STATE(2284), - [sym_friend_declaration] = STATE(2284), - [sym_reference_declarator] = STATE(4918), - [sym_structured_binding_declarator] = STATE(4918), - [sym_template_type] = STATE(3198), - [sym_template_function] = STATE(4918), - [sym_alias_declaration] = STATE(2284), - [sym_concept_definition] = STATE(2284), - [sym_destructor_name] = STATE(4918), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4458), - [sym_qualified_identifier] = STATE(4918), - [sym_qualified_type_identifier] = STATE(3259), - [sym_qualified_operator_cast_identifier] = STATE(5120), - [sym_operator_name] = STATE(4918), - [aux_sym__declaration_specifiers_repeat1] = STATE(2179), - [aux_sym_sized_type_specifier_repeat1] = STATE(3171), - [aux_sym_operator_cast_definition_repeat1] = STATE(1947), - [sym_identifier] = ACTIONS(3093), - [anon_sym_LPAREN2] = ACTIONS(1681), - [anon_sym_TILDE] = ACTIONS(1683), - [anon_sym_STAR] = ACTIONS(1685), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1687), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(3095), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1413), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACK] = ACTIONS(1693), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(61), - [anon_sym_unsigned] = ACTIONS(61), - [anon_sym_long] = ACTIONS(61), - [anon_sym_short] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2932), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(107), - [anon_sym_decltype] = ACTIONS(109), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_explicit] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(115), - [anon_sym_template] = ACTIONS(2266), - [anon_sym_operator] = ACTIONS(119), - [anon_sym_friend] = ACTIONS(2268), - [anon_sym_using] = ACTIONS(3125), - [anon_sym_concept] = ACTIONS(3127), + [sym_identifier] = ACTIONS(2980), + [aux_sym_preproc_include_token1] = ACTIONS(2980), + [aux_sym_preproc_def_token1] = ACTIONS(2980), + [aux_sym_preproc_if_token1] = ACTIONS(2980), + [aux_sym_preproc_if_token2] = ACTIONS(2980), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2980), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2980), + [sym_preproc_directive] = ACTIONS(2980), + [anon_sym_LPAREN2] = ACTIONS(2982), + [anon_sym_BANG] = ACTIONS(2982), + [anon_sym_TILDE] = ACTIONS(2982), + [anon_sym_DASH] = ACTIONS(2980), + [anon_sym_PLUS] = ACTIONS(2980), + [anon_sym_STAR] = ACTIONS(2982), + [anon_sym_AMP_AMP] = ACTIONS(2982), + [anon_sym_AMP] = ACTIONS(2980), + [anon_sym_SEMI] = ACTIONS(2982), + [anon_sym_typedef] = ACTIONS(2980), + [anon_sym_extern] = ACTIONS(2980), + [anon_sym___attribute__] = ACTIONS(2980), + [anon_sym_COLON_COLON] = ACTIONS(2982), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2982), + [anon_sym___declspec] = ACTIONS(2980), + [anon_sym___based] = ACTIONS(2980), + [anon_sym___cdecl] = ACTIONS(2980), + [anon_sym___clrcall] = ACTIONS(2980), + [anon_sym___stdcall] = ACTIONS(2980), + [anon_sym___fastcall] = ACTIONS(2980), + [anon_sym___thiscall] = ACTIONS(2980), + [anon_sym___vectorcall] = ACTIONS(2980), + [anon_sym_LBRACE] = ACTIONS(2982), + [anon_sym_LBRACK] = ACTIONS(2980), + [anon_sym_static] = ACTIONS(2980), + [anon_sym_register] = ACTIONS(2980), + [anon_sym_inline] = ACTIONS(2980), + [anon_sym_thread_local] = ACTIONS(2980), + [anon_sym_const] = ACTIONS(2980), + [anon_sym_constexpr] = ACTIONS(2980), + [anon_sym_volatile] = ACTIONS(2980), + [anon_sym_restrict] = ACTIONS(2980), + [anon_sym___restrict__] = ACTIONS(2980), + [anon_sym__Atomic] = ACTIONS(2980), + [anon_sym__Noreturn] = ACTIONS(2980), + [anon_sym_noreturn] = ACTIONS(2980), + [anon_sym_mutable] = ACTIONS(2980), + [anon_sym_constinit] = ACTIONS(2980), + [anon_sym_consteval] = ACTIONS(2980), + [anon_sym_signed] = ACTIONS(2980), + [anon_sym_unsigned] = ACTIONS(2980), + [anon_sym_long] = ACTIONS(2980), + [anon_sym_short] = ACTIONS(2980), + [sym_primitive_type] = ACTIONS(2980), + [anon_sym_enum] = ACTIONS(2980), + [anon_sym_class] = ACTIONS(2980), + [anon_sym_struct] = ACTIONS(2980), + [anon_sym_union] = ACTIONS(2980), + [anon_sym_if] = ACTIONS(2980), + [anon_sym_else] = ACTIONS(2980), + [anon_sym_switch] = ACTIONS(2980), + [anon_sym_case] = ACTIONS(2980), + [anon_sym_default] = ACTIONS(2980), + [anon_sym_while] = ACTIONS(2980), + [anon_sym_do] = ACTIONS(2980), + [anon_sym_for] = ACTIONS(2980), + [anon_sym_return] = ACTIONS(2980), + [anon_sym_break] = ACTIONS(2980), + [anon_sym_continue] = ACTIONS(2980), + [anon_sym_goto] = ACTIONS(2980), + [anon_sym_not] = ACTIONS(2980), + [anon_sym_compl] = ACTIONS(2980), + [anon_sym_DASH_DASH] = ACTIONS(2982), + [anon_sym_PLUS_PLUS] = ACTIONS(2982), + [anon_sym_sizeof] = ACTIONS(2980), + [anon_sym_offsetof] = ACTIONS(2980), + [anon_sym__Generic] = ACTIONS(2980), + [anon_sym_asm] = ACTIONS(2980), + [anon_sym___asm__] = ACTIONS(2980), + [sym_number_literal] = ACTIONS(2982), + [anon_sym_L_SQUOTE] = ACTIONS(2982), + [anon_sym_u_SQUOTE] = ACTIONS(2982), + [anon_sym_U_SQUOTE] = ACTIONS(2982), + [anon_sym_u8_SQUOTE] = ACTIONS(2982), + [anon_sym_SQUOTE] = ACTIONS(2982), + [anon_sym_L_DQUOTE] = ACTIONS(2982), + [anon_sym_u_DQUOTE] = ACTIONS(2982), + [anon_sym_U_DQUOTE] = ACTIONS(2982), + [anon_sym_u8_DQUOTE] = ACTIONS(2982), + [anon_sym_DQUOTE] = ACTIONS(2982), + [sym_true] = ACTIONS(2980), + [sym_false] = ACTIONS(2980), + [anon_sym_NULL] = ACTIONS(2980), + [anon_sym_nullptr] = ACTIONS(2980), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2980), + [anon_sym_decltype] = ACTIONS(2980), + [anon_sym_virtual] = ACTIONS(2980), + [anon_sym_explicit] = ACTIONS(2980), + [anon_sym_typename] = ACTIONS(2980), + [anon_sym_template] = ACTIONS(2980), + [anon_sym_operator] = ACTIONS(2980), + [anon_sym_try] = ACTIONS(2980), + [anon_sym_delete] = ACTIONS(2980), + [anon_sym_throw] = ACTIONS(2980), + [anon_sym_namespace] = ACTIONS(2980), + [anon_sym_using] = ACTIONS(2980), + [anon_sym_static_assert] = ACTIONS(2980), + [anon_sym_concept] = ACTIONS(2980), + [anon_sym_co_return] = ACTIONS(2980), + [anon_sym_co_yield] = ACTIONS(2980), + [anon_sym_R_DQUOTE] = ACTIONS(2982), + [anon_sym_LR_DQUOTE] = ACTIONS(2982), + [anon_sym_uR_DQUOTE] = ACTIONS(2982), + [anon_sym_UR_DQUOTE] = ACTIONS(2982), + [anon_sym_u8R_DQUOTE] = ACTIONS(2982), + [anon_sym_co_await] = ACTIONS(2980), + [anon_sym_new] = ACTIONS(2980), + [anon_sym_requires] = ACTIONS(2980), + [sym_this] = ACTIONS(2980), }, [1129] = { - [sym_function_definition] = STATE(2291), - [sym_declaration] = STATE(2291), - [sym__declaration_modifiers] = STATE(3225), - [sym__declaration_specifiers] = STATE(3964), - [sym_attribute_specifier] = STATE(3225), - [sym_attribute_declaration] = STATE(3225), - [sym_ms_declspec_modifier] = STATE(3225), - [sym_ms_based_modifier] = STATE(6104), - [sym_ms_call_modifier] = STATE(2029), - [sym__declarator] = STATE(5113), - [sym_parenthesized_declarator] = STATE(4918), - [sym_attributed_declarator] = STATE(4918), - [sym_pointer_declarator] = STATE(4918), - [sym_function_declarator] = STATE(4799), - [sym_array_declarator] = STATE(4918), - [sym_storage_class_specifier] = STATE(3225), - [sym_type_qualifier] = STATE(3225), - [sym__type_specifier] = STATE(3298), - [sym_sized_type_specifier] = STATE(3232), - [sym_enum_specifier] = STATE(3232), - [sym_struct_specifier] = STATE(3232), - [sym_union_specifier] = STATE(3232), - [sym__empty_declaration] = STATE(2291), - [sym_placeholder_type_specifier] = STATE(3232), - [sym_decltype_auto] = STATE(3279), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3232), - [sym_virtual] = STATE(3225), - [sym_explicit_function_specifier] = STATE(1961), - [sym_dependent_type] = STATE(3232), - [sym_template_declaration] = STATE(2291), - [sym_operator_cast] = STATE(5140), - [sym__constructor_specifiers] = STATE(1961), - [sym_operator_cast_definition] = STATE(2291), - [sym_operator_cast_declaration] = STATE(2291), - [sym_constructor_or_destructor_definition] = STATE(2291), - [sym_constructor_or_destructor_declaration] = STATE(2291), - [sym_friend_declaration] = STATE(2291), - [sym_reference_declarator] = STATE(4918), - [sym_structured_binding_declarator] = STATE(4918), - [sym_template_type] = STATE(3198), - [sym_template_function] = STATE(4918), - [sym_alias_declaration] = STATE(2291), - [sym_concept_definition] = STATE(2291), - [sym_destructor_name] = STATE(4918), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4458), - [sym_qualified_identifier] = STATE(4918), - [sym_qualified_type_identifier] = STATE(3259), - [sym_qualified_operator_cast_identifier] = STATE(5140), - [sym_operator_name] = STATE(4918), - [aux_sym__declaration_specifiers_repeat1] = STATE(2179), - [aux_sym_sized_type_specifier_repeat1] = STATE(3171), - [aux_sym_operator_cast_definition_repeat1] = STATE(1961), - [sym_identifier] = ACTIONS(3093), - [anon_sym_LPAREN2] = ACTIONS(1681), - [anon_sym_TILDE] = ACTIONS(1683), - [anon_sym_STAR] = ACTIONS(1685), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1687), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(3095), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1413), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACK] = ACTIONS(1693), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(61), - [anon_sym_unsigned] = ACTIONS(61), - [anon_sym_long] = ACTIONS(61), - [anon_sym_short] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2932), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(107), - [anon_sym_decltype] = ACTIONS(109), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_explicit] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(115), - [anon_sym_template] = ACTIONS(2246), - [anon_sym_operator] = ACTIONS(119), - [anon_sym_friend] = ACTIONS(2248), - [anon_sym_using] = ACTIONS(3115), - [anon_sym_concept] = ACTIONS(3117), + [ts_builtin_sym_end] = ACTIONS(3030), + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, [1130] = { - [sym_function_definition] = STATE(533), - [sym_declaration] = STATE(533), - [sym__declaration_modifiers] = STATE(3225), - [sym__declaration_specifiers] = STATE(3935), - [sym_attribute_specifier] = STATE(3225), - [sym_attribute_declaration] = STATE(3225), - [sym_ms_declspec_modifier] = STATE(3225), - [sym_ms_based_modifier] = STATE(6104), - [sym_ms_call_modifier] = STATE(2012), - [sym__declarator] = STATE(5113), - [sym_parenthesized_declarator] = STATE(4918), - [sym_attributed_declarator] = STATE(4918), - [sym_pointer_declarator] = STATE(4918), - [sym_function_declarator] = STATE(4818), - [sym_array_declarator] = STATE(4918), - [sym_storage_class_specifier] = STATE(3225), - [sym_type_qualifier] = STATE(3225), - [sym__type_specifier] = STATE(3297), - [sym_sized_type_specifier] = STATE(3232), - [sym_enum_specifier] = STATE(3232), - [sym_struct_specifier] = STATE(3232), - [sym_union_specifier] = STATE(3232), - [sym__empty_declaration] = STATE(533), - [sym_placeholder_type_specifier] = STATE(3232), - [sym_decltype_auto] = STATE(3279), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3232), - [sym_virtual] = STATE(3225), - [sym_explicit_function_specifier] = STATE(1932), - [sym_dependent_type] = STATE(3232), - [sym_template_declaration] = STATE(533), - [sym_operator_cast] = STATE(5146), - [sym__constructor_specifiers] = STATE(1932), - [sym_operator_cast_definition] = STATE(533), - [sym_operator_cast_declaration] = STATE(533), - [sym_constructor_or_destructor_definition] = STATE(533), - [sym_constructor_or_destructor_declaration] = STATE(533), - [sym_friend_declaration] = STATE(533), - [sym_reference_declarator] = STATE(4918), - [sym_structured_binding_declarator] = STATE(4918), - [sym_template_type] = STATE(3198), - [sym_template_function] = STATE(4918), - [sym_alias_declaration] = STATE(533), - [sym_concept_definition] = STATE(533), - [sym_destructor_name] = STATE(4918), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4458), - [sym_qualified_identifier] = STATE(4918), - [sym_qualified_type_identifier] = STATE(3259), - [sym_qualified_operator_cast_identifier] = STATE(5146), - [sym_operator_name] = STATE(4918), - [aux_sym__declaration_specifiers_repeat1] = STATE(2179), - [aux_sym_sized_type_specifier_repeat1] = STATE(3171), - [aux_sym_operator_cast_definition_repeat1] = STATE(1932), - [sym_identifier] = ACTIONS(3093), - [anon_sym_LPAREN2] = ACTIONS(1681), - [anon_sym_TILDE] = ACTIONS(1683), - [anon_sym_STAR] = ACTIONS(1685), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1687), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(3095), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1413), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACK] = ACTIONS(1693), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(61), - [anon_sym_unsigned] = ACTIONS(61), - [anon_sym_long] = ACTIONS(61), - [anon_sym_short] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2932), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(107), - [anon_sym_decltype] = ACTIONS(109), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_explicit] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(115), - [anon_sym_template] = ACTIONS(3129), - [anon_sym_operator] = ACTIONS(119), - [anon_sym_friend] = ACTIONS(3131), - [anon_sym_using] = ACTIONS(3133), - [anon_sym_concept] = ACTIONS(293), + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token2] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, [1131] = { - [sym_function_definition] = STATE(2145), - [sym_declaration] = STATE(2145), - [sym__declaration_modifiers] = STATE(3225), - [sym__declaration_specifiers] = STATE(3993), - [sym_attribute_specifier] = STATE(3225), - [sym_attribute_declaration] = STATE(3225), - [sym_ms_declspec_modifier] = STATE(3225), - [sym_ms_based_modifier] = STATE(6104), - [sym_ms_call_modifier] = STATE(2040), - [sym__declarator] = STATE(5113), - [sym_parenthesized_declarator] = STATE(4918), - [sym_attributed_declarator] = STATE(4918), - [sym_pointer_declarator] = STATE(4918), - [sym_function_declarator] = STATE(4752), - [sym_array_declarator] = STATE(4918), - [sym_storage_class_specifier] = STATE(3225), - [sym_type_qualifier] = STATE(3225), - [sym__type_specifier] = STATE(3334), - [sym_sized_type_specifier] = STATE(3232), - [sym_enum_specifier] = STATE(3232), - [sym_struct_specifier] = STATE(3232), - [sym_union_specifier] = STATE(3232), - [sym__empty_declaration] = STATE(2145), - [sym_placeholder_type_specifier] = STATE(3232), - [sym_decltype_auto] = STATE(3279), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3232), - [sym_virtual] = STATE(3225), - [sym_explicit_function_specifier] = STATE(1945), - [sym_dependent_type] = STATE(3232), - [sym_template_declaration] = STATE(2145), - [sym_operator_cast] = STATE(5126), - [sym__constructor_specifiers] = STATE(1945), - [sym_operator_cast_definition] = STATE(2145), - [sym_operator_cast_declaration] = STATE(2145), - [sym_constructor_or_destructor_definition] = STATE(2145), - [sym_constructor_or_destructor_declaration] = STATE(2145), - [sym_friend_declaration] = STATE(2145), - [sym_reference_declarator] = STATE(4918), - [sym_structured_binding_declarator] = STATE(4918), - [sym_template_type] = STATE(3198), - [sym_template_function] = STATE(4918), - [sym_alias_declaration] = STATE(2145), - [sym_concept_definition] = STATE(2145), - [sym_destructor_name] = STATE(4918), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4458), - [sym_qualified_identifier] = STATE(4918), - [sym_qualified_type_identifier] = STATE(3259), - [sym_qualified_operator_cast_identifier] = STATE(5126), - [sym_operator_name] = STATE(4918), - [aux_sym__declaration_specifiers_repeat1] = STATE(2179), - [aux_sym_sized_type_specifier_repeat1] = STATE(3171), - [aux_sym_operator_cast_definition_repeat1] = STATE(1945), - [sym_identifier] = ACTIONS(3093), - [anon_sym_LPAREN2] = ACTIONS(1681), - [anon_sym_TILDE] = ACTIONS(1683), - [anon_sym_STAR] = ACTIONS(1685), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1687), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(3095), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1413), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACK] = ACTIONS(1693), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(61), - [anon_sym_unsigned] = ACTIONS(61), - [anon_sym_long] = ACTIONS(61), - [anon_sym_short] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2932), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(107), - [anon_sym_decltype] = ACTIONS(109), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_explicit] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(115), - [anon_sym_template] = ACTIONS(1713), - [anon_sym_operator] = ACTIONS(119), - [anon_sym_friend] = ACTIONS(1715), - [anon_sym_using] = ACTIONS(3111), - [anon_sym_concept] = ACTIONS(3113), + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token2] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, [1132] = { - [sym_identifier] = ACTIONS(3135), - [anon_sym_COMMA] = ACTIONS(3137), - [anon_sym_RPAREN] = ACTIONS(3137), - [anon_sym_LPAREN2] = ACTIONS(3137), - [anon_sym_BANG] = ACTIONS(3137), - [anon_sym_TILDE] = ACTIONS(3137), - [anon_sym_DASH] = ACTIONS(3135), - [anon_sym_PLUS] = ACTIONS(3135), - [anon_sym_STAR] = ACTIONS(3137), - [anon_sym_AMP_AMP] = ACTIONS(3137), - [anon_sym_AMP] = ACTIONS(3135), - [anon_sym_SEMI] = ACTIONS(3137), - [anon_sym_extern] = ACTIONS(3135), - [anon_sym___attribute__] = ACTIONS(3135), - [anon_sym_COLON_COLON] = ACTIONS(3137), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3137), - [anon_sym___declspec] = ACTIONS(3135), - [anon_sym___based] = ACTIONS(3135), - [anon_sym_LBRACE] = ACTIONS(3137), - [anon_sym_LBRACK] = ACTIONS(3135), - [anon_sym_EQ] = ACTIONS(3137), - [anon_sym_static] = ACTIONS(3135), - [anon_sym_register] = ACTIONS(3135), - [anon_sym_inline] = ACTIONS(3135), - [anon_sym_thread_local] = ACTIONS(3135), - [anon_sym_const] = ACTIONS(3135), - [anon_sym_volatile] = ACTIONS(3135), - [anon_sym_restrict] = ACTIONS(3135), - [anon_sym__Atomic] = ACTIONS(3135), - [anon_sym_mutable] = ACTIONS(3135), - [anon_sym_constexpr] = ACTIONS(3135), - [anon_sym_constinit] = ACTIONS(3135), - [anon_sym_consteval] = ACTIONS(3135), - [anon_sym_signed] = ACTIONS(3135), - [anon_sym_unsigned] = ACTIONS(3135), - [anon_sym_long] = ACTIONS(3135), - [anon_sym_short] = ACTIONS(3135), - [sym_primitive_type] = ACTIONS(3135), - [anon_sym_enum] = ACTIONS(3135), - [anon_sym_class] = ACTIONS(3135), - [anon_sym_struct] = ACTIONS(3135), - [anon_sym_union] = ACTIONS(3135), - [anon_sym_if] = ACTIONS(3135), - [anon_sym_switch] = ACTIONS(3135), - [anon_sym_case] = ACTIONS(3135), - [anon_sym_default] = ACTIONS(3135), - [anon_sym_while] = ACTIONS(3135), - [anon_sym_do] = ACTIONS(3135), - [anon_sym_for] = ACTIONS(3135), - [anon_sym_return] = ACTIONS(3135), - [anon_sym_break] = ACTIONS(3135), - [anon_sym_continue] = ACTIONS(3135), - [anon_sym_goto] = ACTIONS(3135), - [anon_sym_not] = ACTIONS(3135), - [anon_sym_compl] = ACTIONS(3135), - [anon_sym_DASH_DASH] = ACTIONS(3137), - [anon_sym_PLUS_PLUS] = ACTIONS(3137), - [anon_sym_sizeof] = ACTIONS(3135), - [sym_number_literal] = ACTIONS(3137), - [anon_sym_L_SQUOTE] = ACTIONS(3137), - [anon_sym_u_SQUOTE] = ACTIONS(3137), - [anon_sym_U_SQUOTE] = ACTIONS(3137), - [anon_sym_u8_SQUOTE] = ACTIONS(3137), - [anon_sym_SQUOTE] = ACTIONS(3137), - [anon_sym_L_DQUOTE] = ACTIONS(3137), - [anon_sym_u_DQUOTE] = ACTIONS(3137), - [anon_sym_U_DQUOTE] = ACTIONS(3137), - [anon_sym_u8_DQUOTE] = ACTIONS(3137), - [anon_sym_DQUOTE] = ACTIONS(3137), - [sym_true] = ACTIONS(3135), - [sym_false] = ACTIONS(3135), - [sym_null] = ACTIONS(3135), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3135), - [anon_sym_decltype] = ACTIONS(3135), - [anon_sym_virtual] = ACTIONS(3135), - [anon_sym_explicit] = ACTIONS(3135), - [anon_sym_typename] = ACTIONS(3135), - [anon_sym_template] = ACTIONS(3135), - [anon_sym_GT2] = ACTIONS(3137), - [anon_sym_operator] = ACTIONS(3135), - [anon_sym_try] = ACTIONS(3135), - [anon_sym_delete] = ACTIONS(3135), - [anon_sym_throw] = ACTIONS(3135), - [anon_sym_co_return] = ACTIONS(3135), - [anon_sym_co_yield] = ACTIONS(3135), - [anon_sym_R_DQUOTE] = ACTIONS(3137), - [anon_sym_LR_DQUOTE] = ACTIONS(3137), - [anon_sym_uR_DQUOTE] = ACTIONS(3137), - [anon_sym_UR_DQUOTE] = ACTIONS(3137), - [anon_sym_u8R_DQUOTE] = ACTIONS(3137), - [anon_sym_co_await] = ACTIONS(3135), - [anon_sym_new] = ACTIONS(3135), - [anon_sym_requires] = ACTIONS(3135), - [sym_this] = ACTIONS(3135), - [sym_nullptr] = ACTIONS(3135), + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token2] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, [1133] = { - [sym_identifier] = ACTIONS(3139), - [anon_sym_COMMA] = ACTIONS(3141), - [anon_sym_RPAREN] = ACTIONS(3141), - [anon_sym_LPAREN2] = ACTIONS(3141), - [anon_sym_BANG] = ACTIONS(3141), - [anon_sym_TILDE] = ACTIONS(3141), - [anon_sym_DASH] = ACTIONS(3139), - [anon_sym_PLUS] = ACTIONS(3139), - [anon_sym_STAR] = ACTIONS(3141), - [anon_sym_AMP_AMP] = ACTIONS(3141), - [anon_sym_AMP] = ACTIONS(3139), - [anon_sym_SEMI] = ACTIONS(3141), - [anon_sym_extern] = ACTIONS(3139), - [anon_sym___attribute__] = ACTIONS(3139), - [anon_sym_COLON_COLON] = ACTIONS(3141), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3141), - [anon_sym___declspec] = ACTIONS(3139), - [anon_sym___based] = ACTIONS(3139), - [anon_sym_LBRACE] = ACTIONS(3141), - [anon_sym_LBRACK] = ACTIONS(3139), - [anon_sym_EQ] = ACTIONS(3141), - [anon_sym_static] = ACTIONS(3139), - [anon_sym_register] = ACTIONS(3139), - [anon_sym_inline] = ACTIONS(3139), - [anon_sym_thread_local] = ACTIONS(3139), - [anon_sym_const] = ACTIONS(3139), - [anon_sym_volatile] = ACTIONS(3139), - [anon_sym_restrict] = ACTIONS(3139), - [anon_sym__Atomic] = ACTIONS(3139), - [anon_sym_mutable] = ACTIONS(3139), - [anon_sym_constexpr] = ACTIONS(3139), - [anon_sym_constinit] = ACTIONS(3139), - [anon_sym_consteval] = ACTIONS(3139), - [anon_sym_signed] = ACTIONS(3139), - [anon_sym_unsigned] = ACTIONS(3139), - [anon_sym_long] = ACTIONS(3139), - [anon_sym_short] = ACTIONS(3139), - [sym_primitive_type] = ACTIONS(3139), - [anon_sym_enum] = ACTIONS(3139), - [anon_sym_class] = ACTIONS(3139), - [anon_sym_struct] = ACTIONS(3139), - [anon_sym_union] = ACTIONS(3139), - [anon_sym_if] = ACTIONS(3139), - [anon_sym_switch] = ACTIONS(3139), - [anon_sym_case] = ACTIONS(3139), - [anon_sym_default] = ACTIONS(3139), - [anon_sym_while] = ACTIONS(3139), - [anon_sym_do] = ACTIONS(3139), - [anon_sym_for] = ACTIONS(3139), - [anon_sym_return] = ACTIONS(3139), - [anon_sym_break] = ACTIONS(3139), - [anon_sym_continue] = ACTIONS(3139), - [anon_sym_goto] = ACTIONS(3139), - [anon_sym_not] = ACTIONS(3139), - [anon_sym_compl] = ACTIONS(3139), - [anon_sym_DASH_DASH] = ACTIONS(3141), - [anon_sym_PLUS_PLUS] = ACTIONS(3141), - [anon_sym_sizeof] = ACTIONS(3139), - [sym_number_literal] = ACTIONS(3141), - [anon_sym_L_SQUOTE] = ACTIONS(3141), - [anon_sym_u_SQUOTE] = ACTIONS(3141), - [anon_sym_U_SQUOTE] = ACTIONS(3141), - [anon_sym_u8_SQUOTE] = ACTIONS(3141), - [anon_sym_SQUOTE] = ACTIONS(3141), - [anon_sym_L_DQUOTE] = ACTIONS(3141), - [anon_sym_u_DQUOTE] = ACTIONS(3141), - [anon_sym_U_DQUOTE] = ACTIONS(3141), - [anon_sym_u8_DQUOTE] = ACTIONS(3141), - [anon_sym_DQUOTE] = ACTIONS(3141), - [sym_true] = ACTIONS(3139), - [sym_false] = ACTIONS(3139), - [sym_null] = ACTIONS(3139), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3139), - [anon_sym_decltype] = ACTIONS(3139), - [anon_sym_virtual] = ACTIONS(3139), - [anon_sym_explicit] = ACTIONS(3139), - [anon_sym_typename] = ACTIONS(3139), - [anon_sym_template] = ACTIONS(3139), - [anon_sym_GT2] = ACTIONS(3141), - [anon_sym_operator] = ACTIONS(3139), - [anon_sym_try] = ACTIONS(3139), - [anon_sym_delete] = ACTIONS(3139), - [anon_sym_throw] = ACTIONS(3139), - [anon_sym_co_return] = ACTIONS(3139), - [anon_sym_co_yield] = ACTIONS(3139), - [anon_sym_R_DQUOTE] = ACTIONS(3141), - [anon_sym_LR_DQUOTE] = ACTIONS(3141), - [anon_sym_uR_DQUOTE] = ACTIONS(3141), - [anon_sym_UR_DQUOTE] = ACTIONS(3141), - [anon_sym_u8R_DQUOTE] = ACTIONS(3141), - [anon_sym_co_await] = ACTIONS(3139), - [anon_sym_new] = ACTIONS(3139), - [anon_sym_requires] = ACTIONS(3139), - [sym_this] = ACTIONS(3139), - [sym_nullptr] = ACTIONS(3139), + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token2] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, [1134] = { - [sym_ms_based_modifier] = STATE(6104), - [sym__declarator] = STATE(4880), - [sym_parenthesized_declarator] = STATE(4918), - [sym_attributed_declarator] = STATE(4918), - [sym_pointer_declarator] = STATE(4918), - [sym_function_declarator] = STATE(4918), - [sym_array_declarator] = STATE(4918), - [sym__expression] = STATE(2631), - [sym_conditional_expression] = STATE(2786), - [sym_assignment_expression] = STATE(2786), - [sym_pointer_expression] = STATE(2784), - [sym_unary_expression] = STATE(2786), - [sym_binary_expression] = STATE(2786), - [sym_update_expression] = STATE(2786), - [sym_cast_expression] = STATE(2786), - [sym_sizeof_expression] = STATE(2786), - [sym_subscript_expression] = STATE(2784), - [sym_call_expression] = STATE(2784), - [sym_field_expression] = STATE(2784), - [sym_compound_literal_expression] = STATE(2786), - [sym_parenthesized_expression] = STATE(2784), - [sym_char_literal] = STATE(2651), - [sym_concatenated_string] = STATE(2651), - [sym_string_literal] = STATE(1840), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5891), - [sym_reference_declarator] = STATE(4918), - [sym_structured_binding_declarator] = STATE(4918), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(2649), - [sym_raw_string_literal] = STATE(1840), - [sym_co_await_expression] = STATE(2786), - [sym_new_expression] = STATE(2786), - [sym_delete_expression] = STATE(2786), - [sym_requires_clause] = STATE(2786), - [sym_requires_expression] = STATE(2786), - [sym_lambda_expression] = STATE(2786), - [sym_lambda_capture_specifier] = STATE(4484), - [sym_fold_expression] = STATE(2786), - [sym_parameter_pack_expansion] = STATE(2786), - [sym_destructor_name] = STATE(4918), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4552), - [sym_qualified_identifier] = STATE(2647), - [sym_qualified_type_identifier] = STATE(5891), - [sym_operator_name] = STATE(4918), - [sym_user_defined_literal] = STATE(2786), - [sym_identifier] = ACTIONS(2714), - [anon_sym_LPAREN2] = ACTIONS(2716), - [anon_sym_BANG] = ACTIONS(1573), - [anon_sym_TILDE] = ACTIONS(2718), - [anon_sym_DASH] = ACTIONS(1571), - [anon_sym_PLUS] = ACTIONS(1571), - [anon_sym_STAR] = ACTIONS(1497), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1499), - [anon_sym_COLON_COLON] = ACTIONS(1577), - [anon_sym___based] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1501), - [sym_primitive_type] = ACTIONS(1581), - [anon_sym_not] = ACTIONS(1571), - [anon_sym_compl] = ACTIONS(1571), - [anon_sym_DASH_DASH] = ACTIONS(1583), - [anon_sym_PLUS_PLUS] = ACTIONS(1583), - [anon_sym_sizeof] = ACTIONS(1585), - [sym_number_literal] = ACTIONS(1587), - [anon_sym_L_SQUOTE] = ACTIONS(1589), - [anon_sym_u_SQUOTE] = ACTIONS(1589), - [anon_sym_U_SQUOTE] = ACTIONS(1589), - [anon_sym_u8_SQUOTE] = ACTIONS(1589), - [anon_sym_SQUOTE] = ACTIONS(1589), - [anon_sym_L_DQUOTE] = ACTIONS(1591), - [anon_sym_u_DQUOTE] = ACTIONS(1591), - [anon_sym_U_DQUOTE] = ACTIONS(1591), - [anon_sym_u8_DQUOTE] = ACTIONS(1591), - [anon_sym_DQUOTE] = ACTIONS(1591), - [sym_true] = ACTIONS(1593), - [sym_false] = ACTIONS(1593), - [sym_null] = ACTIONS(1593), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_operator] = ACTIONS(1521), - [anon_sym_delete] = ACTIONS(1595), - [anon_sym_R_DQUOTE] = ACTIONS(1597), - [anon_sym_LR_DQUOTE] = ACTIONS(1597), - [anon_sym_uR_DQUOTE] = ACTIONS(1597), - [anon_sym_UR_DQUOTE] = ACTIONS(1597), - [anon_sym_u8R_DQUOTE] = ACTIONS(1597), - [anon_sym_co_await] = ACTIONS(1599), - [anon_sym_new] = ACTIONS(1601), - [anon_sym_requires] = ACTIONS(1603), - [sym_this] = ACTIONS(1593), - [sym_nullptr] = ACTIONS(1593), + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token2] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, [1135] = { - [sym_ms_based_modifier] = STATE(6104), - [sym__declarator] = STATE(4880), - [sym_parenthesized_declarator] = STATE(4918), - [sym_attributed_declarator] = STATE(4918), - [sym_pointer_declarator] = STATE(4918), - [sym_function_declarator] = STATE(4918), - [sym_array_declarator] = STATE(4918), - [sym__expression] = STATE(2495), - [sym_conditional_expression] = STATE(2574), - [sym_assignment_expression] = STATE(2574), - [sym_pointer_expression] = STATE(2578), - [sym_unary_expression] = STATE(2574), - [sym_binary_expression] = STATE(2574), - [sym_update_expression] = STATE(2574), - [sym_cast_expression] = STATE(2574), - [sym_sizeof_expression] = STATE(2574), - [sym_subscript_expression] = STATE(2578), - [sym_call_expression] = STATE(2578), - [sym_field_expression] = STATE(2578), - [sym_compound_literal_expression] = STATE(2574), - [sym_parenthesized_expression] = STATE(2578), - [sym_char_literal] = STATE(2207), - [sym_concatenated_string] = STATE(2207), - [sym_string_literal] = STATE(1820), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5944), - [sym_reference_declarator] = STATE(4918), - [sym_structured_binding_declarator] = STATE(4918), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(2736), - [sym_raw_string_literal] = STATE(1820), - [sym_co_await_expression] = STATE(2574), - [sym_new_expression] = STATE(2574), - [sym_delete_expression] = STATE(2574), - [sym_requires_clause] = STATE(2574), - [sym_requires_expression] = STATE(2574), - [sym_lambda_expression] = STATE(2574), - [sym_lambda_capture_specifier] = STATE(4479), - [sym_fold_expression] = STATE(2574), - [sym_parameter_pack_expansion] = STATE(2574), - [sym_destructor_name] = STATE(4918), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4540), - [sym_qualified_identifier] = STATE(2735), - [sym_qualified_type_identifier] = STATE(5944), - [sym_operator_name] = STATE(4918), - [sym_user_defined_literal] = STATE(2574), - [sym_identifier] = ACTIONS(2846), - [anon_sym_LPAREN2] = ACTIONS(2848), - [anon_sym_BANG] = ACTIONS(1531), - [anon_sym_TILDE] = ACTIONS(2850), - [anon_sym_DASH] = ACTIONS(1529), - [anon_sym_PLUS] = ACTIONS(1529), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym___based] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1501), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(1529), - [anon_sym_compl] = ACTIONS(1529), - [anon_sym_DASH_DASH] = ACTIONS(1543), - [anon_sym_PLUS_PLUS] = ACTIONS(1543), - [anon_sym_sizeof] = ACTIONS(1545), - [sym_number_literal] = ACTIONS(1547), - [anon_sym_L_SQUOTE] = ACTIONS(1549), - [anon_sym_u_SQUOTE] = ACTIONS(1549), - [anon_sym_U_SQUOTE] = ACTIONS(1549), - [anon_sym_u8_SQUOTE] = ACTIONS(1549), - [anon_sym_SQUOTE] = ACTIONS(1549), - [anon_sym_L_DQUOTE] = ACTIONS(1551), - [anon_sym_u_DQUOTE] = ACTIONS(1551), - [anon_sym_U_DQUOTE] = ACTIONS(1551), - [anon_sym_u8_DQUOTE] = ACTIONS(1551), - [anon_sym_DQUOTE] = ACTIONS(1551), - [sym_true] = ACTIONS(1553), - [sym_false] = ACTIONS(1553), - [sym_null] = ACTIONS(1553), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_operator] = ACTIONS(1521), - [anon_sym_delete] = ACTIONS(1557), - [anon_sym_R_DQUOTE] = ACTIONS(1559), - [anon_sym_LR_DQUOTE] = ACTIONS(1559), - [anon_sym_uR_DQUOTE] = ACTIONS(1559), - [anon_sym_UR_DQUOTE] = ACTIONS(1559), - [anon_sym_u8R_DQUOTE] = ACTIONS(1559), - [anon_sym_co_await] = ACTIONS(1561), - [anon_sym_new] = ACTIONS(1563), - [anon_sym_requires] = ACTIONS(1565), - [sym_this] = ACTIONS(1553), - [sym_nullptr] = ACTIONS(1553), + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token2] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, [1136] = { - [sym_identifier] = ACTIONS(3143), - [anon_sym_LPAREN2] = ACTIONS(3146), - [anon_sym_BANG] = ACTIONS(3149), - [anon_sym_TILDE] = ACTIONS(3146), - [anon_sym_DASH] = ACTIONS(3151), - [anon_sym_PLUS] = ACTIONS(3151), - [anon_sym_STAR] = ACTIONS(3146), - [anon_sym_AMP_AMP] = ACTIONS(3153), - [anon_sym_AMP] = ACTIONS(3143), - [anon_sym_SEMI] = ACTIONS(3149), - [anon_sym_extern] = ACTIONS(3155), - [anon_sym___attribute__] = ACTIONS(3155), - [anon_sym_COLON_COLON] = ACTIONS(3146), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3146), - [anon_sym___declspec] = ACTIONS(3155), - [anon_sym___based] = ACTIONS(3155), - [anon_sym_LBRACE] = ACTIONS(3149), - [anon_sym_LBRACK] = ACTIONS(3143), - [anon_sym_static] = ACTIONS(3155), - [anon_sym_register] = ACTIONS(3155), - [anon_sym_inline] = ACTIONS(3155), - [anon_sym_thread_local] = ACTIONS(3155), - [anon_sym_const] = ACTIONS(3155), - [anon_sym_volatile] = ACTIONS(3155), - [anon_sym_restrict] = ACTIONS(3155), - [anon_sym__Atomic] = ACTIONS(3155), - [anon_sym_mutable] = ACTIONS(3155), - [anon_sym_constexpr] = ACTIONS(3155), - [anon_sym_constinit] = ACTIONS(3155), - [anon_sym_consteval] = ACTIONS(3155), - [anon_sym_signed] = ACTIONS(3155), - [anon_sym_unsigned] = ACTIONS(3155), - [anon_sym_long] = ACTIONS(3155), - [anon_sym_short] = ACTIONS(3155), - [sym_primitive_type] = ACTIONS(3143), - [anon_sym_enum] = ACTIONS(3155), - [anon_sym_class] = ACTIONS(3155), - [anon_sym_struct] = ACTIONS(3155), - [anon_sym_union] = ACTIONS(3155), - [anon_sym_if] = ACTIONS(3151), - [anon_sym_switch] = ACTIONS(3151), - [anon_sym_case] = ACTIONS(3151), - [anon_sym_default] = ACTIONS(3151), - [anon_sym_while] = ACTIONS(3151), - [anon_sym_do] = ACTIONS(3151), - [anon_sym_for] = ACTIONS(3151), - [anon_sym_return] = ACTIONS(3151), - [anon_sym_break] = ACTIONS(3151), - [anon_sym_continue] = ACTIONS(3151), - [anon_sym_goto] = ACTIONS(3151), - [anon_sym_not] = ACTIONS(3151), - [anon_sym_compl] = ACTIONS(3151), - [anon_sym_DASH_DASH] = ACTIONS(3149), - [anon_sym_PLUS_PLUS] = ACTIONS(3149), - [anon_sym_sizeof] = ACTIONS(3151), - [sym_number_literal] = ACTIONS(3149), - [anon_sym_L_SQUOTE] = ACTIONS(3149), - [anon_sym_u_SQUOTE] = ACTIONS(3149), - [anon_sym_U_SQUOTE] = ACTIONS(3149), - [anon_sym_u8_SQUOTE] = ACTIONS(3149), - [anon_sym_SQUOTE] = ACTIONS(3149), - [anon_sym_L_DQUOTE] = ACTIONS(3149), - [anon_sym_u_DQUOTE] = ACTIONS(3149), - [anon_sym_U_DQUOTE] = ACTIONS(3149), - [anon_sym_u8_DQUOTE] = ACTIONS(3149), - [anon_sym_DQUOTE] = ACTIONS(3149), - [sym_true] = ACTIONS(3151), - [sym_false] = ACTIONS(3151), - [sym_null] = ACTIONS(3151), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3155), - [anon_sym_decltype] = ACTIONS(3143), - [anon_sym_virtual] = ACTIONS(3155), - [anon_sym_explicit] = ACTIONS(3155), - [anon_sym_typename] = ACTIONS(3155), - [anon_sym_template] = ACTIONS(3143), - [anon_sym_operator] = ACTIONS(3155), - [anon_sym_try] = ACTIONS(3151), - [anon_sym_delete] = ACTIONS(3151), - [anon_sym_throw] = ACTIONS(3151), - [anon_sym_co_return] = ACTIONS(3151), - [anon_sym_co_yield] = ACTIONS(3151), - [anon_sym_R_DQUOTE] = ACTIONS(3149), - [anon_sym_LR_DQUOTE] = ACTIONS(3149), - [anon_sym_uR_DQUOTE] = ACTIONS(3149), - [anon_sym_UR_DQUOTE] = ACTIONS(3149), - [anon_sym_u8R_DQUOTE] = ACTIONS(3149), - [anon_sym_co_await] = ACTIONS(3151), - [anon_sym_new] = ACTIONS(3151), - [anon_sym_requires] = ACTIONS(3151), - [sym_this] = ACTIONS(3151), - [sym_nullptr] = ACTIONS(3151), + [sym_identifier] = ACTIONS(3016), + [aux_sym_preproc_include_token1] = ACTIONS(3016), + [aux_sym_preproc_def_token1] = ACTIONS(3016), + [aux_sym_preproc_if_token1] = ACTIONS(3016), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3016), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3016), + [sym_preproc_directive] = ACTIONS(3016), + [anon_sym_LPAREN2] = ACTIONS(3018), + [anon_sym_BANG] = ACTIONS(3018), + [anon_sym_TILDE] = ACTIONS(3018), + [anon_sym_DASH] = ACTIONS(3016), + [anon_sym_PLUS] = ACTIONS(3016), + [anon_sym_STAR] = ACTIONS(3018), + [anon_sym_AMP_AMP] = ACTIONS(3018), + [anon_sym_AMP] = ACTIONS(3016), + [anon_sym_SEMI] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3016), + [anon_sym_extern] = ACTIONS(3016), + [anon_sym___attribute__] = ACTIONS(3016), + [anon_sym_COLON_COLON] = ACTIONS(3018), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3018), + [anon_sym___declspec] = ACTIONS(3016), + [anon_sym___based] = ACTIONS(3016), + [anon_sym___cdecl] = ACTIONS(3016), + [anon_sym___clrcall] = ACTIONS(3016), + [anon_sym___stdcall] = ACTIONS(3016), + [anon_sym___fastcall] = ACTIONS(3016), + [anon_sym___thiscall] = ACTIONS(3016), + [anon_sym___vectorcall] = ACTIONS(3016), + [anon_sym_LBRACE] = ACTIONS(3018), + [anon_sym_RBRACE] = ACTIONS(3018), + [anon_sym_LBRACK] = ACTIONS(3016), + [anon_sym_static] = ACTIONS(3016), + [anon_sym_register] = ACTIONS(3016), + [anon_sym_inline] = ACTIONS(3016), + [anon_sym_thread_local] = ACTIONS(3016), + [anon_sym_const] = ACTIONS(3016), + [anon_sym_constexpr] = ACTIONS(3016), + [anon_sym_volatile] = ACTIONS(3016), + [anon_sym_restrict] = ACTIONS(3016), + [anon_sym___restrict__] = ACTIONS(3016), + [anon_sym__Atomic] = ACTIONS(3016), + [anon_sym__Noreturn] = ACTIONS(3016), + [anon_sym_noreturn] = ACTIONS(3016), + [anon_sym_mutable] = ACTIONS(3016), + [anon_sym_constinit] = ACTIONS(3016), + [anon_sym_consteval] = ACTIONS(3016), + [anon_sym_signed] = ACTIONS(3016), + [anon_sym_unsigned] = ACTIONS(3016), + [anon_sym_long] = ACTIONS(3016), + [anon_sym_short] = ACTIONS(3016), + [sym_primitive_type] = ACTIONS(3016), + [anon_sym_enum] = ACTIONS(3016), + [anon_sym_class] = ACTIONS(3016), + [anon_sym_struct] = ACTIONS(3016), + [anon_sym_union] = ACTIONS(3016), + [anon_sym_if] = ACTIONS(3016), + [anon_sym_else] = ACTIONS(3016), + [anon_sym_switch] = ACTIONS(3016), + [anon_sym_case] = ACTIONS(3016), + [anon_sym_default] = ACTIONS(3016), + [anon_sym_while] = ACTIONS(3016), + [anon_sym_do] = ACTIONS(3016), + [anon_sym_for] = ACTIONS(3016), + [anon_sym_return] = ACTIONS(3016), + [anon_sym_break] = ACTIONS(3016), + [anon_sym_continue] = ACTIONS(3016), + [anon_sym_goto] = ACTIONS(3016), + [anon_sym_not] = ACTIONS(3016), + [anon_sym_compl] = ACTIONS(3016), + [anon_sym_DASH_DASH] = ACTIONS(3018), + [anon_sym_PLUS_PLUS] = ACTIONS(3018), + [anon_sym_sizeof] = ACTIONS(3016), + [anon_sym_offsetof] = ACTIONS(3016), + [anon_sym__Generic] = ACTIONS(3016), + [anon_sym_asm] = ACTIONS(3016), + [anon_sym___asm__] = ACTIONS(3016), + [sym_number_literal] = ACTIONS(3018), + [anon_sym_L_SQUOTE] = ACTIONS(3018), + [anon_sym_u_SQUOTE] = ACTIONS(3018), + [anon_sym_U_SQUOTE] = ACTIONS(3018), + [anon_sym_u8_SQUOTE] = ACTIONS(3018), + [anon_sym_SQUOTE] = ACTIONS(3018), + [anon_sym_L_DQUOTE] = ACTIONS(3018), + [anon_sym_u_DQUOTE] = ACTIONS(3018), + [anon_sym_U_DQUOTE] = ACTIONS(3018), + [anon_sym_u8_DQUOTE] = ACTIONS(3018), + [anon_sym_DQUOTE] = ACTIONS(3018), + [sym_true] = ACTIONS(3016), + [sym_false] = ACTIONS(3016), + [anon_sym_NULL] = ACTIONS(3016), + [anon_sym_nullptr] = ACTIONS(3016), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3016), + [anon_sym_decltype] = ACTIONS(3016), + [anon_sym_virtual] = ACTIONS(3016), + [anon_sym_explicit] = ACTIONS(3016), + [anon_sym_typename] = ACTIONS(3016), + [anon_sym_template] = ACTIONS(3016), + [anon_sym_operator] = ACTIONS(3016), + [anon_sym_try] = ACTIONS(3016), + [anon_sym_delete] = ACTIONS(3016), + [anon_sym_throw] = ACTIONS(3016), + [anon_sym_namespace] = ACTIONS(3016), + [anon_sym_using] = ACTIONS(3016), + [anon_sym_static_assert] = ACTIONS(3016), + [anon_sym_concept] = ACTIONS(3016), + [anon_sym_co_return] = ACTIONS(3016), + [anon_sym_co_yield] = ACTIONS(3016), + [anon_sym_R_DQUOTE] = ACTIONS(3018), + [anon_sym_LR_DQUOTE] = ACTIONS(3018), + [anon_sym_uR_DQUOTE] = ACTIONS(3018), + [anon_sym_UR_DQUOTE] = ACTIONS(3018), + [anon_sym_u8R_DQUOTE] = ACTIONS(3018), + [anon_sym_co_await] = ACTIONS(3016), + [anon_sym_new] = ACTIONS(3016), + [anon_sym_requires] = ACTIONS(3016), + [sym_this] = ACTIONS(3016), }, [1137] = { - [sym_catch_clause] = STATE(1150), - [aux_sym_constructor_try_statement_repeat1] = STATE(1150), - [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_AMP] = ACTIONS(2370), - [anon_sym_SEMI] = ACTIONS(2370), - [anon_sym_typedef] = ACTIONS(2368), - [anon_sym_extern] = ACTIONS(2368), - [anon_sym___attribute__] = ACTIONS(2368), - [anon_sym_COLON_COLON] = ACTIONS(2370), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2370), - [anon_sym___declspec] = ACTIONS(2368), - [anon_sym_LBRACE] = ACTIONS(2370), - [anon_sym_LBRACK] = ACTIONS(2368), - [anon_sym_static] = ACTIONS(2368), - [anon_sym_register] = ACTIONS(2368), - [anon_sym_inline] = ACTIONS(2368), - [anon_sym_thread_local] = ACTIONS(2368), - [anon_sym_const] = ACTIONS(2368), - [anon_sym_volatile] = ACTIONS(2368), - [anon_sym_restrict] = ACTIONS(2368), - [anon_sym__Atomic] = ACTIONS(2368), - [anon_sym_mutable] = ACTIONS(2368), - [anon_sym_constexpr] = ACTIONS(2368), - [anon_sym_constinit] = ACTIONS(2368), - [anon_sym_consteval] = ACTIONS(2368), - [anon_sym_signed] = ACTIONS(2368), - [anon_sym_unsigned] = ACTIONS(2368), - [anon_sym_long] = ACTIONS(2368), - [anon_sym_short] = ACTIONS(2368), - [sym_primitive_type] = ACTIONS(2368), - [anon_sym_enum] = ACTIONS(2368), - [anon_sym_class] = ACTIONS(2368), - [anon_sym_struct] = ACTIONS(2368), - [anon_sym_union] = ACTIONS(2368), - [anon_sym_if] = ACTIONS(2368), - [anon_sym_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_return] = ACTIONS(2368), - [anon_sym_break] = ACTIONS(2368), - [anon_sym_continue] = ACTIONS(2368), - [anon_sym_goto] = ACTIONS(2368), - [anon_sym_not] = ACTIONS(2368), - [anon_sym_compl] = ACTIONS(2368), - [anon_sym_DASH_DASH] = ACTIONS(2370), - [anon_sym_PLUS_PLUS] = ACTIONS(2370), - [anon_sym_sizeof] = ACTIONS(2368), - [sym_number_literal] = ACTIONS(2370), - [anon_sym_L_SQUOTE] = ACTIONS(2370), - [anon_sym_u_SQUOTE] = ACTIONS(2370), - [anon_sym_U_SQUOTE] = ACTIONS(2370), - [anon_sym_u8_SQUOTE] = ACTIONS(2370), - [anon_sym_SQUOTE] = ACTIONS(2370), - [anon_sym_L_DQUOTE] = ACTIONS(2370), - [anon_sym_u_DQUOTE] = ACTIONS(2370), - [anon_sym_U_DQUOTE] = ACTIONS(2370), - [anon_sym_u8_DQUOTE] = ACTIONS(2370), - [anon_sym_DQUOTE] = ACTIONS(2370), - [sym_true] = ACTIONS(2368), - [sym_false] = ACTIONS(2368), - [sym_null] = ACTIONS(2368), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2368), - [anon_sym_decltype] = ACTIONS(2368), - [anon_sym_virtual] = ACTIONS(2368), - [anon_sym_typename] = ACTIONS(2368), - [anon_sym_template] = ACTIONS(2368), - [anon_sym_try] = ACTIONS(2368), - [anon_sym_delete] = ACTIONS(2368), - [anon_sym_throw] = ACTIONS(2368), - [anon_sym_co_return] = ACTIONS(2368), - [anon_sym_co_yield] = ACTIONS(2368), - [anon_sym_catch] = ACTIONS(3157), - [anon_sym_R_DQUOTE] = ACTIONS(2370), - [anon_sym_LR_DQUOTE] = ACTIONS(2370), - [anon_sym_uR_DQUOTE] = ACTIONS(2370), - [anon_sym_UR_DQUOTE] = ACTIONS(2370), - [anon_sym_u8R_DQUOTE] = ACTIONS(2370), - [anon_sym_co_await] = ACTIONS(2368), - [anon_sym_new] = ACTIONS(2368), - [anon_sym_requires] = ACTIONS(2368), - [sym_this] = ACTIONS(2368), - [sym_nullptr] = ACTIONS(2368), + [sym_identifier] = ACTIONS(3032), + [aux_sym_preproc_include_token1] = ACTIONS(3032), + [aux_sym_preproc_def_token1] = ACTIONS(3032), + [aux_sym_preproc_if_token1] = ACTIONS(3032), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3032), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3032), + [sym_preproc_directive] = ACTIONS(3032), + [anon_sym_LPAREN2] = ACTIONS(3034), + [anon_sym_BANG] = ACTIONS(3034), + [anon_sym_TILDE] = ACTIONS(3034), + [anon_sym_DASH] = ACTIONS(3032), + [anon_sym_PLUS] = ACTIONS(3032), + [anon_sym_STAR] = ACTIONS(3034), + [anon_sym_AMP_AMP] = ACTIONS(3034), + [anon_sym_AMP] = ACTIONS(3032), + [anon_sym_SEMI] = ACTIONS(3034), + [anon_sym_typedef] = ACTIONS(3032), + [anon_sym_extern] = ACTIONS(3032), + [anon_sym___attribute__] = ACTIONS(3032), + [anon_sym_COLON_COLON] = ACTIONS(3034), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3034), + [anon_sym___declspec] = ACTIONS(3032), + [anon_sym___based] = ACTIONS(3032), + [anon_sym___cdecl] = ACTIONS(3032), + [anon_sym___clrcall] = ACTIONS(3032), + [anon_sym___stdcall] = ACTIONS(3032), + [anon_sym___fastcall] = ACTIONS(3032), + [anon_sym___thiscall] = ACTIONS(3032), + [anon_sym___vectorcall] = ACTIONS(3032), + [anon_sym_LBRACE] = ACTIONS(3034), + [anon_sym_RBRACE] = ACTIONS(3034), + [anon_sym_LBRACK] = ACTIONS(3032), + [anon_sym_static] = ACTIONS(3032), + [anon_sym_register] = ACTIONS(3032), + [anon_sym_inline] = ACTIONS(3032), + [anon_sym_thread_local] = ACTIONS(3032), + [anon_sym_const] = ACTIONS(3032), + [anon_sym_constexpr] = ACTIONS(3032), + [anon_sym_volatile] = ACTIONS(3032), + [anon_sym_restrict] = ACTIONS(3032), + [anon_sym___restrict__] = ACTIONS(3032), + [anon_sym__Atomic] = ACTIONS(3032), + [anon_sym__Noreturn] = ACTIONS(3032), + [anon_sym_noreturn] = ACTIONS(3032), + [anon_sym_mutable] = ACTIONS(3032), + [anon_sym_constinit] = ACTIONS(3032), + [anon_sym_consteval] = ACTIONS(3032), + [anon_sym_signed] = ACTIONS(3032), + [anon_sym_unsigned] = ACTIONS(3032), + [anon_sym_long] = ACTIONS(3032), + [anon_sym_short] = ACTIONS(3032), + [sym_primitive_type] = ACTIONS(3032), + [anon_sym_enum] = ACTIONS(3032), + [anon_sym_class] = ACTIONS(3032), + [anon_sym_struct] = ACTIONS(3032), + [anon_sym_union] = ACTIONS(3032), + [anon_sym_if] = ACTIONS(3032), + [anon_sym_else] = ACTIONS(3032), + [anon_sym_switch] = ACTIONS(3032), + [anon_sym_case] = ACTIONS(3032), + [anon_sym_default] = ACTIONS(3032), + [anon_sym_while] = ACTIONS(3032), + [anon_sym_do] = ACTIONS(3032), + [anon_sym_for] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3032), + [anon_sym_break] = ACTIONS(3032), + [anon_sym_continue] = ACTIONS(3032), + [anon_sym_goto] = ACTIONS(3032), + [anon_sym_not] = ACTIONS(3032), + [anon_sym_compl] = ACTIONS(3032), + [anon_sym_DASH_DASH] = ACTIONS(3034), + [anon_sym_PLUS_PLUS] = ACTIONS(3034), + [anon_sym_sizeof] = ACTIONS(3032), + [anon_sym_offsetof] = ACTIONS(3032), + [anon_sym__Generic] = ACTIONS(3032), + [anon_sym_asm] = ACTIONS(3032), + [anon_sym___asm__] = ACTIONS(3032), + [sym_number_literal] = ACTIONS(3034), + [anon_sym_L_SQUOTE] = ACTIONS(3034), + [anon_sym_u_SQUOTE] = ACTIONS(3034), + [anon_sym_U_SQUOTE] = ACTIONS(3034), + [anon_sym_u8_SQUOTE] = ACTIONS(3034), + [anon_sym_SQUOTE] = ACTIONS(3034), + [anon_sym_L_DQUOTE] = ACTIONS(3034), + [anon_sym_u_DQUOTE] = ACTIONS(3034), + [anon_sym_U_DQUOTE] = ACTIONS(3034), + [anon_sym_u8_DQUOTE] = ACTIONS(3034), + [anon_sym_DQUOTE] = ACTIONS(3034), + [sym_true] = ACTIONS(3032), + [sym_false] = ACTIONS(3032), + [anon_sym_NULL] = ACTIONS(3032), + [anon_sym_nullptr] = ACTIONS(3032), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3032), + [anon_sym_decltype] = ACTIONS(3032), + [anon_sym_virtual] = ACTIONS(3032), + [anon_sym_explicit] = ACTIONS(3032), + [anon_sym_typename] = ACTIONS(3032), + [anon_sym_template] = ACTIONS(3032), + [anon_sym_operator] = ACTIONS(3032), + [anon_sym_try] = ACTIONS(3032), + [anon_sym_delete] = ACTIONS(3032), + [anon_sym_throw] = ACTIONS(3032), + [anon_sym_namespace] = ACTIONS(3032), + [anon_sym_using] = ACTIONS(3032), + [anon_sym_static_assert] = ACTIONS(3032), + [anon_sym_concept] = ACTIONS(3032), + [anon_sym_co_return] = ACTIONS(3032), + [anon_sym_co_yield] = ACTIONS(3032), + [anon_sym_R_DQUOTE] = ACTIONS(3034), + [anon_sym_LR_DQUOTE] = ACTIONS(3034), + [anon_sym_uR_DQUOTE] = ACTIONS(3034), + [anon_sym_UR_DQUOTE] = ACTIONS(3034), + [anon_sym_u8R_DQUOTE] = ACTIONS(3034), + [anon_sym_co_await] = ACTIONS(3032), + [anon_sym_new] = ACTIONS(3032), + [anon_sym_requires] = ACTIONS(3032), + [sym_this] = ACTIONS(3032), }, [1138] = { - [sym_type_qualifier] = STATE(2223), - [sym__expression] = STATE(3710), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2984), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2984), - [sym_call_expression] = STATE(2984), - [sym_field_expression] = STATE(2984), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2984), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2984), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_type_definition_repeat1] = STATE(2223), - [sym_identifier] = ACTIONS(3047), - [anon_sym_LPAREN2] = ACTIONS(3049), - [anon_sym_BANG] = ACTIONS(3053), - [anon_sym_TILDE] = ACTIONS(3053), - [anon_sym_DASH] = ACTIONS(3051), - [anon_sym_PLUS] = ACTIONS(3051), - [anon_sym_STAR] = ACTIONS(3159), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(3055), - [anon_sym_LBRACK] = ACTIONS(1539), - [anon_sym_RBRACK] = ACTIONS(3161), - [anon_sym_const] = ACTIONS(3163), - [anon_sym_volatile] = ACTIONS(3163), - [anon_sym_restrict] = ACTIONS(3163), - [anon_sym__Atomic] = ACTIONS(3163), - [anon_sym_mutable] = ACTIONS(3163), - [anon_sym_constexpr] = ACTIONS(3163), - [anon_sym_constinit] = ACTIONS(3163), - [anon_sym_consteval] = ACTIONS(3163), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(3051), - [anon_sym_compl] = ACTIONS(3051), - [anon_sym_DASH_DASH] = ACTIONS(3057), - [anon_sym_PLUS_PLUS] = ACTIONS(3057), - [anon_sym_sizeof] = ACTIONS(3059), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(3061), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(3063), - [anon_sym_new] = ACTIONS(3065), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token2] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, [1139] = { - [sym_type_qualifier] = STATE(1146), - [sym__expression] = STATE(3793), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2984), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2984), - [sym_call_expression] = STATE(2984), - [sym_field_expression] = STATE(2984), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2984), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2984), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_type_definition_repeat1] = STATE(1146), - [sym_identifier] = ACTIONS(3047), - [anon_sym_LPAREN2] = ACTIONS(3049), - [anon_sym_BANG] = ACTIONS(3053), - [anon_sym_TILDE] = ACTIONS(3053), - [anon_sym_DASH] = ACTIONS(3051), - [anon_sym_PLUS] = ACTIONS(3051), - [anon_sym_STAR] = ACTIONS(3165), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(3055), - [anon_sym_LBRACK] = ACTIONS(1539), - [anon_sym_RBRACK] = ACTIONS(3167), - [anon_sym_const] = ACTIONS(3163), - [anon_sym_volatile] = ACTIONS(3163), - [anon_sym_restrict] = ACTIONS(3163), - [anon_sym__Atomic] = ACTIONS(3163), - [anon_sym_mutable] = ACTIONS(3163), - [anon_sym_constexpr] = ACTIONS(3163), - [anon_sym_constinit] = ACTIONS(3163), - [anon_sym_consteval] = ACTIONS(3163), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(3051), - [anon_sym_compl] = ACTIONS(3051), - [anon_sym_DASH_DASH] = ACTIONS(3057), - [anon_sym_PLUS_PLUS] = ACTIONS(3057), - [anon_sym_sizeof] = ACTIONS(3059), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(3061), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(3063), - [anon_sym_new] = ACTIONS(3065), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [ts_builtin_sym_end] = ACTIONS(2998), + [sym_identifier] = ACTIONS(2996), + [aux_sym_preproc_include_token1] = ACTIONS(2996), + [aux_sym_preproc_def_token1] = ACTIONS(2996), + [aux_sym_preproc_if_token1] = ACTIONS(2996), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2996), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2996), + [sym_preproc_directive] = ACTIONS(2996), + [anon_sym_LPAREN2] = ACTIONS(2998), + [anon_sym_BANG] = ACTIONS(2998), + [anon_sym_TILDE] = ACTIONS(2998), + [anon_sym_DASH] = ACTIONS(2996), + [anon_sym_PLUS] = ACTIONS(2996), + [anon_sym_STAR] = ACTIONS(2998), + [anon_sym_AMP_AMP] = ACTIONS(2998), + [anon_sym_AMP] = ACTIONS(2996), + [anon_sym_SEMI] = ACTIONS(2998), + [anon_sym_typedef] = ACTIONS(2996), + [anon_sym_extern] = ACTIONS(2996), + [anon_sym___attribute__] = ACTIONS(2996), + [anon_sym_COLON_COLON] = ACTIONS(2998), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2998), + [anon_sym___declspec] = ACTIONS(2996), + [anon_sym___based] = ACTIONS(2996), + [anon_sym___cdecl] = ACTIONS(2996), + [anon_sym___clrcall] = ACTIONS(2996), + [anon_sym___stdcall] = ACTIONS(2996), + [anon_sym___fastcall] = ACTIONS(2996), + [anon_sym___thiscall] = ACTIONS(2996), + [anon_sym___vectorcall] = ACTIONS(2996), + [anon_sym_LBRACE] = ACTIONS(2998), + [anon_sym_LBRACK] = ACTIONS(2996), + [anon_sym_static] = ACTIONS(2996), + [anon_sym_register] = ACTIONS(2996), + [anon_sym_inline] = ACTIONS(2996), + [anon_sym_thread_local] = ACTIONS(2996), + [anon_sym_const] = ACTIONS(2996), + [anon_sym_constexpr] = ACTIONS(2996), + [anon_sym_volatile] = ACTIONS(2996), + [anon_sym_restrict] = ACTIONS(2996), + [anon_sym___restrict__] = ACTIONS(2996), + [anon_sym__Atomic] = ACTIONS(2996), + [anon_sym__Noreturn] = ACTIONS(2996), + [anon_sym_noreturn] = ACTIONS(2996), + [anon_sym_mutable] = ACTIONS(2996), + [anon_sym_constinit] = ACTIONS(2996), + [anon_sym_consteval] = ACTIONS(2996), + [anon_sym_signed] = ACTIONS(2996), + [anon_sym_unsigned] = ACTIONS(2996), + [anon_sym_long] = ACTIONS(2996), + [anon_sym_short] = ACTIONS(2996), + [sym_primitive_type] = ACTIONS(2996), + [anon_sym_enum] = ACTIONS(2996), + [anon_sym_class] = ACTIONS(2996), + [anon_sym_struct] = ACTIONS(2996), + [anon_sym_union] = ACTIONS(2996), + [anon_sym_if] = ACTIONS(2996), + [anon_sym_else] = ACTIONS(2996), + [anon_sym_switch] = ACTIONS(2996), + [anon_sym_case] = ACTIONS(2996), + [anon_sym_default] = ACTIONS(2996), + [anon_sym_while] = ACTIONS(2996), + [anon_sym_do] = ACTIONS(2996), + [anon_sym_for] = ACTIONS(2996), + [anon_sym_return] = ACTIONS(2996), + [anon_sym_break] = ACTIONS(2996), + [anon_sym_continue] = ACTIONS(2996), + [anon_sym_goto] = ACTIONS(2996), + [anon_sym_not] = ACTIONS(2996), + [anon_sym_compl] = ACTIONS(2996), + [anon_sym_DASH_DASH] = ACTIONS(2998), + [anon_sym_PLUS_PLUS] = ACTIONS(2998), + [anon_sym_sizeof] = ACTIONS(2996), + [anon_sym_offsetof] = ACTIONS(2996), + [anon_sym__Generic] = ACTIONS(2996), + [anon_sym_asm] = ACTIONS(2996), + [anon_sym___asm__] = ACTIONS(2996), + [sym_number_literal] = ACTIONS(2998), + [anon_sym_L_SQUOTE] = ACTIONS(2998), + [anon_sym_u_SQUOTE] = ACTIONS(2998), + [anon_sym_U_SQUOTE] = ACTIONS(2998), + [anon_sym_u8_SQUOTE] = ACTIONS(2998), + [anon_sym_SQUOTE] = ACTIONS(2998), + [anon_sym_L_DQUOTE] = ACTIONS(2998), + [anon_sym_u_DQUOTE] = ACTIONS(2998), + [anon_sym_U_DQUOTE] = ACTIONS(2998), + [anon_sym_u8_DQUOTE] = ACTIONS(2998), + [anon_sym_DQUOTE] = ACTIONS(2998), + [sym_true] = ACTIONS(2996), + [sym_false] = ACTIONS(2996), + [anon_sym_NULL] = ACTIONS(2996), + [anon_sym_nullptr] = ACTIONS(2996), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2996), + [anon_sym_decltype] = ACTIONS(2996), + [anon_sym_virtual] = ACTIONS(2996), + [anon_sym_explicit] = ACTIONS(2996), + [anon_sym_typename] = ACTIONS(2996), + [anon_sym_template] = ACTIONS(2996), + [anon_sym_operator] = ACTIONS(2996), + [anon_sym_try] = ACTIONS(2996), + [anon_sym_delete] = ACTIONS(2996), + [anon_sym_throw] = ACTIONS(2996), + [anon_sym_namespace] = ACTIONS(2996), + [anon_sym_using] = ACTIONS(2996), + [anon_sym_static_assert] = ACTIONS(2996), + [anon_sym_concept] = ACTIONS(2996), + [anon_sym_co_return] = ACTIONS(2996), + [anon_sym_co_yield] = ACTIONS(2996), + [anon_sym_R_DQUOTE] = ACTIONS(2998), + [anon_sym_LR_DQUOTE] = ACTIONS(2998), + [anon_sym_uR_DQUOTE] = ACTIONS(2998), + [anon_sym_UR_DQUOTE] = ACTIONS(2998), + [anon_sym_u8R_DQUOTE] = ACTIONS(2998), + [anon_sym_co_await] = ACTIONS(2996), + [anon_sym_new] = ACTIONS(2996), + [anon_sym_requires] = ACTIONS(2996), + [sym_this] = ACTIONS(2996), }, [1140] = { - [sym_type_qualifier] = STATE(1148), - [sym__expression] = STATE(3806), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2984), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2984), - [sym_call_expression] = STATE(2984), - [sym_field_expression] = STATE(2984), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2984), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2984), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_type_definition_repeat1] = STATE(1148), - [sym_identifier] = ACTIONS(3047), - [anon_sym_LPAREN2] = ACTIONS(3049), - [anon_sym_BANG] = ACTIONS(3053), - [anon_sym_TILDE] = ACTIONS(3053), - [anon_sym_DASH] = ACTIONS(3051), - [anon_sym_PLUS] = ACTIONS(3051), - [anon_sym_STAR] = ACTIONS(3169), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(3055), - [anon_sym_LBRACK] = ACTIONS(1539), - [anon_sym_RBRACK] = ACTIONS(3171), - [anon_sym_const] = ACTIONS(3163), - [anon_sym_volatile] = ACTIONS(3163), - [anon_sym_restrict] = ACTIONS(3163), - [anon_sym__Atomic] = ACTIONS(3163), - [anon_sym_mutable] = ACTIONS(3163), - [anon_sym_constexpr] = ACTIONS(3163), - [anon_sym_constinit] = ACTIONS(3163), - [anon_sym_consteval] = ACTIONS(3163), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(3051), - [anon_sym_compl] = ACTIONS(3051), - [anon_sym_DASH_DASH] = ACTIONS(3057), - [anon_sym_PLUS_PLUS] = ACTIONS(3057), - [anon_sym_sizeof] = ACTIONS(3059), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(3061), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(3063), - [anon_sym_new] = ACTIONS(3065), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [ts_builtin_sym_end] = ACTIONS(3030), + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, [1141] = { - [sym_type_qualifier] = STATE(1149), - [sym__expression] = STATE(3771), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2984), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2984), - [sym_call_expression] = STATE(2984), - [sym_field_expression] = STATE(2984), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2984), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2984), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_type_definition_repeat1] = STATE(1149), - [sym_identifier] = ACTIONS(3047), - [anon_sym_LPAREN2] = ACTIONS(3049), - [anon_sym_BANG] = ACTIONS(3053), - [anon_sym_TILDE] = ACTIONS(3053), - [anon_sym_DASH] = ACTIONS(3051), - [anon_sym_PLUS] = ACTIONS(3051), - [anon_sym_STAR] = ACTIONS(3173), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(3055), - [anon_sym_LBRACK] = ACTIONS(1539), - [anon_sym_RBRACK] = ACTIONS(3175), - [anon_sym_const] = ACTIONS(3163), - [anon_sym_volatile] = ACTIONS(3163), - [anon_sym_restrict] = ACTIONS(3163), - [anon_sym__Atomic] = ACTIONS(3163), - [anon_sym_mutable] = ACTIONS(3163), - [anon_sym_constexpr] = ACTIONS(3163), - [anon_sym_constinit] = ACTIONS(3163), - [anon_sym_consteval] = ACTIONS(3163), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(3051), - [anon_sym_compl] = ACTIONS(3051), - [anon_sym_DASH_DASH] = ACTIONS(3057), - [anon_sym_PLUS_PLUS] = ACTIONS(3057), - [anon_sym_sizeof] = ACTIONS(3059), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(3061), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(3063), - [anon_sym_new] = ACTIONS(3065), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token2] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, [1142] = { - [sym_type_qualifier] = STATE(1138), - [sym__expression] = STATE(3748), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2984), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2984), - [sym_call_expression] = STATE(2984), - [sym_field_expression] = STATE(2984), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2984), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2984), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_type_definition_repeat1] = STATE(1138), - [sym_identifier] = ACTIONS(3047), - [anon_sym_LPAREN2] = ACTIONS(3049), - [anon_sym_BANG] = ACTIONS(3053), - [anon_sym_TILDE] = ACTIONS(3053), - [anon_sym_DASH] = ACTIONS(3051), - [anon_sym_PLUS] = ACTIONS(3051), - [anon_sym_STAR] = ACTIONS(3177), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(3055), - [anon_sym_LBRACK] = ACTIONS(1539), - [anon_sym_RBRACK] = ACTIONS(3179), - [anon_sym_const] = ACTIONS(3163), - [anon_sym_volatile] = ACTIONS(3163), - [anon_sym_restrict] = ACTIONS(3163), - [anon_sym__Atomic] = ACTIONS(3163), - [anon_sym_mutable] = ACTIONS(3163), - [anon_sym_constexpr] = ACTIONS(3163), - [anon_sym_constinit] = ACTIONS(3163), - [anon_sym_consteval] = ACTIONS(3163), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(3051), - [anon_sym_compl] = ACTIONS(3051), - [anon_sym_DASH_DASH] = ACTIONS(3057), - [anon_sym_PLUS_PLUS] = ACTIONS(3057), - [anon_sym_sizeof] = ACTIONS(3059), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(3061), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(3063), - [anon_sym_new] = ACTIONS(3065), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token2] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, [1143] = { - [sym_type_qualifier] = STATE(2223), - [sym__expression] = STATE(3770), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2984), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2984), - [sym_call_expression] = STATE(2984), - [sym_field_expression] = STATE(2984), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2984), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2984), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_type_definition_repeat1] = STATE(2223), - [sym_identifier] = ACTIONS(3047), - [anon_sym_LPAREN2] = ACTIONS(3049), - [anon_sym_BANG] = ACTIONS(3053), - [anon_sym_TILDE] = ACTIONS(3053), - [anon_sym_DASH] = ACTIONS(3051), - [anon_sym_PLUS] = ACTIONS(3051), - [anon_sym_STAR] = ACTIONS(3181), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(3055), - [anon_sym_LBRACK] = ACTIONS(1539), - [anon_sym_RBRACK] = ACTIONS(3183), - [anon_sym_const] = ACTIONS(3163), - [anon_sym_volatile] = ACTIONS(3163), - [anon_sym_restrict] = ACTIONS(3163), - [anon_sym__Atomic] = ACTIONS(3163), - [anon_sym_mutable] = ACTIONS(3163), - [anon_sym_constexpr] = ACTIONS(3163), - [anon_sym_constinit] = ACTIONS(3163), - [anon_sym_consteval] = ACTIONS(3163), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(3051), - [anon_sym_compl] = ACTIONS(3051), - [anon_sym_DASH_DASH] = ACTIONS(3057), - [anon_sym_PLUS_PLUS] = ACTIONS(3057), - [anon_sym_sizeof] = ACTIONS(3059), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(3061), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(3063), - [anon_sym_new] = ACTIONS(3065), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [ts_builtin_sym_end] = ACTIONS(3103), + [sym_identifier] = ACTIONS(3101), + [aux_sym_preproc_include_token1] = ACTIONS(3101), + [aux_sym_preproc_def_token1] = ACTIONS(3101), + [aux_sym_preproc_if_token1] = ACTIONS(3101), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3101), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3101), + [sym_preproc_directive] = ACTIONS(3101), + [anon_sym_LPAREN2] = ACTIONS(3103), + [anon_sym_BANG] = ACTIONS(3103), + [anon_sym_TILDE] = ACTIONS(3103), + [anon_sym_DASH] = ACTIONS(3101), + [anon_sym_PLUS] = ACTIONS(3101), + [anon_sym_STAR] = ACTIONS(3103), + [anon_sym_AMP_AMP] = ACTIONS(3103), + [anon_sym_AMP] = ACTIONS(3101), + [anon_sym_SEMI] = ACTIONS(3103), + [anon_sym_typedef] = ACTIONS(3101), + [anon_sym_extern] = ACTIONS(3101), + [anon_sym___attribute__] = ACTIONS(3101), + [anon_sym_COLON_COLON] = ACTIONS(3103), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3103), + [anon_sym___declspec] = ACTIONS(3101), + [anon_sym___based] = ACTIONS(3101), + [anon_sym___cdecl] = ACTIONS(3101), + [anon_sym___clrcall] = ACTIONS(3101), + [anon_sym___stdcall] = ACTIONS(3101), + [anon_sym___fastcall] = ACTIONS(3101), + [anon_sym___thiscall] = ACTIONS(3101), + [anon_sym___vectorcall] = ACTIONS(3101), + [anon_sym_LBRACE] = ACTIONS(3103), + [anon_sym_LBRACK] = ACTIONS(3101), + [anon_sym_static] = ACTIONS(3101), + [anon_sym_register] = ACTIONS(3101), + [anon_sym_inline] = ACTIONS(3101), + [anon_sym_thread_local] = ACTIONS(3101), + [anon_sym_const] = ACTIONS(3101), + [anon_sym_constexpr] = ACTIONS(3101), + [anon_sym_volatile] = ACTIONS(3101), + [anon_sym_restrict] = ACTIONS(3101), + [anon_sym___restrict__] = ACTIONS(3101), + [anon_sym__Atomic] = ACTIONS(3101), + [anon_sym__Noreturn] = ACTIONS(3101), + [anon_sym_noreturn] = ACTIONS(3101), + [anon_sym_mutable] = ACTIONS(3101), + [anon_sym_constinit] = ACTIONS(3101), + [anon_sym_consteval] = ACTIONS(3101), + [anon_sym_signed] = ACTIONS(3101), + [anon_sym_unsigned] = ACTIONS(3101), + [anon_sym_long] = ACTIONS(3101), + [anon_sym_short] = ACTIONS(3101), + [sym_primitive_type] = ACTIONS(3101), + [anon_sym_enum] = ACTIONS(3101), + [anon_sym_class] = ACTIONS(3101), + [anon_sym_struct] = ACTIONS(3101), + [anon_sym_union] = ACTIONS(3101), + [anon_sym_if] = ACTIONS(3101), + [anon_sym_else] = ACTIONS(3101), + [anon_sym_switch] = ACTIONS(3101), + [anon_sym_case] = ACTIONS(3101), + [anon_sym_default] = ACTIONS(3101), + [anon_sym_while] = ACTIONS(3101), + [anon_sym_do] = ACTIONS(3101), + [anon_sym_for] = ACTIONS(3101), + [anon_sym_return] = ACTIONS(3101), + [anon_sym_break] = ACTIONS(3101), + [anon_sym_continue] = ACTIONS(3101), + [anon_sym_goto] = ACTIONS(3101), + [anon_sym_not] = ACTIONS(3101), + [anon_sym_compl] = ACTIONS(3101), + [anon_sym_DASH_DASH] = ACTIONS(3103), + [anon_sym_PLUS_PLUS] = ACTIONS(3103), + [anon_sym_sizeof] = ACTIONS(3101), + [anon_sym_offsetof] = ACTIONS(3101), + [anon_sym__Generic] = ACTIONS(3101), + [anon_sym_asm] = ACTIONS(3101), + [anon_sym___asm__] = ACTIONS(3101), + [sym_number_literal] = ACTIONS(3103), + [anon_sym_L_SQUOTE] = ACTIONS(3103), + [anon_sym_u_SQUOTE] = ACTIONS(3103), + [anon_sym_U_SQUOTE] = ACTIONS(3103), + [anon_sym_u8_SQUOTE] = ACTIONS(3103), + [anon_sym_SQUOTE] = ACTIONS(3103), + [anon_sym_L_DQUOTE] = ACTIONS(3103), + [anon_sym_u_DQUOTE] = ACTIONS(3103), + [anon_sym_U_DQUOTE] = ACTIONS(3103), + [anon_sym_u8_DQUOTE] = ACTIONS(3103), + [anon_sym_DQUOTE] = ACTIONS(3103), + [sym_true] = ACTIONS(3101), + [sym_false] = ACTIONS(3101), + [anon_sym_NULL] = ACTIONS(3101), + [anon_sym_nullptr] = ACTIONS(3101), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3101), + [anon_sym_decltype] = ACTIONS(3101), + [anon_sym_virtual] = ACTIONS(3101), + [anon_sym_explicit] = ACTIONS(3101), + [anon_sym_typename] = ACTIONS(3101), + [anon_sym_template] = ACTIONS(3101), + [anon_sym_operator] = ACTIONS(3101), + [anon_sym_try] = ACTIONS(3101), + [anon_sym_delete] = ACTIONS(3101), + [anon_sym_throw] = ACTIONS(3101), + [anon_sym_namespace] = ACTIONS(3101), + [anon_sym_using] = ACTIONS(3101), + [anon_sym_static_assert] = ACTIONS(3101), + [anon_sym_concept] = ACTIONS(3101), + [anon_sym_co_return] = ACTIONS(3101), + [anon_sym_co_yield] = ACTIONS(3101), + [anon_sym_R_DQUOTE] = ACTIONS(3103), + [anon_sym_LR_DQUOTE] = ACTIONS(3103), + [anon_sym_uR_DQUOTE] = ACTIONS(3103), + [anon_sym_UR_DQUOTE] = ACTIONS(3103), + [anon_sym_u8R_DQUOTE] = ACTIONS(3103), + [anon_sym_co_await] = ACTIONS(3101), + [anon_sym_new] = ACTIONS(3101), + [anon_sym_requires] = ACTIONS(3101), + [sym_this] = ACTIONS(3101), }, [1144] = { - [sym_type_qualifier] = STATE(1143), - [sym__expression] = STATE(3718), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2984), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2984), - [sym_call_expression] = STATE(2984), - [sym_field_expression] = STATE(2984), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2984), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2984), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_type_definition_repeat1] = STATE(1143), - [sym_identifier] = ACTIONS(3047), - [anon_sym_LPAREN2] = ACTIONS(3049), - [anon_sym_BANG] = ACTIONS(3053), - [anon_sym_TILDE] = ACTIONS(3053), - [anon_sym_DASH] = ACTIONS(3051), - [anon_sym_PLUS] = ACTIONS(3051), - [anon_sym_STAR] = ACTIONS(3185), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(3055), - [anon_sym_LBRACK] = ACTIONS(1539), - [anon_sym_RBRACK] = ACTIONS(3187), - [anon_sym_const] = ACTIONS(3163), - [anon_sym_volatile] = ACTIONS(3163), - [anon_sym_restrict] = ACTIONS(3163), - [anon_sym__Atomic] = ACTIONS(3163), - [anon_sym_mutable] = ACTIONS(3163), - [anon_sym_constexpr] = ACTIONS(3163), - [anon_sym_constinit] = ACTIONS(3163), - [anon_sym_consteval] = ACTIONS(3163), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(3051), - [anon_sym_compl] = ACTIONS(3051), - [anon_sym_DASH_DASH] = ACTIONS(3057), - [anon_sym_PLUS_PLUS] = ACTIONS(3057), - [anon_sym_sizeof] = ACTIONS(3059), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(3061), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(3063), - [anon_sym_new] = ACTIONS(3065), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [ts_builtin_sym_end] = ACTIONS(3099), + [sym_identifier] = ACTIONS(3097), + [aux_sym_preproc_include_token1] = ACTIONS(3097), + [aux_sym_preproc_def_token1] = ACTIONS(3097), + [aux_sym_preproc_if_token1] = ACTIONS(3097), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3097), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3097), + [sym_preproc_directive] = ACTIONS(3097), + [anon_sym_LPAREN2] = ACTIONS(3099), + [anon_sym_BANG] = ACTIONS(3099), + [anon_sym_TILDE] = ACTIONS(3099), + [anon_sym_DASH] = ACTIONS(3097), + [anon_sym_PLUS] = ACTIONS(3097), + [anon_sym_STAR] = ACTIONS(3099), + [anon_sym_AMP_AMP] = ACTIONS(3099), + [anon_sym_AMP] = ACTIONS(3097), + [anon_sym_SEMI] = ACTIONS(3099), + [anon_sym_typedef] = ACTIONS(3097), + [anon_sym_extern] = ACTIONS(3097), + [anon_sym___attribute__] = ACTIONS(3097), + [anon_sym_COLON_COLON] = ACTIONS(3099), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3099), + [anon_sym___declspec] = ACTIONS(3097), + [anon_sym___based] = ACTIONS(3097), + [anon_sym___cdecl] = ACTIONS(3097), + [anon_sym___clrcall] = ACTIONS(3097), + [anon_sym___stdcall] = ACTIONS(3097), + [anon_sym___fastcall] = ACTIONS(3097), + [anon_sym___thiscall] = ACTIONS(3097), + [anon_sym___vectorcall] = ACTIONS(3097), + [anon_sym_LBRACE] = ACTIONS(3099), + [anon_sym_LBRACK] = ACTIONS(3097), + [anon_sym_static] = ACTIONS(3097), + [anon_sym_register] = ACTIONS(3097), + [anon_sym_inline] = ACTIONS(3097), + [anon_sym_thread_local] = ACTIONS(3097), + [anon_sym_const] = ACTIONS(3097), + [anon_sym_constexpr] = ACTIONS(3097), + [anon_sym_volatile] = ACTIONS(3097), + [anon_sym_restrict] = ACTIONS(3097), + [anon_sym___restrict__] = ACTIONS(3097), + [anon_sym__Atomic] = ACTIONS(3097), + [anon_sym__Noreturn] = ACTIONS(3097), + [anon_sym_noreturn] = ACTIONS(3097), + [anon_sym_mutable] = ACTIONS(3097), + [anon_sym_constinit] = ACTIONS(3097), + [anon_sym_consteval] = ACTIONS(3097), + [anon_sym_signed] = ACTIONS(3097), + [anon_sym_unsigned] = ACTIONS(3097), + [anon_sym_long] = ACTIONS(3097), + [anon_sym_short] = ACTIONS(3097), + [sym_primitive_type] = ACTIONS(3097), + [anon_sym_enum] = ACTIONS(3097), + [anon_sym_class] = ACTIONS(3097), + [anon_sym_struct] = ACTIONS(3097), + [anon_sym_union] = ACTIONS(3097), + [anon_sym_if] = ACTIONS(3097), + [anon_sym_else] = ACTIONS(3097), + [anon_sym_switch] = ACTIONS(3097), + [anon_sym_case] = ACTIONS(3097), + [anon_sym_default] = ACTIONS(3097), + [anon_sym_while] = ACTIONS(3097), + [anon_sym_do] = ACTIONS(3097), + [anon_sym_for] = ACTIONS(3097), + [anon_sym_return] = ACTIONS(3097), + [anon_sym_break] = ACTIONS(3097), + [anon_sym_continue] = ACTIONS(3097), + [anon_sym_goto] = ACTIONS(3097), + [anon_sym_not] = ACTIONS(3097), + [anon_sym_compl] = ACTIONS(3097), + [anon_sym_DASH_DASH] = ACTIONS(3099), + [anon_sym_PLUS_PLUS] = ACTIONS(3099), + [anon_sym_sizeof] = ACTIONS(3097), + [anon_sym_offsetof] = ACTIONS(3097), + [anon_sym__Generic] = ACTIONS(3097), + [anon_sym_asm] = ACTIONS(3097), + [anon_sym___asm__] = ACTIONS(3097), + [sym_number_literal] = ACTIONS(3099), + [anon_sym_L_SQUOTE] = ACTIONS(3099), + [anon_sym_u_SQUOTE] = ACTIONS(3099), + [anon_sym_U_SQUOTE] = ACTIONS(3099), + [anon_sym_u8_SQUOTE] = ACTIONS(3099), + [anon_sym_SQUOTE] = ACTIONS(3099), + [anon_sym_L_DQUOTE] = ACTIONS(3099), + [anon_sym_u_DQUOTE] = ACTIONS(3099), + [anon_sym_U_DQUOTE] = ACTIONS(3099), + [anon_sym_u8_DQUOTE] = ACTIONS(3099), + [anon_sym_DQUOTE] = ACTIONS(3099), + [sym_true] = ACTIONS(3097), + [sym_false] = ACTIONS(3097), + [anon_sym_NULL] = ACTIONS(3097), + [anon_sym_nullptr] = ACTIONS(3097), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3097), + [anon_sym_decltype] = ACTIONS(3097), + [anon_sym_virtual] = ACTIONS(3097), + [anon_sym_explicit] = ACTIONS(3097), + [anon_sym_typename] = ACTIONS(3097), + [anon_sym_template] = ACTIONS(3097), + [anon_sym_operator] = ACTIONS(3097), + [anon_sym_try] = ACTIONS(3097), + [anon_sym_delete] = ACTIONS(3097), + [anon_sym_throw] = ACTIONS(3097), + [anon_sym_namespace] = ACTIONS(3097), + [anon_sym_using] = ACTIONS(3097), + [anon_sym_static_assert] = ACTIONS(3097), + [anon_sym_concept] = ACTIONS(3097), + [anon_sym_co_return] = ACTIONS(3097), + [anon_sym_co_yield] = ACTIONS(3097), + [anon_sym_R_DQUOTE] = ACTIONS(3099), + [anon_sym_LR_DQUOTE] = ACTIONS(3099), + [anon_sym_uR_DQUOTE] = ACTIONS(3099), + [anon_sym_UR_DQUOTE] = ACTIONS(3099), + [anon_sym_u8R_DQUOTE] = ACTIONS(3099), + [anon_sym_co_await] = ACTIONS(3097), + [anon_sym_new] = ACTIONS(3097), + [anon_sym_requires] = ACTIONS(3097), + [sym_this] = ACTIONS(3097), }, [1145] = { - [sym_type_qualifier] = STATE(1147), - [sym__expression] = STATE(3824), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2984), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2984), - [sym_call_expression] = STATE(2984), - [sym_field_expression] = STATE(2984), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2984), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2984), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_type_definition_repeat1] = STATE(1147), - [sym_identifier] = ACTIONS(3047), - [anon_sym_LPAREN2] = ACTIONS(3049), - [anon_sym_BANG] = ACTIONS(3053), - [anon_sym_TILDE] = ACTIONS(3053), - [anon_sym_DASH] = ACTIONS(3051), - [anon_sym_PLUS] = ACTIONS(3051), - [anon_sym_STAR] = ACTIONS(3189), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(3055), - [anon_sym_LBRACK] = ACTIONS(1539), - [anon_sym_RBRACK] = ACTIONS(3191), - [anon_sym_const] = ACTIONS(3163), - [anon_sym_volatile] = ACTIONS(3163), - [anon_sym_restrict] = ACTIONS(3163), - [anon_sym__Atomic] = ACTIONS(3163), - [anon_sym_mutable] = ACTIONS(3163), - [anon_sym_constexpr] = ACTIONS(3163), - [anon_sym_constinit] = ACTIONS(3163), - [anon_sym_consteval] = ACTIONS(3163), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(3051), - [anon_sym_compl] = ACTIONS(3051), - [anon_sym_DASH_DASH] = ACTIONS(3057), - [anon_sym_PLUS_PLUS] = ACTIONS(3057), - [anon_sym_sizeof] = ACTIONS(3059), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(3061), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(3063), - [anon_sym_new] = ACTIONS(3065), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [sym_identifier] = ACTIONS(2966), + [aux_sym_preproc_include_token1] = ACTIONS(2966), + [aux_sym_preproc_def_token1] = ACTIONS(2966), + [aux_sym_preproc_if_token1] = ACTIONS(2966), + [aux_sym_preproc_if_token2] = ACTIONS(2966), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2966), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2966), + [sym_preproc_directive] = 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_AMP_AMP] = ACTIONS(2968), + [anon_sym_AMP] = ACTIONS(2966), + [anon_sym_SEMI] = ACTIONS(2968), + [anon_sym_typedef] = ACTIONS(2966), + [anon_sym_extern] = ACTIONS(2966), + [anon_sym___attribute__] = ACTIONS(2966), + [anon_sym_COLON_COLON] = ACTIONS(2968), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2968), + [anon_sym___declspec] = ACTIONS(2966), + [anon_sym___based] = ACTIONS(2966), + [anon_sym___cdecl] = ACTIONS(2966), + [anon_sym___clrcall] = ACTIONS(2966), + [anon_sym___stdcall] = ACTIONS(2966), + [anon_sym___fastcall] = ACTIONS(2966), + [anon_sym___thiscall] = ACTIONS(2966), + [anon_sym___vectorcall] = ACTIONS(2966), + [anon_sym_LBRACE] = ACTIONS(2968), + [anon_sym_LBRACK] = ACTIONS(2966), + [anon_sym_static] = ACTIONS(2966), + [anon_sym_register] = ACTIONS(2966), + [anon_sym_inline] = ACTIONS(2966), + [anon_sym_thread_local] = 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_noreturn] = ACTIONS(2966), + [anon_sym_mutable] = ACTIONS(2966), + [anon_sym_constinit] = ACTIONS(2966), + [anon_sym_consteval] = ACTIONS(2966), + [anon_sym_signed] = ACTIONS(2966), + [anon_sym_unsigned] = ACTIONS(2966), + [anon_sym_long] = ACTIONS(2966), + [anon_sym_short] = ACTIONS(2966), + [sym_primitive_type] = ACTIONS(2966), + [anon_sym_enum] = ACTIONS(2966), + [anon_sym_class] = ACTIONS(2966), + [anon_sym_struct] = ACTIONS(2966), + [anon_sym_union] = ACTIONS(2966), + [anon_sym_if] = ACTIONS(2966), + [anon_sym_else] = 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_return] = ACTIONS(2966), + [anon_sym_break] = ACTIONS(2966), + [anon_sym_continue] = ACTIONS(2966), + [anon_sym_goto] = ACTIONS(2966), + [anon_sym_not] = ACTIONS(2966), + [anon_sym_compl] = ACTIONS(2966), + [anon_sym_DASH_DASH] = ACTIONS(2968), + [anon_sym_PLUS_PLUS] = ACTIONS(2968), + [anon_sym_sizeof] = ACTIONS(2966), + [anon_sym_offsetof] = ACTIONS(2966), + [anon_sym__Generic] = 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_L_DQUOTE] = ACTIONS(2968), + [anon_sym_u_DQUOTE] = ACTIONS(2968), + [anon_sym_U_DQUOTE] = ACTIONS(2968), + [anon_sym_u8_DQUOTE] = ACTIONS(2968), + [anon_sym_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), + [sym_auto] = ACTIONS(2966), + [anon_sym_decltype] = ACTIONS(2966), + [anon_sym_virtual] = ACTIONS(2966), + [anon_sym_explicit] = ACTIONS(2966), + [anon_sym_typename] = ACTIONS(2966), + [anon_sym_template] = ACTIONS(2966), + [anon_sym_operator] = ACTIONS(2966), + [anon_sym_try] = ACTIONS(2966), + [anon_sym_delete] = ACTIONS(2966), + [anon_sym_throw] = ACTIONS(2966), + [anon_sym_namespace] = ACTIONS(2966), + [anon_sym_using] = ACTIONS(2966), + [anon_sym_static_assert] = ACTIONS(2966), + [anon_sym_concept] = ACTIONS(2966), + [anon_sym_co_return] = ACTIONS(2966), + [anon_sym_co_yield] = ACTIONS(2966), + [anon_sym_R_DQUOTE] = ACTIONS(2968), + [anon_sym_LR_DQUOTE] = ACTIONS(2968), + [anon_sym_uR_DQUOTE] = ACTIONS(2968), + [anon_sym_UR_DQUOTE] = ACTIONS(2968), + [anon_sym_u8R_DQUOTE] = ACTIONS(2968), + [anon_sym_co_await] = ACTIONS(2966), + [anon_sym_new] = ACTIONS(2966), + [anon_sym_requires] = ACTIONS(2966), + [sym_this] = ACTIONS(2966), }, [1146] = { - [sym_type_qualifier] = STATE(2223), - [sym__expression] = STATE(3828), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2984), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2984), - [sym_call_expression] = STATE(2984), - [sym_field_expression] = STATE(2984), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2984), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2984), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_type_definition_repeat1] = STATE(2223), - [sym_identifier] = ACTIONS(3047), - [anon_sym_LPAREN2] = ACTIONS(3049), - [anon_sym_BANG] = ACTIONS(3053), - [anon_sym_TILDE] = ACTIONS(3053), - [anon_sym_DASH] = ACTIONS(3051), - [anon_sym_PLUS] = ACTIONS(3051), - [anon_sym_STAR] = ACTIONS(3193), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(3055), - [anon_sym_LBRACK] = ACTIONS(1539), - [anon_sym_RBRACK] = ACTIONS(3195), - [anon_sym_const] = ACTIONS(3163), - [anon_sym_volatile] = ACTIONS(3163), - [anon_sym_restrict] = ACTIONS(3163), - [anon_sym__Atomic] = ACTIONS(3163), - [anon_sym_mutable] = ACTIONS(3163), - [anon_sym_constexpr] = ACTIONS(3163), - [anon_sym_constinit] = ACTIONS(3163), - [anon_sym_consteval] = ACTIONS(3163), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(3051), - [anon_sym_compl] = ACTIONS(3051), - [anon_sym_DASH_DASH] = ACTIONS(3057), - [anon_sym_PLUS_PLUS] = ACTIONS(3057), - [anon_sym_sizeof] = ACTIONS(3059), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(3061), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(3063), - [anon_sym_new] = ACTIONS(3065), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [ts_builtin_sym_end] = ACTIONS(3030), + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, [1147] = { - [sym_type_qualifier] = STATE(2223), - [sym__expression] = STATE(3696), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2984), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2984), - [sym_call_expression] = STATE(2984), - [sym_field_expression] = STATE(2984), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2984), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2984), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_type_definition_repeat1] = STATE(2223), - [sym_identifier] = ACTIONS(3047), - [anon_sym_LPAREN2] = ACTIONS(3049), - [anon_sym_BANG] = ACTIONS(3053), - [anon_sym_TILDE] = ACTIONS(3053), - [anon_sym_DASH] = ACTIONS(3051), - [anon_sym_PLUS] = ACTIONS(3051), - [anon_sym_STAR] = ACTIONS(3197), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(3055), - [anon_sym_LBRACK] = ACTIONS(1539), - [anon_sym_RBRACK] = ACTIONS(3199), - [anon_sym_const] = ACTIONS(3163), - [anon_sym_volatile] = ACTIONS(3163), - [anon_sym_restrict] = ACTIONS(3163), - [anon_sym__Atomic] = ACTIONS(3163), - [anon_sym_mutable] = ACTIONS(3163), - [anon_sym_constexpr] = ACTIONS(3163), - [anon_sym_constinit] = ACTIONS(3163), - [anon_sym_consteval] = ACTIONS(3163), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(3051), - [anon_sym_compl] = ACTIONS(3051), - [anon_sym_DASH_DASH] = ACTIONS(3057), - [anon_sym_PLUS_PLUS] = ACTIONS(3057), - [anon_sym_sizeof] = ACTIONS(3059), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(3061), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(3063), - [anon_sym_new] = ACTIONS(3065), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [ts_builtin_sym_end] = ACTIONS(3030), + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, [1148] = { - [sym_type_qualifier] = STATE(2223), - [sym__expression] = STATE(3857), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2984), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2984), - [sym_call_expression] = STATE(2984), - [sym_field_expression] = STATE(2984), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2984), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2984), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_type_definition_repeat1] = STATE(2223), - [sym_identifier] = ACTIONS(3047), - [anon_sym_LPAREN2] = ACTIONS(3049), - [anon_sym_BANG] = ACTIONS(3053), - [anon_sym_TILDE] = ACTIONS(3053), - [anon_sym_DASH] = ACTIONS(3051), - [anon_sym_PLUS] = ACTIONS(3051), - [anon_sym_STAR] = ACTIONS(3201), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(3055), - [anon_sym_LBRACK] = ACTIONS(1539), - [anon_sym_RBRACK] = ACTIONS(3203), - [anon_sym_const] = ACTIONS(3163), - [anon_sym_volatile] = ACTIONS(3163), - [anon_sym_restrict] = ACTIONS(3163), - [anon_sym__Atomic] = ACTIONS(3163), - [anon_sym_mutable] = ACTIONS(3163), - [anon_sym_constexpr] = ACTIONS(3163), - [anon_sym_constinit] = ACTIONS(3163), - [anon_sym_consteval] = ACTIONS(3163), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(3051), - [anon_sym_compl] = ACTIONS(3051), - [anon_sym_DASH_DASH] = ACTIONS(3057), - [anon_sym_PLUS_PLUS] = ACTIONS(3057), - [anon_sym_sizeof] = ACTIONS(3059), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(3061), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(3063), - [anon_sym_new] = ACTIONS(3065), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token2] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, [1149] = { - [sym_type_qualifier] = STATE(2223), - [sym__expression] = STATE(3803), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2984), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2984), - [sym_call_expression] = STATE(2984), - [sym_field_expression] = STATE(2984), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2984), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2984), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_type_definition_repeat1] = STATE(2223), - [sym_identifier] = ACTIONS(3047), - [anon_sym_LPAREN2] = ACTIONS(3049), - [anon_sym_BANG] = ACTIONS(3053), - [anon_sym_TILDE] = ACTIONS(3053), - [anon_sym_DASH] = ACTIONS(3051), - [anon_sym_PLUS] = ACTIONS(3051), - [anon_sym_STAR] = ACTIONS(3205), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(3055), - [anon_sym_LBRACK] = ACTIONS(1539), - [anon_sym_RBRACK] = ACTIONS(3207), - [anon_sym_const] = ACTIONS(3163), - [anon_sym_volatile] = ACTIONS(3163), - [anon_sym_restrict] = ACTIONS(3163), - [anon_sym__Atomic] = ACTIONS(3163), - [anon_sym_mutable] = ACTIONS(3163), - [anon_sym_constexpr] = ACTIONS(3163), - [anon_sym_constinit] = ACTIONS(3163), - [anon_sym_consteval] = ACTIONS(3163), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(3051), - [anon_sym_compl] = ACTIONS(3051), - [anon_sym_DASH_DASH] = ACTIONS(3057), - [anon_sym_PLUS_PLUS] = ACTIONS(3057), - [anon_sym_sizeof] = ACTIONS(3059), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(3061), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(3063), - [anon_sym_new] = ACTIONS(3065), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token2] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, [1150] = { - [sym_catch_clause] = STATE(1150), - [aux_sym_constructor_try_statement_repeat1] = STATE(1150), - [sym_identifier] = ACTIONS(2374), - [anon_sym_LPAREN2] = ACTIONS(2376), - [anon_sym_BANG] = ACTIONS(2376), - [anon_sym_TILDE] = ACTIONS(2376), - [anon_sym_DASH] = ACTIONS(2374), - [anon_sym_PLUS] = ACTIONS(2374), - [anon_sym_STAR] = ACTIONS(2376), - [anon_sym_AMP] = ACTIONS(2376), - [anon_sym_SEMI] = ACTIONS(2376), - [anon_sym_typedef] = ACTIONS(2374), - [anon_sym_extern] = ACTIONS(2374), - [anon_sym___attribute__] = ACTIONS(2374), - [anon_sym_COLON_COLON] = ACTIONS(2376), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2376), - [anon_sym___declspec] = ACTIONS(2374), - [anon_sym_LBRACE] = ACTIONS(2376), - [anon_sym_LBRACK] = ACTIONS(2374), - [anon_sym_static] = ACTIONS(2374), - [anon_sym_register] = ACTIONS(2374), - [anon_sym_inline] = ACTIONS(2374), - [anon_sym_thread_local] = ACTIONS(2374), - [anon_sym_const] = ACTIONS(2374), - [anon_sym_volatile] = ACTIONS(2374), - [anon_sym_restrict] = ACTIONS(2374), - [anon_sym__Atomic] = ACTIONS(2374), - [anon_sym_mutable] = ACTIONS(2374), - [anon_sym_constexpr] = ACTIONS(2374), - [anon_sym_constinit] = ACTIONS(2374), - [anon_sym_consteval] = ACTIONS(2374), - [anon_sym_signed] = ACTIONS(2374), - [anon_sym_unsigned] = ACTIONS(2374), - [anon_sym_long] = ACTIONS(2374), - [anon_sym_short] = ACTIONS(2374), - [sym_primitive_type] = ACTIONS(2374), - [anon_sym_enum] = ACTIONS(2374), - [anon_sym_class] = ACTIONS(2374), - [anon_sym_struct] = ACTIONS(2374), - [anon_sym_union] = ACTIONS(2374), - [anon_sym_if] = ACTIONS(2374), - [anon_sym_else] = ACTIONS(2374), - [anon_sym_switch] = ACTIONS(2374), - [anon_sym_while] = ACTIONS(2374), - [anon_sym_do] = ACTIONS(2374), - [anon_sym_for] = ACTIONS(2374), - [anon_sym_return] = ACTIONS(2374), - [anon_sym_break] = ACTIONS(2374), - [anon_sym_continue] = ACTIONS(2374), - [anon_sym_goto] = ACTIONS(2374), - [anon_sym_not] = ACTIONS(2374), - [anon_sym_compl] = ACTIONS(2374), - [anon_sym_DASH_DASH] = ACTIONS(2376), - [anon_sym_PLUS_PLUS] = ACTIONS(2376), - [anon_sym_sizeof] = ACTIONS(2374), - [sym_number_literal] = ACTIONS(2376), - [anon_sym_L_SQUOTE] = ACTIONS(2376), - [anon_sym_u_SQUOTE] = ACTIONS(2376), - [anon_sym_U_SQUOTE] = ACTIONS(2376), - [anon_sym_u8_SQUOTE] = ACTIONS(2376), - [anon_sym_SQUOTE] = ACTIONS(2376), - [anon_sym_L_DQUOTE] = ACTIONS(2376), - [anon_sym_u_DQUOTE] = ACTIONS(2376), - [anon_sym_U_DQUOTE] = ACTIONS(2376), - [anon_sym_u8_DQUOTE] = ACTIONS(2376), - [anon_sym_DQUOTE] = ACTIONS(2376), - [sym_true] = ACTIONS(2374), - [sym_false] = ACTIONS(2374), - [sym_null] = ACTIONS(2374), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2374), - [anon_sym_decltype] = ACTIONS(2374), - [anon_sym_virtual] = ACTIONS(2374), - [anon_sym_typename] = ACTIONS(2374), - [anon_sym_template] = ACTIONS(2374), - [anon_sym_try] = ACTIONS(2374), - [anon_sym_delete] = ACTIONS(2374), - [anon_sym_throw] = ACTIONS(2374), - [anon_sym_co_return] = ACTIONS(2374), - [anon_sym_co_yield] = ACTIONS(2374), - [anon_sym_catch] = ACTIONS(3209), - [anon_sym_R_DQUOTE] = ACTIONS(2376), - [anon_sym_LR_DQUOTE] = ACTIONS(2376), - [anon_sym_uR_DQUOTE] = ACTIONS(2376), - [anon_sym_UR_DQUOTE] = ACTIONS(2376), - [anon_sym_u8R_DQUOTE] = ACTIONS(2376), - [anon_sym_co_await] = ACTIONS(2374), - [anon_sym_new] = ACTIONS(2374), - [anon_sym_requires] = ACTIONS(2374), - [sym_this] = ACTIONS(2374), - [sym_nullptr] = ACTIONS(2374), + [ts_builtin_sym_end] = ACTIONS(2994), + [sym_identifier] = ACTIONS(2992), + [aux_sym_preproc_include_token1] = ACTIONS(2992), + [aux_sym_preproc_def_token1] = ACTIONS(2992), + [aux_sym_preproc_if_token1] = ACTIONS(2992), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2992), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2992), + [sym_preproc_directive] = ACTIONS(2992), + [anon_sym_LPAREN2] = ACTIONS(2994), + [anon_sym_BANG] = ACTIONS(2994), + [anon_sym_TILDE] = ACTIONS(2994), + [anon_sym_DASH] = ACTIONS(2992), + [anon_sym_PLUS] = ACTIONS(2992), + [anon_sym_STAR] = ACTIONS(2994), + [anon_sym_AMP_AMP] = ACTIONS(2994), + [anon_sym_AMP] = ACTIONS(2992), + [anon_sym_SEMI] = ACTIONS(2994), + [anon_sym_typedef] = ACTIONS(2992), + [anon_sym_extern] = ACTIONS(2992), + [anon_sym___attribute__] = ACTIONS(2992), + [anon_sym_COLON_COLON] = ACTIONS(2994), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2994), + [anon_sym___declspec] = ACTIONS(2992), + [anon_sym___based] = ACTIONS(2992), + [anon_sym___cdecl] = ACTIONS(2992), + [anon_sym___clrcall] = ACTIONS(2992), + [anon_sym___stdcall] = ACTIONS(2992), + [anon_sym___fastcall] = ACTIONS(2992), + [anon_sym___thiscall] = ACTIONS(2992), + [anon_sym___vectorcall] = ACTIONS(2992), + [anon_sym_LBRACE] = ACTIONS(2994), + [anon_sym_LBRACK] = ACTIONS(2992), + [anon_sym_static] = ACTIONS(2992), + [anon_sym_register] = ACTIONS(2992), + [anon_sym_inline] = ACTIONS(2992), + [anon_sym_thread_local] = ACTIONS(2992), + [anon_sym_const] = ACTIONS(2992), + [anon_sym_constexpr] = ACTIONS(2992), + [anon_sym_volatile] = ACTIONS(2992), + [anon_sym_restrict] = ACTIONS(2992), + [anon_sym___restrict__] = ACTIONS(2992), + [anon_sym__Atomic] = ACTIONS(2992), + [anon_sym__Noreturn] = ACTIONS(2992), + [anon_sym_noreturn] = ACTIONS(2992), + [anon_sym_mutable] = ACTIONS(2992), + [anon_sym_constinit] = ACTIONS(2992), + [anon_sym_consteval] = ACTIONS(2992), + [anon_sym_signed] = ACTIONS(2992), + [anon_sym_unsigned] = ACTIONS(2992), + [anon_sym_long] = ACTIONS(2992), + [anon_sym_short] = ACTIONS(2992), + [sym_primitive_type] = ACTIONS(2992), + [anon_sym_enum] = ACTIONS(2992), + [anon_sym_class] = ACTIONS(2992), + [anon_sym_struct] = ACTIONS(2992), + [anon_sym_union] = ACTIONS(2992), + [anon_sym_if] = ACTIONS(2992), + [anon_sym_else] = ACTIONS(2992), + [anon_sym_switch] = ACTIONS(2992), + [anon_sym_case] = ACTIONS(2992), + [anon_sym_default] = ACTIONS(2992), + [anon_sym_while] = ACTIONS(2992), + [anon_sym_do] = ACTIONS(2992), + [anon_sym_for] = ACTIONS(2992), + [anon_sym_return] = ACTIONS(2992), + [anon_sym_break] = ACTIONS(2992), + [anon_sym_continue] = ACTIONS(2992), + [anon_sym_goto] = ACTIONS(2992), + [anon_sym_not] = ACTIONS(2992), + [anon_sym_compl] = ACTIONS(2992), + [anon_sym_DASH_DASH] = ACTIONS(2994), + [anon_sym_PLUS_PLUS] = ACTIONS(2994), + [anon_sym_sizeof] = ACTIONS(2992), + [anon_sym_offsetof] = ACTIONS(2992), + [anon_sym__Generic] = ACTIONS(2992), + [anon_sym_asm] = ACTIONS(2992), + [anon_sym___asm__] = ACTIONS(2992), + [sym_number_literal] = ACTIONS(2994), + [anon_sym_L_SQUOTE] = ACTIONS(2994), + [anon_sym_u_SQUOTE] = ACTIONS(2994), + [anon_sym_U_SQUOTE] = ACTIONS(2994), + [anon_sym_u8_SQUOTE] = ACTIONS(2994), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_L_DQUOTE] = ACTIONS(2994), + [anon_sym_u_DQUOTE] = ACTIONS(2994), + [anon_sym_U_DQUOTE] = ACTIONS(2994), + [anon_sym_u8_DQUOTE] = ACTIONS(2994), + [anon_sym_DQUOTE] = ACTIONS(2994), + [sym_true] = ACTIONS(2992), + [sym_false] = ACTIONS(2992), + [anon_sym_NULL] = ACTIONS(2992), + [anon_sym_nullptr] = ACTIONS(2992), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2992), + [anon_sym_decltype] = ACTIONS(2992), + [anon_sym_virtual] = ACTIONS(2992), + [anon_sym_explicit] = ACTIONS(2992), + [anon_sym_typename] = ACTIONS(2992), + [anon_sym_template] = ACTIONS(2992), + [anon_sym_operator] = ACTIONS(2992), + [anon_sym_try] = ACTIONS(2992), + [anon_sym_delete] = ACTIONS(2992), + [anon_sym_throw] = ACTIONS(2992), + [anon_sym_namespace] = ACTIONS(2992), + [anon_sym_using] = ACTIONS(2992), + [anon_sym_static_assert] = ACTIONS(2992), + [anon_sym_concept] = ACTIONS(2992), + [anon_sym_co_return] = ACTIONS(2992), + [anon_sym_co_yield] = ACTIONS(2992), + [anon_sym_R_DQUOTE] = ACTIONS(2994), + [anon_sym_LR_DQUOTE] = ACTIONS(2994), + [anon_sym_uR_DQUOTE] = ACTIONS(2994), + [anon_sym_UR_DQUOTE] = ACTIONS(2994), + [anon_sym_u8R_DQUOTE] = ACTIONS(2994), + [anon_sym_co_await] = ACTIONS(2992), + [anon_sym_new] = ACTIONS(2992), + [anon_sym_requires] = ACTIONS(2992), + [sym_this] = ACTIONS(2992), }, [1151] = { - [sym_type_qualifier] = STATE(1153), - [sym__expression] = STATE(3754), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2984), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2984), - [sym_call_expression] = STATE(2984), - [sym_field_expression] = STATE(2984), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2984), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2984), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_type_definition_repeat1] = STATE(1153), - [sym_identifier] = ACTIONS(3047), - [anon_sym_LPAREN2] = ACTIONS(3049), - [anon_sym_BANG] = ACTIONS(3053), - [anon_sym_TILDE] = ACTIONS(3053), - [anon_sym_DASH] = ACTIONS(3051), - [anon_sym_PLUS] = ACTIONS(3051), - [anon_sym_STAR] = ACTIONS(3212), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(3055), - [anon_sym_LBRACK] = ACTIONS(1539), - [anon_sym_RBRACK] = ACTIONS(3214), - [anon_sym_const] = ACTIONS(3163), - [anon_sym_volatile] = ACTIONS(3163), - [anon_sym_restrict] = ACTIONS(3163), - [anon_sym__Atomic] = ACTIONS(3163), - [anon_sym_mutable] = ACTIONS(3163), - [anon_sym_constexpr] = ACTIONS(3163), - [anon_sym_constinit] = ACTIONS(3163), - [anon_sym_consteval] = ACTIONS(3163), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(3051), - [anon_sym_compl] = ACTIONS(3051), - [anon_sym_DASH_DASH] = ACTIONS(3057), - [anon_sym_PLUS_PLUS] = ACTIONS(3057), - [anon_sym_sizeof] = ACTIONS(3059), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(3061), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(3063), - [anon_sym_new] = ACTIONS(3065), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token2] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, [1152] = { - [sym_type_qualifier] = STATE(1146), - [sym__expression] = STATE(3793), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2984), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2984), - [sym_call_expression] = STATE(2984), - [sym_field_expression] = STATE(2984), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2984), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2984), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_type_definition_repeat1] = STATE(1146), - [sym_identifier] = ACTIONS(3216), - [anon_sym_LPAREN2] = ACTIONS(3049), - [anon_sym_BANG] = ACTIONS(3053), - [anon_sym_TILDE] = ACTIONS(3053), - [anon_sym_DASH] = ACTIONS(3051), - [anon_sym_PLUS] = ACTIONS(3051), - [anon_sym_STAR] = ACTIONS(3165), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(3055), - [anon_sym_LBRACK] = ACTIONS(1539), - [anon_sym_RBRACK] = ACTIONS(3167), - [anon_sym_const] = ACTIONS(3163), - [anon_sym_volatile] = ACTIONS(3163), - [anon_sym_restrict] = ACTIONS(3163), - [anon_sym__Atomic] = ACTIONS(3163), - [anon_sym_mutable] = ACTIONS(3163), - [anon_sym_constexpr] = ACTIONS(3163), - [anon_sym_constinit] = ACTIONS(3163), - [anon_sym_consteval] = ACTIONS(3163), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(3051), - [anon_sym_compl] = ACTIONS(3051), - [anon_sym_DASH_DASH] = ACTIONS(3057), - [anon_sym_PLUS_PLUS] = ACTIONS(3057), - [anon_sym_sizeof] = ACTIONS(3059), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(3061), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(3063), - [anon_sym_new] = ACTIONS(3065), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token2] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, [1153] = { - [sym_type_qualifier] = STATE(2223), - [sym__expression] = STATE(3701), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2984), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2984), - [sym_call_expression] = STATE(2984), - [sym_field_expression] = STATE(2984), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2984), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2984), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_type_definition_repeat1] = STATE(2223), - [sym_identifier] = ACTIONS(3047), - [anon_sym_LPAREN2] = ACTIONS(3049), - [anon_sym_BANG] = ACTIONS(3053), - [anon_sym_TILDE] = ACTIONS(3053), - [anon_sym_DASH] = ACTIONS(3051), - [anon_sym_PLUS] = ACTIONS(3051), - [anon_sym_STAR] = ACTIONS(3218), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(3055), - [anon_sym_LBRACK] = ACTIONS(1539), - [anon_sym_RBRACK] = ACTIONS(3220), - [anon_sym_const] = ACTIONS(3163), - [anon_sym_volatile] = ACTIONS(3163), - [anon_sym_restrict] = ACTIONS(3163), - [anon_sym__Atomic] = ACTIONS(3163), - [anon_sym_mutable] = ACTIONS(3163), - [anon_sym_constexpr] = ACTIONS(3163), - [anon_sym_constinit] = ACTIONS(3163), - [anon_sym_consteval] = ACTIONS(3163), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(3051), - [anon_sym_compl] = ACTIONS(3051), - [anon_sym_DASH_DASH] = ACTIONS(3057), - [anon_sym_PLUS_PLUS] = ACTIONS(3057), - [anon_sym_sizeof] = ACTIONS(3059), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(3061), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(3063), - [anon_sym_new] = ACTIONS(3065), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token2] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, [1154] = { - [sym__declaration_modifiers] = STATE(2191), - [sym__declaration_specifiers] = STATE(3188), - [sym_attribute_specifier] = STATE(2191), - [sym_attribute_declaration] = STATE(2191), - [sym_ms_declspec_modifier] = STATE(2191), - [sym_ms_based_modifier] = STATE(6104), - [sym__declarator] = STATE(5089), - [sym__abstract_declarator] = STATE(5164), - [sym_parenthesized_declarator] = STATE(4918), - [sym_abstract_parenthesized_declarator] = STATE(4764), - [sym_attributed_declarator] = STATE(4918), - [sym_pointer_declarator] = STATE(4918), - [sym_abstract_pointer_declarator] = STATE(4764), - [sym_function_declarator] = STATE(4918), - [sym_abstract_function_declarator] = STATE(4764), - [sym_array_declarator] = STATE(4918), - [sym_abstract_array_declarator] = STATE(4764), - [sym_storage_class_specifier] = STATE(2191), - [sym_type_qualifier] = STATE(2191), - [sym__type_specifier] = STATE(3156), - [sym_sized_type_specifier] = STATE(3232), - [sym_enum_specifier] = STATE(3232), - [sym_struct_specifier] = STATE(3232), - [sym_union_specifier] = STATE(3232), - [sym_parameter_list] = STATE(3482), - [sym_parameter_declaration] = STATE(5574), - [sym_placeholder_type_specifier] = STATE(3232), - [sym_decltype_auto] = STATE(3279), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3232), - [sym_virtual] = STATE(2191), - [sym_dependent_type] = STATE(3232), - [sym_optional_parameter_declaration] = STATE(5574), - [sym_variadic_parameter_declaration] = STATE(5574), - [sym_reference_declarator] = STATE(4918), - [sym_abstract_reference_declarator] = STATE(4764), - [sym_structured_binding_declarator] = STATE(4918), - [sym__function_declarator_seq] = STATE(4765), - [sym_template_type] = STATE(3198), - [sym_template_function] = STATE(4918), - [sym_destructor_name] = STATE(4918), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4562), - [sym_qualified_identifier] = STATE(4918), - [sym_qualified_type_identifier] = STATE(3259), - [sym_operator_name] = STATE(4918), - [aux_sym__declaration_specifiers_repeat1] = STATE(2191), - [aux_sym_sized_type_specifier_repeat1] = STATE(3171), - [sym_identifier] = ACTIONS(3222), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1485), - [anon_sym_RPAREN] = ACTIONS(3224), - [anon_sym_LPAREN2] = ACTIONS(3226), - [anon_sym_TILDE] = ACTIONS(1683), - [anon_sym_STAR] = ACTIONS(3228), - [anon_sym_AMP_AMP] = ACTIONS(3230), - [anon_sym_AMP] = ACTIONS(3232), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(3234), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1413), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(3236), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(61), - [anon_sym_unsigned] = ACTIONS(61), - [anon_sym_long] = ACTIONS(61), - [anon_sym_short] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2932), - [anon_sym_enum] = ACTIONS(1451), - [anon_sym_class] = ACTIONS(1453), - [anon_sym_struct] = ACTIONS(1455), - [anon_sym_union] = ACTIONS(1457), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(107), - [anon_sym_decltype] = ACTIONS(109), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(1471), - [anon_sym_template] = ACTIONS(996), - [anon_sym_operator] = ACTIONS(1521), + [ts_builtin_sym_end] = ACTIONS(2990), + [sym_identifier] = ACTIONS(2988), + [aux_sym_preproc_include_token1] = ACTIONS(2988), + [aux_sym_preproc_def_token1] = ACTIONS(2988), + [aux_sym_preproc_if_token1] = ACTIONS(2988), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2988), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2988), + [sym_preproc_directive] = ACTIONS(2988), + [anon_sym_LPAREN2] = ACTIONS(2990), + [anon_sym_BANG] = ACTIONS(2990), + [anon_sym_TILDE] = ACTIONS(2990), + [anon_sym_DASH] = ACTIONS(2988), + [anon_sym_PLUS] = ACTIONS(2988), + [anon_sym_STAR] = ACTIONS(2990), + [anon_sym_AMP_AMP] = ACTIONS(2990), + [anon_sym_AMP] = ACTIONS(2988), + [anon_sym_SEMI] = ACTIONS(2990), + [anon_sym_typedef] = ACTIONS(2988), + [anon_sym_extern] = ACTIONS(2988), + [anon_sym___attribute__] = ACTIONS(2988), + [anon_sym_COLON_COLON] = ACTIONS(2990), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2990), + [anon_sym___declspec] = ACTIONS(2988), + [anon_sym___based] = ACTIONS(2988), + [anon_sym___cdecl] = ACTIONS(2988), + [anon_sym___clrcall] = ACTIONS(2988), + [anon_sym___stdcall] = ACTIONS(2988), + [anon_sym___fastcall] = ACTIONS(2988), + [anon_sym___thiscall] = ACTIONS(2988), + [anon_sym___vectorcall] = ACTIONS(2988), + [anon_sym_LBRACE] = ACTIONS(2990), + [anon_sym_LBRACK] = ACTIONS(2988), + [anon_sym_static] = ACTIONS(2988), + [anon_sym_register] = ACTIONS(2988), + [anon_sym_inline] = ACTIONS(2988), + [anon_sym_thread_local] = ACTIONS(2988), + [anon_sym_const] = ACTIONS(2988), + [anon_sym_constexpr] = ACTIONS(2988), + [anon_sym_volatile] = ACTIONS(2988), + [anon_sym_restrict] = ACTIONS(2988), + [anon_sym___restrict__] = ACTIONS(2988), + [anon_sym__Atomic] = ACTIONS(2988), + [anon_sym__Noreturn] = ACTIONS(2988), + [anon_sym_noreturn] = ACTIONS(2988), + [anon_sym_mutable] = ACTIONS(2988), + [anon_sym_constinit] = ACTIONS(2988), + [anon_sym_consteval] = ACTIONS(2988), + [anon_sym_signed] = ACTIONS(2988), + [anon_sym_unsigned] = ACTIONS(2988), + [anon_sym_long] = ACTIONS(2988), + [anon_sym_short] = ACTIONS(2988), + [sym_primitive_type] = ACTIONS(2988), + [anon_sym_enum] = ACTIONS(2988), + [anon_sym_class] = ACTIONS(2988), + [anon_sym_struct] = ACTIONS(2988), + [anon_sym_union] = ACTIONS(2988), + [anon_sym_if] = ACTIONS(2988), + [anon_sym_else] = ACTIONS(2988), + [anon_sym_switch] = ACTIONS(2988), + [anon_sym_case] = ACTIONS(2988), + [anon_sym_default] = ACTIONS(2988), + [anon_sym_while] = ACTIONS(2988), + [anon_sym_do] = ACTIONS(2988), + [anon_sym_for] = ACTIONS(2988), + [anon_sym_return] = ACTIONS(2988), + [anon_sym_break] = ACTIONS(2988), + [anon_sym_continue] = ACTIONS(2988), + [anon_sym_goto] = ACTIONS(2988), + [anon_sym_not] = ACTIONS(2988), + [anon_sym_compl] = ACTIONS(2988), + [anon_sym_DASH_DASH] = ACTIONS(2990), + [anon_sym_PLUS_PLUS] = ACTIONS(2990), + [anon_sym_sizeof] = ACTIONS(2988), + [anon_sym_offsetof] = ACTIONS(2988), + [anon_sym__Generic] = ACTIONS(2988), + [anon_sym_asm] = ACTIONS(2988), + [anon_sym___asm__] = ACTIONS(2988), + [sym_number_literal] = ACTIONS(2990), + [anon_sym_L_SQUOTE] = ACTIONS(2990), + [anon_sym_u_SQUOTE] = ACTIONS(2990), + [anon_sym_U_SQUOTE] = ACTIONS(2990), + [anon_sym_u8_SQUOTE] = ACTIONS(2990), + [anon_sym_SQUOTE] = ACTIONS(2990), + [anon_sym_L_DQUOTE] = ACTIONS(2990), + [anon_sym_u_DQUOTE] = ACTIONS(2990), + [anon_sym_U_DQUOTE] = ACTIONS(2990), + [anon_sym_u8_DQUOTE] = ACTIONS(2990), + [anon_sym_DQUOTE] = ACTIONS(2990), + [sym_true] = ACTIONS(2988), + [sym_false] = ACTIONS(2988), + [anon_sym_NULL] = ACTIONS(2988), + [anon_sym_nullptr] = ACTIONS(2988), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2988), + [anon_sym_decltype] = ACTIONS(2988), + [anon_sym_virtual] = ACTIONS(2988), + [anon_sym_explicit] = ACTIONS(2988), + [anon_sym_typename] = ACTIONS(2988), + [anon_sym_template] = ACTIONS(2988), + [anon_sym_operator] = ACTIONS(2988), + [anon_sym_try] = ACTIONS(2988), + [anon_sym_delete] = ACTIONS(2988), + [anon_sym_throw] = ACTIONS(2988), + [anon_sym_namespace] = ACTIONS(2988), + [anon_sym_using] = ACTIONS(2988), + [anon_sym_static_assert] = ACTIONS(2988), + [anon_sym_concept] = ACTIONS(2988), + [anon_sym_co_return] = ACTIONS(2988), + [anon_sym_co_yield] = ACTIONS(2988), + [anon_sym_R_DQUOTE] = ACTIONS(2990), + [anon_sym_LR_DQUOTE] = ACTIONS(2990), + [anon_sym_uR_DQUOTE] = ACTIONS(2990), + [anon_sym_UR_DQUOTE] = ACTIONS(2990), + [anon_sym_u8R_DQUOTE] = ACTIONS(2990), + [anon_sym_co_await] = ACTIONS(2988), + [anon_sym_new] = ACTIONS(2988), + [anon_sym_requires] = ACTIONS(2988), + [sym_this] = ACTIONS(2988), }, [1155] = { - [sym_expression_statement] = STATE(3106), - [sym__expression] = STATE(3527), - [sym_comma_expression] = STATE(6358), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_type_requirement] = STATE(1165), - [sym_compound_requirement] = STATE(1165), - [sym__requirement] = STATE(1165), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_requirement_seq_repeat1] = STATE(1165), - [sym_identifier] = ACTIONS(2954), - [anon_sym_LPAREN2] = ACTIONS(984), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(3238), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(3240), - [anon_sym_RBRACE] = ACTIONS(3242), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_typename] = ACTIONS(3244), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [ts_builtin_sym_end] = ACTIONS(3095), + [sym_identifier] = ACTIONS(3093), + [aux_sym_preproc_include_token1] = ACTIONS(3093), + [aux_sym_preproc_def_token1] = ACTIONS(3093), + [aux_sym_preproc_if_token1] = ACTIONS(3093), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3093), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3093), + [sym_preproc_directive] = ACTIONS(3093), + [anon_sym_LPAREN2] = ACTIONS(3095), + [anon_sym_BANG] = ACTIONS(3095), + [anon_sym_TILDE] = ACTIONS(3095), + [anon_sym_DASH] = ACTIONS(3093), + [anon_sym_PLUS] = ACTIONS(3093), + [anon_sym_STAR] = ACTIONS(3095), + [anon_sym_AMP_AMP] = ACTIONS(3095), + [anon_sym_AMP] = ACTIONS(3093), + [anon_sym_SEMI] = ACTIONS(3095), + [anon_sym_typedef] = ACTIONS(3093), + [anon_sym_extern] = ACTIONS(3093), + [anon_sym___attribute__] = ACTIONS(3093), + [anon_sym_COLON_COLON] = ACTIONS(3095), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3095), + [anon_sym___declspec] = ACTIONS(3093), + [anon_sym___based] = ACTIONS(3093), + [anon_sym___cdecl] = ACTIONS(3093), + [anon_sym___clrcall] = ACTIONS(3093), + [anon_sym___stdcall] = ACTIONS(3093), + [anon_sym___fastcall] = ACTIONS(3093), + [anon_sym___thiscall] = ACTIONS(3093), + [anon_sym___vectorcall] = ACTIONS(3093), + [anon_sym_LBRACE] = ACTIONS(3095), + [anon_sym_LBRACK] = ACTIONS(3093), + [anon_sym_static] = ACTIONS(3093), + [anon_sym_register] = ACTIONS(3093), + [anon_sym_inline] = ACTIONS(3093), + [anon_sym_thread_local] = ACTIONS(3093), + [anon_sym_const] = ACTIONS(3093), + [anon_sym_constexpr] = ACTIONS(3093), + [anon_sym_volatile] = ACTIONS(3093), + [anon_sym_restrict] = ACTIONS(3093), + [anon_sym___restrict__] = ACTIONS(3093), + [anon_sym__Atomic] = ACTIONS(3093), + [anon_sym__Noreturn] = ACTIONS(3093), + [anon_sym_noreturn] = ACTIONS(3093), + [anon_sym_mutable] = ACTIONS(3093), + [anon_sym_constinit] = ACTIONS(3093), + [anon_sym_consteval] = ACTIONS(3093), + [anon_sym_signed] = ACTIONS(3093), + [anon_sym_unsigned] = ACTIONS(3093), + [anon_sym_long] = ACTIONS(3093), + [anon_sym_short] = ACTIONS(3093), + [sym_primitive_type] = ACTIONS(3093), + [anon_sym_enum] = ACTIONS(3093), + [anon_sym_class] = ACTIONS(3093), + [anon_sym_struct] = ACTIONS(3093), + [anon_sym_union] = ACTIONS(3093), + [anon_sym_if] = ACTIONS(3093), + [anon_sym_else] = ACTIONS(3093), + [anon_sym_switch] = ACTIONS(3093), + [anon_sym_case] = ACTIONS(3093), + [anon_sym_default] = ACTIONS(3093), + [anon_sym_while] = ACTIONS(3093), + [anon_sym_do] = ACTIONS(3093), + [anon_sym_for] = ACTIONS(3093), + [anon_sym_return] = ACTIONS(3093), + [anon_sym_break] = ACTIONS(3093), + [anon_sym_continue] = ACTIONS(3093), + [anon_sym_goto] = ACTIONS(3093), + [anon_sym_not] = ACTIONS(3093), + [anon_sym_compl] = ACTIONS(3093), + [anon_sym_DASH_DASH] = ACTIONS(3095), + [anon_sym_PLUS_PLUS] = ACTIONS(3095), + [anon_sym_sizeof] = ACTIONS(3093), + [anon_sym_offsetof] = ACTIONS(3093), + [anon_sym__Generic] = ACTIONS(3093), + [anon_sym_asm] = ACTIONS(3093), + [anon_sym___asm__] = ACTIONS(3093), + [sym_number_literal] = ACTIONS(3095), + [anon_sym_L_SQUOTE] = ACTIONS(3095), + [anon_sym_u_SQUOTE] = ACTIONS(3095), + [anon_sym_U_SQUOTE] = ACTIONS(3095), + [anon_sym_u8_SQUOTE] = ACTIONS(3095), + [anon_sym_SQUOTE] = ACTIONS(3095), + [anon_sym_L_DQUOTE] = ACTIONS(3095), + [anon_sym_u_DQUOTE] = ACTIONS(3095), + [anon_sym_U_DQUOTE] = ACTIONS(3095), + [anon_sym_u8_DQUOTE] = ACTIONS(3095), + [anon_sym_DQUOTE] = ACTIONS(3095), + [sym_true] = ACTIONS(3093), + [sym_false] = ACTIONS(3093), + [anon_sym_NULL] = ACTIONS(3093), + [anon_sym_nullptr] = ACTIONS(3093), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3093), + [anon_sym_decltype] = ACTIONS(3093), + [anon_sym_virtual] = ACTIONS(3093), + [anon_sym_explicit] = ACTIONS(3093), + [anon_sym_typename] = ACTIONS(3093), + [anon_sym_template] = ACTIONS(3093), + [anon_sym_operator] = ACTIONS(3093), + [anon_sym_try] = ACTIONS(3093), + [anon_sym_delete] = ACTIONS(3093), + [anon_sym_throw] = ACTIONS(3093), + [anon_sym_namespace] = ACTIONS(3093), + [anon_sym_using] = ACTIONS(3093), + [anon_sym_static_assert] = ACTIONS(3093), + [anon_sym_concept] = ACTIONS(3093), + [anon_sym_co_return] = ACTIONS(3093), + [anon_sym_co_yield] = ACTIONS(3093), + [anon_sym_R_DQUOTE] = ACTIONS(3095), + [anon_sym_LR_DQUOTE] = ACTIONS(3095), + [anon_sym_uR_DQUOTE] = ACTIONS(3095), + [anon_sym_UR_DQUOTE] = ACTIONS(3095), + [anon_sym_u8R_DQUOTE] = ACTIONS(3095), + [anon_sym_co_await] = ACTIONS(3093), + [anon_sym_new] = ACTIONS(3093), + [anon_sym_requires] = ACTIONS(3093), + [sym_this] = ACTIONS(3093), }, [1156] = { - [sym_expression_statement] = STATE(3106), - [sym__expression] = STATE(3527), - [sym_comma_expression] = STATE(6358), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_type_requirement] = STATE(1159), - [sym_compound_requirement] = STATE(1159), - [sym__requirement] = STATE(1159), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_requirement_seq_repeat1] = STATE(1159), - [sym_identifier] = ACTIONS(2954), - [anon_sym_LPAREN2] = ACTIONS(984), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(3238), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(3240), - [anon_sym_RBRACE] = ACTIONS(3246), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_typename] = ACTIONS(3244), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token2] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, [1157] = { - [sym_expression_statement] = STATE(3106), - [sym__expression] = STATE(3527), - [sym_comma_expression] = STATE(6358), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_type_requirement] = STATE(1165), - [sym_compound_requirement] = STATE(1165), - [sym__requirement] = STATE(1165), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_requirement_seq_repeat1] = STATE(1165), - [sym_identifier] = ACTIONS(2954), - [anon_sym_LPAREN2] = ACTIONS(984), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(3238), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(3240), - [anon_sym_RBRACE] = ACTIONS(3248), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_typename] = ACTIONS(3244), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [ts_builtin_sym_end] = ACTIONS(3091), + [sym_identifier] = ACTIONS(3089), + [aux_sym_preproc_include_token1] = ACTIONS(3089), + [aux_sym_preproc_def_token1] = ACTIONS(3089), + [aux_sym_preproc_if_token1] = ACTIONS(3089), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3089), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3089), + [sym_preproc_directive] = ACTIONS(3089), + [anon_sym_LPAREN2] = ACTIONS(3091), + [anon_sym_BANG] = ACTIONS(3091), + [anon_sym_TILDE] = ACTIONS(3091), + [anon_sym_DASH] = ACTIONS(3089), + [anon_sym_PLUS] = ACTIONS(3089), + [anon_sym_STAR] = ACTIONS(3091), + [anon_sym_AMP_AMP] = ACTIONS(3091), + [anon_sym_AMP] = ACTIONS(3089), + [anon_sym_SEMI] = ACTIONS(3091), + [anon_sym_typedef] = ACTIONS(3089), + [anon_sym_extern] = ACTIONS(3089), + [anon_sym___attribute__] = ACTIONS(3089), + [anon_sym_COLON_COLON] = ACTIONS(3091), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3091), + [anon_sym___declspec] = ACTIONS(3089), + [anon_sym___based] = ACTIONS(3089), + [anon_sym___cdecl] = ACTIONS(3089), + [anon_sym___clrcall] = ACTIONS(3089), + [anon_sym___stdcall] = ACTIONS(3089), + [anon_sym___fastcall] = ACTIONS(3089), + [anon_sym___thiscall] = ACTIONS(3089), + [anon_sym___vectorcall] = ACTIONS(3089), + [anon_sym_LBRACE] = ACTIONS(3091), + [anon_sym_LBRACK] = ACTIONS(3089), + [anon_sym_static] = ACTIONS(3089), + [anon_sym_register] = ACTIONS(3089), + [anon_sym_inline] = ACTIONS(3089), + [anon_sym_thread_local] = ACTIONS(3089), + [anon_sym_const] = ACTIONS(3089), + [anon_sym_constexpr] = ACTIONS(3089), + [anon_sym_volatile] = ACTIONS(3089), + [anon_sym_restrict] = ACTIONS(3089), + [anon_sym___restrict__] = ACTIONS(3089), + [anon_sym__Atomic] = ACTIONS(3089), + [anon_sym__Noreturn] = ACTIONS(3089), + [anon_sym_noreturn] = ACTIONS(3089), + [anon_sym_mutable] = ACTIONS(3089), + [anon_sym_constinit] = ACTIONS(3089), + [anon_sym_consteval] = ACTIONS(3089), + [anon_sym_signed] = ACTIONS(3089), + [anon_sym_unsigned] = ACTIONS(3089), + [anon_sym_long] = ACTIONS(3089), + [anon_sym_short] = ACTIONS(3089), + [sym_primitive_type] = ACTIONS(3089), + [anon_sym_enum] = ACTIONS(3089), + [anon_sym_class] = ACTIONS(3089), + [anon_sym_struct] = ACTIONS(3089), + [anon_sym_union] = ACTIONS(3089), + [anon_sym_if] = ACTIONS(3089), + [anon_sym_else] = ACTIONS(3089), + [anon_sym_switch] = ACTIONS(3089), + [anon_sym_case] = ACTIONS(3089), + [anon_sym_default] = ACTIONS(3089), + [anon_sym_while] = ACTIONS(3089), + [anon_sym_do] = ACTIONS(3089), + [anon_sym_for] = ACTIONS(3089), + [anon_sym_return] = ACTIONS(3089), + [anon_sym_break] = ACTIONS(3089), + [anon_sym_continue] = ACTIONS(3089), + [anon_sym_goto] = ACTIONS(3089), + [anon_sym_not] = ACTIONS(3089), + [anon_sym_compl] = ACTIONS(3089), + [anon_sym_DASH_DASH] = ACTIONS(3091), + [anon_sym_PLUS_PLUS] = ACTIONS(3091), + [anon_sym_sizeof] = ACTIONS(3089), + [anon_sym_offsetof] = ACTIONS(3089), + [anon_sym__Generic] = ACTIONS(3089), + [anon_sym_asm] = ACTIONS(3089), + [anon_sym___asm__] = ACTIONS(3089), + [sym_number_literal] = ACTIONS(3091), + [anon_sym_L_SQUOTE] = ACTIONS(3091), + [anon_sym_u_SQUOTE] = ACTIONS(3091), + [anon_sym_U_SQUOTE] = ACTIONS(3091), + [anon_sym_u8_SQUOTE] = ACTIONS(3091), + [anon_sym_SQUOTE] = ACTIONS(3091), + [anon_sym_L_DQUOTE] = ACTIONS(3091), + [anon_sym_u_DQUOTE] = ACTIONS(3091), + [anon_sym_U_DQUOTE] = ACTIONS(3091), + [anon_sym_u8_DQUOTE] = ACTIONS(3091), + [anon_sym_DQUOTE] = ACTIONS(3091), + [sym_true] = ACTIONS(3089), + [sym_false] = ACTIONS(3089), + [anon_sym_NULL] = ACTIONS(3089), + [anon_sym_nullptr] = ACTIONS(3089), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3089), + [anon_sym_decltype] = ACTIONS(3089), + [anon_sym_virtual] = ACTIONS(3089), + [anon_sym_explicit] = ACTIONS(3089), + [anon_sym_typename] = ACTIONS(3089), + [anon_sym_template] = ACTIONS(3089), + [anon_sym_operator] = ACTIONS(3089), + [anon_sym_try] = ACTIONS(3089), + [anon_sym_delete] = ACTIONS(3089), + [anon_sym_throw] = ACTIONS(3089), + [anon_sym_namespace] = ACTIONS(3089), + [anon_sym_using] = ACTIONS(3089), + [anon_sym_static_assert] = ACTIONS(3089), + [anon_sym_concept] = ACTIONS(3089), + [anon_sym_co_return] = ACTIONS(3089), + [anon_sym_co_yield] = ACTIONS(3089), + [anon_sym_R_DQUOTE] = ACTIONS(3091), + [anon_sym_LR_DQUOTE] = ACTIONS(3091), + [anon_sym_uR_DQUOTE] = ACTIONS(3091), + [anon_sym_UR_DQUOTE] = ACTIONS(3091), + [anon_sym_u8R_DQUOTE] = ACTIONS(3091), + [anon_sym_co_await] = ACTIONS(3089), + [anon_sym_new] = ACTIONS(3089), + [anon_sym_requires] = ACTIONS(3089), + [sym_this] = ACTIONS(3089), }, [1158] = { - [sym_expression_statement] = STATE(3106), - [sym__expression] = STATE(3527), - [sym_comma_expression] = STATE(6358), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_type_requirement] = STATE(1155), - [sym_compound_requirement] = STATE(1155), - [sym__requirement] = STATE(1155), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_requirement_seq_repeat1] = STATE(1155), - [sym_identifier] = ACTIONS(2954), - [anon_sym_LPAREN2] = ACTIONS(984), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(3238), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(3240), - [anon_sym_RBRACE] = ACTIONS(3250), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_typename] = ACTIONS(3244), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [ts_builtin_sym_end] = ACTIONS(2972), + [sym_identifier] = ACTIONS(2970), + [aux_sym_preproc_include_token1] = ACTIONS(2970), + [aux_sym_preproc_def_token1] = ACTIONS(2970), + [aux_sym_preproc_if_token1] = ACTIONS(2970), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2970), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2970), + [sym_preproc_directive] = 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_AMP_AMP] = ACTIONS(2972), + [anon_sym_AMP] = ACTIONS(2970), + [anon_sym_SEMI] = ACTIONS(2972), + [anon_sym_typedef] = ACTIONS(2970), + [anon_sym_extern] = ACTIONS(2970), + [anon_sym___attribute__] = ACTIONS(2970), + [anon_sym_COLON_COLON] = ACTIONS(2972), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2972), + [anon_sym___declspec] = ACTIONS(2970), + [anon_sym___based] = ACTIONS(2970), + [anon_sym___cdecl] = ACTIONS(2970), + [anon_sym___clrcall] = ACTIONS(2970), + [anon_sym___stdcall] = ACTIONS(2970), + [anon_sym___fastcall] = ACTIONS(2970), + [anon_sym___thiscall] = ACTIONS(2970), + [anon_sym___vectorcall] = ACTIONS(2970), + [anon_sym_LBRACE] = ACTIONS(2972), + [anon_sym_LBRACK] = ACTIONS(2970), + [anon_sym_static] = ACTIONS(2970), + [anon_sym_register] = ACTIONS(2970), + [anon_sym_inline] = ACTIONS(2970), + [anon_sym_thread_local] = 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_noreturn] = ACTIONS(2970), + [anon_sym_mutable] = ACTIONS(2970), + [anon_sym_constinit] = ACTIONS(2970), + [anon_sym_consteval] = ACTIONS(2970), + [anon_sym_signed] = ACTIONS(2970), + [anon_sym_unsigned] = ACTIONS(2970), + [anon_sym_long] = ACTIONS(2970), + [anon_sym_short] = ACTIONS(2970), + [sym_primitive_type] = ACTIONS(2970), + [anon_sym_enum] = ACTIONS(2970), + [anon_sym_class] = ACTIONS(2970), + [anon_sym_struct] = ACTIONS(2970), + [anon_sym_union] = ACTIONS(2970), + [anon_sym_if] = ACTIONS(2970), + [anon_sym_else] = ACTIONS(3611), + [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_return] = ACTIONS(2970), + [anon_sym_break] = ACTIONS(2970), + [anon_sym_continue] = ACTIONS(2970), + [anon_sym_goto] = ACTIONS(2970), + [anon_sym_not] = ACTIONS(2970), + [anon_sym_compl] = ACTIONS(2970), + [anon_sym_DASH_DASH] = ACTIONS(2972), + [anon_sym_PLUS_PLUS] = ACTIONS(2972), + [anon_sym_sizeof] = ACTIONS(2970), + [anon_sym_offsetof] = ACTIONS(2970), + [anon_sym__Generic] = 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_L_DQUOTE] = ACTIONS(2972), + [anon_sym_u_DQUOTE] = ACTIONS(2972), + [anon_sym_U_DQUOTE] = ACTIONS(2972), + [anon_sym_u8_DQUOTE] = ACTIONS(2972), + [anon_sym_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), + [sym_auto] = ACTIONS(2970), + [anon_sym_decltype] = ACTIONS(2970), + [anon_sym_virtual] = ACTIONS(2970), + [anon_sym_explicit] = ACTIONS(2970), + [anon_sym_typename] = ACTIONS(2970), + [anon_sym_template] = ACTIONS(2970), + [anon_sym_operator] = ACTIONS(2970), + [anon_sym_try] = ACTIONS(2970), + [anon_sym_delete] = ACTIONS(2970), + [anon_sym_throw] = ACTIONS(2970), + [anon_sym_namespace] = ACTIONS(2970), + [anon_sym_using] = ACTIONS(2970), + [anon_sym_static_assert] = ACTIONS(2970), + [anon_sym_concept] = ACTIONS(2970), + [anon_sym_co_return] = ACTIONS(2970), + [anon_sym_co_yield] = ACTIONS(2970), + [anon_sym_R_DQUOTE] = ACTIONS(2972), + [anon_sym_LR_DQUOTE] = ACTIONS(2972), + [anon_sym_uR_DQUOTE] = ACTIONS(2972), + [anon_sym_UR_DQUOTE] = ACTIONS(2972), + [anon_sym_u8R_DQUOTE] = ACTIONS(2972), + [anon_sym_co_await] = ACTIONS(2970), + [anon_sym_new] = ACTIONS(2970), + [anon_sym_requires] = ACTIONS(2970), + [sym_this] = ACTIONS(2970), }, [1159] = { - [sym_expression_statement] = STATE(3106), - [sym__expression] = STATE(3527), - [sym_comma_expression] = STATE(6358), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_type_requirement] = STATE(1165), - [sym_compound_requirement] = STATE(1165), - [sym__requirement] = STATE(1165), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_requirement_seq_repeat1] = STATE(1165), - [sym_identifier] = ACTIONS(2954), - [anon_sym_LPAREN2] = ACTIONS(984), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(3238), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(3240), - [anon_sym_RBRACE] = ACTIONS(3252), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_typename] = ACTIONS(3244), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [ts_builtin_sym_end] = ACTIONS(3030), + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, [1160] = { - [sym_expression_statement] = STATE(3106), - [sym__expression] = STATE(3527), - [sym_comma_expression] = STATE(6358), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_type_requirement] = STATE(1165), - [sym_compound_requirement] = STATE(1165), - [sym__requirement] = STATE(1165), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_requirement_seq_repeat1] = STATE(1165), - [sym_identifier] = ACTIONS(2954), - [anon_sym_LPAREN2] = ACTIONS(984), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(3238), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(3240), - [anon_sym_RBRACE] = ACTIONS(3254), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_typename] = ACTIONS(3244), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [ts_builtin_sym_end] = ACTIONS(3030), + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, [1161] = { - [sym_expression_statement] = STATE(3106), - [sym__expression] = STATE(3527), - [sym_comma_expression] = STATE(6358), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_type_requirement] = STATE(1168), - [sym_compound_requirement] = STATE(1168), - [sym__requirement] = STATE(1168), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_requirement_seq_repeat1] = STATE(1168), - [sym_identifier] = ACTIONS(2954), - [anon_sym_LPAREN2] = ACTIONS(984), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(3238), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(3240), - [anon_sym_RBRACE] = ACTIONS(3256), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_typename] = ACTIONS(3244), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_RBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, [1162] = { - [sym_expression_statement] = STATE(3106), - [sym__expression] = STATE(3527), - [sym_comma_expression] = STATE(6358), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_type_requirement] = STATE(1173), - [sym_compound_requirement] = STATE(1173), - [sym__requirement] = STATE(1173), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_requirement_seq_repeat1] = STATE(1173), - [sym_identifier] = ACTIONS(2954), - [anon_sym_LPAREN2] = ACTIONS(984), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(3238), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(3240), - [anon_sym_RBRACE] = ACTIONS(3258), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_typename] = ACTIONS(3244), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [ts_builtin_sym_end] = ACTIONS(3030), + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, [1163] = { - [sym_expression_statement] = STATE(3106), - [sym__expression] = STATE(3527), - [sym_comma_expression] = STATE(6358), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_type_requirement] = STATE(1165), - [sym_compound_requirement] = STATE(1165), - [sym__requirement] = STATE(1165), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_requirement_seq_repeat1] = STATE(1165), - [sym_identifier] = ACTIONS(2954), - [anon_sym_LPAREN2] = ACTIONS(984), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(3238), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(3240), - [anon_sym_RBRACE] = ACTIONS(3260), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_typename] = ACTIONS(3244), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token2] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, [1164] = { - [sym_expression_statement] = STATE(3106), - [sym__expression] = STATE(3527), - [sym_comma_expression] = STATE(6358), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_type_requirement] = STATE(1165), - [sym_compound_requirement] = STATE(1165), - [sym__requirement] = STATE(1165), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_requirement_seq_repeat1] = STATE(1165), - [sym_identifier] = ACTIONS(2954), - [anon_sym_LPAREN2] = ACTIONS(984), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(3238), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(3240), - [anon_sym_RBRACE] = ACTIONS(3262), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_typename] = ACTIONS(3244), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token2] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, [1165] = { - [sym_expression_statement] = STATE(3106), - [sym__expression] = STATE(3527), - [sym_comma_expression] = STATE(6358), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_type_requirement] = STATE(1165), - [sym_compound_requirement] = STATE(1165), - [sym__requirement] = STATE(1165), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_requirement_seq_repeat1] = STATE(1165), - [sym_identifier] = ACTIONS(3264), - [anon_sym_LPAREN2] = ACTIONS(3267), - [anon_sym_BANG] = ACTIONS(3270), - [anon_sym_TILDE] = ACTIONS(3270), - [anon_sym_DASH] = ACTIONS(3273), - [anon_sym_PLUS] = ACTIONS(3273), - [anon_sym_STAR] = ACTIONS(3276), - [anon_sym_AMP] = ACTIONS(3276), - [anon_sym_SEMI] = ACTIONS(3279), - [anon_sym_COLON_COLON] = ACTIONS(3282), - [anon_sym_LBRACE] = ACTIONS(3285), - [anon_sym_RBRACE] = ACTIONS(3288), - [anon_sym_LBRACK] = ACTIONS(3290), - [sym_primitive_type] = ACTIONS(3293), - [anon_sym_not] = ACTIONS(3273), - [anon_sym_compl] = ACTIONS(3273), - [anon_sym_DASH_DASH] = ACTIONS(3296), - [anon_sym_PLUS_PLUS] = ACTIONS(3296), - [anon_sym_sizeof] = ACTIONS(3299), - [sym_number_literal] = ACTIONS(3302), - [anon_sym_L_SQUOTE] = ACTIONS(3305), - [anon_sym_u_SQUOTE] = ACTIONS(3305), - [anon_sym_U_SQUOTE] = ACTIONS(3305), - [anon_sym_u8_SQUOTE] = ACTIONS(3305), - [anon_sym_SQUOTE] = ACTIONS(3305), - [anon_sym_L_DQUOTE] = ACTIONS(3308), - [anon_sym_u_DQUOTE] = ACTIONS(3308), - [anon_sym_U_DQUOTE] = ACTIONS(3308), - [anon_sym_u8_DQUOTE] = ACTIONS(3308), - [anon_sym_DQUOTE] = ACTIONS(3308), - [sym_true] = ACTIONS(3311), - [sym_false] = ACTIONS(3311), - [sym_null] = ACTIONS(3311), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(3314), - [anon_sym_typename] = ACTIONS(3317), - [anon_sym_template] = ACTIONS(3320), - [anon_sym_delete] = ACTIONS(3323), - [anon_sym_R_DQUOTE] = ACTIONS(3326), - [anon_sym_LR_DQUOTE] = ACTIONS(3326), - [anon_sym_uR_DQUOTE] = ACTIONS(3326), - [anon_sym_UR_DQUOTE] = ACTIONS(3326), - [anon_sym_u8R_DQUOTE] = ACTIONS(3326), - [anon_sym_co_await] = ACTIONS(3329), - [anon_sym_new] = ACTIONS(3332), - [anon_sym_requires] = ACTIONS(3335), - [sym_this] = ACTIONS(3311), - [sym_nullptr] = ACTIONS(3311), + [ts_builtin_sym_end] = ACTIONS(3030), + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, [1166] = { - [sym_expression_statement] = STATE(3106), - [sym__expression] = STATE(3527), - [sym_comma_expression] = STATE(6358), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_type_requirement] = STATE(1165), - [sym_compound_requirement] = STATE(1165), - [sym__requirement] = STATE(1165), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_requirement_seq_repeat1] = STATE(1165), - [sym_identifier] = ACTIONS(2954), - [anon_sym_LPAREN2] = ACTIONS(984), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(3238), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(3240), - [anon_sym_RBRACE] = ACTIONS(3338), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_typename] = ACTIONS(3244), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [ts_builtin_sym_end] = ACTIONS(3030), + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, [1167] = { - [sym_expression_statement] = STATE(3106), - [sym__expression] = STATE(3527), - [sym_comma_expression] = STATE(6358), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_type_requirement] = STATE(1164), - [sym_compound_requirement] = STATE(1164), - [sym__requirement] = STATE(1164), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_requirement_seq_repeat1] = STATE(1164), - [sym_identifier] = ACTIONS(2954), - [anon_sym_LPAREN2] = ACTIONS(984), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(3238), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(3240), - [anon_sym_RBRACE] = ACTIONS(3340), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_typename] = ACTIONS(3244), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [ts_builtin_sym_end] = ACTIONS(3030), + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, [1168] = { - [sym_expression_statement] = STATE(3106), - [sym__expression] = STATE(3527), - [sym_comma_expression] = STATE(6358), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_type_requirement] = STATE(1165), - [sym_compound_requirement] = STATE(1165), - [sym__requirement] = STATE(1165), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_requirement_seq_repeat1] = STATE(1165), - [sym_identifier] = ACTIONS(2954), - [anon_sym_LPAREN2] = ACTIONS(984), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(3238), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(3240), - [anon_sym_RBRACE] = ACTIONS(3342), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_typename] = ACTIONS(3244), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [ts_builtin_sym_end] = ACTIONS(3030), + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, [1169] = { - [sym_expression_statement] = STATE(3106), - [sym__expression] = STATE(3527), - [sym_comma_expression] = STATE(6358), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_type_requirement] = STATE(1166), - [sym_compound_requirement] = STATE(1166), - [sym__requirement] = STATE(1166), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_requirement_seq_repeat1] = STATE(1166), - [sym_identifier] = ACTIONS(2954), - [anon_sym_LPAREN2] = ACTIONS(984), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(3238), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(3240), - [anon_sym_RBRACE] = ACTIONS(3344), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_typename] = ACTIONS(3244), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token2] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, [1170] = { - [sym_expression_statement] = STATE(3106), - [sym__expression] = STATE(3527), - [sym_comma_expression] = STATE(6358), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_type_requirement] = STATE(1163), - [sym_compound_requirement] = STATE(1163), - [sym__requirement] = STATE(1163), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_requirement_seq_repeat1] = STATE(1163), - [sym_identifier] = ACTIONS(2954), - [anon_sym_LPAREN2] = ACTIONS(984), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(3238), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(3240), - [anon_sym_RBRACE] = ACTIONS(3346), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_typename] = ACTIONS(3244), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [ts_builtin_sym_end] = ACTIONS(3030), + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, [1171] = { - [sym_expression_statement] = STATE(3106), - [sym__expression] = STATE(3527), - [sym_comma_expression] = STATE(6358), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_type_requirement] = STATE(1160), - [sym_compound_requirement] = STATE(1160), - [sym__requirement] = STATE(1160), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_requirement_seq_repeat1] = STATE(1160), - [sym_identifier] = ACTIONS(2954), - [anon_sym_LPAREN2] = ACTIONS(984), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(3238), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(3240), - [anon_sym_RBRACE] = ACTIONS(3348), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_typename] = ACTIONS(3244), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token2] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, [1172] = { - [sym_expression_statement] = STATE(3106), - [sym__expression] = STATE(3527), - [sym_comma_expression] = STATE(6358), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_type_requirement] = STATE(1157), - [sym_compound_requirement] = STATE(1157), - [sym__requirement] = STATE(1157), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_requirement_seq_repeat1] = STATE(1157), - [sym_identifier] = ACTIONS(2954), - [anon_sym_LPAREN2] = ACTIONS(984), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(3238), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(3240), - [anon_sym_RBRACE] = ACTIONS(3350), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_typename] = ACTIONS(3244), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token2] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, [1173] = { - [sym_expression_statement] = STATE(3106), - [sym__expression] = STATE(3527), - [sym_comma_expression] = STATE(6358), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_type_requirement] = STATE(1165), - [sym_compound_requirement] = STATE(1165), - [sym__requirement] = STATE(1165), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_requirement_seq_repeat1] = STATE(1165), - [sym_identifier] = ACTIONS(2954), - [anon_sym_LPAREN2] = ACTIONS(984), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(3238), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(3240), - [anon_sym_RBRACE] = ACTIONS(3352), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_typename] = ACTIONS(3244), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [ts_builtin_sym_end] = ACTIONS(3030), + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, [1174] = { - [sym_identifier] = ACTIONS(1737), - [anon_sym_LPAREN2] = ACTIONS(1735), - [anon_sym_BANG] = ACTIONS(1735), - [anon_sym_TILDE] = ACTIONS(1735), - [anon_sym_DASH] = ACTIONS(1737), - [anon_sym_PLUS] = ACTIONS(1737), - [anon_sym_STAR] = ACTIONS(1735), - [anon_sym_AMP] = ACTIONS(1735), - [anon_sym_SEMI] = ACTIONS(1735), - [anon_sym_typedef] = ACTIONS(1737), - [anon_sym_extern] = ACTIONS(1737), - [anon_sym___attribute__] = ACTIONS(1737), - [anon_sym_COLON_COLON] = ACTIONS(1735), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1735), - [anon_sym___declspec] = ACTIONS(1737), - [anon_sym_LBRACE] = ACTIONS(1735), - [anon_sym_LBRACK] = ACTIONS(1737), - [anon_sym_static] = ACTIONS(1737), - [anon_sym_register] = ACTIONS(1737), - [anon_sym_inline] = ACTIONS(1737), - [anon_sym_thread_local] = ACTIONS(1737), - [anon_sym_const] = ACTIONS(1737), - [anon_sym_volatile] = ACTIONS(1737), - [anon_sym_restrict] = ACTIONS(1737), - [anon_sym__Atomic] = ACTIONS(1737), - [anon_sym_mutable] = ACTIONS(1737), - [anon_sym_constexpr] = ACTIONS(1737), - [anon_sym_constinit] = ACTIONS(1737), - [anon_sym_consteval] = ACTIONS(1737), - [anon_sym_signed] = ACTIONS(1737), - [anon_sym_unsigned] = ACTIONS(1737), - [anon_sym_long] = ACTIONS(1737), - [anon_sym_short] = ACTIONS(1737), - [sym_primitive_type] = ACTIONS(1737), - [anon_sym_enum] = ACTIONS(1737), - [anon_sym_class] = ACTIONS(1737), - [anon_sym_struct] = ACTIONS(1737), - [anon_sym_union] = ACTIONS(1737), - [anon_sym_if] = ACTIONS(1737), - [anon_sym_else] = ACTIONS(1737), - [anon_sym_switch] = ACTIONS(1737), - [anon_sym_while] = ACTIONS(1737), - [anon_sym_do] = ACTIONS(1737), - [anon_sym_for] = ACTIONS(1737), - [anon_sym_return] = ACTIONS(1737), - [anon_sym_break] = ACTIONS(1737), - [anon_sym_continue] = ACTIONS(1737), - [anon_sym_goto] = ACTIONS(1737), - [anon_sym_not] = ACTIONS(1737), - [anon_sym_compl] = ACTIONS(1737), - [anon_sym_DASH_DASH] = ACTIONS(1735), - [anon_sym_PLUS_PLUS] = ACTIONS(1735), - [anon_sym_sizeof] = ACTIONS(1737), - [sym_number_literal] = ACTIONS(1735), - [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_L_DQUOTE] = ACTIONS(1735), - [anon_sym_u_DQUOTE] = ACTIONS(1735), - [anon_sym_U_DQUOTE] = ACTIONS(1735), - [anon_sym_u8_DQUOTE] = ACTIONS(1735), - [anon_sym_DQUOTE] = ACTIONS(1735), - [sym_true] = ACTIONS(1737), - [sym_false] = ACTIONS(1737), - [sym_null] = ACTIONS(1737), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1737), - [anon_sym_decltype] = ACTIONS(1737), - [anon_sym_virtual] = ACTIONS(1737), - [anon_sym_typename] = ACTIONS(1737), - [anon_sym_template] = ACTIONS(1737), - [anon_sym_try] = ACTIONS(1737), - [anon_sym_delete] = ACTIONS(1737), - [anon_sym_throw] = ACTIONS(1737), - [anon_sym_co_return] = ACTIONS(1737), - [anon_sym_co_yield] = ACTIONS(1737), - [anon_sym_catch] = ACTIONS(1737), - [anon_sym_R_DQUOTE] = ACTIONS(1735), - [anon_sym_LR_DQUOTE] = ACTIONS(1735), - [anon_sym_uR_DQUOTE] = ACTIONS(1735), - [anon_sym_UR_DQUOTE] = ACTIONS(1735), - [anon_sym_u8R_DQUOTE] = ACTIONS(1735), - [anon_sym_co_await] = ACTIONS(1737), - [anon_sym_new] = ACTIONS(1737), - [anon_sym_requires] = ACTIONS(1737), - [sym_this] = ACTIONS(1737), - [sym_nullptr] = ACTIONS(1737), + [ts_builtin_sym_end] = ACTIONS(3030), + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, [1175] = { - [sym__expression] = STATE(3455), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_initializer_list] = STATE(5412), - [sym_initializer_pair] = STATE(5412), - [sym_subscript_designator] = STATE(5115), - [sym_field_designator] = STATE(5115), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_initializer_pair_repeat1] = STATE(5115), - [sym_identifier] = ACTIONS(2954), - [anon_sym_COMMA] = ACTIONS(3354), - [anon_sym_LPAREN2] = ACTIONS(984), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1489), - [anon_sym_RBRACE] = ACTIONS(3356), - [anon_sym_LBRACK] = ACTIONS(3358), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym_DOT] = ACTIONS(197), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [ts_builtin_sym_end] = ACTIONS(3030), + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, [1176] = { - [sym__expression] = STATE(3451), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_initializer_list] = STATE(5587), - [sym_initializer_pair] = STATE(5587), - [sym_subscript_designator] = STATE(5115), - [sym_field_designator] = STATE(5115), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_initializer_pair_repeat1] = STATE(5115), - [sym_identifier] = ACTIONS(2954), - [anon_sym_COMMA] = ACTIONS(3360), - [anon_sym_LPAREN2] = ACTIONS(984), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1489), - [anon_sym_RBRACE] = ACTIONS(3362), - [anon_sym_LBRACK] = ACTIONS(3358), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym_DOT] = ACTIONS(197), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token2] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, [1177] = { - [sym_identifier] = ACTIONS(2404), - [anon_sym_LPAREN2] = ACTIONS(2406), - [anon_sym_BANG] = ACTIONS(2406), - [anon_sym_TILDE] = ACTIONS(2406), - [anon_sym_DASH] = ACTIONS(2404), - [anon_sym_PLUS] = ACTIONS(2404), - [anon_sym_STAR] = ACTIONS(2406), - [anon_sym_AMP] = ACTIONS(2406), - [anon_sym_SEMI] = ACTIONS(2406), - [anon_sym_typedef] = ACTIONS(2404), - [anon_sym_extern] = ACTIONS(2404), - [anon_sym___attribute__] = ACTIONS(2404), - [anon_sym_COLON_COLON] = ACTIONS(2406), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2406), - [anon_sym___declspec] = ACTIONS(2404), - [anon_sym_LBRACE] = ACTIONS(2406), - [anon_sym_LBRACK] = ACTIONS(2404), - [anon_sym_static] = ACTIONS(2404), - [anon_sym_register] = ACTIONS(2404), - [anon_sym_inline] = ACTIONS(2404), - [anon_sym_thread_local] = ACTIONS(2404), - [anon_sym_const] = ACTIONS(2404), - [anon_sym_volatile] = ACTIONS(2404), - [anon_sym_restrict] = ACTIONS(2404), - [anon_sym__Atomic] = ACTIONS(2404), - [anon_sym_mutable] = ACTIONS(2404), - [anon_sym_constexpr] = ACTIONS(2404), - [anon_sym_constinit] = ACTIONS(2404), - [anon_sym_consteval] = ACTIONS(2404), - [anon_sym_signed] = ACTIONS(2404), - [anon_sym_unsigned] = ACTIONS(2404), - [anon_sym_long] = ACTIONS(2404), - [anon_sym_short] = ACTIONS(2404), - [sym_primitive_type] = ACTIONS(2404), - [anon_sym_enum] = ACTIONS(2404), - [anon_sym_class] = ACTIONS(2404), - [anon_sym_struct] = ACTIONS(2404), - [anon_sym_union] = ACTIONS(2404), - [anon_sym_if] = ACTIONS(2404), - [anon_sym_else] = ACTIONS(2404), - [anon_sym_switch] = ACTIONS(2404), - [anon_sym_while] = ACTIONS(2404), - [anon_sym_do] = ACTIONS(2404), - [anon_sym_for] = ACTIONS(2404), - [anon_sym_return] = ACTIONS(2404), - [anon_sym_break] = ACTIONS(2404), - [anon_sym_continue] = ACTIONS(2404), - [anon_sym_goto] = ACTIONS(2404), - [anon_sym_not] = ACTIONS(2404), - [anon_sym_compl] = ACTIONS(2404), - [anon_sym_DASH_DASH] = ACTIONS(2406), - [anon_sym_PLUS_PLUS] = ACTIONS(2406), - [anon_sym_sizeof] = ACTIONS(2404), - [sym_number_literal] = ACTIONS(2406), - [anon_sym_L_SQUOTE] = ACTIONS(2406), - [anon_sym_u_SQUOTE] = ACTIONS(2406), - [anon_sym_U_SQUOTE] = ACTIONS(2406), - [anon_sym_u8_SQUOTE] = ACTIONS(2406), - [anon_sym_SQUOTE] = ACTIONS(2406), - [anon_sym_L_DQUOTE] = ACTIONS(2406), - [anon_sym_u_DQUOTE] = ACTIONS(2406), - [anon_sym_U_DQUOTE] = ACTIONS(2406), - [anon_sym_u8_DQUOTE] = ACTIONS(2406), - [anon_sym_DQUOTE] = ACTIONS(2406), - [sym_true] = ACTIONS(2404), - [sym_false] = ACTIONS(2404), - [sym_null] = ACTIONS(2404), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2404), - [anon_sym_decltype] = ACTIONS(2404), - [anon_sym_virtual] = ACTIONS(2404), - [anon_sym_typename] = ACTIONS(2404), - [anon_sym_template] = ACTIONS(2404), - [anon_sym_try] = ACTIONS(2404), - [anon_sym_delete] = ACTIONS(2404), - [anon_sym_throw] = ACTIONS(2404), - [anon_sym_co_return] = ACTIONS(2404), - [anon_sym_co_yield] = ACTIONS(2404), - [anon_sym_catch] = ACTIONS(2404), - [anon_sym_R_DQUOTE] = ACTIONS(2406), - [anon_sym_LR_DQUOTE] = ACTIONS(2406), - [anon_sym_uR_DQUOTE] = ACTIONS(2406), - [anon_sym_UR_DQUOTE] = ACTIONS(2406), - [anon_sym_u8R_DQUOTE] = ACTIONS(2406), - [anon_sym_co_await] = ACTIONS(2404), - [anon_sym_new] = ACTIONS(2404), - [anon_sym_requires] = ACTIONS(2404), - [sym_this] = ACTIONS(2404), - [sym_nullptr] = ACTIONS(2404), + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token2] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, [1178] = { - [sym__expression] = STATE(3443), - [sym_comma_expression] = STATE(5811), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_initializer_list] = STATE(5896), - [sym_initializer_pair] = STATE(5896), - [sym_subscript_designator] = STATE(5115), - [sym_field_designator] = STATE(5115), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_initializer_pair_repeat1] = STATE(5115), - [sym_identifier] = ACTIONS(2954), - [anon_sym_LPAREN2] = ACTIONS(984), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1489), - [anon_sym_RBRACE] = ACTIONS(3364), - [anon_sym_LBRACK] = ACTIONS(3358), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym_DOT] = ACTIONS(197), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token2] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, [1179] = { - [sym__expression] = STATE(3475), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_initializer_list] = STATE(5369), - [sym_initializer_pair] = STATE(5369), - [sym_subscript_designator] = STATE(5115), - [sym_field_designator] = STATE(5115), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_initializer_pair_repeat1] = STATE(5115), - [sym_identifier] = ACTIONS(2954), - [anon_sym_COMMA] = ACTIONS(153), - [anon_sym_LPAREN2] = ACTIONS(984), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1489), - [anon_sym_RBRACE] = ACTIONS(3366), - [anon_sym_LBRACK] = ACTIONS(3358), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym_DOT] = ACTIONS(197), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token2] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, [1180] = { - [sym__expression] = STATE(3486), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_initializer_list] = STATE(5532), - [sym_initializer_pair] = STATE(5532), - [sym_subscript_designator] = STATE(5115), - [sym_field_designator] = STATE(5115), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_initializer_pair_repeat1] = STATE(5115), - [sym_identifier] = ACTIONS(2954), - [anon_sym_COMMA] = ACTIONS(3368), - [anon_sym_LPAREN2] = ACTIONS(984), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1489), - [anon_sym_RBRACE] = ACTIONS(3370), - [anon_sym_LBRACK] = ACTIONS(3358), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym_DOT] = ACTIONS(197), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token2] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, [1181] = { - [sym_identifier] = ACTIONS(1729), - [anon_sym_LPAREN2] = ACTIONS(1727), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_PLUS] = ACTIONS(1729), - [anon_sym_STAR] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_SEMI] = ACTIONS(1727), - [anon_sym_typedef] = ACTIONS(1729), - [anon_sym_extern] = ACTIONS(1729), - [anon_sym___attribute__] = ACTIONS(1729), - [anon_sym_COLON_COLON] = ACTIONS(1727), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1727), - [anon_sym___declspec] = ACTIONS(1729), - [anon_sym_LBRACE] = ACTIONS(1727), - [anon_sym_LBRACK] = ACTIONS(1729), - [anon_sym_static] = ACTIONS(1729), - [anon_sym_register] = ACTIONS(1729), - [anon_sym_inline] = ACTIONS(1729), - [anon_sym_thread_local] = ACTIONS(1729), - [anon_sym_const] = ACTIONS(1729), - [anon_sym_volatile] = ACTIONS(1729), - [anon_sym_restrict] = ACTIONS(1729), - [anon_sym__Atomic] = ACTIONS(1729), - [anon_sym_mutable] = ACTIONS(1729), - [anon_sym_constexpr] = ACTIONS(1729), - [anon_sym_constinit] = ACTIONS(1729), - [anon_sym_consteval] = ACTIONS(1729), - [anon_sym_signed] = ACTIONS(1729), - [anon_sym_unsigned] = ACTIONS(1729), - [anon_sym_long] = ACTIONS(1729), - [anon_sym_short] = ACTIONS(1729), - [sym_primitive_type] = ACTIONS(1729), - [anon_sym_enum] = ACTIONS(1729), - [anon_sym_class] = ACTIONS(1729), - [anon_sym_struct] = ACTIONS(1729), - [anon_sym_union] = ACTIONS(1729), - [anon_sym_if] = ACTIONS(1729), - [anon_sym_else] = ACTIONS(1729), - [anon_sym_switch] = ACTIONS(1729), - [anon_sym_while] = ACTIONS(1729), - [anon_sym_do] = ACTIONS(1729), - [anon_sym_for] = ACTIONS(1729), - [anon_sym_return] = ACTIONS(1729), - [anon_sym_break] = ACTIONS(1729), - [anon_sym_continue] = ACTIONS(1729), - [anon_sym_goto] = ACTIONS(1729), - [anon_sym_not] = ACTIONS(1729), - [anon_sym_compl] = ACTIONS(1729), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_sizeof] = ACTIONS(1729), - [sym_number_literal] = ACTIONS(1727), - [anon_sym_L_SQUOTE] = ACTIONS(1727), - [anon_sym_u_SQUOTE] = ACTIONS(1727), - [anon_sym_U_SQUOTE] = ACTIONS(1727), - [anon_sym_u8_SQUOTE] = ACTIONS(1727), - [anon_sym_SQUOTE] = ACTIONS(1727), - [anon_sym_L_DQUOTE] = ACTIONS(1727), - [anon_sym_u_DQUOTE] = ACTIONS(1727), - [anon_sym_U_DQUOTE] = ACTIONS(1727), - [anon_sym_u8_DQUOTE] = ACTIONS(1727), - [anon_sym_DQUOTE] = ACTIONS(1727), - [sym_true] = ACTIONS(1729), - [sym_false] = ACTIONS(1729), - [sym_null] = ACTIONS(1729), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1729), - [anon_sym_decltype] = ACTIONS(1729), - [anon_sym_virtual] = ACTIONS(1729), - [anon_sym_typename] = ACTIONS(1729), - [anon_sym_template] = ACTIONS(1729), - [anon_sym_try] = ACTIONS(1729), - [anon_sym_delete] = ACTIONS(1729), - [anon_sym_throw] = ACTIONS(1729), - [anon_sym_co_return] = ACTIONS(1729), - [anon_sym_co_yield] = ACTIONS(1729), - [anon_sym_catch] = ACTIONS(1729), - [anon_sym_R_DQUOTE] = ACTIONS(1727), - [anon_sym_LR_DQUOTE] = ACTIONS(1727), - [anon_sym_uR_DQUOTE] = ACTIONS(1727), - [anon_sym_UR_DQUOTE] = ACTIONS(1727), - [anon_sym_u8R_DQUOTE] = ACTIONS(1727), - [anon_sym_co_await] = ACTIONS(1729), - [anon_sym_new] = ACTIONS(1729), - [anon_sym_requires] = ACTIONS(1729), - [sym_this] = ACTIONS(1729), - [sym_nullptr] = ACTIONS(1729), + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token2] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, [1182] = { - [sym__expression] = STATE(3463), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_initializer_list] = STATE(5432), - [sym_initializer_pair] = STATE(5432), - [sym_subscript_designator] = STATE(5115), - [sym_field_designator] = STATE(5115), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_initializer_pair_repeat1] = STATE(5115), - [sym_identifier] = ACTIONS(2954), - [anon_sym_COMMA] = ACTIONS(3372), - [anon_sym_LPAREN2] = ACTIONS(984), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1489), - [anon_sym_RBRACE] = ACTIONS(3374), - [anon_sym_LBRACK] = ACTIONS(3358), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym_DOT] = ACTIONS(197), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [sym_identifier] = ACTIONS(3048), + [aux_sym_preproc_include_token1] = ACTIONS(3048), + [aux_sym_preproc_def_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token1] = ACTIONS(3048), + [aux_sym_preproc_if_token2] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3048), + [sym_preproc_directive] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP_AMP] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym___based] = ACTIONS(3048), + [anon_sym___cdecl] = ACTIONS(3048), + [anon_sym___clrcall] = ACTIONS(3048), + [anon_sym___stdcall] = ACTIONS(3048), + [anon_sym___fastcall] = ACTIONS(3048), + [anon_sym___thiscall] = ACTIONS(3048), + [anon_sym___vectorcall] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_explicit] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_operator] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_using] = ACTIONS(3048), + [anon_sym_static_assert] = ACTIONS(3048), + [anon_sym_concept] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, [1183] = { - [sym__expression] = STATE(3460), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_initializer_list] = STATE(5624), - [sym_initializer_pair] = STATE(5624), - [sym_subscript_designator] = STATE(5115), - [sym_field_designator] = STATE(5115), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_initializer_pair_repeat1] = STATE(5115), - [sym_identifier] = ACTIONS(2954), - [anon_sym_COMMA] = ACTIONS(3376), - [anon_sym_LPAREN2] = ACTIONS(984), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1489), - [anon_sym_RBRACE] = ACTIONS(3378), - [anon_sym_LBRACK] = ACTIONS(3358), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym_DOT] = ACTIONS(197), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [sym_identifier] = ACTIONS(3024), + [aux_sym_preproc_include_token1] = ACTIONS(3024), + [aux_sym_preproc_def_token1] = ACTIONS(3024), + [aux_sym_preproc_if_token1] = ACTIONS(3024), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3024), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3024), + [sym_preproc_directive] = ACTIONS(3024), + [anon_sym_LPAREN2] = ACTIONS(3026), + [anon_sym_BANG] = ACTIONS(3026), + [anon_sym_TILDE] = ACTIONS(3026), + [anon_sym_DASH] = ACTIONS(3024), + [anon_sym_PLUS] = ACTIONS(3024), + [anon_sym_STAR] = ACTIONS(3026), + [anon_sym_AMP_AMP] = ACTIONS(3026), + [anon_sym_AMP] = ACTIONS(3024), + [anon_sym_SEMI] = ACTIONS(3026), + [anon_sym_typedef] = ACTIONS(3024), + [anon_sym_extern] = ACTIONS(3024), + [anon_sym___attribute__] = ACTIONS(3024), + [anon_sym_COLON_COLON] = ACTIONS(3026), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3026), + [anon_sym___declspec] = ACTIONS(3024), + [anon_sym___based] = ACTIONS(3024), + [anon_sym___cdecl] = ACTIONS(3024), + [anon_sym___clrcall] = ACTIONS(3024), + [anon_sym___stdcall] = ACTIONS(3024), + [anon_sym___fastcall] = ACTIONS(3024), + [anon_sym___thiscall] = ACTIONS(3024), + [anon_sym___vectorcall] = ACTIONS(3024), + [anon_sym_LBRACE] = ACTIONS(3026), + [anon_sym_RBRACE] = ACTIONS(3026), + [anon_sym_LBRACK] = ACTIONS(3024), + [anon_sym_static] = ACTIONS(3024), + [anon_sym_register] = ACTIONS(3024), + [anon_sym_inline] = ACTIONS(3024), + [anon_sym_thread_local] = ACTIONS(3024), + [anon_sym_const] = ACTIONS(3024), + [anon_sym_constexpr] = ACTIONS(3024), + [anon_sym_volatile] = ACTIONS(3024), + [anon_sym_restrict] = ACTIONS(3024), + [anon_sym___restrict__] = ACTIONS(3024), + [anon_sym__Atomic] = ACTIONS(3024), + [anon_sym__Noreturn] = ACTIONS(3024), + [anon_sym_noreturn] = ACTIONS(3024), + [anon_sym_mutable] = ACTIONS(3024), + [anon_sym_constinit] = ACTIONS(3024), + [anon_sym_consteval] = ACTIONS(3024), + [anon_sym_signed] = ACTIONS(3024), + [anon_sym_unsigned] = ACTIONS(3024), + [anon_sym_long] = ACTIONS(3024), + [anon_sym_short] = ACTIONS(3024), + [sym_primitive_type] = ACTIONS(3024), + [anon_sym_enum] = ACTIONS(3024), + [anon_sym_class] = ACTIONS(3024), + [anon_sym_struct] = ACTIONS(3024), + [anon_sym_union] = ACTIONS(3024), + [anon_sym_if] = ACTIONS(3024), + [anon_sym_else] = ACTIONS(3024), + [anon_sym_switch] = ACTIONS(3024), + [anon_sym_case] = ACTIONS(3024), + [anon_sym_default] = ACTIONS(3024), + [anon_sym_while] = ACTIONS(3024), + [anon_sym_do] = ACTIONS(3024), + [anon_sym_for] = ACTIONS(3024), + [anon_sym_return] = ACTIONS(3024), + [anon_sym_break] = ACTIONS(3024), + [anon_sym_continue] = ACTIONS(3024), + [anon_sym_goto] = ACTIONS(3024), + [anon_sym_not] = ACTIONS(3024), + [anon_sym_compl] = ACTIONS(3024), + [anon_sym_DASH_DASH] = ACTIONS(3026), + [anon_sym_PLUS_PLUS] = ACTIONS(3026), + [anon_sym_sizeof] = ACTIONS(3024), + [anon_sym_offsetof] = ACTIONS(3024), + [anon_sym__Generic] = ACTIONS(3024), + [anon_sym_asm] = ACTIONS(3024), + [anon_sym___asm__] = ACTIONS(3024), + [sym_number_literal] = ACTIONS(3026), + [anon_sym_L_SQUOTE] = ACTIONS(3026), + [anon_sym_u_SQUOTE] = ACTIONS(3026), + [anon_sym_U_SQUOTE] = ACTIONS(3026), + [anon_sym_u8_SQUOTE] = ACTIONS(3026), + [anon_sym_SQUOTE] = ACTIONS(3026), + [anon_sym_L_DQUOTE] = ACTIONS(3026), + [anon_sym_u_DQUOTE] = ACTIONS(3026), + [anon_sym_U_DQUOTE] = ACTIONS(3026), + [anon_sym_u8_DQUOTE] = ACTIONS(3026), + [anon_sym_DQUOTE] = ACTIONS(3026), + [sym_true] = ACTIONS(3024), + [sym_false] = ACTIONS(3024), + [anon_sym_NULL] = ACTIONS(3024), + [anon_sym_nullptr] = ACTIONS(3024), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3024), + [anon_sym_decltype] = ACTIONS(3024), + [anon_sym_virtual] = ACTIONS(3024), + [anon_sym_explicit] = ACTIONS(3024), + [anon_sym_typename] = ACTIONS(3024), + [anon_sym_template] = ACTIONS(3024), + [anon_sym_operator] = ACTIONS(3024), + [anon_sym_try] = ACTIONS(3024), + [anon_sym_delete] = ACTIONS(3024), + [anon_sym_throw] = ACTIONS(3024), + [anon_sym_namespace] = ACTIONS(3024), + [anon_sym_using] = ACTIONS(3024), + [anon_sym_static_assert] = ACTIONS(3024), + [anon_sym_concept] = ACTIONS(3024), + [anon_sym_co_return] = ACTIONS(3024), + [anon_sym_co_yield] = ACTIONS(3024), + [anon_sym_R_DQUOTE] = ACTIONS(3026), + [anon_sym_LR_DQUOTE] = ACTIONS(3026), + [anon_sym_uR_DQUOTE] = ACTIONS(3026), + [anon_sym_UR_DQUOTE] = ACTIONS(3026), + [anon_sym_u8R_DQUOTE] = ACTIONS(3026), + [anon_sym_co_await] = ACTIONS(3024), + [anon_sym_new] = ACTIONS(3024), + [anon_sym_requires] = ACTIONS(3024), + [sym_this] = ACTIONS(3024), }, [1184] = { - [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_AMP] = ACTIONS(2464), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym_LBRACE] = ACTIONS(2464), - [anon_sym_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [ts_builtin_sym_end] = ACTIONS(3030), + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, [1185] = { - [sym_identifier] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2616), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), + [ts_builtin_sym_end] = ACTIONS(3030), + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, [1186] = { - [sym_identifier] = ACTIONS(3143), - [anon_sym_LPAREN2] = ACTIONS(3149), - [anon_sym_BANG] = ACTIONS(3149), - [anon_sym_TILDE] = ACTIONS(3149), - [anon_sym_DASH] = ACTIONS(3151), - [anon_sym_PLUS] = ACTIONS(3151), - [anon_sym_STAR] = ACTIONS(3149), - [anon_sym_AMP] = ACTIONS(3149), - [anon_sym_SEMI] = ACTIONS(3149), - [anon_sym_extern] = ACTIONS(3155), - [anon_sym___attribute__] = ACTIONS(3155), - [anon_sym_COLON_COLON] = ACTIONS(3146), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3146), - [anon_sym___declspec] = ACTIONS(3155), - [anon_sym_LBRACE] = ACTIONS(3149), - [anon_sym_LBRACK] = ACTIONS(3151), - [anon_sym_static] = ACTIONS(3155), - [anon_sym_register] = ACTIONS(3155), - [anon_sym_inline] = ACTIONS(3155), - [anon_sym_thread_local] = ACTIONS(3155), - [anon_sym_const] = ACTIONS(3155), - [anon_sym_volatile] = ACTIONS(3155), - [anon_sym_restrict] = ACTIONS(3155), - [anon_sym__Atomic] = ACTIONS(3155), - [anon_sym_mutable] = ACTIONS(3155), - [anon_sym_constexpr] = ACTIONS(3155), - [anon_sym_constinit] = ACTIONS(3155), - [anon_sym_consteval] = ACTIONS(3155), - [anon_sym_signed] = ACTIONS(3155), - [anon_sym_unsigned] = ACTIONS(3155), - [anon_sym_long] = ACTIONS(3155), - [anon_sym_short] = ACTIONS(3155), - [sym_primitive_type] = ACTIONS(3143), - [anon_sym_enum] = ACTIONS(3155), - [anon_sym_class] = ACTIONS(3155), - [anon_sym_struct] = ACTIONS(3155), - [anon_sym_union] = ACTIONS(3155), - [anon_sym_if] = ACTIONS(3151), - [anon_sym_switch] = ACTIONS(3151), - [anon_sym_case] = ACTIONS(3151), - [anon_sym_default] = ACTIONS(3151), - [anon_sym_while] = ACTIONS(3151), - [anon_sym_do] = ACTIONS(3151), - [anon_sym_for] = ACTIONS(3151), - [anon_sym_return] = ACTIONS(3151), - [anon_sym_break] = ACTIONS(3151), - [anon_sym_continue] = ACTIONS(3151), - [anon_sym_goto] = ACTIONS(3151), - [anon_sym_not] = ACTIONS(3151), - [anon_sym_compl] = ACTIONS(3151), - [anon_sym_DASH_DASH] = ACTIONS(3149), - [anon_sym_PLUS_PLUS] = ACTIONS(3149), - [anon_sym_sizeof] = ACTIONS(3151), - [sym_number_literal] = ACTIONS(3149), - [anon_sym_L_SQUOTE] = ACTIONS(3149), - [anon_sym_u_SQUOTE] = ACTIONS(3149), - [anon_sym_U_SQUOTE] = ACTIONS(3149), - [anon_sym_u8_SQUOTE] = ACTIONS(3149), - [anon_sym_SQUOTE] = ACTIONS(3149), - [anon_sym_L_DQUOTE] = ACTIONS(3149), - [anon_sym_u_DQUOTE] = ACTIONS(3149), - [anon_sym_U_DQUOTE] = ACTIONS(3149), - [anon_sym_u8_DQUOTE] = ACTIONS(3149), - [anon_sym_DQUOTE] = ACTIONS(3149), - [sym_true] = ACTIONS(3151), - [sym_false] = ACTIONS(3151), - [sym_null] = ACTIONS(3151), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3155), - [anon_sym_decltype] = ACTIONS(3143), - [anon_sym_virtual] = ACTIONS(3155), - [anon_sym_typename] = ACTIONS(3155), - [anon_sym_template] = ACTIONS(3143), - [anon_sym_try] = ACTIONS(3151), - [anon_sym_delete] = ACTIONS(3151), - [anon_sym_throw] = ACTIONS(3151), - [anon_sym_co_return] = ACTIONS(3151), - [anon_sym_co_yield] = ACTIONS(3151), - [anon_sym_R_DQUOTE] = ACTIONS(3149), - [anon_sym_LR_DQUOTE] = ACTIONS(3149), - [anon_sym_uR_DQUOTE] = ACTIONS(3149), - [anon_sym_UR_DQUOTE] = ACTIONS(3149), - [anon_sym_u8R_DQUOTE] = ACTIONS(3149), - [anon_sym_co_await] = ACTIONS(3151), - [anon_sym_new] = ACTIONS(3151), - [anon_sym_requires] = ACTIONS(3151), - [sym_this] = ACTIONS(3151), - [sym_nullptr] = ACTIONS(3151), + [ts_builtin_sym_end] = ACTIONS(3030), + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, [1187] = { - [sym__expression] = STATE(3589), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_initializer_list] = STATE(5896), - [sym_initializer_pair] = STATE(5896), - [sym_subscript_designator] = STATE(5115), - [sym_field_designator] = STATE(5115), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_initializer_pair_repeat1] = STATE(5115), - [sym_identifier] = ACTIONS(2954), - [anon_sym_LPAREN2] = ACTIONS(984), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1489), - [anon_sym_RBRACE] = ACTIONS(3380), - [anon_sym_LBRACK] = ACTIONS(3358), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym_DOT] = ACTIONS(197), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [sym_identifier] = ACTIONS(2962), + [aux_sym_preproc_include_token1] = ACTIONS(2962), + [aux_sym_preproc_def_token1] = ACTIONS(2962), + [aux_sym_preproc_if_token1] = ACTIONS(2962), + [aux_sym_preproc_if_token2] = ACTIONS(2962), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2962), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2962), + [sym_preproc_directive] = ACTIONS(2962), + [anon_sym_LPAREN2] = ACTIONS(2964), + [anon_sym_BANG] = ACTIONS(2964), + [anon_sym_TILDE] = ACTIONS(2964), + [anon_sym_DASH] = ACTIONS(2962), + [anon_sym_PLUS] = ACTIONS(2962), + [anon_sym_STAR] = ACTIONS(2964), + [anon_sym_AMP_AMP] = ACTIONS(2964), + [anon_sym_AMP] = ACTIONS(2962), + [anon_sym_SEMI] = ACTIONS(2964), + [anon_sym_typedef] = ACTIONS(2962), + [anon_sym_extern] = ACTIONS(2962), + [anon_sym___attribute__] = ACTIONS(2962), + [anon_sym_COLON_COLON] = ACTIONS(2964), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2964), + [anon_sym___declspec] = ACTIONS(2962), + [anon_sym___based] = ACTIONS(2962), + [anon_sym___cdecl] = ACTIONS(2962), + [anon_sym___clrcall] = ACTIONS(2962), + [anon_sym___stdcall] = ACTIONS(2962), + [anon_sym___fastcall] = ACTIONS(2962), + [anon_sym___thiscall] = ACTIONS(2962), + [anon_sym___vectorcall] = ACTIONS(2962), + [anon_sym_LBRACE] = ACTIONS(2964), + [anon_sym_LBRACK] = ACTIONS(2962), + [anon_sym_static] = ACTIONS(2962), + [anon_sym_register] = ACTIONS(2962), + [anon_sym_inline] = ACTIONS(2962), + [anon_sym_thread_local] = ACTIONS(2962), + [anon_sym_const] = ACTIONS(2962), + [anon_sym_constexpr] = ACTIONS(2962), + [anon_sym_volatile] = ACTIONS(2962), + [anon_sym_restrict] = ACTIONS(2962), + [anon_sym___restrict__] = ACTIONS(2962), + [anon_sym__Atomic] = ACTIONS(2962), + [anon_sym__Noreturn] = ACTIONS(2962), + [anon_sym_noreturn] = ACTIONS(2962), + [anon_sym_mutable] = ACTIONS(2962), + [anon_sym_constinit] = ACTIONS(2962), + [anon_sym_consteval] = ACTIONS(2962), + [anon_sym_signed] = ACTIONS(2962), + [anon_sym_unsigned] = ACTIONS(2962), + [anon_sym_long] = ACTIONS(2962), + [anon_sym_short] = ACTIONS(2962), + [sym_primitive_type] = ACTIONS(2962), + [anon_sym_enum] = ACTIONS(2962), + [anon_sym_class] = ACTIONS(2962), + [anon_sym_struct] = ACTIONS(2962), + [anon_sym_union] = ACTIONS(2962), + [anon_sym_if] = ACTIONS(2962), + [anon_sym_else] = ACTIONS(2962), + [anon_sym_switch] = ACTIONS(2962), + [anon_sym_case] = ACTIONS(2962), + [anon_sym_default] = ACTIONS(2962), + [anon_sym_while] = ACTIONS(2962), + [anon_sym_do] = ACTIONS(2962), + [anon_sym_for] = ACTIONS(2962), + [anon_sym_return] = ACTIONS(2962), + [anon_sym_break] = ACTIONS(2962), + [anon_sym_continue] = ACTIONS(2962), + [anon_sym_goto] = ACTIONS(2962), + [anon_sym_not] = ACTIONS(2962), + [anon_sym_compl] = ACTIONS(2962), + [anon_sym_DASH_DASH] = ACTIONS(2964), + [anon_sym_PLUS_PLUS] = ACTIONS(2964), + [anon_sym_sizeof] = ACTIONS(2962), + [anon_sym_offsetof] = ACTIONS(2962), + [anon_sym__Generic] = ACTIONS(2962), + [anon_sym_asm] = ACTIONS(2962), + [anon_sym___asm__] = ACTIONS(2962), + [sym_number_literal] = ACTIONS(2964), + [anon_sym_L_SQUOTE] = ACTIONS(2964), + [anon_sym_u_SQUOTE] = ACTIONS(2964), + [anon_sym_U_SQUOTE] = ACTIONS(2964), + [anon_sym_u8_SQUOTE] = ACTIONS(2964), + [anon_sym_SQUOTE] = ACTIONS(2964), + [anon_sym_L_DQUOTE] = ACTIONS(2964), + [anon_sym_u_DQUOTE] = ACTIONS(2964), + [anon_sym_U_DQUOTE] = ACTIONS(2964), + [anon_sym_u8_DQUOTE] = ACTIONS(2964), + [anon_sym_DQUOTE] = ACTIONS(2964), + [sym_true] = ACTIONS(2962), + [sym_false] = ACTIONS(2962), + [anon_sym_NULL] = ACTIONS(2962), + [anon_sym_nullptr] = ACTIONS(2962), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2962), + [anon_sym_decltype] = ACTIONS(2962), + [anon_sym_virtual] = ACTIONS(2962), + [anon_sym_explicit] = ACTIONS(2962), + [anon_sym_typename] = ACTIONS(2962), + [anon_sym_template] = ACTIONS(2962), + [anon_sym_operator] = ACTIONS(2962), + [anon_sym_try] = ACTIONS(2962), + [anon_sym_delete] = ACTIONS(2962), + [anon_sym_throw] = ACTIONS(2962), + [anon_sym_namespace] = ACTIONS(2962), + [anon_sym_using] = ACTIONS(2962), + [anon_sym_static_assert] = ACTIONS(2962), + [anon_sym_concept] = ACTIONS(2962), + [anon_sym_co_return] = ACTIONS(2962), + [anon_sym_co_yield] = ACTIONS(2962), + [anon_sym_R_DQUOTE] = ACTIONS(2964), + [anon_sym_LR_DQUOTE] = ACTIONS(2964), + [anon_sym_uR_DQUOTE] = ACTIONS(2964), + [anon_sym_UR_DQUOTE] = ACTIONS(2964), + [anon_sym_u8R_DQUOTE] = ACTIONS(2964), + [anon_sym_co_await] = ACTIONS(2962), + [anon_sym_new] = ACTIONS(2962), + [anon_sym_requires] = ACTIONS(2962), + [sym_this] = ACTIONS(2962), }, [1188] = { - [sym_identifier] = ACTIONS(2630), - [anon_sym_LPAREN2] = ACTIONS(2632), - [anon_sym_BANG] = ACTIONS(2632), - [anon_sym_TILDE] = ACTIONS(2632), - [anon_sym_DASH] = ACTIONS(2630), - [anon_sym_PLUS] = ACTIONS(2630), - [anon_sym_STAR] = ACTIONS(2632), - [anon_sym_AMP] = ACTIONS(2632), - [anon_sym_SEMI] = ACTIONS(2632), - [anon_sym_typedef] = ACTIONS(2630), - [anon_sym_extern] = ACTIONS(2630), - [anon_sym___attribute__] = ACTIONS(2630), - [anon_sym_COLON_COLON] = ACTIONS(2632), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2632), - [anon_sym___declspec] = ACTIONS(2630), - [anon_sym_LBRACE] = ACTIONS(2632), - [anon_sym_LBRACK] = ACTIONS(2630), - [anon_sym_static] = ACTIONS(2630), - [anon_sym_register] = ACTIONS(2630), - [anon_sym_inline] = ACTIONS(2630), - [anon_sym_thread_local] = ACTIONS(2630), - [anon_sym_const] = ACTIONS(2630), - [anon_sym_volatile] = ACTIONS(2630), - [anon_sym_restrict] = ACTIONS(2630), - [anon_sym__Atomic] = ACTIONS(2630), - [anon_sym_mutable] = ACTIONS(2630), - [anon_sym_constexpr] = ACTIONS(2630), - [anon_sym_constinit] = ACTIONS(2630), - [anon_sym_consteval] = ACTIONS(2630), - [anon_sym_signed] = ACTIONS(2630), - [anon_sym_unsigned] = ACTIONS(2630), - [anon_sym_long] = ACTIONS(2630), - [anon_sym_short] = ACTIONS(2630), - [sym_primitive_type] = ACTIONS(2630), - [anon_sym_enum] = ACTIONS(2630), - [anon_sym_class] = ACTIONS(2630), - [anon_sym_struct] = ACTIONS(2630), - [anon_sym_union] = ACTIONS(2630), - [anon_sym_if] = ACTIONS(2630), - [anon_sym_else] = ACTIONS(2630), - [anon_sym_switch] = ACTIONS(2630), - [anon_sym_while] = ACTIONS(2630), - [anon_sym_do] = ACTIONS(2630), - [anon_sym_for] = ACTIONS(2630), - [anon_sym_return] = ACTIONS(2630), - [anon_sym_break] = ACTIONS(2630), - [anon_sym_continue] = ACTIONS(2630), - [anon_sym_goto] = ACTIONS(2630), - [anon_sym_not] = ACTIONS(2630), - [anon_sym_compl] = ACTIONS(2630), - [anon_sym_DASH_DASH] = ACTIONS(2632), - [anon_sym_PLUS_PLUS] = ACTIONS(2632), - [anon_sym_sizeof] = ACTIONS(2630), - [sym_number_literal] = ACTIONS(2632), - [anon_sym_L_SQUOTE] = ACTIONS(2632), - [anon_sym_u_SQUOTE] = ACTIONS(2632), - [anon_sym_U_SQUOTE] = ACTIONS(2632), - [anon_sym_u8_SQUOTE] = ACTIONS(2632), - [anon_sym_SQUOTE] = ACTIONS(2632), - [anon_sym_L_DQUOTE] = ACTIONS(2632), - [anon_sym_u_DQUOTE] = ACTIONS(2632), - [anon_sym_U_DQUOTE] = ACTIONS(2632), - [anon_sym_u8_DQUOTE] = ACTIONS(2632), - [anon_sym_DQUOTE] = ACTIONS(2632), - [sym_true] = ACTIONS(2630), - [sym_false] = ACTIONS(2630), - [sym_null] = ACTIONS(2630), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2630), - [anon_sym_decltype] = ACTIONS(2630), - [anon_sym_virtual] = ACTIONS(2630), - [anon_sym_typename] = ACTIONS(2630), - [anon_sym_template] = ACTIONS(2630), - [anon_sym_try] = ACTIONS(2630), - [anon_sym_delete] = ACTIONS(2630), - [anon_sym_throw] = ACTIONS(2630), - [anon_sym_co_return] = ACTIONS(2630), - [anon_sym_co_yield] = ACTIONS(2630), - [anon_sym_R_DQUOTE] = ACTIONS(2632), - [anon_sym_LR_DQUOTE] = ACTIONS(2632), - [anon_sym_uR_DQUOTE] = ACTIONS(2632), - [anon_sym_UR_DQUOTE] = ACTIONS(2632), - [anon_sym_u8R_DQUOTE] = ACTIONS(2632), - [anon_sym_co_await] = ACTIONS(2630), - [anon_sym_new] = ACTIONS(2630), - [anon_sym_requires] = ACTIONS(2630), - [sym_this] = ACTIONS(2630), - [sym_nullptr] = ACTIONS(2630), + [ts_builtin_sym_end] = ACTIONS(3030), + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, [1189] = { - [sym_identifier] = ACTIONS(2630), - [anon_sym_LPAREN2] = ACTIONS(2632), - [anon_sym_BANG] = ACTIONS(2632), - [anon_sym_TILDE] = ACTIONS(2632), - [anon_sym_DASH] = ACTIONS(2630), - [anon_sym_PLUS] = ACTIONS(2630), - [anon_sym_STAR] = ACTIONS(2632), - [anon_sym_AMP] = ACTIONS(2632), - [anon_sym_SEMI] = ACTIONS(2632), - [anon_sym_typedef] = ACTIONS(2630), - [anon_sym_extern] = ACTIONS(2630), - [anon_sym___attribute__] = ACTIONS(2630), - [anon_sym_COLON_COLON] = ACTIONS(2632), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2632), - [anon_sym___declspec] = ACTIONS(2630), - [anon_sym_LBRACE] = ACTIONS(2632), - [anon_sym_LBRACK] = ACTIONS(2630), - [anon_sym_static] = ACTIONS(2630), - [anon_sym_register] = ACTIONS(2630), - [anon_sym_inline] = ACTIONS(2630), - [anon_sym_thread_local] = ACTIONS(2630), - [anon_sym_const] = ACTIONS(2630), - [anon_sym_volatile] = ACTIONS(2630), - [anon_sym_restrict] = ACTIONS(2630), - [anon_sym__Atomic] = ACTIONS(2630), - [anon_sym_mutable] = ACTIONS(2630), - [anon_sym_constexpr] = ACTIONS(2630), - [anon_sym_constinit] = ACTIONS(2630), - [anon_sym_consteval] = ACTIONS(2630), - [anon_sym_signed] = ACTIONS(2630), - [anon_sym_unsigned] = ACTIONS(2630), - [anon_sym_long] = ACTIONS(2630), - [anon_sym_short] = ACTIONS(2630), - [sym_primitive_type] = ACTIONS(2630), - [anon_sym_enum] = ACTIONS(2630), - [anon_sym_class] = ACTIONS(2630), - [anon_sym_struct] = ACTIONS(2630), - [anon_sym_union] = ACTIONS(2630), - [anon_sym_if] = ACTIONS(2630), - [anon_sym_else] = ACTIONS(2630), - [anon_sym_switch] = ACTIONS(2630), - [anon_sym_while] = ACTIONS(2630), - [anon_sym_do] = ACTIONS(2630), - [anon_sym_for] = ACTIONS(2630), - [anon_sym_return] = ACTIONS(2630), - [anon_sym_break] = ACTIONS(2630), - [anon_sym_continue] = ACTIONS(2630), - [anon_sym_goto] = ACTIONS(2630), - [anon_sym_not] = ACTIONS(2630), - [anon_sym_compl] = ACTIONS(2630), - [anon_sym_DASH_DASH] = ACTIONS(2632), - [anon_sym_PLUS_PLUS] = ACTIONS(2632), - [anon_sym_sizeof] = ACTIONS(2630), - [sym_number_literal] = ACTIONS(2632), - [anon_sym_L_SQUOTE] = ACTIONS(2632), - [anon_sym_u_SQUOTE] = ACTIONS(2632), - [anon_sym_U_SQUOTE] = ACTIONS(2632), - [anon_sym_u8_SQUOTE] = ACTIONS(2632), - [anon_sym_SQUOTE] = ACTIONS(2632), - [anon_sym_L_DQUOTE] = ACTIONS(2632), - [anon_sym_u_DQUOTE] = ACTIONS(2632), - [anon_sym_U_DQUOTE] = ACTIONS(2632), - [anon_sym_u8_DQUOTE] = ACTIONS(2632), - [anon_sym_DQUOTE] = ACTIONS(2632), - [sym_true] = ACTIONS(2630), - [sym_false] = ACTIONS(2630), - [sym_null] = ACTIONS(2630), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2630), - [anon_sym_decltype] = ACTIONS(2630), - [anon_sym_virtual] = ACTIONS(2630), - [anon_sym_typename] = ACTIONS(2630), - [anon_sym_template] = ACTIONS(2630), - [anon_sym_try] = ACTIONS(2630), - [anon_sym_delete] = ACTIONS(2630), - [anon_sym_throw] = ACTIONS(2630), - [anon_sym_co_return] = ACTIONS(2630), - [anon_sym_co_yield] = ACTIONS(2630), - [anon_sym_R_DQUOTE] = ACTIONS(2632), - [anon_sym_LR_DQUOTE] = ACTIONS(2632), - [anon_sym_uR_DQUOTE] = ACTIONS(2632), - [anon_sym_UR_DQUOTE] = ACTIONS(2632), - [anon_sym_u8R_DQUOTE] = ACTIONS(2632), - [anon_sym_co_await] = ACTIONS(2630), - [anon_sym_new] = ACTIONS(2630), - [anon_sym_requires] = ACTIONS(2630), - [sym_this] = ACTIONS(2630), - [sym_nullptr] = ACTIONS(2630), + [sym__expression] = STATE(3999), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3509), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3509), + [sym_call_expression] = STATE(3509), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3509), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3509), + [sym_initializer_list] = STATE(4001), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3509), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3613), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1935), + [anon_sym_COMMA] = ACTIONS(1935), + [anon_sym_LPAREN2] = ACTIONS(3615), + [anon_sym_BANG] = ACTIONS(3617), + [anon_sym_TILDE] = ACTIONS(3619), + [anon_sym_DASH] = ACTIONS(3617), + [anon_sym_PLUS] = ACTIONS(3617), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_SLASH] = ACTIONS(1943), + [anon_sym_PERCENT] = ACTIONS(1935), + [anon_sym_PIPE_PIPE] = ACTIONS(1935), + [anon_sym_AMP_AMP] = ACTIONS(1935), + [anon_sym_PIPE] = ACTIONS(1943), + [anon_sym_CARET] = ACTIONS(1935), + [anon_sym_AMP] = ACTIONS(1323), + [anon_sym_EQ_EQ] = ACTIONS(1935), + [anon_sym_BANG_EQ] = ACTIONS(1935), + [anon_sym_GT] = ACTIONS(1943), + [anon_sym_GT_EQ] = ACTIONS(1935), + [anon_sym_LT_EQ] = ACTIONS(1943), + [anon_sym_LT] = ACTIONS(1943), + [anon_sym_LT_LT] = ACTIONS(1935), + [anon_sym_GT_GT] = ACTIONS(1935), + [anon_sym_COLON_COLON] = ACTIONS(3621), + [anon_sym_LBRACE] = ACTIONS(1899), + [anon_sym_LBRACK] = ACTIONS(1949), + [anon_sym_RBRACK] = ACTIONS(1935), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_QMARK] = ACTIONS(1935), + [anon_sym_not] = ACTIONS(3617), + [anon_sym_compl] = ACTIONS(3617), + [anon_sym_LT_EQ_GT] = ACTIONS(1935), + [anon_sym_or] = ACTIONS(1943), + [anon_sym_and] = ACTIONS(1943), + [anon_sym_bitor] = ACTIONS(1943), + [anon_sym_xor] = ACTIONS(1943), + [anon_sym_bitand] = ACTIONS(1943), + [anon_sym_not_eq] = ACTIONS(1943), + [anon_sym_DASH_DASH] = ACTIONS(3623), + [anon_sym_PLUS_PLUS] = ACTIONS(3623), + [anon_sym_sizeof] = ACTIONS(3625), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [anon_sym_DOT] = ACTIONS(1943), + [anon_sym_DASH_GT] = ACTIONS(1935), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(3627), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(3629), + [anon_sym_new] = ACTIONS(3631), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1190] = { - [sym__expression] = STATE(3589), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_initializer_list] = STATE(5896), - [sym_initializer_pair] = STATE(5896), - [sym_subscript_designator] = STATE(5115), - [sym_field_designator] = STATE(5115), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_initializer_pair_repeat1] = STATE(5115), - [sym_identifier] = ACTIONS(2954), - [anon_sym_LPAREN2] = ACTIONS(984), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1489), - [anon_sym_RBRACE] = ACTIONS(3382), - [anon_sym_LBRACK] = ACTIONS(3358), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym_DOT] = ACTIONS(197), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [ts_builtin_sym_end] = ACTIONS(3030), + [sym_identifier] = ACTIONS(3028), + [aux_sym_preproc_include_token1] = ACTIONS(3028), + [aux_sym_preproc_def_token1] = ACTIONS(3028), + [aux_sym_preproc_if_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3028), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3028), + [sym_preproc_directive] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP_AMP] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym___based] = ACTIONS(3028), + [anon_sym___cdecl] = ACTIONS(3028), + [anon_sym___clrcall] = ACTIONS(3028), + [anon_sym___stdcall] = ACTIONS(3028), + [anon_sym___fastcall] = ACTIONS(3028), + [anon_sym___thiscall] = ACTIONS(3028), + [anon_sym___vectorcall] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_case] = ACTIONS(3028), + [anon_sym_default] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_explicit] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_operator] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_namespace] = ACTIONS(3028), + [anon_sym_using] = ACTIONS(3028), + [anon_sym_static_assert] = ACTIONS(3028), + [anon_sym_concept] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, [1191] = { - [sym__expression] = STATE(3589), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_initializer_list] = STATE(5896), - [sym_initializer_pair] = STATE(5896), - [sym_subscript_designator] = STATE(5115), - [sym_field_designator] = STATE(5115), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_initializer_pair_repeat1] = STATE(5115), - [sym_identifier] = ACTIONS(2954), - [anon_sym_LPAREN2] = ACTIONS(984), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1489), - [anon_sym_RBRACE] = ACTIONS(3384), - [anon_sym_LBRACK] = ACTIONS(3358), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym_DOT] = ACTIONS(197), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [ts_builtin_sym_end] = ACTIONS(2978), + [sym_identifier] = ACTIONS(2976), + [aux_sym_preproc_include_token1] = ACTIONS(2976), + [aux_sym_preproc_def_token1] = ACTIONS(2976), + [aux_sym_preproc_if_token1] = ACTIONS(2976), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2976), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2976), + [sym_preproc_directive] = ACTIONS(2976), + [anon_sym_LPAREN2] = ACTIONS(2978), + [anon_sym_BANG] = ACTIONS(2978), + [anon_sym_TILDE] = ACTIONS(2978), + [anon_sym_DASH] = ACTIONS(2976), + [anon_sym_PLUS] = ACTIONS(2976), + [anon_sym_STAR] = ACTIONS(2978), + [anon_sym_AMP_AMP] = ACTIONS(2978), + [anon_sym_AMP] = ACTIONS(2976), + [anon_sym_SEMI] = ACTIONS(2978), + [anon_sym_typedef] = ACTIONS(2976), + [anon_sym_extern] = ACTIONS(2976), + [anon_sym___attribute__] = ACTIONS(2976), + [anon_sym_COLON_COLON] = ACTIONS(2978), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2978), + [anon_sym___declspec] = ACTIONS(2976), + [anon_sym___based] = ACTIONS(2976), + [anon_sym___cdecl] = ACTIONS(2976), + [anon_sym___clrcall] = ACTIONS(2976), + [anon_sym___stdcall] = ACTIONS(2976), + [anon_sym___fastcall] = ACTIONS(2976), + [anon_sym___thiscall] = ACTIONS(2976), + [anon_sym___vectorcall] = ACTIONS(2976), + [anon_sym_LBRACE] = ACTIONS(2978), + [anon_sym_LBRACK] = ACTIONS(2976), + [anon_sym_static] = ACTIONS(2976), + [anon_sym_register] = ACTIONS(2976), + [anon_sym_inline] = ACTIONS(2976), + [anon_sym_thread_local] = ACTIONS(2976), + [anon_sym_const] = ACTIONS(2976), + [anon_sym_constexpr] = ACTIONS(2976), + [anon_sym_volatile] = ACTIONS(2976), + [anon_sym_restrict] = ACTIONS(2976), + [anon_sym___restrict__] = ACTIONS(2976), + [anon_sym__Atomic] = ACTIONS(2976), + [anon_sym__Noreturn] = ACTIONS(2976), + [anon_sym_noreturn] = ACTIONS(2976), + [anon_sym_mutable] = ACTIONS(2976), + [anon_sym_constinit] = ACTIONS(2976), + [anon_sym_consteval] = ACTIONS(2976), + [anon_sym_signed] = ACTIONS(2976), + [anon_sym_unsigned] = ACTIONS(2976), + [anon_sym_long] = ACTIONS(2976), + [anon_sym_short] = ACTIONS(2976), + [sym_primitive_type] = ACTIONS(2976), + [anon_sym_enum] = ACTIONS(2976), + [anon_sym_class] = ACTIONS(2976), + [anon_sym_struct] = ACTIONS(2976), + [anon_sym_union] = ACTIONS(2976), + [anon_sym_if] = ACTIONS(2976), + [anon_sym_else] = ACTIONS(2976), + [anon_sym_switch] = ACTIONS(2976), + [anon_sym_case] = ACTIONS(2976), + [anon_sym_default] = ACTIONS(2976), + [anon_sym_while] = ACTIONS(2976), + [anon_sym_do] = ACTIONS(2976), + [anon_sym_for] = ACTIONS(2976), + [anon_sym_return] = ACTIONS(2976), + [anon_sym_break] = ACTIONS(2976), + [anon_sym_continue] = ACTIONS(2976), + [anon_sym_goto] = ACTIONS(2976), + [anon_sym_not] = ACTIONS(2976), + [anon_sym_compl] = ACTIONS(2976), + [anon_sym_DASH_DASH] = ACTIONS(2978), + [anon_sym_PLUS_PLUS] = ACTIONS(2978), + [anon_sym_sizeof] = ACTIONS(2976), + [anon_sym_offsetof] = ACTIONS(2976), + [anon_sym__Generic] = ACTIONS(2976), + [anon_sym_asm] = ACTIONS(2976), + [anon_sym___asm__] = ACTIONS(2976), + [sym_number_literal] = ACTIONS(2978), + [anon_sym_L_SQUOTE] = ACTIONS(2978), + [anon_sym_u_SQUOTE] = ACTIONS(2978), + [anon_sym_U_SQUOTE] = ACTIONS(2978), + [anon_sym_u8_SQUOTE] = ACTIONS(2978), + [anon_sym_SQUOTE] = ACTIONS(2978), + [anon_sym_L_DQUOTE] = ACTIONS(2978), + [anon_sym_u_DQUOTE] = ACTIONS(2978), + [anon_sym_U_DQUOTE] = ACTIONS(2978), + [anon_sym_u8_DQUOTE] = ACTIONS(2978), + [anon_sym_DQUOTE] = ACTIONS(2978), + [sym_true] = ACTIONS(2976), + [sym_false] = ACTIONS(2976), + [anon_sym_NULL] = ACTIONS(2976), + [anon_sym_nullptr] = ACTIONS(2976), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2976), + [anon_sym_decltype] = ACTIONS(2976), + [anon_sym_virtual] = ACTIONS(2976), + [anon_sym_explicit] = ACTIONS(2976), + [anon_sym_typename] = ACTIONS(2976), + [anon_sym_template] = ACTIONS(2976), + [anon_sym_operator] = ACTIONS(2976), + [anon_sym_try] = ACTIONS(2976), + [anon_sym_delete] = ACTIONS(2976), + [anon_sym_throw] = ACTIONS(2976), + [anon_sym_namespace] = ACTIONS(2976), + [anon_sym_using] = ACTIONS(2976), + [anon_sym_static_assert] = ACTIONS(2976), + [anon_sym_concept] = ACTIONS(2976), + [anon_sym_co_return] = ACTIONS(2976), + [anon_sym_co_yield] = ACTIONS(2976), + [anon_sym_R_DQUOTE] = ACTIONS(2978), + [anon_sym_LR_DQUOTE] = ACTIONS(2978), + [anon_sym_uR_DQUOTE] = ACTIONS(2978), + [anon_sym_UR_DQUOTE] = ACTIONS(2978), + [anon_sym_u8R_DQUOTE] = ACTIONS(2978), + [anon_sym_co_await] = ACTIONS(2976), + [anon_sym_new] = ACTIONS(2976), + [anon_sym_requires] = ACTIONS(2976), + [sym_this] = ACTIONS(2976), }, [1192] = { - [sym__expression] = STATE(3589), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_initializer_list] = STATE(5896), - [sym_initializer_pair] = STATE(5896), - [sym_subscript_designator] = STATE(5115), - [sym_field_designator] = STATE(5115), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_initializer_pair_repeat1] = STATE(5115), - [sym_identifier] = ACTIONS(2954), - [anon_sym_LPAREN2] = ACTIONS(984), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1489), - [anon_sym_RBRACE] = ACTIONS(3364), + [sym_identifier] = ACTIONS(3358), + [aux_sym_preproc_include_token1] = ACTIONS(3358), + [aux_sym_preproc_def_token1] = ACTIONS(3358), + [aux_sym_preproc_if_token1] = ACTIONS(3358), + [aux_sym_preproc_if_token2] = ACTIONS(3358), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3358), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3358), + [sym_preproc_directive] = ACTIONS(3358), + [anon_sym_LPAREN2] = ACTIONS(3360), + [anon_sym_BANG] = ACTIONS(3360), + [anon_sym_TILDE] = ACTIONS(3360), + [anon_sym_DASH] = ACTIONS(3358), + [anon_sym_PLUS] = ACTIONS(3358), + [anon_sym_STAR] = ACTIONS(3360), + [anon_sym_AMP_AMP] = ACTIONS(3360), + [anon_sym_AMP] = ACTIONS(3358), + [anon_sym_SEMI] = ACTIONS(3360), + [anon_sym_typedef] = ACTIONS(3358), + [anon_sym_extern] = ACTIONS(3358), + [anon_sym___attribute__] = ACTIONS(3358), + [anon_sym_COLON_COLON] = ACTIONS(3360), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3360), + [anon_sym___declspec] = ACTIONS(3358), + [anon_sym___based] = ACTIONS(3358), + [anon_sym___cdecl] = ACTIONS(3358), + [anon_sym___clrcall] = ACTIONS(3358), + [anon_sym___stdcall] = ACTIONS(3358), + [anon_sym___fastcall] = ACTIONS(3358), + [anon_sym___thiscall] = ACTIONS(3358), + [anon_sym___vectorcall] = ACTIONS(3358), + [anon_sym_LBRACE] = ACTIONS(3360), [anon_sym_LBRACK] = ACTIONS(3358), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym_DOT] = ACTIONS(197), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_static] = ACTIONS(3358), + [anon_sym_register] = ACTIONS(3358), + [anon_sym_inline] = ACTIONS(3358), + [anon_sym_thread_local] = ACTIONS(3358), + [anon_sym_const] = ACTIONS(3358), + [anon_sym_constexpr] = ACTIONS(3358), + [anon_sym_volatile] = ACTIONS(3358), + [anon_sym_restrict] = ACTIONS(3358), + [anon_sym___restrict__] = ACTIONS(3358), + [anon_sym__Atomic] = ACTIONS(3358), + [anon_sym__Noreturn] = ACTIONS(3358), + [anon_sym_noreturn] = ACTIONS(3358), + [anon_sym_mutable] = ACTIONS(3358), + [anon_sym_constinit] = ACTIONS(3358), + [anon_sym_consteval] = ACTIONS(3358), + [anon_sym_signed] = ACTIONS(3358), + [anon_sym_unsigned] = ACTIONS(3358), + [anon_sym_long] = ACTIONS(3358), + [anon_sym_short] = ACTIONS(3358), + [sym_primitive_type] = ACTIONS(3358), + [anon_sym_enum] = ACTIONS(3358), + [anon_sym_class] = ACTIONS(3358), + [anon_sym_struct] = ACTIONS(3358), + [anon_sym_union] = ACTIONS(3358), + [anon_sym_if] = ACTIONS(3358), + [anon_sym_switch] = ACTIONS(3358), + [anon_sym_case] = ACTIONS(3358), + [anon_sym_default] = ACTIONS(3358), + [anon_sym_while] = ACTIONS(3358), + [anon_sym_do] = ACTIONS(3358), + [anon_sym_for] = ACTIONS(3358), + [anon_sym_return] = ACTIONS(3358), + [anon_sym_break] = ACTIONS(3358), + [anon_sym_continue] = ACTIONS(3358), + [anon_sym_goto] = ACTIONS(3358), + [anon_sym_not] = ACTIONS(3358), + [anon_sym_compl] = ACTIONS(3358), + [anon_sym_DASH_DASH] = ACTIONS(3360), + [anon_sym_PLUS_PLUS] = ACTIONS(3360), + [anon_sym_sizeof] = ACTIONS(3358), + [anon_sym_offsetof] = ACTIONS(3358), + [anon_sym__Generic] = ACTIONS(3358), + [anon_sym_asm] = ACTIONS(3358), + [anon_sym___asm__] = ACTIONS(3358), + [sym_number_literal] = ACTIONS(3360), + [anon_sym_L_SQUOTE] = ACTIONS(3360), + [anon_sym_u_SQUOTE] = ACTIONS(3360), + [anon_sym_U_SQUOTE] = ACTIONS(3360), + [anon_sym_u8_SQUOTE] = ACTIONS(3360), + [anon_sym_SQUOTE] = ACTIONS(3360), + [anon_sym_L_DQUOTE] = ACTIONS(3360), + [anon_sym_u_DQUOTE] = ACTIONS(3360), + [anon_sym_U_DQUOTE] = ACTIONS(3360), + [anon_sym_u8_DQUOTE] = ACTIONS(3360), + [anon_sym_DQUOTE] = ACTIONS(3360), + [sym_true] = ACTIONS(3358), + [sym_false] = ACTIONS(3358), + [anon_sym_NULL] = ACTIONS(3358), + [anon_sym_nullptr] = ACTIONS(3358), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3358), + [anon_sym_decltype] = ACTIONS(3358), + [anon_sym_virtual] = ACTIONS(3358), + [anon_sym_explicit] = ACTIONS(3358), + [anon_sym_typename] = ACTIONS(3358), + [anon_sym_template] = ACTIONS(3358), + [anon_sym_operator] = ACTIONS(3358), + [anon_sym_try] = ACTIONS(3358), + [anon_sym_delete] = ACTIONS(3358), + [anon_sym_throw] = ACTIONS(3358), + [anon_sym_namespace] = ACTIONS(3358), + [anon_sym_using] = ACTIONS(3358), + [anon_sym_static_assert] = ACTIONS(3358), + [anon_sym_concept] = ACTIONS(3358), + [anon_sym_co_return] = ACTIONS(3358), + [anon_sym_co_yield] = ACTIONS(3358), + [anon_sym_R_DQUOTE] = ACTIONS(3360), + [anon_sym_LR_DQUOTE] = ACTIONS(3360), + [anon_sym_uR_DQUOTE] = ACTIONS(3360), + [anon_sym_UR_DQUOTE] = ACTIONS(3360), + [anon_sym_u8R_DQUOTE] = ACTIONS(3360), + [anon_sym_co_await] = ACTIONS(3358), + [anon_sym_new] = ACTIONS(3358), + [anon_sym_requires] = ACTIONS(3358), + [sym_this] = ACTIONS(3358), }, [1193] = { - [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_AMP] = ACTIONS(2464), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym_LBRACE] = ACTIONS(2464), - [anon_sym_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_identifier] = ACTIONS(3399), + [aux_sym_preproc_include_token1] = ACTIONS(3399), + [aux_sym_preproc_def_token1] = ACTIONS(3399), + [aux_sym_preproc_if_token1] = ACTIONS(3399), + [aux_sym_preproc_if_token2] = ACTIONS(3399), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3399), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3399), + [sym_preproc_directive] = ACTIONS(3399), + [anon_sym_LPAREN2] = ACTIONS(3401), + [anon_sym_BANG] = ACTIONS(3401), + [anon_sym_TILDE] = ACTIONS(3401), + [anon_sym_DASH] = ACTIONS(3399), + [anon_sym_PLUS] = ACTIONS(3399), + [anon_sym_STAR] = ACTIONS(3401), + [anon_sym_AMP_AMP] = ACTIONS(3401), + [anon_sym_AMP] = ACTIONS(3399), + [anon_sym_SEMI] = ACTIONS(3401), + [anon_sym_typedef] = ACTIONS(3399), + [anon_sym_extern] = ACTIONS(3399), + [anon_sym___attribute__] = ACTIONS(3399), + [anon_sym_COLON_COLON] = ACTIONS(3401), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3401), + [anon_sym___declspec] = ACTIONS(3399), + [anon_sym___based] = ACTIONS(3399), + [anon_sym___cdecl] = ACTIONS(3399), + [anon_sym___clrcall] = ACTIONS(3399), + [anon_sym___stdcall] = ACTIONS(3399), + [anon_sym___fastcall] = ACTIONS(3399), + [anon_sym___thiscall] = ACTIONS(3399), + [anon_sym___vectorcall] = ACTIONS(3399), + [anon_sym_LBRACE] = ACTIONS(3401), + [anon_sym_LBRACK] = ACTIONS(3399), + [anon_sym_static] = ACTIONS(3399), + [anon_sym_register] = ACTIONS(3399), + [anon_sym_inline] = ACTIONS(3399), + [anon_sym_thread_local] = ACTIONS(3399), + [anon_sym_const] = ACTIONS(3399), + [anon_sym_constexpr] = ACTIONS(3399), + [anon_sym_volatile] = ACTIONS(3399), + [anon_sym_restrict] = ACTIONS(3399), + [anon_sym___restrict__] = ACTIONS(3399), + [anon_sym__Atomic] = ACTIONS(3399), + [anon_sym__Noreturn] = ACTIONS(3399), + [anon_sym_noreturn] = ACTIONS(3399), + [anon_sym_mutable] = ACTIONS(3399), + [anon_sym_constinit] = ACTIONS(3399), + [anon_sym_consteval] = ACTIONS(3399), + [anon_sym_signed] = ACTIONS(3399), + [anon_sym_unsigned] = ACTIONS(3399), + [anon_sym_long] = ACTIONS(3399), + [anon_sym_short] = ACTIONS(3399), + [sym_primitive_type] = ACTIONS(3399), + [anon_sym_enum] = ACTIONS(3399), + [anon_sym_class] = ACTIONS(3399), + [anon_sym_struct] = ACTIONS(3399), + [anon_sym_union] = ACTIONS(3399), + [anon_sym_if] = ACTIONS(3399), + [anon_sym_switch] = ACTIONS(3399), + [anon_sym_case] = ACTIONS(3399), + [anon_sym_default] = ACTIONS(3399), + [anon_sym_while] = ACTIONS(3399), + [anon_sym_do] = ACTIONS(3399), + [anon_sym_for] = ACTIONS(3399), + [anon_sym_return] = ACTIONS(3399), + [anon_sym_break] = ACTIONS(3399), + [anon_sym_continue] = ACTIONS(3399), + [anon_sym_goto] = ACTIONS(3399), + [anon_sym_not] = ACTIONS(3399), + [anon_sym_compl] = ACTIONS(3399), + [anon_sym_DASH_DASH] = ACTIONS(3401), + [anon_sym_PLUS_PLUS] = ACTIONS(3401), + [anon_sym_sizeof] = ACTIONS(3399), + [anon_sym_offsetof] = ACTIONS(3399), + [anon_sym__Generic] = ACTIONS(3399), + [anon_sym_asm] = ACTIONS(3399), + [anon_sym___asm__] = ACTIONS(3399), + [sym_number_literal] = ACTIONS(3401), + [anon_sym_L_SQUOTE] = ACTIONS(3401), + [anon_sym_u_SQUOTE] = ACTIONS(3401), + [anon_sym_U_SQUOTE] = ACTIONS(3401), + [anon_sym_u8_SQUOTE] = ACTIONS(3401), + [anon_sym_SQUOTE] = ACTIONS(3401), + [anon_sym_L_DQUOTE] = ACTIONS(3401), + [anon_sym_u_DQUOTE] = ACTIONS(3401), + [anon_sym_U_DQUOTE] = ACTIONS(3401), + [anon_sym_u8_DQUOTE] = ACTIONS(3401), + [anon_sym_DQUOTE] = ACTIONS(3401), + [sym_true] = ACTIONS(3399), + [sym_false] = ACTIONS(3399), + [anon_sym_NULL] = ACTIONS(3399), + [anon_sym_nullptr] = ACTIONS(3399), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3399), + [anon_sym_decltype] = ACTIONS(3399), + [anon_sym_virtual] = ACTIONS(3399), + [anon_sym_explicit] = ACTIONS(3399), + [anon_sym_typename] = ACTIONS(3399), + [anon_sym_template] = ACTIONS(3399), + [anon_sym_operator] = ACTIONS(3399), + [anon_sym_try] = ACTIONS(3399), + [anon_sym_delete] = ACTIONS(3399), + [anon_sym_throw] = ACTIONS(3399), + [anon_sym_namespace] = ACTIONS(3399), + [anon_sym_using] = ACTIONS(3399), + [anon_sym_static_assert] = ACTIONS(3399), + [anon_sym_concept] = ACTIONS(3399), + [anon_sym_co_return] = ACTIONS(3399), + [anon_sym_co_yield] = ACTIONS(3399), + [anon_sym_R_DQUOTE] = ACTIONS(3401), + [anon_sym_LR_DQUOTE] = ACTIONS(3401), + [anon_sym_uR_DQUOTE] = ACTIONS(3401), + [anon_sym_UR_DQUOTE] = ACTIONS(3401), + [anon_sym_u8R_DQUOTE] = ACTIONS(3401), + [anon_sym_co_await] = ACTIONS(3399), + [anon_sym_new] = ACTIONS(3399), + [anon_sym_requires] = ACTIONS(3399), + [sym_this] = ACTIONS(3399), }, [1194] = { - [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_AMP] = ACTIONS(2464), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym_LBRACE] = ACTIONS(2464), - [anon_sym_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_identifier] = ACTIONS(3117), + [aux_sym_preproc_include_token1] = ACTIONS(3117), + [aux_sym_preproc_def_token1] = ACTIONS(3117), + [aux_sym_preproc_if_token1] = ACTIONS(3117), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3117), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3117), + [sym_preproc_directive] = ACTIONS(3117), + [anon_sym_LPAREN2] = ACTIONS(3119), + [anon_sym_BANG] = ACTIONS(3119), + [anon_sym_TILDE] = ACTIONS(3119), + [anon_sym_DASH] = ACTIONS(3117), + [anon_sym_PLUS] = ACTIONS(3117), + [anon_sym_STAR] = ACTIONS(3119), + [anon_sym_AMP_AMP] = ACTIONS(3119), + [anon_sym_AMP] = ACTIONS(3117), + [anon_sym_SEMI] = ACTIONS(3119), + [anon_sym_typedef] = ACTIONS(3117), + [anon_sym_extern] = ACTIONS(3117), + [anon_sym___attribute__] = ACTIONS(3117), + [anon_sym_COLON_COLON] = ACTIONS(3119), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3119), + [anon_sym___declspec] = ACTIONS(3117), + [anon_sym___based] = ACTIONS(3117), + [anon_sym___cdecl] = ACTIONS(3117), + [anon_sym___clrcall] = ACTIONS(3117), + [anon_sym___stdcall] = ACTIONS(3117), + [anon_sym___fastcall] = ACTIONS(3117), + [anon_sym___thiscall] = ACTIONS(3117), + [anon_sym___vectorcall] = ACTIONS(3117), + [anon_sym_LBRACE] = ACTIONS(3119), + [anon_sym_RBRACE] = ACTIONS(3119), + [anon_sym_LBRACK] = ACTIONS(3117), + [anon_sym_static] = ACTIONS(3117), + [anon_sym_register] = ACTIONS(3117), + [anon_sym_inline] = ACTIONS(3117), + [anon_sym_thread_local] = ACTIONS(3117), + [anon_sym_const] = ACTIONS(3117), + [anon_sym_constexpr] = ACTIONS(3117), + [anon_sym_volatile] = ACTIONS(3117), + [anon_sym_restrict] = ACTIONS(3117), + [anon_sym___restrict__] = ACTIONS(3117), + [anon_sym__Atomic] = ACTIONS(3117), + [anon_sym__Noreturn] = ACTIONS(3117), + [anon_sym_noreturn] = ACTIONS(3117), + [anon_sym_mutable] = ACTIONS(3117), + [anon_sym_constinit] = ACTIONS(3117), + [anon_sym_consteval] = ACTIONS(3117), + [anon_sym_signed] = ACTIONS(3117), + [anon_sym_unsigned] = ACTIONS(3117), + [anon_sym_long] = ACTIONS(3117), + [anon_sym_short] = ACTIONS(3117), + [sym_primitive_type] = ACTIONS(3117), + [anon_sym_enum] = ACTIONS(3117), + [anon_sym_class] = ACTIONS(3117), + [anon_sym_struct] = ACTIONS(3117), + [anon_sym_union] = ACTIONS(3117), + [anon_sym_if] = ACTIONS(3117), + [anon_sym_switch] = ACTIONS(3117), + [anon_sym_case] = ACTIONS(3117), + [anon_sym_default] = ACTIONS(3117), + [anon_sym_while] = ACTIONS(3117), + [anon_sym_do] = ACTIONS(3117), + [anon_sym_for] = ACTIONS(3117), + [anon_sym_return] = ACTIONS(3117), + [anon_sym_break] = ACTIONS(3117), + [anon_sym_continue] = ACTIONS(3117), + [anon_sym_goto] = ACTIONS(3117), + [anon_sym_not] = ACTIONS(3117), + [anon_sym_compl] = ACTIONS(3117), + [anon_sym_DASH_DASH] = ACTIONS(3119), + [anon_sym_PLUS_PLUS] = ACTIONS(3119), + [anon_sym_sizeof] = ACTIONS(3117), + [anon_sym_offsetof] = ACTIONS(3117), + [anon_sym__Generic] = ACTIONS(3117), + [anon_sym_asm] = ACTIONS(3117), + [anon_sym___asm__] = ACTIONS(3117), + [sym_number_literal] = ACTIONS(3119), + [anon_sym_L_SQUOTE] = ACTIONS(3119), + [anon_sym_u_SQUOTE] = ACTIONS(3119), + [anon_sym_U_SQUOTE] = ACTIONS(3119), + [anon_sym_u8_SQUOTE] = ACTIONS(3119), + [anon_sym_SQUOTE] = ACTIONS(3119), + [anon_sym_L_DQUOTE] = ACTIONS(3119), + [anon_sym_u_DQUOTE] = ACTIONS(3119), + [anon_sym_U_DQUOTE] = ACTIONS(3119), + [anon_sym_u8_DQUOTE] = ACTIONS(3119), + [anon_sym_DQUOTE] = ACTIONS(3119), + [sym_true] = ACTIONS(3117), + [sym_false] = ACTIONS(3117), + [anon_sym_NULL] = ACTIONS(3117), + [anon_sym_nullptr] = ACTIONS(3117), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3117), + [anon_sym_decltype] = ACTIONS(3117), + [anon_sym_virtual] = ACTIONS(3117), + [anon_sym_explicit] = ACTIONS(3117), + [anon_sym_typename] = ACTIONS(3117), + [anon_sym_template] = ACTIONS(3117), + [anon_sym_operator] = ACTIONS(3117), + [anon_sym_try] = ACTIONS(3117), + [anon_sym_delete] = ACTIONS(3117), + [anon_sym_throw] = ACTIONS(3117), + [anon_sym_namespace] = ACTIONS(3117), + [anon_sym_using] = ACTIONS(3117), + [anon_sym_static_assert] = ACTIONS(3117), + [anon_sym_concept] = ACTIONS(3117), + [anon_sym_co_return] = ACTIONS(3117), + [anon_sym_co_yield] = ACTIONS(3117), + [anon_sym_R_DQUOTE] = ACTIONS(3119), + [anon_sym_LR_DQUOTE] = ACTIONS(3119), + [anon_sym_uR_DQUOTE] = ACTIONS(3119), + [anon_sym_UR_DQUOTE] = ACTIONS(3119), + [anon_sym_u8R_DQUOTE] = ACTIONS(3119), + [anon_sym_co_await] = ACTIONS(3117), + [anon_sym_new] = ACTIONS(3117), + [anon_sym_requires] = ACTIONS(3117), + [sym_this] = ACTIONS(3117), }, [1195] = { - [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_AMP] = ACTIONS(2464), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym_LBRACE] = ACTIONS(2464), - [anon_sym_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_identifier] = ACTIONS(3266), + [aux_sym_preproc_include_token1] = ACTIONS(3266), + [aux_sym_preproc_def_token1] = ACTIONS(3266), + [aux_sym_preproc_if_token1] = ACTIONS(3266), + [aux_sym_preproc_if_token2] = ACTIONS(3266), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3266), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3266), + [sym_preproc_directive] = ACTIONS(3266), + [anon_sym_LPAREN2] = ACTIONS(3268), + [anon_sym_BANG] = ACTIONS(3268), + [anon_sym_TILDE] = ACTIONS(3268), + [anon_sym_DASH] = ACTIONS(3266), + [anon_sym_PLUS] = ACTIONS(3266), + [anon_sym_STAR] = ACTIONS(3268), + [anon_sym_AMP_AMP] = ACTIONS(3268), + [anon_sym_AMP] = ACTIONS(3266), + [anon_sym_SEMI] = ACTIONS(3268), + [anon_sym_typedef] = ACTIONS(3266), + [anon_sym_extern] = ACTIONS(3266), + [anon_sym___attribute__] = ACTIONS(3266), + [anon_sym_COLON_COLON] = ACTIONS(3268), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3268), + [anon_sym___declspec] = ACTIONS(3266), + [anon_sym___based] = ACTIONS(3266), + [anon_sym___cdecl] = ACTIONS(3266), + [anon_sym___clrcall] = ACTIONS(3266), + [anon_sym___stdcall] = ACTIONS(3266), + [anon_sym___fastcall] = ACTIONS(3266), + [anon_sym___thiscall] = ACTIONS(3266), + [anon_sym___vectorcall] = ACTIONS(3266), + [anon_sym_LBRACE] = ACTIONS(3268), + [anon_sym_LBRACK] = ACTIONS(3266), + [anon_sym_static] = ACTIONS(3266), + [anon_sym_register] = ACTIONS(3266), + [anon_sym_inline] = ACTIONS(3266), + [anon_sym_thread_local] = ACTIONS(3266), + [anon_sym_const] = ACTIONS(3266), + [anon_sym_constexpr] = ACTIONS(3266), + [anon_sym_volatile] = ACTIONS(3266), + [anon_sym_restrict] = ACTIONS(3266), + [anon_sym___restrict__] = ACTIONS(3266), + [anon_sym__Atomic] = ACTIONS(3266), + [anon_sym__Noreturn] = ACTIONS(3266), + [anon_sym_noreturn] = ACTIONS(3266), + [anon_sym_mutable] = ACTIONS(3266), + [anon_sym_constinit] = ACTIONS(3266), + [anon_sym_consteval] = ACTIONS(3266), + [anon_sym_signed] = ACTIONS(3266), + [anon_sym_unsigned] = ACTIONS(3266), + [anon_sym_long] = ACTIONS(3266), + [anon_sym_short] = ACTIONS(3266), + [sym_primitive_type] = ACTIONS(3266), + [anon_sym_enum] = ACTIONS(3266), + [anon_sym_class] = ACTIONS(3266), + [anon_sym_struct] = ACTIONS(3266), + [anon_sym_union] = ACTIONS(3266), + [anon_sym_if] = ACTIONS(3266), + [anon_sym_switch] = ACTIONS(3266), + [anon_sym_case] = ACTIONS(3266), + [anon_sym_default] = ACTIONS(3266), + [anon_sym_while] = ACTIONS(3266), + [anon_sym_do] = ACTIONS(3266), + [anon_sym_for] = ACTIONS(3266), + [anon_sym_return] = ACTIONS(3266), + [anon_sym_break] = ACTIONS(3266), + [anon_sym_continue] = ACTIONS(3266), + [anon_sym_goto] = ACTIONS(3266), + [anon_sym_not] = ACTIONS(3266), + [anon_sym_compl] = ACTIONS(3266), + [anon_sym_DASH_DASH] = ACTIONS(3268), + [anon_sym_PLUS_PLUS] = ACTIONS(3268), + [anon_sym_sizeof] = ACTIONS(3266), + [anon_sym_offsetof] = ACTIONS(3266), + [anon_sym__Generic] = ACTIONS(3266), + [anon_sym_asm] = ACTIONS(3266), + [anon_sym___asm__] = ACTIONS(3266), + [sym_number_literal] = ACTIONS(3268), + [anon_sym_L_SQUOTE] = ACTIONS(3268), + [anon_sym_u_SQUOTE] = ACTIONS(3268), + [anon_sym_U_SQUOTE] = ACTIONS(3268), + [anon_sym_u8_SQUOTE] = ACTIONS(3268), + [anon_sym_SQUOTE] = ACTIONS(3268), + [anon_sym_L_DQUOTE] = ACTIONS(3268), + [anon_sym_u_DQUOTE] = ACTIONS(3268), + [anon_sym_U_DQUOTE] = ACTIONS(3268), + [anon_sym_u8_DQUOTE] = ACTIONS(3268), + [anon_sym_DQUOTE] = ACTIONS(3268), + [sym_true] = ACTIONS(3266), + [sym_false] = ACTIONS(3266), + [anon_sym_NULL] = ACTIONS(3266), + [anon_sym_nullptr] = ACTIONS(3266), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3266), + [anon_sym_decltype] = ACTIONS(3266), + [anon_sym_virtual] = ACTIONS(3266), + [anon_sym_explicit] = ACTIONS(3266), + [anon_sym_typename] = ACTIONS(3266), + [anon_sym_template] = ACTIONS(3266), + [anon_sym_operator] = ACTIONS(3266), + [anon_sym_try] = ACTIONS(3266), + [anon_sym_delete] = ACTIONS(3266), + [anon_sym_throw] = ACTIONS(3266), + [anon_sym_namespace] = ACTIONS(3266), + [anon_sym_using] = ACTIONS(3266), + [anon_sym_static_assert] = ACTIONS(3266), + [anon_sym_concept] = ACTIONS(3266), + [anon_sym_co_return] = ACTIONS(3266), + [anon_sym_co_yield] = ACTIONS(3266), + [anon_sym_R_DQUOTE] = ACTIONS(3268), + [anon_sym_LR_DQUOTE] = ACTIONS(3268), + [anon_sym_uR_DQUOTE] = ACTIONS(3268), + [anon_sym_UR_DQUOTE] = ACTIONS(3268), + [anon_sym_u8R_DQUOTE] = ACTIONS(3268), + [anon_sym_co_await] = ACTIONS(3266), + [anon_sym_new] = ACTIONS(3266), + [anon_sym_requires] = ACTIONS(3266), + [sym_this] = ACTIONS(3266), }, [1196] = { - [sym_identifier] = ACTIONS(2496), - [anon_sym_LPAREN2] = ACTIONS(2498), - [anon_sym_BANG] = ACTIONS(2498), - [anon_sym_TILDE] = ACTIONS(2498), - [anon_sym_DASH] = ACTIONS(2496), - [anon_sym_PLUS] = ACTIONS(2496), - [anon_sym_STAR] = ACTIONS(2498), - [anon_sym_AMP] = ACTIONS(2498), - [anon_sym_SEMI] = ACTIONS(2498), - [anon_sym_typedef] = ACTIONS(2496), - [anon_sym_extern] = ACTIONS(2496), - [anon_sym___attribute__] = ACTIONS(2496), - [anon_sym_COLON_COLON] = ACTIONS(2498), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2498), - [anon_sym___declspec] = ACTIONS(2496), - [anon_sym_LBRACE] = ACTIONS(2498), - [anon_sym_LBRACK] = ACTIONS(2496), - [anon_sym_static] = ACTIONS(2496), - [anon_sym_register] = ACTIONS(2496), - [anon_sym_inline] = ACTIONS(2496), - [anon_sym_thread_local] = ACTIONS(2496), - [anon_sym_const] = ACTIONS(2496), - [anon_sym_volatile] = ACTIONS(2496), - [anon_sym_restrict] = ACTIONS(2496), - [anon_sym__Atomic] = ACTIONS(2496), - [anon_sym_mutable] = ACTIONS(2496), - [anon_sym_constexpr] = ACTIONS(2496), - [anon_sym_constinit] = ACTIONS(2496), - [anon_sym_consteval] = ACTIONS(2496), - [anon_sym_signed] = ACTIONS(2496), - [anon_sym_unsigned] = ACTIONS(2496), - [anon_sym_long] = ACTIONS(2496), - [anon_sym_short] = ACTIONS(2496), - [sym_primitive_type] = ACTIONS(2496), - [anon_sym_enum] = ACTIONS(2496), - [anon_sym_class] = ACTIONS(2496), - [anon_sym_struct] = ACTIONS(2496), - [anon_sym_union] = ACTIONS(2496), - [anon_sym_if] = ACTIONS(2496), - [anon_sym_else] = ACTIONS(2496), - [anon_sym_switch] = ACTIONS(2496), - [anon_sym_while] = ACTIONS(2496), - [anon_sym_do] = ACTIONS(2496), - [anon_sym_for] = ACTIONS(2496), - [anon_sym_return] = ACTIONS(2496), - [anon_sym_break] = ACTIONS(2496), - [anon_sym_continue] = ACTIONS(2496), - [anon_sym_goto] = ACTIONS(2496), - [anon_sym_not] = ACTIONS(2496), - [anon_sym_compl] = ACTIONS(2496), - [anon_sym_DASH_DASH] = ACTIONS(2498), - [anon_sym_PLUS_PLUS] = ACTIONS(2498), - [anon_sym_sizeof] = ACTIONS(2496), - [sym_number_literal] = ACTIONS(2498), - [anon_sym_L_SQUOTE] = ACTIONS(2498), - [anon_sym_u_SQUOTE] = ACTIONS(2498), - [anon_sym_U_SQUOTE] = ACTIONS(2498), - [anon_sym_u8_SQUOTE] = ACTIONS(2498), - [anon_sym_SQUOTE] = ACTIONS(2498), - [anon_sym_L_DQUOTE] = ACTIONS(2498), - [anon_sym_u_DQUOTE] = ACTIONS(2498), - [anon_sym_U_DQUOTE] = ACTIONS(2498), - [anon_sym_u8_DQUOTE] = ACTIONS(2498), - [anon_sym_DQUOTE] = ACTIONS(2498), - [sym_true] = ACTIONS(2496), - [sym_false] = ACTIONS(2496), - [sym_null] = ACTIONS(2496), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2496), - [anon_sym_decltype] = ACTIONS(2496), - [anon_sym_virtual] = ACTIONS(2496), - [anon_sym_typename] = ACTIONS(2496), - [anon_sym_template] = ACTIONS(2496), - [anon_sym_try] = ACTIONS(2496), - [anon_sym_delete] = ACTIONS(2496), - [anon_sym_throw] = ACTIONS(2496), - [anon_sym_co_return] = ACTIONS(2496), - [anon_sym_co_yield] = ACTIONS(2496), - [anon_sym_R_DQUOTE] = ACTIONS(2498), - [anon_sym_LR_DQUOTE] = ACTIONS(2498), - [anon_sym_uR_DQUOTE] = ACTIONS(2498), - [anon_sym_UR_DQUOTE] = ACTIONS(2498), - [anon_sym_u8R_DQUOTE] = ACTIONS(2498), - [anon_sym_co_await] = ACTIONS(2496), - [anon_sym_new] = ACTIONS(2496), - [anon_sym_requires] = ACTIONS(2496), - [sym_this] = ACTIONS(2496), - [sym_nullptr] = ACTIONS(2496), + [sym_identifier] = ACTIONS(3117), + [aux_sym_preproc_include_token1] = ACTIONS(3117), + [aux_sym_preproc_def_token1] = ACTIONS(3117), + [aux_sym_preproc_if_token1] = ACTIONS(3117), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3117), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3117), + [sym_preproc_directive] = ACTIONS(3117), + [anon_sym_LPAREN2] = ACTIONS(3119), + [anon_sym_BANG] = ACTIONS(3119), + [anon_sym_TILDE] = ACTIONS(3119), + [anon_sym_DASH] = ACTIONS(3117), + [anon_sym_PLUS] = ACTIONS(3117), + [anon_sym_STAR] = ACTIONS(3119), + [anon_sym_AMP_AMP] = ACTIONS(3119), + [anon_sym_AMP] = ACTIONS(3117), + [anon_sym_SEMI] = ACTIONS(3119), + [anon_sym_typedef] = ACTIONS(3117), + [anon_sym_extern] = ACTIONS(3117), + [anon_sym___attribute__] = ACTIONS(3117), + [anon_sym_COLON_COLON] = ACTIONS(3119), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3119), + [anon_sym___declspec] = ACTIONS(3117), + [anon_sym___based] = ACTIONS(3117), + [anon_sym___cdecl] = ACTIONS(3117), + [anon_sym___clrcall] = ACTIONS(3117), + [anon_sym___stdcall] = ACTIONS(3117), + [anon_sym___fastcall] = ACTIONS(3117), + [anon_sym___thiscall] = ACTIONS(3117), + [anon_sym___vectorcall] = ACTIONS(3117), + [anon_sym_LBRACE] = ACTIONS(3119), + [anon_sym_RBRACE] = ACTIONS(3119), + [anon_sym_LBRACK] = ACTIONS(3117), + [anon_sym_static] = ACTIONS(3117), + [anon_sym_register] = ACTIONS(3117), + [anon_sym_inline] = ACTIONS(3117), + [anon_sym_thread_local] = ACTIONS(3117), + [anon_sym_const] = ACTIONS(3117), + [anon_sym_constexpr] = ACTIONS(3117), + [anon_sym_volatile] = ACTIONS(3117), + [anon_sym_restrict] = ACTIONS(3117), + [anon_sym___restrict__] = ACTIONS(3117), + [anon_sym__Atomic] = ACTIONS(3117), + [anon_sym__Noreturn] = ACTIONS(3117), + [anon_sym_noreturn] = ACTIONS(3117), + [anon_sym_mutable] = ACTIONS(3117), + [anon_sym_constinit] = ACTIONS(3117), + [anon_sym_consteval] = ACTIONS(3117), + [anon_sym_signed] = ACTIONS(3117), + [anon_sym_unsigned] = ACTIONS(3117), + [anon_sym_long] = ACTIONS(3117), + [anon_sym_short] = ACTIONS(3117), + [sym_primitive_type] = ACTIONS(3117), + [anon_sym_enum] = ACTIONS(3117), + [anon_sym_class] = ACTIONS(3117), + [anon_sym_struct] = ACTIONS(3117), + [anon_sym_union] = ACTIONS(3117), + [anon_sym_if] = ACTIONS(3117), + [anon_sym_switch] = ACTIONS(3117), + [anon_sym_case] = ACTIONS(3117), + [anon_sym_default] = ACTIONS(3117), + [anon_sym_while] = ACTIONS(3117), + [anon_sym_do] = ACTIONS(3117), + [anon_sym_for] = ACTIONS(3117), + [anon_sym_return] = ACTIONS(3117), + [anon_sym_break] = ACTIONS(3117), + [anon_sym_continue] = ACTIONS(3117), + [anon_sym_goto] = ACTIONS(3117), + [anon_sym_not] = ACTIONS(3117), + [anon_sym_compl] = ACTIONS(3117), + [anon_sym_DASH_DASH] = ACTIONS(3119), + [anon_sym_PLUS_PLUS] = ACTIONS(3119), + [anon_sym_sizeof] = ACTIONS(3117), + [anon_sym_offsetof] = ACTIONS(3117), + [anon_sym__Generic] = ACTIONS(3117), + [anon_sym_asm] = ACTIONS(3117), + [anon_sym___asm__] = ACTIONS(3117), + [sym_number_literal] = ACTIONS(3119), + [anon_sym_L_SQUOTE] = ACTIONS(3119), + [anon_sym_u_SQUOTE] = ACTIONS(3119), + [anon_sym_U_SQUOTE] = ACTIONS(3119), + [anon_sym_u8_SQUOTE] = ACTIONS(3119), + [anon_sym_SQUOTE] = ACTIONS(3119), + [anon_sym_L_DQUOTE] = ACTIONS(3119), + [anon_sym_u_DQUOTE] = ACTIONS(3119), + [anon_sym_U_DQUOTE] = ACTIONS(3119), + [anon_sym_u8_DQUOTE] = ACTIONS(3119), + [anon_sym_DQUOTE] = ACTIONS(3119), + [sym_true] = ACTIONS(3117), + [sym_false] = ACTIONS(3117), + [anon_sym_NULL] = ACTIONS(3117), + [anon_sym_nullptr] = ACTIONS(3117), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3117), + [anon_sym_decltype] = ACTIONS(3117), + [anon_sym_virtual] = ACTIONS(3117), + [anon_sym_explicit] = ACTIONS(3117), + [anon_sym_typename] = ACTIONS(3117), + [anon_sym_template] = ACTIONS(3117), + [anon_sym_operator] = ACTIONS(3117), + [anon_sym_try] = ACTIONS(3117), + [anon_sym_delete] = ACTIONS(3117), + [anon_sym_throw] = ACTIONS(3117), + [anon_sym_namespace] = ACTIONS(3117), + [anon_sym_using] = ACTIONS(3117), + [anon_sym_static_assert] = ACTIONS(3117), + [anon_sym_concept] = ACTIONS(3117), + [anon_sym_co_return] = ACTIONS(3117), + [anon_sym_co_yield] = ACTIONS(3117), + [anon_sym_R_DQUOTE] = ACTIONS(3119), + [anon_sym_LR_DQUOTE] = ACTIONS(3119), + [anon_sym_uR_DQUOTE] = ACTIONS(3119), + [anon_sym_UR_DQUOTE] = ACTIONS(3119), + [anon_sym_u8R_DQUOTE] = ACTIONS(3119), + [anon_sym_co_await] = ACTIONS(3117), + [anon_sym_new] = ACTIONS(3117), + [anon_sym_requires] = ACTIONS(3117), + [sym_this] = ACTIONS(3117), }, [1197] = { - [sym_identifier] = ACTIONS(2500), - [anon_sym_LPAREN2] = ACTIONS(2502), - [anon_sym_BANG] = ACTIONS(2502), - [anon_sym_TILDE] = ACTIONS(2502), - [anon_sym_DASH] = ACTIONS(2500), - [anon_sym_PLUS] = ACTIONS(2500), - [anon_sym_STAR] = ACTIONS(2502), - [anon_sym_AMP] = ACTIONS(2502), - [anon_sym_SEMI] = ACTIONS(2502), - [anon_sym_typedef] = ACTIONS(2500), - [anon_sym_extern] = ACTIONS(2500), - [anon_sym___attribute__] = ACTIONS(2500), - [anon_sym_COLON_COLON] = ACTIONS(2502), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2502), - [anon_sym___declspec] = ACTIONS(2500), - [anon_sym_LBRACE] = ACTIONS(2502), - [anon_sym_LBRACK] = ACTIONS(2500), - [anon_sym_static] = ACTIONS(2500), - [anon_sym_register] = ACTIONS(2500), - [anon_sym_inline] = ACTIONS(2500), - [anon_sym_thread_local] = ACTIONS(2500), - [anon_sym_const] = ACTIONS(2500), - [anon_sym_volatile] = ACTIONS(2500), - [anon_sym_restrict] = ACTIONS(2500), - [anon_sym__Atomic] = ACTIONS(2500), - [anon_sym_mutable] = ACTIONS(2500), - [anon_sym_constexpr] = ACTIONS(2500), - [anon_sym_constinit] = ACTIONS(2500), - [anon_sym_consteval] = ACTIONS(2500), - [anon_sym_signed] = ACTIONS(2500), - [anon_sym_unsigned] = ACTIONS(2500), - [anon_sym_long] = ACTIONS(2500), - [anon_sym_short] = ACTIONS(2500), - [sym_primitive_type] = ACTIONS(2500), - [anon_sym_enum] = ACTIONS(2500), - [anon_sym_class] = ACTIONS(2500), - [anon_sym_struct] = ACTIONS(2500), - [anon_sym_union] = ACTIONS(2500), - [anon_sym_if] = ACTIONS(2500), - [anon_sym_else] = ACTIONS(2500), - [anon_sym_switch] = ACTIONS(2500), - [anon_sym_while] = ACTIONS(2500), - [anon_sym_do] = ACTIONS(2500), - [anon_sym_for] = ACTIONS(2500), - [anon_sym_return] = ACTIONS(2500), - [anon_sym_break] = ACTIONS(2500), - [anon_sym_continue] = ACTIONS(2500), - [anon_sym_goto] = ACTIONS(2500), - [anon_sym_not] = ACTIONS(2500), - [anon_sym_compl] = ACTIONS(2500), - [anon_sym_DASH_DASH] = ACTIONS(2502), - [anon_sym_PLUS_PLUS] = ACTIONS(2502), - [anon_sym_sizeof] = ACTIONS(2500), - [sym_number_literal] = ACTIONS(2502), - [anon_sym_L_SQUOTE] = ACTIONS(2502), - [anon_sym_u_SQUOTE] = ACTIONS(2502), - [anon_sym_U_SQUOTE] = ACTIONS(2502), - [anon_sym_u8_SQUOTE] = ACTIONS(2502), - [anon_sym_SQUOTE] = ACTIONS(2502), - [anon_sym_L_DQUOTE] = ACTIONS(2502), - [anon_sym_u_DQUOTE] = ACTIONS(2502), - [anon_sym_U_DQUOTE] = ACTIONS(2502), - [anon_sym_u8_DQUOTE] = ACTIONS(2502), - [anon_sym_DQUOTE] = ACTIONS(2502), - [sym_true] = ACTIONS(2500), - [sym_false] = ACTIONS(2500), - [sym_null] = ACTIONS(2500), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2500), - [anon_sym_decltype] = ACTIONS(2500), - [anon_sym_virtual] = ACTIONS(2500), - [anon_sym_typename] = ACTIONS(2500), - [anon_sym_template] = ACTIONS(2500), - [anon_sym_try] = ACTIONS(2500), - [anon_sym_delete] = ACTIONS(2500), - [anon_sym_throw] = ACTIONS(2500), - [anon_sym_co_return] = ACTIONS(2500), - [anon_sym_co_yield] = ACTIONS(2500), - [anon_sym_R_DQUOTE] = ACTIONS(2502), - [anon_sym_LR_DQUOTE] = ACTIONS(2502), - [anon_sym_uR_DQUOTE] = ACTIONS(2502), - [anon_sym_UR_DQUOTE] = ACTIONS(2502), - [anon_sym_u8R_DQUOTE] = ACTIONS(2502), - [anon_sym_co_await] = ACTIONS(2500), - [anon_sym_new] = ACTIONS(2500), - [anon_sym_requires] = ACTIONS(2500), - [sym_this] = ACTIONS(2500), - [sym_nullptr] = ACTIONS(2500), + [sym_identifier] = ACTIONS(3230), + [aux_sym_preproc_include_token1] = ACTIONS(3230), + [aux_sym_preproc_def_token1] = ACTIONS(3230), + [aux_sym_preproc_if_token1] = ACTIONS(3230), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3230), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3230), + [sym_preproc_directive] = ACTIONS(3230), + [anon_sym_LPAREN2] = ACTIONS(3232), + [anon_sym_BANG] = ACTIONS(3232), + [anon_sym_TILDE] = ACTIONS(3232), + [anon_sym_DASH] = ACTIONS(3230), + [anon_sym_PLUS] = ACTIONS(3230), + [anon_sym_STAR] = ACTIONS(3232), + [anon_sym_AMP_AMP] = ACTIONS(3232), + [anon_sym_AMP] = ACTIONS(3230), + [anon_sym_SEMI] = ACTIONS(3232), + [anon_sym_typedef] = ACTIONS(3230), + [anon_sym_extern] = ACTIONS(3230), + [anon_sym___attribute__] = ACTIONS(3230), + [anon_sym_COLON_COLON] = ACTIONS(3232), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3232), + [anon_sym___declspec] = ACTIONS(3230), + [anon_sym___based] = ACTIONS(3230), + [anon_sym___cdecl] = ACTIONS(3230), + [anon_sym___clrcall] = ACTIONS(3230), + [anon_sym___stdcall] = ACTIONS(3230), + [anon_sym___fastcall] = ACTIONS(3230), + [anon_sym___thiscall] = ACTIONS(3230), + [anon_sym___vectorcall] = ACTIONS(3230), + [anon_sym_LBRACE] = ACTIONS(3232), + [anon_sym_RBRACE] = ACTIONS(3232), + [anon_sym_LBRACK] = ACTIONS(3230), + [anon_sym_static] = ACTIONS(3230), + [anon_sym_register] = ACTIONS(3230), + [anon_sym_inline] = ACTIONS(3230), + [anon_sym_thread_local] = ACTIONS(3230), + [anon_sym_const] = ACTIONS(3230), + [anon_sym_constexpr] = ACTIONS(3230), + [anon_sym_volatile] = ACTIONS(3230), + [anon_sym_restrict] = ACTIONS(3230), + [anon_sym___restrict__] = ACTIONS(3230), + [anon_sym__Atomic] = ACTIONS(3230), + [anon_sym__Noreturn] = ACTIONS(3230), + [anon_sym_noreturn] = ACTIONS(3230), + [anon_sym_mutable] = ACTIONS(3230), + [anon_sym_constinit] = ACTIONS(3230), + [anon_sym_consteval] = ACTIONS(3230), + [anon_sym_signed] = ACTIONS(3230), + [anon_sym_unsigned] = ACTIONS(3230), + [anon_sym_long] = ACTIONS(3230), + [anon_sym_short] = ACTIONS(3230), + [sym_primitive_type] = ACTIONS(3230), + [anon_sym_enum] = ACTIONS(3230), + [anon_sym_class] = ACTIONS(3230), + [anon_sym_struct] = ACTIONS(3230), + [anon_sym_union] = ACTIONS(3230), + [anon_sym_if] = ACTIONS(3230), + [anon_sym_switch] = ACTIONS(3230), + [anon_sym_case] = ACTIONS(3230), + [anon_sym_default] = ACTIONS(3230), + [anon_sym_while] = ACTIONS(3230), + [anon_sym_do] = ACTIONS(3230), + [anon_sym_for] = ACTIONS(3230), + [anon_sym_return] = ACTIONS(3230), + [anon_sym_break] = ACTIONS(3230), + [anon_sym_continue] = ACTIONS(3230), + [anon_sym_goto] = ACTIONS(3230), + [anon_sym_not] = ACTIONS(3230), + [anon_sym_compl] = ACTIONS(3230), + [anon_sym_DASH_DASH] = ACTIONS(3232), + [anon_sym_PLUS_PLUS] = ACTIONS(3232), + [anon_sym_sizeof] = ACTIONS(3230), + [anon_sym_offsetof] = ACTIONS(3230), + [anon_sym__Generic] = ACTIONS(3230), + [anon_sym_asm] = ACTIONS(3230), + [anon_sym___asm__] = ACTIONS(3230), + [sym_number_literal] = ACTIONS(3232), + [anon_sym_L_SQUOTE] = ACTIONS(3232), + [anon_sym_u_SQUOTE] = ACTIONS(3232), + [anon_sym_U_SQUOTE] = ACTIONS(3232), + [anon_sym_u8_SQUOTE] = ACTIONS(3232), + [anon_sym_SQUOTE] = ACTIONS(3232), + [anon_sym_L_DQUOTE] = ACTIONS(3232), + [anon_sym_u_DQUOTE] = ACTIONS(3232), + [anon_sym_U_DQUOTE] = ACTIONS(3232), + [anon_sym_u8_DQUOTE] = ACTIONS(3232), + [anon_sym_DQUOTE] = ACTIONS(3232), + [sym_true] = ACTIONS(3230), + [sym_false] = ACTIONS(3230), + [anon_sym_NULL] = ACTIONS(3230), + [anon_sym_nullptr] = ACTIONS(3230), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3230), + [anon_sym_decltype] = ACTIONS(3230), + [anon_sym_virtual] = ACTIONS(3230), + [anon_sym_explicit] = ACTIONS(3230), + [anon_sym_typename] = ACTIONS(3230), + [anon_sym_template] = ACTIONS(3230), + [anon_sym_operator] = ACTIONS(3230), + [anon_sym_try] = ACTIONS(3230), + [anon_sym_delete] = ACTIONS(3230), + [anon_sym_throw] = ACTIONS(3230), + [anon_sym_namespace] = ACTIONS(3230), + [anon_sym_using] = ACTIONS(3230), + [anon_sym_static_assert] = ACTIONS(3230), + [anon_sym_concept] = ACTIONS(3230), + [anon_sym_co_return] = ACTIONS(3230), + [anon_sym_co_yield] = ACTIONS(3230), + [anon_sym_R_DQUOTE] = ACTIONS(3232), + [anon_sym_LR_DQUOTE] = ACTIONS(3232), + [anon_sym_uR_DQUOTE] = ACTIONS(3232), + [anon_sym_UR_DQUOTE] = ACTIONS(3232), + [anon_sym_u8R_DQUOTE] = ACTIONS(3232), + [anon_sym_co_await] = ACTIONS(3230), + [anon_sym_new] = ACTIONS(3230), + [anon_sym_requires] = ACTIONS(3230), + [sym_this] = ACTIONS(3230), }, [1198] = { - [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_AMP] = ACTIONS(2464), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym_LBRACE] = ACTIONS(2464), - [anon_sym_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_identifier] = ACTIONS(3443), + [aux_sym_preproc_include_token1] = ACTIONS(3443), + [aux_sym_preproc_def_token1] = ACTIONS(3443), + [aux_sym_preproc_if_token1] = ACTIONS(3443), + [aux_sym_preproc_if_token2] = ACTIONS(3443), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3443), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3443), + [sym_preproc_directive] = ACTIONS(3443), + [anon_sym_LPAREN2] = ACTIONS(3445), + [anon_sym_BANG] = ACTIONS(3445), + [anon_sym_TILDE] = ACTIONS(3445), + [anon_sym_DASH] = ACTIONS(3443), + [anon_sym_PLUS] = ACTIONS(3443), + [anon_sym_STAR] = ACTIONS(3445), + [anon_sym_AMP_AMP] = ACTIONS(3445), + [anon_sym_AMP] = ACTIONS(3443), + [anon_sym_SEMI] = ACTIONS(3445), + [anon_sym_typedef] = ACTIONS(3443), + [anon_sym_extern] = ACTIONS(3443), + [anon_sym___attribute__] = ACTIONS(3443), + [anon_sym_COLON_COLON] = ACTIONS(3445), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3445), + [anon_sym___declspec] = ACTIONS(3443), + [anon_sym___based] = ACTIONS(3443), + [anon_sym___cdecl] = ACTIONS(3443), + [anon_sym___clrcall] = ACTIONS(3443), + [anon_sym___stdcall] = ACTIONS(3443), + [anon_sym___fastcall] = ACTIONS(3443), + [anon_sym___thiscall] = ACTIONS(3443), + [anon_sym___vectorcall] = ACTIONS(3443), + [anon_sym_LBRACE] = ACTIONS(3445), + [anon_sym_LBRACK] = ACTIONS(3443), + [anon_sym_static] = ACTIONS(3443), + [anon_sym_register] = ACTIONS(3443), + [anon_sym_inline] = ACTIONS(3443), + [anon_sym_thread_local] = ACTIONS(3443), + [anon_sym_const] = ACTIONS(3443), + [anon_sym_constexpr] = ACTIONS(3443), + [anon_sym_volatile] = ACTIONS(3443), + [anon_sym_restrict] = ACTIONS(3443), + [anon_sym___restrict__] = ACTIONS(3443), + [anon_sym__Atomic] = ACTIONS(3443), + [anon_sym__Noreturn] = ACTIONS(3443), + [anon_sym_noreturn] = ACTIONS(3443), + [anon_sym_mutable] = ACTIONS(3443), + [anon_sym_constinit] = ACTIONS(3443), + [anon_sym_consteval] = ACTIONS(3443), + [anon_sym_signed] = ACTIONS(3443), + [anon_sym_unsigned] = ACTIONS(3443), + [anon_sym_long] = ACTIONS(3443), + [anon_sym_short] = ACTIONS(3443), + [sym_primitive_type] = ACTIONS(3443), + [anon_sym_enum] = ACTIONS(3443), + [anon_sym_class] = ACTIONS(3443), + [anon_sym_struct] = ACTIONS(3443), + [anon_sym_union] = ACTIONS(3443), + [anon_sym_if] = ACTIONS(3443), + [anon_sym_switch] = ACTIONS(3443), + [anon_sym_case] = ACTIONS(3443), + [anon_sym_default] = ACTIONS(3443), + [anon_sym_while] = ACTIONS(3443), + [anon_sym_do] = ACTIONS(3443), + [anon_sym_for] = ACTIONS(3443), + [anon_sym_return] = ACTIONS(3443), + [anon_sym_break] = ACTIONS(3443), + [anon_sym_continue] = ACTIONS(3443), + [anon_sym_goto] = ACTIONS(3443), + [anon_sym_not] = ACTIONS(3443), + [anon_sym_compl] = ACTIONS(3443), + [anon_sym_DASH_DASH] = ACTIONS(3445), + [anon_sym_PLUS_PLUS] = ACTIONS(3445), + [anon_sym_sizeof] = ACTIONS(3443), + [anon_sym_offsetof] = ACTIONS(3443), + [anon_sym__Generic] = ACTIONS(3443), + [anon_sym_asm] = ACTIONS(3443), + [anon_sym___asm__] = ACTIONS(3443), + [sym_number_literal] = ACTIONS(3445), + [anon_sym_L_SQUOTE] = ACTIONS(3445), + [anon_sym_u_SQUOTE] = ACTIONS(3445), + [anon_sym_U_SQUOTE] = ACTIONS(3445), + [anon_sym_u8_SQUOTE] = ACTIONS(3445), + [anon_sym_SQUOTE] = ACTIONS(3445), + [anon_sym_L_DQUOTE] = ACTIONS(3445), + [anon_sym_u_DQUOTE] = ACTIONS(3445), + [anon_sym_U_DQUOTE] = ACTIONS(3445), + [anon_sym_u8_DQUOTE] = ACTIONS(3445), + [anon_sym_DQUOTE] = ACTIONS(3445), + [sym_true] = ACTIONS(3443), + [sym_false] = ACTIONS(3443), + [anon_sym_NULL] = ACTIONS(3443), + [anon_sym_nullptr] = ACTIONS(3443), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3443), + [anon_sym_decltype] = ACTIONS(3443), + [anon_sym_virtual] = ACTIONS(3443), + [anon_sym_explicit] = ACTIONS(3443), + [anon_sym_typename] = ACTIONS(3443), + [anon_sym_template] = ACTIONS(3443), + [anon_sym_operator] = ACTIONS(3443), + [anon_sym_try] = ACTIONS(3443), + [anon_sym_delete] = ACTIONS(3443), + [anon_sym_throw] = ACTIONS(3443), + [anon_sym_namespace] = ACTIONS(3443), + [anon_sym_using] = ACTIONS(3443), + [anon_sym_static_assert] = ACTIONS(3443), + [anon_sym_concept] = ACTIONS(3443), + [anon_sym_co_return] = ACTIONS(3443), + [anon_sym_co_yield] = ACTIONS(3443), + [anon_sym_R_DQUOTE] = ACTIONS(3445), + [anon_sym_LR_DQUOTE] = ACTIONS(3445), + [anon_sym_uR_DQUOTE] = ACTIONS(3445), + [anon_sym_UR_DQUOTE] = ACTIONS(3445), + [anon_sym_u8R_DQUOTE] = ACTIONS(3445), + [anon_sym_co_await] = ACTIONS(3443), + [anon_sym_new] = ACTIONS(3443), + [anon_sym_requires] = ACTIONS(3443), + [sym_this] = ACTIONS(3443), }, [1199] = { - [sym_identifier] = ACTIONS(2500), - [anon_sym_LPAREN2] = ACTIONS(2502), - [anon_sym_BANG] = ACTIONS(2502), - [anon_sym_TILDE] = ACTIONS(2502), - [anon_sym_DASH] = ACTIONS(2500), - [anon_sym_PLUS] = ACTIONS(2500), - [anon_sym_STAR] = ACTIONS(2502), - [anon_sym_AMP] = ACTIONS(2502), - [anon_sym_SEMI] = ACTIONS(2502), - [anon_sym_typedef] = ACTIONS(2500), - [anon_sym_extern] = ACTIONS(2500), - [anon_sym___attribute__] = ACTIONS(2500), - [anon_sym_COLON_COLON] = ACTIONS(2502), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2502), - [anon_sym___declspec] = ACTIONS(2500), - [anon_sym_LBRACE] = ACTIONS(2502), - [anon_sym_LBRACK] = ACTIONS(2500), - [anon_sym_static] = ACTIONS(2500), - [anon_sym_register] = ACTIONS(2500), - [anon_sym_inline] = ACTIONS(2500), - [anon_sym_thread_local] = ACTIONS(2500), - [anon_sym_const] = ACTIONS(2500), - [anon_sym_volatile] = ACTIONS(2500), - [anon_sym_restrict] = ACTIONS(2500), - [anon_sym__Atomic] = ACTIONS(2500), - [anon_sym_mutable] = ACTIONS(2500), - [anon_sym_constexpr] = ACTIONS(2500), - [anon_sym_constinit] = ACTIONS(2500), - [anon_sym_consteval] = ACTIONS(2500), - [anon_sym_signed] = ACTIONS(2500), - [anon_sym_unsigned] = ACTIONS(2500), - [anon_sym_long] = ACTIONS(2500), - [anon_sym_short] = ACTIONS(2500), - [sym_primitive_type] = ACTIONS(2500), - [anon_sym_enum] = ACTIONS(2500), - [anon_sym_class] = ACTIONS(2500), - [anon_sym_struct] = ACTIONS(2500), - [anon_sym_union] = ACTIONS(2500), - [anon_sym_if] = ACTIONS(2500), - [anon_sym_else] = ACTIONS(2500), - [anon_sym_switch] = ACTIONS(2500), - [anon_sym_while] = ACTIONS(2500), - [anon_sym_do] = ACTIONS(2500), - [anon_sym_for] = ACTIONS(2500), - [anon_sym_return] = ACTIONS(2500), - [anon_sym_break] = ACTIONS(2500), - [anon_sym_continue] = ACTIONS(2500), - [anon_sym_goto] = ACTIONS(2500), - [anon_sym_not] = ACTIONS(2500), - [anon_sym_compl] = ACTIONS(2500), - [anon_sym_DASH_DASH] = ACTIONS(2502), - [anon_sym_PLUS_PLUS] = ACTIONS(2502), - [anon_sym_sizeof] = ACTIONS(2500), - [sym_number_literal] = ACTIONS(2502), - [anon_sym_L_SQUOTE] = ACTIONS(2502), - [anon_sym_u_SQUOTE] = ACTIONS(2502), - [anon_sym_U_SQUOTE] = ACTIONS(2502), - [anon_sym_u8_SQUOTE] = ACTIONS(2502), - [anon_sym_SQUOTE] = ACTIONS(2502), - [anon_sym_L_DQUOTE] = ACTIONS(2502), - [anon_sym_u_DQUOTE] = ACTIONS(2502), - [anon_sym_U_DQUOTE] = ACTIONS(2502), - [anon_sym_u8_DQUOTE] = ACTIONS(2502), - [anon_sym_DQUOTE] = ACTIONS(2502), - [sym_true] = ACTIONS(2500), - [sym_false] = ACTIONS(2500), - [sym_null] = ACTIONS(2500), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2500), - [anon_sym_decltype] = ACTIONS(2500), - [anon_sym_virtual] = ACTIONS(2500), - [anon_sym_typename] = ACTIONS(2500), - [anon_sym_template] = ACTIONS(2500), - [anon_sym_try] = ACTIONS(2500), - [anon_sym_delete] = ACTIONS(2500), - [anon_sym_throw] = ACTIONS(2500), - [anon_sym_co_return] = ACTIONS(2500), - [anon_sym_co_yield] = ACTIONS(2500), - [anon_sym_R_DQUOTE] = ACTIONS(2502), - [anon_sym_LR_DQUOTE] = ACTIONS(2502), - [anon_sym_uR_DQUOTE] = ACTIONS(2502), - [anon_sym_UR_DQUOTE] = ACTIONS(2502), - [anon_sym_u8R_DQUOTE] = ACTIONS(2502), - [anon_sym_co_await] = ACTIONS(2500), - [anon_sym_new] = ACTIONS(2500), - [anon_sym_requires] = ACTIONS(2500), - [sym_this] = ACTIONS(2500), - [sym_nullptr] = ACTIONS(2500), + [sym_identifier] = ACTIONS(3368), + [aux_sym_preproc_include_token1] = ACTIONS(3368), + [aux_sym_preproc_def_token1] = ACTIONS(3368), + [aux_sym_preproc_if_token1] = ACTIONS(3368), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3368), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3368), + [sym_preproc_directive] = ACTIONS(3368), + [anon_sym_LPAREN2] = ACTIONS(3370), + [anon_sym_BANG] = ACTIONS(3370), + [anon_sym_TILDE] = ACTIONS(3370), + [anon_sym_DASH] = ACTIONS(3368), + [anon_sym_PLUS] = ACTIONS(3368), + [anon_sym_STAR] = ACTIONS(3370), + [anon_sym_AMP_AMP] = ACTIONS(3370), + [anon_sym_AMP] = ACTIONS(3368), + [anon_sym_SEMI] = ACTIONS(3370), + [anon_sym_typedef] = ACTIONS(3368), + [anon_sym_extern] = ACTIONS(3368), + [anon_sym___attribute__] = ACTIONS(3368), + [anon_sym_COLON_COLON] = ACTIONS(3370), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3370), + [anon_sym___declspec] = ACTIONS(3368), + [anon_sym___based] = ACTIONS(3368), + [anon_sym___cdecl] = ACTIONS(3368), + [anon_sym___clrcall] = ACTIONS(3368), + [anon_sym___stdcall] = ACTIONS(3368), + [anon_sym___fastcall] = ACTIONS(3368), + [anon_sym___thiscall] = ACTIONS(3368), + [anon_sym___vectorcall] = ACTIONS(3368), + [anon_sym_LBRACE] = ACTIONS(3370), + [anon_sym_RBRACE] = ACTIONS(3370), + [anon_sym_LBRACK] = ACTIONS(3368), + [anon_sym_static] = ACTIONS(3368), + [anon_sym_register] = ACTIONS(3368), + [anon_sym_inline] = ACTIONS(3368), + [anon_sym_thread_local] = ACTIONS(3368), + [anon_sym_const] = ACTIONS(3368), + [anon_sym_constexpr] = ACTIONS(3368), + [anon_sym_volatile] = ACTIONS(3368), + [anon_sym_restrict] = ACTIONS(3368), + [anon_sym___restrict__] = ACTIONS(3368), + [anon_sym__Atomic] = ACTIONS(3368), + [anon_sym__Noreturn] = ACTIONS(3368), + [anon_sym_noreturn] = ACTIONS(3368), + [anon_sym_mutable] = ACTIONS(3368), + [anon_sym_constinit] = ACTIONS(3368), + [anon_sym_consteval] = ACTIONS(3368), + [anon_sym_signed] = ACTIONS(3368), + [anon_sym_unsigned] = ACTIONS(3368), + [anon_sym_long] = ACTIONS(3368), + [anon_sym_short] = ACTIONS(3368), + [sym_primitive_type] = ACTIONS(3368), + [anon_sym_enum] = ACTIONS(3368), + [anon_sym_class] = ACTIONS(3368), + [anon_sym_struct] = ACTIONS(3368), + [anon_sym_union] = ACTIONS(3368), + [anon_sym_if] = ACTIONS(3368), + [anon_sym_switch] = ACTIONS(3368), + [anon_sym_case] = ACTIONS(3368), + [anon_sym_default] = ACTIONS(3368), + [anon_sym_while] = ACTIONS(3368), + [anon_sym_do] = ACTIONS(3368), + [anon_sym_for] = ACTIONS(3368), + [anon_sym_return] = ACTIONS(3368), + [anon_sym_break] = ACTIONS(3368), + [anon_sym_continue] = ACTIONS(3368), + [anon_sym_goto] = ACTIONS(3368), + [anon_sym_not] = ACTIONS(3368), + [anon_sym_compl] = ACTIONS(3368), + [anon_sym_DASH_DASH] = ACTIONS(3370), + [anon_sym_PLUS_PLUS] = ACTIONS(3370), + [anon_sym_sizeof] = ACTIONS(3368), + [anon_sym_offsetof] = ACTIONS(3368), + [anon_sym__Generic] = ACTIONS(3368), + [anon_sym_asm] = ACTIONS(3368), + [anon_sym___asm__] = ACTIONS(3368), + [sym_number_literal] = ACTIONS(3370), + [anon_sym_L_SQUOTE] = ACTIONS(3370), + [anon_sym_u_SQUOTE] = ACTIONS(3370), + [anon_sym_U_SQUOTE] = ACTIONS(3370), + [anon_sym_u8_SQUOTE] = ACTIONS(3370), + [anon_sym_SQUOTE] = ACTIONS(3370), + [anon_sym_L_DQUOTE] = ACTIONS(3370), + [anon_sym_u_DQUOTE] = ACTIONS(3370), + [anon_sym_U_DQUOTE] = ACTIONS(3370), + [anon_sym_u8_DQUOTE] = ACTIONS(3370), + [anon_sym_DQUOTE] = ACTIONS(3370), + [sym_true] = ACTIONS(3368), + [sym_false] = ACTIONS(3368), + [anon_sym_NULL] = ACTIONS(3368), + [anon_sym_nullptr] = ACTIONS(3368), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3368), + [anon_sym_decltype] = ACTIONS(3368), + [anon_sym_virtual] = ACTIONS(3368), + [anon_sym_explicit] = ACTIONS(3368), + [anon_sym_typename] = ACTIONS(3368), + [anon_sym_template] = ACTIONS(3368), + [anon_sym_operator] = ACTIONS(3368), + [anon_sym_try] = ACTIONS(3368), + [anon_sym_delete] = ACTIONS(3368), + [anon_sym_throw] = ACTIONS(3368), + [anon_sym_namespace] = ACTIONS(3368), + [anon_sym_using] = ACTIONS(3368), + [anon_sym_static_assert] = ACTIONS(3368), + [anon_sym_concept] = ACTIONS(3368), + [anon_sym_co_return] = ACTIONS(3368), + [anon_sym_co_yield] = ACTIONS(3368), + [anon_sym_R_DQUOTE] = ACTIONS(3370), + [anon_sym_LR_DQUOTE] = ACTIONS(3370), + [anon_sym_uR_DQUOTE] = ACTIONS(3370), + [anon_sym_UR_DQUOTE] = ACTIONS(3370), + [anon_sym_u8R_DQUOTE] = ACTIONS(3370), + [anon_sym_co_await] = ACTIONS(3368), + [anon_sym_new] = ACTIONS(3368), + [anon_sym_requires] = ACTIONS(3368), + [sym_this] = ACTIONS(3368), }, [1200] = { - [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_AMP] = ACTIONS(2570), - [anon_sym_SEMI] = ACTIONS(2570), - [anon_sym_typedef] = ACTIONS(2568), - [anon_sym_extern] = ACTIONS(2568), - [anon_sym___attribute__] = ACTIONS(2568), - [anon_sym_COLON_COLON] = ACTIONS(2570), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2570), - [anon_sym___declspec] = ACTIONS(2568), - [anon_sym_LBRACE] = ACTIONS(2570), - [anon_sym_LBRACK] = ACTIONS(2568), - [anon_sym_static] = ACTIONS(2568), - [anon_sym_register] = ACTIONS(2568), - [anon_sym_inline] = ACTIONS(2568), - [anon_sym_thread_local] = ACTIONS(2568), - [anon_sym_const] = ACTIONS(2568), - [anon_sym_volatile] = ACTIONS(2568), - [anon_sym_restrict] = ACTIONS(2568), - [anon_sym__Atomic] = ACTIONS(2568), - [anon_sym_mutable] = ACTIONS(2568), - [anon_sym_constexpr] = ACTIONS(2568), - [anon_sym_constinit] = ACTIONS(2568), - [anon_sym_consteval] = ACTIONS(2568), - [anon_sym_signed] = ACTIONS(2568), - [anon_sym_unsigned] = ACTIONS(2568), - [anon_sym_long] = ACTIONS(2568), - [anon_sym_short] = ACTIONS(2568), - [sym_primitive_type] = ACTIONS(2568), - [anon_sym_enum] = ACTIONS(2568), - [anon_sym_class] = 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_return] = ACTIONS(2568), - [anon_sym_break] = ACTIONS(2568), - [anon_sym_continue] = ACTIONS(2568), - [anon_sym_goto] = ACTIONS(2568), - [anon_sym_not] = ACTIONS(2568), - [anon_sym_compl] = ACTIONS(2568), - [anon_sym_DASH_DASH] = ACTIONS(2570), - [anon_sym_PLUS_PLUS] = ACTIONS(2570), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2570), - [anon_sym_u_DQUOTE] = ACTIONS(2570), - [anon_sym_U_DQUOTE] = ACTIONS(2570), - [anon_sym_u8_DQUOTE] = ACTIONS(2570), - [anon_sym_DQUOTE] = ACTIONS(2570), - [sym_true] = ACTIONS(2568), - [sym_false] = ACTIONS(2568), - [sym_null] = ACTIONS(2568), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2568), - [anon_sym_decltype] = ACTIONS(2568), - [anon_sym_virtual] = ACTIONS(2568), - [anon_sym_typename] = ACTIONS(2568), - [anon_sym_template] = ACTIONS(2568), - [anon_sym_try] = ACTIONS(2568), - [anon_sym_delete] = ACTIONS(2568), - [anon_sym_throw] = ACTIONS(2568), - [anon_sym_co_return] = ACTIONS(2568), - [anon_sym_co_yield] = ACTIONS(2568), - [anon_sym_R_DQUOTE] = ACTIONS(2570), - [anon_sym_LR_DQUOTE] = ACTIONS(2570), - [anon_sym_uR_DQUOTE] = ACTIONS(2570), - [anon_sym_UR_DQUOTE] = ACTIONS(2570), - [anon_sym_u8R_DQUOTE] = ACTIONS(2570), - [anon_sym_co_await] = ACTIONS(2568), - [anon_sym_new] = ACTIONS(2568), - [anon_sym_requires] = ACTIONS(2568), - [sym_this] = ACTIONS(2568), - [sym_nullptr] = ACTIONS(2568), + [sym_identifier] = ACTIONS(3380), + [aux_sym_preproc_include_token1] = ACTIONS(3380), + [aux_sym_preproc_def_token1] = ACTIONS(3380), + [aux_sym_preproc_if_token1] = ACTIONS(3380), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3380), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3380), + [sym_preproc_directive] = ACTIONS(3380), + [anon_sym_LPAREN2] = ACTIONS(3382), + [anon_sym_BANG] = ACTIONS(3382), + [anon_sym_TILDE] = ACTIONS(3382), + [anon_sym_DASH] = ACTIONS(3380), + [anon_sym_PLUS] = ACTIONS(3380), + [anon_sym_STAR] = ACTIONS(3382), + [anon_sym_AMP_AMP] = ACTIONS(3382), + [anon_sym_AMP] = ACTIONS(3380), + [anon_sym_SEMI] = ACTIONS(3382), + [anon_sym_typedef] = ACTIONS(3380), + [anon_sym_extern] = ACTIONS(3380), + [anon_sym___attribute__] = ACTIONS(3380), + [anon_sym_COLON_COLON] = ACTIONS(3382), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3382), + [anon_sym___declspec] = ACTIONS(3380), + [anon_sym___based] = ACTIONS(3380), + [anon_sym___cdecl] = ACTIONS(3380), + [anon_sym___clrcall] = ACTIONS(3380), + [anon_sym___stdcall] = ACTIONS(3380), + [anon_sym___fastcall] = ACTIONS(3380), + [anon_sym___thiscall] = ACTIONS(3380), + [anon_sym___vectorcall] = ACTIONS(3380), + [anon_sym_LBRACE] = ACTIONS(3382), + [anon_sym_RBRACE] = ACTIONS(3382), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_static] = ACTIONS(3380), + [anon_sym_register] = ACTIONS(3380), + [anon_sym_inline] = ACTIONS(3380), + [anon_sym_thread_local] = ACTIONS(3380), + [anon_sym_const] = ACTIONS(3380), + [anon_sym_constexpr] = ACTIONS(3380), + [anon_sym_volatile] = ACTIONS(3380), + [anon_sym_restrict] = ACTIONS(3380), + [anon_sym___restrict__] = ACTIONS(3380), + [anon_sym__Atomic] = ACTIONS(3380), + [anon_sym__Noreturn] = ACTIONS(3380), + [anon_sym_noreturn] = ACTIONS(3380), + [anon_sym_mutable] = ACTIONS(3380), + [anon_sym_constinit] = ACTIONS(3380), + [anon_sym_consteval] = ACTIONS(3380), + [anon_sym_signed] = ACTIONS(3380), + [anon_sym_unsigned] = ACTIONS(3380), + [anon_sym_long] = ACTIONS(3380), + [anon_sym_short] = ACTIONS(3380), + [sym_primitive_type] = ACTIONS(3380), + [anon_sym_enum] = ACTIONS(3380), + [anon_sym_class] = ACTIONS(3380), + [anon_sym_struct] = ACTIONS(3380), + [anon_sym_union] = ACTIONS(3380), + [anon_sym_if] = ACTIONS(3380), + [anon_sym_switch] = ACTIONS(3380), + [anon_sym_case] = ACTIONS(3380), + [anon_sym_default] = ACTIONS(3380), + [anon_sym_while] = ACTIONS(3380), + [anon_sym_do] = ACTIONS(3380), + [anon_sym_for] = ACTIONS(3380), + [anon_sym_return] = ACTIONS(3380), + [anon_sym_break] = ACTIONS(3380), + [anon_sym_continue] = ACTIONS(3380), + [anon_sym_goto] = ACTIONS(3380), + [anon_sym_not] = ACTIONS(3380), + [anon_sym_compl] = ACTIONS(3380), + [anon_sym_DASH_DASH] = ACTIONS(3382), + [anon_sym_PLUS_PLUS] = ACTIONS(3382), + [anon_sym_sizeof] = ACTIONS(3380), + [anon_sym_offsetof] = ACTIONS(3380), + [anon_sym__Generic] = ACTIONS(3380), + [anon_sym_asm] = ACTIONS(3380), + [anon_sym___asm__] = ACTIONS(3380), + [sym_number_literal] = ACTIONS(3382), + [anon_sym_L_SQUOTE] = ACTIONS(3382), + [anon_sym_u_SQUOTE] = ACTIONS(3382), + [anon_sym_U_SQUOTE] = ACTIONS(3382), + [anon_sym_u8_SQUOTE] = ACTIONS(3382), + [anon_sym_SQUOTE] = ACTIONS(3382), + [anon_sym_L_DQUOTE] = ACTIONS(3382), + [anon_sym_u_DQUOTE] = ACTIONS(3382), + [anon_sym_U_DQUOTE] = ACTIONS(3382), + [anon_sym_u8_DQUOTE] = ACTIONS(3382), + [anon_sym_DQUOTE] = ACTIONS(3382), + [sym_true] = ACTIONS(3380), + [sym_false] = ACTIONS(3380), + [anon_sym_NULL] = ACTIONS(3380), + [anon_sym_nullptr] = ACTIONS(3380), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3380), + [anon_sym_decltype] = ACTIONS(3380), + [anon_sym_virtual] = ACTIONS(3380), + [anon_sym_explicit] = ACTIONS(3380), + [anon_sym_typename] = ACTIONS(3380), + [anon_sym_template] = ACTIONS(3380), + [anon_sym_operator] = ACTIONS(3380), + [anon_sym_try] = ACTIONS(3380), + [anon_sym_delete] = ACTIONS(3380), + [anon_sym_throw] = ACTIONS(3380), + [anon_sym_namespace] = ACTIONS(3380), + [anon_sym_using] = ACTIONS(3380), + [anon_sym_static_assert] = ACTIONS(3380), + [anon_sym_concept] = ACTIONS(3380), + [anon_sym_co_return] = ACTIONS(3380), + [anon_sym_co_yield] = ACTIONS(3380), + [anon_sym_R_DQUOTE] = ACTIONS(3382), + [anon_sym_LR_DQUOTE] = ACTIONS(3382), + [anon_sym_uR_DQUOTE] = ACTIONS(3382), + [anon_sym_UR_DQUOTE] = ACTIONS(3382), + [anon_sym_u8R_DQUOTE] = ACTIONS(3382), + [anon_sym_co_await] = ACTIONS(3380), + [anon_sym_new] = ACTIONS(3380), + [anon_sym_requires] = ACTIONS(3380), + [sym_this] = ACTIONS(3380), }, [1201] = { - [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_AMP] = ACTIONS(2464), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym_LBRACE] = ACTIONS(2464), - [anon_sym_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_identifier] = ACTIONS(3395), + [aux_sym_preproc_include_token1] = ACTIONS(3395), + [aux_sym_preproc_def_token1] = ACTIONS(3395), + [aux_sym_preproc_if_token1] = ACTIONS(3395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3395), + [sym_preproc_directive] = ACTIONS(3395), + [anon_sym_LPAREN2] = ACTIONS(3397), + [anon_sym_BANG] = ACTIONS(3397), + [anon_sym_TILDE] = ACTIONS(3397), + [anon_sym_DASH] = ACTIONS(3395), + [anon_sym_PLUS] = ACTIONS(3395), + [anon_sym_STAR] = ACTIONS(3397), + [anon_sym_AMP_AMP] = ACTIONS(3397), + [anon_sym_AMP] = ACTIONS(3395), + [anon_sym_SEMI] = ACTIONS(3397), + [anon_sym_typedef] = ACTIONS(3395), + [anon_sym_extern] = ACTIONS(3395), + [anon_sym___attribute__] = ACTIONS(3395), + [anon_sym_COLON_COLON] = ACTIONS(3397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3397), + [anon_sym___declspec] = ACTIONS(3395), + [anon_sym___based] = ACTIONS(3395), + [anon_sym___cdecl] = ACTIONS(3395), + [anon_sym___clrcall] = ACTIONS(3395), + [anon_sym___stdcall] = ACTIONS(3395), + [anon_sym___fastcall] = ACTIONS(3395), + [anon_sym___thiscall] = ACTIONS(3395), + [anon_sym___vectorcall] = ACTIONS(3395), + [anon_sym_LBRACE] = ACTIONS(3397), + [anon_sym_RBRACE] = ACTIONS(3397), + [anon_sym_LBRACK] = ACTIONS(3395), + [anon_sym_static] = ACTIONS(3395), + [anon_sym_register] = ACTIONS(3395), + [anon_sym_inline] = ACTIONS(3395), + [anon_sym_thread_local] = ACTIONS(3395), + [anon_sym_const] = ACTIONS(3395), + [anon_sym_constexpr] = ACTIONS(3395), + [anon_sym_volatile] = ACTIONS(3395), + [anon_sym_restrict] = ACTIONS(3395), + [anon_sym___restrict__] = ACTIONS(3395), + [anon_sym__Atomic] = ACTIONS(3395), + [anon_sym__Noreturn] = ACTIONS(3395), + [anon_sym_noreturn] = ACTIONS(3395), + [anon_sym_mutable] = ACTIONS(3395), + [anon_sym_constinit] = ACTIONS(3395), + [anon_sym_consteval] = ACTIONS(3395), + [anon_sym_signed] = ACTIONS(3395), + [anon_sym_unsigned] = ACTIONS(3395), + [anon_sym_long] = ACTIONS(3395), + [anon_sym_short] = ACTIONS(3395), + [sym_primitive_type] = ACTIONS(3395), + [anon_sym_enum] = ACTIONS(3395), + [anon_sym_class] = ACTIONS(3395), + [anon_sym_struct] = ACTIONS(3395), + [anon_sym_union] = ACTIONS(3395), + [anon_sym_if] = ACTIONS(3395), + [anon_sym_switch] = ACTIONS(3395), + [anon_sym_case] = ACTIONS(3395), + [anon_sym_default] = ACTIONS(3395), + [anon_sym_while] = ACTIONS(3395), + [anon_sym_do] = ACTIONS(3395), + [anon_sym_for] = ACTIONS(3395), + [anon_sym_return] = ACTIONS(3395), + [anon_sym_break] = ACTIONS(3395), + [anon_sym_continue] = ACTIONS(3395), + [anon_sym_goto] = ACTIONS(3395), + [anon_sym_not] = ACTIONS(3395), + [anon_sym_compl] = ACTIONS(3395), + [anon_sym_DASH_DASH] = ACTIONS(3397), + [anon_sym_PLUS_PLUS] = ACTIONS(3397), + [anon_sym_sizeof] = ACTIONS(3395), + [anon_sym_offsetof] = ACTIONS(3395), + [anon_sym__Generic] = ACTIONS(3395), + [anon_sym_asm] = ACTIONS(3395), + [anon_sym___asm__] = ACTIONS(3395), + [sym_number_literal] = ACTIONS(3397), + [anon_sym_L_SQUOTE] = ACTIONS(3397), + [anon_sym_u_SQUOTE] = ACTIONS(3397), + [anon_sym_U_SQUOTE] = ACTIONS(3397), + [anon_sym_u8_SQUOTE] = ACTIONS(3397), + [anon_sym_SQUOTE] = ACTIONS(3397), + [anon_sym_L_DQUOTE] = ACTIONS(3397), + [anon_sym_u_DQUOTE] = ACTIONS(3397), + [anon_sym_U_DQUOTE] = ACTIONS(3397), + [anon_sym_u8_DQUOTE] = ACTIONS(3397), + [anon_sym_DQUOTE] = ACTIONS(3397), + [sym_true] = ACTIONS(3395), + [sym_false] = ACTIONS(3395), + [anon_sym_NULL] = ACTIONS(3395), + [anon_sym_nullptr] = ACTIONS(3395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3395), + [anon_sym_decltype] = ACTIONS(3395), + [anon_sym_virtual] = ACTIONS(3395), + [anon_sym_explicit] = ACTIONS(3395), + [anon_sym_typename] = ACTIONS(3395), + [anon_sym_template] = ACTIONS(3395), + [anon_sym_operator] = ACTIONS(3395), + [anon_sym_try] = ACTIONS(3395), + [anon_sym_delete] = ACTIONS(3395), + [anon_sym_throw] = ACTIONS(3395), + [anon_sym_namespace] = ACTIONS(3395), + [anon_sym_using] = ACTIONS(3395), + [anon_sym_static_assert] = ACTIONS(3395), + [anon_sym_concept] = ACTIONS(3395), + [anon_sym_co_return] = ACTIONS(3395), + [anon_sym_co_yield] = ACTIONS(3395), + [anon_sym_R_DQUOTE] = ACTIONS(3397), + [anon_sym_LR_DQUOTE] = ACTIONS(3397), + [anon_sym_uR_DQUOTE] = ACTIONS(3397), + [anon_sym_UR_DQUOTE] = ACTIONS(3397), + [anon_sym_u8R_DQUOTE] = ACTIONS(3397), + [anon_sym_co_await] = ACTIONS(3395), + [anon_sym_new] = ACTIONS(3395), + [anon_sym_requires] = ACTIONS(3395), + [sym_this] = ACTIONS(3395), }, [1202] = { - [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_AMP] = ACTIONS(2464), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym_LBRACE] = ACTIONS(2464), - [anon_sym_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_identifier] = ACTIONS(3429), + [aux_sym_preproc_include_token1] = ACTIONS(3429), + [aux_sym_preproc_def_token1] = ACTIONS(3429), + [aux_sym_preproc_if_token1] = ACTIONS(3429), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3429), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3429), + [sym_preproc_directive] = ACTIONS(3429), + [anon_sym_LPAREN2] = ACTIONS(3431), + [anon_sym_BANG] = ACTIONS(3431), + [anon_sym_TILDE] = ACTIONS(3431), + [anon_sym_DASH] = ACTIONS(3429), + [anon_sym_PLUS] = ACTIONS(3429), + [anon_sym_STAR] = ACTIONS(3431), + [anon_sym_AMP_AMP] = ACTIONS(3431), + [anon_sym_AMP] = ACTIONS(3429), + [anon_sym_SEMI] = ACTIONS(3431), + [anon_sym_typedef] = ACTIONS(3429), + [anon_sym_extern] = ACTIONS(3429), + [anon_sym___attribute__] = ACTIONS(3429), + [anon_sym_COLON_COLON] = ACTIONS(3431), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3431), + [anon_sym___declspec] = ACTIONS(3429), + [anon_sym___based] = ACTIONS(3429), + [anon_sym___cdecl] = ACTIONS(3429), + [anon_sym___clrcall] = ACTIONS(3429), + [anon_sym___stdcall] = ACTIONS(3429), + [anon_sym___fastcall] = ACTIONS(3429), + [anon_sym___thiscall] = ACTIONS(3429), + [anon_sym___vectorcall] = ACTIONS(3429), + [anon_sym_LBRACE] = ACTIONS(3431), + [anon_sym_RBRACE] = ACTIONS(3431), + [anon_sym_LBRACK] = ACTIONS(3429), + [anon_sym_static] = ACTIONS(3429), + [anon_sym_register] = ACTIONS(3429), + [anon_sym_inline] = ACTIONS(3429), + [anon_sym_thread_local] = ACTIONS(3429), + [anon_sym_const] = ACTIONS(3429), + [anon_sym_constexpr] = ACTIONS(3429), + [anon_sym_volatile] = ACTIONS(3429), + [anon_sym_restrict] = ACTIONS(3429), + [anon_sym___restrict__] = ACTIONS(3429), + [anon_sym__Atomic] = ACTIONS(3429), + [anon_sym__Noreturn] = ACTIONS(3429), + [anon_sym_noreturn] = ACTIONS(3429), + [anon_sym_mutable] = ACTIONS(3429), + [anon_sym_constinit] = ACTIONS(3429), + [anon_sym_consteval] = ACTIONS(3429), + [anon_sym_signed] = ACTIONS(3429), + [anon_sym_unsigned] = ACTIONS(3429), + [anon_sym_long] = ACTIONS(3429), + [anon_sym_short] = ACTIONS(3429), + [sym_primitive_type] = ACTIONS(3429), + [anon_sym_enum] = ACTIONS(3429), + [anon_sym_class] = ACTIONS(3429), + [anon_sym_struct] = ACTIONS(3429), + [anon_sym_union] = ACTIONS(3429), + [anon_sym_if] = ACTIONS(3429), + [anon_sym_switch] = ACTIONS(3429), + [anon_sym_case] = ACTIONS(3429), + [anon_sym_default] = ACTIONS(3429), + [anon_sym_while] = ACTIONS(3429), + [anon_sym_do] = ACTIONS(3429), + [anon_sym_for] = ACTIONS(3429), + [anon_sym_return] = ACTIONS(3429), + [anon_sym_break] = ACTIONS(3429), + [anon_sym_continue] = ACTIONS(3429), + [anon_sym_goto] = ACTIONS(3429), + [anon_sym_not] = ACTIONS(3429), + [anon_sym_compl] = ACTIONS(3429), + [anon_sym_DASH_DASH] = ACTIONS(3431), + [anon_sym_PLUS_PLUS] = ACTIONS(3431), + [anon_sym_sizeof] = ACTIONS(3429), + [anon_sym_offsetof] = ACTIONS(3429), + [anon_sym__Generic] = ACTIONS(3429), + [anon_sym_asm] = ACTIONS(3429), + [anon_sym___asm__] = ACTIONS(3429), + [sym_number_literal] = ACTIONS(3431), + [anon_sym_L_SQUOTE] = ACTIONS(3431), + [anon_sym_u_SQUOTE] = ACTIONS(3431), + [anon_sym_U_SQUOTE] = ACTIONS(3431), + [anon_sym_u8_SQUOTE] = ACTIONS(3431), + [anon_sym_SQUOTE] = ACTIONS(3431), + [anon_sym_L_DQUOTE] = ACTIONS(3431), + [anon_sym_u_DQUOTE] = ACTIONS(3431), + [anon_sym_U_DQUOTE] = ACTIONS(3431), + [anon_sym_u8_DQUOTE] = ACTIONS(3431), + [anon_sym_DQUOTE] = ACTIONS(3431), + [sym_true] = ACTIONS(3429), + [sym_false] = ACTIONS(3429), + [anon_sym_NULL] = ACTIONS(3429), + [anon_sym_nullptr] = ACTIONS(3429), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3429), + [anon_sym_decltype] = ACTIONS(3429), + [anon_sym_virtual] = ACTIONS(3429), + [anon_sym_explicit] = ACTIONS(3429), + [anon_sym_typename] = ACTIONS(3429), + [anon_sym_template] = ACTIONS(3429), + [anon_sym_operator] = ACTIONS(3429), + [anon_sym_try] = ACTIONS(3429), + [anon_sym_delete] = ACTIONS(3429), + [anon_sym_throw] = ACTIONS(3429), + [anon_sym_namespace] = ACTIONS(3429), + [anon_sym_using] = ACTIONS(3429), + [anon_sym_static_assert] = ACTIONS(3429), + [anon_sym_concept] = ACTIONS(3429), + [anon_sym_co_return] = ACTIONS(3429), + [anon_sym_co_yield] = ACTIONS(3429), + [anon_sym_R_DQUOTE] = ACTIONS(3431), + [anon_sym_LR_DQUOTE] = ACTIONS(3431), + [anon_sym_uR_DQUOTE] = ACTIONS(3431), + [anon_sym_UR_DQUOTE] = ACTIONS(3431), + [anon_sym_u8R_DQUOTE] = ACTIONS(3431), + [anon_sym_co_await] = ACTIONS(3429), + [anon_sym_new] = ACTIONS(3429), + [anon_sym_requires] = ACTIONS(3429), + [sym_this] = ACTIONS(3429), }, [1203] = { - [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_AMP] = ACTIONS(2464), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym_LBRACE] = ACTIONS(2464), - [anon_sym_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_identifier] = ACTIONS(3425), + [aux_sym_preproc_include_token1] = ACTIONS(3425), + [aux_sym_preproc_def_token1] = ACTIONS(3425), + [aux_sym_preproc_if_token1] = ACTIONS(3425), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3425), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3425), + [sym_preproc_directive] = ACTIONS(3425), + [anon_sym_LPAREN2] = ACTIONS(3427), + [anon_sym_BANG] = ACTIONS(3427), + [anon_sym_TILDE] = ACTIONS(3427), + [anon_sym_DASH] = ACTIONS(3425), + [anon_sym_PLUS] = ACTIONS(3425), + [anon_sym_STAR] = ACTIONS(3427), + [anon_sym_AMP_AMP] = ACTIONS(3427), + [anon_sym_AMP] = ACTIONS(3425), + [anon_sym_SEMI] = ACTIONS(3427), + [anon_sym_typedef] = ACTIONS(3425), + [anon_sym_extern] = ACTIONS(3425), + [anon_sym___attribute__] = ACTIONS(3425), + [anon_sym_COLON_COLON] = ACTIONS(3427), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3427), + [anon_sym___declspec] = ACTIONS(3425), + [anon_sym___based] = ACTIONS(3425), + [anon_sym___cdecl] = ACTIONS(3425), + [anon_sym___clrcall] = ACTIONS(3425), + [anon_sym___stdcall] = ACTIONS(3425), + [anon_sym___fastcall] = ACTIONS(3425), + [anon_sym___thiscall] = ACTIONS(3425), + [anon_sym___vectorcall] = ACTIONS(3425), + [anon_sym_LBRACE] = ACTIONS(3427), + [anon_sym_RBRACE] = ACTIONS(3427), + [anon_sym_LBRACK] = ACTIONS(3425), + [anon_sym_static] = ACTIONS(3425), + [anon_sym_register] = ACTIONS(3425), + [anon_sym_inline] = ACTIONS(3425), + [anon_sym_thread_local] = ACTIONS(3425), + [anon_sym_const] = ACTIONS(3425), + [anon_sym_constexpr] = ACTIONS(3425), + [anon_sym_volatile] = ACTIONS(3425), + [anon_sym_restrict] = ACTIONS(3425), + [anon_sym___restrict__] = ACTIONS(3425), + [anon_sym__Atomic] = ACTIONS(3425), + [anon_sym__Noreturn] = ACTIONS(3425), + [anon_sym_noreturn] = ACTIONS(3425), + [anon_sym_mutable] = ACTIONS(3425), + [anon_sym_constinit] = ACTIONS(3425), + [anon_sym_consteval] = ACTIONS(3425), + [anon_sym_signed] = ACTIONS(3425), + [anon_sym_unsigned] = ACTIONS(3425), + [anon_sym_long] = ACTIONS(3425), + [anon_sym_short] = ACTIONS(3425), + [sym_primitive_type] = ACTIONS(3425), + [anon_sym_enum] = ACTIONS(3425), + [anon_sym_class] = ACTIONS(3425), + [anon_sym_struct] = ACTIONS(3425), + [anon_sym_union] = ACTIONS(3425), + [anon_sym_if] = ACTIONS(3425), + [anon_sym_switch] = ACTIONS(3425), + [anon_sym_case] = ACTIONS(3425), + [anon_sym_default] = ACTIONS(3425), + [anon_sym_while] = ACTIONS(3425), + [anon_sym_do] = ACTIONS(3425), + [anon_sym_for] = ACTIONS(3425), + [anon_sym_return] = ACTIONS(3425), + [anon_sym_break] = ACTIONS(3425), + [anon_sym_continue] = ACTIONS(3425), + [anon_sym_goto] = ACTIONS(3425), + [anon_sym_not] = ACTIONS(3425), + [anon_sym_compl] = ACTIONS(3425), + [anon_sym_DASH_DASH] = ACTIONS(3427), + [anon_sym_PLUS_PLUS] = ACTIONS(3427), + [anon_sym_sizeof] = ACTIONS(3425), + [anon_sym_offsetof] = ACTIONS(3425), + [anon_sym__Generic] = ACTIONS(3425), + [anon_sym_asm] = ACTIONS(3425), + [anon_sym___asm__] = ACTIONS(3425), + [sym_number_literal] = ACTIONS(3427), + [anon_sym_L_SQUOTE] = ACTIONS(3427), + [anon_sym_u_SQUOTE] = ACTIONS(3427), + [anon_sym_U_SQUOTE] = ACTIONS(3427), + [anon_sym_u8_SQUOTE] = ACTIONS(3427), + [anon_sym_SQUOTE] = ACTIONS(3427), + [anon_sym_L_DQUOTE] = ACTIONS(3427), + [anon_sym_u_DQUOTE] = ACTIONS(3427), + [anon_sym_U_DQUOTE] = ACTIONS(3427), + [anon_sym_u8_DQUOTE] = ACTIONS(3427), + [anon_sym_DQUOTE] = ACTIONS(3427), + [sym_true] = ACTIONS(3425), + [sym_false] = ACTIONS(3425), + [anon_sym_NULL] = ACTIONS(3425), + [anon_sym_nullptr] = ACTIONS(3425), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3425), + [anon_sym_decltype] = ACTIONS(3425), + [anon_sym_virtual] = ACTIONS(3425), + [anon_sym_explicit] = ACTIONS(3425), + [anon_sym_typename] = ACTIONS(3425), + [anon_sym_template] = ACTIONS(3425), + [anon_sym_operator] = ACTIONS(3425), + [anon_sym_try] = ACTIONS(3425), + [anon_sym_delete] = ACTIONS(3425), + [anon_sym_throw] = ACTIONS(3425), + [anon_sym_namespace] = ACTIONS(3425), + [anon_sym_using] = ACTIONS(3425), + [anon_sym_static_assert] = ACTIONS(3425), + [anon_sym_concept] = ACTIONS(3425), + [anon_sym_co_return] = ACTIONS(3425), + [anon_sym_co_yield] = ACTIONS(3425), + [anon_sym_R_DQUOTE] = ACTIONS(3427), + [anon_sym_LR_DQUOTE] = ACTIONS(3427), + [anon_sym_uR_DQUOTE] = ACTIONS(3427), + [anon_sym_UR_DQUOTE] = ACTIONS(3427), + [anon_sym_u8R_DQUOTE] = ACTIONS(3427), + [anon_sym_co_await] = ACTIONS(3425), + [anon_sym_new] = ACTIONS(3425), + [anon_sym_requires] = ACTIONS(3425), + [sym_this] = ACTIONS(3425), }, [1204] = { - [sym__expression] = STATE(3589), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_initializer_list] = STATE(5896), - [sym_initializer_pair] = STATE(5896), - [sym_subscript_designator] = STATE(5115), - [sym_field_designator] = STATE(5115), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_initializer_pair_repeat1] = STATE(5115), - [sym_identifier] = ACTIONS(2954), - [anon_sym_LPAREN2] = ACTIONS(984), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1489), - [anon_sym_RBRACE] = ACTIONS(3386), - [anon_sym_LBRACK] = ACTIONS(3358), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym_DOT] = ACTIONS(197), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [sym_identifier] = ACTIONS(3415), + [aux_sym_preproc_include_token1] = ACTIONS(3415), + [aux_sym_preproc_def_token1] = ACTIONS(3415), + [aux_sym_preproc_if_token1] = ACTIONS(3415), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3415), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3415), + [sym_preproc_directive] = ACTIONS(3415), + [anon_sym_LPAREN2] = ACTIONS(3417), + [anon_sym_BANG] = ACTIONS(3417), + [anon_sym_TILDE] = ACTIONS(3417), + [anon_sym_DASH] = ACTIONS(3415), + [anon_sym_PLUS] = ACTIONS(3415), + [anon_sym_STAR] = ACTIONS(3417), + [anon_sym_AMP_AMP] = ACTIONS(3417), + [anon_sym_AMP] = ACTIONS(3415), + [anon_sym_SEMI] = ACTIONS(3417), + [anon_sym_typedef] = ACTIONS(3415), + [anon_sym_extern] = ACTIONS(3415), + [anon_sym___attribute__] = ACTIONS(3415), + [anon_sym_COLON_COLON] = ACTIONS(3417), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3417), + [anon_sym___declspec] = ACTIONS(3415), + [anon_sym___based] = ACTIONS(3415), + [anon_sym___cdecl] = ACTIONS(3415), + [anon_sym___clrcall] = ACTIONS(3415), + [anon_sym___stdcall] = ACTIONS(3415), + [anon_sym___fastcall] = ACTIONS(3415), + [anon_sym___thiscall] = ACTIONS(3415), + [anon_sym___vectorcall] = ACTIONS(3415), + [anon_sym_LBRACE] = ACTIONS(3417), + [anon_sym_RBRACE] = ACTIONS(3417), + [anon_sym_LBRACK] = ACTIONS(3415), + [anon_sym_static] = ACTIONS(3415), + [anon_sym_register] = ACTIONS(3415), + [anon_sym_inline] = ACTIONS(3415), + [anon_sym_thread_local] = ACTIONS(3415), + [anon_sym_const] = ACTIONS(3415), + [anon_sym_constexpr] = ACTIONS(3415), + [anon_sym_volatile] = ACTIONS(3415), + [anon_sym_restrict] = ACTIONS(3415), + [anon_sym___restrict__] = ACTIONS(3415), + [anon_sym__Atomic] = ACTIONS(3415), + [anon_sym__Noreturn] = ACTIONS(3415), + [anon_sym_noreturn] = ACTIONS(3415), + [anon_sym_mutable] = ACTIONS(3415), + [anon_sym_constinit] = ACTIONS(3415), + [anon_sym_consteval] = ACTIONS(3415), + [anon_sym_signed] = ACTIONS(3415), + [anon_sym_unsigned] = ACTIONS(3415), + [anon_sym_long] = ACTIONS(3415), + [anon_sym_short] = ACTIONS(3415), + [sym_primitive_type] = ACTIONS(3415), + [anon_sym_enum] = ACTIONS(3415), + [anon_sym_class] = ACTIONS(3415), + [anon_sym_struct] = ACTIONS(3415), + [anon_sym_union] = ACTIONS(3415), + [anon_sym_if] = ACTIONS(3415), + [anon_sym_switch] = ACTIONS(3415), + [anon_sym_case] = ACTIONS(3415), + [anon_sym_default] = ACTIONS(3415), + [anon_sym_while] = ACTIONS(3415), + [anon_sym_do] = ACTIONS(3415), + [anon_sym_for] = ACTIONS(3415), + [anon_sym_return] = ACTIONS(3415), + [anon_sym_break] = ACTIONS(3415), + [anon_sym_continue] = ACTIONS(3415), + [anon_sym_goto] = ACTIONS(3415), + [anon_sym_not] = ACTIONS(3415), + [anon_sym_compl] = ACTIONS(3415), + [anon_sym_DASH_DASH] = ACTIONS(3417), + [anon_sym_PLUS_PLUS] = ACTIONS(3417), + [anon_sym_sizeof] = ACTIONS(3415), + [anon_sym_offsetof] = ACTIONS(3415), + [anon_sym__Generic] = ACTIONS(3415), + [anon_sym_asm] = ACTIONS(3415), + [anon_sym___asm__] = ACTIONS(3415), + [sym_number_literal] = ACTIONS(3417), + [anon_sym_L_SQUOTE] = ACTIONS(3417), + [anon_sym_u_SQUOTE] = ACTIONS(3417), + [anon_sym_U_SQUOTE] = ACTIONS(3417), + [anon_sym_u8_SQUOTE] = ACTIONS(3417), + [anon_sym_SQUOTE] = ACTIONS(3417), + [anon_sym_L_DQUOTE] = ACTIONS(3417), + [anon_sym_u_DQUOTE] = ACTIONS(3417), + [anon_sym_U_DQUOTE] = ACTIONS(3417), + [anon_sym_u8_DQUOTE] = ACTIONS(3417), + [anon_sym_DQUOTE] = ACTIONS(3417), + [sym_true] = ACTIONS(3415), + [sym_false] = ACTIONS(3415), + [anon_sym_NULL] = ACTIONS(3415), + [anon_sym_nullptr] = ACTIONS(3415), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3415), + [anon_sym_decltype] = ACTIONS(3415), + [anon_sym_virtual] = ACTIONS(3415), + [anon_sym_explicit] = ACTIONS(3415), + [anon_sym_typename] = ACTIONS(3415), + [anon_sym_template] = ACTIONS(3415), + [anon_sym_operator] = ACTIONS(3415), + [anon_sym_try] = ACTIONS(3415), + [anon_sym_delete] = ACTIONS(3415), + [anon_sym_throw] = ACTIONS(3415), + [anon_sym_namespace] = ACTIONS(3415), + [anon_sym_using] = ACTIONS(3415), + [anon_sym_static_assert] = ACTIONS(3415), + [anon_sym_concept] = ACTIONS(3415), + [anon_sym_co_return] = ACTIONS(3415), + [anon_sym_co_yield] = ACTIONS(3415), + [anon_sym_R_DQUOTE] = ACTIONS(3417), + [anon_sym_LR_DQUOTE] = ACTIONS(3417), + [anon_sym_uR_DQUOTE] = ACTIONS(3417), + [anon_sym_UR_DQUOTE] = ACTIONS(3417), + [anon_sym_u8R_DQUOTE] = ACTIONS(3417), + [anon_sym_co_await] = ACTIONS(3415), + [anon_sym_new] = ACTIONS(3415), + [anon_sym_requires] = ACTIONS(3415), + [sym_this] = ACTIONS(3415), }, [1205] = { - [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_AMP] = ACTIONS(2464), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym_LBRACE] = ACTIONS(2464), - [anon_sym_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_identifier] = ACTIONS(3332), + [aux_sym_preproc_include_token1] = ACTIONS(3332), + [aux_sym_preproc_def_token1] = ACTIONS(3332), + [aux_sym_preproc_if_token1] = ACTIONS(3332), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3332), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3332), + [sym_preproc_directive] = ACTIONS(3332), + [anon_sym_LPAREN2] = ACTIONS(3334), + [anon_sym_BANG] = ACTIONS(3334), + [anon_sym_TILDE] = ACTIONS(3334), + [anon_sym_DASH] = ACTIONS(3332), + [anon_sym_PLUS] = ACTIONS(3332), + [anon_sym_STAR] = ACTIONS(3334), + [anon_sym_AMP_AMP] = ACTIONS(3334), + [anon_sym_AMP] = ACTIONS(3332), + [anon_sym_SEMI] = ACTIONS(3334), + [anon_sym_typedef] = ACTIONS(3332), + [anon_sym_extern] = ACTIONS(3332), + [anon_sym___attribute__] = ACTIONS(3332), + [anon_sym_COLON_COLON] = ACTIONS(3334), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3334), + [anon_sym___declspec] = ACTIONS(3332), + [anon_sym___based] = ACTIONS(3332), + [anon_sym___cdecl] = ACTIONS(3332), + [anon_sym___clrcall] = ACTIONS(3332), + [anon_sym___stdcall] = ACTIONS(3332), + [anon_sym___fastcall] = ACTIONS(3332), + [anon_sym___thiscall] = ACTIONS(3332), + [anon_sym___vectorcall] = ACTIONS(3332), + [anon_sym_LBRACE] = ACTIONS(3334), + [anon_sym_RBRACE] = ACTIONS(3334), + [anon_sym_LBRACK] = ACTIONS(3332), + [anon_sym_static] = ACTIONS(3332), + [anon_sym_register] = ACTIONS(3332), + [anon_sym_inline] = ACTIONS(3332), + [anon_sym_thread_local] = ACTIONS(3332), + [anon_sym_const] = ACTIONS(3332), + [anon_sym_constexpr] = ACTIONS(3332), + [anon_sym_volatile] = ACTIONS(3332), + [anon_sym_restrict] = ACTIONS(3332), + [anon_sym___restrict__] = ACTIONS(3332), + [anon_sym__Atomic] = ACTIONS(3332), + [anon_sym__Noreturn] = ACTIONS(3332), + [anon_sym_noreturn] = ACTIONS(3332), + [anon_sym_mutable] = ACTIONS(3332), + [anon_sym_constinit] = ACTIONS(3332), + [anon_sym_consteval] = ACTIONS(3332), + [anon_sym_signed] = ACTIONS(3332), + [anon_sym_unsigned] = ACTIONS(3332), + [anon_sym_long] = ACTIONS(3332), + [anon_sym_short] = ACTIONS(3332), + [sym_primitive_type] = ACTIONS(3332), + [anon_sym_enum] = ACTIONS(3332), + [anon_sym_class] = ACTIONS(3332), + [anon_sym_struct] = ACTIONS(3332), + [anon_sym_union] = ACTIONS(3332), + [anon_sym_if] = ACTIONS(3332), + [anon_sym_switch] = ACTIONS(3332), + [anon_sym_case] = ACTIONS(3332), + [anon_sym_default] = ACTIONS(3332), + [anon_sym_while] = ACTIONS(3332), + [anon_sym_do] = ACTIONS(3332), + [anon_sym_for] = ACTIONS(3332), + [anon_sym_return] = ACTIONS(3332), + [anon_sym_break] = ACTIONS(3332), + [anon_sym_continue] = ACTIONS(3332), + [anon_sym_goto] = ACTIONS(3332), + [anon_sym_not] = ACTIONS(3332), + [anon_sym_compl] = ACTIONS(3332), + [anon_sym_DASH_DASH] = ACTIONS(3334), + [anon_sym_PLUS_PLUS] = ACTIONS(3334), + [anon_sym_sizeof] = ACTIONS(3332), + [anon_sym_offsetof] = ACTIONS(3332), + [anon_sym__Generic] = ACTIONS(3332), + [anon_sym_asm] = ACTIONS(3332), + [anon_sym___asm__] = ACTIONS(3332), + [sym_number_literal] = ACTIONS(3334), + [anon_sym_L_SQUOTE] = ACTIONS(3334), + [anon_sym_u_SQUOTE] = ACTIONS(3334), + [anon_sym_U_SQUOTE] = ACTIONS(3334), + [anon_sym_u8_SQUOTE] = ACTIONS(3334), + [anon_sym_SQUOTE] = ACTIONS(3334), + [anon_sym_L_DQUOTE] = ACTIONS(3334), + [anon_sym_u_DQUOTE] = ACTIONS(3334), + [anon_sym_U_DQUOTE] = ACTIONS(3334), + [anon_sym_u8_DQUOTE] = ACTIONS(3334), + [anon_sym_DQUOTE] = ACTIONS(3334), + [sym_true] = ACTIONS(3332), + [sym_false] = ACTIONS(3332), + [anon_sym_NULL] = ACTIONS(3332), + [anon_sym_nullptr] = ACTIONS(3332), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3332), + [anon_sym_decltype] = ACTIONS(3332), + [anon_sym_virtual] = ACTIONS(3332), + [anon_sym_explicit] = ACTIONS(3332), + [anon_sym_typename] = ACTIONS(3332), + [anon_sym_template] = ACTIONS(3332), + [anon_sym_operator] = ACTIONS(3332), + [anon_sym_try] = ACTIONS(3332), + [anon_sym_delete] = ACTIONS(3332), + [anon_sym_throw] = ACTIONS(3332), + [anon_sym_namespace] = ACTIONS(3332), + [anon_sym_using] = ACTIONS(3332), + [anon_sym_static_assert] = ACTIONS(3332), + [anon_sym_concept] = ACTIONS(3332), + [anon_sym_co_return] = ACTIONS(3332), + [anon_sym_co_yield] = ACTIONS(3332), + [anon_sym_R_DQUOTE] = ACTIONS(3334), + [anon_sym_LR_DQUOTE] = ACTIONS(3334), + [anon_sym_uR_DQUOTE] = ACTIONS(3334), + [anon_sym_UR_DQUOTE] = ACTIONS(3334), + [anon_sym_u8R_DQUOTE] = ACTIONS(3334), + [anon_sym_co_await] = ACTIONS(3332), + [anon_sym_new] = ACTIONS(3332), + [anon_sym_requires] = ACTIONS(3332), + [sym_this] = ACTIONS(3332), }, [1206] = { - [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_AMP] = ACTIONS(2464), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym_LBRACE] = ACTIONS(2464), - [anon_sym_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_identifier] = ACTIONS(3121), + [aux_sym_preproc_include_token1] = ACTIONS(3121), + [aux_sym_preproc_def_token1] = ACTIONS(3121), + [aux_sym_preproc_if_token1] = ACTIONS(3121), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3121), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3121), + [sym_preproc_directive] = ACTIONS(3121), + [anon_sym_LPAREN2] = ACTIONS(3123), + [anon_sym_BANG] = ACTIONS(3123), + [anon_sym_TILDE] = ACTIONS(3123), + [anon_sym_DASH] = ACTIONS(3121), + [anon_sym_PLUS] = ACTIONS(3121), + [anon_sym_STAR] = ACTIONS(3123), + [anon_sym_AMP_AMP] = ACTIONS(3123), + [anon_sym_AMP] = ACTIONS(3121), + [anon_sym_SEMI] = ACTIONS(3123), + [anon_sym_typedef] = ACTIONS(3121), + [anon_sym_extern] = ACTIONS(3121), + [anon_sym___attribute__] = ACTIONS(3121), + [anon_sym_COLON_COLON] = ACTIONS(3123), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3123), + [anon_sym___declspec] = ACTIONS(3121), + [anon_sym___based] = ACTIONS(3121), + [anon_sym___cdecl] = ACTIONS(3121), + [anon_sym___clrcall] = ACTIONS(3121), + [anon_sym___stdcall] = ACTIONS(3121), + [anon_sym___fastcall] = ACTIONS(3121), + [anon_sym___thiscall] = ACTIONS(3121), + [anon_sym___vectorcall] = ACTIONS(3121), + [anon_sym_LBRACE] = ACTIONS(3123), + [anon_sym_RBRACE] = ACTIONS(3123), + [anon_sym_LBRACK] = ACTIONS(3121), + [anon_sym_static] = ACTIONS(3121), + [anon_sym_register] = ACTIONS(3121), + [anon_sym_inline] = ACTIONS(3121), + [anon_sym_thread_local] = ACTIONS(3121), + [anon_sym_const] = ACTIONS(3121), + [anon_sym_constexpr] = ACTIONS(3121), + [anon_sym_volatile] = ACTIONS(3121), + [anon_sym_restrict] = ACTIONS(3121), + [anon_sym___restrict__] = ACTIONS(3121), + [anon_sym__Atomic] = ACTIONS(3121), + [anon_sym__Noreturn] = ACTIONS(3121), + [anon_sym_noreturn] = ACTIONS(3121), + [anon_sym_mutable] = ACTIONS(3121), + [anon_sym_constinit] = ACTIONS(3121), + [anon_sym_consteval] = ACTIONS(3121), + [anon_sym_signed] = ACTIONS(3121), + [anon_sym_unsigned] = ACTIONS(3121), + [anon_sym_long] = ACTIONS(3121), + [anon_sym_short] = ACTIONS(3121), + [sym_primitive_type] = ACTIONS(3121), + [anon_sym_enum] = ACTIONS(3121), + [anon_sym_class] = ACTIONS(3121), + [anon_sym_struct] = ACTIONS(3121), + [anon_sym_union] = ACTIONS(3121), + [anon_sym_if] = ACTIONS(3121), + [anon_sym_switch] = ACTIONS(3121), + [anon_sym_case] = ACTIONS(3121), + [anon_sym_default] = ACTIONS(3121), + [anon_sym_while] = ACTIONS(3121), + [anon_sym_do] = ACTIONS(3121), + [anon_sym_for] = ACTIONS(3121), + [anon_sym_return] = ACTIONS(3121), + [anon_sym_break] = ACTIONS(3121), + [anon_sym_continue] = ACTIONS(3121), + [anon_sym_goto] = ACTIONS(3121), + [anon_sym_not] = ACTIONS(3121), + [anon_sym_compl] = ACTIONS(3121), + [anon_sym_DASH_DASH] = ACTIONS(3123), + [anon_sym_PLUS_PLUS] = ACTIONS(3123), + [anon_sym_sizeof] = ACTIONS(3121), + [anon_sym_offsetof] = ACTIONS(3121), + [anon_sym__Generic] = ACTIONS(3121), + [anon_sym_asm] = ACTIONS(3121), + [anon_sym___asm__] = ACTIONS(3121), + [sym_number_literal] = ACTIONS(3123), + [anon_sym_L_SQUOTE] = ACTIONS(3123), + [anon_sym_u_SQUOTE] = ACTIONS(3123), + [anon_sym_U_SQUOTE] = ACTIONS(3123), + [anon_sym_u8_SQUOTE] = ACTIONS(3123), + [anon_sym_SQUOTE] = ACTIONS(3123), + [anon_sym_L_DQUOTE] = ACTIONS(3123), + [anon_sym_u_DQUOTE] = ACTIONS(3123), + [anon_sym_U_DQUOTE] = ACTIONS(3123), + [anon_sym_u8_DQUOTE] = ACTIONS(3123), + [anon_sym_DQUOTE] = ACTIONS(3123), + [sym_true] = ACTIONS(3121), + [sym_false] = ACTIONS(3121), + [anon_sym_NULL] = ACTIONS(3121), + [anon_sym_nullptr] = ACTIONS(3121), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3121), + [anon_sym_decltype] = ACTIONS(3121), + [anon_sym_virtual] = ACTIONS(3121), + [anon_sym_explicit] = ACTIONS(3121), + [anon_sym_typename] = ACTIONS(3121), + [anon_sym_template] = ACTIONS(3121), + [anon_sym_operator] = ACTIONS(3121), + [anon_sym_try] = ACTIONS(3121), + [anon_sym_delete] = ACTIONS(3121), + [anon_sym_throw] = ACTIONS(3121), + [anon_sym_namespace] = ACTIONS(3121), + [anon_sym_using] = ACTIONS(3121), + [anon_sym_static_assert] = ACTIONS(3121), + [anon_sym_concept] = ACTIONS(3121), + [anon_sym_co_return] = ACTIONS(3121), + [anon_sym_co_yield] = ACTIONS(3121), + [anon_sym_R_DQUOTE] = ACTIONS(3123), + [anon_sym_LR_DQUOTE] = ACTIONS(3123), + [anon_sym_uR_DQUOTE] = ACTIONS(3123), + [anon_sym_UR_DQUOTE] = ACTIONS(3123), + [anon_sym_u8R_DQUOTE] = ACTIONS(3123), + [anon_sym_co_await] = ACTIONS(3121), + [anon_sym_new] = ACTIONS(3121), + [anon_sym_requires] = ACTIONS(3121), + [sym_this] = ACTIONS(3121), }, [1207] = { - [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_AMP] = ACTIONS(2464), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym_LBRACE] = ACTIONS(2464), - [anon_sym_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_identifier] = ACTIONS(3451), + [aux_sym_preproc_include_token1] = ACTIONS(3451), + [aux_sym_preproc_def_token1] = ACTIONS(3451), + [aux_sym_preproc_if_token1] = ACTIONS(3451), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3451), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3451), + [sym_preproc_directive] = ACTIONS(3451), + [anon_sym_LPAREN2] = ACTIONS(3453), + [anon_sym_BANG] = ACTIONS(3453), + [anon_sym_TILDE] = ACTIONS(3453), + [anon_sym_DASH] = ACTIONS(3451), + [anon_sym_PLUS] = ACTIONS(3451), + [anon_sym_STAR] = ACTIONS(3453), + [anon_sym_AMP_AMP] = ACTIONS(3453), + [anon_sym_AMP] = ACTIONS(3451), + [anon_sym_SEMI] = ACTIONS(3453), + [anon_sym_typedef] = ACTIONS(3451), + [anon_sym_extern] = ACTIONS(3451), + [anon_sym___attribute__] = ACTIONS(3451), + [anon_sym_COLON_COLON] = ACTIONS(3453), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3453), + [anon_sym___declspec] = ACTIONS(3451), + [anon_sym___based] = ACTIONS(3451), + [anon_sym___cdecl] = ACTIONS(3451), + [anon_sym___clrcall] = ACTIONS(3451), + [anon_sym___stdcall] = ACTIONS(3451), + [anon_sym___fastcall] = ACTIONS(3451), + [anon_sym___thiscall] = ACTIONS(3451), + [anon_sym___vectorcall] = ACTIONS(3451), + [anon_sym_LBRACE] = ACTIONS(3453), + [anon_sym_RBRACE] = ACTIONS(3453), + [anon_sym_LBRACK] = ACTIONS(3451), + [anon_sym_static] = ACTIONS(3451), + [anon_sym_register] = ACTIONS(3451), + [anon_sym_inline] = ACTIONS(3451), + [anon_sym_thread_local] = ACTIONS(3451), + [anon_sym_const] = ACTIONS(3451), + [anon_sym_constexpr] = ACTIONS(3451), + [anon_sym_volatile] = ACTIONS(3451), + [anon_sym_restrict] = ACTIONS(3451), + [anon_sym___restrict__] = ACTIONS(3451), + [anon_sym__Atomic] = ACTIONS(3451), + [anon_sym__Noreturn] = ACTIONS(3451), + [anon_sym_noreturn] = ACTIONS(3451), + [anon_sym_mutable] = ACTIONS(3451), + [anon_sym_constinit] = ACTIONS(3451), + [anon_sym_consteval] = ACTIONS(3451), + [anon_sym_signed] = ACTIONS(3451), + [anon_sym_unsigned] = ACTIONS(3451), + [anon_sym_long] = ACTIONS(3451), + [anon_sym_short] = ACTIONS(3451), + [sym_primitive_type] = ACTIONS(3451), + [anon_sym_enum] = ACTIONS(3451), + [anon_sym_class] = ACTIONS(3451), + [anon_sym_struct] = ACTIONS(3451), + [anon_sym_union] = ACTIONS(3451), + [anon_sym_if] = ACTIONS(3451), + [anon_sym_switch] = ACTIONS(3451), + [anon_sym_case] = ACTIONS(3451), + [anon_sym_default] = ACTIONS(3451), + [anon_sym_while] = ACTIONS(3451), + [anon_sym_do] = ACTIONS(3451), + [anon_sym_for] = ACTIONS(3451), + [anon_sym_return] = ACTIONS(3451), + [anon_sym_break] = ACTIONS(3451), + [anon_sym_continue] = ACTIONS(3451), + [anon_sym_goto] = ACTIONS(3451), + [anon_sym_not] = ACTIONS(3451), + [anon_sym_compl] = ACTIONS(3451), + [anon_sym_DASH_DASH] = ACTIONS(3453), + [anon_sym_PLUS_PLUS] = ACTIONS(3453), + [anon_sym_sizeof] = ACTIONS(3451), + [anon_sym_offsetof] = ACTIONS(3451), + [anon_sym__Generic] = ACTIONS(3451), + [anon_sym_asm] = ACTIONS(3451), + [anon_sym___asm__] = ACTIONS(3451), + [sym_number_literal] = ACTIONS(3453), + [anon_sym_L_SQUOTE] = ACTIONS(3453), + [anon_sym_u_SQUOTE] = ACTIONS(3453), + [anon_sym_U_SQUOTE] = ACTIONS(3453), + [anon_sym_u8_SQUOTE] = ACTIONS(3453), + [anon_sym_SQUOTE] = ACTIONS(3453), + [anon_sym_L_DQUOTE] = ACTIONS(3453), + [anon_sym_u_DQUOTE] = ACTIONS(3453), + [anon_sym_U_DQUOTE] = ACTIONS(3453), + [anon_sym_u8_DQUOTE] = ACTIONS(3453), + [anon_sym_DQUOTE] = ACTIONS(3453), + [sym_true] = ACTIONS(3451), + [sym_false] = ACTIONS(3451), + [anon_sym_NULL] = ACTIONS(3451), + [anon_sym_nullptr] = ACTIONS(3451), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3451), + [anon_sym_decltype] = ACTIONS(3451), + [anon_sym_virtual] = ACTIONS(3451), + [anon_sym_explicit] = ACTIONS(3451), + [anon_sym_typename] = ACTIONS(3451), + [anon_sym_template] = ACTIONS(3451), + [anon_sym_operator] = ACTIONS(3451), + [anon_sym_try] = ACTIONS(3451), + [anon_sym_delete] = ACTIONS(3451), + [anon_sym_throw] = ACTIONS(3451), + [anon_sym_namespace] = ACTIONS(3451), + [anon_sym_using] = ACTIONS(3451), + [anon_sym_static_assert] = ACTIONS(3451), + [anon_sym_concept] = ACTIONS(3451), + [anon_sym_co_return] = ACTIONS(3451), + [anon_sym_co_yield] = ACTIONS(3451), + [anon_sym_R_DQUOTE] = ACTIONS(3453), + [anon_sym_LR_DQUOTE] = ACTIONS(3453), + [anon_sym_uR_DQUOTE] = ACTIONS(3453), + [anon_sym_UR_DQUOTE] = ACTIONS(3453), + [anon_sym_u8R_DQUOTE] = ACTIONS(3453), + [anon_sym_co_await] = ACTIONS(3451), + [anon_sym_new] = ACTIONS(3451), + [anon_sym_requires] = ACTIONS(3451), + [sym_this] = ACTIONS(3451), }, [1208] = { - [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_AMP] = ACTIONS(2464), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym_LBRACE] = ACTIONS(2464), - [anon_sym_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_identifier] = ACTIONS(3439), + [aux_sym_preproc_include_token1] = ACTIONS(3439), + [aux_sym_preproc_def_token1] = ACTIONS(3439), + [aux_sym_preproc_if_token1] = ACTIONS(3439), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3439), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3439), + [sym_preproc_directive] = ACTIONS(3439), + [anon_sym_LPAREN2] = ACTIONS(3441), + [anon_sym_BANG] = ACTIONS(3441), + [anon_sym_TILDE] = ACTIONS(3441), + [anon_sym_DASH] = ACTIONS(3439), + [anon_sym_PLUS] = ACTIONS(3439), + [anon_sym_STAR] = ACTIONS(3441), + [anon_sym_AMP_AMP] = ACTIONS(3441), + [anon_sym_AMP] = ACTIONS(3439), + [anon_sym_SEMI] = ACTIONS(3441), + [anon_sym_typedef] = ACTIONS(3439), + [anon_sym_extern] = ACTIONS(3439), + [anon_sym___attribute__] = ACTIONS(3439), + [anon_sym_COLON_COLON] = ACTIONS(3441), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3441), + [anon_sym___declspec] = ACTIONS(3439), + [anon_sym___based] = ACTIONS(3439), + [anon_sym___cdecl] = ACTIONS(3439), + [anon_sym___clrcall] = ACTIONS(3439), + [anon_sym___stdcall] = ACTIONS(3439), + [anon_sym___fastcall] = ACTIONS(3439), + [anon_sym___thiscall] = ACTIONS(3439), + [anon_sym___vectorcall] = ACTIONS(3439), + [anon_sym_LBRACE] = ACTIONS(3441), + [anon_sym_RBRACE] = ACTIONS(3441), + [anon_sym_LBRACK] = ACTIONS(3439), + [anon_sym_static] = ACTIONS(3439), + [anon_sym_register] = ACTIONS(3439), + [anon_sym_inline] = ACTIONS(3439), + [anon_sym_thread_local] = ACTIONS(3439), + [anon_sym_const] = ACTIONS(3439), + [anon_sym_constexpr] = ACTIONS(3439), + [anon_sym_volatile] = ACTIONS(3439), + [anon_sym_restrict] = ACTIONS(3439), + [anon_sym___restrict__] = ACTIONS(3439), + [anon_sym__Atomic] = ACTIONS(3439), + [anon_sym__Noreturn] = ACTIONS(3439), + [anon_sym_noreturn] = ACTIONS(3439), + [anon_sym_mutable] = ACTIONS(3439), + [anon_sym_constinit] = ACTIONS(3439), + [anon_sym_consteval] = ACTIONS(3439), + [anon_sym_signed] = ACTIONS(3439), + [anon_sym_unsigned] = ACTIONS(3439), + [anon_sym_long] = ACTIONS(3439), + [anon_sym_short] = ACTIONS(3439), + [sym_primitive_type] = ACTIONS(3439), + [anon_sym_enum] = ACTIONS(3439), + [anon_sym_class] = ACTIONS(3439), + [anon_sym_struct] = ACTIONS(3439), + [anon_sym_union] = ACTIONS(3439), + [anon_sym_if] = ACTIONS(3439), + [anon_sym_switch] = ACTIONS(3439), + [anon_sym_case] = ACTIONS(3439), + [anon_sym_default] = ACTIONS(3439), + [anon_sym_while] = ACTIONS(3439), + [anon_sym_do] = ACTIONS(3439), + [anon_sym_for] = ACTIONS(3439), + [anon_sym_return] = ACTIONS(3439), + [anon_sym_break] = ACTIONS(3439), + [anon_sym_continue] = ACTIONS(3439), + [anon_sym_goto] = ACTIONS(3439), + [anon_sym_not] = ACTIONS(3439), + [anon_sym_compl] = ACTIONS(3439), + [anon_sym_DASH_DASH] = ACTIONS(3441), + [anon_sym_PLUS_PLUS] = ACTIONS(3441), + [anon_sym_sizeof] = ACTIONS(3439), + [anon_sym_offsetof] = ACTIONS(3439), + [anon_sym__Generic] = ACTIONS(3439), + [anon_sym_asm] = ACTIONS(3439), + [anon_sym___asm__] = ACTIONS(3439), + [sym_number_literal] = ACTIONS(3441), + [anon_sym_L_SQUOTE] = ACTIONS(3441), + [anon_sym_u_SQUOTE] = ACTIONS(3441), + [anon_sym_U_SQUOTE] = ACTIONS(3441), + [anon_sym_u8_SQUOTE] = ACTIONS(3441), + [anon_sym_SQUOTE] = ACTIONS(3441), + [anon_sym_L_DQUOTE] = ACTIONS(3441), + [anon_sym_u_DQUOTE] = ACTIONS(3441), + [anon_sym_U_DQUOTE] = ACTIONS(3441), + [anon_sym_u8_DQUOTE] = ACTIONS(3441), + [anon_sym_DQUOTE] = ACTIONS(3441), + [sym_true] = ACTIONS(3439), + [sym_false] = ACTIONS(3439), + [anon_sym_NULL] = ACTIONS(3439), + [anon_sym_nullptr] = ACTIONS(3439), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3439), + [anon_sym_decltype] = ACTIONS(3439), + [anon_sym_virtual] = ACTIONS(3439), + [anon_sym_explicit] = ACTIONS(3439), + [anon_sym_typename] = ACTIONS(3439), + [anon_sym_template] = ACTIONS(3439), + [anon_sym_operator] = ACTIONS(3439), + [anon_sym_try] = ACTIONS(3439), + [anon_sym_delete] = ACTIONS(3439), + [anon_sym_throw] = ACTIONS(3439), + [anon_sym_namespace] = ACTIONS(3439), + [anon_sym_using] = ACTIONS(3439), + [anon_sym_static_assert] = ACTIONS(3439), + [anon_sym_concept] = ACTIONS(3439), + [anon_sym_co_return] = ACTIONS(3439), + [anon_sym_co_yield] = ACTIONS(3439), + [anon_sym_R_DQUOTE] = ACTIONS(3441), + [anon_sym_LR_DQUOTE] = ACTIONS(3441), + [anon_sym_uR_DQUOTE] = ACTIONS(3441), + [anon_sym_UR_DQUOTE] = ACTIONS(3441), + [anon_sym_u8R_DQUOTE] = ACTIONS(3441), + [anon_sym_co_await] = ACTIONS(3439), + [anon_sym_new] = ACTIONS(3439), + [anon_sym_requires] = ACTIONS(3439), + [sym_this] = ACTIONS(3439), }, [1209] = { - [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_AMP] = ACTIONS(2464), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym_LBRACE] = ACTIONS(2464), - [anon_sym_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_identifier] = ACTIONS(3156), + [aux_sym_preproc_include_token1] = ACTIONS(3156), + [aux_sym_preproc_def_token1] = ACTIONS(3156), + [aux_sym_preproc_if_token1] = ACTIONS(3156), + [aux_sym_preproc_if_token2] = ACTIONS(3156), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3156), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3156), + [sym_preproc_directive] = ACTIONS(3156), + [anon_sym_LPAREN2] = ACTIONS(3158), + [anon_sym_BANG] = ACTIONS(3158), + [anon_sym_TILDE] = ACTIONS(3158), + [anon_sym_DASH] = ACTIONS(3156), + [anon_sym_PLUS] = ACTIONS(3156), + [anon_sym_STAR] = ACTIONS(3158), + [anon_sym_AMP_AMP] = ACTIONS(3158), + [anon_sym_AMP] = ACTIONS(3156), + [anon_sym_SEMI] = ACTIONS(3158), + [anon_sym_typedef] = ACTIONS(3156), + [anon_sym_extern] = ACTIONS(3156), + [anon_sym___attribute__] = ACTIONS(3156), + [anon_sym_COLON_COLON] = ACTIONS(3158), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3158), + [anon_sym___declspec] = ACTIONS(3156), + [anon_sym___based] = ACTIONS(3156), + [anon_sym___cdecl] = ACTIONS(3156), + [anon_sym___clrcall] = ACTIONS(3156), + [anon_sym___stdcall] = ACTIONS(3156), + [anon_sym___fastcall] = ACTIONS(3156), + [anon_sym___thiscall] = ACTIONS(3156), + [anon_sym___vectorcall] = ACTIONS(3156), + [anon_sym_LBRACE] = ACTIONS(3158), + [anon_sym_LBRACK] = ACTIONS(3156), + [anon_sym_static] = ACTIONS(3156), + [anon_sym_register] = ACTIONS(3156), + [anon_sym_inline] = ACTIONS(3156), + [anon_sym_thread_local] = ACTIONS(3156), + [anon_sym_const] = ACTIONS(3156), + [anon_sym_constexpr] = ACTIONS(3156), + [anon_sym_volatile] = ACTIONS(3156), + [anon_sym_restrict] = ACTIONS(3156), + [anon_sym___restrict__] = ACTIONS(3156), + [anon_sym__Atomic] = ACTIONS(3156), + [anon_sym__Noreturn] = ACTIONS(3156), + [anon_sym_noreturn] = ACTIONS(3156), + [anon_sym_mutable] = ACTIONS(3156), + [anon_sym_constinit] = ACTIONS(3156), + [anon_sym_consteval] = ACTIONS(3156), + [anon_sym_signed] = ACTIONS(3156), + [anon_sym_unsigned] = ACTIONS(3156), + [anon_sym_long] = ACTIONS(3156), + [anon_sym_short] = ACTIONS(3156), + [sym_primitive_type] = ACTIONS(3156), + [anon_sym_enum] = ACTIONS(3156), + [anon_sym_class] = ACTIONS(3156), + [anon_sym_struct] = ACTIONS(3156), + [anon_sym_union] = ACTIONS(3156), + [anon_sym_if] = ACTIONS(3156), + [anon_sym_switch] = ACTIONS(3156), + [anon_sym_case] = ACTIONS(3156), + [anon_sym_default] = ACTIONS(3156), + [anon_sym_while] = ACTIONS(3156), + [anon_sym_do] = ACTIONS(3156), + [anon_sym_for] = ACTIONS(3156), + [anon_sym_return] = ACTIONS(3156), + [anon_sym_break] = ACTIONS(3156), + [anon_sym_continue] = ACTIONS(3156), + [anon_sym_goto] = ACTIONS(3156), + [anon_sym_not] = ACTIONS(3156), + [anon_sym_compl] = ACTIONS(3156), + [anon_sym_DASH_DASH] = ACTIONS(3158), + [anon_sym_PLUS_PLUS] = ACTIONS(3158), + [anon_sym_sizeof] = ACTIONS(3156), + [anon_sym_offsetof] = ACTIONS(3156), + [anon_sym__Generic] = ACTIONS(3156), + [anon_sym_asm] = ACTIONS(3156), + [anon_sym___asm__] = ACTIONS(3156), + [sym_number_literal] = ACTIONS(3158), + [anon_sym_L_SQUOTE] = ACTIONS(3158), + [anon_sym_u_SQUOTE] = ACTIONS(3158), + [anon_sym_U_SQUOTE] = ACTIONS(3158), + [anon_sym_u8_SQUOTE] = ACTIONS(3158), + [anon_sym_SQUOTE] = ACTIONS(3158), + [anon_sym_L_DQUOTE] = ACTIONS(3158), + [anon_sym_u_DQUOTE] = ACTIONS(3158), + [anon_sym_U_DQUOTE] = ACTIONS(3158), + [anon_sym_u8_DQUOTE] = ACTIONS(3158), + [anon_sym_DQUOTE] = ACTIONS(3158), + [sym_true] = ACTIONS(3156), + [sym_false] = ACTIONS(3156), + [anon_sym_NULL] = ACTIONS(3156), + [anon_sym_nullptr] = ACTIONS(3156), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3156), + [anon_sym_decltype] = ACTIONS(3156), + [anon_sym_virtual] = ACTIONS(3156), + [anon_sym_explicit] = ACTIONS(3156), + [anon_sym_typename] = ACTIONS(3156), + [anon_sym_template] = ACTIONS(3156), + [anon_sym_operator] = ACTIONS(3156), + [anon_sym_try] = ACTIONS(3156), + [anon_sym_delete] = ACTIONS(3156), + [anon_sym_throw] = ACTIONS(3156), + [anon_sym_namespace] = ACTIONS(3156), + [anon_sym_using] = ACTIONS(3156), + [anon_sym_static_assert] = ACTIONS(3156), + [anon_sym_concept] = ACTIONS(3156), + [anon_sym_co_return] = ACTIONS(3156), + [anon_sym_co_yield] = ACTIONS(3156), + [anon_sym_R_DQUOTE] = ACTIONS(3158), + [anon_sym_LR_DQUOTE] = ACTIONS(3158), + [anon_sym_uR_DQUOTE] = ACTIONS(3158), + [anon_sym_UR_DQUOTE] = ACTIONS(3158), + [anon_sym_u8R_DQUOTE] = ACTIONS(3158), + [anon_sym_co_await] = ACTIONS(3156), + [anon_sym_new] = ACTIONS(3156), + [anon_sym_requires] = ACTIONS(3156), + [sym_this] = ACTIONS(3156), }, [1210] = { - [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_AMP] = ACTIONS(2464), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym_LBRACE] = ACTIONS(2464), - [anon_sym_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_identifier] = ACTIONS(3308), + [aux_sym_preproc_include_token1] = ACTIONS(3308), + [aux_sym_preproc_def_token1] = ACTIONS(3308), + [aux_sym_preproc_if_token1] = ACTIONS(3308), + [aux_sym_preproc_if_token2] = ACTIONS(3308), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3308), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3308), + [sym_preproc_directive] = ACTIONS(3308), + [anon_sym_LPAREN2] = ACTIONS(3310), + [anon_sym_BANG] = ACTIONS(3310), + [anon_sym_TILDE] = ACTIONS(3310), + [anon_sym_DASH] = ACTIONS(3308), + [anon_sym_PLUS] = ACTIONS(3308), + [anon_sym_STAR] = ACTIONS(3310), + [anon_sym_AMP_AMP] = ACTIONS(3310), + [anon_sym_AMP] = ACTIONS(3308), + [anon_sym_SEMI] = ACTIONS(3310), + [anon_sym_typedef] = ACTIONS(3308), + [anon_sym_extern] = ACTIONS(3308), + [anon_sym___attribute__] = ACTIONS(3308), + [anon_sym_COLON_COLON] = ACTIONS(3310), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3310), + [anon_sym___declspec] = ACTIONS(3308), + [anon_sym___based] = ACTIONS(3308), + [anon_sym___cdecl] = ACTIONS(3308), + [anon_sym___clrcall] = ACTIONS(3308), + [anon_sym___stdcall] = ACTIONS(3308), + [anon_sym___fastcall] = ACTIONS(3308), + [anon_sym___thiscall] = ACTIONS(3308), + [anon_sym___vectorcall] = ACTIONS(3308), + [anon_sym_LBRACE] = ACTIONS(3310), + [anon_sym_LBRACK] = ACTIONS(3308), + [anon_sym_static] = ACTIONS(3308), + [anon_sym_register] = ACTIONS(3308), + [anon_sym_inline] = ACTIONS(3308), + [anon_sym_thread_local] = ACTIONS(3308), + [anon_sym_const] = ACTIONS(3308), + [anon_sym_constexpr] = ACTIONS(3308), + [anon_sym_volatile] = ACTIONS(3308), + [anon_sym_restrict] = ACTIONS(3308), + [anon_sym___restrict__] = ACTIONS(3308), + [anon_sym__Atomic] = ACTIONS(3308), + [anon_sym__Noreturn] = ACTIONS(3308), + [anon_sym_noreturn] = ACTIONS(3308), + [anon_sym_mutable] = ACTIONS(3308), + [anon_sym_constinit] = ACTIONS(3308), + [anon_sym_consteval] = ACTIONS(3308), + [anon_sym_signed] = ACTIONS(3308), + [anon_sym_unsigned] = ACTIONS(3308), + [anon_sym_long] = ACTIONS(3308), + [anon_sym_short] = ACTIONS(3308), + [sym_primitive_type] = ACTIONS(3308), + [anon_sym_enum] = ACTIONS(3308), + [anon_sym_class] = ACTIONS(3308), + [anon_sym_struct] = ACTIONS(3308), + [anon_sym_union] = ACTIONS(3308), + [anon_sym_if] = ACTIONS(3308), + [anon_sym_switch] = ACTIONS(3308), + [anon_sym_case] = ACTIONS(3308), + [anon_sym_default] = ACTIONS(3308), + [anon_sym_while] = ACTIONS(3308), + [anon_sym_do] = ACTIONS(3308), + [anon_sym_for] = ACTIONS(3308), + [anon_sym_return] = ACTIONS(3308), + [anon_sym_break] = ACTIONS(3308), + [anon_sym_continue] = ACTIONS(3308), + [anon_sym_goto] = ACTIONS(3308), + [anon_sym_not] = ACTIONS(3308), + [anon_sym_compl] = ACTIONS(3308), + [anon_sym_DASH_DASH] = ACTIONS(3310), + [anon_sym_PLUS_PLUS] = ACTIONS(3310), + [anon_sym_sizeof] = ACTIONS(3308), + [anon_sym_offsetof] = ACTIONS(3308), + [anon_sym__Generic] = ACTIONS(3308), + [anon_sym_asm] = ACTIONS(3308), + [anon_sym___asm__] = ACTIONS(3308), + [sym_number_literal] = ACTIONS(3310), + [anon_sym_L_SQUOTE] = ACTIONS(3310), + [anon_sym_u_SQUOTE] = ACTIONS(3310), + [anon_sym_U_SQUOTE] = ACTIONS(3310), + [anon_sym_u8_SQUOTE] = ACTIONS(3310), + [anon_sym_SQUOTE] = ACTIONS(3310), + [anon_sym_L_DQUOTE] = ACTIONS(3310), + [anon_sym_u_DQUOTE] = ACTIONS(3310), + [anon_sym_U_DQUOTE] = ACTIONS(3310), + [anon_sym_u8_DQUOTE] = ACTIONS(3310), + [anon_sym_DQUOTE] = ACTIONS(3310), + [sym_true] = ACTIONS(3308), + [sym_false] = ACTIONS(3308), + [anon_sym_NULL] = ACTIONS(3308), + [anon_sym_nullptr] = ACTIONS(3308), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3308), + [anon_sym_decltype] = ACTIONS(3308), + [anon_sym_virtual] = ACTIONS(3308), + [anon_sym_explicit] = ACTIONS(3308), + [anon_sym_typename] = ACTIONS(3308), + [anon_sym_template] = ACTIONS(3308), + [anon_sym_operator] = ACTIONS(3308), + [anon_sym_try] = ACTIONS(3308), + [anon_sym_delete] = ACTIONS(3308), + [anon_sym_throw] = ACTIONS(3308), + [anon_sym_namespace] = ACTIONS(3308), + [anon_sym_using] = ACTIONS(3308), + [anon_sym_static_assert] = ACTIONS(3308), + [anon_sym_concept] = ACTIONS(3308), + [anon_sym_co_return] = ACTIONS(3308), + [anon_sym_co_yield] = ACTIONS(3308), + [anon_sym_R_DQUOTE] = ACTIONS(3310), + [anon_sym_LR_DQUOTE] = ACTIONS(3310), + [anon_sym_uR_DQUOTE] = ACTIONS(3310), + [anon_sym_UR_DQUOTE] = ACTIONS(3310), + [anon_sym_u8R_DQUOTE] = ACTIONS(3310), + [anon_sym_co_await] = ACTIONS(3308), + [anon_sym_new] = ACTIONS(3308), + [anon_sym_requires] = ACTIONS(3308), + [sym_this] = ACTIONS(3308), }, [1211] = { - [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_AMP] = ACTIONS(2464), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym_LBRACE] = ACTIONS(2464), - [anon_sym_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_identifier] = ACTIONS(3447), + [aux_sym_preproc_include_token1] = ACTIONS(3447), + [aux_sym_preproc_def_token1] = ACTIONS(3447), + [aux_sym_preproc_if_token1] = ACTIONS(3447), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3447), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3447), + [sym_preproc_directive] = ACTIONS(3447), + [anon_sym_LPAREN2] = ACTIONS(3449), + [anon_sym_BANG] = ACTIONS(3449), + [anon_sym_TILDE] = ACTIONS(3449), + [anon_sym_DASH] = ACTIONS(3447), + [anon_sym_PLUS] = ACTIONS(3447), + [anon_sym_STAR] = ACTIONS(3449), + [anon_sym_AMP_AMP] = ACTIONS(3449), + [anon_sym_AMP] = ACTIONS(3447), + [anon_sym_SEMI] = ACTIONS(3449), + [anon_sym_typedef] = ACTIONS(3447), + [anon_sym_extern] = ACTIONS(3447), + [anon_sym___attribute__] = ACTIONS(3447), + [anon_sym_COLON_COLON] = ACTIONS(3449), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3449), + [anon_sym___declspec] = ACTIONS(3447), + [anon_sym___based] = ACTIONS(3447), + [anon_sym___cdecl] = ACTIONS(3447), + [anon_sym___clrcall] = ACTIONS(3447), + [anon_sym___stdcall] = ACTIONS(3447), + [anon_sym___fastcall] = ACTIONS(3447), + [anon_sym___thiscall] = ACTIONS(3447), + [anon_sym___vectorcall] = ACTIONS(3447), + [anon_sym_LBRACE] = ACTIONS(3449), + [anon_sym_RBRACE] = ACTIONS(3449), + [anon_sym_LBRACK] = ACTIONS(3447), + [anon_sym_static] = ACTIONS(3447), + [anon_sym_register] = ACTIONS(3447), + [anon_sym_inline] = ACTIONS(3447), + [anon_sym_thread_local] = ACTIONS(3447), + [anon_sym_const] = ACTIONS(3447), + [anon_sym_constexpr] = ACTIONS(3447), + [anon_sym_volatile] = ACTIONS(3447), + [anon_sym_restrict] = ACTIONS(3447), + [anon_sym___restrict__] = ACTIONS(3447), + [anon_sym__Atomic] = ACTIONS(3447), + [anon_sym__Noreturn] = ACTIONS(3447), + [anon_sym_noreturn] = ACTIONS(3447), + [anon_sym_mutable] = ACTIONS(3447), + [anon_sym_constinit] = ACTIONS(3447), + [anon_sym_consteval] = ACTIONS(3447), + [anon_sym_signed] = ACTIONS(3447), + [anon_sym_unsigned] = ACTIONS(3447), + [anon_sym_long] = ACTIONS(3447), + [anon_sym_short] = ACTIONS(3447), + [sym_primitive_type] = ACTIONS(3447), + [anon_sym_enum] = ACTIONS(3447), + [anon_sym_class] = ACTIONS(3447), + [anon_sym_struct] = ACTIONS(3447), + [anon_sym_union] = ACTIONS(3447), + [anon_sym_if] = ACTIONS(3447), + [anon_sym_switch] = ACTIONS(3447), + [anon_sym_case] = ACTIONS(3447), + [anon_sym_default] = ACTIONS(3447), + [anon_sym_while] = ACTIONS(3447), + [anon_sym_do] = ACTIONS(3447), + [anon_sym_for] = ACTIONS(3447), + [anon_sym_return] = ACTIONS(3447), + [anon_sym_break] = ACTIONS(3447), + [anon_sym_continue] = ACTIONS(3447), + [anon_sym_goto] = ACTIONS(3447), + [anon_sym_not] = ACTIONS(3447), + [anon_sym_compl] = ACTIONS(3447), + [anon_sym_DASH_DASH] = ACTIONS(3449), + [anon_sym_PLUS_PLUS] = ACTIONS(3449), + [anon_sym_sizeof] = ACTIONS(3447), + [anon_sym_offsetof] = ACTIONS(3447), + [anon_sym__Generic] = ACTIONS(3447), + [anon_sym_asm] = ACTIONS(3447), + [anon_sym___asm__] = ACTIONS(3447), + [sym_number_literal] = ACTIONS(3449), + [anon_sym_L_SQUOTE] = ACTIONS(3449), + [anon_sym_u_SQUOTE] = ACTIONS(3449), + [anon_sym_U_SQUOTE] = ACTIONS(3449), + [anon_sym_u8_SQUOTE] = ACTIONS(3449), + [anon_sym_SQUOTE] = ACTIONS(3449), + [anon_sym_L_DQUOTE] = ACTIONS(3449), + [anon_sym_u_DQUOTE] = ACTIONS(3449), + [anon_sym_U_DQUOTE] = ACTIONS(3449), + [anon_sym_u8_DQUOTE] = ACTIONS(3449), + [anon_sym_DQUOTE] = ACTIONS(3449), + [sym_true] = ACTIONS(3447), + [sym_false] = ACTIONS(3447), + [anon_sym_NULL] = ACTIONS(3447), + [anon_sym_nullptr] = ACTIONS(3447), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3447), + [anon_sym_decltype] = ACTIONS(3447), + [anon_sym_virtual] = ACTIONS(3447), + [anon_sym_explicit] = ACTIONS(3447), + [anon_sym_typename] = ACTIONS(3447), + [anon_sym_template] = ACTIONS(3447), + [anon_sym_operator] = ACTIONS(3447), + [anon_sym_try] = ACTIONS(3447), + [anon_sym_delete] = ACTIONS(3447), + [anon_sym_throw] = ACTIONS(3447), + [anon_sym_namespace] = ACTIONS(3447), + [anon_sym_using] = ACTIONS(3447), + [anon_sym_static_assert] = ACTIONS(3447), + [anon_sym_concept] = ACTIONS(3447), + [anon_sym_co_return] = ACTIONS(3447), + [anon_sym_co_yield] = ACTIONS(3447), + [anon_sym_R_DQUOTE] = ACTIONS(3449), + [anon_sym_LR_DQUOTE] = ACTIONS(3449), + [anon_sym_uR_DQUOTE] = ACTIONS(3449), + [anon_sym_UR_DQUOTE] = ACTIONS(3449), + [anon_sym_u8R_DQUOTE] = ACTIONS(3449), + [anon_sym_co_await] = ACTIONS(3447), + [anon_sym_new] = ACTIONS(3447), + [anon_sym_requires] = ACTIONS(3447), + [sym_this] = ACTIONS(3447), }, [1212] = { - [sym__expression] = STATE(3589), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_initializer_list] = STATE(5896), - [sym_initializer_pair] = STATE(5896), - [sym_subscript_designator] = STATE(5115), - [sym_field_designator] = STATE(5115), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_initializer_pair_repeat1] = STATE(5115), - [sym_identifier] = ACTIONS(2954), - [anon_sym_LPAREN2] = ACTIONS(984), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1489), - [anon_sym_RBRACE] = ACTIONS(3388), - [anon_sym_LBRACK] = ACTIONS(3358), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym_DOT] = ACTIONS(197), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [sym_identifier] = ACTIONS(3443), + [aux_sym_preproc_include_token1] = ACTIONS(3443), + [aux_sym_preproc_def_token1] = ACTIONS(3443), + [aux_sym_preproc_if_token1] = ACTIONS(3443), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3443), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3443), + [sym_preproc_directive] = ACTIONS(3443), + [anon_sym_LPAREN2] = ACTIONS(3445), + [anon_sym_BANG] = ACTIONS(3445), + [anon_sym_TILDE] = ACTIONS(3445), + [anon_sym_DASH] = ACTIONS(3443), + [anon_sym_PLUS] = ACTIONS(3443), + [anon_sym_STAR] = ACTIONS(3445), + [anon_sym_AMP_AMP] = ACTIONS(3445), + [anon_sym_AMP] = ACTIONS(3443), + [anon_sym_SEMI] = ACTIONS(3445), + [anon_sym_typedef] = ACTIONS(3443), + [anon_sym_extern] = ACTIONS(3443), + [anon_sym___attribute__] = ACTIONS(3443), + [anon_sym_COLON_COLON] = ACTIONS(3445), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3445), + [anon_sym___declspec] = ACTIONS(3443), + [anon_sym___based] = ACTIONS(3443), + [anon_sym___cdecl] = ACTIONS(3443), + [anon_sym___clrcall] = ACTIONS(3443), + [anon_sym___stdcall] = ACTIONS(3443), + [anon_sym___fastcall] = ACTIONS(3443), + [anon_sym___thiscall] = ACTIONS(3443), + [anon_sym___vectorcall] = ACTIONS(3443), + [anon_sym_LBRACE] = ACTIONS(3445), + [anon_sym_RBRACE] = ACTIONS(3445), + [anon_sym_LBRACK] = ACTIONS(3443), + [anon_sym_static] = ACTIONS(3443), + [anon_sym_register] = ACTIONS(3443), + [anon_sym_inline] = ACTIONS(3443), + [anon_sym_thread_local] = ACTIONS(3443), + [anon_sym_const] = ACTIONS(3443), + [anon_sym_constexpr] = ACTIONS(3443), + [anon_sym_volatile] = ACTIONS(3443), + [anon_sym_restrict] = ACTIONS(3443), + [anon_sym___restrict__] = ACTIONS(3443), + [anon_sym__Atomic] = ACTIONS(3443), + [anon_sym__Noreturn] = ACTIONS(3443), + [anon_sym_noreturn] = ACTIONS(3443), + [anon_sym_mutable] = ACTIONS(3443), + [anon_sym_constinit] = ACTIONS(3443), + [anon_sym_consteval] = ACTIONS(3443), + [anon_sym_signed] = ACTIONS(3443), + [anon_sym_unsigned] = ACTIONS(3443), + [anon_sym_long] = ACTIONS(3443), + [anon_sym_short] = ACTIONS(3443), + [sym_primitive_type] = ACTIONS(3443), + [anon_sym_enum] = ACTIONS(3443), + [anon_sym_class] = ACTIONS(3443), + [anon_sym_struct] = ACTIONS(3443), + [anon_sym_union] = ACTIONS(3443), + [anon_sym_if] = ACTIONS(3443), + [anon_sym_switch] = ACTIONS(3443), + [anon_sym_case] = ACTIONS(3443), + [anon_sym_default] = ACTIONS(3443), + [anon_sym_while] = ACTIONS(3443), + [anon_sym_do] = ACTIONS(3443), + [anon_sym_for] = ACTIONS(3443), + [anon_sym_return] = ACTIONS(3443), + [anon_sym_break] = ACTIONS(3443), + [anon_sym_continue] = ACTIONS(3443), + [anon_sym_goto] = ACTIONS(3443), + [anon_sym_not] = ACTIONS(3443), + [anon_sym_compl] = ACTIONS(3443), + [anon_sym_DASH_DASH] = ACTIONS(3445), + [anon_sym_PLUS_PLUS] = ACTIONS(3445), + [anon_sym_sizeof] = ACTIONS(3443), + [anon_sym_offsetof] = ACTIONS(3443), + [anon_sym__Generic] = ACTIONS(3443), + [anon_sym_asm] = ACTIONS(3443), + [anon_sym___asm__] = ACTIONS(3443), + [sym_number_literal] = ACTIONS(3445), + [anon_sym_L_SQUOTE] = ACTIONS(3445), + [anon_sym_u_SQUOTE] = ACTIONS(3445), + [anon_sym_U_SQUOTE] = ACTIONS(3445), + [anon_sym_u8_SQUOTE] = ACTIONS(3445), + [anon_sym_SQUOTE] = ACTIONS(3445), + [anon_sym_L_DQUOTE] = ACTIONS(3445), + [anon_sym_u_DQUOTE] = ACTIONS(3445), + [anon_sym_U_DQUOTE] = ACTIONS(3445), + [anon_sym_u8_DQUOTE] = ACTIONS(3445), + [anon_sym_DQUOTE] = ACTIONS(3445), + [sym_true] = ACTIONS(3443), + [sym_false] = ACTIONS(3443), + [anon_sym_NULL] = ACTIONS(3443), + [anon_sym_nullptr] = ACTIONS(3443), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3443), + [anon_sym_decltype] = ACTIONS(3443), + [anon_sym_virtual] = ACTIONS(3443), + [anon_sym_explicit] = ACTIONS(3443), + [anon_sym_typename] = ACTIONS(3443), + [anon_sym_template] = ACTIONS(3443), + [anon_sym_operator] = ACTIONS(3443), + [anon_sym_try] = ACTIONS(3443), + [anon_sym_delete] = ACTIONS(3443), + [anon_sym_throw] = ACTIONS(3443), + [anon_sym_namespace] = ACTIONS(3443), + [anon_sym_using] = ACTIONS(3443), + [anon_sym_static_assert] = ACTIONS(3443), + [anon_sym_concept] = ACTIONS(3443), + [anon_sym_co_return] = ACTIONS(3443), + [anon_sym_co_yield] = ACTIONS(3443), + [anon_sym_R_DQUOTE] = ACTIONS(3445), + [anon_sym_LR_DQUOTE] = ACTIONS(3445), + [anon_sym_uR_DQUOTE] = ACTIONS(3445), + [anon_sym_UR_DQUOTE] = ACTIONS(3445), + [anon_sym_u8R_DQUOTE] = ACTIONS(3445), + [anon_sym_co_await] = ACTIONS(3443), + [anon_sym_new] = ACTIONS(3443), + [anon_sym_requires] = ACTIONS(3443), + [sym_this] = ACTIONS(3443), }, [1213] = { - [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_AMP] = ACTIONS(2464), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym_LBRACE] = ACTIONS(2464), - [anon_sym_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_identifier] = ACTIONS(3439), + [aux_sym_preproc_include_token1] = ACTIONS(3439), + [aux_sym_preproc_def_token1] = ACTIONS(3439), + [aux_sym_preproc_if_token1] = ACTIONS(3439), + [aux_sym_preproc_if_token2] = ACTIONS(3439), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3439), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3439), + [sym_preproc_directive] = ACTIONS(3439), + [anon_sym_LPAREN2] = ACTIONS(3441), + [anon_sym_BANG] = ACTIONS(3441), + [anon_sym_TILDE] = ACTIONS(3441), + [anon_sym_DASH] = ACTIONS(3439), + [anon_sym_PLUS] = ACTIONS(3439), + [anon_sym_STAR] = ACTIONS(3441), + [anon_sym_AMP_AMP] = ACTIONS(3441), + [anon_sym_AMP] = ACTIONS(3439), + [anon_sym_SEMI] = ACTIONS(3441), + [anon_sym_typedef] = ACTIONS(3439), + [anon_sym_extern] = ACTIONS(3439), + [anon_sym___attribute__] = ACTIONS(3439), + [anon_sym_COLON_COLON] = ACTIONS(3441), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3441), + [anon_sym___declspec] = ACTIONS(3439), + [anon_sym___based] = ACTIONS(3439), + [anon_sym___cdecl] = ACTIONS(3439), + [anon_sym___clrcall] = ACTIONS(3439), + [anon_sym___stdcall] = ACTIONS(3439), + [anon_sym___fastcall] = ACTIONS(3439), + [anon_sym___thiscall] = ACTIONS(3439), + [anon_sym___vectorcall] = ACTIONS(3439), + [anon_sym_LBRACE] = ACTIONS(3441), + [anon_sym_LBRACK] = ACTIONS(3439), + [anon_sym_static] = ACTIONS(3439), + [anon_sym_register] = ACTIONS(3439), + [anon_sym_inline] = ACTIONS(3439), + [anon_sym_thread_local] = ACTIONS(3439), + [anon_sym_const] = ACTIONS(3439), + [anon_sym_constexpr] = ACTIONS(3439), + [anon_sym_volatile] = ACTIONS(3439), + [anon_sym_restrict] = ACTIONS(3439), + [anon_sym___restrict__] = ACTIONS(3439), + [anon_sym__Atomic] = ACTIONS(3439), + [anon_sym__Noreturn] = ACTIONS(3439), + [anon_sym_noreturn] = ACTIONS(3439), + [anon_sym_mutable] = ACTIONS(3439), + [anon_sym_constinit] = ACTIONS(3439), + [anon_sym_consteval] = ACTIONS(3439), + [anon_sym_signed] = ACTIONS(3439), + [anon_sym_unsigned] = ACTIONS(3439), + [anon_sym_long] = ACTIONS(3439), + [anon_sym_short] = ACTIONS(3439), + [sym_primitive_type] = ACTIONS(3439), + [anon_sym_enum] = ACTIONS(3439), + [anon_sym_class] = ACTIONS(3439), + [anon_sym_struct] = ACTIONS(3439), + [anon_sym_union] = ACTIONS(3439), + [anon_sym_if] = ACTIONS(3439), + [anon_sym_switch] = ACTIONS(3439), + [anon_sym_case] = ACTIONS(3439), + [anon_sym_default] = ACTIONS(3439), + [anon_sym_while] = ACTIONS(3439), + [anon_sym_do] = ACTIONS(3439), + [anon_sym_for] = ACTIONS(3439), + [anon_sym_return] = ACTIONS(3439), + [anon_sym_break] = ACTIONS(3439), + [anon_sym_continue] = ACTIONS(3439), + [anon_sym_goto] = ACTIONS(3439), + [anon_sym_not] = ACTIONS(3439), + [anon_sym_compl] = ACTIONS(3439), + [anon_sym_DASH_DASH] = ACTIONS(3441), + [anon_sym_PLUS_PLUS] = ACTIONS(3441), + [anon_sym_sizeof] = ACTIONS(3439), + [anon_sym_offsetof] = ACTIONS(3439), + [anon_sym__Generic] = ACTIONS(3439), + [anon_sym_asm] = ACTIONS(3439), + [anon_sym___asm__] = ACTIONS(3439), + [sym_number_literal] = ACTIONS(3441), + [anon_sym_L_SQUOTE] = ACTIONS(3441), + [anon_sym_u_SQUOTE] = ACTIONS(3441), + [anon_sym_U_SQUOTE] = ACTIONS(3441), + [anon_sym_u8_SQUOTE] = ACTIONS(3441), + [anon_sym_SQUOTE] = ACTIONS(3441), + [anon_sym_L_DQUOTE] = ACTIONS(3441), + [anon_sym_u_DQUOTE] = ACTIONS(3441), + [anon_sym_U_DQUOTE] = ACTIONS(3441), + [anon_sym_u8_DQUOTE] = ACTIONS(3441), + [anon_sym_DQUOTE] = ACTIONS(3441), + [sym_true] = ACTIONS(3439), + [sym_false] = ACTIONS(3439), + [anon_sym_NULL] = ACTIONS(3439), + [anon_sym_nullptr] = ACTIONS(3439), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3439), + [anon_sym_decltype] = ACTIONS(3439), + [anon_sym_virtual] = ACTIONS(3439), + [anon_sym_explicit] = ACTIONS(3439), + [anon_sym_typename] = ACTIONS(3439), + [anon_sym_template] = ACTIONS(3439), + [anon_sym_operator] = ACTIONS(3439), + [anon_sym_try] = ACTIONS(3439), + [anon_sym_delete] = ACTIONS(3439), + [anon_sym_throw] = ACTIONS(3439), + [anon_sym_namespace] = ACTIONS(3439), + [anon_sym_using] = ACTIONS(3439), + [anon_sym_static_assert] = ACTIONS(3439), + [anon_sym_concept] = ACTIONS(3439), + [anon_sym_co_return] = ACTIONS(3439), + [anon_sym_co_yield] = ACTIONS(3439), + [anon_sym_R_DQUOTE] = ACTIONS(3441), + [anon_sym_LR_DQUOTE] = ACTIONS(3441), + [anon_sym_uR_DQUOTE] = ACTIONS(3441), + [anon_sym_UR_DQUOTE] = ACTIONS(3441), + [anon_sym_u8R_DQUOTE] = ACTIONS(3441), + [anon_sym_co_await] = ACTIONS(3439), + [anon_sym_new] = ACTIONS(3439), + [anon_sym_requires] = ACTIONS(3439), + [sym_this] = ACTIONS(3439), }, [1214] = { - [sym__expression] = STATE(3589), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_initializer_list] = STATE(5896), - [sym_initializer_pair] = STATE(5896), - [sym_subscript_designator] = STATE(5115), - [sym_field_designator] = STATE(5115), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_initializer_pair_repeat1] = STATE(5115), - [sym_identifier] = ACTIONS(2954), - [anon_sym_LPAREN2] = ACTIONS(984), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1489), - [anon_sym_RBRACE] = ACTIONS(3390), - [anon_sym_LBRACK] = ACTIONS(3358), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym_DOT] = ACTIONS(197), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [sym_identifier] = ACTIONS(3160), + [aux_sym_preproc_include_token1] = ACTIONS(3160), + [aux_sym_preproc_def_token1] = ACTIONS(3160), + [aux_sym_preproc_if_token1] = ACTIONS(3160), + [aux_sym_preproc_if_token2] = ACTIONS(3160), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3160), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3160), + [sym_preproc_directive] = ACTIONS(3160), + [anon_sym_LPAREN2] = ACTIONS(3162), + [anon_sym_BANG] = ACTIONS(3162), + [anon_sym_TILDE] = ACTIONS(3162), + [anon_sym_DASH] = ACTIONS(3160), + [anon_sym_PLUS] = ACTIONS(3160), + [anon_sym_STAR] = ACTIONS(3162), + [anon_sym_AMP_AMP] = ACTIONS(3162), + [anon_sym_AMP] = ACTIONS(3160), + [anon_sym_SEMI] = ACTIONS(3162), + [anon_sym_typedef] = ACTIONS(3160), + [anon_sym_extern] = ACTIONS(3160), + [anon_sym___attribute__] = ACTIONS(3160), + [anon_sym_COLON_COLON] = ACTIONS(3162), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3162), + [anon_sym___declspec] = ACTIONS(3160), + [anon_sym___based] = ACTIONS(3160), + [anon_sym___cdecl] = ACTIONS(3160), + [anon_sym___clrcall] = ACTIONS(3160), + [anon_sym___stdcall] = ACTIONS(3160), + [anon_sym___fastcall] = ACTIONS(3160), + [anon_sym___thiscall] = ACTIONS(3160), + [anon_sym___vectorcall] = ACTIONS(3160), + [anon_sym_LBRACE] = ACTIONS(3162), + [anon_sym_LBRACK] = ACTIONS(3160), + [anon_sym_static] = ACTIONS(3160), + [anon_sym_register] = ACTIONS(3160), + [anon_sym_inline] = ACTIONS(3160), + [anon_sym_thread_local] = ACTIONS(3160), + [anon_sym_const] = ACTIONS(3160), + [anon_sym_constexpr] = ACTIONS(3160), + [anon_sym_volatile] = ACTIONS(3160), + [anon_sym_restrict] = ACTIONS(3160), + [anon_sym___restrict__] = ACTIONS(3160), + [anon_sym__Atomic] = ACTIONS(3160), + [anon_sym__Noreturn] = ACTIONS(3160), + [anon_sym_noreturn] = ACTIONS(3160), + [anon_sym_mutable] = ACTIONS(3160), + [anon_sym_constinit] = ACTIONS(3160), + [anon_sym_consteval] = ACTIONS(3160), + [anon_sym_signed] = ACTIONS(3160), + [anon_sym_unsigned] = ACTIONS(3160), + [anon_sym_long] = ACTIONS(3160), + [anon_sym_short] = ACTIONS(3160), + [sym_primitive_type] = ACTIONS(3160), + [anon_sym_enum] = ACTIONS(3160), + [anon_sym_class] = ACTIONS(3160), + [anon_sym_struct] = ACTIONS(3160), + [anon_sym_union] = ACTIONS(3160), + [anon_sym_if] = ACTIONS(3160), + [anon_sym_switch] = ACTIONS(3160), + [anon_sym_case] = ACTIONS(3160), + [anon_sym_default] = ACTIONS(3160), + [anon_sym_while] = ACTIONS(3160), + [anon_sym_do] = ACTIONS(3160), + [anon_sym_for] = ACTIONS(3160), + [anon_sym_return] = ACTIONS(3160), + [anon_sym_break] = ACTIONS(3160), + [anon_sym_continue] = ACTIONS(3160), + [anon_sym_goto] = ACTIONS(3160), + [anon_sym_not] = ACTIONS(3160), + [anon_sym_compl] = ACTIONS(3160), + [anon_sym_DASH_DASH] = ACTIONS(3162), + [anon_sym_PLUS_PLUS] = ACTIONS(3162), + [anon_sym_sizeof] = ACTIONS(3160), + [anon_sym_offsetof] = ACTIONS(3160), + [anon_sym__Generic] = ACTIONS(3160), + [anon_sym_asm] = ACTIONS(3160), + [anon_sym___asm__] = ACTIONS(3160), + [sym_number_literal] = ACTIONS(3162), + [anon_sym_L_SQUOTE] = ACTIONS(3162), + [anon_sym_u_SQUOTE] = ACTIONS(3162), + [anon_sym_U_SQUOTE] = ACTIONS(3162), + [anon_sym_u8_SQUOTE] = ACTIONS(3162), + [anon_sym_SQUOTE] = ACTIONS(3162), + [anon_sym_L_DQUOTE] = ACTIONS(3162), + [anon_sym_u_DQUOTE] = ACTIONS(3162), + [anon_sym_U_DQUOTE] = ACTIONS(3162), + [anon_sym_u8_DQUOTE] = ACTIONS(3162), + [anon_sym_DQUOTE] = ACTIONS(3162), + [sym_true] = ACTIONS(3160), + [sym_false] = ACTIONS(3160), + [anon_sym_NULL] = ACTIONS(3160), + [anon_sym_nullptr] = ACTIONS(3160), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3160), + [anon_sym_decltype] = ACTIONS(3160), + [anon_sym_virtual] = ACTIONS(3160), + [anon_sym_explicit] = ACTIONS(3160), + [anon_sym_typename] = ACTIONS(3160), + [anon_sym_template] = ACTIONS(3160), + [anon_sym_operator] = ACTIONS(3160), + [anon_sym_try] = ACTIONS(3160), + [anon_sym_delete] = ACTIONS(3160), + [anon_sym_throw] = ACTIONS(3160), + [anon_sym_namespace] = ACTIONS(3160), + [anon_sym_using] = ACTIONS(3160), + [anon_sym_static_assert] = ACTIONS(3160), + [anon_sym_concept] = ACTIONS(3160), + [anon_sym_co_return] = ACTIONS(3160), + [anon_sym_co_yield] = ACTIONS(3160), + [anon_sym_R_DQUOTE] = ACTIONS(3162), + [anon_sym_LR_DQUOTE] = ACTIONS(3162), + [anon_sym_uR_DQUOTE] = ACTIONS(3162), + [anon_sym_UR_DQUOTE] = ACTIONS(3162), + [anon_sym_u8R_DQUOTE] = ACTIONS(3162), + [anon_sym_co_await] = ACTIONS(3160), + [anon_sym_new] = ACTIONS(3160), + [anon_sym_requires] = ACTIONS(3160), + [sym_this] = ACTIONS(3160), }, [1215] = { - [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_AMP] = ACTIONS(2464), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym_LBRACE] = ACTIONS(2464), - [anon_sym_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_identifier] = ACTIONS(3354), + [aux_sym_preproc_include_token1] = ACTIONS(3354), + [aux_sym_preproc_def_token1] = ACTIONS(3354), + [aux_sym_preproc_if_token1] = ACTIONS(3354), + [aux_sym_preproc_if_token2] = ACTIONS(3354), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3354), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3354), + [sym_preproc_directive] = ACTIONS(3354), + [anon_sym_LPAREN2] = ACTIONS(3356), + [anon_sym_BANG] = ACTIONS(3356), + [anon_sym_TILDE] = ACTIONS(3356), + [anon_sym_DASH] = ACTIONS(3354), + [anon_sym_PLUS] = ACTIONS(3354), + [anon_sym_STAR] = ACTIONS(3356), + [anon_sym_AMP_AMP] = ACTIONS(3356), + [anon_sym_AMP] = ACTIONS(3354), + [anon_sym_SEMI] = ACTIONS(3356), + [anon_sym_typedef] = ACTIONS(3354), + [anon_sym_extern] = ACTIONS(3354), + [anon_sym___attribute__] = ACTIONS(3354), + [anon_sym_COLON_COLON] = ACTIONS(3356), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3356), + [anon_sym___declspec] = ACTIONS(3354), + [anon_sym___based] = ACTIONS(3354), + [anon_sym___cdecl] = ACTIONS(3354), + [anon_sym___clrcall] = ACTIONS(3354), + [anon_sym___stdcall] = ACTIONS(3354), + [anon_sym___fastcall] = ACTIONS(3354), + [anon_sym___thiscall] = ACTIONS(3354), + [anon_sym___vectorcall] = ACTIONS(3354), + [anon_sym_LBRACE] = ACTIONS(3356), + [anon_sym_LBRACK] = ACTIONS(3354), + [anon_sym_static] = ACTIONS(3354), + [anon_sym_register] = ACTIONS(3354), + [anon_sym_inline] = ACTIONS(3354), + [anon_sym_thread_local] = ACTIONS(3354), + [anon_sym_const] = ACTIONS(3354), + [anon_sym_constexpr] = ACTIONS(3354), + [anon_sym_volatile] = ACTIONS(3354), + [anon_sym_restrict] = ACTIONS(3354), + [anon_sym___restrict__] = ACTIONS(3354), + [anon_sym__Atomic] = ACTIONS(3354), + [anon_sym__Noreturn] = ACTIONS(3354), + [anon_sym_noreturn] = ACTIONS(3354), + [anon_sym_mutable] = ACTIONS(3354), + [anon_sym_constinit] = ACTIONS(3354), + [anon_sym_consteval] = ACTIONS(3354), + [anon_sym_signed] = ACTIONS(3354), + [anon_sym_unsigned] = ACTIONS(3354), + [anon_sym_long] = ACTIONS(3354), + [anon_sym_short] = ACTIONS(3354), + [sym_primitive_type] = ACTIONS(3354), + [anon_sym_enum] = ACTIONS(3354), + [anon_sym_class] = ACTIONS(3354), + [anon_sym_struct] = ACTIONS(3354), + [anon_sym_union] = ACTIONS(3354), + [anon_sym_if] = ACTIONS(3354), + [anon_sym_switch] = ACTIONS(3354), + [anon_sym_case] = ACTIONS(3354), + [anon_sym_default] = ACTIONS(3354), + [anon_sym_while] = ACTIONS(3354), + [anon_sym_do] = ACTIONS(3354), + [anon_sym_for] = ACTIONS(3354), + [anon_sym_return] = ACTIONS(3354), + [anon_sym_break] = ACTIONS(3354), + [anon_sym_continue] = ACTIONS(3354), + [anon_sym_goto] = ACTIONS(3354), + [anon_sym_not] = ACTIONS(3354), + [anon_sym_compl] = ACTIONS(3354), + [anon_sym_DASH_DASH] = ACTIONS(3356), + [anon_sym_PLUS_PLUS] = ACTIONS(3356), + [anon_sym_sizeof] = ACTIONS(3354), + [anon_sym_offsetof] = ACTIONS(3354), + [anon_sym__Generic] = ACTIONS(3354), + [anon_sym_asm] = ACTIONS(3354), + [anon_sym___asm__] = ACTIONS(3354), + [sym_number_literal] = ACTIONS(3356), + [anon_sym_L_SQUOTE] = ACTIONS(3356), + [anon_sym_u_SQUOTE] = ACTIONS(3356), + [anon_sym_U_SQUOTE] = ACTIONS(3356), + [anon_sym_u8_SQUOTE] = ACTIONS(3356), + [anon_sym_SQUOTE] = ACTIONS(3356), + [anon_sym_L_DQUOTE] = ACTIONS(3356), + [anon_sym_u_DQUOTE] = ACTIONS(3356), + [anon_sym_U_DQUOTE] = ACTIONS(3356), + [anon_sym_u8_DQUOTE] = ACTIONS(3356), + [anon_sym_DQUOTE] = ACTIONS(3356), + [sym_true] = ACTIONS(3354), + [sym_false] = ACTIONS(3354), + [anon_sym_NULL] = ACTIONS(3354), + [anon_sym_nullptr] = ACTIONS(3354), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3354), + [anon_sym_decltype] = ACTIONS(3354), + [anon_sym_virtual] = ACTIONS(3354), + [anon_sym_explicit] = ACTIONS(3354), + [anon_sym_typename] = ACTIONS(3354), + [anon_sym_template] = ACTIONS(3354), + [anon_sym_operator] = ACTIONS(3354), + [anon_sym_try] = ACTIONS(3354), + [anon_sym_delete] = ACTIONS(3354), + [anon_sym_throw] = ACTIONS(3354), + [anon_sym_namespace] = ACTIONS(3354), + [anon_sym_using] = ACTIONS(3354), + [anon_sym_static_assert] = ACTIONS(3354), + [anon_sym_concept] = ACTIONS(3354), + [anon_sym_co_return] = ACTIONS(3354), + [anon_sym_co_yield] = ACTIONS(3354), + [anon_sym_R_DQUOTE] = ACTIONS(3356), + [anon_sym_LR_DQUOTE] = ACTIONS(3356), + [anon_sym_uR_DQUOTE] = ACTIONS(3356), + [anon_sym_UR_DQUOTE] = ACTIONS(3356), + [anon_sym_u8R_DQUOTE] = ACTIONS(3356), + [anon_sym_co_await] = ACTIONS(3354), + [anon_sym_new] = ACTIONS(3354), + [anon_sym_requires] = ACTIONS(3354), + [sym_this] = ACTIONS(3354), }, [1216] = { - [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_AMP] = ACTIONS(2464), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym_LBRACE] = ACTIONS(2464), - [anon_sym_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_identifier] = ACTIONS(3403), + [aux_sym_preproc_include_token1] = ACTIONS(3403), + [aux_sym_preproc_def_token1] = ACTIONS(3403), + [aux_sym_preproc_if_token1] = ACTIONS(3403), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3403), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3403), + [sym_preproc_directive] = ACTIONS(3403), + [anon_sym_LPAREN2] = ACTIONS(3405), + [anon_sym_BANG] = ACTIONS(3405), + [anon_sym_TILDE] = ACTIONS(3405), + [anon_sym_DASH] = ACTIONS(3403), + [anon_sym_PLUS] = ACTIONS(3403), + [anon_sym_STAR] = ACTIONS(3405), + [anon_sym_AMP_AMP] = ACTIONS(3405), + [anon_sym_AMP] = ACTIONS(3403), + [anon_sym_SEMI] = ACTIONS(3405), + [anon_sym_typedef] = ACTIONS(3403), + [anon_sym_extern] = ACTIONS(3403), + [anon_sym___attribute__] = ACTIONS(3403), + [anon_sym_COLON_COLON] = ACTIONS(3405), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3405), + [anon_sym___declspec] = ACTIONS(3403), + [anon_sym___based] = ACTIONS(3403), + [anon_sym___cdecl] = ACTIONS(3403), + [anon_sym___clrcall] = ACTIONS(3403), + [anon_sym___stdcall] = ACTIONS(3403), + [anon_sym___fastcall] = ACTIONS(3403), + [anon_sym___thiscall] = ACTIONS(3403), + [anon_sym___vectorcall] = ACTIONS(3403), + [anon_sym_LBRACE] = ACTIONS(3405), + [anon_sym_RBRACE] = ACTIONS(3405), + [anon_sym_LBRACK] = ACTIONS(3403), + [anon_sym_static] = ACTIONS(3403), + [anon_sym_register] = ACTIONS(3403), + [anon_sym_inline] = ACTIONS(3403), + [anon_sym_thread_local] = ACTIONS(3403), + [anon_sym_const] = ACTIONS(3403), + [anon_sym_constexpr] = ACTIONS(3403), + [anon_sym_volatile] = ACTIONS(3403), + [anon_sym_restrict] = ACTIONS(3403), + [anon_sym___restrict__] = ACTIONS(3403), + [anon_sym__Atomic] = ACTIONS(3403), + [anon_sym__Noreturn] = ACTIONS(3403), + [anon_sym_noreturn] = ACTIONS(3403), + [anon_sym_mutable] = ACTIONS(3403), + [anon_sym_constinit] = ACTIONS(3403), + [anon_sym_consteval] = ACTIONS(3403), + [anon_sym_signed] = ACTIONS(3403), + [anon_sym_unsigned] = ACTIONS(3403), + [anon_sym_long] = ACTIONS(3403), + [anon_sym_short] = ACTIONS(3403), + [sym_primitive_type] = ACTIONS(3403), + [anon_sym_enum] = ACTIONS(3403), + [anon_sym_class] = ACTIONS(3403), + [anon_sym_struct] = ACTIONS(3403), + [anon_sym_union] = ACTIONS(3403), + [anon_sym_if] = ACTIONS(3403), + [anon_sym_switch] = ACTIONS(3403), + [anon_sym_case] = ACTIONS(3403), + [anon_sym_default] = ACTIONS(3403), + [anon_sym_while] = ACTIONS(3403), + [anon_sym_do] = ACTIONS(3403), + [anon_sym_for] = ACTIONS(3403), + [anon_sym_return] = ACTIONS(3403), + [anon_sym_break] = ACTIONS(3403), + [anon_sym_continue] = ACTIONS(3403), + [anon_sym_goto] = ACTIONS(3403), + [anon_sym_not] = ACTIONS(3403), + [anon_sym_compl] = ACTIONS(3403), + [anon_sym_DASH_DASH] = ACTIONS(3405), + [anon_sym_PLUS_PLUS] = ACTIONS(3405), + [anon_sym_sizeof] = ACTIONS(3403), + [anon_sym_offsetof] = ACTIONS(3403), + [anon_sym__Generic] = ACTIONS(3403), + [anon_sym_asm] = ACTIONS(3403), + [anon_sym___asm__] = ACTIONS(3403), + [sym_number_literal] = ACTIONS(3405), + [anon_sym_L_SQUOTE] = ACTIONS(3405), + [anon_sym_u_SQUOTE] = ACTIONS(3405), + [anon_sym_U_SQUOTE] = ACTIONS(3405), + [anon_sym_u8_SQUOTE] = ACTIONS(3405), + [anon_sym_SQUOTE] = ACTIONS(3405), + [anon_sym_L_DQUOTE] = ACTIONS(3405), + [anon_sym_u_DQUOTE] = ACTIONS(3405), + [anon_sym_U_DQUOTE] = ACTIONS(3405), + [anon_sym_u8_DQUOTE] = ACTIONS(3405), + [anon_sym_DQUOTE] = ACTIONS(3405), + [sym_true] = ACTIONS(3403), + [sym_false] = ACTIONS(3403), + [anon_sym_NULL] = ACTIONS(3403), + [anon_sym_nullptr] = ACTIONS(3403), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3403), + [anon_sym_decltype] = ACTIONS(3403), + [anon_sym_virtual] = ACTIONS(3403), + [anon_sym_explicit] = ACTIONS(3403), + [anon_sym_typename] = ACTIONS(3403), + [anon_sym_template] = ACTIONS(3403), + [anon_sym_operator] = ACTIONS(3403), + [anon_sym_try] = ACTIONS(3403), + [anon_sym_delete] = ACTIONS(3403), + [anon_sym_throw] = ACTIONS(3403), + [anon_sym_namespace] = ACTIONS(3403), + [anon_sym_using] = ACTIONS(3403), + [anon_sym_static_assert] = ACTIONS(3403), + [anon_sym_concept] = ACTIONS(3403), + [anon_sym_co_return] = ACTIONS(3403), + [anon_sym_co_yield] = ACTIONS(3403), + [anon_sym_R_DQUOTE] = ACTIONS(3405), + [anon_sym_LR_DQUOTE] = ACTIONS(3405), + [anon_sym_uR_DQUOTE] = ACTIONS(3405), + [anon_sym_UR_DQUOTE] = ACTIONS(3405), + [anon_sym_u8R_DQUOTE] = ACTIONS(3405), + [anon_sym_co_await] = ACTIONS(3403), + [anon_sym_new] = ACTIONS(3403), + [anon_sym_requires] = ACTIONS(3403), + [sym_this] = ACTIONS(3403), }, [1217] = { - [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_AMP] = ACTIONS(2464), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym_LBRACE] = ACTIONS(2464), - [anon_sym_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_identifier] = ACTIONS(3391), + [aux_sym_preproc_include_token1] = ACTIONS(3391), + [aux_sym_preproc_def_token1] = ACTIONS(3391), + [aux_sym_preproc_if_token1] = ACTIONS(3391), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3391), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3391), + [sym_preproc_directive] = ACTIONS(3391), + [anon_sym_LPAREN2] = ACTIONS(3393), + [anon_sym_BANG] = ACTIONS(3393), + [anon_sym_TILDE] = ACTIONS(3393), + [anon_sym_DASH] = ACTIONS(3391), + [anon_sym_PLUS] = ACTIONS(3391), + [anon_sym_STAR] = ACTIONS(3393), + [anon_sym_AMP_AMP] = ACTIONS(3393), + [anon_sym_AMP] = ACTIONS(3391), + [anon_sym_SEMI] = ACTIONS(3393), + [anon_sym_typedef] = ACTIONS(3391), + [anon_sym_extern] = ACTIONS(3391), + [anon_sym___attribute__] = ACTIONS(3391), + [anon_sym_COLON_COLON] = ACTIONS(3393), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3393), + [anon_sym___declspec] = ACTIONS(3391), + [anon_sym___based] = ACTIONS(3391), + [anon_sym___cdecl] = ACTIONS(3391), + [anon_sym___clrcall] = ACTIONS(3391), + [anon_sym___stdcall] = ACTIONS(3391), + [anon_sym___fastcall] = ACTIONS(3391), + [anon_sym___thiscall] = ACTIONS(3391), + [anon_sym___vectorcall] = ACTIONS(3391), + [anon_sym_LBRACE] = ACTIONS(3393), + [anon_sym_RBRACE] = ACTIONS(3393), + [anon_sym_LBRACK] = ACTIONS(3391), + [anon_sym_static] = ACTIONS(3391), + [anon_sym_register] = ACTIONS(3391), + [anon_sym_inline] = ACTIONS(3391), + [anon_sym_thread_local] = ACTIONS(3391), + [anon_sym_const] = ACTIONS(3391), + [anon_sym_constexpr] = ACTIONS(3391), + [anon_sym_volatile] = ACTIONS(3391), + [anon_sym_restrict] = ACTIONS(3391), + [anon_sym___restrict__] = ACTIONS(3391), + [anon_sym__Atomic] = ACTIONS(3391), + [anon_sym__Noreturn] = ACTIONS(3391), + [anon_sym_noreturn] = ACTIONS(3391), + [anon_sym_mutable] = ACTIONS(3391), + [anon_sym_constinit] = ACTIONS(3391), + [anon_sym_consteval] = ACTIONS(3391), + [anon_sym_signed] = ACTIONS(3391), + [anon_sym_unsigned] = ACTIONS(3391), + [anon_sym_long] = ACTIONS(3391), + [anon_sym_short] = ACTIONS(3391), + [sym_primitive_type] = ACTIONS(3391), + [anon_sym_enum] = ACTIONS(3391), + [anon_sym_class] = ACTIONS(3391), + [anon_sym_struct] = ACTIONS(3391), + [anon_sym_union] = ACTIONS(3391), + [anon_sym_if] = ACTIONS(3391), + [anon_sym_switch] = ACTIONS(3391), + [anon_sym_case] = ACTIONS(3391), + [anon_sym_default] = ACTIONS(3391), + [anon_sym_while] = ACTIONS(3391), + [anon_sym_do] = ACTIONS(3391), + [anon_sym_for] = ACTIONS(3391), + [anon_sym_return] = ACTIONS(3391), + [anon_sym_break] = ACTIONS(3391), + [anon_sym_continue] = ACTIONS(3391), + [anon_sym_goto] = ACTIONS(3391), + [anon_sym_not] = ACTIONS(3391), + [anon_sym_compl] = ACTIONS(3391), + [anon_sym_DASH_DASH] = ACTIONS(3393), + [anon_sym_PLUS_PLUS] = ACTIONS(3393), + [anon_sym_sizeof] = ACTIONS(3391), + [anon_sym_offsetof] = ACTIONS(3391), + [anon_sym__Generic] = ACTIONS(3391), + [anon_sym_asm] = ACTIONS(3391), + [anon_sym___asm__] = ACTIONS(3391), + [sym_number_literal] = ACTIONS(3393), + [anon_sym_L_SQUOTE] = ACTIONS(3393), + [anon_sym_u_SQUOTE] = ACTIONS(3393), + [anon_sym_U_SQUOTE] = ACTIONS(3393), + [anon_sym_u8_SQUOTE] = ACTIONS(3393), + [anon_sym_SQUOTE] = ACTIONS(3393), + [anon_sym_L_DQUOTE] = ACTIONS(3393), + [anon_sym_u_DQUOTE] = ACTIONS(3393), + [anon_sym_U_DQUOTE] = ACTIONS(3393), + [anon_sym_u8_DQUOTE] = ACTIONS(3393), + [anon_sym_DQUOTE] = ACTIONS(3393), + [sym_true] = ACTIONS(3391), + [sym_false] = ACTIONS(3391), + [anon_sym_NULL] = ACTIONS(3391), + [anon_sym_nullptr] = ACTIONS(3391), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3391), + [anon_sym_decltype] = ACTIONS(3391), + [anon_sym_virtual] = ACTIONS(3391), + [anon_sym_explicit] = ACTIONS(3391), + [anon_sym_typename] = ACTIONS(3391), + [anon_sym_template] = ACTIONS(3391), + [anon_sym_operator] = ACTIONS(3391), + [anon_sym_try] = ACTIONS(3391), + [anon_sym_delete] = ACTIONS(3391), + [anon_sym_throw] = ACTIONS(3391), + [anon_sym_namespace] = ACTIONS(3391), + [anon_sym_using] = ACTIONS(3391), + [anon_sym_static_assert] = ACTIONS(3391), + [anon_sym_concept] = ACTIONS(3391), + [anon_sym_co_return] = ACTIONS(3391), + [anon_sym_co_yield] = ACTIONS(3391), + [anon_sym_R_DQUOTE] = ACTIONS(3393), + [anon_sym_LR_DQUOTE] = ACTIONS(3393), + [anon_sym_uR_DQUOTE] = ACTIONS(3393), + [anon_sym_UR_DQUOTE] = ACTIONS(3393), + [anon_sym_u8R_DQUOTE] = ACTIONS(3393), + [anon_sym_co_await] = ACTIONS(3391), + [anon_sym_new] = ACTIONS(3391), + [anon_sym_requires] = ACTIONS(3391), + [sym_this] = ACTIONS(3391), }, [1218] = { - [sym__expression] = STATE(3589), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_initializer_list] = STATE(5896), - [sym_initializer_pair] = STATE(5896), - [sym_subscript_designator] = STATE(5115), - [sym_field_designator] = STATE(5115), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_initializer_pair_repeat1] = STATE(5115), - [sym_identifier] = ACTIONS(2954), - [anon_sym_LPAREN2] = ACTIONS(984), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1489), - [anon_sym_RBRACE] = ACTIONS(3392), - [anon_sym_LBRACK] = ACTIONS(3358), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym_DOT] = ACTIONS(197), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [sym_identifier] = ACTIONS(3342), + [aux_sym_preproc_include_token1] = ACTIONS(3342), + [aux_sym_preproc_def_token1] = ACTIONS(3342), + [aux_sym_preproc_if_token1] = ACTIONS(3342), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3342), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3342), + [sym_preproc_directive] = ACTIONS(3342), + [anon_sym_LPAREN2] = ACTIONS(3344), + [anon_sym_BANG] = ACTIONS(3344), + [anon_sym_TILDE] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3342), + [anon_sym_PLUS] = ACTIONS(3342), + [anon_sym_STAR] = ACTIONS(3344), + [anon_sym_AMP_AMP] = ACTIONS(3344), + [anon_sym_AMP] = ACTIONS(3342), + [anon_sym_SEMI] = ACTIONS(3344), + [anon_sym_typedef] = ACTIONS(3342), + [anon_sym_extern] = ACTIONS(3342), + [anon_sym___attribute__] = ACTIONS(3342), + [anon_sym_COLON_COLON] = ACTIONS(3344), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3344), + [anon_sym___declspec] = ACTIONS(3342), + [anon_sym___based] = ACTIONS(3342), + [anon_sym___cdecl] = ACTIONS(3342), + [anon_sym___clrcall] = ACTIONS(3342), + [anon_sym___stdcall] = ACTIONS(3342), + [anon_sym___fastcall] = ACTIONS(3342), + [anon_sym___thiscall] = ACTIONS(3342), + [anon_sym___vectorcall] = ACTIONS(3342), + [anon_sym_LBRACE] = ACTIONS(3344), + [anon_sym_RBRACE] = ACTIONS(3344), + [anon_sym_LBRACK] = ACTIONS(3342), + [anon_sym_static] = ACTIONS(3342), + [anon_sym_register] = ACTIONS(3342), + [anon_sym_inline] = ACTIONS(3342), + [anon_sym_thread_local] = ACTIONS(3342), + [anon_sym_const] = ACTIONS(3342), + [anon_sym_constexpr] = ACTIONS(3342), + [anon_sym_volatile] = ACTIONS(3342), + [anon_sym_restrict] = ACTIONS(3342), + [anon_sym___restrict__] = ACTIONS(3342), + [anon_sym__Atomic] = ACTIONS(3342), + [anon_sym__Noreturn] = ACTIONS(3342), + [anon_sym_noreturn] = ACTIONS(3342), + [anon_sym_mutable] = ACTIONS(3342), + [anon_sym_constinit] = ACTIONS(3342), + [anon_sym_consteval] = ACTIONS(3342), + [anon_sym_signed] = ACTIONS(3342), + [anon_sym_unsigned] = ACTIONS(3342), + [anon_sym_long] = ACTIONS(3342), + [anon_sym_short] = ACTIONS(3342), + [sym_primitive_type] = ACTIONS(3342), + [anon_sym_enum] = ACTIONS(3342), + [anon_sym_class] = ACTIONS(3342), + [anon_sym_struct] = ACTIONS(3342), + [anon_sym_union] = ACTIONS(3342), + [anon_sym_if] = ACTIONS(3342), + [anon_sym_switch] = ACTIONS(3342), + [anon_sym_case] = ACTIONS(3342), + [anon_sym_default] = ACTIONS(3342), + [anon_sym_while] = ACTIONS(3342), + [anon_sym_do] = ACTIONS(3342), + [anon_sym_for] = ACTIONS(3342), + [anon_sym_return] = ACTIONS(3342), + [anon_sym_break] = ACTIONS(3342), + [anon_sym_continue] = ACTIONS(3342), + [anon_sym_goto] = ACTIONS(3342), + [anon_sym_not] = ACTIONS(3342), + [anon_sym_compl] = ACTIONS(3342), + [anon_sym_DASH_DASH] = ACTIONS(3344), + [anon_sym_PLUS_PLUS] = ACTIONS(3344), + [anon_sym_sizeof] = ACTIONS(3342), + [anon_sym_offsetof] = ACTIONS(3342), + [anon_sym__Generic] = ACTIONS(3342), + [anon_sym_asm] = ACTIONS(3342), + [anon_sym___asm__] = ACTIONS(3342), + [sym_number_literal] = ACTIONS(3344), + [anon_sym_L_SQUOTE] = ACTIONS(3344), + [anon_sym_u_SQUOTE] = ACTIONS(3344), + [anon_sym_U_SQUOTE] = ACTIONS(3344), + [anon_sym_u8_SQUOTE] = ACTIONS(3344), + [anon_sym_SQUOTE] = ACTIONS(3344), + [anon_sym_L_DQUOTE] = ACTIONS(3344), + [anon_sym_u_DQUOTE] = ACTIONS(3344), + [anon_sym_U_DQUOTE] = ACTIONS(3344), + [anon_sym_u8_DQUOTE] = ACTIONS(3344), + [anon_sym_DQUOTE] = ACTIONS(3344), + [sym_true] = ACTIONS(3342), + [sym_false] = ACTIONS(3342), + [anon_sym_NULL] = ACTIONS(3342), + [anon_sym_nullptr] = ACTIONS(3342), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3342), + [anon_sym_decltype] = ACTIONS(3342), + [anon_sym_virtual] = ACTIONS(3342), + [anon_sym_explicit] = ACTIONS(3342), + [anon_sym_typename] = ACTIONS(3342), + [anon_sym_template] = ACTIONS(3342), + [anon_sym_operator] = ACTIONS(3342), + [anon_sym_try] = ACTIONS(3342), + [anon_sym_delete] = ACTIONS(3342), + [anon_sym_throw] = ACTIONS(3342), + [anon_sym_namespace] = ACTIONS(3342), + [anon_sym_using] = ACTIONS(3342), + [anon_sym_static_assert] = ACTIONS(3342), + [anon_sym_concept] = ACTIONS(3342), + [anon_sym_co_return] = ACTIONS(3342), + [anon_sym_co_yield] = ACTIONS(3342), + [anon_sym_R_DQUOTE] = ACTIONS(3344), + [anon_sym_LR_DQUOTE] = ACTIONS(3344), + [anon_sym_uR_DQUOTE] = ACTIONS(3344), + [anon_sym_UR_DQUOTE] = ACTIONS(3344), + [anon_sym_u8R_DQUOTE] = ACTIONS(3344), + [anon_sym_co_await] = ACTIONS(3342), + [anon_sym_new] = ACTIONS(3342), + [anon_sym_requires] = ACTIONS(3342), + [sym_this] = ACTIONS(3342), }, [1219] = { - [sym__expression] = STATE(3589), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_initializer_list] = STATE(5896), - [sym_initializer_pair] = STATE(5896), - [sym_subscript_designator] = STATE(5115), - [sym_field_designator] = STATE(5115), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_initializer_pair_repeat1] = STATE(5115), - [sym_identifier] = ACTIONS(2954), - [anon_sym_LPAREN2] = ACTIONS(984), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1489), - [anon_sym_RBRACE] = ACTIONS(3394), - [anon_sym_LBRACK] = ACTIONS(3358), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym_DOT] = ACTIONS(197), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [sym_identifier] = ACTIONS(3168), + [aux_sym_preproc_include_token1] = ACTIONS(3168), + [aux_sym_preproc_def_token1] = ACTIONS(3168), + [aux_sym_preproc_if_token1] = ACTIONS(3168), + [aux_sym_preproc_if_token2] = ACTIONS(3168), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3168), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3168), + [sym_preproc_directive] = ACTIONS(3168), + [anon_sym_LPAREN2] = ACTIONS(3170), + [anon_sym_BANG] = ACTIONS(3170), + [anon_sym_TILDE] = ACTIONS(3170), + [anon_sym_DASH] = ACTIONS(3168), + [anon_sym_PLUS] = ACTIONS(3168), + [anon_sym_STAR] = ACTIONS(3170), + [anon_sym_AMP_AMP] = ACTIONS(3170), + [anon_sym_AMP] = ACTIONS(3168), + [anon_sym_SEMI] = ACTIONS(3170), + [anon_sym_typedef] = ACTIONS(3168), + [anon_sym_extern] = ACTIONS(3168), + [anon_sym___attribute__] = ACTIONS(3168), + [anon_sym_COLON_COLON] = ACTIONS(3170), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3170), + [anon_sym___declspec] = ACTIONS(3168), + [anon_sym___based] = ACTIONS(3168), + [anon_sym___cdecl] = ACTIONS(3168), + [anon_sym___clrcall] = ACTIONS(3168), + [anon_sym___stdcall] = ACTIONS(3168), + [anon_sym___fastcall] = ACTIONS(3168), + [anon_sym___thiscall] = ACTIONS(3168), + [anon_sym___vectorcall] = ACTIONS(3168), + [anon_sym_LBRACE] = ACTIONS(3170), + [anon_sym_LBRACK] = ACTIONS(3168), + [anon_sym_static] = ACTIONS(3168), + [anon_sym_register] = ACTIONS(3168), + [anon_sym_inline] = ACTIONS(3168), + [anon_sym_thread_local] = ACTIONS(3168), + [anon_sym_const] = ACTIONS(3168), + [anon_sym_constexpr] = ACTIONS(3168), + [anon_sym_volatile] = ACTIONS(3168), + [anon_sym_restrict] = ACTIONS(3168), + [anon_sym___restrict__] = ACTIONS(3168), + [anon_sym__Atomic] = ACTIONS(3168), + [anon_sym__Noreturn] = ACTIONS(3168), + [anon_sym_noreturn] = ACTIONS(3168), + [anon_sym_mutable] = ACTIONS(3168), + [anon_sym_constinit] = ACTIONS(3168), + [anon_sym_consteval] = ACTIONS(3168), + [anon_sym_signed] = ACTIONS(3168), + [anon_sym_unsigned] = ACTIONS(3168), + [anon_sym_long] = ACTIONS(3168), + [anon_sym_short] = ACTIONS(3168), + [sym_primitive_type] = ACTIONS(3168), + [anon_sym_enum] = ACTIONS(3168), + [anon_sym_class] = ACTIONS(3168), + [anon_sym_struct] = ACTIONS(3168), + [anon_sym_union] = ACTIONS(3168), + [anon_sym_if] = ACTIONS(3168), + [anon_sym_switch] = ACTIONS(3168), + [anon_sym_case] = ACTIONS(3168), + [anon_sym_default] = ACTIONS(3168), + [anon_sym_while] = ACTIONS(3168), + [anon_sym_do] = ACTIONS(3168), + [anon_sym_for] = ACTIONS(3168), + [anon_sym_return] = ACTIONS(3168), + [anon_sym_break] = ACTIONS(3168), + [anon_sym_continue] = ACTIONS(3168), + [anon_sym_goto] = ACTIONS(3168), + [anon_sym_not] = ACTIONS(3168), + [anon_sym_compl] = ACTIONS(3168), + [anon_sym_DASH_DASH] = ACTIONS(3170), + [anon_sym_PLUS_PLUS] = ACTIONS(3170), + [anon_sym_sizeof] = ACTIONS(3168), + [anon_sym_offsetof] = ACTIONS(3168), + [anon_sym__Generic] = ACTIONS(3168), + [anon_sym_asm] = ACTIONS(3168), + [anon_sym___asm__] = ACTIONS(3168), + [sym_number_literal] = ACTIONS(3170), + [anon_sym_L_SQUOTE] = ACTIONS(3170), + [anon_sym_u_SQUOTE] = ACTIONS(3170), + [anon_sym_U_SQUOTE] = ACTIONS(3170), + [anon_sym_u8_SQUOTE] = ACTIONS(3170), + [anon_sym_SQUOTE] = ACTIONS(3170), + [anon_sym_L_DQUOTE] = ACTIONS(3170), + [anon_sym_u_DQUOTE] = ACTIONS(3170), + [anon_sym_U_DQUOTE] = ACTIONS(3170), + [anon_sym_u8_DQUOTE] = ACTIONS(3170), + [anon_sym_DQUOTE] = ACTIONS(3170), + [sym_true] = ACTIONS(3168), + [sym_false] = ACTIONS(3168), + [anon_sym_NULL] = ACTIONS(3168), + [anon_sym_nullptr] = ACTIONS(3168), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3168), + [anon_sym_decltype] = ACTIONS(3168), + [anon_sym_virtual] = ACTIONS(3168), + [anon_sym_explicit] = ACTIONS(3168), + [anon_sym_typename] = ACTIONS(3168), + [anon_sym_template] = ACTIONS(3168), + [anon_sym_operator] = ACTIONS(3168), + [anon_sym_try] = ACTIONS(3168), + [anon_sym_delete] = ACTIONS(3168), + [anon_sym_throw] = ACTIONS(3168), + [anon_sym_namespace] = ACTIONS(3168), + [anon_sym_using] = ACTIONS(3168), + [anon_sym_static_assert] = ACTIONS(3168), + [anon_sym_concept] = ACTIONS(3168), + [anon_sym_co_return] = ACTIONS(3168), + [anon_sym_co_yield] = ACTIONS(3168), + [anon_sym_R_DQUOTE] = ACTIONS(3170), + [anon_sym_LR_DQUOTE] = ACTIONS(3170), + [anon_sym_uR_DQUOTE] = ACTIONS(3170), + [anon_sym_UR_DQUOTE] = ACTIONS(3170), + [anon_sym_u8R_DQUOTE] = ACTIONS(3170), + [anon_sym_co_await] = ACTIONS(3168), + [anon_sym_new] = ACTIONS(3168), + [anon_sym_requires] = ACTIONS(3168), + [sym_this] = ACTIONS(3168), }, [1220] = { - [sym__expression] = STATE(3589), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_initializer_list] = STATE(5896), - [sym_initializer_pair] = STATE(5896), - [sym_subscript_designator] = STATE(5115), - [sym_field_designator] = STATE(5115), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_initializer_pair_repeat1] = STATE(5115), - [sym_identifier] = ACTIONS(2954), - [anon_sym_LPAREN2] = ACTIONS(984), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1489), - [anon_sym_RBRACE] = ACTIONS(3396), - [anon_sym_LBRACK] = ACTIONS(3358), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym_DOT] = ACTIONS(197), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [sym_identifier] = ACTIONS(3278), + [aux_sym_preproc_include_token1] = ACTIONS(3278), + [aux_sym_preproc_def_token1] = ACTIONS(3278), + [aux_sym_preproc_if_token1] = ACTIONS(3278), + [aux_sym_preproc_if_token2] = ACTIONS(3278), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3278), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3278), + [sym_preproc_directive] = ACTIONS(3278), + [anon_sym_LPAREN2] = ACTIONS(3280), + [anon_sym_BANG] = ACTIONS(3280), + [anon_sym_TILDE] = ACTIONS(3280), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3280), + [anon_sym_AMP_AMP] = ACTIONS(3280), + [anon_sym_AMP] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3280), + [anon_sym_typedef] = ACTIONS(3278), + [anon_sym_extern] = ACTIONS(3278), + [anon_sym___attribute__] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3280), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3280), + [anon_sym___declspec] = ACTIONS(3278), + [anon_sym___based] = ACTIONS(3278), + [anon_sym___cdecl] = ACTIONS(3278), + [anon_sym___clrcall] = ACTIONS(3278), + [anon_sym___stdcall] = ACTIONS(3278), + [anon_sym___fastcall] = ACTIONS(3278), + [anon_sym___thiscall] = ACTIONS(3278), + [anon_sym___vectorcall] = ACTIONS(3278), + [anon_sym_LBRACE] = ACTIONS(3280), + [anon_sym_LBRACK] = ACTIONS(3278), + [anon_sym_static] = ACTIONS(3278), + [anon_sym_register] = ACTIONS(3278), + [anon_sym_inline] = ACTIONS(3278), + [anon_sym_thread_local] = ACTIONS(3278), + [anon_sym_const] = ACTIONS(3278), + [anon_sym_constexpr] = ACTIONS(3278), + [anon_sym_volatile] = ACTIONS(3278), + [anon_sym_restrict] = ACTIONS(3278), + [anon_sym___restrict__] = ACTIONS(3278), + [anon_sym__Atomic] = ACTIONS(3278), + [anon_sym__Noreturn] = ACTIONS(3278), + [anon_sym_noreturn] = ACTIONS(3278), + [anon_sym_mutable] = ACTIONS(3278), + [anon_sym_constinit] = ACTIONS(3278), + [anon_sym_consteval] = ACTIONS(3278), + [anon_sym_signed] = ACTIONS(3278), + [anon_sym_unsigned] = ACTIONS(3278), + [anon_sym_long] = ACTIONS(3278), + [anon_sym_short] = ACTIONS(3278), + [sym_primitive_type] = ACTIONS(3278), + [anon_sym_enum] = ACTIONS(3278), + [anon_sym_class] = ACTIONS(3278), + [anon_sym_struct] = ACTIONS(3278), + [anon_sym_union] = ACTIONS(3278), + [anon_sym_if] = ACTIONS(3278), + [anon_sym_switch] = ACTIONS(3278), + [anon_sym_case] = ACTIONS(3278), + [anon_sym_default] = ACTIONS(3278), + [anon_sym_while] = ACTIONS(3278), + [anon_sym_do] = ACTIONS(3278), + [anon_sym_for] = ACTIONS(3278), + [anon_sym_return] = ACTIONS(3278), + [anon_sym_break] = ACTIONS(3278), + [anon_sym_continue] = ACTIONS(3278), + [anon_sym_goto] = ACTIONS(3278), + [anon_sym_not] = ACTIONS(3278), + [anon_sym_compl] = ACTIONS(3278), + [anon_sym_DASH_DASH] = ACTIONS(3280), + [anon_sym_PLUS_PLUS] = ACTIONS(3280), + [anon_sym_sizeof] = ACTIONS(3278), + [anon_sym_offsetof] = ACTIONS(3278), + [anon_sym__Generic] = ACTIONS(3278), + [anon_sym_asm] = ACTIONS(3278), + [anon_sym___asm__] = ACTIONS(3278), + [sym_number_literal] = ACTIONS(3280), + [anon_sym_L_SQUOTE] = ACTIONS(3280), + [anon_sym_u_SQUOTE] = ACTIONS(3280), + [anon_sym_U_SQUOTE] = ACTIONS(3280), + [anon_sym_u8_SQUOTE] = ACTIONS(3280), + [anon_sym_SQUOTE] = ACTIONS(3280), + [anon_sym_L_DQUOTE] = ACTIONS(3280), + [anon_sym_u_DQUOTE] = ACTIONS(3280), + [anon_sym_U_DQUOTE] = ACTIONS(3280), + [anon_sym_u8_DQUOTE] = ACTIONS(3280), + [anon_sym_DQUOTE] = ACTIONS(3280), + [sym_true] = ACTIONS(3278), + [sym_false] = ACTIONS(3278), + [anon_sym_NULL] = ACTIONS(3278), + [anon_sym_nullptr] = ACTIONS(3278), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3278), + [anon_sym_decltype] = ACTIONS(3278), + [anon_sym_virtual] = ACTIONS(3278), + [anon_sym_explicit] = ACTIONS(3278), + [anon_sym_typename] = ACTIONS(3278), + [anon_sym_template] = ACTIONS(3278), + [anon_sym_operator] = ACTIONS(3278), + [anon_sym_try] = ACTIONS(3278), + [anon_sym_delete] = ACTIONS(3278), + [anon_sym_throw] = ACTIONS(3278), + [anon_sym_namespace] = ACTIONS(3278), + [anon_sym_using] = ACTIONS(3278), + [anon_sym_static_assert] = ACTIONS(3278), + [anon_sym_concept] = ACTIONS(3278), + [anon_sym_co_return] = ACTIONS(3278), + [anon_sym_co_yield] = ACTIONS(3278), + [anon_sym_R_DQUOTE] = ACTIONS(3280), + [anon_sym_LR_DQUOTE] = ACTIONS(3280), + [anon_sym_uR_DQUOTE] = ACTIONS(3280), + [anon_sym_UR_DQUOTE] = ACTIONS(3280), + [anon_sym_u8R_DQUOTE] = ACTIONS(3280), + [anon_sym_co_await] = ACTIONS(3278), + [anon_sym_new] = ACTIONS(3278), + [anon_sym_requires] = ACTIONS(3278), + [sym_this] = ACTIONS(3278), }, [1221] = { - [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_AMP] = ACTIONS(2464), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym_LBRACE] = ACTIONS(2464), - [anon_sym_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_identifier] = ACTIONS(3376), + [aux_sym_preproc_include_token1] = ACTIONS(3376), + [aux_sym_preproc_def_token1] = ACTIONS(3376), + [aux_sym_preproc_if_token1] = ACTIONS(3376), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3376), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3376), + [sym_preproc_directive] = ACTIONS(3376), + [anon_sym_LPAREN2] = ACTIONS(3378), + [anon_sym_BANG] = ACTIONS(3378), + [anon_sym_TILDE] = ACTIONS(3378), + [anon_sym_DASH] = ACTIONS(3376), + [anon_sym_PLUS] = ACTIONS(3376), + [anon_sym_STAR] = ACTIONS(3378), + [anon_sym_AMP_AMP] = ACTIONS(3378), + [anon_sym_AMP] = ACTIONS(3376), + [anon_sym_SEMI] = ACTIONS(3378), + [anon_sym_typedef] = ACTIONS(3376), + [anon_sym_extern] = ACTIONS(3376), + [anon_sym___attribute__] = ACTIONS(3376), + [anon_sym_COLON_COLON] = ACTIONS(3378), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3378), + [anon_sym___declspec] = ACTIONS(3376), + [anon_sym___based] = ACTIONS(3376), + [anon_sym___cdecl] = ACTIONS(3376), + [anon_sym___clrcall] = ACTIONS(3376), + [anon_sym___stdcall] = ACTIONS(3376), + [anon_sym___fastcall] = ACTIONS(3376), + [anon_sym___thiscall] = ACTIONS(3376), + [anon_sym___vectorcall] = ACTIONS(3376), + [anon_sym_LBRACE] = ACTIONS(3378), + [anon_sym_RBRACE] = ACTIONS(3378), + [anon_sym_LBRACK] = ACTIONS(3376), + [anon_sym_static] = ACTIONS(3376), + [anon_sym_register] = ACTIONS(3376), + [anon_sym_inline] = ACTIONS(3376), + [anon_sym_thread_local] = ACTIONS(3376), + [anon_sym_const] = ACTIONS(3376), + [anon_sym_constexpr] = ACTIONS(3376), + [anon_sym_volatile] = ACTIONS(3376), + [anon_sym_restrict] = ACTIONS(3376), + [anon_sym___restrict__] = ACTIONS(3376), + [anon_sym__Atomic] = ACTIONS(3376), + [anon_sym__Noreturn] = ACTIONS(3376), + [anon_sym_noreturn] = ACTIONS(3376), + [anon_sym_mutable] = ACTIONS(3376), + [anon_sym_constinit] = ACTIONS(3376), + [anon_sym_consteval] = ACTIONS(3376), + [anon_sym_signed] = ACTIONS(3376), + [anon_sym_unsigned] = ACTIONS(3376), + [anon_sym_long] = ACTIONS(3376), + [anon_sym_short] = ACTIONS(3376), + [sym_primitive_type] = ACTIONS(3376), + [anon_sym_enum] = ACTIONS(3376), + [anon_sym_class] = ACTIONS(3376), + [anon_sym_struct] = ACTIONS(3376), + [anon_sym_union] = ACTIONS(3376), + [anon_sym_if] = ACTIONS(3376), + [anon_sym_switch] = ACTIONS(3376), + [anon_sym_case] = ACTIONS(3376), + [anon_sym_default] = ACTIONS(3376), + [anon_sym_while] = ACTIONS(3376), + [anon_sym_do] = ACTIONS(3376), + [anon_sym_for] = ACTIONS(3376), + [anon_sym_return] = ACTIONS(3376), + [anon_sym_break] = ACTIONS(3376), + [anon_sym_continue] = ACTIONS(3376), + [anon_sym_goto] = ACTIONS(3376), + [anon_sym_not] = ACTIONS(3376), + [anon_sym_compl] = ACTIONS(3376), + [anon_sym_DASH_DASH] = ACTIONS(3378), + [anon_sym_PLUS_PLUS] = ACTIONS(3378), + [anon_sym_sizeof] = ACTIONS(3376), + [anon_sym_offsetof] = ACTIONS(3376), + [anon_sym__Generic] = ACTIONS(3376), + [anon_sym_asm] = ACTIONS(3376), + [anon_sym___asm__] = ACTIONS(3376), + [sym_number_literal] = ACTIONS(3378), + [anon_sym_L_SQUOTE] = ACTIONS(3378), + [anon_sym_u_SQUOTE] = ACTIONS(3378), + [anon_sym_U_SQUOTE] = ACTIONS(3378), + [anon_sym_u8_SQUOTE] = ACTIONS(3378), + [anon_sym_SQUOTE] = ACTIONS(3378), + [anon_sym_L_DQUOTE] = ACTIONS(3378), + [anon_sym_u_DQUOTE] = ACTIONS(3378), + [anon_sym_U_DQUOTE] = ACTIONS(3378), + [anon_sym_u8_DQUOTE] = ACTIONS(3378), + [anon_sym_DQUOTE] = ACTIONS(3378), + [sym_true] = ACTIONS(3376), + [sym_false] = ACTIONS(3376), + [anon_sym_NULL] = ACTIONS(3376), + [anon_sym_nullptr] = ACTIONS(3376), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3376), + [anon_sym_decltype] = ACTIONS(3376), + [anon_sym_virtual] = ACTIONS(3376), + [anon_sym_explicit] = ACTIONS(3376), + [anon_sym_typename] = ACTIONS(3376), + [anon_sym_template] = ACTIONS(3376), + [anon_sym_operator] = ACTIONS(3376), + [anon_sym_try] = ACTIONS(3376), + [anon_sym_delete] = ACTIONS(3376), + [anon_sym_throw] = ACTIONS(3376), + [anon_sym_namespace] = ACTIONS(3376), + [anon_sym_using] = ACTIONS(3376), + [anon_sym_static_assert] = ACTIONS(3376), + [anon_sym_concept] = ACTIONS(3376), + [anon_sym_co_return] = ACTIONS(3376), + [anon_sym_co_yield] = ACTIONS(3376), + [anon_sym_R_DQUOTE] = ACTIONS(3378), + [anon_sym_LR_DQUOTE] = ACTIONS(3378), + [anon_sym_uR_DQUOTE] = ACTIONS(3378), + [anon_sym_UR_DQUOTE] = ACTIONS(3378), + [anon_sym_u8R_DQUOTE] = ACTIONS(3378), + [anon_sym_co_await] = ACTIONS(3376), + [anon_sym_new] = ACTIONS(3376), + [anon_sym_requires] = ACTIONS(3376), + [sym_this] = ACTIONS(3376), }, [1222] = { - [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_AMP] = ACTIONS(2464), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym_LBRACE] = ACTIONS(2464), - [anon_sym_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_identifier] = ACTIONS(3274), + [aux_sym_preproc_include_token1] = ACTIONS(3274), + [aux_sym_preproc_def_token1] = ACTIONS(3274), + [aux_sym_preproc_if_token1] = ACTIONS(3274), + [aux_sym_preproc_if_token2] = ACTIONS(3274), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3274), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3274), + [sym_preproc_directive] = ACTIONS(3274), + [anon_sym_LPAREN2] = ACTIONS(3276), + [anon_sym_BANG] = ACTIONS(3276), + [anon_sym_TILDE] = ACTIONS(3276), + [anon_sym_DASH] = ACTIONS(3274), + [anon_sym_PLUS] = ACTIONS(3274), + [anon_sym_STAR] = ACTIONS(3276), + [anon_sym_AMP_AMP] = ACTIONS(3276), + [anon_sym_AMP] = ACTIONS(3274), + [anon_sym_SEMI] = ACTIONS(3276), + [anon_sym_typedef] = ACTIONS(3274), + [anon_sym_extern] = ACTIONS(3274), + [anon_sym___attribute__] = ACTIONS(3274), + [anon_sym_COLON_COLON] = ACTIONS(3276), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3276), + [anon_sym___declspec] = ACTIONS(3274), + [anon_sym___based] = ACTIONS(3274), + [anon_sym___cdecl] = ACTIONS(3274), + [anon_sym___clrcall] = ACTIONS(3274), + [anon_sym___stdcall] = ACTIONS(3274), + [anon_sym___fastcall] = ACTIONS(3274), + [anon_sym___thiscall] = ACTIONS(3274), + [anon_sym___vectorcall] = ACTIONS(3274), + [anon_sym_LBRACE] = ACTIONS(3276), + [anon_sym_LBRACK] = ACTIONS(3274), + [anon_sym_static] = ACTIONS(3274), + [anon_sym_register] = ACTIONS(3274), + [anon_sym_inline] = ACTIONS(3274), + [anon_sym_thread_local] = ACTIONS(3274), + [anon_sym_const] = ACTIONS(3274), + [anon_sym_constexpr] = ACTIONS(3274), + [anon_sym_volatile] = ACTIONS(3274), + [anon_sym_restrict] = ACTIONS(3274), + [anon_sym___restrict__] = ACTIONS(3274), + [anon_sym__Atomic] = ACTIONS(3274), + [anon_sym__Noreturn] = ACTIONS(3274), + [anon_sym_noreturn] = ACTIONS(3274), + [anon_sym_mutable] = ACTIONS(3274), + [anon_sym_constinit] = ACTIONS(3274), + [anon_sym_consteval] = ACTIONS(3274), + [anon_sym_signed] = ACTIONS(3274), + [anon_sym_unsigned] = ACTIONS(3274), + [anon_sym_long] = ACTIONS(3274), + [anon_sym_short] = ACTIONS(3274), + [sym_primitive_type] = ACTIONS(3274), + [anon_sym_enum] = ACTIONS(3274), + [anon_sym_class] = ACTIONS(3274), + [anon_sym_struct] = ACTIONS(3274), + [anon_sym_union] = ACTIONS(3274), + [anon_sym_if] = ACTIONS(3274), + [anon_sym_switch] = ACTIONS(3274), + [anon_sym_case] = ACTIONS(3274), + [anon_sym_default] = ACTIONS(3274), + [anon_sym_while] = ACTIONS(3274), + [anon_sym_do] = ACTIONS(3274), + [anon_sym_for] = ACTIONS(3274), + [anon_sym_return] = ACTIONS(3274), + [anon_sym_break] = ACTIONS(3274), + [anon_sym_continue] = ACTIONS(3274), + [anon_sym_goto] = ACTIONS(3274), + [anon_sym_not] = ACTIONS(3274), + [anon_sym_compl] = ACTIONS(3274), + [anon_sym_DASH_DASH] = ACTIONS(3276), + [anon_sym_PLUS_PLUS] = ACTIONS(3276), + [anon_sym_sizeof] = ACTIONS(3274), + [anon_sym_offsetof] = ACTIONS(3274), + [anon_sym__Generic] = ACTIONS(3274), + [anon_sym_asm] = ACTIONS(3274), + [anon_sym___asm__] = ACTIONS(3274), + [sym_number_literal] = ACTIONS(3276), + [anon_sym_L_SQUOTE] = ACTIONS(3276), + [anon_sym_u_SQUOTE] = ACTIONS(3276), + [anon_sym_U_SQUOTE] = ACTIONS(3276), + [anon_sym_u8_SQUOTE] = ACTIONS(3276), + [anon_sym_SQUOTE] = ACTIONS(3276), + [anon_sym_L_DQUOTE] = ACTIONS(3276), + [anon_sym_u_DQUOTE] = ACTIONS(3276), + [anon_sym_U_DQUOTE] = ACTIONS(3276), + [anon_sym_u8_DQUOTE] = ACTIONS(3276), + [anon_sym_DQUOTE] = ACTIONS(3276), + [sym_true] = ACTIONS(3274), + [sym_false] = ACTIONS(3274), + [anon_sym_NULL] = ACTIONS(3274), + [anon_sym_nullptr] = ACTIONS(3274), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3274), + [anon_sym_decltype] = ACTIONS(3274), + [anon_sym_virtual] = ACTIONS(3274), + [anon_sym_explicit] = ACTIONS(3274), + [anon_sym_typename] = ACTIONS(3274), + [anon_sym_template] = ACTIONS(3274), + [anon_sym_operator] = ACTIONS(3274), + [anon_sym_try] = ACTIONS(3274), + [anon_sym_delete] = ACTIONS(3274), + [anon_sym_throw] = ACTIONS(3274), + [anon_sym_namespace] = ACTIONS(3274), + [anon_sym_using] = ACTIONS(3274), + [anon_sym_static_assert] = ACTIONS(3274), + [anon_sym_concept] = ACTIONS(3274), + [anon_sym_co_return] = ACTIONS(3274), + [anon_sym_co_yield] = ACTIONS(3274), + [anon_sym_R_DQUOTE] = ACTIONS(3276), + [anon_sym_LR_DQUOTE] = ACTIONS(3276), + [anon_sym_uR_DQUOTE] = ACTIONS(3276), + [anon_sym_UR_DQUOTE] = ACTIONS(3276), + [anon_sym_u8R_DQUOTE] = ACTIONS(3276), + [anon_sym_co_await] = ACTIONS(3274), + [anon_sym_new] = ACTIONS(3274), + [anon_sym_requires] = ACTIONS(3274), + [sym_this] = ACTIONS(3274), }, [1223] = { - [sym__expression] = STATE(3589), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_initializer_list] = STATE(5896), - [sym_initializer_pair] = STATE(5896), - [sym_subscript_designator] = STATE(5115), - [sym_field_designator] = STATE(5115), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_initializer_pair_repeat1] = STATE(5115), - [sym_identifier] = ACTIONS(2954), - [anon_sym_LPAREN2] = ACTIONS(984), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1489), - [anon_sym_RBRACE] = ACTIONS(3398), - [anon_sym_LBRACK] = ACTIONS(3358), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym_DOT] = ACTIONS(197), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [sym_identifier] = ACTIONS(3372), + [aux_sym_preproc_include_token1] = ACTIONS(3372), + [aux_sym_preproc_def_token1] = ACTIONS(3372), + [aux_sym_preproc_if_token1] = ACTIONS(3372), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3372), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3372), + [sym_preproc_directive] = ACTIONS(3372), + [anon_sym_LPAREN2] = ACTIONS(3374), + [anon_sym_BANG] = ACTIONS(3374), + [anon_sym_TILDE] = ACTIONS(3374), + [anon_sym_DASH] = ACTIONS(3372), + [anon_sym_PLUS] = ACTIONS(3372), + [anon_sym_STAR] = ACTIONS(3374), + [anon_sym_AMP_AMP] = ACTIONS(3374), + [anon_sym_AMP] = ACTIONS(3372), + [anon_sym_SEMI] = ACTIONS(3374), + [anon_sym_typedef] = ACTIONS(3372), + [anon_sym_extern] = ACTIONS(3372), + [anon_sym___attribute__] = ACTIONS(3372), + [anon_sym_COLON_COLON] = ACTIONS(3374), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3374), + [anon_sym___declspec] = ACTIONS(3372), + [anon_sym___based] = ACTIONS(3372), + [anon_sym___cdecl] = ACTIONS(3372), + [anon_sym___clrcall] = ACTIONS(3372), + [anon_sym___stdcall] = ACTIONS(3372), + [anon_sym___fastcall] = ACTIONS(3372), + [anon_sym___thiscall] = ACTIONS(3372), + [anon_sym___vectorcall] = ACTIONS(3372), + [anon_sym_LBRACE] = ACTIONS(3374), + [anon_sym_RBRACE] = ACTIONS(3374), + [anon_sym_LBRACK] = ACTIONS(3372), + [anon_sym_static] = ACTIONS(3372), + [anon_sym_register] = ACTIONS(3372), + [anon_sym_inline] = ACTIONS(3372), + [anon_sym_thread_local] = ACTIONS(3372), + [anon_sym_const] = ACTIONS(3372), + [anon_sym_constexpr] = ACTIONS(3372), + [anon_sym_volatile] = ACTIONS(3372), + [anon_sym_restrict] = ACTIONS(3372), + [anon_sym___restrict__] = ACTIONS(3372), + [anon_sym__Atomic] = ACTIONS(3372), + [anon_sym__Noreturn] = ACTIONS(3372), + [anon_sym_noreturn] = ACTIONS(3372), + [anon_sym_mutable] = ACTIONS(3372), + [anon_sym_constinit] = ACTIONS(3372), + [anon_sym_consteval] = ACTIONS(3372), + [anon_sym_signed] = ACTIONS(3372), + [anon_sym_unsigned] = ACTIONS(3372), + [anon_sym_long] = ACTIONS(3372), + [anon_sym_short] = ACTIONS(3372), + [sym_primitive_type] = ACTIONS(3372), + [anon_sym_enum] = ACTIONS(3372), + [anon_sym_class] = ACTIONS(3372), + [anon_sym_struct] = ACTIONS(3372), + [anon_sym_union] = ACTIONS(3372), + [anon_sym_if] = ACTIONS(3372), + [anon_sym_switch] = ACTIONS(3372), + [anon_sym_case] = ACTIONS(3372), + [anon_sym_default] = ACTIONS(3372), + [anon_sym_while] = ACTIONS(3372), + [anon_sym_do] = ACTIONS(3372), + [anon_sym_for] = ACTIONS(3372), + [anon_sym_return] = ACTIONS(3372), + [anon_sym_break] = ACTIONS(3372), + [anon_sym_continue] = ACTIONS(3372), + [anon_sym_goto] = ACTIONS(3372), + [anon_sym_not] = ACTIONS(3372), + [anon_sym_compl] = ACTIONS(3372), + [anon_sym_DASH_DASH] = ACTIONS(3374), + [anon_sym_PLUS_PLUS] = ACTIONS(3374), + [anon_sym_sizeof] = ACTIONS(3372), + [anon_sym_offsetof] = ACTIONS(3372), + [anon_sym__Generic] = ACTIONS(3372), + [anon_sym_asm] = ACTIONS(3372), + [anon_sym___asm__] = ACTIONS(3372), + [sym_number_literal] = ACTIONS(3374), + [anon_sym_L_SQUOTE] = ACTIONS(3374), + [anon_sym_u_SQUOTE] = ACTIONS(3374), + [anon_sym_U_SQUOTE] = ACTIONS(3374), + [anon_sym_u8_SQUOTE] = ACTIONS(3374), + [anon_sym_SQUOTE] = ACTIONS(3374), + [anon_sym_L_DQUOTE] = ACTIONS(3374), + [anon_sym_u_DQUOTE] = ACTIONS(3374), + [anon_sym_U_DQUOTE] = ACTIONS(3374), + [anon_sym_u8_DQUOTE] = ACTIONS(3374), + [anon_sym_DQUOTE] = ACTIONS(3374), + [sym_true] = ACTIONS(3372), + [sym_false] = ACTIONS(3372), + [anon_sym_NULL] = ACTIONS(3372), + [anon_sym_nullptr] = ACTIONS(3372), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3372), + [anon_sym_decltype] = ACTIONS(3372), + [anon_sym_virtual] = ACTIONS(3372), + [anon_sym_explicit] = ACTIONS(3372), + [anon_sym_typename] = ACTIONS(3372), + [anon_sym_template] = ACTIONS(3372), + [anon_sym_operator] = ACTIONS(3372), + [anon_sym_try] = ACTIONS(3372), + [anon_sym_delete] = ACTIONS(3372), + [anon_sym_throw] = ACTIONS(3372), + [anon_sym_namespace] = ACTIONS(3372), + [anon_sym_using] = ACTIONS(3372), + [anon_sym_static_assert] = ACTIONS(3372), + [anon_sym_concept] = ACTIONS(3372), + [anon_sym_co_return] = ACTIONS(3372), + [anon_sym_co_yield] = ACTIONS(3372), + [anon_sym_R_DQUOTE] = ACTIONS(3374), + [anon_sym_LR_DQUOTE] = ACTIONS(3374), + [anon_sym_uR_DQUOTE] = ACTIONS(3374), + [anon_sym_UR_DQUOTE] = ACTIONS(3374), + [anon_sym_u8R_DQUOTE] = ACTIONS(3374), + [anon_sym_co_await] = ACTIONS(3372), + [anon_sym_new] = ACTIONS(3372), + [anon_sym_requires] = ACTIONS(3372), + [sym_this] = ACTIONS(3372), }, [1224] = { - [sym_identifier] = ACTIONS(2492), - [anon_sym_LPAREN2] = ACTIONS(2494), - [anon_sym_BANG] = ACTIONS(2494), - [anon_sym_TILDE] = ACTIONS(2494), - [anon_sym_DASH] = ACTIONS(2492), - [anon_sym_PLUS] = ACTIONS(2492), - [anon_sym_STAR] = ACTIONS(2494), - [anon_sym_AMP] = ACTIONS(2494), - [anon_sym_SEMI] = ACTIONS(2494), - [anon_sym_typedef] = ACTIONS(2492), - [anon_sym_extern] = ACTIONS(2492), - [anon_sym___attribute__] = ACTIONS(2492), - [anon_sym_COLON_COLON] = ACTIONS(2494), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2494), - [anon_sym___declspec] = ACTIONS(2492), - [anon_sym_LBRACE] = ACTIONS(2494), - [anon_sym_LBRACK] = ACTIONS(2492), - [anon_sym_static] = ACTIONS(2492), - [anon_sym_register] = ACTIONS(2492), - [anon_sym_inline] = ACTIONS(2492), - [anon_sym_thread_local] = ACTIONS(2492), - [anon_sym_const] = ACTIONS(2492), - [anon_sym_volatile] = ACTIONS(2492), - [anon_sym_restrict] = ACTIONS(2492), - [anon_sym__Atomic] = ACTIONS(2492), - [anon_sym_mutable] = ACTIONS(2492), - [anon_sym_constexpr] = ACTIONS(2492), - [anon_sym_constinit] = ACTIONS(2492), - [anon_sym_consteval] = ACTIONS(2492), - [anon_sym_signed] = ACTIONS(2492), - [anon_sym_unsigned] = ACTIONS(2492), - [anon_sym_long] = ACTIONS(2492), - [anon_sym_short] = ACTIONS(2492), - [sym_primitive_type] = ACTIONS(2492), - [anon_sym_enum] = ACTIONS(2492), - [anon_sym_class] = ACTIONS(2492), - [anon_sym_struct] = ACTIONS(2492), - [anon_sym_union] = ACTIONS(2492), - [anon_sym_if] = ACTIONS(2492), - [anon_sym_else] = ACTIONS(2492), - [anon_sym_switch] = ACTIONS(2492), - [anon_sym_while] = ACTIONS(2492), - [anon_sym_do] = ACTIONS(2492), - [anon_sym_for] = ACTIONS(2492), - [anon_sym_return] = ACTIONS(2492), - [anon_sym_break] = ACTIONS(2492), - [anon_sym_continue] = ACTIONS(2492), - [anon_sym_goto] = ACTIONS(2492), - [anon_sym_not] = ACTIONS(2492), - [anon_sym_compl] = ACTIONS(2492), - [anon_sym_DASH_DASH] = ACTIONS(2494), - [anon_sym_PLUS_PLUS] = ACTIONS(2494), - [anon_sym_sizeof] = ACTIONS(2492), - [sym_number_literal] = ACTIONS(2494), - [anon_sym_L_SQUOTE] = ACTIONS(2494), - [anon_sym_u_SQUOTE] = ACTIONS(2494), - [anon_sym_U_SQUOTE] = ACTIONS(2494), - [anon_sym_u8_SQUOTE] = ACTIONS(2494), - [anon_sym_SQUOTE] = ACTIONS(2494), - [anon_sym_L_DQUOTE] = ACTIONS(2494), - [anon_sym_u_DQUOTE] = ACTIONS(2494), - [anon_sym_U_DQUOTE] = ACTIONS(2494), - [anon_sym_u8_DQUOTE] = ACTIONS(2494), - [anon_sym_DQUOTE] = ACTIONS(2494), - [sym_true] = ACTIONS(2492), - [sym_false] = ACTIONS(2492), - [sym_null] = ACTIONS(2492), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2492), - [anon_sym_decltype] = ACTIONS(2492), - [anon_sym_virtual] = ACTIONS(2492), - [anon_sym_typename] = ACTIONS(2492), - [anon_sym_template] = ACTIONS(2492), - [anon_sym_try] = ACTIONS(2492), - [anon_sym_delete] = ACTIONS(2492), - [anon_sym_throw] = ACTIONS(2492), - [anon_sym_co_return] = ACTIONS(2492), - [anon_sym_co_yield] = ACTIONS(2492), - [anon_sym_R_DQUOTE] = ACTIONS(2494), - [anon_sym_LR_DQUOTE] = ACTIONS(2494), - [anon_sym_uR_DQUOTE] = ACTIONS(2494), - [anon_sym_UR_DQUOTE] = ACTIONS(2494), - [anon_sym_u8R_DQUOTE] = ACTIONS(2494), - [anon_sym_co_await] = ACTIONS(2492), - [anon_sym_new] = ACTIONS(2492), - [anon_sym_requires] = ACTIONS(2492), - [sym_this] = ACTIONS(2492), - [sym_nullptr] = ACTIONS(2492), + [sym_identifier] = ACTIONS(3368), + [aux_sym_preproc_include_token1] = ACTIONS(3368), + [aux_sym_preproc_def_token1] = ACTIONS(3368), + [aux_sym_preproc_if_token1] = ACTIONS(3368), + [aux_sym_preproc_if_token2] = ACTIONS(3368), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3368), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3368), + [sym_preproc_directive] = ACTIONS(3368), + [anon_sym_LPAREN2] = ACTIONS(3370), + [anon_sym_BANG] = ACTIONS(3370), + [anon_sym_TILDE] = ACTIONS(3370), + [anon_sym_DASH] = ACTIONS(3368), + [anon_sym_PLUS] = ACTIONS(3368), + [anon_sym_STAR] = ACTIONS(3370), + [anon_sym_AMP_AMP] = ACTIONS(3370), + [anon_sym_AMP] = ACTIONS(3368), + [anon_sym_SEMI] = ACTIONS(3370), + [anon_sym_typedef] = ACTIONS(3368), + [anon_sym_extern] = ACTIONS(3368), + [anon_sym___attribute__] = ACTIONS(3368), + [anon_sym_COLON_COLON] = ACTIONS(3370), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3370), + [anon_sym___declspec] = ACTIONS(3368), + [anon_sym___based] = ACTIONS(3368), + [anon_sym___cdecl] = ACTIONS(3368), + [anon_sym___clrcall] = ACTIONS(3368), + [anon_sym___stdcall] = ACTIONS(3368), + [anon_sym___fastcall] = ACTIONS(3368), + [anon_sym___thiscall] = ACTIONS(3368), + [anon_sym___vectorcall] = ACTIONS(3368), + [anon_sym_LBRACE] = ACTIONS(3370), + [anon_sym_LBRACK] = ACTIONS(3368), + [anon_sym_static] = ACTIONS(3368), + [anon_sym_register] = ACTIONS(3368), + [anon_sym_inline] = ACTIONS(3368), + [anon_sym_thread_local] = ACTIONS(3368), + [anon_sym_const] = ACTIONS(3368), + [anon_sym_constexpr] = ACTIONS(3368), + [anon_sym_volatile] = ACTIONS(3368), + [anon_sym_restrict] = ACTIONS(3368), + [anon_sym___restrict__] = ACTIONS(3368), + [anon_sym__Atomic] = ACTIONS(3368), + [anon_sym__Noreturn] = ACTIONS(3368), + [anon_sym_noreturn] = ACTIONS(3368), + [anon_sym_mutable] = ACTIONS(3368), + [anon_sym_constinit] = ACTIONS(3368), + [anon_sym_consteval] = ACTIONS(3368), + [anon_sym_signed] = ACTIONS(3368), + [anon_sym_unsigned] = ACTIONS(3368), + [anon_sym_long] = ACTIONS(3368), + [anon_sym_short] = ACTIONS(3368), + [sym_primitive_type] = ACTIONS(3368), + [anon_sym_enum] = ACTIONS(3368), + [anon_sym_class] = ACTIONS(3368), + [anon_sym_struct] = ACTIONS(3368), + [anon_sym_union] = ACTIONS(3368), + [anon_sym_if] = ACTIONS(3368), + [anon_sym_switch] = ACTIONS(3368), + [anon_sym_case] = ACTIONS(3368), + [anon_sym_default] = ACTIONS(3368), + [anon_sym_while] = ACTIONS(3368), + [anon_sym_do] = ACTIONS(3368), + [anon_sym_for] = ACTIONS(3368), + [anon_sym_return] = ACTIONS(3368), + [anon_sym_break] = ACTIONS(3368), + [anon_sym_continue] = ACTIONS(3368), + [anon_sym_goto] = ACTIONS(3368), + [anon_sym_not] = ACTIONS(3368), + [anon_sym_compl] = ACTIONS(3368), + [anon_sym_DASH_DASH] = ACTIONS(3370), + [anon_sym_PLUS_PLUS] = ACTIONS(3370), + [anon_sym_sizeof] = ACTIONS(3368), + [anon_sym_offsetof] = ACTIONS(3368), + [anon_sym__Generic] = ACTIONS(3368), + [anon_sym_asm] = ACTIONS(3368), + [anon_sym___asm__] = ACTIONS(3368), + [sym_number_literal] = ACTIONS(3370), + [anon_sym_L_SQUOTE] = ACTIONS(3370), + [anon_sym_u_SQUOTE] = ACTIONS(3370), + [anon_sym_U_SQUOTE] = ACTIONS(3370), + [anon_sym_u8_SQUOTE] = ACTIONS(3370), + [anon_sym_SQUOTE] = ACTIONS(3370), + [anon_sym_L_DQUOTE] = ACTIONS(3370), + [anon_sym_u_DQUOTE] = ACTIONS(3370), + [anon_sym_U_DQUOTE] = ACTIONS(3370), + [anon_sym_u8_DQUOTE] = ACTIONS(3370), + [anon_sym_DQUOTE] = ACTIONS(3370), + [sym_true] = ACTIONS(3368), + [sym_false] = ACTIONS(3368), + [anon_sym_NULL] = ACTIONS(3368), + [anon_sym_nullptr] = ACTIONS(3368), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3368), + [anon_sym_decltype] = ACTIONS(3368), + [anon_sym_virtual] = ACTIONS(3368), + [anon_sym_explicit] = ACTIONS(3368), + [anon_sym_typename] = ACTIONS(3368), + [anon_sym_template] = ACTIONS(3368), + [anon_sym_operator] = ACTIONS(3368), + [anon_sym_try] = ACTIONS(3368), + [anon_sym_delete] = ACTIONS(3368), + [anon_sym_throw] = ACTIONS(3368), + [anon_sym_namespace] = ACTIONS(3368), + [anon_sym_using] = ACTIONS(3368), + [anon_sym_static_assert] = ACTIONS(3368), + [anon_sym_concept] = ACTIONS(3368), + [anon_sym_co_return] = ACTIONS(3368), + [anon_sym_co_yield] = ACTIONS(3368), + [anon_sym_R_DQUOTE] = ACTIONS(3370), + [anon_sym_LR_DQUOTE] = ACTIONS(3370), + [anon_sym_uR_DQUOTE] = ACTIONS(3370), + [anon_sym_UR_DQUOTE] = ACTIONS(3370), + [anon_sym_u8R_DQUOTE] = ACTIONS(3370), + [anon_sym_co_await] = ACTIONS(3368), + [anon_sym_new] = ACTIONS(3368), + [anon_sym_requires] = ACTIONS(3368), + [sym_this] = ACTIONS(3368), }, [1225] = { - [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_AMP] = ACTIONS(2542), - [anon_sym_SEMI] = ACTIONS(2542), - [anon_sym_typedef] = ACTIONS(2540), - [anon_sym_extern] = ACTIONS(2540), - [anon_sym___attribute__] = ACTIONS(2540), - [anon_sym_COLON_COLON] = ACTIONS(2542), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2542), - [anon_sym___declspec] = ACTIONS(2540), - [anon_sym_LBRACE] = ACTIONS(2542), - [anon_sym_LBRACK] = ACTIONS(2540), - [anon_sym_static] = ACTIONS(2540), - [anon_sym_register] = ACTIONS(2540), - [anon_sym_inline] = ACTIONS(2540), - [anon_sym_thread_local] = ACTIONS(2540), - [anon_sym_const] = ACTIONS(2540), - [anon_sym_volatile] = ACTIONS(2540), - [anon_sym_restrict] = ACTIONS(2540), - [anon_sym__Atomic] = ACTIONS(2540), - [anon_sym_mutable] = ACTIONS(2540), - [anon_sym_constexpr] = ACTIONS(2540), - [anon_sym_constinit] = ACTIONS(2540), - [anon_sym_consteval] = ACTIONS(2540), - [anon_sym_signed] = ACTIONS(2540), - [anon_sym_unsigned] = ACTIONS(2540), - [anon_sym_long] = ACTIONS(2540), - [anon_sym_short] = ACTIONS(2540), - [sym_primitive_type] = ACTIONS(2540), - [anon_sym_enum] = ACTIONS(2540), - [anon_sym_class] = 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_return] = ACTIONS(2540), - [anon_sym_break] = ACTIONS(2540), - [anon_sym_continue] = ACTIONS(2540), - [anon_sym_goto] = ACTIONS(2540), - [anon_sym_not] = ACTIONS(2540), - [anon_sym_compl] = ACTIONS(2540), - [anon_sym_DASH_DASH] = ACTIONS(2542), - [anon_sym_PLUS_PLUS] = ACTIONS(2542), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2542), - [anon_sym_u_DQUOTE] = ACTIONS(2542), - [anon_sym_U_DQUOTE] = ACTIONS(2542), - [anon_sym_u8_DQUOTE] = ACTIONS(2542), - [anon_sym_DQUOTE] = ACTIONS(2542), - [sym_true] = ACTIONS(2540), - [sym_false] = ACTIONS(2540), - [sym_null] = ACTIONS(2540), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2540), - [anon_sym_decltype] = ACTIONS(2540), - [anon_sym_virtual] = ACTIONS(2540), - [anon_sym_typename] = ACTIONS(2540), - [anon_sym_template] = ACTIONS(2540), - [anon_sym_try] = ACTIONS(2540), - [anon_sym_delete] = ACTIONS(2540), - [anon_sym_throw] = ACTIONS(2540), - [anon_sym_co_return] = ACTIONS(2540), - [anon_sym_co_yield] = ACTIONS(2540), - [anon_sym_R_DQUOTE] = ACTIONS(2542), - [anon_sym_LR_DQUOTE] = ACTIONS(2542), - [anon_sym_uR_DQUOTE] = ACTIONS(2542), - [anon_sym_UR_DQUOTE] = ACTIONS(2542), - [anon_sym_u8R_DQUOTE] = ACTIONS(2542), - [anon_sym_co_await] = ACTIONS(2540), - [anon_sym_new] = ACTIONS(2540), - [anon_sym_requires] = ACTIONS(2540), - [sym_this] = ACTIONS(2540), - [sym_nullptr] = ACTIONS(2540), + [sym_identifier] = ACTIONS(3372), + [aux_sym_preproc_include_token1] = ACTIONS(3372), + [aux_sym_preproc_def_token1] = ACTIONS(3372), + [aux_sym_preproc_if_token1] = ACTIONS(3372), + [aux_sym_preproc_if_token2] = ACTIONS(3372), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3372), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3372), + [sym_preproc_directive] = ACTIONS(3372), + [anon_sym_LPAREN2] = ACTIONS(3374), + [anon_sym_BANG] = ACTIONS(3374), + [anon_sym_TILDE] = ACTIONS(3374), + [anon_sym_DASH] = ACTIONS(3372), + [anon_sym_PLUS] = ACTIONS(3372), + [anon_sym_STAR] = ACTIONS(3374), + [anon_sym_AMP_AMP] = ACTIONS(3374), + [anon_sym_AMP] = ACTIONS(3372), + [anon_sym_SEMI] = ACTIONS(3374), + [anon_sym_typedef] = ACTIONS(3372), + [anon_sym_extern] = ACTIONS(3372), + [anon_sym___attribute__] = ACTIONS(3372), + [anon_sym_COLON_COLON] = ACTIONS(3374), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3374), + [anon_sym___declspec] = ACTIONS(3372), + [anon_sym___based] = ACTIONS(3372), + [anon_sym___cdecl] = ACTIONS(3372), + [anon_sym___clrcall] = ACTIONS(3372), + [anon_sym___stdcall] = ACTIONS(3372), + [anon_sym___fastcall] = ACTIONS(3372), + [anon_sym___thiscall] = ACTIONS(3372), + [anon_sym___vectorcall] = ACTIONS(3372), + [anon_sym_LBRACE] = ACTIONS(3374), + [anon_sym_LBRACK] = ACTIONS(3372), + [anon_sym_static] = ACTIONS(3372), + [anon_sym_register] = ACTIONS(3372), + [anon_sym_inline] = ACTIONS(3372), + [anon_sym_thread_local] = ACTIONS(3372), + [anon_sym_const] = ACTIONS(3372), + [anon_sym_constexpr] = ACTIONS(3372), + [anon_sym_volatile] = ACTIONS(3372), + [anon_sym_restrict] = ACTIONS(3372), + [anon_sym___restrict__] = ACTIONS(3372), + [anon_sym__Atomic] = ACTIONS(3372), + [anon_sym__Noreturn] = ACTIONS(3372), + [anon_sym_noreturn] = ACTIONS(3372), + [anon_sym_mutable] = ACTIONS(3372), + [anon_sym_constinit] = ACTIONS(3372), + [anon_sym_consteval] = ACTIONS(3372), + [anon_sym_signed] = ACTIONS(3372), + [anon_sym_unsigned] = ACTIONS(3372), + [anon_sym_long] = ACTIONS(3372), + [anon_sym_short] = ACTIONS(3372), + [sym_primitive_type] = ACTIONS(3372), + [anon_sym_enum] = ACTIONS(3372), + [anon_sym_class] = ACTIONS(3372), + [anon_sym_struct] = ACTIONS(3372), + [anon_sym_union] = ACTIONS(3372), + [anon_sym_if] = ACTIONS(3372), + [anon_sym_switch] = ACTIONS(3372), + [anon_sym_case] = ACTIONS(3372), + [anon_sym_default] = ACTIONS(3372), + [anon_sym_while] = ACTIONS(3372), + [anon_sym_do] = ACTIONS(3372), + [anon_sym_for] = ACTIONS(3372), + [anon_sym_return] = ACTIONS(3372), + [anon_sym_break] = ACTIONS(3372), + [anon_sym_continue] = ACTIONS(3372), + [anon_sym_goto] = ACTIONS(3372), + [anon_sym_not] = ACTIONS(3372), + [anon_sym_compl] = ACTIONS(3372), + [anon_sym_DASH_DASH] = ACTIONS(3374), + [anon_sym_PLUS_PLUS] = ACTIONS(3374), + [anon_sym_sizeof] = ACTIONS(3372), + [anon_sym_offsetof] = ACTIONS(3372), + [anon_sym__Generic] = ACTIONS(3372), + [anon_sym_asm] = ACTIONS(3372), + [anon_sym___asm__] = ACTIONS(3372), + [sym_number_literal] = ACTIONS(3374), + [anon_sym_L_SQUOTE] = ACTIONS(3374), + [anon_sym_u_SQUOTE] = ACTIONS(3374), + [anon_sym_U_SQUOTE] = ACTIONS(3374), + [anon_sym_u8_SQUOTE] = ACTIONS(3374), + [anon_sym_SQUOTE] = ACTIONS(3374), + [anon_sym_L_DQUOTE] = ACTIONS(3374), + [anon_sym_u_DQUOTE] = ACTIONS(3374), + [anon_sym_U_DQUOTE] = ACTIONS(3374), + [anon_sym_u8_DQUOTE] = ACTIONS(3374), + [anon_sym_DQUOTE] = ACTIONS(3374), + [sym_true] = ACTIONS(3372), + [sym_false] = ACTIONS(3372), + [anon_sym_NULL] = ACTIONS(3372), + [anon_sym_nullptr] = ACTIONS(3372), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3372), + [anon_sym_decltype] = ACTIONS(3372), + [anon_sym_virtual] = ACTIONS(3372), + [anon_sym_explicit] = ACTIONS(3372), + [anon_sym_typename] = ACTIONS(3372), + [anon_sym_template] = ACTIONS(3372), + [anon_sym_operator] = ACTIONS(3372), + [anon_sym_try] = ACTIONS(3372), + [anon_sym_delete] = ACTIONS(3372), + [anon_sym_throw] = ACTIONS(3372), + [anon_sym_namespace] = ACTIONS(3372), + [anon_sym_using] = ACTIONS(3372), + [anon_sym_static_assert] = ACTIONS(3372), + [anon_sym_concept] = ACTIONS(3372), + [anon_sym_co_return] = ACTIONS(3372), + [anon_sym_co_yield] = ACTIONS(3372), + [anon_sym_R_DQUOTE] = ACTIONS(3374), + [anon_sym_LR_DQUOTE] = ACTIONS(3374), + [anon_sym_uR_DQUOTE] = ACTIONS(3374), + [anon_sym_UR_DQUOTE] = ACTIONS(3374), + [anon_sym_u8R_DQUOTE] = ACTIONS(3374), + [anon_sym_co_await] = ACTIONS(3372), + [anon_sym_new] = ACTIONS(3372), + [anon_sym_requires] = ACTIONS(3372), + [sym_this] = ACTIONS(3372), }, [1226] = { - [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_AMP] = ACTIONS(2464), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym_LBRACE] = ACTIONS(2464), - [anon_sym_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_identifier] = ACTIONS(3336), + [aux_sym_preproc_include_token1] = ACTIONS(3336), + [aux_sym_preproc_def_token1] = ACTIONS(3336), + [aux_sym_preproc_if_token1] = ACTIONS(3336), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3336), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3336), + [sym_preproc_directive] = ACTIONS(3336), + [anon_sym_LPAREN2] = ACTIONS(3338), + [anon_sym_BANG] = ACTIONS(3338), + [anon_sym_TILDE] = ACTIONS(3338), + [anon_sym_DASH] = ACTIONS(3336), + [anon_sym_PLUS] = ACTIONS(3336), + [anon_sym_STAR] = ACTIONS(3338), + [anon_sym_AMP_AMP] = ACTIONS(3338), + [anon_sym_AMP] = ACTIONS(3336), + [anon_sym_SEMI] = ACTIONS(3338), + [anon_sym_typedef] = ACTIONS(3336), + [anon_sym_extern] = ACTIONS(3336), + [anon_sym___attribute__] = ACTIONS(3336), + [anon_sym_COLON_COLON] = ACTIONS(3338), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3338), + [anon_sym___declspec] = ACTIONS(3336), + [anon_sym___based] = ACTIONS(3336), + [anon_sym___cdecl] = ACTIONS(3336), + [anon_sym___clrcall] = ACTIONS(3336), + [anon_sym___stdcall] = ACTIONS(3336), + [anon_sym___fastcall] = ACTIONS(3336), + [anon_sym___thiscall] = ACTIONS(3336), + [anon_sym___vectorcall] = ACTIONS(3336), + [anon_sym_LBRACE] = ACTIONS(3338), + [anon_sym_RBRACE] = ACTIONS(3338), + [anon_sym_LBRACK] = ACTIONS(3336), + [anon_sym_static] = ACTIONS(3336), + [anon_sym_register] = ACTIONS(3336), + [anon_sym_inline] = ACTIONS(3336), + [anon_sym_thread_local] = ACTIONS(3336), + [anon_sym_const] = ACTIONS(3336), + [anon_sym_constexpr] = ACTIONS(3336), + [anon_sym_volatile] = ACTIONS(3336), + [anon_sym_restrict] = ACTIONS(3336), + [anon_sym___restrict__] = ACTIONS(3336), + [anon_sym__Atomic] = ACTIONS(3336), + [anon_sym__Noreturn] = ACTIONS(3336), + [anon_sym_noreturn] = ACTIONS(3336), + [anon_sym_mutable] = ACTIONS(3336), + [anon_sym_constinit] = ACTIONS(3336), + [anon_sym_consteval] = ACTIONS(3336), + [anon_sym_signed] = ACTIONS(3336), + [anon_sym_unsigned] = ACTIONS(3336), + [anon_sym_long] = ACTIONS(3336), + [anon_sym_short] = ACTIONS(3336), + [sym_primitive_type] = ACTIONS(3336), + [anon_sym_enum] = ACTIONS(3336), + [anon_sym_class] = ACTIONS(3336), + [anon_sym_struct] = ACTIONS(3336), + [anon_sym_union] = ACTIONS(3336), + [anon_sym_if] = ACTIONS(3336), + [anon_sym_switch] = ACTIONS(3336), + [anon_sym_case] = ACTIONS(3336), + [anon_sym_default] = ACTIONS(3336), + [anon_sym_while] = ACTIONS(3336), + [anon_sym_do] = ACTIONS(3336), + [anon_sym_for] = ACTIONS(3336), + [anon_sym_return] = ACTIONS(3336), + [anon_sym_break] = ACTIONS(3336), + [anon_sym_continue] = ACTIONS(3336), + [anon_sym_goto] = ACTIONS(3336), + [anon_sym_not] = ACTIONS(3336), + [anon_sym_compl] = ACTIONS(3336), + [anon_sym_DASH_DASH] = ACTIONS(3338), + [anon_sym_PLUS_PLUS] = ACTIONS(3338), + [anon_sym_sizeof] = ACTIONS(3336), + [anon_sym_offsetof] = ACTIONS(3336), + [anon_sym__Generic] = ACTIONS(3336), + [anon_sym_asm] = ACTIONS(3336), + [anon_sym___asm__] = ACTIONS(3336), + [sym_number_literal] = ACTIONS(3338), + [anon_sym_L_SQUOTE] = ACTIONS(3338), + [anon_sym_u_SQUOTE] = ACTIONS(3338), + [anon_sym_U_SQUOTE] = ACTIONS(3338), + [anon_sym_u8_SQUOTE] = ACTIONS(3338), + [anon_sym_SQUOTE] = ACTIONS(3338), + [anon_sym_L_DQUOTE] = ACTIONS(3338), + [anon_sym_u_DQUOTE] = ACTIONS(3338), + [anon_sym_U_DQUOTE] = ACTIONS(3338), + [anon_sym_u8_DQUOTE] = ACTIONS(3338), + [anon_sym_DQUOTE] = ACTIONS(3338), + [sym_true] = ACTIONS(3336), + [sym_false] = ACTIONS(3336), + [anon_sym_NULL] = ACTIONS(3336), + [anon_sym_nullptr] = ACTIONS(3336), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3336), + [anon_sym_decltype] = ACTIONS(3336), + [anon_sym_virtual] = ACTIONS(3336), + [anon_sym_explicit] = ACTIONS(3336), + [anon_sym_typename] = ACTIONS(3336), + [anon_sym_template] = ACTIONS(3336), + [anon_sym_operator] = ACTIONS(3336), + [anon_sym_try] = ACTIONS(3336), + [anon_sym_delete] = ACTIONS(3336), + [anon_sym_throw] = ACTIONS(3336), + [anon_sym_namespace] = ACTIONS(3336), + [anon_sym_using] = ACTIONS(3336), + [anon_sym_static_assert] = ACTIONS(3336), + [anon_sym_concept] = ACTIONS(3336), + [anon_sym_co_return] = ACTIONS(3336), + [anon_sym_co_yield] = ACTIONS(3336), + [anon_sym_R_DQUOTE] = ACTIONS(3338), + [anon_sym_LR_DQUOTE] = ACTIONS(3338), + [anon_sym_uR_DQUOTE] = ACTIONS(3338), + [anon_sym_UR_DQUOTE] = ACTIONS(3338), + [anon_sym_u8R_DQUOTE] = ACTIONS(3338), + [anon_sym_co_await] = ACTIONS(3336), + [anon_sym_new] = ACTIONS(3336), + [anon_sym_requires] = ACTIONS(3336), + [sym_this] = ACTIONS(3336), }, [1227] = { - [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_AMP] = ACTIONS(2538), - [anon_sym_SEMI] = ACTIONS(2538), - [anon_sym_typedef] = ACTIONS(2536), - [anon_sym_extern] = ACTIONS(2536), - [anon_sym___attribute__] = ACTIONS(2536), - [anon_sym_COLON_COLON] = ACTIONS(2538), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2538), - [anon_sym___declspec] = ACTIONS(2536), - [anon_sym_LBRACE] = ACTIONS(2538), - [anon_sym_LBRACK] = ACTIONS(2536), - [anon_sym_static] = ACTIONS(2536), - [anon_sym_register] = ACTIONS(2536), - [anon_sym_inline] = ACTIONS(2536), - [anon_sym_thread_local] = ACTIONS(2536), - [anon_sym_const] = ACTIONS(2536), - [anon_sym_volatile] = ACTIONS(2536), - [anon_sym_restrict] = ACTIONS(2536), - [anon_sym__Atomic] = ACTIONS(2536), - [anon_sym_mutable] = ACTIONS(2536), - [anon_sym_constexpr] = ACTIONS(2536), - [anon_sym_constinit] = ACTIONS(2536), - [anon_sym_consteval] = ACTIONS(2536), - [anon_sym_signed] = ACTIONS(2536), - [anon_sym_unsigned] = ACTIONS(2536), - [anon_sym_long] = ACTIONS(2536), - [anon_sym_short] = ACTIONS(2536), - [sym_primitive_type] = ACTIONS(2536), - [anon_sym_enum] = ACTIONS(2536), - [anon_sym_class] = 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_return] = ACTIONS(2536), - [anon_sym_break] = ACTIONS(2536), - [anon_sym_continue] = ACTIONS(2536), - [anon_sym_goto] = ACTIONS(2536), - [anon_sym_not] = ACTIONS(2536), - [anon_sym_compl] = ACTIONS(2536), - [anon_sym_DASH_DASH] = ACTIONS(2538), - [anon_sym_PLUS_PLUS] = ACTIONS(2538), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2538), - [anon_sym_u_DQUOTE] = ACTIONS(2538), - [anon_sym_U_DQUOTE] = ACTIONS(2538), - [anon_sym_u8_DQUOTE] = ACTIONS(2538), - [anon_sym_DQUOTE] = ACTIONS(2538), - [sym_true] = ACTIONS(2536), - [sym_false] = ACTIONS(2536), - [sym_null] = ACTIONS(2536), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2536), - [anon_sym_decltype] = ACTIONS(2536), - [anon_sym_virtual] = ACTIONS(2536), - [anon_sym_typename] = ACTIONS(2536), - [anon_sym_template] = ACTIONS(2536), - [anon_sym_try] = ACTIONS(2536), - [anon_sym_delete] = ACTIONS(2536), - [anon_sym_throw] = ACTIONS(2536), - [anon_sym_co_return] = ACTIONS(2536), - [anon_sym_co_yield] = ACTIONS(2536), - [anon_sym_R_DQUOTE] = ACTIONS(2538), - [anon_sym_LR_DQUOTE] = ACTIONS(2538), - [anon_sym_uR_DQUOTE] = ACTIONS(2538), - [anon_sym_UR_DQUOTE] = ACTIONS(2538), - [anon_sym_u8R_DQUOTE] = ACTIONS(2538), - [anon_sym_co_await] = ACTIONS(2536), - [anon_sym_new] = ACTIONS(2536), - [anon_sym_requires] = ACTIONS(2536), - [sym_this] = ACTIONS(2536), - [sym_nullptr] = ACTIONS(2536), + [sym_identifier] = ACTIONS(3380), + [aux_sym_preproc_include_token1] = ACTIONS(3380), + [aux_sym_preproc_def_token1] = ACTIONS(3380), + [aux_sym_preproc_if_token1] = ACTIONS(3380), + [aux_sym_preproc_if_token2] = ACTIONS(3380), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3380), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3380), + [sym_preproc_directive] = ACTIONS(3380), + [anon_sym_LPAREN2] = ACTIONS(3382), + [anon_sym_BANG] = ACTIONS(3382), + [anon_sym_TILDE] = ACTIONS(3382), + [anon_sym_DASH] = ACTIONS(3380), + [anon_sym_PLUS] = ACTIONS(3380), + [anon_sym_STAR] = ACTIONS(3382), + [anon_sym_AMP_AMP] = ACTIONS(3382), + [anon_sym_AMP] = ACTIONS(3380), + [anon_sym_SEMI] = ACTIONS(3382), + [anon_sym_typedef] = ACTIONS(3380), + [anon_sym_extern] = ACTIONS(3380), + [anon_sym___attribute__] = ACTIONS(3380), + [anon_sym_COLON_COLON] = ACTIONS(3382), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3382), + [anon_sym___declspec] = ACTIONS(3380), + [anon_sym___based] = ACTIONS(3380), + [anon_sym___cdecl] = ACTIONS(3380), + [anon_sym___clrcall] = ACTIONS(3380), + [anon_sym___stdcall] = ACTIONS(3380), + [anon_sym___fastcall] = ACTIONS(3380), + [anon_sym___thiscall] = ACTIONS(3380), + [anon_sym___vectorcall] = ACTIONS(3380), + [anon_sym_LBRACE] = ACTIONS(3382), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_static] = ACTIONS(3380), + [anon_sym_register] = ACTIONS(3380), + [anon_sym_inline] = ACTIONS(3380), + [anon_sym_thread_local] = ACTIONS(3380), + [anon_sym_const] = ACTIONS(3380), + [anon_sym_constexpr] = ACTIONS(3380), + [anon_sym_volatile] = ACTIONS(3380), + [anon_sym_restrict] = ACTIONS(3380), + [anon_sym___restrict__] = ACTIONS(3380), + [anon_sym__Atomic] = ACTIONS(3380), + [anon_sym__Noreturn] = ACTIONS(3380), + [anon_sym_noreturn] = ACTIONS(3380), + [anon_sym_mutable] = ACTIONS(3380), + [anon_sym_constinit] = ACTIONS(3380), + [anon_sym_consteval] = ACTIONS(3380), + [anon_sym_signed] = ACTIONS(3380), + [anon_sym_unsigned] = ACTIONS(3380), + [anon_sym_long] = ACTIONS(3380), + [anon_sym_short] = ACTIONS(3380), + [sym_primitive_type] = ACTIONS(3380), + [anon_sym_enum] = ACTIONS(3380), + [anon_sym_class] = ACTIONS(3380), + [anon_sym_struct] = ACTIONS(3380), + [anon_sym_union] = ACTIONS(3380), + [anon_sym_if] = ACTIONS(3380), + [anon_sym_switch] = ACTIONS(3380), + [anon_sym_case] = ACTIONS(3380), + [anon_sym_default] = ACTIONS(3380), + [anon_sym_while] = ACTIONS(3380), + [anon_sym_do] = ACTIONS(3380), + [anon_sym_for] = ACTIONS(3380), + [anon_sym_return] = ACTIONS(3380), + [anon_sym_break] = ACTIONS(3380), + [anon_sym_continue] = ACTIONS(3380), + [anon_sym_goto] = ACTIONS(3380), + [anon_sym_not] = ACTIONS(3380), + [anon_sym_compl] = ACTIONS(3380), + [anon_sym_DASH_DASH] = ACTIONS(3382), + [anon_sym_PLUS_PLUS] = ACTIONS(3382), + [anon_sym_sizeof] = ACTIONS(3380), + [anon_sym_offsetof] = ACTIONS(3380), + [anon_sym__Generic] = ACTIONS(3380), + [anon_sym_asm] = ACTIONS(3380), + [anon_sym___asm__] = ACTIONS(3380), + [sym_number_literal] = ACTIONS(3382), + [anon_sym_L_SQUOTE] = ACTIONS(3382), + [anon_sym_u_SQUOTE] = ACTIONS(3382), + [anon_sym_U_SQUOTE] = ACTIONS(3382), + [anon_sym_u8_SQUOTE] = ACTIONS(3382), + [anon_sym_SQUOTE] = ACTIONS(3382), + [anon_sym_L_DQUOTE] = ACTIONS(3382), + [anon_sym_u_DQUOTE] = ACTIONS(3382), + [anon_sym_U_DQUOTE] = ACTIONS(3382), + [anon_sym_u8_DQUOTE] = ACTIONS(3382), + [anon_sym_DQUOTE] = ACTIONS(3382), + [sym_true] = ACTIONS(3380), + [sym_false] = ACTIONS(3380), + [anon_sym_NULL] = ACTIONS(3380), + [anon_sym_nullptr] = ACTIONS(3380), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3380), + [anon_sym_decltype] = ACTIONS(3380), + [anon_sym_virtual] = ACTIONS(3380), + [anon_sym_explicit] = ACTIONS(3380), + [anon_sym_typename] = ACTIONS(3380), + [anon_sym_template] = ACTIONS(3380), + [anon_sym_operator] = ACTIONS(3380), + [anon_sym_try] = ACTIONS(3380), + [anon_sym_delete] = ACTIONS(3380), + [anon_sym_throw] = ACTIONS(3380), + [anon_sym_namespace] = ACTIONS(3380), + [anon_sym_using] = ACTIONS(3380), + [anon_sym_static_assert] = ACTIONS(3380), + [anon_sym_concept] = ACTIONS(3380), + [anon_sym_co_return] = ACTIONS(3380), + [anon_sym_co_yield] = ACTIONS(3380), + [anon_sym_R_DQUOTE] = ACTIONS(3382), + [anon_sym_LR_DQUOTE] = ACTIONS(3382), + [anon_sym_uR_DQUOTE] = ACTIONS(3382), + [anon_sym_UR_DQUOTE] = ACTIONS(3382), + [anon_sym_u8R_DQUOTE] = ACTIONS(3382), + [anon_sym_co_await] = ACTIONS(3380), + [anon_sym_new] = ACTIONS(3380), + [anon_sym_requires] = ACTIONS(3380), + [sym_this] = ACTIONS(3380), }, [1228] = { - [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_AMP] = ACTIONS(2534), - [anon_sym_SEMI] = ACTIONS(2534), - [anon_sym_typedef] = ACTIONS(2532), - [anon_sym_extern] = ACTIONS(2532), - [anon_sym___attribute__] = ACTIONS(2532), - [anon_sym_COLON_COLON] = ACTIONS(2534), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2534), - [anon_sym___declspec] = ACTIONS(2532), - [anon_sym_LBRACE] = ACTIONS(2534), - [anon_sym_LBRACK] = ACTIONS(2532), - [anon_sym_static] = ACTIONS(2532), - [anon_sym_register] = ACTIONS(2532), - [anon_sym_inline] = ACTIONS(2532), - [anon_sym_thread_local] = ACTIONS(2532), - [anon_sym_const] = ACTIONS(2532), - [anon_sym_volatile] = ACTIONS(2532), - [anon_sym_restrict] = ACTIONS(2532), - [anon_sym__Atomic] = ACTIONS(2532), - [anon_sym_mutable] = ACTIONS(2532), - [anon_sym_constexpr] = ACTIONS(2532), - [anon_sym_constinit] = ACTIONS(2532), - [anon_sym_consteval] = ACTIONS(2532), - [anon_sym_signed] = ACTIONS(2532), - [anon_sym_unsigned] = ACTIONS(2532), - [anon_sym_long] = ACTIONS(2532), - [anon_sym_short] = ACTIONS(2532), - [sym_primitive_type] = ACTIONS(2532), - [anon_sym_enum] = ACTIONS(2532), - [anon_sym_class] = 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_return] = ACTIONS(2532), - [anon_sym_break] = ACTIONS(2532), - [anon_sym_continue] = ACTIONS(2532), - [anon_sym_goto] = ACTIONS(2532), - [anon_sym_not] = ACTIONS(2532), - [anon_sym_compl] = ACTIONS(2532), - [anon_sym_DASH_DASH] = ACTIONS(2534), - [anon_sym_PLUS_PLUS] = ACTIONS(2534), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2534), - [anon_sym_u_DQUOTE] = ACTIONS(2534), - [anon_sym_U_DQUOTE] = ACTIONS(2534), - [anon_sym_u8_DQUOTE] = ACTIONS(2534), - [anon_sym_DQUOTE] = ACTIONS(2534), - [sym_true] = ACTIONS(2532), - [sym_false] = ACTIONS(2532), - [sym_null] = ACTIONS(2532), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2532), - [anon_sym_decltype] = ACTIONS(2532), - [anon_sym_virtual] = ACTIONS(2532), - [anon_sym_typename] = ACTIONS(2532), - [anon_sym_template] = ACTIONS(2532), - [anon_sym_try] = ACTIONS(2532), - [anon_sym_delete] = ACTIONS(2532), - [anon_sym_throw] = ACTIONS(2532), - [anon_sym_co_return] = ACTIONS(2532), - [anon_sym_co_yield] = ACTIONS(2532), - [anon_sym_R_DQUOTE] = ACTIONS(2534), - [anon_sym_LR_DQUOTE] = ACTIONS(2534), - [anon_sym_uR_DQUOTE] = ACTIONS(2534), - [anon_sym_UR_DQUOTE] = ACTIONS(2534), - [anon_sym_u8R_DQUOTE] = ACTIONS(2534), - [anon_sym_co_await] = ACTIONS(2532), - [anon_sym_new] = ACTIONS(2532), - [anon_sym_requires] = ACTIONS(2532), - [sym_this] = ACTIONS(2532), - [sym_nullptr] = ACTIONS(2532), + [sym_identifier] = ACTIONS(3332), + [aux_sym_preproc_include_token1] = ACTIONS(3332), + [aux_sym_preproc_def_token1] = ACTIONS(3332), + [aux_sym_preproc_if_token1] = ACTIONS(3332), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3332), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3332), + [sym_preproc_directive] = ACTIONS(3332), + [anon_sym_LPAREN2] = ACTIONS(3334), + [anon_sym_BANG] = ACTIONS(3334), + [anon_sym_TILDE] = ACTIONS(3334), + [anon_sym_DASH] = ACTIONS(3332), + [anon_sym_PLUS] = ACTIONS(3332), + [anon_sym_STAR] = ACTIONS(3334), + [anon_sym_AMP_AMP] = ACTIONS(3334), + [anon_sym_AMP] = ACTIONS(3332), + [anon_sym_SEMI] = ACTIONS(3334), + [anon_sym_typedef] = ACTIONS(3332), + [anon_sym_extern] = ACTIONS(3332), + [anon_sym___attribute__] = ACTIONS(3332), + [anon_sym_COLON_COLON] = ACTIONS(3334), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3334), + [anon_sym___declspec] = ACTIONS(3332), + [anon_sym___based] = ACTIONS(3332), + [anon_sym___cdecl] = ACTIONS(3332), + [anon_sym___clrcall] = ACTIONS(3332), + [anon_sym___stdcall] = ACTIONS(3332), + [anon_sym___fastcall] = ACTIONS(3332), + [anon_sym___thiscall] = ACTIONS(3332), + [anon_sym___vectorcall] = ACTIONS(3332), + [anon_sym_LBRACE] = ACTIONS(3334), + [anon_sym_RBRACE] = ACTIONS(3334), + [anon_sym_LBRACK] = ACTIONS(3332), + [anon_sym_static] = ACTIONS(3332), + [anon_sym_register] = ACTIONS(3332), + [anon_sym_inline] = ACTIONS(3332), + [anon_sym_thread_local] = ACTIONS(3332), + [anon_sym_const] = ACTIONS(3332), + [anon_sym_constexpr] = ACTIONS(3332), + [anon_sym_volatile] = ACTIONS(3332), + [anon_sym_restrict] = ACTIONS(3332), + [anon_sym___restrict__] = ACTIONS(3332), + [anon_sym__Atomic] = ACTIONS(3332), + [anon_sym__Noreturn] = ACTIONS(3332), + [anon_sym_noreturn] = ACTIONS(3332), + [anon_sym_mutable] = ACTIONS(3332), + [anon_sym_constinit] = ACTIONS(3332), + [anon_sym_consteval] = ACTIONS(3332), + [anon_sym_signed] = ACTIONS(3332), + [anon_sym_unsigned] = ACTIONS(3332), + [anon_sym_long] = ACTIONS(3332), + [anon_sym_short] = ACTIONS(3332), + [sym_primitive_type] = ACTIONS(3332), + [anon_sym_enum] = ACTIONS(3332), + [anon_sym_class] = ACTIONS(3332), + [anon_sym_struct] = ACTIONS(3332), + [anon_sym_union] = ACTIONS(3332), + [anon_sym_if] = ACTIONS(3332), + [anon_sym_switch] = ACTIONS(3332), + [anon_sym_case] = ACTIONS(3332), + [anon_sym_default] = ACTIONS(3332), + [anon_sym_while] = ACTIONS(3332), + [anon_sym_do] = ACTIONS(3332), + [anon_sym_for] = ACTIONS(3332), + [anon_sym_return] = ACTIONS(3332), + [anon_sym_break] = ACTIONS(3332), + [anon_sym_continue] = ACTIONS(3332), + [anon_sym_goto] = ACTIONS(3332), + [anon_sym_not] = ACTIONS(3332), + [anon_sym_compl] = ACTIONS(3332), + [anon_sym_DASH_DASH] = ACTIONS(3334), + [anon_sym_PLUS_PLUS] = ACTIONS(3334), + [anon_sym_sizeof] = ACTIONS(3332), + [anon_sym_offsetof] = ACTIONS(3332), + [anon_sym__Generic] = ACTIONS(3332), + [anon_sym_asm] = ACTIONS(3332), + [anon_sym___asm__] = ACTIONS(3332), + [sym_number_literal] = ACTIONS(3334), + [anon_sym_L_SQUOTE] = ACTIONS(3334), + [anon_sym_u_SQUOTE] = ACTIONS(3334), + [anon_sym_U_SQUOTE] = ACTIONS(3334), + [anon_sym_u8_SQUOTE] = ACTIONS(3334), + [anon_sym_SQUOTE] = ACTIONS(3334), + [anon_sym_L_DQUOTE] = ACTIONS(3334), + [anon_sym_u_DQUOTE] = ACTIONS(3334), + [anon_sym_U_DQUOTE] = ACTIONS(3334), + [anon_sym_u8_DQUOTE] = ACTIONS(3334), + [anon_sym_DQUOTE] = ACTIONS(3334), + [sym_true] = ACTIONS(3332), + [sym_false] = ACTIONS(3332), + [anon_sym_NULL] = ACTIONS(3332), + [anon_sym_nullptr] = ACTIONS(3332), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3332), + [anon_sym_decltype] = ACTIONS(3332), + [anon_sym_virtual] = ACTIONS(3332), + [anon_sym_explicit] = ACTIONS(3332), + [anon_sym_typename] = ACTIONS(3332), + [anon_sym_template] = ACTIONS(3332), + [anon_sym_operator] = ACTIONS(3332), + [anon_sym_try] = ACTIONS(3332), + [anon_sym_delete] = ACTIONS(3332), + [anon_sym_throw] = ACTIONS(3332), + [anon_sym_namespace] = ACTIONS(3332), + [anon_sym_using] = ACTIONS(3332), + [anon_sym_static_assert] = ACTIONS(3332), + [anon_sym_concept] = ACTIONS(3332), + [anon_sym_co_return] = ACTIONS(3332), + [anon_sym_co_yield] = ACTIONS(3332), + [anon_sym_R_DQUOTE] = ACTIONS(3334), + [anon_sym_LR_DQUOTE] = ACTIONS(3334), + [anon_sym_uR_DQUOTE] = ACTIONS(3334), + [anon_sym_UR_DQUOTE] = ACTIONS(3334), + [anon_sym_u8R_DQUOTE] = ACTIONS(3334), + [anon_sym_co_await] = ACTIONS(3332), + [anon_sym_new] = ACTIONS(3332), + [anon_sym_requires] = ACTIONS(3332), + [sym_this] = ACTIONS(3332), }, [1229] = { - [sym_identifier] = ACTIONS(2522), - [anon_sym_LPAREN2] = ACTIONS(2524), - [anon_sym_BANG] = ACTIONS(2524), - [anon_sym_TILDE] = ACTIONS(2524), - [anon_sym_DASH] = ACTIONS(2522), - [anon_sym_PLUS] = ACTIONS(2522), - [anon_sym_STAR] = ACTIONS(2524), - [anon_sym_AMP] = ACTIONS(2524), - [anon_sym_SEMI] = ACTIONS(2524), - [anon_sym_typedef] = ACTIONS(2522), - [anon_sym_extern] = ACTIONS(2522), - [anon_sym___attribute__] = ACTIONS(2522), - [anon_sym_COLON_COLON] = ACTIONS(2524), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2524), - [anon_sym___declspec] = ACTIONS(2522), - [anon_sym_LBRACE] = ACTIONS(2524), - [anon_sym_LBRACK] = ACTIONS(2522), - [anon_sym_static] = ACTIONS(2522), - [anon_sym_register] = ACTIONS(2522), - [anon_sym_inline] = ACTIONS(2522), - [anon_sym_thread_local] = ACTIONS(2522), - [anon_sym_const] = ACTIONS(2522), - [anon_sym_volatile] = ACTIONS(2522), - [anon_sym_restrict] = ACTIONS(2522), - [anon_sym__Atomic] = ACTIONS(2522), - [anon_sym_mutable] = ACTIONS(2522), - [anon_sym_constexpr] = ACTIONS(2522), - [anon_sym_constinit] = ACTIONS(2522), - [anon_sym_consteval] = ACTIONS(2522), - [anon_sym_signed] = ACTIONS(2522), - [anon_sym_unsigned] = ACTIONS(2522), - [anon_sym_long] = ACTIONS(2522), - [anon_sym_short] = ACTIONS(2522), - [sym_primitive_type] = ACTIONS(2522), - [anon_sym_enum] = ACTIONS(2522), - [anon_sym_class] = ACTIONS(2522), - [anon_sym_struct] = ACTIONS(2522), - [anon_sym_union] = ACTIONS(2522), - [anon_sym_if] = ACTIONS(2522), - [anon_sym_else] = ACTIONS(2522), - [anon_sym_switch] = ACTIONS(2522), - [anon_sym_while] = ACTIONS(2522), - [anon_sym_do] = ACTIONS(2522), - [anon_sym_for] = ACTIONS(2522), - [anon_sym_return] = ACTIONS(2522), - [anon_sym_break] = ACTIONS(2522), - [anon_sym_continue] = ACTIONS(2522), - [anon_sym_goto] = ACTIONS(2522), - [anon_sym_not] = ACTIONS(2522), - [anon_sym_compl] = ACTIONS(2522), - [anon_sym_DASH_DASH] = ACTIONS(2524), - [anon_sym_PLUS_PLUS] = ACTIONS(2524), - [anon_sym_sizeof] = ACTIONS(2522), - [sym_number_literal] = ACTIONS(2524), - [anon_sym_L_SQUOTE] = ACTIONS(2524), - [anon_sym_u_SQUOTE] = ACTIONS(2524), - [anon_sym_U_SQUOTE] = ACTIONS(2524), - [anon_sym_u8_SQUOTE] = ACTIONS(2524), - [anon_sym_SQUOTE] = ACTIONS(2524), - [anon_sym_L_DQUOTE] = ACTIONS(2524), - [anon_sym_u_DQUOTE] = ACTIONS(2524), - [anon_sym_U_DQUOTE] = ACTIONS(2524), - [anon_sym_u8_DQUOTE] = ACTIONS(2524), - [anon_sym_DQUOTE] = ACTIONS(2524), - [sym_true] = ACTIONS(2522), - [sym_false] = ACTIONS(2522), - [sym_null] = ACTIONS(2522), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2522), - [anon_sym_decltype] = ACTIONS(2522), - [anon_sym_virtual] = ACTIONS(2522), - [anon_sym_typename] = ACTIONS(2522), - [anon_sym_template] = ACTIONS(2522), - [anon_sym_try] = ACTIONS(2522), - [anon_sym_delete] = ACTIONS(2522), - [anon_sym_throw] = ACTIONS(2522), - [anon_sym_co_return] = ACTIONS(2522), - [anon_sym_co_yield] = ACTIONS(2522), - [anon_sym_R_DQUOTE] = ACTIONS(2524), - [anon_sym_LR_DQUOTE] = ACTIONS(2524), - [anon_sym_uR_DQUOTE] = ACTIONS(2524), - [anon_sym_UR_DQUOTE] = ACTIONS(2524), - [anon_sym_u8R_DQUOTE] = ACTIONS(2524), - [anon_sym_co_await] = ACTIONS(2522), - [anon_sym_new] = ACTIONS(2522), - [anon_sym_requires] = ACTIONS(2522), - [sym_this] = ACTIONS(2522), - [sym_nullptr] = ACTIONS(2522), + [sym_identifier] = ACTIONS(3391), + [aux_sym_preproc_include_token1] = ACTIONS(3391), + [aux_sym_preproc_def_token1] = ACTIONS(3391), + [aux_sym_preproc_if_token1] = ACTIONS(3391), + [aux_sym_preproc_if_token2] = ACTIONS(3391), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3391), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3391), + [sym_preproc_directive] = ACTIONS(3391), + [anon_sym_LPAREN2] = ACTIONS(3393), + [anon_sym_BANG] = ACTIONS(3393), + [anon_sym_TILDE] = ACTIONS(3393), + [anon_sym_DASH] = ACTIONS(3391), + [anon_sym_PLUS] = ACTIONS(3391), + [anon_sym_STAR] = ACTIONS(3393), + [anon_sym_AMP_AMP] = ACTIONS(3393), + [anon_sym_AMP] = ACTIONS(3391), + [anon_sym_SEMI] = ACTIONS(3393), + [anon_sym_typedef] = ACTIONS(3391), + [anon_sym_extern] = ACTIONS(3391), + [anon_sym___attribute__] = ACTIONS(3391), + [anon_sym_COLON_COLON] = ACTIONS(3393), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3393), + [anon_sym___declspec] = ACTIONS(3391), + [anon_sym___based] = ACTIONS(3391), + [anon_sym___cdecl] = ACTIONS(3391), + [anon_sym___clrcall] = ACTIONS(3391), + [anon_sym___stdcall] = ACTIONS(3391), + [anon_sym___fastcall] = ACTIONS(3391), + [anon_sym___thiscall] = ACTIONS(3391), + [anon_sym___vectorcall] = ACTIONS(3391), + [anon_sym_LBRACE] = ACTIONS(3393), + [anon_sym_LBRACK] = ACTIONS(3391), + [anon_sym_static] = ACTIONS(3391), + [anon_sym_register] = ACTIONS(3391), + [anon_sym_inline] = ACTIONS(3391), + [anon_sym_thread_local] = ACTIONS(3391), + [anon_sym_const] = ACTIONS(3391), + [anon_sym_constexpr] = ACTIONS(3391), + [anon_sym_volatile] = ACTIONS(3391), + [anon_sym_restrict] = ACTIONS(3391), + [anon_sym___restrict__] = ACTIONS(3391), + [anon_sym__Atomic] = ACTIONS(3391), + [anon_sym__Noreturn] = ACTIONS(3391), + [anon_sym_noreturn] = ACTIONS(3391), + [anon_sym_mutable] = ACTIONS(3391), + [anon_sym_constinit] = ACTIONS(3391), + [anon_sym_consteval] = ACTIONS(3391), + [anon_sym_signed] = ACTIONS(3391), + [anon_sym_unsigned] = ACTIONS(3391), + [anon_sym_long] = ACTIONS(3391), + [anon_sym_short] = ACTIONS(3391), + [sym_primitive_type] = ACTIONS(3391), + [anon_sym_enum] = ACTIONS(3391), + [anon_sym_class] = ACTIONS(3391), + [anon_sym_struct] = ACTIONS(3391), + [anon_sym_union] = ACTIONS(3391), + [anon_sym_if] = ACTIONS(3391), + [anon_sym_switch] = ACTIONS(3391), + [anon_sym_case] = ACTIONS(3391), + [anon_sym_default] = ACTIONS(3391), + [anon_sym_while] = ACTIONS(3391), + [anon_sym_do] = ACTIONS(3391), + [anon_sym_for] = ACTIONS(3391), + [anon_sym_return] = ACTIONS(3391), + [anon_sym_break] = ACTIONS(3391), + [anon_sym_continue] = ACTIONS(3391), + [anon_sym_goto] = ACTIONS(3391), + [anon_sym_not] = ACTIONS(3391), + [anon_sym_compl] = ACTIONS(3391), + [anon_sym_DASH_DASH] = ACTIONS(3393), + [anon_sym_PLUS_PLUS] = ACTIONS(3393), + [anon_sym_sizeof] = ACTIONS(3391), + [anon_sym_offsetof] = ACTIONS(3391), + [anon_sym__Generic] = ACTIONS(3391), + [anon_sym_asm] = ACTIONS(3391), + [anon_sym___asm__] = ACTIONS(3391), + [sym_number_literal] = ACTIONS(3393), + [anon_sym_L_SQUOTE] = ACTIONS(3393), + [anon_sym_u_SQUOTE] = ACTIONS(3393), + [anon_sym_U_SQUOTE] = ACTIONS(3393), + [anon_sym_u8_SQUOTE] = ACTIONS(3393), + [anon_sym_SQUOTE] = ACTIONS(3393), + [anon_sym_L_DQUOTE] = ACTIONS(3393), + [anon_sym_u_DQUOTE] = ACTIONS(3393), + [anon_sym_U_DQUOTE] = ACTIONS(3393), + [anon_sym_u8_DQUOTE] = ACTIONS(3393), + [anon_sym_DQUOTE] = ACTIONS(3393), + [sym_true] = ACTIONS(3391), + [sym_false] = ACTIONS(3391), + [anon_sym_NULL] = ACTIONS(3391), + [anon_sym_nullptr] = ACTIONS(3391), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3391), + [anon_sym_decltype] = ACTIONS(3391), + [anon_sym_virtual] = ACTIONS(3391), + [anon_sym_explicit] = ACTIONS(3391), + [anon_sym_typename] = ACTIONS(3391), + [anon_sym_template] = ACTIONS(3391), + [anon_sym_operator] = ACTIONS(3391), + [anon_sym_try] = ACTIONS(3391), + [anon_sym_delete] = ACTIONS(3391), + [anon_sym_throw] = ACTIONS(3391), + [anon_sym_namespace] = ACTIONS(3391), + [anon_sym_using] = ACTIONS(3391), + [anon_sym_static_assert] = ACTIONS(3391), + [anon_sym_concept] = ACTIONS(3391), + [anon_sym_co_return] = ACTIONS(3391), + [anon_sym_co_yield] = ACTIONS(3391), + [anon_sym_R_DQUOTE] = ACTIONS(3393), + [anon_sym_LR_DQUOTE] = ACTIONS(3393), + [anon_sym_uR_DQUOTE] = ACTIONS(3393), + [anon_sym_UR_DQUOTE] = ACTIONS(3393), + [anon_sym_u8R_DQUOTE] = ACTIONS(3393), + [anon_sym_co_await] = ACTIONS(3391), + [anon_sym_new] = ACTIONS(3391), + [anon_sym_requires] = ACTIONS(3391), + [sym_this] = ACTIONS(3391), }, [1230] = { - [sym_identifier] = 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_AMP] = ACTIONS(2574), - [anon_sym_SEMI] = ACTIONS(2574), - [anon_sym_typedef] = ACTIONS(2572), - [anon_sym_extern] = ACTIONS(2572), - [anon_sym___attribute__] = ACTIONS(2572), - [anon_sym_COLON_COLON] = ACTIONS(2574), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2574), - [anon_sym___declspec] = ACTIONS(2572), - [anon_sym_LBRACE] = ACTIONS(2574), - [anon_sym_LBRACK] = ACTIONS(2572), - [anon_sym_static] = ACTIONS(2572), - [anon_sym_register] = ACTIONS(2572), - [anon_sym_inline] = ACTIONS(2572), - [anon_sym_thread_local] = ACTIONS(2572), - [anon_sym_const] = ACTIONS(2572), - [anon_sym_volatile] = ACTIONS(2572), - [anon_sym_restrict] = ACTIONS(2572), - [anon_sym__Atomic] = ACTIONS(2572), - [anon_sym_mutable] = ACTIONS(2572), - [anon_sym_constexpr] = ACTIONS(2572), - [anon_sym_constinit] = ACTIONS(2572), - [anon_sym_consteval] = ACTIONS(2572), - [anon_sym_signed] = ACTIONS(2572), - [anon_sym_unsigned] = ACTIONS(2572), - [anon_sym_long] = ACTIONS(2572), - [anon_sym_short] = ACTIONS(2572), - [sym_primitive_type] = ACTIONS(2572), - [anon_sym_enum] = ACTIONS(2572), - [anon_sym_class] = ACTIONS(2572), - [anon_sym_struct] = ACTIONS(2572), - [anon_sym_union] = ACTIONS(2572), - [anon_sym_if] = ACTIONS(2572), - [anon_sym_else] = ACTIONS(2572), - [anon_sym_switch] = ACTIONS(2572), - [anon_sym_while] = ACTIONS(2572), - [anon_sym_do] = ACTIONS(2572), - [anon_sym_for] = ACTIONS(2572), - [anon_sym_return] = ACTIONS(2572), - [anon_sym_break] = ACTIONS(2572), - [anon_sym_continue] = ACTIONS(2572), - [anon_sym_goto] = ACTIONS(2572), - [anon_sym_not] = ACTIONS(2572), - [anon_sym_compl] = ACTIONS(2572), - [anon_sym_DASH_DASH] = ACTIONS(2574), - [anon_sym_PLUS_PLUS] = ACTIONS(2574), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2574), - [anon_sym_u_DQUOTE] = ACTIONS(2574), - [anon_sym_U_DQUOTE] = ACTIONS(2574), - [anon_sym_u8_DQUOTE] = ACTIONS(2574), - [anon_sym_DQUOTE] = ACTIONS(2574), - [sym_true] = ACTIONS(2572), - [sym_false] = ACTIONS(2572), - [sym_null] = ACTIONS(2572), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2572), - [anon_sym_decltype] = ACTIONS(2572), - [anon_sym_virtual] = ACTIONS(2572), - [anon_sym_typename] = ACTIONS(2572), - [anon_sym_template] = ACTIONS(2572), - [anon_sym_try] = ACTIONS(2572), - [anon_sym_delete] = ACTIONS(2572), - [anon_sym_throw] = ACTIONS(2572), - [anon_sym_co_return] = ACTIONS(2572), - [anon_sym_co_yield] = ACTIONS(2572), - [anon_sym_R_DQUOTE] = ACTIONS(2574), - [anon_sym_LR_DQUOTE] = ACTIONS(2574), - [anon_sym_uR_DQUOTE] = ACTIONS(2574), - [anon_sym_UR_DQUOTE] = ACTIONS(2574), - [anon_sym_u8R_DQUOTE] = ACTIONS(2574), - [anon_sym_co_await] = ACTIONS(2572), - [anon_sym_new] = ACTIONS(2572), - [anon_sym_requires] = ACTIONS(2572), - [sym_this] = ACTIONS(2572), - [sym_nullptr] = ACTIONS(2572), + [sym_identifier] = ACTIONS(3395), + [aux_sym_preproc_include_token1] = ACTIONS(3395), + [aux_sym_preproc_def_token1] = ACTIONS(3395), + [aux_sym_preproc_if_token1] = ACTIONS(3395), + [aux_sym_preproc_if_token2] = ACTIONS(3395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3395), + [sym_preproc_directive] = ACTIONS(3395), + [anon_sym_LPAREN2] = ACTIONS(3397), + [anon_sym_BANG] = ACTIONS(3397), + [anon_sym_TILDE] = ACTIONS(3397), + [anon_sym_DASH] = ACTIONS(3395), + [anon_sym_PLUS] = ACTIONS(3395), + [anon_sym_STAR] = ACTIONS(3397), + [anon_sym_AMP_AMP] = ACTIONS(3397), + [anon_sym_AMP] = ACTIONS(3395), + [anon_sym_SEMI] = ACTIONS(3397), + [anon_sym_typedef] = ACTIONS(3395), + [anon_sym_extern] = ACTIONS(3395), + [anon_sym___attribute__] = ACTIONS(3395), + [anon_sym_COLON_COLON] = ACTIONS(3397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3397), + [anon_sym___declspec] = ACTIONS(3395), + [anon_sym___based] = ACTIONS(3395), + [anon_sym___cdecl] = ACTIONS(3395), + [anon_sym___clrcall] = ACTIONS(3395), + [anon_sym___stdcall] = ACTIONS(3395), + [anon_sym___fastcall] = ACTIONS(3395), + [anon_sym___thiscall] = ACTIONS(3395), + [anon_sym___vectorcall] = ACTIONS(3395), + [anon_sym_LBRACE] = ACTIONS(3397), + [anon_sym_LBRACK] = ACTIONS(3395), + [anon_sym_static] = ACTIONS(3395), + [anon_sym_register] = ACTIONS(3395), + [anon_sym_inline] = ACTIONS(3395), + [anon_sym_thread_local] = ACTIONS(3395), + [anon_sym_const] = ACTIONS(3395), + [anon_sym_constexpr] = ACTIONS(3395), + [anon_sym_volatile] = ACTIONS(3395), + [anon_sym_restrict] = ACTIONS(3395), + [anon_sym___restrict__] = ACTIONS(3395), + [anon_sym__Atomic] = ACTIONS(3395), + [anon_sym__Noreturn] = ACTIONS(3395), + [anon_sym_noreturn] = ACTIONS(3395), + [anon_sym_mutable] = ACTIONS(3395), + [anon_sym_constinit] = ACTIONS(3395), + [anon_sym_consteval] = ACTIONS(3395), + [anon_sym_signed] = ACTIONS(3395), + [anon_sym_unsigned] = ACTIONS(3395), + [anon_sym_long] = ACTIONS(3395), + [anon_sym_short] = ACTIONS(3395), + [sym_primitive_type] = ACTIONS(3395), + [anon_sym_enum] = ACTIONS(3395), + [anon_sym_class] = ACTIONS(3395), + [anon_sym_struct] = ACTIONS(3395), + [anon_sym_union] = ACTIONS(3395), + [anon_sym_if] = ACTIONS(3395), + [anon_sym_switch] = ACTIONS(3395), + [anon_sym_case] = ACTIONS(3395), + [anon_sym_default] = ACTIONS(3395), + [anon_sym_while] = ACTIONS(3395), + [anon_sym_do] = ACTIONS(3395), + [anon_sym_for] = ACTIONS(3395), + [anon_sym_return] = ACTIONS(3395), + [anon_sym_break] = ACTIONS(3395), + [anon_sym_continue] = ACTIONS(3395), + [anon_sym_goto] = ACTIONS(3395), + [anon_sym_not] = ACTIONS(3395), + [anon_sym_compl] = ACTIONS(3395), + [anon_sym_DASH_DASH] = ACTIONS(3397), + [anon_sym_PLUS_PLUS] = ACTIONS(3397), + [anon_sym_sizeof] = ACTIONS(3395), + [anon_sym_offsetof] = ACTIONS(3395), + [anon_sym__Generic] = ACTIONS(3395), + [anon_sym_asm] = ACTIONS(3395), + [anon_sym___asm__] = ACTIONS(3395), + [sym_number_literal] = ACTIONS(3397), + [anon_sym_L_SQUOTE] = ACTIONS(3397), + [anon_sym_u_SQUOTE] = ACTIONS(3397), + [anon_sym_U_SQUOTE] = ACTIONS(3397), + [anon_sym_u8_SQUOTE] = ACTIONS(3397), + [anon_sym_SQUOTE] = ACTIONS(3397), + [anon_sym_L_DQUOTE] = ACTIONS(3397), + [anon_sym_u_DQUOTE] = ACTIONS(3397), + [anon_sym_U_DQUOTE] = ACTIONS(3397), + [anon_sym_u8_DQUOTE] = ACTIONS(3397), + [anon_sym_DQUOTE] = ACTIONS(3397), + [sym_true] = ACTIONS(3395), + [sym_false] = ACTIONS(3395), + [anon_sym_NULL] = ACTIONS(3395), + [anon_sym_nullptr] = ACTIONS(3395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3395), + [anon_sym_decltype] = ACTIONS(3395), + [anon_sym_virtual] = ACTIONS(3395), + [anon_sym_explicit] = ACTIONS(3395), + [anon_sym_typename] = ACTIONS(3395), + [anon_sym_template] = ACTIONS(3395), + [anon_sym_operator] = ACTIONS(3395), + [anon_sym_try] = ACTIONS(3395), + [anon_sym_delete] = ACTIONS(3395), + [anon_sym_throw] = ACTIONS(3395), + [anon_sym_namespace] = ACTIONS(3395), + [anon_sym_using] = ACTIONS(3395), + [anon_sym_static_assert] = ACTIONS(3395), + [anon_sym_concept] = ACTIONS(3395), + [anon_sym_co_return] = ACTIONS(3395), + [anon_sym_co_yield] = ACTIONS(3395), + [anon_sym_R_DQUOTE] = ACTIONS(3397), + [anon_sym_LR_DQUOTE] = ACTIONS(3397), + [anon_sym_uR_DQUOTE] = ACTIONS(3397), + [anon_sym_UR_DQUOTE] = ACTIONS(3397), + [anon_sym_u8R_DQUOTE] = ACTIONS(3397), + [anon_sym_co_await] = ACTIONS(3395), + [anon_sym_new] = ACTIONS(3395), + [anon_sym_requires] = ACTIONS(3395), + [sym_this] = ACTIONS(3395), }, [1231] = { - [sym_identifier] = ACTIONS(2646), - [anon_sym_LPAREN2] = ACTIONS(2648), - [anon_sym_BANG] = ACTIONS(2648), - [anon_sym_TILDE] = ACTIONS(2648), - [anon_sym_DASH] = ACTIONS(2646), - [anon_sym_PLUS] = ACTIONS(2646), - [anon_sym_STAR] = ACTIONS(2648), - [anon_sym_AMP] = ACTIONS(2648), - [anon_sym_SEMI] = ACTIONS(2648), - [anon_sym_typedef] = ACTIONS(2646), - [anon_sym_extern] = ACTIONS(2646), - [anon_sym___attribute__] = ACTIONS(2646), - [anon_sym_COLON_COLON] = ACTIONS(2648), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2648), - [anon_sym___declspec] = ACTIONS(2646), - [anon_sym_LBRACE] = ACTIONS(2648), - [anon_sym_LBRACK] = ACTIONS(2646), - [anon_sym_static] = ACTIONS(2646), - [anon_sym_register] = ACTIONS(2646), - [anon_sym_inline] = ACTIONS(2646), - [anon_sym_thread_local] = ACTIONS(2646), - [anon_sym_const] = ACTIONS(2646), - [anon_sym_volatile] = ACTIONS(2646), - [anon_sym_restrict] = ACTIONS(2646), - [anon_sym__Atomic] = ACTIONS(2646), - [anon_sym_mutable] = ACTIONS(2646), - [anon_sym_constexpr] = ACTIONS(2646), - [anon_sym_constinit] = ACTIONS(2646), - [anon_sym_consteval] = ACTIONS(2646), - [anon_sym_signed] = ACTIONS(2646), - [anon_sym_unsigned] = ACTIONS(2646), - [anon_sym_long] = ACTIONS(2646), - [anon_sym_short] = ACTIONS(2646), - [sym_primitive_type] = ACTIONS(2646), - [anon_sym_enum] = ACTIONS(2646), - [anon_sym_class] = ACTIONS(2646), - [anon_sym_struct] = ACTIONS(2646), - [anon_sym_union] = ACTIONS(2646), - [anon_sym_if] = ACTIONS(2646), - [anon_sym_else] = ACTIONS(3400), - [anon_sym_switch] = ACTIONS(2646), - [anon_sym_while] = ACTIONS(2646), - [anon_sym_do] = ACTIONS(2646), - [anon_sym_for] = ACTIONS(2646), - [anon_sym_return] = ACTIONS(2646), - [anon_sym_break] = ACTIONS(2646), - [anon_sym_continue] = ACTIONS(2646), - [anon_sym_goto] = ACTIONS(2646), - [anon_sym_not] = ACTIONS(2646), - [anon_sym_compl] = ACTIONS(2646), - [anon_sym_DASH_DASH] = ACTIONS(2648), - [anon_sym_PLUS_PLUS] = ACTIONS(2648), - [anon_sym_sizeof] = ACTIONS(2646), - [sym_number_literal] = ACTIONS(2648), - [anon_sym_L_SQUOTE] = ACTIONS(2648), - [anon_sym_u_SQUOTE] = ACTIONS(2648), - [anon_sym_U_SQUOTE] = ACTIONS(2648), - [anon_sym_u8_SQUOTE] = ACTIONS(2648), - [anon_sym_SQUOTE] = ACTIONS(2648), - [anon_sym_L_DQUOTE] = ACTIONS(2648), - [anon_sym_u_DQUOTE] = ACTIONS(2648), - [anon_sym_U_DQUOTE] = ACTIONS(2648), - [anon_sym_u8_DQUOTE] = ACTIONS(2648), - [anon_sym_DQUOTE] = ACTIONS(2648), - [sym_true] = ACTIONS(2646), - [sym_false] = ACTIONS(2646), - [sym_null] = ACTIONS(2646), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2646), - [anon_sym_decltype] = ACTIONS(2646), - [anon_sym_virtual] = ACTIONS(2646), - [anon_sym_typename] = ACTIONS(2646), - [anon_sym_template] = ACTIONS(2646), - [anon_sym_try] = ACTIONS(2646), - [anon_sym_delete] = ACTIONS(2646), - [anon_sym_throw] = ACTIONS(2646), - [anon_sym_co_return] = ACTIONS(2646), - [anon_sym_co_yield] = ACTIONS(2646), - [anon_sym_R_DQUOTE] = ACTIONS(2648), - [anon_sym_LR_DQUOTE] = ACTIONS(2648), - [anon_sym_uR_DQUOTE] = ACTIONS(2648), - [anon_sym_UR_DQUOTE] = ACTIONS(2648), - [anon_sym_u8R_DQUOTE] = ACTIONS(2648), - [anon_sym_co_await] = ACTIONS(2646), - [anon_sym_new] = ACTIONS(2646), - [anon_sym_requires] = ACTIONS(2646), - [sym_this] = ACTIONS(2646), - [sym_nullptr] = ACTIONS(2646), + [sym_identifier] = ACTIONS(3266), + [aux_sym_preproc_include_token1] = ACTIONS(3266), + [aux_sym_preproc_def_token1] = ACTIONS(3266), + [aux_sym_preproc_if_token1] = ACTIONS(3266), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3266), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3266), + [sym_preproc_directive] = ACTIONS(3266), + [anon_sym_LPAREN2] = ACTIONS(3268), + [anon_sym_BANG] = ACTIONS(3268), + [anon_sym_TILDE] = ACTIONS(3268), + [anon_sym_DASH] = ACTIONS(3266), + [anon_sym_PLUS] = ACTIONS(3266), + [anon_sym_STAR] = ACTIONS(3268), + [anon_sym_AMP_AMP] = ACTIONS(3268), + [anon_sym_AMP] = ACTIONS(3266), + [anon_sym_SEMI] = ACTIONS(3268), + [anon_sym_typedef] = ACTIONS(3266), + [anon_sym_extern] = ACTIONS(3266), + [anon_sym___attribute__] = ACTIONS(3266), + [anon_sym_COLON_COLON] = ACTIONS(3268), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3268), + [anon_sym___declspec] = ACTIONS(3266), + [anon_sym___based] = ACTIONS(3266), + [anon_sym___cdecl] = ACTIONS(3266), + [anon_sym___clrcall] = ACTIONS(3266), + [anon_sym___stdcall] = ACTIONS(3266), + [anon_sym___fastcall] = ACTIONS(3266), + [anon_sym___thiscall] = ACTIONS(3266), + [anon_sym___vectorcall] = ACTIONS(3266), + [anon_sym_LBRACE] = ACTIONS(3268), + [anon_sym_RBRACE] = ACTIONS(3268), + [anon_sym_LBRACK] = ACTIONS(3266), + [anon_sym_static] = ACTIONS(3266), + [anon_sym_register] = ACTIONS(3266), + [anon_sym_inline] = ACTIONS(3266), + [anon_sym_thread_local] = ACTIONS(3266), + [anon_sym_const] = ACTIONS(3266), + [anon_sym_constexpr] = ACTIONS(3266), + [anon_sym_volatile] = ACTIONS(3266), + [anon_sym_restrict] = ACTIONS(3266), + [anon_sym___restrict__] = ACTIONS(3266), + [anon_sym__Atomic] = ACTIONS(3266), + [anon_sym__Noreturn] = ACTIONS(3266), + [anon_sym_noreturn] = ACTIONS(3266), + [anon_sym_mutable] = ACTIONS(3266), + [anon_sym_constinit] = ACTIONS(3266), + [anon_sym_consteval] = ACTIONS(3266), + [anon_sym_signed] = ACTIONS(3266), + [anon_sym_unsigned] = ACTIONS(3266), + [anon_sym_long] = ACTIONS(3266), + [anon_sym_short] = ACTIONS(3266), + [sym_primitive_type] = ACTIONS(3266), + [anon_sym_enum] = ACTIONS(3266), + [anon_sym_class] = ACTIONS(3266), + [anon_sym_struct] = ACTIONS(3266), + [anon_sym_union] = ACTIONS(3266), + [anon_sym_if] = ACTIONS(3266), + [anon_sym_switch] = ACTIONS(3266), + [anon_sym_case] = ACTIONS(3266), + [anon_sym_default] = ACTIONS(3266), + [anon_sym_while] = ACTIONS(3266), + [anon_sym_do] = ACTIONS(3266), + [anon_sym_for] = ACTIONS(3266), + [anon_sym_return] = ACTIONS(3266), + [anon_sym_break] = ACTIONS(3266), + [anon_sym_continue] = ACTIONS(3266), + [anon_sym_goto] = ACTIONS(3266), + [anon_sym_not] = ACTIONS(3266), + [anon_sym_compl] = ACTIONS(3266), + [anon_sym_DASH_DASH] = ACTIONS(3268), + [anon_sym_PLUS_PLUS] = ACTIONS(3268), + [anon_sym_sizeof] = ACTIONS(3266), + [anon_sym_offsetof] = ACTIONS(3266), + [anon_sym__Generic] = ACTIONS(3266), + [anon_sym_asm] = ACTIONS(3266), + [anon_sym___asm__] = ACTIONS(3266), + [sym_number_literal] = ACTIONS(3268), + [anon_sym_L_SQUOTE] = ACTIONS(3268), + [anon_sym_u_SQUOTE] = ACTIONS(3268), + [anon_sym_U_SQUOTE] = ACTIONS(3268), + [anon_sym_u8_SQUOTE] = ACTIONS(3268), + [anon_sym_SQUOTE] = ACTIONS(3268), + [anon_sym_L_DQUOTE] = ACTIONS(3268), + [anon_sym_u_DQUOTE] = ACTIONS(3268), + [anon_sym_U_DQUOTE] = ACTIONS(3268), + [anon_sym_u8_DQUOTE] = ACTIONS(3268), + [anon_sym_DQUOTE] = ACTIONS(3268), + [sym_true] = ACTIONS(3266), + [sym_false] = ACTIONS(3266), + [anon_sym_NULL] = ACTIONS(3266), + [anon_sym_nullptr] = ACTIONS(3266), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3266), + [anon_sym_decltype] = ACTIONS(3266), + [anon_sym_virtual] = ACTIONS(3266), + [anon_sym_explicit] = ACTIONS(3266), + [anon_sym_typename] = ACTIONS(3266), + [anon_sym_template] = ACTIONS(3266), + [anon_sym_operator] = ACTIONS(3266), + [anon_sym_try] = ACTIONS(3266), + [anon_sym_delete] = ACTIONS(3266), + [anon_sym_throw] = ACTIONS(3266), + [anon_sym_namespace] = ACTIONS(3266), + [anon_sym_using] = ACTIONS(3266), + [anon_sym_static_assert] = ACTIONS(3266), + [anon_sym_concept] = ACTIONS(3266), + [anon_sym_co_return] = ACTIONS(3266), + [anon_sym_co_yield] = ACTIONS(3266), + [anon_sym_R_DQUOTE] = ACTIONS(3268), + [anon_sym_LR_DQUOTE] = ACTIONS(3268), + [anon_sym_uR_DQUOTE] = ACTIONS(3268), + [anon_sym_UR_DQUOTE] = ACTIONS(3268), + [anon_sym_u8R_DQUOTE] = ACTIONS(3268), + [anon_sym_co_await] = ACTIONS(3266), + [anon_sym_new] = ACTIONS(3266), + [anon_sym_requires] = ACTIONS(3266), + [sym_this] = ACTIONS(3266), }, [1232] = { - [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_AMP] = ACTIONS(2464), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym_LBRACE] = ACTIONS(2464), - [anon_sym_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_identifier] = ACTIONS(3274), + [aux_sym_preproc_include_token1] = ACTIONS(3274), + [aux_sym_preproc_def_token1] = ACTIONS(3274), + [aux_sym_preproc_if_token1] = ACTIONS(3274), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3274), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3274), + [sym_preproc_directive] = ACTIONS(3274), + [anon_sym_LPAREN2] = ACTIONS(3276), + [anon_sym_BANG] = ACTIONS(3276), + [anon_sym_TILDE] = ACTIONS(3276), + [anon_sym_DASH] = ACTIONS(3274), + [anon_sym_PLUS] = ACTIONS(3274), + [anon_sym_STAR] = ACTIONS(3276), + [anon_sym_AMP_AMP] = ACTIONS(3276), + [anon_sym_AMP] = ACTIONS(3274), + [anon_sym_SEMI] = ACTIONS(3276), + [anon_sym_typedef] = ACTIONS(3274), + [anon_sym_extern] = ACTIONS(3274), + [anon_sym___attribute__] = ACTIONS(3274), + [anon_sym_COLON_COLON] = ACTIONS(3276), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3276), + [anon_sym___declspec] = ACTIONS(3274), + [anon_sym___based] = ACTIONS(3274), + [anon_sym___cdecl] = ACTIONS(3274), + [anon_sym___clrcall] = ACTIONS(3274), + [anon_sym___stdcall] = ACTIONS(3274), + [anon_sym___fastcall] = ACTIONS(3274), + [anon_sym___thiscall] = ACTIONS(3274), + [anon_sym___vectorcall] = ACTIONS(3274), + [anon_sym_LBRACE] = ACTIONS(3276), + [anon_sym_RBRACE] = ACTIONS(3276), + [anon_sym_LBRACK] = ACTIONS(3274), + [anon_sym_static] = ACTIONS(3274), + [anon_sym_register] = ACTIONS(3274), + [anon_sym_inline] = ACTIONS(3274), + [anon_sym_thread_local] = ACTIONS(3274), + [anon_sym_const] = ACTIONS(3274), + [anon_sym_constexpr] = ACTIONS(3274), + [anon_sym_volatile] = ACTIONS(3274), + [anon_sym_restrict] = ACTIONS(3274), + [anon_sym___restrict__] = ACTIONS(3274), + [anon_sym__Atomic] = ACTIONS(3274), + [anon_sym__Noreturn] = ACTIONS(3274), + [anon_sym_noreturn] = ACTIONS(3274), + [anon_sym_mutable] = ACTIONS(3274), + [anon_sym_constinit] = ACTIONS(3274), + [anon_sym_consteval] = ACTIONS(3274), + [anon_sym_signed] = ACTIONS(3274), + [anon_sym_unsigned] = ACTIONS(3274), + [anon_sym_long] = ACTIONS(3274), + [anon_sym_short] = ACTIONS(3274), + [sym_primitive_type] = ACTIONS(3274), + [anon_sym_enum] = ACTIONS(3274), + [anon_sym_class] = ACTIONS(3274), + [anon_sym_struct] = ACTIONS(3274), + [anon_sym_union] = ACTIONS(3274), + [anon_sym_if] = ACTIONS(3274), + [anon_sym_switch] = ACTIONS(3274), + [anon_sym_case] = ACTIONS(3274), + [anon_sym_default] = ACTIONS(3274), + [anon_sym_while] = ACTIONS(3274), + [anon_sym_do] = ACTIONS(3274), + [anon_sym_for] = ACTIONS(3274), + [anon_sym_return] = ACTIONS(3274), + [anon_sym_break] = ACTIONS(3274), + [anon_sym_continue] = ACTIONS(3274), + [anon_sym_goto] = ACTIONS(3274), + [anon_sym_not] = ACTIONS(3274), + [anon_sym_compl] = ACTIONS(3274), + [anon_sym_DASH_DASH] = ACTIONS(3276), + [anon_sym_PLUS_PLUS] = ACTIONS(3276), + [anon_sym_sizeof] = ACTIONS(3274), + [anon_sym_offsetof] = ACTIONS(3274), + [anon_sym__Generic] = ACTIONS(3274), + [anon_sym_asm] = ACTIONS(3274), + [anon_sym___asm__] = ACTIONS(3274), + [sym_number_literal] = ACTIONS(3276), + [anon_sym_L_SQUOTE] = ACTIONS(3276), + [anon_sym_u_SQUOTE] = ACTIONS(3276), + [anon_sym_U_SQUOTE] = ACTIONS(3276), + [anon_sym_u8_SQUOTE] = ACTIONS(3276), + [anon_sym_SQUOTE] = ACTIONS(3276), + [anon_sym_L_DQUOTE] = ACTIONS(3276), + [anon_sym_u_DQUOTE] = ACTIONS(3276), + [anon_sym_U_DQUOTE] = ACTIONS(3276), + [anon_sym_u8_DQUOTE] = ACTIONS(3276), + [anon_sym_DQUOTE] = ACTIONS(3276), + [sym_true] = ACTIONS(3274), + [sym_false] = ACTIONS(3274), + [anon_sym_NULL] = ACTIONS(3274), + [anon_sym_nullptr] = ACTIONS(3274), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3274), + [anon_sym_decltype] = ACTIONS(3274), + [anon_sym_virtual] = ACTIONS(3274), + [anon_sym_explicit] = ACTIONS(3274), + [anon_sym_typename] = ACTIONS(3274), + [anon_sym_template] = ACTIONS(3274), + [anon_sym_operator] = ACTIONS(3274), + [anon_sym_try] = ACTIONS(3274), + [anon_sym_delete] = ACTIONS(3274), + [anon_sym_throw] = ACTIONS(3274), + [anon_sym_namespace] = ACTIONS(3274), + [anon_sym_using] = ACTIONS(3274), + [anon_sym_static_assert] = ACTIONS(3274), + [anon_sym_concept] = ACTIONS(3274), + [anon_sym_co_return] = ACTIONS(3274), + [anon_sym_co_yield] = ACTIONS(3274), + [anon_sym_R_DQUOTE] = ACTIONS(3276), + [anon_sym_LR_DQUOTE] = ACTIONS(3276), + [anon_sym_uR_DQUOTE] = ACTIONS(3276), + [anon_sym_UR_DQUOTE] = ACTIONS(3276), + [anon_sym_u8R_DQUOTE] = ACTIONS(3276), + [anon_sym_co_await] = ACTIONS(3274), + [anon_sym_new] = ACTIONS(3274), + [anon_sym_requires] = ACTIONS(3274), + [sym_this] = ACTIONS(3274), }, [1233] = { - [sym_identifier] = ACTIONS(2634), - [anon_sym_LPAREN2] = ACTIONS(2636), - [anon_sym_BANG] = ACTIONS(2636), - [anon_sym_TILDE] = ACTIONS(2636), - [anon_sym_DASH] = ACTIONS(2634), - [anon_sym_PLUS] = ACTIONS(2634), - [anon_sym_STAR] = ACTIONS(2636), - [anon_sym_AMP] = ACTIONS(2636), - [anon_sym_SEMI] = ACTIONS(2636), - [anon_sym_typedef] = ACTIONS(2634), - [anon_sym_extern] = ACTIONS(2634), - [anon_sym___attribute__] = ACTIONS(2634), - [anon_sym_COLON_COLON] = ACTIONS(2636), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2636), - [anon_sym___declspec] = ACTIONS(2634), - [anon_sym_LBRACE] = ACTIONS(2636), - [anon_sym_LBRACK] = ACTIONS(2634), - [anon_sym_static] = ACTIONS(2634), - [anon_sym_register] = ACTIONS(2634), - [anon_sym_inline] = ACTIONS(2634), - [anon_sym_thread_local] = ACTIONS(2634), - [anon_sym_const] = ACTIONS(2634), - [anon_sym_volatile] = ACTIONS(2634), - [anon_sym_restrict] = ACTIONS(2634), - [anon_sym__Atomic] = ACTIONS(2634), - [anon_sym_mutable] = ACTIONS(2634), - [anon_sym_constexpr] = ACTIONS(2634), - [anon_sym_constinit] = ACTIONS(2634), - [anon_sym_consteval] = ACTIONS(2634), - [anon_sym_signed] = ACTIONS(2634), - [anon_sym_unsigned] = ACTIONS(2634), - [anon_sym_long] = ACTIONS(2634), - [anon_sym_short] = ACTIONS(2634), - [sym_primitive_type] = ACTIONS(2634), - [anon_sym_enum] = ACTIONS(2634), - [anon_sym_class] = ACTIONS(2634), - [anon_sym_struct] = ACTIONS(2634), - [anon_sym_union] = ACTIONS(2634), - [anon_sym_if] = ACTIONS(2634), - [anon_sym_else] = ACTIONS(2634), - [anon_sym_switch] = ACTIONS(2634), - [anon_sym_while] = ACTIONS(2634), - [anon_sym_do] = ACTIONS(2634), - [anon_sym_for] = ACTIONS(2634), - [anon_sym_return] = ACTIONS(2634), - [anon_sym_break] = ACTIONS(2634), - [anon_sym_continue] = ACTIONS(2634), - [anon_sym_goto] = ACTIONS(2634), - [anon_sym_not] = ACTIONS(2634), - [anon_sym_compl] = ACTIONS(2634), - [anon_sym_DASH_DASH] = ACTIONS(2636), - [anon_sym_PLUS_PLUS] = ACTIONS(2636), - [anon_sym_sizeof] = ACTIONS(2634), - [sym_number_literal] = ACTIONS(2636), - [anon_sym_L_SQUOTE] = ACTIONS(2636), - [anon_sym_u_SQUOTE] = ACTIONS(2636), - [anon_sym_U_SQUOTE] = ACTIONS(2636), - [anon_sym_u8_SQUOTE] = ACTIONS(2636), - [anon_sym_SQUOTE] = ACTIONS(2636), - [anon_sym_L_DQUOTE] = ACTIONS(2636), - [anon_sym_u_DQUOTE] = ACTIONS(2636), - [anon_sym_U_DQUOTE] = ACTIONS(2636), - [anon_sym_u8_DQUOTE] = ACTIONS(2636), - [anon_sym_DQUOTE] = ACTIONS(2636), - [sym_true] = ACTIONS(2634), - [sym_false] = ACTIONS(2634), - [sym_null] = ACTIONS(2634), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2634), - [anon_sym_decltype] = ACTIONS(2634), - [anon_sym_virtual] = ACTIONS(2634), - [anon_sym_typename] = ACTIONS(2634), - [anon_sym_template] = ACTIONS(2634), - [anon_sym_try] = ACTIONS(2634), - [anon_sym_delete] = ACTIONS(2634), - [anon_sym_throw] = ACTIONS(2634), - [anon_sym_co_return] = ACTIONS(2634), - [anon_sym_co_yield] = ACTIONS(2634), - [anon_sym_R_DQUOTE] = ACTIONS(2636), - [anon_sym_LR_DQUOTE] = ACTIONS(2636), - [anon_sym_uR_DQUOTE] = ACTIONS(2636), - [anon_sym_UR_DQUOTE] = ACTIONS(2636), - [anon_sym_u8R_DQUOTE] = ACTIONS(2636), - [anon_sym_co_await] = ACTIONS(2634), - [anon_sym_new] = ACTIONS(2634), - [anon_sym_requires] = ACTIONS(2634), - [sym_this] = ACTIONS(2634), - [sym_nullptr] = ACTIONS(2634), + [sym_identifier] = ACTIONS(3278), + [aux_sym_preproc_include_token1] = ACTIONS(3278), + [aux_sym_preproc_def_token1] = ACTIONS(3278), + [aux_sym_preproc_if_token1] = ACTIONS(3278), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3278), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3278), + [sym_preproc_directive] = ACTIONS(3278), + [anon_sym_LPAREN2] = ACTIONS(3280), + [anon_sym_BANG] = ACTIONS(3280), + [anon_sym_TILDE] = ACTIONS(3280), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3280), + [anon_sym_AMP_AMP] = ACTIONS(3280), + [anon_sym_AMP] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3280), + [anon_sym_typedef] = ACTIONS(3278), + [anon_sym_extern] = ACTIONS(3278), + [anon_sym___attribute__] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3280), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3280), + [anon_sym___declspec] = ACTIONS(3278), + [anon_sym___based] = ACTIONS(3278), + [anon_sym___cdecl] = ACTIONS(3278), + [anon_sym___clrcall] = ACTIONS(3278), + [anon_sym___stdcall] = ACTIONS(3278), + [anon_sym___fastcall] = ACTIONS(3278), + [anon_sym___thiscall] = ACTIONS(3278), + [anon_sym___vectorcall] = ACTIONS(3278), + [anon_sym_LBRACE] = ACTIONS(3280), + [anon_sym_RBRACE] = ACTIONS(3280), + [anon_sym_LBRACK] = ACTIONS(3278), + [anon_sym_static] = ACTIONS(3278), + [anon_sym_register] = ACTIONS(3278), + [anon_sym_inline] = ACTIONS(3278), + [anon_sym_thread_local] = ACTIONS(3278), + [anon_sym_const] = ACTIONS(3278), + [anon_sym_constexpr] = ACTIONS(3278), + [anon_sym_volatile] = ACTIONS(3278), + [anon_sym_restrict] = ACTIONS(3278), + [anon_sym___restrict__] = ACTIONS(3278), + [anon_sym__Atomic] = ACTIONS(3278), + [anon_sym__Noreturn] = ACTIONS(3278), + [anon_sym_noreturn] = ACTIONS(3278), + [anon_sym_mutable] = ACTIONS(3278), + [anon_sym_constinit] = ACTIONS(3278), + [anon_sym_consteval] = ACTIONS(3278), + [anon_sym_signed] = ACTIONS(3278), + [anon_sym_unsigned] = ACTIONS(3278), + [anon_sym_long] = ACTIONS(3278), + [anon_sym_short] = ACTIONS(3278), + [sym_primitive_type] = ACTIONS(3278), + [anon_sym_enum] = ACTIONS(3278), + [anon_sym_class] = ACTIONS(3278), + [anon_sym_struct] = ACTIONS(3278), + [anon_sym_union] = ACTIONS(3278), + [anon_sym_if] = ACTIONS(3278), + [anon_sym_switch] = ACTIONS(3278), + [anon_sym_case] = ACTIONS(3278), + [anon_sym_default] = ACTIONS(3278), + [anon_sym_while] = ACTIONS(3278), + [anon_sym_do] = ACTIONS(3278), + [anon_sym_for] = ACTIONS(3278), + [anon_sym_return] = ACTIONS(3278), + [anon_sym_break] = ACTIONS(3278), + [anon_sym_continue] = ACTIONS(3278), + [anon_sym_goto] = ACTIONS(3278), + [anon_sym_not] = ACTIONS(3278), + [anon_sym_compl] = ACTIONS(3278), + [anon_sym_DASH_DASH] = ACTIONS(3280), + [anon_sym_PLUS_PLUS] = ACTIONS(3280), + [anon_sym_sizeof] = ACTIONS(3278), + [anon_sym_offsetof] = ACTIONS(3278), + [anon_sym__Generic] = ACTIONS(3278), + [anon_sym_asm] = ACTIONS(3278), + [anon_sym___asm__] = ACTIONS(3278), + [sym_number_literal] = ACTIONS(3280), + [anon_sym_L_SQUOTE] = ACTIONS(3280), + [anon_sym_u_SQUOTE] = ACTIONS(3280), + [anon_sym_U_SQUOTE] = ACTIONS(3280), + [anon_sym_u8_SQUOTE] = ACTIONS(3280), + [anon_sym_SQUOTE] = ACTIONS(3280), + [anon_sym_L_DQUOTE] = ACTIONS(3280), + [anon_sym_u_DQUOTE] = ACTIONS(3280), + [anon_sym_U_DQUOTE] = ACTIONS(3280), + [anon_sym_u8_DQUOTE] = ACTIONS(3280), + [anon_sym_DQUOTE] = ACTIONS(3280), + [sym_true] = ACTIONS(3278), + [sym_false] = ACTIONS(3278), + [anon_sym_NULL] = ACTIONS(3278), + [anon_sym_nullptr] = ACTIONS(3278), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3278), + [anon_sym_decltype] = ACTIONS(3278), + [anon_sym_virtual] = ACTIONS(3278), + [anon_sym_explicit] = ACTIONS(3278), + [anon_sym_typename] = ACTIONS(3278), + [anon_sym_template] = ACTIONS(3278), + [anon_sym_operator] = ACTIONS(3278), + [anon_sym_try] = ACTIONS(3278), + [anon_sym_delete] = ACTIONS(3278), + [anon_sym_throw] = ACTIONS(3278), + [anon_sym_namespace] = ACTIONS(3278), + [anon_sym_using] = ACTIONS(3278), + [anon_sym_static_assert] = ACTIONS(3278), + [anon_sym_concept] = ACTIONS(3278), + [anon_sym_co_return] = ACTIONS(3278), + [anon_sym_co_yield] = ACTIONS(3278), + [anon_sym_R_DQUOTE] = ACTIONS(3280), + [anon_sym_LR_DQUOTE] = ACTIONS(3280), + [anon_sym_uR_DQUOTE] = ACTIONS(3280), + [anon_sym_UR_DQUOTE] = ACTIONS(3280), + [anon_sym_u8R_DQUOTE] = ACTIONS(3280), + [anon_sym_co_await] = ACTIONS(3278), + [anon_sym_new] = ACTIONS(3278), + [anon_sym_requires] = ACTIONS(3278), + [sym_this] = ACTIONS(3278), }, [1234] = { - [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_AMP] = ACTIONS(2468), - [anon_sym_SEMI] = ACTIONS(2468), - [anon_sym_typedef] = ACTIONS(2466), - [anon_sym_extern] = ACTIONS(2466), - [anon_sym___attribute__] = ACTIONS(2466), - [anon_sym_COLON_COLON] = ACTIONS(2468), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2468), - [anon_sym___declspec] = ACTIONS(2466), - [anon_sym_LBRACE] = ACTIONS(2468), - [anon_sym_LBRACK] = ACTIONS(2466), - [anon_sym_static] = ACTIONS(2466), - [anon_sym_register] = ACTIONS(2466), - [anon_sym_inline] = ACTIONS(2466), - [anon_sym_thread_local] = ACTIONS(2466), - [anon_sym_const] = ACTIONS(2466), - [anon_sym_volatile] = ACTIONS(2466), - [anon_sym_restrict] = ACTIONS(2466), - [anon_sym__Atomic] = ACTIONS(2466), - [anon_sym_mutable] = ACTIONS(2466), - [anon_sym_constexpr] = ACTIONS(2466), - [anon_sym_constinit] = ACTIONS(2466), - [anon_sym_consteval] = ACTIONS(2466), - [anon_sym_signed] = ACTIONS(2466), - [anon_sym_unsigned] = ACTIONS(2466), - [anon_sym_long] = ACTIONS(2466), - [anon_sym_short] = ACTIONS(2466), - [sym_primitive_type] = ACTIONS(2466), - [anon_sym_enum] = ACTIONS(2466), - [anon_sym_class] = 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_return] = ACTIONS(2466), - [anon_sym_break] = ACTIONS(2466), - [anon_sym_continue] = ACTIONS(2466), - [anon_sym_goto] = ACTIONS(2466), - [anon_sym_not] = ACTIONS(2466), - [anon_sym_compl] = ACTIONS(2466), - [anon_sym_DASH_DASH] = ACTIONS(2468), - [anon_sym_PLUS_PLUS] = ACTIONS(2468), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2468), - [anon_sym_u_DQUOTE] = ACTIONS(2468), - [anon_sym_U_DQUOTE] = ACTIONS(2468), - [anon_sym_u8_DQUOTE] = ACTIONS(2468), - [anon_sym_DQUOTE] = ACTIONS(2468), - [sym_true] = ACTIONS(2466), - [sym_false] = ACTIONS(2466), - [sym_null] = ACTIONS(2466), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2466), - [anon_sym_decltype] = ACTIONS(2466), - [anon_sym_virtual] = ACTIONS(2466), - [anon_sym_typename] = ACTIONS(2466), - [anon_sym_template] = ACTIONS(2466), - [anon_sym_try] = ACTIONS(2466), - [anon_sym_delete] = ACTIONS(2466), - [anon_sym_throw] = ACTIONS(2466), - [anon_sym_co_return] = ACTIONS(2466), - [anon_sym_co_yield] = ACTIONS(2466), - [anon_sym_R_DQUOTE] = ACTIONS(2468), - [anon_sym_LR_DQUOTE] = ACTIONS(2468), - [anon_sym_uR_DQUOTE] = ACTIONS(2468), - [anon_sym_UR_DQUOTE] = ACTIONS(2468), - [anon_sym_u8R_DQUOTE] = ACTIONS(2468), - [anon_sym_co_await] = ACTIONS(2466), - [anon_sym_new] = ACTIONS(2466), - [anon_sym_requires] = ACTIONS(2466), - [sym_this] = ACTIONS(2466), - [sym_nullptr] = ACTIONS(2466), + [sym_identifier] = ACTIONS(3447), + [aux_sym_preproc_include_token1] = ACTIONS(3447), + [aux_sym_preproc_def_token1] = ACTIONS(3447), + [aux_sym_preproc_if_token1] = ACTIONS(3447), + [aux_sym_preproc_if_token2] = ACTIONS(3447), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3447), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3447), + [sym_preproc_directive] = ACTIONS(3447), + [anon_sym_LPAREN2] = ACTIONS(3449), + [anon_sym_BANG] = ACTIONS(3449), + [anon_sym_TILDE] = ACTIONS(3449), + [anon_sym_DASH] = ACTIONS(3447), + [anon_sym_PLUS] = ACTIONS(3447), + [anon_sym_STAR] = ACTIONS(3449), + [anon_sym_AMP_AMP] = ACTIONS(3449), + [anon_sym_AMP] = ACTIONS(3447), + [anon_sym_SEMI] = ACTIONS(3449), + [anon_sym_typedef] = ACTIONS(3447), + [anon_sym_extern] = ACTIONS(3447), + [anon_sym___attribute__] = ACTIONS(3447), + [anon_sym_COLON_COLON] = ACTIONS(3449), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3449), + [anon_sym___declspec] = ACTIONS(3447), + [anon_sym___based] = ACTIONS(3447), + [anon_sym___cdecl] = ACTIONS(3447), + [anon_sym___clrcall] = ACTIONS(3447), + [anon_sym___stdcall] = ACTIONS(3447), + [anon_sym___fastcall] = ACTIONS(3447), + [anon_sym___thiscall] = ACTIONS(3447), + [anon_sym___vectorcall] = ACTIONS(3447), + [anon_sym_LBRACE] = ACTIONS(3449), + [anon_sym_LBRACK] = ACTIONS(3447), + [anon_sym_static] = ACTIONS(3447), + [anon_sym_register] = ACTIONS(3447), + [anon_sym_inline] = ACTIONS(3447), + [anon_sym_thread_local] = ACTIONS(3447), + [anon_sym_const] = ACTIONS(3447), + [anon_sym_constexpr] = ACTIONS(3447), + [anon_sym_volatile] = ACTIONS(3447), + [anon_sym_restrict] = ACTIONS(3447), + [anon_sym___restrict__] = ACTIONS(3447), + [anon_sym__Atomic] = ACTIONS(3447), + [anon_sym__Noreturn] = ACTIONS(3447), + [anon_sym_noreturn] = ACTIONS(3447), + [anon_sym_mutable] = ACTIONS(3447), + [anon_sym_constinit] = ACTIONS(3447), + [anon_sym_consteval] = ACTIONS(3447), + [anon_sym_signed] = ACTIONS(3447), + [anon_sym_unsigned] = ACTIONS(3447), + [anon_sym_long] = ACTIONS(3447), + [anon_sym_short] = ACTIONS(3447), + [sym_primitive_type] = ACTIONS(3447), + [anon_sym_enum] = ACTIONS(3447), + [anon_sym_class] = ACTIONS(3447), + [anon_sym_struct] = ACTIONS(3447), + [anon_sym_union] = ACTIONS(3447), + [anon_sym_if] = ACTIONS(3447), + [anon_sym_switch] = ACTIONS(3447), + [anon_sym_case] = ACTIONS(3447), + [anon_sym_default] = ACTIONS(3447), + [anon_sym_while] = ACTIONS(3447), + [anon_sym_do] = ACTIONS(3447), + [anon_sym_for] = ACTIONS(3447), + [anon_sym_return] = ACTIONS(3447), + [anon_sym_break] = ACTIONS(3447), + [anon_sym_continue] = ACTIONS(3447), + [anon_sym_goto] = ACTIONS(3447), + [anon_sym_not] = ACTIONS(3447), + [anon_sym_compl] = ACTIONS(3447), + [anon_sym_DASH_DASH] = ACTIONS(3449), + [anon_sym_PLUS_PLUS] = ACTIONS(3449), + [anon_sym_sizeof] = ACTIONS(3447), + [anon_sym_offsetof] = ACTIONS(3447), + [anon_sym__Generic] = ACTIONS(3447), + [anon_sym_asm] = ACTIONS(3447), + [anon_sym___asm__] = ACTIONS(3447), + [sym_number_literal] = ACTIONS(3449), + [anon_sym_L_SQUOTE] = ACTIONS(3449), + [anon_sym_u_SQUOTE] = ACTIONS(3449), + [anon_sym_U_SQUOTE] = ACTIONS(3449), + [anon_sym_u8_SQUOTE] = ACTIONS(3449), + [anon_sym_SQUOTE] = ACTIONS(3449), + [anon_sym_L_DQUOTE] = ACTIONS(3449), + [anon_sym_u_DQUOTE] = ACTIONS(3449), + [anon_sym_U_DQUOTE] = ACTIONS(3449), + [anon_sym_u8_DQUOTE] = ACTIONS(3449), + [anon_sym_DQUOTE] = ACTIONS(3449), + [sym_true] = ACTIONS(3447), + [sym_false] = ACTIONS(3447), + [anon_sym_NULL] = ACTIONS(3447), + [anon_sym_nullptr] = ACTIONS(3447), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3447), + [anon_sym_decltype] = ACTIONS(3447), + [anon_sym_virtual] = ACTIONS(3447), + [anon_sym_explicit] = ACTIONS(3447), + [anon_sym_typename] = ACTIONS(3447), + [anon_sym_template] = ACTIONS(3447), + [anon_sym_operator] = ACTIONS(3447), + [anon_sym_try] = ACTIONS(3447), + [anon_sym_delete] = ACTIONS(3447), + [anon_sym_throw] = ACTIONS(3447), + [anon_sym_namespace] = ACTIONS(3447), + [anon_sym_using] = ACTIONS(3447), + [anon_sym_static_assert] = ACTIONS(3447), + [anon_sym_concept] = ACTIONS(3447), + [anon_sym_co_return] = ACTIONS(3447), + [anon_sym_co_yield] = ACTIONS(3447), + [anon_sym_R_DQUOTE] = ACTIONS(3449), + [anon_sym_LR_DQUOTE] = ACTIONS(3449), + [anon_sym_uR_DQUOTE] = ACTIONS(3449), + [anon_sym_UR_DQUOTE] = ACTIONS(3449), + [anon_sym_u8R_DQUOTE] = ACTIONS(3449), + [anon_sym_co_await] = ACTIONS(3447), + [anon_sym_new] = ACTIONS(3447), + [anon_sym_requires] = ACTIONS(3447), + [sym_this] = ACTIONS(3447), }, [1235] = { - [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_AMP] = ACTIONS(2472), - [anon_sym_SEMI] = ACTIONS(2472), - [anon_sym_typedef] = ACTIONS(2470), - [anon_sym_extern] = ACTIONS(2470), - [anon_sym___attribute__] = ACTIONS(2470), - [anon_sym_COLON_COLON] = ACTIONS(2472), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2472), - [anon_sym___declspec] = ACTIONS(2470), - [anon_sym_LBRACE] = ACTIONS(2472), - [anon_sym_LBRACK] = ACTIONS(2470), - [anon_sym_static] = ACTIONS(2470), - [anon_sym_register] = ACTIONS(2470), - [anon_sym_inline] = ACTIONS(2470), - [anon_sym_thread_local] = ACTIONS(2470), - [anon_sym_const] = ACTIONS(2470), - [anon_sym_volatile] = ACTIONS(2470), - [anon_sym_restrict] = ACTIONS(2470), - [anon_sym__Atomic] = ACTIONS(2470), - [anon_sym_mutable] = ACTIONS(2470), - [anon_sym_constexpr] = ACTIONS(2470), - [anon_sym_constinit] = ACTIONS(2470), - [anon_sym_consteval] = ACTIONS(2470), - [anon_sym_signed] = ACTIONS(2470), - [anon_sym_unsigned] = ACTIONS(2470), - [anon_sym_long] = ACTIONS(2470), - [anon_sym_short] = ACTIONS(2470), - [sym_primitive_type] = ACTIONS(2470), - [anon_sym_enum] = ACTIONS(2470), - [anon_sym_class] = 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_return] = ACTIONS(2470), - [anon_sym_break] = ACTIONS(2470), - [anon_sym_continue] = ACTIONS(2470), - [anon_sym_goto] = ACTIONS(2470), - [anon_sym_not] = ACTIONS(2470), - [anon_sym_compl] = ACTIONS(2470), - [anon_sym_DASH_DASH] = ACTIONS(2472), - [anon_sym_PLUS_PLUS] = ACTIONS(2472), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2472), - [anon_sym_u_DQUOTE] = ACTIONS(2472), - [anon_sym_U_DQUOTE] = ACTIONS(2472), - [anon_sym_u8_DQUOTE] = ACTIONS(2472), - [anon_sym_DQUOTE] = ACTIONS(2472), - [sym_true] = ACTIONS(2470), - [sym_false] = ACTIONS(2470), - [sym_null] = ACTIONS(2470), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2470), - [anon_sym_decltype] = ACTIONS(2470), - [anon_sym_virtual] = ACTIONS(2470), - [anon_sym_typename] = ACTIONS(2470), - [anon_sym_template] = ACTIONS(2470), - [anon_sym_try] = ACTIONS(2470), - [anon_sym_delete] = ACTIONS(2470), - [anon_sym_throw] = ACTIONS(2470), - [anon_sym_co_return] = ACTIONS(2470), - [anon_sym_co_yield] = ACTIONS(2470), - [anon_sym_R_DQUOTE] = ACTIONS(2472), - [anon_sym_LR_DQUOTE] = ACTIONS(2472), - [anon_sym_uR_DQUOTE] = ACTIONS(2472), - [anon_sym_UR_DQUOTE] = ACTIONS(2472), - [anon_sym_u8R_DQUOTE] = ACTIONS(2472), - [anon_sym_co_await] = ACTIONS(2470), - [anon_sym_new] = ACTIONS(2470), - [anon_sym_requires] = ACTIONS(2470), - [sym_this] = ACTIONS(2470), - [sym_nullptr] = ACTIONS(2470), + [sym_identifier] = ACTIONS(3409), + [aux_sym_preproc_include_token1] = ACTIONS(3409), + [aux_sym_preproc_def_token1] = ACTIONS(3409), + [aux_sym_preproc_if_token1] = ACTIONS(3409), + [aux_sym_preproc_if_token2] = ACTIONS(3409), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3409), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3409), + [sym_preproc_directive] = ACTIONS(3409), + [anon_sym_LPAREN2] = ACTIONS(3411), + [anon_sym_BANG] = ACTIONS(3411), + [anon_sym_TILDE] = ACTIONS(3411), + [anon_sym_DASH] = ACTIONS(3409), + [anon_sym_PLUS] = ACTIONS(3409), + [anon_sym_STAR] = ACTIONS(3411), + [anon_sym_AMP_AMP] = ACTIONS(3411), + [anon_sym_AMP] = ACTIONS(3409), + [anon_sym_SEMI] = ACTIONS(3411), + [anon_sym_typedef] = ACTIONS(3409), + [anon_sym_extern] = ACTIONS(3409), + [anon_sym___attribute__] = ACTIONS(3409), + [anon_sym_COLON_COLON] = ACTIONS(3411), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3411), + [anon_sym___declspec] = ACTIONS(3409), + [anon_sym___based] = ACTIONS(3409), + [anon_sym___cdecl] = ACTIONS(3409), + [anon_sym___clrcall] = ACTIONS(3409), + [anon_sym___stdcall] = ACTIONS(3409), + [anon_sym___fastcall] = ACTIONS(3409), + [anon_sym___thiscall] = ACTIONS(3409), + [anon_sym___vectorcall] = ACTIONS(3409), + [anon_sym_LBRACE] = ACTIONS(3411), + [anon_sym_LBRACK] = ACTIONS(3409), + [anon_sym_static] = ACTIONS(3409), + [anon_sym_register] = ACTIONS(3409), + [anon_sym_inline] = ACTIONS(3409), + [anon_sym_thread_local] = ACTIONS(3409), + [anon_sym_const] = ACTIONS(3409), + [anon_sym_constexpr] = ACTIONS(3409), + [anon_sym_volatile] = ACTIONS(3409), + [anon_sym_restrict] = ACTIONS(3409), + [anon_sym___restrict__] = ACTIONS(3409), + [anon_sym__Atomic] = ACTIONS(3409), + [anon_sym__Noreturn] = ACTIONS(3409), + [anon_sym_noreturn] = ACTIONS(3409), + [anon_sym_mutable] = ACTIONS(3409), + [anon_sym_constinit] = ACTIONS(3409), + [anon_sym_consteval] = ACTIONS(3409), + [anon_sym_signed] = ACTIONS(3409), + [anon_sym_unsigned] = ACTIONS(3409), + [anon_sym_long] = ACTIONS(3409), + [anon_sym_short] = ACTIONS(3409), + [sym_primitive_type] = ACTIONS(3409), + [anon_sym_enum] = ACTIONS(3409), + [anon_sym_class] = ACTIONS(3409), + [anon_sym_struct] = ACTIONS(3409), + [anon_sym_union] = ACTIONS(3409), + [anon_sym_if] = ACTIONS(3409), + [anon_sym_switch] = ACTIONS(3409), + [anon_sym_case] = ACTIONS(3409), + [anon_sym_default] = ACTIONS(3409), + [anon_sym_while] = ACTIONS(3409), + [anon_sym_do] = ACTIONS(3409), + [anon_sym_for] = ACTIONS(3409), + [anon_sym_return] = ACTIONS(3409), + [anon_sym_break] = ACTIONS(3409), + [anon_sym_continue] = ACTIONS(3409), + [anon_sym_goto] = ACTIONS(3409), + [anon_sym_not] = ACTIONS(3409), + [anon_sym_compl] = ACTIONS(3409), + [anon_sym_DASH_DASH] = ACTIONS(3411), + [anon_sym_PLUS_PLUS] = ACTIONS(3411), + [anon_sym_sizeof] = ACTIONS(3409), + [anon_sym_offsetof] = ACTIONS(3409), + [anon_sym__Generic] = ACTIONS(3409), + [anon_sym_asm] = ACTIONS(3409), + [anon_sym___asm__] = ACTIONS(3409), + [sym_number_literal] = ACTIONS(3411), + [anon_sym_L_SQUOTE] = ACTIONS(3411), + [anon_sym_u_SQUOTE] = ACTIONS(3411), + [anon_sym_U_SQUOTE] = ACTIONS(3411), + [anon_sym_u8_SQUOTE] = ACTIONS(3411), + [anon_sym_SQUOTE] = ACTIONS(3411), + [anon_sym_L_DQUOTE] = ACTIONS(3411), + [anon_sym_u_DQUOTE] = ACTIONS(3411), + [anon_sym_U_DQUOTE] = ACTIONS(3411), + [anon_sym_u8_DQUOTE] = ACTIONS(3411), + [anon_sym_DQUOTE] = ACTIONS(3411), + [sym_true] = ACTIONS(3409), + [sym_false] = ACTIONS(3409), + [anon_sym_NULL] = ACTIONS(3409), + [anon_sym_nullptr] = ACTIONS(3409), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3409), + [anon_sym_decltype] = ACTIONS(3409), + [anon_sym_virtual] = ACTIONS(3409), + [anon_sym_explicit] = ACTIONS(3409), + [anon_sym_typename] = ACTIONS(3409), + [anon_sym_template] = ACTIONS(3409), + [anon_sym_operator] = ACTIONS(3409), + [anon_sym_try] = ACTIONS(3409), + [anon_sym_delete] = ACTIONS(3409), + [anon_sym_throw] = ACTIONS(3409), + [anon_sym_namespace] = ACTIONS(3409), + [anon_sym_using] = ACTIONS(3409), + [anon_sym_static_assert] = ACTIONS(3409), + [anon_sym_concept] = ACTIONS(3409), + [anon_sym_co_return] = ACTIONS(3409), + [anon_sym_co_yield] = ACTIONS(3409), + [anon_sym_R_DQUOTE] = ACTIONS(3411), + [anon_sym_LR_DQUOTE] = ACTIONS(3411), + [anon_sym_uR_DQUOTE] = ACTIONS(3411), + [anon_sym_UR_DQUOTE] = ACTIONS(3411), + [anon_sym_u8R_DQUOTE] = ACTIONS(3411), + [anon_sym_co_await] = ACTIONS(3409), + [anon_sym_new] = ACTIONS(3409), + [anon_sym_requires] = ACTIONS(3409), + [sym_this] = ACTIONS(3409), }, [1236] = { - [sym_identifier] = ACTIONS(2488), - [anon_sym_LPAREN2] = ACTIONS(2490), - [anon_sym_BANG] = ACTIONS(2490), - [anon_sym_TILDE] = ACTIONS(2490), - [anon_sym_DASH] = ACTIONS(2488), - [anon_sym_PLUS] = ACTIONS(2488), - [anon_sym_STAR] = ACTIONS(2490), - [anon_sym_AMP] = ACTIONS(2490), - [anon_sym_SEMI] = ACTIONS(2490), - [anon_sym_typedef] = ACTIONS(2488), - [anon_sym_extern] = ACTIONS(2488), - [anon_sym___attribute__] = ACTIONS(2488), - [anon_sym_COLON_COLON] = ACTIONS(2490), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2490), - [anon_sym___declspec] = ACTIONS(2488), - [anon_sym_LBRACE] = ACTIONS(2490), - [anon_sym_LBRACK] = ACTIONS(2488), - [anon_sym_static] = ACTIONS(2488), - [anon_sym_register] = ACTIONS(2488), - [anon_sym_inline] = ACTIONS(2488), - [anon_sym_thread_local] = ACTIONS(2488), - [anon_sym_const] = ACTIONS(2488), - [anon_sym_volatile] = ACTIONS(2488), - [anon_sym_restrict] = ACTIONS(2488), - [anon_sym__Atomic] = ACTIONS(2488), - [anon_sym_mutable] = ACTIONS(2488), - [anon_sym_constexpr] = ACTIONS(2488), - [anon_sym_constinit] = ACTIONS(2488), - [anon_sym_consteval] = ACTIONS(2488), - [anon_sym_signed] = ACTIONS(2488), - [anon_sym_unsigned] = ACTIONS(2488), - [anon_sym_long] = ACTIONS(2488), - [anon_sym_short] = ACTIONS(2488), - [sym_primitive_type] = ACTIONS(2488), - [anon_sym_enum] = ACTIONS(2488), - [anon_sym_class] = ACTIONS(2488), - [anon_sym_struct] = ACTIONS(2488), - [anon_sym_union] = ACTIONS(2488), - [anon_sym_if] = ACTIONS(2488), - [anon_sym_else] = ACTIONS(2488), - [anon_sym_switch] = ACTIONS(2488), - [anon_sym_while] = ACTIONS(2488), - [anon_sym_do] = ACTIONS(2488), - [anon_sym_for] = ACTIONS(2488), - [anon_sym_return] = ACTIONS(2488), - [anon_sym_break] = ACTIONS(2488), - [anon_sym_continue] = ACTIONS(2488), - [anon_sym_goto] = ACTIONS(2488), - [anon_sym_not] = ACTIONS(2488), - [anon_sym_compl] = ACTIONS(2488), - [anon_sym_DASH_DASH] = ACTIONS(2490), - [anon_sym_PLUS_PLUS] = ACTIONS(2490), - [anon_sym_sizeof] = ACTIONS(2488), - [sym_number_literal] = ACTIONS(2490), - [anon_sym_L_SQUOTE] = ACTIONS(2490), - [anon_sym_u_SQUOTE] = ACTIONS(2490), - [anon_sym_U_SQUOTE] = ACTIONS(2490), - [anon_sym_u8_SQUOTE] = ACTIONS(2490), - [anon_sym_SQUOTE] = ACTIONS(2490), - [anon_sym_L_DQUOTE] = ACTIONS(2490), - [anon_sym_u_DQUOTE] = ACTIONS(2490), - [anon_sym_U_DQUOTE] = ACTIONS(2490), - [anon_sym_u8_DQUOTE] = ACTIONS(2490), - [anon_sym_DQUOTE] = ACTIONS(2490), - [sym_true] = ACTIONS(2488), - [sym_false] = ACTIONS(2488), - [sym_null] = ACTIONS(2488), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2488), - [anon_sym_decltype] = ACTIONS(2488), - [anon_sym_virtual] = ACTIONS(2488), - [anon_sym_typename] = ACTIONS(2488), - [anon_sym_template] = ACTIONS(2488), - [anon_sym_try] = ACTIONS(2488), - [anon_sym_delete] = ACTIONS(2488), - [anon_sym_throw] = ACTIONS(2488), - [anon_sym_co_return] = ACTIONS(2488), - [anon_sym_co_yield] = ACTIONS(2488), - [anon_sym_R_DQUOTE] = ACTIONS(2490), - [anon_sym_LR_DQUOTE] = ACTIONS(2490), - [anon_sym_uR_DQUOTE] = ACTIONS(2490), - [anon_sym_UR_DQUOTE] = ACTIONS(2490), - [anon_sym_u8R_DQUOTE] = ACTIONS(2490), - [anon_sym_co_await] = ACTIONS(2488), - [anon_sym_new] = ACTIONS(2488), - [anon_sym_requires] = ACTIONS(2488), - [sym_this] = ACTIONS(2488), - [sym_nullptr] = ACTIONS(2488), + [sym_identifier] = ACTIONS(3304), + [aux_sym_preproc_include_token1] = ACTIONS(3304), + [aux_sym_preproc_def_token1] = ACTIONS(3304), + [aux_sym_preproc_if_token1] = ACTIONS(3304), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3304), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3304), + [sym_preproc_directive] = ACTIONS(3304), + [anon_sym_LPAREN2] = ACTIONS(3306), + [anon_sym_BANG] = ACTIONS(3306), + [anon_sym_TILDE] = ACTIONS(3306), + [anon_sym_DASH] = ACTIONS(3304), + [anon_sym_PLUS] = ACTIONS(3304), + [anon_sym_STAR] = ACTIONS(3306), + [anon_sym_AMP_AMP] = ACTIONS(3306), + [anon_sym_AMP] = ACTIONS(3304), + [anon_sym_SEMI] = ACTIONS(3306), + [anon_sym_typedef] = ACTIONS(3304), + [anon_sym_extern] = ACTIONS(3304), + [anon_sym___attribute__] = ACTIONS(3304), + [anon_sym_COLON_COLON] = ACTIONS(3306), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3306), + [anon_sym___declspec] = ACTIONS(3304), + [anon_sym___based] = ACTIONS(3304), + [anon_sym___cdecl] = ACTIONS(3304), + [anon_sym___clrcall] = ACTIONS(3304), + [anon_sym___stdcall] = ACTIONS(3304), + [anon_sym___fastcall] = ACTIONS(3304), + [anon_sym___thiscall] = ACTIONS(3304), + [anon_sym___vectorcall] = ACTIONS(3304), + [anon_sym_LBRACE] = ACTIONS(3306), + [anon_sym_RBRACE] = ACTIONS(3306), + [anon_sym_LBRACK] = ACTIONS(3304), + [anon_sym_static] = ACTIONS(3304), + [anon_sym_register] = ACTIONS(3304), + [anon_sym_inline] = ACTIONS(3304), + [anon_sym_thread_local] = ACTIONS(3304), + [anon_sym_const] = ACTIONS(3304), + [anon_sym_constexpr] = ACTIONS(3304), + [anon_sym_volatile] = ACTIONS(3304), + [anon_sym_restrict] = ACTIONS(3304), + [anon_sym___restrict__] = ACTIONS(3304), + [anon_sym__Atomic] = ACTIONS(3304), + [anon_sym__Noreturn] = ACTIONS(3304), + [anon_sym_noreturn] = ACTIONS(3304), + [anon_sym_mutable] = ACTIONS(3304), + [anon_sym_constinit] = ACTIONS(3304), + [anon_sym_consteval] = ACTIONS(3304), + [anon_sym_signed] = ACTIONS(3304), + [anon_sym_unsigned] = ACTIONS(3304), + [anon_sym_long] = ACTIONS(3304), + [anon_sym_short] = ACTIONS(3304), + [sym_primitive_type] = ACTIONS(3304), + [anon_sym_enum] = ACTIONS(3304), + [anon_sym_class] = ACTIONS(3304), + [anon_sym_struct] = ACTIONS(3304), + [anon_sym_union] = ACTIONS(3304), + [anon_sym_if] = ACTIONS(3304), + [anon_sym_switch] = ACTIONS(3304), + [anon_sym_case] = ACTIONS(3304), + [anon_sym_default] = ACTIONS(3304), + [anon_sym_while] = ACTIONS(3304), + [anon_sym_do] = ACTIONS(3304), + [anon_sym_for] = ACTIONS(3304), + [anon_sym_return] = ACTIONS(3304), + [anon_sym_break] = ACTIONS(3304), + [anon_sym_continue] = ACTIONS(3304), + [anon_sym_goto] = ACTIONS(3304), + [anon_sym_not] = ACTIONS(3304), + [anon_sym_compl] = ACTIONS(3304), + [anon_sym_DASH_DASH] = ACTIONS(3306), + [anon_sym_PLUS_PLUS] = ACTIONS(3306), + [anon_sym_sizeof] = ACTIONS(3304), + [anon_sym_offsetof] = ACTIONS(3304), + [anon_sym__Generic] = ACTIONS(3304), + [anon_sym_asm] = ACTIONS(3304), + [anon_sym___asm__] = ACTIONS(3304), + [sym_number_literal] = ACTIONS(3306), + [anon_sym_L_SQUOTE] = ACTIONS(3306), + [anon_sym_u_SQUOTE] = ACTIONS(3306), + [anon_sym_U_SQUOTE] = ACTIONS(3306), + [anon_sym_u8_SQUOTE] = ACTIONS(3306), + [anon_sym_SQUOTE] = ACTIONS(3306), + [anon_sym_L_DQUOTE] = ACTIONS(3306), + [anon_sym_u_DQUOTE] = ACTIONS(3306), + [anon_sym_U_DQUOTE] = ACTIONS(3306), + [anon_sym_u8_DQUOTE] = ACTIONS(3306), + [anon_sym_DQUOTE] = ACTIONS(3306), + [sym_true] = ACTIONS(3304), + [sym_false] = ACTIONS(3304), + [anon_sym_NULL] = ACTIONS(3304), + [anon_sym_nullptr] = ACTIONS(3304), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3304), + [anon_sym_decltype] = ACTIONS(3304), + [anon_sym_virtual] = ACTIONS(3304), + [anon_sym_explicit] = ACTIONS(3304), + [anon_sym_typename] = ACTIONS(3304), + [anon_sym_template] = ACTIONS(3304), + [anon_sym_operator] = ACTIONS(3304), + [anon_sym_try] = ACTIONS(3304), + [anon_sym_delete] = ACTIONS(3304), + [anon_sym_throw] = ACTIONS(3304), + [anon_sym_namespace] = ACTIONS(3304), + [anon_sym_using] = ACTIONS(3304), + [anon_sym_static_assert] = ACTIONS(3304), + [anon_sym_concept] = ACTIONS(3304), + [anon_sym_co_return] = ACTIONS(3304), + [anon_sym_co_yield] = ACTIONS(3304), + [anon_sym_R_DQUOTE] = ACTIONS(3306), + [anon_sym_LR_DQUOTE] = ACTIONS(3306), + [anon_sym_uR_DQUOTE] = ACTIONS(3306), + [anon_sym_UR_DQUOTE] = ACTIONS(3306), + [anon_sym_u8R_DQUOTE] = ACTIONS(3306), + [anon_sym_co_await] = ACTIONS(3304), + [anon_sym_new] = ACTIONS(3304), + [anon_sym_requires] = ACTIONS(3304), + [sym_this] = ACTIONS(3304), }, [1237] = { - [sym_identifier] = ACTIONS(2622), - [anon_sym_LPAREN2] = ACTIONS(2624), - [anon_sym_BANG] = ACTIONS(2624), - [anon_sym_TILDE] = ACTIONS(2624), - [anon_sym_DASH] = ACTIONS(2622), - [anon_sym_PLUS] = ACTIONS(2622), - [anon_sym_STAR] = ACTIONS(2624), - [anon_sym_AMP] = ACTIONS(2624), - [anon_sym_SEMI] = ACTIONS(2624), - [anon_sym_typedef] = ACTIONS(2622), - [anon_sym_extern] = ACTIONS(2622), - [anon_sym___attribute__] = ACTIONS(2622), - [anon_sym_COLON_COLON] = ACTIONS(2624), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2624), - [anon_sym___declspec] = ACTIONS(2622), - [anon_sym_LBRACE] = ACTIONS(2624), - [anon_sym_LBRACK] = ACTIONS(2622), - [anon_sym_static] = ACTIONS(2622), - [anon_sym_register] = ACTIONS(2622), - [anon_sym_inline] = ACTIONS(2622), - [anon_sym_thread_local] = ACTIONS(2622), - [anon_sym_const] = ACTIONS(2622), - [anon_sym_volatile] = ACTIONS(2622), - [anon_sym_restrict] = ACTIONS(2622), - [anon_sym__Atomic] = ACTIONS(2622), - [anon_sym_mutable] = ACTIONS(2622), - [anon_sym_constexpr] = ACTIONS(2622), - [anon_sym_constinit] = ACTIONS(2622), - [anon_sym_consteval] = ACTIONS(2622), - [anon_sym_signed] = ACTIONS(2622), - [anon_sym_unsigned] = ACTIONS(2622), - [anon_sym_long] = ACTIONS(2622), - [anon_sym_short] = ACTIONS(2622), - [sym_primitive_type] = ACTIONS(2622), - [anon_sym_enum] = ACTIONS(2622), - [anon_sym_class] = ACTIONS(2622), - [anon_sym_struct] = ACTIONS(2622), - [anon_sym_union] = ACTIONS(2622), - [anon_sym_if] = ACTIONS(2622), - [anon_sym_else] = ACTIONS(2622), - [anon_sym_switch] = ACTIONS(2622), - [anon_sym_while] = ACTIONS(2622), - [anon_sym_do] = ACTIONS(2622), - [anon_sym_for] = ACTIONS(2622), - [anon_sym_return] = ACTIONS(2622), - [anon_sym_break] = ACTIONS(2622), - [anon_sym_continue] = ACTIONS(2622), - [anon_sym_goto] = ACTIONS(2622), - [anon_sym_not] = ACTIONS(2622), - [anon_sym_compl] = ACTIONS(2622), - [anon_sym_DASH_DASH] = ACTIONS(2624), - [anon_sym_PLUS_PLUS] = ACTIONS(2624), - [anon_sym_sizeof] = ACTIONS(2622), - [sym_number_literal] = ACTIONS(2624), - [anon_sym_L_SQUOTE] = ACTIONS(2624), - [anon_sym_u_SQUOTE] = ACTIONS(2624), - [anon_sym_U_SQUOTE] = ACTIONS(2624), - [anon_sym_u8_SQUOTE] = ACTIONS(2624), - [anon_sym_SQUOTE] = ACTIONS(2624), - [anon_sym_L_DQUOTE] = ACTIONS(2624), - [anon_sym_u_DQUOTE] = ACTIONS(2624), - [anon_sym_U_DQUOTE] = ACTIONS(2624), - [anon_sym_u8_DQUOTE] = ACTIONS(2624), - [anon_sym_DQUOTE] = ACTIONS(2624), - [sym_true] = ACTIONS(2622), - [sym_false] = ACTIONS(2622), - [sym_null] = ACTIONS(2622), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2622), - [anon_sym_decltype] = ACTIONS(2622), - [anon_sym_virtual] = ACTIONS(2622), - [anon_sym_typename] = ACTIONS(2622), - [anon_sym_template] = ACTIONS(2622), - [anon_sym_try] = ACTIONS(2622), - [anon_sym_delete] = ACTIONS(2622), - [anon_sym_throw] = ACTIONS(2622), - [anon_sym_co_return] = ACTIONS(2622), - [anon_sym_co_yield] = ACTIONS(2622), - [anon_sym_R_DQUOTE] = ACTIONS(2624), - [anon_sym_LR_DQUOTE] = ACTIONS(2624), - [anon_sym_uR_DQUOTE] = ACTIONS(2624), - [anon_sym_UR_DQUOTE] = ACTIONS(2624), - [anon_sym_u8R_DQUOTE] = ACTIONS(2624), - [anon_sym_co_await] = ACTIONS(2622), - [anon_sym_new] = ACTIONS(2622), - [anon_sym_requires] = ACTIONS(2622), - [sym_this] = ACTIONS(2622), - [sym_nullptr] = ACTIONS(2622), + [sym_identifier] = ACTIONS(3304), + [aux_sym_preproc_include_token1] = ACTIONS(3304), + [aux_sym_preproc_def_token1] = ACTIONS(3304), + [aux_sym_preproc_if_token1] = ACTIONS(3304), + [aux_sym_preproc_if_token2] = ACTIONS(3304), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3304), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3304), + [sym_preproc_directive] = ACTIONS(3304), + [anon_sym_LPAREN2] = ACTIONS(3306), + [anon_sym_BANG] = ACTIONS(3306), + [anon_sym_TILDE] = ACTIONS(3306), + [anon_sym_DASH] = ACTIONS(3304), + [anon_sym_PLUS] = ACTIONS(3304), + [anon_sym_STAR] = ACTIONS(3306), + [anon_sym_AMP_AMP] = ACTIONS(3306), + [anon_sym_AMP] = ACTIONS(3304), + [anon_sym_SEMI] = ACTIONS(3306), + [anon_sym_typedef] = ACTIONS(3304), + [anon_sym_extern] = ACTIONS(3304), + [anon_sym___attribute__] = ACTIONS(3304), + [anon_sym_COLON_COLON] = ACTIONS(3306), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3306), + [anon_sym___declspec] = ACTIONS(3304), + [anon_sym___based] = ACTIONS(3304), + [anon_sym___cdecl] = ACTIONS(3304), + [anon_sym___clrcall] = ACTIONS(3304), + [anon_sym___stdcall] = ACTIONS(3304), + [anon_sym___fastcall] = ACTIONS(3304), + [anon_sym___thiscall] = ACTIONS(3304), + [anon_sym___vectorcall] = ACTIONS(3304), + [anon_sym_LBRACE] = ACTIONS(3306), + [anon_sym_LBRACK] = ACTIONS(3304), + [anon_sym_static] = ACTIONS(3304), + [anon_sym_register] = ACTIONS(3304), + [anon_sym_inline] = ACTIONS(3304), + [anon_sym_thread_local] = ACTIONS(3304), + [anon_sym_const] = ACTIONS(3304), + [anon_sym_constexpr] = ACTIONS(3304), + [anon_sym_volatile] = ACTIONS(3304), + [anon_sym_restrict] = ACTIONS(3304), + [anon_sym___restrict__] = ACTIONS(3304), + [anon_sym__Atomic] = ACTIONS(3304), + [anon_sym__Noreturn] = ACTIONS(3304), + [anon_sym_noreturn] = ACTIONS(3304), + [anon_sym_mutable] = ACTIONS(3304), + [anon_sym_constinit] = ACTIONS(3304), + [anon_sym_consteval] = ACTIONS(3304), + [anon_sym_signed] = ACTIONS(3304), + [anon_sym_unsigned] = ACTIONS(3304), + [anon_sym_long] = ACTIONS(3304), + [anon_sym_short] = ACTIONS(3304), + [sym_primitive_type] = ACTIONS(3304), + [anon_sym_enum] = ACTIONS(3304), + [anon_sym_class] = ACTIONS(3304), + [anon_sym_struct] = ACTIONS(3304), + [anon_sym_union] = ACTIONS(3304), + [anon_sym_if] = ACTIONS(3304), + [anon_sym_switch] = ACTIONS(3304), + [anon_sym_case] = ACTIONS(3304), + [anon_sym_default] = ACTIONS(3304), + [anon_sym_while] = ACTIONS(3304), + [anon_sym_do] = ACTIONS(3304), + [anon_sym_for] = ACTIONS(3304), + [anon_sym_return] = ACTIONS(3304), + [anon_sym_break] = ACTIONS(3304), + [anon_sym_continue] = ACTIONS(3304), + [anon_sym_goto] = ACTIONS(3304), + [anon_sym_not] = ACTIONS(3304), + [anon_sym_compl] = ACTIONS(3304), + [anon_sym_DASH_DASH] = ACTIONS(3306), + [anon_sym_PLUS_PLUS] = ACTIONS(3306), + [anon_sym_sizeof] = ACTIONS(3304), + [anon_sym_offsetof] = ACTIONS(3304), + [anon_sym__Generic] = ACTIONS(3304), + [anon_sym_asm] = ACTIONS(3304), + [anon_sym___asm__] = ACTIONS(3304), + [sym_number_literal] = ACTIONS(3306), + [anon_sym_L_SQUOTE] = ACTIONS(3306), + [anon_sym_u_SQUOTE] = ACTIONS(3306), + [anon_sym_U_SQUOTE] = ACTIONS(3306), + [anon_sym_u8_SQUOTE] = ACTIONS(3306), + [anon_sym_SQUOTE] = ACTIONS(3306), + [anon_sym_L_DQUOTE] = ACTIONS(3306), + [anon_sym_u_DQUOTE] = ACTIONS(3306), + [anon_sym_U_DQUOTE] = ACTIONS(3306), + [anon_sym_u8_DQUOTE] = ACTIONS(3306), + [anon_sym_DQUOTE] = ACTIONS(3306), + [sym_true] = ACTIONS(3304), + [sym_false] = ACTIONS(3304), + [anon_sym_NULL] = ACTIONS(3304), + [anon_sym_nullptr] = ACTIONS(3304), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3304), + [anon_sym_decltype] = ACTIONS(3304), + [anon_sym_virtual] = ACTIONS(3304), + [anon_sym_explicit] = ACTIONS(3304), + [anon_sym_typename] = ACTIONS(3304), + [anon_sym_template] = ACTIONS(3304), + [anon_sym_operator] = ACTIONS(3304), + [anon_sym_try] = ACTIONS(3304), + [anon_sym_delete] = ACTIONS(3304), + [anon_sym_throw] = ACTIONS(3304), + [anon_sym_namespace] = ACTIONS(3304), + [anon_sym_using] = ACTIONS(3304), + [anon_sym_static_assert] = ACTIONS(3304), + [anon_sym_concept] = ACTIONS(3304), + [anon_sym_co_return] = ACTIONS(3304), + [anon_sym_co_yield] = ACTIONS(3304), + [anon_sym_R_DQUOTE] = ACTIONS(3306), + [anon_sym_LR_DQUOTE] = ACTIONS(3306), + [anon_sym_uR_DQUOTE] = ACTIONS(3306), + [anon_sym_UR_DQUOTE] = ACTIONS(3306), + [anon_sym_u8R_DQUOTE] = ACTIONS(3306), + [anon_sym_co_await] = ACTIONS(3304), + [anon_sym_new] = ACTIONS(3304), + [anon_sym_requires] = ACTIONS(3304), + [sym_this] = ACTIONS(3304), }, [1238] = { - [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_AMP] = ACTIONS(2464), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym_LBRACE] = ACTIONS(2464), - [anon_sym_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_identifier] = ACTIONS(3451), + [aux_sym_preproc_include_token1] = ACTIONS(3451), + [aux_sym_preproc_def_token1] = ACTIONS(3451), + [aux_sym_preproc_if_token1] = ACTIONS(3451), + [aux_sym_preproc_if_token2] = ACTIONS(3451), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3451), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3451), + [sym_preproc_directive] = ACTIONS(3451), + [anon_sym_LPAREN2] = ACTIONS(3453), + [anon_sym_BANG] = ACTIONS(3453), + [anon_sym_TILDE] = ACTIONS(3453), + [anon_sym_DASH] = ACTIONS(3451), + [anon_sym_PLUS] = ACTIONS(3451), + [anon_sym_STAR] = ACTIONS(3453), + [anon_sym_AMP_AMP] = ACTIONS(3453), + [anon_sym_AMP] = ACTIONS(3451), + [anon_sym_SEMI] = ACTIONS(3453), + [anon_sym_typedef] = ACTIONS(3451), + [anon_sym_extern] = ACTIONS(3451), + [anon_sym___attribute__] = ACTIONS(3451), + [anon_sym_COLON_COLON] = ACTIONS(3453), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3453), + [anon_sym___declspec] = ACTIONS(3451), + [anon_sym___based] = ACTIONS(3451), + [anon_sym___cdecl] = ACTIONS(3451), + [anon_sym___clrcall] = ACTIONS(3451), + [anon_sym___stdcall] = ACTIONS(3451), + [anon_sym___fastcall] = ACTIONS(3451), + [anon_sym___thiscall] = ACTIONS(3451), + [anon_sym___vectorcall] = ACTIONS(3451), + [anon_sym_LBRACE] = ACTIONS(3453), + [anon_sym_LBRACK] = ACTIONS(3451), + [anon_sym_static] = ACTIONS(3451), + [anon_sym_register] = ACTIONS(3451), + [anon_sym_inline] = ACTIONS(3451), + [anon_sym_thread_local] = ACTIONS(3451), + [anon_sym_const] = ACTIONS(3451), + [anon_sym_constexpr] = ACTIONS(3451), + [anon_sym_volatile] = ACTIONS(3451), + [anon_sym_restrict] = ACTIONS(3451), + [anon_sym___restrict__] = ACTIONS(3451), + [anon_sym__Atomic] = ACTIONS(3451), + [anon_sym__Noreturn] = ACTIONS(3451), + [anon_sym_noreturn] = ACTIONS(3451), + [anon_sym_mutable] = ACTIONS(3451), + [anon_sym_constinit] = ACTIONS(3451), + [anon_sym_consteval] = ACTIONS(3451), + [anon_sym_signed] = ACTIONS(3451), + [anon_sym_unsigned] = ACTIONS(3451), + [anon_sym_long] = ACTIONS(3451), + [anon_sym_short] = ACTIONS(3451), + [sym_primitive_type] = ACTIONS(3451), + [anon_sym_enum] = ACTIONS(3451), + [anon_sym_class] = ACTIONS(3451), + [anon_sym_struct] = ACTIONS(3451), + [anon_sym_union] = ACTIONS(3451), + [anon_sym_if] = ACTIONS(3451), + [anon_sym_switch] = ACTIONS(3451), + [anon_sym_case] = ACTIONS(3451), + [anon_sym_default] = ACTIONS(3451), + [anon_sym_while] = ACTIONS(3451), + [anon_sym_do] = ACTIONS(3451), + [anon_sym_for] = ACTIONS(3451), + [anon_sym_return] = ACTIONS(3451), + [anon_sym_break] = ACTIONS(3451), + [anon_sym_continue] = ACTIONS(3451), + [anon_sym_goto] = ACTIONS(3451), + [anon_sym_not] = ACTIONS(3451), + [anon_sym_compl] = ACTIONS(3451), + [anon_sym_DASH_DASH] = ACTIONS(3453), + [anon_sym_PLUS_PLUS] = ACTIONS(3453), + [anon_sym_sizeof] = ACTIONS(3451), + [anon_sym_offsetof] = ACTIONS(3451), + [anon_sym__Generic] = ACTIONS(3451), + [anon_sym_asm] = ACTIONS(3451), + [anon_sym___asm__] = ACTIONS(3451), + [sym_number_literal] = ACTIONS(3453), + [anon_sym_L_SQUOTE] = ACTIONS(3453), + [anon_sym_u_SQUOTE] = ACTIONS(3453), + [anon_sym_U_SQUOTE] = ACTIONS(3453), + [anon_sym_u8_SQUOTE] = ACTIONS(3453), + [anon_sym_SQUOTE] = ACTIONS(3453), + [anon_sym_L_DQUOTE] = ACTIONS(3453), + [anon_sym_u_DQUOTE] = ACTIONS(3453), + [anon_sym_U_DQUOTE] = ACTIONS(3453), + [anon_sym_u8_DQUOTE] = ACTIONS(3453), + [anon_sym_DQUOTE] = ACTIONS(3453), + [sym_true] = ACTIONS(3451), + [sym_false] = ACTIONS(3451), + [anon_sym_NULL] = ACTIONS(3451), + [anon_sym_nullptr] = ACTIONS(3451), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3451), + [anon_sym_decltype] = ACTIONS(3451), + [anon_sym_virtual] = ACTIONS(3451), + [anon_sym_explicit] = ACTIONS(3451), + [anon_sym_typename] = ACTIONS(3451), + [anon_sym_template] = ACTIONS(3451), + [anon_sym_operator] = ACTIONS(3451), + [anon_sym_try] = ACTIONS(3451), + [anon_sym_delete] = ACTIONS(3451), + [anon_sym_throw] = ACTIONS(3451), + [anon_sym_namespace] = ACTIONS(3451), + [anon_sym_using] = ACTIONS(3451), + [anon_sym_static_assert] = ACTIONS(3451), + [anon_sym_concept] = ACTIONS(3451), + [anon_sym_co_return] = ACTIONS(3451), + [anon_sym_co_yield] = ACTIONS(3451), + [anon_sym_R_DQUOTE] = ACTIONS(3453), + [anon_sym_LR_DQUOTE] = ACTIONS(3453), + [anon_sym_uR_DQUOTE] = ACTIONS(3453), + [anon_sym_UR_DQUOTE] = ACTIONS(3453), + [anon_sym_u8R_DQUOTE] = ACTIONS(3453), + [anon_sym_co_await] = ACTIONS(3451), + [anon_sym_new] = ACTIONS(3451), + [anon_sym_requires] = ACTIONS(3451), + [sym_this] = ACTIONS(3451), }, [1239] = { - [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_AMP] = ACTIONS(2464), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym_LBRACE] = ACTIONS(2464), - [anon_sym_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_identifier] = ACTIONS(3328), + [aux_sym_preproc_include_token1] = ACTIONS(3328), + [aux_sym_preproc_def_token1] = ACTIONS(3328), + [aux_sym_preproc_if_token1] = ACTIONS(3328), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3328), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3328), + [sym_preproc_directive] = ACTIONS(3328), + [anon_sym_LPAREN2] = ACTIONS(3330), + [anon_sym_BANG] = ACTIONS(3330), + [anon_sym_TILDE] = ACTIONS(3330), + [anon_sym_DASH] = ACTIONS(3328), + [anon_sym_PLUS] = ACTIONS(3328), + [anon_sym_STAR] = ACTIONS(3330), + [anon_sym_AMP_AMP] = ACTIONS(3330), + [anon_sym_AMP] = ACTIONS(3328), + [anon_sym_SEMI] = ACTIONS(3330), + [anon_sym_typedef] = ACTIONS(3328), + [anon_sym_extern] = ACTIONS(3328), + [anon_sym___attribute__] = ACTIONS(3328), + [anon_sym_COLON_COLON] = ACTIONS(3330), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3330), + [anon_sym___declspec] = ACTIONS(3328), + [anon_sym___based] = ACTIONS(3328), + [anon_sym___cdecl] = ACTIONS(3328), + [anon_sym___clrcall] = ACTIONS(3328), + [anon_sym___stdcall] = ACTIONS(3328), + [anon_sym___fastcall] = ACTIONS(3328), + [anon_sym___thiscall] = ACTIONS(3328), + [anon_sym___vectorcall] = ACTIONS(3328), + [anon_sym_LBRACE] = ACTIONS(3330), + [anon_sym_RBRACE] = ACTIONS(3330), + [anon_sym_LBRACK] = ACTIONS(3328), + [anon_sym_static] = ACTIONS(3328), + [anon_sym_register] = ACTIONS(3328), + [anon_sym_inline] = ACTIONS(3328), + [anon_sym_thread_local] = ACTIONS(3328), + [anon_sym_const] = ACTIONS(3328), + [anon_sym_constexpr] = ACTIONS(3328), + [anon_sym_volatile] = ACTIONS(3328), + [anon_sym_restrict] = ACTIONS(3328), + [anon_sym___restrict__] = ACTIONS(3328), + [anon_sym__Atomic] = ACTIONS(3328), + [anon_sym__Noreturn] = ACTIONS(3328), + [anon_sym_noreturn] = ACTIONS(3328), + [anon_sym_mutable] = ACTIONS(3328), + [anon_sym_constinit] = ACTIONS(3328), + [anon_sym_consteval] = ACTIONS(3328), + [anon_sym_signed] = ACTIONS(3328), + [anon_sym_unsigned] = ACTIONS(3328), + [anon_sym_long] = ACTIONS(3328), + [anon_sym_short] = ACTIONS(3328), + [sym_primitive_type] = ACTIONS(3328), + [anon_sym_enum] = ACTIONS(3328), + [anon_sym_class] = ACTIONS(3328), + [anon_sym_struct] = ACTIONS(3328), + [anon_sym_union] = ACTIONS(3328), + [anon_sym_if] = ACTIONS(3328), + [anon_sym_switch] = ACTIONS(3328), + [anon_sym_case] = ACTIONS(3328), + [anon_sym_default] = ACTIONS(3328), + [anon_sym_while] = ACTIONS(3328), + [anon_sym_do] = ACTIONS(3328), + [anon_sym_for] = ACTIONS(3328), + [anon_sym_return] = ACTIONS(3328), + [anon_sym_break] = ACTIONS(3328), + [anon_sym_continue] = ACTIONS(3328), + [anon_sym_goto] = ACTIONS(3328), + [anon_sym_not] = ACTIONS(3328), + [anon_sym_compl] = ACTIONS(3328), + [anon_sym_DASH_DASH] = ACTIONS(3330), + [anon_sym_PLUS_PLUS] = ACTIONS(3330), + [anon_sym_sizeof] = ACTIONS(3328), + [anon_sym_offsetof] = ACTIONS(3328), + [anon_sym__Generic] = ACTIONS(3328), + [anon_sym_asm] = ACTIONS(3328), + [anon_sym___asm__] = ACTIONS(3328), + [sym_number_literal] = ACTIONS(3330), + [anon_sym_L_SQUOTE] = ACTIONS(3330), + [anon_sym_u_SQUOTE] = ACTIONS(3330), + [anon_sym_U_SQUOTE] = ACTIONS(3330), + [anon_sym_u8_SQUOTE] = ACTIONS(3330), + [anon_sym_SQUOTE] = ACTIONS(3330), + [anon_sym_L_DQUOTE] = ACTIONS(3330), + [anon_sym_u_DQUOTE] = ACTIONS(3330), + [anon_sym_U_DQUOTE] = ACTIONS(3330), + [anon_sym_u8_DQUOTE] = ACTIONS(3330), + [anon_sym_DQUOTE] = ACTIONS(3330), + [sym_true] = ACTIONS(3328), + [sym_false] = ACTIONS(3328), + [anon_sym_NULL] = ACTIONS(3328), + [anon_sym_nullptr] = ACTIONS(3328), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3328), + [anon_sym_decltype] = ACTIONS(3328), + [anon_sym_virtual] = ACTIONS(3328), + [anon_sym_explicit] = ACTIONS(3328), + [anon_sym_typename] = ACTIONS(3328), + [anon_sym_template] = ACTIONS(3328), + [anon_sym_operator] = ACTIONS(3328), + [anon_sym_try] = ACTIONS(3328), + [anon_sym_delete] = ACTIONS(3328), + [anon_sym_throw] = ACTIONS(3328), + [anon_sym_namespace] = ACTIONS(3328), + [anon_sym_using] = ACTIONS(3328), + [anon_sym_static_assert] = ACTIONS(3328), + [anon_sym_concept] = ACTIONS(3328), + [anon_sym_co_return] = ACTIONS(3328), + [anon_sym_co_yield] = ACTIONS(3328), + [anon_sym_R_DQUOTE] = ACTIONS(3330), + [anon_sym_LR_DQUOTE] = ACTIONS(3330), + [anon_sym_uR_DQUOTE] = ACTIONS(3330), + [anon_sym_UR_DQUOTE] = ACTIONS(3330), + [anon_sym_u8R_DQUOTE] = ACTIONS(3330), + [anon_sym_co_await] = ACTIONS(3328), + [anon_sym_new] = ACTIONS(3328), + [anon_sym_requires] = ACTIONS(3328), + [sym_this] = ACTIONS(3328), }, [1240] = { - [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_AMP] = ACTIONS(2480), - [anon_sym_SEMI] = ACTIONS(2480), - [anon_sym_typedef] = ACTIONS(2478), - [anon_sym_extern] = ACTIONS(2478), - [anon_sym___attribute__] = ACTIONS(2478), - [anon_sym_COLON_COLON] = ACTIONS(2480), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2480), - [anon_sym___declspec] = ACTIONS(2478), - [anon_sym_LBRACE] = ACTIONS(2480), - [anon_sym_LBRACK] = ACTIONS(2478), - [anon_sym_static] = ACTIONS(2478), - [anon_sym_register] = ACTIONS(2478), - [anon_sym_inline] = ACTIONS(2478), - [anon_sym_thread_local] = ACTIONS(2478), - [anon_sym_const] = ACTIONS(2478), - [anon_sym_volatile] = ACTIONS(2478), - [anon_sym_restrict] = ACTIONS(2478), - [anon_sym__Atomic] = ACTIONS(2478), - [anon_sym_mutable] = ACTIONS(2478), - [anon_sym_constexpr] = ACTIONS(2478), - [anon_sym_constinit] = ACTIONS(2478), - [anon_sym_consteval] = ACTIONS(2478), - [anon_sym_signed] = ACTIONS(2478), - [anon_sym_unsigned] = ACTIONS(2478), - [anon_sym_long] = ACTIONS(2478), - [anon_sym_short] = ACTIONS(2478), - [sym_primitive_type] = ACTIONS(2478), - [anon_sym_enum] = ACTIONS(2478), - [anon_sym_class] = 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_return] = ACTIONS(2478), - [anon_sym_break] = ACTIONS(2478), - [anon_sym_continue] = ACTIONS(2478), - [anon_sym_goto] = ACTIONS(2478), - [anon_sym_not] = ACTIONS(2478), - [anon_sym_compl] = ACTIONS(2478), - [anon_sym_DASH_DASH] = ACTIONS(2480), - [anon_sym_PLUS_PLUS] = ACTIONS(2480), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2480), - [anon_sym_u_DQUOTE] = ACTIONS(2480), - [anon_sym_U_DQUOTE] = ACTIONS(2480), - [anon_sym_u8_DQUOTE] = ACTIONS(2480), - [anon_sym_DQUOTE] = ACTIONS(2480), - [sym_true] = ACTIONS(2478), - [sym_false] = ACTIONS(2478), - [sym_null] = ACTIONS(2478), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2478), - [anon_sym_decltype] = ACTIONS(2478), - [anon_sym_virtual] = ACTIONS(2478), - [anon_sym_typename] = ACTIONS(2478), - [anon_sym_template] = ACTIONS(2478), - [anon_sym_try] = ACTIONS(2478), - [anon_sym_delete] = ACTIONS(2478), - [anon_sym_throw] = ACTIONS(2478), - [anon_sym_co_return] = ACTIONS(2478), - [anon_sym_co_yield] = ACTIONS(2478), - [anon_sym_R_DQUOTE] = ACTIONS(2480), - [anon_sym_LR_DQUOTE] = ACTIONS(2480), - [anon_sym_uR_DQUOTE] = ACTIONS(2480), - [anon_sym_UR_DQUOTE] = ACTIONS(2480), - [anon_sym_u8R_DQUOTE] = ACTIONS(2480), - [anon_sym_co_await] = ACTIONS(2478), - [anon_sym_new] = ACTIONS(2478), - [anon_sym_requires] = ACTIONS(2478), - [sym_this] = ACTIONS(2478), - [sym_nullptr] = ACTIONS(2478), + [sym_identifier] = ACTIONS(3322), + [aux_sym_preproc_include_token1] = ACTIONS(3322), + [aux_sym_preproc_def_token1] = ACTIONS(3322), + [aux_sym_preproc_if_token1] = ACTIONS(3322), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3322), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3322), + [sym_preproc_directive] = ACTIONS(3322), + [anon_sym_LPAREN2] = ACTIONS(3324), + [anon_sym_BANG] = ACTIONS(3324), + [anon_sym_TILDE] = ACTIONS(3324), + [anon_sym_DASH] = ACTIONS(3322), + [anon_sym_PLUS] = ACTIONS(3322), + [anon_sym_STAR] = ACTIONS(3324), + [anon_sym_AMP_AMP] = ACTIONS(3324), + [anon_sym_AMP] = ACTIONS(3322), + [anon_sym_SEMI] = ACTIONS(3324), + [anon_sym_typedef] = ACTIONS(3322), + [anon_sym_extern] = ACTIONS(3322), + [anon_sym___attribute__] = ACTIONS(3322), + [anon_sym_COLON_COLON] = ACTIONS(3324), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3324), + [anon_sym___declspec] = ACTIONS(3322), + [anon_sym___based] = ACTIONS(3322), + [anon_sym___cdecl] = ACTIONS(3322), + [anon_sym___clrcall] = ACTIONS(3322), + [anon_sym___stdcall] = ACTIONS(3322), + [anon_sym___fastcall] = ACTIONS(3322), + [anon_sym___thiscall] = ACTIONS(3322), + [anon_sym___vectorcall] = ACTIONS(3322), + [anon_sym_LBRACE] = ACTIONS(3324), + [anon_sym_RBRACE] = ACTIONS(3324), + [anon_sym_LBRACK] = ACTIONS(3322), + [anon_sym_static] = ACTIONS(3322), + [anon_sym_register] = ACTIONS(3322), + [anon_sym_inline] = ACTIONS(3322), + [anon_sym_thread_local] = ACTIONS(3322), + [anon_sym_const] = ACTIONS(3322), + [anon_sym_constexpr] = ACTIONS(3322), + [anon_sym_volatile] = ACTIONS(3322), + [anon_sym_restrict] = ACTIONS(3322), + [anon_sym___restrict__] = ACTIONS(3322), + [anon_sym__Atomic] = ACTIONS(3322), + [anon_sym__Noreturn] = ACTIONS(3322), + [anon_sym_noreturn] = ACTIONS(3322), + [anon_sym_mutable] = ACTIONS(3322), + [anon_sym_constinit] = ACTIONS(3322), + [anon_sym_consteval] = ACTIONS(3322), + [anon_sym_signed] = ACTIONS(3322), + [anon_sym_unsigned] = ACTIONS(3322), + [anon_sym_long] = ACTIONS(3322), + [anon_sym_short] = ACTIONS(3322), + [sym_primitive_type] = ACTIONS(3322), + [anon_sym_enum] = ACTIONS(3322), + [anon_sym_class] = ACTIONS(3322), + [anon_sym_struct] = ACTIONS(3322), + [anon_sym_union] = ACTIONS(3322), + [anon_sym_if] = ACTIONS(3322), + [anon_sym_switch] = ACTIONS(3322), + [anon_sym_case] = ACTIONS(3322), + [anon_sym_default] = ACTIONS(3322), + [anon_sym_while] = ACTIONS(3322), + [anon_sym_do] = ACTIONS(3322), + [anon_sym_for] = ACTIONS(3322), + [anon_sym_return] = ACTIONS(3322), + [anon_sym_break] = ACTIONS(3322), + [anon_sym_continue] = ACTIONS(3322), + [anon_sym_goto] = ACTIONS(3322), + [anon_sym_not] = ACTIONS(3322), + [anon_sym_compl] = ACTIONS(3322), + [anon_sym_DASH_DASH] = ACTIONS(3324), + [anon_sym_PLUS_PLUS] = ACTIONS(3324), + [anon_sym_sizeof] = ACTIONS(3322), + [anon_sym_offsetof] = ACTIONS(3322), + [anon_sym__Generic] = ACTIONS(3322), + [anon_sym_asm] = ACTIONS(3322), + [anon_sym___asm__] = ACTIONS(3322), + [sym_number_literal] = ACTIONS(3324), + [anon_sym_L_SQUOTE] = ACTIONS(3324), + [anon_sym_u_SQUOTE] = ACTIONS(3324), + [anon_sym_U_SQUOTE] = ACTIONS(3324), + [anon_sym_u8_SQUOTE] = ACTIONS(3324), + [anon_sym_SQUOTE] = ACTIONS(3324), + [anon_sym_L_DQUOTE] = ACTIONS(3324), + [anon_sym_u_DQUOTE] = ACTIONS(3324), + [anon_sym_U_DQUOTE] = ACTIONS(3324), + [anon_sym_u8_DQUOTE] = ACTIONS(3324), + [anon_sym_DQUOTE] = ACTIONS(3324), + [sym_true] = ACTIONS(3322), + [sym_false] = ACTIONS(3322), + [anon_sym_NULL] = ACTIONS(3322), + [anon_sym_nullptr] = ACTIONS(3322), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3322), + [anon_sym_decltype] = ACTIONS(3322), + [anon_sym_virtual] = ACTIONS(3322), + [anon_sym_explicit] = ACTIONS(3322), + [anon_sym_typename] = ACTIONS(3322), + [anon_sym_template] = ACTIONS(3322), + [anon_sym_operator] = ACTIONS(3322), + [anon_sym_try] = ACTIONS(3322), + [anon_sym_delete] = ACTIONS(3322), + [anon_sym_throw] = ACTIONS(3322), + [anon_sym_namespace] = ACTIONS(3322), + [anon_sym_using] = ACTIONS(3322), + [anon_sym_static_assert] = ACTIONS(3322), + [anon_sym_concept] = ACTIONS(3322), + [anon_sym_co_return] = ACTIONS(3322), + [anon_sym_co_yield] = ACTIONS(3322), + [anon_sym_R_DQUOTE] = ACTIONS(3324), + [anon_sym_LR_DQUOTE] = ACTIONS(3324), + [anon_sym_uR_DQUOTE] = ACTIONS(3324), + [anon_sym_UR_DQUOTE] = ACTIONS(3324), + [anon_sym_u8R_DQUOTE] = ACTIONS(3324), + [anon_sym_co_await] = ACTIONS(3322), + [anon_sym_new] = ACTIONS(3322), + [anon_sym_requires] = ACTIONS(3322), + [sym_this] = ACTIONS(3322), }, [1241] = { - [sym_identifier] = ACTIONS(2504), - [anon_sym_LPAREN2] = ACTIONS(2506), - [anon_sym_BANG] = ACTIONS(2506), - [anon_sym_TILDE] = ACTIONS(2506), - [anon_sym_DASH] = ACTIONS(2504), - [anon_sym_PLUS] = ACTIONS(2504), - [anon_sym_STAR] = ACTIONS(2506), - [anon_sym_AMP] = ACTIONS(2506), - [anon_sym_SEMI] = ACTIONS(2506), - [anon_sym_typedef] = ACTIONS(2504), - [anon_sym_extern] = ACTIONS(2504), - [anon_sym___attribute__] = ACTIONS(2504), - [anon_sym_COLON_COLON] = ACTIONS(2506), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2506), - [anon_sym___declspec] = ACTIONS(2504), - [anon_sym_LBRACE] = ACTIONS(2506), - [anon_sym_LBRACK] = ACTIONS(2504), - [anon_sym_static] = ACTIONS(2504), - [anon_sym_register] = ACTIONS(2504), - [anon_sym_inline] = ACTIONS(2504), - [anon_sym_thread_local] = ACTIONS(2504), - [anon_sym_const] = ACTIONS(2504), - [anon_sym_volatile] = ACTIONS(2504), - [anon_sym_restrict] = ACTIONS(2504), - [anon_sym__Atomic] = ACTIONS(2504), - [anon_sym_mutable] = ACTIONS(2504), - [anon_sym_constexpr] = ACTIONS(2504), - [anon_sym_constinit] = ACTIONS(2504), - [anon_sym_consteval] = ACTIONS(2504), - [anon_sym_signed] = ACTIONS(2504), - [anon_sym_unsigned] = ACTIONS(2504), - [anon_sym_long] = ACTIONS(2504), - [anon_sym_short] = ACTIONS(2504), - [sym_primitive_type] = ACTIONS(2504), - [anon_sym_enum] = ACTIONS(2504), - [anon_sym_class] = ACTIONS(2504), - [anon_sym_struct] = ACTIONS(2504), - [anon_sym_union] = ACTIONS(2504), - [anon_sym_if] = ACTIONS(2504), - [anon_sym_else] = ACTIONS(2504), - [anon_sym_switch] = ACTIONS(2504), - [anon_sym_while] = ACTIONS(2504), - [anon_sym_do] = ACTIONS(2504), - [anon_sym_for] = ACTIONS(2504), - [anon_sym_return] = ACTIONS(2504), - [anon_sym_break] = ACTIONS(2504), - [anon_sym_continue] = ACTIONS(2504), - [anon_sym_goto] = ACTIONS(2504), - [anon_sym_not] = ACTIONS(2504), - [anon_sym_compl] = ACTIONS(2504), - [anon_sym_DASH_DASH] = ACTIONS(2506), - [anon_sym_PLUS_PLUS] = ACTIONS(2506), - [anon_sym_sizeof] = ACTIONS(2504), - [sym_number_literal] = ACTIONS(2506), - [anon_sym_L_SQUOTE] = ACTIONS(2506), - [anon_sym_u_SQUOTE] = ACTIONS(2506), - [anon_sym_U_SQUOTE] = ACTIONS(2506), - [anon_sym_u8_SQUOTE] = ACTIONS(2506), - [anon_sym_SQUOTE] = ACTIONS(2506), - [anon_sym_L_DQUOTE] = ACTIONS(2506), - [anon_sym_u_DQUOTE] = ACTIONS(2506), - [anon_sym_U_DQUOTE] = ACTIONS(2506), - [anon_sym_u8_DQUOTE] = ACTIONS(2506), - [anon_sym_DQUOTE] = ACTIONS(2506), - [sym_true] = ACTIONS(2504), - [sym_false] = ACTIONS(2504), - [sym_null] = ACTIONS(2504), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2504), - [anon_sym_decltype] = ACTIONS(2504), - [anon_sym_virtual] = ACTIONS(2504), - [anon_sym_typename] = ACTIONS(2504), - [anon_sym_template] = ACTIONS(2504), - [anon_sym_try] = ACTIONS(2504), - [anon_sym_delete] = ACTIONS(2504), - [anon_sym_throw] = ACTIONS(2504), - [anon_sym_co_return] = ACTIONS(2504), - [anon_sym_co_yield] = ACTIONS(2504), - [anon_sym_R_DQUOTE] = ACTIONS(2506), - [anon_sym_LR_DQUOTE] = ACTIONS(2506), - [anon_sym_uR_DQUOTE] = ACTIONS(2506), - [anon_sym_UR_DQUOTE] = ACTIONS(2506), - [anon_sym_u8R_DQUOTE] = ACTIONS(2506), - [anon_sym_co_await] = ACTIONS(2504), - [anon_sym_new] = ACTIONS(2504), - [anon_sym_requires] = ACTIONS(2504), - [sym_this] = ACTIONS(2504), - [sym_nullptr] = ACTIONS(2504), + [sym_identifier] = ACTIONS(3121), + [aux_sym_preproc_include_token1] = ACTIONS(3121), + [aux_sym_preproc_def_token1] = ACTIONS(3121), + [aux_sym_preproc_if_token1] = ACTIONS(3121), + [aux_sym_preproc_if_token2] = ACTIONS(3121), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3121), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3121), + [sym_preproc_directive] = ACTIONS(3121), + [anon_sym_LPAREN2] = ACTIONS(3123), + [anon_sym_BANG] = ACTIONS(3123), + [anon_sym_TILDE] = ACTIONS(3123), + [anon_sym_DASH] = ACTIONS(3121), + [anon_sym_PLUS] = ACTIONS(3121), + [anon_sym_STAR] = ACTIONS(3123), + [anon_sym_AMP_AMP] = ACTIONS(3123), + [anon_sym_AMP] = ACTIONS(3121), + [anon_sym_SEMI] = ACTIONS(3123), + [anon_sym_typedef] = ACTIONS(3121), + [anon_sym_extern] = ACTIONS(3121), + [anon_sym___attribute__] = ACTIONS(3121), + [anon_sym_COLON_COLON] = ACTIONS(3123), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3123), + [anon_sym___declspec] = ACTIONS(3121), + [anon_sym___based] = ACTIONS(3121), + [anon_sym___cdecl] = ACTIONS(3121), + [anon_sym___clrcall] = ACTIONS(3121), + [anon_sym___stdcall] = ACTIONS(3121), + [anon_sym___fastcall] = ACTIONS(3121), + [anon_sym___thiscall] = ACTIONS(3121), + [anon_sym___vectorcall] = ACTIONS(3121), + [anon_sym_LBRACE] = ACTIONS(3123), + [anon_sym_LBRACK] = ACTIONS(3121), + [anon_sym_static] = ACTIONS(3121), + [anon_sym_register] = ACTIONS(3121), + [anon_sym_inline] = ACTIONS(3121), + [anon_sym_thread_local] = ACTIONS(3121), + [anon_sym_const] = ACTIONS(3121), + [anon_sym_constexpr] = ACTIONS(3121), + [anon_sym_volatile] = ACTIONS(3121), + [anon_sym_restrict] = ACTIONS(3121), + [anon_sym___restrict__] = ACTIONS(3121), + [anon_sym__Atomic] = ACTIONS(3121), + [anon_sym__Noreturn] = ACTIONS(3121), + [anon_sym_noreturn] = ACTIONS(3121), + [anon_sym_mutable] = ACTIONS(3121), + [anon_sym_constinit] = ACTIONS(3121), + [anon_sym_consteval] = ACTIONS(3121), + [anon_sym_signed] = ACTIONS(3121), + [anon_sym_unsigned] = ACTIONS(3121), + [anon_sym_long] = ACTIONS(3121), + [anon_sym_short] = ACTIONS(3121), + [sym_primitive_type] = ACTIONS(3121), + [anon_sym_enum] = ACTIONS(3121), + [anon_sym_class] = ACTIONS(3121), + [anon_sym_struct] = ACTIONS(3121), + [anon_sym_union] = ACTIONS(3121), + [anon_sym_if] = ACTIONS(3121), + [anon_sym_switch] = ACTIONS(3121), + [anon_sym_case] = ACTIONS(3121), + [anon_sym_default] = ACTIONS(3121), + [anon_sym_while] = ACTIONS(3121), + [anon_sym_do] = ACTIONS(3121), + [anon_sym_for] = ACTIONS(3121), + [anon_sym_return] = ACTIONS(3121), + [anon_sym_break] = ACTIONS(3121), + [anon_sym_continue] = ACTIONS(3121), + [anon_sym_goto] = ACTIONS(3121), + [anon_sym_not] = ACTIONS(3121), + [anon_sym_compl] = ACTIONS(3121), + [anon_sym_DASH_DASH] = ACTIONS(3123), + [anon_sym_PLUS_PLUS] = ACTIONS(3123), + [anon_sym_sizeof] = ACTIONS(3121), + [anon_sym_offsetof] = ACTIONS(3121), + [anon_sym__Generic] = ACTIONS(3121), + [anon_sym_asm] = ACTIONS(3121), + [anon_sym___asm__] = ACTIONS(3121), + [sym_number_literal] = ACTIONS(3123), + [anon_sym_L_SQUOTE] = ACTIONS(3123), + [anon_sym_u_SQUOTE] = ACTIONS(3123), + [anon_sym_U_SQUOTE] = ACTIONS(3123), + [anon_sym_u8_SQUOTE] = ACTIONS(3123), + [anon_sym_SQUOTE] = ACTIONS(3123), + [anon_sym_L_DQUOTE] = ACTIONS(3123), + [anon_sym_u_DQUOTE] = ACTIONS(3123), + [anon_sym_U_DQUOTE] = ACTIONS(3123), + [anon_sym_u8_DQUOTE] = ACTIONS(3123), + [anon_sym_DQUOTE] = ACTIONS(3123), + [sym_true] = ACTIONS(3121), + [sym_false] = ACTIONS(3121), + [anon_sym_NULL] = ACTIONS(3121), + [anon_sym_nullptr] = ACTIONS(3121), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3121), + [anon_sym_decltype] = ACTIONS(3121), + [anon_sym_virtual] = ACTIONS(3121), + [anon_sym_explicit] = ACTIONS(3121), + [anon_sym_typename] = ACTIONS(3121), + [anon_sym_template] = ACTIONS(3121), + [anon_sym_operator] = ACTIONS(3121), + [anon_sym_try] = ACTIONS(3121), + [anon_sym_delete] = ACTIONS(3121), + [anon_sym_throw] = ACTIONS(3121), + [anon_sym_namespace] = ACTIONS(3121), + [anon_sym_using] = ACTIONS(3121), + [anon_sym_static_assert] = ACTIONS(3121), + [anon_sym_concept] = ACTIONS(3121), + [anon_sym_co_return] = ACTIONS(3121), + [anon_sym_co_yield] = ACTIONS(3121), + [anon_sym_R_DQUOTE] = ACTIONS(3123), + [anon_sym_LR_DQUOTE] = ACTIONS(3123), + [anon_sym_uR_DQUOTE] = ACTIONS(3123), + [anon_sym_UR_DQUOTE] = ACTIONS(3123), + [anon_sym_u8R_DQUOTE] = ACTIONS(3123), + [anon_sym_co_await] = ACTIONS(3121), + [anon_sym_new] = ACTIONS(3121), + [anon_sym_requires] = ACTIONS(3121), + [sym_this] = ACTIONS(3121), }, [1242] = { - [sym_identifier] = 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_AMP] = ACTIONS(2658), - [anon_sym_SEMI] = ACTIONS(2658), - [anon_sym_typedef] = ACTIONS(2656), - [anon_sym_extern] = ACTIONS(2656), - [anon_sym___attribute__] = ACTIONS(2656), - [anon_sym_COLON_COLON] = ACTIONS(2658), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2658), - [anon_sym___declspec] = ACTIONS(2656), - [anon_sym_LBRACE] = ACTIONS(2658), - [anon_sym_LBRACK] = ACTIONS(2656), - [anon_sym_static] = ACTIONS(2656), - [anon_sym_register] = ACTIONS(2656), - [anon_sym_inline] = ACTIONS(2656), - [anon_sym_thread_local] = ACTIONS(2656), - [anon_sym_const] = ACTIONS(2656), - [anon_sym_volatile] = ACTIONS(2656), - [anon_sym_restrict] = ACTIONS(2656), - [anon_sym__Atomic] = ACTIONS(2656), - [anon_sym_mutable] = ACTIONS(2656), - [anon_sym_constexpr] = ACTIONS(2656), - [anon_sym_constinit] = ACTIONS(2656), - [anon_sym_consteval] = ACTIONS(2656), - [anon_sym_signed] = ACTIONS(2656), - [anon_sym_unsigned] = ACTIONS(2656), - [anon_sym_long] = ACTIONS(2656), - [anon_sym_short] = ACTIONS(2656), - [sym_primitive_type] = ACTIONS(2656), - [anon_sym_enum] = ACTIONS(2656), - [anon_sym_class] = ACTIONS(2656), - [anon_sym_struct] = ACTIONS(2656), - [anon_sym_union] = ACTIONS(2656), - [anon_sym_if] = ACTIONS(2656), - [anon_sym_else] = ACTIONS(2656), - [anon_sym_switch] = ACTIONS(2656), - [anon_sym_while] = ACTIONS(2656), - [anon_sym_do] = ACTIONS(2656), - [anon_sym_for] = ACTIONS(2656), - [anon_sym_return] = ACTIONS(2656), - [anon_sym_break] = ACTIONS(2656), - [anon_sym_continue] = ACTIONS(2656), - [anon_sym_goto] = ACTIONS(2656), - [anon_sym_not] = ACTIONS(2656), - [anon_sym_compl] = ACTIONS(2656), - [anon_sym_DASH_DASH] = ACTIONS(2658), - [anon_sym_PLUS_PLUS] = ACTIONS(2658), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2658), - [anon_sym_u_DQUOTE] = ACTIONS(2658), - [anon_sym_U_DQUOTE] = ACTIONS(2658), - [anon_sym_u8_DQUOTE] = ACTIONS(2658), - [anon_sym_DQUOTE] = ACTIONS(2658), - [sym_true] = ACTIONS(2656), - [sym_false] = ACTIONS(2656), - [sym_null] = ACTIONS(2656), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2656), - [anon_sym_decltype] = ACTIONS(2656), - [anon_sym_virtual] = ACTIONS(2656), - [anon_sym_typename] = ACTIONS(2656), - [anon_sym_template] = ACTIONS(2656), - [anon_sym_try] = ACTIONS(2656), - [anon_sym_delete] = ACTIONS(2656), - [anon_sym_throw] = ACTIONS(2656), - [anon_sym_co_return] = ACTIONS(2656), - [anon_sym_co_yield] = ACTIONS(2656), - [anon_sym_R_DQUOTE] = ACTIONS(2658), - [anon_sym_LR_DQUOTE] = ACTIONS(2658), - [anon_sym_uR_DQUOTE] = ACTIONS(2658), - [anon_sym_UR_DQUOTE] = ACTIONS(2658), - [anon_sym_u8R_DQUOTE] = ACTIONS(2658), - [anon_sym_co_await] = ACTIONS(2656), - [anon_sym_new] = ACTIONS(2656), - [anon_sym_requires] = ACTIONS(2656), - [sym_this] = ACTIONS(2656), - [sym_nullptr] = ACTIONS(2656), + [sym_identifier] = ACTIONS(3230), + [aux_sym_preproc_include_token1] = ACTIONS(3230), + [aux_sym_preproc_def_token1] = ACTIONS(3230), + [aux_sym_preproc_if_token1] = ACTIONS(3230), + [aux_sym_preproc_if_token2] = ACTIONS(3230), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3230), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3230), + [sym_preproc_directive] = ACTIONS(3230), + [anon_sym_LPAREN2] = ACTIONS(3232), + [anon_sym_BANG] = ACTIONS(3232), + [anon_sym_TILDE] = ACTIONS(3232), + [anon_sym_DASH] = ACTIONS(3230), + [anon_sym_PLUS] = ACTIONS(3230), + [anon_sym_STAR] = ACTIONS(3232), + [anon_sym_AMP_AMP] = ACTIONS(3232), + [anon_sym_AMP] = ACTIONS(3230), + [anon_sym_SEMI] = ACTIONS(3232), + [anon_sym_typedef] = ACTIONS(3230), + [anon_sym_extern] = ACTIONS(3230), + [anon_sym___attribute__] = ACTIONS(3230), + [anon_sym_COLON_COLON] = ACTIONS(3232), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3232), + [anon_sym___declspec] = ACTIONS(3230), + [anon_sym___based] = ACTIONS(3230), + [anon_sym___cdecl] = ACTIONS(3230), + [anon_sym___clrcall] = ACTIONS(3230), + [anon_sym___stdcall] = ACTIONS(3230), + [anon_sym___fastcall] = ACTIONS(3230), + [anon_sym___thiscall] = ACTIONS(3230), + [anon_sym___vectorcall] = ACTIONS(3230), + [anon_sym_LBRACE] = ACTIONS(3232), + [anon_sym_LBRACK] = ACTIONS(3230), + [anon_sym_static] = ACTIONS(3230), + [anon_sym_register] = ACTIONS(3230), + [anon_sym_inline] = ACTIONS(3230), + [anon_sym_thread_local] = ACTIONS(3230), + [anon_sym_const] = ACTIONS(3230), + [anon_sym_constexpr] = ACTIONS(3230), + [anon_sym_volatile] = ACTIONS(3230), + [anon_sym_restrict] = ACTIONS(3230), + [anon_sym___restrict__] = ACTIONS(3230), + [anon_sym__Atomic] = ACTIONS(3230), + [anon_sym__Noreturn] = ACTIONS(3230), + [anon_sym_noreturn] = ACTIONS(3230), + [anon_sym_mutable] = ACTIONS(3230), + [anon_sym_constinit] = ACTIONS(3230), + [anon_sym_consteval] = ACTIONS(3230), + [anon_sym_signed] = ACTIONS(3230), + [anon_sym_unsigned] = ACTIONS(3230), + [anon_sym_long] = ACTIONS(3230), + [anon_sym_short] = ACTIONS(3230), + [sym_primitive_type] = ACTIONS(3230), + [anon_sym_enum] = ACTIONS(3230), + [anon_sym_class] = ACTIONS(3230), + [anon_sym_struct] = ACTIONS(3230), + [anon_sym_union] = ACTIONS(3230), + [anon_sym_if] = ACTIONS(3230), + [anon_sym_switch] = ACTIONS(3230), + [anon_sym_case] = ACTIONS(3230), + [anon_sym_default] = ACTIONS(3230), + [anon_sym_while] = ACTIONS(3230), + [anon_sym_do] = ACTIONS(3230), + [anon_sym_for] = ACTIONS(3230), + [anon_sym_return] = ACTIONS(3230), + [anon_sym_break] = ACTIONS(3230), + [anon_sym_continue] = ACTIONS(3230), + [anon_sym_goto] = ACTIONS(3230), + [anon_sym_not] = ACTIONS(3230), + [anon_sym_compl] = ACTIONS(3230), + [anon_sym_DASH_DASH] = ACTIONS(3232), + [anon_sym_PLUS_PLUS] = ACTIONS(3232), + [anon_sym_sizeof] = ACTIONS(3230), + [anon_sym_offsetof] = ACTIONS(3230), + [anon_sym__Generic] = ACTIONS(3230), + [anon_sym_asm] = ACTIONS(3230), + [anon_sym___asm__] = ACTIONS(3230), + [sym_number_literal] = ACTIONS(3232), + [anon_sym_L_SQUOTE] = ACTIONS(3232), + [anon_sym_u_SQUOTE] = ACTIONS(3232), + [anon_sym_U_SQUOTE] = ACTIONS(3232), + [anon_sym_u8_SQUOTE] = ACTIONS(3232), + [anon_sym_SQUOTE] = ACTIONS(3232), + [anon_sym_L_DQUOTE] = ACTIONS(3232), + [anon_sym_u_DQUOTE] = ACTIONS(3232), + [anon_sym_U_DQUOTE] = ACTIONS(3232), + [anon_sym_u8_DQUOTE] = ACTIONS(3232), + [anon_sym_DQUOTE] = ACTIONS(3232), + [sym_true] = ACTIONS(3230), + [sym_false] = ACTIONS(3230), + [anon_sym_NULL] = ACTIONS(3230), + [anon_sym_nullptr] = ACTIONS(3230), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3230), + [anon_sym_decltype] = ACTIONS(3230), + [anon_sym_virtual] = ACTIONS(3230), + [anon_sym_explicit] = ACTIONS(3230), + [anon_sym_typename] = ACTIONS(3230), + [anon_sym_template] = ACTIONS(3230), + [anon_sym_operator] = ACTIONS(3230), + [anon_sym_try] = ACTIONS(3230), + [anon_sym_delete] = ACTIONS(3230), + [anon_sym_throw] = ACTIONS(3230), + [anon_sym_namespace] = ACTIONS(3230), + [anon_sym_using] = ACTIONS(3230), + [anon_sym_static_assert] = ACTIONS(3230), + [anon_sym_concept] = ACTIONS(3230), + [anon_sym_co_return] = ACTIONS(3230), + [anon_sym_co_yield] = ACTIONS(3230), + [anon_sym_R_DQUOTE] = ACTIONS(3232), + [anon_sym_LR_DQUOTE] = ACTIONS(3232), + [anon_sym_uR_DQUOTE] = ACTIONS(3232), + [anon_sym_UR_DQUOTE] = ACTIONS(3232), + [anon_sym_u8R_DQUOTE] = ACTIONS(3232), + [anon_sym_co_await] = ACTIONS(3230), + [anon_sym_new] = ACTIONS(3230), + [anon_sym_requires] = ACTIONS(3230), + [sym_this] = ACTIONS(3230), }, [1243] = { - [sym_identifier] = ACTIONS(3139), - [anon_sym_LPAREN2] = ACTIONS(3141), - [anon_sym_BANG] = ACTIONS(3141), - [anon_sym_TILDE] = ACTIONS(3141), - [anon_sym_DASH] = ACTIONS(3139), - [anon_sym_PLUS] = ACTIONS(3139), - [anon_sym_STAR] = ACTIONS(3141), - [anon_sym_AMP] = ACTIONS(3141), - [anon_sym_SEMI] = ACTIONS(3141), - [anon_sym_extern] = ACTIONS(3139), - [anon_sym___attribute__] = ACTIONS(3139), - [anon_sym_COLON_COLON] = ACTIONS(3141), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3141), - [anon_sym___declspec] = ACTIONS(3139), - [anon_sym_LBRACE] = ACTIONS(3141), - [anon_sym_LBRACK] = ACTIONS(3139), - [anon_sym_static] = ACTIONS(3139), - [anon_sym_register] = ACTIONS(3139), - [anon_sym_inline] = ACTIONS(3139), - [anon_sym_thread_local] = ACTIONS(3139), - [anon_sym_const] = ACTIONS(3139), - [anon_sym_volatile] = ACTIONS(3139), - [anon_sym_restrict] = ACTIONS(3139), - [anon_sym__Atomic] = ACTIONS(3139), - [anon_sym_mutable] = ACTIONS(3139), - [anon_sym_constexpr] = ACTIONS(3139), - [anon_sym_constinit] = ACTIONS(3139), - [anon_sym_consteval] = ACTIONS(3139), - [anon_sym_signed] = ACTIONS(3139), - [anon_sym_unsigned] = ACTIONS(3139), - [anon_sym_long] = ACTIONS(3139), - [anon_sym_short] = ACTIONS(3139), - [sym_primitive_type] = ACTIONS(3139), - [anon_sym_enum] = ACTIONS(3139), - [anon_sym_class] = ACTIONS(3139), - [anon_sym_struct] = ACTIONS(3139), - [anon_sym_union] = ACTIONS(3139), - [anon_sym_if] = ACTIONS(3139), - [anon_sym_switch] = ACTIONS(3139), - [anon_sym_case] = ACTIONS(3139), - [anon_sym_default] = ACTIONS(3139), - [anon_sym_while] = ACTIONS(3139), - [anon_sym_do] = ACTIONS(3139), - [anon_sym_for] = ACTIONS(3139), - [anon_sym_return] = ACTIONS(3139), - [anon_sym_break] = ACTIONS(3139), - [anon_sym_continue] = ACTIONS(3139), - [anon_sym_goto] = ACTIONS(3139), - [anon_sym_not] = ACTIONS(3139), - [anon_sym_compl] = ACTIONS(3139), - [anon_sym_DASH_DASH] = ACTIONS(3141), - [anon_sym_PLUS_PLUS] = ACTIONS(3141), - [anon_sym_sizeof] = ACTIONS(3139), - [sym_number_literal] = ACTIONS(3141), - [anon_sym_L_SQUOTE] = ACTIONS(3141), - [anon_sym_u_SQUOTE] = ACTIONS(3141), - [anon_sym_U_SQUOTE] = ACTIONS(3141), - [anon_sym_u8_SQUOTE] = ACTIONS(3141), - [anon_sym_SQUOTE] = ACTIONS(3141), - [anon_sym_L_DQUOTE] = ACTIONS(3141), - [anon_sym_u_DQUOTE] = ACTIONS(3141), - [anon_sym_U_DQUOTE] = ACTIONS(3141), - [anon_sym_u8_DQUOTE] = ACTIONS(3141), - [anon_sym_DQUOTE] = ACTIONS(3141), - [sym_true] = ACTIONS(3139), - [sym_false] = ACTIONS(3139), - [sym_null] = ACTIONS(3139), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3139), - [anon_sym_decltype] = ACTIONS(3139), - [anon_sym_virtual] = ACTIONS(3139), - [anon_sym_typename] = ACTIONS(3139), - [anon_sym_template] = ACTIONS(3139), - [anon_sym_try] = ACTIONS(3139), - [anon_sym_delete] = ACTIONS(3139), - [anon_sym_throw] = ACTIONS(3139), - [anon_sym_co_return] = ACTIONS(3139), - [anon_sym_co_yield] = ACTIONS(3139), - [anon_sym_R_DQUOTE] = ACTIONS(3141), - [anon_sym_LR_DQUOTE] = ACTIONS(3141), - [anon_sym_uR_DQUOTE] = ACTIONS(3141), - [anon_sym_UR_DQUOTE] = ACTIONS(3141), - [anon_sym_u8R_DQUOTE] = ACTIONS(3141), - [anon_sym_co_await] = ACTIONS(3139), - [anon_sym_new] = ACTIONS(3139), - [anon_sym_requires] = ACTIONS(3139), - [sym_this] = ACTIONS(3139), - [sym_nullptr] = ACTIONS(3139), + [sym_identifier] = ACTIONS(3205), + [aux_sym_preproc_include_token1] = ACTIONS(3205), + [aux_sym_preproc_def_token1] = ACTIONS(3205), + [aux_sym_preproc_if_token1] = ACTIONS(3205), + [aux_sym_preproc_if_token2] = ACTIONS(3205), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3205), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3205), + [sym_preproc_directive] = ACTIONS(3205), + [anon_sym_LPAREN2] = ACTIONS(3207), + [anon_sym_BANG] = ACTIONS(3207), + [anon_sym_TILDE] = ACTIONS(3207), + [anon_sym_DASH] = ACTIONS(3205), + [anon_sym_PLUS] = ACTIONS(3205), + [anon_sym_STAR] = ACTIONS(3207), + [anon_sym_AMP_AMP] = ACTIONS(3207), + [anon_sym_AMP] = ACTIONS(3205), + [anon_sym_SEMI] = ACTIONS(3207), + [anon_sym_typedef] = ACTIONS(3205), + [anon_sym_extern] = ACTIONS(3205), + [anon_sym___attribute__] = ACTIONS(3205), + [anon_sym_COLON_COLON] = ACTIONS(3207), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3207), + [anon_sym___declspec] = ACTIONS(3205), + [anon_sym___based] = ACTIONS(3205), + [anon_sym___cdecl] = ACTIONS(3205), + [anon_sym___clrcall] = ACTIONS(3205), + [anon_sym___stdcall] = ACTIONS(3205), + [anon_sym___fastcall] = ACTIONS(3205), + [anon_sym___thiscall] = ACTIONS(3205), + [anon_sym___vectorcall] = ACTIONS(3205), + [anon_sym_LBRACE] = ACTIONS(3207), + [anon_sym_LBRACK] = ACTIONS(3205), + [anon_sym_static] = ACTIONS(3205), + [anon_sym_register] = ACTIONS(3205), + [anon_sym_inline] = ACTIONS(3205), + [anon_sym_thread_local] = ACTIONS(3205), + [anon_sym_const] = ACTIONS(3205), + [anon_sym_constexpr] = ACTIONS(3205), + [anon_sym_volatile] = ACTIONS(3205), + [anon_sym_restrict] = ACTIONS(3205), + [anon_sym___restrict__] = ACTIONS(3205), + [anon_sym__Atomic] = ACTIONS(3205), + [anon_sym__Noreturn] = ACTIONS(3205), + [anon_sym_noreturn] = ACTIONS(3205), + [anon_sym_mutable] = ACTIONS(3205), + [anon_sym_constinit] = ACTIONS(3205), + [anon_sym_consteval] = ACTIONS(3205), + [anon_sym_signed] = ACTIONS(3205), + [anon_sym_unsigned] = ACTIONS(3205), + [anon_sym_long] = ACTIONS(3205), + [anon_sym_short] = ACTIONS(3205), + [sym_primitive_type] = ACTIONS(3205), + [anon_sym_enum] = ACTIONS(3205), + [anon_sym_class] = ACTIONS(3205), + [anon_sym_struct] = ACTIONS(3205), + [anon_sym_union] = ACTIONS(3205), + [anon_sym_if] = ACTIONS(3205), + [anon_sym_switch] = ACTIONS(3205), + [anon_sym_case] = ACTIONS(3205), + [anon_sym_default] = ACTIONS(3205), + [anon_sym_while] = ACTIONS(3205), + [anon_sym_do] = ACTIONS(3205), + [anon_sym_for] = ACTIONS(3205), + [anon_sym_return] = ACTIONS(3205), + [anon_sym_break] = ACTIONS(3205), + [anon_sym_continue] = ACTIONS(3205), + [anon_sym_goto] = ACTIONS(3205), + [anon_sym_not] = ACTIONS(3205), + [anon_sym_compl] = ACTIONS(3205), + [anon_sym_DASH_DASH] = ACTIONS(3207), + [anon_sym_PLUS_PLUS] = ACTIONS(3207), + [anon_sym_sizeof] = ACTIONS(3205), + [anon_sym_offsetof] = ACTIONS(3205), + [anon_sym__Generic] = ACTIONS(3205), + [anon_sym_asm] = ACTIONS(3205), + [anon_sym___asm__] = ACTIONS(3205), + [sym_number_literal] = ACTIONS(3207), + [anon_sym_L_SQUOTE] = ACTIONS(3207), + [anon_sym_u_SQUOTE] = ACTIONS(3207), + [anon_sym_U_SQUOTE] = ACTIONS(3207), + [anon_sym_u8_SQUOTE] = ACTIONS(3207), + [anon_sym_SQUOTE] = ACTIONS(3207), + [anon_sym_L_DQUOTE] = ACTIONS(3207), + [anon_sym_u_DQUOTE] = ACTIONS(3207), + [anon_sym_U_DQUOTE] = ACTIONS(3207), + [anon_sym_u8_DQUOTE] = ACTIONS(3207), + [anon_sym_DQUOTE] = ACTIONS(3207), + [sym_true] = ACTIONS(3205), + [sym_false] = ACTIONS(3205), + [anon_sym_NULL] = ACTIONS(3205), + [anon_sym_nullptr] = ACTIONS(3205), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3205), + [anon_sym_decltype] = ACTIONS(3205), + [anon_sym_virtual] = ACTIONS(3205), + [anon_sym_explicit] = ACTIONS(3205), + [anon_sym_typename] = ACTIONS(3205), + [anon_sym_template] = ACTIONS(3205), + [anon_sym_operator] = ACTIONS(3205), + [anon_sym_try] = ACTIONS(3205), + [anon_sym_delete] = ACTIONS(3205), + [anon_sym_throw] = ACTIONS(3205), + [anon_sym_namespace] = ACTIONS(3205), + [anon_sym_using] = ACTIONS(3205), + [anon_sym_static_assert] = ACTIONS(3205), + [anon_sym_concept] = ACTIONS(3205), + [anon_sym_co_return] = ACTIONS(3205), + [anon_sym_co_yield] = ACTIONS(3205), + [anon_sym_R_DQUOTE] = ACTIONS(3207), + [anon_sym_LR_DQUOTE] = ACTIONS(3207), + [anon_sym_uR_DQUOTE] = ACTIONS(3207), + [anon_sym_UR_DQUOTE] = ACTIONS(3207), + [anon_sym_u8R_DQUOTE] = ACTIONS(3207), + [anon_sym_co_await] = ACTIONS(3205), + [anon_sym_new] = ACTIONS(3205), + [anon_sym_requires] = ACTIONS(3205), + [sym_this] = ACTIONS(3205), }, [1244] = { - [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_AMP] = ACTIONS(2464), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym_LBRACE] = ACTIONS(2464), - [anon_sym_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_identifier] = ACTIONS(3270), + [aux_sym_preproc_include_token1] = ACTIONS(3270), + [aux_sym_preproc_def_token1] = ACTIONS(3270), + [aux_sym_preproc_if_token1] = ACTIONS(3270), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3270), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3270), + [sym_preproc_directive] = ACTIONS(3270), + [anon_sym_LPAREN2] = ACTIONS(3272), + [anon_sym_BANG] = ACTIONS(3272), + [anon_sym_TILDE] = ACTIONS(3272), + [anon_sym_DASH] = ACTIONS(3270), + [anon_sym_PLUS] = ACTIONS(3270), + [anon_sym_STAR] = ACTIONS(3272), + [anon_sym_AMP_AMP] = ACTIONS(3272), + [anon_sym_AMP] = ACTIONS(3270), + [anon_sym_SEMI] = ACTIONS(3272), + [anon_sym_typedef] = ACTIONS(3270), + [anon_sym_extern] = ACTIONS(3270), + [anon_sym___attribute__] = ACTIONS(3270), + [anon_sym_COLON_COLON] = ACTIONS(3272), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3272), + [anon_sym___declspec] = ACTIONS(3270), + [anon_sym___based] = ACTIONS(3270), + [anon_sym___cdecl] = ACTIONS(3270), + [anon_sym___clrcall] = ACTIONS(3270), + [anon_sym___stdcall] = ACTIONS(3270), + [anon_sym___fastcall] = ACTIONS(3270), + [anon_sym___thiscall] = ACTIONS(3270), + [anon_sym___vectorcall] = ACTIONS(3270), + [anon_sym_LBRACE] = ACTIONS(3272), + [anon_sym_RBRACE] = ACTIONS(3272), + [anon_sym_LBRACK] = ACTIONS(3270), + [anon_sym_static] = ACTIONS(3270), + [anon_sym_register] = ACTIONS(3270), + [anon_sym_inline] = ACTIONS(3270), + [anon_sym_thread_local] = ACTIONS(3270), + [anon_sym_const] = ACTIONS(3270), + [anon_sym_constexpr] = ACTIONS(3270), + [anon_sym_volatile] = ACTIONS(3270), + [anon_sym_restrict] = ACTIONS(3270), + [anon_sym___restrict__] = ACTIONS(3270), + [anon_sym__Atomic] = ACTIONS(3270), + [anon_sym__Noreturn] = ACTIONS(3270), + [anon_sym_noreturn] = ACTIONS(3270), + [anon_sym_mutable] = ACTIONS(3270), + [anon_sym_constinit] = ACTIONS(3270), + [anon_sym_consteval] = ACTIONS(3270), + [anon_sym_signed] = ACTIONS(3270), + [anon_sym_unsigned] = ACTIONS(3270), + [anon_sym_long] = ACTIONS(3270), + [anon_sym_short] = ACTIONS(3270), + [sym_primitive_type] = ACTIONS(3270), + [anon_sym_enum] = ACTIONS(3270), + [anon_sym_class] = ACTIONS(3270), + [anon_sym_struct] = ACTIONS(3270), + [anon_sym_union] = ACTIONS(3270), + [anon_sym_if] = ACTIONS(3270), + [anon_sym_switch] = ACTIONS(3270), + [anon_sym_case] = ACTIONS(3270), + [anon_sym_default] = ACTIONS(3270), + [anon_sym_while] = ACTIONS(3270), + [anon_sym_do] = ACTIONS(3270), + [anon_sym_for] = ACTIONS(3270), + [anon_sym_return] = ACTIONS(3270), + [anon_sym_break] = ACTIONS(3270), + [anon_sym_continue] = ACTIONS(3270), + [anon_sym_goto] = ACTIONS(3270), + [anon_sym_not] = ACTIONS(3270), + [anon_sym_compl] = ACTIONS(3270), + [anon_sym_DASH_DASH] = ACTIONS(3272), + [anon_sym_PLUS_PLUS] = ACTIONS(3272), + [anon_sym_sizeof] = ACTIONS(3270), + [anon_sym_offsetof] = ACTIONS(3270), + [anon_sym__Generic] = ACTIONS(3270), + [anon_sym_asm] = ACTIONS(3270), + [anon_sym___asm__] = ACTIONS(3270), + [sym_number_literal] = ACTIONS(3272), + [anon_sym_L_SQUOTE] = ACTIONS(3272), + [anon_sym_u_SQUOTE] = ACTIONS(3272), + [anon_sym_U_SQUOTE] = ACTIONS(3272), + [anon_sym_u8_SQUOTE] = ACTIONS(3272), + [anon_sym_SQUOTE] = ACTIONS(3272), + [anon_sym_L_DQUOTE] = ACTIONS(3272), + [anon_sym_u_DQUOTE] = ACTIONS(3272), + [anon_sym_U_DQUOTE] = ACTIONS(3272), + [anon_sym_u8_DQUOTE] = ACTIONS(3272), + [anon_sym_DQUOTE] = ACTIONS(3272), + [sym_true] = ACTIONS(3270), + [sym_false] = ACTIONS(3270), + [anon_sym_NULL] = ACTIONS(3270), + [anon_sym_nullptr] = ACTIONS(3270), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3270), + [anon_sym_decltype] = ACTIONS(3270), + [anon_sym_virtual] = ACTIONS(3270), + [anon_sym_explicit] = ACTIONS(3270), + [anon_sym_typename] = ACTIONS(3270), + [anon_sym_template] = ACTIONS(3270), + [anon_sym_operator] = ACTIONS(3270), + [anon_sym_try] = ACTIONS(3270), + [anon_sym_delete] = ACTIONS(3270), + [anon_sym_throw] = ACTIONS(3270), + [anon_sym_namespace] = ACTIONS(3270), + [anon_sym_using] = ACTIONS(3270), + [anon_sym_static_assert] = ACTIONS(3270), + [anon_sym_concept] = ACTIONS(3270), + [anon_sym_co_return] = ACTIONS(3270), + [anon_sym_co_yield] = ACTIONS(3270), + [anon_sym_R_DQUOTE] = ACTIONS(3272), + [anon_sym_LR_DQUOTE] = ACTIONS(3272), + [anon_sym_uR_DQUOTE] = ACTIONS(3272), + [anon_sym_UR_DQUOTE] = ACTIONS(3272), + [anon_sym_u8R_DQUOTE] = ACTIONS(3272), + [anon_sym_co_await] = ACTIONS(3270), + [anon_sym_new] = ACTIONS(3270), + [anon_sym_requires] = ACTIONS(3270), + [sym_this] = ACTIONS(3270), }, [1245] = { - [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_AMP] = ACTIONS(2476), - [anon_sym_SEMI] = ACTIONS(2476), - [anon_sym_typedef] = ACTIONS(2474), - [anon_sym_extern] = ACTIONS(2474), - [anon_sym___attribute__] = ACTIONS(2474), - [anon_sym_COLON_COLON] = ACTIONS(2476), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2476), - [anon_sym___declspec] = ACTIONS(2474), - [anon_sym_LBRACE] = ACTIONS(2476), - [anon_sym_LBRACK] = ACTIONS(2474), - [anon_sym_static] = ACTIONS(2474), - [anon_sym_register] = ACTIONS(2474), - [anon_sym_inline] = ACTIONS(2474), - [anon_sym_thread_local] = ACTIONS(2474), - [anon_sym_const] = ACTIONS(2474), - [anon_sym_volatile] = ACTIONS(2474), - [anon_sym_restrict] = ACTIONS(2474), - [anon_sym__Atomic] = ACTIONS(2474), - [anon_sym_mutable] = ACTIONS(2474), - [anon_sym_constexpr] = ACTIONS(2474), - [anon_sym_constinit] = ACTIONS(2474), - [anon_sym_consteval] = ACTIONS(2474), - [anon_sym_signed] = ACTIONS(2474), - [anon_sym_unsigned] = ACTIONS(2474), - [anon_sym_long] = ACTIONS(2474), - [anon_sym_short] = ACTIONS(2474), - [sym_primitive_type] = ACTIONS(2474), - [anon_sym_enum] = ACTIONS(2474), - [anon_sym_class] = 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_return] = ACTIONS(2474), - [anon_sym_break] = ACTIONS(2474), - [anon_sym_continue] = ACTIONS(2474), - [anon_sym_goto] = ACTIONS(2474), - [anon_sym_not] = ACTIONS(2474), - [anon_sym_compl] = ACTIONS(2474), - [anon_sym_DASH_DASH] = ACTIONS(2476), - [anon_sym_PLUS_PLUS] = ACTIONS(2476), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2476), - [anon_sym_u_DQUOTE] = ACTIONS(2476), - [anon_sym_U_DQUOTE] = ACTIONS(2476), - [anon_sym_u8_DQUOTE] = ACTIONS(2476), - [anon_sym_DQUOTE] = ACTIONS(2476), - [sym_true] = ACTIONS(2474), - [sym_false] = ACTIONS(2474), - [sym_null] = ACTIONS(2474), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2474), - [anon_sym_decltype] = ACTIONS(2474), - [anon_sym_virtual] = ACTIONS(2474), - [anon_sym_typename] = ACTIONS(2474), - [anon_sym_template] = ACTIONS(2474), - [anon_sym_try] = ACTIONS(2474), - [anon_sym_delete] = ACTIONS(2474), - [anon_sym_throw] = ACTIONS(2474), - [anon_sym_co_return] = ACTIONS(2474), - [anon_sym_co_yield] = ACTIONS(2474), - [anon_sym_R_DQUOTE] = ACTIONS(2476), - [anon_sym_LR_DQUOTE] = ACTIONS(2476), - [anon_sym_uR_DQUOTE] = ACTIONS(2476), - [anon_sym_UR_DQUOTE] = ACTIONS(2476), - [anon_sym_u8R_DQUOTE] = ACTIONS(2476), - [anon_sym_co_await] = ACTIONS(2474), - [anon_sym_new] = ACTIONS(2474), - [anon_sym_requires] = ACTIONS(2474), - [sym_this] = ACTIONS(2474), - [sym_nullptr] = ACTIONS(2474), + [sym_identifier] = ACTIONS(3164), + [aux_sym_preproc_include_token1] = ACTIONS(3164), + [aux_sym_preproc_def_token1] = ACTIONS(3164), + [aux_sym_preproc_if_token1] = ACTIONS(3164), + [aux_sym_preproc_if_token2] = ACTIONS(3164), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3164), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3164), + [sym_preproc_directive] = ACTIONS(3164), + [anon_sym_LPAREN2] = ACTIONS(3166), + [anon_sym_BANG] = ACTIONS(3166), + [anon_sym_TILDE] = ACTIONS(3166), + [anon_sym_DASH] = ACTIONS(3164), + [anon_sym_PLUS] = ACTIONS(3164), + [anon_sym_STAR] = ACTIONS(3166), + [anon_sym_AMP_AMP] = ACTIONS(3166), + [anon_sym_AMP] = ACTIONS(3164), + [anon_sym_SEMI] = ACTIONS(3166), + [anon_sym_typedef] = ACTIONS(3164), + [anon_sym_extern] = ACTIONS(3164), + [anon_sym___attribute__] = ACTIONS(3164), + [anon_sym_COLON_COLON] = ACTIONS(3166), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3166), + [anon_sym___declspec] = ACTIONS(3164), + [anon_sym___based] = ACTIONS(3164), + [anon_sym___cdecl] = ACTIONS(3164), + [anon_sym___clrcall] = ACTIONS(3164), + [anon_sym___stdcall] = ACTIONS(3164), + [anon_sym___fastcall] = ACTIONS(3164), + [anon_sym___thiscall] = ACTIONS(3164), + [anon_sym___vectorcall] = ACTIONS(3164), + [anon_sym_LBRACE] = ACTIONS(3166), + [anon_sym_LBRACK] = ACTIONS(3164), + [anon_sym_static] = ACTIONS(3164), + [anon_sym_register] = ACTIONS(3164), + [anon_sym_inline] = ACTIONS(3164), + [anon_sym_thread_local] = ACTIONS(3164), + [anon_sym_const] = ACTIONS(3164), + [anon_sym_constexpr] = ACTIONS(3164), + [anon_sym_volatile] = ACTIONS(3164), + [anon_sym_restrict] = ACTIONS(3164), + [anon_sym___restrict__] = ACTIONS(3164), + [anon_sym__Atomic] = ACTIONS(3164), + [anon_sym__Noreturn] = ACTIONS(3164), + [anon_sym_noreturn] = ACTIONS(3164), + [anon_sym_mutable] = ACTIONS(3164), + [anon_sym_constinit] = ACTIONS(3164), + [anon_sym_consteval] = ACTIONS(3164), + [anon_sym_signed] = ACTIONS(3164), + [anon_sym_unsigned] = ACTIONS(3164), + [anon_sym_long] = ACTIONS(3164), + [anon_sym_short] = ACTIONS(3164), + [sym_primitive_type] = ACTIONS(3164), + [anon_sym_enum] = ACTIONS(3164), + [anon_sym_class] = ACTIONS(3164), + [anon_sym_struct] = ACTIONS(3164), + [anon_sym_union] = ACTIONS(3164), + [anon_sym_if] = ACTIONS(3164), + [anon_sym_switch] = ACTIONS(3164), + [anon_sym_case] = ACTIONS(3164), + [anon_sym_default] = ACTIONS(3164), + [anon_sym_while] = ACTIONS(3164), + [anon_sym_do] = ACTIONS(3164), + [anon_sym_for] = ACTIONS(3164), + [anon_sym_return] = ACTIONS(3164), + [anon_sym_break] = ACTIONS(3164), + [anon_sym_continue] = ACTIONS(3164), + [anon_sym_goto] = ACTIONS(3164), + [anon_sym_not] = ACTIONS(3164), + [anon_sym_compl] = ACTIONS(3164), + [anon_sym_DASH_DASH] = ACTIONS(3166), + [anon_sym_PLUS_PLUS] = ACTIONS(3166), + [anon_sym_sizeof] = ACTIONS(3164), + [anon_sym_offsetof] = ACTIONS(3164), + [anon_sym__Generic] = ACTIONS(3164), + [anon_sym_asm] = ACTIONS(3164), + [anon_sym___asm__] = ACTIONS(3164), + [sym_number_literal] = ACTIONS(3166), + [anon_sym_L_SQUOTE] = ACTIONS(3166), + [anon_sym_u_SQUOTE] = ACTIONS(3166), + [anon_sym_U_SQUOTE] = ACTIONS(3166), + [anon_sym_u8_SQUOTE] = ACTIONS(3166), + [anon_sym_SQUOTE] = ACTIONS(3166), + [anon_sym_L_DQUOTE] = ACTIONS(3166), + [anon_sym_u_DQUOTE] = ACTIONS(3166), + [anon_sym_U_DQUOTE] = ACTIONS(3166), + [anon_sym_u8_DQUOTE] = ACTIONS(3166), + [anon_sym_DQUOTE] = ACTIONS(3166), + [sym_true] = ACTIONS(3164), + [sym_false] = ACTIONS(3164), + [anon_sym_NULL] = ACTIONS(3164), + [anon_sym_nullptr] = ACTIONS(3164), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3164), + [anon_sym_decltype] = ACTIONS(3164), + [anon_sym_virtual] = ACTIONS(3164), + [anon_sym_explicit] = ACTIONS(3164), + [anon_sym_typename] = ACTIONS(3164), + [anon_sym_template] = ACTIONS(3164), + [anon_sym_operator] = ACTIONS(3164), + [anon_sym_try] = ACTIONS(3164), + [anon_sym_delete] = ACTIONS(3164), + [anon_sym_throw] = ACTIONS(3164), + [anon_sym_namespace] = ACTIONS(3164), + [anon_sym_using] = ACTIONS(3164), + [anon_sym_static_assert] = ACTIONS(3164), + [anon_sym_concept] = ACTIONS(3164), + [anon_sym_co_return] = ACTIONS(3164), + [anon_sym_co_yield] = ACTIONS(3164), + [anon_sym_R_DQUOTE] = ACTIONS(3166), + [anon_sym_LR_DQUOTE] = ACTIONS(3166), + [anon_sym_uR_DQUOTE] = ACTIONS(3166), + [anon_sym_UR_DQUOTE] = ACTIONS(3166), + [anon_sym_u8R_DQUOTE] = ACTIONS(3166), + [anon_sym_co_await] = ACTIONS(3164), + [anon_sym_new] = ACTIONS(3164), + [anon_sym_requires] = ACTIONS(3164), + [sym_this] = ACTIONS(3164), }, [1246] = { - [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_AMP] = ACTIONS(2464), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym_LBRACE] = ACTIONS(2464), - [anon_sym_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_identifier] = ACTIONS(3270), + [aux_sym_preproc_include_token1] = ACTIONS(3270), + [aux_sym_preproc_def_token1] = ACTIONS(3270), + [aux_sym_preproc_if_token1] = ACTIONS(3270), + [aux_sym_preproc_if_token2] = ACTIONS(3270), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3270), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3270), + [sym_preproc_directive] = ACTIONS(3270), + [anon_sym_LPAREN2] = ACTIONS(3272), + [anon_sym_BANG] = ACTIONS(3272), + [anon_sym_TILDE] = ACTIONS(3272), + [anon_sym_DASH] = ACTIONS(3270), + [anon_sym_PLUS] = ACTIONS(3270), + [anon_sym_STAR] = ACTIONS(3272), + [anon_sym_AMP_AMP] = ACTIONS(3272), + [anon_sym_AMP] = ACTIONS(3270), + [anon_sym_SEMI] = ACTIONS(3272), + [anon_sym_typedef] = ACTIONS(3270), + [anon_sym_extern] = ACTIONS(3270), + [anon_sym___attribute__] = ACTIONS(3270), + [anon_sym_COLON_COLON] = ACTIONS(3272), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3272), + [anon_sym___declspec] = ACTIONS(3270), + [anon_sym___based] = ACTIONS(3270), + [anon_sym___cdecl] = ACTIONS(3270), + [anon_sym___clrcall] = ACTIONS(3270), + [anon_sym___stdcall] = ACTIONS(3270), + [anon_sym___fastcall] = ACTIONS(3270), + [anon_sym___thiscall] = ACTIONS(3270), + [anon_sym___vectorcall] = ACTIONS(3270), + [anon_sym_LBRACE] = ACTIONS(3272), + [anon_sym_LBRACK] = ACTIONS(3270), + [anon_sym_static] = ACTIONS(3270), + [anon_sym_register] = ACTIONS(3270), + [anon_sym_inline] = ACTIONS(3270), + [anon_sym_thread_local] = ACTIONS(3270), + [anon_sym_const] = ACTIONS(3270), + [anon_sym_constexpr] = ACTIONS(3270), + [anon_sym_volatile] = ACTIONS(3270), + [anon_sym_restrict] = ACTIONS(3270), + [anon_sym___restrict__] = ACTIONS(3270), + [anon_sym__Atomic] = ACTIONS(3270), + [anon_sym__Noreturn] = ACTIONS(3270), + [anon_sym_noreturn] = ACTIONS(3270), + [anon_sym_mutable] = ACTIONS(3270), + [anon_sym_constinit] = ACTIONS(3270), + [anon_sym_consteval] = ACTIONS(3270), + [anon_sym_signed] = ACTIONS(3270), + [anon_sym_unsigned] = ACTIONS(3270), + [anon_sym_long] = ACTIONS(3270), + [anon_sym_short] = ACTIONS(3270), + [sym_primitive_type] = ACTIONS(3270), + [anon_sym_enum] = ACTIONS(3270), + [anon_sym_class] = ACTIONS(3270), + [anon_sym_struct] = ACTIONS(3270), + [anon_sym_union] = ACTIONS(3270), + [anon_sym_if] = ACTIONS(3270), + [anon_sym_switch] = ACTIONS(3270), + [anon_sym_case] = ACTIONS(3270), + [anon_sym_default] = ACTIONS(3270), + [anon_sym_while] = ACTIONS(3270), + [anon_sym_do] = ACTIONS(3270), + [anon_sym_for] = ACTIONS(3270), + [anon_sym_return] = ACTIONS(3270), + [anon_sym_break] = ACTIONS(3270), + [anon_sym_continue] = ACTIONS(3270), + [anon_sym_goto] = ACTIONS(3270), + [anon_sym_not] = ACTIONS(3270), + [anon_sym_compl] = ACTIONS(3270), + [anon_sym_DASH_DASH] = ACTIONS(3272), + [anon_sym_PLUS_PLUS] = ACTIONS(3272), + [anon_sym_sizeof] = ACTIONS(3270), + [anon_sym_offsetof] = ACTIONS(3270), + [anon_sym__Generic] = ACTIONS(3270), + [anon_sym_asm] = ACTIONS(3270), + [anon_sym___asm__] = ACTIONS(3270), + [sym_number_literal] = ACTIONS(3272), + [anon_sym_L_SQUOTE] = ACTIONS(3272), + [anon_sym_u_SQUOTE] = ACTIONS(3272), + [anon_sym_U_SQUOTE] = ACTIONS(3272), + [anon_sym_u8_SQUOTE] = ACTIONS(3272), + [anon_sym_SQUOTE] = ACTIONS(3272), + [anon_sym_L_DQUOTE] = ACTIONS(3272), + [anon_sym_u_DQUOTE] = ACTIONS(3272), + [anon_sym_U_DQUOTE] = ACTIONS(3272), + [anon_sym_u8_DQUOTE] = ACTIONS(3272), + [anon_sym_DQUOTE] = ACTIONS(3272), + [sym_true] = ACTIONS(3270), + [sym_false] = ACTIONS(3270), + [anon_sym_NULL] = ACTIONS(3270), + [anon_sym_nullptr] = ACTIONS(3270), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3270), + [anon_sym_decltype] = ACTIONS(3270), + [anon_sym_virtual] = ACTIONS(3270), + [anon_sym_explicit] = ACTIONS(3270), + [anon_sym_typename] = ACTIONS(3270), + [anon_sym_template] = ACTIONS(3270), + [anon_sym_operator] = ACTIONS(3270), + [anon_sym_try] = ACTIONS(3270), + [anon_sym_delete] = ACTIONS(3270), + [anon_sym_throw] = ACTIONS(3270), + [anon_sym_namespace] = ACTIONS(3270), + [anon_sym_using] = ACTIONS(3270), + [anon_sym_static_assert] = ACTIONS(3270), + [anon_sym_concept] = ACTIONS(3270), + [anon_sym_co_return] = ACTIONS(3270), + [anon_sym_co_yield] = ACTIONS(3270), + [anon_sym_R_DQUOTE] = ACTIONS(3272), + [anon_sym_LR_DQUOTE] = ACTIONS(3272), + [anon_sym_uR_DQUOTE] = ACTIONS(3272), + [anon_sym_UR_DQUOTE] = ACTIONS(3272), + [anon_sym_u8R_DQUOTE] = ACTIONS(3272), + [anon_sym_co_await] = ACTIONS(3270), + [anon_sym_new] = ACTIONS(3270), + [anon_sym_requires] = ACTIONS(3270), + [sym_this] = ACTIONS(3270), }, [1247] = { - [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_AMP] = ACTIONS(2484), - [anon_sym_SEMI] = ACTIONS(2484), - [anon_sym_typedef] = ACTIONS(2482), - [anon_sym_extern] = ACTIONS(2482), - [anon_sym___attribute__] = ACTIONS(2482), - [anon_sym_COLON_COLON] = ACTIONS(2484), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2484), - [anon_sym___declspec] = ACTIONS(2482), - [anon_sym_LBRACE] = ACTIONS(2484), - [anon_sym_LBRACK] = ACTIONS(2482), - [anon_sym_static] = ACTIONS(2482), - [anon_sym_register] = ACTIONS(2482), - [anon_sym_inline] = ACTIONS(2482), - [anon_sym_thread_local] = ACTIONS(2482), - [anon_sym_const] = ACTIONS(2482), - [anon_sym_volatile] = ACTIONS(2482), - [anon_sym_restrict] = ACTIONS(2482), - [anon_sym__Atomic] = ACTIONS(2482), - [anon_sym_mutable] = ACTIONS(2482), - [anon_sym_constexpr] = ACTIONS(2482), - [anon_sym_constinit] = ACTIONS(2482), - [anon_sym_consteval] = ACTIONS(2482), - [anon_sym_signed] = ACTIONS(2482), - [anon_sym_unsigned] = ACTIONS(2482), - [anon_sym_long] = ACTIONS(2482), - [anon_sym_short] = ACTIONS(2482), - [sym_primitive_type] = ACTIONS(2482), - [anon_sym_enum] = ACTIONS(2482), - [anon_sym_class] = ACTIONS(2482), - [anon_sym_struct] = ACTIONS(2482), - [anon_sym_union] = ACTIONS(2482), - [anon_sym_if] = ACTIONS(2482), - [anon_sym_else] = ACTIONS(3402), - [anon_sym_switch] = ACTIONS(2482), - [anon_sym_while] = ACTIONS(2482), - [anon_sym_do] = ACTIONS(2482), - [anon_sym_for] = ACTIONS(2482), - [anon_sym_return] = ACTIONS(2482), - [anon_sym_break] = ACTIONS(2482), - [anon_sym_continue] = ACTIONS(2482), - [anon_sym_goto] = ACTIONS(2482), - [anon_sym_not] = ACTIONS(2482), - [anon_sym_compl] = ACTIONS(2482), - [anon_sym_DASH_DASH] = ACTIONS(2484), - [anon_sym_PLUS_PLUS] = ACTIONS(2484), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2484), - [anon_sym_u_DQUOTE] = ACTIONS(2484), - [anon_sym_U_DQUOTE] = ACTIONS(2484), - [anon_sym_u8_DQUOTE] = ACTIONS(2484), - [anon_sym_DQUOTE] = ACTIONS(2484), - [sym_true] = ACTIONS(2482), - [sym_false] = ACTIONS(2482), - [sym_null] = ACTIONS(2482), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2482), - [anon_sym_decltype] = ACTIONS(2482), - [anon_sym_virtual] = ACTIONS(2482), - [anon_sym_typename] = ACTIONS(2482), - [anon_sym_template] = ACTIONS(2482), - [anon_sym_try] = ACTIONS(2482), - [anon_sym_delete] = ACTIONS(2482), - [anon_sym_throw] = ACTIONS(2482), - [anon_sym_co_return] = ACTIONS(2482), - [anon_sym_co_yield] = ACTIONS(2482), - [anon_sym_R_DQUOTE] = ACTIONS(2484), - [anon_sym_LR_DQUOTE] = ACTIONS(2484), - [anon_sym_uR_DQUOTE] = ACTIONS(2484), - [anon_sym_UR_DQUOTE] = ACTIONS(2484), - [anon_sym_u8R_DQUOTE] = ACTIONS(2484), - [anon_sym_co_await] = ACTIONS(2482), - [anon_sym_new] = ACTIONS(2482), - [anon_sym_requires] = ACTIONS(2482), - [sym_this] = ACTIONS(2482), - [sym_nullptr] = ACTIONS(2482), + [sym_identifier] = ACTIONS(3242), + [aux_sym_preproc_include_token1] = ACTIONS(3242), + [aux_sym_preproc_def_token1] = ACTIONS(3242), + [aux_sym_preproc_if_token1] = ACTIONS(3242), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3242), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3242), + [sym_preproc_directive] = ACTIONS(3242), + [anon_sym_LPAREN2] = ACTIONS(3244), + [anon_sym_BANG] = ACTIONS(3244), + [anon_sym_TILDE] = ACTIONS(3244), + [anon_sym_DASH] = ACTIONS(3242), + [anon_sym_PLUS] = ACTIONS(3242), + [anon_sym_STAR] = ACTIONS(3244), + [anon_sym_AMP_AMP] = ACTIONS(3244), + [anon_sym_AMP] = ACTIONS(3242), + [anon_sym_SEMI] = ACTIONS(3244), + [anon_sym_typedef] = ACTIONS(3242), + [anon_sym_extern] = ACTIONS(3242), + [anon_sym___attribute__] = ACTIONS(3242), + [anon_sym_COLON_COLON] = ACTIONS(3244), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3244), + [anon_sym___declspec] = ACTIONS(3242), + [anon_sym___based] = ACTIONS(3242), + [anon_sym___cdecl] = ACTIONS(3242), + [anon_sym___clrcall] = ACTIONS(3242), + [anon_sym___stdcall] = ACTIONS(3242), + [anon_sym___fastcall] = ACTIONS(3242), + [anon_sym___thiscall] = ACTIONS(3242), + [anon_sym___vectorcall] = ACTIONS(3242), + [anon_sym_LBRACE] = ACTIONS(3244), + [anon_sym_RBRACE] = ACTIONS(3244), + [anon_sym_LBRACK] = ACTIONS(3242), + [anon_sym_static] = ACTIONS(3242), + [anon_sym_register] = ACTIONS(3242), + [anon_sym_inline] = ACTIONS(3242), + [anon_sym_thread_local] = ACTIONS(3242), + [anon_sym_const] = ACTIONS(3242), + [anon_sym_constexpr] = ACTIONS(3242), + [anon_sym_volatile] = ACTIONS(3242), + [anon_sym_restrict] = ACTIONS(3242), + [anon_sym___restrict__] = ACTIONS(3242), + [anon_sym__Atomic] = ACTIONS(3242), + [anon_sym__Noreturn] = ACTIONS(3242), + [anon_sym_noreturn] = ACTIONS(3242), + [anon_sym_mutable] = ACTIONS(3242), + [anon_sym_constinit] = ACTIONS(3242), + [anon_sym_consteval] = ACTIONS(3242), + [anon_sym_signed] = ACTIONS(3242), + [anon_sym_unsigned] = ACTIONS(3242), + [anon_sym_long] = ACTIONS(3242), + [anon_sym_short] = ACTIONS(3242), + [sym_primitive_type] = ACTIONS(3242), + [anon_sym_enum] = ACTIONS(3242), + [anon_sym_class] = ACTIONS(3242), + [anon_sym_struct] = ACTIONS(3242), + [anon_sym_union] = ACTIONS(3242), + [anon_sym_if] = ACTIONS(3242), + [anon_sym_switch] = ACTIONS(3242), + [anon_sym_case] = ACTIONS(3242), + [anon_sym_default] = ACTIONS(3242), + [anon_sym_while] = ACTIONS(3242), + [anon_sym_do] = ACTIONS(3242), + [anon_sym_for] = ACTIONS(3242), + [anon_sym_return] = ACTIONS(3242), + [anon_sym_break] = ACTIONS(3242), + [anon_sym_continue] = ACTIONS(3242), + [anon_sym_goto] = ACTIONS(3242), + [anon_sym_not] = ACTIONS(3242), + [anon_sym_compl] = ACTIONS(3242), + [anon_sym_DASH_DASH] = ACTIONS(3244), + [anon_sym_PLUS_PLUS] = ACTIONS(3244), + [anon_sym_sizeof] = ACTIONS(3242), + [anon_sym_offsetof] = ACTIONS(3242), + [anon_sym__Generic] = ACTIONS(3242), + [anon_sym_asm] = ACTIONS(3242), + [anon_sym___asm__] = ACTIONS(3242), + [sym_number_literal] = ACTIONS(3244), + [anon_sym_L_SQUOTE] = ACTIONS(3244), + [anon_sym_u_SQUOTE] = ACTIONS(3244), + [anon_sym_U_SQUOTE] = ACTIONS(3244), + [anon_sym_u8_SQUOTE] = ACTIONS(3244), + [anon_sym_SQUOTE] = ACTIONS(3244), + [anon_sym_L_DQUOTE] = ACTIONS(3244), + [anon_sym_u_DQUOTE] = ACTIONS(3244), + [anon_sym_U_DQUOTE] = ACTIONS(3244), + [anon_sym_u8_DQUOTE] = ACTIONS(3244), + [anon_sym_DQUOTE] = ACTIONS(3244), + [sym_true] = ACTIONS(3242), + [sym_false] = ACTIONS(3242), + [anon_sym_NULL] = ACTIONS(3242), + [anon_sym_nullptr] = ACTIONS(3242), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3242), + [anon_sym_decltype] = ACTIONS(3242), + [anon_sym_virtual] = ACTIONS(3242), + [anon_sym_explicit] = ACTIONS(3242), + [anon_sym_typename] = ACTIONS(3242), + [anon_sym_template] = ACTIONS(3242), + [anon_sym_operator] = ACTIONS(3242), + [anon_sym_try] = ACTIONS(3242), + [anon_sym_delete] = ACTIONS(3242), + [anon_sym_throw] = ACTIONS(3242), + [anon_sym_namespace] = ACTIONS(3242), + [anon_sym_using] = ACTIONS(3242), + [anon_sym_static_assert] = ACTIONS(3242), + [anon_sym_concept] = ACTIONS(3242), + [anon_sym_co_return] = ACTIONS(3242), + [anon_sym_co_yield] = ACTIONS(3242), + [anon_sym_R_DQUOTE] = ACTIONS(3244), + [anon_sym_LR_DQUOTE] = ACTIONS(3244), + [anon_sym_uR_DQUOTE] = ACTIONS(3244), + [anon_sym_UR_DQUOTE] = ACTIONS(3244), + [anon_sym_u8R_DQUOTE] = ACTIONS(3244), + [anon_sym_co_await] = ACTIONS(3242), + [anon_sym_new] = ACTIONS(3242), + [anon_sym_requires] = ACTIONS(3242), + [sym_this] = ACTIONS(3242), }, [1248] = { - [sym_identifier] = ACTIONS(2510), - [anon_sym_LPAREN2] = ACTIONS(2512), - [anon_sym_BANG] = ACTIONS(2512), - [anon_sym_TILDE] = ACTIONS(2512), - [anon_sym_DASH] = ACTIONS(2510), - [anon_sym_PLUS] = ACTIONS(2510), - [anon_sym_STAR] = ACTIONS(2512), - [anon_sym_AMP] = ACTIONS(2512), - [anon_sym_SEMI] = ACTIONS(2512), - [anon_sym_typedef] = ACTIONS(2510), - [anon_sym_extern] = ACTIONS(2510), - [anon_sym___attribute__] = ACTIONS(2510), - [anon_sym_COLON_COLON] = ACTIONS(2512), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2512), - [anon_sym___declspec] = ACTIONS(2510), - [anon_sym_LBRACE] = ACTIONS(2512), - [anon_sym_LBRACK] = ACTIONS(2510), - [anon_sym_static] = ACTIONS(2510), - [anon_sym_register] = ACTIONS(2510), - [anon_sym_inline] = ACTIONS(2510), - [anon_sym_thread_local] = ACTIONS(2510), - [anon_sym_const] = ACTIONS(2510), - [anon_sym_volatile] = ACTIONS(2510), - [anon_sym_restrict] = ACTIONS(2510), - [anon_sym__Atomic] = ACTIONS(2510), - [anon_sym_mutable] = ACTIONS(2510), - [anon_sym_constexpr] = ACTIONS(2510), - [anon_sym_constinit] = ACTIONS(2510), - [anon_sym_consteval] = ACTIONS(2510), - [anon_sym_signed] = ACTIONS(2510), - [anon_sym_unsigned] = ACTIONS(2510), - [anon_sym_long] = ACTIONS(2510), - [anon_sym_short] = ACTIONS(2510), - [sym_primitive_type] = ACTIONS(2510), - [anon_sym_enum] = ACTIONS(2510), - [anon_sym_class] = ACTIONS(2510), - [anon_sym_struct] = ACTIONS(2510), - [anon_sym_union] = ACTIONS(2510), - [anon_sym_if] = ACTIONS(2510), - [anon_sym_else] = ACTIONS(2510), - [anon_sym_switch] = ACTIONS(2510), - [anon_sym_while] = ACTIONS(2510), - [anon_sym_do] = ACTIONS(2510), - [anon_sym_for] = ACTIONS(2510), - [anon_sym_return] = ACTIONS(2510), - [anon_sym_break] = ACTIONS(2510), - [anon_sym_continue] = ACTIONS(2510), - [anon_sym_goto] = ACTIONS(2510), - [anon_sym_not] = ACTIONS(2510), - [anon_sym_compl] = ACTIONS(2510), - [anon_sym_DASH_DASH] = ACTIONS(2512), - [anon_sym_PLUS_PLUS] = ACTIONS(2512), - [anon_sym_sizeof] = ACTIONS(2510), - [sym_number_literal] = ACTIONS(2512), - [anon_sym_L_SQUOTE] = ACTIONS(2512), - [anon_sym_u_SQUOTE] = ACTIONS(2512), - [anon_sym_U_SQUOTE] = ACTIONS(2512), - [anon_sym_u8_SQUOTE] = ACTIONS(2512), - [anon_sym_SQUOTE] = ACTIONS(2512), - [anon_sym_L_DQUOTE] = ACTIONS(2512), - [anon_sym_u_DQUOTE] = ACTIONS(2512), - [anon_sym_U_DQUOTE] = ACTIONS(2512), - [anon_sym_u8_DQUOTE] = ACTIONS(2512), - [anon_sym_DQUOTE] = ACTIONS(2512), - [sym_true] = ACTIONS(2510), - [sym_false] = ACTIONS(2510), - [sym_null] = ACTIONS(2510), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2510), - [anon_sym_decltype] = ACTIONS(2510), - [anon_sym_virtual] = ACTIONS(2510), - [anon_sym_typename] = ACTIONS(2510), - [anon_sym_template] = ACTIONS(2510), - [anon_sym_try] = ACTIONS(2510), - [anon_sym_delete] = ACTIONS(2510), - [anon_sym_throw] = ACTIONS(2510), - [anon_sym_co_return] = ACTIONS(2510), - [anon_sym_co_yield] = ACTIONS(2510), - [anon_sym_R_DQUOTE] = ACTIONS(2512), - [anon_sym_LR_DQUOTE] = ACTIONS(2512), - [anon_sym_uR_DQUOTE] = ACTIONS(2512), - [anon_sym_UR_DQUOTE] = ACTIONS(2512), - [anon_sym_u8R_DQUOTE] = ACTIONS(2512), - [anon_sym_co_await] = ACTIONS(2510), - [anon_sym_new] = ACTIONS(2510), - [anon_sym_requires] = ACTIONS(2510), - [sym_this] = ACTIONS(2510), - [sym_nullptr] = ACTIONS(2510), + [sym_identifier] = ACTIONS(3242), + [aux_sym_preproc_include_token1] = ACTIONS(3242), + [aux_sym_preproc_def_token1] = ACTIONS(3242), + [aux_sym_preproc_if_token1] = ACTIONS(3242), + [aux_sym_preproc_if_token2] = ACTIONS(3242), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3242), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3242), + [sym_preproc_directive] = ACTIONS(3242), + [anon_sym_LPAREN2] = ACTIONS(3244), + [anon_sym_BANG] = ACTIONS(3244), + [anon_sym_TILDE] = ACTIONS(3244), + [anon_sym_DASH] = ACTIONS(3242), + [anon_sym_PLUS] = ACTIONS(3242), + [anon_sym_STAR] = ACTIONS(3244), + [anon_sym_AMP_AMP] = ACTIONS(3244), + [anon_sym_AMP] = ACTIONS(3242), + [anon_sym_SEMI] = ACTIONS(3244), + [anon_sym_typedef] = ACTIONS(3242), + [anon_sym_extern] = ACTIONS(3242), + [anon_sym___attribute__] = ACTIONS(3242), + [anon_sym_COLON_COLON] = ACTIONS(3244), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3244), + [anon_sym___declspec] = ACTIONS(3242), + [anon_sym___based] = ACTIONS(3242), + [anon_sym___cdecl] = ACTIONS(3242), + [anon_sym___clrcall] = ACTIONS(3242), + [anon_sym___stdcall] = ACTIONS(3242), + [anon_sym___fastcall] = ACTIONS(3242), + [anon_sym___thiscall] = ACTIONS(3242), + [anon_sym___vectorcall] = ACTIONS(3242), + [anon_sym_LBRACE] = ACTIONS(3244), + [anon_sym_LBRACK] = ACTIONS(3242), + [anon_sym_static] = ACTIONS(3242), + [anon_sym_register] = ACTIONS(3242), + [anon_sym_inline] = ACTIONS(3242), + [anon_sym_thread_local] = ACTIONS(3242), + [anon_sym_const] = ACTIONS(3242), + [anon_sym_constexpr] = ACTIONS(3242), + [anon_sym_volatile] = ACTIONS(3242), + [anon_sym_restrict] = ACTIONS(3242), + [anon_sym___restrict__] = ACTIONS(3242), + [anon_sym__Atomic] = ACTIONS(3242), + [anon_sym__Noreturn] = ACTIONS(3242), + [anon_sym_noreturn] = ACTIONS(3242), + [anon_sym_mutable] = ACTIONS(3242), + [anon_sym_constinit] = ACTIONS(3242), + [anon_sym_consteval] = ACTIONS(3242), + [anon_sym_signed] = ACTIONS(3242), + [anon_sym_unsigned] = ACTIONS(3242), + [anon_sym_long] = ACTIONS(3242), + [anon_sym_short] = ACTIONS(3242), + [sym_primitive_type] = ACTIONS(3242), + [anon_sym_enum] = ACTIONS(3242), + [anon_sym_class] = ACTIONS(3242), + [anon_sym_struct] = ACTIONS(3242), + [anon_sym_union] = ACTIONS(3242), + [anon_sym_if] = ACTIONS(3242), + [anon_sym_switch] = ACTIONS(3242), + [anon_sym_case] = ACTIONS(3242), + [anon_sym_default] = ACTIONS(3242), + [anon_sym_while] = ACTIONS(3242), + [anon_sym_do] = ACTIONS(3242), + [anon_sym_for] = ACTIONS(3242), + [anon_sym_return] = ACTIONS(3242), + [anon_sym_break] = ACTIONS(3242), + [anon_sym_continue] = ACTIONS(3242), + [anon_sym_goto] = ACTIONS(3242), + [anon_sym_not] = ACTIONS(3242), + [anon_sym_compl] = ACTIONS(3242), + [anon_sym_DASH_DASH] = ACTIONS(3244), + [anon_sym_PLUS_PLUS] = ACTIONS(3244), + [anon_sym_sizeof] = ACTIONS(3242), + [anon_sym_offsetof] = ACTIONS(3242), + [anon_sym__Generic] = ACTIONS(3242), + [anon_sym_asm] = ACTIONS(3242), + [anon_sym___asm__] = ACTIONS(3242), + [sym_number_literal] = ACTIONS(3244), + [anon_sym_L_SQUOTE] = ACTIONS(3244), + [anon_sym_u_SQUOTE] = ACTIONS(3244), + [anon_sym_U_SQUOTE] = ACTIONS(3244), + [anon_sym_u8_SQUOTE] = ACTIONS(3244), + [anon_sym_SQUOTE] = ACTIONS(3244), + [anon_sym_L_DQUOTE] = ACTIONS(3244), + [anon_sym_u_DQUOTE] = ACTIONS(3244), + [anon_sym_U_DQUOTE] = ACTIONS(3244), + [anon_sym_u8_DQUOTE] = ACTIONS(3244), + [anon_sym_DQUOTE] = ACTIONS(3244), + [sym_true] = ACTIONS(3242), + [sym_false] = ACTIONS(3242), + [anon_sym_NULL] = ACTIONS(3242), + [anon_sym_nullptr] = ACTIONS(3242), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3242), + [anon_sym_decltype] = ACTIONS(3242), + [anon_sym_virtual] = ACTIONS(3242), + [anon_sym_explicit] = ACTIONS(3242), + [anon_sym_typename] = ACTIONS(3242), + [anon_sym_template] = ACTIONS(3242), + [anon_sym_operator] = ACTIONS(3242), + [anon_sym_try] = ACTIONS(3242), + [anon_sym_delete] = ACTIONS(3242), + [anon_sym_throw] = ACTIONS(3242), + [anon_sym_namespace] = ACTIONS(3242), + [anon_sym_using] = ACTIONS(3242), + [anon_sym_static_assert] = ACTIONS(3242), + [anon_sym_concept] = ACTIONS(3242), + [anon_sym_co_return] = ACTIONS(3242), + [anon_sym_co_yield] = ACTIONS(3242), + [anon_sym_R_DQUOTE] = ACTIONS(3244), + [anon_sym_LR_DQUOTE] = ACTIONS(3244), + [anon_sym_uR_DQUOTE] = ACTIONS(3244), + [anon_sym_UR_DQUOTE] = ACTIONS(3244), + [anon_sym_u8R_DQUOTE] = ACTIONS(3244), + [anon_sym_co_await] = ACTIONS(3242), + [anon_sym_new] = ACTIONS(3242), + [anon_sym_requires] = ACTIONS(3242), + [sym_this] = ACTIONS(3242), }, [1249] = { - [sym_identifier] = ACTIONS(2514), - [anon_sym_LPAREN2] = ACTIONS(2516), - [anon_sym_BANG] = ACTIONS(2516), - [anon_sym_TILDE] = ACTIONS(2516), - [anon_sym_DASH] = ACTIONS(2514), - [anon_sym_PLUS] = ACTIONS(2514), - [anon_sym_STAR] = ACTIONS(2516), - [anon_sym_AMP] = ACTIONS(2516), - [anon_sym_SEMI] = ACTIONS(2516), - [anon_sym_typedef] = ACTIONS(2514), - [anon_sym_extern] = ACTIONS(2514), - [anon_sym___attribute__] = ACTIONS(2514), - [anon_sym_COLON_COLON] = ACTIONS(2516), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2516), - [anon_sym___declspec] = ACTIONS(2514), - [anon_sym_LBRACE] = ACTIONS(2516), - [anon_sym_LBRACK] = ACTIONS(2514), - [anon_sym_static] = ACTIONS(2514), - [anon_sym_register] = ACTIONS(2514), - [anon_sym_inline] = ACTIONS(2514), - [anon_sym_thread_local] = ACTIONS(2514), - [anon_sym_const] = ACTIONS(2514), - [anon_sym_volatile] = ACTIONS(2514), - [anon_sym_restrict] = ACTIONS(2514), - [anon_sym__Atomic] = ACTIONS(2514), - [anon_sym_mutable] = ACTIONS(2514), - [anon_sym_constexpr] = ACTIONS(2514), - [anon_sym_constinit] = ACTIONS(2514), - [anon_sym_consteval] = ACTIONS(2514), - [anon_sym_signed] = ACTIONS(2514), - [anon_sym_unsigned] = ACTIONS(2514), - [anon_sym_long] = ACTIONS(2514), - [anon_sym_short] = ACTIONS(2514), - [sym_primitive_type] = ACTIONS(2514), - [anon_sym_enum] = ACTIONS(2514), - [anon_sym_class] = ACTIONS(2514), - [anon_sym_struct] = ACTIONS(2514), - [anon_sym_union] = ACTIONS(2514), - [anon_sym_if] = ACTIONS(2514), - [anon_sym_else] = ACTIONS(2514), - [anon_sym_switch] = ACTIONS(2514), - [anon_sym_while] = ACTIONS(2514), - [anon_sym_do] = ACTIONS(2514), - [anon_sym_for] = ACTIONS(2514), - [anon_sym_return] = ACTIONS(2514), - [anon_sym_break] = ACTIONS(2514), - [anon_sym_continue] = ACTIONS(2514), - [anon_sym_goto] = ACTIONS(2514), - [anon_sym_not] = ACTIONS(2514), - [anon_sym_compl] = ACTIONS(2514), - [anon_sym_DASH_DASH] = ACTIONS(2516), - [anon_sym_PLUS_PLUS] = ACTIONS(2516), - [anon_sym_sizeof] = ACTIONS(2514), - [sym_number_literal] = ACTIONS(2516), - [anon_sym_L_SQUOTE] = ACTIONS(2516), - [anon_sym_u_SQUOTE] = ACTIONS(2516), - [anon_sym_U_SQUOTE] = ACTIONS(2516), - [anon_sym_u8_SQUOTE] = ACTIONS(2516), - [anon_sym_SQUOTE] = ACTIONS(2516), - [anon_sym_L_DQUOTE] = ACTIONS(2516), - [anon_sym_u_DQUOTE] = ACTIONS(2516), - [anon_sym_U_DQUOTE] = ACTIONS(2516), - [anon_sym_u8_DQUOTE] = ACTIONS(2516), - [anon_sym_DQUOTE] = ACTIONS(2516), - [sym_true] = ACTIONS(2514), - [sym_false] = ACTIONS(2514), - [sym_null] = ACTIONS(2514), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2514), - [anon_sym_decltype] = ACTIONS(2514), - [anon_sym_virtual] = ACTIONS(2514), - [anon_sym_typename] = ACTIONS(2514), - [anon_sym_template] = ACTIONS(2514), - [anon_sym_try] = ACTIONS(2514), - [anon_sym_delete] = ACTIONS(2514), - [anon_sym_throw] = ACTIONS(2514), - [anon_sym_co_return] = ACTIONS(2514), - [anon_sym_co_yield] = ACTIONS(2514), - [anon_sym_R_DQUOTE] = ACTIONS(2516), - [anon_sym_LR_DQUOTE] = ACTIONS(2516), - [anon_sym_uR_DQUOTE] = ACTIONS(2516), - [anon_sym_UR_DQUOTE] = ACTIONS(2516), - [anon_sym_u8R_DQUOTE] = ACTIONS(2516), - [anon_sym_co_await] = ACTIONS(2514), - [anon_sym_new] = ACTIONS(2514), - [anon_sym_requires] = ACTIONS(2514), - [sym_this] = ACTIONS(2514), - [sym_nullptr] = ACTIONS(2514), + [sym_identifier] = ACTIONS(3172), + [aux_sym_preproc_include_token1] = ACTIONS(3172), + [aux_sym_preproc_def_token1] = ACTIONS(3172), + [aux_sym_preproc_if_token1] = ACTIONS(3172), + [aux_sym_preproc_if_token2] = ACTIONS(3172), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3172), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3172), + [sym_preproc_directive] = ACTIONS(3172), + [anon_sym_LPAREN2] = ACTIONS(3174), + [anon_sym_BANG] = ACTIONS(3174), + [anon_sym_TILDE] = ACTIONS(3174), + [anon_sym_DASH] = ACTIONS(3172), + [anon_sym_PLUS] = ACTIONS(3172), + [anon_sym_STAR] = ACTIONS(3174), + [anon_sym_AMP_AMP] = ACTIONS(3174), + [anon_sym_AMP] = ACTIONS(3172), + [anon_sym_SEMI] = ACTIONS(3174), + [anon_sym_typedef] = ACTIONS(3172), + [anon_sym_extern] = ACTIONS(3172), + [anon_sym___attribute__] = ACTIONS(3172), + [anon_sym_COLON_COLON] = ACTIONS(3174), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3174), + [anon_sym___declspec] = ACTIONS(3172), + [anon_sym___based] = ACTIONS(3172), + [anon_sym___cdecl] = ACTIONS(3172), + [anon_sym___clrcall] = ACTIONS(3172), + [anon_sym___stdcall] = ACTIONS(3172), + [anon_sym___fastcall] = ACTIONS(3172), + [anon_sym___thiscall] = ACTIONS(3172), + [anon_sym___vectorcall] = ACTIONS(3172), + [anon_sym_LBRACE] = ACTIONS(3174), + [anon_sym_LBRACK] = ACTIONS(3172), + [anon_sym_static] = ACTIONS(3172), + [anon_sym_register] = ACTIONS(3172), + [anon_sym_inline] = ACTIONS(3172), + [anon_sym_thread_local] = ACTIONS(3172), + [anon_sym_const] = ACTIONS(3172), + [anon_sym_constexpr] = ACTIONS(3172), + [anon_sym_volatile] = ACTIONS(3172), + [anon_sym_restrict] = ACTIONS(3172), + [anon_sym___restrict__] = ACTIONS(3172), + [anon_sym__Atomic] = ACTIONS(3172), + [anon_sym__Noreturn] = ACTIONS(3172), + [anon_sym_noreturn] = ACTIONS(3172), + [anon_sym_mutable] = ACTIONS(3172), + [anon_sym_constinit] = ACTIONS(3172), + [anon_sym_consteval] = ACTIONS(3172), + [anon_sym_signed] = ACTIONS(3172), + [anon_sym_unsigned] = ACTIONS(3172), + [anon_sym_long] = ACTIONS(3172), + [anon_sym_short] = ACTIONS(3172), + [sym_primitive_type] = ACTIONS(3172), + [anon_sym_enum] = ACTIONS(3172), + [anon_sym_class] = ACTIONS(3172), + [anon_sym_struct] = ACTIONS(3172), + [anon_sym_union] = ACTIONS(3172), + [anon_sym_if] = ACTIONS(3172), + [anon_sym_switch] = ACTIONS(3172), + [anon_sym_case] = ACTIONS(3172), + [anon_sym_default] = ACTIONS(3172), + [anon_sym_while] = ACTIONS(3172), + [anon_sym_do] = ACTIONS(3172), + [anon_sym_for] = ACTIONS(3172), + [anon_sym_return] = ACTIONS(3172), + [anon_sym_break] = ACTIONS(3172), + [anon_sym_continue] = ACTIONS(3172), + [anon_sym_goto] = ACTIONS(3172), + [anon_sym_not] = ACTIONS(3172), + [anon_sym_compl] = ACTIONS(3172), + [anon_sym_DASH_DASH] = ACTIONS(3174), + [anon_sym_PLUS_PLUS] = ACTIONS(3174), + [anon_sym_sizeof] = ACTIONS(3172), + [anon_sym_offsetof] = ACTIONS(3172), + [anon_sym__Generic] = ACTIONS(3172), + [anon_sym_asm] = ACTIONS(3172), + [anon_sym___asm__] = ACTIONS(3172), + [sym_number_literal] = ACTIONS(3174), + [anon_sym_L_SQUOTE] = ACTIONS(3174), + [anon_sym_u_SQUOTE] = ACTIONS(3174), + [anon_sym_U_SQUOTE] = ACTIONS(3174), + [anon_sym_u8_SQUOTE] = ACTIONS(3174), + [anon_sym_SQUOTE] = ACTIONS(3174), + [anon_sym_L_DQUOTE] = ACTIONS(3174), + [anon_sym_u_DQUOTE] = ACTIONS(3174), + [anon_sym_U_DQUOTE] = ACTIONS(3174), + [anon_sym_u8_DQUOTE] = ACTIONS(3174), + [anon_sym_DQUOTE] = ACTIONS(3174), + [sym_true] = ACTIONS(3172), + [sym_false] = ACTIONS(3172), + [anon_sym_NULL] = ACTIONS(3172), + [anon_sym_nullptr] = ACTIONS(3172), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3172), + [anon_sym_decltype] = ACTIONS(3172), + [anon_sym_virtual] = ACTIONS(3172), + [anon_sym_explicit] = ACTIONS(3172), + [anon_sym_typename] = ACTIONS(3172), + [anon_sym_template] = ACTIONS(3172), + [anon_sym_operator] = ACTIONS(3172), + [anon_sym_try] = ACTIONS(3172), + [anon_sym_delete] = ACTIONS(3172), + [anon_sym_throw] = ACTIONS(3172), + [anon_sym_namespace] = ACTIONS(3172), + [anon_sym_using] = ACTIONS(3172), + [anon_sym_static_assert] = ACTIONS(3172), + [anon_sym_concept] = ACTIONS(3172), + [anon_sym_co_return] = ACTIONS(3172), + [anon_sym_co_yield] = ACTIONS(3172), + [anon_sym_R_DQUOTE] = ACTIONS(3174), + [anon_sym_LR_DQUOTE] = ACTIONS(3174), + [anon_sym_uR_DQUOTE] = ACTIONS(3174), + [anon_sym_UR_DQUOTE] = ACTIONS(3174), + [anon_sym_u8R_DQUOTE] = ACTIONS(3174), + [anon_sym_co_await] = ACTIONS(3172), + [anon_sym_new] = ACTIONS(3172), + [anon_sym_requires] = ACTIONS(3172), + [sym_this] = ACTIONS(3172), }, [1250] = { - [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_AMP] = ACTIONS(2464), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym_LBRACE] = ACTIONS(2464), - [anon_sym_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_identifier] = ACTIONS(3150), + [aux_sym_preproc_include_token1] = ACTIONS(3150), + [aux_sym_preproc_def_token1] = ACTIONS(3150), + [aux_sym_preproc_if_token1] = ACTIONS(3150), + [aux_sym_preproc_if_token2] = ACTIONS(3150), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3150), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3150), + [sym_preproc_directive] = ACTIONS(3150), + [anon_sym_LPAREN2] = ACTIONS(3152), + [anon_sym_BANG] = ACTIONS(3152), + [anon_sym_TILDE] = ACTIONS(3152), + [anon_sym_DASH] = ACTIONS(3150), + [anon_sym_PLUS] = ACTIONS(3150), + [anon_sym_STAR] = ACTIONS(3152), + [anon_sym_AMP_AMP] = ACTIONS(3152), + [anon_sym_AMP] = ACTIONS(3150), + [anon_sym_SEMI] = ACTIONS(3152), + [anon_sym_typedef] = ACTIONS(3150), + [anon_sym_extern] = ACTIONS(3150), + [anon_sym___attribute__] = ACTIONS(3150), + [anon_sym_COLON_COLON] = ACTIONS(3152), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3152), + [anon_sym___declspec] = ACTIONS(3150), + [anon_sym___based] = ACTIONS(3150), + [anon_sym___cdecl] = ACTIONS(3150), + [anon_sym___clrcall] = ACTIONS(3150), + [anon_sym___stdcall] = ACTIONS(3150), + [anon_sym___fastcall] = ACTIONS(3150), + [anon_sym___thiscall] = ACTIONS(3150), + [anon_sym___vectorcall] = ACTIONS(3150), + [anon_sym_LBRACE] = ACTIONS(3152), + [anon_sym_LBRACK] = ACTIONS(3150), + [anon_sym_static] = ACTIONS(3150), + [anon_sym_register] = ACTIONS(3150), + [anon_sym_inline] = ACTIONS(3150), + [anon_sym_thread_local] = ACTIONS(3150), + [anon_sym_const] = ACTIONS(3150), + [anon_sym_constexpr] = ACTIONS(3150), + [anon_sym_volatile] = ACTIONS(3150), + [anon_sym_restrict] = ACTIONS(3150), + [anon_sym___restrict__] = ACTIONS(3150), + [anon_sym__Atomic] = ACTIONS(3150), + [anon_sym__Noreturn] = ACTIONS(3150), + [anon_sym_noreturn] = ACTIONS(3150), + [anon_sym_mutable] = ACTIONS(3150), + [anon_sym_constinit] = ACTIONS(3150), + [anon_sym_consteval] = ACTIONS(3150), + [anon_sym_signed] = ACTIONS(3150), + [anon_sym_unsigned] = ACTIONS(3150), + [anon_sym_long] = ACTIONS(3150), + [anon_sym_short] = ACTIONS(3150), + [sym_primitive_type] = ACTIONS(3150), + [anon_sym_enum] = ACTIONS(3150), + [anon_sym_class] = ACTIONS(3150), + [anon_sym_struct] = ACTIONS(3150), + [anon_sym_union] = ACTIONS(3150), + [anon_sym_if] = ACTIONS(3150), + [anon_sym_switch] = ACTIONS(3150), + [anon_sym_case] = ACTIONS(3150), + [anon_sym_default] = ACTIONS(3150), + [anon_sym_while] = ACTIONS(3150), + [anon_sym_do] = ACTIONS(3150), + [anon_sym_for] = ACTIONS(3150), + [anon_sym_return] = ACTIONS(3150), + [anon_sym_break] = ACTIONS(3150), + [anon_sym_continue] = ACTIONS(3150), + [anon_sym_goto] = ACTIONS(3150), + [anon_sym_not] = ACTIONS(3150), + [anon_sym_compl] = ACTIONS(3150), + [anon_sym_DASH_DASH] = ACTIONS(3152), + [anon_sym_PLUS_PLUS] = ACTIONS(3152), + [anon_sym_sizeof] = ACTIONS(3150), + [anon_sym_offsetof] = ACTIONS(3150), + [anon_sym__Generic] = ACTIONS(3150), + [anon_sym_asm] = ACTIONS(3150), + [anon_sym___asm__] = ACTIONS(3150), + [sym_number_literal] = ACTIONS(3152), + [anon_sym_L_SQUOTE] = ACTIONS(3152), + [anon_sym_u_SQUOTE] = ACTIONS(3152), + [anon_sym_U_SQUOTE] = ACTIONS(3152), + [anon_sym_u8_SQUOTE] = ACTIONS(3152), + [anon_sym_SQUOTE] = ACTIONS(3152), + [anon_sym_L_DQUOTE] = ACTIONS(3152), + [anon_sym_u_DQUOTE] = ACTIONS(3152), + [anon_sym_U_DQUOTE] = ACTIONS(3152), + [anon_sym_u8_DQUOTE] = ACTIONS(3152), + [anon_sym_DQUOTE] = ACTIONS(3152), + [sym_true] = ACTIONS(3150), + [sym_false] = ACTIONS(3150), + [anon_sym_NULL] = ACTIONS(3150), + [anon_sym_nullptr] = ACTIONS(3150), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3150), + [anon_sym_decltype] = ACTIONS(3150), + [anon_sym_virtual] = ACTIONS(3150), + [anon_sym_explicit] = ACTIONS(3150), + [anon_sym_typename] = ACTIONS(3150), + [anon_sym_template] = ACTIONS(3150), + [anon_sym_operator] = ACTIONS(3150), + [anon_sym_try] = ACTIONS(3150), + [anon_sym_delete] = ACTIONS(3150), + [anon_sym_throw] = ACTIONS(3150), + [anon_sym_namespace] = ACTIONS(3150), + [anon_sym_using] = ACTIONS(3150), + [anon_sym_static_assert] = ACTIONS(3150), + [anon_sym_concept] = ACTIONS(3150), + [anon_sym_co_return] = ACTIONS(3150), + [anon_sym_co_yield] = ACTIONS(3150), + [anon_sym_R_DQUOTE] = ACTIONS(3152), + [anon_sym_LR_DQUOTE] = ACTIONS(3152), + [anon_sym_uR_DQUOTE] = ACTIONS(3152), + [anon_sym_UR_DQUOTE] = ACTIONS(3152), + [anon_sym_u8R_DQUOTE] = ACTIONS(3152), + [anon_sym_co_await] = ACTIONS(3150), + [anon_sym_new] = ACTIONS(3150), + [anon_sym_requires] = ACTIONS(3150), + [sym_this] = ACTIONS(3150), }, [1251] = { - [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_AMP] = ACTIONS(2464), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym_LBRACE] = ACTIONS(2464), - [anon_sym_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_identifier] = ACTIONS(3286), + [aux_sym_preproc_include_token1] = ACTIONS(3286), + [aux_sym_preproc_def_token1] = ACTIONS(3286), + [aux_sym_preproc_if_token1] = ACTIONS(3286), + [aux_sym_preproc_if_token2] = ACTIONS(3286), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3286), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3286), + [sym_preproc_directive] = ACTIONS(3286), + [anon_sym_LPAREN2] = ACTIONS(3288), + [anon_sym_BANG] = ACTIONS(3288), + [anon_sym_TILDE] = ACTIONS(3288), + [anon_sym_DASH] = ACTIONS(3286), + [anon_sym_PLUS] = ACTIONS(3286), + [anon_sym_STAR] = ACTIONS(3288), + [anon_sym_AMP_AMP] = ACTIONS(3288), + [anon_sym_AMP] = ACTIONS(3286), + [anon_sym_SEMI] = ACTIONS(3288), + [anon_sym_typedef] = ACTIONS(3286), + [anon_sym_extern] = ACTIONS(3286), + [anon_sym___attribute__] = ACTIONS(3286), + [anon_sym_COLON_COLON] = ACTIONS(3288), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3288), + [anon_sym___declspec] = ACTIONS(3286), + [anon_sym___based] = ACTIONS(3286), + [anon_sym___cdecl] = ACTIONS(3286), + [anon_sym___clrcall] = ACTIONS(3286), + [anon_sym___stdcall] = ACTIONS(3286), + [anon_sym___fastcall] = ACTIONS(3286), + [anon_sym___thiscall] = ACTIONS(3286), + [anon_sym___vectorcall] = ACTIONS(3286), + [anon_sym_LBRACE] = ACTIONS(3288), + [anon_sym_LBRACK] = ACTIONS(3286), + [anon_sym_static] = ACTIONS(3286), + [anon_sym_register] = ACTIONS(3286), + [anon_sym_inline] = ACTIONS(3286), + [anon_sym_thread_local] = ACTIONS(3286), + [anon_sym_const] = ACTIONS(3286), + [anon_sym_constexpr] = ACTIONS(3286), + [anon_sym_volatile] = ACTIONS(3286), + [anon_sym_restrict] = ACTIONS(3286), + [anon_sym___restrict__] = ACTIONS(3286), + [anon_sym__Atomic] = ACTIONS(3286), + [anon_sym__Noreturn] = ACTIONS(3286), + [anon_sym_noreturn] = ACTIONS(3286), + [anon_sym_mutable] = ACTIONS(3286), + [anon_sym_constinit] = ACTIONS(3286), + [anon_sym_consteval] = ACTIONS(3286), + [anon_sym_signed] = ACTIONS(3286), + [anon_sym_unsigned] = ACTIONS(3286), + [anon_sym_long] = ACTIONS(3286), + [anon_sym_short] = ACTIONS(3286), + [sym_primitive_type] = ACTIONS(3286), + [anon_sym_enum] = ACTIONS(3286), + [anon_sym_class] = ACTIONS(3286), + [anon_sym_struct] = ACTIONS(3286), + [anon_sym_union] = ACTIONS(3286), + [anon_sym_if] = ACTIONS(3286), + [anon_sym_switch] = ACTIONS(3286), + [anon_sym_case] = ACTIONS(3286), + [anon_sym_default] = ACTIONS(3286), + [anon_sym_while] = ACTIONS(3286), + [anon_sym_do] = ACTIONS(3286), + [anon_sym_for] = ACTIONS(3286), + [anon_sym_return] = ACTIONS(3286), + [anon_sym_break] = ACTIONS(3286), + [anon_sym_continue] = ACTIONS(3286), + [anon_sym_goto] = ACTIONS(3286), + [anon_sym_not] = ACTIONS(3286), + [anon_sym_compl] = ACTIONS(3286), + [anon_sym_DASH_DASH] = ACTIONS(3288), + [anon_sym_PLUS_PLUS] = ACTIONS(3288), + [anon_sym_sizeof] = ACTIONS(3286), + [anon_sym_offsetof] = ACTIONS(3286), + [anon_sym__Generic] = ACTIONS(3286), + [anon_sym_asm] = ACTIONS(3286), + [anon_sym___asm__] = ACTIONS(3286), + [sym_number_literal] = ACTIONS(3288), + [anon_sym_L_SQUOTE] = ACTIONS(3288), + [anon_sym_u_SQUOTE] = ACTIONS(3288), + [anon_sym_U_SQUOTE] = ACTIONS(3288), + [anon_sym_u8_SQUOTE] = ACTIONS(3288), + [anon_sym_SQUOTE] = ACTIONS(3288), + [anon_sym_L_DQUOTE] = ACTIONS(3288), + [anon_sym_u_DQUOTE] = ACTIONS(3288), + [anon_sym_U_DQUOTE] = ACTIONS(3288), + [anon_sym_u8_DQUOTE] = ACTIONS(3288), + [anon_sym_DQUOTE] = ACTIONS(3288), + [sym_true] = ACTIONS(3286), + [sym_false] = ACTIONS(3286), + [anon_sym_NULL] = ACTIONS(3286), + [anon_sym_nullptr] = ACTIONS(3286), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3286), + [anon_sym_decltype] = ACTIONS(3286), + [anon_sym_virtual] = ACTIONS(3286), + [anon_sym_explicit] = ACTIONS(3286), + [anon_sym_typename] = ACTIONS(3286), + [anon_sym_template] = ACTIONS(3286), + [anon_sym_operator] = ACTIONS(3286), + [anon_sym_try] = ACTIONS(3286), + [anon_sym_delete] = ACTIONS(3286), + [anon_sym_throw] = ACTIONS(3286), + [anon_sym_namespace] = ACTIONS(3286), + [anon_sym_using] = ACTIONS(3286), + [anon_sym_static_assert] = ACTIONS(3286), + [anon_sym_concept] = ACTIONS(3286), + [anon_sym_co_return] = ACTIONS(3286), + [anon_sym_co_yield] = ACTIONS(3286), + [anon_sym_R_DQUOTE] = ACTIONS(3288), + [anon_sym_LR_DQUOTE] = ACTIONS(3288), + [anon_sym_uR_DQUOTE] = ACTIONS(3288), + [anon_sym_UR_DQUOTE] = ACTIONS(3288), + [anon_sym_u8R_DQUOTE] = ACTIONS(3288), + [anon_sym_co_await] = ACTIONS(3286), + [anon_sym_new] = ACTIONS(3286), + [anon_sym_requires] = ACTIONS(3286), + [sym_this] = ACTIONS(3286), }, [1252] = { - [sym_identifier] = ACTIONS(2518), - [anon_sym_LPAREN2] = ACTIONS(2520), - [anon_sym_BANG] = ACTIONS(2520), - [anon_sym_TILDE] = ACTIONS(2520), - [anon_sym_DASH] = ACTIONS(2518), - [anon_sym_PLUS] = ACTIONS(2518), - [anon_sym_STAR] = ACTIONS(2520), - [anon_sym_AMP] = ACTIONS(2520), - [anon_sym_SEMI] = ACTIONS(2520), - [anon_sym_typedef] = ACTIONS(2518), - [anon_sym_extern] = ACTIONS(2518), - [anon_sym___attribute__] = ACTIONS(2518), - [anon_sym_COLON_COLON] = ACTIONS(2520), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2520), - [anon_sym___declspec] = ACTIONS(2518), - [anon_sym_LBRACE] = ACTIONS(2520), - [anon_sym_LBRACK] = ACTIONS(2518), - [anon_sym_static] = ACTIONS(2518), - [anon_sym_register] = ACTIONS(2518), - [anon_sym_inline] = ACTIONS(2518), - [anon_sym_thread_local] = ACTIONS(2518), - [anon_sym_const] = ACTIONS(2518), - [anon_sym_volatile] = ACTIONS(2518), - [anon_sym_restrict] = ACTIONS(2518), - [anon_sym__Atomic] = ACTIONS(2518), - [anon_sym_mutable] = ACTIONS(2518), - [anon_sym_constexpr] = ACTIONS(2518), - [anon_sym_constinit] = ACTIONS(2518), - [anon_sym_consteval] = ACTIONS(2518), - [anon_sym_signed] = ACTIONS(2518), - [anon_sym_unsigned] = ACTIONS(2518), - [anon_sym_long] = ACTIONS(2518), - [anon_sym_short] = ACTIONS(2518), - [sym_primitive_type] = ACTIONS(2518), - [anon_sym_enum] = ACTIONS(2518), - [anon_sym_class] = ACTIONS(2518), - [anon_sym_struct] = ACTIONS(2518), - [anon_sym_union] = ACTIONS(2518), - [anon_sym_if] = ACTIONS(2518), - [anon_sym_else] = ACTIONS(2518), - [anon_sym_switch] = ACTIONS(2518), - [anon_sym_while] = ACTIONS(2518), - [anon_sym_do] = ACTIONS(2518), - [anon_sym_for] = ACTIONS(2518), - [anon_sym_return] = ACTIONS(2518), - [anon_sym_break] = ACTIONS(2518), - [anon_sym_continue] = ACTIONS(2518), - [anon_sym_goto] = ACTIONS(2518), - [anon_sym_not] = ACTIONS(2518), - [anon_sym_compl] = ACTIONS(2518), - [anon_sym_DASH_DASH] = ACTIONS(2520), - [anon_sym_PLUS_PLUS] = ACTIONS(2520), - [anon_sym_sizeof] = ACTIONS(2518), - [sym_number_literal] = ACTIONS(2520), - [anon_sym_L_SQUOTE] = ACTIONS(2520), - [anon_sym_u_SQUOTE] = ACTIONS(2520), - [anon_sym_U_SQUOTE] = ACTIONS(2520), - [anon_sym_u8_SQUOTE] = ACTIONS(2520), - [anon_sym_SQUOTE] = ACTIONS(2520), - [anon_sym_L_DQUOTE] = ACTIONS(2520), - [anon_sym_u_DQUOTE] = ACTIONS(2520), - [anon_sym_U_DQUOTE] = ACTIONS(2520), - [anon_sym_u8_DQUOTE] = ACTIONS(2520), - [anon_sym_DQUOTE] = ACTIONS(2520), - [sym_true] = ACTIONS(2518), - [sym_false] = ACTIONS(2518), - [sym_null] = ACTIONS(2518), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2518), - [anon_sym_decltype] = ACTIONS(2518), - [anon_sym_virtual] = ACTIONS(2518), - [anon_sym_typename] = ACTIONS(2518), - [anon_sym_template] = ACTIONS(2518), - [anon_sym_try] = ACTIONS(2518), - [anon_sym_delete] = ACTIONS(2518), - [anon_sym_throw] = ACTIONS(2518), - [anon_sym_co_return] = ACTIONS(2518), - [anon_sym_co_yield] = ACTIONS(2518), - [anon_sym_R_DQUOTE] = ACTIONS(2520), - [anon_sym_LR_DQUOTE] = ACTIONS(2520), - [anon_sym_uR_DQUOTE] = ACTIONS(2520), - [anon_sym_UR_DQUOTE] = ACTIONS(2520), - [anon_sym_u8R_DQUOTE] = ACTIONS(2520), - [anon_sym_co_await] = ACTIONS(2518), - [anon_sym_new] = ACTIONS(2518), - [anon_sym_requires] = ACTIONS(2518), - [sym_this] = ACTIONS(2518), - [sym_nullptr] = ACTIONS(2518), + [sym_identifier] = ACTIONS(3354), + [aux_sym_preproc_include_token1] = ACTIONS(3354), + [aux_sym_preproc_def_token1] = ACTIONS(3354), + [aux_sym_preproc_if_token1] = ACTIONS(3354), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3354), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3354), + [sym_preproc_directive] = ACTIONS(3354), + [anon_sym_LPAREN2] = ACTIONS(3356), + [anon_sym_BANG] = ACTIONS(3356), + [anon_sym_TILDE] = ACTIONS(3356), + [anon_sym_DASH] = ACTIONS(3354), + [anon_sym_PLUS] = ACTIONS(3354), + [anon_sym_STAR] = ACTIONS(3356), + [anon_sym_AMP_AMP] = ACTIONS(3356), + [anon_sym_AMP] = ACTIONS(3354), + [anon_sym_SEMI] = ACTIONS(3356), + [anon_sym_typedef] = ACTIONS(3354), + [anon_sym_extern] = ACTIONS(3354), + [anon_sym___attribute__] = ACTIONS(3354), + [anon_sym_COLON_COLON] = ACTIONS(3356), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3356), + [anon_sym___declspec] = ACTIONS(3354), + [anon_sym___based] = ACTIONS(3354), + [anon_sym___cdecl] = ACTIONS(3354), + [anon_sym___clrcall] = ACTIONS(3354), + [anon_sym___stdcall] = ACTIONS(3354), + [anon_sym___fastcall] = ACTIONS(3354), + [anon_sym___thiscall] = ACTIONS(3354), + [anon_sym___vectorcall] = ACTIONS(3354), + [anon_sym_LBRACE] = ACTIONS(3356), + [anon_sym_RBRACE] = ACTIONS(3356), + [anon_sym_LBRACK] = ACTIONS(3354), + [anon_sym_static] = ACTIONS(3354), + [anon_sym_register] = ACTIONS(3354), + [anon_sym_inline] = ACTIONS(3354), + [anon_sym_thread_local] = ACTIONS(3354), + [anon_sym_const] = ACTIONS(3354), + [anon_sym_constexpr] = ACTIONS(3354), + [anon_sym_volatile] = ACTIONS(3354), + [anon_sym_restrict] = ACTIONS(3354), + [anon_sym___restrict__] = ACTIONS(3354), + [anon_sym__Atomic] = ACTIONS(3354), + [anon_sym__Noreturn] = ACTIONS(3354), + [anon_sym_noreturn] = ACTIONS(3354), + [anon_sym_mutable] = ACTIONS(3354), + [anon_sym_constinit] = ACTIONS(3354), + [anon_sym_consteval] = ACTIONS(3354), + [anon_sym_signed] = ACTIONS(3354), + [anon_sym_unsigned] = ACTIONS(3354), + [anon_sym_long] = ACTIONS(3354), + [anon_sym_short] = ACTIONS(3354), + [sym_primitive_type] = ACTIONS(3354), + [anon_sym_enum] = ACTIONS(3354), + [anon_sym_class] = ACTIONS(3354), + [anon_sym_struct] = ACTIONS(3354), + [anon_sym_union] = ACTIONS(3354), + [anon_sym_if] = ACTIONS(3354), + [anon_sym_switch] = ACTIONS(3354), + [anon_sym_case] = ACTIONS(3354), + [anon_sym_default] = ACTIONS(3354), + [anon_sym_while] = ACTIONS(3354), + [anon_sym_do] = ACTIONS(3354), + [anon_sym_for] = ACTIONS(3354), + [anon_sym_return] = ACTIONS(3354), + [anon_sym_break] = ACTIONS(3354), + [anon_sym_continue] = ACTIONS(3354), + [anon_sym_goto] = ACTIONS(3354), + [anon_sym_not] = ACTIONS(3354), + [anon_sym_compl] = ACTIONS(3354), + [anon_sym_DASH_DASH] = ACTIONS(3356), + [anon_sym_PLUS_PLUS] = ACTIONS(3356), + [anon_sym_sizeof] = ACTIONS(3354), + [anon_sym_offsetof] = ACTIONS(3354), + [anon_sym__Generic] = ACTIONS(3354), + [anon_sym_asm] = ACTIONS(3354), + [anon_sym___asm__] = ACTIONS(3354), + [sym_number_literal] = ACTIONS(3356), + [anon_sym_L_SQUOTE] = ACTIONS(3356), + [anon_sym_u_SQUOTE] = ACTIONS(3356), + [anon_sym_U_SQUOTE] = ACTIONS(3356), + [anon_sym_u8_SQUOTE] = ACTIONS(3356), + [anon_sym_SQUOTE] = ACTIONS(3356), + [anon_sym_L_DQUOTE] = ACTIONS(3356), + [anon_sym_u_DQUOTE] = ACTIONS(3356), + [anon_sym_U_DQUOTE] = ACTIONS(3356), + [anon_sym_u8_DQUOTE] = ACTIONS(3356), + [anon_sym_DQUOTE] = ACTIONS(3356), + [sym_true] = ACTIONS(3354), + [sym_false] = ACTIONS(3354), + [anon_sym_NULL] = ACTIONS(3354), + [anon_sym_nullptr] = ACTIONS(3354), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3354), + [anon_sym_decltype] = ACTIONS(3354), + [anon_sym_virtual] = ACTIONS(3354), + [anon_sym_explicit] = ACTIONS(3354), + [anon_sym_typename] = ACTIONS(3354), + [anon_sym_template] = ACTIONS(3354), + [anon_sym_operator] = ACTIONS(3354), + [anon_sym_try] = ACTIONS(3354), + [anon_sym_delete] = ACTIONS(3354), + [anon_sym_throw] = ACTIONS(3354), + [anon_sym_namespace] = ACTIONS(3354), + [anon_sym_using] = ACTIONS(3354), + [anon_sym_static_assert] = ACTIONS(3354), + [anon_sym_concept] = ACTIONS(3354), + [anon_sym_co_return] = ACTIONS(3354), + [anon_sym_co_yield] = ACTIONS(3354), + [anon_sym_R_DQUOTE] = ACTIONS(3356), + [anon_sym_LR_DQUOTE] = ACTIONS(3356), + [anon_sym_uR_DQUOTE] = ACTIONS(3356), + [anon_sym_UR_DQUOTE] = ACTIONS(3356), + [anon_sym_u8R_DQUOTE] = ACTIONS(3356), + [anon_sym_co_await] = ACTIONS(3354), + [anon_sym_new] = ACTIONS(3354), + [anon_sym_requires] = ACTIONS(3354), + [sym_this] = ACTIONS(3354), }, [1253] = { - [sym_identifier] = ACTIONS(2526), - [anon_sym_LPAREN2] = ACTIONS(2528), - [anon_sym_BANG] = ACTIONS(2528), - [anon_sym_TILDE] = ACTIONS(2528), - [anon_sym_DASH] = ACTIONS(2526), - [anon_sym_PLUS] = ACTIONS(2526), - [anon_sym_STAR] = ACTIONS(2528), - [anon_sym_AMP] = ACTIONS(2528), - [anon_sym_SEMI] = ACTIONS(2528), - [anon_sym_typedef] = ACTIONS(2526), - [anon_sym_extern] = ACTIONS(2526), - [anon_sym___attribute__] = ACTIONS(2526), - [anon_sym_COLON_COLON] = ACTIONS(2528), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2528), - [anon_sym___declspec] = ACTIONS(2526), - [anon_sym_LBRACE] = ACTIONS(2528), - [anon_sym_LBRACK] = ACTIONS(2526), - [anon_sym_static] = ACTIONS(2526), - [anon_sym_register] = ACTIONS(2526), - [anon_sym_inline] = ACTIONS(2526), - [anon_sym_thread_local] = ACTIONS(2526), - [anon_sym_const] = ACTIONS(2526), - [anon_sym_volatile] = ACTIONS(2526), - [anon_sym_restrict] = ACTIONS(2526), - [anon_sym__Atomic] = ACTIONS(2526), - [anon_sym_mutable] = ACTIONS(2526), - [anon_sym_constexpr] = ACTIONS(2526), - [anon_sym_constinit] = ACTIONS(2526), - [anon_sym_consteval] = ACTIONS(2526), - [anon_sym_signed] = ACTIONS(2526), - [anon_sym_unsigned] = ACTIONS(2526), - [anon_sym_long] = ACTIONS(2526), - [anon_sym_short] = ACTIONS(2526), - [sym_primitive_type] = ACTIONS(2526), - [anon_sym_enum] = ACTIONS(2526), - [anon_sym_class] = ACTIONS(2526), - [anon_sym_struct] = ACTIONS(2526), - [anon_sym_union] = ACTIONS(2526), - [anon_sym_if] = ACTIONS(2526), - [anon_sym_else] = ACTIONS(2526), - [anon_sym_switch] = ACTIONS(2526), - [anon_sym_while] = ACTIONS(2526), - [anon_sym_do] = ACTIONS(2526), - [anon_sym_for] = ACTIONS(2526), - [anon_sym_return] = ACTIONS(2526), - [anon_sym_break] = ACTIONS(2526), - [anon_sym_continue] = ACTIONS(2526), - [anon_sym_goto] = ACTIONS(2526), - [anon_sym_not] = ACTIONS(2526), - [anon_sym_compl] = ACTIONS(2526), - [anon_sym_DASH_DASH] = ACTIONS(2528), - [anon_sym_PLUS_PLUS] = ACTIONS(2528), - [anon_sym_sizeof] = ACTIONS(2526), - [sym_number_literal] = ACTIONS(2528), - [anon_sym_L_SQUOTE] = ACTIONS(2528), - [anon_sym_u_SQUOTE] = ACTIONS(2528), - [anon_sym_U_SQUOTE] = ACTIONS(2528), - [anon_sym_u8_SQUOTE] = ACTIONS(2528), - [anon_sym_SQUOTE] = ACTIONS(2528), - [anon_sym_L_DQUOTE] = ACTIONS(2528), - [anon_sym_u_DQUOTE] = ACTIONS(2528), - [anon_sym_U_DQUOTE] = ACTIONS(2528), - [anon_sym_u8_DQUOTE] = ACTIONS(2528), - [anon_sym_DQUOTE] = ACTIONS(2528), - [sym_true] = ACTIONS(2526), - [sym_false] = ACTIONS(2526), - [sym_null] = ACTIONS(2526), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2526), - [anon_sym_decltype] = ACTIONS(2526), - [anon_sym_virtual] = ACTIONS(2526), - [anon_sym_typename] = ACTIONS(2526), - [anon_sym_template] = ACTIONS(2526), - [anon_sym_try] = ACTIONS(2526), - [anon_sym_delete] = ACTIONS(2526), - [anon_sym_throw] = ACTIONS(2526), - [anon_sym_co_return] = ACTIONS(2526), - [anon_sym_co_yield] = ACTIONS(2526), - [anon_sym_R_DQUOTE] = ACTIONS(2528), - [anon_sym_LR_DQUOTE] = ACTIONS(2528), - [anon_sym_uR_DQUOTE] = ACTIONS(2528), - [anon_sym_UR_DQUOTE] = ACTIONS(2528), - [anon_sym_u8R_DQUOTE] = ACTIONS(2528), - [anon_sym_co_await] = ACTIONS(2526), - [anon_sym_new] = ACTIONS(2526), - [anon_sym_requires] = ACTIONS(2526), - [sym_this] = ACTIONS(2526), - [sym_nullptr] = ACTIONS(2526), + [sym_identifier] = ACTIONS(3205), + [aux_sym_preproc_include_token1] = ACTIONS(3205), + [aux_sym_preproc_def_token1] = ACTIONS(3205), + [aux_sym_preproc_if_token1] = ACTIONS(3205), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3205), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3205), + [sym_preproc_directive] = ACTIONS(3205), + [anon_sym_LPAREN2] = ACTIONS(3207), + [anon_sym_BANG] = ACTIONS(3207), + [anon_sym_TILDE] = ACTIONS(3207), + [anon_sym_DASH] = ACTIONS(3205), + [anon_sym_PLUS] = ACTIONS(3205), + [anon_sym_STAR] = ACTIONS(3207), + [anon_sym_AMP_AMP] = ACTIONS(3207), + [anon_sym_AMP] = ACTIONS(3205), + [anon_sym_SEMI] = ACTIONS(3207), + [anon_sym_typedef] = ACTIONS(3205), + [anon_sym_extern] = ACTIONS(3205), + [anon_sym___attribute__] = ACTIONS(3205), + [anon_sym_COLON_COLON] = ACTIONS(3207), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3207), + [anon_sym___declspec] = ACTIONS(3205), + [anon_sym___based] = ACTIONS(3205), + [anon_sym___cdecl] = ACTIONS(3205), + [anon_sym___clrcall] = ACTIONS(3205), + [anon_sym___stdcall] = ACTIONS(3205), + [anon_sym___fastcall] = ACTIONS(3205), + [anon_sym___thiscall] = ACTIONS(3205), + [anon_sym___vectorcall] = ACTIONS(3205), + [anon_sym_LBRACE] = ACTIONS(3207), + [anon_sym_RBRACE] = ACTIONS(3207), + [anon_sym_LBRACK] = ACTIONS(3205), + [anon_sym_static] = ACTIONS(3205), + [anon_sym_register] = ACTIONS(3205), + [anon_sym_inline] = ACTIONS(3205), + [anon_sym_thread_local] = ACTIONS(3205), + [anon_sym_const] = ACTIONS(3205), + [anon_sym_constexpr] = ACTIONS(3205), + [anon_sym_volatile] = ACTIONS(3205), + [anon_sym_restrict] = ACTIONS(3205), + [anon_sym___restrict__] = ACTIONS(3205), + [anon_sym__Atomic] = ACTIONS(3205), + [anon_sym__Noreturn] = ACTIONS(3205), + [anon_sym_noreturn] = ACTIONS(3205), + [anon_sym_mutable] = ACTIONS(3205), + [anon_sym_constinit] = ACTIONS(3205), + [anon_sym_consteval] = ACTIONS(3205), + [anon_sym_signed] = ACTIONS(3205), + [anon_sym_unsigned] = ACTIONS(3205), + [anon_sym_long] = ACTIONS(3205), + [anon_sym_short] = ACTIONS(3205), + [sym_primitive_type] = ACTIONS(3205), + [anon_sym_enum] = ACTIONS(3205), + [anon_sym_class] = ACTIONS(3205), + [anon_sym_struct] = ACTIONS(3205), + [anon_sym_union] = ACTIONS(3205), + [anon_sym_if] = ACTIONS(3205), + [anon_sym_switch] = ACTIONS(3205), + [anon_sym_case] = ACTIONS(3205), + [anon_sym_default] = ACTIONS(3205), + [anon_sym_while] = ACTIONS(3205), + [anon_sym_do] = ACTIONS(3205), + [anon_sym_for] = ACTIONS(3205), + [anon_sym_return] = ACTIONS(3205), + [anon_sym_break] = ACTIONS(3205), + [anon_sym_continue] = ACTIONS(3205), + [anon_sym_goto] = ACTIONS(3205), + [anon_sym_not] = ACTIONS(3205), + [anon_sym_compl] = ACTIONS(3205), + [anon_sym_DASH_DASH] = ACTIONS(3207), + [anon_sym_PLUS_PLUS] = ACTIONS(3207), + [anon_sym_sizeof] = ACTIONS(3205), + [anon_sym_offsetof] = ACTIONS(3205), + [anon_sym__Generic] = ACTIONS(3205), + [anon_sym_asm] = ACTIONS(3205), + [anon_sym___asm__] = ACTIONS(3205), + [sym_number_literal] = ACTIONS(3207), + [anon_sym_L_SQUOTE] = ACTIONS(3207), + [anon_sym_u_SQUOTE] = ACTIONS(3207), + [anon_sym_U_SQUOTE] = ACTIONS(3207), + [anon_sym_u8_SQUOTE] = ACTIONS(3207), + [anon_sym_SQUOTE] = ACTIONS(3207), + [anon_sym_L_DQUOTE] = ACTIONS(3207), + [anon_sym_u_DQUOTE] = ACTIONS(3207), + [anon_sym_U_DQUOTE] = ACTIONS(3207), + [anon_sym_u8_DQUOTE] = ACTIONS(3207), + [anon_sym_DQUOTE] = ACTIONS(3207), + [sym_true] = ACTIONS(3205), + [sym_false] = ACTIONS(3205), + [anon_sym_NULL] = ACTIONS(3205), + [anon_sym_nullptr] = ACTIONS(3205), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3205), + [anon_sym_decltype] = ACTIONS(3205), + [anon_sym_virtual] = ACTIONS(3205), + [anon_sym_explicit] = ACTIONS(3205), + [anon_sym_typename] = ACTIONS(3205), + [anon_sym_template] = ACTIONS(3205), + [anon_sym_operator] = ACTIONS(3205), + [anon_sym_try] = ACTIONS(3205), + [anon_sym_delete] = ACTIONS(3205), + [anon_sym_throw] = ACTIONS(3205), + [anon_sym_namespace] = ACTIONS(3205), + [anon_sym_using] = ACTIONS(3205), + [anon_sym_static_assert] = ACTIONS(3205), + [anon_sym_concept] = ACTIONS(3205), + [anon_sym_co_return] = ACTIONS(3205), + [anon_sym_co_yield] = ACTIONS(3205), + [anon_sym_R_DQUOTE] = ACTIONS(3207), + [anon_sym_LR_DQUOTE] = ACTIONS(3207), + [anon_sym_uR_DQUOTE] = ACTIONS(3207), + [anon_sym_UR_DQUOTE] = ACTIONS(3207), + [anon_sym_u8R_DQUOTE] = ACTIONS(3207), + [anon_sym_co_await] = ACTIONS(3205), + [anon_sym_new] = ACTIONS(3205), + [anon_sym_requires] = ACTIONS(3205), + [sym_this] = ACTIONS(3205), }, [1254] = { - [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_AMP] = ACTIONS(2464), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym_LBRACE] = ACTIONS(2464), - [anon_sym_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_identifier] = ACTIONS(3308), + [aux_sym_preproc_include_token1] = ACTIONS(3308), + [aux_sym_preproc_def_token1] = ACTIONS(3308), + [aux_sym_preproc_if_token1] = ACTIONS(3308), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3308), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3308), + [sym_preproc_directive] = ACTIONS(3308), + [anon_sym_LPAREN2] = ACTIONS(3310), + [anon_sym_BANG] = ACTIONS(3310), + [anon_sym_TILDE] = ACTIONS(3310), + [anon_sym_DASH] = ACTIONS(3308), + [anon_sym_PLUS] = ACTIONS(3308), + [anon_sym_STAR] = ACTIONS(3310), + [anon_sym_AMP_AMP] = ACTIONS(3310), + [anon_sym_AMP] = ACTIONS(3308), + [anon_sym_SEMI] = ACTIONS(3310), + [anon_sym_typedef] = ACTIONS(3308), + [anon_sym_extern] = ACTIONS(3308), + [anon_sym___attribute__] = ACTIONS(3308), + [anon_sym_COLON_COLON] = ACTIONS(3310), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3310), + [anon_sym___declspec] = ACTIONS(3308), + [anon_sym___based] = ACTIONS(3308), + [anon_sym___cdecl] = ACTIONS(3308), + [anon_sym___clrcall] = ACTIONS(3308), + [anon_sym___stdcall] = ACTIONS(3308), + [anon_sym___fastcall] = ACTIONS(3308), + [anon_sym___thiscall] = ACTIONS(3308), + [anon_sym___vectorcall] = ACTIONS(3308), + [anon_sym_LBRACE] = ACTIONS(3310), + [anon_sym_RBRACE] = ACTIONS(3310), + [anon_sym_LBRACK] = ACTIONS(3308), + [anon_sym_static] = ACTIONS(3308), + [anon_sym_register] = ACTIONS(3308), + [anon_sym_inline] = ACTIONS(3308), + [anon_sym_thread_local] = ACTIONS(3308), + [anon_sym_const] = ACTIONS(3308), + [anon_sym_constexpr] = ACTIONS(3308), + [anon_sym_volatile] = ACTIONS(3308), + [anon_sym_restrict] = ACTIONS(3308), + [anon_sym___restrict__] = ACTIONS(3308), + [anon_sym__Atomic] = ACTIONS(3308), + [anon_sym__Noreturn] = ACTIONS(3308), + [anon_sym_noreturn] = ACTIONS(3308), + [anon_sym_mutable] = ACTIONS(3308), + [anon_sym_constinit] = ACTIONS(3308), + [anon_sym_consteval] = ACTIONS(3308), + [anon_sym_signed] = ACTIONS(3308), + [anon_sym_unsigned] = ACTIONS(3308), + [anon_sym_long] = ACTIONS(3308), + [anon_sym_short] = ACTIONS(3308), + [sym_primitive_type] = ACTIONS(3308), + [anon_sym_enum] = ACTIONS(3308), + [anon_sym_class] = ACTIONS(3308), + [anon_sym_struct] = ACTIONS(3308), + [anon_sym_union] = ACTIONS(3308), + [anon_sym_if] = ACTIONS(3308), + [anon_sym_switch] = ACTIONS(3308), + [anon_sym_case] = ACTIONS(3308), + [anon_sym_default] = ACTIONS(3308), + [anon_sym_while] = ACTIONS(3308), + [anon_sym_do] = ACTIONS(3308), + [anon_sym_for] = ACTIONS(3308), + [anon_sym_return] = ACTIONS(3308), + [anon_sym_break] = ACTIONS(3308), + [anon_sym_continue] = ACTIONS(3308), + [anon_sym_goto] = ACTIONS(3308), + [anon_sym_not] = ACTIONS(3308), + [anon_sym_compl] = ACTIONS(3308), + [anon_sym_DASH_DASH] = ACTIONS(3310), + [anon_sym_PLUS_PLUS] = ACTIONS(3310), + [anon_sym_sizeof] = ACTIONS(3308), + [anon_sym_offsetof] = ACTIONS(3308), + [anon_sym__Generic] = ACTIONS(3308), + [anon_sym_asm] = ACTIONS(3308), + [anon_sym___asm__] = ACTIONS(3308), + [sym_number_literal] = ACTIONS(3310), + [anon_sym_L_SQUOTE] = ACTIONS(3310), + [anon_sym_u_SQUOTE] = ACTIONS(3310), + [anon_sym_U_SQUOTE] = ACTIONS(3310), + [anon_sym_u8_SQUOTE] = ACTIONS(3310), + [anon_sym_SQUOTE] = ACTIONS(3310), + [anon_sym_L_DQUOTE] = ACTIONS(3310), + [anon_sym_u_DQUOTE] = ACTIONS(3310), + [anon_sym_U_DQUOTE] = ACTIONS(3310), + [anon_sym_u8_DQUOTE] = ACTIONS(3310), + [anon_sym_DQUOTE] = ACTIONS(3310), + [sym_true] = ACTIONS(3308), + [sym_false] = ACTIONS(3308), + [anon_sym_NULL] = ACTIONS(3308), + [anon_sym_nullptr] = ACTIONS(3308), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3308), + [anon_sym_decltype] = ACTIONS(3308), + [anon_sym_virtual] = ACTIONS(3308), + [anon_sym_explicit] = ACTIONS(3308), + [anon_sym_typename] = ACTIONS(3308), + [anon_sym_template] = ACTIONS(3308), + [anon_sym_operator] = ACTIONS(3308), + [anon_sym_try] = ACTIONS(3308), + [anon_sym_delete] = ACTIONS(3308), + [anon_sym_throw] = ACTIONS(3308), + [anon_sym_namespace] = ACTIONS(3308), + [anon_sym_using] = ACTIONS(3308), + [anon_sym_static_assert] = ACTIONS(3308), + [anon_sym_concept] = ACTIONS(3308), + [anon_sym_co_return] = ACTIONS(3308), + [anon_sym_co_yield] = ACTIONS(3308), + [anon_sym_R_DQUOTE] = ACTIONS(3310), + [anon_sym_LR_DQUOTE] = ACTIONS(3310), + [anon_sym_uR_DQUOTE] = ACTIONS(3310), + [anon_sym_UR_DQUOTE] = ACTIONS(3310), + [anon_sym_u8R_DQUOTE] = ACTIONS(3310), + [anon_sym_co_await] = ACTIONS(3308), + [anon_sym_new] = ACTIONS(3308), + [anon_sym_requires] = ACTIONS(3308), + [sym_this] = ACTIONS(3308), }, [1255] = { - [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_AMP] = ACTIONS(2464), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym_LBRACE] = ACTIONS(2464), - [anon_sym_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_identifier] = ACTIONS(3342), + [aux_sym_preproc_include_token1] = ACTIONS(3342), + [aux_sym_preproc_def_token1] = ACTIONS(3342), + [aux_sym_preproc_if_token1] = ACTIONS(3342), + [aux_sym_preproc_if_token2] = ACTIONS(3342), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3342), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3342), + [sym_preproc_directive] = ACTIONS(3342), + [anon_sym_LPAREN2] = ACTIONS(3344), + [anon_sym_BANG] = ACTIONS(3344), + [anon_sym_TILDE] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3342), + [anon_sym_PLUS] = ACTIONS(3342), + [anon_sym_STAR] = ACTIONS(3344), + [anon_sym_AMP_AMP] = ACTIONS(3344), + [anon_sym_AMP] = ACTIONS(3342), + [anon_sym_SEMI] = ACTIONS(3344), + [anon_sym_typedef] = ACTIONS(3342), + [anon_sym_extern] = ACTIONS(3342), + [anon_sym___attribute__] = ACTIONS(3342), + [anon_sym_COLON_COLON] = ACTIONS(3344), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3344), + [anon_sym___declspec] = ACTIONS(3342), + [anon_sym___based] = ACTIONS(3342), + [anon_sym___cdecl] = ACTIONS(3342), + [anon_sym___clrcall] = ACTIONS(3342), + [anon_sym___stdcall] = ACTIONS(3342), + [anon_sym___fastcall] = ACTIONS(3342), + [anon_sym___thiscall] = ACTIONS(3342), + [anon_sym___vectorcall] = ACTIONS(3342), + [anon_sym_LBRACE] = ACTIONS(3344), + [anon_sym_LBRACK] = ACTIONS(3342), + [anon_sym_static] = ACTIONS(3342), + [anon_sym_register] = ACTIONS(3342), + [anon_sym_inline] = ACTIONS(3342), + [anon_sym_thread_local] = ACTIONS(3342), + [anon_sym_const] = ACTIONS(3342), + [anon_sym_constexpr] = ACTIONS(3342), + [anon_sym_volatile] = ACTIONS(3342), + [anon_sym_restrict] = ACTIONS(3342), + [anon_sym___restrict__] = ACTIONS(3342), + [anon_sym__Atomic] = ACTIONS(3342), + [anon_sym__Noreturn] = ACTIONS(3342), + [anon_sym_noreturn] = ACTIONS(3342), + [anon_sym_mutable] = ACTIONS(3342), + [anon_sym_constinit] = ACTIONS(3342), + [anon_sym_consteval] = ACTIONS(3342), + [anon_sym_signed] = ACTIONS(3342), + [anon_sym_unsigned] = ACTIONS(3342), + [anon_sym_long] = ACTIONS(3342), + [anon_sym_short] = ACTIONS(3342), + [sym_primitive_type] = ACTIONS(3342), + [anon_sym_enum] = ACTIONS(3342), + [anon_sym_class] = ACTIONS(3342), + [anon_sym_struct] = ACTIONS(3342), + [anon_sym_union] = ACTIONS(3342), + [anon_sym_if] = ACTIONS(3342), + [anon_sym_switch] = ACTIONS(3342), + [anon_sym_case] = ACTIONS(3342), + [anon_sym_default] = ACTIONS(3342), + [anon_sym_while] = ACTIONS(3342), + [anon_sym_do] = ACTIONS(3342), + [anon_sym_for] = ACTIONS(3342), + [anon_sym_return] = ACTIONS(3342), + [anon_sym_break] = ACTIONS(3342), + [anon_sym_continue] = ACTIONS(3342), + [anon_sym_goto] = ACTIONS(3342), + [anon_sym_not] = ACTIONS(3342), + [anon_sym_compl] = ACTIONS(3342), + [anon_sym_DASH_DASH] = ACTIONS(3344), + [anon_sym_PLUS_PLUS] = ACTIONS(3344), + [anon_sym_sizeof] = ACTIONS(3342), + [anon_sym_offsetof] = ACTIONS(3342), + [anon_sym__Generic] = ACTIONS(3342), + [anon_sym_asm] = ACTIONS(3342), + [anon_sym___asm__] = ACTIONS(3342), + [sym_number_literal] = ACTIONS(3344), + [anon_sym_L_SQUOTE] = ACTIONS(3344), + [anon_sym_u_SQUOTE] = ACTIONS(3344), + [anon_sym_U_SQUOTE] = ACTIONS(3344), + [anon_sym_u8_SQUOTE] = ACTIONS(3344), + [anon_sym_SQUOTE] = ACTIONS(3344), + [anon_sym_L_DQUOTE] = ACTIONS(3344), + [anon_sym_u_DQUOTE] = ACTIONS(3344), + [anon_sym_U_DQUOTE] = ACTIONS(3344), + [anon_sym_u8_DQUOTE] = ACTIONS(3344), + [anon_sym_DQUOTE] = ACTIONS(3344), + [sym_true] = ACTIONS(3342), + [sym_false] = ACTIONS(3342), + [anon_sym_NULL] = ACTIONS(3342), + [anon_sym_nullptr] = ACTIONS(3342), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3342), + [anon_sym_decltype] = ACTIONS(3342), + [anon_sym_virtual] = ACTIONS(3342), + [anon_sym_explicit] = ACTIONS(3342), + [anon_sym_typename] = ACTIONS(3342), + [anon_sym_template] = ACTIONS(3342), + [anon_sym_operator] = ACTIONS(3342), + [anon_sym_try] = ACTIONS(3342), + [anon_sym_delete] = ACTIONS(3342), + [anon_sym_throw] = ACTIONS(3342), + [anon_sym_namespace] = ACTIONS(3342), + [anon_sym_using] = ACTIONS(3342), + [anon_sym_static_assert] = ACTIONS(3342), + [anon_sym_concept] = ACTIONS(3342), + [anon_sym_co_return] = ACTIONS(3342), + [anon_sym_co_yield] = ACTIONS(3342), + [anon_sym_R_DQUOTE] = ACTIONS(3344), + [anon_sym_LR_DQUOTE] = ACTIONS(3344), + [anon_sym_uR_DQUOTE] = ACTIONS(3344), + [anon_sym_UR_DQUOTE] = ACTIONS(3344), + [anon_sym_u8R_DQUOTE] = ACTIONS(3344), + [anon_sym_co_await] = ACTIONS(3342), + [anon_sym_new] = ACTIONS(3342), + [anon_sym_requires] = ACTIONS(3342), + [sym_this] = ACTIONS(3342), }, [1256] = { - [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_AMP] = ACTIONS(2550), - [anon_sym_SEMI] = ACTIONS(2550), - [anon_sym_typedef] = ACTIONS(2548), - [anon_sym_extern] = ACTIONS(2548), - [anon_sym___attribute__] = ACTIONS(2548), - [anon_sym_COLON_COLON] = ACTIONS(2550), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2550), - [anon_sym___declspec] = ACTIONS(2548), - [anon_sym_LBRACE] = ACTIONS(2550), - [anon_sym_LBRACK] = ACTIONS(2548), - [anon_sym_static] = ACTIONS(2548), - [anon_sym_register] = ACTIONS(2548), - [anon_sym_inline] = ACTIONS(2548), - [anon_sym_thread_local] = ACTIONS(2548), - [anon_sym_const] = ACTIONS(2548), - [anon_sym_volatile] = ACTIONS(2548), - [anon_sym_restrict] = ACTIONS(2548), - [anon_sym__Atomic] = ACTIONS(2548), - [anon_sym_mutable] = ACTIONS(2548), - [anon_sym_constexpr] = ACTIONS(2548), - [anon_sym_constinit] = ACTIONS(2548), - [anon_sym_consteval] = ACTIONS(2548), - [anon_sym_signed] = ACTIONS(2548), - [anon_sym_unsigned] = ACTIONS(2548), - [anon_sym_long] = ACTIONS(2548), - [anon_sym_short] = ACTIONS(2548), - [sym_primitive_type] = ACTIONS(2548), - [anon_sym_enum] = ACTIONS(2548), - [anon_sym_class] = 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_return] = ACTIONS(2548), - [anon_sym_break] = ACTIONS(2548), - [anon_sym_continue] = ACTIONS(2548), - [anon_sym_goto] = ACTIONS(2548), - [anon_sym_not] = ACTIONS(2548), - [anon_sym_compl] = ACTIONS(2548), - [anon_sym_DASH_DASH] = ACTIONS(2550), - [anon_sym_PLUS_PLUS] = ACTIONS(2550), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2550), - [anon_sym_u_DQUOTE] = ACTIONS(2550), - [anon_sym_U_DQUOTE] = ACTIONS(2550), - [anon_sym_u8_DQUOTE] = ACTIONS(2550), - [anon_sym_DQUOTE] = ACTIONS(2550), - [sym_true] = ACTIONS(2548), - [sym_false] = ACTIONS(2548), - [sym_null] = ACTIONS(2548), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2548), - [anon_sym_decltype] = ACTIONS(2548), - [anon_sym_virtual] = ACTIONS(2548), - [anon_sym_typename] = ACTIONS(2548), - [anon_sym_template] = ACTIONS(2548), - [anon_sym_try] = ACTIONS(2548), - [anon_sym_delete] = ACTIONS(2548), - [anon_sym_throw] = ACTIONS(2548), - [anon_sym_co_return] = ACTIONS(2548), - [anon_sym_co_yield] = ACTIONS(2548), - [anon_sym_R_DQUOTE] = ACTIONS(2550), - [anon_sym_LR_DQUOTE] = ACTIONS(2550), - [anon_sym_uR_DQUOTE] = ACTIONS(2550), - [anon_sym_UR_DQUOTE] = ACTIONS(2550), - [anon_sym_u8R_DQUOTE] = ACTIONS(2550), - [anon_sym_co_await] = ACTIONS(2548), - [anon_sym_new] = ACTIONS(2548), - [anon_sym_requires] = ACTIONS(2548), - [sym_this] = ACTIONS(2548), - [sym_nullptr] = ACTIONS(2548), + [sym_identifier] = ACTIONS(3429), + [aux_sym_preproc_include_token1] = ACTIONS(3429), + [aux_sym_preproc_def_token1] = ACTIONS(3429), + [aux_sym_preproc_if_token1] = ACTIONS(3429), + [aux_sym_preproc_if_token2] = ACTIONS(3429), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3429), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3429), + [sym_preproc_directive] = ACTIONS(3429), + [anon_sym_LPAREN2] = ACTIONS(3431), + [anon_sym_BANG] = ACTIONS(3431), + [anon_sym_TILDE] = ACTIONS(3431), + [anon_sym_DASH] = ACTIONS(3429), + [anon_sym_PLUS] = ACTIONS(3429), + [anon_sym_STAR] = ACTIONS(3431), + [anon_sym_AMP_AMP] = ACTIONS(3431), + [anon_sym_AMP] = ACTIONS(3429), + [anon_sym_SEMI] = ACTIONS(3431), + [anon_sym_typedef] = ACTIONS(3429), + [anon_sym_extern] = ACTIONS(3429), + [anon_sym___attribute__] = ACTIONS(3429), + [anon_sym_COLON_COLON] = ACTIONS(3431), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3431), + [anon_sym___declspec] = ACTIONS(3429), + [anon_sym___based] = ACTIONS(3429), + [anon_sym___cdecl] = ACTIONS(3429), + [anon_sym___clrcall] = ACTIONS(3429), + [anon_sym___stdcall] = ACTIONS(3429), + [anon_sym___fastcall] = ACTIONS(3429), + [anon_sym___thiscall] = ACTIONS(3429), + [anon_sym___vectorcall] = ACTIONS(3429), + [anon_sym_LBRACE] = ACTIONS(3431), + [anon_sym_LBRACK] = ACTIONS(3429), + [anon_sym_static] = ACTIONS(3429), + [anon_sym_register] = ACTIONS(3429), + [anon_sym_inline] = ACTIONS(3429), + [anon_sym_thread_local] = ACTIONS(3429), + [anon_sym_const] = ACTIONS(3429), + [anon_sym_constexpr] = ACTIONS(3429), + [anon_sym_volatile] = ACTIONS(3429), + [anon_sym_restrict] = ACTIONS(3429), + [anon_sym___restrict__] = ACTIONS(3429), + [anon_sym__Atomic] = ACTIONS(3429), + [anon_sym__Noreturn] = ACTIONS(3429), + [anon_sym_noreturn] = ACTIONS(3429), + [anon_sym_mutable] = ACTIONS(3429), + [anon_sym_constinit] = ACTIONS(3429), + [anon_sym_consteval] = ACTIONS(3429), + [anon_sym_signed] = ACTIONS(3429), + [anon_sym_unsigned] = ACTIONS(3429), + [anon_sym_long] = ACTIONS(3429), + [anon_sym_short] = ACTIONS(3429), + [sym_primitive_type] = ACTIONS(3429), + [anon_sym_enum] = ACTIONS(3429), + [anon_sym_class] = ACTIONS(3429), + [anon_sym_struct] = ACTIONS(3429), + [anon_sym_union] = ACTIONS(3429), + [anon_sym_if] = ACTIONS(3429), + [anon_sym_switch] = ACTIONS(3429), + [anon_sym_case] = ACTIONS(3429), + [anon_sym_default] = ACTIONS(3429), + [anon_sym_while] = ACTIONS(3429), + [anon_sym_do] = ACTIONS(3429), + [anon_sym_for] = ACTIONS(3429), + [anon_sym_return] = ACTIONS(3429), + [anon_sym_break] = ACTIONS(3429), + [anon_sym_continue] = ACTIONS(3429), + [anon_sym_goto] = ACTIONS(3429), + [anon_sym_not] = ACTIONS(3429), + [anon_sym_compl] = ACTIONS(3429), + [anon_sym_DASH_DASH] = ACTIONS(3431), + [anon_sym_PLUS_PLUS] = ACTIONS(3431), + [anon_sym_sizeof] = ACTIONS(3429), + [anon_sym_offsetof] = ACTIONS(3429), + [anon_sym__Generic] = ACTIONS(3429), + [anon_sym_asm] = ACTIONS(3429), + [anon_sym___asm__] = ACTIONS(3429), + [sym_number_literal] = ACTIONS(3431), + [anon_sym_L_SQUOTE] = ACTIONS(3431), + [anon_sym_u_SQUOTE] = ACTIONS(3431), + [anon_sym_U_SQUOTE] = ACTIONS(3431), + [anon_sym_u8_SQUOTE] = ACTIONS(3431), + [anon_sym_SQUOTE] = ACTIONS(3431), + [anon_sym_L_DQUOTE] = ACTIONS(3431), + [anon_sym_u_DQUOTE] = ACTIONS(3431), + [anon_sym_U_DQUOTE] = ACTIONS(3431), + [anon_sym_u8_DQUOTE] = ACTIONS(3431), + [anon_sym_DQUOTE] = ACTIONS(3431), + [sym_true] = ACTIONS(3429), + [sym_false] = ACTIONS(3429), + [anon_sym_NULL] = ACTIONS(3429), + [anon_sym_nullptr] = ACTIONS(3429), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3429), + [anon_sym_decltype] = ACTIONS(3429), + [anon_sym_virtual] = ACTIONS(3429), + [anon_sym_explicit] = ACTIONS(3429), + [anon_sym_typename] = ACTIONS(3429), + [anon_sym_template] = ACTIONS(3429), + [anon_sym_operator] = ACTIONS(3429), + [anon_sym_try] = ACTIONS(3429), + [anon_sym_delete] = ACTIONS(3429), + [anon_sym_throw] = ACTIONS(3429), + [anon_sym_namespace] = ACTIONS(3429), + [anon_sym_using] = ACTIONS(3429), + [anon_sym_static_assert] = ACTIONS(3429), + [anon_sym_concept] = ACTIONS(3429), + [anon_sym_co_return] = ACTIONS(3429), + [anon_sym_co_yield] = ACTIONS(3429), + [anon_sym_R_DQUOTE] = ACTIONS(3431), + [anon_sym_LR_DQUOTE] = ACTIONS(3431), + [anon_sym_uR_DQUOTE] = ACTIONS(3431), + [anon_sym_UR_DQUOTE] = ACTIONS(3431), + [anon_sym_u8R_DQUOTE] = ACTIONS(3431), + [anon_sym_co_await] = ACTIONS(3429), + [anon_sym_new] = ACTIONS(3429), + [anon_sym_requires] = ACTIONS(3429), + [sym_this] = ACTIONS(3429), }, [1257] = { - [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_AMP] = ACTIONS(2554), - [anon_sym_SEMI] = ACTIONS(2554), - [anon_sym_typedef] = ACTIONS(2552), - [anon_sym_extern] = ACTIONS(2552), - [anon_sym___attribute__] = ACTIONS(2552), - [anon_sym_COLON_COLON] = ACTIONS(2554), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2554), - [anon_sym___declspec] = ACTIONS(2552), - [anon_sym_LBRACE] = ACTIONS(2554), - [anon_sym_LBRACK] = ACTIONS(2552), - [anon_sym_static] = ACTIONS(2552), - [anon_sym_register] = ACTIONS(2552), - [anon_sym_inline] = ACTIONS(2552), - [anon_sym_thread_local] = ACTIONS(2552), - [anon_sym_const] = ACTIONS(2552), - [anon_sym_volatile] = ACTIONS(2552), - [anon_sym_restrict] = ACTIONS(2552), - [anon_sym__Atomic] = ACTIONS(2552), - [anon_sym_mutable] = ACTIONS(2552), - [anon_sym_constexpr] = ACTIONS(2552), - [anon_sym_constinit] = ACTIONS(2552), - [anon_sym_consteval] = ACTIONS(2552), - [anon_sym_signed] = ACTIONS(2552), - [anon_sym_unsigned] = ACTIONS(2552), - [anon_sym_long] = ACTIONS(2552), - [anon_sym_short] = ACTIONS(2552), - [sym_primitive_type] = ACTIONS(2552), - [anon_sym_enum] = ACTIONS(2552), - [anon_sym_class] = 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_return] = ACTIONS(2552), - [anon_sym_break] = ACTIONS(2552), - [anon_sym_continue] = ACTIONS(2552), - [anon_sym_goto] = ACTIONS(2552), - [anon_sym_not] = ACTIONS(2552), - [anon_sym_compl] = ACTIONS(2552), - [anon_sym_DASH_DASH] = ACTIONS(2554), - [anon_sym_PLUS_PLUS] = ACTIONS(2554), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2554), - [anon_sym_u_DQUOTE] = ACTIONS(2554), - [anon_sym_U_DQUOTE] = ACTIONS(2554), - [anon_sym_u8_DQUOTE] = ACTIONS(2554), - [anon_sym_DQUOTE] = ACTIONS(2554), - [sym_true] = ACTIONS(2552), - [sym_false] = ACTIONS(2552), - [sym_null] = ACTIONS(2552), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2552), - [anon_sym_decltype] = ACTIONS(2552), - [anon_sym_virtual] = ACTIONS(2552), - [anon_sym_typename] = ACTIONS(2552), - [anon_sym_template] = ACTIONS(2552), - [anon_sym_try] = ACTIONS(2552), - [anon_sym_delete] = ACTIONS(2552), - [anon_sym_throw] = ACTIONS(2552), - [anon_sym_co_return] = ACTIONS(2552), - [anon_sym_co_yield] = ACTIONS(2552), - [anon_sym_R_DQUOTE] = ACTIONS(2554), - [anon_sym_LR_DQUOTE] = ACTIONS(2554), - [anon_sym_uR_DQUOTE] = ACTIONS(2554), - [anon_sym_UR_DQUOTE] = ACTIONS(2554), - [anon_sym_u8R_DQUOTE] = ACTIONS(2554), - [anon_sym_co_await] = ACTIONS(2552), - [anon_sym_new] = ACTIONS(2552), - [anon_sym_requires] = ACTIONS(2552), - [sym_this] = ACTIONS(2552), - [sym_nullptr] = ACTIONS(2552), + [sym_identifier] = ACTIONS(3419), + [aux_sym_preproc_include_token1] = ACTIONS(3419), + [aux_sym_preproc_def_token1] = ACTIONS(3419), + [aux_sym_preproc_if_token1] = ACTIONS(3419), + [aux_sym_preproc_if_token2] = ACTIONS(3419), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3419), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3419), + [sym_preproc_directive] = ACTIONS(3419), + [anon_sym_LPAREN2] = ACTIONS(3421), + [anon_sym_BANG] = ACTIONS(3421), + [anon_sym_TILDE] = ACTIONS(3421), + [anon_sym_DASH] = ACTIONS(3419), + [anon_sym_PLUS] = ACTIONS(3419), + [anon_sym_STAR] = ACTIONS(3421), + [anon_sym_AMP_AMP] = ACTIONS(3421), + [anon_sym_AMP] = ACTIONS(3419), + [anon_sym_SEMI] = ACTIONS(3421), + [anon_sym_typedef] = ACTIONS(3419), + [anon_sym_extern] = ACTIONS(3419), + [anon_sym___attribute__] = ACTIONS(3419), + [anon_sym_COLON_COLON] = ACTIONS(3421), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3421), + [anon_sym___declspec] = ACTIONS(3419), + [anon_sym___based] = ACTIONS(3419), + [anon_sym___cdecl] = ACTIONS(3419), + [anon_sym___clrcall] = ACTIONS(3419), + [anon_sym___stdcall] = ACTIONS(3419), + [anon_sym___fastcall] = ACTIONS(3419), + [anon_sym___thiscall] = ACTIONS(3419), + [anon_sym___vectorcall] = ACTIONS(3419), + [anon_sym_LBRACE] = ACTIONS(3421), + [anon_sym_LBRACK] = ACTIONS(3419), + [anon_sym_static] = ACTIONS(3419), + [anon_sym_register] = ACTIONS(3419), + [anon_sym_inline] = ACTIONS(3419), + [anon_sym_thread_local] = ACTIONS(3419), + [anon_sym_const] = ACTIONS(3419), + [anon_sym_constexpr] = ACTIONS(3419), + [anon_sym_volatile] = ACTIONS(3419), + [anon_sym_restrict] = ACTIONS(3419), + [anon_sym___restrict__] = ACTIONS(3419), + [anon_sym__Atomic] = ACTIONS(3419), + [anon_sym__Noreturn] = ACTIONS(3419), + [anon_sym_noreturn] = ACTIONS(3419), + [anon_sym_mutable] = ACTIONS(3419), + [anon_sym_constinit] = ACTIONS(3419), + [anon_sym_consteval] = ACTIONS(3419), + [anon_sym_signed] = ACTIONS(3419), + [anon_sym_unsigned] = ACTIONS(3419), + [anon_sym_long] = ACTIONS(3419), + [anon_sym_short] = ACTIONS(3419), + [sym_primitive_type] = ACTIONS(3419), + [anon_sym_enum] = ACTIONS(3419), + [anon_sym_class] = ACTIONS(3419), + [anon_sym_struct] = ACTIONS(3419), + [anon_sym_union] = ACTIONS(3419), + [anon_sym_if] = ACTIONS(3419), + [anon_sym_switch] = ACTIONS(3419), + [anon_sym_case] = ACTIONS(3419), + [anon_sym_default] = ACTIONS(3419), + [anon_sym_while] = ACTIONS(3419), + [anon_sym_do] = ACTIONS(3419), + [anon_sym_for] = ACTIONS(3419), + [anon_sym_return] = ACTIONS(3419), + [anon_sym_break] = ACTIONS(3419), + [anon_sym_continue] = ACTIONS(3419), + [anon_sym_goto] = ACTIONS(3419), + [anon_sym_not] = ACTIONS(3419), + [anon_sym_compl] = ACTIONS(3419), + [anon_sym_DASH_DASH] = ACTIONS(3421), + [anon_sym_PLUS_PLUS] = ACTIONS(3421), + [anon_sym_sizeof] = ACTIONS(3419), + [anon_sym_offsetof] = ACTIONS(3419), + [anon_sym__Generic] = ACTIONS(3419), + [anon_sym_asm] = ACTIONS(3419), + [anon_sym___asm__] = ACTIONS(3419), + [sym_number_literal] = ACTIONS(3421), + [anon_sym_L_SQUOTE] = ACTIONS(3421), + [anon_sym_u_SQUOTE] = ACTIONS(3421), + [anon_sym_U_SQUOTE] = ACTIONS(3421), + [anon_sym_u8_SQUOTE] = ACTIONS(3421), + [anon_sym_SQUOTE] = ACTIONS(3421), + [anon_sym_L_DQUOTE] = ACTIONS(3421), + [anon_sym_u_DQUOTE] = ACTIONS(3421), + [anon_sym_U_DQUOTE] = ACTIONS(3421), + [anon_sym_u8_DQUOTE] = ACTIONS(3421), + [anon_sym_DQUOTE] = ACTIONS(3421), + [sym_true] = ACTIONS(3419), + [sym_false] = ACTIONS(3419), + [anon_sym_NULL] = ACTIONS(3419), + [anon_sym_nullptr] = ACTIONS(3419), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3419), + [anon_sym_decltype] = ACTIONS(3419), + [anon_sym_virtual] = ACTIONS(3419), + [anon_sym_explicit] = ACTIONS(3419), + [anon_sym_typename] = ACTIONS(3419), + [anon_sym_template] = ACTIONS(3419), + [anon_sym_operator] = ACTIONS(3419), + [anon_sym_try] = ACTIONS(3419), + [anon_sym_delete] = ACTIONS(3419), + [anon_sym_throw] = ACTIONS(3419), + [anon_sym_namespace] = ACTIONS(3419), + [anon_sym_using] = ACTIONS(3419), + [anon_sym_static_assert] = ACTIONS(3419), + [anon_sym_concept] = ACTIONS(3419), + [anon_sym_co_return] = ACTIONS(3419), + [anon_sym_co_yield] = ACTIONS(3419), + [anon_sym_R_DQUOTE] = ACTIONS(3421), + [anon_sym_LR_DQUOTE] = ACTIONS(3421), + [anon_sym_uR_DQUOTE] = ACTIONS(3421), + [anon_sym_UR_DQUOTE] = ACTIONS(3421), + [anon_sym_u8R_DQUOTE] = ACTIONS(3421), + [anon_sym_co_await] = ACTIONS(3419), + [anon_sym_new] = ACTIONS(3419), + [anon_sym_requires] = ACTIONS(3419), + [sym_this] = ACTIONS(3419), }, [1258] = { - [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_AMP] = ACTIONS(2464), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym_LBRACE] = ACTIONS(2464), - [anon_sym_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_identifier] = ACTIONS(3316), + [aux_sym_preproc_include_token1] = ACTIONS(3316), + [aux_sym_preproc_def_token1] = ACTIONS(3316), + [aux_sym_preproc_if_token1] = ACTIONS(3316), + [aux_sym_preproc_if_token2] = ACTIONS(3316), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3316), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3316), + [sym_preproc_directive] = ACTIONS(3316), + [anon_sym_LPAREN2] = ACTIONS(3318), + [anon_sym_BANG] = ACTIONS(3318), + [anon_sym_TILDE] = ACTIONS(3318), + [anon_sym_DASH] = ACTIONS(3316), + [anon_sym_PLUS] = ACTIONS(3316), + [anon_sym_STAR] = ACTIONS(3318), + [anon_sym_AMP_AMP] = ACTIONS(3318), + [anon_sym_AMP] = ACTIONS(3316), + [anon_sym_SEMI] = ACTIONS(3318), + [anon_sym_typedef] = ACTIONS(3316), + [anon_sym_extern] = ACTIONS(3316), + [anon_sym___attribute__] = ACTIONS(3316), + [anon_sym_COLON_COLON] = ACTIONS(3318), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3318), + [anon_sym___declspec] = ACTIONS(3316), + [anon_sym___based] = ACTIONS(3316), + [anon_sym___cdecl] = ACTIONS(3316), + [anon_sym___clrcall] = ACTIONS(3316), + [anon_sym___stdcall] = ACTIONS(3316), + [anon_sym___fastcall] = ACTIONS(3316), + [anon_sym___thiscall] = ACTIONS(3316), + [anon_sym___vectorcall] = ACTIONS(3316), + [anon_sym_LBRACE] = ACTIONS(3318), + [anon_sym_LBRACK] = ACTIONS(3316), + [anon_sym_static] = ACTIONS(3316), + [anon_sym_register] = ACTIONS(3316), + [anon_sym_inline] = ACTIONS(3316), + [anon_sym_thread_local] = ACTIONS(3316), + [anon_sym_const] = ACTIONS(3316), + [anon_sym_constexpr] = ACTIONS(3316), + [anon_sym_volatile] = ACTIONS(3316), + [anon_sym_restrict] = ACTIONS(3316), + [anon_sym___restrict__] = ACTIONS(3316), + [anon_sym__Atomic] = ACTIONS(3316), + [anon_sym__Noreturn] = ACTIONS(3316), + [anon_sym_noreturn] = ACTIONS(3316), + [anon_sym_mutable] = ACTIONS(3316), + [anon_sym_constinit] = ACTIONS(3316), + [anon_sym_consteval] = ACTIONS(3316), + [anon_sym_signed] = ACTIONS(3316), + [anon_sym_unsigned] = ACTIONS(3316), + [anon_sym_long] = ACTIONS(3316), + [anon_sym_short] = ACTIONS(3316), + [sym_primitive_type] = ACTIONS(3316), + [anon_sym_enum] = ACTIONS(3316), + [anon_sym_class] = ACTIONS(3316), + [anon_sym_struct] = ACTIONS(3316), + [anon_sym_union] = ACTIONS(3316), + [anon_sym_if] = ACTIONS(3316), + [anon_sym_switch] = ACTIONS(3316), + [anon_sym_case] = ACTIONS(3316), + [anon_sym_default] = ACTIONS(3316), + [anon_sym_while] = ACTIONS(3316), + [anon_sym_do] = ACTIONS(3316), + [anon_sym_for] = ACTIONS(3316), + [anon_sym_return] = ACTIONS(3316), + [anon_sym_break] = ACTIONS(3316), + [anon_sym_continue] = ACTIONS(3316), + [anon_sym_goto] = ACTIONS(3316), + [anon_sym_not] = ACTIONS(3316), + [anon_sym_compl] = ACTIONS(3316), + [anon_sym_DASH_DASH] = ACTIONS(3318), + [anon_sym_PLUS_PLUS] = ACTIONS(3318), + [anon_sym_sizeof] = ACTIONS(3316), + [anon_sym_offsetof] = ACTIONS(3316), + [anon_sym__Generic] = ACTIONS(3316), + [anon_sym_asm] = ACTIONS(3316), + [anon_sym___asm__] = ACTIONS(3316), + [sym_number_literal] = ACTIONS(3318), + [anon_sym_L_SQUOTE] = ACTIONS(3318), + [anon_sym_u_SQUOTE] = ACTIONS(3318), + [anon_sym_U_SQUOTE] = ACTIONS(3318), + [anon_sym_u8_SQUOTE] = ACTIONS(3318), + [anon_sym_SQUOTE] = ACTIONS(3318), + [anon_sym_L_DQUOTE] = ACTIONS(3318), + [anon_sym_u_DQUOTE] = ACTIONS(3318), + [anon_sym_U_DQUOTE] = ACTIONS(3318), + [anon_sym_u8_DQUOTE] = ACTIONS(3318), + [anon_sym_DQUOTE] = ACTIONS(3318), + [sym_true] = ACTIONS(3316), + [sym_false] = ACTIONS(3316), + [anon_sym_NULL] = ACTIONS(3316), + [anon_sym_nullptr] = ACTIONS(3316), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3316), + [anon_sym_decltype] = ACTIONS(3316), + [anon_sym_virtual] = ACTIONS(3316), + [anon_sym_explicit] = ACTIONS(3316), + [anon_sym_typename] = ACTIONS(3316), + [anon_sym_template] = ACTIONS(3316), + [anon_sym_operator] = ACTIONS(3316), + [anon_sym_try] = ACTIONS(3316), + [anon_sym_delete] = ACTIONS(3316), + [anon_sym_throw] = ACTIONS(3316), + [anon_sym_namespace] = ACTIONS(3316), + [anon_sym_using] = ACTIONS(3316), + [anon_sym_static_assert] = ACTIONS(3316), + [anon_sym_concept] = ACTIONS(3316), + [anon_sym_co_return] = ACTIONS(3316), + [anon_sym_co_yield] = ACTIONS(3316), + [anon_sym_R_DQUOTE] = ACTIONS(3318), + [anon_sym_LR_DQUOTE] = ACTIONS(3318), + [anon_sym_uR_DQUOTE] = ACTIONS(3318), + [anon_sym_UR_DQUOTE] = ACTIONS(3318), + [anon_sym_u8R_DQUOTE] = ACTIONS(3318), + [anon_sym_co_await] = ACTIONS(3316), + [anon_sym_new] = ACTIONS(3316), + [anon_sym_requires] = ACTIONS(3316), + [sym_this] = ACTIONS(3316), }, [1259] = { - [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_AMP] = ACTIONS(2558), - [anon_sym_SEMI] = ACTIONS(2558), - [anon_sym_typedef] = ACTIONS(2556), - [anon_sym_extern] = ACTIONS(2556), - [anon_sym___attribute__] = ACTIONS(2556), - [anon_sym_COLON_COLON] = ACTIONS(2558), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2558), - [anon_sym___declspec] = ACTIONS(2556), - [anon_sym_LBRACE] = ACTIONS(2558), - [anon_sym_LBRACK] = ACTIONS(2556), - [anon_sym_static] = ACTIONS(2556), - [anon_sym_register] = ACTIONS(2556), - [anon_sym_inline] = ACTIONS(2556), - [anon_sym_thread_local] = ACTIONS(2556), - [anon_sym_const] = ACTIONS(2556), - [anon_sym_volatile] = ACTIONS(2556), - [anon_sym_restrict] = ACTIONS(2556), - [anon_sym__Atomic] = ACTIONS(2556), - [anon_sym_mutable] = ACTIONS(2556), - [anon_sym_constexpr] = ACTIONS(2556), - [anon_sym_constinit] = ACTIONS(2556), - [anon_sym_consteval] = ACTIONS(2556), - [anon_sym_signed] = ACTIONS(2556), - [anon_sym_unsigned] = ACTIONS(2556), - [anon_sym_long] = ACTIONS(2556), - [anon_sym_short] = ACTIONS(2556), - [sym_primitive_type] = ACTIONS(2556), - [anon_sym_enum] = ACTIONS(2556), - [anon_sym_class] = 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_return] = ACTIONS(2556), - [anon_sym_break] = ACTIONS(2556), - [anon_sym_continue] = ACTIONS(2556), - [anon_sym_goto] = ACTIONS(2556), - [anon_sym_not] = ACTIONS(2556), - [anon_sym_compl] = ACTIONS(2556), - [anon_sym_DASH_DASH] = ACTIONS(2558), - [anon_sym_PLUS_PLUS] = ACTIONS(2558), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2558), - [anon_sym_u_DQUOTE] = ACTIONS(2558), - [anon_sym_U_DQUOTE] = ACTIONS(2558), - [anon_sym_u8_DQUOTE] = ACTIONS(2558), - [anon_sym_DQUOTE] = ACTIONS(2558), - [sym_true] = ACTIONS(2556), - [sym_false] = ACTIONS(2556), - [sym_null] = ACTIONS(2556), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2556), - [anon_sym_decltype] = ACTIONS(2556), - [anon_sym_virtual] = ACTIONS(2556), - [anon_sym_typename] = ACTIONS(2556), - [anon_sym_template] = ACTIONS(2556), - [anon_sym_try] = ACTIONS(2556), - [anon_sym_delete] = ACTIONS(2556), - [anon_sym_throw] = ACTIONS(2556), - [anon_sym_co_return] = ACTIONS(2556), - [anon_sym_co_yield] = ACTIONS(2556), - [anon_sym_R_DQUOTE] = ACTIONS(2558), - [anon_sym_LR_DQUOTE] = ACTIONS(2558), - [anon_sym_uR_DQUOTE] = ACTIONS(2558), - [anon_sym_UR_DQUOTE] = ACTIONS(2558), - [anon_sym_u8R_DQUOTE] = ACTIONS(2558), - [anon_sym_co_await] = ACTIONS(2556), - [anon_sym_new] = ACTIONS(2556), - [anon_sym_requires] = ACTIONS(2556), - [sym_this] = ACTIONS(2556), - [sym_nullptr] = ACTIONS(2556), + [sym_identifier] = ACTIONS(3316), + [aux_sym_preproc_include_token1] = ACTIONS(3316), + [aux_sym_preproc_def_token1] = ACTIONS(3316), + [aux_sym_preproc_if_token1] = ACTIONS(3316), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3316), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3316), + [sym_preproc_directive] = ACTIONS(3316), + [anon_sym_LPAREN2] = ACTIONS(3318), + [anon_sym_BANG] = ACTIONS(3318), + [anon_sym_TILDE] = ACTIONS(3318), + [anon_sym_DASH] = ACTIONS(3316), + [anon_sym_PLUS] = ACTIONS(3316), + [anon_sym_STAR] = ACTIONS(3318), + [anon_sym_AMP_AMP] = ACTIONS(3318), + [anon_sym_AMP] = ACTIONS(3316), + [anon_sym_SEMI] = ACTIONS(3318), + [anon_sym_typedef] = ACTIONS(3316), + [anon_sym_extern] = ACTIONS(3316), + [anon_sym___attribute__] = ACTIONS(3316), + [anon_sym_COLON_COLON] = ACTIONS(3318), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3318), + [anon_sym___declspec] = ACTIONS(3316), + [anon_sym___based] = ACTIONS(3316), + [anon_sym___cdecl] = ACTIONS(3316), + [anon_sym___clrcall] = ACTIONS(3316), + [anon_sym___stdcall] = ACTIONS(3316), + [anon_sym___fastcall] = ACTIONS(3316), + [anon_sym___thiscall] = ACTIONS(3316), + [anon_sym___vectorcall] = ACTIONS(3316), + [anon_sym_LBRACE] = ACTIONS(3318), + [anon_sym_RBRACE] = ACTIONS(3318), + [anon_sym_LBRACK] = ACTIONS(3316), + [anon_sym_static] = ACTIONS(3316), + [anon_sym_register] = ACTIONS(3316), + [anon_sym_inline] = ACTIONS(3316), + [anon_sym_thread_local] = ACTIONS(3316), + [anon_sym_const] = ACTIONS(3316), + [anon_sym_constexpr] = ACTIONS(3316), + [anon_sym_volatile] = ACTIONS(3316), + [anon_sym_restrict] = ACTIONS(3316), + [anon_sym___restrict__] = ACTIONS(3316), + [anon_sym__Atomic] = ACTIONS(3316), + [anon_sym__Noreturn] = ACTIONS(3316), + [anon_sym_noreturn] = ACTIONS(3316), + [anon_sym_mutable] = ACTIONS(3316), + [anon_sym_constinit] = ACTIONS(3316), + [anon_sym_consteval] = ACTIONS(3316), + [anon_sym_signed] = ACTIONS(3316), + [anon_sym_unsigned] = ACTIONS(3316), + [anon_sym_long] = ACTIONS(3316), + [anon_sym_short] = ACTIONS(3316), + [sym_primitive_type] = ACTIONS(3316), + [anon_sym_enum] = ACTIONS(3316), + [anon_sym_class] = ACTIONS(3316), + [anon_sym_struct] = ACTIONS(3316), + [anon_sym_union] = ACTIONS(3316), + [anon_sym_if] = ACTIONS(3316), + [anon_sym_switch] = ACTIONS(3316), + [anon_sym_case] = ACTIONS(3316), + [anon_sym_default] = ACTIONS(3316), + [anon_sym_while] = ACTIONS(3316), + [anon_sym_do] = ACTIONS(3316), + [anon_sym_for] = ACTIONS(3316), + [anon_sym_return] = ACTIONS(3316), + [anon_sym_break] = ACTIONS(3316), + [anon_sym_continue] = ACTIONS(3316), + [anon_sym_goto] = ACTIONS(3316), + [anon_sym_not] = ACTIONS(3316), + [anon_sym_compl] = ACTIONS(3316), + [anon_sym_DASH_DASH] = ACTIONS(3318), + [anon_sym_PLUS_PLUS] = ACTIONS(3318), + [anon_sym_sizeof] = ACTIONS(3316), + [anon_sym_offsetof] = ACTIONS(3316), + [anon_sym__Generic] = ACTIONS(3316), + [anon_sym_asm] = ACTIONS(3316), + [anon_sym___asm__] = ACTIONS(3316), + [sym_number_literal] = ACTIONS(3318), + [anon_sym_L_SQUOTE] = ACTIONS(3318), + [anon_sym_u_SQUOTE] = ACTIONS(3318), + [anon_sym_U_SQUOTE] = ACTIONS(3318), + [anon_sym_u8_SQUOTE] = ACTIONS(3318), + [anon_sym_SQUOTE] = ACTIONS(3318), + [anon_sym_L_DQUOTE] = ACTIONS(3318), + [anon_sym_u_DQUOTE] = ACTIONS(3318), + [anon_sym_U_DQUOTE] = ACTIONS(3318), + [anon_sym_u8_DQUOTE] = ACTIONS(3318), + [anon_sym_DQUOTE] = ACTIONS(3318), + [sym_true] = ACTIONS(3316), + [sym_false] = ACTIONS(3316), + [anon_sym_NULL] = ACTIONS(3316), + [anon_sym_nullptr] = ACTIONS(3316), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3316), + [anon_sym_decltype] = ACTIONS(3316), + [anon_sym_virtual] = ACTIONS(3316), + [anon_sym_explicit] = ACTIONS(3316), + [anon_sym_typename] = ACTIONS(3316), + [anon_sym_template] = ACTIONS(3316), + [anon_sym_operator] = ACTIONS(3316), + [anon_sym_try] = ACTIONS(3316), + [anon_sym_delete] = ACTIONS(3316), + [anon_sym_throw] = ACTIONS(3316), + [anon_sym_namespace] = ACTIONS(3316), + [anon_sym_using] = ACTIONS(3316), + [anon_sym_static_assert] = ACTIONS(3316), + [anon_sym_concept] = ACTIONS(3316), + [anon_sym_co_return] = ACTIONS(3316), + [anon_sym_co_yield] = ACTIONS(3316), + [anon_sym_R_DQUOTE] = ACTIONS(3318), + [anon_sym_LR_DQUOTE] = ACTIONS(3318), + [anon_sym_uR_DQUOTE] = ACTIONS(3318), + [anon_sym_UR_DQUOTE] = ACTIONS(3318), + [anon_sym_u8R_DQUOTE] = ACTIONS(3318), + [anon_sym_co_await] = ACTIONS(3316), + [anon_sym_new] = ACTIONS(3316), + [anon_sym_requires] = ACTIONS(3316), + [sym_this] = ACTIONS(3316), }, [1260] = { - [sym_identifier] = ACTIONS(2562), - [anon_sym_LPAREN2] = ACTIONS(2564), - [anon_sym_BANG] = ACTIONS(2564), - [anon_sym_TILDE] = ACTIONS(2564), - [anon_sym_DASH] = ACTIONS(2562), - [anon_sym_PLUS] = ACTIONS(2562), - [anon_sym_STAR] = ACTIONS(2564), - [anon_sym_AMP] = ACTIONS(2564), - [anon_sym_SEMI] = ACTIONS(2564), - [anon_sym_typedef] = ACTIONS(2562), - [anon_sym_extern] = ACTIONS(2562), - [anon_sym___attribute__] = ACTIONS(2562), - [anon_sym_COLON_COLON] = ACTIONS(2564), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2564), - [anon_sym___declspec] = ACTIONS(2562), - [anon_sym_LBRACE] = ACTIONS(2564), - [anon_sym_LBRACK] = ACTIONS(2562), - [anon_sym_static] = ACTIONS(2562), - [anon_sym_register] = ACTIONS(2562), - [anon_sym_inline] = ACTIONS(2562), - [anon_sym_thread_local] = ACTIONS(2562), - [anon_sym_const] = ACTIONS(2562), - [anon_sym_volatile] = ACTIONS(2562), - [anon_sym_restrict] = ACTIONS(2562), - [anon_sym__Atomic] = ACTIONS(2562), - [anon_sym_mutable] = ACTIONS(2562), - [anon_sym_constexpr] = ACTIONS(2562), - [anon_sym_constinit] = ACTIONS(2562), - [anon_sym_consteval] = ACTIONS(2562), - [anon_sym_signed] = ACTIONS(2562), - [anon_sym_unsigned] = ACTIONS(2562), - [anon_sym_long] = ACTIONS(2562), - [anon_sym_short] = ACTIONS(2562), - [sym_primitive_type] = ACTIONS(2562), - [anon_sym_enum] = ACTIONS(2562), - [anon_sym_class] = ACTIONS(2562), - [anon_sym_struct] = ACTIONS(2562), - [anon_sym_union] = ACTIONS(2562), - [anon_sym_if] = ACTIONS(2562), - [anon_sym_else] = ACTIONS(2562), - [anon_sym_switch] = ACTIONS(2562), - [anon_sym_while] = ACTIONS(2562), - [anon_sym_do] = ACTIONS(2562), - [anon_sym_for] = ACTIONS(2562), - [anon_sym_return] = ACTIONS(2562), - [anon_sym_break] = ACTIONS(2562), - [anon_sym_continue] = ACTIONS(2562), - [anon_sym_goto] = ACTIONS(2562), - [anon_sym_not] = ACTIONS(2562), - [anon_sym_compl] = ACTIONS(2562), - [anon_sym_DASH_DASH] = ACTIONS(2564), - [anon_sym_PLUS_PLUS] = ACTIONS(2564), - [anon_sym_sizeof] = ACTIONS(2562), - [sym_number_literal] = ACTIONS(2564), - [anon_sym_L_SQUOTE] = ACTIONS(2564), - [anon_sym_u_SQUOTE] = ACTIONS(2564), - [anon_sym_U_SQUOTE] = ACTIONS(2564), - [anon_sym_u8_SQUOTE] = ACTIONS(2564), - [anon_sym_SQUOTE] = ACTIONS(2564), - [anon_sym_L_DQUOTE] = ACTIONS(2564), - [anon_sym_u_DQUOTE] = ACTIONS(2564), - [anon_sym_U_DQUOTE] = ACTIONS(2564), - [anon_sym_u8_DQUOTE] = ACTIONS(2564), - [anon_sym_DQUOTE] = ACTIONS(2564), - [sym_true] = ACTIONS(2562), - [sym_false] = ACTIONS(2562), - [sym_null] = ACTIONS(2562), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2562), - [anon_sym_decltype] = ACTIONS(2562), - [anon_sym_virtual] = ACTIONS(2562), - [anon_sym_typename] = ACTIONS(2562), - [anon_sym_template] = ACTIONS(2562), - [anon_sym_try] = ACTIONS(2562), - [anon_sym_delete] = ACTIONS(2562), - [anon_sym_throw] = ACTIONS(2562), - [anon_sym_co_return] = ACTIONS(2562), - [anon_sym_co_yield] = ACTIONS(2562), - [anon_sym_R_DQUOTE] = ACTIONS(2564), - [anon_sym_LR_DQUOTE] = ACTIONS(2564), - [anon_sym_uR_DQUOTE] = ACTIONS(2564), - [anon_sym_UR_DQUOTE] = ACTIONS(2564), - [anon_sym_u8R_DQUOTE] = ACTIONS(2564), - [anon_sym_co_await] = ACTIONS(2562), - [anon_sym_new] = ACTIONS(2562), - [anon_sym_requires] = ACTIONS(2562), - [sym_this] = ACTIONS(2562), - [sym_nullptr] = ACTIONS(2562), + [sym_identifier] = ACTIONS(3172), + [aux_sym_preproc_include_token1] = ACTIONS(3172), + [aux_sym_preproc_def_token1] = ACTIONS(3172), + [aux_sym_preproc_if_token1] = ACTIONS(3172), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3172), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3172), + [sym_preproc_directive] = ACTIONS(3172), + [anon_sym_LPAREN2] = ACTIONS(3174), + [anon_sym_BANG] = ACTIONS(3174), + [anon_sym_TILDE] = ACTIONS(3174), + [anon_sym_DASH] = ACTIONS(3172), + [anon_sym_PLUS] = ACTIONS(3172), + [anon_sym_STAR] = ACTIONS(3174), + [anon_sym_AMP_AMP] = ACTIONS(3174), + [anon_sym_AMP] = ACTIONS(3172), + [anon_sym_SEMI] = ACTIONS(3174), + [anon_sym_typedef] = ACTIONS(3172), + [anon_sym_extern] = ACTIONS(3172), + [anon_sym___attribute__] = ACTIONS(3172), + [anon_sym_COLON_COLON] = ACTIONS(3174), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3174), + [anon_sym___declspec] = ACTIONS(3172), + [anon_sym___based] = ACTIONS(3172), + [anon_sym___cdecl] = ACTIONS(3172), + [anon_sym___clrcall] = ACTIONS(3172), + [anon_sym___stdcall] = ACTIONS(3172), + [anon_sym___fastcall] = ACTIONS(3172), + [anon_sym___thiscall] = ACTIONS(3172), + [anon_sym___vectorcall] = ACTIONS(3172), + [anon_sym_LBRACE] = ACTIONS(3174), + [anon_sym_RBRACE] = ACTIONS(3174), + [anon_sym_LBRACK] = ACTIONS(3172), + [anon_sym_static] = ACTIONS(3172), + [anon_sym_register] = ACTIONS(3172), + [anon_sym_inline] = ACTIONS(3172), + [anon_sym_thread_local] = ACTIONS(3172), + [anon_sym_const] = ACTIONS(3172), + [anon_sym_constexpr] = ACTIONS(3172), + [anon_sym_volatile] = ACTIONS(3172), + [anon_sym_restrict] = ACTIONS(3172), + [anon_sym___restrict__] = ACTIONS(3172), + [anon_sym__Atomic] = ACTIONS(3172), + [anon_sym__Noreturn] = ACTIONS(3172), + [anon_sym_noreturn] = ACTIONS(3172), + [anon_sym_mutable] = ACTIONS(3172), + [anon_sym_constinit] = ACTIONS(3172), + [anon_sym_consteval] = ACTIONS(3172), + [anon_sym_signed] = ACTIONS(3172), + [anon_sym_unsigned] = ACTIONS(3172), + [anon_sym_long] = ACTIONS(3172), + [anon_sym_short] = ACTIONS(3172), + [sym_primitive_type] = ACTIONS(3172), + [anon_sym_enum] = ACTIONS(3172), + [anon_sym_class] = ACTIONS(3172), + [anon_sym_struct] = ACTIONS(3172), + [anon_sym_union] = ACTIONS(3172), + [anon_sym_if] = ACTIONS(3172), + [anon_sym_switch] = ACTIONS(3172), + [anon_sym_case] = ACTIONS(3172), + [anon_sym_default] = ACTIONS(3172), + [anon_sym_while] = ACTIONS(3172), + [anon_sym_do] = ACTIONS(3172), + [anon_sym_for] = ACTIONS(3172), + [anon_sym_return] = ACTIONS(3172), + [anon_sym_break] = ACTIONS(3172), + [anon_sym_continue] = ACTIONS(3172), + [anon_sym_goto] = ACTIONS(3172), + [anon_sym_not] = ACTIONS(3172), + [anon_sym_compl] = ACTIONS(3172), + [anon_sym_DASH_DASH] = ACTIONS(3174), + [anon_sym_PLUS_PLUS] = ACTIONS(3174), + [anon_sym_sizeof] = ACTIONS(3172), + [anon_sym_offsetof] = ACTIONS(3172), + [anon_sym__Generic] = ACTIONS(3172), + [anon_sym_asm] = ACTIONS(3172), + [anon_sym___asm__] = ACTIONS(3172), + [sym_number_literal] = ACTIONS(3174), + [anon_sym_L_SQUOTE] = ACTIONS(3174), + [anon_sym_u_SQUOTE] = ACTIONS(3174), + [anon_sym_U_SQUOTE] = ACTIONS(3174), + [anon_sym_u8_SQUOTE] = ACTIONS(3174), + [anon_sym_SQUOTE] = ACTIONS(3174), + [anon_sym_L_DQUOTE] = ACTIONS(3174), + [anon_sym_u_DQUOTE] = ACTIONS(3174), + [anon_sym_U_DQUOTE] = ACTIONS(3174), + [anon_sym_u8_DQUOTE] = ACTIONS(3174), + [anon_sym_DQUOTE] = ACTIONS(3174), + [sym_true] = ACTIONS(3172), + [sym_false] = ACTIONS(3172), + [anon_sym_NULL] = ACTIONS(3172), + [anon_sym_nullptr] = ACTIONS(3172), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3172), + [anon_sym_decltype] = ACTIONS(3172), + [anon_sym_virtual] = ACTIONS(3172), + [anon_sym_explicit] = ACTIONS(3172), + [anon_sym_typename] = ACTIONS(3172), + [anon_sym_template] = ACTIONS(3172), + [anon_sym_operator] = ACTIONS(3172), + [anon_sym_try] = ACTIONS(3172), + [anon_sym_delete] = ACTIONS(3172), + [anon_sym_throw] = ACTIONS(3172), + [anon_sym_namespace] = ACTIONS(3172), + [anon_sym_using] = ACTIONS(3172), + [anon_sym_static_assert] = ACTIONS(3172), + [anon_sym_concept] = ACTIONS(3172), + [anon_sym_co_return] = ACTIONS(3172), + [anon_sym_co_yield] = ACTIONS(3172), + [anon_sym_R_DQUOTE] = ACTIONS(3174), + [anon_sym_LR_DQUOTE] = ACTIONS(3174), + [anon_sym_uR_DQUOTE] = ACTIONS(3174), + [anon_sym_UR_DQUOTE] = ACTIONS(3174), + [anon_sym_u8R_DQUOTE] = ACTIONS(3174), + [anon_sym_co_await] = ACTIONS(3172), + [anon_sym_new] = ACTIONS(3172), + [anon_sym_requires] = ACTIONS(3172), + [sym_this] = ACTIONS(3172), }, [1261] = { - [sym_identifier] = 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_AMP] = ACTIONS(2578), - [anon_sym_SEMI] = ACTIONS(2578), - [anon_sym_typedef] = ACTIONS(2576), - [anon_sym_extern] = ACTIONS(2576), - [anon_sym___attribute__] = ACTIONS(2576), - [anon_sym_COLON_COLON] = ACTIONS(2578), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2578), - [anon_sym___declspec] = ACTIONS(2576), - [anon_sym_LBRACE] = ACTIONS(2578), - [anon_sym_LBRACK] = ACTIONS(2576), - [anon_sym_static] = ACTIONS(2576), - [anon_sym_register] = ACTIONS(2576), - [anon_sym_inline] = ACTIONS(2576), - [anon_sym_thread_local] = ACTIONS(2576), - [anon_sym_const] = ACTIONS(2576), - [anon_sym_volatile] = ACTIONS(2576), - [anon_sym_restrict] = ACTIONS(2576), - [anon_sym__Atomic] = ACTIONS(2576), - [anon_sym_mutable] = ACTIONS(2576), - [anon_sym_constexpr] = ACTIONS(2576), - [anon_sym_constinit] = ACTIONS(2576), - [anon_sym_consteval] = ACTIONS(2576), - [anon_sym_signed] = ACTIONS(2576), - [anon_sym_unsigned] = ACTIONS(2576), - [anon_sym_long] = ACTIONS(2576), - [anon_sym_short] = ACTIONS(2576), - [sym_primitive_type] = ACTIONS(2576), - [anon_sym_enum] = ACTIONS(2576), - [anon_sym_class] = ACTIONS(2576), - [anon_sym_struct] = ACTIONS(2576), - [anon_sym_union] = ACTIONS(2576), - [anon_sym_if] = ACTIONS(2576), - [anon_sym_else] = ACTIONS(2576), - [anon_sym_switch] = ACTIONS(2576), - [anon_sym_while] = ACTIONS(2576), - [anon_sym_do] = ACTIONS(2576), - [anon_sym_for] = ACTIONS(2576), - [anon_sym_return] = ACTIONS(2576), - [anon_sym_break] = ACTIONS(2576), - [anon_sym_continue] = ACTIONS(2576), - [anon_sym_goto] = ACTIONS(2576), - [anon_sym_not] = ACTIONS(2576), - [anon_sym_compl] = ACTIONS(2576), - [anon_sym_DASH_DASH] = ACTIONS(2578), - [anon_sym_PLUS_PLUS] = ACTIONS(2578), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2578), - [anon_sym_u_DQUOTE] = ACTIONS(2578), - [anon_sym_U_DQUOTE] = ACTIONS(2578), - [anon_sym_u8_DQUOTE] = ACTIONS(2578), - [anon_sym_DQUOTE] = ACTIONS(2578), - [sym_true] = ACTIONS(2576), - [sym_false] = ACTIONS(2576), - [sym_null] = ACTIONS(2576), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2576), - [anon_sym_decltype] = ACTIONS(2576), - [anon_sym_virtual] = ACTIONS(2576), - [anon_sym_typename] = ACTIONS(2576), - [anon_sym_template] = ACTIONS(2576), - [anon_sym_try] = ACTIONS(2576), - [anon_sym_delete] = ACTIONS(2576), - [anon_sym_throw] = ACTIONS(2576), - [anon_sym_co_return] = ACTIONS(2576), - [anon_sym_co_yield] = ACTIONS(2576), - [anon_sym_R_DQUOTE] = ACTIONS(2578), - [anon_sym_LR_DQUOTE] = ACTIONS(2578), - [anon_sym_uR_DQUOTE] = ACTIONS(2578), - [anon_sym_UR_DQUOTE] = ACTIONS(2578), - [anon_sym_u8R_DQUOTE] = ACTIONS(2578), - [anon_sym_co_await] = ACTIONS(2576), - [anon_sym_new] = ACTIONS(2576), - [anon_sym_requires] = ACTIONS(2576), - [sym_this] = ACTIONS(2576), - [sym_nullptr] = ACTIONS(2576), + [sym_identifier] = ACTIONS(3312), + [aux_sym_preproc_include_token1] = ACTIONS(3312), + [aux_sym_preproc_def_token1] = ACTIONS(3312), + [aux_sym_preproc_if_token1] = ACTIONS(3312), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3312), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3312), + [sym_preproc_directive] = ACTIONS(3312), + [anon_sym_LPAREN2] = ACTIONS(3314), + [anon_sym_BANG] = ACTIONS(3314), + [anon_sym_TILDE] = ACTIONS(3314), + [anon_sym_DASH] = ACTIONS(3312), + [anon_sym_PLUS] = ACTIONS(3312), + [anon_sym_STAR] = ACTIONS(3314), + [anon_sym_AMP_AMP] = ACTIONS(3314), + [anon_sym_AMP] = ACTIONS(3312), + [anon_sym_SEMI] = ACTIONS(3314), + [anon_sym_typedef] = ACTIONS(3312), + [anon_sym_extern] = ACTIONS(3312), + [anon_sym___attribute__] = ACTIONS(3312), + [anon_sym_COLON_COLON] = ACTIONS(3314), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3314), + [anon_sym___declspec] = ACTIONS(3312), + [anon_sym___based] = ACTIONS(3312), + [anon_sym___cdecl] = ACTIONS(3312), + [anon_sym___clrcall] = ACTIONS(3312), + [anon_sym___stdcall] = ACTIONS(3312), + [anon_sym___fastcall] = ACTIONS(3312), + [anon_sym___thiscall] = ACTIONS(3312), + [anon_sym___vectorcall] = ACTIONS(3312), + [anon_sym_LBRACE] = ACTIONS(3314), + [anon_sym_RBRACE] = ACTIONS(3314), + [anon_sym_LBRACK] = ACTIONS(3312), + [anon_sym_static] = ACTIONS(3312), + [anon_sym_register] = ACTIONS(3312), + [anon_sym_inline] = ACTIONS(3312), + [anon_sym_thread_local] = ACTIONS(3312), + [anon_sym_const] = ACTIONS(3312), + [anon_sym_constexpr] = ACTIONS(3312), + [anon_sym_volatile] = ACTIONS(3312), + [anon_sym_restrict] = ACTIONS(3312), + [anon_sym___restrict__] = ACTIONS(3312), + [anon_sym__Atomic] = ACTIONS(3312), + [anon_sym__Noreturn] = ACTIONS(3312), + [anon_sym_noreturn] = ACTIONS(3312), + [anon_sym_mutable] = ACTIONS(3312), + [anon_sym_constinit] = ACTIONS(3312), + [anon_sym_consteval] = ACTIONS(3312), + [anon_sym_signed] = ACTIONS(3312), + [anon_sym_unsigned] = ACTIONS(3312), + [anon_sym_long] = ACTIONS(3312), + [anon_sym_short] = ACTIONS(3312), + [sym_primitive_type] = ACTIONS(3312), + [anon_sym_enum] = ACTIONS(3312), + [anon_sym_class] = ACTIONS(3312), + [anon_sym_struct] = ACTIONS(3312), + [anon_sym_union] = ACTIONS(3312), + [anon_sym_if] = ACTIONS(3312), + [anon_sym_switch] = ACTIONS(3312), + [anon_sym_case] = ACTIONS(3312), + [anon_sym_default] = ACTIONS(3312), + [anon_sym_while] = ACTIONS(3312), + [anon_sym_do] = ACTIONS(3312), + [anon_sym_for] = ACTIONS(3312), + [anon_sym_return] = ACTIONS(3312), + [anon_sym_break] = ACTIONS(3312), + [anon_sym_continue] = ACTIONS(3312), + [anon_sym_goto] = ACTIONS(3312), + [anon_sym_not] = ACTIONS(3312), + [anon_sym_compl] = ACTIONS(3312), + [anon_sym_DASH_DASH] = ACTIONS(3314), + [anon_sym_PLUS_PLUS] = ACTIONS(3314), + [anon_sym_sizeof] = ACTIONS(3312), + [anon_sym_offsetof] = ACTIONS(3312), + [anon_sym__Generic] = ACTIONS(3312), + [anon_sym_asm] = ACTIONS(3312), + [anon_sym___asm__] = ACTIONS(3312), + [sym_number_literal] = ACTIONS(3314), + [anon_sym_L_SQUOTE] = ACTIONS(3314), + [anon_sym_u_SQUOTE] = ACTIONS(3314), + [anon_sym_U_SQUOTE] = ACTIONS(3314), + [anon_sym_u8_SQUOTE] = ACTIONS(3314), + [anon_sym_SQUOTE] = ACTIONS(3314), + [anon_sym_L_DQUOTE] = ACTIONS(3314), + [anon_sym_u_DQUOTE] = ACTIONS(3314), + [anon_sym_U_DQUOTE] = ACTIONS(3314), + [anon_sym_u8_DQUOTE] = ACTIONS(3314), + [anon_sym_DQUOTE] = ACTIONS(3314), + [sym_true] = ACTIONS(3312), + [sym_false] = ACTIONS(3312), + [anon_sym_NULL] = ACTIONS(3312), + [anon_sym_nullptr] = ACTIONS(3312), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3312), + [anon_sym_decltype] = ACTIONS(3312), + [anon_sym_virtual] = ACTIONS(3312), + [anon_sym_explicit] = ACTIONS(3312), + [anon_sym_typename] = ACTIONS(3312), + [anon_sym_template] = ACTIONS(3312), + [anon_sym_operator] = ACTIONS(3312), + [anon_sym_try] = ACTIONS(3312), + [anon_sym_delete] = ACTIONS(3312), + [anon_sym_throw] = ACTIONS(3312), + [anon_sym_namespace] = ACTIONS(3312), + [anon_sym_using] = ACTIONS(3312), + [anon_sym_static_assert] = ACTIONS(3312), + [anon_sym_concept] = ACTIONS(3312), + [anon_sym_co_return] = ACTIONS(3312), + [anon_sym_co_yield] = ACTIONS(3312), + [anon_sym_R_DQUOTE] = ACTIONS(3314), + [anon_sym_LR_DQUOTE] = ACTIONS(3314), + [anon_sym_uR_DQUOTE] = ACTIONS(3314), + [anon_sym_UR_DQUOTE] = ACTIONS(3314), + [anon_sym_u8R_DQUOTE] = ACTIONS(3314), + [anon_sym_co_await] = ACTIONS(3312), + [anon_sym_new] = ACTIONS(3312), + [anon_sym_requires] = ACTIONS(3312), + [sym_this] = ACTIONS(3312), }, [1262] = { - [sym_identifier] = ACTIONS(2580), - [anon_sym_LPAREN2] = ACTIONS(2582), - [anon_sym_BANG] = ACTIONS(2582), - [anon_sym_TILDE] = ACTIONS(2582), - [anon_sym_DASH] = ACTIONS(2580), - [anon_sym_PLUS] = ACTIONS(2580), - [anon_sym_STAR] = ACTIONS(2582), - [anon_sym_AMP] = ACTIONS(2582), - [anon_sym_SEMI] = ACTIONS(2582), - [anon_sym_typedef] = ACTIONS(2580), - [anon_sym_extern] = ACTIONS(2580), - [anon_sym___attribute__] = ACTIONS(2580), - [anon_sym_COLON_COLON] = ACTIONS(2582), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2582), - [anon_sym___declspec] = ACTIONS(2580), - [anon_sym_LBRACE] = ACTIONS(2582), - [anon_sym_LBRACK] = ACTIONS(2580), - [anon_sym_static] = ACTIONS(2580), - [anon_sym_register] = ACTIONS(2580), - [anon_sym_inline] = ACTIONS(2580), - [anon_sym_thread_local] = ACTIONS(2580), - [anon_sym_const] = ACTIONS(2580), - [anon_sym_volatile] = ACTIONS(2580), - [anon_sym_restrict] = ACTIONS(2580), - [anon_sym__Atomic] = ACTIONS(2580), - [anon_sym_mutable] = ACTIONS(2580), - [anon_sym_constexpr] = ACTIONS(2580), - [anon_sym_constinit] = ACTIONS(2580), - [anon_sym_consteval] = ACTIONS(2580), - [anon_sym_signed] = ACTIONS(2580), - [anon_sym_unsigned] = ACTIONS(2580), - [anon_sym_long] = ACTIONS(2580), - [anon_sym_short] = ACTIONS(2580), - [sym_primitive_type] = ACTIONS(2580), - [anon_sym_enum] = ACTIONS(2580), - [anon_sym_class] = ACTIONS(2580), - [anon_sym_struct] = ACTIONS(2580), - [anon_sym_union] = ACTIONS(2580), - [anon_sym_if] = ACTIONS(2580), - [anon_sym_else] = ACTIONS(2580), - [anon_sym_switch] = ACTIONS(2580), - [anon_sym_while] = ACTIONS(2580), - [anon_sym_do] = ACTIONS(2580), - [anon_sym_for] = ACTIONS(2580), - [anon_sym_return] = ACTIONS(2580), - [anon_sym_break] = ACTIONS(2580), - [anon_sym_continue] = ACTIONS(2580), - [anon_sym_goto] = ACTIONS(2580), - [anon_sym_not] = ACTIONS(2580), - [anon_sym_compl] = ACTIONS(2580), - [anon_sym_DASH_DASH] = ACTIONS(2582), - [anon_sym_PLUS_PLUS] = ACTIONS(2582), - [anon_sym_sizeof] = ACTIONS(2580), - [sym_number_literal] = ACTIONS(2582), - [anon_sym_L_SQUOTE] = ACTIONS(2582), - [anon_sym_u_SQUOTE] = ACTIONS(2582), - [anon_sym_U_SQUOTE] = ACTIONS(2582), - [anon_sym_u8_SQUOTE] = ACTIONS(2582), - [anon_sym_SQUOTE] = ACTIONS(2582), - [anon_sym_L_DQUOTE] = ACTIONS(2582), - [anon_sym_u_DQUOTE] = ACTIONS(2582), - [anon_sym_U_DQUOTE] = ACTIONS(2582), - [anon_sym_u8_DQUOTE] = ACTIONS(2582), - [anon_sym_DQUOTE] = ACTIONS(2582), - [sym_true] = ACTIONS(2580), - [sym_false] = ACTIONS(2580), - [sym_null] = ACTIONS(2580), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2580), - [anon_sym_decltype] = ACTIONS(2580), - [anon_sym_virtual] = ACTIONS(2580), - [anon_sym_typename] = ACTIONS(2580), - [anon_sym_template] = ACTIONS(2580), - [anon_sym_try] = ACTIONS(2580), - [anon_sym_delete] = ACTIONS(2580), - [anon_sym_throw] = ACTIONS(2580), - [anon_sym_co_return] = ACTIONS(2580), - [anon_sym_co_yield] = ACTIONS(2580), - [anon_sym_R_DQUOTE] = ACTIONS(2582), - [anon_sym_LR_DQUOTE] = ACTIONS(2582), - [anon_sym_uR_DQUOTE] = ACTIONS(2582), - [anon_sym_UR_DQUOTE] = ACTIONS(2582), - [anon_sym_u8R_DQUOTE] = ACTIONS(2582), - [anon_sym_co_await] = ACTIONS(2580), - [anon_sym_new] = ACTIONS(2580), - [anon_sym_requires] = ACTIONS(2580), - [sym_this] = ACTIONS(2580), - [sym_nullptr] = ACTIONS(2580), + [sym_identifier] = ACTIONS(3168), + [aux_sym_preproc_include_token1] = ACTIONS(3168), + [aux_sym_preproc_def_token1] = ACTIONS(3168), + [aux_sym_preproc_if_token1] = ACTIONS(3168), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3168), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3168), + [sym_preproc_directive] = ACTIONS(3168), + [anon_sym_LPAREN2] = ACTIONS(3170), + [anon_sym_BANG] = ACTIONS(3170), + [anon_sym_TILDE] = ACTIONS(3170), + [anon_sym_DASH] = ACTIONS(3168), + [anon_sym_PLUS] = ACTIONS(3168), + [anon_sym_STAR] = ACTIONS(3170), + [anon_sym_AMP_AMP] = ACTIONS(3170), + [anon_sym_AMP] = ACTIONS(3168), + [anon_sym_SEMI] = ACTIONS(3170), + [anon_sym_typedef] = ACTIONS(3168), + [anon_sym_extern] = ACTIONS(3168), + [anon_sym___attribute__] = ACTIONS(3168), + [anon_sym_COLON_COLON] = ACTIONS(3170), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3170), + [anon_sym___declspec] = ACTIONS(3168), + [anon_sym___based] = ACTIONS(3168), + [anon_sym___cdecl] = ACTIONS(3168), + [anon_sym___clrcall] = ACTIONS(3168), + [anon_sym___stdcall] = ACTIONS(3168), + [anon_sym___fastcall] = ACTIONS(3168), + [anon_sym___thiscall] = ACTIONS(3168), + [anon_sym___vectorcall] = ACTIONS(3168), + [anon_sym_LBRACE] = ACTIONS(3170), + [anon_sym_RBRACE] = ACTIONS(3170), + [anon_sym_LBRACK] = ACTIONS(3168), + [anon_sym_static] = ACTIONS(3168), + [anon_sym_register] = ACTIONS(3168), + [anon_sym_inline] = ACTIONS(3168), + [anon_sym_thread_local] = ACTIONS(3168), + [anon_sym_const] = ACTIONS(3168), + [anon_sym_constexpr] = ACTIONS(3168), + [anon_sym_volatile] = ACTIONS(3168), + [anon_sym_restrict] = ACTIONS(3168), + [anon_sym___restrict__] = ACTIONS(3168), + [anon_sym__Atomic] = ACTIONS(3168), + [anon_sym__Noreturn] = ACTIONS(3168), + [anon_sym_noreturn] = ACTIONS(3168), + [anon_sym_mutable] = ACTIONS(3168), + [anon_sym_constinit] = ACTIONS(3168), + [anon_sym_consteval] = ACTIONS(3168), + [anon_sym_signed] = ACTIONS(3168), + [anon_sym_unsigned] = ACTIONS(3168), + [anon_sym_long] = ACTIONS(3168), + [anon_sym_short] = ACTIONS(3168), + [sym_primitive_type] = ACTIONS(3168), + [anon_sym_enum] = ACTIONS(3168), + [anon_sym_class] = ACTIONS(3168), + [anon_sym_struct] = ACTIONS(3168), + [anon_sym_union] = ACTIONS(3168), + [anon_sym_if] = ACTIONS(3168), + [anon_sym_switch] = ACTIONS(3168), + [anon_sym_case] = ACTIONS(3168), + [anon_sym_default] = ACTIONS(3168), + [anon_sym_while] = ACTIONS(3168), + [anon_sym_do] = ACTIONS(3168), + [anon_sym_for] = ACTIONS(3168), + [anon_sym_return] = ACTIONS(3168), + [anon_sym_break] = ACTIONS(3168), + [anon_sym_continue] = ACTIONS(3168), + [anon_sym_goto] = ACTIONS(3168), + [anon_sym_not] = ACTIONS(3168), + [anon_sym_compl] = ACTIONS(3168), + [anon_sym_DASH_DASH] = ACTIONS(3170), + [anon_sym_PLUS_PLUS] = ACTIONS(3170), + [anon_sym_sizeof] = ACTIONS(3168), + [anon_sym_offsetof] = ACTIONS(3168), + [anon_sym__Generic] = ACTIONS(3168), + [anon_sym_asm] = ACTIONS(3168), + [anon_sym___asm__] = ACTIONS(3168), + [sym_number_literal] = ACTIONS(3170), + [anon_sym_L_SQUOTE] = ACTIONS(3170), + [anon_sym_u_SQUOTE] = ACTIONS(3170), + [anon_sym_U_SQUOTE] = ACTIONS(3170), + [anon_sym_u8_SQUOTE] = ACTIONS(3170), + [anon_sym_SQUOTE] = ACTIONS(3170), + [anon_sym_L_DQUOTE] = ACTIONS(3170), + [anon_sym_u_DQUOTE] = ACTIONS(3170), + [anon_sym_U_DQUOTE] = ACTIONS(3170), + [anon_sym_u8_DQUOTE] = ACTIONS(3170), + [anon_sym_DQUOTE] = ACTIONS(3170), + [sym_true] = ACTIONS(3168), + [sym_false] = ACTIONS(3168), + [anon_sym_NULL] = ACTIONS(3168), + [anon_sym_nullptr] = ACTIONS(3168), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3168), + [anon_sym_decltype] = ACTIONS(3168), + [anon_sym_virtual] = ACTIONS(3168), + [anon_sym_explicit] = ACTIONS(3168), + [anon_sym_typename] = ACTIONS(3168), + [anon_sym_template] = ACTIONS(3168), + [anon_sym_operator] = ACTIONS(3168), + [anon_sym_try] = ACTIONS(3168), + [anon_sym_delete] = ACTIONS(3168), + [anon_sym_throw] = ACTIONS(3168), + [anon_sym_namespace] = ACTIONS(3168), + [anon_sym_using] = ACTIONS(3168), + [anon_sym_static_assert] = ACTIONS(3168), + [anon_sym_concept] = ACTIONS(3168), + [anon_sym_co_return] = ACTIONS(3168), + [anon_sym_co_yield] = ACTIONS(3168), + [anon_sym_R_DQUOTE] = ACTIONS(3170), + [anon_sym_LR_DQUOTE] = ACTIONS(3170), + [anon_sym_uR_DQUOTE] = ACTIONS(3170), + [anon_sym_UR_DQUOTE] = ACTIONS(3170), + [anon_sym_u8R_DQUOTE] = ACTIONS(3170), + [anon_sym_co_await] = ACTIONS(3168), + [anon_sym_new] = ACTIONS(3168), + [anon_sym_requires] = ACTIONS(3168), + [sym_this] = ACTIONS(3168), }, [1263] = { - [sym_identifier] = ACTIONS(2584), - [anon_sym_LPAREN2] = ACTIONS(2586), - [anon_sym_BANG] = ACTIONS(2586), - [anon_sym_TILDE] = ACTIONS(2586), - [anon_sym_DASH] = ACTIONS(2584), - [anon_sym_PLUS] = ACTIONS(2584), - [anon_sym_STAR] = ACTIONS(2586), - [anon_sym_AMP] = ACTIONS(2586), - [anon_sym_SEMI] = ACTIONS(2586), - [anon_sym_typedef] = ACTIONS(2584), - [anon_sym_extern] = ACTIONS(2584), - [anon_sym___attribute__] = ACTIONS(2584), - [anon_sym_COLON_COLON] = ACTIONS(2586), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2586), - [anon_sym___declspec] = ACTIONS(2584), - [anon_sym_LBRACE] = ACTIONS(2586), - [anon_sym_LBRACK] = ACTIONS(2584), - [anon_sym_static] = ACTIONS(2584), - [anon_sym_register] = ACTIONS(2584), - [anon_sym_inline] = ACTIONS(2584), - [anon_sym_thread_local] = ACTIONS(2584), - [anon_sym_const] = ACTIONS(2584), - [anon_sym_volatile] = ACTIONS(2584), - [anon_sym_restrict] = ACTIONS(2584), - [anon_sym__Atomic] = ACTIONS(2584), - [anon_sym_mutable] = ACTIONS(2584), - [anon_sym_constexpr] = ACTIONS(2584), - [anon_sym_constinit] = ACTIONS(2584), - [anon_sym_consteval] = ACTIONS(2584), - [anon_sym_signed] = ACTIONS(2584), - [anon_sym_unsigned] = ACTIONS(2584), - [anon_sym_long] = ACTIONS(2584), - [anon_sym_short] = ACTIONS(2584), - [sym_primitive_type] = ACTIONS(2584), - [anon_sym_enum] = ACTIONS(2584), - [anon_sym_class] = ACTIONS(2584), - [anon_sym_struct] = ACTIONS(2584), - [anon_sym_union] = ACTIONS(2584), - [anon_sym_if] = ACTIONS(2584), - [anon_sym_else] = ACTIONS(2584), - [anon_sym_switch] = ACTIONS(2584), - [anon_sym_while] = ACTIONS(2584), - [anon_sym_do] = ACTIONS(2584), - [anon_sym_for] = ACTIONS(2584), - [anon_sym_return] = ACTIONS(2584), - [anon_sym_break] = ACTIONS(2584), - [anon_sym_continue] = ACTIONS(2584), - [anon_sym_goto] = ACTIONS(2584), - [anon_sym_not] = ACTIONS(2584), - [anon_sym_compl] = ACTIONS(2584), - [anon_sym_DASH_DASH] = ACTIONS(2586), - [anon_sym_PLUS_PLUS] = ACTIONS(2586), - [anon_sym_sizeof] = ACTIONS(2584), - [sym_number_literal] = ACTIONS(2586), - [anon_sym_L_SQUOTE] = ACTIONS(2586), - [anon_sym_u_SQUOTE] = ACTIONS(2586), - [anon_sym_U_SQUOTE] = ACTIONS(2586), - [anon_sym_u8_SQUOTE] = ACTIONS(2586), - [anon_sym_SQUOTE] = ACTIONS(2586), - [anon_sym_L_DQUOTE] = ACTIONS(2586), - [anon_sym_u_DQUOTE] = ACTIONS(2586), - [anon_sym_U_DQUOTE] = ACTIONS(2586), - [anon_sym_u8_DQUOTE] = ACTIONS(2586), - [anon_sym_DQUOTE] = ACTIONS(2586), - [sym_true] = ACTIONS(2584), - [sym_false] = ACTIONS(2584), - [sym_null] = ACTIONS(2584), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2584), - [anon_sym_decltype] = ACTIONS(2584), - [anon_sym_virtual] = ACTIONS(2584), - [anon_sym_typename] = ACTIONS(2584), - [anon_sym_template] = ACTIONS(2584), - [anon_sym_try] = ACTIONS(2584), - [anon_sym_delete] = ACTIONS(2584), - [anon_sym_throw] = ACTIONS(2584), - [anon_sym_co_return] = ACTIONS(2584), - [anon_sym_co_yield] = ACTIONS(2584), - [anon_sym_R_DQUOTE] = ACTIONS(2586), - [anon_sym_LR_DQUOTE] = ACTIONS(2586), - [anon_sym_uR_DQUOTE] = ACTIONS(2586), - [anon_sym_UR_DQUOTE] = ACTIONS(2586), - [anon_sym_u8R_DQUOTE] = ACTIONS(2586), - [anon_sym_co_await] = ACTIONS(2584), - [anon_sym_new] = ACTIONS(2584), - [anon_sym_requires] = ACTIONS(2584), - [sym_this] = ACTIONS(2584), - [sym_nullptr] = ACTIONS(2584), + [sym_identifier] = ACTIONS(3164), + [aux_sym_preproc_include_token1] = ACTIONS(3164), + [aux_sym_preproc_def_token1] = ACTIONS(3164), + [aux_sym_preproc_if_token1] = ACTIONS(3164), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3164), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3164), + [sym_preproc_directive] = ACTIONS(3164), + [anon_sym_LPAREN2] = ACTIONS(3166), + [anon_sym_BANG] = ACTIONS(3166), + [anon_sym_TILDE] = ACTIONS(3166), + [anon_sym_DASH] = ACTIONS(3164), + [anon_sym_PLUS] = ACTIONS(3164), + [anon_sym_STAR] = ACTIONS(3166), + [anon_sym_AMP_AMP] = ACTIONS(3166), + [anon_sym_AMP] = ACTIONS(3164), + [anon_sym_SEMI] = ACTIONS(3166), + [anon_sym_typedef] = ACTIONS(3164), + [anon_sym_extern] = ACTIONS(3164), + [anon_sym___attribute__] = ACTIONS(3164), + [anon_sym_COLON_COLON] = ACTIONS(3166), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3166), + [anon_sym___declspec] = ACTIONS(3164), + [anon_sym___based] = ACTIONS(3164), + [anon_sym___cdecl] = ACTIONS(3164), + [anon_sym___clrcall] = ACTIONS(3164), + [anon_sym___stdcall] = ACTIONS(3164), + [anon_sym___fastcall] = ACTIONS(3164), + [anon_sym___thiscall] = ACTIONS(3164), + [anon_sym___vectorcall] = ACTIONS(3164), + [anon_sym_LBRACE] = ACTIONS(3166), + [anon_sym_RBRACE] = ACTIONS(3166), + [anon_sym_LBRACK] = ACTIONS(3164), + [anon_sym_static] = ACTIONS(3164), + [anon_sym_register] = ACTIONS(3164), + [anon_sym_inline] = ACTIONS(3164), + [anon_sym_thread_local] = ACTIONS(3164), + [anon_sym_const] = ACTIONS(3164), + [anon_sym_constexpr] = ACTIONS(3164), + [anon_sym_volatile] = ACTIONS(3164), + [anon_sym_restrict] = ACTIONS(3164), + [anon_sym___restrict__] = ACTIONS(3164), + [anon_sym__Atomic] = ACTIONS(3164), + [anon_sym__Noreturn] = ACTIONS(3164), + [anon_sym_noreturn] = ACTIONS(3164), + [anon_sym_mutable] = ACTIONS(3164), + [anon_sym_constinit] = ACTIONS(3164), + [anon_sym_consteval] = ACTIONS(3164), + [anon_sym_signed] = ACTIONS(3164), + [anon_sym_unsigned] = ACTIONS(3164), + [anon_sym_long] = ACTIONS(3164), + [anon_sym_short] = ACTIONS(3164), + [sym_primitive_type] = ACTIONS(3164), + [anon_sym_enum] = ACTIONS(3164), + [anon_sym_class] = ACTIONS(3164), + [anon_sym_struct] = ACTIONS(3164), + [anon_sym_union] = ACTIONS(3164), + [anon_sym_if] = ACTIONS(3164), + [anon_sym_switch] = ACTIONS(3164), + [anon_sym_case] = ACTIONS(3164), + [anon_sym_default] = ACTIONS(3164), + [anon_sym_while] = ACTIONS(3164), + [anon_sym_do] = ACTIONS(3164), + [anon_sym_for] = ACTIONS(3164), + [anon_sym_return] = ACTIONS(3164), + [anon_sym_break] = ACTIONS(3164), + [anon_sym_continue] = ACTIONS(3164), + [anon_sym_goto] = ACTIONS(3164), + [anon_sym_not] = ACTIONS(3164), + [anon_sym_compl] = ACTIONS(3164), + [anon_sym_DASH_DASH] = ACTIONS(3166), + [anon_sym_PLUS_PLUS] = ACTIONS(3166), + [anon_sym_sizeof] = ACTIONS(3164), + [anon_sym_offsetof] = ACTIONS(3164), + [anon_sym__Generic] = ACTIONS(3164), + [anon_sym_asm] = ACTIONS(3164), + [anon_sym___asm__] = ACTIONS(3164), + [sym_number_literal] = ACTIONS(3166), + [anon_sym_L_SQUOTE] = ACTIONS(3166), + [anon_sym_u_SQUOTE] = ACTIONS(3166), + [anon_sym_U_SQUOTE] = ACTIONS(3166), + [anon_sym_u8_SQUOTE] = ACTIONS(3166), + [anon_sym_SQUOTE] = ACTIONS(3166), + [anon_sym_L_DQUOTE] = ACTIONS(3166), + [anon_sym_u_DQUOTE] = ACTIONS(3166), + [anon_sym_U_DQUOTE] = ACTIONS(3166), + [anon_sym_u8_DQUOTE] = ACTIONS(3166), + [anon_sym_DQUOTE] = ACTIONS(3166), + [sym_true] = ACTIONS(3164), + [sym_false] = ACTIONS(3164), + [anon_sym_NULL] = ACTIONS(3164), + [anon_sym_nullptr] = ACTIONS(3164), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3164), + [anon_sym_decltype] = ACTIONS(3164), + [anon_sym_virtual] = ACTIONS(3164), + [anon_sym_explicit] = ACTIONS(3164), + [anon_sym_typename] = ACTIONS(3164), + [anon_sym_template] = ACTIONS(3164), + [anon_sym_operator] = ACTIONS(3164), + [anon_sym_try] = ACTIONS(3164), + [anon_sym_delete] = ACTIONS(3164), + [anon_sym_throw] = ACTIONS(3164), + [anon_sym_namespace] = ACTIONS(3164), + [anon_sym_using] = ACTIONS(3164), + [anon_sym_static_assert] = ACTIONS(3164), + [anon_sym_concept] = ACTIONS(3164), + [anon_sym_co_return] = ACTIONS(3164), + [anon_sym_co_yield] = ACTIONS(3164), + [anon_sym_R_DQUOTE] = ACTIONS(3166), + [anon_sym_LR_DQUOTE] = ACTIONS(3166), + [anon_sym_uR_DQUOTE] = ACTIONS(3166), + [anon_sym_UR_DQUOTE] = ACTIONS(3166), + [anon_sym_u8R_DQUOTE] = ACTIONS(3166), + [anon_sym_co_await] = ACTIONS(3164), + [anon_sym_new] = ACTIONS(3164), + [anon_sym_requires] = ACTIONS(3164), + [sym_this] = ACTIONS(3164), }, [1264] = { - [sym_identifier] = ACTIONS(3135), - [anon_sym_LPAREN2] = ACTIONS(3137), - [anon_sym_BANG] = ACTIONS(3137), - [anon_sym_TILDE] = ACTIONS(3137), - [anon_sym_DASH] = ACTIONS(3135), - [anon_sym_PLUS] = ACTIONS(3135), - [anon_sym_STAR] = ACTIONS(3137), - [anon_sym_AMP] = ACTIONS(3137), - [anon_sym_SEMI] = ACTIONS(3137), - [anon_sym_extern] = ACTIONS(3135), - [anon_sym___attribute__] = ACTIONS(3135), - [anon_sym_COLON_COLON] = ACTIONS(3137), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3137), - [anon_sym___declspec] = ACTIONS(3135), - [anon_sym_LBRACE] = ACTIONS(3137), - [anon_sym_LBRACK] = ACTIONS(3135), - [anon_sym_static] = ACTIONS(3135), - [anon_sym_register] = ACTIONS(3135), - [anon_sym_inline] = ACTIONS(3135), - [anon_sym_thread_local] = ACTIONS(3135), - [anon_sym_const] = ACTIONS(3135), - [anon_sym_volatile] = ACTIONS(3135), - [anon_sym_restrict] = ACTIONS(3135), - [anon_sym__Atomic] = ACTIONS(3135), - [anon_sym_mutable] = ACTIONS(3135), - [anon_sym_constexpr] = ACTIONS(3135), - [anon_sym_constinit] = ACTIONS(3135), - [anon_sym_consteval] = ACTIONS(3135), - [anon_sym_signed] = ACTIONS(3135), - [anon_sym_unsigned] = ACTIONS(3135), - [anon_sym_long] = ACTIONS(3135), - [anon_sym_short] = ACTIONS(3135), - [sym_primitive_type] = ACTIONS(3135), - [anon_sym_enum] = ACTIONS(3135), - [anon_sym_class] = ACTIONS(3135), - [anon_sym_struct] = ACTIONS(3135), - [anon_sym_union] = ACTIONS(3135), - [anon_sym_if] = ACTIONS(3135), - [anon_sym_switch] = ACTIONS(3135), - [anon_sym_case] = ACTIONS(3135), - [anon_sym_default] = ACTIONS(3135), - [anon_sym_while] = ACTIONS(3135), - [anon_sym_do] = ACTIONS(3135), - [anon_sym_for] = ACTIONS(3135), - [anon_sym_return] = ACTIONS(3135), - [anon_sym_break] = ACTIONS(3135), - [anon_sym_continue] = ACTIONS(3135), - [anon_sym_goto] = ACTIONS(3135), - [anon_sym_not] = ACTIONS(3135), - [anon_sym_compl] = ACTIONS(3135), - [anon_sym_DASH_DASH] = ACTIONS(3137), - [anon_sym_PLUS_PLUS] = ACTIONS(3137), - [anon_sym_sizeof] = ACTIONS(3135), - [sym_number_literal] = ACTIONS(3137), - [anon_sym_L_SQUOTE] = ACTIONS(3137), - [anon_sym_u_SQUOTE] = ACTIONS(3137), - [anon_sym_U_SQUOTE] = ACTIONS(3137), - [anon_sym_u8_SQUOTE] = ACTIONS(3137), - [anon_sym_SQUOTE] = ACTIONS(3137), - [anon_sym_L_DQUOTE] = ACTIONS(3137), - [anon_sym_u_DQUOTE] = ACTIONS(3137), - [anon_sym_U_DQUOTE] = ACTIONS(3137), - [anon_sym_u8_DQUOTE] = ACTIONS(3137), - [anon_sym_DQUOTE] = ACTIONS(3137), - [sym_true] = ACTIONS(3135), - [sym_false] = ACTIONS(3135), - [sym_null] = ACTIONS(3135), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3135), - [anon_sym_decltype] = ACTIONS(3135), - [anon_sym_virtual] = ACTIONS(3135), - [anon_sym_typename] = ACTIONS(3135), - [anon_sym_template] = ACTIONS(3135), - [anon_sym_try] = ACTIONS(3135), - [anon_sym_delete] = ACTIONS(3135), - [anon_sym_throw] = ACTIONS(3135), - [anon_sym_co_return] = ACTIONS(3135), - [anon_sym_co_yield] = ACTIONS(3135), - [anon_sym_R_DQUOTE] = ACTIONS(3137), - [anon_sym_LR_DQUOTE] = ACTIONS(3137), - [anon_sym_uR_DQUOTE] = ACTIONS(3137), - [anon_sym_UR_DQUOTE] = ACTIONS(3137), - [anon_sym_u8R_DQUOTE] = ACTIONS(3137), - [anon_sym_co_await] = ACTIONS(3135), - [anon_sym_new] = ACTIONS(3135), - [anon_sym_requires] = ACTIONS(3135), - [sym_this] = ACTIONS(3135), - [sym_nullptr] = ACTIONS(3135), + [sym_identifier] = ACTIONS(3364), + [aux_sym_preproc_include_token1] = ACTIONS(3364), + [aux_sym_preproc_def_token1] = ACTIONS(3364), + [aux_sym_preproc_if_token1] = ACTIONS(3364), + [aux_sym_preproc_if_token2] = ACTIONS(3364), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3364), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3364), + [sym_preproc_directive] = ACTIONS(3364), + [anon_sym_LPAREN2] = ACTIONS(3366), + [anon_sym_BANG] = ACTIONS(3366), + [anon_sym_TILDE] = ACTIONS(3366), + [anon_sym_DASH] = ACTIONS(3364), + [anon_sym_PLUS] = ACTIONS(3364), + [anon_sym_STAR] = ACTIONS(3366), + [anon_sym_AMP_AMP] = ACTIONS(3366), + [anon_sym_AMP] = ACTIONS(3364), + [anon_sym_SEMI] = ACTIONS(3366), + [anon_sym_typedef] = ACTIONS(3364), + [anon_sym_extern] = ACTIONS(3364), + [anon_sym___attribute__] = ACTIONS(3364), + [anon_sym_COLON_COLON] = ACTIONS(3366), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3366), + [anon_sym___declspec] = ACTIONS(3364), + [anon_sym___based] = ACTIONS(3364), + [anon_sym___cdecl] = ACTIONS(3364), + [anon_sym___clrcall] = ACTIONS(3364), + [anon_sym___stdcall] = ACTIONS(3364), + [anon_sym___fastcall] = ACTIONS(3364), + [anon_sym___thiscall] = ACTIONS(3364), + [anon_sym___vectorcall] = ACTIONS(3364), + [anon_sym_LBRACE] = ACTIONS(3366), + [anon_sym_LBRACK] = ACTIONS(3364), + [anon_sym_static] = ACTIONS(3364), + [anon_sym_register] = ACTIONS(3364), + [anon_sym_inline] = ACTIONS(3364), + [anon_sym_thread_local] = ACTIONS(3364), + [anon_sym_const] = ACTIONS(3364), + [anon_sym_constexpr] = ACTIONS(3364), + [anon_sym_volatile] = ACTIONS(3364), + [anon_sym_restrict] = ACTIONS(3364), + [anon_sym___restrict__] = ACTIONS(3364), + [anon_sym__Atomic] = ACTIONS(3364), + [anon_sym__Noreturn] = ACTIONS(3364), + [anon_sym_noreturn] = ACTIONS(3364), + [anon_sym_mutable] = ACTIONS(3364), + [anon_sym_constinit] = ACTIONS(3364), + [anon_sym_consteval] = ACTIONS(3364), + [anon_sym_signed] = ACTIONS(3364), + [anon_sym_unsigned] = ACTIONS(3364), + [anon_sym_long] = ACTIONS(3364), + [anon_sym_short] = ACTIONS(3364), + [sym_primitive_type] = ACTIONS(3364), + [anon_sym_enum] = ACTIONS(3364), + [anon_sym_class] = ACTIONS(3364), + [anon_sym_struct] = ACTIONS(3364), + [anon_sym_union] = ACTIONS(3364), + [anon_sym_if] = ACTIONS(3364), + [anon_sym_switch] = ACTIONS(3364), + [anon_sym_case] = ACTIONS(3364), + [anon_sym_default] = ACTIONS(3364), + [anon_sym_while] = ACTIONS(3364), + [anon_sym_do] = ACTIONS(3364), + [anon_sym_for] = ACTIONS(3364), + [anon_sym_return] = ACTIONS(3364), + [anon_sym_break] = ACTIONS(3364), + [anon_sym_continue] = ACTIONS(3364), + [anon_sym_goto] = ACTIONS(3364), + [anon_sym_not] = ACTIONS(3364), + [anon_sym_compl] = ACTIONS(3364), + [anon_sym_DASH_DASH] = ACTIONS(3366), + [anon_sym_PLUS_PLUS] = ACTIONS(3366), + [anon_sym_sizeof] = ACTIONS(3364), + [anon_sym_offsetof] = ACTIONS(3364), + [anon_sym__Generic] = ACTIONS(3364), + [anon_sym_asm] = ACTIONS(3364), + [anon_sym___asm__] = ACTIONS(3364), + [sym_number_literal] = ACTIONS(3366), + [anon_sym_L_SQUOTE] = ACTIONS(3366), + [anon_sym_u_SQUOTE] = ACTIONS(3366), + [anon_sym_U_SQUOTE] = ACTIONS(3366), + [anon_sym_u8_SQUOTE] = ACTIONS(3366), + [anon_sym_SQUOTE] = ACTIONS(3366), + [anon_sym_L_DQUOTE] = ACTIONS(3366), + [anon_sym_u_DQUOTE] = ACTIONS(3366), + [anon_sym_U_DQUOTE] = ACTIONS(3366), + [anon_sym_u8_DQUOTE] = ACTIONS(3366), + [anon_sym_DQUOTE] = ACTIONS(3366), + [sym_true] = ACTIONS(3364), + [sym_false] = ACTIONS(3364), + [anon_sym_NULL] = ACTIONS(3364), + [anon_sym_nullptr] = ACTIONS(3364), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3364), + [anon_sym_decltype] = ACTIONS(3364), + [anon_sym_virtual] = ACTIONS(3364), + [anon_sym_explicit] = ACTIONS(3364), + [anon_sym_typename] = ACTIONS(3364), + [anon_sym_template] = ACTIONS(3364), + [anon_sym_operator] = ACTIONS(3364), + [anon_sym_try] = ACTIONS(3364), + [anon_sym_delete] = ACTIONS(3364), + [anon_sym_throw] = ACTIONS(3364), + [anon_sym_namespace] = ACTIONS(3364), + [anon_sym_using] = ACTIONS(3364), + [anon_sym_static_assert] = ACTIONS(3364), + [anon_sym_concept] = ACTIONS(3364), + [anon_sym_co_return] = ACTIONS(3364), + [anon_sym_co_yield] = ACTIONS(3364), + [anon_sym_R_DQUOTE] = ACTIONS(3366), + [anon_sym_LR_DQUOTE] = ACTIONS(3366), + [anon_sym_uR_DQUOTE] = ACTIONS(3366), + [anon_sym_UR_DQUOTE] = ACTIONS(3366), + [anon_sym_u8R_DQUOTE] = ACTIONS(3366), + [anon_sym_co_await] = ACTIONS(3364), + [anon_sym_new] = ACTIONS(3364), + [anon_sym_requires] = ACTIONS(3364), + [sym_this] = ACTIONS(3364), }, [1265] = { - [sym_identifier] = ACTIONS(2588), - [anon_sym_LPAREN2] = ACTIONS(2590), - [anon_sym_BANG] = ACTIONS(2590), - [anon_sym_TILDE] = ACTIONS(2590), - [anon_sym_DASH] = ACTIONS(2588), - [anon_sym_PLUS] = ACTIONS(2588), - [anon_sym_STAR] = ACTIONS(2590), - [anon_sym_AMP] = ACTIONS(2590), - [anon_sym_SEMI] = ACTIONS(2590), - [anon_sym_typedef] = ACTIONS(2588), - [anon_sym_extern] = ACTIONS(2588), - [anon_sym___attribute__] = ACTIONS(2588), - [anon_sym_COLON_COLON] = ACTIONS(2590), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2590), - [anon_sym___declspec] = ACTIONS(2588), - [anon_sym_LBRACE] = ACTIONS(2590), - [anon_sym_LBRACK] = ACTIONS(2588), - [anon_sym_static] = ACTIONS(2588), - [anon_sym_register] = ACTIONS(2588), - [anon_sym_inline] = ACTIONS(2588), - [anon_sym_thread_local] = ACTIONS(2588), - [anon_sym_const] = ACTIONS(2588), - [anon_sym_volatile] = ACTIONS(2588), - [anon_sym_restrict] = ACTIONS(2588), - [anon_sym__Atomic] = ACTIONS(2588), - [anon_sym_mutable] = ACTIONS(2588), - [anon_sym_constexpr] = ACTIONS(2588), - [anon_sym_constinit] = ACTIONS(2588), - [anon_sym_consteval] = ACTIONS(2588), - [anon_sym_signed] = ACTIONS(2588), - [anon_sym_unsigned] = ACTIONS(2588), - [anon_sym_long] = ACTIONS(2588), - [anon_sym_short] = ACTIONS(2588), - [sym_primitive_type] = ACTIONS(2588), - [anon_sym_enum] = ACTIONS(2588), - [anon_sym_class] = ACTIONS(2588), - [anon_sym_struct] = ACTIONS(2588), - [anon_sym_union] = ACTIONS(2588), - [anon_sym_if] = ACTIONS(2588), - [anon_sym_else] = ACTIONS(2588), - [anon_sym_switch] = ACTIONS(2588), - [anon_sym_while] = ACTIONS(2588), - [anon_sym_do] = ACTIONS(2588), - [anon_sym_for] = ACTIONS(2588), - [anon_sym_return] = ACTIONS(2588), - [anon_sym_break] = ACTIONS(2588), - [anon_sym_continue] = ACTIONS(2588), - [anon_sym_goto] = ACTIONS(2588), - [anon_sym_not] = ACTIONS(2588), - [anon_sym_compl] = ACTIONS(2588), - [anon_sym_DASH_DASH] = ACTIONS(2590), - [anon_sym_PLUS_PLUS] = ACTIONS(2590), - [anon_sym_sizeof] = ACTIONS(2588), - [sym_number_literal] = ACTIONS(2590), - [anon_sym_L_SQUOTE] = ACTIONS(2590), - [anon_sym_u_SQUOTE] = ACTIONS(2590), - [anon_sym_U_SQUOTE] = ACTIONS(2590), - [anon_sym_u8_SQUOTE] = ACTIONS(2590), - [anon_sym_SQUOTE] = ACTIONS(2590), - [anon_sym_L_DQUOTE] = ACTIONS(2590), - [anon_sym_u_DQUOTE] = ACTIONS(2590), - [anon_sym_U_DQUOTE] = ACTIONS(2590), - [anon_sym_u8_DQUOTE] = ACTIONS(2590), - [anon_sym_DQUOTE] = ACTIONS(2590), - [sym_true] = ACTIONS(2588), - [sym_false] = ACTIONS(2588), - [sym_null] = ACTIONS(2588), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2588), - [anon_sym_decltype] = ACTIONS(2588), - [anon_sym_virtual] = ACTIONS(2588), - [anon_sym_typename] = ACTIONS(2588), - [anon_sym_template] = ACTIONS(2588), - [anon_sym_try] = ACTIONS(2588), - [anon_sym_delete] = ACTIONS(2588), - [anon_sym_throw] = ACTIONS(2588), - [anon_sym_co_return] = ACTIONS(2588), - [anon_sym_co_yield] = ACTIONS(2588), - [anon_sym_R_DQUOTE] = ACTIONS(2590), - [anon_sym_LR_DQUOTE] = ACTIONS(2590), - [anon_sym_uR_DQUOTE] = ACTIONS(2590), - [anon_sym_UR_DQUOTE] = ACTIONS(2590), - [anon_sym_u8R_DQUOTE] = ACTIONS(2590), - [anon_sym_co_await] = ACTIONS(2588), - [anon_sym_new] = ACTIONS(2588), - [anon_sym_requires] = ACTIONS(2588), - [sym_this] = ACTIONS(2588), - [sym_nullptr] = ACTIONS(2588), + [sym_identifier] = ACTIONS(3160), + [aux_sym_preproc_include_token1] = ACTIONS(3160), + [aux_sym_preproc_def_token1] = ACTIONS(3160), + [aux_sym_preproc_if_token1] = ACTIONS(3160), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3160), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3160), + [sym_preproc_directive] = ACTIONS(3160), + [anon_sym_LPAREN2] = ACTIONS(3162), + [anon_sym_BANG] = ACTIONS(3162), + [anon_sym_TILDE] = ACTIONS(3162), + [anon_sym_DASH] = ACTIONS(3160), + [anon_sym_PLUS] = ACTIONS(3160), + [anon_sym_STAR] = ACTIONS(3162), + [anon_sym_AMP_AMP] = ACTIONS(3162), + [anon_sym_AMP] = ACTIONS(3160), + [anon_sym_SEMI] = ACTIONS(3162), + [anon_sym_typedef] = ACTIONS(3160), + [anon_sym_extern] = ACTIONS(3160), + [anon_sym___attribute__] = ACTIONS(3160), + [anon_sym_COLON_COLON] = ACTIONS(3162), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3162), + [anon_sym___declspec] = ACTIONS(3160), + [anon_sym___based] = ACTIONS(3160), + [anon_sym___cdecl] = ACTIONS(3160), + [anon_sym___clrcall] = ACTIONS(3160), + [anon_sym___stdcall] = ACTIONS(3160), + [anon_sym___fastcall] = ACTIONS(3160), + [anon_sym___thiscall] = ACTIONS(3160), + [anon_sym___vectorcall] = ACTIONS(3160), + [anon_sym_LBRACE] = ACTIONS(3162), + [anon_sym_RBRACE] = ACTIONS(3162), + [anon_sym_LBRACK] = ACTIONS(3160), + [anon_sym_static] = ACTIONS(3160), + [anon_sym_register] = ACTIONS(3160), + [anon_sym_inline] = ACTIONS(3160), + [anon_sym_thread_local] = ACTIONS(3160), + [anon_sym_const] = ACTIONS(3160), + [anon_sym_constexpr] = ACTIONS(3160), + [anon_sym_volatile] = ACTIONS(3160), + [anon_sym_restrict] = ACTIONS(3160), + [anon_sym___restrict__] = ACTIONS(3160), + [anon_sym__Atomic] = ACTIONS(3160), + [anon_sym__Noreturn] = ACTIONS(3160), + [anon_sym_noreturn] = ACTIONS(3160), + [anon_sym_mutable] = ACTIONS(3160), + [anon_sym_constinit] = ACTIONS(3160), + [anon_sym_consteval] = ACTIONS(3160), + [anon_sym_signed] = ACTIONS(3160), + [anon_sym_unsigned] = ACTIONS(3160), + [anon_sym_long] = ACTIONS(3160), + [anon_sym_short] = ACTIONS(3160), + [sym_primitive_type] = ACTIONS(3160), + [anon_sym_enum] = ACTIONS(3160), + [anon_sym_class] = ACTIONS(3160), + [anon_sym_struct] = ACTIONS(3160), + [anon_sym_union] = ACTIONS(3160), + [anon_sym_if] = ACTIONS(3160), + [anon_sym_switch] = ACTIONS(3160), + [anon_sym_case] = ACTIONS(3160), + [anon_sym_default] = ACTIONS(3160), + [anon_sym_while] = ACTIONS(3160), + [anon_sym_do] = ACTIONS(3160), + [anon_sym_for] = ACTIONS(3160), + [anon_sym_return] = ACTIONS(3160), + [anon_sym_break] = ACTIONS(3160), + [anon_sym_continue] = ACTIONS(3160), + [anon_sym_goto] = ACTIONS(3160), + [anon_sym_not] = ACTIONS(3160), + [anon_sym_compl] = ACTIONS(3160), + [anon_sym_DASH_DASH] = ACTIONS(3162), + [anon_sym_PLUS_PLUS] = ACTIONS(3162), + [anon_sym_sizeof] = ACTIONS(3160), + [anon_sym_offsetof] = ACTIONS(3160), + [anon_sym__Generic] = ACTIONS(3160), + [anon_sym_asm] = ACTIONS(3160), + [anon_sym___asm__] = ACTIONS(3160), + [sym_number_literal] = ACTIONS(3162), + [anon_sym_L_SQUOTE] = ACTIONS(3162), + [anon_sym_u_SQUOTE] = ACTIONS(3162), + [anon_sym_U_SQUOTE] = ACTIONS(3162), + [anon_sym_u8_SQUOTE] = ACTIONS(3162), + [anon_sym_SQUOTE] = ACTIONS(3162), + [anon_sym_L_DQUOTE] = ACTIONS(3162), + [anon_sym_u_DQUOTE] = ACTIONS(3162), + [anon_sym_U_DQUOTE] = ACTIONS(3162), + [anon_sym_u8_DQUOTE] = ACTIONS(3162), + [anon_sym_DQUOTE] = ACTIONS(3162), + [sym_true] = ACTIONS(3160), + [sym_false] = ACTIONS(3160), + [anon_sym_NULL] = ACTIONS(3160), + [anon_sym_nullptr] = ACTIONS(3160), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3160), + [anon_sym_decltype] = ACTIONS(3160), + [anon_sym_virtual] = ACTIONS(3160), + [anon_sym_explicit] = ACTIONS(3160), + [anon_sym_typename] = ACTIONS(3160), + [anon_sym_template] = ACTIONS(3160), + [anon_sym_operator] = ACTIONS(3160), + [anon_sym_try] = ACTIONS(3160), + [anon_sym_delete] = ACTIONS(3160), + [anon_sym_throw] = ACTIONS(3160), + [anon_sym_namespace] = ACTIONS(3160), + [anon_sym_using] = ACTIONS(3160), + [anon_sym_static_assert] = ACTIONS(3160), + [anon_sym_concept] = ACTIONS(3160), + [anon_sym_co_return] = ACTIONS(3160), + [anon_sym_co_yield] = ACTIONS(3160), + [anon_sym_R_DQUOTE] = ACTIONS(3162), + [anon_sym_LR_DQUOTE] = ACTIONS(3162), + [anon_sym_uR_DQUOTE] = ACTIONS(3162), + [anon_sym_UR_DQUOTE] = ACTIONS(3162), + [anon_sym_u8R_DQUOTE] = ACTIONS(3162), + [anon_sym_co_await] = ACTIONS(3160), + [anon_sym_new] = ACTIONS(3160), + [anon_sym_requires] = ACTIONS(3160), + [sym_this] = ACTIONS(3160), }, [1266] = { - [sym_identifier] = ACTIONS(2596), - [anon_sym_LPAREN2] = ACTIONS(2598), - [anon_sym_BANG] = ACTIONS(2598), - [anon_sym_TILDE] = ACTIONS(2598), - [anon_sym_DASH] = ACTIONS(2596), - [anon_sym_PLUS] = ACTIONS(2596), - [anon_sym_STAR] = ACTIONS(2598), - [anon_sym_AMP] = ACTIONS(2598), - [anon_sym_SEMI] = ACTIONS(2598), - [anon_sym_typedef] = ACTIONS(2596), - [anon_sym_extern] = ACTIONS(2596), - [anon_sym___attribute__] = ACTIONS(2596), - [anon_sym_COLON_COLON] = ACTIONS(2598), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2598), - [anon_sym___declspec] = ACTIONS(2596), - [anon_sym_LBRACE] = ACTIONS(2598), - [anon_sym_LBRACK] = ACTIONS(2596), - [anon_sym_static] = ACTIONS(2596), - [anon_sym_register] = ACTIONS(2596), - [anon_sym_inline] = ACTIONS(2596), - [anon_sym_thread_local] = ACTIONS(2596), - [anon_sym_const] = ACTIONS(2596), - [anon_sym_volatile] = ACTIONS(2596), - [anon_sym_restrict] = ACTIONS(2596), - [anon_sym__Atomic] = ACTIONS(2596), - [anon_sym_mutable] = ACTIONS(2596), - [anon_sym_constexpr] = ACTIONS(2596), - [anon_sym_constinit] = ACTIONS(2596), - [anon_sym_consteval] = ACTIONS(2596), - [anon_sym_signed] = ACTIONS(2596), - [anon_sym_unsigned] = ACTIONS(2596), - [anon_sym_long] = ACTIONS(2596), - [anon_sym_short] = ACTIONS(2596), - [sym_primitive_type] = ACTIONS(2596), - [anon_sym_enum] = ACTIONS(2596), - [anon_sym_class] = ACTIONS(2596), - [anon_sym_struct] = ACTIONS(2596), - [anon_sym_union] = ACTIONS(2596), - [anon_sym_if] = ACTIONS(2596), - [anon_sym_else] = ACTIONS(2596), - [anon_sym_switch] = ACTIONS(2596), - [anon_sym_while] = ACTIONS(2596), - [anon_sym_do] = ACTIONS(2596), - [anon_sym_for] = ACTIONS(2596), - [anon_sym_return] = ACTIONS(2596), - [anon_sym_break] = ACTIONS(2596), - [anon_sym_continue] = ACTIONS(2596), - [anon_sym_goto] = ACTIONS(2596), - [anon_sym_not] = ACTIONS(2596), - [anon_sym_compl] = ACTIONS(2596), - [anon_sym_DASH_DASH] = ACTIONS(2598), - [anon_sym_PLUS_PLUS] = ACTIONS(2598), - [anon_sym_sizeof] = ACTIONS(2596), - [sym_number_literal] = ACTIONS(2598), - [anon_sym_L_SQUOTE] = ACTIONS(2598), - [anon_sym_u_SQUOTE] = ACTIONS(2598), - [anon_sym_U_SQUOTE] = ACTIONS(2598), - [anon_sym_u8_SQUOTE] = ACTIONS(2598), - [anon_sym_SQUOTE] = ACTIONS(2598), - [anon_sym_L_DQUOTE] = ACTIONS(2598), - [anon_sym_u_DQUOTE] = ACTIONS(2598), - [anon_sym_U_DQUOTE] = ACTIONS(2598), - [anon_sym_u8_DQUOTE] = ACTIONS(2598), - [anon_sym_DQUOTE] = ACTIONS(2598), - [sym_true] = ACTIONS(2596), - [sym_false] = ACTIONS(2596), - [sym_null] = ACTIONS(2596), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2596), - [anon_sym_decltype] = ACTIONS(2596), - [anon_sym_virtual] = ACTIONS(2596), - [anon_sym_typename] = ACTIONS(2596), - [anon_sym_template] = ACTIONS(2596), - [anon_sym_try] = ACTIONS(2596), - [anon_sym_delete] = ACTIONS(2596), - [anon_sym_throw] = ACTIONS(2596), - [anon_sym_co_return] = ACTIONS(2596), - [anon_sym_co_yield] = ACTIONS(2596), - [anon_sym_R_DQUOTE] = ACTIONS(2598), - [anon_sym_LR_DQUOTE] = ACTIONS(2598), - [anon_sym_uR_DQUOTE] = ACTIONS(2598), - [anon_sym_UR_DQUOTE] = ACTIONS(2598), - [anon_sym_u8R_DQUOTE] = ACTIONS(2598), - [anon_sym_co_await] = ACTIONS(2596), - [anon_sym_new] = ACTIONS(2596), - [anon_sym_requires] = ACTIONS(2596), - [sym_this] = ACTIONS(2596), - [sym_nullptr] = ACTIONS(2596), + [sym_identifier] = ACTIONS(3156), + [aux_sym_preproc_include_token1] = ACTIONS(3156), + [aux_sym_preproc_def_token1] = ACTIONS(3156), + [aux_sym_preproc_if_token1] = ACTIONS(3156), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3156), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3156), + [sym_preproc_directive] = ACTIONS(3156), + [anon_sym_LPAREN2] = ACTIONS(3158), + [anon_sym_BANG] = ACTIONS(3158), + [anon_sym_TILDE] = ACTIONS(3158), + [anon_sym_DASH] = ACTIONS(3156), + [anon_sym_PLUS] = ACTIONS(3156), + [anon_sym_STAR] = ACTIONS(3158), + [anon_sym_AMP_AMP] = ACTIONS(3158), + [anon_sym_AMP] = ACTIONS(3156), + [anon_sym_SEMI] = ACTIONS(3158), + [anon_sym_typedef] = ACTIONS(3156), + [anon_sym_extern] = ACTIONS(3156), + [anon_sym___attribute__] = ACTIONS(3156), + [anon_sym_COLON_COLON] = ACTIONS(3158), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3158), + [anon_sym___declspec] = ACTIONS(3156), + [anon_sym___based] = ACTIONS(3156), + [anon_sym___cdecl] = ACTIONS(3156), + [anon_sym___clrcall] = ACTIONS(3156), + [anon_sym___stdcall] = ACTIONS(3156), + [anon_sym___fastcall] = ACTIONS(3156), + [anon_sym___thiscall] = ACTIONS(3156), + [anon_sym___vectorcall] = ACTIONS(3156), + [anon_sym_LBRACE] = ACTIONS(3158), + [anon_sym_RBRACE] = ACTIONS(3158), + [anon_sym_LBRACK] = ACTIONS(3156), + [anon_sym_static] = ACTIONS(3156), + [anon_sym_register] = ACTIONS(3156), + [anon_sym_inline] = ACTIONS(3156), + [anon_sym_thread_local] = ACTIONS(3156), + [anon_sym_const] = ACTIONS(3156), + [anon_sym_constexpr] = ACTIONS(3156), + [anon_sym_volatile] = ACTIONS(3156), + [anon_sym_restrict] = ACTIONS(3156), + [anon_sym___restrict__] = ACTIONS(3156), + [anon_sym__Atomic] = ACTIONS(3156), + [anon_sym__Noreturn] = ACTIONS(3156), + [anon_sym_noreturn] = ACTIONS(3156), + [anon_sym_mutable] = ACTIONS(3156), + [anon_sym_constinit] = ACTIONS(3156), + [anon_sym_consteval] = ACTIONS(3156), + [anon_sym_signed] = ACTIONS(3156), + [anon_sym_unsigned] = ACTIONS(3156), + [anon_sym_long] = ACTIONS(3156), + [anon_sym_short] = ACTIONS(3156), + [sym_primitive_type] = ACTIONS(3156), + [anon_sym_enum] = ACTIONS(3156), + [anon_sym_class] = ACTIONS(3156), + [anon_sym_struct] = ACTIONS(3156), + [anon_sym_union] = ACTIONS(3156), + [anon_sym_if] = ACTIONS(3156), + [anon_sym_switch] = ACTIONS(3156), + [anon_sym_case] = ACTIONS(3156), + [anon_sym_default] = ACTIONS(3156), + [anon_sym_while] = ACTIONS(3156), + [anon_sym_do] = ACTIONS(3156), + [anon_sym_for] = ACTIONS(3156), + [anon_sym_return] = ACTIONS(3156), + [anon_sym_break] = ACTIONS(3156), + [anon_sym_continue] = ACTIONS(3156), + [anon_sym_goto] = ACTIONS(3156), + [anon_sym_not] = ACTIONS(3156), + [anon_sym_compl] = ACTIONS(3156), + [anon_sym_DASH_DASH] = ACTIONS(3158), + [anon_sym_PLUS_PLUS] = ACTIONS(3158), + [anon_sym_sizeof] = ACTIONS(3156), + [anon_sym_offsetof] = ACTIONS(3156), + [anon_sym__Generic] = ACTIONS(3156), + [anon_sym_asm] = ACTIONS(3156), + [anon_sym___asm__] = ACTIONS(3156), + [sym_number_literal] = ACTIONS(3158), + [anon_sym_L_SQUOTE] = ACTIONS(3158), + [anon_sym_u_SQUOTE] = ACTIONS(3158), + [anon_sym_U_SQUOTE] = ACTIONS(3158), + [anon_sym_u8_SQUOTE] = ACTIONS(3158), + [anon_sym_SQUOTE] = ACTIONS(3158), + [anon_sym_L_DQUOTE] = ACTIONS(3158), + [anon_sym_u_DQUOTE] = ACTIONS(3158), + [anon_sym_U_DQUOTE] = ACTIONS(3158), + [anon_sym_u8_DQUOTE] = ACTIONS(3158), + [anon_sym_DQUOTE] = ACTIONS(3158), + [sym_true] = ACTIONS(3156), + [sym_false] = ACTIONS(3156), + [anon_sym_NULL] = ACTIONS(3156), + [anon_sym_nullptr] = ACTIONS(3156), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3156), + [anon_sym_decltype] = ACTIONS(3156), + [anon_sym_virtual] = ACTIONS(3156), + [anon_sym_explicit] = ACTIONS(3156), + [anon_sym_typename] = ACTIONS(3156), + [anon_sym_template] = ACTIONS(3156), + [anon_sym_operator] = ACTIONS(3156), + [anon_sym_try] = ACTIONS(3156), + [anon_sym_delete] = ACTIONS(3156), + [anon_sym_throw] = ACTIONS(3156), + [anon_sym_namespace] = ACTIONS(3156), + [anon_sym_using] = ACTIONS(3156), + [anon_sym_static_assert] = ACTIONS(3156), + [anon_sym_concept] = ACTIONS(3156), + [anon_sym_co_return] = ACTIONS(3156), + [anon_sym_co_yield] = ACTIONS(3156), + [anon_sym_R_DQUOTE] = ACTIONS(3158), + [anon_sym_LR_DQUOTE] = ACTIONS(3158), + [anon_sym_uR_DQUOTE] = ACTIONS(3158), + [anon_sym_UR_DQUOTE] = ACTIONS(3158), + [anon_sym_u8R_DQUOTE] = ACTIONS(3158), + [anon_sym_co_await] = ACTIONS(3156), + [anon_sym_new] = ACTIONS(3156), + [anon_sym_requires] = ACTIONS(3156), + [sym_this] = ACTIONS(3156), }, [1267] = { - [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_AMP] = ACTIONS(2464), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym_LBRACE] = ACTIONS(2464), - [anon_sym_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_identifier] = ACTIONS(3358), + [aux_sym_preproc_include_token1] = ACTIONS(3358), + [aux_sym_preproc_def_token1] = ACTIONS(3358), + [aux_sym_preproc_if_token1] = ACTIONS(3358), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3358), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3358), + [sym_preproc_directive] = ACTIONS(3358), + [anon_sym_LPAREN2] = ACTIONS(3360), + [anon_sym_BANG] = ACTIONS(3360), + [anon_sym_TILDE] = ACTIONS(3360), + [anon_sym_DASH] = ACTIONS(3358), + [anon_sym_PLUS] = ACTIONS(3358), + [anon_sym_STAR] = ACTIONS(3360), + [anon_sym_AMP_AMP] = ACTIONS(3360), + [anon_sym_AMP] = ACTIONS(3358), + [anon_sym_SEMI] = ACTIONS(3360), + [anon_sym_typedef] = ACTIONS(3358), + [anon_sym_extern] = ACTIONS(3358), + [anon_sym___attribute__] = ACTIONS(3358), + [anon_sym_COLON_COLON] = ACTIONS(3360), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3360), + [anon_sym___declspec] = ACTIONS(3358), + [anon_sym___based] = ACTIONS(3358), + [anon_sym___cdecl] = ACTIONS(3358), + [anon_sym___clrcall] = ACTIONS(3358), + [anon_sym___stdcall] = ACTIONS(3358), + [anon_sym___fastcall] = ACTIONS(3358), + [anon_sym___thiscall] = ACTIONS(3358), + [anon_sym___vectorcall] = ACTIONS(3358), + [anon_sym_LBRACE] = ACTIONS(3360), + [anon_sym_RBRACE] = ACTIONS(3360), + [anon_sym_LBRACK] = ACTIONS(3358), + [anon_sym_static] = ACTIONS(3358), + [anon_sym_register] = ACTIONS(3358), + [anon_sym_inline] = ACTIONS(3358), + [anon_sym_thread_local] = ACTIONS(3358), + [anon_sym_const] = ACTIONS(3358), + [anon_sym_constexpr] = ACTIONS(3358), + [anon_sym_volatile] = ACTIONS(3358), + [anon_sym_restrict] = ACTIONS(3358), + [anon_sym___restrict__] = ACTIONS(3358), + [anon_sym__Atomic] = ACTIONS(3358), + [anon_sym__Noreturn] = ACTIONS(3358), + [anon_sym_noreturn] = ACTIONS(3358), + [anon_sym_mutable] = ACTIONS(3358), + [anon_sym_constinit] = ACTIONS(3358), + [anon_sym_consteval] = ACTIONS(3358), + [anon_sym_signed] = ACTIONS(3358), + [anon_sym_unsigned] = ACTIONS(3358), + [anon_sym_long] = ACTIONS(3358), + [anon_sym_short] = ACTIONS(3358), + [sym_primitive_type] = ACTIONS(3358), + [anon_sym_enum] = ACTIONS(3358), + [anon_sym_class] = ACTIONS(3358), + [anon_sym_struct] = ACTIONS(3358), + [anon_sym_union] = ACTIONS(3358), + [anon_sym_if] = ACTIONS(3358), + [anon_sym_switch] = ACTIONS(3358), + [anon_sym_case] = ACTIONS(3358), + [anon_sym_default] = ACTIONS(3358), + [anon_sym_while] = ACTIONS(3358), + [anon_sym_do] = ACTIONS(3358), + [anon_sym_for] = ACTIONS(3358), + [anon_sym_return] = ACTIONS(3358), + [anon_sym_break] = ACTIONS(3358), + [anon_sym_continue] = ACTIONS(3358), + [anon_sym_goto] = ACTIONS(3358), + [anon_sym_not] = ACTIONS(3358), + [anon_sym_compl] = ACTIONS(3358), + [anon_sym_DASH_DASH] = ACTIONS(3360), + [anon_sym_PLUS_PLUS] = ACTIONS(3360), + [anon_sym_sizeof] = ACTIONS(3358), + [anon_sym_offsetof] = ACTIONS(3358), + [anon_sym__Generic] = ACTIONS(3358), + [anon_sym_asm] = ACTIONS(3358), + [anon_sym___asm__] = ACTIONS(3358), + [sym_number_literal] = ACTIONS(3360), + [anon_sym_L_SQUOTE] = ACTIONS(3360), + [anon_sym_u_SQUOTE] = ACTIONS(3360), + [anon_sym_U_SQUOTE] = ACTIONS(3360), + [anon_sym_u8_SQUOTE] = ACTIONS(3360), + [anon_sym_SQUOTE] = ACTIONS(3360), + [anon_sym_L_DQUOTE] = ACTIONS(3360), + [anon_sym_u_DQUOTE] = ACTIONS(3360), + [anon_sym_U_DQUOTE] = ACTIONS(3360), + [anon_sym_u8_DQUOTE] = ACTIONS(3360), + [anon_sym_DQUOTE] = ACTIONS(3360), + [sym_true] = ACTIONS(3358), + [sym_false] = ACTIONS(3358), + [anon_sym_NULL] = ACTIONS(3358), + [anon_sym_nullptr] = ACTIONS(3358), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3358), + [anon_sym_decltype] = ACTIONS(3358), + [anon_sym_virtual] = ACTIONS(3358), + [anon_sym_explicit] = ACTIONS(3358), + [anon_sym_typename] = ACTIONS(3358), + [anon_sym_template] = ACTIONS(3358), + [anon_sym_operator] = ACTIONS(3358), + [anon_sym_try] = ACTIONS(3358), + [anon_sym_delete] = ACTIONS(3358), + [anon_sym_throw] = ACTIONS(3358), + [anon_sym_namespace] = ACTIONS(3358), + [anon_sym_using] = ACTIONS(3358), + [anon_sym_static_assert] = ACTIONS(3358), + [anon_sym_concept] = ACTIONS(3358), + [anon_sym_co_return] = ACTIONS(3358), + [anon_sym_co_yield] = ACTIONS(3358), + [anon_sym_R_DQUOTE] = ACTIONS(3360), + [anon_sym_LR_DQUOTE] = ACTIONS(3360), + [anon_sym_uR_DQUOTE] = ACTIONS(3360), + [anon_sym_UR_DQUOTE] = ACTIONS(3360), + [anon_sym_u8R_DQUOTE] = ACTIONS(3360), + [anon_sym_co_await] = ACTIONS(3358), + [anon_sym_new] = ACTIONS(3358), + [anon_sym_requires] = ACTIONS(3358), + [sym_this] = ACTIONS(3358), }, [1268] = { - [sym_identifier] = ACTIONS(2606), - [anon_sym_LPAREN2] = ACTIONS(2608), - [anon_sym_BANG] = ACTIONS(2608), - [anon_sym_TILDE] = ACTIONS(2608), - [anon_sym_DASH] = ACTIONS(2606), - [anon_sym_PLUS] = ACTIONS(2606), - [anon_sym_STAR] = ACTIONS(2608), - [anon_sym_AMP] = ACTIONS(2608), - [anon_sym_SEMI] = ACTIONS(2608), - [anon_sym_typedef] = ACTIONS(2606), - [anon_sym_extern] = ACTIONS(2606), - [anon_sym___attribute__] = ACTIONS(2606), - [anon_sym_COLON_COLON] = ACTIONS(2608), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2608), - [anon_sym___declspec] = ACTIONS(2606), - [anon_sym_LBRACE] = ACTIONS(2608), - [anon_sym_LBRACK] = ACTIONS(2606), - [anon_sym_static] = ACTIONS(2606), - [anon_sym_register] = ACTIONS(2606), - [anon_sym_inline] = ACTIONS(2606), - [anon_sym_thread_local] = ACTIONS(2606), - [anon_sym_const] = ACTIONS(2606), - [anon_sym_volatile] = ACTIONS(2606), - [anon_sym_restrict] = ACTIONS(2606), - [anon_sym__Atomic] = ACTIONS(2606), - [anon_sym_mutable] = ACTIONS(2606), - [anon_sym_constexpr] = ACTIONS(2606), - [anon_sym_constinit] = ACTIONS(2606), - [anon_sym_consteval] = ACTIONS(2606), - [anon_sym_signed] = ACTIONS(2606), - [anon_sym_unsigned] = ACTIONS(2606), - [anon_sym_long] = ACTIONS(2606), - [anon_sym_short] = ACTIONS(2606), - [sym_primitive_type] = ACTIONS(2606), - [anon_sym_enum] = ACTIONS(2606), - [anon_sym_class] = ACTIONS(2606), - [anon_sym_struct] = ACTIONS(2606), - [anon_sym_union] = ACTIONS(2606), - [anon_sym_if] = ACTIONS(2606), - [anon_sym_else] = ACTIONS(2606), - [anon_sym_switch] = ACTIONS(2606), - [anon_sym_while] = ACTIONS(2606), - [anon_sym_do] = ACTIONS(2606), - [anon_sym_for] = ACTIONS(2606), - [anon_sym_return] = ACTIONS(2606), - [anon_sym_break] = ACTIONS(2606), - [anon_sym_continue] = ACTIONS(2606), - [anon_sym_goto] = ACTIONS(2606), - [anon_sym_not] = ACTIONS(2606), - [anon_sym_compl] = ACTIONS(2606), - [anon_sym_DASH_DASH] = ACTIONS(2608), - [anon_sym_PLUS_PLUS] = ACTIONS(2608), - [anon_sym_sizeof] = ACTIONS(2606), - [sym_number_literal] = ACTIONS(2608), - [anon_sym_L_SQUOTE] = ACTIONS(2608), - [anon_sym_u_SQUOTE] = ACTIONS(2608), - [anon_sym_U_SQUOTE] = ACTIONS(2608), - [anon_sym_u8_SQUOTE] = ACTIONS(2608), - [anon_sym_SQUOTE] = ACTIONS(2608), - [anon_sym_L_DQUOTE] = ACTIONS(2608), - [anon_sym_u_DQUOTE] = ACTIONS(2608), - [anon_sym_U_DQUOTE] = ACTIONS(2608), - [anon_sym_u8_DQUOTE] = ACTIONS(2608), - [anon_sym_DQUOTE] = ACTIONS(2608), - [sym_true] = ACTIONS(2606), - [sym_false] = ACTIONS(2606), - [sym_null] = ACTIONS(2606), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2606), - [anon_sym_decltype] = ACTIONS(2606), - [anon_sym_virtual] = ACTIONS(2606), - [anon_sym_typename] = ACTIONS(2606), - [anon_sym_template] = ACTIONS(2606), - [anon_sym_try] = ACTIONS(2606), - [anon_sym_delete] = ACTIONS(2606), - [anon_sym_throw] = ACTIONS(2606), - [anon_sym_co_return] = ACTIONS(2606), - [anon_sym_co_yield] = ACTIONS(2606), - [anon_sym_R_DQUOTE] = ACTIONS(2608), - [anon_sym_LR_DQUOTE] = ACTIONS(2608), - [anon_sym_uR_DQUOTE] = ACTIONS(2608), - [anon_sym_UR_DQUOTE] = ACTIONS(2608), - [anon_sym_u8R_DQUOTE] = ACTIONS(2608), - [anon_sym_co_await] = ACTIONS(2606), - [anon_sym_new] = ACTIONS(2606), - [anon_sym_requires] = ACTIONS(2606), - [sym_this] = ACTIONS(2606), - [sym_nullptr] = ACTIONS(2606), + [sym_identifier] = ACTIONS(3364), + [aux_sym_preproc_include_token1] = ACTIONS(3364), + [aux_sym_preproc_def_token1] = ACTIONS(3364), + [aux_sym_preproc_if_token1] = ACTIONS(3364), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3364), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3364), + [sym_preproc_directive] = ACTIONS(3364), + [anon_sym_LPAREN2] = ACTIONS(3366), + [anon_sym_BANG] = ACTIONS(3366), + [anon_sym_TILDE] = ACTIONS(3366), + [anon_sym_DASH] = ACTIONS(3364), + [anon_sym_PLUS] = ACTIONS(3364), + [anon_sym_STAR] = ACTIONS(3366), + [anon_sym_AMP_AMP] = ACTIONS(3366), + [anon_sym_AMP] = ACTIONS(3364), + [anon_sym_SEMI] = ACTIONS(3366), + [anon_sym_typedef] = ACTIONS(3364), + [anon_sym_extern] = ACTIONS(3364), + [anon_sym___attribute__] = ACTIONS(3364), + [anon_sym_COLON_COLON] = ACTIONS(3366), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3366), + [anon_sym___declspec] = ACTIONS(3364), + [anon_sym___based] = ACTIONS(3364), + [anon_sym___cdecl] = ACTIONS(3364), + [anon_sym___clrcall] = ACTIONS(3364), + [anon_sym___stdcall] = ACTIONS(3364), + [anon_sym___fastcall] = ACTIONS(3364), + [anon_sym___thiscall] = ACTIONS(3364), + [anon_sym___vectorcall] = ACTIONS(3364), + [anon_sym_LBRACE] = ACTIONS(3366), + [anon_sym_RBRACE] = ACTIONS(3366), + [anon_sym_LBRACK] = ACTIONS(3364), + [anon_sym_static] = ACTIONS(3364), + [anon_sym_register] = ACTIONS(3364), + [anon_sym_inline] = ACTIONS(3364), + [anon_sym_thread_local] = ACTIONS(3364), + [anon_sym_const] = ACTIONS(3364), + [anon_sym_constexpr] = ACTIONS(3364), + [anon_sym_volatile] = ACTIONS(3364), + [anon_sym_restrict] = ACTIONS(3364), + [anon_sym___restrict__] = ACTIONS(3364), + [anon_sym__Atomic] = ACTIONS(3364), + [anon_sym__Noreturn] = ACTIONS(3364), + [anon_sym_noreturn] = ACTIONS(3364), + [anon_sym_mutable] = ACTIONS(3364), + [anon_sym_constinit] = ACTIONS(3364), + [anon_sym_consteval] = ACTIONS(3364), + [anon_sym_signed] = ACTIONS(3364), + [anon_sym_unsigned] = ACTIONS(3364), + [anon_sym_long] = ACTIONS(3364), + [anon_sym_short] = ACTIONS(3364), + [sym_primitive_type] = ACTIONS(3364), + [anon_sym_enum] = ACTIONS(3364), + [anon_sym_class] = ACTIONS(3364), + [anon_sym_struct] = ACTIONS(3364), + [anon_sym_union] = ACTIONS(3364), + [anon_sym_if] = ACTIONS(3364), + [anon_sym_switch] = ACTIONS(3364), + [anon_sym_case] = ACTIONS(3364), + [anon_sym_default] = ACTIONS(3364), + [anon_sym_while] = ACTIONS(3364), + [anon_sym_do] = ACTIONS(3364), + [anon_sym_for] = ACTIONS(3364), + [anon_sym_return] = ACTIONS(3364), + [anon_sym_break] = ACTIONS(3364), + [anon_sym_continue] = ACTIONS(3364), + [anon_sym_goto] = ACTIONS(3364), + [anon_sym_not] = ACTIONS(3364), + [anon_sym_compl] = ACTIONS(3364), + [anon_sym_DASH_DASH] = ACTIONS(3366), + [anon_sym_PLUS_PLUS] = ACTIONS(3366), + [anon_sym_sizeof] = ACTIONS(3364), + [anon_sym_offsetof] = ACTIONS(3364), + [anon_sym__Generic] = ACTIONS(3364), + [anon_sym_asm] = ACTIONS(3364), + [anon_sym___asm__] = ACTIONS(3364), + [sym_number_literal] = ACTIONS(3366), + [anon_sym_L_SQUOTE] = ACTIONS(3366), + [anon_sym_u_SQUOTE] = ACTIONS(3366), + [anon_sym_U_SQUOTE] = ACTIONS(3366), + [anon_sym_u8_SQUOTE] = ACTIONS(3366), + [anon_sym_SQUOTE] = ACTIONS(3366), + [anon_sym_L_DQUOTE] = ACTIONS(3366), + [anon_sym_u_DQUOTE] = ACTIONS(3366), + [anon_sym_U_DQUOTE] = ACTIONS(3366), + [anon_sym_u8_DQUOTE] = ACTIONS(3366), + [anon_sym_DQUOTE] = ACTIONS(3366), + [sym_true] = ACTIONS(3364), + [sym_false] = ACTIONS(3364), + [anon_sym_NULL] = ACTIONS(3364), + [anon_sym_nullptr] = ACTIONS(3364), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3364), + [anon_sym_decltype] = ACTIONS(3364), + [anon_sym_virtual] = ACTIONS(3364), + [anon_sym_explicit] = ACTIONS(3364), + [anon_sym_typename] = ACTIONS(3364), + [anon_sym_template] = ACTIONS(3364), + [anon_sym_operator] = ACTIONS(3364), + [anon_sym_try] = ACTIONS(3364), + [anon_sym_delete] = ACTIONS(3364), + [anon_sym_throw] = ACTIONS(3364), + [anon_sym_namespace] = ACTIONS(3364), + [anon_sym_using] = ACTIONS(3364), + [anon_sym_static_assert] = ACTIONS(3364), + [anon_sym_concept] = ACTIONS(3364), + [anon_sym_co_return] = ACTIONS(3364), + [anon_sym_co_yield] = ACTIONS(3364), + [anon_sym_R_DQUOTE] = ACTIONS(3366), + [anon_sym_LR_DQUOTE] = ACTIONS(3366), + [anon_sym_uR_DQUOTE] = ACTIONS(3366), + [anon_sym_UR_DQUOTE] = ACTIONS(3366), + [anon_sym_u8R_DQUOTE] = ACTIONS(3366), + [anon_sym_co_await] = ACTIONS(3364), + [anon_sym_new] = ACTIONS(3364), + [anon_sym_requires] = ACTIONS(3364), + [sym_this] = ACTIONS(3364), }, [1269] = { - [sym_identifier] = ACTIONS(2610), - [anon_sym_LPAREN2] = ACTIONS(2612), - [anon_sym_BANG] = ACTIONS(2612), - [anon_sym_TILDE] = ACTIONS(2612), - [anon_sym_DASH] = ACTIONS(2610), - [anon_sym_PLUS] = ACTIONS(2610), - [anon_sym_STAR] = ACTIONS(2612), - [anon_sym_AMP] = ACTIONS(2612), - [anon_sym_SEMI] = ACTIONS(2612), - [anon_sym_typedef] = ACTIONS(2610), - [anon_sym_extern] = ACTIONS(2610), - [anon_sym___attribute__] = ACTIONS(2610), - [anon_sym_COLON_COLON] = ACTIONS(2612), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2612), - [anon_sym___declspec] = ACTIONS(2610), - [anon_sym_LBRACE] = ACTIONS(2612), - [anon_sym_LBRACK] = ACTIONS(2610), - [anon_sym_static] = ACTIONS(2610), - [anon_sym_register] = ACTIONS(2610), - [anon_sym_inline] = ACTIONS(2610), - [anon_sym_thread_local] = ACTIONS(2610), - [anon_sym_const] = ACTIONS(2610), - [anon_sym_volatile] = ACTIONS(2610), - [anon_sym_restrict] = ACTIONS(2610), - [anon_sym__Atomic] = ACTIONS(2610), - [anon_sym_mutable] = ACTIONS(2610), - [anon_sym_constexpr] = ACTIONS(2610), - [anon_sym_constinit] = ACTIONS(2610), - [anon_sym_consteval] = ACTIONS(2610), - [anon_sym_signed] = ACTIONS(2610), - [anon_sym_unsigned] = ACTIONS(2610), - [anon_sym_long] = ACTIONS(2610), - [anon_sym_short] = ACTIONS(2610), - [sym_primitive_type] = ACTIONS(2610), - [anon_sym_enum] = ACTIONS(2610), - [anon_sym_class] = ACTIONS(2610), - [anon_sym_struct] = ACTIONS(2610), - [anon_sym_union] = ACTIONS(2610), - [anon_sym_if] = ACTIONS(2610), - [anon_sym_else] = ACTIONS(2610), - [anon_sym_switch] = ACTIONS(2610), - [anon_sym_while] = ACTIONS(2610), - [anon_sym_do] = ACTIONS(2610), - [anon_sym_for] = ACTIONS(2610), - [anon_sym_return] = ACTIONS(2610), - [anon_sym_break] = ACTIONS(2610), - [anon_sym_continue] = ACTIONS(2610), - [anon_sym_goto] = ACTIONS(2610), - [anon_sym_not] = ACTIONS(2610), - [anon_sym_compl] = ACTIONS(2610), - [anon_sym_DASH_DASH] = ACTIONS(2612), - [anon_sym_PLUS_PLUS] = ACTIONS(2612), - [anon_sym_sizeof] = ACTIONS(2610), - [sym_number_literal] = ACTIONS(2612), - [anon_sym_L_SQUOTE] = ACTIONS(2612), - [anon_sym_u_SQUOTE] = ACTIONS(2612), - [anon_sym_U_SQUOTE] = ACTIONS(2612), - [anon_sym_u8_SQUOTE] = ACTIONS(2612), - [anon_sym_SQUOTE] = ACTIONS(2612), - [anon_sym_L_DQUOTE] = ACTIONS(2612), - [anon_sym_u_DQUOTE] = ACTIONS(2612), - [anon_sym_U_DQUOTE] = ACTIONS(2612), - [anon_sym_u8_DQUOTE] = ACTIONS(2612), - [anon_sym_DQUOTE] = ACTIONS(2612), - [sym_true] = ACTIONS(2610), - [sym_false] = ACTIONS(2610), - [sym_null] = ACTIONS(2610), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2610), - [anon_sym_decltype] = ACTIONS(2610), - [anon_sym_virtual] = ACTIONS(2610), - [anon_sym_typename] = ACTIONS(2610), - [anon_sym_template] = ACTIONS(2610), - [anon_sym_try] = ACTIONS(2610), - [anon_sym_delete] = ACTIONS(2610), - [anon_sym_throw] = ACTIONS(2610), - [anon_sym_co_return] = ACTIONS(2610), - [anon_sym_co_yield] = ACTIONS(2610), - [anon_sym_R_DQUOTE] = ACTIONS(2612), - [anon_sym_LR_DQUOTE] = ACTIONS(2612), - [anon_sym_uR_DQUOTE] = ACTIONS(2612), - [anon_sym_UR_DQUOTE] = ACTIONS(2612), - [anon_sym_u8R_DQUOTE] = ACTIONS(2612), - [anon_sym_co_await] = ACTIONS(2610), - [anon_sym_new] = ACTIONS(2610), - [anon_sym_requires] = ACTIONS(2610), - [sym_this] = ACTIONS(2610), - [sym_nullptr] = ACTIONS(2610), + [sym_identifier] = ACTIONS(3384), + [aux_sym_preproc_include_token1] = ACTIONS(3384), + [aux_sym_preproc_def_token1] = ACTIONS(3384), + [aux_sym_preproc_if_token1] = ACTIONS(3384), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3384), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3384), + [sym_preproc_directive] = ACTIONS(3384), + [anon_sym_LPAREN2] = ACTIONS(3386), + [anon_sym_BANG] = ACTIONS(3386), + [anon_sym_TILDE] = ACTIONS(3386), + [anon_sym_DASH] = ACTIONS(3384), + [anon_sym_PLUS] = ACTIONS(3384), + [anon_sym_STAR] = ACTIONS(3386), + [anon_sym_AMP_AMP] = ACTIONS(3386), + [anon_sym_AMP] = ACTIONS(3384), + [anon_sym_SEMI] = ACTIONS(3386), + [anon_sym_typedef] = ACTIONS(3384), + [anon_sym_extern] = ACTIONS(3384), + [anon_sym___attribute__] = ACTIONS(3384), + [anon_sym_COLON_COLON] = ACTIONS(3386), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3386), + [anon_sym___declspec] = ACTIONS(3384), + [anon_sym___based] = ACTIONS(3384), + [anon_sym___cdecl] = ACTIONS(3384), + [anon_sym___clrcall] = ACTIONS(3384), + [anon_sym___stdcall] = ACTIONS(3384), + [anon_sym___fastcall] = ACTIONS(3384), + [anon_sym___thiscall] = ACTIONS(3384), + [anon_sym___vectorcall] = ACTIONS(3384), + [anon_sym_LBRACE] = ACTIONS(3386), + [anon_sym_RBRACE] = ACTIONS(3386), + [anon_sym_LBRACK] = ACTIONS(3384), + [anon_sym_static] = ACTIONS(3384), + [anon_sym_register] = ACTIONS(3384), + [anon_sym_inline] = ACTIONS(3384), + [anon_sym_thread_local] = ACTIONS(3384), + [anon_sym_const] = ACTIONS(3384), + [anon_sym_constexpr] = ACTIONS(3384), + [anon_sym_volatile] = ACTIONS(3384), + [anon_sym_restrict] = ACTIONS(3384), + [anon_sym___restrict__] = ACTIONS(3384), + [anon_sym__Atomic] = ACTIONS(3384), + [anon_sym__Noreturn] = ACTIONS(3384), + [anon_sym_noreturn] = ACTIONS(3384), + [anon_sym_mutable] = ACTIONS(3384), + [anon_sym_constinit] = ACTIONS(3384), + [anon_sym_consteval] = ACTIONS(3384), + [anon_sym_signed] = ACTIONS(3384), + [anon_sym_unsigned] = ACTIONS(3384), + [anon_sym_long] = ACTIONS(3384), + [anon_sym_short] = ACTIONS(3384), + [sym_primitive_type] = ACTIONS(3384), + [anon_sym_enum] = ACTIONS(3384), + [anon_sym_class] = ACTIONS(3384), + [anon_sym_struct] = ACTIONS(3384), + [anon_sym_union] = ACTIONS(3384), + [anon_sym_if] = ACTIONS(3384), + [anon_sym_switch] = ACTIONS(3384), + [anon_sym_case] = ACTIONS(3384), + [anon_sym_default] = ACTIONS(3384), + [anon_sym_while] = ACTIONS(3384), + [anon_sym_do] = ACTIONS(3384), + [anon_sym_for] = ACTIONS(3384), + [anon_sym_return] = ACTIONS(3384), + [anon_sym_break] = ACTIONS(3384), + [anon_sym_continue] = ACTIONS(3384), + [anon_sym_goto] = ACTIONS(3384), + [anon_sym_not] = ACTIONS(3384), + [anon_sym_compl] = ACTIONS(3384), + [anon_sym_DASH_DASH] = ACTIONS(3386), + [anon_sym_PLUS_PLUS] = ACTIONS(3386), + [anon_sym_sizeof] = ACTIONS(3384), + [anon_sym_offsetof] = ACTIONS(3384), + [anon_sym__Generic] = ACTIONS(3384), + [anon_sym_asm] = ACTIONS(3384), + [anon_sym___asm__] = ACTIONS(3384), + [sym_number_literal] = ACTIONS(3386), + [anon_sym_L_SQUOTE] = ACTIONS(3386), + [anon_sym_u_SQUOTE] = ACTIONS(3386), + [anon_sym_U_SQUOTE] = ACTIONS(3386), + [anon_sym_u8_SQUOTE] = ACTIONS(3386), + [anon_sym_SQUOTE] = ACTIONS(3386), + [anon_sym_L_DQUOTE] = ACTIONS(3386), + [anon_sym_u_DQUOTE] = ACTIONS(3386), + [anon_sym_U_DQUOTE] = ACTIONS(3386), + [anon_sym_u8_DQUOTE] = ACTIONS(3386), + [anon_sym_DQUOTE] = ACTIONS(3386), + [sym_true] = ACTIONS(3384), + [sym_false] = ACTIONS(3384), + [anon_sym_NULL] = ACTIONS(3384), + [anon_sym_nullptr] = ACTIONS(3384), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3384), + [anon_sym_decltype] = ACTIONS(3384), + [anon_sym_virtual] = ACTIONS(3384), + [anon_sym_explicit] = ACTIONS(3384), + [anon_sym_typename] = ACTIONS(3384), + [anon_sym_template] = ACTIONS(3384), + [anon_sym_operator] = ACTIONS(3384), + [anon_sym_try] = ACTIONS(3384), + [anon_sym_delete] = ACTIONS(3384), + [anon_sym_throw] = ACTIONS(3384), + [anon_sym_namespace] = ACTIONS(3384), + [anon_sym_using] = ACTIONS(3384), + [anon_sym_static_assert] = ACTIONS(3384), + [anon_sym_concept] = ACTIONS(3384), + [anon_sym_co_return] = ACTIONS(3384), + [anon_sym_co_yield] = ACTIONS(3384), + [anon_sym_R_DQUOTE] = ACTIONS(3386), + [anon_sym_LR_DQUOTE] = ACTIONS(3386), + [anon_sym_uR_DQUOTE] = ACTIONS(3386), + [anon_sym_UR_DQUOTE] = ACTIONS(3386), + [anon_sym_u8R_DQUOTE] = ACTIONS(3386), + [anon_sym_co_await] = ACTIONS(3384), + [anon_sym_new] = ACTIONS(3384), + [anon_sym_requires] = ACTIONS(3384), + [sym_this] = ACTIONS(3384), }, [1270] = { - [sym_identifier] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2616), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), + [sym_identifier] = ACTIONS(3399), + [aux_sym_preproc_include_token1] = ACTIONS(3399), + [aux_sym_preproc_def_token1] = ACTIONS(3399), + [aux_sym_preproc_if_token1] = ACTIONS(3399), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3399), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3399), + [sym_preproc_directive] = ACTIONS(3399), + [anon_sym_LPAREN2] = ACTIONS(3401), + [anon_sym_BANG] = ACTIONS(3401), + [anon_sym_TILDE] = ACTIONS(3401), + [anon_sym_DASH] = ACTIONS(3399), + [anon_sym_PLUS] = ACTIONS(3399), + [anon_sym_STAR] = ACTIONS(3401), + [anon_sym_AMP_AMP] = ACTIONS(3401), + [anon_sym_AMP] = ACTIONS(3399), + [anon_sym_SEMI] = ACTIONS(3401), + [anon_sym_typedef] = ACTIONS(3399), + [anon_sym_extern] = ACTIONS(3399), + [anon_sym___attribute__] = ACTIONS(3399), + [anon_sym_COLON_COLON] = ACTIONS(3401), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3401), + [anon_sym___declspec] = ACTIONS(3399), + [anon_sym___based] = ACTIONS(3399), + [anon_sym___cdecl] = ACTIONS(3399), + [anon_sym___clrcall] = ACTIONS(3399), + [anon_sym___stdcall] = ACTIONS(3399), + [anon_sym___fastcall] = ACTIONS(3399), + [anon_sym___thiscall] = ACTIONS(3399), + [anon_sym___vectorcall] = ACTIONS(3399), + [anon_sym_LBRACE] = ACTIONS(3401), + [anon_sym_RBRACE] = ACTIONS(3401), + [anon_sym_LBRACK] = ACTIONS(3399), + [anon_sym_static] = ACTIONS(3399), + [anon_sym_register] = ACTIONS(3399), + [anon_sym_inline] = ACTIONS(3399), + [anon_sym_thread_local] = ACTIONS(3399), + [anon_sym_const] = ACTIONS(3399), + [anon_sym_constexpr] = ACTIONS(3399), + [anon_sym_volatile] = ACTIONS(3399), + [anon_sym_restrict] = ACTIONS(3399), + [anon_sym___restrict__] = ACTIONS(3399), + [anon_sym__Atomic] = ACTIONS(3399), + [anon_sym__Noreturn] = ACTIONS(3399), + [anon_sym_noreturn] = ACTIONS(3399), + [anon_sym_mutable] = ACTIONS(3399), + [anon_sym_constinit] = ACTIONS(3399), + [anon_sym_consteval] = ACTIONS(3399), + [anon_sym_signed] = ACTIONS(3399), + [anon_sym_unsigned] = ACTIONS(3399), + [anon_sym_long] = ACTIONS(3399), + [anon_sym_short] = ACTIONS(3399), + [sym_primitive_type] = ACTIONS(3399), + [anon_sym_enum] = ACTIONS(3399), + [anon_sym_class] = ACTIONS(3399), + [anon_sym_struct] = ACTIONS(3399), + [anon_sym_union] = ACTIONS(3399), + [anon_sym_if] = ACTIONS(3399), + [anon_sym_switch] = ACTIONS(3399), + [anon_sym_case] = ACTIONS(3399), + [anon_sym_default] = ACTIONS(3399), + [anon_sym_while] = ACTIONS(3399), + [anon_sym_do] = ACTIONS(3399), + [anon_sym_for] = ACTIONS(3399), + [anon_sym_return] = ACTIONS(3399), + [anon_sym_break] = ACTIONS(3399), + [anon_sym_continue] = ACTIONS(3399), + [anon_sym_goto] = ACTIONS(3399), + [anon_sym_not] = ACTIONS(3399), + [anon_sym_compl] = ACTIONS(3399), + [anon_sym_DASH_DASH] = ACTIONS(3401), + [anon_sym_PLUS_PLUS] = ACTIONS(3401), + [anon_sym_sizeof] = ACTIONS(3399), + [anon_sym_offsetof] = ACTIONS(3399), + [anon_sym__Generic] = ACTIONS(3399), + [anon_sym_asm] = ACTIONS(3399), + [anon_sym___asm__] = ACTIONS(3399), + [sym_number_literal] = ACTIONS(3401), + [anon_sym_L_SQUOTE] = ACTIONS(3401), + [anon_sym_u_SQUOTE] = ACTIONS(3401), + [anon_sym_U_SQUOTE] = ACTIONS(3401), + [anon_sym_u8_SQUOTE] = ACTIONS(3401), + [anon_sym_SQUOTE] = ACTIONS(3401), + [anon_sym_L_DQUOTE] = ACTIONS(3401), + [anon_sym_u_DQUOTE] = ACTIONS(3401), + [anon_sym_U_DQUOTE] = ACTIONS(3401), + [anon_sym_u8_DQUOTE] = ACTIONS(3401), + [anon_sym_DQUOTE] = ACTIONS(3401), + [sym_true] = ACTIONS(3399), + [sym_false] = ACTIONS(3399), + [anon_sym_NULL] = ACTIONS(3399), + [anon_sym_nullptr] = ACTIONS(3399), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3399), + [anon_sym_decltype] = ACTIONS(3399), + [anon_sym_virtual] = ACTIONS(3399), + [anon_sym_explicit] = ACTIONS(3399), + [anon_sym_typename] = ACTIONS(3399), + [anon_sym_template] = ACTIONS(3399), + [anon_sym_operator] = ACTIONS(3399), + [anon_sym_try] = ACTIONS(3399), + [anon_sym_delete] = ACTIONS(3399), + [anon_sym_throw] = ACTIONS(3399), + [anon_sym_namespace] = ACTIONS(3399), + [anon_sym_using] = ACTIONS(3399), + [anon_sym_static_assert] = ACTIONS(3399), + [anon_sym_concept] = ACTIONS(3399), + [anon_sym_co_return] = ACTIONS(3399), + [anon_sym_co_yield] = ACTIONS(3399), + [anon_sym_R_DQUOTE] = ACTIONS(3401), + [anon_sym_LR_DQUOTE] = ACTIONS(3401), + [anon_sym_uR_DQUOTE] = ACTIONS(3401), + [anon_sym_UR_DQUOTE] = ACTIONS(3401), + [anon_sym_u8R_DQUOTE] = ACTIONS(3401), + [anon_sym_co_await] = ACTIONS(3399), + [anon_sym_new] = ACTIONS(3399), + [anon_sym_requires] = ACTIONS(3399), + [sym_this] = ACTIONS(3399), }, [1271] = { - [sym_identifier] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2616), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), + [sym_identifier] = ACTIONS(3409), + [aux_sym_preproc_include_token1] = ACTIONS(3409), + [aux_sym_preproc_def_token1] = ACTIONS(3409), + [aux_sym_preproc_if_token1] = ACTIONS(3409), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3409), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3409), + [sym_preproc_directive] = ACTIONS(3409), + [anon_sym_LPAREN2] = ACTIONS(3411), + [anon_sym_BANG] = ACTIONS(3411), + [anon_sym_TILDE] = ACTIONS(3411), + [anon_sym_DASH] = ACTIONS(3409), + [anon_sym_PLUS] = ACTIONS(3409), + [anon_sym_STAR] = ACTIONS(3411), + [anon_sym_AMP_AMP] = ACTIONS(3411), + [anon_sym_AMP] = ACTIONS(3409), + [anon_sym_SEMI] = ACTIONS(3411), + [anon_sym_typedef] = ACTIONS(3409), + [anon_sym_extern] = ACTIONS(3409), + [anon_sym___attribute__] = ACTIONS(3409), + [anon_sym_COLON_COLON] = ACTIONS(3411), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3411), + [anon_sym___declspec] = ACTIONS(3409), + [anon_sym___based] = ACTIONS(3409), + [anon_sym___cdecl] = ACTIONS(3409), + [anon_sym___clrcall] = ACTIONS(3409), + [anon_sym___stdcall] = ACTIONS(3409), + [anon_sym___fastcall] = ACTIONS(3409), + [anon_sym___thiscall] = ACTIONS(3409), + [anon_sym___vectorcall] = ACTIONS(3409), + [anon_sym_LBRACE] = ACTIONS(3411), + [anon_sym_RBRACE] = ACTIONS(3411), + [anon_sym_LBRACK] = ACTIONS(3409), + [anon_sym_static] = ACTIONS(3409), + [anon_sym_register] = ACTIONS(3409), + [anon_sym_inline] = ACTIONS(3409), + [anon_sym_thread_local] = ACTIONS(3409), + [anon_sym_const] = ACTIONS(3409), + [anon_sym_constexpr] = ACTIONS(3409), + [anon_sym_volatile] = ACTIONS(3409), + [anon_sym_restrict] = ACTIONS(3409), + [anon_sym___restrict__] = ACTIONS(3409), + [anon_sym__Atomic] = ACTIONS(3409), + [anon_sym__Noreturn] = ACTIONS(3409), + [anon_sym_noreturn] = ACTIONS(3409), + [anon_sym_mutable] = ACTIONS(3409), + [anon_sym_constinit] = ACTIONS(3409), + [anon_sym_consteval] = ACTIONS(3409), + [anon_sym_signed] = ACTIONS(3409), + [anon_sym_unsigned] = ACTIONS(3409), + [anon_sym_long] = ACTIONS(3409), + [anon_sym_short] = ACTIONS(3409), + [sym_primitive_type] = ACTIONS(3409), + [anon_sym_enum] = ACTIONS(3409), + [anon_sym_class] = ACTIONS(3409), + [anon_sym_struct] = ACTIONS(3409), + [anon_sym_union] = ACTIONS(3409), + [anon_sym_if] = ACTIONS(3409), + [anon_sym_switch] = ACTIONS(3409), + [anon_sym_case] = ACTIONS(3409), + [anon_sym_default] = ACTIONS(3409), + [anon_sym_while] = ACTIONS(3409), + [anon_sym_do] = ACTIONS(3409), + [anon_sym_for] = ACTIONS(3409), + [anon_sym_return] = ACTIONS(3409), + [anon_sym_break] = ACTIONS(3409), + [anon_sym_continue] = ACTIONS(3409), + [anon_sym_goto] = ACTIONS(3409), + [anon_sym_not] = ACTIONS(3409), + [anon_sym_compl] = ACTIONS(3409), + [anon_sym_DASH_DASH] = ACTIONS(3411), + [anon_sym_PLUS_PLUS] = ACTIONS(3411), + [anon_sym_sizeof] = ACTIONS(3409), + [anon_sym_offsetof] = ACTIONS(3409), + [anon_sym__Generic] = ACTIONS(3409), + [anon_sym_asm] = ACTIONS(3409), + [anon_sym___asm__] = ACTIONS(3409), + [sym_number_literal] = ACTIONS(3411), + [anon_sym_L_SQUOTE] = ACTIONS(3411), + [anon_sym_u_SQUOTE] = ACTIONS(3411), + [anon_sym_U_SQUOTE] = ACTIONS(3411), + [anon_sym_u8_SQUOTE] = ACTIONS(3411), + [anon_sym_SQUOTE] = ACTIONS(3411), + [anon_sym_L_DQUOTE] = ACTIONS(3411), + [anon_sym_u_DQUOTE] = ACTIONS(3411), + [anon_sym_U_DQUOTE] = ACTIONS(3411), + [anon_sym_u8_DQUOTE] = ACTIONS(3411), + [anon_sym_DQUOTE] = ACTIONS(3411), + [sym_true] = ACTIONS(3409), + [sym_false] = ACTIONS(3409), + [anon_sym_NULL] = ACTIONS(3409), + [anon_sym_nullptr] = ACTIONS(3409), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3409), + [anon_sym_decltype] = ACTIONS(3409), + [anon_sym_virtual] = ACTIONS(3409), + [anon_sym_explicit] = ACTIONS(3409), + [anon_sym_typename] = ACTIONS(3409), + [anon_sym_template] = ACTIONS(3409), + [anon_sym_operator] = ACTIONS(3409), + [anon_sym_try] = ACTIONS(3409), + [anon_sym_delete] = ACTIONS(3409), + [anon_sym_throw] = ACTIONS(3409), + [anon_sym_namespace] = ACTIONS(3409), + [anon_sym_using] = ACTIONS(3409), + [anon_sym_static_assert] = ACTIONS(3409), + [anon_sym_concept] = ACTIONS(3409), + [anon_sym_co_return] = ACTIONS(3409), + [anon_sym_co_yield] = ACTIONS(3409), + [anon_sym_R_DQUOTE] = ACTIONS(3411), + [anon_sym_LR_DQUOTE] = ACTIONS(3411), + [anon_sym_uR_DQUOTE] = ACTIONS(3411), + [anon_sym_UR_DQUOTE] = ACTIONS(3411), + [anon_sym_u8R_DQUOTE] = ACTIONS(3411), + [anon_sym_co_await] = ACTIONS(3409), + [anon_sym_new] = ACTIONS(3409), + [anon_sym_requires] = ACTIONS(3409), + [sym_this] = ACTIONS(3409), }, [1272] = { - [sym_identifier] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2616), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), + [sym_identifier] = ACTIONS(3238), + [aux_sym_preproc_include_token1] = ACTIONS(3238), + [aux_sym_preproc_def_token1] = ACTIONS(3238), + [aux_sym_preproc_if_token1] = ACTIONS(3238), + [aux_sym_preproc_if_token2] = ACTIONS(3238), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3238), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3238), + [sym_preproc_directive] = ACTIONS(3238), + [anon_sym_LPAREN2] = ACTIONS(3240), + [anon_sym_BANG] = ACTIONS(3240), + [anon_sym_TILDE] = ACTIONS(3240), + [anon_sym_DASH] = ACTIONS(3238), + [anon_sym_PLUS] = ACTIONS(3238), + [anon_sym_STAR] = ACTIONS(3240), + [anon_sym_AMP_AMP] = ACTIONS(3240), + [anon_sym_AMP] = ACTIONS(3238), + [anon_sym_SEMI] = ACTIONS(3240), + [anon_sym_typedef] = ACTIONS(3238), + [anon_sym_extern] = ACTIONS(3238), + [anon_sym___attribute__] = ACTIONS(3238), + [anon_sym_COLON_COLON] = ACTIONS(3240), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3240), + [anon_sym___declspec] = ACTIONS(3238), + [anon_sym___based] = ACTIONS(3238), + [anon_sym___cdecl] = ACTIONS(3238), + [anon_sym___clrcall] = ACTIONS(3238), + [anon_sym___stdcall] = ACTIONS(3238), + [anon_sym___fastcall] = ACTIONS(3238), + [anon_sym___thiscall] = ACTIONS(3238), + [anon_sym___vectorcall] = ACTIONS(3238), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_LBRACK] = ACTIONS(3238), + [anon_sym_static] = ACTIONS(3238), + [anon_sym_register] = ACTIONS(3238), + [anon_sym_inline] = ACTIONS(3238), + [anon_sym_thread_local] = ACTIONS(3238), + [anon_sym_const] = ACTIONS(3238), + [anon_sym_constexpr] = ACTIONS(3238), + [anon_sym_volatile] = ACTIONS(3238), + [anon_sym_restrict] = ACTIONS(3238), + [anon_sym___restrict__] = ACTIONS(3238), + [anon_sym__Atomic] = ACTIONS(3238), + [anon_sym__Noreturn] = ACTIONS(3238), + [anon_sym_noreturn] = ACTIONS(3238), + [anon_sym_mutable] = ACTIONS(3238), + [anon_sym_constinit] = ACTIONS(3238), + [anon_sym_consteval] = ACTIONS(3238), + [anon_sym_signed] = ACTIONS(3238), + [anon_sym_unsigned] = ACTIONS(3238), + [anon_sym_long] = ACTIONS(3238), + [anon_sym_short] = ACTIONS(3238), + [sym_primitive_type] = ACTIONS(3238), + [anon_sym_enum] = ACTIONS(3238), + [anon_sym_class] = ACTIONS(3238), + [anon_sym_struct] = ACTIONS(3238), + [anon_sym_union] = ACTIONS(3238), + [anon_sym_if] = ACTIONS(3238), + [anon_sym_switch] = ACTIONS(3238), + [anon_sym_case] = ACTIONS(3238), + [anon_sym_default] = ACTIONS(3238), + [anon_sym_while] = ACTIONS(3238), + [anon_sym_do] = ACTIONS(3238), + [anon_sym_for] = ACTIONS(3238), + [anon_sym_return] = ACTIONS(3238), + [anon_sym_break] = ACTIONS(3238), + [anon_sym_continue] = ACTIONS(3238), + [anon_sym_goto] = ACTIONS(3238), + [anon_sym_not] = ACTIONS(3238), + [anon_sym_compl] = ACTIONS(3238), + [anon_sym_DASH_DASH] = ACTIONS(3240), + [anon_sym_PLUS_PLUS] = ACTIONS(3240), + [anon_sym_sizeof] = ACTIONS(3238), + [anon_sym_offsetof] = ACTIONS(3238), + [anon_sym__Generic] = ACTIONS(3238), + [anon_sym_asm] = ACTIONS(3238), + [anon_sym___asm__] = ACTIONS(3238), + [sym_number_literal] = ACTIONS(3240), + [anon_sym_L_SQUOTE] = ACTIONS(3240), + [anon_sym_u_SQUOTE] = ACTIONS(3240), + [anon_sym_U_SQUOTE] = ACTIONS(3240), + [anon_sym_u8_SQUOTE] = ACTIONS(3240), + [anon_sym_SQUOTE] = ACTIONS(3240), + [anon_sym_L_DQUOTE] = ACTIONS(3240), + [anon_sym_u_DQUOTE] = ACTIONS(3240), + [anon_sym_U_DQUOTE] = ACTIONS(3240), + [anon_sym_u8_DQUOTE] = ACTIONS(3240), + [anon_sym_DQUOTE] = ACTIONS(3240), + [sym_true] = ACTIONS(3238), + [sym_false] = ACTIONS(3238), + [anon_sym_NULL] = ACTIONS(3238), + [anon_sym_nullptr] = ACTIONS(3238), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3238), + [anon_sym_decltype] = ACTIONS(3238), + [anon_sym_virtual] = ACTIONS(3238), + [anon_sym_explicit] = ACTIONS(3238), + [anon_sym_typename] = ACTIONS(3238), + [anon_sym_template] = ACTIONS(3238), + [anon_sym_operator] = ACTIONS(3238), + [anon_sym_try] = ACTIONS(3238), + [anon_sym_delete] = ACTIONS(3238), + [anon_sym_throw] = ACTIONS(3238), + [anon_sym_namespace] = ACTIONS(3238), + [anon_sym_using] = ACTIONS(3238), + [anon_sym_static_assert] = ACTIONS(3238), + [anon_sym_concept] = ACTIONS(3238), + [anon_sym_co_return] = ACTIONS(3238), + [anon_sym_co_yield] = ACTIONS(3238), + [anon_sym_R_DQUOTE] = ACTIONS(3240), + [anon_sym_LR_DQUOTE] = ACTIONS(3240), + [anon_sym_uR_DQUOTE] = ACTIONS(3240), + [anon_sym_UR_DQUOTE] = ACTIONS(3240), + [anon_sym_u8R_DQUOTE] = ACTIONS(3240), + [anon_sym_co_await] = ACTIONS(3238), + [anon_sym_new] = ACTIONS(3238), + [anon_sym_requires] = ACTIONS(3238), + [sym_this] = ACTIONS(3238), }, [1273] = { - [sym_identifier] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2616), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), + [sym_identifier] = ACTIONS(3258), + [aux_sym_preproc_include_token1] = ACTIONS(3258), + [aux_sym_preproc_def_token1] = ACTIONS(3258), + [aux_sym_preproc_if_token1] = ACTIONS(3258), + [aux_sym_preproc_if_token2] = ACTIONS(3258), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3258), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3258), + [sym_preproc_directive] = ACTIONS(3258), + [anon_sym_LPAREN2] = ACTIONS(3260), + [anon_sym_BANG] = ACTIONS(3260), + [anon_sym_TILDE] = ACTIONS(3260), + [anon_sym_DASH] = ACTIONS(3258), + [anon_sym_PLUS] = ACTIONS(3258), + [anon_sym_STAR] = ACTIONS(3260), + [anon_sym_AMP_AMP] = ACTIONS(3260), + [anon_sym_AMP] = ACTIONS(3258), + [anon_sym_SEMI] = ACTIONS(3260), + [anon_sym_typedef] = ACTIONS(3258), + [anon_sym_extern] = ACTIONS(3258), + [anon_sym___attribute__] = ACTIONS(3258), + [anon_sym_COLON_COLON] = ACTIONS(3260), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3260), + [anon_sym___declspec] = ACTIONS(3258), + [anon_sym___based] = ACTIONS(3258), + [anon_sym___cdecl] = ACTIONS(3258), + [anon_sym___clrcall] = ACTIONS(3258), + [anon_sym___stdcall] = ACTIONS(3258), + [anon_sym___fastcall] = ACTIONS(3258), + [anon_sym___thiscall] = ACTIONS(3258), + [anon_sym___vectorcall] = ACTIONS(3258), + [anon_sym_LBRACE] = ACTIONS(3260), + [anon_sym_LBRACK] = ACTIONS(3258), + [anon_sym_static] = ACTIONS(3258), + [anon_sym_register] = ACTIONS(3258), + [anon_sym_inline] = ACTIONS(3258), + [anon_sym_thread_local] = ACTIONS(3258), + [anon_sym_const] = ACTIONS(3258), + [anon_sym_constexpr] = ACTIONS(3258), + [anon_sym_volatile] = ACTIONS(3258), + [anon_sym_restrict] = ACTIONS(3258), + [anon_sym___restrict__] = ACTIONS(3258), + [anon_sym__Atomic] = ACTIONS(3258), + [anon_sym__Noreturn] = ACTIONS(3258), + [anon_sym_noreturn] = ACTIONS(3258), + [anon_sym_mutable] = ACTIONS(3258), + [anon_sym_constinit] = ACTIONS(3258), + [anon_sym_consteval] = ACTIONS(3258), + [anon_sym_signed] = ACTIONS(3258), + [anon_sym_unsigned] = ACTIONS(3258), + [anon_sym_long] = ACTIONS(3258), + [anon_sym_short] = ACTIONS(3258), + [sym_primitive_type] = ACTIONS(3258), + [anon_sym_enum] = ACTIONS(3258), + [anon_sym_class] = ACTIONS(3258), + [anon_sym_struct] = ACTIONS(3258), + [anon_sym_union] = ACTIONS(3258), + [anon_sym_if] = ACTIONS(3258), + [anon_sym_switch] = ACTIONS(3258), + [anon_sym_case] = ACTIONS(3258), + [anon_sym_default] = ACTIONS(3258), + [anon_sym_while] = ACTIONS(3258), + [anon_sym_do] = ACTIONS(3258), + [anon_sym_for] = ACTIONS(3258), + [anon_sym_return] = ACTIONS(3258), + [anon_sym_break] = ACTIONS(3258), + [anon_sym_continue] = ACTIONS(3258), + [anon_sym_goto] = ACTIONS(3258), + [anon_sym_not] = ACTIONS(3258), + [anon_sym_compl] = ACTIONS(3258), + [anon_sym_DASH_DASH] = ACTIONS(3260), + [anon_sym_PLUS_PLUS] = ACTIONS(3260), + [anon_sym_sizeof] = ACTIONS(3258), + [anon_sym_offsetof] = ACTIONS(3258), + [anon_sym__Generic] = ACTIONS(3258), + [anon_sym_asm] = ACTIONS(3258), + [anon_sym___asm__] = ACTIONS(3258), + [sym_number_literal] = ACTIONS(3260), + [anon_sym_L_SQUOTE] = ACTIONS(3260), + [anon_sym_u_SQUOTE] = ACTIONS(3260), + [anon_sym_U_SQUOTE] = ACTIONS(3260), + [anon_sym_u8_SQUOTE] = ACTIONS(3260), + [anon_sym_SQUOTE] = ACTIONS(3260), + [anon_sym_L_DQUOTE] = ACTIONS(3260), + [anon_sym_u_DQUOTE] = ACTIONS(3260), + [anon_sym_U_DQUOTE] = ACTIONS(3260), + [anon_sym_u8_DQUOTE] = ACTIONS(3260), + [anon_sym_DQUOTE] = ACTIONS(3260), + [sym_true] = ACTIONS(3258), + [sym_false] = ACTIONS(3258), + [anon_sym_NULL] = ACTIONS(3258), + [anon_sym_nullptr] = ACTIONS(3258), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3258), + [anon_sym_decltype] = ACTIONS(3258), + [anon_sym_virtual] = ACTIONS(3258), + [anon_sym_explicit] = ACTIONS(3258), + [anon_sym_typename] = ACTIONS(3258), + [anon_sym_template] = ACTIONS(3258), + [anon_sym_operator] = ACTIONS(3258), + [anon_sym_try] = ACTIONS(3258), + [anon_sym_delete] = ACTIONS(3258), + [anon_sym_throw] = ACTIONS(3258), + [anon_sym_namespace] = ACTIONS(3258), + [anon_sym_using] = ACTIONS(3258), + [anon_sym_static_assert] = ACTIONS(3258), + [anon_sym_concept] = ACTIONS(3258), + [anon_sym_co_return] = ACTIONS(3258), + [anon_sym_co_yield] = ACTIONS(3258), + [anon_sym_R_DQUOTE] = ACTIONS(3260), + [anon_sym_LR_DQUOTE] = ACTIONS(3260), + [anon_sym_uR_DQUOTE] = ACTIONS(3260), + [anon_sym_UR_DQUOTE] = ACTIONS(3260), + [anon_sym_u8R_DQUOTE] = ACTIONS(3260), + [anon_sym_co_await] = ACTIONS(3258), + [anon_sym_new] = ACTIONS(3258), + [anon_sym_requires] = ACTIONS(3258), + [sym_this] = ACTIONS(3258), }, [1274] = { - [sym_identifier] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2616), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), + [sym_identifier] = ACTIONS(3455), + [aux_sym_preproc_include_token1] = ACTIONS(3455), + [aux_sym_preproc_def_token1] = ACTIONS(3455), + [aux_sym_preproc_if_token1] = ACTIONS(3455), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3455), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3455), + [sym_preproc_directive] = ACTIONS(3455), + [anon_sym_LPAREN2] = ACTIONS(3457), + [anon_sym_BANG] = ACTIONS(3457), + [anon_sym_TILDE] = ACTIONS(3457), + [anon_sym_DASH] = ACTIONS(3455), + [anon_sym_PLUS] = ACTIONS(3455), + [anon_sym_STAR] = ACTIONS(3457), + [anon_sym_AMP_AMP] = ACTIONS(3457), + [anon_sym_AMP] = ACTIONS(3455), + [anon_sym_SEMI] = ACTIONS(3457), + [anon_sym_typedef] = ACTIONS(3455), + [anon_sym_extern] = ACTIONS(3455), + [anon_sym___attribute__] = ACTIONS(3455), + [anon_sym_COLON_COLON] = ACTIONS(3457), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3457), + [anon_sym___declspec] = ACTIONS(3455), + [anon_sym___based] = ACTIONS(3455), + [anon_sym___cdecl] = ACTIONS(3455), + [anon_sym___clrcall] = ACTIONS(3455), + [anon_sym___stdcall] = ACTIONS(3455), + [anon_sym___fastcall] = ACTIONS(3455), + [anon_sym___thiscall] = ACTIONS(3455), + [anon_sym___vectorcall] = ACTIONS(3455), + [anon_sym_LBRACE] = ACTIONS(3457), + [anon_sym_RBRACE] = ACTIONS(3457), + [anon_sym_LBRACK] = ACTIONS(3455), + [anon_sym_static] = ACTIONS(3455), + [anon_sym_register] = ACTIONS(3455), + [anon_sym_inline] = ACTIONS(3455), + [anon_sym_thread_local] = ACTIONS(3455), + [anon_sym_const] = ACTIONS(3455), + [anon_sym_constexpr] = ACTIONS(3455), + [anon_sym_volatile] = ACTIONS(3455), + [anon_sym_restrict] = ACTIONS(3455), + [anon_sym___restrict__] = ACTIONS(3455), + [anon_sym__Atomic] = ACTIONS(3455), + [anon_sym__Noreturn] = ACTIONS(3455), + [anon_sym_noreturn] = ACTIONS(3455), + [anon_sym_mutable] = ACTIONS(3455), + [anon_sym_constinit] = ACTIONS(3455), + [anon_sym_consteval] = ACTIONS(3455), + [anon_sym_signed] = ACTIONS(3455), + [anon_sym_unsigned] = ACTIONS(3455), + [anon_sym_long] = ACTIONS(3455), + [anon_sym_short] = ACTIONS(3455), + [sym_primitive_type] = ACTIONS(3455), + [anon_sym_enum] = ACTIONS(3455), + [anon_sym_class] = ACTIONS(3455), + [anon_sym_struct] = ACTIONS(3455), + [anon_sym_union] = ACTIONS(3455), + [anon_sym_if] = ACTIONS(3455), + [anon_sym_switch] = ACTIONS(3455), + [anon_sym_case] = ACTIONS(3455), + [anon_sym_default] = ACTIONS(3455), + [anon_sym_while] = ACTIONS(3455), + [anon_sym_do] = ACTIONS(3455), + [anon_sym_for] = ACTIONS(3455), + [anon_sym_return] = ACTIONS(3455), + [anon_sym_break] = ACTIONS(3455), + [anon_sym_continue] = ACTIONS(3455), + [anon_sym_goto] = ACTIONS(3455), + [anon_sym_not] = ACTIONS(3455), + [anon_sym_compl] = ACTIONS(3455), + [anon_sym_DASH_DASH] = ACTIONS(3457), + [anon_sym_PLUS_PLUS] = ACTIONS(3457), + [anon_sym_sizeof] = ACTIONS(3455), + [anon_sym_offsetof] = ACTIONS(3455), + [anon_sym__Generic] = ACTIONS(3455), + [anon_sym_asm] = ACTIONS(3455), + [anon_sym___asm__] = ACTIONS(3455), + [sym_number_literal] = ACTIONS(3457), + [anon_sym_L_SQUOTE] = ACTIONS(3457), + [anon_sym_u_SQUOTE] = ACTIONS(3457), + [anon_sym_U_SQUOTE] = ACTIONS(3457), + [anon_sym_u8_SQUOTE] = ACTIONS(3457), + [anon_sym_SQUOTE] = ACTIONS(3457), + [anon_sym_L_DQUOTE] = ACTIONS(3457), + [anon_sym_u_DQUOTE] = ACTIONS(3457), + [anon_sym_U_DQUOTE] = ACTIONS(3457), + [anon_sym_u8_DQUOTE] = ACTIONS(3457), + [anon_sym_DQUOTE] = ACTIONS(3457), + [sym_true] = ACTIONS(3455), + [sym_false] = ACTIONS(3455), + [anon_sym_NULL] = ACTIONS(3455), + [anon_sym_nullptr] = ACTIONS(3455), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3455), + [anon_sym_decltype] = ACTIONS(3455), + [anon_sym_virtual] = ACTIONS(3455), + [anon_sym_explicit] = ACTIONS(3455), + [anon_sym_typename] = ACTIONS(3455), + [anon_sym_template] = ACTIONS(3455), + [anon_sym_operator] = ACTIONS(3455), + [anon_sym_try] = ACTIONS(3455), + [anon_sym_delete] = ACTIONS(3455), + [anon_sym_throw] = ACTIONS(3455), + [anon_sym_namespace] = ACTIONS(3455), + [anon_sym_using] = ACTIONS(3455), + [anon_sym_static_assert] = ACTIONS(3455), + [anon_sym_concept] = ACTIONS(3455), + [anon_sym_co_return] = ACTIONS(3455), + [anon_sym_co_yield] = ACTIONS(3455), + [anon_sym_R_DQUOTE] = ACTIONS(3457), + [anon_sym_LR_DQUOTE] = ACTIONS(3457), + [anon_sym_uR_DQUOTE] = ACTIONS(3457), + [anon_sym_UR_DQUOTE] = ACTIONS(3457), + [anon_sym_u8R_DQUOTE] = ACTIONS(3457), + [anon_sym_co_await] = ACTIONS(3455), + [anon_sym_new] = ACTIONS(3455), + [anon_sym_requires] = ACTIONS(3455), + [sym_this] = ACTIONS(3455), }, [1275] = { - [sym_identifier] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2616), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), + [sym_identifier] = ACTIONS(3419), + [aux_sym_preproc_include_token1] = ACTIONS(3419), + [aux_sym_preproc_def_token1] = ACTIONS(3419), + [aux_sym_preproc_if_token1] = ACTIONS(3419), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3419), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3419), + [sym_preproc_directive] = ACTIONS(3419), + [anon_sym_LPAREN2] = ACTIONS(3421), + [anon_sym_BANG] = ACTIONS(3421), + [anon_sym_TILDE] = ACTIONS(3421), + [anon_sym_DASH] = ACTIONS(3419), + [anon_sym_PLUS] = ACTIONS(3419), + [anon_sym_STAR] = ACTIONS(3421), + [anon_sym_AMP_AMP] = ACTIONS(3421), + [anon_sym_AMP] = ACTIONS(3419), + [anon_sym_SEMI] = ACTIONS(3421), + [anon_sym_typedef] = ACTIONS(3419), + [anon_sym_extern] = ACTIONS(3419), + [anon_sym___attribute__] = ACTIONS(3419), + [anon_sym_COLON_COLON] = ACTIONS(3421), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3421), + [anon_sym___declspec] = ACTIONS(3419), + [anon_sym___based] = ACTIONS(3419), + [anon_sym___cdecl] = ACTIONS(3419), + [anon_sym___clrcall] = ACTIONS(3419), + [anon_sym___stdcall] = ACTIONS(3419), + [anon_sym___fastcall] = ACTIONS(3419), + [anon_sym___thiscall] = ACTIONS(3419), + [anon_sym___vectorcall] = ACTIONS(3419), + [anon_sym_LBRACE] = ACTIONS(3421), + [anon_sym_RBRACE] = ACTIONS(3421), + [anon_sym_LBRACK] = ACTIONS(3419), + [anon_sym_static] = ACTIONS(3419), + [anon_sym_register] = ACTIONS(3419), + [anon_sym_inline] = ACTIONS(3419), + [anon_sym_thread_local] = ACTIONS(3419), + [anon_sym_const] = ACTIONS(3419), + [anon_sym_constexpr] = ACTIONS(3419), + [anon_sym_volatile] = ACTIONS(3419), + [anon_sym_restrict] = ACTIONS(3419), + [anon_sym___restrict__] = ACTIONS(3419), + [anon_sym__Atomic] = ACTIONS(3419), + [anon_sym__Noreturn] = ACTIONS(3419), + [anon_sym_noreturn] = ACTIONS(3419), + [anon_sym_mutable] = ACTIONS(3419), + [anon_sym_constinit] = ACTIONS(3419), + [anon_sym_consteval] = ACTIONS(3419), + [anon_sym_signed] = ACTIONS(3419), + [anon_sym_unsigned] = ACTIONS(3419), + [anon_sym_long] = ACTIONS(3419), + [anon_sym_short] = ACTIONS(3419), + [sym_primitive_type] = ACTIONS(3419), + [anon_sym_enum] = ACTIONS(3419), + [anon_sym_class] = ACTIONS(3419), + [anon_sym_struct] = ACTIONS(3419), + [anon_sym_union] = ACTIONS(3419), + [anon_sym_if] = ACTIONS(3419), + [anon_sym_switch] = ACTIONS(3419), + [anon_sym_case] = ACTIONS(3419), + [anon_sym_default] = ACTIONS(3419), + [anon_sym_while] = ACTIONS(3419), + [anon_sym_do] = ACTIONS(3419), + [anon_sym_for] = ACTIONS(3419), + [anon_sym_return] = ACTIONS(3419), + [anon_sym_break] = ACTIONS(3419), + [anon_sym_continue] = ACTIONS(3419), + [anon_sym_goto] = ACTIONS(3419), + [anon_sym_not] = ACTIONS(3419), + [anon_sym_compl] = ACTIONS(3419), + [anon_sym_DASH_DASH] = ACTIONS(3421), + [anon_sym_PLUS_PLUS] = ACTIONS(3421), + [anon_sym_sizeof] = ACTIONS(3419), + [anon_sym_offsetof] = ACTIONS(3419), + [anon_sym__Generic] = ACTIONS(3419), + [anon_sym_asm] = ACTIONS(3419), + [anon_sym___asm__] = ACTIONS(3419), + [sym_number_literal] = ACTIONS(3421), + [anon_sym_L_SQUOTE] = ACTIONS(3421), + [anon_sym_u_SQUOTE] = ACTIONS(3421), + [anon_sym_U_SQUOTE] = ACTIONS(3421), + [anon_sym_u8_SQUOTE] = ACTIONS(3421), + [anon_sym_SQUOTE] = ACTIONS(3421), + [anon_sym_L_DQUOTE] = ACTIONS(3421), + [anon_sym_u_DQUOTE] = ACTIONS(3421), + [anon_sym_U_DQUOTE] = ACTIONS(3421), + [anon_sym_u8_DQUOTE] = ACTIONS(3421), + [anon_sym_DQUOTE] = ACTIONS(3421), + [sym_true] = ACTIONS(3419), + [sym_false] = ACTIONS(3419), + [anon_sym_NULL] = ACTIONS(3419), + [anon_sym_nullptr] = ACTIONS(3419), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3419), + [anon_sym_decltype] = ACTIONS(3419), + [anon_sym_virtual] = ACTIONS(3419), + [anon_sym_explicit] = ACTIONS(3419), + [anon_sym_typename] = ACTIONS(3419), + [anon_sym_template] = ACTIONS(3419), + [anon_sym_operator] = ACTIONS(3419), + [anon_sym_try] = ACTIONS(3419), + [anon_sym_delete] = ACTIONS(3419), + [anon_sym_throw] = ACTIONS(3419), + [anon_sym_namespace] = ACTIONS(3419), + [anon_sym_using] = ACTIONS(3419), + [anon_sym_static_assert] = ACTIONS(3419), + [anon_sym_concept] = ACTIONS(3419), + [anon_sym_co_return] = ACTIONS(3419), + [anon_sym_co_yield] = ACTIONS(3419), + [anon_sym_R_DQUOTE] = ACTIONS(3421), + [anon_sym_LR_DQUOTE] = ACTIONS(3421), + [anon_sym_uR_DQUOTE] = ACTIONS(3421), + [anon_sym_UR_DQUOTE] = ACTIONS(3421), + [anon_sym_u8R_DQUOTE] = ACTIONS(3421), + [anon_sym_co_await] = ACTIONS(3419), + [anon_sym_new] = ACTIONS(3419), + [anon_sym_requires] = ACTIONS(3419), + [sym_this] = ACTIONS(3419), }, [1276] = { - [sym_identifier] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2616), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), + [sym_identifier] = ACTIONS(3282), + [aux_sym_preproc_include_token1] = ACTIONS(3282), + [aux_sym_preproc_def_token1] = ACTIONS(3282), + [aux_sym_preproc_if_token1] = ACTIONS(3282), + [aux_sym_preproc_if_token2] = ACTIONS(3282), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3282), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3282), + [sym_preproc_directive] = ACTIONS(3282), + [anon_sym_LPAREN2] = ACTIONS(3284), + [anon_sym_BANG] = ACTIONS(3284), + [anon_sym_TILDE] = ACTIONS(3284), + [anon_sym_DASH] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3282), + [anon_sym_STAR] = ACTIONS(3284), + [anon_sym_AMP_AMP] = ACTIONS(3284), + [anon_sym_AMP] = ACTIONS(3282), + [anon_sym_SEMI] = ACTIONS(3284), + [anon_sym_typedef] = ACTIONS(3282), + [anon_sym_extern] = ACTIONS(3282), + [anon_sym___attribute__] = ACTIONS(3282), + [anon_sym_COLON_COLON] = ACTIONS(3284), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3284), + [anon_sym___declspec] = ACTIONS(3282), + [anon_sym___based] = ACTIONS(3282), + [anon_sym___cdecl] = ACTIONS(3282), + [anon_sym___clrcall] = ACTIONS(3282), + [anon_sym___stdcall] = ACTIONS(3282), + [anon_sym___fastcall] = ACTIONS(3282), + [anon_sym___thiscall] = ACTIONS(3282), + [anon_sym___vectorcall] = ACTIONS(3282), + [anon_sym_LBRACE] = ACTIONS(3284), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_static] = ACTIONS(3282), + [anon_sym_register] = ACTIONS(3282), + [anon_sym_inline] = ACTIONS(3282), + [anon_sym_thread_local] = ACTIONS(3282), + [anon_sym_const] = ACTIONS(3282), + [anon_sym_constexpr] = ACTIONS(3282), + [anon_sym_volatile] = ACTIONS(3282), + [anon_sym_restrict] = ACTIONS(3282), + [anon_sym___restrict__] = ACTIONS(3282), + [anon_sym__Atomic] = ACTIONS(3282), + [anon_sym__Noreturn] = ACTIONS(3282), + [anon_sym_noreturn] = ACTIONS(3282), + [anon_sym_mutable] = ACTIONS(3282), + [anon_sym_constinit] = ACTIONS(3282), + [anon_sym_consteval] = ACTIONS(3282), + [anon_sym_signed] = ACTIONS(3282), + [anon_sym_unsigned] = ACTIONS(3282), + [anon_sym_long] = ACTIONS(3282), + [anon_sym_short] = ACTIONS(3282), + [sym_primitive_type] = ACTIONS(3282), + [anon_sym_enum] = ACTIONS(3282), + [anon_sym_class] = ACTIONS(3282), + [anon_sym_struct] = ACTIONS(3282), + [anon_sym_union] = ACTIONS(3282), + [anon_sym_if] = ACTIONS(3282), + [anon_sym_switch] = ACTIONS(3282), + [anon_sym_case] = ACTIONS(3282), + [anon_sym_default] = ACTIONS(3282), + [anon_sym_while] = ACTIONS(3282), + [anon_sym_do] = ACTIONS(3282), + [anon_sym_for] = ACTIONS(3282), + [anon_sym_return] = ACTIONS(3282), + [anon_sym_break] = ACTIONS(3282), + [anon_sym_continue] = ACTIONS(3282), + [anon_sym_goto] = ACTIONS(3282), + [anon_sym_not] = ACTIONS(3282), + [anon_sym_compl] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3284), + [anon_sym_PLUS_PLUS] = ACTIONS(3284), + [anon_sym_sizeof] = ACTIONS(3282), + [anon_sym_offsetof] = ACTIONS(3282), + [anon_sym__Generic] = ACTIONS(3282), + [anon_sym_asm] = ACTIONS(3282), + [anon_sym___asm__] = ACTIONS(3282), + [sym_number_literal] = ACTIONS(3284), + [anon_sym_L_SQUOTE] = ACTIONS(3284), + [anon_sym_u_SQUOTE] = ACTIONS(3284), + [anon_sym_U_SQUOTE] = ACTIONS(3284), + [anon_sym_u8_SQUOTE] = ACTIONS(3284), + [anon_sym_SQUOTE] = ACTIONS(3284), + [anon_sym_L_DQUOTE] = ACTIONS(3284), + [anon_sym_u_DQUOTE] = ACTIONS(3284), + [anon_sym_U_DQUOTE] = ACTIONS(3284), + [anon_sym_u8_DQUOTE] = ACTIONS(3284), + [anon_sym_DQUOTE] = ACTIONS(3284), + [sym_true] = ACTIONS(3282), + [sym_false] = ACTIONS(3282), + [anon_sym_NULL] = ACTIONS(3282), + [anon_sym_nullptr] = ACTIONS(3282), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3282), + [anon_sym_decltype] = ACTIONS(3282), + [anon_sym_virtual] = ACTIONS(3282), + [anon_sym_explicit] = ACTIONS(3282), + [anon_sym_typename] = ACTIONS(3282), + [anon_sym_template] = ACTIONS(3282), + [anon_sym_operator] = ACTIONS(3282), + [anon_sym_try] = ACTIONS(3282), + [anon_sym_delete] = ACTIONS(3282), + [anon_sym_throw] = ACTIONS(3282), + [anon_sym_namespace] = ACTIONS(3282), + [anon_sym_using] = ACTIONS(3282), + [anon_sym_static_assert] = ACTIONS(3282), + [anon_sym_concept] = ACTIONS(3282), + [anon_sym_co_return] = ACTIONS(3282), + [anon_sym_co_yield] = ACTIONS(3282), + [anon_sym_R_DQUOTE] = ACTIONS(3284), + [anon_sym_LR_DQUOTE] = ACTIONS(3284), + [anon_sym_uR_DQUOTE] = ACTIONS(3284), + [anon_sym_UR_DQUOTE] = ACTIONS(3284), + [anon_sym_u8R_DQUOTE] = ACTIONS(3284), + [anon_sym_co_await] = ACTIONS(3282), + [anon_sym_new] = ACTIONS(3282), + [anon_sym_requires] = ACTIONS(3282), + [sym_this] = ACTIONS(3282), }, [1277] = { - [sym_identifier] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2616), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), + [sym_identifier] = ACTIONS(3290), + [aux_sym_preproc_include_token1] = ACTIONS(3290), + [aux_sym_preproc_def_token1] = ACTIONS(3290), + [aux_sym_preproc_if_token1] = ACTIONS(3290), + [aux_sym_preproc_if_token2] = ACTIONS(3290), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3290), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3290), + [sym_preproc_directive] = ACTIONS(3290), + [anon_sym_LPAREN2] = ACTIONS(3292), + [anon_sym_BANG] = ACTIONS(3292), + [anon_sym_TILDE] = ACTIONS(3292), + [anon_sym_DASH] = ACTIONS(3290), + [anon_sym_PLUS] = ACTIONS(3290), + [anon_sym_STAR] = ACTIONS(3292), + [anon_sym_AMP_AMP] = ACTIONS(3292), + [anon_sym_AMP] = ACTIONS(3290), + [anon_sym_SEMI] = ACTIONS(3292), + [anon_sym_typedef] = ACTIONS(3290), + [anon_sym_extern] = ACTIONS(3290), + [anon_sym___attribute__] = ACTIONS(3290), + [anon_sym_COLON_COLON] = ACTIONS(3292), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3292), + [anon_sym___declspec] = ACTIONS(3290), + [anon_sym___based] = ACTIONS(3290), + [anon_sym___cdecl] = ACTIONS(3290), + [anon_sym___clrcall] = ACTIONS(3290), + [anon_sym___stdcall] = ACTIONS(3290), + [anon_sym___fastcall] = ACTIONS(3290), + [anon_sym___thiscall] = ACTIONS(3290), + [anon_sym___vectorcall] = ACTIONS(3290), + [anon_sym_LBRACE] = ACTIONS(3292), + [anon_sym_LBRACK] = ACTIONS(3290), + [anon_sym_static] = ACTIONS(3290), + [anon_sym_register] = ACTIONS(3290), + [anon_sym_inline] = ACTIONS(3290), + [anon_sym_thread_local] = ACTIONS(3290), + [anon_sym_const] = ACTIONS(3290), + [anon_sym_constexpr] = ACTIONS(3290), + [anon_sym_volatile] = ACTIONS(3290), + [anon_sym_restrict] = ACTIONS(3290), + [anon_sym___restrict__] = ACTIONS(3290), + [anon_sym__Atomic] = ACTIONS(3290), + [anon_sym__Noreturn] = ACTIONS(3290), + [anon_sym_noreturn] = ACTIONS(3290), + [anon_sym_mutable] = ACTIONS(3290), + [anon_sym_constinit] = ACTIONS(3290), + [anon_sym_consteval] = ACTIONS(3290), + [anon_sym_signed] = ACTIONS(3290), + [anon_sym_unsigned] = ACTIONS(3290), + [anon_sym_long] = ACTIONS(3290), + [anon_sym_short] = ACTIONS(3290), + [sym_primitive_type] = ACTIONS(3290), + [anon_sym_enum] = ACTIONS(3290), + [anon_sym_class] = ACTIONS(3290), + [anon_sym_struct] = ACTIONS(3290), + [anon_sym_union] = ACTIONS(3290), + [anon_sym_if] = ACTIONS(3290), + [anon_sym_switch] = ACTIONS(3290), + [anon_sym_case] = ACTIONS(3290), + [anon_sym_default] = ACTIONS(3290), + [anon_sym_while] = ACTIONS(3290), + [anon_sym_do] = ACTIONS(3290), + [anon_sym_for] = ACTIONS(3290), + [anon_sym_return] = ACTIONS(3290), + [anon_sym_break] = ACTIONS(3290), + [anon_sym_continue] = ACTIONS(3290), + [anon_sym_goto] = ACTIONS(3290), + [anon_sym_not] = ACTIONS(3290), + [anon_sym_compl] = ACTIONS(3290), + [anon_sym_DASH_DASH] = ACTIONS(3292), + [anon_sym_PLUS_PLUS] = ACTIONS(3292), + [anon_sym_sizeof] = ACTIONS(3290), + [anon_sym_offsetof] = ACTIONS(3290), + [anon_sym__Generic] = ACTIONS(3290), + [anon_sym_asm] = ACTIONS(3290), + [anon_sym___asm__] = ACTIONS(3290), + [sym_number_literal] = ACTIONS(3292), + [anon_sym_L_SQUOTE] = ACTIONS(3292), + [anon_sym_u_SQUOTE] = ACTIONS(3292), + [anon_sym_U_SQUOTE] = ACTIONS(3292), + [anon_sym_u8_SQUOTE] = ACTIONS(3292), + [anon_sym_SQUOTE] = ACTIONS(3292), + [anon_sym_L_DQUOTE] = ACTIONS(3292), + [anon_sym_u_DQUOTE] = ACTIONS(3292), + [anon_sym_U_DQUOTE] = ACTIONS(3292), + [anon_sym_u8_DQUOTE] = ACTIONS(3292), + [anon_sym_DQUOTE] = ACTIONS(3292), + [sym_true] = ACTIONS(3290), + [sym_false] = ACTIONS(3290), + [anon_sym_NULL] = ACTIONS(3290), + [anon_sym_nullptr] = ACTIONS(3290), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3290), + [anon_sym_decltype] = ACTIONS(3290), + [anon_sym_virtual] = ACTIONS(3290), + [anon_sym_explicit] = ACTIONS(3290), + [anon_sym_typename] = ACTIONS(3290), + [anon_sym_template] = ACTIONS(3290), + [anon_sym_operator] = ACTIONS(3290), + [anon_sym_try] = ACTIONS(3290), + [anon_sym_delete] = ACTIONS(3290), + [anon_sym_throw] = ACTIONS(3290), + [anon_sym_namespace] = ACTIONS(3290), + [anon_sym_using] = ACTIONS(3290), + [anon_sym_static_assert] = ACTIONS(3290), + [anon_sym_concept] = ACTIONS(3290), + [anon_sym_co_return] = ACTIONS(3290), + [anon_sym_co_yield] = ACTIONS(3290), + [anon_sym_R_DQUOTE] = ACTIONS(3292), + [anon_sym_LR_DQUOTE] = ACTIONS(3292), + [anon_sym_uR_DQUOTE] = ACTIONS(3292), + [anon_sym_UR_DQUOTE] = ACTIONS(3292), + [anon_sym_u8R_DQUOTE] = ACTIONS(3292), + [anon_sym_co_await] = ACTIONS(3290), + [anon_sym_new] = ACTIONS(3290), + [anon_sym_requires] = ACTIONS(3290), + [sym_this] = ACTIONS(3290), }, [1278] = { - [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_AMP] = ACTIONS(2464), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym_LBRACE] = ACTIONS(2464), - [anon_sym_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_identifier] = ACTIONS(3234), + [aux_sym_preproc_include_token1] = ACTIONS(3234), + [aux_sym_preproc_def_token1] = ACTIONS(3234), + [aux_sym_preproc_if_token1] = ACTIONS(3234), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3234), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3234), + [sym_preproc_directive] = ACTIONS(3234), + [anon_sym_LPAREN2] = ACTIONS(3236), + [anon_sym_BANG] = ACTIONS(3236), + [anon_sym_TILDE] = ACTIONS(3236), + [anon_sym_DASH] = ACTIONS(3234), + [anon_sym_PLUS] = ACTIONS(3234), + [anon_sym_STAR] = ACTIONS(3236), + [anon_sym_AMP_AMP] = ACTIONS(3236), + [anon_sym_AMP] = ACTIONS(3234), + [anon_sym_SEMI] = ACTIONS(3236), + [anon_sym_typedef] = ACTIONS(3234), + [anon_sym_extern] = ACTIONS(3234), + [anon_sym___attribute__] = ACTIONS(3234), + [anon_sym_COLON_COLON] = ACTIONS(3236), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3236), + [anon_sym___declspec] = ACTIONS(3234), + [anon_sym___based] = ACTIONS(3234), + [anon_sym___cdecl] = ACTIONS(3234), + [anon_sym___clrcall] = ACTIONS(3234), + [anon_sym___stdcall] = ACTIONS(3234), + [anon_sym___fastcall] = ACTIONS(3234), + [anon_sym___thiscall] = ACTIONS(3234), + [anon_sym___vectorcall] = ACTIONS(3234), + [anon_sym_LBRACE] = ACTIONS(3236), + [anon_sym_RBRACE] = ACTIONS(3236), + [anon_sym_LBRACK] = ACTIONS(3234), + [anon_sym_static] = ACTIONS(3234), + [anon_sym_register] = ACTIONS(3234), + [anon_sym_inline] = ACTIONS(3234), + [anon_sym_thread_local] = ACTIONS(3234), + [anon_sym_const] = ACTIONS(3234), + [anon_sym_constexpr] = ACTIONS(3234), + [anon_sym_volatile] = ACTIONS(3234), + [anon_sym_restrict] = ACTIONS(3234), + [anon_sym___restrict__] = ACTIONS(3234), + [anon_sym__Atomic] = ACTIONS(3234), + [anon_sym__Noreturn] = ACTIONS(3234), + [anon_sym_noreturn] = ACTIONS(3234), + [anon_sym_mutable] = ACTIONS(3234), + [anon_sym_constinit] = ACTIONS(3234), + [anon_sym_consteval] = ACTIONS(3234), + [anon_sym_signed] = ACTIONS(3234), + [anon_sym_unsigned] = ACTIONS(3234), + [anon_sym_long] = ACTIONS(3234), + [anon_sym_short] = ACTIONS(3234), + [sym_primitive_type] = ACTIONS(3234), + [anon_sym_enum] = ACTIONS(3234), + [anon_sym_class] = ACTIONS(3234), + [anon_sym_struct] = ACTIONS(3234), + [anon_sym_union] = ACTIONS(3234), + [anon_sym_if] = ACTIONS(3234), + [anon_sym_switch] = ACTIONS(3234), + [anon_sym_case] = ACTIONS(3234), + [anon_sym_default] = ACTIONS(3234), + [anon_sym_while] = ACTIONS(3234), + [anon_sym_do] = ACTIONS(3234), + [anon_sym_for] = ACTIONS(3234), + [anon_sym_return] = ACTIONS(3234), + [anon_sym_break] = ACTIONS(3234), + [anon_sym_continue] = ACTIONS(3234), + [anon_sym_goto] = ACTIONS(3234), + [anon_sym_not] = ACTIONS(3234), + [anon_sym_compl] = ACTIONS(3234), + [anon_sym_DASH_DASH] = ACTIONS(3236), + [anon_sym_PLUS_PLUS] = ACTIONS(3236), + [anon_sym_sizeof] = ACTIONS(3234), + [anon_sym_offsetof] = ACTIONS(3234), + [anon_sym__Generic] = ACTIONS(3234), + [anon_sym_asm] = ACTIONS(3234), + [anon_sym___asm__] = ACTIONS(3234), + [sym_number_literal] = ACTIONS(3236), + [anon_sym_L_SQUOTE] = ACTIONS(3236), + [anon_sym_u_SQUOTE] = ACTIONS(3236), + [anon_sym_U_SQUOTE] = ACTIONS(3236), + [anon_sym_u8_SQUOTE] = ACTIONS(3236), + [anon_sym_SQUOTE] = ACTIONS(3236), + [anon_sym_L_DQUOTE] = ACTIONS(3236), + [anon_sym_u_DQUOTE] = ACTIONS(3236), + [anon_sym_U_DQUOTE] = ACTIONS(3236), + [anon_sym_u8_DQUOTE] = ACTIONS(3236), + [anon_sym_DQUOTE] = ACTIONS(3236), + [sym_true] = ACTIONS(3234), + [sym_false] = ACTIONS(3234), + [anon_sym_NULL] = ACTIONS(3234), + [anon_sym_nullptr] = ACTIONS(3234), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3234), + [anon_sym_decltype] = ACTIONS(3234), + [anon_sym_virtual] = ACTIONS(3234), + [anon_sym_explicit] = ACTIONS(3234), + [anon_sym_typename] = ACTIONS(3234), + [anon_sym_template] = ACTIONS(3234), + [anon_sym_operator] = ACTIONS(3234), + [anon_sym_try] = ACTIONS(3234), + [anon_sym_delete] = ACTIONS(3234), + [anon_sym_throw] = ACTIONS(3234), + [anon_sym_namespace] = ACTIONS(3234), + [anon_sym_using] = ACTIONS(3234), + [anon_sym_static_assert] = ACTIONS(3234), + [anon_sym_concept] = ACTIONS(3234), + [anon_sym_co_return] = ACTIONS(3234), + [anon_sym_co_yield] = ACTIONS(3234), + [anon_sym_R_DQUOTE] = ACTIONS(3236), + [anon_sym_LR_DQUOTE] = ACTIONS(3236), + [anon_sym_uR_DQUOTE] = ACTIONS(3236), + [anon_sym_UR_DQUOTE] = ACTIONS(3236), + [anon_sym_u8R_DQUOTE] = ACTIONS(3236), + [anon_sym_co_await] = ACTIONS(3234), + [anon_sym_new] = ACTIONS(3234), + [anon_sym_requires] = ACTIONS(3234), + [sym_this] = ACTIONS(3234), }, [1279] = { - [sym_identifier] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2616), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), + [sym_identifier] = ACTIONS(3312), + [aux_sym_preproc_include_token1] = ACTIONS(3312), + [aux_sym_preproc_def_token1] = ACTIONS(3312), + [aux_sym_preproc_if_token1] = ACTIONS(3312), + [aux_sym_preproc_if_token2] = ACTIONS(3312), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3312), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3312), + [sym_preproc_directive] = ACTIONS(3312), + [anon_sym_LPAREN2] = ACTIONS(3314), + [anon_sym_BANG] = ACTIONS(3314), + [anon_sym_TILDE] = ACTIONS(3314), + [anon_sym_DASH] = ACTIONS(3312), + [anon_sym_PLUS] = ACTIONS(3312), + [anon_sym_STAR] = ACTIONS(3314), + [anon_sym_AMP_AMP] = ACTIONS(3314), + [anon_sym_AMP] = ACTIONS(3312), + [anon_sym_SEMI] = ACTIONS(3314), + [anon_sym_typedef] = ACTIONS(3312), + [anon_sym_extern] = ACTIONS(3312), + [anon_sym___attribute__] = ACTIONS(3312), + [anon_sym_COLON_COLON] = ACTIONS(3314), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3314), + [anon_sym___declspec] = ACTIONS(3312), + [anon_sym___based] = ACTIONS(3312), + [anon_sym___cdecl] = ACTIONS(3312), + [anon_sym___clrcall] = ACTIONS(3312), + [anon_sym___stdcall] = ACTIONS(3312), + [anon_sym___fastcall] = ACTIONS(3312), + [anon_sym___thiscall] = ACTIONS(3312), + [anon_sym___vectorcall] = ACTIONS(3312), + [anon_sym_LBRACE] = ACTIONS(3314), + [anon_sym_LBRACK] = ACTIONS(3312), + [anon_sym_static] = ACTIONS(3312), + [anon_sym_register] = ACTIONS(3312), + [anon_sym_inline] = ACTIONS(3312), + [anon_sym_thread_local] = ACTIONS(3312), + [anon_sym_const] = ACTIONS(3312), + [anon_sym_constexpr] = ACTIONS(3312), + [anon_sym_volatile] = ACTIONS(3312), + [anon_sym_restrict] = ACTIONS(3312), + [anon_sym___restrict__] = ACTIONS(3312), + [anon_sym__Atomic] = ACTIONS(3312), + [anon_sym__Noreturn] = ACTIONS(3312), + [anon_sym_noreturn] = ACTIONS(3312), + [anon_sym_mutable] = ACTIONS(3312), + [anon_sym_constinit] = ACTIONS(3312), + [anon_sym_consteval] = ACTIONS(3312), + [anon_sym_signed] = ACTIONS(3312), + [anon_sym_unsigned] = ACTIONS(3312), + [anon_sym_long] = ACTIONS(3312), + [anon_sym_short] = ACTIONS(3312), + [sym_primitive_type] = ACTIONS(3312), + [anon_sym_enum] = ACTIONS(3312), + [anon_sym_class] = ACTIONS(3312), + [anon_sym_struct] = ACTIONS(3312), + [anon_sym_union] = ACTIONS(3312), + [anon_sym_if] = ACTIONS(3312), + [anon_sym_switch] = ACTIONS(3312), + [anon_sym_case] = ACTIONS(3312), + [anon_sym_default] = ACTIONS(3312), + [anon_sym_while] = ACTIONS(3312), + [anon_sym_do] = ACTIONS(3312), + [anon_sym_for] = ACTIONS(3312), + [anon_sym_return] = ACTIONS(3312), + [anon_sym_break] = ACTIONS(3312), + [anon_sym_continue] = ACTIONS(3312), + [anon_sym_goto] = ACTIONS(3312), + [anon_sym_not] = ACTIONS(3312), + [anon_sym_compl] = ACTIONS(3312), + [anon_sym_DASH_DASH] = ACTIONS(3314), + [anon_sym_PLUS_PLUS] = ACTIONS(3314), + [anon_sym_sizeof] = ACTIONS(3312), + [anon_sym_offsetof] = ACTIONS(3312), + [anon_sym__Generic] = ACTIONS(3312), + [anon_sym_asm] = ACTIONS(3312), + [anon_sym___asm__] = ACTIONS(3312), + [sym_number_literal] = ACTIONS(3314), + [anon_sym_L_SQUOTE] = ACTIONS(3314), + [anon_sym_u_SQUOTE] = ACTIONS(3314), + [anon_sym_U_SQUOTE] = ACTIONS(3314), + [anon_sym_u8_SQUOTE] = ACTIONS(3314), + [anon_sym_SQUOTE] = ACTIONS(3314), + [anon_sym_L_DQUOTE] = ACTIONS(3314), + [anon_sym_u_DQUOTE] = ACTIONS(3314), + [anon_sym_U_DQUOTE] = ACTIONS(3314), + [anon_sym_u8_DQUOTE] = ACTIONS(3314), + [anon_sym_DQUOTE] = ACTIONS(3314), + [sym_true] = ACTIONS(3312), + [sym_false] = ACTIONS(3312), + [anon_sym_NULL] = ACTIONS(3312), + [anon_sym_nullptr] = ACTIONS(3312), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3312), + [anon_sym_decltype] = ACTIONS(3312), + [anon_sym_virtual] = ACTIONS(3312), + [anon_sym_explicit] = ACTIONS(3312), + [anon_sym_typename] = ACTIONS(3312), + [anon_sym_template] = ACTIONS(3312), + [anon_sym_operator] = ACTIONS(3312), + [anon_sym_try] = ACTIONS(3312), + [anon_sym_delete] = ACTIONS(3312), + [anon_sym_throw] = ACTIONS(3312), + [anon_sym_namespace] = ACTIONS(3312), + [anon_sym_using] = ACTIONS(3312), + [anon_sym_static_assert] = ACTIONS(3312), + [anon_sym_concept] = ACTIONS(3312), + [anon_sym_co_return] = ACTIONS(3312), + [anon_sym_co_yield] = ACTIONS(3312), + [anon_sym_R_DQUOTE] = ACTIONS(3314), + [anon_sym_LR_DQUOTE] = ACTIONS(3314), + [anon_sym_uR_DQUOTE] = ACTIONS(3314), + [anon_sym_UR_DQUOTE] = ACTIONS(3314), + [anon_sym_u8R_DQUOTE] = ACTIONS(3314), + [anon_sym_co_await] = ACTIONS(3312), + [anon_sym_new] = ACTIONS(3312), + [anon_sym_requires] = ACTIONS(3312), + [sym_this] = ACTIONS(3312), }, [1280] = { - [sym_identifier] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2616), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), + [sym_identifier] = ACTIONS(3322), + [aux_sym_preproc_include_token1] = ACTIONS(3322), + [aux_sym_preproc_def_token1] = ACTIONS(3322), + [aux_sym_preproc_if_token1] = ACTIONS(3322), + [aux_sym_preproc_if_token2] = ACTIONS(3322), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3322), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3322), + [sym_preproc_directive] = ACTIONS(3322), + [anon_sym_LPAREN2] = ACTIONS(3324), + [anon_sym_BANG] = ACTIONS(3324), + [anon_sym_TILDE] = ACTIONS(3324), + [anon_sym_DASH] = ACTIONS(3322), + [anon_sym_PLUS] = ACTIONS(3322), + [anon_sym_STAR] = ACTIONS(3324), + [anon_sym_AMP_AMP] = ACTIONS(3324), + [anon_sym_AMP] = ACTIONS(3322), + [anon_sym_SEMI] = ACTIONS(3324), + [anon_sym_typedef] = ACTIONS(3322), + [anon_sym_extern] = ACTIONS(3322), + [anon_sym___attribute__] = ACTIONS(3322), + [anon_sym_COLON_COLON] = ACTIONS(3324), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3324), + [anon_sym___declspec] = ACTIONS(3322), + [anon_sym___based] = ACTIONS(3322), + [anon_sym___cdecl] = ACTIONS(3322), + [anon_sym___clrcall] = ACTIONS(3322), + [anon_sym___stdcall] = ACTIONS(3322), + [anon_sym___fastcall] = ACTIONS(3322), + [anon_sym___thiscall] = ACTIONS(3322), + [anon_sym___vectorcall] = ACTIONS(3322), + [anon_sym_LBRACE] = ACTIONS(3324), + [anon_sym_LBRACK] = ACTIONS(3322), + [anon_sym_static] = ACTIONS(3322), + [anon_sym_register] = ACTIONS(3322), + [anon_sym_inline] = ACTIONS(3322), + [anon_sym_thread_local] = ACTIONS(3322), + [anon_sym_const] = ACTIONS(3322), + [anon_sym_constexpr] = ACTIONS(3322), + [anon_sym_volatile] = ACTIONS(3322), + [anon_sym_restrict] = ACTIONS(3322), + [anon_sym___restrict__] = ACTIONS(3322), + [anon_sym__Atomic] = ACTIONS(3322), + [anon_sym__Noreturn] = ACTIONS(3322), + [anon_sym_noreturn] = ACTIONS(3322), + [anon_sym_mutable] = ACTIONS(3322), + [anon_sym_constinit] = ACTIONS(3322), + [anon_sym_consteval] = ACTIONS(3322), + [anon_sym_signed] = ACTIONS(3322), + [anon_sym_unsigned] = ACTIONS(3322), + [anon_sym_long] = ACTIONS(3322), + [anon_sym_short] = ACTIONS(3322), + [sym_primitive_type] = ACTIONS(3322), + [anon_sym_enum] = ACTIONS(3322), + [anon_sym_class] = ACTIONS(3322), + [anon_sym_struct] = ACTIONS(3322), + [anon_sym_union] = ACTIONS(3322), + [anon_sym_if] = ACTIONS(3322), + [anon_sym_switch] = ACTIONS(3322), + [anon_sym_case] = ACTIONS(3322), + [anon_sym_default] = ACTIONS(3322), + [anon_sym_while] = ACTIONS(3322), + [anon_sym_do] = ACTIONS(3322), + [anon_sym_for] = ACTIONS(3322), + [anon_sym_return] = ACTIONS(3322), + [anon_sym_break] = ACTIONS(3322), + [anon_sym_continue] = ACTIONS(3322), + [anon_sym_goto] = ACTIONS(3322), + [anon_sym_not] = ACTIONS(3322), + [anon_sym_compl] = ACTIONS(3322), + [anon_sym_DASH_DASH] = ACTIONS(3324), + [anon_sym_PLUS_PLUS] = ACTIONS(3324), + [anon_sym_sizeof] = ACTIONS(3322), + [anon_sym_offsetof] = ACTIONS(3322), + [anon_sym__Generic] = ACTIONS(3322), + [anon_sym_asm] = ACTIONS(3322), + [anon_sym___asm__] = ACTIONS(3322), + [sym_number_literal] = ACTIONS(3324), + [anon_sym_L_SQUOTE] = ACTIONS(3324), + [anon_sym_u_SQUOTE] = ACTIONS(3324), + [anon_sym_U_SQUOTE] = ACTIONS(3324), + [anon_sym_u8_SQUOTE] = ACTIONS(3324), + [anon_sym_SQUOTE] = ACTIONS(3324), + [anon_sym_L_DQUOTE] = ACTIONS(3324), + [anon_sym_u_DQUOTE] = ACTIONS(3324), + [anon_sym_U_DQUOTE] = ACTIONS(3324), + [anon_sym_u8_DQUOTE] = ACTIONS(3324), + [anon_sym_DQUOTE] = ACTIONS(3324), + [sym_true] = ACTIONS(3322), + [sym_false] = ACTIONS(3322), + [anon_sym_NULL] = ACTIONS(3322), + [anon_sym_nullptr] = ACTIONS(3322), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3322), + [anon_sym_decltype] = ACTIONS(3322), + [anon_sym_virtual] = ACTIONS(3322), + [anon_sym_explicit] = ACTIONS(3322), + [anon_sym_typename] = ACTIONS(3322), + [anon_sym_template] = ACTIONS(3322), + [anon_sym_operator] = ACTIONS(3322), + [anon_sym_try] = ACTIONS(3322), + [anon_sym_delete] = ACTIONS(3322), + [anon_sym_throw] = ACTIONS(3322), + [anon_sym_namespace] = ACTIONS(3322), + [anon_sym_using] = ACTIONS(3322), + [anon_sym_static_assert] = ACTIONS(3322), + [anon_sym_concept] = ACTIONS(3322), + [anon_sym_co_return] = ACTIONS(3322), + [anon_sym_co_yield] = ACTIONS(3322), + [anon_sym_R_DQUOTE] = ACTIONS(3324), + [anon_sym_LR_DQUOTE] = ACTIONS(3324), + [anon_sym_uR_DQUOTE] = ACTIONS(3324), + [anon_sym_UR_DQUOTE] = ACTIONS(3324), + [anon_sym_u8R_DQUOTE] = ACTIONS(3324), + [anon_sym_co_await] = ACTIONS(3322), + [anon_sym_new] = ACTIONS(3322), + [anon_sym_requires] = ACTIONS(3322), + [sym_this] = ACTIONS(3322), }, [1281] = { - [sym_identifier] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2616), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), + [sym_identifier] = ACTIONS(3455), + [aux_sym_preproc_include_token1] = ACTIONS(3455), + [aux_sym_preproc_def_token1] = ACTIONS(3455), + [aux_sym_preproc_if_token1] = ACTIONS(3455), + [aux_sym_preproc_if_token2] = ACTIONS(3455), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3455), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3455), + [sym_preproc_directive] = ACTIONS(3455), + [anon_sym_LPAREN2] = ACTIONS(3457), + [anon_sym_BANG] = ACTIONS(3457), + [anon_sym_TILDE] = ACTIONS(3457), + [anon_sym_DASH] = ACTIONS(3455), + [anon_sym_PLUS] = ACTIONS(3455), + [anon_sym_STAR] = ACTIONS(3457), + [anon_sym_AMP_AMP] = ACTIONS(3457), + [anon_sym_AMP] = ACTIONS(3455), + [anon_sym_SEMI] = ACTIONS(3457), + [anon_sym_typedef] = ACTIONS(3455), + [anon_sym_extern] = ACTIONS(3455), + [anon_sym___attribute__] = ACTIONS(3455), + [anon_sym_COLON_COLON] = ACTIONS(3457), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3457), + [anon_sym___declspec] = ACTIONS(3455), + [anon_sym___based] = ACTIONS(3455), + [anon_sym___cdecl] = ACTIONS(3455), + [anon_sym___clrcall] = ACTIONS(3455), + [anon_sym___stdcall] = ACTIONS(3455), + [anon_sym___fastcall] = ACTIONS(3455), + [anon_sym___thiscall] = ACTIONS(3455), + [anon_sym___vectorcall] = ACTIONS(3455), + [anon_sym_LBRACE] = ACTIONS(3457), + [anon_sym_LBRACK] = ACTIONS(3455), + [anon_sym_static] = ACTIONS(3455), + [anon_sym_register] = ACTIONS(3455), + [anon_sym_inline] = ACTIONS(3455), + [anon_sym_thread_local] = ACTIONS(3455), + [anon_sym_const] = ACTIONS(3455), + [anon_sym_constexpr] = ACTIONS(3455), + [anon_sym_volatile] = ACTIONS(3455), + [anon_sym_restrict] = ACTIONS(3455), + [anon_sym___restrict__] = ACTIONS(3455), + [anon_sym__Atomic] = ACTIONS(3455), + [anon_sym__Noreturn] = ACTIONS(3455), + [anon_sym_noreturn] = ACTIONS(3455), + [anon_sym_mutable] = ACTIONS(3455), + [anon_sym_constinit] = ACTIONS(3455), + [anon_sym_consteval] = ACTIONS(3455), + [anon_sym_signed] = ACTIONS(3455), + [anon_sym_unsigned] = ACTIONS(3455), + [anon_sym_long] = ACTIONS(3455), + [anon_sym_short] = ACTIONS(3455), + [sym_primitive_type] = ACTIONS(3455), + [anon_sym_enum] = ACTIONS(3455), + [anon_sym_class] = ACTIONS(3455), + [anon_sym_struct] = ACTIONS(3455), + [anon_sym_union] = ACTIONS(3455), + [anon_sym_if] = ACTIONS(3455), + [anon_sym_switch] = ACTIONS(3455), + [anon_sym_case] = ACTIONS(3455), + [anon_sym_default] = ACTIONS(3455), + [anon_sym_while] = ACTIONS(3455), + [anon_sym_do] = ACTIONS(3455), + [anon_sym_for] = ACTIONS(3455), + [anon_sym_return] = ACTIONS(3455), + [anon_sym_break] = ACTIONS(3455), + [anon_sym_continue] = ACTIONS(3455), + [anon_sym_goto] = ACTIONS(3455), + [anon_sym_not] = ACTIONS(3455), + [anon_sym_compl] = ACTIONS(3455), + [anon_sym_DASH_DASH] = ACTIONS(3457), + [anon_sym_PLUS_PLUS] = ACTIONS(3457), + [anon_sym_sizeof] = ACTIONS(3455), + [anon_sym_offsetof] = ACTIONS(3455), + [anon_sym__Generic] = ACTIONS(3455), + [anon_sym_asm] = ACTIONS(3455), + [anon_sym___asm__] = ACTIONS(3455), + [sym_number_literal] = ACTIONS(3457), + [anon_sym_L_SQUOTE] = ACTIONS(3457), + [anon_sym_u_SQUOTE] = ACTIONS(3457), + [anon_sym_U_SQUOTE] = ACTIONS(3457), + [anon_sym_u8_SQUOTE] = ACTIONS(3457), + [anon_sym_SQUOTE] = ACTIONS(3457), + [anon_sym_L_DQUOTE] = ACTIONS(3457), + [anon_sym_u_DQUOTE] = ACTIONS(3457), + [anon_sym_U_DQUOTE] = ACTIONS(3457), + [anon_sym_u8_DQUOTE] = ACTIONS(3457), + [anon_sym_DQUOTE] = ACTIONS(3457), + [sym_true] = ACTIONS(3455), + [sym_false] = ACTIONS(3455), + [anon_sym_NULL] = ACTIONS(3455), + [anon_sym_nullptr] = ACTIONS(3455), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3455), + [anon_sym_decltype] = ACTIONS(3455), + [anon_sym_virtual] = ACTIONS(3455), + [anon_sym_explicit] = ACTIONS(3455), + [anon_sym_typename] = ACTIONS(3455), + [anon_sym_template] = ACTIONS(3455), + [anon_sym_operator] = ACTIONS(3455), + [anon_sym_try] = ACTIONS(3455), + [anon_sym_delete] = ACTIONS(3455), + [anon_sym_throw] = ACTIONS(3455), + [anon_sym_namespace] = ACTIONS(3455), + [anon_sym_using] = ACTIONS(3455), + [anon_sym_static_assert] = ACTIONS(3455), + [anon_sym_concept] = ACTIONS(3455), + [anon_sym_co_return] = ACTIONS(3455), + [anon_sym_co_yield] = ACTIONS(3455), + [anon_sym_R_DQUOTE] = ACTIONS(3457), + [anon_sym_LR_DQUOTE] = ACTIONS(3457), + [anon_sym_uR_DQUOTE] = ACTIONS(3457), + [anon_sym_UR_DQUOTE] = ACTIONS(3457), + [anon_sym_u8R_DQUOTE] = ACTIONS(3457), + [anon_sym_co_await] = ACTIONS(3455), + [anon_sym_new] = ACTIONS(3455), + [anon_sym_requires] = ACTIONS(3455), + [sym_this] = ACTIONS(3455), }, [1282] = { - [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_AMP] = ACTIONS(2464), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym_LBRACE] = ACTIONS(2464), - [anon_sym_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_identifier] = ACTIONS(3226), + [aux_sym_preproc_include_token1] = ACTIONS(3226), + [aux_sym_preproc_def_token1] = ACTIONS(3226), + [aux_sym_preproc_if_token1] = ACTIONS(3226), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3226), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3226), + [sym_preproc_directive] = ACTIONS(3226), + [anon_sym_LPAREN2] = ACTIONS(3228), + [anon_sym_BANG] = ACTIONS(3228), + [anon_sym_TILDE] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(3226), + [anon_sym_PLUS] = ACTIONS(3226), + [anon_sym_STAR] = ACTIONS(3228), + [anon_sym_AMP_AMP] = ACTIONS(3228), + [anon_sym_AMP] = ACTIONS(3226), + [anon_sym_SEMI] = ACTIONS(3228), + [anon_sym_typedef] = ACTIONS(3226), + [anon_sym_extern] = ACTIONS(3226), + [anon_sym___attribute__] = ACTIONS(3226), + [anon_sym_COLON_COLON] = ACTIONS(3228), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3228), + [anon_sym___declspec] = ACTIONS(3226), + [anon_sym___based] = ACTIONS(3226), + [anon_sym___cdecl] = ACTIONS(3226), + [anon_sym___clrcall] = ACTIONS(3226), + [anon_sym___stdcall] = ACTIONS(3226), + [anon_sym___fastcall] = ACTIONS(3226), + [anon_sym___thiscall] = ACTIONS(3226), + [anon_sym___vectorcall] = ACTIONS(3226), + [anon_sym_LBRACE] = ACTIONS(3228), + [anon_sym_RBRACE] = ACTIONS(3228), + [anon_sym_LBRACK] = ACTIONS(3226), + [anon_sym_static] = ACTIONS(3226), + [anon_sym_register] = ACTIONS(3226), + [anon_sym_inline] = ACTIONS(3226), + [anon_sym_thread_local] = ACTIONS(3226), + [anon_sym_const] = ACTIONS(3226), + [anon_sym_constexpr] = ACTIONS(3226), + [anon_sym_volatile] = ACTIONS(3226), + [anon_sym_restrict] = ACTIONS(3226), + [anon_sym___restrict__] = ACTIONS(3226), + [anon_sym__Atomic] = ACTIONS(3226), + [anon_sym__Noreturn] = ACTIONS(3226), + [anon_sym_noreturn] = ACTIONS(3226), + [anon_sym_mutable] = ACTIONS(3226), + [anon_sym_constinit] = ACTIONS(3226), + [anon_sym_consteval] = ACTIONS(3226), + [anon_sym_signed] = ACTIONS(3226), + [anon_sym_unsigned] = ACTIONS(3226), + [anon_sym_long] = ACTIONS(3226), + [anon_sym_short] = ACTIONS(3226), + [sym_primitive_type] = ACTIONS(3226), + [anon_sym_enum] = ACTIONS(3226), + [anon_sym_class] = ACTIONS(3226), + [anon_sym_struct] = ACTIONS(3226), + [anon_sym_union] = ACTIONS(3226), + [anon_sym_if] = ACTIONS(3226), + [anon_sym_switch] = ACTIONS(3226), + [anon_sym_case] = ACTIONS(3226), + [anon_sym_default] = ACTIONS(3226), + [anon_sym_while] = ACTIONS(3226), + [anon_sym_do] = ACTIONS(3226), + [anon_sym_for] = ACTIONS(3226), + [anon_sym_return] = ACTIONS(3226), + [anon_sym_break] = ACTIONS(3226), + [anon_sym_continue] = ACTIONS(3226), + [anon_sym_goto] = ACTIONS(3226), + [anon_sym_not] = ACTIONS(3226), + [anon_sym_compl] = ACTIONS(3226), + [anon_sym_DASH_DASH] = ACTIONS(3228), + [anon_sym_PLUS_PLUS] = ACTIONS(3228), + [anon_sym_sizeof] = ACTIONS(3226), + [anon_sym_offsetof] = ACTIONS(3226), + [anon_sym__Generic] = ACTIONS(3226), + [anon_sym_asm] = ACTIONS(3226), + [anon_sym___asm__] = ACTIONS(3226), + [sym_number_literal] = ACTIONS(3228), + [anon_sym_L_SQUOTE] = ACTIONS(3228), + [anon_sym_u_SQUOTE] = ACTIONS(3228), + [anon_sym_U_SQUOTE] = ACTIONS(3228), + [anon_sym_u8_SQUOTE] = ACTIONS(3228), + [anon_sym_SQUOTE] = ACTIONS(3228), + [anon_sym_L_DQUOTE] = ACTIONS(3228), + [anon_sym_u_DQUOTE] = ACTIONS(3228), + [anon_sym_U_DQUOTE] = ACTIONS(3228), + [anon_sym_u8_DQUOTE] = ACTIONS(3228), + [anon_sym_DQUOTE] = ACTIONS(3228), + [sym_true] = ACTIONS(3226), + [sym_false] = ACTIONS(3226), + [anon_sym_NULL] = ACTIONS(3226), + [anon_sym_nullptr] = ACTIONS(3226), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3226), + [anon_sym_decltype] = ACTIONS(3226), + [anon_sym_virtual] = ACTIONS(3226), + [anon_sym_explicit] = ACTIONS(3226), + [anon_sym_typename] = ACTIONS(3226), + [anon_sym_template] = ACTIONS(3226), + [anon_sym_operator] = ACTIONS(3226), + [anon_sym_try] = ACTIONS(3226), + [anon_sym_delete] = ACTIONS(3226), + [anon_sym_throw] = ACTIONS(3226), + [anon_sym_namespace] = ACTIONS(3226), + [anon_sym_using] = ACTIONS(3226), + [anon_sym_static_assert] = ACTIONS(3226), + [anon_sym_concept] = ACTIONS(3226), + [anon_sym_co_return] = ACTIONS(3226), + [anon_sym_co_yield] = ACTIONS(3226), + [anon_sym_R_DQUOTE] = ACTIONS(3228), + [anon_sym_LR_DQUOTE] = ACTIONS(3228), + [anon_sym_uR_DQUOTE] = ACTIONS(3228), + [anon_sym_UR_DQUOTE] = ACTIONS(3228), + [anon_sym_u8R_DQUOTE] = ACTIONS(3228), + [anon_sym_co_await] = ACTIONS(3226), + [anon_sym_new] = ACTIONS(3226), + [anon_sym_requires] = ACTIONS(3226), + [sym_this] = ACTIONS(3226), }, [1283] = { - [sym_identifier] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2616), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), + [sym_identifier] = ACTIONS(3125), + [aux_sym_preproc_include_token1] = ACTIONS(3125), + [aux_sym_preproc_def_token1] = ACTIONS(3125), + [aux_sym_preproc_if_token1] = ACTIONS(3125), + [aux_sym_preproc_if_token2] = ACTIONS(3125), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3125), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3125), + [sym_preproc_directive] = ACTIONS(3125), + [anon_sym_LPAREN2] = ACTIONS(3127), + [anon_sym_BANG] = ACTIONS(3127), + [anon_sym_TILDE] = ACTIONS(3127), + [anon_sym_DASH] = ACTIONS(3125), + [anon_sym_PLUS] = ACTIONS(3125), + [anon_sym_STAR] = ACTIONS(3127), + [anon_sym_AMP_AMP] = ACTIONS(3127), + [anon_sym_AMP] = ACTIONS(3125), + [anon_sym_SEMI] = ACTIONS(3127), + [anon_sym_typedef] = ACTIONS(3125), + [anon_sym_extern] = ACTIONS(3125), + [anon_sym___attribute__] = ACTIONS(3125), + [anon_sym_COLON_COLON] = ACTIONS(3127), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3127), + [anon_sym___declspec] = ACTIONS(3125), + [anon_sym___based] = ACTIONS(3125), + [anon_sym___cdecl] = ACTIONS(3125), + [anon_sym___clrcall] = ACTIONS(3125), + [anon_sym___stdcall] = ACTIONS(3125), + [anon_sym___fastcall] = ACTIONS(3125), + [anon_sym___thiscall] = ACTIONS(3125), + [anon_sym___vectorcall] = ACTIONS(3125), + [anon_sym_LBRACE] = ACTIONS(3127), + [anon_sym_LBRACK] = ACTIONS(3125), + [anon_sym_static] = ACTIONS(3125), + [anon_sym_register] = ACTIONS(3125), + [anon_sym_inline] = ACTIONS(3125), + [anon_sym_thread_local] = ACTIONS(3125), + [anon_sym_const] = ACTIONS(3125), + [anon_sym_constexpr] = ACTIONS(3125), + [anon_sym_volatile] = ACTIONS(3125), + [anon_sym_restrict] = ACTIONS(3125), + [anon_sym___restrict__] = ACTIONS(3125), + [anon_sym__Atomic] = ACTIONS(3125), + [anon_sym__Noreturn] = ACTIONS(3125), + [anon_sym_noreturn] = ACTIONS(3125), + [anon_sym_mutable] = ACTIONS(3125), + [anon_sym_constinit] = ACTIONS(3125), + [anon_sym_consteval] = ACTIONS(3125), + [anon_sym_signed] = ACTIONS(3125), + [anon_sym_unsigned] = ACTIONS(3125), + [anon_sym_long] = ACTIONS(3125), + [anon_sym_short] = ACTIONS(3125), + [sym_primitive_type] = ACTIONS(3125), + [anon_sym_enum] = ACTIONS(3125), + [anon_sym_class] = ACTIONS(3125), + [anon_sym_struct] = ACTIONS(3125), + [anon_sym_union] = ACTIONS(3125), + [anon_sym_if] = ACTIONS(3125), + [anon_sym_switch] = ACTIONS(3125), + [anon_sym_case] = ACTIONS(3125), + [anon_sym_default] = ACTIONS(3125), + [anon_sym_while] = ACTIONS(3125), + [anon_sym_do] = ACTIONS(3125), + [anon_sym_for] = ACTIONS(3125), + [anon_sym_return] = ACTIONS(3125), + [anon_sym_break] = ACTIONS(3125), + [anon_sym_continue] = ACTIONS(3125), + [anon_sym_goto] = ACTIONS(3125), + [anon_sym_not] = ACTIONS(3125), + [anon_sym_compl] = ACTIONS(3125), + [anon_sym_DASH_DASH] = ACTIONS(3127), + [anon_sym_PLUS_PLUS] = ACTIONS(3127), + [anon_sym_sizeof] = ACTIONS(3125), + [anon_sym_offsetof] = ACTIONS(3125), + [anon_sym__Generic] = ACTIONS(3125), + [anon_sym_asm] = ACTIONS(3125), + [anon_sym___asm__] = ACTIONS(3125), + [sym_number_literal] = ACTIONS(3127), + [anon_sym_L_SQUOTE] = ACTIONS(3127), + [anon_sym_u_SQUOTE] = ACTIONS(3127), + [anon_sym_U_SQUOTE] = ACTIONS(3127), + [anon_sym_u8_SQUOTE] = ACTIONS(3127), + [anon_sym_SQUOTE] = ACTIONS(3127), + [anon_sym_L_DQUOTE] = ACTIONS(3127), + [anon_sym_u_DQUOTE] = ACTIONS(3127), + [anon_sym_U_DQUOTE] = ACTIONS(3127), + [anon_sym_u8_DQUOTE] = ACTIONS(3127), + [anon_sym_DQUOTE] = ACTIONS(3127), + [sym_true] = ACTIONS(3125), + [sym_false] = ACTIONS(3125), + [anon_sym_NULL] = ACTIONS(3125), + [anon_sym_nullptr] = ACTIONS(3125), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3125), + [anon_sym_decltype] = ACTIONS(3125), + [anon_sym_virtual] = ACTIONS(3125), + [anon_sym_explicit] = ACTIONS(3125), + [anon_sym_typename] = ACTIONS(3125), + [anon_sym_template] = ACTIONS(3125), + [anon_sym_operator] = ACTIONS(3125), + [anon_sym_try] = ACTIONS(3125), + [anon_sym_delete] = ACTIONS(3125), + [anon_sym_throw] = ACTIONS(3125), + [anon_sym_namespace] = ACTIONS(3125), + [anon_sym_using] = ACTIONS(3125), + [anon_sym_static_assert] = ACTIONS(3125), + [anon_sym_concept] = ACTIONS(3125), + [anon_sym_co_return] = ACTIONS(3125), + [anon_sym_co_yield] = ACTIONS(3125), + [anon_sym_R_DQUOTE] = ACTIONS(3127), + [anon_sym_LR_DQUOTE] = ACTIONS(3127), + [anon_sym_uR_DQUOTE] = ACTIONS(3127), + [anon_sym_UR_DQUOTE] = ACTIONS(3127), + [anon_sym_u8R_DQUOTE] = ACTIONS(3127), + [anon_sym_co_await] = ACTIONS(3125), + [anon_sym_new] = ACTIONS(3125), + [anon_sym_requires] = ACTIONS(3125), + [sym_this] = ACTIONS(3125), }, [1284] = { - [sym__expression] = STATE(3589), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_initializer_list] = STATE(5896), - [sym_initializer_pair] = STATE(5896), - [sym_subscript_designator] = STATE(5115), - [sym_field_designator] = STATE(5115), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_initializer_pair_repeat1] = STATE(5115), - [sym_identifier] = ACTIONS(2954), - [anon_sym_LPAREN2] = ACTIONS(984), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1489), - [anon_sym_RBRACE] = ACTIONS(3404), - [anon_sym_LBRACK] = ACTIONS(3358), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym_DOT] = ACTIONS(197), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [sym_identifier] = ACTIONS(3146), + [aux_sym_preproc_include_token1] = ACTIONS(3146), + [aux_sym_preproc_def_token1] = ACTIONS(3146), + [aux_sym_preproc_if_token1] = ACTIONS(3146), + [aux_sym_preproc_if_token2] = ACTIONS(3146), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3146), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3146), + [sym_preproc_directive] = ACTIONS(3146), + [anon_sym_LPAREN2] = ACTIONS(3148), + [anon_sym_BANG] = ACTIONS(3148), + [anon_sym_TILDE] = ACTIONS(3148), + [anon_sym_DASH] = ACTIONS(3146), + [anon_sym_PLUS] = ACTIONS(3146), + [anon_sym_STAR] = ACTIONS(3148), + [anon_sym_AMP_AMP] = ACTIONS(3148), + [anon_sym_AMP] = ACTIONS(3146), + [anon_sym_SEMI] = ACTIONS(3148), + [anon_sym_typedef] = ACTIONS(3146), + [anon_sym_extern] = ACTIONS(3146), + [anon_sym___attribute__] = ACTIONS(3146), + [anon_sym_COLON_COLON] = ACTIONS(3148), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3148), + [anon_sym___declspec] = ACTIONS(3146), + [anon_sym___based] = ACTIONS(3146), + [anon_sym___cdecl] = ACTIONS(3146), + [anon_sym___clrcall] = ACTIONS(3146), + [anon_sym___stdcall] = ACTIONS(3146), + [anon_sym___fastcall] = ACTIONS(3146), + [anon_sym___thiscall] = ACTIONS(3146), + [anon_sym___vectorcall] = ACTIONS(3146), + [anon_sym_LBRACE] = ACTIONS(3148), + [anon_sym_LBRACK] = ACTIONS(3146), + [anon_sym_static] = ACTIONS(3146), + [anon_sym_register] = ACTIONS(3146), + [anon_sym_inline] = ACTIONS(3146), + [anon_sym_thread_local] = ACTIONS(3146), + [anon_sym_const] = ACTIONS(3146), + [anon_sym_constexpr] = ACTIONS(3146), + [anon_sym_volatile] = ACTIONS(3146), + [anon_sym_restrict] = ACTIONS(3146), + [anon_sym___restrict__] = ACTIONS(3146), + [anon_sym__Atomic] = ACTIONS(3146), + [anon_sym__Noreturn] = ACTIONS(3146), + [anon_sym_noreturn] = ACTIONS(3146), + [anon_sym_mutable] = ACTIONS(3146), + [anon_sym_constinit] = ACTIONS(3146), + [anon_sym_consteval] = ACTIONS(3146), + [anon_sym_signed] = ACTIONS(3146), + [anon_sym_unsigned] = ACTIONS(3146), + [anon_sym_long] = ACTIONS(3146), + [anon_sym_short] = ACTIONS(3146), + [sym_primitive_type] = ACTIONS(3146), + [anon_sym_enum] = ACTIONS(3146), + [anon_sym_class] = ACTIONS(3146), + [anon_sym_struct] = ACTIONS(3146), + [anon_sym_union] = ACTIONS(3146), + [anon_sym_if] = ACTIONS(3146), + [anon_sym_switch] = ACTIONS(3146), + [anon_sym_case] = ACTIONS(3146), + [anon_sym_default] = ACTIONS(3146), + [anon_sym_while] = ACTIONS(3146), + [anon_sym_do] = ACTIONS(3146), + [anon_sym_for] = ACTIONS(3146), + [anon_sym_return] = ACTIONS(3146), + [anon_sym_break] = ACTIONS(3146), + [anon_sym_continue] = ACTIONS(3146), + [anon_sym_goto] = ACTIONS(3146), + [anon_sym_not] = ACTIONS(3146), + [anon_sym_compl] = ACTIONS(3146), + [anon_sym_DASH_DASH] = ACTIONS(3148), + [anon_sym_PLUS_PLUS] = ACTIONS(3148), + [anon_sym_sizeof] = ACTIONS(3146), + [anon_sym_offsetof] = ACTIONS(3146), + [anon_sym__Generic] = ACTIONS(3146), + [anon_sym_asm] = ACTIONS(3146), + [anon_sym___asm__] = ACTIONS(3146), + [sym_number_literal] = ACTIONS(3148), + [anon_sym_L_SQUOTE] = ACTIONS(3148), + [anon_sym_u_SQUOTE] = ACTIONS(3148), + [anon_sym_U_SQUOTE] = ACTIONS(3148), + [anon_sym_u8_SQUOTE] = ACTIONS(3148), + [anon_sym_SQUOTE] = ACTIONS(3148), + [anon_sym_L_DQUOTE] = ACTIONS(3148), + [anon_sym_u_DQUOTE] = ACTIONS(3148), + [anon_sym_U_DQUOTE] = ACTIONS(3148), + [anon_sym_u8_DQUOTE] = ACTIONS(3148), + [anon_sym_DQUOTE] = ACTIONS(3148), + [sym_true] = ACTIONS(3146), + [sym_false] = ACTIONS(3146), + [anon_sym_NULL] = ACTIONS(3146), + [anon_sym_nullptr] = ACTIONS(3146), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3146), + [anon_sym_decltype] = ACTIONS(3146), + [anon_sym_virtual] = ACTIONS(3146), + [anon_sym_explicit] = ACTIONS(3146), + [anon_sym_typename] = ACTIONS(3146), + [anon_sym_template] = ACTIONS(3146), + [anon_sym_operator] = ACTIONS(3146), + [anon_sym_try] = ACTIONS(3146), + [anon_sym_delete] = ACTIONS(3146), + [anon_sym_throw] = ACTIONS(3146), + [anon_sym_namespace] = ACTIONS(3146), + [anon_sym_using] = ACTIONS(3146), + [anon_sym_static_assert] = ACTIONS(3146), + [anon_sym_concept] = ACTIONS(3146), + [anon_sym_co_return] = ACTIONS(3146), + [anon_sym_co_yield] = ACTIONS(3146), + [anon_sym_R_DQUOTE] = ACTIONS(3148), + [anon_sym_LR_DQUOTE] = ACTIONS(3148), + [anon_sym_uR_DQUOTE] = ACTIONS(3148), + [anon_sym_UR_DQUOTE] = ACTIONS(3148), + [anon_sym_u8R_DQUOTE] = ACTIONS(3148), + [anon_sym_co_await] = ACTIONS(3146), + [anon_sym_new] = ACTIONS(3146), + [anon_sym_requires] = ACTIONS(3146), + [sym_this] = ACTIONS(3146), }, [1285] = { - [sym_identifier] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2616), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), + [sym_identifier] = ACTIONS(3125), + [aux_sym_preproc_include_token1] = ACTIONS(3125), + [aux_sym_preproc_def_token1] = ACTIONS(3125), + [aux_sym_preproc_if_token1] = ACTIONS(3125), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3125), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3125), + [sym_preproc_directive] = ACTIONS(3125), + [anon_sym_LPAREN2] = ACTIONS(3127), + [anon_sym_BANG] = ACTIONS(3127), + [anon_sym_TILDE] = ACTIONS(3127), + [anon_sym_DASH] = ACTIONS(3125), + [anon_sym_PLUS] = ACTIONS(3125), + [anon_sym_STAR] = ACTIONS(3127), + [anon_sym_AMP_AMP] = ACTIONS(3127), + [anon_sym_AMP] = ACTIONS(3125), + [anon_sym_SEMI] = ACTIONS(3127), + [anon_sym_typedef] = ACTIONS(3125), + [anon_sym_extern] = ACTIONS(3125), + [anon_sym___attribute__] = ACTIONS(3125), + [anon_sym_COLON_COLON] = ACTIONS(3127), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3127), + [anon_sym___declspec] = ACTIONS(3125), + [anon_sym___based] = ACTIONS(3125), + [anon_sym___cdecl] = ACTIONS(3125), + [anon_sym___clrcall] = ACTIONS(3125), + [anon_sym___stdcall] = ACTIONS(3125), + [anon_sym___fastcall] = ACTIONS(3125), + [anon_sym___thiscall] = ACTIONS(3125), + [anon_sym___vectorcall] = ACTIONS(3125), + [anon_sym_LBRACE] = ACTIONS(3127), + [anon_sym_RBRACE] = ACTIONS(3127), + [anon_sym_LBRACK] = ACTIONS(3125), + [anon_sym_static] = ACTIONS(3125), + [anon_sym_register] = ACTIONS(3125), + [anon_sym_inline] = ACTIONS(3125), + [anon_sym_thread_local] = ACTIONS(3125), + [anon_sym_const] = ACTIONS(3125), + [anon_sym_constexpr] = ACTIONS(3125), + [anon_sym_volatile] = ACTIONS(3125), + [anon_sym_restrict] = ACTIONS(3125), + [anon_sym___restrict__] = ACTIONS(3125), + [anon_sym__Atomic] = ACTIONS(3125), + [anon_sym__Noreturn] = ACTIONS(3125), + [anon_sym_noreturn] = ACTIONS(3125), + [anon_sym_mutable] = ACTIONS(3125), + [anon_sym_constinit] = ACTIONS(3125), + [anon_sym_consteval] = ACTIONS(3125), + [anon_sym_signed] = ACTIONS(3125), + [anon_sym_unsigned] = ACTIONS(3125), + [anon_sym_long] = ACTIONS(3125), + [anon_sym_short] = ACTIONS(3125), + [sym_primitive_type] = ACTIONS(3125), + [anon_sym_enum] = ACTIONS(3125), + [anon_sym_class] = ACTIONS(3125), + [anon_sym_struct] = ACTIONS(3125), + [anon_sym_union] = ACTIONS(3125), + [anon_sym_if] = ACTIONS(3125), + [anon_sym_switch] = ACTIONS(3125), + [anon_sym_case] = ACTIONS(3125), + [anon_sym_default] = ACTIONS(3125), + [anon_sym_while] = ACTIONS(3125), + [anon_sym_do] = ACTIONS(3125), + [anon_sym_for] = ACTIONS(3125), + [anon_sym_return] = ACTIONS(3125), + [anon_sym_break] = ACTIONS(3125), + [anon_sym_continue] = ACTIONS(3125), + [anon_sym_goto] = ACTIONS(3125), + [anon_sym_not] = ACTIONS(3125), + [anon_sym_compl] = ACTIONS(3125), + [anon_sym_DASH_DASH] = ACTIONS(3127), + [anon_sym_PLUS_PLUS] = ACTIONS(3127), + [anon_sym_sizeof] = ACTIONS(3125), + [anon_sym_offsetof] = ACTIONS(3125), + [anon_sym__Generic] = ACTIONS(3125), + [anon_sym_asm] = ACTIONS(3125), + [anon_sym___asm__] = ACTIONS(3125), + [sym_number_literal] = ACTIONS(3127), + [anon_sym_L_SQUOTE] = ACTIONS(3127), + [anon_sym_u_SQUOTE] = ACTIONS(3127), + [anon_sym_U_SQUOTE] = ACTIONS(3127), + [anon_sym_u8_SQUOTE] = ACTIONS(3127), + [anon_sym_SQUOTE] = ACTIONS(3127), + [anon_sym_L_DQUOTE] = ACTIONS(3127), + [anon_sym_u_DQUOTE] = ACTIONS(3127), + [anon_sym_U_DQUOTE] = ACTIONS(3127), + [anon_sym_u8_DQUOTE] = ACTIONS(3127), + [anon_sym_DQUOTE] = ACTIONS(3127), + [sym_true] = ACTIONS(3125), + [sym_false] = ACTIONS(3125), + [anon_sym_NULL] = ACTIONS(3125), + [anon_sym_nullptr] = ACTIONS(3125), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3125), + [anon_sym_decltype] = ACTIONS(3125), + [anon_sym_virtual] = ACTIONS(3125), + [anon_sym_explicit] = ACTIONS(3125), + [anon_sym_typename] = ACTIONS(3125), + [anon_sym_template] = ACTIONS(3125), + [anon_sym_operator] = ACTIONS(3125), + [anon_sym_try] = ACTIONS(3125), + [anon_sym_delete] = ACTIONS(3125), + [anon_sym_throw] = ACTIONS(3125), + [anon_sym_namespace] = ACTIONS(3125), + [anon_sym_using] = ACTIONS(3125), + [anon_sym_static_assert] = ACTIONS(3125), + [anon_sym_concept] = ACTIONS(3125), + [anon_sym_co_return] = ACTIONS(3125), + [anon_sym_co_yield] = ACTIONS(3125), + [anon_sym_R_DQUOTE] = ACTIONS(3127), + [anon_sym_LR_DQUOTE] = ACTIONS(3127), + [anon_sym_uR_DQUOTE] = ACTIONS(3127), + [anon_sym_UR_DQUOTE] = ACTIONS(3127), + [anon_sym_u8R_DQUOTE] = ACTIONS(3127), + [anon_sym_co_await] = ACTIONS(3125), + [anon_sym_new] = ACTIONS(3125), + [anon_sym_requires] = ACTIONS(3125), + [sym_this] = ACTIONS(3125), }, [1286] = { - [sym_identifier] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2616), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), + [sym_identifier] = ACTIONS(3146), + [aux_sym_preproc_include_token1] = ACTIONS(3146), + [aux_sym_preproc_def_token1] = ACTIONS(3146), + [aux_sym_preproc_if_token1] = ACTIONS(3146), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3146), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3146), + [sym_preproc_directive] = ACTIONS(3146), + [anon_sym_LPAREN2] = ACTIONS(3148), + [anon_sym_BANG] = ACTIONS(3148), + [anon_sym_TILDE] = ACTIONS(3148), + [anon_sym_DASH] = ACTIONS(3146), + [anon_sym_PLUS] = ACTIONS(3146), + [anon_sym_STAR] = ACTIONS(3148), + [anon_sym_AMP_AMP] = ACTIONS(3148), + [anon_sym_AMP] = ACTIONS(3146), + [anon_sym_SEMI] = ACTIONS(3148), + [anon_sym_typedef] = ACTIONS(3146), + [anon_sym_extern] = ACTIONS(3146), + [anon_sym___attribute__] = ACTIONS(3146), + [anon_sym_COLON_COLON] = ACTIONS(3148), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3148), + [anon_sym___declspec] = ACTIONS(3146), + [anon_sym___based] = ACTIONS(3146), + [anon_sym___cdecl] = ACTIONS(3146), + [anon_sym___clrcall] = ACTIONS(3146), + [anon_sym___stdcall] = ACTIONS(3146), + [anon_sym___fastcall] = ACTIONS(3146), + [anon_sym___thiscall] = ACTIONS(3146), + [anon_sym___vectorcall] = ACTIONS(3146), + [anon_sym_LBRACE] = ACTIONS(3148), + [anon_sym_RBRACE] = ACTIONS(3148), + [anon_sym_LBRACK] = ACTIONS(3146), + [anon_sym_static] = ACTIONS(3146), + [anon_sym_register] = ACTIONS(3146), + [anon_sym_inline] = ACTIONS(3146), + [anon_sym_thread_local] = ACTIONS(3146), + [anon_sym_const] = ACTIONS(3146), + [anon_sym_constexpr] = ACTIONS(3146), + [anon_sym_volatile] = ACTIONS(3146), + [anon_sym_restrict] = ACTIONS(3146), + [anon_sym___restrict__] = ACTIONS(3146), + [anon_sym__Atomic] = ACTIONS(3146), + [anon_sym__Noreturn] = ACTIONS(3146), + [anon_sym_noreturn] = ACTIONS(3146), + [anon_sym_mutable] = ACTIONS(3146), + [anon_sym_constinit] = ACTIONS(3146), + [anon_sym_consteval] = ACTIONS(3146), + [anon_sym_signed] = ACTIONS(3146), + [anon_sym_unsigned] = ACTIONS(3146), + [anon_sym_long] = ACTIONS(3146), + [anon_sym_short] = ACTIONS(3146), + [sym_primitive_type] = ACTIONS(3146), + [anon_sym_enum] = ACTIONS(3146), + [anon_sym_class] = ACTIONS(3146), + [anon_sym_struct] = ACTIONS(3146), + [anon_sym_union] = ACTIONS(3146), + [anon_sym_if] = ACTIONS(3146), + [anon_sym_switch] = ACTIONS(3146), + [anon_sym_case] = ACTIONS(3146), + [anon_sym_default] = ACTIONS(3146), + [anon_sym_while] = ACTIONS(3146), + [anon_sym_do] = ACTIONS(3146), + [anon_sym_for] = ACTIONS(3146), + [anon_sym_return] = ACTIONS(3146), + [anon_sym_break] = ACTIONS(3146), + [anon_sym_continue] = ACTIONS(3146), + [anon_sym_goto] = ACTIONS(3146), + [anon_sym_not] = ACTIONS(3146), + [anon_sym_compl] = ACTIONS(3146), + [anon_sym_DASH_DASH] = ACTIONS(3148), + [anon_sym_PLUS_PLUS] = ACTIONS(3148), + [anon_sym_sizeof] = ACTIONS(3146), + [anon_sym_offsetof] = ACTIONS(3146), + [anon_sym__Generic] = ACTIONS(3146), + [anon_sym_asm] = ACTIONS(3146), + [anon_sym___asm__] = ACTIONS(3146), + [sym_number_literal] = ACTIONS(3148), + [anon_sym_L_SQUOTE] = ACTIONS(3148), + [anon_sym_u_SQUOTE] = ACTIONS(3148), + [anon_sym_U_SQUOTE] = ACTIONS(3148), + [anon_sym_u8_SQUOTE] = ACTIONS(3148), + [anon_sym_SQUOTE] = ACTIONS(3148), + [anon_sym_L_DQUOTE] = ACTIONS(3148), + [anon_sym_u_DQUOTE] = ACTIONS(3148), + [anon_sym_U_DQUOTE] = ACTIONS(3148), + [anon_sym_u8_DQUOTE] = ACTIONS(3148), + [anon_sym_DQUOTE] = ACTIONS(3148), + [sym_true] = ACTIONS(3146), + [sym_false] = ACTIONS(3146), + [anon_sym_NULL] = ACTIONS(3146), + [anon_sym_nullptr] = ACTIONS(3146), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3146), + [anon_sym_decltype] = ACTIONS(3146), + [anon_sym_virtual] = ACTIONS(3146), + [anon_sym_explicit] = ACTIONS(3146), + [anon_sym_typename] = ACTIONS(3146), + [anon_sym_template] = ACTIONS(3146), + [anon_sym_operator] = ACTIONS(3146), + [anon_sym_try] = ACTIONS(3146), + [anon_sym_delete] = ACTIONS(3146), + [anon_sym_throw] = ACTIONS(3146), + [anon_sym_namespace] = ACTIONS(3146), + [anon_sym_using] = ACTIONS(3146), + [anon_sym_static_assert] = ACTIONS(3146), + [anon_sym_concept] = ACTIONS(3146), + [anon_sym_co_return] = ACTIONS(3146), + [anon_sym_co_yield] = ACTIONS(3146), + [anon_sym_R_DQUOTE] = ACTIONS(3148), + [anon_sym_LR_DQUOTE] = ACTIONS(3148), + [anon_sym_uR_DQUOTE] = ACTIONS(3148), + [anon_sym_UR_DQUOTE] = ACTIONS(3148), + [anon_sym_u8R_DQUOTE] = ACTIONS(3148), + [anon_sym_co_await] = ACTIONS(3146), + [anon_sym_new] = ACTIONS(3146), + [anon_sym_requires] = ACTIONS(3146), + [sym_this] = ACTIONS(3146), }, [1287] = { - [sym_identifier] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2616), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), + [sym_identifier] = ACTIONS(3150), + [aux_sym_preproc_include_token1] = ACTIONS(3150), + [aux_sym_preproc_def_token1] = ACTIONS(3150), + [aux_sym_preproc_if_token1] = ACTIONS(3150), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3150), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3150), + [sym_preproc_directive] = ACTIONS(3150), + [anon_sym_LPAREN2] = ACTIONS(3152), + [anon_sym_BANG] = ACTIONS(3152), + [anon_sym_TILDE] = ACTIONS(3152), + [anon_sym_DASH] = ACTIONS(3150), + [anon_sym_PLUS] = ACTIONS(3150), + [anon_sym_STAR] = ACTIONS(3152), + [anon_sym_AMP_AMP] = ACTIONS(3152), + [anon_sym_AMP] = ACTIONS(3150), + [anon_sym_SEMI] = ACTIONS(3152), + [anon_sym_typedef] = ACTIONS(3150), + [anon_sym_extern] = ACTIONS(3150), + [anon_sym___attribute__] = ACTIONS(3150), + [anon_sym_COLON_COLON] = ACTIONS(3152), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3152), + [anon_sym___declspec] = ACTIONS(3150), + [anon_sym___based] = ACTIONS(3150), + [anon_sym___cdecl] = ACTIONS(3150), + [anon_sym___clrcall] = ACTIONS(3150), + [anon_sym___stdcall] = ACTIONS(3150), + [anon_sym___fastcall] = ACTIONS(3150), + [anon_sym___thiscall] = ACTIONS(3150), + [anon_sym___vectorcall] = ACTIONS(3150), + [anon_sym_LBRACE] = ACTIONS(3152), + [anon_sym_RBRACE] = ACTIONS(3152), + [anon_sym_LBRACK] = ACTIONS(3150), + [anon_sym_static] = ACTIONS(3150), + [anon_sym_register] = ACTIONS(3150), + [anon_sym_inline] = ACTIONS(3150), + [anon_sym_thread_local] = ACTIONS(3150), + [anon_sym_const] = ACTIONS(3150), + [anon_sym_constexpr] = ACTIONS(3150), + [anon_sym_volatile] = ACTIONS(3150), + [anon_sym_restrict] = ACTIONS(3150), + [anon_sym___restrict__] = ACTIONS(3150), + [anon_sym__Atomic] = ACTIONS(3150), + [anon_sym__Noreturn] = ACTIONS(3150), + [anon_sym_noreturn] = ACTIONS(3150), + [anon_sym_mutable] = ACTIONS(3150), + [anon_sym_constinit] = ACTIONS(3150), + [anon_sym_consteval] = ACTIONS(3150), + [anon_sym_signed] = ACTIONS(3150), + [anon_sym_unsigned] = ACTIONS(3150), + [anon_sym_long] = ACTIONS(3150), + [anon_sym_short] = ACTIONS(3150), + [sym_primitive_type] = ACTIONS(3150), + [anon_sym_enum] = ACTIONS(3150), + [anon_sym_class] = ACTIONS(3150), + [anon_sym_struct] = ACTIONS(3150), + [anon_sym_union] = ACTIONS(3150), + [anon_sym_if] = ACTIONS(3150), + [anon_sym_switch] = ACTIONS(3150), + [anon_sym_case] = ACTIONS(3150), + [anon_sym_default] = ACTIONS(3150), + [anon_sym_while] = ACTIONS(3150), + [anon_sym_do] = ACTIONS(3150), + [anon_sym_for] = ACTIONS(3150), + [anon_sym_return] = ACTIONS(3150), + [anon_sym_break] = ACTIONS(3150), + [anon_sym_continue] = ACTIONS(3150), + [anon_sym_goto] = ACTIONS(3150), + [anon_sym_not] = ACTIONS(3150), + [anon_sym_compl] = ACTIONS(3150), + [anon_sym_DASH_DASH] = ACTIONS(3152), + [anon_sym_PLUS_PLUS] = ACTIONS(3152), + [anon_sym_sizeof] = ACTIONS(3150), + [anon_sym_offsetof] = ACTIONS(3150), + [anon_sym__Generic] = ACTIONS(3150), + [anon_sym_asm] = ACTIONS(3150), + [anon_sym___asm__] = ACTIONS(3150), + [sym_number_literal] = ACTIONS(3152), + [anon_sym_L_SQUOTE] = ACTIONS(3152), + [anon_sym_u_SQUOTE] = ACTIONS(3152), + [anon_sym_U_SQUOTE] = ACTIONS(3152), + [anon_sym_u8_SQUOTE] = ACTIONS(3152), + [anon_sym_SQUOTE] = ACTIONS(3152), + [anon_sym_L_DQUOTE] = ACTIONS(3152), + [anon_sym_u_DQUOTE] = ACTIONS(3152), + [anon_sym_U_DQUOTE] = ACTIONS(3152), + [anon_sym_u8_DQUOTE] = ACTIONS(3152), + [anon_sym_DQUOTE] = ACTIONS(3152), + [sym_true] = ACTIONS(3150), + [sym_false] = ACTIONS(3150), + [anon_sym_NULL] = ACTIONS(3150), + [anon_sym_nullptr] = ACTIONS(3150), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3150), + [anon_sym_decltype] = ACTIONS(3150), + [anon_sym_virtual] = ACTIONS(3150), + [anon_sym_explicit] = ACTIONS(3150), + [anon_sym_typename] = ACTIONS(3150), + [anon_sym_template] = ACTIONS(3150), + [anon_sym_operator] = ACTIONS(3150), + [anon_sym_try] = ACTIONS(3150), + [anon_sym_delete] = ACTIONS(3150), + [anon_sym_throw] = ACTIONS(3150), + [anon_sym_namespace] = ACTIONS(3150), + [anon_sym_using] = ACTIONS(3150), + [anon_sym_static_assert] = ACTIONS(3150), + [anon_sym_concept] = ACTIONS(3150), + [anon_sym_co_return] = ACTIONS(3150), + [anon_sym_co_yield] = ACTIONS(3150), + [anon_sym_R_DQUOTE] = ACTIONS(3152), + [anon_sym_LR_DQUOTE] = ACTIONS(3152), + [anon_sym_uR_DQUOTE] = ACTIONS(3152), + [anon_sym_UR_DQUOTE] = ACTIONS(3152), + [anon_sym_u8R_DQUOTE] = ACTIONS(3152), + [anon_sym_co_await] = ACTIONS(3150), + [anon_sym_new] = ACTIONS(3150), + [anon_sym_requires] = ACTIONS(3150), + [sym_this] = ACTIONS(3150), }, [1288] = { - [sym_identifier] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2616), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), + [sym_identifier] = ACTIONS(3290), + [aux_sym_preproc_include_token1] = ACTIONS(3290), + [aux_sym_preproc_def_token1] = ACTIONS(3290), + [aux_sym_preproc_if_token1] = ACTIONS(3290), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3290), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3290), + [sym_preproc_directive] = ACTIONS(3290), + [anon_sym_LPAREN2] = ACTIONS(3292), + [anon_sym_BANG] = ACTIONS(3292), + [anon_sym_TILDE] = ACTIONS(3292), + [anon_sym_DASH] = ACTIONS(3290), + [anon_sym_PLUS] = ACTIONS(3290), + [anon_sym_STAR] = ACTIONS(3292), + [anon_sym_AMP_AMP] = ACTIONS(3292), + [anon_sym_AMP] = ACTIONS(3290), + [anon_sym_SEMI] = ACTIONS(3292), + [anon_sym_typedef] = ACTIONS(3290), + [anon_sym_extern] = ACTIONS(3290), + [anon_sym___attribute__] = ACTIONS(3290), + [anon_sym_COLON_COLON] = ACTIONS(3292), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3292), + [anon_sym___declspec] = ACTIONS(3290), + [anon_sym___based] = ACTIONS(3290), + [anon_sym___cdecl] = ACTIONS(3290), + [anon_sym___clrcall] = ACTIONS(3290), + [anon_sym___stdcall] = ACTIONS(3290), + [anon_sym___fastcall] = ACTIONS(3290), + [anon_sym___thiscall] = ACTIONS(3290), + [anon_sym___vectorcall] = ACTIONS(3290), + [anon_sym_LBRACE] = ACTIONS(3292), + [anon_sym_RBRACE] = ACTIONS(3292), + [anon_sym_LBRACK] = ACTIONS(3290), + [anon_sym_static] = ACTIONS(3290), + [anon_sym_register] = ACTIONS(3290), + [anon_sym_inline] = ACTIONS(3290), + [anon_sym_thread_local] = ACTIONS(3290), + [anon_sym_const] = ACTIONS(3290), + [anon_sym_constexpr] = ACTIONS(3290), + [anon_sym_volatile] = ACTIONS(3290), + [anon_sym_restrict] = ACTIONS(3290), + [anon_sym___restrict__] = ACTIONS(3290), + [anon_sym__Atomic] = ACTIONS(3290), + [anon_sym__Noreturn] = ACTIONS(3290), + [anon_sym_noreturn] = ACTIONS(3290), + [anon_sym_mutable] = ACTIONS(3290), + [anon_sym_constinit] = ACTIONS(3290), + [anon_sym_consteval] = ACTIONS(3290), + [anon_sym_signed] = ACTIONS(3290), + [anon_sym_unsigned] = ACTIONS(3290), + [anon_sym_long] = ACTIONS(3290), + [anon_sym_short] = ACTIONS(3290), + [sym_primitive_type] = ACTIONS(3290), + [anon_sym_enum] = ACTIONS(3290), + [anon_sym_class] = ACTIONS(3290), + [anon_sym_struct] = ACTIONS(3290), + [anon_sym_union] = ACTIONS(3290), + [anon_sym_if] = ACTIONS(3290), + [anon_sym_switch] = ACTIONS(3290), + [anon_sym_case] = ACTIONS(3290), + [anon_sym_default] = ACTIONS(3290), + [anon_sym_while] = ACTIONS(3290), + [anon_sym_do] = ACTIONS(3290), + [anon_sym_for] = ACTIONS(3290), + [anon_sym_return] = ACTIONS(3290), + [anon_sym_break] = ACTIONS(3290), + [anon_sym_continue] = ACTIONS(3290), + [anon_sym_goto] = ACTIONS(3290), + [anon_sym_not] = ACTIONS(3290), + [anon_sym_compl] = ACTIONS(3290), + [anon_sym_DASH_DASH] = ACTIONS(3292), + [anon_sym_PLUS_PLUS] = ACTIONS(3292), + [anon_sym_sizeof] = ACTIONS(3290), + [anon_sym_offsetof] = ACTIONS(3290), + [anon_sym__Generic] = ACTIONS(3290), + [anon_sym_asm] = ACTIONS(3290), + [anon_sym___asm__] = ACTIONS(3290), + [sym_number_literal] = ACTIONS(3292), + [anon_sym_L_SQUOTE] = ACTIONS(3292), + [anon_sym_u_SQUOTE] = ACTIONS(3292), + [anon_sym_U_SQUOTE] = ACTIONS(3292), + [anon_sym_u8_SQUOTE] = ACTIONS(3292), + [anon_sym_SQUOTE] = ACTIONS(3292), + [anon_sym_L_DQUOTE] = ACTIONS(3292), + [anon_sym_u_DQUOTE] = ACTIONS(3292), + [anon_sym_U_DQUOTE] = ACTIONS(3292), + [anon_sym_u8_DQUOTE] = ACTIONS(3292), + [anon_sym_DQUOTE] = ACTIONS(3292), + [sym_true] = ACTIONS(3290), + [sym_false] = ACTIONS(3290), + [anon_sym_NULL] = ACTIONS(3290), + [anon_sym_nullptr] = ACTIONS(3290), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3290), + [anon_sym_decltype] = ACTIONS(3290), + [anon_sym_virtual] = ACTIONS(3290), + [anon_sym_explicit] = ACTIONS(3290), + [anon_sym_typename] = ACTIONS(3290), + [anon_sym_template] = ACTIONS(3290), + [anon_sym_operator] = ACTIONS(3290), + [anon_sym_try] = ACTIONS(3290), + [anon_sym_delete] = ACTIONS(3290), + [anon_sym_throw] = ACTIONS(3290), + [anon_sym_namespace] = ACTIONS(3290), + [anon_sym_using] = ACTIONS(3290), + [anon_sym_static_assert] = ACTIONS(3290), + [anon_sym_concept] = ACTIONS(3290), + [anon_sym_co_return] = ACTIONS(3290), + [anon_sym_co_yield] = ACTIONS(3290), + [anon_sym_R_DQUOTE] = ACTIONS(3292), + [anon_sym_LR_DQUOTE] = ACTIONS(3292), + [anon_sym_uR_DQUOTE] = ACTIONS(3292), + [anon_sym_UR_DQUOTE] = ACTIONS(3292), + [anon_sym_u8R_DQUOTE] = ACTIONS(3292), + [anon_sym_co_await] = ACTIONS(3290), + [anon_sym_new] = ACTIONS(3290), + [anon_sym_requires] = ACTIONS(3290), + [sym_this] = ACTIONS(3290), }, [1289] = { - [sym_identifier] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2616), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), + [sym__expression] = STATE(4480), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3579), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3579), + [sym_call_expression] = STATE(3579), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3579), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3579), + [sym_initializer_list] = STATE(4001), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3579), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3633), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1935), + [anon_sym_LPAREN2] = ACTIONS(3635), + [anon_sym_BANG] = ACTIONS(3637), + [anon_sym_TILDE] = ACTIONS(3639), + [anon_sym_DASH] = ACTIONS(3637), + [anon_sym_PLUS] = ACTIONS(3637), + [anon_sym_STAR] = ACTIONS(3641), + [anon_sym_SLASH] = ACTIONS(1943), + [anon_sym_PERCENT] = ACTIONS(1935), + [anon_sym_PIPE_PIPE] = ACTIONS(1935), + [anon_sym_AMP_AMP] = ACTIONS(1935), + [anon_sym_PIPE] = ACTIONS(1943), + [anon_sym_CARET] = ACTIONS(1935), + [anon_sym_AMP] = ACTIONS(2083), + [anon_sym_EQ_EQ] = ACTIONS(1935), + [anon_sym_BANG_EQ] = ACTIONS(1935), + [anon_sym_GT] = ACTIONS(1943), + [anon_sym_GT_EQ] = ACTIONS(1935), + [anon_sym_LT_EQ] = ACTIONS(1943), + [anon_sym_LT] = ACTIONS(1943), + [anon_sym_LT_LT] = ACTIONS(1935), + [anon_sym_GT_GT] = ACTIONS(1935), + [anon_sym_COLON_COLON] = ACTIONS(3643), + [anon_sym_LBRACE] = ACTIONS(1899), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_COLON] = ACTIONS(1943), + [anon_sym_QMARK] = ACTIONS(1935), + [anon_sym_not] = ACTIONS(3637), + [anon_sym_compl] = ACTIONS(3637), + [anon_sym_LT_EQ_GT] = ACTIONS(1935), + [anon_sym_or] = ACTIONS(1943), + [anon_sym_and] = ACTIONS(1943), + [anon_sym_bitor] = ACTIONS(1943), + [anon_sym_xor] = ACTIONS(1943), + [anon_sym_bitand] = ACTIONS(1943), + [anon_sym_not_eq] = ACTIONS(1943), + [anon_sym_DASH_DASH] = ACTIONS(3645), + [anon_sym_PLUS_PLUS] = ACTIONS(3645), + [anon_sym_sizeof] = ACTIONS(3647), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [anon_sym_DOT] = ACTIONS(1943), + [anon_sym_DASH_GT] = ACTIONS(1935), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(3649), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(3651), + [anon_sym_new] = ACTIONS(3631), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1290] = { - [sym_identifier] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2616), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), + [sym_identifier] = ACTIONS(3328), + [aux_sym_preproc_include_token1] = ACTIONS(3328), + [aux_sym_preproc_def_token1] = ACTIONS(3328), + [aux_sym_preproc_if_token1] = ACTIONS(3328), + [aux_sym_preproc_if_token2] = ACTIONS(3328), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3328), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3328), + [sym_preproc_directive] = ACTIONS(3328), + [anon_sym_LPAREN2] = ACTIONS(3330), + [anon_sym_BANG] = ACTIONS(3330), + [anon_sym_TILDE] = ACTIONS(3330), + [anon_sym_DASH] = ACTIONS(3328), + [anon_sym_PLUS] = ACTIONS(3328), + [anon_sym_STAR] = ACTIONS(3330), + [anon_sym_AMP_AMP] = ACTIONS(3330), + [anon_sym_AMP] = ACTIONS(3328), + [anon_sym_SEMI] = ACTIONS(3330), + [anon_sym_typedef] = ACTIONS(3328), + [anon_sym_extern] = ACTIONS(3328), + [anon_sym___attribute__] = ACTIONS(3328), + [anon_sym_COLON_COLON] = ACTIONS(3330), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3330), + [anon_sym___declspec] = ACTIONS(3328), + [anon_sym___based] = ACTIONS(3328), + [anon_sym___cdecl] = ACTIONS(3328), + [anon_sym___clrcall] = ACTIONS(3328), + [anon_sym___stdcall] = ACTIONS(3328), + [anon_sym___fastcall] = ACTIONS(3328), + [anon_sym___thiscall] = ACTIONS(3328), + [anon_sym___vectorcall] = ACTIONS(3328), + [anon_sym_LBRACE] = ACTIONS(3330), + [anon_sym_LBRACK] = ACTIONS(3328), + [anon_sym_static] = ACTIONS(3328), + [anon_sym_register] = ACTIONS(3328), + [anon_sym_inline] = ACTIONS(3328), + [anon_sym_thread_local] = ACTIONS(3328), + [anon_sym_const] = ACTIONS(3328), + [anon_sym_constexpr] = ACTIONS(3328), + [anon_sym_volatile] = ACTIONS(3328), + [anon_sym_restrict] = ACTIONS(3328), + [anon_sym___restrict__] = ACTIONS(3328), + [anon_sym__Atomic] = ACTIONS(3328), + [anon_sym__Noreturn] = ACTIONS(3328), + [anon_sym_noreturn] = ACTIONS(3328), + [anon_sym_mutable] = ACTIONS(3328), + [anon_sym_constinit] = ACTIONS(3328), + [anon_sym_consteval] = ACTIONS(3328), + [anon_sym_signed] = ACTIONS(3328), + [anon_sym_unsigned] = ACTIONS(3328), + [anon_sym_long] = ACTIONS(3328), + [anon_sym_short] = ACTIONS(3328), + [sym_primitive_type] = ACTIONS(3328), + [anon_sym_enum] = ACTIONS(3328), + [anon_sym_class] = ACTIONS(3328), + [anon_sym_struct] = ACTIONS(3328), + [anon_sym_union] = ACTIONS(3328), + [anon_sym_if] = ACTIONS(3328), + [anon_sym_switch] = ACTIONS(3328), + [anon_sym_case] = ACTIONS(3328), + [anon_sym_default] = ACTIONS(3328), + [anon_sym_while] = ACTIONS(3328), + [anon_sym_do] = ACTIONS(3328), + [anon_sym_for] = ACTIONS(3328), + [anon_sym_return] = ACTIONS(3328), + [anon_sym_break] = ACTIONS(3328), + [anon_sym_continue] = ACTIONS(3328), + [anon_sym_goto] = ACTIONS(3328), + [anon_sym_not] = ACTIONS(3328), + [anon_sym_compl] = ACTIONS(3328), + [anon_sym_DASH_DASH] = ACTIONS(3330), + [anon_sym_PLUS_PLUS] = ACTIONS(3330), + [anon_sym_sizeof] = ACTIONS(3328), + [anon_sym_offsetof] = ACTIONS(3328), + [anon_sym__Generic] = ACTIONS(3328), + [anon_sym_asm] = ACTIONS(3328), + [anon_sym___asm__] = ACTIONS(3328), + [sym_number_literal] = ACTIONS(3330), + [anon_sym_L_SQUOTE] = ACTIONS(3330), + [anon_sym_u_SQUOTE] = ACTIONS(3330), + [anon_sym_U_SQUOTE] = ACTIONS(3330), + [anon_sym_u8_SQUOTE] = ACTIONS(3330), + [anon_sym_SQUOTE] = ACTIONS(3330), + [anon_sym_L_DQUOTE] = ACTIONS(3330), + [anon_sym_u_DQUOTE] = ACTIONS(3330), + [anon_sym_U_DQUOTE] = ACTIONS(3330), + [anon_sym_u8_DQUOTE] = ACTIONS(3330), + [anon_sym_DQUOTE] = ACTIONS(3330), + [sym_true] = ACTIONS(3328), + [sym_false] = ACTIONS(3328), + [anon_sym_NULL] = ACTIONS(3328), + [anon_sym_nullptr] = ACTIONS(3328), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3328), + [anon_sym_decltype] = ACTIONS(3328), + [anon_sym_virtual] = ACTIONS(3328), + [anon_sym_explicit] = ACTIONS(3328), + [anon_sym_typename] = ACTIONS(3328), + [anon_sym_template] = ACTIONS(3328), + [anon_sym_operator] = ACTIONS(3328), + [anon_sym_try] = ACTIONS(3328), + [anon_sym_delete] = ACTIONS(3328), + [anon_sym_throw] = ACTIONS(3328), + [anon_sym_namespace] = ACTIONS(3328), + [anon_sym_using] = ACTIONS(3328), + [anon_sym_static_assert] = ACTIONS(3328), + [anon_sym_concept] = ACTIONS(3328), + [anon_sym_co_return] = ACTIONS(3328), + [anon_sym_co_yield] = ACTIONS(3328), + [anon_sym_R_DQUOTE] = ACTIONS(3330), + [anon_sym_LR_DQUOTE] = ACTIONS(3330), + [anon_sym_uR_DQUOTE] = ACTIONS(3330), + [anon_sym_UR_DQUOTE] = ACTIONS(3330), + [anon_sym_u8R_DQUOTE] = ACTIONS(3330), + [anon_sym_co_await] = ACTIONS(3328), + [anon_sym_new] = ACTIONS(3328), + [anon_sym_requires] = ACTIONS(3328), + [sym_this] = ACTIONS(3328), }, [1291] = { - [sym_identifier] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2616), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), + [sym_identifier] = ACTIONS(3336), + [aux_sym_preproc_include_token1] = ACTIONS(3336), + [aux_sym_preproc_def_token1] = ACTIONS(3336), + [aux_sym_preproc_if_token1] = ACTIONS(3336), + [aux_sym_preproc_if_token2] = ACTIONS(3336), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3336), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3336), + [sym_preproc_directive] = ACTIONS(3336), + [anon_sym_LPAREN2] = ACTIONS(3338), + [anon_sym_BANG] = ACTIONS(3338), + [anon_sym_TILDE] = ACTIONS(3338), + [anon_sym_DASH] = ACTIONS(3336), + [anon_sym_PLUS] = ACTIONS(3336), + [anon_sym_STAR] = ACTIONS(3338), + [anon_sym_AMP_AMP] = ACTIONS(3338), + [anon_sym_AMP] = ACTIONS(3336), + [anon_sym_SEMI] = ACTIONS(3338), + [anon_sym_typedef] = ACTIONS(3336), + [anon_sym_extern] = ACTIONS(3336), + [anon_sym___attribute__] = ACTIONS(3336), + [anon_sym_COLON_COLON] = ACTIONS(3338), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3338), + [anon_sym___declspec] = ACTIONS(3336), + [anon_sym___based] = ACTIONS(3336), + [anon_sym___cdecl] = ACTIONS(3336), + [anon_sym___clrcall] = ACTIONS(3336), + [anon_sym___stdcall] = ACTIONS(3336), + [anon_sym___fastcall] = ACTIONS(3336), + [anon_sym___thiscall] = ACTIONS(3336), + [anon_sym___vectorcall] = ACTIONS(3336), + [anon_sym_LBRACE] = ACTIONS(3338), + [anon_sym_LBRACK] = ACTIONS(3336), + [anon_sym_static] = ACTIONS(3336), + [anon_sym_register] = ACTIONS(3336), + [anon_sym_inline] = ACTIONS(3336), + [anon_sym_thread_local] = ACTIONS(3336), + [anon_sym_const] = ACTIONS(3336), + [anon_sym_constexpr] = ACTIONS(3336), + [anon_sym_volatile] = ACTIONS(3336), + [anon_sym_restrict] = ACTIONS(3336), + [anon_sym___restrict__] = ACTIONS(3336), + [anon_sym__Atomic] = ACTIONS(3336), + [anon_sym__Noreturn] = ACTIONS(3336), + [anon_sym_noreturn] = ACTIONS(3336), + [anon_sym_mutable] = ACTIONS(3336), + [anon_sym_constinit] = ACTIONS(3336), + [anon_sym_consteval] = ACTIONS(3336), + [anon_sym_signed] = ACTIONS(3336), + [anon_sym_unsigned] = ACTIONS(3336), + [anon_sym_long] = ACTIONS(3336), + [anon_sym_short] = ACTIONS(3336), + [sym_primitive_type] = ACTIONS(3336), + [anon_sym_enum] = ACTIONS(3336), + [anon_sym_class] = ACTIONS(3336), + [anon_sym_struct] = ACTIONS(3336), + [anon_sym_union] = ACTIONS(3336), + [anon_sym_if] = ACTIONS(3336), + [anon_sym_switch] = ACTIONS(3336), + [anon_sym_case] = ACTIONS(3336), + [anon_sym_default] = ACTIONS(3336), + [anon_sym_while] = ACTIONS(3336), + [anon_sym_do] = ACTIONS(3336), + [anon_sym_for] = ACTIONS(3336), + [anon_sym_return] = ACTIONS(3336), + [anon_sym_break] = ACTIONS(3336), + [anon_sym_continue] = ACTIONS(3336), + [anon_sym_goto] = ACTIONS(3336), + [anon_sym_not] = ACTIONS(3336), + [anon_sym_compl] = ACTIONS(3336), + [anon_sym_DASH_DASH] = ACTIONS(3338), + [anon_sym_PLUS_PLUS] = ACTIONS(3338), + [anon_sym_sizeof] = ACTIONS(3336), + [anon_sym_offsetof] = ACTIONS(3336), + [anon_sym__Generic] = ACTIONS(3336), + [anon_sym_asm] = ACTIONS(3336), + [anon_sym___asm__] = ACTIONS(3336), + [sym_number_literal] = ACTIONS(3338), + [anon_sym_L_SQUOTE] = ACTIONS(3338), + [anon_sym_u_SQUOTE] = ACTIONS(3338), + [anon_sym_U_SQUOTE] = ACTIONS(3338), + [anon_sym_u8_SQUOTE] = ACTIONS(3338), + [anon_sym_SQUOTE] = ACTIONS(3338), + [anon_sym_L_DQUOTE] = ACTIONS(3338), + [anon_sym_u_DQUOTE] = ACTIONS(3338), + [anon_sym_U_DQUOTE] = ACTIONS(3338), + [anon_sym_u8_DQUOTE] = ACTIONS(3338), + [anon_sym_DQUOTE] = ACTIONS(3338), + [sym_true] = ACTIONS(3336), + [sym_false] = ACTIONS(3336), + [anon_sym_NULL] = ACTIONS(3336), + [anon_sym_nullptr] = ACTIONS(3336), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3336), + [anon_sym_decltype] = ACTIONS(3336), + [anon_sym_virtual] = ACTIONS(3336), + [anon_sym_explicit] = ACTIONS(3336), + [anon_sym_typename] = ACTIONS(3336), + [anon_sym_template] = ACTIONS(3336), + [anon_sym_operator] = ACTIONS(3336), + [anon_sym_try] = ACTIONS(3336), + [anon_sym_delete] = ACTIONS(3336), + [anon_sym_throw] = ACTIONS(3336), + [anon_sym_namespace] = ACTIONS(3336), + [anon_sym_using] = ACTIONS(3336), + [anon_sym_static_assert] = ACTIONS(3336), + [anon_sym_concept] = ACTIONS(3336), + [anon_sym_co_return] = ACTIONS(3336), + [anon_sym_co_yield] = ACTIONS(3336), + [anon_sym_R_DQUOTE] = ACTIONS(3338), + [anon_sym_LR_DQUOTE] = ACTIONS(3338), + [anon_sym_uR_DQUOTE] = ACTIONS(3338), + [anon_sym_UR_DQUOTE] = ACTIONS(3338), + [anon_sym_u8R_DQUOTE] = ACTIONS(3338), + [anon_sym_co_await] = ACTIONS(3336), + [anon_sym_new] = ACTIONS(3336), + [anon_sym_requires] = ACTIONS(3336), + [sym_this] = ACTIONS(3336), }, [1292] = { - [sym_identifier] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2616), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), + [sym_identifier] = ACTIONS(3176), + [aux_sym_preproc_include_token1] = ACTIONS(3176), + [aux_sym_preproc_def_token1] = ACTIONS(3176), + [aux_sym_preproc_if_token1] = ACTIONS(3176), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3176), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3176), + [sym_preproc_directive] = ACTIONS(3176), + [anon_sym_LPAREN2] = ACTIONS(3178), + [anon_sym_BANG] = ACTIONS(3178), + [anon_sym_TILDE] = ACTIONS(3178), + [anon_sym_DASH] = ACTIONS(3176), + [anon_sym_PLUS] = ACTIONS(3176), + [anon_sym_STAR] = ACTIONS(3178), + [anon_sym_AMP_AMP] = ACTIONS(3178), + [anon_sym_AMP] = ACTIONS(3176), + [anon_sym_SEMI] = ACTIONS(3178), + [anon_sym_typedef] = ACTIONS(3176), + [anon_sym_extern] = ACTIONS(3176), + [anon_sym___attribute__] = ACTIONS(3176), + [anon_sym_COLON_COLON] = ACTIONS(3178), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3178), + [anon_sym___declspec] = ACTIONS(3176), + [anon_sym___based] = ACTIONS(3176), + [anon_sym___cdecl] = ACTIONS(3176), + [anon_sym___clrcall] = ACTIONS(3176), + [anon_sym___stdcall] = ACTIONS(3176), + [anon_sym___fastcall] = ACTIONS(3176), + [anon_sym___thiscall] = ACTIONS(3176), + [anon_sym___vectorcall] = ACTIONS(3176), + [anon_sym_LBRACE] = ACTIONS(3178), + [anon_sym_RBRACE] = ACTIONS(3178), + [anon_sym_LBRACK] = ACTIONS(3176), + [anon_sym_static] = ACTIONS(3176), + [anon_sym_register] = ACTIONS(3176), + [anon_sym_inline] = ACTIONS(3176), + [anon_sym_thread_local] = ACTIONS(3176), + [anon_sym_const] = ACTIONS(3176), + [anon_sym_constexpr] = ACTIONS(3176), + [anon_sym_volatile] = ACTIONS(3176), + [anon_sym_restrict] = ACTIONS(3176), + [anon_sym___restrict__] = ACTIONS(3176), + [anon_sym__Atomic] = ACTIONS(3176), + [anon_sym__Noreturn] = ACTIONS(3176), + [anon_sym_noreturn] = ACTIONS(3176), + [anon_sym_mutable] = ACTIONS(3176), + [anon_sym_constinit] = ACTIONS(3176), + [anon_sym_consteval] = ACTIONS(3176), + [anon_sym_signed] = ACTIONS(3176), + [anon_sym_unsigned] = ACTIONS(3176), + [anon_sym_long] = ACTIONS(3176), + [anon_sym_short] = ACTIONS(3176), + [sym_primitive_type] = ACTIONS(3176), + [anon_sym_enum] = ACTIONS(3176), + [anon_sym_class] = ACTIONS(3176), + [anon_sym_struct] = ACTIONS(3176), + [anon_sym_union] = ACTIONS(3176), + [anon_sym_if] = ACTIONS(3176), + [anon_sym_switch] = ACTIONS(3176), + [anon_sym_case] = ACTIONS(3176), + [anon_sym_default] = ACTIONS(3176), + [anon_sym_while] = ACTIONS(3176), + [anon_sym_do] = ACTIONS(3176), + [anon_sym_for] = ACTIONS(3176), + [anon_sym_return] = ACTIONS(3176), + [anon_sym_break] = ACTIONS(3176), + [anon_sym_continue] = ACTIONS(3176), + [anon_sym_goto] = ACTIONS(3176), + [anon_sym_not] = ACTIONS(3176), + [anon_sym_compl] = ACTIONS(3176), + [anon_sym_DASH_DASH] = ACTIONS(3178), + [anon_sym_PLUS_PLUS] = ACTIONS(3178), + [anon_sym_sizeof] = ACTIONS(3176), + [anon_sym_offsetof] = ACTIONS(3176), + [anon_sym__Generic] = ACTIONS(3176), + [anon_sym_asm] = ACTIONS(3176), + [anon_sym___asm__] = ACTIONS(3176), + [sym_number_literal] = ACTIONS(3178), + [anon_sym_L_SQUOTE] = ACTIONS(3178), + [anon_sym_u_SQUOTE] = ACTIONS(3178), + [anon_sym_U_SQUOTE] = ACTIONS(3178), + [anon_sym_u8_SQUOTE] = ACTIONS(3178), + [anon_sym_SQUOTE] = ACTIONS(3178), + [anon_sym_L_DQUOTE] = ACTIONS(3178), + [anon_sym_u_DQUOTE] = ACTIONS(3178), + [anon_sym_U_DQUOTE] = ACTIONS(3178), + [anon_sym_u8_DQUOTE] = ACTIONS(3178), + [anon_sym_DQUOTE] = ACTIONS(3178), + [sym_true] = ACTIONS(3176), + [sym_false] = ACTIONS(3176), + [anon_sym_NULL] = ACTIONS(3176), + [anon_sym_nullptr] = ACTIONS(3176), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3176), + [anon_sym_decltype] = ACTIONS(3176), + [anon_sym_virtual] = ACTIONS(3176), + [anon_sym_explicit] = ACTIONS(3176), + [anon_sym_typename] = ACTIONS(3176), + [anon_sym_template] = ACTIONS(3176), + [anon_sym_operator] = ACTIONS(3176), + [anon_sym_try] = ACTIONS(3176), + [anon_sym_delete] = ACTIONS(3176), + [anon_sym_throw] = ACTIONS(3176), + [anon_sym_namespace] = ACTIONS(3176), + [anon_sym_using] = ACTIONS(3176), + [anon_sym_static_assert] = ACTIONS(3176), + [anon_sym_concept] = ACTIONS(3176), + [anon_sym_co_return] = ACTIONS(3176), + [anon_sym_co_yield] = ACTIONS(3176), + [anon_sym_R_DQUOTE] = ACTIONS(3178), + [anon_sym_LR_DQUOTE] = ACTIONS(3178), + [anon_sym_uR_DQUOTE] = ACTIONS(3178), + [anon_sym_UR_DQUOTE] = ACTIONS(3178), + [anon_sym_u8R_DQUOTE] = ACTIONS(3178), + [anon_sym_co_await] = ACTIONS(3176), + [anon_sym_new] = ACTIONS(3176), + [anon_sym_requires] = ACTIONS(3176), + [sym_this] = ACTIONS(3176), }, [1293] = { - [sym_identifier] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2616), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), + [sym_identifier] = ACTIONS(3332), + [aux_sym_preproc_include_token1] = ACTIONS(3332), + [aux_sym_preproc_def_token1] = ACTIONS(3332), + [aux_sym_preproc_if_token1] = ACTIONS(3332), + [aux_sym_preproc_if_token2] = ACTIONS(3332), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3332), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3332), + [sym_preproc_directive] = ACTIONS(3332), + [anon_sym_LPAREN2] = ACTIONS(3334), + [anon_sym_BANG] = ACTIONS(3334), + [anon_sym_TILDE] = ACTIONS(3334), + [anon_sym_DASH] = ACTIONS(3332), + [anon_sym_PLUS] = ACTIONS(3332), + [anon_sym_STAR] = ACTIONS(3334), + [anon_sym_AMP_AMP] = ACTIONS(3334), + [anon_sym_AMP] = ACTIONS(3332), + [anon_sym_SEMI] = ACTIONS(3334), + [anon_sym_typedef] = ACTIONS(3332), + [anon_sym_extern] = ACTIONS(3332), + [anon_sym___attribute__] = ACTIONS(3332), + [anon_sym_COLON_COLON] = ACTIONS(3334), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3334), + [anon_sym___declspec] = ACTIONS(3332), + [anon_sym___based] = ACTIONS(3332), + [anon_sym___cdecl] = ACTIONS(3332), + [anon_sym___clrcall] = ACTIONS(3332), + [anon_sym___stdcall] = ACTIONS(3332), + [anon_sym___fastcall] = ACTIONS(3332), + [anon_sym___thiscall] = ACTIONS(3332), + [anon_sym___vectorcall] = ACTIONS(3332), + [anon_sym_LBRACE] = ACTIONS(3334), + [anon_sym_LBRACK] = ACTIONS(3332), + [anon_sym_static] = ACTIONS(3332), + [anon_sym_register] = ACTIONS(3332), + [anon_sym_inline] = ACTIONS(3332), + [anon_sym_thread_local] = ACTIONS(3332), + [anon_sym_const] = ACTIONS(3332), + [anon_sym_constexpr] = ACTIONS(3332), + [anon_sym_volatile] = ACTIONS(3332), + [anon_sym_restrict] = ACTIONS(3332), + [anon_sym___restrict__] = ACTIONS(3332), + [anon_sym__Atomic] = ACTIONS(3332), + [anon_sym__Noreturn] = ACTIONS(3332), + [anon_sym_noreturn] = ACTIONS(3332), + [anon_sym_mutable] = ACTIONS(3332), + [anon_sym_constinit] = ACTIONS(3332), + [anon_sym_consteval] = ACTIONS(3332), + [anon_sym_signed] = ACTIONS(3332), + [anon_sym_unsigned] = ACTIONS(3332), + [anon_sym_long] = ACTIONS(3332), + [anon_sym_short] = ACTIONS(3332), + [sym_primitive_type] = ACTIONS(3332), + [anon_sym_enum] = ACTIONS(3332), + [anon_sym_class] = ACTIONS(3332), + [anon_sym_struct] = ACTIONS(3332), + [anon_sym_union] = ACTIONS(3332), + [anon_sym_if] = ACTIONS(3332), + [anon_sym_switch] = ACTIONS(3332), + [anon_sym_case] = ACTIONS(3332), + [anon_sym_default] = ACTIONS(3332), + [anon_sym_while] = ACTIONS(3332), + [anon_sym_do] = ACTIONS(3332), + [anon_sym_for] = ACTIONS(3332), + [anon_sym_return] = ACTIONS(3332), + [anon_sym_break] = ACTIONS(3332), + [anon_sym_continue] = ACTIONS(3332), + [anon_sym_goto] = ACTIONS(3332), + [anon_sym_not] = ACTIONS(3332), + [anon_sym_compl] = ACTIONS(3332), + [anon_sym_DASH_DASH] = ACTIONS(3334), + [anon_sym_PLUS_PLUS] = ACTIONS(3334), + [anon_sym_sizeof] = ACTIONS(3332), + [anon_sym_offsetof] = ACTIONS(3332), + [anon_sym__Generic] = ACTIONS(3332), + [anon_sym_asm] = ACTIONS(3332), + [anon_sym___asm__] = ACTIONS(3332), + [sym_number_literal] = ACTIONS(3334), + [anon_sym_L_SQUOTE] = ACTIONS(3334), + [anon_sym_u_SQUOTE] = ACTIONS(3334), + [anon_sym_U_SQUOTE] = ACTIONS(3334), + [anon_sym_u8_SQUOTE] = ACTIONS(3334), + [anon_sym_SQUOTE] = ACTIONS(3334), + [anon_sym_L_DQUOTE] = ACTIONS(3334), + [anon_sym_u_DQUOTE] = ACTIONS(3334), + [anon_sym_U_DQUOTE] = ACTIONS(3334), + [anon_sym_u8_DQUOTE] = ACTIONS(3334), + [anon_sym_DQUOTE] = ACTIONS(3334), + [sym_true] = ACTIONS(3332), + [sym_false] = ACTIONS(3332), + [anon_sym_NULL] = ACTIONS(3332), + [anon_sym_nullptr] = ACTIONS(3332), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3332), + [anon_sym_decltype] = ACTIONS(3332), + [anon_sym_virtual] = ACTIONS(3332), + [anon_sym_explicit] = ACTIONS(3332), + [anon_sym_typename] = ACTIONS(3332), + [anon_sym_template] = ACTIONS(3332), + [anon_sym_operator] = ACTIONS(3332), + [anon_sym_try] = ACTIONS(3332), + [anon_sym_delete] = ACTIONS(3332), + [anon_sym_throw] = ACTIONS(3332), + [anon_sym_namespace] = ACTIONS(3332), + [anon_sym_using] = ACTIONS(3332), + [anon_sym_static_assert] = ACTIONS(3332), + [anon_sym_concept] = ACTIONS(3332), + [anon_sym_co_return] = ACTIONS(3332), + [anon_sym_co_yield] = ACTIONS(3332), + [anon_sym_R_DQUOTE] = ACTIONS(3334), + [anon_sym_LR_DQUOTE] = ACTIONS(3334), + [anon_sym_uR_DQUOTE] = ACTIONS(3334), + [anon_sym_UR_DQUOTE] = ACTIONS(3334), + [anon_sym_u8R_DQUOTE] = ACTIONS(3334), + [anon_sym_co_await] = ACTIONS(3332), + [anon_sym_new] = ACTIONS(3332), + [anon_sym_requires] = ACTIONS(3332), + [sym_this] = ACTIONS(3332), }, [1294] = { - [sym_identifier] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2616), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), + [sym_identifier] = ACTIONS(3180), + [aux_sym_preproc_include_token1] = ACTIONS(3180), + [aux_sym_preproc_def_token1] = ACTIONS(3180), + [aux_sym_preproc_if_token1] = ACTIONS(3180), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3180), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3180), + [sym_preproc_directive] = ACTIONS(3180), + [anon_sym_LPAREN2] = ACTIONS(3182), + [anon_sym_BANG] = ACTIONS(3182), + [anon_sym_TILDE] = ACTIONS(3182), + [anon_sym_DASH] = ACTIONS(3180), + [anon_sym_PLUS] = ACTIONS(3180), + [anon_sym_STAR] = ACTIONS(3182), + [anon_sym_AMP_AMP] = ACTIONS(3182), + [anon_sym_AMP] = ACTIONS(3180), + [anon_sym_SEMI] = ACTIONS(3182), + [anon_sym_typedef] = ACTIONS(3180), + [anon_sym_extern] = ACTIONS(3180), + [anon_sym___attribute__] = ACTIONS(3180), + [anon_sym_COLON_COLON] = ACTIONS(3182), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3182), + [anon_sym___declspec] = ACTIONS(3180), + [anon_sym___based] = ACTIONS(3180), + [anon_sym___cdecl] = ACTIONS(3180), + [anon_sym___clrcall] = ACTIONS(3180), + [anon_sym___stdcall] = ACTIONS(3180), + [anon_sym___fastcall] = ACTIONS(3180), + [anon_sym___thiscall] = ACTIONS(3180), + [anon_sym___vectorcall] = ACTIONS(3180), + [anon_sym_LBRACE] = ACTIONS(3182), + [anon_sym_RBRACE] = ACTIONS(3182), + [anon_sym_LBRACK] = ACTIONS(3180), + [anon_sym_static] = ACTIONS(3180), + [anon_sym_register] = ACTIONS(3180), + [anon_sym_inline] = ACTIONS(3180), + [anon_sym_thread_local] = ACTIONS(3180), + [anon_sym_const] = ACTIONS(3180), + [anon_sym_constexpr] = ACTIONS(3180), + [anon_sym_volatile] = ACTIONS(3180), + [anon_sym_restrict] = ACTIONS(3180), + [anon_sym___restrict__] = ACTIONS(3180), + [anon_sym__Atomic] = ACTIONS(3180), + [anon_sym__Noreturn] = ACTIONS(3180), + [anon_sym_noreturn] = ACTIONS(3180), + [anon_sym_mutable] = ACTIONS(3180), + [anon_sym_constinit] = ACTIONS(3180), + [anon_sym_consteval] = ACTIONS(3180), + [anon_sym_signed] = ACTIONS(3180), + [anon_sym_unsigned] = ACTIONS(3180), + [anon_sym_long] = ACTIONS(3180), + [anon_sym_short] = ACTIONS(3180), + [sym_primitive_type] = ACTIONS(3180), + [anon_sym_enum] = ACTIONS(3180), + [anon_sym_class] = ACTIONS(3180), + [anon_sym_struct] = ACTIONS(3180), + [anon_sym_union] = ACTIONS(3180), + [anon_sym_if] = ACTIONS(3180), + [anon_sym_switch] = ACTIONS(3180), + [anon_sym_case] = ACTIONS(3180), + [anon_sym_default] = ACTIONS(3180), + [anon_sym_while] = ACTIONS(3180), + [anon_sym_do] = ACTIONS(3180), + [anon_sym_for] = ACTIONS(3180), + [anon_sym_return] = ACTIONS(3180), + [anon_sym_break] = ACTIONS(3180), + [anon_sym_continue] = ACTIONS(3180), + [anon_sym_goto] = ACTIONS(3180), + [anon_sym_not] = ACTIONS(3180), + [anon_sym_compl] = ACTIONS(3180), + [anon_sym_DASH_DASH] = ACTIONS(3182), + [anon_sym_PLUS_PLUS] = ACTIONS(3182), + [anon_sym_sizeof] = ACTIONS(3180), + [anon_sym_offsetof] = ACTIONS(3180), + [anon_sym__Generic] = ACTIONS(3180), + [anon_sym_asm] = ACTIONS(3180), + [anon_sym___asm__] = ACTIONS(3180), + [sym_number_literal] = ACTIONS(3182), + [anon_sym_L_SQUOTE] = ACTIONS(3182), + [anon_sym_u_SQUOTE] = ACTIONS(3182), + [anon_sym_U_SQUOTE] = ACTIONS(3182), + [anon_sym_u8_SQUOTE] = ACTIONS(3182), + [anon_sym_SQUOTE] = ACTIONS(3182), + [anon_sym_L_DQUOTE] = ACTIONS(3182), + [anon_sym_u_DQUOTE] = ACTIONS(3182), + [anon_sym_U_DQUOTE] = ACTIONS(3182), + [anon_sym_u8_DQUOTE] = ACTIONS(3182), + [anon_sym_DQUOTE] = ACTIONS(3182), + [sym_true] = ACTIONS(3180), + [sym_false] = ACTIONS(3180), + [anon_sym_NULL] = ACTIONS(3180), + [anon_sym_nullptr] = ACTIONS(3180), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3180), + [anon_sym_decltype] = ACTIONS(3180), + [anon_sym_virtual] = ACTIONS(3180), + [anon_sym_explicit] = ACTIONS(3180), + [anon_sym_typename] = ACTIONS(3180), + [anon_sym_template] = ACTIONS(3180), + [anon_sym_operator] = ACTIONS(3180), + [anon_sym_try] = ACTIONS(3180), + [anon_sym_delete] = ACTIONS(3180), + [anon_sym_throw] = ACTIONS(3180), + [anon_sym_namespace] = ACTIONS(3180), + [anon_sym_using] = ACTIONS(3180), + [anon_sym_static_assert] = ACTIONS(3180), + [anon_sym_concept] = ACTIONS(3180), + [anon_sym_co_return] = ACTIONS(3180), + [anon_sym_co_yield] = ACTIONS(3180), + [anon_sym_R_DQUOTE] = ACTIONS(3182), + [anon_sym_LR_DQUOTE] = ACTIONS(3182), + [anon_sym_uR_DQUOTE] = ACTIONS(3182), + [anon_sym_UR_DQUOTE] = ACTIONS(3182), + [anon_sym_u8R_DQUOTE] = ACTIONS(3182), + [anon_sym_co_await] = ACTIONS(3180), + [anon_sym_new] = ACTIONS(3180), + [anon_sym_requires] = ACTIONS(3180), + [sym_this] = ACTIONS(3180), }, [1295] = { - [sym_identifier] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2616), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), + [sym_identifier] = ACTIONS(3117), + [aux_sym_preproc_include_token1] = ACTIONS(3117), + [aux_sym_preproc_def_token1] = ACTIONS(3117), + [aux_sym_preproc_if_token1] = ACTIONS(3117), + [aux_sym_preproc_if_token2] = ACTIONS(3117), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3117), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3117), + [sym_preproc_directive] = ACTIONS(3117), + [anon_sym_LPAREN2] = ACTIONS(3119), + [anon_sym_BANG] = ACTIONS(3119), + [anon_sym_TILDE] = ACTIONS(3119), + [anon_sym_DASH] = ACTIONS(3117), + [anon_sym_PLUS] = ACTIONS(3117), + [anon_sym_STAR] = ACTIONS(3119), + [anon_sym_AMP_AMP] = ACTIONS(3119), + [anon_sym_AMP] = ACTIONS(3117), + [anon_sym_SEMI] = ACTIONS(3119), + [anon_sym_typedef] = ACTIONS(3117), + [anon_sym_extern] = ACTIONS(3117), + [anon_sym___attribute__] = ACTIONS(3117), + [anon_sym_COLON_COLON] = ACTIONS(3119), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3119), + [anon_sym___declspec] = ACTIONS(3117), + [anon_sym___based] = ACTIONS(3117), + [anon_sym___cdecl] = ACTIONS(3117), + [anon_sym___clrcall] = ACTIONS(3117), + [anon_sym___stdcall] = ACTIONS(3117), + [anon_sym___fastcall] = ACTIONS(3117), + [anon_sym___thiscall] = ACTIONS(3117), + [anon_sym___vectorcall] = ACTIONS(3117), + [anon_sym_LBRACE] = ACTIONS(3119), + [anon_sym_LBRACK] = ACTIONS(3117), + [anon_sym_static] = ACTIONS(3117), + [anon_sym_register] = ACTIONS(3117), + [anon_sym_inline] = ACTIONS(3117), + [anon_sym_thread_local] = ACTIONS(3117), + [anon_sym_const] = ACTIONS(3117), + [anon_sym_constexpr] = ACTIONS(3117), + [anon_sym_volatile] = ACTIONS(3117), + [anon_sym_restrict] = ACTIONS(3117), + [anon_sym___restrict__] = ACTIONS(3117), + [anon_sym__Atomic] = ACTIONS(3117), + [anon_sym__Noreturn] = ACTIONS(3117), + [anon_sym_noreturn] = ACTIONS(3117), + [anon_sym_mutable] = ACTIONS(3117), + [anon_sym_constinit] = ACTIONS(3117), + [anon_sym_consteval] = ACTIONS(3117), + [anon_sym_signed] = ACTIONS(3117), + [anon_sym_unsigned] = ACTIONS(3117), + [anon_sym_long] = ACTIONS(3117), + [anon_sym_short] = ACTIONS(3117), + [sym_primitive_type] = ACTIONS(3117), + [anon_sym_enum] = ACTIONS(3117), + [anon_sym_class] = ACTIONS(3117), + [anon_sym_struct] = ACTIONS(3117), + [anon_sym_union] = ACTIONS(3117), + [anon_sym_if] = ACTIONS(3117), + [anon_sym_switch] = ACTIONS(3117), + [anon_sym_case] = ACTIONS(3117), + [anon_sym_default] = ACTIONS(3117), + [anon_sym_while] = ACTIONS(3117), + [anon_sym_do] = ACTIONS(3117), + [anon_sym_for] = ACTIONS(3117), + [anon_sym_return] = ACTIONS(3117), + [anon_sym_break] = ACTIONS(3117), + [anon_sym_continue] = ACTIONS(3117), + [anon_sym_goto] = ACTIONS(3117), + [anon_sym_not] = ACTIONS(3117), + [anon_sym_compl] = ACTIONS(3117), + [anon_sym_DASH_DASH] = ACTIONS(3119), + [anon_sym_PLUS_PLUS] = ACTIONS(3119), + [anon_sym_sizeof] = ACTIONS(3117), + [anon_sym_offsetof] = ACTIONS(3117), + [anon_sym__Generic] = ACTIONS(3117), + [anon_sym_asm] = ACTIONS(3117), + [anon_sym___asm__] = ACTIONS(3117), + [sym_number_literal] = ACTIONS(3119), + [anon_sym_L_SQUOTE] = ACTIONS(3119), + [anon_sym_u_SQUOTE] = ACTIONS(3119), + [anon_sym_U_SQUOTE] = ACTIONS(3119), + [anon_sym_u8_SQUOTE] = ACTIONS(3119), + [anon_sym_SQUOTE] = ACTIONS(3119), + [anon_sym_L_DQUOTE] = ACTIONS(3119), + [anon_sym_u_DQUOTE] = ACTIONS(3119), + [anon_sym_U_DQUOTE] = ACTIONS(3119), + [anon_sym_u8_DQUOTE] = ACTIONS(3119), + [anon_sym_DQUOTE] = ACTIONS(3119), + [sym_true] = ACTIONS(3117), + [sym_false] = ACTIONS(3117), + [anon_sym_NULL] = ACTIONS(3117), + [anon_sym_nullptr] = ACTIONS(3117), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3117), + [anon_sym_decltype] = ACTIONS(3117), + [anon_sym_virtual] = ACTIONS(3117), + [anon_sym_explicit] = ACTIONS(3117), + [anon_sym_typename] = ACTIONS(3117), + [anon_sym_template] = ACTIONS(3117), + [anon_sym_operator] = ACTIONS(3117), + [anon_sym_try] = ACTIONS(3117), + [anon_sym_delete] = ACTIONS(3117), + [anon_sym_throw] = ACTIONS(3117), + [anon_sym_namespace] = ACTIONS(3117), + [anon_sym_using] = ACTIONS(3117), + [anon_sym_static_assert] = ACTIONS(3117), + [anon_sym_concept] = ACTIONS(3117), + [anon_sym_co_return] = ACTIONS(3117), + [anon_sym_co_yield] = ACTIONS(3117), + [anon_sym_R_DQUOTE] = ACTIONS(3119), + [anon_sym_LR_DQUOTE] = ACTIONS(3119), + [anon_sym_uR_DQUOTE] = ACTIONS(3119), + [anon_sym_UR_DQUOTE] = ACTIONS(3119), + [anon_sym_u8R_DQUOTE] = ACTIONS(3119), + [anon_sym_co_await] = ACTIONS(3117), + [anon_sym_new] = ACTIONS(3117), + [anon_sym_requires] = ACTIONS(3117), + [sym_this] = ACTIONS(3117), }, [1296] = { - [sym_identifier] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2616), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), + [sym_identifier] = ACTIONS(3282), + [aux_sym_preproc_include_token1] = ACTIONS(3282), + [aux_sym_preproc_def_token1] = ACTIONS(3282), + [aux_sym_preproc_if_token1] = ACTIONS(3282), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3282), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3282), + [sym_preproc_directive] = ACTIONS(3282), + [anon_sym_LPAREN2] = ACTIONS(3284), + [anon_sym_BANG] = ACTIONS(3284), + [anon_sym_TILDE] = ACTIONS(3284), + [anon_sym_DASH] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3282), + [anon_sym_STAR] = ACTIONS(3284), + [anon_sym_AMP_AMP] = ACTIONS(3284), + [anon_sym_AMP] = ACTIONS(3282), + [anon_sym_SEMI] = ACTIONS(3284), + [anon_sym_typedef] = ACTIONS(3282), + [anon_sym_extern] = ACTIONS(3282), + [anon_sym___attribute__] = ACTIONS(3282), + [anon_sym_COLON_COLON] = ACTIONS(3284), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3284), + [anon_sym___declspec] = ACTIONS(3282), + [anon_sym___based] = ACTIONS(3282), + [anon_sym___cdecl] = ACTIONS(3282), + [anon_sym___clrcall] = ACTIONS(3282), + [anon_sym___stdcall] = ACTIONS(3282), + [anon_sym___fastcall] = ACTIONS(3282), + [anon_sym___thiscall] = ACTIONS(3282), + [anon_sym___vectorcall] = ACTIONS(3282), + [anon_sym_LBRACE] = ACTIONS(3284), + [anon_sym_RBRACE] = ACTIONS(3284), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_static] = ACTIONS(3282), + [anon_sym_register] = ACTIONS(3282), + [anon_sym_inline] = ACTIONS(3282), + [anon_sym_thread_local] = ACTIONS(3282), + [anon_sym_const] = ACTIONS(3282), + [anon_sym_constexpr] = ACTIONS(3282), + [anon_sym_volatile] = ACTIONS(3282), + [anon_sym_restrict] = ACTIONS(3282), + [anon_sym___restrict__] = ACTIONS(3282), + [anon_sym__Atomic] = ACTIONS(3282), + [anon_sym__Noreturn] = ACTIONS(3282), + [anon_sym_noreturn] = ACTIONS(3282), + [anon_sym_mutable] = ACTIONS(3282), + [anon_sym_constinit] = ACTIONS(3282), + [anon_sym_consteval] = ACTIONS(3282), + [anon_sym_signed] = ACTIONS(3282), + [anon_sym_unsigned] = ACTIONS(3282), + [anon_sym_long] = ACTIONS(3282), + [anon_sym_short] = ACTIONS(3282), + [sym_primitive_type] = ACTIONS(3282), + [anon_sym_enum] = ACTIONS(3282), + [anon_sym_class] = ACTIONS(3282), + [anon_sym_struct] = ACTIONS(3282), + [anon_sym_union] = ACTIONS(3282), + [anon_sym_if] = ACTIONS(3282), + [anon_sym_switch] = ACTIONS(3282), + [anon_sym_case] = ACTIONS(3282), + [anon_sym_default] = ACTIONS(3282), + [anon_sym_while] = ACTIONS(3282), + [anon_sym_do] = ACTIONS(3282), + [anon_sym_for] = ACTIONS(3282), + [anon_sym_return] = ACTIONS(3282), + [anon_sym_break] = ACTIONS(3282), + [anon_sym_continue] = ACTIONS(3282), + [anon_sym_goto] = ACTIONS(3282), + [anon_sym_not] = ACTIONS(3282), + [anon_sym_compl] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3284), + [anon_sym_PLUS_PLUS] = ACTIONS(3284), + [anon_sym_sizeof] = ACTIONS(3282), + [anon_sym_offsetof] = ACTIONS(3282), + [anon_sym__Generic] = ACTIONS(3282), + [anon_sym_asm] = ACTIONS(3282), + [anon_sym___asm__] = ACTIONS(3282), + [sym_number_literal] = ACTIONS(3284), + [anon_sym_L_SQUOTE] = ACTIONS(3284), + [anon_sym_u_SQUOTE] = ACTIONS(3284), + [anon_sym_U_SQUOTE] = ACTIONS(3284), + [anon_sym_u8_SQUOTE] = ACTIONS(3284), + [anon_sym_SQUOTE] = ACTIONS(3284), + [anon_sym_L_DQUOTE] = ACTIONS(3284), + [anon_sym_u_DQUOTE] = ACTIONS(3284), + [anon_sym_U_DQUOTE] = ACTIONS(3284), + [anon_sym_u8_DQUOTE] = ACTIONS(3284), + [anon_sym_DQUOTE] = ACTIONS(3284), + [sym_true] = ACTIONS(3282), + [sym_false] = ACTIONS(3282), + [anon_sym_NULL] = ACTIONS(3282), + [anon_sym_nullptr] = ACTIONS(3282), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3282), + [anon_sym_decltype] = ACTIONS(3282), + [anon_sym_virtual] = ACTIONS(3282), + [anon_sym_explicit] = ACTIONS(3282), + [anon_sym_typename] = ACTIONS(3282), + [anon_sym_template] = ACTIONS(3282), + [anon_sym_operator] = ACTIONS(3282), + [anon_sym_try] = ACTIONS(3282), + [anon_sym_delete] = ACTIONS(3282), + [anon_sym_throw] = ACTIONS(3282), + [anon_sym_namespace] = ACTIONS(3282), + [anon_sym_using] = ACTIONS(3282), + [anon_sym_static_assert] = ACTIONS(3282), + [anon_sym_concept] = ACTIONS(3282), + [anon_sym_co_return] = ACTIONS(3282), + [anon_sym_co_yield] = ACTIONS(3282), + [anon_sym_R_DQUOTE] = ACTIONS(3284), + [anon_sym_LR_DQUOTE] = ACTIONS(3284), + [anon_sym_uR_DQUOTE] = ACTIONS(3284), + [anon_sym_UR_DQUOTE] = ACTIONS(3284), + [anon_sym_u8R_DQUOTE] = ACTIONS(3284), + [anon_sym_co_await] = ACTIONS(3282), + [anon_sym_new] = ACTIONS(3282), + [anon_sym_requires] = ACTIONS(3282), + [sym_this] = ACTIONS(3282), }, [1297] = { - [sym_identifier] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2616), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), + [sym_identifier] = ACTIONS(3117), + [aux_sym_preproc_include_token1] = ACTIONS(3117), + [aux_sym_preproc_def_token1] = ACTIONS(3117), + [aux_sym_preproc_if_token1] = ACTIONS(3117), + [aux_sym_preproc_if_token2] = ACTIONS(3117), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3117), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3117), + [sym_preproc_directive] = ACTIONS(3117), + [anon_sym_LPAREN2] = ACTIONS(3119), + [anon_sym_BANG] = ACTIONS(3119), + [anon_sym_TILDE] = ACTIONS(3119), + [anon_sym_DASH] = ACTIONS(3117), + [anon_sym_PLUS] = ACTIONS(3117), + [anon_sym_STAR] = ACTIONS(3119), + [anon_sym_AMP_AMP] = ACTIONS(3119), + [anon_sym_AMP] = ACTIONS(3117), + [anon_sym_SEMI] = ACTIONS(3119), + [anon_sym_typedef] = ACTIONS(3117), + [anon_sym_extern] = ACTIONS(3117), + [anon_sym___attribute__] = ACTIONS(3117), + [anon_sym_COLON_COLON] = ACTIONS(3119), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3119), + [anon_sym___declspec] = ACTIONS(3117), + [anon_sym___based] = ACTIONS(3117), + [anon_sym___cdecl] = ACTIONS(3117), + [anon_sym___clrcall] = ACTIONS(3117), + [anon_sym___stdcall] = ACTIONS(3117), + [anon_sym___fastcall] = ACTIONS(3117), + [anon_sym___thiscall] = ACTIONS(3117), + [anon_sym___vectorcall] = ACTIONS(3117), + [anon_sym_LBRACE] = ACTIONS(3119), + [anon_sym_LBRACK] = ACTIONS(3117), + [anon_sym_static] = ACTIONS(3117), + [anon_sym_register] = ACTIONS(3117), + [anon_sym_inline] = ACTIONS(3117), + [anon_sym_thread_local] = ACTIONS(3117), + [anon_sym_const] = ACTIONS(3117), + [anon_sym_constexpr] = ACTIONS(3117), + [anon_sym_volatile] = ACTIONS(3117), + [anon_sym_restrict] = ACTIONS(3117), + [anon_sym___restrict__] = ACTIONS(3117), + [anon_sym__Atomic] = ACTIONS(3117), + [anon_sym__Noreturn] = ACTIONS(3117), + [anon_sym_noreturn] = ACTIONS(3117), + [anon_sym_mutable] = ACTIONS(3117), + [anon_sym_constinit] = ACTIONS(3117), + [anon_sym_consteval] = ACTIONS(3117), + [anon_sym_signed] = ACTIONS(3117), + [anon_sym_unsigned] = ACTIONS(3117), + [anon_sym_long] = ACTIONS(3117), + [anon_sym_short] = ACTIONS(3117), + [sym_primitive_type] = ACTIONS(3117), + [anon_sym_enum] = ACTIONS(3117), + [anon_sym_class] = ACTIONS(3117), + [anon_sym_struct] = ACTIONS(3117), + [anon_sym_union] = ACTIONS(3117), + [anon_sym_if] = ACTIONS(3117), + [anon_sym_switch] = ACTIONS(3117), + [anon_sym_case] = ACTIONS(3117), + [anon_sym_default] = ACTIONS(3117), + [anon_sym_while] = ACTIONS(3117), + [anon_sym_do] = ACTIONS(3117), + [anon_sym_for] = ACTIONS(3117), + [anon_sym_return] = ACTIONS(3117), + [anon_sym_break] = ACTIONS(3117), + [anon_sym_continue] = ACTIONS(3117), + [anon_sym_goto] = ACTIONS(3117), + [anon_sym_not] = ACTIONS(3117), + [anon_sym_compl] = ACTIONS(3117), + [anon_sym_DASH_DASH] = ACTIONS(3119), + [anon_sym_PLUS_PLUS] = ACTIONS(3119), + [anon_sym_sizeof] = ACTIONS(3117), + [anon_sym_offsetof] = ACTIONS(3117), + [anon_sym__Generic] = ACTIONS(3117), + [anon_sym_asm] = ACTIONS(3117), + [anon_sym___asm__] = ACTIONS(3117), + [sym_number_literal] = ACTIONS(3119), + [anon_sym_L_SQUOTE] = ACTIONS(3119), + [anon_sym_u_SQUOTE] = ACTIONS(3119), + [anon_sym_U_SQUOTE] = ACTIONS(3119), + [anon_sym_u8_SQUOTE] = ACTIONS(3119), + [anon_sym_SQUOTE] = ACTIONS(3119), + [anon_sym_L_DQUOTE] = ACTIONS(3119), + [anon_sym_u_DQUOTE] = ACTIONS(3119), + [anon_sym_U_DQUOTE] = ACTIONS(3119), + [anon_sym_u8_DQUOTE] = ACTIONS(3119), + [anon_sym_DQUOTE] = ACTIONS(3119), + [sym_true] = ACTIONS(3117), + [sym_false] = ACTIONS(3117), + [anon_sym_NULL] = ACTIONS(3117), + [anon_sym_nullptr] = ACTIONS(3117), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3117), + [anon_sym_decltype] = ACTIONS(3117), + [anon_sym_virtual] = ACTIONS(3117), + [anon_sym_explicit] = ACTIONS(3117), + [anon_sym_typename] = ACTIONS(3117), + [anon_sym_template] = ACTIONS(3117), + [anon_sym_operator] = ACTIONS(3117), + [anon_sym_try] = ACTIONS(3117), + [anon_sym_delete] = ACTIONS(3117), + [anon_sym_throw] = ACTIONS(3117), + [anon_sym_namespace] = ACTIONS(3117), + [anon_sym_using] = ACTIONS(3117), + [anon_sym_static_assert] = ACTIONS(3117), + [anon_sym_concept] = ACTIONS(3117), + [anon_sym_co_return] = ACTIONS(3117), + [anon_sym_co_yield] = ACTIONS(3117), + [anon_sym_R_DQUOTE] = ACTIONS(3119), + [anon_sym_LR_DQUOTE] = ACTIONS(3119), + [anon_sym_uR_DQUOTE] = ACTIONS(3119), + [anon_sym_UR_DQUOTE] = ACTIONS(3119), + [anon_sym_u8R_DQUOTE] = ACTIONS(3119), + [anon_sym_co_await] = ACTIONS(3117), + [anon_sym_new] = ACTIONS(3117), + [anon_sym_requires] = ACTIONS(3117), + [sym_this] = ACTIONS(3117), }, [1298] = { - [sym_identifier] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2616), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), + [sym_identifier] = ACTIONS(3332), + [aux_sym_preproc_include_token1] = ACTIONS(3332), + [aux_sym_preproc_def_token1] = ACTIONS(3332), + [aux_sym_preproc_if_token1] = ACTIONS(3332), + [aux_sym_preproc_if_token2] = ACTIONS(3332), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3332), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3332), + [sym_preproc_directive] = ACTIONS(3332), + [anon_sym_LPAREN2] = ACTIONS(3334), + [anon_sym_BANG] = ACTIONS(3334), + [anon_sym_TILDE] = ACTIONS(3334), + [anon_sym_DASH] = ACTIONS(3332), + [anon_sym_PLUS] = ACTIONS(3332), + [anon_sym_STAR] = ACTIONS(3334), + [anon_sym_AMP_AMP] = ACTIONS(3334), + [anon_sym_AMP] = ACTIONS(3332), + [anon_sym_SEMI] = ACTIONS(3334), + [anon_sym_typedef] = ACTIONS(3332), + [anon_sym_extern] = ACTIONS(3332), + [anon_sym___attribute__] = ACTIONS(3332), + [anon_sym_COLON_COLON] = ACTIONS(3334), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3334), + [anon_sym___declspec] = ACTIONS(3332), + [anon_sym___based] = ACTIONS(3332), + [anon_sym___cdecl] = ACTIONS(3332), + [anon_sym___clrcall] = ACTIONS(3332), + [anon_sym___stdcall] = ACTIONS(3332), + [anon_sym___fastcall] = ACTIONS(3332), + [anon_sym___thiscall] = ACTIONS(3332), + [anon_sym___vectorcall] = ACTIONS(3332), + [anon_sym_LBRACE] = ACTIONS(3334), + [anon_sym_LBRACK] = ACTIONS(3332), + [anon_sym_static] = ACTIONS(3332), + [anon_sym_register] = ACTIONS(3332), + [anon_sym_inline] = ACTIONS(3332), + [anon_sym_thread_local] = ACTIONS(3332), + [anon_sym_const] = ACTIONS(3332), + [anon_sym_constexpr] = ACTIONS(3332), + [anon_sym_volatile] = ACTIONS(3332), + [anon_sym_restrict] = ACTIONS(3332), + [anon_sym___restrict__] = ACTIONS(3332), + [anon_sym__Atomic] = ACTIONS(3332), + [anon_sym__Noreturn] = ACTIONS(3332), + [anon_sym_noreturn] = ACTIONS(3332), + [anon_sym_mutable] = ACTIONS(3332), + [anon_sym_constinit] = ACTIONS(3332), + [anon_sym_consteval] = ACTIONS(3332), + [anon_sym_signed] = ACTIONS(3332), + [anon_sym_unsigned] = ACTIONS(3332), + [anon_sym_long] = ACTIONS(3332), + [anon_sym_short] = ACTIONS(3332), + [sym_primitive_type] = ACTIONS(3332), + [anon_sym_enum] = ACTIONS(3332), + [anon_sym_class] = ACTIONS(3332), + [anon_sym_struct] = ACTIONS(3332), + [anon_sym_union] = ACTIONS(3332), + [anon_sym_if] = ACTIONS(3332), + [anon_sym_switch] = ACTIONS(3332), + [anon_sym_case] = ACTIONS(3332), + [anon_sym_default] = ACTIONS(3332), + [anon_sym_while] = ACTIONS(3332), + [anon_sym_do] = ACTIONS(3332), + [anon_sym_for] = ACTIONS(3332), + [anon_sym_return] = ACTIONS(3332), + [anon_sym_break] = ACTIONS(3332), + [anon_sym_continue] = ACTIONS(3332), + [anon_sym_goto] = ACTIONS(3332), + [anon_sym_not] = ACTIONS(3332), + [anon_sym_compl] = ACTIONS(3332), + [anon_sym_DASH_DASH] = ACTIONS(3334), + [anon_sym_PLUS_PLUS] = ACTIONS(3334), + [anon_sym_sizeof] = ACTIONS(3332), + [anon_sym_offsetof] = ACTIONS(3332), + [anon_sym__Generic] = ACTIONS(3332), + [anon_sym_asm] = ACTIONS(3332), + [anon_sym___asm__] = ACTIONS(3332), + [sym_number_literal] = ACTIONS(3334), + [anon_sym_L_SQUOTE] = ACTIONS(3334), + [anon_sym_u_SQUOTE] = ACTIONS(3334), + [anon_sym_U_SQUOTE] = ACTIONS(3334), + [anon_sym_u8_SQUOTE] = ACTIONS(3334), + [anon_sym_SQUOTE] = ACTIONS(3334), + [anon_sym_L_DQUOTE] = ACTIONS(3334), + [anon_sym_u_DQUOTE] = ACTIONS(3334), + [anon_sym_U_DQUOTE] = ACTIONS(3334), + [anon_sym_u8_DQUOTE] = ACTIONS(3334), + [anon_sym_DQUOTE] = ACTIONS(3334), + [sym_true] = ACTIONS(3332), + [sym_false] = ACTIONS(3332), + [anon_sym_NULL] = ACTIONS(3332), + [anon_sym_nullptr] = ACTIONS(3332), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3332), + [anon_sym_decltype] = ACTIONS(3332), + [anon_sym_virtual] = ACTIONS(3332), + [anon_sym_explicit] = ACTIONS(3332), + [anon_sym_typename] = ACTIONS(3332), + [anon_sym_template] = ACTIONS(3332), + [anon_sym_operator] = ACTIONS(3332), + [anon_sym_try] = ACTIONS(3332), + [anon_sym_delete] = ACTIONS(3332), + [anon_sym_throw] = ACTIONS(3332), + [anon_sym_namespace] = ACTIONS(3332), + [anon_sym_using] = ACTIONS(3332), + [anon_sym_static_assert] = ACTIONS(3332), + [anon_sym_concept] = ACTIONS(3332), + [anon_sym_co_return] = ACTIONS(3332), + [anon_sym_co_yield] = ACTIONS(3332), + [anon_sym_R_DQUOTE] = ACTIONS(3334), + [anon_sym_LR_DQUOTE] = ACTIONS(3334), + [anon_sym_uR_DQUOTE] = ACTIONS(3334), + [anon_sym_UR_DQUOTE] = ACTIONS(3334), + [anon_sym_u8R_DQUOTE] = ACTIONS(3334), + [anon_sym_co_await] = ACTIONS(3332), + [anon_sym_new] = ACTIONS(3332), + [anon_sym_requires] = ACTIONS(3332), + [sym_this] = ACTIONS(3332), }, [1299] = { - [sym_identifier] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2616), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), + [sym_identifier] = ACTIONS(3176), + [aux_sym_preproc_include_token1] = ACTIONS(3176), + [aux_sym_preproc_def_token1] = ACTIONS(3176), + [aux_sym_preproc_if_token1] = ACTIONS(3176), + [aux_sym_preproc_if_token2] = ACTIONS(3176), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3176), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3176), + [sym_preproc_directive] = ACTIONS(3176), + [anon_sym_LPAREN2] = ACTIONS(3178), + [anon_sym_BANG] = ACTIONS(3178), + [anon_sym_TILDE] = ACTIONS(3178), + [anon_sym_DASH] = ACTIONS(3176), + [anon_sym_PLUS] = ACTIONS(3176), + [anon_sym_STAR] = ACTIONS(3178), + [anon_sym_AMP_AMP] = ACTIONS(3178), + [anon_sym_AMP] = ACTIONS(3176), + [anon_sym_SEMI] = ACTIONS(3178), + [anon_sym_typedef] = ACTIONS(3176), + [anon_sym_extern] = ACTIONS(3176), + [anon_sym___attribute__] = ACTIONS(3176), + [anon_sym_COLON_COLON] = ACTIONS(3178), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3178), + [anon_sym___declspec] = ACTIONS(3176), + [anon_sym___based] = ACTIONS(3176), + [anon_sym___cdecl] = ACTIONS(3176), + [anon_sym___clrcall] = ACTIONS(3176), + [anon_sym___stdcall] = ACTIONS(3176), + [anon_sym___fastcall] = ACTIONS(3176), + [anon_sym___thiscall] = ACTIONS(3176), + [anon_sym___vectorcall] = ACTIONS(3176), + [anon_sym_LBRACE] = ACTIONS(3178), + [anon_sym_LBRACK] = ACTIONS(3176), + [anon_sym_static] = ACTIONS(3176), + [anon_sym_register] = ACTIONS(3176), + [anon_sym_inline] = ACTIONS(3176), + [anon_sym_thread_local] = ACTIONS(3176), + [anon_sym_const] = ACTIONS(3176), + [anon_sym_constexpr] = ACTIONS(3176), + [anon_sym_volatile] = ACTIONS(3176), + [anon_sym_restrict] = ACTIONS(3176), + [anon_sym___restrict__] = ACTIONS(3176), + [anon_sym__Atomic] = ACTIONS(3176), + [anon_sym__Noreturn] = ACTIONS(3176), + [anon_sym_noreturn] = ACTIONS(3176), + [anon_sym_mutable] = ACTIONS(3176), + [anon_sym_constinit] = ACTIONS(3176), + [anon_sym_consteval] = ACTIONS(3176), + [anon_sym_signed] = ACTIONS(3176), + [anon_sym_unsigned] = ACTIONS(3176), + [anon_sym_long] = ACTIONS(3176), + [anon_sym_short] = ACTIONS(3176), + [sym_primitive_type] = ACTIONS(3176), + [anon_sym_enum] = ACTIONS(3176), + [anon_sym_class] = ACTIONS(3176), + [anon_sym_struct] = ACTIONS(3176), + [anon_sym_union] = ACTIONS(3176), + [anon_sym_if] = ACTIONS(3176), + [anon_sym_switch] = ACTIONS(3176), + [anon_sym_case] = ACTIONS(3176), + [anon_sym_default] = ACTIONS(3176), + [anon_sym_while] = ACTIONS(3176), + [anon_sym_do] = ACTIONS(3176), + [anon_sym_for] = ACTIONS(3176), + [anon_sym_return] = ACTIONS(3176), + [anon_sym_break] = ACTIONS(3176), + [anon_sym_continue] = ACTIONS(3176), + [anon_sym_goto] = ACTIONS(3176), + [anon_sym_not] = ACTIONS(3176), + [anon_sym_compl] = ACTIONS(3176), + [anon_sym_DASH_DASH] = ACTIONS(3178), + [anon_sym_PLUS_PLUS] = ACTIONS(3178), + [anon_sym_sizeof] = ACTIONS(3176), + [anon_sym_offsetof] = ACTIONS(3176), + [anon_sym__Generic] = ACTIONS(3176), + [anon_sym_asm] = ACTIONS(3176), + [anon_sym___asm__] = ACTIONS(3176), + [sym_number_literal] = ACTIONS(3178), + [anon_sym_L_SQUOTE] = ACTIONS(3178), + [anon_sym_u_SQUOTE] = ACTIONS(3178), + [anon_sym_U_SQUOTE] = ACTIONS(3178), + [anon_sym_u8_SQUOTE] = ACTIONS(3178), + [anon_sym_SQUOTE] = ACTIONS(3178), + [anon_sym_L_DQUOTE] = ACTIONS(3178), + [anon_sym_u_DQUOTE] = ACTIONS(3178), + [anon_sym_U_DQUOTE] = ACTIONS(3178), + [anon_sym_u8_DQUOTE] = ACTIONS(3178), + [anon_sym_DQUOTE] = ACTIONS(3178), + [sym_true] = ACTIONS(3176), + [sym_false] = ACTIONS(3176), + [anon_sym_NULL] = ACTIONS(3176), + [anon_sym_nullptr] = ACTIONS(3176), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3176), + [anon_sym_decltype] = ACTIONS(3176), + [anon_sym_virtual] = ACTIONS(3176), + [anon_sym_explicit] = ACTIONS(3176), + [anon_sym_typename] = ACTIONS(3176), + [anon_sym_template] = ACTIONS(3176), + [anon_sym_operator] = ACTIONS(3176), + [anon_sym_try] = ACTIONS(3176), + [anon_sym_delete] = ACTIONS(3176), + [anon_sym_throw] = ACTIONS(3176), + [anon_sym_namespace] = ACTIONS(3176), + [anon_sym_using] = ACTIONS(3176), + [anon_sym_static_assert] = ACTIONS(3176), + [anon_sym_concept] = ACTIONS(3176), + [anon_sym_co_return] = ACTIONS(3176), + [anon_sym_co_yield] = ACTIONS(3176), + [anon_sym_R_DQUOTE] = ACTIONS(3178), + [anon_sym_LR_DQUOTE] = ACTIONS(3178), + [anon_sym_uR_DQUOTE] = ACTIONS(3178), + [anon_sym_UR_DQUOTE] = ACTIONS(3178), + [anon_sym_u8R_DQUOTE] = ACTIONS(3178), + [anon_sym_co_await] = ACTIONS(3176), + [anon_sym_new] = ACTIONS(3176), + [anon_sym_requires] = ACTIONS(3176), + [sym_this] = ACTIONS(3176), }, [1300] = { - [sym_identifier] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2616), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), + [sym_identifier] = ACTIONS(3180), + [aux_sym_preproc_include_token1] = ACTIONS(3180), + [aux_sym_preproc_def_token1] = ACTIONS(3180), + [aux_sym_preproc_if_token1] = ACTIONS(3180), + [aux_sym_preproc_if_token2] = ACTIONS(3180), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3180), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3180), + [sym_preproc_directive] = ACTIONS(3180), + [anon_sym_LPAREN2] = ACTIONS(3182), + [anon_sym_BANG] = ACTIONS(3182), + [anon_sym_TILDE] = ACTIONS(3182), + [anon_sym_DASH] = ACTIONS(3180), + [anon_sym_PLUS] = ACTIONS(3180), + [anon_sym_STAR] = ACTIONS(3182), + [anon_sym_AMP_AMP] = ACTIONS(3182), + [anon_sym_AMP] = ACTIONS(3180), + [anon_sym_SEMI] = ACTIONS(3182), + [anon_sym_typedef] = ACTIONS(3180), + [anon_sym_extern] = ACTIONS(3180), + [anon_sym___attribute__] = ACTIONS(3180), + [anon_sym_COLON_COLON] = ACTIONS(3182), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3182), + [anon_sym___declspec] = ACTIONS(3180), + [anon_sym___based] = ACTIONS(3180), + [anon_sym___cdecl] = ACTIONS(3180), + [anon_sym___clrcall] = ACTIONS(3180), + [anon_sym___stdcall] = ACTIONS(3180), + [anon_sym___fastcall] = ACTIONS(3180), + [anon_sym___thiscall] = ACTIONS(3180), + [anon_sym___vectorcall] = ACTIONS(3180), + [anon_sym_LBRACE] = ACTIONS(3182), + [anon_sym_LBRACK] = ACTIONS(3180), + [anon_sym_static] = ACTIONS(3180), + [anon_sym_register] = ACTIONS(3180), + [anon_sym_inline] = ACTIONS(3180), + [anon_sym_thread_local] = ACTIONS(3180), + [anon_sym_const] = ACTIONS(3180), + [anon_sym_constexpr] = ACTIONS(3180), + [anon_sym_volatile] = ACTIONS(3180), + [anon_sym_restrict] = ACTIONS(3180), + [anon_sym___restrict__] = ACTIONS(3180), + [anon_sym__Atomic] = ACTIONS(3180), + [anon_sym__Noreturn] = ACTIONS(3180), + [anon_sym_noreturn] = ACTIONS(3180), + [anon_sym_mutable] = ACTIONS(3180), + [anon_sym_constinit] = ACTIONS(3180), + [anon_sym_consteval] = ACTIONS(3180), + [anon_sym_signed] = ACTIONS(3180), + [anon_sym_unsigned] = ACTIONS(3180), + [anon_sym_long] = ACTIONS(3180), + [anon_sym_short] = ACTIONS(3180), + [sym_primitive_type] = ACTIONS(3180), + [anon_sym_enum] = ACTIONS(3180), + [anon_sym_class] = ACTIONS(3180), + [anon_sym_struct] = ACTIONS(3180), + [anon_sym_union] = ACTIONS(3180), + [anon_sym_if] = ACTIONS(3180), + [anon_sym_switch] = ACTIONS(3180), + [anon_sym_case] = ACTIONS(3180), + [anon_sym_default] = ACTIONS(3180), + [anon_sym_while] = ACTIONS(3180), + [anon_sym_do] = ACTIONS(3180), + [anon_sym_for] = ACTIONS(3180), + [anon_sym_return] = ACTIONS(3180), + [anon_sym_break] = ACTIONS(3180), + [anon_sym_continue] = ACTIONS(3180), + [anon_sym_goto] = ACTIONS(3180), + [anon_sym_not] = ACTIONS(3180), + [anon_sym_compl] = ACTIONS(3180), + [anon_sym_DASH_DASH] = ACTIONS(3182), + [anon_sym_PLUS_PLUS] = ACTIONS(3182), + [anon_sym_sizeof] = ACTIONS(3180), + [anon_sym_offsetof] = ACTIONS(3180), + [anon_sym__Generic] = ACTIONS(3180), + [anon_sym_asm] = ACTIONS(3180), + [anon_sym___asm__] = ACTIONS(3180), + [sym_number_literal] = ACTIONS(3182), + [anon_sym_L_SQUOTE] = ACTIONS(3182), + [anon_sym_u_SQUOTE] = ACTIONS(3182), + [anon_sym_U_SQUOTE] = ACTIONS(3182), + [anon_sym_u8_SQUOTE] = ACTIONS(3182), + [anon_sym_SQUOTE] = ACTIONS(3182), + [anon_sym_L_DQUOTE] = ACTIONS(3182), + [anon_sym_u_DQUOTE] = ACTIONS(3182), + [anon_sym_U_DQUOTE] = ACTIONS(3182), + [anon_sym_u8_DQUOTE] = ACTIONS(3182), + [anon_sym_DQUOTE] = ACTIONS(3182), + [sym_true] = ACTIONS(3180), + [sym_false] = ACTIONS(3180), + [anon_sym_NULL] = ACTIONS(3180), + [anon_sym_nullptr] = ACTIONS(3180), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3180), + [anon_sym_decltype] = ACTIONS(3180), + [anon_sym_virtual] = ACTIONS(3180), + [anon_sym_explicit] = ACTIONS(3180), + [anon_sym_typename] = ACTIONS(3180), + [anon_sym_template] = ACTIONS(3180), + [anon_sym_operator] = ACTIONS(3180), + [anon_sym_try] = ACTIONS(3180), + [anon_sym_delete] = ACTIONS(3180), + [anon_sym_throw] = ACTIONS(3180), + [anon_sym_namespace] = ACTIONS(3180), + [anon_sym_using] = ACTIONS(3180), + [anon_sym_static_assert] = ACTIONS(3180), + [anon_sym_concept] = ACTIONS(3180), + [anon_sym_co_return] = ACTIONS(3180), + [anon_sym_co_yield] = ACTIONS(3180), + [anon_sym_R_DQUOTE] = ACTIONS(3182), + [anon_sym_LR_DQUOTE] = ACTIONS(3182), + [anon_sym_uR_DQUOTE] = ACTIONS(3182), + [anon_sym_UR_DQUOTE] = ACTIONS(3182), + [anon_sym_u8R_DQUOTE] = ACTIONS(3182), + [anon_sym_co_await] = ACTIONS(3180), + [anon_sym_new] = ACTIONS(3180), + [anon_sym_requires] = ACTIONS(3180), + [sym_this] = ACTIONS(3180), }, [1301] = { - [sym_identifier] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2616), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), + [sym_identifier] = ACTIONS(3384), + [aux_sym_preproc_include_token1] = ACTIONS(3384), + [aux_sym_preproc_def_token1] = ACTIONS(3384), + [aux_sym_preproc_if_token1] = ACTIONS(3384), + [aux_sym_preproc_if_token2] = ACTIONS(3384), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3384), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3384), + [sym_preproc_directive] = ACTIONS(3384), + [anon_sym_LPAREN2] = ACTIONS(3386), + [anon_sym_BANG] = ACTIONS(3386), + [anon_sym_TILDE] = ACTIONS(3386), + [anon_sym_DASH] = ACTIONS(3384), + [anon_sym_PLUS] = ACTIONS(3384), + [anon_sym_STAR] = ACTIONS(3386), + [anon_sym_AMP_AMP] = ACTIONS(3386), + [anon_sym_AMP] = ACTIONS(3384), + [anon_sym_SEMI] = ACTIONS(3386), + [anon_sym_typedef] = ACTIONS(3384), + [anon_sym_extern] = ACTIONS(3384), + [anon_sym___attribute__] = ACTIONS(3384), + [anon_sym_COLON_COLON] = ACTIONS(3386), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3386), + [anon_sym___declspec] = ACTIONS(3384), + [anon_sym___based] = ACTIONS(3384), + [anon_sym___cdecl] = ACTIONS(3384), + [anon_sym___clrcall] = ACTIONS(3384), + [anon_sym___stdcall] = ACTIONS(3384), + [anon_sym___fastcall] = ACTIONS(3384), + [anon_sym___thiscall] = ACTIONS(3384), + [anon_sym___vectorcall] = ACTIONS(3384), + [anon_sym_LBRACE] = ACTIONS(3386), + [anon_sym_LBRACK] = ACTIONS(3384), + [anon_sym_static] = ACTIONS(3384), + [anon_sym_register] = ACTIONS(3384), + [anon_sym_inline] = ACTIONS(3384), + [anon_sym_thread_local] = ACTIONS(3384), + [anon_sym_const] = ACTIONS(3384), + [anon_sym_constexpr] = ACTIONS(3384), + [anon_sym_volatile] = ACTIONS(3384), + [anon_sym_restrict] = ACTIONS(3384), + [anon_sym___restrict__] = ACTIONS(3384), + [anon_sym__Atomic] = ACTIONS(3384), + [anon_sym__Noreturn] = ACTIONS(3384), + [anon_sym_noreturn] = ACTIONS(3384), + [anon_sym_mutable] = ACTIONS(3384), + [anon_sym_constinit] = ACTIONS(3384), + [anon_sym_consteval] = ACTIONS(3384), + [anon_sym_signed] = ACTIONS(3384), + [anon_sym_unsigned] = ACTIONS(3384), + [anon_sym_long] = ACTIONS(3384), + [anon_sym_short] = ACTIONS(3384), + [sym_primitive_type] = ACTIONS(3384), + [anon_sym_enum] = ACTIONS(3384), + [anon_sym_class] = ACTIONS(3384), + [anon_sym_struct] = ACTIONS(3384), + [anon_sym_union] = ACTIONS(3384), + [anon_sym_if] = ACTIONS(3384), + [anon_sym_switch] = ACTIONS(3384), + [anon_sym_case] = ACTIONS(3384), + [anon_sym_default] = ACTIONS(3384), + [anon_sym_while] = ACTIONS(3384), + [anon_sym_do] = ACTIONS(3384), + [anon_sym_for] = ACTIONS(3384), + [anon_sym_return] = ACTIONS(3384), + [anon_sym_break] = ACTIONS(3384), + [anon_sym_continue] = ACTIONS(3384), + [anon_sym_goto] = ACTIONS(3384), + [anon_sym_not] = ACTIONS(3384), + [anon_sym_compl] = ACTIONS(3384), + [anon_sym_DASH_DASH] = ACTIONS(3386), + [anon_sym_PLUS_PLUS] = ACTIONS(3386), + [anon_sym_sizeof] = ACTIONS(3384), + [anon_sym_offsetof] = ACTIONS(3384), + [anon_sym__Generic] = ACTIONS(3384), + [anon_sym_asm] = ACTIONS(3384), + [anon_sym___asm__] = ACTIONS(3384), + [sym_number_literal] = ACTIONS(3386), + [anon_sym_L_SQUOTE] = ACTIONS(3386), + [anon_sym_u_SQUOTE] = ACTIONS(3386), + [anon_sym_U_SQUOTE] = ACTIONS(3386), + [anon_sym_u8_SQUOTE] = ACTIONS(3386), + [anon_sym_SQUOTE] = ACTIONS(3386), + [anon_sym_L_DQUOTE] = ACTIONS(3386), + [anon_sym_u_DQUOTE] = ACTIONS(3386), + [anon_sym_U_DQUOTE] = ACTIONS(3386), + [anon_sym_u8_DQUOTE] = ACTIONS(3386), + [anon_sym_DQUOTE] = ACTIONS(3386), + [sym_true] = ACTIONS(3384), + [sym_false] = ACTIONS(3384), + [anon_sym_NULL] = ACTIONS(3384), + [anon_sym_nullptr] = ACTIONS(3384), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3384), + [anon_sym_decltype] = ACTIONS(3384), + [anon_sym_virtual] = ACTIONS(3384), + [anon_sym_explicit] = ACTIONS(3384), + [anon_sym_typename] = ACTIONS(3384), + [anon_sym_template] = ACTIONS(3384), + [anon_sym_operator] = ACTIONS(3384), + [anon_sym_try] = ACTIONS(3384), + [anon_sym_delete] = ACTIONS(3384), + [anon_sym_throw] = ACTIONS(3384), + [anon_sym_namespace] = ACTIONS(3384), + [anon_sym_using] = ACTIONS(3384), + [anon_sym_static_assert] = ACTIONS(3384), + [anon_sym_concept] = ACTIONS(3384), + [anon_sym_co_return] = ACTIONS(3384), + [anon_sym_co_yield] = ACTIONS(3384), + [anon_sym_R_DQUOTE] = ACTIONS(3386), + [anon_sym_LR_DQUOTE] = ACTIONS(3386), + [anon_sym_uR_DQUOTE] = ACTIONS(3386), + [anon_sym_UR_DQUOTE] = ACTIONS(3386), + [anon_sym_u8R_DQUOTE] = ACTIONS(3386), + [anon_sym_co_await] = ACTIONS(3384), + [anon_sym_new] = ACTIONS(3384), + [anon_sym_requires] = ACTIONS(3384), + [sym_this] = ACTIONS(3384), }, [1302] = { - [sym_identifier] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2616), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), + [sym_identifier] = ACTIONS(3226), + [aux_sym_preproc_include_token1] = ACTIONS(3226), + [aux_sym_preproc_def_token1] = ACTIONS(3226), + [aux_sym_preproc_if_token1] = ACTIONS(3226), + [aux_sym_preproc_if_token2] = ACTIONS(3226), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3226), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3226), + [sym_preproc_directive] = ACTIONS(3226), + [anon_sym_LPAREN2] = ACTIONS(3228), + [anon_sym_BANG] = ACTIONS(3228), + [anon_sym_TILDE] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(3226), + [anon_sym_PLUS] = ACTIONS(3226), + [anon_sym_STAR] = ACTIONS(3228), + [anon_sym_AMP_AMP] = ACTIONS(3228), + [anon_sym_AMP] = ACTIONS(3226), + [anon_sym_SEMI] = ACTIONS(3228), + [anon_sym_typedef] = ACTIONS(3226), + [anon_sym_extern] = ACTIONS(3226), + [anon_sym___attribute__] = ACTIONS(3226), + [anon_sym_COLON_COLON] = ACTIONS(3228), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3228), + [anon_sym___declspec] = ACTIONS(3226), + [anon_sym___based] = ACTIONS(3226), + [anon_sym___cdecl] = ACTIONS(3226), + [anon_sym___clrcall] = ACTIONS(3226), + [anon_sym___stdcall] = ACTIONS(3226), + [anon_sym___fastcall] = ACTIONS(3226), + [anon_sym___thiscall] = ACTIONS(3226), + [anon_sym___vectorcall] = ACTIONS(3226), + [anon_sym_LBRACE] = ACTIONS(3228), + [anon_sym_LBRACK] = ACTIONS(3226), + [anon_sym_static] = ACTIONS(3226), + [anon_sym_register] = ACTIONS(3226), + [anon_sym_inline] = ACTIONS(3226), + [anon_sym_thread_local] = ACTIONS(3226), + [anon_sym_const] = ACTIONS(3226), + [anon_sym_constexpr] = ACTIONS(3226), + [anon_sym_volatile] = ACTIONS(3226), + [anon_sym_restrict] = ACTIONS(3226), + [anon_sym___restrict__] = ACTIONS(3226), + [anon_sym__Atomic] = ACTIONS(3226), + [anon_sym__Noreturn] = ACTIONS(3226), + [anon_sym_noreturn] = ACTIONS(3226), + [anon_sym_mutable] = ACTIONS(3226), + [anon_sym_constinit] = ACTIONS(3226), + [anon_sym_consteval] = ACTIONS(3226), + [anon_sym_signed] = ACTIONS(3226), + [anon_sym_unsigned] = ACTIONS(3226), + [anon_sym_long] = ACTIONS(3226), + [anon_sym_short] = ACTIONS(3226), + [sym_primitive_type] = ACTIONS(3226), + [anon_sym_enum] = ACTIONS(3226), + [anon_sym_class] = ACTIONS(3226), + [anon_sym_struct] = ACTIONS(3226), + [anon_sym_union] = ACTIONS(3226), + [anon_sym_if] = ACTIONS(3226), + [anon_sym_switch] = ACTIONS(3226), + [anon_sym_case] = ACTIONS(3226), + [anon_sym_default] = ACTIONS(3226), + [anon_sym_while] = ACTIONS(3226), + [anon_sym_do] = ACTIONS(3226), + [anon_sym_for] = ACTIONS(3226), + [anon_sym_return] = ACTIONS(3226), + [anon_sym_break] = ACTIONS(3226), + [anon_sym_continue] = ACTIONS(3226), + [anon_sym_goto] = ACTIONS(3226), + [anon_sym_not] = ACTIONS(3226), + [anon_sym_compl] = ACTIONS(3226), + [anon_sym_DASH_DASH] = ACTIONS(3228), + [anon_sym_PLUS_PLUS] = ACTIONS(3228), + [anon_sym_sizeof] = ACTIONS(3226), + [anon_sym_offsetof] = ACTIONS(3226), + [anon_sym__Generic] = ACTIONS(3226), + [anon_sym_asm] = ACTIONS(3226), + [anon_sym___asm__] = ACTIONS(3226), + [sym_number_literal] = ACTIONS(3228), + [anon_sym_L_SQUOTE] = ACTIONS(3228), + [anon_sym_u_SQUOTE] = ACTIONS(3228), + [anon_sym_U_SQUOTE] = ACTIONS(3228), + [anon_sym_u8_SQUOTE] = ACTIONS(3228), + [anon_sym_SQUOTE] = ACTIONS(3228), + [anon_sym_L_DQUOTE] = ACTIONS(3228), + [anon_sym_u_DQUOTE] = ACTIONS(3228), + [anon_sym_U_DQUOTE] = ACTIONS(3228), + [anon_sym_u8_DQUOTE] = ACTIONS(3228), + [anon_sym_DQUOTE] = ACTIONS(3228), + [sym_true] = ACTIONS(3226), + [sym_false] = ACTIONS(3226), + [anon_sym_NULL] = ACTIONS(3226), + [anon_sym_nullptr] = ACTIONS(3226), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3226), + [anon_sym_decltype] = ACTIONS(3226), + [anon_sym_virtual] = ACTIONS(3226), + [anon_sym_explicit] = ACTIONS(3226), + [anon_sym_typename] = ACTIONS(3226), + [anon_sym_template] = ACTIONS(3226), + [anon_sym_operator] = ACTIONS(3226), + [anon_sym_try] = ACTIONS(3226), + [anon_sym_delete] = ACTIONS(3226), + [anon_sym_throw] = ACTIONS(3226), + [anon_sym_namespace] = ACTIONS(3226), + [anon_sym_using] = ACTIONS(3226), + [anon_sym_static_assert] = ACTIONS(3226), + [anon_sym_concept] = ACTIONS(3226), + [anon_sym_co_return] = ACTIONS(3226), + [anon_sym_co_yield] = ACTIONS(3226), + [anon_sym_R_DQUOTE] = ACTIONS(3228), + [anon_sym_LR_DQUOTE] = ACTIONS(3228), + [anon_sym_uR_DQUOTE] = ACTIONS(3228), + [anon_sym_UR_DQUOTE] = ACTIONS(3228), + [anon_sym_u8R_DQUOTE] = ACTIONS(3228), + [anon_sym_co_await] = ACTIONS(3226), + [anon_sym_new] = ACTIONS(3226), + [anon_sym_requires] = ACTIONS(3226), + [sym_this] = ACTIONS(3226), }, [1303] = { - [sym_identifier] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2616), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), + [sym_identifier] = ACTIONS(3376), + [aux_sym_preproc_include_token1] = ACTIONS(3376), + [aux_sym_preproc_def_token1] = ACTIONS(3376), + [aux_sym_preproc_if_token1] = ACTIONS(3376), + [aux_sym_preproc_if_token2] = ACTIONS(3376), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3376), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3376), + [sym_preproc_directive] = ACTIONS(3376), + [anon_sym_LPAREN2] = ACTIONS(3378), + [anon_sym_BANG] = ACTIONS(3378), + [anon_sym_TILDE] = ACTIONS(3378), + [anon_sym_DASH] = ACTIONS(3376), + [anon_sym_PLUS] = ACTIONS(3376), + [anon_sym_STAR] = ACTIONS(3378), + [anon_sym_AMP_AMP] = ACTIONS(3378), + [anon_sym_AMP] = ACTIONS(3376), + [anon_sym_SEMI] = ACTIONS(3378), + [anon_sym_typedef] = ACTIONS(3376), + [anon_sym_extern] = ACTIONS(3376), + [anon_sym___attribute__] = ACTIONS(3376), + [anon_sym_COLON_COLON] = ACTIONS(3378), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3378), + [anon_sym___declspec] = ACTIONS(3376), + [anon_sym___based] = ACTIONS(3376), + [anon_sym___cdecl] = ACTIONS(3376), + [anon_sym___clrcall] = ACTIONS(3376), + [anon_sym___stdcall] = ACTIONS(3376), + [anon_sym___fastcall] = ACTIONS(3376), + [anon_sym___thiscall] = ACTIONS(3376), + [anon_sym___vectorcall] = ACTIONS(3376), + [anon_sym_LBRACE] = ACTIONS(3378), + [anon_sym_LBRACK] = ACTIONS(3376), + [anon_sym_static] = ACTIONS(3376), + [anon_sym_register] = ACTIONS(3376), + [anon_sym_inline] = ACTIONS(3376), + [anon_sym_thread_local] = ACTIONS(3376), + [anon_sym_const] = ACTIONS(3376), + [anon_sym_constexpr] = ACTIONS(3376), + [anon_sym_volatile] = ACTIONS(3376), + [anon_sym_restrict] = ACTIONS(3376), + [anon_sym___restrict__] = ACTIONS(3376), + [anon_sym__Atomic] = ACTIONS(3376), + [anon_sym__Noreturn] = ACTIONS(3376), + [anon_sym_noreturn] = ACTIONS(3376), + [anon_sym_mutable] = ACTIONS(3376), + [anon_sym_constinit] = ACTIONS(3376), + [anon_sym_consteval] = ACTIONS(3376), + [anon_sym_signed] = ACTIONS(3376), + [anon_sym_unsigned] = ACTIONS(3376), + [anon_sym_long] = ACTIONS(3376), + [anon_sym_short] = ACTIONS(3376), + [sym_primitive_type] = ACTIONS(3376), + [anon_sym_enum] = ACTIONS(3376), + [anon_sym_class] = ACTIONS(3376), + [anon_sym_struct] = ACTIONS(3376), + [anon_sym_union] = ACTIONS(3376), + [anon_sym_if] = ACTIONS(3376), + [anon_sym_switch] = ACTIONS(3376), + [anon_sym_case] = ACTIONS(3376), + [anon_sym_default] = ACTIONS(3376), + [anon_sym_while] = ACTIONS(3376), + [anon_sym_do] = ACTIONS(3376), + [anon_sym_for] = ACTIONS(3376), + [anon_sym_return] = ACTIONS(3376), + [anon_sym_break] = ACTIONS(3376), + [anon_sym_continue] = ACTIONS(3376), + [anon_sym_goto] = ACTIONS(3376), + [anon_sym_not] = ACTIONS(3376), + [anon_sym_compl] = ACTIONS(3376), + [anon_sym_DASH_DASH] = ACTIONS(3378), + [anon_sym_PLUS_PLUS] = ACTIONS(3378), + [anon_sym_sizeof] = ACTIONS(3376), + [anon_sym_offsetof] = ACTIONS(3376), + [anon_sym__Generic] = ACTIONS(3376), + [anon_sym_asm] = ACTIONS(3376), + [anon_sym___asm__] = ACTIONS(3376), + [sym_number_literal] = ACTIONS(3378), + [anon_sym_L_SQUOTE] = ACTIONS(3378), + [anon_sym_u_SQUOTE] = ACTIONS(3378), + [anon_sym_U_SQUOTE] = ACTIONS(3378), + [anon_sym_u8_SQUOTE] = ACTIONS(3378), + [anon_sym_SQUOTE] = ACTIONS(3378), + [anon_sym_L_DQUOTE] = ACTIONS(3378), + [anon_sym_u_DQUOTE] = ACTIONS(3378), + [anon_sym_U_DQUOTE] = ACTIONS(3378), + [anon_sym_u8_DQUOTE] = ACTIONS(3378), + [anon_sym_DQUOTE] = ACTIONS(3378), + [sym_true] = ACTIONS(3376), + [sym_false] = ACTIONS(3376), + [anon_sym_NULL] = ACTIONS(3376), + [anon_sym_nullptr] = ACTIONS(3376), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3376), + [anon_sym_decltype] = ACTIONS(3376), + [anon_sym_virtual] = ACTIONS(3376), + [anon_sym_explicit] = ACTIONS(3376), + [anon_sym_typename] = ACTIONS(3376), + [anon_sym_template] = ACTIONS(3376), + [anon_sym_operator] = ACTIONS(3376), + [anon_sym_try] = ACTIONS(3376), + [anon_sym_delete] = ACTIONS(3376), + [anon_sym_throw] = ACTIONS(3376), + [anon_sym_namespace] = ACTIONS(3376), + [anon_sym_using] = ACTIONS(3376), + [anon_sym_static_assert] = ACTIONS(3376), + [anon_sym_concept] = ACTIONS(3376), + [anon_sym_co_return] = ACTIONS(3376), + [anon_sym_co_yield] = ACTIONS(3376), + [anon_sym_R_DQUOTE] = ACTIONS(3378), + [anon_sym_LR_DQUOTE] = ACTIONS(3378), + [anon_sym_uR_DQUOTE] = ACTIONS(3378), + [anon_sym_UR_DQUOTE] = ACTIONS(3378), + [anon_sym_u8R_DQUOTE] = ACTIONS(3378), + [anon_sym_co_await] = ACTIONS(3376), + [anon_sym_new] = ACTIONS(3376), + [anon_sym_requires] = ACTIONS(3376), + [sym_this] = ACTIONS(3376), }, [1304] = { - [sym_identifier] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2616), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), + [sym_identifier] = ACTIONS(3403), + [aux_sym_preproc_include_token1] = ACTIONS(3403), + [aux_sym_preproc_def_token1] = ACTIONS(3403), + [aux_sym_preproc_if_token1] = ACTIONS(3403), + [aux_sym_preproc_if_token2] = ACTIONS(3403), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3403), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3403), + [sym_preproc_directive] = ACTIONS(3403), + [anon_sym_LPAREN2] = ACTIONS(3405), + [anon_sym_BANG] = ACTIONS(3405), + [anon_sym_TILDE] = ACTIONS(3405), + [anon_sym_DASH] = ACTIONS(3403), + [anon_sym_PLUS] = ACTIONS(3403), + [anon_sym_STAR] = ACTIONS(3405), + [anon_sym_AMP_AMP] = ACTIONS(3405), + [anon_sym_AMP] = ACTIONS(3403), + [anon_sym_SEMI] = ACTIONS(3405), + [anon_sym_typedef] = ACTIONS(3403), + [anon_sym_extern] = ACTIONS(3403), + [anon_sym___attribute__] = ACTIONS(3403), + [anon_sym_COLON_COLON] = ACTIONS(3405), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3405), + [anon_sym___declspec] = ACTIONS(3403), + [anon_sym___based] = ACTIONS(3403), + [anon_sym___cdecl] = ACTIONS(3403), + [anon_sym___clrcall] = ACTIONS(3403), + [anon_sym___stdcall] = ACTIONS(3403), + [anon_sym___fastcall] = ACTIONS(3403), + [anon_sym___thiscall] = ACTIONS(3403), + [anon_sym___vectorcall] = ACTIONS(3403), + [anon_sym_LBRACE] = ACTIONS(3405), + [anon_sym_LBRACK] = ACTIONS(3403), + [anon_sym_static] = ACTIONS(3403), + [anon_sym_register] = ACTIONS(3403), + [anon_sym_inline] = ACTIONS(3403), + [anon_sym_thread_local] = ACTIONS(3403), + [anon_sym_const] = ACTIONS(3403), + [anon_sym_constexpr] = ACTIONS(3403), + [anon_sym_volatile] = ACTIONS(3403), + [anon_sym_restrict] = ACTIONS(3403), + [anon_sym___restrict__] = ACTIONS(3403), + [anon_sym__Atomic] = ACTIONS(3403), + [anon_sym__Noreturn] = ACTIONS(3403), + [anon_sym_noreturn] = ACTIONS(3403), + [anon_sym_mutable] = ACTIONS(3403), + [anon_sym_constinit] = ACTIONS(3403), + [anon_sym_consteval] = ACTIONS(3403), + [anon_sym_signed] = ACTIONS(3403), + [anon_sym_unsigned] = ACTIONS(3403), + [anon_sym_long] = ACTIONS(3403), + [anon_sym_short] = ACTIONS(3403), + [sym_primitive_type] = ACTIONS(3403), + [anon_sym_enum] = ACTIONS(3403), + [anon_sym_class] = ACTIONS(3403), + [anon_sym_struct] = ACTIONS(3403), + [anon_sym_union] = ACTIONS(3403), + [anon_sym_if] = ACTIONS(3403), + [anon_sym_switch] = ACTIONS(3403), + [anon_sym_case] = ACTIONS(3403), + [anon_sym_default] = ACTIONS(3403), + [anon_sym_while] = ACTIONS(3403), + [anon_sym_do] = ACTIONS(3403), + [anon_sym_for] = ACTIONS(3403), + [anon_sym_return] = ACTIONS(3403), + [anon_sym_break] = ACTIONS(3403), + [anon_sym_continue] = ACTIONS(3403), + [anon_sym_goto] = ACTIONS(3403), + [anon_sym_not] = ACTIONS(3403), + [anon_sym_compl] = ACTIONS(3403), + [anon_sym_DASH_DASH] = ACTIONS(3405), + [anon_sym_PLUS_PLUS] = ACTIONS(3405), + [anon_sym_sizeof] = ACTIONS(3403), + [anon_sym_offsetof] = ACTIONS(3403), + [anon_sym__Generic] = ACTIONS(3403), + [anon_sym_asm] = ACTIONS(3403), + [anon_sym___asm__] = ACTIONS(3403), + [sym_number_literal] = ACTIONS(3405), + [anon_sym_L_SQUOTE] = ACTIONS(3405), + [anon_sym_u_SQUOTE] = ACTIONS(3405), + [anon_sym_U_SQUOTE] = ACTIONS(3405), + [anon_sym_u8_SQUOTE] = ACTIONS(3405), + [anon_sym_SQUOTE] = ACTIONS(3405), + [anon_sym_L_DQUOTE] = ACTIONS(3405), + [anon_sym_u_DQUOTE] = ACTIONS(3405), + [anon_sym_U_DQUOTE] = ACTIONS(3405), + [anon_sym_u8_DQUOTE] = ACTIONS(3405), + [anon_sym_DQUOTE] = ACTIONS(3405), + [sym_true] = ACTIONS(3403), + [sym_false] = ACTIONS(3403), + [anon_sym_NULL] = ACTIONS(3403), + [anon_sym_nullptr] = ACTIONS(3403), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3403), + [anon_sym_decltype] = ACTIONS(3403), + [anon_sym_virtual] = ACTIONS(3403), + [anon_sym_explicit] = ACTIONS(3403), + [anon_sym_typename] = ACTIONS(3403), + [anon_sym_template] = ACTIONS(3403), + [anon_sym_operator] = ACTIONS(3403), + [anon_sym_try] = ACTIONS(3403), + [anon_sym_delete] = ACTIONS(3403), + [anon_sym_throw] = ACTIONS(3403), + [anon_sym_namespace] = ACTIONS(3403), + [anon_sym_using] = ACTIONS(3403), + [anon_sym_static_assert] = ACTIONS(3403), + [anon_sym_concept] = ACTIONS(3403), + [anon_sym_co_return] = ACTIONS(3403), + [anon_sym_co_yield] = ACTIONS(3403), + [anon_sym_R_DQUOTE] = ACTIONS(3405), + [anon_sym_LR_DQUOTE] = ACTIONS(3405), + [anon_sym_uR_DQUOTE] = ACTIONS(3405), + [anon_sym_UR_DQUOTE] = ACTIONS(3405), + [anon_sym_u8R_DQUOTE] = ACTIONS(3405), + [anon_sym_co_await] = ACTIONS(3403), + [anon_sym_new] = ACTIONS(3403), + [anon_sym_requires] = ACTIONS(3403), + [sym_this] = ACTIONS(3403), }, [1305] = { - [sym_identifier] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2616), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), + [sym_identifier] = ACTIONS(3262), + [aux_sym_preproc_include_token1] = ACTIONS(3262), + [aux_sym_preproc_def_token1] = ACTIONS(3262), + [aux_sym_preproc_if_token1] = ACTIONS(3262), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3262), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3262), + [sym_preproc_directive] = ACTIONS(3262), + [anon_sym_LPAREN2] = ACTIONS(3264), + [anon_sym_BANG] = ACTIONS(3264), + [anon_sym_TILDE] = ACTIONS(3264), + [anon_sym_DASH] = ACTIONS(3262), + [anon_sym_PLUS] = ACTIONS(3262), + [anon_sym_STAR] = ACTIONS(3264), + [anon_sym_AMP_AMP] = ACTIONS(3264), + [anon_sym_AMP] = ACTIONS(3262), + [anon_sym_SEMI] = ACTIONS(3264), + [anon_sym_typedef] = ACTIONS(3262), + [anon_sym_extern] = ACTIONS(3262), + [anon_sym___attribute__] = ACTIONS(3262), + [anon_sym_COLON_COLON] = ACTIONS(3264), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3264), + [anon_sym___declspec] = ACTIONS(3262), + [anon_sym___based] = ACTIONS(3262), + [anon_sym___cdecl] = ACTIONS(3262), + [anon_sym___clrcall] = ACTIONS(3262), + [anon_sym___stdcall] = ACTIONS(3262), + [anon_sym___fastcall] = ACTIONS(3262), + [anon_sym___thiscall] = ACTIONS(3262), + [anon_sym___vectorcall] = ACTIONS(3262), + [anon_sym_LBRACE] = ACTIONS(3264), + [anon_sym_RBRACE] = ACTIONS(3264), + [anon_sym_LBRACK] = ACTIONS(3262), + [anon_sym_static] = ACTIONS(3262), + [anon_sym_register] = ACTIONS(3262), + [anon_sym_inline] = ACTIONS(3262), + [anon_sym_thread_local] = ACTIONS(3262), + [anon_sym_const] = ACTIONS(3262), + [anon_sym_constexpr] = ACTIONS(3262), + [anon_sym_volatile] = ACTIONS(3262), + [anon_sym_restrict] = ACTIONS(3262), + [anon_sym___restrict__] = ACTIONS(3262), + [anon_sym__Atomic] = ACTIONS(3262), + [anon_sym__Noreturn] = ACTIONS(3262), + [anon_sym_noreturn] = ACTIONS(3262), + [anon_sym_mutable] = ACTIONS(3262), + [anon_sym_constinit] = ACTIONS(3262), + [anon_sym_consteval] = ACTIONS(3262), + [anon_sym_signed] = ACTIONS(3262), + [anon_sym_unsigned] = ACTIONS(3262), + [anon_sym_long] = ACTIONS(3262), + [anon_sym_short] = ACTIONS(3262), + [sym_primitive_type] = ACTIONS(3262), + [anon_sym_enum] = ACTIONS(3262), + [anon_sym_class] = ACTIONS(3262), + [anon_sym_struct] = ACTIONS(3262), + [anon_sym_union] = ACTIONS(3262), + [anon_sym_if] = ACTIONS(3262), + [anon_sym_switch] = ACTIONS(3262), + [anon_sym_case] = ACTIONS(3262), + [anon_sym_default] = ACTIONS(3262), + [anon_sym_while] = ACTIONS(3262), + [anon_sym_do] = ACTIONS(3262), + [anon_sym_for] = ACTIONS(3262), + [anon_sym_return] = ACTIONS(3262), + [anon_sym_break] = ACTIONS(3262), + [anon_sym_continue] = ACTIONS(3262), + [anon_sym_goto] = ACTIONS(3262), + [anon_sym_not] = ACTIONS(3262), + [anon_sym_compl] = ACTIONS(3262), + [anon_sym_DASH_DASH] = ACTIONS(3264), + [anon_sym_PLUS_PLUS] = ACTIONS(3264), + [anon_sym_sizeof] = ACTIONS(3262), + [anon_sym_offsetof] = ACTIONS(3262), + [anon_sym__Generic] = ACTIONS(3262), + [anon_sym_asm] = ACTIONS(3262), + [anon_sym___asm__] = ACTIONS(3262), + [sym_number_literal] = ACTIONS(3264), + [anon_sym_L_SQUOTE] = ACTIONS(3264), + [anon_sym_u_SQUOTE] = ACTIONS(3264), + [anon_sym_U_SQUOTE] = ACTIONS(3264), + [anon_sym_u8_SQUOTE] = ACTIONS(3264), + [anon_sym_SQUOTE] = ACTIONS(3264), + [anon_sym_L_DQUOTE] = ACTIONS(3264), + [anon_sym_u_DQUOTE] = ACTIONS(3264), + [anon_sym_U_DQUOTE] = ACTIONS(3264), + [anon_sym_u8_DQUOTE] = ACTIONS(3264), + [anon_sym_DQUOTE] = ACTIONS(3264), + [sym_true] = ACTIONS(3262), + [sym_false] = ACTIONS(3262), + [anon_sym_NULL] = ACTIONS(3262), + [anon_sym_nullptr] = ACTIONS(3262), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3262), + [anon_sym_decltype] = ACTIONS(3262), + [anon_sym_virtual] = ACTIONS(3262), + [anon_sym_explicit] = ACTIONS(3262), + [anon_sym_typename] = ACTIONS(3262), + [anon_sym_template] = ACTIONS(3262), + [anon_sym_operator] = ACTIONS(3262), + [anon_sym_try] = ACTIONS(3262), + [anon_sym_delete] = ACTIONS(3262), + [anon_sym_throw] = ACTIONS(3262), + [anon_sym_namespace] = ACTIONS(3262), + [anon_sym_using] = ACTIONS(3262), + [anon_sym_static_assert] = ACTIONS(3262), + [anon_sym_concept] = ACTIONS(3262), + [anon_sym_co_return] = ACTIONS(3262), + [anon_sym_co_yield] = ACTIONS(3262), + [anon_sym_R_DQUOTE] = ACTIONS(3264), + [anon_sym_LR_DQUOTE] = ACTIONS(3264), + [anon_sym_uR_DQUOTE] = ACTIONS(3264), + [anon_sym_UR_DQUOTE] = ACTIONS(3264), + [anon_sym_u8R_DQUOTE] = ACTIONS(3264), + [anon_sym_co_await] = ACTIONS(3262), + [anon_sym_new] = ACTIONS(3262), + [anon_sym_requires] = ACTIONS(3262), + [sym_this] = ACTIONS(3262), }, [1306] = { - [sym_identifier] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2616), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), + [sym_identifier] = ACTIONS(3258), + [aux_sym_preproc_include_token1] = ACTIONS(3258), + [aux_sym_preproc_def_token1] = ACTIONS(3258), + [aux_sym_preproc_if_token1] = ACTIONS(3258), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3258), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3258), + [sym_preproc_directive] = ACTIONS(3258), + [anon_sym_LPAREN2] = ACTIONS(3260), + [anon_sym_BANG] = ACTIONS(3260), + [anon_sym_TILDE] = ACTIONS(3260), + [anon_sym_DASH] = ACTIONS(3258), + [anon_sym_PLUS] = ACTIONS(3258), + [anon_sym_STAR] = ACTIONS(3260), + [anon_sym_AMP_AMP] = ACTIONS(3260), + [anon_sym_AMP] = ACTIONS(3258), + [anon_sym_SEMI] = ACTIONS(3260), + [anon_sym_typedef] = ACTIONS(3258), + [anon_sym_extern] = ACTIONS(3258), + [anon_sym___attribute__] = ACTIONS(3258), + [anon_sym_COLON_COLON] = ACTIONS(3260), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3260), + [anon_sym___declspec] = ACTIONS(3258), + [anon_sym___based] = ACTIONS(3258), + [anon_sym___cdecl] = ACTIONS(3258), + [anon_sym___clrcall] = ACTIONS(3258), + [anon_sym___stdcall] = ACTIONS(3258), + [anon_sym___fastcall] = ACTIONS(3258), + [anon_sym___thiscall] = ACTIONS(3258), + [anon_sym___vectorcall] = ACTIONS(3258), + [anon_sym_LBRACE] = ACTIONS(3260), + [anon_sym_RBRACE] = ACTIONS(3260), + [anon_sym_LBRACK] = ACTIONS(3258), + [anon_sym_static] = ACTIONS(3258), + [anon_sym_register] = ACTIONS(3258), + [anon_sym_inline] = ACTIONS(3258), + [anon_sym_thread_local] = ACTIONS(3258), + [anon_sym_const] = ACTIONS(3258), + [anon_sym_constexpr] = ACTIONS(3258), + [anon_sym_volatile] = ACTIONS(3258), + [anon_sym_restrict] = ACTIONS(3258), + [anon_sym___restrict__] = ACTIONS(3258), + [anon_sym__Atomic] = ACTIONS(3258), + [anon_sym__Noreturn] = ACTIONS(3258), + [anon_sym_noreturn] = ACTIONS(3258), + [anon_sym_mutable] = ACTIONS(3258), + [anon_sym_constinit] = ACTIONS(3258), + [anon_sym_consteval] = ACTIONS(3258), + [anon_sym_signed] = ACTIONS(3258), + [anon_sym_unsigned] = ACTIONS(3258), + [anon_sym_long] = ACTIONS(3258), + [anon_sym_short] = ACTIONS(3258), + [sym_primitive_type] = ACTIONS(3258), + [anon_sym_enum] = ACTIONS(3258), + [anon_sym_class] = ACTIONS(3258), + [anon_sym_struct] = ACTIONS(3258), + [anon_sym_union] = ACTIONS(3258), + [anon_sym_if] = ACTIONS(3258), + [anon_sym_switch] = ACTIONS(3258), + [anon_sym_case] = ACTIONS(3258), + [anon_sym_default] = ACTIONS(3258), + [anon_sym_while] = ACTIONS(3258), + [anon_sym_do] = ACTIONS(3258), + [anon_sym_for] = ACTIONS(3258), + [anon_sym_return] = ACTIONS(3258), + [anon_sym_break] = ACTIONS(3258), + [anon_sym_continue] = ACTIONS(3258), + [anon_sym_goto] = ACTIONS(3258), + [anon_sym_not] = ACTIONS(3258), + [anon_sym_compl] = ACTIONS(3258), + [anon_sym_DASH_DASH] = ACTIONS(3260), + [anon_sym_PLUS_PLUS] = ACTIONS(3260), + [anon_sym_sizeof] = ACTIONS(3258), + [anon_sym_offsetof] = ACTIONS(3258), + [anon_sym__Generic] = ACTIONS(3258), + [anon_sym_asm] = ACTIONS(3258), + [anon_sym___asm__] = ACTIONS(3258), + [sym_number_literal] = ACTIONS(3260), + [anon_sym_L_SQUOTE] = ACTIONS(3260), + [anon_sym_u_SQUOTE] = ACTIONS(3260), + [anon_sym_U_SQUOTE] = ACTIONS(3260), + [anon_sym_u8_SQUOTE] = ACTIONS(3260), + [anon_sym_SQUOTE] = ACTIONS(3260), + [anon_sym_L_DQUOTE] = ACTIONS(3260), + [anon_sym_u_DQUOTE] = ACTIONS(3260), + [anon_sym_U_DQUOTE] = ACTIONS(3260), + [anon_sym_u8_DQUOTE] = ACTIONS(3260), + [anon_sym_DQUOTE] = ACTIONS(3260), + [sym_true] = ACTIONS(3258), + [sym_false] = ACTIONS(3258), + [anon_sym_NULL] = ACTIONS(3258), + [anon_sym_nullptr] = ACTIONS(3258), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3258), + [anon_sym_decltype] = ACTIONS(3258), + [anon_sym_virtual] = ACTIONS(3258), + [anon_sym_explicit] = ACTIONS(3258), + [anon_sym_typename] = ACTIONS(3258), + [anon_sym_template] = ACTIONS(3258), + [anon_sym_operator] = ACTIONS(3258), + [anon_sym_try] = ACTIONS(3258), + [anon_sym_delete] = ACTIONS(3258), + [anon_sym_throw] = ACTIONS(3258), + [anon_sym_namespace] = ACTIONS(3258), + [anon_sym_using] = ACTIONS(3258), + [anon_sym_static_assert] = ACTIONS(3258), + [anon_sym_concept] = ACTIONS(3258), + [anon_sym_co_return] = ACTIONS(3258), + [anon_sym_co_yield] = ACTIONS(3258), + [anon_sym_R_DQUOTE] = ACTIONS(3260), + [anon_sym_LR_DQUOTE] = ACTIONS(3260), + [anon_sym_uR_DQUOTE] = ACTIONS(3260), + [anon_sym_UR_DQUOTE] = ACTIONS(3260), + [anon_sym_u8R_DQUOTE] = ACTIONS(3260), + [anon_sym_co_await] = ACTIONS(3258), + [anon_sym_new] = ACTIONS(3258), + [anon_sym_requires] = ACTIONS(3258), + [sym_this] = ACTIONS(3258), }, [1307] = { - [sym_identifier] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2616), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), + [sym_identifier] = ACTIONS(3286), + [aux_sym_preproc_include_token1] = ACTIONS(3286), + [aux_sym_preproc_def_token1] = ACTIONS(3286), + [aux_sym_preproc_if_token1] = ACTIONS(3286), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3286), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3286), + [sym_preproc_directive] = ACTIONS(3286), + [anon_sym_LPAREN2] = ACTIONS(3288), + [anon_sym_BANG] = ACTIONS(3288), + [anon_sym_TILDE] = ACTIONS(3288), + [anon_sym_DASH] = ACTIONS(3286), + [anon_sym_PLUS] = ACTIONS(3286), + [anon_sym_STAR] = ACTIONS(3288), + [anon_sym_AMP_AMP] = ACTIONS(3288), + [anon_sym_AMP] = ACTIONS(3286), + [anon_sym_SEMI] = ACTIONS(3288), + [anon_sym_typedef] = ACTIONS(3286), + [anon_sym_extern] = ACTIONS(3286), + [anon_sym___attribute__] = ACTIONS(3286), + [anon_sym_COLON_COLON] = ACTIONS(3288), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3288), + [anon_sym___declspec] = ACTIONS(3286), + [anon_sym___based] = ACTIONS(3286), + [anon_sym___cdecl] = ACTIONS(3286), + [anon_sym___clrcall] = ACTIONS(3286), + [anon_sym___stdcall] = ACTIONS(3286), + [anon_sym___fastcall] = ACTIONS(3286), + [anon_sym___thiscall] = ACTIONS(3286), + [anon_sym___vectorcall] = ACTIONS(3286), + [anon_sym_LBRACE] = ACTIONS(3288), + [anon_sym_RBRACE] = ACTIONS(3288), + [anon_sym_LBRACK] = ACTIONS(3286), + [anon_sym_static] = ACTIONS(3286), + [anon_sym_register] = ACTIONS(3286), + [anon_sym_inline] = ACTIONS(3286), + [anon_sym_thread_local] = ACTIONS(3286), + [anon_sym_const] = ACTIONS(3286), + [anon_sym_constexpr] = ACTIONS(3286), + [anon_sym_volatile] = ACTIONS(3286), + [anon_sym_restrict] = ACTIONS(3286), + [anon_sym___restrict__] = ACTIONS(3286), + [anon_sym__Atomic] = ACTIONS(3286), + [anon_sym__Noreturn] = ACTIONS(3286), + [anon_sym_noreturn] = ACTIONS(3286), + [anon_sym_mutable] = ACTIONS(3286), + [anon_sym_constinit] = ACTIONS(3286), + [anon_sym_consteval] = ACTIONS(3286), + [anon_sym_signed] = ACTIONS(3286), + [anon_sym_unsigned] = ACTIONS(3286), + [anon_sym_long] = ACTIONS(3286), + [anon_sym_short] = ACTIONS(3286), + [sym_primitive_type] = ACTIONS(3286), + [anon_sym_enum] = ACTIONS(3286), + [anon_sym_class] = ACTIONS(3286), + [anon_sym_struct] = ACTIONS(3286), + [anon_sym_union] = ACTIONS(3286), + [anon_sym_if] = ACTIONS(3286), + [anon_sym_switch] = ACTIONS(3286), + [anon_sym_case] = ACTIONS(3286), + [anon_sym_default] = ACTIONS(3286), + [anon_sym_while] = ACTIONS(3286), + [anon_sym_do] = ACTIONS(3286), + [anon_sym_for] = ACTIONS(3286), + [anon_sym_return] = ACTIONS(3286), + [anon_sym_break] = ACTIONS(3286), + [anon_sym_continue] = ACTIONS(3286), + [anon_sym_goto] = ACTIONS(3286), + [anon_sym_not] = ACTIONS(3286), + [anon_sym_compl] = ACTIONS(3286), + [anon_sym_DASH_DASH] = ACTIONS(3288), + [anon_sym_PLUS_PLUS] = ACTIONS(3288), + [anon_sym_sizeof] = ACTIONS(3286), + [anon_sym_offsetof] = ACTIONS(3286), + [anon_sym__Generic] = ACTIONS(3286), + [anon_sym_asm] = ACTIONS(3286), + [anon_sym___asm__] = ACTIONS(3286), + [sym_number_literal] = ACTIONS(3288), + [anon_sym_L_SQUOTE] = ACTIONS(3288), + [anon_sym_u_SQUOTE] = ACTIONS(3288), + [anon_sym_U_SQUOTE] = ACTIONS(3288), + [anon_sym_u8_SQUOTE] = ACTIONS(3288), + [anon_sym_SQUOTE] = ACTIONS(3288), + [anon_sym_L_DQUOTE] = ACTIONS(3288), + [anon_sym_u_DQUOTE] = ACTIONS(3288), + [anon_sym_U_DQUOTE] = ACTIONS(3288), + [anon_sym_u8_DQUOTE] = ACTIONS(3288), + [anon_sym_DQUOTE] = ACTIONS(3288), + [sym_true] = ACTIONS(3286), + [sym_false] = ACTIONS(3286), + [anon_sym_NULL] = ACTIONS(3286), + [anon_sym_nullptr] = ACTIONS(3286), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3286), + [anon_sym_decltype] = ACTIONS(3286), + [anon_sym_virtual] = ACTIONS(3286), + [anon_sym_explicit] = ACTIONS(3286), + [anon_sym_typename] = ACTIONS(3286), + [anon_sym_template] = ACTIONS(3286), + [anon_sym_operator] = ACTIONS(3286), + [anon_sym_try] = ACTIONS(3286), + [anon_sym_delete] = ACTIONS(3286), + [anon_sym_throw] = ACTIONS(3286), + [anon_sym_namespace] = ACTIONS(3286), + [anon_sym_using] = ACTIONS(3286), + [anon_sym_static_assert] = ACTIONS(3286), + [anon_sym_concept] = ACTIONS(3286), + [anon_sym_co_return] = ACTIONS(3286), + [anon_sym_co_yield] = ACTIONS(3286), + [anon_sym_R_DQUOTE] = ACTIONS(3288), + [anon_sym_LR_DQUOTE] = ACTIONS(3288), + [anon_sym_uR_DQUOTE] = ACTIONS(3288), + [anon_sym_UR_DQUOTE] = ACTIONS(3288), + [anon_sym_u8R_DQUOTE] = ACTIONS(3288), + [anon_sym_co_await] = ACTIONS(3286), + [anon_sym_new] = ACTIONS(3286), + [anon_sym_requires] = ACTIONS(3286), + [sym_this] = ACTIONS(3286), }, [1308] = { - [sym_identifier] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2616), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), + [sym_identifier] = ACTIONS(3238), + [aux_sym_preproc_include_token1] = ACTIONS(3238), + [aux_sym_preproc_def_token1] = ACTIONS(3238), + [aux_sym_preproc_if_token1] = ACTIONS(3238), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3238), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3238), + [sym_preproc_directive] = ACTIONS(3238), + [anon_sym_LPAREN2] = ACTIONS(3240), + [anon_sym_BANG] = ACTIONS(3240), + [anon_sym_TILDE] = ACTIONS(3240), + [anon_sym_DASH] = ACTIONS(3238), + [anon_sym_PLUS] = ACTIONS(3238), + [anon_sym_STAR] = ACTIONS(3240), + [anon_sym_AMP_AMP] = ACTIONS(3240), + [anon_sym_AMP] = ACTIONS(3238), + [anon_sym_SEMI] = ACTIONS(3240), + [anon_sym_typedef] = ACTIONS(3238), + [anon_sym_extern] = ACTIONS(3238), + [anon_sym___attribute__] = ACTIONS(3238), + [anon_sym_COLON_COLON] = ACTIONS(3240), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3240), + [anon_sym___declspec] = ACTIONS(3238), + [anon_sym___based] = ACTIONS(3238), + [anon_sym___cdecl] = ACTIONS(3238), + [anon_sym___clrcall] = ACTIONS(3238), + [anon_sym___stdcall] = ACTIONS(3238), + [anon_sym___fastcall] = ACTIONS(3238), + [anon_sym___thiscall] = ACTIONS(3238), + [anon_sym___vectorcall] = ACTIONS(3238), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(3240), + [anon_sym_LBRACK] = ACTIONS(3238), + [anon_sym_static] = ACTIONS(3238), + [anon_sym_register] = ACTIONS(3238), + [anon_sym_inline] = ACTIONS(3238), + [anon_sym_thread_local] = ACTIONS(3238), + [anon_sym_const] = ACTIONS(3238), + [anon_sym_constexpr] = ACTIONS(3238), + [anon_sym_volatile] = ACTIONS(3238), + [anon_sym_restrict] = ACTIONS(3238), + [anon_sym___restrict__] = ACTIONS(3238), + [anon_sym__Atomic] = ACTIONS(3238), + [anon_sym__Noreturn] = ACTIONS(3238), + [anon_sym_noreturn] = ACTIONS(3238), + [anon_sym_mutable] = ACTIONS(3238), + [anon_sym_constinit] = ACTIONS(3238), + [anon_sym_consteval] = ACTIONS(3238), + [anon_sym_signed] = ACTIONS(3238), + [anon_sym_unsigned] = ACTIONS(3238), + [anon_sym_long] = ACTIONS(3238), + [anon_sym_short] = ACTIONS(3238), + [sym_primitive_type] = ACTIONS(3238), + [anon_sym_enum] = ACTIONS(3238), + [anon_sym_class] = ACTIONS(3238), + [anon_sym_struct] = ACTIONS(3238), + [anon_sym_union] = ACTIONS(3238), + [anon_sym_if] = ACTIONS(3238), + [anon_sym_switch] = ACTIONS(3238), + [anon_sym_case] = ACTIONS(3238), + [anon_sym_default] = ACTIONS(3238), + [anon_sym_while] = ACTIONS(3238), + [anon_sym_do] = ACTIONS(3238), + [anon_sym_for] = ACTIONS(3238), + [anon_sym_return] = ACTIONS(3238), + [anon_sym_break] = ACTIONS(3238), + [anon_sym_continue] = ACTIONS(3238), + [anon_sym_goto] = ACTIONS(3238), + [anon_sym_not] = ACTIONS(3238), + [anon_sym_compl] = ACTIONS(3238), + [anon_sym_DASH_DASH] = ACTIONS(3240), + [anon_sym_PLUS_PLUS] = ACTIONS(3240), + [anon_sym_sizeof] = ACTIONS(3238), + [anon_sym_offsetof] = ACTIONS(3238), + [anon_sym__Generic] = ACTIONS(3238), + [anon_sym_asm] = ACTIONS(3238), + [anon_sym___asm__] = ACTIONS(3238), + [sym_number_literal] = ACTIONS(3240), + [anon_sym_L_SQUOTE] = ACTIONS(3240), + [anon_sym_u_SQUOTE] = ACTIONS(3240), + [anon_sym_U_SQUOTE] = ACTIONS(3240), + [anon_sym_u8_SQUOTE] = ACTIONS(3240), + [anon_sym_SQUOTE] = ACTIONS(3240), + [anon_sym_L_DQUOTE] = ACTIONS(3240), + [anon_sym_u_DQUOTE] = ACTIONS(3240), + [anon_sym_U_DQUOTE] = ACTIONS(3240), + [anon_sym_u8_DQUOTE] = ACTIONS(3240), + [anon_sym_DQUOTE] = ACTIONS(3240), + [sym_true] = ACTIONS(3238), + [sym_false] = ACTIONS(3238), + [anon_sym_NULL] = ACTIONS(3238), + [anon_sym_nullptr] = ACTIONS(3238), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3238), + [anon_sym_decltype] = ACTIONS(3238), + [anon_sym_virtual] = ACTIONS(3238), + [anon_sym_explicit] = ACTIONS(3238), + [anon_sym_typename] = ACTIONS(3238), + [anon_sym_template] = ACTIONS(3238), + [anon_sym_operator] = ACTIONS(3238), + [anon_sym_try] = ACTIONS(3238), + [anon_sym_delete] = ACTIONS(3238), + [anon_sym_throw] = ACTIONS(3238), + [anon_sym_namespace] = ACTIONS(3238), + [anon_sym_using] = ACTIONS(3238), + [anon_sym_static_assert] = ACTIONS(3238), + [anon_sym_concept] = ACTIONS(3238), + [anon_sym_co_return] = ACTIONS(3238), + [anon_sym_co_yield] = ACTIONS(3238), + [anon_sym_R_DQUOTE] = ACTIONS(3240), + [anon_sym_LR_DQUOTE] = ACTIONS(3240), + [anon_sym_uR_DQUOTE] = ACTIONS(3240), + [anon_sym_UR_DQUOTE] = ACTIONS(3240), + [anon_sym_u8R_DQUOTE] = ACTIONS(3240), + [anon_sym_co_await] = ACTIONS(3238), + [anon_sym_new] = ACTIONS(3238), + [anon_sym_requires] = ACTIONS(3238), + [sym_this] = ACTIONS(3238), }, [1309] = { - [sym_identifier] = ACTIONS(2614), - [anon_sym_LPAREN2] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2616), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_typedef] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym___attribute__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2616), - [anon_sym___declspec] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_register] = ACTIONS(2614), - [anon_sym_inline] = ACTIONS(2614), - [anon_sym_thread_local] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_volatile] = ACTIONS(2614), - [anon_sym_restrict] = ACTIONS(2614), - [anon_sym__Atomic] = ACTIONS(2614), - [anon_sym_mutable] = ACTIONS(2614), - [anon_sym_constexpr] = ACTIONS(2614), - [anon_sym_constinit] = ACTIONS(2614), - [anon_sym_consteval] = ACTIONS(2614), - [anon_sym_signed] = ACTIONS(2614), - [anon_sym_unsigned] = ACTIONS(2614), - [anon_sym_long] = ACTIONS(2614), - [anon_sym_short] = ACTIONS(2614), - [sym_primitive_type] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_goto] = ACTIONS(2614), - [anon_sym_not] = ACTIONS(2614), - [anon_sym_compl] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_sizeof] = ACTIONS(2614), - [sym_number_literal] = ACTIONS(2616), - [anon_sym_L_SQUOTE] = ACTIONS(2616), - [anon_sym_u_SQUOTE] = ACTIONS(2616), - [anon_sym_U_SQUOTE] = ACTIONS(2616), - [anon_sym_u8_SQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_L_DQUOTE] = ACTIONS(2616), - [anon_sym_u_DQUOTE] = ACTIONS(2616), - [anon_sym_U_DQUOTE] = ACTIONS(2616), - [anon_sym_u8_DQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2614), - [anon_sym_decltype] = ACTIONS(2614), - [anon_sym_virtual] = ACTIONS(2614), - [anon_sym_typename] = ACTIONS(2614), - [anon_sym_template] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_co_return] = ACTIONS(2614), - [anon_sym_co_yield] = ACTIONS(2614), - [anon_sym_R_DQUOTE] = ACTIONS(2616), - [anon_sym_LR_DQUOTE] = ACTIONS(2616), - [anon_sym_uR_DQUOTE] = ACTIONS(2616), - [anon_sym_UR_DQUOTE] = ACTIONS(2616), - [anon_sym_u8R_DQUOTE] = ACTIONS(2616), - [anon_sym_co_await] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_requires] = ACTIONS(2614), - [sym_this] = ACTIONS(2614), - [sym_nullptr] = ACTIONS(2614), + [sym_identifier] = ACTIONS(3246), + [aux_sym_preproc_include_token1] = ACTIONS(3246), + [aux_sym_preproc_def_token1] = ACTIONS(3246), + [aux_sym_preproc_if_token1] = ACTIONS(3246), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3246), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3246), + [sym_preproc_directive] = ACTIONS(3246), + [anon_sym_LPAREN2] = ACTIONS(3248), + [anon_sym_BANG] = ACTIONS(3248), + [anon_sym_TILDE] = ACTIONS(3248), + [anon_sym_DASH] = ACTIONS(3246), + [anon_sym_PLUS] = ACTIONS(3246), + [anon_sym_STAR] = ACTIONS(3248), + [anon_sym_AMP_AMP] = ACTIONS(3248), + [anon_sym_AMP] = ACTIONS(3246), + [anon_sym_SEMI] = ACTIONS(3248), + [anon_sym_typedef] = ACTIONS(3246), + [anon_sym_extern] = ACTIONS(3246), + [anon_sym___attribute__] = ACTIONS(3246), + [anon_sym_COLON_COLON] = ACTIONS(3248), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3248), + [anon_sym___declspec] = ACTIONS(3246), + [anon_sym___based] = ACTIONS(3246), + [anon_sym___cdecl] = ACTIONS(3246), + [anon_sym___clrcall] = ACTIONS(3246), + [anon_sym___stdcall] = ACTIONS(3246), + [anon_sym___fastcall] = ACTIONS(3246), + [anon_sym___thiscall] = ACTIONS(3246), + [anon_sym___vectorcall] = ACTIONS(3246), + [anon_sym_LBRACE] = ACTIONS(3248), + [anon_sym_RBRACE] = ACTIONS(3248), + [anon_sym_LBRACK] = ACTIONS(3246), + [anon_sym_static] = ACTIONS(3246), + [anon_sym_register] = ACTIONS(3246), + [anon_sym_inline] = ACTIONS(3246), + [anon_sym_thread_local] = ACTIONS(3246), + [anon_sym_const] = ACTIONS(3246), + [anon_sym_constexpr] = ACTIONS(3246), + [anon_sym_volatile] = ACTIONS(3246), + [anon_sym_restrict] = ACTIONS(3246), + [anon_sym___restrict__] = ACTIONS(3246), + [anon_sym__Atomic] = ACTIONS(3246), + [anon_sym__Noreturn] = ACTIONS(3246), + [anon_sym_noreturn] = ACTIONS(3246), + [anon_sym_mutable] = ACTIONS(3246), + [anon_sym_constinit] = ACTIONS(3246), + [anon_sym_consteval] = ACTIONS(3246), + [anon_sym_signed] = ACTIONS(3246), + [anon_sym_unsigned] = ACTIONS(3246), + [anon_sym_long] = ACTIONS(3246), + [anon_sym_short] = ACTIONS(3246), + [sym_primitive_type] = ACTIONS(3246), + [anon_sym_enum] = ACTIONS(3246), + [anon_sym_class] = ACTIONS(3246), + [anon_sym_struct] = ACTIONS(3246), + [anon_sym_union] = ACTIONS(3246), + [anon_sym_if] = ACTIONS(3246), + [anon_sym_switch] = ACTIONS(3246), + [anon_sym_case] = ACTIONS(3246), + [anon_sym_default] = ACTIONS(3246), + [anon_sym_while] = ACTIONS(3246), + [anon_sym_do] = ACTIONS(3246), + [anon_sym_for] = ACTIONS(3246), + [anon_sym_return] = ACTIONS(3246), + [anon_sym_break] = ACTIONS(3246), + [anon_sym_continue] = ACTIONS(3246), + [anon_sym_goto] = ACTIONS(3246), + [anon_sym_not] = ACTIONS(3246), + [anon_sym_compl] = ACTIONS(3246), + [anon_sym_DASH_DASH] = ACTIONS(3248), + [anon_sym_PLUS_PLUS] = ACTIONS(3248), + [anon_sym_sizeof] = ACTIONS(3246), + [anon_sym_offsetof] = ACTIONS(3246), + [anon_sym__Generic] = ACTIONS(3246), + [anon_sym_asm] = ACTIONS(3246), + [anon_sym___asm__] = ACTIONS(3246), + [sym_number_literal] = ACTIONS(3248), + [anon_sym_L_SQUOTE] = ACTIONS(3248), + [anon_sym_u_SQUOTE] = ACTIONS(3248), + [anon_sym_U_SQUOTE] = ACTIONS(3248), + [anon_sym_u8_SQUOTE] = ACTIONS(3248), + [anon_sym_SQUOTE] = ACTIONS(3248), + [anon_sym_L_DQUOTE] = ACTIONS(3248), + [anon_sym_u_DQUOTE] = ACTIONS(3248), + [anon_sym_U_DQUOTE] = ACTIONS(3248), + [anon_sym_u8_DQUOTE] = ACTIONS(3248), + [anon_sym_DQUOTE] = ACTIONS(3248), + [sym_true] = ACTIONS(3246), + [sym_false] = ACTIONS(3246), + [anon_sym_NULL] = ACTIONS(3246), + [anon_sym_nullptr] = ACTIONS(3246), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3246), + [anon_sym_decltype] = ACTIONS(3246), + [anon_sym_virtual] = ACTIONS(3246), + [anon_sym_explicit] = ACTIONS(3246), + [anon_sym_typename] = ACTIONS(3246), + [anon_sym_template] = ACTIONS(3246), + [anon_sym_operator] = ACTIONS(3246), + [anon_sym_try] = ACTIONS(3246), + [anon_sym_delete] = ACTIONS(3246), + [anon_sym_throw] = ACTIONS(3246), + [anon_sym_namespace] = ACTIONS(3246), + [anon_sym_using] = ACTIONS(3246), + [anon_sym_static_assert] = ACTIONS(3246), + [anon_sym_concept] = ACTIONS(3246), + [anon_sym_co_return] = ACTIONS(3246), + [anon_sym_co_yield] = ACTIONS(3246), + [anon_sym_R_DQUOTE] = ACTIONS(3248), + [anon_sym_LR_DQUOTE] = ACTIONS(3248), + [anon_sym_uR_DQUOTE] = ACTIONS(3248), + [anon_sym_UR_DQUOTE] = ACTIONS(3248), + [anon_sym_u8R_DQUOTE] = ACTIONS(3248), + [anon_sym_co_await] = ACTIONS(3246), + [anon_sym_new] = ACTIONS(3246), + [anon_sym_requires] = ACTIONS(3246), + [sym_this] = ACTIONS(3246), }, [1310] = { - [sym_identifier] = ACTIONS(2642), - [anon_sym_LPAREN2] = ACTIONS(2644), - [anon_sym_BANG] = ACTIONS(2644), - [anon_sym_TILDE] = ACTIONS(2644), - [anon_sym_DASH] = ACTIONS(2642), - [anon_sym_PLUS] = ACTIONS(2642), - [anon_sym_STAR] = ACTIONS(2644), - [anon_sym_AMP] = ACTIONS(2644), - [anon_sym_SEMI] = ACTIONS(2644), - [anon_sym_typedef] = ACTIONS(2642), - [anon_sym_extern] = ACTIONS(2642), - [anon_sym___attribute__] = ACTIONS(2642), - [anon_sym_COLON_COLON] = ACTIONS(2644), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2644), - [anon_sym___declspec] = ACTIONS(2642), - [anon_sym_LBRACE] = ACTIONS(2644), - [anon_sym_LBRACK] = ACTIONS(2642), - [anon_sym_static] = ACTIONS(2642), - [anon_sym_register] = ACTIONS(2642), - [anon_sym_inline] = ACTIONS(2642), - [anon_sym_thread_local] = ACTIONS(2642), - [anon_sym_const] = ACTIONS(2642), - [anon_sym_volatile] = ACTIONS(2642), - [anon_sym_restrict] = ACTIONS(2642), - [anon_sym__Atomic] = ACTIONS(2642), - [anon_sym_mutable] = ACTIONS(2642), - [anon_sym_constexpr] = ACTIONS(2642), - [anon_sym_constinit] = ACTIONS(2642), - [anon_sym_consteval] = ACTIONS(2642), - [anon_sym_signed] = ACTIONS(2642), - [anon_sym_unsigned] = ACTIONS(2642), - [anon_sym_long] = ACTIONS(2642), - [anon_sym_short] = ACTIONS(2642), - [sym_primitive_type] = ACTIONS(2642), - [anon_sym_enum] = ACTIONS(2642), - [anon_sym_class] = ACTIONS(2642), - [anon_sym_struct] = ACTIONS(2642), - [anon_sym_union] = ACTIONS(2642), - [anon_sym_if] = ACTIONS(2642), - [anon_sym_else] = ACTIONS(2642), - [anon_sym_switch] = ACTIONS(2642), - [anon_sym_while] = ACTIONS(2642), - [anon_sym_do] = ACTIONS(2642), - [anon_sym_for] = ACTIONS(2642), - [anon_sym_return] = ACTIONS(2642), - [anon_sym_break] = ACTIONS(2642), - [anon_sym_continue] = ACTIONS(2642), - [anon_sym_goto] = ACTIONS(2642), - [anon_sym_not] = ACTIONS(2642), - [anon_sym_compl] = ACTIONS(2642), - [anon_sym_DASH_DASH] = ACTIONS(2644), - [anon_sym_PLUS_PLUS] = ACTIONS(2644), - [anon_sym_sizeof] = ACTIONS(2642), - [sym_number_literal] = ACTIONS(2644), - [anon_sym_L_SQUOTE] = ACTIONS(2644), - [anon_sym_u_SQUOTE] = ACTIONS(2644), - [anon_sym_U_SQUOTE] = ACTIONS(2644), - [anon_sym_u8_SQUOTE] = ACTIONS(2644), - [anon_sym_SQUOTE] = ACTIONS(2644), - [anon_sym_L_DQUOTE] = ACTIONS(2644), - [anon_sym_u_DQUOTE] = ACTIONS(2644), - [anon_sym_U_DQUOTE] = ACTIONS(2644), - [anon_sym_u8_DQUOTE] = ACTIONS(2644), - [anon_sym_DQUOTE] = ACTIONS(2644), - [sym_true] = ACTIONS(2642), - [sym_false] = ACTIONS(2642), - [sym_null] = ACTIONS(2642), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2642), - [anon_sym_decltype] = ACTIONS(2642), - [anon_sym_virtual] = ACTIONS(2642), - [anon_sym_typename] = ACTIONS(2642), - [anon_sym_template] = ACTIONS(2642), - [anon_sym_try] = ACTIONS(2642), - [anon_sym_delete] = ACTIONS(2642), - [anon_sym_throw] = ACTIONS(2642), - [anon_sym_co_return] = ACTIONS(2642), - [anon_sym_co_yield] = ACTIONS(2642), - [anon_sym_R_DQUOTE] = ACTIONS(2644), - [anon_sym_LR_DQUOTE] = ACTIONS(2644), - [anon_sym_uR_DQUOTE] = ACTIONS(2644), - [anon_sym_UR_DQUOTE] = ACTIONS(2644), - [anon_sym_u8R_DQUOTE] = ACTIONS(2644), - [anon_sym_co_await] = ACTIONS(2642), - [anon_sym_new] = ACTIONS(2642), - [anon_sym_requires] = ACTIONS(2642), - [sym_this] = ACTIONS(2642), - [sym_nullptr] = ACTIONS(2642), + [sym_identifier] = ACTIONS(3234), + [aux_sym_preproc_include_token1] = ACTIONS(3234), + [aux_sym_preproc_def_token1] = ACTIONS(3234), + [aux_sym_preproc_if_token1] = ACTIONS(3234), + [aux_sym_preproc_if_token2] = ACTIONS(3234), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3234), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3234), + [sym_preproc_directive] = ACTIONS(3234), + [anon_sym_LPAREN2] = ACTIONS(3236), + [anon_sym_BANG] = ACTIONS(3236), + [anon_sym_TILDE] = ACTIONS(3236), + [anon_sym_DASH] = ACTIONS(3234), + [anon_sym_PLUS] = ACTIONS(3234), + [anon_sym_STAR] = ACTIONS(3236), + [anon_sym_AMP_AMP] = ACTIONS(3236), + [anon_sym_AMP] = ACTIONS(3234), + [anon_sym_SEMI] = ACTIONS(3236), + [anon_sym_typedef] = ACTIONS(3234), + [anon_sym_extern] = ACTIONS(3234), + [anon_sym___attribute__] = ACTIONS(3234), + [anon_sym_COLON_COLON] = ACTIONS(3236), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3236), + [anon_sym___declspec] = ACTIONS(3234), + [anon_sym___based] = ACTIONS(3234), + [anon_sym___cdecl] = ACTIONS(3234), + [anon_sym___clrcall] = ACTIONS(3234), + [anon_sym___stdcall] = ACTIONS(3234), + [anon_sym___fastcall] = ACTIONS(3234), + [anon_sym___thiscall] = ACTIONS(3234), + [anon_sym___vectorcall] = ACTIONS(3234), + [anon_sym_LBRACE] = ACTIONS(3236), + [anon_sym_LBRACK] = ACTIONS(3234), + [anon_sym_static] = ACTIONS(3234), + [anon_sym_register] = ACTIONS(3234), + [anon_sym_inline] = ACTIONS(3234), + [anon_sym_thread_local] = ACTIONS(3234), + [anon_sym_const] = ACTIONS(3234), + [anon_sym_constexpr] = ACTIONS(3234), + [anon_sym_volatile] = ACTIONS(3234), + [anon_sym_restrict] = ACTIONS(3234), + [anon_sym___restrict__] = ACTIONS(3234), + [anon_sym__Atomic] = ACTIONS(3234), + [anon_sym__Noreturn] = ACTIONS(3234), + [anon_sym_noreturn] = ACTIONS(3234), + [anon_sym_mutable] = ACTIONS(3234), + [anon_sym_constinit] = ACTIONS(3234), + [anon_sym_consteval] = ACTIONS(3234), + [anon_sym_signed] = ACTIONS(3234), + [anon_sym_unsigned] = ACTIONS(3234), + [anon_sym_long] = ACTIONS(3234), + [anon_sym_short] = ACTIONS(3234), + [sym_primitive_type] = ACTIONS(3234), + [anon_sym_enum] = ACTIONS(3234), + [anon_sym_class] = ACTIONS(3234), + [anon_sym_struct] = ACTIONS(3234), + [anon_sym_union] = ACTIONS(3234), + [anon_sym_if] = ACTIONS(3234), + [anon_sym_switch] = ACTIONS(3234), + [anon_sym_case] = ACTIONS(3234), + [anon_sym_default] = ACTIONS(3234), + [anon_sym_while] = ACTIONS(3234), + [anon_sym_do] = ACTIONS(3234), + [anon_sym_for] = ACTIONS(3234), + [anon_sym_return] = ACTIONS(3234), + [anon_sym_break] = ACTIONS(3234), + [anon_sym_continue] = ACTIONS(3234), + [anon_sym_goto] = ACTIONS(3234), + [anon_sym_not] = ACTIONS(3234), + [anon_sym_compl] = ACTIONS(3234), + [anon_sym_DASH_DASH] = ACTIONS(3236), + [anon_sym_PLUS_PLUS] = ACTIONS(3236), + [anon_sym_sizeof] = ACTIONS(3234), + [anon_sym_offsetof] = ACTIONS(3234), + [anon_sym__Generic] = ACTIONS(3234), + [anon_sym_asm] = ACTIONS(3234), + [anon_sym___asm__] = ACTIONS(3234), + [sym_number_literal] = ACTIONS(3236), + [anon_sym_L_SQUOTE] = ACTIONS(3236), + [anon_sym_u_SQUOTE] = ACTIONS(3236), + [anon_sym_U_SQUOTE] = ACTIONS(3236), + [anon_sym_u8_SQUOTE] = ACTIONS(3236), + [anon_sym_SQUOTE] = ACTIONS(3236), + [anon_sym_L_DQUOTE] = ACTIONS(3236), + [anon_sym_u_DQUOTE] = ACTIONS(3236), + [anon_sym_U_DQUOTE] = ACTIONS(3236), + [anon_sym_u8_DQUOTE] = ACTIONS(3236), + [anon_sym_DQUOTE] = ACTIONS(3236), + [sym_true] = ACTIONS(3234), + [sym_false] = ACTIONS(3234), + [anon_sym_NULL] = ACTIONS(3234), + [anon_sym_nullptr] = ACTIONS(3234), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3234), + [anon_sym_decltype] = ACTIONS(3234), + [anon_sym_virtual] = ACTIONS(3234), + [anon_sym_explicit] = ACTIONS(3234), + [anon_sym_typename] = ACTIONS(3234), + [anon_sym_template] = ACTIONS(3234), + [anon_sym_operator] = ACTIONS(3234), + [anon_sym_try] = ACTIONS(3234), + [anon_sym_delete] = ACTIONS(3234), + [anon_sym_throw] = ACTIONS(3234), + [anon_sym_namespace] = ACTIONS(3234), + [anon_sym_using] = ACTIONS(3234), + [anon_sym_static_assert] = ACTIONS(3234), + [anon_sym_concept] = ACTIONS(3234), + [anon_sym_co_return] = ACTIONS(3234), + [anon_sym_co_yield] = ACTIONS(3234), + [anon_sym_R_DQUOTE] = ACTIONS(3236), + [anon_sym_LR_DQUOTE] = ACTIONS(3236), + [anon_sym_uR_DQUOTE] = ACTIONS(3236), + [anon_sym_UR_DQUOTE] = ACTIONS(3236), + [anon_sym_u8R_DQUOTE] = ACTIONS(3236), + [anon_sym_co_await] = ACTIONS(3234), + [anon_sym_new] = ACTIONS(3234), + [anon_sym_requires] = ACTIONS(3234), + [sym_this] = ACTIONS(3234), }, [1311] = { - [sym_identifier] = ACTIONS(2638), - [anon_sym_LPAREN2] = ACTIONS(2640), - [anon_sym_BANG] = ACTIONS(2640), - [anon_sym_TILDE] = ACTIONS(2640), - [anon_sym_DASH] = ACTIONS(2638), - [anon_sym_PLUS] = ACTIONS(2638), - [anon_sym_STAR] = ACTIONS(2640), - [anon_sym_AMP] = ACTIONS(2640), - [anon_sym_SEMI] = ACTIONS(2640), - [anon_sym_typedef] = ACTIONS(2638), - [anon_sym_extern] = ACTIONS(2638), - [anon_sym___attribute__] = ACTIONS(2638), - [anon_sym_COLON_COLON] = ACTIONS(2640), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2640), - [anon_sym___declspec] = ACTIONS(2638), - [anon_sym_LBRACE] = ACTIONS(2640), - [anon_sym_LBRACK] = ACTIONS(2638), - [anon_sym_static] = ACTIONS(2638), - [anon_sym_register] = ACTIONS(2638), - [anon_sym_inline] = ACTIONS(2638), - [anon_sym_thread_local] = ACTIONS(2638), - [anon_sym_const] = ACTIONS(2638), - [anon_sym_volatile] = ACTIONS(2638), - [anon_sym_restrict] = ACTIONS(2638), - [anon_sym__Atomic] = ACTIONS(2638), - [anon_sym_mutable] = ACTIONS(2638), - [anon_sym_constexpr] = ACTIONS(2638), - [anon_sym_constinit] = ACTIONS(2638), - [anon_sym_consteval] = ACTIONS(2638), - [anon_sym_signed] = ACTIONS(2638), - [anon_sym_unsigned] = ACTIONS(2638), - [anon_sym_long] = ACTIONS(2638), - [anon_sym_short] = ACTIONS(2638), - [sym_primitive_type] = ACTIONS(2638), - [anon_sym_enum] = ACTIONS(2638), - [anon_sym_class] = ACTIONS(2638), - [anon_sym_struct] = ACTIONS(2638), - [anon_sym_union] = ACTIONS(2638), - [anon_sym_if] = ACTIONS(2638), - [anon_sym_else] = ACTIONS(2638), - [anon_sym_switch] = ACTIONS(2638), - [anon_sym_while] = ACTIONS(2638), - [anon_sym_do] = ACTIONS(2638), - [anon_sym_for] = ACTIONS(2638), - [anon_sym_return] = ACTIONS(2638), - [anon_sym_break] = ACTIONS(2638), - [anon_sym_continue] = ACTIONS(2638), - [anon_sym_goto] = ACTIONS(2638), - [anon_sym_not] = ACTIONS(2638), - [anon_sym_compl] = ACTIONS(2638), - [anon_sym_DASH_DASH] = ACTIONS(2640), - [anon_sym_PLUS_PLUS] = ACTIONS(2640), - [anon_sym_sizeof] = ACTIONS(2638), - [sym_number_literal] = ACTIONS(2640), - [anon_sym_L_SQUOTE] = ACTIONS(2640), - [anon_sym_u_SQUOTE] = ACTIONS(2640), - [anon_sym_U_SQUOTE] = ACTIONS(2640), - [anon_sym_u8_SQUOTE] = ACTIONS(2640), - [anon_sym_SQUOTE] = ACTIONS(2640), - [anon_sym_L_DQUOTE] = ACTIONS(2640), - [anon_sym_u_DQUOTE] = ACTIONS(2640), - [anon_sym_U_DQUOTE] = ACTIONS(2640), - [anon_sym_u8_DQUOTE] = ACTIONS(2640), - [anon_sym_DQUOTE] = ACTIONS(2640), - [sym_true] = ACTIONS(2638), - [sym_false] = ACTIONS(2638), - [sym_null] = ACTIONS(2638), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2638), - [anon_sym_decltype] = ACTIONS(2638), - [anon_sym_virtual] = ACTIONS(2638), - [anon_sym_typename] = ACTIONS(2638), - [anon_sym_template] = ACTIONS(2638), - [anon_sym_try] = ACTIONS(2638), - [anon_sym_delete] = ACTIONS(2638), - [anon_sym_throw] = ACTIONS(2638), - [anon_sym_co_return] = ACTIONS(2638), - [anon_sym_co_yield] = ACTIONS(2638), - [anon_sym_R_DQUOTE] = ACTIONS(2640), - [anon_sym_LR_DQUOTE] = ACTIONS(2640), - [anon_sym_uR_DQUOTE] = ACTIONS(2640), - [anon_sym_UR_DQUOTE] = ACTIONS(2640), - [anon_sym_u8R_DQUOTE] = ACTIONS(2640), - [anon_sym_co_await] = ACTIONS(2638), - [anon_sym_new] = ACTIONS(2638), - [anon_sym_requires] = ACTIONS(2638), - [sym_this] = ACTIONS(2638), - [sym_nullptr] = ACTIONS(2638), + [sym_identifier] = ACTIONS(3415), + [aux_sym_preproc_include_token1] = ACTIONS(3415), + [aux_sym_preproc_def_token1] = ACTIONS(3415), + [aux_sym_preproc_if_token1] = ACTIONS(3415), + [aux_sym_preproc_if_token2] = ACTIONS(3415), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3415), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3415), + [sym_preproc_directive] = ACTIONS(3415), + [anon_sym_LPAREN2] = ACTIONS(3417), + [anon_sym_BANG] = ACTIONS(3417), + [anon_sym_TILDE] = ACTIONS(3417), + [anon_sym_DASH] = ACTIONS(3415), + [anon_sym_PLUS] = ACTIONS(3415), + [anon_sym_STAR] = ACTIONS(3417), + [anon_sym_AMP_AMP] = ACTIONS(3417), + [anon_sym_AMP] = ACTIONS(3415), + [anon_sym_SEMI] = ACTIONS(3417), + [anon_sym_typedef] = ACTIONS(3415), + [anon_sym_extern] = ACTIONS(3415), + [anon_sym___attribute__] = ACTIONS(3415), + [anon_sym_COLON_COLON] = ACTIONS(3417), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3417), + [anon_sym___declspec] = ACTIONS(3415), + [anon_sym___based] = ACTIONS(3415), + [anon_sym___cdecl] = ACTIONS(3415), + [anon_sym___clrcall] = ACTIONS(3415), + [anon_sym___stdcall] = ACTIONS(3415), + [anon_sym___fastcall] = ACTIONS(3415), + [anon_sym___thiscall] = ACTIONS(3415), + [anon_sym___vectorcall] = ACTIONS(3415), + [anon_sym_LBRACE] = ACTIONS(3417), + [anon_sym_LBRACK] = ACTIONS(3415), + [anon_sym_static] = ACTIONS(3415), + [anon_sym_register] = ACTIONS(3415), + [anon_sym_inline] = ACTIONS(3415), + [anon_sym_thread_local] = ACTIONS(3415), + [anon_sym_const] = ACTIONS(3415), + [anon_sym_constexpr] = ACTIONS(3415), + [anon_sym_volatile] = ACTIONS(3415), + [anon_sym_restrict] = ACTIONS(3415), + [anon_sym___restrict__] = ACTIONS(3415), + [anon_sym__Atomic] = ACTIONS(3415), + [anon_sym__Noreturn] = ACTIONS(3415), + [anon_sym_noreturn] = ACTIONS(3415), + [anon_sym_mutable] = ACTIONS(3415), + [anon_sym_constinit] = ACTIONS(3415), + [anon_sym_consteval] = ACTIONS(3415), + [anon_sym_signed] = ACTIONS(3415), + [anon_sym_unsigned] = ACTIONS(3415), + [anon_sym_long] = ACTIONS(3415), + [anon_sym_short] = ACTIONS(3415), + [sym_primitive_type] = ACTIONS(3415), + [anon_sym_enum] = ACTIONS(3415), + [anon_sym_class] = ACTIONS(3415), + [anon_sym_struct] = ACTIONS(3415), + [anon_sym_union] = ACTIONS(3415), + [anon_sym_if] = ACTIONS(3415), + [anon_sym_switch] = ACTIONS(3415), + [anon_sym_case] = ACTIONS(3415), + [anon_sym_default] = ACTIONS(3415), + [anon_sym_while] = ACTIONS(3415), + [anon_sym_do] = ACTIONS(3415), + [anon_sym_for] = ACTIONS(3415), + [anon_sym_return] = ACTIONS(3415), + [anon_sym_break] = ACTIONS(3415), + [anon_sym_continue] = ACTIONS(3415), + [anon_sym_goto] = ACTIONS(3415), + [anon_sym_not] = ACTIONS(3415), + [anon_sym_compl] = ACTIONS(3415), + [anon_sym_DASH_DASH] = ACTIONS(3417), + [anon_sym_PLUS_PLUS] = ACTIONS(3417), + [anon_sym_sizeof] = ACTIONS(3415), + [anon_sym_offsetof] = ACTIONS(3415), + [anon_sym__Generic] = ACTIONS(3415), + [anon_sym_asm] = ACTIONS(3415), + [anon_sym___asm__] = ACTIONS(3415), + [sym_number_literal] = ACTIONS(3417), + [anon_sym_L_SQUOTE] = ACTIONS(3417), + [anon_sym_u_SQUOTE] = ACTIONS(3417), + [anon_sym_U_SQUOTE] = ACTIONS(3417), + [anon_sym_u8_SQUOTE] = ACTIONS(3417), + [anon_sym_SQUOTE] = ACTIONS(3417), + [anon_sym_L_DQUOTE] = ACTIONS(3417), + [anon_sym_u_DQUOTE] = ACTIONS(3417), + [anon_sym_U_DQUOTE] = ACTIONS(3417), + [anon_sym_u8_DQUOTE] = ACTIONS(3417), + [anon_sym_DQUOTE] = ACTIONS(3417), + [sym_true] = ACTIONS(3415), + [sym_false] = ACTIONS(3415), + [anon_sym_NULL] = ACTIONS(3415), + [anon_sym_nullptr] = ACTIONS(3415), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3415), + [anon_sym_decltype] = ACTIONS(3415), + [anon_sym_virtual] = ACTIONS(3415), + [anon_sym_explicit] = ACTIONS(3415), + [anon_sym_typename] = ACTIONS(3415), + [anon_sym_template] = ACTIONS(3415), + [anon_sym_operator] = ACTIONS(3415), + [anon_sym_try] = ACTIONS(3415), + [anon_sym_delete] = ACTIONS(3415), + [anon_sym_throw] = ACTIONS(3415), + [anon_sym_namespace] = ACTIONS(3415), + [anon_sym_using] = ACTIONS(3415), + [anon_sym_static_assert] = ACTIONS(3415), + [anon_sym_concept] = ACTIONS(3415), + [anon_sym_co_return] = ACTIONS(3415), + [anon_sym_co_yield] = ACTIONS(3415), + [anon_sym_R_DQUOTE] = ACTIONS(3417), + [anon_sym_LR_DQUOTE] = ACTIONS(3417), + [anon_sym_uR_DQUOTE] = ACTIONS(3417), + [anon_sym_UR_DQUOTE] = ACTIONS(3417), + [anon_sym_u8R_DQUOTE] = ACTIONS(3417), + [anon_sym_co_await] = ACTIONS(3415), + [anon_sym_new] = ACTIONS(3415), + [anon_sym_requires] = ACTIONS(3415), + [sym_this] = ACTIONS(3415), }, [1312] = { - [sym_identifier] = 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_AMP] = ACTIONS(2604), - [anon_sym_SEMI] = ACTIONS(2604), - [anon_sym_typedef] = ACTIONS(2602), - [anon_sym_extern] = ACTIONS(2602), - [anon_sym___attribute__] = ACTIONS(2602), - [anon_sym_COLON_COLON] = ACTIONS(2604), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2604), - [anon_sym___declspec] = ACTIONS(2602), - [anon_sym_LBRACE] = ACTIONS(2604), - [anon_sym_LBRACK] = ACTIONS(2602), - [anon_sym_static] = ACTIONS(2602), - [anon_sym_register] = ACTIONS(2602), - [anon_sym_inline] = ACTIONS(2602), - [anon_sym_thread_local] = ACTIONS(2602), - [anon_sym_const] = ACTIONS(2602), - [anon_sym_volatile] = ACTIONS(2602), - [anon_sym_restrict] = ACTIONS(2602), - [anon_sym__Atomic] = ACTIONS(2602), - [anon_sym_mutable] = ACTIONS(2602), - [anon_sym_constexpr] = ACTIONS(2602), - [anon_sym_constinit] = ACTIONS(2602), - [anon_sym_consteval] = ACTIONS(2602), - [anon_sym_signed] = ACTIONS(2602), - [anon_sym_unsigned] = ACTIONS(2602), - [anon_sym_long] = ACTIONS(2602), - [anon_sym_short] = ACTIONS(2602), - [sym_primitive_type] = ACTIONS(2602), - [anon_sym_enum] = ACTIONS(2602), - [anon_sym_class] = ACTIONS(2602), - [anon_sym_struct] = ACTIONS(2602), - [anon_sym_union] = ACTIONS(2602), - [anon_sym_if] = ACTIONS(2602), - [anon_sym_else] = ACTIONS(2602), - [anon_sym_switch] = ACTIONS(2602), - [anon_sym_while] = ACTIONS(2602), - [anon_sym_do] = ACTIONS(2602), - [anon_sym_for] = ACTIONS(2602), - [anon_sym_return] = ACTIONS(2602), - [anon_sym_break] = ACTIONS(2602), - [anon_sym_continue] = ACTIONS(2602), - [anon_sym_goto] = ACTIONS(2602), - [anon_sym_not] = ACTIONS(2602), - [anon_sym_compl] = ACTIONS(2602), - [anon_sym_DASH_DASH] = ACTIONS(2604), - [anon_sym_PLUS_PLUS] = ACTIONS(2604), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2604), - [anon_sym_u_DQUOTE] = ACTIONS(2604), - [anon_sym_U_DQUOTE] = ACTIONS(2604), - [anon_sym_u8_DQUOTE] = ACTIONS(2604), - [anon_sym_DQUOTE] = ACTIONS(2604), - [sym_true] = ACTIONS(2602), - [sym_false] = ACTIONS(2602), - [sym_null] = ACTIONS(2602), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2602), - [anon_sym_decltype] = ACTIONS(2602), - [anon_sym_virtual] = ACTIONS(2602), - [anon_sym_typename] = ACTIONS(2602), - [anon_sym_template] = ACTIONS(2602), - [anon_sym_try] = ACTIONS(2602), - [anon_sym_delete] = ACTIONS(2602), - [anon_sym_throw] = ACTIONS(2602), - [anon_sym_co_return] = ACTIONS(2602), - [anon_sym_co_yield] = ACTIONS(2602), - [anon_sym_R_DQUOTE] = ACTIONS(2604), - [anon_sym_LR_DQUOTE] = ACTIONS(2604), - [anon_sym_uR_DQUOTE] = ACTIONS(2604), - [anon_sym_UR_DQUOTE] = ACTIONS(2604), - [anon_sym_u8R_DQUOTE] = ACTIONS(2604), - [anon_sym_co_await] = ACTIONS(2602), - [anon_sym_new] = ACTIONS(2602), - [anon_sym_requires] = ACTIONS(2602), - [sym_this] = ACTIONS(2602), - [sym_nullptr] = ACTIONS(2602), + [sym_identifier] = ACTIONS(3425), + [aux_sym_preproc_include_token1] = ACTIONS(3425), + [aux_sym_preproc_def_token1] = ACTIONS(3425), + [aux_sym_preproc_if_token1] = ACTIONS(3425), + [aux_sym_preproc_if_token2] = ACTIONS(3425), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3425), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3425), + [sym_preproc_directive] = ACTIONS(3425), + [anon_sym_LPAREN2] = ACTIONS(3427), + [anon_sym_BANG] = ACTIONS(3427), + [anon_sym_TILDE] = ACTIONS(3427), + [anon_sym_DASH] = ACTIONS(3425), + [anon_sym_PLUS] = ACTIONS(3425), + [anon_sym_STAR] = ACTIONS(3427), + [anon_sym_AMP_AMP] = ACTIONS(3427), + [anon_sym_AMP] = ACTIONS(3425), + [anon_sym_SEMI] = ACTIONS(3427), + [anon_sym_typedef] = ACTIONS(3425), + [anon_sym_extern] = ACTIONS(3425), + [anon_sym___attribute__] = ACTIONS(3425), + [anon_sym_COLON_COLON] = ACTIONS(3427), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3427), + [anon_sym___declspec] = ACTIONS(3425), + [anon_sym___based] = ACTIONS(3425), + [anon_sym___cdecl] = ACTIONS(3425), + [anon_sym___clrcall] = ACTIONS(3425), + [anon_sym___stdcall] = ACTIONS(3425), + [anon_sym___fastcall] = ACTIONS(3425), + [anon_sym___thiscall] = ACTIONS(3425), + [anon_sym___vectorcall] = ACTIONS(3425), + [anon_sym_LBRACE] = ACTIONS(3427), + [anon_sym_LBRACK] = ACTIONS(3425), + [anon_sym_static] = ACTIONS(3425), + [anon_sym_register] = ACTIONS(3425), + [anon_sym_inline] = ACTIONS(3425), + [anon_sym_thread_local] = ACTIONS(3425), + [anon_sym_const] = ACTIONS(3425), + [anon_sym_constexpr] = ACTIONS(3425), + [anon_sym_volatile] = ACTIONS(3425), + [anon_sym_restrict] = ACTIONS(3425), + [anon_sym___restrict__] = ACTIONS(3425), + [anon_sym__Atomic] = ACTIONS(3425), + [anon_sym__Noreturn] = ACTIONS(3425), + [anon_sym_noreturn] = ACTIONS(3425), + [anon_sym_mutable] = ACTIONS(3425), + [anon_sym_constinit] = ACTIONS(3425), + [anon_sym_consteval] = ACTIONS(3425), + [anon_sym_signed] = ACTIONS(3425), + [anon_sym_unsigned] = ACTIONS(3425), + [anon_sym_long] = ACTIONS(3425), + [anon_sym_short] = ACTIONS(3425), + [sym_primitive_type] = ACTIONS(3425), + [anon_sym_enum] = ACTIONS(3425), + [anon_sym_class] = ACTIONS(3425), + [anon_sym_struct] = ACTIONS(3425), + [anon_sym_union] = ACTIONS(3425), + [anon_sym_if] = ACTIONS(3425), + [anon_sym_switch] = ACTIONS(3425), + [anon_sym_case] = ACTIONS(3425), + [anon_sym_default] = ACTIONS(3425), + [anon_sym_while] = ACTIONS(3425), + [anon_sym_do] = ACTIONS(3425), + [anon_sym_for] = ACTIONS(3425), + [anon_sym_return] = ACTIONS(3425), + [anon_sym_break] = ACTIONS(3425), + [anon_sym_continue] = ACTIONS(3425), + [anon_sym_goto] = ACTIONS(3425), + [anon_sym_not] = ACTIONS(3425), + [anon_sym_compl] = ACTIONS(3425), + [anon_sym_DASH_DASH] = ACTIONS(3427), + [anon_sym_PLUS_PLUS] = ACTIONS(3427), + [anon_sym_sizeof] = ACTIONS(3425), + [anon_sym_offsetof] = ACTIONS(3425), + [anon_sym__Generic] = ACTIONS(3425), + [anon_sym_asm] = ACTIONS(3425), + [anon_sym___asm__] = ACTIONS(3425), + [sym_number_literal] = ACTIONS(3427), + [anon_sym_L_SQUOTE] = ACTIONS(3427), + [anon_sym_u_SQUOTE] = ACTIONS(3427), + [anon_sym_U_SQUOTE] = ACTIONS(3427), + [anon_sym_u8_SQUOTE] = ACTIONS(3427), + [anon_sym_SQUOTE] = ACTIONS(3427), + [anon_sym_L_DQUOTE] = ACTIONS(3427), + [anon_sym_u_DQUOTE] = ACTIONS(3427), + [anon_sym_U_DQUOTE] = ACTIONS(3427), + [anon_sym_u8_DQUOTE] = ACTIONS(3427), + [anon_sym_DQUOTE] = ACTIONS(3427), + [sym_true] = ACTIONS(3425), + [sym_false] = ACTIONS(3425), + [anon_sym_NULL] = ACTIONS(3425), + [anon_sym_nullptr] = ACTIONS(3425), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3425), + [anon_sym_decltype] = ACTIONS(3425), + [anon_sym_virtual] = ACTIONS(3425), + [anon_sym_explicit] = ACTIONS(3425), + [anon_sym_typename] = ACTIONS(3425), + [anon_sym_template] = ACTIONS(3425), + [anon_sym_operator] = ACTIONS(3425), + [anon_sym_try] = ACTIONS(3425), + [anon_sym_delete] = ACTIONS(3425), + [anon_sym_throw] = ACTIONS(3425), + [anon_sym_namespace] = ACTIONS(3425), + [anon_sym_using] = ACTIONS(3425), + [anon_sym_static_assert] = ACTIONS(3425), + [anon_sym_concept] = ACTIONS(3425), + [anon_sym_co_return] = ACTIONS(3425), + [anon_sym_co_yield] = ACTIONS(3425), + [anon_sym_R_DQUOTE] = ACTIONS(3427), + [anon_sym_LR_DQUOTE] = ACTIONS(3427), + [anon_sym_uR_DQUOTE] = ACTIONS(3427), + [anon_sym_UR_DQUOTE] = ACTIONS(3427), + [anon_sym_u8R_DQUOTE] = ACTIONS(3427), + [anon_sym_co_await] = ACTIONS(3425), + [anon_sym_new] = ACTIONS(3425), + [anon_sym_requires] = ACTIONS(3425), + [sym_this] = ACTIONS(3425), }, [1313] = { - [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_AMP] = ACTIONS(2464), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym_LBRACE] = ACTIONS(2464), - [anon_sym_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_identifier] = ACTIONS(3262), + [aux_sym_preproc_include_token1] = ACTIONS(3262), + [aux_sym_preproc_def_token1] = ACTIONS(3262), + [aux_sym_preproc_if_token1] = ACTIONS(3262), + [aux_sym_preproc_if_token2] = ACTIONS(3262), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3262), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3262), + [sym_preproc_directive] = ACTIONS(3262), + [anon_sym_LPAREN2] = ACTIONS(3264), + [anon_sym_BANG] = ACTIONS(3264), + [anon_sym_TILDE] = ACTIONS(3264), + [anon_sym_DASH] = ACTIONS(3262), + [anon_sym_PLUS] = ACTIONS(3262), + [anon_sym_STAR] = ACTIONS(3264), + [anon_sym_AMP_AMP] = ACTIONS(3264), + [anon_sym_AMP] = ACTIONS(3262), + [anon_sym_SEMI] = ACTIONS(3264), + [anon_sym_typedef] = ACTIONS(3262), + [anon_sym_extern] = ACTIONS(3262), + [anon_sym___attribute__] = ACTIONS(3262), + [anon_sym_COLON_COLON] = ACTIONS(3264), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3264), + [anon_sym___declspec] = ACTIONS(3262), + [anon_sym___based] = ACTIONS(3262), + [anon_sym___cdecl] = ACTIONS(3262), + [anon_sym___clrcall] = ACTIONS(3262), + [anon_sym___stdcall] = ACTIONS(3262), + [anon_sym___fastcall] = ACTIONS(3262), + [anon_sym___thiscall] = ACTIONS(3262), + [anon_sym___vectorcall] = ACTIONS(3262), + [anon_sym_LBRACE] = ACTIONS(3264), + [anon_sym_LBRACK] = ACTIONS(3262), + [anon_sym_static] = ACTIONS(3262), + [anon_sym_register] = ACTIONS(3262), + [anon_sym_inline] = ACTIONS(3262), + [anon_sym_thread_local] = ACTIONS(3262), + [anon_sym_const] = ACTIONS(3262), + [anon_sym_constexpr] = ACTIONS(3262), + [anon_sym_volatile] = ACTIONS(3262), + [anon_sym_restrict] = ACTIONS(3262), + [anon_sym___restrict__] = ACTIONS(3262), + [anon_sym__Atomic] = ACTIONS(3262), + [anon_sym__Noreturn] = ACTIONS(3262), + [anon_sym_noreturn] = ACTIONS(3262), + [anon_sym_mutable] = ACTIONS(3262), + [anon_sym_constinit] = ACTIONS(3262), + [anon_sym_consteval] = ACTIONS(3262), + [anon_sym_signed] = ACTIONS(3262), + [anon_sym_unsigned] = ACTIONS(3262), + [anon_sym_long] = ACTIONS(3262), + [anon_sym_short] = ACTIONS(3262), + [sym_primitive_type] = ACTIONS(3262), + [anon_sym_enum] = ACTIONS(3262), + [anon_sym_class] = ACTIONS(3262), + [anon_sym_struct] = ACTIONS(3262), + [anon_sym_union] = ACTIONS(3262), + [anon_sym_if] = ACTIONS(3262), + [anon_sym_switch] = ACTIONS(3262), + [anon_sym_case] = ACTIONS(3262), + [anon_sym_default] = ACTIONS(3262), + [anon_sym_while] = ACTIONS(3262), + [anon_sym_do] = ACTIONS(3262), + [anon_sym_for] = ACTIONS(3262), + [anon_sym_return] = ACTIONS(3262), + [anon_sym_break] = ACTIONS(3262), + [anon_sym_continue] = ACTIONS(3262), + [anon_sym_goto] = ACTIONS(3262), + [anon_sym_not] = ACTIONS(3262), + [anon_sym_compl] = ACTIONS(3262), + [anon_sym_DASH_DASH] = ACTIONS(3264), + [anon_sym_PLUS_PLUS] = ACTIONS(3264), + [anon_sym_sizeof] = ACTIONS(3262), + [anon_sym_offsetof] = ACTIONS(3262), + [anon_sym__Generic] = ACTIONS(3262), + [anon_sym_asm] = ACTIONS(3262), + [anon_sym___asm__] = ACTIONS(3262), + [sym_number_literal] = ACTIONS(3264), + [anon_sym_L_SQUOTE] = ACTIONS(3264), + [anon_sym_u_SQUOTE] = ACTIONS(3264), + [anon_sym_U_SQUOTE] = ACTIONS(3264), + [anon_sym_u8_SQUOTE] = ACTIONS(3264), + [anon_sym_SQUOTE] = ACTIONS(3264), + [anon_sym_L_DQUOTE] = ACTIONS(3264), + [anon_sym_u_DQUOTE] = ACTIONS(3264), + [anon_sym_U_DQUOTE] = ACTIONS(3264), + [anon_sym_u8_DQUOTE] = ACTIONS(3264), + [anon_sym_DQUOTE] = ACTIONS(3264), + [sym_true] = ACTIONS(3262), + [sym_false] = ACTIONS(3262), + [anon_sym_NULL] = ACTIONS(3262), + [anon_sym_nullptr] = ACTIONS(3262), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3262), + [anon_sym_decltype] = ACTIONS(3262), + [anon_sym_virtual] = ACTIONS(3262), + [anon_sym_explicit] = ACTIONS(3262), + [anon_sym_typename] = ACTIONS(3262), + [anon_sym_template] = ACTIONS(3262), + [anon_sym_operator] = ACTIONS(3262), + [anon_sym_try] = ACTIONS(3262), + [anon_sym_delete] = ACTIONS(3262), + [anon_sym_throw] = ACTIONS(3262), + [anon_sym_namespace] = ACTIONS(3262), + [anon_sym_using] = ACTIONS(3262), + [anon_sym_static_assert] = ACTIONS(3262), + [anon_sym_concept] = ACTIONS(3262), + [anon_sym_co_return] = ACTIONS(3262), + [anon_sym_co_yield] = ACTIONS(3262), + [anon_sym_R_DQUOTE] = ACTIONS(3264), + [anon_sym_LR_DQUOTE] = ACTIONS(3264), + [anon_sym_uR_DQUOTE] = ACTIONS(3264), + [anon_sym_UR_DQUOTE] = ACTIONS(3264), + [anon_sym_u8R_DQUOTE] = ACTIONS(3264), + [anon_sym_co_await] = ACTIONS(3262), + [anon_sym_new] = ACTIONS(3262), + [anon_sym_requires] = ACTIONS(3262), + [sym_this] = ACTIONS(3262), }, [1314] = { - [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_AMP] = ACTIONS(2464), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym_LBRACE] = ACTIONS(2464), - [anon_sym_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [sym_identifier] = ACTIONS(3246), + [aux_sym_preproc_include_token1] = ACTIONS(3246), + [aux_sym_preproc_def_token1] = ACTIONS(3246), + [aux_sym_preproc_if_token1] = ACTIONS(3246), + [aux_sym_preproc_if_token2] = ACTIONS(3246), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3246), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3246), + [sym_preproc_directive] = ACTIONS(3246), + [anon_sym_LPAREN2] = ACTIONS(3248), + [anon_sym_BANG] = ACTIONS(3248), + [anon_sym_TILDE] = ACTIONS(3248), + [anon_sym_DASH] = ACTIONS(3246), + [anon_sym_PLUS] = ACTIONS(3246), + [anon_sym_STAR] = ACTIONS(3248), + [anon_sym_AMP_AMP] = ACTIONS(3248), + [anon_sym_AMP] = ACTIONS(3246), + [anon_sym_SEMI] = ACTIONS(3248), + [anon_sym_typedef] = ACTIONS(3246), + [anon_sym_extern] = ACTIONS(3246), + [anon_sym___attribute__] = ACTIONS(3246), + [anon_sym_COLON_COLON] = ACTIONS(3248), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3248), + [anon_sym___declspec] = ACTIONS(3246), + [anon_sym___based] = ACTIONS(3246), + [anon_sym___cdecl] = ACTIONS(3246), + [anon_sym___clrcall] = ACTIONS(3246), + [anon_sym___stdcall] = ACTIONS(3246), + [anon_sym___fastcall] = ACTIONS(3246), + [anon_sym___thiscall] = ACTIONS(3246), + [anon_sym___vectorcall] = ACTIONS(3246), + [anon_sym_LBRACE] = ACTIONS(3248), + [anon_sym_LBRACK] = ACTIONS(3246), + [anon_sym_static] = ACTIONS(3246), + [anon_sym_register] = ACTIONS(3246), + [anon_sym_inline] = ACTIONS(3246), + [anon_sym_thread_local] = ACTIONS(3246), + [anon_sym_const] = ACTIONS(3246), + [anon_sym_constexpr] = ACTIONS(3246), + [anon_sym_volatile] = ACTIONS(3246), + [anon_sym_restrict] = ACTIONS(3246), + [anon_sym___restrict__] = ACTIONS(3246), + [anon_sym__Atomic] = ACTIONS(3246), + [anon_sym__Noreturn] = ACTIONS(3246), + [anon_sym_noreturn] = ACTIONS(3246), + [anon_sym_mutable] = ACTIONS(3246), + [anon_sym_constinit] = ACTIONS(3246), + [anon_sym_consteval] = ACTIONS(3246), + [anon_sym_signed] = ACTIONS(3246), + [anon_sym_unsigned] = ACTIONS(3246), + [anon_sym_long] = ACTIONS(3246), + [anon_sym_short] = ACTIONS(3246), + [sym_primitive_type] = ACTIONS(3246), + [anon_sym_enum] = ACTIONS(3246), + [anon_sym_class] = ACTIONS(3246), + [anon_sym_struct] = ACTIONS(3246), + [anon_sym_union] = ACTIONS(3246), + [anon_sym_if] = ACTIONS(3246), + [anon_sym_switch] = ACTIONS(3246), + [anon_sym_case] = ACTIONS(3246), + [anon_sym_default] = ACTIONS(3246), + [anon_sym_while] = ACTIONS(3246), + [anon_sym_do] = ACTIONS(3246), + [anon_sym_for] = ACTIONS(3246), + [anon_sym_return] = ACTIONS(3246), + [anon_sym_break] = ACTIONS(3246), + [anon_sym_continue] = ACTIONS(3246), + [anon_sym_goto] = ACTIONS(3246), + [anon_sym_not] = ACTIONS(3246), + [anon_sym_compl] = ACTIONS(3246), + [anon_sym_DASH_DASH] = ACTIONS(3248), + [anon_sym_PLUS_PLUS] = ACTIONS(3248), + [anon_sym_sizeof] = ACTIONS(3246), + [anon_sym_offsetof] = ACTIONS(3246), + [anon_sym__Generic] = ACTIONS(3246), + [anon_sym_asm] = ACTIONS(3246), + [anon_sym___asm__] = ACTIONS(3246), + [sym_number_literal] = ACTIONS(3248), + [anon_sym_L_SQUOTE] = ACTIONS(3248), + [anon_sym_u_SQUOTE] = ACTIONS(3248), + [anon_sym_U_SQUOTE] = ACTIONS(3248), + [anon_sym_u8_SQUOTE] = ACTIONS(3248), + [anon_sym_SQUOTE] = ACTIONS(3248), + [anon_sym_L_DQUOTE] = ACTIONS(3248), + [anon_sym_u_DQUOTE] = ACTIONS(3248), + [anon_sym_U_DQUOTE] = ACTIONS(3248), + [anon_sym_u8_DQUOTE] = ACTIONS(3248), + [anon_sym_DQUOTE] = ACTIONS(3248), + [sym_true] = ACTIONS(3246), + [sym_false] = ACTIONS(3246), + [anon_sym_NULL] = ACTIONS(3246), + [anon_sym_nullptr] = ACTIONS(3246), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3246), + [anon_sym_decltype] = ACTIONS(3246), + [anon_sym_virtual] = ACTIONS(3246), + [anon_sym_explicit] = ACTIONS(3246), + [anon_sym_typename] = ACTIONS(3246), + [anon_sym_template] = ACTIONS(3246), + [anon_sym_operator] = ACTIONS(3246), + [anon_sym_try] = ACTIONS(3246), + [anon_sym_delete] = ACTIONS(3246), + [anon_sym_throw] = ACTIONS(3246), + [anon_sym_namespace] = ACTIONS(3246), + [anon_sym_using] = ACTIONS(3246), + [anon_sym_static_assert] = ACTIONS(3246), + [anon_sym_concept] = ACTIONS(3246), + [anon_sym_co_return] = ACTIONS(3246), + [anon_sym_co_yield] = ACTIONS(3246), + [anon_sym_R_DQUOTE] = ACTIONS(3248), + [anon_sym_LR_DQUOTE] = ACTIONS(3248), + [anon_sym_uR_DQUOTE] = ACTIONS(3248), + [anon_sym_UR_DQUOTE] = ACTIONS(3248), + [anon_sym_u8R_DQUOTE] = ACTIONS(3248), + [anon_sym_co_await] = ACTIONS(3246), + [anon_sym_new] = ACTIONS(3246), + [anon_sym_requires] = ACTIONS(3246), + [sym_this] = ACTIONS(3246), }, [1315] = { - [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_AMP] = ACTIONS(2464), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_typedef] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym___attribute__] = ACTIONS(2462), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), - [anon_sym___declspec] = ACTIONS(2462), - [anon_sym_LBRACE] = ACTIONS(2464), - [anon_sym_LBRACK] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_inline] = ACTIONS(2462), - [anon_sym_thread_local] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_volatile] = ACTIONS(2462), - [anon_sym_restrict] = ACTIONS(2462), - [anon_sym__Atomic] = ACTIONS(2462), - [anon_sym_mutable] = ACTIONS(2462), - [anon_sym_constexpr] = ACTIONS(2462), - [anon_sym_constinit] = ACTIONS(2462), - [anon_sym_consteval] = ACTIONS(2462), - [anon_sym_signed] = ACTIONS(2462), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_class] = 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_return] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_goto] = ACTIONS(2462), - [anon_sym_not] = ACTIONS(2462), - [anon_sym_compl] = ACTIONS(2462), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_sizeof] = 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_L_DQUOTE] = ACTIONS(2464), - [anon_sym_u_DQUOTE] = ACTIONS(2464), - [anon_sym_U_DQUOTE] = ACTIONS(2464), - [anon_sym_u8_DQUOTE] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2462), - [anon_sym_decltype] = ACTIONS(2462), - [anon_sym_virtual] = ACTIONS(2462), - [anon_sym_typename] = ACTIONS(2462), - [anon_sym_template] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_co_return] = ACTIONS(2462), - [anon_sym_co_yield] = ACTIONS(2462), - [anon_sym_R_DQUOTE] = ACTIONS(2464), - [anon_sym_LR_DQUOTE] = ACTIONS(2464), - [anon_sym_uR_DQUOTE] = ACTIONS(2464), - [anon_sym_UR_DQUOTE] = ACTIONS(2464), - [anon_sym_u8R_DQUOTE] = ACTIONS(2464), - [anon_sym_co_await] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_requires] = ACTIONS(2462), - [sym_this] = ACTIONS(2462), - [sym_nullptr] = ACTIONS(2462), + [ts_builtin_sym_end] = ACTIONS(3306), + [sym_identifier] = ACTIONS(3304), + [aux_sym_preproc_include_token1] = ACTIONS(3304), + [aux_sym_preproc_def_token1] = ACTIONS(3304), + [aux_sym_preproc_if_token1] = ACTIONS(3304), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3304), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3304), + [sym_preproc_directive] = ACTIONS(3304), + [anon_sym_LPAREN2] = ACTIONS(3306), + [anon_sym_BANG] = ACTIONS(3306), + [anon_sym_TILDE] = ACTIONS(3306), + [anon_sym_DASH] = ACTIONS(3304), + [anon_sym_PLUS] = ACTIONS(3304), + [anon_sym_STAR] = ACTIONS(3306), + [anon_sym_AMP_AMP] = ACTIONS(3306), + [anon_sym_AMP] = ACTIONS(3304), + [anon_sym_typedef] = ACTIONS(3304), + [anon_sym_extern] = ACTIONS(3304), + [anon_sym___attribute__] = ACTIONS(3304), + [anon_sym_COLON_COLON] = ACTIONS(3306), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3306), + [anon_sym___declspec] = ACTIONS(3304), + [anon_sym___based] = ACTIONS(3304), + [anon_sym___cdecl] = ACTIONS(3304), + [anon_sym___clrcall] = ACTIONS(3304), + [anon_sym___stdcall] = ACTIONS(3304), + [anon_sym___fastcall] = ACTIONS(3304), + [anon_sym___thiscall] = ACTIONS(3304), + [anon_sym___vectorcall] = ACTIONS(3304), + [anon_sym_LBRACE] = ACTIONS(3306), + [anon_sym_LBRACK] = ACTIONS(3304), + [anon_sym_static] = ACTIONS(3304), + [anon_sym_register] = ACTIONS(3304), + [anon_sym_inline] = ACTIONS(3304), + [anon_sym_thread_local] = ACTIONS(3304), + [anon_sym_const] = ACTIONS(3304), + [anon_sym_constexpr] = ACTIONS(3304), + [anon_sym_volatile] = ACTIONS(3304), + [anon_sym_restrict] = ACTIONS(3304), + [anon_sym___restrict__] = ACTIONS(3304), + [anon_sym__Atomic] = ACTIONS(3304), + [anon_sym__Noreturn] = ACTIONS(3304), + [anon_sym_noreturn] = ACTIONS(3304), + [anon_sym_mutable] = ACTIONS(3304), + [anon_sym_constinit] = ACTIONS(3304), + [anon_sym_consteval] = ACTIONS(3304), + [anon_sym_signed] = ACTIONS(3304), + [anon_sym_unsigned] = ACTIONS(3304), + [anon_sym_long] = ACTIONS(3304), + [anon_sym_short] = ACTIONS(3304), + [sym_primitive_type] = ACTIONS(3304), + [anon_sym_enum] = ACTIONS(3304), + [anon_sym_class] = ACTIONS(3304), + [anon_sym_struct] = ACTIONS(3304), + [anon_sym_union] = ACTIONS(3304), + [anon_sym_if] = ACTIONS(3304), + [anon_sym_switch] = ACTIONS(3304), + [anon_sym_case] = ACTIONS(3304), + [anon_sym_default] = ACTIONS(3304), + [anon_sym_while] = ACTIONS(3304), + [anon_sym_do] = ACTIONS(3304), + [anon_sym_for] = ACTIONS(3304), + [anon_sym_return] = ACTIONS(3304), + [anon_sym_break] = ACTIONS(3304), + [anon_sym_continue] = ACTIONS(3304), + [anon_sym_goto] = ACTIONS(3304), + [anon_sym_not] = ACTIONS(3304), + [anon_sym_compl] = ACTIONS(3304), + [anon_sym_DASH_DASH] = ACTIONS(3306), + [anon_sym_PLUS_PLUS] = ACTIONS(3306), + [anon_sym_sizeof] = ACTIONS(3304), + [anon_sym_offsetof] = ACTIONS(3304), + [anon_sym__Generic] = ACTIONS(3304), + [anon_sym_asm] = ACTIONS(3304), + [anon_sym___asm__] = ACTIONS(3304), + [sym_number_literal] = ACTIONS(3306), + [anon_sym_L_SQUOTE] = ACTIONS(3306), + [anon_sym_u_SQUOTE] = ACTIONS(3306), + [anon_sym_U_SQUOTE] = ACTIONS(3306), + [anon_sym_u8_SQUOTE] = ACTIONS(3306), + [anon_sym_SQUOTE] = ACTIONS(3306), + [anon_sym_L_DQUOTE] = ACTIONS(3306), + [anon_sym_u_DQUOTE] = ACTIONS(3306), + [anon_sym_U_DQUOTE] = ACTIONS(3306), + [anon_sym_u8_DQUOTE] = ACTIONS(3306), + [anon_sym_DQUOTE] = ACTIONS(3306), + [sym_true] = ACTIONS(3304), + [sym_false] = ACTIONS(3304), + [anon_sym_NULL] = ACTIONS(3304), + [anon_sym_nullptr] = ACTIONS(3304), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3304), + [anon_sym_decltype] = ACTIONS(3304), + [anon_sym_virtual] = ACTIONS(3304), + [anon_sym_explicit] = ACTIONS(3304), + [anon_sym_typename] = ACTIONS(3304), + [anon_sym_template] = ACTIONS(3304), + [anon_sym_operator] = ACTIONS(3304), + [anon_sym_try] = ACTIONS(3304), + [anon_sym_delete] = ACTIONS(3304), + [anon_sym_throw] = ACTIONS(3304), + [anon_sym_namespace] = ACTIONS(3304), + [anon_sym_using] = ACTIONS(3304), + [anon_sym_static_assert] = ACTIONS(3304), + [anon_sym_concept] = ACTIONS(3304), + [anon_sym_co_return] = ACTIONS(3304), + [anon_sym_co_yield] = ACTIONS(3304), + [anon_sym_R_DQUOTE] = ACTIONS(3306), + [anon_sym_LR_DQUOTE] = ACTIONS(3306), + [anon_sym_uR_DQUOTE] = ACTIONS(3306), + [anon_sym_UR_DQUOTE] = ACTIONS(3306), + [anon_sym_u8R_DQUOTE] = ACTIONS(3306), + [anon_sym_co_await] = ACTIONS(3304), + [anon_sym_new] = ACTIONS(3304), + [anon_sym_requires] = ACTIONS(3304), + [sym_this] = ACTIONS(3304), }, [1316] = { - [sym__expression] = STATE(3589), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_initializer_list] = STATE(5896), - [sym_initializer_pair] = STATE(5896), - [sym_subscript_designator] = STATE(5115), - [sym_field_designator] = STATE(5115), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [aux_sym_initializer_pair_repeat1] = STATE(5115), - [sym_identifier] = ACTIONS(2954), - [anon_sym_LPAREN2] = ACTIONS(984), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1489), - [anon_sym_LBRACK] = ACTIONS(3358), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [anon_sym_DOT] = ACTIONS(197), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [ts_builtin_sym_end] = ACTIONS(3152), + [sym_identifier] = ACTIONS(3150), + [aux_sym_preproc_include_token1] = ACTIONS(3150), + [aux_sym_preproc_def_token1] = ACTIONS(3150), + [aux_sym_preproc_if_token1] = ACTIONS(3150), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3150), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3150), + [sym_preproc_directive] = ACTIONS(3150), + [anon_sym_LPAREN2] = ACTIONS(3152), + [anon_sym_BANG] = ACTIONS(3152), + [anon_sym_TILDE] = ACTIONS(3152), + [anon_sym_DASH] = ACTIONS(3150), + [anon_sym_PLUS] = ACTIONS(3150), + [anon_sym_STAR] = ACTIONS(3152), + [anon_sym_AMP_AMP] = ACTIONS(3152), + [anon_sym_AMP] = ACTIONS(3150), + [anon_sym_typedef] = ACTIONS(3150), + [anon_sym_extern] = ACTIONS(3150), + [anon_sym___attribute__] = ACTIONS(3150), + [anon_sym_COLON_COLON] = ACTIONS(3152), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3152), + [anon_sym___declspec] = ACTIONS(3150), + [anon_sym___based] = ACTIONS(3150), + [anon_sym___cdecl] = ACTIONS(3150), + [anon_sym___clrcall] = ACTIONS(3150), + [anon_sym___stdcall] = ACTIONS(3150), + [anon_sym___fastcall] = ACTIONS(3150), + [anon_sym___thiscall] = ACTIONS(3150), + [anon_sym___vectorcall] = ACTIONS(3150), + [anon_sym_LBRACE] = ACTIONS(3152), + [anon_sym_LBRACK] = ACTIONS(3150), + [anon_sym_static] = ACTIONS(3150), + [anon_sym_register] = ACTIONS(3150), + [anon_sym_inline] = ACTIONS(3150), + [anon_sym_thread_local] = ACTIONS(3150), + [anon_sym_const] = ACTIONS(3150), + [anon_sym_constexpr] = ACTIONS(3150), + [anon_sym_volatile] = ACTIONS(3150), + [anon_sym_restrict] = ACTIONS(3150), + [anon_sym___restrict__] = ACTIONS(3150), + [anon_sym__Atomic] = ACTIONS(3150), + [anon_sym__Noreturn] = ACTIONS(3150), + [anon_sym_noreturn] = ACTIONS(3150), + [anon_sym_mutable] = ACTIONS(3150), + [anon_sym_constinit] = ACTIONS(3150), + [anon_sym_consteval] = ACTIONS(3150), + [anon_sym_signed] = ACTIONS(3150), + [anon_sym_unsigned] = ACTIONS(3150), + [anon_sym_long] = ACTIONS(3150), + [anon_sym_short] = ACTIONS(3150), + [sym_primitive_type] = ACTIONS(3150), + [anon_sym_enum] = ACTIONS(3150), + [anon_sym_class] = ACTIONS(3150), + [anon_sym_struct] = ACTIONS(3150), + [anon_sym_union] = ACTIONS(3150), + [anon_sym_if] = ACTIONS(3150), + [anon_sym_switch] = ACTIONS(3150), + [anon_sym_case] = ACTIONS(3150), + [anon_sym_default] = ACTIONS(3150), + [anon_sym_while] = ACTIONS(3150), + [anon_sym_do] = ACTIONS(3150), + [anon_sym_for] = ACTIONS(3150), + [anon_sym_return] = ACTIONS(3150), + [anon_sym_break] = ACTIONS(3150), + [anon_sym_continue] = ACTIONS(3150), + [anon_sym_goto] = ACTIONS(3150), + [anon_sym_not] = ACTIONS(3150), + [anon_sym_compl] = ACTIONS(3150), + [anon_sym_DASH_DASH] = ACTIONS(3152), + [anon_sym_PLUS_PLUS] = ACTIONS(3152), + [anon_sym_sizeof] = ACTIONS(3150), + [anon_sym_offsetof] = ACTIONS(3150), + [anon_sym__Generic] = ACTIONS(3150), + [anon_sym_asm] = ACTIONS(3150), + [anon_sym___asm__] = ACTIONS(3150), + [sym_number_literal] = ACTIONS(3152), + [anon_sym_L_SQUOTE] = ACTIONS(3152), + [anon_sym_u_SQUOTE] = ACTIONS(3152), + [anon_sym_U_SQUOTE] = ACTIONS(3152), + [anon_sym_u8_SQUOTE] = ACTIONS(3152), + [anon_sym_SQUOTE] = ACTIONS(3152), + [anon_sym_L_DQUOTE] = ACTIONS(3152), + [anon_sym_u_DQUOTE] = ACTIONS(3152), + [anon_sym_U_DQUOTE] = ACTIONS(3152), + [anon_sym_u8_DQUOTE] = ACTIONS(3152), + [anon_sym_DQUOTE] = ACTIONS(3152), + [sym_true] = ACTIONS(3150), + [sym_false] = ACTIONS(3150), + [anon_sym_NULL] = ACTIONS(3150), + [anon_sym_nullptr] = ACTIONS(3150), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3150), + [anon_sym_decltype] = ACTIONS(3150), + [anon_sym_virtual] = ACTIONS(3150), + [anon_sym_explicit] = ACTIONS(3150), + [anon_sym_typename] = ACTIONS(3150), + [anon_sym_template] = ACTIONS(3150), + [anon_sym_operator] = ACTIONS(3150), + [anon_sym_try] = ACTIONS(3150), + [anon_sym_delete] = ACTIONS(3150), + [anon_sym_throw] = ACTIONS(3150), + [anon_sym_namespace] = ACTIONS(3150), + [anon_sym_using] = ACTIONS(3150), + [anon_sym_static_assert] = ACTIONS(3150), + [anon_sym_concept] = ACTIONS(3150), + [anon_sym_co_return] = ACTIONS(3150), + [anon_sym_co_yield] = ACTIONS(3150), + [anon_sym_R_DQUOTE] = ACTIONS(3152), + [anon_sym_LR_DQUOTE] = ACTIONS(3152), + [anon_sym_uR_DQUOTE] = ACTIONS(3152), + [anon_sym_UR_DQUOTE] = ACTIONS(3152), + [anon_sym_u8R_DQUOTE] = ACTIONS(3152), + [anon_sym_co_await] = ACTIONS(3150), + [anon_sym_new] = ACTIONS(3150), + [anon_sym_requires] = ACTIONS(3150), + [sym_this] = ACTIONS(3150), }, [1317] = { - [sym__expression] = STATE(3523), - [sym_comma_expression] = STATE(6265), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_initializer_list] = STATE(6265), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2954), - [anon_sym_LPAREN2] = ACTIONS(984), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(3406), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1489), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [ts_builtin_sym_end] = ACTIONS(3445), + [sym_identifier] = ACTIONS(3443), + [aux_sym_preproc_include_token1] = ACTIONS(3443), + [aux_sym_preproc_def_token1] = ACTIONS(3443), + [aux_sym_preproc_if_token1] = ACTIONS(3443), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3443), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3443), + [sym_preproc_directive] = ACTIONS(3443), + [anon_sym_LPAREN2] = ACTIONS(3445), + [anon_sym_BANG] = ACTIONS(3445), + [anon_sym_TILDE] = ACTIONS(3445), + [anon_sym_DASH] = ACTIONS(3443), + [anon_sym_PLUS] = ACTIONS(3443), + [anon_sym_STAR] = ACTIONS(3445), + [anon_sym_AMP_AMP] = ACTIONS(3445), + [anon_sym_AMP] = ACTIONS(3443), + [anon_sym_typedef] = ACTIONS(3443), + [anon_sym_extern] = ACTIONS(3443), + [anon_sym___attribute__] = ACTIONS(3443), + [anon_sym_COLON_COLON] = ACTIONS(3445), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3445), + [anon_sym___declspec] = ACTIONS(3443), + [anon_sym___based] = ACTIONS(3443), + [anon_sym___cdecl] = ACTIONS(3443), + [anon_sym___clrcall] = ACTIONS(3443), + [anon_sym___stdcall] = ACTIONS(3443), + [anon_sym___fastcall] = ACTIONS(3443), + [anon_sym___thiscall] = ACTIONS(3443), + [anon_sym___vectorcall] = ACTIONS(3443), + [anon_sym_LBRACE] = ACTIONS(3445), + [anon_sym_LBRACK] = ACTIONS(3443), + [anon_sym_static] = ACTIONS(3443), + [anon_sym_register] = ACTIONS(3443), + [anon_sym_inline] = ACTIONS(3443), + [anon_sym_thread_local] = ACTIONS(3443), + [anon_sym_const] = ACTIONS(3443), + [anon_sym_constexpr] = ACTIONS(3443), + [anon_sym_volatile] = ACTIONS(3443), + [anon_sym_restrict] = ACTIONS(3443), + [anon_sym___restrict__] = ACTIONS(3443), + [anon_sym__Atomic] = ACTIONS(3443), + [anon_sym__Noreturn] = ACTIONS(3443), + [anon_sym_noreturn] = ACTIONS(3443), + [anon_sym_mutable] = ACTIONS(3443), + [anon_sym_constinit] = ACTIONS(3443), + [anon_sym_consteval] = ACTIONS(3443), + [anon_sym_signed] = ACTIONS(3443), + [anon_sym_unsigned] = ACTIONS(3443), + [anon_sym_long] = ACTIONS(3443), + [anon_sym_short] = ACTIONS(3443), + [sym_primitive_type] = ACTIONS(3443), + [anon_sym_enum] = ACTIONS(3443), + [anon_sym_class] = ACTIONS(3443), + [anon_sym_struct] = ACTIONS(3443), + [anon_sym_union] = ACTIONS(3443), + [anon_sym_if] = ACTIONS(3443), + [anon_sym_switch] = ACTIONS(3443), + [anon_sym_case] = ACTIONS(3443), + [anon_sym_default] = ACTIONS(3443), + [anon_sym_while] = ACTIONS(3443), + [anon_sym_do] = ACTIONS(3443), + [anon_sym_for] = ACTIONS(3443), + [anon_sym_return] = ACTIONS(3443), + [anon_sym_break] = ACTIONS(3443), + [anon_sym_continue] = ACTIONS(3443), + [anon_sym_goto] = ACTIONS(3443), + [anon_sym_not] = ACTIONS(3443), + [anon_sym_compl] = ACTIONS(3443), + [anon_sym_DASH_DASH] = ACTIONS(3445), + [anon_sym_PLUS_PLUS] = ACTIONS(3445), + [anon_sym_sizeof] = ACTIONS(3443), + [anon_sym_offsetof] = ACTIONS(3443), + [anon_sym__Generic] = ACTIONS(3443), + [anon_sym_asm] = ACTIONS(3443), + [anon_sym___asm__] = ACTIONS(3443), + [sym_number_literal] = ACTIONS(3445), + [anon_sym_L_SQUOTE] = ACTIONS(3445), + [anon_sym_u_SQUOTE] = ACTIONS(3445), + [anon_sym_U_SQUOTE] = ACTIONS(3445), + [anon_sym_u8_SQUOTE] = ACTIONS(3445), + [anon_sym_SQUOTE] = ACTIONS(3445), + [anon_sym_L_DQUOTE] = ACTIONS(3445), + [anon_sym_u_DQUOTE] = ACTIONS(3445), + [anon_sym_U_DQUOTE] = ACTIONS(3445), + [anon_sym_u8_DQUOTE] = ACTIONS(3445), + [anon_sym_DQUOTE] = ACTIONS(3445), + [sym_true] = ACTIONS(3443), + [sym_false] = ACTIONS(3443), + [anon_sym_NULL] = ACTIONS(3443), + [anon_sym_nullptr] = ACTIONS(3443), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3443), + [anon_sym_decltype] = ACTIONS(3443), + [anon_sym_virtual] = ACTIONS(3443), + [anon_sym_explicit] = ACTIONS(3443), + [anon_sym_typename] = ACTIONS(3443), + [anon_sym_template] = ACTIONS(3443), + [anon_sym_operator] = ACTIONS(3443), + [anon_sym_try] = ACTIONS(3443), + [anon_sym_delete] = ACTIONS(3443), + [anon_sym_throw] = ACTIONS(3443), + [anon_sym_namespace] = ACTIONS(3443), + [anon_sym_using] = ACTIONS(3443), + [anon_sym_static_assert] = ACTIONS(3443), + [anon_sym_concept] = ACTIONS(3443), + [anon_sym_co_return] = ACTIONS(3443), + [anon_sym_co_yield] = ACTIONS(3443), + [anon_sym_R_DQUOTE] = ACTIONS(3445), + [anon_sym_LR_DQUOTE] = ACTIONS(3445), + [anon_sym_uR_DQUOTE] = ACTIONS(3445), + [anon_sym_UR_DQUOTE] = ACTIONS(3445), + [anon_sym_u8R_DQUOTE] = ACTIONS(3445), + [anon_sym_co_await] = ACTIONS(3443), + [anon_sym_new] = ACTIONS(3443), + [anon_sym_requires] = ACTIONS(3443), + [sym_this] = ACTIONS(3443), }, [1318] = { - [sym__expression] = STATE(3499), - [sym_comma_expression] = STATE(6480), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_initializer_list] = STATE(6480), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2954), - [anon_sym_LPAREN2] = ACTIONS(984), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(3408), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1489), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [ts_builtin_sym_end] = ACTIONS(3431), + [sym_identifier] = ACTIONS(3429), + [aux_sym_preproc_include_token1] = ACTIONS(3429), + [aux_sym_preproc_def_token1] = ACTIONS(3429), + [aux_sym_preproc_if_token1] = ACTIONS(3429), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3429), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3429), + [sym_preproc_directive] = ACTIONS(3429), + [anon_sym_LPAREN2] = ACTIONS(3431), + [anon_sym_BANG] = ACTIONS(3431), + [anon_sym_TILDE] = ACTIONS(3431), + [anon_sym_DASH] = ACTIONS(3429), + [anon_sym_PLUS] = ACTIONS(3429), + [anon_sym_STAR] = ACTIONS(3431), + [anon_sym_AMP_AMP] = ACTIONS(3431), + [anon_sym_AMP] = ACTIONS(3429), + [anon_sym_typedef] = ACTIONS(3429), + [anon_sym_extern] = ACTIONS(3429), + [anon_sym___attribute__] = ACTIONS(3429), + [anon_sym_COLON_COLON] = ACTIONS(3431), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3431), + [anon_sym___declspec] = ACTIONS(3429), + [anon_sym___based] = ACTIONS(3429), + [anon_sym___cdecl] = ACTIONS(3429), + [anon_sym___clrcall] = ACTIONS(3429), + [anon_sym___stdcall] = ACTIONS(3429), + [anon_sym___fastcall] = ACTIONS(3429), + [anon_sym___thiscall] = ACTIONS(3429), + [anon_sym___vectorcall] = ACTIONS(3429), + [anon_sym_LBRACE] = ACTIONS(3431), + [anon_sym_LBRACK] = ACTIONS(3429), + [anon_sym_static] = ACTIONS(3429), + [anon_sym_register] = ACTIONS(3429), + [anon_sym_inline] = ACTIONS(3429), + [anon_sym_thread_local] = ACTIONS(3429), + [anon_sym_const] = ACTIONS(3429), + [anon_sym_constexpr] = ACTIONS(3429), + [anon_sym_volatile] = ACTIONS(3429), + [anon_sym_restrict] = ACTIONS(3429), + [anon_sym___restrict__] = ACTIONS(3429), + [anon_sym__Atomic] = ACTIONS(3429), + [anon_sym__Noreturn] = ACTIONS(3429), + [anon_sym_noreturn] = ACTIONS(3429), + [anon_sym_mutable] = ACTIONS(3429), + [anon_sym_constinit] = ACTIONS(3429), + [anon_sym_consteval] = ACTIONS(3429), + [anon_sym_signed] = ACTIONS(3429), + [anon_sym_unsigned] = ACTIONS(3429), + [anon_sym_long] = ACTIONS(3429), + [anon_sym_short] = ACTIONS(3429), + [sym_primitive_type] = ACTIONS(3429), + [anon_sym_enum] = ACTIONS(3429), + [anon_sym_class] = ACTIONS(3429), + [anon_sym_struct] = ACTIONS(3429), + [anon_sym_union] = ACTIONS(3429), + [anon_sym_if] = ACTIONS(3429), + [anon_sym_switch] = ACTIONS(3429), + [anon_sym_case] = ACTIONS(3429), + [anon_sym_default] = ACTIONS(3429), + [anon_sym_while] = ACTIONS(3429), + [anon_sym_do] = ACTIONS(3429), + [anon_sym_for] = ACTIONS(3429), + [anon_sym_return] = ACTIONS(3429), + [anon_sym_break] = ACTIONS(3429), + [anon_sym_continue] = ACTIONS(3429), + [anon_sym_goto] = ACTIONS(3429), + [anon_sym_not] = ACTIONS(3429), + [anon_sym_compl] = ACTIONS(3429), + [anon_sym_DASH_DASH] = ACTIONS(3431), + [anon_sym_PLUS_PLUS] = ACTIONS(3431), + [anon_sym_sizeof] = ACTIONS(3429), + [anon_sym_offsetof] = ACTIONS(3429), + [anon_sym__Generic] = ACTIONS(3429), + [anon_sym_asm] = ACTIONS(3429), + [anon_sym___asm__] = ACTIONS(3429), + [sym_number_literal] = ACTIONS(3431), + [anon_sym_L_SQUOTE] = ACTIONS(3431), + [anon_sym_u_SQUOTE] = ACTIONS(3431), + [anon_sym_U_SQUOTE] = ACTIONS(3431), + [anon_sym_u8_SQUOTE] = ACTIONS(3431), + [anon_sym_SQUOTE] = ACTIONS(3431), + [anon_sym_L_DQUOTE] = ACTIONS(3431), + [anon_sym_u_DQUOTE] = ACTIONS(3431), + [anon_sym_U_DQUOTE] = ACTIONS(3431), + [anon_sym_u8_DQUOTE] = ACTIONS(3431), + [anon_sym_DQUOTE] = ACTIONS(3431), + [sym_true] = ACTIONS(3429), + [sym_false] = ACTIONS(3429), + [anon_sym_NULL] = ACTIONS(3429), + [anon_sym_nullptr] = ACTIONS(3429), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3429), + [anon_sym_decltype] = ACTIONS(3429), + [anon_sym_virtual] = ACTIONS(3429), + [anon_sym_explicit] = ACTIONS(3429), + [anon_sym_typename] = ACTIONS(3429), + [anon_sym_template] = ACTIONS(3429), + [anon_sym_operator] = ACTIONS(3429), + [anon_sym_try] = ACTIONS(3429), + [anon_sym_delete] = ACTIONS(3429), + [anon_sym_throw] = ACTIONS(3429), + [anon_sym_namespace] = ACTIONS(3429), + [anon_sym_using] = ACTIONS(3429), + [anon_sym_static_assert] = ACTIONS(3429), + [anon_sym_concept] = ACTIONS(3429), + [anon_sym_co_return] = ACTIONS(3429), + [anon_sym_co_yield] = ACTIONS(3429), + [anon_sym_R_DQUOTE] = ACTIONS(3431), + [anon_sym_LR_DQUOTE] = ACTIONS(3431), + [anon_sym_uR_DQUOTE] = ACTIONS(3431), + [anon_sym_UR_DQUOTE] = ACTIONS(3431), + [anon_sym_u8R_DQUOTE] = ACTIONS(3431), + [anon_sym_co_await] = ACTIONS(3429), + [anon_sym_new] = ACTIONS(3429), + [anon_sym_requires] = ACTIONS(3429), + [sym_this] = ACTIONS(3429), }, [1319] = { - [sym__expression] = STATE(2772), - [sym_conditional_expression] = STATE(3035), - [sym_assignment_expression] = STATE(3035), - [sym_pointer_expression] = STATE(2713), - [sym_unary_expression] = STATE(3035), - [sym_binary_expression] = STATE(3035), - [sym_update_expression] = STATE(3035), - [sym_cast_expression] = STATE(3035), - [sym_sizeof_expression] = STATE(3035), - [sym_subscript_expression] = STATE(2713), - [sym_call_expression] = STATE(2713), - [sym_field_expression] = STATE(2713), - [sym_compound_literal_expression] = STATE(3035), - [sym_parenthesized_expression] = STATE(2713), - [sym_char_literal] = STATE(3013), - [sym_concatenated_string] = STATE(3013), - [sym_string_literal] = STATE(1900), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5990), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3035), - [sym_raw_string_literal] = STATE(1900), - [sym_co_await_expression] = STATE(3035), - [sym_new_expression] = STATE(3035), - [sym_delete_expression] = STATE(3035), - [sym_requires_clause] = STATE(3035), - [sym_requires_expression] = STATE(3035), - [sym_lambda_expression] = STATE(3035), - [sym_lambda_capture_specifier] = STATE(4465), - [sym__unary_left_fold] = STATE(6210), - [sym__unary_right_fold] = STATE(6208), - [sym__binary_fold] = STATE(6207), - [sym_fold_expression] = STATE(3035), - [sym_parameter_pack_expansion] = STATE(3035), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4584), - [sym_qualified_identifier] = STATE(2713), - [sym_qualified_type_identifier] = STATE(5990), - [sym_user_defined_literal] = STATE(3035), - [sym_identifier] = ACTIONS(1643), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1435), - [anon_sym_LPAREN2] = ACTIONS(1439), - [anon_sym_BANG] = ACTIONS(1441), - [anon_sym_TILDE] = ACTIONS(1441), - [anon_sym_DASH] = ACTIONS(1443), - [anon_sym_PLUS] = ACTIONS(1443), - [anon_sym_STAR] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(1445), - [anon_sym_COLON_COLON] = ACTIONS(1447), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1581), - [anon_sym_not] = ACTIONS(1443), - [anon_sym_compl] = ACTIONS(1443), - [anon_sym_DASH_DASH] = ACTIONS(1459), - [anon_sym_PLUS_PLUS] = ACTIONS(1459), - [anon_sym_sizeof] = ACTIONS(1461), - [sym_number_literal] = ACTIONS(1463), - [anon_sym_L_SQUOTE] = ACTIONS(1465), - [anon_sym_u_SQUOTE] = ACTIONS(1465), - [anon_sym_U_SQUOTE] = ACTIONS(1465), - [anon_sym_u8_SQUOTE] = ACTIONS(1465), - [anon_sym_SQUOTE] = ACTIONS(1465), - [anon_sym_L_DQUOTE] = ACTIONS(1467), - [anon_sym_u_DQUOTE] = ACTIONS(1467), - [anon_sym_U_DQUOTE] = ACTIONS(1467), - [anon_sym_u8_DQUOTE] = ACTIONS(1467), - [anon_sym_DQUOTE] = ACTIONS(1467), - [sym_true] = ACTIONS(1469), - [sym_false] = ACTIONS(1469), - [sym_null] = ACTIONS(1469), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1473), - [anon_sym_R_DQUOTE] = ACTIONS(1475), - [anon_sym_LR_DQUOTE] = ACTIONS(1475), - [anon_sym_uR_DQUOTE] = ACTIONS(1475), - [anon_sym_UR_DQUOTE] = ACTIONS(1475), - [anon_sym_u8R_DQUOTE] = ACTIONS(1475), - [anon_sym_co_await] = ACTIONS(1477), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_requires] = ACTIONS(1481), - [sym_this] = ACTIONS(1469), - [sym_nullptr] = ACTIONS(1469), + [ts_builtin_sym_end] = ACTIONS(3228), + [sym_identifier] = ACTIONS(3226), + [aux_sym_preproc_include_token1] = ACTIONS(3226), + [aux_sym_preproc_def_token1] = ACTIONS(3226), + [aux_sym_preproc_if_token1] = ACTIONS(3226), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3226), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3226), + [sym_preproc_directive] = ACTIONS(3226), + [anon_sym_LPAREN2] = ACTIONS(3228), + [anon_sym_BANG] = ACTIONS(3228), + [anon_sym_TILDE] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(3226), + [anon_sym_PLUS] = ACTIONS(3226), + [anon_sym_STAR] = ACTIONS(3228), + [anon_sym_AMP_AMP] = ACTIONS(3228), + [anon_sym_AMP] = ACTIONS(3226), + [anon_sym_typedef] = ACTIONS(3226), + [anon_sym_extern] = ACTIONS(3226), + [anon_sym___attribute__] = ACTIONS(3226), + [anon_sym_COLON_COLON] = ACTIONS(3228), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3228), + [anon_sym___declspec] = ACTIONS(3226), + [anon_sym___based] = ACTIONS(3226), + [anon_sym___cdecl] = ACTIONS(3226), + [anon_sym___clrcall] = ACTIONS(3226), + [anon_sym___stdcall] = ACTIONS(3226), + [anon_sym___fastcall] = ACTIONS(3226), + [anon_sym___thiscall] = ACTIONS(3226), + [anon_sym___vectorcall] = ACTIONS(3226), + [anon_sym_LBRACE] = ACTIONS(3228), + [anon_sym_LBRACK] = ACTIONS(3226), + [anon_sym_static] = ACTIONS(3226), + [anon_sym_register] = ACTIONS(3226), + [anon_sym_inline] = ACTIONS(3226), + [anon_sym_thread_local] = ACTIONS(3226), + [anon_sym_const] = ACTIONS(3226), + [anon_sym_constexpr] = ACTIONS(3226), + [anon_sym_volatile] = ACTIONS(3226), + [anon_sym_restrict] = ACTIONS(3226), + [anon_sym___restrict__] = ACTIONS(3226), + [anon_sym__Atomic] = ACTIONS(3226), + [anon_sym__Noreturn] = ACTIONS(3226), + [anon_sym_noreturn] = ACTIONS(3226), + [anon_sym_mutable] = ACTIONS(3226), + [anon_sym_constinit] = ACTIONS(3226), + [anon_sym_consteval] = ACTIONS(3226), + [anon_sym_signed] = ACTIONS(3226), + [anon_sym_unsigned] = ACTIONS(3226), + [anon_sym_long] = ACTIONS(3226), + [anon_sym_short] = ACTIONS(3226), + [sym_primitive_type] = ACTIONS(3226), + [anon_sym_enum] = ACTIONS(3226), + [anon_sym_class] = ACTIONS(3226), + [anon_sym_struct] = ACTIONS(3226), + [anon_sym_union] = ACTIONS(3226), + [anon_sym_if] = ACTIONS(3226), + [anon_sym_switch] = ACTIONS(3226), + [anon_sym_case] = ACTIONS(3226), + [anon_sym_default] = ACTIONS(3226), + [anon_sym_while] = ACTIONS(3226), + [anon_sym_do] = ACTIONS(3226), + [anon_sym_for] = ACTIONS(3226), + [anon_sym_return] = ACTIONS(3226), + [anon_sym_break] = ACTIONS(3226), + [anon_sym_continue] = ACTIONS(3226), + [anon_sym_goto] = ACTIONS(3226), + [anon_sym_not] = ACTIONS(3226), + [anon_sym_compl] = ACTIONS(3226), + [anon_sym_DASH_DASH] = ACTIONS(3228), + [anon_sym_PLUS_PLUS] = ACTIONS(3228), + [anon_sym_sizeof] = ACTIONS(3226), + [anon_sym_offsetof] = ACTIONS(3226), + [anon_sym__Generic] = ACTIONS(3226), + [anon_sym_asm] = ACTIONS(3226), + [anon_sym___asm__] = ACTIONS(3226), + [sym_number_literal] = ACTIONS(3228), + [anon_sym_L_SQUOTE] = ACTIONS(3228), + [anon_sym_u_SQUOTE] = ACTIONS(3228), + [anon_sym_U_SQUOTE] = ACTIONS(3228), + [anon_sym_u8_SQUOTE] = ACTIONS(3228), + [anon_sym_SQUOTE] = ACTIONS(3228), + [anon_sym_L_DQUOTE] = ACTIONS(3228), + [anon_sym_u_DQUOTE] = ACTIONS(3228), + [anon_sym_U_DQUOTE] = ACTIONS(3228), + [anon_sym_u8_DQUOTE] = ACTIONS(3228), + [anon_sym_DQUOTE] = ACTIONS(3228), + [sym_true] = ACTIONS(3226), + [sym_false] = ACTIONS(3226), + [anon_sym_NULL] = ACTIONS(3226), + [anon_sym_nullptr] = ACTIONS(3226), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3226), + [anon_sym_decltype] = ACTIONS(3226), + [anon_sym_virtual] = ACTIONS(3226), + [anon_sym_explicit] = ACTIONS(3226), + [anon_sym_typename] = ACTIONS(3226), + [anon_sym_template] = ACTIONS(3226), + [anon_sym_operator] = ACTIONS(3226), + [anon_sym_try] = ACTIONS(3226), + [anon_sym_delete] = ACTIONS(3226), + [anon_sym_throw] = ACTIONS(3226), + [anon_sym_namespace] = ACTIONS(3226), + [anon_sym_using] = ACTIONS(3226), + [anon_sym_static_assert] = ACTIONS(3226), + [anon_sym_concept] = ACTIONS(3226), + [anon_sym_co_return] = ACTIONS(3226), + [anon_sym_co_yield] = ACTIONS(3226), + [anon_sym_R_DQUOTE] = ACTIONS(3228), + [anon_sym_LR_DQUOTE] = ACTIONS(3228), + [anon_sym_uR_DQUOTE] = ACTIONS(3228), + [anon_sym_UR_DQUOTE] = ACTIONS(3228), + [anon_sym_u8R_DQUOTE] = ACTIONS(3228), + [anon_sym_co_await] = ACTIONS(3226), + [anon_sym_new] = ACTIONS(3226), + [anon_sym_requires] = ACTIONS(3226), + [sym_this] = ACTIONS(3226), }, [1320] = { - [sym__expression] = STATE(2779), - [sym_conditional_expression] = STATE(3035), - [sym_assignment_expression] = STATE(3035), - [sym_pointer_expression] = STATE(2713), - [sym_unary_expression] = STATE(3035), - [sym_binary_expression] = STATE(3035), - [sym_update_expression] = STATE(3035), - [sym_cast_expression] = STATE(3035), - [sym_sizeof_expression] = STATE(3035), - [sym_subscript_expression] = STATE(2713), - [sym_call_expression] = STATE(2713), - [sym_field_expression] = STATE(2713), - [sym_compound_literal_expression] = STATE(3035), - [sym_parenthesized_expression] = STATE(2713), - [sym_char_literal] = STATE(3013), - [sym_concatenated_string] = STATE(3013), - [sym_string_literal] = STATE(1900), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5990), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3035), - [sym_raw_string_literal] = STATE(1900), - [sym_co_await_expression] = STATE(3035), - [sym_new_expression] = STATE(3035), - [sym_delete_expression] = STATE(3035), - [sym_requires_clause] = STATE(3035), - [sym_requires_expression] = STATE(3035), - [sym_lambda_expression] = STATE(3035), - [sym_lambda_capture_specifier] = STATE(4465), - [sym__unary_left_fold] = STATE(6272), - [sym__unary_right_fold] = STATE(6271), - [sym__binary_fold] = STATE(6269), - [sym_fold_expression] = STATE(3035), - [sym_parameter_pack_expansion] = STATE(3035), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4584), - [sym_qualified_identifier] = STATE(2713), - [sym_qualified_type_identifier] = STATE(5990), - [sym_user_defined_literal] = STATE(3035), - [sym_identifier] = ACTIONS(1643), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1435), - [anon_sym_LPAREN2] = ACTIONS(1439), - [anon_sym_BANG] = ACTIONS(1441), - [anon_sym_TILDE] = ACTIONS(1441), - [anon_sym_DASH] = ACTIONS(1443), - [anon_sym_PLUS] = ACTIONS(1443), - [anon_sym_STAR] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(1445), - [anon_sym_COLON_COLON] = ACTIONS(1447), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1581), - [anon_sym_not] = ACTIONS(1443), - [anon_sym_compl] = ACTIONS(1443), - [anon_sym_DASH_DASH] = ACTIONS(1459), - [anon_sym_PLUS_PLUS] = ACTIONS(1459), - [anon_sym_sizeof] = ACTIONS(1461), - [sym_number_literal] = ACTIONS(1463), - [anon_sym_L_SQUOTE] = ACTIONS(1465), - [anon_sym_u_SQUOTE] = ACTIONS(1465), - [anon_sym_U_SQUOTE] = ACTIONS(1465), - [anon_sym_u8_SQUOTE] = ACTIONS(1465), - [anon_sym_SQUOTE] = ACTIONS(1465), - [anon_sym_L_DQUOTE] = ACTIONS(1467), - [anon_sym_u_DQUOTE] = ACTIONS(1467), - [anon_sym_U_DQUOTE] = ACTIONS(1467), - [anon_sym_u8_DQUOTE] = ACTIONS(1467), - [anon_sym_DQUOTE] = ACTIONS(1467), - [sym_true] = ACTIONS(1469), - [sym_false] = ACTIONS(1469), - [sym_null] = ACTIONS(1469), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1473), - [anon_sym_R_DQUOTE] = ACTIONS(1475), - [anon_sym_LR_DQUOTE] = ACTIONS(1475), - [anon_sym_uR_DQUOTE] = ACTIONS(1475), - [anon_sym_UR_DQUOTE] = ACTIONS(1475), - [anon_sym_u8R_DQUOTE] = ACTIONS(1475), - [anon_sym_co_await] = ACTIONS(1477), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_requires] = ACTIONS(1481), - [sym_this] = ACTIONS(1469), - [sym_nullptr] = ACTIONS(1469), + [ts_builtin_sym_end] = ACTIONS(3441), + [sym_identifier] = ACTIONS(3439), + [aux_sym_preproc_include_token1] = ACTIONS(3439), + [aux_sym_preproc_def_token1] = ACTIONS(3439), + [aux_sym_preproc_if_token1] = ACTIONS(3439), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3439), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3439), + [sym_preproc_directive] = ACTIONS(3439), + [anon_sym_LPAREN2] = ACTIONS(3441), + [anon_sym_BANG] = ACTIONS(3441), + [anon_sym_TILDE] = ACTIONS(3441), + [anon_sym_DASH] = ACTIONS(3439), + [anon_sym_PLUS] = ACTIONS(3439), + [anon_sym_STAR] = ACTIONS(3441), + [anon_sym_AMP_AMP] = ACTIONS(3441), + [anon_sym_AMP] = ACTIONS(3439), + [anon_sym_typedef] = ACTIONS(3439), + [anon_sym_extern] = ACTIONS(3439), + [anon_sym___attribute__] = ACTIONS(3439), + [anon_sym_COLON_COLON] = ACTIONS(3441), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3441), + [anon_sym___declspec] = ACTIONS(3439), + [anon_sym___based] = ACTIONS(3439), + [anon_sym___cdecl] = ACTIONS(3439), + [anon_sym___clrcall] = ACTIONS(3439), + [anon_sym___stdcall] = ACTIONS(3439), + [anon_sym___fastcall] = ACTIONS(3439), + [anon_sym___thiscall] = ACTIONS(3439), + [anon_sym___vectorcall] = ACTIONS(3439), + [anon_sym_LBRACE] = ACTIONS(3441), + [anon_sym_LBRACK] = ACTIONS(3439), + [anon_sym_static] = ACTIONS(3439), + [anon_sym_register] = ACTIONS(3439), + [anon_sym_inline] = ACTIONS(3439), + [anon_sym_thread_local] = ACTIONS(3439), + [anon_sym_const] = ACTIONS(3439), + [anon_sym_constexpr] = ACTIONS(3439), + [anon_sym_volatile] = ACTIONS(3439), + [anon_sym_restrict] = ACTIONS(3439), + [anon_sym___restrict__] = ACTIONS(3439), + [anon_sym__Atomic] = ACTIONS(3439), + [anon_sym__Noreturn] = ACTIONS(3439), + [anon_sym_noreturn] = ACTIONS(3439), + [anon_sym_mutable] = ACTIONS(3439), + [anon_sym_constinit] = ACTIONS(3439), + [anon_sym_consteval] = ACTIONS(3439), + [anon_sym_signed] = ACTIONS(3439), + [anon_sym_unsigned] = ACTIONS(3439), + [anon_sym_long] = ACTIONS(3439), + [anon_sym_short] = ACTIONS(3439), + [sym_primitive_type] = ACTIONS(3439), + [anon_sym_enum] = ACTIONS(3439), + [anon_sym_class] = ACTIONS(3439), + [anon_sym_struct] = ACTIONS(3439), + [anon_sym_union] = ACTIONS(3439), + [anon_sym_if] = ACTIONS(3439), + [anon_sym_switch] = ACTIONS(3439), + [anon_sym_case] = ACTIONS(3439), + [anon_sym_default] = ACTIONS(3439), + [anon_sym_while] = ACTIONS(3439), + [anon_sym_do] = ACTIONS(3439), + [anon_sym_for] = ACTIONS(3439), + [anon_sym_return] = ACTIONS(3439), + [anon_sym_break] = ACTIONS(3439), + [anon_sym_continue] = ACTIONS(3439), + [anon_sym_goto] = ACTIONS(3439), + [anon_sym_not] = ACTIONS(3439), + [anon_sym_compl] = ACTIONS(3439), + [anon_sym_DASH_DASH] = ACTIONS(3441), + [anon_sym_PLUS_PLUS] = ACTIONS(3441), + [anon_sym_sizeof] = ACTIONS(3439), + [anon_sym_offsetof] = ACTIONS(3439), + [anon_sym__Generic] = ACTIONS(3439), + [anon_sym_asm] = ACTIONS(3439), + [anon_sym___asm__] = ACTIONS(3439), + [sym_number_literal] = ACTIONS(3441), + [anon_sym_L_SQUOTE] = ACTIONS(3441), + [anon_sym_u_SQUOTE] = ACTIONS(3441), + [anon_sym_U_SQUOTE] = ACTIONS(3441), + [anon_sym_u8_SQUOTE] = ACTIONS(3441), + [anon_sym_SQUOTE] = ACTIONS(3441), + [anon_sym_L_DQUOTE] = ACTIONS(3441), + [anon_sym_u_DQUOTE] = ACTIONS(3441), + [anon_sym_U_DQUOTE] = ACTIONS(3441), + [anon_sym_u8_DQUOTE] = ACTIONS(3441), + [anon_sym_DQUOTE] = ACTIONS(3441), + [sym_true] = ACTIONS(3439), + [sym_false] = ACTIONS(3439), + [anon_sym_NULL] = ACTIONS(3439), + [anon_sym_nullptr] = ACTIONS(3439), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3439), + [anon_sym_decltype] = ACTIONS(3439), + [anon_sym_virtual] = ACTIONS(3439), + [anon_sym_explicit] = ACTIONS(3439), + [anon_sym_typename] = ACTIONS(3439), + [anon_sym_template] = ACTIONS(3439), + [anon_sym_operator] = ACTIONS(3439), + [anon_sym_try] = ACTIONS(3439), + [anon_sym_delete] = ACTIONS(3439), + [anon_sym_throw] = ACTIONS(3439), + [anon_sym_namespace] = ACTIONS(3439), + [anon_sym_using] = ACTIONS(3439), + [anon_sym_static_assert] = ACTIONS(3439), + [anon_sym_concept] = ACTIONS(3439), + [anon_sym_co_return] = ACTIONS(3439), + [anon_sym_co_yield] = ACTIONS(3439), + [anon_sym_R_DQUOTE] = ACTIONS(3441), + [anon_sym_LR_DQUOTE] = ACTIONS(3441), + [anon_sym_uR_DQUOTE] = ACTIONS(3441), + [anon_sym_UR_DQUOTE] = ACTIONS(3441), + [anon_sym_u8R_DQUOTE] = ACTIONS(3441), + [anon_sym_co_await] = ACTIONS(3439), + [anon_sym_new] = ACTIONS(3439), + [anon_sym_requires] = ACTIONS(3439), + [sym_this] = ACTIONS(3439), }, [1321] = { - [sym__expression] = STATE(2743), - [sym_conditional_expression] = STATE(3035), - [sym_assignment_expression] = STATE(3035), - [sym_pointer_expression] = STATE(2713), - [sym_unary_expression] = STATE(3035), - [sym_binary_expression] = STATE(3035), - [sym_update_expression] = STATE(3035), - [sym_cast_expression] = STATE(3035), - [sym_sizeof_expression] = STATE(3035), - [sym_subscript_expression] = STATE(2713), - [sym_call_expression] = STATE(2713), - [sym_field_expression] = STATE(2713), - [sym_compound_literal_expression] = STATE(3035), - [sym_parenthesized_expression] = STATE(2713), - [sym_char_literal] = STATE(3013), - [sym_concatenated_string] = STATE(3013), - [sym_string_literal] = STATE(1900), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5990), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3035), - [sym_raw_string_literal] = STATE(1900), - [sym_co_await_expression] = STATE(3035), - [sym_new_expression] = STATE(3035), - [sym_delete_expression] = STATE(3035), - [sym_requires_clause] = STATE(3035), - [sym_requires_expression] = STATE(3035), - [sym_lambda_expression] = STATE(3035), - [sym_lambda_capture_specifier] = STATE(4465), - [sym__unary_left_fold] = STATE(6354), - [sym__unary_right_fold] = STATE(6353), - [sym__binary_fold] = STATE(6352), - [sym_fold_expression] = STATE(3035), - [sym_parameter_pack_expansion] = STATE(3035), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4584), - [sym_qualified_identifier] = STATE(2713), - [sym_qualified_type_identifier] = STATE(5990), - [sym_user_defined_literal] = STATE(3035), - [sym_identifier] = ACTIONS(1643), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1435), - [anon_sym_LPAREN2] = ACTIONS(1439), - [anon_sym_BANG] = ACTIONS(1441), - [anon_sym_TILDE] = ACTIONS(1441), - [anon_sym_DASH] = ACTIONS(1443), - [anon_sym_PLUS] = ACTIONS(1443), - [anon_sym_STAR] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(1445), - [anon_sym_COLON_COLON] = ACTIONS(1447), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1581), - [anon_sym_not] = ACTIONS(1443), - [anon_sym_compl] = ACTIONS(1443), - [anon_sym_DASH_DASH] = ACTIONS(1459), - [anon_sym_PLUS_PLUS] = ACTIONS(1459), - [anon_sym_sizeof] = ACTIONS(1461), - [sym_number_literal] = ACTIONS(1463), - [anon_sym_L_SQUOTE] = ACTIONS(1465), - [anon_sym_u_SQUOTE] = ACTIONS(1465), - [anon_sym_U_SQUOTE] = ACTIONS(1465), - [anon_sym_u8_SQUOTE] = ACTIONS(1465), - [anon_sym_SQUOTE] = ACTIONS(1465), - [anon_sym_L_DQUOTE] = ACTIONS(1467), - [anon_sym_u_DQUOTE] = ACTIONS(1467), - [anon_sym_U_DQUOTE] = ACTIONS(1467), - [anon_sym_u8_DQUOTE] = ACTIONS(1467), - [anon_sym_DQUOTE] = ACTIONS(1467), - [sym_true] = ACTIONS(1469), - [sym_false] = ACTIONS(1469), - [sym_null] = ACTIONS(1469), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1473), - [anon_sym_R_DQUOTE] = ACTIONS(1475), - [anon_sym_LR_DQUOTE] = ACTIONS(1475), - [anon_sym_uR_DQUOTE] = ACTIONS(1475), - [anon_sym_UR_DQUOTE] = ACTIONS(1475), - [anon_sym_u8R_DQUOTE] = ACTIONS(1475), - [anon_sym_co_await] = ACTIONS(1477), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_requires] = ACTIONS(1481), - [sym_this] = ACTIONS(1469), - [sym_nullptr] = ACTIONS(1469), + [ts_builtin_sym_end] = ACTIONS(3397), + [sym_identifier] = ACTIONS(3395), + [aux_sym_preproc_include_token1] = ACTIONS(3395), + [aux_sym_preproc_def_token1] = ACTIONS(3395), + [aux_sym_preproc_if_token1] = ACTIONS(3395), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3395), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3395), + [sym_preproc_directive] = ACTIONS(3395), + [anon_sym_LPAREN2] = ACTIONS(3397), + [anon_sym_BANG] = ACTIONS(3397), + [anon_sym_TILDE] = ACTIONS(3397), + [anon_sym_DASH] = ACTIONS(3395), + [anon_sym_PLUS] = ACTIONS(3395), + [anon_sym_STAR] = ACTIONS(3397), + [anon_sym_AMP_AMP] = ACTIONS(3397), + [anon_sym_AMP] = ACTIONS(3395), + [anon_sym_typedef] = ACTIONS(3395), + [anon_sym_extern] = ACTIONS(3395), + [anon_sym___attribute__] = ACTIONS(3395), + [anon_sym_COLON_COLON] = ACTIONS(3397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3397), + [anon_sym___declspec] = ACTIONS(3395), + [anon_sym___based] = ACTIONS(3395), + [anon_sym___cdecl] = ACTIONS(3395), + [anon_sym___clrcall] = ACTIONS(3395), + [anon_sym___stdcall] = ACTIONS(3395), + [anon_sym___fastcall] = ACTIONS(3395), + [anon_sym___thiscall] = ACTIONS(3395), + [anon_sym___vectorcall] = ACTIONS(3395), + [anon_sym_LBRACE] = ACTIONS(3397), + [anon_sym_LBRACK] = ACTIONS(3395), + [anon_sym_static] = ACTIONS(3395), + [anon_sym_register] = ACTIONS(3395), + [anon_sym_inline] = ACTIONS(3395), + [anon_sym_thread_local] = ACTIONS(3395), + [anon_sym_const] = ACTIONS(3395), + [anon_sym_constexpr] = ACTIONS(3395), + [anon_sym_volatile] = ACTIONS(3395), + [anon_sym_restrict] = ACTIONS(3395), + [anon_sym___restrict__] = ACTIONS(3395), + [anon_sym__Atomic] = ACTIONS(3395), + [anon_sym__Noreturn] = ACTIONS(3395), + [anon_sym_noreturn] = ACTIONS(3395), + [anon_sym_mutable] = ACTIONS(3395), + [anon_sym_constinit] = ACTIONS(3395), + [anon_sym_consteval] = ACTIONS(3395), + [anon_sym_signed] = ACTIONS(3395), + [anon_sym_unsigned] = ACTIONS(3395), + [anon_sym_long] = ACTIONS(3395), + [anon_sym_short] = ACTIONS(3395), + [sym_primitive_type] = ACTIONS(3395), + [anon_sym_enum] = ACTIONS(3395), + [anon_sym_class] = ACTIONS(3395), + [anon_sym_struct] = ACTIONS(3395), + [anon_sym_union] = ACTIONS(3395), + [anon_sym_if] = ACTIONS(3395), + [anon_sym_switch] = ACTIONS(3395), + [anon_sym_case] = ACTIONS(3395), + [anon_sym_default] = ACTIONS(3395), + [anon_sym_while] = ACTIONS(3395), + [anon_sym_do] = ACTIONS(3395), + [anon_sym_for] = ACTIONS(3395), + [anon_sym_return] = ACTIONS(3395), + [anon_sym_break] = ACTIONS(3395), + [anon_sym_continue] = ACTIONS(3395), + [anon_sym_goto] = ACTIONS(3395), + [anon_sym_not] = ACTIONS(3395), + [anon_sym_compl] = ACTIONS(3395), + [anon_sym_DASH_DASH] = ACTIONS(3397), + [anon_sym_PLUS_PLUS] = ACTIONS(3397), + [anon_sym_sizeof] = ACTIONS(3395), + [anon_sym_offsetof] = ACTIONS(3395), + [anon_sym__Generic] = ACTIONS(3395), + [anon_sym_asm] = ACTIONS(3395), + [anon_sym___asm__] = ACTIONS(3395), + [sym_number_literal] = ACTIONS(3397), + [anon_sym_L_SQUOTE] = ACTIONS(3397), + [anon_sym_u_SQUOTE] = ACTIONS(3397), + [anon_sym_U_SQUOTE] = ACTIONS(3397), + [anon_sym_u8_SQUOTE] = ACTIONS(3397), + [anon_sym_SQUOTE] = ACTIONS(3397), + [anon_sym_L_DQUOTE] = ACTIONS(3397), + [anon_sym_u_DQUOTE] = ACTIONS(3397), + [anon_sym_U_DQUOTE] = ACTIONS(3397), + [anon_sym_u8_DQUOTE] = ACTIONS(3397), + [anon_sym_DQUOTE] = ACTIONS(3397), + [sym_true] = ACTIONS(3395), + [sym_false] = ACTIONS(3395), + [anon_sym_NULL] = ACTIONS(3395), + [anon_sym_nullptr] = ACTIONS(3395), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3395), + [anon_sym_decltype] = ACTIONS(3395), + [anon_sym_virtual] = ACTIONS(3395), + [anon_sym_explicit] = ACTIONS(3395), + [anon_sym_typename] = ACTIONS(3395), + [anon_sym_template] = ACTIONS(3395), + [anon_sym_operator] = ACTIONS(3395), + [anon_sym_try] = ACTIONS(3395), + [anon_sym_delete] = ACTIONS(3395), + [anon_sym_throw] = ACTIONS(3395), + [anon_sym_namespace] = ACTIONS(3395), + [anon_sym_using] = ACTIONS(3395), + [anon_sym_static_assert] = ACTIONS(3395), + [anon_sym_concept] = ACTIONS(3395), + [anon_sym_co_return] = ACTIONS(3395), + [anon_sym_co_yield] = ACTIONS(3395), + [anon_sym_R_DQUOTE] = ACTIONS(3397), + [anon_sym_LR_DQUOTE] = ACTIONS(3397), + [anon_sym_uR_DQUOTE] = ACTIONS(3397), + [anon_sym_UR_DQUOTE] = ACTIONS(3397), + [anon_sym_u8R_DQUOTE] = ACTIONS(3397), + [anon_sym_co_await] = ACTIONS(3395), + [anon_sym_new] = ACTIONS(3395), + [anon_sym_requires] = ACTIONS(3395), + [sym_this] = ACTIONS(3395), }, [1322] = { - [sym__expression] = STATE(2830), - [sym_conditional_expression] = STATE(3035), - [sym_assignment_expression] = STATE(3035), - [sym_pointer_expression] = STATE(2713), - [sym_unary_expression] = STATE(3035), - [sym_binary_expression] = STATE(3035), - [sym_update_expression] = STATE(3035), - [sym_cast_expression] = STATE(3035), - [sym_sizeof_expression] = STATE(3035), - [sym_subscript_expression] = STATE(2713), - [sym_call_expression] = STATE(2713), - [sym_field_expression] = STATE(2713), - [sym_compound_literal_expression] = STATE(3035), - [sym_parenthesized_expression] = STATE(2713), - [sym_char_literal] = STATE(3013), - [sym_concatenated_string] = STATE(3013), - [sym_string_literal] = STATE(1900), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5990), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3035), - [sym_raw_string_literal] = STATE(1900), - [sym_co_await_expression] = STATE(3035), - [sym_new_expression] = STATE(3035), - [sym_delete_expression] = STATE(3035), - [sym_requires_clause] = STATE(3035), - [sym_requires_expression] = STATE(3035), - [sym_lambda_expression] = STATE(3035), - [sym_lambda_capture_specifier] = STATE(4465), - [sym__unary_left_fold] = STATE(6109), - [sym__unary_right_fold] = STATE(6107), - [sym__binary_fold] = STATE(6106), - [sym_fold_expression] = STATE(3035), - [sym_parameter_pack_expansion] = STATE(3035), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4584), - [sym_qualified_identifier] = STATE(2713), - [sym_qualified_type_identifier] = STATE(5990), - [sym_user_defined_literal] = STATE(3035), - [sym_identifier] = ACTIONS(1643), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1435), - [anon_sym_LPAREN2] = ACTIONS(1439), - [anon_sym_BANG] = ACTIONS(1441), - [anon_sym_TILDE] = ACTIONS(1441), - [anon_sym_DASH] = ACTIONS(1443), - [anon_sym_PLUS] = ACTIONS(1443), - [anon_sym_STAR] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(1445), - [anon_sym_COLON_COLON] = ACTIONS(1447), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1581), - [anon_sym_not] = ACTIONS(1443), - [anon_sym_compl] = ACTIONS(1443), - [anon_sym_DASH_DASH] = ACTIONS(1459), - [anon_sym_PLUS_PLUS] = ACTIONS(1459), - [anon_sym_sizeof] = ACTIONS(1461), - [sym_number_literal] = ACTIONS(1463), - [anon_sym_L_SQUOTE] = ACTIONS(1465), - [anon_sym_u_SQUOTE] = ACTIONS(1465), - [anon_sym_U_SQUOTE] = ACTIONS(1465), - [anon_sym_u8_SQUOTE] = ACTIONS(1465), - [anon_sym_SQUOTE] = ACTIONS(1465), - [anon_sym_L_DQUOTE] = ACTIONS(1467), - [anon_sym_u_DQUOTE] = ACTIONS(1467), - [anon_sym_U_DQUOTE] = ACTIONS(1467), - [anon_sym_u8_DQUOTE] = ACTIONS(1467), - [anon_sym_DQUOTE] = ACTIONS(1467), - [sym_true] = ACTIONS(1469), - [sym_false] = ACTIONS(1469), - [sym_null] = ACTIONS(1469), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1473), - [anon_sym_R_DQUOTE] = ACTIONS(1475), - [anon_sym_LR_DQUOTE] = ACTIONS(1475), - [anon_sym_uR_DQUOTE] = ACTIONS(1475), - [anon_sym_UR_DQUOTE] = ACTIONS(1475), - [anon_sym_u8R_DQUOTE] = ACTIONS(1475), - [anon_sym_co_await] = ACTIONS(1477), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_requires] = ACTIONS(1481), - [sym_this] = ACTIONS(1469), - [sym_nullptr] = ACTIONS(1469), + [ts_builtin_sym_end] = ACTIONS(3382), + [sym_identifier] = ACTIONS(3380), + [aux_sym_preproc_include_token1] = ACTIONS(3380), + [aux_sym_preproc_def_token1] = ACTIONS(3380), + [aux_sym_preproc_if_token1] = ACTIONS(3380), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3380), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3380), + [sym_preproc_directive] = ACTIONS(3380), + [anon_sym_LPAREN2] = ACTIONS(3382), + [anon_sym_BANG] = ACTIONS(3382), + [anon_sym_TILDE] = ACTIONS(3382), + [anon_sym_DASH] = ACTIONS(3380), + [anon_sym_PLUS] = ACTIONS(3380), + [anon_sym_STAR] = ACTIONS(3382), + [anon_sym_AMP_AMP] = ACTIONS(3382), + [anon_sym_AMP] = ACTIONS(3380), + [anon_sym_typedef] = ACTIONS(3380), + [anon_sym_extern] = ACTIONS(3380), + [anon_sym___attribute__] = ACTIONS(3380), + [anon_sym_COLON_COLON] = ACTIONS(3382), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3382), + [anon_sym___declspec] = ACTIONS(3380), + [anon_sym___based] = ACTIONS(3380), + [anon_sym___cdecl] = ACTIONS(3380), + [anon_sym___clrcall] = ACTIONS(3380), + [anon_sym___stdcall] = ACTIONS(3380), + [anon_sym___fastcall] = ACTIONS(3380), + [anon_sym___thiscall] = ACTIONS(3380), + [anon_sym___vectorcall] = ACTIONS(3380), + [anon_sym_LBRACE] = ACTIONS(3382), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_static] = ACTIONS(3380), + [anon_sym_register] = ACTIONS(3380), + [anon_sym_inline] = ACTIONS(3380), + [anon_sym_thread_local] = ACTIONS(3380), + [anon_sym_const] = ACTIONS(3380), + [anon_sym_constexpr] = ACTIONS(3380), + [anon_sym_volatile] = ACTIONS(3380), + [anon_sym_restrict] = ACTIONS(3380), + [anon_sym___restrict__] = ACTIONS(3380), + [anon_sym__Atomic] = ACTIONS(3380), + [anon_sym__Noreturn] = ACTIONS(3380), + [anon_sym_noreturn] = ACTIONS(3380), + [anon_sym_mutable] = ACTIONS(3380), + [anon_sym_constinit] = ACTIONS(3380), + [anon_sym_consteval] = ACTIONS(3380), + [anon_sym_signed] = ACTIONS(3380), + [anon_sym_unsigned] = ACTIONS(3380), + [anon_sym_long] = ACTIONS(3380), + [anon_sym_short] = ACTIONS(3380), + [sym_primitive_type] = ACTIONS(3380), + [anon_sym_enum] = ACTIONS(3380), + [anon_sym_class] = ACTIONS(3380), + [anon_sym_struct] = ACTIONS(3380), + [anon_sym_union] = ACTIONS(3380), + [anon_sym_if] = ACTIONS(3380), + [anon_sym_switch] = ACTIONS(3380), + [anon_sym_case] = ACTIONS(3380), + [anon_sym_default] = ACTIONS(3380), + [anon_sym_while] = ACTIONS(3380), + [anon_sym_do] = ACTIONS(3380), + [anon_sym_for] = ACTIONS(3380), + [anon_sym_return] = ACTIONS(3380), + [anon_sym_break] = ACTIONS(3380), + [anon_sym_continue] = ACTIONS(3380), + [anon_sym_goto] = ACTIONS(3380), + [anon_sym_not] = ACTIONS(3380), + [anon_sym_compl] = ACTIONS(3380), + [anon_sym_DASH_DASH] = ACTIONS(3382), + [anon_sym_PLUS_PLUS] = ACTIONS(3382), + [anon_sym_sizeof] = ACTIONS(3380), + [anon_sym_offsetof] = ACTIONS(3380), + [anon_sym__Generic] = ACTIONS(3380), + [anon_sym_asm] = ACTIONS(3380), + [anon_sym___asm__] = ACTIONS(3380), + [sym_number_literal] = ACTIONS(3382), + [anon_sym_L_SQUOTE] = ACTIONS(3382), + [anon_sym_u_SQUOTE] = ACTIONS(3382), + [anon_sym_U_SQUOTE] = ACTIONS(3382), + [anon_sym_u8_SQUOTE] = ACTIONS(3382), + [anon_sym_SQUOTE] = ACTIONS(3382), + [anon_sym_L_DQUOTE] = ACTIONS(3382), + [anon_sym_u_DQUOTE] = ACTIONS(3382), + [anon_sym_U_DQUOTE] = ACTIONS(3382), + [anon_sym_u8_DQUOTE] = ACTIONS(3382), + [anon_sym_DQUOTE] = ACTIONS(3382), + [sym_true] = ACTIONS(3380), + [sym_false] = ACTIONS(3380), + [anon_sym_NULL] = ACTIONS(3380), + [anon_sym_nullptr] = ACTIONS(3380), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3380), + [anon_sym_decltype] = ACTIONS(3380), + [anon_sym_virtual] = ACTIONS(3380), + [anon_sym_explicit] = ACTIONS(3380), + [anon_sym_typename] = ACTIONS(3380), + [anon_sym_template] = ACTIONS(3380), + [anon_sym_operator] = ACTIONS(3380), + [anon_sym_try] = ACTIONS(3380), + [anon_sym_delete] = ACTIONS(3380), + [anon_sym_throw] = ACTIONS(3380), + [anon_sym_namespace] = ACTIONS(3380), + [anon_sym_using] = ACTIONS(3380), + [anon_sym_static_assert] = ACTIONS(3380), + [anon_sym_concept] = ACTIONS(3380), + [anon_sym_co_return] = ACTIONS(3380), + [anon_sym_co_yield] = ACTIONS(3380), + [anon_sym_R_DQUOTE] = ACTIONS(3382), + [anon_sym_LR_DQUOTE] = ACTIONS(3382), + [anon_sym_uR_DQUOTE] = ACTIONS(3382), + [anon_sym_UR_DQUOTE] = ACTIONS(3382), + [anon_sym_u8R_DQUOTE] = ACTIONS(3382), + [anon_sym_co_await] = ACTIONS(3380), + [anon_sym_new] = ACTIONS(3380), + [anon_sym_requires] = ACTIONS(3380), + [sym_this] = ACTIONS(3380), }, [1323] = { - [sym__expression] = STATE(2831), - [sym_conditional_expression] = STATE(3035), - [sym_assignment_expression] = STATE(3035), - [sym_pointer_expression] = STATE(2713), - [sym_unary_expression] = STATE(3035), - [sym_binary_expression] = STATE(3035), - [sym_update_expression] = STATE(3035), - [sym_cast_expression] = STATE(3035), - [sym_sizeof_expression] = STATE(3035), - [sym_subscript_expression] = STATE(2713), - [sym_call_expression] = STATE(2713), - [sym_field_expression] = STATE(2713), - [sym_compound_literal_expression] = STATE(3035), - [sym_parenthesized_expression] = STATE(2713), - [sym_char_literal] = STATE(3013), - [sym_concatenated_string] = STATE(3013), - [sym_string_literal] = STATE(1900), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5990), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3035), - [sym_raw_string_literal] = STATE(1900), - [sym_co_await_expression] = STATE(3035), - [sym_new_expression] = STATE(3035), - [sym_delete_expression] = STATE(3035), - [sym_requires_clause] = STATE(3035), - [sym_requires_expression] = STATE(3035), - [sym_lambda_expression] = STATE(3035), - [sym_lambda_capture_specifier] = STATE(4465), - [sym__unary_left_fold] = STATE(6490), - [sym__unary_right_fold] = STATE(6489), - [sym__binary_fold] = STATE(6487), - [sym_fold_expression] = STATE(3035), - [sym_parameter_pack_expansion] = STATE(3035), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4584), - [sym_qualified_identifier] = STATE(2713), - [sym_qualified_type_identifier] = STATE(5990), - [sym_user_defined_literal] = STATE(3035), - [sym_identifier] = ACTIONS(1643), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1435), - [anon_sym_LPAREN2] = ACTIONS(1439), - [anon_sym_BANG] = ACTIONS(1441), - [anon_sym_TILDE] = ACTIONS(1441), - [anon_sym_DASH] = ACTIONS(1443), - [anon_sym_PLUS] = ACTIONS(1443), - [anon_sym_STAR] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(1445), - [anon_sym_COLON_COLON] = ACTIONS(1447), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1581), - [anon_sym_not] = ACTIONS(1443), - [anon_sym_compl] = ACTIONS(1443), - [anon_sym_DASH_DASH] = ACTIONS(1459), - [anon_sym_PLUS_PLUS] = ACTIONS(1459), - [anon_sym_sizeof] = ACTIONS(1461), - [sym_number_literal] = ACTIONS(1463), - [anon_sym_L_SQUOTE] = ACTIONS(1465), - [anon_sym_u_SQUOTE] = ACTIONS(1465), - [anon_sym_U_SQUOTE] = ACTIONS(1465), - [anon_sym_u8_SQUOTE] = ACTIONS(1465), - [anon_sym_SQUOTE] = ACTIONS(1465), - [anon_sym_L_DQUOTE] = ACTIONS(1467), - [anon_sym_u_DQUOTE] = ACTIONS(1467), - [anon_sym_U_DQUOTE] = ACTIONS(1467), - [anon_sym_u8_DQUOTE] = ACTIONS(1467), - [anon_sym_DQUOTE] = ACTIONS(1467), - [sym_true] = ACTIONS(1469), - [sym_false] = ACTIONS(1469), - [sym_null] = ACTIONS(1469), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1473), - [anon_sym_R_DQUOTE] = ACTIONS(1475), - [anon_sym_LR_DQUOTE] = ACTIONS(1475), - [anon_sym_uR_DQUOTE] = ACTIONS(1475), - [anon_sym_UR_DQUOTE] = ACTIONS(1475), - [anon_sym_u8R_DQUOTE] = ACTIONS(1475), - [anon_sym_co_await] = ACTIONS(1477), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_requires] = ACTIONS(1481), - [sym_this] = ACTIONS(1469), - [sym_nullptr] = ACTIONS(1469), + [ts_builtin_sym_end] = ACTIONS(3370), + [sym_identifier] = ACTIONS(3368), + [aux_sym_preproc_include_token1] = ACTIONS(3368), + [aux_sym_preproc_def_token1] = ACTIONS(3368), + [aux_sym_preproc_if_token1] = ACTIONS(3368), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3368), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3368), + [sym_preproc_directive] = ACTIONS(3368), + [anon_sym_LPAREN2] = ACTIONS(3370), + [anon_sym_BANG] = ACTIONS(3370), + [anon_sym_TILDE] = ACTIONS(3370), + [anon_sym_DASH] = ACTIONS(3368), + [anon_sym_PLUS] = ACTIONS(3368), + [anon_sym_STAR] = ACTIONS(3370), + [anon_sym_AMP_AMP] = ACTIONS(3370), + [anon_sym_AMP] = ACTIONS(3368), + [anon_sym_typedef] = ACTIONS(3368), + [anon_sym_extern] = ACTIONS(3368), + [anon_sym___attribute__] = ACTIONS(3368), + [anon_sym_COLON_COLON] = ACTIONS(3370), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3370), + [anon_sym___declspec] = ACTIONS(3368), + [anon_sym___based] = ACTIONS(3368), + [anon_sym___cdecl] = ACTIONS(3368), + [anon_sym___clrcall] = ACTIONS(3368), + [anon_sym___stdcall] = ACTIONS(3368), + [anon_sym___fastcall] = ACTIONS(3368), + [anon_sym___thiscall] = ACTIONS(3368), + [anon_sym___vectorcall] = ACTIONS(3368), + [anon_sym_LBRACE] = ACTIONS(3370), + [anon_sym_LBRACK] = ACTIONS(3368), + [anon_sym_static] = ACTIONS(3368), + [anon_sym_register] = ACTIONS(3368), + [anon_sym_inline] = ACTIONS(3368), + [anon_sym_thread_local] = ACTIONS(3368), + [anon_sym_const] = ACTIONS(3368), + [anon_sym_constexpr] = ACTIONS(3368), + [anon_sym_volatile] = ACTIONS(3368), + [anon_sym_restrict] = ACTIONS(3368), + [anon_sym___restrict__] = ACTIONS(3368), + [anon_sym__Atomic] = ACTIONS(3368), + [anon_sym__Noreturn] = ACTIONS(3368), + [anon_sym_noreturn] = ACTIONS(3368), + [anon_sym_mutable] = ACTIONS(3368), + [anon_sym_constinit] = ACTIONS(3368), + [anon_sym_consteval] = ACTIONS(3368), + [anon_sym_signed] = ACTIONS(3368), + [anon_sym_unsigned] = ACTIONS(3368), + [anon_sym_long] = ACTIONS(3368), + [anon_sym_short] = ACTIONS(3368), + [sym_primitive_type] = ACTIONS(3368), + [anon_sym_enum] = ACTIONS(3368), + [anon_sym_class] = ACTIONS(3368), + [anon_sym_struct] = ACTIONS(3368), + [anon_sym_union] = ACTIONS(3368), + [anon_sym_if] = ACTIONS(3368), + [anon_sym_switch] = ACTIONS(3368), + [anon_sym_case] = ACTIONS(3368), + [anon_sym_default] = ACTIONS(3368), + [anon_sym_while] = ACTIONS(3368), + [anon_sym_do] = ACTIONS(3368), + [anon_sym_for] = ACTIONS(3368), + [anon_sym_return] = ACTIONS(3368), + [anon_sym_break] = ACTIONS(3368), + [anon_sym_continue] = ACTIONS(3368), + [anon_sym_goto] = ACTIONS(3368), + [anon_sym_not] = ACTIONS(3368), + [anon_sym_compl] = ACTIONS(3368), + [anon_sym_DASH_DASH] = ACTIONS(3370), + [anon_sym_PLUS_PLUS] = ACTIONS(3370), + [anon_sym_sizeof] = ACTIONS(3368), + [anon_sym_offsetof] = ACTIONS(3368), + [anon_sym__Generic] = ACTIONS(3368), + [anon_sym_asm] = ACTIONS(3368), + [anon_sym___asm__] = ACTIONS(3368), + [sym_number_literal] = ACTIONS(3370), + [anon_sym_L_SQUOTE] = ACTIONS(3370), + [anon_sym_u_SQUOTE] = ACTIONS(3370), + [anon_sym_U_SQUOTE] = ACTIONS(3370), + [anon_sym_u8_SQUOTE] = ACTIONS(3370), + [anon_sym_SQUOTE] = ACTIONS(3370), + [anon_sym_L_DQUOTE] = ACTIONS(3370), + [anon_sym_u_DQUOTE] = ACTIONS(3370), + [anon_sym_U_DQUOTE] = ACTIONS(3370), + [anon_sym_u8_DQUOTE] = ACTIONS(3370), + [anon_sym_DQUOTE] = ACTIONS(3370), + [sym_true] = ACTIONS(3368), + [sym_false] = ACTIONS(3368), + [anon_sym_NULL] = ACTIONS(3368), + [anon_sym_nullptr] = ACTIONS(3368), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3368), + [anon_sym_decltype] = ACTIONS(3368), + [anon_sym_virtual] = ACTIONS(3368), + [anon_sym_explicit] = ACTIONS(3368), + [anon_sym_typename] = ACTIONS(3368), + [anon_sym_template] = ACTIONS(3368), + [anon_sym_operator] = ACTIONS(3368), + [anon_sym_try] = ACTIONS(3368), + [anon_sym_delete] = ACTIONS(3368), + [anon_sym_throw] = ACTIONS(3368), + [anon_sym_namespace] = ACTIONS(3368), + [anon_sym_using] = ACTIONS(3368), + [anon_sym_static_assert] = ACTIONS(3368), + [anon_sym_concept] = ACTIONS(3368), + [anon_sym_co_return] = ACTIONS(3368), + [anon_sym_co_yield] = ACTIONS(3368), + [anon_sym_R_DQUOTE] = ACTIONS(3370), + [anon_sym_LR_DQUOTE] = ACTIONS(3370), + [anon_sym_uR_DQUOTE] = ACTIONS(3370), + [anon_sym_UR_DQUOTE] = ACTIONS(3370), + [anon_sym_u8R_DQUOTE] = ACTIONS(3370), + [anon_sym_co_await] = ACTIONS(3368), + [anon_sym_new] = ACTIONS(3368), + [anon_sym_requires] = ACTIONS(3368), + [sym_this] = ACTIONS(3368), }, [1324] = { - [sym__expression] = STATE(2829), - [sym_conditional_expression] = STATE(3035), - [sym_assignment_expression] = STATE(3035), - [sym_pointer_expression] = STATE(2713), - [sym_unary_expression] = STATE(3035), - [sym_binary_expression] = STATE(3035), - [sym_update_expression] = STATE(3035), - [sym_cast_expression] = STATE(3035), - [sym_sizeof_expression] = STATE(3035), - [sym_subscript_expression] = STATE(2713), - [sym_call_expression] = STATE(2713), - [sym_field_expression] = STATE(2713), - [sym_compound_literal_expression] = STATE(3035), - [sym_parenthesized_expression] = STATE(2713), - [sym_char_literal] = STATE(3013), - [sym_concatenated_string] = STATE(3013), - [sym_string_literal] = STATE(1900), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5990), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3035), - [sym_raw_string_literal] = STATE(1900), - [sym_co_await_expression] = STATE(3035), - [sym_new_expression] = STATE(3035), - [sym_delete_expression] = STATE(3035), - [sym_requires_clause] = STATE(3035), - [sym_requires_expression] = STATE(3035), - [sym_lambda_expression] = STATE(3035), - [sym_lambda_capture_specifier] = STATE(4465), - [sym__unary_left_fold] = STATE(6628), - [sym__unary_right_fold] = STATE(6395), - [sym__binary_fold] = STATE(6571), - [sym_fold_expression] = STATE(3035), - [sym_parameter_pack_expansion] = STATE(3035), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4584), - [sym_qualified_identifier] = STATE(2713), - [sym_qualified_type_identifier] = STATE(5990), - [sym_user_defined_literal] = STATE(3035), - [sym_identifier] = ACTIONS(1643), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1435), - [anon_sym_LPAREN2] = ACTIONS(1439), - [anon_sym_BANG] = ACTIONS(1441), - [anon_sym_TILDE] = ACTIONS(1441), - [anon_sym_DASH] = ACTIONS(1443), - [anon_sym_PLUS] = ACTIONS(1443), - [anon_sym_STAR] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(1445), - [anon_sym_COLON_COLON] = ACTIONS(1447), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1581), - [anon_sym_not] = ACTIONS(1443), - [anon_sym_compl] = ACTIONS(1443), - [anon_sym_DASH_DASH] = ACTIONS(1459), - [anon_sym_PLUS_PLUS] = ACTIONS(1459), - [anon_sym_sizeof] = ACTIONS(1461), - [sym_number_literal] = ACTIONS(1463), - [anon_sym_L_SQUOTE] = ACTIONS(1465), - [anon_sym_u_SQUOTE] = ACTIONS(1465), - [anon_sym_U_SQUOTE] = ACTIONS(1465), - [anon_sym_u8_SQUOTE] = ACTIONS(1465), - [anon_sym_SQUOTE] = ACTIONS(1465), - [anon_sym_L_DQUOTE] = ACTIONS(1467), - [anon_sym_u_DQUOTE] = ACTIONS(1467), - [anon_sym_U_DQUOTE] = ACTIONS(1467), - [anon_sym_u8_DQUOTE] = ACTIONS(1467), - [anon_sym_DQUOTE] = ACTIONS(1467), - [sym_true] = ACTIONS(1469), - [sym_false] = ACTIONS(1469), - [sym_null] = ACTIONS(1469), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1473), - [anon_sym_R_DQUOTE] = ACTIONS(1475), - [anon_sym_LR_DQUOTE] = ACTIONS(1475), - [anon_sym_uR_DQUOTE] = ACTIONS(1475), - [anon_sym_UR_DQUOTE] = ACTIONS(1475), - [anon_sym_u8R_DQUOTE] = ACTIONS(1475), - [anon_sym_co_await] = ACTIONS(1477), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_requires] = ACTIONS(1481), - [sym_this] = ACTIONS(1469), - [sym_nullptr] = ACTIONS(1469), + [ts_builtin_sym_end] = ACTIONS(3123), + [sym_identifier] = ACTIONS(3121), + [aux_sym_preproc_include_token1] = ACTIONS(3121), + [aux_sym_preproc_def_token1] = ACTIONS(3121), + [aux_sym_preproc_if_token1] = ACTIONS(3121), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3121), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3121), + [sym_preproc_directive] = ACTIONS(3121), + [anon_sym_LPAREN2] = ACTIONS(3123), + [anon_sym_BANG] = ACTIONS(3123), + [anon_sym_TILDE] = ACTIONS(3123), + [anon_sym_DASH] = ACTIONS(3121), + [anon_sym_PLUS] = ACTIONS(3121), + [anon_sym_STAR] = ACTIONS(3123), + [anon_sym_AMP_AMP] = ACTIONS(3123), + [anon_sym_AMP] = ACTIONS(3121), + [anon_sym_typedef] = ACTIONS(3121), + [anon_sym_extern] = ACTIONS(3121), + [anon_sym___attribute__] = ACTIONS(3121), + [anon_sym_COLON_COLON] = ACTIONS(3123), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3123), + [anon_sym___declspec] = ACTIONS(3121), + [anon_sym___based] = ACTIONS(3121), + [anon_sym___cdecl] = ACTIONS(3121), + [anon_sym___clrcall] = ACTIONS(3121), + [anon_sym___stdcall] = ACTIONS(3121), + [anon_sym___fastcall] = ACTIONS(3121), + [anon_sym___thiscall] = ACTIONS(3121), + [anon_sym___vectorcall] = ACTIONS(3121), + [anon_sym_LBRACE] = ACTIONS(3123), + [anon_sym_LBRACK] = ACTIONS(3121), + [anon_sym_static] = ACTIONS(3121), + [anon_sym_register] = ACTIONS(3121), + [anon_sym_inline] = ACTIONS(3121), + [anon_sym_thread_local] = ACTIONS(3121), + [anon_sym_const] = ACTIONS(3121), + [anon_sym_constexpr] = ACTIONS(3121), + [anon_sym_volatile] = ACTIONS(3121), + [anon_sym_restrict] = ACTIONS(3121), + [anon_sym___restrict__] = ACTIONS(3121), + [anon_sym__Atomic] = ACTIONS(3121), + [anon_sym__Noreturn] = ACTIONS(3121), + [anon_sym_noreturn] = ACTIONS(3121), + [anon_sym_mutable] = ACTIONS(3121), + [anon_sym_constinit] = ACTIONS(3121), + [anon_sym_consteval] = ACTIONS(3121), + [anon_sym_signed] = ACTIONS(3121), + [anon_sym_unsigned] = ACTIONS(3121), + [anon_sym_long] = ACTIONS(3121), + [anon_sym_short] = ACTIONS(3121), + [sym_primitive_type] = ACTIONS(3121), + [anon_sym_enum] = ACTIONS(3121), + [anon_sym_class] = ACTIONS(3121), + [anon_sym_struct] = ACTIONS(3121), + [anon_sym_union] = ACTIONS(3121), + [anon_sym_if] = ACTIONS(3121), + [anon_sym_switch] = ACTIONS(3121), + [anon_sym_case] = ACTIONS(3121), + [anon_sym_default] = ACTIONS(3121), + [anon_sym_while] = ACTIONS(3121), + [anon_sym_do] = ACTIONS(3121), + [anon_sym_for] = ACTIONS(3121), + [anon_sym_return] = ACTIONS(3121), + [anon_sym_break] = ACTIONS(3121), + [anon_sym_continue] = ACTIONS(3121), + [anon_sym_goto] = ACTIONS(3121), + [anon_sym_not] = ACTIONS(3121), + [anon_sym_compl] = ACTIONS(3121), + [anon_sym_DASH_DASH] = ACTIONS(3123), + [anon_sym_PLUS_PLUS] = ACTIONS(3123), + [anon_sym_sizeof] = ACTIONS(3121), + [anon_sym_offsetof] = ACTIONS(3121), + [anon_sym__Generic] = ACTIONS(3121), + [anon_sym_asm] = ACTIONS(3121), + [anon_sym___asm__] = ACTIONS(3121), + [sym_number_literal] = ACTIONS(3123), + [anon_sym_L_SQUOTE] = ACTIONS(3123), + [anon_sym_u_SQUOTE] = ACTIONS(3123), + [anon_sym_U_SQUOTE] = ACTIONS(3123), + [anon_sym_u8_SQUOTE] = ACTIONS(3123), + [anon_sym_SQUOTE] = ACTIONS(3123), + [anon_sym_L_DQUOTE] = ACTIONS(3123), + [anon_sym_u_DQUOTE] = ACTIONS(3123), + [anon_sym_U_DQUOTE] = ACTIONS(3123), + [anon_sym_u8_DQUOTE] = ACTIONS(3123), + [anon_sym_DQUOTE] = ACTIONS(3123), + [sym_true] = ACTIONS(3121), + [sym_false] = ACTIONS(3121), + [anon_sym_NULL] = ACTIONS(3121), + [anon_sym_nullptr] = ACTIONS(3121), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3121), + [anon_sym_decltype] = ACTIONS(3121), + [anon_sym_virtual] = ACTIONS(3121), + [anon_sym_explicit] = ACTIONS(3121), + [anon_sym_typename] = ACTIONS(3121), + [anon_sym_template] = ACTIONS(3121), + [anon_sym_operator] = ACTIONS(3121), + [anon_sym_try] = ACTIONS(3121), + [anon_sym_delete] = ACTIONS(3121), + [anon_sym_throw] = ACTIONS(3121), + [anon_sym_namespace] = ACTIONS(3121), + [anon_sym_using] = ACTIONS(3121), + [anon_sym_static_assert] = ACTIONS(3121), + [anon_sym_concept] = ACTIONS(3121), + [anon_sym_co_return] = ACTIONS(3121), + [anon_sym_co_yield] = ACTIONS(3121), + [anon_sym_R_DQUOTE] = ACTIONS(3123), + [anon_sym_LR_DQUOTE] = ACTIONS(3123), + [anon_sym_uR_DQUOTE] = ACTIONS(3123), + [anon_sym_UR_DQUOTE] = ACTIONS(3123), + [anon_sym_u8R_DQUOTE] = ACTIONS(3123), + [anon_sym_co_await] = ACTIONS(3121), + [anon_sym_new] = ACTIONS(3121), + [anon_sym_requires] = ACTIONS(3121), + [sym_this] = ACTIONS(3121), }, [1325] = { - [sym__expression] = STATE(3520), - [sym_comma_expression] = STATE(6542), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_initializer_list] = STATE(6542), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2954), - [anon_sym_LPAREN2] = ACTIONS(984), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(3410), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1489), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [ts_builtin_sym_end] = ACTIONS(3427), + [sym_identifier] = ACTIONS(3425), + [aux_sym_preproc_include_token1] = ACTIONS(3425), + [aux_sym_preproc_def_token1] = ACTIONS(3425), + [aux_sym_preproc_if_token1] = ACTIONS(3425), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3425), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3425), + [sym_preproc_directive] = ACTIONS(3425), + [anon_sym_LPAREN2] = ACTIONS(3427), + [anon_sym_BANG] = ACTIONS(3427), + [anon_sym_TILDE] = ACTIONS(3427), + [anon_sym_DASH] = ACTIONS(3425), + [anon_sym_PLUS] = ACTIONS(3425), + [anon_sym_STAR] = ACTIONS(3427), + [anon_sym_AMP_AMP] = ACTIONS(3427), + [anon_sym_AMP] = ACTIONS(3425), + [anon_sym_typedef] = ACTIONS(3425), + [anon_sym_extern] = ACTIONS(3425), + [anon_sym___attribute__] = ACTIONS(3425), + [anon_sym_COLON_COLON] = ACTIONS(3427), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3427), + [anon_sym___declspec] = ACTIONS(3425), + [anon_sym___based] = ACTIONS(3425), + [anon_sym___cdecl] = ACTIONS(3425), + [anon_sym___clrcall] = ACTIONS(3425), + [anon_sym___stdcall] = ACTIONS(3425), + [anon_sym___fastcall] = ACTIONS(3425), + [anon_sym___thiscall] = ACTIONS(3425), + [anon_sym___vectorcall] = ACTIONS(3425), + [anon_sym_LBRACE] = ACTIONS(3427), + [anon_sym_LBRACK] = ACTIONS(3425), + [anon_sym_static] = ACTIONS(3425), + [anon_sym_register] = ACTIONS(3425), + [anon_sym_inline] = ACTIONS(3425), + [anon_sym_thread_local] = ACTIONS(3425), + [anon_sym_const] = ACTIONS(3425), + [anon_sym_constexpr] = ACTIONS(3425), + [anon_sym_volatile] = ACTIONS(3425), + [anon_sym_restrict] = ACTIONS(3425), + [anon_sym___restrict__] = ACTIONS(3425), + [anon_sym__Atomic] = ACTIONS(3425), + [anon_sym__Noreturn] = ACTIONS(3425), + [anon_sym_noreturn] = ACTIONS(3425), + [anon_sym_mutable] = ACTIONS(3425), + [anon_sym_constinit] = ACTIONS(3425), + [anon_sym_consteval] = ACTIONS(3425), + [anon_sym_signed] = ACTIONS(3425), + [anon_sym_unsigned] = ACTIONS(3425), + [anon_sym_long] = ACTIONS(3425), + [anon_sym_short] = ACTIONS(3425), + [sym_primitive_type] = ACTIONS(3425), + [anon_sym_enum] = ACTIONS(3425), + [anon_sym_class] = ACTIONS(3425), + [anon_sym_struct] = ACTIONS(3425), + [anon_sym_union] = ACTIONS(3425), + [anon_sym_if] = ACTIONS(3425), + [anon_sym_switch] = ACTIONS(3425), + [anon_sym_case] = ACTIONS(3425), + [anon_sym_default] = ACTIONS(3425), + [anon_sym_while] = ACTIONS(3425), + [anon_sym_do] = ACTIONS(3425), + [anon_sym_for] = ACTIONS(3425), + [anon_sym_return] = ACTIONS(3425), + [anon_sym_break] = ACTIONS(3425), + [anon_sym_continue] = ACTIONS(3425), + [anon_sym_goto] = ACTIONS(3425), + [anon_sym_not] = ACTIONS(3425), + [anon_sym_compl] = ACTIONS(3425), + [anon_sym_DASH_DASH] = ACTIONS(3427), + [anon_sym_PLUS_PLUS] = ACTIONS(3427), + [anon_sym_sizeof] = ACTIONS(3425), + [anon_sym_offsetof] = ACTIONS(3425), + [anon_sym__Generic] = ACTIONS(3425), + [anon_sym_asm] = ACTIONS(3425), + [anon_sym___asm__] = ACTIONS(3425), + [sym_number_literal] = ACTIONS(3427), + [anon_sym_L_SQUOTE] = ACTIONS(3427), + [anon_sym_u_SQUOTE] = ACTIONS(3427), + [anon_sym_U_SQUOTE] = ACTIONS(3427), + [anon_sym_u8_SQUOTE] = ACTIONS(3427), + [anon_sym_SQUOTE] = ACTIONS(3427), + [anon_sym_L_DQUOTE] = ACTIONS(3427), + [anon_sym_u_DQUOTE] = ACTIONS(3427), + [anon_sym_U_DQUOTE] = ACTIONS(3427), + [anon_sym_u8_DQUOTE] = ACTIONS(3427), + [anon_sym_DQUOTE] = ACTIONS(3427), + [sym_true] = ACTIONS(3425), + [sym_false] = ACTIONS(3425), + [anon_sym_NULL] = ACTIONS(3425), + [anon_sym_nullptr] = ACTIONS(3425), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3425), + [anon_sym_decltype] = ACTIONS(3425), + [anon_sym_virtual] = ACTIONS(3425), + [anon_sym_explicit] = ACTIONS(3425), + [anon_sym_typename] = ACTIONS(3425), + [anon_sym_template] = ACTIONS(3425), + [anon_sym_operator] = ACTIONS(3425), + [anon_sym_try] = ACTIONS(3425), + [anon_sym_delete] = ACTIONS(3425), + [anon_sym_throw] = ACTIONS(3425), + [anon_sym_namespace] = ACTIONS(3425), + [anon_sym_using] = ACTIONS(3425), + [anon_sym_static_assert] = ACTIONS(3425), + [anon_sym_concept] = ACTIONS(3425), + [anon_sym_co_return] = ACTIONS(3425), + [anon_sym_co_yield] = ACTIONS(3425), + [anon_sym_R_DQUOTE] = ACTIONS(3427), + [anon_sym_LR_DQUOTE] = ACTIONS(3427), + [anon_sym_uR_DQUOTE] = ACTIONS(3427), + [anon_sym_UR_DQUOTE] = ACTIONS(3427), + [anon_sym_u8R_DQUOTE] = ACTIONS(3427), + [anon_sym_co_await] = ACTIONS(3425), + [anon_sym_new] = ACTIONS(3425), + [anon_sym_requires] = ACTIONS(3425), + [sym_this] = ACTIONS(3425), }, [1326] = { - [sym__expression] = STATE(2775), - [sym_conditional_expression] = STATE(3035), - [sym_assignment_expression] = STATE(3035), - [sym_pointer_expression] = STATE(2713), - [sym_unary_expression] = STATE(3035), - [sym_binary_expression] = STATE(3035), - [sym_update_expression] = STATE(3035), - [sym_cast_expression] = STATE(3035), - [sym_sizeof_expression] = STATE(3035), - [sym_subscript_expression] = STATE(2713), - [sym_call_expression] = STATE(2713), - [sym_field_expression] = STATE(2713), - [sym_compound_literal_expression] = STATE(3035), - [sym_parenthesized_expression] = STATE(2713), - [sym_char_literal] = STATE(3013), - [sym_concatenated_string] = STATE(3013), - [sym_string_literal] = STATE(1900), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5990), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3035), - [sym_raw_string_literal] = STATE(1900), - [sym_co_await_expression] = STATE(3035), - [sym_new_expression] = STATE(3035), - [sym_delete_expression] = STATE(3035), - [sym_requires_clause] = STATE(3035), - [sym_requires_expression] = STATE(3035), - [sym_lambda_expression] = STATE(3035), - [sym_lambda_capture_specifier] = STATE(4465), - [sym__unary_left_fold] = STATE(6168), - [sym__unary_right_fold] = STATE(6167), - [sym__binary_fold] = STATE(6165), - [sym_fold_expression] = STATE(3035), - [sym_parameter_pack_expansion] = STATE(3035), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4584), - [sym_qualified_identifier] = STATE(2713), - [sym_qualified_type_identifier] = STATE(5990), - [sym_user_defined_literal] = STATE(3035), - [sym_identifier] = ACTIONS(1643), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1435), - [anon_sym_LPAREN2] = ACTIONS(1439), - [anon_sym_BANG] = ACTIONS(1441), - [anon_sym_TILDE] = ACTIONS(1441), - [anon_sym_DASH] = ACTIONS(1443), - [anon_sym_PLUS] = ACTIONS(1443), - [anon_sym_STAR] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(1445), - [anon_sym_COLON_COLON] = ACTIONS(1447), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1581), - [anon_sym_not] = ACTIONS(1443), - [anon_sym_compl] = ACTIONS(1443), - [anon_sym_DASH_DASH] = ACTIONS(1459), - [anon_sym_PLUS_PLUS] = ACTIONS(1459), - [anon_sym_sizeof] = ACTIONS(1461), - [sym_number_literal] = ACTIONS(1463), - [anon_sym_L_SQUOTE] = ACTIONS(1465), - [anon_sym_u_SQUOTE] = ACTIONS(1465), - [anon_sym_U_SQUOTE] = ACTIONS(1465), - [anon_sym_u8_SQUOTE] = ACTIONS(1465), - [anon_sym_SQUOTE] = ACTIONS(1465), - [anon_sym_L_DQUOTE] = ACTIONS(1467), - [anon_sym_u_DQUOTE] = ACTIONS(1467), - [anon_sym_U_DQUOTE] = ACTIONS(1467), - [anon_sym_u8_DQUOTE] = ACTIONS(1467), - [anon_sym_DQUOTE] = ACTIONS(1467), - [sym_true] = ACTIONS(1469), - [sym_false] = ACTIONS(1469), - [sym_null] = ACTIONS(1469), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1473), - [anon_sym_R_DQUOTE] = ACTIONS(1475), - [anon_sym_LR_DQUOTE] = ACTIONS(1475), - [anon_sym_uR_DQUOTE] = ACTIONS(1475), - [anon_sym_UR_DQUOTE] = ACTIONS(1475), - [anon_sym_u8R_DQUOTE] = ACTIONS(1475), - [anon_sym_co_await] = ACTIONS(1477), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_requires] = ACTIONS(1481), - [sym_this] = ACTIONS(1469), - [sym_nullptr] = ACTIONS(1469), + [ts_builtin_sym_end] = ACTIONS(3284), + [sym_identifier] = ACTIONS(3282), + [aux_sym_preproc_include_token1] = ACTIONS(3282), + [aux_sym_preproc_def_token1] = ACTIONS(3282), + [aux_sym_preproc_if_token1] = ACTIONS(3282), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3282), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3282), + [sym_preproc_directive] = ACTIONS(3282), + [anon_sym_LPAREN2] = ACTIONS(3284), + [anon_sym_BANG] = ACTIONS(3284), + [anon_sym_TILDE] = ACTIONS(3284), + [anon_sym_DASH] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3282), + [anon_sym_STAR] = ACTIONS(3284), + [anon_sym_AMP_AMP] = ACTIONS(3284), + [anon_sym_AMP] = ACTIONS(3282), + [anon_sym_typedef] = ACTIONS(3282), + [anon_sym_extern] = ACTIONS(3282), + [anon_sym___attribute__] = ACTIONS(3282), + [anon_sym_COLON_COLON] = ACTIONS(3284), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3284), + [anon_sym___declspec] = ACTIONS(3282), + [anon_sym___based] = ACTIONS(3282), + [anon_sym___cdecl] = ACTIONS(3282), + [anon_sym___clrcall] = ACTIONS(3282), + [anon_sym___stdcall] = ACTIONS(3282), + [anon_sym___fastcall] = ACTIONS(3282), + [anon_sym___thiscall] = ACTIONS(3282), + [anon_sym___vectorcall] = ACTIONS(3282), + [anon_sym_LBRACE] = ACTIONS(3284), + [anon_sym_LBRACK] = ACTIONS(3282), + [anon_sym_static] = ACTIONS(3282), + [anon_sym_register] = ACTIONS(3282), + [anon_sym_inline] = ACTIONS(3282), + [anon_sym_thread_local] = ACTIONS(3282), + [anon_sym_const] = ACTIONS(3282), + [anon_sym_constexpr] = ACTIONS(3282), + [anon_sym_volatile] = ACTIONS(3282), + [anon_sym_restrict] = ACTIONS(3282), + [anon_sym___restrict__] = ACTIONS(3282), + [anon_sym__Atomic] = ACTIONS(3282), + [anon_sym__Noreturn] = ACTIONS(3282), + [anon_sym_noreturn] = ACTIONS(3282), + [anon_sym_mutable] = ACTIONS(3282), + [anon_sym_constinit] = ACTIONS(3282), + [anon_sym_consteval] = ACTIONS(3282), + [anon_sym_signed] = ACTIONS(3282), + [anon_sym_unsigned] = ACTIONS(3282), + [anon_sym_long] = ACTIONS(3282), + [anon_sym_short] = ACTIONS(3282), + [sym_primitive_type] = ACTIONS(3282), + [anon_sym_enum] = ACTIONS(3282), + [anon_sym_class] = ACTIONS(3282), + [anon_sym_struct] = ACTIONS(3282), + [anon_sym_union] = ACTIONS(3282), + [anon_sym_if] = ACTIONS(3282), + [anon_sym_switch] = ACTIONS(3282), + [anon_sym_case] = ACTIONS(3282), + [anon_sym_default] = ACTIONS(3282), + [anon_sym_while] = ACTIONS(3282), + [anon_sym_do] = ACTIONS(3282), + [anon_sym_for] = ACTIONS(3282), + [anon_sym_return] = ACTIONS(3282), + [anon_sym_break] = ACTIONS(3282), + [anon_sym_continue] = ACTIONS(3282), + [anon_sym_goto] = ACTIONS(3282), + [anon_sym_not] = ACTIONS(3282), + [anon_sym_compl] = ACTIONS(3282), + [anon_sym_DASH_DASH] = ACTIONS(3284), + [anon_sym_PLUS_PLUS] = ACTIONS(3284), + [anon_sym_sizeof] = ACTIONS(3282), + [anon_sym_offsetof] = ACTIONS(3282), + [anon_sym__Generic] = ACTIONS(3282), + [anon_sym_asm] = ACTIONS(3282), + [anon_sym___asm__] = ACTIONS(3282), + [sym_number_literal] = ACTIONS(3284), + [anon_sym_L_SQUOTE] = ACTIONS(3284), + [anon_sym_u_SQUOTE] = ACTIONS(3284), + [anon_sym_U_SQUOTE] = ACTIONS(3284), + [anon_sym_u8_SQUOTE] = ACTIONS(3284), + [anon_sym_SQUOTE] = ACTIONS(3284), + [anon_sym_L_DQUOTE] = ACTIONS(3284), + [anon_sym_u_DQUOTE] = ACTIONS(3284), + [anon_sym_U_DQUOTE] = ACTIONS(3284), + [anon_sym_u8_DQUOTE] = ACTIONS(3284), + [anon_sym_DQUOTE] = ACTIONS(3284), + [sym_true] = ACTIONS(3282), + [sym_false] = ACTIONS(3282), + [anon_sym_NULL] = ACTIONS(3282), + [anon_sym_nullptr] = ACTIONS(3282), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3282), + [anon_sym_decltype] = ACTIONS(3282), + [anon_sym_virtual] = ACTIONS(3282), + [anon_sym_explicit] = ACTIONS(3282), + [anon_sym_typename] = ACTIONS(3282), + [anon_sym_template] = ACTIONS(3282), + [anon_sym_operator] = ACTIONS(3282), + [anon_sym_try] = ACTIONS(3282), + [anon_sym_delete] = ACTIONS(3282), + [anon_sym_throw] = ACTIONS(3282), + [anon_sym_namespace] = ACTIONS(3282), + [anon_sym_using] = ACTIONS(3282), + [anon_sym_static_assert] = ACTIONS(3282), + [anon_sym_concept] = ACTIONS(3282), + [anon_sym_co_return] = ACTIONS(3282), + [anon_sym_co_yield] = ACTIONS(3282), + [anon_sym_R_DQUOTE] = ACTIONS(3284), + [anon_sym_LR_DQUOTE] = ACTIONS(3284), + [anon_sym_uR_DQUOTE] = ACTIONS(3284), + [anon_sym_UR_DQUOTE] = ACTIONS(3284), + [anon_sym_u8R_DQUOTE] = ACTIONS(3284), + [anon_sym_co_await] = ACTIONS(3282), + [anon_sym_new] = ACTIONS(3282), + [anon_sym_requires] = ACTIONS(3282), + [sym_this] = ACTIONS(3282), }, [1327] = { - [sym__expression] = STATE(2709), - [sym_conditional_expression] = STATE(3035), - [sym_assignment_expression] = STATE(3035), - [sym_pointer_expression] = STATE(2713), - [sym_unary_expression] = STATE(3035), - [sym_binary_expression] = STATE(3035), - [sym_update_expression] = STATE(3035), - [sym_cast_expression] = STATE(3035), - [sym_sizeof_expression] = STATE(3035), - [sym_subscript_expression] = STATE(2713), - [sym_call_expression] = STATE(2713), - [sym_field_expression] = STATE(2713), - [sym_compound_literal_expression] = STATE(3035), - [sym_parenthesized_expression] = STATE(2713), - [sym_char_literal] = STATE(3013), - [sym_concatenated_string] = STATE(3013), - [sym_string_literal] = STATE(1900), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5990), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3035), - [sym_raw_string_literal] = STATE(1900), - [sym_co_await_expression] = STATE(3035), - [sym_new_expression] = STATE(3035), - [sym_delete_expression] = STATE(3035), - [sym_requires_clause] = STATE(3035), - [sym_requires_expression] = STATE(3035), - [sym_lambda_expression] = STATE(3035), - [sym_lambda_capture_specifier] = STATE(4465), - [sym__unary_left_fold] = STATE(6131), - [sym__unary_right_fold] = STATE(6130), - [sym__binary_fold] = STATE(6129), - [sym_fold_expression] = STATE(3035), - [sym_parameter_pack_expansion] = STATE(3035), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4584), - [sym_qualified_identifier] = STATE(2713), - [sym_qualified_type_identifier] = STATE(5990), - [sym_user_defined_literal] = STATE(3035), - [sym_identifier] = ACTIONS(1643), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1435), - [anon_sym_LPAREN2] = ACTIONS(1439), - [anon_sym_BANG] = ACTIONS(1441), - [anon_sym_TILDE] = ACTIONS(1441), - [anon_sym_DASH] = ACTIONS(1443), - [anon_sym_PLUS] = ACTIONS(1443), - [anon_sym_STAR] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(1445), - [anon_sym_COLON_COLON] = ACTIONS(1447), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1581), - [anon_sym_not] = ACTIONS(1443), - [anon_sym_compl] = ACTIONS(1443), - [anon_sym_DASH_DASH] = ACTIONS(1459), - [anon_sym_PLUS_PLUS] = ACTIONS(1459), - [anon_sym_sizeof] = ACTIONS(1461), - [sym_number_literal] = ACTIONS(1463), - [anon_sym_L_SQUOTE] = ACTIONS(1465), - [anon_sym_u_SQUOTE] = ACTIONS(1465), - [anon_sym_U_SQUOTE] = ACTIONS(1465), - [anon_sym_u8_SQUOTE] = ACTIONS(1465), - [anon_sym_SQUOTE] = ACTIONS(1465), - [anon_sym_L_DQUOTE] = ACTIONS(1467), - [anon_sym_u_DQUOTE] = ACTIONS(1467), - [anon_sym_U_DQUOTE] = ACTIONS(1467), - [anon_sym_u8_DQUOTE] = ACTIONS(1467), - [anon_sym_DQUOTE] = ACTIONS(1467), - [sym_true] = ACTIONS(1469), - [sym_false] = ACTIONS(1469), - [sym_null] = ACTIONS(1469), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1473), - [anon_sym_R_DQUOTE] = ACTIONS(1475), - [anon_sym_LR_DQUOTE] = ACTIONS(1475), - [anon_sym_uR_DQUOTE] = ACTIONS(1475), - [anon_sym_UR_DQUOTE] = ACTIONS(1475), - [anon_sym_u8R_DQUOTE] = ACTIONS(1475), - [anon_sym_co_await] = ACTIONS(1477), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_requires] = ACTIONS(1481), - [sym_this] = ACTIONS(1469), - [sym_nullptr] = ACTIONS(1469), + [ts_builtin_sym_end] = ACTIONS(3356), + [sym_identifier] = ACTIONS(3354), + [aux_sym_preproc_include_token1] = ACTIONS(3354), + [aux_sym_preproc_def_token1] = ACTIONS(3354), + [aux_sym_preproc_if_token1] = ACTIONS(3354), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3354), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3354), + [sym_preproc_directive] = ACTIONS(3354), + [anon_sym_LPAREN2] = ACTIONS(3356), + [anon_sym_BANG] = ACTIONS(3356), + [anon_sym_TILDE] = ACTIONS(3356), + [anon_sym_DASH] = ACTIONS(3354), + [anon_sym_PLUS] = ACTIONS(3354), + [anon_sym_STAR] = ACTIONS(3356), + [anon_sym_AMP_AMP] = ACTIONS(3356), + [anon_sym_AMP] = ACTIONS(3354), + [anon_sym_typedef] = ACTIONS(3354), + [anon_sym_extern] = ACTIONS(3354), + [anon_sym___attribute__] = ACTIONS(3354), + [anon_sym_COLON_COLON] = ACTIONS(3356), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3356), + [anon_sym___declspec] = ACTIONS(3354), + [anon_sym___based] = ACTIONS(3354), + [anon_sym___cdecl] = ACTIONS(3354), + [anon_sym___clrcall] = ACTIONS(3354), + [anon_sym___stdcall] = ACTIONS(3354), + [anon_sym___fastcall] = ACTIONS(3354), + [anon_sym___thiscall] = ACTIONS(3354), + [anon_sym___vectorcall] = ACTIONS(3354), + [anon_sym_LBRACE] = ACTIONS(3356), + [anon_sym_LBRACK] = ACTIONS(3354), + [anon_sym_static] = ACTIONS(3354), + [anon_sym_register] = ACTIONS(3354), + [anon_sym_inline] = ACTIONS(3354), + [anon_sym_thread_local] = ACTIONS(3354), + [anon_sym_const] = ACTIONS(3354), + [anon_sym_constexpr] = ACTIONS(3354), + [anon_sym_volatile] = ACTIONS(3354), + [anon_sym_restrict] = ACTIONS(3354), + [anon_sym___restrict__] = ACTIONS(3354), + [anon_sym__Atomic] = ACTIONS(3354), + [anon_sym__Noreturn] = ACTIONS(3354), + [anon_sym_noreturn] = ACTIONS(3354), + [anon_sym_mutable] = ACTIONS(3354), + [anon_sym_constinit] = ACTIONS(3354), + [anon_sym_consteval] = ACTIONS(3354), + [anon_sym_signed] = ACTIONS(3354), + [anon_sym_unsigned] = ACTIONS(3354), + [anon_sym_long] = ACTIONS(3354), + [anon_sym_short] = ACTIONS(3354), + [sym_primitive_type] = ACTIONS(3354), + [anon_sym_enum] = ACTIONS(3354), + [anon_sym_class] = ACTIONS(3354), + [anon_sym_struct] = ACTIONS(3354), + [anon_sym_union] = ACTIONS(3354), + [anon_sym_if] = ACTIONS(3354), + [anon_sym_switch] = ACTIONS(3354), + [anon_sym_case] = ACTIONS(3354), + [anon_sym_default] = ACTIONS(3354), + [anon_sym_while] = ACTIONS(3354), + [anon_sym_do] = ACTIONS(3354), + [anon_sym_for] = ACTIONS(3354), + [anon_sym_return] = ACTIONS(3354), + [anon_sym_break] = ACTIONS(3354), + [anon_sym_continue] = ACTIONS(3354), + [anon_sym_goto] = ACTIONS(3354), + [anon_sym_not] = ACTIONS(3354), + [anon_sym_compl] = ACTIONS(3354), + [anon_sym_DASH_DASH] = ACTIONS(3356), + [anon_sym_PLUS_PLUS] = ACTIONS(3356), + [anon_sym_sizeof] = ACTIONS(3354), + [anon_sym_offsetof] = ACTIONS(3354), + [anon_sym__Generic] = ACTIONS(3354), + [anon_sym_asm] = ACTIONS(3354), + [anon_sym___asm__] = ACTIONS(3354), + [sym_number_literal] = ACTIONS(3356), + [anon_sym_L_SQUOTE] = ACTIONS(3356), + [anon_sym_u_SQUOTE] = ACTIONS(3356), + [anon_sym_U_SQUOTE] = ACTIONS(3356), + [anon_sym_u8_SQUOTE] = ACTIONS(3356), + [anon_sym_SQUOTE] = ACTIONS(3356), + [anon_sym_L_DQUOTE] = ACTIONS(3356), + [anon_sym_u_DQUOTE] = ACTIONS(3356), + [anon_sym_U_DQUOTE] = ACTIONS(3356), + [anon_sym_u8_DQUOTE] = ACTIONS(3356), + [anon_sym_DQUOTE] = ACTIONS(3356), + [sym_true] = ACTIONS(3354), + [sym_false] = ACTIONS(3354), + [anon_sym_NULL] = ACTIONS(3354), + [anon_sym_nullptr] = ACTIONS(3354), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3354), + [anon_sym_decltype] = ACTIONS(3354), + [anon_sym_virtual] = ACTIONS(3354), + [anon_sym_explicit] = ACTIONS(3354), + [anon_sym_typename] = ACTIONS(3354), + [anon_sym_template] = ACTIONS(3354), + [anon_sym_operator] = ACTIONS(3354), + [anon_sym_try] = ACTIONS(3354), + [anon_sym_delete] = ACTIONS(3354), + [anon_sym_throw] = ACTIONS(3354), + [anon_sym_namespace] = ACTIONS(3354), + [anon_sym_using] = ACTIONS(3354), + [anon_sym_static_assert] = ACTIONS(3354), + [anon_sym_concept] = ACTIONS(3354), + [anon_sym_co_return] = ACTIONS(3354), + [anon_sym_co_yield] = ACTIONS(3354), + [anon_sym_R_DQUOTE] = ACTIONS(3356), + [anon_sym_LR_DQUOTE] = ACTIONS(3356), + [anon_sym_uR_DQUOTE] = ACTIONS(3356), + [anon_sym_UR_DQUOTE] = ACTIONS(3356), + [anon_sym_u8R_DQUOTE] = ACTIONS(3356), + [anon_sym_co_await] = ACTIONS(3354), + [anon_sym_new] = ACTIONS(3354), + [anon_sym_requires] = ACTIONS(3354), + [sym_this] = ACTIONS(3354), }, [1328] = { - [sym__expression] = STATE(3526), - [sym_comma_expression] = STATE(6347), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_initializer_list] = STATE(6347), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2954), - [anon_sym_LPAREN2] = ACTIONS(984), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(3412), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1489), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [ts_builtin_sym_end] = ACTIONS(3457), + [sym_identifier] = ACTIONS(3455), + [aux_sym_preproc_include_token1] = ACTIONS(3455), + [aux_sym_preproc_def_token1] = ACTIONS(3455), + [aux_sym_preproc_if_token1] = ACTIONS(3455), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3455), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3455), + [sym_preproc_directive] = ACTIONS(3455), + [anon_sym_LPAREN2] = ACTIONS(3457), + [anon_sym_BANG] = ACTIONS(3457), + [anon_sym_TILDE] = ACTIONS(3457), + [anon_sym_DASH] = ACTIONS(3455), + [anon_sym_PLUS] = ACTIONS(3455), + [anon_sym_STAR] = ACTIONS(3457), + [anon_sym_AMP_AMP] = ACTIONS(3457), + [anon_sym_AMP] = ACTIONS(3455), + [anon_sym_typedef] = ACTIONS(3455), + [anon_sym_extern] = ACTIONS(3455), + [anon_sym___attribute__] = ACTIONS(3455), + [anon_sym_COLON_COLON] = ACTIONS(3457), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3457), + [anon_sym___declspec] = ACTIONS(3455), + [anon_sym___based] = ACTIONS(3455), + [anon_sym___cdecl] = ACTIONS(3455), + [anon_sym___clrcall] = ACTIONS(3455), + [anon_sym___stdcall] = ACTIONS(3455), + [anon_sym___fastcall] = ACTIONS(3455), + [anon_sym___thiscall] = ACTIONS(3455), + [anon_sym___vectorcall] = ACTIONS(3455), + [anon_sym_LBRACE] = ACTIONS(3457), + [anon_sym_LBRACK] = ACTIONS(3455), + [anon_sym_static] = ACTIONS(3455), + [anon_sym_register] = ACTIONS(3455), + [anon_sym_inline] = ACTIONS(3455), + [anon_sym_thread_local] = ACTIONS(3455), + [anon_sym_const] = ACTIONS(3455), + [anon_sym_constexpr] = ACTIONS(3455), + [anon_sym_volatile] = ACTIONS(3455), + [anon_sym_restrict] = ACTIONS(3455), + [anon_sym___restrict__] = ACTIONS(3455), + [anon_sym__Atomic] = ACTIONS(3455), + [anon_sym__Noreturn] = ACTIONS(3455), + [anon_sym_noreturn] = ACTIONS(3455), + [anon_sym_mutable] = ACTIONS(3455), + [anon_sym_constinit] = ACTIONS(3455), + [anon_sym_consteval] = ACTIONS(3455), + [anon_sym_signed] = ACTIONS(3455), + [anon_sym_unsigned] = ACTIONS(3455), + [anon_sym_long] = ACTIONS(3455), + [anon_sym_short] = ACTIONS(3455), + [sym_primitive_type] = ACTIONS(3455), + [anon_sym_enum] = ACTIONS(3455), + [anon_sym_class] = ACTIONS(3455), + [anon_sym_struct] = ACTIONS(3455), + [anon_sym_union] = ACTIONS(3455), + [anon_sym_if] = ACTIONS(3455), + [anon_sym_switch] = ACTIONS(3455), + [anon_sym_case] = ACTIONS(3455), + [anon_sym_default] = ACTIONS(3455), + [anon_sym_while] = ACTIONS(3455), + [anon_sym_do] = ACTIONS(3455), + [anon_sym_for] = ACTIONS(3455), + [anon_sym_return] = ACTIONS(3455), + [anon_sym_break] = ACTIONS(3455), + [anon_sym_continue] = ACTIONS(3455), + [anon_sym_goto] = ACTIONS(3455), + [anon_sym_not] = ACTIONS(3455), + [anon_sym_compl] = ACTIONS(3455), + [anon_sym_DASH_DASH] = ACTIONS(3457), + [anon_sym_PLUS_PLUS] = ACTIONS(3457), + [anon_sym_sizeof] = ACTIONS(3455), + [anon_sym_offsetof] = ACTIONS(3455), + [anon_sym__Generic] = ACTIONS(3455), + [anon_sym_asm] = ACTIONS(3455), + [anon_sym___asm__] = ACTIONS(3455), + [sym_number_literal] = ACTIONS(3457), + [anon_sym_L_SQUOTE] = ACTIONS(3457), + [anon_sym_u_SQUOTE] = ACTIONS(3457), + [anon_sym_U_SQUOTE] = ACTIONS(3457), + [anon_sym_u8_SQUOTE] = ACTIONS(3457), + [anon_sym_SQUOTE] = ACTIONS(3457), + [anon_sym_L_DQUOTE] = ACTIONS(3457), + [anon_sym_u_DQUOTE] = ACTIONS(3457), + [anon_sym_U_DQUOTE] = ACTIONS(3457), + [anon_sym_u8_DQUOTE] = ACTIONS(3457), + [anon_sym_DQUOTE] = ACTIONS(3457), + [sym_true] = ACTIONS(3455), + [sym_false] = ACTIONS(3455), + [anon_sym_NULL] = ACTIONS(3455), + [anon_sym_nullptr] = ACTIONS(3455), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3455), + [anon_sym_decltype] = ACTIONS(3455), + [anon_sym_virtual] = ACTIONS(3455), + [anon_sym_explicit] = ACTIONS(3455), + [anon_sym_typename] = ACTIONS(3455), + [anon_sym_template] = ACTIONS(3455), + [anon_sym_operator] = ACTIONS(3455), + [anon_sym_try] = ACTIONS(3455), + [anon_sym_delete] = ACTIONS(3455), + [anon_sym_throw] = ACTIONS(3455), + [anon_sym_namespace] = ACTIONS(3455), + [anon_sym_using] = ACTIONS(3455), + [anon_sym_static_assert] = ACTIONS(3455), + [anon_sym_concept] = ACTIONS(3455), + [anon_sym_co_return] = ACTIONS(3455), + [anon_sym_co_yield] = ACTIONS(3455), + [anon_sym_R_DQUOTE] = ACTIONS(3457), + [anon_sym_LR_DQUOTE] = ACTIONS(3457), + [anon_sym_uR_DQUOTE] = ACTIONS(3457), + [anon_sym_UR_DQUOTE] = ACTIONS(3457), + [anon_sym_u8R_DQUOTE] = ACTIONS(3457), + [anon_sym_co_await] = ACTIONS(3455), + [anon_sym_new] = ACTIONS(3455), + [anon_sym_requires] = ACTIONS(3455), + [sym_this] = ACTIONS(3455), }, [1329] = { - [sym__expression] = STATE(2820), - [sym_conditional_expression] = STATE(3035), - [sym_assignment_expression] = STATE(3035), - [sym_pointer_expression] = STATE(2713), - [sym_unary_expression] = STATE(3035), - [sym_binary_expression] = STATE(3035), - [sym_update_expression] = STATE(3035), - [sym_cast_expression] = STATE(3035), - [sym_sizeof_expression] = STATE(3035), - [sym_subscript_expression] = STATE(2713), - [sym_call_expression] = STATE(2713), - [sym_field_expression] = STATE(2713), - [sym_compound_literal_expression] = STATE(3035), - [sym_parenthesized_expression] = STATE(2713), - [sym_char_literal] = STATE(3013), - [sym_concatenated_string] = STATE(3013), - [sym_string_literal] = STATE(1900), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5990), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3035), - [sym_raw_string_literal] = STATE(1900), - [sym_co_await_expression] = STATE(3035), - [sym_new_expression] = STATE(3035), - [sym_delete_expression] = STATE(3035), - [sym_requires_clause] = STATE(3035), - [sym_requires_expression] = STATE(3035), - [sym_lambda_expression] = STATE(3035), - [sym_lambda_capture_specifier] = STATE(4465), - [sym__unary_left_fold] = STATE(6259), - [sym__unary_right_fold] = STATE(6262), - [sym__binary_fold] = STATE(6267), - [sym_fold_expression] = STATE(3035), - [sym_parameter_pack_expansion] = STATE(3035), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4584), - [sym_qualified_identifier] = STATE(2713), - [sym_qualified_type_identifier] = STATE(5990), - [sym_user_defined_literal] = STATE(3035), - [sym_identifier] = ACTIONS(1643), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1435), - [anon_sym_LPAREN2] = ACTIONS(1439), - [anon_sym_BANG] = ACTIONS(1441), - [anon_sym_TILDE] = ACTIONS(1441), - [anon_sym_DASH] = ACTIONS(1443), - [anon_sym_PLUS] = ACTIONS(1443), - [anon_sym_STAR] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(1445), - [anon_sym_COLON_COLON] = ACTIONS(1447), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1581), - [anon_sym_not] = ACTIONS(1443), - [anon_sym_compl] = ACTIONS(1443), - [anon_sym_DASH_DASH] = ACTIONS(1459), - [anon_sym_PLUS_PLUS] = ACTIONS(1459), - [anon_sym_sizeof] = ACTIONS(1461), - [sym_number_literal] = ACTIONS(1463), - [anon_sym_L_SQUOTE] = ACTIONS(1465), - [anon_sym_u_SQUOTE] = ACTIONS(1465), - [anon_sym_U_SQUOTE] = ACTIONS(1465), - [anon_sym_u8_SQUOTE] = ACTIONS(1465), - [anon_sym_SQUOTE] = ACTIONS(1465), - [anon_sym_L_DQUOTE] = ACTIONS(1467), - [anon_sym_u_DQUOTE] = ACTIONS(1467), - [anon_sym_U_DQUOTE] = ACTIONS(1467), - [anon_sym_u8_DQUOTE] = ACTIONS(1467), - [anon_sym_DQUOTE] = ACTIONS(1467), - [sym_true] = ACTIONS(1469), - [sym_false] = ACTIONS(1469), - [sym_null] = ACTIONS(1469), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1473), - [anon_sym_R_DQUOTE] = ACTIONS(1475), - [anon_sym_LR_DQUOTE] = ACTIONS(1475), - [anon_sym_uR_DQUOTE] = ACTIONS(1475), - [anon_sym_UR_DQUOTE] = ACTIONS(1475), - [anon_sym_u8R_DQUOTE] = ACTIONS(1475), - [anon_sym_co_await] = ACTIONS(1477), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_requires] = ACTIONS(1481), - [sym_this] = ACTIONS(1469), - [sym_nullptr] = ACTIONS(1469), + [ts_builtin_sym_end] = ACTIONS(3405), + [sym_identifier] = ACTIONS(3403), + [aux_sym_preproc_include_token1] = ACTIONS(3403), + [aux_sym_preproc_def_token1] = ACTIONS(3403), + [aux_sym_preproc_if_token1] = ACTIONS(3403), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3403), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3403), + [sym_preproc_directive] = ACTIONS(3403), + [anon_sym_LPAREN2] = ACTIONS(3405), + [anon_sym_BANG] = ACTIONS(3405), + [anon_sym_TILDE] = ACTIONS(3405), + [anon_sym_DASH] = ACTIONS(3403), + [anon_sym_PLUS] = ACTIONS(3403), + [anon_sym_STAR] = ACTIONS(3405), + [anon_sym_AMP_AMP] = ACTIONS(3405), + [anon_sym_AMP] = ACTIONS(3403), + [anon_sym_typedef] = ACTIONS(3403), + [anon_sym_extern] = ACTIONS(3403), + [anon_sym___attribute__] = ACTIONS(3403), + [anon_sym_COLON_COLON] = ACTIONS(3405), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3405), + [anon_sym___declspec] = ACTIONS(3403), + [anon_sym___based] = ACTIONS(3403), + [anon_sym___cdecl] = ACTIONS(3403), + [anon_sym___clrcall] = ACTIONS(3403), + [anon_sym___stdcall] = ACTIONS(3403), + [anon_sym___fastcall] = ACTIONS(3403), + [anon_sym___thiscall] = ACTIONS(3403), + [anon_sym___vectorcall] = ACTIONS(3403), + [anon_sym_LBRACE] = ACTIONS(3405), + [anon_sym_LBRACK] = ACTIONS(3403), + [anon_sym_static] = ACTIONS(3403), + [anon_sym_register] = ACTIONS(3403), + [anon_sym_inline] = ACTIONS(3403), + [anon_sym_thread_local] = ACTIONS(3403), + [anon_sym_const] = ACTIONS(3403), + [anon_sym_constexpr] = ACTIONS(3403), + [anon_sym_volatile] = ACTIONS(3403), + [anon_sym_restrict] = ACTIONS(3403), + [anon_sym___restrict__] = ACTIONS(3403), + [anon_sym__Atomic] = ACTIONS(3403), + [anon_sym__Noreturn] = ACTIONS(3403), + [anon_sym_noreturn] = ACTIONS(3403), + [anon_sym_mutable] = ACTIONS(3403), + [anon_sym_constinit] = ACTIONS(3403), + [anon_sym_consteval] = ACTIONS(3403), + [anon_sym_signed] = ACTIONS(3403), + [anon_sym_unsigned] = ACTIONS(3403), + [anon_sym_long] = ACTIONS(3403), + [anon_sym_short] = ACTIONS(3403), + [sym_primitive_type] = ACTIONS(3403), + [anon_sym_enum] = ACTIONS(3403), + [anon_sym_class] = ACTIONS(3403), + [anon_sym_struct] = ACTIONS(3403), + [anon_sym_union] = ACTIONS(3403), + [anon_sym_if] = ACTIONS(3403), + [anon_sym_switch] = ACTIONS(3403), + [anon_sym_case] = ACTIONS(3403), + [anon_sym_default] = ACTIONS(3403), + [anon_sym_while] = ACTIONS(3403), + [anon_sym_do] = ACTIONS(3403), + [anon_sym_for] = ACTIONS(3403), + [anon_sym_return] = ACTIONS(3403), + [anon_sym_break] = ACTIONS(3403), + [anon_sym_continue] = ACTIONS(3403), + [anon_sym_goto] = ACTIONS(3403), + [anon_sym_not] = ACTIONS(3403), + [anon_sym_compl] = ACTIONS(3403), + [anon_sym_DASH_DASH] = ACTIONS(3405), + [anon_sym_PLUS_PLUS] = ACTIONS(3405), + [anon_sym_sizeof] = ACTIONS(3403), + [anon_sym_offsetof] = ACTIONS(3403), + [anon_sym__Generic] = ACTIONS(3403), + [anon_sym_asm] = ACTIONS(3403), + [anon_sym___asm__] = ACTIONS(3403), + [sym_number_literal] = ACTIONS(3405), + [anon_sym_L_SQUOTE] = ACTIONS(3405), + [anon_sym_u_SQUOTE] = ACTIONS(3405), + [anon_sym_U_SQUOTE] = ACTIONS(3405), + [anon_sym_u8_SQUOTE] = ACTIONS(3405), + [anon_sym_SQUOTE] = ACTIONS(3405), + [anon_sym_L_DQUOTE] = ACTIONS(3405), + [anon_sym_u_DQUOTE] = ACTIONS(3405), + [anon_sym_U_DQUOTE] = ACTIONS(3405), + [anon_sym_u8_DQUOTE] = ACTIONS(3405), + [anon_sym_DQUOTE] = ACTIONS(3405), + [sym_true] = ACTIONS(3403), + [sym_false] = ACTIONS(3403), + [anon_sym_NULL] = ACTIONS(3403), + [anon_sym_nullptr] = ACTIONS(3403), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3403), + [anon_sym_decltype] = ACTIONS(3403), + [anon_sym_virtual] = ACTIONS(3403), + [anon_sym_explicit] = ACTIONS(3403), + [anon_sym_typename] = ACTIONS(3403), + [anon_sym_template] = ACTIONS(3403), + [anon_sym_operator] = ACTIONS(3403), + [anon_sym_try] = ACTIONS(3403), + [anon_sym_delete] = ACTIONS(3403), + [anon_sym_throw] = ACTIONS(3403), + [anon_sym_namespace] = ACTIONS(3403), + [anon_sym_using] = ACTIONS(3403), + [anon_sym_static_assert] = ACTIONS(3403), + [anon_sym_concept] = ACTIONS(3403), + [anon_sym_co_return] = ACTIONS(3403), + [anon_sym_co_yield] = ACTIONS(3403), + [anon_sym_R_DQUOTE] = ACTIONS(3405), + [anon_sym_LR_DQUOTE] = ACTIONS(3405), + [anon_sym_uR_DQUOTE] = ACTIONS(3405), + [anon_sym_UR_DQUOTE] = ACTIONS(3405), + [anon_sym_u8R_DQUOTE] = ACTIONS(3405), + [anon_sym_co_await] = ACTIONS(3403), + [anon_sym_new] = ACTIONS(3403), + [anon_sym_requires] = ACTIONS(3403), + [sym_this] = ACTIONS(3403), }, [1330] = { - [sym__expression] = STATE(3500), - [sym_comma_expression] = STATE(6620), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_initializer_list] = STATE(6620), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2954), - [anon_sym_LPAREN2] = ACTIONS(984), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(3414), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1489), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [ts_builtin_sym_end] = ACTIONS(3393), + [sym_identifier] = ACTIONS(3391), + [aux_sym_preproc_include_token1] = ACTIONS(3391), + [aux_sym_preproc_def_token1] = ACTIONS(3391), + [aux_sym_preproc_if_token1] = ACTIONS(3391), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3391), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3391), + [sym_preproc_directive] = ACTIONS(3391), + [anon_sym_LPAREN2] = ACTIONS(3393), + [anon_sym_BANG] = ACTIONS(3393), + [anon_sym_TILDE] = ACTIONS(3393), + [anon_sym_DASH] = ACTIONS(3391), + [anon_sym_PLUS] = ACTIONS(3391), + [anon_sym_STAR] = ACTIONS(3393), + [anon_sym_AMP_AMP] = ACTIONS(3393), + [anon_sym_AMP] = ACTIONS(3391), + [anon_sym_typedef] = ACTIONS(3391), + [anon_sym_extern] = ACTIONS(3391), + [anon_sym___attribute__] = ACTIONS(3391), + [anon_sym_COLON_COLON] = ACTIONS(3393), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3393), + [anon_sym___declspec] = ACTIONS(3391), + [anon_sym___based] = ACTIONS(3391), + [anon_sym___cdecl] = ACTIONS(3391), + [anon_sym___clrcall] = ACTIONS(3391), + [anon_sym___stdcall] = ACTIONS(3391), + [anon_sym___fastcall] = ACTIONS(3391), + [anon_sym___thiscall] = ACTIONS(3391), + [anon_sym___vectorcall] = ACTIONS(3391), + [anon_sym_LBRACE] = ACTIONS(3393), + [anon_sym_LBRACK] = ACTIONS(3391), + [anon_sym_static] = ACTIONS(3391), + [anon_sym_register] = ACTIONS(3391), + [anon_sym_inline] = ACTIONS(3391), + [anon_sym_thread_local] = ACTIONS(3391), + [anon_sym_const] = ACTIONS(3391), + [anon_sym_constexpr] = ACTIONS(3391), + [anon_sym_volatile] = ACTIONS(3391), + [anon_sym_restrict] = ACTIONS(3391), + [anon_sym___restrict__] = ACTIONS(3391), + [anon_sym__Atomic] = ACTIONS(3391), + [anon_sym__Noreturn] = ACTIONS(3391), + [anon_sym_noreturn] = ACTIONS(3391), + [anon_sym_mutable] = ACTIONS(3391), + [anon_sym_constinit] = ACTIONS(3391), + [anon_sym_consteval] = ACTIONS(3391), + [anon_sym_signed] = ACTIONS(3391), + [anon_sym_unsigned] = ACTIONS(3391), + [anon_sym_long] = ACTIONS(3391), + [anon_sym_short] = ACTIONS(3391), + [sym_primitive_type] = ACTIONS(3391), + [anon_sym_enum] = ACTIONS(3391), + [anon_sym_class] = ACTIONS(3391), + [anon_sym_struct] = ACTIONS(3391), + [anon_sym_union] = ACTIONS(3391), + [anon_sym_if] = ACTIONS(3391), + [anon_sym_switch] = ACTIONS(3391), + [anon_sym_case] = ACTIONS(3391), + [anon_sym_default] = ACTIONS(3391), + [anon_sym_while] = ACTIONS(3391), + [anon_sym_do] = ACTIONS(3391), + [anon_sym_for] = ACTIONS(3391), + [anon_sym_return] = ACTIONS(3391), + [anon_sym_break] = ACTIONS(3391), + [anon_sym_continue] = ACTIONS(3391), + [anon_sym_goto] = ACTIONS(3391), + [anon_sym_not] = ACTIONS(3391), + [anon_sym_compl] = ACTIONS(3391), + [anon_sym_DASH_DASH] = ACTIONS(3393), + [anon_sym_PLUS_PLUS] = ACTIONS(3393), + [anon_sym_sizeof] = ACTIONS(3391), + [anon_sym_offsetof] = ACTIONS(3391), + [anon_sym__Generic] = ACTIONS(3391), + [anon_sym_asm] = ACTIONS(3391), + [anon_sym___asm__] = ACTIONS(3391), + [sym_number_literal] = ACTIONS(3393), + [anon_sym_L_SQUOTE] = ACTIONS(3393), + [anon_sym_u_SQUOTE] = ACTIONS(3393), + [anon_sym_U_SQUOTE] = ACTIONS(3393), + [anon_sym_u8_SQUOTE] = ACTIONS(3393), + [anon_sym_SQUOTE] = ACTIONS(3393), + [anon_sym_L_DQUOTE] = ACTIONS(3393), + [anon_sym_u_DQUOTE] = ACTIONS(3393), + [anon_sym_U_DQUOTE] = ACTIONS(3393), + [anon_sym_u8_DQUOTE] = ACTIONS(3393), + [anon_sym_DQUOTE] = ACTIONS(3393), + [sym_true] = ACTIONS(3391), + [sym_false] = ACTIONS(3391), + [anon_sym_NULL] = ACTIONS(3391), + [anon_sym_nullptr] = ACTIONS(3391), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3391), + [anon_sym_decltype] = ACTIONS(3391), + [anon_sym_virtual] = ACTIONS(3391), + [anon_sym_explicit] = ACTIONS(3391), + [anon_sym_typename] = ACTIONS(3391), + [anon_sym_template] = ACTIONS(3391), + [anon_sym_operator] = ACTIONS(3391), + [anon_sym_try] = ACTIONS(3391), + [anon_sym_delete] = ACTIONS(3391), + [anon_sym_throw] = ACTIONS(3391), + [anon_sym_namespace] = ACTIONS(3391), + [anon_sym_using] = ACTIONS(3391), + [anon_sym_static_assert] = ACTIONS(3391), + [anon_sym_concept] = ACTIONS(3391), + [anon_sym_co_return] = ACTIONS(3391), + [anon_sym_co_yield] = ACTIONS(3391), + [anon_sym_R_DQUOTE] = ACTIONS(3393), + [anon_sym_LR_DQUOTE] = ACTIONS(3393), + [anon_sym_uR_DQUOTE] = ACTIONS(3393), + [anon_sym_UR_DQUOTE] = ACTIONS(3393), + [anon_sym_u8R_DQUOTE] = ACTIONS(3393), + [anon_sym_co_await] = ACTIONS(3391), + [anon_sym_new] = ACTIONS(3391), + [anon_sym_requires] = ACTIONS(3391), + [sym_this] = ACTIONS(3391), }, [1331] = { - [sym__expression] = STATE(3429), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2954), - [anon_sym_LPAREN2] = ACTIONS(3416), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(3416), - [anon_sym_AMP_AMP] = ACTIONS(3416), - [anon_sym_AMP] = ACTIONS(3418), - [anon_sym_LT] = ACTIONS(3416), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(3416), - [anon_sym_LBRACK] = ACTIONS(3416), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [ts_builtin_sym_end] = ACTIONS(3260), + [sym_identifier] = ACTIONS(3258), + [aux_sym_preproc_include_token1] = ACTIONS(3258), + [aux_sym_preproc_def_token1] = ACTIONS(3258), + [aux_sym_preproc_if_token1] = ACTIONS(3258), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3258), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3258), + [sym_preproc_directive] = ACTIONS(3258), + [anon_sym_LPAREN2] = ACTIONS(3260), + [anon_sym_BANG] = ACTIONS(3260), + [anon_sym_TILDE] = ACTIONS(3260), + [anon_sym_DASH] = ACTIONS(3258), + [anon_sym_PLUS] = ACTIONS(3258), + [anon_sym_STAR] = ACTIONS(3260), + [anon_sym_AMP_AMP] = ACTIONS(3260), + [anon_sym_AMP] = ACTIONS(3258), + [anon_sym_typedef] = ACTIONS(3258), + [anon_sym_extern] = ACTIONS(3258), + [anon_sym___attribute__] = ACTIONS(3258), + [anon_sym_COLON_COLON] = ACTIONS(3260), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3260), + [anon_sym___declspec] = ACTIONS(3258), + [anon_sym___based] = ACTIONS(3258), + [anon_sym___cdecl] = ACTIONS(3258), + [anon_sym___clrcall] = ACTIONS(3258), + [anon_sym___stdcall] = ACTIONS(3258), + [anon_sym___fastcall] = ACTIONS(3258), + [anon_sym___thiscall] = ACTIONS(3258), + [anon_sym___vectorcall] = ACTIONS(3258), + [anon_sym_LBRACE] = ACTIONS(3260), + [anon_sym_LBRACK] = ACTIONS(3258), + [anon_sym_static] = ACTIONS(3258), + [anon_sym_register] = ACTIONS(3258), + [anon_sym_inline] = ACTIONS(3258), + [anon_sym_thread_local] = ACTIONS(3258), + [anon_sym_const] = ACTIONS(3258), + [anon_sym_constexpr] = ACTIONS(3258), + [anon_sym_volatile] = ACTIONS(3258), + [anon_sym_restrict] = ACTIONS(3258), + [anon_sym___restrict__] = ACTIONS(3258), + [anon_sym__Atomic] = ACTIONS(3258), + [anon_sym__Noreturn] = ACTIONS(3258), + [anon_sym_noreturn] = ACTIONS(3258), + [anon_sym_mutable] = ACTIONS(3258), + [anon_sym_constinit] = ACTIONS(3258), + [anon_sym_consteval] = ACTIONS(3258), + [anon_sym_signed] = ACTIONS(3258), + [anon_sym_unsigned] = ACTIONS(3258), + [anon_sym_long] = ACTIONS(3258), + [anon_sym_short] = ACTIONS(3258), + [sym_primitive_type] = ACTIONS(3258), + [anon_sym_enum] = ACTIONS(3258), + [anon_sym_class] = ACTIONS(3258), + [anon_sym_struct] = ACTIONS(3258), + [anon_sym_union] = ACTIONS(3258), + [anon_sym_if] = ACTIONS(3258), + [anon_sym_switch] = ACTIONS(3258), + [anon_sym_case] = ACTIONS(3258), + [anon_sym_default] = ACTIONS(3258), + [anon_sym_while] = ACTIONS(3258), + [anon_sym_do] = ACTIONS(3258), + [anon_sym_for] = ACTIONS(3258), + [anon_sym_return] = ACTIONS(3258), + [anon_sym_break] = ACTIONS(3258), + [anon_sym_continue] = ACTIONS(3258), + [anon_sym_goto] = ACTIONS(3258), + [anon_sym_not] = ACTIONS(3258), + [anon_sym_compl] = ACTIONS(3258), + [anon_sym_DASH_DASH] = ACTIONS(3260), + [anon_sym_PLUS_PLUS] = ACTIONS(3260), + [anon_sym_sizeof] = ACTIONS(3258), + [anon_sym_offsetof] = ACTIONS(3258), + [anon_sym__Generic] = ACTIONS(3258), + [anon_sym_asm] = ACTIONS(3258), + [anon_sym___asm__] = ACTIONS(3258), + [sym_number_literal] = ACTIONS(3260), + [anon_sym_L_SQUOTE] = ACTIONS(3260), + [anon_sym_u_SQUOTE] = ACTIONS(3260), + [anon_sym_U_SQUOTE] = ACTIONS(3260), + [anon_sym_u8_SQUOTE] = ACTIONS(3260), + [anon_sym_SQUOTE] = ACTIONS(3260), + [anon_sym_L_DQUOTE] = ACTIONS(3260), + [anon_sym_u_DQUOTE] = ACTIONS(3260), + [anon_sym_U_DQUOTE] = ACTIONS(3260), + [anon_sym_u8_DQUOTE] = ACTIONS(3260), + [anon_sym_DQUOTE] = ACTIONS(3260), + [sym_true] = ACTIONS(3258), + [sym_false] = ACTIONS(3258), + [anon_sym_NULL] = ACTIONS(3258), + [anon_sym_nullptr] = ACTIONS(3258), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3258), + [anon_sym_decltype] = ACTIONS(3258), + [anon_sym_virtual] = ACTIONS(3258), + [anon_sym_explicit] = ACTIONS(3258), + [anon_sym_typename] = ACTIONS(3258), + [anon_sym_template] = ACTIONS(3258), + [anon_sym_operator] = ACTIONS(3258), + [anon_sym_try] = ACTIONS(3258), + [anon_sym_delete] = ACTIONS(3258), + [anon_sym_throw] = ACTIONS(3258), + [anon_sym_namespace] = ACTIONS(3258), + [anon_sym_using] = ACTIONS(3258), + [anon_sym_static_assert] = ACTIONS(3258), + [anon_sym_concept] = ACTIONS(3258), + [anon_sym_co_return] = ACTIONS(3258), + [anon_sym_co_yield] = ACTIONS(3258), + [anon_sym_R_DQUOTE] = ACTIONS(3260), + [anon_sym_LR_DQUOTE] = ACTIONS(3260), + [anon_sym_uR_DQUOTE] = ACTIONS(3260), + [anon_sym_UR_DQUOTE] = ACTIONS(3260), + [anon_sym_u8R_DQUOTE] = ACTIONS(3260), + [anon_sym_co_await] = ACTIONS(3258), + [anon_sym_new] = ACTIONS(3258), + [anon_sym_requires] = ACTIONS(3258), + [sym_this] = ACTIONS(3258), }, [1332] = { - [sym__expression] = STATE(3436), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2954), - [anon_sym_LPAREN2] = ACTIONS(3416), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(3416), - [anon_sym_AMP_AMP] = ACTIONS(3416), - [anon_sym_AMP] = ACTIONS(3418), - [anon_sym_LT] = ACTIONS(3416), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(3416), - [anon_sym_LBRACK] = ACTIONS(3416), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [ts_builtin_sym_end] = ACTIONS(3378), + [sym_identifier] = ACTIONS(3376), + [aux_sym_preproc_include_token1] = ACTIONS(3376), + [aux_sym_preproc_def_token1] = ACTIONS(3376), + [aux_sym_preproc_if_token1] = ACTIONS(3376), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3376), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3376), + [sym_preproc_directive] = ACTIONS(3376), + [anon_sym_LPAREN2] = ACTIONS(3378), + [anon_sym_BANG] = ACTIONS(3378), + [anon_sym_TILDE] = ACTIONS(3378), + [anon_sym_DASH] = ACTIONS(3376), + [anon_sym_PLUS] = ACTIONS(3376), + [anon_sym_STAR] = ACTIONS(3378), + [anon_sym_AMP_AMP] = ACTIONS(3378), + [anon_sym_AMP] = ACTIONS(3376), + [anon_sym_typedef] = ACTIONS(3376), + [anon_sym_extern] = ACTIONS(3376), + [anon_sym___attribute__] = ACTIONS(3376), + [anon_sym_COLON_COLON] = ACTIONS(3378), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3378), + [anon_sym___declspec] = ACTIONS(3376), + [anon_sym___based] = ACTIONS(3376), + [anon_sym___cdecl] = ACTIONS(3376), + [anon_sym___clrcall] = ACTIONS(3376), + [anon_sym___stdcall] = ACTIONS(3376), + [anon_sym___fastcall] = ACTIONS(3376), + [anon_sym___thiscall] = ACTIONS(3376), + [anon_sym___vectorcall] = ACTIONS(3376), + [anon_sym_LBRACE] = ACTIONS(3378), + [anon_sym_LBRACK] = ACTIONS(3376), + [anon_sym_static] = ACTIONS(3376), + [anon_sym_register] = ACTIONS(3376), + [anon_sym_inline] = ACTIONS(3376), + [anon_sym_thread_local] = ACTIONS(3376), + [anon_sym_const] = ACTIONS(3376), + [anon_sym_constexpr] = ACTIONS(3376), + [anon_sym_volatile] = ACTIONS(3376), + [anon_sym_restrict] = ACTIONS(3376), + [anon_sym___restrict__] = ACTIONS(3376), + [anon_sym__Atomic] = ACTIONS(3376), + [anon_sym__Noreturn] = ACTIONS(3376), + [anon_sym_noreturn] = ACTIONS(3376), + [anon_sym_mutable] = ACTIONS(3376), + [anon_sym_constinit] = ACTIONS(3376), + [anon_sym_consteval] = ACTIONS(3376), + [anon_sym_signed] = ACTIONS(3376), + [anon_sym_unsigned] = ACTIONS(3376), + [anon_sym_long] = ACTIONS(3376), + [anon_sym_short] = ACTIONS(3376), + [sym_primitive_type] = ACTIONS(3376), + [anon_sym_enum] = ACTIONS(3376), + [anon_sym_class] = ACTIONS(3376), + [anon_sym_struct] = ACTIONS(3376), + [anon_sym_union] = ACTIONS(3376), + [anon_sym_if] = ACTIONS(3376), + [anon_sym_switch] = ACTIONS(3376), + [anon_sym_case] = ACTIONS(3376), + [anon_sym_default] = ACTIONS(3376), + [anon_sym_while] = ACTIONS(3376), + [anon_sym_do] = ACTIONS(3376), + [anon_sym_for] = ACTIONS(3376), + [anon_sym_return] = ACTIONS(3376), + [anon_sym_break] = ACTIONS(3376), + [anon_sym_continue] = ACTIONS(3376), + [anon_sym_goto] = ACTIONS(3376), + [anon_sym_not] = ACTIONS(3376), + [anon_sym_compl] = ACTIONS(3376), + [anon_sym_DASH_DASH] = ACTIONS(3378), + [anon_sym_PLUS_PLUS] = ACTIONS(3378), + [anon_sym_sizeof] = ACTIONS(3376), + [anon_sym_offsetof] = ACTIONS(3376), + [anon_sym__Generic] = ACTIONS(3376), + [anon_sym_asm] = ACTIONS(3376), + [anon_sym___asm__] = ACTIONS(3376), + [sym_number_literal] = ACTIONS(3378), + [anon_sym_L_SQUOTE] = ACTIONS(3378), + [anon_sym_u_SQUOTE] = ACTIONS(3378), + [anon_sym_U_SQUOTE] = ACTIONS(3378), + [anon_sym_u8_SQUOTE] = ACTIONS(3378), + [anon_sym_SQUOTE] = ACTIONS(3378), + [anon_sym_L_DQUOTE] = ACTIONS(3378), + [anon_sym_u_DQUOTE] = ACTIONS(3378), + [anon_sym_U_DQUOTE] = ACTIONS(3378), + [anon_sym_u8_DQUOTE] = ACTIONS(3378), + [anon_sym_DQUOTE] = ACTIONS(3378), + [sym_true] = ACTIONS(3376), + [sym_false] = ACTIONS(3376), + [anon_sym_NULL] = ACTIONS(3376), + [anon_sym_nullptr] = ACTIONS(3376), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3376), + [anon_sym_decltype] = ACTIONS(3376), + [anon_sym_virtual] = ACTIONS(3376), + [anon_sym_explicit] = ACTIONS(3376), + [anon_sym_typename] = ACTIONS(3376), + [anon_sym_template] = ACTIONS(3376), + [anon_sym_operator] = ACTIONS(3376), + [anon_sym_try] = ACTIONS(3376), + [anon_sym_delete] = ACTIONS(3376), + [anon_sym_throw] = ACTIONS(3376), + [anon_sym_namespace] = ACTIONS(3376), + [anon_sym_using] = ACTIONS(3376), + [anon_sym_static_assert] = ACTIONS(3376), + [anon_sym_concept] = ACTIONS(3376), + [anon_sym_co_return] = ACTIONS(3376), + [anon_sym_co_yield] = ACTIONS(3376), + [anon_sym_R_DQUOTE] = ACTIONS(3378), + [anon_sym_LR_DQUOTE] = ACTIONS(3378), + [anon_sym_uR_DQUOTE] = ACTIONS(3378), + [anon_sym_UR_DQUOTE] = ACTIONS(3378), + [anon_sym_u8R_DQUOTE] = ACTIONS(3378), + [anon_sym_co_await] = ACTIONS(3376), + [anon_sym_new] = ACTIONS(3376), + [anon_sym_requires] = ACTIONS(3376), + [sym_this] = ACTIONS(3376), }, [1333] = { - [sym__expression] = STATE(3668), - [sym_conditional_expression] = STATE(3855), - [sym_assignment_expression] = STATE(3855), - [sym_pointer_expression] = STATE(2954), - [sym_unary_expression] = STATE(3855), - [sym_binary_expression] = STATE(3855), - [sym_update_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_subscript_expression] = STATE(2954), - [sym_call_expression] = STATE(2954), - [sym_field_expression] = STATE(2954), - [sym_compound_literal_expression] = STATE(3855), - [sym_parenthesized_expression] = STATE(2954), - [sym_char_literal] = STATE(3557), - [sym_concatenated_string] = STATE(3557), - [sym_string_literal] = STATE(2955), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5844), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3855), - [sym_raw_string_literal] = STATE(2955), - [sym_co_await_expression] = STATE(3855), - [sym_new_expression] = STATE(3855), - [sym_delete_expression] = STATE(3855), - [sym_requires_clause] = STATE(3855), - [sym_requires_expression] = STATE(3855), - [sym_lambda_expression] = STATE(3855), - [sym_lambda_capture_specifier] = STATE(4501), - [sym_fold_expression] = STATE(3855), - [sym_parameter_pack_expansion] = STATE(3855), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4570), - [sym_qualified_identifier] = STATE(2954), - [sym_qualified_type_identifier] = STATE(5844), - [sym_user_defined_literal] = STATE(3855), - [sym_identifier] = ACTIONS(3023), - [anon_sym_LPAREN2] = ACTIONS(3416), - [anon_sym_BANG] = ACTIONS(2412), - [anon_sym_TILDE] = ACTIONS(2412), - [anon_sym_DASH] = ACTIONS(2414), - [anon_sym_PLUS] = ACTIONS(2414), - [anon_sym_STAR] = ACTIONS(3416), - [anon_sym_AMP_AMP] = ACTIONS(3416), - [anon_sym_AMP] = ACTIONS(3418), - [anon_sym_LT] = ACTIONS(3416), - [anon_sym_COLON_COLON] = ACTIONS(2418), - [anon_sym_LBRACE] = ACTIONS(3416), - [anon_sym_LBRACK] = ACTIONS(3416), - [sym_primitive_type] = ACTIONS(1619), - [anon_sym_not] = ACTIONS(2414), - [anon_sym_compl] = ACTIONS(2414), - [anon_sym_DASH_DASH] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(2432), - [anon_sym_sizeof] = ACTIONS(2434), - [sym_number_literal] = ACTIONS(2436), - [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_L_DQUOTE] = ACTIONS(2440), - [anon_sym_u_DQUOTE] = ACTIONS(2440), - [anon_sym_U_DQUOTE] = ACTIONS(2440), - [anon_sym_u8_DQUOTE] = ACTIONS(2440), - [anon_sym_DQUOTE] = ACTIONS(2440), - [sym_true] = ACTIONS(2442), - [sym_false] = ACTIONS(2442), - [sym_null] = ACTIONS(2442), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(2452), - [anon_sym_R_DQUOTE] = ACTIONS(2454), - [anon_sym_LR_DQUOTE] = ACTIONS(2454), - [anon_sym_uR_DQUOTE] = ACTIONS(2454), - [anon_sym_UR_DQUOTE] = ACTIONS(2454), - [anon_sym_u8R_DQUOTE] = ACTIONS(2454), - [anon_sym_co_await] = ACTIONS(2456), - [anon_sym_new] = ACTIONS(2458), - [anon_sym_requires] = ACTIONS(2460), - [sym_this] = ACTIONS(2442), - [sym_nullptr] = ACTIONS(2442), + [ts_builtin_sym_end] = ACTIONS(3166), + [sym_identifier] = ACTIONS(3164), + [aux_sym_preproc_include_token1] = ACTIONS(3164), + [aux_sym_preproc_def_token1] = ACTIONS(3164), + [aux_sym_preproc_if_token1] = ACTIONS(3164), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3164), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3164), + [sym_preproc_directive] = ACTIONS(3164), + [anon_sym_LPAREN2] = ACTIONS(3166), + [anon_sym_BANG] = ACTIONS(3166), + [anon_sym_TILDE] = ACTIONS(3166), + [anon_sym_DASH] = ACTIONS(3164), + [anon_sym_PLUS] = ACTIONS(3164), + [anon_sym_STAR] = ACTIONS(3166), + [anon_sym_AMP_AMP] = ACTIONS(3166), + [anon_sym_AMP] = ACTIONS(3164), + [anon_sym_typedef] = ACTIONS(3164), + [anon_sym_extern] = ACTIONS(3164), + [anon_sym___attribute__] = ACTIONS(3164), + [anon_sym_COLON_COLON] = ACTIONS(3166), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3166), + [anon_sym___declspec] = ACTIONS(3164), + [anon_sym___based] = ACTIONS(3164), + [anon_sym___cdecl] = ACTIONS(3164), + [anon_sym___clrcall] = ACTIONS(3164), + [anon_sym___stdcall] = ACTIONS(3164), + [anon_sym___fastcall] = ACTIONS(3164), + [anon_sym___thiscall] = ACTIONS(3164), + [anon_sym___vectorcall] = ACTIONS(3164), + [anon_sym_LBRACE] = ACTIONS(3166), + [anon_sym_LBRACK] = ACTIONS(3164), + [anon_sym_static] = ACTIONS(3164), + [anon_sym_register] = ACTIONS(3164), + [anon_sym_inline] = ACTIONS(3164), + [anon_sym_thread_local] = ACTIONS(3164), + [anon_sym_const] = ACTIONS(3164), + [anon_sym_constexpr] = ACTIONS(3164), + [anon_sym_volatile] = ACTIONS(3164), + [anon_sym_restrict] = ACTIONS(3164), + [anon_sym___restrict__] = ACTIONS(3164), + [anon_sym__Atomic] = ACTIONS(3164), + [anon_sym__Noreturn] = ACTIONS(3164), + [anon_sym_noreturn] = ACTIONS(3164), + [anon_sym_mutable] = ACTIONS(3164), + [anon_sym_constinit] = ACTIONS(3164), + [anon_sym_consteval] = ACTIONS(3164), + [anon_sym_signed] = ACTIONS(3164), + [anon_sym_unsigned] = ACTIONS(3164), + [anon_sym_long] = ACTIONS(3164), + [anon_sym_short] = ACTIONS(3164), + [sym_primitive_type] = ACTIONS(3164), + [anon_sym_enum] = ACTIONS(3164), + [anon_sym_class] = ACTIONS(3164), + [anon_sym_struct] = ACTIONS(3164), + [anon_sym_union] = ACTIONS(3164), + [anon_sym_if] = ACTIONS(3164), + [anon_sym_switch] = ACTIONS(3164), + [anon_sym_case] = ACTIONS(3164), + [anon_sym_default] = ACTIONS(3164), + [anon_sym_while] = ACTIONS(3164), + [anon_sym_do] = ACTIONS(3164), + [anon_sym_for] = ACTIONS(3164), + [anon_sym_return] = ACTIONS(3164), + [anon_sym_break] = ACTIONS(3164), + [anon_sym_continue] = ACTIONS(3164), + [anon_sym_goto] = ACTIONS(3164), + [anon_sym_not] = ACTIONS(3164), + [anon_sym_compl] = ACTIONS(3164), + [anon_sym_DASH_DASH] = ACTIONS(3166), + [anon_sym_PLUS_PLUS] = ACTIONS(3166), + [anon_sym_sizeof] = ACTIONS(3164), + [anon_sym_offsetof] = ACTIONS(3164), + [anon_sym__Generic] = ACTIONS(3164), + [anon_sym_asm] = ACTIONS(3164), + [anon_sym___asm__] = ACTIONS(3164), + [sym_number_literal] = ACTIONS(3166), + [anon_sym_L_SQUOTE] = ACTIONS(3166), + [anon_sym_u_SQUOTE] = ACTIONS(3166), + [anon_sym_U_SQUOTE] = ACTIONS(3166), + [anon_sym_u8_SQUOTE] = ACTIONS(3166), + [anon_sym_SQUOTE] = ACTIONS(3166), + [anon_sym_L_DQUOTE] = ACTIONS(3166), + [anon_sym_u_DQUOTE] = ACTIONS(3166), + [anon_sym_U_DQUOTE] = ACTIONS(3166), + [anon_sym_u8_DQUOTE] = ACTIONS(3166), + [anon_sym_DQUOTE] = ACTIONS(3166), + [sym_true] = ACTIONS(3164), + [sym_false] = ACTIONS(3164), + [anon_sym_NULL] = ACTIONS(3164), + [anon_sym_nullptr] = ACTIONS(3164), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3164), + [anon_sym_decltype] = ACTIONS(3164), + [anon_sym_virtual] = ACTIONS(3164), + [anon_sym_explicit] = ACTIONS(3164), + [anon_sym_typename] = ACTIONS(3164), + [anon_sym_template] = ACTIONS(3164), + [anon_sym_operator] = ACTIONS(3164), + [anon_sym_try] = ACTIONS(3164), + [anon_sym_delete] = ACTIONS(3164), + [anon_sym_throw] = ACTIONS(3164), + [anon_sym_namespace] = ACTIONS(3164), + [anon_sym_using] = ACTIONS(3164), + [anon_sym_static_assert] = ACTIONS(3164), + [anon_sym_concept] = ACTIONS(3164), + [anon_sym_co_return] = ACTIONS(3164), + [anon_sym_co_yield] = ACTIONS(3164), + [anon_sym_R_DQUOTE] = ACTIONS(3166), + [anon_sym_LR_DQUOTE] = ACTIONS(3166), + [anon_sym_uR_DQUOTE] = ACTIONS(3166), + [anon_sym_UR_DQUOTE] = ACTIONS(3166), + [anon_sym_u8R_DQUOTE] = ACTIONS(3166), + [anon_sym_co_await] = ACTIONS(3164), + [anon_sym_new] = ACTIONS(3164), + [anon_sym_requires] = ACTIONS(3164), + [sym_this] = ACTIONS(3164), }, [1334] = { - [sym__expression] = STATE(3495), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_initializer_list] = STATE(5394), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2954), - [anon_sym_RPAREN] = ACTIONS(3420), - [anon_sym_LPAREN2] = ACTIONS(984), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1489), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [ts_builtin_sym_end] = ACTIONS(3240), + [sym_identifier] = ACTIONS(3238), + [aux_sym_preproc_include_token1] = ACTIONS(3238), + [aux_sym_preproc_def_token1] = ACTIONS(3238), + [aux_sym_preproc_if_token1] = ACTIONS(3238), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3238), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3238), + [sym_preproc_directive] = ACTIONS(3238), + [anon_sym_LPAREN2] = ACTIONS(3240), + [anon_sym_BANG] = ACTIONS(3240), + [anon_sym_TILDE] = ACTIONS(3240), + [anon_sym_DASH] = ACTIONS(3238), + [anon_sym_PLUS] = ACTIONS(3238), + [anon_sym_STAR] = ACTIONS(3240), + [anon_sym_AMP_AMP] = ACTIONS(3240), + [anon_sym_AMP] = ACTIONS(3238), + [anon_sym_typedef] = ACTIONS(3238), + [anon_sym_extern] = ACTIONS(3238), + [anon_sym___attribute__] = ACTIONS(3238), + [anon_sym_COLON_COLON] = ACTIONS(3240), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3240), + [anon_sym___declspec] = ACTIONS(3238), + [anon_sym___based] = ACTIONS(3238), + [anon_sym___cdecl] = ACTIONS(3238), + [anon_sym___clrcall] = ACTIONS(3238), + [anon_sym___stdcall] = ACTIONS(3238), + [anon_sym___fastcall] = ACTIONS(3238), + [anon_sym___thiscall] = ACTIONS(3238), + [anon_sym___vectorcall] = ACTIONS(3238), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_LBRACK] = ACTIONS(3238), + [anon_sym_static] = ACTIONS(3238), + [anon_sym_register] = ACTIONS(3238), + [anon_sym_inline] = ACTIONS(3238), + [anon_sym_thread_local] = ACTIONS(3238), + [anon_sym_const] = ACTIONS(3238), + [anon_sym_constexpr] = ACTIONS(3238), + [anon_sym_volatile] = ACTIONS(3238), + [anon_sym_restrict] = ACTIONS(3238), + [anon_sym___restrict__] = ACTIONS(3238), + [anon_sym__Atomic] = ACTIONS(3238), + [anon_sym__Noreturn] = ACTIONS(3238), + [anon_sym_noreturn] = ACTIONS(3238), + [anon_sym_mutable] = ACTIONS(3238), + [anon_sym_constinit] = ACTIONS(3238), + [anon_sym_consteval] = ACTIONS(3238), + [anon_sym_signed] = ACTIONS(3238), + [anon_sym_unsigned] = ACTIONS(3238), + [anon_sym_long] = ACTIONS(3238), + [anon_sym_short] = ACTIONS(3238), + [sym_primitive_type] = ACTIONS(3238), + [anon_sym_enum] = ACTIONS(3238), + [anon_sym_class] = ACTIONS(3238), + [anon_sym_struct] = ACTIONS(3238), + [anon_sym_union] = ACTIONS(3238), + [anon_sym_if] = ACTIONS(3238), + [anon_sym_switch] = ACTIONS(3238), + [anon_sym_case] = ACTIONS(3238), + [anon_sym_default] = ACTIONS(3238), + [anon_sym_while] = ACTIONS(3238), + [anon_sym_do] = ACTIONS(3238), + [anon_sym_for] = ACTIONS(3238), + [anon_sym_return] = ACTIONS(3238), + [anon_sym_break] = ACTIONS(3238), + [anon_sym_continue] = ACTIONS(3238), + [anon_sym_goto] = ACTIONS(3238), + [anon_sym_not] = ACTIONS(3238), + [anon_sym_compl] = ACTIONS(3238), + [anon_sym_DASH_DASH] = ACTIONS(3240), + [anon_sym_PLUS_PLUS] = ACTIONS(3240), + [anon_sym_sizeof] = ACTIONS(3238), + [anon_sym_offsetof] = ACTIONS(3238), + [anon_sym__Generic] = ACTIONS(3238), + [anon_sym_asm] = ACTIONS(3238), + [anon_sym___asm__] = ACTIONS(3238), + [sym_number_literal] = ACTIONS(3240), + [anon_sym_L_SQUOTE] = ACTIONS(3240), + [anon_sym_u_SQUOTE] = ACTIONS(3240), + [anon_sym_U_SQUOTE] = ACTIONS(3240), + [anon_sym_u8_SQUOTE] = ACTIONS(3240), + [anon_sym_SQUOTE] = ACTIONS(3240), + [anon_sym_L_DQUOTE] = ACTIONS(3240), + [anon_sym_u_DQUOTE] = ACTIONS(3240), + [anon_sym_U_DQUOTE] = ACTIONS(3240), + [anon_sym_u8_DQUOTE] = ACTIONS(3240), + [anon_sym_DQUOTE] = ACTIONS(3240), + [sym_true] = ACTIONS(3238), + [sym_false] = ACTIONS(3238), + [anon_sym_NULL] = ACTIONS(3238), + [anon_sym_nullptr] = ACTIONS(3238), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3238), + [anon_sym_decltype] = ACTIONS(3238), + [anon_sym_virtual] = ACTIONS(3238), + [anon_sym_explicit] = ACTIONS(3238), + [anon_sym_typename] = ACTIONS(3238), + [anon_sym_template] = ACTIONS(3238), + [anon_sym_operator] = ACTIONS(3238), + [anon_sym_try] = ACTIONS(3238), + [anon_sym_delete] = ACTIONS(3238), + [anon_sym_throw] = ACTIONS(3238), + [anon_sym_namespace] = ACTIONS(3238), + [anon_sym_using] = ACTIONS(3238), + [anon_sym_static_assert] = ACTIONS(3238), + [anon_sym_concept] = ACTIONS(3238), + [anon_sym_co_return] = ACTIONS(3238), + [anon_sym_co_yield] = ACTIONS(3238), + [anon_sym_R_DQUOTE] = ACTIONS(3240), + [anon_sym_LR_DQUOTE] = ACTIONS(3240), + [anon_sym_uR_DQUOTE] = ACTIONS(3240), + [anon_sym_UR_DQUOTE] = ACTIONS(3240), + [anon_sym_u8R_DQUOTE] = ACTIONS(3240), + [anon_sym_co_await] = ACTIONS(3238), + [anon_sym_new] = ACTIONS(3238), + [anon_sym_requires] = ACTIONS(3238), + [sym_this] = ACTIONS(3238), }, [1335] = { - [sym__expression] = STATE(3804), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(3036), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(3036), - [sym_call_expression] = STATE(3036), - [sym_field_expression] = STATE(3036), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(3036), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(3036), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(3073), - [anon_sym_LPAREN2] = ACTIONS(3416), - [anon_sym_BANG] = ACTIONS(3079), - [anon_sym_TILDE] = ACTIONS(3079), - [anon_sym_DASH] = ACTIONS(3077), - [anon_sym_PLUS] = ACTIONS(3077), - [anon_sym_STAR] = ACTIONS(3416), - [anon_sym_AMP_AMP] = ACTIONS(3416), - [anon_sym_AMP] = ACTIONS(3418), - [anon_sym_LT] = ACTIONS(3416), - [anon_sym_COLON_COLON] = ACTIONS(3083), - [anon_sym_LBRACE] = ACTIONS(3416), - [anon_sym_LBRACK] = ACTIONS(3416), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(3077), - [anon_sym_compl] = ACTIONS(3077), - [anon_sym_DASH_DASH] = ACTIONS(3085), - [anon_sym_PLUS_PLUS] = ACTIONS(3085), - [anon_sym_sizeof] = ACTIONS(3087), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(3089), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(3091), - [anon_sym_new] = ACTIONS(3065), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [ts_builtin_sym_end] = ACTIONS(3449), + [sym_identifier] = ACTIONS(3447), + [aux_sym_preproc_include_token1] = ACTIONS(3447), + [aux_sym_preproc_def_token1] = ACTIONS(3447), + [aux_sym_preproc_if_token1] = ACTIONS(3447), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3447), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3447), + [sym_preproc_directive] = ACTIONS(3447), + [anon_sym_LPAREN2] = ACTIONS(3449), + [anon_sym_BANG] = ACTIONS(3449), + [anon_sym_TILDE] = ACTIONS(3449), + [anon_sym_DASH] = ACTIONS(3447), + [anon_sym_PLUS] = ACTIONS(3447), + [anon_sym_STAR] = ACTIONS(3449), + [anon_sym_AMP_AMP] = ACTIONS(3449), + [anon_sym_AMP] = ACTIONS(3447), + [anon_sym_typedef] = ACTIONS(3447), + [anon_sym_extern] = ACTIONS(3447), + [anon_sym___attribute__] = ACTIONS(3447), + [anon_sym_COLON_COLON] = ACTIONS(3449), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3449), + [anon_sym___declspec] = ACTIONS(3447), + [anon_sym___based] = ACTIONS(3447), + [anon_sym___cdecl] = ACTIONS(3447), + [anon_sym___clrcall] = ACTIONS(3447), + [anon_sym___stdcall] = ACTIONS(3447), + [anon_sym___fastcall] = ACTIONS(3447), + [anon_sym___thiscall] = ACTIONS(3447), + [anon_sym___vectorcall] = ACTIONS(3447), + [anon_sym_LBRACE] = ACTIONS(3449), + [anon_sym_LBRACK] = ACTIONS(3447), + [anon_sym_static] = ACTIONS(3447), + [anon_sym_register] = ACTIONS(3447), + [anon_sym_inline] = ACTIONS(3447), + [anon_sym_thread_local] = ACTIONS(3447), + [anon_sym_const] = ACTIONS(3447), + [anon_sym_constexpr] = ACTIONS(3447), + [anon_sym_volatile] = ACTIONS(3447), + [anon_sym_restrict] = ACTIONS(3447), + [anon_sym___restrict__] = ACTIONS(3447), + [anon_sym__Atomic] = ACTIONS(3447), + [anon_sym__Noreturn] = ACTIONS(3447), + [anon_sym_noreturn] = ACTIONS(3447), + [anon_sym_mutable] = ACTIONS(3447), + [anon_sym_constinit] = ACTIONS(3447), + [anon_sym_consteval] = ACTIONS(3447), + [anon_sym_signed] = ACTIONS(3447), + [anon_sym_unsigned] = ACTIONS(3447), + [anon_sym_long] = ACTIONS(3447), + [anon_sym_short] = ACTIONS(3447), + [sym_primitive_type] = ACTIONS(3447), + [anon_sym_enum] = ACTIONS(3447), + [anon_sym_class] = ACTIONS(3447), + [anon_sym_struct] = ACTIONS(3447), + [anon_sym_union] = ACTIONS(3447), + [anon_sym_if] = ACTIONS(3447), + [anon_sym_switch] = ACTIONS(3447), + [anon_sym_case] = ACTIONS(3447), + [anon_sym_default] = ACTIONS(3447), + [anon_sym_while] = ACTIONS(3447), + [anon_sym_do] = ACTIONS(3447), + [anon_sym_for] = ACTIONS(3447), + [anon_sym_return] = ACTIONS(3447), + [anon_sym_break] = ACTIONS(3447), + [anon_sym_continue] = ACTIONS(3447), + [anon_sym_goto] = ACTIONS(3447), + [anon_sym_not] = ACTIONS(3447), + [anon_sym_compl] = ACTIONS(3447), + [anon_sym_DASH_DASH] = ACTIONS(3449), + [anon_sym_PLUS_PLUS] = ACTIONS(3449), + [anon_sym_sizeof] = ACTIONS(3447), + [anon_sym_offsetof] = ACTIONS(3447), + [anon_sym__Generic] = ACTIONS(3447), + [anon_sym_asm] = ACTIONS(3447), + [anon_sym___asm__] = ACTIONS(3447), + [sym_number_literal] = ACTIONS(3449), + [anon_sym_L_SQUOTE] = ACTIONS(3449), + [anon_sym_u_SQUOTE] = ACTIONS(3449), + [anon_sym_U_SQUOTE] = ACTIONS(3449), + [anon_sym_u8_SQUOTE] = ACTIONS(3449), + [anon_sym_SQUOTE] = ACTIONS(3449), + [anon_sym_L_DQUOTE] = ACTIONS(3449), + [anon_sym_u_DQUOTE] = ACTIONS(3449), + [anon_sym_U_DQUOTE] = ACTIONS(3449), + [anon_sym_u8_DQUOTE] = ACTIONS(3449), + [anon_sym_DQUOTE] = ACTIONS(3449), + [sym_true] = ACTIONS(3447), + [sym_false] = ACTIONS(3447), + [anon_sym_NULL] = ACTIONS(3447), + [anon_sym_nullptr] = ACTIONS(3447), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3447), + [anon_sym_decltype] = ACTIONS(3447), + [anon_sym_virtual] = ACTIONS(3447), + [anon_sym_explicit] = ACTIONS(3447), + [anon_sym_typename] = ACTIONS(3447), + [anon_sym_template] = ACTIONS(3447), + [anon_sym_operator] = ACTIONS(3447), + [anon_sym_try] = ACTIONS(3447), + [anon_sym_delete] = ACTIONS(3447), + [anon_sym_throw] = ACTIONS(3447), + [anon_sym_namespace] = ACTIONS(3447), + [anon_sym_using] = ACTIONS(3447), + [anon_sym_static_assert] = ACTIONS(3447), + [anon_sym_concept] = ACTIONS(3447), + [anon_sym_co_return] = ACTIONS(3447), + [anon_sym_co_yield] = ACTIONS(3447), + [anon_sym_R_DQUOTE] = ACTIONS(3449), + [anon_sym_LR_DQUOTE] = ACTIONS(3449), + [anon_sym_uR_DQUOTE] = ACTIONS(3449), + [anon_sym_UR_DQUOTE] = ACTIONS(3449), + [anon_sym_u8R_DQUOTE] = ACTIONS(3449), + [anon_sym_co_await] = ACTIONS(3447), + [anon_sym_new] = ACTIONS(3447), + [anon_sym_requires] = ACTIONS(3447), + [sym_this] = ACTIONS(3447), }, [1336] = { - [sym__expression] = STATE(3802), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(3036), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(3036), - [sym_call_expression] = STATE(3036), - [sym_field_expression] = STATE(3036), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(3036), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(3036), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(3073), - [anon_sym_LPAREN2] = ACTIONS(3416), - [anon_sym_BANG] = ACTIONS(3079), - [anon_sym_TILDE] = ACTIONS(3079), - [anon_sym_DASH] = ACTIONS(3077), - [anon_sym_PLUS] = ACTIONS(3077), - [anon_sym_STAR] = ACTIONS(3416), - [anon_sym_AMP_AMP] = ACTIONS(3416), - [anon_sym_AMP] = ACTIONS(3418), - [anon_sym_LT] = ACTIONS(3416), - [anon_sym_COLON_COLON] = ACTIONS(3083), - [anon_sym_LBRACE] = ACTIONS(3416), - [anon_sym_LBRACK] = ACTIONS(3416), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(3077), - [anon_sym_compl] = ACTIONS(3077), - [anon_sym_DASH_DASH] = ACTIONS(3085), - [anon_sym_PLUS_PLUS] = ACTIONS(3085), - [anon_sym_sizeof] = ACTIONS(3087), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(3089), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(3091), - [anon_sym_new] = ACTIONS(3065), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [ts_builtin_sym_end] = ACTIONS(3268), + [sym_identifier] = ACTIONS(3266), + [aux_sym_preproc_include_token1] = ACTIONS(3266), + [aux_sym_preproc_def_token1] = ACTIONS(3266), + [aux_sym_preproc_if_token1] = ACTIONS(3266), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3266), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3266), + [sym_preproc_directive] = ACTIONS(3266), + [anon_sym_LPAREN2] = ACTIONS(3268), + [anon_sym_BANG] = ACTIONS(3268), + [anon_sym_TILDE] = ACTIONS(3268), + [anon_sym_DASH] = ACTIONS(3266), + [anon_sym_PLUS] = ACTIONS(3266), + [anon_sym_STAR] = ACTIONS(3268), + [anon_sym_AMP_AMP] = ACTIONS(3268), + [anon_sym_AMP] = ACTIONS(3266), + [anon_sym_typedef] = ACTIONS(3266), + [anon_sym_extern] = ACTIONS(3266), + [anon_sym___attribute__] = ACTIONS(3266), + [anon_sym_COLON_COLON] = ACTIONS(3268), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3268), + [anon_sym___declspec] = ACTIONS(3266), + [anon_sym___based] = ACTIONS(3266), + [anon_sym___cdecl] = ACTIONS(3266), + [anon_sym___clrcall] = ACTIONS(3266), + [anon_sym___stdcall] = ACTIONS(3266), + [anon_sym___fastcall] = ACTIONS(3266), + [anon_sym___thiscall] = ACTIONS(3266), + [anon_sym___vectorcall] = ACTIONS(3266), + [anon_sym_LBRACE] = ACTIONS(3268), + [anon_sym_LBRACK] = ACTIONS(3266), + [anon_sym_static] = ACTIONS(3266), + [anon_sym_register] = ACTIONS(3266), + [anon_sym_inline] = ACTIONS(3266), + [anon_sym_thread_local] = ACTIONS(3266), + [anon_sym_const] = ACTIONS(3266), + [anon_sym_constexpr] = ACTIONS(3266), + [anon_sym_volatile] = ACTIONS(3266), + [anon_sym_restrict] = ACTIONS(3266), + [anon_sym___restrict__] = ACTIONS(3266), + [anon_sym__Atomic] = ACTIONS(3266), + [anon_sym__Noreturn] = ACTIONS(3266), + [anon_sym_noreturn] = ACTIONS(3266), + [anon_sym_mutable] = ACTIONS(3266), + [anon_sym_constinit] = ACTIONS(3266), + [anon_sym_consteval] = ACTIONS(3266), + [anon_sym_signed] = ACTIONS(3266), + [anon_sym_unsigned] = ACTIONS(3266), + [anon_sym_long] = ACTIONS(3266), + [anon_sym_short] = ACTIONS(3266), + [sym_primitive_type] = ACTIONS(3266), + [anon_sym_enum] = ACTIONS(3266), + [anon_sym_class] = ACTIONS(3266), + [anon_sym_struct] = ACTIONS(3266), + [anon_sym_union] = ACTIONS(3266), + [anon_sym_if] = ACTIONS(3266), + [anon_sym_switch] = ACTIONS(3266), + [anon_sym_case] = ACTIONS(3266), + [anon_sym_default] = ACTIONS(3266), + [anon_sym_while] = ACTIONS(3266), + [anon_sym_do] = ACTIONS(3266), + [anon_sym_for] = ACTIONS(3266), + [anon_sym_return] = ACTIONS(3266), + [anon_sym_break] = ACTIONS(3266), + [anon_sym_continue] = ACTIONS(3266), + [anon_sym_goto] = ACTIONS(3266), + [anon_sym_not] = ACTIONS(3266), + [anon_sym_compl] = ACTIONS(3266), + [anon_sym_DASH_DASH] = ACTIONS(3268), + [anon_sym_PLUS_PLUS] = ACTIONS(3268), + [anon_sym_sizeof] = ACTIONS(3266), + [anon_sym_offsetof] = ACTIONS(3266), + [anon_sym__Generic] = ACTIONS(3266), + [anon_sym_asm] = ACTIONS(3266), + [anon_sym___asm__] = ACTIONS(3266), + [sym_number_literal] = ACTIONS(3268), + [anon_sym_L_SQUOTE] = ACTIONS(3268), + [anon_sym_u_SQUOTE] = ACTIONS(3268), + [anon_sym_U_SQUOTE] = ACTIONS(3268), + [anon_sym_u8_SQUOTE] = ACTIONS(3268), + [anon_sym_SQUOTE] = ACTIONS(3268), + [anon_sym_L_DQUOTE] = ACTIONS(3268), + [anon_sym_u_DQUOTE] = ACTIONS(3268), + [anon_sym_U_DQUOTE] = ACTIONS(3268), + [anon_sym_u8_DQUOTE] = ACTIONS(3268), + [anon_sym_DQUOTE] = ACTIONS(3268), + [sym_true] = ACTIONS(3266), + [sym_false] = ACTIONS(3266), + [anon_sym_NULL] = ACTIONS(3266), + [anon_sym_nullptr] = ACTIONS(3266), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3266), + [anon_sym_decltype] = ACTIONS(3266), + [anon_sym_virtual] = ACTIONS(3266), + [anon_sym_explicit] = ACTIONS(3266), + [anon_sym_typename] = ACTIONS(3266), + [anon_sym_template] = ACTIONS(3266), + [anon_sym_operator] = ACTIONS(3266), + [anon_sym_try] = ACTIONS(3266), + [anon_sym_delete] = ACTIONS(3266), + [anon_sym_throw] = ACTIONS(3266), + [anon_sym_namespace] = ACTIONS(3266), + [anon_sym_using] = ACTIONS(3266), + [anon_sym_static_assert] = ACTIONS(3266), + [anon_sym_concept] = ACTIONS(3266), + [anon_sym_co_return] = ACTIONS(3266), + [anon_sym_co_yield] = ACTIONS(3266), + [anon_sym_R_DQUOTE] = ACTIONS(3268), + [anon_sym_LR_DQUOTE] = ACTIONS(3268), + [anon_sym_uR_DQUOTE] = ACTIONS(3268), + [anon_sym_UR_DQUOTE] = ACTIONS(3268), + [anon_sym_u8R_DQUOTE] = ACTIONS(3268), + [anon_sym_co_await] = ACTIONS(3266), + [anon_sym_new] = ACTIONS(3266), + [anon_sym_requires] = ACTIONS(3266), + [sym_this] = ACTIONS(3266), }, [1337] = { - [sym__expression] = STATE(3464), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2984), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2984), - [sym_call_expression] = STATE(2984), - [sym_field_expression] = STATE(2984), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2984), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_lambda_default_capture] = STATE(5941), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2984), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(3047), - [anon_sym_LPAREN2] = ACTIONS(3049), - [anon_sym_BANG] = ACTIONS(3053), - [anon_sym_TILDE] = ACTIONS(3053), - [anon_sym_DASH] = ACTIONS(3051), - [anon_sym_PLUS] = ACTIONS(3051), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(3422), - [anon_sym_COLON_COLON] = ACTIONS(3055), - [anon_sym_LBRACK] = ACTIONS(1539), - [anon_sym_RBRACK] = ACTIONS(3424), - [anon_sym_EQ] = ACTIONS(3426), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(3051), - [anon_sym_compl] = ACTIONS(3051), - [anon_sym_DASH_DASH] = ACTIONS(3057), - [anon_sym_PLUS_PLUS] = ACTIONS(3057), - [anon_sym_sizeof] = ACTIONS(3059), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(3061), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(3063), - [anon_sym_new] = ACTIONS(3065), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [ts_builtin_sym_end] = ACTIONS(3288), + [sym_identifier] = ACTIONS(3286), + [aux_sym_preproc_include_token1] = ACTIONS(3286), + [aux_sym_preproc_def_token1] = ACTIONS(3286), + [aux_sym_preproc_if_token1] = ACTIONS(3286), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3286), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3286), + [sym_preproc_directive] = ACTIONS(3286), + [anon_sym_LPAREN2] = ACTIONS(3288), + [anon_sym_BANG] = ACTIONS(3288), + [anon_sym_TILDE] = ACTIONS(3288), + [anon_sym_DASH] = ACTIONS(3286), + [anon_sym_PLUS] = ACTIONS(3286), + [anon_sym_STAR] = ACTIONS(3288), + [anon_sym_AMP_AMP] = ACTIONS(3288), + [anon_sym_AMP] = ACTIONS(3286), + [anon_sym_typedef] = ACTIONS(3286), + [anon_sym_extern] = ACTIONS(3286), + [anon_sym___attribute__] = ACTIONS(3286), + [anon_sym_COLON_COLON] = ACTIONS(3288), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3288), + [anon_sym___declspec] = ACTIONS(3286), + [anon_sym___based] = ACTIONS(3286), + [anon_sym___cdecl] = ACTIONS(3286), + [anon_sym___clrcall] = ACTIONS(3286), + [anon_sym___stdcall] = ACTIONS(3286), + [anon_sym___fastcall] = ACTIONS(3286), + [anon_sym___thiscall] = ACTIONS(3286), + [anon_sym___vectorcall] = ACTIONS(3286), + [anon_sym_LBRACE] = ACTIONS(3288), + [anon_sym_LBRACK] = ACTIONS(3286), + [anon_sym_static] = ACTIONS(3286), + [anon_sym_register] = ACTIONS(3286), + [anon_sym_inline] = ACTIONS(3286), + [anon_sym_thread_local] = ACTIONS(3286), + [anon_sym_const] = ACTIONS(3286), + [anon_sym_constexpr] = ACTIONS(3286), + [anon_sym_volatile] = ACTIONS(3286), + [anon_sym_restrict] = ACTIONS(3286), + [anon_sym___restrict__] = ACTIONS(3286), + [anon_sym__Atomic] = ACTIONS(3286), + [anon_sym__Noreturn] = ACTIONS(3286), + [anon_sym_noreturn] = ACTIONS(3286), + [anon_sym_mutable] = ACTIONS(3286), + [anon_sym_constinit] = ACTIONS(3286), + [anon_sym_consteval] = ACTIONS(3286), + [anon_sym_signed] = ACTIONS(3286), + [anon_sym_unsigned] = ACTIONS(3286), + [anon_sym_long] = ACTIONS(3286), + [anon_sym_short] = ACTIONS(3286), + [sym_primitive_type] = ACTIONS(3286), + [anon_sym_enum] = ACTIONS(3286), + [anon_sym_class] = ACTIONS(3286), + [anon_sym_struct] = ACTIONS(3286), + [anon_sym_union] = ACTIONS(3286), + [anon_sym_if] = ACTIONS(3286), + [anon_sym_switch] = ACTIONS(3286), + [anon_sym_case] = ACTIONS(3286), + [anon_sym_default] = ACTIONS(3286), + [anon_sym_while] = ACTIONS(3286), + [anon_sym_do] = ACTIONS(3286), + [anon_sym_for] = ACTIONS(3286), + [anon_sym_return] = ACTIONS(3286), + [anon_sym_break] = ACTIONS(3286), + [anon_sym_continue] = ACTIONS(3286), + [anon_sym_goto] = ACTIONS(3286), + [anon_sym_not] = ACTIONS(3286), + [anon_sym_compl] = ACTIONS(3286), + [anon_sym_DASH_DASH] = ACTIONS(3288), + [anon_sym_PLUS_PLUS] = ACTIONS(3288), + [anon_sym_sizeof] = ACTIONS(3286), + [anon_sym_offsetof] = ACTIONS(3286), + [anon_sym__Generic] = ACTIONS(3286), + [anon_sym_asm] = ACTIONS(3286), + [anon_sym___asm__] = ACTIONS(3286), + [sym_number_literal] = ACTIONS(3288), + [anon_sym_L_SQUOTE] = ACTIONS(3288), + [anon_sym_u_SQUOTE] = ACTIONS(3288), + [anon_sym_U_SQUOTE] = ACTIONS(3288), + [anon_sym_u8_SQUOTE] = ACTIONS(3288), + [anon_sym_SQUOTE] = ACTIONS(3288), + [anon_sym_L_DQUOTE] = ACTIONS(3288), + [anon_sym_u_DQUOTE] = ACTIONS(3288), + [anon_sym_U_DQUOTE] = ACTIONS(3288), + [anon_sym_u8_DQUOTE] = ACTIONS(3288), + [anon_sym_DQUOTE] = ACTIONS(3288), + [sym_true] = ACTIONS(3286), + [sym_false] = ACTIONS(3286), + [anon_sym_NULL] = ACTIONS(3286), + [anon_sym_nullptr] = ACTIONS(3286), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3286), + [anon_sym_decltype] = ACTIONS(3286), + [anon_sym_virtual] = ACTIONS(3286), + [anon_sym_explicit] = ACTIONS(3286), + [anon_sym_typename] = ACTIONS(3286), + [anon_sym_template] = ACTIONS(3286), + [anon_sym_operator] = ACTIONS(3286), + [anon_sym_try] = ACTIONS(3286), + [anon_sym_delete] = ACTIONS(3286), + [anon_sym_throw] = ACTIONS(3286), + [anon_sym_namespace] = ACTIONS(3286), + [anon_sym_using] = ACTIONS(3286), + [anon_sym_static_assert] = ACTIONS(3286), + [anon_sym_concept] = ACTIONS(3286), + [anon_sym_co_return] = ACTIONS(3286), + [anon_sym_co_yield] = ACTIONS(3286), + [anon_sym_R_DQUOTE] = ACTIONS(3288), + [anon_sym_LR_DQUOTE] = ACTIONS(3288), + [anon_sym_uR_DQUOTE] = ACTIONS(3288), + [anon_sym_UR_DQUOTE] = ACTIONS(3288), + [anon_sym_u8R_DQUOTE] = ACTIONS(3288), + [anon_sym_co_await] = ACTIONS(3286), + [anon_sym_new] = ACTIONS(3286), + [anon_sym_requires] = ACTIONS(3286), + [sym_this] = ACTIONS(3286), }, [1338] = { - [sym__expression] = STATE(3464), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2984), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2984), - [sym_call_expression] = STATE(2984), - [sym_field_expression] = STATE(2984), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2984), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_lambda_default_capture] = STATE(5941), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2984), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(3047), - [anon_sym_LPAREN2] = ACTIONS(3049), - [anon_sym_BANG] = ACTIONS(3053), - [anon_sym_TILDE] = ACTIONS(3053), - [anon_sym_DASH] = ACTIONS(3051), - [anon_sym_PLUS] = ACTIONS(3051), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(3422), - [anon_sym_COLON_COLON] = ACTIONS(3055), - [anon_sym_LBRACK] = ACTIONS(1539), - [anon_sym_RBRACK] = ACTIONS(3428), - [anon_sym_EQ] = ACTIONS(3426), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(3051), - [anon_sym_compl] = ACTIONS(3051), - [anon_sym_DASH_DASH] = ACTIONS(3057), - [anon_sym_PLUS_PLUS] = ACTIONS(3057), - [anon_sym_sizeof] = ACTIONS(3059), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(3061), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(3063), - [anon_sym_new] = ACTIONS(3065), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [ts_builtin_sym_end] = ACTIONS(3417), + [sym_identifier] = ACTIONS(3415), + [aux_sym_preproc_include_token1] = ACTIONS(3415), + [aux_sym_preproc_def_token1] = ACTIONS(3415), + [aux_sym_preproc_if_token1] = ACTIONS(3415), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3415), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3415), + [sym_preproc_directive] = ACTIONS(3415), + [anon_sym_LPAREN2] = ACTIONS(3417), + [anon_sym_BANG] = ACTIONS(3417), + [anon_sym_TILDE] = ACTIONS(3417), + [anon_sym_DASH] = ACTIONS(3415), + [anon_sym_PLUS] = ACTIONS(3415), + [anon_sym_STAR] = ACTIONS(3417), + [anon_sym_AMP_AMP] = ACTIONS(3417), + [anon_sym_AMP] = ACTIONS(3415), + [anon_sym_typedef] = ACTIONS(3415), + [anon_sym_extern] = ACTIONS(3415), + [anon_sym___attribute__] = ACTIONS(3415), + [anon_sym_COLON_COLON] = ACTIONS(3417), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3417), + [anon_sym___declspec] = ACTIONS(3415), + [anon_sym___based] = ACTIONS(3415), + [anon_sym___cdecl] = ACTIONS(3415), + [anon_sym___clrcall] = ACTIONS(3415), + [anon_sym___stdcall] = ACTIONS(3415), + [anon_sym___fastcall] = ACTIONS(3415), + [anon_sym___thiscall] = ACTIONS(3415), + [anon_sym___vectorcall] = ACTIONS(3415), + [anon_sym_LBRACE] = ACTIONS(3417), + [anon_sym_LBRACK] = ACTIONS(3415), + [anon_sym_static] = ACTIONS(3415), + [anon_sym_register] = ACTIONS(3415), + [anon_sym_inline] = ACTIONS(3415), + [anon_sym_thread_local] = ACTIONS(3415), + [anon_sym_const] = ACTIONS(3415), + [anon_sym_constexpr] = ACTIONS(3415), + [anon_sym_volatile] = ACTIONS(3415), + [anon_sym_restrict] = ACTIONS(3415), + [anon_sym___restrict__] = ACTIONS(3415), + [anon_sym__Atomic] = ACTIONS(3415), + [anon_sym__Noreturn] = ACTIONS(3415), + [anon_sym_noreturn] = ACTIONS(3415), + [anon_sym_mutable] = ACTIONS(3415), + [anon_sym_constinit] = ACTIONS(3415), + [anon_sym_consteval] = ACTIONS(3415), + [anon_sym_signed] = ACTIONS(3415), + [anon_sym_unsigned] = ACTIONS(3415), + [anon_sym_long] = ACTIONS(3415), + [anon_sym_short] = ACTIONS(3415), + [sym_primitive_type] = ACTIONS(3415), + [anon_sym_enum] = ACTIONS(3415), + [anon_sym_class] = ACTIONS(3415), + [anon_sym_struct] = ACTIONS(3415), + [anon_sym_union] = ACTIONS(3415), + [anon_sym_if] = ACTIONS(3415), + [anon_sym_switch] = ACTIONS(3415), + [anon_sym_case] = ACTIONS(3415), + [anon_sym_default] = ACTIONS(3415), + [anon_sym_while] = ACTIONS(3415), + [anon_sym_do] = ACTIONS(3415), + [anon_sym_for] = ACTIONS(3415), + [anon_sym_return] = ACTIONS(3415), + [anon_sym_break] = ACTIONS(3415), + [anon_sym_continue] = ACTIONS(3415), + [anon_sym_goto] = ACTIONS(3415), + [anon_sym_not] = ACTIONS(3415), + [anon_sym_compl] = ACTIONS(3415), + [anon_sym_DASH_DASH] = ACTIONS(3417), + [anon_sym_PLUS_PLUS] = ACTIONS(3417), + [anon_sym_sizeof] = ACTIONS(3415), + [anon_sym_offsetof] = ACTIONS(3415), + [anon_sym__Generic] = ACTIONS(3415), + [anon_sym_asm] = ACTIONS(3415), + [anon_sym___asm__] = ACTIONS(3415), + [sym_number_literal] = ACTIONS(3417), + [anon_sym_L_SQUOTE] = ACTIONS(3417), + [anon_sym_u_SQUOTE] = ACTIONS(3417), + [anon_sym_U_SQUOTE] = ACTIONS(3417), + [anon_sym_u8_SQUOTE] = ACTIONS(3417), + [anon_sym_SQUOTE] = ACTIONS(3417), + [anon_sym_L_DQUOTE] = ACTIONS(3417), + [anon_sym_u_DQUOTE] = ACTIONS(3417), + [anon_sym_U_DQUOTE] = ACTIONS(3417), + [anon_sym_u8_DQUOTE] = ACTIONS(3417), + [anon_sym_DQUOTE] = ACTIONS(3417), + [sym_true] = ACTIONS(3415), + [sym_false] = ACTIONS(3415), + [anon_sym_NULL] = ACTIONS(3415), + [anon_sym_nullptr] = ACTIONS(3415), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3415), + [anon_sym_decltype] = ACTIONS(3415), + [anon_sym_virtual] = ACTIONS(3415), + [anon_sym_explicit] = ACTIONS(3415), + [anon_sym_typename] = ACTIONS(3415), + [anon_sym_template] = ACTIONS(3415), + [anon_sym_operator] = ACTIONS(3415), + [anon_sym_try] = ACTIONS(3415), + [anon_sym_delete] = ACTIONS(3415), + [anon_sym_throw] = ACTIONS(3415), + [anon_sym_namespace] = ACTIONS(3415), + [anon_sym_using] = ACTIONS(3415), + [anon_sym_static_assert] = ACTIONS(3415), + [anon_sym_concept] = ACTIONS(3415), + [anon_sym_co_return] = ACTIONS(3415), + [anon_sym_co_yield] = ACTIONS(3415), + [anon_sym_R_DQUOTE] = ACTIONS(3417), + [anon_sym_LR_DQUOTE] = ACTIONS(3417), + [anon_sym_uR_DQUOTE] = ACTIONS(3417), + [anon_sym_UR_DQUOTE] = ACTIONS(3417), + [anon_sym_u8R_DQUOTE] = ACTIONS(3417), + [anon_sym_co_await] = ACTIONS(3415), + [anon_sym_new] = ACTIONS(3415), + [anon_sym_requires] = ACTIONS(3415), + [sym_this] = ACTIONS(3415), }, [1339] = { - [sym__expression] = STATE(3484), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_initializer_list] = STATE(5552), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2954), - [anon_sym_RPAREN] = ACTIONS(3430), - [anon_sym_LPAREN2] = ACTIONS(984), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1489), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [ts_builtin_sym_end] = ACTIONS(3334), + [sym_identifier] = ACTIONS(3332), + [aux_sym_preproc_include_token1] = ACTIONS(3332), + [aux_sym_preproc_def_token1] = ACTIONS(3332), + [aux_sym_preproc_if_token1] = ACTIONS(3332), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3332), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3332), + [sym_preproc_directive] = ACTIONS(3332), + [anon_sym_LPAREN2] = ACTIONS(3334), + [anon_sym_BANG] = ACTIONS(3334), + [anon_sym_TILDE] = ACTIONS(3334), + [anon_sym_DASH] = ACTIONS(3332), + [anon_sym_PLUS] = ACTIONS(3332), + [anon_sym_STAR] = ACTIONS(3334), + [anon_sym_AMP_AMP] = ACTIONS(3334), + [anon_sym_AMP] = ACTIONS(3332), + [anon_sym_typedef] = ACTIONS(3332), + [anon_sym_extern] = ACTIONS(3332), + [anon_sym___attribute__] = ACTIONS(3332), + [anon_sym_COLON_COLON] = ACTIONS(3334), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3334), + [anon_sym___declspec] = ACTIONS(3332), + [anon_sym___based] = ACTIONS(3332), + [anon_sym___cdecl] = ACTIONS(3332), + [anon_sym___clrcall] = ACTIONS(3332), + [anon_sym___stdcall] = ACTIONS(3332), + [anon_sym___fastcall] = ACTIONS(3332), + [anon_sym___thiscall] = ACTIONS(3332), + [anon_sym___vectorcall] = ACTIONS(3332), + [anon_sym_LBRACE] = ACTIONS(3334), + [anon_sym_LBRACK] = ACTIONS(3332), + [anon_sym_static] = ACTIONS(3332), + [anon_sym_register] = ACTIONS(3332), + [anon_sym_inline] = ACTIONS(3332), + [anon_sym_thread_local] = ACTIONS(3332), + [anon_sym_const] = ACTIONS(3332), + [anon_sym_constexpr] = ACTIONS(3332), + [anon_sym_volatile] = ACTIONS(3332), + [anon_sym_restrict] = ACTIONS(3332), + [anon_sym___restrict__] = ACTIONS(3332), + [anon_sym__Atomic] = ACTIONS(3332), + [anon_sym__Noreturn] = ACTIONS(3332), + [anon_sym_noreturn] = ACTIONS(3332), + [anon_sym_mutable] = ACTIONS(3332), + [anon_sym_constinit] = ACTIONS(3332), + [anon_sym_consteval] = ACTIONS(3332), + [anon_sym_signed] = ACTIONS(3332), + [anon_sym_unsigned] = ACTIONS(3332), + [anon_sym_long] = ACTIONS(3332), + [anon_sym_short] = ACTIONS(3332), + [sym_primitive_type] = ACTIONS(3332), + [anon_sym_enum] = ACTIONS(3332), + [anon_sym_class] = ACTIONS(3332), + [anon_sym_struct] = ACTIONS(3332), + [anon_sym_union] = ACTIONS(3332), + [anon_sym_if] = ACTIONS(3332), + [anon_sym_switch] = ACTIONS(3332), + [anon_sym_case] = ACTIONS(3332), + [anon_sym_default] = ACTIONS(3332), + [anon_sym_while] = ACTIONS(3332), + [anon_sym_do] = ACTIONS(3332), + [anon_sym_for] = ACTIONS(3332), + [anon_sym_return] = ACTIONS(3332), + [anon_sym_break] = ACTIONS(3332), + [anon_sym_continue] = ACTIONS(3332), + [anon_sym_goto] = ACTIONS(3332), + [anon_sym_not] = ACTIONS(3332), + [anon_sym_compl] = ACTIONS(3332), + [anon_sym_DASH_DASH] = ACTIONS(3334), + [anon_sym_PLUS_PLUS] = ACTIONS(3334), + [anon_sym_sizeof] = ACTIONS(3332), + [anon_sym_offsetof] = ACTIONS(3332), + [anon_sym__Generic] = ACTIONS(3332), + [anon_sym_asm] = ACTIONS(3332), + [anon_sym___asm__] = ACTIONS(3332), + [sym_number_literal] = ACTIONS(3334), + [anon_sym_L_SQUOTE] = ACTIONS(3334), + [anon_sym_u_SQUOTE] = ACTIONS(3334), + [anon_sym_U_SQUOTE] = ACTIONS(3334), + [anon_sym_u8_SQUOTE] = ACTIONS(3334), + [anon_sym_SQUOTE] = ACTIONS(3334), + [anon_sym_L_DQUOTE] = ACTIONS(3334), + [anon_sym_u_DQUOTE] = ACTIONS(3334), + [anon_sym_U_DQUOTE] = ACTIONS(3334), + [anon_sym_u8_DQUOTE] = ACTIONS(3334), + [anon_sym_DQUOTE] = ACTIONS(3334), + [sym_true] = ACTIONS(3332), + [sym_false] = ACTIONS(3332), + [anon_sym_NULL] = ACTIONS(3332), + [anon_sym_nullptr] = ACTIONS(3332), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3332), + [anon_sym_decltype] = ACTIONS(3332), + [anon_sym_virtual] = ACTIONS(3332), + [anon_sym_explicit] = ACTIONS(3332), + [anon_sym_typename] = ACTIONS(3332), + [anon_sym_template] = ACTIONS(3332), + [anon_sym_operator] = ACTIONS(3332), + [anon_sym_try] = ACTIONS(3332), + [anon_sym_delete] = ACTIONS(3332), + [anon_sym_throw] = ACTIONS(3332), + [anon_sym_namespace] = ACTIONS(3332), + [anon_sym_using] = ACTIONS(3332), + [anon_sym_static_assert] = ACTIONS(3332), + [anon_sym_concept] = ACTIONS(3332), + [anon_sym_co_return] = ACTIONS(3332), + [anon_sym_co_yield] = ACTIONS(3332), + [anon_sym_R_DQUOTE] = ACTIONS(3334), + [anon_sym_LR_DQUOTE] = ACTIONS(3334), + [anon_sym_uR_DQUOTE] = ACTIONS(3334), + [anon_sym_UR_DQUOTE] = ACTIONS(3334), + [anon_sym_u8R_DQUOTE] = ACTIONS(3334), + [anon_sym_co_await] = ACTIONS(3332), + [anon_sym_new] = ACTIONS(3332), + [anon_sym_requires] = ACTIONS(3332), + [sym_this] = ACTIONS(3332), }, [1340] = { - [sym__expression] = STATE(3464), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2984), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2984), - [sym_call_expression] = STATE(2984), - [sym_field_expression] = STATE(2984), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2984), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_lambda_default_capture] = STATE(5941), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2984), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(3047), - [anon_sym_LPAREN2] = ACTIONS(3049), - [anon_sym_BANG] = ACTIONS(3053), - [anon_sym_TILDE] = ACTIONS(3053), - [anon_sym_DASH] = ACTIONS(3051), - [anon_sym_PLUS] = ACTIONS(3051), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(3422), - [anon_sym_COLON_COLON] = ACTIONS(3055), - [anon_sym_LBRACK] = ACTIONS(1539), - [anon_sym_RBRACK] = ACTIONS(3432), - [anon_sym_EQ] = ACTIONS(3426), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(3051), - [anon_sym_compl] = ACTIONS(3051), - [anon_sym_DASH_DASH] = ACTIONS(3057), - [anon_sym_PLUS_PLUS] = ACTIONS(3057), - [anon_sym_sizeof] = ACTIONS(3059), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(3061), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(3063), - [anon_sym_new] = ACTIONS(3065), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [ts_builtin_sym_end] = ACTIONS(3334), + [sym_identifier] = ACTIONS(3332), + [aux_sym_preproc_include_token1] = ACTIONS(3332), + [aux_sym_preproc_def_token1] = ACTIONS(3332), + [aux_sym_preproc_if_token1] = ACTIONS(3332), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3332), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3332), + [sym_preproc_directive] = ACTIONS(3332), + [anon_sym_LPAREN2] = ACTIONS(3334), + [anon_sym_BANG] = ACTIONS(3334), + [anon_sym_TILDE] = ACTIONS(3334), + [anon_sym_DASH] = ACTIONS(3332), + [anon_sym_PLUS] = ACTIONS(3332), + [anon_sym_STAR] = ACTIONS(3334), + [anon_sym_AMP_AMP] = ACTIONS(3334), + [anon_sym_AMP] = ACTIONS(3332), + [anon_sym_typedef] = ACTIONS(3332), + [anon_sym_extern] = ACTIONS(3332), + [anon_sym___attribute__] = ACTIONS(3332), + [anon_sym_COLON_COLON] = ACTIONS(3334), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3334), + [anon_sym___declspec] = ACTIONS(3332), + [anon_sym___based] = ACTIONS(3332), + [anon_sym___cdecl] = ACTIONS(3332), + [anon_sym___clrcall] = ACTIONS(3332), + [anon_sym___stdcall] = ACTIONS(3332), + [anon_sym___fastcall] = ACTIONS(3332), + [anon_sym___thiscall] = ACTIONS(3332), + [anon_sym___vectorcall] = ACTIONS(3332), + [anon_sym_LBRACE] = ACTIONS(3334), + [anon_sym_LBRACK] = ACTIONS(3332), + [anon_sym_static] = ACTIONS(3332), + [anon_sym_register] = ACTIONS(3332), + [anon_sym_inline] = ACTIONS(3332), + [anon_sym_thread_local] = ACTIONS(3332), + [anon_sym_const] = ACTIONS(3332), + [anon_sym_constexpr] = ACTIONS(3332), + [anon_sym_volatile] = ACTIONS(3332), + [anon_sym_restrict] = ACTIONS(3332), + [anon_sym___restrict__] = ACTIONS(3332), + [anon_sym__Atomic] = ACTIONS(3332), + [anon_sym__Noreturn] = ACTIONS(3332), + [anon_sym_noreturn] = ACTIONS(3332), + [anon_sym_mutable] = ACTIONS(3332), + [anon_sym_constinit] = ACTIONS(3332), + [anon_sym_consteval] = ACTIONS(3332), + [anon_sym_signed] = ACTIONS(3332), + [anon_sym_unsigned] = ACTIONS(3332), + [anon_sym_long] = ACTIONS(3332), + [anon_sym_short] = ACTIONS(3332), + [sym_primitive_type] = ACTIONS(3332), + [anon_sym_enum] = ACTIONS(3332), + [anon_sym_class] = ACTIONS(3332), + [anon_sym_struct] = ACTIONS(3332), + [anon_sym_union] = ACTIONS(3332), + [anon_sym_if] = ACTIONS(3332), + [anon_sym_switch] = ACTIONS(3332), + [anon_sym_case] = ACTIONS(3332), + [anon_sym_default] = ACTIONS(3332), + [anon_sym_while] = ACTIONS(3332), + [anon_sym_do] = ACTIONS(3332), + [anon_sym_for] = ACTIONS(3332), + [anon_sym_return] = ACTIONS(3332), + [anon_sym_break] = ACTIONS(3332), + [anon_sym_continue] = ACTIONS(3332), + [anon_sym_goto] = ACTIONS(3332), + [anon_sym_not] = ACTIONS(3332), + [anon_sym_compl] = ACTIONS(3332), + [anon_sym_DASH_DASH] = ACTIONS(3334), + [anon_sym_PLUS_PLUS] = ACTIONS(3334), + [anon_sym_sizeof] = ACTIONS(3332), + [anon_sym_offsetof] = ACTIONS(3332), + [anon_sym__Generic] = ACTIONS(3332), + [anon_sym_asm] = ACTIONS(3332), + [anon_sym___asm__] = ACTIONS(3332), + [sym_number_literal] = ACTIONS(3334), + [anon_sym_L_SQUOTE] = ACTIONS(3334), + [anon_sym_u_SQUOTE] = ACTIONS(3334), + [anon_sym_U_SQUOTE] = ACTIONS(3334), + [anon_sym_u8_SQUOTE] = ACTIONS(3334), + [anon_sym_SQUOTE] = ACTIONS(3334), + [anon_sym_L_DQUOTE] = ACTIONS(3334), + [anon_sym_u_DQUOTE] = ACTIONS(3334), + [anon_sym_U_DQUOTE] = ACTIONS(3334), + [anon_sym_u8_DQUOTE] = ACTIONS(3334), + [anon_sym_DQUOTE] = ACTIONS(3334), + [sym_true] = ACTIONS(3332), + [sym_false] = ACTIONS(3332), + [anon_sym_NULL] = ACTIONS(3332), + [anon_sym_nullptr] = ACTIONS(3332), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3332), + [anon_sym_decltype] = ACTIONS(3332), + [anon_sym_virtual] = ACTIONS(3332), + [anon_sym_explicit] = ACTIONS(3332), + [anon_sym_typename] = ACTIONS(3332), + [anon_sym_template] = ACTIONS(3332), + [anon_sym_operator] = ACTIONS(3332), + [anon_sym_try] = ACTIONS(3332), + [anon_sym_delete] = ACTIONS(3332), + [anon_sym_throw] = ACTIONS(3332), + [anon_sym_namespace] = ACTIONS(3332), + [anon_sym_using] = ACTIONS(3332), + [anon_sym_static_assert] = ACTIONS(3332), + [anon_sym_concept] = ACTIONS(3332), + [anon_sym_co_return] = ACTIONS(3332), + [anon_sym_co_yield] = ACTIONS(3332), + [anon_sym_R_DQUOTE] = ACTIONS(3334), + [anon_sym_LR_DQUOTE] = ACTIONS(3334), + [anon_sym_uR_DQUOTE] = ACTIONS(3334), + [anon_sym_UR_DQUOTE] = ACTIONS(3334), + [anon_sym_u8R_DQUOTE] = ACTIONS(3334), + [anon_sym_co_await] = ACTIONS(3332), + [anon_sym_new] = ACTIONS(3332), + [anon_sym_requires] = ACTIONS(3332), + [sym_this] = ACTIONS(3332), }, [1341] = { - [sym__expression] = STATE(3449), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_initializer_list] = STATE(5427), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2954), - [anon_sym_RPAREN] = ACTIONS(3434), - [anon_sym_LPAREN2] = ACTIONS(984), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1489), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [ts_builtin_sym_end] = ACTIONS(3119), + [sym_identifier] = ACTIONS(3117), + [aux_sym_preproc_include_token1] = ACTIONS(3117), + [aux_sym_preproc_def_token1] = ACTIONS(3117), + [aux_sym_preproc_if_token1] = ACTIONS(3117), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3117), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3117), + [sym_preproc_directive] = ACTIONS(3117), + [anon_sym_LPAREN2] = ACTIONS(3119), + [anon_sym_BANG] = ACTIONS(3119), + [anon_sym_TILDE] = ACTIONS(3119), + [anon_sym_DASH] = ACTIONS(3117), + [anon_sym_PLUS] = ACTIONS(3117), + [anon_sym_STAR] = ACTIONS(3119), + [anon_sym_AMP_AMP] = ACTIONS(3119), + [anon_sym_AMP] = ACTIONS(3117), + [anon_sym_typedef] = ACTIONS(3117), + [anon_sym_extern] = ACTIONS(3117), + [anon_sym___attribute__] = ACTIONS(3117), + [anon_sym_COLON_COLON] = ACTIONS(3119), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3119), + [anon_sym___declspec] = ACTIONS(3117), + [anon_sym___based] = ACTIONS(3117), + [anon_sym___cdecl] = ACTIONS(3117), + [anon_sym___clrcall] = ACTIONS(3117), + [anon_sym___stdcall] = ACTIONS(3117), + [anon_sym___fastcall] = ACTIONS(3117), + [anon_sym___thiscall] = ACTIONS(3117), + [anon_sym___vectorcall] = ACTIONS(3117), + [anon_sym_LBRACE] = ACTIONS(3119), + [anon_sym_LBRACK] = ACTIONS(3117), + [anon_sym_static] = ACTIONS(3117), + [anon_sym_register] = ACTIONS(3117), + [anon_sym_inline] = ACTIONS(3117), + [anon_sym_thread_local] = ACTIONS(3117), + [anon_sym_const] = ACTIONS(3117), + [anon_sym_constexpr] = ACTIONS(3117), + [anon_sym_volatile] = ACTIONS(3117), + [anon_sym_restrict] = ACTIONS(3117), + [anon_sym___restrict__] = ACTIONS(3117), + [anon_sym__Atomic] = ACTIONS(3117), + [anon_sym__Noreturn] = ACTIONS(3117), + [anon_sym_noreturn] = ACTIONS(3117), + [anon_sym_mutable] = ACTIONS(3117), + [anon_sym_constinit] = ACTIONS(3117), + [anon_sym_consteval] = ACTIONS(3117), + [anon_sym_signed] = ACTIONS(3117), + [anon_sym_unsigned] = ACTIONS(3117), + [anon_sym_long] = ACTIONS(3117), + [anon_sym_short] = ACTIONS(3117), + [sym_primitive_type] = ACTIONS(3117), + [anon_sym_enum] = ACTIONS(3117), + [anon_sym_class] = ACTIONS(3117), + [anon_sym_struct] = ACTIONS(3117), + [anon_sym_union] = ACTIONS(3117), + [anon_sym_if] = ACTIONS(3117), + [anon_sym_switch] = ACTIONS(3117), + [anon_sym_case] = ACTIONS(3117), + [anon_sym_default] = ACTIONS(3117), + [anon_sym_while] = ACTIONS(3117), + [anon_sym_do] = ACTIONS(3117), + [anon_sym_for] = ACTIONS(3117), + [anon_sym_return] = ACTIONS(3117), + [anon_sym_break] = ACTIONS(3117), + [anon_sym_continue] = ACTIONS(3117), + [anon_sym_goto] = ACTIONS(3117), + [anon_sym_not] = ACTIONS(3117), + [anon_sym_compl] = ACTIONS(3117), + [anon_sym_DASH_DASH] = ACTIONS(3119), + [anon_sym_PLUS_PLUS] = ACTIONS(3119), + [anon_sym_sizeof] = ACTIONS(3117), + [anon_sym_offsetof] = ACTIONS(3117), + [anon_sym__Generic] = ACTIONS(3117), + [anon_sym_asm] = ACTIONS(3117), + [anon_sym___asm__] = ACTIONS(3117), + [sym_number_literal] = ACTIONS(3119), + [anon_sym_L_SQUOTE] = ACTIONS(3119), + [anon_sym_u_SQUOTE] = ACTIONS(3119), + [anon_sym_U_SQUOTE] = ACTIONS(3119), + [anon_sym_u8_SQUOTE] = ACTIONS(3119), + [anon_sym_SQUOTE] = ACTIONS(3119), + [anon_sym_L_DQUOTE] = ACTIONS(3119), + [anon_sym_u_DQUOTE] = ACTIONS(3119), + [anon_sym_U_DQUOTE] = ACTIONS(3119), + [anon_sym_u8_DQUOTE] = ACTIONS(3119), + [anon_sym_DQUOTE] = ACTIONS(3119), + [sym_true] = ACTIONS(3117), + [sym_false] = ACTIONS(3117), + [anon_sym_NULL] = ACTIONS(3117), + [anon_sym_nullptr] = ACTIONS(3117), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3117), + [anon_sym_decltype] = ACTIONS(3117), + [anon_sym_virtual] = ACTIONS(3117), + [anon_sym_explicit] = ACTIONS(3117), + [anon_sym_typename] = ACTIONS(3117), + [anon_sym_template] = ACTIONS(3117), + [anon_sym_operator] = ACTIONS(3117), + [anon_sym_try] = ACTIONS(3117), + [anon_sym_delete] = ACTIONS(3117), + [anon_sym_throw] = ACTIONS(3117), + [anon_sym_namespace] = ACTIONS(3117), + [anon_sym_using] = ACTIONS(3117), + [anon_sym_static_assert] = ACTIONS(3117), + [anon_sym_concept] = ACTIONS(3117), + [anon_sym_co_return] = ACTIONS(3117), + [anon_sym_co_yield] = ACTIONS(3117), + [anon_sym_R_DQUOTE] = ACTIONS(3119), + [anon_sym_LR_DQUOTE] = ACTIONS(3119), + [anon_sym_uR_DQUOTE] = ACTIONS(3119), + [anon_sym_UR_DQUOTE] = ACTIONS(3119), + [anon_sym_u8R_DQUOTE] = ACTIONS(3119), + [anon_sym_co_await] = ACTIONS(3117), + [anon_sym_new] = ACTIONS(3117), + [anon_sym_requires] = ACTIONS(3117), + [sym_this] = ACTIONS(3117), }, [1342] = { - [sym__expression] = STATE(3464), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2984), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2984), - [sym_call_expression] = STATE(2984), - [sym_field_expression] = STATE(2984), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2984), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_lambda_default_capture] = STATE(5941), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2984), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(3047), - [anon_sym_LPAREN2] = ACTIONS(3049), - [anon_sym_BANG] = ACTIONS(3053), - [anon_sym_TILDE] = ACTIONS(3053), - [anon_sym_DASH] = ACTIONS(3051), - [anon_sym_PLUS] = ACTIONS(3051), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(3422), - [anon_sym_COLON_COLON] = ACTIONS(3055), - [anon_sym_LBRACK] = ACTIONS(1539), - [anon_sym_RBRACK] = ACTIONS(3436), - [anon_sym_EQ] = ACTIONS(3426), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(3051), - [anon_sym_compl] = ACTIONS(3051), - [anon_sym_DASH_DASH] = ACTIONS(3057), - [anon_sym_PLUS_PLUS] = ACTIONS(3057), - [anon_sym_sizeof] = ACTIONS(3059), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(3061), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(3063), - [anon_sym_new] = ACTIONS(3065), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [ts_builtin_sym_end] = ACTIONS(3310), + [sym_identifier] = ACTIONS(3308), + [aux_sym_preproc_include_token1] = ACTIONS(3308), + [aux_sym_preproc_def_token1] = ACTIONS(3308), + [aux_sym_preproc_if_token1] = ACTIONS(3308), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3308), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3308), + [sym_preproc_directive] = ACTIONS(3308), + [anon_sym_LPAREN2] = ACTIONS(3310), + [anon_sym_BANG] = ACTIONS(3310), + [anon_sym_TILDE] = ACTIONS(3310), + [anon_sym_DASH] = ACTIONS(3308), + [anon_sym_PLUS] = ACTIONS(3308), + [anon_sym_STAR] = ACTIONS(3310), + [anon_sym_AMP_AMP] = ACTIONS(3310), + [anon_sym_AMP] = ACTIONS(3308), + [anon_sym_typedef] = ACTIONS(3308), + [anon_sym_extern] = ACTIONS(3308), + [anon_sym___attribute__] = ACTIONS(3308), + [anon_sym_COLON_COLON] = ACTIONS(3310), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3310), + [anon_sym___declspec] = ACTIONS(3308), + [anon_sym___based] = ACTIONS(3308), + [anon_sym___cdecl] = ACTIONS(3308), + [anon_sym___clrcall] = ACTIONS(3308), + [anon_sym___stdcall] = ACTIONS(3308), + [anon_sym___fastcall] = ACTIONS(3308), + [anon_sym___thiscall] = ACTIONS(3308), + [anon_sym___vectorcall] = ACTIONS(3308), + [anon_sym_LBRACE] = ACTIONS(3310), + [anon_sym_LBRACK] = ACTIONS(3308), + [anon_sym_static] = ACTIONS(3308), + [anon_sym_register] = ACTIONS(3308), + [anon_sym_inline] = ACTIONS(3308), + [anon_sym_thread_local] = ACTIONS(3308), + [anon_sym_const] = ACTIONS(3308), + [anon_sym_constexpr] = ACTIONS(3308), + [anon_sym_volatile] = ACTIONS(3308), + [anon_sym_restrict] = ACTIONS(3308), + [anon_sym___restrict__] = ACTIONS(3308), + [anon_sym__Atomic] = ACTIONS(3308), + [anon_sym__Noreturn] = ACTIONS(3308), + [anon_sym_noreturn] = ACTIONS(3308), + [anon_sym_mutable] = ACTIONS(3308), + [anon_sym_constinit] = ACTIONS(3308), + [anon_sym_consteval] = ACTIONS(3308), + [anon_sym_signed] = ACTIONS(3308), + [anon_sym_unsigned] = ACTIONS(3308), + [anon_sym_long] = ACTIONS(3308), + [anon_sym_short] = ACTIONS(3308), + [sym_primitive_type] = ACTIONS(3308), + [anon_sym_enum] = ACTIONS(3308), + [anon_sym_class] = ACTIONS(3308), + [anon_sym_struct] = ACTIONS(3308), + [anon_sym_union] = ACTIONS(3308), + [anon_sym_if] = ACTIONS(3308), + [anon_sym_switch] = ACTIONS(3308), + [anon_sym_case] = ACTIONS(3308), + [anon_sym_default] = ACTIONS(3308), + [anon_sym_while] = ACTIONS(3308), + [anon_sym_do] = ACTIONS(3308), + [anon_sym_for] = ACTIONS(3308), + [anon_sym_return] = ACTIONS(3308), + [anon_sym_break] = ACTIONS(3308), + [anon_sym_continue] = ACTIONS(3308), + [anon_sym_goto] = ACTIONS(3308), + [anon_sym_not] = ACTIONS(3308), + [anon_sym_compl] = ACTIONS(3308), + [anon_sym_DASH_DASH] = ACTIONS(3310), + [anon_sym_PLUS_PLUS] = ACTIONS(3310), + [anon_sym_sizeof] = ACTIONS(3308), + [anon_sym_offsetof] = ACTIONS(3308), + [anon_sym__Generic] = ACTIONS(3308), + [anon_sym_asm] = ACTIONS(3308), + [anon_sym___asm__] = ACTIONS(3308), + [sym_number_literal] = ACTIONS(3310), + [anon_sym_L_SQUOTE] = ACTIONS(3310), + [anon_sym_u_SQUOTE] = ACTIONS(3310), + [anon_sym_U_SQUOTE] = ACTIONS(3310), + [anon_sym_u8_SQUOTE] = ACTIONS(3310), + [anon_sym_SQUOTE] = ACTIONS(3310), + [anon_sym_L_DQUOTE] = ACTIONS(3310), + [anon_sym_u_DQUOTE] = ACTIONS(3310), + [anon_sym_U_DQUOTE] = ACTIONS(3310), + [anon_sym_u8_DQUOTE] = ACTIONS(3310), + [anon_sym_DQUOTE] = ACTIONS(3310), + [sym_true] = ACTIONS(3308), + [sym_false] = ACTIONS(3308), + [anon_sym_NULL] = ACTIONS(3308), + [anon_sym_nullptr] = ACTIONS(3308), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3308), + [anon_sym_decltype] = ACTIONS(3308), + [anon_sym_virtual] = ACTIONS(3308), + [anon_sym_explicit] = ACTIONS(3308), + [anon_sym_typename] = ACTIONS(3308), + [anon_sym_template] = ACTIONS(3308), + [anon_sym_operator] = ACTIONS(3308), + [anon_sym_try] = ACTIONS(3308), + [anon_sym_delete] = ACTIONS(3308), + [anon_sym_throw] = ACTIONS(3308), + [anon_sym_namespace] = ACTIONS(3308), + [anon_sym_using] = ACTIONS(3308), + [anon_sym_static_assert] = ACTIONS(3308), + [anon_sym_concept] = ACTIONS(3308), + [anon_sym_co_return] = ACTIONS(3308), + [anon_sym_co_yield] = ACTIONS(3308), + [anon_sym_R_DQUOTE] = ACTIONS(3310), + [anon_sym_LR_DQUOTE] = ACTIONS(3310), + [anon_sym_uR_DQUOTE] = ACTIONS(3310), + [anon_sym_UR_DQUOTE] = ACTIONS(3310), + [anon_sym_u8R_DQUOTE] = ACTIONS(3310), + [anon_sym_co_await] = ACTIONS(3308), + [anon_sym_new] = ACTIONS(3308), + [anon_sym_requires] = ACTIONS(3308), + [sym_this] = ACTIONS(3308), }, [1343] = { - [sym__expression] = STATE(3464), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2984), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2984), - [sym_call_expression] = STATE(2984), - [sym_field_expression] = STATE(2984), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2984), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_lambda_default_capture] = STATE(5941), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2984), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(3047), - [anon_sym_LPAREN2] = ACTIONS(3049), - [anon_sym_BANG] = ACTIONS(3053), - [anon_sym_TILDE] = ACTIONS(3053), - [anon_sym_DASH] = ACTIONS(3051), - [anon_sym_PLUS] = ACTIONS(3051), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(3422), - [anon_sym_COLON_COLON] = ACTIONS(3055), - [anon_sym_LBRACK] = ACTIONS(1539), - [anon_sym_RBRACK] = ACTIONS(3438), - [anon_sym_EQ] = ACTIONS(3426), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(3051), - [anon_sym_compl] = ACTIONS(3051), - [anon_sym_DASH_DASH] = ACTIONS(3057), - [anon_sym_PLUS_PLUS] = ACTIONS(3057), - [anon_sym_sizeof] = ACTIONS(3059), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(3061), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(3063), - [anon_sym_new] = ACTIONS(3065), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [ts_builtin_sym_end] = ACTIONS(3207), + [sym_identifier] = ACTIONS(3205), + [aux_sym_preproc_include_token1] = ACTIONS(3205), + [aux_sym_preproc_def_token1] = ACTIONS(3205), + [aux_sym_preproc_if_token1] = ACTIONS(3205), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3205), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3205), + [sym_preproc_directive] = ACTIONS(3205), + [anon_sym_LPAREN2] = ACTIONS(3207), + [anon_sym_BANG] = ACTIONS(3207), + [anon_sym_TILDE] = ACTIONS(3207), + [anon_sym_DASH] = ACTIONS(3205), + [anon_sym_PLUS] = ACTIONS(3205), + [anon_sym_STAR] = ACTIONS(3207), + [anon_sym_AMP_AMP] = ACTIONS(3207), + [anon_sym_AMP] = ACTIONS(3205), + [anon_sym_typedef] = ACTIONS(3205), + [anon_sym_extern] = ACTIONS(3205), + [anon_sym___attribute__] = ACTIONS(3205), + [anon_sym_COLON_COLON] = ACTIONS(3207), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3207), + [anon_sym___declspec] = ACTIONS(3205), + [anon_sym___based] = ACTIONS(3205), + [anon_sym___cdecl] = ACTIONS(3205), + [anon_sym___clrcall] = ACTIONS(3205), + [anon_sym___stdcall] = ACTIONS(3205), + [anon_sym___fastcall] = ACTIONS(3205), + [anon_sym___thiscall] = ACTIONS(3205), + [anon_sym___vectorcall] = ACTIONS(3205), + [anon_sym_LBRACE] = ACTIONS(3207), + [anon_sym_LBRACK] = ACTIONS(3205), + [anon_sym_static] = ACTIONS(3205), + [anon_sym_register] = ACTIONS(3205), + [anon_sym_inline] = ACTIONS(3205), + [anon_sym_thread_local] = ACTIONS(3205), + [anon_sym_const] = ACTIONS(3205), + [anon_sym_constexpr] = ACTIONS(3205), + [anon_sym_volatile] = ACTIONS(3205), + [anon_sym_restrict] = ACTIONS(3205), + [anon_sym___restrict__] = ACTIONS(3205), + [anon_sym__Atomic] = ACTIONS(3205), + [anon_sym__Noreturn] = ACTIONS(3205), + [anon_sym_noreturn] = ACTIONS(3205), + [anon_sym_mutable] = ACTIONS(3205), + [anon_sym_constinit] = ACTIONS(3205), + [anon_sym_consteval] = ACTIONS(3205), + [anon_sym_signed] = ACTIONS(3205), + [anon_sym_unsigned] = ACTIONS(3205), + [anon_sym_long] = ACTIONS(3205), + [anon_sym_short] = ACTIONS(3205), + [sym_primitive_type] = ACTIONS(3205), + [anon_sym_enum] = ACTIONS(3205), + [anon_sym_class] = ACTIONS(3205), + [anon_sym_struct] = ACTIONS(3205), + [anon_sym_union] = ACTIONS(3205), + [anon_sym_if] = ACTIONS(3205), + [anon_sym_switch] = ACTIONS(3205), + [anon_sym_case] = ACTIONS(3205), + [anon_sym_default] = ACTIONS(3205), + [anon_sym_while] = ACTIONS(3205), + [anon_sym_do] = ACTIONS(3205), + [anon_sym_for] = ACTIONS(3205), + [anon_sym_return] = ACTIONS(3205), + [anon_sym_break] = ACTIONS(3205), + [anon_sym_continue] = ACTIONS(3205), + [anon_sym_goto] = ACTIONS(3205), + [anon_sym_not] = ACTIONS(3205), + [anon_sym_compl] = ACTIONS(3205), + [anon_sym_DASH_DASH] = ACTIONS(3207), + [anon_sym_PLUS_PLUS] = ACTIONS(3207), + [anon_sym_sizeof] = ACTIONS(3205), + [anon_sym_offsetof] = ACTIONS(3205), + [anon_sym__Generic] = ACTIONS(3205), + [anon_sym_asm] = ACTIONS(3205), + [anon_sym___asm__] = ACTIONS(3205), + [sym_number_literal] = ACTIONS(3207), + [anon_sym_L_SQUOTE] = ACTIONS(3207), + [anon_sym_u_SQUOTE] = ACTIONS(3207), + [anon_sym_U_SQUOTE] = ACTIONS(3207), + [anon_sym_u8_SQUOTE] = ACTIONS(3207), + [anon_sym_SQUOTE] = ACTIONS(3207), + [anon_sym_L_DQUOTE] = ACTIONS(3207), + [anon_sym_u_DQUOTE] = ACTIONS(3207), + [anon_sym_U_DQUOTE] = ACTIONS(3207), + [anon_sym_u8_DQUOTE] = ACTIONS(3207), + [anon_sym_DQUOTE] = ACTIONS(3207), + [sym_true] = ACTIONS(3205), + [sym_false] = ACTIONS(3205), + [anon_sym_NULL] = ACTIONS(3205), + [anon_sym_nullptr] = ACTIONS(3205), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3205), + [anon_sym_decltype] = ACTIONS(3205), + [anon_sym_virtual] = ACTIONS(3205), + [anon_sym_explicit] = ACTIONS(3205), + [anon_sym_typename] = ACTIONS(3205), + [anon_sym_template] = ACTIONS(3205), + [anon_sym_operator] = ACTIONS(3205), + [anon_sym_try] = ACTIONS(3205), + [anon_sym_delete] = ACTIONS(3205), + [anon_sym_throw] = ACTIONS(3205), + [anon_sym_namespace] = ACTIONS(3205), + [anon_sym_using] = ACTIONS(3205), + [anon_sym_static_assert] = ACTIONS(3205), + [anon_sym_concept] = ACTIONS(3205), + [anon_sym_co_return] = ACTIONS(3205), + [anon_sym_co_yield] = ACTIONS(3205), + [anon_sym_R_DQUOTE] = ACTIONS(3207), + [anon_sym_LR_DQUOTE] = ACTIONS(3207), + [anon_sym_uR_DQUOTE] = ACTIONS(3207), + [anon_sym_UR_DQUOTE] = ACTIONS(3207), + [anon_sym_u8R_DQUOTE] = ACTIONS(3207), + [anon_sym_co_await] = ACTIONS(3205), + [anon_sym_new] = ACTIONS(3205), + [anon_sym_requires] = ACTIONS(3205), + [sym_this] = ACTIONS(3205), }, [1344] = { - [sym__expression] = STATE(3464), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2984), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2984), - [sym_call_expression] = STATE(2984), - [sym_field_expression] = STATE(2984), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2984), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_lambda_default_capture] = STATE(5941), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2984), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(3047), - [anon_sym_LPAREN2] = ACTIONS(3049), - [anon_sym_BANG] = ACTIONS(3053), - [anon_sym_TILDE] = ACTIONS(3053), - [anon_sym_DASH] = ACTIONS(3051), - [anon_sym_PLUS] = ACTIONS(3051), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(3422), - [anon_sym_COLON_COLON] = ACTIONS(3055), - [anon_sym_LBRACK] = ACTIONS(1539), - [anon_sym_RBRACK] = ACTIONS(3440), - [anon_sym_EQ] = ACTIONS(3426), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(3051), - [anon_sym_compl] = ACTIONS(3051), - [anon_sym_DASH_DASH] = ACTIONS(3057), - [anon_sym_PLUS_PLUS] = ACTIONS(3057), - [anon_sym_sizeof] = ACTIONS(3059), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(3061), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(3063), - [anon_sym_new] = ACTIONS(3065), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [ts_builtin_sym_end] = ACTIONS(3248), + [sym_identifier] = ACTIONS(3246), + [aux_sym_preproc_include_token1] = ACTIONS(3246), + [aux_sym_preproc_def_token1] = ACTIONS(3246), + [aux_sym_preproc_if_token1] = ACTIONS(3246), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3246), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3246), + [sym_preproc_directive] = ACTIONS(3246), + [anon_sym_LPAREN2] = ACTIONS(3248), + [anon_sym_BANG] = ACTIONS(3248), + [anon_sym_TILDE] = ACTIONS(3248), + [anon_sym_DASH] = ACTIONS(3246), + [anon_sym_PLUS] = ACTIONS(3246), + [anon_sym_STAR] = ACTIONS(3248), + [anon_sym_AMP_AMP] = ACTIONS(3248), + [anon_sym_AMP] = ACTIONS(3246), + [anon_sym_typedef] = ACTIONS(3246), + [anon_sym_extern] = ACTIONS(3246), + [anon_sym___attribute__] = ACTIONS(3246), + [anon_sym_COLON_COLON] = ACTIONS(3248), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3248), + [anon_sym___declspec] = ACTIONS(3246), + [anon_sym___based] = ACTIONS(3246), + [anon_sym___cdecl] = ACTIONS(3246), + [anon_sym___clrcall] = ACTIONS(3246), + [anon_sym___stdcall] = ACTIONS(3246), + [anon_sym___fastcall] = ACTIONS(3246), + [anon_sym___thiscall] = ACTIONS(3246), + [anon_sym___vectorcall] = ACTIONS(3246), + [anon_sym_LBRACE] = ACTIONS(3248), + [anon_sym_LBRACK] = ACTIONS(3246), + [anon_sym_static] = ACTIONS(3246), + [anon_sym_register] = ACTIONS(3246), + [anon_sym_inline] = ACTIONS(3246), + [anon_sym_thread_local] = ACTIONS(3246), + [anon_sym_const] = ACTIONS(3246), + [anon_sym_constexpr] = ACTIONS(3246), + [anon_sym_volatile] = ACTIONS(3246), + [anon_sym_restrict] = ACTIONS(3246), + [anon_sym___restrict__] = ACTIONS(3246), + [anon_sym__Atomic] = ACTIONS(3246), + [anon_sym__Noreturn] = ACTIONS(3246), + [anon_sym_noreturn] = ACTIONS(3246), + [anon_sym_mutable] = ACTIONS(3246), + [anon_sym_constinit] = ACTIONS(3246), + [anon_sym_consteval] = ACTIONS(3246), + [anon_sym_signed] = ACTIONS(3246), + [anon_sym_unsigned] = ACTIONS(3246), + [anon_sym_long] = ACTIONS(3246), + [anon_sym_short] = ACTIONS(3246), + [sym_primitive_type] = ACTIONS(3246), + [anon_sym_enum] = ACTIONS(3246), + [anon_sym_class] = ACTIONS(3246), + [anon_sym_struct] = ACTIONS(3246), + [anon_sym_union] = ACTIONS(3246), + [anon_sym_if] = ACTIONS(3246), + [anon_sym_switch] = ACTIONS(3246), + [anon_sym_case] = ACTIONS(3246), + [anon_sym_default] = ACTIONS(3246), + [anon_sym_while] = ACTIONS(3246), + [anon_sym_do] = ACTIONS(3246), + [anon_sym_for] = ACTIONS(3246), + [anon_sym_return] = ACTIONS(3246), + [anon_sym_break] = ACTIONS(3246), + [anon_sym_continue] = ACTIONS(3246), + [anon_sym_goto] = ACTIONS(3246), + [anon_sym_not] = ACTIONS(3246), + [anon_sym_compl] = ACTIONS(3246), + [anon_sym_DASH_DASH] = ACTIONS(3248), + [anon_sym_PLUS_PLUS] = ACTIONS(3248), + [anon_sym_sizeof] = ACTIONS(3246), + [anon_sym_offsetof] = ACTIONS(3246), + [anon_sym__Generic] = ACTIONS(3246), + [anon_sym_asm] = ACTIONS(3246), + [anon_sym___asm__] = ACTIONS(3246), + [sym_number_literal] = ACTIONS(3248), + [anon_sym_L_SQUOTE] = ACTIONS(3248), + [anon_sym_u_SQUOTE] = ACTIONS(3248), + [anon_sym_U_SQUOTE] = ACTIONS(3248), + [anon_sym_u8_SQUOTE] = ACTIONS(3248), + [anon_sym_SQUOTE] = ACTIONS(3248), + [anon_sym_L_DQUOTE] = ACTIONS(3248), + [anon_sym_u_DQUOTE] = ACTIONS(3248), + [anon_sym_U_DQUOTE] = ACTIONS(3248), + [anon_sym_u8_DQUOTE] = ACTIONS(3248), + [anon_sym_DQUOTE] = ACTIONS(3248), + [sym_true] = ACTIONS(3246), + [sym_false] = ACTIONS(3246), + [anon_sym_NULL] = ACTIONS(3246), + [anon_sym_nullptr] = ACTIONS(3246), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3246), + [anon_sym_decltype] = ACTIONS(3246), + [anon_sym_virtual] = ACTIONS(3246), + [anon_sym_explicit] = ACTIONS(3246), + [anon_sym_typename] = ACTIONS(3246), + [anon_sym_template] = ACTIONS(3246), + [anon_sym_operator] = ACTIONS(3246), + [anon_sym_try] = ACTIONS(3246), + [anon_sym_delete] = ACTIONS(3246), + [anon_sym_throw] = ACTIONS(3246), + [anon_sym_namespace] = ACTIONS(3246), + [anon_sym_using] = ACTIONS(3246), + [anon_sym_static_assert] = ACTIONS(3246), + [anon_sym_concept] = ACTIONS(3246), + [anon_sym_co_return] = ACTIONS(3246), + [anon_sym_co_yield] = ACTIONS(3246), + [anon_sym_R_DQUOTE] = ACTIONS(3248), + [anon_sym_LR_DQUOTE] = ACTIONS(3248), + [anon_sym_uR_DQUOTE] = ACTIONS(3248), + [anon_sym_UR_DQUOTE] = ACTIONS(3248), + [anon_sym_u8R_DQUOTE] = ACTIONS(3248), + [anon_sym_co_await] = ACTIONS(3246), + [anon_sym_new] = ACTIONS(3246), + [anon_sym_requires] = ACTIONS(3246), + [sym_this] = ACTIONS(3246), }, [1345] = { - [sym__expression] = STATE(3464), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2984), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2984), - [sym_call_expression] = STATE(2984), - [sym_field_expression] = STATE(2984), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2984), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_lambda_default_capture] = STATE(5941), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2984), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(3047), - [anon_sym_LPAREN2] = ACTIONS(3049), - [anon_sym_BANG] = ACTIONS(3053), - [anon_sym_TILDE] = ACTIONS(3053), - [anon_sym_DASH] = ACTIONS(3051), - [anon_sym_PLUS] = ACTIONS(3051), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(3422), - [anon_sym_COLON_COLON] = ACTIONS(3055), - [anon_sym_LBRACK] = ACTIONS(1539), - [anon_sym_RBRACK] = ACTIONS(3442), - [anon_sym_EQ] = ACTIONS(3426), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(3051), - [anon_sym_compl] = ACTIONS(3051), - [anon_sym_DASH_DASH] = ACTIONS(3057), - [anon_sym_PLUS_PLUS] = ACTIONS(3057), - [anon_sym_sizeof] = ACTIONS(3059), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(3061), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(3063), - [anon_sym_new] = ACTIONS(3065), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [ts_builtin_sym_end] = ACTIONS(3232), + [sym_identifier] = ACTIONS(3230), + [aux_sym_preproc_include_token1] = ACTIONS(3230), + [aux_sym_preproc_def_token1] = ACTIONS(3230), + [aux_sym_preproc_if_token1] = ACTIONS(3230), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3230), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3230), + [sym_preproc_directive] = ACTIONS(3230), + [anon_sym_LPAREN2] = ACTIONS(3232), + [anon_sym_BANG] = ACTIONS(3232), + [anon_sym_TILDE] = ACTIONS(3232), + [anon_sym_DASH] = ACTIONS(3230), + [anon_sym_PLUS] = ACTIONS(3230), + [anon_sym_STAR] = ACTIONS(3232), + [anon_sym_AMP_AMP] = ACTIONS(3232), + [anon_sym_AMP] = ACTIONS(3230), + [anon_sym_typedef] = ACTIONS(3230), + [anon_sym_extern] = ACTIONS(3230), + [anon_sym___attribute__] = ACTIONS(3230), + [anon_sym_COLON_COLON] = ACTIONS(3232), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3232), + [anon_sym___declspec] = ACTIONS(3230), + [anon_sym___based] = ACTIONS(3230), + [anon_sym___cdecl] = ACTIONS(3230), + [anon_sym___clrcall] = ACTIONS(3230), + [anon_sym___stdcall] = ACTIONS(3230), + [anon_sym___fastcall] = ACTIONS(3230), + [anon_sym___thiscall] = ACTIONS(3230), + [anon_sym___vectorcall] = ACTIONS(3230), + [anon_sym_LBRACE] = ACTIONS(3232), + [anon_sym_LBRACK] = ACTIONS(3230), + [anon_sym_static] = ACTIONS(3230), + [anon_sym_register] = ACTIONS(3230), + [anon_sym_inline] = ACTIONS(3230), + [anon_sym_thread_local] = ACTIONS(3230), + [anon_sym_const] = ACTIONS(3230), + [anon_sym_constexpr] = ACTIONS(3230), + [anon_sym_volatile] = ACTIONS(3230), + [anon_sym_restrict] = ACTIONS(3230), + [anon_sym___restrict__] = ACTIONS(3230), + [anon_sym__Atomic] = ACTIONS(3230), + [anon_sym__Noreturn] = ACTIONS(3230), + [anon_sym_noreturn] = ACTIONS(3230), + [anon_sym_mutable] = ACTIONS(3230), + [anon_sym_constinit] = ACTIONS(3230), + [anon_sym_consteval] = ACTIONS(3230), + [anon_sym_signed] = ACTIONS(3230), + [anon_sym_unsigned] = ACTIONS(3230), + [anon_sym_long] = ACTIONS(3230), + [anon_sym_short] = ACTIONS(3230), + [sym_primitive_type] = ACTIONS(3230), + [anon_sym_enum] = ACTIONS(3230), + [anon_sym_class] = ACTIONS(3230), + [anon_sym_struct] = ACTIONS(3230), + [anon_sym_union] = ACTIONS(3230), + [anon_sym_if] = ACTIONS(3230), + [anon_sym_switch] = ACTIONS(3230), + [anon_sym_case] = ACTIONS(3230), + [anon_sym_default] = ACTIONS(3230), + [anon_sym_while] = ACTIONS(3230), + [anon_sym_do] = ACTIONS(3230), + [anon_sym_for] = ACTIONS(3230), + [anon_sym_return] = ACTIONS(3230), + [anon_sym_break] = ACTIONS(3230), + [anon_sym_continue] = ACTIONS(3230), + [anon_sym_goto] = ACTIONS(3230), + [anon_sym_not] = ACTIONS(3230), + [anon_sym_compl] = ACTIONS(3230), + [anon_sym_DASH_DASH] = ACTIONS(3232), + [anon_sym_PLUS_PLUS] = ACTIONS(3232), + [anon_sym_sizeof] = ACTIONS(3230), + [anon_sym_offsetof] = ACTIONS(3230), + [anon_sym__Generic] = ACTIONS(3230), + [anon_sym_asm] = ACTIONS(3230), + [anon_sym___asm__] = ACTIONS(3230), + [sym_number_literal] = ACTIONS(3232), + [anon_sym_L_SQUOTE] = ACTIONS(3232), + [anon_sym_u_SQUOTE] = ACTIONS(3232), + [anon_sym_U_SQUOTE] = ACTIONS(3232), + [anon_sym_u8_SQUOTE] = ACTIONS(3232), + [anon_sym_SQUOTE] = ACTIONS(3232), + [anon_sym_L_DQUOTE] = ACTIONS(3232), + [anon_sym_u_DQUOTE] = ACTIONS(3232), + [anon_sym_U_DQUOTE] = ACTIONS(3232), + [anon_sym_u8_DQUOTE] = ACTIONS(3232), + [anon_sym_DQUOTE] = ACTIONS(3232), + [sym_true] = ACTIONS(3230), + [sym_false] = ACTIONS(3230), + [anon_sym_NULL] = ACTIONS(3230), + [anon_sym_nullptr] = ACTIONS(3230), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3230), + [anon_sym_decltype] = ACTIONS(3230), + [anon_sym_virtual] = ACTIONS(3230), + [anon_sym_explicit] = ACTIONS(3230), + [anon_sym_typename] = ACTIONS(3230), + [anon_sym_template] = ACTIONS(3230), + [anon_sym_operator] = ACTIONS(3230), + [anon_sym_try] = ACTIONS(3230), + [anon_sym_delete] = ACTIONS(3230), + [anon_sym_throw] = ACTIONS(3230), + [anon_sym_namespace] = ACTIONS(3230), + [anon_sym_using] = ACTIONS(3230), + [anon_sym_static_assert] = ACTIONS(3230), + [anon_sym_concept] = ACTIONS(3230), + [anon_sym_co_return] = ACTIONS(3230), + [anon_sym_co_yield] = ACTIONS(3230), + [anon_sym_R_DQUOTE] = ACTIONS(3232), + [anon_sym_LR_DQUOTE] = ACTIONS(3232), + [anon_sym_uR_DQUOTE] = ACTIONS(3232), + [anon_sym_UR_DQUOTE] = ACTIONS(3232), + [anon_sym_u8R_DQUOTE] = ACTIONS(3232), + [anon_sym_co_await] = ACTIONS(3230), + [anon_sym_new] = ACTIONS(3230), + [anon_sym_requires] = ACTIONS(3230), + [sym_this] = ACTIONS(3230), }, [1346] = { - [sym__expression] = STATE(3464), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2984), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2984), - [sym_call_expression] = STATE(2984), - [sym_field_expression] = STATE(2984), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2984), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_lambda_default_capture] = STATE(5941), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2984), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(3047), - [anon_sym_LPAREN2] = ACTIONS(3049), - [anon_sym_BANG] = ACTIONS(3053), - [anon_sym_TILDE] = ACTIONS(3053), - [anon_sym_DASH] = ACTIONS(3051), - [anon_sym_PLUS] = ACTIONS(3051), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(3422), - [anon_sym_COLON_COLON] = ACTIONS(3055), - [anon_sym_LBRACK] = ACTIONS(1539), - [anon_sym_RBRACK] = ACTIONS(3444), - [anon_sym_EQ] = ACTIONS(3426), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(3051), - [anon_sym_compl] = ACTIONS(3051), - [anon_sym_DASH_DASH] = ACTIONS(3057), - [anon_sym_PLUS_PLUS] = ACTIONS(3057), - [anon_sym_sizeof] = ACTIONS(3059), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(3061), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(3063), - [anon_sym_new] = ACTIONS(3065), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [ts_builtin_sym_end] = ACTIONS(3119), + [sym_identifier] = ACTIONS(3117), + [aux_sym_preproc_include_token1] = ACTIONS(3117), + [aux_sym_preproc_def_token1] = ACTIONS(3117), + [aux_sym_preproc_if_token1] = ACTIONS(3117), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3117), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3117), + [sym_preproc_directive] = ACTIONS(3117), + [anon_sym_LPAREN2] = ACTIONS(3119), + [anon_sym_BANG] = ACTIONS(3119), + [anon_sym_TILDE] = ACTIONS(3119), + [anon_sym_DASH] = ACTIONS(3117), + [anon_sym_PLUS] = ACTIONS(3117), + [anon_sym_STAR] = ACTIONS(3119), + [anon_sym_AMP_AMP] = ACTIONS(3119), + [anon_sym_AMP] = ACTIONS(3117), + [anon_sym_typedef] = ACTIONS(3117), + [anon_sym_extern] = ACTIONS(3117), + [anon_sym___attribute__] = ACTIONS(3117), + [anon_sym_COLON_COLON] = ACTIONS(3119), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3119), + [anon_sym___declspec] = ACTIONS(3117), + [anon_sym___based] = ACTIONS(3117), + [anon_sym___cdecl] = ACTIONS(3117), + [anon_sym___clrcall] = ACTIONS(3117), + [anon_sym___stdcall] = ACTIONS(3117), + [anon_sym___fastcall] = ACTIONS(3117), + [anon_sym___thiscall] = ACTIONS(3117), + [anon_sym___vectorcall] = ACTIONS(3117), + [anon_sym_LBRACE] = ACTIONS(3119), + [anon_sym_LBRACK] = ACTIONS(3117), + [anon_sym_static] = ACTIONS(3117), + [anon_sym_register] = ACTIONS(3117), + [anon_sym_inline] = ACTIONS(3117), + [anon_sym_thread_local] = ACTIONS(3117), + [anon_sym_const] = ACTIONS(3117), + [anon_sym_constexpr] = ACTIONS(3117), + [anon_sym_volatile] = ACTIONS(3117), + [anon_sym_restrict] = ACTIONS(3117), + [anon_sym___restrict__] = ACTIONS(3117), + [anon_sym__Atomic] = ACTIONS(3117), + [anon_sym__Noreturn] = ACTIONS(3117), + [anon_sym_noreturn] = ACTIONS(3117), + [anon_sym_mutable] = ACTIONS(3117), + [anon_sym_constinit] = ACTIONS(3117), + [anon_sym_consteval] = ACTIONS(3117), + [anon_sym_signed] = ACTIONS(3117), + [anon_sym_unsigned] = ACTIONS(3117), + [anon_sym_long] = ACTIONS(3117), + [anon_sym_short] = ACTIONS(3117), + [sym_primitive_type] = ACTIONS(3117), + [anon_sym_enum] = ACTIONS(3117), + [anon_sym_class] = ACTIONS(3117), + [anon_sym_struct] = ACTIONS(3117), + [anon_sym_union] = ACTIONS(3117), + [anon_sym_if] = ACTIONS(3117), + [anon_sym_switch] = ACTIONS(3117), + [anon_sym_case] = ACTIONS(3117), + [anon_sym_default] = ACTIONS(3117), + [anon_sym_while] = ACTIONS(3117), + [anon_sym_do] = ACTIONS(3117), + [anon_sym_for] = ACTIONS(3117), + [anon_sym_return] = ACTIONS(3117), + [anon_sym_break] = ACTIONS(3117), + [anon_sym_continue] = ACTIONS(3117), + [anon_sym_goto] = ACTIONS(3117), + [anon_sym_not] = ACTIONS(3117), + [anon_sym_compl] = ACTIONS(3117), + [anon_sym_DASH_DASH] = ACTIONS(3119), + [anon_sym_PLUS_PLUS] = ACTIONS(3119), + [anon_sym_sizeof] = ACTIONS(3117), + [anon_sym_offsetof] = ACTIONS(3117), + [anon_sym__Generic] = ACTIONS(3117), + [anon_sym_asm] = ACTIONS(3117), + [anon_sym___asm__] = ACTIONS(3117), + [sym_number_literal] = ACTIONS(3119), + [anon_sym_L_SQUOTE] = ACTIONS(3119), + [anon_sym_u_SQUOTE] = ACTIONS(3119), + [anon_sym_U_SQUOTE] = ACTIONS(3119), + [anon_sym_u8_SQUOTE] = ACTIONS(3119), + [anon_sym_SQUOTE] = ACTIONS(3119), + [anon_sym_L_DQUOTE] = ACTIONS(3119), + [anon_sym_u_DQUOTE] = ACTIONS(3119), + [anon_sym_U_DQUOTE] = ACTIONS(3119), + [anon_sym_u8_DQUOTE] = ACTIONS(3119), + [anon_sym_DQUOTE] = ACTIONS(3119), + [sym_true] = ACTIONS(3117), + [sym_false] = ACTIONS(3117), + [anon_sym_NULL] = ACTIONS(3117), + [anon_sym_nullptr] = ACTIONS(3117), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3117), + [anon_sym_decltype] = ACTIONS(3117), + [anon_sym_virtual] = ACTIONS(3117), + [anon_sym_explicit] = ACTIONS(3117), + [anon_sym_typename] = ACTIONS(3117), + [anon_sym_template] = ACTIONS(3117), + [anon_sym_operator] = ACTIONS(3117), + [anon_sym_try] = ACTIONS(3117), + [anon_sym_delete] = ACTIONS(3117), + [anon_sym_throw] = ACTIONS(3117), + [anon_sym_namespace] = ACTIONS(3117), + [anon_sym_using] = ACTIONS(3117), + [anon_sym_static_assert] = ACTIONS(3117), + [anon_sym_concept] = ACTIONS(3117), + [anon_sym_co_return] = ACTIONS(3117), + [anon_sym_co_yield] = ACTIONS(3117), + [anon_sym_R_DQUOTE] = ACTIONS(3119), + [anon_sym_LR_DQUOTE] = ACTIONS(3119), + [anon_sym_uR_DQUOTE] = ACTIONS(3119), + [anon_sym_UR_DQUOTE] = ACTIONS(3119), + [anon_sym_u8R_DQUOTE] = ACTIONS(3119), + [anon_sym_co_await] = ACTIONS(3117), + [anon_sym_new] = ACTIONS(3117), + [anon_sym_requires] = ACTIONS(3117), + [sym_this] = ACTIONS(3117), }, [1347] = { - [sym__expression] = STATE(3464), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2984), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2984), - [sym_call_expression] = STATE(2984), - [sym_field_expression] = STATE(2984), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2984), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_lambda_default_capture] = STATE(5941), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2984), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(3047), - [anon_sym_LPAREN2] = ACTIONS(3049), - [anon_sym_BANG] = ACTIONS(3053), - [anon_sym_TILDE] = ACTIONS(3053), - [anon_sym_DASH] = ACTIONS(3051), - [anon_sym_PLUS] = ACTIONS(3051), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(3422), - [anon_sym_COLON_COLON] = ACTIONS(3055), - [anon_sym_LBRACK] = ACTIONS(1539), - [anon_sym_RBRACK] = ACTIONS(3446), - [anon_sym_EQ] = ACTIONS(3426), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(3051), - [anon_sym_compl] = ACTIONS(3051), - [anon_sym_DASH_DASH] = ACTIONS(3057), - [anon_sym_PLUS_PLUS] = ACTIONS(3057), - [anon_sym_sizeof] = ACTIONS(3059), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(3061), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(3063), - [anon_sym_new] = ACTIONS(3065), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [ts_builtin_sym_end] = ACTIONS(3272), + [sym_identifier] = ACTIONS(3270), + [aux_sym_preproc_include_token1] = ACTIONS(3270), + [aux_sym_preproc_def_token1] = ACTIONS(3270), + [aux_sym_preproc_if_token1] = ACTIONS(3270), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3270), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3270), + [sym_preproc_directive] = ACTIONS(3270), + [anon_sym_LPAREN2] = ACTIONS(3272), + [anon_sym_BANG] = ACTIONS(3272), + [anon_sym_TILDE] = ACTIONS(3272), + [anon_sym_DASH] = ACTIONS(3270), + [anon_sym_PLUS] = ACTIONS(3270), + [anon_sym_STAR] = ACTIONS(3272), + [anon_sym_AMP_AMP] = ACTIONS(3272), + [anon_sym_AMP] = ACTIONS(3270), + [anon_sym_typedef] = ACTIONS(3270), + [anon_sym_extern] = ACTIONS(3270), + [anon_sym___attribute__] = ACTIONS(3270), + [anon_sym_COLON_COLON] = ACTIONS(3272), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3272), + [anon_sym___declspec] = ACTIONS(3270), + [anon_sym___based] = ACTIONS(3270), + [anon_sym___cdecl] = ACTIONS(3270), + [anon_sym___clrcall] = ACTIONS(3270), + [anon_sym___stdcall] = ACTIONS(3270), + [anon_sym___fastcall] = ACTIONS(3270), + [anon_sym___thiscall] = ACTIONS(3270), + [anon_sym___vectorcall] = ACTIONS(3270), + [anon_sym_LBRACE] = ACTIONS(3272), + [anon_sym_LBRACK] = ACTIONS(3270), + [anon_sym_static] = ACTIONS(3270), + [anon_sym_register] = ACTIONS(3270), + [anon_sym_inline] = ACTIONS(3270), + [anon_sym_thread_local] = ACTIONS(3270), + [anon_sym_const] = ACTIONS(3270), + [anon_sym_constexpr] = ACTIONS(3270), + [anon_sym_volatile] = ACTIONS(3270), + [anon_sym_restrict] = ACTIONS(3270), + [anon_sym___restrict__] = ACTIONS(3270), + [anon_sym__Atomic] = ACTIONS(3270), + [anon_sym__Noreturn] = ACTIONS(3270), + [anon_sym_noreturn] = ACTIONS(3270), + [anon_sym_mutable] = ACTIONS(3270), + [anon_sym_constinit] = ACTIONS(3270), + [anon_sym_consteval] = ACTIONS(3270), + [anon_sym_signed] = ACTIONS(3270), + [anon_sym_unsigned] = ACTIONS(3270), + [anon_sym_long] = ACTIONS(3270), + [anon_sym_short] = ACTIONS(3270), + [sym_primitive_type] = ACTIONS(3270), + [anon_sym_enum] = ACTIONS(3270), + [anon_sym_class] = ACTIONS(3270), + [anon_sym_struct] = ACTIONS(3270), + [anon_sym_union] = ACTIONS(3270), + [anon_sym_if] = ACTIONS(3270), + [anon_sym_switch] = ACTIONS(3270), + [anon_sym_case] = ACTIONS(3270), + [anon_sym_default] = ACTIONS(3270), + [anon_sym_while] = ACTIONS(3270), + [anon_sym_do] = ACTIONS(3270), + [anon_sym_for] = ACTIONS(3270), + [anon_sym_return] = ACTIONS(3270), + [anon_sym_break] = ACTIONS(3270), + [anon_sym_continue] = ACTIONS(3270), + [anon_sym_goto] = ACTIONS(3270), + [anon_sym_not] = ACTIONS(3270), + [anon_sym_compl] = ACTIONS(3270), + [anon_sym_DASH_DASH] = ACTIONS(3272), + [anon_sym_PLUS_PLUS] = ACTIONS(3272), + [anon_sym_sizeof] = ACTIONS(3270), + [anon_sym_offsetof] = ACTIONS(3270), + [anon_sym__Generic] = ACTIONS(3270), + [anon_sym_asm] = ACTIONS(3270), + [anon_sym___asm__] = ACTIONS(3270), + [sym_number_literal] = ACTIONS(3272), + [anon_sym_L_SQUOTE] = ACTIONS(3272), + [anon_sym_u_SQUOTE] = ACTIONS(3272), + [anon_sym_U_SQUOTE] = ACTIONS(3272), + [anon_sym_u8_SQUOTE] = ACTIONS(3272), + [anon_sym_SQUOTE] = ACTIONS(3272), + [anon_sym_L_DQUOTE] = ACTIONS(3272), + [anon_sym_u_DQUOTE] = ACTIONS(3272), + [anon_sym_U_DQUOTE] = ACTIONS(3272), + [anon_sym_u8_DQUOTE] = ACTIONS(3272), + [anon_sym_DQUOTE] = ACTIONS(3272), + [sym_true] = ACTIONS(3270), + [sym_false] = ACTIONS(3270), + [anon_sym_NULL] = ACTIONS(3270), + [anon_sym_nullptr] = ACTIONS(3270), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3270), + [anon_sym_decltype] = ACTIONS(3270), + [anon_sym_virtual] = ACTIONS(3270), + [anon_sym_explicit] = ACTIONS(3270), + [anon_sym_typename] = ACTIONS(3270), + [anon_sym_template] = ACTIONS(3270), + [anon_sym_operator] = ACTIONS(3270), + [anon_sym_try] = ACTIONS(3270), + [anon_sym_delete] = ACTIONS(3270), + [anon_sym_throw] = ACTIONS(3270), + [anon_sym_namespace] = ACTIONS(3270), + [anon_sym_using] = ACTIONS(3270), + [anon_sym_static_assert] = ACTIONS(3270), + [anon_sym_concept] = ACTIONS(3270), + [anon_sym_co_return] = ACTIONS(3270), + [anon_sym_co_yield] = ACTIONS(3270), + [anon_sym_R_DQUOTE] = ACTIONS(3272), + [anon_sym_LR_DQUOTE] = ACTIONS(3272), + [anon_sym_uR_DQUOTE] = ACTIONS(3272), + [anon_sym_UR_DQUOTE] = ACTIONS(3272), + [anon_sym_u8R_DQUOTE] = ACTIONS(3272), + [anon_sym_co_await] = ACTIONS(3270), + [anon_sym_new] = ACTIONS(3270), + [anon_sym_requires] = ACTIONS(3270), + [sym_this] = ACTIONS(3270), }, [1348] = { - [sym__expression] = STATE(3459), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_initializer_list] = STATE(5567), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2954), - [anon_sym_RPAREN] = ACTIONS(3448), - [anon_sym_LPAREN2] = ACTIONS(984), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1489), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [ts_builtin_sym_end] = ACTIONS(3264), + [sym_identifier] = ACTIONS(3262), + [aux_sym_preproc_include_token1] = ACTIONS(3262), + [aux_sym_preproc_def_token1] = ACTIONS(3262), + [aux_sym_preproc_if_token1] = ACTIONS(3262), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3262), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3262), + [sym_preproc_directive] = ACTIONS(3262), + [anon_sym_LPAREN2] = ACTIONS(3264), + [anon_sym_BANG] = ACTIONS(3264), + [anon_sym_TILDE] = ACTIONS(3264), + [anon_sym_DASH] = ACTIONS(3262), + [anon_sym_PLUS] = ACTIONS(3262), + [anon_sym_STAR] = ACTIONS(3264), + [anon_sym_AMP_AMP] = ACTIONS(3264), + [anon_sym_AMP] = ACTIONS(3262), + [anon_sym_typedef] = ACTIONS(3262), + [anon_sym_extern] = ACTIONS(3262), + [anon_sym___attribute__] = ACTIONS(3262), + [anon_sym_COLON_COLON] = ACTIONS(3264), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3264), + [anon_sym___declspec] = ACTIONS(3262), + [anon_sym___based] = ACTIONS(3262), + [anon_sym___cdecl] = ACTIONS(3262), + [anon_sym___clrcall] = ACTIONS(3262), + [anon_sym___stdcall] = ACTIONS(3262), + [anon_sym___fastcall] = ACTIONS(3262), + [anon_sym___thiscall] = ACTIONS(3262), + [anon_sym___vectorcall] = ACTIONS(3262), + [anon_sym_LBRACE] = ACTIONS(3264), + [anon_sym_LBRACK] = ACTIONS(3262), + [anon_sym_static] = ACTIONS(3262), + [anon_sym_register] = ACTIONS(3262), + [anon_sym_inline] = ACTIONS(3262), + [anon_sym_thread_local] = ACTIONS(3262), + [anon_sym_const] = ACTIONS(3262), + [anon_sym_constexpr] = ACTIONS(3262), + [anon_sym_volatile] = ACTIONS(3262), + [anon_sym_restrict] = ACTIONS(3262), + [anon_sym___restrict__] = ACTIONS(3262), + [anon_sym__Atomic] = ACTIONS(3262), + [anon_sym__Noreturn] = ACTIONS(3262), + [anon_sym_noreturn] = ACTIONS(3262), + [anon_sym_mutable] = ACTIONS(3262), + [anon_sym_constinit] = ACTIONS(3262), + [anon_sym_consteval] = ACTIONS(3262), + [anon_sym_signed] = ACTIONS(3262), + [anon_sym_unsigned] = ACTIONS(3262), + [anon_sym_long] = ACTIONS(3262), + [anon_sym_short] = ACTIONS(3262), + [sym_primitive_type] = ACTIONS(3262), + [anon_sym_enum] = ACTIONS(3262), + [anon_sym_class] = ACTIONS(3262), + [anon_sym_struct] = ACTIONS(3262), + [anon_sym_union] = ACTIONS(3262), + [anon_sym_if] = ACTIONS(3262), + [anon_sym_switch] = ACTIONS(3262), + [anon_sym_case] = ACTIONS(3262), + [anon_sym_default] = ACTIONS(3262), + [anon_sym_while] = ACTIONS(3262), + [anon_sym_do] = ACTIONS(3262), + [anon_sym_for] = ACTIONS(3262), + [anon_sym_return] = ACTIONS(3262), + [anon_sym_break] = ACTIONS(3262), + [anon_sym_continue] = ACTIONS(3262), + [anon_sym_goto] = ACTIONS(3262), + [anon_sym_not] = ACTIONS(3262), + [anon_sym_compl] = ACTIONS(3262), + [anon_sym_DASH_DASH] = ACTIONS(3264), + [anon_sym_PLUS_PLUS] = ACTIONS(3264), + [anon_sym_sizeof] = ACTIONS(3262), + [anon_sym_offsetof] = ACTIONS(3262), + [anon_sym__Generic] = ACTIONS(3262), + [anon_sym_asm] = ACTIONS(3262), + [anon_sym___asm__] = ACTIONS(3262), + [sym_number_literal] = ACTIONS(3264), + [anon_sym_L_SQUOTE] = ACTIONS(3264), + [anon_sym_u_SQUOTE] = ACTIONS(3264), + [anon_sym_U_SQUOTE] = ACTIONS(3264), + [anon_sym_u8_SQUOTE] = ACTIONS(3264), + [anon_sym_SQUOTE] = ACTIONS(3264), + [anon_sym_L_DQUOTE] = ACTIONS(3264), + [anon_sym_u_DQUOTE] = ACTIONS(3264), + [anon_sym_U_DQUOTE] = ACTIONS(3264), + [anon_sym_u8_DQUOTE] = ACTIONS(3264), + [anon_sym_DQUOTE] = ACTIONS(3264), + [sym_true] = ACTIONS(3262), + [sym_false] = ACTIONS(3262), + [anon_sym_NULL] = ACTIONS(3262), + [anon_sym_nullptr] = ACTIONS(3262), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3262), + [anon_sym_decltype] = ACTIONS(3262), + [anon_sym_virtual] = ACTIONS(3262), + [anon_sym_explicit] = ACTIONS(3262), + [anon_sym_typename] = ACTIONS(3262), + [anon_sym_template] = ACTIONS(3262), + [anon_sym_operator] = ACTIONS(3262), + [anon_sym_try] = ACTIONS(3262), + [anon_sym_delete] = ACTIONS(3262), + [anon_sym_throw] = ACTIONS(3262), + [anon_sym_namespace] = ACTIONS(3262), + [anon_sym_using] = ACTIONS(3262), + [anon_sym_static_assert] = ACTIONS(3262), + [anon_sym_concept] = ACTIONS(3262), + [anon_sym_co_return] = ACTIONS(3262), + [anon_sym_co_yield] = ACTIONS(3262), + [anon_sym_R_DQUOTE] = ACTIONS(3264), + [anon_sym_LR_DQUOTE] = ACTIONS(3264), + [anon_sym_uR_DQUOTE] = ACTIONS(3264), + [anon_sym_UR_DQUOTE] = ACTIONS(3264), + [anon_sym_u8R_DQUOTE] = ACTIONS(3264), + [anon_sym_co_await] = ACTIONS(3262), + [anon_sym_new] = ACTIONS(3262), + [anon_sym_requires] = ACTIONS(3262), + [sym_this] = ACTIONS(3262), }, [1349] = { - [sym__expression] = STATE(3464), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2984), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2984), - [sym_call_expression] = STATE(2984), - [sym_field_expression] = STATE(2984), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2984), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_lambda_default_capture] = STATE(5941), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2984), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(3047), - [anon_sym_LPAREN2] = ACTIONS(3049), - [anon_sym_BANG] = ACTIONS(3053), - [anon_sym_TILDE] = ACTIONS(3053), - [anon_sym_DASH] = ACTIONS(3051), - [anon_sym_PLUS] = ACTIONS(3051), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(3422), - [anon_sym_COLON_COLON] = ACTIONS(3055), - [anon_sym_LBRACK] = ACTIONS(1539), - [anon_sym_RBRACK] = ACTIONS(3450), - [anon_sym_EQ] = ACTIONS(3426), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(3051), - [anon_sym_compl] = ACTIONS(3051), - [anon_sym_DASH_DASH] = ACTIONS(3057), - [anon_sym_PLUS_PLUS] = ACTIONS(3057), - [anon_sym_sizeof] = ACTIONS(3059), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(3061), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(3063), - [anon_sym_new] = ACTIONS(3065), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [ts_builtin_sym_end] = ACTIONS(3244), + [sym_identifier] = ACTIONS(3242), + [aux_sym_preproc_include_token1] = ACTIONS(3242), + [aux_sym_preproc_def_token1] = ACTIONS(3242), + [aux_sym_preproc_if_token1] = ACTIONS(3242), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3242), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3242), + [sym_preproc_directive] = ACTIONS(3242), + [anon_sym_LPAREN2] = ACTIONS(3244), + [anon_sym_BANG] = ACTIONS(3244), + [anon_sym_TILDE] = ACTIONS(3244), + [anon_sym_DASH] = ACTIONS(3242), + [anon_sym_PLUS] = ACTIONS(3242), + [anon_sym_STAR] = ACTIONS(3244), + [anon_sym_AMP_AMP] = ACTIONS(3244), + [anon_sym_AMP] = ACTIONS(3242), + [anon_sym_typedef] = ACTIONS(3242), + [anon_sym_extern] = ACTIONS(3242), + [anon_sym___attribute__] = ACTIONS(3242), + [anon_sym_COLON_COLON] = ACTIONS(3244), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3244), + [anon_sym___declspec] = ACTIONS(3242), + [anon_sym___based] = ACTIONS(3242), + [anon_sym___cdecl] = ACTIONS(3242), + [anon_sym___clrcall] = ACTIONS(3242), + [anon_sym___stdcall] = ACTIONS(3242), + [anon_sym___fastcall] = ACTIONS(3242), + [anon_sym___thiscall] = ACTIONS(3242), + [anon_sym___vectorcall] = ACTIONS(3242), + [anon_sym_LBRACE] = ACTIONS(3244), + [anon_sym_LBRACK] = ACTIONS(3242), + [anon_sym_static] = ACTIONS(3242), + [anon_sym_register] = ACTIONS(3242), + [anon_sym_inline] = ACTIONS(3242), + [anon_sym_thread_local] = ACTIONS(3242), + [anon_sym_const] = ACTIONS(3242), + [anon_sym_constexpr] = ACTIONS(3242), + [anon_sym_volatile] = ACTIONS(3242), + [anon_sym_restrict] = ACTIONS(3242), + [anon_sym___restrict__] = ACTIONS(3242), + [anon_sym__Atomic] = ACTIONS(3242), + [anon_sym__Noreturn] = ACTIONS(3242), + [anon_sym_noreturn] = ACTIONS(3242), + [anon_sym_mutable] = ACTIONS(3242), + [anon_sym_constinit] = ACTIONS(3242), + [anon_sym_consteval] = ACTIONS(3242), + [anon_sym_signed] = ACTIONS(3242), + [anon_sym_unsigned] = ACTIONS(3242), + [anon_sym_long] = ACTIONS(3242), + [anon_sym_short] = ACTIONS(3242), + [sym_primitive_type] = ACTIONS(3242), + [anon_sym_enum] = ACTIONS(3242), + [anon_sym_class] = ACTIONS(3242), + [anon_sym_struct] = ACTIONS(3242), + [anon_sym_union] = ACTIONS(3242), + [anon_sym_if] = ACTIONS(3242), + [anon_sym_switch] = ACTIONS(3242), + [anon_sym_case] = ACTIONS(3242), + [anon_sym_default] = ACTIONS(3242), + [anon_sym_while] = ACTIONS(3242), + [anon_sym_do] = ACTIONS(3242), + [anon_sym_for] = ACTIONS(3242), + [anon_sym_return] = ACTIONS(3242), + [anon_sym_break] = ACTIONS(3242), + [anon_sym_continue] = ACTIONS(3242), + [anon_sym_goto] = ACTIONS(3242), + [anon_sym_not] = ACTIONS(3242), + [anon_sym_compl] = ACTIONS(3242), + [anon_sym_DASH_DASH] = ACTIONS(3244), + [anon_sym_PLUS_PLUS] = ACTIONS(3244), + [anon_sym_sizeof] = ACTIONS(3242), + [anon_sym_offsetof] = ACTIONS(3242), + [anon_sym__Generic] = ACTIONS(3242), + [anon_sym_asm] = ACTIONS(3242), + [anon_sym___asm__] = ACTIONS(3242), + [sym_number_literal] = ACTIONS(3244), + [anon_sym_L_SQUOTE] = ACTIONS(3244), + [anon_sym_u_SQUOTE] = ACTIONS(3244), + [anon_sym_U_SQUOTE] = ACTIONS(3244), + [anon_sym_u8_SQUOTE] = ACTIONS(3244), + [anon_sym_SQUOTE] = ACTIONS(3244), + [anon_sym_L_DQUOTE] = ACTIONS(3244), + [anon_sym_u_DQUOTE] = ACTIONS(3244), + [anon_sym_U_DQUOTE] = ACTIONS(3244), + [anon_sym_u8_DQUOTE] = ACTIONS(3244), + [anon_sym_DQUOTE] = ACTIONS(3244), + [sym_true] = ACTIONS(3242), + [sym_false] = ACTIONS(3242), + [anon_sym_NULL] = ACTIONS(3242), + [anon_sym_nullptr] = ACTIONS(3242), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3242), + [anon_sym_decltype] = ACTIONS(3242), + [anon_sym_virtual] = ACTIONS(3242), + [anon_sym_explicit] = ACTIONS(3242), + [anon_sym_typename] = ACTIONS(3242), + [anon_sym_template] = ACTIONS(3242), + [anon_sym_operator] = ACTIONS(3242), + [anon_sym_try] = ACTIONS(3242), + [anon_sym_delete] = ACTIONS(3242), + [anon_sym_throw] = ACTIONS(3242), + [anon_sym_namespace] = ACTIONS(3242), + [anon_sym_using] = ACTIONS(3242), + [anon_sym_static_assert] = ACTIONS(3242), + [anon_sym_concept] = ACTIONS(3242), + [anon_sym_co_return] = ACTIONS(3242), + [anon_sym_co_yield] = ACTIONS(3242), + [anon_sym_R_DQUOTE] = ACTIONS(3244), + [anon_sym_LR_DQUOTE] = ACTIONS(3244), + [anon_sym_uR_DQUOTE] = ACTIONS(3244), + [anon_sym_UR_DQUOTE] = ACTIONS(3244), + [anon_sym_u8R_DQUOTE] = ACTIONS(3244), + [anon_sym_co_await] = ACTIONS(3242), + [anon_sym_new] = ACTIONS(3242), + [anon_sym_requires] = ACTIONS(3242), + [sym_this] = ACTIONS(3242), }, [1350] = { - [sym__expression] = STATE(3464), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2984), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2984), - [sym_call_expression] = STATE(2984), - [sym_field_expression] = STATE(2984), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2984), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_lambda_default_capture] = STATE(5941), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2984), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(3047), - [anon_sym_LPAREN2] = ACTIONS(3049), - [anon_sym_BANG] = ACTIONS(3053), - [anon_sym_TILDE] = ACTIONS(3053), - [anon_sym_DASH] = ACTIONS(3051), - [anon_sym_PLUS] = ACTIONS(3051), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(3422), - [anon_sym_COLON_COLON] = ACTIONS(3055), - [anon_sym_LBRACK] = ACTIONS(1539), - [anon_sym_RBRACK] = ACTIONS(3452), - [anon_sym_EQ] = ACTIONS(3426), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(3051), - [anon_sym_compl] = ACTIONS(3051), - [anon_sym_DASH_DASH] = ACTIONS(3057), - [anon_sym_PLUS_PLUS] = ACTIONS(3057), - [anon_sym_sizeof] = ACTIONS(3059), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(3061), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(3063), - [anon_sym_new] = ACTIONS(3065), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [ts_builtin_sym_end] = ACTIONS(3182), + [sym_identifier] = ACTIONS(3180), + [aux_sym_preproc_include_token1] = ACTIONS(3180), + [aux_sym_preproc_def_token1] = ACTIONS(3180), + [aux_sym_preproc_if_token1] = ACTIONS(3180), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3180), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3180), + [sym_preproc_directive] = ACTIONS(3180), + [anon_sym_LPAREN2] = ACTIONS(3182), + [anon_sym_BANG] = ACTIONS(3182), + [anon_sym_TILDE] = ACTIONS(3182), + [anon_sym_DASH] = ACTIONS(3180), + [anon_sym_PLUS] = ACTIONS(3180), + [anon_sym_STAR] = ACTIONS(3182), + [anon_sym_AMP_AMP] = ACTIONS(3182), + [anon_sym_AMP] = ACTIONS(3180), + [anon_sym_typedef] = ACTIONS(3180), + [anon_sym_extern] = ACTIONS(3180), + [anon_sym___attribute__] = ACTIONS(3180), + [anon_sym_COLON_COLON] = ACTIONS(3182), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3182), + [anon_sym___declspec] = ACTIONS(3180), + [anon_sym___based] = ACTIONS(3180), + [anon_sym___cdecl] = ACTIONS(3180), + [anon_sym___clrcall] = ACTIONS(3180), + [anon_sym___stdcall] = ACTIONS(3180), + [anon_sym___fastcall] = ACTIONS(3180), + [anon_sym___thiscall] = ACTIONS(3180), + [anon_sym___vectorcall] = ACTIONS(3180), + [anon_sym_LBRACE] = ACTIONS(3182), + [anon_sym_LBRACK] = ACTIONS(3180), + [anon_sym_static] = ACTIONS(3180), + [anon_sym_register] = ACTIONS(3180), + [anon_sym_inline] = ACTIONS(3180), + [anon_sym_thread_local] = ACTIONS(3180), + [anon_sym_const] = ACTIONS(3180), + [anon_sym_constexpr] = ACTIONS(3180), + [anon_sym_volatile] = ACTIONS(3180), + [anon_sym_restrict] = ACTIONS(3180), + [anon_sym___restrict__] = ACTIONS(3180), + [anon_sym__Atomic] = ACTIONS(3180), + [anon_sym__Noreturn] = ACTIONS(3180), + [anon_sym_noreturn] = ACTIONS(3180), + [anon_sym_mutable] = ACTIONS(3180), + [anon_sym_constinit] = ACTIONS(3180), + [anon_sym_consteval] = ACTIONS(3180), + [anon_sym_signed] = ACTIONS(3180), + [anon_sym_unsigned] = ACTIONS(3180), + [anon_sym_long] = ACTIONS(3180), + [anon_sym_short] = ACTIONS(3180), + [sym_primitive_type] = ACTIONS(3180), + [anon_sym_enum] = ACTIONS(3180), + [anon_sym_class] = ACTIONS(3180), + [anon_sym_struct] = ACTIONS(3180), + [anon_sym_union] = ACTIONS(3180), + [anon_sym_if] = ACTIONS(3180), + [anon_sym_switch] = ACTIONS(3180), + [anon_sym_case] = ACTIONS(3180), + [anon_sym_default] = ACTIONS(3180), + [anon_sym_while] = ACTIONS(3180), + [anon_sym_do] = ACTIONS(3180), + [anon_sym_for] = ACTIONS(3180), + [anon_sym_return] = ACTIONS(3180), + [anon_sym_break] = ACTIONS(3180), + [anon_sym_continue] = ACTIONS(3180), + [anon_sym_goto] = ACTIONS(3180), + [anon_sym_not] = ACTIONS(3180), + [anon_sym_compl] = ACTIONS(3180), + [anon_sym_DASH_DASH] = ACTIONS(3182), + [anon_sym_PLUS_PLUS] = ACTIONS(3182), + [anon_sym_sizeof] = ACTIONS(3180), + [anon_sym_offsetof] = ACTIONS(3180), + [anon_sym__Generic] = ACTIONS(3180), + [anon_sym_asm] = ACTIONS(3180), + [anon_sym___asm__] = ACTIONS(3180), + [sym_number_literal] = ACTIONS(3182), + [anon_sym_L_SQUOTE] = ACTIONS(3182), + [anon_sym_u_SQUOTE] = ACTIONS(3182), + [anon_sym_U_SQUOTE] = ACTIONS(3182), + [anon_sym_u8_SQUOTE] = ACTIONS(3182), + [anon_sym_SQUOTE] = ACTIONS(3182), + [anon_sym_L_DQUOTE] = ACTIONS(3182), + [anon_sym_u_DQUOTE] = ACTIONS(3182), + [anon_sym_U_DQUOTE] = ACTIONS(3182), + [anon_sym_u8_DQUOTE] = ACTIONS(3182), + [anon_sym_DQUOTE] = ACTIONS(3182), + [sym_true] = ACTIONS(3180), + [sym_false] = ACTIONS(3180), + [anon_sym_NULL] = ACTIONS(3180), + [anon_sym_nullptr] = ACTIONS(3180), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3180), + [anon_sym_decltype] = ACTIONS(3180), + [anon_sym_virtual] = ACTIONS(3180), + [anon_sym_explicit] = ACTIONS(3180), + [anon_sym_typename] = ACTIONS(3180), + [anon_sym_template] = ACTIONS(3180), + [anon_sym_operator] = ACTIONS(3180), + [anon_sym_try] = ACTIONS(3180), + [anon_sym_delete] = ACTIONS(3180), + [anon_sym_throw] = ACTIONS(3180), + [anon_sym_namespace] = ACTIONS(3180), + [anon_sym_using] = ACTIONS(3180), + [anon_sym_static_assert] = ACTIONS(3180), + [anon_sym_concept] = ACTIONS(3180), + [anon_sym_co_return] = ACTIONS(3180), + [anon_sym_co_yield] = ACTIONS(3180), + [anon_sym_R_DQUOTE] = ACTIONS(3182), + [anon_sym_LR_DQUOTE] = ACTIONS(3182), + [anon_sym_uR_DQUOTE] = ACTIONS(3182), + [anon_sym_UR_DQUOTE] = ACTIONS(3182), + [anon_sym_u8R_DQUOTE] = ACTIONS(3182), + [anon_sym_co_await] = ACTIONS(3180), + [anon_sym_new] = ACTIONS(3180), + [anon_sym_requires] = ACTIONS(3180), + [sym_this] = ACTIONS(3180), }, [1351] = { - [sym__expression] = STATE(3485), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2984), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2984), - [sym_call_expression] = STATE(2984), - [sym_field_expression] = STATE(2984), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2984), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_lambda_default_capture] = STATE(5941), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2984), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(3047), - [anon_sym_LPAREN2] = ACTIONS(3049), - [anon_sym_BANG] = ACTIONS(3053), - [anon_sym_TILDE] = ACTIONS(3053), - [anon_sym_DASH] = ACTIONS(3051), - [anon_sym_PLUS] = ACTIONS(3051), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(3422), - [anon_sym_COLON_COLON] = ACTIONS(3055), - [anon_sym_LBRACK] = ACTIONS(1539), - [anon_sym_RBRACK] = ACTIONS(3452), - [anon_sym_EQ] = ACTIONS(3426), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(3051), - [anon_sym_compl] = ACTIONS(3051), - [anon_sym_DASH_DASH] = ACTIONS(3057), - [anon_sym_PLUS_PLUS] = ACTIONS(3057), - [anon_sym_sizeof] = ACTIONS(3059), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(3061), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(3063), - [anon_sym_new] = ACTIONS(3065), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [ts_builtin_sym_end] = ACTIONS(3174), + [sym_identifier] = ACTIONS(3172), + [aux_sym_preproc_include_token1] = ACTIONS(3172), + [aux_sym_preproc_def_token1] = ACTIONS(3172), + [aux_sym_preproc_if_token1] = ACTIONS(3172), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3172), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3172), + [sym_preproc_directive] = ACTIONS(3172), + [anon_sym_LPAREN2] = ACTIONS(3174), + [anon_sym_BANG] = ACTIONS(3174), + [anon_sym_TILDE] = ACTIONS(3174), + [anon_sym_DASH] = ACTIONS(3172), + [anon_sym_PLUS] = ACTIONS(3172), + [anon_sym_STAR] = ACTIONS(3174), + [anon_sym_AMP_AMP] = ACTIONS(3174), + [anon_sym_AMP] = ACTIONS(3172), + [anon_sym_typedef] = ACTIONS(3172), + [anon_sym_extern] = ACTIONS(3172), + [anon_sym___attribute__] = ACTIONS(3172), + [anon_sym_COLON_COLON] = ACTIONS(3174), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3174), + [anon_sym___declspec] = ACTIONS(3172), + [anon_sym___based] = ACTIONS(3172), + [anon_sym___cdecl] = ACTIONS(3172), + [anon_sym___clrcall] = ACTIONS(3172), + [anon_sym___stdcall] = ACTIONS(3172), + [anon_sym___fastcall] = ACTIONS(3172), + [anon_sym___thiscall] = ACTIONS(3172), + [anon_sym___vectorcall] = ACTIONS(3172), + [anon_sym_LBRACE] = ACTIONS(3174), + [anon_sym_LBRACK] = ACTIONS(3172), + [anon_sym_static] = ACTIONS(3172), + [anon_sym_register] = ACTIONS(3172), + [anon_sym_inline] = ACTIONS(3172), + [anon_sym_thread_local] = ACTIONS(3172), + [anon_sym_const] = ACTIONS(3172), + [anon_sym_constexpr] = ACTIONS(3172), + [anon_sym_volatile] = ACTIONS(3172), + [anon_sym_restrict] = ACTIONS(3172), + [anon_sym___restrict__] = ACTIONS(3172), + [anon_sym__Atomic] = ACTIONS(3172), + [anon_sym__Noreturn] = ACTIONS(3172), + [anon_sym_noreturn] = ACTIONS(3172), + [anon_sym_mutable] = ACTIONS(3172), + [anon_sym_constinit] = ACTIONS(3172), + [anon_sym_consteval] = ACTIONS(3172), + [anon_sym_signed] = ACTIONS(3172), + [anon_sym_unsigned] = ACTIONS(3172), + [anon_sym_long] = ACTIONS(3172), + [anon_sym_short] = ACTIONS(3172), + [sym_primitive_type] = ACTIONS(3172), + [anon_sym_enum] = ACTIONS(3172), + [anon_sym_class] = ACTIONS(3172), + [anon_sym_struct] = ACTIONS(3172), + [anon_sym_union] = ACTIONS(3172), + [anon_sym_if] = ACTIONS(3172), + [anon_sym_switch] = ACTIONS(3172), + [anon_sym_case] = ACTIONS(3172), + [anon_sym_default] = ACTIONS(3172), + [anon_sym_while] = ACTIONS(3172), + [anon_sym_do] = ACTIONS(3172), + [anon_sym_for] = ACTIONS(3172), + [anon_sym_return] = ACTIONS(3172), + [anon_sym_break] = ACTIONS(3172), + [anon_sym_continue] = ACTIONS(3172), + [anon_sym_goto] = ACTIONS(3172), + [anon_sym_not] = ACTIONS(3172), + [anon_sym_compl] = ACTIONS(3172), + [anon_sym_DASH_DASH] = ACTIONS(3174), + [anon_sym_PLUS_PLUS] = ACTIONS(3174), + [anon_sym_sizeof] = ACTIONS(3172), + [anon_sym_offsetof] = ACTIONS(3172), + [anon_sym__Generic] = ACTIONS(3172), + [anon_sym_asm] = ACTIONS(3172), + [anon_sym___asm__] = ACTIONS(3172), + [sym_number_literal] = ACTIONS(3174), + [anon_sym_L_SQUOTE] = ACTIONS(3174), + [anon_sym_u_SQUOTE] = ACTIONS(3174), + [anon_sym_U_SQUOTE] = ACTIONS(3174), + [anon_sym_u8_SQUOTE] = ACTIONS(3174), + [anon_sym_SQUOTE] = ACTIONS(3174), + [anon_sym_L_DQUOTE] = ACTIONS(3174), + [anon_sym_u_DQUOTE] = ACTIONS(3174), + [anon_sym_U_DQUOTE] = ACTIONS(3174), + [anon_sym_u8_DQUOTE] = ACTIONS(3174), + [anon_sym_DQUOTE] = ACTIONS(3174), + [sym_true] = ACTIONS(3172), + [sym_false] = ACTIONS(3172), + [anon_sym_NULL] = ACTIONS(3172), + [anon_sym_nullptr] = ACTIONS(3172), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3172), + [anon_sym_decltype] = ACTIONS(3172), + [anon_sym_virtual] = ACTIONS(3172), + [anon_sym_explicit] = ACTIONS(3172), + [anon_sym_typename] = ACTIONS(3172), + [anon_sym_template] = ACTIONS(3172), + [anon_sym_operator] = ACTIONS(3172), + [anon_sym_try] = ACTIONS(3172), + [anon_sym_delete] = ACTIONS(3172), + [anon_sym_throw] = ACTIONS(3172), + [anon_sym_namespace] = ACTIONS(3172), + [anon_sym_using] = ACTIONS(3172), + [anon_sym_static_assert] = ACTIONS(3172), + [anon_sym_concept] = ACTIONS(3172), + [anon_sym_co_return] = ACTIONS(3172), + [anon_sym_co_yield] = ACTIONS(3172), + [anon_sym_R_DQUOTE] = ACTIONS(3174), + [anon_sym_LR_DQUOTE] = ACTIONS(3174), + [anon_sym_uR_DQUOTE] = ACTIONS(3174), + [anon_sym_UR_DQUOTE] = ACTIONS(3174), + [anon_sym_u8R_DQUOTE] = ACTIONS(3174), + [anon_sym_co_await] = ACTIONS(3172), + [anon_sym_new] = ACTIONS(3172), + [anon_sym_requires] = ACTIONS(3172), + [sym_this] = ACTIONS(3172), }, [1352] = { - [sym__expression] = STATE(3464), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2984), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2984), - [sym_call_expression] = STATE(2984), - [sym_field_expression] = STATE(2984), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2984), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_lambda_default_capture] = STATE(5941), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2984), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(3047), - [anon_sym_LPAREN2] = ACTIONS(3049), - [anon_sym_BANG] = ACTIONS(3053), - [anon_sym_TILDE] = ACTIONS(3053), - [anon_sym_DASH] = ACTIONS(3051), - [anon_sym_PLUS] = ACTIONS(3051), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(3422), - [anon_sym_COLON_COLON] = ACTIONS(3055), - [anon_sym_LBRACK] = ACTIONS(1539), - [anon_sym_RBRACK] = ACTIONS(3454), - [anon_sym_EQ] = ACTIONS(3426), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(3051), - [anon_sym_compl] = ACTIONS(3051), - [anon_sym_DASH_DASH] = ACTIONS(3057), - [anon_sym_PLUS_PLUS] = ACTIONS(3057), - [anon_sym_sizeof] = ACTIONS(3059), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(3061), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(3063), - [anon_sym_new] = ACTIONS(3065), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [ts_builtin_sym_end] = ACTIONS(3170), + [sym_identifier] = ACTIONS(3168), + [aux_sym_preproc_include_token1] = ACTIONS(3168), + [aux_sym_preproc_def_token1] = ACTIONS(3168), + [aux_sym_preproc_if_token1] = ACTIONS(3168), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3168), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3168), + [sym_preproc_directive] = ACTIONS(3168), + [anon_sym_LPAREN2] = ACTIONS(3170), + [anon_sym_BANG] = ACTIONS(3170), + [anon_sym_TILDE] = ACTIONS(3170), + [anon_sym_DASH] = ACTIONS(3168), + [anon_sym_PLUS] = ACTIONS(3168), + [anon_sym_STAR] = ACTIONS(3170), + [anon_sym_AMP_AMP] = ACTIONS(3170), + [anon_sym_AMP] = ACTIONS(3168), + [anon_sym_typedef] = ACTIONS(3168), + [anon_sym_extern] = ACTIONS(3168), + [anon_sym___attribute__] = ACTIONS(3168), + [anon_sym_COLON_COLON] = ACTIONS(3170), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3170), + [anon_sym___declspec] = ACTIONS(3168), + [anon_sym___based] = ACTIONS(3168), + [anon_sym___cdecl] = ACTIONS(3168), + [anon_sym___clrcall] = ACTIONS(3168), + [anon_sym___stdcall] = ACTIONS(3168), + [anon_sym___fastcall] = ACTIONS(3168), + [anon_sym___thiscall] = ACTIONS(3168), + [anon_sym___vectorcall] = ACTIONS(3168), + [anon_sym_LBRACE] = ACTIONS(3170), + [anon_sym_LBRACK] = ACTIONS(3168), + [anon_sym_static] = ACTIONS(3168), + [anon_sym_register] = ACTIONS(3168), + [anon_sym_inline] = ACTIONS(3168), + [anon_sym_thread_local] = ACTIONS(3168), + [anon_sym_const] = ACTIONS(3168), + [anon_sym_constexpr] = ACTIONS(3168), + [anon_sym_volatile] = ACTIONS(3168), + [anon_sym_restrict] = ACTIONS(3168), + [anon_sym___restrict__] = ACTIONS(3168), + [anon_sym__Atomic] = ACTIONS(3168), + [anon_sym__Noreturn] = ACTIONS(3168), + [anon_sym_noreturn] = ACTIONS(3168), + [anon_sym_mutable] = ACTIONS(3168), + [anon_sym_constinit] = ACTIONS(3168), + [anon_sym_consteval] = ACTIONS(3168), + [anon_sym_signed] = ACTIONS(3168), + [anon_sym_unsigned] = ACTIONS(3168), + [anon_sym_long] = ACTIONS(3168), + [anon_sym_short] = ACTIONS(3168), + [sym_primitive_type] = ACTIONS(3168), + [anon_sym_enum] = ACTIONS(3168), + [anon_sym_class] = ACTIONS(3168), + [anon_sym_struct] = ACTIONS(3168), + [anon_sym_union] = ACTIONS(3168), + [anon_sym_if] = ACTIONS(3168), + [anon_sym_switch] = ACTIONS(3168), + [anon_sym_case] = ACTIONS(3168), + [anon_sym_default] = ACTIONS(3168), + [anon_sym_while] = ACTIONS(3168), + [anon_sym_do] = ACTIONS(3168), + [anon_sym_for] = ACTIONS(3168), + [anon_sym_return] = ACTIONS(3168), + [anon_sym_break] = ACTIONS(3168), + [anon_sym_continue] = ACTIONS(3168), + [anon_sym_goto] = ACTIONS(3168), + [anon_sym_not] = ACTIONS(3168), + [anon_sym_compl] = ACTIONS(3168), + [anon_sym_DASH_DASH] = ACTIONS(3170), + [anon_sym_PLUS_PLUS] = ACTIONS(3170), + [anon_sym_sizeof] = ACTIONS(3168), + [anon_sym_offsetof] = ACTIONS(3168), + [anon_sym__Generic] = ACTIONS(3168), + [anon_sym_asm] = ACTIONS(3168), + [anon_sym___asm__] = ACTIONS(3168), + [sym_number_literal] = ACTIONS(3170), + [anon_sym_L_SQUOTE] = ACTIONS(3170), + [anon_sym_u_SQUOTE] = ACTIONS(3170), + [anon_sym_U_SQUOTE] = ACTIONS(3170), + [anon_sym_u8_SQUOTE] = ACTIONS(3170), + [anon_sym_SQUOTE] = ACTIONS(3170), + [anon_sym_L_DQUOTE] = ACTIONS(3170), + [anon_sym_u_DQUOTE] = ACTIONS(3170), + [anon_sym_U_DQUOTE] = ACTIONS(3170), + [anon_sym_u8_DQUOTE] = ACTIONS(3170), + [anon_sym_DQUOTE] = ACTIONS(3170), + [sym_true] = ACTIONS(3168), + [sym_false] = ACTIONS(3168), + [anon_sym_NULL] = ACTIONS(3168), + [anon_sym_nullptr] = ACTIONS(3168), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3168), + [anon_sym_decltype] = ACTIONS(3168), + [anon_sym_virtual] = ACTIONS(3168), + [anon_sym_explicit] = ACTIONS(3168), + [anon_sym_typename] = ACTIONS(3168), + [anon_sym_template] = ACTIONS(3168), + [anon_sym_operator] = ACTIONS(3168), + [anon_sym_try] = ACTIONS(3168), + [anon_sym_delete] = ACTIONS(3168), + [anon_sym_throw] = ACTIONS(3168), + [anon_sym_namespace] = ACTIONS(3168), + [anon_sym_using] = ACTIONS(3168), + [anon_sym_static_assert] = ACTIONS(3168), + [anon_sym_concept] = ACTIONS(3168), + [anon_sym_co_return] = ACTIONS(3168), + [anon_sym_co_yield] = ACTIONS(3168), + [anon_sym_R_DQUOTE] = ACTIONS(3170), + [anon_sym_LR_DQUOTE] = ACTIONS(3170), + [anon_sym_uR_DQUOTE] = ACTIONS(3170), + [anon_sym_UR_DQUOTE] = ACTIONS(3170), + [anon_sym_u8R_DQUOTE] = ACTIONS(3170), + [anon_sym_co_await] = ACTIONS(3168), + [anon_sym_new] = ACTIONS(3168), + [anon_sym_requires] = ACTIONS(3168), + [sym_this] = ACTIONS(3168), }, [1353] = { - [sym__expression] = STATE(3571), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2984), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2984), - [sym_call_expression] = STATE(2984), - [sym_field_expression] = STATE(2984), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2984), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2984), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(3047), - [anon_sym_LPAREN2] = ACTIONS(3416), - [anon_sym_BANG] = ACTIONS(3053), - [anon_sym_TILDE] = ACTIONS(3053), - [anon_sym_DASH] = ACTIONS(3051), - [anon_sym_PLUS] = ACTIONS(3051), - [anon_sym_STAR] = ACTIONS(3416), - [anon_sym_AMP_AMP] = ACTIONS(3416), - [anon_sym_AMP] = ACTIONS(3418), - [anon_sym_LT] = ACTIONS(3416), - [anon_sym_COLON_COLON] = ACTIONS(3055), - [anon_sym_LBRACE] = ACTIONS(3416), - [anon_sym_LBRACK] = ACTIONS(3416), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(3051), - [anon_sym_compl] = ACTIONS(3051), - [anon_sym_DASH_DASH] = ACTIONS(3057), - [anon_sym_PLUS_PLUS] = ACTIONS(3057), - [anon_sym_sizeof] = ACTIONS(3059), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(3061), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(3063), - [anon_sym_new] = ACTIONS(3065), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [ts_builtin_sym_end] = ACTIONS(3162), + [sym_identifier] = ACTIONS(3160), + [aux_sym_preproc_include_token1] = ACTIONS(3160), + [aux_sym_preproc_def_token1] = ACTIONS(3160), + [aux_sym_preproc_if_token1] = ACTIONS(3160), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3160), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3160), + [sym_preproc_directive] = ACTIONS(3160), + [anon_sym_LPAREN2] = ACTIONS(3162), + [anon_sym_BANG] = ACTIONS(3162), + [anon_sym_TILDE] = ACTIONS(3162), + [anon_sym_DASH] = ACTIONS(3160), + [anon_sym_PLUS] = ACTIONS(3160), + [anon_sym_STAR] = ACTIONS(3162), + [anon_sym_AMP_AMP] = ACTIONS(3162), + [anon_sym_AMP] = ACTIONS(3160), + [anon_sym_typedef] = ACTIONS(3160), + [anon_sym_extern] = ACTIONS(3160), + [anon_sym___attribute__] = ACTIONS(3160), + [anon_sym_COLON_COLON] = ACTIONS(3162), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3162), + [anon_sym___declspec] = ACTIONS(3160), + [anon_sym___based] = ACTIONS(3160), + [anon_sym___cdecl] = ACTIONS(3160), + [anon_sym___clrcall] = ACTIONS(3160), + [anon_sym___stdcall] = ACTIONS(3160), + [anon_sym___fastcall] = ACTIONS(3160), + [anon_sym___thiscall] = ACTIONS(3160), + [anon_sym___vectorcall] = ACTIONS(3160), + [anon_sym_LBRACE] = ACTIONS(3162), + [anon_sym_LBRACK] = ACTIONS(3160), + [anon_sym_static] = ACTIONS(3160), + [anon_sym_register] = ACTIONS(3160), + [anon_sym_inline] = ACTIONS(3160), + [anon_sym_thread_local] = ACTIONS(3160), + [anon_sym_const] = ACTIONS(3160), + [anon_sym_constexpr] = ACTIONS(3160), + [anon_sym_volatile] = ACTIONS(3160), + [anon_sym_restrict] = ACTIONS(3160), + [anon_sym___restrict__] = ACTIONS(3160), + [anon_sym__Atomic] = ACTIONS(3160), + [anon_sym__Noreturn] = ACTIONS(3160), + [anon_sym_noreturn] = ACTIONS(3160), + [anon_sym_mutable] = ACTIONS(3160), + [anon_sym_constinit] = ACTIONS(3160), + [anon_sym_consteval] = ACTIONS(3160), + [anon_sym_signed] = ACTIONS(3160), + [anon_sym_unsigned] = ACTIONS(3160), + [anon_sym_long] = ACTIONS(3160), + [anon_sym_short] = ACTIONS(3160), + [sym_primitive_type] = ACTIONS(3160), + [anon_sym_enum] = ACTIONS(3160), + [anon_sym_class] = ACTIONS(3160), + [anon_sym_struct] = ACTIONS(3160), + [anon_sym_union] = ACTIONS(3160), + [anon_sym_if] = ACTIONS(3160), + [anon_sym_switch] = ACTIONS(3160), + [anon_sym_case] = ACTIONS(3160), + [anon_sym_default] = ACTIONS(3160), + [anon_sym_while] = ACTIONS(3160), + [anon_sym_do] = ACTIONS(3160), + [anon_sym_for] = ACTIONS(3160), + [anon_sym_return] = ACTIONS(3160), + [anon_sym_break] = ACTIONS(3160), + [anon_sym_continue] = ACTIONS(3160), + [anon_sym_goto] = ACTIONS(3160), + [anon_sym_not] = ACTIONS(3160), + [anon_sym_compl] = ACTIONS(3160), + [anon_sym_DASH_DASH] = ACTIONS(3162), + [anon_sym_PLUS_PLUS] = ACTIONS(3162), + [anon_sym_sizeof] = ACTIONS(3160), + [anon_sym_offsetof] = ACTIONS(3160), + [anon_sym__Generic] = ACTIONS(3160), + [anon_sym_asm] = ACTIONS(3160), + [anon_sym___asm__] = ACTIONS(3160), + [sym_number_literal] = ACTIONS(3162), + [anon_sym_L_SQUOTE] = ACTIONS(3162), + [anon_sym_u_SQUOTE] = ACTIONS(3162), + [anon_sym_U_SQUOTE] = ACTIONS(3162), + [anon_sym_u8_SQUOTE] = ACTIONS(3162), + [anon_sym_SQUOTE] = ACTIONS(3162), + [anon_sym_L_DQUOTE] = ACTIONS(3162), + [anon_sym_u_DQUOTE] = ACTIONS(3162), + [anon_sym_U_DQUOTE] = ACTIONS(3162), + [anon_sym_u8_DQUOTE] = ACTIONS(3162), + [anon_sym_DQUOTE] = ACTIONS(3162), + [sym_true] = ACTIONS(3160), + [sym_false] = ACTIONS(3160), + [anon_sym_NULL] = ACTIONS(3160), + [anon_sym_nullptr] = ACTIONS(3160), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3160), + [anon_sym_decltype] = ACTIONS(3160), + [anon_sym_virtual] = ACTIONS(3160), + [anon_sym_explicit] = ACTIONS(3160), + [anon_sym_typename] = ACTIONS(3160), + [anon_sym_template] = ACTIONS(3160), + [anon_sym_operator] = ACTIONS(3160), + [anon_sym_try] = ACTIONS(3160), + [anon_sym_delete] = ACTIONS(3160), + [anon_sym_throw] = ACTIONS(3160), + [anon_sym_namespace] = ACTIONS(3160), + [anon_sym_using] = ACTIONS(3160), + [anon_sym_static_assert] = ACTIONS(3160), + [anon_sym_concept] = ACTIONS(3160), + [anon_sym_co_return] = ACTIONS(3160), + [anon_sym_co_yield] = ACTIONS(3160), + [anon_sym_R_DQUOTE] = ACTIONS(3162), + [anon_sym_LR_DQUOTE] = ACTIONS(3162), + [anon_sym_uR_DQUOTE] = ACTIONS(3162), + [anon_sym_UR_DQUOTE] = ACTIONS(3162), + [anon_sym_u8R_DQUOTE] = ACTIONS(3162), + [anon_sym_co_await] = ACTIONS(3160), + [anon_sym_new] = ACTIONS(3160), + [anon_sym_requires] = ACTIONS(3160), + [sym_this] = ACTIONS(3160), }, [1354] = { - [sym__expression] = STATE(3450), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_initializer_list] = STATE(5448), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2954), - [anon_sym_RPAREN] = ACTIONS(3456), - [anon_sym_LPAREN2] = ACTIONS(984), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1489), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [ts_builtin_sym_end] = ACTIONS(3178), + [sym_identifier] = ACTIONS(3176), + [aux_sym_preproc_include_token1] = ACTIONS(3176), + [aux_sym_preproc_def_token1] = ACTIONS(3176), + [aux_sym_preproc_if_token1] = ACTIONS(3176), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3176), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3176), + [sym_preproc_directive] = ACTIONS(3176), + [anon_sym_LPAREN2] = ACTIONS(3178), + [anon_sym_BANG] = ACTIONS(3178), + [anon_sym_TILDE] = ACTIONS(3178), + [anon_sym_DASH] = ACTIONS(3176), + [anon_sym_PLUS] = ACTIONS(3176), + [anon_sym_STAR] = ACTIONS(3178), + [anon_sym_AMP_AMP] = ACTIONS(3178), + [anon_sym_AMP] = ACTIONS(3176), + [anon_sym_typedef] = ACTIONS(3176), + [anon_sym_extern] = ACTIONS(3176), + [anon_sym___attribute__] = ACTIONS(3176), + [anon_sym_COLON_COLON] = ACTIONS(3178), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3178), + [anon_sym___declspec] = ACTIONS(3176), + [anon_sym___based] = ACTIONS(3176), + [anon_sym___cdecl] = ACTIONS(3176), + [anon_sym___clrcall] = ACTIONS(3176), + [anon_sym___stdcall] = ACTIONS(3176), + [anon_sym___fastcall] = ACTIONS(3176), + [anon_sym___thiscall] = ACTIONS(3176), + [anon_sym___vectorcall] = ACTIONS(3176), + [anon_sym_LBRACE] = ACTIONS(3178), + [anon_sym_LBRACK] = ACTIONS(3176), + [anon_sym_static] = ACTIONS(3176), + [anon_sym_register] = ACTIONS(3176), + [anon_sym_inline] = ACTIONS(3176), + [anon_sym_thread_local] = ACTIONS(3176), + [anon_sym_const] = ACTIONS(3176), + [anon_sym_constexpr] = ACTIONS(3176), + [anon_sym_volatile] = ACTIONS(3176), + [anon_sym_restrict] = ACTIONS(3176), + [anon_sym___restrict__] = ACTIONS(3176), + [anon_sym__Atomic] = ACTIONS(3176), + [anon_sym__Noreturn] = ACTIONS(3176), + [anon_sym_noreturn] = ACTIONS(3176), + [anon_sym_mutable] = ACTIONS(3176), + [anon_sym_constinit] = ACTIONS(3176), + [anon_sym_consteval] = ACTIONS(3176), + [anon_sym_signed] = ACTIONS(3176), + [anon_sym_unsigned] = ACTIONS(3176), + [anon_sym_long] = ACTIONS(3176), + [anon_sym_short] = ACTIONS(3176), + [sym_primitive_type] = ACTIONS(3176), + [anon_sym_enum] = ACTIONS(3176), + [anon_sym_class] = ACTIONS(3176), + [anon_sym_struct] = ACTIONS(3176), + [anon_sym_union] = ACTIONS(3176), + [anon_sym_if] = ACTIONS(3176), + [anon_sym_switch] = ACTIONS(3176), + [anon_sym_case] = ACTIONS(3176), + [anon_sym_default] = ACTIONS(3176), + [anon_sym_while] = ACTIONS(3176), + [anon_sym_do] = ACTIONS(3176), + [anon_sym_for] = ACTIONS(3176), + [anon_sym_return] = ACTIONS(3176), + [anon_sym_break] = ACTIONS(3176), + [anon_sym_continue] = ACTIONS(3176), + [anon_sym_goto] = ACTIONS(3176), + [anon_sym_not] = ACTIONS(3176), + [anon_sym_compl] = ACTIONS(3176), + [anon_sym_DASH_DASH] = ACTIONS(3178), + [anon_sym_PLUS_PLUS] = ACTIONS(3178), + [anon_sym_sizeof] = ACTIONS(3176), + [anon_sym_offsetof] = ACTIONS(3176), + [anon_sym__Generic] = ACTIONS(3176), + [anon_sym_asm] = ACTIONS(3176), + [anon_sym___asm__] = ACTIONS(3176), + [sym_number_literal] = ACTIONS(3178), + [anon_sym_L_SQUOTE] = ACTIONS(3178), + [anon_sym_u_SQUOTE] = ACTIONS(3178), + [anon_sym_U_SQUOTE] = ACTIONS(3178), + [anon_sym_u8_SQUOTE] = ACTIONS(3178), + [anon_sym_SQUOTE] = ACTIONS(3178), + [anon_sym_L_DQUOTE] = ACTIONS(3178), + [anon_sym_u_DQUOTE] = ACTIONS(3178), + [anon_sym_U_DQUOTE] = ACTIONS(3178), + [anon_sym_u8_DQUOTE] = ACTIONS(3178), + [anon_sym_DQUOTE] = ACTIONS(3178), + [sym_true] = ACTIONS(3176), + [sym_false] = ACTIONS(3176), + [anon_sym_NULL] = ACTIONS(3176), + [anon_sym_nullptr] = ACTIONS(3176), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3176), + [anon_sym_decltype] = ACTIONS(3176), + [anon_sym_virtual] = ACTIONS(3176), + [anon_sym_explicit] = ACTIONS(3176), + [anon_sym_typename] = ACTIONS(3176), + [anon_sym_template] = ACTIONS(3176), + [anon_sym_operator] = ACTIONS(3176), + [anon_sym_try] = ACTIONS(3176), + [anon_sym_delete] = ACTIONS(3176), + [anon_sym_throw] = ACTIONS(3176), + [anon_sym_namespace] = ACTIONS(3176), + [anon_sym_using] = ACTIONS(3176), + [anon_sym_static_assert] = ACTIONS(3176), + [anon_sym_concept] = ACTIONS(3176), + [anon_sym_co_return] = ACTIONS(3176), + [anon_sym_co_yield] = ACTIONS(3176), + [anon_sym_R_DQUOTE] = ACTIONS(3178), + [anon_sym_LR_DQUOTE] = ACTIONS(3178), + [anon_sym_uR_DQUOTE] = ACTIONS(3178), + [anon_sym_UR_DQUOTE] = ACTIONS(3178), + [anon_sym_u8R_DQUOTE] = ACTIONS(3178), + [anon_sym_co_await] = ACTIONS(3176), + [anon_sym_new] = ACTIONS(3176), + [anon_sym_requires] = ACTIONS(3176), + [sym_this] = ACTIONS(3176), }, [1355] = { - [sym__expression] = STATE(3468), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_initializer_list] = STATE(5387), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2954), - [anon_sym_RPAREN] = ACTIONS(3458), - [anon_sym_LPAREN2] = ACTIONS(984), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1489), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [ts_builtin_sym_end] = ACTIONS(3653), + [sym_identifier] = ACTIONS(3655), + [aux_sym_preproc_include_token1] = ACTIONS(3655), + [aux_sym_preproc_def_token1] = ACTIONS(3655), + [aux_sym_preproc_if_token1] = ACTIONS(3655), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3655), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3655), + [sym_preproc_directive] = ACTIONS(3655), + [anon_sym_LPAREN2] = ACTIONS(3653), + [anon_sym_BANG] = ACTIONS(3653), + [anon_sym_TILDE] = ACTIONS(3653), + [anon_sym_DASH] = ACTIONS(3655), + [anon_sym_PLUS] = ACTIONS(3655), + [anon_sym_STAR] = ACTIONS(3653), + [anon_sym_AMP_AMP] = ACTIONS(3653), + [anon_sym_AMP] = ACTIONS(3655), + [anon_sym_typedef] = ACTIONS(3655), + [anon_sym_extern] = ACTIONS(3655), + [anon_sym___attribute__] = ACTIONS(3655), + [anon_sym_COLON_COLON] = ACTIONS(3653), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3653), + [anon_sym___declspec] = ACTIONS(3655), + [anon_sym___based] = ACTIONS(3655), + [anon_sym___cdecl] = ACTIONS(3655), + [anon_sym___clrcall] = ACTIONS(3655), + [anon_sym___stdcall] = ACTIONS(3655), + [anon_sym___fastcall] = ACTIONS(3655), + [anon_sym___thiscall] = ACTIONS(3655), + [anon_sym___vectorcall] = ACTIONS(3655), + [anon_sym_LBRACE] = ACTIONS(3653), + [anon_sym_LBRACK] = ACTIONS(3655), + [anon_sym_static] = ACTIONS(3655), + [anon_sym_register] = ACTIONS(3655), + [anon_sym_inline] = ACTIONS(3655), + [anon_sym_thread_local] = ACTIONS(3655), + [anon_sym_const] = ACTIONS(3655), + [anon_sym_constexpr] = ACTIONS(3655), + [anon_sym_volatile] = ACTIONS(3655), + [anon_sym_restrict] = ACTIONS(3655), + [anon_sym___restrict__] = ACTIONS(3655), + [anon_sym__Atomic] = ACTIONS(3655), + [anon_sym__Noreturn] = ACTIONS(3655), + [anon_sym_noreturn] = ACTIONS(3655), + [anon_sym_mutable] = ACTIONS(3655), + [anon_sym_constinit] = ACTIONS(3655), + [anon_sym_consteval] = ACTIONS(3655), + [anon_sym_signed] = ACTIONS(3655), + [anon_sym_unsigned] = ACTIONS(3655), + [anon_sym_long] = ACTIONS(3655), + [anon_sym_short] = ACTIONS(3655), + [sym_primitive_type] = ACTIONS(3655), + [anon_sym_enum] = ACTIONS(3655), + [anon_sym_class] = ACTIONS(3655), + [anon_sym_struct] = ACTIONS(3655), + [anon_sym_union] = ACTIONS(3655), + [anon_sym_if] = ACTIONS(3655), + [anon_sym_switch] = ACTIONS(3655), + [anon_sym_case] = ACTIONS(3655), + [anon_sym_default] = ACTIONS(3655), + [anon_sym_while] = ACTIONS(3655), + [anon_sym_do] = ACTIONS(3655), + [anon_sym_for] = ACTIONS(3655), + [anon_sym_return] = ACTIONS(3655), + [anon_sym_break] = ACTIONS(3655), + [anon_sym_continue] = ACTIONS(3655), + [anon_sym_goto] = ACTIONS(3655), + [anon_sym_not] = ACTIONS(3655), + [anon_sym_compl] = ACTIONS(3655), + [anon_sym_DASH_DASH] = ACTIONS(3653), + [anon_sym_PLUS_PLUS] = ACTIONS(3653), + [anon_sym_sizeof] = ACTIONS(3655), + [anon_sym_offsetof] = ACTIONS(3655), + [anon_sym__Generic] = ACTIONS(3655), + [anon_sym_asm] = ACTIONS(3655), + [anon_sym___asm__] = ACTIONS(3655), + [sym_number_literal] = ACTIONS(3653), + [anon_sym_L_SQUOTE] = ACTIONS(3653), + [anon_sym_u_SQUOTE] = ACTIONS(3653), + [anon_sym_U_SQUOTE] = ACTIONS(3653), + [anon_sym_u8_SQUOTE] = ACTIONS(3653), + [anon_sym_SQUOTE] = ACTIONS(3653), + [anon_sym_L_DQUOTE] = ACTIONS(3653), + [anon_sym_u_DQUOTE] = ACTIONS(3653), + [anon_sym_U_DQUOTE] = ACTIONS(3653), + [anon_sym_u8_DQUOTE] = ACTIONS(3653), + [anon_sym_DQUOTE] = ACTIONS(3653), + [sym_true] = ACTIONS(3655), + [sym_false] = ACTIONS(3655), + [anon_sym_NULL] = ACTIONS(3655), + [anon_sym_nullptr] = ACTIONS(3655), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3655), + [anon_sym_decltype] = ACTIONS(3655), + [anon_sym_virtual] = ACTIONS(3655), + [anon_sym_explicit] = ACTIONS(3655), + [anon_sym_typename] = ACTIONS(3655), + [anon_sym_template] = ACTIONS(3655), + [anon_sym_operator] = ACTIONS(3655), + [anon_sym_try] = ACTIONS(3655), + [anon_sym_delete] = ACTIONS(3655), + [anon_sym_throw] = ACTIONS(3655), + [anon_sym_namespace] = ACTIONS(3655), + [anon_sym_using] = ACTIONS(3655), + [anon_sym_static_assert] = ACTIONS(3655), + [anon_sym_concept] = ACTIONS(3655), + [anon_sym_co_return] = ACTIONS(3655), + [anon_sym_co_yield] = ACTIONS(3655), + [anon_sym_R_DQUOTE] = ACTIONS(3653), + [anon_sym_LR_DQUOTE] = ACTIONS(3653), + [anon_sym_uR_DQUOTE] = ACTIONS(3653), + [anon_sym_UR_DQUOTE] = ACTIONS(3653), + [anon_sym_u8R_DQUOTE] = ACTIONS(3653), + [anon_sym_co_await] = ACTIONS(3655), + [anon_sym_new] = ACTIONS(3655), + [anon_sym_requires] = ACTIONS(3655), + [sym_this] = ACTIONS(3655), }, [1356] = { - [sym__expression] = STATE(3581), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2984), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2984), - [sym_call_expression] = STATE(2984), - [sym_field_expression] = STATE(2984), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2984), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2984), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(3047), - [anon_sym_LPAREN2] = ACTIONS(3416), - [anon_sym_BANG] = ACTIONS(3053), - [anon_sym_TILDE] = ACTIONS(3053), - [anon_sym_DASH] = ACTIONS(3051), - [anon_sym_PLUS] = ACTIONS(3051), - [anon_sym_STAR] = ACTIONS(3416), - [anon_sym_AMP_AMP] = ACTIONS(3416), - [anon_sym_AMP] = ACTIONS(3418), - [anon_sym_LT] = ACTIONS(3416), - [anon_sym_COLON_COLON] = ACTIONS(3055), - [anon_sym_LBRACE] = ACTIONS(3416), - [anon_sym_LBRACK] = ACTIONS(3416), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(3051), - [anon_sym_compl] = ACTIONS(3051), - [anon_sym_DASH_DASH] = ACTIONS(3057), - [anon_sym_PLUS_PLUS] = ACTIONS(3057), - [anon_sym_sizeof] = ACTIONS(3059), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(3061), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(3063), - [anon_sym_new] = ACTIONS(3065), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [ts_builtin_sym_end] = ACTIONS(3421), + [sym_identifier] = ACTIONS(3419), + [aux_sym_preproc_include_token1] = ACTIONS(3419), + [aux_sym_preproc_def_token1] = ACTIONS(3419), + [aux_sym_preproc_if_token1] = ACTIONS(3419), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3419), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3419), + [sym_preproc_directive] = ACTIONS(3419), + [anon_sym_LPAREN2] = ACTIONS(3421), + [anon_sym_BANG] = ACTIONS(3421), + [anon_sym_TILDE] = ACTIONS(3421), + [anon_sym_DASH] = ACTIONS(3419), + [anon_sym_PLUS] = ACTIONS(3419), + [anon_sym_STAR] = ACTIONS(3421), + [anon_sym_AMP_AMP] = ACTIONS(3421), + [anon_sym_AMP] = ACTIONS(3419), + [anon_sym_typedef] = ACTIONS(3419), + [anon_sym_extern] = ACTIONS(3419), + [anon_sym___attribute__] = ACTIONS(3419), + [anon_sym_COLON_COLON] = ACTIONS(3421), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3421), + [anon_sym___declspec] = ACTIONS(3419), + [anon_sym___based] = ACTIONS(3419), + [anon_sym___cdecl] = ACTIONS(3419), + [anon_sym___clrcall] = ACTIONS(3419), + [anon_sym___stdcall] = ACTIONS(3419), + [anon_sym___fastcall] = ACTIONS(3419), + [anon_sym___thiscall] = ACTIONS(3419), + [anon_sym___vectorcall] = ACTIONS(3419), + [anon_sym_LBRACE] = ACTIONS(3421), + [anon_sym_LBRACK] = ACTIONS(3419), + [anon_sym_static] = ACTIONS(3419), + [anon_sym_register] = ACTIONS(3419), + [anon_sym_inline] = ACTIONS(3419), + [anon_sym_thread_local] = ACTIONS(3419), + [anon_sym_const] = ACTIONS(3419), + [anon_sym_constexpr] = ACTIONS(3419), + [anon_sym_volatile] = ACTIONS(3419), + [anon_sym_restrict] = ACTIONS(3419), + [anon_sym___restrict__] = ACTIONS(3419), + [anon_sym__Atomic] = ACTIONS(3419), + [anon_sym__Noreturn] = ACTIONS(3419), + [anon_sym_noreturn] = ACTIONS(3419), + [anon_sym_mutable] = ACTIONS(3419), + [anon_sym_constinit] = ACTIONS(3419), + [anon_sym_consteval] = ACTIONS(3419), + [anon_sym_signed] = ACTIONS(3419), + [anon_sym_unsigned] = ACTIONS(3419), + [anon_sym_long] = ACTIONS(3419), + [anon_sym_short] = ACTIONS(3419), + [sym_primitive_type] = ACTIONS(3419), + [anon_sym_enum] = ACTIONS(3419), + [anon_sym_class] = ACTIONS(3419), + [anon_sym_struct] = ACTIONS(3419), + [anon_sym_union] = ACTIONS(3419), + [anon_sym_if] = ACTIONS(3419), + [anon_sym_switch] = ACTIONS(3419), + [anon_sym_case] = ACTIONS(3419), + [anon_sym_default] = ACTIONS(3419), + [anon_sym_while] = ACTIONS(3419), + [anon_sym_do] = ACTIONS(3419), + [anon_sym_for] = ACTIONS(3419), + [anon_sym_return] = ACTIONS(3419), + [anon_sym_break] = ACTIONS(3419), + [anon_sym_continue] = ACTIONS(3419), + [anon_sym_goto] = ACTIONS(3419), + [anon_sym_not] = ACTIONS(3419), + [anon_sym_compl] = ACTIONS(3419), + [anon_sym_DASH_DASH] = ACTIONS(3421), + [anon_sym_PLUS_PLUS] = ACTIONS(3421), + [anon_sym_sizeof] = ACTIONS(3419), + [anon_sym_offsetof] = ACTIONS(3419), + [anon_sym__Generic] = ACTIONS(3419), + [anon_sym_asm] = ACTIONS(3419), + [anon_sym___asm__] = ACTIONS(3419), + [sym_number_literal] = ACTIONS(3421), + [anon_sym_L_SQUOTE] = ACTIONS(3421), + [anon_sym_u_SQUOTE] = ACTIONS(3421), + [anon_sym_U_SQUOTE] = ACTIONS(3421), + [anon_sym_u8_SQUOTE] = ACTIONS(3421), + [anon_sym_SQUOTE] = ACTIONS(3421), + [anon_sym_L_DQUOTE] = ACTIONS(3421), + [anon_sym_u_DQUOTE] = ACTIONS(3421), + [anon_sym_U_DQUOTE] = ACTIONS(3421), + [anon_sym_u8_DQUOTE] = ACTIONS(3421), + [anon_sym_DQUOTE] = ACTIONS(3421), + [sym_true] = ACTIONS(3419), + [sym_false] = ACTIONS(3419), + [anon_sym_NULL] = ACTIONS(3419), + [anon_sym_nullptr] = ACTIONS(3419), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3419), + [anon_sym_decltype] = ACTIONS(3419), + [anon_sym_virtual] = ACTIONS(3419), + [anon_sym_explicit] = ACTIONS(3419), + [anon_sym_typename] = ACTIONS(3419), + [anon_sym_template] = ACTIONS(3419), + [anon_sym_operator] = ACTIONS(3419), + [anon_sym_try] = ACTIONS(3419), + [anon_sym_delete] = ACTIONS(3419), + [anon_sym_throw] = ACTIONS(3419), + [anon_sym_namespace] = ACTIONS(3419), + [anon_sym_using] = ACTIONS(3419), + [anon_sym_static_assert] = ACTIONS(3419), + [anon_sym_concept] = ACTIONS(3419), + [anon_sym_co_return] = ACTIONS(3419), + [anon_sym_co_yield] = ACTIONS(3419), + [anon_sym_R_DQUOTE] = ACTIONS(3421), + [anon_sym_LR_DQUOTE] = ACTIONS(3421), + [anon_sym_uR_DQUOTE] = ACTIONS(3421), + [anon_sym_UR_DQUOTE] = ACTIONS(3421), + [anon_sym_u8R_DQUOTE] = ACTIONS(3421), + [anon_sym_co_await] = ACTIONS(3419), + [anon_sym_new] = ACTIONS(3419), + [anon_sym_requires] = ACTIONS(3419), + [sym_this] = ACTIONS(3419), }, [1357] = { - [sym__expression] = STATE(3856), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_initializer_list] = STATE(6524), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2954), - [anon_sym_LPAREN2] = ACTIONS(984), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1489), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_default] = ACTIONS(3460), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(3462), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [ts_builtin_sym_end] = ACTIONS(3148), + [sym_identifier] = ACTIONS(3146), + [aux_sym_preproc_include_token1] = ACTIONS(3146), + [aux_sym_preproc_def_token1] = ACTIONS(3146), + [aux_sym_preproc_if_token1] = ACTIONS(3146), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3146), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3146), + [sym_preproc_directive] = ACTIONS(3146), + [anon_sym_LPAREN2] = ACTIONS(3148), + [anon_sym_BANG] = ACTIONS(3148), + [anon_sym_TILDE] = ACTIONS(3148), + [anon_sym_DASH] = ACTIONS(3146), + [anon_sym_PLUS] = ACTIONS(3146), + [anon_sym_STAR] = ACTIONS(3148), + [anon_sym_AMP_AMP] = ACTIONS(3148), + [anon_sym_AMP] = ACTIONS(3146), + [anon_sym_typedef] = ACTIONS(3146), + [anon_sym_extern] = ACTIONS(3146), + [anon_sym___attribute__] = ACTIONS(3146), + [anon_sym_COLON_COLON] = ACTIONS(3148), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3148), + [anon_sym___declspec] = ACTIONS(3146), + [anon_sym___based] = ACTIONS(3146), + [anon_sym___cdecl] = ACTIONS(3146), + [anon_sym___clrcall] = ACTIONS(3146), + [anon_sym___stdcall] = ACTIONS(3146), + [anon_sym___fastcall] = ACTIONS(3146), + [anon_sym___thiscall] = ACTIONS(3146), + [anon_sym___vectorcall] = ACTIONS(3146), + [anon_sym_LBRACE] = ACTIONS(3148), + [anon_sym_LBRACK] = ACTIONS(3146), + [anon_sym_static] = ACTIONS(3146), + [anon_sym_register] = ACTIONS(3146), + [anon_sym_inline] = ACTIONS(3146), + [anon_sym_thread_local] = ACTIONS(3146), + [anon_sym_const] = ACTIONS(3146), + [anon_sym_constexpr] = ACTIONS(3146), + [anon_sym_volatile] = ACTIONS(3146), + [anon_sym_restrict] = ACTIONS(3146), + [anon_sym___restrict__] = ACTIONS(3146), + [anon_sym__Atomic] = ACTIONS(3146), + [anon_sym__Noreturn] = ACTIONS(3146), + [anon_sym_noreturn] = ACTIONS(3146), + [anon_sym_mutable] = ACTIONS(3146), + [anon_sym_constinit] = ACTIONS(3146), + [anon_sym_consteval] = ACTIONS(3146), + [anon_sym_signed] = ACTIONS(3146), + [anon_sym_unsigned] = ACTIONS(3146), + [anon_sym_long] = ACTIONS(3146), + [anon_sym_short] = ACTIONS(3146), + [sym_primitive_type] = ACTIONS(3146), + [anon_sym_enum] = ACTIONS(3146), + [anon_sym_class] = ACTIONS(3146), + [anon_sym_struct] = ACTIONS(3146), + [anon_sym_union] = ACTIONS(3146), + [anon_sym_if] = ACTIONS(3146), + [anon_sym_switch] = ACTIONS(3146), + [anon_sym_case] = ACTIONS(3146), + [anon_sym_default] = ACTIONS(3146), + [anon_sym_while] = ACTIONS(3146), + [anon_sym_do] = ACTIONS(3146), + [anon_sym_for] = ACTIONS(3146), + [anon_sym_return] = ACTIONS(3146), + [anon_sym_break] = ACTIONS(3146), + [anon_sym_continue] = ACTIONS(3146), + [anon_sym_goto] = ACTIONS(3146), + [anon_sym_not] = ACTIONS(3146), + [anon_sym_compl] = ACTIONS(3146), + [anon_sym_DASH_DASH] = ACTIONS(3148), + [anon_sym_PLUS_PLUS] = ACTIONS(3148), + [anon_sym_sizeof] = ACTIONS(3146), + [anon_sym_offsetof] = ACTIONS(3146), + [anon_sym__Generic] = ACTIONS(3146), + [anon_sym_asm] = ACTIONS(3146), + [anon_sym___asm__] = ACTIONS(3146), + [sym_number_literal] = ACTIONS(3148), + [anon_sym_L_SQUOTE] = ACTIONS(3148), + [anon_sym_u_SQUOTE] = ACTIONS(3148), + [anon_sym_U_SQUOTE] = ACTIONS(3148), + [anon_sym_u8_SQUOTE] = ACTIONS(3148), + [anon_sym_SQUOTE] = ACTIONS(3148), + [anon_sym_L_DQUOTE] = ACTIONS(3148), + [anon_sym_u_DQUOTE] = ACTIONS(3148), + [anon_sym_U_DQUOTE] = ACTIONS(3148), + [anon_sym_u8_DQUOTE] = ACTIONS(3148), + [anon_sym_DQUOTE] = ACTIONS(3148), + [sym_true] = ACTIONS(3146), + [sym_false] = ACTIONS(3146), + [anon_sym_NULL] = ACTIONS(3146), + [anon_sym_nullptr] = ACTIONS(3146), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3146), + [anon_sym_decltype] = ACTIONS(3146), + [anon_sym_virtual] = ACTIONS(3146), + [anon_sym_explicit] = ACTIONS(3146), + [anon_sym_typename] = ACTIONS(3146), + [anon_sym_template] = ACTIONS(3146), + [anon_sym_operator] = ACTIONS(3146), + [anon_sym_try] = ACTIONS(3146), + [anon_sym_delete] = ACTIONS(3146), + [anon_sym_throw] = ACTIONS(3146), + [anon_sym_namespace] = ACTIONS(3146), + [anon_sym_using] = ACTIONS(3146), + [anon_sym_static_assert] = ACTIONS(3146), + [anon_sym_concept] = ACTIONS(3146), + [anon_sym_co_return] = ACTIONS(3146), + [anon_sym_co_yield] = ACTIONS(3146), + [anon_sym_R_DQUOTE] = ACTIONS(3148), + [anon_sym_LR_DQUOTE] = ACTIONS(3148), + [anon_sym_uR_DQUOTE] = ACTIONS(3148), + [anon_sym_UR_DQUOTE] = ACTIONS(3148), + [anon_sym_u8R_DQUOTE] = ACTIONS(3148), + [anon_sym_co_await] = ACTIONS(3146), + [anon_sym_new] = ACTIONS(3146), + [anon_sym_requires] = ACTIONS(3146), + [sym_this] = ACTIONS(3146), }, [1358] = { - [sym__expression] = STATE(3464), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2984), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2984), - [sym_call_expression] = STATE(2984), - [sym_field_expression] = STATE(2984), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2984), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_lambda_default_capture] = STATE(5941), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2984), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(3047), - [anon_sym_LPAREN2] = ACTIONS(3049), - [anon_sym_BANG] = ACTIONS(3053), - [anon_sym_TILDE] = ACTIONS(3053), - [anon_sym_DASH] = ACTIONS(3051), - [anon_sym_PLUS] = ACTIONS(3051), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(3422), - [anon_sym_COLON_COLON] = ACTIONS(3055), - [anon_sym_LBRACK] = ACTIONS(1539), - [anon_sym_RBRACK] = ACTIONS(3464), - [anon_sym_EQ] = ACTIONS(3426), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(3051), - [anon_sym_compl] = ACTIONS(3051), - [anon_sym_DASH_DASH] = ACTIONS(3057), - [anon_sym_PLUS_PLUS] = ACTIONS(3057), - [anon_sym_sizeof] = ACTIONS(3059), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(3061), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(3063), - [anon_sym_new] = ACTIONS(3065), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [ts_builtin_sym_end] = ACTIONS(3158), + [sym_identifier] = ACTIONS(3156), + [aux_sym_preproc_include_token1] = ACTIONS(3156), + [aux_sym_preproc_def_token1] = ACTIONS(3156), + [aux_sym_preproc_if_token1] = ACTIONS(3156), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3156), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3156), + [sym_preproc_directive] = ACTIONS(3156), + [anon_sym_LPAREN2] = ACTIONS(3158), + [anon_sym_BANG] = ACTIONS(3158), + [anon_sym_TILDE] = ACTIONS(3158), + [anon_sym_DASH] = ACTIONS(3156), + [anon_sym_PLUS] = ACTIONS(3156), + [anon_sym_STAR] = ACTIONS(3158), + [anon_sym_AMP_AMP] = ACTIONS(3158), + [anon_sym_AMP] = ACTIONS(3156), + [anon_sym_typedef] = ACTIONS(3156), + [anon_sym_extern] = ACTIONS(3156), + [anon_sym___attribute__] = ACTIONS(3156), + [anon_sym_COLON_COLON] = ACTIONS(3158), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3158), + [anon_sym___declspec] = ACTIONS(3156), + [anon_sym___based] = ACTIONS(3156), + [anon_sym___cdecl] = ACTIONS(3156), + [anon_sym___clrcall] = ACTIONS(3156), + [anon_sym___stdcall] = ACTIONS(3156), + [anon_sym___fastcall] = ACTIONS(3156), + [anon_sym___thiscall] = ACTIONS(3156), + [anon_sym___vectorcall] = ACTIONS(3156), + [anon_sym_LBRACE] = ACTIONS(3158), + [anon_sym_LBRACK] = ACTIONS(3156), + [anon_sym_static] = ACTIONS(3156), + [anon_sym_register] = ACTIONS(3156), + [anon_sym_inline] = ACTIONS(3156), + [anon_sym_thread_local] = ACTIONS(3156), + [anon_sym_const] = ACTIONS(3156), + [anon_sym_constexpr] = ACTIONS(3156), + [anon_sym_volatile] = ACTIONS(3156), + [anon_sym_restrict] = ACTIONS(3156), + [anon_sym___restrict__] = ACTIONS(3156), + [anon_sym__Atomic] = ACTIONS(3156), + [anon_sym__Noreturn] = ACTIONS(3156), + [anon_sym_noreturn] = ACTIONS(3156), + [anon_sym_mutable] = ACTIONS(3156), + [anon_sym_constinit] = ACTIONS(3156), + [anon_sym_consteval] = ACTIONS(3156), + [anon_sym_signed] = ACTIONS(3156), + [anon_sym_unsigned] = ACTIONS(3156), + [anon_sym_long] = ACTIONS(3156), + [anon_sym_short] = ACTIONS(3156), + [sym_primitive_type] = ACTIONS(3156), + [anon_sym_enum] = ACTIONS(3156), + [anon_sym_class] = ACTIONS(3156), + [anon_sym_struct] = ACTIONS(3156), + [anon_sym_union] = ACTIONS(3156), + [anon_sym_if] = ACTIONS(3156), + [anon_sym_switch] = ACTIONS(3156), + [anon_sym_case] = ACTIONS(3156), + [anon_sym_default] = ACTIONS(3156), + [anon_sym_while] = ACTIONS(3156), + [anon_sym_do] = ACTIONS(3156), + [anon_sym_for] = ACTIONS(3156), + [anon_sym_return] = ACTIONS(3156), + [anon_sym_break] = ACTIONS(3156), + [anon_sym_continue] = ACTIONS(3156), + [anon_sym_goto] = ACTIONS(3156), + [anon_sym_not] = ACTIONS(3156), + [anon_sym_compl] = ACTIONS(3156), + [anon_sym_DASH_DASH] = ACTIONS(3158), + [anon_sym_PLUS_PLUS] = ACTIONS(3158), + [anon_sym_sizeof] = ACTIONS(3156), + [anon_sym_offsetof] = ACTIONS(3156), + [anon_sym__Generic] = ACTIONS(3156), + [anon_sym_asm] = ACTIONS(3156), + [anon_sym___asm__] = ACTIONS(3156), + [sym_number_literal] = ACTIONS(3158), + [anon_sym_L_SQUOTE] = ACTIONS(3158), + [anon_sym_u_SQUOTE] = ACTIONS(3158), + [anon_sym_U_SQUOTE] = ACTIONS(3158), + [anon_sym_u8_SQUOTE] = ACTIONS(3158), + [anon_sym_SQUOTE] = ACTIONS(3158), + [anon_sym_L_DQUOTE] = ACTIONS(3158), + [anon_sym_u_DQUOTE] = ACTIONS(3158), + [anon_sym_U_DQUOTE] = ACTIONS(3158), + [anon_sym_u8_DQUOTE] = ACTIONS(3158), + [anon_sym_DQUOTE] = ACTIONS(3158), + [sym_true] = ACTIONS(3156), + [sym_false] = ACTIONS(3156), + [anon_sym_NULL] = ACTIONS(3156), + [anon_sym_nullptr] = ACTIONS(3156), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3156), + [anon_sym_decltype] = ACTIONS(3156), + [anon_sym_virtual] = ACTIONS(3156), + [anon_sym_explicit] = ACTIONS(3156), + [anon_sym_typename] = ACTIONS(3156), + [anon_sym_template] = ACTIONS(3156), + [anon_sym_operator] = ACTIONS(3156), + [anon_sym_try] = ACTIONS(3156), + [anon_sym_delete] = ACTIONS(3156), + [anon_sym_throw] = ACTIONS(3156), + [anon_sym_namespace] = ACTIONS(3156), + [anon_sym_using] = ACTIONS(3156), + [anon_sym_static_assert] = ACTIONS(3156), + [anon_sym_concept] = ACTIONS(3156), + [anon_sym_co_return] = ACTIONS(3156), + [anon_sym_co_yield] = ACTIONS(3156), + [anon_sym_R_DQUOTE] = ACTIONS(3158), + [anon_sym_LR_DQUOTE] = ACTIONS(3158), + [anon_sym_uR_DQUOTE] = ACTIONS(3158), + [anon_sym_UR_DQUOTE] = ACTIONS(3158), + [anon_sym_u8R_DQUOTE] = ACTIONS(3158), + [anon_sym_co_await] = ACTIONS(3156), + [anon_sym_new] = ACTIONS(3156), + [anon_sym_requires] = ACTIONS(3156), + [sym_this] = ACTIONS(3156), }, [1359] = { - [sym__expression] = STATE(2452), - [sym_conditional_expression] = STATE(2574), - [sym_assignment_expression] = STATE(2574), - [sym_pointer_expression] = STATE(2578), - [sym_unary_expression] = STATE(2574), - [sym_binary_expression] = STATE(2574), - [sym_update_expression] = STATE(2574), - [sym_cast_expression] = STATE(2574), - [sym_sizeof_expression] = STATE(2574), - [sym_subscript_expression] = STATE(2578), - [sym_call_expression] = STATE(2578), - [sym_field_expression] = STATE(2578), - [sym_compound_literal_expression] = STATE(2574), - [sym_parenthesized_expression] = STATE(2578), - [sym_char_literal] = STATE(2207), - [sym_concatenated_string] = STATE(2207), - [sym_string_literal] = STATE(1820), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5944), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(2574), - [sym_raw_string_literal] = STATE(1820), - [sym_co_await_expression] = STATE(2574), - [sym_new_expression] = STATE(2574), - [sym_delete_expression] = STATE(2574), - [sym_requires_clause] = STATE(2574), - [sym_requires_expression] = STATE(2574), - [sym_lambda_expression] = STATE(2574), - [sym_lambda_capture_specifier] = STATE(4479), - [sym_fold_expression] = STATE(2574), - [sym_parameter_pack_expansion] = STATE(2574), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2578), - [sym_qualified_type_identifier] = STATE(5944), - [sym_user_defined_literal] = STATE(2574), - [sym_identifier] = ACTIONS(1523), - [anon_sym_LPAREN2] = ACTIONS(3416), - [anon_sym_BANG] = ACTIONS(1531), - [anon_sym_TILDE] = ACTIONS(1531), - [anon_sym_DASH] = ACTIONS(1529), - [anon_sym_PLUS] = ACTIONS(1529), - [anon_sym_STAR] = ACTIONS(3416), - [anon_sym_AMP_AMP] = ACTIONS(3416), - [anon_sym_AMP] = ACTIONS(3418), - [anon_sym_LT] = ACTIONS(3416), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACE] = ACTIONS(3416), - [anon_sym_LBRACK] = ACTIONS(3416), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(1529), - [anon_sym_compl] = ACTIONS(1529), - [anon_sym_DASH_DASH] = ACTIONS(1543), - [anon_sym_PLUS_PLUS] = ACTIONS(1543), - [anon_sym_sizeof] = ACTIONS(1545), - [sym_number_literal] = ACTIONS(1547), - [anon_sym_L_SQUOTE] = ACTIONS(1549), - [anon_sym_u_SQUOTE] = ACTIONS(1549), - [anon_sym_U_SQUOTE] = ACTIONS(1549), - [anon_sym_u8_SQUOTE] = ACTIONS(1549), - [anon_sym_SQUOTE] = ACTIONS(1549), - [anon_sym_L_DQUOTE] = ACTIONS(1551), - [anon_sym_u_DQUOTE] = ACTIONS(1551), - [anon_sym_U_DQUOTE] = ACTIONS(1551), - [anon_sym_u8_DQUOTE] = ACTIONS(1551), - [anon_sym_DQUOTE] = ACTIONS(1551), - [sym_true] = ACTIONS(1553), - [sym_false] = ACTIONS(1553), - [sym_null] = ACTIONS(1553), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1557), - [anon_sym_R_DQUOTE] = ACTIONS(1559), - [anon_sym_LR_DQUOTE] = ACTIONS(1559), - [anon_sym_uR_DQUOTE] = ACTIONS(1559), - [anon_sym_UR_DQUOTE] = ACTIONS(1559), - [anon_sym_u8R_DQUOTE] = ACTIONS(1559), - [anon_sym_co_await] = ACTIONS(1561), - [anon_sym_new] = ACTIONS(1563), - [anon_sym_requires] = ACTIONS(1565), - [sym_this] = ACTIONS(1553), - [sym_nullptr] = ACTIONS(1553), + [ts_builtin_sym_end] = ACTIONS(3127), + [sym_identifier] = ACTIONS(3125), + [aux_sym_preproc_include_token1] = ACTIONS(3125), + [aux_sym_preproc_def_token1] = ACTIONS(3125), + [aux_sym_preproc_if_token1] = ACTIONS(3125), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3125), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3125), + [sym_preproc_directive] = ACTIONS(3125), + [anon_sym_LPAREN2] = ACTIONS(3127), + [anon_sym_BANG] = ACTIONS(3127), + [anon_sym_TILDE] = ACTIONS(3127), + [anon_sym_DASH] = ACTIONS(3125), + [anon_sym_PLUS] = ACTIONS(3125), + [anon_sym_STAR] = ACTIONS(3127), + [anon_sym_AMP_AMP] = ACTIONS(3127), + [anon_sym_AMP] = ACTIONS(3125), + [anon_sym_typedef] = ACTIONS(3125), + [anon_sym_extern] = ACTIONS(3125), + [anon_sym___attribute__] = ACTIONS(3125), + [anon_sym_COLON_COLON] = ACTIONS(3127), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3127), + [anon_sym___declspec] = ACTIONS(3125), + [anon_sym___based] = ACTIONS(3125), + [anon_sym___cdecl] = ACTIONS(3125), + [anon_sym___clrcall] = ACTIONS(3125), + [anon_sym___stdcall] = ACTIONS(3125), + [anon_sym___fastcall] = ACTIONS(3125), + [anon_sym___thiscall] = ACTIONS(3125), + [anon_sym___vectorcall] = ACTIONS(3125), + [anon_sym_LBRACE] = ACTIONS(3127), + [anon_sym_LBRACK] = ACTIONS(3125), + [anon_sym_static] = ACTIONS(3125), + [anon_sym_register] = ACTIONS(3125), + [anon_sym_inline] = ACTIONS(3125), + [anon_sym_thread_local] = ACTIONS(3125), + [anon_sym_const] = ACTIONS(3125), + [anon_sym_constexpr] = ACTIONS(3125), + [anon_sym_volatile] = ACTIONS(3125), + [anon_sym_restrict] = ACTIONS(3125), + [anon_sym___restrict__] = ACTIONS(3125), + [anon_sym__Atomic] = ACTIONS(3125), + [anon_sym__Noreturn] = ACTIONS(3125), + [anon_sym_noreturn] = ACTIONS(3125), + [anon_sym_mutable] = ACTIONS(3125), + [anon_sym_constinit] = ACTIONS(3125), + [anon_sym_consteval] = ACTIONS(3125), + [anon_sym_signed] = ACTIONS(3125), + [anon_sym_unsigned] = ACTIONS(3125), + [anon_sym_long] = ACTIONS(3125), + [anon_sym_short] = ACTIONS(3125), + [sym_primitive_type] = ACTIONS(3125), + [anon_sym_enum] = ACTIONS(3125), + [anon_sym_class] = ACTIONS(3125), + [anon_sym_struct] = ACTIONS(3125), + [anon_sym_union] = ACTIONS(3125), + [anon_sym_if] = ACTIONS(3125), + [anon_sym_switch] = ACTIONS(3125), + [anon_sym_case] = ACTIONS(3125), + [anon_sym_default] = ACTIONS(3125), + [anon_sym_while] = ACTIONS(3125), + [anon_sym_do] = ACTIONS(3125), + [anon_sym_for] = ACTIONS(3125), + [anon_sym_return] = ACTIONS(3125), + [anon_sym_break] = ACTIONS(3125), + [anon_sym_continue] = ACTIONS(3125), + [anon_sym_goto] = ACTIONS(3125), + [anon_sym_not] = ACTIONS(3125), + [anon_sym_compl] = ACTIONS(3125), + [anon_sym_DASH_DASH] = ACTIONS(3127), + [anon_sym_PLUS_PLUS] = ACTIONS(3127), + [anon_sym_sizeof] = ACTIONS(3125), + [anon_sym_offsetof] = ACTIONS(3125), + [anon_sym__Generic] = ACTIONS(3125), + [anon_sym_asm] = ACTIONS(3125), + [anon_sym___asm__] = ACTIONS(3125), + [sym_number_literal] = ACTIONS(3127), + [anon_sym_L_SQUOTE] = ACTIONS(3127), + [anon_sym_u_SQUOTE] = ACTIONS(3127), + [anon_sym_U_SQUOTE] = ACTIONS(3127), + [anon_sym_u8_SQUOTE] = ACTIONS(3127), + [anon_sym_SQUOTE] = ACTIONS(3127), + [anon_sym_L_DQUOTE] = ACTIONS(3127), + [anon_sym_u_DQUOTE] = ACTIONS(3127), + [anon_sym_U_DQUOTE] = ACTIONS(3127), + [anon_sym_u8_DQUOTE] = ACTIONS(3127), + [anon_sym_DQUOTE] = ACTIONS(3127), + [sym_true] = ACTIONS(3125), + [sym_false] = ACTIONS(3125), + [anon_sym_NULL] = ACTIONS(3125), + [anon_sym_nullptr] = ACTIONS(3125), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3125), + [anon_sym_decltype] = ACTIONS(3125), + [anon_sym_virtual] = ACTIONS(3125), + [anon_sym_explicit] = ACTIONS(3125), + [anon_sym_typename] = ACTIONS(3125), + [anon_sym_template] = ACTIONS(3125), + [anon_sym_operator] = ACTIONS(3125), + [anon_sym_try] = ACTIONS(3125), + [anon_sym_delete] = ACTIONS(3125), + [anon_sym_throw] = ACTIONS(3125), + [anon_sym_namespace] = ACTIONS(3125), + [anon_sym_using] = ACTIONS(3125), + [anon_sym_static_assert] = ACTIONS(3125), + [anon_sym_concept] = ACTIONS(3125), + [anon_sym_co_return] = ACTIONS(3125), + [anon_sym_co_yield] = ACTIONS(3125), + [anon_sym_R_DQUOTE] = ACTIONS(3127), + [anon_sym_LR_DQUOTE] = ACTIONS(3127), + [anon_sym_uR_DQUOTE] = ACTIONS(3127), + [anon_sym_UR_DQUOTE] = ACTIONS(3127), + [anon_sym_u8R_DQUOTE] = ACTIONS(3127), + [anon_sym_co_await] = ACTIONS(3125), + [anon_sym_new] = ACTIONS(3125), + [anon_sym_requires] = ACTIONS(3125), + [sym_this] = ACTIONS(3125), }, [1360] = { - [sym__expression] = STATE(2836), - [sym_conditional_expression] = STATE(2940), - [sym_assignment_expression] = STATE(2940), - [sym_pointer_expression] = STATE(2933), - [sym_unary_expression] = STATE(2940), - [sym_binary_expression] = STATE(2940), - [sym_update_expression] = STATE(2940), - [sym_cast_expression] = STATE(2940), - [sym_sizeof_expression] = STATE(2940), - [sym_subscript_expression] = STATE(2933), - [sym_call_expression] = STATE(2933), - [sym_field_expression] = STATE(2933), - [sym_compound_literal_expression] = STATE(2940), - [sym_parenthesized_expression] = STATE(2933), - [sym_char_literal] = STATE(2845), - [sym_concatenated_string] = STATE(2845), - [sym_string_literal] = STATE(1861), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5801), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(2940), - [sym_raw_string_literal] = STATE(1861), - [sym_co_await_expression] = STATE(2940), - [sym_new_expression] = STATE(2940), - [sym_delete_expression] = STATE(2940), - [sym_requires_clause] = STATE(2940), - [sym_requires_expression] = STATE(2940), - [sym_lambda_expression] = STATE(2940), - [sym_lambda_capture_specifier] = STATE(4464), - [sym_fold_expression] = STATE(2940), - [sym_parameter_pack_expansion] = STATE(2940), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4570), - [sym_qualified_identifier] = STATE(2933), - [sym_qualified_type_identifier] = STATE(5801), - [sym_user_defined_literal] = STATE(2940), - [sym_identifier] = ACTIONS(1605), - [anon_sym_LPAREN2] = ACTIONS(3416), - [anon_sym_BANG] = ACTIONS(1611), - [anon_sym_TILDE] = ACTIONS(1611), - [anon_sym_DASH] = ACTIONS(1609), - [anon_sym_PLUS] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(3416), - [anon_sym_AMP_AMP] = ACTIONS(3416), - [anon_sym_AMP] = ACTIONS(3418), - [anon_sym_LT] = ACTIONS(3416), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_LBRACE] = ACTIONS(3416), - [anon_sym_LBRACK] = ACTIONS(3416), - [sym_primitive_type] = ACTIONS(1619), - [anon_sym_not] = ACTIONS(1609), - [anon_sym_compl] = ACTIONS(1609), - [anon_sym_DASH_DASH] = ACTIONS(1621), - [anon_sym_PLUS_PLUS] = ACTIONS(1621), - [anon_sym_sizeof] = ACTIONS(1623), - [sym_number_literal] = ACTIONS(1625), - [anon_sym_L_SQUOTE] = ACTIONS(1627), - [anon_sym_u_SQUOTE] = ACTIONS(1627), - [anon_sym_U_SQUOTE] = ACTIONS(1627), - [anon_sym_u8_SQUOTE] = ACTIONS(1627), - [anon_sym_SQUOTE] = ACTIONS(1627), - [anon_sym_L_DQUOTE] = ACTIONS(1629), - [anon_sym_u_DQUOTE] = ACTIONS(1629), - [anon_sym_U_DQUOTE] = ACTIONS(1629), - [anon_sym_u8_DQUOTE] = ACTIONS(1629), - [anon_sym_DQUOTE] = ACTIONS(1629), - [sym_true] = ACTIONS(1631), - [sym_false] = ACTIONS(1631), - [sym_null] = ACTIONS(1631), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1633), - [anon_sym_R_DQUOTE] = ACTIONS(1635), - [anon_sym_LR_DQUOTE] = ACTIONS(1635), - [anon_sym_uR_DQUOTE] = ACTIONS(1635), - [anon_sym_UR_DQUOTE] = ACTIONS(1635), - [anon_sym_u8R_DQUOTE] = ACTIONS(1635), - [anon_sym_co_await] = ACTIONS(1637), - [anon_sym_new] = ACTIONS(1639), - [anon_sym_requires] = ACTIONS(1641), - [sym_this] = ACTIONS(1631), - [sym_nullptr] = ACTIONS(1631), + [ts_builtin_sym_end] = ACTIONS(3453), + [sym_identifier] = ACTIONS(3451), + [aux_sym_preproc_include_token1] = ACTIONS(3451), + [aux_sym_preproc_def_token1] = ACTIONS(3451), + [aux_sym_preproc_if_token1] = ACTIONS(3451), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3451), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3451), + [sym_preproc_directive] = ACTIONS(3451), + [anon_sym_LPAREN2] = ACTIONS(3453), + [anon_sym_BANG] = ACTIONS(3453), + [anon_sym_TILDE] = ACTIONS(3453), + [anon_sym_DASH] = ACTIONS(3451), + [anon_sym_PLUS] = ACTIONS(3451), + [anon_sym_STAR] = ACTIONS(3453), + [anon_sym_AMP_AMP] = ACTIONS(3453), + [anon_sym_AMP] = ACTIONS(3451), + [anon_sym_typedef] = ACTIONS(3451), + [anon_sym_extern] = ACTIONS(3451), + [anon_sym___attribute__] = ACTIONS(3451), + [anon_sym_COLON_COLON] = ACTIONS(3453), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3453), + [anon_sym___declspec] = ACTIONS(3451), + [anon_sym___based] = ACTIONS(3451), + [anon_sym___cdecl] = ACTIONS(3451), + [anon_sym___clrcall] = ACTIONS(3451), + [anon_sym___stdcall] = ACTIONS(3451), + [anon_sym___fastcall] = ACTIONS(3451), + [anon_sym___thiscall] = ACTIONS(3451), + [anon_sym___vectorcall] = ACTIONS(3451), + [anon_sym_LBRACE] = ACTIONS(3453), + [anon_sym_LBRACK] = ACTIONS(3451), + [anon_sym_static] = ACTIONS(3451), + [anon_sym_register] = ACTIONS(3451), + [anon_sym_inline] = ACTIONS(3451), + [anon_sym_thread_local] = ACTIONS(3451), + [anon_sym_const] = ACTIONS(3451), + [anon_sym_constexpr] = ACTIONS(3451), + [anon_sym_volatile] = ACTIONS(3451), + [anon_sym_restrict] = ACTIONS(3451), + [anon_sym___restrict__] = ACTIONS(3451), + [anon_sym__Atomic] = ACTIONS(3451), + [anon_sym__Noreturn] = ACTIONS(3451), + [anon_sym_noreturn] = ACTIONS(3451), + [anon_sym_mutable] = ACTIONS(3451), + [anon_sym_constinit] = ACTIONS(3451), + [anon_sym_consteval] = ACTIONS(3451), + [anon_sym_signed] = ACTIONS(3451), + [anon_sym_unsigned] = ACTIONS(3451), + [anon_sym_long] = ACTIONS(3451), + [anon_sym_short] = ACTIONS(3451), + [sym_primitive_type] = ACTIONS(3451), + [anon_sym_enum] = ACTIONS(3451), + [anon_sym_class] = ACTIONS(3451), + [anon_sym_struct] = ACTIONS(3451), + [anon_sym_union] = ACTIONS(3451), + [anon_sym_if] = ACTIONS(3451), + [anon_sym_switch] = ACTIONS(3451), + [anon_sym_case] = ACTIONS(3451), + [anon_sym_default] = ACTIONS(3451), + [anon_sym_while] = ACTIONS(3451), + [anon_sym_do] = ACTIONS(3451), + [anon_sym_for] = ACTIONS(3451), + [anon_sym_return] = ACTIONS(3451), + [anon_sym_break] = ACTIONS(3451), + [anon_sym_continue] = ACTIONS(3451), + [anon_sym_goto] = ACTIONS(3451), + [anon_sym_not] = ACTIONS(3451), + [anon_sym_compl] = ACTIONS(3451), + [anon_sym_DASH_DASH] = ACTIONS(3453), + [anon_sym_PLUS_PLUS] = ACTIONS(3453), + [anon_sym_sizeof] = ACTIONS(3451), + [anon_sym_offsetof] = ACTIONS(3451), + [anon_sym__Generic] = ACTIONS(3451), + [anon_sym_asm] = ACTIONS(3451), + [anon_sym___asm__] = ACTIONS(3451), + [sym_number_literal] = ACTIONS(3453), + [anon_sym_L_SQUOTE] = ACTIONS(3453), + [anon_sym_u_SQUOTE] = ACTIONS(3453), + [anon_sym_U_SQUOTE] = ACTIONS(3453), + [anon_sym_u8_SQUOTE] = ACTIONS(3453), + [anon_sym_SQUOTE] = ACTIONS(3453), + [anon_sym_L_DQUOTE] = ACTIONS(3453), + [anon_sym_u_DQUOTE] = ACTIONS(3453), + [anon_sym_U_DQUOTE] = ACTIONS(3453), + [anon_sym_u8_DQUOTE] = ACTIONS(3453), + [anon_sym_DQUOTE] = ACTIONS(3453), + [sym_true] = ACTIONS(3451), + [sym_false] = ACTIONS(3451), + [anon_sym_NULL] = ACTIONS(3451), + [anon_sym_nullptr] = ACTIONS(3451), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3451), + [anon_sym_decltype] = ACTIONS(3451), + [anon_sym_virtual] = ACTIONS(3451), + [anon_sym_explicit] = ACTIONS(3451), + [anon_sym_typename] = ACTIONS(3451), + [anon_sym_template] = ACTIONS(3451), + [anon_sym_operator] = ACTIONS(3451), + [anon_sym_try] = ACTIONS(3451), + [anon_sym_delete] = ACTIONS(3451), + [anon_sym_throw] = ACTIONS(3451), + [anon_sym_namespace] = ACTIONS(3451), + [anon_sym_using] = ACTIONS(3451), + [anon_sym_static_assert] = ACTIONS(3451), + [anon_sym_concept] = ACTIONS(3451), + [anon_sym_co_return] = ACTIONS(3451), + [anon_sym_co_yield] = ACTIONS(3451), + [anon_sym_R_DQUOTE] = ACTIONS(3453), + [anon_sym_LR_DQUOTE] = ACTIONS(3453), + [anon_sym_uR_DQUOTE] = ACTIONS(3453), + [anon_sym_UR_DQUOTE] = ACTIONS(3453), + [anon_sym_u8R_DQUOTE] = ACTIONS(3453), + [anon_sym_co_await] = ACTIONS(3451), + [anon_sym_new] = ACTIONS(3451), + [anon_sym_requires] = ACTIONS(3451), + [sym_this] = ACTIONS(3451), }, [1361] = { - [sym__expression] = STATE(3485), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2984), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2984), - [sym_call_expression] = STATE(2984), - [sym_field_expression] = STATE(2984), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2984), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_lambda_default_capture] = STATE(5941), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2984), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(3466), - [anon_sym_LPAREN2] = ACTIONS(3049), - [anon_sym_BANG] = ACTIONS(3053), - [anon_sym_TILDE] = ACTIONS(3053), - [anon_sym_DASH] = ACTIONS(3051), - [anon_sym_PLUS] = ACTIONS(3051), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(3422), - [anon_sym_COLON_COLON] = ACTIONS(3055), - [anon_sym_LBRACK] = ACTIONS(1539), - [anon_sym_RBRACK] = ACTIONS(3452), - [anon_sym_EQ] = ACTIONS(3426), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(3051), - [anon_sym_compl] = ACTIONS(3051), - [anon_sym_DASH_DASH] = ACTIONS(3057), - [anon_sym_PLUS_PLUS] = ACTIONS(3057), - [anon_sym_sizeof] = ACTIONS(3059), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(3061), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(3063), - [anon_sym_new] = ACTIONS(3065), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [ts_builtin_sym_end] = ACTIONS(3344), + [sym_identifier] = ACTIONS(3342), + [aux_sym_preproc_include_token1] = ACTIONS(3342), + [aux_sym_preproc_def_token1] = ACTIONS(3342), + [aux_sym_preproc_if_token1] = ACTIONS(3342), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3342), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3342), + [sym_preproc_directive] = ACTIONS(3342), + [anon_sym_LPAREN2] = ACTIONS(3344), + [anon_sym_BANG] = ACTIONS(3344), + [anon_sym_TILDE] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3342), + [anon_sym_PLUS] = ACTIONS(3342), + [anon_sym_STAR] = ACTIONS(3344), + [anon_sym_AMP_AMP] = ACTIONS(3344), + [anon_sym_AMP] = ACTIONS(3342), + [anon_sym_typedef] = ACTIONS(3342), + [anon_sym_extern] = ACTIONS(3342), + [anon_sym___attribute__] = ACTIONS(3342), + [anon_sym_COLON_COLON] = ACTIONS(3344), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3344), + [anon_sym___declspec] = ACTIONS(3342), + [anon_sym___based] = ACTIONS(3342), + [anon_sym___cdecl] = ACTIONS(3342), + [anon_sym___clrcall] = ACTIONS(3342), + [anon_sym___stdcall] = ACTIONS(3342), + [anon_sym___fastcall] = ACTIONS(3342), + [anon_sym___thiscall] = ACTIONS(3342), + [anon_sym___vectorcall] = ACTIONS(3342), + [anon_sym_LBRACE] = ACTIONS(3344), + [anon_sym_LBRACK] = ACTIONS(3342), + [anon_sym_static] = ACTIONS(3342), + [anon_sym_register] = ACTIONS(3342), + [anon_sym_inline] = ACTIONS(3342), + [anon_sym_thread_local] = ACTIONS(3342), + [anon_sym_const] = ACTIONS(3342), + [anon_sym_constexpr] = ACTIONS(3342), + [anon_sym_volatile] = ACTIONS(3342), + [anon_sym_restrict] = ACTIONS(3342), + [anon_sym___restrict__] = ACTIONS(3342), + [anon_sym__Atomic] = ACTIONS(3342), + [anon_sym__Noreturn] = ACTIONS(3342), + [anon_sym_noreturn] = ACTIONS(3342), + [anon_sym_mutable] = ACTIONS(3342), + [anon_sym_constinit] = ACTIONS(3342), + [anon_sym_consteval] = ACTIONS(3342), + [anon_sym_signed] = ACTIONS(3342), + [anon_sym_unsigned] = ACTIONS(3342), + [anon_sym_long] = ACTIONS(3342), + [anon_sym_short] = ACTIONS(3342), + [sym_primitive_type] = ACTIONS(3342), + [anon_sym_enum] = ACTIONS(3342), + [anon_sym_class] = ACTIONS(3342), + [anon_sym_struct] = ACTIONS(3342), + [anon_sym_union] = ACTIONS(3342), + [anon_sym_if] = ACTIONS(3342), + [anon_sym_switch] = ACTIONS(3342), + [anon_sym_case] = ACTIONS(3342), + [anon_sym_default] = ACTIONS(3342), + [anon_sym_while] = ACTIONS(3342), + [anon_sym_do] = ACTIONS(3342), + [anon_sym_for] = ACTIONS(3342), + [anon_sym_return] = ACTIONS(3342), + [anon_sym_break] = ACTIONS(3342), + [anon_sym_continue] = ACTIONS(3342), + [anon_sym_goto] = ACTIONS(3342), + [anon_sym_not] = ACTIONS(3342), + [anon_sym_compl] = ACTIONS(3342), + [anon_sym_DASH_DASH] = ACTIONS(3344), + [anon_sym_PLUS_PLUS] = ACTIONS(3344), + [anon_sym_sizeof] = ACTIONS(3342), + [anon_sym_offsetof] = ACTIONS(3342), + [anon_sym__Generic] = ACTIONS(3342), + [anon_sym_asm] = ACTIONS(3342), + [anon_sym___asm__] = ACTIONS(3342), + [sym_number_literal] = ACTIONS(3344), + [anon_sym_L_SQUOTE] = ACTIONS(3344), + [anon_sym_u_SQUOTE] = ACTIONS(3344), + [anon_sym_U_SQUOTE] = ACTIONS(3344), + [anon_sym_u8_SQUOTE] = ACTIONS(3344), + [anon_sym_SQUOTE] = ACTIONS(3344), + [anon_sym_L_DQUOTE] = ACTIONS(3344), + [anon_sym_u_DQUOTE] = ACTIONS(3344), + [anon_sym_U_DQUOTE] = ACTIONS(3344), + [anon_sym_u8_DQUOTE] = ACTIONS(3344), + [anon_sym_DQUOTE] = ACTIONS(3344), + [sym_true] = ACTIONS(3342), + [sym_false] = ACTIONS(3342), + [anon_sym_NULL] = ACTIONS(3342), + [anon_sym_nullptr] = ACTIONS(3342), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3342), + [anon_sym_decltype] = ACTIONS(3342), + [anon_sym_virtual] = ACTIONS(3342), + [anon_sym_explicit] = ACTIONS(3342), + [anon_sym_typename] = ACTIONS(3342), + [anon_sym_template] = ACTIONS(3342), + [anon_sym_operator] = ACTIONS(3342), + [anon_sym_try] = ACTIONS(3342), + [anon_sym_delete] = ACTIONS(3342), + [anon_sym_throw] = ACTIONS(3342), + [anon_sym_namespace] = ACTIONS(3342), + [anon_sym_using] = ACTIONS(3342), + [anon_sym_static_assert] = ACTIONS(3342), + [anon_sym_concept] = ACTIONS(3342), + [anon_sym_co_return] = ACTIONS(3342), + [anon_sym_co_yield] = ACTIONS(3342), + [anon_sym_R_DQUOTE] = ACTIONS(3344), + [anon_sym_LR_DQUOTE] = ACTIONS(3344), + [anon_sym_uR_DQUOTE] = ACTIONS(3344), + [anon_sym_UR_DQUOTE] = ACTIONS(3344), + [anon_sym_u8R_DQUOTE] = ACTIONS(3344), + [anon_sym_co_await] = ACTIONS(3342), + [anon_sym_new] = ACTIONS(3342), + [anon_sym_requires] = ACTIONS(3342), + [sym_this] = ACTIONS(3342), }, [1362] = { - [sym__expression] = STATE(2834), - [sym_conditional_expression] = STATE(2940), - [sym_assignment_expression] = STATE(2940), - [sym_pointer_expression] = STATE(2933), - [sym_unary_expression] = STATE(2940), - [sym_binary_expression] = STATE(2940), - [sym_update_expression] = STATE(2940), - [sym_cast_expression] = STATE(2940), - [sym_sizeof_expression] = STATE(2940), - [sym_subscript_expression] = STATE(2933), - [sym_call_expression] = STATE(2933), - [sym_field_expression] = STATE(2933), - [sym_compound_literal_expression] = STATE(2940), - [sym_parenthesized_expression] = STATE(2933), - [sym_char_literal] = STATE(2845), - [sym_concatenated_string] = STATE(2845), - [sym_string_literal] = STATE(1861), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5801), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(2940), - [sym_raw_string_literal] = STATE(1861), - [sym_co_await_expression] = STATE(2940), - [sym_new_expression] = STATE(2940), - [sym_delete_expression] = STATE(2940), - [sym_requires_clause] = STATE(2940), - [sym_requires_expression] = STATE(2940), - [sym_lambda_expression] = STATE(2940), - [sym_lambda_capture_specifier] = STATE(4464), - [sym_fold_expression] = STATE(2940), - [sym_parameter_pack_expansion] = STATE(2940), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4570), - [sym_qualified_identifier] = STATE(2933), - [sym_qualified_type_identifier] = STATE(5801), - [sym_user_defined_literal] = STATE(2940), - [sym_identifier] = ACTIONS(1605), - [anon_sym_LPAREN2] = ACTIONS(3416), - [anon_sym_BANG] = ACTIONS(1611), - [anon_sym_TILDE] = ACTIONS(1611), - [anon_sym_DASH] = ACTIONS(1609), - [anon_sym_PLUS] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(3416), - [anon_sym_AMP_AMP] = ACTIONS(3416), - [anon_sym_AMP] = ACTIONS(3418), - [anon_sym_LT] = ACTIONS(3416), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_LBRACE] = ACTIONS(3416), - [anon_sym_LBRACK] = ACTIONS(3416), - [sym_primitive_type] = ACTIONS(1619), - [anon_sym_not] = ACTIONS(1609), - [anon_sym_compl] = ACTIONS(1609), - [anon_sym_DASH_DASH] = ACTIONS(1621), - [anon_sym_PLUS_PLUS] = ACTIONS(1621), - [anon_sym_sizeof] = ACTIONS(1623), - [sym_number_literal] = ACTIONS(1625), - [anon_sym_L_SQUOTE] = ACTIONS(1627), - [anon_sym_u_SQUOTE] = ACTIONS(1627), - [anon_sym_U_SQUOTE] = ACTIONS(1627), - [anon_sym_u8_SQUOTE] = ACTIONS(1627), - [anon_sym_SQUOTE] = ACTIONS(1627), - [anon_sym_L_DQUOTE] = ACTIONS(1629), - [anon_sym_u_DQUOTE] = ACTIONS(1629), - [anon_sym_U_DQUOTE] = ACTIONS(1629), - [anon_sym_u8_DQUOTE] = ACTIONS(1629), - [anon_sym_DQUOTE] = ACTIONS(1629), - [sym_true] = ACTIONS(1631), - [sym_false] = ACTIONS(1631), - [sym_null] = ACTIONS(1631), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1633), - [anon_sym_R_DQUOTE] = ACTIONS(1635), - [anon_sym_LR_DQUOTE] = ACTIONS(1635), - [anon_sym_uR_DQUOTE] = ACTIONS(1635), - [anon_sym_UR_DQUOTE] = ACTIONS(1635), - [anon_sym_u8R_DQUOTE] = ACTIONS(1635), - [anon_sym_co_await] = ACTIONS(1637), - [anon_sym_new] = ACTIONS(1639), - [anon_sym_requires] = ACTIONS(1641), - [sym_this] = ACTIONS(1631), - [sym_nullptr] = ACTIONS(1631), + [ts_builtin_sym_end] = ACTIONS(3338), + [sym_identifier] = ACTIONS(3336), + [aux_sym_preproc_include_token1] = ACTIONS(3336), + [aux_sym_preproc_def_token1] = ACTIONS(3336), + [aux_sym_preproc_if_token1] = ACTIONS(3336), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3336), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3336), + [sym_preproc_directive] = ACTIONS(3336), + [anon_sym_LPAREN2] = ACTIONS(3338), + [anon_sym_BANG] = ACTIONS(3338), + [anon_sym_TILDE] = ACTIONS(3338), + [anon_sym_DASH] = ACTIONS(3336), + [anon_sym_PLUS] = ACTIONS(3336), + [anon_sym_STAR] = ACTIONS(3338), + [anon_sym_AMP_AMP] = ACTIONS(3338), + [anon_sym_AMP] = ACTIONS(3336), + [anon_sym_typedef] = ACTIONS(3336), + [anon_sym_extern] = ACTIONS(3336), + [anon_sym___attribute__] = ACTIONS(3336), + [anon_sym_COLON_COLON] = ACTIONS(3338), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3338), + [anon_sym___declspec] = ACTIONS(3336), + [anon_sym___based] = ACTIONS(3336), + [anon_sym___cdecl] = ACTIONS(3336), + [anon_sym___clrcall] = ACTIONS(3336), + [anon_sym___stdcall] = ACTIONS(3336), + [anon_sym___fastcall] = ACTIONS(3336), + [anon_sym___thiscall] = ACTIONS(3336), + [anon_sym___vectorcall] = ACTIONS(3336), + [anon_sym_LBRACE] = ACTIONS(3338), + [anon_sym_LBRACK] = ACTIONS(3336), + [anon_sym_static] = ACTIONS(3336), + [anon_sym_register] = ACTIONS(3336), + [anon_sym_inline] = ACTIONS(3336), + [anon_sym_thread_local] = ACTIONS(3336), + [anon_sym_const] = ACTIONS(3336), + [anon_sym_constexpr] = ACTIONS(3336), + [anon_sym_volatile] = ACTIONS(3336), + [anon_sym_restrict] = ACTIONS(3336), + [anon_sym___restrict__] = ACTIONS(3336), + [anon_sym__Atomic] = ACTIONS(3336), + [anon_sym__Noreturn] = ACTIONS(3336), + [anon_sym_noreturn] = ACTIONS(3336), + [anon_sym_mutable] = ACTIONS(3336), + [anon_sym_constinit] = ACTIONS(3336), + [anon_sym_consteval] = ACTIONS(3336), + [anon_sym_signed] = ACTIONS(3336), + [anon_sym_unsigned] = ACTIONS(3336), + [anon_sym_long] = ACTIONS(3336), + [anon_sym_short] = ACTIONS(3336), + [sym_primitive_type] = ACTIONS(3336), + [anon_sym_enum] = ACTIONS(3336), + [anon_sym_class] = ACTIONS(3336), + [anon_sym_struct] = ACTIONS(3336), + [anon_sym_union] = ACTIONS(3336), + [anon_sym_if] = ACTIONS(3336), + [anon_sym_switch] = ACTIONS(3336), + [anon_sym_case] = ACTIONS(3336), + [anon_sym_default] = ACTIONS(3336), + [anon_sym_while] = ACTIONS(3336), + [anon_sym_do] = ACTIONS(3336), + [anon_sym_for] = ACTIONS(3336), + [anon_sym_return] = ACTIONS(3336), + [anon_sym_break] = ACTIONS(3336), + [anon_sym_continue] = ACTIONS(3336), + [anon_sym_goto] = ACTIONS(3336), + [anon_sym_not] = ACTIONS(3336), + [anon_sym_compl] = ACTIONS(3336), + [anon_sym_DASH_DASH] = ACTIONS(3338), + [anon_sym_PLUS_PLUS] = ACTIONS(3338), + [anon_sym_sizeof] = ACTIONS(3336), + [anon_sym_offsetof] = ACTIONS(3336), + [anon_sym__Generic] = ACTIONS(3336), + [anon_sym_asm] = ACTIONS(3336), + [anon_sym___asm__] = ACTIONS(3336), + [sym_number_literal] = ACTIONS(3338), + [anon_sym_L_SQUOTE] = ACTIONS(3338), + [anon_sym_u_SQUOTE] = ACTIONS(3338), + [anon_sym_U_SQUOTE] = ACTIONS(3338), + [anon_sym_u8_SQUOTE] = ACTIONS(3338), + [anon_sym_SQUOTE] = ACTIONS(3338), + [anon_sym_L_DQUOTE] = ACTIONS(3338), + [anon_sym_u_DQUOTE] = ACTIONS(3338), + [anon_sym_U_DQUOTE] = ACTIONS(3338), + [anon_sym_u8_DQUOTE] = ACTIONS(3338), + [anon_sym_DQUOTE] = ACTIONS(3338), + [sym_true] = ACTIONS(3336), + [sym_false] = ACTIONS(3336), + [anon_sym_NULL] = ACTIONS(3336), + [anon_sym_nullptr] = ACTIONS(3336), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3336), + [anon_sym_decltype] = ACTIONS(3336), + [anon_sym_virtual] = ACTIONS(3336), + [anon_sym_explicit] = ACTIONS(3336), + [anon_sym_typename] = ACTIONS(3336), + [anon_sym_template] = ACTIONS(3336), + [anon_sym_operator] = ACTIONS(3336), + [anon_sym_try] = ACTIONS(3336), + [anon_sym_delete] = ACTIONS(3336), + [anon_sym_throw] = ACTIONS(3336), + [anon_sym_namespace] = ACTIONS(3336), + [anon_sym_using] = ACTIONS(3336), + [anon_sym_static_assert] = ACTIONS(3336), + [anon_sym_concept] = ACTIONS(3336), + [anon_sym_co_return] = ACTIONS(3336), + [anon_sym_co_yield] = ACTIONS(3336), + [anon_sym_R_DQUOTE] = ACTIONS(3338), + [anon_sym_LR_DQUOTE] = ACTIONS(3338), + [anon_sym_uR_DQUOTE] = ACTIONS(3338), + [anon_sym_UR_DQUOTE] = ACTIONS(3338), + [anon_sym_u8R_DQUOTE] = ACTIONS(3338), + [anon_sym_co_await] = ACTIONS(3336), + [anon_sym_new] = ACTIONS(3336), + [anon_sym_requires] = ACTIONS(3336), + [sym_this] = ACTIONS(3336), }, [1363] = { - [sym__expression] = STATE(3464), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2984), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2984), - [sym_call_expression] = STATE(2984), - [sym_field_expression] = STATE(2984), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2984), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_lambda_default_capture] = STATE(5941), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2984), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(3047), - [anon_sym_LPAREN2] = ACTIONS(3049), - [anon_sym_BANG] = ACTIONS(3053), - [anon_sym_TILDE] = ACTIONS(3053), - [anon_sym_DASH] = ACTIONS(3051), - [anon_sym_PLUS] = ACTIONS(3051), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(3422), - [anon_sym_COLON_COLON] = ACTIONS(3055), - [anon_sym_LBRACK] = ACTIONS(1539), - [anon_sym_RBRACK] = ACTIONS(3468), - [anon_sym_EQ] = ACTIONS(3426), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(3051), - [anon_sym_compl] = ACTIONS(3051), - [anon_sym_DASH_DASH] = ACTIONS(3057), - [anon_sym_PLUS_PLUS] = ACTIONS(3057), - [anon_sym_sizeof] = ACTIONS(3059), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(3061), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(3063), - [anon_sym_new] = ACTIONS(3065), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [ts_builtin_sym_end] = ACTIONS(3360), + [sym_identifier] = ACTIONS(3358), + [aux_sym_preproc_include_token1] = ACTIONS(3358), + [aux_sym_preproc_def_token1] = ACTIONS(3358), + [aux_sym_preproc_if_token1] = ACTIONS(3358), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3358), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3358), + [sym_preproc_directive] = ACTIONS(3358), + [anon_sym_LPAREN2] = ACTIONS(3360), + [anon_sym_BANG] = ACTIONS(3360), + [anon_sym_TILDE] = ACTIONS(3360), + [anon_sym_DASH] = ACTIONS(3358), + [anon_sym_PLUS] = ACTIONS(3358), + [anon_sym_STAR] = ACTIONS(3360), + [anon_sym_AMP_AMP] = ACTIONS(3360), + [anon_sym_AMP] = ACTIONS(3358), + [anon_sym_typedef] = ACTIONS(3358), + [anon_sym_extern] = ACTIONS(3358), + [anon_sym___attribute__] = ACTIONS(3358), + [anon_sym_COLON_COLON] = ACTIONS(3360), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3360), + [anon_sym___declspec] = ACTIONS(3358), + [anon_sym___based] = ACTIONS(3358), + [anon_sym___cdecl] = ACTIONS(3358), + [anon_sym___clrcall] = ACTIONS(3358), + [anon_sym___stdcall] = ACTIONS(3358), + [anon_sym___fastcall] = ACTIONS(3358), + [anon_sym___thiscall] = ACTIONS(3358), + [anon_sym___vectorcall] = ACTIONS(3358), + [anon_sym_LBRACE] = ACTIONS(3360), + [anon_sym_LBRACK] = ACTIONS(3358), + [anon_sym_static] = ACTIONS(3358), + [anon_sym_register] = ACTIONS(3358), + [anon_sym_inline] = ACTIONS(3358), + [anon_sym_thread_local] = ACTIONS(3358), + [anon_sym_const] = ACTIONS(3358), + [anon_sym_constexpr] = ACTIONS(3358), + [anon_sym_volatile] = ACTIONS(3358), + [anon_sym_restrict] = ACTIONS(3358), + [anon_sym___restrict__] = ACTIONS(3358), + [anon_sym__Atomic] = ACTIONS(3358), + [anon_sym__Noreturn] = ACTIONS(3358), + [anon_sym_noreturn] = ACTIONS(3358), + [anon_sym_mutable] = ACTIONS(3358), + [anon_sym_constinit] = ACTIONS(3358), + [anon_sym_consteval] = ACTIONS(3358), + [anon_sym_signed] = ACTIONS(3358), + [anon_sym_unsigned] = ACTIONS(3358), + [anon_sym_long] = ACTIONS(3358), + [anon_sym_short] = ACTIONS(3358), + [sym_primitive_type] = ACTIONS(3358), + [anon_sym_enum] = ACTIONS(3358), + [anon_sym_class] = ACTIONS(3358), + [anon_sym_struct] = ACTIONS(3358), + [anon_sym_union] = ACTIONS(3358), + [anon_sym_if] = ACTIONS(3358), + [anon_sym_switch] = ACTIONS(3358), + [anon_sym_case] = ACTIONS(3358), + [anon_sym_default] = ACTIONS(3358), + [anon_sym_while] = ACTIONS(3358), + [anon_sym_do] = ACTIONS(3358), + [anon_sym_for] = ACTIONS(3358), + [anon_sym_return] = ACTIONS(3358), + [anon_sym_break] = ACTIONS(3358), + [anon_sym_continue] = ACTIONS(3358), + [anon_sym_goto] = ACTIONS(3358), + [anon_sym_not] = ACTIONS(3358), + [anon_sym_compl] = ACTIONS(3358), + [anon_sym_DASH_DASH] = ACTIONS(3360), + [anon_sym_PLUS_PLUS] = ACTIONS(3360), + [anon_sym_sizeof] = ACTIONS(3358), + [anon_sym_offsetof] = ACTIONS(3358), + [anon_sym__Generic] = ACTIONS(3358), + [anon_sym_asm] = ACTIONS(3358), + [anon_sym___asm__] = ACTIONS(3358), + [sym_number_literal] = ACTIONS(3360), + [anon_sym_L_SQUOTE] = ACTIONS(3360), + [anon_sym_u_SQUOTE] = ACTIONS(3360), + [anon_sym_U_SQUOTE] = ACTIONS(3360), + [anon_sym_u8_SQUOTE] = ACTIONS(3360), + [anon_sym_SQUOTE] = ACTIONS(3360), + [anon_sym_L_DQUOTE] = ACTIONS(3360), + [anon_sym_u_DQUOTE] = ACTIONS(3360), + [anon_sym_U_DQUOTE] = ACTIONS(3360), + [anon_sym_u8_DQUOTE] = ACTIONS(3360), + [anon_sym_DQUOTE] = ACTIONS(3360), + [sym_true] = ACTIONS(3358), + [sym_false] = ACTIONS(3358), + [anon_sym_NULL] = ACTIONS(3358), + [anon_sym_nullptr] = ACTIONS(3358), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3358), + [anon_sym_decltype] = ACTIONS(3358), + [anon_sym_virtual] = ACTIONS(3358), + [anon_sym_explicit] = ACTIONS(3358), + [anon_sym_typename] = ACTIONS(3358), + [anon_sym_template] = ACTIONS(3358), + [anon_sym_operator] = ACTIONS(3358), + [anon_sym_try] = ACTIONS(3358), + [anon_sym_delete] = ACTIONS(3358), + [anon_sym_throw] = ACTIONS(3358), + [anon_sym_namespace] = ACTIONS(3358), + [anon_sym_using] = ACTIONS(3358), + [anon_sym_static_assert] = ACTIONS(3358), + [anon_sym_concept] = ACTIONS(3358), + [anon_sym_co_return] = ACTIONS(3358), + [anon_sym_co_yield] = ACTIONS(3358), + [anon_sym_R_DQUOTE] = ACTIONS(3360), + [anon_sym_LR_DQUOTE] = ACTIONS(3360), + [anon_sym_uR_DQUOTE] = ACTIONS(3360), + [anon_sym_UR_DQUOTE] = ACTIONS(3360), + [anon_sym_u8R_DQUOTE] = ACTIONS(3360), + [anon_sym_co_await] = ACTIONS(3358), + [anon_sym_new] = ACTIONS(3358), + [anon_sym_requires] = ACTIONS(3358), + [sym_this] = ACTIONS(3358), }, [1364] = { - [sym__expression] = STATE(3683), - [sym_conditional_expression] = STATE(3855), - [sym_assignment_expression] = STATE(3855), - [sym_pointer_expression] = STATE(2954), - [sym_unary_expression] = STATE(3855), - [sym_binary_expression] = STATE(3855), - [sym_update_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_subscript_expression] = STATE(2954), - [sym_call_expression] = STATE(2954), - [sym_field_expression] = STATE(2954), - [sym_compound_literal_expression] = STATE(3855), - [sym_parenthesized_expression] = STATE(2954), - [sym_char_literal] = STATE(3557), - [sym_concatenated_string] = STATE(3557), - [sym_string_literal] = STATE(2955), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5844), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3855), - [sym_raw_string_literal] = STATE(2955), - [sym_co_await_expression] = STATE(3855), - [sym_new_expression] = STATE(3855), - [sym_delete_expression] = STATE(3855), - [sym_requires_clause] = STATE(3855), - [sym_requires_expression] = STATE(3855), - [sym_lambda_expression] = STATE(3855), - [sym_lambda_capture_specifier] = STATE(4501), - [sym_fold_expression] = STATE(3855), - [sym_parameter_pack_expansion] = STATE(3855), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4570), - [sym_qualified_identifier] = STATE(2954), - [sym_qualified_type_identifier] = STATE(5844), - [sym_user_defined_literal] = STATE(3855), - [sym_identifier] = ACTIONS(3023), - [anon_sym_LPAREN2] = ACTIONS(3416), - [anon_sym_BANG] = ACTIONS(2412), - [anon_sym_TILDE] = ACTIONS(2412), - [anon_sym_DASH] = ACTIONS(2414), - [anon_sym_PLUS] = ACTIONS(2414), - [anon_sym_STAR] = ACTIONS(3416), - [anon_sym_AMP_AMP] = ACTIONS(3416), - [anon_sym_AMP] = ACTIONS(3418), - [anon_sym_LT] = ACTIONS(3416), - [anon_sym_COLON_COLON] = ACTIONS(2418), - [anon_sym_LBRACE] = ACTIONS(3416), - [anon_sym_LBRACK] = ACTIONS(3416), - [sym_primitive_type] = ACTIONS(1619), - [anon_sym_not] = ACTIONS(2414), - [anon_sym_compl] = ACTIONS(2414), - [anon_sym_DASH_DASH] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(2432), - [anon_sym_sizeof] = ACTIONS(2434), - [sym_number_literal] = ACTIONS(2436), - [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_L_DQUOTE] = ACTIONS(2440), - [anon_sym_u_DQUOTE] = ACTIONS(2440), - [anon_sym_U_DQUOTE] = ACTIONS(2440), - [anon_sym_u8_DQUOTE] = ACTIONS(2440), - [anon_sym_DQUOTE] = ACTIONS(2440), - [sym_true] = ACTIONS(2442), - [sym_false] = ACTIONS(2442), - [sym_null] = ACTIONS(2442), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(2452), - [anon_sym_R_DQUOTE] = ACTIONS(2454), - [anon_sym_LR_DQUOTE] = ACTIONS(2454), - [anon_sym_uR_DQUOTE] = ACTIONS(2454), - [anon_sym_UR_DQUOTE] = ACTIONS(2454), - [anon_sym_u8R_DQUOTE] = ACTIONS(2454), - [anon_sym_co_await] = ACTIONS(2456), - [anon_sym_new] = ACTIONS(2458), - [anon_sym_requires] = ACTIONS(2460), - [sym_this] = ACTIONS(2442), - [sym_nullptr] = ACTIONS(2442), + [ts_builtin_sym_end] = ACTIONS(3374), + [sym_identifier] = ACTIONS(3372), + [aux_sym_preproc_include_token1] = ACTIONS(3372), + [aux_sym_preproc_def_token1] = ACTIONS(3372), + [aux_sym_preproc_if_token1] = ACTIONS(3372), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3372), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3372), + [sym_preproc_directive] = ACTIONS(3372), + [anon_sym_LPAREN2] = ACTIONS(3374), + [anon_sym_BANG] = ACTIONS(3374), + [anon_sym_TILDE] = ACTIONS(3374), + [anon_sym_DASH] = ACTIONS(3372), + [anon_sym_PLUS] = ACTIONS(3372), + [anon_sym_STAR] = ACTIONS(3374), + [anon_sym_AMP_AMP] = ACTIONS(3374), + [anon_sym_AMP] = ACTIONS(3372), + [anon_sym_typedef] = ACTIONS(3372), + [anon_sym_extern] = ACTIONS(3372), + [anon_sym___attribute__] = ACTIONS(3372), + [anon_sym_COLON_COLON] = ACTIONS(3374), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3374), + [anon_sym___declspec] = ACTIONS(3372), + [anon_sym___based] = ACTIONS(3372), + [anon_sym___cdecl] = ACTIONS(3372), + [anon_sym___clrcall] = ACTIONS(3372), + [anon_sym___stdcall] = ACTIONS(3372), + [anon_sym___fastcall] = ACTIONS(3372), + [anon_sym___thiscall] = ACTIONS(3372), + [anon_sym___vectorcall] = ACTIONS(3372), + [anon_sym_LBRACE] = ACTIONS(3374), + [anon_sym_LBRACK] = ACTIONS(3372), + [anon_sym_static] = ACTIONS(3372), + [anon_sym_register] = ACTIONS(3372), + [anon_sym_inline] = ACTIONS(3372), + [anon_sym_thread_local] = ACTIONS(3372), + [anon_sym_const] = ACTIONS(3372), + [anon_sym_constexpr] = ACTIONS(3372), + [anon_sym_volatile] = ACTIONS(3372), + [anon_sym_restrict] = ACTIONS(3372), + [anon_sym___restrict__] = ACTIONS(3372), + [anon_sym__Atomic] = ACTIONS(3372), + [anon_sym__Noreturn] = ACTIONS(3372), + [anon_sym_noreturn] = ACTIONS(3372), + [anon_sym_mutable] = ACTIONS(3372), + [anon_sym_constinit] = ACTIONS(3372), + [anon_sym_consteval] = ACTIONS(3372), + [anon_sym_signed] = ACTIONS(3372), + [anon_sym_unsigned] = ACTIONS(3372), + [anon_sym_long] = ACTIONS(3372), + [anon_sym_short] = ACTIONS(3372), + [sym_primitive_type] = ACTIONS(3372), + [anon_sym_enum] = ACTIONS(3372), + [anon_sym_class] = ACTIONS(3372), + [anon_sym_struct] = ACTIONS(3372), + [anon_sym_union] = ACTIONS(3372), + [anon_sym_if] = ACTIONS(3372), + [anon_sym_switch] = ACTIONS(3372), + [anon_sym_case] = ACTIONS(3372), + [anon_sym_default] = ACTIONS(3372), + [anon_sym_while] = ACTIONS(3372), + [anon_sym_do] = ACTIONS(3372), + [anon_sym_for] = ACTIONS(3372), + [anon_sym_return] = ACTIONS(3372), + [anon_sym_break] = ACTIONS(3372), + [anon_sym_continue] = ACTIONS(3372), + [anon_sym_goto] = ACTIONS(3372), + [anon_sym_not] = ACTIONS(3372), + [anon_sym_compl] = ACTIONS(3372), + [anon_sym_DASH_DASH] = ACTIONS(3374), + [anon_sym_PLUS_PLUS] = ACTIONS(3374), + [anon_sym_sizeof] = ACTIONS(3372), + [anon_sym_offsetof] = ACTIONS(3372), + [anon_sym__Generic] = ACTIONS(3372), + [anon_sym_asm] = ACTIONS(3372), + [anon_sym___asm__] = ACTIONS(3372), + [sym_number_literal] = ACTIONS(3374), + [anon_sym_L_SQUOTE] = ACTIONS(3374), + [anon_sym_u_SQUOTE] = ACTIONS(3374), + [anon_sym_U_SQUOTE] = ACTIONS(3374), + [anon_sym_u8_SQUOTE] = ACTIONS(3374), + [anon_sym_SQUOTE] = ACTIONS(3374), + [anon_sym_L_DQUOTE] = ACTIONS(3374), + [anon_sym_u_DQUOTE] = ACTIONS(3374), + [anon_sym_U_DQUOTE] = ACTIONS(3374), + [anon_sym_u8_DQUOTE] = ACTIONS(3374), + [anon_sym_DQUOTE] = ACTIONS(3374), + [sym_true] = ACTIONS(3372), + [sym_false] = ACTIONS(3372), + [anon_sym_NULL] = ACTIONS(3372), + [anon_sym_nullptr] = ACTIONS(3372), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3372), + [anon_sym_decltype] = ACTIONS(3372), + [anon_sym_virtual] = ACTIONS(3372), + [anon_sym_explicit] = ACTIONS(3372), + [anon_sym_typename] = ACTIONS(3372), + [anon_sym_template] = ACTIONS(3372), + [anon_sym_operator] = ACTIONS(3372), + [anon_sym_try] = ACTIONS(3372), + [anon_sym_delete] = ACTIONS(3372), + [anon_sym_throw] = ACTIONS(3372), + [anon_sym_namespace] = ACTIONS(3372), + [anon_sym_using] = ACTIONS(3372), + [anon_sym_static_assert] = ACTIONS(3372), + [anon_sym_concept] = ACTIONS(3372), + [anon_sym_co_return] = ACTIONS(3372), + [anon_sym_co_yield] = ACTIONS(3372), + [anon_sym_R_DQUOTE] = ACTIONS(3374), + [anon_sym_LR_DQUOTE] = ACTIONS(3374), + [anon_sym_uR_DQUOTE] = ACTIONS(3374), + [anon_sym_UR_DQUOTE] = ACTIONS(3374), + [anon_sym_u8R_DQUOTE] = ACTIONS(3374), + [anon_sym_co_await] = ACTIONS(3372), + [anon_sym_new] = ACTIONS(3372), + [anon_sym_requires] = ACTIONS(3372), + [sym_this] = ACTIONS(3372), }, [1365] = { - [sym__expression] = STATE(3809), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_initializer_list] = STATE(6375), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2954), - [anon_sym_LPAREN2] = ACTIONS(984), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1489), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_default] = ACTIONS(3470), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(3472), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [ts_builtin_sym_end] = ACTIONS(3330), + [sym_identifier] = ACTIONS(3328), + [aux_sym_preproc_include_token1] = ACTIONS(3328), + [aux_sym_preproc_def_token1] = ACTIONS(3328), + [aux_sym_preproc_if_token1] = ACTIONS(3328), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3328), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3328), + [sym_preproc_directive] = ACTIONS(3328), + [anon_sym_LPAREN2] = ACTIONS(3330), + [anon_sym_BANG] = ACTIONS(3330), + [anon_sym_TILDE] = ACTIONS(3330), + [anon_sym_DASH] = ACTIONS(3328), + [anon_sym_PLUS] = ACTIONS(3328), + [anon_sym_STAR] = ACTIONS(3330), + [anon_sym_AMP_AMP] = ACTIONS(3330), + [anon_sym_AMP] = ACTIONS(3328), + [anon_sym_typedef] = ACTIONS(3328), + [anon_sym_extern] = ACTIONS(3328), + [anon_sym___attribute__] = ACTIONS(3328), + [anon_sym_COLON_COLON] = ACTIONS(3330), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3330), + [anon_sym___declspec] = ACTIONS(3328), + [anon_sym___based] = ACTIONS(3328), + [anon_sym___cdecl] = ACTIONS(3328), + [anon_sym___clrcall] = ACTIONS(3328), + [anon_sym___stdcall] = ACTIONS(3328), + [anon_sym___fastcall] = ACTIONS(3328), + [anon_sym___thiscall] = ACTIONS(3328), + [anon_sym___vectorcall] = ACTIONS(3328), + [anon_sym_LBRACE] = ACTIONS(3330), + [anon_sym_LBRACK] = ACTIONS(3328), + [anon_sym_static] = ACTIONS(3328), + [anon_sym_register] = ACTIONS(3328), + [anon_sym_inline] = ACTIONS(3328), + [anon_sym_thread_local] = ACTIONS(3328), + [anon_sym_const] = ACTIONS(3328), + [anon_sym_constexpr] = ACTIONS(3328), + [anon_sym_volatile] = ACTIONS(3328), + [anon_sym_restrict] = ACTIONS(3328), + [anon_sym___restrict__] = ACTIONS(3328), + [anon_sym__Atomic] = ACTIONS(3328), + [anon_sym__Noreturn] = ACTIONS(3328), + [anon_sym_noreturn] = ACTIONS(3328), + [anon_sym_mutable] = ACTIONS(3328), + [anon_sym_constinit] = ACTIONS(3328), + [anon_sym_consteval] = ACTIONS(3328), + [anon_sym_signed] = ACTIONS(3328), + [anon_sym_unsigned] = ACTIONS(3328), + [anon_sym_long] = ACTIONS(3328), + [anon_sym_short] = ACTIONS(3328), + [sym_primitive_type] = ACTIONS(3328), + [anon_sym_enum] = ACTIONS(3328), + [anon_sym_class] = ACTIONS(3328), + [anon_sym_struct] = ACTIONS(3328), + [anon_sym_union] = ACTIONS(3328), + [anon_sym_if] = ACTIONS(3328), + [anon_sym_switch] = ACTIONS(3328), + [anon_sym_case] = ACTIONS(3328), + [anon_sym_default] = ACTIONS(3328), + [anon_sym_while] = ACTIONS(3328), + [anon_sym_do] = ACTIONS(3328), + [anon_sym_for] = ACTIONS(3328), + [anon_sym_return] = ACTIONS(3328), + [anon_sym_break] = ACTIONS(3328), + [anon_sym_continue] = ACTIONS(3328), + [anon_sym_goto] = ACTIONS(3328), + [anon_sym_not] = ACTIONS(3328), + [anon_sym_compl] = ACTIONS(3328), + [anon_sym_DASH_DASH] = ACTIONS(3330), + [anon_sym_PLUS_PLUS] = ACTIONS(3330), + [anon_sym_sizeof] = ACTIONS(3328), + [anon_sym_offsetof] = ACTIONS(3328), + [anon_sym__Generic] = ACTIONS(3328), + [anon_sym_asm] = ACTIONS(3328), + [anon_sym___asm__] = ACTIONS(3328), + [sym_number_literal] = ACTIONS(3330), + [anon_sym_L_SQUOTE] = ACTIONS(3330), + [anon_sym_u_SQUOTE] = ACTIONS(3330), + [anon_sym_U_SQUOTE] = ACTIONS(3330), + [anon_sym_u8_SQUOTE] = ACTIONS(3330), + [anon_sym_SQUOTE] = ACTIONS(3330), + [anon_sym_L_DQUOTE] = ACTIONS(3330), + [anon_sym_u_DQUOTE] = ACTIONS(3330), + [anon_sym_U_DQUOTE] = ACTIONS(3330), + [anon_sym_u8_DQUOTE] = ACTIONS(3330), + [anon_sym_DQUOTE] = ACTIONS(3330), + [sym_true] = ACTIONS(3328), + [sym_false] = ACTIONS(3328), + [anon_sym_NULL] = ACTIONS(3328), + [anon_sym_nullptr] = ACTIONS(3328), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3328), + [anon_sym_decltype] = ACTIONS(3328), + [anon_sym_virtual] = ACTIONS(3328), + [anon_sym_explicit] = ACTIONS(3328), + [anon_sym_typename] = ACTIONS(3328), + [anon_sym_template] = ACTIONS(3328), + [anon_sym_operator] = ACTIONS(3328), + [anon_sym_try] = ACTIONS(3328), + [anon_sym_delete] = ACTIONS(3328), + [anon_sym_throw] = ACTIONS(3328), + [anon_sym_namespace] = ACTIONS(3328), + [anon_sym_using] = ACTIONS(3328), + [anon_sym_static_assert] = ACTIONS(3328), + [anon_sym_concept] = ACTIONS(3328), + [anon_sym_co_return] = ACTIONS(3328), + [anon_sym_co_yield] = ACTIONS(3328), + [anon_sym_R_DQUOTE] = ACTIONS(3330), + [anon_sym_LR_DQUOTE] = ACTIONS(3330), + [anon_sym_uR_DQUOTE] = ACTIONS(3330), + [anon_sym_UR_DQUOTE] = ACTIONS(3330), + [anon_sym_u8R_DQUOTE] = ACTIONS(3330), + [anon_sym_co_await] = ACTIONS(3328), + [anon_sym_new] = ACTIONS(3328), + [anon_sym_requires] = ACTIONS(3328), + [sym_this] = ACTIONS(3328), }, [1366] = { - [sym__expression] = STATE(2956), - [sym_conditional_expression] = STATE(3035), - [sym_assignment_expression] = STATE(3035), - [sym_pointer_expression] = STATE(2713), - [sym_unary_expression] = STATE(3035), - [sym_binary_expression] = STATE(3035), - [sym_update_expression] = STATE(3035), - [sym_cast_expression] = STATE(3035), - [sym_sizeof_expression] = STATE(3035), - [sym_subscript_expression] = STATE(2713), - [sym_call_expression] = STATE(2713), - [sym_field_expression] = STATE(2713), - [sym_compound_literal_expression] = STATE(3035), - [sym_parenthesized_expression] = STATE(2713), - [sym_char_literal] = STATE(3013), - [sym_concatenated_string] = STATE(3013), - [sym_string_literal] = STATE(1900), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5990), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3035), - [sym_raw_string_literal] = STATE(1900), - [sym_co_await_expression] = STATE(3035), - [sym_new_expression] = STATE(3035), - [sym_delete_expression] = STATE(3035), - [sym_requires_clause] = STATE(3035), - [sym_requires_expression] = STATE(3035), - [sym_lambda_expression] = STATE(3035), - [sym_lambda_capture_specifier] = STATE(4465), - [sym_fold_expression] = STATE(3035), - [sym_parameter_pack_expansion] = STATE(3035), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4584), - [sym_qualified_identifier] = STATE(2713), - [sym_qualified_type_identifier] = STATE(5990), - [sym_user_defined_literal] = STATE(3035), - [sym_identifier] = ACTIONS(1643), - [anon_sym_LPAREN2] = ACTIONS(3416), - [anon_sym_BANG] = ACTIONS(1441), - [anon_sym_TILDE] = ACTIONS(1441), - [anon_sym_DASH] = ACTIONS(1443), - [anon_sym_PLUS] = ACTIONS(1443), - [anon_sym_STAR] = ACTIONS(3416), - [anon_sym_AMP_AMP] = ACTIONS(3416), - [anon_sym_AMP] = ACTIONS(3418), - [anon_sym_LT] = ACTIONS(3416), - [anon_sym_COLON_COLON] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(3416), - [anon_sym_LBRACK] = ACTIONS(3416), - [sym_primitive_type] = ACTIONS(1581), - [anon_sym_not] = ACTIONS(1443), - [anon_sym_compl] = ACTIONS(1443), - [anon_sym_DASH_DASH] = ACTIONS(1459), - [anon_sym_PLUS_PLUS] = ACTIONS(1459), - [anon_sym_sizeof] = ACTIONS(1461), - [sym_number_literal] = ACTIONS(1463), - [anon_sym_L_SQUOTE] = ACTIONS(1465), - [anon_sym_u_SQUOTE] = ACTIONS(1465), - [anon_sym_U_SQUOTE] = ACTIONS(1465), - [anon_sym_u8_SQUOTE] = ACTIONS(1465), - [anon_sym_SQUOTE] = ACTIONS(1465), - [anon_sym_L_DQUOTE] = ACTIONS(1467), - [anon_sym_u_DQUOTE] = ACTIONS(1467), - [anon_sym_U_DQUOTE] = ACTIONS(1467), - [anon_sym_u8_DQUOTE] = ACTIONS(1467), - [anon_sym_DQUOTE] = ACTIONS(1467), - [sym_true] = ACTIONS(1469), - [sym_false] = ACTIONS(1469), - [sym_null] = ACTIONS(1469), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1473), - [anon_sym_R_DQUOTE] = ACTIONS(1475), - [anon_sym_LR_DQUOTE] = ACTIONS(1475), - [anon_sym_uR_DQUOTE] = ACTIONS(1475), - [anon_sym_UR_DQUOTE] = ACTIONS(1475), - [anon_sym_u8R_DQUOTE] = ACTIONS(1475), - [anon_sym_co_await] = ACTIONS(1477), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_requires] = ACTIONS(1481), - [sym_this] = ACTIONS(1469), - [sym_nullptr] = ACTIONS(1469), + [ts_builtin_sym_end] = ACTIONS(3236), + [sym_identifier] = ACTIONS(3234), + [aux_sym_preproc_include_token1] = ACTIONS(3234), + [aux_sym_preproc_def_token1] = ACTIONS(3234), + [aux_sym_preproc_if_token1] = ACTIONS(3234), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3234), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3234), + [sym_preproc_directive] = ACTIONS(3234), + [anon_sym_LPAREN2] = ACTIONS(3236), + [anon_sym_BANG] = ACTIONS(3236), + [anon_sym_TILDE] = ACTIONS(3236), + [anon_sym_DASH] = ACTIONS(3234), + [anon_sym_PLUS] = ACTIONS(3234), + [anon_sym_STAR] = ACTIONS(3236), + [anon_sym_AMP_AMP] = ACTIONS(3236), + [anon_sym_AMP] = ACTIONS(3234), + [anon_sym_typedef] = ACTIONS(3234), + [anon_sym_extern] = ACTIONS(3234), + [anon_sym___attribute__] = ACTIONS(3234), + [anon_sym_COLON_COLON] = ACTIONS(3236), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3236), + [anon_sym___declspec] = ACTIONS(3234), + [anon_sym___based] = ACTIONS(3234), + [anon_sym___cdecl] = ACTIONS(3234), + [anon_sym___clrcall] = ACTIONS(3234), + [anon_sym___stdcall] = ACTIONS(3234), + [anon_sym___fastcall] = ACTIONS(3234), + [anon_sym___thiscall] = ACTIONS(3234), + [anon_sym___vectorcall] = ACTIONS(3234), + [anon_sym_LBRACE] = ACTIONS(3236), + [anon_sym_LBRACK] = ACTIONS(3234), + [anon_sym_static] = ACTIONS(3234), + [anon_sym_register] = ACTIONS(3234), + [anon_sym_inline] = ACTIONS(3234), + [anon_sym_thread_local] = ACTIONS(3234), + [anon_sym_const] = ACTIONS(3234), + [anon_sym_constexpr] = ACTIONS(3234), + [anon_sym_volatile] = ACTIONS(3234), + [anon_sym_restrict] = ACTIONS(3234), + [anon_sym___restrict__] = ACTIONS(3234), + [anon_sym__Atomic] = ACTIONS(3234), + [anon_sym__Noreturn] = ACTIONS(3234), + [anon_sym_noreturn] = ACTIONS(3234), + [anon_sym_mutable] = ACTIONS(3234), + [anon_sym_constinit] = ACTIONS(3234), + [anon_sym_consteval] = ACTIONS(3234), + [anon_sym_signed] = ACTIONS(3234), + [anon_sym_unsigned] = ACTIONS(3234), + [anon_sym_long] = ACTIONS(3234), + [anon_sym_short] = ACTIONS(3234), + [sym_primitive_type] = ACTIONS(3234), + [anon_sym_enum] = ACTIONS(3234), + [anon_sym_class] = ACTIONS(3234), + [anon_sym_struct] = ACTIONS(3234), + [anon_sym_union] = ACTIONS(3234), + [anon_sym_if] = ACTIONS(3234), + [anon_sym_switch] = ACTIONS(3234), + [anon_sym_case] = ACTIONS(3234), + [anon_sym_default] = ACTIONS(3234), + [anon_sym_while] = ACTIONS(3234), + [anon_sym_do] = ACTIONS(3234), + [anon_sym_for] = ACTIONS(3234), + [anon_sym_return] = ACTIONS(3234), + [anon_sym_break] = ACTIONS(3234), + [anon_sym_continue] = ACTIONS(3234), + [anon_sym_goto] = ACTIONS(3234), + [anon_sym_not] = ACTIONS(3234), + [anon_sym_compl] = ACTIONS(3234), + [anon_sym_DASH_DASH] = ACTIONS(3236), + [anon_sym_PLUS_PLUS] = ACTIONS(3236), + [anon_sym_sizeof] = ACTIONS(3234), + [anon_sym_offsetof] = ACTIONS(3234), + [anon_sym__Generic] = ACTIONS(3234), + [anon_sym_asm] = ACTIONS(3234), + [anon_sym___asm__] = ACTIONS(3234), + [sym_number_literal] = ACTIONS(3236), + [anon_sym_L_SQUOTE] = ACTIONS(3236), + [anon_sym_u_SQUOTE] = ACTIONS(3236), + [anon_sym_U_SQUOTE] = ACTIONS(3236), + [anon_sym_u8_SQUOTE] = ACTIONS(3236), + [anon_sym_SQUOTE] = ACTIONS(3236), + [anon_sym_L_DQUOTE] = ACTIONS(3236), + [anon_sym_u_DQUOTE] = ACTIONS(3236), + [anon_sym_U_DQUOTE] = ACTIONS(3236), + [anon_sym_u8_DQUOTE] = ACTIONS(3236), + [anon_sym_DQUOTE] = ACTIONS(3236), + [sym_true] = ACTIONS(3234), + [sym_false] = ACTIONS(3234), + [anon_sym_NULL] = ACTIONS(3234), + [anon_sym_nullptr] = ACTIONS(3234), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3234), + [anon_sym_decltype] = ACTIONS(3234), + [anon_sym_virtual] = ACTIONS(3234), + [anon_sym_explicit] = ACTIONS(3234), + [anon_sym_typename] = ACTIONS(3234), + [anon_sym_template] = ACTIONS(3234), + [anon_sym_operator] = ACTIONS(3234), + [anon_sym_try] = ACTIONS(3234), + [anon_sym_delete] = ACTIONS(3234), + [anon_sym_throw] = ACTIONS(3234), + [anon_sym_namespace] = ACTIONS(3234), + [anon_sym_using] = ACTIONS(3234), + [anon_sym_static_assert] = ACTIONS(3234), + [anon_sym_concept] = ACTIONS(3234), + [anon_sym_co_return] = ACTIONS(3234), + [anon_sym_co_yield] = ACTIONS(3234), + [anon_sym_R_DQUOTE] = ACTIONS(3236), + [anon_sym_LR_DQUOTE] = ACTIONS(3236), + [anon_sym_uR_DQUOTE] = ACTIONS(3236), + [anon_sym_UR_DQUOTE] = ACTIONS(3236), + [anon_sym_u8R_DQUOTE] = ACTIONS(3236), + [anon_sym_co_await] = ACTIONS(3234), + [anon_sym_new] = ACTIONS(3234), + [anon_sym_requires] = ACTIONS(3234), + [sym_this] = ACTIONS(3234), }, [1367] = { - [sym__expression] = STATE(2621), - [sym_conditional_expression] = STATE(2786), - [sym_assignment_expression] = STATE(2786), - [sym_pointer_expression] = STATE(2784), - [sym_unary_expression] = STATE(2786), - [sym_binary_expression] = STATE(2786), - [sym_update_expression] = STATE(2786), - [sym_cast_expression] = STATE(2786), - [sym_sizeof_expression] = STATE(2786), - [sym_subscript_expression] = STATE(2784), - [sym_call_expression] = STATE(2784), - [sym_field_expression] = STATE(2784), - [sym_compound_literal_expression] = STATE(2786), - [sym_parenthesized_expression] = STATE(2784), - [sym_char_literal] = STATE(2651), - [sym_concatenated_string] = STATE(2651), - [sym_string_literal] = STATE(1840), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5891), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(2786), - [sym_raw_string_literal] = STATE(1840), - [sym_co_await_expression] = STATE(2786), - [sym_new_expression] = STATE(2786), - [sym_delete_expression] = STATE(2786), - [sym_requires_clause] = STATE(2786), - [sym_requires_expression] = STATE(2786), - [sym_lambda_expression] = STATE(2786), - [sym_lambda_capture_specifier] = STATE(4484), - [sym_fold_expression] = STATE(2786), - [sym_parameter_pack_expansion] = STATE(2786), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4584), - [sym_qualified_identifier] = STATE(2784), - [sym_qualified_type_identifier] = STATE(5891), - [sym_user_defined_literal] = STATE(2786), - [sym_identifier] = ACTIONS(1567), - [anon_sym_LPAREN2] = ACTIONS(3416), - [anon_sym_BANG] = ACTIONS(1573), - [anon_sym_TILDE] = ACTIONS(1573), - [anon_sym_DASH] = ACTIONS(1571), - [anon_sym_PLUS] = ACTIONS(1571), - [anon_sym_STAR] = ACTIONS(3416), - [anon_sym_AMP_AMP] = ACTIONS(3416), - [anon_sym_AMP] = ACTIONS(3418), - [anon_sym_LT] = ACTIONS(3416), - [anon_sym_COLON_COLON] = ACTIONS(1577), - [anon_sym_LBRACE] = ACTIONS(3416), - [anon_sym_LBRACK] = ACTIONS(3416), - [sym_primitive_type] = ACTIONS(1581), - [anon_sym_not] = ACTIONS(1571), - [anon_sym_compl] = ACTIONS(1571), - [anon_sym_DASH_DASH] = ACTIONS(1583), - [anon_sym_PLUS_PLUS] = ACTIONS(1583), - [anon_sym_sizeof] = ACTIONS(1585), - [sym_number_literal] = ACTIONS(1587), - [anon_sym_L_SQUOTE] = ACTIONS(1589), - [anon_sym_u_SQUOTE] = ACTIONS(1589), - [anon_sym_U_SQUOTE] = ACTIONS(1589), - [anon_sym_u8_SQUOTE] = ACTIONS(1589), - [anon_sym_SQUOTE] = ACTIONS(1589), - [anon_sym_L_DQUOTE] = ACTIONS(1591), - [anon_sym_u_DQUOTE] = ACTIONS(1591), - [anon_sym_U_DQUOTE] = ACTIONS(1591), - [anon_sym_u8_DQUOTE] = ACTIONS(1591), - [anon_sym_DQUOTE] = ACTIONS(1591), - [sym_true] = ACTIONS(1593), - [sym_false] = ACTIONS(1593), - [sym_null] = ACTIONS(1593), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1595), - [anon_sym_R_DQUOTE] = ACTIONS(1597), - [anon_sym_LR_DQUOTE] = ACTIONS(1597), - [anon_sym_uR_DQUOTE] = ACTIONS(1597), - [anon_sym_UR_DQUOTE] = ACTIONS(1597), - [anon_sym_u8R_DQUOTE] = ACTIONS(1597), - [anon_sym_co_await] = ACTIONS(1599), - [anon_sym_new] = ACTIONS(1601), - [anon_sym_requires] = ACTIONS(1603), - [sym_this] = ACTIONS(1593), - [sym_nullptr] = ACTIONS(1593), + [ts_builtin_sym_end] = ACTIONS(3324), + [sym_identifier] = ACTIONS(3322), + [aux_sym_preproc_include_token1] = ACTIONS(3322), + [aux_sym_preproc_def_token1] = ACTIONS(3322), + [aux_sym_preproc_if_token1] = ACTIONS(3322), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3322), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3322), + [sym_preproc_directive] = ACTIONS(3322), + [anon_sym_LPAREN2] = ACTIONS(3324), + [anon_sym_BANG] = ACTIONS(3324), + [anon_sym_TILDE] = ACTIONS(3324), + [anon_sym_DASH] = ACTIONS(3322), + [anon_sym_PLUS] = ACTIONS(3322), + [anon_sym_STAR] = ACTIONS(3324), + [anon_sym_AMP_AMP] = ACTIONS(3324), + [anon_sym_AMP] = ACTIONS(3322), + [anon_sym_typedef] = ACTIONS(3322), + [anon_sym_extern] = ACTIONS(3322), + [anon_sym___attribute__] = ACTIONS(3322), + [anon_sym_COLON_COLON] = ACTIONS(3324), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3324), + [anon_sym___declspec] = ACTIONS(3322), + [anon_sym___based] = ACTIONS(3322), + [anon_sym___cdecl] = ACTIONS(3322), + [anon_sym___clrcall] = ACTIONS(3322), + [anon_sym___stdcall] = ACTIONS(3322), + [anon_sym___fastcall] = ACTIONS(3322), + [anon_sym___thiscall] = ACTIONS(3322), + [anon_sym___vectorcall] = ACTIONS(3322), + [anon_sym_LBRACE] = ACTIONS(3324), + [anon_sym_LBRACK] = ACTIONS(3322), + [anon_sym_static] = ACTIONS(3322), + [anon_sym_register] = ACTIONS(3322), + [anon_sym_inline] = ACTIONS(3322), + [anon_sym_thread_local] = ACTIONS(3322), + [anon_sym_const] = ACTIONS(3322), + [anon_sym_constexpr] = ACTIONS(3322), + [anon_sym_volatile] = ACTIONS(3322), + [anon_sym_restrict] = ACTIONS(3322), + [anon_sym___restrict__] = ACTIONS(3322), + [anon_sym__Atomic] = ACTIONS(3322), + [anon_sym__Noreturn] = ACTIONS(3322), + [anon_sym_noreturn] = ACTIONS(3322), + [anon_sym_mutable] = ACTIONS(3322), + [anon_sym_constinit] = ACTIONS(3322), + [anon_sym_consteval] = ACTIONS(3322), + [anon_sym_signed] = ACTIONS(3322), + [anon_sym_unsigned] = ACTIONS(3322), + [anon_sym_long] = ACTIONS(3322), + [anon_sym_short] = ACTIONS(3322), + [sym_primitive_type] = ACTIONS(3322), + [anon_sym_enum] = ACTIONS(3322), + [anon_sym_class] = ACTIONS(3322), + [anon_sym_struct] = ACTIONS(3322), + [anon_sym_union] = ACTIONS(3322), + [anon_sym_if] = ACTIONS(3322), + [anon_sym_switch] = ACTIONS(3322), + [anon_sym_case] = ACTIONS(3322), + [anon_sym_default] = ACTIONS(3322), + [anon_sym_while] = ACTIONS(3322), + [anon_sym_do] = ACTIONS(3322), + [anon_sym_for] = ACTIONS(3322), + [anon_sym_return] = ACTIONS(3322), + [anon_sym_break] = ACTIONS(3322), + [anon_sym_continue] = ACTIONS(3322), + [anon_sym_goto] = ACTIONS(3322), + [anon_sym_not] = ACTIONS(3322), + [anon_sym_compl] = ACTIONS(3322), + [anon_sym_DASH_DASH] = ACTIONS(3324), + [anon_sym_PLUS_PLUS] = ACTIONS(3324), + [anon_sym_sizeof] = ACTIONS(3322), + [anon_sym_offsetof] = ACTIONS(3322), + [anon_sym__Generic] = ACTIONS(3322), + [anon_sym_asm] = ACTIONS(3322), + [anon_sym___asm__] = ACTIONS(3322), + [sym_number_literal] = ACTIONS(3324), + [anon_sym_L_SQUOTE] = ACTIONS(3324), + [anon_sym_u_SQUOTE] = ACTIONS(3324), + [anon_sym_U_SQUOTE] = ACTIONS(3324), + [anon_sym_u8_SQUOTE] = ACTIONS(3324), + [anon_sym_SQUOTE] = ACTIONS(3324), + [anon_sym_L_DQUOTE] = ACTIONS(3324), + [anon_sym_u_DQUOTE] = ACTIONS(3324), + [anon_sym_U_DQUOTE] = ACTIONS(3324), + [anon_sym_u8_DQUOTE] = ACTIONS(3324), + [anon_sym_DQUOTE] = ACTIONS(3324), + [sym_true] = ACTIONS(3322), + [sym_false] = ACTIONS(3322), + [anon_sym_NULL] = ACTIONS(3322), + [anon_sym_nullptr] = ACTIONS(3322), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3322), + [anon_sym_decltype] = ACTIONS(3322), + [anon_sym_virtual] = ACTIONS(3322), + [anon_sym_explicit] = ACTIONS(3322), + [anon_sym_typename] = ACTIONS(3322), + [anon_sym_template] = ACTIONS(3322), + [anon_sym_operator] = ACTIONS(3322), + [anon_sym_try] = ACTIONS(3322), + [anon_sym_delete] = ACTIONS(3322), + [anon_sym_throw] = ACTIONS(3322), + [anon_sym_namespace] = ACTIONS(3322), + [anon_sym_using] = ACTIONS(3322), + [anon_sym_static_assert] = ACTIONS(3322), + [anon_sym_concept] = ACTIONS(3322), + [anon_sym_co_return] = ACTIONS(3322), + [anon_sym_co_yield] = ACTIONS(3322), + [anon_sym_R_DQUOTE] = ACTIONS(3324), + [anon_sym_LR_DQUOTE] = ACTIONS(3324), + [anon_sym_uR_DQUOTE] = ACTIONS(3324), + [anon_sym_UR_DQUOTE] = ACTIONS(3324), + [anon_sym_u8R_DQUOTE] = ACTIONS(3324), + [anon_sym_co_await] = ACTIONS(3322), + [anon_sym_new] = ACTIONS(3322), + [anon_sym_requires] = ACTIONS(3322), + [sym_this] = ACTIONS(3322), }, [1368] = { - [sym__expression] = STATE(3464), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2984), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2984), - [sym_call_expression] = STATE(2984), - [sym_field_expression] = STATE(2984), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2984), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_lambda_default_capture] = STATE(5941), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2984), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(3047), - [anon_sym_LPAREN2] = ACTIONS(3049), - [anon_sym_BANG] = ACTIONS(3053), - [anon_sym_TILDE] = ACTIONS(3053), - [anon_sym_DASH] = ACTIONS(3051), - [anon_sym_PLUS] = ACTIONS(3051), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(3422), - [anon_sym_COLON_COLON] = ACTIONS(3055), - [anon_sym_LBRACK] = ACTIONS(1539), - [anon_sym_RBRACK] = ACTIONS(3474), - [anon_sym_EQ] = ACTIONS(3426), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(3051), - [anon_sym_compl] = ACTIONS(3051), - [anon_sym_DASH_DASH] = ACTIONS(3057), - [anon_sym_PLUS_PLUS] = ACTIONS(3057), - [anon_sym_sizeof] = ACTIONS(3059), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(3061), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(3063), - [anon_sym_new] = ACTIONS(3065), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [ts_builtin_sym_end] = ACTIONS(3411), + [sym_identifier] = ACTIONS(3409), + [aux_sym_preproc_include_token1] = ACTIONS(3409), + [aux_sym_preproc_def_token1] = ACTIONS(3409), + [aux_sym_preproc_if_token1] = ACTIONS(3409), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3409), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3409), + [sym_preproc_directive] = ACTIONS(3409), + [anon_sym_LPAREN2] = ACTIONS(3411), + [anon_sym_BANG] = ACTIONS(3411), + [anon_sym_TILDE] = ACTIONS(3411), + [anon_sym_DASH] = ACTIONS(3409), + [anon_sym_PLUS] = ACTIONS(3409), + [anon_sym_STAR] = ACTIONS(3411), + [anon_sym_AMP_AMP] = ACTIONS(3411), + [anon_sym_AMP] = ACTIONS(3409), + [anon_sym_typedef] = ACTIONS(3409), + [anon_sym_extern] = ACTIONS(3409), + [anon_sym___attribute__] = ACTIONS(3409), + [anon_sym_COLON_COLON] = ACTIONS(3411), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3411), + [anon_sym___declspec] = ACTIONS(3409), + [anon_sym___based] = ACTIONS(3409), + [anon_sym___cdecl] = ACTIONS(3409), + [anon_sym___clrcall] = ACTIONS(3409), + [anon_sym___stdcall] = ACTIONS(3409), + [anon_sym___fastcall] = ACTIONS(3409), + [anon_sym___thiscall] = ACTIONS(3409), + [anon_sym___vectorcall] = ACTIONS(3409), + [anon_sym_LBRACE] = ACTIONS(3411), + [anon_sym_LBRACK] = ACTIONS(3409), + [anon_sym_static] = ACTIONS(3409), + [anon_sym_register] = ACTIONS(3409), + [anon_sym_inline] = ACTIONS(3409), + [anon_sym_thread_local] = ACTIONS(3409), + [anon_sym_const] = ACTIONS(3409), + [anon_sym_constexpr] = ACTIONS(3409), + [anon_sym_volatile] = ACTIONS(3409), + [anon_sym_restrict] = ACTIONS(3409), + [anon_sym___restrict__] = ACTIONS(3409), + [anon_sym__Atomic] = ACTIONS(3409), + [anon_sym__Noreturn] = ACTIONS(3409), + [anon_sym_noreturn] = ACTIONS(3409), + [anon_sym_mutable] = ACTIONS(3409), + [anon_sym_constinit] = ACTIONS(3409), + [anon_sym_consteval] = ACTIONS(3409), + [anon_sym_signed] = ACTIONS(3409), + [anon_sym_unsigned] = ACTIONS(3409), + [anon_sym_long] = ACTIONS(3409), + [anon_sym_short] = ACTIONS(3409), + [sym_primitive_type] = ACTIONS(3409), + [anon_sym_enum] = ACTIONS(3409), + [anon_sym_class] = ACTIONS(3409), + [anon_sym_struct] = ACTIONS(3409), + [anon_sym_union] = ACTIONS(3409), + [anon_sym_if] = ACTIONS(3409), + [anon_sym_switch] = ACTIONS(3409), + [anon_sym_case] = ACTIONS(3409), + [anon_sym_default] = ACTIONS(3409), + [anon_sym_while] = ACTIONS(3409), + [anon_sym_do] = ACTIONS(3409), + [anon_sym_for] = ACTIONS(3409), + [anon_sym_return] = ACTIONS(3409), + [anon_sym_break] = ACTIONS(3409), + [anon_sym_continue] = ACTIONS(3409), + [anon_sym_goto] = ACTIONS(3409), + [anon_sym_not] = ACTIONS(3409), + [anon_sym_compl] = ACTIONS(3409), + [anon_sym_DASH_DASH] = ACTIONS(3411), + [anon_sym_PLUS_PLUS] = ACTIONS(3411), + [anon_sym_sizeof] = ACTIONS(3409), + [anon_sym_offsetof] = ACTIONS(3409), + [anon_sym__Generic] = ACTIONS(3409), + [anon_sym_asm] = ACTIONS(3409), + [anon_sym___asm__] = ACTIONS(3409), + [sym_number_literal] = ACTIONS(3411), + [anon_sym_L_SQUOTE] = ACTIONS(3411), + [anon_sym_u_SQUOTE] = ACTIONS(3411), + [anon_sym_U_SQUOTE] = ACTIONS(3411), + [anon_sym_u8_SQUOTE] = ACTIONS(3411), + [anon_sym_SQUOTE] = ACTIONS(3411), + [anon_sym_L_DQUOTE] = ACTIONS(3411), + [anon_sym_u_DQUOTE] = ACTIONS(3411), + [anon_sym_U_DQUOTE] = ACTIONS(3411), + [anon_sym_u8_DQUOTE] = ACTIONS(3411), + [anon_sym_DQUOTE] = ACTIONS(3411), + [sym_true] = ACTIONS(3409), + [sym_false] = ACTIONS(3409), + [anon_sym_NULL] = ACTIONS(3409), + [anon_sym_nullptr] = ACTIONS(3409), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3409), + [anon_sym_decltype] = ACTIONS(3409), + [anon_sym_virtual] = ACTIONS(3409), + [anon_sym_explicit] = ACTIONS(3409), + [anon_sym_typename] = ACTIONS(3409), + [anon_sym_template] = ACTIONS(3409), + [anon_sym_operator] = ACTIONS(3409), + [anon_sym_try] = ACTIONS(3409), + [anon_sym_delete] = ACTIONS(3409), + [anon_sym_throw] = ACTIONS(3409), + [anon_sym_namespace] = ACTIONS(3409), + [anon_sym_using] = ACTIONS(3409), + [anon_sym_static_assert] = ACTIONS(3409), + [anon_sym_concept] = ACTIONS(3409), + [anon_sym_co_return] = ACTIONS(3409), + [anon_sym_co_yield] = ACTIONS(3409), + [anon_sym_R_DQUOTE] = ACTIONS(3411), + [anon_sym_LR_DQUOTE] = ACTIONS(3411), + [anon_sym_uR_DQUOTE] = ACTIONS(3411), + [anon_sym_UR_DQUOTE] = ACTIONS(3411), + [anon_sym_u8R_DQUOTE] = ACTIONS(3411), + [anon_sym_co_await] = ACTIONS(3409), + [anon_sym_new] = ACTIONS(3409), + [anon_sym_requires] = ACTIONS(3409), + [sym_this] = ACTIONS(3409), }, [1369] = { - [sym__expression] = STATE(3464), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2984), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2984), - [sym_call_expression] = STATE(2984), - [sym_field_expression] = STATE(2984), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2984), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_lambda_default_capture] = STATE(5941), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2984), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(3047), - [anon_sym_LPAREN2] = ACTIONS(3049), - [anon_sym_BANG] = ACTIONS(3053), - [anon_sym_TILDE] = ACTIONS(3053), - [anon_sym_DASH] = ACTIONS(3051), - [anon_sym_PLUS] = ACTIONS(3051), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(3422), - [anon_sym_COLON_COLON] = ACTIONS(3055), - [anon_sym_LBRACK] = ACTIONS(1539), - [anon_sym_RBRACK] = ACTIONS(3476), - [anon_sym_EQ] = ACTIONS(3426), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(3051), - [anon_sym_compl] = ACTIONS(3051), - [anon_sym_DASH_DASH] = ACTIONS(3057), - [anon_sym_PLUS_PLUS] = ACTIONS(3057), - [anon_sym_sizeof] = ACTIONS(3059), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(3061), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(3063), - [anon_sym_new] = ACTIONS(3065), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [ts_builtin_sym_end] = ACTIONS(3318), + [sym_identifier] = ACTIONS(3316), + [aux_sym_preproc_include_token1] = ACTIONS(3316), + [aux_sym_preproc_def_token1] = ACTIONS(3316), + [aux_sym_preproc_if_token1] = ACTIONS(3316), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3316), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3316), + [sym_preproc_directive] = ACTIONS(3316), + [anon_sym_LPAREN2] = ACTIONS(3318), + [anon_sym_BANG] = ACTIONS(3318), + [anon_sym_TILDE] = ACTIONS(3318), + [anon_sym_DASH] = ACTIONS(3316), + [anon_sym_PLUS] = ACTIONS(3316), + [anon_sym_STAR] = ACTIONS(3318), + [anon_sym_AMP_AMP] = ACTIONS(3318), + [anon_sym_AMP] = ACTIONS(3316), + [anon_sym_typedef] = ACTIONS(3316), + [anon_sym_extern] = ACTIONS(3316), + [anon_sym___attribute__] = ACTIONS(3316), + [anon_sym_COLON_COLON] = ACTIONS(3318), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3318), + [anon_sym___declspec] = ACTIONS(3316), + [anon_sym___based] = ACTIONS(3316), + [anon_sym___cdecl] = ACTIONS(3316), + [anon_sym___clrcall] = ACTIONS(3316), + [anon_sym___stdcall] = ACTIONS(3316), + [anon_sym___fastcall] = ACTIONS(3316), + [anon_sym___thiscall] = ACTIONS(3316), + [anon_sym___vectorcall] = ACTIONS(3316), + [anon_sym_LBRACE] = ACTIONS(3318), + [anon_sym_LBRACK] = ACTIONS(3316), + [anon_sym_static] = ACTIONS(3316), + [anon_sym_register] = ACTIONS(3316), + [anon_sym_inline] = ACTIONS(3316), + [anon_sym_thread_local] = ACTIONS(3316), + [anon_sym_const] = ACTIONS(3316), + [anon_sym_constexpr] = ACTIONS(3316), + [anon_sym_volatile] = ACTIONS(3316), + [anon_sym_restrict] = ACTIONS(3316), + [anon_sym___restrict__] = ACTIONS(3316), + [anon_sym__Atomic] = ACTIONS(3316), + [anon_sym__Noreturn] = ACTIONS(3316), + [anon_sym_noreturn] = ACTIONS(3316), + [anon_sym_mutable] = ACTIONS(3316), + [anon_sym_constinit] = ACTIONS(3316), + [anon_sym_consteval] = ACTIONS(3316), + [anon_sym_signed] = ACTIONS(3316), + [anon_sym_unsigned] = ACTIONS(3316), + [anon_sym_long] = ACTIONS(3316), + [anon_sym_short] = ACTIONS(3316), + [sym_primitive_type] = ACTIONS(3316), + [anon_sym_enum] = ACTIONS(3316), + [anon_sym_class] = ACTIONS(3316), + [anon_sym_struct] = ACTIONS(3316), + [anon_sym_union] = ACTIONS(3316), + [anon_sym_if] = ACTIONS(3316), + [anon_sym_switch] = ACTIONS(3316), + [anon_sym_case] = ACTIONS(3316), + [anon_sym_default] = ACTIONS(3316), + [anon_sym_while] = ACTIONS(3316), + [anon_sym_do] = ACTIONS(3316), + [anon_sym_for] = ACTIONS(3316), + [anon_sym_return] = ACTIONS(3316), + [anon_sym_break] = ACTIONS(3316), + [anon_sym_continue] = ACTIONS(3316), + [anon_sym_goto] = ACTIONS(3316), + [anon_sym_not] = ACTIONS(3316), + [anon_sym_compl] = ACTIONS(3316), + [anon_sym_DASH_DASH] = ACTIONS(3318), + [anon_sym_PLUS_PLUS] = ACTIONS(3318), + [anon_sym_sizeof] = ACTIONS(3316), + [anon_sym_offsetof] = ACTIONS(3316), + [anon_sym__Generic] = ACTIONS(3316), + [anon_sym_asm] = ACTIONS(3316), + [anon_sym___asm__] = ACTIONS(3316), + [sym_number_literal] = ACTIONS(3318), + [anon_sym_L_SQUOTE] = ACTIONS(3318), + [anon_sym_u_SQUOTE] = ACTIONS(3318), + [anon_sym_U_SQUOTE] = ACTIONS(3318), + [anon_sym_u8_SQUOTE] = ACTIONS(3318), + [anon_sym_SQUOTE] = ACTIONS(3318), + [anon_sym_L_DQUOTE] = ACTIONS(3318), + [anon_sym_u_DQUOTE] = ACTIONS(3318), + [anon_sym_U_DQUOTE] = ACTIONS(3318), + [anon_sym_u8_DQUOTE] = ACTIONS(3318), + [anon_sym_DQUOTE] = ACTIONS(3318), + [sym_true] = ACTIONS(3316), + [sym_false] = ACTIONS(3316), + [anon_sym_NULL] = ACTIONS(3316), + [anon_sym_nullptr] = ACTIONS(3316), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3316), + [anon_sym_decltype] = ACTIONS(3316), + [anon_sym_virtual] = ACTIONS(3316), + [anon_sym_explicit] = ACTIONS(3316), + [anon_sym_typename] = ACTIONS(3316), + [anon_sym_template] = ACTIONS(3316), + [anon_sym_operator] = ACTIONS(3316), + [anon_sym_try] = ACTIONS(3316), + [anon_sym_delete] = ACTIONS(3316), + [anon_sym_throw] = ACTIONS(3316), + [anon_sym_namespace] = ACTIONS(3316), + [anon_sym_using] = ACTIONS(3316), + [anon_sym_static_assert] = ACTIONS(3316), + [anon_sym_concept] = ACTIONS(3316), + [anon_sym_co_return] = ACTIONS(3316), + [anon_sym_co_yield] = ACTIONS(3316), + [anon_sym_R_DQUOTE] = ACTIONS(3318), + [anon_sym_LR_DQUOTE] = ACTIONS(3318), + [anon_sym_uR_DQUOTE] = ACTIONS(3318), + [anon_sym_UR_DQUOTE] = ACTIONS(3318), + [anon_sym_u8R_DQUOTE] = ACTIONS(3318), + [anon_sym_co_await] = ACTIONS(3316), + [anon_sym_new] = ACTIONS(3316), + [anon_sym_requires] = ACTIONS(3316), + [sym_this] = ACTIONS(3316), }, [1370] = { - [sym__expression] = STATE(3015), - [sym_conditional_expression] = STATE(3035), - [sym_assignment_expression] = STATE(3035), - [sym_pointer_expression] = STATE(2713), - [sym_unary_expression] = STATE(3035), - [sym_binary_expression] = STATE(3035), - [sym_update_expression] = STATE(3035), - [sym_cast_expression] = STATE(3035), - [sym_sizeof_expression] = STATE(3035), - [sym_subscript_expression] = STATE(2713), - [sym_call_expression] = STATE(2713), - [sym_field_expression] = STATE(2713), - [sym_compound_literal_expression] = STATE(3035), - [sym_parenthesized_expression] = STATE(2713), - [sym_char_literal] = STATE(3013), - [sym_concatenated_string] = STATE(3013), - [sym_string_literal] = STATE(1900), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5990), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3035), - [sym_raw_string_literal] = STATE(1900), - [sym_co_await_expression] = STATE(3035), - [sym_new_expression] = STATE(3035), - [sym_delete_expression] = STATE(3035), - [sym_requires_clause] = STATE(3035), - [sym_requires_expression] = STATE(3035), - [sym_lambda_expression] = STATE(3035), - [sym_lambda_capture_specifier] = STATE(4465), - [sym_fold_expression] = STATE(3035), - [sym_parameter_pack_expansion] = STATE(3035), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4584), - [sym_qualified_identifier] = STATE(2713), - [sym_qualified_type_identifier] = STATE(5990), - [sym_user_defined_literal] = STATE(3035), - [sym_identifier] = ACTIONS(1643), - [anon_sym_LPAREN2] = ACTIONS(3416), - [anon_sym_BANG] = ACTIONS(1441), - [anon_sym_TILDE] = ACTIONS(1441), - [anon_sym_DASH] = ACTIONS(1443), - [anon_sym_PLUS] = ACTIONS(1443), - [anon_sym_STAR] = ACTIONS(3416), - [anon_sym_AMP_AMP] = ACTIONS(3416), - [anon_sym_AMP] = ACTIONS(3418), - [anon_sym_LT] = ACTIONS(3416), - [anon_sym_COLON_COLON] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(3416), - [anon_sym_LBRACK] = ACTIONS(3416), - [sym_primitive_type] = ACTIONS(1581), - [anon_sym_not] = ACTIONS(1443), - [anon_sym_compl] = ACTIONS(1443), - [anon_sym_DASH_DASH] = ACTIONS(1459), - [anon_sym_PLUS_PLUS] = ACTIONS(1459), - [anon_sym_sizeof] = ACTIONS(1461), - [sym_number_literal] = ACTIONS(1463), - [anon_sym_L_SQUOTE] = ACTIONS(1465), - [anon_sym_u_SQUOTE] = ACTIONS(1465), - [anon_sym_U_SQUOTE] = ACTIONS(1465), - [anon_sym_u8_SQUOTE] = ACTIONS(1465), - [anon_sym_SQUOTE] = ACTIONS(1465), - [anon_sym_L_DQUOTE] = ACTIONS(1467), - [anon_sym_u_DQUOTE] = ACTIONS(1467), - [anon_sym_U_DQUOTE] = ACTIONS(1467), - [anon_sym_u8_DQUOTE] = ACTIONS(1467), - [anon_sym_DQUOTE] = ACTIONS(1467), - [sym_true] = ACTIONS(1469), - [sym_false] = ACTIONS(1469), - [sym_null] = ACTIONS(1469), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1473), - [anon_sym_R_DQUOTE] = ACTIONS(1475), - [anon_sym_LR_DQUOTE] = ACTIONS(1475), - [anon_sym_uR_DQUOTE] = ACTIONS(1475), - [anon_sym_UR_DQUOTE] = ACTIONS(1475), - [anon_sym_u8R_DQUOTE] = ACTIONS(1475), - [anon_sym_co_await] = ACTIONS(1477), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_requires] = ACTIONS(1481), - [sym_this] = ACTIONS(1469), - [sym_nullptr] = ACTIONS(1469), + [ts_builtin_sym_end] = ACTIONS(3314), + [sym_identifier] = ACTIONS(3312), + [aux_sym_preproc_include_token1] = ACTIONS(3312), + [aux_sym_preproc_def_token1] = ACTIONS(3312), + [aux_sym_preproc_if_token1] = ACTIONS(3312), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3312), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3312), + [sym_preproc_directive] = ACTIONS(3312), + [anon_sym_LPAREN2] = ACTIONS(3314), + [anon_sym_BANG] = ACTIONS(3314), + [anon_sym_TILDE] = ACTIONS(3314), + [anon_sym_DASH] = ACTIONS(3312), + [anon_sym_PLUS] = ACTIONS(3312), + [anon_sym_STAR] = ACTIONS(3314), + [anon_sym_AMP_AMP] = ACTIONS(3314), + [anon_sym_AMP] = ACTIONS(3312), + [anon_sym_typedef] = ACTIONS(3312), + [anon_sym_extern] = ACTIONS(3312), + [anon_sym___attribute__] = ACTIONS(3312), + [anon_sym_COLON_COLON] = ACTIONS(3314), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3314), + [anon_sym___declspec] = ACTIONS(3312), + [anon_sym___based] = ACTIONS(3312), + [anon_sym___cdecl] = ACTIONS(3312), + [anon_sym___clrcall] = ACTIONS(3312), + [anon_sym___stdcall] = ACTIONS(3312), + [anon_sym___fastcall] = ACTIONS(3312), + [anon_sym___thiscall] = ACTIONS(3312), + [anon_sym___vectorcall] = ACTIONS(3312), + [anon_sym_LBRACE] = ACTIONS(3314), + [anon_sym_LBRACK] = ACTIONS(3312), + [anon_sym_static] = ACTIONS(3312), + [anon_sym_register] = ACTIONS(3312), + [anon_sym_inline] = ACTIONS(3312), + [anon_sym_thread_local] = ACTIONS(3312), + [anon_sym_const] = ACTIONS(3312), + [anon_sym_constexpr] = ACTIONS(3312), + [anon_sym_volatile] = ACTIONS(3312), + [anon_sym_restrict] = ACTIONS(3312), + [anon_sym___restrict__] = ACTIONS(3312), + [anon_sym__Atomic] = ACTIONS(3312), + [anon_sym__Noreturn] = ACTIONS(3312), + [anon_sym_noreturn] = ACTIONS(3312), + [anon_sym_mutable] = ACTIONS(3312), + [anon_sym_constinit] = ACTIONS(3312), + [anon_sym_consteval] = ACTIONS(3312), + [anon_sym_signed] = ACTIONS(3312), + [anon_sym_unsigned] = ACTIONS(3312), + [anon_sym_long] = ACTIONS(3312), + [anon_sym_short] = ACTIONS(3312), + [sym_primitive_type] = ACTIONS(3312), + [anon_sym_enum] = ACTIONS(3312), + [anon_sym_class] = ACTIONS(3312), + [anon_sym_struct] = ACTIONS(3312), + [anon_sym_union] = ACTIONS(3312), + [anon_sym_if] = ACTIONS(3312), + [anon_sym_switch] = ACTIONS(3312), + [anon_sym_case] = ACTIONS(3312), + [anon_sym_default] = ACTIONS(3312), + [anon_sym_while] = ACTIONS(3312), + [anon_sym_do] = ACTIONS(3312), + [anon_sym_for] = ACTIONS(3312), + [anon_sym_return] = ACTIONS(3312), + [anon_sym_break] = ACTIONS(3312), + [anon_sym_continue] = ACTIONS(3312), + [anon_sym_goto] = ACTIONS(3312), + [anon_sym_not] = ACTIONS(3312), + [anon_sym_compl] = ACTIONS(3312), + [anon_sym_DASH_DASH] = ACTIONS(3314), + [anon_sym_PLUS_PLUS] = ACTIONS(3314), + [anon_sym_sizeof] = ACTIONS(3312), + [anon_sym_offsetof] = ACTIONS(3312), + [anon_sym__Generic] = ACTIONS(3312), + [anon_sym_asm] = ACTIONS(3312), + [anon_sym___asm__] = ACTIONS(3312), + [sym_number_literal] = ACTIONS(3314), + [anon_sym_L_SQUOTE] = ACTIONS(3314), + [anon_sym_u_SQUOTE] = ACTIONS(3314), + [anon_sym_U_SQUOTE] = ACTIONS(3314), + [anon_sym_u8_SQUOTE] = ACTIONS(3314), + [anon_sym_SQUOTE] = ACTIONS(3314), + [anon_sym_L_DQUOTE] = ACTIONS(3314), + [anon_sym_u_DQUOTE] = ACTIONS(3314), + [anon_sym_U_DQUOTE] = ACTIONS(3314), + [anon_sym_u8_DQUOTE] = ACTIONS(3314), + [anon_sym_DQUOTE] = ACTIONS(3314), + [sym_true] = ACTIONS(3312), + [sym_false] = ACTIONS(3312), + [anon_sym_NULL] = ACTIONS(3312), + [anon_sym_nullptr] = ACTIONS(3312), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3312), + [anon_sym_decltype] = ACTIONS(3312), + [anon_sym_virtual] = ACTIONS(3312), + [anon_sym_explicit] = ACTIONS(3312), + [anon_sym_typename] = ACTIONS(3312), + [anon_sym_template] = ACTIONS(3312), + [anon_sym_operator] = ACTIONS(3312), + [anon_sym_try] = ACTIONS(3312), + [anon_sym_delete] = ACTIONS(3312), + [anon_sym_throw] = ACTIONS(3312), + [anon_sym_namespace] = ACTIONS(3312), + [anon_sym_using] = ACTIONS(3312), + [anon_sym_static_assert] = ACTIONS(3312), + [anon_sym_concept] = ACTIONS(3312), + [anon_sym_co_return] = ACTIONS(3312), + [anon_sym_co_yield] = ACTIONS(3312), + [anon_sym_R_DQUOTE] = ACTIONS(3314), + [anon_sym_LR_DQUOTE] = ACTIONS(3314), + [anon_sym_uR_DQUOTE] = ACTIONS(3314), + [anon_sym_UR_DQUOTE] = ACTIONS(3314), + [anon_sym_u8R_DQUOTE] = ACTIONS(3314), + [anon_sym_co_await] = ACTIONS(3312), + [anon_sym_new] = ACTIONS(3312), + [anon_sym_requires] = ACTIONS(3312), + [sym_this] = ACTIONS(3312), }, [1371] = { - [sym__expression] = STATE(2572), - [sym_conditional_expression] = STATE(2574), - [sym_assignment_expression] = STATE(2574), - [sym_pointer_expression] = STATE(2578), - [sym_unary_expression] = STATE(2574), - [sym_binary_expression] = STATE(2574), - [sym_update_expression] = STATE(2574), - [sym_cast_expression] = STATE(2574), - [sym_sizeof_expression] = STATE(2574), - [sym_subscript_expression] = STATE(2578), - [sym_call_expression] = STATE(2578), - [sym_field_expression] = STATE(2578), - [sym_compound_literal_expression] = STATE(2574), - [sym_parenthesized_expression] = STATE(2578), - [sym_char_literal] = STATE(2207), - [sym_concatenated_string] = STATE(2207), - [sym_string_literal] = STATE(1820), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5944), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(2574), - [sym_raw_string_literal] = STATE(1820), - [sym_co_await_expression] = STATE(2574), - [sym_new_expression] = STATE(2574), - [sym_delete_expression] = STATE(2574), - [sym_requires_clause] = STATE(2574), - [sym_requires_expression] = STATE(2574), - [sym_lambda_expression] = STATE(2574), - [sym_lambda_capture_specifier] = STATE(4479), - [sym_fold_expression] = STATE(2574), - [sym_parameter_pack_expansion] = STATE(2574), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2578), - [sym_qualified_type_identifier] = STATE(5944), - [sym_user_defined_literal] = STATE(2574), - [sym_identifier] = ACTIONS(1523), - [anon_sym_LPAREN2] = ACTIONS(3416), - [anon_sym_BANG] = ACTIONS(1531), - [anon_sym_TILDE] = ACTIONS(1531), - [anon_sym_DASH] = ACTIONS(1529), - [anon_sym_PLUS] = ACTIONS(1529), - [anon_sym_STAR] = ACTIONS(3416), - [anon_sym_AMP_AMP] = ACTIONS(3416), - [anon_sym_AMP] = ACTIONS(3418), - [anon_sym_LT] = ACTIONS(3416), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACE] = ACTIONS(3416), - [anon_sym_LBRACK] = ACTIONS(3416), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(1529), - [anon_sym_compl] = ACTIONS(1529), - [anon_sym_DASH_DASH] = ACTIONS(1543), - [anon_sym_PLUS_PLUS] = ACTIONS(1543), - [anon_sym_sizeof] = ACTIONS(1545), - [sym_number_literal] = ACTIONS(1547), - [anon_sym_L_SQUOTE] = ACTIONS(1549), - [anon_sym_u_SQUOTE] = ACTIONS(1549), - [anon_sym_U_SQUOTE] = ACTIONS(1549), - [anon_sym_u8_SQUOTE] = ACTIONS(1549), - [anon_sym_SQUOTE] = ACTIONS(1549), - [anon_sym_L_DQUOTE] = ACTIONS(1551), - [anon_sym_u_DQUOTE] = ACTIONS(1551), - [anon_sym_U_DQUOTE] = ACTIONS(1551), - [anon_sym_u8_DQUOTE] = ACTIONS(1551), - [anon_sym_DQUOTE] = ACTIONS(1551), - [sym_true] = ACTIONS(1553), - [sym_false] = ACTIONS(1553), - [sym_null] = ACTIONS(1553), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1557), - [anon_sym_R_DQUOTE] = ACTIONS(1559), - [anon_sym_LR_DQUOTE] = ACTIONS(1559), - [anon_sym_uR_DQUOTE] = ACTIONS(1559), - [anon_sym_UR_DQUOTE] = ACTIONS(1559), - [anon_sym_u8R_DQUOTE] = ACTIONS(1559), - [anon_sym_co_await] = ACTIONS(1561), - [anon_sym_new] = ACTIONS(1563), - [anon_sym_requires] = ACTIONS(1565), - [sym_this] = ACTIONS(1553), - [sym_nullptr] = ACTIONS(1553), + [ts_builtin_sym_end] = ACTIONS(3276), + [sym_identifier] = ACTIONS(3274), + [aux_sym_preproc_include_token1] = ACTIONS(3274), + [aux_sym_preproc_def_token1] = ACTIONS(3274), + [aux_sym_preproc_if_token1] = ACTIONS(3274), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3274), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3274), + [sym_preproc_directive] = ACTIONS(3274), + [anon_sym_LPAREN2] = ACTIONS(3276), + [anon_sym_BANG] = ACTIONS(3276), + [anon_sym_TILDE] = ACTIONS(3276), + [anon_sym_DASH] = ACTIONS(3274), + [anon_sym_PLUS] = ACTIONS(3274), + [anon_sym_STAR] = ACTIONS(3276), + [anon_sym_AMP_AMP] = ACTIONS(3276), + [anon_sym_AMP] = ACTIONS(3274), + [anon_sym_typedef] = ACTIONS(3274), + [anon_sym_extern] = ACTIONS(3274), + [anon_sym___attribute__] = ACTIONS(3274), + [anon_sym_COLON_COLON] = ACTIONS(3276), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3276), + [anon_sym___declspec] = ACTIONS(3274), + [anon_sym___based] = ACTIONS(3274), + [anon_sym___cdecl] = ACTIONS(3274), + [anon_sym___clrcall] = ACTIONS(3274), + [anon_sym___stdcall] = ACTIONS(3274), + [anon_sym___fastcall] = ACTIONS(3274), + [anon_sym___thiscall] = ACTIONS(3274), + [anon_sym___vectorcall] = ACTIONS(3274), + [anon_sym_LBRACE] = ACTIONS(3276), + [anon_sym_LBRACK] = ACTIONS(3274), + [anon_sym_static] = ACTIONS(3274), + [anon_sym_register] = ACTIONS(3274), + [anon_sym_inline] = ACTIONS(3274), + [anon_sym_thread_local] = ACTIONS(3274), + [anon_sym_const] = ACTIONS(3274), + [anon_sym_constexpr] = ACTIONS(3274), + [anon_sym_volatile] = ACTIONS(3274), + [anon_sym_restrict] = ACTIONS(3274), + [anon_sym___restrict__] = ACTIONS(3274), + [anon_sym__Atomic] = ACTIONS(3274), + [anon_sym__Noreturn] = ACTIONS(3274), + [anon_sym_noreturn] = ACTIONS(3274), + [anon_sym_mutable] = ACTIONS(3274), + [anon_sym_constinit] = ACTIONS(3274), + [anon_sym_consteval] = ACTIONS(3274), + [anon_sym_signed] = ACTIONS(3274), + [anon_sym_unsigned] = ACTIONS(3274), + [anon_sym_long] = ACTIONS(3274), + [anon_sym_short] = ACTIONS(3274), + [sym_primitive_type] = ACTIONS(3274), + [anon_sym_enum] = ACTIONS(3274), + [anon_sym_class] = ACTIONS(3274), + [anon_sym_struct] = ACTIONS(3274), + [anon_sym_union] = ACTIONS(3274), + [anon_sym_if] = ACTIONS(3274), + [anon_sym_switch] = ACTIONS(3274), + [anon_sym_case] = ACTIONS(3274), + [anon_sym_default] = ACTIONS(3274), + [anon_sym_while] = ACTIONS(3274), + [anon_sym_do] = ACTIONS(3274), + [anon_sym_for] = ACTIONS(3274), + [anon_sym_return] = ACTIONS(3274), + [anon_sym_break] = ACTIONS(3274), + [anon_sym_continue] = ACTIONS(3274), + [anon_sym_goto] = ACTIONS(3274), + [anon_sym_not] = ACTIONS(3274), + [anon_sym_compl] = ACTIONS(3274), + [anon_sym_DASH_DASH] = ACTIONS(3276), + [anon_sym_PLUS_PLUS] = ACTIONS(3276), + [anon_sym_sizeof] = ACTIONS(3274), + [anon_sym_offsetof] = ACTIONS(3274), + [anon_sym__Generic] = ACTIONS(3274), + [anon_sym_asm] = ACTIONS(3274), + [anon_sym___asm__] = ACTIONS(3274), + [sym_number_literal] = ACTIONS(3276), + [anon_sym_L_SQUOTE] = ACTIONS(3276), + [anon_sym_u_SQUOTE] = ACTIONS(3276), + [anon_sym_U_SQUOTE] = ACTIONS(3276), + [anon_sym_u8_SQUOTE] = ACTIONS(3276), + [anon_sym_SQUOTE] = ACTIONS(3276), + [anon_sym_L_DQUOTE] = ACTIONS(3276), + [anon_sym_u_DQUOTE] = ACTIONS(3276), + [anon_sym_U_DQUOTE] = ACTIONS(3276), + [anon_sym_u8_DQUOTE] = ACTIONS(3276), + [anon_sym_DQUOTE] = ACTIONS(3276), + [sym_true] = ACTIONS(3274), + [sym_false] = ACTIONS(3274), + [anon_sym_NULL] = ACTIONS(3274), + [anon_sym_nullptr] = ACTIONS(3274), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3274), + [anon_sym_decltype] = ACTIONS(3274), + [anon_sym_virtual] = ACTIONS(3274), + [anon_sym_explicit] = ACTIONS(3274), + [anon_sym_typename] = ACTIONS(3274), + [anon_sym_template] = ACTIONS(3274), + [anon_sym_operator] = ACTIONS(3274), + [anon_sym_try] = ACTIONS(3274), + [anon_sym_delete] = ACTIONS(3274), + [anon_sym_throw] = ACTIONS(3274), + [anon_sym_namespace] = ACTIONS(3274), + [anon_sym_using] = ACTIONS(3274), + [anon_sym_static_assert] = ACTIONS(3274), + [anon_sym_concept] = ACTIONS(3274), + [anon_sym_co_return] = ACTIONS(3274), + [anon_sym_co_yield] = ACTIONS(3274), + [anon_sym_R_DQUOTE] = ACTIONS(3276), + [anon_sym_LR_DQUOTE] = ACTIONS(3276), + [anon_sym_uR_DQUOTE] = ACTIONS(3276), + [anon_sym_UR_DQUOTE] = ACTIONS(3276), + [anon_sym_u8R_DQUOTE] = ACTIONS(3276), + [anon_sym_co_await] = ACTIONS(3274), + [anon_sym_new] = ACTIONS(3274), + [anon_sym_requires] = ACTIONS(3274), + [sym_this] = ACTIONS(3274), }, [1372] = { - [sym__expression] = STATE(3445), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_initializer_list] = STATE(5647), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2954), - [anon_sym_RPAREN] = ACTIONS(3478), - [anon_sym_LPAREN2] = ACTIONS(984), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1489), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [ts_builtin_sym_end] = ACTIONS(3280), + [sym_identifier] = ACTIONS(3278), + [aux_sym_preproc_include_token1] = ACTIONS(3278), + [aux_sym_preproc_def_token1] = ACTIONS(3278), + [aux_sym_preproc_if_token1] = ACTIONS(3278), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3278), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3278), + [sym_preproc_directive] = ACTIONS(3278), + [anon_sym_LPAREN2] = ACTIONS(3280), + [anon_sym_BANG] = ACTIONS(3280), + [anon_sym_TILDE] = ACTIONS(3280), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_STAR] = ACTIONS(3280), + [anon_sym_AMP_AMP] = ACTIONS(3280), + [anon_sym_AMP] = ACTIONS(3278), + [anon_sym_typedef] = ACTIONS(3278), + [anon_sym_extern] = ACTIONS(3278), + [anon_sym___attribute__] = ACTIONS(3278), + [anon_sym_COLON_COLON] = ACTIONS(3280), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3280), + [anon_sym___declspec] = ACTIONS(3278), + [anon_sym___based] = ACTIONS(3278), + [anon_sym___cdecl] = ACTIONS(3278), + [anon_sym___clrcall] = ACTIONS(3278), + [anon_sym___stdcall] = ACTIONS(3278), + [anon_sym___fastcall] = ACTIONS(3278), + [anon_sym___thiscall] = ACTIONS(3278), + [anon_sym___vectorcall] = ACTIONS(3278), + [anon_sym_LBRACE] = ACTIONS(3280), + [anon_sym_LBRACK] = ACTIONS(3278), + [anon_sym_static] = ACTIONS(3278), + [anon_sym_register] = ACTIONS(3278), + [anon_sym_inline] = ACTIONS(3278), + [anon_sym_thread_local] = ACTIONS(3278), + [anon_sym_const] = ACTIONS(3278), + [anon_sym_constexpr] = ACTIONS(3278), + [anon_sym_volatile] = ACTIONS(3278), + [anon_sym_restrict] = ACTIONS(3278), + [anon_sym___restrict__] = ACTIONS(3278), + [anon_sym__Atomic] = ACTIONS(3278), + [anon_sym__Noreturn] = ACTIONS(3278), + [anon_sym_noreturn] = ACTIONS(3278), + [anon_sym_mutable] = ACTIONS(3278), + [anon_sym_constinit] = ACTIONS(3278), + [anon_sym_consteval] = ACTIONS(3278), + [anon_sym_signed] = ACTIONS(3278), + [anon_sym_unsigned] = ACTIONS(3278), + [anon_sym_long] = ACTIONS(3278), + [anon_sym_short] = ACTIONS(3278), + [sym_primitive_type] = ACTIONS(3278), + [anon_sym_enum] = ACTIONS(3278), + [anon_sym_class] = ACTIONS(3278), + [anon_sym_struct] = ACTIONS(3278), + [anon_sym_union] = ACTIONS(3278), + [anon_sym_if] = ACTIONS(3278), + [anon_sym_switch] = ACTIONS(3278), + [anon_sym_case] = ACTIONS(3278), + [anon_sym_default] = ACTIONS(3278), + [anon_sym_while] = ACTIONS(3278), + [anon_sym_do] = ACTIONS(3278), + [anon_sym_for] = ACTIONS(3278), + [anon_sym_return] = ACTIONS(3278), + [anon_sym_break] = ACTIONS(3278), + [anon_sym_continue] = ACTIONS(3278), + [anon_sym_goto] = ACTIONS(3278), + [anon_sym_not] = ACTIONS(3278), + [anon_sym_compl] = ACTIONS(3278), + [anon_sym_DASH_DASH] = ACTIONS(3280), + [anon_sym_PLUS_PLUS] = ACTIONS(3280), + [anon_sym_sizeof] = ACTIONS(3278), + [anon_sym_offsetof] = ACTIONS(3278), + [anon_sym__Generic] = ACTIONS(3278), + [anon_sym_asm] = ACTIONS(3278), + [anon_sym___asm__] = ACTIONS(3278), + [sym_number_literal] = ACTIONS(3280), + [anon_sym_L_SQUOTE] = ACTIONS(3280), + [anon_sym_u_SQUOTE] = ACTIONS(3280), + [anon_sym_U_SQUOTE] = ACTIONS(3280), + [anon_sym_u8_SQUOTE] = ACTIONS(3280), + [anon_sym_SQUOTE] = ACTIONS(3280), + [anon_sym_L_DQUOTE] = ACTIONS(3280), + [anon_sym_u_DQUOTE] = ACTIONS(3280), + [anon_sym_U_DQUOTE] = ACTIONS(3280), + [anon_sym_u8_DQUOTE] = ACTIONS(3280), + [anon_sym_DQUOTE] = ACTIONS(3280), + [sym_true] = ACTIONS(3278), + [sym_false] = ACTIONS(3278), + [anon_sym_NULL] = ACTIONS(3278), + [anon_sym_nullptr] = ACTIONS(3278), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3278), + [anon_sym_decltype] = ACTIONS(3278), + [anon_sym_virtual] = ACTIONS(3278), + [anon_sym_explicit] = ACTIONS(3278), + [anon_sym_typename] = ACTIONS(3278), + [anon_sym_template] = ACTIONS(3278), + [anon_sym_operator] = ACTIONS(3278), + [anon_sym_try] = ACTIONS(3278), + [anon_sym_delete] = ACTIONS(3278), + [anon_sym_throw] = ACTIONS(3278), + [anon_sym_namespace] = ACTIONS(3278), + [anon_sym_using] = ACTIONS(3278), + [anon_sym_static_assert] = ACTIONS(3278), + [anon_sym_concept] = ACTIONS(3278), + [anon_sym_co_return] = ACTIONS(3278), + [anon_sym_co_yield] = ACTIONS(3278), + [anon_sym_R_DQUOTE] = ACTIONS(3280), + [anon_sym_LR_DQUOTE] = ACTIONS(3280), + [anon_sym_uR_DQUOTE] = ACTIONS(3280), + [anon_sym_UR_DQUOTE] = ACTIONS(3280), + [anon_sym_u8R_DQUOTE] = ACTIONS(3280), + [anon_sym_co_await] = ACTIONS(3278), + [anon_sym_new] = ACTIONS(3278), + [anon_sym_requires] = ACTIONS(3278), + [sym_this] = ACTIONS(3278), }, [1373] = { - [sym__expression] = STATE(2973), - [sym_conditional_expression] = STATE(2574), - [sym_assignment_expression] = STATE(2574), - [sym_pointer_expression] = STATE(2578), - [sym_unary_expression] = STATE(2574), - [sym_binary_expression] = STATE(2574), - [sym_update_expression] = STATE(2574), - [sym_cast_expression] = STATE(2574), - [sym_sizeof_expression] = STATE(2574), - [sym_subscript_expression] = STATE(2578), - [sym_call_expression] = STATE(2578), - [sym_field_expression] = STATE(2578), - [sym_compound_literal_expression] = STATE(2574), - [sym_parenthesized_expression] = STATE(2578), - [sym_char_literal] = STATE(2207), - [sym_concatenated_string] = STATE(2207), - [sym_string_literal] = STATE(1820), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5944), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(2574), - [sym_raw_string_literal] = STATE(1820), - [sym_co_await_expression] = STATE(2574), - [sym_new_expression] = STATE(2574), - [sym_delete_expression] = STATE(2574), - [sym_requires_clause] = STATE(2574), - [sym_requires_expression] = STATE(2574), - [sym_lambda_expression] = STATE(2574), - [sym_lambda_capture_specifier] = STATE(4479), - [sym_fold_expression] = STATE(2574), - [sym_parameter_pack_expansion] = STATE(2574), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2578), - [sym_qualified_type_identifier] = STATE(5944), - [sym_user_defined_literal] = STATE(2574), - [sym_identifier] = ACTIONS(1523), - [anon_sym_LPAREN2] = ACTIONS(3416), - [anon_sym_BANG] = ACTIONS(1651), - [anon_sym_TILDE] = ACTIONS(1651), - [anon_sym_DASH] = ACTIONS(1649), - [anon_sym_PLUS] = ACTIONS(1649), - [anon_sym_STAR] = ACTIONS(3416), - [anon_sym_AMP_AMP] = ACTIONS(3416), - [anon_sym_AMP] = ACTIONS(3418), - [anon_sym_LT] = ACTIONS(3416), - [anon_sym_COLON_COLON] = ACTIONS(1655), - [anon_sym_LBRACE] = ACTIONS(3416), - [anon_sym_LBRACK] = ACTIONS(3416), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(1649), - [anon_sym_compl] = ACTIONS(1649), - [anon_sym_DASH_DASH] = ACTIONS(1657), - [anon_sym_PLUS_PLUS] = ACTIONS(1657), - [anon_sym_sizeof] = ACTIONS(1659), - [sym_number_literal] = ACTIONS(1547), - [anon_sym_L_SQUOTE] = ACTIONS(1549), - [anon_sym_u_SQUOTE] = ACTIONS(1549), - [anon_sym_U_SQUOTE] = ACTIONS(1549), - [anon_sym_u8_SQUOTE] = ACTIONS(1549), - [anon_sym_SQUOTE] = ACTIONS(1549), - [anon_sym_L_DQUOTE] = ACTIONS(1551), - [anon_sym_u_DQUOTE] = ACTIONS(1551), - [anon_sym_U_DQUOTE] = ACTIONS(1551), - [anon_sym_u8_DQUOTE] = ACTIONS(1551), - [anon_sym_DQUOTE] = ACTIONS(1551), - [sym_true] = ACTIONS(1553), - [sym_false] = ACTIONS(1553), - [sym_null] = ACTIONS(1553), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1661), - [anon_sym_R_DQUOTE] = ACTIONS(1559), - [anon_sym_LR_DQUOTE] = ACTIONS(1559), - [anon_sym_uR_DQUOTE] = ACTIONS(1559), - [anon_sym_UR_DQUOTE] = ACTIONS(1559), - [anon_sym_u8R_DQUOTE] = ACTIONS(1559), - [anon_sym_co_await] = ACTIONS(1663), - [anon_sym_new] = ACTIONS(1563), - [anon_sym_requires] = ACTIONS(1565), - [sym_this] = ACTIONS(1553), - [sym_nullptr] = ACTIONS(1553), + [ts_builtin_sym_end] = ACTIONS(3401), + [sym_identifier] = ACTIONS(3399), + [aux_sym_preproc_include_token1] = ACTIONS(3399), + [aux_sym_preproc_def_token1] = ACTIONS(3399), + [aux_sym_preproc_if_token1] = ACTIONS(3399), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3399), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3399), + [sym_preproc_directive] = ACTIONS(3399), + [anon_sym_LPAREN2] = ACTIONS(3401), + [anon_sym_BANG] = ACTIONS(3401), + [anon_sym_TILDE] = ACTIONS(3401), + [anon_sym_DASH] = ACTIONS(3399), + [anon_sym_PLUS] = ACTIONS(3399), + [anon_sym_STAR] = ACTIONS(3401), + [anon_sym_AMP_AMP] = ACTIONS(3401), + [anon_sym_AMP] = ACTIONS(3399), + [anon_sym_typedef] = ACTIONS(3399), + [anon_sym_extern] = ACTIONS(3399), + [anon_sym___attribute__] = ACTIONS(3399), + [anon_sym_COLON_COLON] = ACTIONS(3401), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3401), + [anon_sym___declspec] = ACTIONS(3399), + [anon_sym___based] = ACTIONS(3399), + [anon_sym___cdecl] = ACTIONS(3399), + [anon_sym___clrcall] = ACTIONS(3399), + [anon_sym___stdcall] = ACTIONS(3399), + [anon_sym___fastcall] = ACTIONS(3399), + [anon_sym___thiscall] = ACTIONS(3399), + [anon_sym___vectorcall] = ACTIONS(3399), + [anon_sym_LBRACE] = ACTIONS(3401), + [anon_sym_LBRACK] = ACTIONS(3399), + [anon_sym_static] = ACTIONS(3399), + [anon_sym_register] = ACTIONS(3399), + [anon_sym_inline] = ACTIONS(3399), + [anon_sym_thread_local] = ACTIONS(3399), + [anon_sym_const] = ACTIONS(3399), + [anon_sym_constexpr] = ACTIONS(3399), + [anon_sym_volatile] = ACTIONS(3399), + [anon_sym_restrict] = ACTIONS(3399), + [anon_sym___restrict__] = ACTIONS(3399), + [anon_sym__Atomic] = ACTIONS(3399), + [anon_sym__Noreturn] = ACTIONS(3399), + [anon_sym_noreturn] = ACTIONS(3399), + [anon_sym_mutable] = ACTIONS(3399), + [anon_sym_constinit] = ACTIONS(3399), + [anon_sym_consteval] = ACTIONS(3399), + [anon_sym_signed] = ACTIONS(3399), + [anon_sym_unsigned] = ACTIONS(3399), + [anon_sym_long] = ACTIONS(3399), + [anon_sym_short] = ACTIONS(3399), + [sym_primitive_type] = ACTIONS(3399), + [anon_sym_enum] = ACTIONS(3399), + [anon_sym_class] = ACTIONS(3399), + [anon_sym_struct] = ACTIONS(3399), + [anon_sym_union] = ACTIONS(3399), + [anon_sym_if] = ACTIONS(3399), + [anon_sym_switch] = ACTIONS(3399), + [anon_sym_case] = ACTIONS(3399), + [anon_sym_default] = ACTIONS(3399), + [anon_sym_while] = ACTIONS(3399), + [anon_sym_do] = ACTIONS(3399), + [anon_sym_for] = ACTIONS(3399), + [anon_sym_return] = ACTIONS(3399), + [anon_sym_break] = ACTIONS(3399), + [anon_sym_continue] = ACTIONS(3399), + [anon_sym_goto] = ACTIONS(3399), + [anon_sym_not] = ACTIONS(3399), + [anon_sym_compl] = ACTIONS(3399), + [anon_sym_DASH_DASH] = ACTIONS(3401), + [anon_sym_PLUS_PLUS] = ACTIONS(3401), + [anon_sym_sizeof] = ACTIONS(3399), + [anon_sym_offsetof] = ACTIONS(3399), + [anon_sym__Generic] = ACTIONS(3399), + [anon_sym_asm] = ACTIONS(3399), + [anon_sym___asm__] = ACTIONS(3399), + [sym_number_literal] = ACTIONS(3401), + [anon_sym_L_SQUOTE] = ACTIONS(3401), + [anon_sym_u_SQUOTE] = ACTIONS(3401), + [anon_sym_U_SQUOTE] = ACTIONS(3401), + [anon_sym_u8_SQUOTE] = ACTIONS(3401), + [anon_sym_SQUOTE] = ACTIONS(3401), + [anon_sym_L_DQUOTE] = ACTIONS(3401), + [anon_sym_u_DQUOTE] = ACTIONS(3401), + [anon_sym_U_DQUOTE] = ACTIONS(3401), + [anon_sym_u8_DQUOTE] = ACTIONS(3401), + [anon_sym_DQUOTE] = ACTIONS(3401), + [sym_true] = ACTIONS(3399), + [sym_false] = ACTIONS(3399), + [anon_sym_NULL] = ACTIONS(3399), + [anon_sym_nullptr] = ACTIONS(3399), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3399), + [anon_sym_decltype] = ACTIONS(3399), + [anon_sym_virtual] = ACTIONS(3399), + [anon_sym_explicit] = ACTIONS(3399), + [anon_sym_typename] = ACTIONS(3399), + [anon_sym_template] = ACTIONS(3399), + [anon_sym_operator] = ACTIONS(3399), + [anon_sym_try] = ACTIONS(3399), + [anon_sym_delete] = ACTIONS(3399), + [anon_sym_throw] = ACTIONS(3399), + [anon_sym_namespace] = ACTIONS(3399), + [anon_sym_using] = ACTIONS(3399), + [anon_sym_static_assert] = ACTIONS(3399), + [anon_sym_concept] = ACTIONS(3399), + [anon_sym_co_return] = ACTIONS(3399), + [anon_sym_co_yield] = ACTIONS(3399), + [anon_sym_R_DQUOTE] = ACTIONS(3401), + [anon_sym_LR_DQUOTE] = ACTIONS(3401), + [anon_sym_uR_DQUOTE] = ACTIONS(3401), + [anon_sym_UR_DQUOTE] = ACTIONS(3401), + [anon_sym_u8R_DQUOTE] = ACTIONS(3401), + [anon_sym_co_await] = ACTIONS(3399), + [anon_sym_new] = ACTIONS(3399), + [anon_sym_requires] = ACTIONS(3399), + [sym_this] = ACTIONS(3399), }, [1374] = { - [sym__expression] = STATE(2974), - [sym_conditional_expression] = STATE(2574), - [sym_assignment_expression] = STATE(2574), - [sym_pointer_expression] = STATE(2578), - [sym_unary_expression] = STATE(2574), - [sym_binary_expression] = STATE(2574), - [sym_update_expression] = STATE(2574), - [sym_cast_expression] = STATE(2574), - [sym_sizeof_expression] = STATE(2574), - [sym_subscript_expression] = STATE(2578), - [sym_call_expression] = STATE(2578), - [sym_field_expression] = STATE(2578), - [sym_compound_literal_expression] = STATE(2574), - [sym_parenthesized_expression] = STATE(2578), - [sym_char_literal] = STATE(2207), - [sym_concatenated_string] = STATE(2207), - [sym_string_literal] = STATE(1820), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5944), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(2574), - [sym_raw_string_literal] = STATE(1820), - [sym_co_await_expression] = STATE(2574), - [sym_new_expression] = STATE(2574), - [sym_delete_expression] = STATE(2574), - [sym_requires_clause] = STATE(2574), - [sym_requires_expression] = STATE(2574), - [sym_lambda_expression] = STATE(2574), - [sym_lambda_capture_specifier] = STATE(4479), - [sym_fold_expression] = STATE(2574), - [sym_parameter_pack_expansion] = STATE(2574), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2578), - [sym_qualified_type_identifier] = STATE(5944), - [sym_user_defined_literal] = STATE(2574), - [sym_identifier] = ACTIONS(1523), - [anon_sym_LPAREN2] = ACTIONS(3416), - [anon_sym_BANG] = ACTIONS(1651), - [anon_sym_TILDE] = ACTIONS(1651), - [anon_sym_DASH] = ACTIONS(1649), - [anon_sym_PLUS] = ACTIONS(1649), - [anon_sym_STAR] = ACTIONS(3416), - [anon_sym_AMP_AMP] = ACTIONS(3416), - [anon_sym_AMP] = ACTIONS(3418), - [anon_sym_LT] = ACTIONS(3416), - [anon_sym_COLON_COLON] = ACTIONS(1655), - [anon_sym_LBRACE] = ACTIONS(3416), - [anon_sym_LBRACK] = ACTIONS(3416), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(1649), - [anon_sym_compl] = ACTIONS(1649), - [anon_sym_DASH_DASH] = ACTIONS(1657), - [anon_sym_PLUS_PLUS] = ACTIONS(1657), - [anon_sym_sizeof] = ACTIONS(1659), - [sym_number_literal] = ACTIONS(1547), - [anon_sym_L_SQUOTE] = ACTIONS(1549), - [anon_sym_u_SQUOTE] = ACTIONS(1549), - [anon_sym_U_SQUOTE] = ACTIONS(1549), - [anon_sym_u8_SQUOTE] = ACTIONS(1549), - [anon_sym_SQUOTE] = ACTIONS(1549), - [anon_sym_L_DQUOTE] = ACTIONS(1551), - [anon_sym_u_DQUOTE] = ACTIONS(1551), - [anon_sym_U_DQUOTE] = ACTIONS(1551), - [anon_sym_u8_DQUOTE] = ACTIONS(1551), - [anon_sym_DQUOTE] = ACTIONS(1551), - [sym_true] = ACTIONS(1553), - [sym_false] = ACTIONS(1553), - [sym_null] = ACTIONS(1553), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1661), - [anon_sym_R_DQUOTE] = ACTIONS(1559), - [anon_sym_LR_DQUOTE] = ACTIONS(1559), - [anon_sym_uR_DQUOTE] = ACTIONS(1559), - [anon_sym_UR_DQUOTE] = ACTIONS(1559), - [anon_sym_u8R_DQUOTE] = ACTIONS(1559), - [anon_sym_co_await] = ACTIONS(1663), - [anon_sym_new] = ACTIONS(1563), - [anon_sym_requires] = ACTIONS(1565), - [sym_this] = ACTIONS(1553), - [sym_nullptr] = ACTIONS(1553), + [ts_builtin_sym_end] = ACTIONS(3386), + [sym_identifier] = ACTIONS(3384), + [aux_sym_preproc_include_token1] = ACTIONS(3384), + [aux_sym_preproc_def_token1] = ACTIONS(3384), + [aux_sym_preproc_if_token1] = ACTIONS(3384), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3384), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3384), + [sym_preproc_directive] = ACTIONS(3384), + [anon_sym_LPAREN2] = ACTIONS(3386), + [anon_sym_BANG] = ACTIONS(3386), + [anon_sym_TILDE] = ACTIONS(3386), + [anon_sym_DASH] = ACTIONS(3384), + [anon_sym_PLUS] = ACTIONS(3384), + [anon_sym_STAR] = ACTIONS(3386), + [anon_sym_AMP_AMP] = ACTIONS(3386), + [anon_sym_AMP] = ACTIONS(3384), + [anon_sym_typedef] = ACTIONS(3384), + [anon_sym_extern] = ACTIONS(3384), + [anon_sym___attribute__] = ACTIONS(3384), + [anon_sym_COLON_COLON] = ACTIONS(3386), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3386), + [anon_sym___declspec] = ACTIONS(3384), + [anon_sym___based] = ACTIONS(3384), + [anon_sym___cdecl] = ACTIONS(3384), + [anon_sym___clrcall] = ACTIONS(3384), + [anon_sym___stdcall] = ACTIONS(3384), + [anon_sym___fastcall] = ACTIONS(3384), + [anon_sym___thiscall] = ACTIONS(3384), + [anon_sym___vectorcall] = ACTIONS(3384), + [anon_sym_LBRACE] = ACTIONS(3386), + [anon_sym_LBRACK] = ACTIONS(3384), + [anon_sym_static] = ACTIONS(3384), + [anon_sym_register] = ACTIONS(3384), + [anon_sym_inline] = ACTIONS(3384), + [anon_sym_thread_local] = ACTIONS(3384), + [anon_sym_const] = ACTIONS(3384), + [anon_sym_constexpr] = ACTIONS(3384), + [anon_sym_volatile] = ACTIONS(3384), + [anon_sym_restrict] = ACTIONS(3384), + [anon_sym___restrict__] = ACTIONS(3384), + [anon_sym__Atomic] = ACTIONS(3384), + [anon_sym__Noreturn] = ACTIONS(3384), + [anon_sym_noreturn] = ACTIONS(3384), + [anon_sym_mutable] = ACTIONS(3384), + [anon_sym_constinit] = ACTIONS(3384), + [anon_sym_consteval] = ACTIONS(3384), + [anon_sym_signed] = ACTIONS(3384), + [anon_sym_unsigned] = ACTIONS(3384), + [anon_sym_long] = ACTIONS(3384), + [anon_sym_short] = ACTIONS(3384), + [sym_primitive_type] = ACTIONS(3384), + [anon_sym_enum] = ACTIONS(3384), + [anon_sym_class] = ACTIONS(3384), + [anon_sym_struct] = ACTIONS(3384), + [anon_sym_union] = ACTIONS(3384), + [anon_sym_if] = ACTIONS(3384), + [anon_sym_switch] = ACTIONS(3384), + [anon_sym_case] = ACTIONS(3384), + [anon_sym_default] = ACTIONS(3384), + [anon_sym_while] = ACTIONS(3384), + [anon_sym_do] = ACTIONS(3384), + [anon_sym_for] = ACTIONS(3384), + [anon_sym_return] = ACTIONS(3384), + [anon_sym_break] = ACTIONS(3384), + [anon_sym_continue] = ACTIONS(3384), + [anon_sym_goto] = ACTIONS(3384), + [anon_sym_not] = ACTIONS(3384), + [anon_sym_compl] = ACTIONS(3384), + [anon_sym_DASH_DASH] = ACTIONS(3386), + [anon_sym_PLUS_PLUS] = ACTIONS(3386), + [anon_sym_sizeof] = ACTIONS(3384), + [anon_sym_offsetof] = ACTIONS(3384), + [anon_sym__Generic] = ACTIONS(3384), + [anon_sym_asm] = ACTIONS(3384), + [anon_sym___asm__] = ACTIONS(3384), + [sym_number_literal] = ACTIONS(3386), + [anon_sym_L_SQUOTE] = ACTIONS(3386), + [anon_sym_u_SQUOTE] = ACTIONS(3386), + [anon_sym_U_SQUOTE] = ACTIONS(3386), + [anon_sym_u8_SQUOTE] = ACTIONS(3386), + [anon_sym_SQUOTE] = ACTIONS(3386), + [anon_sym_L_DQUOTE] = ACTIONS(3386), + [anon_sym_u_DQUOTE] = ACTIONS(3386), + [anon_sym_U_DQUOTE] = ACTIONS(3386), + [anon_sym_u8_DQUOTE] = ACTIONS(3386), + [anon_sym_DQUOTE] = ACTIONS(3386), + [sym_true] = ACTIONS(3384), + [sym_false] = ACTIONS(3384), + [anon_sym_NULL] = ACTIONS(3384), + [anon_sym_nullptr] = ACTIONS(3384), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3384), + [anon_sym_decltype] = ACTIONS(3384), + [anon_sym_virtual] = ACTIONS(3384), + [anon_sym_explicit] = ACTIONS(3384), + [anon_sym_typename] = ACTIONS(3384), + [anon_sym_template] = ACTIONS(3384), + [anon_sym_operator] = ACTIONS(3384), + [anon_sym_try] = ACTIONS(3384), + [anon_sym_delete] = ACTIONS(3384), + [anon_sym_throw] = ACTIONS(3384), + [anon_sym_namespace] = ACTIONS(3384), + [anon_sym_using] = ACTIONS(3384), + [anon_sym_static_assert] = ACTIONS(3384), + [anon_sym_concept] = ACTIONS(3384), + [anon_sym_co_return] = ACTIONS(3384), + [anon_sym_co_yield] = ACTIONS(3384), + [anon_sym_R_DQUOTE] = ACTIONS(3386), + [anon_sym_LR_DQUOTE] = ACTIONS(3386), + [anon_sym_uR_DQUOTE] = ACTIONS(3386), + [anon_sym_UR_DQUOTE] = ACTIONS(3386), + [anon_sym_u8R_DQUOTE] = ACTIONS(3386), + [anon_sym_co_await] = ACTIONS(3384), + [anon_sym_new] = ACTIONS(3384), + [anon_sym_requires] = ACTIONS(3384), + [sym_this] = ACTIONS(3384), }, [1375] = { - [sym__expression] = STATE(3464), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2984), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2984), - [sym_call_expression] = STATE(2984), - [sym_field_expression] = STATE(2984), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2984), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_lambda_default_capture] = STATE(5941), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2984), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(3047), - [anon_sym_LPAREN2] = ACTIONS(3049), - [anon_sym_BANG] = ACTIONS(3053), - [anon_sym_TILDE] = ACTIONS(3053), - [anon_sym_DASH] = ACTIONS(3051), - [anon_sym_PLUS] = ACTIONS(3051), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(3422), - [anon_sym_COLON_COLON] = ACTIONS(3055), - [anon_sym_LBRACK] = ACTIONS(1539), - [anon_sym_RBRACK] = ACTIONS(3480), - [anon_sym_EQ] = ACTIONS(3426), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(3051), - [anon_sym_compl] = ACTIONS(3051), - [anon_sym_DASH_DASH] = ACTIONS(3057), - [anon_sym_PLUS_PLUS] = ACTIONS(3057), - [anon_sym_sizeof] = ACTIONS(3059), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(3061), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(3063), - [anon_sym_new] = ACTIONS(3065), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [ts_builtin_sym_end] = ACTIONS(3366), + [sym_identifier] = ACTIONS(3364), + [aux_sym_preproc_include_token1] = ACTIONS(3364), + [aux_sym_preproc_def_token1] = ACTIONS(3364), + [aux_sym_preproc_if_token1] = ACTIONS(3364), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3364), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3364), + [sym_preproc_directive] = ACTIONS(3364), + [anon_sym_LPAREN2] = ACTIONS(3366), + [anon_sym_BANG] = ACTIONS(3366), + [anon_sym_TILDE] = ACTIONS(3366), + [anon_sym_DASH] = ACTIONS(3364), + [anon_sym_PLUS] = ACTIONS(3364), + [anon_sym_STAR] = ACTIONS(3366), + [anon_sym_AMP_AMP] = ACTIONS(3366), + [anon_sym_AMP] = ACTIONS(3364), + [anon_sym_typedef] = ACTIONS(3364), + [anon_sym_extern] = ACTIONS(3364), + [anon_sym___attribute__] = ACTIONS(3364), + [anon_sym_COLON_COLON] = ACTIONS(3366), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3366), + [anon_sym___declspec] = ACTIONS(3364), + [anon_sym___based] = ACTIONS(3364), + [anon_sym___cdecl] = ACTIONS(3364), + [anon_sym___clrcall] = ACTIONS(3364), + [anon_sym___stdcall] = ACTIONS(3364), + [anon_sym___fastcall] = ACTIONS(3364), + [anon_sym___thiscall] = ACTIONS(3364), + [anon_sym___vectorcall] = ACTIONS(3364), + [anon_sym_LBRACE] = ACTIONS(3366), + [anon_sym_LBRACK] = ACTIONS(3364), + [anon_sym_static] = ACTIONS(3364), + [anon_sym_register] = ACTIONS(3364), + [anon_sym_inline] = ACTIONS(3364), + [anon_sym_thread_local] = ACTIONS(3364), + [anon_sym_const] = ACTIONS(3364), + [anon_sym_constexpr] = ACTIONS(3364), + [anon_sym_volatile] = ACTIONS(3364), + [anon_sym_restrict] = ACTIONS(3364), + [anon_sym___restrict__] = ACTIONS(3364), + [anon_sym__Atomic] = ACTIONS(3364), + [anon_sym__Noreturn] = ACTIONS(3364), + [anon_sym_noreturn] = ACTIONS(3364), + [anon_sym_mutable] = ACTIONS(3364), + [anon_sym_constinit] = ACTIONS(3364), + [anon_sym_consteval] = ACTIONS(3364), + [anon_sym_signed] = ACTIONS(3364), + [anon_sym_unsigned] = ACTIONS(3364), + [anon_sym_long] = ACTIONS(3364), + [anon_sym_short] = ACTIONS(3364), + [sym_primitive_type] = ACTIONS(3364), + [anon_sym_enum] = ACTIONS(3364), + [anon_sym_class] = ACTIONS(3364), + [anon_sym_struct] = ACTIONS(3364), + [anon_sym_union] = ACTIONS(3364), + [anon_sym_if] = ACTIONS(3364), + [anon_sym_switch] = ACTIONS(3364), + [anon_sym_case] = ACTIONS(3364), + [anon_sym_default] = ACTIONS(3364), + [anon_sym_while] = ACTIONS(3364), + [anon_sym_do] = ACTIONS(3364), + [anon_sym_for] = ACTIONS(3364), + [anon_sym_return] = ACTIONS(3364), + [anon_sym_break] = ACTIONS(3364), + [anon_sym_continue] = ACTIONS(3364), + [anon_sym_goto] = ACTIONS(3364), + [anon_sym_not] = ACTIONS(3364), + [anon_sym_compl] = ACTIONS(3364), + [anon_sym_DASH_DASH] = ACTIONS(3366), + [anon_sym_PLUS_PLUS] = ACTIONS(3366), + [anon_sym_sizeof] = ACTIONS(3364), + [anon_sym_offsetof] = ACTIONS(3364), + [anon_sym__Generic] = ACTIONS(3364), + [anon_sym_asm] = ACTIONS(3364), + [anon_sym___asm__] = ACTIONS(3364), + [sym_number_literal] = ACTIONS(3366), + [anon_sym_L_SQUOTE] = ACTIONS(3366), + [anon_sym_u_SQUOTE] = ACTIONS(3366), + [anon_sym_U_SQUOTE] = ACTIONS(3366), + [anon_sym_u8_SQUOTE] = ACTIONS(3366), + [anon_sym_SQUOTE] = ACTIONS(3366), + [anon_sym_L_DQUOTE] = ACTIONS(3366), + [anon_sym_u_DQUOTE] = ACTIONS(3366), + [anon_sym_U_DQUOTE] = ACTIONS(3366), + [anon_sym_u8_DQUOTE] = ACTIONS(3366), + [anon_sym_DQUOTE] = ACTIONS(3366), + [sym_true] = ACTIONS(3364), + [sym_false] = ACTIONS(3364), + [anon_sym_NULL] = ACTIONS(3364), + [anon_sym_nullptr] = ACTIONS(3364), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3364), + [anon_sym_decltype] = ACTIONS(3364), + [anon_sym_virtual] = ACTIONS(3364), + [anon_sym_explicit] = ACTIONS(3364), + [anon_sym_typename] = ACTIONS(3364), + [anon_sym_template] = ACTIONS(3364), + [anon_sym_operator] = ACTIONS(3364), + [anon_sym_try] = ACTIONS(3364), + [anon_sym_delete] = ACTIONS(3364), + [anon_sym_throw] = ACTIONS(3364), + [anon_sym_namespace] = ACTIONS(3364), + [anon_sym_using] = ACTIONS(3364), + [anon_sym_static_assert] = ACTIONS(3364), + [anon_sym_concept] = ACTIONS(3364), + [anon_sym_co_return] = ACTIONS(3364), + [anon_sym_co_yield] = ACTIONS(3364), + [anon_sym_R_DQUOTE] = ACTIONS(3366), + [anon_sym_LR_DQUOTE] = ACTIONS(3366), + [anon_sym_uR_DQUOTE] = ACTIONS(3366), + [anon_sym_UR_DQUOTE] = ACTIONS(3366), + [anon_sym_u8R_DQUOTE] = ACTIONS(3366), + [anon_sym_co_await] = ACTIONS(3364), + [anon_sym_new] = ACTIONS(3364), + [anon_sym_requires] = ACTIONS(3364), + [sym_this] = ACTIONS(3364), }, [1376] = { - [sym__expression] = STATE(3464), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2984), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2984), - [sym_call_expression] = STATE(2984), - [sym_field_expression] = STATE(2984), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2984), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_lambda_default_capture] = STATE(5941), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2984), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(3047), - [anon_sym_LPAREN2] = ACTIONS(3049), - [anon_sym_BANG] = ACTIONS(3053), - [anon_sym_TILDE] = ACTIONS(3053), - [anon_sym_DASH] = ACTIONS(3051), - [anon_sym_PLUS] = ACTIONS(3051), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(3422), - [anon_sym_COLON_COLON] = ACTIONS(3055), - [anon_sym_LBRACK] = ACTIONS(1539), - [anon_sym_RBRACK] = ACTIONS(3482), - [anon_sym_EQ] = ACTIONS(3426), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(3051), - [anon_sym_compl] = ACTIONS(3051), - [anon_sym_DASH_DASH] = ACTIONS(3057), - [anon_sym_PLUS_PLUS] = ACTIONS(3057), - [anon_sym_sizeof] = ACTIONS(3059), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(3061), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(3063), - [anon_sym_new] = ACTIONS(3065), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [ts_builtin_sym_end] = ACTIONS(3292), + [sym_identifier] = ACTIONS(3290), + [aux_sym_preproc_include_token1] = ACTIONS(3290), + [aux_sym_preproc_def_token1] = ACTIONS(3290), + [aux_sym_preproc_if_token1] = ACTIONS(3290), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3290), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3290), + [sym_preproc_directive] = ACTIONS(3290), + [anon_sym_LPAREN2] = ACTIONS(3292), + [anon_sym_BANG] = ACTIONS(3292), + [anon_sym_TILDE] = ACTIONS(3292), + [anon_sym_DASH] = ACTIONS(3290), + [anon_sym_PLUS] = ACTIONS(3290), + [anon_sym_STAR] = ACTIONS(3292), + [anon_sym_AMP_AMP] = ACTIONS(3292), + [anon_sym_AMP] = ACTIONS(3290), + [anon_sym_typedef] = ACTIONS(3290), + [anon_sym_extern] = ACTIONS(3290), + [anon_sym___attribute__] = ACTIONS(3290), + [anon_sym_COLON_COLON] = ACTIONS(3292), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3292), + [anon_sym___declspec] = ACTIONS(3290), + [anon_sym___based] = ACTIONS(3290), + [anon_sym___cdecl] = ACTIONS(3290), + [anon_sym___clrcall] = ACTIONS(3290), + [anon_sym___stdcall] = ACTIONS(3290), + [anon_sym___fastcall] = ACTIONS(3290), + [anon_sym___thiscall] = ACTIONS(3290), + [anon_sym___vectorcall] = ACTIONS(3290), + [anon_sym_LBRACE] = ACTIONS(3292), + [anon_sym_LBRACK] = ACTIONS(3290), + [anon_sym_static] = ACTIONS(3290), + [anon_sym_register] = ACTIONS(3290), + [anon_sym_inline] = ACTIONS(3290), + [anon_sym_thread_local] = ACTIONS(3290), + [anon_sym_const] = ACTIONS(3290), + [anon_sym_constexpr] = ACTIONS(3290), + [anon_sym_volatile] = ACTIONS(3290), + [anon_sym_restrict] = ACTIONS(3290), + [anon_sym___restrict__] = ACTIONS(3290), + [anon_sym__Atomic] = ACTIONS(3290), + [anon_sym__Noreturn] = ACTIONS(3290), + [anon_sym_noreturn] = ACTIONS(3290), + [anon_sym_mutable] = ACTIONS(3290), + [anon_sym_constinit] = ACTIONS(3290), + [anon_sym_consteval] = ACTIONS(3290), + [anon_sym_signed] = ACTIONS(3290), + [anon_sym_unsigned] = ACTIONS(3290), + [anon_sym_long] = ACTIONS(3290), + [anon_sym_short] = ACTIONS(3290), + [sym_primitive_type] = ACTIONS(3290), + [anon_sym_enum] = ACTIONS(3290), + [anon_sym_class] = ACTIONS(3290), + [anon_sym_struct] = ACTIONS(3290), + [anon_sym_union] = ACTIONS(3290), + [anon_sym_if] = ACTIONS(3290), + [anon_sym_switch] = ACTIONS(3290), + [anon_sym_case] = ACTIONS(3290), + [anon_sym_default] = ACTIONS(3290), + [anon_sym_while] = ACTIONS(3290), + [anon_sym_do] = ACTIONS(3290), + [anon_sym_for] = ACTIONS(3290), + [anon_sym_return] = ACTIONS(3290), + [anon_sym_break] = ACTIONS(3290), + [anon_sym_continue] = ACTIONS(3290), + [anon_sym_goto] = ACTIONS(3290), + [anon_sym_not] = ACTIONS(3290), + [anon_sym_compl] = ACTIONS(3290), + [anon_sym_DASH_DASH] = ACTIONS(3292), + [anon_sym_PLUS_PLUS] = ACTIONS(3292), + [anon_sym_sizeof] = ACTIONS(3290), + [anon_sym_offsetof] = ACTIONS(3290), + [anon_sym__Generic] = ACTIONS(3290), + [anon_sym_asm] = ACTIONS(3290), + [anon_sym___asm__] = ACTIONS(3290), + [sym_number_literal] = ACTIONS(3292), + [anon_sym_L_SQUOTE] = ACTIONS(3292), + [anon_sym_u_SQUOTE] = ACTIONS(3292), + [anon_sym_U_SQUOTE] = ACTIONS(3292), + [anon_sym_u8_SQUOTE] = ACTIONS(3292), + [anon_sym_SQUOTE] = ACTIONS(3292), + [anon_sym_L_DQUOTE] = ACTIONS(3292), + [anon_sym_u_DQUOTE] = ACTIONS(3292), + [anon_sym_U_DQUOTE] = ACTIONS(3292), + [anon_sym_u8_DQUOTE] = ACTIONS(3292), + [anon_sym_DQUOTE] = ACTIONS(3292), + [sym_true] = ACTIONS(3290), + [sym_false] = ACTIONS(3290), + [anon_sym_NULL] = ACTIONS(3290), + [anon_sym_nullptr] = ACTIONS(3290), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3290), + [anon_sym_decltype] = ACTIONS(3290), + [anon_sym_virtual] = ACTIONS(3290), + [anon_sym_explicit] = ACTIONS(3290), + [anon_sym_typename] = ACTIONS(3290), + [anon_sym_template] = ACTIONS(3290), + [anon_sym_operator] = ACTIONS(3290), + [anon_sym_try] = ACTIONS(3290), + [anon_sym_delete] = ACTIONS(3290), + [anon_sym_throw] = ACTIONS(3290), + [anon_sym_namespace] = ACTIONS(3290), + [anon_sym_using] = ACTIONS(3290), + [anon_sym_static_assert] = ACTIONS(3290), + [anon_sym_concept] = ACTIONS(3290), + [anon_sym_co_return] = ACTIONS(3290), + [anon_sym_co_yield] = ACTIONS(3290), + [anon_sym_R_DQUOTE] = ACTIONS(3292), + [anon_sym_LR_DQUOTE] = ACTIONS(3292), + [anon_sym_uR_DQUOTE] = ACTIONS(3292), + [anon_sym_UR_DQUOTE] = ACTIONS(3292), + [anon_sym_u8R_DQUOTE] = ACTIONS(3292), + [anon_sym_co_await] = ACTIONS(3290), + [anon_sym_new] = ACTIONS(3290), + [anon_sym_requires] = ACTIONS(3290), + [sym_this] = ACTIONS(3290), }, [1377] = { - [sym__expression] = STATE(2654), - [sym_conditional_expression] = STATE(2786), - [sym_assignment_expression] = STATE(2786), - [sym_pointer_expression] = STATE(2784), - [sym_unary_expression] = STATE(2786), - [sym_binary_expression] = STATE(2786), - [sym_update_expression] = STATE(2786), - [sym_cast_expression] = STATE(2786), - [sym_sizeof_expression] = STATE(2786), - [sym_subscript_expression] = STATE(2784), - [sym_call_expression] = STATE(2784), - [sym_field_expression] = STATE(2784), - [sym_compound_literal_expression] = STATE(2786), - [sym_parenthesized_expression] = STATE(2784), - [sym_char_literal] = STATE(2651), - [sym_concatenated_string] = STATE(2651), - [sym_string_literal] = STATE(1840), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5891), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(2786), - [sym_raw_string_literal] = STATE(1840), - [sym_co_await_expression] = STATE(2786), - [sym_new_expression] = STATE(2786), - [sym_delete_expression] = STATE(2786), - [sym_requires_clause] = STATE(2786), - [sym_requires_expression] = STATE(2786), - [sym_lambda_expression] = STATE(2786), - [sym_lambda_capture_specifier] = STATE(4484), - [sym_fold_expression] = STATE(2786), - [sym_parameter_pack_expansion] = STATE(2786), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4584), - [sym_qualified_identifier] = STATE(2784), - [sym_qualified_type_identifier] = STATE(5891), - [sym_user_defined_literal] = STATE(2786), - [sym_identifier] = ACTIONS(1567), - [anon_sym_LPAREN2] = ACTIONS(3416), - [anon_sym_BANG] = ACTIONS(1573), - [anon_sym_TILDE] = ACTIONS(1573), - [anon_sym_DASH] = ACTIONS(1571), - [anon_sym_PLUS] = ACTIONS(1571), - [anon_sym_STAR] = ACTIONS(3416), - [anon_sym_AMP_AMP] = ACTIONS(3416), - [anon_sym_AMP] = ACTIONS(3418), - [anon_sym_LT] = ACTIONS(3416), - [anon_sym_COLON_COLON] = ACTIONS(1577), - [anon_sym_LBRACE] = ACTIONS(3416), - [anon_sym_LBRACK] = ACTIONS(3416), - [sym_primitive_type] = ACTIONS(1581), - [anon_sym_not] = ACTIONS(1571), - [anon_sym_compl] = ACTIONS(1571), - [anon_sym_DASH_DASH] = ACTIONS(1583), - [anon_sym_PLUS_PLUS] = ACTIONS(1583), - [anon_sym_sizeof] = ACTIONS(1585), - [sym_number_literal] = ACTIONS(1587), - [anon_sym_L_SQUOTE] = ACTIONS(1589), - [anon_sym_u_SQUOTE] = ACTIONS(1589), - [anon_sym_U_SQUOTE] = ACTIONS(1589), - [anon_sym_u8_SQUOTE] = ACTIONS(1589), - [anon_sym_SQUOTE] = ACTIONS(1589), - [anon_sym_L_DQUOTE] = ACTIONS(1591), - [anon_sym_u_DQUOTE] = ACTIONS(1591), - [anon_sym_U_DQUOTE] = ACTIONS(1591), - [anon_sym_u8_DQUOTE] = ACTIONS(1591), - [anon_sym_DQUOTE] = ACTIONS(1591), - [sym_true] = ACTIONS(1593), - [sym_false] = ACTIONS(1593), - [sym_null] = ACTIONS(1593), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1595), - [anon_sym_R_DQUOTE] = ACTIONS(1597), - [anon_sym_LR_DQUOTE] = ACTIONS(1597), - [anon_sym_uR_DQUOTE] = ACTIONS(1597), - [anon_sym_UR_DQUOTE] = ACTIONS(1597), - [anon_sym_u8R_DQUOTE] = ACTIONS(1597), - [anon_sym_co_await] = ACTIONS(1599), - [anon_sym_new] = ACTIONS(1601), - [anon_sym_requires] = ACTIONS(1603), - [sym_this] = ACTIONS(1593), - [sym_nullptr] = ACTIONS(1593), + [sym__declaration_modifiers] = STATE(2497), + [sym__declaration_specifiers] = STATE(5482), + [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__type_specifier] = STATE(4230), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym_virtual] = STATE(2497), + [sym_dependent_type] = STATE(3723), + [sym_template_type] = STATE(3680), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5779), + [sym_qualified_type_identifier] = STATE(3694), + [aux_sym__declaration_specifiers_repeat1] = STATE(2497), + [aux_sym_sized_type_specifier_repeat1] = STATE(3751), + [sym_identifier] = ACTIONS(3657), + [anon_sym_COMMA] = ACTIONS(3659), + [anon_sym_BANG] = ACTIONS(3661), + [anon_sym_TILDE] = ACTIONS(3659), + [anon_sym_DASH] = ACTIONS(3661), + [anon_sym_PLUS] = ACTIONS(3661), + [anon_sym_STAR] = ACTIONS(3661), + [anon_sym_SLASH] = ACTIONS(3661), + [anon_sym_PERCENT] = ACTIONS(3661), + [anon_sym_PIPE_PIPE] = ACTIONS(3659), + [anon_sym_AMP_AMP] = ACTIONS(3659), + [anon_sym_PIPE] = ACTIONS(3661), + [anon_sym_CARET] = ACTIONS(3661), + [anon_sym_AMP] = ACTIONS(3661), + [anon_sym_EQ_EQ] = ACTIONS(3659), + [anon_sym_BANG_EQ] = ACTIONS(3659), + [anon_sym_GT] = ACTIONS(3661), + [anon_sym_GT_EQ] = ACTIONS(3659), + [anon_sym_LT_EQ] = ACTIONS(3661), + [anon_sym_LT] = ACTIONS(3661), + [anon_sym_LT_LT] = ACTIONS(3661), + [anon_sym_GT_GT] = ACTIONS(3661), + [anon_sym_extern] = ACTIONS(53), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(3663), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1813), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_EQ] = ACTIONS(3661), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(53), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(3665), + [anon_sym_unsigned] = ACTIONS(3665), + [anon_sym_long] = ACTIONS(3665), + [anon_sym_short] = ACTIONS(3665), + [sym_primitive_type] = ACTIONS(3667), + [anon_sym_enum] = ACTIONS(3669), + [anon_sym_class] = ACTIONS(3671), + [anon_sym_struct] = ACTIONS(3673), + [anon_sym_union] = ACTIONS(3675), + [anon_sym_STAR_EQ] = ACTIONS(3659), + [anon_sym_SLASH_EQ] = ACTIONS(3659), + [anon_sym_PERCENT_EQ] = ACTIONS(3659), + [anon_sym_PLUS_EQ] = ACTIONS(3659), + [anon_sym_DASH_EQ] = ACTIONS(3659), + [anon_sym_LT_LT_EQ] = ACTIONS(3659), + [anon_sym_GT_GT_EQ] = ACTIONS(3659), + [anon_sym_AMP_EQ] = ACTIONS(3659), + [anon_sym_CARET_EQ] = ACTIONS(3659), + [anon_sym_PIPE_EQ] = ACTIONS(3659), + [anon_sym_and_eq] = ACTIONS(3661), + [anon_sym_or_eq] = ACTIONS(3661), + [anon_sym_xor_eq] = ACTIONS(3661), + [anon_sym_not] = ACTIONS(3661), + [anon_sym_compl] = ACTIONS(3661), + [anon_sym_LT_EQ_GT] = ACTIONS(3659), + [anon_sym_or] = ACTIONS(3661), + [anon_sym_and] = ACTIONS(3661), + [anon_sym_bitor] = ACTIONS(3661), + [anon_sym_xor] = ACTIONS(3661), + [anon_sym_bitand] = ACTIONS(3661), + [anon_sym_not_eq] = ACTIONS(3661), + [anon_sym_DASH_DASH] = ACTIONS(3659), + [anon_sym_PLUS_PLUS] = ACTIONS(3659), + [anon_sym_DASH_GT] = ACTIONS(3661), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(113), + [anon_sym_decltype] = ACTIONS(115), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_typename] = ACTIONS(3677), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(3679), + [anon_sym_co_await] = ACTIONS(3661), + [anon_sym_new] = ACTIONS(3679), + [anon_sym_DASH_GT_STAR] = ACTIONS(3659), + [anon_sym_LPAREN_RPAREN] = ACTIONS(3659), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3659), + [anon_sym_DQUOTE_DQUOTE] = ACTIONS(3681), }, [1378] = { - [sym__expression] = STATE(3464), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2984), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2984), - [sym_call_expression] = STATE(2984), - [sym_field_expression] = STATE(2984), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2984), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_lambda_default_capture] = STATE(5941), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2984), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(3466), - [anon_sym_LPAREN2] = ACTIONS(3049), - [anon_sym_BANG] = ACTIONS(3053), - [anon_sym_TILDE] = ACTIONS(3053), - [anon_sym_DASH] = ACTIONS(3051), - [anon_sym_PLUS] = ACTIONS(3051), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(3422), - [anon_sym_COLON_COLON] = ACTIONS(3055), - [anon_sym_LBRACK] = ACTIONS(1539), - [anon_sym_RBRACK] = ACTIONS(3452), - [anon_sym_EQ] = ACTIONS(3426), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(3051), - [anon_sym_compl] = ACTIONS(3051), - [anon_sym_DASH_DASH] = ACTIONS(3057), - [anon_sym_PLUS_PLUS] = ACTIONS(3057), - [anon_sym_sizeof] = ACTIONS(3059), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(3061), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(3063), - [anon_sym_new] = ACTIONS(3065), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [sym__declaration_modifiers] = STATE(2497), + [sym__declaration_specifiers] = STATE(5482), + [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__type_specifier] = STATE(4230), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym_virtual] = STATE(2497), + [sym_dependent_type] = STATE(3723), + [sym_template_type] = STATE(3680), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5779), + [sym_qualified_type_identifier] = STATE(3694), + [aux_sym__declaration_specifiers_repeat1] = STATE(2497), + [aux_sym_sized_type_specifier_repeat1] = STATE(3751), + [sym_identifier] = ACTIONS(3657), + [anon_sym_COMMA] = ACTIONS(3683), + [anon_sym_BANG] = ACTIONS(3685), + [anon_sym_TILDE] = ACTIONS(3683), + [anon_sym_DASH] = ACTIONS(3685), + [anon_sym_PLUS] = ACTIONS(3685), + [anon_sym_STAR] = ACTIONS(3685), + [anon_sym_SLASH] = ACTIONS(3685), + [anon_sym_PERCENT] = ACTIONS(3685), + [anon_sym_PIPE_PIPE] = ACTIONS(3683), + [anon_sym_AMP_AMP] = ACTIONS(3683), + [anon_sym_PIPE] = ACTIONS(3685), + [anon_sym_CARET] = ACTIONS(3685), + [anon_sym_AMP] = ACTIONS(3685), + [anon_sym_EQ_EQ] = ACTIONS(3683), + [anon_sym_BANG_EQ] = ACTIONS(3683), + [anon_sym_GT] = ACTIONS(3685), + [anon_sym_GT_EQ] = ACTIONS(3683), + [anon_sym_LT_EQ] = ACTIONS(3685), + [anon_sym_LT] = ACTIONS(3685), + [anon_sym_LT_LT] = ACTIONS(3685), + [anon_sym_GT_GT] = ACTIONS(3685), + [anon_sym_extern] = ACTIONS(53), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(3663), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1813), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_EQ] = ACTIONS(3685), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(53), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(3665), + [anon_sym_unsigned] = ACTIONS(3665), + [anon_sym_long] = ACTIONS(3665), + [anon_sym_short] = ACTIONS(3665), + [sym_primitive_type] = ACTIONS(3667), + [anon_sym_enum] = ACTIONS(3669), + [anon_sym_class] = ACTIONS(3671), + [anon_sym_struct] = ACTIONS(3673), + [anon_sym_union] = ACTIONS(3675), + [anon_sym_STAR_EQ] = ACTIONS(3683), + [anon_sym_SLASH_EQ] = ACTIONS(3683), + [anon_sym_PERCENT_EQ] = ACTIONS(3683), + [anon_sym_PLUS_EQ] = ACTIONS(3683), + [anon_sym_DASH_EQ] = ACTIONS(3683), + [anon_sym_LT_LT_EQ] = ACTIONS(3683), + [anon_sym_GT_GT_EQ] = ACTIONS(3683), + [anon_sym_AMP_EQ] = ACTIONS(3683), + [anon_sym_CARET_EQ] = ACTIONS(3683), + [anon_sym_PIPE_EQ] = ACTIONS(3683), + [anon_sym_and_eq] = ACTIONS(3685), + [anon_sym_or_eq] = ACTIONS(3685), + [anon_sym_xor_eq] = ACTIONS(3685), + [anon_sym_not] = ACTIONS(3685), + [anon_sym_compl] = ACTIONS(3685), + [anon_sym_LT_EQ_GT] = ACTIONS(3683), + [anon_sym_or] = ACTIONS(3685), + [anon_sym_and] = ACTIONS(3685), + [anon_sym_bitor] = ACTIONS(3685), + [anon_sym_xor] = ACTIONS(3685), + [anon_sym_bitand] = ACTIONS(3685), + [anon_sym_not_eq] = ACTIONS(3685), + [anon_sym_DASH_DASH] = ACTIONS(3683), + [anon_sym_PLUS_PLUS] = ACTIONS(3683), + [anon_sym_DASH_GT] = ACTIONS(3685), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(113), + [anon_sym_decltype] = ACTIONS(115), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_typename] = ACTIONS(3677), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(3687), + [anon_sym_co_await] = ACTIONS(3685), + [anon_sym_new] = ACTIONS(3687), + [anon_sym_DASH_GT_STAR] = ACTIONS(3683), + [anon_sym_LPAREN_RPAREN] = ACTIONS(3683), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3683), + [anon_sym_DQUOTE_DQUOTE] = ACTIONS(3689), }, [1379] = { - [sym__expression] = STATE(3721), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_initializer_list] = STATE(6558), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2954), - [anon_sym_LPAREN2] = ACTIONS(984), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1489), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_default] = ACTIONS(3484), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(3486), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [sym_function_definition] = STATE(1369), + [sym_declaration] = STATE(1369), + [sym__declaration_modifiers] = STATE(3706), + [sym__declaration_specifiers] = STATE(4613), + [sym_attribute_specifier] = STATE(3706), + [sym_attribute_declaration] = STATE(3706), + [sym_ms_declspec_modifier] = STATE(3706), + [sym_ms_based_modifier] = STATE(7654), + [sym_ms_call_modifier] = STATE(2381), + [sym__declarator] = STATE(5881), + [sym_parenthesized_declarator] = STATE(5640), + [sym_attributed_declarator] = STATE(5640), + [sym_pointer_declarator] = STATE(5640), + [sym_function_declarator] = STATE(5539), + [sym_array_declarator] = STATE(5640), + [sym_storage_class_specifier] = STATE(3706), + [sym_type_qualifier] = STATE(3706), + [sym__type_specifier] = STATE(3809), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), + [sym__empty_declaration] = STATE(1369), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym_virtual] = STATE(3706), + [sym_explicit_function_specifier] = STATE(2235), + [sym_dependent_type] = STATE(3723), + [sym_template_declaration] = STATE(1369), + [sym_operator_cast] = STATE(5890), + [sym__constructor_specifiers] = STATE(2235), + [sym_operator_cast_definition] = STATE(1369), + [sym_operator_cast_declaration] = STATE(1369), + [sym_constructor_or_destructor_definition] = STATE(1369), + [sym_constructor_or_destructor_declaration] = STATE(1369), + [sym_friend_declaration] = STATE(1369), + [sym_reference_declarator] = STATE(5640), + [sym_structured_binding_declarator] = STATE(5640), + [sym_template_type] = STATE(3680), + [sym_template_function] = STATE(5640), + [sym_alias_declaration] = STATE(1369), + [sym_concept_definition] = STATE(1369), + [sym_requires_clause] = STATE(1390), + [sym_destructor_name] = STATE(5640), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5146), + [sym_qualified_identifier] = STATE(5640), + [sym_qualified_type_identifier] = STATE(3694), + [sym_qualified_operator_cast_identifier] = STATE(5890), + [sym_operator_name] = STATE(5640), + [aux_sym__declaration_specifiers_repeat1] = STATE(2514), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [aux_sym_operator_cast_definition_repeat1] = STATE(2235), + [sym_identifier] = ACTIONS(3691), + [anon_sym_LPAREN2] = ACTIONS(2560), + [anon_sym_TILDE] = ACTIONS(2562), + [anon_sym_STAR] = ACTIONS(2564), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_extern] = ACTIONS(53), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(3693), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1813), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(45), + [anon_sym___cdecl] = ACTIONS(47), + [anon_sym___clrcall] = ACTIONS(47), + [anon_sym___stdcall] = ACTIONS(47), + [anon_sym___fastcall] = ACTIONS(47), + [anon_sym___thiscall] = ACTIONS(47), + [anon_sym___vectorcall] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(2572), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(53), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(3667), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(113), + [anon_sym_decltype] = ACTIONS(115), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_explicit] = ACTIONS(119), + [anon_sym_typename] = ACTIONS(121), + [anon_sym_template] = ACTIONS(3695), + [anon_sym_operator] = ACTIONS(125), + [anon_sym_friend] = ACTIONS(3697), + [anon_sym_using] = ACTIONS(3699), + [anon_sym_concept] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(3701), }, [1380] = { - [sym__expression] = STATE(3464), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2984), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2984), - [sym_call_expression] = STATE(2984), - [sym_field_expression] = STATE(2984), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2984), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_lambda_default_capture] = STATE(5941), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2984), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(3047), - [anon_sym_LPAREN2] = ACTIONS(3049), - [anon_sym_BANG] = ACTIONS(3053), - [anon_sym_TILDE] = ACTIONS(3053), - [anon_sym_DASH] = ACTIONS(3051), - [anon_sym_PLUS] = ACTIONS(3051), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(3422), - [anon_sym_COLON_COLON] = ACTIONS(3055), - [anon_sym_LBRACK] = ACTIONS(1539), - [anon_sym_RBRACK] = ACTIONS(3488), - [anon_sym_EQ] = ACTIONS(3426), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(3051), - [anon_sym_compl] = ACTIONS(3051), - [anon_sym_DASH_DASH] = ACTIONS(3057), - [anon_sym_PLUS_PLUS] = ACTIONS(3057), - [anon_sym_sizeof] = ACTIONS(3059), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(3061), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(3063), - [anon_sym_new] = ACTIONS(3065), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [sym_function_definition] = STATE(2673), + [sym_declaration] = STATE(2673), + [sym__declaration_modifiers] = STATE(3706), + [sym__declaration_specifiers] = STATE(4658), + [sym_attribute_specifier] = STATE(3706), + [sym_attribute_declaration] = STATE(3706), + [sym_ms_declspec_modifier] = STATE(3706), + [sym_ms_based_modifier] = STATE(7654), + [sym_ms_call_modifier] = STATE(2454), + [sym__declarator] = STATE(5881), + [sym_parenthesized_declarator] = STATE(5640), + [sym_attributed_declarator] = STATE(5640), + [sym_pointer_declarator] = STATE(5640), + [sym_function_declarator] = STATE(5507), + [sym_array_declarator] = STATE(5640), + [sym_storage_class_specifier] = STATE(3706), + [sym_type_qualifier] = STATE(3706), + [sym__type_specifier] = STATE(3816), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), + [sym__empty_declaration] = STATE(2673), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym_virtual] = STATE(3706), + [sym_explicit_function_specifier] = STATE(2236), + [sym_dependent_type] = STATE(3723), + [sym_template_declaration] = STATE(2673), + [sym_operator_cast] = STATE(5887), + [sym__constructor_specifiers] = STATE(2236), + [sym_operator_cast_definition] = STATE(2673), + [sym_operator_cast_declaration] = STATE(2673), + [sym_constructor_or_destructor_definition] = STATE(2673), + [sym_constructor_or_destructor_declaration] = STATE(2673), + [sym_friend_declaration] = STATE(2673), + [sym_reference_declarator] = STATE(5640), + [sym_structured_binding_declarator] = STATE(5640), + [sym_template_type] = STATE(3680), + [sym_template_function] = STATE(5640), + [sym_alias_declaration] = STATE(2673), + [sym_concept_definition] = STATE(2673), + [sym_requires_clause] = STATE(1391), + [sym_destructor_name] = STATE(5640), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5146), + [sym_qualified_identifier] = STATE(5640), + [sym_qualified_type_identifier] = STATE(3694), + [sym_qualified_operator_cast_identifier] = STATE(5887), + [sym_operator_name] = STATE(5640), + [aux_sym__declaration_specifiers_repeat1] = STATE(2514), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [aux_sym_operator_cast_definition_repeat1] = STATE(2236), + [sym_identifier] = ACTIONS(3691), + [anon_sym_LPAREN2] = ACTIONS(2560), + [anon_sym_TILDE] = ACTIONS(2562), + [anon_sym_STAR] = ACTIONS(2564), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_extern] = ACTIONS(53), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(3693), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1813), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(45), + [anon_sym___cdecl] = ACTIONS(47), + [anon_sym___clrcall] = ACTIONS(47), + [anon_sym___stdcall] = ACTIONS(47), + [anon_sym___fastcall] = ACTIONS(47), + [anon_sym___thiscall] = ACTIONS(47), + [anon_sym___vectorcall] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(2572), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(53), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(3667), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(113), + [anon_sym_decltype] = ACTIONS(115), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_explicit] = ACTIONS(119), + [anon_sym_typename] = ACTIONS(121), + [anon_sym_template] = ACTIONS(3471), + [anon_sym_operator] = ACTIONS(125), + [anon_sym_friend] = ACTIONS(3473), + [anon_sym_using] = ACTIONS(3703), + [anon_sym_concept] = ACTIONS(3705), + [anon_sym_requires] = ACTIONS(3701), }, [1381] = { - [sym__expression] = STATE(3564), - [sym_comma_expression] = STATE(6029), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2954), - [anon_sym_RPAREN] = ACTIONS(3490), - [anon_sym_LPAREN2] = ACTIONS(984), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [sym_function_definition] = STATE(1258), + [sym_declaration] = STATE(1258), + [sym__declaration_modifiers] = STATE(3706), + [sym__declaration_specifiers] = STATE(4656), + [sym_attribute_specifier] = STATE(3706), + [sym_attribute_declaration] = STATE(3706), + [sym_ms_declspec_modifier] = STATE(3706), + [sym_ms_based_modifier] = STATE(7654), + [sym_ms_call_modifier] = STATE(2383), + [sym__declarator] = STATE(5881), + [sym_parenthesized_declarator] = STATE(5640), + [sym_attributed_declarator] = STATE(5640), + [sym_pointer_declarator] = STATE(5640), + [sym_function_declarator] = STATE(5486), + [sym_array_declarator] = STATE(5640), + [sym_storage_class_specifier] = STATE(3706), + [sym_type_qualifier] = STATE(3706), + [sym__type_specifier] = STATE(3808), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), + [sym__empty_declaration] = STATE(1258), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym_virtual] = STATE(3706), + [sym_explicit_function_specifier] = STATE(2249), + [sym_dependent_type] = STATE(3723), + [sym_template_declaration] = STATE(1258), + [sym_operator_cast] = STATE(5899), + [sym__constructor_specifiers] = STATE(2249), + [sym_operator_cast_definition] = STATE(1258), + [sym_operator_cast_declaration] = STATE(1258), + [sym_constructor_or_destructor_definition] = STATE(1258), + [sym_constructor_or_destructor_declaration] = STATE(1258), + [sym_friend_declaration] = STATE(1258), + [sym_reference_declarator] = STATE(5640), + [sym_structured_binding_declarator] = STATE(5640), + [sym_template_type] = STATE(3680), + [sym_template_function] = STATE(5640), + [sym_alias_declaration] = STATE(1258), + [sym_concept_definition] = STATE(1258), + [sym_requires_clause] = STATE(1389), + [sym_destructor_name] = STATE(5640), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5146), + [sym_qualified_identifier] = STATE(5640), + [sym_qualified_type_identifier] = STATE(3694), + [sym_qualified_operator_cast_identifier] = STATE(5899), + [sym_operator_name] = STATE(5640), + [aux_sym__declaration_specifiers_repeat1] = STATE(2514), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [aux_sym_operator_cast_definition_repeat1] = STATE(2249), + [sym_identifier] = ACTIONS(3691), + [anon_sym_LPAREN2] = ACTIONS(2560), + [anon_sym_TILDE] = ACTIONS(2562), + [anon_sym_STAR] = ACTIONS(2564), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_extern] = ACTIONS(53), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(3693), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1813), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(45), + [anon_sym___cdecl] = ACTIONS(47), + [anon_sym___clrcall] = ACTIONS(47), + [anon_sym___stdcall] = ACTIONS(47), + [anon_sym___fastcall] = ACTIONS(47), + [anon_sym___thiscall] = ACTIONS(47), + [anon_sym___vectorcall] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(2572), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(53), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(3667), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(113), + [anon_sym_decltype] = ACTIONS(115), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_explicit] = ACTIONS(119), + [anon_sym_typename] = ACTIONS(121), + [anon_sym_template] = ACTIONS(3707), + [anon_sym_operator] = ACTIONS(125), + [anon_sym_friend] = ACTIONS(3709), + [anon_sym_using] = ACTIONS(3711), + [anon_sym_concept] = ACTIONS(955), + [anon_sym_requires] = ACTIONS(3701), }, [1382] = { - [sym__expression] = STATE(3787), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_initializer_list] = STATE(6420), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2954), - [anon_sym_LPAREN2] = ACTIONS(984), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1489), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [sym_function_definition] = STATE(2665), + [sym_declaration] = STATE(2665), + [sym__declaration_modifiers] = STATE(3706), + [sym__declaration_specifiers] = STATE(4608), + [sym_attribute_specifier] = STATE(3706), + [sym_attribute_declaration] = STATE(3706), + [sym_ms_declspec_modifier] = STATE(3706), + [sym_ms_based_modifier] = STATE(7654), + [sym_ms_call_modifier] = STATE(2431), + [sym__declarator] = STATE(5881), + [sym_parenthesized_declarator] = STATE(5640), + [sym_attributed_declarator] = STATE(5640), + [sym_pointer_declarator] = STATE(5640), + [sym_function_declarator] = STATE(5531), + [sym_array_declarator] = STATE(5640), + [sym_storage_class_specifier] = STATE(3706), + [sym_type_qualifier] = STATE(3706), + [sym__type_specifier] = STATE(3827), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), + [sym__empty_declaration] = STATE(2665), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym_virtual] = STATE(3706), + [sym_explicit_function_specifier] = STATE(2247), + [sym_dependent_type] = STATE(3723), + [sym_template_declaration] = STATE(2665), + [sym_operator_cast] = STATE(5897), + [sym__constructor_specifiers] = STATE(2247), + [sym_operator_cast_definition] = STATE(2665), + [sym_operator_cast_declaration] = STATE(2665), + [sym_constructor_or_destructor_definition] = STATE(2665), + [sym_constructor_or_destructor_declaration] = STATE(2665), + [sym_friend_declaration] = STATE(2665), + [sym_reference_declarator] = STATE(5640), + [sym_structured_binding_declarator] = STATE(5640), + [sym_template_type] = STATE(3680), + [sym_template_function] = STATE(5640), + [sym_alias_declaration] = STATE(2665), + [sym_concept_definition] = STATE(2665), + [sym_requires_clause] = STATE(1388), + [sym_destructor_name] = STATE(5640), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5146), + [sym_qualified_identifier] = STATE(5640), + [sym_qualified_type_identifier] = STATE(3694), + [sym_qualified_operator_cast_identifier] = STATE(5897), + [sym_operator_name] = STATE(5640), + [aux_sym__declaration_specifiers_repeat1] = STATE(2514), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [aux_sym_operator_cast_definition_repeat1] = STATE(2247), + [sym_identifier] = ACTIONS(3691), + [anon_sym_LPAREN2] = ACTIONS(2560), + [anon_sym_TILDE] = ACTIONS(2562), + [anon_sym_STAR] = ACTIONS(2564), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_extern] = ACTIONS(53), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(3693), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1813), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(45), + [anon_sym___cdecl] = ACTIONS(47), + [anon_sym___clrcall] = ACTIONS(47), + [anon_sym___stdcall] = ACTIONS(47), + [anon_sym___fastcall] = ACTIONS(47), + [anon_sym___thiscall] = ACTIONS(47), + [anon_sym___vectorcall] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(2572), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(53), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(3667), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(113), + [anon_sym_decltype] = ACTIONS(115), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_explicit] = ACTIONS(119), + [anon_sym_typename] = ACTIONS(121), + [anon_sym_template] = ACTIONS(3491), + [anon_sym_operator] = ACTIONS(125), + [anon_sym_friend] = ACTIONS(3493), + [anon_sym_using] = ACTIONS(3713), + [anon_sym_concept] = ACTIONS(3715), + [anon_sym_requires] = ACTIONS(3701), }, [1383] = { - [sym__expression] = STATE(3647), - [sym_conditional_expression] = STATE(3855), - [sym_assignment_expression] = STATE(3855), - [sym_pointer_expression] = STATE(2954), - [sym_unary_expression] = STATE(3855), - [sym_binary_expression] = STATE(3855), - [sym_update_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_subscript_expression] = STATE(2954), - [sym_call_expression] = STATE(2954), - [sym_field_expression] = STATE(2954), - [sym_compound_literal_expression] = STATE(3855), - [sym_parenthesized_expression] = STATE(2954), - [sym_initializer_list] = STATE(3752), - [sym_char_literal] = STATE(3557), - [sym_concatenated_string] = STATE(3557), - [sym_string_literal] = STATE(2955), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5844), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3855), - [sym_raw_string_literal] = STATE(2955), - [sym_co_await_expression] = STATE(3855), - [sym_new_expression] = STATE(3855), - [sym_delete_expression] = STATE(3855), - [sym_requires_clause] = STATE(3855), - [sym_requires_expression] = STATE(3855), - [sym_lambda_expression] = STATE(3855), - [sym_lambda_capture_specifier] = STATE(4501), - [sym_fold_expression] = STATE(3855), - [sym_parameter_pack_expansion] = STATE(3855), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4570), - [sym_qualified_identifier] = STATE(2954), - [sym_qualified_type_identifier] = STATE(5844), - [sym_user_defined_literal] = STATE(3855), - [sym_identifier] = ACTIONS(3023), - [anon_sym_LPAREN2] = ACTIONS(2410), - [anon_sym_BANG] = ACTIONS(2412), - [anon_sym_TILDE] = ACTIONS(2412), - [anon_sym_DASH] = ACTIONS(2414), - [anon_sym_PLUS] = ACTIONS(2414), - [anon_sym_STAR] = ACTIONS(2416), - [anon_sym_AMP] = ACTIONS(2416), - [anon_sym_COLON_COLON] = ACTIONS(2418), - [anon_sym_LBRACE] = ACTIONS(3025), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1619), - [anon_sym_not] = ACTIONS(2414), - [anon_sym_compl] = ACTIONS(2414), - [anon_sym_DASH_DASH] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(2432), - [anon_sym_sizeof] = ACTIONS(2434), - [sym_number_literal] = ACTIONS(2436), - [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_L_DQUOTE] = ACTIONS(2440), - [anon_sym_u_DQUOTE] = ACTIONS(2440), - [anon_sym_U_DQUOTE] = ACTIONS(2440), - [anon_sym_u8_DQUOTE] = ACTIONS(2440), - [anon_sym_DQUOTE] = ACTIONS(2440), - [sym_true] = ACTIONS(2442), - [sym_false] = ACTIONS(2442), - [sym_null] = ACTIONS(2442), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(2452), - [anon_sym_R_DQUOTE] = ACTIONS(2454), - [anon_sym_LR_DQUOTE] = ACTIONS(2454), - [anon_sym_uR_DQUOTE] = ACTIONS(2454), - [anon_sym_UR_DQUOTE] = ACTIONS(2454), - [anon_sym_u8R_DQUOTE] = ACTIONS(2454), - [anon_sym_co_await] = ACTIONS(2456), - [anon_sym_new] = ACTIONS(2458), - [anon_sym_requires] = ACTIONS(2460), - [sym_this] = ACTIONS(2442), - [sym_nullptr] = ACTIONS(2442), + [sym_function_definition] = STATE(818), + [sym_declaration] = STATE(818), + [sym__declaration_modifiers] = STATE(3706), + [sym__declaration_specifiers] = STATE(4664), + [sym_attribute_specifier] = STATE(3706), + [sym_attribute_declaration] = STATE(3706), + [sym_ms_declspec_modifier] = STATE(3706), + [sym_ms_based_modifier] = STATE(7654), + [sym_ms_call_modifier] = STATE(2402), + [sym__declarator] = STATE(5881), + [sym_parenthesized_declarator] = STATE(5640), + [sym_attributed_declarator] = STATE(5640), + [sym_pointer_declarator] = STATE(5640), + [sym_function_declarator] = STATE(5495), + [sym_array_declarator] = STATE(5640), + [sym_storage_class_specifier] = STATE(3706), + [sym_type_qualifier] = STATE(3706), + [sym__type_specifier] = STATE(3820), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), + [sym__empty_declaration] = STATE(818), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym_virtual] = STATE(3706), + [sym_explicit_function_specifier] = STATE(2237), + [sym_dependent_type] = STATE(3723), + [sym_template_declaration] = STATE(818), + [sym_operator_cast] = STATE(5892), + [sym__constructor_specifiers] = STATE(2237), + [sym_operator_cast_definition] = STATE(818), + [sym_operator_cast_declaration] = STATE(818), + [sym_constructor_or_destructor_definition] = STATE(818), + [sym_constructor_or_destructor_declaration] = STATE(818), + [sym_friend_declaration] = STATE(818), + [sym_reference_declarator] = STATE(5640), + [sym_structured_binding_declarator] = STATE(5640), + [sym_template_type] = STATE(3680), + [sym_template_function] = STATE(5640), + [sym_alias_declaration] = STATE(818), + [sym_concept_definition] = STATE(818), + [sym_requires_clause] = STATE(1393), + [sym_destructor_name] = STATE(5640), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5146), + [sym_qualified_identifier] = STATE(5640), + [sym_qualified_type_identifier] = STATE(3694), + [sym_qualified_operator_cast_identifier] = STATE(5892), + [sym_operator_name] = STATE(5640), + [aux_sym__declaration_specifiers_repeat1] = STATE(2514), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [aux_sym_operator_cast_definition_repeat1] = STATE(2237), + [sym_identifier] = ACTIONS(3691), + [anon_sym_LPAREN2] = ACTIONS(2560), + [anon_sym_TILDE] = ACTIONS(2562), + [anon_sym_STAR] = ACTIONS(2564), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_extern] = ACTIONS(53), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(3693), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1813), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(45), + [anon_sym___cdecl] = ACTIONS(47), + [anon_sym___clrcall] = ACTIONS(47), + [anon_sym___stdcall] = ACTIONS(47), + [anon_sym___fastcall] = ACTIONS(47), + [anon_sym___thiscall] = ACTIONS(47), + [anon_sym___vectorcall] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(2572), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(53), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(3667), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(113), + [anon_sym_decltype] = ACTIONS(115), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_explicit] = ACTIONS(119), + [anon_sym_typename] = ACTIONS(121), + [anon_sym_template] = ACTIONS(3717), + [anon_sym_operator] = ACTIONS(125), + [anon_sym_friend] = ACTIONS(3719), + [anon_sym_using] = ACTIONS(3721), + [anon_sym_concept] = ACTIONS(389), + [anon_sym_requires] = ACTIONS(3701), }, [1384] = { - [sym__expression] = STATE(3764), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2984), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2984), - [sym_call_expression] = STATE(2984), - [sym_field_expression] = STATE(2984), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2984), - [sym_initializer_list] = STATE(6564), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2984), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(3047), - [anon_sym_LPAREN2] = ACTIONS(3049), - [anon_sym_BANG] = ACTIONS(3053), - [anon_sym_TILDE] = ACTIONS(3053), - [anon_sym_DASH] = ACTIONS(3051), - [anon_sym_PLUS] = ACTIONS(3051), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(3055), - [anon_sym_LBRACE] = ACTIONS(1489), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(3051), - [anon_sym_compl] = ACTIONS(3051), - [anon_sym_DASH_DASH] = ACTIONS(3057), - [anon_sym_PLUS_PLUS] = ACTIONS(3057), - [anon_sym_sizeof] = ACTIONS(3059), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(3061), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(3063), - [anon_sym_new] = ACTIONS(3065), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [sym_function_definition] = STATE(560), + [sym_declaration] = STATE(560), + [sym__declaration_modifiers] = STATE(3706), + [sym__declaration_specifiers] = STATE(4661), + [sym_attribute_specifier] = STATE(3706), + [sym_attribute_declaration] = STATE(3706), + [sym_ms_declspec_modifier] = STATE(3706), + [sym_ms_based_modifier] = STATE(7654), + [sym_ms_call_modifier] = STATE(2439), + [sym__declarator] = STATE(5881), + [sym_parenthesized_declarator] = STATE(5640), + [sym_attributed_declarator] = STATE(5640), + [sym_pointer_declarator] = STATE(5640), + [sym_function_declarator] = STATE(5469), + [sym_array_declarator] = STATE(5640), + [sym_storage_class_specifier] = STATE(3706), + [sym_type_qualifier] = STATE(3706), + [sym__type_specifier] = STATE(3800), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), + [sym__empty_declaration] = STATE(560), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym_virtual] = STATE(3706), + [sym_explicit_function_specifier] = STATE(2241), + [sym_dependent_type] = STATE(3723), + [sym_template_declaration] = STATE(560), + [sym_operator_cast] = STATE(5918), + [sym__constructor_specifiers] = STATE(2241), + [sym_operator_cast_definition] = STATE(560), + [sym_operator_cast_declaration] = STATE(560), + [sym_constructor_or_destructor_definition] = STATE(560), + [sym_constructor_or_destructor_declaration] = STATE(560), + [sym_friend_declaration] = STATE(560), + [sym_reference_declarator] = STATE(5640), + [sym_structured_binding_declarator] = STATE(5640), + [sym_template_type] = STATE(3680), + [sym_template_function] = STATE(5640), + [sym_alias_declaration] = STATE(560), + [sym_concept_definition] = STATE(560), + [sym_requires_clause] = STATE(1392), + [sym_destructor_name] = STATE(5640), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5146), + [sym_qualified_identifier] = STATE(5640), + [sym_qualified_type_identifier] = STATE(3694), + [sym_qualified_operator_cast_identifier] = STATE(5918), + [sym_operator_name] = STATE(5640), + [aux_sym__declaration_specifiers_repeat1] = STATE(2514), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [aux_sym_operator_cast_definition_repeat1] = STATE(2241), + [sym_identifier] = ACTIONS(3691), + [anon_sym_LPAREN2] = ACTIONS(2560), + [anon_sym_TILDE] = ACTIONS(2562), + [anon_sym_STAR] = ACTIONS(2564), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_extern] = ACTIONS(53), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(3693), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1813), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(45), + [anon_sym___cdecl] = ACTIONS(47), + [anon_sym___clrcall] = ACTIONS(47), + [anon_sym___stdcall] = ACTIONS(47), + [anon_sym___fastcall] = ACTIONS(47), + [anon_sym___thiscall] = ACTIONS(47), + [anon_sym___vectorcall] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(2572), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(53), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(3667), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(113), + [anon_sym_decltype] = ACTIONS(115), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_explicit] = ACTIONS(119), + [anon_sym_typename] = ACTIONS(121), + [anon_sym_template] = ACTIONS(3723), + [anon_sym_operator] = ACTIONS(125), + [anon_sym_friend] = ACTIONS(3725), + [anon_sym_using] = ACTIONS(3727), + [anon_sym_concept] = ACTIONS(289), + [anon_sym_requires] = ACTIONS(3701), }, [1385] = { - [sym__expression] = STATE(2975), - [sym_conditional_expression] = STATE(3035), - [sym_assignment_expression] = STATE(3035), - [sym_pointer_expression] = STATE(2713), - [sym_unary_expression] = STATE(3035), - [sym_binary_expression] = STATE(3035), - [sym_update_expression] = STATE(3035), - [sym_cast_expression] = STATE(3035), - [sym_sizeof_expression] = STATE(3035), - [sym_subscript_expression] = STATE(2713), - [sym_call_expression] = STATE(2713), - [sym_field_expression] = STATE(2713), - [sym_compound_literal_expression] = STATE(3035), - [sym_parenthesized_expression] = STATE(2713), - [sym_initializer_list] = STATE(3061), - [sym_char_literal] = STATE(3013), - [sym_concatenated_string] = STATE(3013), - [sym_string_literal] = STATE(1900), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5990), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3035), - [sym_raw_string_literal] = STATE(1900), - [sym_co_await_expression] = STATE(3035), - [sym_new_expression] = STATE(3035), - [sym_delete_expression] = STATE(3035), - [sym_requires_clause] = STATE(3035), - [sym_requires_expression] = STATE(3035), - [sym_lambda_expression] = STATE(3035), - [sym_lambda_capture_specifier] = STATE(4465), - [sym_fold_expression] = STATE(3035), - [sym_parameter_pack_expansion] = STATE(3035), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4584), - [sym_qualified_identifier] = STATE(2713), - [sym_qualified_type_identifier] = STATE(5990), - [sym_user_defined_literal] = STATE(3035), - [sym_identifier] = ACTIONS(1643), - [anon_sym_LPAREN2] = ACTIONS(1439), - [anon_sym_BANG] = ACTIONS(1441), - [anon_sym_TILDE] = ACTIONS(1441), - [anon_sym_DASH] = ACTIONS(1443), - [anon_sym_PLUS] = ACTIONS(1443), - [anon_sym_STAR] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(1445), - [anon_sym_COLON_COLON] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(1645), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1581), - [anon_sym_not] = ACTIONS(1443), - [anon_sym_compl] = ACTIONS(1443), - [anon_sym_DASH_DASH] = ACTIONS(1459), - [anon_sym_PLUS_PLUS] = ACTIONS(1459), - [anon_sym_sizeof] = ACTIONS(1461), - [sym_number_literal] = ACTIONS(1463), - [anon_sym_L_SQUOTE] = ACTIONS(1465), - [anon_sym_u_SQUOTE] = ACTIONS(1465), - [anon_sym_U_SQUOTE] = ACTIONS(1465), - [anon_sym_u8_SQUOTE] = ACTIONS(1465), - [anon_sym_SQUOTE] = ACTIONS(1465), - [anon_sym_L_DQUOTE] = ACTIONS(1467), - [anon_sym_u_DQUOTE] = ACTIONS(1467), - [anon_sym_U_DQUOTE] = ACTIONS(1467), - [anon_sym_u8_DQUOTE] = ACTIONS(1467), - [anon_sym_DQUOTE] = ACTIONS(1467), - [sym_true] = ACTIONS(1469), - [sym_false] = ACTIONS(1469), - [sym_null] = ACTIONS(1469), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1473), - [anon_sym_R_DQUOTE] = ACTIONS(1475), - [anon_sym_LR_DQUOTE] = ACTIONS(1475), - [anon_sym_uR_DQUOTE] = ACTIONS(1475), - [anon_sym_UR_DQUOTE] = ACTIONS(1475), - [anon_sym_u8R_DQUOTE] = ACTIONS(1475), - [anon_sym_co_await] = ACTIONS(1477), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_requires] = ACTIONS(1481), - [sym_this] = ACTIONS(1469), - [sym_nullptr] = ACTIONS(1469), + [sym_function_definition] = STATE(1259), + [sym_declaration] = STATE(1259), + [sym__declaration_modifiers] = STATE(3706), + [sym__declaration_specifiers] = STATE(4618), + [sym_attribute_specifier] = STATE(3706), + [sym_attribute_declaration] = STATE(3706), + [sym_ms_declspec_modifier] = STATE(3706), + [sym_ms_based_modifier] = STATE(7654), + [sym_ms_call_modifier] = STATE(2462), + [sym__declarator] = STATE(5881), + [sym_parenthesized_declarator] = STATE(5640), + [sym_attributed_declarator] = STATE(5640), + [sym_pointer_declarator] = STATE(5640), + [sym_function_declarator] = STATE(5488), + [sym_array_declarator] = STATE(5640), + [sym_storage_class_specifier] = STATE(3706), + [sym_type_qualifier] = STATE(3706), + [sym__type_specifier] = STATE(3826), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), + [sym__empty_declaration] = STATE(1259), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym_virtual] = STATE(3706), + [sym_explicit_function_specifier] = STATE(2246), + [sym_dependent_type] = STATE(3723), + [sym_template_declaration] = STATE(1259), + [sym_operator_cast] = STATE(5937), + [sym__constructor_specifiers] = STATE(2246), + [sym_operator_cast_definition] = STATE(1259), + [sym_operator_cast_declaration] = STATE(1259), + [sym_constructor_or_destructor_definition] = STATE(1259), + [sym_constructor_or_destructor_declaration] = STATE(1259), + [sym_friend_declaration] = STATE(1259), + [sym_reference_declarator] = STATE(5640), + [sym_structured_binding_declarator] = STATE(5640), + [sym_template_type] = STATE(3680), + [sym_template_function] = STATE(5640), + [sym_alias_declaration] = STATE(1259), + [sym_concept_definition] = STATE(1259), + [sym_requires_clause] = STATE(1395), + [sym_destructor_name] = STATE(5640), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5146), + [sym_qualified_identifier] = STATE(5640), + [sym_qualified_type_identifier] = STATE(3694), + [sym_qualified_operator_cast_identifier] = STATE(5937), + [sym_operator_name] = STATE(5640), + [aux_sym__declaration_specifiers_repeat1] = STATE(2514), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [aux_sym_operator_cast_definition_repeat1] = STATE(2246), + [sym_identifier] = ACTIONS(3691), + [anon_sym_LPAREN2] = ACTIONS(2560), + [anon_sym_TILDE] = ACTIONS(2562), + [anon_sym_STAR] = ACTIONS(2564), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_extern] = ACTIONS(53), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(3693), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1813), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(45), + [anon_sym___cdecl] = ACTIONS(47), + [anon_sym___clrcall] = ACTIONS(47), + [anon_sym___stdcall] = ACTIONS(47), + [anon_sym___fastcall] = ACTIONS(47), + [anon_sym___thiscall] = ACTIONS(47), + [anon_sym___vectorcall] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(2572), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(53), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(3667), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(113), + [anon_sym_decltype] = ACTIONS(115), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_explicit] = ACTIONS(119), + [anon_sym_typename] = ACTIONS(121), + [anon_sym_template] = ACTIONS(3729), + [anon_sym_operator] = ACTIONS(125), + [anon_sym_friend] = ACTIONS(3731), + [anon_sym_using] = ACTIONS(3733), + [anon_sym_concept] = ACTIONS(219), + [anon_sym_requires] = ACTIONS(3701), }, [1386] = { - [sym__expression] = STATE(3720), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_initializer_list] = STATE(6329), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2954), - [anon_sym_LPAREN2] = ACTIONS(984), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1489), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [sym_function_definition] = STATE(2420), + [sym_declaration] = STATE(2420), + [sym__declaration_modifiers] = STATE(3706), + [sym__declaration_specifiers] = STATE(4622), + [sym_attribute_specifier] = STATE(3706), + [sym_attribute_declaration] = STATE(3706), + [sym_ms_declspec_modifier] = STATE(3706), + [sym_ms_based_modifier] = STATE(7654), + [sym_ms_call_modifier] = STATE(2436), + [sym__declarator] = STATE(5881), + [sym_parenthesized_declarator] = STATE(5640), + [sym_attributed_declarator] = STATE(5640), + [sym_pointer_declarator] = STATE(5640), + [sym_function_declarator] = STATE(5541), + [sym_array_declarator] = STATE(5640), + [sym_storage_class_specifier] = STATE(3706), + [sym_type_qualifier] = STATE(3706), + [sym__type_specifier] = STATE(3824), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), + [sym__empty_declaration] = STATE(2420), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym_virtual] = STATE(3706), + [sym_explicit_function_specifier] = STATE(2243), + [sym_dependent_type] = STATE(3723), + [sym_template_declaration] = STATE(2420), + [sym_operator_cast] = STATE(5916), + [sym__constructor_specifiers] = STATE(2243), + [sym_operator_cast_definition] = STATE(2420), + [sym_operator_cast_declaration] = STATE(2420), + [sym_constructor_or_destructor_definition] = STATE(2420), + [sym_constructor_or_destructor_declaration] = STATE(2420), + [sym_friend_declaration] = STATE(2420), + [sym_reference_declarator] = STATE(5640), + [sym_structured_binding_declarator] = STATE(5640), + [sym_template_type] = STATE(3680), + [sym_template_function] = STATE(5640), + [sym_alias_declaration] = STATE(2420), + [sym_concept_definition] = STATE(2420), + [sym_requires_clause] = STATE(1396), + [sym_destructor_name] = STATE(5640), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5146), + [sym_qualified_identifier] = STATE(5640), + [sym_qualified_type_identifier] = STATE(3694), + [sym_qualified_operator_cast_identifier] = STATE(5916), + [sym_operator_name] = STATE(5640), + [aux_sym__declaration_specifiers_repeat1] = STATE(2514), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [aux_sym_operator_cast_definition_repeat1] = STATE(2243), + [sym_identifier] = ACTIONS(3691), + [anon_sym_LPAREN2] = ACTIONS(2560), + [anon_sym_TILDE] = ACTIONS(2562), + [anon_sym_STAR] = ACTIONS(2564), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_extern] = ACTIONS(53), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(3693), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1813), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(45), + [anon_sym___cdecl] = ACTIONS(47), + [anon_sym___clrcall] = ACTIONS(47), + [anon_sym___stdcall] = ACTIONS(47), + [anon_sym___fastcall] = ACTIONS(47), + [anon_sym___thiscall] = ACTIONS(47), + [anon_sym___vectorcall] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(2572), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(53), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(3667), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(113), + [anon_sym_decltype] = ACTIONS(115), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_explicit] = ACTIONS(119), + [anon_sym_typename] = ACTIONS(121), + [anon_sym_template] = ACTIONS(2737), + [anon_sym_operator] = ACTIONS(125), + [anon_sym_friend] = ACTIONS(2739), + [anon_sym_using] = ACTIONS(3735), + [anon_sym_concept] = ACTIONS(3737), + [anon_sym_requires] = ACTIONS(3701), }, [1387] = { - [sym__expression] = STATE(3530), - [sym_comma_expression] = STATE(6217), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2954), - [anon_sym_RPAREN] = ACTIONS(3492), - [anon_sym_LPAREN2] = ACTIONS(984), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [sym_function_definition] = STATE(2261), + [sym_declaration] = STATE(2261), + [sym__declaration_modifiers] = STATE(3706), + [sym__declaration_specifiers] = STATE(4607), + [sym_attribute_specifier] = STATE(3706), + [sym_attribute_declaration] = STATE(3706), + [sym_ms_declspec_modifier] = STATE(3706), + [sym_ms_based_modifier] = STATE(7654), + [sym_ms_call_modifier] = STATE(2434), + [sym__declarator] = STATE(5881), + [sym_parenthesized_declarator] = STATE(5640), + [sym_attributed_declarator] = STATE(5640), + [sym_pointer_declarator] = STATE(5640), + [sym_function_declarator] = STATE(5489), + [sym_array_declarator] = STATE(5640), + [sym_storage_class_specifier] = STATE(3706), + [sym_type_qualifier] = STATE(3706), + [sym__type_specifier] = STATE(3801), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), + [sym__empty_declaration] = STATE(2261), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym_virtual] = STATE(3706), + [sym_explicit_function_specifier] = STATE(2234), + [sym_dependent_type] = STATE(3723), + [sym_template_declaration] = STATE(2261), + [sym_operator_cast] = STATE(5917), + [sym__constructor_specifiers] = STATE(2234), + [sym_operator_cast_definition] = STATE(2261), + [sym_operator_cast_declaration] = STATE(2261), + [sym_constructor_or_destructor_definition] = STATE(2261), + [sym_constructor_or_destructor_declaration] = STATE(2261), + [sym_friend_declaration] = STATE(2261), + [sym_reference_declarator] = STATE(5640), + [sym_structured_binding_declarator] = STATE(5640), + [sym_template_type] = STATE(3680), + [sym_template_function] = STATE(5640), + [sym_alias_declaration] = STATE(2261), + [sym_concept_definition] = STATE(2261), + [sym_requires_clause] = STATE(1394), + [sym_destructor_name] = STATE(5640), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5146), + [sym_qualified_identifier] = STATE(5640), + [sym_qualified_type_identifier] = STATE(3694), + [sym_qualified_operator_cast_identifier] = STATE(5917), + [sym_operator_name] = STATE(5640), + [aux_sym__declaration_specifiers_repeat1] = STATE(2514), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [aux_sym_operator_cast_definition_repeat1] = STATE(2234), + [sym_identifier] = ACTIONS(3691), + [anon_sym_LPAREN2] = ACTIONS(2560), + [anon_sym_TILDE] = ACTIONS(2562), + [anon_sym_STAR] = ACTIONS(2564), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_extern] = ACTIONS(53), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(3693), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1813), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(45), + [anon_sym___cdecl] = ACTIONS(47), + [anon_sym___clrcall] = ACTIONS(47), + [anon_sym___stdcall] = ACTIONS(47), + [anon_sym___fastcall] = ACTIONS(47), + [anon_sym___thiscall] = ACTIONS(47), + [anon_sym___vectorcall] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(2572), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(53), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(3667), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(113), + [anon_sym_decltype] = ACTIONS(115), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_explicit] = ACTIONS(119), + [anon_sym_typename] = ACTIONS(121), + [anon_sym_template] = ACTIONS(2592), + [anon_sym_operator] = ACTIONS(125), + [anon_sym_friend] = ACTIONS(2594), + [anon_sym_using] = ACTIONS(3739), + [anon_sym_concept] = ACTIONS(3741), + [anon_sym_requires] = ACTIONS(3701), }, [1388] = { - [sym__expression] = STATE(3383), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2984), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2984), - [sym_call_expression] = STATE(2984), - [sym_field_expression] = STATE(2984), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2984), - [sym_initializer_list] = STATE(3384), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2984), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(3047), - [anon_sym_LPAREN2] = ACTIONS(3049), - [anon_sym_BANG] = ACTIONS(3053), - [anon_sym_TILDE] = ACTIONS(3053), - [anon_sym_DASH] = ACTIONS(3051), - [anon_sym_PLUS] = ACTIONS(3051), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(3055), - [anon_sym_LBRACE] = ACTIONS(1489), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(3051), - [anon_sym_compl] = ACTIONS(3051), - [anon_sym_DASH_DASH] = ACTIONS(3057), - [anon_sym_PLUS_PLUS] = ACTIONS(3057), - [anon_sym_sizeof] = ACTIONS(3059), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(3061), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(3063), - [anon_sym_new] = ACTIONS(3065), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [sym_function_definition] = STATE(2575), + [sym_declaration] = STATE(2575), + [sym__declaration_modifiers] = STATE(3706), + [sym__declaration_specifiers] = STATE(4608), + [sym_attribute_specifier] = STATE(3706), + [sym_attribute_declaration] = STATE(3706), + [sym_ms_declspec_modifier] = STATE(3706), + [sym_ms_based_modifier] = STATE(7654), + [sym_ms_call_modifier] = STATE(2431), + [sym__declarator] = STATE(5881), + [sym_parenthesized_declarator] = STATE(5640), + [sym_attributed_declarator] = STATE(5640), + [sym_pointer_declarator] = STATE(5640), + [sym_function_declarator] = STATE(5531), + [sym_array_declarator] = STATE(5640), + [sym_storage_class_specifier] = STATE(3706), + [sym_type_qualifier] = STATE(3706), + [sym__type_specifier] = STATE(3827), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), + [sym__empty_declaration] = STATE(2575), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym_virtual] = STATE(3706), + [sym_explicit_function_specifier] = STATE(2247), + [sym_dependent_type] = STATE(3723), + [sym_template_declaration] = STATE(2575), + [sym_operator_cast] = STATE(5897), + [sym__constructor_specifiers] = STATE(2247), + [sym_operator_cast_definition] = STATE(2575), + [sym_operator_cast_declaration] = STATE(2575), + [sym_constructor_or_destructor_definition] = STATE(2575), + [sym_constructor_or_destructor_declaration] = STATE(2575), + [sym_friend_declaration] = STATE(2575), + [sym_reference_declarator] = STATE(5640), + [sym_structured_binding_declarator] = STATE(5640), + [sym_template_type] = STATE(3680), + [sym_template_function] = STATE(5640), + [sym_alias_declaration] = STATE(2575), + [sym_concept_definition] = STATE(2575), + [sym_destructor_name] = STATE(5640), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5146), + [sym_qualified_identifier] = STATE(5640), + [sym_qualified_type_identifier] = STATE(3694), + [sym_qualified_operator_cast_identifier] = STATE(5897), + [sym_operator_name] = STATE(5640), + [aux_sym__declaration_specifiers_repeat1] = STATE(2514), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [aux_sym_operator_cast_definition_repeat1] = STATE(2247), + [sym_identifier] = ACTIONS(3691), + [anon_sym_LPAREN2] = ACTIONS(2560), + [anon_sym_TILDE] = ACTIONS(2562), + [anon_sym_STAR] = ACTIONS(2564), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_extern] = ACTIONS(53), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(3693), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1813), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(45), + [anon_sym___cdecl] = ACTIONS(47), + [anon_sym___clrcall] = ACTIONS(47), + [anon_sym___stdcall] = ACTIONS(47), + [anon_sym___fastcall] = ACTIONS(47), + [anon_sym___thiscall] = ACTIONS(47), + [anon_sym___vectorcall] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(2572), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(53), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(3667), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(113), + [anon_sym_decltype] = ACTIONS(115), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_explicit] = ACTIONS(119), + [anon_sym_typename] = ACTIONS(121), + [anon_sym_template] = ACTIONS(3491), + [anon_sym_operator] = ACTIONS(125), + [anon_sym_friend] = ACTIONS(3493), + [anon_sym_using] = ACTIONS(3713), + [anon_sym_concept] = ACTIONS(3715), }, [1389] = { - [sym__expression] = STATE(3690), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(3036), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(3036), - [sym_call_expression] = STATE(3036), - [sym_field_expression] = STATE(3036), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(3036), - [sym_initializer_list] = STATE(3384), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(3036), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(3073), - [anon_sym_LPAREN2] = ACTIONS(3075), - [anon_sym_BANG] = ACTIONS(3079), - [anon_sym_TILDE] = ACTIONS(3079), - [anon_sym_DASH] = ACTIONS(3077), - [anon_sym_PLUS] = ACTIONS(3077), - [anon_sym_STAR] = ACTIONS(3081), - [anon_sym_AMP] = ACTIONS(3081), - [anon_sym_COLON_COLON] = ACTIONS(3083), - [anon_sym_LBRACE] = ACTIONS(1489), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(3077), - [anon_sym_compl] = ACTIONS(3077), - [anon_sym_DASH_DASH] = ACTIONS(3085), - [anon_sym_PLUS_PLUS] = ACTIONS(3085), - [anon_sym_sizeof] = ACTIONS(3087), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(3089), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(3091), - [anon_sym_new] = ACTIONS(3065), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [sym_function_definition] = STATE(1229), + [sym_declaration] = STATE(1229), + [sym__declaration_modifiers] = STATE(3706), + [sym__declaration_specifiers] = STATE(4656), + [sym_attribute_specifier] = STATE(3706), + [sym_attribute_declaration] = STATE(3706), + [sym_ms_declspec_modifier] = STATE(3706), + [sym_ms_based_modifier] = STATE(7654), + [sym_ms_call_modifier] = STATE(2383), + [sym__declarator] = STATE(5881), + [sym_parenthesized_declarator] = STATE(5640), + [sym_attributed_declarator] = STATE(5640), + [sym_pointer_declarator] = STATE(5640), + [sym_function_declarator] = STATE(5486), + [sym_array_declarator] = STATE(5640), + [sym_storage_class_specifier] = STATE(3706), + [sym_type_qualifier] = STATE(3706), + [sym__type_specifier] = STATE(3808), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), + [sym__empty_declaration] = STATE(1229), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym_virtual] = STATE(3706), + [sym_explicit_function_specifier] = STATE(2249), + [sym_dependent_type] = STATE(3723), + [sym_template_declaration] = STATE(1229), + [sym_operator_cast] = STATE(5899), + [sym__constructor_specifiers] = STATE(2249), + [sym_operator_cast_definition] = STATE(1229), + [sym_operator_cast_declaration] = STATE(1229), + [sym_constructor_or_destructor_definition] = STATE(1229), + [sym_constructor_or_destructor_declaration] = STATE(1229), + [sym_friend_declaration] = STATE(1229), + [sym_reference_declarator] = STATE(5640), + [sym_structured_binding_declarator] = STATE(5640), + [sym_template_type] = STATE(3680), + [sym_template_function] = STATE(5640), + [sym_alias_declaration] = STATE(1229), + [sym_concept_definition] = STATE(1229), + [sym_destructor_name] = STATE(5640), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5146), + [sym_qualified_identifier] = STATE(5640), + [sym_qualified_type_identifier] = STATE(3694), + [sym_qualified_operator_cast_identifier] = STATE(5899), + [sym_operator_name] = STATE(5640), + [aux_sym__declaration_specifiers_repeat1] = STATE(2514), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [aux_sym_operator_cast_definition_repeat1] = STATE(2249), + [sym_identifier] = ACTIONS(3691), + [anon_sym_LPAREN2] = ACTIONS(2560), + [anon_sym_TILDE] = ACTIONS(2562), + [anon_sym_STAR] = ACTIONS(2564), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_extern] = ACTIONS(53), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(3693), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1813), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(45), + [anon_sym___cdecl] = ACTIONS(47), + [anon_sym___clrcall] = ACTIONS(47), + [anon_sym___stdcall] = ACTIONS(47), + [anon_sym___fastcall] = ACTIONS(47), + [anon_sym___thiscall] = ACTIONS(47), + [anon_sym___vectorcall] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(2572), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(53), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(3667), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(113), + [anon_sym_decltype] = ACTIONS(115), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_explicit] = ACTIONS(119), + [anon_sym_typename] = ACTIONS(121), + [anon_sym_template] = ACTIONS(3707), + [anon_sym_operator] = ACTIONS(125), + [anon_sym_friend] = ACTIONS(3709), + [anon_sym_using] = ACTIONS(3711), + [anon_sym_concept] = ACTIONS(955), }, [1390] = { - [sym__expression] = STATE(2686), - [sym_conditional_expression] = STATE(2786), - [sym_assignment_expression] = STATE(2786), - [sym_pointer_expression] = STATE(2784), - [sym_unary_expression] = STATE(2786), - [sym_binary_expression] = STATE(2786), - [sym_update_expression] = STATE(2786), - [sym_cast_expression] = STATE(2786), - [sym_sizeof_expression] = STATE(2786), - [sym_subscript_expression] = STATE(2784), - [sym_call_expression] = STATE(2784), - [sym_field_expression] = STATE(2784), - [sym_compound_literal_expression] = STATE(2786), - [sym_parenthesized_expression] = STATE(2784), - [sym_initializer_list] = STATE(2714), - [sym_char_literal] = STATE(2651), - [sym_concatenated_string] = STATE(2651), - [sym_string_literal] = STATE(1840), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5891), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(2786), - [sym_raw_string_literal] = STATE(1840), - [sym_co_await_expression] = STATE(2786), - [sym_new_expression] = STATE(2786), - [sym_delete_expression] = STATE(2786), - [sym_requires_clause] = STATE(2786), - [sym_requires_expression] = STATE(2786), - [sym_lambda_expression] = STATE(2786), - [sym_lambda_capture_specifier] = STATE(4484), - [sym_fold_expression] = STATE(2786), - [sym_parameter_pack_expansion] = STATE(2786), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4584), - [sym_qualified_identifier] = STATE(2784), - [sym_qualified_type_identifier] = STATE(5891), - [sym_user_defined_literal] = STATE(2786), - [sym_identifier] = ACTIONS(1567), - [anon_sym_LPAREN2] = ACTIONS(1569), - [anon_sym_BANG] = ACTIONS(1573), - [anon_sym_TILDE] = ACTIONS(1573), - [anon_sym_DASH] = ACTIONS(1571), - [anon_sym_PLUS] = ACTIONS(1571), - [anon_sym_STAR] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(1445), - [anon_sym_COLON_COLON] = ACTIONS(1577), - [anon_sym_LBRACE] = ACTIONS(1579), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1581), - [anon_sym_not] = ACTIONS(1571), - [anon_sym_compl] = ACTIONS(1571), - [anon_sym_DASH_DASH] = ACTIONS(1583), - [anon_sym_PLUS_PLUS] = ACTIONS(1583), - [anon_sym_sizeof] = ACTIONS(1585), - [sym_number_literal] = ACTIONS(1587), - [anon_sym_L_SQUOTE] = ACTIONS(1589), - [anon_sym_u_SQUOTE] = ACTIONS(1589), - [anon_sym_U_SQUOTE] = ACTIONS(1589), - [anon_sym_u8_SQUOTE] = ACTIONS(1589), - [anon_sym_SQUOTE] = ACTIONS(1589), - [anon_sym_L_DQUOTE] = ACTIONS(1591), - [anon_sym_u_DQUOTE] = ACTIONS(1591), - [anon_sym_U_DQUOTE] = ACTIONS(1591), - [anon_sym_u8_DQUOTE] = ACTIONS(1591), - [anon_sym_DQUOTE] = ACTIONS(1591), - [sym_true] = ACTIONS(1593), - [sym_false] = ACTIONS(1593), - [sym_null] = ACTIONS(1593), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1595), - [anon_sym_R_DQUOTE] = ACTIONS(1597), - [anon_sym_LR_DQUOTE] = ACTIONS(1597), - [anon_sym_uR_DQUOTE] = ACTIONS(1597), - [anon_sym_UR_DQUOTE] = ACTIONS(1597), - [anon_sym_u8R_DQUOTE] = ACTIONS(1597), - [anon_sym_co_await] = ACTIONS(1599), - [anon_sym_new] = ACTIONS(1601), - [anon_sym_requires] = ACTIONS(1603), - [sym_this] = ACTIONS(1593), - [sym_nullptr] = ACTIONS(1593), + [sym_function_definition] = STATE(1330), + [sym_declaration] = STATE(1330), + [sym__declaration_modifiers] = STATE(3706), + [sym__declaration_specifiers] = STATE(4613), + [sym_attribute_specifier] = STATE(3706), + [sym_attribute_declaration] = STATE(3706), + [sym_ms_declspec_modifier] = STATE(3706), + [sym_ms_based_modifier] = STATE(7654), + [sym_ms_call_modifier] = STATE(2381), + [sym__declarator] = STATE(5881), + [sym_parenthesized_declarator] = STATE(5640), + [sym_attributed_declarator] = STATE(5640), + [sym_pointer_declarator] = STATE(5640), + [sym_function_declarator] = STATE(5539), + [sym_array_declarator] = STATE(5640), + [sym_storage_class_specifier] = STATE(3706), + [sym_type_qualifier] = STATE(3706), + [sym__type_specifier] = STATE(3809), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), + [sym__empty_declaration] = STATE(1330), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym_virtual] = STATE(3706), + [sym_explicit_function_specifier] = STATE(2235), + [sym_dependent_type] = STATE(3723), + [sym_template_declaration] = STATE(1330), + [sym_operator_cast] = STATE(5890), + [sym__constructor_specifiers] = STATE(2235), + [sym_operator_cast_definition] = STATE(1330), + [sym_operator_cast_declaration] = STATE(1330), + [sym_constructor_or_destructor_definition] = STATE(1330), + [sym_constructor_or_destructor_declaration] = STATE(1330), + [sym_friend_declaration] = STATE(1330), + [sym_reference_declarator] = STATE(5640), + [sym_structured_binding_declarator] = STATE(5640), + [sym_template_type] = STATE(3680), + [sym_template_function] = STATE(5640), + [sym_alias_declaration] = STATE(1330), + [sym_concept_definition] = STATE(1330), + [sym_destructor_name] = STATE(5640), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5146), + [sym_qualified_identifier] = STATE(5640), + [sym_qualified_type_identifier] = STATE(3694), + [sym_qualified_operator_cast_identifier] = STATE(5890), + [sym_operator_name] = STATE(5640), + [aux_sym__declaration_specifiers_repeat1] = STATE(2514), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [aux_sym_operator_cast_definition_repeat1] = STATE(2235), + [sym_identifier] = ACTIONS(3691), + [anon_sym_LPAREN2] = ACTIONS(2560), + [anon_sym_TILDE] = ACTIONS(2562), + [anon_sym_STAR] = ACTIONS(2564), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_extern] = ACTIONS(53), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(3693), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1813), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(45), + [anon_sym___cdecl] = ACTIONS(47), + [anon_sym___clrcall] = ACTIONS(47), + [anon_sym___stdcall] = ACTIONS(47), + [anon_sym___fastcall] = ACTIONS(47), + [anon_sym___thiscall] = ACTIONS(47), + [anon_sym___vectorcall] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(2572), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(53), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(3667), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(113), + [anon_sym_decltype] = ACTIONS(115), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_explicit] = ACTIONS(119), + [anon_sym_typename] = ACTIONS(121), + [anon_sym_template] = ACTIONS(3695), + [anon_sym_operator] = ACTIONS(125), + [anon_sym_friend] = ACTIONS(3697), + [anon_sym_using] = ACTIONS(3699), + [anon_sym_concept] = ACTIONS(139), }, [1391] = { - [sym__expression] = STATE(3549), - [sym_comma_expression] = STATE(6507), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2954), - [anon_sym_RPAREN] = ACTIONS(3494), - [anon_sym_LPAREN2] = ACTIONS(984), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [sym_function_definition] = STATE(2661), + [sym_declaration] = STATE(2661), + [sym__declaration_modifiers] = STATE(3706), + [sym__declaration_specifiers] = STATE(4658), + [sym_attribute_specifier] = STATE(3706), + [sym_attribute_declaration] = STATE(3706), + [sym_ms_declspec_modifier] = STATE(3706), + [sym_ms_based_modifier] = STATE(7654), + [sym_ms_call_modifier] = STATE(2454), + [sym__declarator] = STATE(5881), + [sym_parenthesized_declarator] = STATE(5640), + [sym_attributed_declarator] = STATE(5640), + [sym_pointer_declarator] = STATE(5640), + [sym_function_declarator] = STATE(5507), + [sym_array_declarator] = STATE(5640), + [sym_storage_class_specifier] = STATE(3706), + [sym_type_qualifier] = STATE(3706), + [sym__type_specifier] = STATE(3816), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), + [sym__empty_declaration] = STATE(2661), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym_virtual] = STATE(3706), + [sym_explicit_function_specifier] = STATE(2236), + [sym_dependent_type] = STATE(3723), + [sym_template_declaration] = STATE(2661), + [sym_operator_cast] = STATE(5887), + [sym__constructor_specifiers] = STATE(2236), + [sym_operator_cast_definition] = STATE(2661), + [sym_operator_cast_declaration] = STATE(2661), + [sym_constructor_or_destructor_definition] = STATE(2661), + [sym_constructor_or_destructor_declaration] = STATE(2661), + [sym_friend_declaration] = STATE(2661), + [sym_reference_declarator] = STATE(5640), + [sym_structured_binding_declarator] = STATE(5640), + [sym_template_type] = STATE(3680), + [sym_template_function] = STATE(5640), + [sym_alias_declaration] = STATE(2661), + [sym_concept_definition] = STATE(2661), + [sym_destructor_name] = STATE(5640), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5146), + [sym_qualified_identifier] = STATE(5640), + [sym_qualified_type_identifier] = STATE(3694), + [sym_qualified_operator_cast_identifier] = STATE(5887), + [sym_operator_name] = STATE(5640), + [aux_sym__declaration_specifiers_repeat1] = STATE(2514), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [aux_sym_operator_cast_definition_repeat1] = STATE(2236), + [sym_identifier] = ACTIONS(3691), + [anon_sym_LPAREN2] = ACTIONS(2560), + [anon_sym_TILDE] = ACTIONS(2562), + [anon_sym_STAR] = ACTIONS(2564), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_extern] = ACTIONS(53), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(3693), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1813), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(45), + [anon_sym___cdecl] = ACTIONS(47), + [anon_sym___clrcall] = ACTIONS(47), + [anon_sym___stdcall] = ACTIONS(47), + [anon_sym___fastcall] = ACTIONS(47), + [anon_sym___thiscall] = ACTIONS(47), + [anon_sym___vectorcall] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(2572), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(53), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(3667), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(113), + [anon_sym_decltype] = ACTIONS(115), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_explicit] = ACTIONS(119), + [anon_sym_typename] = ACTIONS(121), + [anon_sym_template] = ACTIONS(3471), + [anon_sym_operator] = ACTIONS(125), + [anon_sym_friend] = ACTIONS(3473), + [anon_sym_using] = ACTIONS(3703), + [anon_sym_concept] = ACTIONS(3705), }, [1392] = { - [sym__expression] = STATE(3767), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2984), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2984), - [sym_call_expression] = STATE(2984), - [sym_field_expression] = STATE(2984), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2984), - [sym_initializer_list] = STATE(6440), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2984), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(3047), - [anon_sym_LPAREN2] = ACTIONS(3049), - [anon_sym_BANG] = ACTIONS(3053), - [anon_sym_TILDE] = ACTIONS(3053), - [anon_sym_DASH] = ACTIONS(3051), - [anon_sym_PLUS] = ACTIONS(3051), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(3055), - [anon_sym_LBRACE] = ACTIONS(1489), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(3051), - [anon_sym_compl] = ACTIONS(3051), - [anon_sym_DASH_DASH] = ACTIONS(3057), - [anon_sym_PLUS_PLUS] = ACTIONS(3057), - [anon_sym_sizeof] = ACTIONS(3059), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(3061), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(3063), - [anon_sym_new] = ACTIONS(3065), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [sym_function_definition] = STATE(584), + [sym_declaration] = STATE(584), + [sym__declaration_modifiers] = STATE(3706), + [sym__declaration_specifiers] = STATE(4661), + [sym_attribute_specifier] = STATE(3706), + [sym_attribute_declaration] = STATE(3706), + [sym_ms_declspec_modifier] = STATE(3706), + [sym_ms_based_modifier] = STATE(7654), + [sym_ms_call_modifier] = STATE(2439), + [sym__declarator] = STATE(5881), + [sym_parenthesized_declarator] = STATE(5640), + [sym_attributed_declarator] = STATE(5640), + [sym_pointer_declarator] = STATE(5640), + [sym_function_declarator] = STATE(5469), + [sym_array_declarator] = STATE(5640), + [sym_storage_class_specifier] = STATE(3706), + [sym_type_qualifier] = STATE(3706), + [sym__type_specifier] = STATE(3800), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), + [sym__empty_declaration] = STATE(584), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym_virtual] = STATE(3706), + [sym_explicit_function_specifier] = STATE(2241), + [sym_dependent_type] = STATE(3723), + [sym_template_declaration] = STATE(584), + [sym_operator_cast] = STATE(5918), + [sym__constructor_specifiers] = STATE(2241), + [sym_operator_cast_definition] = STATE(584), + [sym_operator_cast_declaration] = STATE(584), + [sym_constructor_or_destructor_definition] = STATE(584), + [sym_constructor_or_destructor_declaration] = STATE(584), + [sym_friend_declaration] = STATE(584), + [sym_reference_declarator] = STATE(5640), + [sym_structured_binding_declarator] = STATE(5640), + [sym_template_type] = STATE(3680), + [sym_template_function] = STATE(5640), + [sym_alias_declaration] = STATE(584), + [sym_concept_definition] = STATE(584), + [sym_destructor_name] = STATE(5640), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5146), + [sym_qualified_identifier] = STATE(5640), + [sym_qualified_type_identifier] = STATE(3694), + [sym_qualified_operator_cast_identifier] = STATE(5918), + [sym_operator_name] = STATE(5640), + [aux_sym__declaration_specifiers_repeat1] = STATE(2514), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [aux_sym_operator_cast_definition_repeat1] = STATE(2241), + [sym_identifier] = ACTIONS(3691), + [anon_sym_LPAREN2] = ACTIONS(2560), + [anon_sym_TILDE] = ACTIONS(2562), + [anon_sym_STAR] = ACTIONS(2564), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_extern] = ACTIONS(53), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(3693), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1813), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(45), + [anon_sym___cdecl] = ACTIONS(47), + [anon_sym___clrcall] = ACTIONS(47), + [anon_sym___stdcall] = ACTIONS(47), + [anon_sym___fastcall] = ACTIONS(47), + [anon_sym___thiscall] = ACTIONS(47), + [anon_sym___vectorcall] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(2572), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(53), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(3667), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(113), + [anon_sym_decltype] = ACTIONS(115), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_explicit] = ACTIONS(119), + [anon_sym_typename] = ACTIONS(121), + [anon_sym_template] = ACTIONS(3723), + [anon_sym_operator] = ACTIONS(125), + [anon_sym_friend] = ACTIONS(3725), + [anon_sym_using] = ACTIONS(3727), + [anon_sym_concept] = ACTIONS(289), }, [1393] = { - [sym__expression] = STATE(3550), - [sym_comma_expression] = STATE(6530), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2954), - [anon_sym_RPAREN] = ACTIONS(3496), - [anon_sym_LPAREN2] = ACTIONS(984), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [sym_function_definition] = STATE(760), + [sym_declaration] = STATE(760), + [sym__declaration_modifiers] = STATE(3706), + [sym__declaration_specifiers] = STATE(4664), + [sym_attribute_specifier] = STATE(3706), + [sym_attribute_declaration] = STATE(3706), + [sym_ms_declspec_modifier] = STATE(3706), + [sym_ms_based_modifier] = STATE(7654), + [sym_ms_call_modifier] = STATE(2402), + [sym__declarator] = STATE(5881), + [sym_parenthesized_declarator] = STATE(5640), + [sym_attributed_declarator] = STATE(5640), + [sym_pointer_declarator] = STATE(5640), + [sym_function_declarator] = STATE(5495), + [sym_array_declarator] = STATE(5640), + [sym_storage_class_specifier] = STATE(3706), + [sym_type_qualifier] = STATE(3706), + [sym__type_specifier] = STATE(3820), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), + [sym__empty_declaration] = STATE(760), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym_virtual] = STATE(3706), + [sym_explicit_function_specifier] = STATE(2237), + [sym_dependent_type] = STATE(3723), + [sym_template_declaration] = STATE(760), + [sym_operator_cast] = STATE(5892), + [sym__constructor_specifiers] = STATE(2237), + [sym_operator_cast_definition] = STATE(760), + [sym_operator_cast_declaration] = STATE(760), + [sym_constructor_or_destructor_definition] = STATE(760), + [sym_constructor_or_destructor_declaration] = STATE(760), + [sym_friend_declaration] = STATE(760), + [sym_reference_declarator] = STATE(5640), + [sym_structured_binding_declarator] = STATE(5640), + [sym_template_type] = STATE(3680), + [sym_template_function] = STATE(5640), + [sym_alias_declaration] = STATE(760), + [sym_concept_definition] = STATE(760), + [sym_destructor_name] = STATE(5640), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5146), + [sym_qualified_identifier] = STATE(5640), + [sym_qualified_type_identifier] = STATE(3694), + [sym_qualified_operator_cast_identifier] = STATE(5892), + [sym_operator_name] = STATE(5640), + [aux_sym__declaration_specifiers_repeat1] = STATE(2514), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [aux_sym_operator_cast_definition_repeat1] = STATE(2237), + [sym_identifier] = ACTIONS(3691), + [anon_sym_LPAREN2] = ACTIONS(2560), + [anon_sym_TILDE] = ACTIONS(2562), + [anon_sym_STAR] = ACTIONS(2564), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_extern] = ACTIONS(53), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(3693), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1813), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(45), + [anon_sym___cdecl] = ACTIONS(47), + [anon_sym___clrcall] = ACTIONS(47), + [anon_sym___stdcall] = ACTIONS(47), + [anon_sym___fastcall] = ACTIONS(47), + [anon_sym___thiscall] = ACTIONS(47), + [anon_sym___vectorcall] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(2572), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(53), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(3667), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(113), + [anon_sym_decltype] = ACTIONS(115), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_explicit] = ACTIONS(119), + [anon_sym_typename] = ACTIONS(121), + [anon_sym_template] = ACTIONS(3717), + [anon_sym_operator] = ACTIONS(125), + [anon_sym_friend] = ACTIONS(3719), + [anon_sym_using] = ACTIONS(3721), + [anon_sym_concept] = ACTIONS(389), }, [1394] = { - [sym__expression] = STATE(3560), - [sym_comma_expression] = STATE(6518), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2954), - [anon_sym_RPAREN] = ACTIONS(3498), - [anon_sym_LPAREN2] = ACTIONS(984), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [sym_function_definition] = STATE(2324), + [sym_declaration] = STATE(2324), + [sym__declaration_modifiers] = STATE(3706), + [sym__declaration_specifiers] = STATE(4607), + [sym_attribute_specifier] = STATE(3706), + [sym_attribute_declaration] = STATE(3706), + [sym_ms_declspec_modifier] = STATE(3706), + [sym_ms_based_modifier] = STATE(7654), + [sym_ms_call_modifier] = STATE(2434), + [sym__declarator] = STATE(5881), + [sym_parenthesized_declarator] = STATE(5640), + [sym_attributed_declarator] = STATE(5640), + [sym_pointer_declarator] = STATE(5640), + [sym_function_declarator] = STATE(5489), + [sym_array_declarator] = STATE(5640), + [sym_storage_class_specifier] = STATE(3706), + [sym_type_qualifier] = STATE(3706), + [sym__type_specifier] = STATE(3801), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), + [sym__empty_declaration] = STATE(2324), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym_virtual] = STATE(3706), + [sym_explicit_function_specifier] = STATE(2234), + [sym_dependent_type] = STATE(3723), + [sym_template_declaration] = STATE(2324), + [sym_operator_cast] = STATE(5917), + [sym__constructor_specifiers] = STATE(2234), + [sym_operator_cast_definition] = STATE(2324), + [sym_operator_cast_declaration] = STATE(2324), + [sym_constructor_or_destructor_definition] = STATE(2324), + [sym_constructor_or_destructor_declaration] = STATE(2324), + [sym_friend_declaration] = STATE(2324), + [sym_reference_declarator] = STATE(5640), + [sym_structured_binding_declarator] = STATE(5640), + [sym_template_type] = STATE(3680), + [sym_template_function] = STATE(5640), + [sym_alias_declaration] = STATE(2324), + [sym_concept_definition] = STATE(2324), + [sym_destructor_name] = STATE(5640), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5146), + [sym_qualified_identifier] = STATE(5640), + [sym_qualified_type_identifier] = STATE(3694), + [sym_qualified_operator_cast_identifier] = STATE(5917), + [sym_operator_name] = STATE(5640), + [aux_sym__declaration_specifiers_repeat1] = STATE(2514), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [aux_sym_operator_cast_definition_repeat1] = STATE(2234), + [sym_identifier] = ACTIONS(3691), + [anon_sym_LPAREN2] = ACTIONS(2560), + [anon_sym_TILDE] = ACTIONS(2562), + [anon_sym_STAR] = ACTIONS(2564), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_extern] = ACTIONS(53), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(3693), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1813), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(45), + [anon_sym___cdecl] = ACTIONS(47), + [anon_sym___clrcall] = ACTIONS(47), + [anon_sym___stdcall] = ACTIONS(47), + [anon_sym___fastcall] = ACTIONS(47), + [anon_sym___thiscall] = ACTIONS(47), + [anon_sym___vectorcall] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(2572), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(53), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(3667), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(113), + [anon_sym_decltype] = ACTIONS(115), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_explicit] = ACTIONS(119), + [anon_sym_typename] = ACTIONS(121), + [anon_sym_template] = ACTIONS(2592), + [anon_sym_operator] = ACTIONS(125), + [anon_sym_friend] = ACTIONS(2594), + [anon_sym_using] = ACTIONS(3739), + [anon_sym_concept] = ACTIONS(3741), }, [1395] = { - [sym__expression] = STATE(3574), - [sym_comma_expression] = STATE(6509), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2954), - [anon_sym_RPAREN] = ACTIONS(3500), - [anon_sym_LPAREN2] = ACTIONS(984), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [sym_function_definition] = STATE(1217), + [sym_declaration] = STATE(1217), + [sym__declaration_modifiers] = STATE(3706), + [sym__declaration_specifiers] = STATE(4618), + [sym_attribute_specifier] = STATE(3706), + [sym_attribute_declaration] = STATE(3706), + [sym_ms_declspec_modifier] = STATE(3706), + [sym_ms_based_modifier] = STATE(7654), + [sym_ms_call_modifier] = STATE(2462), + [sym__declarator] = STATE(5881), + [sym_parenthesized_declarator] = STATE(5640), + [sym_attributed_declarator] = STATE(5640), + [sym_pointer_declarator] = STATE(5640), + [sym_function_declarator] = STATE(5488), + [sym_array_declarator] = STATE(5640), + [sym_storage_class_specifier] = STATE(3706), + [sym_type_qualifier] = STATE(3706), + [sym__type_specifier] = STATE(3826), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), + [sym__empty_declaration] = STATE(1217), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym_virtual] = STATE(3706), + [sym_explicit_function_specifier] = STATE(2246), + [sym_dependent_type] = STATE(3723), + [sym_template_declaration] = STATE(1217), + [sym_operator_cast] = STATE(5937), + [sym__constructor_specifiers] = STATE(2246), + [sym_operator_cast_definition] = STATE(1217), + [sym_operator_cast_declaration] = STATE(1217), + [sym_constructor_or_destructor_definition] = STATE(1217), + [sym_constructor_or_destructor_declaration] = STATE(1217), + [sym_friend_declaration] = STATE(1217), + [sym_reference_declarator] = STATE(5640), + [sym_structured_binding_declarator] = STATE(5640), + [sym_template_type] = STATE(3680), + [sym_template_function] = STATE(5640), + [sym_alias_declaration] = STATE(1217), + [sym_concept_definition] = STATE(1217), + [sym_destructor_name] = STATE(5640), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5146), + [sym_qualified_identifier] = STATE(5640), + [sym_qualified_type_identifier] = STATE(3694), + [sym_qualified_operator_cast_identifier] = STATE(5937), + [sym_operator_name] = STATE(5640), + [aux_sym__declaration_specifiers_repeat1] = STATE(2514), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [aux_sym_operator_cast_definition_repeat1] = STATE(2246), + [sym_identifier] = ACTIONS(3691), + [anon_sym_LPAREN2] = ACTIONS(2560), + [anon_sym_TILDE] = ACTIONS(2562), + [anon_sym_STAR] = ACTIONS(2564), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_extern] = ACTIONS(53), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(3693), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1813), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(45), + [anon_sym___cdecl] = ACTIONS(47), + [anon_sym___clrcall] = ACTIONS(47), + [anon_sym___stdcall] = ACTIONS(47), + [anon_sym___fastcall] = ACTIONS(47), + [anon_sym___thiscall] = ACTIONS(47), + [anon_sym___vectorcall] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(2572), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(53), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(3667), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(113), + [anon_sym_decltype] = ACTIONS(115), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_explicit] = ACTIONS(119), + [anon_sym_typename] = ACTIONS(121), + [anon_sym_template] = ACTIONS(3729), + [anon_sym_operator] = ACTIONS(125), + [anon_sym_friend] = ACTIONS(3731), + [anon_sym_using] = ACTIONS(3733), + [anon_sym_concept] = ACTIONS(219), }, [1396] = { - [sym__expression] = STATE(3610), - [sym_comma_expression] = STATE(6365), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2954), - [anon_sym_RPAREN] = ACTIONS(3502), - [anon_sym_LPAREN2] = ACTIONS(984), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [sym_function_definition] = STATE(2464), + [sym_declaration] = STATE(2464), + [sym__declaration_modifiers] = STATE(3706), + [sym__declaration_specifiers] = STATE(4622), + [sym_attribute_specifier] = STATE(3706), + [sym_attribute_declaration] = STATE(3706), + [sym_ms_declspec_modifier] = STATE(3706), + [sym_ms_based_modifier] = STATE(7654), + [sym_ms_call_modifier] = STATE(2436), + [sym__declarator] = STATE(5881), + [sym_parenthesized_declarator] = STATE(5640), + [sym_attributed_declarator] = STATE(5640), + [sym_pointer_declarator] = STATE(5640), + [sym_function_declarator] = STATE(5541), + [sym_array_declarator] = STATE(5640), + [sym_storage_class_specifier] = STATE(3706), + [sym_type_qualifier] = STATE(3706), + [sym__type_specifier] = STATE(3824), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), + [sym__empty_declaration] = STATE(2464), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym_virtual] = STATE(3706), + [sym_explicit_function_specifier] = STATE(2243), + [sym_dependent_type] = STATE(3723), + [sym_template_declaration] = STATE(2464), + [sym_operator_cast] = STATE(5916), + [sym__constructor_specifiers] = STATE(2243), + [sym_operator_cast_definition] = STATE(2464), + [sym_operator_cast_declaration] = STATE(2464), + [sym_constructor_or_destructor_definition] = STATE(2464), + [sym_constructor_or_destructor_declaration] = STATE(2464), + [sym_friend_declaration] = STATE(2464), + [sym_reference_declarator] = STATE(5640), + [sym_structured_binding_declarator] = STATE(5640), + [sym_template_type] = STATE(3680), + [sym_template_function] = STATE(5640), + [sym_alias_declaration] = STATE(2464), + [sym_concept_definition] = STATE(2464), + [sym_destructor_name] = STATE(5640), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5146), + [sym_qualified_identifier] = STATE(5640), + [sym_qualified_type_identifier] = STATE(3694), + [sym_qualified_operator_cast_identifier] = STATE(5916), + [sym_operator_name] = STATE(5640), + [aux_sym__declaration_specifiers_repeat1] = STATE(2514), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [aux_sym_operator_cast_definition_repeat1] = STATE(2243), + [sym_identifier] = ACTIONS(3691), + [anon_sym_LPAREN2] = ACTIONS(2560), + [anon_sym_TILDE] = ACTIONS(2562), + [anon_sym_STAR] = ACTIONS(2564), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_extern] = ACTIONS(53), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(3693), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1813), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(45), + [anon_sym___cdecl] = ACTIONS(47), + [anon_sym___clrcall] = ACTIONS(47), + [anon_sym___stdcall] = ACTIONS(47), + [anon_sym___fastcall] = ACTIONS(47), + [anon_sym___thiscall] = ACTIONS(47), + [anon_sym___vectorcall] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(2572), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(53), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(3667), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(113), + [anon_sym_decltype] = ACTIONS(115), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_explicit] = ACTIONS(119), + [anon_sym_typename] = ACTIONS(121), + [anon_sym_template] = ACTIONS(2737), + [anon_sym_operator] = ACTIONS(125), + [anon_sym_friend] = ACTIONS(2739), + [anon_sym_using] = ACTIONS(3735), + [anon_sym_concept] = ACTIONS(3737), }, [1397] = { - [sym__expression] = STATE(3663), - [sym_comma_expression] = STATE(6366), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2954), - [anon_sym_RPAREN] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(984), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [sym_type_qualifier] = STATE(1400), + [sym__expression] = STATE(4499), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3509), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3509), + [sym_call_expression] = STATE(3509), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3509), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3509), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3509), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_type_definition_repeat1] = STATE(1400), + [sym_identifier] = ACTIONS(3613), + [anon_sym_LPAREN2] = ACTIONS(3615), + [anon_sym_BANG] = ACTIONS(3619), + [anon_sym_TILDE] = ACTIONS(3619), + [anon_sym_DASH] = ACTIONS(3617), + [anon_sym_PLUS] = ACTIONS(3617), + [anon_sym_STAR] = ACTIONS(3743), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(3621), + [anon_sym_LBRACK] = ACTIONS(1949), + [anon_sym_RBRACK] = ACTIONS(3745), + [anon_sym_const] = ACTIONS(3747), + [anon_sym_constexpr] = ACTIONS(3747), + [anon_sym_volatile] = ACTIONS(3747), + [anon_sym_restrict] = ACTIONS(3747), + [anon_sym___restrict__] = ACTIONS(3747), + [anon_sym__Atomic] = ACTIONS(3747), + [anon_sym__Noreturn] = ACTIONS(3747), + [anon_sym_noreturn] = ACTIONS(3747), + [anon_sym_mutable] = ACTIONS(3747), + [anon_sym_constinit] = ACTIONS(3747), + [anon_sym_consteval] = ACTIONS(3747), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(3617), + [anon_sym_compl] = ACTIONS(3617), + [anon_sym_DASH_DASH] = ACTIONS(3623), + [anon_sym_PLUS_PLUS] = ACTIONS(3623), + [anon_sym_sizeof] = ACTIONS(3625), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(3627), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(3629), + [anon_sym_new] = ACTIONS(3631), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1398] = { - [sym__expression] = STATE(3837), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_initializer_list] = STATE(6405), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2954), - [anon_sym_LPAREN2] = ACTIONS(984), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1489), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [sym_ms_based_modifier] = STATE(7654), + [sym__declarator] = STATE(5611), + [sym_parenthesized_declarator] = STATE(5640), + [sym_attributed_declarator] = STATE(5640), + [sym_pointer_declarator] = STATE(5640), + [sym_function_declarator] = STATE(5640), + [sym_array_declarator] = STATE(5640), + [sym__expression] = STATE(3167), + [sym__expression_not_binary] = STATE(3318), + [sym_conditional_expression] = STATE(3318), + [sym_assignment_expression] = STATE(3318), + [sym_pointer_expression] = STATE(3318), + [sym_unary_expression] = STATE(3318), + [sym_binary_expression] = STATE(3318), + [sym_update_expression] = STATE(3318), + [sym_cast_expression] = STATE(3318), + [sym_sizeof_expression] = STATE(3318), + [sym_offsetof_expression] = STATE(3318), + [sym_generic_expression] = STATE(3318), + [sym_subscript_expression] = STATE(3318), + [sym_call_expression] = STATE(3318), + [sym_gnu_asm_expression] = STATE(3318), + [sym_field_expression] = STATE(3318), + [sym_compound_literal_expression] = STATE(3318), + [sym_parenthesized_expression] = STATE(3318), + [sym_char_literal] = STATE(3076), + [sym_concatenated_string] = STATE(3076), + [sym_string_literal] = STATE(2202), + [sym_null] = STATE(3318), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6739), + [sym_reference_declarator] = STATE(5640), + [sym_structured_binding_declarator] = STATE(5640), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3078), + [sym_raw_string_literal] = STATE(2202), + [sym_co_await_expression] = STATE(3318), + [sym_new_expression] = STATE(3318), + [sym_delete_expression] = STATE(3318), + [sym_requires_clause] = STATE(3318), + [sym_requires_expression] = STATE(3318), + [sym_lambda_expression] = STATE(3318), + [sym_lambda_capture_specifier] = STATE(5187), + [sym_fold_expression] = STATE(3318), + [sym_parameter_pack_expansion] = STATE(3318), + [sym_destructor_name] = STATE(5640), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5286), + [sym_qualified_identifier] = STATE(3079), + [sym_qualified_type_identifier] = STATE(6739), + [sym_operator_name] = STATE(5640), + [sym_user_defined_literal] = STATE(3318), + [sym_identifier] = ACTIONS(2861), + [anon_sym_LPAREN2] = ACTIONS(2863), + [anon_sym_BANG] = ACTIONS(1991), + [anon_sym_TILDE] = ACTIONS(2865), + [anon_sym_DASH] = ACTIONS(1989), + [anon_sym_PLUS] = ACTIONS(1989), + [anon_sym_STAR] = ACTIONS(1907), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(1909), + [anon_sym_COLON_COLON] = ACTIONS(1995), + [anon_sym___based] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(1911), + [sym_primitive_type] = ACTIONS(1999), + [anon_sym_not] = ACTIONS(1989), + [anon_sym_compl] = ACTIONS(1989), + [anon_sym_DASH_DASH] = ACTIONS(2001), + [anon_sym_PLUS_PLUS] = ACTIONS(2001), + [anon_sym_sizeof] = ACTIONS(2003), + [anon_sym_offsetof] = ACTIONS(2005), + [anon_sym__Generic] = ACTIONS(2007), + [anon_sym_asm] = ACTIONS(2009), + [anon_sym___asm__] = ACTIONS(2009), + [sym_number_literal] = ACTIONS(2011), + [anon_sym_L_SQUOTE] = ACTIONS(2013), + [anon_sym_u_SQUOTE] = ACTIONS(2013), + [anon_sym_U_SQUOTE] = ACTIONS(2013), + [anon_sym_u8_SQUOTE] = ACTIONS(2013), + [anon_sym_SQUOTE] = ACTIONS(2013), + [anon_sym_L_DQUOTE] = ACTIONS(2015), + [anon_sym_u_DQUOTE] = ACTIONS(2015), + [anon_sym_U_DQUOTE] = ACTIONS(2015), + [anon_sym_u8_DQUOTE] = ACTIONS(2015), + [anon_sym_DQUOTE] = ACTIONS(2015), + [sym_true] = ACTIONS(2017), + [sym_false] = ACTIONS(2017), + [anon_sym_NULL] = ACTIONS(2019), + [anon_sym_nullptr] = ACTIONS(2019), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_operator] = ACTIONS(1931), + [anon_sym_delete] = ACTIONS(2021), + [anon_sym_R_DQUOTE] = ACTIONS(2023), + [anon_sym_LR_DQUOTE] = ACTIONS(2023), + [anon_sym_uR_DQUOTE] = ACTIONS(2023), + [anon_sym_UR_DQUOTE] = ACTIONS(2023), + [anon_sym_u8R_DQUOTE] = ACTIONS(2023), + [anon_sym_co_await] = ACTIONS(2025), + [anon_sym_new] = ACTIONS(2027), + [anon_sym_requires] = ACTIONS(2029), + [sym_this] = ACTIONS(2017), }, [1399] = { - [sym__expression] = STATE(3790), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_initializer_list] = STATE(6216), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2954), - [anon_sym_LPAREN2] = ACTIONS(984), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1489), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [sym_ms_based_modifier] = STATE(7654), + [sym__declarator] = STATE(5611), + [sym_parenthesized_declarator] = STATE(5640), + [sym_attributed_declarator] = STATE(5640), + [sym_pointer_declarator] = STATE(5640), + [sym_function_declarator] = STATE(5640), + [sym_array_declarator] = STATE(5640), + [sym__expression] = STATE(3039), + [sym__expression_not_binary] = STATE(3021), + [sym_conditional_expression] = STATE(3021), + [sym_assignment_expression] = STATE(3021), + [sym_pointer_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_cast_expression] = STATE(3021), + [sym_sizeof_expression] = STATE(3021), + [sym_offsetof_expression] = STATE(3021), + [sym_generic_expression] = STATE(3021), + [sym_subscript_expression] = STATE(3021), + [sym_call_expression] = STATE(3021), + [sym_gnu_asm_expression] = STATE(3021), + [sym_field_expression] = STATE(3021), + [sym_compound_literal_expression] = STATE(3021), + [sym_parenthesized_expression] = STATE(3021), + [sym_char_literal] = STATE(2901), + [sym_concatenated_string] = STATE(2901), + [sym_string_literal] = STATE(2173), + [sym_null] = STATE(3021), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6616), + [sym_reference_declarator] = STATE(5640), + [sym_structured_binding_declarator] = STATE(5640), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3308), + [sym_raw_string_literal] = STATE(2173), + [sym_co_await_expression] = STATE(3021), + [sym_new_expression] = STATE(3021), + [sym_delete_expression] = STATE(3021), + [sym_requires_clause] = STATE(3021), + [sym_requires_expression] = STATE(3021), + [sym_lambda_expression] = STATE(3021), + [sym_lambda_capture_specifier] = STATE(5188), + [sym_fold_expression] = STATE(3021), + [sym_parameter_pack_expansion] = STATE(3021), + [sym_destructor_name] = STATE(5640), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5268), + [sym_qualified_identifier] = STATE(3324), + [sym_qualified_type_identifier] = STATE(6616), + [sym_operator_name] = STATE(5640), + [sym_user_defined_literal] = STATE(3021), + [sym_identifier] = ACTIONS(2877), + [anon_sym_LPAREN2] = ACTIONS(2879), + [anon_sym_BANG] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(2881), + [anon_sym_DASH] = ACTIONS(1939), + [anon_sym_PLUS] = ACTIONS(1939), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(1945), + [anon_sym___based] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(1911), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(1939), + [anon_sym_compl] = ACTIONS(1939), + [anon_sym_DASH_DASH] = ACTIONS(1953), + [anon_sym_PLUS_PLUS] = ACTIONS(1953), + [anon_sym_sizeof] = ACTIONS(1955), + [anon_sym_offsetof] = ACTIONS(1957), + [anon_sym__Generic] = ACTIONS(1959), + [anon_sym_asm] = ACTIONS(1961), + [anon_sym___asm__] = ACTIONS(1961), + [sym_number_literal] = ACTIONS(1963), + [anon_sym_L_SQUOTE] = ACTIONS(1965), + [anon_sym_u_SQUOTE] = ACTIONS(1965), + [anon_sym_U_SQUOTE] = ACTIONS(1965), + [anon_sym_u8_SQUOTE] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_L_DQUOTE] = ACTIONS(1967), + [anon_sym_u_DQUOTE] = ACTIONS(1967), + [anon_sym_U_DQUOTE] = ACTIONS(1967), + [anon_sym_u8_DQUOTE] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(1967), + [sym_true] = ACTIONS(1969), + [sym_false] = ACTIONS(1969), + [anon_sym_NULL] = ACTIONS(1971), + [anon_sym_nullptr] = ACTIONS(1971), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_operator] = ACTIONS(1931), + [anon_sym_delete] = ACTIONS(1975), + [anon_sym_R_DQUOTE] = ACTIONS(1977), + [anon_sym_LR_DQUOTE] = ACTIONS(1977), + [anon_sym_uR_DQUOTE] = ACTIONS(1977), + [anon_sym_UR_DQUOTE] = ACTIONS(1977), + [anon_sym_u8R_DQUOTE] = ACTIONS(1977), + [anon_sym_co_await] = ACTIONS(1979), + [anon_sym_new] = ACTIONS(1981), + [anon_sym_requires] = ACTIONS(1983), + [sym_this] = ACTIONS(1969), }, [1400] = { - [sym__expression] = STATE(3515), - [sym_comma_expression] = STATE(6533), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2954), - [anon_sym_RPAREN] = ACTIONS(3506), - [anon_sym_LPAREN2] = ACTIONS(984), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [sym_type_qualifier] = STATE(2301), + [sym__expression] = STATE(4487), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3509), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3509), + [sym_call_expression] = STATE(3509), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3509), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3509), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3509), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_type_definition_repeat1] = STATE(2301), + [sym_identifier] = ACTIONS(3613), + [anon_sym_LPAREN2] = ACTIONS(3615), + [anon_sym_BANG] = ACTIONS(3619), + [anon_sym_TILDE] = ACTIONS(3619), + [anon_sym_DASH] = ACTIONS(3617), + [anon_sym_PLUS] = ACTIONS(3617), + [anon_sym_STAR] = ACTIONS(3749), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(3621), + [anon_sym_LBRACK] = ACTIONS(1949), + [anon_sym_RBRACK] = ACTIONS(3751), + [anon_sym_const] = ACTIONS(3747), + [anon_sym_constexpr] = ACTIONS(3747), + [anon_sym_volatile] = ACTIONS(3747), + [anon_sym_restrict] = ACTIONS(3747), + [anon_sym___restrict__] = ACTIONS(3747), + [anon_sym__Atomic] = ACTIONS(3747), + [anon_sym__Noreturn] = ACTIONS(3747), + [anon_sym_noreturn] = ACTIONS(3747), + [anon_sym_mutable] = ACTIONS(3747), + [anon_sym_constinit] = ACTIONS(3747), + [anon_sym_consteval] = ACTIONS(3747), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(3617), + [anon_sym_compl] = ACTIONS(3617), + [anon_sym_DASH_DASH] = ACTIONS(3623), + [anon_sym_PLUS_PLUS] = ACTIONS(3623), + [anon_sym_sizeof] = ACTIONS(3625), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(3627), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(3629), + [anon_sym_new] = ACTIONS(3631), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1401] = { - [sym__expression] = STATE(3735), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_initializer_list] = STATE(6535), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2954), - [anon_sym_LPAREN2] = ACTIONS(984), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1489), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [sym_type_qualifier] = STATE(1405), + [sym__expression] = STATE(4379), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3509), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3509), + [sym_call_expression] = STATE(3509), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3509), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3509), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3509), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_type_definition_repeat1] = STATE(1405), + [sym_identifier] = ACTIONS(3613), + [anon_sym_LPAREN2] = ACTIONS(3615), + [anon_sym_BANG] = ACTIONS(3619), + [anon_sym_TILDE] = ACTIONS(3619), + [anon_sym_DASH] = ACTIONS(3617), + [anon_sym_PLUS] = ACTIONS(3617), + [anon_sym_STAR] = ACTIONS(3753), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(3621), + [anon_sym_LBRACK] = ACTIONS(1949), + [anon_sym_RBRACK] = ACTIONS(3755), + [anon_sym_const] = ACTIONS(3747), + [anon_sym_constexpr] = ACTIONS(3747), + [anon_sym_volatile] = ACTIONS(3747), + [anon_sym_restrict] = ACTIONS(3747), + [anon_sym___restrict__] = ACTIONS(3747), + [anon_sym__Atomic] = ACTIONS(3747), + [anon_sym__Noreturn] = ACTIONS(3747), + [anon_sym_noreturn] = ACTIONS(3747), + [anon_sym_mutable] = ACTIONS(3747), + [anon_sym_constinit] = ACTIONS(3747), + [anon_sym_consteval] = ACTIONS(3747), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(3617), + [anon_sym_compl] = ACTIONS(3617), + [anon_sym_DASH_DASH] = ACTIONS(3623), + [anon_sym_PLUS_PLUS] = ACTIONS(3623), + [anon_sym_sizeof] = ACTIONS(3625), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(3627), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(3629), + [anon_sym_new] = ACTIONS(3631), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1402] = { - [sym__expression] = STATE(3514), - [sym_comma_expression] = STATE(6536), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2954), - [anon_sym_RPAREN] = ACTIONS(3508), - [anon_sym_LPAREN2] = ACTIONS(984), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [sym_type_qualifier] = STATE(2301), + [sym__expression] = STATE(4492), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3509), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3509), + [sym_call_expression] = STATE(3509), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3509), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3509), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3509), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_type_definition_repeat1] = STATE(2301), + [sym_identifier] = ACTIONS(3613), + [anon_sym_LPAREN2] = ACTIONS(3615), + [anon_sym_BANG] = ACTIONS(3619), + [anon_sym_TILDE] = ACTIONS(3619), + [anon_sym_DASH] = ACTIONS(3617), + [anon_sym_PLUS] = ACTIONS(3617), + [anon_sym_STAR] = ACTIONS(3757), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(3621), + [anon_sym_LBRACK] = ACTIONS(1949), + [anon_sym_RBRACK] = ACTIONS(3759), + [anon_sym_const] = ACTIONS(3747), + [anon_sym_constexpr] = ACTIONS(3747), + [anon_sym_volatile] = ACTIONS(3747), + [anon_sym_restrict] = ACTIONS(3747), + [anon_sym___restrict__] = ACTIONS(3747), + [anon_sym__Atomic] = ACTIONS(3747), + [anon_sym__Noreturn] = ACTIONS(3747), + [anon_sym_noreturn] = ACTIONS(3747), + [anon_sym_mutable] = ACTIONS(3747), + [anon_sym_constinit] = ACTIONS(3747), + [anon_sym_consteval] = ACTIONS(3747), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(3617), + [anon_sym_compl] = ACTIONS(3617), + [anon_sym_DASH_DASH] = ACTIONS(3623), + [anon_sym_PLUS_PLUS] = ACTIONS(3623), + [anon_sym_sizeof] = ACTIONS(3625), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(3627), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(3629), + [anon_sym_new] = ACTIONS(3631), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1403] = { - [sym__expression] = STATE(3775), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2984), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2984), - [sym_call_expression] = STATE(2984), - [sym_field_expression] = STATE(2984), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2984), - [sym_initializer_list] = STATE(6225), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2984), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(3047), - [anon_sym_LPAREN2] = ACTIONS(3049), - [anon_sym_BANG] = ACTIONS(3053), - [anon_sym_TILDE] = ACTIONS(3053), - [anon_sym_DASH] = ACTIONS(3051), - [anon_sym_PLUS] = ACTIONS(3051), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(3055), - [anon_sym_LBRACE] = ACTIONS(1489), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(3051), - [anon_sym_compl] = ACTIONS(3051), - [anon_sym_DASH_DASH] = ACTIONS(3057), - [anon_sym_PLUS_PLUS] = ACTIONS(3057), - [anon_sym_sizeof] = ACTIONS(3059), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(3061), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(3063), - [anon_sym_new] = ACTIONS(3065), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [sym_type_qualifier] = STATE(1415), + [sym__expression] = STATE(4372), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3509), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3509), + [sym_call_expression] = STATE(3509), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3509), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3509), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3509), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_type_definition_repeat1] = STATE(1415), + [sym_identifier] = ACTIONS(3613), + [anon_sym_LPAREN2] = ACTIONS(3615), + [anon_sym_BANG] = ACTIONS(3619), + [anon_sym_TILDE] = ACTIONS(3619), + [anon_sym_DASH] = ACTIONS(3617), + [anon_sym_PLUS] = ACTIONS(3617), + [anon_sym_STAR] = ACTIONS(3761), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(3621), + [anon_sym_LBRACK] = ACTIONS(1949), + [anon_sym_RBRACK] = ACTIONS(3763), + [anon_sym_const] = ACTIONS(3747), + [anon_sym_constexpr] = ACTIONS(3747), + [anon_sym_volatile] = ACTIONS(3747), + [anon_sym_restrict] = ACTIONS(3747), + [anon_sym___restrict__] = ACTIONS(3747), + [anon_sym__Atomic] = ACTIONS(3747), + [anon_sym__Noreturn] = ACTIONS(3747), + [anon_sym_noreturn] = ACTIONS(3747), + [anon_sym_mutable] = ACTIONS(3747), + [anon_sym_constinit] = ACTIONS(3747), + [anon_sym_consteval] = ACTIONS(3747), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(3617), + [anon_sym_compl] = ACTIONS(3617), + [anon_sym_DASH_DASH] = ACTIONS(3623), + [anon_sym_PLUS_PLUS] = ACTIONS(3623), + [anon_sym_sizeof] = ACTIONS(3625), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(3627), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(3629), + [anon_sym_new] = ACTIONS(3631), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1404] = { - [sym__expression] = STATE(3569), - [sym_comma_expression] = STATE(6514), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2954), - [anon_sym_RPAREN] = ACTIONS(3510), - [anon_sym_LPAREN2] = ACTIONS(984), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [sym_type_qualifier] = STATE(2301), + [sym__expression] = STATE(4377), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3509), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3509), + [sym_call_expression] = STATE(3509), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3509), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3509), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3509), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_type_definition_repeat1] = STATE(2301), + [sym_identifier] = ACTIONS(3613), + [anon_sym_LPAREN2] = ACTIONS(3615), + [anon_sym_BANG] = ACTIONS(3619), + [anon_sym_TILDE] = ACTIONS(3619), + [anon_sym_DASH] = ACTIONS(3617), + [anon_sym_PLUS] = ACTIONS(3617), + [anon_sym_STAR] = ACTIONS(3765), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(3621), + [anon_sym_LBRACK] = ACTIONS(1949), + [anon_sym_RBRACK] = ACTIONS(3767), + [anon_sym_const] = ACTIONS(3747), + [anon_sym_constexpr] = ACTIONS(3747), + [anon_sym_volatile] = ACTIONS(3747), + [anon_sym_restrict] = ACTIONS(3747), + [anon_sym___restrict__] = ACTIONS(3747), + [anon_sym__Atomic] = ACTIONS(3747), + [anon_sym__Noreturn] = ACTIONS(3747), + [anon_sym_noreturn] = ACTIONS(3747), + [anon_sym_mutable] = ACTIONS(3747), + [anon_sym_constinit] = ACTIONS(3747), + [anon_sym_consteval] = ACTIONS(3747), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(3617), + [anon_sym_compl] = ACTIONS(3617), + [anon_sym_DASH_DASH] = ACTIONS(3623), + [anon_sym_PLUS_PLUS] = ACTIONS(3623), + [anon_sym_sizeof] = ACTIONS(3625), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(3627), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(3629), + [anon_sym_new] = ACTIONS(3631), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1405] = { - [sym__expression] = STATE(3513), - [sym_comma_expression] = STATE(6539), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2954), - [anon_sym_RPAREN] = ACTIONS(3512), - [anon_sym_LPAREN2] = ACTIONS(984), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [sym_type_qualifier] = STATE(2301), + [sym__expression] = STATE(4483), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3509), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3509), + [sym_call_expression] = STATE(3509), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3509), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3509), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3509), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_type_definition_repeat1] = STATE(2301), + [sym_identifier] = ACTIONS(3613), + [anon_sym_LPAREN2] = ACTIONS(3615), + [anon_sym_BANG] = ACTIONS(3619), + [anon_sym_TILDE] = ACTIONS(3619), + [anon_sym_DASH] = ACTIONS(3617), + [anon_sym_PLUS] = ACTIONS(3617), + [anon_sym_STAR] = ACTIONS(3769), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(3621), + [anon_sym_LBRACK] = ACTIONS(1949), + [anon_sym_RBRACK] = ACTIONS(3771), + [anon_sym_const] = ACTIONS(3747), + [anon_sym_constexpr] = ACTIONS(3747), + [anon_sym_volatile] = ACTIONS(3747), + [anon_sym_restrict] = ACTIONS(3747), + [anon_sym___restrict__] = ACTIONS(3747), + [anon_sym__Atomic] = ACTIONS(3747), + [anon_sym__Noreturn] = ACTIONS(3747), + [anon_sym_noreturn] = ACTIONS(3747), + [anon_sym_mutable] = ACTIONS(3747), + [anon_sym_constinit] = ACTIONS(3747), + [anon_sym_consteval] = ACTIONS(3747), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(3617), + [anon_sym_compl] = ACTIONS(3617), + [anon_sym_DASH_DASH] = ACTIONS(3623), + [anon_sym_PLUS_PLUS] = ACTIONS(3623), + [anon_sym_sizeof] = ACTIONS(3625), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(3627), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(3629), + [anon_sym_new] = ACTIONS(3631), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1406] = { - [sym__expression] = STATE(3782), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_initializer_list] = STATE(6221), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2954), - [anon_sym_LPAREN2] = ACTIONS(984), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1489), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [sym_type_qualifier] = STATE(2301), + [sym__expression] = STATE(4486), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3509), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3509), + [sym_call_expression] = STATE(3509), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3509), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3509), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3509), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_type_definition_repeat1] = STATE(2301), + [sym_identifier] = ACTIONS(3613), + [anon_sym_LPAREN2] = ACTIONS(3615), + [anon_sym_BANG] = ACTIONS(3619), + [anon_sym_TILDE] = ACTIONS(3619), + [anon_sym_DASH] = ACTIONS(3617), + [anon_sym_PLUS] = ACTIONS(3617), + [anon_sym_STAR] = ACTIONS(3773), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(3621), + [anon_sym_LBRACK] = ACTIONS(1949), + [anon_sym_RBRACK] = ACTIONS(3775), + [anon_sym_const] = ACTIONS(3747), + [anon_sym_constexpr] = ACTIONS(3747), + [anon_sym_volatile] = ACTIONS(3747), + [anon_sym_restrict] = ACTIONS(3747), + [anon_sym___restrict__] = ACTIONS(3747), + [anon_sym__Atomic] = ACTIONS(3747), + [anon_sym__Noreturn] = ACTIONS(3747), + [anon_sym_noreturn] = ACTIONS(3747), + [anon_sym_mutable] = ACTIONS(3747), + [anon_sym_constinit] = ACTIONS(3747), + [anon_sym_consteval] = ACTIONS(3747), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(3617), + [anon_sym_compl] = ACTIONS(3617), + [anon_sym_DASH_DASH] = ACTIONS(3623), + [anon_sym_PLUS_PLUS] = ACTIONS(3623), + [anon_sym_sizeof] = ACTIONS(3625), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(3627), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(3629), + [anon_sym_new] = ACTIONS(3631), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1407] = { - [sym__expression] = STATE(3797), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_initializer_list] = STATE(6390), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2954), - [anon_sym_LPAREN2] = ACTIONS(984), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1489), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [sym_type_qualifier] = STATE(1406), + [sym__expression] = STATE(4467), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3509), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3509), + [sym_call_expression] = STATE(3509), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3509), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3509), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3509), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_type_definition_repeat1] = STATE(1406), + [sym_identifier] = ACTIONS(3613), + [anon_sym_LPAREN2] = ACTIONS(3615), + [anon_sym_BANG] = ACTIONS(3619), + [anon_sym_TILDE] = ACTIONS(3619), + [anon_sym_DASH] = ACTIONS(3617), + [anon_sym_PLUS] = ACTIONS(3617), + [anon_sym_STAR] = ACTIONS(3777), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(3621), + [anon_sym_LBRACK] = ACTIONS(1949), + [anon_sym_RBRACK] = ACTIONS(3779), + [anon_sym_const] = ACTIONS(3747), + [anon_sym_constexpr] = ACTIONS(3747), + [anon_sym_volatile] = ACTIONS(3747), + [anon_sym_restrict] = ACTIONS(3747), + [anon_sym___restrict__] = ACTIONS(3747), + [anon_sym__Atomic] = ACTIONS(3747), + [anon_sym__Noreturn] = ACTIONS(3747), + [anon_sym_noreturn] = ACTIONS(3747), + [anon_sym_mutable] = ACTIONS(3747), + [anon_sym_constinit] = ACTIONS(3747), + [anon_sym_consteval] = ACTIONS(3747), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(3617), + [anon_sym_compl] = ACTIONS(3617), + [anon_sym_DASH_DASH] = ACTIONS(3623), + [anon_sym_PLUS_PLUS] = ACTIONS(3623), + [anon_sym_sizeof] = ACTIONS(3625), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(3627), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(3629), + [anon_sym_new] = ACTIONS(3631), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1408] = { - [sym__expression] = STATE(3544), - [sym_comma_expression] = STATE(6220), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2954), - [anon_sym_RPAREN] = ACTIONS(3514), - [anon_sym_LPAREN2] = ACTIONS(984), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [sym_type_qualifier] = STATE(2301), + [sym__expression] = STATE(4427), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3509), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3509), + [sym_call_expression] = STATE(3509), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3509), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3509), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3509), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_type_definition_repeat1] = STATE(2301), + [sym_identifier] = ACTIONS(3613), + [anon_sym_LPAREN2] = ACTIONS(3615), + [anon_sym_BANG] = ACTIONS(3619), + [anon_sym_TILDE] = ACTIONS(3619), + [anon_sym_DASH] = ACTIONS(3617), + [anon_sym_PLUS] = ACTIONS(3617), + [anon_sym_STAR] = ACTIONS(3781), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(3621), + [anon_sym_LBRACK] = ACTIONS(1949), + [anon_sym_RBRACK] = ACTIONS(3783), + [anon_sym_const] = ACTIONS(3747), + [anon_sym_constexpr] = ACTIONS(3747), + [anon_sym_volatile] = ACTIONS(3747), + [anon_sym_restrict] = ACTIONS(3747), + [anon_sym___restrict__] = ACTIONS(3747), + [anon_sym__Atomic] = ACTIONS(3747), + [anon_sym__Noreturn] = ACTIONS(3747), + [anon_sym_noreturn] = ACTIONS(3747), + [anon_sym_mutable] = ACTIONS(3747), + [anon_sym_constinit] = ACTIONS(3747), + [anon_sym_consteval] = ACTIONS(3747), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(3617), + [anon_sym_compl] = ACTIONS(3617), + [anon_sym_DASH_DASH] = ACTIONS(3623), + [anon_sym_PLUS_PLUS] = ACTIONS(3623), + [anon_sym_sizeof] = ACTIONS(3625), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(3627), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(3629), + [anon_sym_new] = ACTIONS(3631), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1409] = { - [sym__expression] = STATE(3537), - [sym_comma_expression] = STATE(6222), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2954), - [anon_sym_RPAREN] = ACTIONS(3516), - [anon_sym_LPAREN2] = ACTIONS(984), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [sym_type_qualifier] = STATE(1408), + [sym__expression] = STATE(4322), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3509), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3509), + [sym_call_expression] = STATE(3509), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3509), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3509), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3509), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_type_definition_repeat1] = STATE(1408), + [sym_identifier] = ACTIONS(3785), + [anon_sym_LPAREN2] = ACTIONS(3615), + [anon_sym_BANG] = ACTIONS(3619), + [anon_sym_TILDE] = ACTIONS(3619), + [anon_sym_DASH] = ACTIONS(3617), + [anon_sym_PLUS] = ACTIONS(3617), + [anon_sym_STAR] = ACTIONS(3787), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(3621), + [anon_sym_LBRACK] = ACTIONS(1949), + [anon_sym_RBRACK] = ACTIONS(3789), + [anon_sym_const] = ACTIONS(3747), + [anon_sym_constexpr] = ACTIONS(3747), + [anon_sym_volatile] = ACTIONS(3747), + [anon_sym_restrict] = ACTIONS(3747), + [anon_sym___restrict__] = ACTIONS(3747), + [anon_sym__Atomic] = ACTIONS(3747), + [anon_sym__Noreturn] = ACTIONS(3747), + [anon_sym_noreturn] = ACTIONS(3747), + [anon_sym_mutable] = ACTIONS(3747), + [anon_sym_constinit] = ACTIONS(3747), + [anon_sym_consteval] = ACTIONS(3747), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(3617), + [anon_sym_compl] = ACTIONS(3617), + [anon_sym_DASH_DASH] = ACTIONS(3623), + [anon_sym_PLUS_PLUS] = ACTIONS(3623), + [anon_sym_sizeof] = ACTIONS(3625), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(3627), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(3629), + [anon_sym_new] = ACTIONS(3631), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1410] = { - [sym__expression] = STATE(3813), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_initializer_list] = STATE(6537), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2954), - [anon_sym_LPAREN2] = ACTIONS(984), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1489), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [sym_type_qualifier] = STATE(1408), + [sym__expression] = STATE(4322), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3509), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3509), + [sym_call_expression] = STATE(3509), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3509), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3509), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3509), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_type_definition_repeat1] = STATE(1408), + [sym_identifier] = ACTIONS(3613), + [anon_sym_LPAREN2] = ACTIONS(3615), + [anon_sym_BANG] = ACTIONS(3619), + [anon_sym_TILDE] = ACTIONS(3619), + [anon_sym_DASH] = ACTIONS(3617), + [anon_sym_PLUS] = ACTIONS(3617), + [anon_sym_STAR] = ACTIONS(3787), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(3621), + [anon_sym_LBRACK] = ACTIONS(1949), + [anon_sym_RBRACK] = ACTIONS(3789), + [anon_sym_const] = ACTIONS(3747), + [anon_sym_constexpr] = ACTIONS(3747), + [anon_sym_volatile] = ACTIONS(3747), + [anon_sym_restrict] = ACTIONS(3747), + [anon_sym___restrict__] = ACTIONS(3747), + [anon_sym__Atomic] = ACTIONS(3747), + [anon_sym__Noreturn] = ACTIONS(3747), + [anon_sym_noreturn] = ACTIONS(3747), + [anon_sym_mutable] = ACTIONS(3747), + [anon_sym_constinit] = ACTIONS(3747), + [anon_sym_consteval] = ACTIONS(3747), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(3617), + [anon_sym_compl] = ACTIONS(3617), + [anon_sym_DASH_DASH] = ACTIONS(3623), + [anon_sym_PLUS_PLUS] = ACTIONS(3623), + [anon_sym_sizeof] = ACTIONS(3625), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(3627), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(3629), + [anon_sym_new] = ACTIONS(3631), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1411] = { - [sym__expression] = STATE(3781), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_initializer_list] = STATE(6383), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2954), - [anon_sym_LPAREN2] = ACTIONS(984), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1489), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [sym_type_qualifier] = STATE(1402), + [sym__expression] = STATE(4312), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3509), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3509), + [sym_call_expression] = STATE(3509), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3509), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3509), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3509), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_type_definition_repeat1] = STATE(1402), + [sym_identifier] = ACTIONS(3613), + [anon_sym_LPAREN2] = ACTIONS(3615), + [anon_sym_BANG] = ACTIONS(3619), + [anon_sym_TILDE] = ACTIONS(3619), + [anon_sym_DASH] = ACTIONS(3617), + [anon_sym_PLUS] = ACTIONS(3617), + [anon_sym_STAR] = ACTIONS(3791), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(3621), + [anon_sym_LBRACK] = ACTIONS(1949), + [anon_sym_RBRACK] = ACTIONS(3793), + [anon_sym_const] = ACTIONS(3747), + [anon_sym_constexpr] = ACTIONS(3747), + [anon_sym_volatile] = ACTIONS(3747), + [anon_sym_restrict] = ACTIONS(3747), + [anon_sym___restrict__] = ACTIONS(3747), + [anon_sym__Atomic] = ACTIONS(3747), + [anon_sym__Noreturn] = ACTIONS(3747), + [anon_sym_noreturn] = ACTIONS(3747), + [anon_sym_mutable] = ACTIONS(3747), + [anon_sym_constinit] = ACTIONS(3747), + [anon_sym_consteval] = ACTIONS(3747), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(3617), + [anon_sym_compl] = ACTIONS(3617), + [anon_sym_DASH_DASH] = ACTIONS(3623), + [anon_sym_PLUS_PLUS] = ACTIONS(3623), + [anon_sym_sizeof] = ACTIONS(3625), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(3627), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(3629), + [anon_sym_new] = ACTIONS(3631), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1412] = { - [sym__expression] = STATE(3457), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_initializer_list] = STATE(5989), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2954), - [anon_sym_LPAREN2] = ACTIONS(984), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1489), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [sym_type_qualifier] = STATE(1404), + [sym__expression] = STATE(4332), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3509), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3509), + [sym_call_expression] = STATE(3509), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3509), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3509), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3509), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_type_definition_repeat1] = STATE(1404), + [sym_identifier] = ACTIONS(3613), + [anon_sym_LPAREN2] = ACTIONS(3615), + [anon_sym_BANG] = ACTIONS(3619), + [anon_sym_TILDE] = ACTIONS(3619), + [anon_sym_DASH] = ACTIONS(3617), + [anon_sym_PLUS] = ACTIONS(3617), + [anon_sym_STAR] = ACTIONS(3795), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(3621), + [anon_sym_LBRACK] = ACTIONS(1949), + [anon_sym_RBRACK] = ACTIONS(3797), + [anon_sym_const] = ACTIONS(3747), + [anon_sym_constexpr] = ACTIONS(3747), + [anon_sym_volatile] = ACTIONS(3747), + [anon_sym_restrict] = ACTIONS(3747), + [anon_sym___restrict__] = ACTIONS(3747), + [anon_sym__Atomic] = ACTIONS(3747), + [anon_sym__Noreturn] = ACTIONS(3747), + [anon_sym_noreturn] = ACTIONS(3747), + [anon_sym_mutable] = ACTIONS(3747), + [anon_sym_constinit] = ACTIONS(3747), + [anon_sym_consteval] = ACTIONS(3747), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(3617), + [anon_sym_compl] = ACTIONS(3617), + [anon_sym_DASH_DASH] = ACTIONS(3623), + [anon_sym_PLUS_PLUS] = ACTIONS(3623), + [anon_sym_sizeof] = ACTIONS(3625), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(3627), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(3629), + [anon_sym_new] = ACTIONS(3631), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1413] = { - [sym__expression] = STATE(3780), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_initializer_list] = STATE(6379), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2954), - [anon_sym_LPAREN2] = ACTIONS(984), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1489), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [sym_identifier] = ACTIONS(3799), + [anon_sym_COMMA] = ACTIONS(3801), + [anon_sym_RPAREN] = ACTIONS(3801), + [anon_sym_LPAREN2] = ACTIONS(3801), + [anon_sym_BANG] = ACTIONS(3801), + [anon_sym_TILDE] = ACTIONS(3801), + [anon_sym_DASH] = ACTIONS(3799), + [anon_sym_PLUS] = ACTIONS(3799), + [anon_sym_STAR] = ACTIONS(3801), + [anon_sym_AMP_AMP] = ACTIONS(3801), + [anon_sym_AMP] = ACTIONS(3799), + [anon_sym_SEMI] = ACTIONS(3801), + [anon_sym_extern] = ACTIONS(3799), + [anon_sym___attribute__] = ACTIONS(3799), + [anon_sym_COLON_COLON] = ACTIONS(3801), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3801), + [anon_sym___declspec] = ACTIONS(3799), + [anon_sym___based] = ACTIONS(3799), + [anon_sym_LBRACE] = ACTIONS(3801), + [anon_sym_LBRACK] = ACTIONS(3799), + [anon_sym_EQ] = ACTIONS(3801), + [anon_sym_static] = ACTIONS(3799), + [anon_sym_register] = ACTIONS(3799), + [anon_sym_inline] = ACTIONS(3799), + [anon_sym_thread_local] = ACTIONS(3799), + [anon_sym_const] = ACTIONS(3799), + [anon_sym_constexpr] = ACTIONS(3799), + [anon_sym_volatile] = ACTIONS(3799), + [anon_sym_restrict] = ACTIONS(3799), + [anon_sym___restrict__] = ACTIONS(3799), + [anon_sym__Atomic] = ACTIONS(3799), + [anon_sym__Noreturn] = ACTIONS(3799), + [anon_sym_noreturn] = ACTIONS(3799), + [anon_sym_mutable] = ACTIONS(3799), + [anon_sym_constinit] = ACTIONS(3799), + [anon_sym_consteval] = ACTIONS(3799), + [anon_sym_signed] = ACTIONS(3799), + [anon_sym_unsigned] = ACTIONS(3799), + [anon_sym_long] = ACTIONS(3799), + [anon_sym_short] = ACTIONS(3799), + [sym_primitive_type] = ACTIONS(3799), + [anon_sym_enum] = ACTIONS(3799), + [anon_sym_class] = ACTIONS(3799), + [anon_sym_struct] = ACTIONS(3799), + [anon_sym_union] = ACTIONS(3799), + [anon_sym_if] = ACTIONS(3799), + [anon_sym_switch] = ACTIONS(3799), + [anon_sym_case] = ACTIONS(3799), + [anon_sym_default] = ACTIONS(3799), + [anon_sym_while] = ACTIONS(3799), + [anon_sym_do] = ACTIONS(3799), + [anon_sym_for] = ACTIONS(3799), + [anon_sym_return] = ACTIONS(3799), + [anon_sym_break] = ACTIONS(3799), + [anon_sym_continue] = ACTIONS(3799), + [anon_sym_goto] = ACTIONS(3799), + [anon_sym_not] = ACTIONS(3799), + [anon_sym_compl] = ACTIONS(3799), + [anon_sym_DASH_DASH] = ACTIONS(3801), + [anon_sym_PLUS_PLUS] = ACTIONS(3801), + [anon_sym_sizeof] = ACTIONS(3799), + [anon_sym_offsetof] = ACTIONS(3799), + [anon_sym__Generic] = ACTIONS(3799), + [anon_sym_asm] = ACTIONS(3799), + [anon_sym___asm__] = ACTIONS(3799), + [sym_number_literal] = ACTIONS(3801), + [anon_sym_L_SQUOTE] = ACTIONS(3801), + [anon_sym_u_SQUOTE] = ACTIONS(3801), + [anon_sym_U_SQUOTE] = ACTIONS(3801), + [anon_sym_u8_SQUOTE] = ACTIONS(3801), + [anon_sym_SQUOTE] = ACTIONS(3801), + [anon_sym_L_DQUOTE] = ACTIONS(3801), + [anon_sym_u_DQUOTE] = ACTIONS(3801), + [anon_sym_U_DQUOTE] = ACTIONS(3801), + [anon_sym_u8_DQUOTE] = ACTIONS(3801), + [anon_sym_DQUOTE] = ACTIONS(3801), + [sym_true] = ACTIONS(3799), + [sym_false] = ACTIONS(3799), + [anon_sym_NULL] = ACTIONS(3799), + [anon_sym_nullptr] = ACTIONS(3799), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3799), + [anon_sym_decltype] = ACTIONS(3799), + [anon_sym_virtual] = ACTIONS(3799), + [anon_sym_explicit] = ACTIONS(3799), + [anon_sym_typename] = ACTIONS(3799), + [anon_sym_template] = ACTIONS(3799), + [anon_sym_GT2] = ACTIONS(3801), + [anon_sym_operator] = ACTIONS(3799), + [anon_sym_try] = ACTIONS(3799), + [anon_sym_delete] = ACTIONS(3799), + [anon_sym_throw] = ACTIONS(3799), + [anon_sym_co_return] = ACTIONS(3799), + [anon_sym_co_yield] = ACTIONS(3799), + [anon_sym_R_DQUOTE] = ACTIONS(3801), + [anon_sym_LR_DQUOTE] = ACTIONS(3801), + [anon_sym_uR_DQUOTE] = ACTIONS(3801), + [anon_sym_UR_DQUOTE] = ACTIONS(3801), + [anon_sym_u8R_DQUOTE] = ACTIONS(3801), + [anon_sym_co_await] = ACTIONS(3799), + [anon_sym_new] = ACTIONS(3799), + [anon_sym_requires] = ACTIONS(3799), + [sym_this] = ACTIONS(3799), }, [1414] = { - [sym__expression] = STATE(3552), - [sym_comma_expression] = STATE(6402), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2954), - [anon_sym_RPAREN] = ACTIONS(3518), - [anon_sym_LPAREN2] = ACTIONS(984), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [sym_identifier] = ACTIONS(3803), + [anon_sym_COMMA] = ACTIONS(3805), + [anon_sym_RPAREN] = ACTIONS(3805), + [anon_sym_LPAREN2] = ACTIONS(3805), + [anon_sym_BANG] = ACTIONS(3805), + [anon_sym_TILDE] = ACTIONS(3805), + [anon_sym_DASH] = ACTIONS(3803), + [anon_sym_PLUS] = ACTIONS(3803), + [anon_sym_STAR] = ACTIONS(3805), + [anon_sym_AMP_AMP] = ACTIONS(3805), + [anon_sym_AMP] = ACTIONS(3803), + [anon_sym_SEMI] = ACTIONS(3805), + [anon_sym_extern] = ACTIONS(3803), + [anon_sym___attribute__] = ACTIONS(3803), + [anon_sym_COLON_COLON] = ACTIONS(3805), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3805), + [anon_sym___declspec] = ACTIONS(3803), + [anon_sym___based] = ACTIONS(3803), + [anon_sym_LBRACE] = ACTIONS(3805), + [anon_sym_LBRACK] = ACTIONS(3803), + [anon_sym_EQ] = ACTIONS(3805), + [anon_sym_static] = ACTIONS(3803), + [anon_sym_register] = ACTIONS(3803), + [anon_sym_inline] = ACTIONS(3803), + [anon_sym_thread_local] = ACTIONS(3803), + [anon_sym_const] = ACTIONS(3803), + [anon_sym_constexpr] = ACTIONS(3803), + [anon_sym_volatile] = ACTIONS(3803), + [anon_sym_restrict] = ACTIONS(3803), + [anon_sym___restrict__] = ACTIONS(3803), + [anon_sym__Atomic] = ACTIONS(3803), + [anon_sym__Noreturn] = ACTIONS(3803), + [anon_sym_noreturn] = ACTIONS(3803), + [anon_sym_mutable] = ACTIONS(3803), + [anon_sym_constinit] = ACTIONS(3803), + [anon_sym_consteval] = ACTIONS(3803), + [anon_sym_signed] = ACTIONS(3803), + [anon_sym_unsigned] = ACTIONS(3803), + [anon_sym_long] = ACTIONS(3803), + [anon_sym_short] = ACTIONS(3803), + [sym_primitive_type] = ACTIONS(3803), + [anon_sym_enum] = ACTIONS(3803), + [anon_sym_class] = ACTIONS(3803), + [anon_sym_struct] = ACTIONS(3803), + [anon_sym_union] = ACTIONS(3803), + [anon_sym_if] = ACTIONS(3803), + [anon_sym_switch] = ACTIONS(3803), + [anon_sym_case] = ACTIONS(3803), + [anon_sym_default] = ACTIONS(3803), + [anon_sym_while] = ACTIONS(3803), + [anon_sym_do] = ACTIONS(3803), + [anon_sym_for] = ACTIONS(3803), + [anon_sym_return] = ACTIONS(3803), + [anon_sym_break] = ACTIONS(3803), + [anon_sym_continue] = ACTIONS(3803), + [anon_sym_goto] = ACTIONS(3803), + [anon_sym_not] = ACTIONS(3803), + [anon_sym_compl] = ACTIONS(3803), + [anon_sym_DASH_DASH] = ACTIONS(3805), + [anon_sym_PLUS_PLUS] = ACTIONS(3805), + [anon_sym_sizeof] = ACTIONS(3803), + [anon_sym_offsetof] = ACTIONS(3803), + [anon_sym__Generic] = ACTIONS(3803), + [anon_sym_asm] = ACTIONS(3803), + [anon_sym___asm__] = ACTIONS(3803), + [sym_number_literal] = ACTIONS(3805), + [anon_sym_L_SQUOTE] = ACTIONS(3805), + [anon_sym_u_SQUOTE] = ACTIONS(3805), + [anon_sym_U_SQUOTE] = ACTIONS(3805), + [anon_sym_u8_SQUOTE] = ACTIONS(3805), + [anon_sym_SQUOTE] = ACTIONS(3805), + [anon_sym_L_DQUOTE] = ACTIONS(3805), + [anon_sym_u_DQUOTE] = ACTIONS(3805), + [anon_sym_U_DQUOTE] = ACTIONS(3805), + [anon_sym_u8_DQUOTE] = ACTIONS(3805), + [anon_sym_DQUOTE] = ACTIONS(3805), + [sym_true] = ACTIONS(3803), + [sym_false] = ACTIONS(3803), + [anon_sym_NULL] = ACTIONS(3803), + [anon_sym_nullptr] = ACTIONS(3803), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3803), + [anon_sym_decltype] = ACTIONS(3803), + [anon_sym_virtual] = ACTIONS(3803), + [anon_sym_explicit] = ACTIONS(3803), + [anon_sym_typename] = ACTIONS(3803), + [anon_sym_template] = ACTIONS(3803), + [anon_sym_GT2] = ACTIONS(3805), + [anon_sym_operator] = ACTIONS(3803), + [anon_sym_try] = ACTIONS(3803), + [anon_sym_delete] = ACTIONS(3803), + [anon_sym_throw] = ACTIONS(3803), + [anon_sym_co_return] = ACTIONS(3803), + [anon_sym_co_yield] = ACTIONS(3803), + [anon_sym_R_DQUOTE] = ACTIONS(3805), + [anon_sym_LR_DQUOTE] = ACTIONS(3805), + [anon_sym_uR_DQUOTE] = ACTIONS(3805), + [anon_sym_UR_DQUOTE] = ACTIONS(3805), + [anon_sym_u8R_DQUOTE] = ACTIONS(3805), + [anon_sym_co_await] = ACTIONS(3803), + [anon_sym_new] = ACTIONS(3803), + [anon_sym_requires] = ACTIONS(3803), + [sym_this] = ACTIONS(3803), }, [1415] = { - [sym__expression] = STATE(2495), - [sym_conditional_expression] = STATE(2574), - [sym_assignment_expression] = STATE(2574), - [sym_pointer_expression] = STATE(2578), - [sym_unary_expression] = STATE(2574), - [sym_binary_expression] = STATE(2574), - [sym_update_expression] = STATE(2574), - [sym_cast_expression] = STATE(2574), - [sym_sizeof_expression] = STATE(2574), - [sym_subscript_expression] = STATE(2578), - [sym_call_expression] = STATE(2578), - [sym_field_expression] = STATE(2578), - [sym_compound_literal_expression] = STATE(2574), - [sym_parenthesized_expression] = STATE(2578), - [sym_char_literal] = STATE(2207), - [sym_concatenated_string] = STATE(2207), - [sym_string_literal] = STATE(1820), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5944), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(2574), - [sym_raw_string_literal] = STATE(1820), - [sym_co_await_expression] = STATE(2574), - [sym_new_expression] = STATE(2574), - [sym_delete_expression] = STATE(2574), - [sym_requires_clause] = STATE(2574), - [sym_requires_expression] = STATE(2574), - [sym_lambda_expression] = STATE(2574), - [sym_lambda_capture_specifier] = STATE(4479), - [sym_fold_expression] = STATE(2574), - [sym_parameter_pack_expansion] = STATE(2574), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2578), - [sym_qualified_type_identifier] = STATE(5944), - [sym_user_defined_literal] = STATE(2574), - [sym_identifier] = ACTIONS(1523), - [anon_sym_COMMA] = ACTIONS(3520), - [anon_sym_LPAREN2] = ACTIONS(1527), - [anon_sym_BANG] = ACTIONS(1531), - [anon_sym_TILDE] = ACTIONS(1531), - [anon_sym_DASH] = ACTIONS(1529), - [anon_sym_PLUS] = ACTIONS(1529), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1539), - [anon_sym_RBRACK] = ACTIONS(3520), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(1529), - [anon_sym_compl] = ACTIONS(1529), - [anon_sym_DASH_DASH] = ACTIONS(1543), - [anon_sym_PLUS_PLUS] = ACTIONS(1543), - [anon_sym_sizeof] = ACTIONS(1545), - [sym_number_literal] = ACTIONS(1547), - [anon_sym_L_SQUOTE] = ACTIONS(1549), - [anon_sym_u_SQUOTE] = ACTIONS(1549), - [anon_sym_U_SQUOTE] = ACTIONS(1549), - [anon_sym_u8_SQUOTE] = ACTIONS(1549), - [anon_sym_SQUOTE] = ACTIONS(1549), - [anon_sym_L_DQUOTE] = ACTIONS(1551), - [anon_sym_u_DQUOTE] = ACTIONS(1551), - [anon_sym_U_DQUOTE] = ACTIONS(1551), - [anon_sym_u8_DQUOTE] = ACTIONS(1551), - [anon_sym_DQUOTE] = ACTIONS(1551), - [sym_true] = ACTIONS(1553), - [sym_false] = ACTIONS(1553), - [sym_null] = ACTIONS(1553), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1557), - [anon_sym_R_DQUOTE] = ACTIONS(1559), - [anon_sym_LR_DQUOTE] = ACTIONS(1559), - [anon_sym_uR_DQUOTE] = ACTIONS(1559), - [anon_sym_UR_DQUOTE] = ACTIONS(1559), - [anon_sym_u8R_DQUOTE] = ACTIONS(1559), - [anon_sym_co_await] = ACTIONS(1561), - [anon_sym_new] = ACTIONS(1563), - [anon_sym_requires] = ACTIONS(1565), - [sym_this] = ACTIONS(1553), - [sym_nullptr] = ACTIONS(1553), + [sym_type_qualifier] = STATE(2301), + [sym__expression] = STATE(4506), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3509), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3509), + [sym_call_expression] = STATE(3509), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3509), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3509), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3509), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_type_definition_repeat1] = STATE(2301), + [sym_identifier] = ACTIONS(3613), + [anon_sym_LPAREN2] = ACTIONS(3615), + [anon_sym_BANG] = ACTIONS(3619), + [anon_sym_TILDE] = ACTIONS(3619), + [anon_sym_DASH] = ACTIONS(3617), + [anon_sym_PLUS] = ACTIONS(3617), + [anon_sym_STAR] = ACTIONS(3807), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(3621), + [anon_sym_LBRACK] = ACTIONS(1949), + [anon_sym_RBRACK] = ACTIONS(3809), + [anon_sym_const] = ACTIONS(3747), + [anon_sym_constexpr] = ACTIONS(3747), + [anon_sym_volatile] = ACTIONS(3747), + [anon_sym_restrict] = ACTIONS(3747), + [anon_sym___restrict__] = ACTIONS(3747), + [anon_sym__Atomic] = ACTIONS(3747), + [anon_sym__Noreturn] = ACTIONS(3747), + [anon_sym_noreturn] = ACTIONS(3747), + [anon_sym_mutable] = ACTIONS(3747), + [anon_sym_constinit] = ACTIONS(3747), + [anon_sym_consteval] = ACTIONS(3747), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(3617), + [anon_sym_compl] = ACTIONS(3617), + [anon_sym_DASH_DASH] = ACTIONS(3623), + [anon_sym_PLUS_PLUS] = ACTIONS(3623), + [anon_sym_sizeof] = ACTIONS(3625), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(3627), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(3629), + [anon_sym_new] = ACTIONS(3631), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1416] = { - [sym__expression] = STATE(3708), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_initializer_list] = STATE(6249), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2954), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym_expression_statement] = STATE(3221), + [sym__expression] = STATE(4227), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7331), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_type_requirement] = STATE(1418), + [sym_compound_requirement] = STATE(1418), + [sym__requirement] = STATE(1418), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_requirement_seq_repeat1] = STATE(1418), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1489), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(3811), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(3813), + [anon_sym_RBRACE] = ACTIONS(3815), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_typename] = ACTIONS(3817), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1417] = { - [sym__expression] = STATE(3755), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_initializer_list] = STATE(6474), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2954), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym_expression_statement] = STATE(3221), + [sym__expression] = STATE(4227), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7331), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_type_requirement] = STATE(1418), + [sym_compound_requirement] = STATE(1418), + [sym__requirement] = STATE(1418), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_requirement_seq_repeat1] = STATE(1418), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1489), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(3811), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(3813), + [anon_sym_RBRACE] = ACTIONS(3819), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_typename] = ACTIONS(3817), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1418] = { - [sym__expression] = STATE(3570), - [sym_comma_expression] = STATE(6012), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2954), - [anon_sym_RPAREN] = ACTIONS(3522), - [anon_sym_LPAREN2] = ACTIONS(984), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [sym_expression_statement] = STATE(3221), + [sym__expression] = STATE(4227), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7331), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_type_requirement] = STATE(1418), + [sym_compound_requirement] = STATE(1418), + [sym__requirement] = STATE(1418), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_requirement_seq_repeat1] = STATE(1418), + [sym_identifier] = ACTIONS(3821), + [anon_sym_LPAREN2] = ACTIONS(3824), + [anon_sym_BANG] = ACTIONS(3827), + [anon_sym_TILDE] = ACTIONS(3827), + [anon_sym_DASH] = ACTIONS(3830), + [anon_sym_PLUS] = ACTIONS(3830), + [anon_sym_STAR] = ACTIONS(3833), + [anon_sym_AMP] = ACTIONS(3833), + [anon_sym_SEMI] = ACTIONS(3836), + [anon_sym_COLON_COLON] = ACTIONS(3839), + [anon_sym_LBRACE] = ACTIONS(3842), + [anon_sym_RBRACE] = ACTIONS(3845), + [anon_sym_LBRACK] = ACTIONS(3847), + [sym_primitive_type] = ACTIONS(3850), + [anon_sym_not] = ACTIONS(3830), + [anon_sym_compl] = ACTIONS(3830), + [anon_sym_DASH_DASH] = ACTIONS(3853), + [anon_sym_PLUS_PLUS] = ACTIONS(3853), + [anon_sym_sizeof] = ACTIONS(3856), + [anon_sym_offsetof] = ACTIONS(3859), + [anon_sym__Generic] = ACTIONS(3862), + [anon_sym_asm] = ACTIONS(3865), + [anon_sym___asm__] = ACTIONS(3865), + [sym_number_literal] = ACTIONS(3868), + [anon_sym_L_SQUOTE] = ACTIONS(3871), + [anon_sym_u_SQUOTE] = ACTIONS(3871), + [anon_sym_U_SQUOTE] = ACTIONS(3871), + [anon_sym_u8_SQUOTE] = ACTIONS(3871), + [anon_sym_SQUOTE] = ACTIONS(3871), + [anon_sym_L_DQUOTE] = ACTIONS(3874), + [anon_sym_u_DQUOTE] = ACTIONS(3874), + [anon_sym_U_DQUOTE] = ACTIONS(3874), + [anon_sym_u8_DQUOTE] = ACTIONS(3874), + [anon_sym_DQUOTE] = ACTIONS(3874), + [sym_true] = ACTIONS(3877), + [sym_false] = ACTIONS(3877), + [anon_sym_NULL] = ACTIONS(3880), + [anon_sym_nullptr] = ACTIONS(3880), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3883), + [anon_sym_typename] = ACTIONS(3886), + [anon_sym_template] = ACTIONS(3889), + [anon_sym_delete] = ACTIONS(3892), + [anon_sym_R_DQUOTE] = ACTIONS(3895), + [anon_sym_LR_DQUOTE] = ACTIONS(3895), + [anon_sym_uR_DQUOTE] = ACTIONS(3895), + [anon_sym_UR_DQUOTE] = ACTIONS(3895), + [anon_sym_u8R_DQUOTE] = ACTIONS(3895), + [anon_sym_co_await] = ACTIONS(3898), + [anon_sym_new] = ACTIONS(3901), + [anon_sym_requires] = ACTIONS(3904), + [sym_this] = ACTIONS(3877), }, [1419] = { - [sym__expression] = STATE(3498), - [sym_comma_expression] = STATE(6308), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2954), - [anon_sym_RPAREN] = ACTIONS(3524), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym_expression_statement] = STATE(3221), + [sym__expression] = STATE(4227), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7331), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_type_requirement] = STATE(1418), + [sym_compound_requirement] = STATE(1418), + [sym__requirement] = STATE(1418), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_requirement_seq_repeat1] = STATE(1418), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(3811), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(3813), + [anon_sym_RBRACE] = ACTIONS(3907), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_typename] = ACTIONS(3817), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1420] = { - [sym__expression] = STATE(3542), - [sym_comma_expression] = STATE(6421), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2954), - [anon_sym_RPAREN] = ACTIONS(3526), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym_expression_statement] = STATE(3221), + [sym__expression] = STATE(4227), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7331), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_type_requirement] = STATE(1428), + [sym_compound_requirement] = STATE(1428), + [sym__requirement] = STATE(1428), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_requirement_seq_repeat1] = STATE(1428), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(3811), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(3813), + [anon_sym_RBRACE] = ACTIONS(3909), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_typename] = ACTIONS(3817), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1421] = { - [sym__expression] = STATE(3580), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_initializer_list] = STATE(5872), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2954), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym_expression_statement] = STATE(3221), + [sym__expression] = STATE(4227), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7331), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_type_requirement] = STATE(1419), + [sym_compound_requirement] = STATE(1419), + [sym__requirement] = STATE(1419), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_requirement_seq_repeat1] = STATE(1419), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1489), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(3811), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(3813), + [anon_sym_RBRACE] = ACTIONS(3911), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_typename] = ACTIONS(3817), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1422] = { - [sym__expression] = STATE(3525), - [sym_comma_expression] = STATE(6307), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2954), - [anon_sym_RPAREN] = ACTIONS(3528), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym_expression_statement] = STATE(3221), + [sym__expression] = STATE(4227), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7331), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_type_requirement] = STATE(1418), + [sym_compound_requirement] = STATE(1418), + [sym__requirement] = STATE(1418), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_requirement_seq_repeat1] = STATE(1418), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(3811), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(3813), + [anon_sym_RBRACE] = ACTIONS(3913), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_typename] = ACTIONS(3817), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1423] = { - [sym__expression] = STATE(3568), - [sym_comma_expression] = STATE(6035), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2954), - [anon_sym_RPAREN] = ACTIONS(3530), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym_expression_statement] = STATE(3221), + [sym__expression] = STATE(4227), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7331), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_type_requirement] = STATE(1432), + [sym_compound_requirement] = STATE(1432), + [sym__requirement] = STATE(1432), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_requirement_seq_repeat1] = STATE(1432), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(3811), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(3813), + [anon_sym_RBRACE] = ACTIONS(3915), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_typename] = ACTIONS(3817), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1424] = { - [sym__expression] = STATE(3551), - [sym_comma_expression] = STATE(6400), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2954), - [anon_sym_RPAREN] = ACTIONS(3532), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym_expression_statement] = STATE(3221), + [sym__expression] = STATE(4227), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7331), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_type_requirement] = STATE(1418), + [sym_compound_requirement] = STATE(1418), + [sym__requirement] = STATE(1418), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_requirement_seq_repeat1] = STATE(1418), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(3811), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(3813), + [anon_sym_RBRACE] = ACTIONS(3917), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_typename] = ACTIONS(3817), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1425] = { - [sym__expression] = STATE(3518), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_initializer_list] = STATE(5989), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2954), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym_expression_statement] = STATE(3221), + [sym__expression] = STATE(4227), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7331), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_type_requirement] = STATE(1424), + [sym_compound_requirement] = STATE(1424), + [sym__requirement] = STATE(1424), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_requirement_seq_repeat1] = STATE(1424), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1489), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(3811), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(3813), + [anon_sym_RBRACE] = ACTIONS(3919), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_typename] = ACTIONS(3817), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1426] = { - [sym__expression] = STATE(3565), - [sym_comma_expression] = STATE(6030), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2954), - [anon_sym_RPAREN] = ACTIONS(3534), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym_expression_statement] = STATE(3221), + [sym__expression] = STATE(4227), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7331), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_type_requirement] = STATE(1418), + [sym_compound_requirement] = STATE(1418), + [sym__requirement] = STATE(1418), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_requirement_seq_repeat1] = STATE(1418), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(3811), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(3813), + [anon_sym_RBRACE] = ACTIONS(3921), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_typename] = ACTIONS(3817), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1427] = { - [sym__expression] = STATE(3511), - [sym_comma_expression] = STATE(6291), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2954), - [anon_sym_RPAREN] = ACTIONS(3536), - [anon_sym_LPAREN2] = ACTIONS(984), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [sym_identifier] = ACTIONS(3923), + [anon_sym_LPAREN2] = ACTIONS(3926), + [anon_sym_BANG] = ACTIONS(3929), + [anon_sym_TILDE] = ACTIONS(3926), + [anon_sym_DASH] = ACTIONS(3931), + [anon_sym_PLUS] = ACTIONS(3931), + [anon_sym_STAR] = ACTIONS(3926), + [anon_sym_AMP_AMP] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3923), + [anon_sym_SEMI] = ACTIONS(3929), + [anon_sym_extern] = ACTIONS(3935), + [anon_sym___attribute__] = ACTIONS(3935), + [anon_sym_COLON_COLON] = ACTIONS(3926), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3926), + [anon_sym___declspec] = ACTIONS(3935), + [anon_sym___based] = ACTIONS(3935), + [anon_sym_LBRACE] = ACTIONS(3929), + [anon_sym_LBRACK] = ACTIONS(3923), + [anon_sym_static] = ACTIONS(3935), + [anon_sym_register] = ACTIONS(3935), + [anon_sym_inline] = ACTIONS(3935), + [anon_sym_thread_local] = ACTIONS(3935), + [anon_sym_const] = ACTIONS(3935), + [anon_sym_constexpr] = ACTIONS(3935), + [anon_sym_volatile] = ACTIONS(3935), + [anon_sym_restrict] = ACTIONS(3935), + [anon_sym___restrict__] = ACTIONS(3935), + [anon_sym__Atomic] = ACTIONS(3935), + [anon_sym__Noreturn] = ACTIONS(3935), + [anon_sym_noreturn] = ACTIONS(3935), + [anon_sym_mutable] = ACTIONS(3935), + [anon_sym_constinit] = ACTIONS(3935), + [anon_sym_consteval] = ACTIONS(3935), + [anon_sym_signed] = ACTIONS(3935), + [anon_sym_unsigned] = ACTIONS(3935), + [anon_sym_long] = ACTIONS(3935), + [anon_sym_short] = ACTIONS(3935), + [sym_primitive_type] = ACTIONS(3923), + [anon_sym_enum] = ACTIONS(3935), + [anon_sym_class] = ACTIONS(3935), + [anon_sym_struct] = ACTIONS(3935), + [anon_sym_union] = ACTIONS(3935), + [anon_sym_if] = ACTIONS(3931), + [anon_sym_switch] = ACTIONS(3931), + [anon_sym_case] = ACTIONS(3931), + [anon_sym_default] = ACTIONS(3931), + [anon_sym_while] = ACTIONS(3931), + [anon_sym_do] = ACTIONS(3931), + [anon_sym_for] = ACTIONS(3931), + [anon_sym_return] = ACTIONS(3931), + [anon_sym_break] = ACTIONS(3931), + [anon_sym_continue] = ACTIONS(3931), + [anon_sym_goto] = ACTIONS(3931), + [anon_sym_not] = ACTIONS(3931), + [anon_sym_compl] = ACTIONS(3931), + [anon_sym_DASH_DASH] = ACTIONS(3929), + [anon_sym_PLUS_PLUS] = ACTIONS(3929), + [anon_sym_sizeof] = ACTIONS(3931), + [anon_sym_offsetof] = ACTIONS(3931), + [anon_sym__Generic] = ACTIONS(3931), + [anon_sym_asm] = ACTIONS(3931), + [anon_sym___asm__] = ACTIONS(3931), + [sym_number_literal] = ACTIONS(3929), + [anon_sym_L_SQUOTE] = ACTIONS(3929), + [anon_sym_u_SQUOTE] = ACTIONS(3929), + [anon_sym_U_SQUOTE] = ACTIONS(3929), + [anon_sym_u8_SQUOTE] = ACTIONS(3929), + [anon_sym_SQUOTE] = ACTIONS(3929), + [anon_sym_L_DQUOTE] = ACTIONS(3929), + [anon_sym_u_DQUOTE] = ACTIONS(3929), + [anon_sym_U_DQUOTE] = ACTIONS(3929), + [anon_sym_u8_DQUOTE] = ACTIONS(3929), + [anon_sym_DQUOTE] = ACTIONS(3929), + [sym_true] = ACTIONS(3931), + [sym_false] = ACTIONS(3931), + [anon_sym_NULL] = ACTIONS(3931), + [anon_sym_nullptr] = ACTIONS(3931), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3935), + [anon_sym_decltype] = ACTIONS(3923), + [anon_sym_virtual] = ACTIONS(3935), + [anon_sym_explicit] = ACTIONS(3935), + [anon_sym_typename] = ACTIONS(3935), + [anon_sym_template] = ACTIONS(3923), + [anon_sym_operator] = ACTIONS(3935), + [anon_sym_try] = ACTIONS(3931), + [anon_sym_delete] = ACTIONS(3931), + [anon_sym_throw] = ACTIONS(3931), + [anon_sym_co_return] = ACTIONS(3931), + [anon_sym_co_yield] = ACTIONS(3931), + [anon_sym_R_DQUOTE] = ACTIONS(3929), + [anon_sym_LR_DQUOTE] = ACTIONS(3929), + [anon_sym_uR_DQUOTE] = ACTIONS(3929), + [anon_sym_UR_DQUOTE] = ACTIONS(3929), + [anon_sym_u8R_DQUOTE] = ACTIONS(3929), + [anon_sym_co_await] = ACTIONS(3931), + [anon_sym_new] = ACTIONS(3931), + [anon_sym_requires] = ACTIONS(3931), + [sym_this] = ACTIONS(3931), }, [1428] = { - [sym__expression] = STATE(3850), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_initializer_list] = STATE(6515), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2954), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym_expression_statement] = STATE(3221), + [sym__expression] = STATE(4227), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7331), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_type_requirement] = STATE(1418), + [sym_compound_requirement] = STATE(1418), + [sym__requirement] = STATE(1418), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_requirement_seq_repeat1] = STATE(1418), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1489), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(3811), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(3813), + [anon_sym_RBRACE] = ACTIONS(3937), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_typename] = ACTIONS(3817), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1429] = { - [sym__expression] = STATE(3536), - [sym_comma_expression] = STATE(6224), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2954), - [anon_sym_RPAREN] = ACTIONS(3538), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym_expression_statement] = STATE(3221), + [sym__expression] = STATE(4227), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7331), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_type_requirement] = STATE(1422), + [sym_compound_requirement] = STATE(1422), + [sym__requirement] = STATE(1422), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_requirement_seq_repeat1] = STATE(1422), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(3811), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(3813), + [anon_sym_RBRACE] = ACTIONS(3939), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_typename] = ACTIONS(3817), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1430] = { - [sym__expression] = STATE(3646), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_initializer_list] = STATE(5848), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2954), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym_expression_statement] = STATE(3221), + [sym__expression] = STATE(4227), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7331), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_type_requirement] = STATE(1418), + [sym_compound_requirement] = STATE(1418), + [sym__requirement] = STATE(1418), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_requirement_seq_repeat1] = STATE(1418), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1489), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(3811), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(3813), + [anon_sym_RBRACE] = ACTIONS(3941), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_typename] = ACTIONS(3817), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1431] = { - [sym__expression] = STATE(3383), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_initializer_list] = STATE(3384), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2954), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym_expression_statement] = STATE(3221), + [sym__expression] = STATE(4227), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7331), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_type_requirement] = STATE(1417), + [sym_compound_requirement] = STATE(1417), + [sym__requirement] = STATE(1417), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_requirement_seq_repeat1] = STATE(1417), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1489), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(3811), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(3813), + [anon_sym_RBRACE] = ACTIONS(3943), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_typename] = ACTIONS(3817), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1432] = { - [sym__expression] = STATE(2986), - [sym_conditional_expression] = STATE(2574), - [sym_assignment_expression] = STATE(2574), - [sym_pointer_expression] = STATE(2578), - [sym_unary_expression] = STATE(2574), - [sym_binary_expression] = STATE(2574), - [sym_update_expression] = STATE(2574), - [sym_cast_expression] = STATE(2574), - [sym_sizeof_expression] = STATE(2574), - [sym_subscript_expression] = STATE(2578), - [sym_call_expression] = STATE(2578), - [sym_field_expression] = STATE(2578), - [sym_compound_literal_expression] = STATE(2574), - [sym_parenthesized_expression] = STATE(2578), - [sym_initializer_list] = STATE(2600), - [sym_char_literal] = STATE(2207), - [sym_concatenated_string] = STATE(2207), - [sym_string_literal] = STATE(1820), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5944), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(2574), - [sym_raw_string_literal] = STATE(1820), - [sym_co_await_expression] = STATE(2574), - [sym_new_expression] = STATE(2574), - [sym_delete_expression] = STATE(2574), - [sym_requires_clause] = STATE(2574), - [sym_requires_expression] = STATE(2574), - [sym_lambda_expression] = STATE(2574), - [sym_lambda_capture_specifier] = STATE(4479), - [sym_fold_expression] = STATE(2574), - [sym_parameter_pack_expansion] = STATE(2574), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2578), - [sym_qualified_type_identifier] = STATE(5944), - [sym_user_defined_literal] = STATE(2574), - [sym_identifier] = ACTIONS(1523), - [anon_sym_LPAREN2] = ACTIONS(1647), - [anon_sym_BANG] = ACTIONS(1651), - [anon_sym_TILDE] = ACTIONS(1651), - [anon_sym_DASH] = ACTIONS(1649), - [anon_sym_PLUS] = ACTIONS(1649), - [anon_sym_STAR] = ACTIONS(3081), - [anon_sym_AMP] = ACTIONS(3081), - [anon_sym_COLON_COLON] = ACTIONS(1655), - [anon_sym_LBRACE] = ACTIONS(1537), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(1649), - [anon_sym_compl] = ACTIONS(1649), - [anon_sym_DASH_DASH] = ACTIONS(1657), - [anon_sym_PLUS_PLUS] = ACTIONS(1657), - [anon_sym_sizeof] = ACTIONS(1659), - [sym_number_literal] = ACTIONS(1547), - [anon_sym_L_SQUOTE] = ACTIONS(1549), - [anon_sym_u_SQUOTE] = ACTIONS(1549), - [anon_sym_U_SQUOTE] = ACTIONS(1549), - [anon_sym_u8_SQUOTE] = ACTIONS(1549), - [anon_sym_SQUOTE] = ACTIONS(1549), - [anon_sym_L_DQUOTE] = ACTIONS(1551), - [anon_sym_u_DQUOTE] = ACTIONS(1551), - [anon_sym_U_DQUOTE] = ACTIONS(1551), - [anon_sym_u8_DQUOTE] = ACTIONS(1551), - [anon_sym_DQUOTE] = ACTIONS(1551), - [sym_true] = ACTIONS(1553), - [sym_false] = ACTIONS(1553), - [sym_null] = ACTIONS(1553), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1661), - [anon_sym_R_DQUOTE] = ACTIONS(1559), - [anon_sym_LR_DQUOTE] = ACTIONS(1559), - [anon_sym_uR_DQUOTE] = ACTIONS(1559), - [anon_sym_UR_DQUOTE] = ACTIONS(1559), - [anon_sym_u8R_DQUOTE] = ACTIONS(1559), - [anon_sym_co_await] = ACTIONS(1663), - [anon_sym_new] = ACTIONS(1563), - [anon_sym_requires] = ACTIONS(1565), - [sym_this] = ACTIONS(1553), - [sym_nullptr] = ACTIONS(1553), + [sym_expression_statement] = STATE(3221), + [sym__expression] = STATE(4227), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7331), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_type_requirement] = STATE(1418), + [sym_compound_requirement] = STATE(1418), + [sym__requirement] = STATE(1418), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_requirement_seq_repeat1] = STATE(1418), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(3811), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(3813), + [anon_sym_RBRACE] = ACTIONS(3945), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_typename] = ACTIONS(3817), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1433] = { - [sym__expression] = STATE(3562), - [sym_comma_expression] = STATE(6026), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2954), - [anon_sym_RPAREN] = ACTIONS(3540), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym_expression_statement] = STATE(3221), + [sym__expression] = STATE(4227), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7331), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_type_requirement] = STATE(1430), + [sym_compound_requirement] = STATE(1430), + [sym__requirement] = STATE(1430), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_requirement_seq_repeat1] = STATE(1430), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(3811), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(3813), + [anon_sym_RBRACE] = ACTIONS(3947), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_typename] = ACTIONS(3817), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1434] = { - [sym__expression] = STATE(3846), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_initializer_list] = STATE(6510), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2954), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym_expression_statement] = STATE(3221), + [sym__expression] = STATE(4227), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7331), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_type_requirement] = STATE(1426), + [sym_compound_requirement] = STATE(1426), + [sym__requirement] = STATE(1426), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_requirement_seq_repeat1] = STATE(1426), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1489), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(3811), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(3813), + [anon_sym_RBRACE] = ACTIONS(3949), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_typename] = ACTIONS(3817), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1435] = { - [sym__expression] = STATE(3476), - [sym_comma_expression] = STATE(5811), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2954), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3542), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym_expression_statement] = STATE(3221), + [sym__expression] = STATE(4227), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7331), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_type_requirement] = STATE(1416), + [sym_compound_requirement] = STATE(1416), + [sym__requirement] = STATE(1416), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_requirement_seq_repeat1] = STATE(1416), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(3811), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(3813), + [anon_sym_RBRACE] = ACTIONS(3951), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_typename] = ACTIONS(3817), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1436] = { - [sym__expression] = STATE(3540), - [sym_comma_expression] = STATE(6381), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2954), - [anon_sym_RPAREN] = ACTIONS(3545), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym__expression] = STATE(4087), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_initializer_list] = STATE(6455), + [sym_initializer_pair] = STATE(6455), + [sym_subscript_designator] = STATE(5891), + [sym_field_designator] = STATE(5891), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_initializer_pair_repeat1] = STATE(5891), + [sym_identifier] = ACTIONS(3525), + [anon_sym_COMMA] = ACTIONS(3953), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(1899), + [anon_sym_RBRACE] = ACTIONS(3955), + [anon_sym_LBRACK] = ACTIONS(3957), + [sym_primitive_type] = ACTIONS(1951), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [anon_sym_DOT] = ACTIONS(203), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1437] = { - [sym__expression] = STATE(2846), - [sym_conditional_expression] = STATE(2940), - [sym_assignment_expression] = STATE(2940), - [sym_pointer_expression] = STATE(2933), - [sym_unary_expression] = STATE(2940), - [sym_binary_expression] = STATE(2940), - [sym_update_expression] = STATE(2940), - [sym_cast_expression] = STATE(2940), - [sym_sizeof_expression] = STATE(2940), - [sym_subscript_expression] = STATE(2933), - [sym_call_expression] = STATE(2933), - [sym_field_expression] = STATE(2933), - [sym_compound_literal_expression] = STATE(2940), - [sym_parenthesized_expression] = STATE(2933), - [sym_initializer_list] = STATE(2945), - [sym_char_literal] = STATE(2845), - [sym_concatenated_string] = STATE(2845), - [sym_string_literal] = STATE(1861), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5801), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(2940), - [sym_raw_string_literal] = STATE(1861), - [sym_co_await_expression] = STATE(2940), - [sym_new_expression] = STATE(2940), - [sym_delete_expression] = STATE(2940), - [sym_requires_clause] = STATE(2940), - [sym_requires_expression] = STATE(2940), - [sym_lambda_expression] = STATE(2940), - [sym_lambda_capture_specifier] = STATE(4464), - [sym_fold_expression] = STATE(2940), - [sym_parameter_pack_expansion] = STATE(2940), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4570), - [sym_qualified_identifier] = STATE(2933), - [sym_qualified_type_identifier] = STATE(5801), - [sym_user_defined_literal] = STATE(2940), - [sym_identifier] = ACTIONS(1605), - [anon_sym_LPAREN2] = ACTIONS(1607), - [anon_sym_BANG] = ACTIONS(1611), - [anon_sym_TILDE] = ACTIONS(1611), - [anon_sym_DASH] = ACTIONS(1609), - [anon_sym_PLUS] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(2416), - [anon_sym_AMP] = ACTIONS(2416), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_LBRACE] = ACTIONS(1617), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1619), - [anon_sym_not] = ACTIONS(1609), - [anon_sym_compl] = ACTIONS(1609), - [anon_sym_DASH_DASH] = ACTIONS(1621), - [anon_sym_PLUS_PLUS] = ACTIONS(1621), - [anon_sym_sizeof] = ACTIONS(1623), - [sym_number_literal] = ACTIONS(1625), - [anon_sym_L_SQUOTE] = ACTIONS(1627), - [anon_sym_u_SQUOTE] = ACTIONS(1627), - [anon_sym_U_SQUOTE] = ACTIONS(1627), - [anon_sym_u8_SQUOTE] = ACTIONS(1627), - [anon_sym_SQUOTE] = ACTIONS(1627), - [anon_sym_L_DQUOTE] = ACTIONS(1629), - [anon_sym_u_DQUOTE] = ACTIONS(1629), - [anon_sym_U_DQUOTE] = ACTIONS(1629), - [anon_sym_u8_DQUOTE] = ACTIONS(1629), - [anon_sym_DQUOTE] = ACTIONS(1629), - [sym_true] = ACTIONS(1631), - [sym_false] = ACTIONS(1631), - [sym_null] = ACTIONS(1631), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1633), - [anon_sym_R_DQUOTE] = ACTIONS(1635), - [anon_sym_LR_DQUOTE] = ACTIONS(1635), - [anon_sym_uR_DQUOTE] = ACTIONS(1635), - [anon_sym_UR_DQUOTE] = ACTIONS(1635), - [anon_sym_u8R_DQUOTE] = ACTIONS(1635), - [anon_sym_co_await] = ACTIONS(1637), - [anon_sym_new] = ACTIONS(1639), - [anon_sym_requires] = ACTIONS(1641), - [sym_this] = ACTIONS(1631), - [sym_nullptr] = ACTIONS(1631), - }, - [1438] = { - [sym__expression] = STATE(3503), - [sym_comma_expression] = STATE(6305), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2954), - [anon_sym_RPAREN] = ACTIONS(3547), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym__expression] = STATE(4116), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_initializer_list] = STATE(6341), + [sym_initializer_pair] = STATE(6341), + [sym_subscript_designator] = STATE(5891), + [sym_field_designator] = STATE(5891), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_initializer_pair_repeat1] = STATE(5891), + [sym_identifier] = ACTIONS(3525), + [anon_sym_COMMA] = ACTIONS(3959), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(1899), + [anon_sym_RBRACE] = ACTIONS(3961), + [anon_sym_LBRACK] = ACTIONS(3957), + [sym_primitive_type] = ACTIONS(1951), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [anon_sym_DOT] = ACTIONS(203), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, - [1439] = { - [sym__expression] = STATE(3561), - [sym_comma_expression] = STATE(6025), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2954), - [anon_sym_RPAREN] = ACTIONS(3549), - [anon_sym_LPAREN2] = ACTIONS(984), + [1438] = { + [sym__expression] = STATE(4074), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(6866), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_initializer_list] = STATE(6714), + [sym_initializer_pair] = STATE(6714), + [sym_subscript_designator] = STATE(5891), + [sym_field_designator] = STATE(5891), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_initializer_pair_repeat1] = STATE(5891), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(1899), + [anon_sym_RBRACE] = ACTIONS(3963), + [anon_sym_LBRACK] = ACTIONS(3957), + [sym_primitive_type] = ACTIONS(1951), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [anon_sym_DOT] = ACTIONS(203), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, - [1440] = { - [sym__expression] = STATE(3841), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_initializer_list] = STATE(6508), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2954), - [anon_sym_LPAREN2] = ACTIONS(984), + [1439] = { + [sym__expression] = STATE(4123), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_initializer_list] = STATE(6202), + [sym_initializer_pair] = STATE(6202), + [sym_subscript_designator] = STATE(5891), + [sym_field_designator] = STATE(5891), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_initializer_pair_repeat1] = STATE(5891), + [sym_identifier] = ACTIONS(3525), + [anon_sym_COMMA] = ACTIONS(159), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1489), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(1899), + [anon_sym_RBRACE] = ACTIONS(3965), + [anon_sym_LBRACK] = ACTIONS(3957), + [sym_primitive_type] = ACTIONS(1951), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [anon_sym_DOT] = ACTIONS(203), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), + }, + [1440] = { + [sym_catch_clause] = STATE(1440), + [aux_sym_constructor_try_statement_repeat1] = STATE(1440), + [sym_identifier] = 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_AMP] = ACTIONS(2686), + [anon_sym_SEMI] = ACTIONS(2686), + [anon_sym_typedef] = ACTIONS(2684), + [anon_sym_extern] = ACTIONS(2684), + [anon_sym___attribute__] = ACTIONS(2684), + [anon_sym_COLON_COLON] = ACTIONS(2686), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2686), + [anon_sym___declspec] = ACTIONS(2684), + [anon_sym_LBRACE] = ACTIONS(2686), + [anon_sym_LBRACK] = ACTIONS(2684), + [anon_sym_static] = ACTIONS(2684), + [anon_sym_register] = ACTIONS(2684), + [anon_sym_inline] = ACTIONS(2684), + [anon_sym_thread_local] = 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_noreturn] = ACTIONS(2684), + [anon_sym_mutable] = ACTIONS(2684), + [anon_sym_constinit] = ACTIONS(2684), + [anon_sym_consteval] = ACTIONS(2684), + [anon_sym_signed] = ACTIONS(2684), + [anon_sym_unsigned] = ACTIONS(2684), + [anon_sym_long] = ACTIONS(2684), + [anon_sym_short] = ACTIONS(2684), + [sym_primitive_type] = ACTIONS(2684), + [anon_sym_enum] = ACTIONS(2684), + [anon_sym_class] = ACTIONS(2684), + [anon_sym_struct] = ACTIONS(2684), + [anon_sym_union] = ACTIONS(2684), + [anon_sym_if] = ACTIONS(2684), + [anon_sym_else] = ACTIONS(2684), + [anon_sym_switch] = ACTIONS(2684), + [anon_sym_while] = ACTIONS(2684), + [anon_sym_do] = ACTIONS(2684), + [anon_sym_for] = ACTIONS(2684), + [anon_sym_return] = ACTIONS(2684), + [anon_sym_break] = ACTIONS(2684), + [anon_sym_continue] = ACTIONS(2684), + [anon_sym_goto] = ACTIONS(2684), + [anon_sym_not] = ACTIONS(2684), + [anon_sym_compl] = ACTIONS(2684), + [anon_sym_DASH_DASH] = ACTIONS(2686), + [anon_sym_PLUS_PLUS] = ACTIONS(2686), + [anon_sym_sizeof] = ACTIONS(2684), + [anon_sym_offsetof] = ACTIONS(2684), + [anon_sym__Generic] = 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_L_DQUOTE] = ACTIONS(2686), + [anon_sym_u_DQUOTE] = ACTIONS(2686), + [anon_sym_U_DQUOTE] = ACTIONS(2686), + [anon_sym_u8_DQUOTE] = ACTIONS(2686), + [anon_sym_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), + [sym_auto] = ACTIONS(2684), + [anon_sym_decltype] = ACTIONS(2684), + [anon_sym_virtual] = ACTIONS(2684), + [anon_sym_typename] = ACTIONS(2684), + [anon_sym_template] = ACTIONS(2684), + [anon_sym_try] = ACTIONS(2684), + [anon_sym_delete] = ACTIONS(2684), + [anon_sym_throw] = ACTIONS(2684), + [anon_sym_co_return] = ACTIONS(2684), + [anon_sym_co_yield] = ACTIONS(2684), + [anon_sym_catch] = ACTIONS(3967), + [anon_sym_R_DQUOTE] = ACTIONS(2686), + [anon_sym_LR_DQUOTE] = ACTIONS(2686), + [anon_sym_uR_DQUOTE] = ACTIONS(2686), + [anon_sym_UR_DQUOTE] = ACTIONS(2686), + [anon_sym_u8R_DQUOTE] = ACTIONS(2686), + [anon_sym_co_await] = ACTIONS(2684), + [anon_sym_new] = ACTIONS(2684), + [anon_sym_requires] = ACTIONS(2684), + [sym_this] = ACTIONS(2684), }, [1441] = { - [sym__expression] = STATE(3505), - [sym_comma_expression] = STATE(6302), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2954), - [anon_sym_RPAREN] = ACTIONS(3551), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym__expression] = STATE(4081), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_initializer_list] = STATE(6262), + [sym_initializer_pair] = STATE(6262), + [sym_subscript_designator] = STATE(5891), + [sym_field_designator] = STATE(5891), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_initializer_pair_repeat1] = STATE(5891), + [sym_identifier] = ACTIONS(3525), + [anon_sym_COMMA] = ACTIONS(3970), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(1899), + [anon_sym_RBRACE] = ACTIONS(3972), + [anon_sym_LBRACK] = ACTIONS(3957), + [sym_primitive_type] = ACTIONS(1951), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [anon_sym_DOT] = ACTIONS(203), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1442] = { - [sym__expression] = STATE(3509), - [sym_comma_expression] = STATE(6297), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2954), - [anon_sym_RPAREN] = ACTIONS(3553), - [anon_sym_LPAREN2] = ACTIONS(984), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [sym_catch_clause] = STATE(1440), + [aux_sym_constructor_try_statement_repeat1] = STATE(1440), + [sym_identifier] = ACTIONS(2709), + [anon_sym_LPAREN2] = ACTIONS(2711), + [anon_sym_BANG] = ACTIONS(2711), + [anon_sym_TILDE] = ACTIONS(2711), + [anon_sym_DASH] = ACTIONS(2709), + [anon_sym_PLUS] = ACTIONS(2709), + [anon_sym_STAR] = ACTIONS(2711), + [anon_sym_AMP] = ACTIONS(2711), + [anon_sym_SEMI] = ACTIONS(2711), + [anon_sym_typedef] = ACTIONS(2709), + [anon_sym_extern] = ACTIONS(2709), + [anon_sym___attribute__] = ACTIONS(2709), + [anon_sym_COLON_COLON] = ACTIONS(2711), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2711), + [anon_sym___declspec] = ACTIONS(2709), + [anon_sym_LBRACE] = ACTIONS(2711), + [anon_sym_LBRACK] = ACTIONS(2709), + [anon_sym_static] = ACTIONS(2709), + [anon_sym_register] = ACTIONS(2709), + [anon_sym_inline] = ACTIONS(2709), + [anon_sym_thread_local] = ACTIONS(2709), + [anon_sym_const] = ACTIONS(2709), + [anon_sym_constexpr] = ACTIONS(2709), + [anon_sym_volatile] = ACTIONS(2709), + [anon_sym_restrict] = ACTIONS(2709), + [anon_sym___restrict__] = ACTIONS(2709), + [anon_sym__Atomic] = ACTIONS(2709), + [anon_sym__Noreturn] = ACTIONS(2709), + [anon_sym_noreturn] = ACTIONS(2709), + [anon_sym_mutable] = ACTIONS(2709), + [anon_sym_constinit] = ACTIONS(2709), + [anon_sym_consteval] = ACTIONS(2709), + [anon_sym_signed] = ACTIONS(2709), + [anon_sym_unsigned] = ACTIONS(2709), + [anon_sym_long] = ACTIONS(2709), + [anon_sym_short] = ACTIONS(2709), + [sym_primitive_type] = ACTIONS(2709), + [anon_sym_enum] = ACTIONS(2709), + [anon_sym_class] = ACTIONS(2709), + [anon_sym_struct] = ACTIONS(2709), + [anon_sym_union] = ACTIONS(2709), + [anon_sym_if] = ACTIONS(2709), + [anon_sym_else] = ACTIONS(2709), + [anon_sym_switch] = ACTIONS(2709), + [anon_sym_while] = ACTIONS(2709), + [anon_sym_do] = ACTIONS(2709), + [anon_sym_for] = ACTIONS(2709), + [anon_sym_return] = ACTIONS(2709), + [anon_sym_break] = ACTIONS(2709), + [anon_sym_continue] = ACTIONS(2709), + [anon_sym_goto] = ACTIONS(2709), + [anon_sym_not] = ACTIONS(2709), + [anon_sym_compl] = ACTIONS(2709), + [anon_sym_DASH_DASH] = ACTIONS(2711), + [anon_sym_PLUS_PLUS] = ACTIONS(2711), + [anon_sym_sizeof] = ACTIONS(2709), + [anon_sym_offsetof] = ACTIONS(2709), + [anon_sym__Generic] = ACTIONS(2709), + [anon_sym_asm] = ACTIONS(2709), + [anon_sym___asm__] = ACTIONS(2709), + [sym_number_literal] = ACTIONS(2711), + [anon_sym_L_SQUOTE] = ACTIONS(2711), + [anon_sym_u_SQUOTE] = ACTIONS(2711), + [anon_sym_U_SQUOTE] = ACTIONS(2711), + [anon_sym_u8_SQUOTE] = ACTIONS(2711), + [anon_sym_SQUOTE] = ACTIONS(2711), + [anon_sym_L_DQUOTE] = ACTIONS(2711), + [anon_sym_u_DQUOTE] = ACTIONS(2711), + [anon_sym_U_DQUOTE] = ACTIONS(2711), + [anon_sym_u8_DQUOTE] = ACTIONS(2711), + [anon_sym_DQUOTE] = ACTIONS(2711), + [sym_true] = ACTIONS(2709), + [sym_false] = ACTIONS(2709), + [anon_sym_NULL] = ACTIONS(2709), + [anon_sym_nullptr] = ACTIONS(2709), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2709), + [anon_sym_decltype] = ACTIONS(2709), + [anon_sym_virtual] = ACTIONS(2709), + [anon_sym_typename] = ACTIONS(2709), + [anon_sym_template] = ACTIONS(2709), + [anon_sym_try] = ACTIONS(2709), + [anon_sym_delete] = ACTIONS(2709), + [anon_sym_throw] = ACTIONS(2709), + [anon_sym_co_return] = ACTIONS(2709), + [anon_sym_co_yield] = ACTIONS(2709), + [anon_sym_catch] = ACTIONS(3974), + [anon_sym_R_DQUOTE] = ACTIONS(2711), + [anon_sym_LR_DQUOTE] = ACTIONS(2711), + [anon_sym_uR_DQUOTE] = ACTIONS(2711), + [anon_sym_UR_DQUOTE] = ACTIONS(2711), + [anon_sym_u8R_DQUOTE] = ACTIONS(2711), + [anon_sym_co_await] = ACTIONS(2709), + [anon_sym_new] = ACTIONS(2709), + [anon_sym_requires] = ACTIONS(2709), + [sym_this] = ACTIONS(2709), }, [1443] = { - [sym__expression] = STATE(3546), - [sym_comma_expression] = STATE(6387), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2954), - [anon_sym_RPAREN] = ACTIONS(3555), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym__expression] = STATE(4079), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_initializer_list] = STATE(6506), + [sym_initializer_pair] = STATE(6506), + [sym_subscript_designator] = STATE(5891), + [sym_field_designator] = STATE(5891), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_initializer_pair_repeat1] = STATE(5891), + [sym_identifier] = ACTIONS(3525), + [anon_sym_COMMA] = ACTIONS(3976), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(1899), + [anon_sym_RBRACE] = ACTIONS(3978), + [anon_sym_LBRACK] = ACTIONS(3957), + [sym_primitive_type] = ACTIONS(1951), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [anon_sym_DOT] = ACTIONS(203), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1444] = { - [sym__expression] = STATE(3722), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_initializer_list] = STATE(6288), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2954), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym__expression] = STATE(4065), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_initializer_list] = STATE(6236), + [sym_initializer_pair] = STATE(6236), + [sym_subscript_designator] = STATE(5891), + [sym_field_designator] = STATE(5891), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_initializer_pair_repeat1] = STATE(5891), + [sym_identifier] = ACTIONS(3525), + [anon_sym_COMMA] = ACTIONS(3980), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1489), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(1899), + [anon_sym_RBRACE] = ACTIONS(3982), + [anon_sym_LBRACK] = ACTIONS(3957), + [sym_primitive_type] = ACTIONS(1951), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [anon_sym_DOT] = ACTIONS(203), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1445] = { - [sym__expression] = STATE(3852), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_initializer_list] = STATE(6028), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2954), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym__expression] = STATE(4278), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_initializer_list] = STATE(6714), + [sym_initializer_pair] = STATE(6714), + [sym_subscript_designator] = STATE(5891), + [sym_field_designator] = STATE(5891), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_initializer_pair_repeat1] = STATE(5891), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1489), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(1899), + [anon_sym_RBRACE] = ACTIONS(3984), + [anon_sym_LBRACK] = ACTIONS(3957), + [sym_primitive_type] = ACTIONS(1951), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [anon_sym_DOT] = ACTIONS(203), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1446] = { - [sym__expression] = STATE(3547), - [sym_comma_expression] = STATE(6392), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2954), - [anon_sym_RPAREN] = ACTIONS(3557), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym__expression] = STATE(4278), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_initializer_list] = STATE(6714), + [sym_initializer_pair] = STATE(6714), + [sym_subscript_designator] = STATE(5891), + [sym_field_designator] = STATE(5891), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_initializer_pair_repeat1] = STATE(5891), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(1899), + [anon_sym_RBRACE] = ACTIONS(3986), + [anon_sym_LBRACK] = ACTIONS(3957), + [sym_primitive_type] = ACTIONS(1951), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [anon_sym_DOT] = ACTIONS(203), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1447] = { - [sym__expression] = STATE(3548), - [sym_comma_expression] = STATE(6393), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2954), - [anon_sym_RPAREN] = ACTIONS(3559), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym__expression] = STATE(4278), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_initializer_list] = STATE(6714), + [sym_initializer_pair] = STATE(6714), + [sym_subscript_designator] = STATE(5891), + [sym_field_designator] = STATE(5891), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_initializer_pair_repeat1] = STATE(5891), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(1899), + [anon_sym_RBRACE] = ACTIONS(3988), + [anon_sym_LBRACK] = ACTIONS(3957), + [sym_primitive_type] = ACTIONS(1951), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [anon_sym_DOT] = ACTIONS(203), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1448] = { - [sym__expression] = STATE(3533), - [sym_comma_expression] = STATE(6228), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2954), - [anon_sym_RPAREN] = ACTIONS(3561), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym__expression] = STATE(4278), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_initializer_list] = STATE(6714), + [sym_initializer_pair] = STATE(6714), + [sym_subscript_designator] = STATE(5891), + [sym_field_designator] = STATE(5891), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_initializer_pair_repeat1] = STATE(5891), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(1899), + [anon_sym_RBRACE] = ACTIONS(3990), + [anon_sym_LBRACK] = ACTIONS(3957), + [sym_primitive_type] = ACTIONS(1951), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [anon_sym_DOT] = ACTIONS(203), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1449] = { - [sym__expression] = STATE(3532), - [sym_comma_expression] = STATE(6230), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2954), - [anon_sym_RPAREN] = ACTIONS(3563), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym__expression] = STATE(4278), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_initializer_list] = STATE(6714), + [sym_initializer_pair] = STATE(6714), + [sym_subscript_designator] = STATE(5891), + [sym_field_designator] = STATE(5891), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_initializer_pair_repeat1] = STATE(5891), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(1899), + [anon_sym_RBRACE] = ACTIONS(3992), + [anon_sym_LBRACK] = ACTIONS(3957), + [sym_primitive_type] = ACTIONS(1951), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [anon_sym_DOT] = ACTIONS(203), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1450] = { - [sym__expression] = STATE(2601), - [sym_conditional_expression] = STATE(2574), - [sym_assignment_expression] = STATE(2574), - [sym_pointer_expression] = STATE(2578), - [sym_unary_expression] = STATE(2574), - [sym_binary_expression] = STATE(2574), - [sym_update_expression] = STATE(2574), - [sym_cast_expression] = STATE(2574), - [sym_sizeof_expression] = STATE(2574), - [sym_subscript_expression] = STATE(2578), - [sym_call_expression] = STATE(2578), - [sym_field_expression] = STATE(2578), - [sym_compound_literal_expression] = STATE(2574), - [sym_parenthesized_expression] = STATE(2578), - [sym_initializer_list] = STATE(2600), - [sym_char_literal] = STATE(2207), - [sym_concatenated_string] = STATE(2207), - [sym_string_literal] = STATE(1820), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5944), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(2574), - [sym_raw_string_literal] = STATE(1820), - [sym_co_await_expression] = STATE(2574), - [sym_new_expression] = STATE(2574), - [sym_delete_expression] = STATE(2574), - [sym_requires_clause] = STATE(2574), - [sym_requires_expression] = STATE(2574), - [sym_lambda_expression] = STATE(2574), - [sym_lambda_capture_specifier] = STATE(4479), - [sym_fold_expression] = STATE(2574), - [sym_parameter_pack_expansion] = STATE(2574), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2578), - [sym_qualified_type_identifier] = STATE(5944), - [sym_user_defined_literal] = STATE(2574), - [sym_identifier] = ACTIONS(1523), - [anon_sym_LPAREN2] = ACTIONS(1527), - [anon_sym_BANG] = ACTIONS(1531), - [anon_sym_TILDE] = ACTIONS(1531), - [anon_sym_DASH] = ACTIONS(1529), - [anon_sym_PLUS] = ACTIONS(1529), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACE] = ACTIONS(1537), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(1529), - [anon_sym_compl] = ACTIONS(1529), - [anon_sym_DASH_DASH] = ACTIONS(1543), - [anon_sym_PLUS_PLUS] = ACTIONS(1543), - [anon_sym_sizeof] = ACTIONS(1545), - [sym_number_literal] = ACTIONS(1547), - [anon_sym_L_SQUOTE] = ACTIONS(1549), - [anon_sym_u_SQUOTE] = ACTIONS(1549), - [anon_sym_U_SQUOTE] = ACTIONS(1549), - [anon_sym_u8_SQUOTE] = ACTIONS(1549), - [anon_sym_SQUOTE] = ACTIONS(1549), - [anon_sym_L_DQUOTE] = ACTIONS(1551), - [anon_sym_u_DQUOTE] = ACTIONS(1551), - [anon_sym_U_DQUOTE] = ACTIONS(1551), - [anon_sym_u8_DQUOTE] = ACTIONS(1551), - [anon_sym_DQUOTE] = ACTIONS(1551), - [sym_true] = ACTIONS(1553), - [sym_false] = ACTIONS(1553), - [sym_null] = ACTIONS(1553), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1557), - [anon_sym_R_DQUOTE] = ACTIONS(1559), - [anon_sym_LR_DQUOTE] = ACTIONS(1559), - [anon_sym_uR_DQUOTE] = ACTIONS(1559), - [anon_sym_UR_DQUOTE] = ACTIONS(1559), - [anon_sym_u8R_DQUOTE] = ACTIONS(1559), - [anon_sym_co_await] = ACTIONS(1561), - [anon_sym_new] = ACTIONS(1563), - [anon_sym_requires] = ACTIONS(1565), - [sym_this] = ACTIONS(1553), - [sym_nullptr] = ACTIONS(1553), + [sym__expression] = STATE(4278), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_initializer_list] = STATE(6714), + [sym_initializer_pair] = STATE(6714), + [sym_subscript_designator] = STATE(5891), + [sym_field_designator] = STATE(5891), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_initializer_pair_repeat1] = STATE(5891), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(1899), + [anon_sym_RBRACE] = ACTIONS(3994), + [anon_sym_LBRACK] = ACTIONS(3957), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [anon_sym_DOT] = ACTIONS(203), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1451] = { - [sym__expression] = STATE(3563), - [sym_comma_expression] = STATE(6516), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2954), - [anon_sym_RPAREN] = ACTIONS(3565), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym__expression] = STATE(4278), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_initializer_list] = STATE(6714), + [sym_initializer_pair] = STATE(6714), + [sym_subscript_designator] = STATE(5891), + [sym_field_designator] = STATE(5891), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_initializer_pair_repeat1] = STATE(5891), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(1899), + [anon_sym_RBRACE] = ACTIONS(3996), + [anon_sym_LBRACK] = ACTIONS(3957), + [sym_primitive_type] = ACTIONS(1951), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [anon_sym_DOT] = ACTIONS(203), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1452] = { - [sym__expression] = STATE(3854), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_initializer_list] = STATE(6024), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2954), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym__expression] = STATE(4278), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_initializer_list] = STATE(6714), + [sym_initializer_pair] = STATE(6714), + [sym_subscript_designator] = STATE(5891), + [sym_field_designator] = STATE(5891), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_initializer_pair_repeat1] = STATE(5891), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1489), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(1899), + [anon_sym_RBRACE] = ACTIONS(3998), + [anon_sym_LBRACK] = ACTIONS(3957), + [sym_primitive_type] = ACTIONS(1951), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [anon_sym_DOT] = ACTIONS(203), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1453] = { - [sym__expression] = STATE(2922), - [sym_conditional_expression] = STATE(3035), - [sym_assignment_expression] = STATE(3035), - [sym_pointer_expression] = STATE(2713), - [sym_unary_expression] = STATE(3035), - [sym_binary_expression] = STATE(3035), - [sym_update_expression] = STATE(3035), - [sym_cast_expression] = STATE(3035), - [sym_sizeof_expression] = STATE(3035), - [sym_subscript_expression] = STATE(2713), - [sym_call_expression] = STATE(2713), - [sym_field_expression] = STATE(2713), - [sym_compound_literal_expression] = STATE(3035), - [sym_parenthesized_expression] = STATE(2713), - [sym_char_literal] = STATE(3013), - [sym_concatenated_string] = STATE(3013), - [sym_string_literal] = STATE(1900), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5990), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3035), - [sym_raw_string_literal] = STATE(1900), - [sym_co_await_expression] = STATE(3035), - [sym_new_expression] = STATE(3035), - [sym_delete_expression] = STATE(3035), - [sym_requires_clause] = STATE(3035), - [sym_requires_expression] = STATE(3035), - [sym_lambda_expression] = STATE(3035), - [sym_lambda_capture_specifier] = STATE(4465), - [sym_fold_expression] = STATE(3035), - [sym_parameter_pack_expansion] = STATE(3035), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4584), - [sym_qualified_identifier] = STATE(2713), - [sym_qualified_type_identifier] = STATE(5990), - [sym_user_defined_literal] = STATE(3035), - [sym_identifier] = ACTIONS(1643), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3567), - [anon_sym_LPAREN2] = ACTIONS(1439), - [anon_sym_BANG] = ACTIONS(1441), - [anon_sym_TILDE] = ACTIONS(1441), - [anon_sym_DASH] = ACTIONS(1443), - [anon_sym_PLUS] = ACTIONS(1443), - [anon_sym_STAR] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(1445), - [anon_sym_COLON_COLON] = ACTIONS(1447), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1581), - [anon_sym_not] = ACTIONS(1443), - [anon_sym_compl] = ACTIONS(1443), - [anon_sym_DASH_DASH] = ACTIONS(1459), - [anon_sym_PLUS_PLUS] = ACTIONS(1459), - [anon_sym_sizeof] = ACTIONS(1461), - [sym_number_literal] = ACTIONS(1463), - [anon_sym_L_SQUOTE] = ACTIONS(1465), - [anon_sym_u_SQUOTE] = ACTIONS(1465), - [anon_sym_U_SQUOTE] = ACTIONS(1465), - [anon_sym_u8_SQUOTE] = ACTIONS(1465), - [anon_sym_SQUOTE] = ACTIONS(1465), - [anon_sym_L_DQUOTE] = ACTIONS(1467), - [anon_sym_u_DQUOTE] = ACTIONS(1467), - [anon_sym_U_DQUOTE] = ACTIONS(1467), - [anon_sym_u8_DQUOTE] = ACTIONS(1467), - [anon_sym_DQUOTE] = ACTIONS(1467), - [sym_true] = ACTIONS(1469), - [sym_false] = ACTIONS(1469), - [sym_null] = ACTIONS(1469), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1473), - [anon_sym_R_DQUOTE] = ACTIONS(1475), - [anon_sym_LR_DQUOTE] = ACTIONS(1475), - [anon_sym_uR_DQUOTE] = ACTIONS(1475), - [anon_sym_UR_DQUOTE] = ACTIONS(1475), - [anon_sym_u8R_DQUOTE] = ACTIONS(1475), - [anon_sym_co_await] = ACTIONS(1477), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_requires] = ACTIONS(1481), - [sym_this] = ACTIONS(1469), - [sym_nullptr] = ACTIONS(1469), - }, - [1454] = { - [sym__expression] = STATE(2633), - [sym_conditional_expression] = STATE(2786), - [sym_assignment_expression] = STATE(2786), - [sym_pointer_expression] = STATE(2784), - [sym_unary_expression] = STATE(2786), - [sym_binary_expression] = STATE(2786), - [sym_update_expression] = STATE(2786), - [sym_cast_expression] = STATE(2786), - [sym_sizeof_expression] = STATE(2786), - [sym_subscript_expression] = STATE(2784), - [sym_call_expression] = STATE(2784), - [sym_field_expression] = STATE(2784), - [sym_compound_literal_expression] = STATE(2786), - [sym_parenthesized_expression] = STATE(2784), - [sym_char_literal] = STATE(2651), - [sym_concatenated_string] = STATE(2651), - [sym_string_literal] = STATE(1840), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5891), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(2786), - [sym_raw_string_literal] = STATE(1840), - [sym_co_await_expression] = STATE(2786), - [sym_new_expression] = STATE(2786), - [sym_delete_expression] = STATE(2786), - [sym_requires_clause] = STATE(2786), - [sym_requires_expression] = STATE(2786), - [sym_lambda_expression] = STATE(2786), - [sym_lambda_capture_specifier] = STATE(4484), - [sym_fold_expression] = STATE(2786), - [sym_parameter_pack_expansion] = STATE(2786), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4584), - [sym_qualified_identifier] = STATE(2784), - [sym_qualified_type_identifier] = STATE(5891), - [sym_user_defined_literal] = STATE(2786), - [sym_identifier] = ACTIONS(1567), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3570), - [anon_sym_LPAREN2] = ACTIONS(3572), - [anon_sym_BANG] = ACTIONS(1573), - [anon_sym_TILDE] = ACTIONS(1573), - [anon_sym_DASH] = ACTIONS(1571), - [anon_sym_PLUS] = ACTIONS(1571), - [anon_sym_STAR] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(1445), - [anon_sym_COLON_COLON] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1581), - [anon_sym_not] = ACTIONS(1571), - [anon_sym_compl] = ACTIONS(1571), - [anon_sym_DASH_DASH] = ACTIONS(1583), - [anon_sym_PLUS_PLUS] = ACTIONS(1583), - [anon_sym_sizeof] = ACTIONS(1585), - [sym_number_literal] = ACTIONS(1587), - [anon_sym_L_SQUOTE] = ACTIONS(1589), - [anon_sym_u_SQUOTE] = ACTIONS(1589), - [anon_sym_U_SQUOTE] = ACTIONS(1589), - [anon_sym_u8_SQUOTE] = ACTIONS(1589), - [anon_sym_SQUOTE] = ACTIONS(1589), - [anon_sym_L_DQUOTE] = ACTIONS(1591), - [anon_sym_u_DQUOTE] = ACTIONS(1591), - [anon_sym_U_DQUOTE] = ACTIONS(1591), - [anon_sym_u8_DQUOTE] = ACTIONS(1591), - [anon_sym_DQUOTE] = ACTIONS(1591), - [sym_true] = ACTIONS(1593), - [sym_false] = ACTIONS(1593), - [sym_null] = ACTIONS(1593), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1595), - [anon_sym_R_DQUOTE] = ACTIONS(1597), - [anon_sym_LR_DQUOTE] = ACTIONS(1597), - [anon_sym_uR_DQUOTE] = ACTIONS(1597), - [anon_sym_UR_DQUOTE] = ACTIONS(1597), - [anon_sym_u8R_DQUOTE] = ACTIONS(1597), - [anon_sym_co_await] = ACTIONS(1599), - [anon_sym_new] = ACTIONS(1601), - [anon_sym_requires] = ACTIONS(1603), - [sym_this] = ACTIONS(1593), - [sym_nullptr] = ACTIONS(1593), - }, - [1455] = { - [sym__expression] = STATE(3750), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2954), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym__expression] = STATE(4278), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_initializer_list] = STATE(6714), + [sym_initializer_pair] = STATE(6714), + [sym_subscript_designator] = STATE(5891), + [sym_field_designator] = STATE(5891), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_initializer_pair_repeat1] = STATE(5891), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(3574), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(1899), + [anon_sym_RBRACE] = ACTIONS(4000), + [anon_sym_LBRACK] = ACTIONS(3957), + [sym_primitive_type] = ACTIONS(1951), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [anon_sym_DOT] = ACTIONS(203), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, - [1456] = { - [sym__expression] = STATE(3686), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2954), - [anon_sym_LPAREN2] = ACTIONS(984), + [1454] = { + [sym__expression] = STATE(4278), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_initializer_list] = STATE(6714), + [sym_initializer_pair] = STATE(6714), + [sym_subscript_designator] = STATE(5891), + [sym_field_designator] = STATE(5891), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_initializer_pair_repeat1] = STATE(5891), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(3576), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(1899), + [anon_sym_RBRACE] = ACTIONS(4002), + [anon_sym_LBRACK] = ACTIONS(3957), + [sym_primitive_type] = ACTIONS(1951), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), - }, - [1457] = { - [sym__expression] = STATE(2884), - [sym_conditional_expression] = STATE(2574), - [sym_assignment_expression] = STATE(2574), - [sym_pointer_expression] = STATE(2578), - [sym_unary_expression] = STATE(2574), - [sym_binary_expression] = STATE(2574), - [sym_update_expression] = STATE(2574), - [sym_cast_expression] = STATE(2574), - [sym_sizeof_expression] = STATE(2574), - [sym_subscript_expression] = STATE(2578), - [sym_call_expression] = STATE(2578), - [sym_field_expression] = STATE(2578), - [sym_compound_literal_expression] = STATE(2574), - [sym_parenthesized_expression] = STATE(2578), - [sym_char_literal] = STATE(2207), - [sym_concatenated_string] = STATE(2207), - [sym_string_literal] = STATE(1820), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5944), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(2574), - [sym_raw_string_literal] = STATE(1820), - [sym_co_await_expression] = STATE(2574), - [sym_new_expression] = STATE(2574), - [sym_delete_expression] = STATE(2574), - [sym_requires_clause] = STATE(2574), - [sym_requires_expression] = STATE(2574), - [sym_lambda_expression] = STATE(2574), - [sym_lambda_capture_specifier] = STATE(4479), - [sym_fold_expression] = STATE(2574), - [sym_parameter_pack_expansion] = STATE(2574), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2578), - [sym_qualified_type_identifier] = STATE(5944), - [sym_user_defined_literal] = STATE(2574), - [sym_identifier] = ACTIONS(1523), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3578), - [anon_sym_LPAREN2] = ACTIONS(3580), - [anon_sym_BANG] = ACTIONS(1651), - [anon_sym_TILDE] = ACTIONS(1651), - [anon_sym_DASH] = ACTIONS(1649), - [anon_sym_PLUS] = ACTIONS(1649), - [anon_sym_STAR] = ACTIONS(3081), - [anon_sym_AMP] = ACTIONS(3081), - [anon_sym_COLON_COLON] = ACTIONS(1655), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(1649), - [anon_sym_compl] = ACTIONS(1649), - [anon_sym_DASH_DASH] = ACTIONS(1657), - [anon_sym_PLUS_PLUS] = ACTIONS(1657), - [anon_sym_sizeof] = ACTIONS(1659), - [sym_number_literal] = ACTIONS(1547), - [anon_sym_L_SQUOTE] = ACTIONS(1549), - [anon_sym_u_SQUOTE] = ACTIONS(1549), - [anon_sym_U_SQUOTE] = ACTIONS(1549), - [anon_sym_u8_SQUOTE] = ACTIONS(1549), - [anon_sym_SQUOTE] = ACTIONS(1549), - [anon_sym_L_DQUOTE] = ACTIONS(1551), - [anon_sym_u_DQUOTE] = ACTIONS(1551), - [anon_sym_U_DQUOTE] = ACTIONS(1551), - [anon_sym_u8_DQUOTE] = ACTIONS(1551), - [anon_sym_DQUOTE] = ACTIONS(1551), - [sym_true] = ACTIONS(1553), - [sym_false] = ACTIONS(1553), - [sym_null] = ACTIONS(1553), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1661), - [anon_sym_R_DQUOTE] = ACTIONS(1559), - [anon_sym_LR_DQUOTE] = ACTIONS(1559), - [anon_sym_uR_DQUOTE] = ACTIONS(1559), - [anon_sym_UR_DQUOTE] = ACTIONS(1559), - [anon_sym_u8R_DQUOTE] = ACTIONS(1559), - [anon_sym_co_await] = ACTIONS(1663), - [anon_sym_new] = ACTIONS(1563), - [anon_sym_requires] = ACTIONS(1565), - [sym_this] = ACTIONS(1553), - [sym_nullptr] = ACTIONS(1553), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [anon_sym_DOT] = ACTIONS(203), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, - [1458] = { - [sym__expression] = STATE(3759), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2954), - [anon_sym_LPAREN2] = ACTIONS(984), + [1455] = { + [sym__expression] = STATE(4278), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_initializer_list] = STATE(6714), + [sym_initializer_pair] = STATE(6714), + [sym_subscript_designator] = STATE(5891), + [sym_field_designator] = STATE(5891), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_initializer_pair_repeat1] = STATE(5891), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(3582), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(1899), + [anon_sym_RBRACE] = ACTIONS(3963), + [anon_sym_LBRACK] = ACTIONS(3957), + [sym_primitive_type] = ACTIONS(1951), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [anon_sym_DOT] = ACTIONS(203), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, - [1459] = { - [sym__expression] = STATE(3757), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2954), - [anon_sym_LPAREN2] = ACTIONS(984), + [1456] = { + [sym__expression] = STATE(4278), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_initializer_list] = STATE(6714), + [sym_initializer_pair] = STATE(6714), + [sym_subscript_designator] = STATE(5891), + [sym_field_designator] = STATE(5891), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_initializer_pair_repeat1] = STATE(5891), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(3584), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(1899), + [anon_sym_RBRACE] = ACTIONS(4004), + [anon_sym_LBRACK] = ACTIONS(3957), + [sym_primitive_type] = ACTIONS(1951), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), - }, - [1460] = { - [sym__expression] = STATE(3789), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(3036), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(3036), - [sym_call_expression] = STATE(3036), - [sym_field_expression] = STATE(3036), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(3036), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(3036), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(3073), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3586), - [anon_sym_LPAREN2] = ACTIONS(3588), - [anon_sym_BANG] = ACTIONS(3079), - [anon_sym_TILDE] = ACTIONS(3079), - [anon_sym_DASH] = ACTIONS(3077), - [anon_sym_PLUS] = ACTIONS(3077), - [anon_sym_STAR] = ACTIONS(3081), - [anon_sym_AMP] = ACTIONS(3081), - [anon_sym_COLON_COLON] = ACTIONS(3083), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(3077), - [anon_sym_compl] = ACTIONS(3077), - [anon_sym_DASH_DASH] = ACTIONS(3085), - [anon_sym_PLUS_PLUS] = ACTIONS(3085), - [anon_sym_sizeof] = ACTIONS(3087), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(3089), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(3091), - [anon_sym_new] = ACTIONS(3065), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [anon_sym_DOT] = ACTIONS(203), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, - [1461] = { - [sym__expression] = STATE(3476), - [sym_comma_expression] = STATE(5811), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2954), - [anon_sym_LPAREN2] = ACTIONS(984), + [1457] = { + [sym__expression] = STATE(4278), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_initializer_list] = STATE(6714), + [sym_initializer_pair] = STATE(6714), + [sym_subscript_designator] = STATE(5891), + [sym_field_designator] = STATE(5891), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [aux_sym_initializer_pair_repeat1] = STATE(5891), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(1899), + [anon_sym_LBRACK] = ACTIONS(3957), + [sym_primitive_type] = ACTIONS(1951), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [anon_sym_DOT] = ACTIONS(203), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), + }, + [1458] = { + [sym_identifier] = ACTIONS(2536), + [anon_sym_LPAREN2] = ACTIONS(2534), + [anon_sym_BANG] = ACTIONS(2534), + [anon_sym_TILDE] = ACTIONS(2534), + [anon_sym_DASH] = ACTIONS(2536), + [anon_sym_PLUS] = ACTIONS(2536), + [anon_sym_STAR] = ACTIONS(2534), + [anon_sym_AMP] = ACTIONS(2534), + [anon_sym_SEMI] = ACTIONS(2534), + [anon_sym_typedef] = ACTIONS(2536), + [anon_sym_extern] = ACTIONS(2536), + [anon_sym___attribute__] = ACTIONS(2536), + [anon_sym_COLON_COLON] = ACTIONS(2534), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2534), + [anon_sym___declspec] = ACTIONS(2536), + [anon_sym_LBRACE] = ACTIONS(2534), + [anon_sym_LBRACK] = ACTIONS(2536), + [anon_sym_static] = ACTIONS(2536), + [anon_sym_register] = ACTIONS(2536), + [anon_sym_inline] = ACTIONS(2536), + [anon_sym_thread_local] = 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_noreturn] = ACTIONS(2536), + [anon_sym_mutable] = ACTIONS(2536), + [anon_sym_constinit] = ACTIONS(2536), + [anon_sym_consteval] = ACTIONS(2536), + [anon_sym_signed] = ACTIONS(2536), + [anon_sym_unsigned] = ACTIONS(2536), + [anon_sym_long] = ACTIONS(2536), + [anon_sym_short] = ACTIONS(2536), + [sym_primitive_type] = ACTIONS(2536), + [anon_sym_enum] = ACTIONS(2536), + [anon_sym_class] = 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_return] = ACTIONS(2536), + [anon_sym_break] = ACTIONS(2536), + [anon_sym_continue] = ACTIONS(2536), + [anon_sym_goto] = ACTIONS(2536), + [anon_sym_not] = ACTIONS(2536), + [anon_sym_compl] = ACTIONS(2536), + [anon_sym_DASH_DASH] = ACTIONS(2534), + [anon_sym_PLUS_PLUS] = ACTIONS(2534), + [anon_sym_sizeof] = ACTIONS(2536), + [anon_sym_offsetof] = ACTIONS(2536), + [anon_sym__Generic] = ACTIONS(2536), + [anon_sym_asm] = ACTIONS(2536), + [anon_sym___asm__] = ACTIONS(2536), + [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_L_DQUOTE] = ACTIONS(2534), + [anon_sym_u_DQUOTE] = ACTIONS(2534), + [anon_sym_U_DQUOTE] = ACTIONS(2534), + [anon_sym_u8_DQUOTE] = ACTIONS(2534), + [anon_sym_DQUOTE] = ACTIONS(2534), + [sym_true] = ACTIONS(2536), + [sym_false] = ACTIONS(2536), + [anon_sym_NULL] = ACTIONS(2536), + [anon_sym_nullptr] = ACTIONS(2536), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2536), + [anon_sym_decltype] = ACTIONS(2536), + [anon_sym_virtual] = ACTIONS(2536), + [anon_sym_typename] = ACTIONS(2536), + [anon_sym_template] = ACTIONS(2536), + [anon_sym_try] = ACTIONS(2536), + [anon_sym_delete] = ACTIONS(2536), + [anon_sym_throw] = ACTIONS(2536), + [anon_sym_co_return] = ACTIONS(2536), + [anon_sym_co_yield] = ACTIONS(2536), + [anon_sym_catch] = ACTIONS(2536), + [anon_sym_R_DQUOTE] = ACTIONS(2534), + [anon_sym_LR_DQUOTE] = ACTIONS(2534), + [anon_sym_uR_DQUOTE] = ACTIONS(2534), + [anon_sym_UR_DQUOTE] = ACTIONS(2534), + [anon_sym_u8R_DQUOTE] = ACTIONS(2534), + [anon_sym_co_await] = ACTIONS(2536), + [anon_sym_new] = ACTIONS(2536), + [anon_sym_requires] = ACTIONS(2536), + [sym_this] = ACTIONS(2536), + }, + [1459] = { + [sym_identifier] = ACTIONS(2542), + [anon_sym_LPAREN2] = ACTIONS(2540), + [anon_sym_BANG] = ACTIONS(2540), + [anon_sym_TILDE] = ACTIONS(2540), + [anon_sym_DASH] = ACTIONS(2542), + [anon_sym_PLUS] = ACTIONS(2542), + [anon_sym_STAR] = ACTIONS(2540), + [anon_sym_AMP] = ACTIONS(2540), + [anon_sym_SEMI] = ACTIONS(2540), + [anon_sym_typedef] = ACTIONS(2542), + [anon_sym_extern] = ACTIONS(2542), + [anon_sym___attribute__] = ACTIONS(2542), + [anon_sym_COLON_COLON] = ACTIONS(2540), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2540), + [anon_sym___declspec] = ACTIONS(2542), + [anon_sym_LBRACE] = ACTIONS(2540), + [anon_sym_LBRACK] = ACTIONS(2542), + [anon_sym_static] = ACTIONS(2542), + [anon_sym_register] = ACTIONS(2542), + [anon_sym_inline] = ACTIONS(2542), + [anon_sym_thread_local] = ACTIONS(2542), + [anon_sym_const] = ACTIONS(2542), + [anon_sym_constexpr] = ACTIONS(2542), + [anon_sym_volatile] = ACTIONS(2542), + [anon_sym_restrict] = ACTIONS(2542), + [anon_sym___restrict__] = ACTIONS(2542), + [anon_sym__Atomic] = ACTIONS(2542), + [anon_sym__Noreturn] = ACTIONS(2542), + [anon_sym_noreturn] = ACTIONS(2542), + [anon_sym_mutable] = ACTIONS(2542), + [anon_sym_constinit] = ACTIONS(2542), + [anon_sym_consteval] = ACTIONS(2542), + [anon_sym_signed] = ACTIONS(2542), + [anon_sym_unsigned] = ACTIONS(2542), + [anon_sym_long] = ACTIONS(2542), + [anon_sym_short] = ACTIONS(2542), + [sym_primitive_type] = ACTIONS(2542), + [anon_sym_enum] = ACTIONS(2542), + [anon_sym_class] = ACTIONS(2542), + [anon_sym_struct] = ACTIONS(2542), + [anon_sym_union] = ACTIONS(2542), + [anon_sym_if] = ACTIONS(2542), + [anon_sym_else] = ACTIONS(2542), + [anon_sym_switch] = ACTIONS(2542), + [anon_sym_while] = ACTIONS(2542), + [anon_sym_do] = ACTIONS(2542), + [anon_sym_for] = ACTIONS(2542), + [anon_sym_return] = ACTIONS(2542), + [anon_sym_break] = ACTIONS(2542), + [anon_sym_continue] = ACTIONS(2542), + [anon_sym_goto] = ACTIONS(2542), + [anon_sym_not] = ACTIONS(2542), + [anon_sym_compl] = ACTIONS(2542), + [anon_sym_DASH_DASH] = ACTIONS(2540), + [anon_sym_PLUS_PLUS] = ACTIONS(2540), + [anon_sym_sizeof] = ACTIONS(2542), + [anon_sym_offsetof] = ACTIONS(2542), + [anon_sym__Generic] = ACTIONS(2542), + [anon_sym_asm] = ACTIONS(2542), + [anon_sym___asm__] = ACTIONS(2542), + [sym_number_literal] = ACTIONS(2540), + [anon_sym_L_SQUOTE] = ACTIONS(2540), + [anon_sym_u_SQUOTE] = ACTIONS(2540), + [anon_sym_U_SQUOTE] = ACTIONS(2540), + [anon_sym_u8_SQUOTE] = ACTIONS(2540), + [anon_sym_SQUOTE] = ACTIONS(2540), + [anon_sym_L_DQUOTE] = ACTIONS(2540), + [anon_sym_u_DQUOTE] = ACTIONS(2540), + [anon_sym_U_DQUOTE] = ACTIONS(2540), + [anon_sym_u8_DQUOTE] = ACTIONS(2540), + [anon_sym_DQUOTE] = ACTIONS(2540), + [sym_true] = ACTIONS(2542), + [sym_false] = ACTIONS(2542), + [anon_sym_NULL] = ACTIONS(2542), + [anon_sym_nullptr] = ACTIONS(2542), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2542), + [anon_sym_decltype] = ACTIONS(2542), + [anon_sym_virtual] = ACTIONS(2542), + [anon_sym_typename] = ACTIONS(2542), + [anon_sym_template] = ACTIONS(2542), + [anon_sym_try] = ACTIONS(2542), + [anon_sym_delete] = ACTIONS(2542), + [anon_sym_throw] = ACTIONS(2542), + [anon_sym_co_return] = ACTIONS(2542), + [anon_sym_co_yield] = ACTIONS(2542), + [anon_sym_catch] = ACTIONS(2542), + [anon_sym_R_DQUOTE] = ACTIONS(2540), + [anon_sym_LR_DQUOTE] = ACTIONS(2540), + [anon_sym_uR_DQUOTE] = ACTIONS(2540), + [anon_sym_UR_DQUOTE] = ACTIONS(2540), + [anon_sym_u8R_DQUOTE] = ACTIONS(2540), + [anon_sym_co_await] = ACTIONS(2542), + [anon_sym_new] = ACTIONS(2542), + [anon_sym_requires] = ACTIONS(2542), + [sym_this] = ACTIONS(2542), + }, + [1460] = { + [sym_identifier] = ACTIONS(2900), + [anon_sym_LPAREN2] = ACTIONS(2902), + [anon_sym_BANG] = ACTIONS(2902), + [anon_sym_TILDE] = ACTIONS(2902), + [anon_sym_DASH] = ACTIONS(2900), + [anon_sym_PLUS] = ACTIONS(2900), + [anon_sym_STAR] = ACTIONS(2902), + [anon_sym_AMP] = ACTIONS(2902), + [anon_sym_SEMI] = ACTIONS(2902), + [anon_sym_typedef] = ACTIONS(2900), + [anon_sym_extern] = ACTIONS(2900), + [anon_sym___attribute__] = ACTIONS(2900), + [anon_sym_COLON_COLON] = ACTIONS(2902), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2902), + [anon_sym___declspec] = ACTIONS(2900), + [anon_sym_LBRACE] = ACTIONS(2902), + [anon_sym_LBRACK] = ACTIONS(2900), + [anon_sym_static] = ACTIONS(2900), + [anon_sym_register] = ACTIONS(2900), + [anon_sym_inline] = ACTIONS(2900), + [anon_sym_thread_local] = ACTIONS(2900), + [anon_sym_const] = ACTIONS(2900), + [anon_sym_constexpr] = ACTIONS(2900), + [anon_sym_volatile] = ACTIONS(2900), + [anon_sym_restrict] = ACTIONS(2900), + [anon_sym___restrict__] = ACTIONS(2900), + [anon_sym__Atomic] = ACTIONS(2900), + [anon_sym__Noreturn] = ACTIONS(2900), + [anon_sym_noreturn] = ACTIONS(2900), + [anon_sym_mutable] = ACTIONS(2900), + [anon_sym_constinit] = ACTIONS(2900), + [anon_sym_consteval] = ACTIONS(2900), + [anon_sym_signed] = ACTIONS(2900), + [anon_sym_unsigned] = ACTIONS(2900), + [anon_sym_long] = ACTIONS(2900), + [anon_sym_short] = ACTIONS(2900), + [sym_primitive_type] = ACTIONS(2900), + [anon_sym_enum] = ACTIONS(2900), + [anon_sym_class] = ACTIONS(2900), + [anon_sym_struct] = ACTIONS(2900), + [anon_sym_union] = ACTIONS(2900), + [anon_sym_if] = ACTIONS(2900), + [anon_sym_else] = ACTIONS(2900), + [anon_sym_switch] = ACTIONS(2900), + [anon_sym_while] = ACTIONS(2900), + [anon_sym_do] = ACTIONS(2900), + [anon_sym_for] = ACTIONS(2900), + [anon_sym_return] = ACTIONS(2900), + [anon_sym_break] = ACTIONS(2900), + [anon_sym_continue] = ACTIONS(2900), + [anon_sym_goto] = ACTIONS(2900), + [anon_sym_not] = ACTIONS(2900), + [anon_sym_compl] = ACTIONS(2900), + [anon_sym_DASH_DASH] = ACTIONS(2902), + [anon_sym_PLUS_PLUS] = ACTIONS(2902), + [anon_sym_sizeof] = ACTIONS(2900), + [anon_sym_offsetof] = ACTIONS(2900), + [anon_sym__Generic] = ACTIONS(2900), + [anon_sym_asm] = ACTIONS(2900), + [anon_sym___asm__] = ACTIONS(2900), + [sym_number_literal] = ACTIONS(2902), + [anon_sym_L_SQUOTE] = ACTIONS(2902), + [anon_sym_u_SQUOTE] = ACTIONS(2902), + [anon_sym_U_SQUOTE] = ACTIONS(2902), + [anon_sym_u8_SQUOTE] = ACTIONS(2902), + [anon_sym_SQUOTE] = ACTIONS(2902), + [anon_sym_L_DQUOTE] = ACTIONS(2902), + [anon_sym_u_DQUOTE] = ACTIONS(2902), + [anon_sym_U_DQUOTE] = ACTIONS(2902), + [anon_sym_u8_DQUOTE] = ACTIONS(2902), + [anon_sym_DQUOTE] = ACTIONS(2902), + [sym_true] = ACTIONS(2900), + [sym_false] = ACTIONS(2900), + [anon_sym_NULL] = ACTIONS(2900), + [anon_sym_nullptr] = ACTIONS(2900), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2900), + [anon_sym_decltype] = ACTIONS(2900), + [anon_sym_virtual] = ACTIONS(2900), + [anon_sym_typename] = ACTIONS(2900), + [anon_sym_template] = ACTIONS(2900), + [anon_sym_try] = ACTIONS(2900), + [anon_sym_delete] = ACTIONS(2900), + [anon_sym_throw] = ACTIONS(2900), + [anon_sym_co_return] = ACTIONS(2900), + [anon_sym_co_yield] = ACTIONS(2900), + [anon_sym_catch] = ACTIONS(2900), + [anon_sym_R_DQUOTE] = ACTIONS(2902), + [anon_sym_LR_DQUOTE] = ACTIONS(2902), + [anon_sym_uR_DQUOTE] = ACTIONS(2902), + [anon_sym_UR_DQUOTE] = ACTIONS(2902), + [anon_sym_u8R_DQUOTE] = ACTIONS(2902), + [anon_sym_co_await] = ACTIONS(2900), + [anon_sym_new] = ACTIONS(2900), + [anon_sym_requires] = ACTIONS(2900), + [sym_this] = ACTIONS(2900), + }, + [1461] = { + [sym_identifier] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3050), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, [1462] = { - [sym__expression] = STATE(2495), - [sym_conditional_expression] = STATE(2574), - [sym_assignment_expression] = STATE(2574), - [sym_pointer_expression] = STATE(2578), - [sym_unary_expression] = STATE(2574), - [sym_binary_expression] = STATE(2574), - [sym_update_expression] = STATE(2574), - [sym_cast_expression] = STATE(2574), - [sym_sizeof_expression] = STATE(2574), - [sym_subscript_expression] = STATE(2578), - [sym_call_expression] = STATE(2578), - [sym_field_expression] = STATE(2578), - [sym_compound_literal_expression] = STATE(2574), - [sym_parenthesized_expression] = STATE(2578), - [sym_char_literal] = STATE(2207), - [sym_concatenated_string] = STATE(2207), - [sym_string_literal] = STATE(1820), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5944), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(2574), - [sym_raw_string_literal] = STATE(1820), - [sym_co_await_expression] = STATE(2574), - [sym_new_expression] = STATE(2574), - [sym_delete_expression] = STATE(2574), - [sym_requires_clause] = STATE(2574), - [sym_requires_expression] = STATE(2574), - [sym_lambda_expression] = STATE(2574), - [sym_lambda_capture_specifier] = STATE(4479), - [sym_fold_expression] = STATE(2574), - [sym_parameter_pack_expansion] = STATE(2574), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2578), - [sym_qualified_type_identifier] = STATE(5944), - [sym_user_defined_literal] = STATE(2574), - [sym_identifier] = ACTIONS(1523), - [anon_sym_LPAREN2] = ACTIONS(1527), - [anon_sym_BANG] = ACTIONS(1531), - [anon_sym_TILDE] = ACTIONS(1531), - [anon_sym_DASH] = ACTIONS(1529), - [anon_sym_PLUS] = ACTIONS(1529), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1539), - [anon_sym_RBRACK] = ACTIONS(3590), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(1529), - [anon_sym_compl] = ACTIONS(1529), - [anon_sym_DASH_DASH] = ACTIONS(1543), - [anon_sym_PLUS_PLUS] = ACTIONS(1543), - [anon_sym_sizeof] = ACTIONS(1545), - [sym_number_literal] = ACTIONS(1547), - [anon_sym_L_SQUOTE] = ACTIONS(1549), - [anon_sym_u_SQUOTE] = ACTIONS(1549), - [anon_sym_U_SQUOTE] = ACTIONS(1549), - [anon_sym_u8_SQUOTE] = ACTIONS(1549), - [anon_sym_SQUOTE] = ACTIONS(1549), - [anon_sym_L_DQUOTE] = ACTIONS(1551), - [anon_sym_u_DQUOTE] = ACTIONS(1551), - [anon_sym_U_DQUOTE] = ACTIONS(1551), - [anon_sym_u8_DQUOTE] = ACTIONS(1551), - [anon_sym_DQUOTE] = ACTIONS(1551), - [sym_true] = ACTIONS(1553), - [sym_false] = ACTIONS(1553), - [sym_null] = ACTIONS(1553), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1557), - [anon_sym_R_DQUOTE] = ACTIONS(1559), - [anon_sym_LR_DQUOTE] = ACTIONS(1559), - [anon_sym_uR_DQUOTE] = ACTIONS(1559), - [anon_sym_UR_DQUOTE] = ACTIONS(1559), - [anon_sym_u8R_DQUOTE] = ACTIONS(1559), - [anon_sym_co_await] = ACTIONS(1561), - [anon_sym_new] = ACTIONS(1563), - [anon_sym_requires] = ACTIONS(1565), - [sym_this] = ACTIONS(1553), - [sym_nullptr] = ACTIONS(1553), + [sym_identifier] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3050), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, [1463] = { - [sym__expression] = STATE(3392), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2954), - [anon_sym_LPAREN2] = ACTIONS(984), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(3592), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(3594), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [sym_identifier] = ACTIONS(2908), + [anon_sym_LPAREN2] = ACTIONS(2910), + [anon_sym_BANG] = ACTIONS(2910), + [anon_sym_TILDE] = ACTIONS(2910), + [anon_sym_DASH] = ACTIONS(2908), + [anon_sym_PLUS] = ACTIONS(2908), + [anon_sym_STAR] = ACTIONS(2910), + [anon_sym_AMP] = ACTIONS(2910), + [anon_sym_SEMI] = ACTIONS(2910), + [anon_sym_typedef] = ACTIONS(2908), + [anon_sym_extern] = ACTIONS(2908), + [anon_sym___attribute__] = ACTIONS(2908), + [anon_sym_COLON_COLON] = ACTIONS(2910), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2910), + [anon_sym___declspec] = ACTIONS(2908), + [anon_sym_LBRACE] = ACTIONS(2910), + [anon_sym_LBRACK] = ACTIONS(2908), + [anon_sym_static] = ACTIONS(2908), + [anon_sym_register] = ACTIONS(2908), + [anon_sym_inline] = ACTIONS(2908), + [anon_sym_thread_local] = ACTIONS(2908), + [anon_sym_const] = ACTIONS(2908), + [anon_sym_constexpr] = ACTIONS(2908), + [anon_sym_volatile] = ACTIONS(2908), + [anon_sym_restrict] = ACTIONS(2908), + [anon_sym___restrict__] = ACTIONS(2908), + [anon_sym__Atomic] = ACTIONS(2908), + [anon_sym__Noreturn] = ACTIONS(2908), + [anon_sym_noreturn] = ACTIONS(2908), + [anon_sym_mutable] = ACTIONS(2908), + [anon_sym_constinit] = ACTIONS(2908), + [anon_sym_consteval] = ACTIONS(2908), + [anon_sym_signed] = ACTIONS(2908), + [anon_sym_unsigned] = ACTIONS(2908), + [anon_sym_long] = ACTIONS(2908), + [anon_sym_short] = ACTIONS(2908), + [sym_primitive_type] = ACTIONS(2908), + [anon_sym_enum] = ACTIONS(2908), + [anon_sym_class] = ACTIONS(2908), + [anon_sym_struct] = ACTIONS(2908), + [anon_sym_union] = ACTIONS(2908), + [anon_sym_if] = ACTIONS(2908), + [anon_sym_else] = ACTIONS(2908), + [anon_sym_switch] = ACTIONS(2908), + [anon_sym_while] = ACTIONS(2908), + [anon_sym_do] = ACTIONS(2908), + [anon_sym_for] = ACTIONS(2908), + [anon_sym_return] = ACTIONS(2908), + [anon_sym_break] = ACTIONS(2908), + [anon_sym_continue] = ACTIONS(2908), + [anon_sym_goto] = ACTIONS(2908), + [anon_sym_not] = ACTIONS(2908), + [anon_sym_compl] = ACTIONS(2908), + [anon_sym_DASH_DASH] = ACTIONS(2910), + [anon_sym_PLUS_PLUS] = ACTIONS(2910), + [anon_sym_sizeof] = ACTIONS(2908), + [anon_sym_offsetof] = ACTIONS(2908), + [anon_sym__Generic] = ACTIONS(2908), + [anon_sym_asm] = ACTIONS(2908), + [anon_sym___asm__] = ACTIONS(2908), + [sym_number_literal] = ACTIONS(2910), + [anon_sym_L_SQUOTE] = ACTIONS(2910), + [anon_sym_u_SQUOTE] = ACTIONS(2910), + [anon_sym_U_SQUOTE] = ACTIONS(2910), + [anon_sym_u8_SQUOTE] = ACTIONS(2910), + [anon_sym_SQUOTE] = ACTIONS(2910), + [anon_sym_L_DQUOTE] = ACTIONS(2910), + [anon_sym_u_DQUOTE] = ACTIONS(2910), + [anon_sym_U_DQUOTE] = ACTIONS(2910), + [anon_sym_u8_DQUOTE] = ACTIONS(2910), + [anon_sym_DQUOTE] = ACTIONS(2910), + [sym_true] = ACTIONS(2908), + [sym_false] = ACTIONS(2908), + [anon_sym_NULL] = ACTIONS(2908), + [anon_sym_nullptr] = ACTIONS(2908), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2908), + [anon_sym_decltype] = ACTIONS(2908), + [anon_sym_virtual] = ACTIONS(2908), + [anon_sym_typename] = ACTIONS(2908), + [anon_sym_template] = ACTIONS(2908), + [anon_sym_try] = ACTIONS(2908), + [anon_sym_delete] = ACTIONS(2908), + [anon_sym_throw] = ACTIONS(2908), + [anon_sym_co_return] = ACTIONS(2908), + [anon_sym_co_yield] = ACTIONS(2908), + [anon_sym_R_DQUOTE] = ACTIONS(2910), + [anon_sym_LR_DQUOTE] = ACTIONS(2910), + [anon_sym_uR_DQUOTE] = ACTIONS(2910), + [anon_sym_UR_DQUOTE] = ACTIONS(2910), + [anon_sym_u8R_DQUOTE] = ACTIONS(2910), + [anon_sym_co_await] = ACTIONS(2908), + [anon_sym_new] = ACTIONS(2908), + [anon_sym_requires] = ACTIONS(2908), + [sym_this] = ACTIONS(2908), }, [1464] = { - [sym__expression] = STATE(2495), - [sym_conditional_expression] = STATE(2574), - [sym_assignment_expression] = STATE(2574), - [sym_pointer_expression] = STATE(2578), - [sym_unary_expression] = STATE(2574), - [sym_binary_expression] = STATE(2574), - [sym_update_expression] = STATE(2574), - [sym_cast_expression] = STATE(2574), - [sym_sizeof_expression] = STATE(2574), - [sym_subscript_expression] = STATE(2578), - [sym_call_expression] = STATE(2578), - [sym_field_expression] = STATE(2578), - [sym_compound_literal_expression] = STATE(2574), - [sym_parenthesized_expression] = STATE(2578), - [sym_char_literal] = STATE(2207), - [sym_concatenated_string] = STATE(2207), - [sym_string_literal] = STATE(1820), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5944), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(2574), - [sym_raw_string_literal] = STATE(1820), - [sym_co_await_expression] = STATE(2574), - [sym_new_expression] = STATE(2574), - [sym_delete_expression] = STATE(2574), - [sym_requires_clause] = STATE(2574), - [sym_requires_expression] = STATE(2574), - [sym_lambda_expression] = STATE(2574), - [sym_lambda_capture_specifier] = STATE(4479), - [sym_fold_expression] = STATE(2574), - [sym_parameter_pack_expansion] = STATE(2574), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2578), - [sym_qualified_type_identifier] = STATE(5944), - [sym_user_defined_literal] = STATE(2574), - [sym_identifier] = ACTIONS(1523), - [anon_sym_LPAREN2] = ACTIONS(1527), - [anon_sym_BANG] = ACTIONS(1531), - [anon_sym_TILDE] = ACTIONS(1531), - [anon_sym_DASH] = ACTIONS(1529), - [anon_sym_PLUS] = ACTIONS(1529), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1539), - [anon_sym_RBRACK] = ACTIONS(3596), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(1529), - [anon_sym_compl] = ACTIONS(1529), - [anon_sym_DASH_DASH] = ACTIONS(1543), - [anon_sym_PLUS_PLUS] = ACTIONS(1543), - [anon_sym_sizeof] = ACTIONS(1545), - [sym_number_literal] = ACTIONS(1547), - [anon_sym_L_SQUOTE] = ACTIONS(1549), - [anon_sym_u_SQUOTE] = ACTIONS(1549), - [anon_sym_U_SQUOTE] = ACTIONS(1549), - [anon_sym_u8_SQUOTE] = ACTIONS(1549), - [anon_sym_SQUOTE] = ACTIONS(1549), - [anon_sym_L_DQUOTE] = ACTIONS(1551), - [anon_sym_u_DQUOTE] = ACTIONS(1551), - [anon_sym_U_DQUOTE] = ACTIONS(1551), - [anon_sym_u8_DQUOTE] = ACTIONS(1551), - [anon_sym_DQUOTE] = ACTIONS(1551), - [sym_true] = ACTIONS(1553), - [sym_false] = ACTIONS(1553), - [sym_null] = ACTIONS(1553), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1557), - [anon_sym_R_DQUOTE] = ACTIONS(1559), - [anon_sym_LR_DQUOTE] = ACTIONS(1559), - [anon_sym_uR_DQUOTE] = ACTIONS(1559), - [anon_sym_UR_DQUOTE] = ACTIONS(1559), - [anon_sym_u8R_DQUOTE] = ACTIONS(1559), - [anon_sym_co_await] = ACTIONS(1561), - [anon_sym_new] = ACTIONS(1563), - [anon_sym_requires] = ACTIONS(1565), - [sym_this] = ACTIONS(1553), - [sym_nullptr] = ACTIONS(1553), + [sym_identifier] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3050), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, [1465] = { - [sym__expression] = STATE(3736), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2954), - [anon_sym_LPAREN2] = ACTIONS(984), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3598), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [sym_identifier] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3050), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, [1466] = { - [sym__expression] = STATE(3733), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2954), - [anon_sym_LPAREN2] = ACTIONS(984), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3600), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [sym_identifier] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3050), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, [1467] = { - [sym__expression] = STATE(2585), - [sym_conditional_expression] = STATE(2574), - [sym_assignment_expression] = STATE(2574), - [sym_pointer_expression] = STATE(2578), - [sym_unary_expression] = STATE(2574), - [sym_binary_expression] = STATE(2574), - [sym_update_expression] = STATE(2574), - [sym_cast_expression] = STATE(2574), - [sym_sizeof_expression] = STATE(2574), - [sym_subscript_expression] = STATE(2578), - [sym_call_expression] = STATE(2578), - [sym_field_expression] = STATE(2578), - [sym_compound_literal_expression] = STATE(2574), - [sym_parenthesized_expression] = STATE(2578), - [sym_char_literal] = STATE(2207), - [sym_concatenated_string] = STATE(2207), - [sym_string_literal] = STATE(1820), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5944), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(2574), - [sym_raw_string_literal] = STATE(1820), - [sym_co_await_expression] = STATE(2574), - [sym_new_expression] = STATE(2574), - [sym_delete_expression] = STATE(2574), - [sym_requires_clause] = STATE(2574), - [sym_requires_expression] = STATE(2574), - [sym_lambda_expression] = STATE(2574), - [sym_lambda_capture_specifier] = STATE(4479), - [sym_fold_expression] = STATE(2574), - [sym_parameter_pack_expansion] = STATE(2574), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2578), - [sym_qualified_type_identifier] = STATE(5944), - [sym_user_defined_literal] = STATE(2574), - [sym_identifier] = ACTIONS(1523), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3578), - [anon_sym_LPAREN2] = ACTIONS(3602), - [anon_sym_BANG] = ACTIONS(1531), - [anon_sym_TILDE] = ACTIONS(1531), - [anon_sym_DASH] = ACTIONS(1529), - [anon_sym_PLUS] = ACTIONS(1529), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(1529), - [anon_sym_compl] = ACTIONS(1529), - [anon_sym_DASH_DASH] = ACTIONS(1543), - [anon_sym_PLUS_PLUS] = ACTIONS(1543), - [anon_sym_sizeof] = ACTIONS(1545), - [sym_number_literal] = ACTIONS(1547), - [anon_sym_L_SQUOTE] = ACTIONS(1549), - [anon_sym_u_SQUOTE] = ACTIONS(1549), - [anon_sym_U_SQUOTE] = ACTIONS(1549), - [anon_sym_u8_SQUOTE] = ACTIONS(1549), - [anon_sym_SQUOTE] = ACTIONS(1549), - [anon_sym_L_DQUOTE] = ACTIONS(1551), - [anon_sym_u_DQUOTE] = ACTIONS(1551), - [anon_sym_U_DQUOTE] = ACTIONS(1551), - [anon_sym_u8_DQUOTE] = ACTIONS(1551), - [anon_sym_DQUOTE] = ACTIONS(1551), - [sym_true] = ACTIONS(1553), - [sym_false] = ACTIONS(1553), - [sym_null] = ACTIONS(1553), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1557), - [anon_sym_R_DQUOTE] = ACTIONS(1559), - [anon_sym_LR_DQUOTE] = ACTIONS(1559), - [anon_sym_uR_DQUOTE] = ACTIONS(1559), - [anon_sym_UR_DQUOTE] = ACTIONS(1559), - [anon_sym_u8R_DQUOTE] = ACTIONS(1559), - [anon_sym_co_await] = ACTIONS(1561), - [anon_sym_new] = ACTIONS(1563), - [anon_sym_requires] = ACTIONS(1565), - [sym_this] = ACTIONS(1553), - [sym_nullptr] = ACTIONS(1553), + [sym_identifier] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3050), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, [1468] = { - [sym__expression] = STATE(2925), - [sym_conditional_expression] = STATE(3035), - [sym_assignment_expression] = STATE(3035), - [sym_pointer_expression] = STATE(2713), - [sym_unary_expression] = STATE(3035), - [sym_binary_expression] = STATE(3035), - [sym_update_expression] = STATE(3035), - [sym_cast_expression] = STATE(3035), - [sym_sizeof_expression] = STATE(3035), - [sym_subscript_expression] = STATE(2713), - [sym_call_expression] = STATE(2713), - [sym_field_expression] = STATE(2713), - [sym_compound_literal_expression] = STATE(3035), - [sym_parenthesized_expression] = STATE(2713), - [sym_char_literal] = STATE(3013), - [sym_concatenated_string] = STATE(3013), - [sym_string_literal] = STATE(1900), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5990), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3035), - [sym_raw_string_literal] = STATE(1900), - [sym_co_await_expression] = STATE(3035), - [sym_new_expression] = STATE(3035), - [sym_delete_expression] = STATE(3035), - [sym_requires_clause] = STATE(3035), - [sym_requires_expression] = STATE(3035), - [sym_lambda_expression] = STATE(3035), - [sym_lambda_capture_specifier] = STATE(4465), - [sym_fold_expression] = STATE(3035), - [sym_parameter_pack_expansion] = STATE(3035), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4584), - [sym_qualified_identifier] = STATE(2713), - [sym_qualified_type_identifier] = STATE(5990), - [sym_user_defined_literal] = STATE(3035), - [sym_identifier] = ACTIONS(1643), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3604), - [anon_sym_LPAREN2] = ACTIONS(1439), - [anon_sym_BANG] = ACTIONS(1441), - [anon_sym_TILDE] = ACTIONS(1441), - [anon_sym_DASH] = ACTIONS(1443), - [anon_sym_PLUS] = ACTIONS(1443), - [anon_sym_STAR] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(1445), - [anon_sym_COLON_COLON] = ACTIONS(1447), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1581), - [anon_sym_not] = ACTIONS(1443), - [anon_sym_compl] = ACTIONS(1443), - [anon_sym_DASH_DASH] = ACTIONS(1459), - [anon_sym_PLUS_PLUS] = ACTIONS(1459), - [anon_sym_sizeof] = ACTIONS(1461), - [sym_number_literal] = ACTIONS(1463), - [anon_sym_L_SQUOTE] = ACTIONS(1465), - [anon_sym_u_SQUOTE] = ACTIONS(1465), - [anon_sym_U_SQUOTE] = ACTIONS(1465), - [anon_sym_u8_SQUOTE] = ACTIONS(1465), - [anon_sym_SQUOTE] = ACTIONS(1465), - [anon_sym_L_DQUOTE] = ACTIONS(1467), - [anon_sym_u_DQUOTE] = ACTIONS(1467), - [anon_sym_U_DQUOTE] = ACTIONS(1467), - [anon_sym_u8_DQUOTE] = ACTIONS(1467), - [anon_sym_DQUOTE] = ACTIONS(1467), - [sym_true] = ACTIONS(1469), - [sym_false] = ACTIONS(1469), - [sym_null] = ACTIONS(1469), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1473), - [anon_sym_R_DQUOTE] = ACTIONS(1475), - [anon_sym_LR_DQUOTE] = ACTIONS(1475), - [anon_sym_uR_DQUOTE] = ACTIONS(1475), - [anon_sym_UR_DQUOTE] = ACTIONS(1475), - [anon_sym_u8R_DQUOTE] = ACTIONS(1475), - [anon_sym_co_await] = ACTIONS(1477), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_requires] = ACTIONS(1481), - [sym_this] = ACTIONS(1469), - [sym_nullptr] = ACTIONS(1469), + [sym_identifier] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3050), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, [1469] = { - [sym__expression] = STATE(2913), - [sym_conditional_expression] = STATE(3035), - [sym_assignment_expression] = STATE(3035), - [sym_pointer_expression] = STATE(2713), - [sym_unary_expression] = STATE(3035), - [sym_binary_expression] = STATE(3035), - [sym_update_expression] = STATE(3035), - [sym_cast_expression] = STATE(3035), - [sym_sizeof_expression] = STATE(3035), - [sym_subscript_expression] = STATE(2713), - [sym_call_expression] = STATE(2713), - [sym_field_expression] = STATE(2713), - [sym_compound_literal_expression] = STATE(3035), - [sym_parenthesized_expression] = STATE(2713), - [sym_char_literal] = STATE(3013), - [sym_concatenated_string] = STATE(3013), - [sym_string_literal] = STATE(1900), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5990), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3035), - [sym_raw_string_literal] = STATE(1900), - [sym_co_await_expression] = STATE(3035), - [sym_new_expression] = STATE(3035), - [sym_delete_expression] = STATE(3035), - [sym_requires_clause] = STATE(3035), - [sym_requires_expression] = STATE(3035), - [sym_lambda_expression] = STATE(3035), - [sym_lambda_capture_specifier] = STATE(4465), - [sym_fold_expression] = STATE(3035), - [sym_parameter_pack_expansion] = STATE(3035), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4584), - [sym_qualified_identifier] = STATE(2713), - [sym_qualified_type_identifier] = STATE(5990), - [sym_user_defined_literal] = STATE(3035), - [sym_identifier] = ACTIONS(1643), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3607), - [anon_sym_LPAREN2] = ACTIONS(1439), - [anon_sym_BANG] = ACTIONS(1441), - [anon_sym_TILDE] = ACTIONS(1441), - [anon_sym_DASH] = ACTIONS(1443), - [anon_sym_PLUS] = ACTIONS(1443), - [anon_sym_STAR] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(1445), - [anon_sym_COLON_COLON] = ACTIONS(1447), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1581), - [anon_sym_not] = ACTIONS(1443), - [anon_sym_compl] = ACTIONS(1443), - [anon_sym_DASH_DASH] = ACTIONS(1459), - [anon_sym_PLUS_PLUS] = ACTIONS(1459), - [anon_sym_sizeof] = ACTIONS(1461), - [sym_number_literal] = ACTIONS(1463), - [anon_sym_L_SQUOTE] = ACTIONS(1465), - [anon_sym_u_SQUOTE] = ACTIONS(1465), - [anon_sym_U_SQUOTE] = ACTIONS(1465), - [anon_sym_u8_SQUOTE] = ACTIONS(1465), - [anon_sym_SQUOTE] = ACTIONS(1465), - [anon_sym_L_DQUOTE] = ACTIONS(1467), - [anon_sym_u_DQUOTE] = ACTIONS(1467), - [anon_sym_U_DQUOTE] = ACTIONS(1467), - [anon_sym_u8_DQUOTE] = ACTIONS(1467), - [anon_sym_DQUOTE] = ACTIONS(1467), - [sym_true] = ACTIONS(1469), - [sym_false] = ACTIONS(1469), - [sym_null] = ACTIONS(1469), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1473), - [anon_sym_R_DQUOTE] = ACTIONS(1475), - [anon_sym_LR_DQUOTE] = ACTIONS(1475), - [anon_sym_uR_DQUOTE] = ACTIONS(1475), - [anon_sym_UR_DQUOTE] = ACTIONS(1475), - [anon_sym_u8R_DQUOTE] = ACTIONS(1475), - [anon_sym_co_await] = ACTIONS(1477), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_requires] = ACTIONS(1481), - [sym_this] = ACTIONS(1469), - [sym_nullptr] = ACTIONS(1469), + [sym_identifier] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3050), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, [1470] = { - [sym__expression] = STATE(2925), - [sym_conditional_expression] = STATE(3035), - [sym_assignment_expression] = STATE(3035), - [sym_pointer_expression] = STATE(2713), - [sym_unary_expression] = STATE(3035), - [sym_binary_expression] = STATE(3035), - [sym_update_expression] = STATE(3035), - [sym_cast_expression] = STATE(3035), - [sym_sizeof_expression] = STATE(3035), - [sym_subscript_expression] = STATE(2713), - [sym_call_expression] = STATE(2713), - [sym_field_expression] = STATE(2713), - [sym_compound_literal_expression] = STATE(3035), - [sym_parenthesized_expression] = STATE(2713), - [sym_char_literal] = STATE(3013), - [sym_concatenated_string] = STATE(3013), - [sym_string_literal] = STATE(1900), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5990), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3035), - [sym_raw_string_literal] = STATE(1900), - [sym_co_await_expression] = STATE(3035), - [sym_new_expression] = STATE(3035), - [sym_delete_expression] = STATE(3035), - [sym_requires_clause] = STATE(3035), - [sym_requires_expression] = STATE(3035), - [sym_lambda_expression] = STATE(3035), - [sym_lambda_capture_specifier] = STATE(4465), - [sym_fold_expression] = STATE(3035), - [sym_parameter_pack_expansion] = STATE(3035), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4584), - [sym_qualified_identifier] = STATE(2713), - [sym_qualified_type_identifier] = STATE(5990), - [sym_user_defined_literal] = STATE(3035), - [sym_identifier] = ACTIONS(1643), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3610), - [anon_sym_LPAREN2] = ACTIONS(1439), - [anon_sym_BANG] = ACTIONS(1441), - [anon_sym_TILDE] = ACTIONS(1441), - [anon_sym_DASH] = ACTIONS(1443), - [anon_sym_PLUS] = ACTIONS(1443), - [anon_sym_STAR] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(1445), - [anon_sym_COLON_COLON] = ACTIONS(1447), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1581), - [anon_sym_not] = ACTIONS(1443), - [anon_sym_compl] = ACTIONS(1443), - [anon_sym_DASH_DASH] = ACTIONS(1459), - [anon_sym_PLUS_PLUS] = ACTIONS(1459), - [anon_sym_sizeof] = ACTIONS(1461), - [sym_number_literal] = ACTIONS(1463), - [anon_sym_L_SQUOTE] = ACTIONS(1465), - [anon_sym_u_SQUOTE] = ACTIONS(1465), - [anon_sym_U_SQUOTE] = ACTIONS(1465), - [anon_sym_u8_SQUOTE] = ACTIONS(1465), - [anon_sym_SQUOTE] = ACTIONS(1465), - [anon_sym_L_DQUOTE] = ACTIONS(1467), - [anon_sym_u_DQUOTE] = ACTIONS(1467), - [anon_sym_U_DQUOTE] = ACTIONS(1467), - [anon_sym_u8_DQUOTE] = ACTIONS(1467), - [anon_sym_DQUOTE] = ACTIONS(1467), - [sym_true] = ACTIONS(1469), - [sym_false] = ACTIONS(1469), - [sym_null] = ACTIONS(1469), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1473), - [anon_sym_R_DQUOTE] = ACTIONS(1475), - [anon_sym_LR_DQUOTE] = ACTIONS(1475), - [anon_sym_uR_DQUOTE] = ACTIONS(1475), - [anon_sym_UR_DQUOTE] = ACTIONS(1475), - [anon_sym_u8R_DQUOTE] = ACTIONS(1475), - [anon_sym_co_await] = ACTIONS(1477), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_requires] = ACTIONS(1481), - [sym_this] = ACTIONS(1469), - [sym_nullptr] = ACTIONS(1469), + [sym_identifier] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3050), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, [1471] = { - [sym__expression] = STATE(2917), - [sym_conditional_expression] = STATE(3035), - [sym_assignment_expression] = STATE(3035), - [sym_pointer_expression] = STATE(2713), - [sym_unary_expression] = STATE(3035), - [sym_binary_expression] = STATE(3035), - [sym_update_expression] = STATE(3035), - [sym_cast_expression] = STATE(3035), - [sym_sizeof_expression] = STATE(3035), - [sym_subscript_expression] = STATE(2713), - [sym_call_expression] = STATE(2713), - [sym_field_expression] = STATE(2713), - [sym_compound_literal_expression] = STATE(3035), - [sym_parenthesized_expression] = STATE(2713), - [sym_char_literal] = STATE(3013), - [sym_concatenated_string] = STATE(3013), - [sym_string_literal] = STATE(1900), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5990), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3035), - [sym_raw_string_literal] = STATE(1900), - [sym_co_await_expression] = STATE(3035), - [sym_new_expression] = STATE(3035), - [sym_delete_expression] = STATE(3035), - [sym_requires_clause] = STATE(3035), - [sym_requires_expression] = STATE(3035), - [sym_lambda_expression] = STATE(3035), - [sym_lambda_capture_specifier] = STATE(4465), - [sym_fold_expression] = STATE(3035), - [sym_parameter_pack_expansion] = STATE(3035), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4584), - [sym_qualified_identifier] = STATE(2713), - [sym_qualified_type_identifier] = STATE(5990), - [sym_user_defined_literal] = STATE(3035), - [sym_identifier] = ACTIONS(1643), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3613), - [anon_sym_LPAREN2] = ACTIONS(1439), - [anon_sym_BANG] = ACTIONS(1441), - [anon_sym_TILDE] = ACTIONS(1441), - [anon_sym_DASH] = ACTIONS(1443), - [anon_sym_PLUS] = ACTIONS(1443), - [anon_sym_STAR] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(1445), - [anon_sym_COLON_COLON] = ACTIONS(1447), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1581), - [anon_sym_not] = ACTIONS(1443), - [anon_sym_compl] = ACTIONS(1443), - [anon_sym_DASH_DASH] = ACTIONS(1459), - [anon_sym_PLUS_PLUS] = ACTIONS(1459), - [anon_sym_sizeof] = ACTIONS(1461), - [sym_number_literal] = ACTIONS(1463), - [anon_sym_L_SQUOTE] = ACTIONS(1465), - [anon_sym_u_SQUOTE] = ACTIONS(1465), - [anon_sym_U_SQUOTE] = ACTIONS(1465), - [anon_sym_u8_SQUOTE] = ACTIONS(1465), - [anon_sym_SQUOTE] = ACTIONS(1465), - [anon_sym_L_DQUOTE] = ACTIONS(1467), - [anon_sym_u_DQUOTE] = ACTIONS(1467), - [anon_sym_U_DQUOTE] = ACTIONS(1467), - [anon_sym_u8_DQUOTE] = ACTIONS(1467), - [anon_sym_DQUOTE] = ACTIONS(1467), - [sym_true] = ACTIONS(1469), - [sym_false] = ACTIONS(1469), - [sym_null] = ACTIONS(1469), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1473), - [anon_sym_R_DQUOTE] = ACTIONS(1475), - [anon_sym_LR_DQUOTE] = ACTIONS(1475), - [anon_sym_uR_DQUOTE] = ACTIONS(1475), - [anon_sym_UR_DQUOTE] = ACTIONS(1475), - [anon_sym_u8R_DQUOTE] = ACTIONS(1475), - [anon_sym_co_await] = ACTIONS(1477), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_requires] = ACTIONS(1481), - [sym_this] = ACTIONS(1469), - [sym_nullptr] = ACTIONS(1469), + [sym_identifier] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3050), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, [1472] = { - [sym__expression] = STATE(2495), - [sym_conditional_expression] = STATE(2574), - [sym_assignment_expression] = STATE(2574), - [sym_pointer_expression] = STATE(2578), - [sym_unary_expression] = STATE(2574), - [sym_binary_expression] = STATE(2574), - [sym_update_expression] = STATE(2574), - [sym_cast_expression] = STATE(2574), - [sym_sizeof_expression] = STATE(2574), - [sym_subscript_expression] = STATE(2578), - [sym_call_expression] = STATE(2578), - [sym_field_expression] = STATE(2578), - [sym_compound_literal_expression] = STATE(2574), - [sym_parenthesized_expression] = STATE(2578), - [sym_char_literal] = STATE(2207), - [sym_concatenated_string] = STATE(2207), - [sym_string_literal] = STATE(1820), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5944), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(2574), - [sym_raw_string_literal] = STATE(1820), - [sym_co_await_expression] = STATE(2574), - [sym_new_expression] = STATE(2574), - [sym_delete_expression] = STATE(2574), - [sym_requires_clause] = STATE(2574), - [sym_requires_expression] = STATE(2574), - [sym_lambda_expression] = STATE(2574), - [sym_lambda_capture_specifier] = STATE(4479), - [sym_fold_expression] = STATE(2574), - [sym_parameter_pack_expansion] = STATE(2574), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2578), - [sym_qualified_type_identifier] = STATE(5944), - [sym_user_defined_literal] = STATE(2574), - [sym_identifier] = ACTIONS(1523), - [anon_sym_LPAREN2] = ACTIONS(1527), - [anon_sym_BANG] = ACTIONS(1531), - [anon_sym_TILDE] = ACTIONS(1531), - [anon_sym_DASH] = ACTIONS(1529), - [anon_sym_PLUS] = ACTIONS(1529), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1539), - [anon_sym_RBRACK] = ACTIONS(3616), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(1529), - [anon_sym_compl] = ACTIONS(1529), - [anon_sym_DASH_DASH] = ACTIONS(1543), - [anon_sym_PLUS_PLUS] = ACTIONS(1543), - [anon_sym_sizeof] = ACTIONS(1545), - [sym_number_literal] = ACTIONS(1547), - [anon_sym_L_SQUOTE] = ACTIONS(1549), - [anon_sym_u_SQUOTE] = ACTIONS(1549), - [anon_sym_U_SQUOTE] = ACTIONS(1549), - [anon_sym_u8_SQUOTE] = ACTIONS(1549), - [anon_sym_SQUOTE] = ACTIONS(1549), - [anon_sym_L_DQUOTE] = ACTIONS(1551), - [anon_sym_u_DQUOTE] = ACTIONS(1551), - [anon_sym_U_DQUOTE] = ACTIONS(1551), - [anon_sym_u8_DQUOTE] = ACTIONS(1551), - [anon_sym_DQUOTE] = ACTIONS(1551), - [sym_true] = ACTIONS(1553), - [sym_false] = ACTIONS(1553), - [sym_null] = ACTIONS(1553), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1557), - [anon_sym_R_DQUOTE] = ACTIONS(1559), - [anon_sym_LR_DQUOTE] = ACTIONS(1559), - [anon_sym_uR_DQUOTE] = ACTIONS(1559), - [anon_sym_UR_DQUOTE] = ACTIONS(1559), - [anon_sym_u8R_DQUOTE] = ACTIONS(1559), - [anon_sym_co_await] = ACTIONS(1561), - [anon_sym_new] = ACTIONS(1563), - [anon_sym_requires] = ACTIONS(1565), - [sym_this] = ACTIONS(1553), - [sym_nullptr] = ACTIONS(1553), + [sym_identifier] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3050), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, [1473] = { - [sym__expression] = STATE(2495), - [sym_conditional_expression] = STATE(2574), - [sym_assignment_expression] = STATE(2574), - [sym_pointer_expression] = STATE(2578), - [sym_unary_expression] = STATE(2574), - [sym_binary_expression] = STATE(2574), - [sym_update_expression] = STATE(2574), - [sym_cast_expression] = STATE(2574), - [sym_sizeof_expression] = STATE(2574), - [sym_subscript_expression] = STATE(2578), - [sym_call_expression] = STATE(2578), - [sym_field_expression] = STATE(2578), - [sym_compound_literal_expression] = STATE(2574), - [sym_parenthesized_expression] = STATE(2578), - [sym_char_literal] = STATE(2207), - [sym_concatenated_string] = STATE(2207), - [sym_string_literal] = STATE(1820), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5944), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(2574), - [sym_raw_string_literal] = STATE(1820), - [sym_co_await_expression] = STATE(2574), - [sym_new_expression] = STATE(2574), - [sym_delete_expression] = STATE(2574), - [sym_requires_clause] = STATE(2574), - [sym_requires_expression] = STATE(2574), - [sym_lambda_expression] = STATE(2574), - [sym_lambda_capture_specifier] = STATE(4479), - [sym_fold_expression] = STATE(2574), - [sym_parameter_pack_expansion] = STATE(2574), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2578), - [sym_qualified_type_identifier] = STATE(5944), - [sym_user_defined_literal] = STATE(2574), - [sym_identifier] = ACTIONS(1523), - [anon_sym_LPAREN2] = ACTIONS(1527), - [anon_sym_BANG] = ACTIONS(1531), - [anon_sym_TILDE] = ACTIONS(1531), - [anon_sym_DASH] = ACTIONS(1529), - [anon_sym_PLUS] = ACTIONS(1529), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1539), - [anon_sym_RBRACK] = ACTIONS(3618), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(1529), - [anon_sym_compl] = ACTIONS(1529), - [anon_sym_DASH_DASH] = ACTIONS(1543), - [anon_sym_PLUS_PLUS] = ACTIONS(1543), - [anon_sym_sizeof] = ACTIONS(1545), - [sym_number_literal] = ACTIONS(1547), - [anon_sym_L_SQUOTE] = ACTIONS(1549), - [anon_sym_u_SQUOTE] = ACTIONS(1549), - [anon_sym_U_SQUOTE] = ACTIONS(1549), - [anon_sym_u8_SQUOTE] = ACTIONS(1549), - [anon_sym_SQUOTE] = ACTIONS(1549), - [anon_sym_L_DQUOTE] = ACTIONS(1551), - [anon_sym_u_DQUOTE] = ACTIONS(1551), - [anon_sym_U_DQUOTE] = ACTIONS(1551), - [anon_sym_u8_DQUOTE] = ACTIONS(1551), - [anon_sym_DQUOTE] = ACTIONS(1551), - [sym_true] = ACTIONS(1553), - [sym_false] = ACTIONS(1553), - [sym_null] = ACTIONS(1553), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1557), - [anon_sym_R_DQUOTE] = ACTIONS(1559), - [anon_sym_LR_DQUOTE] = ACTIONS(1559), - [anon_sym_uR_DQUOTE] = ACTIONS(1559), - [anon_sym_UR_DQUOTE] = ACTIONS(1559), - [anon_sym_u8R_DQUOTE] = ACTIONS(1559), - [anon_sym_co_await] = ACTIONS(1561), - [anon_sym_new] = ACTIONS(1563), - [anon_sym_requires] = ACTIONS(1565), - [sym_this] = ACTIONS(1553), - [sym_nullptr] = ACTIONS(1553), + [sym_identifier] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3050), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, [1474] = { - [sym__expression] = STATE(3687), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2954), - [anon_sym_LPAREN2] = ACTIONS(984), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(3620), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [sym_identifier] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3050), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, [1475] = { - [sym__expression] = STATE(3739), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2954), - [anon_sym_LPAREN2] = ACTIONS(984), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3622), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [sym_identifier] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3050), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, [1476] = { - [sym__expression] = STATE(2918), - [sym_conditional_expression] = STATE(3035), - [sym_assignment_expression] = STATE(3035), - [sym_pointer_expression] = STATE(2713), - [sym_unary_expression] = STATE(3035), - [sym_binary_expression] = STATE(3035), - [sym_update_expression] = STATE(3035), - [sym_cast_expression] = STATE(3035), - [sym_sizeof_expression] = STATE(3035), - [sym_subscript_expression] = STATE(2713), - [sym_call_expression] = STATE(2713), - [sym_field_expression] = STATE(2713), - [sym_compound_literal_expression] = STATE(3035), - [sym_parenthesized_expression] = STATE(2713), - [sym_char_literal] = STATE(3013), - [sym_concatenated_string] = STATE(3013), - [sym_string_literal] = STATE(1900), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5990), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3035), - [sym_raw_string_literal] = STATE(1900), - [sym_co_await_expression] = STATE(3035), - [sym_new_expression] = STATE(3035), - [sym_delete_expression] = STATE(3035), - [sym_requires_clause] = STATE(3035), - [sym_requires_expression] = STATE(3035), - [sym_lambda_expression] = STATE(3035), - [sym_lambda_capture_specifier] = STATE(4465), - [sym_fold_expression] = STATE(3035), - [sym_parameter_pack_expansion] = STATE(3035), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4584), - [sym_qualified_identifier] = STATE(2713), - [sym_qualified_type_identifier] = STATE(5990), - [sym_user_defined_literal] = STATE(3035), - [sym_identifier] = ACTIONS(1643), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3624), - [anon_sym_LPAREN2] = ACTIONS(1439), - [anon_sym_BANG] = ACTIONS(1441), - [anon_sym_TILDE] = ACTIONS(1441), - [anon_sym_DASH] = ACTIONS(1443), - [anon_sym_PLUS] = ACTIONS(1443), - [anon_sym_STAR] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(1445), - [anon_sym_COLON_COLON] = ACTIONS(1447), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1581), - [anon_sym_not] = ACTIONS(1443), - [anon_sym_compl] = ACTIONS(1443), - [anon_sym_DASH_DASH] = ACTIONS(1459), - [anon_sym_PLUS_PLUS] = ACTIONS(1459), - [anon_sym_sizeof] = ACTIONS(1461), - [sym_number_literal] = ACTIONS(1463), - [anon_sym_L_SQUOTE] = ACTIONS(1465), - [anon_sym_u_SQUOTE] = ACTIONS(1465), - [anon_sym_U_SQUOTE] = ACTIONS(1465), - [anon_sym_u8_SQUOTE] = ACTIONS(1465), - [anon_sym_SQUOTE] = ACTIONS(1465), - [anon_sym_L_DQUOTE] = ACTIONS(1467), - [anon_sym_u_DQUOTE] = ACTIONS(1467), - [anon_sym_U_DQUOTE] = ACTIONS(1467), - [anon_sym_u8_DQUOTE] = ACTIONS(1467), - [anon_sym_DQUOTE] = ACTIONS(1467), - [sym_true] = ACTIONS(1469), - [sym_false] = ACTIONS(1469), - [sym_null] = ACTIONS(1469), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1473), - [anon_sym_R_DQUOTE] = ACTIONS(1475), - [anon_sym_LR_DQUOTE] = ACTIONS(1475), - [anon_sym_uR_DQUOTE] = ACTIONS(1475), - [anon_sym_UR_DQUOTE] = ACTIONS(1475), - [anon_sym_u8R_DQUOTE] = ACTIONS(1475), - [anon_sym_co_await] = ACTIONS(1477), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_requires] = ACTIONS(1481), - [sym_this] = ACTIONS(1469), - [sym_nullptr] = ACTIONS(1469), + [sym_identifier] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3050), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, [1477] = { - [sym__expression] = STATE(2924), - [sym_conditional_expression] = STATE(3035), - [sym_assignment_expression] = STATE(3035), - [sym_pointer_expression] = STATE(2713), - [sym_unary_expression] = STATE(3035), - [sym_binary_expression] = STATE(3035), - [sym_update_expression] = STATE(3035), - [sym_cast_expression] = STATE(3035), - [sym_sizeof_expression] = STATE(3035), - [sym_subscript_expression] = STATE(2713), - [sym_call_expression] = STATE(2713), - [sym_field_expression] = STATE(2713), - [sym_compound_literal_expression] = STATE(3035), - [sym_parenthesized_expression] = STATE(2713), - [sym_char_literal] = STATE(3013), - [sym_concatenated_string] = STATE(3013), - [sym_string_literal] = STATE(1900), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5990), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3035), - [sym_raw_string_literal] = STATE(1900), - [sym_co_await_expression] = STATE(3035), - [sym_new_expression] = STATE(3035), - [sym_delete_expression] = STATE(3035), - [sym_requires_clause] = STATE(3035), - [sym_requires_expression] = STATE(3035), - [sym_lambda_expression] = STATE(3035), - [sym_lambda_capture_specifier] = STATE(4465), - [sym_fold_expression] = STATE(3035), - [sym_parameter_pack_expansion] = STATE(3035), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4584), - [sym_qualified_identifier] = STATE(2713), - [sym_qualified_type_identifier] = STATE(5990), - [sym_user_defined_literal] = STATE(3035), - [sym_identifier] = ACTIONS(1643), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3627), - [anon_sym_LPAREN2] = ACTIONS(1439), - [anon_sym_BANG] = ACTIONS(1441), - [anon_sym_TILDE] = ACTIONS(1441), - [anon_sym_DASH] = ACTIONS(1443), - [anon_sym_PLUS] = ACTIONS(1443), - [anon_sym_STAR] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(1445), - [anon_sym_COLON_COLON] = ACTIONS(1447), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1581), - [anon_sym_not] = ACTIONS(1443), - [anon_sym_compl] = ACTIONS(1443), - [anon_sym_DASH_DASH] = ACTIONS(1459), - [anon_sym_PLUS_PLUS] = ACTIONS(1459), - [anon_sym_sizeof] = ACTIONS(1461), - [sym_number_literal] = ACTIONS(1463), - [anon_sym_L_SQUOTE] = ACTIONS(1465), - [anon_sym_u_SQUOTE] = ACTIONS(1465), - [anon_sym_U_SQUOTE] = ACTIONS(1465), - [anon_sym_u8_SQUOTE] = ACTIONS(1465), - [anon_sym_SQUOTE] = ACTIONS(1465), - [anon_sym_L_DQUOTE] = ACTIONS(1467), - [anon_sym_u_DQUOTE] = ACTIONS(1467), - [anon_sym_U_DQUOTE] = ACTIONS(1467), - [anon_sym_u8_DQUOTE] = ACTIONS(1467), - [anon_sym_DQUOTE] = ACTIONS(1467), - [sym_true] = ACTIONS(1469), - [sym_false] = ACTIONS(1469), - [sym_null] = ACTIONS(1469), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1473), - [anon_sym_R_DQUOTE] = ACTIONS(1475), - [anon_sym_LR_DQUOTE] = ACTIONS(1475), - [anon_sym_uR_DQUOTE] = ACTIONS(1475), - [anon_sym_UR_DQUOTE] = ACTIONS(1475), - [anon_sym_u8R_DQUOTE] = ACTIONS(1475), - [anon_sym_co_await] = ACTIONS(1477), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_requires] = ACTIONS(1481), - [sym_this] = ACTIONS(1469), - [sym_nullptr] = ACTIONS(1469), + [sym_identifier] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3050), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, [1478] = { - [sym__expression] = STATE(2919), - [sym_conditional_expression] = STATE(3035), - [sym_assignment_expression] = STATE(3035), - [sym_pointer_expression] = STATE(2713), - [sym_unary_expression] = STATE(3035), - [sym_binary_expression] = STATE(3035), - [sym_update_expression] = STATE(3035), - [sym_cast_expression] = STATE(3035), - [sym_sizeof_expression] = STATE(3035), - [sym_subscript_expression] = STATE(2713), - [sym_call_expression] = STATE(2713), - [sym_field_expression] = STATE(2713), - [sym_compound_literal_expression] = STATE(3035), - [sym_parenthesized_expression] = STATE(2713), - [sym_char_literal] = STATE(3013), - [sym_concatenated_string] = STATE(3013), - [sym_string_literal] = STATE(1900), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5990), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3035), - [sym_raw_string_literal] = STATE(1900), - [sym_co_await_expression] = STATE(3035), - [sym_new_expression] = STATE(3035), - [sym_delete_expression] = STATE(3035), - [sym_requires_clause] = STATE(3035), - [sym_requires_expression] = STATE(3035), - [sym_lambda_expression] = STATE(3035), - [sym_lambda_capture_specifier] = STATE(4465), - [sym_fold_expression] = STATE(3035), - [sym_parameter_pack_expansion] = STATE(3035), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4584), - [sym_qualified_identifier] = STATE(2713), - [sym_qualified_type_identifier] = STATE(5990), - [sym_user_defined_literal] = STATE(3035), - [sym_identifier] = ACTIONS(1643), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3630), - [anon_sym_LPAREN2] = ACTIONS(1439), - [anon_sym_BANG] = ACTIONS(1441), - [anon_sym_TILDE] = ACTIONS(1441), - [anon_sym_DASH] = ACTIONS(1443), - [anon_sym_PLUS] = ACTIONS(1443), - [anon_sym_STAR] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(1445), - [anon_sym_COLON_COLON] = ACTIONS(1447), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1581), - [anon_sym_not] = ACTIONS(1443), - [anon_sym_compl] = ACTIONS(1443), - [anon_sym_DASH_DASH] = ACTIONS(1459), - [anon_sym_PLUS_PLUS] = ACTIONS(1459), - [anon_sym_sizeof] = ACTIONS(1461), - [sym_number_literal] = ACTIONS(1463), - [anon_sym_L_SQUOTE] = ACTIONS(1465), - [anon_sym_u_SQUOTE] = ACTIONS(1465), - [anon_sym_U_SQUOTE] = ACTIONS(1465), - [anon_sym_u8_SQUOTE] = ACTIONS(1465), - [anon_sym_SQUOTE] = ACTIONS(1465), - [anon_sym_L_DQUOTE] = ACTIONS(1467), - [anon_sym_u_DQUOTE] = ACTIONS(1467), - [anon_sym_U_DQUOTE] = ACTIONS(1467), - [anon_sym_u8_DQUOTE] = ACTIONS(1467), - [anon_sym_DQUOTE] = ACTIONS(1467), - [sym_true] = ACTIONS(1469), - [sym_false] = ACTIONS(1469), - [sym_null] = ACTIONS(1469), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1473), - [anon_sym_R_DQUOTE] = ACTIONS(1475), - [anon_sym_LR_DQUOTE] = ACTIONS(1475), - [anon_sym_uR_DQUOTE] = ACTIONS(1475), - [anon_sym_UR_DQUOTE] = ACTIONS(1475), - [anon_sym_u8R_DQUOTE] = ACTIONS(1475), - [anon_sym_co_await] = ACTIONS(1477), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_requires] = ACTIONS(1481), - [sym_this] = ACTIONS(1469), - [sym_nullptr] = ACTIONS(1469), + [sym_identifier] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3050), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, [1479] = { - [sym__expression] = STATE(2921), - [sym_conditional_expression] = STATE(3035), - [sym_assignment_expression] = STATE(3035), - [sym_pointer_expression] = STATE(2713), - [sym_unary_expression] = STATE(3035), - [sym_binary_expression] = STATE(3035), - [sym_update_expression] = STATE(3035), - [sym_cast_expression] = STATE(3035), - [sym_sizeof_expression] = STATE(3035), - [sym_subscript_expression] = STATE(2713), - [sym_call_expression] = STATE(2713), - [sym_field_expression] = STATE(2713), - [sym_compound_literal_expression] = STATE(3035), - [sym_parenthesized_expression] = STATE(2713), - [sym_char_literal] = STATE(3013), - [sym_concatenated_string] = STATE(3013), - [sym_string_literal] = STATE(1900), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5990), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3035), - [sym_raw_string_literal] = STATE(1900), - [sym_co_await_expression] = STATE(3035), - [sym_new_expression] = STATE(3035), - [sym_delete_expression] = STATE(3035), - [sym_requires_clause] = STATE(3035), - [sym_requires_expression] = STATE(3035), - [sym_lambda_expression] = STATE(3035), - [sym_lambda_capture_specifier] = STATE(4465), - [sym_fold_expression] = STATE(3035), - [sym_parameter_pack_expansion] = STATE(3035), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4584), - [sym_qualified_identifier] = STATE(2713), - [sym_qualified_type_identifier] = STATE(5990), - [sym_user_defined_literal] = STATE(3035), - [sym_identifier] = ACTIONS(1643), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3633), - [anon_sym_LPAREN2] = ACTIONS(1439), - [anon_sym_BANG] = ACTIONS(1441), - [anon_sym_TILDE] = ACTIONS(1441), - [anon_sym_DASH] = ACTIONS(1443), - [anon_sym_PLUS] = ACTIONS(1443), - [anon_sym_STAR] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(1445), - [anon_sym_COLON_COLON] = ACTIONS(1447), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1581), - [anon_sym_not] = ACTIONS(1443), - [anon_sym_compl] = ACTIONS(1443), - [anon_sym_DASH_DASH] = ACTIONS(1459), - [anon_sym_PLUS_PLUS] = ACTIONS(1459), - [anon_sym_sizeof] = ACTIONS(1461), - [sym_number_literal] = ACTIONS(1463), - [anon_sym_L_SQUOTE] = ACTIONS(1465), - [anon_sym_u_SQUOTE] = ACTIONS(1465), - [anon_sym_U_SQUOTE] = ACTIONS(1465), - [anon_sym_u8_SQUOTE] = ACTIONS(1465), - [anon_sym_SQUOTE] = ACTIONS(1465), - [anon_sym_L_DQUOTE] = ACTIONS(1467), - [anon_sym_u_DQUOTE] = ACTIONS(1467), - [anon_sym_U_DQUOTE] = ACTIONS(1467), - [anon_sym_u8_DQUOTE] = ACTIONS(1467), - [anon_sym_DQUOTE] = ACTIONS(1467), - [sym_true] = ACTIONS(1469), - [sym_false] = ACTIONS(1469), - [sym_null] = ACTIONS(1469), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1473), - [anon_sym_R_DQUOTE] = ACTIONS(1475), - [anon_sym_LR_DQUOTE] = ACTIONS(1475), - [anon_sym_uR_DQUOTE] = ACTIONS(1475), - [anon_sym_UR_DQUOTE] = ACTIONS(1475), - [anon_sym_u8R_DQUOTE] = ACTIONS(1475), - [anon_sym_co_await] = ACTIONS(1477), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_requires] = ACTIONS(1481), - [sym_this] = ACTIONS(1469), - [sym_nullptr] = ACTIONS(1469), + [sym_identifier] = ACTIONS(2940), + [anon_sym_LPAREN2] = ACTIONS(2942), + [anon_sym_BANG] = ACTIONS(2942), + [anon_sym_TILDE] = ACTIONS(2942), + [anon_sym_DASH] = ACTIONS(2940), + [anon_sym_PLUS] = ACTIONS(2940), + [anon_sym_STAR] = ACTIONS(2942), + [anon_sym_AMP] = ACTIONS(2942), + [anon_sym_SEMI] = ACTIONS(2942), + [anon_sym_typedef] = ACTIONS(2940), + [anon_sym_extern] = ACTIONS(2940), + [anon_sym___attribute__] = ACTIONS(2940), + [anon_sym_COLON_COLON] = ACTIONS(2942), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2942), + [anon_sym___declspec] = ACTIONS(2940), + [anon_sym_LBRACE] = ACTIONS(2942), + [anon_sym_LBRACK] = ACTIONS(2940), + [anon_sym_static] = ACTIONS(2940), + [anon_sym_register] = ACTIONS(2940), + [anon_sym_inline] = ACTIONS(2940), + [anon_sym_thread_local] = ACTIONS(2940), + [anon_sym_const] = ACTIONS(2940), + [anon_sym_constexpr] = ACTIONS(2940), + [anon_sym_volatile] = ACTIONS(2940), + [anon_sym_restrict] = ACTIONS(2940), + [anon_sym___restrict__] = ACTIONS(2940), + [anon_sym__Atomic] = ACTIONS(2940), + [anon_sym__Noreturn] = ACTIONS(2940), + [anon_sym_noreturn] = ACTIONS(2940), + [anon_sym_mutable] = ACTIONS(2940), + [anon_sym_constinit] = ACTIONS(2940), + [anon_sym_consteval] = ACTIONS(2940), + [anon_sym_signed] = ACTIONS(2940), + [anon_sym_unsigned] = ACTIONS(2940), + [anon_sym_long] = ACTIONS(2940), + [anon_sym_short] = ACTIONS(2940), + [sym_primitive_type] = ACTIONS(2940), + [anon_sym_enum] = ACTIONS(2940), + [anon_sym_class] = ACTIONS(2940), + [anon_sym_struct] = ACTIONS(2940), + [anon_sym_union] = ACTIONS(2940), + [anon_sym_if] = ACTIONS(2940), + [anon_sym_else] = ACTIONS(2940), + [anon_sym_switch] = ACTIONS(2940), + [anon_sym_while] = ACTIONS(2940), + [anon_sym_do] = ACTIONS(2940), + [anon_sym_for] = ACTIONS(2940), + [anon_sym_return] = ACTIONS(2940), + [anon_sym_break] = ACTIONS(2940), + [anon_sym_continue] = ACTIONS(2940), + [anon_sym_goto] = ACTIONS(2940), + [anon_sym_not] = ACTIONS(2940), + [anon_sym_compl] = ACTIONS(2940), + [anon_sym_DASH_DASH] = ACTIONS(2942), + [anon_sym_PLUS_PLUS] = ACTIONS(2942), + [anon_sym_sizeof] = ACTIONS(2940), + [anon_sym_offsetof] = ACTIONS(2940), + [anon_sym__Generic] = ACTIONS(2940), + [anon_sym_asm] = ACTIONS(2940), + [anon_sym___asm__] = ACTIONS(2940), + [sym_number_literal] = ACTIONS(2942), + [anon_sym_L_SQUOTE] = ACTIONS(2942), + [anon_sym_u_SQUOTE] = ACTIONS(2942), + [anon_sym_U_SQUOTE] = ACTIONS(2942), + [anon_sym_u8_SQUOTE] = ACTIONS(2942), + [anon_sym_SQUOTE] = ACTIONS(2942), + [anon_sym_L_DQUOTE] = ACTIONS(2942), + [anon_sym_u_DQUOTE] = ACTIONS(2942), + [anon_sym_U_DQUOTE] = ACTIONS(2942), + [anon_sym_u8_DQUOTE] = ACTIONS(2942), + [anon_sym_DQUOTE] = ACTIONS(2942), + [sym_true] = ACTIONS(2940), + [sym_false] = ACTIONS(2940), + [anon_sym_NULL] = ACTIONS(2940), + [anon_sym_nullptr] = ACTIONS(2940), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2940), + [anon_sym_decltype] = ACTIONS(2940), + [anon_sym_virtual] = ACTIONS(2940), + [anon_sym_typename] = ACTIONS(2940), + [anon_sym_template] = ACTIONS(2940), + [anon_sym_try] = ACTIONS(2940), + [anon_sym_delete] = ACTIONS(2940), + [anon_sym_throw] = ACTIONS(2940), + [anon_sym_co_return] = ACTIONS(2940), + [anon_sym_co_yield] = ACTIONS(2940), + [anon_sym_R_DQUOTE] = ACTIONS(2942), + [anon_sym_LR_DQUOTE] = ACTIONS(2942), + [anon_sym_uR_DQUOTE] = ACTIONS(2942), + [anon_sym_UR_DQUOTE] = ACTIONS(2942), + [anon_sym_u8R_DQUOTE] = ACTIONS(2942), + [anon_sym_co_await] = ACTIONS(2940), + [anon_sym_new] = ACTIONS(2940), + [anon_sym_requires] = ACTIONS(2940), + [sym_this] = ACTIONS(2940), }, [1480] = { - [sym__expression] = STATE(2924), - [sym_conditional_expression] = STATE(3035), - [sym_assignment_expression] = STATE(3035), - [sym_pointer_expression] = STATE(2713), - [sym_unary_expression] = STATE(3035), - [sym_binary_expression] = STATE(3035), - [sym_update_expression] = STATE(3035), - [sym_cast_expression] = STATE(3035), - [sym_sizeof_expression] = STATE(3035), - [sym_subscript_expression] = STATE(2713), - [sym_call_expression] = STATE(2713), - [sym_field_expression] = STATE(2713), - [sym_compound_literal_expression] = STATE(3035), - [sym_parenthesized_expression] = STATE(2713), - [sym_char_literal] = STATE(3013), - [sym_concatenated_string] = STATE(3013), - [sym_string_literal] = STATE(1900), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5990), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3035), - [sym_raw_string_literal] = STATE(1900), - [sym_co_await_expression] = STATE(3035), - [sym_new_expression] = STATE(3035), - [sym_delete_expression] = STATE(3035), - [sym_requires_clause] = STATE(3035), - [sym_requires_expression] = STATE(3035), - [sym_lambda_expression] = STATE(3035), - [sym_lambda_capture_specifier] = STATE(4465), - [sym_fold_expression] = STATE(3035), - [sym_parameter_pack_expansion] = STATE(3035), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4584), - [sym_qualified_identifier] = STATE(2713), - [sym_qualified_type_identifier] = STATE(5990), - [sym_user_defined_literal] = STATE(3035), - [sym_identifier] = ACTIONS(1643), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3636), - [anon_sym_LPAREN2] = ACTIONS(1439), - [anon_sym_BANG] = ACTIONS(1441), - [anon_sym_TILDE] = ACTIONS(1441), - [anon_sym_DASH] = ACTIONS(1443), - [anon_sym_PLUS] = ACTIONS(1443), - [anon_sym_STAR] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(1445), - [anon_sym_COLON_COLON] = ACTIONS(1447), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1581), - [anon_sym_not] = ACTIONS(1443), - [anon_sym_compl] = ACTIONS(1443), - [anon_sym_DASH_DASH] = ACTIONS(1459), - [anon_sym_PLUS_PLUS] = ACTIONS(1459), - [anon_sym_sizeof] = ACTIONS(1461), - [sym_number_literal] = ACTIONS(1463), - [anon_sym_L_SQUOTE] = ACTIONS(1465), - [anon_sym_u_SQUOTE] = ACTIONS(1465), - [anon_sym_U_SQUOTE] = ACTIONS(1465), - [anon_sym_u8_SQUOTE] = ACTIONS(1465), - [anon_sym_SQUOTE] = ACTIONS(1465), - [anon_sym_L_DQUOTE] = ACTIONS(1467), - [anon_sym_u_DQUOTE] = ACTIONS(1467), - [anon_sym_U_DQUOTE] = ACTIONS(1467), - [anon_sym_u8_DQUOTE] = ACTIONS(1467), - [anon_sym_DQUOTE] = ACTIONS(1467), - [sym_true] = ACTIONS(1469), - [sym_false] = ACTIONS(1469), - [sym_null] = ACTIONS(1469), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1473), - [anon_sym_R_DQUOTE] = ACTIONS(1475), - [anon_sym_LR_DQUOTE] = ACTIONS(1475), - [anon_sym_uR_DQUOTE] = ACTIONS(1475), - [anon_sym_UR_DQUOTE] = ACTIONS(1475), - [anon_sym_u8R_DQUOTE] = ACTIONS(1475), - [anon_sym_co_await] = ACTIONS(1477), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_requires] = ACTIONS(1481), - [sym_this] = ACTIONS(1469), - [sym_nullptr] = ACTIONS(1469), + [sym_identifier] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3050), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, [1481] = { - [sym__expression] = STATE(2924), - [sym_conditional_expression] = STATE(3035), - [sym_assignment_expression] = STATE(3035), - [sym_pointer_expression] = STATE(2713), - [sym_unary_expression] = STATE(3035), - [sym_binary_expression] = STATE(3035), - [sym_update_expression] = STATE(3035), - [sym_cast_expression] = STATE(3035), - [sym_sizeof_expression] = STATE(3035), - [sym_subscript_expression] = STATE(2713), - [sym_call_expression] = STATE(2713), - [sym_field_expression] = STATE(2713), - [sym_compound_literal_expression] = STATE(3035), - [sym_parenthesized_expression] = STATE(2713), - [sym_char_literal] = STATE(3013), - [sym_concatenated_string] = STATE(3013), - [sym_string_literal] = STATE(1900), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5990), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3035), - [sym_raw_string_literal] = STATE(1900), - [sym_co_await_expression] = STATE(3035), - [sym_new_expression] = STATE(3035), - [sym_delete_expression] = STATE(3035), - [sym_requires_clause] = STATE(3035), - [sym_requires_expression] = STATE(3035), - [sym_lambda_expression] = STATE(3035), - [sym_lambda_capture_specifier] = STATE(4465), - [sym_fold_expression] = STATE(3035), - [sym_parameter_pack_expansion] = STATE(3035), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4584), - [sym_qualified_identifier] = STATE(2713), - [sym_qualified_type_identifier] = STATE(5990), - [sym_user_defined_literal] = STATE(3035), - [sym_identifier] = ACTIONS(1643), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3639), - [anon_sym_LPAREN2] = ACTIONS(1439), - [anon_sym_BANG] = ACTIONS(1441), - [anon_sym_TILDE] = ACTIONS(1441), - [anon_sym_DASH] = ACTIONS(1443), - [anon_sym_PLUS] = ACTIONS(1443), - [anon_sym_STAR] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(1445), - [anon_sym_COLON_COLON] = ACTIONS(1447), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1581), - [anon_sym_not] = ACTIONS(1443), - [anon_sym_compl] = ACTIONS(1443), - [anon_sym_DASH_DASH] = ACTIONS(1459), - [anon_sym_PLUS_PLUS] = ACTIONS(1459), - [anon_sym_sizeof] = ACTIONS(1461), - [sym_number_literal] = ACTIONS(1463), - [anon_sym_L_SQUOTE] = ACTIONS(1465), - [anon_sym_u_SQUOTE] = ACTIONS(1465), - [anon_sym_U_SQUOTE] = ACTIONS(1465), - [anon_sym_u8_SQUOTE] = ACTIONS(1465), - [anon_sym_SQUOTE] = ACTIONS(1465), - [anon_sym_L_DQUOTE] = ACTIONS(1467), - [anon_sym_u_DQUOTE] = ACTIONS(1467), - [anon_sym_U_DQUOTE] = ACTIONS(1467), - [anon_sym_u8_DQUOTE] = ACTIONS(1467), - [anon_sym_DQUOTE] = ACTIONS(1467), - [sym_true] = ACTIONS(1469), - [sym_false] = ACTIONS(1469), - [sym_null] = ACTIONS(1469), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1473), - [anon_sym_R_DQUOTE] = ACTIONS(1475), - [anon_sym_LR_DQUOTE] = ACTIONS(1475), - [anon_sym_uR_DQUOTE] = ACTIONS(1475), - [anon_sym_UR_DQUOTE] = ACTIONS(1475), - [anon_sym_u8R_DQUOTE] = ACTIONS(1475), - [anon_sym_co_await] = ACTIONS(1477), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_requires] = ACTIONS(1481), - [sym_this] = ACTIONS(1469), - [sym_nullptr] = ACTIONS(1469), + [sym_identifier] = ACTIONS(2936), + [anon_sym_LPAREN2] = ACTIONS(2938), + [anon_sym_BANG] = ACTIONS(2938), + [anon_sym_TILDE] = ACTIONS(2938), + [anon_sym_DASH] = ACTIONS(2936), + [anon_sym_PLUS] = ACTIONS(2936), + [anon_sym_STAR] = ACTIONS(2938), + [anon_sym_AMP] = ACTIONS(2938), + [anon_sym_SEMI] = ACTIONS(2938), + [anon_sym_typedef] = ACTIONS(2936), + [anon_sym_extern] = ACTIONS(2936), + [anon_sym___attribute__] = ACTIONS(2936), + [anon_sym_COLON_COLON] = ACTIONS(2938), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2938), + [anon_sym___declspec] = ACTIONS(2936), + [anon_sym_LBRACE] = ACTIONS(2938), + [anon_sym_LBRACK] = ACTIONS(2936), + [anon_sym_static] = ACTIONS(2936), + [anon_sym_register] = ACTIONS(2936), + [anon_sym_inline] = ACTIONS(2936), + [anon_sym_thread_local] = ACTIONS(2936), + [anon_sym_const] = ACTIONS(2936), + [anon_sym_constexpr] = ACTIONS(2936), + [anon_sym_volatile] = ACTIONS(2936), + [anon_sym_restrict] = ACTIONS(2936), + [anon_sym___restrict__] = ACTIONS(2936), + [anon_sym__Atomic] = ACTIONS(2936), + [anon_sym__Noreturn] = ACTIONS(2936), + [anon_sym_noreturn] = ACTIONS(2936), + [anon_sym_mutable] = ACTIONS(2936), + [anon_sym_constinit] = ACTIONS(2936), + [anon_sym_consteval] = ACTIONS(2936), + [anon_sym_signed] = ACTIONS(2936), + [anon_sym_unsigned] = ACTIONS(2936), + [anon_sym_long] = ACTIONS(2936), + [anon_sym_short] = ACTIONS(2936), + [sym_primitive_type] = ACTIONS(2936), + [anon_sym_enum] = ACTIONS(2936), + [anon_sym_class] = ACTIONS(2936), + [anon_sym_struct] = ACTIONS(2936), + [anon_sym_union] = ACTIONS(2936), + [anon_sym_if] = ACTIONS(2936), + [anon_sym_else] = ACTIONS(2936), + [anon_sym_switch] = ACTIONS(2936), + [anon_sym_while] = ACTIONS(2936), + [anon_sym_do] = ACTIONS(2936), + [anon_sym_for] = ACTIONS(2936), + [anon_sym_return] = ACTIONS(2936), + [anon_sym_break] = ACTIONS(2936), + [anon_sym_continue] = ACTIONS(2936), + [anon_sym_goto] = ACTIONS(2936), + [anon_sym_not] = ACTIONS(2936), + [anon_sym_compl] = ACTIONS(2936), + [anon_sym_DASH_DASH] = ACTIONS(2938), + [anon_sym_PLUS_PLUS] = ACTIONS(2938), + [anon_sym_sizeof] = ACTIONS(2936), + [anon_sym_offsetof] = ACTIONS(2936), + [anon_sym__Generic] = ACTIONS(2936), + [anon_sym_asm] = ACTIONS(2936), + [anon_sym___asm__] = ACTIONS(2936), + [sym_number_literal] = ACTIONS(2938), + [anon_sym_L_SQUOTE] = ACTIONS(2938), + [anon_sym_u_SQUOTE] = ACTIONS(2938), + [anon_sym_U_SQUOTE] = ACTIONS(2938), + [anon_sym_u8_SQUOTE] = ACTIONS(2938), + [anon_sym_SQUOTE] = ACTIONS(2938), + [anon_sym_L_DQUOTE] = ACTIONS(2938), + [anon_sym_u_DQUOTE] = ACTIONS(2938), + [anon_sym_U_DQUOTE] = ACTIONS(2938), + [anon_sym_u8_DQUOTE] = ACTIONS(2938), + [anon_sym_DQUOTE] = ACTIONS(2938), + [sym_true] = ACTIONS(2936), + [sym_false] = ACTIONS(2936), + [anon_sym_NULL] = ACTIONS(2936), + [anon_sym_nullptr] = ACTIONS(2936), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2936), + [anon_sym_decltype] = ACTIONS(2936), + [anon_sym_virtual] = ACTIONS(2936), + [anon_sym_typename] = ACTIONS(2936), + [anon_sym_template] = ACTIONS(2936), + [anon_sym_try] = ACTIONS(2936), + [anon_sym_delete] = ACTIONS(2936), + [anon_sym_throw] = ACTIONS(2936), + [anon_sym_co_return] = ACTIONS(2936), + [anon_sym_co_yield] = ACTIONS(2936), + [anon_sym_R_DQUOTE] = ACTIONS(2938), + [anon_sym_LR_DQUOTE] = ACTIONS(2938), + [anon_sym_uR_DQUOTE] = ACTIONS(2938), + [anon_sym_UR_DQUOTE] = ACTIONS(2938), + [anon_sym_u8R_DQUOTE] = ACTIONS(2938), + [anon_sym_co_await] = ACTIONS(2936), + [anon_sym_new] = ACTIONS(2936), + [anon_sym_requires] = ACTIONS(2936), + [sym_this] = ACTIONS(2936), }, [1482] = { - [sym__expression] = STATE(2918), - [sym_conditional_expression] = STATE(3035), - [sym_assignment_expression] = STATE(3035), - [sym_pointer_expression] = STATE(2713), - [sym_unary_expression] = STATE(3035), - [sym_binary_expression] = STATE(3035), - [sym_update_expression] = STATE(3035), - [sym_cast_expression] = STATE(3035), - [sym_sizeof_expression] = STATE(3035), - [sym_subscript_expression] = STATE(2713), - [sym_call_expression] = STATE(2713), - [sym_field_expression] = STATE(2713), - [sym_compound_literal_expression] = STATE(3035), - [sym_parenthesized_expression] = STATE(2713), - [sym_char_literal] = STATE(3013), - [sym_concatenated_string] = STATE(3013), - [sym_string_literal] = STATE(1900), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5990), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3035), - [sym_raw_string_literal] = STATE(1900), - [sym_co_await_expression] = STATE(3035), - [sym_new_expression] = STATE(3035), - [sym_delete_expression] = STATE(3035), - [sym_requires_clause] = STATE(3035), - [sym_requires_expression] = STATE(3035), - [sym_lambda_expression] = STATE(3035), - [sym_lambda_capture_specifier] = STATE(4465), - [sym_fold_expression] = STATE(3035), - [sym_parameter_pack_expansion] = STATE(3035), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4584), - [sym_qualified_identifier] = STATE(2713), - [sym_qualified_type_identifier] = STATE(5990), - [sym_user_defined_literal] = STATE(3035), - [sym_identifier] = ACTIONS(1643), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3642), - [anon_sym_LPAREN2] = ACTIONS(1439), - [anon_sym_BANG] = ACTIONS(1441), - [anon_sym_TILDE] = ACTIONS(1441), - [anon_sym_DASH] = ACTIONS(1443), - [anon_sym_PLUS] = ACTIONS(1443), - [anon_sym_STAR] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(1445), - [anon_sym_COLON_COLON] = ACTIONS(1447), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1581), - [anon_sym_not] = ACTIONS(1443), - [anon_sym_compl] = ACTIONS(1443), - [anon_sym_DASH_DASH] = ACTIONS(1459), - [anon_sym_PLUS_PLUS] = ACTIONS(1459), - [anon_sym_sizeof] = ACTIONS(1461), - [sym_number_literal] = ACTIONS(1463), - [anon_sym_L_SQUOTE] = ACTIONS(1465), - [anon_sym_u_SQUOTE] = ACTIONS(1465), - [anon_sym_U_SQUOTE] = ACTIONS(1465), - [anon_sym_u8_SQUOTE] = ACTIONS(1465), - [anon_sym_SQUOTE] = ACTIONS(1465), - [anon_sym_L_DQUOTE] = ACTIONS(1467), - [anon_sym_u_DQUOTE] = ACTIONS(1467), - [anon_sym_U_DQUOTE] = ACTIONS(1467), - [anon_sym_u8_DQUOTE] = ACTIONS(1467), - [anon_sym_DQUOTE] = ACTIONS(1467), - [sym_true] = ACTIONS(1469), - [sym_false] = ACTIONS(1469), - [sym_null] = ACTIONS(1469), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1473), - [anon_sym_R_DQUOTE] = ACTIONS(1475), - [anon_sym_LR_DQUOTE] = ACTIONS(1475), - [anon_sym_uR_DQUOTE] = ACTIONS(1475), - [anon_sym_UR_DQUOTE] = ACTIONS(1475), - [anon_sym_u8R_DQUOTE] = ACTIONS(1475), - [anon_sym_co_await] = ACTIONS(1477), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_requires] = ACTIONS(1481), - [sym_this] = ACTIONS(1469), - [sym_nullptr] = ACTIONS(1469), + [sym_identifier] = ACTIONS(2932), + [anon_sym_LPAREN2] = ACTIONS(2934), + [anon_sym_BANG] = ACTIONS(2934), + [anon_sym_TILDE] = ACTIONS(2934), + [anon_sym_DASH] = ACTIONS(2932), + [anon_sym_PLUS] = ACTIONS(2932), + [anon_sym_STAR] = ACTIONS(2934), + [anon_sym_AMP] = ACTIONS(2934), + [anon_sym_SEMI] = ACTIONS(2934), + [anon_sym_typedef] = ACTIONS(2932), + [anon_sym_extern] = ACTIONS(2932), + [anon_sym___attribute__] = ACTIONS(2932), + [anon_sym_COLON_COLON] = ACTIONS(2934), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2934), + [anon_sym___declspec] = ACTIONS(2932), + [anon_sym_LBRACE] = ACTIONS(2934), + [anon_sym_LBRACK] = ACTIONS(2932), + [anon_sym_static] = ACTIONS(2932), + [anon_sym_register] = ACTIONS(2932), + [anon_sym_inline] = ACTIONS(2932), + [anon_sym_thread_local] = ACTIONS(2932), + [anon_sym_const] = ACTIONS(2932), + [anon_sym_constexpr] = ACTIONS(2932), + [anon_sym_volatile] = ACTIONS(2932), + [anon_sym_restrict] = ACTIONS(2932), + [anon_sym___restrict__] = ACTIONS(2932), + [anon_sym__Atomic] = ACTIONS(2932), + [anon_sym__Noreturn] = ACTIONS(2932), + [anon_sym_noreturn] = ACTIONS(2932), + [anon_sym_mutable] = ACTIONS(2932), + [anon_sym_constinit] = ACTIONS(2932), + [anon_sym_consteval] = ACTIONS(2932), + [anon_sym_signed] = ACTIONS(2932), + [anon_sym_unsigned] = ACTIONS(2932), + [anon_sym_long] = ACTIONS(2932), + [anon_sym_short] = ACTIONS(2932), + [sym_primitive_type] = ACTIONS(2932), + [anon_sym_enum] = ACTIONS(2932), + [anon_sym_class] = ACTIONS(2932), + [anon_sym_struct] = ACTIONS(2932), + [anon_sym_union] = ACTIONS(2932), + [anon_sym_if] = ACTIONS(2932), + [anon_sym_else] = ACTIONS(2932), + [anon_sym_switch] = ACTIONS(2932), + [anon_sym_while] = ACTIONS(2932), + [anon_sym_do] = ACTIONS(2932), + [anon_sym_for] = ACTIONS(2932), + [anon_sym_return] = ACTIONS(2932), + [anon_sym_break] = ACTIONS(2932), + [anon_sym_continue] = ACTIONS(2932), + [anon_sym_goto] = ACTIONS(2932), + [anon_sym_not] = ACTIONS(2932), + [anon_sym_compl] = ACTIONS(2932), + [anon_sym_DASH_DASH] = ACTIONS(2934), + [anon_sym_PLUS_PLUS] = ACTIONS(2934), + [anon_sym_sizeof] = ACTIONS(2932), + [anon_sym_offsetof] = ACTIONS(2932), + [anon_sym__Generic] = ACTIONS(2932), + [anon_sym_asm] = ACTIONS(2932), + [anon_sym___asm__] = ACTIONS(2932), + [sym_number_literal] = ACTIONS(2934), + [anon_sym_L_SQUOTE] = ACTIONS(2934), + [anon_sym_u_SQUOTE] = ACTIONS(2934), + [anon_sym_U_SQUOTE] = ACTIONS(2934), + [anon_sym_u8_SQUOTE] = ACTIONS(2934), + [anon_sym_SQUOTE] = ACTIONS(2934), + [anon_sym_L_DQUOTE] = ACTIONS(2934), + [anon_sym_u_DQUOTE] = ACTIONS(2934), + [anon_sym_U_DQUOTE] = ACTIONS(2934), + [anon_sym_u8_DQUOTE] = ACTIONS(2934), + [anon_sym_DQUOTE] = ACTIONS(2934), + [sym_true] = ACTIONS(2932), + [sym_false] = ACTIONS(2932), + [anon_sym_NULL] = ACTIONS(2932), + [anon_sym_nullptr] = ACTIONS(2932), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2932), + [anon_sym_decltype] = ACTIONS(2932), + [anon_sym_virtual] = ACTIONS(2932), + [anon_sym_typename] = ACTIONS(2932), + [anon_sym_template] = ACTIONS(2932), + [anon_sym_try] = ACTIONS(2932), + [anon_sym_delete] = ACTIONS(2932), + [anon_sym_throw] = ACTIONS(2932), + [anon_sym_co_return] = ACTIONS(2932), + [anon_sym_co_yield] = ACTIONS(2932), + [anon_sym_R_DQUOTE] = ACTIONS(2934), + [anon_sym_LR_DQUOTE] = ACTIONS(2934), + [anon_sym_uR_DQUOTE] = ACTIONS(2934), + [anon_sym_UR_DQUOTE] = ACTIONS(2934), + [anon_sym_u8R_DQUOTE] = ACTIONS(2934), + [anon_sym_co_await] = ACTIONS(2932), + [anon_sym_new] = ACTIONS(2932), + [anon_sym_requires] = ACTIONS(2932), + [sym_this] = ACTIONS(2932), }, [1483] = { - [sym__expression] = STATE(3392), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2954), - [anon_sym_LPAREN2] = ACTIONS(984), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(3645), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(3594), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [sym_identifier] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3050), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, [1484] = { - [sym__expression] = STATE(2921), - [sym_conditional_expression] = STATE(3035), - [sym_assignment_expression] = STATE(3035), - [sym_pointer_expression] = STATE(2713), - [sym_unary_expression] = STATE(3035), - [sym_binary_expression] = STATE(3035), - [sym_update_expression] = STATE(3035), - [sym_cast_expression] = STATE(3035), - [sym_sizeof_expression] = STATE(3035), - [sym_subscript_expression] = STATE(2713), - [sym_call_expression] = STATE(2713), - [sym_field_expression] = STATE(2713), - [sym_compound_literal_expression] = STATE(3035), - [sym_parenthesized_expression] = STATE(2713), - [sym_char_literal] = STATE(3013), - [sym_concatenated_string] = STATE(3013), - [sym_string_literal] = STATE(1900), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5990), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3035), - [sym_raw_string_literal] = STATE(1900), - [sym_co_await_expression] = STATE(3035), - [sym_new_expression] = STATE(3035), - [sym_delete_expression] = STATE(3035), - [sym_requires_clause] = STATE(3035), - [sym_requires_expression] = STATE(3035), - [sym_lambda_expression] = STATE(3035), - [sym_lambda_capture_specifier] = STATE(4465), - [sym_fold_expression] = STATE(3035), - [sym_parameter_pack_expansion] = STATE(3035), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4584), - [sym_qualified_identifier] = STATE(2713), - [sym_qualified_type_identifier] = STATE(5990), - [sym_user_defined_literal] = STATE(3035), - [sym_identifier] = ACTIONS(1643), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3647), - [anon_sym_LPAREN2] = ACTIONS(1439), - [anon_sym_BANG] = ACTIONS(1441), - [anon_sym_TILDE] = ACTIONS(1441), - [anon_sym_DASH] = ACTIONS(1443), - [anon_sym_PLUS] = ACTIONS(1443), - [anon_sym_STAR] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(1445), - [anon_sym_COLON_COLON] = ACTIONS(1447), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1581), - [anon_sym_not] = ACTIONS(1443), - [anon_sym_compl] = ACTIONS(1443), - [anon_sym_DASH_DASH] = ACTIONS(1459), - [anon_sym_PLUS_PLUS] = ACTIONS(1459), - [anon_sym_sizeof] = ACTIONS(1461), - [sym_number_literal] = ACTIONS(1463), - [anon_sym_L_SQUOTE] = ACTIONS(1465), - [anon_sym_u_SQUOTE] = ACTIONS(1465), - [anon_sym_U_SQUOTE] = ACTIONS(1465), - [anon_sym_u8_SQUOTE] = ACTIONS(1465), - [anon_sym_SQUOTE] = ACTIONS(1465), - [anon_sym_L_DQUOTE] = ACTIONS(1467), - [anon_sym_u_DQUOTE] = ACTIONS(1467), - [anon_sym_U_DQUOTE] = ACTIONS(1467), - [anon_sym_u8_DQUOTE] = ACTIONS(1467), - [anon_sym_DQUOTE] = ACTIONS(1467), - [sym_true] = ACTIONS(1469), - [sym_false] = ACTIONS(1469), - [sym_null] = ACTIONS(1469), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1473), - [anon_sym_R_DQUOTE] = ACTIONS(1475), - [anon_sym_LR_DQUOTE] = ACTIONS(1475), - [anon_sym_uR_DQUOTE] = ACTIONS(1475), - [anon_sym_UR_DQUOTE] = ACTIONS(1475), - [anon_sym_u8R_DQUOTE] = ACTIONS(1475), - [anon_sym_co_await] = ACTIONS(1477), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_requires] = ACTIONS(1481), - [sym_this] = ACTIONS(1469), - [sym_nullptr] = ACTIONS(1469), + [sym_identifier] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3050), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, [1485] = { - [sym__expression] = STATE(2919), - [sym_conditional_expression] = STATE(3035), - [sym_assignment_expression] = STATE(3035), - [sym_pointer_expression] = STATE(2713), - [sym_unary_expression] = STATE(3035), - [sym_binary_expression] = STATE(3035), - [sym_update_expression] = STATE(3035), - [sym_cast_expression] = STATE(3035), - [sym_sizeof_expression] = STATE(3035), - [sym_subscript_expression] = STATE(2713), - [sym_call_expression] = STATE(2713), - [sym_field_expression] = STATE(2713), - [sym_compound_literal_expression] = STATE(3035), - [sym_parenthesized_expression] = STATE(2713), - [sym_char_literal] = STATE(3013), - [sym_concatenated_string] = STATE(3013), - [sym_string_literal] = STATE(1900), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5990), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3035), - [sym_raw_string_literal] = STATE(1900), - [sym_co_await_expression] = STATE(3035), - [sym_new_expression] = STATE(3035), - [sym_delete_expression] = STATE(3035), - [sym_requires_clause] = STATE(3035), - [sym_requires_expression] = STATE(3035), - [sym_lambda_expression] = STATE(3035), - [sym_lambda_capture_specifier] = STATE(4465), - [sym_fold_expression] = STATE(3035), - [sym_parameter_pack_expansion] = STATE(3035), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4584), - [sym_qualified_identifier] = STATE(2713), - [sym_qualified_type_identifier] = STATE(5990), - [sym_user_defined_literal] = STATE(3035), - [sym_identifier] = ACTIONS(1643), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3650), - [anon_sym_LPAREN2] = ACTIONS(1439), - [anon_sym_BANG] = ACTIONS(1441), - [anon_sym_TILDE] = ACTIONS(1441), - [anon_sym_DASH] = ACTIONS(1443), - [anon_sym_PLUS] = ACTIONS(1443), - [anon_sym_STAR] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(1445), - [anon_sym_COLON_COLON] = ACTIONS(1447), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1581), - [anon_sym_not] = ACTIONS(1443), - [anon_sym_compl] = ACTIONS(1443), - [anon_sym_DASH_DASH] = ACTIONS(1459), - [anon_sym_PLUS_PLUS] = ACTIONS(1459), - [anon_sym_sizeof] = ACTIONS(1461), - [sym_number_literal] = ACTIONS(1463), - [anon_sym_L_SQUOTE] = ACTIONS(1465), - [anon_sym_u_SQUOTE] = ACTIONS(1465), - [anon_sym_U_SQUOTE] = ACTIONS(1465), - [anon_sym_u8_SQUOTE] = ACTIONS(1465), - [anon_sym_SQUOTE] = ACTIONS(1465), - [anon_sym_L_DQUOTE] = ACTIONS(1467), - [anon_sym_u_DQUOTE] = ACTIONS(1467), - [anon_sym_U_DQUOTE] = ACTIONS(1467), - [anon_sym_u8_DQUOTE] = ACTIONS(1467), - [anon_sym_DQUOTE] = ACTIONS(1467), - [sym_true] = ACTIONS(1469), - [sym_false] = ACTIONS(1469), - [sym_null] = ACTIONS(1469), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1473), - [anon_sym_R_DQUOTE] = ACTIONS(1475), - [anon_sym_LR_DQUOTE] = ACTIONS(1475), - [anon_sym_uR_DQUOTE] = ACTIONS(1475), - [anon_sym_UR_DQUOTE] = ACTIONS(1475), - [anon_sym_u8R_DQUOTE] = ACTIONS(1475), - [anon_sym_co_await] = ACTIONS(1477), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_requires] = ACTIONS(1481), - [sym_this] = ACTIONS(1469), - [sym_nullptr] = ACTIONS(1469), + [sym_identifier] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3050), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, [1486] = { - [sym__expression] = STATE(3734), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2954), - [anon_sym_RPAREN] = ACTIONS(3653), - [anon_sym_LPAREN2] = ACTIONS(984), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [sym_identifier] = ACTIONS(2924), + [anon_sym_LPAREN2] = ACTIONS(2926), + [anon_sym_BANG] = ACTIONS(2926), + [anon_sym_TILDE] = ACTIONS(2926), + [anon_sym_DASH] = ACTIONS(2924), + [anon_sym_PLUS] = ACTIONS(2924), + [anon_sym_STAR] = ACTIONS(2926), + [anon_sym_AMP] = ACTIONS(2926), + [anon_sym_SEMI] = ACTIONS(2926), + [anon_sym_typedef] = ACTIONS(2924), + [anon_sym_extern] = ACTIONS(2924), + [anon_sym___attribute__] = ACTIONS(2924), + [anon_sym_COLON_COLON] = ACTIONS(2926), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2926), + [anon_sym___declspec] = ACTIONS(2924), + [anon_sym_LBRACE] = ACTIONS(2926), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_static] = ACTIONS(2924), + [anon_sym_register] = ACTIONS(2924), + [anon_sym_inline] = ACTIONS(2924), + [anon_sym_thread_local] = ACTIONS(2924), + [anon_sym_const] = ACTIONS(2924), + [anon_sym_constexpr] = ACTIONS(2924), + [anon_sym_volatile] = ACTIONS(2924), + [anon_sym_restrict] = ACTIONS(2924), + [anon_sym___restrict__] = ACTIONS(2924), + [anon_sym__Atomic] = ACTIONS(2924), + [anon_sym__Noreturn] = ACTIONS(2924), + [anon_sym_noreturn] = ACTIONS(2924), + [anon_sym_mutable] = ACTIONS(2924), + [anon_sym_constinit] = ACTIONS(2924), + [anon_sym_consteval] = ACTIONS(2924), + [anon_sym_signed] = ACTIONS(2924), + [anon_sym_unsigned] = ACTIONS(2924), + [anon_sym_long] = ACTIONS(2924), + [anon_sym_short] = ACTIONS(2924), + [sym_primitive_type] = ACTIONS(2924), + [anon_sym_enum] = ACTIONS(2924), + [anon_sym_class] = ACTIONS(2924), + [anon_sym_struct] = ACTIONS(2924), + [anon_sym_union] = ACTIONS(2924), + [anon_sym_if] = ACTIONS(2924), + [anon_sym_else] = ACTIONS(2924), + [anon_sym_switch] = ACTIONS(2924), + [anon_sym_while] = ACTIONS(2924), + [anon_sym_do] = ACTIONS(2924), + [anon_sym_for] = ACTIONS(2924), + [anon_sym_return] = ACTIONS(2924), + [anon_sym_break] = ACTIONS(2924), + [anon_sym_continue] = ACTIONS(2924), + [anon_sym_goto] = ACTIONS(2924), + [anon_sym_not] = ACTIONS(2924), + [anon_sym_compl] = ACTIONS(2924), + [anon_sym_DASH_DASH] = ACTIONS(2926), + [anon_sym_PLUS_PLUS] = ACTIONS(2926), + [anon_sym_sizeof] = ACTIONS(2924), + [anon_sym_offsetof] = ACTIONS(2924), + [anon_sym__Generic] = ACTIONS(2924), + [anon_sym_asm] = ACTIONS(2924), + [anon_sym___asm__] = ACTIONS(2924), + [sym_number_literal] = ACTIONS(2926), + [anon_sym_L_SQUOTE] = ACTIONS(2926), + [anon_sym_u_SQUOTE] = ACTIONS(2926), + [anon_sym_U_SQUOTE] = ACTIONS(2926), + [anon_sym_u8_SQUOTE] = ACTIONS(2926), + [anon_sym_SQUOTE] = ACTIONS(2926), + [anon_sym_L_DQUOTE] = ACTIONS(2926), + [anon_sym_u_DQUOTE] = ACTIONS(2926), + [anon_sym_U_DQUOTE] = ACTIONS(2926), + [anon_sym_u8_DQUOTE] = ACTIONS(2926), + [anon_sym_DQUOTE] = ACTIONS(2926), + [sym_true] = ACTIONS(2924), + [sym_false] = ACTIONS(2924), + [anon_sym_NULL] = ACTIONS(2924), + [anon_sym_nullptr] = ACTIONS(2924), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2924), + [anon_sym_decltype] = ACTIONS(2924), + [anon_sym_virtual] = ACTIONS(2924), + [anon_sym_typename] = ACTIONS(2924), + [anon_sym_template] = ACTIONS(2924), + [anon_sym_try] = ACTIONS(2924), + [anon_sym_delete] = ACTIONS(2924), + [anon_sym_throw] = ACTIONS(2924), + [anon_sym_co_return] = ACTIONS(2924), + [anon_sym_co_yield] = ACTIONS(2924), + [anon_sym_R_DQUOTE] = ACTIONS(2926), + [anon_sym_LR_DQUOTE] = ACTIONS(2926), + [anon_sym_uR_DQUOTE] = ACTIONS(2926), + [anon_sym_UR_DQUOTE] = ACTIONS(2926), + [anon_sym_u8R_DQUOTE] = ACTIONS(2926), + [anon_sym_co_await] = ACTIONS(2924), + [anon_sym_new] = ACTIONS(2924), + [anon_sym_requires] = ACTIONS(2924), + [sym_this] = ACTIONS(2924), }, [1487] = { - [sym__expression] = STATE(2917), - [sym_conditional_expression] = STATE(3035), - [sym_assignment_expression] = STATE(3035), - [sym_pointer_expression] = STATE(2713), - [sym_unary_expression] = STATE(3035), - [sym_binary_expression] = STATE(3035), - [sym_update_expression] = STATE(3035), - [sym_cast_expression] = STATE(3035), - [sym_sizeof_expression] = STATE(3035), - [sym_subscript_expression] = STATE(2713), - [sym_call_expression] = STATE(2713), - [sym_field_expression] = STATE(2713), - [sym_compound_literal_expression] = STATE(3035), - [sym_parenthesized_expression] = STATE(2713), - [sym_char_literal] = STATE(3013), - [sym_concatenated_string] = STATE(3013), - [sym_string_literal] = STATE(1900), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5990), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3035), - [sym_raw_string_literal] = STATE(1900), - [sym_co_await_expression] = STATE(3035), - [sym_new_expression] = STATE(3035), - [sym_delete_expression] = STATE(3035), - [sym_requires_clause] = STATE(3035), - [sym_requires_expression] = STATE(3035), - [sym_lambda_expression] = STATE(3035), - [sym_lambda_capture_specifier] = STATE(4465), - [sym_fold_expression] = STATE(3035), - [sym_parameter_pack_expansion] = STATE(3035), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4584), - [sym_qualified_identifier] = STATE(2713), - [sym_qualified_type_identifier] = STATE(5990), - [sym_user_defined_literal] = STATE(3035), - [sym_identifier] = ACTIONS(1643), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3655), - [anon_sym_LPAREN2] = ACTIONS(1439), - [anon_sym_BANG] = ACTIONS(1441), - [anon_sym_TILDE] = ACTIONS(1441), - [anon_sym_DASH] = ACTIONS(1443), - [anon_sym_PLUS] = ACTIONS(1443), - [anon_sym_STAR] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(1445), - [anon_sym_COLON_COLON] = ACTIONS(1447), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1581), - [anon_sym_not] = ACTIONS(1443), - [anon_sym_compl] = ACTIONS(1443), - [anon_sym_DASH_DASH] = ACTIONS(1459), - [anon_sym_PLUS_PLUS] = ACTIONS(1459), - [anon_sym_sizeof] = ACTIONS(1461), - [sym_number_literal] = ACTIONS(1463), - [anon_sym_L_SQUOTE] = ACTIONS(1465), - [anon_sym_u_SQUOTE] = ACTIONS(1465), - [anon_sym_U_SQUOTE] = ACTIONS(1465), - [anon_sym_u8_SQUOTE] = ACTIONS(1465), - [anon_sym_SQUOTE] = ACTIONS(1465), - [anon_sym_L_DQUOTE] = ACTIONS(1467), - [anon_sym_u_DQUOTE] = ACTIONS(1467), - [anon_sym_U_DQUOTE] = ACTIONS(1467), - [anon_sym_u8_DQUOTE] = ACTIONS(1467), - [anon_sym_DQUOTE] = ACTIONS(1467), - [sym_true] = ACTIONS(1469), - [sym_false] = ACTIONS(1469), - [sym_null] = ACTIONS(1469), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1473), - [anon_sym_R_DQUOTE] = ACTIONS(1475), - [anon_sym_LR_DQUOTE] = ACTIONS(1475), - [anon_sym_uR_DQUOTE] = ACTIONS(1475), - [anon_sym_UR_DQUOTE] = ACTIONS(1475), - [anon_sym_u8R_DQUOTE] = ACTIONS(1475), - [anon_sym_co_await] = ACTIONS(1477), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_requires] = ACTIONS(1481), - [sym_this] = ACTIONS(1469), - [sym_nullptr] = ACTIONS(1469), + [sym_identifier] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3050), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, [1488] = { - [sym__expression] = STATE(3758), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2954), - [anon_sym_LPAREN2] = ACTIONS(984), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3658), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [sym_identifier] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3050), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, [1489] = { - [sym__expression] = STATE(2495), - [sym_conditional_expression] = STATE(2574), - [sym_assignment_expression] = STATE(2574), - [sym_pointer_expression] = STATE(2578), - [sym_unary_expression] = STATE(2574), - [sym_binary_expression] = STATE(2574), - [sym_update_expression] = STATE(2574), - [sym_cast_expression] = STATE(2574), - [sym_sizeof_expression] = STATE(2574), - [sym_subscript_expression] = STATE(2578), - [sym_call_expression] = STATE(2578), - [sym_field_expression] = STATE(2578), - [sym_compound_literal_expression] = STATE(2574), - [sym_parenthesized_expression] = STATE(2578), - [sym_char_literal] = STATE(2207), - [sym_concatenated_string] = STATE(2207), - [sym_string_literal] = STATE(1820), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5944), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(2574), - [sym_raw_string_literal] = STATE(1820), - [sym_co_await_expression] = STATE(2574), - [sym_new_expression] = STATE(2574), - [sym_delete_expression] = STATE(2574), - [sym_requires_clause] = STATE(2574), - [sym_requires_expression] = STATE(2574), - [sym_lambda_expression] = STATE(2574), - [sym_lambda_capture_specifier] = STATE(4479), - [sym_fold_expression] = STATE(2574), - [sym_parameter_pack_expansion] = STATE(2574), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2578), - [sym_qualified_type_identifier] = STATE(5944), - [sym_user_defined_literal] = STATE(2574), - [sym_identifier] = ACTIONS(1523), - [anon_sym_LPAREN2] = ACTIONS(1527), - [anon_sym_BANG] = ACTIONS(1531), - [anon_sym_TILDE] = ACTIONS(1531), - [anon_sym_DASH] = ACTIONS(1529), - [anon_sym_PLUS] = ACTIONS(1529), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1539), - [anon_sym_RBRACK] = ACTIONS(3660), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(1529), - [anon_sym_compl] = ACTIONS(1529), - [anon_sym_DASH_DASH] = ACTIONS(1543), - [anon_sym_PLUS_PLUS] = ACTIONS(1543), - [anon_sym_sizeof] = ACTIONS(1545), - [sym_number_literal] = ACTIONS(1547), - [anon_sym_L_SQUOTE] = ACTIONS(1549), - [anon_sym_u_SQUOTE] = ACTIONS(1549), - [anon_sym_U_SQUOTE] = ACTIONS(1549), - [anon_sym_u8_SQUOTE] = ACTIONS(1549), - [anon_sym_SQUOTE] = ACTIONS(1549), - [anon_sym_L_DQUOTE] = ACTIONS(1551), - [anon_sym_u_DQUOTE] = ACTIONS(1551), - [anon_sym_U_DQUOTE] = ACTIONS(1551), - [anon_sym_u8_DQUOTE] = ACTIONS(1551), - [anon_sym_DQUOTE] = ACTIONS(1551), - [sym_true] = ACTIONS(1553), - [sym_false] = ACTIONS(1553), - [sym_null] = ACTIONS(1553), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1557), - [anon_sym_R_DQUOTE] = ACTIONS(1559), - [anon_sym_LR_DQUOTE] = ACTIONS(1559), - [anon_sym_uR_DQUOTE] = ACTIONS(1559), - [anon_sym_UR_DQUOTE] = ACTIONS(1559), - [anon_sym_u8R_DQUOTE] = ACTIONS(1559), - [anon_sym_co_await] = ACTIONS(1561), - [anon_sym_new] = ACTIONS(1563), - [anon_sym_requires] = ACTIONS(1565), - [sym_this] = ACTIONS(1553), - [sym_nullptr] = ACTIONS(1553), + [sym_identifier] = ACTIONS(2948), + [anon_sym_LPAREN2] = ACTIONS(2950), + [anon_sym_BANG] = ACTIONS(2950), + [anon_sym_TILDE] = ACTIONS(2950), + [anon_sym_DASH] = ACTIONS(2948), + [anon_sym_PLUS] = ACTIONS(2948), + [anon_sym_STAR] = ACTIONS(2950), + [anon_sym_AMP] = ACTIONS(2950), + [anon_sym_SEMI] = ACTIONS(2950), + [anon_sym_typedef] = ACTIONS(2948), + [anon_sym_extern] = ACTIONS(2948), + [anon_sym___attribute__] = ACTIONS(2948), + [anon_sym_COLON_COLON] = ACTIONS(2950), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2950), + [anon_sym___declspec] = ACTIONS(2948), + [anon_sym_LBRACE] = ACTIONS(2950), + [anon_sym_LBRACK] = ACTIONS(2948), + [anon_sym_static] = ACTIONS(2948), + [anon_sym_register] = ACTIONS(2948), + [anon_sym_inline] = ACTIONS(2948), + [anon_sym_thread_local] = ACTIONS(2948), + [anon_sym_const] = ACTIONS(2948), + [anon_sym_constexpr] = ACTIONS(2948), + [anon_sym_volatile] = ACTIONS(2948), + [anon_sym_restrict] = ACTIONS(2948), + [anon_sym___restrict__] = ACTIONS(2948), + [anon_sym__Atomic] = ACTIONS(2948), + [anon_sym__Noreturn] = ACTIONS(2948), + [anon_sym_noreturn] = ACTIONS(2948), + [anon_sym_mutable] = ACTIONS(2948), + [anon_sym_constinit] = ACTIONS(2948), + [anon_sym_consteval] = ACTIONS(2948), + [anon_sym_signed] = ACTIONS(2948), + [anon_sym_unsigned] = ACTIONS(2948), + [anon_sym_long] = ACTIONS(2948), + [anon_sym_short] = ACTIONS(2948), + [sym_primitive_type] = ACTIONS(2948), + [anon_sym_enum] = ACTIONS(2948), + [anon_sym_class] = ACTIONS(2948), + [anon_sym_struct] = ACTIONS(2948), + [anon_sym_union] = ACTIONS(2948), + [anon_sym_if] = ACTIONS(2948), + [anon_sym_else] = ACTIONS(2948), + [anon_sym_switch] = ACTIONS(2948), + [anon_sym_while] = ACTIONS(2948), + [anon_sym_do] = ACTIONS(2948), + [anon_sym_for] = ACTIONS(2948), + [anon_sym_return] = ACTIONS(2948), + [anon_sym_break] = ACTIONS(2948), + [anon_sym_continue] = ACTIONS(2948), + [anon_sym_goto] = ACTIONS(2948), + [anon_sym_not] = ACTIONS(2948), + [anon_sym_compl] = ACTIONS(2948), + [anon_sym_DASH_DASH] = ACTIONS(2950), + [anon_sym_PLUS_PLUS] = ACTIONS(2950), + [anon_sym_sizeof] = ACTIONS(2948), + [anon_sym_offsetof] = ACTIONS(2948), + [anon_sym__Generic] = ACTIONS(2948), + [anon_sym_asm] = ACTIONS(2948), + [anon_sym___asm__] = ACTIONS(2948), + [sym_number_literal] = ACTIONS(2950), + [anon_sym_L_SQUOTE] = ACTIONS(2950), + [anon_sym_u_SQUOTE] = ACTIONS(2950), + [anon_sym_U_SQUOTE] = ACTIONS(2950), + [anon_sym_u8_SQUOTE] = ACTIONS(2950), + [anon_sym_SQUOTE] = ACTIONS(2950), + [anon_sym_L_DQUOTE] = ACTIONS(2950), + [anon_sym_u_DQUOTE] = ACTIONS(2950), + [anon_sym_U_DQUOTE] = ACTIONS(2950), + [anon_sym_u8_DQUOTE] = ACTIONS(2950), + [anon_sym_DQUOTE] = ACTIONS(2950), + [sym_true] = ACTIONS(2948), + [sym_false] = ACTIONS(2948), + [anon_sym_NULL] = ACTIONS(2948), + [anon_sym_nullptr] = ACTIONS(2948), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2948), + [anon_sym_decltype] = ACTIONS(2948), + [anon_sym_virtual] = ACTIONS(2948), + [anon_sym_typename] = ACTIONS(2948), + [anon_sym_template] = ACTIONS(2948), + [anon_sym_try] = ACTIONS(2948), + [anon_sym_delete] = ACTIONS(2948), + [anon_sym_throw] = ACTIONS(2948), + [anon_sym_co_return] = ACTIONS(2948), + [anon_sym_co_yield] = ACTIONS(2948), + [anon_sym_R_DQUOTE] = ACTIONS(2950), + [anon_sym_LR_DQUOTE] = ACTIONS(2950), + [anon_sym_uR_DQUOTE] = ACTIONS(2950), + [anon_sym_UR_DQUOTE] = ACTIONS(2950), + [anon_sym_u8R_DQUOTE] = ACTIONS(2950), + [anon_sym_co_await] = ACTIONS(2948), + [anon_sym_new] = ACTIONS(2948), + [anon_sym_requires] = ACTIONS(2948), + [sym_this] = ACTIONS(2948), }, [1490] = { - [sym__expression] = STATE(2495), - [sym_conditional_expression] = STATE(2574), - [sym_assignment_expression] = STATE(2574), - [sym_pointer_expression] = STATE(2578), - [sym_unary_expression] = STATE(2574), - [sym_binary_expression] = STATE(2574), - [sym_update_expression] = STATE(2574), - [sym_cast_expression] = STATE(2574), - [sym_sizeof_expression] = STATE(2574), - [sym_subscript_expression] = STATE(2578), - [sym_call_expression] = STATE(2578), - [sym_field_expression] = STATE(2578), - [sym_compound_literal_expression] = STATE(2574), - [sym_parenthesized_expression] = STATE(2578), - [sym_char_literal] = STATE(2207), - [sym_concatenated_string] = STATE(2207), - [sym_string_literal] = STATE(1820), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5944), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(2574), - [sym_raw_string_literal] = STATE(1820), - [sym_co_await_expression] = STATE(2574), - [sym_new_expression] = STATE(2574), - [sym_delete_expression] = STATE(2574), - [sym_requires_clause] = STATE(2574), - [sym_requires_expression] = STATE(2574), - [sym_lambda_expression] = STATE(2574), - [sym_lambda_capture_specifier] = STATE(4479), - [sym_fold_expression] = STATE(2574), - [sym_parameter_pack_expansion] = STATE(2574), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2578), - [sym_qualified_type_identifier] = STATE(5944), - [sym_user_defined_literal] = STATE(2574), - [sym_identifier] = ACTIONS(1523), - [anon_sym_LPAREN2] = ACTIONS(1527), - [anon_sym_BANG] = ACTIONS(1531), - [anon_sym_TILDE] = ACTIONS(1531), - [anon_sym_DASH] = ACTIONS(1529), - [anon_sym_PLUS] = ACTIONS(1529), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1539), - [anon_sym_RBRACK] = ACTIONS(3662), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(1529), - [anon_sym_compl] = ACTIONS(1529), - [anon_sym_DASH_DASH] = ACTIONS(1543), - [anon_sym_PLUS_PLUS] = ACTIONS(1543), - [anon_sym_sizeof] = ACTIONS(1545), - [sym_number_literal] = ACTIONS(1547), - [anon_sym_L_SQUOTE] = ACTIONS(1549), - [anon_sym_u_SQUOTE] = ACTIONS(1549), - [anon_sym_U_SQUOTE] = ACTIONS(1549), - [anon_sym_u8_SQUOTE] = ACTIONS(1549), - [anon_sym_SQUOTE] = ACTIONS(1549), - [anon_sym_L_DQUOTE] = ACTIONS(1551), - [anon_sym_u_DQUOTE] = ACTIONS(1551), - [anon_sym_U_DQUOTE] = ACTIONS(1551), - [anon_sym_u8_DQUOTE] = ACTIONS(1551), - [anon_sym_DQUOTE] = ACTIONS(1551), - [sym_true] = ACTIONS(1553), - [sym_false] = ACTIONS(1553), - [sym_null] = ACTIONS(1553), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1557), - [anon_sym_R_DQUOTE] = ACTIONS(1559), - [anon_sym_LR_DQUOTE] = ACTIONS(1559), - [anon_sym_uR_DQUOTE] = ACTIONS(1559), - [anon_sym_UR_DQUOTE] = ACTIONS(1559), - [anon_sym_u8R_DQUOTE] = ACTIONS(1559), - [anon_sym_co_await] = ACTIONS(1561), - [anon_sym_new] = ACTIONS(1563), - [anon_sym_requires] = ACTIONS(1565), - [sym_this] = ACTIONS(1553), - [sym_nullptr] = ACTIONS(1553), + [sym_identifier] = ACTIONS(2952), + [anon_sym_LPAREN2] = ACTIONS(2954), + [anon_sym_BANG] = ACTIONS(2954), + [anon_sym_TILDE] = ACTIONS(2954), + [anon_sym_DASH] = ACTIONS(2952), + [anon_sym_PLUS] = ACTIONS(2952), + [anon_sym_STAR] = ACTIONS(2954), + [anon_sym_AMP] = ACTIONS(2954), + [anon_sym_SEMI] = ACTIONS(2954), + [anon_sym_typedef] = ACTIONS(2952), + [anon_sym_extern] = ACTIONS(2952), + [anon_sym___attribute__] = ACTIONS(2952), + [anon_sym_COLON_COLON] = ACTIONS(2954), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2954), + [anon_sym___declspec] = ACTIONS(2952), + [anon_sym_LBRACE] = ACTIONS(2954), + [anon_sym_LBRACK] = ACTIONS(2952), + [anon_sym_static] = ACTIONS(2952), + [anon_sym_register] = ACTIONS(2952), + [anon_sym_inline] = ACTIONS(2952), + [anon_sym_thread_local] = ACTIONS(2952), + [anon_sym_const] = ACTIONS(2952), + [anon_sym_constexpr] = ACTIONS(2952), + [anon_sym_volatile] = ACTIONS(2952), + [anon_sym_restrict] = ACTIONS(2952), + [anon_sym___restrict__] = ACTIONS(2952), + [anon_sym__Atomic] = ACTIONS(2952), + [anon_sym__Noreturn] = ACTIONS(2952), + [anon_sym_noreturn] = ACTIONS(2952), + [anon_sym_mutable] = ACTIONS(2952), + [anon_sym_constinit] = ACTIONS(2952), + [anon_sym_consteval] = ACTIONS(2952), + [anon_sym_signed] = ACTIONS(2952), + [anon_sym_unsigned] = ACTIONS(2952), + [anon_sym_long] = ACTIONS(2952), + [anon_sym_short] = ACTIONS(2952), + [sym_primitive_type] = ACTIONS(2952), + [anon_sym_enum] = ACTIONS(2952), + [anon_sym_class] = ACTIONS(2952), + [anon_sym_struct] = ACTIONS(2952), + [anon_sym_union] = ACTIONS(2952), + [anon_sym_if] = ACTIONS(2952), + [anon_sym_else] = ACTIONS(2952), + [anon_sym_switch] = ACTIONS(2952), + [anon_sym_while] = ACTIONS(2952), + [anon_sym_do] = ACTIONS(2952), + [anon_sym_for] = ACTIONS(2952), + [anon_sym_return] = ACTIONS(2952), + [anon_sym_break] = ACTIONS(2952), + [anon_sym_continue] = ACTIONS(2952), + [anon_sym_goto] = ACTIONS(2952), + [anon_sym_not] = ACTIONS(2952), + [anon_sym_compl] = ACTIONS(2952), + [anon_sym_DASH_DASH] = ACTIONS(2954), + [anon_sym_PLUS_PLUS] = ACTIONS(2954), + [anon_sym_sizeof] = ACTIONS(2952), + [anon_sym_offsetof] = ACTIONS(2952), + [anon_sym__Generic] = ACTIONS(2952), + [anon_sym_asm] = ACTIONS(2952), + [anon_sym___asm__] = ACTIONS(2952), + [sym_number_literal] = ACTIONS(2954), + [anon_sym_L_SQUOTE] = ACTIONS(2954), + [anon_sym_u_SQUOTE] = ACTIONS(2954), + [anon_sym_U_SQUOTE] = ACTIONS(2954), + [anon_sym_u8_SQUOTE] = ACTIONS(2954), + [anon_sym_SQUOTE] = ACTIONS(2954), + [anon_sym_L_DQUOTE] = ACTIONS(2954), + [anon_sym_u_DQUOTE] = ACTIONS(2954), + [anon_sym_U_DQUOTE] = ACTIONS(2954), + [anon_sym_u8_DQUOTE] = ACTIONS(2954), + [anon_sym_DQUOTE] = ACTIONS(2954), + [sym_true] = ACTIONS(2952), + [sym_false] = ACTIONS(2952), + [anon_sym_NULL] = ACTIONS(2952), + [anon_sym_nullptr] = ACTIONS(2952), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2952), + [anon_sym_decltype] = ACTIONS(2952), + [anon_sym_virtual] = ACTIONS(2952), + [anon_sym_typename] = ACTIONS(2952), + [anon_sym_template] = ACTIONS(2952), + [anon_sym_try] = ACTIONS(2952), + [anon_sym_delete] = ACTIONS(2952), + [anon_sym_throw] = ACTIONS(2952), + [anon_sym_co_return] = ACTIONS(2952), + [anon_sym_co_yield] = ACTIONS(2952), + [anon_sym_R_DQUOTE] = ACTIONS(2954), + [anon_sym_LR_DQUOTE] = ACTIONS(2954), + [anon_sym_uR_DQUOTE] = ACTIONS(2954), + [anon_sym_UR_DQUOTE] = ACTIONS(2954), + [anon_sym_u8R_DQUOTE] = ACTIONS(2954), + [anon_sym_co_await] = ACTIONS(2952), + [anon_sym_new] = ACTIONS(2952), + [anon_sym_requires] = ACTIONS(2952), + [sym_this] = ACTIONS(2952), }, [1491] = { - [sym__expression] = STATE(2867), - [sym_conditional_expression] = STATE(2940), - [sym_assignment_expression] = STATE(2940), - [sym_pointer_expression] = STATE(2933), - [sym_unary_expression] = STATE(2940), - [sym_binary_expression] = STATE(2940), - [sym_update_expression] = STATE(2940), - [sym_cast_expression] = STATE(2940), - [sym_sizeof_expression] = STATE(2940), - [sym_subscript_expression] = STATE(2933), - [sym_call_expression] = STATE(2933), - [sym_field_expression] = STATE(2933), - [sym_compound_literal_expression] = STATE(2940), - [sym_parenthesized_expression] = STATE(2933), - [sym_char_literal] = STATE(2845), - [sym_concatenated_string] = STATE(2845), - [sym_string_literal] = STATE(1861), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5801), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(2940), - [sym_raw_string_literal] = STATE(1861), - [sym_co_await_expression] = STATE(2940), - [sym_new_expression] = STATE(2940), - [sym_delete_expression] = STATE(2940), - [sym_requires_clause] = STATE(2940), - [sym_requires_expression] = STATE(2940), - [sym_lambda_expression] = STATE(2940), - [sym_lambda_capture_specifier] = STATE(4464), - [sym_fold_expression] = STATE(2940), - [sym_parameter_pack_expansion] = STATE(2940), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4570), - [sym_qualified_identifier] = STATE(2933), - [sym_qualified_type_identifier] = STATE(5801), - [sym_user_defined_literal] = STATE(2940), - [sym_identifier] = ACTIONS(1605), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3664), - [anon_sym_LPAREN2] = ACTIONS(3666), - [anon_sym_BANG] = ACTIONS(1611), - [anon_sym_TILDE] = ACTIONS(1611), - [anon_sym_DASH] = ACTIONS(1609), - [anon_sym_PLUS] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(2416), - [anon_sym_AMP] = ACTIONS(2416), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1619), - [anon_sym_not] = ACTIONS(1609), - [anon_sym_compl] = ACTIONS(1609), - [anon_sym_DASH_DASH] = ACTIONS(1621), - [anon_sym_PLUS_PLUS] = ACTIONS(1621), - [anon_sym_sizeof] = ACTIONS(1623), - [sym_number_literal] = ACTIONS(1625), - [anon_sym_L_SQUOTE] = ACTIONS(1627), - [anon_sym_u_SQUOTE] = ACTIONS(1627), - [anon_sym_U_SQUOTE] = ACTIONS(1627), - [anon_sym_u8_SQUOTE] = ACTIONS(1627), - [anon_sym_SQUOTE] = ACTIONS(1627), - [anon_sym_L_DQUOTE] = ACTIONS(1629), - [anon_sym_u_DQUOTE] = ACTIONS(1629), - [anon_sym_U_DQUOTE] = ACTIONS(1629), - [anon_sym_u8_DQUOTE] = ACTIONS(1629), - [anon_sym_DQUOTE] = ACTIONS(1629), - [sym_true] = ACTIONS(1631), - [sym_false] = ACTIONS(1631), - [sym_null] = ACTIONS(1631), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1633), - [anon_sym_R_DQUOTE] = ACTIONS(1635), - [anon_sym_LR_DQUOTE] = ACTIONS(1635), - [anon_sym_uR_DQUOTE] = ACTIONS(1635), - [anon_sym_UR_DQUOTE] = ACTIONS(1635), - [anon_sym_u8R_DQUOTE] = ACTIONS(1635), - [anon_sym_co_await] = ACTIONS(1637), - [anon_sym_new] = ACTIONS(1639), - [anon_sym_requires] = ACTIONS(1641), - [sym_this] = ACTIONS(1631), - [sym_nullptr] = ACTIONS(1631), + [sym_identifier] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3050), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, [1492] = { - [sym__expression] = STATE(3611), - [sym_comma_expression] = STATE(6252), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2954), - [anon_sym_LPAREN2] = ACTIONS(984), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [sym_identifier] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3050), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, [1493] = { - [sym__expression] = STATE(3744), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2954), - [anon_sym_LPAREN2] = ACTIONS(984), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(3668), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [sym_identifier] = ACTIONS(2976), + [anon_sym_LPAREN2] = ACTIONS(2978), + [anon_sym_BANG] = ACTIONS(2978), + [anon_sym_TILDE] = ACTIONS(2978), + [anon_sym_DASH] = ACTIONS(2976), + [anon_sym_PLUS] = ACTIONS(2976), + [anon_sym_STAR] = ACTIONS(2978), + [anon_sym_AMP] = ACTIONS(2978), + [anon_sym_SEMI] = ACTIONS(2978), + [anon_sym_typedef] = ACTIONS(2976), + [anon_sym_extern] = ACTIONS(2976), + [anon_sym___attribute__] = ACTIONS(2976), + [anon_sym_COLON_COLON] = ACTIONS(2978), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2978), + [anon_sym___declspec] = ACTIONS(2976), + [anon_sym_LBRACE] = ACTIONS(2978), + [anon_sym_LBRACK] = ACTIONS(2976), + [anon_sym_static] = ACTIONS(2976), + [anon_sym_register] = ACTIONS(2976), + [anon_sym_inline] = ACTIONS(2976), + [anon_sym_thread_local] = ACTIONS(2976), + [anon_sym_const] = ACTIONS(2976), + [anon_sym_constexpr] = ACTIONS(2976), + [anon_sym_volatile] = ACTIONS(2976), + [anon_sym_restrict] = ACTIONS(2976), + [anon_sym___restrict__] = ACTIONS(2976), + [anon_sym__Atomic] = ACTIONS(2976), + [anon_sym__Noreturn] = ACTIONS(2976), + [anon_sym_noreturn] = ACTIONS(2976), + [anon_sym_mutable] = ACTIONS(2976), + [anon_sym_constinit] = ACTIONS(2976), + [anon_sym_consteval] = ACTIONS(2976), + [anon_sym_signed] = ACTIONS(2976), + [anon_sym_unsigned] = ACTIONS(2976), + [anon_sym_long] = ACTIONS(2976), + [anon_sym_short] = ACTIONS(2976), + [sym_primitive_type] = ACTIONS(2976), + [anon_sym_enum] = ACTIONS(2976), + [anon_sym_class] = ACTIONS(2976), + [anon_sym_struct] = ACTIONS(2976), + [anon_sym_union] = ACTIONS(2976), + [anon_sym_if] = ACTIONS(2976), + [anon_sym_else] = ACTIONS(2976), + [anon_sym_switch] = ACTIONS(2976), + [anon_sym_while] = ACTIONS(2976), + [anon_sym_do] = ACTIONS(2976), + [anon_sym_for] = ACTIONS(2976), + [anon_sym_return] = ACTIONS(2976), + [anon_sym_break] = ACTIONS(2976), + [anon_sym_continue] = ACTIONS(2976), + [anon_sym_goto] = ACTIONS(2976), + [anon_sym_not] = ACTIONS(2976), + [anon_sym_compl] = ACTIONS(2976), + [anon_sym_DASH_DASH] = ACTIONS(2978), + [anon_sym_PLUS_PLUS] = ACTIONS(2978), + [anon_sym_sizeof] = ACTIONS(2976), + [anon_sym_offsetof] = ACTIONS(2976), + [anon_sym__Generic] = ACTIONS(2976), + [anon_sym_asm] = ACTIONS(2976), + [anon_sym___asm__] = ACTIONS(2976), + [sym_number_literal] = ACTIONS(2978), + [anon_sym_L_SQUOTE] = ACTIONS(2978), + [anon_sym_u_SQUOTE] = ACTIONS(2978), + [anon_sym_U_SQUOTE] = ACTIONS(2978), + [anon_sym_u8_SQUOTE] = ACTIONS(2978), + [anon_sym_SQUOTE] = ACTIONS(2978), + [anon_sym_L_DQUOTE] = ACTIONS(2978), + [anon_sym_u_DQUOTE] = ACTIONS(2978), + [anon_sym_U_DQUOTE] = ACTIONS(2978), + [anon_sym_u8_DQUOTE] = ACTIONS(2978), + [anon_sym_DQUOTE] = ACTIONS(2978), + [sym_true] = ACTIONS(2976), + [sym_false] = ACTIONS(2976), + [anon_sym_NULL] = ACTIONS(2976), + [anon_sym_nullptr] = ACTIONS(2976), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2976), + [anon_sym_decltype] = ACTIONS(2976), + [anon_sym_virtual] = ACTIONS(2976), + [anon_sym_typename] = ACTIONS(2976), + [anon_sym_template] = ACTIONS(2976), + [anon_sym_try] = ACTIONS(2976), + [anon_sym_delete] = ACTIONS(2976), + [anon_sym_throw] = ACTIONS(2976), + [anon_sym_co_return] = ACTIONS(2976), + [anon_sym_co_yield] = ACTIONS(2976), + [anon_sym_R_DQUOTE] = ACTIONS(2978), + [anon_sym_LR_DQUOTE] = ACTIONS(2978), + [anon_sym_uR_DQUOTE] = ACTIONS(2978), + [anon_sym_UR_DQUOTE] = ACTIONS(2978), + [anon_sym_u8R_DQUOTE] = ACTIONS(2978), + [anon_sym_co_await] = ACTIONS(2976), + [anon_sym_new] = ACTIONS(2976), + [anon_sym_requires] = ACTIONS(2976), + [sym_this] = ACTIONS(2976), }, [1494] = { - [sym__expression] = STATE(2913), - [sym_conditional_expression] = STATE(3035), - [sym_assignment_expression] = STATE(3035), - [sym_pointer_expression] = STATE(2713), - [sym_unary_expression] = STATE(3035), - [sym_binary_expression] = STATE(3035), - [sym_update_expression] = STATE(3035), - [sym_cast_expression] = STATE(3035), - [sym_sizeof_expression] = STATE(3035), - [sym_subscript_expression] = STATE(2713), - [sym_call_expression] = STATE(2713), - [sym_field_expression] = STATE(2713), - [sym_compound_literal_expression] = STATE(3035), - [sym_parenthesized_expression] = STATE(2713), - [sym_char_literal] = STATE(3013), - [sym_concatenated_string] = STATE(3013), - [sym_string_literal] = STATE(1900), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5990), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3035), - [sym_raw_string_literal] = STATE(1900), - [sym_co_await_expression] = STATE(3035), - [sym_new_expression] = STATE(3035), - [sym_delete_expression] = STATE(3035), - [sym_requires_clause] = STATE(3035), - [sym_requires_expression] = STATE(3035), - [sym_lambda_expression] = STATE(3035), - [sym_lambda_capture_specifier] = STATE(4465), - [sym_fold_expression] = STATE(3035), - [sym_parameter_pack_expansion] = STATE(3035), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4584), - [sym_qualified_identifier] = STATE(2713), - [sym_qualified_type_identifier] = STATE(5990), - [sym_user_defined_literal] = STATE(3035), - [sym_identifier] = ACTIONS(1643), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3670), - [anon_sym_LPAREN2] = ACTIONS(1439), - [anon_sym_BANG] = ACTIONS(1441), - [anon_sym_TILDE] = ACTIONS(1441), - [anon_sym_DASH] = ACTIONS(1443), - [anon_sym_PLUS] = ACTIONS(1443), - [anon_sym_STAR] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(1445), - [anon_sym_COLON_COLON] = ACTIONS(1447), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1581), - [anon_sym_not] = ACTIONS(1443), - [anon_sym_compl] = ACTIONS(1443), - [anon_sym_DASH_DASH] = ACTIONS(1459), - [anon_sym_PLUS_PLUS] = ACTIONS(1459), - [anon_sym_sizeof] = ACTIONS(1461), - [sym_number_literal] = ACTIONS(1463), - [anon_sym_L_SQUOTE] = ACTIONS(1465), - [anon_sym_u_SQUOTE] = ACTIONS(1465), - [anon_sym_U_SQUOTE] = ACTIONS(1465), - [anon_sym_u8_SQUOTE] = ACTIONS(1465), - [anon_sym_SQUOTE] = ACTIONS(1465), - [anon_sym_L_DQUOTE] = ACTIONS(1467), - [anon_sym_u_DQUOTE] = ACTIONS(1467), - [anon_sym_U_DQUOTE] = ACTIONS(1467), - [anon_sym_u8_DQUOTE] = ACTIONS(1467), - [anon_sym_DQUOTE] = ACTIONS(1467), - [sym_true] = ACTIONS(1469), - [sym_false] = ACTIONS(1469), - [sym_null] = ACTIONS(1469), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1473), - [anon_sym_R_DQUOTE] = ACTIONS(1475), - [anon_sym_LR_DQUOTE] = ACTIONS(1475), - [anon_sym_uR_DQUOTE] = ACTIONS(1475), - [anon_sym_UR_DQUOTE] = ACTIONS(1475), - [anon_sym_u8R_DQUOTE] = ACTIONS(1475), - [anon_sym_co_await] = ACTIONS(1477), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_requires] = ACTIONS(1481), - [sym_this] = ACTIONS(1469), - [sym_nullptr] = ACTIONS(1469), + [sym_identifier] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3050), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, [1495] = { - [sym__expression] = STATE(3743), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2954), - [anon_sym_LPAREN2] = ACTIONS(984), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(3673), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [sym_identifier] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3050), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, [1496] = { - [sym__expression] = STATE(3591), - [sym_conditional_expression] = STATE(3855), - [sym_assignment_expression] = STATE(3855), - [sym_pointer_expression] = STATE(2954), - [sym_unary_expression] = STATE(3855), - [sym_binary_expression] = STATE(3855), - [sym_update_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_subscript_expression] = STATE(2954), - [sym_call_expression] = STATE(2954), - [sym_field_expression] = STATE(2954), - [sym_compound_literal_expression] = STATE(3855), - [sym_parenthesized_expression] = STATE(2954), - [sym_char_literal] = STATE(3557), - [sym_concatenated_string] = STATE(3557), - [sym_string_literal] = STATE(2955), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5844), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3855), - [sym_raw_string_literal] = STATE(2955), - [sym_co_await_expression] = STATE(3855), - [sym_new_expression] = STATE(3855), - [sym_delete_expression] = STATE(3855), - [sym_requires_clause] = STATE(3855), - [sym_requires_expression] = STATE(3855), - [sym_lambda_expression] = STATE(3855), - [sym_lambda_capture_specifier] = STATE(4501), - [sym_fold_expression] = STATE(3855), - [sym_parameter_pack_expansion] = STATE(3855), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4570), - [sym_qualified_identifier] = STATE(2954), - [sym_qualified_type_identifier] = STATE(5844), - [sym_user_defined_literal] = STATE(3855), - [sym_identifier] = ACTIONS(3023), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3675), - [anon_sym_LPAREN2] = ACTIONS(3677), - [anon_sym_BANG] = ACTIONS(2412), - [anon_sym_TILDE] = ACTIONS(2412), - [anon_sym_DASH] = ACTIONS(2414), - [anon_sym_PLUS] = ACTIONS(2414), - [anon_sym_STAR] = ACTIONS(2416), - [anon_sym_AMP] = ACTIONS(2416), - [anon_sym_COLON_COLON] = ACTIONS(2418), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1619), - [anon_sym_not] = ACTIONS(2414), - [anon_sym_compl] = ACTIONS(2414), - [anon_sym_DASH_DASH] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(2432), - [anon_sym_sizeof] = ACTIONS(2434), - [sym_number_literal] = ACTIONS(2436), - [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_L_DQUOTE] = ACTIONS(2440), - [anon_sym_u_DQUOTE] = ACTIONS(2440), - [anon_sym_U_DQUOTE] = ACTIONS(2440), - [anon_sym_u8_DQUOTE] = ACTIONS(2440), - [anon_sym_DQUOTE] = ACTIONS(2440), - [sym_true] = ACTIONS(2442), - [sym_false] = ACTIONS(2442), - [sym_null] = ACTIONS(2442), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(2452), - [anon_sym_R_DQUOTE] = ACTIONS(2454), - [anon_sym_LR_DQUOTE] = ACTIONS(2454), - [anon_sym_uR_DQUOTE] = ACTIONS(2454), - [anon_sym_UR_DQUOTE] = ACTIONS(2454), - [anon_sym_u8R_DQUOTE] = ACTIONS(2454), - [anon_sym_co_await] = ACTIONS(2456), - [anon_sym_new] = ACTIONS(2458), - [anon_sym_requires] = ACTIONS(2460), - [sym_this] = ACTIONS(2442), - [sym_nullptr] = ACTIONS(2442), + [sym_identifier] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3030), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, [1497] = { - [sym__expression] = STATE(2991), - [sym_conditional_expression] = STATE(3035), - [sym_assignment_expression] = STATE(3035), - [sym_pointer_expression] = STATE(2713), - [sym_unary_expression] = STATE(3035), - [sym_binary_expression] = STATE(3035), - [sym_update_expression] = STATE(3035), - [sym_cast_expression] = STATE(3035), - [sym_sizeof_expression] = STATE(3035), - [sym_subscript_expression] = STATE(2713), - [sym_call_expression] = STATE(2713), - [sym_field_expression] = STATE(2713), - [sym_compound_literal_expression] = STATE(3035), - [sym_parenthesized_expression] = STATE(2713), - [sym_char_literal] = STATE(3013), - [sym_concatenated_string] = STATE(3013), - [sym_string_literal] = STATE(1900), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5990), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3035), - [sym_raw_string_literal] = STATE(1900), - [sym_co_await_expression] = STATE(3035), - [sym_new_expression] = STATE(3035), - [sym_delete_expression] = STATE(3035), - [sym_requires_clause] = STATE(3035), - [sym_requires_expression] = STATE(3035), - [sym_lambda_expression] = STATE(3035), - [sym_lambda_capture_specifier] = STATE(4465), - [sym_fold_expression] = STATE(3035), - [sym_parameter_pack_expansion] = STATE(3035), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4584), - [sym_qualified_identifier] = STATE(2713), - [sym_qualified_type_identifier] = STATE(5990), - [sym_user_defined_literal] = STATE(3035), - [sym_identifier] = ACTIONS(1643), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3679), - [anon_sym_LPAREN2] = ACTIONS(3681), - [anon_sym_BANG] = ACTIONS(1441), - [anon_sym_TILDE] = ACTIONS(1441), - [anon_sym_DASH] = ACTIONS(1443), - [anon_sym_PLUS] = ACTIONS(1443), - [anon_sym_STAR] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(1445), - [anon_sym_COLON_COLON] = ACTIONS(1447), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1581), - [anon_sym_not] = ACTIONS(1443), - [anon_sym_compl] = ACTIONS(1443), - [anon_sym_DASH_DASH] = ACTIONS(1459), - [anon_sym_PLUS_PLUS] = ACTIONS(1459), - [anon_sym_sizeof] = ACTIONS(1461), - [sym_number_literal] = ACTIONS(1463), - [anon_sym_L_SQUOTE] = ACTIONS(1465), - [anon_sym_u_SQUOTE] = ACTIONS(1465), - [anon_sym_U_SQUOTE] = ACTIONS(1465), - [anon_sym_u8_SQUOTE] = ACTIONS(1465), - [anon_sym_SQUOTE] = ACTIONS(1465), - [anon_sym_L_DQUOTE] = ACTIONS(1467), - [anon_sym_u_DQUOTE] = ACTIONS(1467), - [anon_sym_U_DQUOTE] = ACTIONS(1467), - [anon_sym_u8_DQUOTE] = ACTIONS(1467), - [anon_sym_DQUOTE] = ACTIONS(1467), - [sym_true] = ACTIONS(1469), - [sym_false] = ACTIONS(1469), - [sym_null] = ACTIONS(1469), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1473), - [anon_sym_R_DQUOTE] = ACTIONS(1475), - [anon_sym_LR_DQUOTE] = ACTIONS(1475), - [anon_sym_uR_DQUOTE] = ACTIONS(1475), - [anon_sym_UR_DQUOTE] = ACTIONS(1475), - [anon_sym_u8R_DQUOTE] = ACTIONS(1475), - [anon_sym_co_await] = ACTIONS(1477), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_requires] = ACTIONS(1481), - [sym_this] = ACTIONS(1469), - [sym_nullptr] = ACTIONS(1469), + [sym_identifier] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3030), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, [1498] = { - [sym__expression] = STATE(3829), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2954), - [anon_sym_LPAREN2] = ACTIONS(984), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3683), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [sym_identifier] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3050), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, [1499] = { - [sym__expression] = STATE(3702), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2954), - [anon_sym_LPAREN2] = ACTIONS(984), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(3685), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [sym_identifier] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3050), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, [1500] = { - [sym__expression] = STATE(3697), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2954), - [anon_sym_LPAREN2] = ACTIONS(984), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(3687), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [sym_identifier] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3030), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, [1501] = { - [sym__expression] = STATE(3698), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2954), - [anon_sym_LPAREN2] = ACTIONS(984), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(3689), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [sym_identifier] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3050), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, [1502] = { - [sym__expression] = STATE(2495), - [sym_conditional_expression] = STATE(2574), - [sym_assignment_expression] = STATE(2574), - [sym_pointer_expression] = STATE(2578), - [sym_unary_expression] = STATE(2574), - [sym_binary_expression] = STATE(2574), - [sym_update_expression] = STATE(2574), - [sym_cast_expression] = STATE(2574), - [sym_sizeof_expression] = STATE(2574), - [sym_subscript_expression] = STATE(2578), - [sym_call_expression] = STATE(2578), - [sym_field_expression] = STATE(2578), - [sym_compound_literal_expression] = STATE(2574), - [sym_parenthesized_expression] = STATE(2578), - [sym_char_literal] = STATE(2207), - [sym_concatenated_string] = STATE(2207), - [sym_string_literal] = STATE(1820), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5944), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(2574), - [sym_raw_string_literal] = STATE(1820), - [sym_co_await_expression] = STATE(2574), - [sym_new_expression] = STATE(2574), - [sym_delete_expression] = STATE(2574), - [sym_requires_clause] = STATE(2574), - [sym_requires_expression] = STATE(2574), - [sym_lambda_expression] = STATE(2574), - [sym_lambda_capture_specifier] = STATE(4479), - [sym_fold_expression] = STATE(2574), - [sym_parameter_pack_expansion] = STATE(2574), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2578), - [sym_qualified_type_identifier] = STATE(5944), - [sym_user_defined_literal] = STATE(2574), - [sym_identifier] = ACTIONS(1523), - [anon_sym_LPAREN2] = ACTIONS(1527), - [anon_sym_BANG] = ACTIONS(1531), - [anon_sym_TILDE] = ACTIONS(1531), - [anon_sym_DASH] = ACTIONS(1529), - [anon_sym_PLUS] = ACTIONS(1529), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1539), - [anon_sym_RBRACK] = ACTIONS(3691), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(1529), - [anon_sym_compl] = ACTIONS(1529), - [anon_sym_DASH_DASH] = ACTIONS(1543), - [anon_sym_PLUS_PLUS] = ACTIONS(1543), - [anon_sym_sizeof] = ACTIONS(1545), - [sym_number_literal] = ACTIONS(1547), - [anon_sym_L_SQUOTE] = ACTIONS(1549), - [anon_sym_u_SQUOTE] = ACTIONS(1549), - [anon_sym_U_SQUOTE] = ACTIONS(1549), - [anon_sym_u8_SQUOTE] = ACTIONS(1549), - [anon_sym_SQUOTE] = ACTIONS(1549), - [anon_sym_L_DQUOTE] = ACTIONS(1551), - [anon_sym_u_DQUOTE] = ACTIONS(1551), - [anon_sym_U_DQUOTE] = ACTIONS(1551), - [anon_sym_u8_DQUOTE] = ACTIONS(1551), - [anon_sym_DQUOTE] = ACTIONS(1551), - [sym_true] = ACTIONS(1553), - [sym_false] = ACTIONS(1553), - [sym_null] = ACTIONS(1553), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1557), - [anon_sym_R_DQUOTE] = ACTIONS(1559), - [anon_sym_LR_DQUOTE] = ACTIONS(1559), - [anon_sym_uR_DQUOTE] = ACTIONS(1559), - [anon_sym_UR_DQUOTE] = ACTIONS(1559), - [anon_sym_u8R_DQUOTE] = ACTIONS(1559), - [anon_sym_co_await] = ACTIONS(1561), - [anon_sym_new] = ACTIONS(1563), - [anon_sym_requires] = ACTIONS(1565), - [sym_this] = ACTIONS(1553), - [sym_nullptr] = ACTIONS(1553), + [sym_identifier] = ACTIONS(2928), + [anon_sym_LPAREN2] = ACTIONS(2930), + [anon_sym_BANG] = ACTIONS(2930), + [anon_sym_TILDE] = ACTIONS(2930), + [anon_sym_DASH] = ACTIONS(2928), + [anon_sym_PLUS] = ACTIONS(2928), + [anon_sym_STAR] = ACTIONS(2930), + [anon_sym_AMP] = ACTIONS(2930), + [anon_sym_SEMI] = ACTIONS(2930), + [anon_sym_typedef] = ACTIONS(2928), + [anon_sym_extern] = ACTIONS(2928), + [anon_sym___attribute__] = ACTIONS(2928), + [anon_sym_COLON_COLON] = ACTIONS(2930), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2930), + [anon_sym___declspec] = ACTIONS(2928), + [anon_sym_LBRACE] = ACTIONS(2930), + [anon_sym_LBRACK] = ACTIONS(2928), + [anon_sym_static] = ACTIONS(2928), + [anon_sym_register] = ACTIONS(2928), + [anon_sym_inline] = ACTIONS(2928), + [anon_sym_thread_local] = ACTIONS(2928), + [anon_sym_const] = ACTIONS(2928), + [anon_sym_constexpr] = ACTIONS(2928), + [anon_sym_volatile] = ACTIONS(2928), + [anon_sym_restrict] = ACTIONS(2928), + [anon_sym___restrict__] = ACTIONS(2928), + [anon_sym__Atomic] = ACTIONS(2928), + [anon_sym__Noreturn] = ACTIONS(2928), + [anon_sym_noreturn] = ACTIONS(2928), + [anon_sym_mutable] = ACTIONS(2928), + [anon_sym_constinit] = ACTIONS(2928), + [anon_sym_consteval] = ACTIONS(2928), + [anon_sym_signed] = ACTIONS(2928), + [anon_sym_unsigned] = ACTIONS(2928), + [anon_sym_long] = ACTIONS(2928), + [anon_sym_short] = ACTIONS(2928), + [sym_primitive_type] = ACTIONS(2928), + [anon_sym_enum] = ACTIONS(2928), + [anon_sym_class] = ACTIONS(2928), + [anon_sym_struct] = ACTIONS(2928), + [anon_sym_union] = ACTIONS(2928), + [anon_sym_if] = ACTIONS(2928), + [anon_sym_else] = ACTIONS(2928), + [anon_sym_switch] = ACTIONS(2928), + [anon_sym_while] = ACTIONS(2928), + [anon_sym_do] = ACTIONS(2928), + [anon_sym_for] = ACTIONS(2928), + [anon_sym_return] = ACTIONS(2928), + [anon_sym_break] = ACTIONS(2928), + [anon_sym_continue] = ACTIONS(2928), + [anon_sym_goto] = ACTIONS(2928), + [anon_sym_not] = ACTIONS(2928), + [anon_sym_compl] = ACTIONS(2928), + [anon_sym_DASH_DASH] = ACTIONS(2930), + [anon_sym_PLUS_PLUS] = ACTIONS(2930), + [anon_sym_sizeof] = ACTIONS(2928), + [anon_sym_offsetof] = ACTIONS(2928), + [anon_sym__Generic] = ACTIONS(2928), + [anon_sym_asm] = ACTIONS(2928), + [anon_sym___asm__] = ACTIONS(2928), + [sym_number_literal] = ACTIONS(2930), + [anon_sym_L_SQUOTE] = ACTIONS(2930), + [anon_sym_u_SQUOTE] = ACTIONS(2930), + [anon_sym_U_SQUOTE] = ACTIONS(2930), + [anon_sym_u8_SQUOTE] = ACTIONS(2930), + [anon_sym_SQUOTE] = ACTIONS(2930), + [anon_sym_L_DQUOTE] = ACTIONS(2930), + [anon_sym_u_DQUOTE] = ACTIONS(2930), + [anon_sym_U_DQUOTE] = ACTIONS(2930), + [anon_sym_u8_DQUOTE] = ACTIONS(2930), + [anon_sym_DQUOTE] = ACTIONS(2930), + [sym_true] = ACTIONS(2928), + [sym_false] = ACTIONS(2928), + [anon_sym_NULL] = ACTIONS(2928), + [anon_sym_nullptr] = ACTIONS(2928), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2928), + [anon_sym_decltype] = ACTIONS(2928), + [anon_sym_virtual] = ACTIONS(2928), + [anon_sym_typename] = ACTIONS(2928), + [anon_sym_template] = ACTIONS(2928), + [anon_sym_try] = ACTIONS(2928), + [anon_sym_delete] = ACTIONS(2928), + [anon_sym_throw] = ACTIONS(2928), + [anon_sym_co_return] = ACTIONS(2928), + [anon_sym_co_yield] = ACTIONS(2928), + [anon_sym_R_DQUOTE] = ACTIONS(2930), + [anon_sym_LR_DQUOTE] = ACTIONS(2930), + [anon_sym_uR_DQUOTE] = ACTIONS(2930), + [anon_sym_UR_DQUOTE] = ACTIONS(2930), + [anon_sym_u8R_DQUOTE] = ACTIONS(2930), + [anon_sym_co_await] = ACTIONS(2928), + [anon_sym_new] = ACTIONS(2928), + [anon_sym_requires] = ACTIONS(2928), + [sym_this] = ACTIONS(2928), }, [1503] = { - [sym__expression] = STATE(2913), - [sym_conditional_expression] = STATE(3035), - [sym_assignment_expression] = STATE(3035), - [sym_pointer_expression] = STATE(2713), - [sym_unary_expression] = STATE(3035), - [sym_binary_expression] = STATE(3035), - [sym_update_expression] = STATE(3035), - [sym_cast_expression] = STATE(3035), - [sym_sizeof_expression] = STATE(3035), - [sym_subscript_expression] = STATE(2713), - [sym_call_expression] = STATE(2713), - [sym_field_expression] = STATE(2713), - [sym_compound_literal_expression] = STATE(3035), - [sym_parenthesized_expression] = STATE(2713), - [sym_char_literal] = STATE(3013), - [sym_concatenated_string] = STATE(3013), - [sym_string_literal] = STATE(1900), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5990), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3035), - [sym_raw_string_literal] = STATE(1900), - [sym_co_await_expression] = STATE(3035), - [sym_new_expression] = STATE(3035), - [sym_delete_expression] = STATE(3035), - [sym_requires_clause] = STATE(3035), - [sym_requires_expression] = STATE(3035), - [sym_lambda_expression] = STATE(3035), - [sym_lambda_capture_specifier] = STATE(4465), - [sym_fold_expression] = STATE(3035), - [sym_parameter_pack_expansion] = STATE(3035), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4584), - [sym_qualified_identifier] = STATE(2713), - [sym_qualified_type_identifier] = STATE(5990), - [sym_user_defined_literal] = STATE(3035), - [sym_identifier] = ACTIONS(1643), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3693), - [anon_sym_LPAREN2] = ACTIONS(1439), - [anon_sym_BANG] = ACTIONS(1441), - [anon_sym_TILDE] = ACTIONS(1441), - [anon_sym_DASH] = ACTIONS(1443), - [anon_sym_PLUS] = ACTIONS(1443), - [anon_sym_STAR] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(1445), - [anon_sym_COLON_COLON] = ACTIONS(1447), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1581), - [anon_sym_not] = ACTIONS(1443), - [anon_sym_compl] = ACTIONS(1443), - [anon_sym_DASH_DASH] = ACTIONS(1459), - [anon_sym_PLUS_PLUS] = ACTIONS(1459), - [anon_sym_sizeof] = ACTIONS(1461), - [sym_number_literal] = ACTIONS(1463), - [anon_sym_L_SQUOTE] = ACTIONS(1465), - [anon_sym_u_SQUOTE] = ACTIONS(1465), - [anon_sym_U_SQUOTE] = ACTIONS(1465), - [anon_sym_u8_SQUOTE] = ACTIONS(1465), - [anon_sym_SQUOTE] = ACTIONS(1465), - [anon_sym_L_DQUOTE] = ACTIONS(1467), - [anon_sym_u_DQUOTE] = ACTIONS(1467), - [anon_sym_U_DQUOTE] = ACTIONS(1467), - [anon_sym_u8_DQUOTE] = ACTIONS(1467), - [anon_sym_DQUOTE] = ACTIONS(1467), - [sym_true] = ACTIONS(1469), - [sym_false] = ACTIONS(1469), - [sym_null] = ACTIONS(1469), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1473), - [anon_sym_R_DQUOTE] = ACTIONS(1475), - [anon_sym_LR_DQUOTE] = ACTIONS(1475), - [anon_sym_uR_DQUOTE] = ACTIONS(1475), - [anon_sym_UR_DQUOTE] = ACTIONS(1475), - [anon_sym_u8R_DQUOTE] = ACTIONS(1475), - [anon_sym_co_await] = ACTIONS(1477), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_requires] = ACTIONS(1481), - [sym_this] = ACTIONS(1469), - [sym_nullptr] = ACTIONS(1469), + [sym_identifier] = ACTIONS(3024), + [anon_sym_LPAREN2] = ACTIONS(3026), + [anon_sym_BANG] = ACTIONS(3026), + [anon_sym_TILDE] = ACTIONS(3026), + [anon_sym_DASH] = ACTIONS(3024), + [anon_sym_PLUS] = ACTIONS(3024), + [anon_sym_STAR] = ACTIONS(3026), + [anon_sym_AMP] = ACTIONS(3026), + [anon_sym_SEMI] = ACTIONS(3026), + [anon_sym_typedef] = ACTIONS(3024), + [anon_sym_extern] = ACTIONS(3024), + [anon_sym___attribute__] = ACTIONS(3024), + [anon_sym_COLON_COLON] = ACTIONS(3026), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3026), + [anon_sym___declspec] = ACTIONS(3024), + [anon_sym_LBRACE] = ACTIONS(3026), + [anon_sym_LBRACK] = ACTIONS(3024), + [anon_sym_static] = ACTIONS(3024), + [anon_sym_register] = ACTIONS(3024), + [anon_sym_inline] = ACTIONS(3024), + [anon_sym_thread_local] = ACTIONS(3024), + [anon_sym_const] = ACTIONS(3024), + [anon_sym_constexpr] = ACTIONS(3024), + [anon_sym_volatile] = ACTIONS(3024), + [anon_sym_restrict] = ACTIONS(3024), + [anon_sym___restrict__] = ACTIONS(3024), + [anon_sym__Atomic] = ACTIONS(3024), + [anon_sym__Noreturn] = ACTIONS(3024), + [anon_sym_noreturn] = ACTIONS(3024), + [anon_sym_mutable] = ACTIONS(3024), + [anon_sym_constinit] = ACTIONS(3024), + [anon_sym_consteval] = ACTIONS(3024), + [anon_sym_signed] = ACTIONS(3024), + [anon_sym_unsigned] = ACTIONS(3024), + [anon_sym_long] = ACTIONS(3024), + [anon_sym_short] = ACTIONS(3024), + [sym_primitive_type] = ACTIONS(3024), + [anon_sym_enum] = ACTIONS(3024), + [anon_sym_class] = ACTIONS(3024), + [anon_sym_struct] = ACTIONS(3024), + [anon_sym_union] = ACTIONS(3024), + [anon_sym_if] = ACTIONS(3024), + [anon_sym_else] = ACTIONS(3024), + [anon_sym_switch] = ACTIONS(3024), + [anon_sym_while] = ACTIONS(3024), + [anon_sym_do] = ACTIONS(3024), + [anon_sym_for] = ACTIONS(3024), + [anon_sym_return] = ACTIONS(3024), + [anon_sym_break] = ACTIONS(3024), + [anon_sym_continue] = ACTIONS(3024), + [anon_sym_goto] = ACTIONS(3024), + [anon_sym_not] = ACTIONS(3024), + [anon_sym_compl] = ACTIONS(3024), + [anon_sym_DASH_DASH] = ACTIONS(3026), + [anon_sym_PLUS_PLUS] = ACTIONS(3026), + [anon_sym_sizeof] = ACTIONS(3024), + [anon_sym_offsetof] = ACTIONS(3024), + [anon_sym__Generic] = ACTIONS(3024), + [anon_sym_asm] = ACTIONS(3024), + [anon_sym___asm__] = ACTIONS(3024), + [sym_number_literal] = ACTIONS(3026), + [anon_sym_L_SQUOTE] = ACTIONS(3026), + [anon_sym_u_SQUOTE] = ACTIONS(3026), + [anon_sym_U_SQUOTE] = ACTIONS(3026), + [anon_sym_u8_SQUOTE] = ACTIONS(3026), + [anon_sym_SQUOTE] = ACTIONS(3026), + [anon_sym_L_DQUOTE] = ACTIONS(3026), + [anon_sym_u_DQUOTE] = ACTIONS(3026), + [anon_sym_U_DQUOTE] = ACTIONS(3026), + [anon_sym_u8_DQUOTE] = ACTIONS(3026), + [anon_sym_DQUOTE] = ACTIONS(3026), + [sym_true] = ACTIONS(3024), + [sym_false] = ACTIONS(3024), + [anon_sym_NULL] = ACTIONS(3024), + [anon_sym_nullptr] = ACTIONS(3024), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3024), + [anon_sym_decltype] = ACTIONS(3024), + [anon_sym_virtual] = ACTIONS(3024), + [anon_sym_typename] = ACTIONS(3024), + [anon_sym_template] = ACTIONS(3024), + [anon_sym_try] = ACTIONS(3024), + [anon_sym_delete] = ACTIONS(3024), + [anon_sym_throw] = ACTIONS(3024), + [anon_sym_co_return] = ACTIONS(3024), + [anon_sym_co_yield] = ACTIONS(3024), + [anon_sym_R_DQUOTE] = ACTIONS(3026), + [anon_sym_LR_DQUOTE] = ACTIONS(3026), + [anon_sym_uR_DQUOTE] = ACTIONS(3026), + [anon_sym_UR_DQUOTE] = ACTIONS(3026), + [anon_sym_u8R_DQUOTE] = ACTIONS(3026), + [anon_sym_co_await] = ACTIONS(3024), + [anon_sym_new] = ACTIONS(3024), + [anon_sym_requires] = ACTIONS(3024), + [sym_this] = ACTIONS(3024), }, [1504] = { - [sym__expression] = STATE(2495), - [sym_conditional_expression] = STATE(2574), - [sym_assignment_expression] = STATE(2574), - [sym_pointer_expression] = STATE(2578), - [sym_unary_expression] = STATE(2574), - [sym_binary_expression] = STATE(2574), - [sym_update_expression] = STATE(2574), - [sym_cast_expression] = STATE(2574), - [sym_sizeof_expression] = STATE(2574), - [sym_subscript_expression] = STATE(2578), - [sym_call_expression] = STATE(2578), - [sym_field_expression] = STATE(2578), - [sym_compound_literal_expression] = STATE(2574), - [sym_parenthesized_expression] = STATE(2578), - [sym_char_literal] = STATE(2207), - [sym_concatenated_string] = STATE(2207), - [sym_string_literal] = STATE(1820), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5944), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(2574), - [sym_raw_string_literal] = STATE(1820), - [sym_co_await_expression] = STATE(2574), - [sym_new_expression] = STATE(2574), - [sym_delete_expression] = STATE(2574), - [sym_requires_clause] = STATE(2574), - [sym_requires_expression] = STATE(2574), - [sym_lambda_expression] = STATE(2574), - [sym_lambda_capture_specifier] = STATE(4479), - [sym_fold_expression] = STATE(2574), - [sym_parameter_pack_expansion] = STATE(2574), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2578), - [sym_qualified_type_identifier] = STATE(5944), - [sym_user_defined_literal] = STATE(2574), - [sym_identifier] = ACTIONS(1523), - [anon_sym_LPAREN2] = ACTIONS(1527), - [anon_sym_BANG] = ACTIONS(1531), - [anon_sym_TILDE] = ACTIONS(1531), - [anon_sym_DASH] = ACTIONS(1529), - [anon_sym_PLUS] = ACTIONS(1529), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1539), - [anon_sym_RBRACK] = ACTIONS(3696), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(1529), - [anon_sym_compl] = ACTIONS(1529), - [anon_sym_DASH_DASH] = ACTIONS(1543), - [anon_sym_PLUS_PLUS] = ACTIONS(1543), - [anon_sym_sizeof] = ACTIONS(1545), - [sym_number_literal] = ACTIONS(1547), - [anon_sym_L_SQUOTE] = ACTIONS(1549), - [anon_sym_u_SQUOTE] = ACTIONS(1549), - [anon_sym_U_SQUOTE] = ACTIONS(1549), - [anon_sym_u8_SQUOTE] = ACTIONS(1549), - [anon_sym_SQUOTE] = ACTIONS(1549), - [anon_sym_L_DQUOTE] = ACTIONS(1551), - [anon_sym_u_DQUOTE] = ACTIONS(1551), - [anon_sym_U_DQUOTE] = ACTIONS(1551), - [anon_sym_u8_DQUOTE] = ACTIONS(1551), - [anon_sym_DQUOTE] = ACTIONS(1551), - [sym_true] = ACTIONS(1553), - [sym_false] = ACTIONS(1553), - [sym_null] = ACTIONS(1553), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1557), - [anon_sym_R_DQUOTE] = ACTIONS(1559), - [anon_sym_LR_DQUOTE] = ACTIONS(1559), - [anon_sym_uR_DQUOTE] = ACTIONS(1559), - [anon_sym_UR_DQUOTE] = ACTIONS(1559), - [anon_sym_u8R_DQUOTE] = ACTIONS(1559), - [anon_sym_co_await] = ACTIONS(1561), - [anon_sym_new] = ACTIONS(1563), - [anon_sym_requires] = ACTIONS(1565), - [sym_this] = ACTIONS(1553), - [sym_nullptr] = ACTIONS(1553), + [sym_identifier] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3050), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, [1505] = { - [sym__expression] = STATE(2911), - [sym_conditional_expression] = STATE(3035), - [sym_assignment_expression] = STATE(3035), - [sym_pointer_expression] = STATE(2713), - [sym_unary_expression] = STATE(3035), - [sym_binary_expression] = STATE(3035), - [sym_update_expression] = STATE(3035), - [sym_cast_expression] = STATE(3035), - [sym_sizeof_expression] = STATE(3035), - [sym_subscript_expression] = STATE(2713), - [sym_call_expression] = STATE(2713), - [sym_field_expression] = STATE(2713), - [sym_compound_literal_expression] = STATE(3035), - [sym_parenthesized_expression] = STATE(2713), - [sym_char_literal] = STATE(3013), - [sym_concatenated_string] = STATE(3013), - [sym_string_literal] = STATE(1900), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5990), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3035), - [sym_raw_string_literal] = STATE(1900), - [sym_co_await_expression] = STATE(3035), - [sym_new_expression] = STATE(3035), - [sym_delete_expression] = STATE(3035), - [sym_requires_clause] = STATE(3035), - [sym_requires_expression] = STATE(3035), - [sym_lambda_expression] = STATE(3035), - [sym_lambda_capture_specifier] = STATE(4465), - [sym_fold_expression] = STATE(3035), - [sym_parameter_pack_expansion] = STATE(3035), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4584), - [sym_qualified_identifier] = STATE(2713), - [sym_qualified_type_identifier] = STATE(5990), - [sym_user_defined_literal] = STATE(3035), - [sym_identifier] = ACTIONS(1643), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3698), - [anon_sym_LPAREN2] = ACTIONS(1439), - [anon_sym_BANG] = ACTIONS(1441), - [anon_sym_TILDE] = ACTIONS(1441), - [anon_sym_DASH] = ACTIONS(1443), - [anon_sym_PLUS] = ACTIONS(1443), - [anon_sym_STAR] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(1445), - [anon_sym_COLON_COLON] = ACTIONS(1447), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1581), - [anon_sym_not] = ACTIONS(1443), - [anon_sym_compl] = ACTIONS(1443), - [anon_sym_DASH_DASH] = ACTIONS(1459), - [anon_sym_PLUS_PLUS] = ACTIONS(1459), - [anon_sym_sizeof] = ACTIONS(1461), - [sym_number_literal] = ACTIONS(1463), - [anon_sym_L_SQUOTE] = ACTIONS(1465), - [anon_sym_u_SQUOTE] = ACTIONS(1465), - [anon_sym_U_SQUOTE] = ACTIONS(1465), - [anon_sym_u8_SQUOTE] = ACTIONS(1465), - [anon_sym_SQUOTE] = ACTIONS(1465), - [anon_sym_L_DQUOTE] = ACTIONS(1467), - [anon_sym_u_DQUOTE] = ACTIONS(1467), - [anon_sym_U_DQUOTE] = ACTIONS(1467), - [anon_sym_u8_DQUOTE] = ACTIONS(1467), - [anon_sym_DQUOTE] = ACTIONS(1467), - [sym_true] = ACTIONS(1469), - [sym_false] = ACTIONS(1469), - [sym_null] = ACTIONS(1469), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1473), - [anon_sym_R_DQUOTE] = ACTIONS(1475), - [anon_sym_LR_DQUOTE] = ACTIONS(1475), - [anon_sym_uR_DQUOTE] = ACTIONS(1475), - [anon_sym_UR_DQUOTE] = ACTIONS(1475), - [anon_sym_u8R_DQUOTE] = ACTIONS(1475), - [anon_sym_co_await] = ACTIONS(1477), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_requires] = ACTIONS(1481), - [sym_this] = ACTIONS(1469), - [sym_nullptr] = ACTIONS(1469), + [sym_identifier] = ACTIONS(3109), + [anon_sym_LPAREN2] = ACTIONS(3111), + [anon_sym_BANG] = ACTIONS(3111), + [anon_sym_TILDE] = ACTIONS(3111), + [anon_sym_DASH] = ACTIONS(3109), + [anon_sym_PLUS] = ACTIONS(3109), + [anon_sym_STAR] = ACTIONS(3111), + [anon_sym_AMP] = ACTIONS(3111), + [anon_sym_SEMI] = ACTIONS(3111), + [anon_sym_typedef] = ACTIONS(3109), + [anon_sym_extern] = ACTIONS(3109), + [anon_sym___attribute__] = ACTIONS(3109), + [anon_sym_COLON_COLON] = ACTIONS(3111), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3111), + [anon_sym___declspec] = ACTIONS(3109), + [anon_sym_LBRACE] = ACTIONS(3111), + [anon_sym_LBRACK] = ACTIONS(3109), + [anon_sym_static] = ACTIONS(3109), + [anon_sym_register] = ACTIONS(3109), + [anon_sym_inline] = ACTIONS(3109), + [anon_sym_thread_local] = ACTIONS(3109), + [anon_sym_const] = ACTIONS(3109), + [anon_sym_constexpr] = ACTIONS(3109), + [anon_sym_volatile] = ACTIONS(3109), + [anon_sym_restrict] = ACTIONS(3109), + [anon_sym___restrict__] = ACTIONS(3109), + [anon_sym__Atomic] = ACTIONS(3109), + [anon_sym__Noreturn] = ACTIONS(3109), + [anon_sym_noreturn] = ACTIONS(3109), + [anon_sym_mutable] = ACTIONS(3109), + [anon_sym_constinit] = ACTIONS(3109), + [anon_sym_consteval] = ACTIONS(3109), + [anon_sym_signed] = ACTIONS(3109), + [anon_sym_unsigned] = ACTIONS(3109), + [anon_sym_long] = ACTIONS(3109), + [anon_sym_short] = ACTIONS(3109), + [sym_primitive_type] = ACTIONS(3109), + [anon_sym_enum] = ACTIONS(3109), + [anon_sym_class] = ACTIONS(3109), + [anon_sym_struct] = ACTIONS(3109), + [anon_sym_union] = ACTIONS(3109), + [anon_sym_if] = ACTIONS(3109), + [anon_sym_else] = ACTIONS(3109), + [anon_sym_switch] = ACTIONS(3109), + [anon_sym_while] = ACTIONS(3109), + [anon_sym_do] = ACTIONS(3109), + [anon_sym_for] = ACTIONS(3109), + [anon_sym_return] = ACTIONS(3109), + [anon_sym_break] = ACTIONS(3109), + [anon_sym_continue] = ACTIONS(3109), + [anon_sym_goto] = ACTIONS(3109), + [anon_sym_not] = ACTIONS(3109), + [anon_sym_compl] = ACTIONS(3109), + [anon_sym_DASH_DASH] = ACTIONS(3111), + [anon_sym_PLUS_PLUS] = ACTIONS(3111), + [anon_sym_sizeof] = ACTIONS(3109), + [anon_sym_offsetof] = ACTIONS(3109), + [anon_sym__Generic] = ACTIONS(3109), + [anon_sym_asm] = ACTIONS(3109), + [anon_sym___asm__] = ACTIONS(3109), + [sym_number_literal] = ACTIONS(3111), + [anon_sym_L_SQUOTE] = ACTIONS(3111), + [anon_sym_u_SQUOTE] = ACTIONS(3111), + [anon_sym_U_SQUOTE] = ACTIONS(3111), + [anon_sym_u8_SQUOTE] = ACTIONS(3111), + [anon_sym_SQUOTE] = ACTIONS(3111), + [anon_sym_L_DQUOTE] = ACTIONS(3111), + [anon_sym_u_DQUOTE] = ACTIONS(3111), + [anon_sym_U_DQUOTE] = ACTIONS(3111), + [anon_sym_u8_DQUOTE] = ACTIONS(3111), + [anon_sym_DQUOTE] = ACTIONS(3111), + [sym_true] = ACTIONS(3109), + [sym_false] = ACTIONS(3109), + [anon_sym_NULL] = ACTIONS(3109), + [anon_sym_nullptr] = ACTIONS(3109), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3109), + [anon_sym_decltype] = ACTIONS(3109), + [anon_sym_virtual] = ACTIONS(3109), + [anon_sym_typename] = ACTIONS(3109), + [anon_sym_template] = ACTIONS(3109), + [anon_sym_try] = ACTIONS(3109), + [anon_sym_delete] = ACTIONS(3109), + [anon_sym_throw] = ACTIONS(3109), + [anon_sym_co_return] = ACTIONS(3109), + [anon_sym_co_yield] = ACTIONS(3109), + [anon_sym_R_DQUOTE] = ACTIONS(3111), + [anon_sym_LR_DQUOTE] = ACTIONS(3111), + [anon_sym_uR_DQUOTE] = ACTIONS(3111), + [anon_sym_UR_DQUOTE] = ACTIONS(3111), + [anon_sym_u8R_DQUOTE] = ACTIONS(3111), + [anon_sym_co_await] = ACTIONS(3109), + [anon_sym_new] = ACTIONS(3109), + [anon_sym_requires] = ACTIONS(3109), + [sym_this] = ACTIONS(3109), }, [1506] = { - [sym__expression] = STATE(3397), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2954), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3586), - [anon_sym_LPAREN2] = ACTIONS(3701), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [sym_identifier] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3030), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, [1507] = { - [sym__expression] = STATE(2911), - [sym_conditional_expression] = STATE(3035), - [sym_assignment_expression] = STATE(3035), - [sym_pointer_expression] = STATE(2713), - [sym_unary_expression] = STATE(3035), - [sym_binary_expression] = STATE(3035), - [sym_update_expression] = STATE(3035), - [sym_cast_expression] = STATE(3035), - [sym_sizeof_expression] = STATE(3035), - [sym_subscript_expression] = STATE(2713), - [sym_call_expression] = STATE(2713), - [sym_field_expression] = STATE(2713), - [sym_compound_literal_expression] = STATE(3035), - [sym_parenthesized_expression] = STATE(2713), - [sym_char_literal] = STATE(3013), - [sym_concatenated_string] = STATE(3013), - [sym_string_literal] = STATE(1900), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5990), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3035), - [sym_raw_string_literal] = STATE(1900), - [sym_co_await_expression] = STATE(3035), - [sym_new_expression] = STATE(3035), - [sym_delete_expression] = STATE(3035), - [sym_requires_clause] = STATE(3035), - [sym_requires_expression] = STATE(3035), - [sym_lambda_expression] = STATE(3035), - [sym_lambda_capture_specifier] = STATE(4465), - [sym_fold_expression] = STATE(3035), - [sym_parameter_pack_expansion] = STATE(3035), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4584), - [sym_qualified_identifier] = STATE(2713), - [sym_qualified_type_identifier] = STATE(5990), - [sym_user_defined_literal] = STATE(3035), - [sym_identifier] = ACTIONS(1643), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3703), - [anon_sym_LPAREN2] = ACTIONS(1439), - [anon_sym_BANG] = ACTIONS(1441), - [anon_sym_TILDE] = ACTIONS(1441), - [anon_sym_DASH] = ACTIONS(1443), - [anon_sym_PLUS] = ACTIONS(1443), - [anon_sym_STAR] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(1445), - [anon_sym_COLON_COLON] = ACTIONS(1447), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1581), - [anon_sym_not] = ACTIONS(1443), - [anon_sym_compl] = ACTIONS(1443), - [anon_sym_DASH_DASH] = ACTIONS(1459), - [anon_sym_PLUS_PLUS] = ACTIONS(1459), - [anon_sym_sizeof] = ACTIONS(1461), - [sym_number_literal] = ACTIONS(1463), - [anon_sym_L_SQUOTE] = ACTIONS(1465), - [anon_sym_u_SQUOTE] = ACTIONS(1465), - [anon_sym_U_SQUOTE] = ACTIONS(1465), - [anon_sym_u8_SQUOTE] = ACTIONS(1465), - [anon_sym_SQUOTE] = ACTIONS(1465), - [anon_sym_L_DQUOTE] = ACTIONS(1467), - [anon_sym_u_DQUOTE] = ACTIONS(1467), - [anon_sym_U_DQUOTE] = ACTIONS(1467), - [anon_sym_u8_DQUOTE] = ACTIONS(1467), - [anon_sym_DQUOTE] = ACTIONS(1467), - [sym_true] = ACTIONS(1469), - [sym_false] = ACTIONS(1469), - [sym_null] = ACTIONS(1469), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1473), - [anon_sym_R_DQUOTE] = ACTIONS(1475), - [anon_sym_LR_DQUOTE] = ACTIONS(1475), - [anon_sym_uR_DQUOTE] = ACTIONS(1475), - [anon_sym_UR_DQUOTE] = ACTIONS(1475), - [anon_sym_u8R_DQUOTE] = ACTIONS(1475), - [anon_sym_co_await] = ACTIONS(1477), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_requires] = ACTIONS(1481), - [sym_this] = ACTIONS(1469), - [sym_nullptr] = ACTIONS(1469), + [sym_identifier] = ACTIONS(2920), + [anon_sym_LPAREN2] = ACTIONS(2922), + [anon_sym_BANG] = ACTIONS(2922), + [anon_sym_TILDE] = ACTIONS(2922), + [anon_sym_DASH] = ACTIONS(2920), + [anon_sym_PLUS] = ACTIONS(2920), + [anon_sym_STAR] = ACTIONS(2922), + [anon_sym_AMP] = ACTIONS(2922), + [anon_sym_SEMI] = ACTIONS(2922), + [anon_sym_typedef] = ACTIONS(2920), + [anon_sym_extern] = ACTIONS(2920), + [anon_sym___attribute__] = ACTIONS(2920), + [anon_sym_COLON_COLON] = ACTIONS(2922), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2922), + [anon_sym___declspec] = ACTIONS(2920), + [anon_sym_LBRACE] = ACTIONS(2922), + [anon_sym_LBRACK] = ACTIONS(2920), + [anon_sym_static] = ACTIONS(2920), + [anon_sym_register] = ACTIONS(2920), + [anon_sym_inline] = ACTIONS(2920), + [anon_sym_thread_local] = ACTIONS(2920), + [anon_sym_const] = ACTIONS(2920), + [anon_sym_constexpr] = ACTIONS(2920), + [anon_sym_volatile] = ACTIONS(2920), + [anon_sym_restrict] = ACTIONS(2920), + [anon_sym___restrict__] = ACTIONS(2920), + [anon_sym__Atomic] = ACTIONS(2920), + [anon_sym__Noreturn] = ACTIONS(2920), + [anon_sym_noreturn] = ACTIONS(2920), + [anon_sym_mutable] = ACTIONS(2920), + [anon_sym_constinit] = ACTIONS(2920), + [anon_sym_consteval] = ACTIONS(2920), + [anon_sym_signed] = ACTIONS(2920), + [anon_sym_unsigned] = ACTIONS(2920), + [anon_sym_long] = ACTIONS(2920), + [anon_sym_short] = ACTIONS(2920), + [sym_primitive_type] = ACTIONS(2920), + [anon_sym_enum] = ACTIONS(2920), + [anon_sym_class] = ACTIONS(2920), + [anon_sym_struct] = ACTIONS(2920), + [anon_sym_union] = ACTIONS(2920), + [anon_sym_if] = ACTIONS(2920), + [anon_sym_else] = ACTIONS(2920), + [anon_sym_switch] = ACTIONS(2920), + [anon_sym_while] = ACTIONS(2920), + [anon_sym_do] = ACTIONS(2920), + [anon_sym_for] = ACTIONS(2920), + [anon_sym_return] = ACTIONS(2920), + [anon_sym_break] = ACTIONS(2920), + [anon_sym_continue] = ACTIONS(2920), + [anon_sym_goto] = ACTIONS(2920), + [anon_sym_not] = ACTIONS(2920), + [anon_sym_compl] = ACTIONS(2920), + [anon_sym_DASH_DASH] = ACTIONS(2922), + [anon_sym_PLUS_PLUS] = ACTIONS(2922), + [anon_sym_sizeof] = ACTIONS(2920), + [anon_sym_offsetof] = ACTIONS(2920), + [anon_sym__Generic] = ACTIONS(2920), + [anon_sym_asm] = ACTIONS(2920), + [anon_sym___asm__] = ACTIONS(2920), + [sym_number_literal] = ACTIONS(2922), + [anon_sym_L_SQUOTE] = ACTIONS(2922), + [anon_sym_u_SQUOTE] = ACTIONS(2922), + [anon_sym_U_SQUOTE] = ACTIONS(2922), + [anon_sym_u8_SQUOTE] = ACTIONS(2922), + [anon_sym_SQUOTE] = ACTIONS(2922), + [anon_sym_L_DQUOTE] = ACTIONS(2922), + [anon_sym_u_DQUOTE] = ACTIONS(2922), + [anon_sym_U_DQUOTE] = ACTIONS(2922), + [anon_sym_u8_DQUOTE] = ACTIONS(2922), + [anon_sym_DQUOTE] = ACTIONS(2922), + [sym_true] = ACTIONS(2920), + [sym_false] = ACTIONS(2920), + [anon_sym_NULL] = ACTIONS(2920), + [anon_sym_nullptr] = ACTIONS(2920), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2920), + [anon_sym_decltype] = ACTIONS(2920), + [anon_sym_virtual] = ACTIONS(2920), + [anon_sym_typename] = ACTIONS(2920), + [anon_sym_template] = ACTIONS(2920), + [anon_sym_try] = ACTIONS(2920), + [anon_sym_delete] = ACTIONS(2920), + [anon_sym_throw] = ACTIONS(2920), + [anon_sym_co_return] = ACTIONS(2920), + [anon_sym_co_yield] = ACTIONS(2920), + [anon_sym_R_DQUOTE] = ACTIONS(2922), + [anon_sym_LR_DQUOTE] = ACTIONS(2922), + [anon_sym_uR_DQUOTE] = ACTIONS(2922), + [anon_sym_UR_DQUOTE] = ACTIONS(2922), + [anon_sym_u8R_DQUOTE] = ACTIONS(2922), + [anon_sym_co_await] = ACTIONS(2920), + [anon_sym_new] = ACTIONS(2920), + [anon_sym_requires] = ACTIONS(2920), + [sym_this] = ACTIONS(2920), }, [1508] = { - [sym__expression] = STATE(2912), - [sym_conditional_expression] = STATE(3035), - [sym_assignment_expression] = STATE(3035), - [sym_pointer_expression] = STATE(2713), - [sym_unary_expression] = STATE(3035), - [sym_binary_expression] = STATE(3035), - [sym_update_expression] = STATE(3035), - [sym_cast_expression] = STATE(3035), - [sym_sizeof_expression] = STATE(3035), - [sym_subscript_expression] = STATE(2713), - [sym_call_expression] = STATE(2713), - [sym_field_expression] = STATE(2713), - [sym_compound_literal_expression] = STATE(3035), - [sym_parenthesized_expression] = STATE(2713), - [sym_char_literal] = STATE(3013), - [sym_concatenated_string] = STATE(3013), - [sym_string_literal] = STATE(1900), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5990), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3035), - [sym_raw_string_literal] = STATE(1900), - [sym_co_await_expression] = STATE(3035), - [sym_new_expression] = STATE(3035), - [sym_delete_expression] = STATE(3035), - [sym_requires_clause] = STATE(3035), - [sym_requires_expression] = STATE(3035), - [sym_lambda_expression] = STATE(3035), - [sym_lambda_capture_specifier] = STATE(4465), - [sym_fold_expression] = STATE(3035), - [sym_parameter_pack_expansion] = STATE(3035), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4584), - [sym_qualified_identifier] = STATE(2713), - [sym_qualified_type_identifier] = STATE(5990), - [sym_user_defined_literal] = STATE(3035), - [sym_identifier] = ACTIONS(1643), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3706), - [anon_sym_LPAREN2] = ACTIONS(1439), - [anon_sym_BANG] = ACTIONS(1441), - [anon_sym_TILDE] = ACTIONS(1441), - [anon_sym_DASH] = ACTIONS(1443), - [anon_sym_PLUS] = ACTIONS(1443), - [anon_sym_STAR] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(1445), - [anon_sym_COLON_COLON] = ACTIONS(1447), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1581), - [anon_sym_not] = ACTIONS(1443), - [anon_sym_compl] = ACTIONS(1443), - [anon_sym_DASH_DASH] = ACTIONS(1459), - [anon_sym_PLUS_PLUS] = ACTIONS(1459), - [anon_sym_sizeof] = ACTIONS(1461), - [sym_number_literal] = ACTIONS(1463), - [anon_sym_L_SQUOTE] = ACTIONS(1465), - [anon_sym_u_SQUOTE] = ACTIONS(1465), - [anon_sym_U_SQUOTE] = ACTIONS(1465), - [anon_sym_u8_SQUOTE] = ACTIONS(1465), - [anon_sym_SQUOTE] = ACTIONS(1465), - [anon_sym_L_DQUOTE] = ACTIONS(1467), - [anon_sym_u_DQUOTE] = ACTIONS(1467), - [anon_sym_U_DQUOTE] = ACTIONS(1467), - [anon_sym_u8_DQUOTE] = ACTIONS(1467), - [anon_sym_DQUOTE] = ACTIONS(1467), - [sym_true] = ACTIONS(1469), - [sym_false] = ACTIONS(1469), - [sym_null] = ACTIONS(1469), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1473), - [anon_sym_R_DQUOTE] = ACTIONS(1475), - [anon_sym_LR_DQUOTE] = ACTIONS(1475), - [anon_sym_uR_DQUOTE] = ACTIONS(1475), - [anon_sym_UR_DQUOTE] = ACTIONS(1475), - [anon_sym_u8R_DQUOTE] = ACTIONS(1475), - [anon_sym_co_await] = ACTIONS(1477), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_requires] = ACTIONS(1481), - [sym_this] = ACTIONS(1469), - [sym_nullptr] = ACTIONS(1469), + [sym_identifier] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3050), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, [1509] = { - [sym__expression] = STATE(3732), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2954), - [anon_sym_LPAREN2] = ACTIONS(984), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3709), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [sym_identifier] = ACTIONS(3016), + [anon_sym_LPAREN2] = ACTIONS(3018), + [anon_sym_BANG] = ACTIONS(3018), + [anon_sym_TILDE] = ACTIONS(3018), + [anon_sym_DASH] = ACTIONS(3016), + [anon_sym_PLUS] = ACTIONS(3016), + [anon_sym_STAR] = ACTIONS(3018), + [anon_sym_AMP] = ACTIONS(3018), + [anon_sym_SEMI] = ACTIONS(3018), + [anon_sym_typedef] = ACTIONS(3016), + [anon_sym_extern] = ACTIONS(3016), + [anon_sym___attribute__] = ACTIONS(3016), + [anon_sym_COLON_COLON] = ACTIONS(3018), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3018), + [anon_sym___declspec] = ACTIONS(3016), + [anon_sym_LBRACE] = ACTIONS(3018), + [anon_sym_LBRACK] = ACTIONS(3016), + [anon_sym_static] = ACTIONS(3016), + [anon_sym_register] = ACTIONS(3016), + [anon_sym_inline] = ACTIONS(3016), + [anon_sym_thread_local] = ACTIONS(3016), + [anon_sym_const] = ACTIONS(3016), + [anon_sym_constexpr] = ACTIONS(3016), + [anon_sym_volatile] = ACTIONS(3016), + [anon_sym_restrict] = ACTIONS(3016), + [anon_sym___restrict__] = ACTIONS(3016), + [anon_sym__Atomic] = ACTIONS(3016), + [anon_sym__Noreturn] = ACTIONS(3016), + [anon_sym_noreturn] = ACTIONS(3016), + [anon_sym_mutable] = ACTIONS(3016), + [anon_sym_constinit] = ACTIONS(3016), + [anon_sym_consteval] = ACTIONS(3016), + [anon_sym_signed] = ACTIONS(3016), + [anon_sym_unsigned] = ACTIONS(3016), + [anon_sym_long] = ACTIONS(3016), + [anon_sym_short] = ACTIONS(3016), + [sym_primitive_type] = ACTIONS(3016), + [anon_sym_enum] = ACTIONS(3016), + [anon_sym_class] = ACTIONS(3016), + [anon_sym_struct] = ACTIONS(3016), + [anon_sym_union] = ACTIONS(3016), + [anon_sym_if] = ACTIONS(3016), + [anon_sym_else] = ACTIONS(3016), + [anon_sym_switch] = ACTIONS(3016), + [anon_sym_while] = ACTIONS(3016), + [anon_sym_do] = ACTIONS(3016), + [anon_sym_for] = ACTIONS(3016), + [anon_sym_return] = ACTIONS(3016), + [anon_sym_break] = ACTIONS(3016), + [anon_sym_continue] = ACTIONS(3016), + [anon_sym_goto] = ACTIONS(3016), + [anon_sym_not] = ACTIONS(3016), + [anon_sym_compl] = ACTIONS(3016), + [anon_sym_DASH_DASH] = ACTIONS(3018), + [anon_sym_PLUS_PLUS] = ACTIONS(3018), + [anon_sym_sizeof] = ACTIONS(3016), + [anon_sym_offsetof] = ACTIONS(3016), + [anon_sym__Generic] = ACTIONS(3016), + [anon_sym_asm] = ACTIONS(3016), + [anon_sym___asm__] = ACTIONS(3016), + [sym_number_literal] = ACTIONS(3018), + [anon_sym_L_SQUOTE] = ACTIONS(3018), + [anon_sym_u_SQUOTE] = ACTIONS(3018), + [anon_sym_U_SQUOTE] = ACTIONS(3018), + [anon_sym_u8_SQUOTE] = ACTIONS(3018), + [anon_sym_SQUOTE] = ACTIONS(3018), + [anon_sym_L_DQUOTE] = ACTIONS(3018), + [anon_sym_u_DQUOTE] = ACTIONS(3018), + [anon_sym_U_DQUOTE] = ACTIONS(3018), + [anon_sym_u8_DQUOTE] = ACTIONS(3018), + [anon_sym_DQUOTE] = ACTIONS(3018), + [sym_true] = ACTIONS(3016), + [sym_false] = ACTIONS(3016), + [anon_sym_NULL] = ACTIONS(3016), + [anon_sym_nullptr] = ACTIONS(3016), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3016), + [anon_sym_decltype] = ACTIONS(3016), + [anon_sym_virtual] = ACTIONS(3016), + [anon_sym_typename] = ACTIONS(3016), + [anon_sym_template] = ACTIONS(3016), + [anon_sym_try] = ACTIONS(3016), + [anon_sym_delete] = ACTIONS(3016), + [anon_sym_throw] = ACTIONS(3016), + [anon_sym_co_return] = ACTIONS(3016), + [anon_sym_co_yield] = ACTIONS(3016), + [anon_sym_R_DQUOTE] = ACTIONS(3018), + [anon_sym_LR_DQUOTE] = ACTIONS(3018), + [anon_sym_uR_DQUOTE] = ACTIONS(3018), + [anon_sym_UR_DQUOTE] = ACTIONS(3018), + [anon_sym_u8R_DQUOTE] = ACTIONS(3018), + [anon_sym_co_await] = ACTIONS(3016), + [anon_sym_new] = ACTIONS(3016), + [anon_sym_requires] = ACTIONS(3016), + [sym_this] = ACTIONS(3016), }, [1510] = { - [sym__expression] = STATE(2912), - [sym_conditional_expression] = STATE(3035), - [sym_assignment_expression] = STATE(3035), - [sym_pointer_expression] = STATE(2713), - [sym_unary_expression] = STATE(3035), - [sym_binary_expression] = STATE(3035), - [sym_update_expression] = STATE(3035), - [sym_cast_expression] = STATE(3035), - [sym_sizeof_expression] = STATE(3035), - [sym_subscript_expression] = STATE(2713), - [sym_call_expression] = STATE(2713), - [sym_field_expression] = STATE(2713), - [sym_compound_literal_expression] = STATE(3035), - [sym_parenthesized_expression] = STATE(2713), - [sym_char_literal] = STATE(3013), - [sym_concatenated_string] = STATE(3013), - [sym_string_literal] = STATE(1900), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5990), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3035), - [sym_raw_string_literal] = STATE(1900), - [sym_co_await_expression] = STATE(3035), - [sym_new_expression] = STATE(3035), - [sym_delete_expression] = STATE(3035), - [sym_requires_clause] = STATE(3035), - [sym_requires_expression] = STATE(3035), - [sym_lambda_expression] = STATE(3035), - [sym_lambda_capture_specifier] = STATE(4465), - [sym_fold_expression] = STATE(3035), - [sym_parameter_pack_expansion] = STATE(3035), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4584), - [sym_qualified_identifier] = STATE(2713), - [sym_qualified_type_identifier] = STATE(5990), - [sym_user_defined_literal] = STATE(3035), - [sym_identifier] = ACTIONS(1643), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3711), - [anon_sym_LPAREN2] = ACTIONS(1439), - [anon_sym_BANG] = ACTIONS(1441), - [anon_sym_TILDE] = ACTIONS(1441), - [anon_sym_DASH] = ACTIONS(1443), - [anon_sym_PLUS] = ACTIONS(1443), - [anon_sym_STAR] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(1445), - [anon_sym_COLON_COLON] = ACTIONS(1447), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1581), - [anon_sym_not] = ACTIONS(1443), - [anon_sym_compl] = ACTIONS(1443), - [anon_sym_DASH_DASH] = ACTIONS(1459), - [anon_sym_PLUS_PLUS] = ACTIONS(1459), - [anon_sym_sizeof] = ACTIONS(1461), - [sym_number_literal] = ACTIONS(1463), - [anon_sym_L_SQUOTE] = ACTIONS(1465), - [anon_sym_u_SQUOTE] = ACTIONS(1465), - [anon_sym_U_SQUOTE] = ACTIONS(1465), - [anon_sym_u8_SQUOTE] = ACTIONS(1465), - [anon_sym_SQUOTE] = ACTIONS(1465), - [anon_sym_L_DQUOTE] = ACTIONS(1467), - [anon_sym_u_DQUOTE] = ACTIONS(1467), - [anon_sym_U_DQUOTE] = ACTIONS(1467), - [anon_sym_u8_DQUOTE] = ACTIONS(1467), - [anon_sym_DQUOTE] = ACTIONS(1467), - [sym_true] = ACTIONS(1469), - [sym_false] = ACTIONS(1469), - [sym_null] = ACTIONS(1469), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1473), - [anon_sym_R_DQUOTE] = ACTIONS(1475), - [anon_sym_LR_DQUOTE] = ACTIONS(1475), - [anon_sym_uR_DQUOTE] = ACTIONS(1475), - [anon_sym_UR_DQUOTE] = ACTIONS(1475), - [anon_sym_u8R_DQUOTE] = ACTIONS(1475), - [anon_sym_co_await] = ACTIONS(1477), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_requires] = ACTIONS(1481), - [sym_this] = ACTIONS(1469), - [sym_nullptr] = ACTIONS(1469), + [sym_identifier] = ACTIONS(3012), + [anon_sym_LPAREN2] = ACTIONS(3014), + [anon_sym_BANG] = ACTIONS(3014), + [anon_sym_TILDE] = ACTIONS(3014), + [anon_sym_DASH] = ACTIONS(3012), + [anon_sym_PLUS] = ACTIONS(3012), + [anon_sym_STAR] = ACTIONS(3014), + [anon_sym_AMP] = ACTIONS(3014), + [anon_sym_SEMI] = ACTIONS(3014), + [anon_sym_typedef] = ACTIONS(3012), + [anon_sym_extern] = ACTIONS(3012), + [anon_sym___attribute__] = ACTIONS(3012), + [anon_sym_COLON_COLON] = ACTIONS(3014), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3014), + [anon_sym___declspec] = ACTIONS(3012), + [anon_sym_LBRACE] = ACTIONS(3014), + [anon_sym_LBRACK] = ACTIONS(3012), + [anon_sym_static] = ACTIONS(3012), + [anon_sym_register] = ACTIONS(3012), + [anon_sym_inline] = ACTIONS(3012), + [anon_sym_thread_local] = ACTIONS(3012), + [anon_sym_const] = ACTIONS(3012), + [anon_sym_constexpr] = ACTIONS(3012), + [anon_sym_volatile] = ACTIONS(3012), + [anon_sym_restrict] = ACTIONS(3012), + [anon_sym___restrict__] = ACTIONS(3012), + [anon_sym__Atomic] = ACTIONS(3012), + [anon_sym__Noreturn] = ACTIONS(3012), + [anon_sym_noreturn] = ACTIONS(3012), + [anon_sym_mutable] = ACTIONS(3012), + [anon_sym_constinit] = ACTIONS(3012), + [anon_sym_consteval] = ACTIONS(3012), + [anon_sym_signed] = ACTIONS(3012), + [anon_sym_unsigned] = ACTIONS(3012), + [anon_sym_long] = ACTIONS(3012), + [anon_sym_short] = ACTIONS(3012), + [sym_primitive_type] = ACTIONS(3012), + [anon_sym_enum] = ACTIONS(3012), + [anon_sym_class] = ACTIONS(3012), + [anon_sym_struct] = ACTIONS(3012), + [anon_sym_union] = ACTIONS(3012), + [anon_sym_if] = ACTIONS(3012), + [anon_sym_else] = ACTIONS(3012), + [anon_sym_switch] = ACTIONS(3012), + [anon_sym_while] = ACTIONS(3012), + [anon_sym_do] = ACTIONS(3012), + [anon_sym_for] = ACTIONS(3012), + [anon_sym_return] = ACTIONS(3012), + [anon_sym_break] = ACTIONS(3012), + [anon_sym_continue] = ACTIONS(3012), + [anon_sym_goto] = ACTIONS(3012), + [anon_sym_not] = ACTIONS(3012), + [anon_sym_compl] = ACTIONS(3012), + [anon_sym_DASH_DASH] = ACTIONS(3014), + [anon_sym_PLUS_PLUS] = ACTIONS(3014), + [anon_sym_sizeof] = ACTIONS(3012), + [anon_sym_offsetof] = ACTIONS(3012), + [anon_sym__Generic] = ACTIONS(3012), + [anon_sym_asm] = ACTIONS(3012), + [anon_sym___asm__] = ACTIONS(3012), + [sym_number_literal] = ACTIONS(3014), + [anon_sym_L_SQUOTE] = ACTIONS(3014), + [anon_sym_u_SQUOTE] = ACTIONS(3014), + [anon_sym_U_SQUOTE] = ACTIONS(3014), + [anon_sym_u8_SQUOTE] = ACTIONS(3014), + [anon_sym_SQUOTE] = ACTIONS(3014), + [anon_sym_L_DQUOTE] = ACTIONS(3014), + [anon_sym_u_DQUOTE] = ACTIONS(3014), + [anon_sym_U_DQUOTE] = ACTIONS(3014), + [anon_sym_u8_DQUOTE] = ACTIONS(3014), + [anon_sym_DQUOTE] = ACTIONS(3014), + [sym_true] = ACTIONS(3012), + [sym_false] = ACTIONS(3012), + [anon_sym_NULL] = ACTIONS(3012), + [anon_sym_nullptr] = ACTIONS(3012), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3012), + [anon_sym_decltype] = ACTIONS(3012), + [anon_sym_virtual] = ACTIONS(3012), + [anon_sym_typename] = ACTIONS(3012), + [anon_sym_template] = ACTIONS(3012), + [anon_sym_try] = ACTIONS(3012), + [anon_sym_delete] = ACTIONS(3012), + [anon_sym_throw] = ACTIONS(3012), + [anon_sym_co_return] = ACTIONS(3012), + [anon_sym_co_yield] = ACTIONS(3012), + [anon_sym_R_DQUOTE] = ACTIONS(3014), + [anon_sym_LR_DQUOTE] = ACTIONS(3014), + [anon_sym_uR_DQUOTE] = ACTIONS(3014), + [anon_sym_UR_DQUOTE] = ACTIONS(3014), + [anon_sym_u8R_DQUOTE] = ACTIONS(3014), + [anon_sym_co_await] = ACTIONS(3012), + [anon_sym_new] = ACTIONS(3012), + [anon_sym_requires] = ACTIONS(3012), + [sym_this] = ACTIONS(3012), }, [1511] = { - [sym__expression] = STATE(2495), - [sym_conditional_expression] = STATE(2574), - [sym_assignment_expression] = STATE(2574), - [sym_pointer_expression] = STATE(2578), - [sym_unary_expression] = STATE(2574), - [sym_binary_expression] = STATE(2574), - [sym_update_expression] = STATE(2574), - [sym_cast_expression] = STATE(2574), - [sym_sizeof_expression] = STATE(2574), - [sym_subscript_expression] = STATE(2578), - [sym_call_expression] = STATE(2578), - [sym_field_expression] = STATE(2578), - [sym_compound_literal_expression] = STATE(2574), - [sym_parenthesized_expression] = STATE(2578), - [sym_char_literal] = STATE(2207), - [sym_concatenated_string] = STATE(2207), - [sym_string_literal] = STATE(1820), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5944), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(2574), - [sym_raw_string_literal] = STATE(1820), - [sym_co_await_expression] = STATE(2574), - [sym_new_expression] = STATE(2574), - [sym_delete_expression] = STATE(2574), - [sym_requires_clause] = STATE(2574), - [sym_requires_expression] = STATE(2574), - [sym_lambda_expression] = STATE(2574), - [sym_lambda_capture_specifier] = STATE(4479), - [sym_fold_expression] = STATE(2574), - [sym_parameter_pack_expansion] = STATE(2574), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2578), - [sym_qualified_type_identifier] = STATE(5944), - [sym_user_defined_literal] = STATE(2574), - [sym_identifier] = ACTIONS(1523), - [anon_sym_LPAREN2] = ACTIONS(1527), - [anon_sym_BANG] = ACTIONS(1531), - [anon_sym_TILDE] = ACTIONS(1531), - [anon_sym_DASH] = ACTIONS(1529), - [anon_sym_PLUS] = ACTIONS(1529), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1539), - [anon_sym_RBRACK] = ACTIONS(3714), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(1529), - [anon_sym_compl] = ACTIONS(1529), - [anon_sym_DASH_DASH] = ACTIONS(1543), - [anon_sym_PLUS_PLUS] = ACTIONS(1543), - [anon_sym_sizeof] = ACTIONS(1545), - [sym_number_literal] = ACTIONS(1547), - [anon_sym_L_SQUOTE] = ACTIONS(1549), - [anon_sym_u_SQUOTE] = ACTIONS(1549), - [anon_sym_U_SQUOTE] = ACTIONS(1549), - [anon_sym_u8_SQUOTE] = ACTIONS(1549), - [anon_sym_SQUOTE] = ACTIONS(1549), - [anon_sym_L_DQUOTE] = ACTIONS(1551), - [anon_sym_u_DQUOTE] = ACTIONS(1551), - [anon_sym_U_DQUOTE] = ACTIONS(1551), - [anon_sym_u8_DQUOTE] = ACTIONS(1551), - [anon_sym_DQUOTE] = ACTIONS(1551), - [sym_true] = ACTIONS(1553), - [sym_false] = ACTIONS(1553), - [sym_null] = ACTIONS(1553), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1557), - [anon_sym_R_DQUOTE] = ACTIONS(1559), - [anon_sym_LR_DQUOTE] = ACTIONS(1559), - [anon_sym_uR_DQUOTE] = ACTIONS(1559), - [anon_sym_UR_DQUOTE] = ACTIONS(1559), - [anon_sym_u8R_DQUOTE] = ACTIONS(1559), - [anon_sym_co_await] = ACTIONS(1561), - [anon_sym_new] = ACTIONS(1563), - [anon_sym_requires] = ACTIONS(1565), - [sym_this] = ACTIONS(1553), - [sym_nullptr] = ACTIONS(1553), + [sym_identifier] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3050), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, [1512] = { - [sym__expression] = STATE(2495), - [sym_conditional_expression] = STATE(2574), - [sym_assignment_expression] = STATE(2574), - [sym_pointer_expression] = STATE(2578), - [sym_unary_expression] = STATE(2574), - [sym_binary_expression] = STATE(2574), - [sym_update_expression] = STATE(2574), - [sym_cast_expression] = STATE(2574), - [sym_sizeof_expression] = STATE(2574), - [sym_subscript_expression] = STATE(2578), - [sym_call_expression] = STATE(2578), - [sym_field_expression] = STATE(2578), - [sym_compound_literal_expression] = STATE(2574), - [sym_parenthesized_expression] = STATE(2578), - [sym_char_literal] = STATE(2207), - [sym_concatenated_string] = STATE(2207), - [sym_string_literal] = STATE(1820), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5944), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(2574), - [sym_raw_string_literal] = STATE(1820), - [sym_co_await_expression] = STATE(2574), - [sym_new_expression] = STATE(2574), - [sym_delete_expression] = STATE(2574), - [sym_requires_clause] = STATE(2574), - [sym_requires_expression] = STATE(2574), - [sym_lambda_expression] = STATE(2574), - [sym_lambda_capture_specifier] = STATE(4479), - [sym_fold_expression] = STATE(2574), - [sym_parameter_pack_expansion] = STATE(2574), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2578), - [sym_qualified_type_identifier] = STATE(5944), - [sym_user_defined_literal] = STATE(2574), - [sym_identifier] = ACTIONS(1523), - [anon_sym_LPAREN2] = ACTIONS(1527), - [anon_sym_BANG] = ACTIONS(1531), - [anon_sym_TILDE] = ACTIONS(1531), - [anon_sym_DASH] = ACTIONS(1529), - [anon_sym_PLUS] = ACTIONS(1529), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1539), - [anon_sym_RBRACK] = ACTIONS(3716), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(1529), - [anon_sym_compl] = ACTIONS(1529), - [anon_sym_DASH_DASH] = ACTIONS(1543), - [anon_sym_PLUS_PLUS] = ACTIONS(1543), - [anon_sym_sizeof] = ACTIONS(1545), - [sym_number_literal] = ACTIONS(1547), - [anon_sym_L_SQUOTE] = ACTIONS(1549), - [anon_sym_u_SQUOTE] = ACTIONS(1549), - [anon_sym_U_SQUOTE] = ACTIONS(1549), - [anon_sym_u8_SQUOTE] = ACTIONS(1549), - [anon_sym_SQUOTE] = ACTIONS(1549), - [anon_sym_L_DQUOTE] = ACTIONS(1551), - [anon_sym_u_DQUOTE] = ACTIONS(1551), - [anon_sym_U_DQUOTE] = ACTIONS(1551), - [anon_sym_u8_DQUOTE] = ACTIONS(1551), - [anon_sym_DQUOTE] = ACTIONS(1551), - [sym_true] = ACTIONS(1553), - [sym_false] = ACTIONS(1553), - [sym_null] = ACTIONS(1553), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1557), - [anon_sym_R_DQUOTE] = ACTIONS(1559), - [anon_sym_LR_DQUOTE] = ACTIONS(1559), - [anon_sym_uR_DQUOTE] = ACTIONS(1559), - [anon_sym_UR_DQUOTE] = ACTIONS(1559), - [anon_sym_u8R_DQUOTE] = ACTIONS(1559), - [anon_sym_co_await] = ACTIONS(1561), - [anon_sym_new] = ACTIONS(1563), - [anon_sym_requires] = ACTIONS(1565), - [sym_this] = ACTIONS(1553), - [sym_nullptr] = ACTIONS(1553), + [sym_identifier] = ACTIONS(2956), + [anon_sym_LPAREN2] = ACTIONS(2958), + [anon_sym_BANG] = ACTIONS(2958), + [anon_sym_TILDE] = ACTIONS(2958), + [anon_sym_DASH] = ACTIONS(2956), + [anon_sym_PLUS] = ACTIONS(2956), + [anon_sym_STAR] = ACTIONS(2958), + [anon_sym_AMP] = ACTIONS(2958), + [anon_sym_SEMI] = ACTIONS(2958), + [anon_sym_typedef] = ACTIONS(2956), + [anon_sym_extern] = ACTIONS(2956), + [anon_sym___attribute__] = ACTIONS(2956), + [anon_sym_COLON_COLON] = ACTIONS(2958), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2958), + [anon_sym___declspec] = ACTIONS(2956), + [anon_sym_LBRACE] = ACTIONS(2958), + [anon_sym_LBRACK] = ACTIONS(2956), + [anon_sym_static] = ACTIONS(2956), + [anon_sym_register] = ACTIONS(2956), + [anon_sym_inline] = ACTIONS(2956), + [anon_sym_thread_local] = ACTIONS(2956), + [anon_sym_const] = ACTIONS(2956), + [anon_sym_constexpr] = ACTIONS(2956), + [anon_sym_volatile] = ACTIONS(2956), + [anon_sym_restrict] = ACTIONS(2956), + [anon_sym___restrict__] = ACTIONS(2956), + [anon_sym__Atomic] = ACTIONS(2956), + [anon_sym__Noreturn] = ACTIONS(2956), + [anon_sym_noreturn] = ACTIONS(2956), + [anon_sym_mutable] = ACTIONS(2956), + [anon_sym_constinit] = ACTIONS(2956), + [anon_sym_consteval] = ACTIONS(2956), + [anon_sym_signed] = ACTIONS(2956), + [anon_sym_unsigned] = ACTIONS(2956), + [anon_sym_long] = ACTIONS(2956), + [anon_sym_short] = ACTIONS(2956), + [sym_primitive_type] = ACTIONS(2956), + [anon_sym_enum] = ACTIONS(2956), + [anon_sym_class] = ACTIONS(2956), + [anon_sym_struct] = ACTIONS(2956), + [anon_sym_union] = ACTIONS(2956), + [anon_sym_if] = ACTIONS(2956), + [anon_sym_else] = ACTIONS(2956), + [anon_sym_switch] = ACTIONS(2956), + [anon_sym_while] = ACTIONS(2956), + [anon_sym_do] = ACTIONS(2956), + [anon_sym_for] = ACTIONS(2956), + [anon_sym_return] = ACTIONS(2956), + [anon_sym_break] = ACTIONS(2956), + [anon_sym_continue] = ACTIONS(2956), + [anon_sym_goto] = ACTIONS(2956), + [anon_sym_not] = ACTIONS(2956), + [anon_sym_compl] = ACTIONS(2956), + [anon_sym_DASH_DASH] = ACTIONS(2958), + [anon_sym_PLUS_PLUS] = ACTIONS(2958), + [anon_sym_sizeof] = ACTIONS(2956), + [anon_sym_offsetof] = ACTIONS(2956), + [anon_sym__Generic] = ACTIONS(2956), + [anon_sym_asm] = ACTIONS(2956), + [anon_sym___asm__] = ACTIONS(2956), + [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_L_DQUOTE] = ACTIONS(2958), + [anon_sym_u_DQUOTE] = ACTIONS(2958), + [anon_sym_U_DQUOTE] = ACTIONS(2958), + [anon_sym_u8_DQUOTE] = ACTIONS(2958), + [anon_sym_DQUOTE] = ACTIONS(2958), + [sym_true] = ACTIONS(2956), + [sym_false] = ACTIONS(2956), + [anon_sym_NULL] = ACTIONS(2956), + [anon_sym_nullptr] = ACTIONS(2956), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2956), + [anon_sym_decltype] = ACTIONS(2956), + [anon_sym_virtual] = ACTIONS(2956), + [anon_sym_typename] = ACTIONS(2956), + [anon_sym_template] = ACTIONS(2956), + [anon_sym_try] = ACTIONS(2956), + [anon_sym_delete] = ACTIONS(2956), + [anon_sym_throw] = ACTIONS(2956), + [anon_sym_co_return] = ACTIONS(2956), + [anon_sym_co_yield] = ACTIONS(2956), + [anon_sym_R_DQUOTE] = ACTIONS(2958), + [anon_sym_LR_DQUOTE] = ACTIONS(2958), + [anon_sym_uR_DQUOTE] = ACTIONS(2958), + [anon_sym_UR_DQUOTE] = ACTIONS(2958), + [anon_sym_u8R_DQUOTE] = ACTIONS(2958), + [anon_sym_co_await] = ACTIONS(2956), + [anon_sym_new] = ACTIONS(2956), + [anon_sym_requires] = ACTIONS(2956), + [sym_this] = ACTIONS(2956), }, [1513] = { - [sym__expression] = STATE(3800), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2954), - [anon_sym_LPAREN2] = ACTIONS(984), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3718), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [sym_identifier] = ACTIONS(3113), + [anon_sym_LPAREN2] = ACTIONS(3115), + [anon_sym_BANG] = ACTIONS(3115), + [anon_sym_TILDE] = ACTIONS(3115), + [anon_sym_DASH] = ACTIONS(3113), + [anon_sym_PLUS] = ACTIONS(3113), + [anon_sym_STAR] = ACTIONS(3115), + [anon_sym_AMP] = ACTIONS(3115), + [anon_sym_SEMI] = ACTIONS(3115), + [anon_sym_typedef] = ACTIONS(3113), + [anon_sym_extern] = ACTIONS(3113), + [anon_sym___attribute__] = ACTIONS(3113), + [anon_sym_COLON_COLON] = ACTIONS(3115), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3115), + [anon_sym___declspec] = ACTIONS(3113), + [anon_sym_LBRACE] = ACTIONS(3115), + [anon_sym_LBRACK] = ACTIONS(3113), + [anon_sym_static] = ACTIONS(3113), + [anon_sym_register] = ACTIONS(3113), + [anon_sym_inline] = ACTIONS(3113), + [anon_sym_thread_local] = ACTIONS(3113), + [anon_sym_const] = ACTIONS(3113), + [anon_sym_constexpr] = ACTIONS(3113), + [anon_sym_volatile] = ACTIONS(3113), + [anon_sym_restrict] = ACTIONS(3113), + [anon_sym___restrict__] = ACTIONS(3113), + [anon_sym__Atomic] = ACTIONS(3113), + [anon_sym__Noreturn] = ACTIONS(3113), + [anon_sym_noreturn] = ACTIONS(3113), + [anon_sym_mutable] = ACTIONS(3113), + [anon_sym_constinit] = ACTIONS(3113), + [anon_sym_consteval] = ACTIONS(3113), + [anon_sym_signed] = ACTIONS(3113), + [anon_sym_unsigned] = ACTIONS(3113), + [anon_sym_long] = ACTIONS(3113), + [anon_sym_short] = ACTIONS(3113), + [sym_primitive_type] = ACTIONS(3113), + [anon_sym_enum] = ACTIONS(3113), + [anon_sym_class] = ACTIONS(3113), + [anon_sym_struct] = ACTIONS(3113), + [anon_sym_union] = ACTIONS(3113), + [anon_sym_if] = ACTIONS(3113), + [anon_sym_else] = ACTIONS(3113), + [anon_sym_switch] = ACTIONS(3113), + [anon_sym_while] = ACTIONS(3113), + [anon_sym_do] = ACTIONS(3113), + [anon_sym_for] = ACTIONS(3113), + [anon_sym_return] = ACTIONS(3113), + [anon_sym_break] = ACTIONS(3113), + [anon_sym_continue] = ACTIONS(3113), + [anon_sym_goto] = ACTIONS(3113), + [anon_sym_not] = ACTIONS(3113), + [anon_sym_compl] = ACTIONS(3113), + [anon_sym_DASH_DASH] = ACTIONS(3115), + [anon_sym_PLUS_PLUS] = ACTIONS(3115), + [anon_sym_sizeof] = ACTIONS(3113), + [anon_sym_offsetof] = ACTIONS(3113), + [anon_sym__Generic] = ACTIONS(3113), + [anon_sym_asm] = ACTIONS(3113), + [anon_sym___asm__] = ACTIONS(3113), + [sym_number_literal] = ACTIONS(3115), + [anon_sym_L_SQUOTE] = ACTIONS(3115), + [anon_sym_u_SQUOTE] = ACTIONS(3115), + [anon_sym_U_SQUOTE] = ACTIONS(3115), + [anon_sym_u8_SQUOTE] = ACTIONS(3115), + [anon_sym_SQUOTE] = ACTIONS(3115), + [anon_sym_L_DQUOTE] = ACTIONS(3115), + [anon_sym_u_DQUOTE] = ACTIONS(3115), + [anon_sym_U_DQUOTE] = ACTIONS(3115), + [anon_sym_u8_DQUOTE] = ACTIONS(3115), + [anon_sym_DQUOTE] = ACTIONS(3115), + [sym_true] = ACTIONS(3113), + [sym_false] = ACTIONS(3113), + [anon_sym_NULL] = ACTIONS(3113), + [anon_sym_nullptr] = ACTIONS(3113), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3113), + [anon_sym_decltype] = ACTIONS(3113), + [anon_sym_virtual] = ACTIONS(3113), + [anon_sym_typename] = ACTIONS(3113), + [anon_sym_template] = ACTIONS(3113), + [anon_sym_try] = ACTIONS(3113), + [anon_sym_delete] = ACTIONS(3113), + [anon_sym_throw] = ACTIONS(3113), + [anon_sym_co_return] = ACTIONS(3113), + [anon_sym_co_yield] = ACTIONS(3113), + [anon_sym_R_DQUOTE] = ACTIONS(3115), + [anon_sym_LR_DQUOTE] = ACTIONS(3115), + [anon_sym_uR_DQUOTE] = ACTIONS(3115), + [anon_sym_UR_DQUOTE] = ACTIONS(3115), + [anon_sym_u8R_DQUOTE] = ACTIONS(3115), + [anon_sym_co_await] = ACTIONS(3113), + [anon_sym_new] = ACTIONS(3113), + [anon_sym_requires] = ACTIONS(3113), + [sym_this] = ACTIONS(3113), }, [1514] = { - [sym__expression] = STATE(2912), - [sym_conditional_expression] = STATE(3035), - [sym_assignment_expression] = STATE(3035), - [sym_pointer_expression] = STATE(2713), - [sym_unary_expression] = STATE(3035), - [sym_binary_expression] = STATE(3035), - [sym_update_expression] = STATE(3035), - [sym_cast_expression] = STATE(3035), - [sym_sizeof_expression] = STATE(3035), - [sym_subscript_expression] = STATE(2713), - [sym_call_expression] = STATE(2713), - [sym_field_expression] = STATE(2713), - [sym_compound_literal_expression] = STATE(3035), - [sym_parenthesized_expression] = STATE(2713), - [sym_char_literal] = STATE(3013), - [sym_concatenated_string] = STATE(3013), - [sym_string_literal] = STATE(1900), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5990), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3035), - [sym_raw_string_literal] = STATE(1900), - [sym_co_await_expression] = STATE(3035), - [sym_new_expression] = STATE(3035), - [sym_delete_expression] = STATE(3035), - [sym_requires_clause] = STATE(3035), - [sym_requires_expression] = STATE(3035), - [sym_lambda_expression] = STATE(3035), - [sym_lambda_capture_specifier] = STATE(4465), - [sym_fold_expression] = STATE(3035), - [sym_parameter_pack_expansion] = STATE(3035), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4584), - [sym_qualified_identifier] = STATE(2713), - [sym_qualified_type_identifier] = STATE(5990), - [sym_user_defined_literal] = STATE(3035), - [sym_identifier] = ACTIONS(1643), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3720), - [anon_sym_LPAREN2] = ACTIONS(1439), - [anon_sym_BANG] = ACTIONS(1441), - [anon_sym_TILDE] = ACTIONS(1441), - [anon_sym_DASH] = ACTIONS(1443), - [anon_sym_PLUS] = ACTIONS(1443), - [anon_sym_STAR] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(1445), - [anon_sym_COLON_COLON] = ACTIONS(1447), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1581), - [anon_sym_not] = ACTIONS(1443), - [anon_sym_compl] = ACTIONS(1443), - [anon_sym_DASH_DASH] = ACTIONS(1459), - [anon_sym_PLUS_PLUS] = ACTIONS(1459), - [anon_sym_sizeof] = ACTIONS(1461), - [sym_number_literal] = ACTIONS(1463), - [anon_sym_L_SQUOTE] = ACTIONS(1465), - [anon_sym_u_SQUOTE] = ACTIONS(1465), - [anon_sym_U_SQUOTE] = ACTIONS(1465), - [anon_sym_u8_SQUOTE] = ACTIONS(1465), - [anon_sym_SQUOTE] = ACTIONS(1465), - [anon_sym_L_DQUOTE] = ACTIONS(1467), - [anon_sym_u_DQUOTE] = ACTIONS(1467), - [anon_sym_U_DQUOTE] = ACTIONS(1467), - [anon_sym_u8_DQUOTE] = ACTIONS(1467), - [anon_sym_DQUOTE] = ACTIONS(1467), - [sym_true] = ACTIONS(1469), - [sym_false] = ACTIONS(1469), - [sym_null] = ACTIONS(1469), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1473), - [anon_sym_R_DQUOTE] = ACTIONS(1475), - [anon_sym_LR_DQUOTE] = ACTIONS(1475), - [anon_sym_uR_DQUOTE] = ACTIONS(1475), - [anon_sym_UR_DQUOTE] = ACTIONS(1475), - [anon_sym_u8R_DQUOTE] = ACTIONS(1475), - [anon_sym_co_await] = ACTIONS(1477), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_requires] = ACTIONS(1481), - [sym_this] = ACTIONS(1469), - [sym_nullptr] = ACTIONS(1469), + [sym_identifier] = ACTIONS(3085), + [anon_sym_LPAREN2] = ACTIONS(3087), + [anon_sym_BANG] = ACTIONS(3087), + [anon_sym_TILDE] = ACTIONS(3087), + [anon_sym_DASH] = ACTIONS(3085), + [anon_sym_PLUS] = ACTIONS(3085), + [anon_sym_STAR] = ACTIONS(3087), + [anon_sym_AMP] = ACTIONS(3087), + [anon_sym_SEMI] = ACTIONS(3087), + [anon_sym_typedef] = ACTIONS(3085), + [anon_sym_extern] = ACTIONS(3085), + [anon_sym___attribute__] = ACTIONS(3085), + [anon_sym_COLON_COLON] = ACTIONS(3087), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3087), + [anon_sym___declspec] = ACTIONS(3085), + [anon_sym_LBRACE] = ACTIONS(3087), + [anon_sym_LBRACK] = ACTIONS(3085), + [anon_sym_static] = ACTIONS(3085), + [anon_sym_register] = ACTIONS(3085), + [anon_sym_inline] = ACTIONS(3085), + [anon_sym_thread_local] = ACTIONS(3085), + [anon_sym_const] = ACTIONS(3085), + [anon_sym_constexpr] = ACTIONS(3085), + [anon_sym_volatile] = ACTIONS(3085), + [anon_sym_restrict] = ACTIONS(3085), + [anon_sym___restrict__] = ACTIONS(3085), + [anon_sym__Atomic] = ACTIONS(3085), + [anon_sym__Noreturn] = ACTIONS(3085), + [anon_sym_noreturn] = ACTIONS(3085), + [anon_sym_mutable] = ACTIONS(3085), + [anon_sym_constinit] = ACTIONS(3085), + [anon_sym_consteval] = ACTIONS(3085), + [anon_sym_signed] = ACTIONS(3085), + [anon_sym_unsigned] = ACTIONS(3085), + [anon_sym_long] = ACTIONS(3085), + [anon_sym_short] = ACTIONS(3085), + [sym_primitive_type] = ACTIONS(3085), + [anon_sym_enum] = ACTIONS(3085), + [anon_sym_class] = ACTIONS(3085), + [anon_sym_struct] = ACTIONS(3085), + [anon_sym_union] = ACTIONS(3085), + [anon_sym_if] = ACTIONS(3085), + [anon_sym_else] = ACTIONS(3085), + [anon_sym_switch] = ACTIONS(3085), + [anon_sym_while] = ACTIONS(3085), + [anon_sym_do] = ACTIONS(3085), + [anon_sym_for] = ACTIONS(3085), + [anon_sym_return] = ACTIONS(3085), + [anon_sym_break] = ACTIONS(3085), + [anon_sym_continue] = ACTIONS(3085), + [anon_sym_goto] = ACTIONS(3085), + [anon_sym_not] = ACTIONS(3085), + [anon_sym_compl] = ACTIONS(3085), + [anon_sym_DASH_DASH] = ACTIONS(3087), + [anon_sym_PLUS_PLUS] = ACTIONS(3087), + [anon_sym_sizeof] = ACTIONS(3085), + [anon_sym_offsetof] = ACTIONS(3085), + [anon_sym__Generic] = ACTIONS(3085), + [anon_sym_asm] = ACTIONS(3085), + [anon_sym___asm__] = ACTIONS(3085), + [sym_number_literal] = ACTIONS(3087), + [anon_sym_L_SQUOTE] = ACTIONS(3087), + [anon_sym_u_SQUOTE] = ACTIONS(3087), + [anon_sym_U_SQUOTE] = ACTIONS(3087), + [anon_sym_u8_SQUOTE] = ACTIONS(3087), + [anon_sym_SQUOTE] = ACTIONS(3087), + [anon_sym_L_DQUOTE] = ACTIONS(3087), + [anon_sym_u_DQUOTE] = ACTIONS(3087), + [anon_sym_U_DQUOTE] = ACTIONS(3087), + [anon_sym_u8_DQUOTE] = ACTIONS(3087), + [anon_sym_DQUOTE] = ACTIONS(3087), + [sym_true] = ACTIONS(3085), + [sym_false] = ACTIONS(3085), + [anon_sym_NULL] = ACTIONS(3085), + [anon_sym_nullptr] = ACTIONS(3085), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3085), + [anon_sym_decltype] = ACTIONS(3085), + [anon_sym_virtual] = ACTIONS(3085), + [anon_sym_typename] = ACTIONS(3085), + [anon_sym_template] = ACTIONS(3085), + [anon_sym_try] = ACTIONS(3085), + [anon_sym_delete] = ACTIONS(3085), + [anon_sym_throw] = ACTIONS(3085), + [anon_sym_co_return] = ACTIONS(3085), + [anon_sym_co_yield] = ACTIONS(3085), + [anon_sym_R_DQUOTE] = ACTIONS(3087), + [anon_sym_LR_DQUOTE] = ACTIONS(3087), + [anon_sym_uR_DQUOTE] = ACTIONS(3087), + [anon_sym_UR_DQUOTE] = ACTIONS(3087), + [anon_sym_u8R_DQUOTE] = ACTIONS(3087), + [anon_sym_co_await] = ACTIONS(3085), + [anon_sym_new] = ACTIONS(3085), + [anon_sym_requires] = ACTIONS(3085), + [sym_this] = ACTIONS(3085), }, [1515] = { - [sym__expression] = STATE(2495), - [sym_conditional_expression] = STATE(2574), - [sym_assignment_expression] = STATE(2574), - [sym_pointer_expression] = STATE(2578), - [sym_unary_expression] = STATE(2574), - [sym_binary_expression] = STATE(2574), - [sym_update_expression] = STATE(2574), - [sym_cast_expression] = STATE(2574), - [sym_sizeof_expression] = STATE(2574), - [sym_subscript_expression] = STATE(2578), - [sym_call_expression] = STATE(2578), - [sym_field_expression] = STATE(2578), - [sym_compound_literal_expression] = STATE(2574), - [sym_parenthesized_expression] = STATE(2578), - [sym_char_literal] = STATE(2207), - [sym_concatenated_string] = STATE(2207), - [sym_string_literal] = STATE(1820), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5944), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(2574), - [sym_raw_string_literal] = STATE(1820), - [sym_co_await_expression] = STATE(2574), - [sym_new_expression] = STATE(2574), - [sym_delete_expression] = STATE(2574), - [sym_requires_clause] = STATE(2574), - [sym_requires_expression] = STATE(2574), - [sym_lambda_expression] = STATE(2574), - [sym_lambda_capture_specifier] = STATE(4479), - [sym_fold_expression] = STATE(2574), - [sym_parameter_pack_expansion] = STATE(2574), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2578), - [sym_qualified_type_identifier] = STATE(5944), - [sym_user_defined_literal] = STATE(2574), - [sym_identifier] = ACTIONS(1523), - [anon_sym_LPAREN2] = ACTIONS(1527), - [anon_sym_BANG] = ACTIONS(1531), - [anon_sym_TILDE] = ACTIONS(1531), - [anon_sym_DASH] = ACTIONS(1529), - [anon_sym_PLUS] = ACTIONS(1529), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1539), - [anon_sym_RBRACK] = ACTIONS(3723), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(1529), - [anon_sym_compl] = ACTIONS(1529), - [anon_sym_DASH_DASH] = ACTIONS(1543), - [anon_sym_PLUS_PLUS] = ACTIONS(1543), - [anon_sym_sizeof] = ACTIONS(1545), - [sym_number_literal] = ACTIONS(1547), - [anon_sym_L_SQUOTE] = ACTIONS(1549), - [anon_sym_u_SQUOTE] = ACTIONS(1549), - [anon_sym_U_SQUOTE] = ACTIONS(1549), - [anon_sym_u8_SQUOTE] = ACTIONS(1549), - [anon_sym_SQUOTE] = ACTIONS(1549), - [anon_sym_L_DQUOTE] = ACTIONS(1551), - [anon_sym_u_DQUOTE] = ACTIONS(1551), - [anon_sym_U_DQUOTE] = ACTIONS(1551), - [anon_sym_u8_DQUOTE] = ACTIONS(1551), - [anon_sym_DQUOTE] = ACTIONS(1551), - [sym_true] = ACTIONS(1553), - [sym_false] = ACTIONS(1553), - [sym_null] = ACTIONS(1553), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1557), - [anon_sym_R_DQUOTE] = ACTIONS(1559), - [anon_sym_LR_DQUOTE] = ACTIONS(1559), - [anon_sym_uR_DQUOTE] = ACTIONS(1559), - [anon_sym_UR_DQUOTE] = ACTIONS(1559), - [anon_sym_u8R_DQUOTE] = ACTIONS(1559), - [anon_sym_co_await] = ACTIONS(1561), - [anon_sym_new] = ACTIONS(1563), - [anon_sym_requires] = ACTIONS(1565), - [sym_this] = ACTIONS(1553), - [sym_nullptr] = ACTIONS(1553), + [sym_identifier] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3050), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, [1516] = { - [sym__expression] = STATE(3685), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2954), - [anon_sym_LPAREN2] = ACTIONS(984), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3725), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [sym_identifier] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3030), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, [1517] = { - [sym__expression] = STATE(3662), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2984), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2984), - [sym_call_expression] = STATE(2984), - [sym_field_expression] = STATE(2984), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2984), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2984), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(3047), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3586), - [anon_sym_LPAREN2] = ACTIONS(3727), - [anon_sym_BANG] = ACTIONS(3053), - [anon_sym_TILDE] = ACTIONS(3053), - [anon_sym_DASH] = ACTIONS(3051), - [anon_sym_PLUS] = ACTIONS(3051), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(3055), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(3051), - [anon_sym_compl] = ACTIONS(3051), - [anon_sym_DASH_DASH] = ACTIONS(3057), - [anon_sym_PLUS_PLUS] = ACTIONS(3057), - [anon_sym_sizeof] = ACTIONS(3059), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(3061), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(3063), - [anon_sym_new] = ACTIONS(3065), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [sym_identifier] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3030), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, [1518] = { - [sym__expression] = STATE(2912), - [sym_conditional_expression] = STATE(3035), - [sym_assignment_expression] = STATE(3035), - [sym_pointer_expression] = STATE(2713), - [sym_unary_expression] = STATE(3035), - [sym_binary_expression] = STATE(3035), - [sym_update_expression] = STATE(3035), - [sym_cast_expression] = STATE(3035), - [sym_sizeof_expression] = STATE(3035), - [sym_subscript_expression] = STATE(2713), - [sym_call_expression] = STATE(2713), - [sym_field_expression] = STATE(2713), - [sym_compound_literal_expression] = STATE(3035), - [sym_parenthesized_expression] = STATE(2713), - [sym_char_literal] = STATE(3013), - [sym_concatenated_string] = STATE(3013), - [sym_string_literal] = STATE(1900), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5990), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3035), - [sym_raw_string_literal] = STATE(1900), - [sym_co_await_expression] = STATE(3035), - [sym_new_expression] = STATE(3035), - [sym_delete_expression] = STATE(3035), - [sym_requires_clause] = STATE(3035), - [sym_requires_expression] = STATE(3035), - [sym_lambda_expression] = STATE(3035), - [sym_lambda_capture_specifier] = STATE(4465), - [sym_fold_expression] = STATE(3035), - [sym_parameter_pack_expansion] = STATE(3035), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4584), - [sym_qualified_identifier] = STATE(2713), - [sym_qualified_type_identifier] = STATE(5990), - [sym_user_defined_literal] = STATE(3035), - [sym_identifier] = ACTIONS(1643), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3729), - [anon_sym_LPAREN2] = ACTIONS(1439), - [anon_sym_BANG] = ACTIONS(1441), - [anon_sym_TILDE] = ACTIONS(1441), - [anon_sym_DASH] = ACTIONS(1443), - [anon_sym_PLUS] = ACTIONS(1443), - [anon_sym_STAR] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(1445), - [anon_sym_COLON_COLON] = ACTIONS(1447), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1581), - [anon_sym_not] = ACTIONS(1443), - [anon_sym_compl] = ACTIONS(1443), - [anon_sym_DASH_DASH] = ACTIONS(1459), - [anon_sym_PLUS_PLUS] = ACTIONS(1459), - [anon_sym_sizeof] = ACTIONS(1461), - [sym_number_literal] = ACTIONS(1463), - [anon_sym_L_SQUOTE] = ACTIONS(1465), - [anon_sym_u_SQUOTE] = ACTIONS(1465), - [anon_sym_U_SQUOTE] = ACTIONS(1465), - [anon_sym_u8_SQUOTE] = ACTIONS(1465), - [anon_sym_SQUOTE] = ACTIONS(1465), - [anon_sym_L_DQUOTE] = ACTIONS(1467), - [anon_sym_u_DQUOTE] = ACTIONS(1467), - [anon_sym_U_DQUOTE] = ACTIONS(1467), - [anon_sym_u8_DQUOTE] = ACTIONS(1467), - [anon_sym_DQUOTE] = ACTIONS(1467), - [sym_true] = ACTIONS(1469), - [sym_false] = ACTIONS(1469), - [sym_null] = ACTIONS(1469), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1473), - [anon_sym_R_DQUOTE] = ACTIONS(1475), - [anon_sym_LR_DQUOTE] = ACTIONS(1475), - [anon_sym_uR_DQUOTE] = ACTIONS(1475), - [anon_sym_UR_DQUOTE] = ACTIONS(1475), - [anon_sym_u8R_DQUOTE] = ACTIONS(1475), - [anon_sym_co_await] = ACTIONS(1477), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_requires] = ACTIONS(1481), - [sym_this] = ACTIONS(1469), - [sym_nullptr] = ACTIONS(1469), + [sym_identifier] = ACTIONS(3085), + [anon_sym_LPAREN2] = ACTIONS(3087), + [anon_sym_BANG] = ACTIONS(3087), + [anon_sym_TILDE] = ACTIONS(3087), + [anon_sym_DASH] = ACTIONS(3085), + [anon_sym_PLUS] = ACTIONS(3085), + [anon_sym_STAR] = ACTIONS(3087), + [anon_sym_AMP] = ACTIONS(3087), + [anon_sym_SEMI] = ACTIONS(3087), + [anon_sym_typedef] = ACTIONS(3085), + [anon_sym_extern] = ACTIONS(3085), + [anon_sym___attribute__] = ACTIONS(3085), + [anon_sym_COLON_COLON] = ACTIONS(3087), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3087), + [anon_sym___declspec] = ACTIONS(3085), + [anon_sym_LBRACE] = ACTIONS(3087), + [anon_sym_LBRACK] = ACTIONS(3085), + [anon_sym_static] = ACTIONS(3085), + [anon_sym_register] = ACTIONS(3085), + [anon_sym_inline] = ACTIONS(3085), + [anon_sym_thread_local] = ACTIONS(3085), + [anon_sym_const] = ACTIONS(3085), + [anon_sym_constexpr] = ACTIONS(3085), + [anon_sym_volatile] = ACTIONS(3085), + [anon_sym_restrict] = ACTIONS(3085), + [anon_sym___restrict__] = ACTIONS(3085), + [anon_sym__Atomic] = ACTIONS(3085), + [anon_sym__Noreturn] = ACTIONS(3085), + [anon_sym_noreturn] = ACTIONS(3085), + [anon_sym_mutable] = ACTIONS(3085), + [anon_sym_constinit] = ACTIONS(3085), + [anon_sym_consteval] = ACTIONS(3085), + [anon_sym_signed] = ACTIONS(3085), + [anon_sym_unsigned] = ACTIONS(3085), + [anon_sym_long] = ACTIONS(3085), + [anon_sym_short] = ACTIONS(3085), + [sym_primitive_type] = ACTIONS(3085), + [anon_sym_enum] = ACTIONS(3085), + [anon_sym_class] = ACTIONS(3085), + [anon_sym_struct] = ACTIONS(3085), + [anon_sym_union] = ACTIONS(3085), + [anon_sym_if] = ACTIONS(3085), + [anon_sym_else] = ACTIONS(3085), + [anon_sym_switch] = ACTIONS(3085), + [anon_sym_while] = ACTIONS(3085), + [anon_sym_do] = ACTIONS(3085), + [anon_sym_for] = ACTIONS(3085), + [anon_sym_return] = ACTIONS(3085), + [anon_sym_break] = ACTIONS(3085), + [anon_sym_continue] = ACTIONS(3085), + [anon_sym_goto] = ACTIONS(3085), + [anon_sym_not] = ACTIONS(3085), + [anon_sym_compl] = ACTIONS(3085), + [anon_sym_DASH_DASH] = ACTIONS(3087), + [anon_sym_PLUS_PLUS] = ACTIONS(3087), + [anon_sym_sizeof] = ACTIONS(3085), + [anon_sym_offsetof] = ACTIONS(3085), + [anon_sym__Generic] = ACTIONS(3085), + [anon_sym_asm] = ACTIONS(3085), + [anon_sym___asm__] = ACTIONS(3085), + [sym_number_literal] = ACTIONS(3087), + [anon_sym_L_SQUOTE] = ACTIONS(3087), + [anon_sym_u_SQUOTE] = ACTIONS(3087), + [anon_sym_U_SQUOTE] = ACTIONS(3087), + [anon_sym_u8_SQUOTE] = ACTIONS(3087), + [anon_sym_SQUOTE] = ACTIONS(3087), + [anon_sym_L_DQUOTE] = ACTIONS(3087), + [anon_sym_u_DQUOTE] = ACTIONS(3087), + [anon_sym_U_DQUOTE] = ACTIONS(3087), + [anon_sym_u8_DQUOTE] = ACTIONS(3087), + [anon_sym_DQUOTE] = ACTIONS(3087), + [sym_true] = ACTIONS(3085), + [sym_false] = ACTIONS(3085), + [anon_sym_NULL] = ACTIONS(3085), + [anon_sym_nullptr] = ACTIONS(3085), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3085), + [anon_sym_decltype] = ACTIONS(3085), + [anon_sym_virtual] = ACTIONS(3085), + [anon_sym_typename] = ACTIONS(3085), + [anon_sym_template] = ACTIONS(3085), + [anon_sym_try] = ACTIONS(3085), + [anon_sym_delete] = ACTIONS(3085), + [anon_sym_throw] = ACTIONS(3085), + [anon_sym_co_return] = ACTIONS(3085), + [anon_sym_co_yield] = ACTIONS(3085), + [anon_sym_R_DQUOTE] = ACTIONS(3087), + [anon_sym_LR_DQUOTE] = ACTIONS(3087), + [anon_sym_uR_DQUOTE] = ACTIONS(3087), + [anon_sym_UR_DQUOTE] = ACTIONS(3087), + [anon_sym_u8R_DQUOTE] = ACTIONS(3087), + [anon_sym_co_await] = ACTIONS(3085), + [anon_sym_new] = ACTIONS(3085), + [anon_sym_requires] = ACTIONS(3085), + [sym_this] = ACTIONS(3085), }, [1519] = { - [sym__expression] = STATE(2495), - [sym_conditional_expression] = STATE(2574), - [sym_assignment_expression] = STATE(2574), - [sym_pointer_expression] = STATE(2578), - [sym_unary_expression] = STATE(2574), - [sym_binary_expression] = STATE(2574), - [sym_update_expression] = STATE(2574), - [sym_cast_expression] = STATE(2574), - [sym_sizeof_expression] = STATE(2574), - [sym_subscript_expression] = STATE(2578), - [sym_call_expression] = STATE(2578), - [sym_field_expression] = STATE(2578), - [sym_compound_literal_expression] = STATE(2574), - [sym_parenthesized_expression] = STATE(2578), - [sym_char_literal] = STATE(2207), - [sym_concatenated_string] = STATE(2207), - [sym_string_literal] = STATE(1820), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5944), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(2574), - [sym_raw_string_literal] = STATE(1820), - [sym_co_await_expression] = STATE(2574), - [sym_new_expression] = STATE(2574), - [sym_delete_expression] = STATE(2574), - [sym_requires_clause] = STATE(2574), - [sym_requires_expression] = STATE(2574), - [sym_lambda_expression] = STATE(2574), - [sym_lambda_capture_specifier] = STATE(4479), - [sym_fold_expression] = STATE(2574), - [sym_parameter_pack_expansion] = STATE(2574), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2578), - [sym_qualified_type_identifier] = STATE(5944), - [sym_user_defined_literal] = STATE(2574), - [sym_identifier] = ACTIONS(1523), - [anon_sym_LPAREN2] = ACTIONS(1527), - [anon_sym_BANG] = ACTIONS(1531), - [anon_sym_TILDE] = ACTIONS(1531), - [anon_sym_DASH] = ACTIONS(1529), - [anon_sym_PLUS] = ACTIONS(1529), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1539), - [anon_sym_RBRACK] = ACTIONS(3732), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(1529), - [anon_sym_compl] = ACTIONS(1529), - [anon_sym_DASH_DASH] = ACTIONS(1543), - [anon_sym_PLUS_PLUS] = ACTIONS(1543), - [anon_sym_sizeof] = ACTIONS(1545), - [sym_number_literal] = ACTIONS(1547), - [anon_sym_L_SQUOTE] = ACTIONS(1549), - [anon_sym_u_SQUOTE] = ACTIONS(1549), - [anon_sym_U_SQUOTE] = ACTIONS(1549), - [anon_sym_u8_SQUOTE] = ACTIONS(1549), - [anon_sym_SQUOTE] = ACTIONS(1549), - [anon_sym_L_DQUOTE] = ACTIONS(1551), - [anon_sym_u_DQUOTE] = ACTIONS(1551), - [anon_sym_U_DQUOTE] = ACTIONS(1551), - [anon_sym_u8_DQUOTE] = ACTIONS(1551), - [anon_sym_DQUOTE] = ACTIONS(1551), - [sym_true] = ACTIONS(1553), - [sym_false] = ACTIONS(1553), - [sym_null] = ACTIONS(1553), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1557), - [anon_sym_R_DQUOTE] = ACTIONS(1559), - [anon_sym_LR_DQUOTE] = ACTIONS(1559), - [anon_sym_uR_DQUOTE] = ACTIONS(1559), - [anon_sym_UR_DQUOTE] = ACTIONS(1559), - [anon_sym_u8R_DQUOTE] = ACTIONS(1559), - [anon_sym_co_await] = ACTIONS(1561), - [anon_sym_new] = ACTIONS(1563), - [anon_sym_requires] = ACTIONS(1565), - [sym_this] = ACTIONS(1553), - [sym_nullptr] = ACTIONS(1553), + [sym_identifier] = ACTIONS(3020), + [anon_sym_LPAREN2] = ACTIONS(3022), + [anon_sym_BANG] = ACTIONS(3022), + [anon_sym_TILDE] = ACTIONS(3022), + [anon_sym_DASH] = ACTIONS(3020), + [anon_sym_PLUS] = ACTIONS(3020), + [anon_sym_STAR] = ACTIONS(3022), + [anon_sym_AMP] = ACTIONS(3022), + [anon_sym_SEMI] = ACTIONS(3022), + [anon_sym_typedef] = ACTIONS(3020), + [anon_sym_extern] = ACTIONS(3020), + [anon_sym___attribute__] = ACTIONS(3020), + [anon_sym_COLON_COLON] = ACTIONS(3022), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3022), + [anon_sym___declspec] = ACTIONS(3020), + [anon_sym_LBRACE] = ACTIONS(3022), + [anon_sym_LBRACK] = ACTIONS(3020), + [anon_sym_static] = ACTIONS(3020), + [anon_sym_register] = ACTIONS(3020), + [anon_sym_inline] = ACTIONS(3020), + [anon_sym_thread_local] = ACTIONS(3020), + [anon_sym_const] = ACTIONS(3020), + [anon_sym_constexpr] = ACTIONS(3020), + [anon_sym_volatile] = ACTIONS(3020), + [anon_sym_restrict] = ACTIONS(3020), + [anon_sym___restrict__] = ACTIONS(3020), + [anon_sym__Atomic] = ACTIONS(3020), + [anon_sym__Noreturn] = ACTIONS(3020), + [anon_sym_noreturn] = ACTIONS(3020), + [anon_sym_mutable] = ACTIONS(3020), + [anon_sym_constinit] = ACTIONS(3020), + [anon_sym_consteval] = ACTIONS(3020), + [anon_sym_signed] = ACTIONS(3020), + [anon_sym_unsigned] = ACTIONS(3020), + [anon_sym_long] = ACTIONS(3020), + [anon_sym_short] = ACTIONS(3020), + [sym_primitive_type] = ACTIONS(3020), + [anon_sym_enum] = ACTIONS(3020), + [anon_sym_class] = ACTIONS(3020), + [anon_sym_struct] = ACTIONS(3020), + [anon_sym_union] = ACTIONS(3020), + [anon_sym_if] = ACTIONS(3020), + [anon_sym_else] = ACTIONS(3020), + [anon_sym_switch] = ACTIONS(3020), + [anon_sym_while] = ACTIONS(3020), + [anon_sym_do] = ACTIONS(3020), + [anon_sym_for] = ACTIONS(3020), + [anon_sym_return] = ACTIONS(3020), + [anon_sym_break] = ACTIONS(3020), + [anon_sym_continue] = ACTIONS(3020), + [anon_sym_goto] = ACTIONS(3020), + [anon_sym_not] = ACTIONS(3020), + [anon_sym_compl] = ACTIONS(3020), + [anon_sym_DASH_DASH] = ACTIONS(3022), + [anon_sym_PLUS_PLUS] = ACTIONS(3022), + [anon_sym_sizeof] = ACTIONS(3020), + [anon_sym_offsetof] = ACTIONS(3020), + [anon_sym__Generic] = ACTIONS(3020), + [anon_sym_asm] = ACTIONS(3020), + [anon_sym___asm__] = ACTIONS(3020), + [sym_number_literal] = ACTIONS(3022), + [anon_sym_L_SQUOTE] = ACTIONS(3022), + [anon_sym_u_SQUOTE] = ACTIONS(3022), + [anon_sym_U_SQUOTE] = ACTIONS(3022), + [anon_sym_u8_SQUOTE] = ACTIONS(3022), + [anon_sym_SQUOTE] = ACTIONS(3022), + [anon_sym_L_DQUOTE] = ACTIONS(3022), + [anon_sym_u_DQUOTE] = ACTIONS(3022), + [anon_sym_U_DQUOTE] = ACTIONS(3022), + [anon_sym_u8_DQUOTE] = ACTIONS(3022), + [anon_sym_DQUOTE] = ACTIONS(3022), + [sym_true] = ACTIONS(3020), + [sym_false] = ACTIONS(3020), + [anon_sym_NULL] = ACTIONS(3020), + [anon_sym_nullptr] = ACTIONS(3020), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3020), + [anon_sym_decltype] = ACTIONS(3020), + [anon_sym_virtual] = ACTIONS(3020), + [anon_sym_typename] = ACTIONS(3020), + [anon_sym_template] = ACTIONS(3020), + [anon_sym_try] = ACTIONS(3020), + [anon_sym_delete] = ACTIONS(3020), + [anon_sym_throw] = ACTIONS(3020), + [anon_sym_co_return] = ACTIONS(3020), + [anon_sym_co_yield] = ACTIONS(3020), + [anon_sym_R_DQUOTE] = ACTIONS(3022), + [anon_sym_LR_DQUOTE] = ACTIONS(3022), + [anon_sym_uR_DQUOTE] = ACTIONS(3022), + [anon_sym_UR_DQUOTE] = ACTIONS(3022), + [anon_sym_u8R_DQUOTE] = ACTIONS(3022), + [anon_sym_co_await] = ACTIONS(3020), + [anon_sym_new] = ACTIONS(3020), + [anon_sym_requires] = ACTIONS(3020), + [sym_this] = ACTIONS(3020), }, [1520] = { - [sym__expression] = STATE(2495), - [sym_conditional_expression] = STATE(2574), - [sym_assignment_expression] = STATE(2574), - [sym_pointer_expression] = STATE(2578), - [sym_unary_expression] = STATE(2574), - [sym_binary_expression] = STATE(2574), - [sym_update_expression] = STATE(2574), - [sym_cast_expression] = STATE(2574), - [sym_sizeof_expression] = STATE(2574), - [sym_subscript_expression] = STATE(2578), - [sym_call_expression] = STATE(2578), - [sym_field_expression] = STATE(2578), - [sym_compound_literal_expression] = STATE(2574), - [sym_parenthesized_expression] = STATE(2578), - [sym_char_literal] = STATE(2207), - [sym_concatenated_string] = STATE(2207), - [sym_string_literal] = STATE(1820), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5944), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(2574), - [sym_raw_string_literal] = STATE(1820), - [sym_co_await_expression] = STATE(2574), - [sym_new_expression] = STATE(2574), - [sym_delete_expression] = STATE(2574), - [sym_requires_clause] = STATE(2574), - [sym_requires_expression] = STATE(2574), - [sym_lambda_expression] = STATE(2574), - [sym_lambda_capture_specifier] = STATE(4479), - [sym_fold_expression] = STATE(2574), - [sym_parameter_pack_expansion] = STATE(2574), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2578), - [sym_qualified_type_identifier] = STATE(5944), - [sym_user_defined_literal] = STATE(2574), - [sym_identifier] = ACTIONS(1523), - [anon_sym_LPAREN2] = ACTIONS(1527), - [anon_sym_BANG] = ACTIONS(1531), - [anon_sym_TILDE] = ACTIONS(1531), - [anon_sym_DASH] = ACTIONS(1529), - [anon_sym_PLUS] = ACTIONS(1529), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1539), - [anon_sym_RBRACK] = ACTIONS(3734), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(1529), - [anon_sym_compl] = ACTIONS(1529), - [anon_sym_DASH_DASH] = ACTIONS(1543), - [anon_sym_PLUS_PLUS] = ACTIONS(1543), - [anon_sym_sizeof] = ACTIONS(1545), - [sym_number_literal] = ACTIONS(1547), - [anon_sym_L_SQUOTE] = ACTIONS(1549), - [anon_sym_u_SQUOTE] = ACTIONS(1549), - [anon_sym_U_SQUOTE] = ACTIONS(1549), - [anon_sym_u8_SQUOTE] = ACTIONS(1549), - [anon_sym_SQUOTE] = ACTIONS(1549), - [anon_sym_L_DQUOTE] = ACTIONS(1551), - [anon_sym_u_DQUOTE] = ACTIONS(1551), - [anon_sym_U_DQUOTE] = ACTIONS(1551), - [anon_sym_u8_DQUOTE] = ACTIONS(1551), - [anon_sym_DQUOTE] = ACTIONS(1551), - [sym_true] = ACTIONS(1553), - [sym_false] = ACTIONS(1553), - [sym_null] = ACTIONS(1553), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1557), - [anon_sym_R_DQUOTE] = ACTIONS(1559), - [anon_sym_LR_DQUOTE] = ACTIONS(1559), - [anon_sym_uR_DQUOTE] = ACTIONS(1559), - [anon_sym_UR_DQUOTE] = ACTIONS(1559), - [anon_sym_u8R_DQUOTE] = ACTIONS(1559), - [anon_sym_co_await] = ACTIONS(1561), - [anon_sym_new] = ACTIONS(1563), - [anon_sym_requires] = ACTIONS(1565), - [sym_this] = ACTIONS(1553), - [sym_nullptr] = ACTIONS(1553), + [sym_identifier] = ACTIONS(2904), + [anon_sym_LPAREN2] = ACTIONS(2906), + [anon_sym_BANG] = ACTIONS(2906), + [anon_sym_TILDE] = ACTIONS(2906), + [anon_sym_DASH] = ACTIONS(2904), + [anon_sym_PLUS] = ACTIONS(2904), + [anon_sym_STAR] = ACTIONS(2906), + [anon_sym_AMP] = ACTIONS(2906), + [anon_sym_SEMI] = ACTIONS(2906), + [anon_sym_typedef] = ACTIONS(2904), + [anon_sym_extern] = ACTIONS(2904), + [anon_sym___attribute__] = ACTIONS(2904), + [anon_sym_COLON_COLON] = ACTIONS(2906), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2906), + [anon_sym___declspec] = ACTIONS(2904), + [anon_sym_LBRACE] = ACTIONS(2906), + [anon_sym_LBRACK] = ACTIONS(2904), + [anon_sym_static] = ACTIONS(2904), + [anon_sym_register] = ACTIONS(2904), + [anon_sym_inline] = ACTIONS(2904), + [anon_sym_thread_local] = ACTIONS(2904), + [anon_sym_const] = ACTIONS(2904), + [anon_sym_constexpr] = ACTIONS(2904), + [anon_sym_volatile] = ACTIONS(2904), + [anon_sym_restrict] = ACTIONS(2904), + [anon_sym___restrict__] = ACTIONS(2904), + [anon_sym__Atomic] = ACTIONS(2904), + [anon_sym__Noreturn] = ACTIONS(2904), + [anon_sym_noreturn] = ACTIONS(2904), + [anon_sym_mutable] = ACTIONS(2904), + [anon_sym_constinit] = ACTIONS(2904), + [anon_sym_consteval] = ACTIONS(2904), + [anon_sym_signed] = ACTIONS(2904), + [anon_sym_unsigned] = ACTIONS(2904), + [anon_sym_long] = ACTIONS(2904), + [anon_sym_short] = ACTIONS(2904), + [sym_primitive_type] = ACTIONS(2904), + [anon_sym_enum] = ACTIONS(2904), + [anon_sym_class] = ACTIONS(2904), + [anon_sym_struct] = ACTIONS(2904), + [anon_sym_union] = ACTIONS(2904), + [anon_sym_if] = ACTIONS(2904), + [anon_sym_else] = ACTIONS(2904), + [anon_sym_switch] = ACTIONS(2904), + [anon_sym_while] = ACTIONS(2904), + [anon_sym_do] = ACTIONS(2904), + [anon_sym_for] = ACTIONS(2904), + [anon_sym_return] = ACTIONS(2904), + [anon_sym_break] = ACTIONS(2904), + [anon_sym_continue] = ACTIONS(2904), + [anon_sym_goto] = ACTIONS(2904), + [anon_sym_not] = ACTIONS(2904), + [anon_sym_compl] = ACTIONS(2904), + [anon_sym_DASH_DASH] = ACTIONS(2906), + [anon_sym_PLUS_PLUS] = ACTIONS(2906), + [anon_sym_sizeof] = ACTIONS(2904), + [anon_sym_offsetof] = ACTIONS(2904), + [anon_sym__Generic] = ACTIONS(2904), + [anon_sym_asm] = ACTIONS(2904), + [anon_sym___asm__] = ACTIONS(2904), + [sym_number_literal] = ACTIONS(2906), + [anon_sym_L_SQUOTE] = ACTIONS(2906), + [anon_sym_u_SQUOTE] = ACTIONS(2906), + [anon_sym_U_SQUOTE] = ACTIONS(2906), + [anon_sym_u8_SQUOTE] = ACTIONS(2906), + [anon_sym_SQUOTE] = ACTIONS(2906), + [anon_sym_L_DQUOTE] = ACTIONS(2906), + [anon_sym_u_DQUOTE] = ACTIONS(2906), + [anon_sym_U_DQUOTE] = ACTIONS(2906), + [anon_sym_u8_DQUOTE] = ACTIONS(2906), + [anon_sym_DQUOTE] = ACTIONS(2906), + [sym_true] = ACTIONS(2904), + [sym_false] = ACTIONS(2904), + [anon_sym_NULL] = ACTIONS(2904), + [anon_sym_nullptr] = ACTIONS(2904), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2904), + [anon_sym_decltype] = ACTIONS(2904), + [anon_sym_virtual] = ACTIONS(2904), + [anon_sym_typename] = ACTIONS(2904), + [anon_sym_template] = ACTIONS(2904), + [anon_sym_try] = ACTIONS(2904), + [anon_sym_delete] = ACTIONS(2904), + [anon_sym_throw] = ACTIONS(2904), + [anon_sym_co_return] = ACTIONS(2904), + [anon_sym_co_yield] = ACTIONS(2904), + [anon_sym_R_DQUOTE] = ACTIONS(2906), + [anon_sym_LR_DQUOTE] = ACTIONS(2906), + [anon_sym_uR_DQUOTE] = ACTIONS(2906), + [anon_sym_UR_DQUOTE] = ACTIONS(2906), + [anon_sym_u8R_DQUOTE] = ACTIONS(2906), + [anon_sym_co_await] = ACTIONS(2904), + [anon_sym_new] = ACTIONS(2904), + [anon_sym_requires] = ACTIONS(2904), + [sym_this] = ACTIONS(2904), }, [1521] = { - [sym__expression] = STATE(2922), - [sym_conditional_expression] = STATE(3035), - [sym_assignment_expression] = STATE(3035), - [sym_pointer_expression] = STATE(2713), - [sym_unary_expression] = STATE(3035), - [sym_binary_expression] = STATE(3035), - [sym_update_expression] = STATE(3035), - [sym_cast_expression] = STATE(3035), - [sym_sizeof_expression] = STATE(3035), - [sym_subscript_expression] = STATE(2713), - [sym_call_expression] = STATE(2713), - [sym_field_expression] = STATE(2713), - [sym_compound_literal_expression] = STATE(3035), - [sym_parenthesized_expression] = STATE(2713), - [sym_char_literal] = STATE(3013), - [sym_concatenated_string] = STATE(3013), - [sym_string_literal] = STATE(1900), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5990), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3035), - [sym_raw_string_literal] = STATE(1900), - [sym_co_await_expression] = STATE(3035), - [sym_new_expression] = STATE(3035), - [sym_delete_expression] = STATE(3035), - [sym_requires_clause] = STATE(3035), - [sym_requires_expression] = STATE(3035), - [sym_lambda_expression] = STATE(3035), - [sym_lambda_capture_specifier] = STATE(4465), - [sym_fold_expression] = STATE(3035), - [sym_parameter_pack_expansion] = STATE(3035), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4584), - [sym_qualified_identifier] = STATE(2713), - [sym_qualified_type_identifier] = STATE(5990), - [sym_user_defined_literal] = STATE(3035), - [sym_identifier] = ACTIONS(1643), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3736), - [anon_sym_LPAREN2] = ACTIONS(1439), - [anon_sym_BANG] = ACTIONS(1441), - [anon_sym_TILDE] = ACTIONS(1441), - [anon_sym_DASH] = ACTIONS(1443), - [anon_sym_PLUS] = ACTIONS(1443), - [anon_sym_STAR] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(1445), - [anon_sym_COLON_COLON] = ACTIONS(1447), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1581), - [anon_sym_not] = ACTIONS(1443), - [anon_sym_compl] = ACTIONS(1443), - [anon_sym_DASH_DASH] = ACTIONS(1459), - [anon_sym_PLUS_PLUS] = ACTIONS(1459), - [anon_sym_sizeof] = ACTIONS(1461), - [sym_number_literal] = ACTIONS(1463), - [anon_sym_L_SQUOTE] = ACTIONS(1465), - [anon_sym_u_SQUOTE] = ACTIONS(1465), - [anon_sym_U_SQUOTE] = ACTIONS(1465), - [anon_sym_u8_SQUOTE] = ACTIONS(1465), - [anon_sym_SQUOTE] = ACTIONS(1465), - [anon_sym_L_DQUOTE] = ACTIONS(1467), - [anon_sym_u_DQUOTE] = ACTIONS(1467), - [anon_sym_U_DQUOTE] = ACTIONS(1467), - [anon_sym_u8_DQUOTE] = ACTIONS(1467), - [anon_sym_DQUOTE] = ACTIONS(1467), - [sym_true] = ACTIONS(1469), - [sym_false] = ACTIONS(1469), - [sym_null] = ACTIONS(1469), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1473), - [anon_sym_R_DQUOTE] = ACTIONS(1475), - [anon_sym_LR_DQUOTE] = ACTIONS(1475), - [anon_sym_uR_DQUOTE] = ACTIONS(1475), - [anon_sym_UR_DQUOTE] = ACTIONS(1475), - [anon_sym_u8R_DQUOTE] = ACTIONS(1475), - [anon_sym_co_await] = ACTIONS(1477), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_requires] = ACTIONS(1481), - [sym_this] = ACTIONS(1469), - [sym_nullptr] = ACTIONS(1469), + [sym_identifier] = ACTIONS(3008), + [anon_sym_LPAREN2] = ACTIONS(3010), + [anon_sym_BANG] = ACTIONS(3010), + [anon_sym_TILDE] = ACTIONS(3010), + [anon_sym_DASH] = ACTIONS(3008), + [anon_sym_PLUS] = ACTIONS(3008), + [anon_sym_STAR] = ACTIONS(3010), + [anon_sym_AMP] = ACTIONS(3010), + [anon_sym_SEMI] = ACTIONS(3010), + [anon_sym_typedef] = ACTIONS(3008), + [anon_sym_extern] = ACTIONS(3008), + [anon_sym___attribute__] = ACTIONS(3008), + [anon_sym_COLON_COLON] = ACTIONS(3010), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3010), + [anon_sym___declspec] = ACTIONS(3008), + [anon_sym_LBRACE] = ACTIONS(3010), + [anon_sym_LBRACK] = ACTIONS(3008), + [anon_sym_static] = ACTIONS(3008), + [anon_sym_register] = ACTIONS(3008), + [anon_sym_inline] = ACTIONS(3008), + [anon_sym_thread_local] = ACTIONS(3008), + [anon_sym_const] = ACTIONS(3008), + [anon_sym_constexpr] = ACTIONS(3008), + [anon_sym_volatile] = ACTIONS(3008), + [anon_sym_restrict] = ACTIONS(3008), + [anon_sym___restrict__] = ACTIONS(3008), + [anon_sym__Atomic] = ACTIONS(3008), + [anon_sym__Noreturn] = ACTIONS(3008), + [anon_sym_noreturn] = ACTIONS(3008), + [anon_sym_mutable] = ACTIONS(3008), + [anon_sym_constinit] = ACTIONS(3008), + [anon_sym_consteval] = ACTIONS(3008), + [anon_sym_signed] = ACTIONS(3008), + [anon_sym_unsigned] = ACTIONS(3008), + [anon_sym_long] = ACTIONS(3008), + [anon_sym_short] = ACTIONS(3008), + [sym_primitive_type] = ACTIONS(3008), + [anon_sym_enum] = ACTIONS(3008), + [anon_sym_class] = ACTIONS(3008), + [anon_sym_struct] = ACTIONS(3008), + [anon_sym_union] = ACTIONS(3008), + [anon_sym_if] = ACTIONS(3008), + [anon_sym_else] = ACTIONS(3008), + [anon_sym_switch] = ACTIONS(3008), + [anon_sym_while] = ACTIONS(3008), + [anon_sym_do] = ACTIONS(3008), + [anon_sym_for] = ACTIONS(3008), + [anon_sym_return] = ACTIONS(3008), + [anon_sym_break] = ACTIONS(3008), + [anon_sym_continue] = ACTIONS(3008), + [anon_sym_goto] = ACTIONS(3008), + [anon_sym_not] = ACTIONS(3008), + [anon_sym_compl] = ACTIONS(3008), + [anon_sym_DASH_DASH] = ACTIONS(3010), + [anon_sym_PLUS_PLUS] = ACTIONS(3010), + [anon_sym_sizeof] = ACTIONS(3008), + [anon_sym_offsetof] = ACTIONS(3008), + [anon_sym__Generic] = ACTIONS(3008), + [anon_sym_asm] = ACTIONS(3008), + [anon_sym___asm__] = ACTIONS(3008), + [sym_number_literal] = ACTIONS(3010), + [anon_sym_L_SQUOTE] = ACTIONS(3010), + [anon_sym_u_SQUOTE] = ACTIONS(3010), + [anon_sym_U_SQUOTE] = ACTIONS(3010), + [anon_sym_u8_SQUOTE] = ACTIONS(3010), + [anon_sym_SQUOTE] = ACTIONS(3010), + [anon_sym_L_DQUOTE] = ACTIONS(3010), + [anon_sym_u_DQUOTE] = ACTIONS(3010), + [anon_sym_U_DQUOTE] = ACTIONS(3010), + [anon_sym_u8_DQUOTE] = ACTIONS(3010), + [anon_sym_DQUOTE] = ACTIONS(3010), + [sym_true] = ACTIONS(3008), + [sym_false] = ACTIONS(3008), + [anon_sym_NULL] = ACTIONS(3008), + [anon_sym_nullptr] = ACTIONS(3008), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3008), + [anon_sym_decltype] = ACTIONS(3008), + [anon_sym_virtual] = ACTIONS(3008), + [anon_sym_typename] = ACTIONS(3008), + [anon_sym_template] = ACTIONS(3008), + [anon_sym_try] = ACTIONS(3008), + [anon_sym_delete] = ACTIONS(3008), + [anon_sym_throw] = ACTIONS(3008), + [anon_sym_co_return] = ACTIONS(3008), + [anon_sym_co_yield] = ACTIONS(3008), + [anon_sym_R_DQUOTE] = ACTIONS(3010), + [anon_sym_LR_DQUOTE] = ACTIONS(3010), + [anon_sym_uR_DQUOTE] = ACTIONS(3010), + [anon_sym_UR_DQUOTE] = ACTIONS(3010), + [anon_sym_u8R_DQUOTE] = ACTIONS(3010), + [anon_sym_co_await] = ACTIONS(3008), + [anon_sym_new] = ACTIONS(3008), + [anon_sym_requires] = ACTIONS(3008), + [sym_this] = ACTIONS(3008), }, [1522] = { - [sym__expression] = STATE(2495), - [sym_conditional_expression] = STATE(2574), - [sym_assignment_expression] = STATE(2574), - [sym_pointer_expression] = STATE(2578), - [sym_unary_expression] = STATE(2574), - [sym_binary_expression] = STATE(2574), - [sym_update_expression] = STATE(2574), - [sym_cast_expression] = STATE(2574), - [sym_sizeof_expression] = STATE(2574), - [sym_subscript_expression] = STATE(2578), - [sym_call_expression] = STATE(2578), - [sym_field_expression] = STATE(2578), - [sym_compound_literal_expression] = STATE(2574), - [sym_parenthesized_expression] = STATE(2578), - [sym_char_literal] = STATE(2207), - [sym_concatenated_string] = STATE(2207), - [sym_string_literal] = STATE(1820), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5944), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(2574), - [sym_raw_string_literal] = STATE(1820), - [sym_co_await_expression] = STATE(2574), - [sym_new_expression] = STATE(2574), - [sym_delete_expression] = STATE(2574), - [sym_requires_clause] = STATE(2574), - [sym_requires_expression] = STATE(2574), - [sym_lambda_expression] = STATE(2574), - [sym_lambda_capture_specifier] = STATE(4479), - [sym_fold_expression] = STATE(2574), - [sym_parameter_pack_expansion] = STATE(2574), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2578), - [sym_qualified_type_identifier] = STATE(5944), - [sym_user_defined_literal] = STATE(2574), - [sym_identifier] = ACTIONS(1523), - [anon_sym_LPAREN2] = ACTIONS(1527), - [anon_sym_BANG] = ACTIONS(1531), - [anon_sym_TILDE] = ACTIONS(1531), - [anon_sym_DASH] = ACTIONS(1529), - [anon_sym_PLUS] = ACTIONS(1529), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1539), - [anon_sym_RBRACK] = ACTIONS(3739), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(1529), - [anon_sym_compl] = ACTIONS(1529), - [anon_sym_DASH_DASH] = ACTIONS(1543), - [anon_sym_PLUS_PLUS] = ACTIONS(1543), - [anon_sym_sizeof] = ACTIONS(1545), - [sym_number_literal] = ACTIONS(1547), - [anon_sym_L_SQUOTE] = ACTIONS(1549), - [anon_sym_u_SQUOTE] = ACTIONS(1549), - [anon_sym_U_SQUOTE] = ACTIONS(1549), - [anon_sym_u8_SQUOTE] = ACTIONS(1549), - [anon_sym_SQUOTE] = ACTIONS(1549), - [anon_sym_L_DQUOTE] = ACTIONS(1551), - [anon_sym_u_DQUOTE] = ACTIONS(1551), - [anon_sym_U_DQUOTE] = ACTIONS(1551), - [anon_sym_u8_DQUOTE] = ACTIONS(1551), - [anon_sym_DQUOTE] = ACTIONS(1551), - [sym_true] = ACTIONS(1553), - [sym_false] = ACTIONS(1553), - [sym_null] = ACTIONS(1553), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1557), - [anon_sym_R_DQUOTE] = ACTIONS(1559), - [anon_sym_LR_DQUOTE] = ACTIONS(1559), - [anon_sym_uR_DQUOTE] = ACTIONS(1559), - [anon_sym_UR_DQUOTE] = ACTIONS(1559), - [anon_sym_u8R_DQUOTE] = ACTIONS(1559), - [anon_sym_co_await] = ACTIONS(1561), - [anon_sym_new] = ACTIONS(1563), - [anon_sym_requires] = ACTIONS(1565), - [sym_this] = ACTIONS(1553), - [sym_nullptr] = ACTIONS(1553), + [sym_identifier] = ACTIONS(3032), + [anon_sym_LPAREN2] = ACTIONS(3034), + [anon_sym_BANG] = ACTIONS(3034), + [anon_sym_TILDE] = ACTIONS(3034), + [anon_sym_DASH] = ACTIONS(3032), + [anon_sym_PLUS] = ACTIONS(3032), + [anon_sym_STAR] = ACTIONS(3034), + [anon_sym_AMP] = ACTIONS(3034), + [anon_sym_SEMI] = ACTIONS(3034), + [anon_sym_typedef] = ACTIONS(3032), + [anon_sym_extern] = ACTIONS(3032), + [anon_sym___attribute__] = ACTIONS(3032), + [anon_sym_COLON_COLON] = ACTIONS(3034), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3034), + [anon_sym___declspec] = ACTIONS(3032), + [anon_sym_LBRACE] = ACTIONS(3034), + [anon_sym_LBRACK] = ACTIONS(3032), + [anon_sym_static] = ACTIONS(3032), + [anon_sym_register] = ACTIONS(3032), + [anon_sym_inline] = ACTIONS(3032), + [anon_sym_thread_local] = ACTIONS(3032), + [anon_sym_const] = ACTIONS(3032), + [anon_sym_constexpr] = ACTIONS(3032), + [anon_sym_volatile] = ACTIONS(3032), + [anon_sym_restrict] = ACTIONS(3032), + [anon_sym___restrict__] = ACTIONS(3032), + [anon_sym__Atomic] = ACTIONS(3032), + [anon_sym__Noreturn] = ACTIONS(3032), + [anon_sym_noreturn] = ACTIONS(3032), + [anon_sym_mutable] = ACTIONS(3032), + [anon_sym_constinit] = ACTIONS(3032), + [anon_sym_consteval] = ACTIONS(3032), + [anon_sym_signed] = ACTIONS(3032), + [anon_sym_unsigned] = ACTIONS(3032), + [anon_sym_long] = ACTIONS(3032), + [anon_sym_short] = ACTIONS(3032), + [sym_primitive_type] = ACTIONS(3032), + [anon_sym_enum] = ACTIONS(3032), + [anon_sym_class] = ACTIONS(3032), + [anon_sym_struct] = ACTIONS(3032), + [anon_sym_union] = ACTIONS(3032), + [anon_sym_if] = ACTIONS(3032), + [anon_sym_else] = ACTIONS(3032), + [anon_sym_switch] = ACTIONS(3032), + [anon_sym_while] = ACTIONS(3032), + [anon_sym_do] = ACTIONS(3032), + [anon_sym_for] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3032), + [anon_sym_break] = ACTIONS(3032), + [anon_sym_continue] = ACTIONS(3032), + [anon_sym_goto] = ACTIONS(3032), + [anon_sym_not] = ACTIONS(3032), + [anon_sym_compl] = ACTIONS(3032), + [anon_sym_DASH_DASH] = ACTIONS(3034), + [anon_sym_PLUS_PLUS] = ACTIONS(3034), + [anon_sym_sizeof] = ACTIONS(3032), + [anon_sym_offsetof] = ACTIONS(3032), + [anon_sym__Generic] = ACTIONS(3032), + [anon_sym_asm] = ACTIONS(3032), + [anon_sym___asm__] = ACTIONS(3032), + [sym_number_literal] = ACTIONS(3034), + [anon_sym_L_SQUOTE] = ACTIONS(3034), + [anon_sym_u_SQUOTE] = ACTIONS(3034), + [anon_sym_U_SQUOTE] = ACTIONS(3034), + [anon_sym_u8_SQUOTE] = ACTIONS(3034), + [anon_sym_SQUOTE] = ACTIONS(3034), + [anon_sym_L_DQUOTE] = ACTIONS(3034), + [anon_sym_u_DQUOTE] = ACTIONS(3034), + [anon_sym_U_DQUOTE] = ACTIONS(3034), + [anon_sym_u8_DQUOTE] = ACTIONS(3034), + [anon_sym_DQUOTE] = ACTIONS(3034), + [sym_true] = ACTIONS(3032), + [sym_false] = ACTIONS(3032), + [anon_sym_NULL] = ACTIONS(3032), + [anon_sym_nullptr] = ACTIONS(3032), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3032), + [anon_sym_decltype] = ACTIONS(3032), + [anon_sym_virtual] = ACTIONS(3032), + [anon_sym_typename] = ACTIONS(3032), + [anon_sym_template] = ACTIONS(3032), + [anon_sym_try] = ACTIONS(3032), + [anon_sym_delete] = ACTIONS(3032), + [anon_sym_throw] = ACTIONS(3032), + [anon_sym_co_return] = ACTIONS(3032), + [anon_sym_co_yield] = ACTIONS(3032), + [anon_sym_R_DQUOTE] = ACTIONS(3034), + [anon_sym_LR_DQUOTE] = ACTIONS(3034), + [anon_sym_uR_DQUOTE] = ACTIONS(3034), + [anon_sym_UR_DQUOTE] = ACTIONS(3034), + [anon_sym_u8R_DQUOTE] = ACTIONS(3034), + [anon_sym_co_await] = ACTIONS(3032), + [anon_sym_new] = ACTIONS(3032), + [anon_sym_requires] = ACTIONS(3032), + [sym_this] = ACTIONS(3032), }, [1523] = { - [sym__expression] = STATE(3736), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2954), - [anon_sym_LPAREN2] = ACTIONS(984), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3741), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [sym_identifier] = ACTIONS(2944), + [anon_sym_LPAREN2] = ACTIONS(2946), + [anon_sym_BANG] = ACTIONS(2946), + [anon_sym_TILDE] = ACTIONS(2946), + [anon_sym_DASH] = ACTIONS(2944), + [anon_sym_PLUS] = ACTIONS(2944), + [anon_sym_STAR] = ACTIONS(2946), + [anon_sym_AMP] = ACTIONS(2946), + [anon_sym_SEMI] = ACTIONS(2946), + [anon_sym_typedef] = ACTIONS(2944), + [anon_sym_extern] = ACTIONS(2944), + [anon_sym___attribute__] = ACTIONS(2944), + [anon_sym_COLON_COLON] = ACTIONS(2946), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2946), + [anon_sym___declspec] = ACTIONS(2944), + [anon_sym_LBRACE] = ACTIONS(2946), + [anon_sym_LBRACK] = ACTIONS(2944), + [anon_sym_static] = ACTIONS(2944), + [anon_sym_register] = ACTIONS(2944), + [anon_sym_inline] = ACTIONS(2944), + [anon_sym_thread_local] = ACTIONS(2944), + [anon_sym_const] = ACTIONS(2944), + [anon_sym_constexpr] = ACTIONS(2944), + [anon_sym_volatile] = ACTIONS(2944), + [anon_sym_restrict] = ACTIONS(2944), + [anon_sym___restrict__] = ACTIONS(2944), + [anon_sym__Atomic] = ACTIONS(2944), + [anon_sym__Noreturn] = ACTIONS(2944), + [anon_sym_noreturn] = ACTIONS(2944), + [anon_sym_mutable] = ACTIONS(2944), + [anon_sym_constinit] = ACTIONS(2944), + [anon_sym_consteval] = ACTIONS(2944), + [anon_sym_signed] = ACTIONS(2944), + [anon_sym_unsigned] = ACTIONS(2944), + [anon_sym_long] = ACTIONS(2944), + [anon_sym_short] = ACTIONS(2944), + [sym_primitive_type] = ACTIONS(2944), + [anon_sym_enum] = ACTIONS(2944), + [anon_sym_class] = ACTIONS(2944), + [anon_sym_struct] = ACTIONS(2944), + [anon_sym_union] = ACTIONS(2944), + [anon_sym_if] = ACTIONS(2944), + [anon_sym_else] = ACTIONS(2944), + [anon_sym_switch] = ACTIONS(2944), + [anon_sym_while] = ACTIONS(2944), + [anon_sym_do] = ACTIONS(2944), + [anon_sym_for] = ACTIONS(2944), + [anon_sym_return] = ACTIONS(2944), + [anon_sym_break] = ACTIONS(2944), + [anon_sym_continue] = ACTIONS(2944), + [anon_sym_goto] = ACTIONS(2944), + [anon_sym_not] = ACTIONS(2944), + [anon_sym_compl] = ACTIONS(2944), + [anon_sym_DASH_DASH] = ACTIONS(2946), + [anon_sym_PLUS_PLUS] = ACTIONS(2946), + [anon_sym_sizeof] = ACTIONS(2944), + [anon_sym_offsetof] = ACTIONS(2944), + [anon_sym__Generic] = ACTIONS(2944), + [anon_sym_asm] = ACTIONS(2944), + [anon_sym___asm__] = ACTIONS(2944), + [sym_number_literal] = ACTIONS(2946), + [anon_sym_L_SQUOTE] = ACTIONS(2946), + [anon_sym_u_SQUOTE] = ACTIONS(2946), + [anon_sym_U_SQUOTE] = ACTIONS(2946), + [anon_sym_u8_SQUOTE] = ACTIONS(2946), + [anon_sym_SQUOTE] = ACTIONS(2946), + [anon_sym_L_DQUOTE] = ACTIONS(2946), + [anon_sym_u_DQUOTE] = ACTIONS(2946), + [anon_sym_U_DQUOTE] = ACTIONS(2946), + [anon_sym_u8_DQUOTE] = ACTIONS(2946), + [anon_sym_DQUOTE] = ACTIONS(2946), + [sym_true] = ACTIONS(2944), + [sym_false] = ACTIONS(2944), + [anon_sym_NULL] = ACTIONS(2944), + [anon_sym_nullptr] = ACTIONS(2944), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2944), + [anon_sym_decltype] = ACTIONS(2944), + [anon_sym_virtual] = ACTIONS(2944), + [anon_sym_typename] = ACTIONS(2944), + [anon_sym_template] = ACTIONS(2944), + [anon_sym_try] = ACTIONS(2944), + [anon_sym_delete] = ACTIONS(2944), + [anon_sym_throw] = ACTIONS(2944), + [anon_sym_co_return] = ACTIONS(2944), + [anon_sym_co_yield] = ACTIONS(2944), + [anon_sym_R_DQUOTE] = ACTIONS(2946), + [anon_sym_LR_DQUOTE] = ACTIONS(2946), + [anon_sym_uR_DQUOTE] = ACTIONS(2946), + [anon_sym_UR_DQUOTE] = ACTIONS(2946), + [anon_sym_u8R_DQUOTE] = ACTIONS(2946), + [anon_sym_co_await] = ACTIONS(2944), + [anon_sym_new] = ACTIONS(2944), + [anon_sym_requires] = ACTIONS(2944), + [sym_this] = ACTIONS(2944), }, [1524] = { - [sym__expression] = STATE(3392), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2954), - [anon_sym_LPAREN2] = ACTIONS(984), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(3743), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(3594), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [sym_identifier] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3050), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, [1525] = { - [sym__expression] = STATE(3769), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2954), - [anon_sym_LPAREN2] = ACTIONS(984), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [sym_identifier] = ACTIONS(3093), + [anon_sym_LPAREN2] = ACTIONS(3095), + [anon_sym_BANG] = ACTIONS(3095), + [anon_sym_TILDE] = ACTIONS(3095), + [anon_sym_DASH] = ACTIONS(3093), + [anon_sym_PLUS] = ACTIONS(3093), + [anon_sym_STAR] = ACTIONS(3095), + [anon_sym_AMP] = ACTIONS(3095), + [anon_sym_SEMI] = ACTIONS(3095), + [anon_sym_typedef] = ACTIONS(3093), + [anon_sym_extern] = ACTIONS(3093), + [anon_sym___attribute__] = ACTIONS(3093), + [anon_sym_COLON_COLON] = ACTIONS(3095), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3095), + [anon_sym___declspec] = ACTIONS(3093), + [anon_sym_LBRACE] = ACTIONS(3095), + [anon_sym_LBRACK] = ACTIONS(3093), + [anon_sym_static] = ACTIONS(3093), + [anon_sym_register] = ACTIONS(3093), + [anon_sym_inline] = ACTIONS(3093), + [anon_sym_thread_local] = ACTIONS(3093), + [anon_sym_const] = ACTIONS(3093), + [anon_sym_constexpr] = ACTIONS(3093), + [anon_sym_volatile] = ACTIONS(3093), + [anon_sym_restrict] = ACTIONS(3093), + [anon_sym___restrict__] = ACTIONS(3093), + [anon_sym__Atomic] = ACTIONS(3093), + [anon_sym__Noreturn] = ACTIONS(3093), + [anon_sym_noreturn] = ACTIONS(3093), + [anon_sym_mutable] = ACTIONS(3093), + [anon_sym_constinit] = ACTIONS(3093), + [anon_sym_consteval] = ACTIONS(3093), + [anon_sym_signed] = ACTIONS(3093), + [anon_sym_unsigned] = ACTIONS(3093), + [anon_sym_long] = ACTIONS(3093), + [anon_sym_short] = ACTIONS(3093), + [sym_primitive_type] = ACTIONS(3093), + [anon_sym_enum] = ACTIONS(3093), + [anon_sym_class] = ACTIONS(3093), + [anon_sym_struct] = ACTIONS(3093), + [anon_sym_union] = ACTIONS(3093), + [anon_sym_if] = ACTIONS(3093), + [anon_sym_else] = ACTIONS(3093), + [anon_sym_switch] = ACTIONS(3093), + [anon_sym_while] = ACTIONS(3093), + [anon_sym_do] = ACTIONS(3093), + [anon_sym_for] = ACTIONS(3093), + [anon_sym_return] = ACTIONS(3093), + [anon_sym_break] = ACTIONS(3093), + [anon_sym_continue] = ACTIONS(3093), + [anon_sym_goto] = ACTIONS(3093), + [anon_sym_not] = ACTIONS(3093), + [anon_sym_compl] = ACTIONS(3093), + [anon_sym_DASH_DASH] = ACTIONS(3095), + [anon_sym_PLUS_PLUS] = ACTIONS(3095), + [anon_sym_sizeof] = ACTIONS(3093), + [anon_sym_offsetof] = ACTIONS(3093), + [anon_sym__Generic] = ACTIONS(3093), + [anon_sym_asm] = ACTIONS(3093), + [anon_sym___asm__] = ACTIONS(3093), + [sym_number_literal] = ACTIONS(3095), + [anon_sym_L_SQUOTE] = ACTIONS(3095), + [anon_sym_u_SQUOTE] = ACTIONS(3095), + [anon_sym_U_SQUOTE] = ACTIONS(3095), + [anon_sym_u8_SQUOTE] = ACTIONS(3095), + [anon_sym_SQUOTE] = ACTIONS(3095), + [anon_sym_L_DQUOTE] = ACTIONS(3095), + [anon_sym_u_DQUOTE] = ACTIONS(3095), + [anon_sym_U_DQUOTE] = ACTIONS(3095), + [anon_sym_u8_DQUOTE] = ACTIONS(3095), + [anon_sym_DQUOTE] = ACTIONS(3095), + [sym_true] = ACTIONS(3093), + [sym_false] = ACTIONS(3093), + [anon_sym_NULL] = ACTIONS(3093), + [anon_sym_nullptr] = ACTIONS(3093), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3093), + [anon_sym_decltype] = ACTIONS(3093), + [anon_sym_virtual] = ACTIONS(3093), + [anon_sym_typename] = ACTIONS(3093), + [anon_sym_template] = ACTIONS(3093), + [anon_sym_try] = ACTIONS(3093), + [anon_sym_delete] = ACTIONS(3093), + [anon_sym_throw] = ACTIONS(3093), + [anon_sym_co_return] = ACTIONS(3093), + [anon_sym_co_yield] = ACTIONS(3093), + [anon_sym_R_DQUOTE] = ACTIONS(3095), + [anon_sym_LR_DQUOTE] = ACTIONS(3095), + [anon_sym_uR_DQUOTE] = ACTIONS(3095), + [anon_sym_UR_DQUOTE] = ACTIONS(3095), + [anon_sym_u8R_DQUOTE] = ACTIONS(3095), + [anon_sym_co_await] = ACTIONS(3093), + [anon_sym_new] = ACTIONS(3093), + [anon_sym_requires] = ACTIONS(3093), + [sym_this] = ACTIONS(3093), }, [1526] = { - [sym__expression] = STATE(3815), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(3036), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(3036), - [sym_call_expression] = STATE(3036), - [sym_field_expression] = STATE(3036), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(3036), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(3036), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(3073), - [anon_sym_LPAREN2] = ACTIONS(3075), - [anon_sym_BANG] = ACTIONS(3079), - [anon_sym_TILDE] = ACTIONS(3079), - [anon_sym_DASH] = ACTIONS(3077), - [anon_sym_PLUS] = ACTIONS(3077), - [anon_sym_STAR] = ACTIONS(3081), - [anon_sym_AMP] = ACTIONS(3081), - [anon_sym_COLON_COLON] = ACTIONS(3083), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(3077), - [anon_sym_compl] = ACTIONS(3077), - [anon_sym_DASH_DASH] = ACTIONS(3085), - [anon_sym_PLUS_PLUS] = ACTIONS(3085), - [anon_sym_sizeof] = ACTIONS(3087), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(3089), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(3091), - [anon_sym_new] = ACTIONS(3065), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [sym_identifier] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3030), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, [1527] = { - [sym__expression] = STATE(2871), - [sym_conditional_expression] = STATE(2940), - [sym_assignment_expression] = STATE(2940), - [sym_pointer_expression] = STATE(2933), - [sym_unary_expression] = STATE(2940), - [sym_binary_expression] = STATE(2940), - [sym_update_expression] = STATE(2940), - [sym_cast_expression] = STATE(2940), - [sym_sizeof_expression] = STATE(2940), - [sym_subscript_expression] = STATE(2933), - [sym_call_expression] = STATE(2933), - [sym_field_expression] = STATE(2933), - [sym_compound_literal_expression] = STATE(2940), - [sym_parenthesized_expression] = STATE(2933), - [sym_char_literal] = STATE(2845), - [sym_concatenated_string] = STATE(2845), - [sym_string_literal] = STATE(1861), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5801), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(2940), - [sym_raw_string_literal] = STATE(1861), - [sym_co_await_expression] = STATE(2940), - [sym_new_expression] = STATE(2940), - [sym_delete_expression] = STATE(2940), - [sym_requires_clause] = STATE(2940), - [sym_requires_expression] = STATE(2940), - [sym_lambda_expression] = STATE(2940), - [sym_lambda_capture_specifier] = STATE(4464), - [sym_fold_expression] = STATE(2940), - [sym_parameter_pack_expansion] = STATE(2940), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4570), - [sym_qualified_identifier] = STATE(2933), - [sym_qualified_type_identifier] = STATE(5801), - [sym_user_defined_literal] = STATE(2940), - [sym_identifier] = ACTIONS(1605), - [anon_sym_LPAREN2] = ACTIONS(1607), - [anon_sym_BANG] = ACTIONS(1611), - [anon_sym_TILDE] = ACTIONS(1611), - [anon_sym_DASH] = ACTIONS(1609), - [anon_sym_PLUS] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(2416), - [anon_sym_AMP] = ACTIONS(2416), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1619), - [anon_sym_not] = ACTIONS(1609), - [anon_sym_compl] = ACTIONS(1609), - [anon_sym_DASH_DASH] = ACTIONS(1621), - [anon_sym_PLUS_PLUS] = ACTIONS(1621), - [anon_sym_sizeof] = ACTIONS(1623), - [sym_number_literal] = ACTIONS(1625), - [anon_sym_L_SQUOTE] = ACTIONS(1627), - [anon_sym_u_SQUOTE] = ACTIONS(1627), - [anon_sym_U_SQUOTE] = ACTIONS(1627), - [anon_sym_u8_SQUOTE] = ACTIONS(1627), - [anon_sym_SQUOTE] = ACTIONS(1627), - [anon_sym_L_DQUOTE] = ACTIONS(1629), - [anon_sym_u_DQUOTE] = ACTIONS(1629), - [anon_sym_U_DQUOTE] = ACTIONS(1629), - [anon_sym_u8_DQUOTE] = ACTIONS(1629), - [anon_sym_DQUOTE] = ACTIONS(1629), - [sym_true] = ACTIONS(1631), - [sym_false] = ACTIONS(1631), - [sym_null] = ACTIONS(1631), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1633), - [anon_sym_R_DQUOTE] = ACTIONS(1635), - [anon_sym_LR_DQUOTE] = ACTIONS(1635), - [anon_sym_uR_DQUOTE] = ACTIONS(1635), - [anon_sym_UR_DQUOTE] = ACTIONS(1635), - [anon_sym_u8R_DQUOTE] = ACTIONS(1635), - [anon_sym_co_await] = ACTIONS(1637), - [anon_sym_new] = ACTIONS(1639), - [anon_sym_requires] = ACTIONS(1641), - [sym_this] = ACTIONS(1631), - [sym_nullptr] = ACTIONS(1631), + [sym_identifier] = ACTIONS(3089), + [anon_sym_LPAREN2] = ACTIONS(3091), + [anon_sym_BANG] = ACTIONS(3091), + [anon_sym_TILDE] = ACTIONS(3091), + [anon_sym_DASH] = ACTIONS(3089), + [anon_sym_PLUS] = ACTIONS(3089), + [anon_sym_STAR] = ACTIONS(3091), + [anon_sym_AMP] = ACTIONS(3091), + [anon_sym_SEMI] = ACTIONS(3091), + [anon_sym_typedef] = ACTIONS(3089), + [anon_sym_extern] = ACTIONS(3089), + [anon_sym___attribute__] = ACTIONS(3089), + [anon_sym_COLON_COLON] = ACTIONS(3091), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3091), + [anon_sym___declspec] = ACTIONS(3089), + [anon_sym_LBRACE] = ACTIONS(3091), + [anon_sym_LBRACK] = ACTIONS(3089), + [anon_sym_static] = ACTIONS(3089), + [anon_sym_register] = ACTIONS(3089), + [anon_sym_inline] = ACTIONS(3089), + [anon_sym_thread_local] = ACTIONS(3089), + [anon_sym_const] = ACTIONS(3089), + [anon_sym_constexpr] = ACTIONS(3089), + [anon_sym_volatile] = ACTIONS(3089), + [anon_sym_restrict] = ACTIONS(3089), + [anon_sym___restrict__] = ACTIONS(3089), + [anon_sym__Atomic] = ACTIONS(3089), + [anon_sym__Noreturn] = ACTIONS(3089), + [anon_sym_noreturn] = ACTIONS(3089), + [anon_sym_mutable] = ACTIONS(3089), + [anon_sym_constinit] = ACTIONS(3089), + [anon_sym_consteval] = ACTIONS(3089), + [anon_sym_signed] = ACTIONS(3089), + [anon_sym_unsigned] = ACTIONS(3089), + [anon_sym_long] = ACTIONS(3089), + [anon_sym_short] = ACTIONS(3089), + [sym_primitive_type] = ACTIONS(3089), + [anon_sym_enum] = ACTIONS(3089), + [anon_sym_class] = ACTIONS(3089), + [anon_sym_struct] = ACTIONS(3089), + [anon_sym_union] = ACTIONS(3089), + [anon_sym_if] = ACTIONS(3089), + [anon_sym_else] = ACTIONS(3089), + [anon_sym_switch] = ACTIONS(3089), + [anon_sym_while] = ACTIONS(3089), + [anon_sym_do] = ACTIONS(3089), + [anon_sym_for] = ACTIONS(3089), + [anon_sym_return] = ACTIONS(3089), + [anon_sym_break] = ACTIONS(3089), + [anon_sym_continue] = ACTIONS(3089), + [anon_sym_goto] = ACTIONS(3089), + [anon_sym_not] = ACTIONS(3089), + [anon_sym_compl] = ACTIONS(3089), + [anon_sym_DASH_DASH] = ACTIONS(3091), + [anon_sym_PLUS_PLUS] = ACTIONS(3091), + [anon_sym_sizeof] = ACTIONS(3089), + [anon_sym_offsetof] = ACTIONS(3089), + [anon_sym__Generic] = ACTIONS(3089), + [anon_sym_asm] = ACTIONS(3089), + [anon_sym___asm__] = ACTIONS(3089), + [sym_number_literal] = ACTIONS(3091), + [anon_sym_L_SQUOTE] = ACTIONS(3091), + [anon_sym_u_SQUOTE] = ACTIONS(3091), + [anon_sym_U_SQUOTE] = ACTIONS(3091), + [anon_sym_u8_SQUOTE] = ACTIONS(3091), + [anon_sym_SQUOTE] = ACTIONS(3091), + [anon_sym_L_DQUOTE] = ACTIONS(3091), + [anon_sym_u_DQUOTE] = ACTIONS(3091), + [anon_sym_U_DQUOTE] = ACTIONS(3091), + [anon_sym_u8_DQUOTE] = ACTIONS(3091), + [anon_sym_DQUOTE] = ACTIONS(3091), + [sym_true] = ACTIONS(3089), + [sym_false] = ACTIONS(3089), + [anon_sym_NULL] = ACTIONS(3089), + [anon_sym_nullptr] = ACTIONS(3089), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3089), + [anon_sym_decltype] = ACTIONS(3089), + [anon_sym_virtual] = ACTIONS(3089), + [anon_sym_typename] = ACTIONS(3089), + [anon_sym_template] = ACTIONS(3089), + [anon_sym_try] = ACTIONS(3089), + [anon_sym_delete] = ACTIONS(3089), + [anon_sym_throw] = ACTIONS(3089), + [anon_sym_co_return] = ACTIONS(3089), + [anon_sym_co_yield] = ACTIONS(3089), + [anon_sym_R_DQUOTE] = ACTIONS(3091), + [anon_sym_LR_DQUOTE] = ACTIONS(3091), + [anon_sym_uR_DQUOTE] = ACTIONS(3091), + [anon_sym_UR_DQUOTE] = ACTIONS(3091), + [anon_sym_u8R_DQUOTE] = ACTIONS(3091), + [anon_sym_co_await] = ACTIONS(3089), + [anon_sym_new] = ACTIONS(3089), + [anon_sym_requires] = ACTIONS(3089), + [sym_this] = ACTIONS(3089), }, [1528] = { - [sym__expression] = STATE(2885), - [sym_conditional_expression] = STATE(2574), - [sym_assignment_expression] = STATE(2574), - [sym_pointer_expression] = STATE(2578), - [sym_unary_expression] = STATE(2574), - [sym_binary_expression] = STATE(2574), - [sym_update_expression] = STATE(2574), - [sym_cast_expression] = STATE(2574), - [sym_sizeof_expression] = STATE(2574), - [sym_subscript_expression] = STATE(2578), - [sym_call_expression] = STATE(2578), - [sym_field_expression] = STATE(2578), - [sym_compound_literal_expression] = STATE(2574), - [sym_parenthesized_expression] = STATE(2578), - [sym_char_literal] = STATE(2207), - [sym_concatenated_string] = STATE(2207), - [sym_string_literal] = STATE(1820), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5944), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(2574), - [sym_raw_string_literal] = STATE(1820), - [sym_co_await_expression] = STATE(2574), - [sym_new_expression] = STATE(2574), - [sym_delete_expression] = STATE(2574), - [sym_requires_clause] = STATE(2574), - [sym_requires_expression] = STATE(2574), - [sym_lambda_expression] = STATE(2574), - [sym_lambda_capture_specifier] = STATE(4479), - [sym_fold_expression] = STATE(2574), - [sym_parameter_pack_expansion] = STATE(2574), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2578), - [sym_qualified_type_identifier] = STATE(5944), - [sym_user_defined_literal] = STATE(2574), - [sym_identifier] = ACTIONS(1523), - [anon_sym_LPAREN2] = ACTIONS(1647), - [anon_sym_BANG] = ACTIONS(1651), - [anon_sym_TILDE] = ACTIONS(1651), - [anon_sym_DASH] = ACTIONS(1649), - [anon_sym_PLUS] = ACTIONS(1649), - [anon_sym_STAR] = ACTIONS(3081), - [anon_sym_AMP] = ACTIONS(3081), - [anon_sym_COLON_COLON] = ACTIONS(1655), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(1649), - [anon_sym_compl] = ACTIONS(1649), - [anon_sym_DASH_DASH] = ACTIONS(1657), - [anon_sym_PLUS_PLUS] = ACTIONS(1657), - [anon_sym_sizeof] = ACTIONS(1659), - [sym_number_literal] = ACTIONS(1547), - [anon_sym_L_SQUOTE] = ACTIONS(1549), - [anon_sym_u_SQUOTE] = ACTIONS(1549), - [anon_sym_U_SQUOTE] = ACTIONS(1549), - [anon_sym_u8_SQUOTE] = ACTIONS(1549), - [anon_sym_SQUOTE] = ACTIONS(1549), - [anon_sym_L_DQUOTE] = ACTIONS(1551), - [anon_sym_u_DQUOTE] = ACTIONS(1551), - [anon_sym_U_DQUOTE] = ACTIONS(1551), - [anon_sym_u8_DQUOTE] = ACTIONS(1551), - [anon_sym_DQUOTE] = ACTIONS(1551), - [sym_true] = ACTIONS(1553), - [sym_false] = ACTIONS(1553), - [sym_null] = ACTIONS(1553), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1661), - [anon_sym_R_DQUOTE] = ACTIONS(1559), - [anon_sym_LR_DQUOTE] = ACTIONS(1559), - [anon_sym_uR_DQUOTE] = ACTIONS(1559), - [anon_sym_UR_DQUOTE] = ACTIONS(1559), - [anon_sym_u8R_DQUOTE] = ACTIONS(1559), - [anon_sym_co_await] = ACTIONS(1663), - [anon_sym_new] = ACTIONS(1563), - [anon_sym_requires] = ACTIONS(1565), - [sym_this] = ACTIONS(1553), - [sym_nullptr] = ACTIONS(1553), + [sym_identifier] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3030), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, [1529] = { - [sym__expression] = STATE(2832), - [sym_conditional_expression] = STATE(2940), - [sym_assignment_expression] = STATE(2940), - [sym_pointer_expression] = STATE(2933), - [sym_unary_expression] = STATE(2940), - [sym_binary_expression] = STATE(2940), - [sym_update_expression] = STATE(2940), - [sym_cast_expression] = STATE(2940), - [sym_sizeof_expression] = STATE(2940), - [sym_subscript_expression] = STATE(2933), - [sym_call_expression] = STATE(2933), - [sym_field_expression] = STATE(2933), - [sym_compound_literal_expression] = STATE(2940), - [sym_parenthesized_expression] = STATE(2933), - [sym_char_literal] = STATE(2845), - [sym_concatenated_string] = STATE(2845), - [sym_string_literal] = STATE(1861), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5801), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(2940), - [sym_raw_string_literal] = STATE(1861), - [sym_co_await_expression] = STATE(2940), - [sym_new_expression] = STATE(2940), - [sym_delete_expression] = STATE(2940), - [sym_requires_clause] = STATE(2940), - [sym_requires_expression] = STATE(2940), - [sym_lambda_expression] = STATE(2940), - [sym_lambda_capture_specifier] = STATE(4464), - [sym_fold_expression] = STATE(2940), - [sym_parameter_pack_expansion] = STATE(2940), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4570), - [sym_qualified_identifier] = STATE(2933), - [sym_qualified_type_identifier] = STATE(5801), - [sym_user_defined_literal] = STATE(2940), - [sym_identifier] = ACTIONS(1605), - [anon_sym_LPAREN2] = ACTIONS(1607), - [anon_sym_BANG] = ACTIONS(1611), - [anon_sym_TILDE] = ACTIONS(1611), - [anon_sym_DASH] = ACTIONS(1609), - [anon_sym_PLUS] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(2416), - [anon_sym_AMP] = ACTIONS(2416), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1619), - [anon_sym_not] = ACTIONS(1609), - [anon_sym_compl] = ACTIONS(1609), - [anon_sym_DASH_DASH] = ACTIONS(1621), - [anon_sym_PLUS_PLUS] = ACTIONS(1621), - [anon_sym_sizeof] = ACTIONS(1623), - [sym_number_literal] = ACTIONS(1625), - [anon_sym_L_SQUOTE] = ACTIONS(1627), - [anon_sym_u_SQUOTE] = ACTIONS(1627), - [anon_sym_U_SQUOTE] = ACTIONS(1627), - [anon_sym_u8_SQUOTE] = ACTIONS(1627), - [anon_sym_SQUOTE] = ACTIONS(1627), - [anon_sym_L_DQUOTE] = ACTIONS(1629), - [anon_sym_u_DQUOTE] = ACTIONS(1629), - [anon_sym_U_DQUOTE] = ACTIONS(1629), - [anon_sym_u8_DQUOTE] = ACTIONS(1629), - [anon_sym_DQUOTE] = ACTIONS(1629), - [sym_true] = ACTIONS(1631), - [sym_false] = ACTIONS(1631), - [sym_null] = ACTIONS(1631), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1633), - [anon_sym_R_DQUOTE] = ACTIONS(1635), - [anon_sym_LR_DQUOTE] = ACTIONS(1635), - [anon_sym_uR_DQUOTE] = ACTIONS(1635), - [anon_sym_UR_DQUOTE] = ACTIONS(1635), - [anon_sym_u8R_DQUOTE] = ACTIONS(1635), - [anon_sym_co_await] = ACTIONS(1637), - [anon_sym_new] = ACTIONS(1639), - [anon_sym_requires] = ACTIONS(1641), - [sym_this] = ACTIONS(1631), - [sym_nullptr] = ACTIONS(1631), + [sym_identifier] = ACTIONS(3105), + [anon_sym_LPAREN2] = ACTIONS(3107), + [anon_sym_BANG] = ACTIONS(3107), + [anon_sym_TILDE] = ACTIONS(3107), + [anon_sym_DASH] = ACTIONS(3105), + [anon_sym_PLUS] = ACTIONS(3105), + [anon_sym_STAR] = ACTIONS(3107), + [anon_sym_AMP] = ACTIONS(3107), + [anon_sym_SEMI] = ACTIONS(3107), + [anon_sym_typedef] = ACTIONS(3105), + [anon_sym_extern] = ACTIONS(3105), + [anon_sym___attribute__] = ACTIONS(3105), + [anon_sym_COLON_COLON] = ACTIONS(3107), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3107), + [anon_sym___declspec] = ACTIONS(3105), + [anon_sym_LBRACE] = ACTIONS(3107), + [anon_sym_LBRACK] = ACTIONS(3105), + [anon_sym_static] = ACTIONS(3105), + [anon_sym_register] = ACTIONS(3105), + [anon_sym_inline] = ACTIONS(3105), + [anon_sym_thread_local] = ACTIONS(3105), + [anon_sym_const] = ACTIONS(3105), + [anon_sym_constexpr] = ACTIONS(3105), + [anon_sym_volatile] = ACTIONS(3105), + [anon_sym_restrict] = ACTIONS(3105), + [anon_sym___restrict__] = ACTIONS(3105), + [anon_sym__Atomic] = ACTIONS(3105), + [anon_sym__Noreturn] = ACTIONS(3105), + [anon_sym_noreturn] = ACTIONS(3105), + [anon_sym_mutable] = ACTIONS(3105), + [anon_sym_constinit] = ACTIONS(3105), + [anon_sym_consteval] = ACTIONS(3105), + [anon_sym_signed] = ACTIONS(3105), + [anon_sym_unsigned] = ACTIONS(3105), + [anon_sym_long] = ACTIONS(3105), + [anon_sym_short] = ACTIONS(3105), + [sym_primitive_type] = ACTIONS(3105), + [anon_sym_enum] = ACTIONS(3105), + [anon_sym_class] = ACTIONS(3105), + [anon_sym_struct] = ACTIONS(3105), + [anon_sym_union] = ACTIONS(3105), + [anon_sym_if] = ACTIONS(3105), + [anon_sym_else] = ACTIONS(3105), + [anon_sym_switch] = ACTIONS(3105), + [anon_sym_while] = ACTIONS(3105), + [anon_sym_do] = ACTIONS(3105), + [anon_sym_for] = ACTIONS(3105), + [anon_sym_return] = ACTIONS(3105), + [anon_sym_break] = ACTIONS(3105), + [anon_sym_continue] = ACTIONS(3105), + [anon_sym_goto] = ACTIONS(3105), + [anon_sym_not] = ACTIONS(3105), + [anon_sym_compl] = ACTIONS(3105), + [anon_sym_DASH_DASH] = ACTIONS(3107), + [anon_sym_PLUS_PLUS] = ACTIONS(3107), + [anon_sym_sizeof] = ACTIONS(3105), + [anon_sym_offsetof] = ACTIONS(3105), + [anon_sym__Generic] = ACTIONS(3105), + [anon_sym_asm] = ACTIONS(3105), + [anon_sym___asm__] = ACTIONS(3105), + [sym_number_literal] = ACTIONS(3107), + [anon_sym_L_SQUOTE] = ACTIONS(3107), + [anon_sym_u_SQUOTE] = ACTIONS(3107), + [anon_sym_U_SQUOTE] = ACTIONS(3107), + [anon_sym_u8_SQUOTE] = ACTIONS(3107), + [anon_sym_SQUOTE] = ACTIONS(3107), + [anon_sym_L_DQUOTE] = ACTIONS(3107), + [anon_sym_u_DQUOTE] = ACTIONS(3107), + [anon_sym_U_DQUOTE] = ACTIONS(3107), + [anon_sym_u8_DQUOTE] = ACTIONS(3107), + [anon_sym_DQUOTE] = ACTIONS(3107), + [sym_true] = ACTIONS(3105), + [sym_false] = ACTIONS(3105), + [anon_sym_NULL] = ACTIONS(3105), + [anon_sym_nullptr] = ACTIONS(3105), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3105), + [anon_sym_decltype] = ACTIONS(3105), + [anon_sym_virtual] = ACTIONS(3105), + [anon_sym_typename] = ACTIONS(3105), + [anon_sym_template] = ACTIONS(3105), + [anon_sym_try] = ACTIONS(3105), + [anon_sym_delete] = ACTIONS(3105), + [anon_sym_throw] = ACTIONS(3105), + [anon_sym_co_return] = ACTIONS(3105), + [anon_sym_co_yield] = ACTIONS(3105), + [anon_sym_R_DQUOTE] = ACTIONS(3107), + [anon_sym_LR_DQUOTE] = ACTIONS(3107), + [anon_sym_uR_DQUOTE] = ACTIONS(3107), + [anon_sym_UR_DQUOTE] = ACTIONS(3107), + [anon_sym_u8R_DQUOTE] = ACTIONS(3107), + [anon_sym_co_await] = ACTIONS(3105), + [anon_sym_new] = ACTIONS(3105), + [anon_sym_requires] = ACTIONS(3105), + [sym_this] = ACTIONS(3105), }, [1530] = { - [sym__expression] = STATE(2888), - [sym_conditional_expression] = STATE(2574), - [sym_assignment_expression] = STATE(2574), - [sym_pointer_expression] = STATE(2578), - [sym_unary_expression] = STATE(2574), - [sym_binary_expression] = STATE(2574), - [sym_update_expression] = STATE(2574), - [sym_cast_expression] = STATE(2574), - [sym_sizeof_expression] = STATE(2574), - [sym_subscript_expression] = STATE(2578), - [sym_call_expression] = STATE(2578), - [sym_field_expression] = STATE(2578), - [sym_compound_literal_expression] = STATE(2574), - [sym_parenthesized_expression] = STATE(2578), - [sym_char_literal] = STATE(2207), - [sym_concatenated_string] = STATE(2207), - [sym_string_literal] = STATE(1820), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5944), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(2574), - [sym_raw_string_literal] = STATE(1820), - [sym_co_await_expression] = STATE(2574), - [sym_new_expression] = STATE(2574), - [sym_delete_expression] = STATE(2574), - [sym_requires_clause] = STATE(2574), - [sym_requires_expression] = STATE(2574), - [sym_lambda_expression] = STATE(2574), - [sym_lambda_capture_specifier] = STATE(4479), - [sym_fold_expression] = STATE(2574), - [sym_parameter_pack_expansion] = STATE(2574), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2578), - [sym_qualified_type_identifier] = STATE(5944), - [sym_user_defined_literal] = STATE(2574), - [sym_identifier] = ACTIONS(1523), - [anon_sym_LPAREN2] = ACTIONS(1647), - [anon_sym_BANG] = ACTIONS(1651), - [anon_sym_TILDE] = ACTIONS(1651), - [anon_sym_DASH] = ACTIONS(1649), - [anon_sym_PLUS] = ACTIONS(1649), - [anon_sym_STAR] = ACTIONS(3081), - [anon_sym_AMP] = ACTIONS(3081), - [anon_sym_COLON_COLON] = ACTIONS(1655), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(1649), - [anon_sym_compl] = ACTIONS(1649), - [anon_sym_DASH_DASH] = ACTIONS(1657), - [anon_sym_PLUS_PLUS] = ACTIONS(1657), - [anon_sym_sizeof] = ACTIONS(1659), - [sym_number_literal] = ACTIONS(1547), - [anon_sym_L_SQUOTE] = ACTIONS(1549), - [anon_sym_u_SQUOTE] = ACTIONS(1549), - [anon_sym_U_SQUOTE] = ACTIONS(1549), - [anon_sym_u8_SQUOTE] = ACTIONS(1549), - [anon_sym_SQUOTE] = ACTIONS(1549), - [anon_sym_L_DQUOTE] = ACTIONS(1551), - [anon_sym_u_DQUOTE] = ACTIONS(1551), - [anon_sym_U_DQUOTE] = ACTIONS(1551), - [anon_sym_u8_DQUOTE] = ACTIONS(1551), - [anon_sym_DQUOTE] = ACTIONS(1551), - [sym_true] = ACTIONS(1553), - [sym_false] = ACTIONS(1553), - [sym_null] = ACTIONS(1553), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1661), - [anon_sym_R_DQUOTE] = ACTIONS(1559), - [anon_sym_LR_DQUOTE] = ACTIONS(1559), - [anon_sym_uR_DQUOTE] = ACTIONS(1559), - [anon_sym_UR_DQUOTE] = ACTIONS(1559), - [anon_sym_u8R_DQUOTE] = ACTIONS(1559), - [anon_sym_co_await] = ACTIONS(1663), - [anon_sym_new] = ACTIONS(1563), - [anon_sym_requires] = ACTIONS(1565), - [sym_this] = ACTIONS(1553), - [sym_nullptr] = ACTIONS(1553), + [sym_identifier] = ACTIONS(3024), + [anon_sym_LPAREN2] = ACTIONS(3026), + [anon_sym_BANG] = ACTIONS(3026), + [anon_sym_TILDE] = ACTIONS(3026), + [anon_sym_DASH] = ACTIONS(3024), + [anon_sym_PLUS] = ACTIONS(3024), + [anon_sym_STAR] = ACTIONS(3026), + [anon_sym_AMP] = ACTIONS(3026), + [anon_sym_SEMI] = ACTIONS(3026), + [anon_sym_typedef] = ACTIONS(3024), + [anon_sym_extern] = ACTIONS(3024), + [anon_sym___attribute__] = ACTIONS(3024), + [anon_sym_COLON_COLON] = ACTIONS(3026), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3026), + [anon_sym___declspec] = ACTIONS(3024), + [anon_sym_LBRACE] = ACTIONS(3026), + [anon_sym_LBRACK] = ACTIONS(3024), + [anon_sym_static] = ACTIONS(3024), + [anon_sym_register] = ACTIONS(3024), + [anon_sym_inline] = ACTIONS(3024), + [anon_sym_thread_local] = ACTIONS(3024), + [anon_sym_const] = ACTIONS(3024), + [anon_sym_constexpr] = ACTIONS(3024), + [anon_sym_volatile] = ACTIONS(3024), + [anon_sym_restrict] = ACTIONS(3024), + [anon_sym___restrict__] = ACTIONS(3024), + [anon_sym__Atomic] = ACTIONS(3024), + [anon_sym__Noreturn] = ACTIONS(3024), + [anon_sym_noreturn] = ACTIONS(3024), + [anon_sym_mutable] = ACTIONS(3024), + [anon_sym_constinit] = ACTIONS(3024), + [anon_sym_consteval] = ACTIONS(3024), + [anon_sym_signed] = ACTIONS(3024), + [anon_sym_unsigned] = ACTIONS(3024), + [anon_sym_long] = ACTIONS(3024), + [anon_sym_short] = ACTIONS(3024), + [sym_primitive_type] = ACTIONS(3024), + [anon_sym_enum] = ACTIONS(3024), + [anon_sym_class] = ACTIONS(3024), + [anon_sym_struct] = ACTIONS(3024), + [anon_sym_union] = ACTIONS(3024), + [anon_sym_if] = ACTIONS(3024), + [anon_sym_else] = ACTIONS(3024), + [anon_sym_switch] = ACTIONS(3024), + [anon_sym_while] = ACTIONS(3024), + [anon_sym_do] = ACTIONS(3024), + [anon_sym_for] = ACTIONS(3024), + [anon_sym_return] = ACTIONS(3024), + [anon_sym_break] = ACTIONS(3024), + [anon_sym_continue] = ACTIONS(3024), + [anon_sym_goto] = ACTIONS(3024), + [anon_sym_not] = ACTIONS(3024), + [anon_sym_compl] = ACTIONS(3024), + [anon_sym_DASH_DASH] = ACTIONS(3026), + [anon_sym_PLUS_PLUS] = ACTIONS(3026), + [anon_sym_sizeof] = ACTIONS(3024), + [anon_sym_offsetof] = ACTIONS(3024), + [anon_sym__Generic] = ACTIONS(3024), + [anon_sym_asm] = ACTIONS(3024), + [anon_sym___asm__] = ACTIONS(3024), + [sym_number_literal] = ACTIONS(3026), + [anon_sym_L_SQUOTE] = ACTIONS(3026), + [anon_sym_u_SQUOTE] = ACTIONS(3026), + [anon_sym_U_SQUOTE] = ACTIONS(3026), + [anon_sym_u8_SQUOTE] = ACTIONS(3026), + [anon_sym_SQUOTE] = ACTIONS(3026), + [anon_sym_L_DQUOTE] = ACTIONS(3026), + [anon_sym_u_DQUOTE] = ACTIONS(3026), + [anon_sym_U_DQUOTE] = ACTIONS(3026), + [anon_sym_u8_DQUOTE] = ACTIONS(3026), + [anon_sym_DQUOTE] = ACTIONS(3026), + [sym_true] = ACTIONS(3024), + [sym_false] = ACTIONS(3024), + [anon_sym_NULL] = ACTIONS(3024), + [anon_sym_nullptr] = ACTIONS(3024), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3024), + [anon_sym_decltype] = ACTIONS(3024), + [anon_sym_virtual] = ACTIONS(3024), + [anon_sym_typename] = ACTIONS(3024), + [anon_sym_template] = ACTIONS(3024), + [anon_sym_try] = ACTIONS(3024), + [anon_sym_delete] = ACTIONS(3024), + [anon_sym_throw] = ACTIONS(3024), + [anon_sym_co_return] = ACTIONS(3024), + [anon_sym_co_yield] = ACTIONS(3024), + [anon_sym_R_DQUOTE] = ACTIONS(3026), + [anon_sym_LR_DQUOTE] = ACTIONS(3026), + [anon_sym_uR_DQUOTE] = ACTIONS(3026), + [anon_sym_UR_DQUOTE] = ACTIONS(3026), + [anon_sym_u8R_DQUOTE] = ACTIONS(3026), + [anon_sym_co_await] = ACTIONS(3024), + [anon_sym_new] = ACTIONS(3024), + [anon_sym_requires] = ACTIONS(3024), + [sym_this] = ACTIONS(3024), }, [1531] = { - [sym__expression] = STATE(2858), - [sym_conditional_expression] = STATE(2940), - [sym_assignment_expression] = STATE(2940), - [sym_pointer_expression] = STATE(2933), - [sym_unary_expression] = STATE(2940), - [sym_binary_expression] = STATE(2940), - [sym_update_expression] = STATE(2940), - [sym_cast_expression] = STATE(2940), - [sym_sizeof_expression] = STATE(2940), - [sym_subscript_expression] = STATE(2933), - [sym_call_expression] = STATE(2933), - [sym_field_expression] = STATE(2933), - [sym_compound_literal_expression] = STATE(2940), - [sym_parenthesized_expression] = STATE(2933), - [sym_char_literal] = STATE(2845), - [sym_concatenated_string] = STATE(2845), - [sym_string_literal] = STATE(1861), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5801), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(2940), - [sym_raw_string_literal] = STATE(1861), - [sym_co_await_expression] = STATE(2940), - [sym_new_expression] = STATE(2940), - [sym_delete_expression] = STATE(2940), - [sym_requires_clause] = STATE(2940), - [sym_requires_expression] = STATE(2940), - [sym_lambda_expression] = STATE(2940), - [sym_lambda_capture_specifier] = STATE(4464), - [sym_fold_expression] = STATE(2940), - [sym_parameter_pack_expansion] = STATE(2940), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4570), - [sym_qualified_identifier] = STATE(2933), - [sym_qualified_type_identifier] = STATE(5801), - [sym_user_defined_literal] = STATE(2940), - [sym_identifier] = ACTIONS(1605), - [anon_sym_LPAREN2] = ACTIONS(1607), - [anon_sym_BANG] = ACTIONS(1611), - [anon_sym_TILDE] = ACTIONS(1611), - [anon_sym_DASH] = ACTIONS(1609), - [anon_sym_PLUS] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(2416), - [anon_sym_AMP] = ACTIONS(2416), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1619), - [anon_sym_not] = ACTIONS(1609), - [anon_sym_compl] = ACTIONS(1609), - [anon_sym_DASH_DASH] = ACTIONS(1621), - [anon_sym_PLUS_PLUS] = ACTIONS(1621), - [anon_sym_sizeof] = ACTIONS(1623), - [sym_number_literal] = ACTIONS(1625), - [anon_sym_L_SQUOTE] = ACTIONS(1627), - [anon_sym_u_SQUOTE] = ACTIONS(1627), - [anon_sym_U_SQUOTE] = ACTIONS(1627), - [anon_sym_u8_SQUOTE] = ACTIONS(1627), - [anon_sym_SQUOTE] = ACTIONS(1627), - [anon_sym_L_DQUOTE] = ACTIONS(1629), - [anon_sym_u_DQUOTE] = ACTIONS(1629), - [anon_sym_U_DQUOTE] = ACTIONS(1629), - [anon_sym_u8_DQUOTE] = ACTIONS(1629), - [anon_sym_DQUOTE] = ACTIONS(1629), - [sym_true] = ACTIONS(1631), - [sym_false] = ACTIONS(1631), - [sym_null] = ACTIONS(1631), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1633), - [anon_sym_R_DQUOTE] = ACTIONS(1635), - [anon_sym_LR_DQUOTE] = ACTIONS(1635), - [anon_sym_uR_DQUOTE] = ACTIONS(1635), - [anon_sym_UR_DQUOTE] = ACTIONS(1635), - [anon_sym_u8R_DQUOTE] = ACTIONS(1635), - [anon_sym_co_await] = ACTIONS(1637), - [anon_sym_new] = ACTIONS(1639), - [anon_sym_requires] = ACTIONS(1641), - [sym_this] = ACTIONS(1631), - [sym_nullptr] = ACTIONS(1631), + [sym_identifier] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3030), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, [1532] = { - [sym__expression] = STATE(2865), - [sym_conditional_expression] = STATE(2940), - [sym_assignment_expression] = STATE(2940), - [sym_pointer_expression] = STATE(2933), - [sym_unary_expression] = STATE(2940), - [sym_binary_expression] = STATE(2940), - [sym_update_expression] = STATE(2940), - [sym_cast_expression] = STATE(2940), - [sym_sizeof_expression] = STATE(2940), - [sym_subscript_expression] = STATE(2933), - [sym_call_expression] = STATE(2933), - [sym_field_expression] = STATE(2933), - [sym_compound_literal_expression] = STATE(2940), - [sym_parenthesized_expression] = STATE(2933), - [sym_char_literal] = STATE(2845), - [sym_concatenated_string] = STATE(2845), - [sym_string_literal] = STATE(1861), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5801), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(2940), - [sym_raw_string_literal] = STATE(1861), - [sym_co_await_expression] = STATE(2940), - [sym_new_expression] = STATE(2940), - [sym_delete_expression] = STATE(2940), - [sym_requires_clause] = STATE(2940), - [sym_requires_expression] = STATE(2940), - [sym_lambda_expression] = STATE(2940), - [sym_lambda_capture_specifier] = STATE(4464), - [sym_fold_expression] = STATE(2940), - [sym_parameter_pack_expansion] = STATE(2940), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4570), - [sym_qualified_identifier] = STATE(2933), - [sym_qualified_type_identifier] = STATE(5801), - [sym_user_defined_literal] = STATE(2940), - [sym_identifier] = ACTIONS(1605), - [anon_sym_LPAREN2] = ACTIONS(1607), - [anon_sym_BANG] = ACTIONS(1611), - [anon_sym_TILDE] = ACTIONS(1611), - [anon_sym_DASH] = ACTIONS(1609), - [anon_sym_PLUS] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(2416), - [anon_sym_AMP] = ACTIONS(2416), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1619), - [anon_sym_not] = ACTIONS(1609), - [anon_sym_compl] = ACTIONS(1609), - [anon_sym_DASH_DASH] = ACTIONS(1621), - [anon_sym_PLUS_PLUS] = ACTIONS(1621), - [anon_sym_sizeof] = ACTIONS(1623), - [sym_number_literal] = ACTIONS(1625), - [anon_sym_L_SQUOTE] = ACTIONS(1627), - [anon_sym_u_SQUOTE] = ACTIONS(1627), - [anon_sym_U_SQUOTE] = ACTIONS(1627), - [anon_sym_u8_SQUOTE] = ACTIONS(1627), - [anon_sym_SQUOTE] = ACTIONS(1627), - [anon_sym_L_DQUOTE] = ACTIONS(1629), - [anon_sym_u_DQUOTE] = ACTIONS(1629), - [anon_sym_U_DQUOTE] = ACTIONS(1629), - [anon_sym_u8_DQUOTE] = ACTIONS(1629), - [anon_sym_DQUOTE] = ACTIONS(1629), - [sym_true] = ACTIONS(1631), - [sym_false] = ACTIONS(1631), - [sym_null] = ACTIONS(1631), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1633), - [anon_sym_R_DQUOTE] = ACTIONS(1635), - [anon_sym_LR_DQUOTE] = ACTIONS(1635), - [anon_sym_uR_DQUOTE] = ACTIONS(1635), - [anon_sym_UR_DQUOTE] = ACTIONS(1635), - [anon_sym_u8R_DQUOTE] = ACTIONS(1635), - [anon_sym_co_await] = ACTIONS(1637), - [anon_sym_new] = ACTIONS(1639), - [anon_sym_requires] = ACTIONS(1641), - [sym_this] = ACTIONS(1631), - [sym_nullptr] = ACTIONS(1631), + [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_AMP] = ACTIONS(2968), + [anon_sym_SEMI] = ACTIONS(2968), + [anon_sym_typedef] = ACTIONS(2966), + [anon_sym_extern] = ACTIONS(2966), + [anon_sym___attribute__] = ACTIONS(2966), + [anon_sym_COLON_COLON] = ACTIONS(2968), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2968), + [anon_sym___declspec] = ACTIONS(2966), + [anon_sym_LBRACE] = ACTIONS(2968), + [anon_sym_LBRACK] = ACTIONS(2966), + [anon_sym_static] = ACTIONS(2966), + [anon_sym_register] = ACTIONS(2966), + [anon_sym_inline] = ACTIONS(2966), + [anon_sym_thread_local] = 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_noreturn] = ACTIONS(2966), + [anon_sym_mutable] = ACTIONS(2966), + [anon_sym_constinit] = ACTIONS(2966), + [anon_sym_consteval] = ACTIONS(2966), + [anon_sym_signed] = ACTIONS(2966), + [anon_sym_unsigned] = ACTIONS(2966), + [anon_sym_long] = ACTIONS(2966), + [anon_sym_short] = ACTIONS(2966), + [sym_primitive_type] = ACTIONS(2966), + [anon_sym_enum] = ACTIONS(2966), + [anon_sym_class] = ACTIONS(2966), + [anon_sym_struct] = ACTIONS(2966), + [anon_sym_union] = ACTIONS(2966), + [anon_sym_if] = ACTIONS(2966), + [anon_sym_else] = ACTIONS(2966), + [anon_sym_switch] = ACTIONS(2966), + [anon_sym_while] = ACTIONS(2966), + [anon_sym_do] = ACTIONS(2966), + [anon_sym_for] = ACTIONS(2966), + [anon_sym_return] = ACTIONS(2966), + [anon_sym_break] = ACTIONS(2966), + [anon_sym_continue] = ACTIONS(2966), + [anon_sym_goto] = ACTIONS(2966), + [anon_sym_not] = ACTIONS(2966), + [anon_sym_compl] = ACTIONS(2966), + [anon_sym_DASH_DASH] = ACTIONS(2968), + [anon_sym_PLUS_PLUS] = ACTIONS(2968), + [anon_sym_sizeof] = ACTIONS(2966), + [anon_sym_offsetof] = ACTIONS(2966), + [anon_sym__Generic] = 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_L_DQUOTE] = ACTIONS(2968), + [anon_sym_u_DQUOTE] = ACTIONS(2968), + [anon_sym_U_DQUOTE] = ACTIONS(2968), + [anon_sym_u8_DQUOTE] = ACTIONS(2968), + [anon_sym_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), + [sym_auto] = ACTIONS(2966), + [anon_sym_decltype] = ACTIONS(2966), + [anon_sym_virtual] = ACTIONS(2966), + [anon_sym_typename] = ACTIONS(2966), + [anon_sym_template] = ACTIONS(2966), + [anon_sym_try] = ACTIONS(2966), + [anon_sym_delete] = ACTIONS(2966), + [anon_sym_throw] = ACTIONS(2966), + [anon_sym_co_return] = ACTIONS(2966), + [anon_sym_co_yield] = ACTIONS(2966), + [anon_sym_R_DQUOTE] = ACTIONS(2968), + [anon_sym_LR_DQUOTE] = ACTIONS(2968), + [anon_sym_uR_DQUOTE] = ACTIONS(2968), + [anon_sym_UR_DQUOTE] = ACTIONS(2968), + [anon_sym_u8R_DQUOTE] = ACTIONS(2968), + [anon_sym_co_await] = ACTIONS(2966), + [anon_sym_new] = ACTIONS(2966), + [anon_sym_requires] = ACTIONS(2966), + [sym_this] = ACTIONS(2966), }, [1533] = { - [sym__expression] = STATE(3853), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(3036), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(3036), - [sym_call_expression] = STATE(3036), - [sym_field_expression] = STATE(3036), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(3036), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(3036), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(3073), - [anon_sym_LPAREN2] = ACTIONS(3075), - [anon_sym_BANG] = ACTIONS(3079), - [anon_sym_TILDE] = ACTIONS(3079), - [anon_sym_DASH] = ACTIONS(3077), - [anon_sym_PLUS] = ACTIONS(3077), - [anon_sym_STAR] = ACTIONS(3081), - [anon_sym_AMP] = ACTIONS(3081), - [anon_sym_COLON_COLON] = ACTIONS(3083), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(3077), - [anon_sym_compl] = ACTIONS(3077), - [anon_sym_DASH_DASH] = ACTIONS(3085), - [anon_sym_PLUS_PLUS] = ACTIONS(3085), - [anon_sym_sizeof] = ACTIONS(3087), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(3089), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(3091), - [anon_sym_new] = ACTIONS(3065), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [sym_identifier] = ACTIONS(3803), + [anon_sym_LPAREN2] = ACTIONS(3805), + [anon_sym_BANG] = ACTIONS(3805), + [anon_sym_TILDE] = ACTIONS(3805), + [anon_sym_DASH] = ACTIONS(3803), + [anon_sym_PLUS] = ACTIONS(3803), + [anon_sym_STAR] = ACTIONS(3805), + [anon_sym_AMP] = ACTIONS(3805), + [anon_sym_SEMI] = ACTIONS(3805), + [anon_sym_extern] = ACTIONS(3803), + [anon_sym___attribute__] = ACTIONS(3803), + [anon_sym_COLON_COLON] = ACTIONS(3805), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3805), + [anon_sym___declspec] = ACTIONS(3803), + [anon_sym_LBRACE] = ACTIONS(3805), + [anon_sym_LBRACK] = ACTIONS(3803), + [anon_sym_static] = ACTIONS(3803), + [anon_sym_register] = ACTIONS(3803), + [anon_sym_inline] = ACTIONS(3803), + [anon_sym_thread_local] = ACTIONS(3803), + [anon_sym_const] = ACTIONS(3803), + [anon_sym_constexpr] = ACTIONS(3803), + [anon_sym_volatile] = ACTIONS(3803), + [anon_sym_restrict] = ACTIONS(3803), + [anon_sym___restrict__] = ACTIONS(3803), + [anon_sym__Atomic] = ACTIONS(3803), + [anon_sym__Noreturn] = ACTIONS(3803), + [anon_sym_noreturn] = ACTIONS(3803), + [anon_sym_mutable] = ACTIONS(3803), + [anon_sym_constinit] = ACTIONS(3803), + [anon_sym_consteval] = ACTIONS(3803), + [anon_sym_signed] = ACTIONS(3803), + [anon_sym_unsigned] = ACTIONS(3803), + [anon_sym_long] = ACTIONS(3803), + [anon_sym_short] = ACTIONS(3803), + [sym_primitive_type] = ACTIONS(3803), + [anon_sym_enum] = ACTIONS(3803), + [anon_sym_class] = ACTIONS(3803), + [anon_sym_struct] = ACTIONS(3803), + [anon_sym_union] = ACTIONS(3803), + [anon_sym_if] = ACTIONS(3803), + [anon_sym_switch] = ACTIONS(3803), + [anon_sym_case] = ACTIONS(3803), + [anon_sym_default] = ACTIONS(3803), + [anon_sym_while] = ACTIONS(3803), + [anon_sym_do] = ACTIONS(3803), + [anon_sym_for] = ACTIONS(3803), + [anon_sym_return] = ACTIONS(3803), + [anon_sym_break] = ACTIONS(3803), + [anon_sym_continue] = ACTIONS(3803), + [anon_sym_goto] = ACTIONS(3803), + [anon_sym_not] = ACTIONS(3803), + [anon_sym_compl] = ACTIONS(3803), + [anon_sym_DASH_DASH] = ACTIONS(3805), + [anon_sym_PLUS_PLUS] = ACTIONS(3805), + [anon_sym_sizeof] = ACTIONS(3803), + [anon_sym_offsetof] = ACTIONS(3803), + [anon_sym__Generic] = ACTIONS(3803), + [anon_sym_asm] = ACTIONS(3803), + [anon_sym___asm__] = ACTIONS(3803), + [sym_number_literal] = ACTIONS(3805), + [anon_sym_L_SQUOTE] = ACTIONS(3805), + [anon_sym_u_SQUOTE] = ACTIONS(3805), + [anon_sym_U_SQUOTE] = ACTIONS(3805), + [anon_sym_u8_SQUOTE] = ACTIONS(3805), + [anon_sym_SQUOTE] = ACTIONS(3805), + [anon_sym_L_DQUOTE] = ACTIONS(3805), + [anon_sym_u_DQUOTE] = ACTIONS(3805), + [anon_sym_U_DQUOTE] = ACTIONS(3805), + [anon_sym_u8_DQUOTE] = ACTIONS(3805), + [anon_sym_DQUOTE] = ACTIONS(3805), + [sym_true] = ACTIONS(3803), + [sym_false] = ACTIONS(3803), + [anon_sym_NULL] = ACTIONS(3803), + [anon_sym_nullptr] = ACTIONS(3803), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3803), + [anon_sym_decltype] = ACTIONS(3803), + [anon_sym_virtual] = ACTIONS(3803), + [anon_sym_typename] = ACTIONS(3803), + [anon_sym_template] = ACTIONS(3803), + [anon_sym_try] = ACTIONS(3803), + [anon_sym_delete] = ACTIONS(3803), + [anon_sym_throw] = ACTIONS(3803), + [anon_sym_co_return] = ACTIONS(3803), + [anon_sym_co_yield] = ACTIONS(3803), + [anon_sym_R_DQUOTE] = ACTIONS(3805), + [anon_sym_LR_DQUOTE] = ACTIONS(3805), + [anon_sym_uR_DQUOTE] = ACTIONS(3805), + [anon_sym_UR_DQUOTE] = ACTIONS(3805), + [anon_sym_u8R_DQUOTE] = ACTIONS(3805), + [anon_sym_co_await] = ACTIONS(3803), + [anon_sym_new] = ACTIONS(3803), + [anon_sym_requires] = ACTIONS(3803), + [sym_this] = ACTIONS(3803), }, [1534] = { - [sym__expression] = STATE(3842), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(3036), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(3036), - [sym_call_expression] = STATE(3036), - [sym_field_expression] = STATE(3036), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(3036), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(3036), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(3073), - [anon_sym_LPAREN2] = ACTIONS(3075), - [anon_sym_BANG] = ACTIONS(3079), - [anon_sym_TILDE] = ACTIONS(3079), - [anon_sym_DASH] = ACTIONS(3077), - [anon_sym_PLUS] = ACTIONS(3077), - [anon_sym_STAR] = ACTIONS(3081), - [anon_sym_AMP] = ACTIONS(3081), - [anon_sym_COLON_COLON] = ACTIONS(3083), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(3077), - [anon_sym_compl] = ACTIONS(3077), - [anon_sym_DASH_DASH] = ACTIONS(3085), - [anon_sym_PLUS_PLUS] = ACTIONS(3085), - [anon_sym_sizeof] = ACTIONS(3087), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(3089), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(3091), - [anon_sym_new] = ACTIONS(3065), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [sym_identifier] = ACTIONS(3004), + [anon_sym_LPAREN2] = ACTIONS(3006), + [anon_sym_BANG] = ACTIONS(3006), + [anon_sym_TILDE] = ACTIONS(3006), + [anon_sym_DASH] = ACTIONS(3004), + [anon_sym_PLUS] = ACTIONS(3004), + [anon_sym_STAR] = ACTIONS(3006), + [anon_sym_AMP] = ACTIONS(3006), + [anon_sym_SEMI] = ACTIONS(3006), + [anon_sym_typedef] = ACTIONS(3004), + [anon_sym_extern] = ACTIONS(3004), + [anon_sym___attribute__] = ACTIONS(3004), + [anon_sym_COLON_COLON] = ACTIONS(3006), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3006), + [anon_sym___declspec] = ACTIONS(3004), + [anon_sym_LBRACE] = ACTIONS(3006), + [anon_sym_LBRACK] = ACTIONS(3004), + [anon_sym_static] = ACTIONS(3004), + [anon_sym_register] = ACTIONS(3004), + [anon_sym_inline] = ACTIONS(3004), + [anon_sym_thread_local] = ACTIONS(3004), + [anon_sym_const] = ACTIONS(3004), + [anon_sym_constexpr] = ACTIONS(3004), + [anon_sym_volatile] = ACTIONS(3004), + [anon_sym_restrict] = ACTIONS(3004), + [anon_sym___restrict__] = ACTIONS(3004), + [anon_sym__Atomic] = ACTIONS(3004), + [anon_sym__Noreturn] = ACTIONS(3004), + [anon_sym_noreturn] = ACTIONS(3004), + [anon_sym_mutable] = ACTIONS(3004), + [anon_sym_constinit] = ACTIONS(3004), + [anon_sym_consteval] = ACTIONS(3004), + [anon_sym_signed] = ACTIONS(3004), + [anon_sym_unsigned] = ACTIONS(3004), + [anon_sym_long] = ACTIONS(3004), + [anon_sym_short] = ACTIONS(3004), + [sym_primitive_type] = ACTIONS(3004), + [anon_sym_enum] = ACTIONS(3004), + [anon_sym_class] = ACTIONS(3004), + [anon_sym_struct] = ACTIONS(3004), + [anon_sym_union] = ACTIONS(3004), + [anon_sym_if] = ACTIONS(3004), + [anon_sym_else] = ACTIONS(3004), + [anon_sym_switch] = ACTIONS(3004), + [anon_sym_while] = ACTIONS(3004), + [anon_sym_do] = ACTIONS(3004), + [anon_sym_for] = ACTIONS(3004), + [anon_sym_return] = ACTIONS(3004), + [anon_sym_break] = ACTIONS(3004), + [anon_sym_continue] = ACTIONS(3004), + [anon_sym_goto] = ACTIONS(3004), + [anon_sym_not] = ACTIONS(3004), + [anon_sym_compl] = ACTIONS(3004), + [anon_sym_DASH_DASH] = ACTIONS(3006), + [anon_sym_PLUS_PLUS] = ACTIONS(3006), + [anon_sym_sizeof] = ACTIONS(3004), + [anon_sym_offsetof] = ACTIONS(3004), + [anon_sym__Generic] = ACTIONS(3004), + [anon_sym_asm] = ACTIONS(3004), + [anon_sym___asm__] = ACTIONS(3004), + [sym_number_literal] = ACTIONS(3006), + [anon_sym_L_SQUOTE] = ACTIONS(3006), + [anon_sym_u_SQUOTE] = ACTIONS(3006), + [anon_sym_U_SQUOTE] = ACTIONS(3006), + [anon_sym_u8_SQUOTE] = ACTIONS(3006), + [anon_sym_SQUOTE] = ACTIONS(3006), + [anon_sym_L_DQUOTE] = ACTIONS(3006), + [anon_sym_u_DQUOTE] = ACTIONS(3006), + [anon_sym_U_DQUOTE] = ACTIONS(3006), + [anon_sym_u8_DQUOTE] = ACTIONS(3006), + [anon_sym_DQUOTE] = ACTIONS(3006), + [sym_true] = ACTIONS(3004), + [sym_false] = ACTIONS(3004), + [anon_sym_NULL] = ACTIONS(3004), + [anon_sym_nullptr] = ACTIONS(3004), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3004), + [anon_sym_decltype] = ACTIONS(3004), + [anon_sym_virtual] = ACTIONS(3004), + [anon_sym_typename] = ACTIONS(3004), + [anon_sym_template] = ACTIONS(3004), + [anon_sym_try] = ACTIONS(3004), + [anon_sym_delete] = ACTIONS(3004), + [anon_sym_throw] = ACTIONS(3004), + [anon_sym_co_return] = ACTIONS(3004), + [anon_sym_co_yield] = ACTIONS(3004), + [anon_sym_R_DQUOTE] = ACTIONS(3006), + [anon_sym_LR_DQUOTE] = ACTIONS(3006), + [anon_sym_uR_DQUOTE] = ACTIONS(3006), + [anon_sym_UR_DQUOTE] = ACTIONS(3006), + [anon_sym_u8R_DQUOTE] = ACTIONS(3006), + [anon_sym_co_await] = ACTIONS(3004), + [anon_sym_new] = ACTIONS(3004), + [anon_sym_requires] = ACTIONS(3004), + [sym_this] = ACTIONS(3004), }, [1535] = { - [sym__expression] = STATE(3657), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2954), - [anon_sym_LPAREN2] = ACTIONS(984), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [sym_identifier] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3030), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, [1536] = { - [sym__expression] = STATE(3618), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2984), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2984), - [sym_call_expression] = STATE(2984), - [sym_field_expression] = STATE(2984), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2984), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2984), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(3047), - [anon_sym_LPAREN2] = ACTIONS(3049), - [anon_sym_BANG] = ACTIONS(3053), - [anon_sym_TILDE] = ACTIONS(3053), - [anon_sym_DASH] = ACTIONS(3051), - [anon_sym_PLUS] = ACTIONS(3051), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(3055), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(3051), - [anon_sym_compl] = ACTIONS(3051), - [anon_sym_DASH_DASH] = ACTIONS(3057), - [anon_sym_PLUS_PLUS] = ACTIONS(3057), - [anon_sym_sizeof] = ACTIONS(3059), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(3061), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(3063), - [anon_sym_new] = ACTIONS(3065), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [sym_identifier] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3030), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, [1537] = { - [sym__expression] = STATE(2855), - [sym_conditional_expression] = STATE(2940), - [sym_assignment_expression] = STATE(2940), - [sym_pointer_expression] = STATE(2933), - [sym_unary_expression] = STATE(2940), - [sym_binary_expression] = STATE(2940), - [sym_update_expression] = STATE(2940), - [sym_cast_expression] = STATE(2940), - [sym_sizeof_expression] = STATE(2940), - [sym_subscript_expression] = STATE(2933), - [sym_call_expression] = STATE(2933), - [sym_field_expression] = STATE(2933), - [sym_compound_literal_expression] = STATE(2940), - [sym_parenthesized_expression] = STATE(2933), - [sym_char_literal] = STATE(2845), - [sym_concatenated_string] = STATE(2845), - [sym_string_literal] = STATE(1861), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5801), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(2940), - [sym_raw_string_literal] = STATE(1861), - [sym_co_await_expression] = STATE(2940), - [sym_new_expression] = STATE(2940), - [sym_delete_expression] = STATE(2940), - [sym_requires_clause] = STATE(2940), - [sym_requires_expression] = STATE(2940), - [sym_lambda_expression] = STATE(2940), - [sym_lambda_capture_specifier] = STATE(4464), - [sym_fold_expression] = STATE(2940), - [sym_parameter_pack_expansion] = STATE(2940), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4570), - [sym_qualified_identifier] = STATE(2933), - [sym_qualified_type_identifier] = STATE(5801), - [sym_user_defined_literal] = STATE(2940), - [sym_identifier] = ACTIONS(1605), - [anon_sym_LPAREN2] = ACTIONS(1607), - [anon_sym_BANG] = ACTIONS(1611), - [anon_sym_TILDE] = ACTIONS(1611), - [anon_sym_DASH] = ACTIONS(1609), - [anon_sym_PLUS] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(2416), - [anon_sym_AMP] = ACTIONS(2416), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1619), - [anon_sym_not] = ACTIONS(1609), - [anon_sym_compl] = ACTIONS(1609), - [anon_sym_DASH_DASH] = ACTIONS(1621), - [anon_sym_PLUS_PLUS] = ACTIONS(1621), - [anon_sym_sizeof] = ACTIONS(1623), - [sym_number_literal] = ACTIONS(1625), - [anon_sym_L_SQUOTE] = ACTIONS(1627), - [anon_sym_u_SQUOTE] = ACTIONS(1627), - [anon_sym_U_SQUOTE] = ACTIONS(1627), - [anon_sym_u8_SQUOTE] = ACTIONS(1627), - [anon_sym_SQUOTE] = ACTIONS(1627), - [anon_sym_L_DQUOTE] = ACTIONS(1629), - [anon_sym_u_DQUOTE] = ACTIONS(1629), - [anon_sym_U_DQUOTE] = ACTIONS(1629), - [anon_sym_u8_DQUOTE] = ACTIONS(1629), - [anon_sym_DQUOTE] = ACTIONS(1629), - [sym_true] = ACTIONS(1631), - [sym_false] = ACTIONS(1631), - [sym_null] = ACTIONS(1631), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1633), - [anon_sym_R_DQUOTE] = ACTIONS(1635), - [anon_sym_LR_DQUOTE] = ACTIONS(1635), - [anon_sym_uR_DQUOTE] = ACTIONS(1635), - [anon_sym_UR_DQUOTE] = ACTIONS(1635), - [anon_sym_u8R_DQUOTE] = ACTIONS(1635), - [anon_sym_co_await] = ACTIONS(1637), - [anon_sym_new] = ACTIONS(1639), - [anon_sym_requires] = ACTIONS(1641), - [sym_this] = ACTIONS(1631), - [sym_nullptr] = ACTIONS(1631), + [sym_identifier] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3030), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, [1538] = { - [sym__expression] = STATE(2837), - [sym_conditional_expression] = STATE(2940), - [sym_assignment_expression] = STATE(2940), - [sym_pointer_expression] = STATE(2933), - [sym_unary_expression] = STATE(2940), - [sym_binary_expression] = STATE(2940), - [sym_update_expression] = STATE(2940), - [sym_cast_expression] = STATE(2940), - [sym_sizeof_expression] = STATE(2940), - [sym_subscript_expression] = STATE(2933), - [sym_call_expression] = STATE(2933), - [sym_field_expression] = STATE(2933), - [sym_compound_literal_expression] = STATE(2940), - [sym_parenthesized_expression] = STATE(2933), - [sym_char_literal] = STATE(2845), - [sym_concatenated_string] = STATE(2845), - [sym_string_literal] = STATE(1861), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5801), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(2940), - [sym_raw_string_literal] = STATE(1861), - [sym_co_await_expression] = STATE(2940), - [sym_new_expression] = STATE(2940), - [sym_delete_expression] = STATE(2940), - [sym_requires_clause] = STATE(2940), - [sym_requires_expression] = STATE(2940), - [sym_lambda_expression] = STATE(2940), - [sym_lambda_capture_specifier] = STATE(4464), - [sym_fold_expression] = STATE(2940), - [sym_parameter_pack_expansion] = STATE(2940), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4570), - [sym_qualified_identifier] = STATE(2933), - [sym_qualified_type_identifier] = STATE(5801), - [sym_user_defined_literal] = STATE(2940), - [sym_identifier] = ACTIONS(1605), - [anon_sym_LPAREN2] = ACTIONS(1607), - [anon_sym_BANG] = ACTIONS(1611), - [anon_sym_TILDE] = ACTIONS(1611), - [anon_sym_DASH] = ACTIONS(1609), - [anon_sym_PLUS] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(2416), - [anon_sym_AMP] = ACTIONS(2416), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1619), - [anon_sym_not] = ACTIONS(1609), - [anon_sym_compl] = ACTIONS(1609), - [anon_sym_DASH_DASH] = ACTIONS(1621), - [anon_sym_PLUS_PLUS] = ACTIONS(1621), - [anon_sym_sizeof] = ACTIONS(1623), - [sym_number_literal] = ACTIONS(1625), - [anon_sym_L_SQUOTE] = ACTIONS(1627), - [anon_sym_u_SQUOTE] = ACTIONS(1627), - [anon_sym_U_SQUOTE] = ACTIONS(1627), - [anon_sym_u8_SQUOTE] = ACTIONS(1627), - [anon_sym_SQUOTE] = ACTIONS(1627), - [anon_sym_L_DQUOTE] = ACTIONS(1629), - [anon_sym_u_DQUOTE] = ACTIONS(1629), - [anon_sym_U_DQUOTE] = ACTIONS(1629), - [anon_sym_u8_DQUOTE] = ACTIONS(1629), - [anon_sym_DQUOTE] = ACTIONS(1629), - [sym_true] = ACTIONS(1631), - [sym_false] = ACTIONS(1631), - [sym_null] = ACTIONS(1631), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1633), - [anon_sym_R_DQUOTE] = ACTIONS(1635), - [anon_sym_LR_DQUOTE] = ACTIONS(1635), - [anon_sym_uR_DQUOTE] = ACTIONS(1635), - [anon_sym_UR_DQUOTE] = ACTIONS(1635), - [anon_sym_u8R_DQUOTE] = ACTIONS(1635), - [anon_sym_co_await] = ACTIONS(1637), - [anon_sym_new] = ACTIONS(1639), - [anon_sym_requires] = ACTIONS(1641), - [sym_this] = ACTIONS(1631), - [sym_nullptr] = ACTIONS(1631), + [sym_identifier] = ACTIONS(2912), + [anon_sym_LPAREN2] = ACTIONS(2914), + [anon_sym_BANG] = ACTIONS(2914), + [anon_sym_TILDE] = ACTIONS(2914), + [anon_sym_DASH] = ACTIONS(2912), + [anon_sym_PLUS] = ACTIONS(2912), + [anon_sym_STAR] = ACTIONS(2914), + [anon_sym_AMP] = ACTIONS(2914), + [anon_sym_SEMI] = ACTIONS(2914), + [anon_sym_typedef] = ACTIONS(2912), + [anon_sym_extern] = ACTIONS(2912), + [anon_sym___attribute__] = ACTIONS(2912), + [anon_sym_COLON_COLON] = ACTIONS(2914), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2914), + [anon_sym___declspec] = ACTIONS(2912), + [anon_sym_LBRACE] = ACTIONS(2914), + [anon_sym_LBRACK] = ACTIONS(2912), + [anon_sym_static] = ACTIONS(2912), + [anon_sym_register] = ACTIONS(2912), + [anon_sym_inline] = ACTIONS(2912), + [anon_sym_thread_local] = ACTIONS(2912), + [anon_sym_const] = ACTIONS(2912), + [anon_sym_constexpr] = ACTIONS(2912), + [anon_sym_volatile] = ACTIONS(2912), + [anon_sym_restrict] = ACTIONS(2912), + [anon_sym___restrict__] = ACTIONS(2912), + [anon_sym__Atomic] = ACTIONS(2912), + [anon_sym__Noreturn] = ACTIONS(2912), + [anon_sym_noreturn] = ACTIONS(2912), + [anon_sym_mutable] = ACTIONS(2912), + [anon_sym_constinit] = ACTIONS(2912), + [anon_sym_consteval] = ACTIONS(2912), + [anon_sym_signed] = ACTIONS(2912), + [anon_sym_unsigned] = ACTIONS(2912), + [anon_sym_long] = ACTIONS(2912), + [anon_sym_short] = ACTIONS(2912), + [sym_primitive_type] = ACTIONS(2912), + [anon_sym_enum] = ACTIONS(2912), + [anon_sym_class] = ACTIONS(2912), + [anon_sym_struct] = ACTIONS(2912), + [anon_sym_union] = ACTIONS(2912), + [anon_sym_if] = ACTIONS(2912), + [anon_sym_else] = ACTIONS(2912), + [anon_sym_switch] = ACTIONS(2912), + [anon_sym_while] = ACTIONS(2912), + [anon_sym_do] = ACTIONS(2912), + [anon_sym_for] = ACTIONS(2912), + [anon_sym_return] = ACTIONS(2912), + [anon_sym_break] = ACTIONS(2912), + [anon_sym_continue] = ACTIONS(2912), + [anon_sym_goto] = ACTIONS(2912), + [anon_sym_not] = ACTIONS(2912), + [anon_sym_compl] = ACTIONS(2912), + [anon_sym_DASH_DASH] = ACTIONS(2914), + [anon_sym_PLUS_PLUS] = ACTIONS(2914), + [anon_sym_sizeof] = ACTIONS(2912), + [anon_sym_offsetof] = ACTIONS(2912), + [anon_sym__Generic] = ACTIONS(2912), + [anon_sym_asm] = ACTIONS(2912), + [anon_sym___asm__] = ACTIONS(2912), + [sym_number_literal] = ACTIONS(2914), + [anon_sym_L_SQUOTE] = ACTIONS(2914), + [anon_sym_u_SQUOTE] = ACTIONS(2914), + [anon_sym_U_SQUOTE] = ACTIONS(2914), + [anon_sym_u8_SQUOTE] = ACTIONS(2914), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_L_DQUOTE] = ACTIONS(2914), + [anon_sym_u_DQUOTE] = ACTIONS(2914), + [anon_sym_U_DQUOTE] = ACTIONS(2914), + [anon_sym_u8_DQUOTE] = ACTIONS(2914), + [anon_sym_DQUOTE] = ACTIONS(2914), + [sym_true] = ACTIONS(2912), + [sym_false] = ACTIONS(2912), + [anon_sym_NULL] = ACTIONS(2912), + [anon_sym_nullptr] = ACTIONS(2912), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2912), + [anon_sym_decltype] = ACTIONS(2912), + [anon_sym_virtual] = ACTIONS(2912), + [anon_sym_typename] = ACTIONS(2912), + [anon_sym_template] = ACTIONS(2912), + [anon_sym_try] = ACTIONS(2912), + [anon_sym_delete] = ACTIONS(2912), + [anon_sym_throw] = ACTIONS(2912), + [anon_sym_co_return] = ACTIONS(2912), + [anon_sym_co_yield] = ACTIONS(2912), + [anon_sym_R_DQUOTE] = ACTIONS(2914), + [anon_sym_LR_DQUOTE] = ACTIONS(2914), + [anon_sym_uR_DQUOTE] = ACTIONS(2914), + [anon_sym_UR_DQUOTE] = ACTIONS(2914), + [anon_sym_u8R_DQUOTE] = ACTIONS(2914), + [anon_sym_co_await] = ACTIONS(2912), + [anon_sym_new] = ACTIONS(2912), + [anon_sym_requires] = ACTIONS(2912), + [sym_this] = ACTIONS(2912), }, [1539] = { - [sym__expression] = STATE(3616), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2984), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2984), - [sym_call_expression] = STATE(2984), - [sym_field_expression] = STATE(2984), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2984), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2984), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(3047), - [anon_sym_LPAREN2] = ACTIONS(3049), - [anon_sym_BANG] = ACTIONS(3053), - [anon_sym_TILDE] = ACTIONS(3053), - [anon_sym_DASH] = ACTIONS(3051), - [anon_sym_PLUS] = ACTIONS(3051), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(3055), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(3051), - [anon_sym_compl] = ACTIONS(3051), - [anon_sym_DASH_DASH] = ACTIONS(3057), - [anon_sym_PLUS_PLUS] = ACTIONS(3057), - [anon_sym_sizeof] = ACTIONS(3059), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(3061), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(3063), - [anon_sym_new] = ACTIONS(3065), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [sym_identifier] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3030), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, [1540] = { - [sym__expression] = STATE(3688), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(3036), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(3036), - [sym_call_expression] = STATE(3036), - [sym_field_expression] = STATE(3036), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(3036), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(3036), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(3073), - [anon_sym_LPAREN2] = ACTIONS(3075), - [anon_sym_BANG] = ACTIONS(3079), - [anon_sym_TILDE] = ACTIONS(3079), - [anon_sym_DASH] = ACTIONS(3077), - [anon_sym_PLUS] = ACTIONS(3077), - [anon_sym_STAR] = ACTIONS(3081), - [anon_sym_AMP] = ACTIONS(3081), - [anon_sym_COLON_COLON] = ACTIONS(3083), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(3077), - [anon_sym_compl] = ACTIONS(3077), - [anon_sym_DASH_DASH] = ACTIONS(3085), - [anon_sym_PLUS_PLUS] = ACTIONS(3085), - [anon_sym_sizeof] = ACTIONS(3087), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(3089), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(3091), - [anon_sym_new] = ACTIONS(3065), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [sym_identifier] = ACTIONS(3044), + [anon_sym_LPAREN2] = ACTIONS(3046), + [anon_sym_BANG] = ACTIONS(3046), + [anon_sym_TILDE] = ACTIONS(3046), + [anon_sym_DASH] = ACTIONS(3044), + [anon_sym_PLUS] = ACTIONS(3044), + [anon_sym_STAR] = ACTIONS(3046), + [anon_sym_AMP] = ACTIONS(3046), + [anon_sym_SEMI] = ACTIONS(3046), + [anon_sym_typedef] = ACTIONS(3044), + [anon_sym_extern] = ACTIONS(3044), + [anon_sym___attribute__] = ACTIONS(3044), + [anon_sym_COLON_COLON] = ACTIONS(3046), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3046), + [anon_sym___declspec] = ACTIONS(3044), + [anon_sym_LBRACE] = ACTIONS(3046), + [anon_sym_LBRACK] = ACTIONS(3044), + [anon_sym_static] = ACTIONS(3044), + [anon_sym_register] = ACTIONS(3044), + [anon_sym_inline] = ACTIONS(3044), + [anon_sym_thread_local] = ACTIONS(3044), + [anon_sym_const] = ACTIONS(3044), + [anon_sym_constexpr] = ACTIONS(3044), + [anon_sym_volatile] = ACTIONS(3044), + [anon_sym_restrict] = ACTIONS(3044), + [anon_sym___restrict__] = ACTIONS(3044), + [anon_sym__Atomic] = ACTIONS(3044), + [anon_sym__Noreturn] = ACTIONS(3044), + [anon_sym_noreturn] = ACTIONS(3044), + [anon_sym_mutable] = ACTIONS(3044), + [anon_sym_constinit] = ACTIONS(3044), + [anon_sym_consteval] = ACTIONS(3044), + [anon_sym_signed] = ACTIONS(3044), + [anon_sym_unsigned] = ACTIONS(3044), + [anon_sym_long] = ACTIONS(3044), + [anon_sym_short] = ACTIONS(3044), + [sym_primitive_type] = ACTIONS(3044), + [anon_sym_enum] = ACTIONS(3044), + [anon_sym_class] = ACTIONS(3044), + [anon_sym_struct] = ACTIONS(3044), + [anon_sym_union] = ACTIONS(3044), + [anon_sym_if] = ACTIONS(3044), + [anon_sym_else] = ACTIONS(3044), + [anon_sym_switch] = ACTIONS(3044), + [anon_sym_while] = ACTIONS(3044), + [anon_sym_do] = ACTIONS(3044), + [anon_sym_for] = ACTIONS(3044), + [anon_sym_return] = ACTIONS(3044), + [anon_sym_break] = ACTIONS(3044), + [anon_sym_continue] = ACTIONS(3044), + [anon_sym_goto] = ACTIONS(3044), + [anon_sym_not] = ACTIONS(3044), + [anon_sym_compl] = ACTIONS(3044), + [anon_sym_DASH_DASH] = ACTIONS(3046), + [anon_sym_PLUS_PLUS] = ACTIONS(3046), + [anon_sym_sizeof] = ACTIONS(3044), + [anon_sym_offsetof] = ACTIONS(3044), + [anon_sym__Generic] = ACTIONS(3044), + [anon_sym_asm] = ACTIONS(3044), + [anon_sym___asm__] = ACTIONS(3044), + [sym_number_literal] = ACTIONS(3046), + [anon_sym_L_SQUOTE] = ACTIONS(3046), + [anon_sym_u_SQUOTE] = ACTIONS(3046), + [anon_sym_U_SQUOTE] = ACTIONS(3046), + [anon_sym_u8_SQUOTE] = ACTIONS(3046), + [anon_sym_SQUOTE] = ACTIONS(3046), + [anon_sym_L_DQUOTE] = ACTIONS(3046), + [anon_sym_u_DQUOTE] = ACTIONS(3046), + [anon_sym_U_DQUOTE] = ACTIONS(3046), + [anon_sym_u8_DQUOTE] = ACTIONS(3046), + [anon_sym_DQUOTE] = ACTIONS(3046), + [sym_true] = ACTIONS(3044), + [sym_false] = ACTIONS(3044), + [anon_sym_NULL] = ACTIONS(3044), + [anon_sym_nullptr] = ACTIONS(3044), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3044), + [anon_sym_decltype] = ACTIONS(3044), + [anon_sym_virtual] = ACTIONS(3044), + [anon_sym_typename] = ACTIONS(3044), + [anon_sym_template] = ACTIONS(3044), + [anon_sym_try] = ACTIONS(3044), + [anon_sym_delete] = ACTIONS(3044), + [anon_sym_throw] = ACTIONS(3044), + [anon_sym_co_return] = ACTIONS(3044), + [anon_sym_co_yield] = ACTIONS(3044), + [anon_sym_R_DQUOTE] = ACTIONS(3046), + [anon_sym_LR_DQUOTE] = ACTIONS(3046), + [anon_sym_uR_DQUOTE] = ACTIONS(3046), + [anon_sym_UR_DQUOTE] = ACTIONS(3046), + [anon_sym_u8R_DQUOTE] = ACTIONS(3046), + [anon_sym_co_await] = ACTIONS(3044), + [anon_sym_new] = ACTIONS(3044), + [anon_sym_requires] = ACTIONS(3044), + [sym_this] = ACTIONS(3044), }, [1541] = { - [sym__expression] = STATE(2866), - [sym_conditional_expression] = STATE(2940), - [sym_assignment_expression] = STATE(2940), - [sym_pointer_expression] = STATE(2933), - [sym_unary_expression] = STATE(2940), - [sym_binary_expression] = STATE(2940), - [sym_update_expression] = STATE(2940), - [sym_cast_expression] = STATE(2940), - [sym_sizeof_expression] = STATE(2940), - [sym_subscript_expression] = STATE(2933), - [sym_call_expression] = STATE(2933), - [sym_field_expression] = STATE(2933), - [sym_compound_literal_expression] = STATE(2940), - [sym_parenthesized_expression] = STATE(2933), - [sym_char_literal] = STATE(2845), - [sym_concatenated_string] = STATE(2845), - [sym_string_literal] = STATE(1861), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5801), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(2940), - [sym_raw_string_literal] = STATE(1861), - [sym_co_await_expression] = STATE(2940), - [sym_new_expression] = STATE(2940), - [sym_delete_expression] = STATE(2940), - [sym_requires_clause] = STATE(2940), - [sym_requires_expression] = STATE(2940), - [sym_lambda_expression] = STATE(2940), - [sym_lambda_capture_specifier] = STATE(4464), - [sym_fold_expression] = STATE(2940), - [sym_parameter_pack_expansion] = STATE(2940), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4570), - [sym_qualified_identifier] = STATE(2933), - [sym_qualified_type_identifier] = STATE(5801), - [sym_user_defined_literal] = STATE(2940), - [sym_identifier] = ACTIONS(1605), - [anon_sym_LPAREN2] = ACTIONS(1607), - [anon_sym_BANG] = ACTIONS(1611), - [anon_sym_TILDE] = ACTIONS(1611), - [anon_sym_DASH] = ACTIONS(1609), - [anon_sym_PLUS] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(2416), - [anon_sym_AMP] = ACTIONS(2416), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1619), - [anon_sym_not] = ACTIONS(1609), - [anon_sym_compl] = ACTIONS(1609), - [anon_sym_DASH_DASH] = ACTIONS(1621), - [anon_sym_PLUS_PLUS] = ACTIONS(1621), - [anon_sym_sizeof] = ACTIONS(1623), - [sym_number_literal] = ACTIONS(1625), - [anon_sym_L_SQUOTE] = ACTIONS(1627), - [anon_sym_u_SQUOTE] = ACTIONS(1627), - [anon_sym_U_SQUOTE] = ACTIONS(1627), - [anon_sym_u8_SQUOTE] = ACTIONS(1627), - [anon_sym_SQUOTE] = ACTIONS(1627), - [anon_sym_L_DQUOTE] = ACTIONS(1629), - [anon_sym_u_DQUOTE] = ACTIONS(1629), - [anon_sym_U_DQUOTE] = ACTIONS(1629), - [anon_sym_u8_DQUOTE] = ACTIONS(1629), - [anon_sym_DQUOTE] = ACTIONS(1629), - [sym_true] = ACTIONS(1631), - [sym_false] = ACTIONS(1631), - [sym_null] = ACTIONS(1631), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1633), - [anon_sym_R_DQUOTE] = ACTIONS(1635), - [anon_sym_LR_DQUOTE] = ACTIONS(1635), - [anon_sym_uR_DQUOTE] = ACTIONS(1635), - [anon_sym_UR_DQUOTE] = ACTIONS(1635), - [anon_sym_u8R_DQUOTE] = ACTIONS(1635), - [anon_sym_co_await] = ACTIONS(1637), - [anon_sym_new] = ACTIONS(1639), - [anon_sym_requires] = ACTIONS(1641), - [sym_this] = ACTIONS(1631), - [sym_nullptr] = ACTIONS(1631), + [sym_identifier] = ACTIONS(3040), + [anon_sym_LPAREN2] = ACTIONS(3042), + [anon_sym_BANG] = ACTIONS(3042), + [anon_sym_TILDE] = ACTIONS(3042), + [anon_sym_DASH] = ACTIONS(3040), + [anon_sym_PLUS] = ACTIONS(3040), + [anon_sym_STAR] = ACTIONS(3042), + [anon_sym_AMP] = ACTIONS(3042), + [anon_sym_SEMI] = ACTIONS(3042), + [anon_sym_typedef] = ACTIONS(3040), + [anon_sym_extern] = ACTIONS(3040), + [anon_sym___attribute__] = ACTIONS(3040), + [anon_sym_COLON_COLON] = ACTIONS(3042), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3042), + [anon_sym___declspec] = ACTIONS(3040), + [anon_sym_LBRACE] = ACTIONS(3042), + [anon_sym_LBRACK] = ACTIONS(3040), + [anon_sym_static] = ACTIONS(3040), + [anon_sym_register] = ACTIONS(3040), + [anon_sym_inline] = ACTIONS(3040), + [anon_sym_thread_local] = ACTIONS(3040), + [anon_sym_const] = ACTIONS(3040), + [anon_sym_constexpr] = ACTIONS(3040), + [anon_sym_volatile] = ACTIONS(3040), + [anon_sym_restrict] = ACTIONS(3040), + [anon_sym___restrict__] = ACTIONS(3040), + [anon_sym__Atomic] = ACTIONS(3040), + [anon_sym__Noreturn] = ACTIONS(3040), + [anon_sym_noreturn] = ACTIONS(3040), + [anon_sym_mutable] = ACTIONS(3040), + [anon_sym_constinit] = ACTIONS(3040), + [anon_sym_consteval] = ACTIONS(3040), + [anon_sym_signed] = ACTIONS(3040), + [anon_sym_unsigned] = ACTIONS(3040), + [anon_sym_long] = ACTIONS(3040), + [anon_sym_short] = ACTIONS(3040), + [sym_primitive_type] = ACTIONS(3040), + [anon_sym_enum] = ACTIONS(3040), + [anon_sym_class] = ACTIONS(3040), + [anon_sym_struct] = ACTIONS(3040), + [anon_sym_union] = ACTIONS(3040), + [anon_sym_if] = ACTIONS(3040), + [anon_sym_else] = ACTIONS(3040), + [anon_sym_switch] = ACTIONS(3040), + [anon_sym_while] = ACTIONS(3040), + [anon_sym_do] = ACTIONS(3040), + [anon_sym_for] = ACTIONS(3040), + [anon_sym_return] = ACTIONS(3040), + [anon_sym_break] = ACTIONS(3040), + [anon_sym_continue] = ACTIONS(3040), + [anon_sym_goto] = ACTIONS(3040), + [anon_sym_not] = ACTIONS(3040), + [anon_sym_compl] = ACTIONS(3040), + [anon_sym_DASH_DASH] = ACTIONS(3042), + [anon_sym_PLUS_PLUS] = ACTIONS(3042), + [anon_sym_sizeof] = ACTIONS(3040), + [anon_sym_offsetof] = ACTIONS(3040), + [anon_sym__Generic] = ACTIONS(3040), + [anon_sym_asm] = ACTIONS(3040), + [anon_sym___asm__] = ACTIONS(3040), + [sym_number_literal] = ACTIONS(3042), + [anon_sym_L_SQUOTE] = ACTIONS(3042), + [anon_sym_u_SQUOTE] = ACTIONS(3042), + [anon_sym_U_SQUOTE] = ACTIONS(3042), + [anon_sym_u8_SQUOTE] = ACTIONS(3042), + [anon_sym_SQUOTE] = ACTIONS(3042), + [anon_sym_L_DQUOTE] = ACTIONS(3042), + [anon_sym_u_DQUOTE] = ACTIONS(3042), + [anon_sym_U_DQUOTE] = ACTIONS(3042), + [anon_sym_u8_DQUOTE] = ACTIONS(3042), + [anon_sym_DQUOTE] = ACTIONS(3042), + [sym_true] = ACTIONS(3040), + [sym_false] = ACTIONS(3040), + [anon_sym_NULL] = ACTIONS(3040), + [anon_sym_nullptr] = ACTIONS(3040), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3040), + [anon_sym_decltype] = ACTIONS(3040), + [anon_sym_virtual] = ACTIONS(3040), + [anon_sym_typename] = ACTIONS(3040), + [anon_sym_template] = ACTIONS(3040), + [anon_sym_try] = ACTIONS(3040), + [anon_sym_delete] = ACTIONS(3040), + [anon_sym_throw] = ACTIONS(3040), + [anon_sym_co_return] = ACTIONS(3040), + [anon_sym_co_yield] = ACTIONS(3040), + [anon_sym_R_DQUOTE] = ACTIONS(3042), + [anon_sym_LR_DQUOTE] = ACTIONS(3042), + [anon_sym_uR_DQUOTE] = ACTIONS(3042), + [anon_sym_UR_DQUOTE] = ACTIONS(3042), + [anon_sym_u8R_DQUOTE] = ACTIONS(3042), + [anon_sym_co_await] = ACTIONS(3040), + [anon_sym_new] = ACTIONS(3040), + [anon_sym_requires] = ACTIONS(3040), + [sym_this] = ACTIONS(3040), }, [1542] = { - [sym__expression] = STATE(2669), - [sym_conditional_expression] = STATE(2786), - [sym_assignment_expression] = STATE(2786), - [sym_pointer_expression] = STATE(2784), - [sym_unary_expression] = STATE(2786), - [sym_binary_expression] = STATE(2786), - [sym_update_expression] = STATE(2786), - [sym_cast_expression] = STATE(2786), - [sym_sizeof_expression] = STATE(2786), - [sym_subscript_expression] = STATE(2784), - [sym_call_expression] = STATE(2784), - [sym_field_expression] = STATE(2784), - [sym_compound_literal_expression] = STATE(2786), - [sym_parenthesized_expression] = STATE(2784), - [sym_char_literal] = STATE(2651), - [sym_concatenated_string] = STATE(2651), - [sym_string_literal] = STATE(1840), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5891), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(2786), - [sym_raw_string_literal] = STATE(1840), - [sym_co_await_expression] = STATE(2786), - [sym_new_expression] = STATE(2786), - [sym_delete_expression] = STATE(2786), - [sym_requires_clause] = STATE(2786), - [sym_requires_expression] = STATE(2786), - [sym_lambda_expression] = STATE(2786), - [sym_lambda_capture_specifier] = STATE(4484), - [sym_fold_expression] = STATE(2786), - [sym_parameter_pack_expansion] = STATE(2786), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4584), - [sym_qualified_identifier] = STATE(2784), - [sym_qualified_type_identifier] = STATE(5891), - [sym_user_defined_literal] = STATE(2786), - [sym_identifier] = ACTIONS(1567), - [anon_sym_LPAREN2] = ACTIONS(1569), - [anon_sym_BANG] = ACTIONS(1573), - [anon_sym_TILDE] = ACTIONS(1573), - [anon_sym_DASH] = ACTIONS(1571), - [anon_sym_PLUS] = ACTIONS(1571), - [anon_sym_STAR] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(1445), - [anon_sym_COLON_COLON] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1581), - [anon_sym_not] = ACTIONS(1571), - [anon_sym_compl] = ACTIONS(1571), - [anon_sym_DASH_DASH] = ACTIONS(1583), - [anon_sym_PLUS_PLUS] = ACTIONS(1583), - [anon_sym_sizeof] = ACTIONS(1585), - [sym_number_literal] = ACTIONS(1587), - [anon_sym_L_SQUOTE] = ACTIONS(1589), - [anon_sym_u_SQUOTE] = ACTIONS(1589), - [anon_sym_U_SQUOTE] = ACTIONS(1589), - [anon_sym_u8_SQUOTE] = ACTIONS(1589), - [anon_sym_SQUOTE] = ACTIONS(1589), - [anon_sym_L_DQUOTE] = ACTIONS(1591), - [anon_sym_u_DQUOTE] = ACTIONS(1591), - [anon_sym_U_DQUOTE] = ACTIONS(1591), - [anon_sym_u8_DQUOTE] = ACTIONS(1591), - [anon_sym_DQUOTE] = ACTIONS(1591), - [sym_true] = ACTIONS(1593), - [sym_false] = ACTIONS(1593), - [sym_null] = ACTIONS(1593), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1595), - [anon_sym_R_DQUOTE] = ACTIONS(1597), - [anon_sym_LR_DQUOTE] = ACTIONS(1597), - [anon_sym_uR_DQUOTE] = ACTIONS(1597), - [anon_sym_UR_DQUOTE] = ACTIONS(1597), - [anon_sym_u8R_DQUOTE] = ACTIONS(1597), - [anon_sym_co_await] = ACTIONS(1599), - [anon_sym_new] = ACTIONS(1601), - [anon_sym_requires] = ACTIONS(1603), - [sym_this] = ACTIONS(1593), - [sym_nullptr] = ACTIONS(1593), + [sym_identifier] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3030), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, [1543] = { - [sym__expression] = STATE(2670), - [sym_conditional_expression] = STATE(2786), - [sym_assignment_expression] = STATE(2786), - [sym_pointer_expression] = STATE(2784), - [sym_unary_expression] = STATE(2786), - [sym_binary_expression] = STATE(2786), - [sym_update_expression] = STATE(2786), - [sym_cast_expression] = STATE(2786), - [sym_sizeof_expression] = STATE(2786), - [sym_subscript_expression] = STATE(2784), - [sym_call_expression] = STATE(2784), - [sym_field_expression] = STATE(2784), - [sym_compound_literal_expression] = STATE(2786), - [sym_parenthesized_expression] = STATE(2784), - [sym_char_literal] = STATE(2651), - [sym_concatenated_string] = STATE(2651), - [sym_string_literal] = STATE(1840), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5891), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(2786), - [sym_raw_string_literal] = STATE(1840), - [sym_co_await_expression] = STATE(2786), - [sym_new_expression] = STATE(2786), - [sym_delete_expression] = STATE(2786), - [sym_requires_clause] = STATE(2786), - [sym_requires_expression] = STATE(2786), - [sym_lambda_expression] = STATE(2786), - [sym_lambda_capture_specifier] = STATE(4484), - [sym_fold_expression] = STATE(2786), - [sym_parameter_pack_expansion] = STATE(2786), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4584), - [sym_qualified_identifier] = STATE(2784), - [sym_qualified_type_identifier] = STATE(5891), - [sym_user_defined_literal] = STATE(2786), - [sym_identifier] = ACTIONS(1567), - [anon_sym_LPAREN2] = ACTIONS(1569), - [anon_sym_BANG] = ACTIONS(1573), - [anon_sym_TILDE] = ACTIONS(1573), - [anon_sym_DASH] = ACTIONS(1571), - [anon_sym_PLUS] = ACTIONS(1571), - [anon_sym_STAR] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(1445), - [anon_sym_COLON_COLON] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1581), - [anon_sym_not] = ACTIONS(1571), - [anon_sym_compl] = ACTIONS(1571), - [anon_sym_DASH_DASH] = ACTIONS(1583), - [anon_sym_PLUS_PLUS] = ACTIONS(1583), - [anon_sym_sizeof] = ACTIONS(1585), - [sym_number_literal] = ACTIONS(1587), - [anon_sym_L_SQUOTE] = ACTIONS(1589), - [anon_sym_u_SQUOTE] = ACTIONS(1589), - [anon_sym_U_SQUOTE] = ACTIONS(1589), - [anon_sym_u8_SQUOTE] = ACTIONS(1589), - [anon_sym_SQUOTE] = ACTIONS(1589), - [anon_sym_L_DQUOTE] = ACTIONS(1591), - [anon_sym_u_DQUOTE] = ACTIONS(1591), - [anon_sym_U_DQUOTE] = ACTIONS(1591), - [anon_sym_u8_DQUOTE] = ACTIONS(1591), - [anon_sym_DQUOTE] = ACTIONS(1591), - [sym_true] = ACTIONS(1593), - [sym_false] = ACTIONS(1593), - [sym_null] = ACTIONS(1593), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1595), - [anon_sym_R_DQUOTE] = ACTIONS(1597), - [anon_sym_LR_DQUOTE] = ACTIONS(1597), - [anon_sym_uR_DQUOTE] = ACTIONS(1597), - [anon_sym_UR_DQUOTE] = ACTIONS(1597), - [anon_sym_u8R_DQUOTE] = ACTIONS(1597), - [anon_sym_co_await] = ACTIONS(1599), - [anon_sym_new] = ACTIONS(1601), - [anon_sym_requires] = ACTIONS(1603), - [sym_this] = ACTIONS(1593), - [sym_nullptr] = ACTIONS(1593), + [sym_identifier] = ACTIONS(3036), + [anon_sym_LPAREN2] = ACTIONS(3038), + [anon_sym_BANG] = ACTIONS(3038), + [anon_sym_TILDE] = ACTIONS(3038), + [anon_sym_DASH] = ACTIONS(3036), + [anon_sym_PLUS] = ACTIONS(3036), + [anon_sym_STAR] = ACTIONS(3038), + [anon_sym_AMP] = ACTIONS(3038), + [anon_sym_SEMI] = ACTIONS(3038), + [anon_sym_typedef] = ACTIONS(3036), + [anon_sym_extern] = ACTIONS(3036), + [anon_sym___attribute__] = ACTIONS(3036), + [anon_sym_COLON_COLON] = ACTIONS(3038), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3038), + [anon_sym___declspec] = ACTIONS(3036), + [anon_sym_LBRACE] = ACTIONS(3038), + [anon_sym_LBRACK] = ACTIONS(3036), + [anon_sym_static] = ACTIONS(3036), + [anon_sym_register] = ACTIONS(3036), + [anon_sym_inline] = ACTIONS(3036), + [anon_sym_thread_local] = ACTIONS(3036), + [anon_sym_const] = ACTIONS(3036), + [anon_sym_constexpr] = ACTIONS(3036), + [anon_sym_volatile] = ACTIONS(3036), + [anon_sym_restrict] = ACTIONS(3036), + [anon_sym___restrict__] = ACTIONS(3036), + [anon_sym__Atomic] = ACTIONS(3036), + [anon_sym__Noreturn] = ACTIONS(3036), + [anon_sym_noreturn] = ACTIONS(3036), + [anon_sym_mutable] = ACTIONS(3036), + [anon_sym_constinit] = ACTIONS(3036), + [anon_sym_consteval] = ACTIONS(3036), + [anon_sym_signed] = ACTIONS(3036), + [anon_sym_unsigned] = ACTIONS(3036), + [anon_sym_long] = ACTIONS(3036), + [anon_sym_short] = ACTIONS(3036), + [sym_primitive_type] = ACTIONS(3036), + [anon_sym_enum] = ACTIONS(3036), + [anon_sym_class] = ACTIONS(3036), + [anon_sym_struct] = ACTIONS(3036), + [anon_sym_union] = ACTIONS(3036), + [anon_sym_if] = ACTIONS(3036), + [anon_sym_else] = ACTIONS(3036), + [anon_sym_switch] = ACTIONS(3036), + [anon_sym_while] = ACTIONS(3036), + [anon_sym_do] = ACTIONS(3036), + [anon_sym_for] = ACTIONS(3036), + [anon_sym_return] = ACTIONS(3036), + [anon_sym_break] = ACTIONS(3036), + [anon_sym_continue] = ACTIONS(3036), + [anon_sym_goto] = ACTIONS(3036), + [anon_sym_not] = ACTIONS(3036), + [anon_sym_compl] = ACTIONS(3036), + [anon_sym_DASH_DASH] = ACTIONS(3038), + [anon_sym_PLUS_PLUS] = ACTIONS(3038), + [anon_sym_sizeof] = ACTIONS(3036), + [anon_sym_offsetof] = ACTIONS(3036), + [anon_sym__Generic] = ACTIONS(3036), + [anon_sym_asm] = ACTIONS(3036), + [anon_sym___asm__] = ACTIONS(3036), + [sym_number_literal] = ACTIONS(3038), + [anon_sym_L_SQUOTE] = ACTIONS(3038), + [anon_sym_u_SQUOTE] = ACTIONS(3038), + [anon_sym_U_SQUOTE] = ACTIONS(3038), + [anon_sym_u8_SQUOTE] = ACTIONS(3038), + [anon_sym_SQUOTE] = ACTIONS(3038), + [anon_sym_L_DQUOTE] = ACTIONS(3038), + [anon_sym_u_DQUOTE] = ACTIONS(3038), + [anon_sym_U_DQUOTE] = ACTIONS(3038), + [anon_sym_u8_DQUOTE] = ACTIONS(3038), + [anon_sym_DQUOTE] = ACTIONS(3038), + [sym_true] = ACTIONS(3036), + [sym_false] = ACTIONS(3036), + [anon_sym_NULL] = ACTIONS(3036), + [anon_sym_nullptr] = ACTIONS(3036), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3036), + [anon_sym_decltype] = ACTIONS(3036), + [anon_sym_virtual] = ACTIONS(3036), + [anon_sym_typename] = ACTIONS(3036), + [anon_sym_template] = ACTIONS(3036), + [anon_sym_try] = ACTIONS(3036), + [anon_sym_delete] = ACTIONS(3036), + [anon_sym_throw] = ACTIONS(3036), + [anon_sym_co_return] = ACTIONS(3036), + [anon_sym_co_yield] = ACTIONS(3036), + [anon_sym_R_DQUOTE] = ACTIONS(3038), + [anon_sym_LR_DQUOTE] = ACTIONS(3038), + [anon_sym_uR_DQUOTE] = ACTIONS(3038), + [anon_sym_UR_DQUOTE] = ACTIONS(3038), + [anon_sym_u8R_DQUOTE] = ACTIONS(3038), + [anon_sym_co_await] = ACTIONS(3036), + [anon_sym_new] = ACTIONS(3036), + [anon_sym_requires] = ACTIONS(3036), + [sym_this] = ACTIONS(3036), }, [1544] = { - [sym__expression] = STATE(3614), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2984), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2984), - [sym_call_expression] = STATE(2984), - [sym_field_expression] = STATE(2984), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2984), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2984), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(3047), - [anon_sym_LPAREN2] = ACTIONS(3049), - [anon_sym_BANG] = ACTIONS(3053), - [anon_sym_TILDE] = ACTIONS(3053), - [anon_sym_DASH] = ACTIONS(3051), - [anon_sym_PLUS] = ACTIONS(3051), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(3055), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(3051), - [anon_sym_compl] = ACTIONS(3051), - [anon_sym_DASH_DASH] = ACTIONS(3057), - [anon_sym_PLUS_PLUS] = ACTIONS(3057), - [anon_sym_sizeof] = ACTIONS(3059), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(3061), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(3063), - [anon_sym_new] = ACTIONS(3065), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [sym_identifier] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3030), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, [1545] = { - [sym__expression] = STATE(2487), - [sym_conditional_expression] = STATE(2574), - [sym_assignment_expression] = STATE(2574), - [sym_pointer_expression] = STATE(2578), - [sym_unary_expression] = STATE(2574), - [sym_binary_expression] = STATE(2574), - [sym_update_expression] = STATE(2574), - [sym_cast_expression] = STATE(2574), - [sym_sizeof_expression] = STATE(2574), - [sym_subscript_expression] = STATE(2578), - [sym_call_expression] = STATE(2578), - [sym_field_expression] = STATE(2578), - [sym_compound_literal_expression] = STATE(2574), - [sym_parenthesized_expression] = STATE(2578), - [sym_char_literal] = STATE(2207), - [sym_concatenated_string] = STATE(2207), - [sym_string_literal] = STATE(1820), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5944), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(2574), - [sym_raw_string_literal] = STATE(1820), - [sym_co_await_expression] = STATE(2574), - [sym_new_expression] = STATE(2574), - [sym_delete_expression] = STATE(2574), - [sym_requires_clause] = STATE(2574), - [sym_requires_expression] = STATE(2574), - [sym_lambda_expression] = STATE(2574), - [sym_lambda_capture_specifier] = STATE(4479), - [sym_fold_expression] = STATE(2574), - [sym_parameter_pack_expansion] = STATE(2574), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2578), - [sym_qualified_type_identifier] = STATE(5944), - [sym_user_defined_literal] = STATE(2574), - [sym_identifier] = ACTIONS(1523), - [anon_sym_LPAREN2] = ACTIONS(1527), - [anon_sym_BANG] = ACTIONS(1531), - [anon_sym_TILDE] = ACTIONS(1531), - [anon_sym_DASH] = ACTIONS(1529), - [anon_sym_PLUS] = ACTIONS(1529), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(1529), - [anon_sym_compl] = ACTIONS(1529), - [anon_sym_DASH_DASH] = ACTIONS(1543), - [anon_sym_PLUS_PLUS] = ACTIONS(1543), - [anon_sym_sizeof] = ACTIONS(1545), - [sym_number_literal] = ACTIONS(1547), - [anon_sym_L_SQUOTE] = ACTIONS(1549), - [anon_sym_u_SQUOTE] = ACTIONS(1549), - [anon_sym_U_SQUOTE] = ACTIONS(1549), - [anon_sym_u8_SQUOTE] = ACTIONS(1549), - [anon_sym_SQUOTE] = ACTIONS(1549), - [anon_sym_L_DQUOTE] = ACTIONS(1551), - [anon_sym_u_DQUOTE] = ACTIONS(1551), - [anon_sym_U_DQUOTE] = ACTIONS(1551), - [anon_sym_u8_DQUOTE] = ACTIONS(1551), - [anon_sym_DQUOTE] = ACTIONS(1551), - [sym_true] = ACTIONS(1553), - [sym_false] = ACTIONS(1553), - [sym_null] = ACTIONS(1553), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1557), - [anon_sym_R_DQUOTE] = ACTIONS(1559), - [anon_sym_LR_DQUOTE] = ACTIONS(1559), - [anon_sym_uR_DQUOTE] = ACTIONS(1559), - [anon_sym_UR_DQUOTE] = ACTIONS(1559), - [anon_sym_u8R_DQUOTE] = ACTIONS(1559), - [anon_sym_co_await] = ACTIONS(1561), - [anon_sym_new] = ACTIONS(1563), - [anon_sym_requires] = ACTIONS(1565), - [sym_this] = ACTIONS(1553), - [sym_nullptr] = ACTIONS(1553), + [sym_identifier] = ACTIONS(2916), + [anon_sym_LPAREN2] = ACTIONS(2918), + [anon_sym_BANG] = ACTIONS(2918), + [anon_sym_TILDE] = ACTIONS(2918), + [anon_sym_DASH] = ACTIONS(2916), + [anon_sym_PLUS] = ACTIONS(2916), + [anon_sym_STAR] = ACTIONS(2918), + [anon_sym_AMP] = ACTIONS(2918), + [anon_sym_SEMI] = ACTIONS(2918), + [anon_sym_typedef] = ACTIONS(2916), + [anon_sym_extern] = ACTIONS(2916), + [anon_sym___attribute__] = ACTIONS(2916), + [anon_sym_COLON_COLON] = ACTIONS(2918), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2918), + [anon_sym___declspec] = ACTIONS(2916), + [anon_sym_LBRACE] = ACTIONS(2918), + [anon_sym_LBRACK] = ACTIONS(2916), + [anon_sym_static] = ACTIONS(2916), + [anon_sym_register] = ACTIONS(2916), + [anon_sym_inline] = ACTIONS(2916), + [anon_sym_thread_local] = ACTIONS(2916), + [anon_sym_const] = ACTIONS(2916), + [anon_sym_constexpr] = ACTIONS(2916), + [anon_sym_volatile] = ACTIONS(2916), + [anon_sym_restrict] = ACTIONS(2916), + [anon_sym___restrict__] = ACTIONS(2916), + [anon_sym__Atomic] = ACTIONS(2916), + [anon_sym__Noreturn] = ACTIONS(2916), + [anon_sym_noreturn] = ACTIONS(2916), + [anon_sym_mutable] = ACTIONS(2916), + [anon_sym_constinit] = ACTIONS(2916), + [anon_sym_consteval] = ACTIONS(2916), + [anon_sym_signed] = ACTIONS(2916), + [anon_sym_unsigned] = ACTIONS(2916), + [anon_sym_long] = ACTIONS(2916), + [anon_sym_short] = ACTIONS(2916), + [sym_primitive_type] = ACTIONS(2916), + [anon_sym_enum] = ACTIONS(2916), + [anon_sym_class] = ACTIONS(2916), + [anon_sym_struct] = ACTIONS(2916), + [anon_sym_union] = ACTIONS(2916), + [anon_sym_if] = ACTIONS(2916), + [anon_sym_else] = ACTIONS(2916), + [anon_sym_switch] = ACTIONS(2916), + [anon_sym_while] = ACTIONS(2916), + [anon_sym_do] = ACTIONS(2916), + [anon_sym_for] = ACTIONS(2916), + [anon_sym_return] = ACTIONS(2916), + [anon_sym_break] = ACTIONS(2916), + [anon_sym_continue] = ACTIONS(2916), + [anon_sym_goto] = ACTIONS(2916), + [anon_sym_not] = ACTIONS(2916), + [anon_sym_compl] = ACTIONS(2916), + [anon_sym_DASH_DASH] = ACTIONS(2918), + [anon_sym_PLUS_PLUS] = ACTIONS(2918), + [anon_sym_sizeof] = ACTIONS(2916), + [anon_sym_offsetof] = ACTIONS(2916), + [anon_sym__Generic] = ACTIONS(2916), + [anon_sym_asm] = ACTIONS(2916), + [anon_sym___asm__] = ACTIONS(2916), + [sym_number_literal] = ACTIONS(2918), + [anon_sym_L_SQUOTE] = ACTIONS(2918), + [anon_sym_u_SQUOTE] = ACTIONS(2918), + [anon_sym_U_SQUOTE] = ACTIONS(2918), + [anon_sym_u8_SQUOTE] = ACTIONS(2918), + [anon_sym_SQUOTE] = ACTIONS(2918), + [anon_sym_L_DQUOTE] = ACTIONS(2918), + [anon_sym_u_DQUOTE] = ACTIONS(2918), + [anon_sym_U_DQUOTE] = ACTIONS(2918), + [anon_sym_u8_DQUOTE] = ACTIONS(2918), + [anon_sym_DQUOTE] = ACTIONS(2918), + [sym_true] = ACTIONS(2916), + [sym_false] = ACTIONS(2916), + [anon_sym_NULL] = ACTIONS(2916), + [anon_sym_nullptr] = ACTIONS(2916), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2916), + [anon_sym_decltype] = ACTIONS(2916), + [anon_sym_virtual] = ACTIONS(2916), + [anon_sym_typename] = ACTIONS(2916), + [anon_sym_template] = ACTIONS(2916), + [anon_sym_try] = ACTIONS(2916), + [anon_sym_delete] = ACTIONS(2916), + [anon_sym_throw] = ACTIONS(2916), + [anon_sym_co_return] = ACTIONS(2916), + [anon_sym_co_yield] = ACTIONS(2916), + [anon_sym_R_DQUOTE] = ACTIONS(2918), + [anon_sym_LR_DQUOTE] = ACTIONS(2918), + [anon_sym_uR_DQUOTE] = ACTIONS(2918), + [anon_sym_UR_DQUOTE] = ACTIONS(2918), + [anon_sym_u8R_DQUOTE] = ACTIONS(2918), + [anon_sym_co_await] = ACTIONS(2916), + [anon_sym_new] = ACTIONS(2916), + [anon_sym_requires] = ACTIONS(2916), + [sym_this] = ACTIONS(2916), }, [1546] = { - [sym__expression] = STATE(2488), - [sym_conditional_expression] = STATE(2574), - [sym_assignment_expression] = STATE(2574), - [sym_pointer_expression] = STATE(2578), - [sym_unary_expression] = STATE(2574), - [sym_binary_expression] = STATE(2574), - [sym_update_expression] = STATE(2574), - [sym_cast_expression] = STATE(2574), - [sym_sizeof_expression] = STATE(2574), - [sym_subscript_expression] = STATE(2578), - [sym_call_expression] = STATE(2578), - [sym_field_expression] = STATE(2578), - [sym_compound_literal_expression] = STATE(2574), - [sym_parenthesized_expression] = STATE(2578), - [sym_char_literal] = STATE(2207), - [sym_concatenated_string] = STATE(2207), - [sym_string_literal] = STATE(1820), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5944), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(2574), - [sym_raw_string_literal] = STATE(1820), - [sym_co_await_expression] = STATE(2574), - [sym_new_expression] = STATE(2574), - [sym_delete_expression] = STATE(2574), - [sym_requires_clause] = STATE(2574), - [sym_requires_expression] = STATE(2574), - [sym_lambda_expression] = STATE(2574), - [sym_lambda_capture_specifier] = STATE(4479), - [sym_fold_expression] = STATE(2574), - [sym_parameter_pack_expansion] = STATE(2574), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2578), - [sym_qualified_type_identifier] = STATE(5944), - [sym_user_defined_literal] = STATE(2574), - [sym_identifier] = ACTIONS(1523), - [anon_sym_LPAREN2] = ACTIONS(1527), - [anon_sym_BANG] = ACTIONS(1531), - [anon_sym_TILDE] = ACTIONS(1531), - [anon_sym_DASH] = ACTIONS(1529), - [anon_sym_PLUS] = ACTIONS(1529), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(1529), - [anon_sym_compl] = ACTIONS(1529), - [anon_sym_DASH_DASH] = ACTIONS(1543), - [anon_sym_PLUS_PLUS] = ACTIONS(1543), - [anon_sym_sizeof] = ACTIONS(1545), - [sym_number_literal] = ACTIONS(1547), - [anon_sym_L_SQUOTE] = ACTIONS(1549), - [anon_sym_u_SQUOTE] = ACTIONS(1549), - [anon_sym_U_SQUOTE] = ACTIONS(1549), - [anon_sym_u8_SQUOTE] = ACTIONS(1549), - [anon_sym_SQUOTE] = ACTIONS(1549), - [anon_sym_L_DQUOTE] = ACTIONS(1551), - [anon_sym_u_DQUOTE] = ACTIONS(1551), - [anon_sym_U_DQUOTE] = ACTIONS(1551), - [anon_sym_u8_DQUOTE] = ACTIONS(1551), - [anon_sym_DQUOTE] = ACTIONS(1551), - [sym_true] = ACTIONS(1553), - [sym_false] = ACTIONS(1553), - [sym_null] = ACTIONS(1553), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1557), - [anon_sym_R_DQUOTE] = ACTIONS(1559), - [anon_sym_LR_DQUOTE] = ACTIONS(1559), - [anon_sym_uR_DQUOTE] = ACTIONS(1559), - [anon_sym_UR_DQUOTE] = ACTIONS(1559), - [anon_sym_u8R_DQUOTE] = ACTIONS(1559), - [anon_sym_co_await] = ACTIONS(1561), - [anon_sym_new] = ACTIONS(1563), - [anon_sym_requires] = ACTIONS(1565), - [sym_this] = ACTIONS(1553), - [sym_nullptr] = ACTIONS(1553), + [sym_identifier] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3050), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, [1547] = { - [sym__expression] = STATE(2489), - [sym_conditional_expression] = STATE(2574), - [sym_assignment_expression] = STATE(2574), - [sym_pointer_expression] = STATE(2578), - [sym_unary_expression] = STATE(2574), - [sym_binary_expression] = STATE(2574), - [sym_update_expression] = STATE(2574), - [sym_cast_expression] = STATE(2574), - [sym_sizeof_expression] = STATE(2574), - [sym_subscript_expression] = STATE(2578), - [sym_call_expression] = STATE(2578), - [sym_field_expression] = STATE(2578), - [sym_compound_literal_expression] = STATE(2574), - [sym_parenthesized_expression] = STATE(2578), - [sym_char_literal] = STATE(2207), - [sym_concatenated_string] = STATE(2207), - [sym_string_literal] = STATE(1820), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5944), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(2574), - [sym_raw_string_literal] = STATE(1820), - [sym_co_await_expression] = STATE(2574), - [sym_new_expression] = STATE(2574), - [sym_delete_expression] = STATE(2574), - [sym_requires_clause] = STATE(2574), - [sym_requires_expression] = STATE(2574), - [sym_lambda_expression] = STATE(2574), - [sym_lambda_capture_specifier] = STATE(4479), - [sym_fold_expression] = STATE(2574), - [sym_parameter_pack_expansion] = STATE(2574), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2578), - [sym_qualified_type_identifier] = STATE(5944), - [sym_user_defined_literal] = STATE(2574), - [sym_identifier] = ACTIONS(1523), - [anon_sym_LPAREN2] = ACTIONS(1527), - [anon_sym_BANG] = ACTIONS(1531), - [anon_sym_TILDE] = ACTIONS(1531), - [anon_sym_DASH] = ACTIONS(1529), - [anon_sym_PLUS] = ACTIONS(1529), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(1529), - [anon_sym_compl] = ACTIONS(1529), - [anon_sym_DASH_DASH] = ACTIONS(1543), - [anon_sym_PLUS_PLUS] = ACTIONS(1543), - [anon_sym_sizeof] = ACTIONS(1545), - [sym_number_literal] = ACTIONS(1547), - [anon_sym_L_SQUOTE] = ACTIONS(1549), - [anon_sym_u_SQUOTE] = ACTIONS(1549), - [anon_sym_U_SQUOTE] = ACTIONS(1549), - [anon_sym_u8_SQUOTE] = ACTIONS(1549), - [anon_sym_SQUOTE] = ACTIONS(1549), - [anon_sym_L_DQUOTE] = ACTIONS(1551), - [anon_sym_u_DQUOTE] = ACTIONS(1551), - [anon_sym_U_DQUOTE] = ACTIONS(1551), - [anon_sym_u8_DQUOTE] = ACTIONS(1551), - [anon_sym_DQUOTE] = ACTIONS(1551), - [sym_true] = ACTIONS(1553), - [sym_false] = ACTIONS(1553), - [sym_null] = ACTIONS(1553), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1557), - [anon_sym_R_DQUOTE] = ACTIONS(1559), - [anon_sym_LR_DQUOTE] = ACTIONS(1559), - [anon_sym_uR_DQUOTE] = ACTIONS(1559), - [anon_sym_UR_DQUOTE] = ACTIONS(1559), - [anon_sym_u8R_DQUOTE] = ACTIONS(1559), - [anon_sym_co_await] = ACTIONS(1561), - [anon_sym_new] = ACTIONS(1563), - [anon_sym_requires] = ACTIONS(1565), - [sym_this] = ACTIONS(1553), - [sym_nullptr] = ACTIONS(1553), + [sym_identifier] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3030), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, [1548] = { - [sym__expression] = STATE(2490), - [sym_conditional_expression] = STATE(2574), - [sym_assignment_expression] = STATE(2574), - [sym_pointer_expression] = STATE(2578), - [sym_unary_expression] = STATE(2574), - [sym_binary_expression] = STATE(2574), - [sym_update_expression] = STATE(2574), - [sym_cast_expression] = STATE(2574), - [sym_sizeof_expression] = STATE(2574), - [sym_subscript_expression] = STATE(2578), - [sym_call_expression] = STATE(2578), - [sym_field_expression] = STATE(2578), - [sym_compound_literal_expression] = STATE(2574), - [sym_parenthesized_expression] = STATE(2578), - [sym_char_literal] = STATE(2207), - [sym_concatenated_string] = STATE(2207), - [sym_string_literal] = STATE(1820), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5944), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(2574), - [sym_raw_string_literal] = STATE(1820), - [sym_co_await_expression] = STATE(2574), - [sym_new_expression] = STATE(2574), - [sym_delete_expression] = STATE(2574), - [sym_requires_clause] = STATE(2574), - [sym_requires_expression] = STATE(2574), - [sym_lambda_expression] = STATE(2574), - [sym_lambda_capture_specifier] = STATE(4479), - [sym_fold_expression] = STATE(2574), - [sym_parameter_pack_expansion] = STATE(2574), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2578), - [sym_qualified_type_identifier] = STATE(5944), - [sym_user_defined_literal] = STATE(2574), - [sym_identifier] = ACTIONS(1523), - [anon_sym_LPAREN2] = ACTIONS(1527), - [anon_sym_BANG] = ACTIONS(1531), - [anon_sym_TILDE] = ACTIONS(1531), - [anon_sym_DASH] = ACTIONS(1529), - [anon_sym_PLUS] = ACTIONS(1529), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(1529), - [anon_sym_compl] = ACTIONS(1529), - [anon_sym_DASH_DASH] = ACTIONS(1543), - [anon_sym_PLUS_PLUS] = ACTIONS(1543), - [anon_sym_sizeof] = ACTIONS(1545), - [sym_number_literal] = ACTIONS(1547), - [anon_sym_L_SQUOTE] = ACTIONS(1549), - [anon_sym_u_SQUOTE] = ACTIONS(1549), - [anon_sym_U_SQUOTE] = ACTIONS(1549), - [anon_sym_u8_SQUOTE] = ACTIONS(1549), - [anon_sym_SQUOTE] = ACTIONS(1549), - [anon_sym_L_DQUOTE] = ACTIONS(1551), - [anon_sym_u_DQUOTE] = ACTIONS(1551), - [anon_sym_U_DQUOTE] = ACTIONS(1551), - [anon_sym_u8_DQUOTE] = ACTIONS(1551), - [anon_sym_DQUOTE] = ACTIONS(1551), - [sym_true] = ACTIONS(1553), - [sym_false] = ACTIONS(1553), - [sym_null] = ACTIONS(1553), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1557), - [anon_sym_R_DQUOTE] = ACTIONS(1559), - [anon_sym_LR_DQUOTE] = ACTIONS(1559), - [anon_sym_uR_DQUOTE] = ACTIONS(1559), - [anon_sym_UR_DQUOTE] = ACTIONS(1559), - [anon_sym_u8R_DQUOTE] = ACTIONS(1559), - [anon_sym_co_await] = ACTIONS(1561), - [anon_sym_new] = ACTIONS(1563), - [anon_sym_requires] = ACTIONS(1565), - [sym_this] = ACTIONS(1553), - [sym_nullptr] = ACTIONS(1553), + [sym_identifier] = ACTIONS(3101), + [anon_sym_LPAREN2] = ACTIONS(3103), + [anon_sym_BANG] = ACTIONS(3103), + [anon_sym_TILDE] = ACTIONS(3103), + [anon_sym_DASH] = ACTIONS(3101), + [anon_sym_PLUS] = ACTIONS(3101), + [anon_sym_STAR] = ACTIONS(3103), + [anon_sym_AMP] = ACTIONS(3103), + [anon_sym_SEMI] = ACTIONS(3103), + [anon_sym_typedef] = ACTIONS(3101), + [anon_sym_extern] = ACTIONS(3101), + [anon_sym___attribute__] = ACTIONS(3101), + [anon_sym_COLON_COLON] = ACTIONS(3103), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3103), + [anon_sym___declspec] = ACTIONS(3101), + [anon_sym_LBRACE] = ACTIONS(3103), + [anon_sym_LBRACK] = ACTIONS(3101), + [anon_sym_static] = ACTIONS(3101), + [anon_sym_register] = ACTIONS(3101), + [anon_sym_inline] = ACTIONS(3101), + [anon_sym_thread_local] = ACTIONS(3101), + [anon_sym_const] = ACTIONS(3101), + [anon_sym_constexpr] = ACTIONS(3101), + [anon_sym_volatile] = ACTIONS(3101), + [anon_sym_restrict] = ACTIONS(3101), + [anon_sym___restrict__] = ACTIONS(3101), + [anon_sym__Atomic] = ACTIONS(3101), + [anon_sym__Noreturn] = ACTIONS(3101), + [anon_sym_noreturn] = ACTIONS(3101), + [anon_sym_mutable] = ACTIONS(3101), + [anon_sym_constinit] = ACTIONS(3101), + [anon_sym_consteval] = ACTIONS(3101), + [anon_sym_signed] = ACTIONS(3101), + [anon_sym_unsigned] = ACTIONS(3101), + [anon_sym_long] = ACTIONS(3101), + [anon_sym_short] = ACTIONS(3101), + [sym_primitive_type] = ACTIONS(3101), + [anon_sym_enum] = ACTIONS(3101), + [anon_sym_class] = ACTIONS(3101), + [anon_sym_struct] = ACTIONS(3101), + [anon_sym_union] = ACTIONS(3101), + [anon_sym_if] = ACTIONS(3101), + [anon_sym_else] = ACTIONS(3101), + [anon_sym_switch] = ACTIONS(3101), + [anon_sym_while] = ACTIONS(3101), + [anon_sym_do] = ACTIONS(3101), + [anon_sym_for] = ACTIONS(3101), + [anon_sym_return] = ACTIONS(3101), + [anon_sym_break] = ACTIONS(3101), + [anon_sym_continue] = ACTIONS(3101), + [anon_sym_goto] = ACTIONS(3101), + [anon_sym_not] = ACTIONS(3101), + [anon_sym_compl] = ACTIONS(3101), + [anon_sym_DASH_DASH] = ACTIONS(3103), + [anon_sym_PLUS_PLUS] = ACTIONS(3103), + [anon_sym_sizeof] = ACTIONS(3101), + [anon_sym_offsetof] = ACTIONS(3101), + [anon_sym__Generic] = ACTIONS(3101), + [anon_sym_asm] = ACTIONS(3101), + [anon_sym___asm__] = ACTIONS(3101), + [sym_number_literal] = ACTIONS(3103), + [anon_sym_L_SQUOTE] = ACTIONS(3103), + [anon_sym_u_SQUOTE] = ACTIONS(3103), + [anon_sym_U_SQUOTE] = ACTIONS(3103), + [anon_sym_u8_SQUOTE] = ACTIONS(3103), + [anon_sym_SQUOTE] = ACTIONS(3103), + [anon_sym_L_DQUOTE] = ACTIONS(3103), + [anon_sym_u_DQUOTE] = ACTIONS(3103), + [anon_sym_U_DQUOTE] = ACTIONS(3103), + [anon_sym_u8_DQUOTE] = ACTIONS(3103), + [anon_sym_DQUOTE] = ACTIONS(3103), + [sym_true] = ACTIONS(3101), + [sym_false] = ACTIONS(3101), + [anon_sym_NULL] = ACTIONS(3101), + [anon_sym_nullptr] = ACTIONS(3101), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3101), + [anon_sym_decltype] = ACTIONS(3101), + [anon_sym_virtual] = ACTIONS(3101), + [anon_sym_typename] = ACTIONS(3101), + [anon_sym_template] = ACTIONS(3101), + [anon_sym_try] = ACTIONS(3101), + [anon_sym_delete] = ACTIONS(3101), + [anon_sym_throw] = ACTIONS(3101), + [anon_sym_co_return] = ACTIONS(3101), + [anon_sym_co_yield] = ACTIONS(3101), + [anon_sym_R_DQUOTE] = ACTIONS(3103), + [anon_sym_LR_DQUOTE] = ACTIONS(3103), + [anon_sym_uR_DQUOTE] = ACTIONS(3103), + [anon_sym_UR_DQUOTE] = ACTIONS(3103), + [anon_sym_u8R_DQUOTE] = ACTIONS(3103), + [anon_sym_co_await] = ACTIONS(3101), + [anon_sym_new] = ACTIONS(3101), + [anon_sym_requires] = ACTIONS(3101), + [sym_this] = ACTIONS(3101), }, [1549] = { - [sym__expression] = STATE(2493), - [sym_conditional_expression] = STATE(2574), - [sym_assignment_expression] = STATE(2574), - [sym_pointer_expression] = STATE(2578), - [sym_unary_expression] = STATE(2574), - [sym_binary_expression] = STATE(2574), - [sym_update_expression] = STATE(2574), - [sym_cast_expression] = STATE(2574), - [sym_sizeof_expression] = STATE(2574), - [sym_subscript_expression] = STATE(2578), - [sym_call_expression] = STATE(2578), - [sym_field_expression] = STATE(2578), - [sym_compound_literal_expression] = STATE(2574), - [sym_parenthesized_expression] = STATE(2578), - [sym_char_literal] = STATE(2207), - [sym_concatenated_string] = STATE(2207), - [sym_string_literal] = STATE(1820), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5944), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(2574), - [sym_raw_string_literal] = STATE(1820), - [sym_co_await_expression] = STATE(2574), - [sym_new_expression] = STATE(2574), - [sym_delete_expression] = STATE(2574), - [sym_requires_clause] = STATE(2574), - [sym_requires_expression] = STATE(2574), - [sym_lambda_expression] = STATE(2574), - [sym_lambda_capture_specifier] = STATE(4479), - [sym_fold_expression] = STATE(2574), - [sym_parameter_pack_expansion] = STATE(2574), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2578), - [sym_qualified_type_identifier] = STATE(5944), - [sym_user_defined_literal] = STATE(2574), - [sym_identifier] = ACTIONS(1523), - [anon_sym_LPAREN2] = ACTIONS(1527), - [anon_sym_BANG] = ACTIONS(1531), - [anon_sym_TILDE] = ACTIONS(1531), - [anon_sym_DASH] = ACTIONS(1529), - [anon_sym_PLUS] = ACTIONS(1529), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(1529), - [anon_sym_compl] = ACTIONS(1529), - [anon_sym_DASH_DASH] = ACTIONS(1543), - [anon_sym_PLUS_PLUS] = ACTIONS(1543), - [anon_sym_sizeof] = ACTIONS(1545), - [sym_number_literal] = ACTIONS(1547), - [anon_sym_L_SQUOTE] = ACTIONS(1549), - [anon_sym_u_SQUOTE] = ACTIONS(1549), - [anon_sym_U_SQUOTE] = ACTIONS(1549), - [anon_sym_u8_SQUOTE] = ACTIONS(1549), - [anon_sym_SQUOTE] = ACTIONS(1549), - [anon_sym_L_DQUOTE] = ACTIONS(1551), - [anon_sym_u_DQUOTE] = ACTIONS(1551), - [anon_sym_U_DQUOTE] = ACTIONS(1551), - [anon_sym_u8_DQUOTE] = ACTIONS(1551), - [anon_sym_DQUOTE] = ACTIONS(1551), - [sym_true] = ACTIONS(1553), - [sym_false] = ACTIONS(1553), - [sym_null] = ACTIONS(1553), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1557), - [anon_sym_R_DQUOTE] = ACTIONS(1559), - [anon_sym_LR_DQUOTE] = ACTIONS(1559), - [anon_sym_uR_DQUOTE] = ACTIONS(1559), - [anon_sym_UR_DQUOTE] = ACTIONS(1559), - [anon_sym_u8R_DQUOTE] = ACTIONS(1559), - [anon_sym_co_await] = ACTIONS(1561), - [anon_sym_new] = ACTIONS(1563), - [anon_sym_requires] = ACTIONS(1565), - [sym_this] = ACTIONS(1553), - [sym_nullptr] = ACTIONS(1553), + [sym_identifier] = ACTIONS(3097), + [anon_sym_LPAREN2] = ACTIONS(3099), + [anon_sym_BANG] = ACTIONS(3099), + [anon_sym_TILDE] = ACTIONS(3099), + [anon_sym_DASH] = ACTIONS(3097), + [anon_sym_PLUS] = ACTIONS(3097), + [anon_sym_STAR] = ACTIONS(3099), + [anon_sym_AMP] = ACTIONS(3099), + [anon_sym_SEMI] = ACTIONS(3099), + [anon_sym_typedef] = ACTIONS(3097), + [anon_sym_extern] = ACTIONS(3097), + [anon_sym___attribute__] = ACTIONS(3097), + [anon_sym_COLON_COLON] = ACTIONS(3099), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3099), + [anon_sym___declspec] = ACTIONS(3097), + [anon_sym_LBRACE] = ACTIONS(3099), + [anon_sym_LBRACK] = ACTIONS(3097), + [anon_sym_static] = ACTIONS(3097), + [anon_sym_register] = ACTIONS(3097), + [anon_sym_inline] = ACTIONS(3097), + [anon_sym_thread_local] = ACTIONS(3097), + [anon_sym_const] = ACTIONS(3097), + [anon_sym_constexpr] = ACTIONS(3097), + [anon_sym_volatile] = ACTIONS(3097), + [anon_sym_restrict] = ACTIONS(3097), + [anon_sym___restrict__] = ACTIONS(3097), + [anon_sym__Atomic] = ACTIONS(3097), + [anon_sym__Noreturn] = ACTIONS(3097), + [anon_sym_noreturn] = ACTIONS(3097), + [anon_sym_mutable] = ACTIONS(3097), + [anon_sym_constinit] = ACTIONS(3097), + [anon_sym_consteval] = ACTIONS(3097), + [anon_sym_signed] = ACTIONS(3097), + [anon_sym_unsigned] = ACTIONS(3097), + [anon_sym_long] = ACTIONS(3097), + [anon_sym_short] = ACTIONS(3097), + [sym_primitive_type] = ACTIONS(3097), + [anon_sym_enum] = ACTIONS(3097), + [anon_sym_class] = ACTIONS(3097), + [anon_sym_struct] = ACTIONS(3097), + [anon_sym_union] = ACTIONS(3097), + [anon_sym_if] = ACTIONS(3097), + [anon_sym_else] = ACTIONS(3097), + [anon_sym_switch] = ACTIONS(3097), + [anon_sym_while] = ACTIONS(3097), + [anon_sym_do] = ACTIONS(3097), + [anon_sym_for] = ACTIONS(3097), + [anon_sym_return] = ACTIONS(3097), + [anon_sym_break] = ACTIONS(3097), + [anon_sym_continue] = ACTIONS(3097), + [anon_sym_goto] = ACTIONS(3097), + [anon_sym_not] = ACTIONS(3097), + [anon_sym_compl] = ACTIONS(3097), + [anon_sym_DASH_DASH] = ACTIONS(3099), + [anon_sym_PLUS_PLUS] = ACTIONS(3099), + [anon_sym_sizeof] = ACTIONS(3097), + [anon_sym_offsetof] = ACTIONS(3097), + [anon_sym__Generic] = ACTIONS(3097), + [anon_sym_asm] = ACTIONS(3097), + [anon_sym___asm__] = ACTIONS(3097), + [sym_number_literal] = ACTIONS(3099), + [anon_sym_L_SQUOTE] = ACTIONS(3099), + [anon_sym_u_SQUOTE] = ACTIONS(3099), + [anon_sym_U_SQUOTE] = ACTIONS(3099), + [anon_sym_u8_SQUOTE] = ACTIONS(3099), + [anon_sym_SQUOTE] = ACTIONS(3099), + [anon_sym_L_DQUOTE] = ACTIONS(3099), + [anon_sym_u_DQUOTE] = ACTIONS(3099), + [anon_sym_U_DQUOTE] = ACTIONS(3099), + [anon_sym_u8_DQUOTE] = ACTIONS(3099), + [anon_sym_DQUOTE] = ACTIONS(3099), + [sym_true] = ACTIONS(3097), + [sym_false] = ACTIONS(3097), + [anon_sym_NULL] = ACTIONS(3097), + [anon_sym_nullptr] = ACTIONS(3097), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3097), + [anon_sym_decltype] = ACTIONS(3097), + [anon_sym_virtual] = ACTIONS(3097), + [anon_sym_typename] = ACTIONS(3097), + [anon_sym_template] = ACTIONS(3097), + [anon_sym_try] = ACTIONS(3097), + [anon_sym_delete] = ACTIONS(3097), + [anon_sym_throw] = ACTIONS(3097), + [anon_sym_co_return] = ACTIONS(3097), + [anon_sym_co_yield] = ACTIONS(3097), + [anon_sym_R_DQUOTE] = ACTIONS(3099), + [anon_sym_LR_DQUOTE] = ACTIONS(3099), + [anon_sym_uR_DQUOTE] = ACTIONS(3099), + [anon_sym_UR_DQUOTE] = ACTIONS(3099), + [anon_sym_u8R_DQUOTE] = ACTIONS(3099), + [anon_sym_co_await] = ACTIONS(3097), + [anon_sym_new] = ACTIONS(3097), + [anon_sym_requires] = ACTIONS(3097), + [sym_this] = ACTIONS(3097), }, [1550] = { - [sym__expression] = STATE(2503), - [sym_conditional_expression] = STATE(2574), - [sym_assignment_expression] = STATE(2574), - [sym_pointer_expression] = STATE(2578), - [sym_unary_expression] = STATE(2574), - [sym_binary_expression] = STATE(2574), - [sym_update_expression] = STATE(2574), - [sym_cast_expression] = STATE(2574), - [sym_sizeof_expression] = STATE(2574), - [sym_subscript_expression] = STATE(2578), - [sym_call_expression] = STATE(2578), - [sym_field_expression] = STATE(2578), - [sym_compound_literal_expression] = STATE(2574), - [sym_parenthesized_expression] = STATE(2578), - [sym_char_literal] = STATE(2207), - [sym_concatenated_string] = STATE(2207), - [sym_string_literal] = STATE(1820), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5944), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(2574), - [sym_raw_string_literal] = STATE(1820), - [sym_co_await_expression] = STATE(2574), - [sym_new_expression] = STATE(2574), - [sym_delete_expression] = STATE(2574), - [sym_requires_clause] = STATE(2574), - [sym_requires_expression] = STATE(2574), - [sym_lambda_expression] = STATE(2574), - [sym_lambda_capture_specifier] = STATE(4479), - [sym_fold_expression] = STATE(2574), - [sym_parameter_pack_expansion] = STATE(2574), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2578), - [sym_qualified_type_identifier] = STATE(5944), - [sym_user_defined_literal] = STATE(2574), - [sym_identifier] = ACTIONS(1523), - [anon_sym_LPAREN2] = ACTIONS(1527), - [anon_sym_BANG] = ACTIONS(1531), - [anon_sym_TILDE] = ACTIONS(1531), - [anon_sym_DASH] = ACTIONS(1529), - [anon_sym_PLUS] = ACTIONS(1529), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(1529), - [anon_sym_compl] = ACTIONS(1529), - [anon_sym_DASH_DASH] = ACTIONS(1543), - [anon_sym_PLUS_PLUS] = ACTIONS(1543), - [anon_sym_sizeof] = ACTIONS(1545), - [sym_number_literal] = ACTIONS(1547), - [anon_sym_L_SQUOTE] = ACTIONS(1549), - [anon_sym_u_SQUOTE] = ACTIONS(1549), - [anon_sym_U_SQUOTE] = ACTIONS(1549), - [anon_sym_u8_SQUOTE] = ACTIONS(1549), - [anon_sym_SQUOTE] = ACTIONS(1549), - [anon_sym_L_DQUOTE] = ACTIONS(1551), - [anon_sym_u_DQUOTE] = ACTIONS(1551), - [anon_sym_U_DQUOTE] = ACTIONS(1551), - [anon_sym_u8_DQUOTE] = ACTIONS(1551), - [anon_sym_DQUOTE] = ACTIONS(1551), - [sym_true] = ACTIONS(1553), - [sym_false] = ACTIONS(1553), - [sym_null] = ACTIONS(1553), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1557), - [anon_sym_R_DQUOTE] = ACTIONS(1559), - [anon_sym_LR_DQUOTE] = ACTIONS(1559), - [anon_sym_uR_DQUOTE] = ACTIONS(1559), - [anon_sym_UR_DQUOTE] = ACTIONS(1559), - [anon_sym_u8R_DQUOTE] = ACTIONS(1559), - [anon_sym_co_await] = ACTIONS(1561), - [anon_sym_new] = ACTIONS(1563), - [anon_sym_requires] = ACTIONS(1565), - [sym_this] = ACTIONS(1553), - [sym_nullptr] = ACTIONS(1553), + [sym_identifier] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3030), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, [1551] = { - [sym__expression] = STATE(2505), - [sym_conditional_expression] = STATE(2574), - [sym_assignment_expression] = STATE(2574), - [sym_pointer_expression] = STATE(2578), - [sym_unary_expression] = STATE(2574), - [sym_binary_expression] = STATE(2574), - [sym_update_expression] = STATE(2574), - [sym_cast_expression] = STATE(2574), - [sym_sizeof_expression] = STATE(2574), - [sym_subscript_expression] = STATE(2578), - [sym_call_expression] = STATE(2578), - [sym_field_expression] = STATE(2578), - [sym_compound_literal_expression] = STATE(2574), - [sym_parenthesized_expression] = STATE(2578), - [sym_char_literal] = STATE(2207), - [sym_concatenated_string] = STATE(2207), - [sym_string_literal] = STATE(1820), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5944), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(2574), - [sym_raw_string_literal] = STATE(1820), - [sym_co_await_expression] = STATE(2574), - [sym_new_expression] = STATE(2574), - [sym_delete_expression] = STATE(2574), - [sym_requires_clause] = STATE(2574), - [sym_requires_expression] = STATE(2574), - [sym_lambda_expression] = STATE(2574), - [sym_lambda_capture_specifier] = STATE(4479), - [sym_fold_expression] = STATE(2574), - [sym_parameter_pack_expansion] = STATE(2574), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2578), - [sym_qualified_type_identifier] = STATE(5944), - [sym_user_defined_literal] = STATE(2574), - [sym_identifier] = ACTIONS(1523), - [anon_sym_LPAREN2] = ACTIONS(1527), - [anon_sym_BANG] = ACTIONS(1531), - [anon_sym_TILDE] = ACTIONS(1531), - [anon_sym_DASH] = ACTIONS(1529), - [anon_sym_PLUS] = ACTIONS(1529), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(1529), - [anon_sym_compl] = ACTIONS(1529), - [anon_sym_DASH_DASH] = ACTIONS(1543), - [anon_sym_PLUS_PLUS] = ACTIONS(1543), - [anon_sym_sizeof] = ACTIONS(1545), - [sym_number_literal] = ACTIONS(1547), - [anon_sym_L_SQUOTE] = ACTIONS(1549), - [anon_sym_u_SQUOTE] = ACTIONS(1549), - [anon_sym_U_SQUOTE] = ACTIONS(1549), - [anon_sym_u8_SQUOTE] = ACTIONS(1549), - [anon_sym_SQUOTE] = ACTIONS(1549), - [anon_sym_L_DQUOTE] = ACTIONS(1551), - [anon_sym_u_DQUOTE] = ACTIONS(1551), - [anon_sym_U_DQUOTE] = ACTIONS(1551), - [anon_sym_u8_DQUOTE] = ACTIONS(1551), - [anon_sym_DQUOTE] = ACTIONS(1551), - [sym_true] = ACTIONS(1553), - [sym_false] = ACTIONS(1553), - [sym_null] = ACTIONS(1553), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1557), - [anon_sym_R_DQUOTE] = ACTIONS(1559), - [anon_sym_LR_DQUOTE] = ACTIONS(1559), - [anon_sym_uR_DQUOTE] = ACTIONS(1559), - [anon_sym_UR_DQUOTE] = ACTIONS(1559), - [anon_sym_u8R_DQUOTE] = ACTIONS(1559), - [anon_sym_co_await] = ACTIONS(1561), - [anon_sym_new] = ACTIONS(1563), - [anon_sym_requires] = ACTIONS(1565), - [sym_this] = ACTIONS(1553), - [sym_nullptr] = ACTIONS(1553), + [sym_identifier] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3030), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, [1552] = { - [sym__expression] = STATE(2508), - [sym_conditional_expression] = STATE(2574), - [sym_assignment_expression] = STATE(2574), - [sym_pointer_expression] = STATE(2578), - [sym_unary_expression] = STATE(2574), - [sym_binary_expression] = STATE(2574), - [sym_update_expression] = STATE(2574), - [sym_cast_expression] = STATE(2574), - [sym_sizeof_expression] = STATE(2574), - [sym_subscript_expression] = STATE(2578), - [sym_call_expression] = STATE(2578), - [sym_field_expression] = STATE(2578), - [sym_compound_literal_expression] = STATE(2574), - [sym_parenthesized_expression] = STATE(2578), - [sym_char_literal] = STATE(2207), - [sym_concatenated_string] = STATE(2207), - [sym_string_literal] = STATE(1820), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5944), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(2574), - [sym_raw_string_literal] = STATE(1820), - [sym_co_await_expression] = STATE(2574), - [sym_new_expression] = STATE(2574), - [sym_delete_expression] = STATE(2574), - [sym_requires_clause] = STATE(2574), - [sym_requires_expression] = STATE(2574), - [sym_lambda_expression] = STATE(2574), - [sym_lambda_capture_specifier] = STATE(4479), - [sym_fold_expression] = STATE(2574), - [sym_parameter_pack_expansion] = STATE(2574), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2578), - [sym_qualified_type_identifier] = STATE(5944), - [sym_user_defined_literal] = STATE(2574), - [sym_identifier] = ACTIONS(1523), - [anon_sym_LPAREN2] = ACTIONS(1527), - [anon_sym_BANG] = ACTIONS(1531), - [anon_sym_TILDE] = ACTIONS(1531), - [anon_sym_DASH] = ACTIONS(1529), - [anon_sym_PLUS] = ACTIONS(1529), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(1529), - [anon_sym_compl] = ACTIONS(1529), - [anon_sym_DASH_DASH] = ACTIONS(1543), - [anon_sym_PLUS_PLUS] = ACTIONS(1543), - [anon_sym_sizeof] = ACTIONS(1545), - [sym_number_literal] = ACTIONS(1547), - [anon_sym_L_SQUOTE] = ACTIONS(1549), - [anon_sym_u_SQUOTE] = ACTIONS(1549), - [anon_sym_U_SQUOTE] = ACTIONS(1549), - [anon_sym_u8_SQUOTE] = ACTIONS(1549), - [anon_sym_SQUOTE] = ACTIONS(1549), - [anon_sym_L_DQUOTE] = ACTIONS(1551), - [anon_sym_u_DQUOTE] = ACTIONS(1551), - [anon_sym_U_DQUOTE] = ACTIONS(1551), - [anon_sym_u8_DQUOTE] = ACTIONS(1551), - [anon_sym_DQUOTE] = ACTIONS(1551), - [sym_true] = ACTIONS(1553), - [sym_false] = ACTIONS(1553), - [sym_null] = ACTIONS(1553), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1557), - [anon_sym_R_DQUOTE] = ACTIONS(1559), - [anon_sym_LR_DQUOTE] = ACTIONS(1559), - [anon_sym_uR_DQUOTE] = ACTIONS(1559), - [anon_sym_UR_DQUOTE] = ACTIONS(1559), - [anon_sym_u8R_DQUOTE] = ACTIONS(1559), - [anon_sym_co_await] = ACTIONS(1561), - [anon_sym_new] = ACTIONS(1563), - [anon_sym_requires] = ACTIONS(1565), - [sym_this] = ACTIONS(1553), - [sym_nullptr] = ACTIONS(1553), + [sym_identifier] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3030), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, [1553] = { - [sym__expression] = STATE(2509), - [sym_conditional_expression] = STATE(2574), - [sym_assignment_expression] = STATE(2574), - [sym_pointer_expression] = STATE(2578), - [sym_unary_expression] = STATE(2574), - [sym_binary_expression] = STATE(2574), - [sym_update_expression] = STATE(2574), - [sym_cast_expression] = STATE(2574), - [sym_sizeof_expression] = STATE(2574), - [sym_subscript_expression] = STATE(2578), - [sym_call_expression] = STATE(2578), - [sym_field_expression] = STATE(2578), - [sym_compound_literal_expression] = STATE(2574), - [sym_parenthesized_expression] = STATE(2578), - [sym_char_literal] = STATE(2207), - [sym_concatenated_string] = STATE(2207), - [sym_string_literal] = STATE(1820), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5944), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(2574), - [sym_raw_string_literal] = STATE(1820), - [sym_co_await_expression] = STATE(2574), - [sym_new_expression] = STATE(2574), - [sym_delete_expression] = STATE(2574), - [sym_requires_clause] = STATE(2574), - [sym_requires_expression] = STATE(2574), - [sym_lambda_expression] = STATE(2574), - [sym_lambda_capture_specifier] = STATE(4479), - [sym_fold_expression] = STATE(2574), - [sym_parameter_pack_expansion] = STATE(2574), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2578), - [sym_qualified_type_identifier] = STATE(5944), - [sym_user_defined_literal] = STATE(2574), - [sym_identifier] = ACTIONS(1523), - [anon_sym_LPAREN2] = ACTIONS(1527), - [anon_sym_BANG] = ACTIONS(1531), - [anon_sym_TILDE] = ACTIONS(1531), - [anon_sym_DASH] = ACTIONS(1529), - [anon_sym_PLUS] = ACTIONS(1529), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(1529), - [anon_sym_compl] = ACTIONS(1529), - [anon_sym_DASH_DASH] = ACTIONS(1543), - [anon_sym_PLUS_PLUS] = ACTIONS(1543), - [anon_sym_sizeof] = ACTIONS(1545), - [sym_number_literal] = ACTIONS(1547), - [anon_sym_L_SQUOTE] = ACTIONS(1549), - [anon_sym_u_SQUOTE] = ACTIONS(1549), - [anon_sym_U_SQUOTE] = ACTIONS(1549), - [anon_sym_u8_SQUOTE] = ACTIONS(1549), - [anon_sym_SQUOTE] = ACTIONS(1549), - [anon_sym_L_DQUOTE] = ACTIONS(1551), - [anon_sym_u_DQUOTE] = ACTIONS(1551), - [anon_sym_U_DQUOTE] = ACTIONS(1551), - [anon_sym_u8_DQUOTE] = ACTIONS(1551), - [anon_sym_DQUOTE] = ACTIONS(1551), - [sym_true] = ACTIONS(1553), - [sym_false] = ACTIONS(1553), - [sym_null] = ACTIONS(1553), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1557), - [anon_sym_R_DQUOTE] = ACTIONS(1559), - [anon_sym_LR_DQUOTE] = ACTIONS(1559), - [anon_sym_uR_DQUOTE] = ACTIONS(1559), - [anon_sym_UR_DQUOTE] = ACTIONS(1559), - [anon_sym_u8R_DQUOTE] = ACTIONS(1559), - [anon_sym_co_await] = ACTIONS(1561), - [anon_sym_new] = ACTIONS(1563), - [anon_sym_requires] = ACTIONS(1565), - [sym_this] = ACTIONS(1553), - [sym_nullptr] = ACTIONS(1553), + [sym_identifier] = ACTIONS(3000), + [anon_sym_LPAREN2] = ACTIONS(3002), + [anon_sym_BANG] = ACTIONS(3002), + [anon_sym_TILDE] = ACTIONS(3002), + [anon_sym_DASH] = ACTIONS(3000), + [anon_sym_PLUS] = ACTIONS(3000), + [anon_sym_STAR] = ACTIONS(3002), + [anon_sym_AMP] = ACTIONS(3002), + [anon_sym_SEMI] = ACTIONS(3002), + [anon_sym_typedef] = ACTIONS(3000), + [anon_sym_extern] = ACTIONS(3000), + [anon_sym___attribute__] = ACTIONS(3000), + [anon_sym_COLON_COLON] = ACTIONS(3002), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3002), + [anon_sym___declspec] = ACTIONS(3000), + [anon_sym_LBRACE] = ACTIONS(3002), + [anon_sym_LBRACK] = ACTIONS(3000), + [anon_sym_static] = ACTIONS(3000), + [anon_sym_register] = ACTIONS(3000), + [anon_sym_inline] = ACTIONS(3000), + [anon_sym_thread_local] = ACTIONS(3000), + [anon_sym_const] = ACTIONS(3000), + [anon_sym_constexpr] = ACTIONS(3000), + [anon_sym_volatile] = ACTIONS(3000), + [anon_sym_restrict] = ACTIONS(3000), + [anon_sym___restrict__] = ACTIONS(3000), + [anon_sym__Atomic] = ACTIONS(3000), + [anon_sym__Noreturn] = ACTIONS(3000), + [anon_sym_noreturn] = ACTIONS(3000), + [anon_sym_mutable] = ACTIONS(3000), + [anon_sym_constinit] = ACTIONS(3000), + [anon_sym_consteval] = ACTIONS(3000), + [anon_sym_signed] = ACTIONS(3000), + [anon_sym_unsigned] = ACTIONS(3000), + [anon_sym_long] = ACTIONS(3000), + [anon_sym_short] = ACTIONS(3000), + [sym_primitive_type] = ACTIONS(3000), + [anon_sym_enum] = ACTIONS(3000), + [anon_sym_class] = ACTIONS(3000), + [anon_sym_struct] = ACTIONS(3000), + [anon_sym_union] = ACTIONS(3000), + [anon_sym_if] = ACTIONS(3000), + [anon_sym_else] = ACTIONS(3000), + [anon_sym_switch] = ACTIONS(3000), + [anon_sym_while] = ACTIONS(3000), + [anon_sym_do] = ACTIONS(3000), + [anon_sym_for] = ACTIONS(3000), + [anon_sym_return] = ACTIONS(3000), + [anon_sym_break] = ACTIONS(3000), + [anon_sym_continue] = ACTIONS(3000), + [anon_sym_goto] = ACTIONS(3000), + [anon_sym_not] = ACTIONS(3000), + [anon_sym_compl] = ACTIONS(3000), + [anon_sym_DASH_DASH] = ACTIONS(3002), + [anon_sym_PLUS_PLUS] = ACTIONS(3002), + [anon_sym_sizeof] = ACTIONS(3000), + [anon_sym_offsetof] = ACTIONS(3000), + [anon_sym__Generic] = ACTIONS(3000), + [anon_sym_asm] = ACTIONS(3000), + [anon_sym___asm__] = ACTIONS(3000), + [sym_number_literal] = ACTIONS(3002), + [anon_sym_L_SQUOTE] = ACTIONS(3002), + [anon_sym_u_SQUOTE] = ACTIONS(3002), + [anon_sym_U_SQUOTE] = ACTIONS(3002), + [anon_sym_u8_SQUOTE] = ACTIONS(3002), + [anon_sym_SQUOTE] = ACTIONS(3002), + [anon_sym_L_DQUOTE] = ACTIONS(3002), + [anon_sym_u_DQUOTE] = ACTIONS(3002), + [anon_sym_U_DQUOTE] = ACTIONS(3002), + [anon_sym_u8_DQUOTE] = ACTIONS(3002), + [anon_sym_DQUOTE] = ACTIONS(3002), + [sym_true] = ACTIONS(3000), + [sym_false] = ACTIONS(3000), + [anon_sym_NULL] = ACTIONS(3000), + [anon_sym_nullptr] = ACTIONS(3000), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3000), + [anon_sym_decltype] = ACTIONS(3000), + [anon_sym_virtual] = ACTIONS(3000), + [anon_sym_typename] = ACTIONS(3000), + [anon_sym_template] = ACTIONS(3000), + [anon_sym_try] = ACTIONS(3000), + [anon_sym_delete] = ACTIONS(3000), + [anon_sym_throw] = ACTIONS(3000), + [anon_sym_co_return] = ACTIONS(3000), + [anon_sym_co_yield] = ACTIONS(3000), + [anon_sym_R_DQUOTE] = ACTIONS(3002), + [anon_sym_LR_DQUOTE] = ACTIONS(3002), + [anon_sym_uR_DQUOTE] = ACTIONS(3002), + [anon_sym_UR_DQUOTE] = ACTIONS(3002), + [anon_sym_u8R_DQUOTE] = ACTIONS(3002), + [anon_sym_co_await] = ACTIONS(3000), + [anon_sym_new] = ACTIONS(3000), + [anon_sym_requires] = ACTIONS(3000), + [sym_this] = ACTIONS(3000), }, [1554] = { - [sym__expression] = STATE(2513), - [sym_conditional_expression] = STATE(2574), - [sym_assignment_expression] = STATE(2574), - [sym_pointer_expression] = STATE(2578), - [sym_unary_expression] = STATE(2574), - [sym_binary_expression] = STATE(2574), - [sym_update_expression] = STATE(2574), - [sym_cast_expression] = STATE(2574), - [sym_sizeof_expression] = STATE(2574), - [sym_subscript_expression] = STATE(2578), - [sym_call_expression] = STATE(2578), - [sym_field_expression] = STATE(2578), - [sym_compound_literal_expression] = STATE(2574), - [sym_parenthesized_expression] = STATE(2578), - [sym_char_literal] = STATE(2207), - [sym_concatenated_string] = STATE(2207), - [sym_string_literal] = STATE(1820), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5944), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(2574), - [sym_raw_string_literal] = STATE(1820), - [sym_co_await_expression] = STATE(2574), - [sym_new_expression] = STATE(2574), - [sym_delete_expression] = STATE(2574), - [sym_requires_clause] = STATE(2574), - [sym_requires_expression] = STATE(2574), - [sym_lambda_expression] = STATE(2574), - [sym_lambda_capture_specifier] = STATE(4479), - [sym_fold_expression] = STATE(2574), - [sym_parameter_pack_expansion] = STATE(2574), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2578), - [sym_qualified_type_identifier] = STATE(5944), - [sym_user_defined_literal] = STATE(2574), - [sym_identifier] = ACTIONS(1523), - [anon_sym_LPAREN2] = ACTIONS(1527), - [anon_sym_BANG] = ACTIONS(1531), - [anon_sym_TILDE] = ACTIONS(1531), - [anon_sym_DASH] = ACTIONS(1529), - [anon_sym_PLUS] = ACTIONS(1529), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(1529), - [anon_sym_compl] = ACTIONS(1529), - [anon_sym_DASH_DASH] = ACTIONS(1543), - [anon_sym_PLUS_PLUS] = ACTIONS(1543), - [anon_sym_sizeof] = ACTIONS(1545), - [sym_number_literal] = ACTIONS(1547), - [anon_sym_L_SQUOTE] = ACTIONS(1549), - [anon_sym_u_SQUOTE] = ACTIONS(1549), - [anon_sym_U_SQUOTE] = ACTIONS(1549), - [anon_sym_u8_SQUOTE] = ACTIONS(1549), - [anon_sym_SQUOTE] = ACTIONS(1549), - [anon_sym_L_DQUOTE] = ACTIONS(1551), - [anon_sym_u_DQUOTE] = ACTIONS(1551), - [anon_sym_U_DQUOTE] = ACTIONS(1551), - [anon_sym_u8_DQUOTE] = ACTIONS(1551), - [anon_sym_DQUOTE] = ACTIONS(1551), - [sym_true] = ACTIONS(1553), - [sym_false] = ACTIONS(1553), - [sym_null] = ACTIONS(1553), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1557), - [anon_sym_R_DQUOTE] = ACTIONS(1559), - [anon_sym_LR_DQUOTE] = ACTIONS(1559), - [anon_sym_uR_DQUOTE] = ACTIONS(1559), - [anon_sym_UR_DQUOTE] = ACTIONS(1559), - [anon_sym_u8R_DQUOTE] = ACTIONS(1559), - [anon_sym_co_await] = ACTIONS(1561), - [anon_sym_new] = ACTIONS(1563), - [anon_sym_requires] = ACTIONS(1565), - [sym_this] = ACTIONS(1553), - [sym_nullptr] = ACTIONS(1553), + [sym_identifier] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3030), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, [1555] = { - [sym__expression] = STATE(2671), - [sym_conditional_expression] = STATE(2786), - [sym_assignment_expression] = STATE(2786), - [sym_pointer_expression] = STATE(2784), - [sym_unary_expression] = STATE(2786), - [sym_binary_expression] = STATE(2786), - [sym_update_expression] = STATE(2786), - [sym_cast_expression] = STATE(2786), - [sym_sizeof_expression] = STATE(2786), - [sym_subscript_expression] = STATE(2784), - [sym_call_expression] = STATE(2784), - [sym_field_expression] = STATE(2784), - [sym_compound_literal_expression] = STATE(2786), - [sym_parenthesized_expression] = STATE(2784), - [sym_char_literal] = STATE(2651), - [sym_concatenated_string] = STATE(2651), - [sym_string_literal] = STATE(1840), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5891), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(2786), - [sym_raw_string_literal] = STATE(1840), - [sym_co_await_expression] = STATE(2786), - [sym_new_expression] = STATE(2786), - [sym_delete_expression] = STATE(2786), - [sym_requires_clause] = STATE(2786), - [sym_requires_expression] = STATE(2786), - [sym_lambda_expression] = STATE(2786), - [sym_lambda_capture_specifier] = STATE(4484), - [sym_fold_expression] = STATE(2786), - [sym_parameter_pack_expansion] = STATE(2786), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4584), - [sym_qualified_identifier] = STATE(2784), - [sym_qualified_type_identifier] = STATE(5891), - [sym_user_defined_literal] = STATE(2786), - [sym_identifier] = ACTIONS(1567), - [anon_sym_LPAREN2] = ACTIONS(1569), - [anon_sym_BANG] = ACTIONS(1573), - [anon_sym_TILDE] = ACTIONS(1573), - [anon_sym_DASH] = ACTIONS(1571), - [anon_sym_PLUS] = ACTIONS(1571), - [anon_sym_STAR] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(1445), - [anon_sym_COLON_COLON] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1581), - [anon_sym_not] = ACTIONS(1571), - [anon_sym_compl] = ACTIONS(1571), - [anon_sym_DASH_DASH] = ACTIONS(1583), - [anon_sym_PLUS_PLUS] = ACTIONS(1583), - [anon_sym_sizeof] = ACTIONS(1585), - [sym_number_literal] = ACTIONS(1587), - [anon_sym_L_SQUOTE] = ACTIONS(1589), - [anon_sym_u_SQUOTE] = ACTIONS(1589), - [anon_sym_U_SQUOTE] = ACTIONS(1589), - [anon_sym_u8_SQUOTE] = ACTIONS(1589), - [anon_sym_SQUOTE] = ACTIONS(1589), - [anon_sym_L_DQUOTE] = ACTIONS(1591), - [anon_sym_u_DQUOTE] = ACTIONS(1591), - [anon_sym_U_DQUOTE] = ACTIONS(1591), - [anon_sym_u8_DQUOTE] = ACTIONS(1591), - [anon_sym_DQUOTE] = ACTIONS(1591), - [sym_true] = ACTIONS(1593), - [sym_false] = ACTIONS(1593), - [sym_null] = ACTIONS(1593), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1595), - [anon_sym_R_DQUOTE] = ACTIONS(1597), - [anon_sym_LR_DQUOTE] = ACTIONS(1597), - [anon_sym_uR_DQUOTE] = ACTIONS(1597), - [anon_sym_UR_DQUOTE] = ACTIONS(1597), - [anon_sym_u8R_DQUOTE] = ACTIONS(1597), - [anon_sym_co_await] = ACTIONS(1599), - [anon_sym_new] = ACTIONS(1601), - [anon_sym_requires] = ACTIONS(1603), - [sym_this] = ACTIONS(1593), - [sym_nullptr] = ACTIONS(1593), + [sym_identifier] = ACTIONS(2996), + [anon_sym_LPAREN2] = ACTIONS(2998), + [anon_sym_BANG] = ACTIONS(2998), + [anon_sym_TILDE] = ACTIONS(2998), + [anon_sym_DASH] = ACTIONS(2996), + [anon_sym_PLUS] = ACTIONS(2996), + [anon_sym_STAR] = ACTIONS(2998), + [anon_sym_AMP] = ACTIONS(2998), + [anon_sym_SEMI] = ACTIONS(2998), + [anon_sym_typedef] = ACTIONS(2996), + [anon_sym_extern] = ACTIONS(2996), + [anon_sym___attribute__] = ACTIONS(2996), + [anon_sym_COLON_COLON] = ACTIONS(2998), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2998), + [anon_sym___declspec] = ACTIONS(2996), + [anon_sym_LBRACE] = ACTIONS(2998), + [anon_sym_LBRACK] = ACTIONS(2996), + [anon_sym_static] = ACTIONS(2996), + [anon_sym_register] = ACTIONS(2996), + [anon_sym_inline] = ACTIONS(2996), + [anon_sym_thread_local] = ACTIONS(2996), + [anon_sym_const] = ACTIONS(2996), + [anon_sym_constexpr] = ACTIONS(2996), + [anon_sym_volatile] = ACTIONS(2996), + [anon_sym_restrict] = ACTIONS(2996), + [anon_sym___restrict__] = ACTIONS(2996), + [anon_sym__Atomic] = ACTIONS(2996), + [anon_sym__Noreturn] = ACTIONS(2996), + [anon_sym_noreturn] = ACTIONS(2996), + [anon_sym_mutable] = ACTIONS(2996), + [anon_sym_constinit] = ACTIONS(2996), + [anon_sym_consteval] = ACTIONS(2996), + [anon_sym_signed] = ACTIONS(2996), + [anon_sym_unsigned] = ACTIONS(2996), + [anon_sym_long] = ACTIONS(2996), + [anon_sym_short] = ACTIONS(2996), + [sym_primitive_type] = ACTIONS(2996), + [anon_sym_enum] = ACTIONS(2996), + [anon_sym_class] = ACTIONS(2996), + [anon_sym_struct] = ACTIONS(2996), + [anon_sym_union] = ACTIONS(2996), + [anon_sym_if] = ACTIONS(2996), + [anon_sym_else] = ACTIONS(2996), + [anon_sym_switch] = ACTIONS(2996), + [anon_sym_while] = ACTIONS(2996), + [anon_sym_do] = ACTIONS(2996), + [anon_sym_for] = ACTIONS(2996), + [anon_sym_return] = ACTIONS(2996), + [anon_sym_break] = ACTIONS(2996), + [anon_sym_continue] = ACTIONS(2996), + [anon_sym_goto] = ACTIONS(2996), + [anon_sym_not] = ACTIONS(2996), + [anon_sym_compl] = ACTIONS(2996), + [anon_sym_DASH_DASH] = ACTIONS(2998), + [anon_sym_PLUS_PLUS] = ACTIONS(2998), + [anon_sym_sizeof] = ACTIONS(2996), + [anon_sym_offsetof] = ACTIONS(2996), + [anon_sym__Generic] = ACTIONS(2996), + [anon_sym_asm] = ACTIONS(2996), + [anon_sym___asm__] = ACTIONS(2996), + [sym_number_literal] = ACTIONS(2998), + [anon_sym_L_SQUOTE] = ACTIONS(2998), + [anon_sym_u_SQUOTE] = ACTIONS(2998), + [anon_sym_U_SQUOTE] = ACTIONS(2998), + [anon_sym_u8_SQUOTE] = ACTIONS(2998), + [anon_sym_SQUOTE] = ACTIONS(2998), + [anon_sym_L_DQUOTE] = ACTIONS(2998), + [anon_sym_u_DQUOTE] = ACTIONS(2998), + [anon_sym_U_DQUOTE] = ACTIONS(2998), + [anon_sym_u8_DQUOTE] = ACTIONS(2998), + [anon_sym_DQUOTE] = ACTIONS(2998), + [sym_true] = ACTIONS(2996), + [sym_false] = ACTIONS(2996), + [anon_sym_NULL] = ACTIONS(2996), + [anon_sym_nullptr] = ACTIONS(2996), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2996), + [anon_sym_decltype] = ACTIONS(2996), + [anon_sym_virtual] = ACTIONS(2996), + [anon_sym_typename] = ACTIONS(2996), + [anon_sym_template] = ACTIONS(2996), + [anon_sym_try] = ACTIONS(2996), + [anon_sym_delete] = ACTIONS(2996), + [anon_sym_throw] = ACTIONS(2996), + [anon_sym_co_return] = ACTIONS(2996), + [anon_sym_co_yield] = ACTIONS(2996), + [anon_sym_R_DQUOTE] = ACTIONS(2998), + [anon_sym_LR_DQUOTE] = ACTIONS(2998), + [anon_sym_uR_DQUOTE] = ACTIONS(2998), + [anon_sym_UR_DQUOTE] = ACTIONS(2998), + [anon_sym_u8R_DQUOTE] = ACTIONS(2998), + [anon_sym_co_await] = ACTIONS(2996), + [anon_sym_new] = ACTIONS(2996), + [anon_sym_requires] = ACTIONS(2996), + [sym_this] = ACTIONS(2996), }, [1556] = { - [sym__expression] = STATE(2909), - [sym_conditional_expression] = STATE(3035), - [sym_assignment_expression] = STATE(3035), - [sym_pointer_expression] = STATE(2713), - [sym_unary_expression] = STATE(3035), - [sym_binary_expression] = STATE(3035), - [sym_update_expression] = STATE(3035), - [sym_cast_expression] = STATE(3035), - [sym_sizeof_expression] = STATE(3035), - [sym_subscript_expression] = STATE(2713), - [sym_call_expression] = STATE(2713), - [sym_field_expression] = STATE(2713), - [sym_compound_literal_expression] = STATE(3035), - [sym_parenthesized_expression] = STATE(2713), - [sym_char_literal] = STATE(3013), - [sym_concatenated_string] = STATE(3013), - [sym_string_literal] = STATE(1900), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5990), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3035), - [sym_raw_string_literal] = STATE(1900), - [sym_co_await_expression] = STATE(3035), - [sym_new_expression] = STATE(3035), - [sym_delete_expression] = STATE(3035), - [sym_requires_clause] = STATE(3035), - [sym_requires_expression] = STATE(3035), - [sym_lambda_expression] = STATE(3035), - [sym_lambda_capture_specifier] = STATE(4465), - [sym_fold_expression] = STATE(3035), - [sym_parameter_pack_expansion] = STATE(3035), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4584), - [sym_qualified_identifier] = STATE(2713), - [sym_qualified_type_identifier] = STATE(5990), - [sym_user_defined_literal] = STATE(3035), - [sym_identifier] = ACTIONS(1643), - [anon_sym_LPAREN2] = ACTIONS(1439), - [anon_sym_BANG] = ACTIONS(1441), - [anon_sym_TILDE] = ACTIONS(1441), - [anon_sym_DASH] = ACTIONS(1443), - [anon_sym_PLUS] = ACTIONS(1443), - [anon_sym_STAR] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(1445), - [anon_sym_COLON_COLON] = ACTIONS(1447), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1581), - [anon_sym_not] = ACTIONS(1443), - [anon_sym_compl] = ACTIONS(1443), - [anon_sym_DASH_DASH] = ACTIONS(1459), - [anon_sym_PLUS_PLUS] = ACTIONS(1459), - [anon_sym_sizeof] = ACTIONS(1461), - [sym_number_literal] = ACTIONS(1463), - [anon_sym_L_SQUOTE] = ACTIONS(1465), - [anon_sym_u_SQUOTE] = ACTIONS(1465), - [anon_sym_U_SQUOTE] = ACTIONS(1465), - [anon_sym_u8_SQUOTE] = ACTIONS(1465), - [anon_sym_SQUOTE] = ACTIONS(1465), - [anon_sym_L_DQUOTE] = ACTIONS(1467), - [anon_sym_u_DQUOTE] = ACTIONS(1467), - [anon_sym_U_DQUOTE] = ACTIONS(1467), - [anon_sym_u8_DQUOTE] = ACTIONS(1467), - [anon_sym_DQUOTE] = ACTIONS(1467), - [sym_true] = ACTIONS(1469), - [sym_false] = ACTIONS(1469), - [sym_null] = ACTIONS(1469), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1473), - [anon_sym_R_DQUOTE] = ACTIONS(1475), - [anon_sym_LR_DQUOTE] = ACTIONS(1475), - [anon_sym_uR_DQUOTE] = ACTIONS(1475), - [anon_sym_UR_DQUOTE] = ACTIONS(1475), - [anon_sym_u8R_DQUOTE] = ACTIONS(1475), - [anon_sym_co_await] = ACTIONS(1477), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_requires] = ACTIONS(1481), - [sym_this] = ACTIONS(1469), - [sym_nullptr] = ACTIONS(1469), + [sym_identifier] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3030), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, [1557] = { - [sym__expression] = STATE(3338), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2954), - [anon_sym_LPAREN2] = ACTIONS(984), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [sym_identifier] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3030), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, [1558] = { - [sym__expression] = STATE(2672), - [sym_conditional_expression] = STATE(2786), - [sym_assignment_expression] = STATE(2786), - [sym_pointer_expression] = STATE(2784), - [sym_unary_expression] = STATE(2786), - [sym_binary_expression] = STATE(2786), - [sym_update_expression] = STATE(2786), - [sym_cast_expression] = STATE(2786), - [sym_sizeof_expression] = STATE(2786), - [sym_subscript_expression] = STATE(2784), - [sym_call_expression] = STATE(2784), - [sym_field_expression] = STATE(2784), - [sym_compound_literal_expression] = STATE(2786), - [sym_parenthesized_expression] = STATE(2784), - [sym_char_literal] = STATE(2651), - [sym_concatenated_string] = STATE(2651), - [sym_string_literal] = STATE(1840), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5891), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(2786), - [sym_raw_string_literal] = STATE(1840), - [sym_co_await_expression] = STATE(2786), - [sym_new_expression] = STATE(2786), - [sym_delete_expression] = STATE(2786), - [sym_requires_clause] = STATE(2786), - [sym_requires_expression] = STATE(2786), - [sym_lambda_expression] = STATE(2786), - [sym_lambda_capture_specifier] = STATE(4484), - [sym_fold_expression] = STATE(2786), - [sym_parameter_pack_expansion] = STATE(2786), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4584), - [sym_qualified_identifier] = STATE(2784), - [sym_qualified_type_identifier] = STATE(5891), - [sym_user_defined_literal] = STATE(2786), - [sym_identifier] = ACTIONS(1567), - [anon_sym_LPAREN2] = ACTIONS(1569), - [anon_sym_BANG] = ACTIONS(1573), - [anon_sym_TILDE] = ACTIONS(1573), - [anon_sym_DASH] = ACTIONS(1571), - [anon_sym_PLUS] = ACTIONS(1571), - [anon_sym_STAR] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(1445), - [anon_sym_COLON_COLON] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1581), - [anon_sym_not] = ACTIONS(1571), - [anon_sym_compl] = ACTIONS(1571), - [anon_sym_DASH_DASH] = ACTIONS(1583), - [anon_sym_PLUS_PLUS] = ACTIONS(1583), - [anon_sym_sizeof] = ACTIONS(1585), - [sym_number_literal] = ACTIONS(1587), - [anon_sym_L_SQUOTE] = ACTIONS(1589), - [anon_sym_u_SQUOTE] = ACTIONS(1589), - [anon_sym_U_SQUOTE] = ACTIONS(1589), - [anon_sym_u8_SQUOTE] = ACTIONS(1589), - [anon_sym_SQUOTE] = ACTIONS(1589), - [anon_sym_L_DQUOTE] = ACTIONS(1591), - [anon_sym_u_DQUOTE] = ACTIONS(1591), - [anon_sym_U_DQUOTE] = ACTIONS(1591), - [anon_sym_u8_DQUOTE] = ACTIONS(1591), - [anon_sym_DQUOTE] = ACTIONS(1591), - [sym_true] = ACTIONS(1593), - [sym_false] = ACTIONS(1593), - [sym_null] = ACTIONS(1593), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1595), - [anon_sym_R_DQUOTE] = ACTIONS(1597), - [anon_sym_LR_DQUOTE] = ACTIONS(1597), - [anon_sym_uR_DQUOTE] = ACTIONS(1597), - [anon_sym_UR_DQUOTE] = ACTIONS(1597), - [anon_sym_u8R_DQUOTE] = ACTIONS(1597), - [anon_sym_co_await] = ACTIONS(1599), - [anon_sym_new] = ACTIONS(1601), - [anon_sym_requires] = ACTIONS(1603), - [sym_this] = ACTIONS(1593), - [sym_nullptr] = ACTIONS(1593), + [sym_identifier] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3050), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, [1559] = { - [sym__expression] = STATE(3613), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2984), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2984), - [sym_call_expression] = STATE(2984), - [sym_field_expression] = STATE(2984), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2984), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2984), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(3047), - [anon_sym_LPAREN2] = ACTIONS(3049), - [anon_sym_BANG] = ACTIONS(3053), - [anon_sym_TILDE] = ACTIONS(3053), - [anon_sym_DASH] = ACTIONS(3051), - [anon_sym_PLUS] = ACTIONS(3051), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(3055), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(3051), - [anon_sym_compl] = ACTIONS(3051), - [anon_sym_DASH_DASH] = ACTIONS(3057), - [anon_sym_PLUS_PLUS] = ACTIONS(3057), - [anon_sym_sizeof] = ACTIONS(3059), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(3061), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(3063), - [anon_sym_new] = ACTIONS(3065), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [sym_identifier] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3030), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, [1560] = { - [sym__expression] = STATE(2673), - [sym_conditional_expression] = STATE(2786), - [sym_assignment_expression] = STATE(2786), - [sym_pointer_expression] = STATE(2784), - [sym_unary_expression] = STATE(2786), - [sym_binary_expression] = STATE(2786), - [sym_update_expression] = STATE(2786), - [sym_cast_expression] = STATE(2786), - [sym_sizeof_expression] = STATE(2786), - [sym_subscript_expression] = STATE(2784), - [sym_call_expression] = STATE(2784), - [sym_field_expression] = STATE(2784), - [sym_compound_literal_expression] = STATE(2786), - [sym_parenthesized_expression] = STATE(2784), - [sym_char_literal] = STATE(2651), - [sym_concatenated_string] = STATE(2651), - [sym_string_literal] = STATE(1840), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5891), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(2786), - [sym_raw_string_literal] = STATE(1840), - [sym_co_await_expression] = STATE(2786), - [sym_new_expression] = STATE(2786), - [sym_delete_expression] = STATE(2786), - [sym_requires_clause] = STATE(2786), - [sym_requires_expression] = STATE(2786), - [sym_lambda_expression] = STATE(2786), - [sym_lambda_capture_specifier] = STATE(4484), - [sym_fold_expression] = STATE(2786), - [sym_parameter_pack_expansion] = STATE(2786), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4584), - [sym_qualified_identifier] = STATE(2784), - [sym_qualified_type_identifier] = STATE(5891), - [sym_user_defined_literal] = STATE(2786), - [sym_identifier] = ACTIONS(1567), - [anon_sym_LPAREN2] = ACTIONS(1569), - [anon_sym_BANG] = ACTIONS(1573), - [anon_sym_TILDE] = ACTIONS(1573), - [anon_sym_DASH] = ACTIONS(1571), - [anon_sym_PLUS] = ACTIONS(1571), - [anon_sym_STAR] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(1445), - [anon_sym_COLON_COLON] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1581), - [anon_sym_not] = ACTIONS(1571), - [anon_sym_compl] = ACTIONS(1571), - [anon_sym_DASH_DASH] = ACTIONS(1583), - [anon_sym_PLUS_PLUS] = ACTIONS(1583), - [anon_sym_sizeof] = ACTIONS(1585), - [sym_number_literal] = ACTIONS(1587), - [anon_sym_L_SQUOTE] = ACTIONS(1589), - [anon_sym_u_SQUOTE] = ACTIONS(1589), - [anon_sym_U_SQUOTE] = ACTIONS(1589), - [anon_sym_u8_SQUOTE] = ACTIONS(1589), - [anon_sym_SQUOTE] = ACTIONS(1589), - [anon_sym_L_DQUOTE] = ACTIONS(1591), - [anon_sym_u_DQUOTE] = ACTIONS(1591), - [anon_sym_U_DQUOTE] = ACTIONS(1591), - [anon_sym_u8_DQUOTE] = ACTIONS(1591), - [anon_sym_DQUOTE] = ACTIONS(1591), - [sym_true] = ACTIONS(1593), - [sym_false] = ACTIONS(1593), - [sym_null] = ACTIONS(1593), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1595), - [anon_sym_R_DQUOTE] = ACTIONS(1597), - [anon_sym_LR_DQUOTE] = ACTIONS(1597), - [anon_sym_uR_DQUOTE] = ACTIONS(1597), - [anon_sym_UR_DQUOTE] = ACTIONS(1597), - [anon_sym_u8R_DQUOTE] = ACTIONS(1597), - [anon_sym_co_await] = ACTIONS(1599), - [anon_sym_new] = ACTIONS(1601), - [anon_sym_requires] = ACTIONS(1603), - [sym_this] = ACTIONS(1593), - [sym_nullptr] = ACTIONS(1593), + [sym_identifier] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3030), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, [1561] = { - [sym__expression] = STATE(2677), - [sym_conditional_expression] = STATE(2786), - [sym_assignment_expression] = STATE(2786), - [sym_pointer_expression] = STATE(2784), - [sym_unary_expression] = STATE(2786), - [sym_binary_expression] = STATE(2786), - [sym_update_expression] = STATE(2786), - [sym_cast_expression] = STATE(2786), - [sym_sizeof_expression] = STATE(2786), - [sym_subscript_expression] = STATE(2784), - [sym_call_expression] = STATE(2784), - [sym_field_expression] = STATE(2784), - [sym_compound_literal_expression] = STATE(2786), - [sym_parenthesized_expression] = STATE(2784), - [sym_char_literal] = STATE(2651), - [sym_concatenated_string] = STATE(2651), - [sym_string_literal] = STATE(1840), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5891), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(2786), - [sym_raw_string_literal] = STATE(1840), - [sym_co_await_expression] = STATE(2786), - [sym_new_expression] = STATE(2786), - [sym_delete_expression] = STATE(2786), - [sym_requires_clause] = STATE(2786), - [sym_requires_expression] = STATE(2786), - [sym_lambda_expression] = STATE(2786), - [sym_lambda_capture_specifier] = STATE(4484), - [sym_fold_expression] = STATE(2786), - [sym_parameter_pack_expansion] = STATE(2786), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4584), - [sym_qualified_identifier] = STATE(2784), - [sym_qualified_type_identifier] = STATE(5891), - [sym_user_defined_literal] = STATE(2786), - [sym_identifier] = ACTIONS(1567), - [anon_sym_LPAREN2] = ACTIONS(1569), - [anon_sym_BANG] = ACTIONS(1573), - [anon_sym_TILDE] = ACTIONS(1573), - [anon_sym_DASH] = ACTIONS(1571), - [anon_sym_PLUS] = ACTIONS(1571), - [anon_sym_STAR] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(1445), - [anon_sym_COLON_COLON] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1581), - [anon_sym_not] = ACTIONS(1571), - [anon_sym_compl] = ACTIONS(1571), - [anon_sym_DASH_DASH] = ACTIONS(1583), - [anon_sym_PLUS_PLUS] = ACTIONS(1583), - [anon_sym_sizeof] = ACTIONS(1585), - [sym_number_literal] = ACTIONS(1587), - [anon_sym_L_SQUOTE] = ACTIONS(1589), - [anon_sym_u_SQUOTE] = ACTIONS(1589), - [anon_sym_U_SQUOTE] = ACTIONS(1589), - [anon_sym_u8_SQUOTE] = ACTIONS(1589), - [anon_sym_SQUOTE] = ACTIONS(1589), - [anon_sym_L_DQUOTE] = ACTIONS(1591), - [anon_sym_u_DQUOTE] = ACTIONS(1591), - [anon_sym_U_DQUOTE] = ACTIONS(1591), - [anon_sym_u8_DQUOTE] = ACTIONS(1591), - [anon_sym_DQUOTE] = ACTIONS(1591), - [sym_true] = ACTIONS(1593), - [sym_false] = ACTIONS(1593), - [sym_null] = ACTIONS(1593), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1595), - [anon_sym_R_DQUOTE] = ACTIONS(1597), - [anon_sym_LR_DQUOTE] = ACTIONS(1597), - [anon_sym_uR_DQUOTE] = ACTIONS(1597), - [anon_sym_UR_DQUOTE] = ACTIONS(1597), - [anon_sym_u8R_DQUOTE] = ACTIONS(1597), - [anon_sym_co_await] = ACTIONS(1599), - [anon_sym_new] = ACTIONS(1601), - [anon_sym_requires] = ACTIONS(1603), - [sym_this] = ACTIONS(1593), - [sym_nullptr] = ACTIONS(1593), + [sym_identifier] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3030), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, [1562] = { - [sym__expression] = STATE(3612), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2984), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2984), - [sym_call_expression] = STATE(2984), - [sym_field_expression] = STATE(2984), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2984), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2984), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(3047), - [anon_sym_LPAREN2] = ACTIONS(3049), - [anon_sym_BANG] = ACTIONS(3053), - [anon_sym_TILDE] = ACTIONS(3053), - [anon_sym_DASH] = ACTIONS(3051), - [anon_sym_PLUS] = ACTIONS(3051), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(3055), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(3051), - [anon_sym_compl] = ACTIONS(3051), - [anon_sym_DASH_DASH] = ACTIONS(3057), - [anon_sym_PLUS_PLUS] = ACTIONS(3057), - [anon_sym_sizeof] = ACTIONS(3059), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(3061), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(3063), - [anon_sym_new] = ACTIONS(3065), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [sym_identifier] = ACTIONS(2992), + [anon_sym_LPAREN2] = ACTIONS(2994), + [anon_sym_BANG] = ACTIONS(2994), + [anon_sym_TILDE] = ACTIONS(2994), + [anon_sym_DASH] = ACTIONS(2992), + [anon_sym_PLUS] = ACTIONS(2992), + [anon_sym_STAR] = ACTIONS(2994), + [anon_sym_AMP] = ACTIONS(2994), + [anon_sym_SEMI] = ACTIONS(2994), + [anon_sym_typedef] = ACTIONS(2992), + [anon_sym_extern] = ACTIONS(2992), + [anon_sym___attribute__] = ACTIONS(2992), + [anon_sym_COLON_COLON] = ACTIONS(2994), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2994), + [anon_sym___declspec] = ACTIONS(2992), + [anon_sym_LBRACE] = ACTIONS(2994), + [anon_sym_LBRACK] = ACTIONS(2992), + [anon_sym_static] = ACTIONS(2992), + [anon_sym_register] = ACTIONS(2992), + [anon_sym_inline] = ACTIONS(2992), + [anon_sym_thread_local] = ACTIONS(2992), + [anon_sym_const] = ACTIONS(2992), + [anon_sym_constexpr] = ACTIONS(2992), + [anon_sym_volatile] = ACTIONS(2992), + [anon_sym_restrict] = ACTIONS(2992), + [anon_sym___restrict__] = ACTIONS(2992), + [anon_sym__Atomic] = ACTIONS(2992), + [anon_sym__Noreturn] = ACTIONS(2992), + [anon_sym_noreturn] = ACTIONS(2992), + [anon_sym_mutable] = ACTIONS(2992), + [anon_sym_constinit] = ACTIONS(2992), + [anon_sym_consteval] = ACTIONS(2992), + [anon_sym_signed] = ACTIONS(2992), + [anon_sym_unsigned] = ACTIONS(2992), + [anon_sym_long] = ACTIONS(2992), + [anon_sym_short] = ACTIONS(2992), + [sym_primitive_type] = ACTIONS(2992), + [anon_sym_enum] = ACTIONS(2992), + [anon_sym_class] = ACTIONS(2992), + [anon_sym_struct] = ACTIONS(2992), + [anon_sym_union] = ACTIONS(2992), + [anon_sym_if] = ACTIONS(2992), + [anon_sym_else] = ACTIONS(2992), + [anon_sym_switch] = ACTIONS(2992), + [anon_sym_while] = ACTIONS(2992), + [anon_sym_do] = ACTIONS(2992), + [anon_sym_for] = ACTIONS(2992), + [anon_sym_return] = ACTIONS(2992), + [anon_sym_break] = ACTIONS(2992), + [anon_sym_continue] = ACTIONS(2992), + [anon_sym_goto] = ACTIONS(2992), + [anon_sym_not] = ACTIONS(2992), + [anon_sym_compl] = ACTIONS(2992), + [anon_sym_DASH_DASH] = ACTIONS(2994), + [anon_sym_PLUS_PLUS] = ACTIONS(2994), + [anon_sym_sizeof] = ACTIONS(2992), + [anon_sym_offsetof] = ACTIONS(2992), + [anon_sym__Generic] = ACTIONS(2992), + [anon_sym_asm] = ACTIONS(2992), + [anon_sym___asm__] = ACTIONS(2992), + [sym_number_literal] = ACTIONS(2994), + [anon_sym_L_SQUOTE] = ACTIONS(2994), + [anon_sym_u_SQUOTE] = ACTIONS(2994), + [anon_sym_U_SQUOTE] = ACTIONS(2994), + [anon_sym_u8_SQUOTE] = ACTIONS(2994), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_L_DQUOTE] = ACTIONS(2994), + [anon_sym_u_DQUOTE] = ACTIONS(2994), + [anon_sym_U_DQUOTE] = ACTIONS(2994), + [anon_sym_u8_DQUOTE] = ACTIONS(2994), + [anon_sym_DQUOTE] = ACTIONS(2994), + [sym_true] = ACTIONS(2992), + [sym_false] = ACTIONS(2992), + [anon_sym_NULL] = ACTIONS(2992), + [anon_sym_nullptr] = ACTIONS(2992), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2992), + [anon_sym_decltype] = ACTIONS(2992), + [anon_sym_virtual] = ACTIONS(2992), + [anon_sym_typename] = ACTIONS(2992), + [anon_sym_template] = ACTIONS(2992), + [anon_sym_try] = ACTIONS(2992), + [anon_sym_delete] = ACTIONS(2992), + [anon_sym_throw] = ACTIONS(2992), + [anon_sym_co_return] = ACTIONS(2992), + [anon_sym_co_yield] = ACTIONS(2992), + [anon_sym_R_DQUOTE] = ACTIONS(2994), + [anon_sym_LR_DQUOTE] = ACTIONS(2994), + [anon_sym_uR_DQUOTE] = ACTIONS(2994), + [anon_sym_UR_DQUOTE] = ACTIONS(2994), + [anon_sym_u8R_DQUOTE] = ACTIONS(2994), + [anon_sym_co_await] = ACTIONS(2992), + [anon_sym_new] = ACTIONS(2992), + [anon_sym_requires] = ACTIONS(2992), + [sym_this] = ACTIONS(2992), }, [1563] = { - [sym__expression] = STATE(2916), - [sym_conditional_expression] = STATE(2574), - [sym_assignment_expression] = STATE(2574), - [sym_pointer_expression] = STATE(2578), - [sym_unary_expression] = STATE(2574), - [sym_binary_expression] = STATE(2574), - [sym_update_expression] = STATE(2574), - [sym_cast_expression] = STATE(2574), - [sym_sizeof_expression] = STATE(2574), - [sym_subscript_expression] = STATE(2578), - [sym_call_expression] = STATE(2578), - [sym_field_expression] = STATE(2578), - [sym_compound_literal_expression] = STATE(2574), - [sym_parenthesized_expression] = STATE(2578), - [sym_char_literal] = STATE(2207), - [sym_concatenated_string] = STATE(2207), - [sym_string_literal] = STATE(1820), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5944), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(2574), - [sym_raw_string_literal] = STATE(1820), - [sym_co_await_expression] = STATE(2574), - [sym_new_expression] = STATE(2574), - [sym_delete_expression] = STATE(2574), - [sym_requires_clause] = STATE(2574), - [sym_requires_expression] = STATE(2574), - [sym_lambda_expression] = STATE(2574), - [sym_lambda_capture_specifier] = STATE(4479), - [sym_fold_expression] = STATE(2574), - [sym_parameter_pack_expansion] = STATE(2574), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2578), - [sym_qualified_type_identifier] = STATE(5944), - [sym_user_defined_literal] = STATE(2574), - [sym_identifier] = ACTIONS(1523), - [anon_sym_LPAREN2] = ACTIONS(1647), - [anon_sym_BANG] = ACTIONS(1651), - [anon_sym_TILDE] = ACTIONS(1651), - [anon_sym_DASH] = ACTIONS(1649), - [anon_sym_PLUS] = ACTIONS(1649), - [anon_sym_STAR] = ACTIONS(3081), - [anon_sym_AMP] = ACTIONS(3081), - [anon_sym_COLON_COLON] = ACTIONS(1655), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(1649), - [anon_sym_compl] = ACTIONS(1649), - [anon_sym_DASH_DASH] = ACTIONS(1657), - [anon_sym_PLUS_PLUS] = ACTIONS(1657), - [anon_sym_sizeof] = ACTIONS(1659), - [sym_number_literal] = ACTIONS(1547), - [anon_sym_L_SQUOTE] = ACTIONS(1549), - [anon_sym_u_SQUOTE] = ACTIONS(1549), - [anon_sym_U_SQUOTE] = ACTIONS(1549), - [anon_sym_u8_SQUOTE] = ACTIONS(1549), - [anon_sym_SQUOTE] = ACTIONS(1549), - [anon_sym_L_DQUOTE] = ACTIONS(1551), - [anon_sym_u_DQUOTE] = ACTIONS(1551), - [anon_sym_U_DQUOTE] = ACTIONS(1551), - [anon_sym_u8_DQUOTE] = ACTIONS(1551), - [anon_sym_DQUOTE] = ACTIONS(1551), - [sym_true] = ACTIONS(1553), - [sym_false] = ACTIONS(1553), - [sym_null] = ACTIONS(1553), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1661), - [anon_sym_R_DQUOTE] = ACTIONS(1559), - [anon_sym_LR_DQUOTE] = ACTIONS(1559), - [anon_sym_uR_DQUOTE] = ACTIONS(1559), - [anon_sym_UR_DQUOTE] = ACTIONS(1559), - [anon_sym_u8R_DQUOTE] = ACTIONS(1559), - [anon_sym_co_await] = ACTIONS(1663), - [anon_sym_new] = ACTIONS(1563), - [anon_sym_requires] = ACTIONS(1565), - [sym_this] = ACTIONS(1553), - [sym_nullptr] = ACTIONS(1553), + [sym_identifier] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3030), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, [1564] = { - [sym__expression] = STATE(2465), - [sym_conditional_expression] = STATE(2574), - [sym_assignment_expression] = STATE(2574), - [sym_pointer_expression] = STATE(2578), - [sym_unary_expression] = STATE(2574), - [sym_binary_expression] = STATE(2574), - [sym_update_expression] = STATE(2574), - [sym_cast_expression] = STATE(2574), - [sym_sizeof_expression] = STATE(2574), - [sym_subscript_expression] = STATE(2578), - [sym_call_expression] = STATE(2578), - [sym_field_expression] = STATE(2578), - [sym_compound_literal_expression] = STATE(2574), - [sym_parenthesized_expression] = STATE(2578), - [sym_char_literal] = STATE(2207), - [sym_concatenated_string] = STATE(2207), - [sym_string_literal] = STATE(1820), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5944), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(2574), - [sym_raw_string_literal] = STATE(1820), - [sym_co_await_expression] = STATE(2574), - [sym_new_expression] = STATE(2574), - [sym_delete_expression] = STATE(2574), - [sym_requires_clause] = STATE(2574), - [sym_requires_expression] = STATE(2574), - [sym_lambda_expression] = STATE(2574), - [sym_lambda_capture_specifier] = STATE(4479), - [sym_fold_expression] = STATE(2574), - [sym_parameter_pack_expansion] = STATE(2574), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2578), - [sym_qualified_type_identifier] = STATE(5944), - [sym_user_defined_literal] = STATE(2574), - [sym_identifier] = ACTIONS(1523), - [anon_sym_LPAREN2] = ACTIONS(1527), - [anon_sym_BANG] = ACTIONS(1531), - [anon_sym_TILDE] = ACTIONS(1531), - [anon_sym_DASH] = ACTIONS(1529), - [anon_sym_PLUS] = ACTIONS(1529), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(3745), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(1529), - [anon_sym_compl] = ACTIONS(1529), - [anon_sym_DASH_DASH] = ACTIONS(1543), - [anon_sym_PLUS_PLUS] = ACTIONS(1543), - [anon_sym_sizeof] = ACTIONS(1545), - [sym_number_literal] = ACTIONS(1547), - [anon_sym_L_SQUOTE] = ACTIONS(1549), - [anon_sym_u_SQUOTE] = ACTIONS(1549), - [anon_sym_U_SQUOTE] = ACTIONS(1549), - [anon_sym_u8_SQUOTE] = ACTIONS(1549), - [anon_sym_SQUOTE] = ACTIONS(1549), - [anon_sym_L_DQUOTE] = ACTIONS(1551), - [anon_sym_u_DQUOTE] = ACTIONS(1551), - [anon_sym_U_DQUOTE] = ACTIONS(1551), - [anon_sym_u8_DQUOTE] = ACTIONS(1551), - [anon_sym_DQUOTE] = ACTIONS(1551), - [sym_true] = ACTIONS(1553), - [sym_false] = ACTIONS(1553), - [sym_null] = ACTIONS(1553), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1557), - [anon_sym_R_DQUOTE] = ACTIONS(1559), - [anon_sym_LR_DQUOTE] = ACTIONS(1559), - [anon_sym_uR_DQUOTE] = ACTIONS(1559), - [anon_sym_UR_DQUOTE] = ACTIONS(1559), - [anon_sym_u8R_DQUOTE] = ACTIONS(1559), - [anon_sym_co_await] = ACTIONS(1561), - [anon_sym_new] = ACTIONS(1563), - [anon_sym_requires] = ACTIONS(1565), - [sym_this] = ACTIONS(1553), - [sym_nullptr] = ACTIONS(1553), + [sym_identifier] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3030), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, [1565] = { - [sym__expression] = STATE(3833), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(3036), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(3036), - [sym_call_expression] = STATE(3036), - [sym_field_expression] = STATE(3036), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(3036), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(3036), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(3073), - [anon_sym_LPAREN2] = ACTIONS(3075), - [anon_sym_BANG] = ACTIONS(3079), - [anon_sym_TILDE] = ACTIONS(3079), - [anon_sym_DASH] = ACTIONS(3077), - [anon_sym_PLUS] = ACTIONS(3077), - [anon_sym_STAR] = ACTIONS(3081), - [anon_sym_AMP] = ACTIONS(3081), - [anon_sym_COLON_COLON] = ACTIONS(3083), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(3077), - [anon_sym_compl] = ACTIONS(3077), - [anon_sym_DASH_DASH] = ACTIONS(3085), - [anon_sym_PLUS_PLUS] = ACTIONS(3085), - [anon_sym_sizeof] = ACTIONS(3087), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(3089), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(3091), - [anon_sym_new] = ACTIONS(3065), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [sym_identifier] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3030), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, [1566] = { - [sym__expression] = STATE(3830), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(3036), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(3036), - [sym_call_expression] = STATE(3036), - [sym_field_expression] = STATE(3036), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(3036), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(3036), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(3073), - [anon_sym_LPAREN2] = ACTIONS(3075), - [anon_sym_BANG] = ACTIONS(3079), - [anon_sym_TILDE] = ACTIONS(3079), - [anon_sym_DASH] = ACTIONS(3077), - [anon_sym_PLUS] = ACTIONS(3077), - [anon_sym_STAR] = ACTIONS(3081), - [anon_sym_AMP] = ACTIONS(3081), - [anon_sym_COLON_COLON] = ACTIONS(3083), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(3077), - [anon_sym_compl] = ACTIONS(3077), - [anon_sym_DASH_DASH] = ACTIONS(3085), - [anon_sym_PLUS_PLUS] = ACTIONS(3085), - [anon_sym_sizeof] = ACTIONS(3087), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(3089), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(3091), - [anon_sym_new] = ACTIONS(3065), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [sym_identifier] = ACTIONS(2962), + [anon_sym_LPAREN2] = ACTIONS(2964), + [anon_sym_BANG] = ACTIONS(2964), + [anon_sym_TILDE] = ACTIONS(2964), + [anon_sym_DASH] = ACTIONS(2962), + [anon_sym_PLUS] = ACTIONS(2962), + [anon_sym_STAR] = ACTIONS(2964), + [anon_sym_AMP] = ACTIONS(2964), + [anon_sym_SEMI] = ACTIONS(2964), + [anon_sym_typedef] = ACTIONS(2962), + [anon_sym_extern] = ACTIONS(2962), + [anon_sym___attribute__] = ACTIONS(2962), + [anon_sym_COLON_COLON] = ACTIONS(2964), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2964), + [anon_sym___declspec] = ACTIONS(2962), + [anon_sym_LBRACE] = ACTIONS(2964), + [anon_sym_LBRACK] = ACTIONS(2962), + [anon_sym_static] = ACTIONS(2962), + [anon_sym_register] = ACTIONS(2962), + [anon_sym_inline] = ACTIONS(2962), + [anon_sym_thread_local] = ACTIONS(2962), + [anon_sym_const] = ACTIONS(2962), + [anon_sym_constexpr] = ACTIONS(2962), + [anon_sym_volatile] = ACTIONS(2962), + [anon_sym_restrict] = ACTIONS(2962), + [anon_sym___restrict__] = ACTIONS(2962), + [anon_sym__Atomic] = ACTIONS(2962), + [anon_sym__Noreturn] = ACTIONS(2962), + [anon_sym_noreturn] = ACTIONS(2962), + [anon_sym_mutable] = ACTIONS(2962), + [anon_sym_constinit] = ACTIONS(2962), + [anon_sym_consteval] = ACTIONS(2962), + [anon_sym_signed] = ACTIONS(2962), + [anon_sym_unsigned] = ACTIONS(2962), + [anon_sym_long] = ACTIONS(2962), + [anon_sym_short] = ACTIONS(2962), + [sym_primitive_type] = ACTIONS(2962), + [anon_sym_enum] = ACTIONS(2962), + [anon_sym_class] = ACTIONS(2962), + [anon_sym_struct] = ACTIONS(2962), + [anon_sym_union] = ACTIONS(2962), + [anon_sym_if] = ACTIONS(2962), + [anon_sym_else] = ACTIONS(2962), + [anon_sym_switch] = ACTIONS(2962), + [anon_sym_while] = ACTIONS(2962), + [anon_sym_do] = ACTIONS(2962), + [anon_sym_for] = ACTIONS(2962), + [anon_sym_return] = ACTIONS(2962), + [anon_sym_break] = ACTIONS(2962), + [anon_sym_continue] = ACTIONS(2962), + [anon_sym_goto] = ACTIONS(2962), + [anon_sym_not] = ACTIONS(2962), + [anon_sym_compl] = ACTIONS(2962), + [anon_sym_DASH_DASH] = ACTIONS(2964), + [anon_sym_PLUS_PLUS] = ACTIONS(2964), + [anon_sym_sizeof] = ACTIONS(2962), + [anon_sym_offsetof] = ACTIONS(2962), + [anon_sym__Generic] = ACTIONS(2962), + [anon_sym_asm] = ACTIONS(2962), + [anon_sym___asm__] = ACTIONS(2962), + [sym_number_literal] = ACTIONS(2964), + [anon_sym_L_SQUOTE] = ACTIONS(2964), + [anon_sym_u_SQUOTE] = ACTIONS(2964), + [anon_sym_U_SQUOTE] = ACTIONS(2964), + [anon_sym_u8_SQUOTE] = ACTIONS(2964), + [anon_sym_SQUOTE] = ACTIONS(2964), + [anon_sym_L_DQUOTE] = ACTIONS(2964), + [anon_sym_u_DQUOTE] = ACTIONS(2964), + [anon_sym_U_DQUOTE] = ACTIONS(2964), + [anon_sym_u8_DQUOTE] = ACTIONS(2964), + [anon_sym_DQUOTE] = ACTIONS(2964), + [sym_true] = ACTIONS(2962), + [sym_false] = ACTIONS(2962), + [anon_sym_NULL] = ACTIONS(2962), + [anon_sym_nullptr] = ACTIONS(2962), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2962), + [anon_sym_decltype] = ACTIONS(2962), + [anon_sym_virtual] = ACTIONS(2962), + [anon_sym_typename] = ACTIONS(2962), + [anon_sym_template] = ACTIONS(2962), + [anon_sym_try] = ACTIONS(2962), + [anon_sym_delete] = ACTIONS(2962), + [anon_sym_throw] = ACTIONS(2962), + [anon_sym_co_return] = ACTIONS(2962), + [anon_sym_co_yield] = ACTIONS(2962), + [anon_sym_R_DQUOTE] = ACTIONS(2964), + [anon_sym_LR_DQUOTE] = ACTIONS(2964), + [anon_sym_uR_DQUOTE] = ACTIONS(2964), + [anon_sym_UR_DQUOTE] = ACTIONS(2964), + [anon_sym_u8R_DQUOTE] = ACTIONS(2964), + [anon_sym_co_await] = ACTIONS(2962), + [anon_sym_new] = ACTIONS(2962), + [anon_sym_requires] = ACTIONS(2962), + [sym_this] = ACTIONS(2962), }, [1567] = { - [sym__expression] = STATE(3615), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2954), - [anon_sym_LPAREN2] = ACTIONS(984), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [sym_identifier] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3030), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, [1568] = { - [sym__expression] = STATE(3836), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(3036), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(3036), - [sym_call_expression] = STATE(3036), - [sym_field_expression] = STATE(3036), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(3036), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(3036), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(3073), - [anon_sym_LPAREN2] = ACTIONS(3075), - [anon_sym_BANG] = ACTIONS(3079), - [anon_sym_TILDE] = ACTIONS(3079), - [anon_sym_DASH] = ACTIONS(3077), - [anon_sym_PLUS] = ACTIONS(3077), - [anon_sym_STAR] = ACTIONS(3081), - [anon_sym_AMP] = ACTIONS(3081), - [anon_sym_COLON_COLON] = ACTIONS(3083), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(3077), - [anon_sym_compl] = ACTIONS(3077), - [anon_sym_DASH_DASH] = ACTIONS(3085), - [anon_sym_PLUS_PLUS] = ACTIONS(3085), - [anon_sym_sizeof] = ACTIONS(3087), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(3089), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(3091), - [anon_sym_new] = ACTIONS(3065), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [sym_identifier] = ACTIONS(2988), + [anon_sym_LPAREN2] = ACTIONS(2990), + [anon_sym_BANG] = ACTIONS(2990), + [anon_sym_TILDE] = ACTIONS(2990), + [anon_sym_DASH] = ACTIONS(2988), + [anon_sym_PLUS] = ACTIONS(2988), + [anon_sym_STAR] = ACTIONS(2990), + [anon_sym_AMP] = ACTIONS(2990), + [anon_sym_SEMI] = ACTIONS(2990), + [anon_sym_typedef] = ACTIONS(2988), + [anon_sym_extern] = ACTIONS(2988), + [anon_sym___attribute__] = ACTIONS(2988), + [anon_sym_COLON_COLON] = ACTIONS(2990), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2990), + [anon_sym___declspec] = ACTIONS(2988), + [anon_sym_LBRACE] = ACTIONS(2990), + [anon_sym_LBRACK] = ACTIONS(2988), + [anon_sym_static] = ACTIONS(2988), + [anon_sym_register] = ACTIONS(2988), + [anon_sym_inline] = ACTIONS(2988), + [anon_sym_thread_local] = ACTIONS(2988), + [anon_sym_const] = ACTIONS(2988), + [anon_sym_constexpr] = ACTIONS(2988), + [anon_sym_volatile] = ACTIONS(2988), + [anon_sym_restrict] = ACTIONS(2988), + [anon_sym___restrict__] = ACTIONS(2988), + [anon_sym__Atomic] = ACTIONS(2988), + [anon_sym__Noreturn] = ACTIONS(2988), + [anon_sym_noreturn] = ACTIONS(2988), + [anon_sym_mutable] = ACTIONS(2988), + [anon_sym_constinit] = ACTIONS(2988), + [anon_sym_consteval] = ACTIONS(2988), + [anon_sym_signed] = ACTIONS(2988), + [anon_sym_unsigned] = ACTIONS(2988), + [anon_sym_long] = ACTIONS(2988), + [anon_sym_short] = ACTIONS(2988), + [sym_primitive_type] = ACTIONS(2988), + [anon_sym_enum] = ACTIONS(2988), + [anon_sym_class] = ACTIONS(2988), + [anon_sym_struct] = ACTIONS(2988), + [anon_sym_union] = ACTIONS(2988), + [anon_sym_if] = ACTIONS(2988), + [anon_sym_else] = ACTIONS(2988), + [anon_sym_switch] = ACTIONS(2988), + [anon_sym_while] = ACTIONS(2988), + [anon_sym_do] = ACTIONS(2988), + [anon_sym_for] = ACTIONS(2988), + [anon_sym_return] = ACTIONS(2988), + [anon_sym_break] = ACTIONS(2988), + [anon_sym_continue] = ACTIONS(2988), + [anon_sym_goto] = ACTIONS(2988), + [anon_sym_not] = ACTIONS(2988), + [anon_sym_compl] = ACTIONS(2988), + [anon_sym_DASH_DASH] = ACTIONS(2990), + [anon_sym_PLUS_PLUS] = ACTIONS(2990), + [anon_sym_sizeof] = ACTIONS(2988), + [anon_sym_offsetof] = ACTIONS(2988), + [anon_sym__Generic] = ACTIONS(2988), + [anon_sym_asm] = ACTIONS(2988), + [anon_sym___asm__] = ACTIONS(2988), + [sym_number_literal] = ACTIONS(2990), + [anon_sym_L_SQUOTE] = ACTIONS(2990), + [anon_sym_u_SQUOTE] = ACTIONS(2990), + [anon_sym_U_SQUOTE] = ACTIONS(2990), + [anon_sym_u8_SQUOTE] = ACTIONS(2990), + [anon_sym_SQUOTE] = ACTIONS(2990), + [anon_sym_L_DQUOTE] = ACTIONS(2990), + [anon_sym_u_DQUOTE] = ACTIONS(2990), + [anon_sym_U_DQUOTE] = ACTIONS(2990), + [anon_sym_u8_DQUOTE] = ACTIONS(2990), + [anon_sym_DQUOTE] = ACTIONS(2990), + [sym_true] = ACTIONS(2988), + [sym_false] = ACTIONS(2988), + [anon_sym_NULL] = ACTIONS(2988), + [anon_sym_nullptr] = ACTIONS(2988), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2988), + [anon_sym_decltype] = ACTIONS(2988), + [anon_sym_virtual] = ACTIONS(2988), + [anon_sym_typename] = ACTIONS(2988), + [anon_sym_template] = ACTIONS(2988), + [anon_sym_try] = ACTIONS(2988), + [anon_sym_delete] = ACTIONS(2988), + [anon_sym_throw] = ACTIONS(2988), + [anon_sym_co_return] = ACTIONS(2988), + [anon_sym_co_yield] = ACTIONS(2988), + [anon_sym_R_DQUOTE] = ACTIONS(2990), + [anon_sym_LR_DQUOTE] = ACTIONS(2990), + [anon_sym_uR_DQUOTE] = ACTIONS(2990), + [anon_sym_UR_DQUOTE] = ACTIONS(2990), + [anon_sym_u8R_DQUOTE] = ACTIONS(2990), + [anon_sym_co_await] = ACTIONS(2988), + [anon_sym_new] = ACTIONS(2988), + [anon_sym_requires] = ACTIONS(2988), + [sym_this] = ACTIONS(2988), }, [1569] = { - [sym__expression] = STATE(3774), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2954), - [anon_sym_LPAREN2] = ACTIONS(984), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [sym_identifier] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3030), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, [1570] = { - [sym__expression] = STATE(3671), - [sym_conditional_expression] = STATE(3855), - [sym_assignment_expression] = STATE(3855), - [sym_pointer_expression] = STATE(2954), - [sym_unary_expression] = STATE(3855), - [sym_binary_expression] = STATE(3855), - [sym_update_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_subscript_expression] = STATE(2954), - [sym_call_expression] = STATE(2954), - [sym_field_expression] = STATE(2954), - [sym_compound_literal_expression] = STATE(3855), - [sym_parenthesized_expression] = STATE(2954), - [sym_char_literal] = STATE(3557), - [sym_concatenated_string] = STATE(3557), - [sym_string_literal] = STATE(2955), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5844), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3855), - [sym_raw_string_literal] = STATE(2955), - [sym_co_await_expression] = STATE(3855), - [sym_new_expression] = STATE(3855), - [sym_delete_expression] = STATE(3855), - [sym_requires_clause] = STATE(3855), - [sym_requires_expression] = STATE(3855), - [sym_lambda_expression] = STATE(3855), - [sym_lambda_capture_specifier] = STATE(4501), - [sym_fold_expression] = STATE(3855), - [sym_parameter_pack_expansion] = STATE(3855), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4570), - [sym_qualified_identifier] = STATE(2954), - [sym_qualified_type_identifier] = STATE(5844), - [sym_user_defined_literal] = STATE(3855), - [sym_identifier] = ACTIONS(3023), - [anon_sym_LPAREN2] = ACTIONS(2410), - [anon_sym_BANG] = ACTIONS(2412), - [anon_sym_TILDE] = ACTIONS(2412), - [anon_sym_DASH] = ACTIONS(2414), - [anon_sym_PLUS] = ACTIONS(2414), - [anon_sym_STAR] = ACTIONS(2416), - [anon_sym_AMP] = ACTIONS(2416), - [anon_sym_COLON_COLON] = ACTIONS(2418), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1619), - [anon_sym_not] = ACTIONS(2414), - [anon_sym_compl] = ACTIONS(2414), - [anon_sym_DASH_DASH] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(2432), - [anon_sym_sizeof] = ACTIONS(2434), - [sym_number_literal] = ACTIONS(2436), - [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_L_DQUOTE] = ACTIONS(2440), - [anon_sym_u_DQUOTE] = ACTIONS(2440), - [anon_sym_U_DQUOTE] = ACTIONS(2440), - [anon_sym_u8_DQUOTE] = ACTIONS(2440), - [anon_sym_DQUOTE] = ACTIONS(2440), - [sym_true] = ACTIONS(2442), - [sym_false] = ACTIONS(2442), - [sym_null] = ACTIONS(2442), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(2452), - [anon_sym_R_DQUOTE] = ACTIONS(2454), - [anon_sym_LR_DQUOTE] = ACTIONS(2454), - [anon_sym_uR_DQUOTE] = ACTIONS(2454), - [anon_sym_UR_DQUOTE] = ACTIONS(2454), - [anon_sym_u8R_DQUOTE] = ACTIONS(2454), - [anon_sym_co_await] = ACTIONS(2456), - [anon_sym_new] = ACTIONS(2458), - [anon_sym_requires] = ACTIONS(2460), - [sym_this] = ACTIONS(2442), - [sym_nullptr] = ACTIONS(2442), + [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_AMP] = ACTIONS(2972), + [anon_sym_SEMI] = ACTIONS(2972), + [anon_sym_typedef] = ACTIONS(2970), + [anon_sym_extern] = ACTIONS(2970), + [anon_sym___attribute__] = ACTIONS(2970), + [anon_sym_COLON_COLON] = ACTIONS(2972), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2972), + [anon_sym___declspec] = ACTIONS(2970), + [anon_sym_LBRACE] = ACTIONS(2972), + [anon_sym_LBRACK] = ACTIONS(2970), + [anon_sym_static] = ACTIONS(2970), + [anon_sym_register] = ACTIONS(2970), + [anon_sym_inline] = ACTIONS(2970), + [anon_sym_thread_local] = 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_noreturn] = ACTIONS(2970), + [anon_sym_mutable] = ACTIONS(2970), + [anon_sym_constinit] = ACTIONS(2970), + [anon_sym_consteval] = ACTIONS(2970), + [anon_sym_signed] = ACTIONS(2970), + [anon_sym_unsigned] = ACTIONS(2970), + [anon_sym_long] = ACTIONS(2970), + [anon_sym_short] = ACTIONS(2970), + [sym_primitive_type] = ACTIONS(2970), + [anon_sym_enum] = ACTIONS(2970), + [anon_sym_class] = ACTIONS(2970), + [anon_sym_struct] = ACTIONS(2970), + [anon_sym_union] = ACTIONS(2970), + [anon_sym_if] = ACTIONS(2970), + [anon_sym_else] = ACTIONS(4006), + [anon_sym_switch] = ACTIONS(2970), + [anon_sym_while] = ACTIONS(2970), + [anon_sym_do] = ACTIONS(2970), + [anon_sym_for] = ACTIONS(2970), + [anon_sym_return] = ACTIONS(2970), + [anon_sym_break] = ACTIONS(2970), + [anon_sym_continue] = ACTIONS(2970), + [anon_sym_goto] = ACTIONS(2970), + [anon_sym_not] = ACTIONS(2970), + [anon_sym_compl] = ACTIONS(2970), + [anon_sym_DASH_DASH] = ACTIONS(2972), + [anon_sym_PLUS_PLUS] = ACTIONS(2972), + [anon_sym_sizeof] = ACTIONS(2970), + [anon_sym_offsetof] = ACTIONS(2970), + [anon_sym__Generic] = 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_L_DQUOTE] = ACTIONS(2972), + [anon_sym_u_DQUOTE] = ACTIONS(2972), + [anon_sym_U_DQUOTE] = ACTIONS(2972), + [anon_sym_u8_DQUOTE] = ACTIONS(2972), + [anon_sym_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), + [sym_auto] = ACTIONS(2970), + [anon_sym_decltype] = ACTIONS(2970), + [anon_sym_virtual] = ACTIONS(2970), + [anon_sym_typename] = ACTIONS(2970), + [anon_sym_template] = ACTIONS(2970), + [anon_sym_try] = ACTIONS(2970), + [anon_sym_delete] = ACTIONS(2970), + [anon_sym_throw] = ACTIONS(2970), + [anon_sym_co_return] = ACTIONS(2970), + [anon_sym_co_yield] = ACTIONS(2970), + [anon_sym_R_DQUOTE] = ACTIONS(2972), + [anon_sym_LR_DQUOTE] = ACTIONS(2972), + [anon_sym_uR_DQUOTE] = ACTIONS(2972), + [anon_sym_UR_DQUOTE] = ACTIONS(2972), + [anon_sym_u8R_DQUOTE] = ACTIONS(2972), + [anon_sym_co_await] = ACTIONS(2970), + [anon_sym_new] = ACTIONS(2970), + [anon_sym_requires] = ACTIONS(2970), + [sym_this] = ACTIONS(2970), }, [1571] = { - [sym__expression] = STATE(3400), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2954), - [anon_sym_LPAREN2] = ACTIONS(984), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(3747), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [sym_identifier] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3030), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, [1572] = { - [sym__expression] = STATE(3848), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(3036), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(3036), - [sym_call_expression] = STATE(3036), - [sym_field_expression] = STATE(3036), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(3036), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(3036), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(3073), - [anon_sym_LPAREN2] = ACTIONS(3075), - [anon_sym_BANG] = ACTIONS(3079), - [anon_sym_TILDE] = ACTIONS(3079), - [anon_sym_DASH] = ACTIONS(3077), - [anon_sym_PLUS] = ACTIONS(3077), - [anon_sym_STAR] = ACTIONS(3081), - [anon_sym_AMP] = ACTIONS(3081), - [anon_sym_COLON_COLON] = ACTIONS(3083), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(3077), - [anon_sym_compl] = ACTIONS(3077), - [anon_sym_DASH_DASH] = ACTIONS(3085), - [anon_sym_PLUS_PLUS] = ACTIONS(3085), - [anon_sym_sizeof] = ACTIONS(3087), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(3089), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(3091), - [anon_sym_new] = ACTIONS(3065), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [sym_identifier] = ACTIONS(2984), + [anon_sym_LPAREN2] = ACTIONS(2986), + [anon_sym_BANG] = ACTIONS(2986), + [anon_sym_TILDE] = ACTIONS(2986), + [anon_sym_DASH] = ACTIONS(2984), + [anon_sym_PLUS] = ACTIONS(2984), + [anon_sym_STAR] = ACTIONS(2986), + [anon_sym_AMP] = ACTIONS(2986), + [anon_sym_SEMI] = ACTIONS(2986), + [anon_sym_typedef] = ACTIONS(2984), + [anon_sym_extern] = ACTIONS(2984), + [anon_sym___attribute__] = ACTIONS(2984), + [anon_sym_COLON_COLON] = ACTIONS(2986), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2986), + [anon_sym___declspec] = ACTIONS(2984), + [anon_sym_LBRACE] = ACTIONS(2986), + [anon_sym_LBRACK] = ACTIONS(2984), + [anon_sym_static] = ACTIONS(2984), + [anon_sym_register] = ACTIONS(2984), + [anon_sym_inline] = ACTIONS(2984), + [anon_sym_thread_local] = ACTIONS(2984), + [anon_sym_const] = ACTIONS(2984), + [anon_sym_constexpr] = ACTIONS(2984), + [anon_sym_volatile] = ACTIONS(2984), + [anon_sym_restrict] = ACTIONS(2984), + [anon_sym___restrict__] = ACTIONS(2984), + [anon_sym__Atomic] = ACTIONS(2984), + [anon_sym__Noreturn] = ACTIONS(2984), + [anon_sym_noreturn] = ACTIONS(2984), + [anon_sym_mutable] = ACTIONS(2984), + [anon_sym_constinit] = ACTIONS(2984), + [anon_sym_consteval] = ACTIONS(2984), + [anon_sym_signed] = ACTIONS(2984), + [anon_sym_unsigned] = ACTIONS(2984), + [anon_sym_long] = ACTIONS(2984), + [anon_sym_short] = ACTIONS(2984), + [sym_primitive_type] = ACTIONS(2984), + [anon_sym_enum] = ACTIONS(2984), + [anon_sym_class] = ACTIONS(2984), + [anon_sym_struct] = ACTIONS(2984), + [anon_sym_union] = ACTIONS(2984), + [anon_sym_if] = ACTIONS(2984), + [anon_sym_else] = ACTIONS(2984), + [anon_sym_switch] = ACTIONS(2984), + [anon_sym_while] = ACTIONS(2984), + [anon_sym_do] = ACTIONS(2984), + [anon_sym_for] = ACTIONS(2984), + [anon_sym_return] = ACTIONS(2984), + [anon_sym_break] = ACTIONS(2984), + [anon_sym_continue] = ACTIONS(2984), + [anon_sym_goto] = ACTIONS(2984), + [anon_sym_not] = ACTIONS(2984), + [anon_sym_compl] = ACTIONS(2984), + [anon_sym_DASH_DASH] = ACTIONS(2986), + [anon_sym_PLUS_PLUS] = ACTIONS(2986), + [anon_sym_sizeof] = ACTIONS(2984), + [anon_sym_offsetof] = ACTIONS(2984), + [anon_sym__Generic] = ACTIONS(2984), + [anon_sym_asm] = ACTIONS(2984), + [anon_sym___asm__] = ACTIONS(2984), + [sym_number_literal] = ACTIONS(2986), + [anon_sym_L_SQUOTE] = ACTIONS(2986), + [anon_sym_u_SQUOTE] = ACTIONS(2986), + [anon_sym_U_SQUOTE] = ACTIONS(2986), + [anon_sym_u8_SQUOTE] = ACTIONS(2986), + [anon_sym_SQUOTE] = ACTIONS(2986), + [anon_sym_L_DQUOTE] = ACTIONS(2986), + [anon_sym_u_DQUOTE] = ACTIONS(2986), + [anon_sym_U_DQUOTE] = ACTIONS(2986), + [anon_sym_u8_DQUOTE] = ACTIONS(2986), + [anon_sym_DQUOTE] = ACTIONS(2986), + [sym_true] = ACTIONS(2984), + [sym_false] = ACTIONS(2984), + [anon_sym_NULL] = ACTIONS(2984), + [anon_sym_nullptr] = ACTIONS(2984), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2984), + [anon_sym_decltype] = ACTIONS(2984), + [anon_sym_virtual] = ACTIONS(2984), + [anon_sym_typename] = ACTIONS(2984), + [anon_sym_template] = ACTIONS(2984), + [anon_sym_try] = ACTIONS(2984), + [anon_sym_delete] = ACTIONS(2984), + [anon_sym_throw] = ACTIONS(2984), + [anon_sym_co_return] = ACTIONS(2984), + [anon_sym_co_yield] = ACTIONS(2984), + [anon_sym_R_DQUOTE] = ACTIONS(2986), + [anon_sym_LR_DQUOTE] = ACTIONS(2986), + [anon_sym_uR_DQUOTE] = ACTIONS(2986), + [anon_sym_UR_DQUOTE] = ACTIONS(2986), + [anon_sym_u8R_DQUOTE] = ACTIONS(2986), + [anon_sym_co_await] = ACTIONS(2984), + [anon_sym_new] = ACTIONS(2984), + [anon_sym_requires] = ACTIONS(2984), + [sym_this] = ACTIONS(2984), }, [1573] = { - [sym__expression] = STATE(3820), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(3036), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(3036), - [sym_call_expression] = STATE(3036), - [sym_field_expression] = STATE(3036), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(3036), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(3036), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(3073), - [anon_sym_LPAREN2] = ACTIONS(3075), - [anon_sym_BANG] = ACTIONS(3079), - [anon_sym_TILDE] = ACTIONS(3079), - [anon_sym_DASH] = ACTIONS(3077), - [anon_sym_PLUS] = ACTIONS(3077), - [anon_sym_STAR] = ACTIONS(3081), - [anon_sym_AMP] = ACTIONS(3081), - [anon_sym_COLON_COLON] = ACTIONS(3083), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(3077), - [anon_sym_compl] = ACTIONS(3077), - [anon_sym_DASH_DASH] = ACTIONS(3085), - [anon_sym_PLUS_PLUS] = ACTIONS(3085), - [anon_sym_sizeof] = ACTIONS(3087), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(3089), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(3091), - [anon_sym_new] = ACTIONS(3065), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [sym_identifier] = ACTIONS(2980), + [anon_sym_LPAREN2] = ACTIONS(2982), + [anon_sym_BANG] = ACTIONS(2982), + [anon_sym_TILDE] = ACTIONS(2982), + [anon_sym_DASH] = ACTIONS(2980), + [anon_sym_PLUS] = ACTIONS(2980), + [anon_sym_STAR] = ACTIONS(2982), + [anon_sym_AMP] = ACTIONS(2982), + [anon_sym_SEMI] = ACTIONS(2982), + [anon_sym_typedef] = ACTIONS(2980), + [anon_sym_extern] = ACTIONS(2980), + [anon_sym___attribute__] = ACTIONS(2980), + [anon_sym_COLON_COLON] = ACTIONS(2982), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2982), + [anon_sym___declspec] = ACTIONS(2980), + [anon_sym_LBRACE] = ACTIONS(2982), + [anon_sym_LBRACK] = ACTIONS(2980), + [anon_sym_static] = ACTIONS(2980), + [anon_sym_register] = ACTIONS(2980), + [anon_sym_inline] = ACTIONS(2980), + [anon_sym_thread_local] = ACTIONS(2980), + [anon_sym_const] = ACTIONS(2980), + [anon_sym_constexpr] = ACTIONS(2980), + [anon_sym_volatile] = ACTIONS(2980), + [anon_sym_restrict] = ACTIONS(2980), + [anon_sym___restrict__] = ACTIONS(2980), + [anon_sym__Atomic] = ACTIONS(2980), + [anon_sym__Noreturn] = ACTIONS(2980), + [anon_sym_noreturn] = ACTIONS(2980), + [anon_sym_mutable] = ACTIONS(2980), + [anon_sym_constinit] = ACTIONS(2980), + [anon_sym_consteval] = ACTIONS(2980), + [anon_sym_signed] = ACTIONS(2980), + [anon_sym_unsigned] = ACTIONS(2980), + [anon_sym_long] = ACTIONS(2980), + [anon_sym_short] = ACTIONS(2980), + [sym_primitive_type] = ACTIONS(2980), + [anon_sym_enum] = ACTIONS(2980), + [anon_sym_class] = ACTIONS(2980), + [anon_sym_struct] = ACTIONS(2980), + [anon_sym_union] = ACTIONS(2980), + [anon_sym_if] = ACTIONS(2980), + [anon_sym_else] = ACTIONS(2980), + [anon_sym_switch] = ACTIONS(2980), + [anon_sym_while] = ACTIONS(2980), + [anon_sym_do] = ACTIONS(2980), + [anon_sym_for] = ACTIONS(2980), + [anon_sym_return] = ACTIONS(2980), + [anon_sym_break] = ACTIONS(2980), + [anon_sym_continue] = ACTIONS(2980), + [anon_sym_goto] = ACTIONS(2980), + [anon_sym_not] = ACTIONS(2980), + [anon_sym_compl] = ACTIONS(2980), + [anon_sym_DASH_DASH] = ACTIONS(2982), + [anon_sym_PLUS_PLUS] = ACTIONS(2982), + [anon_sym_sizeof] = ACTIONS(2980), + [anon_sym_offsetof] = ACTIONS(2980), + [anon_sym__Generic] = ACTIONS(2980), + [anon_sym_asm] = ACTIONS(2980), + [anon_sym___asm__] = ACTIONS(2980), + [sym_number_literal] = ACTIONS(2982), + [anon_sym_L_SQUOTE] = ACTIONS(2982), + [anon_sym_u_SQUOTE] = ACTIONS(2982), + [anon_sym_U_SQUOTE] = ACTIONS(2982), + [anon_sym_u8_SQUOTE] = ACTIONS(2982), + [anon_sym_SQUOTE] = ACTIONS(2982), + [anon_sym_L_DQUOTE] = ACTIONS(2982), + [anon_sym_u_DQUOTE] = ACTIONS(2982), + [anon_sym_U_DQUOTE] = ACTIONS(2982), + [anon_sym_u8_DQUOTE] = ACTIONS(2982), + [anon_sym_DQUOTE] = ACTIONS(2982), + [sym_true] = ACTIONS(2980), + [sym_false] = ACTIONS(2980), + [anon_sym_NULL] = ACTIONS(2980), + [anon_sym_nullptr] = ACTIONS(2980), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2980), + [anon_sym_decltype] = ACTIONS(2980), + [anon_sym_virtual] = ACTIONS(2980), + [anon_sym_typename] = ACTIONS(2980), + [anon_sym_template] = ACTIONS(2980), + [anon_sym_try] = ACTIONS(2980), + [anon_sym_delete] = ACTIONS(2980), + [anon_sym_throw] = ACTIONS(2980), + [anon_sym_co_return] = ACTIONS(2980), + [anon_sym_co_yield] = ACTIONS(2980), + [anon_sym_R_DQUOTE] = ACTIONS(2982), + [anon_sym_LR_DQUOTE] = ACTIONS(2982), + [anon_sym_uR_DQUOTE] = ACTIONS(2982), + [anon_sym_UR_DQUOTE] = ACTIONS(2982), + [anon_sym_u8R_DQUOTE] = ACTIONS(2982), + [anon_sym_co_await] = ACTIONS(2980), + [anon_sym_new] = ACTIONS(2980), + [anon_sym_requires] = ACTIONS(2980), + [sym_this] = ACTIONS(2980), }, [1574] = { - [sym__expression] = STATE(2674), - [sym_conditional_expression] = STATE(2786), - [sym_assignment_expression] = STATE(2786), - [sym_pointer_expression] = STATE(2784), - [sym_unary_expression] = STATE(2786), - [sym_binary_expression] = STATE(2786), - [sym_update_expression] = STATE(2786), - [sym_cast_expression] = STATE(2786), - [sym_sizeof_expression] = STATE(2786), - [sym_subscript_expression] = STATE(2784), - [sym_call_expression] = STATE(2784), - [sym_field_expression] = STATE(2784), - [sym_compound_literal_expression] = STATE(2786), - [sym_parenthesized_expression] = STATE(2784), - [sym_char_literal] = STATE(2651), - [sym_concatenated_string] = STATE(2651), - [sym_string_literal] = STATE(1840), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5891), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(2786), - [sym_raw_string_literal] = STATE(1840), - [sym_co_await_expression] = STATE(2786), - [sym_new_expression] = STATE(2786), - [sym_delete_expression] = STATE(2786), - [sym_requires_clause] = STATE(2786), - [sym_requires_expression] = STATE(2786), - [sym_lambda_expression] = STATE(2786), - [sym_lambda_capture_specifier] = STATE(4484), - [sym_fold_expression] = STATE(2786), - [sym_parameter_pack_expansion] = STATE(2786), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4584), - [sym_qualified_identifier] = STATE(2784), - [sym_qualified_type_identifier] = STATE(5891), - [sym_user_defined_literal] = STATE(2786), - [sym_identifier] = ACTIONS(1567), - [anon_sym_LPAREN2] = ACTIONS(1569), - [anon_sym_BANG] = ACTIONS(1573), - [anon_sym_TILDE] = ACTIONS(1573), - [anon_sym_DASH] = ACTIONS(1571), - [anon_sym_PLUS] = ACTIONS(1571), - [anon_sym_STAR] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(1445), - [anon_sym_COLON_COLON] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1581), - [anon_sym_not] = ACTIONS(1571), - [anon_sym_compl] = ACTIONS(1571), - [anon_sym_DASH_DASH] = ACTIONS(1583), - [anon_sym_PLUS_PLUS] = ACTIONS(1583), - [anon_sym_sizeof] = ACTIONS(1585), - [sym_number_literal] = ACTIONS(1587), - [anon_sym_L_SQUOTE] = ACTIONS(1589), - [anon_sym_u_SQUOTE] = ACTIONS(1589), - [anon_sym_U_SQUOTE] = ACTIONS(1589), - [anon_sym_u8_SQUOTE] = ACTIONS(1589), - [anon_sym_SQUOTE] = ACTIONS(1589), - [anon_sym_L_DQUOTE] = ACTIONS(1591), - [anon_sym_u_DQUOTE] = ACTIONS(1591), - [anon_sym_U_DQUOTE] = ACTIONS(1591), - [anon_sym_u8_DQUOTE] = ACTIONS(1591), - [anon_sym_DQUOTE] = ACTIONS(1591), - [sym_true] = ACTIONS(1593), - [sym_false] = ACTIONS(1593), - [sym_null] = ACTIONS(1593), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1595), - [anon_sym_R_DQUOTE] = ACTIONS(1597), - [anon_sym_LR_DQUOTE] = ACTIONS(1597), - [anon_sym_uR_DQUOTE] = ACTIONS(1597), - [anon_sym_UR_DQUOTE] = ACTIONS(1597), - [anon_sym_u8R_DQUOTE] = ACTIONS(1597), - [anon_sym_co_await] = ACTIONS(1599), - [anon_sym_new] = ACTIONS(1601), - [anon_sym_requires] = ACTIONS(1603), - [sym_this] = ACTIONS(1593), - [sym_nullptr] = ACTIONS(1593), + [sym_identifier] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3030), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, [1575] = { - [sym__expression] = STATE(3602), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2954), - [anon_sym_LPAREN2] = ACTIONS(984), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [sym_identifier] = ACTIONS(3048), + [anon_sym_LPAREN2] = ACTIONS(3050), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_TILDE] = ACTIONS(3050), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_AMP] = ACTIONS(3050), + [anon_sym_SEMI] = ACTIONS(3050), + [anon_sym_typedef] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym___attribute__] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(3050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3050), + [anon_sym___declspec] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3050), + [anon_sym_LBRACK] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_register] = ACTIONS(3048), + [anon_sym_inline] = ACTIONS(3048), + [anon_sym_thread_local] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3048), + [anon_sym_volatile] = ACTIONS(3048), + [anon_sym_restrict] = ACTIONS(3048), + [anon_sym___restrict__] = ACTIONS(3048), + [anon_sym__Atomic] = ACTIONS(3048), + [anon_sym__Noreturn] = ACTIONS(3048), + [anon_sym_noreturn] = ACTIONS(3048), + [anon_sym_mutable] = ACTIONS(3048), + [anon_sym_constinit] = ACTIONS(3048), + [anon_sym_consteval] = ACTIONS(3048), + [anon_sym_signed] = ACTIONS(3048), + [anon_sym_unsigned] = ACTIONS(3048), + [anon_sym_long] = ACTIONS(3048), + [anon_sym_short] = ACTIONS(3048), + [sym_primitive_type] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_goto] = ACTIONS(3048), + [anon_sym_not] = ACTIONS(3048), + [anon_sym_compl] = ACTIONS(3048), + [anon_sym_DASH_DASH] = ACTIONS(3050), + [anon_sym_PLUS_PLUS] = ACTIONS(3050), + [anon_sym_sizeof] = ACTIONS(3048), + [anon_sym_offsetof] = ACTIONS(3048), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3050), + [anon_sym_u_SQUOTE] = ACTIONS(3050), + [anon_sym_U_SQUOTE] = ACTIONS(3050), + [anon_sym_u8_SQUOTE] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3050), + [anon_sym_L_DQUOTE] = ACTIONS(3050), + [anon_sym_u_DQUOTE] = ACTIONS(3050), + [anon_sym_U_DQUOTE] = ACTIONS(3050), + [anon_sym_u8_DQUOTE] = ACTIONS(3050), + [anon_sym_DQUOTE] = ACTIONS(3050), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [anon_sym_NULL] = ACTIONS(3048), + [anon_sym_nullptr] = ACTIONS(3048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3048), + [anon_sym_decltype] = ACTIONS(3048), + [anon_sym_virtual] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3048), + [anon_sym_template] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_co_return] = ACTIONS(3048), + [anon_sym_co_yield] = ACTIONS(3048), + [anon_sym_R_DQUOTE] = ACTIONS(3050), + [anon_sym_LR_DQUOTE] = ACTIONS(3050), + [anon_sym_uR_DQUOTE] = ACTIONS(3050), + [anon_sym_UR_DQUOTE] = ACTIONS(3050), + [anon_sym_u8R_DQUOTE] = ACTIONS(3050), + [anon_sym_co_await] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_requires] = ACTIONS(3048), + [sym_this] = ACTIONS(3048), }, [1576] = { - [sym__expression] = STATE(2567), - [sym_conditional_expression] = STATE(2574), - [sym_assignment_expression] = STATE(2574), - [sym_pointer_expression] = STATE(2578), - [sym_unary_expression] = STATE(2574), - [sym_binary_expression] = STATE(2574), - [sym_update_expression] = STATE(2574), - [sym_cast_expression] = STATE(2574), - [sym_sizeof_expression] = STATE(2574), - [sym_subscript_expression] = STATE(2578), - [sym_call_expression] = STATE(2578), - [sym_field_expression] = STATE(2578), - [sym_compound_literal_expression] = STATE(2574), - [sym_parenthesized_expression] = STATE(2578), - [sym_char_literal] = STATE(2207), - [sym_concatenated_string] = STATE(2207), - [sym_string_literal] = STATE(1820), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5944), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(2574), - [sym_raw_string_literal] = STATE(1820), - [sym_co_await_expression] = STATE(2574), - [sym_new_expression] = STATE(2574), - [sym_delete_expression] = STATE(2574), - [sym_requires_clause] = STATE(2574), - [sym_requires_expression] = STATE(2574), - [sym_lambda_expression] = STATE(2574), - [sym_lambda_capture_specifier] = STATE(4479), - [sym_fold_expression] = STATE(2574), - [sym_parameter_pack_expansion] = STATE(2574), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2578), - [sym_qualified_type_identifier] = STATE(5944), - [sym_user_defined_literal] = STATE(2574), - [sym_identifier] = ACTIONS(1523), - [anon_sym_LPAREN2] = ACTIONS(1527), - [anon_sym_BANG] = ACTIONS(1531), - [anon_sym_TILDE] = ACTIONS(1531), - [anon_sym_DASH] = ACTIONS(1529), - [anon_sym_PLUS] = ACTIONS(1529), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(1529), - [anon_sym_compl] = ACTIONS(1529), - [anon_sym_DASH_DASH] = ACTIONS(1543), - [anon_sym_PLUS_PLUS] = ACTIONS(1543), - [anon_sym_sizeof] = ACTIONS(1545), - [sym_number_literal] = ACTIONS(1547), - [anon_sym_L_SQUOTE] = ACTIONS(1549), - [anon_sym_u_SQUOTE] = ACTIONS(1549), - [anon_sym_U_SQUOTE] = ACTIONS(1549), - [anon_sym_u8_SQUOTE] = ACTIONS(1549), - [anon_sym_SQUOTE] = ACTIONS(1549), - [anon_sym_L_DQUOTE] = ACTIONS(1551), - [anon_sym_u_DQUOTE] = ACTIONS(1551), - [anon_sym_U_DQUOTE] = ACTIONS(1551), - [anon_sym_u8_DQUOTE] = ACTIONS(1551), - [anon_sym_DQUOTE] = ACTIONS(1551), - [sym_true] = ACTIONS(1553), - [sym_false] = ACTIONS(1553), - [sym_null] = ACTIONS(1553), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1557), - [anon_sym_R_DQUOTE] = ACTIONS(1559), - [anon_sym_LR_DQUOTE] = ACTIONS(1559), - [anon_sym_uR_DQUOTE] = ACTIONS(1559), - [anon_sym_UR_DQUOTE] = ACTIONS(1559), - [anon_sym_u8R_DQUOTE] = ACTIONS(1559), - [anon_sym_co_await] = ACTIONS(1561), - [anon_sym_new] = ACTIONS(1563), - [anon_sym_requires] = ACTIONS(1565), - [sym_this] = ACTIONS(1553), - [sym_nullptr] = ACTIONS(1553), + [sym_identifier] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3030), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, [1577] = { - [sym__expression] = STATE(2594), - [sym_conditional_expression] = STATE(2574), - [sym_assignment_expression] = STATE(2574), - [sym_pointer_expression] = STATE(2578), - [sym_unary_expression] = STATE(2574), - [sym_binary_expression] = STATE(2574), - [sym_update_expression] = STATE(2574), - [sym_cast_expression] = STATE(2574), - [sym_sizeof_expression] = STATE(2574), - [sym_subscript_expression] = STATE(2578), - [sym_call_expression] = STATE(2578), - [sym_field_expression] = STATE(2578), - [sym_compound_literal_expression] = STATE(2574), - [sym_parenthesized_expression] = STATE(2578), - [sym_char_literal] = STATE(2207), - [sym_concatenated_string] = STATE(2207), - [sym_string_literal] = STATE(1820), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5944), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(2574), - [sym_raw_string_literal] = STATE(1820), - [sym_co_await_expression] = STATE(2574), - [sym_new_expression] = STATE(2574), - [sym_delete_expression] = STATE(2574), - [sym_requires_clause] = STATE(2574), - [sym_requires_expression] = STATE(2574), - [sym_lambda_expression] = STATE(2574), - [sym_lambda_capture_specifier] = STATE(4479), - [sym_fold_expression] = STATE(2574), - [sym_parameter_pack_expansion] = STATE(2574), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2578), - [sym_qualified_type_identifier] = STATE(5944), - [sym_user_defined_literal] = STATE(2574), - [sym_identifier] = ACTIONS(1523), - [anon_sym_LPAREN2] = ACTIONS(1527), - [anon_sym_BANG] = ACTIONS(1531), - [anon_sym_TILDE] = ACTIONS(1531), - [anon_sym_DASH] = ACTIONS(1529), - [anon_sym_PLUS] = ACTIONS(1529), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(3749), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(1529), - [anon_sym_compl] = ACTIONS(1529), - [anon_sym_DASH_DASH] = ACTIONS(1543), - [anon_sym_PLUS_PLUS] = ACTIONS(1543), - [anon_sym_sizeof] = ACTIONS(1545), - [sym_number_literal] = ACTIONS(1547), - [anon_sym_L_SQUOTE] = ACTIONS(1549), - [anon_sym_u_SQUOTE] = ACTIONS(1549), - [anon_sym_U_SQUOTE] = ACTIONS(1549), - [anon_sym_u8_SQUOTE] = ACTIONS(1549), - [anon_sym_SQUOTE] = ACTIONS(1549), - [anon_sym_L_DQUOTE] = ACTIONS(1551), - [anon_sym_u_DQUOTE] = ACTIONS(1551), - [anon_sym_U_DQUOTE] = ACTIONS(1551), - [anon_sym_u8_DQUOTE] = ACTIONS(1551), - [anon_sym_DQUOTE] = ACTIONS(1551), - [sym_true] = ACTIONS(1553), - [sym_false] = ACTIONS(1553), - [sym_null] = ACTIONS(1553), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1557), - [anon_sym_R_DQUOTE] = ACTIONS(1559), - [anon_sym_LR_DQUOTE] = ACTIONS(1559), - [anon_sym_uR_DQUOTE] = ACTIONS(1559), - [anon_sym_UR_DQUOTE] = ACTIONS(1559), - [anon_sym_u8R_DQUOTE] = ACTIONS(1559), - [anon_sym_co_await] = ACTIONS(1561), - [anon_sym_new] = ACTIONS(1563), - [anon_sym_requires] = ACTIONS(1565), - [sym_this] = ACTIONS(1553), - [sym_nullptr] = ACTIONS(1553), + [sym_identifier] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3030), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, [1578] = { - [sym__expression] = STATE(2947), - [sym_conditional_expression] = STATE(3035), - [sym_assignment_expression] = STATE(3035), - [sym_pointer_expression] = STATE(2713), - [sym_unary_expression] = STATE(3035), - [sym_binary_expression] = STATE(3035), - [sym_update_expression] = STATE(3035), - [sym_cast_expression] = STATE(3035), - [sym_sizeof_expression] = STATE(3035), - [sym_subscript_expression] = STATE(2713), - [sym_call_expression] = STATE(2713), - [sym_field_expression] = STATE(2713), - [sym_compound_literal_expression] = STATE(3035), - [sym_parenthesized_expression] = STATE(2713), - [sym_char_literal] = STATE(3013), - [sym_concatenated_string] = STATE(3013), - [sym_string_literal] = STATE(1900), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5990), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3035), - [sym_raw_string_literal] = STATE(1900), - [sym_co_await_expression] = STATE(3035), - [sym_new_expression] = STATE(3035), - [sym_delete_expression] = STATE(3035), - [sym_requires_clause] = STATE(3035), - [sym_requires_expression] = STATE(3035), - [sym_lambda_expression] = STATE(3035), - [sym_lambda_capture_specifier] = STATE(4465), - [sym_fold_expression] = STATE(3035), - [sym_parameter_pack_expansion] = STATE(3035), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4584), - [sym_qualified_identifier] = STATE(2713), - [sym_qualified_type_identifier] = STATE(5990), - [sym_user_defined_literal] = STATE(3035), - [sym_identifier] = ACTIONS(1643), - [anon_sym_LPAREN2] = ACTIONS(1439), - [anon_sym_BANG] = ACTIONS(1441), - [anon_sym_TILDE] = ACTIONS(1441), - [anon_sym_DASH] = ACTIONS(1443), - [anon_sym_PLUS] = ACTIONS(1443), - [anon_sym_STAR] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(1445), - [anon_sym_COLON_COLON] = ACTIONS(1447), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1581), - [anon_sym_not] = ACTIONS(1443), - [anon_sym_compl] = ACTIONS(1443), - [anon_sym_DASH_DASH] = ACTIONS(1459), - [anon_sym_PLUS_PLUS] = ACTIONS(1459), - [anon_sym_sizeof] = ACTIONS(1461), - [sym_number_literal] = ACTIONS(1463), - [anon_sym_L_SQUOTE] = ACTIONS(1465), - [anon_sym_u_SQUOTE] = ACTIONS(1465), - [anon_sym_U_SQUOTE] = ACTIONS(1465), - [anon_sym_u8_SQUOTE] = ACTIONS(1465), - [anon_sym_SQUOTE] = ACTIONS(1465), - [anon_sym_L_DQUOTE] = ACTIONS(1467), - [anon_sym_u_DQUOTE] = ACTIONS(1467), - [anon_sym_U_DQUOTE] = ACTIONS(1467), - [anon_sym_u8_DQUOTE] = ACTIONS(1467), - [anon_sym_DQUOTE] = ACTIONS(1467), - [sym_true] = ACTIONS(1469), - [sym_false] = ACTIONS(1469), - [sym_null] = ACTIONS(1469), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1473), - [anon_sym_R_DQUOTE] = ACTIONS(1475), - [anon_sym_LR_DQUOTE] = ACTIONS(1475), - [anon_sym_uR_DQUOTE] = ACTIONS(1475), - [anon_sym_UR_DQUOTE] = ACTIONS(1475), - [anon_sym_u8R_DQUOTE] = ACTIONS(1475), - [anon_sym_co_await] = ACTIONS(1477), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_requires] = ACTIONS(1481), - [sym_this] = ACTIONS(1469), - [sym_nullptr] = ACTIONS(1469), + [sym_identifier] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3030), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, [1579] = { - [sym__expression] = STATE(3572), - [sym_conditional_expression] = STATE(3855), - [sym_assignment_expression] = STATE(3855), - [sym_pointer_expression] = STATE(2954), - [sym_unary_expression] = STATE(3855), - [sym_binary_expression] = STATE(3855), - [sym_update_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_subscript_expression] = STATE(2954), - [sym_call_expression] = STATE(2954), - [sym_field_expression] = STATE(2954), - [sym_compound_literal_expression] = STATE(3855), - [sym_parenthesized_expression] = STATE(2954), - [sym_char_literal] = STATE(3557), - [sym_concatenated_string] = STATE(3557), - [sym_string_literal] = STATE(2955), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5844), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3855), - [sym_raw_string_literal] = STATE(2955), - [sym_co_await_expression] = STATE(3855), - [sym_new_expression] = STATE(3855), - [sym_delete_expression] = STATE(3855), - [sym_requires_clause] = STATE(3855), - [sym_requires_expression] = STATE(3855), - [sym_lambda_expression] = STATE(3855), - [sym_lambda_capture_specifier] = STATE(4501), - [sym_fold_expression] = STATE(3855), - [sym_parameter_pack_expansion] = STATE(3855), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4570), - [sym_qualified_identifier] = STATE(2954), - [sym_qualified_type_identifier] = STATE(5844), - [sym_user_defined_literal] = STATE(3855), - [sym_identifier] = ACTIONS(3023), - [anon_sym_LPAREN2] = ACTIONS(2410), - [anon_sym_BANG] = ACTIONS(2412), - [anon_sym_TILDE] = ACTIONS(2412), - [anon_sym_DASH] = ACTIONS(2414), - [anon_sym_PLUS] = ACTIONS(2414), - [anon_sym_STAR] = ACTIONS(2416), - [anon_sym_AMP] = ACTIONS(2416), - [anon_sym_COLON_COLON] = ACTIONS(2418), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1619), - [anon_sym_not] = ACTIONS(2414), - [anon_sym_compl] = ACTIONS(2414), - [anon_sym_DASH_DASH] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(2432), - [anon_sym_sizeof] = ACTIONS(2434), - [sym_number_literal] = ACTIONS(2436), - [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_L_DQUOTE] = ACTIONS(2440), - [anon_sym_u_DQUOTE] = ACTIONS(2440), - [anon_sym_U_DQUOTE] = ACTIONS(2440), - [anon_sym_u8_DQUOTE] = ACTIONS(2440), - [anon_sym_DQUOTE] = ACTIONS(2440), - [sym_true] = ACTIONS(2442), - [sym_false] = ACTIONS(2442), - [sym_null] = ACTIONS(2442), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(2452), - [anon_sym_R_DQUOTE] = ACTIONS(2454), - [anon_sym_LR_DQUOTE] = ACTIONS(2454), - [anon_sym_uR_DQUOTE] = ACTIONS(2454), - [anon_sym_UR_DQUOTE] = ACTIONS(2454), - [anon_sym_u8R_DQUOTE] = ACTIONS(2454), - [anon_sym_co_await] = ACTIONS(2456), - [anon_sym_new] = ACTIONS(2458), - [anon_sym_requires] = ACTIONS(2460), - [sym_this] = ACTIONS(2442), - [sym_nullptr] = ACTIONS(2442), + [sym_identifier] = ACTIONS(3079), + [anon_sym_LPAREN2] = ACTIONS(3081), + [anon_sym_BANG] = ACTIONS(3081), + [anon_sym_TILDE] = ACTIONS(3081), + [anon_sym_DASH] = ACTIONS(3079), + [anon_sym_PLUS] = ACTIONS(3079), + [anon_sym_STAR] = ACTIONS(3081), + [anon_sym_AMP] = ACTIONS(3081), + [anon_sym_SEMI] = ACTIONS(3081), + [anon_sym_typedef] = ACTIONS(3079), + [anon_sym_extern] = ACTIONS(3079), + [anon_sym___attribute__] = ACTIONS(3079), + [anon_sym_COLON_COLON] = ACTIONS(3081), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3081), + [anon_sym___declspec] = ACTIONS(3079), + [anon_sym_LBRACE] = ACTIONS(3081), + [anon_sym_LBRACK] = ACTIONS(3079), + [anon_sym_static] = ACTIONS(3079), + [anon_sym_register] = ACTIONS(3079), + [anon_sym_inline] = ACTIONS(3079), + [anon_sym_thread_local] = ACTIONS(3079), + [anon_sym_const] = ACTIONS(3079), + [anon_sym_constexpr] = ACTIONS(3079), + [anon_sym_volatile] = ACTIONS(3079), + [anon_sym_restrict] = ACTIONS(3079), + [anon_sym___restrict__] = ACTIONS(3079), + [anon_sym__Atomic] = ACTIONS(3079), + [anon_sym__Noreturn] = ACTIONS(3079), + [anon_sym_noreturn] = ACTIONS(3079), + [anon_sym_mutable] = ACTIONS(3079), + [anon_sym_constinit] = ACTIONS(3079), + [anon_sym_consteval] = ACTIONS(3079), + [anon_sym_signed] = ACTIONS(3079), + [anon_sym_unsigned] = ACTIONS(3079), + [anon_sym_long] = ACTIONS(3079), + [anon_sym_short] = ACTIONS(3079), + [sym_primitive_type] = ACTIONS(3079), + [anon_sym_enum] = ACTIONS(3079), + [anon_sym_class] = ACTIONS(3079), + [anon_sym_struct] = ACTIONS(3079), + [anon_sym_union] = ACTIONS(3079), + [anon_sym_if] = ACTIONS(3079), + [anon_sym_else] = ACTIONS(4008), + [anon_sym_switch] = ACTIONS(3079), + [anon_sym_while] = ACTIONS(3079), + [anon_sym_do] = ACTIONS(3079), + [anon_sym_for] = ACTIONS(3079), + [anon_sym_return] = ACTIONS(3079), + [anon_sym_break] = ACTIONS(3079), + [anon_sym_continue] = ACTIONS(3079), + [anon_sym_goto] = ACTIONS(3079), + [anon_sym_not] = ACTIONS(3079), + [anon_sym_compl] = ACTIONS(3079), + [anon_sym_DASH_DASH] = ACTIONS(3081), + [anon_sym_PLUS_PLUS] = ACTIONS(3081), + [anon_sym_sizeof] = ACTIONS(3079), + [anon_sym_offsetof] = ACTIONS(3079), + [anon_sym__Generic] = ACTIONS(3079), + [anon_sym_asm] = ACTIONS(3079), + [anon_sym___asm__] = ACTIONS(3079), + [sym_number_literal] = ACTIONS(3081), + [anon_sym_L_SQUOTE] = ACTIONS(3081), + [anon_sym_u_SQUOTE] = ACTIONS(3081), + [anon_sym_U_SQUOTE] = ACTIONS(3081), + [anon_sym_u8_SQUOTE] = ACTIONS(3081), + [anon_sym_SQUOTE] = ACTIONS(3081), + [anon_sym_L_DQUOTE] = ACTIONS(3081), + [anon_sym_u_DQUOTE] = ACTIONS(3081), + [anon_sym_U_DQUOTE] = ACTIONS(3081), + [anon_sym_u8_DQUOTE] = ACTIONS(3081), + [anon_sym_DQUOTE] = ACTIONS(3081), + [sym_true] = ACTIONS(3079), + [sym_false] = ACTIONS(3079), + [anon_sym_NULL] = ACTIONS(3079), + [anon_sym_nullptr] = ACTIONS(3079), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3079), + [anon_sym_decltype] = ACTIONS(3079), + [anon_sym_virtual] = ACTIONS(3079), + [anon_sym_typename] = ACTIONS(3079), + [anon_sym_template] = ACTIONS(3079), + [anon_sym_try] = ACTIONS(3079), + [anon_sym_delete] = ACTIONS(3079), + [anon_sym_throw] = ACTIONS(3079), + [anon_sym_co_return] = ACTIONS(3079), + [anon_sym_co_yield] = ACTIONS(3079), + [anon_sym_R_DQUOTE] = ACTIONS(3081), + [anon_sym_LR_DQUOTE] = ACTIONS(3081), + [anon_sym_uR_DQUOTE] = ACTIONS(3081), + [anon_sym_UR_DQUOTE] = ACTIONS(3081), + [anon_sym_u8R_DQUOTE] = ACTIONS(3081), + [anon_sym_co_await] = ACTIONS(3079), + [anon_sym_new] = ACTIONS(3079), + [anon_sym_requires] = ACTIONS(3079), + [sym_this] = ACTIONS(3079), }, [1580] = { - [sym__expression] = STATE(2666), - [sym_conditional_expression] = STATE(2786), - [sym_assignment_expression] = STATE(2786), - [sym_pointer_expression] = STATE(2784), - [sym_unary_expression] = STATE(2786), - [sym_binary_expression] = STATE(2786), - [sym_update_expression] = STATE(2786), - [sym_cast_expression] = STATE(2786), - [sym_sizeof_expression] = STATE(2786), - [sym_subscript_expression] = STATE(2784), - [sym_call_expression] = STATE(2784), - [sym_field_expression] = STATE(2784), - [sym_compound_literal_expression] = STATE(2786), - [sym_parenthesized_expression] = STATE(2784), - [sym_char_literal] = STATE(2651), - [sym_concatenated_string] = STATE(2651), - [sym_string_literal] = STATE(1840), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5891), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(2786), - [sym_raw_string_literal] = STATE(1840), - [sym_co_await_expression] = STATE(2786), - [sym_new_expression] = STATE(2786), - [sym_delete_expression] = STATE(2786), - [sym_requires_clause] = STATE(2786), - [sym_requires_expression] = STATE(2786), - [sym_lambda_expression] = STATE(2786), - [sym_lambda_capture_specifier] = STATE(4484), - [sym_fold_expression] = STATE(2786), - [sym_parameter_pack_expansion] = STATE(2786), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4584), - [sym_qualified_identifier] = STATE(2784), - [sym_qualified_type_identifier] = STATE(5891), - [sym_user_defined_literal] = STATE(2786), - [sym_identifier] = ACTIONS(1567), - [anon_sym_LPAREN2] = ACTIONS(1569), - [anon_sym_BANG] = ACTIONS(1573), - [anon_sym_TILDE] = ACTIONS(1573), - [anon_sym_DASH] = ACTIONS(1571), - [anon_sym_PLUS] = ACTIONS(1571), - [anon_sym_STAR] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(1445), - [anon_sym_COLON_COLON] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1581), - [anon_sym_not] = ACTIONS(1571), - [anon_sym_compl] = ACTIONS(1571), - [anon_sym_DASH_DASH] = ACTIONS(1583), - [anon_sym_PLUS_PLUS] = ACTIONS(1583), - [anon_sym_sizeof] = ACTIONS(1585), - [sym_number_literal] = ACTIONS(1587), - [anon_sym_L_SQUOTE] = ACTIONS(1589), - [anon_sym_u_SQUOTE] = ACTIONS(1589), - [anon_sym_U_SQUOTE] = ACTIONS(1589), - [anon_sym_u8_SQUOTE] = ACTIONS(1589), - [anon_sym_SQUOTE] = ACTIONS(1589), - [anon_sym_L_DQUOTE] = ACTIONS(1591), - [anon_sym_u_DQUOTE] = ACTIONS(1591), - [anon_sym_U_DQUOTE] = ACTIONS(1591), - [anon_sym_u8_DQUOTE] = ACTIONS(1591), - [anon_sym_DQUOTE] = ACTIONS(1591), - [sym_true] = ACTIONS(1593), - [sym_false] = ACTIONS(1593), - [sym_null] = ACTIONS(1593), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1595), - [anon_sym_R_DQUOTE] = ACTIONS(1597), - [anon_sym_LR_DQUOTE] = ACTIONS(1597), - [anon_sym_uR_DQUOTE] = ACTIONS(1597), - [anon_sym_UR_DQUOTE] = ACTIONS(1597), - [anon_sym_u8R_DQUOTE] = ACTIONS(1597), - [anon_sym_co_await] = ACTIONS(1599), - [anon_sym_new] = ACTIONS(1601), - [anon_sym_requires] = ACTIONS(1603), - [sym_this] = ACTIONS(1593), - [sym_nullptr] = ACTIONS(1593), + [sym_identifier] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3030), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, [1581] = { - [sym__expression] = STATE(3772), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(3036), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(3036), - [sym_call_expression] = STATE(3036), - [sym_field_expression] = STATE(3036), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(3036), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(3036), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(3073), - [anon_sym_LPAREN2] = ACTIONS(3075), - [anon_sym_BANG] = ACTIONS(3079), - [anon_sym_TILDE] = ACTIONS(3079), - [anon_sym_DASH] = ACTIONS(3077), - [anon_sym_PLUS] = ACTIONS(3077), - [anon_sym_STAR] = ACTIONS(3081), - [anon_sym_AMP] = ACTIONS(3081), - [anon_sym_COLON_COLON] = ACTIONS(3083), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(3077), - [anon_sym_compl] = ACTIONS(3077), - [anon_sym_DASH_DASH] = ACTIONS(3085), - [anon_sym_PLUS_PLUS] = ACTIONS(3085), - [anon_sym_sizeof] = ACTIONS(3087), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(3089), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(3091), - [anon_sym_new] = ACTIONS(3065), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [sym_identifier] = ACTIONS(3799), + [anon_sym_LPAREN2] = ACTIONS(3801), + [anon_sym_BANG] = ACTIONS(3801), + [anon_sym_TILDE] = ACTIONS(3801), + [anon_sym_DASH] = ACTIONS(3799), + [anon_sym_PLUS] = ACTIONS(3799), + [anon_sym_STAR] = ACTIONS(3801), + [anon_sym_AMP] = ACTIONS(3801), + [anon_sym_SEMI] = ACTIONS(3801), + [anon_sym_extern] = ACTIONS(3799), + [anon_sym___attribute__] = ACTIONS(3799), + [anon_sym_COLON_COLON] = ACTIONS(3801), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3801), + [anon_sym___declspec] = ACTIONS(3799), + [anon_sym_LBRACE] = ACTIONS(3801), + [anon_sym_LBRACK] = ACTIONS(3799), + [anon_sym_static] = ACTIONS(3799), + [anon_sym_register] = ACTIONS(3799), + [anon_sym_inline] = ACTIONS(3799), + [anon_sym_thread_local] = ACTIONS(3799), + [anon_sym_const] = ACTIONS(3799), + [anon_sym_constexpr] = ACTIONS(3799), + [anon_sym_volatile] = ACTIONS(3799), + [anon_sym_restrict] = ACTIONS(3799), + [anon_sym___restrict__] = ACTIONS(3799), + [anon_sym__Atomic] = ACTIONS(3799), + [anon_sym__Noreturn] = ACTIONS(3799), + [anon_sym_noreturn] = ACTIONS(3799), + [anon_sym_mutable] = ACTIONS(3799), + [anon_sym_constinit] = ACTIONS(3799), + [anon_sym_consteval] = ACTIONS(3799), + [anon_sym_signed] = ACTIONS(3799), + [anon_sym_unsigned] = ACTIONS(3799), + [anon_sym_long] = ACTIONS(3799), + [anon_sym_short] = ACTIONS(3799), + [sym_primitive_type] = ACTIONS(3799), + [anon_sym_enum] = ACTIONS(3799), + [anon_sym_class] = ACTIONS(3799), + [anon_sym_struct] = ACTIONS(3799), + [anon_sym_union] = ACTIONS(3799), + [anon_sym_if] = ACTIONS(3799), + [anon_sym_switch] = ACTIONS(3799), + [anon_sym_case] = ACTIONS(3799), + [anon_sym_default] = ACTIONS(3799), + [anon_sym_while] = ACTIONS(3799), + [anon_sym_do] = ACTIONS(3799), + [anon_sym_for] = ACTIONS(3799), + [anon_sym_return] = ACTIONS(3799), + [anon_sym_break] = ACTIONS(3799), + [anon_sym_continue] = ACTIONS(3799), + [anon_sym_goto] = ACTIONS(3799), + [anon_sym_not] = ACTIONS(3799), + [anon_sym_compl] = ACTIONS(3799), + [anon_sym_DASH_DASH] = ACTIONS(3801), + [anon_sym_PLUS_PLUS] = ACTIONS(3801), + [anon_sym_sizeof] = ACTIONS(3799), + [anon_sym_offsetof] = ACTIONS(3799), + [anon_sym__Generic] = ACTIONS(3799), + [anon_sym_asm] = ACTIONS(3799), + [anon_sym___asm__] = ACTIONS(3799), + [sym_number_literal] = ACTIONS(3801), + [anon_sym_L_SQUOTE] = ACTIONS(3801), + [anon_sym_u_SQUOTE] = ACTIONS(3801), + [anon_sym_U_SQUOTE] = ACTIONS(3801), + [anon_sym_u8_SQUOTE] = ACTIONS(3801), + [anon_sym_SQUOTE] = ACTIONS(3801), + [anon_sym_L_DQUOTE] = ACTIONS(3801), + [anon_sym_u_DQUOTE] = ACTIONS(3801), + [anon_sym_U_DQUOTE] = ACTIONS(3801), + [anon_sym_u8_DQUOTE] = ACTIONS(3801), + [anon_sym_DQUOTE] = ACTIONS(3801), + [sym_true] = ACTIONS(3799), + [sym_false] = ACTIONS(3799), + [anon_sym_NULL] = ACTIONS(3799), + [anon_sym_nullptr] = ACTIONS(3799), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3799), + [anon_sym_decltype] = ACTIONS(3799), + [anon_sym_virtual] = ACTIONS(3799), + [anon_sym_typename] = ACTIONS(3799), + [anon_sym_template] = ACTIONS(3799), + [anon_sym_try] = ACTIONS(3799), + [anon_sym_delete] = ACTIONS(3799), + [anon_sym_throw] = ACTIONS(3799), + [anon_sym_co_return] = ACTIONS(3799), + [anon_sym_co_yield] = ACTIONS(3799), + [anon_sym_R_DQUOTE] = ACTIONS(3801), + [anon_sym_LR_DQUOTE] = ACTIONS(3801), + [anon_sym_uR_DQUOTE] = ACTIONS(3801), + [anon_sym_UR_DQUOTE] = ACTIONS(3801), + [anon_sym_u8R_DQUOTE] = ACTIONS(3801), + [anon_sym_co_await] = ACTIONS(3799), + [anon_sym_new] = ACTIONS(3799), + [anon_sym_requires] = ACTIONS(3799), + [sym_this] = ACTIONS(3799), }, [1582] = { - [sym__expression] = STATE(3777), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2954), - [anon_sym_LPAREN2] = ACTIONS(984), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [sym_identifier] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3030), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, [1583] = { - [sym__expression] = STATE(3377), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2984), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2984), - [sym_call_expression] = STATE(2984), - [sym_field_expression] = STATE(2984), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2984), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2984), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(3047), - [anon_sym_LPAREN2] = ACTIONS(3049), - [anon_sym_BANG] = ACTIONS(3053), - [anon_sym_TILDE] = ACTIONS(3053), - [anon_sym_DASH] = ACTIONS(3051), - [anon_sym_PLUS] = ACTIONS(3051), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(3055), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(3051), - [anon_sym_compl] = ACTIONS(3051), - [anon_sym_DASH_DASH] = ACTIONS(3057), - [anon_sym_PLUS_PLUS] = ACTIONS(3057), - [anon_sym_sizeof] = ACTIONS(3059), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(3061), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(3063), - [anon_sym_new] = ACTIONS(3065), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [sym_identifier] = ACTIONS(3923), + [anon_sym_LPAREN2] = ACTIONS(3929), + [anon_sym_BANG] = ACTIONS(3929), + [anon_sym_TILDE] = ACTIONS(3929), + [anon_sym_DASH] = ACTIONS(3931), + [anon_sym_PLUS] = ACTIONS(3931), + [anon_sym_STAR] = ACTIONS(3929), + [anon_sym_AMP] = ACTIONS(3929), + [anon_sym_SEMI] = ACTIONS(3929), + [anon_sym_extern] = ACTIONS(3935), + [anon_sym___attribute__] = ACTIONS(3935), + [anon_sym_COLON_COLON] = ACTIONS(3926), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3926), + [anon_sym___declspec] = ACTIONS(3935), + [anon_sym_LBRACE] = ACTIONS(3929), + [anon_sym_LBRACK] = ACTIONS(3931), + [anon_sym_static] = ACTIONS(3935), + [anon_sym_register] = ACTIONS(3935), + [anon_sym_inline] = ACTIONS(3935), + [anon_sym_thread_local] = ACTIONS(3935), + [anon_sym_const] = ACTIONS(3935), + [anon_sym_constexpr] = ACTIONS(3935), + [anon_sym_volatile] = ACTIONS(3935), + [anon_sym_restrict] = ACTIONS(3935), + [anon_sym___restrict__] = ACTIONS(3935), + [anon_sym__Atomic] = ACTIONS(3935), + [anon_sym__Noreturn] = ACTIONS(3935), + [anon_sym_noreturn] = ACTIONS(3935), + [anon_sym_mutable] = ACTIONS(3935), + [anon_sym_constinit] = ACTIONS(3935), + [anon_sym_consteval] = ACTIONS(3935), + [anon_sym_signed] = ACTIONS(3935), + [anon_sym_unsigned] = ACTIONS(3935), + [anon_sym_long] = ACTIONS(3935), + [anon_sym_short] = ACTIONS(3935), + [sym_primitive_type] = ACTIONS(3923), + [anon_sym_enum] = ACTIONS(3935), + [anon_sym_class] = ACTIONS(3935), + [anon_sym_struct] = ACTIONS(3935), + [anon_sym_union] = ACTIONS(3935), + [anon_sym_if] = ACTIONS(3931), + [anon_sym_switch] = ACTIONS(3931), + [anon_sym_case] = ACTIONS(3931), + [anon_sym_default] = ACTIONS(3931), + [anon_sym_while] = ACTIONS(3931), + [anon_sym_do] = ACTIONS(3931), + [anon_sym_for] = ACTIONS(3931), + [anon_sym_return] = ACTIONS(3931), + [anon_sym_break] = ACTIONS(3931), + [anon_sym_continue] = ACTIONS(3931), + [anon_sym_goto] = ACTIONS(3931), + [anon_sym_not] = ACTIONS(3931), + [anon_sym_compl] = ACTIONS(3931), + [anon_sym_DASH_DASH] = ACTIONS(3929), + [anon_sym_PLUS_PLUS] = ACTIONS(3929), + [anon_sym_sizeof] = ACTIONS(3931), + [anon_sym_offsetof] = ACTIONS(3931), + [anon_sym__Generic] = ACTIONS(3931), + [anon_sym_asm] = ACTIONS(3931), + [anon_sym___asm__] = ACTIONS(3931), + [sym_number_literal] = ACTIONS(3929), + [anon_sym_L_SQUOTE] = ACTIONS(3929), + [anon_sym_u_SQUOTE] = ACTIONS(3929), + [anon_sym_U_SQUOTE] = ACTIONS(3929), + [anon_sym_u8_SQUOTE] = ACTIONS(3929), + [anon_sym_SQUOTE] = ACTIONS(3929), + [anon_sym_L_DQUOTE] = ACTIONS(3929), + [anon_sym_u_DQUOTE] = ACTIONS(3929), + [anon_sym_U_DQUOTE] = ACTIONS(3929), + [anon_sym_u8_DQUOTE] = ACTIONS(3929), + [anon_sym_DQUOTE] = ACTIONS(3929), + [sym_true] = ACTIONS(3931), + [sym_false] = ACTIONS(3931), + [anon_sym_NULL] = ACTIONS(3931), + [anon_sym_nullptr] = ACTIONS(3931), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3935), + [anon_sym_decltype] = ACTIONS(3923), + [anon_sym_virtual] = ACTIONS(3935), + [anon_sym_typename] = ACTIONS(3935), + [anon_sym_template] = ACTIONS(3923), + [anon_sym_try] = ACTIONS(3931), + [anon_sym_delete] = ACTIONS(3931), + [anon_sym_throw] = ACTIONS(3931), + [anon_sym_co_return] = ACTIONS(3931), + [anon_sym_co_yield] = ACTIONS(3931), + [anon_sym_R_DQUOTE] = ACTIONS(3929), + [anon_sym_LR_DQUOTE] = ACTIONS(3929), + [anon_sym_uR_DQUOTE] = ACTIONS(3929), + [anon_sym_UR_DQUOTE] = ACTIONS(3929), + [anon_sym_u8R_DQUOTE] = ACTIONS(3929), + [anon_sym_co_await] = ACTIONS(3931), + [anon_sym_new] = ACTIONS(3931), + [anon_sym_requires] = ACTIONS(3931), + [sym_this] = ACTIONS(3931), }, [1584] = { - [sym__expression] = STATE(3669), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2984), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2984), - [sym_call_expression] = STATE(2984), - [sym_field_expression] = STATE(2984), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2984), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2984), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(3047), - [anon_sym_LPAREN2] = ACTIONS(3049), - [anon_sym_BANG] = ACTIONS(3053), - [anon_sym_TILDE] = ACTIONS(3053), - [anon_sym_DASH] = ACTIONS(3051), - [anon_sym_PLUS] = ACTIONS(3051), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(3055), - [anon_sym_LBRACK] = ACTIONS(3751), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(3051), - [anon_sym_compl] = ACTIONS(3051), - [anon_sym_DASH_DASH] = ACTIONS(3057), - [anon_sym_PLUS_PLUS] = ACTIONS(3057), - [anon_sym_sizeof] = ACTIONS(3059), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(3061), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(3063), - [anon_sym_new] = ACTIONS(3065), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [sym_identifier] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3030), + [anon_sym_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3030), + [anon_sym_DASH] = ACTIONS(3028), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(3030), + [anon_sym_AMP] = ACTIONS(3030), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_typedef] = ACTIONS(3028), + [anon_sym_extern] = ACTIONS(3028), + [anon_sym___attribute__] = ACTIONS(3028), + [anon_sym_COLON_COLON] = ACTIONS(3030), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3030), + [anon_sym___declspec] = ACTIONS(3028), + [anon_sym_LBRACE] = ACTIONS(3030), + [anon_sym_LBRACK] = ACTIONS(3028), + [anon_sym_static] = ACTIONS(3028), + [anon_sym_register] = ACTIONS(3028), + [anon_sym_inline] = ACTIONS(3028), + [anon_sym_thread_local] = ACTIONS(3028), + [anon_sym_const] = ACTIONS(3028), + [anon_sym_constexpr] = ACTIONS(3028), + [anon_sym_volatile] = ACTIONS(3028), + [anon_sym_restrict] = ACTIONS(3028), + [anon_sym___restrict__] = ACTIONS(3028), + [anon_sym__Atomic] = ACTIONS(3028), + [anon_sym__Noreturn] = ACTIONS(3028), + [anon_sym_noreturn] = ACTIONS(3028), + [anon_sym_mutable] = ACTIONS(3028), + [anon_sym_constinit] = ACTIONS(3028), + [anon_sym_consteval] = ACTIONS(3028), + [anon_sym_signed] = ACTIONS(3028), + [anon_sym_unsigned] = ACTIONS(3028), + [anon_sym_long] = ACTIONS(3028), + [anon_sym_short] = ACTIONS(3028), + [sym_primitive_type] = ACTIONS(3028), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_class] = ACTIONS(3028), + [anon_sym_struct] = ACTIONS(3028), + [anon_sym_union] = ACTIONS(3028), + [anon_sym_if] = ACTIONS(3028), + [anon_sym_else] = ACTIONS(3028), + [anon_sym_switch] = ACTIONS(3028), + [anon_sym_while] = ACTIONS(3028), + [anon_sym_do] = ACTIONS(3028), + [anon_sym_for] = ACTIONS(3028), + [anon_sym_return] = ACTIONS(3028), + [anon_sym_break] = ACTIONS(3028), + [anon_sym_continue] = ACTIONS(3028), + [anon_sym_goto] = ACTIONS(3028), + [anon_sym_not] = ACTIONS(3028), + [anon_sym_compl] = ACTIONS(3028), + [anon_sym_DASH_DASH] = ACTIONS(3030), + [anon_sym_PLUS_PLUS] = ACTIONS(3030), + [anon_sym_sizeof] = ACTIONS(3028), + [anon_sym_offsetof] = ACTIONS(3028), + [anon_sym__Generic] = ACTIONS(3028), + [anon_sym_asm] = ACTIONS(3028), + [anon_sym___asm__] = ACTIONS(3028), + [sym_number_literal] = ACTIONS(3030), + [anon_sym_L_SQUOTE] = ACTIONS(3030), + [anon_sym_u_SQUOTE] = ACTIONS(3030), + [anon_sym_U_SQUOTE] = ACTIONS(3030), + [anon_sym_u8_SQUOTE] = ACTIONS(3030), + [anon_sym_SQUOTE] = ACTIONS(3030), + [anon_sym_L_DQUOTE] = ACTIONS(3030), + [anon_sym_u_DQUOTE] = ACTIONS(3030), + [anon_sym_U_DQUOTE] = ACTIONS(3030), + [anon_sym_u8_DQUOTE] = ACTIONS(3030), + [anon_sym_DQUOTE] = ACTIONS(3030), + [sym_true] = ACTIONS(3028), + [sym_false] = ACTIONS(3028), + [anon_sym_NULL] = ACTIONS(3028), + [anon_sym_nullptr] = ACTIONS(3028), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3028), + [anon_sym_decltype] = ACTIONS(3028), + [anon_sym_virtual] = ACTIONS(3028), + [anon_sym_typename] = ACTIONS(3028), + [anon_sym_template] = ACTIONS(3028), + [anon_sym_try] = ACTIONS(3028), + [anon_sym_delete] = ACTIONS(3028), + [anon_sym_throw] = ACTIONS(3028), + [anon_sym_co_return] = ACTIONS(3028), + [anon_sym_co_yield] = ACTIONS(3028), + [anon_sym_R_DQUOTE] = ACTIONS(3030), + [anon_sym_LR_DQUOTE] = ACTIONS(3030), + [anon_sym_uR_DQUOTE] = ACTIONS(3030), + [anon_sym_UR_DQUOTE] = ACTIONS(3030), + [anon_sym_u8R_DQUOTE] = ACTIONS(3030), + [anon_sym_co_await] = ACTIONS(3028), + [anon_sym_new] = ACTIONS(3028), + [anon_sym_requires] = ACTIONS(3028), + [sym_this] = ACTIONS(3028), }, [1585] = { - [sym__expression] = STATE(2869), - [sym_conditional_expression] = STATE(2940), - [sym_assignment_expression] = STATE(2940), - [sym_pointer_expression] = STATE(2933), - [sym_unary_expression] = STATE(2940), - [sym_binary_expression] = STATE(2940), - [sym_update_expression] = STATE(2940), - [sym_cast_expression] = STATE(2940), - [sym_sizeof_expression] = STATE(2940), - [sym_subscript_expression] = STATE(2933), - [sym_call_expression] = STATE(2933), - [sym_field_expression] = STATE(2933), - [sym_compound_literal_expression] = STATE(2940), - [sym_parenthesized_expression] = STATE(2933), - [sym_char_literal] = STATE(2845), - [sym_concatenated_string] = STATE(2845), - [sym_string_literal] = STATE(1861), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5801), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(2940), - [sym_raw_string_literal] = STATE(1861), - [sym_co_await_expression] = STATE(2940), - [sym_new_expression] = STATE(2940), - [sym_delete_expression] = STATE(2940), - [sym_requires_clause] = STATE(2940), - [sym_requires_expression] = STATE(2940), - [sym_lambda_expression] = STATE(2940), - [sym_lambda_capture_specifier] = STATE(4464), - [sym_fold_expression] = STATE(2940), - [sym_parameter_pack_expansion] = STATE(2940), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4570), - [sym_qualified_identifier] = STATE(2933), - [sym_qualified_type_identifier] = STATE(5801), - [sym_user_defined_literal] = STATE(2940), - [sym_identifier] = ACTIONS(1605), - [anon_sym_LPAREN2] = ACTIONS(1607), - [anon_sym_BANG] = ACTIONS(1611), - [anon_sym_TILDE] = ACTIONS(1611), - [anon_sym_DASH] = ACTIONS(1609), - [anon_sym_PLUS] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(2416), - [anon_sym_AMP] = ACTIONS(2416), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1619), - [anon_sym_not] = ACTIONS(1609), - [anon_sym_compl] = ACTIONS(1609), - [anon_sym_DASH_DASH] = ACTIONS(1621), - [anon_sym_PLUS_PLUS] = ACTIONS(1621), - [anon_sym_sizeof] = ACTIONS(1623), - [sym_number_literal] = ACTIONS(1625), - [anon_sym_L_SQUOTE] = ACTIONS(1627), - [anon_sym_u_SQUOTE] = ACTIONS(1627), - [anon_sym_U_SQUOTE] = ACTIONS(1627), - [anon_sym_u8_SQUOTE] = ACTIONS(1627), - [anon_sym_SQUOTE] = ACTIONS(1627), - [anon_sym_L_DQUOTE] = ACTIONS(1629), - [anon_sym_u_DQUOTE] = ACTIONS(1629), - [anon_sym_U_DQUOTE] = ACTIONS(1629), - [anon_sym_u8_DQUOTE] = ACTIONS(1629), - [anon_sym_DQUOTE] = ACTIONS(1629), - [sym_true] = ACTIONS(1631), - [sym_false] = ACTIONS(1631), - [sym_null] = ACTIONS(1631), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1633), - [anon_sym_R_DQUOTE] = ACTIONS(1635), - [anon_sym_LR_DQUOTE] = ACTIONS(1635), - [anon_sym_uR_DQUOTE] = ACTIONS(1635), - [anon_sym_UR_DQUOTE] = ACTIONS(1635), - [anon_sym_u8R_DQUOTE] = ACTIONS(1635), - [anon_sym_co_await] = ACTIONS(1637), - [anon_sym_new] = ACTIONS(1639), - [anon_sym_requires] = ACTIONS(1641), - [sym_this] = ACTIONS(1631), - [sym_nullptr] = ACTIONS(1631), + [sym__declaration_modifiers] = STATE(2530), + [sym__declaration_specifiers] = STATE(3795), + [sym_attribute_specifier] = STATE(2530), + [sym_attribute_declaration] = STATE(2530), + [sym_ms_declspec_modifier] = STATE(2530), + [sym_ms_based_modifier] = STATE(7654), + [sym__declarator] = STATE(5825), + [sym__abstract_declarator] = STATE(5946), + [sym_parenthesized_declarator] = STATE(5640), + [sym_abstract_parenthesized_declarator] = STATE(5452), + [sym_attributed_declarator] = STATE(5640), + [sym_pointer_declarator] = STATE(5640), + [sym_abstract_pointer_declarator] = STATE(5452), + [sym_function_declarator] = STATE(5640), + [sym_abstract_function_declarator] = STATE(5452), + [sym_array_declarator] = STATE(5640), + [sym_abstract_array_declarator] = STATE(5452), + [sym_storage_class_specifier] = STATE(2530), + [sym_type_qualifier] = STATE(2530), + [sym__type_specifier] = STATE(3633), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), + [sym_parameter_list] = STATE(3900), + [sym_parameter_declaration] = STATE(6292), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym_virtual] = STATE(2530), + [sym_dependent_type] = STATE(3723), + [sym_optional_parameter_declaration] = STATE(6292), + [sym_variadic_parameter_declaration] = STATE(6292), + [sym_reference_declarator] = STATE(5640), + [sym_abstract_reference_declarator] = STATE(5452), + [sym_structured_binding_declarator] = STATE(5640), + [sym__function_declarator_seq] = STATE(5457), + [sym_template_type] = STATE(3680), + [sym_template_function] = STATE(5640), + [sym_destructor_name] = STATE(5640), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5293), + [sym_qualified_identifier] = STATE(5640), + [sym_qualified_type_identifier] = STATE(3694), + [sym_operator_name] = STATE(5640), + [aux_sym__declaration_specifiers_repeat1] = STATE(2530), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [sym_identifier] = ACTIONS(4010), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1895), + [anon_sym_RPAREN] = ACTIONS(4012), + [anon_sym_LPAREN2] = ACTIONS(4014), + [anon_sym_TILDE] = ACTIONS(2562), + [anon_sym_STAR] = ACTIONS(4016), + [anon_sym_AMP_AMP] = ACTIONS(4018), + [anon_sym_AMP] = ACTIONS(4020), + [anon_sym_extern] = ACTIONS(53), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(4022), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1813), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(4024), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(53), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(3667), + [anon_sym_enum] = ACTIONS(1853), + [anon_sym_class] = ACTIONS(1855), + [anon_sym_struct] = ACTIONS(1857), + [anon_sym_union] = ACTIONS(1859), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(113), + [anon_sym_decltype] = ACTIONS(115), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_typename] = ACTIONS(1881), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_operator] = ACTIONS(1931), }, [1586] = { - [sym__expression] = STATE(3348), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2984), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2984), - [sym_call_expression] = STATE(2984), - [sym_field_expression] = STATE(2984), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2984), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2984), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(3047), - [anon_sym_LPAREN2] = ACTIONS(3049), - [anon_sym_BANG] = ACTIONS(3053), - [anon_sym_TILDE] = ACTIONS(3053), - [anon_sym_DASH] = ACTIONS(3051), - [anon_sym_PLUS] = ACTIONS(3051), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(3055), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(3051), - [anon_sym_compl] = ACTIONS(3051), - [anon_sym_DASH_DASH] = ACTIONS(3057), - [anon_sym_PLUS_PLUS] = ACTIONS(3057), - [anon_sym_sizeof] = ACTIONS(3059), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(3061), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(3063), - [anon_sym_new] = ACTIONS(3065), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [sym__expression] = STATE(3357), + [sym__expression_not_binary] = STATE(3565), + [sym_conditional_expression] = STATE(3565), + [sym_assignment_expression] = STATE(3565), + [sym_pointer_expression] = STATE(3220), + [sym_unary_expression] = STATE(3565), + [sym_binary_expression] = STATE(3565), + [sym_update_expression] = STATE(3565), + [sym_cast_expression] = STATE(3565), + [sym_sizeof_expression] = STATE(3565), + [sym_offsetof_expression] = STATE(3565), + [sym_generic_expression] = STATE(3565), + [sym_subscript_expression] = STATE(3220), + [sym_call_expression] = STATE(3220), + [sym_gnu_asm_expression] = STATE(3565), + [sym_field_expression] = STATE(3220), + [sym_compound_literal_expression] = STATE(3565), + [sym_parenthesized_expression] = STATE(3220), + [sym_char_literal] = STATE(3429), + [sym_concatenated_string] = STATE(3429), + [sym_string_literal] = STATE(2248), + [sym_null] = STATE(3565), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6847), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3565), + [sym_raw_string_literal] = STATE(2248), + [sym_co_await_expression] = STATE(3565), + [sym_new_expression] = STATE(3565), + [sym_delete_expression] = STATE(3565), + [sym_requires_clause] = STATE(3565), + [sym_requires_expression] = STATE(3565), + [sym_lambda_expression] = STATE(3565), + [sym_lambda_capture_specifier] = STATE(5204), + [sym__unary_left_fold] = STATE(7340), + [sym__unary_right_fold] = STATE(7254), + [sym__binary_fold] = STATE(7336), + [sym_fold_expression] = STATE(3565), + [sym_parameter_pack_expansion] = STATE(3565), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5232), + [sym_qualified_identifier] = STATE(3220), + [sym_qualified_type_identifier] = STATE(6847), + [sym_user_defined_literal] = STATE(3565), + [sym_identifier] = ACTIONS(2095), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1837), + [anon_sym_LPAREN2] = ACTIONS(1841), + [anon_sym_BANG] = ACTIONS(1843), + [anon_sym_TILDE] = ACTIONS(1843), + [anon_sym_DASH] = ACTIONS(1845), + [anon_sym_PLUS] = ACTIONS(1845), + [anon_sym_STAR] = ACTIONS(1847), + [anon_sym_AMP] = ACTIONS(1847), + [anon_sym_COLON_COLON] = ACTIONS(1849), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1999), + [anon_sym_not] = ACTIONS(1845), + [anon_sym_compl] = ACTIONS(1845), + [anon_sym_DASH_DASH] = ACTIONS(1861), + [anon_sym_PLUS_PLUS] = ACTIONS(1861), + [anon_sym_sizeof] = ACTIONS(1863), + [anon_sym_offsetof] = ACTIONS(1865), + [anon_sym__Generic] = ACTIONS(1867), + [anon_sym_asm] = ACTIONS(1869), + [anon_sym___asm__] = ACTIONS(1869), + [sym_number_literal] = ACTIONS(1871), + [anon_sym_L_SQUOTE] = ACTIONS(1873), + [anon_sym_u_SQUOTE] = ACTIONS(1873), + [anon_sym_U_SQUOTE] = ACTIONS(1873), + [anon_sym_u8_SQUOTE] = ACTIONS(1873), + [anon_sym_SQUOTE] = ACTIONS(1873), + [anon_sym_L_DQUOTE] = ACTIONS(1875), + [anon_sym_u_DQUOTE] = ACTIONS(1875), + [anon_sym_U_DQUOTE] = ACTIONS(1875), + [anon_sym_u8_DQUOTE] = ACTIONS(1875), + [anon_sym_DQUOTE] = ACTIONS(1875), + [sym_true] = ACTIONS(1877), + [sym_false] = ACTIONS(1877), + [anon_sym_NULL] = ACTIONS(1879), + [anon_sym_nullptr] = ACTIONS(1879), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(1883), + [anon_sym_R_DQUOTE] = ACTIONS(1885), + [anon_sym_LR_DQUOTE] = ACTIONS(1885), + [anon_sym_uR_DQUOTE] = ACTIONS(1885), + [anon_sym_UR_DQUOTE] = ACTIONS(1885), + [anon_sym_u8R_DQUOTE] = ACTIONS(1885), + [anon_sym_co_await] = ACTIONS(1887), + [anon_sym_new] = ACTIONS(1889), + [anon_sym_requires] = ACTIONS(1891), + [sym_this] = ACTIONS(1877), }, [1587] = { - [sym__expression] = STATE(3353), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2984), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2984), - [sym_call_expression] = STATE(2984), - [sym_field_expression] = STATE(2984), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2984), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2984), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(3047), - [anon_sym_LPAREN2] = ACTIONS(3049), - [anon_sym_BANG] = ACTIONS(3053), - [anon_sym_TILDE] = ACTIONS(3053), - [anon_sym_DASH] = ACTIONS(3051), - [anon_sym_PLUS] = ACTIONS(3051), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(3055), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(3051), - [anon_sym_compl] = ACTIONS(3051), - [anon_sym_DASH_DASH] = ACTIONS(3057), - [anon_sym_PLUS_PLUS] = ACTIONS(3057), - [anon_sym_sizeof] = ACTIONS(3059), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(3061), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(3063), - [anon_sym_new] = ACTIONS(3065), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [sym__expression] = STATE(3337), + [sym__expression_not_binary] = STATE(3565), + [sym_conditional_expression] = STATE(3565), + [sym_assignment_expression] = STATE(3565), + [sym_pointer_expression] = STATE(3220), + [sym_unary_expression] = STATE(3565), + [sym_binary_expression] = STATE(3565), + [sym_update_expression] = STATE(3565), + [sym_cast_expression] = STATE(3565), + [sym_sizeof_expression] = STATE(3565), + [sym_offsetof_expression] = STATE(3565), + [sym_generic_expression] = STATE(3565), + [sym_subscript_expression] = STATE(3220), + [sym_call_expression] = STATE(3220), + [sym_gnu_asm_expression] = STATE(3565), + [sym_field_expression] = STATE(3220), + [sym_compound_literal_expression] = STATE(3565), + [sym_parenthesized_expression] = STATE(3220), + [sym_char_literal] = STATE(3429), + [sym_concatenated_string] = STATE(3429), + [sym_string_literal] = STATE(2248), + [sym_null] = STATE(3565), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6847), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3565), + [sym_raw_string_literal] = STATE(2248), + [sym_co_await_expression] = STATE(3565), + [sym_new_expression] = STATE(3565), + [sym_delete_expression] = STATE(3565), + [sym_requires_clause] = STATE(3565), + [sym_requires_expression] = STATE(3565), + [sym_lambda_expression] = STATE(3565), + [sym_lambda_capture_specifier] = STATE(5204), + [sym__unary_left_fold] = STATE(7165), + [sym__unary_right_fold] = STATE(7167), + [sym__binary_fold] = STATE(7172), + [sym_fold_expression] = STATE(3565), + [sym_parameter_pack_expansion] = STATE(3565), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5232), + [sym_qualified_identifier] = STATE(3220), + [sym_qualified_type_identifier] = STATE(6847), + [sym_user_defined_literal] = STATE(3565), + [sym_identifier] = ACTIONS(2095), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1837), + [anon_sym_LPAREN2] = ACTIONS(1841), + [anon_sym_BANG] = ACTIONS(1843), + [anon_sym_TILDE] = ACTIONS(1843), + [anon_sym_DASH] = ACTIONS(1845), + [anon_sym_PLUS] = ACTIONS(1845), + [anon_sym_STAR] = ACTIONS(1847), + [anon_sym_AMP] = ACTIONS(1847), + [anon_sym_COLON_COLON] = ACTIONS(1849), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1999), + [anon_sym_not] = ACTIONS(1845), + [anon_sym_compl] = ACTIONS(1845), + [anon_sym_DASH_DASH] = ACTIONS(1861), + [anon_sym_PLUS_PLUS] = ACTIONS(1861), + [anon_sym_sizeof] = ACTIONS(1863), + [anon_sym_offsetof] = ACTIONS(1865), + [anon_sym__Generic] = ACTIONS(1867), + [anon_sym_asm] = ACTIONS(1869), + [anon_sym___asm__] = ACTIONS(1869), + [sym_number_literal] = ACTIONS(1871), + [anon_sym_L_SQUOTE] = ACTIONS(1873), + [anon_sym_u_SQUOTE] = ACTIONS(1873), + [anon_sym_U_SQUOTE] = ACTIONS(1873), + [anon_sym_u8_SQUOTE] = ACTIONS(1873), + [anon_sym_SQUOTE] = ACTIONS(1873), + [anon_sym_L_DQUOTE] = ACTIONS(1875), + [anon_sym_u_DQUOTE] = ACTIONS(1875), + [anon_sym_U_DQUOTE] = ACTIONS(1875), + [anon_sym_u8_DQUOTE] = ACTIONS(1875), + [anon_sym_DQUOTE] = ACTIONS(1875), + [sym_true] = ACTIONS(1877), + [sym_false] = ACTIONS(1877), + [anon_sym_NULL] = ACTIONS(1879), + [anon_sym_nullptr] = ACTIONS(1879), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(1883), + [anon_sym_R_DQUOTE] = ACTIONS(1885), + [anon_sym_LR_DQUOTE] = ACTIONS(1885), + [anon_sym_uR_DQUOTE] = ACTIONS(1885), + [anon_sym_UR_DQUOTE] = ACTIONS(1885), + [anon_sym_u8R_DQUOTE] = ACTIONS(1885), + [anon_sym_co_await] = ACTIONS(1887), + [anon_sym_new] = ACTIONS(1889), + [anon_sym_requires] = ACTIONS(1891), + [sym_this] = ACTIONS(1877), }, [1588] = { - [sym__expression] = STATE(3607), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2984), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2984), - [sym_call_expression] = STATE(2984), - [sym_field_expression] = STATE(2984), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2984), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2984), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(3047), - [anon_sym_LPAREN2] = ACTIONS(3049), - [anon_sym_BANG] = ACTIONS(3053), - [anon_sym_TILDE] = ACTIONS(3053), - [anon_sym_DASH] = ACTIONS(3051), - [anon_sym_PLUS] = ACTIONS(3051), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(3055), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(3051), - [anon_sym_compl] = ACTIONS(3051), - [anon_sym_DASH_DASH] = ACTIONS(3057), - [anon_sym_PLUS_PLUS] = ACTIONS(3057), - [anon_sym_sizeof] = ACTIONS(3059), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(3061), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(3063), - [anon_sym_new] = ACTIONS(3065), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [sym__expression] = STATE(3317), + [sym__expression_not_binary] = STATE(3565), + [sym_conditional_expression] = STATE(3565), + [sym_assignment_expression] = STATE(3565), + [sym_pointer_expression] = STATE(3220), + [sym_unary_expression] = STATE(3565), + [sym_binary_expression] = STATE(3565), + [sym_update_expression] = STATE(3565), + [sym_cast_expression] = STATE(3565), + [sym_sizeof_expression] = STATE(3565), + [sym_offsetof_expression] = STATE(3565), + [sym_generic_expression] = STATE(3565), + [sym_subscript_expression] = STATE(3220), + [sym_call_expression] = STATE(3220), + [sym_gnu_asm_expression] = STATE(3565), + [sym_field_expression] = STATE(3220), + [sym_compound_literal_expression] = STATE(3565), + [sym_parenthesized_expression] = STATE(3220), + [sym_char_literal] = STATE(3429), + [sym_concatenated_string] = STATE(3429), + [sym_string_literal] = STATE(2248), + [sym_null] = STATE(3565), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6847), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3565), + [sym_raw_string_literal] = STATE(2248), + [sym_co_await_expression] = STATE(3565), + [sym_new_expression] = STATE(3565), + [sym_delete_expression] = STATE(3565), + [sym_requires_clause] = STATE(3565), + [sym_requires_expression] = STATE(3565), + [sym_lambda_expression] = STATE(3565), + [sym_lambda_capture_specifier] = STATE(5204), + [sym__unary_left_fold] = STATE(7246), + [sym__unary_right_fold] = STATE(7249), + [sym__binary_fold] = STATE(7250), + [sym_fold_expression] = STATE(3565), + [sym_parameter_pack_expansion] = STATE(3565), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5232), + [sym_qualified_identifier] = STATE(3220), + [sym_qualified_type_identifier] = STATE(6847), + [sym_user_defined_literal] = STATE(3565), + [sym_identifier] = ACTIONS(2095), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1837), + [anon_sym_LPAREN2] = ACTIONS(1841), + [anon_sym_BANG] = ACTIONS(1843), + [anon_sym_TILDE] = ACTIONS(1843), + [anon_sym_DASH] = ACTIONS(1845), + [anon_sym_PLUS] = ACTIONS(1845), + [anon_sym_STAR] = ACTIONS(1847), + [anon_sym_AMP] = ACTIONS(1847), + [anon_sym_COLON_COLON] = ACTIONS(1849), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1999), + [anon_sym_not] = ACTIONS(1845), + [anon_sym_compl] = ACTIONS(1845), + [anon_sym_DASH_DASH] = ACTIONS(1861), + [anon_sym_PLUS_PLUS] = ACTIONS(1861), + [anon_sym_sizeof] = ACTIONS(1863), + [anon_sym_offsetof] = ACTIONS(1865), + [anon_sym__Generic] = ACTIONS(1867), + [anon_sym_asm] = ACTIONS(1869), + [anon_sym___asm__] = ACTIONS(1869), + [sym_number_literal] = ACTIONS(1871), + [anon_sym_L_SQUOTE] = ACTIONS(1873), + [anon_sym_u_SQUOTE] = ACTIONS(1873), + [anon_sym_U_SQUOTE] = ACTIONS(1873), + [anon_sym_u8_SQUOTE] = ACTIONS(1873), + [anon_sym_SQUOTE] = ACTIONS(1873), + [anon_sym_L_DQUOTE] = ACTIONS(1875), + [anon_sym_u_DQUOTE] = ACTIONS(1875), + [anon_sym_U_DQUOTE] = ACTIONS(1875), + [anon_sym_u8_DQUOTE] = ACTIONS(1875), + [anon_sym_DQUOTE] = ACTIONS(1875), + [sym_true] = ACTIONS(1877), + [sym_false] = ACTIONS(1877), + [anon_sym_NULL] = ACTIONS(1879), + [anon_sym_nullptr] = ACTIONS(1879), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(1883), + [anon_sym_R_DQUOTE] = ACTIONS(1885), + [anon_sym_LR_DQUOTE] = ACTIONS(1885), + [anon_sym_uR_DQUOTE] = ACTIONS(1885), + [anon_sym_UR_DQUOTE] = ACTIONS(1885), + [anon_sym_u8R_DQUOTE] = ACTIONS(1885), + [anon_sym_co_await] = ACTIONS(1887), + [anon_sym_new] = ACTIONS(1889), + [anon_sym_requires] = ACTIONS(1891), + [sym_this] = ACTIONS(1877), }, [1589] = { - [sym__expression] = STATE(3338), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2984), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2984), - [sym_call_expression] = STATE(2984), - [sym_field_expression] = STATE(2984), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2984), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2984), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(3047), - [anon_sym_LPAREN2] = ACTIONS(3049), - [anon_sym_BANG] = ACTIONS(3053), - [anon_sym_TILDE] = ACTIONS(3053), - [anon_sym_DASH] = ACTIONS(3051), - [anon_sym_PLUS] = ACTIONS(3051), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(3055), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(3051), - [anon_sym_compl] = ACTIONS(3051), - [anon_sym_DASH_DASH] = ACTIONS(3057), - [anon_sym_PLUS_PLUS] = ACTIONS(3057), - [anon_sym_sizeof] = ACTIONS(3059), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(3061), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(3063), - [anon_sym_new] = ACTIONS(3065), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [sym__expression] = STATE(4177), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7599), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_initializer_list] = STATE(7599), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(4026), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(1899), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1590] = { - [sym__expression] = STATE(2675), - [sym_conditional_expression] = STATE(2786), - [sym_assignment_expression] = STATE(2786), - [sym_pointer_expression] = STATE(2784), - [sym_unary_expression] = STATE(2786), - [sym_binary_expression] = STATE(2786), - [sym_update_expression] = STATE(2786), - [sym_cast_expression] = STATE(2786), - [sym_sizeof_expression] = STATE(2786), - [sym_subscript_expression] = STATE(2784), - [sym_call_expression] = STATE(2784), - [sym_field_expression] = STATE(2784), - [sym_compound_literal_expression] = STATE(2786), - [sym_parenthesized_expression] = STATE(2784), - [sym_char_literal] = STATE(2651), - [sym_concatenated_string] = STATE(2651), - [sym_string_literal] = STATE(1840), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5891), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(2786), - [sym_raw_string_literal] = STATE(1840), - [sym_co_await_expression] = STATE(2786), - [sym_new_expression] = STATE(2786), - [sym_delete_expression] = STATE(2786), - [sym_requires_clause] = STATE(2786), - [sym_requires_expression] = STATE(2786), - [sym_lambda_expression] = STATE(2786), - [sym_lambda_capture_specifier] = STATE(4484), - [sym_fold_expression] = STATE(2786), - [sym_parameter_pack_expansion] = STATE(2786), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4584), - [sym_qualified_identifier] = STATE(2784), - [sym_qualified_type_identifier] = STATE(5891), - [sym_user_defined_literal] = STATE(2786), - [sym_identifier] = ACTIONS(1567), - [anon_sym_LPAREN2] = ACTIONS(1569), - [anon_sym_BANG] = ACTIONS(1573), - [anon_sym_TILDE] = ACTIONS(1573), - [anon_sym_DASH] = ACTIONS(1571), - [anon_sym_PLUS] = ACTIONS(1571), - [anon_sym_STAR] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(1445), - [anon_sym_COLON_COLON] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1581), - [anon_sym_not] = ACTIONS(1571), - [anon_sym_compl] = ACTIONS(1571), - [anon_sym_DASH_DASH] = ACTIONS(1583), - [anon_sym_PLUS_PLUS] = ACTIONS(1583), - [anon_sym_sizeof] = ACTIONS(1585), - [sym_number_literal] = ACTIONS(1587), - [anon_sym_L_SQUOTE] = ACTIONS(1589), - [anon_sym_u_SQUOTE] = ACTIONS(1589), - [anon_sym_U_SQUOTE] = ACTIONS(1589), - [anon_sym_u8_SQUOTE] = ACTIONS(1589), - [anon_sym_SQUOTE] = ACTIONS(1589), - [anon_sym_L_DQUOTE] = ACTIONS(1591), - [anon_sym_u_DQUOTE] = ACTIONS(1591), - [anon_sym_U_DQUOTE] = ACTIONS(1591), - [anon_sym_u8_DQUOTE] = ACTIONS(1591), - [anon_sym_DQUOTE] = ACTIONS(1591), - [sym_true] = ACTIONS(1593), - [sym_false] = ACTIONS(1593), - [sym_null] = ACTIONS(1593), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1595), - [anon_sym_R_DQUOTE] = ACTIONS(1597), - [anon_sym_LR_DQUOTE] = ACTIONS(1597), - [anon_sym_uR_DQUOTE] = ACTIONS(1597), - [anon_sym_UR_DQUOTE] = ACTIONS(1597), - [anon_sym_u8R_DQUOTE] = ACTIONS(1597), - [anon_sym_co_await] = ACTIONS(1599), - [anon_sym_new] = ACTIONS(1601), - [anon_sym_requires] = ACTIONS(1603), - [sym_this] = ACTIONS(1593), - [sym_nullptr] = ACTIONS(1593), + [sym__expression] = STATE(3267), + [sym__expression_not_binary] = STATE(3565), + [sym_conditional_expression] = STATE(3565), + [sym_assignment_expression] = STATE(3565), + [sym_pointer_expression] = STATE(3220), + [sym_unary_expression] = STATE(3565), + [sym_binary_expression] = STATE(3565), + [sym_update_expression] = STATE(3565), + [sym_cast_expression] = STATE(3565), + [sym_sizeof_expression] = STATE(3565), + [sym_offsetof_expression] = STATE(3565), + [sym_generic_expression] = STATE(3565), + [sym_subscript_expression] = STATE(3220), + [sym_call_expression] = STATE(3220), + [sym_gnu_asm_expression] = STATE(3565), + [sym_field_expression] = STATE(3220), + [sym_compound_literal_expression] = STATE(3565), + [sym_parenthesized_expression] = STATE(3220), + [sym_char_literal] = STATE(3429), + [sym_concatenated_string] = STATE(3429), + [sym_string_literal] = STATE(2248), + [sym_null] = STATE(3565), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6847), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3565), + [sym_raw_string_literal] = STATE(2248), + [sym_co_await_expression] = STATE(3565), + [sym_new_expression] = STATE(3565), + [sym_delete_expression] = STATE(3565), + [sym_requires_clause] = STATE(3565), + [sym_requires_expression] = STATE(3565), + [sym_lambda_expression] = STATE(3565), + [sym_lambda_capture_specifier] = STATE(5204), + [sym__unary_left_fold] = STATE(7231), + [sym__unary_right_fold] = STATE(7233), + [sym__binary_fold] = STATE(7244), + [sym_fold_expression] = STATE(3565), + [sym_parameter_pack_expansion] = STATE(3565), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5232), + [sym_qualified_identifier] = STATE(3220), + [sym_qualified_type_identifier] = STATE(6847), + [sym_user_defined_literal] = STATE(3565), + [sym_identifier] = ACTIONS(2095), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1837), + [anon_sym_LPAREN2] = ACTIONS(1841), + [anon_sym_BANG] = ACTIONS(1843), + [anon_sym_TILDE] = ACTIONS(1843), + [anon_sym_DASH] = ACTIONS(1845), + [anon_sym_PLUS] = ACTIONS(1845), + [anon_sym_STAR] = ACTIONS(1847), + [anon_sym_AMP] = ACTIONS(1847), + [anon_sym_COLON_COLON] = ACTIONS(1849), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1999), + [anon_sym_not] = ACTIONS(1845), + [anon_sym_compl] = ACTIONS(1845), + [anon_sym_DASH_DASH] = ACTIONS(1861), + [anon_sym_PLUS_PLUS] = ACTIONS(1861), + [anon_sym_sizeof] = ACTIONS(1863), + [anon_sym_offsetof] = ACTIONS(1865), + [anon_sym__Generic] = ACTIONS(1867), + [anon_sym_asm] = ACTIONS(1869), + [anon_sym___asm__] = ACTIONS(1869), + [sym_number_literal] = ACTIONS(1871), + [anon_sym_L_SQUOTE] = ACTIONS(1873), + [anon_sym_u_SQUOTE] = ACTIONS(1873), + [anon_sym_U_SQUOTE] = ACTIONS(1873), + [anon_sym_u8_SQUOTE] = ACTIONS(1873), + [anon_sym_SQUOTE] = ACTIONS(1873), + [anon_sym_L_DQUOTE] = ACTIONS(1875), + [anon_sym_u_DQUOTE] = ACTIONS(1875), + [anon_sym_U_DQUOTE] = ACTIONS(1875), + [anon_sym_u8_DQUOTE] = ACTIONS(1875), + [anon_sym_DQUOTE] = ACTIONS(1875), + [sym_true] = ACTIONS(1877), + [sym_false] = ACTIONS(1877), + [anon_sym_NULL] = ACTIONS(1879), + [anon_sym_nullptr] = ACTIONS(1879), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(1883), + [anon_sym_R_DQUOTE] = ACTIONS(1885), + [anon_sym_LR_DQUOTE] = ACTIONS(1885), + [anon_sym_uR_DQUOTE] = ACTIONS(1885), + [anon_sym_UR_DQUOTE] = ACTIONS(1885), + [anon_sym_u8R_DQUOTE] = ACTIONS(1885), + [anon_sym_co_await] = ACTIONS(1887), + [anon_sym_new] = ACTIONS(1889), + [anon_sym_requires] = ACTIONS(1891), + [sym_this] = ACTIONS(1877), }, [1591] = { - [sym__expression] = STATE(3605), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2984), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2984), - [sym_call_expression] = STATE(2984), - [sym_field_expression] = STATE(2984), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2984), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2984), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(3047), - [anon_sym_LPAREN2] = ACTIONS(3049), - [anon_sym_BANG] = ACTIONS(3053), - [anon_sym_TILDE] = ACTIONS(3053), - [anon_sym_DASH] = ACTIONS(3051), - [anon_sym_PLUS] = ACTIONS(3051), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(3055), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(3051), - [anon_sym_compl] = ACTIONS(3051), - [anon_sym_DASH_DASH] = ACTIONS(3057), - [anon_sym_PLUS_PLUS] = ACTIONS(3057), - [anon_sym_sizeof] = ACTIONS(3059), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(3061), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(3063), - [anon_sym_new] = ACTIONS(3065), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [sym__expression] = STATE(4195), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(6962), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_initializer_list] = STATE(6962), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(4028), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(1899), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1592] = { - [sym__expression] = STATE(3619), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2984), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2984), - [sym_call_expression] = STATE(2984), - [sym_field_expression] = STATE(2984), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2984), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2984), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(3047), - [anon_sym_LPAREN2] = ACTIONS(3049), - [anon_sym_BANG] = ACTIONS(3053), - [anon_sym_TILDE] = ACTIONS(3053), - [anon_sym_DASH] = ACTIONS(3051), - [anon_sym_PLUS] = ACTIONS(3051), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(3055), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(3051), - [anon_sym_compl] = ACTIONS(3051), - [anon_sym_DASH_DASH] = ACTIONS(3057), - [anon_sym_PLUS_PLUS] = ACTIONS(3057), - [anon_sym_sizeof] = ACTIONS(3059), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(3061), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(3063), - [anon_sym_new] = ACTIONS(3065), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [sym__expression] = STATE(4228), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7323), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_initializer_list] = STATE(7323), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(4030), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(1899), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1593] = { - [sym__expression] = STATE(3604), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2984), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2984), - [sym_call_expression] = STATE(2984), - [sym_field_expression] = STATE(2984), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2984), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2984), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(3047), - [anon_sym_LPAREN2] = ACTIONS(3049), - [anon_sym_BANG] = ACTIONS(3053), - [anon_sym_TILDE] = ACTIONS(3053), - [anon_sym_DASH] = ACTIONS(3051), - [anon_sym_PLUS] = ACTIONS(3051), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(3055), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(3051), - [anon_sym_compl] = ACTIONS(3051), - [anon_sym_DASH_DASH] = ACTIONS(3057), - [anon_sym_PLUS_PLUS] = ACTIONS(3057), - [anon_sym_sizeof] = ACTIONS(3059), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(3061), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(3063), - [anon_sym_new] = ACTIONS(3065), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), - }, - [1594] = { - [sym__expression] = STATE(2868), - [sym_conditional_expression] = STATE(2940), - [sym_assignment_expression] = STATE(2940), - [sym_pointer_expression] = STATE(2933), - [sym_unary_expression] = STATE(2940), - [sym_binary_expression] = STATE(2940), - [sym_update_expression] = STATE(2940), - [sym_cast_expression] = STATE(2940), - [sym_sizeof_expression] = STATE(2940), - [sym_subscript_expression] = STATE(2933), - [sym_call_expression] = STATE(2933), - [sym_field_expression] = STATE(2933), - [sym_compound_literal_expression] = STATE(2940), - [sym_parenthesized_expression] = STATE(2933), - [sym_char_literal] = STATE(2845), - [sym_concatenated_string] = STATE(2845), - [sym_string_literal] = STATE(1861), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5801), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(2940), - [sym_raw_string_literal] = STATE(1861), - [sym_co_await_expression] = STATE(2940), - [sym_new_expression] = STATE(2940), - [sym_delete_expression] = STATE(2940), - [sym_requires_clause] = STATE(2940), - [sym_requires_expression] = STATE(2940), - [sym_lambda_expression] = STATE(2940), - [sym_lambda_capture_specifier] = STATE(4464), - [sym_fold_expression] = STATE(2940), - [sym_parameter_pack_expansion] = STATE(2940), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4570), - [sym_qualified_identifier] = STATE(2933), - [sym_qualified_type_identifier] = STATE(5801), - [sym_user_defined_literal] = STATE(2940), - [sym_identifier] = ACTIONS(1605), - [anon_sym_LPAREN2] = ACTIONS(1607), - [anon_sym_BANG] = ACTIONS(1611), - [anon_sym_TILDE] = ACTIONS(1611), - [anon_sym_DASH] = ACTIONS(1609), - [anon_sym_PLUS] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(2416), - [anon_sym_AMP] = ACTIONS(2416), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1619), - [anon_sym_not] = ACTIONS(1609), - [anon_sym_compl] = ACTIONS(1609), - [anon_sym_DASH_DASH] = ACTIONS(1621), - [anon_sym_PLUS_PLUS] = ACTIONS(1621), - [anon_sym_sizeof] = ACTIONS(1623), - [sym_number_literal] = ACTIONS(1625), - [anon_sym_L_SQUOTE] = ACTIONS(1627), - [anon_sym_u_SQUOTE] = ACTIONS(1627), - [anon_sym_U_SQUOTE] = ACTIONS(1627), - [anon_sym_u8_SQUOTE] = ACTIONS(1627), - [anon_sym_SQUOTE] = ACTIONS(1627), - [anon_sym_L_DQUOTE] = ACTIONS(1629), - [anon_sym_u_DQUOTE] = ACTIONS(1629), - [anon_sym_U_DQUOTE] = ACTIONS(1629), - [anon_sym_u8_DQUOTE] = ACTIONS(1629), - [anon_sym_DQUOTE] = ACTIONS(1629), - [sym_true] = ACTIONS(1631), - [sym_false] = ACTIONS(1631), - [sym_null] = ACTIONS(1631), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1633), - [anon_sym_R_DQUOTE] = ACTIONS(1635), - [anon_sym_LR_DQUOTE] = ACTIONS(1635), - [anon_sym_uR_DQUOTE] = ACTIONS(1635), - [anon_sym_UR_DQUOTE] = ACTIONS(1635), - [anon_sym_u8R_DQUOTE] = ACTIONS(1635), - [anon_sym_co_await] = ACTIONS(1637), - [anon_sym_new] = ACTIONS(1639), - [anon_sym_requires] = ACTIONS(1641), - [sym_this] = ACTIONS(1631), - [sym_nullptr] = ACTIONS(1631), - }, - [1595] = { - [sym__expression] = STATE(2668), - [sym_conditional_expression] = STATE(2786), - [sym_assignment_expression] = STATE(2786), - [sym_pointer_expression] = STATE(2784), - [sym_unary_expression] = STATE(2786), - [sym_binary_expression] = STATE(2786), - [sym_update_expression] = STATE(2786), - [sym_cast_expression] = STATE(2786), - [sym_sizeof_expression] = STATE(2786), - [sym_subscript_expression] = STATE(2784), - [sym_call_expression] = STATE(2784), - [sym_field_expression] = STATE(2784), - [sym_compound_literal_expression] = STATE(2786), - [sym_parenthesized_expression] = STATE(2784), - [sym_char_literal] = STATE(2651), - [sym_concatenated_string] = STATE(2651), - [sym_string_literal] = STATE(1840), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5891), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(2786), - [sym_raw_string_literal] = STATE(1840), - [sym_co_await_expression] = STATE(2786), - [sym_new_expression] = STATE(2786), - [sym_delete_expression] = STATE(2786), - [sym_requires_clause] = STATE(2786), - [sym_requires_expression] = STATE(2786), - [sym_lambda_expression] = STATE(2786), - [sym_lambda_capture_specifier] = STATE(4484), - [sym_fold_expression] = STATE(2786), - [sym_parameter_pack_expansion] = STATE(2786), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4584), - [sym_qualified_identifier] = STATE(2784), - [sym_qualified_type_identifier] = STATE(5891), - [sym_user_defined_literal] = STATE(2786), - [sym_identifier] = ACTIONS(1567), - [anon_sym_LPAREN2] = ACTIONS(1569), - [anon_sym_BANG] = ACTIONS(1573), - [anon_sym_TILDE] = ACTIONS(1573), - [anon_sym_DASH] = ACTIONS(1571), - [anon_sym_PLUS] = ACTIONS(1571), - [anon_sym_STAR] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(1445), - [anon_sym_COLON_COLON] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1581), - [anon_sym_not] = ACTIONS(1571), - [anon_sym_compl] = ACTIONS(1571), - [anon_sym_DASH_DASH] = ACTIONS(1583), - [anon_sym_PLUS_PLUS] = ACTIONS(1583), - [anon_sym_sizeof] = ACTIONS(1585), - [sym_number_literal] = ACTIONS(1587), - [anon_sym_L_SQUOTE] = ACTIONS(1589), - [anon_sym_u_SQUOTE] = ACTIONS(1589), - [anon_sym_U_SQUOTE] = ACTIONS(1589), - [anon_sym_u8_SQUOTE] = ACTIONS(1589), - [anon_sym_SQUOTE] = ACTIONS(1589), - [anon_sym_L_DQUOTE] = ACTIONS(1591), - [anon_sym_u_DQUOTE] = ACTIONS(1591), - [anon_sym_U_DQUOTE] = ACTIONS(1591), - [anon_sym_u8_DQUOTE] = ACTIONS(1591), - [anon_sym_DQUOTE] = ACTIONS(1591), - [sym_true] = ACTIONS(1593), - [sym_false] = ACTIONS(1593), - [sym_null] = ACTIONS(1593), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1595), - [anon_sym_R_DQUOTE] = ACTIONS(1597), - [anon_sym_LR_DQUOTE] = ACTIONS(1597), - [anon_sym_uR_DQUOTE] = ACTIONS(1597), - [anon_sym_UR_DQUOTE] = ACTIONS(1597), - [anon_sym_u8R_DQUOTE] = ACTIONS(1597), - [anon_sym_co_await] = ACTIONS(1599), - [anon_sym_new] = ACTIONS(1601), - [anon_sym_requires] = ACTIONS(1603), - [sym_this] = ACTIONS(1593), - [sym_nullptr] = ACTIONS(1593), - }, - [1596] = { - [sym__expression] = STATE(3377), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2954), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym__expression] = STATE(4233), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7283), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_initializer_list] = STATE(7283), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(4032), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(1899), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), + }, + [1594] = { + [sym__expression] = STATE(3210), + [sym__expression_not_binary] = STATE(3565), + [sym_conditional_expression] = STATE(3565), + [sym_assignment_expression] = STATE(3565), + [sym_pointer_expression] = STATE(3220), + [sym_unary_expression] = STATE(3565), + [sym_binary_expression] = STATE(3565), + [sym_update_expression] = STATE(3565), + [sym_cast_expression] = STATE(3565), + [sym_sizeof_expression] = STATE(3565), + [sym_offsetof_expression] = STATE(3565), + [sym_generic_expression] = STATE(3565), + [sym_subscript_expression] = STATE(3220), + [sym_call_expression] = STATE(3220), + [sym_gnu_asm_expression] = STATE(3565), + [sym_field_expression] = STATE(3220), + [sym_compound_literal_expression] = STATE(3565), + [sym_parenthesized_expression] = STATE(3220), + [sym_char_literal] = STATE(3429), + [sym_concatenated_string] = STATE(3429), + [sym_string_literal] = STATE(2248), + [sym_null] = STATE(3565), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6847), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3565), + [sym_raw_string_literal] = STATE(2248), + [sym_co_await_expression] = STATE(3565), + [sym_new_expression] = STATE(3565), + [sym_delete_expression] = STATE(3565), + [sym_requires_clause] = STATE(3565), + [sym_requires_expression] = STATE(3565), + [sym_lambda_expression] = STATE(3565), + [sym_lambda_capture_specifier] = STATE(5204), + [sym__unary_left_fold] = STATE(6969), + [sym__unary_right_fold] = STATE(6968), + [sym__binary_fold] = STATE(6966), + [sym_fold_expression] = STATE(3565), + [sym_parameter_pack_expansion] = STATE(3565), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5232), + [sym_qualified_identifier] = STATE(3220), + [sym_qualified_type_identifier] = STATE(6847), + [sym_user_defined_literal] = STATE(3565), + [sym_identifier] = ACTIONS(2095), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1837), + [anon_sym_LPAREN2] = ACTIONS(1841), + [anon_sym_BANG] = ACTIONS(1843), + [anon_sym_TILDE] = ACTIONS(1843), + [anon_sym_DASH] = ACTIONS(1845), + [anon_sym_PLUS] = ACTIONS(1845), + [anon_sym_STAR] = ACTIONS(1847), + [anon_sym_AMP] = ACTIONS(1847), + [anon_sym_COLON_COLON] = ACTIONS(1849), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1999), + [anon_sym_not] = ACTIONS(1845), + [anon_sym_compl] = ACTIONS(1845), + [anon_sym_DASH_DASH] = ACTIONS(1861), + [anon_sym_PLUS_PLUS] = ACTIONS(1861), + [anon_sym_sizeof] = ACTIONS(1863), + [anon_sym_offsetof] = ACTIONS(1865), + [anon_sym__Generic] = ACTIONS(1867), + [anon_sym_asm] = ACTIONS(1869), + [anon_sym___asm__] = ACTIONS(1869), + [sym_number_literal] = ACTIONS(1871), + [anon_sym_L_SQUOTE] = ACTIONS(1873), + [anon_sym_u_SQUOTE] = ACTIONS(1873), + [anon_sym_U_SQUOTE] = ACTIONS(1873), + [anon_sym_u8_SQUOTE] = ACTIONS(1873), + [anon_sym_SQUOTE] = ACTIONS(1873), + [anon_sym_L_DQUOTE] = ACTIONS(1875), + [anon_sym_u_DQUOTE] = ACTIONS(1875), + [anon_sym_U_DQUOTE] = ACTIONS(1875), + [anon_sym_u8_DQUOTE] = ACTIONS(1875), + [anon_sym_DQUOTE] = ACTIONS(1875), + [sym_true] = ACTIONS(1877), + [sym_false] = ACTIONS(1877), + [anon_sym_NULL] = ACTIONS(1879), + [anon_sym_nullptr] = ACTIONS(1879), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(1883), + [anon_sym_R_DQUOTE] = ACTIONS(1885), + [anon_sym_LR_DQUOTE] = ACTIONS(1885), + [anon_sym_uR_DQUOTE] = ACTIONS(1885), + [anon_sym_UR_DQUOTE] = ACTIONS(1885), + [anon_sym_u8R_DQUOTE] = ACTIONS(1885), + [anon_sym_co_await] = ACTIONS(1887), + [anon_sym_new] = ACTIONS(1889), + [anon_sym_requires] = ACTIONS(1891), + [sym_this] = ACTIONS(1877), + }, + [1595] = { + [sym__expression] = STATE(3306), + [sym__expression_not_binary] = STATE(3565), + [sym_conditional_expression] = STATE(3565), + [sym_assignment_expression] = STATE(3565), + [sym_pointer_expression] = STATE(3220), + [sym_unary_expression] = STATE(3565), + [sym_binary_expression] = STATE(3565), + [sym_update_expression] = STATE(3565), + [sym_cast_expression] = STATE(3565), + [sym_sizeof_expression] = STATE(3565), + [sym_offsetof_expression] = STATE(3565), + [sym_generic_expression] = STATE(3565), + [sym_subscript_expression] = STATE(3220), + [sym_call_expression] = STATE(3220), + [sym_gnu_asm_expression] = STATE(3565), + [sym_field_expression] = STATE(3220), + [sym_compound_literal_expression] = STATE(3565), + [sym_parenthesized_expression] = STATE(3220), + [sym_char_literal] = STATE(3429), + [sym_concatenated_string] = STATE(3429), + [sym_string_literal] = STATE(2248), + [sym_null] = STATE(3565), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6847), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3565), + [sym_raw_string_literal] = STATE(2248), + [sym_co_await_expression] = STATE(3565), + [sym_new_expression] = STATE(3565), + [sym_delete_expression] = STATE(3565), + [sym_requires_clause] = STATE(3565), + [sym_requires_expression] = STATE(3565), + [sym_lambda_expression] = STATE(3565), + [sym_lambda_capture_specifier] = STATE(5204), + [sym__unary_left_fold] = STATE(7128), + [sym__unary_right_fold] = STATE(7124), + [sym__binary_fold] = STATE(7047), + [sym_fold_expression] = STATE(3565), + [sym_parameter_pack_expansion] = STATE(3565), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5232), + [sym_qualified_identifier] = STATE(3220), + [sym_qualified_type_identifier] = STATE(6847), + [sym_user_defined_literal] = STATE(3565), + [sym_identifier] = ACTIONS(2095), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1837), + [anon_sym_LPAREN2] = ACTIONS(1841), + [anon_sym_BANG] = ACTIONS(1843), + [anon_sym_TILDE] = ACTIONS(1843), + [anon_sym_DASH] = ACTIONS(1845), + [anon_sym_PLUS] = ACTIONS(1845), + [anon_sym_STAR] = ACTIONS(1847), + [anon_sym_AMP] = ACTIONS(1847), + [anon_sym_COLON_COLON] = ACTIONS(1849), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1999), + [anon_sym_not] = ACTIONS(1845), + [anon_sym_compl] = ACTIONS(1845), + [anon_sym_DASH_DASH] = ACTIONS(1861), + [anon_sym_PLUS_PLUS] = ACTIONS(1861), + [anon_sym_sizeof] = ACTIONS(1863), + [anon_sym_offsetof] = ACTIONS(1865), + [anon_sym__Generic] = ACTIONS(1867), + [anon_sym_asm] = ACTIONS(1869), + [anon_sym___asm__] = ACTIONS(1869), + [sym_number_literal] = ACTIONS(1871), + [anon_sym_L_SQUOTE] = ACTIONS(1873), + [anon_sym_u_SQUOTE] = ACTIONS(1873), + [anon_sym_U_SQUOTE] = ACTIONS(1873), + [anon_sym_u8_SQUOTE] = ACTIONS(1873), + [anon_sym_SQUOTE] = ACTIONS(1873), + [anon_sym_L_DQUOTE] = ACTIONS(1875), + [anon_sym_u_DQUOTE] = ACTIONS(1875), + [anon_sym_U_DQUOTE] = ACTIONS(1875), + [anon_sym_u8_DQUOTE] = ACTIONS(1875), + [anon_sym_DQUOTE] = ACTIONS(1875), + [sym_true] = ACTIONS(1877), + [sym_false] = ACTIONS(1877), + [anon_sym_NULL] = ACTIONS(1879), + [anon_sym_nullptr] = ACTIONS(1879), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(1883), + [anon_sym_R_DQUOTE] = ACTIONS(1885), + [anon_sym_LR_DQUOTE] = ACTIONS(1885), + [anon_sym_uR_DQUOTE] = ACTIONS(1885), + [anon_sym_UR_DQUOTE] = ACTIONS(1885), + [anon_sym_u8R_DQUOTE] = ACTIONS(1885), + [anon_sym_co_await] = ACTIONS(1887), + [anon_sym_new] = ACTIONS(1889), + [anon_sym_requires] = ACTIONS(1891), + [sym_this] = ACTIONS(1877), + }, + [1596] = { + [sym__expression] = STATE(3231), + [sym__expression_not_binary] = STATE(3565), + [sym_conditional_expression] = STATE(3565), + [sym_assignment_expression] = STATE(3565), + [sym_pointer_expression] = STATE(3220), + [sym_unary_expression] = STATE(3565), + [sym_binary_expression] = STATE(3565), + [sym_update_expression] = STATE(3565), + [sym_cast_expression] = STATE(3565), + [sym_sizeof_expression] = STATE(3565), + [sym_offsetof_expression] = STATE(3565), + [sym_generic_expression] = STATE(3565), + [sym_subscript_expression] = STATE(3220), + [sym_call_expression] = STATE(3220), + [sym_gnu_asm_expression] = STATE(3565), + [sym_field_expression] = STATE(3220), + [sym_compound_literal_expression] = STATE(3565), + [sym_parenthesized_expression] = STATE(3220), + [sym_char_literal] = STATE(3429), + [sym_concatenated_string] = STATE(3429), + [sym_string_literal] = STATE(2248), + [sym_null] = STATE(3565), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6847), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3565), + [sym_raw_string_literal] = STATE(2248), + [sym_co_await_expression] = STATE(3565), + [sym_new_expression] = STATE(3565), + [sym_delete_expression] = STATE(3565), + [sym_requires_clause] = STATE(3565), + [sym_requires_expression] = STATE(3565), + [sym_lambda_expression] = STATE(3565), + [sym_lambda_capture_specifier] = STATE(5204), + [sym__unary_left_fold] = STATE(7615), + [sym__unary_right_fold] = STATE(7614), + [sym__binary_fold] = STATE(7612), + [sym_fold_expression] = STATE(3565), + [sym_parameter_pack_expansion] = STATE(3565), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5232), + [sym_qualified_identifier] = STATE(3220), + [sym_qualified_type_identifier] = STATE(6847), + [sym_user_defined_literal] = STATE(3565), + [sym_identifier] = ACTIONS(2095), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1837), + [anon_sym_LPAREN2] = ACTIONS(1841), + [anon_sym_BANG] = ACTIONS(1843), + [anon_sym_TILDE] = ACTIONS(1843), + [anon_sym_DASH] = ACTIONS(1845), + [anon_sym_PLUS] = ACTIONS(1845), + [anon_sym_STAR] = ACTIONS(1847), + [anon_sym_AMP] = ACTIONS(1847), + [anon_sym_COLON_COLON] = ACTIONS(1849), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1999), + [anon_sym_not] = ACTIONS(1845), + [anon_sym_compl] = ACTIONS(1845), + [anon_sym_DASH_DASH] = ACTIONS(1861), + [anon_sym_PLUS_PLUS] = ACTIONS(1861), + [anon_sym_sizeof] = ACTIONS(1863), + [anon_sym_offsetof] = ACTIONS(1865), + [anon_sym__Generic] = ACTIONS(1867), + [anon_sym_asm] = ACTIONS(1869), + [anon_sym___asm__] = ACTIONS(1869), + [sym_number_literal] = ACTIONS(1871), + [anon_sym_L_SQUOTE] = ACTIONS(1873), + [anon_sym_u_SQUOTE] = ACTIONS(1873), + [anon_sym_U_SQUOTE] = ACTIONS(1873), + [anon_sym_u8_SQUOTE] = ACTIONS(1873), + [anon_sym_SQUOTE] = ACTIONS(1873), + [anon_sym_L_DQUOTE] = ACTIONS(1875), + [anon_sym_u_DQUOTE] = ACTIONS(1875), + [anon_sym_U_DQUOTE] = ACTIONS(1875), + [anon_sym_u8_DQUOTE] = ACTIONS(1875), + [anon_sym_DQUOTE] = ACTIONS(1875), + [sym_true] = ACTIONS(1877), + [sym_false] = ACTIONS(1877), + [anon_sym_NULL] = ACTIONS(1879), + [anon_sym_nullptr] = ACTIONS(1879), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(1883), + [anon_sym_R_DQUOTE] = ACTIONS(1885), + [anon_sym_LR_DQUOTE] = ACTIONS(1885), + [anon_sym_uR_DQUOTE] = ACTIONS(1885), + [anon_sym_UR_DQUOTE] = ACTIONS(1885), + [anon_sym_u8R_DQUOTE] = ACTIONS(1885), + [anon_sym_co_await] = ACTIONS(1887), + [anon_sym_new] = ACTIONS(1889), + [anon_sym_requires] = ACTIONS(1891), + [sym_this] = ACTIONS(1877), }, [1597] = { - [sym__expression] = STATE(3765), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(3036), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(3036), - [sym_call_expression] = STATE(3036), - [sym_field_expression] = STATE(3036), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(3036), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(3036), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(3073), - [anon_sym_LPAREN2] = ACTIONS(3075), - [anon_sym_BANG] = ACTIONS(3079), - [anon_sym_TILDE] = ACTIONS(3079), - [anon_sym_DASH] = ACTIONS(3077), - [anon_sym_PLUS] = ACTIONS(3077), - [anon_sym_STAR] = ACTIONS(3081), - [anon_sym_AMP] = ACTIONS(3081), - [anon_sym_COLON_COLON] = ACTIONS(3083), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(3077), - [anon_sym_compl] = ACTIONS(3077), - [anon_sym_DASH_DASH] = ACTIONS(3085), - [anon_sym_PLUS_PLUS] = ACTIONS(3085), - [anon_sym_sizeof] = ACTIONS(3087), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(3089), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(3091), - [anon_sym_new] = ACTIONS(3065), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [sym__expression] = STATE(3219), + [sym__expression_not_binary] = STATE(3565), + [sym_conditional_expression] = STATE(3565), + [sym_assignment_expression] = STATE(3565), + [sym_pointer_expression] = STATE(3220), + [sym_unary_expression] = STATE(3565), + [sym_binary_expression] = STATE(3565), + [sym_update_expression] = STATE(3565), + [sym_cast_expression] = STATE(3565), + [sym_sizeof_expression] = STATE(3565), + [sym_offsetof_expression] = STATE(3565), + [sym_generic_expression] = STATE(3565), + [sym_subscript_expression] = STATE(3220), + [sym_call_expression] = STATE(3220), + [sym_gnu_asm_expression] = STATE(3565), + [sym_field_expression] = STATE(3220), + [sym_compound_literal_expression] = STATE(3565), + [sym_parenthesized_expression] = STATE(3220), + [sym_char_literal] = STATE(3429), + [sym_concatenated_string] = STATE(3429), + [sym_string_literal] = STATE(2248), + [sym_null] = STATE(3565), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6847), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3565), + [sym_raw_string_literal] = STATE(2248), + [sym_co_await_expression] = STATE(3565), + [sym_new_expression] = STATE(3565), + [sym_delete_expression] = STATE(3565), + [sym_requires_clause] = STATE(3565), + [sym_requires_expression] = STATE(3565), + [sym_lambda_expression] = STATE(3565), + [sym_lambda_capture_specifier] = STATE(5204), + [sym__unary_left_fold] = STATE(7330), + [sym__unary_right_fold] = STATE(7334), + [sym__binary_fold] = STATE(7212), + [sym_fold_expression] = STATE(3565), + [sym_parameter_pack_expansion] = STATE(3565), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5232), + [sym_qualified_identifier] = STATE(3220), + [sym_qualified_type_identifier] = STATE(6847), + [sym_user_defined_literal] = STATE(3565), + [sym_identifier] = ACTIONS(2095), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1837), + [anon_sym_LPAREN2] = ACTIONS(1841), + [anon_sym_BANG] = ACTIONS(1843), + [anon_sym_TILDE] = ACTIONS(1843), + [anon_sym_DASH] = ACTIONS(1845), + [anon_sym_PLUS] = ACTIONS(1845), + [anon_sym_STAR] = ACTIONS(1847), + [anon_sym_AMP] = ACTIONS(1847), + [anon_sym_COLON_COLON] = ACTIONS(1849), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1999), + [anon_sym_not] = ACTIONS(1845), + [anon_sym_compl] = ACTIONS(1845), + [anon_sym_DASH_DASH] = ACTIONS(1861), + [anon_sym_PLUS_PLUS] = ACTIONS(1861), + [anon_sym_sizeof] = ACTIONS(1863), + [anon_sym_offsetof] = ACTIONS(1865), + [anon_sym__Generic] = ACTIONS(1867), + [anon_sym_asm] = ACTIONS(1869), + [anon_sym___asm__] = ACTIONS(1869), + [sym_number_literal] = ACTIONS(1871), + [anon_sym_L_SQUOTE] = ACTIONS(1873), + [anon_sym_u_SQUOTE] = ACTIONS(1873), + [anon_sym_U_SQUOTE] = ACTIONS(1873), + [anon_sym_u8_SQUOTE] = ACTIONS(1873), + [anon_sym_SQUOTE] = ACTIONS(1873), + [anon_sym_L_DQUOTE] = ACTIONS(1875), + [anon_sym_u_DQUOTE] = ACTIONS(1875), + [anon_sym_U_DQUOTE] = ACTIONS(1875), + [anon_sym_u8_DQUOTE] = ACTIONS(1875), + [anon_sym_DQUOTE] = ACTIONS(1875), + [sym_true] = ACTIONS(1877), + [sym_false] = ACTIONS(1877), + [anon_sym_NULL] = ACTIONS(1879), + [anon_sym_nullptr] = ACTIONS(1879), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(1883), + [anon_sym_R_DQUOTE] = ACTIONS(1885), + [anon_sym_LR_DQUOTE] = ACTIONS(1885), + [anon_sym_uR_DQUOTE] = ACTIONS(1885), + [anon_sym_UR_DQUOTE] = ACTIONS(1885), + [anon_sym_u8R_DQUOTE] = ACTIONS(1885), + [anon_sym_co_await] = ACTIONS(1887), + [anon_sym_new] = ACTIONS(1889), + [anon_sym_requires] = ACTIONS(1891), + [sym_this] = ACTIONS(1877), }, [1598] = { - [sym__expression] = STATE(3623), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2954), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym__expression] = STATE(4272), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7072), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_initializer_list] = STATE(7072), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(4034), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(1899), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1599] = { - [sym__expression] = STATE(3599), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2984), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2984), - [sym_call_expression] = STATE(2984), - [sym_field_expression] = STATE(2984), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2984), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2984), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(3047), - [anon_sym_LPAREN2] = ACTIONS(3049), - [anon_sym_BANG] = ACTIONS(3053), - [anon_sym_TILDE] = ACTIONS(3053), - [anon_sym_DASH] = ACTIONS(3051), - [anon_sym_PLUS] = ACTIONS(3051), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(3055), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(3051), - [anon_sym_compl] = ACTIONS(3051), - [anon_sym_DASH_DASH] = ACTIONS(3057), - [anon_sym_PLUS_PLUS] = ACTIONS(3057), - [anon_sym_sizeof] = ACTIONS(3059), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(3061), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(3063), - [anon_sym_new] = ACTIONS(3065), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [sym__expression] = STATE(3229), + [sym__expression_not_binary] = STATE(3565), + [sym_conditional_expression] = STATE(3565), + [sym_assignment_expression] = STATE(3565), + [sym_pointer_expression] = STATE(3220), + [sym_unary_expression] = STATE(3565), + [sym_binary_expression] = STATE(3565), + [sym_update_expression] = STATE(3565), + [sym_cast_expression] = STATE(3565), + [sym_sizeof_expression] = STATE(3565), + [sym_offsetof_expression] = STATE(3565), + [sym_generic_expression] = STATE(3565), + [sym_subscript_expression] = STATE(3220), + [sym_call_expression] = STATE(3220), + [sym_gnu_asm_expression] = STATE(3565), + [sym_field_expression] = STATE(3220), + [sym_compound_literal_expression] = STATE(3565), + [sym_parenthesized_expression] = STATE(3220), + [sym_char_literal] = STATE(3429), + [sym_concatenated_string] = STATE(3429), + [sym_string_literal] = STATE(2248), + [sym_null] = STATE(3565), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6847), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3565), + [sym_raw_string_literal] = STATE(2248), + [sym_co_await_expression] = STATE(3565), + [sym_new_expression] = STATE(3565), + [sym_delete_expression] = STATE(3565), + [sym_requires_clause] = STATE(3565), + [sym_requires_expression] = STATE(3565), + [sym_lambda_expression] = STATE(3565), + [sym_lambda_capture_specifier] = STATE(5204), + [sym__unary_left_fold] = STATE(7640), + [sym__unary_right_fold] = STATE(7639), + [sym__binary_fold] = STATE(7637), + [sym_fold_expression] = STATE(3565), + [sym_parameter_pack_expansion] = STATE(3565), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5232), + [sym_qualified_identifier] = STATE(3220), + [sym_qualified_type_identifier] = STATE(6847), + [sym_user_defined_literal] = STATE(3565), + [sym_identifier] = ACTIONS(2095), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1837), + [anon_sym_LPAREN2] = ACTIONS(1841), + [anon_sym_BANG] = ACTIONS(1843), + [anon_sym_TILDE] = ACTIONS(1843), + [anon_sym_DASH] = ACTIONS(1845), + [anon_sym_PLUS] = ACTIONS(1845), + [anon_sym_STAR] = ACTIONS(1847), + [anon_sym_AMP] = ACTIONS(1847), + [anon_sym_COLON_COLON] = ACTIONS(1849), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1999), + [anon_sym_not] = ACTIONS(1845), + [anon_sym_compl] = ACTIONS(1845), + [anon_sym_DASH_DASH] = ACTIONS(1861), + [anon_sym_PLUS_PLUS] = ACTIONS(1861), + [anon_sym_sizeof] = ACTIONS(1863), + [anon_sym_offsetof] = ACTIONS(1865), + [anon_sym__Generic] = ACTIONS(1867), + [anon_sym_asm] = ACTIONS(1869), + [anon_sym___asm__] = ACTIONS(1869), + [sym_number_literal] = ACTIONS(1871), + [anon_sym_L_SQUOTE] = ACTIONS(1873), + [anon_sym_u_SQUOTE] = ACTIONS(1873), + [anon_sym_U_SQUOTE] = ACTIONS(1873), + [anon_sym_u8_SQUOTE] = ACTIONS(1873), + [anon_sym_SQUOTE] = ACTIONS(1873), + [anon_sym_L_DQUOTE] = ACTIONS(1875), + [anon_sym_u_DQUOTE] = ACTIONS(1875), + [anon_sym_U_DQUOTE] = ACTIONS(1875), + [anon_sym_u8_DQUOTE] = ACTIONS(1875), + [anon_sym_DQUOTE] = ACTIONS(1875), + [sym_true] = ACTIONS(1877), + [sym_false] = ACTIONS(1877), + [anon_sym_NULL] = ACTIONS(1879), + [anon_sym_nullptr] = ACTIONS(1879), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(1883), + [anon_sym_R_DQUOTE] = ACTIONS(1885), + [anon_sym_LR_DQUOTE] = ACTIONS(1885), + [anon_sym_uR_DQUOTE] = ACTIONS(1885), + [anon_sym_UR_DQUOTE] = ACTIONS(1885), + [anon_sym_u8R_DQUOTE] = ACTIONS(1885), + [anon_sym_co_await] = ACTIONS(1887), + [anon_sym_new] = ACTIONS(1889), + [anon_sym_requires] = ACTIONS(1891), + [sym_this] = ACTIONS(1877), }, [1600] = { - [sym__expression] = STATE(2628), - [sym_conditional_expression] = STATE(2786), - [sym_assignment_expression] = STATE(2786), - [sym_pointer_expression] = STATE(2784), - [sym_unary_expression] = STATE(2786), - [sym_binary_expression] = STATE(2786), - [sym_update_expression] = STATE(2786), - [sym_cast_expression] = STATE(2786), - [sym_sizeof_expression] = STATE(2786), - [sym_subscript_expression] = STATE(2784), - [sym_call_expression] = STATE(2784), - [sym_field_expression] = STATE(2784), - [sym_compound_literal_expression] = STATE(2786), - [sym_parenthesized_expression] = STATE(2784), - [sym_char_literal] = STATE(2651), - [sym_concatenated_string] = STATE(2651), - [sym_string_literal] = STATE(1840), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5891), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(2786), - [sym_raw_string_literal] = STATE(1840), - [sym_co_await_expression] = STATE(2786), - [sym_new_expression] = STATE(2786), - [sym_delete_expression] = STATE(2786), - [sym_requires_clause] = STATE(2786), - [sym_requires_expression] = STATE(2786), - [sym_lambda_expression] = STATE(2786), - [sym_lambda_capture_specifier] = STATE(4484), - [sym_fold_expression] = STATE(2786), - [sym_parameter_pack_expansion] = STATE(2786), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4584), - [sym_qualified_identifier] = STATE(2784), - [sym_qualified_type_identifier] = STATE(5891), - [sym_user_defined_literal] = STATE(2786), - [sym_identifier] = ACTIONS(1567), - [anon_sym_LPAREN2] = ACTIONS(1569), - [anon_sym_BANG] = ACTIONS(1573), - [anon_sym_TILDE] = ACTIONS(1573), - [anon_sym_DASH] = ACTIONS(1571), - [anon_sym_PLUS] = ACTIONS(1571), - [anon_sym_STAR] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(1445), - [anon_sym_COLON_COLON] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(3753), - [sym_primitive_type] = ACTIONS(1581), - [anon_sym_not] = ACTIONS(1571), - [anon_sym_compl] = ACTIONS(1571), - [anon_sym_DASH_DASH] = ACTIONS(1583), - [anon_sym_PLUS_PLUS] = ACTIONS(1583), - [anon_sym_sizeof] = ACTIONS(1585), - [sym_number_literal] = ACTIONS(1587), - [anon_sym_L_SQUOTE] = ACTIONS(1589), - [anon_sym_u_SQUOTE] = ACTIONS(1589), - [anon_sym_U_SQUOTE] = ACTIONS(1589), - [anon_sym_u8_SQUOTE] = ACTIONS(1589), - [anon_sym_SQUOTE] = ACTIONS(1589), - [anon_sym_L_DQUOTE] = ACTIONS(1591), - [anon_sym_u_DQUOTE] = ACTIONS(1591), - [anon_sym_U_DQUOTE] = ACTIONS(1591), - [anon_sym_u8_DQUOTE] = ACTIONS(1591), - [anon_sym_DQUOTE] = ACTIONS(1591), - [sym_true] = ACTIONS(1593), - [sym_false] = ACTIONS(1593), - [sym_null] = ACTIONS(1593), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1595), - [anon_sym_R_DQUOTE] = ACTIONS(1597), - [anon_sym_LR_DQUOTE] = ACTIONS(1597), - [anon_sym_uR_DQUOTE] = ACTIONS(1597), - [anon_sym_UR_DQUOTE] = ACTIONS(1597), - [anon_sym_u8R_DQUOTE] = ACTIONS(1597), - [anon_sym_co_await] = ACTIONS(1599), - [anon_sym_new] = ACTIONS(1601), - [anon_sym_requires] = ACTIONS(1603), - [sym_this] = ACTIONS(1593), - [sym_nullptr] = ACTIONS(1593), + [sym__expression] = STATE(4189), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7572), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_initializer_list] = STATE(7572), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(4036), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(1899), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1601] = { - [sym__expression] = STATE(3788), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2954), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym__expression] = STATE(4070), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_initializer_list] = STATE(6257), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_RPAREN] = ACTIONS(4038), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(1899), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1602] = { - [sym__expression] = STATE(2676), - [sym_conditional_expression] = STATE(2786), - [sym_assignment_expression] = STATE(2786), - [sym_pointer_expression] = STATE(2784), - [sym_unary_expression] = STATE(2786), - [sym_binary_expression] = STATE(2786), - [sym_update_expression] = STATE(2786), - [sym_cast_expression] = STATE(2786), - [sym_sizeof_expression] = STATE(2786), - [sym_subscript_expression] = STATE(2784), - [sym_call_expression] = STATE(2784), - [sym_field_expression] = STATE(2784), - [sym_compound_literal_expression] = STATE(2786), - [sym_parenthesized_expression] = STATE(2784), - [sym_char_literal] = STATE(2651), - [sym_concatenated_string] = STATE(2651), - [sym_string_literal] = STATE(1840), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5891), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(2786), - [sym_raw_string_literal] = STATE(1840), - [sym_co_await_expression] = STATE(2786), - [sym_new_expression] = STATE(2786), - [sym_delete_expression] = STATE(2786), - [sym_requires_clause] = STATE(2786), - [sym_requires_expression] = STATE(2786), - [sym_lambda_expression] = STATE(2786), - [sym_lambda_capture_specifier] = STATE(4484), - [sym_fold_expression] = STATE(2786), - [sym_parameter_pack_expansion] = STATE(2786), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4584), - [sym_qualified_identifier] = STATE(2784), - [sym_qualified_type_identifier] = STATE(5891), - [sym_user_defined_literal] = STATE(2786), - [sym_identifier] = ACTIONS(1567), - [anon_sym_LPAREN2] = ACTIONS(1569), - [anon_sym_BANG] = ACTIONS(1573), - [anon_sym_TILDE] = ACTIONS(1573), - [anon_sym_DASH] = ACTIONS(1571), - [anon_sym_PLUS] = ACTIONS(1571), - [anon_sym_STAR] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(1445), - [anon_sym_COLON_COLON] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1581), - [anon_sym_not] = ACTIONS(1571), - [anon_sym_compl] = ACTIONS(1571), - [anon_sym_DASH_DASH] = ACTIONS(1583), - [anon_sym_PLUS_PLUS] = ACTIONS(1583), - [anon_sym_sizeof] = ACTIONS(1585), - [sym_number_literal] = ACTIONS(1587), - [anon_sym_L_SQUOTE] = ACTIONS(1589), - [anon_sym_u_SQUOTE] = ACTIONS(1589), - [anon_sym_U_SQUOTE] = ACTIONS(1589), - [anon_sym_u8_SQUOTE] = ACTIONS(1589), - [anon_sym_SQUOTE] = ACTIONS(1589), - [anon_sym_L_DQUOTE] = ACTIONS(1591), - [anon_sym_u_DQUOTE] = ACTIONS(1591), - [anon_sym_U_DQUOTE] = ACTIONS(1591), - [anon_sym_u8_DQUOTE] = ACTIONS(1591), - [anon_sym_DQUOTE] = ACTIONS(1591), - [sym_true] = ACTIONS(1593), - [sym_false] = ACTIONS(1593), - [sym_null] = ACTIONS(1593), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1595), - [anon_sym_R_DQUOTE] = ACTIONS(1597), - [anon_sym_LR_DQUOTE] = ACTIONS(1597), - [anon_sym_uR_DQUOTE] = ACTIONS(1597), - [anon_sym_UR_DQUOTE] = ACTIONS(1597), - [anon_sym_u8R_DQUOTE] = ACTIONS(1597), - [anon_sym_co_await] = ACTIONS(1599), - [anon_sym_new] = ACTIONS(1601), - [anon_sym_requires] = ACTIONS(1603), - [sym_this] = ACTIONS(1593), - [sym_nullptr] = ACTIONS(1593), + [sym__expression] = STATE(4068), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3509), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3509), + [sym_call_expression] = STATE(3509), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3509), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3509), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_lambda_default_capture] = STATE(6648), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3509), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3613), + [anon_sym_LPAREN2] = ACTIONS(3615), + [anon_sym_BANG] = ACTIONS(3619), + [anon_sym_TILDE] = ACTIONS(3619), + [anon_sym_DASH] = ACTIONS(3617), + [anon_sym_PLUS] = ACTIONS(3617), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(4040), + [anon_sym_COLON_COLON] = ACTIONS(3621), + [anon_sym_LBRACK] = ACTIONS(1949), + [anon_sym_RBRACK] = ACTIONS(4042), + [anon_sym_EQ] = ACTIONS(4044), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(3617), + [anon_sym_compl] = ACTIONS(3617), + [anon_sym_DASH_DASH] = ACTIONS(3623), + [anon_sym_PLUS_PLUS] = ACTIONS(3623), + [anon_sym_sizeof] = ACTIONS(3625), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(3627), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(3629), + [anon_sym_new] = ACTIONS(3631), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1603] = { - [sym__expression] = STATE(2935), - [sym_conditional_expression] = STATE(3035), - [sym_assignment_expression] = STATE(3035), - [sym_pointer_expression] = STATE(2713), - [sym_unary_expression] = STATE(3035), - [sym_binary_expression] = STATE(3035), - [sym_update_expression] = STATE(3035), - [sym_cast_expression] = STATE(3035), - [sym_sizeof_expression] = STATE(3035), - [sym_subscript_expression] = STATE(2713), - [sym_call_expression] = STATE(2713), - [sym_field_expression] = STATE(2713), - [sym_compound_literal_expression] = STATE(3035), - [sym_parenthesized_expression] = STATE(2713), - [sym_char_literal] = STATE(3013), - [sym_concatenated_string] = STATE(3013), - [sym_string_literal] = STATE(1900), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5990), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3035), - [sym_raw_string_literal] = STATE(1900), - [sym_co_await_expression] = STATE(3035), - [sym_new_expression] = STATE(3035), - [sym_delete_expression] = STATE(3035), - [sym_requires_clause] = STATE(3035), - [sym_requires_expression] = STATE(3035), - [sym_lambda_expression] = STATE(3035), - [sym_lambda_capture_specifier] = STATE(4465), - [sym_fold_expression] = STATE(3035), - [sym_parameter_pack_expansion] = STATE(3035), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4584), - [sym_qualified_identifier] = STATE(2713), - [sym_qualified_type_identifier] = STATE(5990), - [sym_user_defined_literal] = STATE(3035), - [sym_identifier] = ACTIONS(1643), - [anon_sym_LPAREN2] = ACTIONS(1439), - [anon_sym_BANG] = ACTIONS(1441), - [anon_sym_TILDE] = ACTIONS(1441), - [anon_sym_DASH] = ACTIONS(1443), - [anon_sym_PLUS] = ACTIONS(1443), - [anon_sym_STAR] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(1445), - [anon_sym_COLON_COLON] = ACTIONS(1447), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1581), - [anon_sym_not] = ACTIONS(1443), - [anon_sym_compl] = ACTIONS(1443), - [anon_sym_DASH_DASH] = ACTIONS(1459), - [anon_sym_PLUS_PLUS] = ACTIONS(1459), - [anon_sym_sizeof] = ACTIONS(1461), - [sym_number_literal] = ACTIONS(1463), - [anon_sym_L_SQUOTE] = ACTIONS(1465), - [anon_sym_u_SQUOTE] = ACTIONS(1465), - [anon_sym_U_SQUOTE] = ACTIONS(1465), - [anon_sym_u8_SQUOTE] = ACTIONS(1465), - [anon_sym_SQUOTE] = ACTIONS(1465), - [anon_sym_L_DQUOTE] = ACTIONS(1467), - [anon_sym_u_DQUOTE] = ACTIONS(1467), - [anon_sym_U_DQUOTE] = ACTIONS(1467), - [anon_sym_u8_DQUOTE] = ACTIONS(1467), - [anon_sym_DQUOTE] = ACTIONS(1467), - [sym_true] = ACTIONS(1469), - [sym_false] = ACTIONS(1469), - [sym_null] = ACTIONS(1469), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1473), - [anon_sym_R_DQUOTE] = ACTIONS(1475), - [anon_sym_LR_DQUOTE] = ACTIONS(1475), - [anon_sym_uR_DQUOTE] = ACTIONS(1475), - [anon_sym_UR_DQUOTE] = ACTIONS(1475), - [anon_sym_u8R_DQUOTE] = ACTIONS(1475), - [anon_sym_co_await] = ACTIONS(1477), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_requires] = ACTIONS(1481), - [sym_this] = ACTIONS(1469), - [sym_nullptr] = ACTIONS(1469), + [sym__expression] = STATE(4268), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3509), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3509), + [sym_call_expression] = STATE(3509), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3509), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3509), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3509), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3613), + [anon_sym_LPAREN2] = ACTIONS(4046), + [anon_sym_BANG] = ACTIONS(3619), + [anon_sym_TILDE] = ACTIONS(3619), + [anon_sym_DASH] = ACTIONS(3617), + [anon_sym_PLUS] = ACTIONS(3617), + [anon_sym_STAR] = ACTIONS(4046), + [anon_sym_AMP_AMP] = ACTIONS(4046), + [anon_sym_AMP] = ACTIONS(4048), + [anon_sym_LT] = ACTIONS(4046), + [anon_sym_COLON_COLON] = ACTIONS(3621), + [anon_sym_LBRACE] = ACTIONS(4046), + [anon_sym_LBRACK] = ACTIONS(4046), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(3617), + [anon_sym_compl] = ACTIONS(3617), + [anon_sym_DASH_DASH] = ACTIONS(3623), + [anon_sym_PLUS_PLUS] = ACTIONS(3623), + [anon_sym_sizeof] = ACTIONS(3625), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(3627), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(3629), + [anon_sym_new] = ACTIONS(3631), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1604] = { - [sym__expression] = STATE(3728), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2954), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym__expression] = STATE(4086), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_initializer_list] = STATE(6428), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_RPAREN] = ACTIONS(4050), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(1899), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1605] = { - [sym__expression] = STATE(3634), - [sym_conditional_expression] = STATE(3855), - [sym_assignment_expression] = STATE(3855), - [sym_pointer_expression] = STATE(2954), - [sym_unary_expression] = STATE(3855), - [sym_binary_expression] = STATE(3855), - [sym_update_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_subscript_expression] = STATE(2954), - [sym_call_expression] = STATE(2954), - [sym_field_expression] = STATE(2954), - [sym_compound_literal_expression] = STATE(3855), - [sym_parenthesized_expression] = STATE(2954), - [sym_char_literal] = STATE(3557), - [sym_concatenated_string] = STATE(3557), - [sym_string_literal] = STATE(2955), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5844), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3855), - [sym_raw_string_literal] = STATE(2955), - [sym_co_await_expression] = STATE(3855), - [sym_new_expression] = STATE(3855), - [sym_delete_expression] = STATE(3855), - [sym_requires_clause] = STATE(3855), - [sym_requires_expression] = STATE(3855), - [sym_lambda_expression] = STATE(3855), - [sym_lambda_capture_specifier] = STATE(4501), - [sym_fold_expression] = STATE(3855), - [sym_parameter_pack_expansion] = STATE(3855), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4570), - [sym_qualified_identifier] = STATE(2954), - [sym_qualified_type_identifier] = STATE(5844), - [sym_user_defined_literal] = STATE(3855), - [sym_identifier] = ACTIONS(3023), - [anon_sym_LPAREN2] = ACTIONS(2410), - [anon_sym_BANG] = ACTIONS(2412), - [anon_sym_TILDE] = ACTIONS(2412), - [anon_sym_DASH] = ACTIONS(2414), - [anon_sym_PLUS] = ACTIONS(2414), - [anon_sym_STAR] = ACTIONS(2416), - [anon_sym_AMP] = ACTIONS(2416), - [anon_sym_COLON_COLON] = ACTIONS(2418), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1619), - [anon_sym_not] = ACTIONS(2414), - [anon_sym_compl] = ACTIONS(2414), - [anon_sym_DASH_DASH] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(2432), - [anon_sym_sizeof] = ACTIONS(2434), - [sym_number_literal] = ACTIONS(2436), - [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_L_DQUOTE] = ACTIONS(2440), - [anon_sym_u_DQUOTE] = ACTIONS(2440), - [anon_sym_U_DQUOTE] = ACTIONS(2440), - [anon_sym_u8_DQUOTE] = ACTIONS(2440), - [anon_sym_DQUOTE] = ACTIONS(2440), - [sym_true] = ACTIONS(2442), - [sym_false] = ACTIONS(2442), - [sym_null] = ACTIONS(2442), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(2452), - [anon_sym_R_DQUOTE] = ACTIONS(2454), - [anon_sym_LR_DQUOTE] = ACTIONS(2454), - [anon_sym_uR_DQUOTE] = ACTIONS(2454), - [anon_sym_UR_DQUOTE] = ACTIONS(2454), - [anon_sym_u8R_DQUOTE] = ACTIONS(2454), - [anon_sym_co_await] = ACTIONS(2456), - [anon_sym_new] = ACTIONS(2458), - [anon_sym_requires] = ACTIONS(2460), - [sym_this] = ACTIONS(2442), - [sym_nullptr] = ACTIONS(2442), - }, - [1606] = { - [sym__expression] = STATE(3779), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2954), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym__expression] = STATE(4102), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_initializer_list] = STATE(6499), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_RPAREN] = ACTIONS(4052), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(1899), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), + }, + [1606] = { + [sym__expression] = STATE(4068), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3509), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3509), + [sym_call_expression] = STATE(3509), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3509), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3509), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_lambda_default_capture] = STATE(6648), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3509), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3613), + [anon_sym_LPAREN2] = ACTIONS(3615), + [anon_sym_BANG] = ACTIONS(3619), + [anon_sym_TILDE] = ACTIONS(3619), + [anon_sym_DASH] = ACTIONS(3617), + [anon_sym_PLUS] = ACTIONS(3617), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(4040), + [anon_sym_COLON_COLON] = ACTIONS(3621), + [anon_sym_LBRACK] = ACTIONS(1949), + [anon_sym_RBRACK] = ACTIONS(4054), + [anon_sym_EQ] = ACTIONS(4044), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(3617), + [anon_sym_compl] = ACTIONS(3617), + [anon_sym_DASH_DASH] = ACTIONS(3623), + [anon_sym_PLUS_PLUS] = ACTIONS(3623), + [anon_sym_sizeof] = ACTIONS(3625), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(3627), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(3629), + [anon_sym_new] = ACTIONS(3631), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1607] = { - [sym__expression] = STATE(2863), - [sym_conditional_expression] = STATE(2940), - [sym_assignment_expression] = STATE(2940), - [sym_pointer_expression] = STATE(2933), - [sym_unary_expression] = STATE(2940), - [sym_binary_expression] = STATE(2940), - [sym_update_expression] = STATE(2940), - [sym_cast_expression] = STATE(2940), - [sym_sizeof_expression] = STATE(2940), - [sym_subscript_expression] = STATE(2933), - [sym_call_expression] = STATE(2933), - [sym_field_expression] = STATE(2933), - [sym_compound_literal_expression] = STATE(2940), - [sym_parenthesized_expression] = STATE(2933), - [sym_char_literal] = STATE(2845), - [sym_concatenated_string] = STATE(2845), - [sym_string_literal] = STATE(1861), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5801), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(2940), - [sym_raw_string_literal] = STATE(1861), - [sym_co_await_expression] = STATE(2940), - [sym_new_expression] = STATE(2940), - [sym_delete_expression] = STATE(2940), - [sym_requires_clause] = STATE(2940), - [sym_requires_expression] = STATE(2940), - [sym_lambda_expression] = STATE(2940), - [sym_lambda_capture_specifier] = STATE(4464), - [sym_fold_expression] = STATE(2940), - [sym_parameter_pack_expansion] = STATE(2940), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4570), - [sym_qualified_identifier] = STATE(2933), - [sym_qualified_type_identifier] = STATE(5801), - [sym_user_defined_literal] = STATE(2940), - [sym_identifier] = ACTIONS(1605), - [anon_sym_LPAREN2] = ACTIONS(1607), - [anon_sym_BANG] = ACTIONS(1611), - [anon_sym_TILDE] = ACTIONS(1611), - [anon_sym_DASH] = ACTIONS(1609), - [anon_sym_PLUS] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(2416), - [anon_sym_AMP] = ACTIONS(2416), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1619), - [anon_sym_not] = ACTIONS(1609), - [anon_sym_compl] = ACTIONS(1609), - [anon_sym_DASH_DASH] = ACTIONS(1621), - [anon_sym_PLUS_PLUS] = ACTIONS(1621), - [anon_sym_sizeof] = ACTIONS(1623), - [sym_number_literal] = ACTIONS(1625), - [anon_sym_L_SQUOTE] = ACTIONS(1627), - [anon_sym_u_SQUOTE] = ACTIONS(1627), - [anon_sym_U_SQUOTE] = ACTIONS(1627), - [anon_sym_u8_SQUOTE] = ACTIONS(1627), - [anon_sym_SQUOTE] = ACTIONS(1627), - [anon_sym_L_DQUOTE] = ACTIONS(1629), - [anon_sym_u_DQUOTE] = ACTIONS(1629), - [anon_sym_U_DQUOTE] = ACTIONS(1629), - [anon_sym_u8_DQUOTE] = ACTIONS(1629), - [anon_sym_DQUOTE] = ACTIONS(1629), - [sym_true] = ACTIONS(1631), - [sym_false] = ACTIONS(1631), - [sym_null] = ACTIONS(1631), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1633), - [anon_sym_R_DQUOTE] = ACTIONS(1635), - [anon_sym_LR_DQUOTE] = ACTIONS(1635), - [anon_sym_uR_DQUOTE] = ACTIONS(1635), - [anon_sym_UR_DQUOTE] = ACTIONS(1635), - [anon_sym_u8R_DQUOTE] = ACTIONS(1635), - [anon_sym_co_await] = ACTIONS(1637), - [anon_sym_new] = ACTIONS(1639), - [anon_sym_requires] = ACTIONS(1641), - [sym_this] = ACTIONS(1631), - [sym_nullptr] = ACTIONS(1631), + [sym__expression] = STATE(4264), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3509), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3509), + [sym_call_expression] = STATE(3509), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3509), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3509), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3509), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3613), + [anon_sym_LPAREN2] = ACTIONS(4046), + [anon_sym_BANG] = ACTIONS(3619), + [anon_sym_TILDE] = ACTIONS(3619), + [anon_sym_DASH] = ACTIONS(3617), + [anon_sym_PLUS] = ACTIONS(3617), + [anon_sym_STAR] = ACTIONS(4046), + [anon_sym_AMP_AMP] = ACTIONS(4046), + [anon_sym_AMP] = ACTIONS(4048), + [anon_sym_LT] = ACTIONS(4046), + [anon_sym_COLON_COLON] = ACTIONS(3621), + [anon_sym_LBRACE] = ACTIONS(4046), + [anon_sym_LBRACK] = ACTIONS(4046), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(3617), + [anon_sym_compl] = ACTIONS(3617), + [anon_sym_DASH_DASH] = ACTIONS(3623), + [anon_sym_PLUS_PLUS] = ACTIONS(3623), + [anon_sym_sizeof] = ACTIONS(3625), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(3627), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(3629), + [anon_sym_new] = ACTIONS(3631), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1608] = { - [sym__expression] = STATE(3725), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2954), - [anon_sym_LPAREN2] = ACTIONS(984), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [sym__expression] = STATE(3187), + [sym__expression_not_binary] = STATE(3318), + [sym_conditional_expression] = STATE(3318), + [sym_assignment_expression] = STATE(3318), + [sym_pointer_expression] = STATE(3318), + [sym_unary_expression] = STATE(3318), + [sym_binary_expression] = STATE(3318), + [sym_update_expression] = STATE(3318), + [sym_cast_expression] = STATE(3318), + [sym_sizeof_expression] = STATE(3318), + [sym_offsetof_expression] = STATE(3318), + [sym_generic_expression] = STATE(3318), + [sym_subscript_expression] = STATE(3318), + [sym_call_expression] = STATE(3318), + [sym_gnu_asm_expression] = STATE(3318), + [sym_field_expression] = STATE(3318), + [sym_compound_literal_expression] = STATE(3318), + [sym_parenthesized_expression] = STATE(3318), + [sym_char_literal] = STATE(3076), + [sym_concatenated_string] = STATE(3076), + [sym_string_literal] = STATE(2202), + [sym_null] = STATE(3318), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6739), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3318), + [sym_raw_string_literal] = STATE(2202), + [sym_co_await_expression] = STATE(3318), + [sym_new_expression] = STATE(3318), + [sym_delete_expression] = STATE(3318), + [sym_requires_clause] = STATE(3318), + [sym_requires_expression] = STATE(3318), + [sym_lambda_expression] = STATE(3318), + [sym_lambda_capture_specifier] = STATE(5187), + [sym_fold_expression] = STATE(3318), + [sym_parameter_pack_expansion] = STATE(3318), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5232), + [sym_qualified_identifier] = STATE(3318), + [sym_qualified_type_identifier] = STATE(6739), + [sym_user_defined_literal] = STATE(3318), + [sym_identifier] = ACTIONS(1985), + [anon_sym_LPAREN2] = ACTIONS(4046), + [anon_sym_BANG] = ACTIONS(1991), + [anon_sym_TILDE] = ACTIONS(1991), + [anon_sym_DASH] = ACTIONS(1989), + [anon_sym_PLUS] = ACTIONS(1989), + [anon_sym_STAR] = ACTIONS(4046), + [anon_sym_AMP_AMP] = ACTIONS(4046), + [anon_sym_AMP] = ACTIONS(4048), + [anon_sym_LT] = ACTIONS(4046), + [anon_sym_COLON_COLON] = ACTIONS(1995), + [anon_sym_LBRACE] = ACTIONS(4046), + [anon_sym_LBRACK] = ACTIONS(4046), + [sym_primitive_type] = ACTIONS(1999), + [anon_sym_not] = ACTIONS(1989), + [anon_sym_compl] = ACTIONS(1989), + [anon_sym_DASH_DASH] = ACTIONS(2001), + [anon_sym_PLUS_PLUS] = ACTIONS(2001), + [anon_sym_sizeof] = ACTIONS(2003), + [anon_sym_offsetof] = ACTIONS(2005), + [anon_sym__Generic] = ACTIONS(2007), + [anon_sym_asm] = ACTIONS(2009), + [anon_sym___asm__] = ACTIONS(2009), + [sym_number_literal] = ACTIONS(2011), + [anon_sym_L_SQUOTE] = ACTIONS(2013), + [anon_sym_u_SQUOTE] = ACTIONS(2013), + [anon_sym_U_SQUOTE] = ACTIONS(2013), + [anon_sym_u8_SQUOTE] = ACTIONS(2013), + [anon_sym_SQUOTE] = ACTIONS(2013), + [anon_sym_L_DQUOTE] = ACTIONS(2015), + [anon_sym_u_DQUOTE] = ACTIONS(2015), + [anon_sym_U_DQUOTE] = ACTIONS(2015), + [anon_sym_u8_DQUOTE] = ACTIONS(2015), + [anon_sym_DQUOTE] = ACTIONS(2015), + [sym_true] = ACTIONS(2017), + [sym_false] = ACTIONS(2017), + [anon_sym_NULL] = ACTIONS(2019), + [anon_sym_nullptr] = ACTIONS(2019), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(2021), + [anon_sym_R_DQUOTE] = ACTIONS(2023), + [anon_sym_LR_DQUOTE] = ACTIONS(2023), + [anon_sym_uR_DQUOTE] = ACTIONS(2023), + [anon_sym_UR_DQUOTE] = ACTIONS(2023), + [anon_sym_u8R_DQUOTE] = ACTIONS(2023), + [anon_sym_co_await] = ACTIONS(2025), + [anon_sym_new] = ACTIONS(2027), + [anon_sym_requires] = ACTIONS(2029), + [sym_this] = ACTIONS(2017), }, [1609] = { - [sym__expression] = STATE(3791), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2954), - [anon_sym_LPAREN2] = ACTIONS(984), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [sym__expression] = STATE(4068), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3509), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3509), + [sym_call_expression] = STATE(3509), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3509), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3509), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_lambda_default_capture] = STATE(6648), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3509), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3613), + [anon_sym_LPAREN2] = ACTIONS(3615), + [anon_sym_BANG] = ACTIONS(3619), + [anon_sym_TILDE] = ACTIONS(3619), + [anon_sym_DASH] = ACTIONS(3617), + [anon_sym_PLUS] = ACTIONS(3617), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(4040), + [anon_sym_COLON_COLON] = ACTIONS(3621), + [anon_sym_LBRACK] = ACTIONS(1949), + [anon_sym_RBRACK] = ACTIONS(4056), + [anon_sym_EQ] = ACTIONS(4044), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(3617), + [anon_sym_compl] = ACTIONS(3617), + [anon_sym_DASH_DASH] = ACTIONS(3623), + [anon_sym_PLUS_PLUS] = ACTIONS(3623), + [anon_sym_sizeof] = ACTIONS(3625), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(3627), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(3629), + [anon_sym_new] = ACTIONS(3631), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1610] = { - [sym__expression] = STATE(3635), - [sym_conditional_expression] = STATE(3855), - [sym_assignment_expression] = STATE(3855), - [sym_pointer_expression] = STATE(2954), - [sym_unary_expression] = STATE(3855), - [sym_binary_expression] = STATE(3855), - [sym_update_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_subscript_expression] = STATE(2954), - [sym_call_expression] = STATE(2954), - [sym_field_expression] = STATE(2954), - [sym_compound_literal_expression] = STATE(3855), - [sym_parenthesized_expression] = STATE(2954), - [sym_char_literal] = STATE(3557), - [sym_concatenated_string] = STATE(3557), - [sym_string_literal] = STATE(2955), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5844), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3855), - [sym_raw_string_literal] = STATE(2955), - [sym_co_await_expression] = STATE(3855), - [sym_new_expression] = STATE(3855), - [sym_delete_expression] = STATE(3855), - [sym_requires_clause] = STATE(3855), - [sym_requires_expression] = STATE(3855), - [sym_lambda_expression] = STATE(3855), - [sym_lambda_capture_specifier] = STATE(4501), - [sym_fold_expression] = STATE(3855), - [sym_parameter_pack_expansion] = STATE(3855), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4570), - [sym_qualified_identifier] = STATE(2954), - [sym_qualified_type_identifier] = STATE(5844), - [sym_user_defined_literal] = STATE(3855), - [sym_identifier] = ACTIONS(3023), - [anon_sym_LPAREN2] = ACTIONS(2410), - [anon_sym_BANG] = ACTIONS(2412), - [anon_sym_TILDE] = ACTIONS(2412), - [anon_sym_DASH] = ACTIONS(2414), - [anon_sym_PLUS] = ACTIONS(2414), - [anon_sym_STAR] = ACTIONS(2416), - [anon_sym_AMP] = ACTIONS(2416), - [anon_sym_COLON_COLON] = ACTIONS(2418), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1619), - [anon_sym_not] = ACTIONS(2414), - [anon_sym_compl] = ACTIONS(2414), - [anon_sym_DASH_DASH] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(2432), - [anon_sym_sizeof] = ACTIONS(2434), - [sym_number_literal] = ACTIONS(2436), - [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_L_DQUOTE] = ACTIONS(2440), - [anon_sym_u_DQUOTE] = ACTIONS(2440), - [anon_sym_U_DQUOTE] = ACTIONS(2440), - [anon_sym_u8_DQUOTE] = ACTIONS(2440), - [anon_sym_DQUOTE] = ACTIONS(2440), - [sym_true] = ACTIONS(2442), - [sym_false] = ACTIONS(2442), - [sym_null] = ACTIONS(2442), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(2452), - [anon_sym_R_DQUOTE] = ACTIONS(2454), - [anon_sym_LR_DQUOTE] = ACTIONS(2454), - [anon_sym_uR_DQUOTE] = ACTIONS(2454), - [anon_sym_UR_DQUOTE] = ACTIONS(2454), - [anon_sym_u8R_DQUOTE] = ACTIONS(2454), - [anon_sym_co_await] = ACTIONS(2456), - [anon_sym_new] = ACTIONS(2458), - [anon_sym_requires] = ACTIONS(2460), - [sym_this] = ACTIONS(2442), - [sym_nullptr] = ACTIONS(2442), + [sym__expression] = STATE(3471), + [sym__expression_not_binary] = STATE(3565), + [sym_conditional_expression] = STATE(3565), + [sym_assignment_expression] = STATE(3565), + [sym_pointer_expression] = STATE(3220), + [sym_unary_expression] = STATE(3565), + [sym_binary_expression] = STATE(3565), + [sym_update_expression] = STATE(3565), + [sym_cast_expression] = STATE(3565), + [sym_sizeof_expression] = STATE(3565), + [sym_offsetof_expression] = STATE(3565), + [sym_generic_expression] = STATE(3565), + [sym_subscript_expression] = STATE(3220), + [sym_call_expression] = STATE(3220), + [sym_gnu_asm_expression] = STATE(3565), + [sym_field_expression] = STATE(3220), + [sym_compound_literal_expression] = STATE(3565), + [sym_parenthesized_expression] = STATE(3220), + [sym_char_literal] = STATE(3429), + [sym_concatenated_string] = STATE(3429), + [sym_string_literal] = STATE(2248), + [sym_null] = STATE(3565), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6847), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3565), + [sym_raw_string_literal] = STATE(2248), + [sym_co_await_expression] = STATE(3565), + [sym_new_expression] = STATE(3565), + [sym_delete_expression] = STATE(3565), + [sym_requires_clause] = STATE(3565), + [sym_requires_expression] = STATE(3565), + [sym_lambda_expression] = STATE(3565), + [sym_lambda_capture_specifier] = STATE(5204), + [sym_fold_expression] = STATE(3565), + [sym_parameter_pack_expansion] = STATE(3565), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5232), + [sym_qualified_identifier] = STATE(3220), + [sym_qualified_type_identifier] = STATE(6847), + [sym_user_defined_literal] = STATE(3565), + [sym_identifier] = ACTIONS(2095), + [anon_sym_LPAREN2] = ACTIONS(4046), + [anon_sym_BANG] = ACTIONS(1843), + [anon_sym_TILDE] = ACTIONS(1843), + [anon_sym_DASH] = ACTIONS(1845), + [anon_sym_PLUS] = ACTIONS(1845), + [anon_sym_STAR] = ACTIONS(4046), + [anon_sym_AMP_AMP] = ACTIONS(4046), + [anon_sym_AMP] = ACTIONS(4048), + [anon_sym_LT] = ACTIONS(4046), + [anon_sym_COLON_COLON] = ACTIONS(1849), + [anon_sym_LBRACE] = ACTIONS(4046), + [anon_sym_LBRACK] = ACTIONS(4046), + [sym_primitive_type] = ACTIONS(1999), + [anon_sym_not] = ACTIONS(1845), + [anon_sym_compl] = ACTIONS(1845), + [anon_sym_DASH_DASH] = ACTIONS(1861), + [anon_sym_PLUS_PLUS] = ACTIONS(1861), + [anon_sym_sizeof] = ACTIONS(1863), + [anon_sym_offsetof] = ACTIONS(1865), + [anon_sym__Generic] = ACTIONS(1867), + [anon_sym_asm] = ACTIONS(1869), + [anon_sym___asm__] = ACTIONS(1869), + [sym_number_literal] = ACTIONS(1871), + [anon_sym_L_SQUOTE] = ACTIONS(1873), + [anon_sym_u_SQUOTE] = ACTIONS(1873), + [anon_sym_U_SQUOTE] = ACTIONS(1873), + [anon_sym_u8_SQUOTE] = ACTIONS(1873), + [anon_sym_SQUOTE] = ACTIONS(1873), + [anon_sym_L_DQUOTE] = ACTIONS(1875), + [anon_sym_u_DQUOTE] = ACTIONS(1875), + [anon_sym_U_DQUOTE] = ACTIONS(1875), + [anon_sym_u8_DQUOTE] = ACTIONS(1875), + [anon_sym_DQUOTE] = ACTIONS(1875), + [sym_true] = ACTIONS(1877), + [sym_false] = ACTIONS(1877), + [anon_sym_NULL] = ACTIONS(1879), + [anon_sym_nullptr] = ACTIONS(1879), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(1883), + [anon_sym_R_DQUOTE] = ACTIONS(1885), + [anon_sym_LR_DQUOTE] = ACTIONS(1885), + [anon_sym_uR_DQUOTE] = ACTIONS(1885), + [anon_sym_UR_DQUOTE] = ACTIONS(1885), + [anon_sym_u8R_DQUOTE] = ACTIONS(1885), + [anon_sym_co_await] = ACTIONS(1887), + [anon_sym_new] = ACTIONS(1889), + [anon_sym_requires] = ACTIONS(1891), + [sym_this] = ACTIONS(1877), }, [1611] = { - [sym__expression] = STATE(3393), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2954), - [anon_sym_LPAREN2] = ACTIONS(984), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [sym__expression] = STATE(4405), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3579), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3579), + [sym_call_expression] = STATE(3579), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3579), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3579), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3579), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3633), + [anon_sym_LPAREN2] = ACTIONS(4046), + [anon_sym_BANG] = ACTIONS(3639), + [anon_sym_TILDE] = ACTIONS(3639), + [anon_sym_DASH] = ACTIONS(3637), + [anon_sym_PLUS] = ACTIONS(3637), + [anon_sym_STAR] = ACTIONS(4046), + [anon_sym_AMP_AMP] = ACTIONS(4046), + [anon_sym_AMP] = ACTIONS(4048), + [anon_sym_LT] = ACTIONS(4046), + [anon_sym_COLON_COLON] = ACTIONS(3643), + [anon_sym_LBRACE] = ACTIONS(4046), + [anon_sym_LBRACK] = ACTIONS(4046), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(3637), + [anon_sym_compl] = ACTIONS(3637), + [anon_sym_DASH_DASH] = ACTIONS(3645), + [anon_sym_PLUS_PLUS] = ACTIONS(3645), + [anon_sym_sizeof] = ACTIONS(3647), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(3649), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(3651), + [anon_sym_new] = ACTIONS(3631), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1612] = { - [sym__expression] = STATE(2895), - [sym_conditional_expression] = STATE(2574), - [sym_assignment_expression] = STATE(2574), - [sym_pointer_expression] = STATE(2578), - [sym_unary_expression] = STATE(2574), - [sym_binary_expression] = STATE(2574), - [sym_update_expression] = STATE(2574), - [sym_cast_expression] = STATE(2574), - [sym_sizeof_expression] = STATE(2574), - [sym_subscript_expression] = STATE(2578), - [sym_call_expression] = STATE(2578), - [sym_field_expression] = STATE(2578), - [sym_compound_literal_expression] = STATE(2574), - [sym_parenthesized_expression] = STATE(2578), - [sym_char_literal] = STATE(2207), - [sym_concatenated_string] = STATE(2207), - [sym_string_literal] = STATE(1820), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5944), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(2574), - [sym_raw_string_literal] = STATE(1820), - [sym_co_await_expression] = STATE(2574), - [sym_new_expression] = STATE(2574), - [sym_delete_expression] = STATE(2574), - [sym_requires_clause] = STATE(2574), - [sym_requires_expression] = STATE(2574), - [sym_lambda_expression] = STATE(2574), - [sym_lambda_capture_specifier] = STATE(4479), - [sym_fold_expression] = STATE(2574), - [sym_parameter_pack_expansion] = STATE(2574), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2578), - [sym_qualified_type_identifier] = STATE(5944), - [sym_user_defined_literal] = STATE(2574), - [sym_identifier] = ACTIONS(1523), - [anon_sym_LPAREN2] = ACTIONS(1647), - [anon_sym_BANG] = ACTIONS(1651), - [anon_sym_TILDE] = ACTIONS(1651), - [anon_sym_DASH] = ACTIONS(1649), - [anon_sym_PLUS] = ACTIONS(1649), - [anon_sym_STAR] = ACTIONS(3081), - [anon_sym_AMP] = ACTIONS(3081), - [anon_sym_COLON_COLON] = ACTIONS(1655), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(1649), - [anon_sym_compl] = ACTIONS(1649), - [anon_sym_DASH_DASH] = ACTIONS(1657), - [anon_sym_PLUS_PLUS] = ACTIONS(1657), - [anon_sym_sizeof] = ACTIONS(1659), - [sym_number_literal] = ACTIONS(1547), - [anon_sym_L_SQUOTE] = ACTIONS(1549), - [anon_sym_u_SQUOTE] = ACTIONS(1549), - [anon_sym_U_SQUOTE] = ACTIONS(1549), - [anon_sym_u8_SQUOTE] = ACTIONS(1549), - [anon_sym_SQUOTE] = ACTIONS(1549), - [anon_sym_L_DQUOTE] = ACTIONS(1551), - [anon_sym_u_DQUOTE] = ACTIONS(1551), - [anon_sym_U_DQUOTE] = ACTIONS(1551), - [anon_sym_u8_DQUOTE] = ACTIONS(1551), - [anon_sym_DQUOTE] = ACTIONS(1551), - [sym_true] = ACTIONS(1553), - [sym_false] = ACTIONS(1553), - [sym_null] = ACTIONS(1553), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1661), - [anon_sym_R_DQUOTE] = ACTIONS(1559), - [anon_sym_LR_DQUOTE] = ACTIONS(1559), - [anon_sym_uR_DQUOTE] = ACTIONS(1559), - [anon_sym_UR_DQUOTE] = ACTIONS(1559), - [anon_sym_u8R_DQUOTE] = ACTIONS(1559), - [anon_sym_co_await] = ACTIONS(1663), - [anon_sym_new] = ACTIONS(1563), - [anon_sym_requires] = ACTIONS(1565), - [sym_this] = ACTIONS(1553), - [sym_nullptr] = ACTIONS(1553), + [sym__expression] = STATE(3403), + [sym__expression_not_binary] = STATE(3513), + [sym_conditional_expression] = STATE(3513), + [sym_assignment_expression] = STATE(3513), + [sym_pointer_expression] = STATE(3513), + [sym_unary_expression] = STATE(3513), + [sym_binary_expression] = STATE(3513), + [sym_update_expression] = STATE(3513), + [sym_cast_expression] = STATE(3513), + [sym_sizeof_expression] = STATE(3513), + [sym_offsetof_expression] = STATE(3513), + [sym_generic_expression] = STATE(3513), + [sym_subscript_expression] = STATE(3513), + [sym_call_expression] = STATE(3513), + [sym_gnu_asm_expression] = STATE(3513), + [sym_field_expression] = STATE(3513), + [sym_compound_literal_expression] = STATE(3513), + [sym_parenthesized_expression] = STATE(3513), + [sym_char_literal] = STATE(3385), + [sym_concatenated_string] = STATE(3385), + [sym_string_literal] = STATE(2225), + [sym_null] = STATE(3513), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6957), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3513), + [sym_raw_string_literal] = STATE(2225), + [sym_co_await_expression] = STATE(3513), + [sym_new_expression] = STATE(3513), + [sym_delete_expression] = STATE(3513), + [sym_requires_clause] = STATE(3513), + [sym_requires_expression] = STATE(3513), + [sym_lambda_expression] = STATE(3513), + [sym_lambda_capture_specifier] = STATE(5162), + [sym_fold_expression] = STATE(3513), + [sym_parameter_pack_expansion] = STATE(3513), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5289), + [sym_qualified_identifier] = STATE(3513), + [sym_qualified_type_identifier] = STATE(6957), + [sym_user_defined_literal] = STATE(3513), + [sym_identifier] = ACTIONS(2031), + [anon_sym_LPAREN2] = ACTIONS(4046), + [anon_sym_BANG] = ACTIONS(2037), + [anon_sym_TILDE] = ACTIONS(2037), + [anon_sym_DASH] = ACTIONS(2035), + [anon_sym_PLUS] = ACTIONS(2035), + [anon_sym_STAR] = ACTIONS(4046), + [anon_sym_AMP_AMP] = ACTIONS(4046), + [anon_sym_AMP] = ACTIONS(4048), + [anon_sym_LT] = ACTIONS(4046), + [anon_sym_COLON_COLON] = ACTIONS(2041), + [anon_sym_LBRACE] = ACTIONS(4046), + [anon_sym_LBRACK] = ACTIONS(4046), + [sym_primitive_type] = ACTIONS(2045), + [anon_sym_not] = ACTIONS(2035), + [anon_sym_compl] = ACTIONS(2035), + [anon_sym_DASH_DASH] = ACTIONS(2047), + [anon_sym_PLUS_PLUS] = ACTIONS(2047), + [anon_sym_sizeof] = ACTIONS(2049), + [anon_sym_offsetof] = ACTIONS(2051), + [anon_sym__Generic] = ACTIONS(2053), + [anon_sym_asm] = ACTIONS(2055), + [anon_sym___asm__] = ACTIONS(2055), + [sym_number_literal] = ACTIONS(2057), + [anon_sym_L_SQUOTE] = ACTIONS(2059), + [anon_sym_u_SQUOTE] = ACTIONS(2059), + [anon_sym_U_SQUOTE] = ACTIONS(2059), + [anon_sym_u8_SQUOTE] = ACTIONS(2059), + [anon_sym_SQUOTE] = ACTIONS(2059), + [anon_sym_L_DQUOTE] = ACTIONS(2061), + [anon_sym_u_DQUOTE] = ACTIONS(2061), + [anon_sym_U_DQUOTE] = ACTIONS(2061), + [anon_sym_u8_DQUOTE] = ACTIONS(2061), + [anon_sym_DQUOTE] = ACTIONS(2061), + [sym_true] = ACTIONS(2063), + [sym_false] = ACTIONS(2063), + [anon_sym_NULL] = ACTIONS(2065), + [anon_sym_nullptr] = ACTIONS(2065), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(2067), + [anon_sym_R_DQUOTE] = ACTIONS(2069), + [anon_sym_LR_DQUOTE] = ACTIONS(2069), + [anon_sym_uR_DQUOTE] = ACTIONS(2069), + [anon_sym_UR_DQUOTE] = ACTIONS(2069), + [anon_sym_u8R_DQUOTE] = ACTIONS(2069), + [anon_sym_co_await] = ACTIONS(2071), + [anon_sym_new] = ACTIONS(2073), + [anon_sym_requires] = ACTIONS(2075), + [sym_this] = ACTIONS(2063), }, [1613] = { - [sym__expression] = STATE(3353), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2954), - [anon_sym_LPAREN2] = ACTIONS(984), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [sym__expression] = STATE(4408), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3579), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3579), + [sym_call_expression] = STATE(3579), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3579), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3579), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3579), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3633), + [anon_sym_LPAREN2] = ACTIONS(4046), + [anon_sym_BANG] = ACTIONS(3639), + [anon_sym_TILDE] = ACTIONS(3639), + [anon_sym_DASH] = ACTIONS(3637), + [anon_sym_PLUS] = ACTIONS(3637), + [anon_sym_STAR] = ACTIONS(4046), + [anon_sym_AMP_AMP] = ACTIONS(4046), + [anon_sym_AMP] = ACTIONS(4048), + [anon_sym_LT] = ACTIONS(4046), + [anon_sym_COLON_COLON] = ACTIONS(3643), + [anon_sym_LBRACE] = ACTIONS(4046), + [anon_sym_LBRACK] = ACTIONS(4046), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(3637), + [anon_sym_compl] = ACTIONS(3637), + [anon_sym_DASH_DASH] = ACTIONS(3645), + [anon_sym_PLUS_PLUS] = ACTIONS(3645), + [anon_sym_sizeof] = ACTIONS(3647), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(3649), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(3651), + [anon_sym_new] = ACTIONS(3631), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1614] = { - [sym__expression] = STATE(3644), - [sym_conditional_expression] = STATE(3855), - [sym_assignment_expression] = STATE(3855), - [sym_pointer_expression] = STATE(2954), - [sym_unary_expression] = STATE(3855), - [sym_binary_expression] = STATE(3855), - [sym_update_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_subscript_expression] = STATE(2954), - [sym_call_expression] = STATE(2954), - [sym_field_expression] = STATE(2954), - [sym_compound_literal_expression] = STATE(3855), - [sym_parenthesized_expression] = STATE(2954), - [sym_char_literal] = STATE(3557), - [sym_concatenated_string] = STATE(3557), - [sym_string_literal] = STATE(2955), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5844), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3855), - [sym_raw_string_literal] = STATE(2955), - [sym_co_await_expression] = STATE(3855), - [sym_new_expression] = STATE(3855), - [sym_delete_expression] = STATE(3855), - [sym_requires_clause] = STATE(3855), - [sym_requires_expression] = STATE(3855), - [sym_lambda_expression] = STATE(3855), - [sym_lambda_capture_specifier] = STATE(4501), - [sym_fold_expression] = STATE(3855), - [sym_parameter_pack_expansion] = STATE(3855), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4570), - [sym_qualified_identifier] = STATE(2954), - [sym_qualified_type_identifier] = STATE(5844), - [sym_user_defined_literal] = STATE(3855), - [sym_identifier] = ACTIONS(3023), - [anon_sym_LPAREN2] = ACTIONS(2410), - [anon_sym_BANG] = ACTIONS(2412), - [anon_sym_TILDE] = ACTIONS(2412), - [anon_sym_DASH] = ACTIONS(2414), - [anon_sym_PLUS] = ACTIONS(2414), - [anon_sym_STAR] = ACTIONS(2416), - [anon_sym_AMP] = ACTIONS(2416), - [anon_sym_COLON_COLON] = ACTIONS(2418), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1619), - [anon_sym_not] = ACTIONS(2414), - [anon_sym_compl] = ACTIONS(2414), - [anon_sym_DASH_DASH] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(2432), - [anon_sym_sizeof] = ACTIONS(2434), - [sym_number_literal] = ACTIONS(2436), - [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_L_DQUOTE] = ACTIONS(2440), - [anon_sym_u_DQUOTE] = ACTIONS(2440), - [anon_sym_U_DQUOTE] = ACTIONS(2440), - [anon_sym_u8_DQUOTE] = ACTIONS(2440), - [anon_sym_DQUOTE] = ACTIONS(2440), - [sym_true] = ACTIONS(2442), - [sym_false] = ACTIONS(2442), - [sym_null] = ACTIONS(2442), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(2452), - [anon_sym_R_DQUOTE] = ACTIONS(2454), - [anon_sym_LR_DQUOTE] = ACTIONS(2454), - [anon_sym_uR_DQUOTE] = ACTIONS(2454), - [anon_sym_UR_DQUOTE] = ACTIONS(2454), - [anon_sym_u8R_DQUOTE] = ACTIONS(2454), - [anon_sym_co_await] = ACTIONS(2456), - [anon_sym_new] = ACTIONS(2458), - [anon_sym_requires] = ACTIONS(2460), - [sym_this] = ACTIONS(2442), - [sym_nullptr] = ACTIONS(2442), + [sym__expression] = STATE(4114), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3509), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3509), + [sym_call_expression] = STATE(3509), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3509), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3509), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_lambda_default_capture] = STATE(6648), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3509), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(4058), + [anon_sym_LPAREN2] = ACTIONS(3615), + [anon_sym_BANG] = ACTIONS(3619), + [anon_sym_TILDE] = ACTIONS(3619), + [anon_sym_DASH] = ACTIONS(3617), + [anon_sym_PLUS] = ACTIONS(3617), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(4040), + [anon_sym_COLON_COLON] = ACTIONS(3621), + [anon_sym_LBRACK] = ACTIONS(1949), + [anon_sym_RBRACK] = ACTIONS(4042), + [anon_sym_EQ] = ACTIONS(4044), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(3617), + [anon_sym_compl] = ACTIONS(3617), + [anon_sym_DASH_DASH] = ACTIONS(3623), + [anon_sym_PLUS_PLUS] = ACTIONS(3623), + [anon_sym_sizeof] = ACTIONS(3625), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(3627), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(3629), + [anon_sym_new] = ACTIONS(3631), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1615] = { - [sym__expression] = STATE(3576), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2954), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym__expression] = STATE(4095), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_initializer_list] = STATE(6485), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_RPAREN] = ACTIONS(4060), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(1899), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1616] = { - [sym__expression] = STATE(2905), - [sym_conditional_expression] = STATE(2574), - [sym_assignment_expression] = STATE(2574), - [sym_pointer_expression] = STATE(2578), - [sym_unary_expression] = STATE(2574), - [sym_binary_expression] = STATE(2574), - [sym_update_expression] = STATE(2574), - [sym_cast_expression] = STATE(2574), - [sym_sizeof_expression] = STATE(2574), - [sym_subscript_expression] = STATE(2578), - [sym_call_expression] = STATE(2578), - [sym_field_expression] = STATE(2578), - [sym_compound_literal_expression] = STATE(2574), - [sym_parenthesized_expression] = STATE(2578), - [sym_char_literal] = STATE(2207), - [sym_concatenated_string] = STATE(2207), - [sym_string_literal] = STATE(1820), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5944), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(2574), - [sym_raw_string_literal] = STATE(1820), - [sym_co_await_expression] = STATE(2574), - [sym_new_expression] = STATE(2574), - [sym_delete_expression] = STATE(2574), - [sym_requires_clause] = STATE(2574), - [sym_requires_expression] = STATE(2574), - [sym_lambda_expression] = STATE(2574), - [sym_lambda_capture_specifier] = STATE(4479), - [sym_fold_expression] = STATE(2574), - [sym_parameter_pack_expansion] = STATE(2574), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2578), - [sym_qualified_type_identifier] = STATE(5944), - [sym_user_defined_literal] = STATE(2574), - [sym_identifier] = ACTIONS(1523), - [anon_sym_LPAREN2] = ACTIONS(1647), - [anon_sym_BANG] = ACTIONS(1651), - [anon_sym_TILDE] = ACTIONS(1651), - [anon_sym_DASH] = ACTIONS(1649), - [anon_sym_PLUS] = ACTIONS(1649), - [anon_sym_STAR] = ACTIONS(3081), - [anon_sym_AMP] = ACTIONS(3081), - [anon_sym_COLON_COLON] = ACTIONS(1655), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(1649), - [anon_sym_compl] = ACTIONS(1649), - [anon_sym_DASH_DASH] = ACTIONS(1657), - [anon_sym_PLUS_PLUS] = ACTIONS(1657), - [anon_sym_sizeof] = ACTIONS(1659), - [sym_number_literal] = ACTIONS(1547), - [anon_sym_L_SQUOTE] = ACTIONS(1549), - [anon_sym_u_SQUOTE] = ACTIONS(1549), - [anon_sym_U_SQUOTE] = ACTIONS(1549), - [anon_sym_u8_SQUOTE] = ACTIONS(1549), - [anon_sym_SQUOTE] = ACTIONS(1549), - [anon_sym_L_DQUOTE] = ACTIONS(1551), - [anon_sym_u_DQUOTE] = ACTIONS(1551), - [anon_sym_U_DQUOTE] = ACTIONS(1551), - [anon_sym_u8_DQUOTE] = ACTIONS(1551), - [anon_sym_DQUOTE] = ACTIONS(1551), - [sym_true] = ACTIONS(1553), - [sym_false] = ACTIONS(1553), - [sym_null] = ACTIONS(1553), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1661), - [anon_sym_R_DQUOTE] = ACTIONS(1559), - [anon_sym_LR_DQUOTE] = ACTIONS(1559), - [anon_sym_uR_DQUOTE] = ACTIONS(1559), - [anon_sym_UR_DQUOTE] = ACTIONS(1559), - [anon_sym_u8R_DQUOTE] = ACTIONS(1559), - [anon_sym_co_await] = ACTIONS(1663), - [anon_sym_new] = ACTIONS(1563), - [anon_sym_requires] = ACTIONS(1565), - [sym_this] = ACTIONS(1553), - [sym_nullptr] = ACTIONS(1553), + [sym__expression] = STATE(4068), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3509), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3509), + [sym_call_expression] = STATE(3509), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3509), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3509), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_lambda_default_capture] = STATE(6648), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3509), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3613), + [anon_sym_LPAREN2] = ACTIONS(3615), + [anon_sym_BANG] = ACTIONS(3619), + [anon_sym_TILDE] = ACTIONS(3619), + [anon_sym_DASH] = ACTIONS(3617), + [anon_sym_PLUS] = ACTIONS(3617), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(4040), + [anon_sym_COLON_COLON] = ACTIONS(3621), + [anon_sym_LBRACK] = ACTIONS(1949), + [anon_sym_RBRACK] = ACTIONS(4062), + [anon_sym_EQ] = ACTIONS(4044), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(3617), + [anon_sym_compl] = ACTIONS(3617), + [anon_sym_DASH_DASH] = ACTIONS(3623), + [anon_sym_PLUS_PLUS] = ACTIONS(3623), + [anon_sym_sizeof] = ACTIONS(3625), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(3627), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(3629), + [anon_sym_new] = ACTIONS(3631), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1617] = { - [sym__expression] = STATE(3794), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2954), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym__expression] = STATE(4321), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_initializer_list] = STATE(7432), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(1899), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_default] = ACTIONS(4064), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(4066), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1618] = { - [sym__expression] = STATE(3795), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2984), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2984), - [sym_call_expression] = STATE(2984), - [sym_field_expression] = STATE(2984), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2984), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2984), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(3047), - [anon_sym_LPAREN2] = ACTIONS(3049), - [anon_sym_BANG] = ACTIONS(3053), - [anon_sym_TILDE] = ACTIONS(3053), - [anon_sym_DASH] = ACTIONS(3051), - [anon_sym_PLUS] = ACTIONS(3051), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(3055), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(3051), - [anon_sym_compl] = ACTIONS(3051), - [anon_sym_DASH_DASH] = ACTIONS(3057), - [anon_sym_PLUS_PLUS] = ACTIONS(3057), - [anon_sym_sizeof] = ACTIONS(3059), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(3061), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(3063), - [anon_sym_new] = ACTIONS(3065), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [sym__expression] = STATE(4068), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3509), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3509), + [sym_call_expression] = STATE(3509), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3509), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3509), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_lambda_default_capture] = STATE(6648), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3509), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3613), + [anon_sym_LPAREN2] = ACTIONS(3615), + [anon_sym_BANG] = ACTIONS(3619), + [anon_sym_TILDE] = ACTIONS(3619), + [anon_sym_DASH] = ACTIONS(3617), + [anon_sym_PLUS] = ACTIONS(3617), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(4040), + [anon_sym_COLON_COLON] = ACTIONS(3621), + [anon_sym_LBRACK] = ACTIONS(1949), + [anon_sym_RBRACK] = ACTIONS(4068), + [anon_sym_EQ] = ACTIONS(4044), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(3617), + [anon_sym_compl] = ACTIONS(3617), + [anon_sym_DASH_DASH] = ACTIONS(3623), + [anon_sym_PLUS_PLUS] = ACTIONS(3623), + [anon_sym_sizeof] = ACTIONS(3625), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(3627), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(3629), + [anon_sym_new] = ACTIONS(3631), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1619] = { - [sym__expression] = STATE(3538), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2954), - [anon_sym_LPAREN2] = ACTIONS(984), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [sym__expression] = STATE(4068), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3509), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3509), + [sym_call_expression] = STATE(3509), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3509), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3509), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_lambda_default_capture] = STATE(6648), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3509), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3613), + [anon_sym_LPAREN2] = ACTIONS(3615), + [anon_sym_BANG] = ACTIONS(3619), + [anon_sym_TILDE] = ACTIONS(3619), + [anon_sym_DASH] = ACTIONS(3617), + [anon_sym_PLUS] = ACTIONS(3617), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(4040), + [anon_sym_COLON_COLON] = ACTIONS(3621), + [anon_sym_LBRACK] = ACTIONS(1949), + [anon_sym_RBRACK] = ACTIONS(4070), + [anon_sym_EQ] = ACTIONS(4044), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(3617), + [anon_sym_compl] = ACTIONS(3617), + [anon_sym_DASH_DASH] = ACTIONS(3623), + [anon_sym_PLUS_PLUS] = ACTIONS(3623), + [anon_sym_sizeof] = ACTIONS(3625), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(3627), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(3629), + [anon_sym_new] = ACTIONS(3631), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1620] = { - [sym__expression] = STATE(2926), - [sym_conditional_expression] = STATE(2574), - [sym_assignment_expression] = STATE(2574), - [sym_pointer_expression] = STATE(2578), - [sym_unary_expression] = STATE(2574), - [sym_binary_expression] = STATE(2574), - [sym_update_expression] = STATE(2574), - [sym_cast_expression] = STATE(2574), - [sym_sizeof_expression] = STATE(2574), - [sym_subscript_expression] = STATE(2578), - [sym_call_expression] = STATE(2578), - [sym_field_expression] = STATE(2578), - [sym_compound_literal_expression] = STATE(2574), - [sym_parenthesized_expression] = STATE(2578), - [sym_char_literal] = STATE(2207), - [sym_concatenated_string] = STATE(2207), - [sym_string_literal] = STATE(1820), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5944), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(2574), - [sym_raw_string_literal] = STATE(1820), - [sym_co_await_expression] = STATE(2574), - [sym_new_expression] = STATE(2574), - [sym_delete_expression] = STATE(2574), - [sym_requires_clause] = STATE(2574), - [sym_requires_expression] = STATE(2574), - [sym_lambda_expression] = STATE(2574), - [sym_lambda_capture_specifier] = STATE(4479), - [sym_fold_expression] = STATE(2574), - [sym_parameter_pack_expansion] = STATE(2574), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2578), - [sym_qualified_type_identifier] = STATE(5944), - [sym_user_defined_literal] = STATE(2574), - [sym_identifier] = ACTIONS(1523), - [anon_sym_LPAREN2] = ACTIONS(1647), - [anon_sym_BANG] = ACTIONS(1651), - [anon_sym_TILDE] = ACTIONS(1651), - [anon_sym_DASH] = ACTIONS(1649), - [anon_sym_PLUS] = ACTIONS(1649), - [anon_sym_STAR] = ACTIONS(3081), - [anon_sym_AMP] = ACTIONS(3081), - [anon_sym_COLON_COLON] = ACTIONS(1655), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(1649), - [anon_sym_compl] = ACTIONS(1649), - [anon_sym_DASH_DASH] = ACTIONS(1657), - [anon_sym_PLUS_PLUS] = ACTIONS(1657), - [anon_sym_sizeof] = ACTIONS(1659), - [sym_number_literal] = ACTIONS(1547), - [anon_sym_L_SQUOTE] = ACTIONS(1549), - [anon_sym_u_SQUOTE] = ACTIONS(1549), - [anon_sym_U_SQUOTE] = ACTIONS(1549), - [anon_sym_u8_SQUOTE] = ACTIONS(1549), - [anon_sym_SQUOTE] = ACTIONS(1549), - [anon_sym_L_DQUOTE] = ACTIONS(1551), - [anon_sym_u_DQUOTE] = ACTIONS(1551), - [anon_sym_U_DQUOTE] = ACTIONS(1551), - [anon_sym_u8_DQUOTE] = ACTIONS(1551), - [anon_sym_DQUOTE] = ACTIONS(1551), - [sym_true] = ACTIONS(1553), - [sym_false] = ACTIONS(1553), - [sym_null] = ACTIONS(1553), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1661), - [anon_sym_R_DQUOTE] = ACTIONS(1559), - [anon_sym_LR_DQUOTE] = ACTIONS(1559), - [anon_sym_uR_DQUOTE] = ACTIONS(1559), - [anon_sym_UR_DQUOTE] = ACTIONS(1559), - [anon_sym_u8R_DQUOTE] = ACTIONS(1559), - [anon_sym_co_await] = ACTIONS(1663), - [anon_sym_new] = ACTIONS(1563), - [anon_sym_requires] = ACTIONS(1565), - [sym_this] = ACTIONS(1553), - [sym_nullptr] = ACTIONS(1553), - }, - [1621] = { - [sym__expression] = STATE(3504), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2954), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym__expression] = STATE(4477), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_initializer_list] = STATE(7184), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(1899), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_default] = ACTIONS(4072), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(4074), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), + }, + [1621] = { + [sym__expression] = STATE(3439), + [sym__expression_not_binary] = STATE(3021), + [sym_conditional_expression] = STATE(3021), + [sym_assignment_expression] = STATE(3021), + [sym_pointer_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_cast_expression] = STATE(3021), + [sym_sizeof_expression] = STATE(3021), + [sym_offsetof_expression] = STATE(3021), + [sym_generic_expression] = STATE(3021), + [sym_subscript_expression] = STATE(3021), + [sym_call_expression] = STATE(3021), + [sym_gnu_asm_expression] = STATE(3021), + [sym_field_expression] = STATE(3021), + [sym_compound_literal_expression] = STATE(3021), + [sym_parenthesized_expression] = STATE(3021), + [sym_char_literal] = STATE(2901), + [sym_concatenated_string] = STATE(2901), + [sym_string_literal] = STATE(2173), + [sym_null] = STATE(3021), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6616), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3021), + [sym_raw_string_literal] = STATE(2173), + [sym_co_await_expression] = STATE(3021), + [sym_new_expression] = STATE(3021), + [sym_delete_expression] = STATE(3021), + [sym_requires_clause] = STATE(3021), + [sym_requires_expression] = STATE(3021), + [sym_lambda_expression] = STATE(3021), + [sym_lambda_capture_specifier] = STATE(5188), + [sym_fold_expression] = STATE(3021), + [sym_parameter_pack_expansion] = STATE(3021), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3021), + [sym_qualified_type_identifier] = STATE(6616), + [sym_user_defined_literal] = STATE(3021), + [sym_identifier] = ACTIONS(1933), + [anon_sym_LPAREN2] = ACTIONS(4046), + [anon_sym_BANG] = ACTIONS(2081), + [anon_sym_TILDE] = ACTIONS(2081), + [anon_sym_DASH] = ACTIONS(2079), + [anon_sym_PLUS] = ACTIONS(2079), + [anon_sym_STAR] = ACTIONS(4046), + [anon_sym_AMP_AMP] = ACTIONS(4046), + [anon_sym_AMP] = ACTIONS(4048), + [anon_sym_LT] = ACTIONS(4046), + [anon_sym_COLON_COLON] = ACTIONS(2085), + [anon_sym_LBRACE] = ACTIONS(4046), + [anon_sym_LBRACK] = ACTIONS(4046), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(2079), + [anon_sym_compl] = ACTIONS(2079), + [anon_sym_DASH_DASH] = ACTIONS(2087), + [anon_sym_PLUS_PLUS] = ACTIONS(2087), + [anon_sym_sizeof] = ACTIONS(2089), + [anon_sym_offsetof] = ACTIONS(1957), + [anon_sym__Generic] = ACTIONS(1959), + [anon_sym_asm] = ACTIONS(1961), + [anon_sym___asm__] = ACTIONS(1961), + [sym_number_literal] = ACTIONS(1963), + [anon_sym_L_SQUOTE] = ACTIONS(1965), + [anon_sym_u_SQUOTE] = ACTIONS(1965), + [anon_sym_U_SQUOTE] = ACTIONS(1965), + [anon_sym_u8_SQUOTE] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_L_DQUOTE] = ACTIONS(1967), + [anon_sym_u_DQUOTE] = ACTIONS(1967), + [anon_sym_U_DQUOTE] = ACTIONS(1967), + [anon_sym_u8_DQUOTE] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(1967), + [sym_true] = ACTIONS(1969), + [sym_false] = ACTIONS(1969), + [anon_sym_NULL] = ACTIONS(1971), + [anon_sym_nullptr] = ACTIONS(1971), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(2091), + [anon_sym_R_DQUOTE] = ACTIONS(1977), + [anon_sym_LR_DQUOTE] = ACTIONS(1977), + [anon_sym_uR_DQUOTE] = ACTIONS(1977), + [anon_sym_UR_DQUOTE] = ACTIONS(1977), + [anon_sym_u8R_DQUOTE] = ACTIONS(1977), + [anon_sym_co_await] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(1981), + [anon_sym_requires] = ACTIONS(1983), + [sym_this] = ACTIONS(1969), }, [1622] = { - [sym__expression] = STATE(2618), - [sym_conditional_expression] = STATE(2786), - [sym_assignment_expression] = STATE(2786), - [sym_pointer_expression] = STATE(2784), - [sym_unary_expression] = STATE(2786), - [sym_binary_expression] = STATE(2786), - [sym_update_expression] = STATE(2786), - [sym_cast_expression] = STATE(2786), - [sym_sizeof_expression] = STATE(2786), - [sym_subscript_expression] = STATE(2784), - [sym_call_expression] = STATE(2784), - [sym_field_expression] = STATE(2784), - [sym_compound_literal_expression] = STATE(2786), - [sym_parenthesized_expression] = STATE(2784), - [sym_char_literal] = STATE(2651), - [sym_concatenated_string] = STATE(2651), - [sym_string_literal] = STATE(1840), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5891), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(2786), - [sym_raw_string_literal] = STATE(1840), - [sym_co_await_expression] = STATE(2786), - [sym_new_expression] = STATE(2786), - [sym_delete_expression] = STATE(2786), - [sym_requires_clause] = STATE(2786), - [sym_requires_expression] = STATE(2786), - [sym_lambda_expression] = STATE(2786), - [sym_lambda_capture_specifier] = STATE(4484), - [sym_fold_expression] = STATE(2786), - [sym_parameter_pack_expansion] = STATE(2786), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4584), - [sym_qualified_identifier] = STATE(2784), - [sym_qualified_type_identifier] = STATE(5891), - [sym_user_defined_literal] = STATE(2786), - [sym_identifier] = ACTIONS(1567), - [anon_sym_LPAREN2] = ACTIONS(1569), - [anon_sym_BANG] = ACTIONS(1573), - [anon_sym_TILDE] = ACTIONS(1573), - [anon_sym_DASH] = ACTIONS(1571), - [anon_sym_PLUS] = ACTIONS(1571), - [anon_sym_STAR] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(1445), - [anon_sym_COLON_COLON] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1581), - [anon_sym_not] = ACTIONS(1571), - [anon_sym_compl] = ACTIONS(1571), - [anon_sym_DASH_DASH] = ACTIONS(1583), - [anon_sym_PLUS_PLUS] = ACTIONS(1583), - [anon_sym_sizeof] = ACTIONS(1585), - [sym_number_literal] = ACTIONS(1587), - [anon_sym_L_SQUOTE] = ACTIONS(1589), - [anon_sym_u_SQUOTE] = ACTIONS(1589), - [anon_sym_U_SQUOTE] = ACTIONS(1589), - [anon_sym_u8_SQUOTE] = ACTIONS(1589), - [anon_sym_SQUOTE] = ACTIONS(1589), - [anon_sym_L_DQUOTE] = ACTIONS(1591), - [anon_sym_u_DQUOTE] = ACTIONS(1591), - [anon_sym_U_DQUOTE] = ACTIONS(1591), - [anon_sym_u8_DQUOTE] = ACTIONS(1591), - [anon_sym_DQUOTE] = ACTIONS(1591), - [sym_true] = ACTIONS(1593), - [sym_false] = ACTIONS(1593), - [sym_null] = ACTIONS(1593), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1595), - [anon_sym_R_DQUOTE] = ACTIONS(1597), - [anon_sym_LR_DQUOTE] = ACTIONS(1597), - [anon_sym_uR_DQUOTE] = ACTIONS(1597), - [anon_sym_UR_DQUOTE] = ACTIONS(1597), - [anon_sym_u8R_DQUOTE] = ACTIONS(1597), - [anon_sym_co_await] = ACTIONS(1599), - [anon_sym_new] = ACTIONS(1601), - [anon_sym_requires] = ACTIONS(1603), - [sym_this] = ACTIONS(1593), - [sym_nullptr] = ACTIONS(1593), + [sym__expression] = STATE(4068), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3509), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3509), + [sym_call_expression] = STATE(3509), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3509), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3509), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_lambda_default_capture] = STATE(6648), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3509), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3613), + [anon_sym_LPAREN2] = ACTIONS(3615), + [anon_sym_BANG] = ACTIONS(3619), + [anon_sym_TILDE] = ACTIONS(3619), + [anon_sym_DASH] = ACTIONS(3617), + [anon_sym_PLUS] = ACTIONS(3617), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(4040), + [anon_sym_COLON_COLON] = ACTIONS(3621), + [anon_sym_LBRACK] = ACTIONS(1949), + [anon_sym_RBRACK] = ACTIONS(4076), + [anon_sym_EQ] = ACTIONS(4044), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(3617), + [anon_sym_compl] = ACTIONS(3617), + [anon_sym_DASH_DASH] = ACTIONS(3623), + [anon_sym_PLUS_PLUS] = ACTIONS(3623), + [anon_sym_sizeof] = ACTIONS(3625), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(3627), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(3629), + [anon_sym_new] = ACTIONS(3631), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1623] = { - [sym__expression] = STATE(3792), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2954), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym__expression] = STATE(3503), + [sym__expression_not_binary] = STATE(3021), + [sym_conditional_expression] = STATE(3021), + [sym_assignment_expression] = STATE(3021), + [sym_pointer_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_cast_expression] = STATE(3021), + [sym_sizeof_expression] = STATE(3021), + [sym_offsetof_expression] = STATE(3021), + [sym_generic_expression] = STATE(3021), + [sym_subscript_expression] = STATE(3021), + [sym_call_expression] = STATE(3021), + [sym_gnu_asm_expression] = STATE(3021), + [sym_field_expression] = STATE(3021), + [sym_compound_literal_expression] = STATE(3021), + [sym_parenthesized_expression] = STATE(3021), + [sym_char_literal] = STATE(2901), + [sym_concatenated_string] = STATE(2901), + [sym_string_literal] = STATE(2173), + [sym_null] = STATE(3021), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6616), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3021), + [sym_raw_string_literal] = STATE(2173), + [sym_co_await_expression] = STATE(3021), + [sym_new_expression] = STATE(3021), + [sym_delete_expression] = STATE(3021), + [sym_requires_clause] = STATE(3021), + [sym_requires_expression] = STATE(3021), + [sym_lambda_expression] = STATE(3021), + [sym_lambda_capture_specifier] = STATE(5188), + [sym_fold_expression] = STATE(3021), + [sym_parameter_pack_expansion] = STATE(3021), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3021), + [sym_qualified_type_identifier] = STATE(6616), + [sym_user_defined_literal] = STATE(3021), + [sym_identifier] = ACTIONS(1933), + [anon_sym_LPAREN2] = ACTIONS(4046), + [anon_sym_BANG] = ACTIONS(2081), + [anon_sym_TILDE] = ACTIONS(2081), + [anon_sym_DASH] = ACTIONS(2079), + [anon_sym_PLUS] = ACTIONS(2079), + [anon_sym_STAR] = ACTIONS(4046), + [anon_sym_AMP_AMP] = ACTIONS(4046), + [anon_sym_AMP] = ACTIONS(4048), + [anon_sym_LT] = ACTIONS(4046), + [anon_sym_COLON_COLON] = ACTIONS(2085), + [anon_sym_LBRACE] = ACTIONS(4046), + [anon_sym_LBRACK] = ACTIONS(4046), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(2079), + [anon_sym_compl] = ACTIONS(2079), + [anon_sym_DASH_DASH] = ACTIONS(2087), + [anon_sym_PLUS_PLUS] = ACTIONS(2087), + [anon_sym_sizeof] = ACTIONS(2089), + [anon_sym_offsetof] = ACTIONS(1957), + [anon_sym__Generic] = ACTIONS(1959), + [anon_sym_asm] = ACTIONS(1961), + [anon_sym___asm__] = ACTIONS(1961), + [sym_number_literal] = ACTIONS(1963), + [anon_sym_L_SQUOTE] = ACTIONS(1965), + [anon_sym_u_SQUOTE] = ACTIONS(1965), + [anon_sym_U_SQUOTE] = ACTIONS(1965), + [anon_sym_u8_SQUOTE] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_L_DQUOTE] = ACTIONS(1967), + [anon_sym_u_DQUOTE] = ACTIONS(1967), + [anon_sym_U_DQUOTE] = ACTIONS(1967), + [anon_sym_u8_DQUOTE] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(1967), + [sym_true] = ACTIONS(1969), + [sym_false] = ACTIONS(1969), + [anon_sym_NULL] = ACTIONS(1971), + [anon_sym_nullptr] = ACTIONS(1971), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(2091), + [anon_sym_R_DQUOTE] = ACTIONS(1977), + [anon_sym_LR_DQUOTE] = ACTIONS(1977), + [anon_sym_uR_DQUOTE] = ACTIONS(1977), + [anon_sym_UR_DQUOTE] = ACTIONS(1977), + [anon_sym_u8R_DQUOTE] = ACTIONS(1977), + [anon_sym_co_await] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(1981), + [anon_sym_requires] = ACTIONS(1983), + [sym_this] = ACTIONS(1969), + }, + [1624] = { + [sym__expression] = STATE(4017), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(4046), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), + [anon_sym_STAR] = ACTIONS(4046), + [anon_sym_AMP_AMP] = ACTIONS(4046), + [anon_sym_AMP] = ACTIONS(4048), + [anon_sym_LT] = ACTIONS(4046), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(4046), + [anon_sym_LBRACK] = ACTIONS(4046), + [sym_primitive_type] = ACTIONS(1951), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), - }, - [1624] = { - [sym__expression] = STATE(2625), - [sym_conditional_expression] = STATE(2786), - [sym_assignment_expression] = STATE(2786), - [sym_pointer_expression] = STATE(2784), - [sym_unary_expression] = STATE(2786), - [sym_binary_expression] = STATE(2786), - [sym_update_expression] = STATE(2786), - [sym_cast_expression] = STATE(2786), - [sym_sizeof_expression] = STATE(2786), - [sym_subscript_expression] = STATE(2784), - [sym_call_expression] = STATE(2784), - [sym_field_expression] = STATE(2784), - [sym_compound_literal_expression] = STATE(2786), - [sym_parenthesized_expression] = STATE(2784), - [sym_char_literal] = STATE(2651), - [sym_concatenated_string] = STATE(2651), - [sym_string_literal] = STATE(1840), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5891), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(2786), - [sym_raw_string_literal] = STATE(1840), - [sym_co_await_expression] = STATE(2786), - [sym_new_expression] = STATE(2786), - [sym_delete_expression] = STATE(2786), - [sym_requires_clause] = STATE(2786), - [sym_requires_expression] = STATE(2786), - [sym_lambda_expression] = STATE(2786), - [sym_lambda_capture_specifier] = STATE(4484), - [sym_fold_expression] = STATE(2786), - [sym_parameter_pack_expansion] = STATE(2786), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4584), - [sym_qualified_identifier] = STATE(2784), - [sym_qualified_type_identifier] = STATE(5891), - [sym_user_defined_literal] = STATE(2786), - [sym_identifier] = ACTIONS(1567), - [anon_sym_LPAREN2] = ACTIONS(1569), - [anon_sym_BANG] = ACTIONS(1573), - [anon_sym_TILDE] = ACTIONS(1573), - [anon_sym_DASH] = ACTIONS(1571), - [anon_sym_PLUS] = ACTIONS(1571), - [anon_sym_STAR] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(1445), - [anon_sym_COLON_COLON] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(3755), - [sym_primitive_type] = ACTIONS(1581), - [anon_sym_not] = ACTIONS(1571), - [anon_sym_compl] = ACTIONS(1571), - [anon_sym_DASH_DASH] = ACTIONS(1583), - [anon_sym_PLUS_PLUS] = ACTIONS(1583), - [anon_sym_sizeof] = ACTIONS(1585), - [sym_number_literal] = ACTIONS(1587), - [anon_sym_L_SQUOTE] = ACTIONS(1589), - [anon_sym_u_SQUOTE] = ACTIONS(1589), - [anon_sym_U_SQUOTE] = ACTIONS(1589), - [anon_sym_u8_SQUOTE] = ACTIONS(1589), - [anon_sym_SQUOTE] = ACTIONS(1589), - [anon_sym_L_DQUOTE] = ACTIONS(1591), - [anon_sym_u_DQUOTE] = ACTIONS(1591), - [anon_sym_U_DQUOTE] = ACTIONS(1591), - [anon_sym_u8_DQUOTE] = ACTIONS(1591), - [anon_sym_DQUOTE] = ACTIONS(1591), - [sym_true] = ACTIONS(1593), - [sym_false] = ACTIONS(1593), - [sym_null] = ACTIONS(1593), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1595), - [anon_sym_R_DQUOTE] = ACTIONS(1597), - [anon_sym_LR_DQUOTE] = ACTIONS(1597), - [anon_sym_uR_DQUOTE] = ACTIONS(1597), - [anon_sym_UR_DQUOTE] = ACTIONS(1597), - [anon_sym_u8R_DQUOTE] = ACTIONS(1597), - [anon_sym_co_await] = ACTIONS(1599), - [anon_sym_new] = ACTIONS(1601), - [anon_sym_requires] = ACTIONS(1603), - [sym_this] = ACTIONS(1593), - [sym_nullptr] = ACTIONS(1593), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1625] = { - [sym__expression] = STATE(2631), - [sym_conditional_expression] = STATE(2786), - [sym_assignment_expression] = STATE(2786), - [sym_pointer_expression] = STATE(2784), - [sym_unary_expression] = STATE(2786), - [sym_binary_expression] = STATE(2786), - [sym_update_expression] = STATE(2786), - [sym_cast_expression] = STATE(2786), - [sym_sizeof_expression] = STATE(2786), - [sym_subscript_expression] = STATE(2784), - [sym_call_expression] = STATE(2784), - [sym_field_expression] = STATE(2784), - [sym_compound_literal_expression] = STATE(2786), - [sym_parenthesized_expression] = STATE(2784), - [sym_char_literal] = STATE(2651), - [sym_concatenated_string] = STATE(2651), - [sym_string_literal] = STATE(1840), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5891), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(2786), - [sym_raw_string_literal] = STATE(1840), - [sym_co_await_expression] = STATE(2786), - [sym_new_expression] = STATE(2786), - [sym_delete_expression] = STATE(2786), - [sym_requires_clause] = STATE(2786), - [sym_requires_expression] = STATE(2786), - [sym_lambda_expression] = STATE(2786), - [sym_lambda_capture_specifier] = STATE(4484), - [sym_fold_expression] = STATE(2786), - [sym_parameter_pack_expansion] = STATE(2786), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4584), - [sym_qualified_identifier] = STATE(2784), - [sym_qualified_type_identifier] = STATE(5891), - [sym_user_defined_literal] = STATE(2786), - [sym_identifier] = ACTIONS(1567), - [anon_sym_LPAREN2] = ACTIONS(1569), - [anon_sym_BANG] = ACTIONS(1573), - [anon_sym_TILDE] = ACTIONS(1573), - [anon_sym_DASH] = ACTIONS(1571), - [anon_sym_PLUS] = ACTIONS(1571), - [anon_sym_STAR] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(1445), - [anon_sym_COLON_COLON] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1581), - [anon_sym_not] = ACTIONS(1571), - [anon_sym_compl] = ACTIONS(1571), - [anon_sym_DASH_DASH] = ACTIONS(1583), - [anon_sym_PLUS_PLUS] = ACTIONS(1583), - [anon_sym_sizeof] = ACTIONS(1585), - [sym_number_literal] = ACTIONS(1587), - [anon_sym_L_SQUOTE] = ACTIONS(1589), - [anon_sym_u_SQUOTE] = ACTIONS(1589), - [anon_sym_U_SQUOTE] = ACTIONS(1589), - [anon_sym_u8_SQUOTE] = ACTIONS(1589), - [anon_sym_SQUOTE] = ACTIONS(1589), - [anon_sym_L_DQUOTE] = ACTIONS(1591), - [anon_sym_u_DQUOTE] = ACTIONS(1591), - [anon_sym_U_DQUOTE] = ACTIONS(1591), - [anon_sym_u8_DQUOTE] = ACTIONS(1591), - [anon_sym_DQUOTE] = ACTIONS(1591), - [sym_true] = ACTIONS(1593), - [sym_false] = ACTIONS(1593), - [sym_null] = ACTIONS(1593), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1595), - [anon_sym_R_DQUOTE] = ACTIONS(1597), - [anon_sym_LR_DQUOTE] = ACTIONS(1597), - [anon_sym_uR_DQUOTE] = ACTIONS(1597), - [anon_sym_UR_DQUOTE] = ACTIONS(1597), - [anon_sym_u8R_DQUOTE] = ACTIONS(1597), - [anon_sym_co_await] = ACTIONS(1599), - [anon_sym_new] = ACTIONS(1601), - [anon_sym_requires] = ACTIONS(1603), - [sym_this] = ACTIONS(1593), - [sym_nullptr] = ACTIONS(1593), + [sym__expression] = STATE(4068), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3509), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3509), + [sym_call_expression] = STATE(3509), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3509), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3509), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_lambda_default_capture] = STATE(6648), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3509), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3613), + [anon_sym_LPAREN2] = ACTIONS(3615), + [anon_sym_BANG] = ACTIONS(3619), + [anon_sym_TILDE] = ACTIONS(3619), + [anon_sym_DASH] = ACTIONS(3617), + [anon_sym_PLUS] = ACTIONS(3617), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(4040), + [anon_sym_COLON_COLON] = ACTIONS(3621), + [anon_sym_LBRACK] = ACTIONS(1949), + [anon_sym_RBRACK] = ACTIONS(4078), + [anon_sym_EQ] = ACTIONS(4044), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(3617), + [anon_sym_compl] = ACTIONS(3617), + [anon_sym_DASH_DASH] = ACTIONS(3623), + [anon_sym_PLUS_PLUS] = ACTIONS(3623), + [anon_sym_sizeof] = ACTIONS(3625), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(3627), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(3629), + [anon_sym_new] = ACTIONS(3631), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1626] = { - [sym__expression] = STATE(2934), - [sym_conditional_expression] = STATE(2574), - [sym_assignment_expression] = STATE(2574), - [sym_pointer_expression] = STATE(2578), - [sym_unary_expression] = STATE(2574), - [sym_binary_expression] = STATE(2574), - [sym_update_expression] = STATE(2574), - [sym_cast_expression] = STATE(2574), - [sym_sizeof_expression] = STATE(2574), - [sym_subscript_expression] = STATE(2578), - [sym_call_expression] = STATE(2578), - [sym_field_expression] = STATE(2578), - [sym_compound_literal_expression] = STATE(2574), - [sym_parenthesized_expression] = STATE(2578), - [sym_char_literal] = STATE(2207), - [sym_concatenated_string] = STATE(2207), - [sym_string_literal] = STATE(1820), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5944), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(2574), - [sym_raw_string_literal] = STATE(1820), - [sym_co_await_expression] = STATE(2574), - [sym_new_expression] = STATE(2574), - [sym_delete_expression] = STATE(2574), - [sym_requires_clause] = STATE(2574), - [sym_requires_expression] = STATE(2574), - [sym_lambda_expression] = STATE(2574), - [sym_lambda_capture_specifier] = STATE(4479), - [sym_fold_expression] = STATE(2574), - [sym_parameter_pack_expansion] = STATE(2574), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2578), - [sym_qualified_type_identifier] = STATE(5944), - [sym_user_defined_literal] = STATE(2574), - [sym_identifier] = ACTIONS(1523), - [anon_sym_LPAREN2] = ACTIONS(1647), - [anon_sym_BANG] = ACTIONS(1651), - [anon_sym_TILDE] = ACTIONS(1651), - [anon_sym_DASH] = ACTIONS(1649), - [anon_sym_PLUS] = ACTIONS(1649), - [anon_sym_STAR] = ACTIONS(3081), - [anon_sym_AMP] = ACTIONS(3081), - [anon_sym_COLON_COLON] = ACTIONS(1655), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(1649), - [anon_sym_compl] = ACTIONS(1649), - [anon_sym_DASH_DASH] = ACTIONS(1657), - [anon_sym_PLUS_PLUS] = ACTIONS(1657), - [anon_sym_sizeof] = ACTIONS(1659), - [sym_number_literal] = ACTIONS(1547), - [anon_sym_L_SQUOTE] = ACTIONS(1549), - [anon_sym_u_SQUOTE] = ACTIONS(1549), - [anon_sym_U_SQUOTE] = ACTIONS(1549), - [anon_sym_u8_SQUOTE] = ACTIONS(1549), - [anon_sym_SQUOTE] = ACTIONS(1549), - [anon_sym_L_DQUOTE] = ACTIONS(1551), - [anon_sym_u_DQUOTE] = ACTIONS(1551), - [anon_sym_U_DQUOTE] = ACTIONS(1551), - [anon_sym_u8_DQUOTE] = ACTIONS(1551), - [anon_sym_DQUOTE] = ACTIONS(1551), - [sym_true] = ACTIONS(1553), - [sym_false] = ACTIONS(1553), - [sym_null] = ACTIONS(1553), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1661), - [anon_sym_R_DQUOTE] = ACTIONS(1559), - [anon_sym_LR_DQUOTE] = ACTIONS(1559), - [anon_sym_uR_DQUOTE] = ACTIONS(1559), - [anon_sym_UR_DQUOTE] = ACTIONS(1559), - [anon_sym_u8R_DQUOTE] = ACTIONS(1559), - [anon_sym_co_await] = ACTIONS(1663), - [anon_sym_new] = ACTIONS(1563), - [anon_sym_requires] = ACTIONS(1565), - [sym_this] = ACTIONS(1553), - [sym_nullptr] = ACTIONS(1553), + [sym__expression] = STATE(4068), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3509), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3509), + [sym_call_expression] = STATE(3509), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3509), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3509), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_lambda_default_capture] = STATE(6648), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3509), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3613), + [anon_sym_LPAREN2] = ACTIONS(3615), + [anon_sym_BANG] = ACTIONS(3619), + [anon_sym_TILDE] = ACTIONS(3619), + [anon_sym_DASH] = ACTIONS(3617), + [anon_sym_PLUS] = ACTIONS(3617), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(4040), + [anon_sym_COLON_COLON] = ACTIONS(3621), + [anon_sym_LBRACK] = ACTIONS(1949), + [anon_sym_RBRACK] = ACTIONS(4080), + [anon_sym_EQ] = ACTIONS(4044), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(3617), + [anon_sym_compl] = ACTIONS(3617), + [anon_sym_DASH_DASH] = ACTIONS(3623), + [anon_sym_PLUS_PLUS] = ACTIONS(3623), + [anon_sym_sizeof] = ACTIONS(3625), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(3627), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(3629), + [anon_sym_new] = ACTIONS(3631), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1627] = { - [sym__expression] = STATE(2941), - [sym_conditional_expression] = STATE(3035), - [sym_assignment_expression] = STATE(3035), - [sym_pointer_expression] = STATE(2713), - [sym_unary_expression] = STATE(3035), - [sym_binary_expression] = STATE(3035), - [sym_update_expression] = STATE(3035), - [sym_cast_expression] = STATE(3035), - [sym_sizeof_expression] = STATE(3035), - [sym_subscript_expression] = STATE(2713), - [sym_call_expression] = STATE(2713), - [sym_field_expression] = STATE(2713), - [sym_compound_literal_expression] = STATE(3035), - [sym_parenthesized_expression] = STATE(2713), - [sym_char_literal] = STATE(3013), - [sym_concatenated_string] = STATE(3013), - [sym_string_literal] = STATE(1900), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5990), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3035), - [sym_raw_string_literal] = STATE(1900), - [sym_co_await_expression] = STATE(3035), - [sym_new_expression] = STATE(3035), - [sym_delete_expression] = STATE(3035), - [sym_requires_clause] = STATE(3035), - [sym_requires_expression] = STATE(3035), - [sym_lambda_expression] = STATE(3035), - [sym_lambda_capture_specifier] = STATE(4465), - [sym_fold_expression] = STATE(3035), - [sym_parameter_pack_expansion] = STATE(3035), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4584), - [sym_qualified_identifier] = STATE(2713), - [sym_qualified_type_identifier] = STATE(5990), - [sym_user_defined_literal] = STATE(3035), - [sym_identifier] = ACTIONS(1643), - [anon_sym_LPAREN2] = ACTIONS(1439), - [anon_sym_BANG] = ACTIONS(1441), - [anon_sym_TILDE] = ACTIONS(1441), - [anon_sym_DASH] = ACTIONS(1443), - [anon_sym_PLUS] = ACTIONS(1443), - [anon_sym_STAR] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(1445), - [anon_sym_COLON_COLON] = ACTIONS(1447), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1581), - [anon_sym_not] = ACTIONS(1443), - [anon_sym_compl] = ACTIONS(1443), - [anon_sym_DASH_DASH] = ACTIONS(1459), - [anon_sym_PLUS_PLUS] = ACTIONS(1459), - [anon_sym_sizeof] = ACTIONS(1461), - [sym_number_literal] = ACTIONS(1463), - [anon_sym_L_SQUOTE] = ACTIONS(1465), - [anon_sym_u_SQUOTE] = ACTIONS(1465), - [anon_sym_U_SQUOTE] = ACTIONS(1465), - [anon_sym_u8_SQUOTE] = ACTIONS(1465), - [anon_sym_SQUOTE] = ACTIONS(1465), - [anon_sym_L_DQUOTE] = ACTIONS(1467), - [anon_sym_u_DQUOTE] = ACTIONS(1467), - [anon_sym_U_DQUOTE] = ACTIONS(1467), - [anon_sym_u8_DQUOTE] = ACTIONS(1467), - [anon_sym_DQUOTE] = ACTIONS(1467), - [sym_true] = ACTIONS(1469), - [sym_false] = ACTIONS(1469), - [sym_null] = ACTIONS(1469), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1473), - [anon_sym_R_DQUOTE] = ACTIONS(1475), - [anon_sym_LR_DQUOTE] = ACTIONS(1475), - [anon_sym_uR_DQUOTE] = ACTIONS(1475), - [anon_sym_UR_DQUOTE] = ACTIONS(1475), - [anon_sym_u8R_DQUOTE] = ACTIONS(1475), - [anon_sym_co_await] = ACTIONS(1477), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_requires] = ACTIONS(1481), - [sym_this] = ACTIONS(1469), - [sym_nullptr] = ACTIONS(1469), + [sym__expression] = STATE(4068), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3509), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3509), + [sym_call_expression] = STATE(3509), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3509), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3509), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_lambda_default_capture] = STATE(6648), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3509), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3613), + [anon_sym_LPAREN2] = ACTIONS(3615), + [anon_sym_BANG] = ACTIONS(3619), + [anon_sym_TILDE] = ACTIONS(3619), + [anon_sym_DASH] = ACTIONS(3617), + [anon_sym_PLUS] = ACTIONS(3617), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(4040), + [anon_sym_COLON_COLON] = ACTIONS(3621), + [anon_sym_LBRACK] = ACTIONS(1949), + [anon_sym_RBRACK] = ACTIONS(4082), + [anon_sym_EQ] = ACTIONS(4044), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(3617), + [anon_sym_compl] = ACTIONS(3617), + [anon_sym_DASH_DASH] = ACTIONS(3623), + [anon_sym_PLUS_PLUS] = ACTIONS(3623), + [anon_sym_sizeof] = ACTIONS(3625), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(3627), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(3629), + [anon_sym_new] = ACTIONS(3631), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1628] = { - [sym__expression] = STATE(2953), - [sym_conditional_expression] = STATE(2574), - [sym_assignment_expression] = STATE(2574), - [sym_pointer_expression] = STATE(2578), - [sym_unary_expression] = STATE(2574), - [sym_binary_expression] = STATE(2574), - [sym_update_expression] = STATE(2574), - [sym_cast_expression] = STATE(2574), - [sym_sizeof_expression] = STATE(2574), - [sym_subscript_expression] = STATE(2578), - [sym_call_expression] = STATE(2578), - [sym_field_expression] = STATE(2578), - [sym_compound_literal_expression] = STATE(2574), - [sym_parenthesized_expression] = STATE(2578), - [sym_char_literal] = STATE(2207), - [sym_concatenated_string] = STATE(2207), - [sym_string_literal] = STATE(1820), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5944), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(2574), - [sym_raw_string_literal] = STATE(1820), - [sym_co_await_expression] = STATE(2574), - [sym_new_expression] = STATE(2574), - [sym_delete_expression] = STATE(2574), - [sym_requires_clause] = STATE(2574), - [sym_requires_expression] = STATE(2574), - [sym_lambda_expression] = STATE(2574), - [sym_lambda_capture_specifier] = STATE(4479), - [sym_fold_expression] = STATE(2574), - [sym_parameter_pack_expansion] = STATE(2574), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2578), - [sym_qualified_type_identifier] = STATE(5944), - [sym_user_defined_literal] = STATE(2574), - [sym_identifier] = ACTIONS(1523), - [anon_sym_LPAREN2] = ACTIONS(1647), - [anon_sym_BANG] = ACTIONS(1651), - [anon_sym_TILDE] = ACTIONS(1651), - [anon_sym_DASH] = ACTIONS(1649), - [anon_sym_PLUS] = ACTIONS(1649), - [anon_sym_STAR] = ACTIONS(3081), - [anon_sym_AMP] = ACTIONS(3081), - [anon_sym_COLON_COLON] = ACTIONS(1655), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(1649), - [anon_sym_compl] = ACTIONS(1649), - [anon_sym_DASH_DASH] = ACTIONS(1657), - [anon_sym_PLUS_PLUS] = ACTIONS(1657), - [anon_sym_sizeof] = ACTIONS(1659), - [sym_number_literal] = ACTIONS(1547), - [anon_sym_L_SQUOTE] = ACTIONS(1549), - [anon_sym_u_SQUOTE] = ACTIONS(1549), - [anon_sym_U_SQUOTE] = ACTIONS(1549), - [anon_sym_u8_SQUOTE] = ACTIONS(1549), - [anon_sym_SQUOTE] = ACTIONS(1549), - [anon_sym_L_DQUOTE] = ACTIONS(1551), - [anon_sym_u_DQUOTE] = ACTIONS(1551), - [anon_sym_U_DQUOTE] = ACTIONS(1551), - [anon_sym_u8_DQUOTE] = ACTIONS(1551), - [anon_sym_DQUOTE] = ACTIONS(1551), - [sym_true] = ACTIONS(1553), - [sym_false] = ACTIONS(1553), - [sym_null] = ACTIONS(1553), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1661), - [anon_sym_R_DQUOTE] = ACTIONS(1559), - [anon_sym_LR_DQUOTE] = ACTIONS(1559), - [anon_sym_uR_DQUOTE] = ACTIONS(1559), - [anon_sym_UR_DQUOTE] = ACTIONS(1559), - [anon_sym_u8R_DQUOTE] = ACTIONS(1559), - [anon_sym_co_await] = ACTIONS(1663), - [anon_sym_new] = ACTIONS(1563), - [anon_sym_requires] = ACTIONS(1565), - [sym_this] = ACTIONS(1553), - [sym_nullptr] = ACTIONS(1553), + [sym__expression] = STATE(4098), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_initializer_list] = STATE(6259), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_RPAREN] = ACTIONS(4084), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(1899), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1629] = { - [sym__expression] = STATE(3590), - [sym_conditional_expression] = STATE(3855), - [sym_assignment_expression] = STATE(3855), - [sym_pointer_expression] = STATE(2954), - [sym_unary_expression] = STATE(3855), - [sym_binary_expression] = STATE(3855), - [sym_update_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_subscript_expression] = STATE(2954), - [sym_call_expression] = STATE(2954), - [sym_field_expression] = STATE(2954), - [sym_compound_literal_expression] = STATE(3855), - [sym_parenthesized_expression] = STATE(2954), - [sym_char_literal] = STATE(3557), - [sym_concatenated_string] = STATE(3557), - [sym_string_literal] = STATE(2955), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5844), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3855), - [sym_raw_string_literal] = STATE(2955), - [sym_co_await_expression] = STATE(3855), - [sym_new_expression] = STATE(3855), - [sym_delete_expression] = STATE(3855), - [sym_requires_clause] = STATE(3855), - [sym_requires_expression] = STATE(3855), - [sym_lambda_expression] = STATE(3855), - [sym_lambda_capture_specifier] = STATE(4501), - [sym_fold_expression] = STATE(3855), - [sym_parameter_pack_expansion] = STATE(3855), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4570), - [sym_qualified_identifier] = STATE(2954), - [sym_qualified_type_identifier] = STATE(5844), - [sym_user_defined_literal] = STATE(3855), - [sym_identifier] = ACTIONS(3023), - [anon_sym_LPAREN2] = ACTIONS(2410), - [anon_sym_BANG] = ACTIONS(2412), - [anon_sym_TILDE] = ACTIONS(2412), - [anon_sym_DASH] = ACTIONS(2414), - [anon_sym_PLUS] = ACTIONS(2414), - [anon_sym_STAR] = ACTIONS(2416), - [anon_sym_AMP] = ACTIONS(2416), - [anon_sym_COLON_COLON] = ACTIONS(2418), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1619), - [anon_sym_not] = ACTIONS(2414), - [anon_sym_compl] = ACTIONS(2414), - [anon_sym_DASH_DASH] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(2432), - [anon_sym_sizeof] = ACTIONS(2434), - [sym_number_literal] = ACTIONS(2436), - [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_L_DQUOTE] = ACTIONS(2440), - [anon_sym_u_DQUOTE] = ACTIONS(2440), - [anon_sym_U_DQUOTE] = ACTIONS(2440), - [anon_sym_u8_DQUOTE] = ACTIONS(2440), - [anon_sym_DQUOTE] = ACTIONS(2440), - [sym_true] = ACTIONS(2442), - [sym_false] = ACTIONS(2442), - [sym_null] = ACTIONS(2442), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(2452), - [anon_sym_R_DQUOTE] = ACTIONS(2454), - [anon_sym_LR_DQUOTE] = ACTIONS(2454), - [anon_sym_uR_DQUOTE] = ACTIONS(2454), - [anon_sym_UR_DQUOTE] = ACTIONS(2454), - [anon_sym_u8R_DQUOTE] = ACTIONS(2454), - [anon_sym_co_await] = ACTIONS(2456), - [anon_sym_new] = ACTIONS(2458), - [anon_sym_requires] = ACTIONS(2460), - [sym_this] = ACTIONS(2442), - [sym_nullptr] = ACTIONS(2442), + [sym__expression] = STATE(4198), + [sym__expression_not_binary] = STATE(4369), + [sym_conditional_expression] = STATE(4369), + [sym_assignment_expression] = STATE(4369), + [sym_pointer_expression] = STATE(3541), + [sym_unary_expression] = STATE(4369), + [sym_binary_expression] = STATE(4369), + [sym_update_expression] = STATE(4369), + [sym_cast_expression] = STATE(4369), + [sym_sizeof_expression] = STATE(4369), + [sym_offsetof_expression] = STATE(4369), + [sym_generic_expression] = STATE(4369), + [sym_subscript_expression] = STATE(3541), + [sym_call_expression] = STATE(3541), + [sym_gnu_asm_expression] = STATE(4369), + [sym_field_expression] = STATE(3541), + [sym_compound_literal_expression] = STATE(4369), + [sym_parenthesized_expression] = STATE(3541), + [sym_char_literal] = STATE(4131), + [sym_concatenated_string] = STATE(4131), + [sym_string_literal] = STATE(3542), + [sym_null] = STATE(4369), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6872), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(4369), + [sym_raw_string_literal] = STATE(3542), + [sym_co_await_expression] = STATE(4369), + [sym_new_expression] = STATE(4369), + [sym_delete_expression] = STATE(4369), + [sym_requires_clause] = STATE(4369), + [sym_requires_expression] = STATE(4369), + [sym_lambda_expression] = STATE(4369), + [sym_lambda_capture_specifier] = STATE(5208), + [sym_fold_expression] = STATE(4369), + [sym_parameter_pack_expansion] = STATE(4369), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5289), + [sym_qualified_identifier] = STATE(3541), + [sym_qualified_type_identifier] = STATE(6872), + [sym_user_defined_literal] = STATE(4369), + [sym_identifier] = ACTIONS(3599), + [anon_sym_LPAREN2] = ACTIONS(4046), + [anon_sym_BANG] = ACTIONS(2620), + [anon_sym_TILDE] = ACTIONS(2620), + [anon_sym_DASH] = ACTIONS(2622), + [anon_sym_PLUS] = ACTIONS(2622), + [anon_sym_STAR] = ACTIONS(4046), + [anon_sym_AMP_AMP] = ACTIONS(4046), + [anon_sym_AMP] = ACTIONS(4048), + [anon_sym_LT] = ACTIONS(4046), + [anon_sym_COLON_COLON] = ACTIONS(2626), + [anon_sym_LBRACE] = ACTIONS(4046), + [anon_sym_LBRACK] = ACTIONS(4046), + [sym_primitive_type] = ACTIONS(2045), + [anon_sym_not] = ACTIONS(2622), + [anon_sym_compl] = ACTIONS(2622), + [anon_sym_DASH_DASH] = ACTIONS(2640), + [anon_sym_PLUS_PLUS] = ACTIONS(2640), + [anon_sym_sizeof] = ACTIONS(2642), + [anon_sym_offsetof] = ACTIONS(2644), + [anon_sym__Generic] = ACTIONS(2646), + [anon_sym_asm] = ACTIONS(2648), + [anon_sym___asm__] = ACTIONS(2648), + [sym_number_literal] = ACTIONS(2650), + [anon_sym_L_SQUOTE] = ACTIONS(2652), + [anon_sym_u_SQUOTE] = ACTIONS(2652), + [anon_sym_U_SQUOTE] = ACTIONS(2652), + [anon_sym_u8_SQUOTE] = ACTIONS(2652), + [anon_sym_SQUOTE] = ACTIONS(2652), + [anon_sym_L_DQUOTE] = ACTIONS(2654), + [anon_sym_u_DQUOTE] = ACTIONS(2654), + [anon_sym_U_DQUOTE] = ACTIONS(2654), + [anon_sym_u8_DQUOTE] = ACTIONS(2654), + [anon_sym_DQUOTE] = ACTIONS(2654), + [sym_true] = ACTIONS(2656), + [sym_false] = ACTIONS(2656), + [anon_sym_NULL] = ACTIONS(2658), + [anon_sym_nullptr] = ACTIONS(2658), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(2668), + [anon_sym_R_DQUOTE] = ACTIONS(2670), + [anon_sym_LR_DQUOTE] = ACTIONS(2670), + [anon_sym_uR_DQUOTE] = ACTIONS(2670), + [anon_sym_UR_DQUOTE] = ACTIONS(2670), + [anon_sym_u8R_DQUOTE] = ACTIONS(2670), + [anon_sym_co_await] = ACTIONS(2672), + [anon_sym_new] = ACTIONS(2674), + [anon_sym_requires] = ACTIONS(2676), + [sym_this] = ACTIONS(2656), }, [1630] = { - [sym__expression] = STATE(2847), - [sym_conditional_expression] = STATE(2940), - [sym_assignment_expression] = STATE(2940), - [sym_pointer_expression] = STATE(2933), - [sym_unary_expression] = STATE(2940), - [sym_binary_expression] = STATE(2940), - [sym_update_expression] = STATE(2940), - [sym_cast_expression] = STATE(2940), - [sym_sizeof_expression] = STATE(2940), - [sym_subscript_expression] = STATE(2933), - [sym_call_expression] = STATE(2933), - [sym_field_expression] = STATE(2933), - [sym_compound_literal_expression] = STATE(2940), - [sym_parenthesized_expression] = STATE(2933), - [sym_char_literal] = STATE(2845), - [sym_concatenated_string] = STATE(2845), - [sym_string_literal] = STATE(1861), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5801), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(2940), - [sym_raw_string_literal] = STATE(1861), - [sym_co_await_expression] = STATE(2940), - [sym_new_expression] = STATE(2940), - [sym_delete_expression] = STATE(2940), - [sym_requires_clause] = STATE(2940), - [sym_requires_expression] = STATE(2940), - [sym_lambda_expression] = STATE(2940), - [sym_lambda_capture_specifier] = STATE(4464), - [sym_fold_expression] = STATE(2940), - [sym_parameter_pack_expansion] = STATE(2940), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4570), - [sym_qualified_identifier] = STATE(2933), - [sym_qualified_type_identifier] = STATE(5801), - [sym_user_defined_literal] = STATE(2940), - [sym_identifier] = ACTIONS(1605), - [anon_sym_LPAREN2] = ACTIONS(1607), - [anon_sym_BANG] = ACTIONS(1611), - [anon_sym_TILDE] = ACTIONS(1611), - [anon_sym_DASH] = ACTIONS(1609), - [anon_sym_PLUS] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(2416), - [anon_sym_AMP] = ACTIONS(2416), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1619), - [anon_sym_not] = ACTIONS(1609), - [anon_sym_compl] = ACTIONS(1609), - [anon_sym_DASH_DASH] = ACTIONS(1621), - [anon_sym_PLUS_PLUS] = ACTIONS(1621), - [anon_sym_sizeof] = ACTIONS(1623), - [sym_number_literal] = ACTIONS(1625), - [anon_sym_L_SQUOTE] = ACTIONS(1627), - [anon_sym_u_SQUOTE] = ACTIONS(1627), - [anon_sym_U_SQUOTE] = ACTIONS(1627), - [anon_sym_u8_SQUOTE] = ACTIONS(1627), - [anon_sym_SQUOTE] = ACTIONS(1627), - [anon_sym_L_DQUOTE] = ACTIONS(1629), - [anon_sym_u_DQUOTE] = ACTIONS(1629), - [anon_sym_U_DQUOTE] = ACTIONS(1629), - [anon_sym_u8_DQUOTE] = ACTIONS(1629), - [anon_sym_DQUOTE] = ACTIONS(1629), - [sym_true] = ACTIONS(1631), - [sym_false] = ACTIONS(1631), - [sym_null] = ACTIONS(1631), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1633), - [anon_sym_R_DQUOTE] = ACTIONS(1635), - [anon_sym_LR_DQUOTE] = ACTIONS(1635), - [anon_sym_uR_DQUOTE] = ACTIONS(1635), - [anon_sym_UR_DQUOTE] = ACTIONS(1635), - [anon_sym_u8R_DQUOTE] = ACTIONS(1635), - [anon_sym_co_await] = ACTIONS(1637), - [anon_sym_new] = ACTIONS(1639), - [anon_sym_requires] = ACTIONS(1641), - [sym_this] = ACTIONS(1631), - [sym_nullptr] = ACTIONS(1631), + [sym__expression] = STATE(4500), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_initializer_list] = STATE(7690), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(1899), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_default] = ACTIONS(4086), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(4088), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1631] = { - [sym__expression] = STATE(2925), - [sym_conditional_expression] = STATE(3035), - [sym_assignment_expression] = STATE(3035), - [sym_pointer_expression] = STATE(2713), - [sym_unary_expression] = STATE(3035), - [sym_binary_expression] = STATE(3035), - [sym_update_expression] = STATE(3035), - [sym_cast_expression] = STATE(3035), - [sym_sizeof_expression] = STATE(3035), - [sym_subscript_expression] = STATE(2713), - [sym_call_expression] = STATE(2713), - [sym_field_expression] = STATE(2713), - [sym_compound_literal_expression] = STATE(3035), - [sym_parenthesized_expression] = STATE(2713), - [sym_char_literal] = STATE(3013), - [sym_concatenated_string] = STATE(3013), - [sym_string_literal] = STATE(1900), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5990), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3035), - [sym_raw_string_literal] = STATE(1900), - [sym_co_await_expression] = STATE(3035), - [sym_new_expression] = STATE(3035), - [sym_delete_expression] = STATE(3035), - [sym_requires_clause] = STATE(3035), - [sym_requires_expression] = STATE(3035), - [sym_lambda_expression] = STATE(3035), - [sym_lambda_capture_specifier] = STATE(4465), - [sym_fold_expression] = STATE(3035), - [sym_parameter_pack_expansion] = STATE(3035), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4584), - [sym_qualified_identifier] = STATE(2713), - [sym_qualified_type_identifier] = STATE(5990), - [sym_user_defined_literal] = STATE(3035), - [sym_identifier] = ACTIONS(1643), - [anon_sym_LPAREN2] = ACTIONS(1439), - [anon_sym_BANG] = ACTIONS(1441), - [anon_sym_TILDE] = ACTIONS(1441), - [anon_sym_DASH] = ACTIONS(1443), - [anon_sym_PLUS] = ACTIONS(1443), - [anon_sym_STAR] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(1445), - [anon_sym_COLON_COLON] = ACTIONS(1447), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1581), - [anon_sym_not] = ACTIONS(1443), - [anon_sym_compl] = ACTIONS(1443), - [anon_sym_DASH_DASH] = ACTIONS(1459), - [anon_sym_PLUS_PLUS] = ACTIONS(1459), - [anon_sym_sizeof] = ACTIONS(1461), - [sym_number_literal] = ACTIONS(1463), - [anon_sym_L_SQUOTE] = ACTIONS(1465), - [anon_sym_u_SQUOTE] = ACTIONS(1465), - [anon_sym_U_SQUOTE] = ACTIONS(1465), - [anon_sym_u8_SQUOTE] = ACTIONS(1465), - [anon_sym_SQUOTE] = ACTIONS(1465), - [anon_sym_L_DQUOTE] = ACTIONS(1467), - [anon_sym_u_DQUOTE] = ACTIONS(1467), - [anon_sym_U_DQUOTE] = ACTIONS(1467), - [anon_sym_u8_DQUOTE] = ACTIONS(1467), - [anon_sym_DQUOTE] = ACTIONS(1467), - [sym_true] = ACTIONS(1469), - [sym_false] = ACTIONS(1469), - [sym_null] = ACTIONS(1469), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1473), - [anon_sym_R_DQUOTE] = ACTIONS(1475), - [anon_sym_LR_DQUOTE] = ACTIONS(1475), - [anon_sym_uR_DQUOTE] = ACTIONS(1475), - [anon_sym_UR_DQUOTE] = ACTIONS(1475), - [anon_sym_u8R_DQUOTE] = ACTIONS(1475), - [anon_sym_co_await] = ACTIONS(1477), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_requires] = ACTIONS(1481), - [sym_this] = ACTIONS(1469), - [sym_nullptr] = ACTIONS(1469), + [sym__expression] = STATE(3172), + [sym__expression_not_binary] = STATE(3318), + [sym_conditional_expression] = STATE(3318), + [sym_assignment_expression] = STATE(3318), + [sym_pointer_expression] = STATE(3318), + [sym_unary_expression] = STATE(3318), + [sym_binary_expression] = STATE(3318), + [sym_update_expression] = STATE(3318), + [sym_cast_expression] = STATE(3318), + [sym_sizeof_expression] = STATE(3318), + [sym_offsetof_expression] = STATE(3318), + [sym_generic_expression] = STATE(3318), + [sym_subscript_expression] = STATE(3318), + [sym_call_expression] = STATE(3318), + [sym_gnu_asm_expression] = STATE(3318), + [sym_field_expression] = STATE(3318), + [sym_compound_literal_expression] = STATE(3318), + [sym_parenthesized_expression] = STATE(3318), + [sym_char_literal] = STATE(3076), + [sym_concatenated_string] = STATE(3076), + [sym_string_literal] = STATE(2202), + [sym_null] = STATE(3318), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6739), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3318), + [sym_raw_string_literal] = STATE(2202), + [sym_co_await_expression] = STATE(3318), + [sym_new_expression] = STATE(3318), + [sym_delete_expression] = STATE(3318), + [sym_requires_clause] = STATE(3318), + [sym_requires_expression] = STATE(3318), + [sym_lambda_expression] = STATE(3318), + [sym_lambda_capture_specifier] = STATE(5187), + [sym_fold_expression] = STATE(3318), + [sym_parameter_pack_expansion] = STATE(3318), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5232), + [sym_qualified_identifier] = STATE(3318), + [sym_qualified_type_identifier] = STATE(6739), + [sym_user_defined_literal] = STATE(3318), + [sym_identifier] = ACTIONS(1985), + [anon_sym_LPAREN2] = ACTIONS(4046), + [anon_sym_BANG] = ACTIONS(1991), + [anon_sym_TILDE] = ACTIONS(1991), + [anon_sym_DASH] = ACTIONS(1989), + [anon_sym_PLUS] = ACTIONS(1989), + [anon_sym_STAR] = ACTIONS(4046), + [anon_sym_AMP_AMP] = ACTIONS(4046), + [anon_sym_AMP] = ACTIONS(4048), + [anon_sym_LT] = ACTIONS(4046), + [anon_sym_COLON_COLON] = ACTIONS(1995), + [anon_sym_LBRACE] = ACTIONS(4046), + [anon_sym_LBRACK] = ACTIONS(4046), + [sym_primitive_type] = ACTIONS(1999), + [anon_sym_not] = ACTIONS(1989), + [anon_sym_compl] = ACTIONS(1989), + [anon_sym_DASH_DASH] = ACTIONS(2001), + [anon_sym_PLUS_PLUS] = ACTIONS(2001), + [anon_sym_sizeof] = ACTIONS(2003), + [anon_sym_offsetof] = ACTIONS(2005), + [anon_sym__Generic] = ACTIONS(2007), + [anon_sym_asm] = ACTIONS(2009), + [anon_sym___asm__] = ACTIONS(2009), + [sym_number_literal] = ACTIONS(2011), + [anon_sym_L_SQUOTE] = ACTIONS(2013), + [anon_sym_u_SQUOTE] = ACTIONS(2013), + [anon_sym_U_SQUOTE] = ACTIONS(2013), + [anon_sym_u8_SQUOTE] = ACTIONS(2013), + [anon_sym_SQUOTE] = ACTIONS(2013), + [anon_sym_L_DQUOTE] = ACTIONS(2015), + [anon_sym_u_DQUOTE] = ACTIONS(2015), + [anon_sym_U_DQUOTE] = ACTIONS(2015), + [anon_sym_u8_DQUOTE] = ACTIONS(2015), + [anon_sym_DQUOTE] = ACTIONS(2015), + [sym_true] = ACTIONS(2017), + [sym_false] = ACTIONS(2017), + [anon_sym_NULL] = ACTIONS(2019), + [anon_sym_nullptr] = ACTIONS(2019), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(2021), + [anon_sym_R_DQUOTE] = ACTIONS(2023), + [anon_sym_LR_DQUOTE] = ACTIONS(2023), + [anon_sym_uR_DQUOTE] = ACTIONS(2023), + [anon_sym_UR_DQUOTE] = ACTIONS(2023), + [anon_sym_u8R_DQUOTE] = ACTIONS(2023), + [anon_sym_co_await] = ACTIONS(2025), + [anon_sym_new] = ACTIONS(2027), + [anon_sym_requires] = ACTIONS(2029), + [sym_this] = ACTIONS(2017), }, [1632] = { - [sym__expression] = STATE(2862), - [sym_conditional_expression] = STATE(2940), - [sym_assignment_expression] = STATE(2940), - [sym_pointer_expression] = STATE(2933), - [sym_unary_expression] = STATE(2940), - [sym_binary_expression] = STATE(2940), - [sym_update_expression] = STATE(2940), - [sym_cast_expression] = STATE(2940), - [sym_sizeof_expression] = STATE(2940), - [sym_subscript_expression] = STATE(2933), - [sym_call_expression] = STATE(2933), - [sym_field_expression] = STATE(2933), - [sym_compound_literal_expression] = STATE(2940), - [sym_parenthesized_expression] = STATE(2933), - [sym_char_literal] = STATE(2845), - [sym_concatenated_string] = STATE(2845), - [sym_string_literal] = STATE(1861), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5801), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(2940), - [sym_raw_string_literal] = STATE(1861), - [sym_co_await_expression] = STATE(2940), - [sym_new_expression] = STATE(2940), - [sym_delete_expression] = STATE(2940), - [sym_requires_clause] = STATE(2940), - [sym_requires_expression] = STATE(2940), - [sym_lambda_expression] = STATE(2940), - [sym_lambda_capture_specifier] = STATE(4464), - [sym_fold_expression] = STATE(2940), - [sym_parameter_pack_expansion] = STATE(2940), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4570), - [sym_qualified_identifier] = STATE(2933), - [sym_qualified_type_identifier] = STATE(5801), - [sym_user_defined_literal] = STATE(2940), - [sym_identifier] = ACTIONS(1605), - [anon_sym_LPAREN2] = ACTIONS(1607), - [anon_sym_BANG] = ACTIONS(1611), - [anon_sym_TILDE] = ACTIONS(1611), - [anon_sym_DASH] = ACTIONS(1609), - [anon_sym_PLUS] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(2416), - [anon_sym_AMP] = ACTIONS(2416), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1619), - [anon_sym_not] = ACTIONS(1609), - [anon_sym_compl] = ACTIONS(1609), - [anon_sym_DASH_DASH] = ACTIONS(1621), - [anon_sym_PLUS_PLUS] = ACTIONS(1621), - [anon_sym_sizeof] = ACTIONS(1623), - [sym_number_literal] = ACTIONS(1625), - [anon_sym_L_SQUOTE] = ACTIONS(1627), - [anon_sym_u_SQUOTE] = ACTIONS(1627), - [anon_sym_U_SQUOTE] = ACTIONS(1627), - [anon_sym_u8_SQUOTE] = ACTIONS(1627), - [anon_sym_SQUOTE] = ACTIONS(1627), - [anon_sym_L_DQUOTE] = ACTIONS(1629), - [anon_sym_u_DQUOTE] = ACTIONS(1629), - [anon_sym_U_DQUOTE] = ACTIONS(1629), - [anon_sym_u8_DQUOTE] = ACTIONS(1629), - [anon_sym_DQUOTE] = ACTIONS(1629), - [sym_true] = ACTIONS(1631), - [sym_false] = ACTIONS(1631), - [sym_null] = ACTIONS(1631), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1633), - [anon_sym_R_DQUOTE] = ACTIONS(1635), - [anon_sym_LR_DQUOTE] = ACTIONS(1635), - [anon_sym_uR_DQUOTE] = ACTIONS(1635), - [anon_sym_UR_DQUOTE] = ACTIONS(1635), - [anon_sym_u8R_DQUOTE] = ACTIONS(1635), - [anon_sym_co_await] = ACTIONS(1637), - [anon_sym_new] = ACTIONS(1639), - [anon_sym_requires] = ACTIONS(1641), - [sym_this] = ACTIONS(1631), - [sym_nullptr] = ACTIONS(1631), + [sym__expression] = STATE(4184), + [sym__expression_not_binary] = STATE(4369), + [sym_conditional_expression] = STATE(4369), + [sym_assignment_expression] = STATE(4369), + [sym_pointer_expression] = STATE(3541), + [sym_unary_expression] = STATE(4369), + [sym_binary_expression] = STATE(4369), + [sym_update_expression] = STATE(4369), + [sym_cast_expression] = STATE(4369), + [sym_sizeof_expression] = STATE(4369), + [sym_offsetof_expression] = STATE(4369), + [sym_generic_expression] = STATE(4369), + [sym_subscript_expression] = STATE(3541), + [sym_call_expression] = STATE(3541), + [sym_gnu_asm_expression] = STATE(4369), + [sym_field_expression] = STATE(3541), + [sym_compound_literal_expression] = STATE(4369), + [sym_parenthesized_expression] = STATE(3541), + [sym_char_literal] = STATE(4131), + [sym_concatenated_string] = STATE(4131), + [sym_string_literal] = STATE(3542), + [sym_null] = STATE(4369), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6872), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(4369), + [sym_raw_string_literal] = STATE(3542), + [sym_co_await_expression] = STATE(4369), + [sym_new_expression] = STATE(4369), + [sym_delete_expression] = STATE(4369), + [sym_requires_clause] = STATE(4369), + [sym_requires_expression] = STATE(4369), + [sym_lambda_expression] = STATE(4369), + [sym_lambda_capture_specifier] = STATE(5208), + [sym_fold_expression] = STATE(4369), + [sym_parameter_pack_expansion] = STATE(4369), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5289), + [sym_qualified_identifier] = STATE(3541), + [sym_qualified_type_identifier] = STATE(6872), + [sym_user_defined_literal] = STATE(4369), + [sym_identifier] = ACTIONS(3599), + [anon_sym_LPAREN2] = ACTIONS(4046), + [anon_sym_BANG] = ACTIONS(2620), + [anon_sym_TILDE] = ACTIONS(2620), + [anon_sym_DASH] = ACTIONS(2622), + [anon_sym_PLUS] = ACTIONS(2622), + [anon_sym_STAR] = ACTIONS(4046), + [anon_sym_AMP_AMP] = ACTIONS(4046), + [anon_sym_AMP] = ACTIONS(4048), + [anon_sym_LT] = ACTIONS(4046), + [anon_sym_COLON_COLON] = ACTIONS(2626), + [anon_sym_LBRACE] = ACTIONS(4046), + [anon_sym_LBRACK] = ACTIONS(4046), + [sym_primitive_type] = ACTIONS(2045), + [anon_sym_not] = ACTIONS(2622), + [anon_sym_compl] = ACTIONS(2622), + [anon_sym_DASH_DASH] = ACTIONS(2640), + [anon_sym_PLUS_PLUS] = ACTIONS(2640), + [anon_sym_sizeof] = ACTIONS(2642), + [anon_sym_offsetof] = ACTIONS(2644), + [anon_sym__Generic] = ACTIONS(2646), + [anon_sym_asm] = ACTIONS(2648), + [anon_sym___asm__] = ACTIONS(2648), + [sym_number_literal] = ACTIONS(2650), + [anon_sym_L_SQUOTE] = ACTIONS(2652), + [anon_sym_u_SQUOTE] = ACTIONS(2652), + [anon_sym_U_SQUOTE] = ACTIONS(2652), + [anon_sym_u8_SQUOTE] = ACTIONS(2652), + [anon_sym_SQUOTE] = ACTIONS(2652), + [anon_sym_L_DQUOTE] = ACTIONS(2654), + [anon_sym_u_DQUOTE] = ACTIONS(2654), + [anon_sym_U_DQUOTE] = ACTIONS(2654), + [anon_sym_u8_DQUOTE] = ACTIONS(2654), + [anon_sym_DQUOTE] = ACTIONS(2654), + [sym_true] = ACTIONS(2656), + [sym_false] = ACTIONS(2656), + [anon_sym_NULL] = ACTIONS(2658), + [anon_sym_nullptr] = ACTIONS(2658), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(2668), + [anon_sym_R_DQUOTE] = ACTIONS(2670), + [anon_sym_LR_DQUOTE] = ACTIONS(2670), + [anon_sym_uR_DQUOTE] = ACTIONS(2670), + [anon_sym_UR_DQUOTE] = ACTIONS(2670), + [anon_sym_u8R_DQUOTE] = ACTIONS(2670), + [anon_sym_co_await] = ACTIONS(2672), + [anon_sym_new] = ACTIONS(2674), + [anon_sym_requires] = ACTIONS(2676), + [sym_this] = ACTIONS(2656), }, [1633] = { - [sym__expression] = STATE(2924), - [sym_conditional_expression] = STATE(3035), - [sym_assignment_expression] = STATE(3035), - [sym_pointer_expression] = STATE(2713), - [sym_unary_expression] = STATE(3035), - [sym_binary_expression] = STATE(3035), - [sym_update_expression] = STATE(3035), - [sym_cast_expression] = STATE(3035), - [sym_sizeof_expression] = STATE(3035), - [sym_subscript_expression] = STATE(2713), - [sym_call_expression] = STATE(2713), - [sym_field_expression] = STATE(2713), - [sym_compound_literal_expression] = STATE(3035), - [sym_parenthesized_expression] = STATE(2713), - [sym_char_literal] = STATE(3013), - [sym_concatenated_string] = STATE(3013), - [sym_string_literal] = STATE(1900), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5990), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3035), - [sym_raw_string_literal] = STATE(1900), - [sym_co_await_expression] = STATE(3035), - [sym_new_expression] = STATE(3035), - [sym_delete_expression] = STATE(3035), - [sym_requires_clause] = STATE(3035), - [sym_requires_expression] = STATE(3035), - [sym_lambda_expression] = STATE(3035), - [sym_lambda_capture_specifier] = STATE(4465), - [sym_fold_expression] = STATE(3035), - [sym_parameter_pack_expansion] = STATE(3035), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4584), - [sym_qualified_identifier] = STATE(2713), - [sym_qualified_type_identifier] = STATE(5990), - [sym_user_defined_literal] = STATE(3035), - [sym_identifier] = ACTIONS(1643), - [anon_sym_LPAREN2] = ACTIONS(1439), - [anon_sym_BANG] = ACTIONS(1441), - [anon_sym_TILDE] = ACTIONS(1441), - [anon_sym_DASH] = ACTIONS(1443), - [anon_sym_PLUS] = ACTIONS(1443), - [anon_sym_STAR] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(1445), - [anon_sym_COLON_COLON] = ACTIONS(1447), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1581), - [anon_sym_not] = ACTIONS(1443), - [anon_sym_compl] = ACTIONS(1443), - [anon_sym_DASH_DASH] = ACTIONS(1459), - [anon_sym_PLUS_PLUS] = ACTIONS(1459), - [anon_sym_sizeof] = ACTIONS(1461), - [sym_number_literal] = ACTIONS(1463), - [anon_sym_L_SQUOTE] = ACTIONS(1465), - [anon_sym_u_SQUOTE] = ACTIONS(1465), - [anon_sym_U_SQUOTE] = ACTIONS(1465), - [anon_sym_u8_SQUOTE] = ACTIONS(1465), - [anon_sym_SQUOTE] = ACTIONS(1465), - [anon_sym_L_DQUOTE] = ACTIONS(1467), - [anon_sym_u_DQUOTE] = ACTIONS(1467), - [anon_sym_U_DQUOTE] = ACTIONS(1467), - [anon_sym_u8_DQUOTE] = ACTIONS(1467), - [anon_sym_DQUOTE] = ACTIONS(1467), - [sym_true] = ACTIONS(1469), - [sym_false] = ACTIONS(1469), - [sym_null] = ACTIONS(1469), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1473), - [anon_sym_R_DQUOTE] = ACTIONS(1475), - [anon_sym_LR_DQUOTE] = ACTIONS(1475), - [anon_sym_uR_DQUOTE] = ACTIONS(1475), - [anon_sym_UR_DQUOTE] = ACTIONS(1475), - [anon_sym_u8R_DQUOTE] = ACTIONS(1475), - [anon_sym_co_await] = ACTIONS(1477), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_requires] = ACTIONS(1481), - [sym_this] = ACTIONS(1469), - [sym_nullptr] = ACTIONS(1469), + [sym__expression] = STATE(3060), + [sym__expression_not_binary] = STATE(3021), + [sym_conditional_expression] = STATE(3021), + [sym_assignment_expression] = STATE(3021), + [sym_pointer_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_cast_expression] = STATE(3021), + [sym_sizeof_expression] = STATE(3021), + [sym_offsetof_expression] = STATE(3021), + [sym_generic_expression] = STATE(3021), + [sym_subscript_expression] = STATE(3021), + [sym_call_expression] = STATE(3021), + [sym_gnu_asm_expression] = STATE(3021), + [sym_field_expression] = STATE(3021), + [sym_compound_literal_expression] = STATE(3021), + [sym_parenthesized_expression] = STATE(3021), + [sym_char_literal] = STATE(2901), + [sym_concatenated_string] = STATE(2901), + [sym_string_literal] = STATE(2173), + [sym_null] = STATE(3021), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6616), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3021), + [sym_raw_string_literal] = STATE(2173), + [sym_co_await_expression] = STATE(3021), + [sym_new_expression] = STATE(3021), + [sym_delete_expression] = STATE(3021), + [sym_requires_clause] = STATE(3021), + [sym_requires_expression] = STATE(3021), + [sym_lambda_expression] = STATE(3021), + [sym_lambda_capture_specifier] = STATE(5188), + [sym_fold_expression] = STATE(3021), + [sym_parameter_pack_expansion] = STATE(3021), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3021), + [sym_qualified_type_identifier] = STATE(6616), + [sym_user_defined_literal] = STATE(3021), + [sym_identifier] = ACTIONS(1933), + [anon_sym_LPAREN2] = ACTIONS(4046), + [anon_sym_BANG] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(1941), + [anon_sym_DASH] = ACTIONS(1939), + [anon_sym_PLUS] = ACTIONS(1939), + [anon_sym_STAR] = ACTIONS(4046), + [anon_sym_AMP_AMP] = ACTIONS(4046), + [anon_sym_AMP] = ACTIONS(4048), + [anon_sym_LT] = ACTIONS(4046), + [anon_sym_COLON_COLON] = ACTIONS(1945), + [anon_sym_LBRACE] = ACTIONS(4046), + [anon_sym_LBRACK] = ACTIONS(4046), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(1939), + [anon_sym_compl] = ACTIONS(1939), + [anon_sym_DASH_DASH] = ACTIONS(1953), + [anon_sym_PLUS_PLUS] = ACTIONS(1953), + [anon_sym_sizeof] = ACTIONS(1955), + [anon_sym_offsetof] = ACTIONS(1957), + [anon_sym__Generic] = ACTIONS(1959), + [anon_sym_asm] = ACTIONS(1961), + [anon_sym___asm__] = ACTIONS(1961), + [sym_number_literal] = ACTIONS(1963), + [anon_sym_L_SQUOTE] = ACTIONS(1965), + [anon_sym_u_SQUOTE] = ACTIONS(1965), + [anon_sym_U_SQUOTE] = ACTIONS(1965), + [anon_sym_u8_SQUOTE] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_L_DQUOTE] = ACTIONS(1967), + [anon_sym_u_DQUOTE] = ACTIONS(1967), + [anon_sym_U_DQUOTE] = ACTIONS(1967), + [anon_sym_u8_DQUOTE] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(1967), + [sym_true] = ACTIONS(1969), + [sym_false] = ACTIONS(1969), + [anon_sym_NULL] = ACTIONS(1971), + [anon_sym_nullptr] = ACTIONS(1971), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(1975), + [anon_sym_R_DQUOTE] = ACTIONS(1977), + [anon_sym_LR_DQUOTE] = ACTIONS(1977), + [anon_sym_uR_DQUOTE] = ACTIONS(1977), + [anon_sym_UR_DQUOTE] = ACTIONS(1977), + [anon_sym_u8R_DQUOTE] = ACTIONS(1977), + [anon_sym_co_await] = ACTIONS(1979), + [anon_sym_new] = ACTIONS(1981), + [anon_sym_requires] = ACTIONS(1983), + [sym_this] = ACTIONS(1969), }, [1634] = { - [sym__expression] = STATE(3778), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(3036), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(3036), - [sym_call_expression] = STATE(3036), - [sym_field_expression] = STATE(3036), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(3036), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(3036), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(3073), - [anon_sym_LPAREN2] = ACTIONS(3075), - [anon_sym_BANG] = ACTIONS(3079), - [anon_sym_TILDE] = ACTIONS(3079), - [anon_sym_DASH] = ACTIONS(3077), - [anon_sym_PLUS] = ACTIONS(3077), - [anon_sym_STAR] = ACTIONS(3081), - [anon_sym_AMP] = ACTIONS(3081), - [anon_sym_COLON_COLON] = ACTIONS(3083), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(3077), - [anon_sym_compl] = ACTIONS(3077), - [anon_sym_DASH_DASH] = ACTIONS(3085), - [anon_sym_PLUS_PLUS] = ACTIONS(3085), - [anon_sym_sizeof] = ACTIONS(3087), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(3089), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(3091), - [anon_sym_new] = ACTIONS(3065), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [sym__expression] = STATE(3446), + [sym__expression_not_binary] = STATE(3565), + [sym_conditional_expression] = STATE(3565), + [sym_assignment_expression] = STATE(3565), + [sym_pointer_expression] = STATE(3220), + [sym_unary_expression] = STATE(3565), + [sym_binary_expression] = STATE(3565), + [sym_update_expression] = STATE(3565), + [sym_cast_expression] = STATE(3565), + [sym_sizeof_expression] = STATE(3565), + [sym_offsetof_expression] = STATE(3565), + [sym_generic_expression] = STATE(3565), + [sym_subscript_expression] = STATE(3220), + [sym_call_expression] = STATE(3220), + [sym_gnu_asm_expression] = STATE(3565), + [sym_field_expression] = STATE(3220), + [sym_compound_literal_expression] = STATE(3565), + [sym_parenthesized_expression] = STATE(3220), + [sym_char_literal] = STATE(3429), + [sym_concatenated_string] = STATE(3429), + [sym_string_literal] = STATE(2248), + [sym_null] = STATE(3565), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6847), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3565), + [sym_raw_string_literal] = STATE(2248), + [sym_co_await_expression] = STATE(3565), + [sym_new_expression] = STATE(3565), + [sym_delete_expression] = STATE(3565), + [sym_requires_clause] = STATE(3565), + [sym_requires_expression] = STATE(3565), + [sym_lambda_expression] = STATE(3565), + [sym_lambda_capture_specifier] = STATE(5204), + [sym_fold_expression] = STATE(3565), + [sym_parameter_pack_expansion] = STATE(3565), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5232), + [sym_qualified_identifier] = STATE(3220), + [sym_qualified_type_identifier] = STATE(6847), + [sym_user_defined_literal] = STATE(3565), + [sym_identifier] = ACTIONS(2095), + [anon_sym_LPAREN2] = ACTIONS(4046), + [anon_sym_BANG] = ACTIONS(1843), + [anon_sym_TILDE] = ACTIONS(1843), + [anon_sym_DASH] = ACTIONS(1845), + [anon_sym_PLUS] = ACTIONS(1845), + [anon_sym_STAR] = ACTIONS(4046), + [anon_sym_AMP_AMP] = ACTIONS(4046), + [anon_sym_AMP] = ACTIONS(4048), + [anon_sym_LT] = ACTIONS(4046), + [anon_sym_COLON_COLON] = ACTIONS(1849), + [anon_sym_LBRACE] = ACTIONS(4046), + [anon_sym_LBRACK] = ACTIONS(4046), + [sym_primitive_type] = ACTIONS(1999), + [anon_sym_not] = ACTIONS(1845), + [anon_sym_compl] = ACTIONS(1845), + [anon_sym_DASH_DASH] = ACTIONS(1861), + [anon_sym_PLUS_PLUS] = ACTIONS(1861), + [anon_sym_sizeof] = ACTIONS(1863), + [anon_sym_offsetof] = ACTIONS(1865), + [anon_sym__Generic] = ACTIONS(1867), + [anon_sym_asm] = ACTIONS(1869), + [anon_sym___asm__] = ACTIONS(1869), + [sym_number_literal] = ACTIONS(1871), + [anon_sym_L_SQUOTE] = ACTIONS(1873), + [anon_sym_u_SQUOTE] = ACTIONS(1873), + [anon_sym_U_SQUOTE] = ACTIONS(1873), + [anon_sym_u8_SQUOTE] = ACTIONS(1873), + [anon_sym_SQUOTE] = ACTIONS(1873), + [anon_sym_L_DQUOTE] = ACTIONS(1875), + [anon_sym_u_DQUOTE] = ACTIONS(1875), + [anon_sym_U_DQUOTE] = ACTIONS(1875), + [anon_sym_u8_DQUOTE] = ACTIONS(1875), + [anon_sym_DQUOTE] = ACTIONS(1875), + [sym_true] = ACTIONS(1877), + [sym_false] = ACTIONS(1877), + [anon_sym_NULL] = ACTIONS(1879), + [anon_sym_nullptr] = ACTIONS(1879), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(1883), + [anon_sym_R_DQUOTE] = ACTIONS(1885), + [anon_sym_LR_DQUOTE] = ACTIONS(1885), + [anon_sym_uR_DQUOTE] = ACTIONS(1885), + [anon_sym_UR_DQUOTE] = ACTIONS(1885), + [anon_sym_u8R_DQUOTE] = ACTIONS(1885), + [anon_sym_co_await] = ACTIONS(1887), + [anon_sym_new] = ACTIONS(1889), + [anon_sym_requires] = ACTIONS(1891), + [sym_this] = ACTIONS(1877), }, [1635] = { - [sym__expression] = STATE(2957), - [sym_conditional_expression] = STATE(3035), - [sym_assignment_expression] = STATE(3035), - [sym_pointer_expression] = STATE(2713), - [sym_unary_expression] = STATE(3035), - [sym_binary_expression] = STATE(3035), - [sym_update_expression] = STATE(3035), - [sym_cast_expression] = STATE(3035), - [sym_sizeof_expression] = STATE(3035), - [sym_subscript_expression] = STATE(2713), - [sym_call_expression] = STATE(2713), - [sym_field_expression] = STATE(2713), - [sym_compound_literal_expression] = STATE(3035), - [sym_parenthesized_expression] = STATE(2713), - [sym_char_literal] = STATE(3013), - [sym_concatenated_string] = STATE(3013), - [sym_string_literal] = STATE(1900), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5990), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3035), - [sym_raw_string_literal] = STATE(1900), - [sym_co_await_expression] = STATE(3035), - [sym_new_expression] = STATE(3035), - [sym_delete_expression] = STATE(3035), - [sym_requires_clause] = STATE(3035), - [sym_requires_expression] = STATE(3035), - [sym_lambda_expression] = STATE(3035), - [sym_lambda_capture_specifier] = STATE(4465), - [sym_fold_expression] = STATE(3035), - [sym_parameter_pack_expansion] = STATE(3035), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4584), - [sym_qualified_identifier] = STATE(2713), - [sym_qualified_type_identifier] = STATE(5990), - [sym_user_defined_literal] = STATE(3035), - [sym_identifier] = ACTIONS(1643), - [anon_sym_LPAREN2] = ACTIONS(1439), - [anon_sym_BANG] = ACTIONS(1441), - [anon_sym_TILDE] = ACTIONS(1441), - [anon_sym_DASH] = ACTIONS(1443), - [anon_sym_PLUS] = ACTIONS(1443), - [anon_sym_STAR] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(1445), - [anon_sym_COLON_COLON] = ACTIONS(1447), - [anon_sym_LBRACK] = ACTIONS(3757), - [sym_primitive_type] = ACTIONS(1581), - [anon_sym_not] = ACTIONS(1443), - [anon_sym_compl] = ACTIONS(1443), - [anon_sym_DASH_DASH] = ACTIONS(1459), - [anon_sym_PLUS_PLUS] = ACTIONS(1459), - [anon_sym_sizeof] = ACTIONS(1461), - [sym_number_literal] = ACTIONS(1463), - [anon_sym_L_SQUOTE] = ACTIONS(1465), - [anon_sym_u_SQUOTE] = ACTIONS(1465), - [anon_sym_U_SQUOTE] = ACTIONS(1465), - [anon_sym_u8_SQUOTE] = ACTIONS(1465), - [anon_sym_SQUOTE] = ACTIONS(1465), - [anon_sym_L_DQUOTE] = ACTIONS(1467), - [anon_sym_u_DQUOTE] = ACTIONS(1467), - [anon_sym_U_DQUOTE] = ACTIONS(1467), - [anon_sym_u8_DQUOTE] = ACTIONS(1467), - [anon_sym_DQUOTE] = ACTIONS(1467), - [sym_true] = ACTIONS(1469), - [sym_false] = ACTIONS(1469), - [sym_null] = ACTIONS(1469), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1473), - [anon_sym_R_DQUOTE] = ACTIONS(1475), - [anon_sym_LR_DQUOTE] = ACTIONS(1475), - [anon_sym_uR_DQUOTE] = ACTIONS(1475), - [anon_sym_UR_DQUOTE] = ACTIONS(1475), - [anon_sym_u8R_DQUOTE] = ACTIONS(1475), - [anon_sym_co_await] = ACTIONS(1477), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_requires] = ACTIONS(1481), - [sym_this] = ACTIONS(1469), - [sym_nullptr] = ACTIONS(1469), + [sym__expression] = STATE(4068), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3509), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3509), + [sym_call_expression] = STATE(3509), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3509), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3509), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_lambda_default_capture] = STATE(6648), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3509), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3613), + [anon_sym_LPAREN2] = ACTIONS(3615), + [anon_sym_BANG] = ACTIONS(3619), + [anon_sym_TILDE] = ACTIONS(3619), + [anon_sym_DASH] = ACTIONS(3617), + [anon_sym_PLUS] = ACTIONS(3617), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(4040), + [anon_sym_COLON_COLON] = ACTIONS(3621), + [anon_sym_LBRACK] = ACTIONS(1949), + [anon_sym_RBRACK] = ACTIONS(4090), + [anon_sym_EQ] = ACTIONS(4044), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(3617), + [anon_sym_compl] = ACTIONS(3617), + [anon_sym_DASH_DASH] = ACTIONS(3623), + [anon_sym_PLUS_PLUS] = ACTIONS(3623), + [anon_sym_sizeof] = ACTIONS(3625), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(3627), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(3629), + [anon_sym_new] = ACTIONS(3631), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1636] = { - [sym__expression] = STATE(3825), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2954), - [anon_sym_LPAREN2] = ACTIONS(984), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [sym__expression] = STATE(4068), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3509), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3509), + [sym_call_expression] = STATE(3509), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3509), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3509), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_lambda_default_capture] = STATE(6648), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3509), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3613), + [anon_sym_LPAREN2] = ACTIONS(3615), + [anon_sym_BANG] = ACTIONS(3619), + [anon_sym_TILDE] = ACTIONS(3619), + [anon_sym_DASH] = ACTIONS(3617), + [anon_sym_PLUS] = ACTIONS(3617), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(4040), + [anon_sym_COLON_COLON] = ACTIONS(3621), + [anon_sym_LBRACK] = ACTIONS(1949), + [anon_sym_RBRACK] = ACTIONS(4092), + [anon_sym_EQ] = ACTIONS(4044), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(3617), + [anon_sym_compl] = ACTIONS(3617), + [anon_sym_DASH_DASH] = ACTIONS(3623), + [anon_sym_PLUS_PLUS] = ACTIONS(3623), + [anon_sym_sizeof] = ACTIONS(3625), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(3627), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(3629), + [anon_sym_new] = ACTIONS(3631), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1637] = { - [sym__expression] = STATE(3831), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2984), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2984), - [sym_call_expression] = STATE(2984), - [sym_field_expression] = STATE(2984), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2984), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2984), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(3047), - [anon_sym_LPAREN2] = ACTIONS(3049), - [anon_sym_BANG] = ACTIONS(3053), - [anon_sym_TILDE] = ACTIONS(3053), - [anon_sym_DASH] = ACTIONS(3051), - [anon_sym_PLUS] = ACTIONS(3051), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(3055), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(3051), - [anon_sym_compl] = ACTIONS(3051), - [anon_sym_DASH_DASH] = ACTIONS(3057), - [anon_sym_PLUS_PLUS] = ACTIONS(3057), - [anon_sym_sizeof] = ACTIONS(3059), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(3061), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(3063), - [anon_sym_new] = ACTIONS(3065), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), - }, - [1638] = { - [sym__expression] = STATE(3838), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2954), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym__expression] = STATE(4035), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(4046), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), + [anon_sym_STAR] = ACTIONS(4046), + [anon_sym_AMP_AMP] = ACTIONS(4046), + [anon_sym_AMP] = ACTIONS(4048), + [anon_sym_LT] = ACTIONS(4046), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(4046), + [anon_sym_LBRACK] = ACTIONS(4046), + [sym_primitive_type] = ACTIONS(1951), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), + }, + [1638] = { + [sym__expression] = STATE(3016), + [sym__expression_not_binary] = STATE(3021), + [sym_conditional_expression] = STATE(3021), + [sym_assignment_expression] = STATE(3021), + [sym_pointer_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_cast_expression] = STATE(3021), + [sym_sizeof_expression] = STATE(3021), + [sym_offsetof_expression] = STATE(3021), + [sym_generic_expression] = STATE(3021), + [sym_subscript_expression] = STATE(3021), + [sym_call_expression] = STATE(3021), + [sym_gnu_asm_expression] = STATE(3021), + [sym_field_expression] = STATE(3021), + [sym_compound_literal_expression] = STATE(3021), + [sym_parenthesized_expression] = STATE(3021), + [sym_char_literal] = STATE(2901), + [sym_concatenated_string] = STATE(2901), + [sym_string_literal] = STATE(2173), + [sym_null] = STATE(3021), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6616), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3021), + [sym_raw_string_literal] = STATE(2173), + [sym_co_await_expression] = STATE(3021), + [sym_new_expression] = STATE(3021), + [sym_delete_expression] = STATE(3021), + [sym_requires_clause] = STATE(3021), + [sym_requires_expression] = STATE(3021), + [sym_lambda_expression] = STATE(3021), + [sym_lambda_capture_specifier] = STATE(5188), + [sym_fold_expression] = STATE(3021), + [sym_parameter_pack_expansion] = STATE(3021), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3021), + [sym_qualified_type_identifier] = STATE(6616), + [sym_user_defined_literal] = STATE(3021), + [sym_identifier] = ACTIONS(1933), + [anon_sym_LPAREN2] = ACTIONS(4046), + [anon_sym_BANG] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(1941), + [anon_sym_DASH] = ACTIONS(1939), + [anon_sym_PLUS] = ACTIONS(1939), + [anon_sym_STAR] = ACTIONS(4046), + [anon_sym_AMP_AMP] = ACTIONS(4046), + [anon_sym_AMP] = ACTIONS(4048), + [anon_sym_LT] = ACTIONS(4046), + [anon_sym_COLON_COLON] = ACTIONS(1945), + [anon_sym_LBRACE] = ACTIONS(4046), + [anon_sym_LBRACK] = ACTIONS(4046), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(1939), + [anon_sym_compl] = ACTIONS(1939), + [anon_sym_DASH_DASH] = ACTIONS(1953), + [anon_sym_PLUS_PLUS] = ACTIONS(1953), + [anon_sym_sizeof] = ACTIONS(1955), + [anon_sym_offsetof] = ACTIONS(1957), + [anon_sym__Generic] = ACTIONS(1959), + [anon_sym_asm] = ACTIONS(1961), + [anon_sym___asm__] = ACTIONS(1961), + [sym_number_literal] = ACTIONS(1963), + [anon_sym_L_SQUOTE] = ACTIONS(1965), + [anon_sym_u_SQUOTE] = ACTIONS(1965), + [anon_sym_U_SQUOTE] = ACTIONS(1965), + [anon_sym_u8_SQUOTE] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_L_DQUOTE] = ACTIONS(1967), + [anon_sym_u_DQUOTE] = ACTIONS(1967), + [anon_sym_U_DQUOTE] = ACTIONS(1967), + [anon_sym_u8_DQUOTE] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(1967), + [sym_true] = ACTIONS(1969), + [sym_false] = ACTIONS(1969), + [anon_sym_NULL] = ACTIONS(1971), + [anon_sym_nullptr] = ACTIONS(1971), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(1975), + [anon_sym_R_DQUOTE] = ACTIONS(1977), + [anon_sym_LR_DQUOTE] = ACTIONS(1977), + [anon_sym_uR_DQUOTE] = ACTIONS(1977), + [anon_sym_UR_DQUOTE] = ACTIONS(1977), + [anon_sym_u8R_DQUOTE] = ACTIONS(1977), + [anon_sym_co_await] = ACTIONS(1979), + [anon_sym_new] = ACTIONS(1981), + [anon_sym_requires] = ACTIONS(1983), + [sym_this] = ACTIONS(1969), }, [1639] = { - [sym__expression] = STATE(3338), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(3759), - [anon_sym_LPAREN2] = ACTIONS(984), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [sym__expression] = STATE(4068), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3509), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3509), + [sym_call_expression] = STATE(3509), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3509), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3509), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_lambda_default_capture] = STATE(6648), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3509), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3613), + [anon_sym_LPAREN2] = ACTIONS(3615), + [anon_sym_BANG] = ACTIONS(3619), + [anon_sym_TILDE] = ACTIONS(3619), + [anon_sym_DASH] = ACTIONS(3617), + [anon_sym_PLUS] = ACTIONS(3617), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(4040), + [anon_sym_COLON_COLON] = ACTIONS(3621), + [anon_sym_LBRACK] = ACTIONS(1949), + [anon_sym_RBRACK] = ACTIONS(4094), + [anon_sym_EQ] = ACTIONS(4044), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(3617), + [anon_sym_compl] = ACTIONS(3617), + [anon_sym_DASH_DASH] = ACTIONS(3623), + [anon_sym_PLUS_PLUS] = ACTIONS(3623), + [anon_sym_sizeof] = ACTIONS(3625), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(3627), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(3629), + [anon_sym_new] = ACTIONS(3631), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1640] = { - [sym__expression] = STATE(3845), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2954), - [anon_sym_LPAREN2] = ACTIONS(984), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [sym__expression] = STATE(4114), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3509), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3509), + [sym_call_expression] = STATE(3509), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3509), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3509), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_lambda_default_capture] = STATE(6648), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3509), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3613), + [anon_sym_LPAREN2] = ACTIONS(3615), + [anon_sym_BANG] = ACTIONS(3619), + [anon_sym_TILDE] = ACTIONS(3619), + [anon_sym_DASH] = ACTIONS(3617), + [anon_sym_PLUS] = ACTIONS(3617), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(4040), + [anon_sym_COLON_COLON] = ACTIONS(3621), + [anon_sym_LBRACK] = ACTIONS(1949), + [anon_sym_RBRACK] = ACTIONS(4042), + [anon_sym_EQ] = ACTIONS(4044), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(3617), + [anon_sym_compl] = ACTIONS(3617), + [anon_sym_DASH_DASH] = ACTIONS(3623), + [anon_sym_PLUS_PLUS] = ACTIONS(3623), + [anon_sym_sizeof] = ACTIONS(3625), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(3627), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(3629), + [anon_sym_new] = ACTIONS(3631), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1641] = { - [sym__expression] = STATE(3636), - [sym_conditional_expression] = STATE(3855), - [sym_assignment_expression] = STATE(3855), - [sym_pointer_expression] = STATE(2954), - [sym_unary_expression] = STATE(3855), - [sym_binary_expression] = STATE(3855), - [sym_update_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_subscript_expression] = STATE(2954), - [sym_call_expression] = STATE(2954), - [sym_field_expression] = STATE(2954), - [sym_compound_literal_expression] = STATE(3855), - [sym_parenthesized_expression] = STATE(2954), - [sym_char_literal] = STATE(3557), - [sym_concatenated_string] = STATE(3557), - [sym_string_literal] = STATE(2955), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5844), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3855), - [sym_raw_string_literal] = STATE(2955), - [sym_co_await_expression] = STATE(3855), - [sym_new_expression] = STATE(3855), - [sym_delete_expression] = STATE(3855), - [sym_requires_clause] = STATE(3855), - [sym_requires_expression] = STATE(3855), - [sym_lambda_expression] = STATE(3855), - [sym_lambda_capture_specifier] = STATE(4501), - [sym_fold_expression] = STATE(3855), - [sym_parameter_pack_expansion] = STATE(3855), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4570), - [sym_qualified_identifier] = STATE(2954), - [sym_qualified_type_identifier] = STATE(5844), - [sym_user_defined_literal] = STATE(3855), - [sym_identifier] = ACTIONS(3023), - [anon_sym_LPAREN2] = ACTIONS(2410), - [anon_sym_BANG] = ACTIONS(2412), - [anon_sym_TILDE] = ACTIONS(2412), - [anon_sym_DASH] = ACTIONS(2414), - [anon_sym_PLUS] = ACTIONS(2414), - [anon_sym_STAR] = ACTIONS(2416), - [anon_sym_AMP] = ACTIONS(2416), - [anon_sym_COLON_COLON] = ACTIONS(2418), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1619), - [anon_sym_not] = ACTIONS(2414), - [anon_sym_compl] = ACTIONS(2414), - [anon_sym_DASH_DASH] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(2432), - [anon_sym_sizeof] = ACTIONS(2434), - [sym_number_literal] = ACTIONS(2436), - [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_L_DQUOTE] = ACTIONS(2440), - [anon_sym_u_DQUOTE] = ACTIONS(2440), - [anon_sym_U_DQUOTE] = ACTIONS(2440), - [anon_sym_u8_DQUOTE] = ACTIONS(2440), - [anon_sym_DQUOTE] = ACTIONS(2440), - [sym_true] = ACTIONS(2442), - [sym_false] = ACTIONS(2442), - [sym_null] = ACTIONS(2442), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(2452), - [anon_sym_R_DQUOTE] = ACTIONS(2454), - [anon_sym_LR_DQUOTE] = ACTIONS(2454), - [anon_sym_uR_DQUOTE] = ACTIONS(2454), - [anon_sym_UR_DQUOTE] = ACTIONS(2454), - [anon_sym_u8R_DQUOTE] = ACTIONS(2454), - [anon_sym_co_await] = ACTIONS(2456), - [anon_sym_new] = ACTIONS(2458), - [anon_sym_requires] = ACTIONS(2460), - [sym_this] = ACTIONS(2442), - [sym_nullptr] = ACTIONS(2442), + [sym__expression] = STATE(4068), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3509), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3509), + [sym_call_expression] = STATE(3509), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3509), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3509), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_lambda_default_capture] = STATE(6648), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3509), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3613), + [anon_sym_LPAREN2] = ACTIONS(3615), + [anon_sym_BANG] = ACTIONS(3619), + [anon_sym_TILDE] = ACTIONS(3619), + [anon_sym_DASH] = ACTIONS(3617), + [anon_sym_PLUS] = ACTIONS(3617), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(4040), + [anon_sym_COLON_COLON] = ACTIONS(3621), + [anon_sym_LBRACK] = ACTIONS(1949), + [anon_sym_RBRACK] = ACTIONS(4096), + [anon_sym_EQ] = ACTIONS(4044), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(3617), + [anon_sym_compl] = ACTIONS(3617), + [anon_sym_DASH_DASH] = ACTIONS(3623), + [anon_sym_PLUS_PLUS] = ACTIONS(3623), + [anon_sym_sizeof] = ACTIONS(3625), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(3627), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(3629), + [anon_sym_new] = ACTIONS(3631), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1642] = { - [sym__expression] = STATE(3808), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2954), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym__expression] = STATE(4082), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_initializer_list] = STATE(6218), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_RPAREN] = ACTIONS(4098), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(1899), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1643] = { - [sym__expression] = STATE(2922), - [sym_conditional_expression] = STATE(3035), - [sym_assignment_expression] = STATE(3035), - [sym_pointer_expression] = STATE(2713), - [sym_unary_expression] = STATE(3035), - [sym_binary_expression] = STATE(3035), - [sym_update_expression] = STATE(3035), - [sym_cast_expression] = STATE(3035), - [sym_sizeof_expression] = STATE(3035), - [sym_subscript_expression] = STATE(2713), - [sym_call_expression] = STATE(2713), - [sym_field_expression] = STATE(2713), - [sym_compound_literal_expression] = STATE(3035), - [sym_parenthesized_expression] = STATE(2713), - [sym_char_literal] = STATE(3013), - [sym_concatenated_string] = STATE(3013), - [sym_string_literal] = STATE(1900), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5990), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3035), - [sym_raw_string_literal] = STATE(1900), - [sym_co_await_expression] = STATE(3035), - [sym_new_expression] = STATE(3035), - [sym_delete_expression] = STATE(3035), - [sym_requires_clause] = STATE(3035), - [sym_requires_expression] = STATE(3035), - [sym_lambda_expression] = STATE(3035), - [sym_lambda_capture_specifier] = STATE(4465), - [sym_fold_expression] = STATE(3035), - [sym_parameter_pack_expansion] = STATE(3035), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4584), - [sym_qualified_identifier] = STATE(2713), - [sym_qualified_type_identifier] = STATE(5990), - [sym_user_defined_literal] = STATE(3035), - [sym_identifier] = ACTIONS(1643), - [anon_sym_LPAREN2] = ACTIONS(1439), - [anon_sym_BANG] = ACTIONS(1441), - [anon_sym_TILDE] = ACTIONS(1441), - [anon_sym_DASH] = ACTIONS(1443), - [anon_sym_PLUS] = ACTIONS(1443), - [anon_sym_STAR] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(1445), - [anon_sym_COLON_COLON] = ACTIONS(1447), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1581), - [anon_sym_not] = ACTIONS(1443), - [anon_sym_compl] = ACTIONS(1443), - [anon_sym_DASH_DASH] = ACTIONS(1459), - [anon_sym_PLUS_PLUS] = ACTIONS(1459), - [anon_sym_sizeof] = ACTIONS(1461), - [sym_number_literal] = ACTIONS(1463), - [anon_sym_L_SQUOTE] = ACTIONS(1465), - [anon_sym_u_SQUOTE] = ACTIONS(1465), - [anon_sym_U_SQUOTE] = ACTIONS(1465), - [anon_sym_u8_SQUOTE] = ACTIONS(1465), - [anon_sym_SQUOTE] = ACTIONS(1465), - [anon_sym_L_DQUOTE] = ACTIONS(1467), - [anon_sym_u_DQUOTE] = ACTIONS(1467), - [anon_sym_U_DQUOTE] = ACTIONS(1467), - [anon_sym_u8_DQUOTE] = ACTIONS(1467), - [anon_sym_DQUOTE] = ACTIONS(1467), - [sym_true] = ACTIONS(1469), - [sym_false] = ACTIONS(1469), - [sym_null] = ACTIONS(1469), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1473), - [anon_sym_R_DQUOTE] = ACTIONS(1475), - [anon_sym_LR_DQUOTE] = ACTIONS(1475), - [anon_sym_uR_DQUOTE] = ACTIONS(1475), - [anon_sym_UR_DQUOTE] = ACTIONS(1475), - [anon_sym_u8R_DQUOTE] = ACTIONS(1475), - [anon_sym_co_await] = ACTIONS(1477), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_requires] = ACTIONS(1481), - [sym_this] = ACTIONS(1469), - [sym_nullptr] = ACTIONS(1469), + [sym__expression] = STATE(4068), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3509), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3509), + [sym_call_expression] = STATE(3509), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3509), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3509), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_lambda_default_capture] = STATE(6648), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3509), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3613), + [anon_sym_LPAREN2] = ACTIONS(3615), + [anon_sym_BANG] = ACTIONS(3619), + [anon_sym_TILDE] = ACTIONS(3619), + [anon_sym_DASH] = ACTIONS(3617), + [anon_sym_PLUS] = ACTIONS(3617), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(4040), + [anon_sym_COLON_COLON] = ACTIONS(3621), + [anon_sym_LBRACK] = ACTIONS(1949), + [anon_sym_RBRACK] = ACTIONS(4100), + [anon_sym_EQ] = ACTIONS(4044), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(3617), + [anon_sym_compl] = ACTIONS(3617), + [anon_sym_DASH_DASH] = ACTIONS(3623), + [anon_sym_PLUS_PLUS] = ACTIONS(3623), + [anon_sym_sizeof] = ACTIONS(3625), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(3627), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(3629), + [anon_sym_new] = ACTIONS(3631), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1644] = { - [sym__expression] = STATE(2921), - [sym_conditional_expression] = STATE(3035), - [sym_assignment_expression] = STATE(3035), - [sym_pointer_expression] = STATE(2713), - [sym_unary_expression] = STATE(3035), - [sym_binary_expression] = STATE(3035), - [sym_update_expression] = STATE(3035), - [sym_cast_expression] = STATE(3035), - [sym_sizeof_expression] = STATE(3035), - [sym_subscript_expression] = STATE(2713), - [sym_call_expression] = STATE(2713), - [sym_field_expression] = STATE(2713), - [sym_compound_literal_expression] = STATE(3035), - [sym_parenthesized_expression] = STATE(2713), - [sym_char_literal] = STATE(3013), - [sym_concatenated_string] = STATE(3013), - [sym_string_literal] = STATE(1900), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5990), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3035), - [sym_raw_string_literal] = STATE(1900), - [sym_co_await_expression] = STATE(3035), - [sym_new_expression] = STATE(3035), - [sym_delete_expression] = STATE(3035), - [sym_requires_clause] = STATE(3035), - [sym_requires_expression] = STATE(3035), - [sym_lambda_expression] = STATE(3035), - [sym_lambda_capture_specifier] = STATE(4465), - [sym_fold_expression] = STATE(3035), - [sym_parameter_pack_expansion] = STATE(3035), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4584), - [sym_qualified_identifier] = STATE(2713), - [sym_qualified_type_identifier] = STATE(5990), - [sym_user_defined_literal] = STATE(3035), - [sym_identifier] = ACTIONS(1643), - [anon_sym_LPAREN2] = ACTIONS(1439), - [anon_sym_BANG] = ACTIONS(1441), - [anon_sym_TILDE] = ACTIONS(1441), - [anon_sym_DASH] = ACTIONS(1443), - [anon_sym_PLUS] = ACTIONS(1443), - [anon_sym_STAR] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(1445), - [anon_sym_COLON_COLON] = ACTIONS(1447), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1581), - [anon_sym_not] = ACTIONS(1443), - [anon_sym_compl] = ACTIONS(1443), - [anon_sym_DASH_DASH] = ACTIONS(1459), - [anon_sym_PLUS_PLUS] = ACTIONS(1459), - [anon_sym_sizeof] = ACTIONS(1461), - [sym_number_literal] = ACTIONS(1463), - [anon_sym_L_SQUOTE] = ACTIONS(1465), - [anon_sym_u_SQUOTE] = ACTIONS(1465), - [anon_sym_U_SQUOTE] = ACTIONS(1465), - [anon_sym_u8_SQUOTE] = ACTIONS(1465), - [anon_sym_SQUOTE] = ACTIONS(1465), - [anon_sym_L_DQUOTE] = ACTIONS(1467), - [anon_sym_u_DQUOTE] = ACTIONS(1467), - [anon_sym_U_DQUOTE] = ACTIONS(1467), - [anon_sym_u8_DQUOTE] = ACTIONS(1467), - [anon_sym_DQUOTE] = ACTIONS(1467), - [sym_true] = ACTIONS(1469), - [sym_false] = ACTIONS(1469), - [sym_null] = ACTIONS(1469), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1473), - [anon_sym_R_DQUOTE] = ACTIONS(1475), - [anon_sym_LR_DQUOTE] = ACTIONS(1475), - [anon_sym_uR_DQUOTE] = ACTIONS(1475), - [anon_sym_UR_DQUOTE] = ACTIONS(1475), - [anon_sym_u8R_DQUOTE] = ACTIONS(1475), - [anon_sym_co_await] = ACTIONS(1477), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_requires] = ACTIONS(1481), - [sym_this] = ACTIONS(1469), - [sym_nullptr] = ACTIONS(1469), + [sym__expression] = STATE(4084), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_initializer_list] = STATE(6224), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_RPAREN] = ACTIONS(4102), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(1899), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1645] = { - [sym__expression] = STATE(3839), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2954), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym__expression] = STATE(4461), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_initializer_list] = STATE(7602), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(1899), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_default] = ACTIONS(4104), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(4106), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1646] = { - [sym__expression] = STATE(3843), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(3036), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(3036), - [sym_call_expression] = STATE(3036), - [sym_field_expression] = STATE(3036), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(3036), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(3036), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(3073), - [anon_sym_LPAREN2] = ACTIONS(3075), - [anon_sym_BANG] = ACTIONS(3079), - [anon_sym_TILDE] = ACTIONS(3079), - [anon_sym_DASH] = ACTIONS(3077), - [anon_sym_PLUS] = ACTIONS(3077), - [anon_sym_STAR] = ACTIONS(3081), - [anon_sym_AMP] = ACTIONS(3081), - [anon_sym_COLON_COLON] = ACTIONS(3083), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(3077), - [anon_sym_compl] = ACTIONS(3077), - [anon_sym_DASH_DASH] = ACTIONS(3085), - [anon_sym_PLUS_PLUS] = ACTIONS(3085), - [anon_sym_sizeof] = ACTIONS(3087), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(3089), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(3091), - [anon_sym_new] = ACTIONS(3065), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [sym__expression] = STATE(4068), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3509), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3509), + [sym_call_expression] = STATE(3509), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3509), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3509), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_lambda_default_capture] = STATE(6648), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3509), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3613), + [anon_sym_LPAREN2] = ACTIONS(3615), + [anon_sym_BANG] = ACTIONS(3619), + [anon_sym_TILDE] = ACTIONS(3619), + [anon_sym_DASH] = ACTIONS(3617), + [anon_sym_PLUS] = ACTIONS(3617), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(4040), + [anon_sym_COLON_COLON] = ACTIONS(3621), + [anon_sym_LBRACK] = ACTIONS(1949), + [anon_sym_RBRACK] = ACTIONS(4108), + [anon_sym_EQ] = ACTIONS(4044), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(3617), + [anon_sym_compl] = ACTIONS(3617), + [anon_sym_DASH_DASH] = ACTIONS(3623), + [anon_sym_PLUS_PLUS] = ACTIONS(3623), + [anon_sym_sizeof] = ACTIONS(3625), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(3627), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(3629), + [anon_sym_new] = ACTIONS(3631), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1647] = { - [sym__expression] = STATE(3851), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2984), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2984), - [sym_call_expression] = STATE(2984), - [sym_field_expression] = STATE(2984), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2984), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2984), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(3047), - [anon_sym_LPAREN2] = ACTIONS(3049), - [anon_sym_BANG] = ACTIONS(3053), - [anon_sym_TILDE] = ACTIONS(3053), - [anon_sym_DASH] = ACTIONS(3051), - [anon_sym_PLUS] = ACTIONS(3051), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(3055), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(3051), - [anon_sym_compl] = ACTIONS(3051), - [anon_sym_DASH_DASH] = ACTIONS(3057), - [anon_sym_PLUS_PLUS] = ACTIONS(3057), - [anon_sym_sizeof] = ACTIONS(3059), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(3061), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(3063), - [anon_sym_new] = ACTIONS(3065), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [sym__expression] = STATE(4068), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3509), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3509), + [sym_call_expression] = STATE(3509), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3509), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3509), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_lambda_default_capture] = STATE(6648), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3509), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3613), + [anon_sym_LPAREN2] = ACTIONS(3615), + [anon_sym_BANG] = ACTIONS(3619), + [anon_sym_TILDE] = ACTIONS(3619), + [anon_sym_DASH] = ACTIONS(3617), + [anon_sym_PLUS] = ACTIONS(3617), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(4040), + [anon_sym_COLON_COLON] = ACTIONS(3621), + [anon_sym_LBRACK] = ACTIONS(1949), + [anon_sym_RBRACK] = ACTIONS(4110), + [anon_sym_EQ] = ACTIONS(4044), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(3617), + [anon_sym_compl] = ACTIONS(3617), + [anon_sym_DASH_DASH] = ACTIONS(3623), + [anon_sym_PLUS_PLUS] = ACTIONS(3623), + [anon_sym_sizeof] = ACTIONS(3625), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(3627), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(3629), + [anon_sym_new] = ACTIONS(3631), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1648] = { - [sym__expression] = STATE(3709), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(3036), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(3036), - [sym_call_expression] = STATE(3036), - [sym_field_expression] = STATE(3036), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(3036), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(3036), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(3073), - [anon_sym_LPAREN2] = ACTIONS(3075), - [anon_sym_BANG] = ACTIONS(3079), - [anon_sym_TILDE] = ACTIONS(3079), - [anon_sym_DASH] = ACTIONS(3077), - [anon_sym_PLUS] = ACTIONS(3077), - [anon_sym_STAR] = ACTIONS(3081), - [anon_sym_AMP] = ACTIONS(3081), - [anon_sym_COLON_COLON] = ACTIONS(3083), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(3077), - [anon_sym_compl] = ACTIONS(3077), - [anon_sym_DASH_DASH] = ACTIONS(3085), - [anon_sym_PLUS_PLUS] = ACTIONS(3085), - [anon_sym_sizeof] = ACTIONS(3087), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(3089), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(3091), - [anon_sym_new] = ACTIONS(3065), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [sym__expression] = STATE(4068), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3509), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3509), + [sym_call_expression] = STATE(3509), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3509), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3509), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_lambda_default_capture] = STATE(6648), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3509), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3613), + [anon_sym_LPAREN2] = ACTIONS(3615), + [anon_sym_BANG] = ACTIONS(3619), + [anon_sym_TILDE] = ACTIONS(3619), + [anon_sym_DASH] = ACTIONS(3617), + [anon_sym_PLUS] = ACTIONS(3617), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(4040), + [anon_sym_COLON_COLON] = ACTIONS(3621), + [anon_sym_LBRACK] = ACTIONS(1949), + [anon_sym_RBRACK] = ACTIONS(4112), + [anon_sym_EQ] = ACTIONS(4044), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(3617), + [anon_sym_compl] = ACTIONS(3617), + [anon_sym_DASH_DASH] = ACTIONS(3623), + [anon_sym_PLUS_PLUS] = ACTIONS(3623), + [anon_sym_sizeof] = ACTIONS(3625), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(3627), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(3629), + [anon_sym_new] = ACTIONS(3631), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1649] = { - [sym__expression] = STATE(2919), - [sym_conditional_expression] = STATE(3035), - [sym_assignment_expression] = STATE(3035), - [sym_pointer_expression] = STATE(2713), - [sym_unary_expression] = STATE(3035), - [sym_binary_expression] = STATE(3035), - [sym_update_expression] = STATE(3035), - [sym_cast_expression] = STATE(3035), - [sym_sizeof_expression] = STATE(3035), - [sym_subscript_expression] = STATE(2713), - [sym_call_expression] = STATE(2713), - [sym_field_expression] = STATE(2713), - [sym_compound_literal_expression] = STATE(3035), - [sym_parenthesized_expression] = STATE(2713), - [sym_char_literal] = STATE(3013), - [sym_concatenated_string] = STATE(3013), - [sym_string_literal] = STATE(1900), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5990), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3035), - [sym_raw_string_literal] = STATE(1900), - [sym_co_await_expression] = STATE(3035), - [sym_new_expression] = STATE(3035), - [sym_delete_expression] = STATE(3035), - [sym_requires_clause] = STATE(3035), - [sym_requires_expression] = STATE(3035), - [sym_lambda_expression] = STATE(3035), - [sym_lambda_capture_specifier] = STATE(4465), - [sym_fold_expression] = STATE(3035), - [sym_parameter_pack_expansion] = STATE(3035), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4584), - [sym_qualified_identifier] = STATE(2713), - [sym_qualified_type_identifier] = STATE(5990), - [sym_user_defined_literal] = STATE(3035), - [sym_identifier] = ACTIONS(1643), - [anon_sym_LPAREN2] = ACTIONS(1439), - [anon_sym_BANG] = ACTIONS(1441), - [anon_sym_TILDE] = ACTIONS(1441), - [anon_sym_DASH] = ACTIONS(1443), - [anon_sym_PLUS] = ACTIONS(1443), - [anon_sym_STAR] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(1445), - [anon_sym_COLON_COLON] = ACTIONS(1447), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1581), - [anon_sym_not] = ACTIONS(1443), - [anon_sym_compl] = ACTIONS(1443), - [anon_sym_DASH_DASH] = ACTIONS(1459), - [anon_sym_PLUS_PLUS] = ACTIONS(1459), - [anon_sym_sizeof] = ACTIONS(1461), - [sym_number_literal] = ACTIONS(1463), - [anon_sym_L_SQUOTE] = ACTIONS(1465), - [anon_sym_u_SQUOTE] = ACTIONS(1465), - [anon_sym_U_SQUOTE] = ACTIONS(1465), - [anon_sym_u8_SQUOTE] = ACTIONS(1465), - [anon_sym_SQUOTE] = ACTIONS(1465), - [anon_sym_L_DQUOTE] = ACTIONS(1467), - [anon_sym_u_DQUOTE] = ACTIONS(1467), - [anon_sym_U_DQUOTE] = ACTIONS(1467), - [anon_sym_u8_DQUOTE] = ACTIONS(1467), - [anon_sym_DQUOTE] = ACTIONS(1467), - [sym_true] = ACTIONS(1469), - [sym_false] = ACTIONS(1469), - [sym_null] = ACTIONS(1469), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1473), - [anon_sym_R_DQUOTE] = ACTIONS(1475), - [anon_sym_LR_DQUOTE] = ACTIONS(1475), - [anon_sym_uR_DQUOTE] = ACTIONS(1475), - [anon_sym_UR_DQUOTE] = ACTIONS(1475), - [anon_sym_u8R_DQUOTE] = ACTIONS(1475), - [anon_sym_co_await] = ACTIONS(1477), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_requires] = ACTIONS(1481), - [sym_this] = ACTIONS(1469), - [sym_nullptr] = ACTIONS(1469), + [sym__expression] = STATE(4068), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3509), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3509), + [sym_call_expression] = STATE(3509), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3509), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3509), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_lambda_default_capture] = STATE(6648), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3509), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3613), + [anon_sym_LPAREN2] = ACTIONS(3615), + [anon_sym_BANG] = ACTIONS(3619), + [anon_sym_TILDE] = ACTIONS(3619), + [anon_sym_DASH] = ACTIONS(3617), + [anon_sym_PLUS] = ACTIONS(3617), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(4040), + [anon_sym_COLON_COLON] = ACTIONS(3621), + [anon_sym_LBRACK] = ACTIONS(1949), + [anon_sym_RBRACK] = ACTIONS(4114), + [anon_sym_EQ] = ACTIONS(4044), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(3617), + [anon_sym_compl] = ACTIONS(3617), + [anon_sym_DASH_DASH] = ACTIONS(3623), + [anon_sym_PLUS_PLUS] = ACTIONS(3623), + [anon_sym_sizeof] = ACTIONS(3625), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(3627), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(3629), + [anon_sym_new] = ACTIONS(3631), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1650] = { - [sym__expression] = STATE(2918), - [sym_conditional_expression] = STATE(3035), - [sym_assignment_expression] = STATE(3035), - [sym_pointer_expression] = STATE(2713), - [sym_unary_expression] = STATE(3035), - [sym_binary_expression] = STATE(3035), - [sym_update_expression] = STATE(3035), - [sym_cast_expression] = STATE(3035), - [sym_sizeof_expression] = STATE(3035), - [sym_subscript_expression] = STATE(2713), - [sym_call_expression] = STATE(2713), - [sym_field_expression] = STATE(2713), - [sym_compound_literal_expression] = STATE(3035), - [sym_parenthesized_expression] = STATE(2713), - [sym_char_literal] = STATE(3013), - [sym_concatenated_string] = STATE(3013), - [sym_string_literal] = STATE(1900), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5990), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3035), - [sym_raw_string_literal] = STATE(1900), - [sym_co_await_expression] = STATE(3035), - [sym_new_expression] = STATE(3035), - [sym_delete_expression] = STATE(3035), - [sym_requires_clause] = STATE(3035), - [sym_requires_expression] = STATE(3035), - [sym_lambda_expression] = STATE(3035), - [sym_lambda_capture_specifier] = STATE(4465), - [sym_fold_expression] = STATE(3035), - [sym_parameter_pack_expansion] = STATE(3035), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4584), - [sym_qualified_identifier] = STATE(2713), - [sym_qualified_type_identifier] = STATE(5990), - [sym_user_defined_literal] = STATE(3035), - [sym_identifier] = ACTIONS(1643), - [anon_sym_LPAREN2] = ACTIONS(1439), - [anon_sym_BANG] = ACTIONS(1441), - [anon_sym_TILDE] = ACTIONS(1441), - [anon_sym_DASH] = ACTIONS(1443), - [anon_sym_PLUS] = ACTIONS(1443), - [anon_sym_STAR] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(1445), - [anon_sym_COLON_COLON] = ACTIONS(1447), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1581), - [anon_sym_not] = ACTIONS(1443), - [anon_sym_compl] = ACTIONS(1443), - [anon_sym_DASH_DASH] = ACTIONS(1459), - [anon_sym_PLUS_PLUS] = ACTIONS(1459), - [anon_sym_sizeof] = ACTIONS(1461), - [sym_number_literal] = ACTIONS(1463), - [anon_sym_L_SQUOTE] = ACTIONS(1465), - [anon_sym_u_SQUOTE] = ACTIONS(1465), - [anon_sym_U_SQUOTE] = ACTIONS(1465), - [anon_sym_u8_SQUOTE] = ACTIONS(1465), - [anon_sym_SQUOTE] = ACTIONS(1465), - [anon_sym_L_DQUOTE] = ACTIONS(1467), - [anon_sym_u_DQUOTE] = ACTIONS(1467), - [anon_sym_U_DQUOTE] = ACTIONS(1467), - [anon_sym_u8_DQUOTE] = ACTIONS(1467), - [anon_sym_DQUOTE] = ACTIONS(1467), - [sym_true] = ACTIONS(1469), - [sym_false] = ACTIONS(1469), - [sym_null] = ACTIONS(1469), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1473), - [anon_sym_R_DQUOTE] = ACTIONS(1475), - [anon_sym_LR_DQUOTE] = ACTIONS(1475), - [anon_sym_uR_DQUOTE] = ACTIONS(1475), - [anon_sym_UR_DQUOTE] = ACTIONS(1475), - [anon_sym_u8R_DQUOTE] = ACTIONS(1475), - [anon_sym_co_await] = ACTIONS(1477), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_requires] = ACTIONS(1481), - [sym_this] = ACTIONS(1469), - [sym_nullptr] = ACTIONS(1469), + [sym__expression] = STATE(4068), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3509), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3509), + [sym_call_expression] = STATE(3509), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3509), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3509), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_lambda_default_capture] = STATE(6648), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3509), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(4058), + [anon_sym_LPAREN2] = ACTIONS(3615), + [anon_sym_BANG] = ACTIONS(3619), + [anon_sym_TILDE] = ACTIONS(3619), + [anon_sym_DASH] = ACTIONS(3617), + [anon_sym_PLUS] = ACTIONS(3617), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(4040), + [anon_sym_COLON_COLON] = ACTIONS(3621), + [anon_sym_LBRACK] = ACTIONS(1949), + [anon_sym_RBRACK] = ACTIONS(4042), + [anon_sym_EQ] = ACTIONS(4044), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(3617), + [anon_sym_compl] = ACTIONS(3617), + [anon_sym_DASH_DASH] = ACTIONS(3623), + [anon_sym_PLUS_PLUS] = ACTIONS(3623), + [anon_sym_sizeof] = ACTIONS(3625), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(3627), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(3629), + [anon_sym_new] = ACTIONS(3631), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1651] = { - [sym__expression] = STATE(3849), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2954), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym__expression] = STATE(3420), + [sym__expression_not_binary] = STATE(3513), + [sym_conditional_expression] = STATE(3513), + [sym_assignment_expression] = STATE(3513), + [sym_pointer_expression] = STATE(3513), + [sym_unary_expression] = STATE(3513), + [sym_binary_expression] = STATE(3513), + [sym_update_expression] = STATE(3513), + [sym_cast_expression] = STATE(3513), + [sym_sizeof_expression] = STATE(3513), + [sym_offsetof_expression] = STATE(3513), + [sym_generic_expression] = STATE(3513), + [sym_subscript_expression] = STATE(3513), + [sym_call_expression] = STATE(3513), + [sym_gnu_asm_expression] = STATE(3513), + [sym_field_expression] = STATE(3513), + [sym_compound_literal_expression] = STATE(3513), + [sym_parenthesized_expression] = STATE(3513), + [sym_char_literal] = STATE(3385), + [sym_concatenated_string] = STATE(3385), + [sym_string_literal] = STATE(2225), + [sym_null] = STATE(3513), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6957), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3513), + [sym_raw_string_literal] = STATE(2225), + [sym_co_await_expression] = STATE(3513), + [sym_new_expression] = STATE(3513), + [sym_delete_expression] = STATE(3513), + [sym_requires_clause] = STATE(3513), + [sym_requires_expression] = STATE(3513), + [sym_lambda_expression] = STATE(3513), + [sym_lambda_capture_specifier] = STATE(5162), + [sym_fold_expression] = STATE(3513), + [sym_parameter_pack_expansion] = STATE(3513), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5289), + [sym_qualified_identifier] = STATE(3513), + [sym_qualified_type_identifier] = STATE(6957), + [sym_user_defined_literal] = STATE(3513), + [sym_identifier] = ACTIONS(2031), + [anon_sym_LPAREN2] = ACTIONS(4046), + [anon_sym_BANG] = ACTIONS(2037), + [anon_sym_TILDE] = ACTIONS(2037), + [anon_sym_DASH] = ACTIONS(2035), + [anon_sym_PLUS] = ACTIONS(2035), + [anon_sym_STAR] = ACTIONS(4046), + [anon_sym_AMP_AMP] = ACTIONS(4046), + [anon_sym_AMP] = ACTIONS(4048), + [anon_sym_LT] = ACTIONS(4046), + [anon_sym_COLON_COLON] = ACTIONS(2041), + [anon_sym_LBRACE] = ACTIONS(4046), + [anon_sym_LBRACK] = ACTIONS(4046), + [sym_primitive_type] = ACTIONS(2045), + [anon_sym_not] = ACTIONS(2035), + [anon_sym_compl] = ACTIONS(2035), + [anon_sym_DASH_DASH] = ACTIONS(2047), + [anon_sym_PLUS_PLUS] = ACTIONS(2047), + [anon_sym_sizeof] = ACTIONS(2049), + [anon_sym_offsetof] = ACTIONS(2051), + [anon_sym__Generic] = ACTIONS(2053), + [anon_sym_asm] = ACTIONS(2055), + [anon_sym___asm__] = ACTIONS(2055), + [sym_number_literal] = ACTIONS(2057), + [anon_sym_L_SQUOTE] = ACTIONS(2059), + [anon_sym_u_SQUOTE] = ACTIONS(2059), + [anon_sym_U_SQUOTE] = ACTIONS(2059), + [anon_sym_u8_SQUOTE] = ACTIONS(2059), + [anon_sym_SQUOTE] = ACTIONS(2059), + [anon_sym_L_DQUOTE] = ACTIONS(2061), + [anon_sym_u_DQUOTE] = ACTIONS(2061), + [anon_sym_U_DQUOTE] = ACTIONS(2061), + [anon_sym_u8_DQUOTE] = ACTIONS(2061), + [anon_sym_DQUOTE] = ACTIONS(2061), + [sym_true] = ACTIONS(2063), + [sym_false] = ACTIONS(2063), + [anon_sym_NULL] = ACTIONS(2065), + [anon_sym_nullptr] = ACTIONS(2065), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(2067), + [anon_sym_R_DQUOTE] = ACTIONS(2069), + [anon_sym_LR_DQUOTE] = ACTIONS(2069), + [anon_sym_uR_DQUOTE] = ACTIONS(2069), + [anon_sym_UR_DQUOTE] = ACTIONS(2069), + [anon_sym_u8R_DQUOTE] = ACTIONS(2069), + [anon_sym_co_await] = ACTIONS(2071), + [anon_sym_new] = ACTIONS(2073), + [anon_sym_requires] = ACTIONS(2075), + [sym_this] = ACTIONS(2063), + }, + [1652] = { + [sym__expression] = STATE(4410), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_initializer_list] = STATE(7109), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(1899), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), - }, - [1652] = { - [sym__expression] = STATE(2917), - [sym_conditional_expression] = STATE(3035), - [sym_assignment_expression] = STATE(3035), - [sym_pointer_expression] = STATE(2713), - [sym_unary_expression] = STATE(3035), - [sym_binary_expression] = STATE(3035), - [sym_update_expression] = STATE(3035), - [sym_cast_expression] = STATE(3035), - [sym_sizeof_expression] = STATE(3035), - [sym_subscript_expression] = STATE(2713), - [sym_call_expression] = STATE(2713), - [sym_field_expression] = STATE(2713), - [sym_compound_literal_expression] = STATE(3035), - [sym_parenthesized_expression] = STATE(2713), - [sym_char_literal] = STATE(3013), - [sym_concatenated_string] = STATE(3013), - [sym_string_literal] = STATE(1900), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5990), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3035), - [sym_raw_string_literal] = STATE(1900), - [sym_co_await_expression] = STATE(3035), - [sym_new_expression] = STATE(3035), - [sym_delete_expression] = STATE(3035), - [sym_requires_clause] = STATE(3035), - [sym_requires_expression] = STATE(3035), - [sym_lambda_expression] = STATE(3035), - [sym_lambda_capture_specifier] = STATE(4465), - [sym_fold_expression] = STATE(3035), - [sym_parameter_pack_expansion] = STATE(3035), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4584), - [sym_qualified_identifier] = STATE(2713), - [sym_qualified_type_identifier] = STATE(5990), - [sym_user_defined_literal] = STATE(3035), - [sym_identifier] = ACTIONS(1643), - [anon_sym_LPAREN2] = ACTIONS(1439), - [anon_sym_BANG] = ACTIONS(1441), - [anon_sym_TILDE] = ACTIONS(1441), - [anon_sym_DASH] = ACTIONS(1443), - [anon_sym_PLUS] = ACTIONS(1443), - [anon_sym_STAR] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(1445), - [anon_sym_COLON_COLON] = ACTIONS(1447), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1581), - [anon_sym_not] = ACTIONS(1443), - [anon_sym_compl] = ACTIONS(1443), - [anon_sym_DASH_DASH] = ACTIONS(1459), - [anon_sym_PLUS_PLUS] = ACTIONS(1459), - [anon_sym_sizeof] = ACTIONS(1461), - [sym_number_literal] = ACTIONS(1463), - [anon_sym_L_SQUOTE] = ACTIONS(1465), - [anon_sym_u_SQUOTE] = ACTIONS(1465), - [anon_sym_U_SQUOTE] = ACTIONS(1465), - [anon_sym_u8_SQUOTE] = ACTIONS(1465), - [anon_sym_SQUOTE] = ACTIONS(1465), - [anon_sym_L_DQUOTE] = ACTIONS(1467), - [anon_sym_u_DQUOTE] = ACTIONS(1467), - [anon_sym_U_DQUOTE] = ACTIONS(1467), - [anon_sym_u8_DQUOTE] = ACTIONS(1467), - [anon_sym_DQUOTE] = ACTIONS(1467), - [sym_true] = ACTIONS(1469), - [sym_false] = ACTIONS(1469), - [sym_null] = ACTIONS(1469), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1473), - [anon_sym_R_DQUOTE] = ACTIONS(1475), - [anon_sym_LR_DQUOTE] = ACTIONS(1475), - [anon_sym_uR_DQUOTE] = ACTIONS(1475), - [anon_sym_UR_DQUOTE] = ACTIONS(1475), - [anon_sym_u8R_DQUOTE] = ACTIONS(1475), - [anon_sym_co_await] = ACTIONS(1477), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_requires] = ACTIONS(1481), - [sym_this] = ACTIONS(1469), - [sym_nullptr] = ACTIONS(1469), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1653] = { - [sym__expression] = STATE(2495), - [sym_conditional_expression] = STATE(2574), - [sym_assignment_expression] = STATE(2574), - [sym_pointer_expression] = STATE(2578), - [sym_unary_expression] = STATE(2574), - [sym_binary_expression] = STATE(2574), - [sym_update_expression] = STATE(2574), - [sym_cast_expression] = STATE(2574), - [sym_sizeof_expression] = STATE(2574), - [sym_subscript_expression] = STATE(2578), - [sym_call_expression] = STATE(2578), - [sym_field_expression] = STATE(2578), - [sym_compound_literal_expression] = STATE(2574), - [sym_parenthesized_expression] = STATE(2578), - [sym_char_literal] = STATE(2207), - [sym_concatenated_string] = STATE(2207), - [sym_string_literal] = STATE(1820), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5944), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(2574), - [sym_raw_string_literal] = STATE(1820), - [sym_co_await_expression] = STATE(2574), - [sym_new_expression] = STATE(2574), - [sym_delete_expression] = STATE(2574), - [sym_requires_clause] = STATE(2574), - [sym_requires_expression] = STATE(2574), - [sym_lambda_expression] = STATE(2574), - [sym_lambda_capture_specifier] = STATE(4479), - [sym_fold_expression] = STATE(2574), - [sym_parameter_pack_expansion] = STATE(2574), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2578), - [sym_qualified_type_identifier] = STATE(5944), - [sym_user_defined_literal] = STATE(2574), - [sym_identifier] = ACTIONS(1523), - [anon_sym_LPAREN2] = ACTIONS(1527), - [anon_sym_BANG] = ACTIONS(1531), - [anon_sym_TILDE] = ACTIONS(1531), - [anon_sym_DASH] = ACTIONS(1529), - [anon_sym_PLUS] = ACTIONS(1529), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(1529), - [anon_sym_compl] = ACTIONS(1529), - [anon_sym_DASH_DASH] = ACTIONS(1543), - [anon_sym_PLUS_PLUS] = ACTIONS(1543), - [anon_sym_sizeof] = ACTIONS(1545), - [sym_number_literal] = ACTIONS(1547), - [anon_sym_L_SQUOTE] = ACTIONS(1549), - [anon_sym_u_SQUOTE] = ACTIONS(1549), - [anon_sym_U_SQUOTE] = ACTIONS(1549), - [anon_sym_u8_SQUOTE] = ACTIONS(1549), - [anon_sym_SQUOTE] = ACTIONS(1549), - [anon_sym_L_DQUOTE] = ACTIONS(1551), - [anon_sym_u_DQUOTE] = ACTIONS(1551), - [anon_sym_U_DQUOTE] = ACTIONS(1551), - [anon_sym_u8_DQUOTE] = ACTIONS(1551), - [anon_sym_DQUOTE] = ACTIONS(1551), - [sym_true] = ACTIONS(1553), - [sym_false] = ACTIONS(1553), - [sym_null] = ACTIONS(1553), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1557), - [anon_sym_R_DQUOTE] = ACTIONS(1559), - [anon_sym_LR_DQUOTE] = ACTIONS(1559), - [anon_sym_uR_DQUOTE] = ACTIONS(1559), - [anon_sym_UR_DQUOTE] = ACTIONS(1559), - [anon_sym_u8R_DQUOTE] = ACTIONS(1559), - [anon_sym_co_await] = ACTIONS(1561), - [anon_sym_new] = ACTIONS(1563), - [anon_sym_requires] = ACTIONS(1565), - [sym_this] = ACTIONS(1553), - [sym_nullptr] = ACTIONS(1553), + [sym__expression] = STATE(4341), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3509), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3509), + [sym_call_expression] = STATE(3509), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3509), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3509), + [sym_initializer_list] = STATE(7399), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3509), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3613), + [anon_sym_LPAREN2] = ACTIONS(3615), + [anon_sym_BANG] = ACTIONS(3619), + [anon_sym_TILDE] = ACTIONS(3619), + [anon_sym_DASH] = ACTIONS(3617), + [anon_sym_PLUS] = ACTIONS(3617), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(3621), + [anon_sym_LBRACE] = ACTIONS(1899), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(3617), + [anon_sym_compl] = ACTIONS(3617), + [anon_sym_DASH_DASH] = ACTIONS(3623), + [anon_sym_PLUS_PLUS] = ACTIONS(3623), + [anon_sym_sizeof] = ACTIONS(3625), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(3627), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(3629), + [anon_sym_new] = ACTIONS(3631), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1654] = { - [sym__expression] = STATE(3817), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(3036), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(3036), - [sym_call_expression] = STATE(3036), - [sym_field_expression] = STATE(3036), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(3036), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(3036), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(3073), - [anon_sym_LPAREN2] = ACTIONS(3075), - [anon_sym_BANG] = ACTIONS(3079), - [anon_sym_TILDE] = ACTIONS(3079), - [anon_sym_DASH] = ACTIONS(3077), - [anon_sym_PLUS] = ACTIONS(3077), - [anon_sym_STAR] = ACTIONS(3081), - [anon_sym_AMP] = ACTIONS(3081), - [anon_sym_COLON_COLON] = ACTIONS(3083), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(3077), - [anon_sym_compl] = ACTIONS(3077), - [anon_sym_DASH_DASH] = ACTIONS(3085), - [anon_sym_PLUS_PLUS] = ACTIONS(3085), - [anon_sym_sizeof] = ACTIONS(3087), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(3089), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(3091), - [anon_sym_new] = ACTIONS(3065), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [sym__expression] = STATE(4343), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3509), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3509), + [sym_call_expression] = STATE(3509), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3509), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3509), + [sym_initializer_list] = STATE(7214), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3509), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3613), + [anon_sym_LPAREN2] = ACTIONS(3615), + [anon_sym_BANG] = ACTIONS(3619), + [anon_sym_TILDE] = ACTIONS(3619), + [anon_sym_DASH] = ACTIONS(3617), + [anon_sym_PLUS] = ACTIONS(3617), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(3621), + [anon_sym_LBRACE] = ACTIONS(1899), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(3617), + [anon_sym_compl] = ACTIONS(3617), + [anon_sym_DASH_DASH] = ACTIONS(3623), + [anon_sym_PLUS_PLUS] = ACTIONS(3623), + [anon_sym_sizeof] = ACTIONS(3625), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(3627), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(3629), + [anon_sym_new] = ACTIONS(3631), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1655] = { - [sym__expression] = STATE(2913), - [sym_conditional_expression] = STATE(3035), - [sym_assignment_expression] = STATE(3035), - [sym_pointer_expression] = STATE(2713), - [sym_unary_expression] = STATE(3035), - [sym_binary_expression] = STATE(3035), - [sym_update_expression] = STATE(3035), - [sym_cast_expression] = STATE(3035), - [sym_sizeof_expression] = STATE(3035), - [sym_subscript_expression] = STATE(2713), - [sym_call_expression] = STATE(2713), - [sym_field_expression] = STATE(2713), - [sym_compound_literal_expression] = STATE(3035), - [sym_parenthesized_expression] = STATE(2713), - [sym_char_literal] = STATE(3013), - [sym_concatenated_string] = STATE(3013), - [sym_string_literal] = STATE(1900), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5990), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3035), - [sym_raw_string_literal] = STATE(1900), - [sym_co_await_expression] = STATE(3035), - [sym_new_expression] = STATE(3035), - [sym_delete_expression] = STATE(3035), - [sym_requires_clause] = STATE(3035), - [sym_requires_expression] = STATE(3035), - [sym_lambda_expression] = STATE(3035), - [sym_lambda_capture_specifier] = STATE(4465), - [sym_fold_expression] = STATE(3035), - [sym_parameter_pack_expansion] = STATE(3035), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4584), - [sym_qualified_identifier] = STATE(2713), - [sym_qualified_type_identifier] = STATE(5990), - [sym_user_defined_literal] = STATE(3035), - [sym_identifier] = ACTIONS(1643), - [anon_sym_LPAREN2] = ACTIONS(1439), - [anon_sym_BANG] = ACTIONS(1441), - [anon_sym_TILDE] = ACTIONS(1441), - [anon_sym_DASH] = ACTIONS(1443), - [anon_sym_PLUS] = ACTIONS(1443), - [anon_sym_STAR] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(1445), - [anon_sym_COLON_COLON] = ACTIONS(1447), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1581), - [anon_sym_not] = ACTIONS(1443), - [anon_sym_compl] = ACTIONS(1443), - [anon_sym_DASH_DASH] = ACTIONS(1459), - [anon_sym_PLUS_PLUS] = ACTIONS(1459), - [anon_sym_sizeof] = ACTIONS(1461), - [sym_number_literal] = ACTIONS(1463), - [anon_sym_L_SQUOTE] = ACTIONS(1465), - [anon_sym_u_SQUOTE] = ACTIONS(1465), - [anon_sym_U_SQUOTE] = ACTIONS(1465), - [anon_sym_u8_SQUOTE] = ACTIONS(1465), - [anon_sym_SQUOTE] = ACTIONS(1465), - [anon_sym_L_DQUOTE] = ACTIONS(1467), - [anon_sym_u_DQUOTE] = ACTIONS(1467), - [anon_sym_U_DQUOTE] = ACTIONS(1467), - [anon_sym_u8_DQUOTE] = ACTIONS(1467), - [anon_sym_DQUOTE] = ACTIONS(1467), - [sym_true] = ACTIONS(1469), - [sym_false] = ACTIONS(1469), - [sym_null] = ACTIONS(1469), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1473), - [anon_sym_R_DQUOTE] = ACTIONS(1475), - [anon_sym_LR_DQUOTE] = ACTIONS(1475), - [anon_sym_uR_DQUOTE] = ACTIONS(1475), - [anon_sym_UR_DQUOTE] = ACTIONS(1475), - [anon_sym_u8R_DQUOTE] = ACTIONS(1475), - [anon_sym_co_await] = ACTIONS(1477), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_requires] = ACTIONS(1481), - [sym_this] = ACTIONS(1469), - [sym_nullptr] = ACTIONS(1469), + [sym__expression] = STATE(4297), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_initializer_list] = STATE(7595), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(1899), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1656] = { - [sym__expression] = STATE(2970), - [sym_conditional_expression] = STATE(2574), - [sym_assignment_expression] = STATE(2574), - [sym_pointer_expression] = STATE(2578), - [sym_unary_expression] = STATE(2574), - [sym_binary_expression] = STATE(2574), - [sym_update_expression] = STATE(2574), - [sym_cast_expression] = STATE(2574), - [sym_sizeof_expression] = STATE(2574), - [sym_subscript_expression] = STATE(2578), - [sym_call_expression] = STATE(2578), - [sym_field_expression] = STATE(2578), - [sym_compound_literal_expression] = STATE(2574), - [sym_parenthesized_expression] = STATE(2578), - [sym_char_literal] = STATE(2207), - [sym_concatenated_string] = STATE(2207), - [sym_string_literal] = STATE(1820), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5944), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(2574), - [sym_raw_string_literal] = STATE(1820), - [sym_co_await_expression] = STATE(2574), - [sym_new_expression] = STATE(2574), - [sym_delete_expression] = STATE(2574), - [sym_requires_clause] = STATE(2574), - [sym_requires_expression] = STATE(2574), - [sym_lambda_expression] = STATE(2574), - [sym_lambda_capture_specifier] = STATE(4479), - [sym_fold_expression] = STATE(2574), - [sym_parameter_pack_expansion] = STATE(2574), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2578), - [sym_qualified_type_identifier] = STATE(5944), - [sym_user_defined_literal] = STATE(2574), - [sym_identifier] = ACTIONS(1523), - [anon_sym_LPAREN2] = ACTIONS(1647), - [anon_sym_BANG] = ACTIONS(1651), - [anon_sym_TILDE] = ACTIONS(1651), - [anon_sym_DASH] = ACTIONS(1649), - [anon_sym_PLUS] = ACTIONS(1649), - [anon_sym_STAR] = ACTIONS(3081), - [anon_sym_AMP] = ACTIONS(3081), - [anon_sym_COLON_COLON] = ACTIONS(1655), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(1649), - [anon_sym_compl] = ACTIONS(1649), - [anon_sym_DASH_DASH] = ACTIONS(1657), - [anon_sym_PLUS_PLUS] = ACTIONS(1657), - [anon_sym_sizeof] = ACTIONS(1659), - [sym_number_literal] = ACTIONS(1547), - [anon_sym_L_SQUOTE] = ACTIONS(1549), - [anon_sym_u_SQUOTE] = ACTIONS(1549), - [anon_sym_U_SQUOTE] = ACTIONS(1549), - [anon_sym_u8_SQUOTE] = ACTIONS(1549), - [anon_sym_SQUOTE] = ACTIONS(1549), - [anon_sym_L_DQUOTE] = ACTIONS(1551), - [anon_sym_u_DQUOTE] = ACTIONS(1551), - [anon_sym_U_DQUOTE] = ACTIONS(1551), - [anon_sym_u8_DQUOTE] = ACTIONS(1551), - [anon_sym_DQUOTE] = ACTIONS(1551), - [sym_true] = ACTIONS(1553), - [sym_false] = ACTIONS(1553), - [sym_null] = ACTIONS(1553), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1661), - [anon_sym_R_DQUOTE] = ACTIONS(1559), - [anon_sym_LR_DQUOTE] = ACTIONS(1559), - [anon_sym_uR_DQUOTE] = ACTIONS(1559), - [anon_sym_UR_DQUOTE] = ACTIONS(1559), - [anon_sym_u8R_DQUOTE] = ACTIONS(1559), - [anon_sym_co_await] = ACTIONS(1663), - [anon_sym_new] = ACTIONS(1563), - [anon_sym_requires] = ACTIONS(1565), - [sym_this] = ACTIONS(1553), - [sym_nullptr] = ACTIONS(1553), + [sym__expression] = STATE(4325), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_initializer_list] = STATE(7033), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(1899), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1657] = { - [sym__expression] = STATE(2912), - [sym_conditional_expression] = STATE(3035), - [sym_assignment_expression] = STATE(3035), - [sym_pointer_expression] = STATE(2713), - [sym_unary_expression] = STATE(3035), - [sym_binary_expression] = STATE(3035), - [sym_update_expression] = STATE(3035), - [sym_cast_expression] = STATE(3035), - [sym_sizeof_expression] = STATE(3035), - [sym_subscript_expression] = STATE(2713), - [sym_call_expression] = STATE(2713), - [sym_field_expression] = STATE(2713), - [sym_compound_literal_expression] = STATE(3035), - [sym_parenthesized_expression] = STATE(2713), - [sym_char_literal] = STATE(3013), - [sym_concatenated_string] = STATE(3013), - [sym_string_literal] = STATE(1900), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5990), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3035), - [sym_raw_string_literal] = STATE(1900), - [sym_co_await_expression] = STATE(3035), - [sym_new_expression] = STATE(3035), - [sym_delete_expression] = STATE(3035), - [sym_requires_clause] = STATE(3035), - [sym_requires_expression] = STATE(3035), - [sym_lambda_expression] = STATE(3035), - [sym_lambda_capture_specifier] = STATE(4465), - [sym_fold_expression] = STATE(3035), - [sym_parameter_pack_expansion] = STATE(3035), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4584), - [sym_qualified_identifier] = STATE(2713), - [sym_qualified_type_identifier] = STATE(5990), - [sym_user_defined_literal] = STATE(3035), - [sym_identifier] = ACTIONS(1643), - [anon_sym_LPAREN2] = ACTIONS(1439), - [anon_sym_BANG] = ACTIONS(1441), - [anon_sym_TILDE] = ACTIONS(1441), - [anon_sym_DASH] = ACTIONS(1443), - [anon_sym_PLUS] = ACTIONS(1443), - [anon_sym_STAR] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(1445), - [anon_sym_COLON_COLON] = ACTIONS(1447), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1581), - [anon_sym_not] = ACTIONS(1443), - [anon_sym_compl] = ACTIONS(1443), - [anon_sym_DASH_DASH] = ACTIONS(1459), - [anon_sym_PLUS_PLUS] = ACTIONS(1459), - [anon_sym_sizeof] = ACTIONS(1461), - [sym_number_literal] = ACTIONS(1463), - [anon_sym_L_SQUOTE] = ACTIONS(1465), - [anon_sym_u_SQUOTE] = ACTIONS(1465), - [anon_sym_U_SQUOTE] = ACTIONS(1465), - [anon_sym_u8_SQUOTE] = ACTIONS(1465), - [anon_sym_SQUOTE] = ACTIONS(1465), - [anon_sym_L_DQUOTE] = ACTIONS(1467), - [anon_sym_u_DQUOTE] = ACTIONS(1467), - [anon_sym_U_DQUOTE] = ACTIONS(1467), - [anon_sym_u8_DQUOTE] = ACTIONS(1467), - [anon_sym_DQUOTE] = ACTIONS(1467), - [sym_true] = ACTIONS(1469), - [sym_false] = ACTIONS(1469), - [sym_null] = ACTIONS(1469), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1473), - [anon_sym_R_DQUOTE] = ACTIONS(1475), - [anon_sym_LR_DQUOTE] = ACTIONS(1475), - [anon_sym_uR_DQUOTE] = ACTIONS(1475), - [anon_sym_UR_DQUOTE] = ACTIONS(1475), - [anon_sym_u8R_DQUOTE] = ACTIONS(1475), - [anon_sym_co_await] = ACTIONS(1477), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_requires] = ACTIONS(1481), - [sym_this] = ACTIONS(1469), - [sym_nullptr] = ACTIONS(1469), + [sym__expression] = STATE(4452), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_initializer_list] = STATE(7025), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(1899), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1658] = { - [sym__expression] = STATE(2854), - [sym_conditional_expression] = STATE(2940), - [sym_assignment_expression] = STATE(2940), - [sym_pointer_expression] = STATE(2933), - [sym_unary_expression] = STATE(2940), - [sym_binary_expression] = STATE(2940), - [sym_update_expression] = STATE(2940), - [sym_cast_expression] = STATE(2940), - [sym_sizeof_expression] = STATE(2940), - [sym_subscript_expression] = STATE(2933), - [sym_call_expression] = STATE(2933), - [sym_field_expression] = STATE(2933), - [sym_compound_literal_expression] = STATE(2940), - [sym_parenthesized_expression] = STATE(2933), - [sym_char_literal] = STATE(2845), - [sym_concatenated_string] = STATE(2845), - [sym_string_literal] = STATE(1861), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5801), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(2940), - [sym_raw_string_literal] = STATE(1861), - [sym_co_await_expression] = STATE(2940), - [sym_new_expression] = STATE(2940), - [sym_delete_expression] = STATE(2940), - [sym_requires_clause] = STATE(2940), - [sym_requires_expression] = STATE(2940), - [sym_lambda_expression] = STATE(2940), - [sym_lambda_capture_specifier] = STATE(4464), - [sym_fold_expression] = STATE(2940), - [sym_parameter_pack_expansion] = STATE(2940), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4570), - [sym_qualified_identifier] = STATE(2933), - [sym_qualified_type_identifier] = STATE(5801), - [sym_user_defined_literal] = STATE(2940), - [sym_identifier] = ACTIONS(1605), - [anon_sym_LPAREN2] = ACTIONS(1607), - [anon_sym_BANG] = ACTIONS(1611), - [anon_sym_TILDE] = ACTIONS(1611), - [anon_sym_DASH] = ACTIONS(1609), - [anon_sym_PLUS] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(2416), - [anon_sym_AMP] = ACTIONS(2416), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_LBRACK] = ACTIONS(3761), - [sym_primitive_type] = ACTIONS(1619), - [anon_sym_not] = ACTIONS(1609), - [anon_sym_compl] = ACTIONS(1609), - [anon_sym_DASH_DASH] = ACTIONS(1621), - [anon_sym_PLUS_PLUS] = ACTIONS(1621), - [anon_sym_sizeof] = ACTIONS(1623), - [sym_number_literal] = ACTIONS(1625), - [anon_sym_L_SQUOTE] = ACTIONS(1627), - [anon_sym_u_SQUOTE] = ACTIONS(1627), - [anon_sym_U_SQUOTE] = ACTIONS(1627), - [anon_sym_u8_SQUOTE] = ACTIONS(1627), - [anon_sym_SQUOTE] = ACTIONS(1627), - [anon_sym_L_DQUOTE] = ACTIONS(1629), - [anon_sym_u_DQUOTE] = ACTIONS(1629), - [anon_sym_U_DQUOTE] = ACTIONS(1629), - [anon_sym_u8_DQUOTE] = ACTIONS(1629), - [anon_sym_DQUOTE] = ACTIONS(1629), - [sym_true] = ACTIONS(1631), - [sym_false] = ACTIONS(1631), - [sym_null] = ACTIONS(1631), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1633), - [anon_sym_R_DQUOTE] = ACTIONS(1635), - [anon_sym_LR_DQUOTE] = ACTIONS(1635), - [anon_sym_uR_DQUOTE] = ACTIONS(1635), - [anon_sym_UR_DQUOTE] = ACTIONS(1635), - [anon_sym_u8R_DQUOTE] = ACTIONS(1635), - [anon_sym_co_await] = ACTIONS(1637), - [anon_sym_new] = ACTIONS(1639), - [anon_sym_requires] = ACTIONS(1641), - [sym_this] = ACTIONS(1631), - [sym_nullptr] = ACTIONS(1631), + [sym__expression] = STATE(4404), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_initializer_list] = STATE(6998), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(1899), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1659] = { - [sym__expression] = STATE(2849), - [sym_conditional_expression] = STATE(2940), - [sym_assignment_expression] = STATE(2940), - [sym_pointer_expression] = STATE(2933), - [sym_unary_expression] = STATE(2940), - [sym_binary_expression] = STATE(2940), - [sym_update_expression] = STATE(2940), - [sym_cast_expression] = STATE(2940), - [sym_sizeof_expression] = STATE(2940), - [sym_subscript_expression] = STATE(2933), - [sym_call_expression] = STATE(2933), - [sym_field_expression] = STATE(2933), - [sym_compound_literal_expression] = STATE(2940), - [sym_parenthesized_expression] = STATE(2933), - [sym_char_literal] = STATE(2845), - [sym_concatenated_string] = STATE(2845), - [sym_string_literal] = STATE(1861), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5801), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(2940), - [sym_raw_string_literal] = STATE(1861), - [sym_co_await_expression] = STATE(2940), - [sym_new_expression] = STATE(2940), - [sym_delete_expression] = STATE(2940), - [sym_requires_clause] = STATE(2940), - [sym_requires_expression] = STATE(2940), - [sym_lambda_expression] = STATE(2940), - [sym_lambda_capture_specifier] = STATE(4464), - [sym_fold_expression] = STATE(2940), - [sym_parameter_pack_expansion] = STATE(2940), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4570), - [sym_qualified_identifier] = STATE(2933), - [sym_qualified_type_identifier] = STATE(5801), - [sym_user_defined_literal] = STATE(2940), - [sym_identifier] = ACTIONS(1605), - [anon_sym_LPAREN2] = ACTIONS(1607), - [anon_sym_BANG] = ACTIONS(1611), - [anon_sym_TILDE] = ACTIONS(1611), - [anon_sym_DASH] = ACTIONS(1609), - [anon_sym_PLUS] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(2416), - [anon_sym_AMP] = ACTIONS(2416), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1619), - [anon_sym_not] = ACTIONS(1609), - [anon_sym_compl] = ACTIONS(1609), - [anon_sym_DASH_DASH] = ACTIONS(1621), - [anon_sym_PLUS_PLUS] = ACTIONS(1621), - [anon_sym_sizeof] = ACTIONS(1623), - [sym_number_literal] = ACTIONS(1625), - [anon_sym_L_SQUOTE] = ACTIONS(1627), - [anon_sym_u_SQUOTE] = ACTIONS(1627), - [anon_sym_U_SQUOTE] = ACTIONS(1627), - [anon_sym_u8_SQUOTE] = ACTIONS(1627), - [anon_sym_SQUOTE] = ACTIONS(1627), - [anon_sym_L_DQUOTE] = ACTIONS(1629), - [anon_sym_u_DQUOTE] = ACTIONS(1629), - [anon_sym_U_DQUOTE] = ACTIONS(1629), - [anon_sym_u8_DQUOTE] = ACTIONS(1629), - [anon_sym_DQUOTE] = ACTIONS(1629), - [sym_true] = ACTIONS(1631), - [sym_false] = ACTIONS(1631), - [sym_null] = ACTIONS(1631), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1633), - [anon_sym_R_DQUOTE] = ACTIONS(1635), - [anon_sym_LR_DQUOTE] = ACTIONS(1635), - [anon_sym_uR_DQUOTE] = ACTIONS(1635), - [anon_sym_UR_DQUOTE] = ACTIONS(1635), - [anon_sym_u8R_DQUOTE] = ACTIONS(1635), - [anon_sym_co_await] = ACTIONS(1637), - [anon_sym_new] = ACTIONS(1639), - [anon_sym_requires] = ACTIONS(1641), - [sym_this] = ACTIONS(1631), - [sym_nullptr] = ACTIONS(1631), + [sym__expression] = STATE(4416), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_initializer_list] = STATE(7011), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(1899), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1660] = { - [sym__expression] = STATE(2911), - [sym_conditional_expression] = STATE(3035), - [sym_assignment_expression] = STATE(3035), - [sym_pointer_expression] = STATE(2713), - [sym_unary_expression] = STATE(3035), - [sym_binary_expression] = STATE(3035), - [sym_update_expression] = STATE(3035), - [sym_cast_expression] = STATE(3035), - [sym_sizeof_expression] = STATE(3035), - [sym_subscript_expression] = STATE(2713), - [sym_call_expression] = STATE(2713), - [sym_field_expression] = STATE(2713), - [sym_compound_literal_expression] = STATE(3035), - [sym_parenthesized_expression] = STATE(2713), - [sym_char_literal] = STATE(3013), - [sym_concatenated_string] = STATE(3013), - [sym_string_literal] = STATE(1900), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5990), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3035), - [sym_raw_string_literal] = STATE(1900), - [sym_co_await_expression] = STATE(3035), - [sym_new_expression] = STATE(3035), - [sym_delete_expression] = STATE(3035), - [sym_requires_clause] = STATE(3035), - [sym_requires_expression] = STATE(3035), - [sym_lambda_expression] = STATE(3035), - [sym_lambda_capture_specifier] = STATE(4465), - [sym_fold_expression] = STATE(3035), - [sym_parameter_pack_expansion] = STATE(3035), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4584), - [sym_qualified_identifier] = STATE(2713), - [sym_qualified_type_identifier] = STATE(5990), - [sym_user_defined_literal] = STATE(3035), - [sym_identifier] = ACTIONS(1643), - [anon_sym_LPAREN2] = ACTIONS(1439), - [anon_sym_BANG] = ACTIONS(1441), - [anon_sym_TILDE] = ACTIONS(1441), - [anon_sym_DASH] = ACTIONS(1443), - [anon_sym_PLUS] = ACTIONS(1443), - [anon_sym_STAR] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(1445), - [anon_sym_COLON_COLON] = ACTIONS(1447), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1581), - [anon_sym_not] = ACTIONS(1443), - [anon_sym_compl] = ACTIONS(1443), - [anon_sym_DASH_DASH] = ACTIONS(1459), - [anon_sym_PLUS_PLUS] = ACTIONS(1459), - [anon_sym_sizeof] = ACTIONS(1461), - [sym_number_literal] = ACTIONS(1463), - [anon_sym_L_SQUOTE] = ACTIONS(1465), - [anon_sym_u_SQUOTE] = ACTIONS(1465), - [anon_sym_U_SQUOTE] = ACTIONS(1465), - [anon_sym_u8_SQUOTE] = ACTIONS(1465), - [anon_sym_SQUOTE] = ACTIONS(1465), - [anon_sym_L_DQUOTE] = ACTIONS(1467), - [anon_sym_u_DQUOTE] = ACTIONS(1467), - [anon_sym_U_DQUOTE] = ACTIONS(1467), - [anon_sym_u8_DQUOTE] = ACTIONS(1467), - [anon_sym_DQUOTE] = ACTIONS(1467), - [sym_true] = ACTIONS(1469), - [sym_false] = ACTIONS(1469), - [sym_null] = ACTIONS(1469), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1473), - [anon_sym_R_DQUOTE] = ACTIONS(1475), - [anon_sym_LR_DQUOTE] = ACTIONS(1475), - [anon_sym_uR_DQUOTE] = ACTIONS(1475), - [anon_sym_UR_DQUOTE] = ACTIONS(1475), - [anon_sym_u8R_DQUOTE] = ACTIONS(1475), - [anon_sym_co_await] = ACTIONS(1477), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_requires] = ACTIONS(1481), - [sym_this] = ACTIONS(1469), - [sym_nullptr] = ACTIONS(1469), + [sym__expression] = STATE(4288), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7366), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_RPAREN] = ACTIONS(4116), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1661] = { - [sym__expression] = STATE(3637), - [sym_conditional_expression] = STATE(3855), - [sym_assignment_expression] = STATE(3855), - [sym_pointer_expression] = STATE(2954), - [sym_unary_expression] = STATE(3855), - [sym_binary_expression] = STATE(3855), - [sym_update_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_subscript_expression] = STATE(2954), - [sym_call_expression] = STATE(2954), - [sym_field_expression] = STATE(2954), - [sym_compound_literal_expression] = STATE(3855), - [sym_parenthesized_expression] = STATE(2954), - [sym_char_literal] = STATE(3557), - [sym_concatenated_string] = STATE(3557), - [sym_string_literal] = STATE(2955), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5844), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3855), - [sym_raw_string_literal] = STATE(2955), - [sym_co_await_expression] = STATE(3855), - [sym_new_expression] = STATE(3855), - [sym_delete_expression] = STATE(3855), - [sym_requires_clause] = STATE(3855), - [sym_requires_expression] = STATE(3855), - [sym_lambda_expression] = STATE(3855), - [sym_lambda_capture_specifier] = STATE(4501), - [sym_fold_expression] = STATE(3855), - [sym_parameter_pack_expansion] = STATE(3855), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4570), - [sym_qualified_identifier] = STATE(2954), - [sym_qualified_type_identifier] = STATE(5844), - [sym_user_defined_literal] = STATE(3855), - [sym_identifier] = ACTIONS(3023), - [anon_sym_LPAREN2] = ACTIONS(2410), - [anon_sym_BANG] = ACTIONS(2412), - [anon_sym_TILDE] = ACTIONS(2412), - [anon_sym_DASH] = ACTIONS(2414), - [anon_sym_PLUS] = ACTIONS(2414), - [anon_sym_STAR] = ACTIONS(2416), - [anon_sym_AMP] = ACTIONS(2416), - [anon_sym_COLON_COLON] = ACTIONS(2418), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1619), - [anon_sym_not] = ACTIONS(2414), - [anon_sym_compl] = ACTIONS(2414), - [anon_sym_DASH_DASH] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(2432), - [anon_sym_sizeof] = ACTIONS(2434), - [sym_number_literal] = ACTIONS(2436), - [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_L_DQUOTE] = ACTIONS(2440), - [anon_sym_u_DQUOTE] = ACTIONS(2440), - [anon_sym_U_DQUOTE] = ACTIONS(2440), - [anon_sym_u8_DQUOTE] = ACTIONS(2440), - [anon_sym_DQUOTE] = ACTIONS(2440), - [sym_true] = ACTIONS(2442), - [sym_false] = ACTIONS(2442), - [sym_null] = ACTIONS(2442), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(2452), - [anon_sym_R_DQUOTE] = ACTIONS(2454), - [anon_sym_LR_DQUOTE] = ACTIONS(2454), - [anon_sym_uR_DQUOTE] = ACTIONS(2454), - [anon_sym_UR_DQUOTE] = ACTIONS(2454), - [anon_sym_u8R_DQUOTE] = ACTIONS(2454), - [anon_sym_co_await] = ACTIONS(2456), - [anon_sym_new] = ACTIONS(2458), - [anon_sym_requires] = ACTIONS(2460), - [sym_this] = ACTIONS(2442), - [sym_nullptr] = ACTIONS(2442), + [sym__expression] = STATE(4440), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_initializer_list] = STATE(7622), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(1899), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1662] = { - [sym__expression] = STATE(2517), - [sym_conditional_expression] = STATE(2574), - [sym_assignment_expression] = STATE(2574), - [sym_pointer_expression] = STATE(2578), - [sym_unary_expression] = STATE(2574), - [sym_binary_expression] = STATE(2574), - [sym_update_expression] = STATE(2574), - [sym_cast_expression] = STATE(2574), - [sym_sizeof_expression] = STATE(2574), - [sym_subscript_expression] = STATE(2578), - [sym_call_expression] = STATE(2578), - [sym_field_expression] = STATE(2578), - [sym_compound_literal_expression] = STATE(2574), - [sym_parenthesized_expression] = STATE(2578), - [sym_char_literal] = STATE(2207), - [sym_concatenated_string] = STATE(2207), - [sym_string_literal] = STATE(1820), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5944), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(2574), - [sym_raw_string_literal] = STATE(1820), - [sym_co_await_expression] = STATE(2574), - [sym_new_expression] = STATE(2574), - [sym_delete_expression] = STATE(2574), - [sym_requires_clause] = STATE(2574), - [sym_requires_expression] = STATE(2574), - [sym_lambda_expression] = STATE(2574), - [sym_lambda_capture_specifier] = STATE(4479), - [sym_fold_expression] = STATE(2574), - [sym_parameter_pack_expansion] = STATE(2574), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2578), - [sym_qualified_type_identifier] = STATE(5944), - [sym_user_defined_literal] = STATE(2574), - [sym_identifier] = ACTIONS(1523), - [anon_sym_LPAREN2] = ACTIONS(1527), - [anon_sym_BANG] = ACTIONS(1531), - [anon_sym_TILDE] = ACTIONS(1531), - [anon_sym_DASH] = ACTIONS(1529), - [anon_sym_PLUS] = ACTIONS(1529), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(1529), - [anon_sym_compl] = ACTIONS(1529), - [anon_sym_DASH_DASH] = ACTIONS(1543), - [anon_sym_PLUS_PLUS] = ACTIONS(1543), - [anon_sym_sizeof] = ACTIONS(1545), - [sym_number_literal] = ACTIONS(1547), - [anon_sym_L_SQUOTE] = ACTIONS(1549), - [anon_sym_u_SQUOTE] = ACTIONS(1549), - [anon_sym_U_SQUOTE] = ACTIONS(1549), - [anon_sym_u8_SQUOTE] = ACTIONS(1549), - [anon_sym_SQUOTE] = ACTIONS(1549), - [anon_sym_L_DQUOTE] = ACTIONS(1551), - [anon_sym_u_DQUOTE] = ACTIONS(1551), - [anon_sym_U_DQUOTE] = ACTIONS(1551), - [anon_sym_u8_DQUOTE] = ACTIONS(1551), - [anon_sym_DQUOTE] = ACTIONS(1551), - [sym_true] = ACTIONS(1553), - [sym_false] = ACTIONS(1553), - [sym_null] = ACTIONS(1553), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1557), - [anon_sym_R_DQUOTE] = ACTIONS(1559), - [anon_sym_LR_DQUOTE] = ACTIONS(1559), - [anon_sym_uR_DQUOTE] = ACTIONS(1559), - [anon_sym_UR_DQUOTE] = ACTIONS(1559), - [anon_sym_u8R_DQUOTE] = ACTIONS(1559), - [anon_sym_co_await] = ACTIONS(1561), - [anon_sym_new] = ACTIONS(1563), - [anon_sym_requires] = ACTIONS(1565), - [sym_this] = ACTIONS(1553), - [sym_nullptr] = ACTIONS(1553), + [sym__expression] = STATE(4201), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7423), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_RPAREN] = ACTIONS(4118), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1663] = { - [sym__expression] = STATE(3633), - [sym_conditional_expression] = STATE(3855), - [sym_assignment_expression] = STATE(3855), - [sym_pointer_expression] = STATE(2954), - [sym_unary_expression] = STATE(3855), - [sym_binary_expression] = STATE(3855), - [sym_update_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_subscript_expression] = STATE(2954), - [sym_call_expression] = STATE(2954), - [sym_field_expression] = STATE(2954), - [sym_compound_literal_expression] = STATE(3855), - [sym_parenthesized_expression] = STATE(2954), - [sym_char_literal] = STATE(3557), - [sym_concatenated_string] = STATE(3557), - [sym_string_literal] = STATE(2955), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5844), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3855), - [sym_raw_string_literal] = STATE(2955), - [sym_co_await_expression] = STATE(3855), - [sym_new_expression] = STATE(3855), - [sym_delete_expression] = STATE(3855), - [sym_requires_clause] = STATE(3855), - [sym_requires_expression] = STATE(3855), - [sym_lambda_expression] = STATE(3855), - [sym_lambda_capture_specifier] = STATE(4501), - [sym_fold_expression] = STATE(3855), - [sym_parameter_pack_expansion] = STATE(3855), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4570), - [sym_qualified_identifier] = STATE(2954), - [sym_qualified_type_identifier] = STATE(5844), - [sym_user_defined_literal] = STATE(3855), - [sym_identifier] = ACTIONS(3023), - [anon_sym_LPAREN2] = ACTIONS(2410), - [anon_sym_BANG] = ACTIONS(2412), - [anon_sym_TILDE] = ACTIONS(2412), - [anon_sym_DASH] = ACTIONS(2414), - [anon_sym_PLUS] = ACTIONS(2414), - [anon_sym_STAR] = ACTIONS(2416), - [anon_sym_AMP] = ACTIONS(2416), - [anon_sym_COLON_COLON] = ACTIONS(2418), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1619), - [anon_sym_not] = ACTIONS(2414), - [anon_sym_compl] = ACTIONS(2414), - [anon_sym_DASH_DASH] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(2432), - [anon_sym_sizeof] = ACTIONS(2434), - [sym_number_literal] = ACTIONS(2436), - [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_L_DQUOTE] = ACTIONS(2440), - [anon_sym_u_DQUOTE] = ACTIONS(2440), - [anon_sym_U_DQUOTE] = ACTIONS(2440), - [anon_sym_u8_DQUOTE] = ACTIONS(2440), - [anon_sym_DQUOTE] = ACTIONS(2440), - [sym_true] = ACTIONS(2442), - [sym_false] = ACTIONS(2442), - [sym_null] = ACTIONS(2442), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(2452), - [anon_sym_R_DQUOTE] = ACTIONS(2454), - [anon_sym_LR_DQUOTE] = ACTIONS(2454), - [anon_sym_uR_DQUOTE] = ACTIONS(2454), - [anon_sym_UR_DQUOTE] = ACTIONS(2454), - [anon_sym_u8R_DQUOTE] = ACTIONS(2454), - [anon_sym_co_await] = ACTIONS(2456), - [anon_sym_new] = ACTIONS(2458), - [anon_sym_requires] = ACTIONS(2460), - [sym_this] = ACTIONS(2442), - [sym_nullptr] = ACTIONS(2442), + [sym__expression] = STATE(4285), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7342), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_RPAREN] = ACTIONS(4120), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1664] = { - [sym__expression] = STATE(3826), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2984), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2984), - [sym_call_expression] = STATE(2984), - [sym_field_expression] = STATE(2984), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2984), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2984), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(3047), - [anon_sym_LPAREN2] = ACTIONS(3049), - [anon_sym_BANG] = ACTIONS(3053), - [anon_sym_TILDE] = ACTIONS(3053), - [anon_sym_DASH] = ACTIONS(3051), - [anon_sym_PLUS] = ACTIONS(3051), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(3055), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(3051), - [anon_sym_compl] = ACTIONS(3051), - [anon_sym_DASH_DASH] = ACTIONS(3057), - [anon_sym_PLUS_PLUS] = ACTIONS(3057), - [anon_sym_sizeof] = ACTIONS(3059), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(3061), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(3063), - [anon_sym_new] = ACTIONS(3065), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [sym__expression] = STATE(4115), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(6866), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4122), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1665] = { - [sym__expression] = STATE(3016), - [sym_conditional_expression] = STATE(3035), - [sym_assignment_expression] = STATE(3035), - [sym_pointer_expression] = STATE(2713), - [sym_unary_expression] = STATE(3035), - [sym_binary_expression] = STATE(3035), - [sym_update_expression] = STATE(3035), - [sym_cast_expression] = STATE(3035), - [sym_sizeof_expression] = STATE(3035), - [sym_subscript_expression] = STATE(2713), - [sym_call_expression] = STATE(2713), - [sym_field_expression] = STATE(2713), - [sym_compound_literal_expression] = STATE(3035), - [sym_parenthesized_expression] = STATE(2713), - [sym_char_literal] = STATE(3013), - [sym_concatenated_string] = STATE(3013), - [sym_string_literal] = STATE(1900), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5990), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3035), - [sym_raw_string_literal] = STATE(1900), - [sym_co_await_expression] = STATE(3035), - [sym_new_expression] = STATE(3035), - [sym_delete_expression] = STATE(3035), - [sym_requires_clause] = STATE(3035), - [sym_requires_expression] = STATE(3035), - [sym_lambda_expression] = STATE(3035), - [sym_lambda_capture_specifier] = STATE(4465), - [sym_fold_expression] = STATE(3035), - [sym_parameter_pack_expansion] = STATE(3035), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4584), - [sym_qualified_identifier] = STATE(2713), - [sym_qualified_type_identifier] = STATE(5990), - [sym_user_defined_literal] = STATE(3035), - [sym_identifier] = ACTIONS(3763), - [anon_sym_LPAREN2] = ACTIONS(1439), - [anon_sym_BANG] = ACTIONS(1441), - [anon_sym_TILDE] = ACTIONS(1441), - [anon_sym_DASH] = ACTIONS(1443), - [anon_sym_PLUS] = ACTIONS(1443), - [anon_sym_STAR] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(1445), - [anon_sym_COLON_COLON] = ACTIONS(1447), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1581), - [anon_sym_not] = ACTIONS(1443), - [anon_sym_compl] = ACTIONS(1443), - [anon_sym_DASH_DASH] = ACTIONS(1459), - [anon_sym_PLUS_PLUS] = ACTIONS(1459), - [anon_sym_sizeof] = ACTIONS(1461), - [sym_number_literal] = ACTIONS(1463), - [anon_sym_L_SQUOTE] = ACTIONS(1465), - [anon_sym_u_SQUOTE] = ACTIONS(1465), - [anon_sym_U_SQUOTE] = ACTIONS(1465), - [anon_sym_u8_SQUOTE] = ACTIONS(1465), - [anon_sym_SQUOTE] = ACTIONS(1465), - [anon_sym_L_DQUOTE] = ACTIONS(1467), - [anon_sym_u_DQUOTE] = ACTIONS(1467), - [anon_sym_U_DQUOTE] = ACTIONS(1467), - [anon_sym_u8_DQUOTE] = ACTIONS(1467), - [anon_sym_DQUOTE] = ACTIONS(1467), - [sym_true] = ACTIONS(1469), - [sym_false] = ACTIONS(1469), - [sym_null] = ACTIONS(1469), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1473), - [anon_sym_R_DQUOTE] = ACTIONS(1475), - [anon_sym_LR_DQUOTE] = ACTIONS(1475), - [anon_sym_uR_DQUOTE] = ACTIONS(1475), - [anon_sym_UR_DQUOTE] = ACTIONS(1475), - [anon_sym_u8R_DQUOTE] = ACTIONS(1475), - [anon_sym_co_await] = ACTIONS(1477), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_requires] = ACTIONS(1481), - [sym_this] = ACTIONS(1469), - [sym_nullptr] = ACTIONS(1469), + [sym__expression] = STATE(4236), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7162), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_RPAREN] = ACTIONS(4125), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1666] = { - [sym__expression] = STATE(3638), - [sym_conditional_expression] = STATE(3855), - [sym_assignment_expression] = STATE(3855), - [sym_pointer_expression] = STATE(2954), - [sym_unary_expression] = STATE(3855), - [sym_binary_expression] = STATE(3855), - [sym_update_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_subscript_expression] = STATE(2954), - [sym_call_expression] = STATE(2954), - [sym_field_expression] = STATE(2954), - [sym_compound_literal_expression] = STATE(3855), - [sym_parenthesized_expression] = STATE(2954), - [sym_char_literal] = STATE(3557), - [sym_concatenated_string] = STATE(3557), - [sym_string_literal] = STATE(2955), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5844), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3855), - [sym_raw_string_literal] = STATE(2955), - [sym_co_await_expression] = STATE(3855), - [sym_new_expression] = STATE(3855), - [sym_delete_expression] = STATE(3855), - [sym_requires_clause] = STATE(3855), - [sym_requires_expression] = STATE(3855), - [sym_lambda_expression] = STATE(3855), - [sym_lambda_capture_specifier] = STATE(4501), - [sym_fold_expression] = STATE(3855), - [sym_parameter_pack_expansion] = STATE(3855), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4570), - [sym_qualified_identifier] = STATE(2954), - [sym_qualified_type_identifier] = STATE(5844), - [sym_user_defined_literal] = STATE(3855), - [sym_identifier] = ACTIONS(3023), - [anon_sym_LPAREN2] = ACTIONS(2410), - [anon_sym_BANG] = ACTIONS(2412), - [anon_sym_TILDE] = ACTIONS(2412), - [anon_sym_DASH] = ACTIONS(2414), - [anon_sym_PLUS] = ACTIONS(2414), - [anon_sym_STAR] = ACTIONS(2416), - [anon_sym_AMP] = ACTIONS(2416), - [anon_sym_COLON_COLON] = ACTIONS(2418), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1619), - [anon_sym_not] = ACTIONS(2414), - [anon_sym_compl] = ACTIONS(2414), - [anon_sym_DASH_DASH] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(2432), - [anon_sym_sizeof] = ACTIONS(2434), - [sym_number_literal] = ACTIONS(2436), - [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_L_DQUOTE] = ACTIONS(2440), - [anon_sym_u_DQUOTE] = ACTIONS(2440), - [anon_sym_U_DQUOTE] = ACTIONS(2440), - [anon_sym_u8_DQUOTE] = ACTIONS(2440), - [anon_sym_DQUOTE] = ACTIONS(2440), - [sym_true] = ACTIONS(2442), - [sym_false] = ACTIONS(2442), - [sym_null] = ACTIONS(2442), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(2452), - [anon_sym_R_DQUOTE] = ACTIONS(2454), - [anon_sym_LR_DQUOTE] = ACTIONS(2454), - [anon_sym_uR_DQUOTE] = ACTIONS(2454), - [anon_sym_UR_DQUOTE] = ACTIONS(2454), - [anon_sym_u8R_DQUOTE] = ACTIONS(2454), - [anon_sym_co_await] = ACTIONS(2456), - [anon_sym_new] = ACTIONS(2458), - [anon_sym_requires] = ACTIONS(2460), - [sym_this] = ACTIONS(2442), - [sym_nullptr] = ACTIONS(2442), + [sym__expression] = STATE(4237), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7721), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_RPAREN] = ACTIONS(4127), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1667] = { - [sym__expression] = STATE(3818), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2954), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym__expression] = STATE(4286), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7403), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_RPAREN] = ACTIONS(4129), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1668] = { - [sym__expression] = STATE(3827), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2954), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym__expression] = STATE(4238), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7716), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_RPAREN] = ACTIONS(4131), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1669] = { - [sym__expression] = STATE(3847), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2954), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym__expression] = STATE(4423), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_initializer_list] = STATE(7653), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(1899), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1670] = { - [sym__expression] = STATE(3844), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2954), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym__expression] = STATE(4093), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_initializer_list] = STATE(6905), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(1899), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1671] = { - [sym__expression] = STATE(2961), - [sym_conditional_expression] = STATE(2574), - [sym_assignment_expression] = STATE(2574), - [sym_pointer_expression] = STATE(2578), - [sym_unary_expression] = STATE(2574), - [sym_binary_expression] = STATE(2574), - [sym_update_expression] = STATE(2574), - [sym_cast_expression] = STATE(2574), - [sym_sizeof_expression] = STATE(2574), - [sym_subscript_expression] = STATE(2578), - [sym_call_expression] = STATE(2578), - [sym_field_expression] = STATE(2578), - [sym_compound_literal_expression] = STATE(2574), - [sym_parenthesized_expression] = STATE(2578), - [sym_char_literal] = STATE(2207), - [sym_concatenated_string] = STATE(2207), - [sym_string_literal] = STATE(1820), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5944), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(2574), - [sym_raw_string_literal] = STATE(1820), - [sym_co_await_expression] = STATE(2574), - [sym_new_expression] = STATE(2574), - [sym_delete_expression] = STATE(2574), - [sym_requires_clause] = STATE(2574), - [sym_requires_expression] = STATE(2574), - [sym_lambda_expression] = STATE(2574), - [sym_lambda_capture_specifier] = STATE(4479), - [sym_fold_expression] = STATE(2574), - [sym_parameter_pack_expansion] = STATE(2574), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2578), - [sym_qualified_type_identifier] = STATE(5944), - [sym_user_defined_literal] = STATE(2574), - [sym_identifier] = ACTIONS(1523), - [anon_sym_LPAREN2] = ACTIONS(1647), - [anon_sym_BANG] = ACTIONS(1651), - [anon_sym_TILDE] = ACTIONS(1651), - [anon_sym_DASH] = ACTIONS(1649), - [anon_sym_PLUS] = ACTIONS(1649), - [anon_sym_STAR] = ACTIONS(3081), - [anon_sym_AMP] = ACTIONS(3081), - [anon_sym_COLON_COLON] = ACTIONS(1655), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(1649), - [anon_sym_compl] = ACTIONS(1649), - [anon_sym_DASH_DASH] = ACTIONS(1657), - [anon_sym_PLUS_PLUS] = ACTIONS(1657), - [anon_sym_sizeof] = ACTIONS(1659), - [sym_number_literal] = ACTIONS(1547), - [anon_sym_L_SQUOTE] = ACTIONS(1549), - [anon_sym_u_SQUOTE] = ACTIONS(1549), - [anon_sym_U_SQUOTE] = ACTIONS(1549), - [anon_sym_u8_SQUOTE] = ACTIONS(1549), - [anon_sym_SQUOTE] = ACTIONS(1549), - [anon_sym_L_DQUOTE] = ACTIONS(1551), - [anon_sym_u_DQUOTE] = ACTIONS(1551), - [anon_sym_U_DQUOTE] = ACTIONS(1551), - [anon_sym_u8_DQUOTE] = ACTIONS(1551), - [anon_sym_DQUOTE] = ACTIONS(1551), - [sym_true] = ACTIONS(1553), - [sym_false] = ACTIONS(1553), - [sym_null] = ACTIONS(1553), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1661), - [anon_sym_R_DQUOTE] = ACTIONS(1559), - [anon_sym_LR_DQUOTE] = ACTIONS(1559), - [anon_sym_uR_DQUOTE] = ACTIONS(1559), - [anon_sym_UR_DQUOTE] = ACTIONS(1559), - [anon_sym_u8R_DQUOTE] = ACTIONS(1559), - [anon_sym_co_await] = ACTIONS(1663), - [anon_sym_new] = ACTIONS(1563), - [anon_sym_requires] = ACTIONS(1565), - [sym_this] = ACTIONS(1553), - [sym_nullptr] = ACTIONS(1553), + [sym__expression] = STATE(4289), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7361), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_RPAREN] = ACTIONS(4133), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1672] = { - [sym__expression] = STATE(3426), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2954), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym__expression] = STATE(4414), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_initializer_list] = STATE(7671), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(1899), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1673] = { - [sym__expression] = STATE(3763), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2984), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2984), - [sym_call_expression] = STATE(2984), - [sym_field_expression] = STATE(2984), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2984), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2984), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(3047), - [anon_sym_LPAREN2] = ACTIONS(3049), - [anon_sym_BANG] = ACTIONS(3053), - [anon_sym_TILDE] = ACTIONS(3053), - [anon_sym_DASH] = ACTIONS(3051), - [anon_sym_PLUS] = ACTIONS(3051), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(3055), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(3051), - [anon_sym_compl] = ACTIONS(3051), - [anon_sym_DASH_DASH] = ACTIONS(3057), - [anon_sym_PLUS_PLUS] = ACTIONS(3057), - [anon_sym_sizeof] = ACTIONS(3059), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(3061), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(3063), - [anon_sym_new] = ACTIONS(3065), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [sym__expression] = STATE(4277), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7472), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_RPAREN] = ACTIONS(4135), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1674] = { - [sym__declaration_modifiers] = STATE(2179), - [sym__declaration_specifiers] = STATE(4045), - [sym_attribute_specifier] = STATE(2179), - [sym_attribute_declaration] = STATE(2179), - [sym_ms_declspec_modifier] = STATE(2179), - [sym_ms_based_modifier] = STATE(6104), - [sym__declarator] = STATE(5073), - [sym_parenthesized_declarator] = STATE(4918), - [sym_attributed_declarator] = STATE(4918), - [sym_pointer_declarator] = STATE(4918), - [sym_function_declarator] = STATE(4918), - [sym_array_declarator] = STATE(4918), - [sym_storage_class_specifier] = STATE(2179), - [sym_type_qualifier] = STATE(2179), - [sym__type_specifier] = STATE(3156), - [sym_sized_type_specifier] = STATE(3232), - [sym_enum_specifier] = STATE(3232), - [sym_struct_specifier] = STATE(3232), - [sym_union_specifier] = STATE(3232), - [sym_placeholder_type_specifier] = STATE(3232), - [sym_decltype_auto] = STATE(3279), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3232), - [sym_virtual] = STATE(2179), - [sym_dependent_type] = STATE(3232), - [sym_template_parameter_list] = STATE(1124), - [sym_reference_declarator] = STATE(4918), - [sym_structured_binding_declarator] = STATE(4918), - [sym_template_type] = STATE(3953), - [sym_template_function] = STATE(4918), - [sym_destructor_name] = STATE(4918), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4565), - [sym_qualified_identifier] = STATE(4918), - [sym_qualified_type_identifier] = STATE(3259), - [sym_operator_name] = STATE(4918), - [aux_sym__declaration_specifiers_repeat1] = STATE(2179), - [aux_sym_sized_type_specifier_repeat1] = STATE(3171), - [sym_identifier] = ACTIONS(3765), - [anon_sym_LPAREN2] = ACTIONS(1681), - [anon_sym_TILDE] = ACTIONS(1683), - [anon_sym_STAR] = ACTIONS(1685), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1687), - [anon_sym_LT] = ACTIONS(3767), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(3769), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1413), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1693), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(61), - [anon_sym_unsigned] = ACTIONS(61), - [anon_sym_long] = ACTIONS(61), - [anon_sym_short] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2932), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(107), - [anon_sym_decltype] = ACTIONS(109), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(115), - [anon_sym_template] = ACTIONS(996), - [anon_sym_operator] = ACTIONS(1521), + [sym__expression] = STATE(4270), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7484), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_RPAREN] = ACTIONS(4137), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1675] = { - [sym__expression] = STATE(2870), - [sym_conditional_expression] = STATE(2940), - [sym_assignment_expression] = STATE(2940), - [sym_pointer_expression] = STATE(2933), - [sym_unary_expression] = STATE(2940), - [sym_binary_expression] = STATE(2940), - [sym_update_expression] = STATE(2940), - [sym_cast_expression] = STATE(2940), - [sym_sizeof_expression] = STATE(2940), - [sym_subscript_expression] = STATE(2933), - [sym_call_expression] = STATE(2933), - [sym_field_expression] = STATE(2933), - [sym_compound_literal_expression] = STATE(2940), - [sym_parenthesized_expression] = STATE(2933), - [sym_char_literal] = STATE(2845), - [sym_concatenated_string] = STATE(2845), - [sym_string_literal] = STATE(1861), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5801), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(2940), - [sym_raw_string_literal] = STATE(1861), - [sym_co_await_expression] = STATE(2940), - [sym_new_expression] = STATE(2940), - [sym_delete_expression] = STATE(2940), - [sym_requires_clause] = STATE(2940), - [sym_requires_expression] = STATE(2940), - [sym_lambda_expression] = STATE(2940), - [sym_lambda_capture_specifier] = STATE(4464), - [sym_fold_expression] = STATE(2940), - [sym_parameter_pack_expansion] = STATE(2940), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4570), - [sym_qualified_identifier] = STATE(2933), - [sym_qualified_type_identifier] = STATE(5801), - [sym_user_defined_literal] = STATE(2940), - [sym_identifier] = ACTIONS(1605), - [anon_sym_LPAREN2] = ACTIONS(1607), - [anon_sym_BANG] = ACTIONS(1611), - [anon_sym_TILDE] = ACTIONS(1611), - [anon_sym_DASH] = ACTIONS(1609), - [anon_sym_PLUS] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(2416), - [anon_sym_AMP] = ACTIONS(2416), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1619), - [anon_sym_not] = ACTIONS(1609), - [anon_sym_compl] = ACTIONS(1609), - [anon_sym_DASH_DASH] = ACTIONS(1621), - [anon_sym_PLUS_PLUS] = ACTIONS(1621), - [anon_sym_sizeof] = ACTIONS(1623), - [sym_number_literal] = ACTIONS(1625), - [anon_sym_L_SQUOTE] = ACTIONS(1627), - [anon_sym_u_SQUOTE] = ACTIONS(1627), - [anon_sym_U_SQUOTE] = ACTIONS(1627), - [anon_sym_u8_SQUOTE] = ACTIONS(1627), - [anon_sym_SQUOTE] = ACTIONS(1627), - [anon_sym_L_DQUOTE] = ACTIONS(1629), - [anon_sym_u_DQUOTE] = ACTIONS(1629), - [anon_sym_U_DQUOTE] = ACTIONS(1629), - [anon_sym_u8_DQUOTE] = ACTIONS(1629), - [anon_sym_DQUOTE] = ACTIONS(1629), - [sym_true] = ACTIONS(1631), - [sym_false] = ACTIONS(1631), - [sym_null] = ACTIONS(1631), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1633), - [anon_sym_R_DQUOTE] = ACTIONS(1635), - [anon_sym_LR_DQUOTE] = ACTIONS(1635), - [anon_sym_uR_DQUOTE] = ACTIONS(1635), - [anon_sym_UR_DQUOTE] = ACTIONS(1635), - [anon_sym_u8R_DQUOTE] = ACTIONS(1635), - [anon_sym_co_await] = ACTIONS(1637), - [anon_sym_new] = ACTIONS(1639), - [anon_sym_requires] = ACTIONS(1641), - [sym_this] = ACTIONS(1631), - [sym_nullptr] = ACTIONS(1631), - }, - [1676] = { - [sym__expression] = STATE(3762), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2954), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym__expression] = STATE(4439), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_initializer_list] = STATE(7561), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(1899), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), + }, + [1676] = { + [sym__expression] = STATE(4354), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3509), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3509), + [sym_call_expression] = STATE(3509), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3509), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3509), + [sym_initializer_list] = STATE(7520), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3509), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3613), + [anon_sym_LPAREN2] = ACTIONS(3615), + [anon_sym_BANG] = ACTIONS(3619), + [anon_sym_TILDE] = ACTIONS(3619), + [anon_sym_DASH] = ACTIONS(3617), + [anon_sym_PLUS] = ACTIONS(3617), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(3621), + [anon_sym_LBRACE] = ACTIONS(1899), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(3617), + [anon_sym_compl] = ACTIONS(3617), + [anon_sym_DASH_DASH] = ACTIONS(3623), + [anon_sym_PLUS_PLUS] = ACTIONS(3623), + [anon_sym_sizeof] = ACTIONS(3625), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(3627), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(3629), + [anon_sym_new] = ACTIONS(3631), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1677] = { - [sym__expression] = STATE(3692), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(3036), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(3036), - [sym_call_expression] = STATE(3036), - [sym_field_expression] = STATE(3036), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(3036), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(3036), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(3073), - [anon_sym_LPAREN2] = ACTIONS(3075), - [anon_sym_BANG] = ACTIONS(3079), - [anon_sym_TILDE] = ACTIONS(3079), - [anon_sym_DASH] = ACTIONS(3077), - [anon_sym_PLUS] = ACTIONS(3077), - [anon_sym_STAR] = ACTIONS(3081), - [anon_sym_AMP] = ACTIONS(3081), - [anon_sym_COLON_COLON] = ACTIONS(3083), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(3077), - [anon_sym_compl] = ACTIONS(3077), - [anon_sym_DASH_DASH] = ACTIONS(3085), - [anon_sym_PLUS_PLUS] = ACTIONS(3085), - [anon_sym_sizeof] = ACTIONS(3087), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(3089), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(3091), - [anon_sym_new] = ACTIONS(3065), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [sym__expression] = STATE(4142), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7666), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_RPAREN] = ACTIONS(4139), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1678] = { - [sym__expression] = STATE(3807), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(3036), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(3036), - [sym_call_expression] = STATE(3036), - [sym_field_expression] = STATE(3036), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(3036), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(3036), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(3073), - [anon_sym_LPAREN2] = ACTIONS(3075), - [anon_sym_BANG] = ACTIONS(3079), - [anon_sym_TILDE] = ACTIONS(3079), - [anon_sym_DASH] = ACTIONS(3077), - [anon_sym_PLUS] = ACTIONS(3077), - [anon_sym_STAR] = ACTIONS(3081), - [anon_sym_AMP] = ACTIONS(3081), - [anon_sym_COLON_COLON] = ACTIONS(3083), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(3077), - [anon_sym_compl] = ACTIONS(3077), - [anon_sym_DASH_DASH] = ACTIONS(3085), - [anon_sym_PLUS_PLUS] = ACTIONS(3085), - [anon_sym_sizeof] = ACTIONS(3087), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(3089), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(3091), - [anon_sym_new] = ACTIONS(3065), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [sym__expression] = STATE(4310), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_initializer_list] = STATE(7460), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(1899), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1679] = { - [sym__expression] = STATE(3639), - [sym_conditional_expression] = STATE(3855), - [sym_assignment_expression] = STATE(3855), - [sym_pointer_expression] = STATE(2954), - [sym_unary_expression] = STATE(3855), - [sym_binary_expression] = STATE(3855), - [sym_update_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_subscript_expression] = STATE(2954), - [sym_call_expression] = STATE(2954), - [sym_field_expression] = STATE(2954), - [sym_compound_literal_expression] = STATE(3855), - [sym_parenthesized_expression] = STATE(2954), - [sym_char_literal] = STATE(3557), - [sym_concatenated_string] = STATE(3557), - [sym_string_literal] = STATE(2955), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5844), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3855), - [sym_raw_string_literal] = STATE(2955), - [sym_co_await_expression] = STATE(3855), - [sym_new_expression] = STATE(3855), - [sym_delete_expression] = STATE(3855), - [sym_requires_clause] = STATE(3855), - [sym_requires_expression] = STATE(3855), - [sym_lambda_expression] = STATE(3855), - [sym_lambda_capture_specifier] = STATE(4501), - [sym_fold_expression] = STATE(3855), - [sym_parameter_pack_expansion] = STATE(3855), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4570), - [sym_qualified_identifier] = STATE(2954), - [sym_qualified_type_identifier] = STATE(5844), - [sym_user_defined_literal] = STATE(3855), - [sym_identifier] = ACTIONS(3023), - [anon_sym_LPAREN2] = ACTIONS(2410), - [anon_sym_BANG] = ACTIONS(2412), - [anon_sym_TILDE] = ACTIONS(2412), - [anon_sym_DASH] = ACTIONS(2414), - [anon_sym_PLUS] = ACTIONS(2414), - [anon_sym_STAR] = ACTIONS(2416), - [anon_sym_AMP] = ACTIONS(2416), - [anon_sym_COLON_COLON] = ACTIONS(2418), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1619), - [anon_sym_not] = ACTIONS(2414), - [anon_sym_compl] = ACTIONS(2414), - [anon_sym_DASH_DASH] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(2432), - [anon_sym_sizeof] = ACTIONS(2434), - [sym_number_literal] = ACTIONS(2436), - [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_L_DQUOTE] = ACTIONS(2440), - [anon_sym_u_DQUOTE] = ACTIONS(2440), - [anon_sym_U_DQUOTE] = ACTIONS(2440), - [anon_sym_u8_DQUOTE] = ACTIONS(2440), - [anon_sym_DQUOTE] = ACTIONS(2440), - [sym_true] = ACTIONS(2442), - [sym_false] = ACTIONS(2442), - [sym_null] = ACTIONS(2442), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(2452), - [anon_sym_R_DQUOTE] = ACTIONS(2454), - [anon_sym_LR_DQUOTE] = ACTIONS(2454), - [anon_sym_uR_DQUOTE] = ACTIONS(2454), - [anon_sym_UR_DQUOTE] = ACTIONS(2454), - [anon_sym_u8R_DQUOTE] = ACTIONS(2454), - [anon_sym_co_await] = ACTIONS(2456), - [anon_sym_new] = ACTIONS(2458), - [anon_sym_requires] = ACTIONS(2460), - [sym_this] = ACTIONS(2442), - [sym_nullptr] = ACTIONS(2442), + [sym__expression] = STATE(3999), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3509), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3509), + [sym_call_expression] = STATE(3509), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3509), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3509), + [sym_initializer_list] = STATE(4001), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3509), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3613), + [anon_sym_LPAREN2] = ACTIONS(3615), + [anon_sym_BANG] = ACTIONS(3619), + [anon_sym_TILDE] = ACTIONS(3619), + [anon_sym_DASH] = ACTIONS(3617), + [anon_sym_PLUS] = ACTIONS(3617), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(3621), + [anon_sym_LBRACE] = ACTIONS(1899), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(3617), + [anon_sym_compl] = ACTIONS(3617), + [anon_sym_DASH_DASH] = ACTIONS(3623), + [anon_sym_PLUS_PLUS] = ACTIONS(3623), + [anon_sym_sizeof] = ACTIONS(3625), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(3627), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(3629), + [anon_sym_new] = ACTIONS(3631), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1680] = { - [sym__expression] = STATE(3834), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2984), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2984), - [sym_call_expression] = STATE(2984), - [sym_field_expression] = STATE(2984), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2984), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2984), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(3047), - [anon_sym_LPAREN2] = ACTIONS(3049), - [anon_sym_BANG] = ACTIONS(3053), - [anon_sym_TILDE] = ACTIONS(3053), - [anon_sym_DASH] = ACTIONS(3051), - [anon_sym_PLUS] = ACTIONS(3051), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(3055), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(3051), - [anon_sym_compl] = ACTIONS(3051), - [anon_sym_DASH_DASH] = ACTIONS(3057), - [anon_sym_PLUS_PLUS] = ACTIONS(3057), - [anon_sym_sizeof] = ACTIONS(3059), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(3061), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(3063), - [anon_sym_new] = ACTIONS(3065), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [sym__expression] = STATE(4163), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7061), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_RPAREN] = ACTIONS(4141), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1681] = { - [sym__expression] = STATE(3761), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2954), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym__expression] = STATE(4161), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7057), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_RPAREN] = ACTIONS(4143), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1682] = { - [sym__expression] = STATE(3492), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2984), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2984), - [sym_call_expression] = STATE(2984), - [sym_field_expression] = STATE(2984), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2984), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2984), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(3047), - [anon_sym_LPAREN2] = ACTIONS(3049), - [anon_sym_BANG] = ACTIONS(3053), - [anon_sym_TILDE] = ACTIONS(3053), - [anon_sym_DASH] = ACTIONS(3051), - [anon_sym_PLUS] = ACTIONS(3051), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(3055), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(3051), - [anon_sym_compl] = ACTIONS(3051), - [anon_sym_DASH_DASH] = ACTIONS(3057), - [anon_sym_PLUS_PLUS] = ACTIONS(3057), - [anon_sym_sizeof] = ACTIONS(3059), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(3061), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(3063), - [anon_sym_new] = ACTIONS(3065), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [sym__expression] = STATE(4409), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_initializer_list] = STATE(7117), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(1899), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1683] = { - [sym__expression] = STATE(3760), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(3036), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(3036), - [sym_call_expression] = STATE(3036), - [sym_field_expression] = STATE(3036), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(3036), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(3036), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(3073), - [anon_sym_LPAREN2] = ACTIONS(3075), - [anon_sym_BANG] = ACTIONS(3079), - [anon_sym_TILDE] = ACTIONS(3079), - [anon_sym_DASH] = ACTIONS(3077), - [anon_sym_PLUS] = ACTIONS(3077), - [anon_sym_STAR] = ACTIONS(3081), - [anon_sym_AMP] = ACTIONS(3081), - [anon_sym_COLON_COLON] = ACTIONS(3083), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(3077), - [anon_sym_compl] = ACTIONS(3077), - [anon_sym_DASH_DASH] = ACTIONS(3085), - [anon_sym_PLUS_PLUS] = ACTIONS(3085), - [anon_sym_sizeof] = ACTIONS(3087), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(3089), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(3091), - [anon_sym_new] = ACTIONS(3065), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [sym__expression] = STATE(3169), + [sym__expression_not_binary] = STATE(3318), + [sym_conditional_expression] = STATE(3318), + [sym_assignment_expression] = STATE(3318), + [sym_pointer_expression] = STATE(3318), + [sym_unary_expression] = STATE(3318), + [sym_binary_expression] = STATE(3318), + [sym_update_expression] = STATE(3318), + [sym_cast_expression] = STATE(3318), + [sym_sizeof_expression] = STATE(3318), + [sym_offsetof_expression] = STATE(3318), + [sym_generic_expression] = STATE(3318), + [sym_subscript_expression] = STATE(3318), + [sym_call_expression] = STATE(3318), + [sym_gnu_asm_expression] = STATE(3318), + [sym_field_expression] = STATE(3318), + [sym_compound_literal_expression] = STATE(3318), + [sym_parenthesized_expression] = STATE(3318), + [sym_initializer_list] = STATE(3285), + [sym_char_literal] = STATE(3076), + [sym_concatenated_string] = STATE(3076), + [sym_string_literal] = STATE(2202), + [sym_null] = STATE(3318), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6739), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3318), + [sym_raw_string_literal] = STATE(2202), + [sym_co_await_expression] = STATE(3318), + [sym_new_expression] = STATE(3318), + [sym_delete_expression] = STATE(3318), + [sym_requires_clause] = STATE(3318), + [sym_requires_expression] = STATE(3318), + [sym_lambda_expression] = STATE(3318), + [sym_lambda_capture_specifier] = STATE(5187), + [sym_fold_expression] = STATE(3318), + [sym_parameter_pack_expansion] = STATE(3318), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5232), + [sym_qualified_identifier] = STATE(3318), + [sym_qualified_type_identifier] = STATE(6739), + [sym_user_defined_literal] = STATE(3318), + [sym_identifier] = ACTIONS(1985), + [anon_sym_LPAREN2] = ACTIONS(1987), + [anon_sym_BANG] = ACTIONS(1991), + [anon_sym_TILDE] = ACTIONS(1991), + [anon_sym_DASH] = ACTIONS(1989), + [anon_sym_PLUS] = ACTIONS(1989), + [anon_sym_STAR] = ACTIONS(1847), + [anon_sym_AMP] = ACTIONS(1847), + [anon_sym_COLON_COLON] = ACTIONS(1995), + [anon_sym_LBRACE] = ACTIONS(1997), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1999), + [anon_sym_not] = ACTIONS(1989), + [anon_sym_compl] = ACTIONS(1989), + [anon_sym_DASH_DASH] = ACTIONS(2001), + [anon_sym_PLUS_PLUS] = ACTIONS(2001), + [anon_sym_sizeof] = ACTIONS(2003), + [anon_sym_offsetof] = ACTIONS(2005), + [anon_sym__Generic] = ACTIONS(2007), + [anon_sym_asm] = ACTIONS(2009), + [anon_sym___asm__] = ACTIONS(2009), + [sym_number_literal] = ACTIONS(2011), + [anon_sym_L_SQUOTE] = ACTIONS(2013), + [anon_sym_u_SQUOTE] = ACTIONS(2013), + [anon_sym_U_SQUOTE] = ACTIONS(2013), + [anon_sym_u8_SQUOTE] = ACTIONS(2013), + [anon_sym_SQUOTE] = ACTIONS(2013), + [anon_sym_L_DQUOTE] = ACTIONS(2015), + [anon_sym_u_DQUOTE] = ACTIONS(2015), + [anon_sym_U_DQUOTE] = ACTIONS(2015), + [anon_sym_u8_DQUOTE] = ACTIONS(2015), + [anon_sym_DQUOTE] = ACTIONS(2015), + [sym_true] = ACTIONS(2017), + [sym_false] = ACTIONS(2017), + [anon_sym_NULL] = ACTIONS(2019), + [anon_sym_nullptr] = ACTIONS(2019), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(2021), + [anon_sym_R_DQUOTE] = ACTIONS(2023), + [anon_sym_LR_DQUOTE] = ACTIONS(2023), + [anon_sym_uR_DQUOTE] = ACTIONS(2023), + [anon_sym_UR_DQUOTE] = ACTIONS(2023), + [anon_sym_u8R_DQUOTE] = ACTIONS(2023), + [anon_sym_co_await] = ACTIONS(2025), + [anon_sym_new] = ACTIONS(2027), + [anon_sym_requires] = ACTIONS(2029), + [sym_this] = ACTIONS(2017), }, [1684] = { - [sym__expression] = STATE(3805), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(3036), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(3036), - [sym_call_expression] = STATE(3036), - [sym_field_expression] = STATE(3036), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(3036), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(3036), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(3073), - [anon_sym_LPAREN2] = ACTIONS(3075), - [anon_sym_BANG] = ACTIONS(3079), - [anon_sym_TILDE] = ACTIONS(3079), - [anon_sym_DASH] = ACTIONS(3077), - [anon_sym_PLUS] = ACTIONS(3077), - [anon_sym_STAR] = ACTIONS(3081), - [anon_sym_AMP] = ACTIONS(3081), - [anon_sym_COLON_COLON] = ACTIONS(3083), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(3077), - [anon_sym_compl] = ACTIONS(3077), - [anon_sym_DASH_DASH] = ACTIONS(3085), - [anon_sym_PLUS_PLUS] = ACTIONS(3085), - [anon_sym_sizeof] = ACTIONS(3087), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(3089), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(3091), - [anon_sym_new] = ACTIONS(3065), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [sym__expression] = STATE(4155), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7623), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_RPAREN] = ACTIONS(4145), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1685] = { - [sym__expression] = STATE(3756), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2954), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym__expression] = STATE(4157), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7621), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_RPAREN] = ACTIONS(4147), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1686] = { - [sym__declaration_modifiers] = STATE(2179), - [sym__declaration_specifiers] = STATE(4004), - [sym_attribute_specifier] = STATE(2179), - [sym_attribute_declaration] = STATE(2179), - [sym_ms_declspec_modifier] = STATE(2179), - [sym_ms_based_modifier] = STATE(6104), - [sym__declarator] = STATE(5083), - [sym_parenthesized_declarator] = STATE(4918), - [sym_attributed_declarator] = STATE(4918), - [sym_pointer_declarator] = STATE(4918), - [sym_function_declarator] = STATE(4918), - [sym_array_declarator] = STATE(4918), - [sym_storage_class_specifier] = STATE(2179), - [sym_type_qualifier] = STATE(2179), - [sym__type_specifier] = STATE(3156), - [sym_sized_type_specifier] = STATE(3232), - [sym_enum_specifier] = STATE(3232), - [sym_struct_specifier] = STATE(3232), - [sym_union_specifier] = STATE(3232), - [sym_placeholder_type_specifier] = STATE(3232), - [sym_decltype_auto] = STATE(3279), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3232), - [sym_virtual] = STATE(2179), - [sym_dependent_type] = STATE(3232), - [sym_template_parameter_list] = STATE(1118), - [sym_reference_declarator] = STATE(4918), - [sym_structured_binding_declarator] = STATE(4918), - [sym_template_type] = STATE(3953), - [sym_template_function] = STATE(4918), - [sym_destructor_name] = STATE(4918), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4565), - [sym_qualified_identifier] = STATE(4918), - [sym_qualified_type_identifier] = STATE(3259), - [sym_operator_name] = STATE(4918), - [aux_sym__declaration_specifiers_repeat1] = STATE(2179), - [aux_sym_sized_type_specifier_repeat1] = STATE(3171), - [sym_identifier] = ACTIONS(3765), - [anon_sym_LPAREN2] = ACTIONS(1681), - [anon_sym_TILDE] = ACTIONS(1683), - [anon_sym_STAR] = ACTIONS(1685), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1687), - [anon_sym_LT] = ACTIONS(3767), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(3769), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1413), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1693), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(61), - [anon_sym_unsigned] = ACTIONS(61), - [anon_sym_long] = ACTIONS(61), - [anon_sym_short] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2932), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(107), - [anon_sym_decltype] = ACTIONS(109), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(115), - [anon_sym_template] = ACTIONS(996), - [anon_sym_operator] = ACTIONS(1521), + [sym__expression] = STATE(4150), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7024), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_RPAREN] = ACTIONS(4149), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1687] = { - [sym__expression] = STATE(2499), - [sym_conditional_expression] = STATE(2574), - [sym_assignment_expression] = STATE(2574), - [sym_pointer_expression] = STATE(2578), - [sym_unary_expression] = STATE(2574), - [sym_binary_expression] = STATE(2574), - [sym_update_expression] = STATE(2574), - [sym_cast_expression] = STATE(2574), - [sym_sizeof_expression] = STATE(2574), - [sym_subscript_expression] = STATE(2578), - [sym_call_expression] = STATE(2578), - [sym_field_expression] = STATE(2578), - [sym_compound_literal_expression] = STATE(2574), - [sym_parenthesized_expression] = STATE(2578), - [sym_char_literal] = STATE(2207), - [sym_concatenated_string] = STATE(2207), - [sym_string_literal] = STATE(1820), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5944), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(2574), - [sym_raw_string_literal] = STATE(1820), - [sym_co_await_expression] = STATE(2574), - [sym_new_expression] = STATE(2574), - [sym_delete_expression] = STATE(2574), - [sym_requires_clause] = STATE(2574), - [sym_requires_expression] = STATE(2574), - [sym_lambda_expression] = STATE(2574), - [sym_lambda_capture_specifier] = STATE(4479), - [sym_fold_expression] = STATE(2574), - [sym_parameter_pack_expansion] = STATE(2574), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2578), - [sym_qualified_type_identifier] = STATE(5944), - [sym_user_defined_literal] = STATE(2574), - [sym_identifier] = ACTIONS(1523), - [anon_sym_LPAREN2] = ACTIONS(1527), - [anon_sym_BANG] = ACTIONS(1531), - [anon_sym_TILDE] = ACTIONS(1531), - [anon_sym_DASH] = ACTIONS(1529), - [anon_sym_PLUS] = ACTIONS(1529), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(1529), - [anon_sym_compl] = ACTIONS(1529), - [anon_sym_DASH_DASH] = ACTIONS(1543), - [anon_sym_PLUS_PLUS] = ACTIONS(1543), - [anon_sym_sizeof] = ACTIONS(1545), - [sym_number_literal] = ACTIONS(1547), - [anon_sym_L_SQUOTE] = ACTIONS(1549), - [anon_sym_u_SQUOTE] = ACTIONS(1549), - [anon_sym_U_SQUOTE] = ACTIONS(1549), - [anon_sym_u8_SQUOTE] = ACTIONS(1549), - [anon_sym_SQUOTE] = ACTIONS(1549), - [anon_sym_L_DQUOTE] = ACTIONS(1551), - [anon_sym_u_DQUOTE] = ACTIONS(1551), - [anon_sym_U_DQUOTE] = ACTIONS(1551), - [anon_sym_u8_DQUOTE] = ACTIONS(1551), - [anon_sym_DQUOTE] = ACTIONS(1551), - [sym_true] = ACTIONS(1553), - [sym_false] = ACTIONS(1553), - [sym_null] = ACTIONS(1553), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1557), - [anon_sym_R_DQUOTE] = ACTIONS(1559), - [anon_sym_LR_DQUOTE] = ACTIONS(1559), - [anon_sym_uR_DQUOTE] = ACTIONS(1559), - [anon_sym_UR_DQUOTE] = ACTIONS(1559), - [anon_sym_u8R_DQUOTE] = ACTIONS(1559), - [anon_sym_co_await] = ACTIONS(1561), - [anon_sym_new] = ACTIONS(1563), - [anon_sym_requires] = ACTIONS(1565), - [sym_this] = ACTIONS(1553), - [sym_nullptr] = ACTIONS(1553), + [sym__expression] = STATE(4149), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7020), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_RPAREN] = ACTIONS(4151), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1688] = { - [sym__expression] = STATE(2857), - [sym_conditional_expression] = STATE(2940), - [sym_assignment_expression] = STATE(2940), - [sym_pointer_expression] = STATE(2933), - [sym_unary_expression] = STATE(2940), - [sym_binary_expression] = STATE(2940), - [sym_update_expression] = STATE(2940), - [sym_cast_expression] = STATE(2940), - [sym_sizeof_expression] = STATE(2940), - [sym_subscript_expression] = STATE(2933), - [sym_call_expression] = STATE(2933), - [sym_field_expression] = STATE(2933), - [sym_compound_literal_expression] = STATE(2940), - [sym_parenthesized_expression] = STATE(2933), - [sym_char_literal] = STATE(2845), - [sym_concatenated_string] = STATE(2845), - [sym_string_literal] = STATE(1861), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5801), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(2940), - [sym_raw_string_literal] = STATE(1861), - [sym_co_await_expression] = STATE(2940), - [sym_new_expression] = STATE(2940), - [sym_delete_expression] = STATE(2940), - [sym_requires_clause] = STATE(2940), - [sym_requires_expression] = STATE(2940), - [sym_lambda_expression] = STATE(2940), - [sym_lambda_capture_specifier] = STATE(4464), - [sym_fold_expression] = STATE(2940), - [sym_parameter_pack_expansion] = STATE(2940), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4570), - [sym_qualified_identifier] = STATE(2933), - [sym_qualified_type_identifier] = STATE(5801), - [sym_user_defined_literal] = STATE(2940), - [sym_identifier] = ACTIONS(1605), - [anon_sym_LPAREN2] = ACTIONS(1607), - [anon_sym_BANG] = ACTIONS(1611), - [anon_sym_TILDE] = ACTIONS(1611), - [anon_sym_DASH] = ACTIONS(1609), - [anon_sym_PLUS] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(2416), - [anon_sym_AMP] = ACTIONS(2416), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_LBRACK] = ACTIONS(3771), - [sym_primitive_type] = ACTIONS(1619), - [anon_sym_not] = ACTIONS(1609), - [anon_sym_compl] = ACTIONS(1609), - [anon_sym_DASH_DASH] = ACTIONS(1621), - [anon_sym_PLUS_PLUS] = ACTIONS(1621), - [anon_sym_sizeof] = ACTIONS(1623), - [sym_number_literal] = ACTIONS(1625), - [anon_sym_L_SQUOTE] = ACTIONS(1627), - [anon_sym_u_SQUOTE] = ACTIONS(1627), - [anon_sym_U_SQUOTE] = ACTIONS(1627), - [anon_sym_u8_SQUOTE] = ACTIONS(1627), - [anon_sym_SQUOTE] = ACTIONS(1627), - [anon_sym_L_DQUOTE] = ACTIONS(1629), - [anon_sym_u_DQUOTE] = ACTIONS(1629), - [anon_sym_U_DQUOTE] = ACTIONS(1629), - [anon_sym_u8_DQUOTE] = ACTIONS(1629), - [anon_sym_DQUOTE] = ACTIONS(1629), - [sym_true] = ACTIONS(1631), - [sym_false] = ACTIONS(1631), - [sym_null] = ACTIONS(1631), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1633), - [anon_sym_R_DQUOTE] = ACTIONS(1635), - [anon_sym_LR_DQUOTE] = ACTIONS(1635), - [anon_sym_uR_DQUOTE] = ACTIONS(1635), - [anon_sym_UR_DQUOTE] = ACTIONS(1635), - [anon_sym_u8R_DQUOTE] = ACTIONS(1635), - [anon_sym_co_await] = ACTIONS(1637), - [anon_sym_new] = ACTIONS(1639), - [anon_sym_requires] = ACTIONS(1641), - [sym_this] = ACTIONS(1631), - [sym_nullptr] = ACTIONS(1631), + [sym__expression] = STATE(3999), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_initializer_list] = STATE(4001), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(1899), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1689] = { - [sym__expression] = STATE(3645), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2984), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2984), - [sym_call_expression] = STATE(2984), - [sym_field_expression] = STATE(2984), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2984), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2984), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(3047), - [anon_sym_LPAREN2] = ACTIONS(3049), - [anon_sym_BANG] = ACTIONS(3053), - [anon_sym_TILDE] = ACTIONS(3053), - [anon_sym_DASH] = ACTIONS(3051), - [anon_sym_PLUS] = ACTIONS(3051), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(3055), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(3051), - [anon_sym_compl] = ACTIONS(3051), - [anon_sym_DASH_DASH] = ACTIONS(3057), - [anon_sym_PLUS_PLUS] = ACTIONS(3057), - [anon_sym_sizeof] = ACTIONS(3059), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(3061), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(3063), - [anon_sym_new] = ACTIONS(3065), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [sym__expression] = STATE(4327), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_initializer_list] = STATE(7416), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(1899), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1690] = { - [sym__expression] = STATE(3699), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2954), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym__expression] = STATE(4145), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7002), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_RPAREN] = ACTIONS(4153), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1691] = { - [sym__expression] = STATE(3835), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(3036), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(3036), - [sym_call_expression] = STATE(3036), - [sym_field_expression] = STATE(3036), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(3036), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(3036), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(3073), - [anon_sym_LPAREN2] = ACTIONS(3075), - [anon_sym_BANG] = ACTIONS(3079), - [anon_sym_TILDE] = ACTIONS(3079), - [anon_sym_DASH] = ACTIONS(3077), - [anon_sym_PLUS] = ACTIONS(3077), - [anon_sym_STAR] = ACTIONS(3081), - [anon_sym_AMP] = ACTIONS(3081), - [anon_sym_COLON_COLON] = ACTIONS(3083), - [anon_sym_LBRACK] = ACTIONS(3773), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(3077), - [anon_sym_compl] = ACTIONS(3077), - [anon_sym_DASH_DASH] = ACTIONS(3085), - [anon_sym_PLUS_PLUS] = ACTIONS(3085), - [anon_sym_sizeof] = ACTIONS(3087), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(3089), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(3091), - [anon_sym_new] = ACTIONS(3065), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [sym__expression] = STATE(4480), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3579), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3579), + [sym_call_expression] = STATE(3579), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3579), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3579), + [sym_initializer_list] = STATE(4001), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3579), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3633), + [anon_sym_LPAREN2] = ACTIONS(3635), + [anon_sym_BANG] = ACTIONS(3639), + [anon_sym_TILDE] = ACTIONS(3639), + [anon_sym_DASH] = ACTIONS(3637), + [anon_sym_PLUS] = ACTIONS(3637), + [anon_sym_STAR] = ACTIONS(3641), + [anon_sym_AMP] = ACTIONS(3641), + [anon_sym_COLON_COLON] = ACTIONS(3643), + [anon_sym_LBRACE] = ACTIONS(1899), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(3637), + [anon_sym_compl] = ACTIONS(3637), + [anon_sym_DASH_DASH] = ACTIONS(3645), + [anon_sym_PLUS_PLUS] = ACTIONS(3645), + [anon_sym_sizeof] = ACTIONS(3647), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(3649), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(3651), + [anon_sym_new] = ACTIONS(3631), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1692] = { - [sym__expression] = STATE(3566), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2984), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2984), - [sym_call_expression] = STATE(2984), - [sym_field_expression] = STATE(2984), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2984), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2984), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(3047), - [anon_sym_LPAREN2] = ACTIONS(3049), - [anon_sym_BANG] = ACTIONS(3053), - [anon_sym_TILDE] = ACTIONS(3053), - [anon_sym_DASH] = ACTIONS(3051), - [anon_sym_PLUS] = ACTIONS(3051), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(3055), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(3051), - [anon_sym_compl] = ACTIONS(3051), - [anon_sym_DASH_DASH] = ACTIONS(3057), - [anon_sym_PLUS_PLUS] = ACTIONS(3057), - [anon_sym_sizeof] = ACTIONS(3059), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(3061), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(3063), - [anon_sym_new] = ACTIONS(3065), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [sym__expression] = STATE(4335), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_initializer_list] = STATE(7404), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(1899), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1693] = { - [sym__expression] = STATE(3496), - [sym_conditional_expression] = STATE(3855), - [sym_assignment_expression] = STATE(3855), - [sym_pointer_expression] = STATE(2954), - [sym_unary_expression] = STATE(3855), - [sym_binary_expression] = STATE(3855), - [sym_update_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_subscript_expression] = STATE(2954), - [sym_call_expression] = STATE(2954), - [sym_field_expression] = STATE(2954), - [sym_compound_literal_expression] = STATE(3855), - [sym_parenthesized_expression] = STATE(2954), - [sym_char_literal] = STATE(3557), - [sym_concatenated_string] = STATE(3557), - [sym_string_literal] = STATE(2955), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5844), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3855), - [sym_raw_string_literal] = STATE(2955), - [sym_co_await_expression] = STATE(3855), - [sym_new_expression] = STATE(3855), - [sym_delete_expression] = STATE(3855), - [sym_requires_clause] = STATE(3855), - [sym_requires_expression] = STATE(3855), - [sym_lambda_expression] = STATE(3855), - [sym_lambda_capture_specifier] = STATE(4501), - [sym_fold_expression] = STATE(3855), - [sym_parameter_pack_expansion] = STATE(3855), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4570), - [sym_qualified_identifier] = STATE(2954), - [sym_qualified_type_identifier] = STATE(5844), - [sym_user_defined_literal] = STATE(3855), - [sym_identifier] = ACTIONS(3023), - [anon_sym_LPAREN2] = ACTIONS(2410), - [anon_sym_BANG] = ACTIONS(2412), - [anon_sym_TILDE] = ACTIONS(2412), - [anon_sym_DASH] = ACTIONS(2414), - [anon_sym_PLUS] = ACTIONS(2414), - [anon_sym_STAR] = ACTIONS(2416), - [anon_sym_AMP] = ACTIONS(2416), - [anon_sym_COLON_COLON] = ACTIONS(2418), - [anon_sym_LBRACK] = ACTIONS(3775), - [sym_primitive_type] = ACTIONS(1619), - [anon_sym_not] = ACTIONS(2414), - [anon_sym_compl] = ACTIONS(2414), - [anon_sym_DASH_DASH] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(2432), - [anon_sym_sizeof] = ACTIONS(2434), - [sym_number_literal] = ACTIONS(2436), - [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_L_DQUOTE] = ACTIONS(2440), - [anon_sym_u_DQUOTE] = ACTIONS(2440), - [anon_sym_U_DQUOTE] = ACTIONS(2440), - [anon_sym_u8_DQUOTE] = ACTIONS(2440), - [anon_sym_DQUOTE] = ACTIONS(2440), - [sym_true] = ACTIONS(2442), - [sym_false] = ACTIONS(2442), - [sym_null] = ACTIONS(2442), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(2452), - [anon_sym_R_DQUOTE] = ACTIONS(2454), - [anon_sym_LR_DQUOTE] = ACTIONS(2454), - [anon_sym_uR_DQUOTE] = ACTIONS(2454), - [anon_sym_UR_DQUOTE] = ACTIONS(2454), - [anon_sym_u8R_DQUOTE] = ACTIONS(2454), - [anon_sym_co_await] = ACTIONS(2456), - [anon_sym_new] = ACTIONS(2458), - [anon_sym_requires] = ACTIONS(2460), - [sym_this] = ACTIONS(2442), - [sym_nullptr] = ACTIONS(2442), + [sym__expression] = STATE(4144), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7000), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_RPAREN] = ACTIONS(4155), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1694] = { - [sym__expression] = STATE(3715), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(3036), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(3036), - [sym_call_expression] = STATE(3036), - [sym_field_expression] = STATE(3036), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(3036), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(3036), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(3073), - [anon_sym_LPAREN2] = ACTIONS(3075), - [anon_sym_BANG] = ACTIONS(3079), - [anon_sym_TILDE] = ACTIONS(3079), - [anon_sym_DASH] = ACTIONS(3077), - [anon_sym_PLUS] = ACTIONS(3077), - [anon_sym_STAR] = ACTIONS(3081), - [anon_sym_AMP] = ACTIONS(3081), - [anon_sym_COLON_COLON] = ACTIONS(3083), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(3077), - [anon_sym_compl] = ACTIONS(3077), - [anon_sym_DASH_DASH] = ACTIONS(3085), - [anon_sym_PLUS_PLUS] = ACTIONS(3085), - [anon_sym_sizeof] = ACTIONS(3087), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(3089), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(3091), - [anon_sym_new] = ACTIONS(3065), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [sym__expression] = STATE(4353), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_initializer_list] = STATE(7379), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(1899), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1695] = { - [sym__expression] = STATE(3555), - [sym_conditional_expression] = STATE(3855), - [sym_assignment_expression] = STATE(3855), - [sym_pointer_expression] = STATE(2954), - [sym_unary_expression] = STATE(3855), - [sym_binary_expression] = STATE(3855), - [sym_update_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_subscript_expression] = STATE(2954), - [sym_call_expression] = STATE(2954), - [sym_field_expression] = STATE(2954), - [sym_compound_literal_expression] = STATE(3855), - [sym_parenthesized_expression] = STATE(2954), - [sym_char_literal] = STATE(3557), - [sym_concatenated_string] = STATE(3557), - [sym_string_literal] = STATE(2955), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5844), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3855), - [sym_raw_string_literal] = STATE(2955), - [sym_co_await_expression] = STATE(3855), - [sym_new_expression] = STATE(3855), - [sym_delete_expression] = STATE(3855), - [sym_requires_clause] = STATE(3855), - [sym_requires_expression] = STATE(3855), - [sym_lambda_expression] = STATE(3855), - [sym_lambda_capture_specifier] = STATE(4501), - [sym_fold_expression] = STATE(3855), - [sym_parameter_pack_expansion] = STATE(3855), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4570), - [sym_qualified_identifier] = STATE(2954), - [sym_qualified_type_identifier] = STATE(5844), - [sym_user_defined_literal] = STATE(3855), - [sym_identifier] = ACTIONS(3023), - [anon_sym_LPAREN2] = ACTIONS(2410), - [anon_sym_BANG] = ACTIONS(2412), - [anon_sym_TILDE] = ACTIONS(2412), - [anon_sym_DASH] = ACTIONS(2414), - [anon_sym_PLUS] = ACTIONS(2414), - [anon_sym_STAR] = ACTIONS(2416), - [anon_sym_AMP] = ACTIONS(2416), - [anon_sym_COLON_COLON] = ACTIONS(2418), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1619), - [anon_sym_not] = ACTIONS(2414), - [anon_sym_compl] = ACTIONS(2414), - [anon_sym_DASH_DASH] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(2432), - [anon_sym_sizeof] = ACTIONS(2434), - [sym_number_literal] = ACTIONS(2436), - [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_L_DQUOTE] = ACTIONS(2440), - [anon_sym_u_DQUOTE] = ACTIONS(2440), - [anon_sym_U_DQUOTE] = ACTIONS(2440), - [anon_sym_u8_DQUOTE] = ACTIONS(2440), - [anon_sym_DQUOTE] = ACTIONS(2440), - [sym_true] = ACTIONS(2442), - [sym_false] = ACTIONS(2442), - [sym_null] = ACTIONS(2442), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(2452), - [anon_sym_R_DQUOTE] = ACTIONS(2454), - [anon_sym_LR_DQUOTE] = ACTIONS(2454), - [anon_sym_uR_DQUOTE] = ACTIONS(2454), - [anon_sym_UR_DQUOTE] = ACTIONS(2454), - [anon_sym_u8R_DQUOTE] = ACTIONS(2454), - [anon_sym_co_await] = ACTIONS(2456), - [anon_sym_new] = ACTIONS(2458), - [anon_sym_requires] = ACTIONS(2460), - [sym_this] = ACTIONS(2442), - [sym_nullptr] = ACTIONS(2442), + [sym__expression] = STATE(4383), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_initializer_list] = STATE(7353), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(1899), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1696] = { - [sym__expression] = STATE(3737), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(3036), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(3036), - [sym_call_expression] = STATE(3036), - [sym_field_expression] = STATE(3036), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(3036), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(3036), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(3073), - [anon_sym_LPAREN2] = ACTIONS(3075), - [anon_sym_BANG] = ACTIONS(3079), - [anon_sym_TILDE] = ACTIONS(3079), - [anon_sym_DASH] = ACTIONS(3077), - [anon_sym_PLUS] = ACTIONS(3077), - [anon_sym_STAR] = ACTIONS(3081), - [anon_sym_AMP] = ACTIONS(3081), - [anon_sym_COLON_COLON] = ACTIONS(3083), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(3077), - [anon_sym_compl] = ACTIONS(3077), - [anon_sym_DASH_DASH] = ACTIONS(3085), - [anon_sym_PLUS_PLUS] = ACTIONS(3085), - [anon_sym_sizeof] = ACTIONS(3087), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(3089), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(3091), - [anon_sym_new] = ACTIONS(3065), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [sym__expression] = STATE(4391), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_initializer_list] = STATE(7367), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(1899), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1697] = { - [sym__expression] = STATE(3425), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2954), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym__expression] = STATE(4276), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_initializer_list] = STATE(6711), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(1899), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1698] = { - [sym__expression] = STATE(2893), - [sym_conditional_expression] = STATE(3035), - [sym_assignment_expression] = STATE(3035), - [sym_pointer_expression] = STATE(2713), - [sym_unary_expression] = STATE(3035), - [sym_binary_expression] = STATE(3035), - [sym_update_expression] = STATE(3035), - [sym_cast_expression] = STATE(3035), - [sym_sizeof_expression] = STATE(3035), - [sym_subscript_expression] = STATE(2713), - [sym_call_expression] = STATE(2713), - [sym_field_expression] = STATE(2713), - [sym_compound_literal_expression] = STATE(3035), - [sym_parenthesized_expression] = STATE(2713), - [sym_char_literal] = STATE(3013), - [sym_concatenated_string] = STATE(3013), - [sym_string_literal] = STATE(1900), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5990), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3035), - [sym_raw_string_literal] = STATE(1900), - [sym_co_await_expression] = STATE(3035), - [sym_new_expression] = STATE(3035), - [sym_delete_expression] = STATE(3035), - [sym_requires_clause] = STATE(3035), - [sym_requires_expression] = STATE(3035), - [sym_lambda_expression] = STATE(3035), - [sym_lambda_capture_specifier] = STATE(4465), - [sym_fold_expression] = STATE(3035), - [sym_parameter_pack_expansion] = STATE(3035), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4584), - [sym_qualified_identifier] = STATE(2713), - [sym_qualified_type_identifier] = STATE(5990), - [sym_user_defined_literal] = STATE(3035), - [sym_identifier] = ACTIONS(1643), - [anon_sym_LPAREN2] = ACTIONS(1439), - [anon_sym_BANG] = ACTIONS(1441), - [anon_sym_TILDE] = ACTIONS(1441), - [anon_sym_DASH] = ACTIONS(1443), - [anon_sym_PLUS] = ACTIONS(1443), - [anon_sym_STAR] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(1445), - [anon_sym_COLON_COLON] = ACTIONS(1447), - [anon_sym_LBRACK] = ACTIONS(3777), - [sym_primitive_type] = ACTIONS(1581), - [anon_sym_not] = ACTIONS(1443), - [anon_sym_compl] = ACTIONS(1443), - [anon_sym_DASH_DASH] = ACTIONS(1459), - [anon_sym_PLUS_PLUS] = ACTIONS(1459), - [anon_sym_sizeof] = ACTIONS(1461), - [sym_number_literal] = ACTIONS(1463), - [anon_sym_L_SQUOTE] = ACTIONS(1465), - [anon_sym_u_SQUOTE] = ACTIONS(1465), - [anon_sym_U_SQUOTE] = ACTIONS(1465), - [anon_sym_u8_SQUOTE] = ACTIONS(1465), - [anon_sym_SQUOTE] = ACTIONS(1465), - [anon_sym_L_DQUOTE] = ACTIONS(1467), - [anon_sym_u_DQUOTE] = ACTIONS(1467), - [anon_sym_U_DQUOTE] = ACTIONS(1467), - [anon_sym_u8_DQUOTE] = ACTIONS(1467), - [anon_sym_DQUOTE] = ACTIONS(1467), - [sym_true] = ACTIONS(1469), - [sym_false] = ACTIONS(1469), - [sym_null] = ACTIONS(1469), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1473), - [anon_sym_R_DQUOTE] = ACTIONS(1475), - [anon_sym_LR_DQUOTE] = ACTIONS(1475), - [anon_sym_uR_DQUOTE] = ACTIONS(1475), - [anon_sym_UR_DQUOTE] = ACTIONS(1475), - [anon_sym_u8R_DQUOTE] = ACTIONS(1475), - [anon_sym_co_await] = ACTIONS(1477), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_requires] = ACTIONS(1481), - [sym_this] = ACTIONS(1469), - [sym_nullptr] = ACTIONS(1469), + [sym__expression] = STATE(4281), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7450), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_RPAREN] = ACTIONS(4157), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1699] = { - [sym__expression] = STATE(3392), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2954), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym__expression] = STATE(4283), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7513), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_RPAREN] = ACTIONS(4159), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(3594), - [sym_primitive_type] = ACTIONS(1541), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1700] = { - [sym__expression] = STATE(3524), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2954), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym__expression] = STATE(4494), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_initializer_list] = STATE(7207), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(1899), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1701] = { - [sym__expression] = STATE(3785), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(3036), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(3036), - [sym_call_expression] = STATE(3036), - [sym_field_expression] = STATE(3036), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(3036), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(3036), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(3073), - [anon_sym_LPAREN2] = ACTIONS(3075), - [anon_sym_BANG] = ACTIONS(3079), - [anon_sym_TILDE] = ACTIONS(3079), - [anon_sym_DASH] = ACTIONS(3077), - [anon_sym_PLUS] = ACTIONS(3077), - [anon_sym_STAR] = ACTIONS(3081), - [anon_sym_AMP] = ACTIONS(3081), - [anon_sym_COLON_COLON] = ACTIONS(3083), - [anon_sym_LBRACK] = ACTIONS(3779), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(3077), - [anon_sym_compl] = ACTIONS(3077), - [anon_sym_DASH_DASH] = ACTIONS(3085), - [anon_sym_PLUS_PLUS] = ACTIONS(3085), - [anon_sym_sizeof] = ACTIONS(3087), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(3089), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(3091), - [anon_sym_new] = ACTIONS(3065), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [sym__expression] = STATE(4162), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7010), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_RPAREN] = ACTIONS(4161), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1702] = { - [sym__expression] = STATE(2964), - [sym_conditional_expression] = STATE(2574), - [sym_assignment_expression] = STATE(2574), - [sym_pointer_expression] = STATE(2578), - [sym_unary_expression] = STATE(2574), - [sym_binary_expression] = STATE(2574), - [sym_update_expression] = STATE(2574), - [sym_cast_expression] = STATE(2574), - [sym_sizeof_expression] = STATE(2574), - [sym_subscript_expression] = STATE(2578), - [sym_call_expression] = STATE(2578), - [sym_field_expression] = STATE(2578), - [sym_compound_literal_expression] = STATE(2574), - [sym_parenthesized_expression] = STATE(2578), - [sym_char_literal] = STATE(2207), - [sym_concatenated_string] = STATE(2207), - [sym_string_literal] = STATE(1820), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5944), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(2574), - [sym_raw_string_literal] = STATE(1820), - [sym_co_await_expression] = STATE(2574), - [sym_new_expression] = STATE(2574), - [sym_delete_expression] = STATE(2574), - [sym_requires_clause] = STATE(2574), - [sym_requires_expression] = STATE(2574), - [sym_lambda_expression] = STATE(2574), - [sym_lambda_capture_specifier] = STATE(4479), - [sym_fold_expression] = STATE(2574), - [sym_parameter_pack_expansion] = STATE(2574), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2578), - [sym_qualified_type_identifier] = STATE(5944), - [sym_user_defined_literal] = STATE(2574), - [sym_identifier] = ACTIONS(1523), - [anon_sym_LPAREN2] = ACTIONS(1647), - [anon_sym_BANG] = ACTIONS(1651), - [anon_sym_TILDE] = ACTIONS(1651), - [anon_sym_DASH] = ACTIONS(1649), - [anon_sym_PLUS] = ACTIONS(1649), - [anon_sym_STAR] = ACTIONS(3081), - [anon_sym_AMP] = ACTIONS(3081), - [anon_sym_COLON_COLON] = ACTIONS(1655), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(1649), - [anon_sym_compl] = ACTIONS(1649), - [anon_sym_DASH_DASH] = ACTIONS(1657), - [anon_sym_PLUS_PLUS] = ACTIONS(1657), - [anon_sym_sizeof] = ACTIONS(1659), - [sym_number_literal] = ACTIONS(1547), - [anon_sym_L_SQUOTE] = ACTIONS(1549), - [anon_sym_u_SQUOTE] = ACTIONS(1549), - [anon_sym_U_SQUOTE] = ACTIONS(1549), - [anon_sym_u8_SQUOTE] = ACTIONS(1549), - [anon_sym_SQUOTE] = ACTIONS(1549), - [anon_sym_L_DQUOTE] = ACTIONS(1551), - [anon_sym_u_DQUOTE] = ACTIONS(1551), - [anon_sym_U_DQUOTE] = ACTIONS(1551), - [anon_sym_u8_DQUOTE] = ACTIONS(1551), - [anon_sym_DQUOTE] = ACTIONS(1551), - [sym_true] = ACTIONS(1553), - [sym_false] = ACTIONS(1553), - [sym_null] = ACTIONS(1553), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1661), - [anon_sym_R_DQUOTE] = ACTIONS(1559), - [anon_sym_LR_DQUOTE] = ACTIONS(1559), - [anon_sym_uR_DQUOTE] = ACTIONS(1559), - [anon_sym_UR_DQUOTE] = ACTIONS(1559), - [anon_sym_u8R_DQUOTE] = ACTIONS(1559), - [anon_sym_co_await] = ACTIONS(1663), - [anon_sym_new] = ACTIONS(1563), - [anon_sym_requires] = ACTIONS(1565), - [sym_this] = ACTIONS(1553), - [sym_nullptr] = ACTIONS(1553), + [sym__expression] = STATE(4164), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7013), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_RPAREN] = ACTIONS(4163), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1703] = { - [sym__expression] = STATE(3559), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2954), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym__expression] = STATE(4207), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7381), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_RPAREN] = ACTIONS(4165), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1704] = { - [sym__expression] = STATE(2966), - [sym_conditional_expression] = STATE(2574), - [sym_assignment_expression] = STATE(2574), - [sym_pointer_expression] = STATE(2578), - [sym_unary_expression] = STATE(2574), - [sym_binary_expression] = STATE(2574), - [sym_update_expression] = STATE(2574), - [sym_cast_expression] = STATE(2574), - [sym_sizeof_expression] = STATE(2574), - [sym_subscript_expression] = STATE(2578), - [sym_call_expression] = STATE(2578), - [sym_field_expression] = STATE(2578), - [sym_compound_literal_expression] = STATE(2574), - [sym_parenthesized_expression] = STATE(2578), - [sym_char_literal] = STATE(2207), - [sym_concatenated_string] = STATE(2207), - [sym_string_literal] = STATE(1820), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5944), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(2574), - [sym_raw_string_literal] = STATE(1820), - [sym_co_await_expression] = STATE(2574), - [sym_new_expression] = STATE(2574), - [sym_delete_expression] = STATE(2574), - [sym_requires_clause] = STATE(2574), - [sym_requires_expression] = STATE(2574), - [sym_lambda_expression] = STATE(2574), - [sym_lambda_capture_specifier] = STATE(4479), - [sym_fold_expression] = STATE(2574), - [sym_parameter_pack_expansion] = STATE(2574), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2578), - [sym_qualified_type_identifier] = STATE(5944), - [sym_user_defined_literal] = STATE(2574), - [sym_identifier] = ACTIONS(1523), - [anon_sym_LPAREN2] = ACTIONS(1647), - [anon_sym_BANG] = ACTIONS(1651), - [anon_sym_TILDE] = ACTIONS(1651), - [anon_sym_DASH] = ACTIONS(1649), - [anon_sym_PLUS] = ACTIONS(1649), - [anon_sym_STAR] = ACTIONS(3081), - [anon_sym_AMP] = ACTIONS(3081), - [anon_sym_COLON_COLON] = ACTIONS(1655), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(1649), - [anon_sym_compl] = ACTIONS(1649), - [anon_sym_DASH_DASH] = ACTIONS(1657), - [anon_sym_PLUS_PLUS] = ACTIONS(1657), - [anon_sym_sizeof] = ACTIONS(1659), - [sym_number_literal] = ACTIONS(1547), - [anon_sym_L_SQUOTE] = ACTIONS(1549), - [anon_sym_u_SQUOTE] = ACTIONS(1549), - [anon_sym_U_SQUOTE] = ACTIONS(1549), - [anon_sym_u8_SQUOTE] = ACTIONS(1549), - [anon_sym_SQUOTE] = ACTIONS(1549), - [anon_sym_L_DQUOTE] = ACTIONS(1551), - [anon_sym_u_DQUOTE] = ACTIONS(1551), - [anon_sym_U_DQUOTE] = ACTIONS(1551), - [anon_sym_u8_DQUOTE] = ACTIONS(1551), - [anon_sym_DQUOTE] = ACTIONS(1551), - [sym_true] = ACTIONS(1553), - [sym_false] = ACTIONS(1553), - [sym_null] = ACTIONS(1553), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1661), - [anon_sym_R_DQUOTE] = ACTIONS(1559), - [anon_sym_LR_DQUOTE] = ACTIONS(1559), - [anon_sym_uR_DQUOTE] = ACTIONS(1559), - [anon_sym_UR_DQUOTE] = ACTIONS(1559), - [anon_sym_u8R_DQUOTE] = ACTIONS(1559), - [anon_sym_co_await] = ACTIONS(1663), - [anon_sym_new] = ACTIONS(1563), - [anon_sym_requires] = ACTIONS(1565), - [sym_this] = ACTIONS(1553), - [sym_nullptr] = ACTIONS(1553), + [sym__expression] = STATE(3039), + [sym__expression_not_binary] = STATE(3021), + [sym_conditional_expression] = STATE(3021), + [sym_assignment_expression] = STATE(3021), + [sym_pointer_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_cast_expression] = STATE(3021), + [sym_sizeof_expression] = STATE(3021), + [sym_offsetof_expression] = STATE(3021), + [sym_generic_expression] = STATE(3021), + [sym_subscript_expression] = STATE(3021), + [sym_call_expression] = STATE(3021), + [sym_gnu_asm_expression] = STATE(3021), + [sym_field_expression] = STATE(3021), + [sym_compound_literal_expression] = STATE(3021), + [sym_parenthesized_expression] = STATE(3021), + [sym_char_literal] = STATE(2901), + [sym_concatenated_string] = STATE(2901), + [sym_string_literal] = STATE(2173), + [sym_null] = STATE(3021), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6616), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3021), + [sym_raw_string_literal] = STATE(2173), + [sym_co_await_expression] = STATE(3021), + [sym_new_expression] = STATE(3021), + [sym_delete_expression] = STATE(3021), + [sym_requires_clause] = STATE(3021), + [sym_requires_expression] = STATE(3021), + [sym_lambda_expression] = STATE(3021), + [sym_lambda_capture_specifier] = STATE(5188), + [sym_fold_expression] = STATE(3021), + [sym_parameter_pack_expansion] = STATE(3021), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3021), + [sym_qualified_type_identifier] = STATE(6616), + [sym_user_defined_literal] = STATE(3021), + [sym_identifier] = ACTIONS(1933), + [anon_sym_COMMA] = ACTIONS(4167), + [anon_sym_LPAREN2] = ACTIONS(1937), + [anon_sym_BANG] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(1941), + [anon_sym_DASH] = ACTIONS(1939), + [anon_sym_PLUS] = ACTIONS(1939), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(1945), + [anon_sym_LBRACK] = ACTIONS(1949), + [anon_sym_RBRACK] = ACTIONS(4167), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(1939), + [anon_sym_compl] = ACTIONS(1939), + [anon_sym_DASH_DASH] = ACTIONS(1953), + [anon_sym_PLUS_PLUS] = ACTIONS(1953), + [anon_sym_sizeof] = ACTIONS(1955), + [anon_sym_offsetof] = ACTIONS(1957), + [anon_sym__Generic] = ACTIONS(1959), + [anon_sym_asm] = ACTIONS(1961), + [anon_sym___asm__] = ACTIONS(1961), + [sym_number_literal] = ACTIONS(1963), + [anon_sym_L_SQUOTE] = ACTIONS(1965), + [anon_sym_u_SQUOTE] = ACTIONS(1965), + [anon_sym_U_SQUOTE] = ACTIONS(1965), + [anon_sym_u8_SQUOTE] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_L_DQUOTE] = ACTIONS(1967), + [anon_sym_u_DQUOTE] = ACTIONS(1967), + [anon_sym_U_DQUOTE] = ACTIONS(1967), + [anon_sym_u8_DQUOTE] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(1967), + [sym_true] = ACTIONS(1969), + [sym_false] = ACTIONS(1969), + [anon_sym_NULL] = ACTIONS(1971), + [anon_sym_nullptr] = ACTIONS(1971), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(1975), + [anon_sym_R_DQUOTE] = ACTIONS(1977), + [anon_sym_LR_DQUOTE] = ACTIONS(1977), + [anon_sym_uR_DQUOTE] = ACTIONS(1977), + [anon_sym_UR_DQUOTE] = ACTIONS(1977), + [anon_sym_u8R_DQUOTE] = ACTIONS(1977), + [anon_sym_co_await] = ACTIONS(1979), + [anon_sym_new] = ACTIONS(1981), + [anon_sym_requires] = ACTIONS(1983), + [sym_this] = ACTIONS(1969), }, [1705] = { - [sym__expression] = STATE(3424), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2954), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym__expression] = STATE(4165), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7613), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_RPAREN] = ACTIONS(4169), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1706] = { - [sym__expression] = STATE(3624), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2984), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2984), - [sym_call_expression] = STATE(2984), - [sym_field_expression] = STATE(2984), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2984), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2984), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(3047), - [anon_sym_LPAREN2] = ACTIONS(3049), - [anon_sym_BANG] = ACTIONS(3053), - [anon_sym_TILDE] = ACTIONS(3053), - [anon_sym_DASH] = ACTIONS(3051), - [anon_sym_PLUS] = ACTIONS(3051), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(3055), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(3051), - [anon_sym_compl] = ACTIONS(3051), - [anon_sym_DASH_DASH] = ACTIONS(3057), - [anon_sym_PLUS_PLUS] = ACTIONS(3057), - [anon_sym_sizeof] = ACTIONS(3059), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(3061), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(3063), - [anon_sym_new] = ACTIONS(3065), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [sym__expression] = STATE(4166), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7021), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_RPAREN] = ACTIONS(4171), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1707] = { - [sym__expression] = STATE(3423), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2954), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym__expression] = STATE(4170), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7023), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_RPAREN] = ACTIONS(4173), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1708] = { - [sym__expression] = STATE(3749), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2954), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym__expression] = STATE(4172), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_initializer_list] = STATE(6905), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(1899), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1709] = { - [sym__expression] = STATE(3740), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(3036), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(3036), - [sym_call_expression] = STATE(3036), - [sym_field_expression] = STATE(3036), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(3036), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(3036), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(3073), - [anon_sym_LPAREN2] = ACTIONS(3075), - [anon_sym_BANG] = ACTIONS(3079), - [anon_sym_TILDE] = ACTIONS(3079), - [anon_sym_DASH] = ACTIONS(3077), - [anon_sym_PLUS] = ACTIONS(3077), - [anon_sym_STAR] = ACTIONS(3081), - [anon_sym_AMP] = ACTIONS(3081), - [anon_sym_COLON_COLON] = ACTIONS(3083), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(3077), - [anon_sym_compl] = ACTIONS(3077), - [anon_sym_DASH_DASH] = ACTIONS(3085), - [anon_sym_PLUS_PLUS] = ACTIONS(3085), - [anon_sym_sizeof] = ACTIONS(3087), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(3089), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(3091), - [anon_sym_new] = ACTIONS(3065), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [sym__expression] = STATE(4205), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7414), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_RPAREN] = ACTIONS(4175), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1710] = { - [sym__expression] = STATE(3741), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(3036), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(3036), - [sym_call_expression] = STATE(3036), - [sym_field_expression] = STATE(3036), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(3036), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(3036), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(3073), - [anon_sym_LPAREN2] = ACTIONS(3075), - [anon_sym_BANG] = ACTIONS(3079), - [anon_sym_TILDE] = ACTIONS(3079), - [anon_sym_DASH] = ACTIONS(3077), - [anon_sym_PLUS] = ACTIONS(3077), - [anon_sym_STAR] = ACTIONS(3081), - [anon_sym_AMP] = ACTIONS(3081), - [anon_sym_COLON_COLON] = ACTIONS(3083), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(3077), - [anon_sym_compl] = ACTIONS(3077), - [anon_sym_DASH_DASH] = ACTIONS(3085), - [anon_sym_PLUS_PLUS] = ACTIONS(3085), - [anon_sym_sizeof] = ACTIONS(3087), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(3089), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(3091), - [anon_sym_new] = ACTIONS(3065), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [sym__expression] = STATE(4178), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7027), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_RPAREN] = ACTIONS(4177), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1711] = { - [sym__expression] = STATE(3598), - [sym_conditional_expression] = STATE(3855), - [sym_assignment_expression] = STATE(3855), - [sym_pointer_expression] = STATE(2954), - [sym_unary_expression] = STATE(3855), - [sym_binary_expression] = STATE(3855), - [sym_update_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_subscript_expression] = STATE(2954), - [sym_call_expression] = STATE(2954), - [sym_field_expression] = STATE(2954), - [sym_compound_literal_expression] = STATE(3855), - [sym_parenthesized_expression] = STATE(2954), - [sym_char_literal] = STATE(3557), - [sym_concatenated_string] = STATE(3557), - [sym_string_literal] = STATE(2955), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5844), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3855), - [sym_raw_string_literal] = STATE(2955), - [sym_co_await_expression] = STATE(3855), - [sym_new_expression] = STATE(3855), - [sym_delete_expression] = STATE(3855), - [sym_requires_clause] = STATE(3855), - [sym_requires_expression] = STATE(3855), - [sym_lambda_expression] = STATE(3855), - [sym_lambda_capture_specifier] = STATE(4501), - [sym_fold_expression] = STATE(3855), - [sym_parameter_pack_expansion] = STATE(3855), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4570), - [sym_qualified_identifier] = STATE(2954), - [sym_qualified_type_identifier] = STATE(5844), - [sym_user_defined_literal] = STATE(3855), - [sym_identifier] = ACTIONS(3023), - [anon_sym_LPAREN2] = ACTIONS(2410), - [anon_sym_BANG] = ACTIONS(2412), - [anon_sym_TILDE] = ACTIONS(2412), - [anon_sym_DASH] = ACTIONS(2414), - [anon_sym_PLUS] = ACTIONS(2414), - [anon_sym_STAR] = ACTIONS(2416), - [anon_sym_AMP] = ACTIONS(2416), - [anon_sym_COLON_COLON] = ACTIONS(2418), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1619), - [anon_sym_not] = ACTIONS(2414), - [anon_sym_compl] = ACTIONS(2414), - [anon_sym_DASH_DASH] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(2432), - [anon_sym_sizeof] = ACTIONS(2434), - [sym_number_literal] = ACTIONS(2436), - [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_L_DQUOTE] = ACTIONS(2440), - [anon_sym_u_DQUOTE] = ACTIONS(2440), - [anon_sym_U_DQUOTE] = ACTIONS(2440), - [anon_sym_u8_DQUOTE] = ACTIONS(2440), - [anon_sym_DQUOTE] = ACTIONS(2440), - [sym_true] = ACTIONS(2442), - [sym_false] = ACTIONS(2442), - [sym_null] = ACTIONS(2442), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(2452), - [anon_sym_R_DQUOTE] = ACTIONS(2454), - [anon_sym_LR_DQUOTE] = ACTIONS(2454), - [anon_sym_uR_DQUOTE] = ACTIONS(2454), - [anon_sym_UR_DQUOTE] = ACTIONS(2454), - [anon_sym_u8R_DQUOTE] = ACTIONS(2454), - [anon_sym_co_await] = ACTIONS(2456), - [anon_sym_new] = ACTIONS(2458), - [anon_sym_requires] = ACTIONS(2460), - [sym_this] = ACTIONS(2442), - [sym_nullptr] = ACTIONS(2442), + [sym__expression] = STATE(4469), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_initializer_list] = STATE(7581), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(1899), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1712] = { - [sym__expression] = STATE(3811), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(3036), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(3036), - [sym_call_expression] = STATE(3036), - [sym_field_expression] = STATE(3036), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(3036), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(3036), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(3073), - [anon_sym_LPAREN2] = ACTIONS(3075), - [anon_sym_BANG] = ACTIONS(3079), - [anon_sym_TILDE] = ACTIONS(3079), - [anon_sym_DASH] = ACTIONS(3077), - [anon_sym_PLUS] = ACTIONS(3077), - [anon_sym_STAR] = ACTIONS(3081), - [anon_sym_AMP] = ACTIONS(3081), - [anon_sym_COLON_COLON] = ACTIONS(3083), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(3077), - [anon_sym_compl] = ACTIONS(3077), - [anon_sym_DASH_DASH] = ACTIONS(3085), - [anon_sym_PLUS_PLUS] = ACTIONS(3085), - [anon_sym_sizeof] = ACTIONS(3087), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(3089), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(3091), - [anon_sym_new] = ACTIONS(3065), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [sym__expression] = STATE(3402), + [sym__expression_not_binary] = STATE(3513), + [sym_conditional_expression] = STATE(3513), + [sym_assignment_expression] = STATE(3513), + [sym_pointer_expression] = STATE(3513), + [sym_unary_expression] = STATE(3513), + [sym_binary_expression] = STATE(3513), + [sym_update_expression] = STATE(3513), + [sym_cast_expression] = STATE(3513), + [sym_sizeof_expression] = STATE(3513), + [sym_offsetof_expression] = STATE(3513), + [sym_generic_expression] = STATE(3513), + [sym_subscript_expression] = STATE(3513), + [sym_call_expression] = STATE(3513), + [sym_gnu_asm_expression] = STATE(3513), + [sym_field_expression] = STATE(3513), + [sym_compound_literal_expression] = STATE(3513), + [sym_parenthesized_expression] = STATE(3513), + [sym_initializer_list] = STATE(3438), + [sym_char_literal] = STATE(3385), + [sym_concatenated_string] = STATE(3385), + [sym_string_literal] = STATE(2225), + [sym_null] = STATE(3513), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6957), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3513), + [sym_raw_string_literal] = STATE(2225), + [sym_co_await_expression] = STATE(3513), + [sym_new_expression] = STATE(3513), + [sym_delete_expression] = STATE(3513), + [sym_requires_clause] = STATE(3513), + [sym_requires_expression] = STATE(3513), + [sym_lambda_expression] = STATE(3513), + [sym_lambda_capture_specifier] = STATE(5162), + [sym_fold_expression] = STATE(3513), + [sym_parameter_pack_expansion] = STATE(3513), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5289), + [sym_qualified_identifier] = STATE(3513), + [sym_qualified_type_identifier] = STATE(6957), + [sym_user_defined_literal] = STATE(3513), + [sym_identifier] = ACTIONS(2031), + [anon_sym_LPAREN2] = ACTIONS(2033), + [anon_sym_BANG] = ACTIONS(2037), + [anon_sym_TILDE] = ACTIONS(2037), + [anon_sym_DASH] = ACTIONS(2035), + [anon_sym_PLUS] = ACTIONS(2035), + [anon_sym_STAR] = ACTIONS(2624), + [anon_sym_AMP] = ACTIONS(2624), + [anon_sym_COLON_COLON] = ACTIONS(2041), + [anon_sym_LBRACE] = ACTIONS(2043), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(2045), + [anon_sym_not] = ACTIONS(2035), + [anon_sym_compl] = ACTIONS(2035), + [anon_sym_DASH_DASH] = ACTIONS(2047), + [anon_sym_PLUS_PLUS] = ACTIONS(2047), + [anon_sym_sizeof] = ACTIONS(2049), + [anon_sym_offsetof] = ACTIONS(2051), + [anon_sym__Generic] = ACTIONS(2053), + [anon_sym_asm] = ACTIONS(2055), + [anon_sym___asm__] = ACTIONS(2055), + [sym_number_literal] = ACTIONS(2057), + [anon_sym_L_SQUOTE] = ACTIONS(2059), + [anon_sym_u_SQUOTE] = ACTIONS(2059), + [anon_sym_U_SQUOTE] = ACTIONS(2059), + [anon_sym_u8_SQUOTE] = ACTIONS(2059), + [anon_sym_SQUOTE] = ACTIONS(2059), + [anon_sym_L_DQUOTE] = ACTIONS(2061), + [anon_sym_u_DQUOTE] = ACTIONS(2061), + [anon_sym_U_DQUOTE] = ACTIONS(2061), + [anon_sym_u8_DQUOTE] = ACTIONS(2061), + [anon_sym_DQUOTE] = ACTIONS(2061), + [sym_true] = ACTIONS(2063), + [sym_false] = ACTIONS(2063), + [anon_sym_NULL] = ACTIONS(2065), + [anon_sym_nullptr] = ACTIONS(2065), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(2067), + [anon_sym_R_DQUOTE] = ACTIONS(2069), + [anon_sym_LR_DQUOTE] = ACTIONS(2069), + [anon_sym_uR_DQUOTE] = ACTIONS(2069), + [anon_sym_UR_DQUOTE] = ACTIONS(2069), + [anon_sym_u8R_DQUOTE] = ACTIONS(2069), + [anon_sym_co_await] = ACTIONS(2071), + [anon_sym_new] = ACTIONS(2073), + [anon_sym_requires] = ACTIONS(2075), + [sym_this] = ACTIONS(2063), }, [1713] = { - [sym__expression] = STATE(2856), - [sym_conditional_expression] = STATE(2940), - [sym_assignment_expression] = STATE(2940), - [sym_pointer_expression] = STATE(2933), - [sym_unary_expression] = STATE(2940), - [sym_binary_expression] = STATE(2940), - [sym_update_expression] = STATE(2940), - [sym_cast_expression] = STATE(2940), - [sym_sizeof_expression] = STATE(2940), - [sym_subscript_expression] = STATE(2933), - [sym_call_expression] = STATE(2933), - [sym_field_expression] = STATE(2933), - [sym_compound_literal_expression] = STATE(2940), - [sym_parenthesized_expression] = STATE(2933), - [sym_char_literal] = STATE(2845), - [sym_concatenated_string] = STATE(2845), - [sym_string_literal] = STATE(1861), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5801), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(2940), - [sym_raw_string_literal] = STATE(1861), - [sym_co_await_expression] = STATE(2940), - [sym_new_expression] = STATE(2940), - [sym_delete_expression] = STATE(2940), - [sym_requires_clause] = STATE(2940), - [sym_requires_expression] = STATE(2940), - [sym_lambda_expression] = STATE(2940), - [sym_lambda_capture_specifier] = STATE(4464), - [sym_fold_expression] = STATE(2940), - [sym_parameter_pack_expansion] = STATE(2940), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4570), - [sym_qualified_identifier] = STATE(2933), - [sym_qualified_type_identifier] = STATE(5801), - [sym_user_defined_literal] = STATE(2940), - [sym_identifier] = ACTIONS(1605), - [anon_sym_LPAREN2] = ACTIONS(1607), - [anon_sym_BANG] = ACTIONS(1611), - [anon_sym_TILDE] = ACTIONS(1611), - [anon_sym_DASH] = ACTIONS(1609), - [anon_sym_PLUS] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(2416), - [anon_sym_AMP] = ACTIONS(2416), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1619), - [anon_sym_not] = ACTIONS(1609), - [anon_sym_compl] = ACTIONS(1609), - [anon_sym_DASH_DASH] = ACTIONS(1621), - [anon_sym_PLUS_PLUS] = ACTIONS(1621), - [anon_sym_sizeof] = ACTIONS(1623), - [sym_number_literal] = ACTIONS(1625), - [anon_sym_L_SQUOTE] = ACTIONS(1627), - [anon_sym_u_SQUOTE] = ACTIONS(1627), - [anon_sym_U_SQUOTE] = ACTIONS(1627), - [anon_sym_u8_SQUOTE] = ACTIONS(1627), - [anon_sym_SQUOTE] = ACTIONS(1627), - [anon_sym_L_DQUOTE] = ACTIONS(1629), - [anon_sym_u_DQUOTE] = ACTIONS(1629), - [anon_sym_U_DQUOTE] = ACTIONS(1629), - [anon_sym_u8_DQUOTE] = ACTIONS(1629), - [anon_sym_DQUOTE] = ACTIONS(1629), - [sym_true] = ACTIONS(1631), - [sym_false] = ACTIONS(1631), - [sym_null] = ACTIONS(1631), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1633), - [anon_sym_R_DQUOTE] = ACTIONS(1635), - [anon_sym_LR_DQUOTE] = ACTIONS(1635), - [anon_sym_uR_DQUOTE] = ACTIONS(1635), - [anon_sym_UR_DQUOTE] = ACTIONS(1635), - [anon_sym_u8R_DQUOTE] = ACTIONS(1635), - [anon_sym_co_await] = ACTIONS(1637), - [anon_sym_new] = ACTIONS(1639), - [anon_sym_requires] = ACTIONS(1641), - [sym_this] = ACTIONS(1631), - [sym_nullptr] = ACTIONS(1631), - }, - [1714] = { - [sym__expression] = STATE(3411), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2954), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym__expression] = STATE(4225), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7574), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_RPAREN] = ACTIONS(4179), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), + }, + [1714] = { + [sym__expression] = STATE(4180), + [sym__expression_not_binary] = STATE(4369), + [sym_conditional_expression] = STATE(4369), + [sym_assignment_expression] = STATE(4369), + [sym_pointer_expression] = STATE(3541), + [sym_unary_expression] = STATE(4369), + [sym_binary_expression] = STATE(4369), + [sym_update_expression] = STATE(4369), + [sym_cast_expression] = STATE(4369), + [sym_sizeof_expression] = STATE(4369), + [sym_offsetof_expression] = STATE(4369), + [sym_generic_expression] = STATE(4369), + [sym_subscript_expression] = STATE(3541), + [sym_call_expression] = STATE(3541), + [sym_gnu_asm_expression] = STATE(4369), + [sym_field_expression] = STATE(3541), + [sym_compound_literal_expression] = STATE(4369), + [sym_parenthesized_expression] = STATE(3541), + [sym_initializer_list] = STATE(4485), + [sym_char_literal] = STATE(4131), + [sym_concatenated_string] = STATE(4131), + [sym_string_literal] = STATE(3542), + [sym_null] = STATE(4369), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6872), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(4369), + [sym_raw_string_literal] = STATE(3542), + [sym_co_await_expression] = STATE(4369), + [sym_new_expression] = STATE(4369), + [sym_delete_expression] = STATE(4369), + [sym_requires_clause] = STATE(4369), + [sym_requires_expression] = STATE(4369), + [sym_lambda_expression] = STATE(4369), + [sym_lambda_capture_specifier] = STATE(5208), + [sym_fold_expression] = STATE(4369), + [sym_parameter_pack_expansion] = STATE(4369), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5289), + [sym_qualified_identifier] = STATE(3541), + [sym_qualified_type_identifier] = STATE(6872), + [sym_user_defined_literal] = STATE(4369), + [sym_identifier] = ACTIONS(3599), + [anon_sym_LPAREN2] = ACTIONS(2618), + [anon_sym_BANG] = ACTIONS(2620), + [anon_sym_TILDE] = ACTIONS(2620), + [anon_sym_DASH] = ACTIONS(2622), + [anon_sym_PLUS] = ACTIONS(2622), + [anon_sym_STAR] = ACTIONS(2624), + [anon_sym_AMP] = ACTIONS(2624), + [anon_sym_COLON_COLON] = ACTIONS(2626), + [anon_sym_LBRACE] = ACTIONS(3601), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(2045), + [anon_sym_not] = ACTIONS(2622), + [anon_sym_compl] = ACTIONS(2622), + [anon_sym_DASH_DASH] = ACTIONS(2640), + [anon_sym_PLUS_PLUS] = ACTIONS(2640), + [anon_sym_sizeof] = ACTIONS(2642), + [anon_sym_offsetof] = ACTIONS(2644), + [anon_sym__Generic] = ACTIONS(2646), + [anon_sym_asm] = ACTIONS(2648), + [anon_sym___asm__] = ACTIONS(2648), + [sym_number_literal] = ACTIONS(2650), + [anon_sym_L_SQUOTE] = ACTIONS(2652), + [anon_sym_u_SQUOTE] = ACTIONS(2652), + [anon_sym_U_SQUOTE] = ACTIONS(2652), + [anon_sym_u8_SQUOTE] = ACTIONS(2652), + [anon_sym_SQUOTE] = ACTIONS(2652), + [anon_sym_L_DQUOTE] = ACTIONS(2654), + [anon_sym_u_DQUOTE] = ACTIONS(2654), + [anon_sym_U_DQUOTE] = ACTIONS(2654), + [anon_sym_u8_DQUOTE] = ACTIONS(2654), + [anon_sym_DQUOTE] = ACTIONS(2654), + [sym_true] = ACTIONS(2656), + [sym_false] = ACTIONS(2656), + [anon_sym_NULL] = ACTIONS(2658), + [anon_sym_nullptr] = ACTIONS(2658), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(2668), + [anon_sym_R_DQUOTE] = ACTIONS(2670), + [anon_sym_LR_DQUOTE] = ACTIONS(2670), + [anon_sym_uR_DQUOTE] = ACTIONS(2670), + [anon_sym_UR_DQUOTE] = ACTIONS(2670), + [anon_sym_u8R_DQUOTE] = ACTIONS(2670), + [anon_sym_co_await] = ACTIONS(2672), + [anon_sym_new] = ACTIONS(2674), + [anon_sym_requires] = ACTIONS(2676), + [sym_this] = ACTIONS(2656), }, [1715] = { - [sym__expression] = STATE(3596), - [sym_conditional_expression] = STATE(3855), - [sym_assignment_expression] = STATE(3855), - [sym_pointer_expression] = STATE(2954), - [sym_unary_expression] = STATE(3855), - [sym_binary_expression] = STATE(3855), - [sym_update_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_subscript_expression] = STATE(2954), - [sym_call_expression] = STATE(2954), - [sym_field_expression] = STATE(2954), - [sym_compound_literal_expression] = STATE(3855), - [sym_parenthesized_expression] = STATE(2954), - [sym_char_literal] = STATE(3557), - [sym_concatenated_string] = STATE(3557), - [sym_string_literal] = STATE(2955), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5844), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3855), - [sym_raw_string_literal] = STATE(2955), - [sym_co_await_expression] = STATE(3855), - [sym_new_expression] = STATE(3855), - [sym_delete_expression] = STATE(3855), - [sym_requires_clause] = STATE(3855), - [sym_requires_expression] = STATE(3855), - [sym_lambda_expression] = STATE(3855), - [sym_lambda_capture_specifier] = STATE(4501), - [sym_fold_expression] = STATE(3855), - [sym_parameter_pack_expansion] = STATE(3855), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4570), - [sym_qualified_identifier] = STATE(2954), - [sym_qualified_type_identifier] = STATE(5844), - [sym_user_defined_literal] = STATE(3855), - [sym_identifier] = ACTIONS(3023), - [anon_sym_LPAREN2] = ACTIONS(2410), - [anon_sym_BANG] = ACTIONS(2412), - [anon_sym_TILDE] = ACTIONS(2412), - [anon_sym_DASH] = ACTIONS(2414), - [anon_sym_PLUS] = ACTIONS(2414), - [anon_sym_STAR] = ACTIONS(2416), - [anon_sym_AMP] = ACTIONS(2416), - [anon_sym_COLON_COLON] = ACTIONS(2418), - [anon_sym_LBRACK] = ACTIONS(3781), - [sym_primitive_type] = ACTIONS(1619), - [anon_sym_not] = ACTIONS(2414), - [anon_sym_compl] = ACTIONS(2414), - [anon_sym_DASH_DASH] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(2432), - [anon_sym_sizeof] = ACTIONS(2434), - [sym_number_literal] = ACTIONS(2436), - [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_L_DQUOTE] = ACTIONS(2440), - [anon_sym_u_DQUOTE] = ACTIONS(2440), - [anon_sym_U_DQUOTE] = ACTIONS(2440), - [anon_sym_u8_DQUOTE] = ACTIONS(2440), - [anon_sym_DQUOTE] = ACTIONS(2440), - [sym_true] = ACTIONS(2442), - [sym_false] = ACTIONS(2442), - [sym_null] = ACTIONS(2442), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(2452), - [anon_sym_R_DQUOTE] = ACTIONS(2454), - [anon_sym_LR_DQUOTE] = ACTIONS(2454), - [anon_sym_uR_DQUOTE] = ACTIONS(2454), - [anon_sym_UR_DQUOTE] = ACTIONS(2454), - [anon_sym_u8R_DQUOTE] = ACTIONS(2454), - [anon_sym_co_await] = ACTIONS(2456), - [anon_sym_new] = ACTIONS(2458), - [anon_sym_requires] = ACTIONS(2460), - [sym_this] = ACTIONS(2442), - [sym_nullptr] = ACTIONS(2442), + [sym__expression] = STATE(4203), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7421), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_RPAREN] = ACTIONS(4181), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1716] = { - [sym__expression] = STATE(3020), - [sym_conditional_expression] = STATE(2574), - [sym_assignment_expression] = STATE(2574), - [sym_pointer_expression] = STATE(2578), - [sym_unary_expression] = STATE(2574), - [sym_binary_expression] = STATE(2574), - [sym_update_expression] = STATE(2574), - [sym_cast_expression] = STATE(2574), - [sym_sizeof_expression] = STATE(2574), - [sym_subscript_expression] = STATE(2578), - [sym_call_expression] = STATE(2578), - [sym_field_expression] = STATE(2578), - [sym_compound_literal_expression] = STATE(2574), - [sym_parenthesized_expression] = STATE(2578), - [sym_char_literal] = STATE(2207), - [sym_concatenated_string] = STATE(2207), - [sym_string_literal] = STATE(1820), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5944), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(2574), - [sym_raw_string_literal] = STATE(1820), - [sym_co_await_expression] = STATE(2574), - [sym_new_expression] = STATE(2574), - [sym_delete_expression] = STATE(2574), - [sym_requires_clause] = STATE(2574), - [sym_requires_expression] = STATE(2574), - [sym_lambda_expression] = STATE(2574), - [sym_lambda_capture_specifier] = STATE(4479), - [sym_fold_expression] = STATE(2574), - [sym_parameter_pack_expansion] = STATE(2574), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2578), - [sym_qualified_type_identifier] = STATE(5944), - [sym_user_defined_literal] = STATE(2574), - [sym_identifier] = ACTIONS(1523), - [anon_sym_LPAREN2] = ACTIONS(1647), - [anon_sym_BANG] = ACTIONS(1651), - [anon_sym_TILDE] = ACTIONS(1651), - [anon_sym_DASH] = ACTIONS(1649), - [anon_sym_PLUS] = ACTIONS(1649), - [anon_sym_STAR] = ACTIONS(3081), - [anon_sym_AMP] = ACTIONS(3081), - [anon_sym_COLON_COLON] = ACTIONS(1655), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(1649), - [anon_sym_compl] = ACTIONS(1649), - [anon_sym_DASH_DASH] = ACTIONS(1657), - [anon_sym_PLUS_PLUS] = ACTIONS(1657), - [anon_sym_sizeof] = ACTIONS(1659), - [sym_number_literal] = ACTIONS(1547), - [anon_sym_L_SQUOTE] = ACTIONS(1549), - [anon_sym_u_SQUOTE] = ACTIONS(1549), - [anon_sym_U_SQUOTE] = ACTIONS(1549), - [anon_sym_u8_SQUOTE] = ACTIONS(1549), - [anon_sym_SQUOTE] = ACTIONS(1549), - [anon_sym_L_DQUOTE] = ACTIONS(1551), - [anon_sym_u_DQUOTE] = ACTIONS(1551), - [anon_sym_U_DQUOTE] = ACTIONS(1551), - [anon_sym_u8_DQUOTE] = ACTIONS(1551), - [anon_sym_DQUOTE] = ACTIONS(1551), - [sym_true] = ACTIONS(1553), - [sym_false] = ACTIONS(1553), - [sym_null] = ACTIONS(1553), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1661), - [anon_sym_R_DQUOTE] = ACTIONS(1559), - [anon_sym_LR_DQUOTE] = ACTIONS(1559), - [anon_sym_uR_DQUOTE] = ACTIONS(1559), - [anon_sym_UR_DQUOTE] = ACTIONS(1559), - [anon_sym_u8R_DQUOTE] = ACTIONS(1559), - [anon_sym_co_await] = ACTIONS(1663), - [anon_sym_new] = ACTIONS(1563), - [anon_sym_requires] = ACTIONS(1565), - [sym_this] = ACTIONS(1553), - [sym_nullptr] = ACTIONS(1553), + [sym__expression] = STATE(4465), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_initializer_list] = STATE(7168), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(1899), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1717] = { - [sym__expression] = STATE(3823), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(3036), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(3036), - [sym_call_expression] = STATE(3036), - [sym_field_expression] = STATE(3036), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(3036), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(3036), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(3073), - [anon_sym_LPAREN2] = ACTIONS(3075), - [anon_sym_BANG] = ACTIONS(3079), - [anon_sym_TILDE] = ACTIONS(3079), - [anon_sym_DASH] = ACTIONS(3077), - [anon_sym_PLUS] = ACTIONS(3077), - [anon_sym_STAR] = ACTIONS(3081), - [anon_sym_AMP] = ACTIONS(3081), - [anon_sym_COLON_COLON] = ACTIONS(3083), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(3077), - [anon_sym_compl] = ACTIONS(3077), - [anon_sym_DASH_DASH] = ACTIONS(3085), - [anon_sym_PLUS_PLUS] = ACTIONS(3085), - [anon_sym_sizeof] = ACTIONS(3087), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(3089), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(3091), - [anon_sym_new] = ACTIONS(3065), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [sym__expression] = STATE(4185), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7583), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_RPAREN] = ACTIONS(4183), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1718] = { - [sym__expression] = STATE(3016), - [sym_conditional_expression] = STATE(3035), - [sym_assignment_expression] = STATE(3035), - [sym_pointer_expression] = STATE(2713), - [sym_unary_expression] = STATE(3035), - [sym_binary_expression] = STATE(3035), - [sym_update_expression] = STATE(3035), - [sym_cast_expression] = STATE(3035), - [sym_sizeof_expression] = STATE(3035), - [sym_subscript_expression] = STATE(2713), - [sym_call_expression] = STATE(2713), - [sym_field_expression] = STATE(2713), - [sym_compound_literal_expression] = STATE(3035), - [sym_parenthesized_expression] = STATE(2713), - [sym_char_literal] = STATE(3013), - [sym_concatenated_string] = STATE(3013), - [sym_string_literal] = STATE(1900), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5990), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3035), - [sym_raw_string_literal] = STATE(1900), - [sym_co_await_expression] = STATE(3035), - [sym_new_expression] = STATE(3035), - [sym_delete_expression] = STATE(3035), - [sym_requires_clause] = STATE(3035), - [sym_requires_expression] = STATE(3035), - [sym_lambda_expression] = STATE(3035), - [sym_lambda_capture_specifier] = STATE(4465), - [sym_fold_expression] = STATE(3035), - [sym_parameter_pack_expansion] = STATE(3035), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4584), - [sym_qualified_identifier] = STATE(2713), - [sym_qualified_type_identifier] = STATE(5990), - [sym_user_defined_literal] = STATE(3035), - [sym_identifier] = ACTIONS(1643), - [anon_sym_LPAREN2] = ACTIONS(1439), - [anon_sym_BANG] = ACTIONS(1441), - [anon_sym_TILDE] = ACTIONS(1441), - [anon_sym_DASH] = ACTIONS(1443), - [anon_sym_PLUS] = ACTIONS(1443), - [anon_sym_STAR] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(1445), - [anon_sym_COLON_COLON] = ACTIONS(1447), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1581), - [anon_sym_not] = ACTIONS(1443), - [anon_sym_compl] = ACTIONS(1443), - [anon_sym_DASH_DASH] = ACTIONS(1459), - [anon_sym_PLUS_PLUS] = ACTIONS(1459), - [anon_sym_sizeof] = ACTIONS(1461), - [sym_number_literal] = ACTIONS(1463), - [anon_sym_L_SQUOTE] = ACTIONS(1465), - [anon_sym_u_SQUOTE] = ACTIONS(1465), - [anon_sym_U_SQUOTE] = ACTIONS(1465), - [anon_sym_u8_SQUOTE] = ACTIONS(1465), - [anon_sym_SQUOTE] = ACTIONS(1465), - [anon_sym_L_DQUOTE] = ACTIONS(1467), - [anon_sym_u_DQUOTE] = ACTIONS(1467), - [anon_sym_U_DQUOTE] = ACTIONS(1467), - [anon_sym_u8_DQUOTE] = ACTIONS(1467), - [anon_sym_DQUOTE] = ACTIONS(1467), - [sym_true] = ACTIONS(1469), - [sym_false] = ACTIONS(1469), - [sym_null] = ACTIONS(1469), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1473), - [anon_sym_R_DQUOTE] = ACTIONS(1475), - [anon_sym_LR_DQUOTE] = ACTIONS(1475), - [anon_sym_uR_DQUOTE] = ACTIONS(1475), - [anon_sym_UR_DQUOTE] = ACTIONS(1475), - [anon_sym_u8R_DQUOTE] = ACTIONS(1475), - [anon_sym_co_await] = ACTIONS(1477), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_requires] = ACTIONS(1481), - [sym_this] = ACTIONS(1469), - [sym_nullptr] = ACTIONS(1469), + [sym__expression] = STATE(4183), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7584), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_RPAREN] = ACTIONS(4185), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1719] = { - [sym__expression] = STATE(3012), - [sym_conditional_expression] = STATE(2574), - [sym_assignment_expression] = STATE(2574), - [sym_pointer_expression] = STATE(2578), - [sym_unary_expression] = STATE(2574), - [sym_binary_expression] = STATE(2574), - [sym_update_expression] = STATE(2574), - [sym_cast_expression] = STATE(2574), - [sym_sizeof_expression] = STATE(2574), - [sym_subscript_expression] = STATE(2578), - [sym_call_expression] = STATE(2578), - [sym_field_expression] = STATE(2578), - [sym_compound_literal_expression] = STATE(2574), - [sym_parenthesized_expression] = STATE(2578), - [sym_char_literal] = STATE(2207), - [sym_concatenated_string] = STATE(2207), - [sym_string_literal] = STATE(1820), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5944), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(2574), - [sym_raw_string_literal] = STATE(1820), - [sym_co_await_expression] = STATE(2574), - [sym_new_expression] = STATE(2574), - [sym_delete_expression] = STATE(2574), - [sym_requires_clause] = STATE(2574), - [sym_requires_expression] = STATE(2574), - [sym_lambda_expression] = STATE(2574), - [sym_lambda_capture_specifier] = STATE(4479), - [sym_fold_expression] = STATE(2574), - [sym_parameter_pack_expansion] = STATE(2574), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2578), - [sym_qualified_type_identifier] = STATE(5944), - [sym_user_defined_literal] = STATE(2574), - [sym_identifier] = ACTIONS(1523), - [anon_sym_LPAREN2] = ACTIONS(1647), - [anon_sym_BANG] = ACTIONS(1651), - [anon_sym_TILDE] = ACTIONS(1651), - [anon_sym_DASH] = ACTIONS(1649), - [anon_sym_PLUS] = ACTIONS(1649), - [anon_sym_STAR] = ACTIONS(3081), - [anon_sym_AMP] = ACTIONS(3081), - [anon_sym_COLON_COLON] = ACTIONS(1655), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(1649), - [anon_sym_compl] = ACTIONS(1649), - [anon_sym_DASH_DASH] = ACTIONS(1657), - [anon_sym_PLUS_PLUS] = ACTIONS(1657), - [anon_sym_sizeof] = ACTIONS(1659), - [sym_number_literal] = ACTIONS(1547), - [anon_sym_L_SQUOTE] = ACTIONS(1549), - [anon_sym_u_SQUOTE] = ACTIONS(1549), - [anon_sym_U_SQUOTE] = ACTIONS(1549), - [anon_sym_u8_SQUOTE] = ACTIONS(1549), - [anon_sym_SQUOTE] = ACTIONS(1549), - [anon_sym_L_DQUOTE] = ACTIONS(1551), - [anon_sym_u_DQUOTE] = ACTIONS(1551), - [anon_sym_U_DQUOTE] = ACTIONS(1551), - [anon_sym_u8_DQUOTE] = ACTIONS(1551), - [anon_sym_DQUOTE] = ACTIONS(1551), - [sym_true] = ACTIONS(1553), - [sym_false] = ACTIONS(1553), - [sym_null] = ACTIONS(1553), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1661), - [anon_sym_R_DQUOTE] = ACTIONS(1559), - [anon_sym_LR_DQUOTE] = ACTIONS(1559), - [anon_sym_uR_DQUOTE] = ACTIONS(1559), - [anon_sym_UR_DQUOTE] = ACTIONS(1559), - [anon_sym_u8R_DQUOTE] = ACTIONS(1559), - [anon_sym_co_await] = ACTIONS(1663), - [anon_sym_new] = ACTIONS(1563), - [anon_sym_requires] = ACTIONS(1565), - [sym_this] = ACTIONS(1553), - [sym_nullptr] = ACTIONS(1553), + [sym__expression] = STATE(4197), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7439), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_RPAREN] = ACTIONS(4187), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1720] = { - [sym__expression] = STATE(2838), - [sym_conditional_expression] = STATE(2940), - [sym_assignment_expression] = STATE(2940), - [sym_pointer_expression] = STATE(2933), - [sym_unary_expression] = STATE(2940), - [sym_binary_expression] = STATE(2940), - [sym_update_expression] = STATE(2940), - [sym_cast_expression] = STATE(2940), - [sym_sizeof_expression] = STATE(2940), - [sym_subscript_expression] = STATE(2933), - [sym_call_expression] = STATE(2933), - [sym_field_expression] = STATE(2933), - [sym_compound_literal_expression] = STATE(2940), - [sym_parenthesized_expression] = STATE(2933), - [sym_char_literal] = STATE(2845), - [sym_concatenated_string] = STATE(2845), - [sym_string_literal] = STATE(1861), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5801), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(2940), - [sym_raw_string_literal] = STATE(1861), - [sym_co_await_expression] = STATE(2940), - [sym_new_expression] = STATE(2940), - [sym_delete_expression] = STATE(2940), - [sym_requires_clause] = STATE(2940), - [sym_requires_expression] = STATE(2940), - [sym_lambda_expression] = STATE(2940), - [sym_lambda_capture_specifier] = STATE(4464), - [sym_fold_expression] = STATE(2940), - [sym_parameter_pack_expansion] = STATE(2940), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4570), - [sym_qualified_identifier] = STATE(2933), - [sym_qualified_type_identifier] = STATE(5801), - [sym_user_defined_literal] = STATE(2940), - [sym_identifier] = ACTIONS(1605), - [anon_sym_LPAREN2] = ACTIONS(1607), - [anon_sym_BANG] = ACTIONS(1611), - [anon_sym_TILDE] = ACTIONS(1611), - [anon_sym_DASH] = ACTIONS(1609), - [anon_sym_PLUS] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(2416), - [anon_sym_AMP] = ACTIONS(2416), - [anon_sym_COLON_COLON] = ACTIONS(1615), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1619), - [anon_sym_not] = ACTIONS(1609), - [anon_sym_compl] = ACTIONS(1609), - [anon_sym_DASH_DASH] = ACTIONS(1621), - [anon_sym_PLUS_PLUS] = ACTIONS(1621), - [anon_sym_sizeof] = ACTIONS(1623), - [sym_number_literal] = ACTIONS(1625), - [anon_sym_L_SQUOTE] = ACTIONS(1627), - [anon_sym_u_SQUOTE] = ACTIONS(1627), - [anon_sym_U_SQUOTE] = ACTIONS(1627), - [anon_sym_u8_SQUOTE] = ACTIONS(1627), - [anon_sym_SQUOTE] = ACTIONS(1627), - [anon_sym_L_DQUOTE] = ACTIONS(1629), - [anon_sym_u_DQUOTE] = ACTIONS(1629), - [anon_sym_U_DQUOTE] = ACTIONS(1629), - [anon_sym_u8_DQUOTE] = ACTIONS(1629), - [anon_sym_DQUOTE] = ACTIONS(1629), - [sym_true] = ACTIONS(1631), - [sym_false] = ACTIONS(1631), - [sym_null] = ACTIONS(1631), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1633), - [anon_sym_R_DQUOTE] = ACTIONS(1635), - [anon_sym_LR_DQUOTE] = ACTIONS(1635), - [anon_sym_uR_DQUOTE] = ACTIONS(1635), - [anon_sym_UR_DQUOTE] = ACTIONS(1635), - [anon_sym_u8R_DQUOTE] = ACTIONS(1635), - [anon_sym_co_await] = ACTIONS(1637), - [anon_sym_new] = ACTIONS(1639), - [anon_sym_requires] = ACTIONS(1641), - [sym_this] = ACTIONS(1631), - [sym_nullptr] = ACTIONS(1631), + [sym__expression] = STATE(4351), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_initializer_list] = STATE(7311), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(1899), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1721] = { - [sym__expression] = STATE(2882), - [sym_conditional_expression] = STATE(2574), - [sym_assignment_expression] = STATE(2574), - [sym_pointer_expression] = STATE(2578), - [sym_unary_expression] = STATE(2574), - [sym_binary_expression] = STATE(2574), - [sym_update_expression] = STATE(2574), - [sym_cast_expression] = STATE(2574), - [sym_sizeof_expression] = STATE(2574), - [sym_subscript_expression] = STATE(2578), - [sym_call_expression] = STATE(2578), - [sym_field_expression] = STATE(2578), - [sym_compound_literal_expression] = STATE(2574), - [sym_parenthesized_expression] = STATE(2578), - [sym_char_literal] = STATE(2207), - [sym_concatenated_string] = STATE(2207), - [sym_string_literal] = STATE(1820), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5944), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(2574), - [sym_raw_string_literal] = STATE(1820), - [sym_co_await_expression] = STATE(2574), - [sym_new_expression] = STATE(2574), - [sym_delete_expression] = STATE(2574), - [sym_requires_clause] = STATE(2574), - [sym_requires_expression] = STATE(2574), - [sym_lambda_expression] = STATE(2574), - [sym_lambda_capture_specifier] = STATE(4479), - [sym_fold_expression] = STATE(2574), - [sym_parameter_pack_expansion] = STATE(2574), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2578), - [sym_qualified_type_identifier] = STATE(5944), - [sym_user_defined_literal] = STATE(2574), - [sym_identifier] = ACTIONS(1523), - [anon_sym_LPAREN2] = ACTIONS(1647), - [anon_sym_BANG] = ACTIONS(1651), - [anon_sym_TILDE] = ACTIONS(1651), - [anon_sym_DASH] = ACTIONS(1649), - [anon_sym_PLUS] = ACTIONS(1649), - [anon_sym_STAR] = ACTIONS(3081), - [anon_sym_AMP] = ACTIONS(3081), - [anon_sym_COLON_COLON] = ACTIONS(1655), - [anon_sym_LBRACK] = ACTIONS(3783), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(1649), - [anon_sym_compl] = ACTIONS(1649), - [anon_sym_DASH_DASH] = ACTIONS(1657), - [anon_sym_PLUS_PLUS] = ACTIONS(1657), - [anon_sym_sizeof] = ACTIONS(1659), - [sym_number_literal] = ACTIONS(1547), - [anon_sym_L_SQUOTE] = ACTIONS(1549), - [anon_sym_u_SQUOTE] = ACTIONS(1549), - [anon_sym_U_SQUOTE] = ACTIONS(1549), - [anon_sym_u8_SQUOTE] = ACTIONS(1549), - [anon_sym_SQUOTE] = ACTIONS(1549), - [anon_sym_L_DQUOTE] = ACTIONS(1551), - [anon_sym_u_DQUOTE] = ACTIONS(1551), - [anon_sym_U_DQUOTE] = ACTIONS(1551), - [anon_sym_u8_DQUOTE] = ACTIONS(1551), - [anon_sym_DQUOTE] = ACTIONS(1551), - [sym_true] = ACTIONS(1553), - [sym_false] = ACTIONS(1553), - [sym_null] = ACTIONS(1553), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1661), - [anon_sym_R_DQUOTE] = ACTIONS(1559), - [anon_sym_LR_DQUOTE] = ACTIONS(1559), - [anon_sym_uR_DQUOTE] = ACTIONS(1559), - [anon_sym_UR_DQUOTE] = ACTIONS(1559), - [anon_sym_u8R_DQUOTE] = ACTIONS(1559), - [anon_sym_co_await] = ACTIONS(1663), - [anon_sym_new] = ACTIONS(1563), - [anon_sym_requires] = ACTIONS(1565), - [sym_this] = ACTIONS(1553), - [sym_nullptr] = ACTIONS(1553), + [sym__expression] = STATE(4200), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7031), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_RPAREN] = ACTIONS(4189), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1722] = { - [sym__expression] = STATE(3694), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2954), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym__expression] = STATE(4196), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7442), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_RPAREN] = ACTIONS(4191), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1723] = { - [sym__expression] = STATE(3689), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2984), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2984), - [sym_call_expression] = STATE(2984), - [sym_field_expression] = STATE(2984), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2984), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2984), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(3047), - [anon_sym_LPAREN2] = ACTIONS(3049), - [anon_sym_BANG] = ACTIONS(3053), - [anon_sym_TILDE] = ACTIONS(3053), - [anon_sym_DASH] = ACTIONS(3051), - [anon_sym_PLUS] = ACTIONS(3051), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(3055), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(3051), - [anon_sym_compl] = ACTIONS(3051), - [anon_sym_DASH_DASH] = ACTIONS(3057), - [anon_sym_PLUS_PLUS] = ACTIONS(3057), - [anon_sym_sizeof] = ACTIONS(3059), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(3061), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(3063), - [anon_sym_new] = ACTIONS(3065), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), - }, - [1724] = { - [sym__expression] = STATE(3695), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2954), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym__expression] = STATE(4484), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_initializer_list] = STATE(7585), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(1899), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), + }, + [1724] = { + [sym__expression] = STATE(2984), + [sym__expression_not_binary] = STATE(3021), + [sym_conditional_expression] = STATE(3021), + [sym_assignment_expression] = STATE(3021), + [sym_pointer_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_cast_expression] = STATE(3021), + [sym_sizeof_expression] = STATE(3021), + [sym_offsetof_expression] = STATE(3021), + [sym_generic_expression] = STATE(3021), + [sym_subscript_expression] = STATE(3021), + [sym_call_expression] = STATE(3021), + [sym_gnu_asm_expression] = STATE(3021), + [sym_field_expression] = STATE(3021), + [sym_compound_literal_expression] = STATE(3021), + [sym_parenthesized_expression] = STATE(3021), + [sym_initializer_list] = STATE(2985), + [sym_char_literal] = STATE(2901), + [sym_concatenated_string] = STATE(2901), + [sym_string_literal] = STATE(2173), + [sym_null] = STATE(3021), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6616), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3021), + [sym_raw_string_literal] = STATE(2173), + [sym_co_await_expression] = STATE(3021), + [sym_new_expression] = STATE(3021), + [sym_delete_expression] = STATE(3021), + [sym_requires_clause] = STATE(3021), + [sym_requires_expression] = STATE(3021), + [sym_lambda_expression] = STATE(3021), + [sym_lambda_capture_specifier] = STATE(5188), + [sym_fold_expression] = STATE(3021), + [sym_parameter_pack_expansion] = STATE(3021), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3021), + [sym_qualified_type_identifier] = STATE(6616), + [sym_user_defined_literal] = STATE(3021), + [sym_identifier] = ACTIONS(1933), + [anon_sym_LPAREN2] = ACTIONS(1937), + [anon_sym_BANG] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(1941), + [anon_sym_DASH] = ACTIONS(1939), + [anon_sym_PLUS] = ACTIONS(1939), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(1945), + [anon_sym_LBRACE] = ACTIONS(1947), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(1939), + [anon_sym_compl] = ACTIONS(1939), + [anon_sym_DASH_DASH] = ACTIONS(1953), + [anon_sym_PLUS_PLUS] = ACTIONS(1953), + [anon_sym_sizeof] = ACTIONS(1955), + [anon_sym_offsetof] = ACTIONS(1957), + [anon_sym__Generic] = ACTIONS(1959), + [anon_sym_asm] = ACTIONS(1961), + [anon_sym___asm__] = ACTIONS(1961), + [sym_number_literal] = ACTIONS(1963), + [anon_sym_L_SQUOTE] = ACTIONS(1965), + [anon_sym_u_SQUOTE] = ACTIONS(1965), + [anon_sym_U_SQUOTE] = ACTIONS(1965), + [anon_sym_u8_SQUOTE] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_L_DQUOTE] = ACTIONS(1967), + [anon_sym_u_DQUOTE] = ACTIONS(1967), + [anon_sym_U_DQUOTE] = ACTIONS(1967), + [anon_sym_u8_DQUOTE] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(1967), + [sym_true] = ACTIONS(1969), + [sym_false] = ACTIONS(1969), + [anon_sym_NULL] = ACTIONS(1971), + [anon_sym_nullptr] = ACTIONS(1971), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(1975), + [anon_sym_R_DQUOTE] = ACTIONS(1977), + [anon_sym_LR_DQUOTE] = ACTIONS(1977), + [anon_sym_uR_DQUOTE] = ACTIONS(1977), + [anon_sym_UR_DQUOTE] = ACTIONS(1977), + [anon_sym_u8R_DQUOTE] = ACTIONS(1977), + [anon_sym_co_await] = ACTIONS(1979), + [anon_sym_new] = ACTIONS(1981), + [anon_sym_requires] = ACTIONS(1983), + [sym_this] = ACTIONS(1969), }, [1725] = { - [sym__expression] = STATE(2972), - [sym_conditional_expression] = STATE(2574), - [sym_assignment_expression] = STATE(2574), - [sym_pointer_expression] = STATE(2578), - [sym_unary_expression] = STATE(2574), - [sym_binary_expression] = STATE(2574), - [sym_update_expression] = STATE(2574), - [sym_cast_expression] = STATE(2574), - [sym_sizeof_expression] = STATE(2574), - [sym_subscript_expression] = STATE(2578), - [sym_call_expression] = STATE(2578), - [sym_field_expression] = STATE(2578), - [sym_compound_literal_expression] = STATE(2574), - [sym_parenthesized_expression] = STATE(2578), - [sym_char_literal] = STATE(2207), - [sym_concatenated_string] = STATE(2207), - [sym_string_literal] = STATE(1820), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5944), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(2574), - [sym_raw_string_literal] = STATE(1820), - [sym_co_await_expression] = STATE(2574), - [sym_new_expression] = STATE(2574), - [sym_delete_expression] = STATE(2574), - [sym_requires_clause] = STATE(2574), - [sym_requires_expression] = STATE(2574), - [sym_lambda_expression] = STATE(2574), - [sym_lambda_capture_specifier] = STATE(4479), - [sym_fold_expression] = STATE(2574), - [sym_parameter_pack_expansion] = STATE(2574), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2578), - [sym_qualified_type_identifier] = STATE(5944), - [sym_user_defined_literal] = STATE(2574), - [sym_identifier] = ACTIONS(1523), - [anon_sym_LPAREN2] = ACTIONS(1647), - [anon_sym_BANG] = ACTIONS(1651), - [anon_sym_TILDE] = ACTIONS(1651), - [anon_sym_DASH] = ACTIONS(1649), - [anon_sym_PLUS] = ACTIONS(1649), - [anon_sym_STAR] = ACTIONS(3081), - [anon_sym_AMP] = ACTIONS(3081), - [anon_sym_COLON_COLON] = ACTIONS(1655), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(1649), - [anon_sym_compl] = ACTIONS(1649), - [anon_sym_DASH_DASH] = ACTIONS(1657), - [anon_sym_PLUS_PLUS] = ACTIONS(1657), - [anon_sym_sizeof] = ACTIONS(1659), - [sym_number_literal] = ACTIONS(1547), - [anon_sym_L_SQUOTE] = ACTIONS(1549), - [anon_sym_u_SQUOTE] = ACTIONS(1549), - [anon_sym_U_SQUOTE] = ACTIONS(1549), - [anon_sym_u8_SQUOTE] = ACTIONS(1549), - [anon_sym_SQUOTE] = ACTIONS(1549), - [anon_sym_L_DQUOTE] = ACTIONS(1551), - [anon_sym_u_DQUOTE] = ACTIONS(1551), - [anon_sym_U_DQUOTE] = ACTIONS(1551), - [anon_sym_u8_DQUOTE] = ACTIONS(1551), - [anon_sym_DQUOTE] = ACTIONS(1551), - [sym_true] = ACTIONS(1553), - [sym_false] = ACTIONS(1553), - [sym_null] = ACTIONS(1553), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1661), - [anon_sym_R_DQUOTE] = ACTIONS(1559), - [anon_sym_LR_DQUOTE] = ACTIONS(1559), - [anon_sym_uR_DQUOTE] = ACTIONS(1559), - [anon_sym_UR_DQUOTE] = ACTIONS(1559), - [anon_sym_u8R_DQUOTE] = ACTIONS(1559), - [anon_sym_co_await] = ACTIONS(1663), - [anon_sym_new] = ACTIONS(1563), - [anon_sym_requires] = ACTIONS(1565), - [sym_this] = ACTIONS(1553), - [sym_nullptr] = ACTIONS(1553), + [sym__expression] = STATE(4291), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_initializer_list] = STATE(6794), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(1899), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1726] = { - [sym__declaration_modifiers] = STATE(2179), - [sym__declaration_specifiers] = STATE(4031), - [sym_attribute_specifier] = STATE(2179), - [sym_attribute_declaration] = STATE(2179), - [sym_ms_declspec_modifier] = STATE(2179), - [sym_ms_based_modifier] = STATE(6104), - [sym__declarator] = STATE(5055), - [sym_parenthesized_declarator] = STATE(4918), - [sym_attributed_declarator] = STATE(4918), - [sym_pointer_declarator] = STATE(4918), - [sym_function_declarator] = STATE(4918), - [sym_array_declarator] = STATE(4918), - [sym_storage_class_specifier] = STATE(2179), - [sym_type_qualifier] = STATE(2179), - [sym__type_specifier] = STATE(3156), - [sym_sized_type_specifier] = STATE(3232), - [sym_enum_specifier] = STATE(3232), - [sym_struct_specifier] = STATE(3232), - [sym_union_specifier] = STATE(3232), - [sym_placeholder_type_specifier] = STATE(3232), - [sym_decltype_auto] = STATE(3279), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3232), - [sym_virtual] = STATE(2179), - [sym_dependent_type] = STATE(3232), - [sym_template_parameter_list] = STATE(1119), - [sym_reference_declarator] = STATE(4918), - [sym_structured_binding_declarator] = STATE(4918), - [sym_template_type] = STATE(3953), - [sym_template_function] = STATE(4918), - [sym_destructor_name] = STATE(4918), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4565), - [sym_qualified_identifier] = STATE(4918), - [sym_qualified_type_identifier] = STATE(3259), - [sym_operator_name] = STATE(4918), - [aux_sym__declaration_specifiers_repeat1] = STATE(2179), - [aux_sym_sized_type_specifier_repeat1] = STATE(3171), - [sym_identifier] = ACTIONS(3765), - [anon_sym_LPAREN2] = ACTIONS(1681), - [anon_sym_TILDE] = ACTIONS(1683), - [anon_sym_STAR] = ACTIONS(1685), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1687), - [anon_sym_LT] = ACTIONS(3767), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(3769), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1413), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1693), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(61), - [anon_sym_unsigned] = ACTIONS(61), - [anon_sym_long] = ACTIONS(61), - [anon_sym_short] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2932), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(107), - [anon_sym_decltype] = ACTIONS(109), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(115), - [anon_sym_template] = ACTIONS(996), - [anon_sym_operator] = ACTIONS(1521), + [sym__expression] = STATE(3453), + [sym__expression_not_binary] = STATE(3021), + [sym_conditional_expression] = STATE(3021), + [sym_assignment_expression] = STATE(3021), + [sym_pointer_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_cast_expression] = STATE(3021), + [sym_sizeof_expression] = STATE(3021), + [sym_offsetof_expression] = STATE(3021), + [sym_generic_expression] = STATE(3021), + [sym_subscript_expression] = STATE(3021), + [sym_call_expression] = STATE(3021), + [sym_gnu_asm_expression] = STATE(3021), + [sym_field_expression] = STATE(3021), + [sym_compound_literal_expression] = STATE(3021), + [sym_parenthesized_expression] = STATE(3021), + [sym_initializer_list] = STATE(2985), + [sym_char_literal] = STATE(2901), + [sym_concatenated_string] = STATE(2901), + [sym_string_literal] = STATE(2173), + [sym_null] = STATE(3021), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6616), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3021), + [sym_raw_string_literal] = STATE(2173), + [sym_co_await_expression] = STATE(3021), + [sym_new_expression] = STATE(3021), + [sym_delete_expression] = STATE(3021), + [sym_requires_clause] = STATE(3021), + [sym_requires_expression] = STATE(3021), + [sym_lambda_expression] = STATE(3021), + [sym_lambda_capture_specifier] = STATE(5188), + [sym_fold_expression] = STATE(3021), + [sym_parameter_pack_expansion] = STATE(3021), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3021), + [sym_qualified_type_identifier] = STATE(6616), + [sym_user_defined_literal] = STATE(3021), + [sym_identifier] = ACTIONS(1933), + [anon_sym_LPAREN2] = ACTIONS(2077), + [anon_sym_BANG] = ACTIONS(2081), + [anon_sym_TILDE] = ACTIONS(2081), + [anon_sym_DASH] = ACTIONS(2079), + [anon_sym_PLUS] = ACTIONS(2079), + [anon_sym_STAR] = ACTIONS(3641), + [anon_sym_AMP] = ACTIONS(3641), + [anon_sym_COLON_COLON] = ACTIONS(2085), + [anon_sym_LBRACE] = ACTIONS(1947), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(2079), + [anon_sym_compl] = ACTIONS(2079), + [anon_sym_DASH_DASH] = ACTIONS(2087), + [anon_sym_PLUS_PLUS] = ACTIONS(2087), + [anon_sym_sizeof] = ACTIONS(2089), + [anon_sym_offsetof] = ACTIONS(1957), + [anon_sym__Generic] = ACTIONS(1959), + [anon_sym_asm] = ACTIONS(1961), + [anon_sym___asm__] = ACTIONS(1961), + [sym_number_literal] = ACTIONS(1963), + [anon_sym_L_SQUOTE] = ACTIONS(1965), + [anon_sym_u_SQUOTE] = ACTIONS(1965), + [anon_sym_U_SQUOTE] = ACTIONS(1965), + [anon_sym_u8_SQUOTE] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_L_DQUOTE] = ACTIONS(1967), + [anon_sym_u_DQUOTE] = ACTIONS(1967), + [anon_sym_U_DQUOTE] = ACTIONS(1967), + [anon_sym_u8_DQUOTE] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(1967), + [sym_true] = ACTIONS(1969), + [sym_false] = ACTIONS(1969), + [anon_sym_NULL] = ACTIONS(1971), + [anon_sym_nullptr] = ACTIONS(1971), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(2091), + [anon_sym_R_DQUOTE] = ACTIONS(1977), + [anon_sym_LR_DQUOTE] = ACTIONS(1977), + [anon_sym_uR_DQUOTE] = ACTIONS(1977), + [anon_sym_UR_DQUOTE] = ACTIONS(1977), + [anon_sym_u8R_DQUOTE] = ACTIONS(1977), + [anon_sym_co_await] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(1981), + [anon_sym_requires] = ACTIONS(1983), + [sym_this] = ACTIONS(1969), }, [1727] = { - [sym__expression] = STATE(3528), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2954), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym__expression] = STATE(4271), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7107), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_RPAREN] = ACTIONS(4193), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1728] = { - [sym__expression] = STATE(2667), - [sym_conditional_expression] = STATE(2786), - [sym_assignment_expression] = STATE(2786), - [sym_pointer_expression] = STATE(2784), - [sym_unary_expression] = STATE(2786), - [sym_binary_expression] = STATE(2786), - [sym_update_expression] = STATE(2786), - [sym_cast_expression] = STATE(2786), - [sym_sizeof_expression] = STATE(2786), - [sym_subscript_expression] = STATE(2784), - [sym_call_expression] = STATE(2784), - [sym_field_expression] = STATE(2784), - [sym_compound_literal_expression] = STATE(2786), - [sym_parenthesized_expression] = STATE(2784), - [sym_char_literal] = STATE(2651), - [sym_concatenated_string] = STATE(2651), - [sym_string_literal] = STATE(1840), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5891), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(2786), - [sym_raw_string_literal] = STATE(1840), - [sym_co_await_expression] = STATE(2786), - [sym_new_expression] = STATE(2786), - [sym_delete_expression] = STATE(2786), - [sym_requires_clause] = STATE(2786), - [sym_requires_expression] = STATE(2786), - [sym_lambda_expression] = STATE(2786), - [sym_lambda_capture_specifier] = STATE(4484), - [sym_fold_expression] = STATE(2786), - [sym_parameter_pack_expansion] = STATE(2786), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4584), - [sym_qualified_identifier] = STATE(2784), - [sym_qualified_type_identifier] = STATE(5891), - [sym_user_defined_literal] = STATE(2786), - [sym_identifier] = ACTIONS(1567), - [anon_sym_LPAREN2] = ACTIONS(1569), - [anon_sym_BANG] = ACTIONS(1573), - [anon_sym_TILDE] = ACTIONS(1573), - [anon_sym_DASH] = ACTIONS(1571), - [anon_sym_PLUS] = ACTIONS(1571), - [anon_sym_STAR] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(1445), - [anon_sym_COLON_COLON] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1581), - [anon_sym_not] = ACTIONS(1571), - [anon_sym_compl] = ACTIONS(1571), - [anon_sym_DASH_DASH] = ACTIONS(1583), - [anon_sym_PLUS_PLUS] = ACTIONS(1583), - [anon_sym_sizeof] = ACTIONS(1585), - [sym_number_literal] = ACTIONS(1587), - [anon_sym_L_SQUOTE] = ACTIONS(1589), - [anon_sym_u_SQUOTE] = ACTIONS(1589), - [anon_sym_U_SQUOTE] = ACTIONS(1589), - [anon_sym_u8_SQUOTE] = ACTIONS(1589), - [anon_sym_SQUOTE] = ACTIONS(1589), - [anon_sym_L_DQUOTE] = ACTIONS(1591), - [anon_sym_u_DQUOTE] = ACTIONS(1591), - [anon_sym_U_DQUOTE] = ACTIONS(1591), - [anon_sym_u8_DQUOTE] = ACTIONS(1591), - [anon_sym_DQUOTE] = ACTIONS(1591), - [sym_true] = ACTIONS(1593), - [sym_false] = ACTIONS(1593), - [sym_null] = ACTIONS(1593), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1595), - [anon_sym_R_DQUOTE] = ACTIONS(1597), - [anon_sym_LR_DQUOTE] = ACTIONS(1597), - [anon_sym_uR_DQUOTE] = ACTIONS(1597), - [anon_sym_UR_DQUOTE] = ACTIONS(1597), - [anon_sym_u8R_DQUOTE] = ACTIONS(1597), - [anon_sym_co_await] = ACTIONS(1599), - [anon_sym_new] = ACTIONS(1601), - [anon_sym_requires] = ACTIONS(1603), - [sym_this] = ACTIONS(1593), - [sym_nullptr] = ACTIONS(1593), + [sym__expression] = STATE(4274), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7115), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_RPAREN] = ACTIONS(4195), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1729] = { - [sym__expression] = STATE(3711), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2954), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym__expression] = STATE(4266), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7095), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_RPAREN] = ACTIONS(4197), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1730] = { - [sym__expression] = STATE(3640), - [sym_conditional_expression] = STATE(3855), - [sym_assignment_expression] = STATE(3855), - [sym_pointer_expression] = STATE(2954), - [sym_unary_expression] = STATE(3855), - [sym_binary_expression] = STATE(3855), - [sym_update_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_subscript_expression] = STATE(2954), - [sym_call_expression] = STATE(2954), - [sym_field_expression] = STATE(2954), - [sym_compound_literal_expression] = STATE(3855), - [sym_parenthesized_expression] = STATE(2954), - [sym_char_literal] = STATE(3557), - [sym_concatenated_string] = STATE(3557), - [sym_string_literal] = STATE(2955), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5844), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3855), - [sym_raw_string_literal] = STATE(2955), - [sym_co_await_expression] = STATE(3855), - [sym_new_expression] = STATE(3855), - [sym_delete_expression] = STATE(3855), - [sym_requires_clause] = STATE(3855), - [sym_requires_expression] = STATE(3855), - [sym_lambda_expression] = STATE(3855), - [sym_lambda_capture_specifier] = STATE(4501), - [sym_fold_expression] = STATE(3855), - [sym_parameter_pack_expansion] = STATE(3855), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4570), - [sym_qualified_identifier] = STATE(2954), - [sym_qualified_type_identifier] = STATE(5844), - [sym_user_defined_literal] = STATE(3855), - [sym_identifier] = ACTIONS(3023), - [anon_sym_LPAREN2] = ACTIONS(2410), - [anon_sym_BANG] = ACTIONS(2412), - [anon_sym_TILDE] = ACTIONS(2412), - [anon_sym_DASH] = ACTIONS(2414), - [anon_sym_PLUS] = ACTIONS(2414), - [anon_sym_STAR] = ACTIONS(2416), - [anon_sym_AMP] = ACTIONS(2416), - [anon_sym_COLON_COLON] = ACTIONS(2418), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1619), - [anon_sym_not] = ACTIONS(2414), - [anon_sym_compl] = ACTIONS(2414), - [anon_sym_DASH_DASH] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(2432), - [anon_sym_sizeof] = ACTIONS(2434), - [sym_number_literal] = ACTIONS(2436), - [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_L_DQUOTE] = ACTIONS(2440), - [anon_sym_u_DQUOTE] = ACTIONS(2440), - [anon_sym_U_DQUOTE] = ACTIONS(2440), - [anon_sym_u8_DQUOTE] = ACTIONS(2440), - [anon_sym_DQUOTE] = ACTIONS(2440), - [sym_true] = ACTIONS(2442), - [sym_false] = ACTIONS(2442), - [sym_null] = ACTIONS(2442), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(2452), - [anon_sym_R_DQUOTE] = ACTIONS(2454), - [anon_sym_LR_DQUOTE] = ACTIONS(2454), - [anon_sym_uR_DQUOTE] = ACTIONS(2454), - [anon_sym_UR_DQUOTE] = ACTIONS(2454), - [anon_sym_u8R_DQUOTE] = ACTIONS(2454), - [anon_sym_co_await] = ACTIONS(2456), - [anon_sym_new] = ACTIONS(2458), - [anon_sym_requires] = ACTIONS(2460), - [sym_this] = ACTIONS(2442), - [sym_nullptr] = ACTIONS(2442), + [sym__expression] = STATE(4273), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7111), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_RPAREN] = ACTIONS(4199), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1731] = { - [sym__expression] = STATE(3796), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(3036), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(3036), - [sym_call_expression] = STATE(3036), - [sym_field_expression] = STATE(3036), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(3036), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(3036), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(3073), - [anon_sym_LPAREN2] = ACTIONS(3075), - [anon_sym_BANG] = ACTIONS(3079), - [anon_sym_TILDE] = ACTIONS(3079), - [anon_sym_DASH] = ACTIONS(3077), - [anon_sym_PLUS] = ACTIONS(3077), - [anon_sym_STAR] = ACTIONS(3081), - [anon_sym_AMP] = ACTIONS(3081), - [anon_sym_COLON_COLON] = ACTIONS(3083), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(3077), - [anon_sym_compl] = ACTIONS(3077), - [anon_sym_DASH_DASH] = ACTIONS(3085), - [anon_sym_PLUS_PLUS] = ACTIONS(3085), - [anon_sym_sizeof] = ACTIONS(3087), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(3089), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(3091), - [anon_sym_new] = ACTIONS(3065), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [sym__expression] = STATE(4269), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7105), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_RPAREN] = ACTIONS(4201), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1732] = { - [sym__expression] = STATE(3729), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(3036), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(3036), - [sym_call_expression] = STATE(3036), - [sym_field_expression] = STATE(3036), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(3036), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(3036), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(3073), - [anon_sym_LPAREN2] = ACTIONS(3075), - [anon_sym_BANG] = ACTIONS(3079), - [anon_sym_TILDE] = ACTIONS(3079), - [anon_sym_DASH] = ACTIONS(3077), - [anon_sym_PLUS] = ACTIONS(3077), - [anon_sym_STAR] = ACTIONS(3081), - [anon_sym_AMP] = ACTIONS(3081), - [anon_sym_COLON_COLON] = ACTIONS(3083), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(3077), - [anon_sym_compl] = ACTIONS(3077), - [anon_sym_DASH_DASH] = ACTIONS(3085), - [anon_sym_PLUS_PLUS] = ACTIONS(3085), - [anon_sym_sizeof] = ACTIONS(3087), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(3089), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(3091), - [anon_sym_new] = ACTIONS(3065), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [sym__expression] = STATE(3485), + [sym__expression_not_binary] = STATE(3565), + [sym_conditional_expression] = STATE(3565), + [sym_assignment_expression] = STATE(3565), + [sym_pointer_expression] = STATE(3220), + [sym_unary_expression] = STATE(3565), + [sym_binary_expression] = STATE(3565), + [sym_update_expression] = STATE(3565), + [sym_cast_expression] = STATE(3565), + [sym_sizeof_expression] = STATE(3565), + [sym_offsetof_expression] = STATE(3565), + [sym_generic_expression] = STATE(3565), + [sym_subscript_expression] = STATE(3220), + [sym_call_expression] = STATE(3220), + [sym_gnu_asm_expression] = STATE(3565), + [sym_field_expression] = STATE(3220), + [sym_compound_literal_expression] = STATE(3565), + [sym_parenthesized_expression] = STATE(3220), + [sym_initializer_list] = STATE(3613), + [sym_char_literal] = STATE(3429), + [sym_concatenated_string] = STATE(3429), + [sym_string_literal] = STATE(2248), + [sym_null] = STATE(3565), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6847), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3565), + [sym_raw_string_literal] = STATE(2248), + [sym_co_await_expression] = STATE(3565), + [sym_new_expression] = STATE(3565), + [sym_delete_expression] = STATE(3565), + [sym_requires_clause] = STATE(3565), + [sym_requires_expression] = STATE(3565), + [sym_lambda_expression] = STATE(3565), + [sym_lambda_capture_specifier] = STATE(5204), + [sym_fold_expression] = STATE(3565), + [sym_parameter_pack_expansion] = STATE(3565), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5232), + [sym_qualified_identifier] = STATE(3220), + [sym_qualified_type_identifier] = STATE(6847), + [sym_user_defined_literal] = STATE(3565), + [sym_identifier] = ACTIONS(2095), + [anon_sym_LPAREN2] = ACTIONS(1841), + [anon_sym_BANG] = ACTIONS(1843), + [anon_sym_TILDE] = ACTIONS(1843), + [anon_sym_DASH] = ACTIONS(1845), + [anon_sym_PLUS] = ACTIONS(1845), + [anon_sym_STAR] = ACTIONS(1847), + [anon_sym_AMP] = ACTIONS(1847), + [anon_sym_COLON_COLON] = ACTIONS(1849), + [anon_sym_LBRACE] = ACTIONS(2097), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1999), + [anon_sym_not] = ACTIONS(1845), + [anon_sym_compl] = ACTIONS(1845), + [anon_sym_DASH_DASH] = ACTIONS(1861), + [anon_sym_PLUS_PLUS] = ACTIONS(1861), + [anon_sym_sizeof] = ACTIONS(1863), + [anon_sym_offsetof] = ACTIONS(1865), + [anon_sym__Generic] = ACTIONS(1867), + [anon_sym_asm] = ACTIONS(1869), + [anon_sym___asm__] = ACTIONS(1869), + [sym_number_literal] = ACTIONS(1871), + [anon_sym_L_SQUOTE] = ACTIONS(1873), + [anon_sym_u_SQUOTE] = ACTIONS(1873), + [anon_sym_U_SQUOTE] = ACTIONS(1873), + [anon_sym_u8_SQUOTE] = ACTIONS(1873), + [anon_sym_SQUOTE] = ACTIONS(1873), + [anon_sym_L_DQUOTE] = ACTIONS(1875), + [anon_sym_u_DQUOTE] = ACTIONS(1875), + [anon_sym_U_DQUOTE] = ACTIONS(1875), + [anon_sym_u8_DQUOTE] = ACTIONS(1875), + [anon_sym_DQUOTE] = ACTIONS(1875), + [sym_true] = ACTIONS(1877), + [sym_false] = ACTIONS(1877), + [anon_sym_NULL] = ACTIONS(1879), + [anon_sym_nullptr] = ACTIONS(1879), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(1883), + [anon_sym_R_DQUOTE] = ACTIONS(1885), + [anon_sym_LR_DQUOTE] = ACTIONS(1885), + [anon_sym_uR_DQUOTE] = ACTIONS(1885), + [anon_sym_UR_DQUOTE] = ACTIONS(1885), + [anon_sym_u8R_DQUOTE] = ACTIONS(1885), + [anon_sym_co_await] = ACTIONS(1887), + [anon_sym_new] = ACTIONS(1889), + [anon_sym_requires] = ACTIONS(1891), + [sym_this] = ACTIONS(1877), }, [1733] = { - [sym__expression] = STATE(3673), - [sym_conditional_expression] = STATE(3855), - [sym_assignment_expression] = STATE(3855), - [sym_pointer_expression] = STATE(2954), - [sym_unary_expression] = STATE(3855), - [sym_binary_expression] = STATE(3855), - [sym_update_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_subscript_expression] = STATE(2954), - [sym_call_expression] = STATE(2954), - [sym_field_expression] = STATE(2954), - [sym_compound_literal_expression] = STATE(3855), - [sym_parenthesized_expression] = STATE(2954), - [sym_char_literal] = STATE(3557), - [sym_concatenated_string] = STATE(3557), - [sym_string_literal] = STATE(2955), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5844), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3855), - [sym_raw_string_literal] = STATE(2955), - [sym_co_await_expression] = STATE(3855), - [sym_new_expression] = STATE(3855), - [sym_delete_expression] = STATE(3855), - [sym_requires_clause] = STATE(3855), - [sym_requires_expression] = STATE(3855), - [sym_lambda_expression] = STATE(3855), - [sym_lambda_capture_specifier] = STATE(4501), - [sym_fold_expression] = STATE(3855), - [sym_parameter_pack_expansion] = STATE(3855), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4570), - [sym_qualified_identifier] = STATE(2954), - [sym_qualified_type_identifier] = STATE(5844), - [sym_user_defined_literal] = STATE(3855), - [sym_identifier] = ACTIONS(3023), - [anon_sym_LPAREN2] = ACTIONS(2410), - [anon_sym_BANG] = ACTIONS(2412), - [anon_sym_TILDE] = ACTIONS(2412), - [anon_sym_DASH] = ACTIONS(2414), - [anon_sym_PLUS] = ACTIONS(2414), - [anon_sym_STAR] = ACTIONS(2416), - [anon_sym_AMP] = ACTIONS(2416), - [anon_sym_COLON_COLON] = ACTIONS(2418), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1619), - [anon_sym_not] = ACTIONS(2414), - [anon_sym_compl] = ACTIONS(2414), - [anon_sym_DASH_DASH] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(2432), - [anon_sym_sizeof] = ACTIONS(2434), - [sym_number_literal] = ACTIONS(2436), - [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_L_DQUOTE] = ACTIONS(2440), - [anon_sym_u_DQUOTE] = ACTIONS(2440), - [anon_sym_U_DQUOTE] = ACTIONS(2440), - [anon_sym_u8_DQUOTE] = ACTIONS(2440), - [anon_sym_DQUOTE] = ACTIONS(2440), - [sym_true] = ACTIONS(2442), - [sym_false] = ACTIONS(2442), - [sym_null] = ACTIONS(2442), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(2452), - [anon_sym_R_DQUOTE] = ACTIONS(2454), - [anon_sym_LR_DQUOTE] = ACTIONS(2454), - [anon_sym_uR_DQUOTE] = ACTIONS(2454), - [anon_sym_UR_DQUOTE] = ACTIONS(2454), - [anon_sym_u8R_DQUOTE] = ACTIONS(2454), - [anon_sym_co_await] = ACTIONS(2456), - [anon_sym_new] = ACTIONS(2458), - [anon_sym_requires] = ACTIONS(2460), - [sym_this] = ACTIONS(2442), - [sym_nullptr] = ACTIONS(2442), - }, - [1734] = { - [sym__expression] = STATE(3412), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2954), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym__expression] = STATE(4267), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7098), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_RPAREN] = ACTIONS(4203), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), + }, + [1734] = { + [sym__expression] = STATE(3458), + [sym__expression_not_binary] = STATE(3565), + [sym_conditional_expression] = STATE(3565), + [sym_assignment_expression] = STATE(3565), + [sym_pointer_expression] = STATE(3220), + [sym_unary_expression] = STATE(3565), + [sym_binary_expression] = STATE(3565), + [sym_update_expression] = STATE(3565), + [sym_cast_expression] = STATE(3565), + [sym_sizeof_expression] = STATE(3565), + [sym_offsetof_expression] = STATE(3565), + [sym_generic_expression] = STATE(3565), + [sym_subscript_expression] = STATE(3220), + [sym_call_expression] = STATE(3220), + [sym_gnu_asm_expression] = STATE(3565), + [sym_field_expression] = STATE(3220), + [sym_compound_literal_expression] = STATE(3565), + [sym_parenthesized_expression] = STATE(3220), + [sym_char_literal] = STATE(3429), + [sym_concatenated_string] = STATE(3429), + [sym_string_literal] = STATE(2248), + [sym_null] = STATE(3565), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6847), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3565), + [sym_raw_string_literal] = STATE(2248), + [sym_co_await_expression] = STATE(3565), + [sym_new_expression] = STATE(3565), + [sym_delete_expression] = STATE(3565), + [sym_requires_clause] = STATE(3565), + [sym_requires_expression] = STATE(3565), + [sym_lambda_expression] = STATE(3565), + [sym_lambda_capture_specifier] = STATE(5204), + [sym_fold_expression] = STATE(3565), + [sym_parameter_pack_expansion] = STATE(3565), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5232), + [sym_qualified_identifier] = STATE(3220), + [sym_qualified_type_identifier] = STATE(6847), + [sym_user_defined_literal] = STATE(3565), + [sym_identifier] = ACTIONS(2095), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4205), + [anon_sym_LPAREN2] = ACTIONS(1841), + [anon_sym_BANG] = ACTIONS(1843), + [anon_sym_TILDE] = ACTIONS(1843), + [anon_sym_DASH] = ACTIONS(1845), + [anon_sym_PLUS] = ACTIONS(1845), + [anon_sym_STAR] = ACTIONS(1847), + [anon_sym_AMP] = ACTIONS(1847), + [anon_sym_COLON_COLON] = ACTIONS(1849), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1999), + [anon_sym_not] = ACTIONS(1845), + [anon_sym_compl] = ACTIONS(1845), + [anon_sym_DASH_DASH] = ACTIONS(1861), + [anon_sym_PLUS_PLUS] = ACTIONS(1861), + [anon_sym_sizeof] = ACTIONS(1863), + [anon_sym_offsetof] = ACTIONS(1865), + [anon_sym__Generic] = ACTIONS(1867), + [anon_sym_asm] = ACTIONS(1869), + [anon_sym___asm__] = ACTIONS(1869), + [sym_number_literal] = ACTIONS(1871), + [anon_sym_L_SQUOTE] = ACTIONS(1873), + [anon_sym_u_SQUOTE] = ACTIONS(1873), + [anon_sym_U_SQUOTE] = ACTIONS(1873), + [anon_sym_u8_SQUOTE] = ACTIONS(1873), + [anon_sym_SQUOTE] = ACTIONS(1873), + [anon_sym_L_DQUOTE] = ACTIONS(1875), + [anon_sym_u_DQUOTE] = ACTIONS(1875), + [anon_sym_U_DQUOTE] = ACTIONS(1875), + [anon_sym_u8_DQUOTE] = ACTIONS(1875), + [anon_sym_DQUOTE] = ACTIONS(1875), + [sym_true] = ACTIONS(1877), + [sym_false] = ACTIONS(1877), + [anon_sym_NULL] = ACTIONS(1879), + [anon_sym_nullptr] = ACTIONS(1879), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(1883), + [anon_sym_R_DQUOTE] = ACTIONS(1885), + [anon_sym_LR_DQUOTE] = ACTIONS(1885), + [anon_sym_uR_DQUOTE] = ACTIONS(1885), + [anon_sym_UR_DQUOTE] = ACTIONS(1885), + [anon_sym_u8R_DQUOTE] = ACTIONS(1885), + [anon_sym_co_await] = ACTIONS(1887), + [anon_sym_new] = ACTIONS(1889), + [anon_sym_requires] = ACTIONS(1891), + [sym_this] = ACTIONS(1877), }, [1735] = { - [sym__expression] = STATE(3821), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2954), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym__expression] = STATE(3508), + [sym__expression_not_binary] = STATE(3565), + [sym_conditional_expression] = STATE(3565), + [sym_assignment_expression] = STATE(3565), + [sym_pointer_expression] = STATE(3220), + [sym_unary_expression] = STATE(3565), + [sym_binary_expression] = STATE(3565), + [sym_update_expression] = STATE(3565), + [sym_cast_expression] = STATE(3565), + [sym_sizeof_expression] = STATE(3565), + [sym_offsetof_expression] = STATE(3565), + [sym_generic_expression] = STATE(3565), + [sym_subscript_expression] = STATE(3220), + [sym_call_expression] = STATE(3220), + [sym_gnu_asm_expression] = STATE(3565), + [sym_field_expression] = STATE(3220), + [sym_compound_literal_expression] = STATE(3565), + [sym_parenthesized_expression] = STATE(3220), + [sym_char_literal] = STATE(3429), + [sym_concatenated_string] = STATE(3429), + [sym_string_literal] = STATE(2248), + [sym_null] = STATE(3565), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6847), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3565), + [sym_raw_string_literal] = STATE(2248), + [sym_co_await_expression] = STATE(3565), + [sym_new_expression] = STATE(3565), + [sym_delete_expression] = STATE(3565), + [sym_requires_clause] = STATE(3565), + [sym_requires_expression] = STATE(3565), + [sym_lambda_expression] = STATE(3565), + [sym_lambda_capture_specifier] = STATE(5204), + [sym_fold_expression] = STATE(3565), + [sym_parameter_pack_expansion] = STATE(3565), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5232), + [sym_qualified_identifier] = STATE(3220), + [sym_qualified_type_identifier] = STATE(6847), + [sym_user_defined_literal] = STATE(3565), + [sym_identifier] = ACTIONS(2095), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4208), + [anon_sym_LPAREN2] = ACTIONS(1841), + [anon_sym_BANG] = ACTIONS(1843), + [anon_sym_TILDE] = ACTIONS(1843), + [anon_sym_DASH] = ACTIONS(1845), + [anon_sym_PLUS] = ACTIONS(1845), + [anon_sym_STAR] = ACTIONS(1847), + [anon_sym_AMP] = ACTIONS(1847), + [anon_sym_COLON_COLON] = ACTIONS(1849), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1999), + [anon_sym_not] = ACTIONS(1845), + [anon_sym_compl] = ACTIONS(1845), + [anon_sym_DASH_DASH] = ACTIONS(1861), + [anon_sym_PLUS_PLUS] = ACTIONS(1861), + [anon_sym_sizeof] = ACTIONS(1863), + [anon_sym_offsetof] = ACTIONS(1865), + [anon_sym__Generic] = ACTIONS(1867), + [anon_sym_asm] = ACTIONS(1869), + [anon_sym___asm__] = ACTIONS(1869), + [sym_number_literal] = ACTIONS(1871), + [anon_sym_L_SQUOTE] = ACTIONS(1873), + [anon_sym_u_SQUOTE] = ACTIONS(1873), + [anon_sym_U_SQUOTE] = ACTIONS(1873), + [anon_sym_u8_SQUOTE] = ACTIONS(1873), + [anon_sym_SQUOTE] = ACTIONS(1873), + [anon_sym_L_DQUOTE] = ACTIONS(1875), + [anon_sym_u_DQUOTE] = ACTIONS(1875), + [anon_sym_U_DQUOTE] = ACTIONS(1875), + [anon_sym_u8_DQUOTE] = ACTIONS(1875), + [anon_sym_DQUOTE] = ACTIONS(1875), + [sym_true] = ACTIONS(1877), + [sym_false] = ACTIONS(1877), + [anon_sym_NULL] = ACTIONS(1879), + [anon_sym_nullptr] = ACTIONS(1879), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(1883), + [anon_sym_R_DQUOTE] = ACTIONS(1885), + [anon_sym_LR_DQUOTE] = ACTIONS(1885), + [anon_sym_uR_DQUOTE] = ACTIONS(1885), + [anon_sym_UR_DQUOTE] = ACTIONS(1885), + [anon_sym_u8R_DQUOTE] = ACTIONS(1885), + [anon_sym_co_await] = ACTIONS(1887), + [anon_sym_new] = ACTIONS(1889), + [anon_sym_requires] = ACTIONS(1891), + [sym_this] = ACTIONS(1877), + }, + [1736] = { + [sym__expression] = STATE(4446), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), - }, - [1736] = { - [sym__expression] = STATE(3516), - [sym_conditional_expression] = STATE(3855), - [sym_assignment_expression] = STATE(3855), - [sym_pointer_expression] = STATE(2954), - [sym_unary_expression] = STATE(3855), - [sym_binary_expression] = STATE(3855), - [sym_update_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_subscript_expression] = STATE(2954), - [sym_call_expression] = STATE(2954), - [sym_field_expression] = STATE(2954), - [sym_compound_literal_expression] = STATE(3855), - [sym_parenthesized_expression] = STATE(2954), - [sym_char_literal] = STATE(3557), - [sym_concatenated_string] = STATE(3557), - [sym_string_literal] = STATE(2955), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5844), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3855), - [sym_raw_string_literal] = STATE(2955), - [sym_co_await_expression] = STATE(3855), - [sym_new_expression] = STATE(3855), - [sym_delete_expression] = STATE(3855), - [sym_requires_clause] = STATE(3855), - [sym_requires_expression] = STATE(3855), - [sym_lambda_expression] = STATE(3855), - [sym_lambda_capture_specifier] = STATE(4501), - [sym_fold_expression] = STATE(3855), - [sym_parameter_pack_expansion] = STATE(3855), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4570), - [sym_qualified_identifier] = STATE(2954), - [sym_qualified_type_identifier] = STATE(5844), - [sym_user_defined_literal] = STATE(3855), - [sym_identifier] = ACTIONS(3023), - [anon_sym_LPAREN2] = ACTIONS(2410), - [anon_sym_BANG] = ACTIONS(2412), - [anon_sym_TILDE] = ACTIONS(2412), - [anon_sym_DASH] = ACTIONS(2414), - [anon_sym_PLUS] = ACTIONS(2414), - [anon_sym_STAR] = ACTIONS(2416), - [anon_sym_AMP] = ACTIONS(2416), - [anon_sym_COLON_COLON] = ACTIONS(2418), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1619), - [anon_sym_not] = ACTIONS(2414), - [anon_sym_compl] = ACTIONS(2414), - [anon_sym_DASH_DASH] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(2432), - [anon_sym_sizeof] = ACTIONS(2434), - [sym_number_literal] = ACTIONS(2436), - [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_L_DQUOTE] = ACTIONS(2440), - [anon_sym_u_DQUOTE] = ACTIONS(2440), - [anon_sym_U_DQUOTE] = ACTIONS(2440), - [anon_sym_u8_DQUOTE] = ACTIONS(2440), - [anon_sym_DQUOTE] = ACTIONS(2440), - [sym_true] = ACTIONS(2442), - [sym_false] = ACTIONS(2442), - [sym_null] = ACTIONS(2442), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(2452), - [anon_sym_R_DQUOTE] = ACTIONS(2454), - [anon_sym_LR_DQUOTE] = ACTIONS(2454), - [anon_sym_uR_DQUOTE] = ACTIONS(2454), - [anon_sym_UR_DQUOTE] = ACTIONS(2454), - [anon_sym_u8R_DQUOTE] = ACTIONS(2454), - [anon_sym_co_await] = ACTIONS(2456), - [anon_sym_new] = ACTIONS(2458), - [anon_sym_requires] = ACTIONS(2460), - [sym_this] = ACTIONS(2442), - [sym_nullptr] = ACTIONS(2442), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4211), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1737] = { - [sym__expression] = STATE(3420), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2954), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym__expression] = STATE(4347), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3579), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3579), + [sym_call_expression] = STATE(3579), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3579), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3579), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3579), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3633), + [anon_sym_LPAREN2] = ACTIONS(3635), + [anon_sym_BANG] = ACTIONS(3639), + [anon_sym_TILDE] = ACTIONS(3639), + [anon_sym_DASH] = ACTIONS(3637), + [anon_sym_PLUS] = ACTIONS(3637), + [anon_sym_STAR] = ACTIONS(3641), + [anon_sym_AMP] = ACTIONS(3641), + [anon_sym_COLON_COLON] = ACTIONS(3643), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_COLON] = ACTIONS(4213), + [anon_sym_not] = ACTIONS(3637), + [anon_sym_compl] = ACTIONS(3637), + [anon_sym_DASH_DASH] = ACTIONS(3645), + [anon_sym_PLUS_PLUS] = ACTIONS(3645), + [anon_sym_sizeof] = ACTIONS(3647), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(3649), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(3651), + [anon_sym_new] = ACTIONS(3631), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), + }, + [1738] = { + [sym__expression] = STATE(4315), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4215), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, - [1738] = { - [sym__expression] = STATE(3730), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2954), - [anon_sym_LPAREN2] = ACTIONS(984), + [1739] = { + [sym__expression] = STATE(4052), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(4217), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(4219), + [sym_primitive_type] = ACTIONS(1951), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, - [1739] = { - [sym__expression] = STATE(3430), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2954), - [anon_sym_LPAREN2] = ACTIONS(984), + [1740] = { + [sym__expression] = STATE(4446), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), - }, - [1740] = { - [sym__expression] = STATE(3009), - [sym_conditional_expression] = STATE(2574), - [sym_assignment_expression] = STATE(2574), - [sym_pointer_expression] = STATE(2578), - [sym_unary_expression] = STATE(2574), - [sym_binary_expression] = STATE(2574), - [sym_update_expression] = STATE(2574), - [sym_cast_expression] = STATE(2574), - [sym_sizeof_expression] = STATE(2574), - [sym_subscript_expression] = STATE(2578), - [sym_call_expression] = STATE(2578), - [sym_field_expression] = STATE(2578), - [sym_compound_literal_expression] = STATE(2574), - [sym_parenthesized_expression] = STATE(2578), - [sym_char_literal] = STATE(2207), - [sym_concatenated_string] = STATE(2207), - [sym_string_literal] = STATE(1820), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5944), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(2574), - [sym_raw_string_literal] = STATE(1820), - [sym_co_await_expression] = STATE(2574), - [sym_new_expression] = STATE(2574), - [sym_delete_expression] = STATE(2574), - [sym_requires_clause] = STATE(2574), - [sym_requires_expression] = STATE(2574), - [sym_lambda_expression] = STATE(2574), - [sym_lambda_capture_specifier] = STATE(4479), - [sym_fold_expression] = STATE(2574), - [sym_parameter_pack_expansion] = STATE(2574), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2578), - [sym_qualified_type_identifier] = STATE(5944), - [sym_user_defined_literal] = STATE(2574), - [sym_identifier] = ACTIONS(1523), - [anon_sym_LPAREN2] = ACTIONS(1647), - [anon_sym_BANG] = ACTIONS(1651), - [anon_sym_TILDE] = ACTIONS(1651), - [anon_sym_DASH] = ACTIONS(1649), - [anon_sym_PLUS] = ACTIONS(1649), - [anon_sym_STAR] = ACTIONS(3081), - [anon_sym_AMP] = ACTIONS(3081), - [anon_sym_COLON_COLON] = ACTIONS(1655), - [anon_sym_LBRACK] = ACTIONS(3785), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(1649), - [anon_sym_compl] = ACTIONS(1649), - [anon_sym_DASH_DASH] = ACTIONS(1657), - [anon_sym_PLUS_PLUS] = ACTIONS(1657), - [anon_sym_sizeof] = ACTIONS(1659), - [sym_number_literal] = ACTIONS(1547), - [anon_sym_L_SQUOTE] = ACTIONS(1549), - [anon_sym_u_SQUOTE] = ACTIONS(1549), - [anon_sym_U_SQUOTE] = ACTIONS(1549), - [anon_sym_u8_SQUOTE] = ACTIONS(1549), - [anon_sym_SQUOTE] = ACTIONS(1549), - [anon_sym_L_DQUOTE] = ACTIONS(1551), - [anon_sym_u_DQUOTE] = ACTIONS(1551), - [anon_sym_U_DQUOTE] = ACTIONS(1551), - [anon_sym_u8_DQUOTE] = ACTIONS(1551), - [anon_sym_DQUOTE] = ACTIONS(1551), - [sym_true] = ACTIONS(1553), - [sym_false] = ACTIONS(1553), - [sym_null] = ACTIONS(1553), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1661), - [anon_sym_R_DQUOTE] = ACTIONS(1559), - [anon_sym_LR_DQUOTE] = ACTIONS(1559), - [anon_sym_uR_DQUOTE] = ACTIONS(1559), - [anon_sym_UR_DQUOTE] = ACTIONS(1559), - [anon_sym_u8R_DQUOTE] = ACTIONS(1559), - [anon_sym_co_await] = ACTIONS(1663), - [anon_sym_new] = ACTIONS(1563), - [anon_sym_requires] = ACTIONS(1565), - [sym_this] = ACTIONS(1553), - [sym_nullptr] = ACTIONS(1553), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4221), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1741] = { - [sym__expression] = STATE(2634), - [sym_conditional_expression] = STATE(2786), - [sym_assignment_expression] = STATE(2786), - [sym_pointer_expression] = STATE(2784), - [sym_unary_expression] = STATE(2786), - [sym_binary_expression] = STATE(2786), - [sym_update_expression] = STATE(2786), - [sym_cast_expression] = STATE(2786), - [sym_sizeof_expression] = STATE(2786), - [sym_subscript_expression] = STATE(2784), - [sym_call_expression] = STATE(2784), - [sym_field_expression] = STATE(2784), - [sym_compound_literal_expression] = STATE(2786), - [sym_parenthesized_expression] = STATE(2784), - [sym_char_literal] = STATE(2651), - [sym_concatenated_string] = STATE(2651), - [sym_string_literal] = STATE(1840), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5891), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(2786), - [sym_raw_string_literal] = STATE(1840), - [sym_co_await_expression] = STATE(2786), - [sym_new_expression] = STATE(2786), - [sym_delete_expression] = STATE(2786), - [sym_requires_clause] = STATE(2786), - [sym_requires_expression] = STATE(2786), - [sym_lambda_expression] = STATE(2786), - [sym_lambda_capture_specifier] = STATE(4484), - [sym_fold_expression] = STATE(2786), - [sym_parameter_pack_expansion] = STATE(2786), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4584), - [sym_qualified_identifier] = STATE(2784), - [sym_qualified_type_identifier] = STATE(5891), - [sym_user_defined_literal] = STATE(2786), - [sym_identifier] = ACTIONS(1567), - [anon_sym_LPAREN2] = ACTIONS(1569), - [anon_sym_BANG] = ACTIONS(1573), - [anon_sym_TILDE] = ACTIONS(1573), - [anon_sym_DASH] = ACTIONS(1571), - [anon_sym_PLUS] = ACTIONS(1571), - [anon_sym_STAR] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(1445), - [anon_sym_COLON_COLON] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1581), - [anon_sym_not] = ACTIONS(1571), - [anon_sym_compl] = ACTIONS(1571), - [anon_sym_DASH_DASH] = ACTIONS(1583), - [anon_sym_PLUS_PLUS] = ACTIONS(1583), - [anon_sym_sizeof] = ACTIONS(1585), - [sym_number_literal] = ACTIONS(1587), - [anon_sym_L_SQUOTE] = ACTIONS(1589), - [anon_sym_u_SQUOTE] = ACTIONS(1589), - [anon_sym_U_SQUOTE] = ACTIONS(1589), - [anon_sym_u8_SQUOTE] = ACTIONS(1589), - [anon_sym_SQUOTE] = ACTIONS(1589), - [anon_sym_L_DQUOTE] = ACTIONS(1591), - [anon_sym_u_DQUOTE] = ACTIONS(1591), - [anon_sym_U_DQUOTE] = ACTIONS(1591), - [anon_sym_u8_DQUOTE] = ACTIONS(1591), - [anon_sym_DQUOTE] = ACTIONS(1591), - [sym_true] = ACTIONS(1593), - [sym_false] = ACTIONS(1593), - [sym_null] = ACTIONS(1593), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1595), - [anon_sym_R_DQUOTE] = ACTIONS(1597), - [anon_sym_LR_DQUOTE] = ACTIONS(1597), - [anon_sym_uR_DQUOTE] = ACTIONS(1597), - [anon_sym_UR_DQUOTE] = ACTIONS(1597), - [anon_sym_u8R_DQUOTE] = ACTIONS(1597), - [anon_sym_co_await] = ACTIONS(1599), - [anon_sym_new] = ACTIONS(1601), - [anon_sym_requires] = ACTIONS(1603), - [sym_this] = ACTIONS(1593), - [sym_nullptr] = ACTIONS(1593), + [sym__expression] = STATE(4367), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4223), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1742] = { - [sym__expression] = STATE(3751), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(3036), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(3036), - [sym_call_expression] = STATE(3036), - [sym_field_expression] = STATE(3036), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(3036), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(3036), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(3073), - [anon_sym_LPAREN2] = ACTIONS(3075), - [anon_sym_BANG] = ACTIONS(3079), - [anon_sym_TILDE] = ACTIONS(3079), - [anon_sym_DASH] = ACTIONS(3077), - [anon_sym_PLUS] = ACTIONS(3077), - [anon_sym_STAR] = ACTIONS(3081), - [anon_sym_AMP] = ACTIONS(3081), - [anon_sym_COLON_COLON] = ACTIONS(3083), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(3077), - [anon_sym_compl] = ACTIONS(3077), - [anon_sym_DASH_DASH] = ACTIONS(3085), - [anon_sym_PLUS_PLUS] = ACTIONS(3085), - [anon_sym_sizeof] = ACTIONS(3087), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(3089), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(3091), - [anon_sym_new] = ACTIONS(3065), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [sym__expression] = STATE(3039), + [sym__expression_not_binary] = STATE(3021), + [sym_conditional_expression] = STATE(3021), + [sym_assignment_expression] = STATE(3021), + [sym_pointer_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_cast_expression] = STATE(3021), + [sym_sizeof_expression] = STATE(3021), + [sym_offsetof_expression] = STATE(3021), + [sym_generic_expression] = STATE(3021), + [sym_subscript_expression] = STATE(3021), + [sym_call_expression] = STATE(3021), + [sym_gnu_asm_expression] = STATE(3021), + [sym_field_expression] = STATE(3021), + [sym_compound_literal_expression] = STATE(3021), + [sym_parenthesized_expression] = STATE(3021), + [sym_char_literal] = STATE(2901), + [sym_concatenated_string] = STATE(2901), + [sym_string_literal] = STATE(2173), + [sym_null] = STATE(3021), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6616), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3021), + [sym_raw_string_literal] = STATE(2173), + [sym_co_await_expression] = STATE(3021), + [sym_new_expression] = STATE(3021), + [sym_delete_expression] = STATE(3021), + [sym_requires_clause] = STATE(3021), + [sym_requires_expression] = STATE(3021), + [sym_lambda_expression] = STATE(3021), + [sym_lambda_capture_specifier] = STATE(5188), + [sym_fold_expression] = STATE(3021), + [sym_parameter_pack_expansion] = STATE(3021), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3021), + [sym_qualified_type_identifier] = STATE(6616), + [sym_user_defined_literal] = STATE(3021), + [sym_identifier] = ACTIONS(1933), + [anon_sym_LPAREN2] = ACTIONS(1937), + [anon_sym_BANG] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(1941), + [anon_sym_DASH] = ACTIONS(1939), + [anon_sym_PLUS] = ACTIONS(1939), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(1945), + [anon_sym_LBRACK] = ACTIONS(1949), + [anon_sym_RBRACK] = ACTIONS(4225), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(1939), + [anon_sym_compl] = ACTIONS(1939), + [anon_sym_DASH_DASH] = ACTIONS(1953), + [anon_sym_PLUS_PLUS] = ACTIONS(1953), + [anon_sym_sizeof] = ACTIONS(1955), + [anon_sym_offsetof] = ACTIONS(1957), + [anon_sym__Generic] = ACTIONS(1959), + [anon_sym_asm] = ACTIONS(1961), + [anon_sym___asm__] = ACTIONS(1961), + [sym_number_literal] = ACTIONS(1963), + [anon_sym_L_SQUOTE] = ACTIONS(1965), + [anon_sym_u_SQUOTE] = ACTIONS(1965), + [anon_sym_U_SQUOTE] = ACTIONS(1965), + [anon_sym_u8_SQUOTE] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_L_DQUOTE] = ACTIONS(1967), + [anon_sym_u_DQUOTE] = ACTIONS(1967), + [anon_sym_U_DQUOTE] = ACTIONS(1967), + [anon_sym_u8_DQUOTE] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(1967), + [sym_true] = ACTIONS(1969), + [sym_false] = ACTIONS(1969), + [anon_sym_NULL] = ACTIONS(1971), + [anon_sym_nullptr] = ACTIONS(1971), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(1975), + [anon_sym_R_DQUOTE] = ACTIONS(1977), + [anon_sym_LR_DQUOTE] = ACTIONS(1977), + [anon_sym_uR_DQUOTE] = ACTIONS(1977), + [anon_sym_UR_DQUOTE] = ACTIONS(1977), + [anon_sym_u8R_DQUOTE] = ACTIONS(1977), + [anon_sym_co_await] = ACTIONS(1979), + [anon_sym_new] = ACTIONS(1981), + [anon_sym_requires] = ACTIONS(1983), + [sym_this] = ACTIONS(1969), }, [1743] = { - [sym__expression] = STATE(2642), - [sym_conditional_expression] = STATE(2786), - [sym_assignment_expression] = STATE(2786), - [sym_pointer_expression] = STATE(2784), - [sym_unary_expression] = STATE(2786), - [sym_binary_expression] = STATE(2786), - [sym_update_expression] = STATE(2786), - [sym_cast_expression] = STATE(2786), - [sym_sizeof_expression] = STATE(2786), - [sym_subscript_expression] = STATE(2784), - [sym_call_expression] = STATE(2784), - [sym_field_expression] = STATE(2784), - [sym_compound_literal_expression] = STATE(2786), - [sym_parenthesized_expression] = STATE(2784), - [sym_char_literal] = STATE(2651), - [sym_concatenated_string] = STATE(2651), - [sym_string_literal] = STATE(1840), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5891), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(2786), - [sym_raw_string_literal] = STATE(1840), - [sym_co_await_expression] = STATE(2786), - [sym_new_expression] = STATE(2786), - [sym_delete_expression] = STATE(2786), - [sym_requires_clause] = STATE(2786), - [sym_requires_expression] = STATE(2786), - [sym_lambda_expression] = STATE(2786), - [sym_lambda_capture_specifier] = STATE(4484), - [sym_fold_expression] = STATE(2786), - [sym_parameter_pack_expansion] = STATE(2786), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4584), - [sym_qualified_identifier] = STATE(2784), - [sym_qualified_type_identifier] = STATE(5891), - [sym_user_defined_literal] = STATE(2786), - [sym_identifier] = ACTIONS(3787), - [anon_sym_LPAREN2] = ACTIONS(1569), - [anon_sym_BANG] = ACTIONS(1573), - [anon_sym_TILDE] = ACTIONS(1573), - [anon_sym_DASH] = ACTIONS(1571), - [anon_sym_PLUS] = ACTIONS(1571), - [anon_sym_STAR] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(1445), - [anon_sym_COLON_COLON] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1581), - [anon_sym_not] = ACTIONS(1571), - [anon_sym_compl] = ACTIONS(1571), - [anon_sym_DASH_DASH] = ACTIONS(1583), - [anon_sym_PLUS_PLUS] = ACTIONS(1583), - [anon_sym_sizeof] = ACTIONS(1585), - [sym_number_literal] = ACTIONS(1587), - [anon_sym_L_SQUOTE] = ACTIONS(1589), - [anon_sym_u_SQUOTE] = ACTIONS(1589), - [anon_sym_U_SQUOTE] = ACTIONS(1589), - [anon_sym_u8_SQUOTE] = ACTIONS(1589), - [anon_sym_SQUOTE] = ACTIONS(1589), - [anon_sym_L_DQUOTE] = ACTIONS(1591), - [anon_sym_u_DQUOTE] = ACTIONS(1591), - [anon_sym_U_DQUOTE] = ACTIONS(1591), - [anon_sym_u8_DQUOTE] = ACTIONS(1591), - [anon_sym_DQUOTE] = ACTIONS(1591), - [sym_true] = ACTIONS(1593), - [sym_false] = ACTIONS(1593), - [sym_null] = ACTIONS(1593), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1595), - [anon_sym_R_DQUOTE] = ACTIONS(1597), - [anon_sym_LR_DQUOTE] = ACTIONS(1597), - [anon_sym_uR_DQUOTE] = ACTIONS(1597), - [anon_sym_UR_DQUOTE] = ACTIONS(1597), - [anon_sym_u8R_DQUOTE] = ACTIONS(1597), - [anon_sym_co_await] = ACTIONS(1599), - [anon_sym_new] = ACTIONS(1601), - [anon_sym_requires] = ACTIONS(1603), - [sym_this] = ACTIONS(1593), - [sym_nullptr] = ACTIONS(1593), - }, - [1744] = { - [sym__expression] = STATE(3408), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2954), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym__expression] = STATE(4320), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4227), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), + }, + [1744] = { + [sym__expression] = STATE(4134), + [sym__expression_not_binary] = STATE(4369), + [sym_conditional_expression] = STATE(4369), + [sym_assignment_expression] = STATE(4369), + [sym_pointer_expression] = STATE(3541), + [sym_unary_expression] = STATE(4369), + [sym_binary_expression] = STATE(4369), + [sym_update_expression] = STATE(4369), + [sym_cast_expression] = STATE(4369), + [sym_sizeof_expression] = STATE(4369), + [sym_offsetof_expression] = STATE(4369), + [sym_generic_expression] = STATE(4369), + [sym_subscript_expression] = STATE(3541), + [sym_call_expression] = STATE(3541), + [sym_gnu_asm_expression] = STATE(4369), + [sym_field_expression] = STATE(3541), + [sym_compound_literal_expression] = STATE(4369), + [sym_parenthesized_expression] = STATE(3541), + [sym_char_literal] = STATE(4131), + [sym_concatenated_string] = STATE(4131), + [sym_string_literal] = STATE(3542), + [sym_null] = STATE(4369), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6872), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(4369), + [sym_raw_string_literal] = STATE(3542), + [sym_co_await_expression] = STATE(4369), + [sym_new_expression] = STATE(4369), + [sym_delete_expression] = STATE(4369), + [sym_requires_clause] = STATE(4369), + [sym_requires_expression] = STATE(4369), + [sym_lambda_expression] = STATE(4369), + [sym_lambda_capture_specifier] = STATE(5208), + [sym_fold_expression] = STATE(4369), + [sym_parameter_pack_expansion] = STATE(4369), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5289), + [sym_qualified_identifier] = STATE(3541), + [sym_qualified_type_identifier] = STATE(6872), + [sym_user_defined_literal] = STATE(4369), + [sym_identifier] = ACTIONS(3599), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4229), + [anon_sym_LPAREN2] = ACTIONS(4231), + [anon_sym_BANG] = ACTIONS(2620), + [anon_sym_TILDE] = ACTIONS(2620), + [anon_sym_DASH] = ACTIONS(2622), + [anon_sym_PLUS] = ACTIONS(2622), + [anon_sym_STAR] = ACTIONS(2624), + [anon_sym_AMP] = ACTIONS(2624), + [anon_sym_COLON_COLON] = ACTIONS(2626), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(2045), + [anon_sym_not] = ACTIONS(2622), + [anon_sym_compl] = ACTIONS(2622), + [anon_sym_DASH_DASH] = ACTIONS(2640), + [anon_sym_PLUS_PLUS] = ACTIONS(2640), + [anon_sym_sizeof] = ACTIONS(2642), + [anon_sym_offsetof] = ACTIONS(2644), + [anon_sym__Generic] = ACTIONS(2646), + [anon_sym_asm] = ACTIONS(2648), + [anon_sym___asm__] = ACTIONS(2648), + [sym_number_literal] = ACTIONS(2650), + [anon_sym_L_SQUOTE] = ACTIONS(2652), + [anon_sym_u_SQUOTE] = ACTIONS(2652), + [anon_sym_U_SQUOTE] = ACTIONS(2652), + [anon_sym_u8_SQUOTE] = ACTIONS(2652), + [anon_sym_SQUOTE] = ACTIONS(2652), + [anon_sym_L_DQUOTE] = ACTIONS(2654), + [anon_sym_u_DQUOTE] = ACTIONS(2654), + [anon_sym_U_DQUOTE] = ACTIONS(2654), + [anon_sym_u8_DQUOTE] = ACTIONS(2654), + [anon_sym_DQUOTE] = ACTIONS(2654), + [sym_true] = ACTIONS(2656), + [sym_false] = ACTIONS(2656), + [anon_sym_NULL] = ACTIONS(2658), + [anon_sym_nullptr] = ACTIONS(2658), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(2668), + [anon_sym_R_DQUOTE] = ACTIONS(2670), + [anon_sym_LR_DQUOTE] = ACTIONS(2670), + [anon_sym_uR_DQUOTE] = ACTIONS(2670), + [anon_sym_UR_DQUOTE] = ACTIONS(2670), + [anon_sym_u8R_DQUOTE] = ACTIONS(2670), + [anon_sym_co_await] = ACTIONS(2672), + [anon_sym_new] = ACTIONS(2674), + [anon_sym_requires] = ACTIONS(2676), + [sym_this] = ACTIONS(2656), }, [1745] = { - [sym__expression] = STATE(3736), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2954), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym__expression] = STATE(4309), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(4233), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1746] = { - [sym__expression] = STATE(3724), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(3036), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(3036), - [sym_call_expression] = STATE(3036), - [sym_field_expression] = STATE(3036), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(3036), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(3036), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(3073), - [anon_sym_LPAREN2] = ACTIONS(3075), - [anon_sym_BANG] = ACTIONS(3079), - [anon_sym_TILDE] = ACTIONS(3079), - [anon_sym_DASH] = ACTIONS(3077), - [anon_sym_PLUS] = ACTIONS(3077), - [anon_sym_STAR] = ACTIONS(3081), - [anon_sym_AMP] = ACTIONS(3081), - [anon_sym_COLON_COLON] = ACTIONS(3083), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(3077), - [anon_sym_compl] = ACTIONS(3077), - [anon_sym_DASH_DASH] = ACTIONS(3085), - [anon_sym_PLUS_PLUS] = ACTIONS(3085), - [anon_sym_sizeof] = ACTIONS(3087), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(3089), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(3091), - [anon_sym_new] = ACTIONS(3065), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [sym__expression] = STATE(4306), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(4235), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1747] = { - [sym__expression] = STATE(2642), - [sym_conditional_expression] = STATE(2786), - [sym_assignment_expression] = STATE(2786), - [sym_pointer_expression] = STATE(2784), - [sym_unary_expression] = STATE(2786), - [sym_binary_expression] = STATE(2786), - [sym_update_expression] = STATE(2786), - [sym_cast_expression] = STATE(2786), - [sym_sizeof_expression] = STATE(2786), - [sym_subscript_expression] = STATE(2784), - [sym_call_expression] = STATE(2784), - [sym_field_expression] = STATE(2784), - [sym_compound_literal_expression] = STATE(2786), - [sym_parenthesized_expression] = STATE(2784), - [sym_char_literal] = STATE(2651), - [sym_concatenated_string] = STATE(2651), - [sym_string_literal] = STATE(1840), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5891), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(2786), - [sym_raw_string_literal] = STATE(1840), - [sym_co_await_expression] = STATE(2786), - [sym_new_expression] = STATE(2786), - [sym_delete_expression] = STATE(2786), - [sym_requires_clause] = STATE(2786), - [sym_requires_expression] = STATE(2786), - [sym_lambda_expression] = STATE(2786), - [sym_lambda_capture_specifier] = STATE(4484), - [sym_fold_expression] = STATE(2786), - [sym_parameter_pack_expansion] = STATE(2786), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4584), - [sym_qualified_identifier] = STATE(2784), - [sym_qualified_type_identifier] = STATE(5891), - [sym_user_defined_literal] = STATE(2786), - [sym_identifier] = ACTIONS(1567), - [anon_sym_LPAREN2] = ACTIONS(1569), - [anon_sym_BANG] = ACTIONS(1573), - [anon_sym_TILDE] = ACTIONS(1573), - [anon_sym_DASH] = ACTIONS(1571), - [anon_sym_PLUS] = ACTIONS(1571), - [anon_sym_STAR] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(1445), - [anon_sym_COLON_COLON] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1581), - [anon_sym_not] = ACTIONS(1571), - [anon_sym_compl] = ACTIONS(1571), - [anon_sym_DASH_DASH] = ACTIONS(1583), - [anon_sym_PLUS_PLUS] = ACTIONS(1583), - [anon_sym_sizeof] = ACTIONS(1585), - [sym_number_literal] = ACTIONS(1587), - [anon_sym_L_SQUOTE] = ACTIONS(1589), - [anon_sym_u_SQUOTE] = ACTIONS(1589), - [anon_sym_U_SQUOTE] = ACTIONS(1589), - [anon_sym_u8_SQUOTE] = ACTIONS(1589), - [anon_sym_SQUOTE] = ACTIONS(1589), - [anon_sym_L_DQUOTE] = ACTIONS(1591), - [anon_sym_u_DQUOTE] = ACTIONS(1591), - [anon_sym_U_DQUOTE] = ACTIONS(1591), - [anon_sym_u8_DQUOTE] = ACTIONS(1591), - [anon_sym_DQUOTE] = ACTIONS(1591), - [sym_true] = ACTIONS(1593), - [sym_false] = ACTIONS(1593), - [sym_null] = ACTIONS(1593), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1595), - [anon_sym_R_DQUOTE] = ACTIONS(1597), - [anon_sym_LR_DQUOTE] = ACTIONS(1597), - [anon_sym_uR_DQUOTE] = ACTIONS(1597), - [anon_sym_UR_DQUOTE] = ACTIONS(1597), - [anon_sym_u8R_DQUOTE] = ACTIONS(1597), - [anon_sym_co_await] = ACTIONS(1599), - [anon_sym_new] = ACTIONS(1601), - [anon_sym_requires] = ACTIONS(1603), - [sym_this] = ACTIONS(1593), - [sym_nullptr] = ACTIONS(1593), + [sym__expression] = STATE(4362), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4237), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1748] = { - [sym__expression] = STATE(3011), - [sym_conditional_expression] = STATE(2574), - [sym_assignment_expression] = STATE(2574), - [sym_pointer_expression] = STATE(2578), - [sym_unary_expression] = STATE(2574), - [sym_binary_expression] = STATE(2574), - [sym_update_expression] = STATE(2574), - [sym_cast_expression] = STATE(2574), - [sym_sizeof_expression] = STATE(2574), - [sym_subscript_expression] = STATE(2578), - [sym_call_expression] = STATE(2578), - [sym_field_expression] = STATE(2578), - [sym_compound_literal_expression] = STATE(2574), - [sym_parenthesized_expression] = STATE(2578), - [sym_char_literal] = STATE(2207), - [sym_concatenated_string] = STATE(2207), - [sym_string_literal] = STATE(1820), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5944), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(2574), - [sym_raw_string_literal] = STATE(1820), - [sym_co_await_expression] = STATE(2574), - [sym_new_expression] = STATE(2574), - [sym_delete_expression] = STATE(2574), - [sym_requires_clause] = STATE(2574), - [sym_requires_expression] = STATE(2574), - [sym_lambda_expression] = STATE(2574), - [sym_lambda_capture_specifier] = STATE(4479), - [sym_fold_expression] = STATE(2574), - [sym_parameter_pack_expansion] = STATE(2574), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2578), - [sym_qualified_type_identifier] = STATE(5944), - [sym_user_defined_literal] = STATE(2574), - [sym_identifier] = ACTIONS(1523), - [anon_sym_LPAREN2] = ACTIONS(1647), - [anon_sym_BANG] = ACTIONS(1651), - [anon_sym_TILDE] = ACTIONS(1651), - [anon_sym_DASH] = ACTIONS(1649), - [anon_sym_PLUS] = ACTIONS(1649), - [anon_sym_STAR] = ACTIONS(3081), - [anon_sym_AMP] = ACTIONS(3081), - [anon_sym_COLON_COLON] = ACTIONS(1655), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(1649), - [anon_sym_compl] = ACTIONS(1649), - [anon_sym_DASH_DASH] = ACTIONS(1657), - [anon_sym_PLUS_PLUS] = ACTIONS(1657), - [anon_sym_sizeof] = ACTIONS(1659), - [sym_number_literal] = ACTIONS(1547), - [anon_sym_L_SQUOTE] = ACTIONS(1549), - [anon_sym_u_SQUOTE] = ACTIONS(1549), - [anon_sym_U_SQUOTE] = ACTIONS(1549), - [anon_sym_u8_SQUOTE] = ACTIONS(1549), - [anon_sym_SQUOTE] = ACTIONS(1549), - [anon_sym_L_DQUOTE] = ACTIONS(1551), - [anon_sym_u_DQUOTE] = ACTIONS(1551), - [anon_sym_U_DQUOTE] = ACTIONS(1551), - [anon_sym_u8_DQUOTE] = ACTIONS(1551), - [anon_sym_DQUOTE] = ACTIONS(1551), - [sym_true] = ACTIONS(1553), - [sym_false] = ACTIONS(1553), - [sym_null] = ACTIONS(1553), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1661), - [anon_sym_R_DQUOTE] = ACTIONS(1559), - [anon_sym_LR_DQUOTE] = ACTIONS(1559), - [anon_sym_uR_DQUOTE] = ACTIONS(1559), - [anon_sym_UR_DQUOTE] = ACTIONS(1559), - [anon_sym_u8R_DQUOTE] = ACTIONS(1559), - [anon_sym_co_await] = ACTIONS(1663), - [anon_sym_new] = ACTIONS(1563), - [anon_sym_requires] = ACTIONS(1565), - [sym_this] = ACTIONS(1553), - [sym_nullptr] = ACTIONS(1553), + [sym__expression] = STATE(3039), + [sym__expression_not_binary] = STATE(3021), + [sym_conditional_expression] = STATE(3021), + [sym_assignment_expression] = STATE(3021), + [sym_pointer_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_cast_expression] = STATE(3021), + [sym_sizeof_expression] = STATE(3021), + [sym_offsetof_expression] = STATE(3021), + [sym_generic_expression] = STATE(3021), + [sym_subscript_expression] = STATE(3021), + [sym_call_expression] = STATE(3021), + [sym_gnu_asm_expression] = STATE(3021), + [sym_field_expression] = STATE(3021), + [sym_compound_literal_expression] = STATE(3021), + [sym_parenthesized_expression] = STATE(3021), + [sym_char_literal] = STATE(2901), + [sym_concatenated_string] = STATE(2901), + [sym_string_literal] = STATE(2173), + [sym_null] = STATE(3021), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6616), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3021), + [sym_raw_string_literal] = STATE(2173), + [sym_co_await_expression] = STATE(3021), + [sym_new_expression] = STATE(3021), + [sym_delete_expression] = STATE(3021), + [sym_requires_clause] = STATE(3021), + [sym_requires_expression] = STATE(3021), + [sym_lambda_expression] = STATE(3021), + [sym_lambda_capture_specifier] = STATE(5188), + [sym_fold_expression] = STATE(3021), + [sym_parameter_pack_expansion] = STATE(3021), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3021), + [sym_qualified_type_identifier] = STATE(6616), + [sym_user_defined_literal] = STATE(3021), + [sym_identifier] = ACTIONS(1933), + [anon_sym_LPAREN2] = ACTIONS(1937), + [anon_sym_BANG] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(1941), + [anon_sym_DASH] = ACTIONS(1939), + [anon_sym_PLUS] = ACTIONS(1939), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(1945), + [anon_sym_LBRACK] = ACTIONS(1949), + [anon_sym_RBRACK] = ACTIONS(4239), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(1939), + [anon_sym_compl] = ACTIONS(1939), + [anon_sym_DASH_DASH] = ACTIONS(1953), + [anon_sym_PLUS_PLUS] = ACTIONS(1953), + [anon_sym_sizeof] = ACTIONS(1955), + [anon_sym_offsetof] = ACTIONS(1957), + [anon_sym__Generic] = ACTIONS(1959), + [anon_sym_asm] = ACTIONS(1961), + [anon_sym___asm__] = ACTIONS(1961), + [sym_number_literal] = ACTIONS(1963), + [anon_sym_L_SQUOTE] = ACTIONS(1965), + [anon_sym_u_SQUOTE] = ACTIONS(1965), + [anon_sym_U_SQUOTE] = ACTIONS(1965), + [anon_sym_u8_SQUOTE] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_L_DQUOTE] = ACTIONS(1967), + [anon_sym_u_DQUOTE] = ACTIONS(1967), + [anon_sym_U_DQUOTE] = ACTIONS(1967), + [anon_sym_u8_DQUOTE] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(1967), + [sym_true] = ACTIONS(1969), + [sym_false] = ACTIONS(1969), + [anon_sym_NULL] = ACTIONS(1971), + [anon_sym_nullptr] = ACTIONS(1971), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(1975), + [anon_sym_R_DQUOTE] = ACTIONS(1977), + [anon_sym_LR_DQUOTE] = ACTIONS(1977), + [anon_sym_uR_DQUOTE] = ACTIONS(1977), + [anon_sym_UR_DQUOTE] = ACTIONS(1977), + [anon_sym_u8R_DQUOTE] = ACTIONS(1977), + [anon_sym_co_await] = ACTIONS(1979), + [anon_sym_new] = ACTIONS(1981), + [anon_sym_requires] = ACTIONS(1983), + [sym_this] = ACTIONS(1969), }, [1749] = { - [sym__expression] = STATE(3406), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2954), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym__expression] = STATE(4394), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4241), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1750] = { - [sym__expression] = STATE(3691), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2954), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym__expression] = STATE(3039), + [sym__expression_not_binary] = STATE(3021), + [sym_conditional_expression] = STATE(3021), + [sym_assignment_expression] = STATE(3021), + [sym_pointer_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_cast_expression] = STATE(3021), + [sym_sizeof_expression] = STATE(3021), + [sym_offsetof_expression] = STATE(3021), + [sym_generic_expression] = STATE(3021), + [sym_subscript_expression] = STATE(3021), + [sym_call_expression] = STATE(3021), + [sym_gnu_asm_expression] = STATE(3021), + [sym_field_expression] = STATE(3021), + [sym_compound_literal_expression] = STATE(3021), + [sym_parenthesized_expression] = STATE(3021), + [sym_char_literal] = STATE(2901), + [sym_concatenated_string] = STATE(2901), + [sym_string_literal] = STATE(2173), + [sym_null] = STATE(3021), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6616), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3021), + [sym_raw_string_literal] = STATE(2173), + [sym_co_await_expression] = STATE(3021), + [sym_new_expression] = STATE(3021), + [sym_delete_expression] = STATE(3021), + [sym_requires_clause] = STATE(3021), + [sym_requires_expression] = STATE(3021), + [sym_lambda_expression] = STATE(3021), + [sym_lambda_capture_specifier] = STATE(5188), + [sym_fold_expression] = STATE(3021), + [sym_parameter_pack_expansion] = STATE(3021), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3021), + [sym_qualified_type_identifier] = STATE(6616), + [sym_user_defined_literal] = STATE(3021), + [sym_identifier] = ACTIONS(1933), + [anon_sym_LPAREN2] = ACTIONS(1937), + [anon_sym_BANG] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(1941), + [anon_sym_DASH] = ACTIONS(1939), + [anon_sym_PLUS] = ACTIONS(1939), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(1945), + [anon_sym_LBRACK] = ACTIONS(1949), + [anon_sym_RBRACK] = ACTIONS(4243), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(1939), + [anon_sym_compl] = ACTIONS(1939), + [anon_sym_DASH_DASH] = ACTIONS(1953), + [anon_sym_PLUS_PLUS] = ACTIONS(1953), + [anon_sym_sizeof] = ACTIONS(1955), + [anon_sym_offsetof] = ACTIONS(1957), + [anon_sym__Generic] = ACTIONS(1959), + [anon_sym_asm] = ACTIONS(1961), + [anon_sym___asm__] = ACTIONS(1961), + [sym_number_literal] = ACTIONS(1963), + [anon_sym_L_SQUOTE] = ACTIONS(1965), + [anon_sym_u_SQUOTE] = ACTIONS(1965), + [anon_sym_U_SQUOTE] = ACTIONS(1965), + [anon_sym_u8_SQUOTE] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_L_DQUOTE] = ACTIONS(1967), + [anon_sym_u_DQUOTE] = ACTIONS(1967), + [anon_sym_U_DQUOTE] = ACTIONS(1967), + [anon_sym_u8_DQUOTE] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(1967), + [sym_true] = ACTIONS(1969), + [sym_false] = ACTIONS(1969), + [anon_sym_NULL] = ACTIONS(1971), + [anon_sym_nullptr] = ACTIONS(1971), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(1975), + [anon_sym_R_DQUOTE] = ACTIONS(1977), + [anon_sym_LR_DQUOTE] = ACTIONS(1977), + [anon_sym_uR_DQUOTE] = ACTIONS(1977), + [anon_sym_UR_DQUOTE] = ACTIONS(1977), + [anon_sym_u8R_DQUOTE] = ACTIONS(1977), + [anon_sym_co_await] = ACTIONS(1979), + [anon_sym_new] = ACTIONS(1981), + [anon_sym_requires] = ACTIONS(1983), + [sym_this] = ACTIONS(1969), + }, + [1751] = { + [sym__expression] = STATE(4052), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(4245), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(4219), + [sym_primitive_type] = ACTIONS(1951), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), - }, - [1751] = { - [sym__expression] = STATE(3642), - [sym_conditional_expression] = STATE(3855), - [sym_assignment_expression] = STATE(3855), - [sym_pointer_expression] = STATE(2954), - [sym_unary_expression] = STATE(3855), - [sym_binary_expression] = STATE(3855), - [sym_update_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_subscript_expression] = STATE(2954), - [sym_call_expression] = STATE(2954), - [sym_field_expression] = STATE(2954), - [sym_compound_literal_expression] = STATE(3855), - [sym_parenthesized_expression] = STATE(2954), - [sym_char_literal] = STATE(3557), - [sym_concatenated_string] = STATE(3557), - [sym_string_literal] = STATE(2955), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5844), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3855), - [sym_raw_string_literal] = STATE(2955), - [sym_co_await_expression] = STATE(3855), - [sym_new_expression] = STATE(3855), - [sym_delete_expression] = STATE(3855), - [sym_requires_clause] = STATE(3855), - [sym_requires_expression] = STATE(3855), - [sym_lambda_expression] = STATE(3855), - [sym_lambda_capture_specifier] = STATE(4501), - [sym_fold_expression] = STATE(3855), - [sym_parameter_pack_expansion] = STATE(3855), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4570), - [sym_qualified_identifier] = STATE(2954), - [sym_qualified_type_identifier] = STATE(5844), - [sym_user_defined_literal] = STATE(3855), - [sym_identifier] = ACTIONS(3023), - [anon_sym_LPAREN2] = ACTIONS(2410), - [anon_sym_BANG] = ACTIONS(2412), - [anon_sym_TILDE] = ACTIONS(2412), - [anon_sym_DASH] = ACTIONS(2414), - [anon_sym_PLUS] = ACTIONS(2414), - [anon_sym_STAR] = ACTIONS(2416), - [anon_sym_AMP] = ACTIONS(2416), - [anon_sym_COLON_COLON] = ACTIONS(2418), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1619), - [anon_sym_not] = ACTIONS(2414), - [anon_sym_compl] = ACTIONS(2414), - [anon_sym_DASH_DASH] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(2432), - [anon_sym_sizeof] = ACTIONS(2434), - [sym_number_literal] = ACTIONS(2436), - [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_L_DQUOTE] = ACTIONS(2440), - [anon_sym_u_DQUOTE] = ACTIONS(2440), - [anon_sym_U_DQUOTE] = ACTIONS(2440), - [anon_sym_u8_DQUOTE] = ACTIONS(2440), - [anon_sym_DQUOTE] = ACTIONS(2440), - [sym_true] = ACTIONS(2442), - [sym_false] = ACTIONS(2442), - [sym_null] = ACTIONS(2442), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(2452), - [anon_sym_R_DQUOTE] = ACTIONS(2454), - [anon_sym_LR_DQUOTE] = ACTIONS(2454), - [anon_sym_uR_DQUOTE] = ACTIONS(2454), - [anon_sym_UR_DQUOTE] = ACTIONS(2454), - [anon_sym_u8R_DQUOTE] = ACTIONS(2454), - [anon_sym_co_await] = ACTIONS(2456), - [anon_sym_new] = ACTIONS(2458), - [anon_sym_requires] = ACTIONS(2460), - [sym_this] = ACTIONS(2442), - [sym_nullptr] = ACTIONS(2442), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1752] = { - [sym__expression] = STATE(3019), - [sym_conditional_expression] = STATE(3035), - [sym_assignment_expression] = STATE(3035), - [sym_pointer_expression] = STATE(2713), - [sym_unary_expression] = STATE(3035), - [sym_binary_expression] = STATE(3035), - [sym_update_expression] = STATE(3035), - [sym_cast_expression] = STATE(3035), - [sym_sizeof_expression] = STATE(3035), - [sym_subscript_expression] = STATE(2713), - [sym_call_expression] = STATE(2713), - [sym_field_expression] = STATE(2713), - [sym_compound_literal_expression] = STATE(3035), - [sym_parenthesized_expression] = STATE(2713), - [sym_char_literal] = STATE(3013), - [sym_concatenated_string] = STATE(3013), - [sym_string_literal] = STATE(1900), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5990), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3035), - [sym_raw_string_literal] = STATE(1900), - [sym_co_await_expression] = STATE(3035), - [sym_new_expression] = STATE(3035), - [sym_delete_expression] = STATE(3035), - [sym_requires_clause] = STATE(3035), - [sym_requires_expression] = STATE(3035), - [sym_lambda_expression] = STATE(3035), - [sym_lambda_capture_specifier] = STATE(4465), - [sym_fold_expression] = STATE(3035), - [sym_parameter_pack_expansion] = STATE(3035), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4584), - [sym_qualified_identifier] = STATE(2713), - [sym_qualified_type_identifier] = STATE(5990), - [sym_user_defined_literal] = STATE(3035), - [sym_identifier] = ACTIONS(1643), - [anon_sym_LPAREN2] = ACTIONS(1439), - [anon_sym_BANG] = ACTIONS(1441), - [anon_sym_TILDE] = ACTIONS(1441), - [anon_sym_DASH] = ACTIONS(1443), - [anon_sym_PLUS] = ACTIONS(1443), - [anon_sym_STAR] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(1445), - [anon_sym_COLON_COLON] = ACTIONS(1447), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1581), - [anon_sym_not] = ACTIONS(1443), - [anon_sym_compl] = ACTIONS(1443), - [anon_sym_DASH_DASH] = ACTIONS(1459), - [anon_sym_PLUS_PLUS] = ACTIONS(1459), - [anon_sym_sizeof] = ACTIONS(1461), - [sym_number_literal] = ACTIONS(1463), - [anon_sym_L_SQUOTE] = ACTIONS(1465), - [anon_sym_u_SQUOTE] = ACTIONS(1465), - [anon_sym_U_SQUOTE] = ACTIONS(1465), - [anon_sym_u8_SQUOTE] = ACTIONS(1465), - [anon_sym_SQUOTE] = ACTIONS(1465), - [anon_sym_L_DQUOTE] = ACTIONS(1467), - [anon_sym_u_DQUOTE] = ACTIONS(1467), - [anon_sym_U_DQUOTE] = ACTIONS(1467), - [anon_sym_u8_DQUOTE] = ACTIONS(1467), - [anon_sym_DQUOTE] = ACTIONS(1467), - [sym_true] = ACTIONS(1469), - [sym_false] = ACTIONS(1469), - [sym_null] = ACTIONS(1469), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1473), - [anon_sym_R_DQUOTE] = ACTIONS(1475), - [anon_sym_LR_DQUOTE] = ACTIONS(1475), - [anon_sym_uR_DQUOTE] = ACTIONS(1475), - [anon_sym_UR_DQUOTE] = ACTIONS(1475), - [anon_sym_u8R_DQUOTE] = ACTIONS(1475), - [anon_sym_co_await] = ACTIONS(1477), - [anon_sym_new] = ACTIONS(1479), - [anon_sym_requires] = ACTIONS(1481), - [sym_this] = ACTIONS(1469), - [sym_nullptr] = ACTIONS(1469), + [sym__expression] = STATE(4443), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(4247), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1753] = { - [sym__expression] = STATE(3641), - [sym_conditional_expression] = STATE(3855), - [sym_assignment_expression] = STATE(3855), - [sym_pointer_expression] = STATE(2954), - [sym_unary_expression] = STATE(3855), - [sym_binary_expression] = STATE(3855), - [sym_update_expression] = STATE(3855), - [sym_cast_expression] = STATE(3855), - [sym_sizeof_expression] = STATE(3855), - [sym_subscript_expression] = STATE(2954), - [sym_call_expression] = STATE(2954), - [sym_field_expression] = STATE(2954), - [sym_compound_literal_expression] = STATE(3855), - [sym_parenthesized_expression] = STATE(2954), - [sym_char_literal] = STATE(3557), - [sym_concatenated_string] = STATE(3557), - [sym_string_literal] = STATE(2955), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5844), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3855), - [sym_raw_string_literal] = STATE(2955), - [sym_co_await_expression] = STATE(3855), - [sym_new_expression] = STATE(3855), - [sym_delete_expression] = STATE(3855), - [sym_requires_clause] = STATE(3855), - [sym_requires_expression] = STATE(3855), - [sym_lambda_expression] = STATE(3855), - [sym_lambda_capture_specifier] = STATE(4501), - [sym_fold_expression] = STATE(3855), - [sym_parameter_pack_expansion] = STATE(3855), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4570), - [sym_qualified_identifier] = STATE(2954), - [sym_qualified_type_identifier] = STATE(5844), - [sym_user_defined_literal] = STATE(3855), - [sym_identifier] = ACTIONS(3023), - [anon_sym_LPAREN2] = ACTIONS(2410), - [anon_sym_BANG] = ACTIONS(2412), - [anon_sym_TILDE] = ACTIONS(2412), - [anon_sym_DASH] = ACTIONS(2414), - [anon_sym_PLUS] = ACTIONS(2414), - [anon_sym_STAR] = ACTIONS(2416), - [anon_sym_AMP] = ACTIONS(2416), - [anon_sym_COLON_COLON] = ACTIONS(2418), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1619), - [anon_sym_not] = ACTIONS(2414), - [anon_sym_compl] = ACTIONS(2414), - [anon_sym_DASH_DASH] = ACTIONS(2432), - [anon_sym_PLUS_PLUS] = ACTIONS(2432), - [anon_sym_sizeof] = ACTIONS(2434), - [sym_number_literal] = ACTIONS(2436), - [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_L_DQUOTE] = ACTIONS(2440), - [anon_sym_u_DQUOTE] = ACTIONS(2440), - [anon_sym_U_DQUOTE] = ACTIONS(2440), - [anon_sym_u8_DQUOTE] = ACTIONS(2440), - [anon_sym_DQUOTE] = ACTIONS(2440), - [sym_true] = ACTIONS(2442), - [sym_false] = ACTIONS(2442), - [sym_null] = ACTIONS(2442), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(2452), - [anon_sym_R_DQUOTE] = ACTIONS(2454), - [anon_sym_LR_DQUOTE] = ACTIONS(2454), - [anon_sym_uR_DQUOTE] = ACTIONS(2454), - [anon_sym_UR_DQUOTE] = ACTIONS(2454), - [anon_sym_u8R_DQUOTE] = ACTIONS(2454), - [anon_sym_co_await] = ACTIONS(2456), - [anon_sym_new] = ACTIONS(2458), - [anon_sym_requires] = ACTIONS(2460), - [sym_this] = ACTIONS(2442), - [sym_nullptr] = ACTIONS(2442), + [sym__expression] = STATE(4251), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3509), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3509), + [sym_call_expression] = STATE(3509), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3509), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3509), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3509), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3613), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4249), + [anon_sym_LPAREN2] = ACTIONS(4251), + [anon_sym_BANG] = ACTIONS(3619), + [anon_sym_TILDE] = ACTIONS(3619), + [anon_sym_DASH] = ACTIONS(3617), + [anon_sym_PLUS] = ACTIONS(3617), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(3621), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(3617), + [anon_sym_compl] = ACTIONS(3617), + [anon_sym_DASH_DASH] = ACTIONS(3623), + [anon_sym_PLUS_PLUS] = ACTIONS(3623), + [anon_sym_sizeof] = ACTIONS(3625), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(3627), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(3629), + [anon_sym_new] = ACTIONS(3631), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1754] = { - [sym__expression] = STATE(2583), - [sym_conditional_expression] = STATE(2574), - [sym_assignment_expression] = STATE(2574), - [sym_pointer_expression] = STATE(2578), - [sym_unary_expression] = STATE(2574), - [sym_binary_expression] = STATE(2574), - [sym_update_expression] = STATE(2574), - [sym_cast_expression] = STATE(2574), - [sym_sizeof_expression] = STATE(2574), - [sym_subscript_expression] = STATE(2578), - [sym_call_expression] = STATE(2578), - [sym_field_expression] = STATE(2578), - [sym_compound_literal_expression] = STATE(2574), - [sym_parenthesized_expression] = STATE(2578), - [sym_char_literal] = STATE(2207), - [sym_concatenated_string] = STATE(2207), - [sym_string_literal] = STATE(1820), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5944), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(2574), - [sym_raw_string_literal] = STATE(1820), - [sym_co_await_expression] = STATE(2574), - [sym_new_expression] = STATE(2574), - [sym_delete_expression] = STATE(2574), - [sym_requires_clause] = STATE(2574), - [sym_requires_expression] = STATE(2574), - [sym_lambda_expression] = STATE(2574), - [sym_lambda_capture_specifier] = STATE(4479), - [sym_fold_expression] = STATE(2574), - [sym_parameter_pack_expansion] = STATE(2574), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2578), - [sym_qualified_type_identifier] = STATE(5944), - [sym_user_defined_literal] = STATE(2574), - [sym_identifier] = ACTIONS(1523), - [anon_sym_LPAREN2] = ACTIONS(1527), - [anon_sym_BANG] = ACTIONS(1531), - [anon_sym_TILDE] = ACTIONS(1531), - [anon_sym_DASH] = ACTIONS(1529), - [anon_sym_PLUS] = ACTIONS(1529), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(1529), - [anon_sym_compl] = ACTIONS(1529), - [anon_sym_DASH_DASH] = ACTIONS(1543), - [anon_sym_PLUS_PLUS] = ACTIONS(1543), - [anon_sym_sizeof] = ACTIONS(1545), - [sym_number_literal] = ACTIONS(1547), - [anon_sym_L_SQUOTE] = ACTIONS(1549), - [anon_sym_u_SQUOTE] = ACTIONS(1549), - [anon_sym_U_SQUOTE] = ACTIONS(1549), - [anon_sym_u8_SQUOTE] = ACTIONS(1549), - [anon_sym_SQUOTE] = ACTIONS(1549), - [anon_sym_L_DQUOTE] = ACTIONS(1551), - [anon_sym_u_DQUOTE] = ACTIONS(1551), - [anon_sym_U_DQUOTE] = ACTIONS(1551), - [anon_sym_u8_DQUOTE] = ACTIONS(1551), - [anon_sym_DQUOTE] = ACTIONS(1551), - [sym_true] = ACTIONS(1553), - [sym_false] = ACTIONS(1553), - [sym_null] = ACTIONS(1553), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1557), - [anon_sym_R_DQUOTE] = ACTIONS(1559), - [anon_sym_LR_DQUOTE] = ACTIONS(1559), - [anon_sym_uR_DQUOTE] = ACTIONS(1559), - [anon_sym_UR_DQUOTE] = ACTIONS(1559), - [anon_sym_u8R_DQUOTE] = ACTIONS(1559), - [anon_sym_co_await] = ACTIONS(1561), - [anon_sym_new] = ACTIONS(1563), - [anon_sym_requires] = ACTIONS(1565), - [sym_this] = ACTIONS(1553), - [sym_nullptr] = ACTIONS(1553), + [sym__expression] = STATE(3400), + [sym__expression_not_binary] = STATE(3513), + [sym_conditional_expression] = STATE(3513), + [sym_assignment_expression] = STATE(3513), + [sym_pointer_expression] = STATE(3513), + [sym_unary_expression] = STATE(3513), + [sym_binary_expression] = STATE(3513), + [sym_update_expression] = STATE(3513), + [sym_cast_expression] = STATE(3513), + [sym_sizeof_expression] = STATE(3513), + [sym_offsetof_expression] = STATE(3513), + [sym_generic_expression] = STATE(3513), + [sym_subscript_expression] = STATE(3513), + [sym_call_expression] = STATE(3513), + [sym_gnu_asm_expression] = STATE(3513), + [sym_field_expression] = STATE(3513), + [sym_compound_literal_expression] = STATE(3513), + [sym_parenthesized_expression] = STATE(3513), + [sym_char_literal] = STATE(3385), + [sym_concatenated_string] = STATE(3385), + [sym_string_literal] = STATE(2225), + [sym_null] = STATE(3513), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6957), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3513), + [sym_raw_string_literal] = STATE(2225), + [sym_co_await_expression] = STATE(3513), + [sym_new_expression] = STATE(3513), + [sym_delete_expression] = STATE(3513), + [sym_requires_clause] = STATE(3513), + [sym_requires_expression] = STATE(3513), + [sym_lambda_expression] = STATE(3513), + [sym_lambda_capture_specifier] = STATE(5162), + [sym_fold_expression] = STATE(3513), + [sym_parameter_pack_expansion] = STATE(3513), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5289), + [sym_qualified_identifier] = STATE(3513), + [sym_qualified_type_identifier] = STATE(6957), + [sym_user_defined_literal] = STATE(3513), + [sym_identifier] = ACTIONS(2031), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4253), + [anon_sym_LPAREN2] = ACTIONS(4255), + [anon_sym_BANG] = ACTIONS(2037), + [anon_sym_TILDE] = ACTIONS(2037), + [anon_sym_DASH] = ACTIONS(2035), + [anon_sym_PLUS] = ACTIONS(2035), + [anon_sym_STAR] = ACTIONS(2624), + [anon_sym_AMP] = ACTIONS(2624), + [anon_sym_COLON_COLON] = ACTIONS(2041), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(2045), + [anon_sym_not] = ACTIONS(2035), + [anon_sym_compl] = ACTIONS(2035), + [anon_sym_DASH_DASH] = ACTIONS(2047), + [anon_sym_PLUS_PLUS] = ACTIONS(2047), + [anon_sym_sizeof] = ACTIONS(2049), + [anon_sym_offsetof] = ACTIONS(2051), + [anon_sym__Generic] = ACTIONS(2053), + [anon_sym_asm] = ACTIONS(2055), + [anon_sym___asm__] = ACTIONS(2055), + [sym_number_literal] = ACTIONS(2057), + [anon_sym_L_SQUOTE] = ACTIONS(2059), + [anon_sym_u_SQUOTE] = ACTIONS(2059), + [anon_sym_U_SQUOTE] = ACTIONS(2059), + [anon_sym_u8_SQUOTE] = ACTIONS(2059), + [anon_sym_SQUOTE] = ACTIONS(2059), + [anon_sym_L_DQUOTE] = ACTIONS(2061), + [anon_sym_u_DQUOTE] = ACTIONS(2061), + [anon_sym_U_DQUOTE] = ACTIONS(2061), + [anon_sym_u8_DQUOTE] = ACTIONS(2061), + [anon_sym_DQUOTE] = ACTIONS(2061), + [sym_true] = ACTIONS(2063), + [sym_false] = ACTIONS(2063), + [anon_sym_NULL] = ACTIONS(2065), + [anon_sym_nullptr] = ACTIONS(2065), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(2067), + [anon_sym_R_DQUOTE] = ACTIONS(2069), + [anon_sym_LR_DQUOTE] = ACTIONS(2069), + [anon_sym_uR_DQUOTE] = ACTIONS(2069), + [anon_sym_UR_DQUOTE] = ACTIONS(2069), + [anon_sym_u8R_DQUOTE] = ACTIONS(2069), + [anon_sym_co_await] = ACTIONS(2071), + [anon_sym_new] = ACTIONS(2073), + [anon_sym_requires] = ACTIONS(2075), + [sym_this] = ACTIONS(2063), }, [1755] = { - [sym__expression] = STATE(3753), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(3036), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(3036), - [sym_call_expression] = STATE(3036), - [sym_field_expression] = STATE(3036), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(3036), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(3036), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(3073), - [anon_sym_LPAREN2] = ACTIONS(3075), - [anon_sym_BANG] = ACTIONS(3079), - [anon_sym_TILDE] = ACTIONS(3079), - [anon_sym_DASH] = ACTIONS(3077), - [anon_sym_PLUS] = ACTIONS(3077), - [anon_sym_STAR] = ACTIONS(3081), - [anon_sym_AMP] = ACTIONS(3081), - [anon_sym_COLON_COLON] = ACTIONS(3083), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(3077), - [anon_sym_compl] = ACTIONS(3077), - [anon_sym_DASH_DASH] = ACTIONS(3085), - [anon_sym_PLUS_PLUS] = ACTIONS(3085), - [anon_sym_sizeof] = ACTIONS(3087), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(3089), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(3091), - [anon_sym_new] = ACTIONS(3065), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [sym__expression] = STATE(4476), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3579), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3579), + [sym_call_expression] = STATE(3579), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3579), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3579), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3579), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3633), + [anon_sym_LPAREN2] = ACTIONS(3635), + [anon_sym_BANG] = ACTIONS(3639), + [anon_sym_TILDE] = ACTIONS(3639), + [anon_sym_DASH] = ACTIONS(3637), + [anon_sym_PLUS] = ACTIONS(3637), + [anon_sym_STAR] = ACTIONS(3641), + [anon_sym_AMP] = ACTIONS(3641), + [anon_sym_COLON_COLON] = ACTIONS(3643), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_COLON] = ACTIONS(4257), + [anon_sym_not] = ACTIONS(3637), + [anon_sym_compl] = ACTIONS(3637), + [anon_sym_DASH_DASH] = ACTIONS(3645), + [anon_sym_PLUS_PLUS] = ACTIONS(3645), + [anon_sym_sizeof] = ACTIONS(3647), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(3649), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(3651), + [anon_sym_new] = ACTIONS(3631), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1756] = { - [sym__expression] = STATE(3643), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2984), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2984), - [sym_call_expression] = STATE(2984), - [sym_field_expression] = STATE(2984), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2984), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2984), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(3047), - [anon_sym_LPAREN2] = ACTIONS(3049), - [anon_sym_BANG] = ACTIONS(3053), - [anon_sym_TILDE] = ACTIONS(3053), - [anon_sym_DASH] = ACTIONS(3051), - [anon_sym_PLUS] = ACTIONS(3051), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(3055), - [anon_sym_LBRACK] = ACTIONS(3789), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(3051), - [anon_sym_compl] = ACTIONS(3051), - [anon_sym_DASH_DASH] = ACTIONS(3057), - [anon_sym_PLUS_PLUS] = ACTIONS(3057), - [anon_sym_sizeof] = ACTIONS(3059), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(3061), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(3063), - [anon_sym_new] = ACTIONS(3065), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [sym__expression] = STATE(4317), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3579), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3579), + [sym_call_expression] = STATE(3579), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3579), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3579), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3579), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3633), + [anon_sym_LPAREN2] = ACTIONS(3635), + [anon_sym_BANG] = ACTIONS(3639), + [anon_sym_TILDE] = ACTIONS(3639), + [anon_sym_DASH] = ACTIONS(3637), + [anon_sym_PLUS] = ACTIONS(3637), + [anon_sym_STAR] = ACTIONS(3641), + [anon_sym_AMP] = ACTIONS(3641), + [anon_sym_COLON_COLON] = ACTIONS(3643), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_COLON] = ACTIONS(4259), + [anon_sym_not] = ACTIONS(3637), + [anon_sym_compl] = ACTIONS(3637), + [anon_sym_DASH_DASH] = ACTIONS(3645), + [anon_sym_PLUS_PLUS] = ACTIONS(3645), + [anon_sym_sizeof] = ACTIONS(3647), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(3649), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(3651), + [anon_sym_new] = ACTIONS(3631), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1757] = { - [sym__expression] = STATE(2579), - [sym_conditional_expression] = STATE(2574), - [sym_assignment_expression] = STATE(2574), - [sym_pointer_expression] = STATE(2578), - [sym_unary_expression] = STATE(2574), - [sym_binary_expression] = STATE(2574), - [sym_update_expression] = STATE(2574), - [sym_cast_expression] = STATE(2574), - [sym_sizeof_expression] = STATE(2574), - [sym_subscript_expression] = STATE(2578), - [sym_call_expression] = STATE(2578), - [sym_field_expression] = STATE(2578), - [sym_compound_literal_expression] = STATE(2574), - [sym_parenthesized_expression] = STATE(2578), - [sym_char_literal] = STATE(2207), - [sym_concatenated_string] = STATE(2207), - [sym_string_literal] = STATE(1820), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5944), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(2574), - [sym_raw_string_literal] = STATE(1820), - [sym_co_await_expression] = STATE(2574), - [sym_new_expression] = STATE(2574), - [sym_delete_expression] = STATE(2574), - [sym_requires_clause] = STATE(2574), - [sym_requires_expression] = STATE(2574), - [sym_lambda_expression] = STATE(2574), - [sym_lambda_capture_specifier] = STATE(4479), - [sym_fold_expression] = STATE(2574), - [sym_parameter_pack_expansion] = STATE(2574), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2578), - [sym_qualified_type_identifier] = STATE(5944), - [sym_user_defined_literal] = STATE(2574), - [sym_identifier] = ACTIONS(3791), - [anon_sym_LPAREN2] = ACTIONS(1527), - [anon_sym_BANG] = ACTIONS(1531), - [anon_sym_TILDE] = ACTIONS(1531), - [anon_sym_DASH] = ACTIONS(1529), - [anon_sym_PLUS] = ACTIONS(1529), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(1529), - [anon_sym_compl] = ACTIONS(1529), - [anon_sym_DASH_DASH] = ACTIONS(1543), - [anon_sym_PLUS_PLUS] = ACTIONS(1543), - [anon_sym_sizeof] = ACTIONS(1545), - [sym_number_literal] = ACTIONS(1547), - [anon_sym_L_SQUOTE] = ACTIONS(1549), - [anon_sym_u_SQUOTE] = ACTIONS(1549), - [anon_sym_U_SQUOTE] = ACTIONS(1549), - [anon_sym_u8_SQUOTE] = ACTIONS(1549), - [anon_sym_SQUOTE] = ACTIONS(1549), - [anon_sym_L_DQUOTE] = ACTIONS(1551), - [anon_sym_u_DQUOTE] = ACTIONS(1551), - [anon_sym_U_DQUOTE] = ACTIONS(1551), - [anon_sym_u8_DQUOTE] = ACTIONS(1551), - [anon_sym_DQUOTE] = ACTIONS(1551), - [sym_true] = ACTIONS(1553), - [sym_false] = ACTIONS(1553), - [sym_null] = ACTIONS(1553), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1557), - [anon_sym_R_DQUOTE] = ACTIONS(1559), - [anon_sym_LR_DQUOTE] = ACTIONS(1559), - [anon_sym_uR_DQUOTE] = ACTIONS(1559), - [anon_sym_UR_DQUOTE] = ACTIONS(1559), - [anon_sym_u8R_DQUOTE] = ACTIONS(1559), - [anon_sym_co_await] = ACTIONS(1561), - [anon_sym_new] = ACTIONS(1563), - [anon_sym_requires] = ACTIONS(1565), - [sym_this] = ACTIONS(1553), - [sym_nullptr] = ACTIONS(1553), + [sym__expression] = STATE(3475), + [sym__expression_not_binary] = STATE(3565), + [sym_conditional_expression] = STATE(3565), + [sym_assignment_expression] = STATE(3565), + [sym_pointer_expression] = STATE(3220), + [sym_unary_expression] = STATE(3565), + [sym_binary_expression] = STATE(3565), + [sym_update_expression] = STATE(3565), + [sym_cast_expression] = STATE(3565), + [sym_sizeof_expression] = STATE(3565), + [sym_offsetof_expression] = STATE(3565), + [sym_generic_expression] = STATE(3565), + [sym_subscript_expression] = STATE(3220), + [sym_call_expression] = STATE(3220), + [sym_gnu_asm_expression] = STATE(3565), + [sym_field_expression] = STATE(3220), + [sym_compound_literal_expression] = STATE(3565), + [sym_parenthesized_expression] = STATE(3220), + [sym_char_literal] = STATE(3429), + [sym_concatenated_string] = STATE(3429), + [sym_string_literal] = STATE(2248), + [sym_null] = STATE(3565), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6847), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3565), + [sym_raw_string_literal] = STATE(2248), + [sym_co_await_expression] = STATE(3565), + [sym_new_expression] = STATE(3565), + [sym_delete_expression] = STATE(3565), + [sym_requires_clause] = STATE(3565), + [sym_requires_expression] = STATE(3565), + [sym_lambda_expression] = STATE(3565), + [sym_lambda_capture_specifier] = STATE(5204), + [sym_fold_expression] = STATE(3565), + [sym_parameter_pack_expansion] = STATE(3565), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5232), + [sym_qualified_identifier] = STATE(3220), + [sym_qualified_type_identifier] = STATE(6847), + [sym_user_defined_literal] = STATE(3565), + [sym_identifier] = ACTIONS(2095), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4261), + [anon_sym_LPAREN2] = ACTIONS(4263), + [anon_sym_BANG] = ACTIONS(1843), + [anon_sym_TILDE] = ACTIONS(1843), + [anon_sym_DASH] = ACTIONS(1845), + [anon_sym_PLUS] = ACTIONS(1845), + [anon_sym_STAR] = ACTIONS(1847), + [anon_sym_AMP] = ACTIONS(1847), + [anon_sym_COLON_COLON] = ACTIONS(1849), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1999), + [anon_sym_not] = ACTIONS(1845), + [anon_sym_compl] = ACTIONS(1845), + [anon_sym_DASH_DASH] = ACTIONS(1861), + [anon_sym_PLUS_PLUS] = ACTIONS(1861), + [anon_sym_sizeof] = ACTIONS(1863), + [anon_sym_offsetof] = ACTIONS(1865), + [anon_sym__Generic] = ACTIONS(1867), + [anon_sym_asm] = ACTIONS(1869), + [anon_sym___asm__] = ACTIONS(1869), + [sym_number_literal] = ACTIONS(1871), + [anon_sym_L_SQUOTE] = ACTIONS(1873), + [anon_sym_u_SQUOTE] = ACTIONS(1873), + [anon_sym_U_SQUOTE] = ACTIONS(1873), + [anon_sym_u8_SQUOTE] = ACTIONS(1873), + [anon_sym_SQUOTE] = ACTIONS(1873), + [anon_sym_L_DQUOTE] = ACTIONS(1875), + [anon_sym_u_DQUOTE] = ACTIONS(1875), + [anon_sym_U_DQUOTE] = ACTIONS(1875), + [anon_sym_u8_DQUOTE] = ACTIONS(1875), + [anon_sym_DQUOTE] = ACTIONS(1875), + [sym_true] = ACTIONS(1877), + [sym_false] = ACTIONS(1877), + [anon_sym_NULL] = ACTIONS(1879), + [anon_sym_nullptr] = ACTIONS(1879), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(1883), + [anon_sym_R_DQUOTE] = ACTIONS(1885), + [anon_sym_LR_DQUOTE] = ACTIONS(1885), + [anon_sym_uR_DQUOTE] = ACTIONS(1885), + [anon_sym_UR_DQUOTE] = ACTIONS(1885), + [anon_sym_u8R_DQUOTE] = ACTIONS(1885), + [anon_sym_co_await] = ACTIONS(1887), + [anon_sym_new] = ACTIONS(1889), + [anon_sym_requires] = ACTIONS(1891), + [sym_this] = ACTIONS(1877), }, [1758] = { - [sym__expression] = STATE(2579), - [sym_conditional_expression] = STATE(2574), - [sym_assignment_expression] = STATE(2574), - [sym_pointer_expression] = STATE(2578), - [sym_unary_expression] = STATE(2574), - [sym_binary_expression] = STATE(2574), - [sym_update_expression] = STATE(2574), - [sym_cast_expression] = STATE(2574), - [sym_sizeof_expression] = STATE(2574), - [sym_subscript_expression] = STATE(2578), - [sym_call_expression] = STATE(2578), - [sym_field_expression] = STATE(2578), - [sym_compound_literal_expression] = STATE(2574), - [sym_parenthesized_expression] = STATE(2578), - [sym_char_literal] = STATE(2207), - [sym_concatenated_string] = STATE(2207), - [sym_string_literal] = STATE(1820), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5944), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(2574), - [sym_raw_string_literal] = STATE(1820), - [sym_co_await_expression] = STATE(2574), - [sym_new_expression] = STATE(2574), - [sym_delete_expression] = STATE(2574), - [sym_requires_clause] = STATE(2574), - [sym_requires_expression] = STATE(2574), - [sym_lambda_expression] = STATE(2574), - [sym_lambda_capture_specifier] = STATE(4479), - [sym_fold_expression] = STATE(2574), - [sym_parameter_pack_expansion] = STATE(2574), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2578), - [sym_qualified_type_identifier] = STATE(5944), - [sym_user_defined_literal] = STATE(2574), - [sym_identifier] = ACTIONS(1523), - [anon_sym_LPAREN2] = ACTIONS(1527), - [anon_sym_BANG] = ACTIONS(1531), - [anon_sym_TILDE] = ACTIONS(1531), - [anon_sym_DASH] = ACTIONS(1529), - [anon_sym_PLUS] = ACTIONS(1529), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), - [anon_sym_not] = ACTIONS(1529), - [anon_sym_compl] = ACTIONS(1529), - [anon_sym_DASH_DASH] = ACTIONS(1543), - [anon_sym_PLUS_PLUS] = ACTIONS(1543), - [anon_sym_sizeof] = ACTIONS(1545), - [sym_number_literal] = ACTIONS(1547), - [anon_sym_L_SQUOTE] = ACTIONS(1549), - [anon_sym_u_SQUOTE] = ACTIONS(1549), - [anon_sym_U_SQUOTE] = ACTIONS(1549), - [anon_sym_u8_SQUOTE] = ACTIONS(1549), - [anon_sym_SQUOTE] = ACTIONS(1549), - [anon_sym_L_DQUOTE] = ACTIONS(1551), - [anon_sym_u_DQUOTE] = ACTIONS(1551), - [anon_sym_U_DQUOTE] = ACTIONS(1551), - [anon_sym_u8_DQUOTE] = ACTIONS(1551), - [anon_sym_DQUOTE] = ACTIONS(1551), - [sym_true] = ACTIONS(1553), - [sym_false] = ACTIONS(1553), - [sym_null] = ACTIONS(1553), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(1557), - [anon_sym_R_DQUOTE] = ACTIONS(1559), - [anon_sym_LR_DQUOTE] = ACTIONS(1559), - [anon_sym_uR_DQUOTE] = ACTIONS(1559), - [anon_sym_UR_DQUOTE] = ACTIONS(1559), - [anon_sym_u8R_DQUOTE] = ACTIONS(1559), - [anon_sym_co_await] = ACTIONS(1561), - [anon_sym_new] = ACTIONS(1563), - [anon_sym_requires] = ACTIONS(1565), - [sym_this] = ACTIONS(1553), - [sym_nullptr] = ACTIONS(1553), - }, - [1759] = { - [sym__expression] = STATE(3348), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2954), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym__expression] = STATE(4284), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(7617), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), + }, + [1759] = { + [sym__expression] = STATE(3039), + [sym__expression_not_binary] = STATE(3021), + [sym_conditional_expression] = STATE(3021), + [sym_assignment_expression] = STATE(3021), + [sym_pointer_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_cast_expression] = STATE(3021), + [sym_sizeof_expression] = STATE(3021), + [sym_offsetof_expression] = STATE(3021), + [sym_generic_expression] = STATE(3021), + [sym_subscript_expression] = STATE(3021), + [sym_call_expression] = STATE(3021), + [sym_gnu_asm_expression] = STATE(3021), + [sym_field_expression] = STATE(3021), + [sym_compound_literal_expression] = STATE(3021), + [sym_parenthesized_expression] = STATE(3021), + [sym_char_literal] = STATE(2901), + [sym_concatenated_string] = STATE(2901), + [sym_string_literal] = STATE(2173), + [sym_null] = STATE(3021), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6616), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3021), + [sym_raw_string_literal] = STATE(2173), + [sym_co_await_expression] = STATE(3021), + [sym_new_expression] = STATE(3021), + [sym_delete_expression] = STATE(3021), + [sym_requires_clause] = STATE(3021), + [sym_requires_expression] = STATE(3021), + [sym_lambda_expression] = STATE(3021), + [sym_lambda_capture_specifier] = STATE(5188), + [sym_fold_expression] = STATE(3021), + [sym_parameter_pack_expansion] = STATE(3021), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3021), + [sym_qualified_type_identifier] = STATE(6616), + [sym_user_defined_literal] = STATE(3021), + [sym_identifier] = ACTIONS(1933), + [anon_sym_LPAREN2] = ACTIONS(1937), + [anon_sym_BANG] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(1941), + [anon_sym_DASH] = ACTIONS(1939), + [anon_sym_PLUS] = ACTIONS(1939), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(1945), + [anon_sym_LBRACK] = ACTIONS(1949), + [anon_sym_RBRACK] = ACTIONS(4265), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(1939), + [anon_sym_compl] = ACTIONS(1939), + [anon_sym_DASH_DASH] = ACTIONS(1953), + [anon_sym_PLUS_PLUS] = ACTIONS(1953), + [anon_sym_sizeof] = ACTIONS(1955), + [anon_sym_offsetof] = ACTIONS(1957), + [anon_sym__Generic] = ACTIONS(1959), + [anon_sym_asm] = ACTIONS(1961), + [anon_sym___asm__] = ACTIONS(1961), + [sym_number_literal] = ACTIONS(1963), + [anon_sym_L_SQUOTE] = ACTIONS(1965), + [anon_sym_u_SQUOTE] = ACTIONS(1965), + [anon_sym_U_SQUOTE] = ACTIONS(1965), + [anon_sym_u8_SQUOTE] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_L_DQUOTE] = ACTIONS(1967), + [anon_sym_u_DQUOTE] = ACTIONS(1967), + [anon_sym_U_DQUOTE] = ACTIONS(1967), + [anon_sym_u8_DQUOTE] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(1967), + [sym_true] = ACTIONS(1969), + [sym_false] = ACTIONS(1969), + [anon_sym_NULL] = ACTIONS(1971), + [anon_sym_nullptr] = ACTIONS(1971), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(1975), + [anon_sym_R_DQUOTE] = ACTIONS(1977), + [anon_sym_LR_DQUOTE] = ACTIONS(1977), + [anon_sym_uR_DQUOTE] = ACTIONS(1977), + [anon_sym_UR_DQUOTE] = ACTIONS(1977), + [anon_sym_u8R_DQUOTE] = ACTIONS(1977), + [anon_sym_co_await] = ACTIONS(1979), + [anon_sym_new] = ACTIONS(1981), + [anon_sym_requires] = ACTIONS(1983), + [sym_this] = ACTIONS(1969), }, [1760] = { - [sym__expression] = STATE(3414), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2954), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym__expression] = STATE(4052), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(4267), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(4219), + [sym_primitive_type] = ACTIONS(1951), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1761] = { - [sym__declaration_modifiers] = STATE(2179), - [sym__declaration_specifiers] = STATE(4017), - [sym_attribute_specifier] = STATE(2179), - [sym_attribute_declaration] = STATE(2179), - [sym_ms_declspec_modifier] = STATE(2179), - [sym_ms_based_modifier] = STATE(6104), - [sym__declarator] = STATE(5092), - [sym_parenthesized_declarator] = STATE(4918), - [sym_attributed_declarator] = STATE(4918), - [sym_pointer_declarator] = STATE(4918), - [sym_function_declarator] = STATE(4918), - [sym_array_declarator] = STATE(4918), - [sym_storage_class_specifier] = STATE(2179), - [sym_type_qualifier] = STATE(2179), - [sym__type_specifier] = STATE(3156), - [sym_sized_type_specifier] = STATE(3232), - [sym_enum_specifier] = STATE(3232), - [sym_struct_specifier] = STATE(3232), - [sym_union_specifier] = STATE(3232), - [sym_placeholder_type_specifier] = STATE(3232), - [sym_decltype_auto] = STATE(3279), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3232), - [sym_virtual] = STATE(2179), - [sym_dependent_type] = STATE(3232), - [sym_template_parameter_list] = STATE(1122), - [sym_reference_declarator] = STATE(4918), - [sym_structured_binding_declarator] = STATE(4918), - [sym_template_type] = STATE(3953), - [sym_template_function] = STATE(4918), - [sym_destructor_name] = STATE(4918), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4565), - [sym_qualified_identifier] = STATE(4918), - [sym_qualified_type_identifier] = STATE(3259), - [sym_operator_name] = STATE(4918), - [aux_sym__declaration_specifiers_repeat1] = STATE(2179), - [aux_sym_sized_type_specifier_repeat1] = STATE(3171), - [sym_identifier] = ACTIONS(3765), - [anon_sym_LPAREN2] = ACTIONS(1681), - [anon_sym_TILDE] = ACTIONS(1683), - [anon_sym_STAR] = ACTIONS(1685), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1687), - [anon_sym_LT] = ACTIONS(3767), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(3769), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1413), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1693), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(61), - [anon_sym_unsigned] = ACTIONS(61), - [anon_sym_long] = ACTIONS(61), - [anon_sym_short] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2932), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(107), - [anon_sym_decltype] = ACTIONS(109), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(115), - [anon_sym_template] = ACTIONS(996), - [anon_sym_operator] = ACTIONS(1521), + [sym__expression] = STATE(3521), + [sym__expression_not_binary] = STATE(3565), + [sym_conditional_expression] = STATE(3565), + [sym_assignment_expression] = STATE(3565), + [sym_pointer_expression] = STATE(3220), + [sym_unary_expression] = STATE(3565), + [sym_binary_expression] = STATE(3565), + [sym_update_expression] = STATE(3565), + [sym_cast_expression] = STATE(3565), + [sym_sizeof_expression] = STATE(3565), + [sym_offsetof_expression] = STATE(3565), + [sym_generic_expression] = STATE(3565), + [sym_subscript_expression] = STATE(3220), + [sym_call_expression] = STATE(3220), + [sym_gnu_asm_expression] = STATE(3565), + [sym_field_expression] = STATE(3220), + [sym_compound_literal_expression] = STATE(3565), + [sym_parenthesized_expression] = STATE(3220), + [sym_char_literal] = STATE(3429), + [sym_concatenated_string] = STATE(3429), + [sym_string_literal] = STATE(2248), + [sym_null] = STATE(3565), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6847), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3565), + [sym_raw_string_literal] = STATE(2248), + [sym_co_await_expression] = STATE(3565), + [sym_new_expression] = STATE(3565), + [sym_delete_expression] = STATE(3565), + [sym_requires_clause] = STATE(3565), + [sym_requires_expression] = STATE(3565), + [sym_lambda_expression] = STATE(3565), + [sym_lambda_capture_specifier] = STATE(5204), + [sym_fold_expression] = STATE(3565), + [sym_parameter_pack_expansion] = STATE(3565), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5232), + [sym_qualified_identifier] = STATE(3220), + [sym_qualified_type_identifier] = STATE(6847), + [sym_user_defined_literal] = STATE(3565), + [sym_identifier] = ACTIONS(2095), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4269), + [anon_sym_LPAREN2] = ACTIONS(1841), + [anon_sym_BANG] = ACTIONS(1843), + [anon_sym_TILDE] = ACTIONS(1843), + [anon_sym_DASH] = ACTIONS(1845), + [anon_sym_PLUS] = ACTIONS(1845), + [anon_sym_STAR] = ACTIONS(1847), + [anon_sym_AMP] = ACTIONS(1847), + [anon_sym_COLON_COLON] = ACTIONS(1849), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1999), + [anon_sym_not] = ACTIONS(1845), + [anon_sym_compl] = ACTIONS(1845), + [anon_sym_DASH_DASH] = ACTIONS(1861), + [anon_sym_PLUS_PLUS] = ACTIONS(1861), + [anon_sym_sizeof] = ACTIONS(1863), + [anon_sym_offsetof] = ACTIONS(1865), + [anon_sym__Generic] = ACTIONS(1867), + [anon_sym_asm] = ACTIONS(1869), + [anon_sym___asm__] = ACTIONS(1869), + [sym_number_literal] = ACTIONS(1871), + [anon_sym_L_SQUOTE] = ACTIONS(1873), + [anon_sym_u_SQUOTE] = ACTIONS(1873), + [anon_sym_U_SQUOTE] = ACTIONS(1873), + [anon_sym_u8_SQUOTE] = ACTIONS(1873), + [anon_sym_SQUOTE] = ACTIONS(1873), + [anon_sym_L_DQUOTE] = ACTIONS(1875), + [anon_sym_u_DQUOTE] = ACTIONS(1875), + [anon_sym_U_DQUOTE] = ACTIONS(1875), + [anon_sym_u8_DQUOTE] = ACTIONS(1875), + [anon_sym_DQUOTE] = ACTIONS(1875), + [sym_true] = ACTIONS(1877), + [sym_false] = ACTIONS(1877), + [anon_sym_NULL] = ACTIONS(1879), + [anon_sym_nullptr] = ACTIONS(1879), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(1883), + [anon_sym_R_DQUOTE] = ACTIONS(1885), + [anon_sym_LR_DQUOTE] = ACTIONS(1885), + [anon_sym_uR_DQUOTE] = ACTIONS(1885), + [anon_sym_UR_DQUOTE] = ACTIONS(1885), + [anon_sym_u8R_DQUOTE] = ACTIONS(1885), + [anon_sym_co_await] = ACTIONS(1887), + [anon_sym_new] = ACTIONS(1889), + [anon_sym_requires] = ACTIONS(1891), + [sym_this] = ACTIONS(1877), }, [1762] = { - [sym__expression] = STATE(3745), - [sym_conditional_expression] = STATE(3365), - [sym_assignment_expression] = STATE(3365), - [sym_pointer_expression] = STATE(2757), - [sym_unary_expression] = STATE(3365), - [sym_binary_expression] = STATE(3365), - [sym_update_expression] = STATE(3365), - [sym_cast_expression] = STATE(3365), - [sym_sizeof_expression] = STATE(3365), - [sym_subscript_expression] = STATE(2757), - [sym_call_expression] = STATE(2757), - [sym_field_expression] = STATE(2757), - [sym_compound_literal_expression] = STATE(3365), - [sym_parenthesized_expression] = STATE(2757), - [sym_char_literal] = STATE(3328), - [sym_concatenated_string] = STATE(3328), - [sym_string_literal] = STATE(2555), - [sym_decltype] = STATE(6159), - [sym__class_name] = STATE(5753), - [sym_template_type] = STATE(3133), - [sym_template_function] = STATE(3365), - [sym_raw_string_literal] = STATE(2555), - [sym_co_await_expression] = STATE(3365), - [sym_new_expression] = STATE(3365), - [sym_delete_expression] = STATE(3365), - [sym_requires_clause] = STATE(3365), - [sym_requires_expression] = STATE(3365), - [sym_lambda_expression] = STATE(3365), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3365), - [sym_parameter_pack_expansion] = STATE(3365), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(4534), - [sym_qualified_identifier] = STATE(2757), - [sym_qualified_type_identifier] = STATE(5753), - [sym_user_defined_literal] = STATE(3365), - [sym_identifier] = ACTIONS(2954), - [anon_sym_LPAREN2] = ACTIONS(984), + [sym__expression] = STATE(4489), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(1539), - [sym_primitive_type] = ACTIONS(1541), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(95), - [anon_sym_PLUS_PLUS] = ACTIONS(95), - [anon_sym_sizeof] = ACTIONS(97), - [sym_number_literal] = ACTIONS(99), - [anon_sym_L_SQUOTE] = ACTIONS(101), - [anon_sym_u_SQUOTE] = ACTIONS(101), - [anon_sym_U_SQUOTE] = ACTIONS(101), - [anon_sym_u8_SQUOTE] = ACTIONS(101), - [anon_sym_SQUOTE] = ACTIONS(101), - [anon_sym_L_DQUOTE] = ACTIONS(103), - [anon_sym_u_DQUOTE] = ACTIONS(103), - [anon_sym_U_DQUOTE] = ACTIONS(103), - [anon_sym_u8_DQUOTE] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym_true] = ACTIONS(105), - [sym_false] = ACTIONS(105), - [sym_null] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1555), - [anon_sym_template] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(123), - [anon_sym_R_DQUOTE] = ACTIONS(139), - [anon_sym_LR_DQUOTE] = ACTIONS(139), - [anon_sym_uR_DQUOTE] = ACTIONS(139), - [anon_sym_UR_DQUOTE] = ACTIONS(139), - [anon_sym_u8R_DQUOTE] = ACTIONS(139), - [anon_sym_co_await] = ACTIONS(141), - [anon_sym_new] = ACTIONS(143), - [anon_sym_requires] = ACTIONS(145), - [sym_this] = ACTIONS(105), - [sym_nullptr] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4272), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1763] = { - [sym_template_argument_list] = STATE(1899), - [sym_identifier] = ACTIONS(3793), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3795), - [anon_sym_COMMA] = ACTIONS(3795), - [anon_sym_LPAREN2] = ACTIONS(3797), - [anon_sym_TILDE] = ACTIONS(3801), - [anon_sym_DASH] = ACTIONS(3803), - [anon_sym_PLUS] = ACTIONS(3803), - [anon_sym_STAR] = ACTIONS(3805), - [anon_sym_SLASH] = ACTIONS(3803), - [anon_sym_PERCENT] = ACTIONS(3803), - [anon_sym_PIPE_PIPE] = ACTIONS(3795), - [anon_sym_AMP_AMP] = ACTIONS(3808), - [anon_sym_PIPE] = ACTIONS(3803), - [anon_sym_CARET] = ACTIONS(3803), - [anon_sym_AMP] = ACTIONS(3805), - [anon_sym_EQ_EQ] = ACTIONS(3795), - [anon_sym_BANG_EQ] = ACTIONS(3795), - [anon_sym_GT] = ACTIONS(3803), - [anon_sym_GT_EQ] = ACTIONS(3795), - [anon_sym_LT_EQ] = ACTIONS(3803), - [anon_sym_LT] = ACTIONS(3811), - [anon_sym_LT_LT] = ACTIONS(3803), - [anon_sym_GT_GT] = ACTIONS(3803), - [anon_sym_SEMI] = ACTIONS(3808), - [anon_sym_extern] = ACTIONS(3793), - [anon_sym___attribute__] = ACTIONS(3793), - [anon_sym_COLON_COLON] = ACTIONS(3814), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3816), - [anon_sym___declspec] = ACTIONS(3793), - [anon_sym___based] = ACTIONS(3793), - [anon_sym_LBRACE] = ACTIONS(3819), - [anon_sym_RBRACE] = ACTIONS(3795), - [anon_sym_LBRACK] = ACTIONS(3821), - [anon_sym_EQ] = ACTIONS(3825), - [anon_sym_static] = ACTIONS(3793), - [anon_sym_register] = ACTIONS(3793), - [anon_sym_inline] = ACTIONS(3793), - [anon_sym_thread_local] = ACTIONS(3793), - [anon_sym_const] = ACTIONS(3793), - [anon_sym_volatile] = ACTIONS(3793), - [anon_sym_restrict] = ACTIONS(3793), - [anon_sym__Atomic] = ACTIONS(3793), - [anon_sym_mutable] = ACTIONS(3793), - [anon_sym_constexpr] = ACTIONS(3793), - [anon_sym_constinit] = ACTIONS(3793), - [anon_sym_consteval] = ACTIONS(3793), - [anon_sym_COLON] = ACTIONS(3827), - [anon_sym_QMARK] = ACTIONS(3795), - [anon_sym_STAR_EQ] = ACTIONS(3829), - [anon_sym_SLASH_EQ] = ACTIONS(3829), - [anon_sym_PERCENT_EQ] = ACTIONS(3829), - [anon_sym_PLUS_EQ] = ACTIONS(3829), - [anon_sym_DASH_EQ] = ACTIONS(3829), - [anon_sym_LT_LT_EQ] = ACTIONS(3829), - [anon_sym_GT_GT_EQ] = ACTIONS(3829), - [anon_sym_AMP_EQ] = ACTIONS(3829), - [anon_sym_CARET_EQ] = ACTIONS(3829), - [anon_sym_PIPE_EQ] = ACTIONS(3829), - [anon_sym_and_eq] = ACTIONS(3825), - [anon_sym_or_eq] = ACTIONS(3825), - [anon_sym_xor_eq] = ACTIONS(3825), - [anon_sym_LT_EQ_GT] = ACTIONS(3795), - [anon_sym_or] = ACTIONS(3803), - [anon_sym_and] = ACTIONS(3803), - [anon_sym_bitor] = ACTIONS(3803), - [anon_sym_xor] = ACTIONS(3803), - [anon_sym_bitand] = ACTIONS(3803), - [anon_sym_not_eq] = ACTIONS(3803), - [anon_sym_DASH_DASH] = ACTIONS(3795), - [anon_sym_PLUS_PLUS] = ACTIONS(3795), - [anon_sym_DOT] = ACTIONS(3803), - [anon_sym_DASH_GT] = ACTIONS(3795), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3793), - [anon_sym_decltype] = ACTIONS(3793), - [anon_sym_virtual] = ACTIONS(3793), - [anon_sym_template] = ACTIONS(3793), - [anon_sym_operator] = ACTIONS(3793), + [sym__expression] = STATE(4115), + [sym__expression_not_binary] = STATE(3976), + [sym_comma_expression] = STATE(6866), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1764] = { - [sym_template_argument_list] = STATE(1772), - [sym_identifier] = ACTIONS(3831), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3833), - [anon_sym_COMMA] = ACTIONS(3833), - [anon_sym_RPAREN] = ACTIONS(3833), - [anon_sym_LPAREN2] = ACTIONS(3833), - [anon_sym_TILDE] = ACTIONS(3836), - [anon_sym_DASH] = ACTIONS(3838), - [anon_sym_PLUS] = ACTIONS(3838), - [anon_sym_STAR] = ACTIONS(3840), - [anon_sym_SLASH] = ACTIONS(3838), - [anon_sym_PERCENT] = ACTIONS(3838), - [anon_sym_PIPE_PIPE] = ACTIONS(3843), - [anon_sym_AMP_AMP] = ACTIONS(3833), - [anon_sym_PIPE] = ACTIONS(3838), - [anon_sym_CARET] = ACTIONS(3838), - [anon_sym_AMP] = ACTIONS(3840), - [anon_sym_EQ_EQ] = ACTIONS(3843), - [anon_sym_BANG_EQ] = ACTIONS(3843), - [anon_sym_GT] = ACTIONS(3838), - [anon_sym_GT_EQ] = ACTIONS(3843), - [anon_sym_LT_EQ] = ACTIONS(3838), - [anon_sym_LT] = ACTIONS(3845), - [anon_sym_LT_LT] = ACTIONS(3838), - [anon_sym_GT_GT] = ACTIONS(3838), - [anon_sym_extern] = ACTIONS(3831), - [anon_sym___attribute__] = ACTIONS(3831), - [anon_sym_COLON_COLON] = ACTIONS(3814), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3836), - [anon_sym___declspec] = ACTIONS(3831), - [anon_sym___based] = ACTIONS(3831), - [anon_sym_LBRACE] = ACTIONS(3836), - [anon_sym_LBRACK] = ACTIONS(3840), - [anon_sym_EQ] = ACTIONS(3840), - [anon_sym_static] = ACTIONS(3831), - [anon_sym_register] = ACTIONS(3831), - [anon_sym_inline] = ACTIONS(3831), - [anon_sym_thread_local] = ACTIONS(3831), - [anon_sym_const] = ACTIONS(3831), - [anon_sym_volatile] = ACTIONS(3831), - [anon_sym_restrict] = ACTIONS(3831), - [anon_sym__Atomic] = ACTIONS(3831), - [anon_sym_mutable] = ACTIONS(3831), - [anon_sym_constexpr] = ACTIONS(3831), - [anon_sym_constinit] = ACTIONS(3831), - [anon_sym_consteval] = ACTIONS(3831), - [anon_sym_QMARK] = ACTIONS(3843), - [anon_sym_STAR_EQ] = ACTIONS(3843), - [anon_sym_SLASH_EQ] = ACTIONS(3843), - [anon_sym_PERCENT_EQ] = ACTIONS(3843), - [anon_sym_PLUS_EQ] = ACTIONS(3843), - [anon_sym_DASH_EQ] = ACTIONS(3843), - [anon_sym_LT_LT_EQ] = ACTIONS(3843), - [anon_sym_GT_GT_EQ] = ACTIONS(3843), - [anon_sym_AMP_EQ] = ACTIONS(3843), - [anon_sym_CARET_EQ] = ACTIONS(3843), - [anon_sym_PIPE_EQ] = ACTIONS(3843), - [anon_sym_and_eq] = ACTIONS(3838), - [anon_sym_or_eq] = ACTIONS(3838), - [anon_sym_xor_eq] = ACTIONS(3838), - [anon_sym_LT_EQ_GT] = ACTIONS(3843), - [anon_sym_or] = ACTIONS(3838), - [anon_sym_and] = ACTIONS(3838), - [anon_sym_bitor] = ACTIONS(3838), - [anon_sym_xor] = ACTIONS(3838), - [anon_sym_bitand] = ACTIONS(3838), - [anon_sym_not_eq] = ACTIONS(3838), - [anon_sym_DASH_DASH] = ACTIONS(3843), - [anon_sym_PLUS_PLUS] = ACTIONS(3843), - [anon_sym_DOT] = ACTIONS(3838), - [anon_sym_DASH_GT] = ACTIONS(3838), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3831), - [anon_sym_decltype] = ACTIONS(3831), - [anon_sym_virtual] = ACTIONS(3831), - [anon_sym_template] = ACTIONS(3831), - [anon_sym_operator] = ACTIONS(3831), - [anon_sym_DOT_STAR] = ACTIONS(3843), - [anon_sym_DASH_GT_STAR] = ACTIONS(3843), + [sym__expression] = STATE(4496), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3579), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3579), + [sym_call_expression] = STATE(3579), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3579), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3579), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3579), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3633), + [anon_sym_LPAREN2] = ACTIONS(3635), + [anon_sym_BANG] = ACTIONS(3639), + [anon_sym_TILDE] = ACTIONS(3639), + [anon_sym_DASH] = ACTIONS(3637), + [anon_sym_PLUS] = ACTIONS(3637), + [anon_sym_STAR] = ACTIONS(3641), + [anon_sym_AMP] = ACTIONS(3641), + [anon_sym_COLON_COLON] = ACTIONS(3643), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_COLON] = ACTIONS(4274), + [anon_sym_not] = ACTIONS(3637), + [anon_sym_compl] = ACTIONS(3637), + [anon_sym_DASH_DASH] = ACTIONS(3645), + [anon_sym_PLUS_PLUS] = ACTIONS(3645), + [anon_sym_sizeof] = ACTIONS(3647), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(3649), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(3651), + [anon_sym_new] = ACTIONS(3631), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1765] = { - [sym_template_argument_list] = STATE(1799), - [sym_identifier] = ACTIONS(3793), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3808), - [anon_sym_COMMA] = ACTIONS(3808), - [anon_sym_RPAREN] = ACTIONS(3808), - [anon_sym_LPAREN2] = ACTIONS(3808), - [anon_sym_TILDE] = ACTIONS(3801), - [anon_sym_DASH] = ACTIONS(3803), - [anon_sym_PLUS] = ACTIONS(3803), - [anon_sym_STAR] = ACTIONS(3805), - [anon_sym_SLASH] = ACTIONS(3803), - [anon_sym_PERCENT] = ACTIONS(3803), - [anon_sym_PIPE_PIPE] = ACTIONS(3795), - [anon_sym_AMP_AMP] = ACTIONS(3808), - [anon_sym_PIPE] = ACTIONS(3803), - [anon_sym_CARET] = ACTIONS(3803), - [anon_sym_AMP] = ACTIONS(3805), - [anon_sym_EQ_EQ] = ACTIONS(3795), - [anon_sym_BANG_EQ] = ACTIONS(3795), - [anon_sym_GT] = ACTIONS(3803), - [anon_sym_GT_EQ] = ACTIONS(3795), - [anon_sym_LT_EQ] = ACTIONS(3803), - [anon_sym_LT] = ACTIONS(3848), - [anon_sym_LT_LT] = ACTIONS(3803), - [anon_sym_GT_GT] = ACTIONS(3803), - [anon_sym_extern] = ACTIONS(3793), - [anon_sym___attribute__] = ACTIONS(3793), - [anon_sym_COLON_COLON] = ACTIONS(3814), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3801), - [anon_sym___declspec] = ACTIONS(3793), - [anon_sym___based] = ACTIONS(3793), - [anon_sym_LBRACE] = ACTIONS(3819), - [anon_sym_LBRACK] = ACTIONS(3805), - [anon_sym_EQ] = ACTIONS(3805), - [anon_sym_static] = ACTIONS(3793), - [anon_sym_register] = ACTIONS(3793), - [anon_sym_inline] = ACTIONS(3793), - [anon_sym_thread_local] = ACTIONS(3793), - [anon_sym_const] = ACTIONS(3793), - [anon_sym_volatile] = ACTIONS(3793), - [anon_sym_restrict] = ACTIONS(3793), - [anon_sym__Atomic] = ACTIONS(3793), - [anon_sym_mutable] = ACTIONS(3793), - [anon_sym_constexpr] = ACTIONS(3793), - [anon_sym_constinit] = ACTIONS(3793), - [anon_sym_consteval] = ACTIONS(3793), - [anon_sym_QMARK] = ACTIONS(3795), - [anon_sym_STAR_EQ] = ACTIONS(3795), - [anon_sym_SLASH_EQ] = ACTIONS(3795), - [anon_sym_PERCENT_EQ] = ACTIONS(3795), - [anon_sym_PLUS_EQ] = ACTIONS(3795), - [anon_sym_DASH_EQ] = ACTIONS(3795), - [anon_sym_LT_LT_EQ] = ACTIONS(3795), - [anon_sym_GT_GT_EQ] = ACTIONS(3795), - [anon_sym_AMP_EQ] = ACTIONS(3795), - [anon_sym_CARET_EQ] = ACTIONS(3795), - [anon_sym_PIPE_EQ] = ACTIONS(3795), - [anon_sym_and_eq] = ACTIONS(3851), - [anon_sym_or_eq] = ACTIONS(3851), - [anon_sym_xor_eq] = ACTIONS(3851), - [anon_sym_LT_EQ_GT] = ACTIONS(3795), - [anon_sym_or] = ACTIONS(3803), - [anon_sym_and] = ACTIONS(3803), - [anon_sym_bitor] = ACTIONS(3803), - [anon_sym_xor] = ACTIONS(3803), - [anon_sym_bitand] = ACTIONS(3803), - [anon_sym_not_eq] = ACTIONS(3803), - [anon_sym_DASH_DASH] = ACTIONS(3795), - [anon_sym_PLUS_PLUS] = ACTIONS(3795), - [anon_sym_DOT] = ACTIONS(3803), - [anon_sym_DASH_GT] = ACTIONS(3803), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3793), - [anon_sym_decltype] = ACTIONS(3793), - [anon_sym_virtual] = ACTIONS(3793), - [anon_sym_template] = ACTIONS(3793), - [anon_sym_operator] = ACTIONS(3793), - [anon_sym_DOT_STAR] = ACTIONS(3795), - [anon_sym_DASH_GT_STAR] = ACTIONS(3795), + [sym__expression] = STATE(3495), + [sym__expression_not_binary] = STATE(3021), + [sym_conditional_expression] = STATE(3021), + [sym_assignment_expression] = STATE(3021), + [sym_pointer_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_cast_expression] = STATE(3021), + [sym_sizeof_expression] = STATE(3021), + [sym_offsetof_expression] = STATE(3021), + [sym_generic_expression] = STATE(3021), + [sym_subscript_expression] = STATE(3021), + [sym_call_expression] = STATE(3021), + [sym_gnu_asm_expression] = STATE(3021), + [sym_field_expression] = STATE(3021), + [sym_compound_literal_expression] = STATE(3021), + [sym_parenthesized_expression] = STATE(3021), + [sym_char_literal] = STATE(2901), + [sym_concatenated_string] = STATE(2901), + [sym_string_literal] = STATE(2173), + [sym_null] = STATE(3021), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6616), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3021), + [sym_raw_string_literal] = STATE(2173), + [sym_co_await_expression] = STATE(3021), + [sym_new_expression] = STATE(3021), + [sym_delete_expression] = STATE(3021), + [sym_requires_clause] = STATE(3021), + [sym_requires_expression] = STATE(3021), + [sym_lambda_expression] = STATE(3021), + [sym_lambda_capture_specifier] = STATE(5188), + [sym_fold_expression] = STATE(3021), + [sym_parameter_pack_expansion] = STATE(3021), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3021), + [sym_qualified_type_identifier] = STATE(6616), + [sym_user_defined_literal] = STATE(3021), + [sym_identifier] = ACTIONS(1933), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4276), + [anon_sym_LPAREN2] = ACTIONS(4278), + [anon_sym_BANG] = ACTIONS(2081), + [anon_sym_TILDE] = ACTIONS(2081), + [anon_sym_DASH] = ACTIONS(2079), + [anon_sym_PLUS] = ACTIONS(2079), + [anon_sym_STAR] = ACTIONS(3641), + [anon_sym_AMP] = ACTIONS(3641), + [anon_sym_COLON_COLON] = ACTIONS(2085), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(2079), + [anon_sym_compl] = ACTIONS(2079), + [anon_sym_DASH_DASH] = ACTIONS(2087), + [anon_sym_PLUS_PLUS] = ACTIONS(2087), + [anon_sym_sizeof] = ACTIONS(2089), + [anon_sym_offsetof] = ACTIONS(1957), + [anon_sym__Generic] = ACTIONS(1959), + [anon_sym_asm] = ACTIONS(1961), + [anon_sym___asm__] = ACTIONS(1961), + [sym_number_literal] = ACTIONS(1963), + [anon_sym_L_SQUOTE] = ACTIONS(1965), + [anon_sym_u_SQUOTE] = ACTIONS(1965), + [anon_sym_U_SQUOTE] = ACTIONS(1965), + [anon_sym_u8_SQUOTE] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_L_DQUOTE] = ACTIONS(1967), + [anon_sym_u_DQUOTE] = ACTIONS(1967), + [anon_sym_U_DQUOTE] = ACTIONS(1967), + [anon_sym_u8_DQUOTE] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(1967), + [sym_true] = ACTIONS(1969), + [sym_false] = ACTIONS(1969), + [anon_sym_NULL] = ACTIONS(1971), + [anon_sym_nullptr] = ACTIONS(1971), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(2091), + [anon_sym_R_DQUOTE] = ACTIONS(1977), + [anon_sym_LR_DQUOTE] = ACTIONS(1977), + [anon_sym_uR_DQUOTE] = ACTIONS(1977), + [anon_sym_UR_DQUOTE] = ACTIONS(1977), + [anon_sym_u8R_DQUOTE] = ACTIONS(1977), + [anon_sym_co_await] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(1981), + [anon_sym_requires] = ACTIONS(1983), + [sym_this] = ACTIONS(1969), }, [1766] = { - [sym_template_argument_list] = STATE(1893), - [sym_identifier] = ACTIONS(3793), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3795), - [anon_sym_COMMA] = ACTIONS(3795), - [anon_sym_RPAREN] = ACTIONS(3795), - [anon_sym_LPAREN2] = ACTIONS(3808), - [anon_sym_TILDE] = ACTIONS(3801), - [anon_sym_DASH] = ACTIONS(3803), - [anon_sym_PLUS] = ACTIONS(3803), - [anon_sym_STAR] = ACTIONS(3805), - [anon_sym_SLASH] = ACTIONS(3803), - [anon_sym_PERCENT] = ACTIONS(3803), - [anon_sym_PIPE_PIPE] = ACTIONS(3795), - [anon_sym_AMP_AMP] = ACTIONS(3808), - [anon_sym_PIPE] = ACTIONS(3803), - [anon_sym_CARET] = ACTIONS(3803), - [anon_sym_AMP] = ACTIONS(3805), - [anon_sym_EQ_EQ] = ACTIONS(3795), - [anon_sym_BANG_EQ] = ACTIONS(3795), - [anon_sym_GT] = ACTIONS(3803), - [anon_sym_GT_EQ] = ACTIONS(3795), - [anon_sym_LT_EQ] = ACTIONS(3803), - [anon_sym_LT] = ACTIONS(3811), - [anon_sym_LT_LT] = ACTIONS(3803), - [anon_sym_GT_GT] = ACTIONS(3803), - [anon_sym_SEMI] = ACTIONS(3795), - [anon_sym_extern] = ACTIONS(3793), - [anon_sym___attribute__] = ACTIONS(3793), - [anon_sym_COLON_COLON] = ACTIONS(3814), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3801), - [anon_sym___declspec] = ACTIONS(3793), - [anon_sym___based] = ACTIONS(3793), - [anon_sym_LBRACE] = ACTIONS(3819), - [anon_sym_LBRACK] = ACTIONS(3805), - [anon_sym_EQ] = ACTIONS(3825), - [anon_sym_static] = ACTIONS(3793), - [anon_sym_register] = ACTIONS(3793), - [anon_sym_inline] = ACTIONS(3793), - [anon_sym_thread_local] = ACTIONS(3793), - [anon_sym_const] = ACTIONS(3793), - [anon_sym_volatile] = ACTIONS(3793), - [anon_sym_restrict] = ACTIONS(3793), - [anon_sym__Atomic] = ACTIONS(3793), - [anon_sym_mutable] = ACTIONS(3793), - [anon_sym_constexpr] = ACTIONS(3793), - [anon_sym_constinit] = ACTIONS(3793), - [anon_sym_consteval] = ACTIONS(3793), - [anon_sym_QMARK] = ACTIONS(3795), - [anon_sym_STAR_EQ] = ACTIONS(3829), - [anon_sym_SLASH_EQ] = ACTIONS(3829), - [anon_sym_PERCENT_EQ] = ACTIONS(3829), - [anon_sym_PLUS_EQ] = ACTIONS(3829), - [anon_sym_DASH_EQ] = ACTIONS(3829), - [anon_sym_LT_LT_EQ] = ACTIONS(3829), - [anon_sym_GT_GT_EQ] = ACTIONS(3829), - [anon_sym_AMP_EQ] = ACTIONS(3829), - [anon_sym_CARET_EQ] = ACTIONS(3829), - [anon_sym_PIPE_EQ] = ACTIONS(3829), - [anon_sym_and_eq] = ACTIONS(3825), - [anon_sym_or_eq] = ACTIONS(3825), - [anon_sym_xor_eq] = ACTIONS(3825), - [anon_sym_LT_EQ_GT] = ACTIONS(3795), - [anon_sym_or] = ACTIONS(3803), - [anon_sym_and] = ACTIONS(3803), - [anon_sym_bitor] = ACTIONS(3803), - [anon_sym_xor] = ACTIONS(3803), - [anon_sym_bitand] = ACTIONS(3803), - [anon_sym_not_eq] = ACTIONS(3803), - [anon_sym_DASH_DASH] = ACTIONS(3795), - [anon_sym_PLUS_PLUS] = ACTIONS(3795), - [anon_sym_DOT] = ACTIONS(3803), - [anon_sym_DASH_GT] = ACTIONS(3795), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3793), - [anon_sym_decltype] = ACTIONS(3793), - [anon_sym_virtual] = ACTIONS(3793), - [anon_sym_template] = ACTIONS(3793), - [anon_sym_operator] = ACTIONS(3793), + [sym__expression] = STATE(4502), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3579), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3579), + [sym_call_expression] = STATE(3579), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3579), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3579), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3579), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3633), + [anon_sym_LPAREN2] = ACTIONS(3635), + [anon_sym_BANG] = ACTIONS(3639), + [anon_sym_TILDE] = ACTIONS(3639), + [anon_sym_DASH] = ACTIONS(3637), + [anon_sym_PLUS] = ACTIONS(3637), + [anon_sym_STAR] = ACTIONS(3641), + [anon_sym_AMP] = ACTIONS(3641), + [anon_sym_COLON_COLON] = ACTIONS(3643), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_COLON] = ACTIONS(4280), + [anon_sym_not] = ACTIONS(3637), + [anon_sym_compl] = ACTIONS(3637), + [anon_sym_DASH_DASH] = ACTIONS(3645), + [anon_sym_PLUS_PLUS] = ACTIONS(3645), + [anon_sym_sizeof] = ACTIONS(3647), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(3649), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(3651), + [anon_sym_new] = ACTIONS(3631), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1767] = { - [sym_template_argument_list] = STATE(1893), - [sym_identifier] = ACTIONS(3793), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3795), - [anon_sym_COMMA] = ACTIONS(3795), - [anon_sym_LPAREN2] = ACTIONS(3808), - [anon_sym_TILDE] = ACTIONS(3801), - [anon_sym_DASH] = ACTIONS(3803), - [anon_sym_PLUS] = ACTIONS(3803), - [anon_sym_STAR] = ACTIONS(3805), - [anon_sym_SLASH] = ACTIONS(3803), - [anon_sym_PERCENT] = ACTIONS(3803), - [anon_sym_PIPE_PIPE] = ACTIONS(3795), - [anon_sym_AMP_AMP] = ACTIONS(3808), - [anon_sym_PIPE] = ACTIONS(3803), - [anon_sym_CARET] = ACTIONS(3803), - [anon_sym_AMP] = ACTIONS(3805), - [anon_sym_EQ_EQ] = ACTIONS(3795), - [anon_sym_BANG_EQ] = ACTIONS(3795), - [anon_sym_GT] = ACTIONS(3803), - [anon_sym_GT_EQ] = ACTIONS(3795), - [anon_sym_LT_EQ] = ACTIONS(3803), - [anon_sym_LT] = ACTIONS(3811), - [anon_sym_LT_LT] = ACTIONS(3803), - [anon_sym_GT_GT] = ACTIONS(3803), - [anon_sym_SEMI] = ACTIONS(3795), - [anon_sym_extern] = ACTIONS(3793), - [anon_sym___attribute__] = ACTIONS(3793), - [anon_sym_COLON_COLON] = ACTIONS(3814), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3801), - [anon_sym___declspec] = ACTIONS(3793), - [anon_sym___based] = ACTIONS(3793), - [anon_sym_LBRACE] = ACTIONS(3819), - [anon_sym_LBRACK] = ACTIONS(3805), - [anon_sym_EQ] = ACTIONS(3825), - [anon_sym_static] = ACTIONS(3793), - [anon_sym_register] = ACTIONS(3793), - [anon_sym_inline] = ACTIONS(3793), - [anon_sym_thread_local] = ACTIONS(3793), - [anon_sym_const] = ACTIONS(3793), - [anon_sym_volatile] = ACTIONS(3793), - [anon_sym_restrict] = ACTIONS(3793), - [anon_sym__Atomic] = ACTIONS(3793), - [anon_sym_mutable] = ACTIONS(3793), - [anon_sym_constexpr] = ACTIONS(3793), - [anon_sym_constinit] = ACTIONS(3793), - [anon_sym_consteval] = ACTIONS(3793), - [anon_sym_COLON] = ACTIONS(3853), - [anon_sym_QMARK] = ACTIONS(3795), - [anon_sym_STAR_EQ] = ACTIONS(3829), - [anon_sym_SLASH_EQ] = ACTIONS(3829), - [anon_sym_PERCENT_EQ] = ACTIONS(3829), - [anon_sym_PLUS_EQ] = ACTIONS(3829), - [anon_sym_DASH_EQ] = ACTIONS(3829), - [anon_sym_LT_LT_EQ] = ACTIONS(3829), - [anon_sym_GT_GT_EQ] = ACTIONS(3829), - [anon_sym_AMP_EQ] = ACTIONS(3829), - [anon_sym_CARET_EQ] = ACTIONS(3829), - [anon_sym_PIPE_EQ] = ACTIONS(3829), - [anon_sym_and_eq] = ACTIONS(3825), - [anon_sym_or_eq] = ACTIONS(3825), - [anon_sym_xor_eq] = ACTIONS(3825), - [anon_sym_LT_EQ_GT] = ACTIONS(3795), - [anon_sym_or] = ACTIONS(3803), - [anon_sym_and] = ACTIONS(3803), - [anon_sym_bitor] = ACTIONS(3803), - [anon_sym_xor] = ACTIONS(3803), - [anon_sym_bitand] = ACTIONS(3803), - [anon_sym_not_eq] = ACTIONS(3803), - [anon_sym_DASH_DASH] = ACTIONS(3795), - [anon_sym_PLUS_PLUS] = ACTIONS(3795), - [anon_sym_DOT] = ACTIONS(3803), - [anon_sym_DASH_GT] = ACTIONS(3795), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3793), - [anon_sym_decltype] = ACTIONS(3793), - [anon_sym_virtual] = ACTIONS(3793), - [anon_sym_template] = ACTIONS(3793), - [anon_sym_operator] = ACTIONS(3793), + [sym__expression] = STATE(3039), + [sym__expression_not_binary] = STATE(3021), + [sym_conditional_expression] = STATE(3021), + [sym_assignment_expression] = STATE(3021), + [sym_pointer_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_cast_expression] = STATE(3021), + [sym_sizeof_expression] = STATE(3021), + [sym_offsetof_expression] = STATE(3021), + [sym_generic_expression] = STATE(3021), + [sym_subscript_expression] = STATE(3021), + [sym_call_expression] = STATE(3021), + [sym_gnu_asm_expression] = STATE(3021), + [sym_field_expression] = STATE(3021), + [sym_compound_literal_expression] = STATE(3021), + [sym_parenthesized_expression] = STATE(3021), + [sym_char_literal] = STATE(2901), + [sym_concatenated_string] = STATE(2901), + [sym_string_literal] = STATE(2173), + [sym_null] = STATE(3021), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6616), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3021), + [sym_raw_string_literal] = STATE(2173), + [sym_co_await_expression] = STATE(3021), + [sym_new_expression] = STATE(3021), + [sym_delete_expression] = STATE(3021), + [sym_requires_clause] = STATE(3021), + [sym_requires_expression] = STATE(3021), + [sym_lambda_expression] = STATE(3021), + [sym_lambda_capture_specifier] = STATE(5188), + [sym_fold_expression] = STATE(3021), + [sym_parameter_pack_expansion] = STATE(3021), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3021), + [sym_qualified_type_identifier] = STATE(6616), + [sym_user_defined_literal] = STATE(3021), + [sym_identifier] = ACTIONS(1933), + [anon_sym_LPAREN2] = ACTIONS(1937), + [anon_sym_BANG] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(1941), + [anon_sym_DASH] = ACTIONS(1939), + [anon_sym_PLUS] = ACTIONS(1939), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(1945), + [anon_sym_LBRACK] = ACTIONS(1949), + [anon_sym_RBRACK] = ACTIONS(4282), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(1939), + [anon_sym_compl] = ACTIONS(1939), + [anon_sym_DASH_DASH] = ACTIONS(1953), + [anon_sym_PLUS_PLUS] = ACTIONS(1953), + [anon_sym_sizeof] = ACTIONS(1955), + [anon_sym_offsetof] = ACTIONS(1957), + [anon_sym__Generic] = ACTIONS(1959), + [anon_sym_asm] = ACTIONS(1961), + [anon_sym___asm__] = ACTIONS(1961), + [sym_number_literal] = ACTIONS(1963), + [anon_sym_L_SQUOTE] = ACTIONS(1965), + [anon_sym_u_SQUOTE] = ACTIONS(1965), + [anon_sym_U_SQUOTE] = ACTIONS(1965), + [anon_sym_u8_SQUOTE] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_L_DQUOTE] = ACTIONS(1967), + [anon_sym_u_DQUOTE] = ACTIONS(1967), + [anon_sym_U_DQUOTE] = ACTIONS(1967), + [anon_sym_u8_DQUOTE] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(1967), + [sym_true] = ACTIONS(1969), + [sym_false] = ACTIONS(1969), + [anon_sym_NULL] = ACTIONS(1971), + [anon_sym_nullptr] = ACTIONS(1971), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(1975), + [anon_sym_R_DQUOTE] = ACTIONS(1977), + [anon_sym_LR_DQUOTE] = ACTIONS(1977), + [anon_sym_uR_DQUOTE] = ACTIONS(1977), + [anon_sym_UR_DQUOTE] = ACTIONS(1977), + [anon_sym_u8R_DQUOTE] = ACTIONS(1977), + [anon_sym_co_await] = ACTIONS(1979), + [anon_sym_new] = ACTIONS(1981), + [anon_sym_requires] = ACTIONS(1983), + [sym_this] = ACTIONS(1969), }, [1768] = { - [sym_template_argument_list] = STATE(1793), - [sym_identifier] = ACTIONS(3831), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3843), - [anon_sym_COMMA] = ACTIONS(3843), - [anon_sym_LPAREN2] = ACTIONS(3833), - [anon_sym_TILDE] = ACTIONS(3836), - [anon_sym_DASH] = ACTIONS(3838), - [anon_sym_PLUS] = ACTIONS(3838), - [anon_sym_STAR] = ACTIONS(3840), - [anon_sym_SLASH] = ACTIONS(3838), - [anon_sym_PERCENT] = ACTIONS(3838), - [anon_sym_PIPE_PIPE] = ACTIONS(3843), - [anon_sym_AMP_AMP] = ACTIONS(3833), - [anon_sym_PIPE] = ACTIONS(3838), - [anon_sym_CARET] = ACTIONS(3838), - [anon_sym_AMP] = ACTIONS(3840), - [anon_sym_EQ_EQ] = ACTIONS(3843), - [anon_sym_BANG_EQ] = ACTIONS(3843), - [anon_sym_GT] = ACTIONS(3838), - [anon_sym_GT_EQ] = ACTIONS(3843), - [anon_sym_LT_EQ] = ACTIONS(3838), - [anon_sym_LT] = ACTIONS(3855), - [anon_sym_LT_LT] = ACTIONS(3838), - [anon_sym_GT_GT] = ACTIONS(3838), - [anon_sym_SEMI] = ACTIONS(3833), - [anon_sym_extern] = ACTIONS(3831), - [anon_sym___attribute__] = ACTIONS(3831), - [anon_sym_COLON_COLON] = ACTIONS(3814), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3833), - [anon_sym___declspec] = ACTIONS(3831), - [anon_sym___based] = ACTIONS(3831), - [anon_sym_LBRACE] = ACTIONS(3836), - [anon_sym_RBRACE] = ACTIONS(3843), - [anon_sym_LBRACK] = ACTIONS(3840), - [anon_sym_EQ] = ACTIONS(3838), - [anon_sym_static] = ACTIONS(3831), - [anon_sym_register] = ACTIONS(3831), - [anon_sym_inline] = ACTIONS(3831), - [anon_sym_thread_local] = ACTIONS(3831), - [anon_sym_const] = ACTIONS(3831), - [anon_sym_volatile] = ACTIONS(3831), - [anon_sym_restrict] = ACTIONS(3831), - [anon_sym__Atomic] = ACTIONS(3831), - [anon_sym_mutable] = ACTIONS(3831), - [anon_sym_constexpr] = ACTIONS(3831), - [anon_sym_constinit] = ACTIONS(3831), - [anon_sym_consteval] = ACTIONS(3831), - [anon_sym_QMARK] = ACTIONS(3843), - [anon_sym_STAR_EQ] = ACTIONS(3843), - [anon_sym_SLASH_EQ] = ACTIONS(3843), - [anon_sym_PERCENT_EQ] = ACTIONS(3843), - [anon_sym_PLUS_EQ] = ACTIONS(3843), - [anon_sym_DASH_EQ] = ACTIONS(3843), - [anon_sym_LT_LT_EQ] = ACTIONS(3843), - [anon_sym_GT_GT_EQ] = ACTIONS(3843), - [anon_sym_AMP_EQ] = ACTIONS(3843), - [anon_sym_CARET_EQ] = ACTIONS(3843), - [anon_sym_PIPE_EQ] = ACTIONS(3843), - [anon_sym_and_eq] = ACTIONS(3838), - [anon_sym_or_eq] = ACTIONS(3838), - [anon_sym_xor_eq] = ACTIONS(3838), - [anon_sym_LT_EQ_GT] = ACTIONS(3843), - [anon_sym_or] = ACTIONS(3838), - [anon_sym_and] = ACTIONS(3838), - [anon_sym_bitor] = ACTIONS(3838), - [anon_sym_xor] = ACTIONS(3838), - [anon_sym_bitand] = ACTIONS(3838), - [anon_sym_not_eq] = ACTIONS(3838), - [anon_sym_DASH_DASH] = ACTIONS(3843), - [anon_sym_PLUS_PLUS] = ACTIONS(3843), - [anon_sym_DOT] = ACTIONS(3838), - [anon_sym_DASH_GT] = ACTIONS(3843), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3831), - [anon_sym_decltype] = ACTIONS(3831), - [anon_sym_virtual] = ACTIONS(3831), - [anon_sym_template] = ACTIONS(3831), - [anon_sym_operator] = ACTIONS(3831), + [sym__expression] = STATE(4340), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3579), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3579), + [sym_call_expression] = STATE(3579), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3579), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3579), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3579), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3633), + [anon_sym_LPAREN2] = ACTIONS(3635), + [anon_sym_BANG] = ACTIONS(3639), + [anon_sym_TILDE] = ACTIONS(3639), + [anon_sym_DASH] = ACTIONS(3637), + [anon_sym_PLUS] = ACTIONS(3637), + [anon_sym_STAR] = ACTIONS(3641), + [anon_sym_AMP] = ACTIONS(3641), + [anon_sym_COLON_COLON] = ACTIONS(3643), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_COLON] = ACTIONS(4284), + [anon_sym_not] = ACTIONS(3637), + [anon_sym_compl] = ACTIONS(3637), + [anon_sym_DASH_DASH] = ACTIONS(3645), + [anon_sym_PLUS_PLUS] = ACTIONS(3645), + [anon_sym_sizeof] = ACTIONS(3647), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(3649), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(3651), + [anon_sym_new] = ACTIONS(3631), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1769] = { - [sym_identifier] = ACTIONS(3858), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3860), - [anon_sym_COMMA] = ACTIONS(3860), - [anon_sym_RPAREN] = ACTIONS(3860), - [anon_sym_LPAREN2] = ACTIONS(3860), - [anon_sym_TILDE] = ACTIONS(3860), - [anon_sym_DASH] = ACTIONS(3858), - [anon_sym_PLUS] = ACTIONS(3858), - [anon_sym_STAR] = ACTIONS(3858), - [anon_sym_SLASH] = ACTIONS(3858), - [anon_sym_PERCENT] = ACTIONS(3858), - [anon_sym_PIPE_PIPE] = ACTIONS(3860), - [anon_sym_AMP_AMP] = ACTIONS(3860), - [anon_sym_PIPE] = ACTIONS(3858), - [anon_sym_CARET] = ACTIONS(3858), - [anon_sym_AMP] = ACTIONS(3858), - [anon_sym_EQ_EQ] = ACTIONS(3860), - [anon_sym_BANG_EQ] = ACTIONS(3860), - [anon_sym_GT] = ACTIONS(3858), - [anon_sym_GT_EQ] = ACTIONS(3860), - [anon_sym_LT_EQ] = ACTIONS(3858), - [anon_sym_LT] = ACTIONS(3858), - [anon_sym_LT_LT] = ACTIONS(3858), - [anon_sym_GT_GT] = ACTIONS(3858), - [anon_sym_SEMI] = ACTIONS(3860), - [anon_sym_extern] = ACTIONS(3858), - [anon_sym___attribute__] = ACTIONS(3858), - [anon_sym_COLON_COLON] = ACTIONS(3860), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3860), - [anon_sym___declspec] = ACTIONS(3858), - [anon_sym___based] = ACTIONS(3858), - [anon_sym_LBRACE] = ACTIONS(3860), - [anon_sym_RBRACE] = ACTIONS(3860), - [anon_sym_LBRACK] = ACTIONS(3858), - [anon_sym_EQ] = ACTIONS(3858), - [anon_sym_static] = ACTIONS(3858), - [anon_sym_register] = ACTIONS(3858), - [anon_sym_inline] = ACTIONS(3858), - [anon_sym_thread_local] = ACTIONS(3858), - [anon_sym_const] = ACTIONS(3858), - [anon_sym_volatile] = ACTIONS(3858), - [anon_sym_restrict] = ACTIONS(3858), - [anon_sym__Atomic] = ACTIONS(3858), - [anon_sym_mutable] = ACTIONS(3858), - [anon_sym_constexpr] = ACTIONS(3858), - [anon_sym_constinit] = ACTIONS(3858), - [anon_sym_consteval] = ACTIONS(3858), - [anon_sym_QMARK] = ACTIONS(3860), - [anon_sym_STAR_EQ] = ACTIONS(3860), - [anon_sym_SLASH_EQ] = ACTIONS(3860), - [anon_sym_PERCENT_EQ] = ACTIONS(3860), - [anon_sym_PLUS_EQ] = ACTIONS(3860), - [anon_sym_DASH_EQ] = ACTIONS(3860), - [anon_sym_LT_LT_EQ] = ACTIONS(3860), - [anon_sym_GT_GT_EQ] = ACTIONS(3860), - [anon_sym_AMP_EQ] = ACTIONS(3860), - [anon_sym_CARET_EQ] = ACTIONS(3860), - [anon_sym_PIPE_EQ] = ACTIONS(3860), - [anon_sym_and_eq] = ACTIONS(3858), - [anon_sym_or_eq] = ACTIONS(3858), - [anon_sym_xor_eq] = ACTIONS(3858), - [anon_sym_LT_EQ_GT] = ACTIONS(3860), - [anon_sym_or] = ACTIONS(3858), - [anon_sym_and] = ACTIONS(3858), - [anon_sym_bitor] = ACTIONS(3858), - [anon_sym_xor] = ACTIONS(3858), - [anon_sym_bitand] = ACTIONS(3858), - [anon_sym_not_eq] = ACTIONS(3858), - [anon_sym_DASH_DASH] = ACTIONS(3860), - [anon_sym_PLUS_PLUS] = ACTIONS(3860), - [anon_sym_DOT] = ACTIONS(3858), - [anon_sym_DASH_GT] = ACTIONS(3860), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3858), - [anon_sym_decltype] = ACTIONS(3858), - [anon_sym_virtual] = ACTIONS(3858), - [anon_sym_template] = ACTIONS(3858), - [anon_sym_operator] = ACTIONS(3858), + [sym__expression] = STATE(3510), + [sym__expression_not_binary] = STATE(3565), + [sym_conditional_expression] = STATE(3565), + [sym_assignment_expression] = STATE(3565), + [sym_pointer_expression] = STATE(3220), + [sym_unary_expression] = STATE(3565), + [sym_binary_expression] = STATE(3565), + [sym_update_expression] = STATE(3565), + [sym_cast_expression] = STATE(3565), + [sym_sizeof_expression] = STATE(3565), + [sym_offsetof_expression] = STATE(3565), + [sym_generic_expression] = STATE(3565), + [sym_subscript_expression] = STATE(3220), + [sym_call_expression] = STATE(3220), + [sym_gnu_asm_expression] = STATE(3565), + [sym_field_expression] = STATE(3220), + [sym_compound_literal_expression] = STATE(3565), + [sym_parenthesized_expression] = STATE(3220), + [sym_char_literal] = STATE(3429), + [sym_concatenated_string] = STATE(3429), + [sym_string_literal] = STATE(2248), + [sym_null] = STATE(3565), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6847), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3565), + [sym_raw_string_literal] = STATE(2248), + [sym_co_await_expression] = STATE(3565), + [sym_new_expression] = STATE(3565), + [sym_delete_expression] = STATE(3565), + [sym_requires_clause] = STATE(3565), + [sym_requires_expression] = STATE(3565), + [sym_lambda_expression] = STATE(3565), + [sym_lambda_capture_specifier] = STATE(5204), + [sym_fold_expression] = STATE(3565), + [sym_parameter_pack_expansion] = STATE(3565), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5232), + [sym_qualified_identifier] = STATE(3220), + [sym_qualified_type_identifier] = STATE(6847), + [sym_user_defined_literal] = STATE(3565), + [sym_identifier] = ACTIONS(2095), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4286), + [anon_sym_LPAREN2] = ACTIONS(1841), + [anon_sym_BANG] = ACTIONS(1843), + [anon_sym_TILDE] = ACTIONS(1843), + [anon_sym_DASH] = ACTIONS(1845), + [anon_sym_PLUS] = ACTIONS(1845), + [anon_sym_STAR] = ACTIONS(1847), + [anon_sym_AMP] = ACTIONS(1847), + [anon_sym_COLON_COLON] = ACTIONS(1849), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1999), + [anon_sym_not] = ACTIONS(1845), + [anon_sym_compl] = ACTIONS(1845), + [anon_sym_DASH_DASH] = ACTIONS(1861), + [anon_sym_PLUS_PLUS] = ACTIONS(1861), + [anon_sym_sizeof] = ACTIONS(1863), + [anon_sym_offsetof] = ACTIONS(1865), + [anon_sym__Generic] = ACTIONS(1867), + [anon_sym_asm] = ACTIONS(1869), + [anon_sym___asm__] = ACTIONS(1869), + [sym_number_literal] = ACTIONS(1871), + [anon_sym_L_SQUOTE] = ACTIONS(1873), + [anon_sym_u_SQUOTE] = ACTIONS(1873), + [anon_sym_U_SQUOTE] = ACTIONS(1873), + [anon_sym_u8_SQUOTE] = ACTIONS(1873), + [anon_sym_SQUOTE] = ACTIONS(1873), + [anon_sym_L_DQUOTE] = ACTIONS(1875), + [anon_sym_u_DQUOTE] = ACTIONS(1875), + [anon_sym_U_DQUOTE] = ACTIONS(1875), + [anon_sym_u8_DQUOTE] = ACTIONS(1875), + [anon_sym_DQUOTE] = ACTIONS(1875), + [sym_true] = ACTIONS(1877), + [sym_false] = ACTIONS(1877), + [anon_sym_NULL] = ACTIONS(1879), + [anon_sym_nullptr] = ACTIONS(1879), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(1883), + [anon_sym_R_DQUOTE] = ACTIONS(1885), + [anon_sym_LR_DQUOTE] = ACTIONS(1885), + [anon_sym_uR_DQUOTE] = ACTIONS(1885), + [anon_sym_UR_DQUOTE] = ACTIONS(1885), + [anon_sym_u8R_DQUOTE] = ACTIONS(1885), + [anon_sym_co_await] = ACTIONS(1887), + [anon_sym_new] = ACTIONS(1889), + [anon_sym_requires] = ACTIONS(1891), + [sym_this] = ACTIONS(1877), }, [1770] = { - [sym_identifier] = ACTIONS(3862), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3864), - [anon_sym_COMMA] = ACTIONS(3864), - [anon_sym_RPAREN] = ACTIONS(3864), - [anon_sym_LPAREN2] = ACTIONS(3864), - [anon_sym_TILDE] = ACTIONS(3864), - [anon_sym_DASH] = ACTIONS(3862), - [anon_sym_PLUS] = ACTIONS(3862), - [anon_sym_STAR] = ACTIONS(3862), - [anon_sym_SLASH] = ACTIONS(3862), - [anon_sym_PERCENT] = ACTIONS(3862), - [anon_sym_PIPE_PIPE] = ACTIONS(3864), - [anon_sym_AMP_AMP] = ACTIONS(3864), - [anon_sym_PIPE] = ACTIONS(3862), - [anon_sym_CARET] = ACTIONS(3862), - [anon_sym_AMP] = ACTIONS(3862), - [anon_sym_EQ_EQ] = ACTIONS(3864), - [anon_sym_BANG_EQ] = ACTIONS(3864), - [anon_sym_GT] = ACTIONS(3862), - [anon_sym_GT_EQ] = ACTIONS(3864), - [anon_sym_LT_EQ] = ACTIONS(3862), - [anon_sym_LT] = ACTIONS(3862), - [anon_sym_LT_LT] = ACTIONS(3862), - [anon_sym_GT_GT] = ACTIONS(3862), - [anon_sym_SEMI] = ACTIONS(3864), - [anon_sym_extern] = ACTIONS(3862), - [anon_sym___attribute__] = ACTIONS(3862), - [anon_sym_COLON_COLON] = ACTIONS(3864), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3864), - [anon_sym___declspec] = ACTIONS(3862), - [anon_sym___based] = ACTIONS(3862), - [anon_sym_LBRACE] = ACTIONS(3864), - [anon_sym_RBRACE] = ACTIONS(3864), - [anon_sym_LBRACK] = ACTIONS(3862), - [anon_sym_EQ] = ACTIONS(3862), - [anon_sym_static] = ACTIONS(3862), - [anon_sym_register] = ACTIONS(3862), - [anon_sym_inline] = ACTIONS(3862), - [anon_sym_thread_local] = ACTIONS(3862), - [anon_sym_const] = ACTIONS(3862), - [anon_sym_volatile] = ACTIONS(3862), - [anon_sym_restrict] = ACTIONS(3862), - [anon_sym__Atomic] = ACTIONS(3862), - [anon_sym_mutable] = ACTIONS(3862), - [anon_sym_constexpr] = ACTIONS(3862), - [anon_sym_constinit] = ACTIONS(3862), - [anon_sym_consteval] = ACTIONS(3862), - [anon_sym_QMARK] = ACTIONS(3864), - [anon_sym_STAR_EQ] = ACTIONS(3864), - [anon_sym_SLASH_EQ] = ACTIONS(3864), - [anon_sym_PERCENT_EQ] = ACTIONS(3864), - [anon_sym_PLUS_EQ] = ACTIONS(3864), - [anon_sym_DASH_EQ] = ACTIONS(3864), - [anon_sym_LT_LT_EQ] = ACTIONS(3864), - [anon_sym_GT_GT_EQ] = ACTIONS(3864), - [anon_sym_AMP_EQ] = ACTIONS(3864), - [anon_sym_CARET_EQ] = ACTIONS(3864), - [anon_sym_PIPE_EQ] = ACTIONS(3864), - [anon_sym_and_eq] = ACTIONS(3862), - [anon_sym_or_eq] = ACTIONS(3862), - [anon_sym_xor_eq] = ACTIONS(3862), - [anon_sym_LT_EQ_GT] = ACTIONS(3864), - [anon_sym_or] = ACTIONS(3862), - [anon_sym_and] = ACTIONS(3862), - [anon_sym_bitor] = ACTIONS(3862), - [anon_sym_xor] = ACTIONS(3862), - [anon_sym_bitand] = ACTIONS(3862), - [anon_sym_not_eq] = ACTIONS(3862), - [anon_sym_DASH_DASH] = ACTIONS(3864), - [anon_sym_PLUS_PLUS] = ACTIONS(3864), - [anon_sym_DOT] = ACTIONS(3862), - [anon_sym_DASH_GT] = ACTIONS(3864), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3862), - [anon_sym_decltype] = ACTIONS(3862), - [anon_sym_virtual] = ACTIONS(3862), - [anon_sym_template] = ACTIONS(3862), - [anon_sym_operator] = ACTIONS(3862), + [sym__expression] = STATE(3511), + [sym__expression_not_binary] = STATE(3565), + [sym_conditional_expression] = STATE(3565), + [sym_assignment_expression] = STATE(3565), + [sym_pointer_expression] = STATE(3220), + [sym_unary_expression] = STATE(3565), + [sym_binary_expression] = STATE(3565), + [sym_update_expression] = STATE(3565), + [sym_cast_expression] = STATE(3565), + [sym_sizeof_expression] = STATE(3565), + [sym_offsetof_expression] = STATE(3565), + [sym_generic_expression] = STATE(3565), + [sym_subscript_expression] = STATE(3220), + [sym_call_expression] = STATE(3220), + [sym_gnu_asm_expression] = STATE(3565), + [sym_field_expression] = STATE(3220), + [sym_compound_literal_expression] = STATE(3565), + [sym_parenthesized_expression] = STATE(3220), + [sym_char_literal] = STATE(3429), + [sym_concatenated_string] = STATE(3429), + [sym_string_literal] = STATE(2248), + [sym_null] = STATE(3565), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6847), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3565), + [sym_raw_string_literal] = STATE(2248), + [sym_co_await_expression] = STATE(3565), + [sym_new_expression] = STATE(3565), + [sym_delete_expression] = STATE(3565), + [sym_requires_clause] = STATE(3565), + [sym_requires_expression] = STATE(3565), + [sym_lambda_expression] = STATE(3565), + [sym_lambda_capture_specifier] = STATE(5204), + [sym_fold_expression] = STATE(3565), + [sym_parameter_pack_expansion] = STATE(3565), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5232), + [sym_qualified_identifier] = STATE(3220), + [sym_qualified_type_identifier] = STATE(6847), + [sym_user_defined_literal] = STATE(3565), + [sym_identifier] = ACTIONS(2095), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4289), + [anon_sym_LPAREN2] = ACTIONS(1841), + [anon_sym_BANG] = ACTIONS(1843), + [anon_sym_TILDE] = ACTIONS(1843), + [anon_sym_DASH] = ACTIONS(1845), + [anon_sym_PLUS] = ACTIONS(1845), + [anon_sym_STAR] = ACTIONS(1847), + [anon_sym_AMP] = ACTIONS(1847), + [anon_sym_COLON_COLON] = ACTIONS(1849), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1999), + [anon_sym_not] = ACTIONS(1845), + [anon_sym_compl] = ACTIONS(1845), + [anon_sym_DASH_DASH] = ACTIONS(1861), + [anon_sym_PLUS_PLUS] = ACTIONS(1861), + [anon_sym_sizeof] = ACTIONS(1863), + [anon_sym_offsetof] = ACTIONS(1865), + [anon_sym__Generic] = ACTIONS(1867), + [anon_sym_asm] = ACTIONS(1869), + [anon_sym___asm__] = ACTIONS(1869), + [sym_number_literal] = ACTIONS(1871), + [anon_sym_L_SQUOTE] = ACTIONS(1873), + [anon_sym_u_SQUOTE] = ACTIONS(1873), + [anon_sym_U_SQUOTE] = ACTIONS(1873), + [anon_sym_u8_SQUOTE] = ACTIONS(1873), + [anon_sym_SQUOTE] = ACTIONS(1873), + [anon_sym_L_DQUOTE] = ACTIONS(1875), + [anon_sym_u_DQUOTE] = ACTIONS(1875), + [anon_sym_U_DQUOTE] = ACTIONS(1875), + [anon_sym_u8_DQUOTE] = ACTIONS(1875), + [anon_sym_DQUOTE] = ACTIONS(1875), + [sym_true] = ACTIONS(1877), + [sym_false] = ACTIONS(1877), + [anon_sym_NULL] = ACTIONS(1879), + [anon_sym_nullptr] = ACTIONS(1879), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(1883), + [anon_sym_R_DQUOTE] = ACTIONS(1885), + [anon_sym_LR_DQUOTE] = ACTIONS(1885), + [anon_sym_uR_DQUOTE] = ACTIONS(1885), + [anon_sym_UR_DQUOTE] = ACTIONS(1885), + [anon_sym_u8R_DQUOTE] = ACTIONS(1885), + [anon_sym_co_await] = ACTIONS(1887), + [anon_sym_new] = ACTIONS(1889), + [anon_sym_requires] = ACTIONS(1891), + [sym_this] = ACTIONS(1877), }, [1771] = { - [sym_identifier] = ACTIONS(3866), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3868), - [anon_sym_COMMA] = ACTIONS(3868), - [anon_sym_RPAREN] = ACTIONS(3868), - [anon_sym_LPAREN2] = ACTIONS(3868), - [anon_sym_TILDE] = ACTIONS(3868), - [anon_sym_DASH] = ACTIONS(3866), - [anon_sym_PLUS] = ACTIONS(3866), - [anon_sym_STAR] = ACTIONS(3866), - [anon_sym_SLASH] = ACTIONS(3866), - [anon_sym_PERCENT] = ACTIONS(3866), - [anon_sym_PIPE_PIPE] = ACTIONS(3868), - [anon_sym_AMP_AMP] = ACTIONS(3868), - [anon_sym_PIPE] = ACTIONS(3866), - [anon_sym_CARET] = ACTIONS(3866), - [anon_sym_AMP] = ACTIONS(3866), - [anon_sym_EQ_EQ] = ACTIONS(3868), - [anon_sym_BANG_EQ] = ACTIONS(3868), - [anon_sym_GT] = ACTIONS(3866), - [anon_sym_GT_EQ] = ACTIONS(3868), - [anon_sym_LT_EQ] = ACTIONS(3866), - [anon_sym_LT] = ACTIONS(3866), - [anon_sym_LT_LT] = ACTIONS(3866), - [anon_sym_GT_GT] = ACTIONS(3866), - [anon_sym_extern] = ACTIONS(3866), - [anon_sym___attribute__] = ACTIONS(3866), - [anon_sym_COLON_COLON] = ACTIONS(3868), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3868), - [anon_sym___declspec] = ACTIONS(3866), - [anon_sym___based] = ACTIONS(3866), - [anon_sym_LBRACE] = ACTIONS(3868), - [anon_sym_LBRACK] = ACTIONS(3866), - [anon_sym_EQ] = ACTIONS(3866), - [anon_sym_static] = ACTIONS(3866), - [anon_sym_register] = ACTIONS(3866), - [anon_sym_inline] = ACTIONS(3866), - [anon_sym_thread_local] = ACTIONS(3866), - [anon_sym_const] = ACTIONS(3866), - [anon_sym_volatile] = ACTIONS(3866), - [anon_sym_restrict] = ACTIONS(3866), - [anon_sym__Atomic] = ACTIONS(3866), - [anon_sym_mutable] = ACTIONS(3866), - [anon_sym_constexpr] = ACTIONS(3866), - [anon_sym_constinit] = ACTIONS(3866), - [anon_sym_consteval] = ACTIONS(3866), - [anon_sym_QMARK] = ACTIONS(3868), - [anon_sym_STAR_EQ] = ACTIONS(3868), - [anon_sym_SLASH_EQ] = ACTIONS(3868), - [anon_sym_PERCENT_EQ] = ACTIONS(3868), - [anon_sym_PLUS_EQ] = ACTIONS(3868), - [anon_sym_DASH_EQ] = ACTIONS(3868), - [anon_sym_LT_LT_EQ] = ACTIONS(3868), - [anon_sym_GT_GT_EQ] = ACTIONS(3868), - [anon_sym_AMP_EQ] = ACTIONS(3868), - [anon_sym_CARET_EQ] = ACTIONS(3868), - [anon_sym_PIPE_EQ] = ACTIONS(3868), - [anon_sym_and_eq] = ACTIONS(3866), - [anon_sym_or_eq] = ACTIONS(3866), - [anon_sym_xor_eq] = ACTIONS(3866), - [anon_sym_LT_EQ_GT] = ACTIONS(3868), - [anon_sym_or] = ACTIONS(3866), - [anon_sym_and] = ACTIONS(3866), - [anon_sym_bitor] = ACTIONS(3866), - [anon_sym_xor] = ACTIONS(3866), - [anon_sym_bitand] = ACTIONS(3866), - [anon_sym_not_eq] = ACTIONS(3866), - [anon_sym_DASH_DASH] = ACTIONS(3868), - [anon_sym_PLUS_PLUS] = ACTIONS(3868), - [anon_sym_DOT] = ACTIONS(3866), - [anon_sym_DASH_GT] = ACTIONS(3866), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3866), - [anon_sym_decltype] = ACTIONS(3866), - [anon_sym_virtual] = ACTIONS(3866), - [anon_sym_template] = ACTIONS(3866), - [anon_sym_operator] = ACTIONS(3866), - [anon_sym_DOT_STAR] = ACTIONS(3868), - [anon_sym_DASH_GT_STAR] = ACTIONS(3868), + [sym__expression] = STATE(3039), + [sym__expression_not_binary] = STATE(3021), + [sym_conditional_expression] = STATE(3021), + [sym_assignment_expression] = STATE(3021), + [sym_pointer_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_cast_expression] = STATE(3021), + [sym_sizeof_expression] = STATE(3021), + [sym_offsetof_expression] = STATE(3021), + [sym_generic_expression] = STATE(3021), + [sym_subscript_expression] = STATE(3021), + [sym_call_expression] = STATE(3021), + [sym_gnu_asm_expression] = STATE(3021), + [sym_field_expression] = STATE(3021), + [sym_compound_literal_expression] = STATE(3021), + [sym_parenthesized_expression] = STATE(3021), + [sym_char_literal] = STATE(2901), + [sym_concatenated_string] = STATE(2901), + [sym_string_literal] = STATE(2173), + [sym_null] = STATE(3021), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6616), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3021), + [sym_raw_string_literal] = STATE(2173), + [sym_co_await_expression] = STATE(3021), + [sym_new_expression] = STATE(3021), + [sym_delete_expression] = STATE(3021), + [sym_requires_clause] = STATE(3021), + [sym_requires_expression] = STATE(3021), + [sym_lambda_expression] = STATE(3021), + [sym_lambda_capture_specifier] = STATE(5188), + [sym_fold_expression] = STATE(3021), + [sym_parameter_pack_expansion] = STATE(3021), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3021), + [sym_qualified_type_identifier] = STATE(6616), + [sym_user_defined_literal] = STATE(3021), + [sym_identifier] = ACTIONS(1933), + [anon_sym_LPAREN2] = ACTIONS(1937), + [anon_sym_BANG] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(1941), + [anon_sym_DASH] = ACTIONS(1939), + [anon_sym_PLUS] = ACTIONS(1939), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(1945), + [anon_sym_LBRACK] = ACTIONS(1949), + [anon_sym_RBRACK] = ACTIONS(4292), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(1939), + [anon_sym_compl] = ACTIONS(1939), + [anon_sym_DASH_DASH] = ACTIONS(1953), + [anon_sym_PLUS_PLUS] = ACTIONS(1953), + [anon_sym_sizeof] = ACTIONS(1955), + [anon_sym_offsetof] = ACTIONS(1957), + [anon_sym__Generic] = ACTIONS(1959), + [anon_sym_asm] = ACTIONS(1961), + [anon_sym___asm__] = ACTIONS(1961), + [sym_number_literal] = ACTIONS(1963), + [anon_sym_L_SQUOTE] = ACTIONS(1965), + [anon_sym_u_SQUOTE] = ACTIONS(1965), + [anon_sym_U_SQUOTE] = ACTIONS(1965), + [anon_sym_u8_SQUOTE] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_L_DQUOTE] = ACTIONS(1967), + [anon_sym_u_DQUOTE] = ACTIONS(1967), + [anon_sym_U_DQUOTE] = ACTIONS(1967), + [anon_sym_u8_DQUOTE] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(1967), + [sym_true] = ACTIONS(1969), + [sym_false] = ACTIONS(1969), + [anon_sym_NULL] = ACTIONS(1971), + [anon_sym_nullptr] = ACTIONS(1971), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(1975), + [anon_sym_R_DQUOTE] = ACTIONS(1977), + [anon_sym_LR_DQUOTE] = ACTIONS(1977), + [anon_sym_uR_DQUOTE] = ACTIONS(1977), + [anon_sym_UR_DQUOTE] = ACTIONS(1977), + [anon_sym_u8R_DQUOTE] = ACTIONS(1977), + [anon_sym_co_await] = ACTIONS(1979), + [anon_sym_new] = ACTIONS(1981), + [anon_sym_requires] = ACTIONS(1983), + [sym_this] = ACTIONS(1969), }, [1772] = { - [sym_identifier] = ACTIONS(3870), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3872), - [anon_sym_COMMA] = ACTIONS(3872), - [anon_sym_RPAREN] = ACTIONS(3872), - [anon_sym_LPAREN2] = ACTIONS(3872), - [anon_sym_TILDE] = ACTIONS(3875), - [anon_sym_DASH] = ACTIONS(3877), - [anon_sym_PLUS] = ACTIONS(3877), - [anon_sym_STAR] = ACTIONS(3879), - [anon_sym_SLASH] = ACTIONS(3877), - [anon_sym_PERCENT] = ACTIONS(3877), - [anon_sym_PIPE_PIPE] = ACTIONS(3882), - [anon_sym_AMP_AMP] = ACTIONS(3872), - [anon_sym_PIPE] = ACTIONS(3877), - [anon_sym_CARET] = ACTIONS(3877), - [anon_sym_AMP] = ACTIONS(3879), - [anon_sym_EQ_EQ] = ACTIONS(3882), - [anon_sym_BANG_EQ] = ACTIONS(3882), - [anon_sym_GT] = ACTIONS(3877), - [anon_sym_GT_EQ] = ACTIONS(3882), - [anon_sym_LT_EQ] = ACTIONS(3877), - [anon_sym_LT] = ACTIONS(3877), - [anon_sym_LT_LT] = ACTIONS(3877), - [anon_sym_GT_GT] = ACTIONS(3877), - [anon_sym_extern] = ACTIONS(3870), - [anon_sym___attribute__] = ACTIONS(3870), - [anon_sym_COLON_COLON] = ACTIONS(3875), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3875), - [anon_sym___declspec] = ACTIONS(3870), - [anon_sym___based] = ACTIONS(3870), - [anon_sym_LBRACE] = ACTIONS(3875), - [anon_sym_LBRACK] = ACTIONS(3879), - [anon_sym_EQ] = ACTIONS(3879), - [anon_sym_static] = ACTIONS(3870), - [anon_sym_register] = ACTIONS(3870), - [anon_sym_inline] = ACTIONS(3870), - [anon_sym_thread_local] = ACTIONS(3870), - [anon_sym_const] = ACTIONS(3870), - [anon_sym_volatile] = ACTIONS(3870), - [anon_sym_restrict] = ACTIONS(3870), - [anon_sym__Atomic] = ACTIONS(3870), - [anon_sym_mutable] = ACTIONS(3870), - [anon_sym_constexpr] = ACTIONS(3870), - [anon_sym_constinit] = ACTIONS(3870), - [anon_sym_consteval] = ACTIONS(3870), - [anon_sym_QMARK] = ACTIONS(3882), - [anon_sym_STAR_EQ] = ACTIONS(3882), - [anon_sym_SLASH_EQ] = ACTIONS(3882), - [anon_sym_PERCENT_EQ] = ACTIONS(3882), - [anon_sym_PLUS_EQ] = ACTIONS(3882), - [anon_sym_DASH_EQ] = ACTIONS(3882), - [anon_sym_LT_LT_EQ] = ACTIONS(3882), - [anon_sym_GT_GT_EQ] = ACTIONS(3882), - [anon_sym_AMP_EQ] = ACTIONS(3882), - [anon_sym_CARET_EQ] = ACTIONS(3882), - [anon_sym_PIPE_EQ] = ACTIONS(3882), - [anon_sym_and_eq] = ACTIONS(3877), - [anon_sym_or_eq] = ACTIONS(3877), - [anon_sym_xor_eq] = ACTIONS(3877), - [anon_sym_LT_EQ_GT] = ACTIONS(3882), - [anon_sym_or] = ACTIONS(3877), - [anon_sym_and] = ACTIONS(3877), - [anon_sym_bitor] = ACTIONS(3877), - [anon_sym_xor] = ACTIONS(3877), - [anon_sym_bitand] = ACTIONS(3877), - [anon_sym_not_eq] = ACTIONS(3877), - [anon_sym_DASH_DASH] = ACTIONS(3882), - [anon_sym_PLUS_PLUS] = ACTIONS(3882), - [anon_sym_DOT] = ACTIONS(3877), - [anon_sym_DASH_GT] = ACTIONS(3877), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3870), - [anon_sym_decltype] = ACTIONS(3870), - [anon_sym_virtual] = ACTIONS(3870), - [anon_sym_template] = ACTIONS(3870), - [anon_sym_operator] = ACTIONS(3870), - [anon_sym_DOT_STAR] = ACTIONS(3882), - [anon_sym_DASH_GT_STAR] = ACTIONS(3882), + [sym__expression] = STATE(3512), + [sym__expression_not_binary] = STATE(3565), + [sym_conditional_expression] = STATE(3565), + [sym_assignment_expression] = STATE(3565), + [sym_pointer_expression] = STATE(3220), + [sym_unary_expression] = STATE(3565), + [sym_binary_expression] = STATE(3565), + [sym_update_expression] = STATE(3565), + [sym_cast_expression] = STATE(3565), + [sym_sizeof_expression] = STATE(3565), + [sym_offsetof_expression] = STATE(3565), + [sym_generic_expression] = STATE(3565), + [sym_subscript_expression] = STATE(3220), + [sym_call_expression] = STATE(3220), + [sym_gnu_asm_expression] = STATE(3565), + [sym_field_expression] = STATE(3220), + [sym_compound_literal_expression] = STATE(3565), + [sym_parenthesized_expression] = STATE(3220), + [sym_char_literal] = STATE(3429), + [sym_concatenated_string] = STATE(3429), + [sym_string_literal] = STATE(2248), + [sym_null] = STATE(3565), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6847), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3565), + [sym_raw_string_literal] = STATE(2248), + [sym_co_await_expression] = STATE(3565), + [sym_new_expression] = STATE(3565), + [sym_delete_expression] = STATE(3565), + [sym_requires_clause] = STATE(3565), + [sym_requires_expression] = STATE(3565), + [sym_lambda_expression] = STATE(3565), + [sym_lambda_capture_specifier] = STATE(5204), + [sym_fold_expression] = STATE(3565), + [sym_parameter_pack_expansion] = STATE(3565), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5232), + [sym_qualified_identifier] = STATE(3220), + [sym_qualified_type_identifier] = STATE(6847), + [sym_user_defined_literal] = STATE(3565), + [sym_identifier] = ACTIONS(2095), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4294), + [anon_sym_LPAREN2] = ACTIONS(1841), + [anon_sym_BANG] = ACTIONS(1843), + [anon_sym_TILDE] = ACTIONS(1843), + [anon_sym_DASH] = ACTIONS(1845), + [anon_sym_PLUS] = ACTIONS(1845), + [anon_sym_STAR] = ACTIONS(1847), + [anon_sym_AMP] = ACTIONS(1847), + [anon_sym_COLON_COLON] = ACTIONS(1849), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1999), + [anon_sym_not] = ACTIONS(1845), + [anon_sym_compl] = ACTIONS(1845), + [anon_sym_DASH_DASH] = ACTIONS(1861), + [anon_sym_PLUS_PLUS] = ACTIONS(1861), + [anon_sym_sizeof] = ACTIONS(1863), + [anon_sym_offsetof] = ACTIONS(1865), + [anon_sym__Generic] = ACTIONS(1867), + [anon_sym_asm] = ACTIONS(1869), + [anon_sym___asm__] = ACTIONS(1869), + [sym_number_literal] = ACTIONS(1871), + [anon_sym_L_SQUOTE] = ACTIONS(1873), + [anon_sym_u_SQUOTE] = ACTIONS(1873), + [anon_sym_U_SQUOTE] = ACTIONS(1873), + [anon_sym_u8_SQUOTE] = ACTIONS(1873), + [anon_sym_SQUOTE] = ACTIONS(1873), + [anon_sym_L_DQUOTE] = ACTIONS(1875), + [anon_sym_u_DQUOTE] = ACTIONS(1875), + [anon_sym_U_DQUOTE] = ACTIONS(1875), + [anon_sym_u8_DQUOTE] = ACTIONS(1875), + [anon_sym_DQUOTE] = ACTIONS(1875), + [sym_true] = ACTIONS(1877), + [sym_false] = ACTIONS(1877), + [anon_sym_NULL] = ACTIONS(1879), + [anon_sym_nullptr] = ACTIONS(1879), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(1883), + [anon_sym_R_DQUOTE] = ACTIONS(1885), + [anon_sym_LR_DQUOTE] = ACTIONS(1885), + [anon_sym_uR_DQUOTE] = ACTIONS(1885), + [anon_sym_UR_DQUOTE] = ACTIONS(1885), + [anon_sym_u8R_DQUOTE] = ACTIONS(1885), + [anon_sym_co_await] = ACTIONS(1887), + [anon_sym_new] = ACTIONS(1889), + [anon_sym_requires] = ACTIONS(1891), + [sym_this] = ACTIONS(1877), }, [1773] = { - [sym_identifier] = ACTIONS(3884), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3886), - [anon_sym_COMMA] = ACTIONS(3886), - [anon_sym_RPAREN] = ACTIONS(3886), - [anon_sym_LPAREN2] = ACTIONS(3886), - [anon_sym_TILDE] = ACTIONS(3886), - [anon_sym_DASH] = ACTIONS(3884), - [anon_sym_PLUS] = ACTIONS(3884), - [anon_sym_STAR] = ACTIONS(3884), - [anon_sym_SLASH] = ACTIONS(3884), - [anon_sym_PERCENT] = ACTIONS(3884), - [anon_sym_PIPE_PIPE] = ACTIONS(3886), - [anon_sym_AMP_AMP] = ACTIONS(3886), - [anon_sym_PIPE] = ACTIONS(3884), - [anon_sym_CARET] = ACTIONS(3884), - [anon_sym_AMP] = ACTIONS(3884), - [anon_sym_EQ_EQ] = ACTIONS(3886), - [anon_sym_BANG_EQ] = ACTIONS(3886), - [anon_sym_GT] = ACTIONS(3884), - [anon_sym_GT_EQ] = ACTIONS(3886), - [anon_sym_LT_EQ] = ACTIONS(3884), - [anon_sym_LT] = ACTIONS(3884), - [anon_sym_LT_LT] = ACTIONS(3884), - [anon_sym_GT_GT] = ACTIONS(3884), - [anon_sym_SEMI] = ACTIONS(3886), - [anon_sym_extern] = ACTIONS(3884), - [anon_sym___attribute__] = ACTIONS(3884), - [anon_sym_COLON_COLON] = ACTIONS(3886), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3886), - [anon_sym___declspec] = ACTIONS(3884), - [anon_sym___based] = ACTIONS(3884), - [anon_sym_LBRACE] = ACTIONS(3886), - [anon_sym_RBRACE] = ACTIONS(3886), - [anon_sym_LBRACK] = ACTIONS(3884), - [anon_sym_EQ] = ACTIONS(3884), - [anon_sym_static] = ACTIONS(3884), - [anon_sym_register] = ACTIONS(3884), - [anon_sym_inline] = ACTIONS(3884), - [anon_sym_thread_local] = ACTIONS(3884), - [anon_sym_const] = ACTIONS(3884), - [anon_sym_volatile] = ACTIONS(3884), - [anon_sym_restrict] = ACTIONS(3884), - [anon_sym__Atomic] = ACTIONS(3884), - [anon_sym_mutable] = ACTIONS(3884), - [anon_sym_constexpr] = ACTIONS(3884), - [anon_sym_constinit] = ACTIONS(3884), - [anon_sym_consteval] = ACTIONS(3884), - [anon_sym_QMARK] = ACTIONS(3886), - [anon_sym_STAR_EQ] = ACTIONS(3886), - [anon_sym_SLASH_EQ] = ACTIONS(3886), - [anon_sym_PERCENT_EQ] = ACTIONS(3886), - [anon_sym_PLUS_EQ] = ACTIONS(3886), - [anon_sym_DASH_EQ] = ACTIONS(3886), - [anon_sym_LT_LT_EQ] = ACTIONS(3886), - [anon_sym_GT_GT_EQ] = ACTIONS(3886), - [anon_sym_AMP_EQ] = ACTIONS(3886), - [anon_sym_CARET_EQ] = ACTIONS(3886), - [anon_sym_PIPE_EQ] = ACTIONS(3886), - [anon_sym_and_eq] = ACTIONS(3884), - [anon_sym_or_eq] = ACTIONS(3884), - [anon_sym_xor_eq] = ACTIONS(3884), - [anon_sym_LT_EQ_GT] = ACTIONS(3886), - [anon_sym_or] = ACTIONS(3884), - [anon_sym_and] = ACTIONS(3884), - [anon_sym_bitor] = ACTIONS(3884), - [anon_sym_xor] = ACTIONS(3884), - [anon_sym_bitand] = ACTIONS(3884), - [anon_sym_not_eq] = ACTIONS(3884), - [anon_sym_DASH_DASH] = ACTIONS(3886), - [anon_sym_PLUS_PLUS] = ACTIONS(3886), - [anon_sym_DOT] = ACTIONS(3884), - [anon_sym_DASH_GT] = ACTIONS(3886), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3884), - [anon_sym_decltype] = ACTIONS(3884), - [anon_sym_virtual] = ACTIONS(3884), - [anon_sym_template] = ACTIONS(3884), - [anon_sym_operator] = ACTIONS(3884), + [sym__expression] = STATE(3514), + [sym__expression_not_binary] = STATE(3565), + [sym_conditional_expression] = STATE(3565), + [sym_assignment_expression] = STATE(3565), + [sym_pointer_expression] = STATE(3220), + [sym_unary_expression] = STATE(3565), + [sym_binary_expression] = STATE(3565), + [sym_update_expression] = STATE(3565), + [sym_cast_expression] = STATE(3565), + [sym_sizeof_expression] = STATE(3565), + [sym_offsetof_expression] = STATE(3565), + [sym_generic_expression] = STATE(3565), + [sym_subscript_expression] = STATE(3220), + [sym_call_expression] = STATE(3220), + [sym_gnu_asm_expression] = STATE(3565), + [sym_field_expression] = STATE(3220), + [sym_compound_literal_expression] = STATE(3565), + [sym_parenthesized_expression] = STATE(3220), + [sym_char_literal] = STATE(3429), + [sym_concatenated_string] = STATE(3429), + [sym_string_literal] = STATE(2248), + [sym_null] = STATE(3565), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6847), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3565), + [sym_raw_string_literal] = STATE(2248), + [sym_co_await_expression] = STATE(3565), + [sym_new_expression] = STATE(3565), + [sym_delete_expression] = STATE(3565), + [sym_requires_clause] = STATE(3565), + [sym_requires_expression] = STATE(3565), + [sym_lambda_expression] = STATE(3565), + [sym_lambda_capture_specifier] = STATE(5204), + [sym_fold_expression] = STATE(3565), + [sym_parameter_pack_expansion] = STATE(3565), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5232), + [sym_qualified_identifier] = STATE(3220), + [sym_qualified_type_identifier] = STATE(6847), + [sym_user_defined_literal] = STATE(3565), + [sym_identifier] = ACTIONS(2095), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4297), + [anon_sym_LPAREN2] = ACTIONS(1841), + [anon_sym_BANG] = ACTIONS(1843), + [anon_sym_TILDE] = ACTIONS(1843), + [anon_sym_DASH] = ACTIONS(1845), + [anon_sym_PLUS] = ACTIONS(1845), + [anon_sym_STAR] = ACTIONS(1847), + [anon_sym_AMP] = ACTIONS(1847), + [anon_sym_COLON_COLON] = ACTIONS(1849), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1999), + [anon_sym_not] = ACTIONS(1845), + [anon_sym_compl] = ACTIONS(1845), + [anon_sym_DASH_DASH] = ACTIONS(1861), + [anon_sym_PLUS_PLUS] = ACTIONS(1861), + [anon_sym_sizeof] = ACTIONS(1863), + [anon_sym_offsetof] = ACTIONS(1865), + [anon_sym__Generic] = ACTIONS(1867), + [anon_sym_asm] = ACTIONS(1869), + [anon_sym___asm__] = ACTIONS(1869), + [sym_number_literal] = ACTIONS(1871), + [anon_sym_L_SQUOTE] = ACTIONS(1873), + [anon_sym_u_SQUOTE] = ACTIONS(1873), + [anon_sym_U_SQUOTE] = ACTIONS(1873), + [anon_sym_u8_SQUOTE] = ACTIONS(1873), + [anon_sym_SQUOTE] = ACTIONS(1873), + [anon_sym_L_DQUOTE] = ACTIONS(1875), + [anon_sym_u_DQUOTE] = ACTIONS(1875), + [anon_sym_U_DQUOTE] = ACTIONS(1875), + [anon_sym_u8_DQUOTE] = ACTIONS(1875), + [anon_sym_DQUOTE] = ACTIONS(1875), + [sym_true] = ACTIONS(1877), + [sym_false] = ACTIONS(1877), + [anon_sym_NULL] = ACTIONS(1879), + [anon_sym_nullptr] = ACTIONS(1879), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(1883), + [anon_sym_R_DQUOTE] = ACTIONS(1885), + [anon_sym_LR_DQUOTE] = ACTIONS(1885), + [anon_sym_uR_DQUOTE] = ACTIONS(1885), + [anon_sym_UR_DQUOTE] = ACTIONS(1885), + [anon_sym_u8R_DQUOTE] = ACTIONS(1885), + [anon_sym_co_await] = ACTIONS(1887), + [anon_sym_new] = ACTIONS(1889), + [anon_sym_requires] = ACTIONS(1891), + [sym_this] = ACTIONS(1877), }, [1774] = { - [sym_template_argument_list] = STATE(1899), - [sym_identifier] = ACTIONS(3793), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3795), - [anon_sym_COMMA] = ACTIONS(3795), - [anon_sym_LPAREN2] = ACTIONS(3797), - [anon_sym_TILDE] = ACTIONS(3801), - [anon_sym_DASH] = ACTIONS(3803), - [anon_sym_PLUS] = ACTIONS(3803), - [anon_sym_STAR] = ACTIONS(3805), - [anon_sym_SLASH] = ACTIONS(3803), - [anon_sym_PERCENT] = ACTIONS(3803), - [anon_sym_PIPE_PIPE] = ACTIONS(3795), - [anon_sym_AMP_AMP] = ACTIONS(3808), - [anon_sym_PIPE] = ACTIONS(3803), - [anon_sym_CARET] = ACTIONS(3803), - [anon_sym_AMP] = ACTIONS(3805), - [anon_sym_EQ_EQ] = ACTIONS(3795), - [anon_sym_BANG_EQ] = ACTIONS(3795), - [anon_sym_GT] = ACTIONS(3803), - [anon_sym_GT_EQ] = ACTIONS(3795), - [anon_sym_LT_EQ] = ACTIONS(3803), - [anon_sym_LT] = ACTIONS(3811), - [anon_sym_LT_LT] = ACTIONS(3803), - [anon_sym_GT_GT] = ACTIONS(3803), - [anon_sym_SEMI] = ACTIONS(3808), - [anon_sym_extern] = ACTIONS(3793), - [anon_sym___attribute__] = ACTIONS(3793), - [anon_sym_COLON_COLON] = ACTIONS(3814), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3816), - [anon_sym___declspec] = ACTIONS(3793), - [anon_sym___based] = ACTIONS(3793), - [anon_sym_LBRACE] = ACTIONS(3819), - [anon_sym_LBRACK] = ACTIONS(3821), - [anon_sym_EQ] = ACTIONS(3825), - [anon_sym_static] = ACTIONS(3793), - [anon_sym_register] = ACTIONS(3793), - [anon_sym_inline] = ACTIONS(3793), - [anon_sym_thread_local] = ACTIONS(3793), - [anon_sym_const] = ACTIONS(3793), - [anon_sym_volatile] = ACTIONS(3793), - [anon_sym_restrict] = ACTIONS(3793), - [anon_sym__Atomic] = ACTIONS(3793), - [anon_sym_mutable] = ACTIONS(3793), - [anon_sym_constexpr] = ACTIONS(3793), - [anon_sym_constinit] = ACTIONS(3793), - [anon_sym_consteval] = ACTIONS(3793), - [anon_sym_COLON] = ACTIONS(3888), - [anon_sym_QMARK] = ACTIONS(3795), - [anon_sym_STAR_EQ] = ACTIONS(3829), - [anon_sym_SLASH_EQ] = ACTIONS(3829), - [anon_sym_PERCENT_EQ] = ACTIONS(3829), - [anon_sym_PLUS_EQ] = ACTIONS(3829), - [anon_sym_DASH_EQ] = ACTIONS(3829), - [anon_sym_LT_LT_EQ] = ACTIONS(3829), - [anon_sym_GT_GT_EQ] = ACTIONS(3829), - [anon_sym_AMP_EQ] = ACTIONS(3829), - [anon_sym_CARET_EQ] = ACTIONS(3829), - [anon_sym_PIPE_EQ] = ACTIONS(3829), - [anon_sym_and_eq] = ACTIONS(3825), - [anon_sym_or_eq] = ACTIONS(3825), - [anon_sym_xor_eq] = ACTIONS(3825), - [anon_sym_LT_EQ_GT] = ACTIONS(3795), - [anon_sym_or] = ACTIONS(3803), - [anon_sym_and] = ACTIONS(3803), - [anon_sym_bitor] = ACTIONS(3803), - [anon_sym_xor] = ACTIONS(3803), - [anon_sym_bitand] = ACTIONS(3803), - [anon_sym_not_eq] = ACTIONS(3803), - [anon_sym_DASH_DASH] = ACTIONS(3795), - [anon_sym_PLUS_PLUS] = ACTIONS(3795), - [anon_sym_DOT] = ACTIONS(3803), - [anon_sym_DASH_GT] = ACTIONS(3795), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3793), - [anon_sym_decltype] = ACTIONS(3793), - [anon_sym_virtual] = ACTIONS(3793), - [anon_sym_template] = ACTIONS(3793), - [anon_sym_operator] = ACTIONS(3793), + [sym__expression] = STATE(3039), + [sym__expression_not_binary] = STATE(3021), + [sym_conditional_expression] = STATE(3021), + [sym_assignment_expression] = STATE(3021), + [sym_pointer_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_cast_expression] = STATE(3021), + [sym_sizeof_expression] = STATE(3021), + [sym_offsetof_expression] = STATE(3021), + [sym_generic_expression] = STATE(3021), + [sym_subscript_expression] = STATE(3021), + [sym_call_expression] = STATE(3021), + [sym_gnu_asm_expression] = STATE(3021), + [sym_field_expression] = STATE(3021), + [sym_compound_literal_expression] = STATE(3021), + [sym_parenthesized_expression] = STATE(3021), + [sym_char_literal] = STATE(2901), + [sym_concatenated_string] = STATE(2901), + [sym_string_literal] = STATE(2173), + [sym_null] = STATE(3021), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6616), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3021), + [sym_raw_string_literal] = STATE(2173), + [sym_co_await_expression] = STATE(3021), + [sym_new_expression] = STATE(3021), + [sym_delete_expression] = STATE(3021), + [sym_requires_clause] = STATE(3021), + [sym_requires_expression] = STATE(3021), + [sym_lambda_expression] = STATE(3021), + [sym_lambda_capture_specifier] = STATE(5188), + [sym_fold_expression] = STATE(3021), + [sym_parameter_pack_expansion] = STATE(3021), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3021), + [sym_qualified_type_identifier] = STATE(6616), + [sym_user_defined_literal] = STATE(3021), + [sym_identifier] = ACTIONS(1933), + [anon_sym_LPAREN2] = ACTIONS(1937), + [anon_sym_BANG] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(1941), + [anon_sym_DASH] = ACTIONS(1939), + [anon_sym_PLUS] = ACTIONS(1939), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(1945), + [anon_sym_LBRACK] = ACTIONS(1949), + [anon_sym_RBRACK] = ACTIONS(4300), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(1939), + [anon_sym_compl] = ACTIONS(1939), + [anon_sym_DASH_DASH] = ACTIONS(1953), + [anon_sym_PLUS_PLUS] = ACTIONS(1953), + [anon_sym_sizeof] = ACTIONS(1955), + [anon_sym_offsetof] = ACTIONS(1957), + [anon_sym__Generic] = ACTIONS(1959), + [anon_sym_asm] = ACTIONS(1961), + [anon_sym___asm__] = ACTIONS(1961), + [sym_number_literal] = ACTIONS(1963), + [anon_sym_L_SQUOTE] = ACTIONS(1965), + [anon_sym_u_SQUOTE] = ACTIONS(1965), + [anon_sym_U_SQUOTE] = ACTIONS(1965), + [anon_sym_u8_SQUOTE] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_L_DQUOTE] = ACTIONS(1967), + [anon_sym_u_DQUOTE] = ACTIONS(1967), + [anon_sym_U_DQUOTE] = ACTIONS(1967), + [anon_sym_u8_DQUOTE] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(1967), + [sym_true] = ACTIONS(1969), + [sym_false] = ACTIONS(1969), + [anon_sym_NULL] = ACTIONS(1971), + [anon_sym_nullptr] = ACTIONS(1971), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(1975), + [anon_sym_R_DQUOTE] = ACTIONS(1977), + [anon_sym_LR_DQUOTE] = ACTIONS(1977), + [anon_sym_uR_DQUOTE] = ACTIONS(1977), + [anon_sym_UR_DQUOTE] = ACTIONS(1977), + [anon_sym_u8R_DQUOTE] = ACTIONS(1977), + [anon_sym_co_await] = ACTIONS(1979), + [anon_sym_new] = ACTIONS(1981), + [anon_sym_requires] = ACTIONS(1983), + [sym_this] = ACTIONS(1969), }, [1775] = { - [sym_template_argument_list] = STATE(1893), - [sym_identifier] = ACTIONS(3793), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3795), - [anon_sym_COMMA] = ACTIONS(3795), - [anon_sym_LPAREN2] = ACTIONS(3808), - [anon_sym_TILDE] = ACTIONS(3801), - [anon_sym_DASH] = ACTIONS(3803), - [anon_sym_PLUS] = ACTIONS(3803), - [anon_sym_STAR] = ACTIONS(3805), - [anon_sym_SLASH] = ACTIONS(3803), - [anon_sym_PERCENT] = ACTIONS(3803), - [anon_sym_PIPE_PIPE] = ACTIONS(3795), - [anon_sym_AMP_AMP] = ACTIONS(3808), - [anon_sym_PIPE] = ACTIONS(3803), - [anon_sym_CARET] = ACTIONS(3803), - [anon_sym_AMP] = ACTIONS(3805), - [anon_sym_EQ_EQ] = ACTIONS(3795), - [anon_sym_BANG_EQ] = ACTIONS(3795), - [anon_sym_GT] = ACTIONS(3803), - [anon_sym_GT_EQ] = ACTIONS(3795), - [anon_sym_LT_EQ] = ACTIONS(3803), - [anon_sym_LT] = ACTIONS(3811), - [anon_sym_LT_LT] = ACTIONS(3803), - [anon_sym_GT_GT] = ACTIONS(3803), - [anon_sym_SEMI] = ACTIONS(3795), - [anon_sym_extern] = ACTIONS(3793), - [anon_sym___attribute__] = ACTIONS(3793), - [anon_sym_COLON_COLON] = ACTIONS(3814), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3801), - [anon_sym___declspec] = ACTIONS(3793), - [anon_sym___based] = ACTIONS(3793), - [anon_sym_LBRACE] = ACTIONS(3819), - [anon_sym_LBRACK] = ACTIONS(3805), - [anon_sym_EQ] = ACTIONS(3825), - [anon_sym_static] = ACTIONS(3793), - [anon_sym_register] = ACTIONS(3793), - [anon_sym_inline] = ACTIONS(3793), - [anon_sym_thread_local] = ACTIONS(3793), - [anon_sym_const] = ACTIONS(3793), - [anon_sym_volatile] = ACTIONS(3793), - [anon_sym_restrict] = ACTIONS(3793), - [anon_sym__Atomic] = ACTIONS(3793), - [anon_sym_mutable] = ACTIONS(3793), - [anon_sym_constexpr] = ACTIONS(3793), - [anon_sym_constinit] = ACTIONS(3793), - [anon_sym_consteval] = ACTIONS(3793), - [anon_sym_COLON] = ACTIONS(3890), - [anon_sym_QMARK] = ACTIONS(3795), - [anon_sym_STAR_EQ] = ACTIONS(3829), - [anon_sym_SLASH_EQ] = ACTIONS(3829), - [anon_sym_PERCENT_EQ] = ACTIONS(3829), - [anon_sym_PLUS_EQ] = ACTIONS(3829), - [anon_sym_DASH_EQ] = ACTIONS(3829), - [anon_sym_LT_LT_EQ] = ACTIONS(3829), - [anon_sym_GT_GT_EQ] = ACTIONS(3829), - [anon_sym_AMP_EQ] = ACTIONS(3829), - [anon_sym_CARET_EQ] = ACTIONS(3829), - [anon_sym_PIPE_EQ] = ACTIONS(3829), - [anon_sym_and_eq] = ACTIONS(3825), - [anon_sym_or_eq] = ACTIONS(3825), - [anon_sym_xor_eq] = ACTIONS(3825), - [anon_sym_LT_EQ_GT] = ACTIONS(3795), - [anon_sym_or] = ACTIONS(3803), - [anon_sym_and] = ACTIONS(3803), - [anon_sym_bitor] = ACTIONS(3803), - [anon_sym_xor] = ACTIONS(3803), - [anon_sym_bitand] = ACTIONS(3803), - [anon_sym_not_eq] = ACTIONS(3803), - [anon_sym_DASH_DASH] = ACTIONS(3795), - [anon_sym_PLUS_PLUS] = ACTIONS(3795), - [anon_sym_DOT] = ACTIONS(3803), - [anon_sym_DASH_GT] = ACTIONS(3795), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3793), - [anon_sym_decltype] = ACTIONS(3793), - [anon_sym_virtual] = ACTIONS(3793), - [anon_sym_template] = ACTIONS(3793), - [anon_sym_operator] = ACTIONS(3793), + [sym__expression] = STATE(3039), + [sym__expression_not_binary] = STATE(3021), + [sym_conditional_expression] = STATE(3021), + [sym_assignment_expression] = STATE(3021), + [sym_pointer_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_cast_expression] = STATE(3021), + [sym_sizeof_expression] = STATE(3021), + [sym_offsetof_expression] = STATE(3021), + [sym_generic_expression] = STATE(3021), + [sym_subscript_expression] = STATE(3021), + [sym_call_expression] = STATE(3021), + [sym_gnu_asm_expression] = STATE(3021), + [sym_field_expression] = STATE(3021), + [sym_compound_literal_expression] = STATE(3021), + [sym_parenthesized_expression] = STATE(3021), + [sym_char_literal] = STATE(2901), + [sym_concatenated_string] = STATE(2901), + [sym_string_literal] = STATE(2173), + [sym_null] = STATE(3021), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6616), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3021), + [sym_raw_string_literal] = STATE(2173), + [sym_co_await_expression] = STATE(3021), + [sym_new_expression] = STATE(3021), + [sym_delete_expression] = STATE(3021), + [sym_requires_clause] = STATE(3021), + [sym_requires_expression] = STATE(3021), + [sym_lambda_expression] = STATE(3021), + [sym_lambda_capture_specifier] = STATE(5188), + [sym_fold_expression] = STATE(3021), + [sym_parameter_pack_expansion] = STATE(3021), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3021), + [sym_qualified_type_identifier] = STATE(6616), + [sym_user_defined_literal] = STATE(3021), + [sym_identifier] = ACTIONS(1933), + [anon_sym_LPAREN2] = ACTIONS(1937), + [anon_sym_BANG] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(1941), + [anon_sym_DASH] = ACTIONS(1939), + [anon_sym_PLUS] = ACTIONS(1939), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(1945), + [anon_sym_LBRACK] = ACTIONS(1949), + [anon_sym_RBRACK] = ACTIONS(4302), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(1939), + [anon_sym_compl] = ACTIONS(1939), + [anon_sym_DASH_DASH] = ACTIONS(1953), + [anon_sym_PLUS_PLUS] = ACTIONS(1953), + [anon_sym_sizeof] = ACTIONS(1955), + [anon_sym_offsetof] = ACTIONS(1957), + [anon_sym__Generic] = ACTIONS(1959), + [anon_sym_asm] = ACTIONS(1961), + [anon_sym___asm__] = ACTIONS(1961), + [sym_number_literal] = ACTIONS(1963), + [anon_sym_L_SQUOTE] = ACTIONS(1965), + [anon_sym_u_SQUOTE] = ACTIONS(1965), + [anon_sym_U_SQUOTE] = ACTIONS(1965), + [anon_sym_u8_SQUOTE] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_L_DQUOTE] = ACTIONS(1967), + [anon_sym_u_DQUOTE] = ACTIONS(1967), + [anon_sym_U_DQUOTE] = ACTIONS(1967), + [anon_sym_u8_DQUOTE] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(1967), + [sym_true] = ACTIONS(1969), + [sym_false] = ACTIONS(1969), + [anon_sym_NULL] = ACTIONS(1971), + [anon_sym_nullptr] = ACTIONS(1971), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(1975), + [anon_sym_R_DQUOTE] = ACTIONS(1977), + [anon_sym_LR_DQUOTE] = ACTIONS(1977), + [anon_sym_uR_DQUOTE] = ACTIONS(1977), + [anon_sym_UR_DQUOTE] = ACTIONS(1977), + [anon_sym_u8R_DQUOTE] = ACTIONS(1977), + [anon_sym_co_await] = ACTIONS(1979), + [anon_sym_new] = ACTIONS(1981), + [anon_sym_requires] = ACTIONS(1983), + [sym_this] = ACTIONS(1969), }, [1776] = { - [sym_identifier] = ACTIONS(3892), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3894), - [anon_sym_COMMA] = ACTIONS(3894), - [anon_sym_RPAREN] = ACTIONS(3894), - [anon_sym_LPAREN2] = ACTIONS(3894), - [anon_sym_TILDE] = ACTIONS(3894), - [anon_sym_DASH] = ACTIONS(3892), - [anon_sym_PLUS] = ACTIONS(3892), - [anon_sym_STAR] = ACTIONS(3892), - [anon_sym_SLASH] = ACTIONS(3892), - [anon_sym_PERCENT] = ACTIONS(3892), - [anon_sym_PIPE_PIPE] = ACTIONS(3894), - [anon_sym_AMP_AMP] = ACTIONS(3894), - [anon_sym_PIPE] = ACTIONS(3892), - [anon_sym_CARET] = ACTIONS(3892), - [anon_sym_AMP] = ACTIONS(3892), - [anon_sym_EQ_EQ] = ACTIONS(3894), - [anon_sym_BANG_EQ] = ACTIONS(3894), - [anon_sym_GT] = ACTIONS(3892), - [anon_sym_GT_EQ] = ACTIONS(3894), - [anon_sym_LT_EQ] = ACTIONS(3892), - [anon_sym_LT] = ACTIONS(3892), - [anon_sym_LT_LT] = ACTIONS(3892), - [anon_sym_GT_GT] = ACTIONS(3892), - [anon_sym_extern] = ACTIONS(3892), - [anon_sym___attribute__] = ACTIONS(3892), - [anon_sym_COLON_COLON] = ACTIONS(3894), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3894), - [anon_sym___declspec] = ACTIONS(3892), - [anon_sym___based] = ACTIONS(3892), - [anon_sym_LBRACE] = ACTIONS(3894), - [anon_sym_LBRACK] = ACTIONS(3892), - [anon_sym_EQ] = ACTIONS(3892), - [anon_sym_static] = ACTIONS(3892), - [anon_sym_register] = ACTIONS(3892), - [anon_sym_inline] = ACTIONS(3892), - [anon_sym_thread_local] = ACTIONS(3892), - [anon_sym_const] = ACTIONS(3892), - [anon_sym_volatile] = ACTIONS(3892), - [anon_sym_restrict] = ACTIONS(3892), - [anon_sym__Atomic] = ACTIONS(3892), - [anon_sym_mutable] = ACTIONS(3892), - [anon_sym_constexpr] = ACTIONS(3892), - [anon_sym_constinit] = ACTIONS(3892), - [anon_sym_consteval] = ACTIONS(3892), - [anon_sym_QMARK] = ACTIONS(3894), - [anon_sym_STAR_EQ] = ACTIONS(3894), - [anon_sym_SLASH_EQ] = ACTIONS(3894), - [anon_sym_PERCENT_EQ] = ACTIONS(3894), - [anon_sym_PLUS_EQ] = ACTIONS(3894), - [anon_sym_DASH_EQ] = ACTIONS(3894), - [anon_sym_LT_LT_EQ] = ACTIONS(3894), - [anon_sym_GT_GT_EQ] = ACTIONS(3894), - [anon_sym_AMP_EQ] = ACTIONS(3894), - [anon_sym_CARET_EQ] = ACTIONS(3894), - [anon_sym_PIPE_EQ] = ACTIONS(3894), - [anon_sym_and_eq] = ACTIONS(3892), - [anon_sym_or_eq] = ACTIONS(3892), - [anon_sym_xor_eq] = ACTIONS(3892), - [anon_sym_LT_EQ_GT] = ACTIONS(3894), - [anon_sym_or] = ACTIONS(3892), - [anon_sym_and] = ACTIONS(3892), - [anon_sym_bitor] = ACTIONS(3892), - [anon_sym_xor] = ACTIONS(3892), - [anon_sym_bitand] = ACTIONS(3892), - [anon_sym_not_eq] = ACTIONS(3892), - [anon_sym_DASH_DASH] = ACTIONS(3894), - [anon_sym_PLUS_PLUS] = ACTIONS(3894), - [anon_sym_DOT] = ACTIONS(3892), - [anon_sym_DASH_GT] = ACTIONS(3892), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3892), - [anon_sym_decltype] = ACTIONS(3892), - [anon_sym_virtual] = ACTIONS(3892), - [anon_sym_template] = ACTIONS(3892), - [anon_sym_operator] = ACTIONS(3892), - [anon_sym_DOT_STAR] = ACTIONS(3894), - [anon_sym_DASH_GT_STAR] = ACTIONS(3894), + [sym__expression] = STATE(4451), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(4304), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1777] = { - [sym_identifier] = ACTIONS(3896), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3898), - [anon_sym_COMMA] = ACTIONS(3898), - [anon_sym_RPAREN] = ACTIONS(3898), - [anon_sym_LPAREN2] = ACTIONS(3898), - [anon_sym_TILDE] = ACTIONS(3898), - [anon_sym_DASH] = ACTIONS(3896), - [anon_sym_PLUS] = ACTIONS(3896), - [anon_sym_STAR] = ACTIONS(3896), - [anon_sym_SLASH] = ACTIONS(3896), - [anon_sym_PERCENT] = ACTIONS(3896), - [anon_sym_PIPE_PIPE] = ACTIONS(3898), - [anon_sym_AMP_AMP] = ACTIONS(3898), - [anon_sym_PIPE] = ACTIONS(3896), - [anon_sym_CARET] = ACTIONS(3896), - [anon_sym_AMP] = ACTIONS(3896), - [anon_sym_EQ_EQ] = ACTIONS(3898), - [anon_sym_BANG_EQ] = ACTIONS(3898), - [anon_sym_GT] = ACTIONS(3896), - [anon_sym_GT_EQ] = ACTIONS(3898), - [anon_sym_LT_EQ] = ACTIONS(3896), - [anon_sym_LT] = ACTIONS(3896), - [anon_sym_LT_LT] = ACTIONS(3896), - [anon_sym_GT_GT] = ACTIONS(3896), - [anon_sym_SEMI] = ACTIONS(3898), - [anon_sym_extern] = ACTIONS(3896), - [anon_sym___attribute__] = ACTIONS(3896), - [anon_sym_COLON_COLON] = ACTIONS(3898), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3898), - [anon_sym___declspec] = ACTIONS(3896), - [anon_sym___based] = ACTIONS(3896), - [anon_sym_LBRACE] = ACTIONS(3898), - [anon_sym_RBRACE] = ACTIONS(3898), - [anon_sym_LBRACK] = ACTIONS(3896), - [anon_sym_EQ] = ACTIONS(3896), - [anon_sym_static] = ACTIONS(3896), - [anon_sym_register] = ACTIONS(3896), - [anon_sym_inline] = ACTIONS(3896), - [anon_sym_thread_local] = ACTIONS(3896), - [anon_sym_const] = ACTIONS(3896), - [anon_sym_volatile] = ACTIONS(3896), - [anon_sym_restrict] = ACTIONS(3896), - [anon_sym__Atomic] = ACTIONS(3896), - [anon_sym_mutable] = ACTIONS(3896), - [anon_sym_constexpr] = ACTIONS(3896), - [anon_sym_constinit] = ACTIONS(3896), - [anon_sym_consteval] = ACTIONS(3896), - [anon_sym_QMARK] = ACTIONS(3898), - [anon_sym_STAR_EQ] = ACTIONS(3898), - [anon_sym_SLASH_EQ] = ACTIONS(3898), - [anon_sym_PERCENT_EQ] = ACTIONS(3898), - [anon_sym_PLUS_EQ] = ACTIONS(3898), - [anon_sym_DASH_EQ] = ACTIONS(3898), - [anon_sym_LT_LT_EQ] = ACTIONS(3898), - [anon_sym_GT_GT_EQ] = ACTIONS(3898), - [anon_sym_AMP_EQ] = ACTIONS(3898), - [anon_sym_CARET_EQ] = ACTIONS(3898), - [anon_sym_PIPE_EQ] = ACTIONS(3898), - [anon_sym_and_eq] = ACTIONS(3896), - [anon_sym_or_eq] = ACTIONS(3896), - [anon_sym_xor_eq] = ACTIONS(3896), - [anon_sym_LT_EQ_GT] = ACTIONS(3898), - [anon_sym_or] = ACTIONS(3896), - [anon_sym_and] = ACTIONS(3896), - [anon_sym_bitor] = ACTIONS(3896), - [anon_sym_xor] = ACTIONS(3896), - [anon_sym_bitand] = ACTIONS(3896), - [anon_sym_not_eq] = ACTIONS(3896), - [anon_sym_DASH_DASH] = ACTIONS(3898), - [anon_sym_PLUS_PLUS] = ACTIONS(3898), - [anon_sym_DOT] = ACTIONS(3896), - [anon_sym_DASH_GT] = ACTIONS(3898), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3896), - [anon_sym_decltype] = ACTIONS(3896), - [anon_sym_virtual] = ACTIONS(3896), - [anon_sym_template] = ACTIONS(3896), - [anon_sym_operator] = ACTIONS(3896), + [sym__expression] = STATE(3039), + [sym__expression_not_binary] = STATE(3021), + [sym_conditional_expression] = STATE(3021), + [sym_assignment_expression] = STATE(3021), + [sym_pointer_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_cast_expression] = STATE(3021), + [sym_sizeof_expression] = STATE(3021), + [sym_offsetof_expression] = STATE(3021), + [sym_generic_expression] = STATE(3021), + [sym_subscript_expression] = STATE(3021), + [sym_call_expression] = STATE(3021), + [sym_gnu_asm_expression] = STATE(3021), + [sym_field_expression] = STATE(3021), + [sym_compound_literal_expression] = STATE(3021), + [sym_parenthesized_expression] = STATE(3021), + [sym_char_literal] = STATE(2901), + [sym_concatenated_string] = STATE(2901), + [sym_string_literal] = STATE(2173), + [sym_null] = STATE(3021), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6616), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3021), + [sym_raw_string_literal] = STATE(2173), + [sym_co_await_expression] = STATE(3021), + [sym_new_expression] = STATE(3021), + [sym_delete_expression] = STATE(3021), + [sym_requires_clause] = STATE(3021), + [sym_requires_expression] = STATE(3021), + [sym_lambda_expression] = STATE(3021), + [sym_lambda_capture_specifier] = STATE(5188), + [sym_fold_expression] = STATE(3021), + [sym_parameter_pack_expansion] = STATE(3021), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3021), + [sym_qualified_type_identifier] = STATE(6616), + [sym_user_defined_literal] = STATE(3021), + [sym_identifier] = ACTIONS(1933), + [anon_sym_LPAREN2] = ACTIONS(1937), + [anon_sym_BANG] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(1941), + [anon_sym_DASH] = ACTIONS(1939), + [anon_sym_PLUS] = ACTIONS(1939), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(1945), + [anon_sym_LBRACK] = ACTIONS(1949), + [anon_sym_RBRACK] = ACTIONS(4306), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(1939), + [anon_sym_compl] = ACTIONS(1939), + [anon_sym_DASH_DASH] = ACTIONS(1953), + [anon_sym_PLUS_PLUS] = ACTIONS(1953), + [anon_sym_sizeof] = ACTIONS(1955), + [anon_sym_offsetof] = ACTIONS(1957), + [anon_sym__Generic] = ACTIONS(1959), + [anon_sym_asm] = ACTIONS(1961), + [anon_sym___asm__] = ACTIONS(1961), + [sym_number_literal] = ACTIONS(1963), + [anon_sym_L_SQUOTE] = ACTIONS(1965), + [anon_sym_u_SQUOTE] = ACTIONS(1965), + [anon_sym_U_SQUOTE] = ACTIONS(1965), + [anon_sym_u8_SQUOTE] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_L_DQUOTE] = ACTIONS(1967), + [anon_sym_u_DQUOTE] = ACTIONS(1967), + [anon_sym_U_DQUOTE] = ACTIONS(1967), + [anon_sym_u8_DQUOTE] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(1967), + [sym_true] = ACTIONS(1969), + [sym_false] = ACTIONS(1969), + [anon_sym_NULL] = ACTIONS(1971), + [anon_sym_nullptr] = ACTIONS(1971), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(1975), + [anon_sym_R_DQUOTE] = ACTIONS(1977), + [anon_sym_LR_DQUOTE] = ACTIONS(1977), + [anon_sym_uR_DQUOTE] = ACTIONS(1977), + [anon_sym_UR_DQUOTE] = ACTIONS(1977), + [anon_sym_u8R_DQUOTE] = ACTIONS(1977), + [anon_sym_co_await] = ACTIONS(1979), + [anon_sym_new] = ACTIONS(1981), + [anon_sym_requires] = ACTIONS(1983), + [sym_this] = ACTIONS(1969), }, [1778] = { - [sym_identifier] = ACTIONS(3896), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3898), - [anon_sym_COMMA] = ACTIONS(3898), - [anon_sym_RPAREN] = ACTIONS(3898), - [anon_sym_LPAREN2] = ACTIONS(3898), - [anon_sym_TILDE] = ACTIONS(3898), - [anon_sym_DASH] = ACTIONS(3896), - [anon_sym_PLUS] = ACTIONS(3896), - [anon_sym_STAR] = ACTIONS(3896), - [anon_sym_SLASH] = ACTIONS(3896), - [anon_sym_PERCENT] = ACTIONS(3896), - [anon_sym_PIPE_PIPE] = ACTIONS(3898), - [anon_sym_AMP_AMP] = ACTIONS(3898), - [anon_sym_PIPE] = ACTIONS(3896), - [anon_sym_CARET] = ACTIONS(3896), - [anon_sym_AMP] = ACTIONS(3896), - [anon_sym_EQ_EQ] = ACTIONS(3898), - [anon_sym_BANG_EQ] = ACTIONS(3898), - [anon_sym_GT] = ACTIONS(3896), - [anon_sym_GT_EQ] = ACTIONS(3898), - [anon_sym_LT_EQ] = ACTIONS(3896), - [anon_sym_LT] = ACTIONS(3896), - [anon_sym_LT_LT] = ACTIONS(3896), - [anon_sym_GT_GT] = ACTIONS(3896), - [anon_sym_extern] = ACTIONS(3896), - [anon_sym___attribute__] = ACTIONS(3896), - [anon_sym_COLON_COLON] = ACTIONS(3898), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3898), - [anon_sym___declspec] = ACTIONS(3896), - [anon_sym___based] = ACTIONS(3896), - [anon_sym_LBRACE] = ACTIONS(3898), - [anon_sym_LBRACK] = ACTIONS(3896), - [anon_sym_EQ] = ACTIONS(3896), - [anon_sym_static] = ACTIONS(3896), - [anon_sym_register] = ACTIONS(3896), - [anon_sym_inline] = ACTIONS(3896), - [anon_sym_thread_local] = ACTIONS(3896), - [anon_sym_const] = ACTIONS(3896), - [anon_sym_volatile] = ACTIONS(3896), - [anon_sym_restrict] = ACTIONS(3896), - [anon_sym__Atomic] = ACTIONS(3896), - [anon_sym_mutable] = ACTIONS(3896), - [anon_sym_constexpr] = ACTIONS(3896), - [anon_sym_constinit] = ACTIONS(3896), - [anon_sym_consteval] = ACTIONS(3896), - [anon_sym_QMARK] = ACTIONS(3898), - [anon_sym_STAR_EQ] = ACTIONS(3898), - [anon_sym_SLASH_EQ] = ACTIONS(3898), - [anon_sym_PERCENT_EQ] = ACTIONS(3898), - [anon_sym_PLUS_EQ] = ACTIONS(3898), - [anon_sym_DASH_EQ] = ACTIONS(3898), - [anon_sym_LT_LT_EQ] = ACTIONS(3898), - [anon_sym_GT_GT_EQ] = ACTIONS(3898), - [anon_sym_AMP_EQ] = ACTIONS(3898), - [anon_sym_CARET_EQ] = ACTIONS(3898), - [anon_sym_PIPE_EQ] = ACTIONS(3898), - [anon_sym_and_eq] = ACTIONS(3896), - [anon_sym_or_eq] = ACTIONS(3896), - [anon_sym_xor_eq] = ACTIONS(3896), - [anon_sym_LT_EQ_GT] = ACTIONS(3898), - [anon_sym_or] = ACTIONS(3896), - [anon_sym_and] = ACTIONS(3896), - [anon_sym_bitor] = ACTIONS(3896), - [anon_sym_xor] = ACTIONS(3896), - [anon_sym_bitand] = ACTIONS(3896), - [anon_sym_not_eq] = ACTIONS(3896), - [anon_sym_DASH_DASH] = ACTIONS(3898), - [anon_sym_PLUS_PLUS] = ACTIONS(3898), - [anon_sym_DOT] = ACTIONS(3896), - [anon_sym_DASH_GT] = ACTIONS(3896), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3896), - [anon_sym_decltype] = ACTIONS(3896), - [anon_sym_virtual] = ACTIONS(3896), - [anon_sym_template] = ACTIONS(3896), - [anon_sym_operator] = ACTIONS(3896), - [anon_sym_DOT_STAR] = ACTIONS(3898), - [anon_sym_DASH_GT_STAR] = ACTIONS(3898), + [sym__expression] = STATE(4307), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(4308), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1779] = { - [sym_identifier] = ACTIONS(3862), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3864), - [anon_sym_COMMA] = ACTIONS(3864), - [anon_sym_RPAREN] = ACTIONS(3864), - [anon_sym_LPAREN2] = ACTIONS(3864), - [anon_sym_TILDE] = ACTIONS(3864), - [anon_sym_DASH] = ACTIONS(3862), - [anon_sym_PLUS] = ACTIONS(3862), - [anon_sym_STAR] = ACTIONS(3862), - [anon_sym_SLASH] = ACTIONS(3862), - [anon_sym_PERCENT] = ACTIONS(3862), - [anon_sym_PIPE_PIPE] = ACTIONS(3864), - [anon_sym_AMP_AMP] = ACTIONS(3864), - [anon_sym_PIPE] = ACTIONS(3862), - [anon_sym_CARET] = ACTIONS(3862), - [anon_sym_AMP] = ACTIONS(3862), - [anon_sym_EQ_EQ] = ACTIONS(3864), - [anon_sym_BANG_EQ] = ACTIONS(3864), - [anon_sym_GT] = ACTIONS(3862), - [anon_sym_GT_EQ] = ACTIONS(3864), - [anon_sym_LT_EQ] = ACTIONS(3862), - [anon_sym_LT] = ACTIONS(3862), - [anon_sym_LT_LT] = ACTIONS(3862), - [anon_sym_GT_GT] = ACTIONS(3862), - [anon_sym_extern] = ACTIONS(3862), - [anon_sym___attribute__] = ACTIONS(3862), - [anon_sym_COLON_COLON] = ACTIONS(3864), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3864), - [anon_sym___declspec] = ACTIONS(3862), - [anon_sym___based] = ACTIONS(3862), - [anon_sym_LBRACE] = ACTIONS(3864), - [anon_sym_LBRACK] = ACTIONS(3862), - [anon_sym_EQ] = ACTIONS(3862), - [anon_sym_static] = ACTIONS(3862), - [anon_sym_register] = ACTIONS(3862), - [anon_sym_inline] = ACTIONS(3862), - [anon_sym_thread_local] = ACTIONS(3862), - [anon_sym_const] = ACTIONS(3862), - [anon_sym_volatile] = ACTIONS(3862), - [anon_sym_restrict] = ACTIONS(3862), - [anon_sym__Atomic] = ACTIONS(3862), - [anon_sym_mutable] = ACTIONS(3862), - [anon_sym_constexpr] = ACTIONS(3862), - [anon_sym_constinit] = ACTIONS(3862), - [anon_sym_consteval] = ACTIONS(3862), - [anon_sym_QMARK] = ACTIONS(3864), - [anon_sym_STAR_EQ] = ACTIONS(3864), - [anon_sym_SLASH_EQ] = ACTIONS(3864), - [anon_sym_PERCENT_EQ] = ACTIONS(3864), - [anon_sym_PLUS_EQ] = ACTIONS(3864), - [anon_sym_DASH_EQ] = ACTIONS(3864), - [anon_sym_LT_LT_EQ] = ACTIONS(3864), - [anon_sym_GT_GT_EQ] = ACTIONS(3864), - [anon_sym_AMP_EQ] = ACTIONS(3864), - [anon_sym_CARET_EQ] = ACTIONS(3864), - [anon_sym_PIPE_EQ] = ACTIONS(3864), - [anon_sym_and_eq] = ACTIONS(3862), - [anon_sym_or_eq] = ACTIONS(3862), - [anon_sym_xor_eq] = ACTIONS(3862), - [anon_sym_LT_EQ_GT] = ACTIONS(3864), - [anon_sym_or] = ACTIONS(3862), - [anon_sym_and] = ACTIONS(3862), - [anon_sym_bitor] = ACTIONS(3862), - [anon_sym_xor] = ACTIONS(3862), - [anon_sym_bitand] = ACTIONS(3862), - [anon_sym_not_eq] = ACTIONS(3862), - [anon_sym_DASH_DASH] = ACTIONS(3864), - [anon_sym_PLUS_PLUS] = ACTIONS(3864), - [anon_sym_DOT] = ACTIONS(3862), - [anon_sym_DASH_GT] = ACTIONS(3862), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3862), - [anon_sym_decltype] = ACTIONS(3862), - [anon_sym_virtual] = ACTIONS(3862), - [anon_sym_template] = ACTIONS(3862), - [anon_sym_operator] = ACTIONS(3862), - [anon_sym_DOT_STAR] = ACTIONS(3864), - [anon_sym_DASH_GT_STAR] = ACTIONS(3864), + [sym__expression] = STATE(4308), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(4310), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1780] = { - [sym_template_argument_list] = STATE(1893), - [sym_identifier] = ACTIONS(3793), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3795), - [anon_sym_COMMA] = ACTIONS(3795), - [anon_sym_LPAREN2] = ACTIONS(3808), - [anon_sym_TILDE] = ACTIONS(3801), - [anon_sym_DASH] = ACTIONS(3803), - [anon_sym_PLUS] = ACTIONS(3803), - [anon_sym_STAR] = ACTIONS(3805), - [anon_sym_SLASH] = ACTIONS(3803), - [anon_sym_PERCENT] = ACTIONS(3803), - [anon_sym_PIPE_PIPE] = ACTIONS(3795), - [anon_sym_AMP_AMP] = ACTIONS(3808), - [anon_sym_PIPE] = ACTIONS(3803), - [anon_sym_CARET] = ACTIONS(3803), - [anon_sym_AMP] = ACTIONS(3805), - [anon_sym_EQ_EQ] = ACTIONS(3795), - [anon_sym_BANG_EQ] = ACTIONS(3795), - [anon_sym_GT] = ACTIONS(3803), - [anon_sym_GT_EQ] = ACTIONS(3795), - [anon_sym_LT_EQ] = ACTIONS(3803), - [anon_sym_LT] = ACTIONS(3811), - [anon_sym_LT_LT] = ACTIONS(3803), - [anon_sym_GT_GT] = ACTIONS(3803), - [anon_sym_SEMI] = ACTIONS(3795), - [anon_sym_extern] = ACTIONS(3793), - [anon_sym___attribute__] = ACTIONS(3793), - [anon_sym_COLON_COLON] = ACTIONS(3814), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3801), - [anon_sym___declspec] = ACTIONS(3793), - [anon_sym___based] = ACTIONS(3793), - [anon_sym_LBRACE] = ACTIONS(3819), - [anon_sym_LBRACK] = ACTIONS(3805), - [anon_sym_EQ] = ACTIONS(3825), - [anon_sym_static] = ACTIONS(3793), - [anon_sym_register] = ACTIONS(3793), - [anon_sym_inline] = ACTIONS(3793), - [anon_sym_thread_local] = ACTIONS(3793), - [anon_sym_const] = ACTIONS(3793), - [anon_sym_volatile] = ACTIONS(3793), - [anon_sym_restrict] = ACTIONS(3793), - [anon_sym__Atomic] = ACTIONS(3793), - [anon_sym_mutable] = ACTIONS(3793), - [anon_sym_constexpr] = ACTIONS(3793), - [anon_sym_constinit] = ACTIONS(3793), - [anon_sym_consteval] = ACTIONS(3793), - [anon_sym_COLON] = ACTIONS(3900), - [anon_sym_QMARK] = ACTIONS(3795), - [anon_sym_STAR_EQ] = ACTIONS(3829), - [anon_sym_SLASH_EQ] = ACTIONS(3829), - [anon_sym_PERCENT_EQ] = ACTIONS(3829), - [anon_sym_PLUS_EQ] = ACTIONS(3829), - [anon_sym_DASH_EQ] = ACTIONS(3829), - [anon_sym_LT_LT_EQ] = ACTIONS(3829), - [anon_sym_GT_GT_EQ] = ACTIONS(3829), - [anon_sym_AMP_EQ] = ACTIONS(3829), - [anon_sym_CARET_EQ] = ACTIONS(3829), - [anon_sym_PIPE_EQ] = ACTIONS(3829), - [anon_sym_and_eq] = ACTIONS(3825), - [anon_sym_or_eq] = ACTIONS(3825), - [anon_sym_xor_eq] = ACTIONS(3825), - [anon_sym_LT_EQ_GT] = ACTIONS(3795), - [anon_sym_or] = ACTIONS(3803), - [anon_sym_and] = ACTIONS(3803), - [anon_sym_bitor] = ACTIONS(3803), - [anon_sym_xor] = ACTIONS(3803), - [anon_sym_bitand] = ACTIONS(3803), - [anon_sym_not_eq] = ACTIONS(3803), - [anon_sym_DASH_DASH] = ACTIONS(3795), - [anon_sym_PLUS_PLUS] = ACTIONS(3795), - [anon_sym_DOT] = ACTIONS(3803), - [anon_sym_DASH_GT] = ACTIONS(3795), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3793), - [anon_sym_decltype] = ACTIONS(3793), - [anon_sym_virtual] = ACTIONS(3793), - [anon_sym_template] = ACTIONS(3793), - [anon_sym_operator] = ACTIONS(3793), + [sym__expression] = STATE(4052), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(4312), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(4219), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1781] = { - [sym_identifier] = ACTIONS(3902), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3904), - [anon_sym_COMMA] = ACTIONS(3904), - [anon_sym_RPAREN] = ACTIONS(3904), - [anon_sym_LPAREN2] = ACTIONS(3904), - [anon_sym_TILDE] = ACTIONS(3904), - [anon_sym_DASH] = ACTIONS(3902), - [anon_sym_PLUS] = ACTIONS(3902), - [anon_sym_STAR] = ACTIONS(3902), - [anon_sym_SLASH] = ACTIONS(3902), - [anon_sym_PERCENT] = ACTIONS(3902), - [anon_sym_PIPE_PIPE] = ACTIONS(3904), - [anon_sym_AMP_AMP] = ACTIONS(3904), - [anon_sym_PIPE] = ACTIONS(3902), - [anon_sym_CARET] = ACTIONS(3902), - [anon_sym_AMP] = ACTIONS(3902), - [anon_sym_EQ_EQ] = ACTIONS(3904), - [anon_sym_BANG_EQ] = ACTIONS(3904), - [anon_sym_GT] = ACTIONS(3902), - [anon_sym_GT_EQ] = ACTIONS(3904), - [anon_sym_LT_EQ] = ACTIONS(3902), - [anon_sym_LT] = ACTIONS(3902), - [anon_sym_LT_LT] = ACTIONS(3902), - [anon_sym_GT_GT] = ACTIONS(3902), - [anon_sym_extern] = ACTIONS(3902), - [anon_sym___attribute__] = ACTIONS(3902), - [anon_sym_COLON_COLON] = ACTIONS(3904), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3904), - [anon_sym___declspec] = ACTIONS(3902), - [anon_sym___based] = ACTIONS(3902), - [anon_sym_LBRACE] = ACTIONS(3904), - [anon_sym_LBRACK] = ACTIONS(3902), - [anon_sym_EQ] = ACTIONS(3902), - [anon_sym_static] = ACTIONS(3902), - [anon_sym_register] = ACTIONS(3902), - [anon_sym_inline] = ACTIONS(3902), - [anon_sym_thread_local] = ACTIONS(3902), - [anon_sym_const] = ACTIONS(3902), - [anon_sym_volatile] = ACTIONS(3902), - [anon_sym_restrict] = ACTIONS(3902), - [anon_sym__Atomic] = ACTIONS(3902), - [anon_sym_mutable] = ACTIONS(3902), - [anon_sym_constexpr] = ACTIONS(3902), - [anon_sym_constinit] = ACTIONS(3902), - [anon_sym_consteval] = ACTIONS(3902), - [anon_sym_QMARK] = ACTIONS(3904), - [anon_sym_STAR_EQ] = ACTIONS(3904), - [anon_sym_SLASH_EQ] = ACTIONS(3904), - [anon_sym_PERCENT_EQ] = ACTIONS(3904), - [anon_sym_PLUS_EQ] = ACTIONS(3904), - [anon_sym_DASH_EQ] = ACTIONS(3904), - [anon_sym_LT_LT_EQ] = ACTIONS(3904), - [anon_sym_GT_GT_EQ] = ACTIONS(3904), - [anon_sym_AMP_EQ] = ACTIONS(3904), - [anon_sym_CARET_EQ] = ACTIONS(3904), - [anon_sym_PIPE_EQ] = ACTIONS(3904), - [anon_sym_and_eq] = ACTIONS(3902), - [anon_sym_or_eq] = ACTIONS(3902), - [anon_sym_xor_eq] = ACTIONS(3902), - [anon_sym_LT_EQ_GT] = ACTIONS(3904), - [anon_sym_or] = ACTIONS(3902), - [anon_sym_and] = ACTIONS(3902), - [anon_sym_bitor] = ACTIONS(3902), - [anon_sym_xor] = ACTIONS(3902), - [anon_sym_bitand] = ACTIONS(3902), - [anon_sym_not_eq] = ACTIONS(3902), - [anon_sym_DASH_DASH] = ACTIONS(3904), - [anon_sym_PLUS_PLUS] = ACTIONS(3904), - [anon_sym_DOT] = ACTIONS(3902), - [anon_sym_DASH_GT] = ACTIONS(3902), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3902), - [anon_sym_decltype] = ACTIONS(3902), - [anon_sym_virtual] = ACTIONS(3902), - [anon_sym_template] = ACTIONS(3902), - [anon_sym_operator] = ACTIONS(3902), - [anon_sym_DOT_STAR] = ACTIONS(3904), - [anon_sym_DASH_GT_STAR] = ACTIONS(3904), + [sym__expression] = STATE(3505), + [sym__expression_not_binary] = STATE(3565), + [sym_conditional_expression] = STATE(3565), + [sym_assignment_expression] = STATE(3565), + [sym_pointer_expression] = STATE(3220), + [sym_unary_expression] = STATE(3565), + [sym_binary_expression] = STATE(3565), + [sym_update_expression] = STATE(3565), + [sym_cast_expression] = STATE(3565), + [sym_sizeof_expression] = STATE(3565), + [sym_offsetof_expression] = STATE(3565), + [sym_generic_expression] = STATE(3565), + [sym_subscript_expression] = STATE(3220), + [sym_call_expression] = STATE(3220), + [sym_gnu_asm_expression] = STATE(3565), + [sym_field_expression] = STATE(3220), + [sym_compound_literal_expression] = STATE(3565), + [sym_parenthesized_expression] = STATE(3220), + [sym_char_literal] = STATE(3429), + [sym_concatenated_string] = STATE(3429), + [sym_string_literal] = STATE(2248), + [sym_null] = STATE(3565), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6847), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3565), + [sym_raw_string_literal] = STATE(2248), + [sym_co_await_expression] = STATE(3565), + [sym_new_expression] = STATE(3565), + [sym_delete_expression] = STATE(3565), + [sym_requires_clause] = STATE(3565), + [sym_requires_expression] = STATE(3565), + [sym_lambda_expression] = STATE(3565), + [sym_lambda_capture_specifier] = STATE(5204), + [sym_fold_expression] = STATE(3565), + [sym_parameter_pack_expansion] = STATE(3565), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5232), + [sym_qualified_identifier] = STATE(3220), + [sym_qualified_type_identifier] = STATE(6847), + [sym_user_defined_literal] = STATE(3565), + [sym_identifier] = ACTIONS(2095), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4314), + [anon_sym_LPAREN2] = ACTIONS(1841), + [anon_sym_BANG] = ACTIONS(1843), + [anon_sym_TILDE] = ACTIONS(1843), + [anon_sym_DASH] = ACTIONS(1845), + [anon_sym_PLUS] = ACTIONS(1845), + [anon_sym_STAR] = ACTIONS(1847), + [anon_sym_AMP] = ACTIONS(1847), + [anon_sym_COLON_COLON] = ACTIONS(1849), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1999), + [anon_sym_not] = ACTIONS(1845), + [anon_sym_compl] = ACTIONS(1845), + [anon_sym_DASH_DASH] = ACTIONS(1861), + [anon_sym_PLUS_PLUS] = ACTIONS(1861), + [anon_sym_sizeof] = ACTIONS(1863), + [anon_sym_offsetof] = ACTIONS(1865), + [anon_sym__Generic] = ACTIONS(1867), + [anon_sym_asm] = ACTIONS(1869), + [anon_sym___asm__] = ACTIONS(1869), + [sym_number_literal] = ACTIONS(1871), + [anon_sym_L_SQUOTE] = ACTIONS(1873), + [anon_sym_u_SQUOTE] = ACTIONS(1873), + [anon_sym_U_SQUOTE] = ACTIONS(1873), + [anon_sym_u8_SQUOTE] = ACTIONS(1873), + [anon_sym_SQUOTE] = ACTIONS(1873), + [anon_sym_L_DQUOTE] = ACTIONS(1875), + [anon_sym_u_DQUOTE] = ACTIONS(1875), + [anon_sym_U_DQUOTE] = ACTIONS(1875), + [anon_sym_u8_DQUOTE] = ACTIONS(1875), + [anon_sym_DQUOTE] = ACTIONS(1875), + [sym_true] = ACTIONS(1877), + [sym_false] = ACTIONS(1877), + [anon_sym_NULL] = ACTIONS(1879), + [anon_sym_nullptr] = ACTIONS(1879), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(1883), + [anon_sym_R_DQUOTE] = ACTIONS(1885), + [anon_sym_LR_DQUOTE] = ACTIONS(1885), + [anon_sym_uR_DQUOTE] = ACTIONS(1885), + [anon_sym_UR_DQUOTE] = ACTIONS(1885), + [anon_sym_u8R_DQUOTE] = ACTIONS(1885), + [anon_sym_co_await] = ACTIONS(1887), + [anon_sym_new] = ACTIONS(1889), + [anon_sym_requires] = ACTIONS(1891), + [sym_this] = ACTIONS(1877), }, [1782] = { - [sym_identifier] = ACTIONS(3858), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3860), - [anon_sym_COMMA] = ACTIONS(3860), - [anon_sym_RPAREN] = ACTIONS(3860), - [anon_sym_LPAREN2] = ACTIONS(3860), - [anon_sym_TILDE] = ACTIONS(3860), - [anon_sym_DASH] = ACTIONS(3858), - [anon_sym_PLUS] = ACTIONS(3858), - [anon_sym_STAR] = ACTIONS(3858), - [anon_sym_SLASH] = ACTIONS(3858), - [anon_sym_PERCENT] = ACTIONS(3858), - [anon_sym_PIPE_PIPE] = ACTIONS(3860), - [anon_sym_AMP_AMP] = ACTIONS(3860), - [anon_sym_PIPE] = ACTIONS(3858), - [anon_sym_CARET] = ACTIONS(3858), - [anon_sym_AMP] = ACTIONS(3858), - [anon_sym_EQ_EQ] = ACTIONS(3860), - [anon_sym_BANG_EQ] = ACTIONS(3860), - [anon_sym_GT] = ACTIONS(3858), - [anon_sym_GT_EQ] = ACTIONS(3860), - [anon_sym_LT_EQ] = ACTIONS(3858), - [anon_sym_LT] = ACTIONS(3858), - [anon_sym_LT_LT] = ACTIONS(3858), - [anon_sym_GT_GT] = ACTIONS(3858), - [anon_sym_extern] = ACTIONS(3858), - [anon_sym___attribute__] = ACTIONS(3858), - [anon_sym_COLON_COLON] = ACTIONS(3860), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3860), - [anon_sym___declspec] = ACTIONS(3858), - [anon_sym___based] = ACTIONS(3858), - [anon_sym_LBRACE] = ACTIONS(3860), - [anon_sym_LBRACK] = ACTIONS(3858), - [anon_sym_EQ] = ACTIONS(3858), - [anon_sym_static] = ACTIONS(3858), - [anon_sym_register] = ACTIONS(3858), - [anon_sym_inline] = ACTIONS(3858), - [anon_sym_thread_local] = ACTIONS(3858), - [anon_sym_const] = ACTIONS(3858), - [anon_sym_volatile] = ACTIONS(3858), - [anon_sym_restrict] = ACTIONS(3858), - [anon_sym__Atomic] = ACTIONS(3858), - [anon_sym_mutable] = ACTIONS(3858), - [anon_sym_constexpr] = ACTIONS(3858), - [anon_sym_constinit] = ACTIONS(3858), - [anon_sym_consteval] = ACTIONS(3858), - [anon_sym_QMARK] = ACTIONS(3860), - [anon_sym_STAR_EQ] = ACTIONS(3860), - [anon_sym_SLASH_EQ] = ACTIONS(3860), - [anon_sym_PERCENT_EQ] = ACTIONS(3860), - [anon_sym_PLUS_EQ] = ACTIONS(3860), - [anon_sym_DASH_EQ] = ACTIONS(3860), - [anon_sym_LT_LT_EQ] = ACTIONS(3860), - [anon_sym_GT_GT_EQ] = ACTIONS(3860), - [anon_sym_AMP_EQ] = ACTIONS(3860), - [anon_sym_CARET_EQ] = ACTIONS(3860), - [anon_sym_PIPE_EQ] = ACTIONS(3860), - [anon_sym_and_eq] = ACTIONS(3858), - [anon_sym_or_eq] = ACTIONS(3858), - [anon_sym_xor_eq] = ACTIONS(3858), - [anon_sym_LT_EQ_GT] = ACTIONS(3860), - [anon_sym_or] = ACTIONS(3858), - [anon_sym_and] = ACTIONS(3858), - [anon_sym_bitor] = ACTIONS(3858), - [anon_sym_xor] = ACTIONS(3858), - [anon_sym_bitand] = ACTIONS(3858), - [anon_sym_not_eq] = ACTIONS(3858), - [anon_sym_DASH_DASH] = ACTIONS(3860), - [anon_sym_PLUS_PLUS] = ACTIONS(3860), - [anon_sym_DOT] = ACTIONS(3858), - [anon_sym_DASH_GT] = ACTIONS(3858), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3858), - [anon_sym_decltype] = ACTIONS(3858), - [anon_sym_virtual] = ACTIONS(3858), - [anon_sym_template] = ACTIONS(3858), - [anon_sym_operator] = ACTIONS(3858), - [anon_sym_DOT_STAR] = ACTIONS(3860), - [anon_sym_DASH_GT_STAR] = ACTIONS(3860), + [sym__expression] = STATE(3039), + [sym__expression_not_binary] = STATE(3021), + [sym_conditional_expression] = STATE(3021), + [sym_assignment_expression] = STATE(3021), + [sym_pointer_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_cast_expression] = STATE(3021), + [sym_sizeof_expression] = STATE(3021), + [sym_offsetof_expression] = STATE(3021), + [sym_generic_expression] = STATE(3021), + [sym_subscript_expression] = STATE(3021), + [sym_call_expression] = STATE(3021), + [sym_gnu_asm_expression] = STATE(3021), + [sym_field_expression] = STATE(3021), + [sym_compound_literal_expression] = STATE(3021), + [sym_parenthesized_expression] = STATE(3021), + [sym_char_literal] = STATE(2901), + [sym_concatenated_string] = STATE(2901), + [sym_string_literal] = STATE(2173), + [sym_null] = STATE(3021), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6616), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3021), + [sym_raw_string_literal] = STATE(2173), + [sym_co_await_expression] = STATE(3021), + [sym_new_expression] = STATE(3021), + [sym_delete_expression] = STATE(3021), + [sym_requires_clause] = STATE(3021), + [sym_requires_expression] = STATE(3021), + [sym_lambda_expression] = STATE(3021), + [sym_lambda_capture_specifier] = STATE(5188), + [sym_fold_expression] = STATE(3021), + [sym_parameter_pack_expansion] = STATE(3021), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3021), + [sym_qualified_type_identifier] = STATE(6616), + [sym_user_defined_literal] = STATE(3021), + [sym_identifier] = ACTIONS(1933), + [anon_sym_LPAREN2] = ACTIONS(1937), + [anon_sym_BANG] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(1941), + [anon_sym_DASH] = ACTIONS(1939), + [anon_sym_PLUS] = ACTIONS(1939), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(1945), + [anon_sym_LBRACK] = ACTIONS(1949), + [anon_sym_RBRACK] = ACTIONS(4317), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(1939), + [anon_sym_compl] = ACTIONS(1939), + [anon_sym_DASH_DASH] = ACTIONS(1953), + [anon_sym_PLUS_PLUS] = ACTIONS(1953), + [anon_sym_sizeof] = ACTIONS(1955), + [anon_sym_offsetof] = ACTIONS(1957), + [anon_sym__Generic] = ACTIONS(1959), + [anon_sym_asm] = ACTIONS(1961), + [anon_sym___asm__] = ACTIONS(1961), + [sym_number_literal] = ACTIONS(1963), + [anon_sym_L_SQUOTE] = ACTIONS(1965), + [anon_sym_u_SQUOTE] = ACTIONS(1965), + [anon_sym_U_SQUOTE] = ACTIONS(1965), + [anon_sym_u8_SQUOTE] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_L_DQUOTE] = ACTIONS(1967), + [anon_sym_u_DQUOTE] = ACTIONS(1967), + [anon_sym_U_DQUOTE] = ACTIONS(1967), + [anon_sym_u8_DQUOTE] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(1967), + [sym_true] = ACTIONS(1969), + [sym_false] = ACTIONS(1969), + [anon_sym_NULL] = ACTIONS(1971), + [anon_sym_nullptr] = ACTIONS(1971), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(1975), + [anon_sym_R_DQUOTE] = ACTIONS(1977), + [anon_sym_LR_DQUOTE] = ACTIONS(1977), + [anon_sym_uR_DQUOTE] = ACTIONS(1977), + [anon_sym_UR_DQUOTE] = ACTIONS(1977), + [anon_sym_u8R_DQUOTE] = ACTIONS(1977), + [anon_sym_co_await] = ACTIONS(1979), + [anon_sym_new] = ACTIONS(1981), + [anon_sym_requires] = ACTIONS(1983), + [sym_this] = ACTIONS(1969), }, [1783] = { - [sym_identifier] = ACTIONS(3902), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3904), - [anon_sym_COMMA] = ACTIONS(3904), - [anon_sym_RPAREN] = ACTIONS(3904), - [anon_sym_LPAREN2] = ACTIONS(3904), - [anon_sym_TILDE] = ACTIONS(3904), - [anon_sym_DASH] = ACTIONS(3902), - [anon_sym_PLUS] = ACTIONS(3902), - [anon_sym_STAR] = ACTIONS(3902), - [anon_sym_SLASH] = ACTIONS(3902), - [anon_sym_PERCENT] = ACTIONS(3902), - [anon_sym_PIPE_PIPE] = ACTIONS(3904), - [anon_sym_AMP_AMP] = ACTIONS(3904), - [anon_sym_PIPE] = ACTIONS(3902), - [anon_sym_CARET] = ACTIONS(3902), - [anon_sym_AMP] = ACTIONS(3902), - [anon_sym_EQ_EQ] = ACTIONS(3904), - [anon_sym_BANG_EQ] = ACTIONS(3904), - [anon_sym_GT] = ACTIONS(3902), - [anon_sym_GT_EQ] = ACTIONS(3904), - [anon_sym_LT_EQ] = ACTIONS(3902), - [anon_sym_LT] = ACTIONS(3902), - [anon_sym_LT_LT] = ACTIONS(3902), - [anon_sym_GT_GT] = ACTIONS(3902), - [anon_sym_SEMI] = ACTIONS(3904), - [anon_sym_extern] = ACTIONS(3902), - [anon_sym___attribute__] = ACTIONS(3902), - [anon_sym_COLON_COLON] = ACTIONS(3904), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3904), - [anon_sym___declspec] = ACTIONS(3902), - [anon_sym___based] = ACTIONS(3902), - [anon_sym_LBRACE] = ACTIONS(3904), - [anon_sym_RBRACE] = ACTIONS(3904), - [anon_sym_LBRACK] = ACTIONS(3902), - [anon_sym_EQ] = ACTIONS(3902), - [anon_sym_static] = ACTIONS(3902), - [anon_sym_register] = ACTIONS(3902), - [anon_sym_inline] = ACTIONS(3902), - [anon_sym_thread_local] = ACTIONS(3902), - [anon_sym_const] = ACTIONS(3902), - [anon_sym_volatile] = ACTIONS(3902), - [anon_sym_restrict] = ACTIONS(3902), - [anon_sym__Atomic] = ACTIONS(3902), - [anon_sym_mutable] = ACTIONS(3902), - [anon_sym_constexpr] = ACTIONS(3902), - [anon_sym_constinit] = ACTIONS(3902), - [anon_sym_consteval] = ACTIONS(3902), - [anon_sym_QMARK] = ACTIONS(3904), - [anon_sym_STAR_EQ] = ACTIONS(3904), - [anon_sym_SLASH_EQ] = ACTIONS(3904), - [anon_sym_PERCENT_EQ] = ACTIONS(3904), - [anon_sym_PLUS_EQ] = ACTIONS(3904), - [anon_sym_DASH_EQ] = ACTIONS(3904), - [anon_sym_LT_LT_EQ] = ACTIONS(3904), - [anon_sym_GT_GT_EQ] = ACTIONS(3904), - [anon_sym_AMP_EQ] = ACTIONS(3904), - [anon_sym_CARET_EQ] = ACTIONS(3904), - [anon_sym_PIPE_EQ] = ACTIONS(3904), - [anon_sym_and_eq] = ACTIONS(3902), - [anon_sym_or_eq] = ACTIONS(3902), - [anon_sym_xor_eq] = ACTIONS(3902), - [anon_sym_LT_EQ_GT] = ACTIONS(3904), - [anon_sym_or] = ACTIONS(3902), - [anon_sym_and] = ACTIONS(3902), - [anon_sym_bitor] = ACTIONS(3902), - [anon_sym_xor] = ACTIONS(3902), - [anon_sym_bitand] = ACTIONS(3902), - [anon_sym_not_eq] = ACTIONS(3902), - [anon_sym_DASH_DASH] = ACTIONS(3904), - [anon_sym_PLUS_PLUS] = ACTIONS(3904), - [anon_sym_DOT] = ACTIONS(3902), - [anon_sym_DASH_GT] = ACTIONS(3904), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3902), - [anon_sym_decltype] = ACTIONS(3902), - [anon_sym_virtual] = ACTIONS(3902), - [anon_sym_template] = ACTIONS(3902), - [anon_sym_operator] = ACTIONS(3902), + [sym__expression] = STATE(3505), + [sym__expression_not_binary] = STATE(3565), + [sym_conditional_expression] = STATE(3565), + [sym_assignment_expression] = STATE(3565), + [sym_pointer_expression] = STATE(3220), + [sym_unary_expression] = STATE(3565), + [sym_binary_expression] = STATE(3565), + [sym_update_expression] = STATE(3565), + [sym_cast_expression] = STATE(3565), + [sym_sizeof_expression] = STATE(3565), + [sym_offsetof_expression] = STATE(3565), + [sym_generic_expression] = STATE(3565), + [sym_subscript_expression] = STATE(3220), + [sym_call_expression] = STATE(3220), + [sym_gnu_asm_expression] = STATE(3565), + [sym_field_expression] = STATE(3220), + [sym_compound_literal_expression] = STATE(3565), + [sym_parenthesized_expression] = STATE(3220), + [sym_char_literal] = STATE(3429), + [sym_concatenated_string] = STATE(3429), + [sym_string_literal] = STATE(2248), + [sym_null] = STATE(3565), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6847), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3565), + [sym_raw_string_literal] = STATE(2248), + [sym_co_await_expression] = STATE(3565), + [sym_new_expression] = STATE(3565), + [sym_delete_expression] = STATE(3565), + [sym_requires_clause] = STATE(3565), + [sym_requires_expression] = STATE(3565), + [sym_lambda_expression] = STATE(3565), + [sym_lambda_capture_specifier] = STATE(5204), + [sym_fold_expression] = STATE(3565), + [sym_parameter_pack_expansion] = STATE(3565), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5232), + [sym_qualified_identifier] = STATE(3220), + [sym_qualified_type_identifier] = STATE(6847), + [sym_user_defined_literal] = STATE(3565), + [sym_identifier] = ACTIONS(2095), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4319), + [anon_sym_LPAREN2] = ACTIONS(1841), + [anon_sym_BANG] = ACTIONS(1843), + [anon_sym_TILDE] = ACTIONS(1843), + [anon_sym_DASH] = ACTIONS(1845), + [anon_sym_PLUS] = ACTIONS(1845), + [anon_sym_STAR] = ACTIONS(1847), + [anon_sym_AMP] = ACTIONS(1847), + [anon_sym_COLON_COLON] = ACTIONS(1849), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1999), + [anon_sym_not] = ACTIONS(1845), + [anon_sym_compl] = ACTIONS(1845), + [anon_sym_DASH_DASH] = ACTIONS(1861), + [anon_sym_PLUS_PLUS] = ACTIONS(1861), + [anon_sym_sizeof] = ACTIONS(1863), + [anon_sym_offsetof] = ACTIONS(1865), + [anon_sym__Generic] = ACTIONS(1867), + [anon_sym_asm] = ACTIONS(1869), + [anon_sym___asm__] = ACTIONS(1869), + [sym_number_literal] = ACTIONS(1871), + [anon_sym_L_SQUOTE] = ACTIONS(1873), + [anon_sym_u_SQUOTE] = ACTIONS(1873), + [anon_sym_U_SQUOTE] = ACTIONS(1873), + [anon_sym_u8_SQUOTE] = ACTIONS(1873), + [anon_sym_SQUOTE] = ACTIONS(1873), + [anon_sym_L_DQUOTE] = ACTIONS(1875), + [anon_sym_u_DQUOTE] = ACTIONS(1875), + [anon_sym_U_DQUOTE] = ACTIONS(1875), + [anon_sym_u8_DQUOTE] = ACTIONS(1875), + [anon_sym_DQUOTE] = ACTIONS(1875), + [sym_true] = ACTIONS(1877), + [sym_false] = ACTIONS(1877), + [anon_sym_NULL] = ACTIONS(1879), + [anon_sym_nullptr] = ACTIONS(1879), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(1883), + [anon_sym_R_DQUOTE] = ACTIONS(1885), + [anon_sym_LR_DQUOTE] = ACTIONS(1885), + [anon_sym_uR_DQUOTE] = ACTIONS(1885), + [anon_sym_UR_DQUOTE] = ACTIONS(1885), + [anon_sym_u8R_DQUOTE] = ACTIONS(1885), + [anon_sym_co_await] = ACTIONS(1887), + [anon_sym_new] = ACTIONS(1889), + [anon_sym_requires] = ACTIONS(1891), + [sym_this] = ACTIONS(1877), }, [1784] = { - [sym_identifier] = ACTIONS(3866), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3868), - [anon_sym_COMMA] = ACTIONS(3868), - [anon_sym_RPAREN] = ACTIONS(3868), - [anon_sym_LPAREN2] = ACTIONS(3868), - [anon_sym_TILDE] = ACTIONS(3868), - [anon_sym_DASH] = ACTIONS(3866), - [anon_sym_PLUS] = ACTIONS(3866), - [anon_sym_STAR] = ACTIONS(3866), - [anon_sym_SLASH] = ACTIONS(3866), - [anon_sym_PERCENT] = ACTIONS(3866), - [anon_sym_PIPE_PIPE] = ACTIONS(3868), - [anon_sym_AMP_AMP] = ACTIONS(3868), - [anon_sym_PIPE] = ACTIONS(3866), - [anon_sym_CARET] = ACTIONS(3866), - [anon_sym_AMP] = ACTIONS(3866), - [anon_sym_EQ_EQ] = ACTIONS(3868), - [anon_sym_BANG_EQ] = ACTIONS(3868), - [anon_sym_GT] = ACTIONS(3866), - [anon_sym_GT_EQ] = ACTIONS(3868), - [anon_sym_LT_EQ] = ACTIONS(3866), - [anon_sym_LT] = ACTIONS(3866), - [anon_sym_LT_LT] = ACTIONS(3866), - [anon_sym_GT_GT] = ACTIONS(3866), - [anon_sym_SEMI] = ACTIONS(3868), - [anon_sym_extern] = ACTIONS(3866), - [anon_sym___attribute__] = ACTIONS(3866), - [anon_sym_COLON_COLON] = ACTIONS(3868), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3868), - [anon_sym___declspec] = ACTIONS(3866), - [anon_sym___based] = ACTIONS(3866), - [anon_sym_LBRACE] = ACTIONS(3868), - [anon_sym_RBRACE] = ACTIONS(3868), - [anon_sym_LBRACK] = ACTIONS(3866), - [anon_sym_EQ] = ACTIONS(3866), - [anon_sym_static] = ACTIONS(3866), - [anon_sym_register] = ACTIONS(3866), - [anon_sym_inline] = ACTIONS(3866), - [anon_sym_thread_local] = ACTIONS(3866), - [anon_sym_const] = ACTIONS(3866), - [anon_sym_volatile] = ACTIONS(3866), - [anon_sym_restrict] = ACTIONS(3866), - [anon_sym__Atomic] = ACTIONS(3866), - [anon_sym_mutable] = ACTIONS(3866), - [anon_sym_constexpr] = ACTIONS(3866), - [anon_sym_constinit] = ACTIONS(3866), - [anon_sym_consteval] = ACTIONS(3866), - [anon_sym_QMARK] = ACTIONS(3868), - [anon_sym_STAR_EQ] = ACTIONS(3868), - [anon_sym_SLASH_EQ] = ACTIONS(3868), - [anon_sym_PERCENT_EQ] = ACTIONS(3868), - [anon_sym_PLUS_EQ] = ACTIONS(3868), - [anon_sym_DASH_EQ] = ACTIONS(3868), - [anon_sym_LT_LT_EQ] = ACTIONS(3868), - [anon_sym_GT_GT_EQ] = ACTIONS(3868), - [anon_sym_AMP_EQ] = ACTIONS(3868), - [anon_sym_CARET_EQ] = ACTIONS(3868), - [anon_sym_PIPE_EQ] = ACTIONS(3868), - [anon_sym_and_eq] = ACTIONS(3866), - [anon_sym_or_eq] = ACTIONS(3866), - [anon_sym_xor_eq] = ACTIONS(3866), - [anon_sym_LT_EQ_GT] = ACTIONS(3868), - [anon_sym_or] = ACTIONS(3866), - [anon_sym_and] = ACTIONS(3866), - [anon_sym_bitor] = ACTIONS(3866), - [anon_sym_xor] = ACTIONS(3866), - [anon_sym_bitand] = ACTIONS(3866), - [anon_sym_not_eq] = ACTIONS(3866), - [anon_sym_DASH_DASH] = ACTIONS(3868), - [anon_sym_PLUS_PLUS] = ACTIONS(3868), - [anon_sym_DOT] = ACTIONS(3866), - [anon_sym_DASH_GT] = ACTIONS(3868), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3866), - [anon_sym_decltype] = ACTIONS(3866), - [anon_sym_virtual] = ACTIONS(3866), - [anon_sym_template] = ACTIONS(3866), - [anon_sym_operator] = ACTIONS(3866), + [sym__expression] = STATE(3508), + [sym__expression_not_binary] = STATE(3565), + [sym_conditional_expression] = STATE(3565), + [sym_assignment_expression] = STATE(3565), + [sym_pointer_expression] = STATE(3220), + [sym_unary_expression] = STATE(3565), + [sym_binary_expression] = STATE(3565), + [sym_update_expression] = STATE(3565), + [sym_cast_expression] = STATE(3565), + [sym_sizeof_expression] = STATE(3565), + [sym_offsetof_expression] = STATE(3565), + [sym_generic_expression] = STATE(3565), + [sym_subscript_expression] = STATE(3220), + [sym_call_expression] = STATE(3220), + [sym_gnu_asm_expression] = STATE(3565), + [sym_field_expression] = STATE(3220), + [sym_compound_literal_expression] = STATE(3565), + [sym_parenthesized_expression] = STATE(3220), + [sym_char_literal] = STATE(3429), + [sym_concatenated_string] = STATE(3429), + [sym_string_literal] = STATE(2248), + [sym_null] = STATE(3565), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6847), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3565), + [sym_raw_string_literal] = STATE(2248), + [sym_co_await_expression] = STATE(3565), + [sym_new_expression] = STATE(3565), + [sym_delete_expression] = STATE(3565), + [sym_requires_clause] = STATE(3565), + [sym_requires_expression] = STATE(3565), + [sym_lambda_expression] = STATE(3565), + [sym_lambda_capture_specifier] = STATE(5204), + [sym_fold_expression] = STATE(3565), + [sym_parameter_pack_expansion] = STATE(3565), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5232), + [sym_qualified_identifier] = STATE(3220), + [sym_qualified_type_identifier] = STATE(6847), + [sym_user_defined_literal] = STATE(3565), + [sym_identifier] = ACTIONS(2095), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4322), + [anon_sym_LPAREN2] = ACTIONS(1841), + [anon_sym_BANG] = ACTIONS(1843), + [anon_sym_TILDE] = ACTIONS(1843), + [anon_sym_DASH] = ACTIONS(1845), + [anon_sym_PLUS] = ACTIONS(1845), + [anon_sym_STAR] = ACTIONS(1847), + [anon_sym_AMP] = ACTIONS(1847), + [anon_sym_COLON_COLON] = ACTIONS(1849), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1999), + [anon_sym_not] = ACTIONS(1845), + [anon_sym_compl] = ACTIONS(1845), + [anon_sym_DASH_DASH] = ACTIONS(1861), + [anon_sym_PLUS_PLUS] = ACTIONS(1861), + [anon_sym_sizeof] = ACTIONS(1863), + [anon_sym_offsetof] = ACTIONS(1865), + [anon_sym__Generic] = ACTIONS(1867), + [anon_sym_asm] = ACTIONS(1869), + [anon_sym___asm__] = ACTIONS(1869), + [sym_number_literal] = ACTIONS(1871), + [anon_sym_L_SQUOTE] = ACTIONS(1873), + [anon_sym_u_SQUOTE] = ACTIONS(1873), + [anon_sym_U_SQUOTE] = ACTIONS(1873), + [anon_sym_u8_SQUOTE] = ACTIONS(1873), + [anon_sym_SQUOTE] = ACTIONS(1873), + [anon_sym_L_DQUOTE] = ACTIONS(1875), + [anon_sym_u_DQUOTE] = ACTIONS(1875), + [anon_sym_U_DQUOTE] = ACTIONS(1875), + [anon_sym_u8_DQUOTE] = ACTIONS(1875), + [anon_sym_DQUOTE] = ACTIONS(1875), + [sym_true] = ACTIONS(1877), + [sym_false] = ACTIONS(1877), + [anon_sym_NULL] = ACTIONS(1879), + [anon_sym_nullptr] = ACTIONS(1879), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(1883), + [anon_sym_R_DQUOTE] = ACTIONS(1885), + [anon_sym_LR_DQUOTE] = ACTIONS(1885), + [anon_sym_uR_DQUOTE] = ACTIONS(1885), + [anon_sym_UR_DQUOTE] = ACTIONS(1885), + [anon_sym_u8R_DQUOTE] = ACTIONS(1885), + [anon_sym_co_await] = ACTIONS(1887), + [anon_sym_new] = ACTIONS(1889), + [anon_sym_requires] = ACTIONS(1891), + [sym_this] = ACTIONS(1877), }, [1785] = { - [sym_template_argument_list] = STATE(1899), - [sym_identifier] = ACTIONS(3793), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3795), - [anon_sym_COMMA] = ACTIONS(3795), - [anon_sym_LPAREN2] = ACTIONS(3797), - [anon_sym_TILDE] = ACTIONS(3801), - [anon_sym_DASH] = ACTIONS(3803), - [anon_sym_PLUS] = ACTIONS(3803), - [anon_sym_STAR] = ACTIONS(3805), - [anon_sym_SLASH] = ACTIONS(3803), - [anon_sym_PERCENT] = ACTIONS(3803), - [anon_sym_PIPE_PIPE] = ACTIONS(3795), - [anon_sym_AMP_AMP] = ACTIONS(3808), - [anon_sym_PIPE] = ACTIONS(3803), - [anon_sym_CARET] = ACTIONS(3803), - [anon_sym_AMP] = ACTIONS(3805), - [anon_sym_EQ_EQ] = ACTIONS(3795), - [anon_sym_BANG_EQ] = ACTIONS(3795), - [anon_sym_GT] = ACTIONS(3803), - [anon_sym_GT_EQ] = ACTIONS(3795), - [anon_sym_LT_EQ] = ACTIONS(3803), - [anon_sym_LT] = ACTIONS(3811), - [anon_sym_LT_LT] = ACTIONS(3803), - [anon_sym_GT_GT] = ACTIONS(3803), - [anon_sym_SEMI] = ACTIONS(3808), - [anon_sym_extern] = ACTIONS(3793), - [anon_sym___attribute__] = ACTIONS(3793), - [anon_sym_COLON_COLON] = ACTIONS(3814), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3816), - [anon_sym___declspec] = ACTIONS(3793), - [anon_sym___based] = ACTIONS(3793), - [anon_sym_LBRACE] = ACTIONS(3819), - [anon_sym_LBRACK] = ACTIONS(3821), - [anon_sym_EQ] = ACTIONS(3825), - [anon_sym_static] = ACTIONS(3793), - [anon_sym_register] = ACTIONS(3793), - [anon_sym_inline] = ACTIONS(3793), - [anon_sym_thread_local] = ACTIONS(3793), - [anon_sym_const] = ACTIONS(3793), - [anon_sym_volatile] = ACTIONS(3793), - [anon_sym_restrict] = ACTIONS(3793), - [anon_sym__Atomic] = ACTIONS(3793), - [anon_sym_mutable] = ACTIONS(3793), - [anon_sym_constexpr] = ACTIONS(3793), - [anon_sym_constinit] = ACTIONS(3793), - [anon_sym_consteval] = ACTIONS(3793), - [anon_sym_COLON] = ACTIONS(3853), - [anon_sym_QMARK] = ACTIONS(3795), - [anon_sym_STAR_EQ] = ACTIONS(3829), - [anon_sym_SLASH_EQ] = ACTIONS(3829), - [anon_sym_PERCENT_EQ] = ACTIONS(3829), - [anon_sym_PLUS_EQ] = ACTIONS(3829), - [anon_sym_DASH_EQ] = ACTIONS(3829), - [anon_sym_LT_LT_EQ] = ACTIONS(3829), - [anon_sym_GT_GT_EQ] = ACTIONS(3829), - [anon_sym_AMP_EQ] = ACTIONS(3829), - [anon_sym_CARET_EQ] = ACTIONS(3829), - [anon_sym_PIPE_EQ] = ACTIONS(3829), - [anon_sym_and_eq] = ACTIONS(3825), - [anon_sym_or_eq] = ACTIONS(3825), - [anon_sym_xor_eq] = ACTIONS(3825), - [anon_sym_LT_EQ_GT] = ACTIONS(3795), - [anon_sym_or] = ACTIONS(3803), - [anon_sym_and] = ACTIONS(3803), - [anon_sym_bitor] = ACTIONS(3803), - [anon_sym_xor] = ACTIONS(3803), - [anon_sym_bitand] = ACTIONS(3803), - [anon_sym_not_eq] = ACTIONS(3803), - [anon_sym_DASH_DASH] = ACTIONS(3795), - [anon_sym_PLUS_PLUS] = ACTIONS(3795), - [anon_sym_DOT] = ACTIONS(3803), - [anon_sym_DASH_GT] = ACTIONS(3795), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3793), - [anon_sym_decltype] = ACTIONS(3793), - [anon_sym_virtual] = ACTIONS(3793), - [anon_sym_template] = ACTIONS(3793), - [anon_sym_operator] = ACTIONS(3793), + [sym__expression] = STATE(3039), + [sym__expression_not_binary] = STATE(3021), + [sym_conditional_expression] = STATE(3021), + [sym_assignment_expression] = STATE(3021), + [sym_pointer_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_cast_expression] = STATE(3021), + [sym_sizeof_expression] = STATE(3021), + [sym_offsetof_expression] = STATE(3021), + [sym_generic_expression] = STATE(3021), + [sym_subscript_expression] = STATE(3021), + [sym_call_expression] = STATE(3021), + [sym_gnu_asm_expression] = STATE(3021), + [sym_field_expression] = STATE(3021), + [sym_compound_literal_expression] = STATE(3021), + [sym_parenthesized_expression] = STATE(3021), + [sym_char_literal] = STATE(2901), + [sym_concatenated_string] = STATE(2901), + [sym_string_literal] = STATE(2173), + [sym_null] = STATE(3021), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6616), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3021), + [sym_raw_string_literal] = STATE(2173), + [sym_co_await_expression] = STATE(3021), + [sym_new_expression] = STATE(3021), + [sym_delete_expression] = STATE(3021), + [sym_requires_clause] = STATE(3021), + [sym_requires_expression] = STATE(3021), + [sym_lambda_expression] = STATE(3021), + [sym_lambda_capture_specifier] = STATE(5188), + [sym_fold_expression] = STATE(3021), + [sym_parameter_pack_expansion] = STATE(3021), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3021), + [sym_qualified_type_identifier] = STATE(6616), + [sym_user_defined_literal] = STATE(3021), + [sym_identifier] = ACTIONS(1933), + [anon_sym_LPAREN2] = ACTIONS(1937), + [anon_sym_BANG] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(1941), + [anon_sym_DASH] = ACTIONS(1939), + [anon_sym_PLUS] = ACTIONS(1939), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(1945), + [anon_sym_LBRACK] = ACTIONS(1949), + [anon_sym_RBRACK] = ACTIONS(4325), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(1939), + [anon_sym_compl] = ACTIONS(1939), + [anon_sym_DASH_DASH] = ACTIONS(1953), + [anon_sym_PLUS_PLUS] = ACTIONS(1953), + [anon_sym_sizeof] = ACTIONS(1955), + [anon_sym_offsetof] = ACTIONS(1957), + [anon_sym__Generic] = ACTIONS(1959), + [anon_sym_asm] = ACTIONS(1961), + [anon_sym___asm__] = ACTIONS(1961), + [sym_number_literal] = ACTIONS(1963), + [anon_sym_L_SQUOTE] = ACTIONS(1965), + [anon_sym_u_SQUOTE] = ACTIONS(1965), + [anon_sym_U_SQUOTE] = ACTIONS(1965), + [anon_sym_u8_SQUOTE] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_L_DQUOTE] = ACTIONS(1967), + [anon_sym_u_DQUOTE] = ACTIONS(1967), + [anon_sym_U_DQUOTE] = ACTIONS(1967), + [anon_sym_u8_DQUOTE] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(1967), + [sym_true] = ACTIONS(1969), + [sym_false] = ACTIONS(1969), + [anon_sym_NULL] = ACTIONS(1971), + [anon_sym_nullptr] = ACTIONS(1971), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(1975), + [anon_sym_R_DQUOTE] = ACTIONS(1977), + [anon_sym_LR_DQUOTE] = ACTIONS(1977), + [anon_sym_uR_DQUOTE] = ACTIONS(1977), + [anon_sym_UR_DQUOTE] = ACTIONS(1977), + [anon_sym_u8R_DQUOTE] = ACTIONS(1977), + [anon_sym_co_await] = ACTIONS(1979), + [anon_sym_new] = ACTIONS(1981), + [anon_sym_requires] = ACTIONS(1983), + [sym_this] = ACTIONS(1969), }, [1786] = { - [sym_identifier] = ACTIONS(3892), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3894), - [anon_sym_COMMA] = ACTIONS(3894), - [anon_sym_RPAREN] = ACTIONS(3894), - [anon_sym_LPAREN2] = ACTIONS(3894), - [anon_sym_TILDE] = ACTIONS(3894), - [anon_sym_DASH] = ACTIONS(3892), - [anon_sym_PLUS] = ACTIONS(3892), - [anon_sym_STAR] = ACTIONS(3892), - [anon_sym_SLASH] = ACTIONS(3892), - [anon_sym_PERCENT] = ACTIONS(3892), - [anon_sym_PIPE_PIPE] = ACTIONS(3894), - [anon_sym_AMP_AMP] = ACTIONS(3894), - [anon_sym_PIPE] = ACTIONS(3892), - [anon_sym_CARET] = ACTIONS(3892), - [anon_sym_AMP] = ACTIONS(3892), - [anon_sym_EQ_EQ] = ACTIONS(3894), - [anon_sym_BANG_EQ] = ACTIONS(3894), - [anon_sym_GT] = ACTIONS(3892), - [anon_sym_GT_EQ] = ACTIONS(3894), - [anon_sym_LT_EQ] = ACTIONS(3892), - [anon_sym_LT] = ACTIONS(3892), - [anon_sym_LT_LT] = ACTIONS(3892), - [anon_sym_GT_GT] = ACTIONS(3892), - [anon_sym_SEMI] = ACTIONS(3894), - [anon_sym_extern] = ACTIONS(3892), - [anon_sym___attribute__] = ACTIONS(3892), - [anon_sym_COLON_COLON] = ACTIONS(3894), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3894), - [anon_sym___declspec] = ACTIONS(3892), - [anon_sym___based] = ACTIONS(3892), - [anon_sym_LBRACE] = ACTIONS(3894), - [anon_sym_RBRACE] = ACTIONS(3894), - [anon_sym_LBRACK] = ACTIONS(3892), - [anon_sym_EQ] = ACTIONS(3892), - [anon_sym_static] = ACTIONS(3892), - [anon_sym_register] = ACTIONS(3892), - [anon_sym_inline] = ACTIONS(3892), - [anon_sym_thread_local] = ACTIONS(3892), - [anon_sym_const] = ACTIONS(3892), - [anon_sym_volatile] = ACTIONS(3892), - [anon_sym_restrict] = ACTIONS(3892), - [anon_sym__Atomic] = ACTIONS(3892), - [anon_sym_mutable] = ACTIONS(3892), - [anon_sym_constexpr] = ACTIONS(3892), - [anon_sym_constinit] = ACTIONS(3892), - [anon_sym_consteval] = ACTIONS(3892), - [anon_sym_QMARK] = ACTIONS(3894), - [anon_sym_STAR_EQ] = ACTIONS(3894), - [anon_sym_SLASH_EQ] = ACTIONS(3894), - [anon_sym_PERCENT_EQ] = ACTIONS(3894), - [anon_sym_PLUS_EQ] = ACTIONS(3894), - [anon_sym_DASH_EQ] = ACTIONS(3894), - [anon_sym_LT_LT_EQ] = ACTIONS(3894), - [anon_sym_GT_GT_EQ] = ACTIONS(3894), - [anon_sym_AMP_EQ] = ACTIONS(3894), - [anon_sym_CARET_EQ] = ACTIONS(3894), - [anon_sym_PIPE_EQ] = ACTIONS(3894), - [anon_sym_and_eq] = ACTIONS(3892), - [anon_sym_or_eq] = ACTIONS(3892), - [anon_sym_xor_eq] = ACTIONS(3892), - [anon_sym_LT_EQ_GT] = ACTIONS(3894), - [anon_sym_or] = ACTIONS(3892), - [anon_sym_and] = ACTIONS(3892), - [anon_sym_bitor] = ACTIONS(3892), - [anon_sym_xor] = ACTIONS(3892), - [anon_sym_bitand] = ACTIONS(3892), - [anon_sym_not_eq] = ACTIONS(3892), - [anon_sym_DASH_DASH] = ACTIONS(3894), - [anon_sym_PLUS_PLUS] = ACTIONS(3894), - [anon_sym_DOT] = ACTIONS(3892), - [anon_sym_DASH_GT] = ACTIONS(3894), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3892), - [anon_sym_decltype] = ACTIONS(3892), - [anon_sym_virtual] = ACTIONS(3892), - [anon_sym_template] = ACTIONS(3892), - [anon_sym_operator] = ACTIONS(3892), + [sym__expression] = STATE(4497), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(4327), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1787] = { - [sym_template_argument_list] = STATE(1899), - [sym_identifier] = ACTIONS(3793), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3795), - [anon_sym_COMMA] = ACTIONS(3795), - [anon_sym_LPAREN2] = ACTIONS(3797), - [anon_sym_TILDE] = ACTIONS(3801), - [anon_sym_DASH] = ACTIONS(3803), - [anon_sym_PLUS] = ACTIONS(3803), - [anon_sym_STAR] = ACTIONS(3805), - [anon_sym_SLASH] = ACTIONS(3803), - [anon_sym_PERCENT] = ACTIONS(3803), - [anon_sym_PIPE_PIPE] = ACTIONS(3795), - [anon_sym_AMP_AMP] = ACTIONS(3808), - [anon_sym_PIPE] = ACTIONS(3803), - [anon_sym_CARET] = ACTIONS(3803), - [anon_sym_AMP] = ACTIONS(3805), - [anon_sym_EQ_EQ] = ACTIONS(3795), - [anon_sym_BANG_EQ] = ACTIONS(3795), - [anon_sym_GT] = ACTIONS(3803), - [anon_sym_GT_EQ] = ACTIONS(3795), - [anon_sym_LT_EQ] = ACTIONS(3803), - [anon_sym_LT] = ACTIONS(3811), - [anon_sym_LT_LT] = ACTIONS(3803), - [anon_sym_GT_GT] = ACTIONS(3803), - [anon_sym_SEMI] = ACTIONS(3808), - [anon_sym_extern] = ACTIONS(3793), - [anon_sym___attribute__] = ACTIONS(3793), - [anon_sym_COLON_COLON] = ACTIONS(3814), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3816), - [anon_sym___declspec] = ACTIONS(3793), - [anon_sym___based] = ACTIONS(3793), - [anon_sym_LBRACE] = ACTIONS(3819), - [anon_sym_LBRACK] = ACTIONS(3821), - [anon_sym_EQ] = ACTIONS(3825), - [anon_sym_static] = ACTIONS(3793), - [anon_sym_register] = ACTIONS(3793), - [anon_sym_inline] = ACTIONS(3793), - [anon_sym_thread_local] = ACTIONS(3793), - [anon_sym_const] = ACTIONS(3793), - [anon_sym_volatile] = ACTIONS(3793), - [anon_sym_restrict] = ACTIONS(3793), - [anon_sym__Atomic] = ACTIONS(3793), - [anon_sym_mutable] = ACTIONS(3793), - [anon_sym_constexpr] = ACTIONS(3793), - [anon_sym_constinit] = ACTIONS(3793), - [anon_sym_consteval] = ACTIONS(3793), - [anon_sym_COLON] = ACTIONS(3900), - [anon_sym_QMARK] = ACTIONS(3795), - [anon_sym_STAR_EQ] = ACTIONS(3829), - [anon_sym_SLASH_EQ] = ACTIONS(3829), - [anon_sym_PERCENT_EQ] = ACTIONS(3829), - [anon_sym_PLUS_EQ] = ACTIONS(3829), - [anon_sym_DASH_EQ] = ACTIONS(3829), - [anon_sym_LT_LT_EQ] = ACTIONS(3829), - [anon_sym_GT_GT_EQ] = ACTIONS(3829), - [anon_sym_AMP_EQ] = ACTIONS(3829), - [anon_sym_CARET_EQ] = ACTIONS(3829), - [anon_sym_PIPE_EQ] = ACTIONS(3829), - [anon_sym_and_eq] = ACTIONS(3825), - [anon_sym_or_eq] = ACTIONS(3825), - [anon_sym_xor_eq] = ACTIONS(3825), - [anon_sym_LT_EQ_GT] = ACTIONS(3795), - [anon_sym_or] = ACTIONS(3803), - [anon_sym_and] = ACTIONS(3803), - [anon_sym_bitor] = ACTIONS(3803), - [anon_sym_xor] = ACTIONS(3803), - [anon_sym_bitand] = ACTIONS(3803), - [anon_sym_not_eq] = ACTIONS(3803), - [anon_sym_DASH_DASH] = ACTIONS(3795), - [anon_sym_PLUS_PLUS] = ACTIONS(3795), - [anon_sym_DOT] = ACTIONS(3803), - [anon_sym_DASH_GT] = ACTIONS(3795), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3793), - [anon_sym_decltype] = ACTIONS(3793), - [anon_sym_virtual] = ACTIONS(3793), - [anon_sym_template] = ACTIONS(3793), - [anon_sym_operator] = ACTIONS(3793), + [sym__expression] = STATE(4455), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_RPAREN] = ACTIONS(4329), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1788] = { - [sym_template_argument_list] = STATE(1794), - [sym_identifier] = ACTIONS(3831), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3843), - [anon_sym_COMMA] = ACTIONS(3843), - [anon_sym_RPAREN] = ACTIONS(3843), - [anon_sym_LPAREN2] = ACTIONS(3833), - [anon_sym_TILDE] = ACTIONS(3836), - [anon_sym_DASH] = ACTIONS(3838), - [anon_sym_PLUS] = ACTIONS(3838), - [anon_sym_STAR] = ACTIONS(3840), - [anon_sym_SLASH] = ACTIONS(3838), - [anon_sym_PERCENT] = ACTIONS(3838), - [anon_sym_PIPE_PIPE] = ACTIONS(3843), - [anon_sym_AMP_AMP] = ACTIONS(3833), - [anon_sym_PIPE] = ACTIONS(3838), - [anon_sym_CARET] = ACTIONS(3838), - [anon_sym_AMP] = ACTIONS(3840), - [anon_sym_EQ_EQ] = ACTIONS(3843), - [anon_sym_BANG_EQ] = ACTIONS(3843), - [anon_sym_GT] = ACTIONS(3838), - [anon_sym_GT_EQ] = ACTIONS(3843), - [anon_sym_LT_EQ] = ACTIONS(3838), - [anon_sym_LT] = ACTIONS(3855), - [anon_sym_LT_LT] = ACTIONS(3838), - [anon_sym_GT_GT] = ACTIONS(3838), - [anon_sym_SEMI] = ACTIONS(3843), - [anon_sym_extern] = ACTIONS(3831), - [anon_sym___attribute__] = ACTIONS(3831), - [anon_sym_COLON_COLON] = ACTIONS(3814), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3836), - [anon_sym___declspec] = ACTIONS(3831), - [anon_sym___based] = ACTIONS(3831), - [anon_sym_LBRACE] = ACTIONS(3836), - [anon_sym_LBRACK] = ACTIONS(3840), - [anon_sym_EQ] = ACTIONS(3838), - [anon_sym_static] = ACTIONS(3831), - [anon_sym_register] = ACTIONS(3831), - [anon_sym_inline] = ACTIONS(3831), - [anon_sym_thread_local] = ACTIONS(3831), - [anon_sym_const] = ACTIONS(3831), - [anon_sym_volatile] = ACTIONS(3831), - [anon_sym_restrict] = ACTIONS(3831), - [anon_sym__Atomic] = ACTIONS(3831), - [anon_sym_mutable] = ACTIONS(3831), - [anon_sym_constexpr] = ACTIONS(3831), - [anon_sym_constinit] = ACTIONS(3831), - [anon_sym_consteval] = ACTIONS(3831), - [anon_sym_QMARK] = ACTIONS(3843), - [anon_sym_STAR_EQ] = ACTIONS(3843), - [anon_sym_SLASH_EQ] = ACTIONS(3843), - [anon_sym_PERCENT_EQ] = ACTIONS(3843), - [anon_sym_PLUS_EQ] = ACTIONS(3843), - [anon_sym_DASH_EQ] = ACTIONS(3843), - [anon_sym_LT_LT_EQ] = ACTIONS(3843), - [anon_sym_GT_GT_EQ] = ACTIONS(3843), - [anon_sym_AMP_EQ] = ACTIONS(3843), - [anon_sym_CARET_EQ] = ACTIONS(3843), - [anon_sym_PIPE_EQ] = ACTIONS(3843), - [anon_sym_and_eq] = ACTIONS(3838), - [anon_sym_or_eq] = ACTIONS(3838), - [anon_sym_xor_eq] = ACTIONS(3838), - [anon_sym_LT_EQ_GT] = ACTIONS(3843), - [anon_sym_or] = ACTIONS(3838), - [anon_sym_and] = ACTIONS(3838), - [anon_sym_bitor] = ACTIONS(3838), - [anon_sym_xor] = ACTIONS(3838), - [anon_sym_bitand] = ACTIONS(3838), - [anon_sym_not_eq] = ACTIONS(3838), - [anon_sym_DASH_DASH] = ACTIONS(3843), - [anon_sym_PLUS_PLUS] = ACTIONS(3843), - [anon_sym_DOT] = ACTIONS(3838), - [anon_sym_DASH_GT] = ACTIONS(3843), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3831), - [anon_sym_decltype] = ACTIONS(3831), - [anon_sym_virtual] = ACTIONS(3831), - [anon_sym_template] = ACTIONS(3831), - [anon_sym_operator] = ACTIONS(3831), + [sym__expression] = STATE(4387), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3579), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3579), + [sym_call_expression] = STATE(3579), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3579), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3579), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3579), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3633), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4249), + [anon_sym_LPAREN2] = ACTIONS(4331), + [anon_sym_BANG] = ACTIONS(3639), + [anon_sym_TILDE] = ACTIONS(3639), + [anon_sym_DASH] = ACTIONS(3637), + [anon_sym_PLUS] = ACTIONS(3637), + [anon_sym_STAR] = ACTIONS(3641), + [anon_sym_AMP] = ACTIONS(3641), + [anon_sym_COLON_COLON] = ACTIONS(3643), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(3637), + [anon_sym_compl] = ACTIONS(3637), + [anon_sym_DASH_DASH] = ACTIONS(3645), + [anon_sym_PLUS_PLUS] = ACTIONS(3645), + [anon_sym_sizeof] = ACTIONS(3647), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(3649), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(3651), + [anon_sym_new] = ACTIONS(3631), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1789] = { - [sym_identifier] = ACTIONS(3884), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3886), - [anon_sym_COMMA] = ACTIONS(3886), - [anon_sym_RPAREN] = ACTIONS(3886), - [anon_sym_LPAREN2] = ACTIONS(3886), - [anon_sym_TILDE] = ACTIONS(3886), - [anon_sym_DASH] = ACTIONS(3884), - [anon_sym_PLUS] = ACTIONS(3884), - [anon_sym_STAR] = ACTIONS(3884), - [anon_sym_SLASH] = ACTIONS(3884), - [anon_sym_PERCENT] = ACTIONS(3884), - [anon_sym_PIPE_PIPE] = ACTIONS(3886), - [anon_sym_AMP_AMP] = ACTIONS(3886), - [anon_sym_PIPE] = ACTIONS(3884), - [anon_sym_CARET] = ACTIONS(3884), - [anon_sym_AMP] = ACTIONS(3884), - [anon_sym_EQ_EQ] = ACTIONS(3886), - [anon_sym_BANG_EQ] = ACTIONS(3886), - [anon_sym_GT] = ACTIONS(3884), - [anon_sym_GT_EQ] = ACTIONS(3886), - [anon_sym_LT_EQ] = ACTIONS(3884), - [anon_sym_LT] = ACTIONS(3884), - [anon_sym_LT_LT] = ACTIONS(3884), - [anon_sym_GT_GT] = ACTIONS(3884), - [anon_sym_extern] = ACTIONS(3884), - [anon_sym___attribute__] = ACTIONS(3884), - [anon_sym_COLON_COLON] = ACTIONS(3886), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3886), - [anon_sym___declspec] = ACTIONS(3884), - [anon_sym___based] = ACTIONS(3884), - [anon_sym_LBRACE] = ACTIONS(3886), - [anon_sym_LBRACK] = ACTIONS(3884), - [anon_sym_EQ] = ACTIONS(3884), - [anon_sym_static] = ACTIONS(3884), - [anon_sym_register] = ACTIONS(3884), - [anon_sym_inline] = ACTIONS(3884), - [anon_sym_thread_local] = ACTIONS(3884), - [anon_sym_const] = ACTIONS(3884), - [anon_sym_volatile] = ACTIONS(3884), - [anon_sym_restrict] = ACTIONS(3884), - [anon_sym__Atomic] = ACTIONS(3884), - [anon_sym_mutable] = ACTIONS(3884), - [anon_sym_constexpr] = ACTIONS(3884), - [anon_sym_constinit] = ACTIONS(3884), - [anon_sym_consteval] = ACTIONS(3884), - [anon_sym_QMARK] = ACTIONS(3886), - [anon_sym_STAR_EQ] = ACTIONS(3886), - [anon_sym_SLASH_EQ] = ACTIONS(3886), - [anon_sym_PERCENT_EQ] = ACTIONS(3886), - [anon_sym_PLUS_EQ] = ACTIONS(3886), - [anon_sym_DASH_EQ] = ACTIONS(3886), - [anon_sym_LT_LT_EQ] = ACTIONS(3886), - [anon_sym_GT_GT_EQ] = ACTIONS(3886), - [anon_sym_AMP_EQ] = ACTIONS(3886), - [anon_sym_CARET_EQ] = ACTIONS(3886), - [anon_sym_PIPE_EQ] = ACTIONS(3886), - [anon_sym_and_eq] = ACTIONS(3884), - [anon_sym_or_eq] = ACTIONS(3884), - [anon_sym_xor_eq] = ACTIONS(3884), - [anon_sym_LT_EQ_GT] = ACTIONS(3886), - [anon_sym_or] = ACTIONS(3884), - [anon_sym_and] = ACTIONS(3884), - [anon_sym_bitor] = ACTIONS(3884), - [anon_sym_xor] = ACTIONS(3884), - [anon_sym_bitand] = ACTIONS(3884), - [anon_sym_not_eq] = ACTIONS(3884), - [anon_sym_DASH_DASH] = ACTIONS(3886), - [anon_sym_PLUS_PLUS] = ACTIONS(3886), - [anon_sym_DOT] = ACTIONS(3884), - [anon_sym_DASH_GT] = ACTIONS(3884), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3884), - [anon_sym_decltype] = ACTIONS(3884), - [anon_sym_virtual] = ACTIONS(3884), - [anon_sym_template] = ACTIONS(3884), - [anon_sym_operator] = ACTIONS(3884), - [anon_sym_DOT_STAR] = ACTIONS(3886), - [anon_sym_DASH_GT_STAR] = ACTIONS(3886), + [sym__expression] = STATE(3508), + [sym__expression_not_binary] = STATE(3565), + [sym_conditional_expression] = STATE(3565), + [sym_assignment_expression] = STATE(3565), + [sym_pointer_expression] = STATE(3220), + [sym_unary_expression] = STATE(3565), + [sym_binary_expression] = STATE(3565), + [sym_update_expression] = STATE(3565), + [sym_cast_expression] = STATE(3565), + [sym_sizeof_expression] = STATE(3565), + [sym_offsetof_expression] = STATE(3565), + [sym_generic_expression] = STATE(3565), + [sym_subscript_expression] = STATE(3220), + [sym_call_expression] = STATE(3220), + [sym_gnu_asm_expression] = STATE(3565), + [sym_field_expression] = STATE(3220), + [sym_compound_literal_expression] = STATE(3565), + [sym_parenthesized_expression] = STATE(3220), + [sym_char_literal] = STATE(3429), + [sym_concatenated_string] = STATE(3429), + [sym_string_literal] = STATE(2248), + [sym_null] = STATE(3565), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6847), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3565), + [sym_raw_string_literal] = STATE(2248), + [sym_co_await_expression] = STATE(3565), + [sym_new_expression] = STATE(3565), + [sym_delete_expression] = STATE(3565), + [sym_requires_clause] = STATE(3565), + [sym_requires_expression] = STATE(3565), + [sym_lambda_expression] = STATE(3565), + [sym_lambda_capture_specifier] = STATE(5204), + [sym_fold_expression] = STATE(3565), + [sym_parameter_pack_expansion] = STATE(3565), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5232), + [sym_qualified_identifier] = STATE(3220), + [sym_qualified_type_identifier] = STATE(6847), + [sym_user_defined_literal] = STATE(3565), + [sym_identifier] = ACTIONS(2095), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4333), + [anon_sym_LPAREN2] = ACTIONS(1841), + [anon_sym_BANG] = ACTIONS(1843), + [anon_sym_TILDE] = ACTIONS(1843), + [anon_sym_DASH] = ACTIONS(1845), + [anon_sym_PLUS] = ACTIONS(1845), + [anon_sym_STAR] = ACTIONS(1847), + [anon_sym_AMP] = ACTIONS(1847), + [anon_sym_COLON_COLON] = ACTIONS(1849), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1999), + [anon_sym_not] = ACTIONS(1845), + [anon_sym_compl] = ACTIONS(1845), + [anon_sym_DASH_DASH] = ACTIONS(1861), + [anon_sym_PLUS_PLUS] = ACTIONS(1861), + [anon_sym_sizeof] = ACTIONS(1863), + [anon_sym_offsetof] = ACTIONS(1865), + [anon_sym__Generic] = ACTIONS(1867), + [anon_sym_asm] = ACTIONS(1869), + [anon_sym___asm__] = ACTIONS(1869), + [sym_number_literal] = ACTIONS(1871), + [anon_sym_L_SQUOTE] = ACTIONS(1873), + [anon_sym_u_SQUOTE] = ACTIONS(1873), + [anon_sym_U_SQUOTE] = ACTIONS(1873), + [anon_sym_u8_SQUOTE] = ACTIONS(1873), + [anon_sym_SQUOTE] = ACTIONS(1873), + [anon_sym_L_DQUOTE] = ACTIONS(1875), + [anon_sym_u_DQUOTE] = ACTIONS(1875), + [anon_sym_U_DQUOTE] = ACTIONS(1875), + [anon_sym_u8_DQUOTE] = ACTIONS(1875), + [anon_sym_DQUOTE] = ACTIONS(1875), + [sym_true] = ACTIONS(1877), + [sym_false] = ACTIONS(1877), + [anon_sym_NULL] = ACTIONS(1879), + [anon_sym_nullptr] = ACTIONS(1879), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(1883), + [anon_sym_R_DQUOTE] = ACTIONS(1885), + [anon_sym_LR_DQUOTE] = ACTIONS(1885), + [anon_sym_uR_DQUOTE] = ACTIONS(1885), + [anon_sym_UR_DQUOTE] = ACTIONS(1885), + [anon_sym_u8R_DQUOTE] = ACTIONS(1885), + [anon_sym_co_await] = ACTIONS(1887), + [anon_sym_new] = ACTIONS(1889), + [anon_sym_requires] = ACTIONS(1891), + [sym_this] = ACTIONS(1877), }, [1790] = { - [sym_template_argument_list] = STATE(1893), - [sym_identifier] = ACTIONS(3793), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3795), - [anon_sym_COMMA] = ACTIONS(3795), - [anon_sym_LPAREN2] = ACTIONS(3808), - [anon_sym_TILDE] = ACTIONS(3801), - [anon_sym_DASH] = ACTIONS(3803), - [anon_sym_PLUS] = ACTIONS(3803), - [anon_sym_STAR] = ACTIONS(3805), - [anon_sym_SLASH] = ACTIONS(3803), - [anon_sym_PERCENT] = ACTIONS(3803), - [anon_sym_PIPE_PIPE] = ACTIONS(3795), - [anon_sym_AMP_AMP] = ACTIONS(3808), - [anon_sym_PIPE] = ACTIONS(3803), - [anon_sym_CARET] = ACTIONS(3803), - [anon_sym_AMP] = ACTIONS(3805), - [anon_sym_EQ_EQ] = ACTIONS(3795), - [anon_sym_BANG_EQ] = ACTIONS(3795), - [anon_sym_GT] = ACTIONS(3803), - [anon_sym_GT_EQ] = ACTIONS(3795), - [anon_sym_LT_EQ] = ACTIONS(3803), - [anon_sym_LT] = ACTIONS(3811), - [anon_sym_LT_LT] = ACTIONS(3803), - [anon_sym_GT_GT] = ACTIONS(3803), - [anon_sym_SEMI] = ACTIONS(3795), - [anon_sym_extern] = ACTIONS(3793), - [anon_sym___attribute__] = ACTIONS(3793), - [anon_sym_COLON_COLON] = ACTIONS(3814), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3801), - [anon_sym___declspec] = ACTIONS(3793), - [anon_sym___based] = ACTIONS(3793), - [anon_sym_LBRACE] = ACTIONS(3819), - [anon_sym_LBRACK] = ACTIONS(3805), - [anon_sym_EQ] = ACTIONS(3825), - [anon_sym_static] = ACTIONS(3793), - [anon_sym_register] = ACTIONS(3793), - [anon_sym_inline] = ACTIONS(3793), - [anon_sym_thread_local] = ACTIONS(3793), - [anon_sym_const] = ACTIONS(3793), - [anon_sym_volatile] = ACTIONS(3793), - [anon_sym_restrict] = ACTIONS(3793), - [anon_sym__Atomic] = ACTIONS(3793), - [anon_sym_mutable] = ACTIONS(3793), - [anon_sym_constexpr] = ACTIONS(3793), - [anon_sym_constinit] = ACTIONS(3793), - [anon_sym_consteval] = ACTIONS(3793), - [anon_sym_COLON] = ACTIONS(3888), - [anon_sym_QMARK] = ACTIONS(3795), - [anon_sym_STAR_EQ] = ACTIONS(3829), - [anon_sym_SLASH_EQ] = ACTIONS(3829), - [anon_sym_PERCENT_EQ] = ACTIONS(3829), - [anon_sym_PLUS_EQ] = ACTIONS(3829), - [anon_sym_DASH_EQ] = ACTIONS(3829), - [anon_sym_LT_LT_EQ] = ACTIONS(3829), - [anon_sym_GT_GT_EQ] = ACTIONS(3829), - [anon_sym_AMP_EQ] = ACTIONS(3829), - [anon_sym_CARET_EQ] = ACTIONS(3829), - [anon_sym_PIPE_EQ] = ACTIONS(3829), - [anon_sym_and_eq] = ACTIONS(3825), - [anon_sym_or_eq] = ACTIONS(3825), - [anon_sym_xor_eq] = ACTIONS(3825), - [anon_sym_LT_EQ_GT] = ACTIONS(3795), - [anon_sym_or] = ACTIONS(3803), - [anon_sym_and] = ACTIONS(3803), - [anon_sym_bitor] = ACTIONS(3803), - [anon_sym_xor] = ACTIONS(3803), - [anon_sym_bitand] = ACTIONS(3803), - [anon_sym_not_eq] = ACTIONS(3803), - [anon_sym_DASH_DASH] = ACTIONS(3795), - [anon_sym_PLUS_PLUS] = ACTIONS(3795), - [anon_sym_DOT] = ACTIONS(3803), - [anon_sym_DASH_GT] = ACTIONS(3795), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3793), - [anon_sym_decltype] = ACTIONS(3793), - [anon_sym_virtual] = ACTIONS(3793), - [anon_sym_template] = ACTIONS(3793), - [anon_sym_operator] = ACTIONS(3793), + [sym__expression] = STATE(4368), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4336), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1791] = { - [sym_template_argument_list] = STATE(1893), - [sym_identifier] = ACTIONS(3793), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3795), - [anon_sym_COMMA] = ACTIONS(3795), - [anon_sym_LPAREN2] = ACTIONS(3808), - [anon_sym_TILDE] = ACTIONS(3801), - [anon_sym_DASH] = ACTIONS(3803), - [anon_sym_PLUS] = ACTIONS(3803), - [anon_sym_STAR] = ACTIONS(3805), - [anon_sym_SLASH] = ACTIONS(3803), - [anon_sym_PERCENT] = ACTIONS(3803), - [anon_sym_PIPE_PIPE] = ACTIONS(3795), - [anon_sym_AMP_AMP] = ACTIONS(3808), - [anon_sym_PIPE] = ACTIONS(3803), - [anon_sym_CARET] = ACTIONS(3803), - [anon_sym_AMP] = ACTIONS(3805), - [anon_sym_EQ_EQ] = ACTIONS(3795), - [anon_sym_BANG_EQ] = ACTIONS(3795), - [anon_sym_GT] = ACTIONS(3803), - [anon_sym_GT_EQ] = ACTIONS(3795), - [anon_sym_LT_EQ] = ACTIONS(3803), - [anon_sym_LT] = ACTIONS(3811), - [anon_sym_LT_LT] = ACTIONS(3803), - [anon_sym_GT_GT] = ACTIONS(3803), - [anon_sym_SEMI] = ACTIONS(3795), - [anon_sym_extern] = ACTIONS(3793), - [anon_sym___attribute__] = ACTIONS(3793), - [anon_sym_COLON_COLON] = ACTIONS(3814), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3801), - [anon_sym___declspec] = ACTIONS(3793), - [anon_sym___based] = ACTIONS(3793), - [anon_sym_LBRACE] = ACTIONS(3819), - [anon_sym_LBRACK] = ACTIONS(3805), - [anon_sym_EQ] = ACTIONS(3825), - [anon_sym_static] = ACTIONS(3793), - [anon_sym_register] = ACTIONS(3793), - [anon_sym_inline] = ACTIONS(3793), - [anon_sym_thread_local] = ACTIONS(3793), - [anon_sym_const] = ACTIONS(3793), - [anon_sym_volatile] = ACTIONS(3793), - [anon_sym_restrict] = ACTIONS(3793), - [anon_sym__Atomic] = ACTIONS(3793), - [anon_sym_mutable] = ACTIONS(3793), - [anon_sym_constexpr] = ACTIONS(3793), - [anon_sym_constinit] = ACTIONS(3793), - [anon_sym_consteval] = ACTIONS(3793), - [anon_sym_COLON] = ACTIONS(3827), - [anon_sym_QMARK] = ACTIONS(3795), - [anon_sym_STAR_EQ] = ACTIONS(3829), - [anon_sym_SLASH_EQ] = ACTIONS(3829), - [anon_sym_PERCENT_EQ] = ACTIONS(3829), - [anon_sym_PLUS_EQ] = ACTIONS(3829), - [anon_sym_DASH_EQ] = ACTIONS(3829), - [anon_sym_LT_LT_EQ] = ACTIONS(3829), - [anon_sym_GT_GT_EQ] = ACTIONS(3829), - [anon_sym_AMP_EQ] = ACTIONS(3829), - [anon_sym_CARET_EQ] = ACTIONS(3829), - [anon_sym_PIPE_EQ] = ACTIONS(3829), - [anon_sym_and_eq] = ACTIONS(3825), - [anon_sym_or_eq] = ACTIONS(3825), - [anon_sym_xor_eq] = ACTIONS(3825), - [anon_sym_LT_EQ_GT] = ACTIONS(3795), - [anon_sym_or] = ACTIONS(3803), - [anon_sym_and] = ACTIONS(3803), - [anon_sym_bitor] = ACTIONS(3803), - [anon_sym_xor] = ACTIONS(3803), - [anon_sym_bitand] = ACTIONS(3803), - [anon_sym_not_eq] = ACTIONS(3803), - [anon_sym_DASH_DASH] = ACTIONS(3795), - [anon_sym_PLUS_PLUS] = ACTIONS(3795), - [anon_sym_DOT] = ACTIONS(3803), - [anon_sym_DASH_GT] = ACTIONS(3795), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3793), - [anon_sym_decltype] = ACTIONS(3793), - [anon_sym_virtual] = ACTIONS(3793), - [anon_sym_template] = ACTIONS(3793), - [anon_sym_operator] = ACTIONS(3793), + [sym__expression] = STATE(4441), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3579), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3579), + [sym_call_expression] = STATE(3579), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3579), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3579), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3579), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3633), + [anon_sym_LPAREN2] = ACTIONS(3635), + [anon_sym_BANG] = ACTIONS(3639), + [anon_sym_TILDE] = ACTIONS(3639), + [anon_sym_DASH] = ACTIONS(3637), + [anon_sym_PLUS] = ACTIONS(3637), + [anon_sym_STAR] = ACTIONS(3641), + [anon_sym_AMP] = ACTIONS(3641), + [anon_sym_COLON_COLON] = ACTIONS(3643), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_COLON] = ACTIONS(4338), + [anon_sym_not] = ACTIONS(3637), + [anon_sym_compl] = ACTIONS(3637), + [anon_sym_DASH_DASH] = ACTIONS(3645), + [anon_sym_PLUS_PLUS] = ACTIONS(3645), + [anon_sym_sizeof] = ACTIONS(3647), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(3649), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(3651), + [anon_sym_new] = ACTIONS(3631), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1792] = { - [sym_template_argument_list] = STATE(1890), - [sym_identifier] = ACTIONS(3793), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3808), - [anon_sym_COMMA] = ACTIONS(3808), - [anon_sym_RPAREN] = ACTIONS(3808), - [anon_sym_LPAREN2] = ACTIONS(3808), - [anon_sym_TILDE] = ACTIONS(3801), - [anon_sym_DASH] = ACTIONS(3803), - [anon_sym_PLUS] = ACTIONS(3803), - [anon_sym_STAR] = ACTIONS(3805), - [anon_sym_SLASH] = ACTIONS(3803), - [anon_sym_PERCENT] = ACTIONS(3803), - [anon_sym_PIPE_PIPE] = ACTIONS(3795), - [anon_sym_AMP_AMP] = ACTIONS(3808), - [anon_sym_PIPE] = ACTIONS(3803), - [anon_sym_CARET] = ACTIONS(3803), - [anon_sym_AMP] = ACTIONS(3805), - [anon_sym_EQ_EQ] = ACTIONS(3795), - [anon_sym_BANG_EQ] = ACTIONS(3795), - [anon_sym_GT] = ACTIONS(3803), - [anon_sym_GT_EQ] = ACTIONS(3795), - [anon_sym_LT_EQ] = ACTIONS(3803), - [anon_sym_LT] = ACTIONS(3811), - [anon_sym_LT_LT] = ACTIONS(3803), - [anon_sym_GT_GT] = ACTIONS(3803), - [anon_sym_extern] = ACTIONS(3793), - [anon_sym___attribute__] = ACTIONS(3793), - [anon_sym_COLON_COLON] = ACTIONS(3814), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3801), - [anon_sym___declspec] = ACTIONS(3793), - [anon_sym___based] = ACTIONS(3793), - [anon_sym_LBRACE] = ACTIONS(3819), - [anon_sym_LBRACK] = ACTIONS(3805), - [anon_sym_EQ] = ACTIONS(3793), - [anon_sym_static] = ACTIONS(3793), - [anon_sym_register] = ACTIONS(3793), - [anon_sym_inline] = ACTIONS(3793), - [anon_sym_thread_local] = ACTIONS(3793), - [anon_sym_const] = ACTIONS(3793), - [anon_sym_volatile] = ACTIONS(3793), - [anon_sym_restrict] = ACTIONS(3793), - [anon_sym__Atomic] = ACTIONS(3793), - [anon_sym_mutable] = ACTIONS(3793), - [anon_sym_constexpr] = ACTIONS(3793), - [anon_sym_constinit] = ACTIONS(3793), - [anon_sym_consteval] = ACTIONS(3793), - [anon_sym_QMARK] = ACTIONS(3795), - [anon_sym_STAR_EQ] = ACTIONS(3829), - [anon_sym_SLASH_EQ] = ACTIONS(3829), - [anon_sym_PERCENT_EQ] = ACTIONS(3829), - [anon_sym_PLUS_EQ] = ACTIONS(3829), - [anon_sym_DASH_EQ] = ACTIONS(3829), - [anon_sym_LT_LT_EQ] = ACTIONS(3829), - [anon_sym_GT_GT_EQ] = ACTIONS(3829), - [anon_sym_AMP_EQ] = ACTIONS(3829), - [anon_sym_CARET_EQ] = ACTIONS(3829), - [anon_sym_PIPE_EQ] = ACTIONS(3829), - [anon_sym_and_eq] = ACTIONS(3825), - [anon_sym_or_eq] = ACTIONS(3825), - [anon_sym_xor_eq] = ACTIONS(3825), - [anon_sym_LT_EQ_GT] = ACTIONS(3795), - [anon_sym_or] = ACTIONS(3803), - [anon_sym_and] = ACTIONS(3803), - [anon_sym_bitor] = ACTIONS(3803), - [anon_sym_xor] = ACTIONS(3803), - [anon_sym_bitand] = ACTIONS(3803), - [anon_sym_not_eq] = ACTIONS(3803), - [anon_sym_DASH_DASH] = ACTIONS(3795), - [anon_sym_PLUS_PLUS] = ACTIONS(3795), - [anon_sym_DOT] = ACTIONS(3803), - [anon_sym_DASH_GT] = ACTIONS(3795), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3793), - [anon_sym_decltype] = ACTIONS(3793), - [anon_sym_virtual] = ACTIONS(3793), - [anon_sym_template] = ACTIONS(3793), - [anon_sym_operator] = ACTIONS(3793), + [sym__expression] = STATE(3039), + [sym__expression_not_binary] = STATE(3021), + [sym_conditional_expression] = STATE(3021), + [sym_assignment_expression] = STATE(3021), + [sym_pointer_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_cast_expression] = STATE(3021), + [sym_sizeof_expression] = STATE(3021), + [sym_offsetof_expression] = STATE(3021), + [sym_generic_expression] = STATE(3021), + [sym_subscript_expression] = STATE(3021), + [sym_call_expression] = STATE(3021), + [sym_gnu_asm_expression] = STATE(3021), + [sym_field_expression] = STATE(3021), + [sym_compound_literal_expression] = STATE(3021), + [sym_parenthesized_expression] = STATE(3021), + [sym_char_literal] = STATE(2901), + [sym_concatenated_string] = STATE(2901), + [sym_string_literal] = STATE(2173), + [sym_null] = STATE(3021), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6616), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3021), + [sym_raw_string_literal] = STATE(2173), + [sym_co_await_expression] = STATE(3021), + [sym_new_expression] = STATE(3021), + [sym_delete_expression] = STATE(3021), + [sym_requires_clause] = STATE(3021), + [sym_requires_expression] = STATE(3021), + [sym_lambda_expression] = STATE(3021), + [sym_lambda_capture_specifier] = STATE(5188), + [sym_fold_expression] = STATE(3021), + [sym_parameter_pack_expansion] = STATE(3021), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3021), + [sym_qualified_type_identifier] = STATE(6616), + [sym_user_defined_literal] = STATE(3021), + [sym_identifier] = ACTIONS(1933), + [anon_sym_LPAREN2] = ACTIONS(1937), + [anon_sym_BANG] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(1941), + [anon_sym_DASH] = ACTIONS(1939), + [anon_sym_PLUS] = ACTIONS(1939), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(1945), + [anon_sym_LBRACK] = ACTIONS(1949), + [anon_sym_RBRACK] = ACTIONS(4340), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(1939), + [anon_sym_compl] = ACTIONS(1939), + [anon_sym_DASH_DASH] = ACTIONS(1953), + [anon_sym_PLUS_PLUS] = ACTIONS(1953), + [anon_sym_sizeof] = ACTIONS(1955), + [anon_sym_offsetof] = ACTIONS(1957), + [anon_sym__Generic] = ACTIONS(1959), + [anon_sym_asm] = ACTIONS(1961), + [anon_sym___asm__] = ACTIONS(1961), + [sym_number_literal] = ACTIONS(1963), + [anon_sym_L_SQUOTE] = ACTIONS(1965), + [anon_sym_u_SQUOTE] = ACTIONS(1965), + [anon_sym_U_SQUOTE] = ACTIONS(1965), + [anon_sym_u8_SQUOTE] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_L_DQUOTE] = ACTIONS(1967), + [anon_sym_u_DQUOTE] = ACTIONS(1967), + [anon_sym_U_DQUOTE] = ACTIONS(1967), + [anon_sym_u8_DQUOTE] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(1967), + [sym_true] = ACTIONS(1969), + [sym_false] = ACTIONS(1969), + [anon_sym_NULL] = ACTIONS(1971), + [anon_sym_nullptr] = ACTIONS(1971), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(1975), + [anon_sym_R_DQUOTE] = ACTIONS(1977), + [anon_sym_LR_DQUOTE] = ACTIONS(1977), + [anon_sym_uR_DQUOTE] = ACTIONS(1977), + [anon_sym_UR_DQUOTE] = ACTIONS(1977), + [anon_sym_u8R_DQUOTE] = ACTIONS(1977), + [anon_sym_co_await] = ACTIONS(1979), + [anon_sym_new] = ACTIONS(1981), + [anon_sym_requires] = ACTIONS(1983), + [sym_this] = ACTIONS(1969), }, [1793] = { - [sym_identifier] = ACTIONS(3870), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3882), - [anon_sym_COMMA] = ACTIONS(3882), - [anon_sym_LPAREN2] = ACTIONS(3872), - [anon_sym_TILDE] = ACTIONS(3875), - [anon_sym_DASH] = ACTIONS(3877), - [anon_sym_PLUS] = ACTIONS(3877), - [anon_sym_STAR] = ACTIONS(3879), - [anon_sym_SLASH] = ACTIONS(3877), - [anon_sym_PERCENT] = ACTIONS(3877), - [anon_sym_PIPE_PIPE] = ACTIONS(3882), - [anon_sym_AMP_AMP] = ACTIONS(3872), - [anon_sym_PIPE] = ACTIONS(3877), - [anon_sym_CARET] = ACTIONS(3877), - [anon_sym_AMP] = ACTIONS(3879), - [anon_sym_EQ_EQ] = ACTIONS(3882), - [anon_sym_BANG_EQ] = ACTIONS(3882), - [anon_sym_GT] = ACTIONS(3877), - [anon_sym_GT_EQ] = ACTIONS(3882), - [anon_sym_LT_EQ] = ACTIONS(3877), - [anon_sym_LT] = ACTIONS(3877), - [anon_sym_LT_LT] = ACTIONS(3877), - [anon_sym_GT_GT] = ACTIONS(3877), - [anon_sym_SEMI] = ACTIONS(3872), - [anon_sym_extern] = ACTIONS(3870), - [anon_sym___attribute__] = ACTIONS(3870), - [anon_sym_COLON_COLON] = ACTIONS(3875), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3872), - [anon_sym___declspec] = ACTIONS(3870), - [anon_sym___based] = ACTIONS(3870), - [anon_sym_LBRACE] = ACTIONS(3875), - [anon_sym_RBRACE] = ACTIONS(3882), - [anon_sym_LBRACK] = ACTIONS(3879), - [anon_sym_EQ] = ACTIONS(3877), - [anon_sym_static] = ACTIONS(3870), - [anon_sym_register] = ACTIONS(3870), - [anon_sym_inline] = ACTIONS(3870), - [anon_sym_thread_local] = ACTIONS(3870), - [anon_sym_const] = ACTIONS(3870), - [anon_sym_volatile] = ACTIONS(3870), - [anon_sym_restrict] = ACTIONS(3870), - [anon_sym__Atomic] = ACTIONS(3870), - [anon_sym_mutable] = ACTIONS(3870), - [anon_sym_constexpr] = ACTIONS(3870), - [anon_sym_constinit] = ACTIONS(3870), - [anon_sym_consteval] = ACTIONS(3870), - [anon_sym_QMARK] = ACTIONS(3882), - [anon_sym_STAR_EQ] = ACTIONS(3882), - [anon_sym_SLASH_EQ] = ACTIONS(3882), - [anon_sym_PERCENT_EQ] = ACTIONS(3882), - [anon_sym_PLUS_EQ] = ACTIONS(3882), - [anon_sym_DASH_EQ] = ACTIONS(3882), - [anon_sym_LT_LT_EQ] = ACTIONS(3882), - [anon_sym_GT_GT_EQ] = ACTIONS(3882), - [anon_sym_AMP_EQ] = ACTIONS(3882), - [anon_sym_CARET_EQ] = ACTIONS(3882), - [anon_sym_PIPE_EQ] = ACTIONS(3882), - [anon_sym_and_eq] = ACTIONS(3877), - [anon_sym_or_eq] = ACTIONS(3877), - [anon_sym_xor_eq] = ACTIONS(3877), - [anon_sym_LT_EQ_GT] = ACTIONS(3882), - [anon_sym_or] = ACTIONS(3877), - [anon_sym_and] = ACTIONS(3877), - [anon_sym_bitor] = ACTIONS(3877), - [anon_sym_xor] = ACTIONS(3877), - [anon_sym_bitand] = ACTIONS(3877), - [anon_sym_not_eq] = ACTIONS(3877), - [anon_sym_DASH_DASH] = ACTIONS(3882), - [anon_sym_PLUS_PLUS] = ACTIONS(3882), - [anon_sym_DOT] = ACTIONS(3877), - [anon_sym_DASH_GT] = ACTIONS(3882), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3870), - [anon_sym_decltype] = ACTIONS(3870), - [anon_sym_virtual] = ACTIONS(3870), - [anon_sym_template] = ACTIONS(3870), - [anon_sym_operator] = ACTIONS(3870), + [sym__expression] = STATE(3517), + [sym__expression_not_binary] = STATE(3565), + [sym_conditional_expression] = STATE(3565), + [sym_assignment_expression] = STATE(3565), + [sym_pointer_expression] = STATE(3220), + [sym_unary_expression] = STATE(3565), + [sym_binary_expression] = STATE(3565), + [sym_update_expression] = STATE(3565), + [sym_cast_expression] = STATE(3565), + [sym_sizeof_expression] = STATE(3565), + [sym_offsetof_expression] = STATE(3565), + [sym_generic_expression] = STATE(3565), + [sym_subscript_expression] = STATE(3220), + [sym_call_expression] = STATE(3220), + [sym_gnu_asm_expression] = STATE(3565), + [sym_field_expression] = STATE(3220), + [sym_compound_literal_expression] = STATE(3565), + [sym_parenthesized_expression] = STATE(3220), + [sym_char_literal] = STATE(3429), + [sym_concatenated_string] = STATE(3429), + [sym_string_literal] = STATE(2248), + [sym_null] = STATE(3565), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6847), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3565), + [sym_raw_string_literal] = STATE(2248), + [sym_co_await_expression] = STATE(3565), + [sym_new_expression] = STATE(3565), + [sym_delete_expression] = STATE(3565), + [sym_requires_clause] = STATE(3565), + [sym_requires_expression] = STATE(3565), + [sym_lambda_expression] = STATE(3565), + [sym_lambda_capture_specifier] = STATE(5204), + [sym_fold_expression] = STATE(3565), + [sym_parameter_pack_expansion] = STATE(3565), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5232), + [sym_qualified_identifier] = STATE(3220), + [sym_qualified_type_identifier] = STATE(6847), + [sym_user_defined_literal] = STATE(3565), + [sym_identifier] = ACTIONS(2095), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4342), + [anon_sym_LPAREN2] = ACTIONS(1841), + [anon_sym_BANG] = ACTIONS(1843), + [anon_sym_TILDE] = ACTIONS(1843), + [anon_sym_DASH] = ACTIONS(1845), + [anon_sym_PLUS] = ACTIONS(1845), + [anon_sym_STAR] = ACTIONS(1847), + [anon_sym_AMP] = ACTIONS(1847), + [anon_sym_COLON_COLON] = ACTIONS(1849), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1999), + [anon_sym_not] = ACTIONS(1845), + [anon_sym_compl] = ACTIONS(1845), + [anon_sym_DASH_DASH] = ACTIONS(1861), + [anon_sym_PLUS_PLUS] = ACTIONS(1861), + [anon_sym_sizeof] = ACTIONS(1863), + [anon_sym_offsetof] = ACTIONS(1865), + [anon_sym__Generic] = ACTIONS(1867), + [anon_sym_asm] = ACTIONS(1869), + [anon_sym___asm__] = ACTIONS(1869), + [sym_number_literal] = ACTIONS(1871), + [anon_sym_L_SQUOTE] = ACTIONS(1873), + [anon_sym_u_SQUOTE] = ACTIONS(1873), + [anon_sym_U_SQUOTE] = ACTIONS(1873), + [anon_sym_u8_SQUOTE] = ACTIONS(1873), + [anon_sym_SQUOTE] = ACTIONS(1873), + [anon_sym_L_DQUOTE] = ACTIONS(1875), + [anon_sym_u_DQUOTE] = ACTIONS(1875), + [anon_sym_U_DQUOTE] = ACTIONS(1875), + [anon_sym_u8_DQUOTE] = ACTIONS(1875), + [anon_sym_DQUOTE] = ACTIONS(1875), + [sym_true] = ACTIONS(1877), + [sym_false] = ACTIONS(1877), + [anon_sym_NULL] = ACTIONS(1879), + [anon_sym_nullptr] = ACTIONS(1879), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(1883), + [anon_sym_R_DQUOTE] = ACTIONS(1885), + [anon_sym_LR_DQUOTE] = ACTIONS(1885), + [anon_sym_uR_DQUOTE] = ACTIONS(1885), + [anon_sym_UR_DQUOTE] = ACTIONS(1885), + [anon_sym_u8R_DQUOTE] = ACTIONS(1885), + [anon_sym_co_await] = ACTIONS(1887), + [anon_sym_new] = ACTIONS(1889), + [anon_sym_requires] = ACTIONS(1891), + [sym_this] = ACTIONS(1877), }, [1794] = { - [sym_identifier] = ACTIONS(3870), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3882), - [anon_sym_COMMA] = ACTIONS(3882), - [anon_sym_RPAREN] = ACTIONS(3882), - [anon_sym_LPAREN2] = ACTIONS(3872), - [anon_sym_TILDE] = ACTIONS(3875), - [anon_sym_DASH] = ACTIONS(3877), - [anon_sym_PLUS] = ACTIONS(3877), - [anon_sym_STAR] = ACTIONS(3879), - [anon_sym_SLASH] = ACTIONS(3877), - [anon_sym_PERCENT] = ACTIONS(3877), - [anon_sym_PIPE_PIPE] = ACTIONS(3882), - [anon_sym_AMP_AMP] = ACTIONS(3872), - [anon_sym_PIPE] = ACTIONS(3877), - [anon_sym_CARET] = ACTIONS(3877), - [anon_sym_AMP] = ACTIONS(3879), - [anon_sym_EQ_EQ] = ACTIONS(3882), - [anon_sym_BANG_EQ] = ACTIONS(3882), - [anon_sym_GT] = ACTIONS(3877), - [anon_sym_GT_EQ] = ACTIONS(3882), - [anon_sym_LT_EQ] = ACTIONS(3877), - [anon_sym_LT] = ACTIONS(3877), - [anon_sym_LT_LT] = ACTIONS(3877), - [anon_sym_GT_GT] = ACTIONS(3877), - [anon_sym_SEMI] = ACTIONS(3882), - [anon_sym_extern] = ACTIONS(3870), - [anon_sym___attribute__] = ACTIONS(3870), - [anon_sym_COLON_COLON] = ACTIONS(3875), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3875), - [anon_sym___declspec] = ACTIONS(3870), - [anon_sym___based] = ACTIONS(3870), - [anon_sym_LBRACE] = ACTIONS(3875), - [anon_sym_LBRACK] = ACTIONS(3879), - [anon_sym_EQ] = ACTIONS(3877), - [anon_sym_static] = ACTIONS(3870), - [anon_sym_register] = ACTIONS(3870), - [anon_sym_inline] = ACTIONS(3870), - [anon_sym_thread_local] = ACTIONS(3870), - [anon_sym_const] = ACTIONS(3870), - [anon_sym_volatile] = ACTIONS(3870), - [anon_sym_restrict] = ACTIONS(3870), - [anon_sym__Atomic] = ACTIONS(3870), - [anon_sym_mutable] = ACTIONS(3870), - [anon_sym_constexpr] = ACTIONS(3870), - [anon_sym_constinit] = ACTIONS(3870), - [anon_sym_consteval] = ACTIONS(3870), - [anon_sym_QMARK] = ACTIONS(3882), - [anon_sym_STAR_EQ] = ACTIONS(3882), - [anon_sym_SLASH_EQ] = ACTIONS(3882), - [anon_sym_PERCENT_EQ] = ACTIONS(3882), - [anon_sym_PLUS_EQ] = ACTIONS(3882), - [anon_sym_DASH_EQ] = ACTIONS(3882), - [anon_sym_LT_LT_EQ] = ACTIONS(3882), - [anon_sym_GT_GT_EQ] = ACTIONS(3882), - [anon_sym_AMP_EQ] = ACTIONS(3882), - [anon_sym_CARET_EQ] = ACTIONS(3882), - [anon_sym_PIPE_EQ] = ACTIONS(3882), - [anon_sym_and_eq] = ACTIONS(3877), - [anon_sym_or_eq] = ACTIONS(3877), - [anon_sym_xor_eq] = ACTIONS(3877), - [anon_sym_LT_EQ_GT] = ACTIONS(3882), - [anon_sym_or] = ACTIONS(3877), - [anon_sym_and] = ACTIONS(3877), - [anon_sym_bitor] = ACTIONS(3877), - [anon_sym_xor] = ACTIONS(3877), - [anon_sym_bitand] = ACTIONS(3877), - [anon_sym_not_eq] = ACTIONS(3877), - [anon_sym_DASH_DASH] = ACTIONS(3882), - [anon_sym_PLUS_PLUS] = ACTIONS(3882), - [anon_sym_DOT] = ACTIONS(3877), - [anon_sym_DASH_GT] = ACTIONS(3882), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3870), - [anon_sym_decltype] = ACTIONS(3870), - [anon_sym_virtual] = ACTIONS(3870), - [anon_sym_template] = ACTIONS(3870), - [anon_sym_operator] = ACTIONS(3870), + [sym__expression] = STATE(3039), + [sym__expression_not_binary] = STATE(3021), + [sym_conditional_expression] = STATE(3021), + [sym_assignment_expression] = STATE(3021), + [sym_pointer_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_cast_expression] = STATE(3021), + [sym_sizeof_expression] = STATE(3021), + [sym_offsetof_expression] = STATE(3021), + [sym_generic_expression] = STATE(3021), + [sym_subscript_expression] = STATE(3021), + [sym_call_expression] = STATE(3021), + [sym_gnu_asm_expression] = STATE(3021), + [sym_field_expression] = STATE(3021), + [sym_compound_literal_expression] = STATE(3021), + [sym_parenthesized_expression] = STATE(3021), + [sym_char_literal] = STATE(2901), + [sym_concatenated_string] = STATE(2901), + [sym_string_literal] = STATE(2173), + [sym_null] = STATE(3021), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6616), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3021), + [sym_raw_string_literal] = STATE(2173), + [sym_co_await_expression] = STATE(3021), + [sym_new_expression] = STATE(3021), + [sym_delete_expression] = STATE(3021), + [sym_requires_clause] = STATE(3021), + [sym_requires_expression] = STATE(3021), + [sym_lambda_expression] = STATE(3021), + [sym_lambda_capture_specifier] = STATE(5188), + [sym_fold_expression] = STATE(3021), + [sym_parameter_pack_expansion] = STATE(3021), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3021), + [sym_qualified_type_identifier] = STATE(6616), + [sym_user_defined_literal] = STATE(3021), + [sym_identifier] = ACTIONS(1933), + [anon_sym_LPAREN2] = ACTIONS(1937), + [anon_sym_BANG] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(1941), + [anon_sym_DASH] = ACTIONS(1939), + [anon_sym_PLUS] = ACTIONS(1939), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(1945), + [anon_sym_LBRACK] = ACTIONS(1949), + [anon_sym_RBRACK] = ACTIONS(4345), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(1939), + [anon_sym_compl] = ACTIONS(1939), + [anon_sym_DASH_DASH] = ACTIONS(1953), + [anon_sym_PLUS_PLUS] = ACTIONS(1953), + [anon_sym_sizeof] = ACTIONS(1955), + [anon_sym_offsetof] = ACTIONS(1957), + [anon_sym__Generic] = ACTIONS(1959), + [anon_sym_asm] = ACTIONS(1961), + [anon_sym___asm__] = ACTIONS(1961), + [sym_number_literal] = ACTIONS(1963), + [anon_sym_L_SQUOTE] = ACTIONS(1965), + [anon_sym_u_SQUOTE] = ACTIONS(1965), + [anon_sym_U_SQUOTE] = ACTIONS(1965), + [anon_sym_u8_SQUOTE] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_L_DQUOTE] = ACTIONS(1967), + [anon_sym_u_DQUOTE] = ACTIONS(1967), + [anon_sym_U_DQUOTE] = ACTIONS(1967), + [anon_sym_u8_DQUOTE] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(1967), + [sym_true] = ACTIONS(1969), + [sym_false] = ACTIONS(1969), + [anon_sym_NULL] = ACTIONS(1971), + [anon_sym_nullptr] = ACTIONS(1971), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(1975), + [anon_sym_R_DQUOTE] = ACTIONS(1977), + [anon_sym_LR_DQUOTE] = ACTIONS(1977), + [anon_sym_uR_DQUOTE] = ACTIONS(1977), + [anon_sym_UR_DQUOTE] = ACTIONS(1977), + [anon_sym_u8R_DQUOTE] = ACTIONS(1977), + [anon_sym_co_await] = ACTIONS(1979), + [anon_sym_new] = ACTIONS(1981), + [anon_sym_requires] = ACTIONS(1983), + [sym_this] = ACTIONS(1969), }, [1795] = { - [sym_template_argument_list] = STATE(1796), - [sym_identifier] = ACTIONS(3831), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3833), - [anon_sym_COMMA] = ACTIONS(3833), - [anon_sym_RPAREN] = ACTIONS(3833), - [anon_sym_LPAREN2] = ACTIONS(3833), - [anon_sym_TILDE] = ACTIONS(3836), - [anon_sym_DASH] = ACTIONS(3838), - [anon_sym_PLUS] = ACTIONS(3838), - [anon_sym_STAR] = ACTIONS(3840), - [anon_sym_SLASH] = ACTIONS(3838), - [anon_sym_PERCENT] = ACTIONS(3838), - [anon_sym_PIPE_PIPE] = ACTIONS(3843), - [anon_sym_AMP_AMP] = ACTIONS(3833), - [anon_sym_PIPE] = ACTIONS(3838), - [anon_sym_CARET] = ACTIONS(3838), - [anon_sym_AMP] = ACTIONS(3840), - [anon_sym_EQ_EQ] = ACTIONS(3843), - [anon_sym_BANG_EQ] = ACTIONS(3843), - [anon_sym_GT] = ACTIONS(3838), - [anon_sym_GT_EQ] = ACTIONS(3843), - [anon_sym_LT_EQ] = ACTIONS(3838), - [anon_sym_LT] = ACTIONS(3855), - [anon_sym_LT_LT] = ACTIONS(3838), - [anon_sym_GT_GT] = ACTIONS(3838), - [anon_sym_extern] = ACTIONS(3831), - [anon_sym___attribute__] = ACTIONS(3831), - [anon_sym_COLON_COLON] = ACTIONS(3814), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3836), - [anon_sym___declspec] = ACTIONS(3831), - [anon_sym___based] = ACTIONS(3831), - [anon_sym_LBRACE] = ACTIONS(3836), - [anon_sym_LBRACK] = ACTIONS(3840), - [anon_sym_EQ] = ACTIONS(3840), - [anon_sym_static] = ACTIONS(3831), - [anon_sym_register] = ACTIONS(3831), - [anon_sym_inline] = ACTIONS(3831), - [anon_sym_thread_local] = ACTIONS(3831), - [anon_sym_const] = ACTIONS(3831), - [anon_sym_volatile] = ACTIONS(3831), - [anon_sym_restrict] = ACTIONS(3831), - [anon_sym__Atomic] = ACTIONS(3831), - [anon_sym_mutable] = ACTIONS(3831), - [anon_sym_constexpr] = ACTIONS(3831), - [anon_sym_constinit] = ACTIONS(3831), - [anon_sym_consteval] = ACTIONS(3831), - [anon_sym_QMARK] = ACTIONS(3843), - [anon_sym_STAR_EQ] = ACTIONS(3843), - [anon_sym_SLASH_EQ] = ACTIONS(3843), - [anon_sym_PERCENT_EQ] = ACTIONS(3843), - [anon_sym_PLUS_EQ] = ACTIONS(3843), - [anon_sym_DASH_EQ] = ACTIONS(3843), - [anon_sym_LT_LT_EQ] = ACTIONS(3843), - [anon_sym_GT_GT_EQ] = ACTIONS(3843), - [anon_sym_AMP_EQ] = ACTIONS(3843), - [anon_sym_CARET_EQ] = ACTIONS(3843), - [anon_sym_PIPE_EQ] = ACTIONS(3843), - [anon_sym_and_eq] = ACTIONS(3838), - [anon_sym_or_eq] = ACTIONS(3838), - [anon_sym_xor_eq] = ACTIONS(3838), - [anon_sym_LT_EQ_GT] = ACTIONS(3843), - [anon_sym_or] = ACTIONS(3838), - [anon_sym_and] = ACTIONS(3838), - [anon_sym_bitor] = ACTIONS(3838), - [anon_sym_xor] = ACTIONS(3838), - [anon_sym_bitand] = ACTIONS(3838), - [anon_sym_not_eq] = ACTIONS(3838), - [anon_sym_DASH_DASH] = ACTIONS(3843), - [anon_sym_PLUS_PLUS] = ACTIONS(3843), - [anon_sym_DOT] = ACTIONS(3838), - [anon_sym_DASH_GT] = ACTIONS(3843), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3831), - [anon_sym_decltype] = ACTIONS(3831), - [anon_sym_virtual] = ACTIONS(3831), - [anon_sym_template] = ACTIONS(3831), - [anon_sym_operator] = ACTIONS(3831), + [sym__expression] = STATE(3039), + [sym__expression_not_binary] = STATE(3021), + [sym_conditional_expression] = STATE(3021), + [sym_assignment_expression] = STATE(3021), + [sym_pointer_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_cast_expression] = STATE(3021), + [sym_sizeof_expression] = STATE(3021), + [sym_offsetof_expression] = STATE(3021), + [sym_generic_expression] = STATE(3021), + [sym_subscript_expression] = STATE(3021), + [sym_call_expression] = STATE(3021), + [sym_gnu_asm_expression] = STATE(3021), + [sym_field_expression] = STATE(3021), + [sym_compound_literal_expression] = STATE(3021), + [sym_parenthesized_expression] = STATE(3021), + [sym_char_literal] = STATE(2901), + [sym_concatenated_string] = STATE(2901), + [sym_string_literal] = STATE(2173), + [sym_null] = STATE(3021), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6616), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3021), + [sym_raw_string_literal] = STATE(2173), + [sym_co_await_expression] = STATE(3021), + [sym_new_expression] = STATE(3021), + [sym_delete_expression] = STATE(3021), + [sym_requires_clause] = STATE(3021), + [sym_requires_expression] = STATE(3021), + [sym_lambda_expression] = STATE(3021), + [sym_lambda_capture_specifier] = STATE(5188), + [sym_fold_expression] = STATE(3021), + [sym_parameter_pack_expansion] = STATE(3021), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3021), + [sym_qualified_type_identifier] = STATE(6616), + [sym_user_defined_literal] = STATE(3021), + [sym_identifier] = ACTIONS(1933), + [anon_sym_LPAREN2] = ACTIONS(1937), + [anon_sym_BANG] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(1941), + [anon_sym_DASH] = ACTIONS(1939), + [anon_sym_PLUS] = ACTIONS(1939), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(1945), + [anon_sym_LBRACK] = ACTIONS(1949), + [anon_sym_RBRACK] = ACTIONS(4347), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(1939), + [anon_sym_compl] = ACTIONS(1939), + [anon_sym_DASH_DASH] = ACTIONS(1953), + [anon_sym_PLUS_PLUS] = ACTIONS(1953), + [anon_sym_sizeof] = ACTIONS(1955), + [anon_sym_offsetof] = ACTIONS(1957), + [anon_sym__Generic] = ACTIONS(1959), + [anon_sym_asm] = ACTIONS(1961), + [anon_sym___asm__] = ACTIONS(1961), + [sym_number_literal] = ACTIONS(1963), + [anon_sym_L_SQUOTE] = ACTIONS(1965), + [anon_sym_u_SQUOTE] = ACTIONS(1965), + [anon_sym_U_SQUOTE] = ACTIONS(1965), + [anon_sym_u8_SQUOTE] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_L_DQUOTE] = ACTIONS(1967), + [anon_sym_u_DQUOTE] = ACTIONS(1967), + [anon_sym_U_DQUOTE] = ACTIONS(1967), + [anon_sym_u8_DQUOTE] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(1967), + [sym_true] = ACTIONS(1969), + [sym_false] = ACTIONS(1969), + [anon_sym_NULL] = ACTIONS(1971), + [anon_sym_nullptr] = ACTIONS(1971), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(1975), + [anon_sym_R_DQUOTE] = ACTIONS(1977), + [anon_sym_LR_DQUOTE] = ACTIONS(1977), + [anon_sym_uR_DQUOTE] = ACTIONS(1977), + [anon_sym_UR_DQUOTE] = ACTIONS(1977), + [anon_sym_u8R_DQUOTE] = ACTIONS(1977), + [anon_sym_co_await] = ACTIONS(1979), + [anon_sym_new] = ACTIONS(1981), + [anon_sym_requires] = ACTIONS(1983), + [sym_this] = ACTIONS(1969), }, [1796] = { - [sym_identifier] = ACTIONS(3870), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3872), - [anon_sym_COMMA] = ACTIONS(3872), - [anon_sym_RPAREN] = ACTIONS(3872), - [anon_sym_LPAREN2] = ACTIONS(3872), - [anon_sym_TILDE] = ACTIONS(3875), - [anon_sym_DASH] = ACTIONS(3877), - [anon_sym_PLUS] = ACTIONS(3877), - [anon_sym_STAR] = ACTIONS(3879), - [anon_sym_SLASH] = ACTIONS(3877), - [anon_sym_PERCENT] = ACTIONS(3877), - [anon_sym_PIPE_PIPE] = ACTIONS(3882), - [anon_sym_AMP_AMP] = ACTIONS(3872), - [anon_sym_PIPE] = ACTIONS(3877), - [anon_sym_CARET] = ACTIONS(3877), - [anon_sym_AMP] = ACTIONS(3879), - [anon_sym_EQ_EQ] = ACTIONS(3882), - [anon_sym_BANG_EQ] = ACTIONS(3882), - [anon_sym_GT] = ACTIONS(3877), - [anon_sym_GT_EQ] = ACTIONS(3882), - [anon_sym_LT_EQ] = ACTIONS(3877), - [anon_sym_LT] = ACTIONS(3877), - [anon_sym_LT_LT] = ACTIONS(3877), - [anon_sym_GT_GT] = ACTIONS(3877), - [anon_sym_extern] = ACTIONS(3870), - [anon_sym___attribute__] = ACTIONS(3870), - [anon_sym_COLON_COLON] = ACTIONS(3875), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3875), - [anon_sym___declspec] = ACTIONS(3870), - [anon_sym___based] = ACTIONS(3870), - [anon_sym_LBRACE] = ACTIONS(3875), - [anon_sym_LBRACK] = ACTIONS(3879), - [anon_sym_EQ] = ACTIONS(3879), - [anon_sym_static] = ACTIONS(3870), - [anon_sym_register] = ACTIONS(3870), - [anon_sym_inline] = ACTIONS(3870), - [anon_sym_thread_local] = ACTIONS(3870), - [anon_sym_const] = ACTIONS(3870), - [anon_sym_volatile] = ACTIONS(3870), - [anon_sym_restrict] = ACTIONS(3870), - [anon_sym__Atomic] = ACTIONS(3870), - [anon_sym_mutable] = ACTIONS(3870), - [anon_sym_constexpr] = ACTIONS(3870), - [anon_sym_constinit] = ACTIONS(3870), - [anon_sym_consteval] = ACTIONS(3870), - [anon_sym_QMARK] = ACTIONS(3882), - [anon_sym_STAR_EQ] = ACTIONS(3882), - [anon_sym_SLASH_EQ] = ACTIONS(3882), - [anon_sym_PERCENT_EQ] = ACTIONS(3882), - [anon_sym_PLUS_EQ] = ACTIONS(3882), - [anon_sym_DASH_EQ] = ACTIONS(3882), - [anon_sym_LT_LT_EQ] = ACTIONS(3882), - [anon_sym_GT_GT_EQ] = ACTIONS(3882), - [anon_sym_AMP_EQ] = ACTIONS(3882), - [anon_sym_CARET_EQ] = ACTIONS(3882), - [anon_sym_PIPE_EQ] = ACTIONS(3882), - [anon_sym_and_eq] = ACTIONS(3877), - [anon_sym_or_eq] = ACTIONS(3877), - [anon_sym_xor_eq] = ACTIONS(3877), - [anon_sym_LT_EQ_GT] = ACTIONS(3882), - [anon_sym_or] = ACTIONS(3877), - [anon_sym_and] = ACTIONS(3877), - [anon_sym_bitor] = ACTIONS(3877), - [anon_sym_xor] = ACTIONS(3877), - [anon_sym_bitand] = ACTIONS(3877), - [anon_sym_not_eq] = ACTIONS(3877), - [anon_sym_DASH_DASH] = ACTIONS(3882), - [anon_sym_PLUS_PLUS] = ACTIONS(3882), - [anon_sym_DOT] = ACTIONS(3877), - [anon_sym_DASH_GT] = ACTIONS(3882), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3870), - [anon_sym_decltype] = ACTIONS(3870), - [anon_sym_virtual] = ACTIONS(3870), - [anon_sym_template] = ACTIONS(3870), - [anon_sym_operator] = ACTIONS(3870), + [sym__expression] = STATE(4495), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(4349), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1797] = { - [sym_identifier] = ACTIONS(3902), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3904), - [anon_sym_COMMA] = ACTIONS(3904), - [anon_sym_RPAREN] = ACTIONS(3904), - [anon_sym_LPAREN2] = ACTIONS(3904), - [anon_sym_TILDE] = ACTIONS(3904), - [anon_sym_DASH] = ACTIONS(3902), - [anon_sym_PLUS] = ACTIONS(3902), - [anon_sym_STAR] = ACTIONS(3902), - [anon_sym_SLASH] = ACTIONS(3902), - [anon_sym_PERCENT] = ACTIONS(3902), - [anon_sym_PIPE_PIPE] = ACTIONS(3904), - [anon_sym_AMP_AMP] = ACTIONS(3904), - [anon_sym_PIPE] = ACTIONS(3902), - [anon_sym_CARET] = ACTIONS(3902), - [anon_sym_AMP] = ACTIONS(3902), - [anon_sym_EQ_EQ] = ACTIONS(3904), - [anon_sym_BANG_EQ] = ACTIONS(3904), - [anon_sym_GT] = ACTIONS(3902), - [anon_sym_GT_EQ] = ACTIONS(3904), - [anon_sym_LT_EQ] = ACTIONS(3902), - [anon_sym_LT] = ACTIONS(3902), - [anon_sym_LT_LT] = ACTIONS(3902), - [anon_sym_GT_GT] = ACTIONS(3902), - [anon_sym_extern] = ACTIONS(3902), - [anon_sym___attribute__] = ACTIONS(3902), - [anon_sym_COLON_COLON] = ACTIONS(3904), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3904), - [anon_sym___declspec] = ACTIONS(3902), - [anon_sym___based] = ACTIONS(3902), - [anon_sym_LBRACE] = ACTIONS(3904), - [anon_sym_LBRACK] = ACTIONS(3902), - [anon_sym_EQ] = ACTIONS(3902), - [anon_sym_static] = ACTIONS(3902), - [anon_sym_register] = ACTIONS(3902), - [anon_sym_inline] = ACTIONS(3902), - [anon_sym_thread_local] = ACTIONS(3902), - [anon_sym_const] = ACTIONS(3902), - [anon_sym_volatile] = ACTIONS(3902), - [anon_sym_restrict] = ACTIONS(3902), - [anon_sym__Atomic] = ACTIONS(3902), - [anon_sym_mutable] = ACTIONS(3902), - [anon_sym_constexpr] = ACTIONS(3902), - [anon_sym_constinit] = ACTIONS(3902), - [anon_sym_consteval] = ACTIONS(3902), - [anon_sym_QMARK] = ACTIONS(3904), - [anon_sym_STAR_EQ] = ACTIONS(3904), - [anon_sym_SLASH_EQ] = ACTIONS(3904), - [anon_sym_PERCENT_EQ] = ACTIONS(3904), - [anon_sym_PLUS_EQ] = ACTIONS(3904), - [anon_sym_DASH_EQ] = ACTIONS(3904), - [anon_sym_LT_LT_EQ] = ACTIONS(3904), - [anon_sym_GT_GT_EQ] = ACTIONS(3904), - [anon_sym_AMP_EQ] = ACTIONS(3904), - [anon_sym_CARET_EQ] = ACTIONS(3904), - [anon_sym_PIPE_EQ] = ACTIONS(3904), - [anon_sym_LT_EQ_GT] = ACTIONS(3904), - [anon_sym_or] = ACTIONS(3902), - [anon_sym_and] = ACTIONS(3902), - [anon_sym_bitor] = ACTIONS(3902), - [anon_sym_xor] = ACTIONS(3902), - [anon_sym_bitand] = ACTIONS(3902), - [anon_sym_not_eq] = ACTIONS(3902), - [anon_sym_DASH_DASH] = ACTIONS(3904), - [anon_sym_PLUS_PLUS] = ACTIONS(3904), - [anon_sym_DOT] = ACTIONS(3902), - [anon_sym_DASH_GT] = ACTIONS(3902), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3902), - [anon_sym_decltype] = ACTIONS(3902), - [anon_sym_virtual] = ACTIONS(3902), - [anon_sym_template] = ACTIONS(3902), - [anon_sym_operator] = ACTIONS(3902), - [anon_sym_DOT_STAR] = ACTIONS(3904), - [anon_sym_DASH_GT_STAR] = ACTIONS(3904), + [sym__expression] = STATE(3508), + [sym__expression_not_binary] = STATE(3565), + [sym_conditional_expression] = STATE(3565), + [sym_assignment_expression] = STATE(3565), + [sym_pointer_expression] = STATE(3220), + [sym_unary_expression] = STATE(3565), + [sym_binary_expression] = STATE(3565), + [sym_update_expression] = STATE(3565), + [sym_cast_expression] = STATE(3565), + [sym_sizeof_expression] = STATE(3565), + [sym_offsetof_expression] = STATE(3565), + [sym_generic_expression] = STATE(3565), + [sym_subscript_expression] = STATE(3220), + [sym_call_expression] = STATE(3220), + [sym_gnu_asm_expression] = STATE(3565), + [sym_field_expression] = STATE(3220), + [sym_compound_literal_expression] = STATE(3565), + [sym_parenthesized_expression] = STATE(3220), + [sym_char_literal] = STATE(3429), + [sym_concatenated_string] = STATE(3429), + [sym_string_literal] = STATE(2248), + [sym_null] = STATE(3565), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6847), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3565), + [sym_raw_string_literal] = STATE(2248), + [sym_co_await_expression] = STATE(3565), + [sym_new_expression] = STATE(3565), + [sym_delete_expression] = STATE(3565), + [sym_requires_clause] = STATE(3565), + [sym_requires_expression] = STATE(3565), + [sym_lambda_expression] = STATE(3565), + [sym_lambda_capture_specifier] = STATE(5204), + [sym_fold_expression] = STATE(3565), + [sym_parameter_pack_expansion] = STATE(3565), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5232), + [sym_qualified_identifier] = STATE(3220), + [sym_qualified_type_identifier] = STATE(6847), + [sym_user_defined_literal] = STATE(3565), + [sym_identifier] = ACTIONS(2095), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4351), + [anon_sym_LPAREN2] = ACTIONS(1841), + [anon_sym_BANG] = ACTIONS(1843), + [anon_sym_TILDE] = ACTIONS(1843), + [anon_sym_DASH] = ACTIONS(1845), + [anon_sym_PLUS] = ACTIONS(1845), + [anon_sym_STAR] = ACTIONS(1847), + [anon_sym_AMP] = ACTIONS(1847), + [anon_sym_COLON_COLON] = ACTIONS(1849), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1999), + [anon_sym_not] = ACTIONS(1845), + [anon_sym_compl] = ACTIONS(1845), + [anon_sym_DASH_DASH] = ACTIONS(1861), + [anon_sym_PLUS_PLUS] = ACTIONS(1861), + [anon_sym_sizeof] = ACTIONS(1863), + [anon_sym_offsetof] = ACTIONS(1865), + [anon_sym__Generic] = ACTIONS(1867), + [anon_sym_asm] = ACTIONS(1869), + [anon_sym___asm__] = ACTIONS(1869), + [sym_number_literal] = ACTIONS(1871), + [anon_sym_L_SQUOTE] = ACTIONS(1873), + [anon_sym_u_SQUOTE] = ACTIONS(1873), + [anon_sym_U_SQUOTE] = ACTIONS(1873), + [anon_sym_u8_SQUOTE] = ACTIONS(1873), + [anon_sym_SQUOTE] = ACTIONS(1873), + [anon_sym_L_DQUOTE] = ACTIONS(1875), + [anon_sym_u_DQUOTE] = ACTIONS(1875), + [anon_sym_U_DQUOTE] = ACTIONS(1875), + [anon_sym_u8_DQUOTE] = ACTIONS(1875), + [anon_sym_DQUOTE] = ACTIONS(1875), + [sym_true] = ACTIONS(1877), + [sym_false] = ACTIONS(1877), + [anon_sym_NULL] = ACTIONS(1879), + [anon_sym_nullptr] = ACTIONS(1879), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(1883), + [anon_sym_R_DQUOTE] = ACTIONS(1885), + [anon_sym_LR_DQUOTE] = ACTIONS(1885), + [anon_sym_uR_DQUOTE] = ACTIONS(1885), + [anon_sym_UR_DQUOTE] = ACTIONS(1885), + [anon_sym_u8R_DQUOTE] = ACTIONS(1885), + [anon_sym_co_await] = ACTIONS(1887), + [anon_sym_new] = ACTIONS(1889), + [anon_sym_requires] = ACTIONS(1891), + [sym_this] = ACTIONS(1877), }, [1798] = { - [sym_identifier] = ACTIONS(3884), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3886), - [anon_sym_COMMA] = ACTIONS(3886), - [anon_sym_RPAREN] = ACTIONS(3886), - [anon_sym_LPAREN2] = ACTIONS(3886), - [anon_sym_TILDE] = ACTIONS(3886), - [anon_sym_DASH] = ACTIONS(3884), - [anon_sym_PLUS] = ACTIONS(3884), - [anon_sym_STAR] = ACTIONS(3884), - [anon_sym_SLASH] = ACTIONS(3884), - [anon_sym_PERCENT] = ACTIONS(3884), - [anon_sym_PIPE_PIPE] = ACTIONS(3886), - [anon_sym_AMP_AMP] = ACTIONS(3886), - [anon_sym_PIPE] = ACTIONS(3884), - [anon_sym_CARET] = ACTIONS(3884), - [anon_sym_AMP] = ACTIONS(3884), - [anon_sym_EQ_EQ] = ACTIONS(3886), - [anon_sym_BANG_EQ] = ACTIONS(3886), - [anon_sym_GT] = ACTIONS(3884), - [anon_sym_GT_EQ] = ACTIONS(3886), - [anon_sym_LT_EQ] = ACTIONS(3884), - [anon_sym_LT] = ACTIONS(3884), - [anon_sym_LT_LT] = ACTIONS(3884), - [anon_sym_GT_GT] = ACTIONS(3884), - [anon_sym_extern] = ACTIONS(3884), - [anon_sym___attribute__] = ACTIONS(3884), - [anon_sym_COLON_COLON] = ACTIONS(3886), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3886), - [anon_sym___declspec] = ACTIONS(3884), - [anon_sym___based] = ACTIONS(3884), - [anon_sym_LBRACE] = ACTIONS(3886), - [anon_sym_LBRACK] = ACTIONS(3884), - [anon_sym_EQ] = ACTIONS(3884), - [anon_sym_static] = ACTIONS(3884), - [anon_sym_register] = ACTIONS(3884), - [anon_sym_inline] = ACTIONS(3884), - [anon_sym_thread_local] = ACTIONS(3884), - [anon_sym_const] = ACTIONS(3884), - [anon_sym_volatile] = ACTIONS(3884), - [anon_sym_restrict] = ACTIONS(3884), - [anon_sym__Atomic] = ACTIONS(3884), - [anon_sym_mutable] = ACTIONS(3884), - [anon_sym_constexpr] = ACTIONS(3884), - [anon_sym_constinit] = ACTIONS(3884), - [anon_sym_consteval] = ACTIONS(3884), - [anon_sym_QMARK] = ACTIONS(3886), - [anon_sym_STAR_EQ] = ACTIONS(3886), - [anon_sym_SLASH_EQ] = ACTIONS(3886), - [anon_sym_PERCENT_EQ] = ACTIONS(3886), - [anon_sym_PLUS_EQ] = ACTIONS(3886), - [anon_sym_DASH_EQ] = ACTIONS(3886), - [anon_sym_LT_LT_EQ] = ACTIONS(3886), - [anon_sym_GT_GT_EQ] = ACTIONS(3886), - [anon_sym_AMP_EQ] = ACTIONS(3886), - [anon_sym_CARET_EQ] = ACTIONS(3886), - [anon_sym_PIPE_EQ] = ACTIONS(3886), - [anon_sym_LT_EQ_GT] = ACTIONS(3886), - [anon_sym_or] = ACTIONS(3884), - [anon_sym_and] = ACTIONS(3884), - [anon_sym_bitor] = ACTIONS(3884), - [anon_sym_xor] = ACTIONS(3884), - [anon_sym_bitand] = ACTIONS(3884), - [anon_sym_not_eq] = ACTIONS(3884), - [anon_sym_DASH_DASH] = ACTIONS(3886), - [anon_sym_PLUS_PLUS] = ACTIONS(3886), - [anon_sym_DOT] = ACTIONS(3884), - [anon_sym_DASH_GT] = ACTIONS(3884), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3884), - [anon_sym_decltype] = ACTIONS(3884), - [anon_sym_virtual] = ACTIONS(3884), - [anon_sym_template] = ACTIONS(3884), - [anon_sym_operator] = ACTIONS(3884), - [anon_sym_DOT_STAR] = ACTIONS(3886), - [anon_sym_DASH_GT_STAR] = ACTIONS(3886), + [sym__expression] = STATE(3510), + [sym__expression_not_binary] = STATE(3565), + [sym_conditional_expression] = STATE(3565), + [sym_assignment_expression] = STATE(3565), + [sym_pointer_expression] = STATE(3220), + [sym_unary_expression] = STATE(3565), + [sym_binary_expression] = STATE(3565), + [sym_update_expression] = STATE(3565), + [sym_cast_expression] = STATE(3565), + [sym_sizeof_expression] = STATE(3565), + [sym_offsetof_expression] = STATE(3565), + [sym_generic_expression] = STATE(3565), + [sym_subscript_expression] = STATE(3220), + [sym_call_expression] = STATE(3220), + [sym_gnu_asm_expression] = STATE(3565), + [sym_field_expression] = STATE(3220), + [sym_compound_literal_expression] = STATE(3565), + [sym_parenthesized_expression] = STATE(3220), + [sym_char_literal] = STATE(3429), + [sym_concatenated_string] = STATE(3429), + [sym_string_literal] = STATE(2248), + [sym_null] = STATE(3565), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6847), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3565), + [sym_raw_string_literal] = STATE(2248), + [sym_co_await_expression] = STATE(3565), + [sym_new_expression] = STATE(3565), + [sym_delete_expression] = STATE(3565), + [sym_requires_clause] = STATE(3565), + [sym_requires_expression] = STATE(3565), + [sym_lambda_expression] = STATE(3565), + [sym_lambda_capture_specifier] = STATE(5204), + [sym_fold_expression] = STATE(3565), + [sym_parameter_pack_expansion] = STATE(3565), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5232), + [sym_qualified_identifier] = STATE(3220), + [sym_qualified_type_identifier] = STATE(6847), + [sym_user_defined_literal] = STATE(3565), + [sym_identifier] = ACTIONS(2095), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4354), + [anon_sym_LPAREN2] = ACTIONS(1841), + [anon_sym_BANG] = ACTIONS(1843), + [anon_sym_TILDE] = ACTIONS(1843), + [anon_sym_DASH] = ACTIONS(1845), + [anon_sym_PLUS] = ACTIONS(1845), + [anon_sym_STAR] = ACTIONS(1847), + [anon_sym_AMP] = ACTIONS(1847), + [anon_sym_COLON_COLON] = ACTIONS(1849), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1999), + [anon_sym_not] = ACTIONS(1845), + [anon_sym_compl] = ACTIONS(1845), + [anon_sym_DASH_DASH] = ACTIONS(1861), + [anon_sym_PLUS_PLUS] = ACTIONS(1861), + [anon_sym_sizeof] = ACTIONS(1863), + [anon_sym_offsetof] = ACTIONS(1865), + [anon_sym__Generic] = ACTIONS(1867), + [anon_sym_asm] = ACTIONS(1869), + [anon_sym___asm__] = ACTIONS(1869), + [sym_number_literal] = ACTIONS(1871), + [anon_sym_L_SQUOTE] = ACTIONS(1873), + [anon_sym_u_SQUOTE] = ACTIONS(1873), + [anon_sym_U_SQUOTE] = ACTIONS(1873), + [anon_sym_u8_SQUOTE] = ACTIONS(1873), + [anon_sym_SQUOTE] = ACTIONS(1873), + [anon_sym_L_DQUOTE] = ACTIONS(1875), + [anon_sym_u_DQUOTE] = ACTIONS(1875), + [anon_sym_U_DQUOTE] = ACTIONS(1875), + [anon_sym_u8_DQUOTE] = ACTIONS(1875), + [anon_sym_DQUOTE] = ACTIONS(1875), + [sym_true] = ACTIONS(1877), + [sym_false] = ACTIONS(1877), + [anon_sym_NULL] = ACTIONS(1879), + [anon_sym_nullptr] = ACTIONS(1879), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(1883), + [anon_sym_R_DQUOTE] = ACTIONS(1885), + [anon_sym_LR_DQUOTE] = ACTIONS(1885), + [anon_sym_uR_DQUOTE] = ACTIONS(1885), + [anon_sym_UR_DQUOTE] = ACTIONS(1885), + [anon_sym_u8R_DQUOTE] = ACTIONS(1885), + [anon_sym_co_await] = ACTIONS(1887), + [anon_sym_new] = ACTIONS(1889), + [anon_sym_requires] = ACTIONS(1891), + [sym_this] = ACTIONS(1877), }, [1799] = { - [sym_identifier] = ACTIONS(3870), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3872), - [anon_sym_COMMA] = ACTIONS(3872), - [anon_sym_RPAREN] = ACTIONS(3872), - [anon_sym_LPAREN2] = ACTIONS(3872), - [anon_sym_TILDE] = ACTIONS(3875), - [anon_sym_DASH] = ACTIONS(3877), - [anon_sym_PLUS] = ACTIONS(3877), - [anon_sym_STAR] = ACTIONS(3879), - [anon_sym_SLASH] = ACTIONS(3877), - [anon_sym_PERCENT] = ACTIONS(3877), - [anon_sym_PIPE_PIPE] = ACTIONS(3882), - [anon_sym_AMP_AMP] = ACTIONS(3872), - [anon_sym_PIPE] = ACTIONS(3877), - [anon_sym_CARET] = ACTIONS(3877), - [anon_sym_AMP] = ACTIONS(3879), - [anon_sym_EQ_EQ] = ACTIONS(3882), - [anon_sym_BANG_EQ] = ACTIONS(3882), - [anon_sym_GT] = ACTIONS(3877), - [anon_sym_GT_EQ] = ACTIONS(3882), - [anon_sym_LT_EQ] = ACTIONS(3877), - [anon_sym_LT] = ACTIONS(3877), - [anon_sym_LT_LT] = ACTIONS(3877), - [anon_sym_GT_GT] = ACTIONS(3877), - [anon_sym_extern] = ACTIONS(3870), - [anon_sym___attribute__] = ACTIONS(3870), - [anon_sym_COLON_COLON] = ACTIONS(3875), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3875), - [anon_sym___declspec] = ACTIONS(3870), - [anon_sym___based] = ACTIONS(3870), - [anon_sym_LBRACE] = ACTIONS(3875), - [anon_sym_LBRACK] = ACTIONS(3879), - [anon_sym_EQ] = ACTIONS(3879), - [anon_sym_static] = ACTIONS(3870), - [anon_sym_register] = ACTIONS(3870), - [anon_sym_inline] = ACTIONS(3870), - [anon_sym_thread_local] = ACTIONS(3870), - [anon_sym_const] = ACTIONS(3870), - [anon_sym_volatile] = ACTIONS(3870), - [anon_sym_restrict] = ACTIONS(3870), - [anon_sym__Atomic] = ACTIONS(3870), - [anon_sym_mutable] = ACTIONS(3870), - [anon_sym_constexpr] = ACTIONS(3870), - [anon_sym_constinit] = ACTIONS(3870), - [anon_sym_consteval] = ACTIONS(3870), - [anon_sym_QMARK] = ACTIONS(3882), - [anon_sym_STAR_EQ] = ACTIONS(3882), - [anon_sym_SLASH_EQ] = ACTIONS(3882), - [anon_sym_PERCENT_EQ] = ACTIONS(3882), - [anon_sym_PLUS_EQ] = ACTIONS(3882), - [anon_sym_DASH_EQ] = ACTIONS(3882), - [anon_sym_LT_LT_EQ] = ACTIONS(3882), - [anon_sym_GT_GT_EQ] = ACTIONS(3882), - [anon_sym_AMP_EQ] = ACTIONS(3882), - [anon_sym_CARET_EQ] = ACTIONS(3882), - [anon_sym_PIPE_EQ] = ACTIONS(3882), - [anon_sym_LT_EQ_GT] = ACTIONS(3882), - [anon_sym_or] = ACTIONS(3877), - [anon_sym_and] = ACTIONS(3877), - [anon_sym_bitor] = ACTIONS(3877), - [anon_sym_xor] = ACTIONS(3877), - [anon_sym_bitand] = ACTIONS(3877), - [anon_sym_not_eq] = ACTIONS(3877), - [anon_sym_DASH_DASH] = ACTIONS(3882), - [anon_sym_PLUS_PLUS] = ACTIONS(3882), - [anon_sym_DOT] = ACTIONS(3877), - [anon_sym_DASH_GT] = ACTIONS(3877), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3870), - [anon_sym_decltype] = ACTIONS(3870), - [anon_sym_virtual] = ACTIONS(3870), - [anon_sym_template] = ACTIONS(3870), - [anon_sym_operator] = ACTIONS(3870), - [anon_sym_DOT_STAR] = ACTIONS(3882), - [anon_sym_DASH_GT_STAR] = ACTIONS(3882), + [sym__expression] = STATE(3510), + [sym__expression_not_binary] = STATE(3565), + [sym_conditional_expression] = STATE(3565), + [sym_assignment_expression] = STATE(3565), + [sym_pointer_expression] = STATE(3220), + [sym_unary_expression] = STATE(3565), + [sym_binary_expression] = STATE(3565), + [sym_update_expression] = STATE(3565), + [sym_cast_expression] = STATE(3565), + [sym_sizeof_expression] = STATE(3565), + [sym_offsetof_expression] = STATE(3565), + [sym_generic_expression] = STATE(3565), + [sym_subscript_expression] = STATE(3220), + [sym_call_expression] = STATE(3220), + [sym_gnu_asm_expression] = STATE(3565), + [sym_field_expression] = STATE(3220), + [sym_compound_literal_expression] = STATE(3565), + [sym_parenthesized_expression] = STATE(3220), + [sym_char_literal] = STATE(3429), + [sym_concatenated_string] = STATE(3429), + [sym_string_literal] = STATE(2248), + [sym_null] = STATE(3565), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6847), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3565), + [sym_raw_string_literal] = STATE(2248), + [sym_co_await_expression] = STATE(3565), + [sym_new_expression] = STATE(3565), + [sym_delete_expression] = STATE(3565), + [sym_requires_clause] = STATE(3565), + [sym_requires_expression] = STATE(3565), + [sym_lambda_expression] = STATE(3565), + [sym_lambda_capture_specifier] = STATE(5204), + [sym_fold_expression] = STATE(3565), + [sym_parameter_pack_expansion] = STATE(3565), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5232), + [sym_qualified_identifier] = STATE(3220), + [sym_qualified_type_identifier] = STATE(6847), + [sym_user_defined_literal] = STATE(3565), + [sym_identifier] = ACTIONS(2095), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4357), + [anon_sym_LPAREN2] = ACTIONS(1841), + [anon_sym_BANG] = ACTIONS(1843), + [anon_sym_TILDE] = ACTIONS(1843), + [anon_sym_DASH] = ACTIONS(1845), + [anon_sym_PLUS] = ACTIONS(1845), + [anon_sym_STAR] = ACTIONS(1847), + [anon_sym_AMP] = ACTIONS(1847), + [anon_sym_COLON_COLON] = ACTIONS(1849), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1999), + [anon_sym_not] = ACTIONS(1845), + [anon_sym_compl] = ACTIONS(1845), + [anon_sym_DASH_DASH] = ACTIONS(1861), + [anon_sym_PLUS_PLUS] = ACTIONS(1861), + [anon_sym_sizeof] = ACTIONS(1863), + [anon_sym_offsetof] = ACTIONS(1865), + [anon_sym__Generic] = ACTIONS(1867), + [anon_sym_asm] = ACTIONS(1869), + [anon_sym___asm__] = ACTIONS(1869), + [sym_number_literal] = ACTIONS(1871), + [anon_sym_L_SQUOTE] = ACTIONS(1873), + [anon_sym_u_SQUOTE] = ACTIONS(1873), + [anon_sym_U_SQUOTE] = ACTIONS(1873), + [anon_sym_u8_SQUOTE] = ACTIONS(1873), + [anon_sym_SQUOTE] = ACTIONS(1873), + [anon_sym_L_DQUOTE] = ACTIONS(1875), + [anon_sym_u_DQUOTE] = ACTIONS(1875), + [anon_sym_U_DQUOTE] = ACTIONS(1875), + [anon_sym_u8_DQUOTE] = ACTIONS(1875), + [anon_sym_DQUOTE] = ACTIONS(1875), + [sym_true] = ACTIONS(1877), + [sym_false] = ACTIONS(1877), + [anon_sym_NULL] = ACTIONS(1879), + [anon_sym_nullptr] = ACTIONS(1879), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(1883), + [anon_sym_R_DQUOTE] = ACTIONS(1885), + [anon_sym_LR_DQUOTE] = ACTIONS(1885), + [anon_sym_uR_DQUOTE] = ACTIONS(1885), + [anon_sym_UR_DQUOTE] = ACTIONS(1885), + [anon_sym_u8R_DQUOTE] = ACTIONS(1885), + [anon_sym_co_await] = ACTIONS(1887), + [anon_sym_new] = ACTIONS(1889), + [anon_sym_requires] = ACTIONS(1891), + [sym_this] = ACTIONS(1877), }, [1800] = { - [sym_identifier] = ACTIONS(3896), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3898), - [anon_sym_COMMA] = ACTIONS(3898), - [anon_sym_RPAREN] = ACTIONS(3898), - [anon_sym_LPAREN2] = ACTIONS(3898), - [anon_sym_TILDE] = ACTIONS(3898), - [anon_sym_DASH] = ACTIONS(3896), - [anon_sym_PLUS] = ACTIONS(3896), - [anon_sym_STAR] = ACTIONS(3896), - [anon_sym_SLASH] = ACTIONS(3896), - [anon_sym_PERCENT] = ACTIONS(3896), - [anon_sym_PIPE_PIPE] = ACTIONS(3898), - [anon_sym_AMP_AMP] = ACTIONS(3898), - [anon_sym_PIPE] = ACTIONS(3896), - [anon_sym_CARET] = ACTIONS(3896), - [anon_sym_AMP] = ACTIONS(3896), - [anon_sym_EQ_EQ] = ACTIONS(3898), - [anon_sym_BANG_EQ] = ACTIONS(3898), - [anon_sym_GT] = ACTIONS(3896), - [anon_sym_GT_EQ] = ACTIONS(3898), - [anon_sym_LT_EQ] = ACTIONS(3896), - [anon_sym_LT] = ACTIONS(3896), - [anon_sym_LT_LT] = ACTIONS(3896), - [anon_sym_GT_GT] = ACTIONS(3896), - [anon_sym_extern] = ACTIONS(3896), - [anon_sym___attribute__] = ACTIONS(3896), - [anon_sym_COLON_COLON] = ACTIONS(3898), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3898), - [anon_sym___declspec] = ACTIONS(3896), - [anon_sym___based] = ACTIONS(3896), - [anon_sym_LBRACE] = ACTIONS(3898), - [anon_sym_LBRACK] = ACTIONS(3896), - [anon_sym_EQ] = ACTIONS(3896), - [anon_sym_static] = ACTIONS(3896), - [anon_sym_register] = ACTIONS(3896), - [anon_sym_inline] = ACTIONS(3896), - [anon_sym_thread_local] = ACTIONS(3896), - [anon_sym_const] = ACTIONS(3896), - [anon_sym_volatile] = ACTIONS(3896), - [anon_sym_restrict] = ACTIONS(3896), - [anon_sym__Atomic] = ACTIONS(3896), - [anon_sym_mutable] = ACTIONS(3896), - [anon_sym_constexpr] = ACTIONS(3896), - [anon_sym_constinit] = ACTIONS(3896), - [anon_sym_consteval] = ACTIONS(3896), - [anon_sym_QMARK] = ACTIONS(3898), - [anon_sym_STAR_EQ] = ACTIONS(3898), - [anon_sym_SLASH_EQ] = ACTIONS(3898), - [anon_sym_PERCENT_EQ] = ACTIONS(3898), - [anon_sym_PLUS_EQ] = ACTIONS(3898), - [anon_sym_DASH_EQ] = ACTIONS(3898), - [anon_sym_LT_LT_EQ] = ACTIONS(3898), - [anon_sym_GT_GT_EQ] = ACTIONS(3898), - [anon_sym_AMP_EQ] = ACTIONS(3898), - [anon_sym_CARET_EQ] = ACTIONS(3898), - [anon_sym_PIPE_EQ] = ACTIONS(3898), - [anon_sym_LT_EQ_GT] = ACTIONS(3898), - [anon_sym_or] = ACTIONS(3896), - [anon_sym_and] = ACTIONS(3896), - [anon_sym_bitor] = ACTIONS(3896), - [anon_sym_xor] = ACTIONS(3896), - [anon_sym_bitand] = ACTIONS(3896), - [anon_sym_not_eq] = ACTIONS(3896), - [anon_sym_DASH_DASH] = ACTIONS(3898), - [anon_sym_PLUS_PLUS] = ACTIONS(3898), - [anon_sym_DOT] = ACTIONS(3896), - [anon_sym_DASH_GT] = ACTIONS(3896), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3896), - [anon_sym_decltype] = ACTIONS(3896), - [anon_sym_virtual] = ACTIONS(3896), - [anon_sym_template] = ACTIONS(3896), - [anon_sym_operator] = ACTIONS(3896), - [anon_sym_DOT_STAR] = ACTIONS(3898), - [anon_sym_DASH_GT_STAR] = ACTIONS(3898), + [sym__expression] = STATE(3025), + [sym__expression_not_binary] = STATE(3021), + [sym_conditional_expression] = STATE(3021), + [sym_assignment_expression] = STATE(3021), + [sym_pointer_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_cast_expression] = STATE(3021), + [sym_sizeof_expression] = STATE(3021), + [sym_offsetof_expression] = STATE(3021), + [sym_generic_expression] = STATE(3021), + [sym_subscript_expression] = STATE(3021), + [sym_call_expression] = STATE(3021), + [sym_gnu_asm_expression] = STATE(3021), + [sym_field_expression] = STATE(3021), + [sym_compound_literal_expression] = STATE(3021), + [sym_parenthesized_expression] = STATE(3021), + [sym_char_literal] = STATE(2901), + [sym_concatenated_string] = STATE(2901), + [sym_string_literal] = STATE(2173), + [sym_null] = STATE(3021), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6616), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3021), + [sym_raw_string_literal] = STATE(2173), + [sym_co_await_expression] = STATE(3021), + [sym_new_expression] = STATE(3021), + [sym_delete_expression] = STATE(3021), + [sym_requires_clause] = STATE(3021), + [sym_requires_expression] = STATE(3021), + [sym_lambda_expression] = STATE(3021), + [sym_lambda_capture_specifier] = STATE(5188), + [sym_fold_expression] = STATE(3021), + [sym_parameter_pack_expansion] = STATE(3021), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3021), + [sym_qualified_type_identifier] = STATE(6616), + [sym_user_defined_literal] = STATE(3021), + [sym_identifier] = ACTIONS(1933), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4276), + [anon_sym_LPAREN2] = ACTIONS(4360), + [anon_sym_BANG] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(1941), + [anon_sym_DASH] = ACTIONS(1939), + [anon_sym_PLUS] = ACTIONS(1939), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(1945), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(1939), + [anon_sym_compl] = ACTIONS(1939), + [anon_sym_DASH_DASH] = ACTIONS(1953), + [anon_sym_PLUS_PLUS] = ACTIONS(1953), + [anon_sym_sizeof] = ACTIONS(1955), + [anon_sym_offsetof] = ACTIONS(1957), + [anon_sym__Generic] = ACTIONS(1959), + [anon_sym_asm] = ACTIONS(1961), + [anon_sym___asm__] = ACTIONS(1961), + [sym_number_literal] = ACTIONS(1963), + [anon_sym_L_SQUOTE] = ACTIONS(1965), + [anon_sym_u_SQUOTE] = ACTIONS(1965), + [anon_sym_U_SQUOTE] = ACTIONS(1965), + [anon_sym_u8_SQUOTE] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_L_DQUOTE] = ACTIONS(1967), + [anon_sym_u_DQUOTE] = ACTIONS(1967), + [anon_sym_U_DQUOTE] = ACTIONS(1967), + [anon_sym_u8_DQUOTE] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(1967), + [sym_true] = ACTIONS(1969), + [sym_false] = ACTIONS(1969), + [anon_sym_NULL] = ACTIONS(1971), + [anon_sym_nullptr] = ACTIONS(1971), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(1975), + [anon_sym_R_DQUOTE] = ACTIONS(1977), + [anon_sym_LR_DQUOTE] = ACTIONS(1977), + [anon_sym_uR_DQUOTE] = ACTIONS(1977), + [anon_sym_UR_DQUOTE] = ACTIONS(1977), + [anon_sym_u8R_DQUOTE] = ACTIONS(1977), + [anon_sym_co_await] = ACTIONS(1979), + [anon_sym_new] = ACTIONS(1981), + [anon_sym_requires] = ACTIONS(1983), + [sym_this] = ACTIONS(1969), }, [1801] = { - [sym_identifier] = ACTIONS(3858), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3860), - [anon_sym_COMMA] = ACTIONS(3860), - [anon_sym_RPAREN] = ACTIONS(3860), - [anon_sym_LPAREN2] = ACTIONS(3860), - [anon_sym_TILDE] = ACTIONS(3860), - [anon_sym_DASH] = ACTIONS(3858), - [anon_sym_PLUS] = ACTIONS(3858), - [anon_sym_STAR] = ACTIONS(3858), - [anon_sym_SLASH] = ACTIONS(3858), - [anon_sym_PERCENT] = ACTIONS(3858), - [anon_sym_PIPE_PIPE] = ACTIONS(3860), - [anon_sym_AMP_AMP] = ACTIONS(3860), - [anon_sym_PIPE] = ACTIONS(3858), - [anon_sym_CARET] = ACTIONS(3858), - [anon_sym_AMP] = ACTIONS(3858), - [anon_sym_EQ_EQ] = ACTIONS(3860), - [anon_sym_BANG_EQ] = ACTIONS(3860), - [anon_sym_GT] = ACTIONS(3858), - [anon_sym_GT_EQ] = ACTIONS(3860), - [anon_sym_LT_EQ] = ACTIONS(3858), - [anon_sym_LT] = ACTIONS(3858), - [anon_sym_LT_LT] = ACTIONS(3858), - [anon_sym_GT_GT] = ACTIONS(3858), - [anon_sym_extern] = ACTIONS(3858), - [anon_sym___attribute__] = ACTIONS(3858), - [anon_sym_COLON_COLON] = ACTIONS(3860), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3860), - [anon_sym___declspec] = ACTIONS(3858), - [anon_sym___based] = ACTIONS(3858), - [anon_sym_LBRACE] = ACTIONS(3860), - [anon_sym_LBRACK] = ACTIONS(3858), - [anon_sym_EQ] = ACTIONS(3858), - [anon_sym_static] = ACTIONS(3858), - [anon_sym_register] = ACTIONS(3858), - [anon_sym_inline] = ACTIONS(3858), - [anon_sym_thread_local] = ACTIONS(3858), - [anon_sym_const] = ACTIONS(3858), - [anon_sym_volatile] = ACTIONS(3858), - [anon_sym_restrict] = ACTIONS(3858), - [anon_sym__Atomic] = ACTIONS(3858), - [anon_sym_mutable] = ACTIONS(3858), - [anon_sym_constexpr] = ACTIONS(3858), - [anon_sym_constinit] = ACTIONS(3858), - [anon_sym_consteval] = ACTIONS(3858), - [anon_sym_QMARK] = ACTIONS(3860), - [anon_sym_STAR_EQ] = ACTIONS(3860), - [anon_sym_SLASH_EQ] = ACTIONS(3860), - [anon_sym_PERCENT_EQ] = ACTIONS(3860), - [anon_sym_PLUS_EQ] = ACTIONS(3860), - [anon_sym_DASH_EQ] = ACTIONS(3860), - [anon_sym_LT_LT_EQ] = ACTIONS(3860), - [anon_sym_GT_GT_EQ] = ACTIONS(3860), - [anon_sym_AMP_EQ] = ACTIONS(3860), - [anon_sym_CARET_EQ] = ACTIONS(3860), - [anon_sym_PIPE_EQ] = ACTIONS(3860), - [anon_sym_LT_EQ_GT] = ACTIONS(3860), - [anon_sym_or] = ACTIONS(3858), - [anon_sym_and] = ACTIONS(3858), - [anon_sym_bitor] = ACTIONS(3858), - [anon_sym_xor] = ACTIONS(3858), - [anon_sym_bitand] = ACTIONS(3858), - [anon_sym_not_eq] = ACTIONS(3858), - [anon_sym_DASH_DASH] = ACTIONS(3860), - [anon_sym_PLUS_PLUS] = ACTIONS(3860), - [anon_sym_DOT] = ACTIONS(3858), - [anon_sym_DASH_GT] = ACTIONS(3858), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3858), - [anon_sym_decltype] = ACTIONS(3858), - [anon_sym_virtual] = ACTIONS(3858), - [anon_sym_template] = ACTIONS(3858), - [anon_sym_operator] = ACTIONS(3858), - [anon_sym_DOT_STAR] = ACTIONS(3860), - [anon_sym_DASH_GT_STAR] = ACTIONS(3860), + [sym__expression] = STATE(3511), + [sym__expression_not_binary] = STATE(3565), + [sym_conditional_expression] = STATE(3565), + [sym_assignment_expression] = STATE(3565), + [sym_pointer_expression] = STATE(3220), + [sym_unary_expression] = STATE(3565), + [sym_binary_expression] = STATE(3565), + [sym_update_expression] = STATE(3565), + [sym_cast_expression] = STATE(3565), + [sym_sizeof_expression] = STATE(3565), + [sym_offsetof_expression] = STATE(3565), + [sym_generic_expression] = STATE(3565), + [sym_subscript_expression] = STATE(3220), + [sym_call_expression] = STATE(3220), + [sym_gnu_asm_expression] = STATE(3565), + [sym_field_expression] = STATE(3220), + [sym_compound_literal_expression] = STATE(3565), + [sym_parenthesized_expression] = STATE(3220), + [sym_char_literal] = STATE(3429), + [sym_concatenated_string] = STATE(3429), + [sym_string_literal] = STATE(2248), + [sym_null] = STATE(3565), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6847), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3565), + [sym_raw_string_literal] = STATE(2248), + [sym_co_await_expression] = STATE(3565), + [sym_new_expression] = STATE(3565), + [sym_delete_expression] = STATE(3565), + [sym_requires_clause] = STATE(3565), + [sym_requires_expression] = STATE(3565), + [sym_lambda_expression] = STATE(3565), + [sym_lambda_capture_specifier] = STATE(5204), + [sym_fold_expression] = STATE(3565), + [sym_parameter_pack_expansion] = STATE(3565), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5232), + [sym_qualified_identifier] = STATE(3220), + [sym_qualified_type_identifier] = STATE(6847), + [sym_user_defined_literal] = STATE(3565), + [sym_identifier] = ACTIONS(2095), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4362), + [anon_sym_LPAREN2] = ACTIONS(1841), + [anon_sym_BANG] = ACTIONS(1843), + [anon_sym_TILDE] = ACTIONS(1843), + [anon_sym_DASH] = ACTIONS(1845), + [anon_sym_PLUS] = ACTIONS(1845), + [anon_sym_STAR] = ACTIONS(1847), + [anon_sym_AMP] = ACTIONS(1847), + [anon_sym_COLON_COLON] = ACTIONS(1849), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1999), + [anon_sym_not] = ACTIONS(1845), + [anon_sym_compl] = ACTIONS(1845), + [anon_sym_DASH_DASH] = ACTIONS(1861), + [anon_sym_PLUS_PLUS] = ACTIONS(1861), + [anon_sym_sizeof] = ACTIONS(1863), + [anon_sym_offsetof] = ACTIONS(1865), + [anon_sym__Generic] = ACTIONS(1867), + [anon_sym_asm] = ACTIONS(1869), + [anon_sym___asm__] = ACTIONS(1869), + [sym_number_literal] = ACTIONS(1871), + [anon_sym_L_SQUOTE] = ACTIONS(1873), + [anon_sym_u_SQUOTE] = ACTIONS(1873), + [anon_sym_U_SQUOTE] = ACTIONS(1873), + [anon_sym_u8_SQUOTE] = ACTIONS(1873), + [anon_sym_SQUOTE] = ACTIONS(1873), + [anon_sym_L_DQUOTE] = ACTIONS(1875), + [anon_sym_u_DQUOTE] = ACTIONS(1875), + [anon_sym_U_DQUOTE] = ACTIONS(1875), + [anon_sym_u8_DQUOTE] = ACTIONS(1875), + [anon_sym_DQUOTE] = ACTIONS(1875), + [sym_true] = ACTIONS(1877), + [sym_false] = ACTIONS(1877), + [anon_sym_NULL] = ACTIONS(1879), + [anon_sym_nullptr] = ACTIONS(1879), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(1883), + [anon_sym_R_DQUOTE] = ACTIONS(1885), + [anon_sym_LR_DQUOTE] = ACTIONS(1885), + [anon_sym_uR_DQUOTE] = ACTIONS(1885), + [anon_sym_UR_DQUOTE] = ACTIONS(1885), + [anon_sym_u8R_DQUOTE] = ACTIONS(1885), + [anon_sym_co_await] = ACTIONS(1887), + [anon_sym_new] = ACTIONS(1889), + [anon_sym_requires] = ACTIONS(1891), + [sym_this] = ACTIONS(1877), }, [1802] = { - [sym_identifier] = ACTIONS(3862), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3864), - [anon_sym_COMMA] = ACTIONS(3864), - [anon_sym_RPAREN] = ACTIONS(3864), - [anon_sym_LPAREN2] = ACTIONS(3864), - [anon_sym_TILDE] = ACTIONS(3864), - [anon_sym_DASH] = ACTIONS(3862), - [anon_sym_PLUS] = ACTIONS(3862), - [anon_sym_STAR] = ACTIONS(3862), - [anon_sym_SLASH] = ACTIONS(3862), - [anon_sym_PERCENT] = ACTIONS(3862), - [anon_sym_PIPE_PIPE] = ACTIONS(3864), - [anon_sym_AMP_AMP] = ACTIONS(3864), - [anon_sym_PIPE] = ACTIONS(3862), - [anon_sym_CARET] = ACTIONS(3862), - [anon_sym_AMP] = ACTIONS(3862), - [anon_sym_EQ_EQ] = ACTIONS(3864), - [anon_sym_BANG_EQ] = ACTIONS(3864), - [anon_sym_GT] = ACTIONS(3862), - [anon_sym_GT_EQ] = ACTIONS(3864), - [anon_sym_LT_EQ] = ACTIONS(3862), - [anon_sym_LT] = ACTIONS(3862), - [anon_sym_LT_LT] = ACTIONS(3862), - [anon_sym_GT_GT] = ACTIONS(3862), - [anon_sym_extern] = ACTIONS(3862), - [anon_sym___attribute__] = ACTIONS(3862), - [anon_sym_COLON_COLON] = ACTIONS(3864), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3864), - [anon_sym___declspec] = ACTIONS(3862), - [anon_sym___based] = ACTIONS(3862), - [anon_sym_LBRACE] = ACTIONS(3864), - [anon_sym_LBRACK] = ACTIONS(3862), - [anon_sym_EQ] = ACTIONS(3862), - [anon_sym_static] = ACTIONS(3862), - [anon_sym_register] = ACTIONS(3862), - [anon_sym_inline] = ACTIONS(3862), - [anon_sym_thread_local] = ACTIONS(3862), - [anon_sym_const] = ACTIONS(3862), - [anon_sym_volatile] = ACTIONS(3862), - [anon_sym_restrict] = ACTIONS(3862), - [anon_sym__Atomic] = ACTIONS(3862), - [anon_sym_mutable] = ACTIONS(3862), - [anon_sym_constexpr] = ACTIONS(3862), - [anon_sym_constinit] = ACTIONS(3862), - [anon_sym_consteval] = ACTIONS(3862), - [anon_sym_QMARK] = ACTIONS(3864), - [anon_sym_STAR_EQ] = ACTIONS(3864), - [anon_sym_SLASH_EQ] = ACTIONS(3864), - [anon_sym_PERCENT_EQ] = ACTIONS(3864), - [anon_sym_PLUS_EQ] = ACTIONS(3864), - [anon_sym_DASH_EQ] = ACTIONS(3864), - [anon_sym_LT_LT_EQ] = ACTIONS(3864), - [anon_sym_GT_GT_EQ] = ACTIONS(3864), - [anon_sym_AMP_EQ] = ACTIONS(3864), - [anon_sym_CARET_EQ] = ACTIONS(3864), - [anon_sym_PIPE_EQ] = ACTIONS(3864), - [anon_sym_LT_EQ_GT] = ACTIONS(3864), - [anon_sym_or] = ACTIONS(3862), - [anon_sym_and] = ACTIONS(3862), - [anon_sym_bitor] = ACTIONS(3862), - [anon_sym_xor] = ACTIONS(3862), - [anon_sym_bitand] = ACTIONS(3862), - [anon_sym_not_eq] = ACTIONS(3862), - [anon_sym_DASH_DASH] = ACTIONS(3864), - [anon_sym_PLUS_PLUS] = ACTIONS(3864), - [anon_sym_DOT] = ACTIONS(3862), - [anon_sym_DASH_GT] = ACTIONS(3862), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3862), - [anon_sym_decltype] = ACTIONS(3862), - [anon_sym_virtual] = ACTIONS(3862), - [anon_sym_template] = ACTIONS(3862), - [anon_sym_operator] = ACTIONS(3862), - [anon_sym_DOT_STAR] = ACTIONS(3864), - [anon_sym_DASH_GT_STAR] = ACTIONS(3864), + [sym__expression] = STATE(4318), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(4365), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1803] = { - [sym__declaration_modifiers] = STATE(2191), - [sym__declaration_specifiers] = STATE(3188), - [sym_attribute_specifier] = STATE(2191), - [sym_attribute_declaration] = STATE(2191), - [sym_ms_declspec_modifier] = STATE(2191), - [sym__abstract_declarator] = STATE(5162), - [sym_abstract_parenthesized_declarator] = STATE(4764), - [sym_abstract_pointer_declarator] = STATE(4764), - [sym_abstract_function_declarator] = STATE(4764), - [sym_abstract_array_declarator] = STATE(4764), - [sym_storage_class_specifier] = STATE(2191), - [sym_type_qualifier] = STATE(2191), - [sym__type_specifier] = STATE(3156), - [sym_sized_type_specifier] = STATE(3232), - [sym_enum_specifier] = STATE(3232), - [sym_struct_specifier] = STATE(3232), - [sym_union_specifier] = STATE(3232), - [sym_parameter_list] = STATE(3482), - [sym_parameter_declaration] = STATE(5574), - [sym_placeholder_type_specifier] = STATE(3232), - [sym_decltype_auto] = STATE(3279), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3232), - [sym_virtual] = STATE(2191), - [sym_dependent_type] = STATE(3232), - [sym_optional_parameter_declaration] = STATE(5574), - [sym_variadic_parameter_declaration] = STATE(5574), - [sym_abstract_reference_declarator] = STATE(4764), - [sym__function_declarator_seq] = STATE(4765), - [sym_template_type] = STATE(3198), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(5034), - [sym_qualified_type_identifier] = STATE(3259), - [aux_sym__declaration_specifiers_repeat1] = STATE(2191), - [aux_sym_sized_type_specifier_repeat1] = STATE(3171), - [sym_identifier] = ACTIONS(3906), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1485), - [anon_sym_RPAREN] = ACTIONS(3224), - [anon_sym_LPAREN2] = ACTIONS(3908), - [anon_sym_STAR] = ACTIONS(3910), - [anon_sym_AMP_AMP] = ACTIONS(3912), - [anon_sym_AMP] = ACTIONS(3914), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(3916), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1413), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3918), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(61), - [anon_sym_unsigned] = ACTIONS(61), - [anon_sym_long] = ACTIONS(61), - [anon_sym_short] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2932), - [anon_sym_enum] = ACTIONS(1451), - [anon_sym_class] = ACTIONS(1453), - [anon_sym_struct] = ACTIONS(1455), - [anon_sym_union] = ACTIONS(1457), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(107), - [anon_sym_decltype] = ACTIONS(109), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(1471), - [anon_sym_template] = ACTIONS(996), + [sym__expression] = STATE(3512), + [sym__expression_not_binary] = STATE(3565), + [sym_conditional_expression] = STATE(3565), + [sym_assignment_expression] = STATE(3565), + [sym_pointer_expression] = STATE(3220), + [sym_unary_expression] = STATE(3565), + [sym_binary_expression] = STATE(3565), + [sym_update_expression] = STATE(3565), + [sym_cast_expression] = STATE(3565), + [sym_sizeof_expression] = STATE(3565), + [sym_offsetof_expression] = STATE(3565), + [sym_generic_expression] = STATE(3565), + [sym_subscript_expression] = STATE(3220), + [sym_call_expression] = STATE(3220), + [sym_gnu_asm_expression] = STATE(3565), + [sym_field_expression] = STATE(3220), + [sym_compound_literal_expression] = STATE(3565), + [sym_parenthesized_expression] = STATE(3220), + [sym_char_literal] = STATE(3429), + [sym_concatenated_string] = STATE(3429), + [sym_string_literal] = STATE(2248), + [sym_null] = STATE(3565), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6847), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3565), + [sym_raw_string_literal] = STATE(2248), + [sym_co_await_expression] = STATE(3565), + [sym_new_expression] = STATE(3565), + [sym_delete_expression] = STATE(3565), + [sym_requires_clause] = STATE(3565), + [sym_requires_expression] = STATE(3565), + [sym_lambda_expression] = STATE(3565), + [sym_lambda_capture_specifier] = STATE(5204), + [sym_fold_expression] = STATE(3565), + [sym_parameter_pack_expansion] = STATE(3565), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5232), + [sym_qualified_identifier] = STATE(3220), + [sym_qualified_type_identifier] = STATE(6847), + [sym_user_defined_literal] = STATE(3565), + [sym_identifier] = ACTIONS(2095), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4367), + [anon_sym_LPAREN2] = ACTIONS(1841), + [anon_sym_BANG] = ACTIONS(1843), + [anon_sym_TILDE] = ACTIONS(1843), + [anon_sym_DASH] = ACTIONS(1845), + [anon_sym_PLUS] = ACTIONS(1845), + [anon_sym_STAR] = ACTIONS(1847), + [anon_sym_AMP] = ACTIONS(1847), + [anon_sym_COLON_COLON] = ACTIONS(1849), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1999), + [anon_sym_not] = ACTIONS(1845), + [anon_sym_compl] = ACTIONS(1845), + [anon_sym_DASH_DASH] = ACTIONS(1861), + [anon_sym_PLUS_PLUS] = ACTIONS(1861), + [anon_sym_sizeof] = ACTIONS(1863), + [anon_sym_offsetof] = ACTIONS(1865), + [anon_sym__Generic] = ACTIONS(1867), + [anon_sym_asm] = ACTIONS(1869), + [anon_sym___asm__] = ACTIONS(1869), + [sym_number_literal] = ACTIONS(1871), + [anon_sym_L_SQUOTE] = ACTIONS(1873), + [anon_sym_u_SQUOTE] = ACTIONS(1873), + [anon_sym_U_SQUOTE] = ACTIONS(1873), + [anon_sym_u8_SQUOTE] = ACTIONS(1873), + [anon_sym_SQUOTE] = ACTIONS(1873), + [anon_sym_L_DQUOTE] = ACTIONS(1875), + [anon_sym_u_DQUOTE] = ACTIONS(1875), + [anon_sym_U_DQUOTE] = ACTIONS(1875), + [anon_sym_u8_DQUOTE] = ACTIONS(1875), + [anon_sym_DQUOTE] = ACTIONS(1875), + [sym_true] = ACTIONS(1877), + [sym_false] = ACTIONS(1877), + [anon_sym_NULL] = ACTIONS(1879), + [anon_sym_nullptr] = ACTIONS(1879), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(1883), + [anon_sym_R_DQUOTE] = ACTIONS(1885), + [anon_sym_LR_DQUOTE] = ACTIONS(1885), + [anon_sym_uR_DQUOTE] = ACTIONS(1885), + [anon_sym_UR_DQUOTE] = ACTIONS(1885), + [anon_sym_u8R_DQUOTE] = ACTIONS(1885), + [anon_sym_co_await] = ACTIONS(1887), + [anon_sym_new] = ACTIONS(1889), + [anon_sym_requires] = ACTIONS(1891), + [sym_this] = ACTIONS(1877), }, [1804] = { - [sym_identifier] = ACTIONS(3892), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3894), - [anon_sym_COMMA] = ACTIONS(3894), - [anon_sym_RPAREN] = ACTIONS(3894), - [anon_sym_LPAREN2] = ACTIONS(3894), - [anon_sym_TILDE] = ACTIONS(3894), - [anon_sym_DASH] = ACTIONS(3892), - [anon_sym_PLUS] = ACTIONS(3892), - [anon_sym_STAR] = ACTIONS(3892), - [anon_sym_SLASH] = ACTIONS(3892), - [anon_sym_PERCENT] = ACTIONS(3892), - [anon_sym_PIPE_PIPE] = ACTIONS(3894), - [anon_sym_AMP_AMP] = ACTIONS(3894), - [anon_sym_PIPE] = ACTIONS(3892), - [anon_sym_CARET] = ACTIONS(3892), - [anon_sym_AMP] = ACTIONS(3892), - [anon_sym_EQ_EQ] = ACTIONS(3894), - [anon_sym_BANG_EQ] = ACTIONS(3894), - [anon_sym_GT] = ACTIONS(3892), - [anon_sym_GT_EQ] = ACTIONS(3894), - [anon_sym_LT_EQ] = ACTIONS(3892), - [anon_sym_LT] = ACTIONS(3892), - [anon_sym_LT_LT] = ACTIONS(3892), - [anon_sym_GT_GT] = ACTIONS(3892), - [anon_sym_extern] = ACTIONS(3892), - [anon_sym___attribute__] = ACTIONS(3892), - [anon_sym_COLON_COLON] = ACTIONS(3894), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3894), - [anon_sym___declspec] = ACTIONS(3892), - [anon_sym___based] = ACTIONS(3892), - [anon_sym_LBRACE] = ACTIONS(3894), - [anon_sym_LBRACK] = ACTIONS(3892), - [anon_sym_EQ] = ACTIONS(3892), - [anon_sym_static] = ACTIONS(3892), - [anon_sym_register] = ACTIONS(3892), - [anon_sym_inline] = ACTIONS(3892), - [anon_sym_thread_local] = ACTIONS(3892), - [anon_sym_const] = ACTIONS(3892), - [anon_sym_volatile] = ACTIONS(3892), - [anon_sym_restrict] = ACTIONS(3892), - [anon_sym__Atomic] = ACTIONS(3892), - [anon_sym_mutable] = ACTIONS(3892), - [anon_sym_constexpr] = ACTIONS(3892), - [anon_sym_constinit] = ACTIONS(3892), - [anon_sym_consteval] = ACTIONS(3892), - [anon_sym_QMARK] = ACTIONS(3894), - [anon_sym_STAR_EQ] = ACTIONS(3894), - [anon_sym_SLASH_EQ] = ACTIONS(3894), - [anon_sym_PERCENT_EQ] = ACTIONS(3894), - [anon_sym_PLUS_EQ] = ACTIONS(3894), - [anon_sym_DASH_EQ] = ACTIONS(3894), - [anon_sym_LT_LT_EQ] = ACTIONS(3894), - [anon_sym_GT_GT_EQ] = ACTIONS(3894), - [anon_sym_AMP_EQ] = ACTIONS(3894), - [anon_sym_CARET_EQ] = ACTIONS(3894), - [anon_sym_PIPE_EQ] = ACTIONS(3894), - [anon_sym_LT_EQ_GT] = ACTIONS(3894), - [anon_sym_or] = ACTIONS(3892), - [anon_sym_and] = ACTIONS(3892), - [anon_sym_bitor] = ACTIONS(3892), - [anon_sym_xor] = ACTIONS(3892), - [anon_sym_bitand] = ACTIONS(3892), - [anon_sym_not_eq] = ACTIONS(3892), - [anon_sym_DASH_DASH] = ACTIONS(3894), - [anon_sym_PLUS_PLUS] = ACTIONS(3894), - [anon_sym_DOT] = ACTIONS(3892), - [anon_sym_DASH_GT] = ACTIONS(3892), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3892), - [anon_sym_decltype] = ACTIONS(3892), - [anon_sym_virtual] = ACTIONS(3892), - [anon_sym_template] = ACTIONS(3892), - [anon_sym_operator] = ACTIONS(3892), - [anon_sym_DOT_STAR] = ACTIONS(3894), - [anon_sym_DASH_GT_STAR] = ACTIONS(3894), + [sym__expression] = STATE(3514), + [sym__expression_not_binary] = STATE(3565), + [sym_conditional_expression] = STATE(3565), + [sym_assignment_expression] = STATE(3565), + [sym_pointer_expression] = STATE(3220), + [sym_unary_expression] = STATE(3565), + [sym_binary_expression] = STATE(3565), + [sym_update_expression] = STATE(3565), + [sym_cast_expression] = STATE(3565), + [sym_sizeof_expression] = STATE(3565), + [sym_offsetof_expression] = STATE(3565), + [sym_generic_expression] = STATE(3565), + [sym_subscript_expression] = STATE(3220), + [sym_call_expression] = STATE(3220), + [sym_gnu_asm_expression] = STATE(3565), + [sym_field_expression] = STATE(3220), + [sym_compound_literal_expression] = STATE(3565), + [sym_parenthesized_expression] = STATE(3220), + [sym_char_literal] = STATE(3429), + [sym_concatenated_string] = STATE(3429), + [sym_string_literal] = STATE(2248), + [sym_null] = STATE(3565), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6847), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3565), + [sym_raw_string_literal] = STATE(2248), + [sym_co_await_expression] = STATE(3565), + [sym_new_expression] = STATE(3565), + [sym_delete_expression] = STATE(3565), + [sym_requires_clause] = STATE(3565), + [sym_requires_expression] = STATE(3565), + [sym_lambda_expression] = STATE(3565), + [sym_lambda_capture_specifier] = STATE(5204), + [sym_fold_expression] = STATE(3565), + [sym_parameter_pack_expansion] = STATE(3565), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5232), + [sym_qualified_identifier] = STATE(3220), + [sym_qualified_type_identifier] = STATE(6847), + [sym_user_defined_literal] = STATE(3565), + [sym_identifier] = ACTIONS(2095), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4370), + [anon_sym_LPAREN2] = ACTIONS(1841), + [anon_sym_BANG] = ACTIONS(1843), + [anon_sym_TILDE] = ACTIONS(1843), + [anon_sym_DASH] = ACTIONS(1845), + [anon_sym_PLUS] = ACTIONS(1845), + [anon_sym_STAR] = ACTIONS(1847), + [anon_sym_AMP] = ACTIONS(1847), + [anon_sym_COLON_COLON] = ACTIONS(1849), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1999), + [anon_sym_not] = ACTIONS(1845), + [anon_sym_compl] = ACTIONS(1845), + [anon_sym_DASH_DASH] = ACTIONS(1861), + [anon_sym_PLUS_PLUS] = ACTIONS(1861), + [anon_sym_sizeof] = ACTIONS(1863), + [anon_sym_offsetof] = ACTIONS(1865), + [anon_sym__Generic] = ACTIONS(1867), + [anon_sym_asm] = ACTIONS(1869), + [anon_sym___asm__] = ACTIONS(1869), + [sym_number_literal] = ACTIONS(1871), + [anon_sym_L_SQUOTE] = ACTIONS(1873), + [anon_sym_u_SQUOTE] = ACTIONS(1873), + [anon_sym_U_SQUOTE] = ACTIONS(1873), + [anon_sym_u8_SQUOTE] = ACTIONS(1873), + [anon_sym_SQUOTE] = ACTIONS(1873), + [anon_sym_L_DQUOTE] = ACTIONS(1875), + [anon_sym_u_DQUOTE] = ACTIONS(1875), + [anon_sym_U_DQUOTE] = ACTIONS(1875), + [anon_sym_u8_DQUOTE] = ACTIONS(1875), + [anon_sym_DQUOTE] = ACTIONS(1875), + [sym_true] = ACTIONS(1877), + [sym_false] = ACTIONS(1877), + [anon_sym_NULL] = ACTIONS(1879), + [anon_sym_nullptr] = ACTIONS(1879), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(1883), + [anon_sym_R_DQUOTE] = ACTIONS(1885), + [anon_sym_LR_DQUOTE] = ACTIONS(1885), + [anon_sym_uR_DQUOTE] = ACTIONS(1885), + [anon_sym_UR_DQUOTE] = ACTIONS(1885), + [anon_sym_u8R_DQUOTE] = ACTIONS(1885), + [anon_sym_co_await] = ACTIONS(1887), + [anon_sym_new] = ACTIONS(1889), + [anon_sym_requires] = ACTIONS(1891), + [sym_this] = ACTIONS(1877), }, [1805] = { - [sym_identifier] = ACTIONS(3866), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3868), - [anon_sym_COMMA] = ACTIONS(3868), - [anon_sym_RPAREN] = ACTIONS(3868), - [anon_sym_LPAREN2] = ACTIONS(3868), - [anon_sym_TILDE] = ACTIONS(3868), - [anon_sym_DASH] = ACTIONS(3866), - [anon_sym_PLUS] = ACTIONS(3866), - [anon_sym_STAR] = ACTIONS(3866), - [anon_sym_SLASH] = ACTIONS(3866), - [anon_sym_PERCENT] = ACTIONS(3866), - [anon_sym_PIPE_PIPE] = ACTIONS(3868), - [anon_sym_AMP_AMP] = ACTIONS(3868), - [anon_sym_PIPE] = ACTIONS(3866), - [anon_sym_CARET] = ACTIONS(3866), - [anon_sym_AMP] = ACTIONS(3866), - [anon_sym_EQ_EQ] = ACTIONS(3868), - [anon_sym_BANG_EQ] = ACTIONS(3868), - [anon_sym_GT] = ACTIONS(3866), - [anon_sym_GT_EQ] = ACTIONS(3868), - [anon_sym_LT_EQ] = ACTIONS(3866), - [anon_sym_LT] = ACTIONS(3866), - [anon_sym_LT_LT] = ACTIONS(3866), - [anon_sym_GT_GT] = ACTIONS(3866), - [anon_sym_extern] = ACTIONS(3866), - [anon_sym___attribute__] = ACTIONS(3866), - [anon_sym_COLON_COLON] = ACTIONS(3868), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3868), - [anon_sym___declspec] = ACTIONS(3866), - [anon_sym___based] = ACTIONS(3866), - [anon_sym_LBRACE] = ACTIONS(3868), - [anon_sym_LBRACK] = ACTIONS(3866), - [anon_sym_EQ] = ACTIONS(3866), - [anon_sym_static] = ACTIONS(3866), - [anon_sym_register] = ACTIONS(3866), - [anon_sym_inline] = ACTIONS(3866), - [anon_sym_thread_local] = ACTIONS(3866), - [anon_sym_const] = ACTIONS(3866), - [anon_sym_volatile] = ACTIONS(3866), - [anon_sym_restrict] = ACTIONS(3866), - [anon_sym__Atomic] = ACTIONS(3866), - [anon_sym_mutable] = ACTIONS(3866), - [anon_sym_constexpr] = ACTIONS(3866), - [anon_sym_constinit] = ACTIONS(3866), - [anon_sym_consteval] = ACTIONS(3866), - [anon_sym_QMARK] = ACTIONS(3868), - [anon_sym_STAR_EQ] = ACTIONS(3868), - [anon_sym_SLASH_EQ] = ACTIONS(3868), - [anon_sym_PERCENT_EQ] = ACTIONS(3868), - [anon_sym_PLUS_EQ] = ACTIONS(3868), - [anon_sym_DASH_EQ] = ACTIONS(3868), - [anon_sym_LT_LT_EQ] = ACTIONS(3868), - [anon_sym_GT_GT_EQ] = ACTIONS(3868), - [anon_sym_AMP_EQ] = ACTIONS(3868), - [anon_sym_CARET_EQ] = ACTIONS(3868), - [anon_sym_PIPE_EQ] = ACTIONS(3868), - [anon_sym_LT_EQ_GT] = ACTIONS(3868), - [anon_sym_or] = ACTIONS(3866), - [anon_sym_and] = ACTIONS(3866), - [anon_sym_bitor] = ACTIONS(3866), - [anon_sym_xor] = ACTIONS(3866), - [anon_sym_bitand] = ACTIONS(3866), - [anon_sym_not_eq] = ACTIONS(3866), - [anon_sym_DASH_DASH] = ACTIONS(3868), - [anon_sym_PLUS_PLUS] = ACTIONS(3868), - [anon_sym_DOT] = ACTIONS(3866), - [anon_sym_DASH_GT] = ACTIONS(3866), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3866), - [anon_sym_decltype] = ACTIONS(3866), - [anon_sym_virtual] = ACTIONS(3866), - [anon_sym_template] = ACTIONS(3866), - [anon_sym_operator] = ACTIONS(3866), - [anon_sym_DOT_STAR] = ACTIONS(3868), - [anon_sym_DASH_GT_STAR] = ACTIONS(3868), + [sym__expression] = STATE(4323), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3579), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3579), + [sym_call_expression] = STATE(3579), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3579), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3579), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3579), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3633), + [anon_sym_LPAREN2] = ACTIONS(3635), + [anon_sym_BANG] = ACTIONS(3639), + [anon_sym_TILDE] = ACTIONS(3639), + [anon_sym_DASH] = ACTIONS(3637), + [anon_sym_PLUS] = ACTIONS(3637), + [anon_sym_STAR] = ACTIONS(3641), + [anon_sym_AMP] = ACTIONS(3641), + [anon_sym_COLON_COLON] = ACTIONS(3643), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_COLON] = ACTIONS(4373), + [anon_sym_not] = ACTIONS(3637), + [anon_sym_compl] = ACTIONS(3637), + [anon_sym_DASH_DASH] = ACTIONS(3645), + [anon_sym_PLUS_PLUS] = ACTIONS(3645), + [anon_sym_sizeof] = ACTIONS(3647), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(3649), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(3651), + [anon_sym_new] = ACTIONS(3631), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1806] = { - [sym__declaration_modifiers] = STATE(2191), - [sym__declaration_specifiers] = STATE(3188), - [sym_attribute_specifier] = STATE(2191), - [sym_attribute_declaration] = STATE(2191), - [sym_ms_declspec_modifier] = STATE(2191), - [sym__abstract_declarator] = STATE(5164), - [sym_abstract_parenthesized_declarator] = STATE(4764), - [sym_abstract_pointer_declarator] = STATE(4764), - [sym_abstract_function_declarator] = STATE(4764), - [sym_abstract_array_declarator] = STATE(4764), - [sym_storage_class_specifier] = STATE(2191), - [sym_type_qualifier] = STATE(2191), - [sym__type_specifier] = STATE(3156), - [sym_sized_type_specifier] = STATE(3232), - [sym_enum_specifier] = STATE(3232), - [sym_struct_specifier] = STATE(3232), - [sym_union_specifier] = STATE(3232), - [sym_parameter_list] = STATE(3482), - [sym_parameter_declaration] = STATE(5574), - [sym_placeholder_type_specifier] = STATE(3232), - [sym_decltype_auto] = STATE(3279), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3232), - [sym_virtual] = STATE(2191), - [sym_dependent_type] = STATE(3232), - [sym_optional_parameter_declaration] = STATE(5574), - [sym_variadic_parameter_declaration] = STATE(5574), - [sym_abstract_reference_declarator] = STATE(4764), - [sym__function_declarator_seq] = STATE(4765), - [sym_template_type] = STATE(3198), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(5034), - [sym_qualified_type_identifier] = STATE(3259), - [aux_sym__declaration_specifiers_repeat1] = STATE(2191), - [aux_sym_sized_type_specifier_repeat1] = STATE(3171), - [sym_identifier] = ACTIONS(3906), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1485), - [anon_sym_RPAREN] = ACTIONS(3224), - [anon_sym_LPAREN2] = ACTIONS(3908), - [anon_sym_STAR] = ACTIONS(3910), - [anon_sym_AMP_AMP] = ACTIONS(3912), - [anon_sym_AMP] = ACTIONS(3914), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(3916), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1413), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3918), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(61), - [anon_sym_unsigned] = ACTIONS(61), - [anon_sym_long] = ACTIONS(61), - [anon_sym_short] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2932), - [anon_sym_enum] = ACTIONS(1451), - [anon_sym_class] = ACTIONS(1453), - [anon_sym_struct] = ACTIONS(1455), - [anon_sym_union] = ACTIONS(1457), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(107), - [anon_sym_decltype] = ACTIONS(109), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(1471), - [anon_sym_template] = ACTIONS(996), + [sym__expression] = STATE(4301), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(4375), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1807] = { - [sym_identifier] = ACTIONS(2710), - [anon_sym_LPAREN2] = ACTIONS(2712), - [anon_sym_BANG] = ACTIONS(2712), - [anon_sym_TILDE] = ACTIONS(2712), - [anon_sym_DASH] = ACTIONS(2710), - [anon_sym_PLUS] = ACTIONS(2710), - [anon_sym_STAR] = ACTIONS(2712), - [anon_sym_AMP] = ACTIONS(2712), - [anon_sym_extern] = ACTIONS(2710), - [anon_sym___attribute__] = ACTIONS(2710), - [anon_sym_COLON_COLON] = ACTIONS(2712), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2712), - [anon_sym___declspec] = ACTIONS(2710), - [anon_sym_LBRACK] = ACTIONS(2710), - [anon_sym_static] = ACTIONS(2710), - [anon_sym_register] = ACTIONS(2710), - [anon_sym_inline] = ACTIONS(2710), - [anon_sym_thread_local] = ACTIONS(2710), - [anon_sym_const] = ACTIONS(2710), - [anon_sym_volatile] = ACTIONS(2710), - [anon_sym_restrict] = ACTIONS(2710), - [anon_sym__Atomic] = ACTIONS(2710), - [anon_sym_mutable] = ACTIONS(2710), - [anon_sym_constexpr] = ACTIONS(2710), - [anon_sym_constinit] = ACTIONS(2710), - [anon_sym_consteval] = ACTIONS(2710), - [anon_sym_signed] = ACTIONS(2710), - [anon_sym_unsigned] = ACTIONS(2710), - [anon_sym_long] = ACTIONS(2710), - [anon_sym_short] = ACTIONS(2710), - [sym_primitive_type] = ACTIONS(2710), - [anon_sym_enum] = ACTIONS(2710), - [anon_sym_class] = ACTIONS(2710), - [anon_sym_struct] = ACTIONS(2710), - [anon_sym_union] = ACTIONS(2710), - [anon_sym_not] = ACTIONS(2710), - [anon_sym_compl] = ACTIONS(2710), - [anon_sym_DASH_DASH] = ACTIONS(2712), - [anon_sym_PLUS_PLUS] = ACTIONS(2712), - [anon_sym_sizeof] = ACTIONS(2710), - [sym_number_literal] = ACTIONS(2712), - [anon_sym_L_SQUOTE] = ACTIONS(2712), - [anon_sym_u_SQUOTE] = ACTIONS(2712), - [anon_sym_U_SQUOTE] = ACTIONS(2712), - [anon_sym_u8_SQUOTE] = ACTIONS(2712), - [anon_sym_SQUOTE] = ACTIONS(2712), - [anon_sym_L_DQUOTE] = ACTIONS(2712), - [anon_sym_u_DQUOTE] = ACTIONS(2712), - [anon_sym_U_DQUOTE] = ACTIONS(2712), - [anon_sym_u8_DQUOTE] = ACTIONS(2712), - [anon_sym_DQUOTE] = ACTIONS(2712), - [sym_true] = ACTIONS(2710), - [sym_false] = ACTIONS(2710), - [sym_null] = ACTIONS(2710), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2710), - [anon_sym_decltype] = ACTIONS(2710), - [anon_sym_virtual] = ACTIONS(2710), - [anon_sym_typename] = ACTIONS(2710), - [anon_sym_template] = ACTIONS(2710), - [anon_sym_delete] = ACTIONS(2710), - [anon_sym_R_DQUOTE] = ACTIONS(2712), - [anon_sym_LR_DQUOTE] = ACTIONS(2712), - [anon_sym_uR_DQUOTE] = ACTIONS(2712), - [anon_sym_UR_DQUOTE] = ACTIONS(2712), - [anon_sym_u8R_DQUOTE] = ACTIONS(2712), - [anon_sym_co_await] = ACTIONS(2710), - [anon_sym_new] = ACTIONS(2710), - [anon_sym_requires] = ACTIONS(2710), - [sym_this] = ACTIONS(2710), - [sym_nullptr] = ACTIONS(2710), + [sym__expression] = STATE(3517), + [sym__expression_not_binary] = STATE(3565), + [sym_conditional_expression] = STATE(3565), + [sym_assignment_expression] = STATE(3565), + [sym_pointer_expression] = STATE(3220), + [sym_unary_expression] = STATE(3565), + [sym_binary_expression] = STATE(3565), + [sym_update_expression] = STATE(3565), + [sym_cast_expression] = STATE(3565), + [sym_sizeof_expression] = STATE(3565), + [sym_offsetof_expression] = STATE(3565), + [sym_generic_expression] = STATE(3565), + [sym_subscript_expression] = STATE(3220), + [sym_call_expression] = STATE(3220), + [sym_gnu_asm_expression] = STATE(3565), + [sym_field_expression] = STATE(3220), + [sym_compound_literal_expression] = STATE(3565), + [sym_parenthesized_expression] = STATE(3220), + [sym_char_literal] = STATE(3429), + [sym_concatenated_string] = STATE(3429), + [sym_string_literal] = STATE(2248), + [sym_null] = STATE(3565), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6847), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3565), + [sym_raw_string_literal] = STATE(2248), + [sym_co_await_expression] = STATE(3565), + [sym_new_expression] = STATE(3565), + [sym_delete_expression] = STATE(3565), + [sym_requires_clause] = STATE(3565), + [sym_requires_expression] = STATE(3565), + [sym_lambda_expression] = STATE(3565), + [sym_lambda_capture_specifier] = STATE(5204), + [sym_fold_expression] = STATE(3565), + [sym_parameter_pack_expansion] = STATE(3565), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5232), + [sym_qualified_identifier] = STATE(3220), + [sym_qualified_type_identifier] = STATE(6847), + [sym_user_defined_literal] = STATE(3565), + [sym_identifier] = ACTIONS(2095), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4377), + [anon_sym_LPAREN2] = ACTIONS(1841), + [anon_sym_BANG] = ACTIONS(1843), + [anon_sym_TILDE] = ACTIONS(1843), + [anon_sym_DASH] = ACTIONS(1845), + [anon_sym_PLUS] = ACTIONS(1845), + [anon_sym_STAR] = ACTIONS(1847), + [anon_sym_AMP] = ACTIONS(1847), + [anon_sym_COLON_COLON] = ACTIONS(1849), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1999), + [anon_sym_not] = ACTIONS(1845), + [anon_sym_compl] = ACTIONS(1845), + [anon_sym_DASH_DASH] = ACTIONS(1861), + [anon_sym_PLUS_PLUS] = ACTIONS(1861), + [anon_sym_sizeof] = ACTIONS(1863), + [anon_sym_offsetof] = ACTIONS(1865), + [anon_sym__Generic] = ACTIONS(1867), + [anon_sym_asm] = ACTIONS(1869), + [anon_sym___asm__] = ACTIONS(1869), + [sym_number_literal] = ACTIONS(1871), + [anon_sym_L_SQUOTE] = ACTIONS(1873), + [anon_sym_u_SQUOTE] = ACTIONS(1873), + [anon_sym_U_SQUOTE] = ACTIONS(1873), + [anon_sym_u8_SQUOTE] = ACTIONS(1873), + [anon_sym_SQUOTE] = ACTIONS(1873), + [anon_sym_L_DQUOTE] = ACTIONS(1875), + [anon_sym_u_DQUOTE] = ACTIONS(1875), + [anon_sym_U_DQUOTE] = ACTIONS(1875), + [anon_sym_u8_DQUOTE] = ACTIONS(1875), + [anon_sym_DQUOTE] = ACTIONS(1875), + [sym_true] = ACTIONS(1877), + [sym_false] = ACTIONS(1877), + [anon_sym_NULL] = ACTIONS(1879), + [anon_sym_nullptr] = ACTIONS(1879), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(1883), + [anon_sym_R_DQUOTE] = ACTIONS(1885), + [anon_sym_LR_DQUOTE] = ACTIONS(1885), + [anon_sym_uR_DQUOTE] = ACTIONS(1885), + [anon_sym_UR_DQUOTE] = ACTIONS(1885), + [anon_sym_u8R_DQUOTE] = ACTIONS(1885), + [anon_sym_co_await] = ACTIONS(1887), + [anon_sym_new] = ACTIONS(1889), + [anon_sym_requires] = ACTIONS(1891), + [sym_this] = ACTIONS(1877), }, [1808] = { - [sym_identifier] = ACTIONS(2746), - [anon_sym_LPAREN2] = ACTIONS(2748), - [anon_sym_BANG] = ACTIONS(2748), - [anon_sym_TILDE] = ACTIONS(2748), - [anon_sym_DASH] = ACTIONS(2746), - [anon_sym_PLUS] = ACTIONS(2746), - [anon_sym_STAR] = ACTIONS(2748), - [anon_sym_AMP] = ACTIONS(2748), - [anon_sym_extern] = ACTIONS(2746), - [anon_sym___attribute__] = ACTIONS(2746), - [anon_sym_COLON_COLON] = ACTIONS(2748), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2748), - [anon_sym___declspec] = ACTIONS(2746), - [anon_sym_LBRACK] = ACTIONS(2746), - [anon_sym_static] = ACTIONS(2746), - [anon_sym_register] = ACTIONS(2746), - [anon_sym_inline] = ACTIONS(2746), - [anon_sym_thread_local] = ACTIONS(2746), - [anon_sym_const] = ACTIONS(2746), - [anon_sym_volatile] = ACTIONS(2746), - [anon_sym_restrict] = ACTIONS(2746), - [anon_sym__Atomic] = ACTIONS(2746), - [anon_sym_mutable] = ACTIONS(2746), - [anon_sym_constexpr] = ACTIONS(2746), - [anon_sym_constinit] = ACTIONS(2746), - [anon_sym_consteval] = ACTIONS(2746), - [anon_sym_signed] = ACTIONS(2746), - [anon_sym_unsigned] = ACTIONS(2746), - [anon_sym_long] = ACTIONS(2746), - [anon_sym_short] = ACTIONS(2746), - [sym_primitive_type] = ACTIONS(2746), - [anon_sym_enum] = ACTIONS(2746), - [anon_sym_class] = ACTIONS(2746), - [anon_sym_struct] = ACTIONS(2746), - [anon_sym_union] = ACTIONS(2746), - [anon_sym_not] = ACTIONS(2746), - [anon_sym_compl] = ACTIONS(2746), - [anon_sym_DASH_DASH] = ACTIONS(2748), - [anon_sym_PLUS_PLUS] = ACTIONS(2748), - [anon_sym_sizeof] = ACTIONS(2746), - [sym_number_literal] = ACTIONS(2748), - [anon_sym_L_SQUOTE] = ACTIONS(2748), - [anon_sym_u_SQUOTE] = ACTIONS(2748), - [anon_sym_U_SQUOTE] = ACTIONS(2748), - [anon_sym_u8_SQUOTE] = ACTIONS(2748), - [anon_sym_SQUOTE] = ACTIONS(2748), - [anon_sym_L_DQUOTE] = ACTIONS(2748), - [anon_sym_u_DQUOTE] = ACTIONS(2748), - [anon_sym_U_DQUOTE] = ACTIONS(2748), - [anon_sym_u8_DQUOTE] = ACTIONS(2748), - [anon_sym_DQUOTE] = ACTIONS(2748), - [sym_true] = ACTIONS(2746), - [sym_false] = ACTIONS(2746), - [sym_null] = ACTIONS(2746), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2746), - [anon_sym_decltype] = ACTIONS(2746), - [anon_sym_virtual] = ACTIONS(2746), - [anon_sym_typename] = ACTIONS(2746), - [anon_sym_template] = ACTIONS(2746), - [anon_sym_delete] = ACTIONS(2746), - [anon_sym_R_DQUOTE] = ACTIONS(2748), - [anon_sym_LR_DQUOTE] = ACTIONS(2748), - [anon_sym_uR_DQUOTE] = ACTIONS(2748), - [anon_sym_UR_DQUOTE] = ACTIONS(2748), - [anon_sym_u8R_DQUOTE] = ACTIONS(2748), - [anon_sym_co_await] = ACTIONS(2746), - [anon_sym_new] = ACTIONS(2746), - [anon_sym_requires] = ACTIONS(2746), - [sym_this] = ACTIONS(2746), - [sym_nullptr] = ACTIONS(2746), + [sym__expression] = STATE(3458), + [sym__expression_not_binary] = STATE(3565), + [sym_conditional_expression] = STATE(3565), + [sym_assignment_expression] = STATE(3565), + [sym_pointer_expression] = STATE(3220), + [sym_unary_expression] = STATE(3565), + [sym_binary_expression] = STATE(3565), + [sym_update_expression] = STATE(3565), + [sym_cast_expression] = STATE(3565), + [sym_sizeof_expression] = STATE(3565), + [sym_offsetof_expression] = STATE(3565), + [sym_generic_expression] = STATE(3565), + [sym_subscript_expression] = STATE(3220), + [sym_call_expression] = STATE(3220), + [sym_gnu_asm_expression] = STATE(3565), + [sym_field_expression] = STATE(3220), + [sym_compound_literal_expression] = STATE(3565), + [sym_parenthesized_expression] = STATE(3220), + [sym_char_literal] = STATE(3429), + [sym_concatenated_string] = STATE(3429), + [sym_string_literal] = STATE(2248), + [sym_null] = STATE(3565), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6847), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3565), + [sym_raw_string_literal] = STATE(2248), + [sym_co_await_expression] = STATE(3565), + [sym_new_expression] = STATE(3565), + [sym_delete_expression] = STATE(3565), + [sym_requires_clause] = STATE(3565), + [sym_requires_expression] = STATE(3565), + [sym_lambda_expression] = STATE(3565), + [sym_lambda_capture_specifier] = STATE(5204), + [sym_fold_expression] = STATE(3565), + [sym_parameter_pack_expansion] = STATE(3565), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5232), + [sym_qualified_identifier] = STATE(3220), + [sym_qualified_type_identifier] = STATE(6847), + [sym_user_defined_literal] = STATE(3565), + [sym_identifier] = ACTIONS(2095), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4380), + [anon_sym_LPAREN2] = ACTIONS(1841), + [anon_sym_BANG] = ACTIONS(1843), + [anon_sym_TILDE] = ACTIONS(1843), + [anon_sym_DASH] = ACTIONS(1845), + [anon_sym_PLUS] = ACTIONS(1845), + [anon_sym_STAR] = ACTIONS(1847), + [anon_sym_AMP] = ACTIONS(1847), + [anon_sym_COLON_COLON] = ACTIONS(1849), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1999), + [anon_sym_not] = ACTIONS(1845), + [anon_sym_compl] = ACTIONS(1845), + [anon_sym_DASH_DASH] = ACTIONS(1861), + [anon_sym_PLUS_PLUS] = ACTIONS(1861), + [anon_sym_sizeof] = ACTIONS(1863), + [anon_sym_offsetof] = ACTIONS(1865), + [anon_sym__Generic] = ACTIONS(1867), + [anon_sym_asm] = ACTIONS(1869), + [anon_sym___asm__] = ACTIONS(1869), + [sym_number_literal] = ACTIONS(1871), + [anon_sym_L_SQUOTE] = ACTIONS(1873), + [anon_sym_u_SQUOTE] = ACTIONS(1873), + [anon_sym_U_SQUOTE] = ACTIONS(1873), + [anon_sym_u8_SQUOTE] = ACTIONS(1873), + [anon_sym_SQUOTE] = ACTIONS(1873), + [anon_sym_L_DQUOTE] = ACTIONS(1875), + [anon_sym_u_DQUOTE] = ACTIONS(1875), + [anon_sym_U_DQUOTE] = ACTIONS(1875), + [anon_sym_u8_DQUOTE] = ACTIONS(1875), + [anon_sym_DQUOTE] = ACTIONS(1875), + [sym_true] = ACTIONS(1877), + [sym_false] = ACTIONS(1877), + [anon_sym_NULL] = ACTIONS(1879), + [anon_sym_nullptr] = ACTIONS(1879), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(1883), + [anon_sym_R_DQUOTE] = ACTIONS(1885), + [anon_sym_LR_DQUOTE] = ACTIONS(1885), + [anon_sym_uR_DQUOTE] = ACTIONS(1885), + [anon_sym_UR_DQUOTE] = ACTIONS(1885), + [anon_sym_u8R_DQUOTE] = ACTIONS(1885), + [anon_sym_co_await] = ACTIONS(1887), + [anon_sym_new] = ACTIONS(1889), + [anon_sym_requires] = ACTIONS(1891), + [sym_this] = ACTIONS(1877), }, [1809] = { - [sym_identifier] = ACTIONS(2969), - [anon_sym_LPAREN2] = ACTIONS(2974), - [anon_sym_BANG] = ACTIONS(2974), - [anon_sym_TILDE] = ACTIONS(2974), - [anon_sym_DASH] = ACTIONS(2969), - [anon_sym_PLUS] = ACTIONS(2969), - [anon_sym_STAR] = ACTIONS(2974), - [anon_sym_AMP] = ACTIONS(2974), - [anon_sym_extern] = ACTIONS(2969), - [anon_sym___attribute__] = ACTIONS(2969), - [anon_sym_COLON_COLON] = ACTIONS(2974), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2974), - [anon_sym___declspec] = ACTIONS(2969), - [anon_sym_LBRACK] = ACTIONS(2969), - [anon_sym_static] = ACTIONS(2969), - [anon_sym_register] = ACTIONS(2969), - [anon_sym_inline] = ACTIONS(2969), - [anon_sym_thread_local] = ACTIONS(2969), - [anon_sym_const] = ACTIONS(2969), - [anon_sym_volatile] = ACTIONS(2969), - [anon_sym_restrict] = ACTIONS(2969), - [anon_sym__Atomic] = ACTIONS(2969), - [anon_sym_mutable] = ACTIONS(2969), - [anon_sym_constexpr] = ACTIONS(2969), - [anon_sym_constinit] = ACTIONS(2969), - [anon_sym_consteval] = ACTIONS(2969), - [anon_sym_signed] = ACTIONS(2969), - [anon_sym_unsigned] = ACTIONS(2969), - [anon_sym_long] = ACTIONS(2969), - [anon_sym_short] = ACTIONS(2969), - [sym_primitive_type] = ACTIONS(2969), - [anon_sym_enum] = ACTIONS(2969), - [anon_sym_class] = ACTIONS(2969), - [anon_sym_struct] = ACTIONS(2969), - [anon_sym_union] = ACTIONS(2969), - [anon_sym_not] = ACTIONS(2969), - [anon_sym_compl] = ACTIONS(2969), - [anon_sym_DASH_DASH] = ACTIONS(2974), - [anon_sym_PLUS_PLUS] = ACTIONS(2974), - [anon_sym_sizeof] = ACTIONS(2969), - [sym_number_literal] = ACTIONS(2974), - [anon_sym_L_SQUOTE] = ACTIONS(2974), - [anon_sym_u_SQUOTE] = ACTIONS(2974), - [anon_sym_U_SQUOTE] = ACTIONS(2974), - [anon_sym_u8_SQUOTE] = ACTIONS(2974), - [anon_sym_SQUOTE] = ACTIONS(2974), - [anon_sym_L_DQUOTE] = ACTIONS(2974), - [anon_sym_u_DQUOTE] = ACTIONS(2974), - [anon_sym_U_DQUOTE] = ACTIONS(2974), - [anon_sym_u8_DQUOTE] = ACTIONS(2974), - [anon_sym_DQUOTE] = ACTIONS(2974), - [sym_true] = ACTIONS(2969), - [sym_false] = ACTIONS(2969), - [sym_null] = ACTIONS(2969), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2969), - [anon_sym_decltype] = ACTIONS(2969), - [anon_sym_virtual] = ACTIONS(2969), - [anon_sym_typename] = ACTIONS(2969), - [anon_sym_template] = ACTIONS(2969), - [anon_sym_delete] = ACTIONS(2969), - [anon_sym_R_DQUOTE] = ACTIONS(2974), - [anon_sym_LR_DQUOTE] = ACTIONS(2974), - [anon_sym_uR_DQUOTE] = ACTIONS(2974), - [anon_sym_UR_DQUOTE] = ACTIONS(2974), - [anon_sym_u8R_DQUOTE] = ACTIONS(2974), - [anon_sym_co_await] = ACTIONS(2969), - [anon_sym_new] = ACTIONS(2969), - [anon_sym_requires] = ACTIONS(2969), - [sym_this] = ACTIONS(2969), - [sym_nullptr] = ACTIONS(2969), + [sym__expression] = STATE(3521), + [sym__expression_not_binary] = STATE(3565), + [sym_conditional_expression] = STATE(3565), + [sym_assignment_expression] = STATE(3565), + [sym_pointer_expression] = STATE(3220), + [sym_unary_expression] = STATE(3565), + [sym_binary_expression] = STATE(3565), + [sym_update_expression] = STATE(3565), + [sym_cast_expression] = STATE(3565), + [sym_sizeof_expression] = STATE(3565), + [sym_offsetof_expression] = STATE(3565), + [sym_generic_expression] = STATE(3565), + [sym_subscript_expression] = STATE(3220), + [sym_call_expression] = STATE(3220), + [sym_gnu_asm_expression] = STATE(3565), + [sym_field_expression] = STATE(3220), + [sym_compound_literal_expression] = STATE(3565), + [sym_parenthesized_expression] = STATE(3220), + [sym_char_literal] = STATE(3429), + [sym_concatenated_string] = STATE(3429), + [sym_string_literal] = STATE(2248), + [sym_null] = STATE(3565), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6847), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3565), + [sym_raw_string_literal] = STATE(2248), + [sym_co_await_expression] = STATE(3565), + [sym_new_expression] = STATE(3565), + [sym_delete_expression] = STATE(3565), + [sym_requires_clause] = STATE(3565), + [sym_requires_expression] = STATE(3565), + [sym_lambda_expression] = STATE(3565), + [sym_lambda_capture_specifier] = STATE(5204), + [sym_fold_expression] = STATE(3565), + [sym_parameter_pack_expansion] = STATE(3565), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5232), + [sym_qualified_identifier] = STATE(3220), + [sym_qualified_type_identifier] = STATE(6847), + [sym_user_defined_literal] = STATE(3565), + [sym_identifier] = ACTIONS(2095), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4383), + [anon_sym_LPAREN2] = ACTIONS(1841), + [anon_sym_BANG] = ACTIONS(1843), + [anon_sym_TILDE] = ACTIONS(1843), + [anon_sym_DASH] = ACTIONS(1845), + [anon_sym_PLUS] = ACTIONS(1845), + [anon_sym_STAR] = ACTIONS(1847), + [anon_sym_AMP] = ACTIONS(1847), + [anon_sym_COLON_COLON] = ACTIONS(1849), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1999), + [anon_sym_not] = ACTIONS(1845), + [anon_sym_compl] = ACTIONS(1845), + [anon_sym_DASH_DASH] = ACTIONS(1861), + [anon_sym_PLUS_PLUS] = ACTIONS(1861), + [anon_sym_sizeof] = ACTIONS(1863), + [anon_sym_offsetof] = ACTIONS(1865), + [anon_sym__Generic] = ACTIONS(1867), + [anon_sym_asm] = ACTIONS(1869), + [anon_sym___asm__] = ACTIONS(1869), + [sym_number_literal] = ACTIONS(1871), + [anon_sym_L_SQUOTE] = ACTIONS(1873), + [anon_sym_u_SQUOTE] = ACTIONS(1873), + [anon_sym_U_SQUOTE] = ACTIONS(1873), + [anon_sym_u8_SQUOTE] = ACTIONS(1873), + [anon_sym_SQUOTE] = ACTIONS(1873), + [anon_sym_L_DQUOTE] = ACTIONS(1875), + [anon_sym_u_DQUOTE] = ACTIONS(1875), + [anon_sym_U_DQUOTE] = ACTIONS(1875), + [anon_sym_u8_DQUOTE] = ACTIONS(1875), + [anon_sym_DQUOTE] = ACTIONS(1875), + [sym_true] = ACTIONS(1877), + [sym_false] = ACTIONS(1877), + [anon_sym_NULL] = ACTIONS(1879), + [anon_sym_nullptr] = ACTIONS(1879), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(1883), + [anon_sym_R_DQUOTE] = ACTIONS(1885), + [anon_sym_LR_DQUOTE] = ACTIONS(1885), + [anon_sym_uR_DQUOTE] = ACTIONS(1885), + [anon_sym_UR_DQUOTE] = ACTIONS(1885), + [anon_sym_u8R_DQUOTE] = ACTIONS(1885), + [anon_sym_co_await] = ACTIONS(1887), + [anon_sym_new] = ACTIONS(1889), + [anon_sym_requires] = ACTIONS(1891), + [sym_this] = ACTIONS(1877), }, [1810] = { - [sym_identifier] = ACTIONS(3866), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3868), - [anon_sym_COMMA] = ACTIONS(3868), - [anon_sym_RPAREN] = ACTIONS(3868), - [anon_sym_LPAREN2] = ACTIONS(3868), - [anon_sym_TILDE] = ACTIONS(3868), - [anon_sym_DASH] = ACTIONS(3866), - [anon_sym_PLUS] = ACTIONS(3866), - [anon_sym_STAR] = ACTIONS(3868), - [anon_sym_SLASH] = ACTIONS(3866), - [anon_sym_PERCENT] = ACTIONS(3868), - [anon_sym_PIPE_PIPE] = ACTIONS(3868), - [anon_sym_AMP_AMP] = ACTIONS(3868), - [anon_sym_PIPE] = ACTIONS(3866), - [anon_sym_CARET] = ACTIONS(3868), - [anon_sym_AMP] = ACTIONS(3866), - [anon_sym_EQ_EQ] = ACTIONS(3868), - [anon_sym_BANG_EQ] = ACTIONS(3868), - [anon_sym_GT] = ACTIONS(3866), - [anon_sym_GT_EQ] = ACTIONS(3868), - [anon_sym_LT_EQ] = ACTIONS(3866), - [anon_sym_LT] = ACTIONS(3866), - [anon_sym_LT_LT] = ACTIONS(3868), - [anon_sym_GT_GT] = ACTIONS(3868), - [anon_sym_SEMI] = ACTIONS(3868), - [anon_sym_extern] = ACTIONS(3866), - [anon_sym___attribute__] = ACTIONS(3866), - [anon_sym_COLON_COLON] = ACTIONS(3868), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3868), - [anon_sym___declspec] = ACTIONS(3866), - [anon_sym___based] = ACTIONS(3866), - [anon_sym_LBRACE] = ACTIONS(3868), - [anon_sym_RBRACE] = ACTIONS(3868), - [anon_sym_LBRACK] = ACTIONS(3866), - [anon_sym_EQ] = ACTIONS(3866), - [anon_sym_static] = ACTIONS(3866), - [anon_sym_register] = ACTIONS(3866), - [anon_sym_inline] = ACTIONS(3866), - [anon_sym_thread_local] = ACTIONS(3866), - [anon_sym_const] = ACTIONS(3866), - [anon_sym_volatile] = ACTIONS(3866), - [anon_sym_restrict] = ACTIONS(3866), - [anon_sym__Atomic] = ACTIONS(3866), - [anon_sym_mutable] = ACTIONS(3866), - [anon_sym_constexpr] = ACTIONS(3866), - [anon_sym_constinit] = ACTIONS(3866), - [anon_sym_consteval] = ACTIONS(3866), - [anon_sym_COLON] = ACTIONS(3866), - [anon_sym_QMARK] = ACTIONS(3868), - [anon_sym_LT_EQ_GT] = ACTIONS(3868), - [anon_sym_or] = ACTIONS(3866), - [anon_sym_and] = ACTIONS(3866), - [anon_sym_bitor] = ACTIONS(3866), - [anon_sym_xor] = ACTIONS(3866), - [anon_sym_bitand] = ACTIONS(3866), - [anon_sym_not_eq] = ACTIONS(3866), - [anon_sym_DASH_DASH] = ACTIONS(3868), - [anon_sym_PLUS_PLUS] = ACTIONS(3868), - [anon_sym_DOT] = ACTIONS(3866), - [anon_sym_DASH_GT] = ACTIONS(3868), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3866), - [anon_sym_decltype] = ACTIONS(3866), - [anon_sym_final] = ACTIONS(3866), - [anon_sym_override] = ACTIONS(3866), - [anon_sym_virtual] = ACTIONS(3866), - [anon_sym_template] = ACTIONS(3866), - [anon_sym_operator] = ACTIONS(3866), - [anon_sym_try] = ACTIONS(3866), - [anon_sym_requires] = ACTIONS(3866), + [sym__expression] = STATE(3521), + [sym__expression_not_binary] = STATE(3565), + [sym_conditional_expression] = STATE(3565), + [sym_assignment_expression] = STATE(3565), + [sym_pointer_expression] = STATE(3220), + [sym_unary_expression] = STATE(3565), + [sym_binary_expression] = STATE(3565), + [sym_update_expression] = STATE(3565), + [sym_cast_expression] = STATE(3565), + [sym_sizeof_expression] = STATE(3565), + [sym_offsetof_expression] = STATE(3565), + [sym_generic_expression] = STATE(3565), + [sym_subscript_expression] = STATE(3220), + [sym_call_expression] = STATE(3220), + [sym_gnu_asm_expression] = STATE(3565), + [sym_field_expression] = STATE(3220), + [sym_compound_literal_expression] = STATE(3565), + [sym_parenthesized_expression] = STATE(3220), + [sym_char_literal] = STATE(3429), + [sym_concatenated_string] = STATE(3429), + [sym_string_literal] = STATE(2248), + [sym_null] = STATE(3565), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6847), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3565), + [sym_raw_string_literal] = STATE(2248), + [sym_co_await_expression] = STATE(3565), + [sym_new_expression] = STATE(3565), + [sym_delete_expression] = STATE(3565), + [sym_requires_clause] = STATE(3565), + [sym_requires_expression] = STATE(3565), + [sym_lambda_expression] = STATE(3565), + [sym_lambda_capture_specifier] = STATE(5204), + [sym_fold_expression] = STATE(3565), + [sym_parameter_pack_expansion] = STATE(3565), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5232), + [sym_qualified_identifier] = STATE(3220), + [sym_qualified_type_identifier] = STATE(6847), + [sym_user_defined_literal] = STATE(3565), + [sym_identifier] = ACTIONS(2095), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4386), + [anon_sym_LPAREN2] = ACTIONS(1841), + [anon_sym_BANG] = ACTIONS(1843), + [anon_sym_TILDE] = ACTIONS(1843), + [anon_sym_DASH] = ACTIONS(1845), + [anon_sym_PLUS] = ACTIONS(1845), + [anon_sym_STAR] = ACTIONS(1847), + [anon_sym_AMP] = ACTIONS(1847), + [anon_sym_COLON_COLON] = ACTIONS(1849), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1999), + [anon_sym_not] = ACTIONS(1845), + [anon_sym_compl] = ACTIONS(1845), + [anon_sym_DASH_DASH] = ACTIONS(1861), + [anon_sym_PLUS_PLUS] = ACTIONS(1861), + [anon_sym_sizeof] = ACTIONS(1863), + [anon_sym_offsetof] = ACTIONS(1865), + [anon_sym__Generic] = ACTIONS(1867), + [anon_sym_asm] = ACTIONS(1869), + [anon_sym___asm__] = ACTIONS(1869), + [sym_number_literal] = ACTIONS(1871), + [anon_sym_L_SQUOTE] = ACTIONS(1873), + [anon_sym_u_SQUOTE] = ACTIONS(1873), + [anon_sym_U_SQUOTE] = ACTIONS(1873), + [anon_sym_u8_SQUOTE] = ACTIONS(1873), + [anon_sym_SQUOTE] = ACTIONS(1873), + [anon_sym_L_DQUOTE] = ACTIONS(1875), + [anon_sym_u_DQUOTE] = ACTIONS(1875), + [anon_sym_U_DQUOTE] = ACTIONS(1875), + [anon_sym_u8_DQUOTE] = ACTIONS(1875), + [anon_sym_DQUOTE] = ACTIONS(1875), + [sym_true] = ACTIONS(1877), + [sym_false] = ACTIONS(1877), + [anon_sym_NULL] = ACTIONS(1879), + [anon_sym_nullptr] = ACTIONS(1879), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(1883), + [anon_sym_R_DQUOTE] = ACTIONS(1885), + [anon_sym_LR_DQUOTE] = ACTIONS(1885), + [anon_sym_uR_DQUOTE] = ACTIONS(1885), + [anon_sym_UR_DQUOTE] = ACTIONS(1885), + [anon_sym_u8R_DQUOTE] = ACTIONS(1885), + [anon_sym_co_await] = ACTIONS(1887), + [anon_sym_new] = ACTIONS(1889), + [anon_sym_requires] = ACTIONS(1891), + [sym_this] = ACTIONS(1877), }, [1811] = { - [sym_identifier] = ACTIONS(3858), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3860), - [anon_sym_COMMA] = ACTIONS(3860), - [anon_sym_RPAREN] = ACTIONS(3860), - [anon_sym_LPAREN2] = ACTIONS(3860), - [anon_sym_TILDE] = ACTIONS(3860), - [anon_sym_DASH] = ACTIONS(3858), - [anon_sym_PLUS] = ACTIONS(3858), - [anon_sym_STAR] = ACTIONS(3860), - [anon_sym_SLASH] = ACTIONS(3858), - [anon_sym_PERCENT] = ACTIONS(3860), - [anon_sym_PIPE_PIPE] = ACTIONS(3860), - [anon_sym_AMP_AMP] = ACTIONS(3860), - [anon_sym_PIPE] = ACTIONS(3858), - [anon_sym_CARET] = ACTIONS(3860), - [anon_sym_AMP] = ACTIONS(3858), - [anon_sym_EQ_EQ] = ACTIONS(3860), - [anon_sym_BANG_EQ] = ACTIONS(3860), - [anon_sym_GT] = ACTIONS(3858), - [anon_sym_GT_EQ] = ACTIONS(3860), - [anon_sym_LT_EQ] = ACTIONS(3858), - [anon_sym_LT] = ACTIONS(3858), - [anon_sym_LT_LT] = ACTIONS(3860), - [anon_sym_GT_GT] = ACTIONS(3860), - [anon_sym_SEMI] = ACTIONS(3860), - [anon_sym_extern] = ACTIONS(3858), - [anon_sym___attribute__] = ACTIONS(3858), - [anon_sym_COLON_COLON] = ACTIONS(3860), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3860), - [anon_sym___declspec] = ACTIONS(3858), - [anon_sym___based] = ACTIONS(3858), - [anon_sym_LBRACE] = ACTIONS(3860), - [anon_sym_RBRACE] = ACTIONS(3860), - [anon_sym_LBRACK] = ACTIONS(3858), - [anon_sym_EQ] = ACTIONS(3858), - [anon_sym_static] = ACTIONS(3858), - [anon_sym_register] = ACTIONS(3858), - [anon_sym_inline] = ACTIONS(3858), - [anon_sym_thread_local] = ACTIONS(3858), - [anon_sym_const] = ACTIONS(3858), - [anon_sym_volatile] = ACTIONS(3858), - [anon_sym_restrict] = ACTIONS(3858), - [anon_sym__Atomic] = ACTIONS(3858), - [anon_sym_mutable] = ACTIONS(3858), - [anon_sym_constexpr] = ACTIONS(3858), - [anon_sym_constinit] = ACTIONS(3858), - [anon_sym_consteval] = ACTIONS(3858), - [anon_sym_COLON] = ACTIONS(3858), - [anon_sym_QMARK] = ACTIONS(3860), - [anon_sym_LT_EQ_GT] = ACTIONS(3860), - [anon_sym_or] = ACTIONS(3858), - [anon_sym_and] = ACTIONS(3858), - [anon_sym_bitor] = ACTIONS(3858), - [anon_sym_xor] = ACTIONS(3858), - [anon_sym_bitand] = ACTIONS(3858), - [anon_sym_not_eq] = ACTIONS(3858), - [anon_sym_DASH_DASH] = ACTIONS(3860), - [anon_sym_PLUS_PLUS] = ACTIONS(3860), - [anon_sym_DOT] = ACTIONS(3858), - [anon_sym_DASH_GT] = ACTIONS(3860), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3858), - [anon_sym_decltype] = ACTIONS(3858), - [anon_sym_final] = ACTIONS(3858), - [anon_sym_override] = ACTIONS(3858), - [anon_sym_virtual] = ACTIONS(3858), - [anon_sym_template] = ACTIONS(3858), - [anon_sym_operator] = ACTIONS(3858), - [anon_sym_try] = ACTIONS(3858), - [anon_sym_requires] = ACTIONS(3858), + [sym__expression] = STATE(3522), + [sym__expression_not_binary] = STATE(3565), + [sym_conditional_expression] = STATE(3565), + [sym_assignment_expression] = STATE(3565), + [sym_pointer_expression] = STATE(3220), + [sym_unary_expression] = STATE(3565), + [sym_binary_expression] = STATE(3565), + [sym_update_expression] = STATE(3565), + [sym_cast_expression] = STATE(3565), + [sym_sizeof_expression] = STATE(3565), + [sym_offsetof_expression] = STATE(3565), + [sym_generic_expression] = STATE(3565), + [sym_subscript_expression] = STATE(3220), + [sym_call_expression] = STATE(3220), + [sym_gnu_asm_expression] = STATE(3565), + [sym_field_expression] = STATE(3220), + [sym_compound_literal_expression] = STATE(3565), + [sym_parenthesized_expression] = STATE(3220), + [sym_char_literal] = STATE(3429), + [sym_concatenated_string] = STATE(3429), + [sym_string_literal] = STATE(2248), + [sym_null] = STATE(3565), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6847), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3565), + [sym_raw_string_literal] = STATE(2248), + [sym_co_await_expression] = STATE(3565), + [sym_new_expression] = STATE(3565), + [sym_delete_expression] = STATE(3565), + [sym_requires_clause] = STATE(3565), + [sym_requires_expression] = STATE(3565), + [sym_lambda_expression] = STATE(3565), + [sym_lambda_capture_specifier] = STATE(5204), + [sym_fold_expression] = STATE(3565), + [sym_parameter_pack_expansion] = STATE(3565), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5232), + [sym_qualified_identifier] = STATE(3220), + [sym_qualified_type_identifier] = STATE(6847), + [sym_user_defined_literal] = STATE(3565), + [sym_identifier] = ACTIONS(2095), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4389), + [anon_sym_LPAREN2] = ACTIONS(1841), + [anon_sym_BANG] = ACTIONS(1843), + [anon_sym_TILDE] = ACTIONS(1843), + [anon_sym_DASH] = ACTIONS(1845), + [anon_sym_PLUS] = ACTIONS(1845), + [anon_sym_STAR] = ACTIONS(1847), + [anon_sym_AMP] = ACTIONS(1847), + [anon_sym_COLON_COLON] = ACTIONS(1849), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1999), + [anon_sym_not] = ACTIONS(1845), + [anon_sym_compl] = ACTIONS(1845), + [anon_sym_DASH_DASH] = ACTIONS(1861), + [anon_sym_PLUS_PLUS] = ACTIONS(1861), + [anon_sym_sizeof] = ACTIONS(1863), + [anon_sym_offsetof] = ACTIONS(1865), + [anon_sym__Generic] = ACTIONS(1867), + [anon_sym_asm] = ACTIONS(1869), + [anon_sym___asm__] = ACTIONS(1869), + [sym_number_literal] = ACTIONS(1871), + [anon_sym_L_SQUOTE] = ACTIONS(1873), + [anon_sym_u_SQUOTE] = ACTIONS(1873), + [anon_sym_U_SQUOTE] = ACTIONS(1873), + [anon_sym_u8_SQUOTE] = ACTIONS(1873), + [anon_sym_SQUOTE] = ACTIONS(1873), + [anon_sym_L_DQUOTE] = ACTIONS(1875), + [anon_sym_u_DQUOTE] = ACTIONS(1875), + [anon_sym_U_DQUOTE] = ACTIONS(1875), + [anon_sym_u8_DQUOTE] = ACTIONS(1875), + [anon_sym_DQUOTE] = ACTIONS(1875), + [sym_true] = ACTIONS(1877), + [sym_false] = ACTIONS(1877), + [anon_sym_NULL] = ACTIONS(1879), + [anon_sym_nullptr] = ACTIONS(1879), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(1883), + [anon_sym_R_DQUOTE] = ACTIONS(1885), + [anon_sym_LR_DQUOTE] = ACTIONS(1885), + [anon_sym_uR_DQUOTE] = ACTIONS(1885), + [anon_sym_UR_DQUOTE] = ACTIONS(1885), + [anon_sym_u8R_DQUOTE] = ACTIONS(1885), + [anon_sym_co_await] = ACTIONS(1887), + [anon_sym_new] = ACTIONS(1889), + [anon_sym_requires] = ACTIONS(1891), + [sym_this] = ACTIONS(1877), }, [1812] = { - [sym_identifier] = ACTIONS(3862), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3864), - [anon_sym_COMMA] = ACTIONS(3864), - [anon_sym_RPAREN] = ACTIONS(3864), - [anon_sym_LPAREN2] = ACTIONS(3864), - [anon_sym_TILDE] = ACTIONS(3864), - [anon_sym_DASH] = ACTIONS(3862), - [anon_sym_PLUS] = ACTIONS(3862), - [anon_sym_STAR] = ACTIONS(3864), - [anon_sym_SLASH] = ACTIONS(3862), - [anon_sym_PERCENT] = ACTIONS(3864), - [anon_sym_PIPE_PIPE] = ACTIONS(3864), - [anon_sym_AMP_AMP] = ACTIONS(3864), - [anon_sym_PIPE] = ACTIONS(3862), - [anon_sym_CARET] = ACTIONS(3864), - [anon_sym_AMP] = ACTIONS(3862), - [anon_sym_EQ_EQ] = ACTIONS(3864), - [anon_sym_BANG_EQ] = ACTIONS(3864), - [anon_sym_GT] = ACTIONS(3862), - [anon_sym_GT_EQ] = ACTIONS(3864), - [anon_sym_LT_EQ] = ACTIONS(3862), - [anon_sym_LT] = ACTIONS(3862), - [anon_sym_LT_LT] = ACTIONS(3864), - [anon_sym_GT_GT] = ACTIONS(3864), - [anon_sym_SEMI] = ACTIONS(3864), - [anon_sym_extern] = ACTIONS(3862), - [anon_sym___attribute__] = ACTIONS(3862), - [anon_sym_COLON_COLON] = ACTIONS(3864), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3864), - [anon_sym___declspec] = ACTIONS(3862), - [anon_sym___based] = ACTIONS(3862), - [anon_sym_LBRACE] = ACTIONS(3864), - [anon_sym_RBRACE] = ACTIONS(3864), - [anon_sym_LBRACK] = ACTIONS(3862), - [anon_sym_EQ] = ACTIONS(3862), - [anon_sym_static] = ACTIONS(3862), - [anon_sym_register] = ACTIONS(3862), - [anon_sym_inline] = ACTIONS(3862), - [anon_sym_thread_local] = ACTIONS(3862), - [anon_sym_const] = ACTIONS(3862), - [anon_sym_volatile] = ACTIONS(3862), - [anon_sym_restrict] = ACTIONS(3862), - [anon_sym__Atomic] = ACTIONS(3862), - [anon_sym_mutable] = ACTIONS(3862), - [anon_sym_constexpr] = ACTIONS(3862), - [anon_sym_constinit] = ACTIONS(3862), - [anon_sym_consteval] = ACTIONS(3862), - [anon_sym_COLON] = ACTIONS(3862), - [anon_sym_QMARK] = ACTIONS(3864), - [anon_sym_LT_EQ_GT] = ACTIONS(3864), - [anon_sym_or] = ACTIONS(3862), - [anon_sym_and] = ACTIONS(3862), - [anon_sym_bitor] = ACTIONS(3862), - [anon_sym_xor] = ACTIONS(3862), - [anon_sym_bitand] = ACTIONS(3862), - [anon_sym_not_eq] = ACTIONS(3862), - [anon_sym_DASH_DASH] = ACTIONS(3864), - [anon_sym_PLUS_PLUS] = ACTIONS(3864), - [anon_sym_DOT] = ACTIONS(3862), - [anon_sym_DASH_GT] = ACTIONS(3864), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3862), - [anon_sym_decltype] = ACTIONS(3862), - [anon_sym_final] = ACTIONS(3862), - [anon_sym_override] = ACTIONS(3862), - [anon_sym_virtual] = ACTIONS(3862), - [anon_sym_template] = ACTIONS(3862), - [anon_sym_operator] = ACTIONS(3862), - [anon_sym_try] = ACTIONS(3862), - [anon_sym_requires] = ACTIONS(3862), + [sym__expression] = STATE(4015), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4249), + [anon_sym_LPAREN2] = ACTIONS(4392), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1813] = { - [sym_identifier] = ACTIONS(3902), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3904), - [anon_sym_COMMA] = ACTIONS(3904), - [anon_sym_RPAREN] = ACTIONS(3904), - [anon_sym_LPAREN2] = ACTIONS(3904), - [anon_sym_TILDE] = ACTIONS(3904), - [anon_sym_DASH] = ACTIONS(3902), - [anon_sym_PLUS] = ACTIONS(3902), - [anon_sym_STAR] = ACTIONS(3904), - [anon_sym_SLASH] = ACTIONS(3902), - [anon_sym_PERCENT] = ACTIONS(3904), - [anon_sym_PIPE_PIPE] = ACTIONS(3904), - [anon_sym_AMP_AMP] = ACTIONS(3904), - [anon_sym_PIPE] = ACTIONS(3902), - [anon_sym_CARET] = ACTIONS(3904), - [anon_sym_AMP] = ACTIONS(3902), - [anon_sym_EQ_EQ] = ACTIONS(3904), - [anon_sym_BANG_EQ] = ACTIONS(3904), - [anon_sym_GT] = ACTIONS(3902), - [anon_sym_GT_EQ] = ACTIONS(3904), - [anon_sym_LT_EQ] = ACTIONS(3902), - [anon_sym_LT] = ACTIONS(3902), - [anon_sym_LT_LT] = ACTIONS(3904), - [anon_sym_GT_GT] = ACTIONS(3904), - [anon_sym_SEMI] = ACTIONS(3904), - [anon_sym_extern] = ACTIONS(3902), - [anon_sym___attribute__] = ACTIONS(3902), - [anon_sym_COLON_COLON] = ACTIONS(3904), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3904), - [anon_sym___declspec] = ACTIONS(3902), - [anon_sym___based] = ACTIONS(3902), - [anon_sym_LBRACE] = ACTIONS(3904), - [anon_sym_RBRACE] = ACTIONS(3904), - [anon_sym_LBRACK] = ACTIONS(3902), - [anon_sym_EQ] = ACTIONS(3902), - [anon_sym_static] = ACTIONS(3902), - [anon_sym_register] = ACTIONS(3902), - [anon_sym_inline] = ACTIONS(3902), - [anon_sym_thread_local] = ACTIONS(3902), - [anon_sym_const] = ACTIONS(3902), - [anon_sym_volatile] = ACTIONS(3902), - [anon_sym_restrict] = ACTIONS(3902), - [anon_sym__Atomic] = ACTIONS(3902), - [anon_sym_mutable] = ACTIONS(3902), - [anon_sym_constexpr] = ACTIONS(3902), - [anon_sym_constinit] = ACTIONS(3902), - [anon_sym_consteval] = ACTIONS(3902), - [anon_sym_COLON] = ACTIONS(3902), - [anon_sym_QMARK] = ACTIONS(3904), - [anon_sym_LT_EQ_GT] = ACTIONS(3904), - [anon_sym_or] = ACTIONS(3902), - [anon_sym_and] = ACTIONS(3902), - [anon_sym_bitor] = ACTIONS(3902), - [anon_sym_xor] = ACTIONS(3902), - [anon_sym_bitand] = ACTIONS(3902), - [anon_sym_not_eq] = ACTIONS(3902), - [anon_sym_DASH_DASH] = ACTIONS(3904), - [anon_sym_PLUS_PLUS] = ACTIONS(3904), - [anon_sym_DOT] = ACTIONS(3902), - [anon_sym_DASH_GT] = ACTIONS(3904), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3902), - [anon_sym_decltype] = ACTIONS(3902), - [anon_sym_final] = ACTIONS(3902), - [anon_sym_override] = ACTIONS(3902), - [anon_sym_virtual] = ACTIONS(3902), - [anon_sym_template] = ACTIONS(3902), - [anon_sym_operator] = ACTIONS(3902), - [anon_sym_try] = ACTIONS(3902), - [anon_sym_requires] = ACTIONS(3902), + [sym__expression] = STATE(3522), + [sym__expression_not_binary] = STATE(3565), + [sym_conditional_expression] = STATE(3565), + [sym_assignment_expression] = STATE(3565), + [sym_pointer_expression] = STATE(3220), + [sym_unary_expression] = STATE(3565), + [sym_binary_expression] = STATE(3565), + [sym_update_expression] = STATE(3565), + [sym_cast_expression] = STATE(3565), + [sym_sizeof_expression] = STATE(3565), + [sym_offsetof_expression] = STATE(3565), + [sym_generic_expression] = STATE(3565), + [sym_subscript_expression] = STATE(3220), + [sym_call_expression] = STATE(3220), + [sym_gnu_asm_expression] = STATE(3565), + [sym_field_expression] = STATE(3220), + [sym_compound_literal_expression] = STATE(3565), + [sym_parenthesized_expression] = STATE(3220), + [sym_char_literal] = STATE(3429), + [sym_concatenated_string] = STATE(3429), + [sym_string_literal] = STATE(2248), + [sym_null] = STATE(3565), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6847), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3565), + [sym_raw_string_literal] = STATE(2248), + [sym_co_await_expression] = STATE(3565), + [sym_new_expression] = STATE(3565), + [sym_delete_expression] = STATE(3565), + [sym_requires_clause] = STATE(3565), + [sym_requires_expression] = STATE(3565), + [sym_lambda_expression] = STATE(3565), + [sym_lambda_capture_specifier] = STATE(5204), + [sym_fold_expression] = STATE(3565), + [sym_parameter_pack_expansion] = STATE(3565), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5232), + [sym_qualified_identifier] = STATE(3220), + [sym_qualified_type_identifier] = STATE(6847), + [sym_user_defined_literal] = STATE(3565), + [sym_identifier] = ACTIONS(2095), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4394), + [anon_sym_LPAREN2] = ACTIONS(1841), + [anon_sym_BANG] = ACTIONS(1843), + [anon_sym_TILDE] = ACTIONS(1843), + [anon_sym_DASH] = ACTIONS(1845), + [anon_sym_PLUS] = ACTIONS(1845), + [anon_sym_STAR] = ACTIONS(1847), + [anon_sym_AMP] = ACTIONS(1847), + [anon_sym_COLON_COLON] = ACTIONS(1849), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1999), + [anon_sym_not] = ACTIONS(1845), + [anon_sym_compl] = ACTIONS(1845), + [anon_sym_DASH_DASH] = ACTIONS(1861), + [anon_sym_PLUS_PLUS] = ACTIONS(1861), + [anon_sym_sizeof] = ACTIONS(1863), + [anon_sym_offsetof] = ACTIONS(1865), + [anon_sym__Generic] = ACTIONS(1867), + [anon_sym_asm] = ACTIONS(1869), + [anon_sym___asm__] = ACTIONS(1869), + [sym_number_literal] = ACTIONS(1871), + [anon_sym_L_SQUOTE] = ACTIONS(1873), + [anon_sym_u_SQUOTE] = ACTIONS(1873), + [anon_sym_U_SQUOTE] = ACTIONS(1873), + [anon_sym_u8_SQUOTE] = ACTIONS(1873), + [anon_sym_SQUOTE] = ACTIONS(1873), + [anon_sym_L_DQUOTE] = ACTIONS(1875), + [anon_sym_u_DQUOTE] = ACTIONS(1875), + [anon_sym_U_DQUOTE] = ACTIONS(1875), + [anon_sym_u8_DQUOTE] = ACTIONS(1875), + [anon_sym_DQUOTE] = ACTIONS(1875), + [sym_true] = ACTIONS(1877), + [sym_false] = ACTIONS(1877), + [anon_sym_NULL] = ACTIONS(1879), + [anon_sym_nullptr] = ACTIONS(1879), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(1883), + [anon_sym_R_DQUOTE] = ACTIONS(1885), + [anon_sym_LR_DQUOTE] = ACTIONS(1885), + [anon_sym_uR_DQUOTE] = ACTIONS(1885), + [anon_sym_UR_DQUOTE] = ACTIONS(1885), + [anon_sym_u8R_DQUOTE] = ACTIONS(1885), + [anon_sym_co_await] = ACTIONS(1887), + [anon_sym_new] = ACTIONS(1889), + [anon_sym_requires] = ACTIONS(1891), + [sym_this] = ACTIONS(1877), }, [1814] = { - [sym_identifier] = ACTIONS(3884), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3886), - [anon_sym_COMMA] = ACTIONS(3886), - [anon_sym_RPAREN] = ACTIONS(3886), - [anon_sym_LPAREN2] = ACTIONS(3886), - [anon_sym_TILDE] = ACTIONS(3886), - [anon_sym_DASH] = ACTIONS(3884), - [anon_sym_PLUS] = ACTIONS(3884), - [anon_sym_STAR] = ACTIONS(3886), - [anon_sym_SLASH] = ACTIONS(3884), - [anon_sym_PERCENT] = ACTIONS(3886), - [anon_sym_PIPE_PIPE] = ACTIONS(3886), - [anon_sym_AMP_AMP] = ACTIONS(3886), - [anon_sym_PIPE] = ACTIONS(3884), - [anon_sym_CARET] = ACTIONS(3886), - [anon_sym_AMP] = ACTIONS(3884), - [anon_sym_EQ_EQ] = ACTIONS(3886), - [anon_sym_BANG_EQ] = ACTIONS(3886), - [anon_sym_GT] = ACTIONS(3884), - [anon_sym_GT_EQ] = ACTIONS(3886), - [anon_sym_LT_EQ] = ACTIONS(3884), - [anon_sym_LT] = ACTIONS(3884), - [anon_sym_LT_LT] = ACTIONS(3886), - [anon_sym_GT_GT] = ACTIONS(3886), - [anon_sym_SEMI] = ACTIONS(3886), - [anon_sym_extern] = ACTIONS(3884), - [anon_sym___attribute__] = ACTIONS(3884), - [anon_sym_COLON_COLON] = ACTIONS(3886), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3886), - [anon_sym___declspec] = ACTIONS(3884), - [anon_sym___based] = ACTIONS(3884), - [anon_sym_LBRACE] = ACTIONS(3886), - [anon_sym_RBRACE] = ACTIONS(3886), - [anon_sym_LBRACK] = ACTIONS(3884), - [anon_sym_EQ] = ACTIONS(3884), - [anon_sym_static] = ACTIONS(3884), - [anon_sym_register] = ACTIONS(3884), - [anon_sym_inline] = ACTIONS(3884), - [anon_sym_thread_local] = ACTIONS(3884), - [anon_sym_const] = ACTIONS(3884), - [anon_sym_volatile] = ACTIONS(3884), - [anon_sym_restrict] = ACTIONS(3884), - [anon_sym__Atomic] = ACTIONS(3884), - [anon_sym_mutable] = ACTIONS(3884), - [anon_sym_constexpr] = ACTIONS(3884), - [anon_sym_constinit] = ACTIONS(3884), - [anon_sym_consteval] = ACTIONS(3884), - [anon_sym_COLON] = ACTIONS(3884), - [anon_sym_QMARK] = ACTIONS(3886), - [anon_sym_LT_EQ_GT] = ACTIONS(3886), - [anon_sym_or] = ACTIONS(3884), - [anon_sym_and] = ACTIONS(3884), - [anon_sym_bitor] = ACTIONS(3884), - [anon_sym_xor] = ACTIONS(3884), - [anon_sym_bitand] = ACTIONS(3884), - [anon_sym_not_eq] = ACTIONS(3884), - [anon_sym_DASH_DASH] = ACTIONS(3886), - [anon_sym_PLUS_PLUS] = ACTIONS(3886), - [anon_sym_DOT] = ACTIONS(3884), - [anon_sym_DASH_GT] = ACTIONS(3886), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3884), - [anon_sym_decltype] = ACTIONS(3884), - [anon_sym_final] = ACTIONS(3884), - [anon_sym_override] = ACTIONS(3884), - [anon_sym_virtual] = ACTIONS(3884), - [anon_sym_template] = ACTIONS(3884), - [anon_sym_operator] = ACTIONS(3884), - [anon_sym_try] = ACTIONS(3884), - [anon_sym_requires] = ACTIONS(3884), + [sym__expression] = STATE(4434), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(4397), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1815] = { - [sym_identifier] = ACTIONS(3896), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3898), - [anon_sym_COMMA] = ACTIONS(3898), - [anon_sym_RPAREN] = ACTIONS(3898), - [anon_sym_LPAREN2] = ACTIONS(3898), - [anon_sym_TILDE] = ACTIONS(3898), - [anon_sym_DASH] = ACTIONS(3896), - [anon_sym_PLUS] = ACTIONS(3896), - [anon_sym_STAR] = ACTIONS(3898), - [anon_sym_SLASH] = ACTIONS(3896), - [anon_sym_PERCENT] = ACTIONS(3898), - [anon_sym_PIPE_PIPE] = ACTIONS(3898), - [anon_sym_AMP_AMP] = ACTIONS(3898), - [anon_sym_PIPE] = ACTIONS(3896), - [anon_sym_CARET] = ACTIONS(3898), - [anon_sym_AMP] = ACTIONS(3896), - [anon_sym_EQ_EQ] = ACTIONS(3898), - [anon_sym_BANG_EQ] = ACTIONS(3898), - [anon_sym_GT] = ACTIONS(3896), - [anon_sym_GT_EQ] = ACTIONS(3898), - [anon_sym_LT_EQ] = ACTIONS(3896), - [anon_sym_LT] = ACTIONS(3896), - [anon_sym_LT_LT] = ACTIONS(3898), - [anon_sym_GT_GT] = ACTIONS(3898), - [anon_sym_SEMI] = ACTIONS(3898), - [anon_sym_extern] = ACTIONS(3896), - [anon_sym___attribute__] = ACTIONS(3896), - [anon_sym_COLON_COLON] = ACTIONS(3898), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3898), - [anon_sym___declspec] = ACTIONS(3896), - [anon_sym___based] = ACTIONS(3896), - [anon_sym_LBRACE] = ACTIONS(3898), - [anon_sym_RBRACE] = ACTIONS(3898), - [anon_sym_LBRACK] = ACTIONS(3896), - [anon_sym_EQ] = ACTIONS(3896), - [anon_sym_static] = ACTIONS(3896), - [anon_sym_register] = ACTIONS(3896), - [anon_sym_inline] = ACTIONS(3896), - [anon_sym_thread_local] = ACTIONS(3896), - [anon_sym_const] = ACTIONS(3896), - [anon_sym_volatile] = ACTIONS(3896), - [anon_sym_restrict] = ACTIONS(3896), - [anon_sym__Atomic] = ACTIONS(3896), - [anon_sym_mutable] = ACTIONS(3896), - [anon_sym_constexpr] = ACTIONS(3896), - [anon_sym_constinit] = ACTIONS(3896), - [anon_sym_consteval] = ACTIONS(3896), - [anon_sym_COLON] = ACTIONS(3896), - [anon_sym_QMARK] = ACTIONS(3898), - [anon_sym_LT_EQ_GT] = ACTIONS(3898), - [anon_sym_or] = ACTIONS(3896), - [anon_sym_and] = ACTIONS(3896), - [anon_sym_bitor] = ACTIONS(3896), - [anon_sym_xor] = ACTIONS(3896), - [anon_sym_bitand] = ACTIONS(3896), - [anon_sym_not_eq] = ACTIONS(3896), - [anon_sym_DASH_DASH] = ACTIONS(3898), - [anon_sym_PLUS_PLUS] = ACTIONS(3898), - [anon_sym_DOT] = ACTIONS(3896), - [anon_sym_DASH_GT] = ACTIONS(3898), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3896), - [anon_sym_decltype] = ACTIONS(3896), - [anon_sym_final] = ACTIONS(3896), - [anon_sym_override] = ACTIONS(3896), - [anon_sym_virtual] = ACTIONS(3896), - [anon_sym_template] = ACTIONS(3896), - [anon_sym_operator] = ACTIONS(3896), - [anon_sym_try] = ACTIONS(3896), - [anon_sym_requires] = ACTIONS(3896), + [sym__expression] = STATE(4433), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(4399), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1816] = { - [sym_identifier] = ACTIONS(3892), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3894), - [anon_sym_COMMA] = ACTIONS(3894), - [anon_sym_RPAREN] = ACTIONS(3894), - [anon_sym_LPAREN2] = ACTIONS(3894), - [anon_sym_TILDE] = ACTIONS(3894), - [anon_sym_DASH] = ACTIONS(3892), - [anon_sym_PLUS] = ACTIONS(3892), - [anon_sym_STAR] = ACTIONS(3894), - [anon_sym_SLASH] = ACTIONS(3892), - [anon_sym_PERCENT] = ACTIONS(3894), - [anon_sym_PIPE_PIPE] = ACTIONS(3894), - [anon_sym_AMP_AMP] = ACTIONS(3894), - [anon_sym_PIPE] = ACTIONS(3892), - [anon_sym_CARET] = ACTIONS(3894), - [anon_sym_AMP] = ACTIONS(3892), - [anon_sym_EQ_EQ] = ACTIONS(3894), - [anon_sym_BANG_EQ] = ACTIONS(3894), - [anon_sym_GT] = ACTIONS(3892), - [anon_sym_GT_EQ] = ACTIONS(3894), - [anon_sym_LT_EQ] = ACTIONS(3892), - [anon_sym_LT] = ACTIONS(3892), - [anon_sym_LT_LT] = ACTIONS(3894), - [anon_sym_GT_GT] = ACTIONS(3894), - [anon_sym_SEMI] = ACTIONS(3894), - [anon_sym_extern] = ACTIONS(3892), - [anon_sym___attribute__] = ACTIONS(3892), - [anon_sym_COLON_COLON] = ACTIONS(3894), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3894), - [anon_sym___declspec] = ACTIONS(3892), - [anon_sym___based] = ACTIONS(3892), - [anon_sym_LBRACE] = ACTIONS(3894), - [anon_sym_RBRACE] = ACTIONS(3894), - [anon_sym_LBRACK] = ACTIONS(3892), - [anon_sym_EQ] = ACTIONS(3892), - [anon_sym_static] = ACTIONS(3892), - [anon_sym_register] = ACTIONS(3892), - [anon_sym_inline] = ACTIONS(3892), - [anon_sym_thread_local] = ACTIONS(3892), - [anon_sym_const] = ACTIONS(3892), - [anon_sym_volatile] = ACTIONS(3892), - [anon_sym_restrict] = ACTIONS(3892), - [anon_sym__Atomic] = ACTIONS(3892), - [anon_sym_mutable] = ACTIONS(3892), - [anon_sym_constexpr] = ACTIONS(3892), - [anon_sym_constinit] = ACTIONS(3892), - [anon_sym_consteval] = ACTIONS(3892), - [anon_sym_COLON] = ACTIONS(3892), - [anon_sym_QMARK] = ACTIONS(3894), - [anon_sym_LT_EQ_GT] = ACTIONS(3894), - [anon_sym_or] = ACTIONS(3892), - [anon_sym_and] = ACTIONS(3892), - [anon_sym_bitor] = ACTIONS(3892), - [anon_sym_xor] = ACTIONS(3892), - [anon_sym_bitand] = ACTIONS(3892), - [anon_sym_not_eq] = ACTIONS(3892), - [anon_sym_DASH_DASH] = ACTIONS(3894), - [anon_sym_PLUS_PLUS] = ACTIONS(3894), - [anon_sym_DOT] = ACTIONS(3892), - [anon_sym_DASH_GT] = ACTIONS(3894), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3892), - [anon_sym_decltype] = ACTIONS(3892), - [anon_sym_final] = ACTIONS(3892), - [anon_sym_override] = ACTIONS(3892), - [anon_sym_virtual] = ACTIONS(3892), - [anon_sym_template] = ACTIONS(3892), - [anon_sym_operator] = ACTIONS(3892), - [anon_sym_try] = ACTIONS(3892), - [anon_sym_requires] = ACTIONS(3892), + [sym__expression] = STATE(3081), + [sym__expression_not_binary] = STATE(3318), + [sym_conditional_expression] = STATE(3318), + [sym_assignment_expression] = STATE(3318), + [sym_pointer_expression] = STATE(3318), + [sym_unary_expression] = STATE(3318), + [sym_binary_expression] = STATE(3318), + [sym_update_expression] = STATE(3318), + [sym_cast_expression] = STATE(3318), + [sym_sizeof_expression] = STATE(3318), + [sym_offsetof_expression] = STATE(3318), + [sym_generic_expression] = STATE(3318), + [sym_subscript_expression] = STATE(3318), + [sym_call_expression] = STATE(3318), + [sym_gnu_asm_expression] = STATE(3318), + [sym_field_expression] = STATE(3318), + [sym_compound_literal_expression] = STATE(3318), + [sym_parenthesized_expression] = STATE(3318), + [sym_char_literal] = STATE(3076), + [sym_concatenated_string] = STATE(3076), + [sym_string_literal] = STATE(2202), + [sym_null] = STATE(3318), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6739), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3318), + [sym_raw_string_literal] = STATE(2202), + [sym_co_await_expression] = STATE(3318), + [sym_new_expression] = STATE(3318), + [sym_delete_expression] = STATE(3318), + [sym_requires_clause] = STATE(3318), + [sym_requires_expression] = STATE(3318), + [sym_lambda_expression] = STATE(3318), + [sym_lambda_capture_specifier] = STATE(5187), + [sym_fold_expression] = STATE(3318), + [sym_parameter_pack_expansion] = STATE(3318), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5232), + [sym_qualified_identifier] = STATE(3318), + [sym_qualified_type_identifier] = STATE(6739), + [sym_user_defined_literal] = STATE(3318), + [sym_identifier] = ACTIONS(1985), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4401), + [anon_sym_LPAREN2] = ACTIONS(4403), + [anon_sym_BANG] = ACTIONS(1991), + [anon_sym_TILDE] = ACTIONS(1991), + [anon_sym_DASH] = ACTIONS(1989), + [anon_sym_PLUS] = ACTIONS(1989), + [anon_sym_STAR] = ACTIONS(1847), + [anon_sym_AMP] = ACTIONS(1847), + [anon_sym_COLON_COLON] = ACTIONS(1995), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1999), + [anon_sym_not] = ACTIONS(1989), + [anon_sym_compl] = ACTIONS(1989), + [anon_sym_DASH_DASH] = ACTIONS(2001), + [anon_sym_PLUS_PLUS] = ACTIONS(2001), + [anon_sym_sizeof] = ACTIONS(2003), + [anon_sym_offsetof] = ACTIONS(2005), + [anon_sym__Generic] = ACTIONS(2007), + [anon_sym_asm] = ACTIONS(2009), + [anon_sym___asm__] = ACTIONS(2009), + [sym_number_literal] = ACTIONS(2011), + [anon_sym_L_SQUOTE] = ACTIONS(2013), + [anon_sym_u_SQUOTE] = ACTIONS(2013), + [anon_sym_U_SQUOTE] = ACTIONS(2013), + [anon_sym_u8_SQUOTE] = ACTIONS(2013), + [anon_sym_SQUOTE] = ACTIONS(2013), + [anon_sym_L_DQUOTE] = ACTIONS(2015), + [anon_sym_u_DQUOTE] = ACTIONS(2015), + [anon_sym_U_DQUOTE] = ACTIONS(2015), + [anon_sym_u8_DQUOTE] = ACTIONS(2015), + [anon_sym_DQUOTE] = ACTIONS(2015), + [sym_true] = ACTIONS(2017), + [sym_false] = ACTIONS(2017), + [anon_sym_NULL] = ACTIONS(2019), + [anon_sym_nullptr] = ACTIONS(2019), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(2021), + [anon_sym_R_DQUOTE] = ACTIONS(2023), + [anon_sym_LR_DQUOTE] = ACTIONS(2023), + [anon_sym_uR_DQUOTE] = ACTIONS(2023), + [anon_sym_UR_DQUOTE] = ACTIONS(2023), + [anon_sym_u8R_DQUOTE] = ACTIONS(2023), + [anon_sym_co_await] = ACTIONS(2025), + [anon_sym_new] = ACTIONS(2027), + [anon_sym_requires] = ACTIONS(2029), + [sym_this] = ACTIONS(2017), }, [1817] = { - [sym_string_literal] = STATE(1817), - [sym_raw_string_literal] = STATE(1817), - [aux_sym_concatenated_string_repeat1] = STATE(1817), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3920), - [anon_sym_COMMA] = ACTIONS(3920), - [anon_sym_RPAREN] = ACTIONS(3920), - [anon_sym_LPAREN2] = ACTIONS(3920), - [anon_sym_DASH] = ACTIONS(3922), - [anon_sym_PLUS] = ACTIONS(3922), - [anon_sym_STAR] = ACTIONS(3922), - [anon_sym_SLASH] = ACTIONS(3922), - [anon_sym_PERCENT] = ACTIONS(3922), - [anon_sym_PIPE_PIPE] = ACTIONS(3920), - [anon_sym_AMP_AMP] = ACTIONS(3920), - [anon_sym_PIPE] = ACTIONS(3922), - [anon_sym_CARET] = ACTIONS(3922), - [anon_sym_AMP] = ACTIONS(3922), - [anon_sym_EQ_EQ] = ACTIONS(3920), - [anon_sym_BANG_EQ] = ACTIONS(3920), - [anon_sym_GT] = ACTIONS(3922), - [anon_sym_GT_EQ] = ACTIONS(3920), - [anon_sym_LT_EQ] = ACTIONS(3922), - [anon_sym_LT] = ACTIONS(3922), - [anon_sym_LT_LT] = ACTIONS(3922), - [anon_sym_GT_GT] = ACTIONS(3922), - [anon_sym_SEMI] = ACTIONS(3920), - [anon_sym_RBRACE] = ACTIONS(3920), - [anon_sym_LBRACK] = ACTIONS(3920), - [anon_sym_RBRACK] = ACTIONS(3920), - [anon_sym_EQ] = ACTIONS(3922), - [anon_sym_COLON] = ACTIONS(3920), - [anon_sym_QMARK] = ACTIONS(3920), - [anon_sym_STAR_EQ] = ACTIONS(3920), - [anon_sym_SLASH_EQ] = ACTIONS(3920), - [anon_sym_PERCENT_EQ] = ACTIONS(3920), - [anon_sym_PLUS_EQ] = ACTIONS(3920), - [anon_sym_DASH_EQ] = ACTIONS(3920), - [anon_sym_LT_LT_EQ] = ACTIONS(3920), - [anon_sym_GT_GT_EQ] = ACTIONS(3920), - [anon_sym_AMP_EQ] = ACTIONS(3920), - [anon_sym_CARET_EQ] = ACTIONS(3920), - [anon_sym_PIPE_EQ] = ACTIONS(3920), - [anon_sym_and_eq] = ACTIONS(3922), - [anon_sym_or_eq] = ACTIONS(3922), - [anon_sym_xor_eq] = ACTIONS(3922), - [anon_sym_LT_EQ_GT] = ACTIONS(3920), - [anon_sym_or] = ACTIONS(3922), - [anon_sym_and] = ACTIONS(3922), - [anon_sym_bitor] = ACTIONS(3922), - [anon_sym_xor] = ACTIONS(3922), - [anon_sym_bitand] = ACTIONS(3922), - [anon_sym_not_eq] = ACTIONS(3922), - [anon_sym_DASH_DASH] = ACTIONS(3920), - [anon_sym_PLUS_PLUS] = ACTIONS(3920), - [anon_sym_DOT] = ACTIONS(3922), - [anon_sym_DASH_GT] = ACTIONS(3920), - [anon_sym_L_DQUOTE] = ACTIONS(3924), - [anon_sym_u_DQUOTE] = ACTIONS(3924), - [anon_sym_U_DQUOTE] = ACTIONS(3924), - [anon_sym_u8_DQUOTE] = ACTIONS(3924), - [anon_sym_DQUOTE] = ACTIONS(3924), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(3927), - [anon_sym_LR_DQUOTE] = ACTIONS(3927), - [anon_sym_uR_DQUOTE] = ACTIONS(3927), - [anon_sym_UR_DQUOTE] = ACTIONS(3927), - [anon_sym_u8R_DQUOTE] = ACTIONS(3927), - [sym_literal_suffix] = ACTIONS(3922), + [sym__expression] = STATE(4342), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3579), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3579), + [sym_call_expression] = STATE(3579), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3579), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3579), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3579), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3633), + [anon_sym_LPAREN2] = ACTIONS(3635), + [anon_sym_BANG] = ACTIONS(3639), + [anon_sym_TILDE] = ACTIONS(3639), + [anon_sym_DASH] = ACTIONS(3637), + [anon_sym_PLUS] = ACTIONS(3637), + [anon_sym_STAR] = ACTIONS(3641), + [anon_sym_AMP] = ACTIONS(3641), + [anon_sym_COLON_COLON] = ACTIONS(3643), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_COLON] = ACTIONS(4405), + [anon_sym_not] = ACTIONS(3637), + [anon_sym_compl] = ACTIONS(3637), + [anon_sym_DASH_DASH] = ACTIONS(3645), + [anon_sym_PLUS_PLUS] = ACTIONS(3645), + [anon_sym_sizeof] = ACTIONS(3647), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(3649), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(3651), + [anon_sym_new] = ACTIONS(3631), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1818] = { - [sym_function_definition] = STATE(966), - [sym_declaration] = STATE(966), - [sym__declaration_modifiers] = STATE(2179), - [sym__declaration_specifiers] = STATE(3990), - [sym_attribute_specifier] = STATE(2179), - [sym_attribute_declaration] = STATE(2179), - [sym_ms_declspec_modifier] = STATE(2179), - [sym_ms_call_modifier] = STATE(2018), - [sym_declaration_list] = STATE(966), - [sym_storage_class_specifier] = STATE(2179), - [sym_type_qualifier] = STATE(2179), - [sym__type_specifier] = STATE(3156), - [sym_sized_type_specifier] = STATE(3232), - [sym_enum_specifier] = STATE(3232), - [sym_struct_specifier] = STATE(3232), - [sym_union_specifier] = STATE(3232), - [sym_placeholder_type_specifier] = STATE(3232), - [sym_decltype_auto] = STATE(3279), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3232), - [sym_virtual] = STATE(2179), - [sym_dependent_type] = STATE(3232), - [sym_template_type] = STATE(3198), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(5006), - [sym_qualified_type_identifier] = STATE(3259), - [aux_sym__declaration_specifiers_repeat1] = STATE(2179), - [aux_sym_sized_type_specifier_repeat1] = STATE(3171), - [sym_identifier] = ACTIONS(2922), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(2928), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1413), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(3930), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(61), - [anon_sym_unsigned] = ACTIONS(61), - [anon_sym_long] = ACTIONS(61), - [anon_sym_short] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2932), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(107), - [anon_sym_decltype] = ACTIONS(109), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(115), - [anon_sym_template] = ACTIONS(996), + [sym__expression] = STATE(4158), + [sym__expression_not_binary] = STATE(4369), + [sym_conditional_expression] = STATE(4369), + [sym_assignment_expression] = STATE(4369), + [sym_pointer_expression] = STATE(3541), + [sym_unary_expression] = STATE(4369), + [sym_binary_expression] = STATE(4369), + [sym_update_expression] = STATE(4369), + [sym_cast_expression] = STATE(4369), + [sym_sizeof_expression] = STATE(4369), + [sym_offsetof_expression] = STATE(4369), + [sym_generic_expression] = STATE(4369), + [sym_subscript_expression] = STATE(3541), + [sym_call_expression] = STATE(3541), + [sym_gnu_asm_expression] = STATE(4369), + [sym_field_expression] = STATE(3541), + [sym_compound_literal_expression] = STATE(4369), + [sym_parenthesized_expression] = STATE(3541), + [sym_char_literal] = STATE(4131), + [sym_concatenated_string] = STATE(4131), + [sym_string_literal] = STATE(3542), + [sym_null] = STATE(4369), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6872), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(4369), + [sym_raw_string_literal] = STATE(3542), + [sym_co_await_expression] = STATE(4369), + [sym_new_expression] = STATE(4369), + [sym_delete_expression] = STATE(4369), + [sym_requires_clause] = STATE(4369), + [sym_requires_expression] = STATE(4369), + [sym_lambda_expression] = STATE(4369), + [sym_lambda_capture_specifier] = STATE(5208), + [sym_fold_expression] = STATE(4369), + [sym_parameter_pack_expansion] = STATE(4369), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5289), + [sym_qualified_identifier] = STATE(3541), + [sym_qualified_type_identifier] = STATE(6872), + [sym_user_defined_literal] = STATE(4369), + [sym_identifier] = ACTIONS(3599), + [anon_sym_LPAREN2] = ACTIONS(2618), + [anon_sym_BANG] = ACTIONS(2620), + [anon_sym_TILDE] = ACTIONS(2620), + [anon_sym_DASH] = ACTIONS(2622), + [anon_sym_PLUS] = ACTIONS(2622), + [anon_sym_STAR] = ACTIONS(2624), + [anon_sym_AMP] = ACTIONS(2624), + [anon_sym_COLON_COLON] = ACTIONS(2626), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(2045), + [anon_sym_not] = ACTIONS(2622), + [anon_sym_compl] = ACTIONS(2622), + [anon_sym_DASH_DASH] = ACTIONS(2640), + [anon_sym_PLUS_PLUS] = ACTIONS(2640), + [anon_sym_sizeof] = ACTIONS(2642), + [anon_sym_offsetof] = ACTIONS(2644), + [anon_sym__Generic] = ACTIONS(2646), + [anon_sym_asm] = ACTIONS(2648), + [anon_sym___asm__] = ACTIONS(2648), + [sym_number_literal] = ACTIONS(2650), + [anon_sym_L_SQUOTE] = ACTIONS(2652), + [anon_sym_u_SQUOTE] = ACTIONS(2652), + [anon_sym_U_SQUOTE] = ACTIONS(2652), + [anon_sym_u8_SQUOTE] = ACTIONS(2652), + [anon_sym_SQUOTE] = ACTIONS(2652), + [anon_sym_L_DQUOTE] = ACTIONS(2654), + [anon_sym_u_DQUOTE] = ACTIONS(2654), + [anon_sym_U_DQUOTE] = ACTIONS(2654), + [anon_sym_u8_DQUOTE] = ACTIONS(2654), + [anon_sym_DQUOTE] = ACTIONS(2654), + [sym_true] = ACTIONS(2656), + [sym_false] = ACTIONS(2656), + [anon_sym_NULL] = ACTIONS(2658), + [anon_sym_nullptr] = ACTIONS(2658), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(2668), + [anon_sym_R_DQUOTE] = ACTIONS(2670), + [anon_sym_LR_DQUOTE] = ACTIONS(2670), + [anon_sym_uR_DQUOTE] = ACTIONS(2670), + [anon_sym_UR_DQUOTE] = ACTIONS(2670), + [anon_sym_u8R_DQUOTE] = ACTIONS(2670), + [anon_sym_co_await] = ACTIONS(2672), + [anon_sym_new] = ACTIONS(2674), + [anon_sym_requires] = ACTIONS(2676), + [sym_this] = ACTIONS(2656), }, [1819] = { - [sym_function_definition] = STATE(1023), - [sym_declaration] = STATE(1023), - [sym__declaration_modifiers] = STATE(2179), - [sym__declaration_specifiers] = STATE(3962), - [sym_attribute_specifier] = STATE(2179), - [sym_attribute_declaration] = STATE(2179), - [sym_ms_declspec_modifier] = STATE(2179), - [sym_ms_call_modifier] = STATE(2065), - [sym_declaration_list] = STATE(1023), - [sym_storage_class_specifier] = STATE(2179), - [sym_type_qualifier] = STATE(2179), - [sym__type_specifier] = STATE(3156), - [sym_sized_type_specifier] = STATE(3232), - [sym_enum_specifier] = STATE(3232), - [sym_struct_specifier] = STATE(3232), - [sym_union_specifier] = STATE(3232), - [sym_placeholder_type_specifier] = STATE(3232), - [sym_decltype_auto] = STATE(3279), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3232), - [sym_virtual] = STATE(2179), - [sym_dependent_type] = STATE(3232), - [sym_template_type] = STATE(3198), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(5006), - [sym_qualified_type_identifier] = STATE(3259), - [aux_sym__declaration_specifiers_repeat1] = STATE(2179), - [aux_sym_sized_type_specifier_repeat1] = STATE(3171), - [sym_identifier] = ACTIONS(2922), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(2928), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1413), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(3932), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(61), - [anon_sym_unsigned] = ACTIONS(61), - [anon_sym_long] = ACTIONS(61), - [anon_sym_short] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2932), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(107), - [anon_sym_decltype] = ACTIONS(109), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(115), - [anon_sym_template] = ACTIONS(996), + [sym__expression] = STATE(4359), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3509), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3509), + [sym_call_expression] = STATE(3509), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3509), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3509), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3509), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3613), + [anon_sym_LPAREN2] = ACTIONS(3615), + [anon_sym_BANG] = ACTIONS(3619), + [anon_sym_TILDE] = ACTIONS(3619), + [anon_sym_DASH] = ACTIONS(3617), + [anon_sym_PLUS] = ACTIONS(3617), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(3621), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(3617), + [anon_sym_compl] = ACTIONS(3617), + [anon_sym_DASH_DASH] = ACTIONS(3623), + [anon_sym_PLUS_PLUS] = ACTIONS(3623), + [anon_sym_sizeof] = ACTIONS(3625), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(3627), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(3629), + [anon_sym_new] = ACTIONS(3631), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1820] = { - [sym_string_literal] = STATE(1821), - [sym_raw_string_literal] = STATE(1821), - [aux_sym_concatenated_string_repeat1] = STATE(1821), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3795), - [anon_sym_COMMA] = ACTIONS(3795), - [anon_sym_RPAREN] = ACTIONS(3795), - [anon_sym_LPAREN2] = ACTIONS(3795), - [anon_sym_DASH] = ACTIONS(3803), - [anon_sym_PLUS] = ACTIONS(3803), - [anon_sym_STAR] = ACTIONS(3803), - [anon_sym_SLASH] = ACTIONS(3803), - [anon_sym_PERCENT] = ACTIONS(3803), - [anon_sym_PIPE_PIPE] = ACTIONS(3795), - [anon_sym_AMP_AMP] = ACTIONS(3795), - [anon_sym_PIPE] = ACTIONS(3803), - [anon_sym_CARET] = ACTIONS(3803), - [anon_sym_AMP] = ACTIONS(3803), - [anon_sym_EQ_EQ] = ACTIONS(3795), - [anon_sym_BANG_EQ] = ACTIONS(3795), - [anon_sym_GT] = ACTIONS(3803), - [anon_sym_GT_EQ] = ACTIONS(3795), - [anon_sym_LT_EQ] = ACTIONS(3803), - [anon_sym_LT] = ACTIONS(3803), - [anon_sym_LT_LT] = ACTIONS(3803), - [anon_sym_GT_GT] = ACTIONS(3803), - [anon_sym_SEMI] = ACTIONS(3795), - [anon_sym_RBRACE] = ACTIONS(3795), - [anon_sym_LBRACK] = ACTIONS(3795), - [anon_sym_RBRACK] = ACTIONS(3795), - [anon_sym_EQ] = ACTIONS(3803), - [anon_sym_COLON] = ACTIONS(3795), - [anon_sym_QMARK] = ACTIONS(3795), - [anon_sym_STAR_EQ] = ACTIONS(3795), - [anon_sym_SLASH_EQ] = ACTIONS(3795), - [anon_sym_PERCENT_EQ] = ACTIONS(3795), - [anon_sym_PLUS_EQ] = ACTIONS(3795), - [anon_sym_DASH_EQ] = ACTIONS(3795), - [anon_sym_LT_LT_EQ] = ACTIONS(3795), - [anon_sym_GT_GT_EQ] = ACTIONS(3795), - [anon_sym_AMP_EQ] = ACTIONS(3795), - [anon_sym_CARET_EQ] = ACTIONS(3795), - [anon_sym_PIPE_EQ] = ACTIONS(3795), - [anon_sym_and_eq] = ACTIONS(3803), - [anon_sym_or_eq] = ACTIONS(3803), - [anon_sym_xor_eq] = ACTIONS(3803), - [anon_sym_LT_EQ_GT] = ACTIONS(3795), - [anon_sym_or] = ACTIONS(3803), - [anon_sym_and] = ACTIONS(3803), - [anon_sym_bitor] = ACTIONS(3803), - [anon_sym_xor] = ACTIONS(3803), - [anon_sym_bitand] = ACTIONS(3803), - [anon_sym_not_eq] = ACTIONS(3803), - [anon_sym_DASH_DASH] = ACTIONS(3795), - [anon_sym_PLUS_PLUS] = ACTIONS(3795), - [anon_sym_DOT] = ACTIONS(3803), - [anon_sym_DASH_GT] = ACTIONS(3795), - [anon_sym_L_DQUOTE] = ACTIONS(1551), - [anon_sym_u_DQUOTE] = ACTIONS(1551), - [anon_sym_U_DQUOTE] = ACTIONS(1551), - [anon_sym_u8_DQUOTE] = ACTIONS(1551), - [anon_sym_DQUOTE] = ACTIONS(1551), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(1559), - [anon_sym_LR_DQUOTE] = ACTIONS(1559), - [anon_sym_uR_DQUOTE] = ACTIONS(1559), - [anon_sym_UR_DQUOTE] = ACTIONS(1559), - [anon_sym_u8R_DQUOTE] = ACTIONS(1559), - [sym_literal_suffix] = ACTIONS(3934), + [sym__expression] = STATE(2974), + [sym__expression_not_binary] = STATE(3021), + [sym_conditional_expression] = STATE(3021), + [sym_assignment_expression] = STATE(3021), + [sym_pointer_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_cast_expression] = STATE(3021), + [sym_sizeof_expression] = STATE(3021), + [sym_offsetof_expression] = STATE(3021), + [sym_generic_expression] = STATE(3021), + [sym_subscript_expression] = STATE(3021), + [sym_call_expression] = STATE(3021), + [sym_gnu_asm_expression] = STATE(3021), + [sym_field_expression] = STATE(3021), + [sym_compound_literal_expression] = STATE(3021), + [sym_parenthesized_expression] = STATE(3021), + [sym_char_literal] = STATE(2901), + [sym_concatenated_string] = STATE(2901), + [sym_string_literal] = STATE(2173), + [sym_null] = STATE(3021), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6616), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3021), + [sym_raw_string_literal] = STATE(2173), + [sym_co_await_expression] = STATE(3021), + [sym_new_expression] = STATE(3021), + [sym_delete_expression] = STATE(3021), + [sym_requires_clause] = STATE(3021), + [sym_requires_expression] = STATE(3021), + [sym_lambda_expression] = STATE(3021), + [sym_lambda_capture_specifier] = STATE(5188), + [sym_fold_expression] = STATE(3021), + [sym_parameter_pack_expansion] = STATE(3021), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3021), + [sym_qualified_type_identifier] = STATE(6616), + [sym_user_defined_literal] = STATE(3021), + [sym_identifier] = ACTIONS(1933), + [anon_sym_LPAREN2] = ACTIONS(1937), + [anon_sym_BANG] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(1941), + [anon_sym_DASH] = ACTIONS(1939), + [anon_sym_PLUS] = ACTIONS(1939), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(1945), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(1939), + [anon_sym_compl] = ACTIONS(1939), + [anon_sym_DASH_DASH] = ACTIONS(1953), + [anon_sym_PLUS_PLUS] = ACTIONS(1953), + [anon_sym_sizeof] = ACTIONS(1955), + [anon_sym_offsetof] = ACTIONS(1957), + [anon_sym__Generic] = ACTIONS(1959), + [anon_sym_asm] = ACTIONS(1961), + [anon_sym___asm__] = ACTIONS(1961), + [sym_number_literal] = ACTIONS(1963), + [anon_sym_L_SQUOTE] = ACTIONS(1965), + [anon_sym_u_SQUOTE] = ACTIONS(1965), + [anon_sym_U_SQUOTE] = ACTIONS(1965), + [anon_sym_u8_SQUOTE] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_L_DQUOTE] = ACTIONS(1967), + [anon_sym_u_DQUOTE] = ACTIONS(1967), + [anon_sym_U_DQUOTE] = ACTIONS(1967), + [anon_sym_u8_DQUOTE] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(1967), + [sym_true] = ACTIONS(1969), + [sym_false] = ACTIONS(1969), + [anon_sym_NULL] = ACTIONS(1971), + [anon_sym_nullptr] = ACTIONS(1971), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(1975), + [anon_sym_R_DQUOTE] = ACTIONS(1977), + [anon_sym_LR_DQUOTE] = ACTIONS(1977), + [anon_sym_uR_DQUOTE] = ACTIONS(1977), + [anon_sym_UR_DQUOTE] = ACTIONS(1977), + [anon_sym_u8R_DQUOTE] = ACTIONS(1977), + [anon_sym_co_await] = ACTIONS(1979), + [anon_sym_new] = ACTIONS(1981), + [anon_sym_requires] = ACTIONS(1983), + [sym_this] = ACTIONS(1969), }, [1821] = { - [sym_string_literal] = STATE(1817), - [sym_raw_string_literal] = STATE(1817), - [aux_sym_concatenated_string_repeat1] = STATE(1817), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3936), - [anon_sym_COMMA] = ACTIONS(3936), - [anon_sym_RPAREN] = ACTIONS(3936), - [anon_sym_LPAREN2] = ACTIONS(3936), - [anon_sym_DASH] = ACTIONS(3938), - [anon_sym_PLUS] = ACTIONS(3938), - [anon_sym_STAR] = ACTIONS(3938), - [anon_sym_SLASH] = ACTIONS(3938), - [anon_sym_PERCENT] = ACTIONS(3938), - [anon_sym_PIPE_PIPE] = ACTIONS(3936), - [anon_sym_AMP_AMP] = ACTIONS(3936), - [anon_sym_PIPE] = ACTIONS(3938), - [anon_sym_CARET] = ACTIONS(3938), - [anon_sym_AMP] = ACTIONS(3938), - [anon_sym_EQ_EQ] = ACTIONS(3936), - [anon_sym_BANG_EQ] = ACTIONS(3936), - [anon_sym_GT] = ACTIONS(3938), - [anon_sym_GT_EQ] = ACTIONS(3936), - [anon_sym_LT_EQ] = ACTIONS(3938), - [anon_sym_LT] = ACTIONS(3938), - [anon_sym_LT_LT] = ACTIONS(3938), - [anon_sym_GT_GT] = ACTIONS(3938), - [anon_sym_SEMI] = ACTIONS(3936), - [anon_sym_RBRACE] = ACTIONS(3936), - [anon_sym_LBRACK] = ACTIONS(3936), - [anon_sym_RBRACK] = ACTIONS(3936), - [anon_sym_EQ] = ACTIONS(3938), - [anon_sym_COLON] = ACTIONS(3936), - [anon_sym_QMARK] = ACTIONS(3936), - [anon_sym_STAR_EQ] = ACTIONS(3936), - [anon_sym_SLASH_EQ] = ACTIONS(3936), - [anon_sym_PERCENT_EQ] = ACTIONS(3936), - [anon_sym_PLUS_EQ] = ACTIONS(3936), - [anon_sym_DASH_EQ] = ACTIONS(3936), - [anon_sym_LT_LT_EQ] = ACTIONS(3936), - [anon_sym_GT_GT_EQ] = ACTIONS(3936), - [anon_sym_AMP_EQ] = ACTIONS(3936), - [anon_sym_CARET_EQ] = ACTIONS(3936), - [anon_sym_PIPE_EQ] = ACTIONS(3936), - [anon_sym_and_eq] = ACTIONS(3938), - [anon_sym_or_eq] = ACTIONS(3938), - [anon_sym_xor_eq] = ACTIONS(3938), - [anon_sym_LT_EQ_GT] = ACTIONS(3936), - [anon_sym_or] = ACTIONS(3938), - [anon_sym_and] = ACTIONS(3938), - [anon_sym_bitor] = ACTIONS(3938), - [anon_sym_xor] = ACTIONS(3938), - [anon_sym_bitand] = ACTIONS(3938), - [anon_sym_not_eq] = ACTIONS(3938), - [anon_sym_DASH_DASH] = ACTIONS(3936), - [anon_sym_PLUS_PLUS] = ACTIONS(3936), - [anon_sym_DOT] = ACTIONS(3938), - [anon_sym_DASH_GT] = ACTIONS(3936), - [anon_sym_L_DQUOTE] = ACTIONS(1551), - [anon_sym_u_DQUOTE] = ACTIONS(1551), - [anon_sym_U_DQUOTE] = ACTIONS(1551), - [anon_sym_u8_DQUOTE] = ACTIONS(1551), - [anon_sym_DQUOTE] = ACTIONS(1551), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(1559), - [anon_sym_LR_DQUOTE] = ACTIONS(1559), - [anon_sym_uR_DQUOTE] = ACTIONS(1559), - [anon_sym_UR_DQUOTE] = ACTIONS(1559), - [anon_sym_u8R_DQUOTE] = ACTIONS(1559), - [sym_literal_suffix] = ACTIONS(3938), + [sym__expression] = STATE(4454), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1822] = { - [sym_function_definition] = STATE(1051), - [sym_declaration] = STATE(1051), - [sym__declaration_modifiers] = STATE(2179), - [sym__declaration_specifiers] = STATE(3946), - [sym_attribute_specifier] = STATE(2179), - [sym_attribute_declaration] = STATE(2179), - [sym_ms_declspec_modifier] = STATE(2179), - [sym_ms_call_modifier] = STATE(2076), - [sym_declaration_list] = STATE(1051), - [sym_storage_class_specifier] = STATE(2179), - [sym_type_qualifier] = STATE(2179), - [sym__type_specifier] = STATE(3156), - [sym_sized_type_specifier] = STATE(3232), - [sym_enum_specifier] = STATE(3232), - [sym_struct_specifier] = STATE(3232), - [sym_union_specifier] = STATE(3232), - [sym_placeholder_type_specifier] = STATE(3232), - [sym_decltype_auto] = STATE(3279), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3232), - [sym_virtual] = STATE(2179), - [sym_dependent_type] = STATE(3232), - [sym_template_type] = STATE(3198), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(5006), - [sym_qualified_type_identifier] = STATE(3259), - [aux_sym__declaration_specifiers_repeat1] = STATE(2179), - [aux_sym_sized_type_specifier_repeat1] = STATE(3171), - [sym_identifier] = ACTIONS(2922), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(2928), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1413), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(3940), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(61), - [anon_sym_unsigned] = ACTIONS(61), - [anon_sym_long] = ACTIONS(61), - [anon_sym_short] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2932), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(107), - [anon_sym_decltype] = ACTIONS(109), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(115), - [anon_sym_template] = ACTIONS(996), + [sym__expression] = STATE(3502), + [sym__expression_not_binary] = STATE(3565), + [sym_conditional_expression] = STATE(3565), + [sym_assignment_expression] = STATE(3565), + [sym_pointer_expression] = STATE(3220), + [sym_unary_expression] = STATE(3565), + [sym_binary_expression] = STATE(3565), + [sym_update_expression] = STATE(3565), + [sym_cast_expression] = STATE(3565), + [sym_sizeof_expression] = STATE(3565), + [sym_offsetof_expression] = STATE(3565), + [sym_generic_expression] = STATE(3565), + [sym_subscript_expression] = STATE(3220), + [sym_call_expression] = STATE(3220), + [sym_gnu_asm_expression] = STATE(3565), + [sym_field_expression] = STATE(3220), + [sym_compound_literal_expression] = STATE(3565), + [sym_parenthesized_expression] = STATE(3220), + [sym_char_literal] = STATE(3429), + [sym_concatenated_string] = STATE(3429), + [sym_string_literal] = STATE(2248), + [sym_null] = STATE(3565), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6847), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3565), + [sym_raw_string_literal] = STATE(2248), + [sym_co_await_expression] = STATE(3565), + [sym_new_expression] = STATE(3565), + [sym_delete_expression] = STATE(3565), + [sym_requires_clause] = STATE(3565), + [sym_requires_expression] = STATE(3565), + [sym_lambda_expression] = STATE(3565), + [sym_lambda_capture_specifier] = STATE(5204), + [sym_fold_expression] = STATE(3565), + [sym_parameter_pack_expansion] = STATE(3565), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5232), + [sym_qualified_identifier] = STATE(3220), + [sym_qualified_type_identifier] = STATE(6847), + [sym_user_defined_literal] = STATE(3565), + [sym_identifier] = ACTIONS(2095), + [anon_sym_LPAREN2] = ACTIONS(1841), + [anon_sym_BANG] = ACTIONS(1843), + [anon_sym_TILDE] = ACTIONS(1843), + [anon_sym_DASH] = ACTIONS(1845), + [anon_sym_PLUS] = ACTIONS(1845), + [anon_sym_STAR] = ACTIONS(1847), + [anon_sym_AMP] = ACTIONS(1847), + [anon_sym_COLON_COLON] = ACTIONS(1849), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1999), + [anon_sym_not] = ACTIONS(1845), + [anon_sym_compl] = ACTIONS(1845), + [anon_sym_DASH_DASH] = ACTIONS(1861), + [anon_sym_PLUS_PLUS] = ACTIONS(1861), + [anon_sym_sizeof] = ACTIONS(1863), + [anon_sym_offsetof] = ACTIONS(1865), + [anon_sym__Generic] = ACTIONS(1867), + [anon_sym_asm] = ACTIONS(1869), + [anon_sym___asm__] = ACTIONS(1869), + [sym_number_literal] = ACTIONS(1871), + [anon_sym_L_SQUOTE] = ACTIONS(1873), + [anon_sym_u_SQUOTE] = ACTIONS(1873), + [anon_sym_U_SQUOTE] = ACTIONS(1873), + [anon_sym_u8_SQUOTE] = ACTIONS(1873), + [anon_sym_SQUOTE] = ACTIONS(1873), + [anon_sym_L_DQUOTE] = ACTIONS(1875), + [anon_sym_u_DQUOTE] = ACTIONS(1875), + [anon_sym_U_DQUOTE] = ACTIONS(1875), + [anon_sym_u8_DQUOTE] = ACTIONS(1875), + [anon_sym_DQUOTE] = ACTIONS(1875), + [sym_true] = ACTIONS(1877), + [sym_false] = ACTIONS(1877), + [anon_sym_NULL] = ACTIONS(1879), + [anon_sym_nullptr] = ACTIONS(1879), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(1883), + [anon_sym_R_DQUOTE] = ACTIONS(1885), + [anon_sym_LR_DQUOTE] = ACTIONS(1885), + [anon_sym_uR_DQUOTE] = ACTIONS(1885), + [anon_sym_UR_DQUOTE] = ACTIONS(1885), + [anon_sym_u8R_DQUOTE] = ACTIONS(1885), + [anon_sym_co_await] = ACTIONS(1887), + [anon_sym_new] = ACTIONS(1889), + [anon_sym_requires] = ACTIONS(1891), + [sym_this] = ACTIONS(1877), }, [1823] = { - [sym_function_definition] = STATE(553), - [sym_declaration] = STATE(553), - [sym__declaration_modifiers] = STATE(2179), - [sym__declaration_specifiers] = STATE(3935), - [sym_attribute_specifier] = STATE(2179), - [sym_attribute_declaration] = STATE(2179), - [sym_ms_declspec_modifier] = STATE(2179), - [sym_ms_call_modifier] = STATE(2012), - [sym_declaration_list] = STATE(553), - [sym_storage_class_specifier] = STATE(2179), - [sym_type_qualifier] = STATE(2179), - [sym__type_specifier] = STATE(3156), - [sym_sized_type_specifier] = STATE(3232), - [sym_enum_specifier] = STATE(3232), - [sym_struct_specifier] = STATE(3232), - [sym_union_specifier] = STATE(3232), - [sym_placeholder_type_specifier] = STATE(3232), - [sym_decltype_auto] = STATE(3279), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3232), - [sym_virtual] = STATE(2179), - [sym_dependent_type] = STATE(3232), - [sym_template_type] = STATE(3198), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(5006), - [sym_qualified_type_identifier] = STATE(3259), - [aux_sym__declaration_specifiers_repeat1] = STATE(2179), - [aux_sym_sized_type_specifier_repeat1] = STATE(3171), - [sym_identifier] = ACTIONS(2922), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(2928), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1413), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(3942), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(61), - [anon_sym_unsigned] = ACTIONS(61), - [anon_sym_long] = ACTIONS(61), - [anon_sym_short] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2932), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_struct] = ACTIONS(69), - [anon_sym_union] = ACTIONS(71), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(107), - [anon_sym_decltype] = ACTIONS(109), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(115), - [anon_sym_template] = ACTIONS(996), + [sym__expression] = STATE(3382), + [sym__expression_not_binary] = STATE(3513), + [sym_conditional_expression] = STATE(3513), + [sym_assignment_expression] = STATE(3513), + [sym_pointer_expression] = STATE(3513), + [sym_unary_expression] = STATE(3513), + [sym_binary_expression] = STATE(3513), + [sym_update_expression] = STATE(3513), + [sym_cast_expression] = STATE(3513), + [sym_sizeof_expression] = STATE(3513), + [sym_offsetof_expression] = STATE(3513), + [sym_generic_expression] = STATE(3513), + [sym_subscript_expression] = STATE(3513), + [sym_call_expression] = STATE(3513), + [sym_gnu_asm_expression] = STATE(3513), + [sym_field_expression] = STATE(3513), + [sym_compound_literal_expression] = STATE(3513), + [sym_parenthesized_expression] = STATE(3513), + [sym_char_literal] = STATE(3385), + [sym_concatenated_string] = STATE(3385), + [sym_string_literal] = STATE(2225), + [sym_null] = STATE(3513), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6957), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3513), + [sym_raw_string_literal] = STATE(2225), + [sym_co_await_expression] = STATE(3513), + [sym_new_expression] = STATE(3513), + [sym_delete_expression] = STATE(3513), + [sym_requires_clause] = STATE(3513), + [sym_requires_expression] = STATE(3513), + [sym_lambda_expression] = STATE(3513), + [sym_lambda_capture_specifier] = STATE(5162), + [sym_fold_expression] = STATE(3513), + [sym_parameter_pack_expansion] = STATE(3513), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5289), + [sym_qualified_identifier] = STATE(3513), + [sym_qualified_type_identifier] = STATE(6957), + [sym_user_defined_literal] = STATE(3513), + [sym_identifier] = ACTIONS(2031), + [anon_sym_LPAREN2] = ACTIONS(2033), + [anon_sym_BANG] = ACTIONS(2037), + [anon_sym_TILDE] = ACTIONS(2037), + [anon_sym_DASH] = ACTIONS(2035), + [anon_sym_PLUS] = ACTIONS(2035), + [anon_sym_STAR] = ACTIONS(2624), + [anon_sym_AMP] = ACTIONS(2624), + [anon_sym_COLON_COLON] = ACTIONS(2041), + [anon_sym_LBRACK] = ACTIONS(4407), + [sym_primitive_type] = ACTIONS(2045), + [anon_sym_not] = ACTIONS(2035), + [anon_sym_compl] = ACTIONS(2035), + [anon_sym_DASH_DASH] = ACTIONS(2047), + [anon_sym_PLUS_PLUS] = ACTIONS(2047), + [anon_sym_sizeof] = ACTIONS(2049), + [anon_sym_offsetof] = ACTIONS(2051), + [anon_sym__Generic] = ACTIONS(2053), + [anon_sym_asm] = ACTIONS(2055), + [anon_sym___asm__] = ACTIONS(2055), + [sym_number_literal] = ACTIONS(2057), + [anon_sym_L_SQUOTE] = ACTIONS(2059), + [anon_sym_u_SQUOTE] = ACTIONS(2059), + [anon_sym_U_SQUOTE] = ACTIONS(2059), + [anon_sym_u8_SQUOTE] = ACTIONS(2059), + [anon_sym_SQUOTE] = ACTIONS(2059), + [anon_sym_L_DQUOTE] = ACTIONS(2061), + [anon_sym_u_DQUOTE] = ACTIONS(2061), + [anon_sym_U_DQUOTE] = ACTIONS(2061), + [anon_sym_u8_DQUOTE] = ACTIONS(2061), + [anon_sym_DQUOTE] = ACTIONS(2061), + [sym_true] = ACTIONS(2063), + [sym_false] = ACTIONS(2063), + [anon_sym_NULL] = ACTIONS(2065), + [anon_sym_nullptr] = ACTIONS(2065), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(2067), + [anon_sym_R_DQUOTE] = ACTIONS(2069), + [anon_sym_LR_DQUOTE] = ACTIONS(2069), + [anon_sym_uR_DQUOTE] = ACTIONS(2069), + [anon_sym_UR_DQUOTE] = ACTIONS(2069), + [anon_sym_u8R_DQUOTE] = ACTIONS(2069), + [anon_sym_co_await] = ACTIONS(2071), + [anon_sym_new] = ACTIONS(2073), + [anon_sym_requires] = ACTIONS(2075), + [sym_this] = ACTIONS(2063), }, [1824] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(3898), - [anon_sym_COMMA] = ACTIONS(3898), - [anon_sym_RPAREN] = ACTIONS(3898), - [anon_sym_LPAREN2] = ACTIONS(3898), - [anon_sym_DASH] = ACTIONS(3896), - [anon_sym_PLUS] = ACTIONS(3896), - [anon_sym_STAR] = ACTIONS(3896), - [anon_sym_SLASH] = ACTIONS(3896), - [anon_sym_PERCENT] = ACTIONS(3896), - [anon_sym_PIPE_PIPE] = ACTIONS(3898), - [anon_sym_AMP_AMP] = ACTIONS(3898), - [anon_sym_PIPE] = ACTIONS(3896), - [anon_sym_CARET] = ACTIONS(3896), - [anon_sym_AMP] = ACTIONS(3896), - [anon_sym_EQ_EQ] = ACTIONS(3898), - [anon_sym_BANG_EQ] = ACTIONS(3898), - [anon_sym_GT] = ACTIONS(3896), - [anon_sym_GT_EQ] = ACTIONS(3898), - [anon_sym_LT_EQ] = ACTIONS(3896), - [anon_sym_LT] = ACTIONS(3896), - [anon_sym_LT_LT] = ACTIONS(3896), - [anon_sym_GT_GT] = ACTIONS(3896), - [anon_sym_COLON_COLON] = ACTIONS(3898), - [anon_sym_LBRACE] = ACTIONS(3898), - [anon_sym_LBRACK] = ACTIONS(3898), - [anon_sym_EQ] = ACTIONS(3896), - [anon_sym_const] = ACTIONS(3896), - [anon_sym_volatile] = ACTIONS(3898), - [anon_sym_restrict] = ACTIONS(3898), - [anon_sym__Atomic] = ACTIONS(3898), - [anon_sym_mutable] = ACTIONS(3898), - [anon_sym_constexpr] = ACTIONS(3898), - [anon_sym_constinit] = ACTIONS(3898), - [anon_sym_consteval] = ACTIONS(3898), - [anon_sym_COLON] = ACTIONS(3896), - [anon_sym_QMARK] = ACTIONS(3898), - [anon_sym_STAR_EQ] = ACTIONS(3898), - [anon_sym_SLASH_EQ] = ACTIONS(3898), - [anon_sym_PERCENT_EQ] = ACTIONS(3898), - [anon_sym_PLUS_EQ] = ACTIONS(3898), - [anon_sym_DASH_EQ] = ACTIONS(3898), - [anon_sym_LT_LT_EQ] = ACTIONS(3898), - [anon_sym_GT_GT_EQ] = ACTIONS(3898), - [anon_sym_AMP_EQ] = ACTIONS(3898), - [anon_sym_CARET_EQ] = ACTIONS(3898), - [anon_sym_PIPE_EQ] = ACTIONS(3898), - [anon_sym_and_eq] = ACTIONS(3898), - [anon_sym_or_eq] = ACTIONS(3898), - [anon_sym_xor_eq] = ACTIONS(3898), - [anon_sym_LT_EQ_GT] = ACTIONS(3898), - [anon_sym_or] = ACTIONS(3896), - [anon_sym_and] = ACTIONS(3896), - [anon_sym_bitor] = ACTIONS(3898), - [anon_sym_xor] = ACTIONS(3896), - [anon_sym_bitand] = ACTIONS(3898), - [anon_sym_not_eq] = ACTIONS(3898), - [anon_sym_DASH_DASH] = ACTIONS(3898), - [anon_sym_PLUS_PLUS] = ACTIONS(3898), - [anon_sym_DOT] = ACTIONS(3896), - [anon_sym_DASH_GT] = ACTIONS(3896), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3898), - [anon_sym_decltype] = ACTIONS(3898), - [anon_sym_final] = ACTIONS(3898), - [anon_sym_override] = ACTIONS(3898), - [anon_sym_DOT_STAR] = ACTIONS(3898), - [anon_sym_DASH_GT_STAR] = ACTIONS(3898), + [sym__expression] = STATE(4446), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1825] = { - [sym_function_definition] = STATE(1030), - [sym_declaration] = STATE(1030), - [sym__declaration_modifiers] = STATE(2179), - [sym__declaration_specifiers] = STATE(3990), - [sym_attribute_specifier] = STATE(2179), - [sym_attribute_declaration] = STATE(2179), - [sym_ms_declspec_modifier] = STATE(2179), - [sym_ms_call_modifier] = STATE(2018), - [sym_storage_class_specifier] = STATE(2179), - [sym_type_qualifier] = STATE(2179), - [sym__type_specifier] = STATE(3156), - [sym_sized_type_specifier] = STATE(3232), - [sym_enum_specifier] = STATE(3232), - [sym_struct_specifier] = STATE(3232), - [sym_union_specifier] = STATE(3232), - [sym_placeholder_type_specifier] = STATE(3232), - [sym_decltype_auto] = STATE(3279), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3232), - [sym__class_name] = STATE(6182), - [sym_virtual] = STATE(2179), - [sym_dependent_type] = STATE(3232), - [sym_template_type] = STATE(3934), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(5006), - [sym_qualified_type_identifier] = STATE(3924), - [aux_sym__declaration_specifiers_repeat1] = STATE(2179), - [aux_sym_sized_type_specifier_repeat1] = STATE(3171), - [sym_identifier] = ACTIONS(3944), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(2928), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1413), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(61), - [anon_sym_unsigned] = ACTIONS(61), - [anon_sym_long] = ACTIONS(61), - [anon_sym_short] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2932), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(3946), - [anon_sym_struct] = ACTIONS(3948), - [anon_sym_union] = ACTIONS(3950), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(107), - [anon_sym_decltype] = ACTIONS(109), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(115), - [anon_sym_template] = ACTIONS(996), + [sym__expression] = STATE(4348), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1826] = { - [sym_function_definition] = STATE(1090), - [sym_declaration] = STATE(1090), - [sym__declaration_modifiers] = STATE(2179), - [sym__declaration_specifiers] = STATE(3962), - [sym_attribute_specifier] = STATE(2179), - [sym_attribute_declaration] = STATE(2179), - [sym_ms_declspec_modifier] = STATE(2179), - [sym_ms_call_modifier] = STATE(2065), - [sym_storage_class_specifier] = STATE(2179), - [sym_type_qualifier] = STATE(2179), - [sym__type_specifier] = STATE(3156), - [sym_sized_type_specifier] = STATE(3232), - [sym_enum_specifier] = STATE(3232), - [sym_struct_specifier] = STATE(3232), - [sym_union_specifier] = STATE(3232), - [sym_placeholder_type_specifier] = STATE(3232), - [sym_decltype_auto] = STATE(3279), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3232), - [sym__class_name] = STATE(6433), - [sym_virtual] = STATE(2179), - [sym_dependent_type] = STATE(3232), - [sym_template_type] = STATE(3934), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(5006), - [sym_qualified_type_identifier] = STATE(3924), - [aux_sym__declaration_specifiers_repeat1] = STATE(2179), - [aux_sym_sized_type_specifier_repeat1] = STATE(3171), - [sym_identifier] = ACTIONS(3944), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(2928), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1413), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(61), - [anon_sym_unsigned] = ACTIONS(61), - [anon_sym_long] = ACTIONS(61), - [anon_sym_short] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2932), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(3952), - [anon_sym_struct] = ACTIONS(3954), - [anon_sym_union] = ACTIONS(3956), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(107), - [anon_sym_decltype] = ACTIONS(109), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(115), - [anon_sym_template] = ACTIONS(996), + [sym__expression] = STATE(4252), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3509), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3509), + [sym_call_expression] = STATE(3509), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3509), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3509), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3509), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3613), + [anon_sym_LPAREN2] = ACTIONS(3615), + [anon_sym_BANG] = ACTIONS(3619), + [anon_sym_TILDE] = ACTIONS(3619), + [anon_sym_DASH] = ACTIONS(3617), + [anon_sym_PLUS] = ACTIONS(3617), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(3621), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(3617), + [anon_sym_compl] = ACTIONS(3617), + [anon_sym_DASH_DASH] = ACTIONS(3623), + [anon_sym_PLUS_PLUS] = ACTIONS(3623), + [anon_sym_sizeof] = ACTIONS(3625), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(3627), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(3629), + [anon_sym_new] = ACTIONS(3631), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1827] = { - [sym_function_definition] = STATE(2302), - [sym_declaration] = STATE(2302), - [sym__declaration_modifiers] = STATE(2179), - [sym__declaration_specifiers] = STATE(3977), - [sym_attribute_specifier] = STATE(2179), - [sym_attribute_declaration] = STATE(2179), - [sym_ms_declspec_modifier] = STATE(2179), - [sym_ms_call_modifier] = STATE(2058), - [sym_storage_class_specifier] = STATE(2179), - [sym_type_qualifier] = STATE(2179), - [sym__type_specifier] = STATE(3156), - [sym_sized_type_specifier] = STATE(3232), - [sym_enum_specifier] = STATE(3232), - [sym_struct_specifier] = STATE(3232), - [sym_union_specifier] = STATE(3232), - [sym_placeholder_type_specifier] = STATE(3232), - [sym_decltype_auto] = STATE(3279), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3232), - [sym__class_name] = STATE(6142), - [sym_virtual] = STATE(2179), - [sym_dependent_type] = STATE(3232), - [sym_template_type] = STATE(3934), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(5006), - [sym_qualified_type_identifier] = STATE(3924), - [aux_sym__declaration_specifiers_repeat1] = STATE(2179), - [aux_sym_sized_type_specifier_repeat1] = STATE(3171), - [sym_identifier] = ACTIONS(3944), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(2928), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1413), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(61), - [anon_sym_unsigned] = ACTIONS(61), - [anon_sym_long] = ACTIONS(61), - [anon_sym_short] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2932), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(3958), - [anon_sym_struct] = ACTIONS(3960), - [anon_sym_union] = ACTIONS(3962), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(107), - [anon_sym_decltype] = ACTIONS(109), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(115), - [anon_sym_template] = ACTIONS(996), + [sym__expression] = STATE(2950), + [sym__expression_not_binary] = STATE(3021), + [sym_conditional_expression] = STATE(3021), + [sym_assignment_expression] = STATE(3021), + [sym_pointer_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_cast_expression] = STATE(3021), + [sym_sizeof_expression] = STATE(3021), + [sym_offsetof_expression] = STATE(3021), + [sym_generic_expression] = STATE(3021), + [sym_subscript_expression] = STATE(3021), + [sym_call_expression] = STATE(3021), + [sym_gnu_asm_expression] = STATE(3021), + [sym_field_expression] = STATE(3021), + [sym_compound_literal_expression] = STATE(3021), + [sym_parenthesized_expression] = STATE(3021), + [sym_char_literal] = STATE(2901), + [sym_concatenated_string] = STATE(2901), + [sym_string_literal] = STATE(2173), + [sym_null] = STATE(3021), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6616), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3021), + [sym_raw_string_literal] = STATE(2173), + [sym_co_await_expression] = STATE(3021), + [sym_new_expression] = STATE(3021), + [sym_delete_expression] = STATE(3021), + [sym_requires_clause] = STATE(3021), + [sym_requires_expression] = STATE(3021), + [sym_lambda_expression] = STATE(3021), + [sym_lambda_capture_specifier] = STATE(5188), + [sym_fold_expression] = STATE(3021), + [sym_parameter_pack_expansion] = STATE(3021), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3021), + [sym_qualified_type_identifier] = STATE(6616), + [sym_user_defined_literal] = STATE(3021), + [sym_identifier] = ACTIONS(1933), + [anon_sym_LPAREN2] = ACTIONS(1937), + [anon_sym_BANG] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(1941), + [anon_sym_DASH] = ACTIONS(1939), + [anon_sym_PLUS] = ACTIONS(1939), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(1945), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(1939), + [anon_sym_compl] = ACTIONS(1939), + [anon_sym_DASH_DASH] = ACTIONS(1953), + [anon_sym_PLUS_PLUS] = ACTIONS(1953), + [anon_sym_sizeof] = ACTIONS(1955), + [anon_sym_offsetof] = ACTIONS(1957), + [anon_sym__Generic] = ACTIONS(1959), + [anon_sym_asm] = ACTIONS(1961), + [anon_sym___asm__] = ACTIONS(1961), + [sym_number_literal] = ACTIONS(1963), + [anon_sym_L_SQUOTE] = ACTIONS(1965), + [anon_sym_u_SQUOTE] = ACTIONS(1965), + [anon_sym_U_SQUOTE] = ACTIONS(1965), + [anon_sym_u8_SQUOTE] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_L_DQUOTE] = ACTIONS(1967), + [anon_sym_u_DQUOTE] = ACTIONS(1967), + [anon_sym_U_DQUOTE] = ACTIONS(1967), + [anon_sym_u8_DQUOTE] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(1967), + [sym_true] = ACTIONS(1969), + [sym_false] = ACTIONS(1969), + [anon_sym_NULL] = ACTIONS(1971), + [anon_sym_nullptr] = ACTIONS(1971), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(1975), + [anon_sym_R_DQUOTE] = ACTIONS(1977), + [anon_sym_LR_DQUOTE] = ACTIONS(1977), + [anon_sym_uR_DQUOTE] = ACTIONS(1977), + [anon_sym_UR_DQUOTE] = ACTIONS(1977), + [anon_sym_u8R_DQUOTE] = ACTIONS(1977), + [anon_sym_co_await] = ACTIONS(1979), + [anon_sym_new] = ACTIONS(1981), + [anon_sym_requires] = ACTIONS(1983), + [sym_this] = ACTIONS(1969), }, [1828] = { - [sym_function_definition] = STATE(2300), - [sym_declaration] = STATE(2300), - [sym__declaration_modifiers] = STATE(2179), - [sym__declaration_specifiers] = STATE(3964), - [sym_attribute_specifier] = STATE(2179), - [sym_attribute_declaration] = STATE(2179), - [sym_ms_declspec_modifier] = STATE(2179), - [sym_ms_call_modifier] = STATE(2029), - [sym_storage_class_specifier] = STATE(2179), - [sym_type_qualifier] = STATE(2179), - [sym__type_specifier] = STATE(3156), - [sym_sized_type_specifier] = STATE(3232), - [sym_enum_specifier] = STATE(3232), - [sym_struct_specifier] = STATE(3232), - [sym_union_specifier] = STATE(3232), - [sym_placeholder_type_specifier] = STATE(3232), - [sym_decltype_auto] = STATE(3279), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3232), - [sym__class_name] = STATE(6061), - [sym_virtual] = STATE(2179), - [sym_dependent_type] = STATE(3232), - [sym_template_type] = STATE(3934), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(5006), - [sym_qualified_type_identifier] = STATE(3924), - [aux_sym__declaration_specifiers_repeat1] = STATE(2179), - [aux_sym_sized_type_specifier_repeat1] = STATE(3171), - [sym_identifier] = ACTIONS(3944), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(2928), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1413), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(61), - [anon_sym_unsigned] = ACTIONS(61), - [anon_sym_long] = ACTIONS(61), - [anon_sym_short] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2932), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(3964), - [anon_sym_struct] = ACTIONS(3966), - [anon_sym_union] = ACTIONS(3968), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(107), - [anon_sym_decltype] = ACTIONS(109), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(115), - [anon_sym_template] = ACTIONS(996), + [sym__expression] = STATE(3419), + [sym__expression_not_binary] = STATE(3513), + [sym_conditional_expression] = STATE(3513), + [sym_assignment_expression] = STATE(3513), + [sym_pointer_expression] = STATE(3513), + [sym_unary_expression] = STATE(3513), + [sym_binary_expression] = STATE(3513), + [sym_update_expression] = STATE(3513), + [sym_cast_expression] = STATE(3513), + [sym_sizeof_expression] = STATE(3513), + [sym_offsetof_expression] = STATE(3513), + [sym_generic_expression] = STATE(3513), + [sym_subscript_expression] = STATE(3513), + [sym_call_expression] = STATE(3513), + [sym_gnu_asm_expression] = STATE(3513), + [sym_field_expression] = STATE(3513), + [sym_compound_literal_expression] = STATE(3513), + [sym_parenthesized_expression] = STATE(3513), + [sym_char_literal] = STATE(3385), + [sym_concatenated_string] = STATE(3385), + [sym_string_literal] = STATE(2225), + [sym_null] = STATE(3513), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6957), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3513), + [sym_raw_string_literal] = STATE(2225), + [sym_co_await_expression] = STATE(3513), + [sym_new_expression] = STATE(3513), + [sym_delete_expression] = STATE(3513), + [sym_requires_clause] = STATE(3513), + [sym_requires_expression] = STATE(3513), + [sym_lambda_expression] = STATE(3513), + [sym_lambda_capture_specifier] = STATE(5162), + [sym_fold_expression] = STATE(3513), + [sym_parameter_pack_expansion] = STATE(3513), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5289), + [sym_qualified_identifier] = STATE(3513), + [sym_qualified_type_identifier] = STATE(6957), + [sym_user_defined_literal] = STATE(3513), + [sym_identifier] = ACTIONS(2031), + [anon_sym_LPAREN2] = ACTIONS(2033), + [anon_sym_BANG] = ACTIONS(2037), + [anon_sym_TILDE] = ACTIONS(2037), + [anon_sym_DASH] = ACTIONS(2035), + [anon_sym_PLUS] = ACTIONS(2035), + [anon_sym_STAR] = ACTIONS(2624), + [anon_sym_AMP] = ACTIONS(2624), + [anon_sym_COLON_COLON] = ACTIONS(2041), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(2045), + [anon_sym_not] = ACTIONS(2035), + [anon_sym_compl] = ACTIONS(2035), + [anon_sym_DASH_DASH] = ACTIONS(2047), + [anon_sym_PLUS_PLUS] = ACTIONS(2047), + [anon_sym_sizeof] = ACTIONS(2049), + [anon_sym_offsetof] = ACTIONS(2051), + [anon_sym__Generic] = ACTIONS(2053), + [anon_sym_asm] = ACTIONS(2055), + [anon_sym___asm__] = ACTIONS(2055), + [sym_number_literal] = ACTIONS(2057), + [anon_sym_L_SQUOTE] = ACTIONS(2059), + [anon_sym_u_SQUOTE] = ACTIONS(2059), + [anon_sym_U_SQUOTE] = ACTIONS(2059), + [anon_sym_u8_SQUOTE] = ACTIONS(2059), + [anon_sym_SQUOTE] = ACTIONS(2059), + [anon_sym_L_DQUOTE] = ACTIONS(2061), + [anon_sym_u_DQUOTE] = ACTIONS(2061), + [anon_sym_U_DQUOTE] = ACTIONS(2061), + [anon_sym_u8_DQUOTE] = ACTIONS(2061), + [anon_sym_DQUOTE] = ACTIONS(2061), + [sym_true] = ACTIONS(2063), + [sym_false] = ACTIONS(2063), + [anon_sym_NULL] = ACTIONS(2065), + [anon_sym_nullptr] = ACTIONS(2065), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(2067), + [anon_sym_R_DQUOTE] = ACTIONS(2069), + [anon_sym_LR_DQUOTE] = ACTIONS(2069), + [anon_sym_uR_DQUOTE] = ACTIONS(2069), + [anon_sym_UR_DQUOTE] = ACTIONS(2069), + [anon_sym_u8R_DQUOTE] = ACTIONS(2069), + [anon_sym_co_await] = ACTIONS(2071), + [anon_sym_new] = ACTIONS(2073), + [anon_sym_requires] = ACTIONS(2075), + [sym_this] = ACTIONS(2063), }, [1829] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(3886), - [anon_sym_COMMA] = ACTIONS(3886), - [anon_sym_RPAREN] = ACTIONS(3886), - [anon_sym_LPAREN2] = ACTIONS(3886), - [anon_sym_DASH] = ACTIONS(3884), - [anon_sym_PLUS] = ACTIONS(3884), - [anon_sym_STAR] = ACTIONS(3884), - [anon_sym_SLASH] = ACTIONS(3884), - [anon_sym_PERCENT] = ACTIONS(3884), - [anon_sym_PIPE_PIPE] = ACTIONS(3886), - [anon_sym_AMP_AMP] = ACTIONS(3886), - [anon_sym_PIPE] = ACTIONS(3884), - [anon_sym_CARET] = ACTIONS(3884), - [anon_sym_AMP] = ACTIONS(3884), - [anon_sym_EQ_EQ] = ACTIONS(3886), - [anon_sym_BANG_EQ] = ACTIONS(3886), - [anon_sym_GT] = ACTIONS(3884), - [anon_sym_GT_EQ] = ACTIONS(3886), - [anon_sym_LT_EQ] = ACTIONS(3884), - [anon_sym_LT] = ACTIONS(3884), - [anon_sym_LT_LT] = ACTIONS(3884), - [anon_sym_GT_GT] = ACTIONS(3884), - [anon_sym_COLON_COLON] = ACTIONS(3886), - [anon_sym_LBRACE] = ACTIONS(3886), - [anon_sym_LBRACK] = ACTIONS(3886), - [anon_sym_EQ] = ACTIONS(3884), - [anon_sym_const] = ACTIONS(3884), - [anon_sym_volatile] = ACTIONS(3886), - [anon_sym_restrict] = ACTIONS(3886), - [anon_sym__Atomic] = ACTIONS(3886), - [anon_sym_mutable] = ACTIONS(3886), - [anon_sym_constexpr] = ACTIONS(3886), - [anon_sym_constinit] = ACTIONS(3886), - [anon_sym_consteval] = ACTIONS(3886), - [anon_sym_COLON] = ACTIONS(3884), - [anon_sym_QMARK] = ACTIONS(3886), - [anon_sym_STAR_EQ] = ACTIONS(3886), - [anon_sym_SLASH_EQ] = ACTIONS(3886), - [anon_sym_PERCENT_EQ] = ACTIONS(3886), - [anon_sym_PLUS_EQ] = ACTIONS(3886), - [anon_sym_DASH_EQ] = ACTIONS(3886), - [anon_sym_LT_LT_EQ] = ACTIONS(3886), - [anon_sym_GT_GT_EQ] = ACTIONS(3886), - [anon_sym_AMP_EQ] = ACTIONS(3886), - [anon_sym_CARET_EQ] = ACTIONS(3886), - [anon_sym_PIPE_EQ] = ACTIONS(3886), - [anon_sym_and_eq] = ACTIONS(3886), - [anon_sym_or_eq] = ACTIONS(3886), - [anon_sym_xor_eq] = ACTIONS(3886), - [anon_sym_LT_EQ_GT] = ACTIONS(3886), - [anon_sym_or] = ACTIONS(3884), - [anon_sym_and] = ACTIONS(3884), - [anon_sym_bitor] = ACTIONS(3886), - [anon_sym_xor] = ACTIONS(3884), - [anon_sym_bitand] = ACTIONS(3886), - [anon_sym_not_eq] = ACTIONS(3886), - [anon_sym_DASH_DASH] = ACTIONS(3886), - [anon_sym_PLUS_PLUS] = ACTIONS(3886), - [anon_sym_DOT] = ACTIONS(3884), - [anon_sym_DASH_GT] = ACTIONS(3884), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3886), - [anon_sym_decltype] = ACTIONS(3886), - [anon_sym_final] = ACTIONS(3886), - [anon_sym_override] = ACTIONS(3886), - [anon_sym_DOT_STAR] = ACTIONS(3886), - [anon_sym_DASH_GT_STAR] = ACTIONS(3886), + [sym__expression] = STATE(3414), + [sym__expression_not_binary] = STATE(3513), + [sym_conditional_expression] = STATE(3513), + [sym_assignment_expression] = STATE(3513), + [sym_pointer_expression] = STATE(3513), + [sym_unary_expression] = STATE(3513), + [sym_binary_expression] = STATE(3513), + [sym_update_expression] = STATE(3513), + [sym_cast_expression] = STATE(3513), + [sym_sizeof_expression] = STATE(3513), + [sym_offsetof_expression] = STATE(3513), + [sym_generic_expression] = STATE(3513), + [sym_subscript_expression] = STATE(3513), + [sym_call_expression] = STATE(3513), + [sym_gnu_asm_expression] = STATE(3513), + [sym_field_expression] = STATE(3513), + [sym_compound_literal_expression] = STATE(3513), + [sym_parenthesized_expression] = STATE(3513), + [sym_char_literal] = STATE(3385), + [sym_concatenated_string] = STATE(3385), + [sym_string_literal] = STATE(2225), + [sym_null] = STATE(3513), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6957), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3513), + [sym_raw_string_literal] = STATE(2225), + [sym_co_await_expression] = STATE(3513), + [sym_new_expression] = STATE(3513), + [sym_delete_expression] = STATE(3513), + [sym_requires_clause] = STATE(3513), + [sym_requires_expression] = STATE(3513), + [sym_lambda_expression] = STATE(3513), + [sym_lambda_capture_specifier] = STATE(5162), + [sym_fold_expression] = STATE(3513), + [sym_parameter_pack_expansion] = STATE(3513), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5289), + [sym_qualified_identifier] = STATE(3513), + [sym_qualified_type_identifier] = STATE(6957), + [sym_user_defined_literal] = STATE(3513), + [sym_identifier] = ACTIONS(2031), + [anon_sym_LPAREN2] = ACTIONS(2033), + [anon_sym_BANG] = ACTIONS(2037), + [anon_sym_TILDE] = ACTIONS(2037), + [anon_sym_DASH] = ACTIONS(2035), + [anon_sym_PLUS] = ACTIONS(2035), + [anon_sym_STAR] = ACTIONS(2624), + [anon_sym_AMP] = ACTIONS(2624), + [anon_sym_COLON_COLON] = ACTIONS(2041), + [anon_sym_LBRACK] = ACTIONS(4409), + [sym_primitive_type] = ACTIONS(2045), + [anon_sym_not] = ACTIONS(2035), + [anon_sym_compl] = ACTIONS(2035), + [anon_sym_DASH_DASH] = ACTIONS(2047), + [anon_sym_PLUS_PLUS] = ACTIONS(2047), + [anon_sym_sizeof] = ACTIONS(2049), + [anon_sym_offsetof] = ACTIONS(2051), + [anon_sym__Generic] = ACTIONS(2053), + [anon_sym_asm] = ACTIONS(2055), + [anon_sym___asm__] = ACTIONS(2055), + [sym_number_literal] = ACTIONS(2057), + [anon_sym_L_SQUOTE] = ACTIONS(2059), + [anon_sym_u_SQUOTE] = ACTIONS(2059), + [anon_sym_U_SQUOTE] = ACTIONS(2059), + [anon_sym_u8_SQUOTE] = ACTIONS(2059), + [anon_sym_SQUOTE] = ACTIONS(2059), + [anon_sym_L_DQUOTE] = ACTIONS(2061), + [anon_sym_u_DQUOTE] = ACTIONS(2061), + [anon_sym_U_DQUOTE] = ACTIONS(2061), + [anon_sym_u8_DQUOTE] = ACTIONS(2061), + [anon_sym_DQUOTE] = ACTIONS(2061), + [sym_true] = ACTIONS(2063), + [sym_false] = ACTIONS(2063), + [anon_sym_NULL] = ACTIONS(2065), + [anon_sym_nullptr] = ACTIONS(2065), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(2067), + [anon_sym_R_DQUOTE] = ACTIONS(2069), + [anon_sym_LR_DQUOTE] = ACTIONS(2069), + [anon_sym_uR_DQUOTE] = ACTIONS(2069), + [anon_sym_UR_DQUOTE] = ACTIONS(2069), + [anon_sym_u8R_DQUOTE] = ACTIONS(2069), + [anon_sym_co_await] = ACTIONS(2071), + [anon_sym_new] = ACTIONS(2073), + [anon_sym_requires] = ACTIONS(2075), + [sym_this] = ACTIONS(2063), }, [1830] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(3860), - [anon_sym_COMMA] = ACTIONS(3860), - [anon_sym_RPAREN] = ACTIONS(3860), - [anon_sym_LPAREN2] = ACTIONS(3860), - [anon_sym_DASH] = ACTIONS(3858), - [anon_sym_PLUS] = ACTIONS(3858), - [anon_sym_STAR] = ACTIONS(3858), - [anon_sym_SLASH] = ACTIONS(3858), - [anon_sym_PERCENT] = ACTIONS(3858), - [anon_sym_PIPE_PIPE] = ACTIONS(3860), - [anon_sym_AMP_AMP] = ACTIONS(3860), - [anon_sym_PIPE] = ACTIONS(3858), - [anon_sym_CARET] = ACTIONS(3858), - [anon_sym_AMP] = ACTIONS(3858), - [anon_sym_EQ_EQ] = ACTIONS(3860), - [anon_sym_BANG_EQ] = ACTIONS(3860), - [anon_sym_GT] = ACTIONS(3858), - [anon_sym_GT_EQ] = ACTIONS(3860), - [anon_sym_LT_EQ] = ACTIONS(3858), - [anon_sym_LT] = ACTIONS(3858), - [anon_sym_LT_LT] = ACTIONS(3858), - [anon_sym_GT_GT] = ACTIONS(3858), - [anon_sym_COLON_COLON] = ACTIONS(3860), - [anon_sym_LBRACE] = ACTIONS(3860), - [anon_sym_LBRACK] = ACTIONS(3860), - [anon_sym_EQ] = ACTIONS(3858), - [anon_sym_const] = ACTIONS(3858), - [anon_sym_volatile] = ACTIONS(3860), - [anon_sym_restrict] = ACTIONS(3860), - [anon_sym__Atomic] = ACTIONS(3860), - [anon_sym_mutable] = ACTIONS(3860), - [anon_sym_constexpr] = ACTIONS(3860), - [anon_sym_constinit] = ACTIONS(3860), - [anon_sym_consteval] = ACTIONS(3860), - [anon_sym_COLON] = ACTIONS(3858), - [anon_sym_QMARK] = ACTIONS(3860), - [anon_sym_STAR_EQ] = ACTIONS(3860), - [anon_sym_SLASH_EQ] = ACTIONS(3860), - [anon_sym_PERCENT_EQ] = ACTIONS(3860), - [anon_sym_PLUS_EQ] = ACTIONS(3860), - [anon_sym_DASH_EQ] = ACTIONS(3860), - [anon_sym_LT_LT_EQ] = ACTIONS(3860), - [anon_sym_GT_GT_EQ] = ACTIONS(3860), - [anon_sym_AMP_EQ] = ACTIONS(3860), - [anon_sym_CARET_EQ] = ACTIONS(3860), - [anon_sym_PIPE_EQ] = ACTIONS(3860), - [anon_sym_and_eq] = ACTIONS(3860), - [anon_sym_or_eq] = ACTIONS(3860), - [anon_sym_xor_eq] = ACTIONS(3860), - [anon_sym_LT_EQ_GT] = ACTIONS(3860), - [anon_sym_or] = ACTIONS(3858), - [anon_sym_and] = ACTIONS(3858), - [anon_sym_bitor] = ACTIONS(3860), - [anon_sym_xor] = ACTIONS(3858), - [anon_sym_bitand] = ACTIONS(3860), - [anon_sym_not_eq] = ACTIONS(3860), - [anon_sym_DASH_DASH] = ACTIONS(3860), - [anon_sym_PLUS_PLUS] = ACTIONS(3860), - [anon_sym_DOT] = ACTIONS(3858), - [anon_sym_DASH_GT] = ACTIONS(3858), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3860), - [anon_sym_decltype] = ACTIONS(3860), - [anon_sym_final] = ACTIONS(3860), - [anon_sym_override] = ACTIONS(3860), - [anon_sym_DOT_STAR] = ACTIONS(3860), - [anon_sym_DASH_GT_STAR] = ACTIONS(3860), + [sym__expression] = STATE(2951), + [sym__expression_not_binary] = STATE(3021), + [sym_conditional_expression] = STATE(3021), + [sym_assignment_expression] = STATE(3021), + [sym_pointer_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_cast_expression] = STATE(3021), + [sym_sizeof_expression] = STATE(3021), + [sym_offsetof_expression] = STATE(3021), + [sym_generic_expression] = STATE(3021), + [sym_subscript_expression] = STATE(3021), + [sym_call_expression] = STATE(3021), + [sym_gnu_asm_expression] = STATE(3021), + [sym_field_expression] = STATE(3021), + [sym_compound_literal_expression] = STATE(3021), + [sym_parenthesized_expression] = STATE(3021), + [sym_char_literal] = STATE(2901), + [sym_concatenated_string] = STATE(2901), + [sym_string_literal] = STATE(2173), + [sym_null] = STATE(3021), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6616), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3021), + [sym_raw_string_literal] = STATE(2173), + [sym_co_await_expression] = STATE(3021), + [sym_new_expression] = STATE(3021), + [sym_delete_expression] = STATE(3021), + [sym_requires_clause] = STATE(3021), + [sym_requires_expression] = STATE(3021), + [sym_lambda_expression] = STATE(3021), + [sym_lambda_capture_specifier] = STATE(5188), + [sym_fold_expression] = STATE(3021), + [sym_parameter_pack_expansion] = STATE(3021), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3021), + [sym_qualified_type_identifier] = STATE(6616), + [sym_user_defined_literal] = STATE(3021), + [sym_identifier] = ACTIONS(1933), + [anon_sym_LPAREN2] = ACTIONS(1937), + [anon_sym_BANG] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(1941), + [anon_sym_DASH] = ACTIONS(1939), + [anon_sym_PLUS] = ACTIONS(1939), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(1945), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(1939), + [anon_sym_compl] = ACTIONS(1939), + [anon_sym_DASH_DASH] = ACTIONS(1953), + [anon_sym_PLUS_PLUS] = ACTIONS(1953), + [anon_sym_sizeof] = ACTIONS(1955), + [anon_sym_offsetof] = ACTIONS(1957), + [anon_sym__Generic] = ACTIONS(1959), + [anon_sym_asm] = ACTIONS(1961), + [anon_sym___asm__] = ACTIONS(1961), + [sym_number_literal] = ACTIONS(1963), + [anon_sym_L_SQUOTE] = ACTIONS(1965), + [anon_sym_u_SQUOTE] = ACTIONS(1965), + [anon_sym_U_SQUOTE] = ACTIONS(1965), + [anon_sym_u8_SQUOTE] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_L_DQUOTE] = ACTIONS(1967), + [anon_sym_u_DQUOTE] = ACTIONS(1967), + [anon_sym_U_DQUOTE] = ACTIONS(1967), + [anon_sym_u8_DQUOTE] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(1967), + [sym_true] = ACTIONS(1969), + [sym_false] = ACTIONS(1969), + [anon_sym_NULL] = ACTIONS(1971), + [anon_sym_nullptr] = ACTIONS(1971), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(1975), + [anon_sym_R_DQUOTE] = ACTIONS(1977), + [anon_sym_LR_DQUOTE] = ACTIONS(1977), + [anon_sym_uR_DQUOTE] = ACTIONS(1977), + [anon_sym_UR_DQUOTE] = ACTIONS(1977), + [anon_sym_u8R_DQUOTE] = ACTIONS(1977), + [anon_sym_co_await] = ACTIONS(1979), + [anon_sym_new] = ACTIONS(1981), + [anon_sym_requires] = ACTIONS(1983), + [sym_this] = ACTIONS(1969), }, [1831] = { - [sym_function_definition] = STATE(2124), - [sym_declaration] = STATE(2124), - [sym__declaration_modifiers] = STATE(2179), - [sym__declaration_specifiers] = STATE(3993), - [sym_attribute_specifier] = STATE(2179), - [sym_attribute_declaration] = STATE(2179), - [sym_ms_declspec_modifier] = STATE(2179), - [sym_ms_call_modifier] = STATE(2040), - [sym_storage_class_specifier] = STATE(2179), - [sym_type_qualifier] = STATE(2179), - [sym__type_specifier] = STATE(3156), - [sym_sized_type_specifier] = STATE(3232), - [sym_enum_specifier] = STATE(3232), - [sym_struct_specifier] = STATE(3232), - [sym_union_specifier] = STATE(3232), - [sym_placeholder_type_specifier] = STATE(3232), - [sym_decltype_auto] = STATE(3279), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3232), - [sym__class_name] = STATE(6239), - [sym_virtual] = STATE(2179), - [sym_dependent_type] = STATE(3232), - [sym_template_type] = STATE(3934), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(5006), - [sym_qualified_type_identifier] = STATE(3924), - [aux_sym__declaration_specifiers_repeat1] = STATE(2179), - [aux_sym_sized_type_specifier_repeat1] = STATE(3171), - [sym_identifier] = ACTIONS(3944), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(2928), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1413), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(61), - [anon_sym_unsigned] = ACTIONS(61), - [anon_sym_long] = ACTIONS(61), - [anon_sym_short] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2932), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(3970), - [anon_sym_struct] = ACTIONS(3972), - [anon_sym_union] = ACTIONS(3974), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(107), - [anon_sym_decltype] = ACTIONS(109), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(115), - [anon_sym_template] = ACTIONS(996), + [sym__expression] = STATE(4239), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3509), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3509), + [sym_call_expression] = STATE(3509), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3509), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3509), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3509), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3613), + [anon_sym_LPAREN2] = ACTIONS(3615), + [anon_sym_BANG] = ACTIONS(3619), + [anon_sym_TILDE] = ACTIONS(3619), + [anon_sym_DASH] = ACTIONS(3617), + [anon_sym_PLUS] = ACTIONS(3617), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(3621), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(3617), + [anon_sym_compl] = ACTIONS(3617), + [anon_sym_DASH_DASH] = ACTIONS(3623), + [anon_sym_PLUS_PLUS] = ACTIONS(3623), + [anon_sym_sizeof] = ACTIONS(3625), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(3627), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(3629), + [anon_sym_new] = ACTIONS(3631), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1832] = { - [sym_function_definition] = STATE(487), - [sym_declaration] = STATE(487), - [sym__declaration_modifiers] = STATE(2179), - [sym__declaration_specifiers] = STATE(3935), - [sym_attribute_specifier] = STATE(2179), - [sym_attribute_declaration] = STATE(2179), - [sym_ms_declspec_modifier] = STATE(2179), - [sym_ms_call_modifier] = STATE(2012), - [sym_storage_class_specifier] = STATE(2179), - [sym_type_qualifier] = STATE(2179), - [sym__type_specifier] = STATE(3156), - [sym_sized_type_specifier] = STATE(3232), - [sym_enum_specifier] = STATE(3232), - [sym_struct_specifier] = STATE(3232), - [sym_union_specifier] = STATE(3232), - [sym_placeholder_type_specifier] = STATE(3232), - [sym_decltype_auto] = STATE(3279), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3232), - [sym__class_name] = STATE(6319), - [sym_virtual] = STATE(2179), - [sym_dependent_type] = STATE(3232), - [sym_template_type] = STATE(3934), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(5006), - [sym_qualified_type_identifier] = STATE(3924), - [aux_sym__declaration_specifiers_repeat1] = STATE(2179), - [aux_sym_sized_type_specifier_repeat1] = STATE(3171), - [sym_identifier] = ACTIONS(3944), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(2928), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1413), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(61), - [anon_sym_unsigned] = ACTIONS(61), - [anon_sym_long] = ACTIONS(61), - [anon_sym_short] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2932), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(3976), - [anon_sym_struct] = ACTIONS(3978), - [anon_sym_union] = ACTIONS(3980), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(107), - [anon_sym_decltype] = ACTIONS(109), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(115), - [anon_sym_template] = ACTIONS(996), + [sym__expression] = STATE(2955), + [sym__expression_not_binary] = STATE(3021), + [sym_conditional_expression] = STATE(3021), + [sym_assignment_expression] = STATE(3021), + [sym_pointer_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_cast_expression] = STATE(3021), + [sym_sizeof_expression] = STATE(3021), + [sym_offsetof_expression] = STATE(3021), + [sym_generic_expression] = STATE(3021), + [sym_subscript_expression] = STATE(3021), + [sym_call_expression] = STATE(3021), + [sym_gnu_asm_expression] = STATE(3021), + [sym_field_expression] = STATE(3021), + [sym_compound_literal_expression] = STATE(3021), + [sym_parenthesized_expression] = STATE(3021), + [sym_char_literal] = STATE(2901), + [sym_concatenated_string] = STATE(2901), + [sym_string_literal] = STATE(2173), + [sym_null] = STATE(3021), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6616), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3021), + [sym_raw_string_literal] = STATE(2173), + [sym_co_await_expression] = STATE(3021), + [sym_new_expression] = STATE(3021), + [sym_delete_expression] = STATE(3021), + [sym_requires_clause] = STATE(3021), + [sym_requires_expression] = STATE(3021), + [sym_lambda_expression] = STATE(3021), + [sym_lambda_capture_specifier] = STATE(5188), + [sym_fold_expression] = STATE(3021), + [sym_parameter_pack_expansion] = STATE(3021), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3021), + [sym_qualified_type_identifier] = STATE(6616), + [sym_user_defined_literal] = STATE(3021), + [sym_identifier] = ACTIONS(1933), + [anon_sym_LPAREN2] = ACTIONS(1937), + [anon_sym_BANG] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(1941), + [anon_sym_DASH] = ACTIONS(1939), + [anon_sym_PLUS] = ACTIONS(1939), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(1945), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(1939), + [anon_sym_compl] = ACTIONS(1939), + [anon_sym_DASH_DASH] = ACTIONS(1953), + [anon_sym_PLUS_PLUS] = ACTIONS(1953), + [anon_sym_sizeof] = ACTIONS(1955), + [anon_sym_offsetof] = ACTIONS(1957), + [anon_sym__Generic] = ACTIONS(1959), + [anon_sym_asm] = ACTIONS(1961), + [anon_sym___asm__] = ACTIONS(1961), + [sym_number_literal] = ACTIONS(1963), + [anon_sym_L_SQUOTE] = ACTIONS(1965), + [anon_sym_u_SQUOTE] = ACTIONS(1965), + [anon_sym_U_SQUOTE] = ACTIONS(1965), + [anon_sym_u8_SQUOTE] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_L_DQUOTE] = ACTIONS(1967), + [anon_sym_u_DQUOTE] = ACTIONS(1967), + [anon_sym_U_DQUOTE] = ACTIONS(1967), + [anon_sym_u8_DQUOTE] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(1967), + [sym_true] = ACTIONS(1969), + [sym_false] = ACTIONS(1969), + [anon_sym_NULL] = ACTIONS(1971), + [anon_sym_nullptr] = ACTIONS(1971), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(1975), + [anon_sym_R_DQUOTE] = ACTIONS(1977), + [anon_sym_LR_DQUOTE] = ACTIONS(1977), + [anon_sym_uR_DQUOTE] = ACTIONS(1977), + [anon_sym_UR_DQUOTE] = ACTIONS(1977), + [anon_sym_u8R_DQUOTE] = ACTIONS(1977), + [anon_sym_co_await] = ACTIONS(1979), + [anon_sym_new] = ACTIONS(1981), + [anon_sym_requires] = ACTIONS(1983), + [sym_this] = ACTIONS(1969), }, [1833] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(3864), - [anon_sym_COMMA] = ACTIONS(3864), - [anon_sym_RPAREN] = ACTIONS(3864), - [anon_sym_LPAREN2] = ACTIONS(3864), - [anon_sym_DASH] = ACTIONS(3862), - [anon_sym_PLUS] = ACTIONS(3862), - [anon_sym_STAR] = ACTIONS(3862), - [anon_sym_SLASH] = ACTIONS(3862), - [anon_sym_PERCENT] = ACTIONS(3862), - [anon_sym_PIPE_PIPE] = ACTIONS(3864), - [anon_sym_AMP_AMP] = ACTIONS(3864), - [anon_sym_PIPE] = ACTIONS(3862), - [anon_sym_CARET] = ACTIONS(3862), - [anon_sym_AMP] = ACTIONS(3862), - [anon_sym_EQ_EQ] = ACTIONS(3864), - [anon_sym_BANG_EQ] = ACTIONS(3864), - [anon_sym_GT] = ACTIONS(3862), - [anon_sym_GT_EQ] = ACTIONS(3864), - [anon_sym_LT_EQ] = ACTIONS(3862), - [anon_sym_LT] = ACTIONS(3862), - [anon_sym_LT_LT] = ACTIONS(3862), - [anon_sym_GT_GT] = ACTIONS(3862), - [anon_sym_COLON_COLON] = ACTIONS(3864), - [anon_sym_LBRACE] = ACTIONS(3864), - [anon_sym_LBRACK] = ACTIONS(3864), - [anon_sym_EQ] = ACTIONS(3862), - [anon_sym_const] = ACTIONS(3862), - [anon_sym_volatile] = ACTIONS(3864), - [anon_sym_restrict] = ACTIONS(3864), - [anon_sym__Atomic] = ACTIONS(3864), - [anon_sym_mutable] = ACTIONS(3864), - [anon_sym_constexpr] = ACTIONS(3864), - [anon_sym_constinit] = ACTIONS(3864), - [anon_sym_consteval] = ACTIONS(3864), - [anon_sym_COLON] = ACTIONS(3862), - [anon_sym_QMARK] = ACTIONS(3864), - [anon_sym_STAR_EQ] = ACTIONS(3864), - [anon_sym_SLASH_EQ] = ACTIONS(3864), - [anon_sym_PERCENT_EQ] = ACTIONS(3864), - [anon_sym_PLUS_EQ] = ACTIONS(3864), - [anon_sym_DASH_EQ] = ACTIONS(3864), - [anon_sym_LT_LT_EQ] = ACTIONS(3864), - [anon_sym_GT_GT_EQ] = ACTIONS(3864), - [anon_sym_AMP_EQ] = ACTIONS(3864), - [anon_sym_CARET_EQ] = ACTIONS(3864), - [anon_sym_PIPE_EQ] = ACTIONS(3864), - [anon_sym_and_eq] = ACTIONS(3864), - [anon_sym_or_eq] = ACTIONS(3864), - [anon_sym_xor_eq] = ACTIONS(3864), - [anon_sym_LT_EQ_GT] = ACTIONS(3864), - [anon_sym_or] = ACTIONS(3862), - [anon_sym_and] = ACTIONS(3862), - [anon_sym_bitor] = ACTIONS(3864), - [anon_sym_xor] = ACTIONS(3862), - [anon_sym_bitand] = ACTIONS(3864), - [anon_sym_not_eq] = ACTIONS(3864), - [anon_sym_DASH_DASH] = ACTIONS(3864), - [anon_sym_PLUS_PLUS] = ACTIONS(3864), - [anon_sym_DOT] = ACTIONS(3862), - [anon_sym_DASH_GT] = ACTIONS(3862), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3864), - [anon_sym_decltype] = ACTIONS(3864), - [anon_sym_final] = ACTIONS(3864), - [anon_sym_override] = ACTIONS(3864), - [anon_sym_DOT_STAR] = ACTIONS(3864), - [anon_sym_DASH_GT_STAR] = ACTIONS(3864), + [sym__expression] = STATE(3455), + [sym__expression_not_binary] = STATE(3565), + [sym_conditional_expression] = STATE(3565), + [sym_assignment_expression] = STATE(3565), + [sym_pointer_expression] = STATE(3220), + [sym_unary_expression] = STATE(3565), + [sym_binary_expression] = STATE(3565), + [sym_update_expression] = STATE(3565), + [sym_cast_expression] = STATE(3565), + [sym_sizeof_expression] = STATE(3565), + [sym_offsetof_expression] = STATE(3565), + [sym_generic_expression] = STATE(3565), + [sym_subscript_expression] = STATE(3220), + [sym_call_expression] = STATE(3220), + [sym_gnu_asm_expression] = STATE(3565), + [sym_field_expression] = STATE(3220), + [sym_compound_literal_expression] = STATE(3565), + [sym_parenthesized_expression] = STATE(3220), + [sym_char_literal] = STATE(3429), + [sym_concatenated_string] = STATE(3429), + [sym_string_literal] = STATE(2248), + [sym_null] = STATE(3565), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6847), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3565), + [sym_raw_string_literal] = STATE(2248), + [sym_co_await_expression] = STATE(3565), + [sym_new_expression] = STATE(3565), + [sym_delete_expression] = STATE(3565), + [sym_requires_clause] = STATE(3565), + [sym_requires_expression] = STATE(3565), + [sym_lambda_expression] = STATE(3565), + [sym_lambda_capture_specifier] = STATE(5204), + [sym_fold_expression] = STATE(3565), + [sym_parameter_pack_expansion] = STATE(3565), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5232), + [sym_qualified_identifier] = STATE(3220), + [sym_qualified_type_identifier] = STATE(6847), + [sym_user_defined_literal] = STATE(3565), + [sym_identifier] = ACTIONS(2095), + [anon_sym_LPAREN2] = ACTIONS(1841), + [anon_sym_BANG] = ACTIONS(1843), + [anon_sym_TILDE] = ACTIONS(1843), + [anon_sym_DASH] = ACTIONS(1845), + [anon_sym_PLUS] = ACTIONS(1845), + [anon_sym_STAR] = ACTIONS(1847), + [anon_sym_AMP] = ACTIONS(1847), + [anon_sym_COLON_COLON] = ACTIONS(1849), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1999), + [anon_sym_not] = ACTIONS(1845), + [anon_sym_compl] = ACTIONS(1845), + [anon_sym_DASH_DASH] = ACTIONS(1861), + [anon_sym_PLUS_PLUS] = ACTIONS(1861), + [anon_sym_sizeof] = ACTIONS(1863), + [anon_sym_offsetof] = ACTIONS(1865), + [anon_sym__Generic] = ACTIONS(1867), + [anon_sym_asm] = ACTIONS(1869), + [anon_sym___asm__] = ACTIONS(1869), + [sym_number_literal] = ACTIONS(1871), + [anon_sym_L_SQUOTE] = ACTIONS(1873), + [anon_sym_u_SQUOTE] = ACTIONS(1873), + [anon_sym_U_SQUOTE] = ACTIONS(1873), + [anon_sym_u8_SQUOTE] = ACTIONS(1873), + [anon_sym_SQUOTE] = ACTIONS(1873), + [anon_sym_L_DQUOTE] = ACTIONS(1875), + [anon_sym_u_DQUOTE] = ACTIONS(1875), + [anon_sym_U_DQUOTE] = ACTIONS(1875), + [anon_sym_u8_DQUOTE] = ACTIONS(1875), + [anon_sym_DQUOTE] = ACTIONS(1875), + [sym_true] = ACTIONS(1877), + [sym_false] = ACTIONS(1877), + [anon_sym_NULL] = ACTIONS(1879), + [anon_sym_nullptr] = ACTIONS(1879), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(1883), + [anon_sym_R_DQUOTE] = ACTIONS(1885), + [anon_sym_LR_DQUOTE] = ACTIONS(1885), + [anon_sym_uR_DQUOTE] = ACTIONS(1885), + [anon_sym_UR_DQUOTE] = ACTIONS(1885), + [anon_sym_u8R_DQUOTE] = ACTIONS(1885), + [anon_sym_co_await] = ACTIONS(1887), + [anon_sym_new] = ACTIONS(1889), + [anon_sym_requires] = ACTIONS(1891), + [sym_this] = ACTIONS(1877), }, [1834] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(3894), - [anon_sym_COMMA] = ACTIONS(3894), - [anon_sym_RPAREN] = ACTIONS(3894), - [anon_sym_LPAREN2] = ACTIONS(3894), - [anon_sym_DASH] = ACTIONS(3892), - [anon_sym_PLUS] = ACTIONS(3892), - [anon_sym_STAR] = ACTIONS(3892), - [anon_sym_SLASH] = ACTIONS(3892), - [anon_sym_PERCENT] = ACTIONS(3892), - [anon_sym_PIPE_PIPE] = ACTIONS(3894), - [anon_sym_AMP_AMP] = ACTIONS(3894), - [anon_sym_PIPE] = ACTIONS(3892), - [anon_sym_CARET] = ACTIONS(3892), - [anon_sym_AMP] = ACTIONS(3892), - [anon_sym_EQ_EQ] = ACTIONS(3894), - [anon_sym_BANG_EQ] = ACTIONS(3894), - [anon_sym_GT] = ACTIONS(3892), - [anon_sym_GT_EQ] = ACTIONS(3894), - [anon_sym_LT_EQ] = ACTIONS(3892), - [anon_sym_LT] = ACTIONS(3892), - [anon_sym_LT_LT] = ACTIONS(3892), - [anon_sym_GT_GT] = ACTIONS(3892), - [anon_sym_COLON_COLON] = ACTIONS(3894), - [anon_sym_LBRACE] = ACTIONS(3894), - [anon_sym_LBRACK] = ACTIONS(3894), - [anon_sym_EQ] = ACTIONS(3892), - [anon_sym_const] = ACTIONS(3892), - [anon_sym_volatile] = ACTIONS(3894), - [anon_sym_restrict] = ACTIONS(3894), - [anon_sym__Atomic] = ACTIONS(3894), - [anon_sym_mutable] = ACTIONS(3894), - [anon_sym_constexpr] = ACTIONS(3894), - [anon_sym_constinit] = ACTIONS(3894), - [anon_sym_consteval] = ACTIONS(3894), - [anon_sym_COLON] = ACTIONS(3892), - [anon_sym_QMARK] = ACTIONS(3894), - [anon_sym_STAR_EQ] = ACTIONS(3894), - [anon_sym_SLASH_EQ] = ACTIONS(3894), - [anon_sym_PERCENT_EQ] = ACTIONS(3894), - [anon_sym_PLUS_EQ] = ACTIONS(3894), - [anon_sym_DASH_EQ] = ACTIONS(3894), - [anon_sym_LT_LT_EQ] = ACTIONS(3894), - [anon_sym_GT_GT_EQ] = ACTIONS(3894), - [anon_sym_AMP_EQ] = ACTIONS(3894), - [anon_sym_CARET_EQ] = ACTIONS(3894), - [anon_sym_PIPE_EQ] = ACTIONS(3894), - [anon_sym_and_eq] = ACTIONS(3894), - [anon_sym_or_eq] = ACTIONS(3894), - [anon_sym_xor_eq] = ACTIONS(3894), - [anon_sym_LT_EQ_GT] = ACTIONS(3894), - [anon_sym_or] = ACTIONS(3892), - [anon_sym_and] = ACTIONS(3892), - [anon_sym_bitor] = ACTIONS(3894), - [anon_sym_xor] = ACTIONS(3892), - [anon_sym_bitand] = ACTIONS(3894), - [anon_sym_not_eq] = ACTIONS(3894), - [anon_sym_DASH_DASH] = ACTIONS(3894), - [anon_sym_PLUS_PLUS] = ACTIONS(3894), - [anon_sym_DOT] = ACTIONS(3892), - [anon_sym_DASH_GT] = ACTIONS(3892), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3894), - [anon_sym_decltype] = ACTIONS(3894), - [anon_sym_final] = ACTIONS(3894), - [anon_sym_override] = ACTIONS(3894), - [anon_sym_DOT_STAR] = ACTIONS(3894), - [anon_sym_DASH_GT_STAR] = ACTIONS(3894), + [sym__expression] = STATE(3525), + [sym__expression_not_binary] = STATE(3565), + [sym_conditional_expression] = STATE(3565), + [sym_assignment_expression] = STATE(3565), + [sym_pointer_expression] = STATE(3220), + [sym_unary_expression] = STATE(3565), + [sym_binary_expression] = STATE(3565), + [sym_update_expression] = STATE(3565), + [sym_cast_expression] = STATE(3565), + [sym_sizeof_expression] = STATE(3565), + [sym_offsetof_expression] = STATE(3565), + [sym_generic_expression] = STATE(3565), + [sym_subscript_expression] = STATE(3220), + [sym_call_expression] = STATE(3220), + [sym_gnu_asm_expression] = STATE(3565), + [sym_field_expression] = STATE(3220), + [sym_compound_literal_expression] = STATE(3565), + [sym_parenthesized_expression] = STATE(3220), + [sym_char_literal] = STATE(3429), + [sym_concatenated_string] = STATE(3429), + [sym_string_literal] = STATE(2248), + [sym_null] = STATE(3565), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6847), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3565), + [sym_raw_string_literal] = STATE(2248), + [sym_co_await_expression] = STATE(3565), + [sym_new_expression] = STATE(3565), + [sym_delete_expression] = STATE(3565), + [sym_requires_clause] = STATE(3565), + [sym_requires_expression] = STATE(3565), + [sym_lambda_expression] = STATE(3565), + [sym_lambda_capture_specifier] = STATE(5204), + [sym_fold_expression] = STATE(3565), + [sym_parameter_pack_expansion] = STATE(3565), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5232), + [sym_qualified_identifier] = STATE(3220), + [sym_qualified_type_identifier] = STATE(6847), + [sym_user_defined_literal] = STATE(3565), + [sym_identifier] = ACTIONS(2095), + [anon_sym_LPAREN2] = ACTIONS(1841), + [anon_sym_BANG] = ACTIONS(1843), + [anon_sym_TILDE] = ACTIONS(1843), + [anon_sym_DASH] = ACTIONS(1845), + [anon_sym_PLUS] = ACTIONS(1845), + [anon_sym_STAR] = ACTIONS(1847), + [anon_sym_AMP] = ACTIONS(1847), + [anon_sym_COLON_COLON] = ACTIONS(1849), + [anon_sym_LBRACK] = ACTIONS(4411), + [sym_primitive_type] = ACTIONS(1999), + [anon_sym_not] = ACTIONS(1845), + [anon_sym_compl] = ACTIONS(1845), + [anon_sym_DASH_DASH] = ACTIONS(1861), + [anon_sym_PLUS_PLUS] = ACTIONS(1861), + [anon_sym_sizeof] = ACTIONS(1863), + [anon_sym_offsetof] = ACTIONS(1865), + [anon_sym__Generic] = ACTIONS(1867), + [anon_sym_asm] = ACTIONS(1869), + [anon_sym___asm__] = ACTIONS(1869), + [sym_number_literal] = ACTIONS(1871), + [anon_sym_L_SQUOTE] = ACTIONS(1873), + [anon_sym_u_SQUOTE] = ACTIONS(1873), + [anon_sym_U_SQUOTE] = ACTIONS(1873), + [anon_sym_u8_SQUOTE] = ACTIONS(1873), + [anon_sym_SQUOTE] = ACTIONS(1873), + [anon_sym_L_DQUOTE] = ACTIONS(1875), + [anon_sym_u_DQUOTE] = ACTIONS(1875), + [anon_sym_U_DQUOTE] = ACTIONS(1875), + [anon_sym_u8_DQUOTE] = ACTIONS(1875), + [anon_sym_DQUOTE] = ACTIONS(1875), + [sym_true] = ACTIONS(1877), + [sym_false] = ACTIONS(1877), + [anon_sym_NULL] = ACTIONS(1879), + [anon_sym_nullptr] = ACTIONS(1879), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(1883), + [anon_sym_R_DQUOTE] = ACTIONS(1885), + [anon_sym_LR_DQUOTE] = ACTIONS(1885), + [anon_sym_uR_DQUOTE] = ACTIONS(1885), + [anon_sym_UR_DQUOTE] = ACTIONS(1885), + [anon_sym_u8R_DQUOTE] = ACTIONS(1885), + [anon_sym_co_await] = ACTIONS(1887), + [anon_sym_new] = ACTIONS(1889), + [anon_sym_requires] = ACTIONS(1891), + [sym_this] = ACTIONS(1877), }, [1835] = { - [sym_function_definition] = STATE(975), - [sym_declaration] = STATE(975), - [sym__declaration_modifiers] = STATE(2179), - [sym__declaration_specifiers] = STATE(3946), - [sym_attribute_specifier] = STATE(2179), - [sym_attribute_declaration] = STATE(2179), - [sym_ms_declspec_modifier] = STATE(2179), - [sym_ms_call_modifier] = STATE(2076), - [sym_storage_class_specifier] = STATE(2179), - [sym_type_qualifier] = STATE(2179), - [sym__type_specifier] = STATE(3156), - [sym_sized_type_specifier] = STATE(3232), - [sym_enum_specifier] = STATE(3232), - [sym_struct_specifier] = STATE(3232), - [sym_union_specifier] = STATE(3232), - [sym_placeholder_type_specifier] = STATE(3232), - [sym_decltype_auto] = STATE(3279), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3232), - [sym__class_name] = STATE(6554), - [sym_virtual] = STATE(2179), - [sym_dependent_type] = STATE(3232), - [sym_template_type] = STATE(3934), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(5006), - [sym_qualified_type_identifier] = STATE(3924), - [aux_sym__declaration_specifiers_repeat1] = STATE(2179), - [aux_sym_sized_type_specifier_repeat1] = STATE(3171), - [sym_identifier] = ACTIONS(3944), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(2928), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1413), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(61), - [anon_sym_unsigned] = ACTIONS(61), - [anon_sym_long] = ACTIONS(61), - [anon_sym_short] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2932), - [anon_sym_enum] = ACTIONS(65), - [anon_sym_class] = ACTIONS(3982), - [anon_sym_struct] = ACTIONS(3984), - [anon_sym_union] = ACTIONS(3986), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(107), - [anon_sym_decltype] = ACTIONS(109), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(115), - [anon_sym_template] = ACTIONS(996), + [sym__expression] = STATE(4475), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3579), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3579), + [sym_call_expression] = STATE(3579), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3579), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3579), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3579), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3633), + [anon_sym_LPAREN2] = ACTIONS(3635), + [anon_sym_BANG] = ACTIONS(3639), + [anon_sym_TILDE] = ACTIONS(3639), + [anon_sym_DASH] = ACTIONS(3637), + [anon_sym_PLUS] = ACTIONS(3637), + [anon_sym_STAR] = ACTIONS(3641), + [anon_sym_AMP] = ACTIONS(3641), + [anon_sym_COLON_COLON] = ACTIONS(3643), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(3637), + [anon_sym_compl] = ACTIONS(3637), + [anon_sym_DASH_DASH] = ACTIONS(3645), + [anon_sym_PLUS_PLUS] = ACTIONS(3645), + [anon_sym_sizeof] = ACTIONS(3647), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(3649), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(3651), + [anon_sym_new] = ACTIONS(3631), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1836] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(3904), - [anon_sym_COMMA] = ACTIONS(3904), - [anon_sym_RPAREN] = ACTIONS(3904), - [anon_sym_LPAREN2] = ACTIONS(3904), - [anon_sym_DASH] = ACTIONS(3902), - [anon_sym_PLUS] = ACTIONS(3902), - [anon_sym_STAR] = ACTIONS(3902), - [anon_sym_SLASH] = ACTIONS(3902), - [anon_sym_PERCENT] = ACTIONS(3902), - [anon_sym_PIPE_PIPE] = ACTIONS(3904), - [anon_sym_AMP_AMP] = ACTIONS(3904), - [anon_sym_PIPE] = ACTIONS(3902), - [anon_sym_CARET] = ACTIONS(3902), - [anon_sym_AMP] = ACTIONS(3902), - [anon_sym_EQ_EQ] = ACTIONS(3904), - [anon_sym_BANG_EQ] = ACTIONS(3904), - [anon_sym_GT] = ACTIONS(3902), - [anon_sym_GT_EQ] = ACTIONS(3904), - [anon_sym_LT_EQ] = ACTIONS(3902), - [anon_sym_LT] = ACTIONS(3902), - [anon_sym_LT_LT] = ACTIONS(3902), - [anon_sym_GT_GT] = ACTIONS(3902), - [anon_sym_COLON_COLON] = ACTIONS(3904), - [anon_sym_LBRACE] = ACTIONS(3904), - [anon_sym_LBRACK] = ACTIONS(3904), - [anon_sym_EQ] = ACTIONS(3902), - [anon_sym_const] = ACTIONS(3902), - [anon_sym_volatile] = ACTIONS(3904), - [anon_sym_restrict] = ACTIONS(3904), - [anon_sym__Atomic] = ACTIONS(3904), - [anon_sym_mutable] = ACTIONS(3904), - [anon_sym_constexpr] = ACTIONS(3904), - [anon_sym_constinit] = ACTIONS(3904), - [anon_sym_consteval] = ACTIONS(3904), - [anon_sym_COLON] = ACTIONS(3902), - [anon_sym_QMARK] = ACTIONS(3904), - [anon_sym_STAR_EQ] = ACTIONS(3904), - [anon_sym_SLASH_EQ] = ACTIONS(3904), - [anon_sym_PERCENT_EQ] = ACTIONS(3904), - [anon_sym_PLUS_EQ] = ACTIONS(3904), - [anon_sym_DASH_EQ] = ACTIONS(3904), - [anon_sym_LT_LT_EQ] = ACTIONS(3904), - [anon_sym_GT_GT_EQ] = ACTIONS(3904), - [anon_sym_AMP_EQ] = ACTIONS(3904), - [anon_sym_CARET_EQ] = ACTIONS(3904), - [anon_sym_PIPE_EQ] = ACTIONS(3904), - [anon_sym_and_eq] = ACTIONS(3904), - [anon_sym_or_eq] = ACTIONS(3904), - [anon_sym_xor_eq] = ACTIONS(3904), - [anon_sym_LT_EQ_GT] = ACTIONS(3904), - [anon_sym_or] = ACTIONS(3902), - [anon_sym_and] = ACTIONS(3902), - [anon_sym_bitor] = ACTIONS(3904), - [anon_sym_xor] = ACTIONS(3902), - [anon_sym_bitand] = ACTIONS(3904), - [anon_sym_not_eq] = ACTIONS(3904), - [anon_sym_DASH_DASH] = ACTIONS(3904), - [anon_sym_PLUS_PLUS] = ACTIONS(3904), - [anon_sym_DOT] = ACTIONS(3902), - [anon_sym_DASH_GT] = ACTIONS(3902), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3904), - [anon_sym_decltype] = ACTIONS(3904), - [anon_sym_final] = ACTIONS(3904), - [anon_sym_override] = ACTIONS(3904), - [anon_sym_DOT_STAR] = ACTIONS(3904), - [anon_sym_DASH_GT_STAR] = ACTIONS(3904), + [sym__expression] = STATE(3497), + [sym__expression_not_binary] = STATE(3021), + [sym_conditional_expression] = STATE(3021), + [sym_assignment_expression] = STATE(3021), + [sym_pointer_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_cast_expression] = STATE(3021), + [sym_sizeof_expression] = STATE(3021), + [sym_offsetof_expression] = STATE(3021), + [sym_generic_expression] = STATE(3021), + [sym_subscript_expression] = STATE(3021), + [sym_call_expression] = STATE(3021), + [sym_gnu_asm_expression] = STATE(3021), + [sym_field_expression] = STATE(3021), + [sym_compound_literal_expression] = STATE(3021), + [sym_parenthesized_expression] = STATE(3021), + [sym_char_literal] = STATE(2901), + [sym_concatenated_string] = STATE(2901), + [sym_string_literal] = STATE(2173), + [sym_null] = STATE(3021), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6616), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3021), + [sym_raw_string_literal] = STATE(2173), + [sym_co_await_expression] = STATE(3021), + [sym_new_expression] = STATE(3021), + [sym_delete_expression] = STATE(3021), + [sym_requires_clause] = STATE(3021), + [sym_requires_expression] = STATE(3021), + [sym_lambda_expression] = STATE(3021), + [sym_lambda_capture_specifier] = STATE(5188), + [sym_fold_expression] = STATE(3021), + [sym_parameter_pack_expansion] = STATE(3021), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3021), + [sym_qualified_type_identifier] = STATE(6616), + [sym_user_defined_literal] = STATE(3021), + [sym_identifier] = ACTIONS(1933), + [anon_sym_LPAREN2] = ACTIONS(2077), + [anon_sym_BANG] = ACTIONS(2081), + [anon_sym_TILDE] = ACTIONS(2081), + [anon_sym_DASH] = ACTIONS(2079), + [anon_sym_PLUS] = ACTIONS(2079), + [anon_sym_STAR] = ACTIONS(3641), + [anon_sym_AMP] = ACTIONS(3641), + [anon_sym_COLON_COLON] = ACTIONS(2085), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(2079), + [anon_sym_compl] = ACTIONS(2079), + [anon_sym_DASH_DASH] = ACTIONS(2087), + [anon_sym_PLUS_PLUS] = ACTIONS(2087), + [anon_sym_sizeof] = ACTIONS(2089), + [anon_sym_offsetof] = ACTIONS(1957), + [anon_sym__Generic] = ACTIONS(1959), + [anon_sym_asm] = ACTIONS(1961), + [anon_sym___asm__] = ACTIONS(1961), + [sym_number_literal] = ACTIONS(1963), + [anon_sym_L_SQUOTE] = ACTIONS(1965), + [anon_sym_u_SQUOTE] = ACTIONS(1965), + [anon_sym_U_SQUOTE] = ACTIONS(1965), + [anon_sym_u8_SQUOTE] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_L_DQUOTE] = ACTIONS(1967), + [anon_sym_u_DQUOTE] = ACTIONS(1967), + [anon_sym_U_DQUOTE] = ACTIONS(1967), + [anon_sym_u8_DQUOTE] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(1967), + [sym_true] = ACTIONS(1969), + [sym_false] = ACTIONS(1969), + [anon_sym_NULL] = ACTIONS(1971), + [anon_sym_nullptr] = ACTIONS(1971), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(2091), + [anon_sym_R_DQUOTE] = ACTIONS(1977), + [anon_sym_LR_DQUOTE] = ACTIONS(1977), + [anon_sym_uR_DQUOTE] = ACTIONS(1977), + [anon_sym_UR_DQUOTE] = ACTIONS(1977), + [anon_sym_u8R_DQUOTE] = ACTIONS(1977), + [anon_sym_co_await] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(1981), + [anon_sym_requires] = ACTIONS(1983), + [sym_this] = ACTIONS(1969), }, [1837] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(3868), - [anon_sym_COMMA] = ACTIONS(3868), - [anon_sym_RPAREN] = ACTIONS(3868), - [anon_sym_LPAREN2] = ACTIONS(3868), - [anon_sym_DASH] = ACTIONS(3866), - [anon_sym_PLUS] = ACTIONS(3866), - [anon_sym_STAR] = ACTIONS(3866), - [anon_sym_SLASH] = ACTIONS(3866), - [anon_sym_PERCENT] = ACTIONS(3866), - [anon_sym_PIPE_PIPE] = ACTIONS(3868), - [anon_sym_AMP_AMP] = ACTIONS(3868), - [anon_sym_PIPE] = ACTIONS(3866), - [anon_sym_CARET] = ACTIONS(3866), - [anon_sym_AMP] = ACTIONS(3866), - [anon_sym_EQ_EQ] = ACTIONS(3868), - [anon_sym_BANG_EQ] = ACTIONS(3868), - [anon_sym_GT] = ACTIONS(3866), - [anon_sym_GT_EQ] = ACTIONS(3868), - [anon_sym_LT_EQ] = ACTIONS(3866), - [anon_sym_LT] = ACTIONS(3866), - [anon_sym_LT_LT] = ACTIONS(3866), - [anon_sym_GT_GT] = ACTIONS(3866), - [anon_sym_COLON_COLON] = ACTIONS(3868), - [anon_sym_LBRACE] = ACTIONS(3868), - [anon_sym_LBRACK] = ACTIONS(3868), - [anon_sym_EQ] = ACTIONS(3866), - [anon_sym_const] = ACTIONS(3866), - [anon_sym_volatile] = ACTIONS(3868), - [anon_sym_restrict] = ACTIONS(3868), - [anon_sym__Atomic] = ACTIONS(3868), - [anon_sym_mutable] = ACTIONS(3868), - [anon_sym_constexpr] = ACTIONS(3868), - [anon_sym_constinit] = ACTIONS(3868), - [anon_sym_consteval] = ACTIONS(3868), - [anon_sym_COLON] = ACTIONS(3866), - [anon_sym_QMARK] = ACTIONS(3868), - [anon_sym_STAR_EQ] = ACTIONS(3868), - [anon_sym_SLASH_EQ] = ACTIONS(3868), - [anon_sym_PERCENT_EQ] = ACTIONS(3868), - [anon_sym_PLUS_EQ] = ACTIONS(3868), - [anon_sym_DASH_EQ] = ACTIONS(3868), - [anon_sym_LT_LT_EQ] = ACTIONS(3868), - [anon_sym_GT_GT_EQ] = ACTIONS(3868), - [anon_sym_AMP_EQ] = ACTIONS(3868), - [anon_sym_CARET_EQ] = ACTIONS(3868), - [anon_sym_PIPE_EQ] = ACTIONS(3868), - [anon_sym_and_eq] = ACTIONS(3868), - [anon_sym_or_eq] = ACTIONS(3868), - [anon_sym_xor_eq] = ACTIONS(3868), - [anon_sym_LT_EQ_GT] = ACTIONS(3868), - [anon_sym_or] = ACTIONS(3866), - [anon_sym_and] = ACTIONS(3866), - [anon_sym_bitor] = ACTIONS(3868), - [anon_sym_xor] = ACTIONS(3866), - [anon_sym_bitand] = ACTIONS(3868), - [anon_sym_not_eq] = ACTIONS(3868), - [anon_sym_DASH_DASH] = ACTIONS(3868), - [anon_sym_PLUS_PLUS] = ACTIONS(3868), - [anon_sym_DOT] = ACTIONS(3866), - [anon_sym_DASH_GT] = ACTIONS(3866), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3868), - [anon_sym_decltype] = ACTIONS(3868), - [anon_sym_final] = ACTIONS(3868), - [anon_sym_override] = ACTIONS(3868), - [anon_sym_DOT_STAR] = ACTIONS(3868), - [anon_sym_DASH_GT_STAR] = ACTIONS(3868), + [sym__expression] = STATE(3498), + [sym__expression_not_binary] = STATE(3021), + [sym_conditional_expression] = STATE(3021), + [sym_assignment_expression] = STATE(3021), + [sym_pointer_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_cast_expression] = STATE(3021), + [sym_sizeof_expression] = STATE(3021), + [sym_offsetof_expression] = STATE(3021), + [sym_generic_expression] = STATE(3021), + [sym_subscript_expression] = STATE(3021), + [sym_call_expression] = STATE(3021), + [sym_gnu_asm_expression] = STATE(3021), + [sym_field_expression] = STATE(3021), + [sym_compound_literal_expression] = STATE(3021), + [sym_parenthesized_expression] = STATE(3021), + [sym_char_literal] = STATE(2901), + [sym_concatenated_string] = STATE(2901), + [sym_string_literal] = STATE(2173), + [sym_null] = STATE(3021), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6616), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3021), + [sym_raw_string_literal] = STATE(2173), + [sym_co_await_expression] = STATE(3021), + [sym_new_expression] = STATE(3021), + [sym_delete_expression] = STATE(3021), + [sym_requires_clause] = STATE(3021), + [sym_requires_expression] = STATE(3021), + [sym_lambda_expression] = STATE(3021), + [sym_lambda_capture_specifier] = STATE(5188), + [sym_fold_expression] = STATE(3021), + [sym_parameter_pack_expansion] = STATE(3021), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3021), + [sym_qualified_type_identifier] = STATE(6616), + [sym_user_defined_literal] = STATE(3021), + [sym_identifier] = ACTIONS(1933), + [anon_sym_LPAREN2] = ACTIONS(2077), + [anon_sym_BANG] = ACTIONS(2081), + [anon_sym_TILDE] = ACTIONS(2081), + [anon_sym_DASH] = ACTIONS(2079), + [anon_sym_PLUS] = ACTIONS(2079), + [anon_sym_STAR] = ACTIONS(3641), + [anon_sym_AMP] = ACTIONS(3641), + [anon_sym_COLON_COLON] = ACTIONS(2085), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(2079), + [anon_sym_compl] = ACTIONS(2079), + [anon_sym_DASH_DASH] = ACTIONS(2087), + [anon_sym_PLUS_PLUS] = ACTIONS(2087), + [anon_sym_sizeof] = ACTIONS(2089), + [anon_sym_offsetof] = ACTIONS(1957), + [anon_sym__Generic] = ACTIONS(1959), + [anon_sym_asm] = ACTIONS(1961), + [anon_sym___asm__] = ACTIONS(1961), + [sym_number_literal] = ACTIONS(1963), + [anon_sym_L_SQUOTE] = ACTIONS(1965), + [anon_sym_u_SQUOTE] = ACTIONS(1965), + [anon_sym_U_SQUOTE] = ACTIONS(1965), + [anon_sym_u8_SQUOTE] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_L_DQUOTE] = ACTIONS(1967), + [anon_sym_u_DQUOTE] = ACTIONS(1967), + [anon_sym_U_DQUOTE] = ACTIONS(1967), + [anon_sym_u8_DQUOTE] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(1967), + [sym_true] = ACTIONS(1969), + [sym_false] = ACTIONS(1969), + [anon_sym_NULL] = ACTIONS(1971), + [anon_sym_nullptr] = ACTIONS(1971), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(2091), + [anon_sym_R_DQUOTE] = ACTIONS(1977), + [anon_sym_LR_DQUOTE] = ACTIONS(1977), + [anon_sym_uR_DQUOTE] = ACTIONS(1977), + [anon_sym_UR_DQUOTE] = ACTIONS(1977), + [anon_sym_u8R_DQUOTE] = ACTIONS(1977), + [anon_sym_co_await] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(1981), + [anon_sym_requires] = ACTIONS(1983), + [sym_this] = ACTIONS(1969), }, [1838] = { - [sym_template_argument_list] = STATE(1846), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3843), - [anon_sym_COMMA] = ACTIONS(3843), - [anon_sym_RPAREN] = ACTIONS(3833), - [anon_sym_LPAREN2] = ACTIONS(3833), - [anon_sym_DASH] = ACTIONS(3838), - [anon_sym_PLUS] = ACTIONS(3838), - [anon_sym_STAR] = ACTIONS(3840), - [anon_sym_SLASH] = ACTIONS(3838), - [anon_sym_PERCENT] = ACTIONS(3838), - [anon_sym_PIPE_PIPE] = ACTIONS(3843), - [anon_sym_AMP_AMP] = ACTIONS(3833), - [anon_sym_PIPE] = ACTIONS(3838), - [anon_sym_CARET] = ACTIONS(3838), - [anon_sym_AMP] = ACTIONS(3840), - [anon_sym_EQ_EQ] = ACTIONS(3843), - [anon_sym_BANG_EQ] = ACTIONS(3843), - [anon_sym_GT] = ACTIONS(3838), - [anon_sym_GT_EQ] = ACTIONS(3843), - [anon_sym_LT_EQ] = ACTIONS(3838), - [anon_sym_LT] = ACTIONS(3845), - [anon_sym_LT_LT] = ACTIONS(3838), - [anon_sym_GT_GT] = ACTIONS(3838), - [anon_sym_COLON_COLON] = ACTIONS(3814), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3843), - [anon_sym_LBRACE] = ACTIONS(3836), - [anon_sym_LBRACK] = ACTIONS(3840), - [anon_sym_EQ] = ACTIONS(3838), - [anon_sym_const] = ACTIONS(3831), - [anon_sym_volatile] = ACTIONS(3836), - [anon_sym_restrict] = ACTIONS(3836), - [anon_sym__Atomic] = ACTIONS(3836), - [anon_sym_mutable] = ACTIONS(3836), - [anon_sym_constexpr] = ACTIONS(3836), - [anon_sym_constinit] = ACTIONS(3836), - [anon_sym_consteval] = ACTIONS(3836), - [anon_sym_QMARK] = ACTIONS(3843), - [anon_sym_STAR_EQ] = ACTIONS(3843), - [anon_sym_SLASH_EQ] = ACTIONS(3843), - [anon_sym_PERCENT_EQ] = ACTIONS(3843), - [anon_sym_PLUS_EQ] = ACTIONS(3843), - [anon_sym_DASH_EQ] = ACTIONS(3843), - [anon_sym_LT_LT_EQ] = ACTIONS(3843), - [anon_sym_GT_GT_EQ] = ACTIONS(3843), - [anon_sym_AMP_EQ] = ACTIONS(3843), - [anon_sym_CARET_EQ] = ACTIONS(3843), - [anon_sym_PIPE_EQ] = ACTIONS(3843), - [anon_sym_and_eq] = ACTIONS(3843), - [anon_sym_or_eq] = ACTIONS(3843), - [anon_sym_xor_eq] = ACTIONS(3843), - [anon_sym_LT_EQ_GT] = ACTIONS(3843), - [anon_sym_or] = ACTIONS(3838), - [anon_sym_and] = ACTIONS(3838), - [anon_sym_bitor] = ACTIONS(3843), - [anon_sym_xor] = ACTIONS(3838), - [anon_sym_bitand] = ACTIONS(3843), - [anon_sym_not_eq] = ACTIONS(3843), - [anon_sym_DASH_DASH] = ACTIONS(3843), - [anon_sym_PLUS_PLUS] = ACTIONS(3843), - [anon_sym_DOT] = ACTIONS(3838), - [anon_sym_DASH_GT] = ACTIONS(3838), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3836), - [anon_sym_decltype] = ACTIONS(3836), - [anon_sym_DOT_STAR] = ACTIONS(3843), - [anon_sym_DASH_GT_STAR] = ACTIONS(3843), + [sym__expression] = STATE(3437), + [sym__expression_not_binary] = STATE(3021), + [sym_conditional_expression] = STATE(3021), + [sym_assignment_expression] = STATE(3021), + [sym_pointer_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_cast_expression] = STATE(3021), + [sym_sizeof_expression] = STATE(3021), + [sym_offsetof_expression] = STATE(3021), + [sym_generic_expression] = STATE(3021), + [sym_subscript_expression] = STATE(3021), + [sym_call_expression] = STATE(3021), + [sym_gnu_asm_expression] = STATE(3021), + [sym_field_expression] = STATE(3021), + [sym_compound_literal_expression] = STATE(3021), + [sym_parenthesized_expression] = STATE(3021), + [sym_char_literal] = STATE(2901), + [sym_concatenated_string] = STATE(2901), + [sym_string_literal] = STATE(2173), + [sym_null] = STATE(3021), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6616), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3021), + [sym_raw_string_literal] = STATE(2173), + [sym_co_await_expression] = STATE(3021), + [sym_new_expression] = STATE(3021), + [sym_delete_expression] = STATE(3021), + [sym_requires_clause] = STATE(3021), + [sym_requires_expression] = STATE(3021), + [sym_lambda_expression] = STATE(3021), + [sym_lambda_capture_specifier] = STATE(5188), + [sym_fold_expression] = STATE(3021), + [sym_parameter_pack_expansion] = STATE(3021), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3021), + [sym_qualified_type_identifier] = STATE(6616), + [sym_user_defined_literal] = STATE(3021), + [sym_identifier] = ACTIONS(1933), + [anon_sym_LPAREN2] = ACTIONS(2077), + [anon_sym_BANG] = ACTIONS(2081), + [anon_sym_TILDE] = ACTIONS(2081), + [anon_sym_DASH] = ACTIONS(2079), + [anon_sym_PLUS] = ACTIONS(2079), + [anon_sym_STAR] = ACTIONS(3641), + [anon_sym_AMP] = ACTIONS(3641), + [anon_sym_COLON_COLON] = ACTIONS(2085), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(2079), + [anon_sym_compl] = ACTIONS(2079), + [anon_sym_DASH_DASH] = ACTIONS(2087), + [anon_sym_PLUS_PLUS] = ACTIONS(2087), + [anon_sym_sizeof] = ACTIONS(2089), + [anon_sym_offsetof] = ACTIONS(1957), + [anon_sym__Generic] = ACTIONS(1959), + [anon_sym_asm] = ACTIONS(1961), + [anon_sym___asm__] = ACTIONS(1961), + [sym_number_literal] = ACTIONS(1963), + [anon_sym_L_SQUOTE] = ACTIONS(1965), + [anon_sym_u_SQUOTE] = ACTIONS(1965), + [anon_sym_U_SQUOTE] = ACTIONS(1965), + [anon_sym_u8_SQUOTE] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_L_DQUOTE] = ACTIONS(1967), + [anon_sym_u_DQUOTE] = ACTIONS(1967), + [anon_sym_U_DQUOTE] = ACTIONS(1967), + [anon_sym_u8_DQUOTE] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(1967), + [sym_true] = ACTIONS(1969), + [sym_false] = ACTIONS(1969), + [anon_sym_NULL] = ACTIONS(1971), + [anon_sym_nullptr] = ACTIONS(1971), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(2091), + [anon_sym_R_DQUOTE] = ACTIONS(1977), + [anon_sym_LR_DQUOTE] = ACTIONS(1977), + [anon_sym_uR_DQUOTE] = ACTIONS(1977), + [anon_sym_UR_DQUOTE] = ACTIONS(1977), + [anon_sym_u8R_DQUOTE] = ACTIONS(1977), + [anon_sym_co_await] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(1981), + [anon_sym_requires] = ACTIONS(1983), + [sym_this] = ACTIONS(1969), }, [1839] = { - [sym_template_argument_list] = STATE(1889), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3795), - [anon_sym_COMMA] = ACTIONS(3795), - [anon_sym_RPAREN] = ACTIONS(3797), - [anon_sym_LPAREN2] = ACTIONS(3797), - [anon_sym_DASH] = ACTIONS(3803), - [anon_sym_PLUS] = ACTIONS(3803), - [anon_sym_STAR] = ACTIONS(3805), - [anon_sym_SLASH] = ACTIONS(3803), - [anon_sym_PERCENT] = ACTIONS(3803), - [anon_sym_PIPE_PIPE] = ACTIONS(3795), - [anon_sym_AMP_AMP] = ACTIONS(3808), - [anon_sym_PIPE] = ACTIONS(3803), - [anon_sym_CARET] = ACTIONS(3803), - [anon_sym_AMP] = ACTIONS(3805), - [anon_sym_EQ_EQ] = ACTIONS(3795), - [anon_sym_BANG_EQ] = ACTIONS(3795), - [anon_sym_GT] = ACTIONS(3803), - [anon_sym_GT_EQ] = ACTIONS(3795), - [anon_sym_LT_EQ] = ACTIONS(3803), - [anon_sym_LT] = ACTIONS(3848), - [anon_sym_LT_LT] = ACTIONS(3803), - [anon_sym_GT_GT] = ACTIONS(3803), - [anon_sym_COLON_COLON] = ACTIONS(3814), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3988), - [anon_sym_LBRACE] = ACTIONS(3819), - [anon_sym_LBRACK] = ACTIONS(3821), - [anon_sym_EQ] = ACTIONS(3803), - [anon_sym_const] = ACTIONS(3793), - [anon_sym_volatile] = ACTIONS(3801), - [anon_sym_restrict] = ACTIONS(3801), - [anon_sym__Atomic] = ACTIONS(3801), - [anon_sym_mutable] = ACTIONS(3801), - [anon_sym_constexpr] = ACTIONS(3801), - [anon_sym_constinit] = ACTIONS(3801), - [anon_sym_consteval] = ACTIONS(3801), - [anon_sym_QMARK] = ACTIONS(3795), - [anon_sym_STAR_EQ] = ACTIONS(3795), - [anon_sym_SLASH_EQ] = ACTIONS(3795), - [anon_sym_PERCENT_EQ] = ACTIONS(3795), - [anon_sym_PLUS_EQ] = ACTIONS(3795), - [anon_sym_DASH_EQ] = ACTIONS(3795), - [anon_sym_LT_LT_EQ] = ACTIONS(3795), - [anon_sym_GT_GT_EQ] = ACTIONS(3795), - [anon_sym_AMP_EQ] = ACTIONS(3795), - [anon_sym_CARET_EQ] = ACTIONS(3795), - [anon_sym_PIPE_EQ] = ACTIONS(3795), - [anon_sym_and_eq] = ACTIONS(3990), - [anon_sym_or_eq] = ACTIONS(3990), - [anon_sym_xor_eq] = ACTIONS(3990), - [anon_sym_LT_EQ_GT] = ACTIONS(3795), - [anon_sym_or] = ACTIONS(3803), - [anon_sym_and] = ACTIONS(3803), - [anon_sym_bitor] = ACTIONS(3795), - [anon_sym_xor] = ACTIONS(3803), - [anon_sym_bitand] = ACTIONS(3795), - [anon_sym_not_eq] = ACTIONS(3795), - [anon_sym_DASH_DASH] = ACTIONS(3795), - [anon_sym_PLUS_PLUS] = ACTIONS(3795), - [anon_sym_DOT] = ACTIONS(3803), - [anon_sym_DASH_GT] = ACTIONS(3803), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3801), - [anon_sym_decltype] = ACTIONS(3801), - [anon_sym_DOT_STAR] = ACTIONS(3795), - [anon_sym_DASH_GT_STAR] = ACTIONS(3795), + [sym__expression] = STATE(4007), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(4413), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1840] = { - [sym_string_literal] = STATE(1841), - [sym_raw_string_literal] = STATE(1841), - [aux_sym_concatenated_string_repeat1] = STATE(1841), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3795), - [anon_sym_COMMA] = ACTIONS(3795), - [anon_sym_RPAREN] = ACTIONS(3795), - [anon_sym_LPAREN2] = ACTIONS(3795), - [anon_sym_DASH] = ACTIONS(3803), - [anon_sym_PLUS] = ACTIONS(3803), - [anon_sym_STAR] = ACTIONS(3803), - [anon_sym_SLASH] = ACTIONS(3803), - [anon_sym_PERCENT] = ACTIONS(3803), - [anon_sym_PIPE_PIPE] = ACTIONS(3795), - [anon_sym_AMP_AMP] = ACTIONS(3795), - [anon_sym_PIPE] = ACTIONS(3803), - [anon_sym_CARET] = ACTIONS(3803), - [anon_sym_AMP] = ACTIONS(3803), - [anon_sym_EQ_EQ] = ACTIONS(3795), - [anon_sym_BANG_EQ] = ACTIONS(3795), - [anon_sym_GT] = ACTIONS(3803), - [anon_sym_GT_EQ] = ACTIONS(3795), - [anon_sym_LT_EQ] = ACTIONS(3803), - [anon_sym_LT] = ACTIONS(3803), - [anon_sym_LT_LT] = ACTIONS(3803), - [anon_sym_GT_GT] = ACTIONS(3803), - [anon_sym_LBRACK] = ACTIONS(3795), - [anon_sym_EQ] = ACTIONS(3803), - [anon_sym_QMARK] = ACTIONS(3795), - [anon_sym_STAR_EQ] = ACTIONS(3795), - [anon_sym_SLASH_EQ] = ACTIONS(3795), - [anon_sym_PERCENT_EQ] = ACTIONS(3795), - [anon_sym_PLUS_EQ] = ACTIONS(3795), - [anon_sym_DASH_EQ] = ACTIONS(3795), - [anon_sym_LT_LT_EQ] = ACTIONS(3795), - [anon_sym_GT_GT_EQ] = ACTIONS(3795), - [anon_sym_AMP_EQ] = ACTIONS(3795), - [anon_sym_CARET_EQ] = ACTIONS(3795), - [anon_sym_PIPE_EQ] = ACTIONS(3795), - [anon_sym_and_eq] = ACTIONS(3803), - [anon_sym_or_eq] = ACTIONS(3803), - [anon_sym_xor_eq] = ACTIONS(3803), - [anon_sym_LT_EQ_GT] = ACTIONS(3795), - [anon_sym_or] = ACTIONS(3803), - [anon_sym_and] = ACTIONS(3803), - [anon_sym_bitor] = ACTIONS(3803), - [anon_sym_xor] = ACTIONS(3803), - [anon_sym_bitand] = ACTIONS(3803), - [anon_sym_not_eq] = ACTIONS(3803), - [anon_sym_DASH_DASH] = ACTIONS(3795), - [anon_sym_PLUS_PLUS] = ACTIONS(3795), - [anon_sym_DOT] = ACTIONS(3803), - [anon_sym_DASH_GT] = ACTIONS(3803), - [anon_sym_L_DQUOTE] = ACTIONS(1591), - [anon_sym_u_DQUOTE] = ACTIONS(1591), - [anon_sym_U_DQUOTE] = ACTIONS(1591), - [anon_sym_u8_DQUOTE] = ACTIONS(1591), - [anon_sym_DQUOTE] = ACTIONS(1591), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(1597), - [anon_sym_LR_DQUOTE] = ACTIONS(1597), - [anon_sym_uR_DQUOTE] = ACTIONS(1597), - [anon_sym_UR_DQUOTE] = ACTIONS(1597), - [anon_sym_u8R_DQUOTE] = ACTIONS(1597), - [anon_sym_DOT_STAR] = ACTIONS(3795), - [anon_sym_DASH_GT_STAR] = ACTIONS(3795), - [sym_literal_suffix] = ACTIONS(3992), + [sym__expression] = STATE(4210), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3509), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3509), + [sym_call_expression] = STATE(3509), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3509), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3509), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3509), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3613), + [anon_sym_LPAREN2] = ACTIONS(3615), + [anon_sym_BANG] = ACTIONS(3619), + [anon_sym_TILDE] = ACTIONS(3619), + [anon_sym_DASH] = ACTIONS(3617), + [anon_sym_PLUS] = ACTIONS(3617), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(3621), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(3617), + [anon_sym_compl] = ACTIONS(3617), + [anon_sym_DASH_DASH] = ACTIONS(3623), + [anon_sym_PLUS_PLUS] = ACTIONS(3623), + [anon_sym_sizeof] = ACTIONS(3625), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(3627), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(3629), + [anon_sym_new] = ACTIONS(3631), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1841] = { - [sym_string_literal] = STATE(1842), - [sym_raw_string_literal] = STATE(1842), - [aux_sym_concatenated_string_repeat1] = STATE(1842), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3936), - [anon_sym_COMMA] = ACTIONS(3936), - [anon_sym_RPAREN] = ACTIONS(3936), - [anon_sym_LPAREN2] = ACTIONS(3936), - [anon_sym_DASH] = ACTIONS(3938), - [anon_sym_PLUS] = ACTIONS(3938), - [anon_sym_STAR] = ACTIONS(3938), - [anon_sym_SLASH] = ACTIONS(3938), - [anon_sym_PERCENT] = ACTIONS(3938), - [anon_sym_PIPE_PIPE] = ACTIONS(3936), - [anon_sym_AMP_AMP] = ACTIONS(3936), - [anon_sym_PIPE] = ACTIONS(3938), - [anon_sym_CARET] = ACTIONS(3938), - [anon_sym_AMP] = ACTIONS(3938), - [anon_sym_EQ_EQ] = ACTIONS(3936), - [anon_sym_BANG_EQ] = ACTIONS(3936), - [anon_sym_GT] = ACTIONS(3938), - [anon_sym_GT_EQ] = ACTIONS(3936), - [anon_sym_LT_EQ] = ACTIONS(3938), - [anon_sym_LT] = ACTIONS(3938), - [anon_sym_LT_LT] = ACTIONS(3938), - [anon_sym_GT_GT] = ACTIONS(3938), - [anon_sym_LBRACK] = ACTIONS(3936), - [anon_sym_EQ] = ACTIONS(3938), - [anon_sym_QMARK] = ACTIONS(3936), - [anon_sym_STAR_EQ] = ACTIONS(3936), - [anon_sym_SLASH_EQ] = ACTIONS(3936), - [anon_sym_PERCENT_EQ] = ACTIONS(3936), - [anon_sym_PLUS_EQ] = ACTIONS(3936), - [anon_sym_DASH_EQ] = ACTIONS(3936), - [anon_sym_LT_LT_EQ] = ACTIONS(3936), - [anon_sym_GT_GT_EQ] = ACTIONS(3936), - [anon_sym_AMP_EQ] = ACTIONS(3936), - [anon_sym_CARET_EQ] = ACTIONS(3936), - [anon_sym_PIPE_EQ] = ACTIONS(3936), - [anon_sym_and_eq] = ACTIONS(3938), - [anon_sym_or_eq] = ACTIONS(3938), - [anon_sym_xor_eq] = ACTIONS(3938), - [anon_sym_LT_EQ_GT] = ACTIONS(3936), - [anon_sym_or] = ACTIONS(3938), - [anon_sym_and] = ACTIONS(3938), - [anon_sym_bitor] = ACTIONS(3938), - [anon_sym_xor] = ACTIONS(3938), - [anon_sym_bitand] = ACTIONS(3938), - [anon_sym_not_eq] = ACTIONS(3938), - [anon_sym_DASH_DASH] = ACTIONS(3936), - [anon_sym_PLUS_PLUS] = ACTIONS(3936), - [anon_sym_DOT] = ACTIONS(3938), - [anon_sym_DASH_GT] = ACTIONS(3938), - [anon_sym_L_DQUOTE] = ACTIONS(1591), - [anon_sym_u_DQUOTE] = ACTIONS(1591), - [anon_sym_U_DQUOTE] = ACTIONS(1591), - [anon_sym_u8_DQUOTE] = ACTIONS(1591), - [anon_sym_DQUOTE] = ACTIONS(1591), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(1597), - [anon_sym_LR_DQUOTE] = ACTIONS(1597), - [anon_sym_uR_DQUOTE] = ACTIONS(1597), - [anon_sym_UR_DQUOTE] = ACTIONS(1597), - [anon_sym_u8R_DQUOTE] = ACTIONS(1597), - [anon_sym_DOT_STAR] = ACTIONS(3936), - [anon_sym_DASH_GT_STAR] = ACTIONS(3936), - [sym_literal_suffix] = ACTIONS(3938), + [sym__expression] = STATE(4292), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1842] = { - [sym_string_literal] = STATE(1842), - [sym_raw_string_literal] = STATE(1842), - [aux_sym_concatenated_string_repeat1] = STATE(1842), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3920), - [anon_sym_COMMA] = ACTIONS(3920), - [anon_sym_RPAREN] = ACTIONS(3920), - [anon_sym_LPAREN2] = ACTIONS(3920), - [anon_sym_DASH] = ACTIONS(3922), - [anon_sym_PLUS] = ACTIONS(3922), - [anon_sym_STAR] = ACTIONS(3922), - [anon_sym_SLASH] = ACTIONS(3922), - [anon_sym_PERCENT] = ACTIONS(3922), - [anon_sym_PIPE_PIPE] = ACTIONS(3920), - [anon_sym_AMP_AMP] = ACTIONS(3920), - [anon_sym_PIPE] = ACTIONS(3922), - [anon_sym_CARET] = ACTIONS(3922), - [anon_sym_AMP] = ACTIONS(3922), - [anon_sym_EQ_EQ] = ACTIONS(3920), - [anon_sym_BANG_EQ] = ACTIONS(3920), - [anon_sym_GT] = ACTIONS(3922), - [anon_sym_GT_EQ] = ACTIONS(3920), - [anon_sym_LT_EQ] = ACTIONS(3922), - [anon_sym_LT] = ACTIONS(3922), - [anon_sym_LT_LT] = ACTIONS(3922), - [anon_sym_GT_GT] = ACTIONS(3922), - [anon_sym_LBRACK] = ACTIONS(3920), - [anon_sym_EQ] = ACTIONS(3922), - [anon_sym_QMARK] = ACTIONS(3920), - [anon_sym_STAR_EQ] = ACTIONS(3920), - [anon_sym_SLASH_EQ] = ACTIONS(3920), - [anon_sym_PERCENT_EQ] = ACTIONS(3920), - [anon_sym_PLUS_EQ] = ACTIONS(3920), - [anon_sym_DASH_EQ] = ACTIONS(3920), - [anon_sym_LT_LT_EQ] = ACTIONS(3920), - [anon_sym_GT_GT_EQ] = ACTIONS(3920), - [anon_sym_AMP_EQ] = ACTIONS(3920), - [anon_sym_CARET_EQ] = ACTIONS(3920), - [anon_sym_PIPE_EQ] = ACTIONS(3920), - [anon_sym_and_eq] = ACTIONS(3922), - [anon_sym_or_eq] = ACTIONS(3922), - [anon_sym_xor_eq] = ACTIONS(3922), - [anon_sym_LT_EQ_GT] = ACTIONS(3920), - [anon_sym_or] = ACTIONS(3922), - [anon_sym_and] = ACTIONS(3922), - [anon_sym_bitor] = ACTIONS(3922), - [anon_sym_xor] = ACTIONS(3922), - [anon_sym_bitand] = ACTIONS(3922), - [anon_sym_not_eq] = ACTIONS(3922), - [anon_sym_DASH_DASH] = ACTIONS(3920), - [anon_sym_PLUS_PLUS] = ACTIONS(3920), - [anon_sym_DOT] = ACTIONS(3922), - [anon_sym_DASH_GT] = ACTIONS(3922), - [anon_sym_L_DQUOTE] = ACTIONS(3994), - [anon_sym_u_DQUOTE] = ACTIONS(3994), - [anon_sym_U_DQUOTE] = ACTIONS(3994), - [anon_sym_u8_DQUOTE] = ACTIONS(3994), - [anon_sym_DQUOTE] = ACTIONS(3994), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(3997), - [anon_sym_LR_DQUOTE] = ACTIONS(3997), - [anon_sym_uR_DQUOTE] = ACTIONS(3997), - [anon_sym_UR_DQUOTE] = ACTIONS(3997), - [anon_sym_u8R_DQUOTE] = ACTIONS(3997), - [anon_sym_DOT_STAR] = ACTIONS(3920), - [anon_sym_DASH_GT_STAR] = ACTIONS(3920), - [sym_literal_suffix] = ACTIONS(3922), + [sym__expression] = STATE(4097), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3509), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3509), + [sym_call_expression] = STATE(3509), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3509), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3509), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3509), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3613), + [anon_sym_LPAREN2] = ACTIONS(3615), + [anon_sym_BANG] = ACTIONS(3619), + [anon_sym_TILDE] = ACTIONS(3619), + [anon_sym_DASH] = ACTIONS(3617), + [anon_sym_PLUS] = ACTIONS(3617), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(3621), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(3617), + [anon_sym_compl] = ACTIONS(3617), + [anon_sym_DASH_DASH] = ACTIONS(3623), + [anon_sym_PLUS_PLUS] = ACTIONS(3623), + [anon_sym_sizeof] = ACTIONS(3625), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(3627), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(3629), + [anon_sym_new] = ACTIONS(3631), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1843] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(3894), - [anon_sym_COMMA] = ACTIONS(3894), - [anon_sym_LPAREN2] = ACTIONS(3894), - [anon_sym_DASH] = ACTIONS(3892), - [anon_sym_PLUS] = ACTIONS(3892), - [anon_sym_STAR] = ACTIONS(3892), - [anon_sym_SLASH] = ACTIONS(3892), - [anon_sym_PERCENT] = ACTIONS(3892), - [anon_sym_PIPE_PIPE] = ACTIONS(3894), - [anon_sym_AMP_AMP] = ACTIONS(3894), - [anon_sym_PIPE] = ACTIONS(3892), - [anon_sym_CARET] = ACTIONS(3892), - [anon_sym_AMP] = ACTIONS(3892), - [anon_sym_EQ_EQ] = ACTIONS(3894), - [anon_sym_BANG_EQ] = ACTIONS(3894), - [anon_sym_GT] = ACTIONS(3892), - [anon_sym_GT_EQ] = ACTIONS(3892), - [anon_sym_LT_EQ] = ACTIONS(3892), - [anon_sym_LT] = ACTIONS(3892), - [anon_sym_LT_LT] = ACTIONS(3892), - [anon_sym_GT_GT] = ACTIONS(3892), - [anon_sym_COLON_COLON] = ACTIONS(3894), - [anon_sym_LBRACE] = ACTIONS(3894), - [anon_sym_LBRACK] = ACTIONS(3894), - [anon_sym_EQ] = ACTIONS(3892), - [anon_sym_const] = ACTIONS(3892), - [anon_sym_volatile] = ACTIONS(3894), - [anon_sym_restrict] = ACTIONS(3894), - [anon_sym__Atomic] = ACTIONS(3894), - [anon_sym_mutable] = ACTIONS(3894), - [anon_sym_constexpr] = ACTIONS(3894), - [anon_sym_constinit] = ACTIONS(3894), - [anon_sym_consteval] = ACTIONS(3894), - [anon_sym_COLON] = ACTIONS(3892), - [anon_sym_QMARK] = ACTIONS(3894), - [anon_sym_STAR_EQ] = ACTIONS(3894), - [anon_sym_SLASH_EQ] = ACTIONS(3894), - [anon_sym_PERCENT_EQ] = ACTIONS(3894), - [anon_sym_PLUS_EQ] = ACTIONS(3894), - [anon_sym_DASH_EQ] = ACTIONS(3894), - [anon_sym_LT_LT_EQ] = ACTIONS(3894), - [anon_sym_GT_GT_EQ] = ACTIONS(3892), - [anon_sym_AMP_EQ] = ACTIONS(3894), - [anon_sym_CARET_EQ] = ACTIONS(3894), - [anon_sym_PIPE_EQ] = ACTIONS(3894), - [anon_sym_and_eq] = ACTIONS(3894), - [anon_sym_or_eq] = ACTIONS(3894), - [anon_sym_xor_eq] = ACTIONS(3894), - [anon_sym_LT_EQ_GT] = ACTIONS(3894), - [anon_sym_or] = ACTIONS(3892), - [anon_sym_and] = ACTIONS(3892), - [anon_sym_bitor] = ACTIONS(3894), - [anon_sym_xor] = ACTIONS(3892), - [anon_sym_bitand] = ACTIONS(3894), - [anon_sym_not_eq] = ACTIONS(3894), - [anon_sym_DASH_DASH] = ACTIONS(3894), - [anon_sym_PLUS_PLUS] = ACTIONS(3894), - [anon_sym_DOT] = ACTIONS(3892), - [anon_sym_DASH_GT] = ACTIONS(3894), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3894), - [anon_sym_decltype] = ACTIONS(3894), - [anon_sym_final] = ACTIONS(3894), - [anon_sym_override] = ACTIONS(3894), - [anon_sym_GT2] = ACTIONS(3894), + [sym__expression] = STATE(4355), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1844] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(4000), - [anon_sym_COMMA] = ACTIONS(4000), - [anon_sym_RPAREN] = ACTIONS(4000), - [anon_sym_LPAREN2] = ACTIONS(4000), - [anon_sym_DASH] = ACTIONS(4002), - [anon_sym_PLUS] = ACTIONS(4002), - [anon_sym_STAR] = ACTIONS(4002), - [anon_sym_SLASH] = ACTIONS(4002), - [anon_sym_PERCENT] = ACTIONS(4002), - [anon_sym_PIPE_PIPE] = ACTIONS(4000), - [anon_sym_AMP_AMP] = ACTIONS(4000), - [anon_sym_PIPE] = ACTIONS(4002), - [anon_sym_CARET] = ACTIONS(4002), - [anon_sym_AMP] = ACTIONS(4002), - [anon_sym_EQ_EQ] = ACTIONS(4000), - [anon_sym_BANG_EQ] = ACTIONS(4000), - [anon_sym_GT] = ACTIONS(4002), - [anon_sym_GT_EQ] = ACTIONS(4000), - [anon_sym_LT_EQ] = ACTIONS(4002), - [anon_sym_LT] = ACTIONS(4002), - [anon_sym_LT_LT] = ACTIONS(4002), - [anon_sym_GT_GT] = ACTIONS(4002), - [anon_sym_SEMI] = ACTIONS(4000), - [anon_sym_RBRACE] = ACTIONS(4000), - [anon_sym_LBRACK] = ACTIONS(4000), - [anon_sym_RBRACK] = ACTIONS(4000), - [anon_sym_EQ] = ACTIONS(4002), - [anon_sym_COLON] = ACTIONS(4000), - [anon_sym_QMARK] = ACTIONS(4000), - [anon_sym_STAR_EQ] = ACTIONS(4000), - [anon_sym_SLASH_EQ] = ACTIONS(4000), - [anon_sym_PERCENT_EQ] = ACTIONS(4000), - [anon_sym_PLUS_EQ] = ACTIONS(4000), - [anon_sym_DASH_EQ] = ACTIONS(4000), - [anon_sym_LT_LT_EQ] = ACTIONS(4000), - [anon_sym_GT_GT_EQ] = ACTIONS(4000), - [anon_sym_AMP_EQ] = ACTIONS(4000), - [anon_sym_CARET_EQ] = ACTIONS(4000), - [anon_sym_PIPE_EQ] = ACTIONS(4000), - [anon_sym_and_eq] = ACTIONS(4002), - [anon_sym_or_eq] = ACTIONS(4002), - [anon_sym_xor_eq] = ACTIONS(4002), - [anon_sym_LT_EQ_GT] = ACTIONS(4000), - [anon_sym_or] = ACTIONS(4002), - [anon_sym_and] = ACTIONS(4002), - [anon_sym_bitor] = ACTIONS(4002), - [anon_sym_xor] = ACTIONS(4002), - [anon_sym_bitand] = ACTIONS(4002), - [anon_sym_not_eq] = ACTIONS(4002), - [anon_sym_DASH_DASH] = ACTIONS(4000), - [anon_sym_PLUS_PLUS] = ACTIONS(4000), - [anon_sym_DOT] = ACTIONS(4002), - [anon_sym_DASH_GT] = ACTIONS(4000), - [anon_sym_L_DQUOTE] = ACTIONS(4000), - [anon_sym_u_DQUOTE] = ACTIONS(4000), - [anon_sym_U_DQUOTE] = ACTIONS(4000), - [anon_sym_u8_DQUOTE] = ACTIONS(4000), - [anon_sym_DQUOTE] = ACTIONS(4000), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(4000), - [anon_sym_LR_DQUOTE] = ACTIONS(4000), - [anon_sym_uR_DQUOTE] = ACTIONS(4000), - [anon_sym_UR_DQUOTE] = ACTIONS(4000), - [anon_sym_u8R_DQUOTE] = ACTIONS(4000), - [sym_literal_suffix] = ACTIONS(4002), + [sym__expression] = STATE(3933), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1845] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(3864), - [anon_sym_COMMA] = ACTIONS(3864), - [anon_sym_LPAREN2] = ACTIONS(3864), - [anon_sym_DASH] = ACTIONS(3862), - [anon_sym_PLUS] = ACTIONS(3862), - [anon_sym_STAR] = ACTIONS(3862), - [anon_sym_SLASH] = ACTIONS(3862), - [anon_sym_PERCENT] = ACTIONS(3862), - [anon_sym_PIPE_PIPE] = ACTIONS(3864), - [anon_sym_AMP_AMP] = ACTIONS(3864), - [anon_sym_PIPE] = ACTIONS(3862), - [anon_sym_CARET] = ACTIONS(3862), - [anon_sym_AMP] = ACTIONS(3862), - [anon_sym_EQ_EQ] = ACTIONS(3864), - [anon_sym_BANG_EQ] = ACTIONS(3864), - [anon_sym_GT] = ACTIONS(3862), - [anon_sym_GT_EQ] = ACTIONS(3862), - [anon_sym_LT_EQ] = ACTIONS(3862), - [anon_sym_LT] = ACTIONS(3862), - [anon_sym_LT_LT] = ACTIONS(3862), - [anon_sym_GT_GT] = ACTIONS(3862), - [anon_sym_COLON_COLON] = ACTIONS(3864), - [anon_sym_LBRACE] = ACTIONS(3864), - [anon_sym_LBRACK] = ACTIONS(3864), - [anon_sym_EQ] = ACTIONS(3862), - [anon_sym_const] = ACTIONS(3862), - [anon_sym_volatile] = ACTIONS(3864), - [anon_sym_restrict] = ACTIONS(3864), - [anon_sym__Atomic] = ACTIONS(3864), - [anon_sym_mutable] = ACTIONS(3864), - [anon_sym_constexpr] = ACTIONS(3864), - [anon_sym_constinit] = ACTIONS(3864), - [anon_sym_consteval] = ACTIONS(3864), - [anon_sym_COLON] = ACTIONS(3862), - [anon_sym_QMARK] = ACTIONS(3864), - [anon_sym_STAR_EQ] = ACTIONS(3864), - [anon_sym_SLASH_EQ] = ACTIONS(3864), - [anon_sym_PERCENT_EQ] = ACTIONS(3864), - [anon_sym_PLUS_EQ] = ACTIONS(3864), - [anon_sym_DASH_EQ] = ACTIONS(3864), - [anon_sym_LT_LT_EQ] = ACTIONS(3864), - [anon_sym_GT_GT_EQ] = ACTIONS(3862), - [anon_sym_AMP_EQ] = ACTIONS(3864), - [anon_sym_CARET_EQ] = ACTIONS(3864), - [anon_sym_PIPE_EQ] = ACTIONS(3864), - [anon_sym_and_eq] = ACTIONS(3864), - [anon_sym_or_eq] = ACTIONS(3864), - [anon_sym_xor_eq] = ACTIONS(3864), - [anon_sym_LT_EQ_GT] = ACTIONS(3864), - [anon_sym_or] = ACTIONS(3862), - [anon_sym_and] = ACTIONS(3862), - [anon_sym_bitor] = ACTIONS(3864), - [anon_sym_xor] = ACTIONS(3862), - [anon_sym_bitand] = ACTIONS(3864), - [anon_sym_not_eq] = ACTIONS(3864), - [anon_sym_DASH_DASH] = ACTIONS(3864), - [anon_sym_PLUS_PLUS] = ACTIONS(3864), - [anon_sym_DOT] = ACTIONS(3862), - [anon_sym_DASH_GT] = ACTIONS(3864), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3864), - [anon_sym_decltype] = ACTIONS(3864), - [anon_sym_final] = ACTIONS(3864), - [anon_sym_override] = ACTIONS(3864), - [anon_sym_GT2] = ACTIONS(3864), + [sym__expression] = STATE(3167), + [sym__expression_not_binary] = STATE(3318), + [sym_conditional_expression] = STATE(3318), + [sym_assignment_expression] = STATE(3318), + [sym_pointer_expression] = STATE(3318), + [sym_unary_expression] = STATE(3318), + [sym_binary_expression] = STATE(3318), + [sym_update_expression] = STATE(3318), + [sym_cast_expression] = STATE(3318), + [sym_sizeof_expression] = STATE(3318), + [sym_offsetof_expression] = STATE(3318), + [sym_generic_expression] = STATE(3318), + [sym_subscript_expression] = STATE(3318), + [sym_call_expression] = STATE(3318), + [sym_gnu_asm_expression] = STATE(3318), + [sym_field_expression] = STATE(3318), + [sym_compound_literal_expression] = STATE(3318), + [sym_parenthesized_expression] = STATE(3318), + [sym_char_literal] = STATE(3076), + [sym_concatenated_string] = STATE(3076), + [sym_string_literal] = STATE(2202), + [sym_null] = STATE(3318), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6739), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3318), + [sym_raw_string_literal] = STATE(2202), + [sym_co_await_expression] = STATE(3318), + [sym_new_expression] = STATE(3318), + [sym_delete_expression] = STATE(3318), + [sym_requires_clause] = STATE(3318), + [sym_requires_expression] = STATE(3318), + [sym_lambda_expression] = STATE(3318), + [sym_lambda_capture_specifier] = STATE(5187), + [sym_fold_expression] = STATE(3318), + [sym_parameter_pack_expansion] = STATE(3318), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5232), + [sym_qualified_identifier] = STATE(3318), + [sym_qualified_type_identifier] = STATE(6739), + [sym_user_defined_literal] = STATE(3318), + [sym_identifier] = ACTIONS(1985), + [anon_sym_LPAREN2] = ACTIONS(1987), + [anon_sym_BANG] = ACTIONS(1991), + [anon_sym_TILDE] = ACTIONS(1991), + [anon_sym_DASH] = ACTIONS(1989), + [anon_sym_PLUS] = ACTIONS(1989), + [anon_sym_STAR] = ACTIONS(1847), + [anon_sym_AMP] = ACTIONS(1847), + [anon_sym_COLON_COLON] = ACTIONS(1995), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1999), + [anon_sym_not] = ACTIONS(1989), + [anon_sym_compl] = ACTIONS(1989), + [anon_sym_DASH_DASH] = ACTIONS(2001), + [anon_sym_PLUS_PLUS] = ACTIONS(2001), + [anon_sym_sizeof] = ACTIONS(2003), + [anon_sym_offsetof] = ACTIONS(2005), + [anon_sym__Generic] = ACTIONS(2007), + [anon_sym_asm] = ACTIONS(2009), + [anon_sym___asm__] = ACTIONS(2009), + [sym_number_literal] = ACTIONS(2011), + [anon_sym_L_SQUOTE] = ACTIONS(2013), + [anon_sym_u_SQUOTE] = ACTIONS(2013), + [anon_sym_U_SQUOTE] = ACTIONS(2013), + [anon_sym_u8_SQUOTE] = ACTIONS(2013), + [anon_sym_SQUOTE] = ACTIONS(2013), + [anon_sym_L_DQUOTE] = ACTIONS(2015), + [anon_sym_u_DQUOTE] = ACTIONS(2015), + [anon_sym_U_DQUOTE] = ACTIONS(2015), + [anon_sym_u8_DQUOTE] = ACTIONS(2015), + [anon_sym_DQUOTE] = ACTIONS(2015), + [sym_true] = ACTIONS(2017), + [sym_false] = ACTIONS(2017), + [anon_sym_NULL] = ACTIONS(2019), + [anon_sym_nullptr] = ACTIONS(2019), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(2021), + [anon_sym_R_DQUOTE] = ACTIONS(2023), + [anon_sym_LR_DQUOTE] = ACTIONS(2023), + [anon_sym_uR_DQUOTE] = ACTIONS(2023), + [anon_sym_UR_DQUOTE] = ACTIONS(2023), + [anon_sym_u8R_DQUOTE] = ACTIONS(2023), + [anon_sym_co_await] = ACTIONS(2025), + [anon_sym_new] = ACTIONS(2027), + [anon_sym_requires] = ACTIONS(2029), + [sym_this] = ACTIONS(2017), }, [1846] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(3882), - [anon_sym_COMMA] = ACTIONS(3882), - [anon_sym_RPAREN] = ACTIONS(3872), - [anon_sym_LPAREN2] = ACTIONS(3872), - [anon_sym_DASH] = ACTIONS(3877), - [anon_sym_PLUS] = ACTIONS(3877), - [anon_sym_STAR] = ACTIONS(3879), - [anon_sym_SLASH] = ACTIONS(3877), - [anon_sym_PERCENT] = ACTIONS(3877), - [anon_sym_PIPE_PIPE] = ACTIONS(3882), - [anon_sym_AMP_AMP] = ACTIONS(3872), - [anon_sym_PIPE] = ACTIONS(3877), - [anon_sym_CARET] = ACTIONS(3877), - [anon_sym_AMP] = ACTIONS(3879), - [anon_sym_EQ_EQ] = ACTIONS(3882), - [anon_sym_BANG_EQ] = ACTIONS(3882), - [anon_sym_GT] = ACTIONS(3877), - [anon_sym_GT_EQ] = ACTIONS(3882), - [anon_sym_LT_EQ] = ACTIONS(3877), - [anon_sym_LT] = ACTIONS(3877), - [anon_sym_LT_LT] = ACTIONS(3877), - [anon_sym_GT_GT] = ACTIONS(3877), - [anon_sym_COLON_COLON] = ACTIONS(3875), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3882), - [anon_sym_LBRACE] = ACTIONS(3875), - [anon_sym_LBRACK] = ACTIONS(3879), - [anon_sym_EQ] = ACTIONS(3877), - [anon_sym_const] = ACTIONS(3870), - [anon_sym_volatile] = ACTIONS(3875), - [anon_sym_restrict] = ACTIONS(3875), - [anon_sym__Atomic] = ACTIONS(3875), - [anon_sym_mutable] = ACTIONS(3875), - [anon_sym_constexpr] = ACTIONS(3875), - [anon_sym_constinit] = ACTIONS(3875), - [anon_sym_consteval] = ACTIONS(3875), - [anon_sym_QMARK] = ACTIONS(3882), - [anon_sym_STAR_EQ] = ACTIONS(3882), - [anon_sym_SLASH_EQ] = ACTIONS(3882), - [anon_sym_PERCENT_EQ] = ACTIONS(3882), - [anon_sym_PLUS_EQ] = ACTIONS(3882), - [anon_sym_DASH_EQ] = ACTIONS(3882), - [anon_sym_LT_LT_EQ] = ACTIONS(3882), - [anon_sym_GT_GT_EQ] = ACTIONS(3882), - [anon_sym_AMP_EQ] = ACTIONS(3882), - [anon_sym_CARET_EQ] = ACTIONS(3882), - [anon_sym_PIPE_EQ] = ACTIONS(3882), - [anon_sym_and_eq] = ACTIONS(3882), - [anon_sym_or_eq] = ACTIONS(3882), - [anon_sym_xor_eq] = ACTIONS(3882), - [anon_sym_LT_EQ_GT] = ACTIONS(3882), - [anon_sym_or] = ACTIONS(3877), - [anon_sym_and] = ACTIONS(3877), - [anon_sym_bitor] = ACTIONS(3882), - [anon_sym_xor] = ACTIONS(3877), - [anon_sym_bitand] = ACTIONS(3882), - [anon_sym_not_eq] = ACTIONS(3882), - [anon_sym_DASH_DASH] = ACTIONS(3882), - [anon_sym_PLUS_PLUS] = ACTIONS(3882), - [anon_sym_DOT] = ACTIONS(3877), - [anon_sym_DASH_GT] = ACTIONS(3877), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3875), - [anon_sym_decltype] = ACTIONS(3875), - [anon_sym_DOT_STAR] = ACTIONS(3882), - [anon_sym_DASH_GT_STAR] = ACTIONS(3882), + [sym__expression] = STATE(3392), + [sym__expression_not_binary] = STATE(3513), + [sym_conditional_expression] = STATE(3513), + [sym_assignment_expression] = STATE(3513), + [sym_pointer_expression] = STATE(3513), + [sym_unary_expression] = STATE(3513), + [sym_binary_expression] = STATE(3513), + [sym_update_expression] = STATE(3513), + [sym_cast_expression] = STATE(3513), + [sym_sizeof_expression] = STATE(3513), + [sym_offsetof_expression] = STATE(3513), + [sym_generic_expression] = STATE(3513), + [sym_subscript_expression] = STATE(3513), + [sym_call_expression] = STATE(3513), + [sym_gnu_asm_expression] = STATE(3513), + [sym_field_expression] = STATE(3513), + [sym_compound_literal_expression] = STATE(3513), + [sym_parenthesized_expression] = STATE(3513), + [sym_char_literal] = STATE(3385), + [sym_concatenated_string] = STATE(3385), + [sym_string_literal] = STATE(2225), + [sym_null] = STATE(3513), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6957), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3513), + [sym_raw_string_literal] = STATE(2225), + [sym_co_await_expression] = STATE(3513), + [sym_new_expression] = STATE(3513), + [sym_delete_expression] = STATE(3513), + [sym_requires_clause] = STATE(3513), + [sym_requires_expression] = STATE(3513), + [sym_lambda_expression] = STATE(3513), + [sym_lambda_capture_specifier] = STATE(5162), + [sym_fold_expression] = STATE(3513), + [sym_parameter_pack_expansion] = STATE(3513), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5289), + [sym_qualified_identifier] = STATE(3513), + [sym_qualified_type_identifier] = STATE(6957), + [sym_user_defined_literal] = STATE(3513), + [sym_identifier] = ACTIONS(2031), + [anon_sym_LPAREN2] = ACTIONS(2033), + [anon_sym_BANG] = ACTIONS(2037), + [anon_sym_TILDE] = ACTIONS(2037), + [anon_sym_DASH] = ACTIONS(2035), + [anon_sym_PLUS] = ACTIONS(2035), + [anon_sym_STAR] = ACTIONS(2624), + [anon_sym_AMP] = ACTIONS(2624), + [anon_sym_COLON_COLON] = ACTIONS(2041), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(2045), + [anon_sym_not] = ACTIONS(2035), + [anon_sym_compl] = ACTIONS(2035), + [anon_sym_DASH_DASH] = ACTIONS(2047), + [anon_sym_PLUS_PLUS] = ACTIONS(2047), + [anon_sym_sizeof] = ACTIONS(2049), + [anon_sym_offsetof] = ACTIONS(2051), + [anon_sym__Generic] = ACTIONS(2053), + [anon_sym_asm] = ACTIONS(2055), + [anon_sym___asm__] = ACTIONS(2055), + [sym_number_literal] = ACTIONS(2057), + [anon_sym_L_SQUOTE] = ACTIONS(2059), + [anon_sym_u_SQUOTE] = ACTIONS(2059), + [anon_sym_U_SQUOTE] = ACTIONS(2059), + [anon_sym_u8_SQUOTE] = ACTIONS(2059), + [anon_sym_SQUOTE] = ACTIONS(2059), + [anon_sym_L_DQUOTE] = ACTIONS(2061), + [anon_sym_u_DQUOTE] = ACTIONS(2061), + [anon_sym_U_DQUOTE] = ACTIONS(2061), + [anon_sym_u8_DQUOTE] = ACTIONS(2061), + [anon_sym_DQUOTE] = ACTIONS(2061), + [sym_true] = ACTIONS(2063), + [sym_false] = ACTIONS(2063), + [anon_sym_NULL] = ACTIONS(2065), + [anon_sym_nullptr] = ACTIONS(2065), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(2067), + [anon_sym_R_DQUOTE] = ACTIONS(2069), + [anon_sym_LR_DQUOTE] = ACTIONS(2069), + [anon_sym_uR_DQUOTE] = ACTIONS(2069), + [anon_sym_UR_DQUOTE] = ACTIONS(2069), + [anon_sym_u8R_DQUOTE] = ACTIONS(2069), + [anon_sym_co_await] = ACTIONS(2071), + [anon_sym_new] = ACTIONS(2073), + [anon_sym_requires] = ACTIONS(2075), + [sym_this] = ACTIONS(2063), }, [1847] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(3898), - [anon_sym_COMMA] = ACTIONS(3898), - [anon_sym_LPAREN2] = ACTIONS(3898), - [anon_sym_DASH] = ACTIONS(3896), - [anon_sym_PLUS] = ACTIONS(3896), - [anon_sym_STAR] = ACTIONS(3896), - [anon_sym_SLASH] = ACTIONS(3896), - [anon_sym_PERCENT] = ACTIONS(3896), - [anon_sym_PIPE_PIPE] = ACTIONS(3898), - [anon_sym_AMP_AMP] = ACTIONS(3898), - [anon_sym_PIPE] = ACTIONS(3896), - [anon_sym_CARET] = ACTIONS(3896), - [anon_sym_AMP] = ACTIONS(3896), - [anon_sym_EQ_EQ] = ACTIONS(3898), - [anon_sym_BANG_EQ] = ACTIONS(3898), - [anon_sym_GT] = ACTIONS(3896), - [anon_sym_GT_EQ] = ACTIONS(3896), - [anon_sym_LT_EQ] = ACTIONS(3896), - [anon_sym_LT] = ACTIONS(3896), - [anon_sym_LT_LT] = ACTIONS(3896), - [anon_sym_GT_GT] = ACTIONS(3896), - [anon_sym_COLON_COLON] = ACTIONS(3898), - [anon_sym_LBRACE] = ACTIONS(3898), - [anon_sym_LBRACK] = ACTIONS(3898), - [anon_sym_EQ] = ACTIONS(3896), - [anon_sym_const] = ACTIONS(3896), - [anon_sym_volatile] = ACTIONS(3898), - [anon_sym_restrict] = ACTIONS(3898), - [anon_sym__Atomic] = ACTIONS(3898), - [anon_sym_mutable] = ACTIONS(3898), - [anon_sym_constexpr] = ACTIONS(3898), - [anon_sym_constinit] = ACTIONS(3898), - [anon_sym_consteval] = ACTIONS(3898), - [anon_sym_COLON] = ACTIONS(3896), - [anon_sym_QMARK] = ACTIONS(3898), - [anon_sym_STAR_EQ] = ACTIONS(3898), - [anon_sym_SLASH_EQ] = ACTIONS(3898), - [anon_sym_PERCENT_EQ] = ACTIONS(3898), - [anon_sym_PLUS_EQ] = ACTIONS(3898), - [anon_sym_DASH_EQ] = ACTIONS(3898), - [anon_sym_LT_LT_EQ] = ACTIONS(3898), - [anon_sym_GT_GT_EQ] = ACTIONS(3896), - [anon_sym_AMP_EQ] = ACTIONS(3898), - [anon_sym_CARET_EQ] = ACTIONS(3898), - [anon_sym_PIPE_EQ] = ACTIONS(3898), - [anon_sym_and_eq] = ACTIONS(3898), - [anon_sym_or_eq] = ACTIONS(3898), - [anon_sym_xor_eq] = ACTIONS(3898), - [anon_sym_LT_EQ_GT] = ACTIONS(3898), - [anon_sym_or] = ACTIONS(3896), - [anon_sym_and] = ACTIONS(3896), - [anon_sym_bitor] = ACTIONS(3898), - [anon_sym_xor] = ACTIONS(3896), - [anon_sym_bitand] = ACTIONS(3898), - [anon_sym_not_eq] = ACTIONS(3898), - [anon_sym_DASH_DASH] = ACTIONS(3898), - [anon_sym_PLUS_PLUS] = ACTIONS(3898), - [anon_sym_DOT] = ACTIONS(3896), - [anon_sym_DASH_GT] = ACTIONS(3898), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3898), - [anon_sym_decltype] = ACTIONS(3898), - [anon_sym_final] = ACTIONS(3898), - [anon_sym_override] = ACTIONS(3898), - [anon_sym_GT2] = ACTIONS(3898), + [sym__expression] = STATE(3933), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(4415), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1848] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(3860), - [anon_sym_COMMA] = ACTIONS(3860), - [anon_sym_LPAREN2] = ACTIONS(3860), - [anon_sym_DASH] = ACTIONS(3858), - [anon_sym_PLUS] = ACTIONS(3858), - [anon_sym_STAR] = ACTIONS(3858), - [anon_sym_SLASH] = ACTIONS(3858), - [anon_sym_PERCENT] = ACTIONS(3858), - [anon_sym_PIPE_PIPE] = ACTIONS(3860), - [anon_sym_AMP_AMP] = ACTIONS(3860), - [anon_sym_PIPE] = ACTIONS(3858), - [anon_sym_CARET] = ACTIONS(3858), - [anon_sym_AMP] = ACTIONS(3858), - [anon_sym_EQ_EQ] = ACTIONS(3860), - [anon_sym_BANG_EQ] = ACTIONS(3860), - [anon_sym_GT] = ACTIONS(3858), - [anon_sym_GT_EQ] = ACTIONS(3858), - [anon_sym_LT_EQ] = ACTIONS(3858), - [anon_sym_LT] = ACTIONS(3858), - [anon_sym_LT_LT] = ACTIONS(3858), - [anon_sym_GT_GT] = ACTIONS(3858), - [anon_sym_COLON_COLON] = ACTIONS(3860), - [anon_sym_LBRACE] = ACTIONS(3860), - [anon_sym_LBRACK] = ACTIONS(3860), - [anon_sym_EQ] = ACTIONS(3858), - [anon_sym_const] = ACTIONS(3858), - [anon_sym_volatile] = ACTIONS(3860), - [anon_sym_restrict] = ACTIONS(3860), - [anon_sym__Atomic] = ACTIONS(3860), - [anon_sym_mutable] = ACTIONS(3860), - [anon_sym_constexpr] = ACTIONS(3860), - [anon_sym_constinit] = ACTIONS(3860), - [anon_sym_consteval] = ACTIONS(3860), - [anon_sym_COLON] = ACTIONS(3858), - [anon_sym_QMARK] = ACTIONS(3860), - [anon_sym_STAR_EQ] = ACTIONS(3860), - [anon_sym_SLASH_EQ] = ACTIONS(3860), - [anon_sym_PERCENT_EQ] = ACTIONS(3860), - [anon_sym_PLUS_EQ] = ACTIONS(3860), - [anon_sym_DASH_EQ] = ACTIONS(3860), - [anon_sym_LT_LT_EQ] = ACTIONS(3860), - [anon_sym_GT_GT_EQ] = ACTIONS(3858), - [anon_sym_AMP_EQ] = ACTIONS(3860), - [anon_sym_CARET_EQ] = ACTIONS(3860), - [anon_sym_PIPE_EQ] = ACTIONS(3860), - [anon_sym_and_eq] = ACTIONS(3860), - [anon_sym_or_eq] = ACTIONS(3860), - [anon_sym_xor_eq] = ACTIONS(3860), - [anon_sym_LT_EQ_GT] = ACTIONS(3860), - [anon_sym_or] = ACTIONS(3858), - [anon_sym_and] = ACTIONS(3858), - [anon_sym_bitor] = ACTIONS(3860), - [anon_sym_xor] = ACTIONS(3858), - [anon_sym_bitand] = ACTIONS(3860), - [anon_sym_not_eq] = ACTIONS(3860), - [anon_sym_DASH_DASH] = ACTIONS(3860), - [anon_sym_PLUS_PLUS] = ACTIONS(3860), - [anon_sym_DOT] = ACTIONS(3858), - [anon_sym_DASH_GT] = ACTIONS(3860), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3860), - [anon_sym_decltype] = ACTIONS(3860), - [anon_sym_final] = ACTIONS(3860), - [anon_sym_override] = ACTIONS(3860), - [anon_sym_GT2] = ACTIONS(3860), + [sym__expression] = STATE(4448), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3579), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3579), + [sym_call_expression] = STATE(3579), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3579), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3579), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3579), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3633), + [anon_sym_LPAREN2] = ACTIONS(3635), + [anon_sym_BANG] = ACTIONS(3639), + [anon_sym_TILDE] = ACTIONS(3639), + [anon_sym_DASH] = ACTIONS(3637), + [anon_sym_PLUS] = ACTIONS(3637), + [anon_sym_STAR] = ACTIONS(3641), + [anon_sym_AMP] = ACTIONS(3641), + [anon_sym_COLON_COLON] = ACTIONS(3643), + [anon_sym_LBRACK] = ACTIONS(4417), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(3637), + [anon_sym_compl] = ACTIONS(3637), + [anon_sym_DASH_DASH] = ACTIONS(3645), + [anon_sym_PLUS_PLUS] = ACTIONS(3645), + [anon_sym_sizeof] = ACTIONS(3647), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(3649), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(3651), + [anon_sym_new] = ACTIONS(3631), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1849] = { - [sym_template_argument_list] = STATE(1865), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3843), - [anon_sym_COMMA] = ACTIONS(3843), - [anon_sym_RPAREN] = ACTIONS(3833), - [anon_sym_LPAREN2] = ACTIONS(3833), - [anon_sym_DASH] = ACTIONS(3838), - [anon_sym_PLUS] = ACTIONS(3838), - [anon_sym_STAR] = ACTIONS(3840), - [anon_sym_SLASH] = ACTIONS(3838), - [anon_sym_PERCENT] = ACTIONS(3838), - [anon_sym_PIPE_PIPE] = ACTIONS(3843), - [anon_sym_AMP_AMP] = ACTIONS(3833), - [anon_sym_PIPE] = ACTIONS(3838), - [anon_sym_CARET] = ACTIONS(3838), - [anon_sym_AMP] = ACTIONS(3840), - [anon_sym_EQ_EQ] = ACTIONS(3843), - [anon_sym_BANG_EQ] = ACTIONS(3843), - [anon_sym_GT] = ACTIONS(3838), - [anon_sym_GT_EQ] = ACTIONS(3843), - [anon_sym_LT_EQ] = ACTIONS(3838), - [anon_sym_LT] = ACTIONS(4004), - [anon_sym_LT_LT] = ACTIONS(3838), - [anon_sym_GT_GT] = ACTIONS(3838), - [anon_sym_COLON_COLON] = ACTIONS(3814), - [anon_sym_LBRACE] = ACTIONS(3836), - [anon_sym_LBRACK] = ACTIONS(3833), - [anon_sym_EQ] = ACTIONS(3838), - [anon_sym_const] = ACTIONS(3831), - [anon_sym_volatile] = ACTIONS(3836), - [anon_sym_restrict] = ACTIONS(3836), - [anon_sym__Atomic] = ACTIONS(3836), - [anon_sym_mutable] = ACTIONS(3836), - [anon_sym_constexpr] = ACTIONS(3836), - [anon_sym_constinit] = ACTIONS(3836), - [anon_sym_consteval] = ACTIONS(3836), - [anon_sym_QMARK] = ACTIONS(3843), - [anon_sym_STAR_EQ] = ACTIONS(3843), - [anon_sym_SLASH_EQ] = ACTIONS(3843), - [anon_sym_PERCENT_EQ] = ACTIONS(3843), - [anon_sym_PLUS_EQ] = ACTIONS(3843), - [anon_sym_DASH_EQ] = ACTIONS(3843), - [anon_sym_LT_LT_EQ] = ACTIONS(3843), - [anon_sym_GT_GT_EQ] = ACTIONS(3843), - [anon_sym_AMP_EQ] = ACTIONS(3843), - [anon_sym_CARET_EQ] = ACTIONS(3843), - [anon_sym_PIPE_EQ] = ACTIONS(3843), - [anon_sym_and_eq] = ACTIONS(3843), - [anon_sym_or_eq] = ACTIONS(3843), - [anon_sym_xor_eq] = ACTIONS(3843), - [anon_sym_LT_EQ_GT] = ACTIONS(3843), - [anon_sym_or] = ACTIONS(3838), - [anon_sym_and] = ACTIONS(3838), - [anon_sym_bitor] = ACTIONS(3843), - [anon_sym_xor] = ACTIONS(3838), - [anon_sym_bitand] = ACTIONS(3843), - [anon_sym_not_eq] = ACTIONS(3843), - [anon_sym_DASH_DASH] = ACTIONS(3843), - [anon_sym_PLUS_PLUS] = ACTIONS(3843), - [anon_sym_DOT] = ACTIONS(3838), - [anon_sym_DASH_GT] = ACTIONS(3838), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3836), - [anon_sym_decltype] = ACTIONS(3836), - [anon_sym_DOT_STAR] = ACTIONS(3843), - [anon_sym_DASH_GT_STAR] = ACTIONS(3843), + [sym__expression] = STATE(3158), + [sym__expression_not_binary] = STATE(3318), + [sym_conditional_expression] = STATE(3318), + [sym_assignment_expression] = STATE(3318), + [sym_pointer_expression] = STATE(3318), + [sym_unary_expression] = STATE(3318), + [sym_binary_expression] = STATE(3318), + [sym_update_expression] = STATE(3318), + [sym_cast_expression] = STATE(3318), + [sym_sizeof_expression] = STATE(3318), + [sym_offsetof_expression] = STATE(3318), + [sym_generic_expression] = STATE(3318), + [sym_subscript_expression] = STATE(3318), + [sym_call_expression] = STATE(3318), + [sym_gnu_asm_expression] = STATE(3318), + [sym_field_expression] = STATE(3318), + [sym_compound_literal_expression] = STATE(3318), + [sym_parenthesized_expression] = STATE(3318), + [sym_char_literal] = STATE(3076), + [sym_concatenated_string] = STATE(3076), + [sym_string_literal] = STATE(2202), + [sym_null] = STATE(3318), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6739), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3318), + [sym_raw_string_literal] = STATE(2202), + [sym_co_await_expression] = STATE(3318), + [sym_new_expression] = STATE(3318), + [sym_delete_expression] = STATE(3318), + [sym_requires_clause] = STATE(3318), + [sym_requires_expression] = STATE(3318), + [sym_lambda_expression] = STATE(3318), + [sym_lambda_capture_specifier] = STATE(5187), + [sym_fold_expression] = STATE(3318), + [sym_parameter_pack_expansion] = STATE(3318), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5232), + [sym_qualified_identifier] = STATE(3318), + [sym_qualified_type_identifier] = STATE(6739), + [sym_user_defined_literal] = STATE(3318), + [sym_identifier] = ACTIONS(1985), + [anon_sym_LPAREN2] = ACTIONS(1987), + [anon_sym_BANG] = ACTIONS(1991), + [anon_sym_TILDE] = ACTIONS(1991), + [anon_sym_DASH] = ACTIONS(1989), + [anon_sym_PLUS] = ACTIONS(1989), + [anon_sym_STAR] = ACTIONS(1847), + [anon_sym_AMP] = ACTIONS(1847), + [anon_sym_COLON_COLON] = ACTIONS(1995), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1999), + [anon_sym_not] = ACTIONS(1989), + [anon_sym_compl] = ACTIONS(1989), + [anon_sym_DASH_DASH] = ACTIONS(2001), + [anon_sym_PLUS_PLUS] = ACTIONS(2001), + [anon_sym_sizeof] = ACTIONS(2003), + [anon_sym_offsetof] = ACTIONS(2005), + [anon_sym__Generic] = ACTIONS(2007), + [anon_sym_asm] = ACTIONS(2009), + [anon_sym___asm__] = ACTIONS(2009), + [sym_number_literal] = ACTIONS(2011), + [anon_sym_L_SQUOTE] = ACTIONS(2013), + [anon_sym_u_SQUOTE] = ACTIONS(2013), + [anon_sym_U_SQUOTE] = ACTIONS(2013), + [anon_sym_u8_SQUOTE] = ACTIONS(2013), + [anon_sym_SQUOTE] = ACTIONS(2013), + [anon_sym_L_DQUOTE] = ACTIONS(2015), + [anon_sym_u_DQUOTE] = ACTIONS(2015), + [anon_sym_U_DQUOTE] = ACTIONS(2015), + [anon_sym_u8_DQUOTE] = ACTIONS(2015), + [anon_sym_DQUOTE] = ACTIONS(2015), + [sym_true] = ACTIONS(2017), + [sym_false] = ACTIONS(2017), + [anon_sym_NULL] = ACTIONS(2019), + [anon_sym_nullptr] = ACTIONS(2019), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(2021), + [anon_sym_R_DQUOTE] = ACTIONS(2023), + [anon_sym_LR_DQUOTE] = ACTIONS(2023), + [anon_sym_uR_DQUOTE] = ACTIONS(2023), + [anon_sym_UR_DQUOTE] = ACTIONS(2023), + [anon_sym_u8R_DQUOTE] = ACTIONS(2023), + [anon_sym_co_await] = ACTIONS(2025), + [anon_sym_new] = ACTIONS(2027), + [anon_sym_requires] = ACTIONS(2029), + [sym_this] = ACTIONS(2017), }, [1850] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(3904), - [anon_sym_COMMA] = ACTIONS(3904), - [anon_sym_LPAREN2] = ACTIONS(3904), - [anon_sym_DASH] = ACTIONS(3902), - [anon_sym_PLUS] = ACTIONS(3902), - [anon_sym_STAR] = ACTIONS(3902), - [anon_sym_SLASH] = ACTIONS(3902), - [anon_sym_PERCENT] = ACTIONS(3902), - [anon_sym_PIPE_PIPE] = ACTIONS(3904), - [anon_sym_AMP_AMP] = ACTIONS(3904), - [anon_sym_PIPE] = ACTIONS(3902), - [anon_sym_CARET] = ACTIONS(3902), - [anon_sym_AMP] = ACTIONS(3902), - [anon_sym_EQ_EQ] = ACTIONS(3904), - [anon_sym_BANG_EQ] = ACTIONS(3904), - [anon_sym_GT] = ACTIONS(3902), - [anon_sym_GT_EQ] = ACTIONS(3902), - [anon_sym_LT_EQ] = ACTIONS(3902), - [anon_sym_LT] = ACTIONS(3902), - [anon_sym_LT_LT] = ACTIONS(3902), - [anon_sym_GT_GT] = ACTIONS(3902), - [anon_sym_COLON_COLON] = ACTIONS(3904), - [anon_sym_LBRACE] = ACTIONS(3904), - [anon_sym_LBRACK] = ACTIONS(3904), - [anon_sym_EQ] = ACTIONS(3902), - [anon_sym_const] = ACTIONS(3902), - [anon_sym_volatile] = ACTIONS(3904), - [anon_sym_restrict] = ACTIONS(3904), - [anon_sym__Atomic] = ACTIONS(3904), - [anon_sym_mutable] = ACTIONS(3904), - [anon_sym_constexpr] = ACTIONS(3904), - [anon_sym_constinit] = ACTIONS(3904), - [anon_sym_consteval] = ACTIONS(3904), - [anon_sym_COLON] = ACTIONS(3902), - [anon_sym_QMARK] = ACTIONS(3904), - [anon_sym_STAR_EQ] = ACTIONS(3904), - [anon_sym_SLASH_EQ] = ACTIONS(3904), - [anon_sym_PERCENT_EQ] = ACTIONS(3904), - [anon_sym_PLUS_EQ] = ACTIONS(3904), - [anon_sym_DASH_EQ] = ACTIONS(3904), - [anon_sym_LT_LT_EQ] = ACTIONS(3904), - [anon_sym_GT_GT_EQ] = ACTIONS(3902), - [anon_sym_AMP_EQ] = ACTIONS(3904), - [anon_sym_CARET_EQ] = ACTIONS(3904), - [anon_sym_PIPE_EQ] = ACTIONS(3904), - [anon_sym_and_eq] = ACTIONS(3904), - [anon_sym_or_eq] = ACTIONS(3904), - [anon_sym_xor_eq] = ACTIONS(3904), - [anon_sym_LT_EQ_GT] = ACTIONS(3904), - [anon_sym_or] = ACTIONS(3902), - [anon_sym_and] = ACTIONS(3902), - [anon_sym_bitor] = ACTIONS(3904), - [anon_sym_xor] = ACTIONS(3902), - [anon_sym_bitand] = ACTIONS(3904), - [anon_sym_not_eq] = ACTIONS(3904), - [anon_sym_DASH_DASH] = ACTIONS(3904), - [anon_sym_PLUS_PLUS] = ACTIONS(3904), - [anon_sym_DOT] = ACTIONS(3902), - [anon_sym_DASH_GT] = ACTIONS(3904), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3904), - [anon_sym_decltype] = ACTIONS(3904), - [anon_sym_final] = ACTIONS(3904), - [anon_sym_override] = ACTIONS(3904), - [anon_sym_GT2] = ACTIONS(3904), + [sym__expression] = STATE(4437), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3579), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3579), + [sym_call_expression] = STATE(3579), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3579), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3579), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3579), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3633), + [anon_sym_LPAREN2] = ACTIONS(3635), + [anon_sym_BANG] = ACTIONS(3639), + [anon_sym_TILDE] = ACTIONS(3639), + [anon_sym_DASH] = ACTIONS(3637), + [anon_sym_PLUS] = ACTIONS(3637), + [anon_sym_STAR] = ACTIONS(3641), + [anon_sym_AMP] = ACTIONS(3641), + [anon_sym_COLON_COLON] = ACTIONS(3643), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(3637), + [anon_sym_compl] = ACTIONS(3637), + [anon_sym_DASH_DASH] = ACTIONS(3645), + [anon_sym_PLUS_PLUS] = ACTIONS(3645), + [anon_sym_sizeof] = ACTIONS(3647), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(3649), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(3651), + [anon_sym_new] = ACTIONS(3631), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1851] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(3868), - [anon_sym_COMMA] = ACTIONS(3868), - [anon_sym_LPAREN2] = ACTIONS(3868), - [anon_sym_DASH] = ACTIONS(3866), - [anon_sym_PLUS] = ACTIONS(3866), - [anon_sym_STAR] = ACTIONS(3866), - [anon_sym_SLASH] = ACTIONS(3866), - [anon_sym_PERCENT] = ACTIONS(3866), - [anon_sym_PIPE_PIPE] = ACTIONS(3868), - [anon_sym_AMP_AMP] = ACTIONS(3868), - [anon_sym_PIPE] = ACTIONS(3866), - [anon_sym_CARET] = ACTIONS(3866), - [anon_sym_AMP] = ACTIONS(3866), - [anon_sym_EQ_EQ] = ACTIONS(3868), - [anon_sym_BANG_EQ] = ACTIONS(3868), - [anon_sym_GT] = ACTIONS(3866), - [anon_sym_GT_EQ] = ACTIONS(3866), - [anon_sym_LT_EQ] = ACTIONS(3866), - [anon_sym_LT] = ACTIONS(3866), - [anon_sym_LT_LT] = ACTIONS(3866), - [anon_sym_GT_GT] = ACTIONS(3866), - [anon_sym_COLON_COLON] = ACTIONS(3868), - [anon_sym_LBRACE] = ACTIONS(3868), - [anon_sym_LBRACK] = ACTIONS(3868), - [anon_sym_EQ] = ACTIONS(3866), - [anon_sym_const] = ACTIONS(3866), - [anon_sym_volatile] = ACTIONS(3868), - [anon_sym_restrict] = ACTIONS(3868), - [anon_sym__Atomic] = ACTIONS(3868), - [anon_sym_mutable] = ACTIONS(3868), - [anon_sym_constexpr] = ACTIONS(3868), - [anon_sym_constinit] = ACTIONS(3868), - [anon_sym_consteval] = ACTIONS(3868), - [anon_sym_COLON] = ACTIONS(3866), - [anon_sym_QMARK] = ACTIONS(3868), - [anon_sym_STAR_EQ] = ACTIONS(3868), - [anon_sym_SLASH_EQ] = ACTIONS(3868), - [anon_sym_PERCENT_EQ] = ACTIONS(3868), - [anon_sym_PLUS_EQ] = ACTIONS(3868), - [anon_sym_DASH_EQ] = ACTIONS(3868), - [anon_sym_LT_LT_EQ] = ACTIONS(3868), - [anon_sym_GT_GT_EQ] = ACTIONS(3866), - [anon_sym_AMP_EQ] = ACTIONS(3868), - [anon_sym_CARET_EQ] = ACTIONS(3868), - [anon_sym_PIPE_EQ] = ACTIONS(3868), - [anon_sym_and_eq] = ACTIONS(3868), - [anon_sym_or_eq] = ACTIONS(3868), - [anon_sym_xor_eq] = ACTIONS(3868), - [anon_sym_LT_EQ_GT] = ACTIONS(3868), - [anon_sym_or] = ACTIONS(3866), - [anon_sym_and] = ACTIONS(3866), - [anon_sym_bitor] = ACTIONS(3868), - [anon_sym_xor] = ACTIONS(3866), - [anon_sym_bitand] = ACTIONS(3868), - [anon_sym_not_eq] = ACTIONS(3868), - [anon_sym_DASH_DASH] = ACTIONS(3868), - [anon_sym_PLUS_PLUS] = ACTIONS(3868), - [anon_sym_DOT] = ACTIONS(3866), - [anon_sym_DASH_GT] = ACTIONS(3868), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3868), - [anon_sym_decltype] = ACTIONS(3868), - [anon_sym_final] = ACTIONS(3868), - [anon_sym_override] = ACTIONS(3868), - [anon_sym_GT2] = ACTIONS(3868), + [sym__expression] = STATE(2962), + [sym__expression_not_binary] = STATE(3021), + [sym_conditional_expression] = STATE(3021), + [sym_assignment_expression] = STATE(3021), + [sym_pointer_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_cast_expression] = STATE(3021), + [sym_sizeof_expression] = STATE(3021), + [sym_offsetof_expression] = STATE(3021), + [sym_generic_expression] = STATE(3021), + [sym_subscript_expression] = STATE(3021), + [sym_call_expression] = STATE(3021), + [sym_gnu_asm_expression] = STATE(3021), + [sym_field_expression] = STATE(3021), + [sym_compound_literal_expression] = STATE(3021), + [sym_parenthesized_expression] = STATE(3021), + [sym_char_literal] = STATE(2901), + [sym_concatenated_string] = STATE(2901), + [sym_string_literal] = STATE(2173), + [sym_null] = STATE(3021), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6616), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3021), + [sym_raw_string_literal] = STATE(2173), + [sym_co_await_expression] = STATE(3021), + [sym_new_expression] = STATE(3021), + [sym_delete_expression] = STATE(3021), + [sym_requires_clause] = STATE(3021), + [sym_requires_expression] = STATE(3021), + [sym_lambda_expression] = STATE(3021), + [sym_lambda_capture_specifier] = STATE(5188), + [sym_fold_expression] = STATE(3021), + [sym_parameter_pack_expansion] = STATE(3021), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3021), + [sym_qualified_type_identifier] = STATE(6616), + [sym_user_defined_literal] = STATE(3021), + [sym_identifier] = ACTIONS(1933), + [anon_sym_LPAREN2] = ACTIONS(1937), + [anon_sym_BANG] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(1941), + [anon_sym_DASH] = ACTIONS(1939), + [anon_sym_PLUS] = ACTIONS(1939), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(1945), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(1939), + [anon_sym_compl] = ACTIONS(1939), + [anon_sym_DASH_DASH] = ACTIONS(1953), + [anon_sym_PLUS_PLUS] = ACTIONS(1953), + [anon_sym_sizeof] = ACTIONS(1955), + [anon_sym_offsetof] = ACTIONS(1957), + [anon_sym__Generic] = ACTIONS(1959), + [anon_sym_asm] = ACTIONS(1961), + [anon_sym___asm__] = ACTIONS(1961), + [sym_number_literal] = ACTIONS(1963), + [anon_sym_L_SQUOTE] = ACTIONS(1965), + [anon_sym_u_SQUOTE] = ACTIONS(1965), + [anon_sym_U_SQUOTE] = ACTIONS(1965), + [anon_sym_u8_SQUOTE] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_L_DQUOTE] = ACTIONS(1967), + [anon_sym_u_DQUOTE] = ACTIONS(1967), + [anon_sym_U_DQUOTE] = ACTIONS(1967), + [anon_sym_u8_DQUOTE] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(1967), + [sym_true] = ACTIONS(1969), + [sym_false] = ACTIONS(1969), + [anon_sym_NULL] = ACTIONS(1971), + [anon_sym_nullptr] = ACTIONS(1971), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(1975), + [anon_sym_R_DQUOTE] = ACTIONS(1977), + [anon_sym_LR_DQUOTE] = ACTIONS(1977), + [anon_sym_uR_DQUOTE] = ACTIONS(1977), + [anon_sym_UR_DQUOTE] = ACTIONS(1977), + [anon_sym_u8R_DQUOTE] = ACTIONS(1977), + [anon_sym_co_await] = ACTIONS(1979), + [anon_sym_new] = ACTIONS(1981), + [anon_sym_requires] = ACTIONS(1983), + [sym_this] = ACTIONS(1969), }, [1852] = { - [sym__declaration_modifiers] = STATE(2191), - [sym__declaration_specifiers] = STATE(3187), - [sym_attribute_specifier] = STATE(2191), - [sym_attribute_declaration] = STATE(2191), - [sym_ms_declspec_modifier] = STATE(2191), - [sym_storage_class_specifier] = STATE(2191), - [sym_type_qualifier] = STATE(2191), - [sym__type_specifier] = STATE(3156), - [sym_sized_type_specifier] = STATE(3232), - [sym_enum_specifier] = STATE(3232), - [sym_struct_specifier] = STATE(3232), - [sym_union_specifier] = STATE(3232), - [sym_parameter_declaration] = STATE(5454), - [sym_placeholder_type_specifier] = STATE(3232), - [sym_decltype_auto] = STATE(3279), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3232), - [sym_virtual] = STATE(2191), - [sym_dependent_type] = STATE(3232), - [sym_type_parameter_declaration] = STATE(5454), - [sym_variadic_type_parameter_declaration] = STATE(5454), - [sym_optional_type_parameter_declaration] = STATE(5454), - [sym_template_template_parameter_declaration] = STATE(5454), - [sym_optional_parameter_declaration] = STATE(5454), - [sym_variadic_parameter_declaration] = STATE(5454), - [sym_template_type] = STATE(3198), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(5034), - [sym_qualified_type_identifier] = STATE(3259), - [aux_sym__declaration_specifiers_repeat1] = STATE(2191), - [aux_sym_sized_type_specifier_repeat1] = STATE(3171), - [sym_identifier] = ACTIONS(3906), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(3916), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1413), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(61), - [anon_sym_unsigned] = ACTIONS(61), - [anon_sym_long] = ACTIONS(61), - [anon_sym_short] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2932), - [anon_sym_enum] = ACTIONS(1451), - [anon_sym_class] = ACTIONS(4007), - [anon_sym_struct] = ACTIONS(1455), - [anon_sym_union] = ACTIONS(1457), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(107), - [anon_sym_decltype] = ACTIONS(109), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(4009), - [anon_sym_template] = ACTIONS(4011), - [anon_sym_GT2] = ACTIONS(4013), + [sym__expression] = STATE(2963), + [sym__expression_not_binary] = STATE(3021), + [sym_conditional_expression] = STATE(3021), + [sym_assignment_expression] = STATE(3021), + [sym_pointer_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_cast_expression] = STATE(3021), + [sym_sizeof_expression] = STATE(3021), + [sym_offsetof_expression] = STATE(3021), + [sym_generic_expression] = STATE(3021), + [sym_subscript_expression] = STATE(3021), + [sym_call_expression] = STATE(3021), + [sym_gnu_asm_expression] = STATE(3021), + [sym_field_expression] = STATE(3021), + [sym_compound_literal_expression] = STATE(3021), + [sym_parenthesized_expression] = STATE(3021), + [sym_char_literal] = STATE(2901), + [sym_concatenated_string] = STATE(2901), + [sym_string_literal] = STATE(2173), + [sym_null] = STATE(3021), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6616), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3021), + [sym_raw_string_literal] = STATE(2173), + [sym_co_await_expression] = STATE(3021), + [sym_new_expression] = STATE(3021), + [sym_delete_expression] = STATE(3021), + [sym_requires_clause] = STATE(3021), + [sym_requires_expression] = STATE(3021), + [sym_lambda_expression] = STATE(3021), + [sym_lambda_capture_specifier] = STATE(5188), + [sym_fold_expression] = STATE(3021), + [sym_parameter_pack_expansion] = STATE(3021), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3021), + [sym_qualified_type_identifier] = STATE(6616), + [sym_user_defined_literal] = STATE(3021), + [sym_identifier] = ACTIONS(1933), + [anon_sym_LPAREN2] = ACTIONS(1937), + [anon_sym_BANG] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(1941), + [anon_sym_DASH] = ACTIONS(1939), + [anon_sym_PLUS] = ACTIONS(1939), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(1945), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(1939), + [anon_sym_compl] = ACTIONS(1939), + [anon_sym_DASH_DASH] = ACTIONS(1953), + [anon_sym_PLUS_PLUS] = ACTIONS(1953), + [anon_sym_sizeof] = ACTIONS(1955), + [anon_sym_offsetof] = ACTIONS(1957), + [anon_sym__Generic] = ACTIONS(1959), + [anon_sym_asm] = ACTIONS(1961), + [anon_sym___asm__] = ACTIONS(1961), + [sym_number_literal] = ACTIONS(1963), + [anon_sym_L_SQUOTE] = ACTIONS(1965), + [anon_sym_u_SQUOTE] = ACTIONS(1965), + [anon_sym_U_SQUOTE] = ACTIONS(1965), + [anon_sym_u8_SQUOTE] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_L_DQUOTE] = ACTIONS(1967), + [anon_sym_u_DQUOTE] = ACTIONS(1967), + [anon_sym_U_DQUOTE] = ACTIONS(1967), + [anon_sym_u8_DQUOTE] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(1967), + [sym_true] = ACTIONS(1969), + [sym_false] = ACTIONS(1969), + [anon_sym_NULL] = ACTIONS(1971), + [anon_sym_nullptr] = ACTIONS(1971), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(1975), + [anon_sym_R_DQUOTE] = ACTIONS(1977), + [anon_sym_LR_DQUOTE] = ACTIONS(1977), + [anon_sym_uR_DQUOTE] = ACTIONS(1977), + [anon_sym_UR_DQUOTE] = ACTIONS(1977), + [anon_sym_u8R_DQUOTE] = ACTIONS(1977), + [anon_sym_co_await] = ACTIONS(1979), + [anon_sym_new] = ACTIONS(1981), + [anon_sym_requires] = ACTIONS(1983), + [sym_this] = ACTIONS(1969), }, [1853] = { - [sym_template_argument_list] = STATE(1921), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3795), - [anon_sym_COMMA] = ACTIONS(3795), - [anon_sym_RPAREN] = ACTIONS(3808), - [anon_sym_LPAREN2] = ACTIONS(3808), - [anon_sym_DASH] = ACTIONS(3803), - [anon_sym_PLUS] = ACTIONS(3803), - [anon_sym_STAR] = ACTIONS(3805), - [anon_sym_SLASH] = ACTIONS(3803), - [anon_sym_PERCENT] = ACTIONS(3803), - [anon_sym_PIPE_PIPE] = ACTIONS(3795), - [anon_sym_AMP_AMP] = ACTIONS(3808), - [anon_sym_PIPE] = ACTIONS(3803), - [anon_sym_CARET] = ACTIONS(3803), - [anon_sym_AMP] = ACTIONS(3805), - [anon_sym_EQ_EQ] = ACTIONS(3795), - [anon_sym_BANG_EQ] = ACTIONS(3795), - [anon_sym_GT] = ACTIONS(3803), - [anon_sym_GT_EQ] = ACTIONS(3795), - [anon_sym_LT_EQ] = ACTIONS(3803), - [anon_sym_LT] = ACTIONS(4015), - [anon_sym_LT_LT] = ACTIONS(3803), - [anon_sym_GT_GT] = ACTIONS(3803), - [anon_sym_COLON_COLON] = ACTIONS(3814), - [anon_sym_LBRACE] = ACTIONS(3819), - [anon_sym_LBRACK] = ACTIONS(3808), - [anon_sym_EQ] = ACTIONS(3803), - [anon_sym_const] = ACTIONS(3793), - [anon_sym_volatile] = ACTIONS(3801), - [anon_sym_restrict] = ACTIONS(3801), - [anon_sym__Atomic] = ACTIONS(3801), - [anon_sym_mutable] = ACTIONS(3801), - [anon_sym_constexpr] = ACTIONS(3801), - [anon_sym_constinit] = ACTIONS(3801), - [anon_sym_consteval] = ACTIONS(3801), - [anon_sym_QMARK] = ACTIONS(3795), - [anon_sym_STAR_EQ] = ACTIONS(3795), - [anon_sym_SLASH_EQ] = ACTIONS(3795), - [anon_sym_PERCENT_EQ] = ACTIONS(3795), - [anon_sym_PLUS_EQ] = ACTIONS(3795), - [anon_sym_DASH_EQ] = ACTIONS(3795), - [anon_sym_LT_LT_EQ] = ACTIONS(3795), - [anon_sym_GT_GT_EQ] = ACTIONS(3795), - [anon_sym_AMP_EQ] = ACTIONS(3795), - [anon_sym_CARET_EQ] = ACTIONS(3795), - [anon_sym_PIPE_EQ] = ACTIONS(3795), - [anon_sym_and_eq] = ACTIONS(3990), - [anon_sym_or_eq] = ACTIONS(3990), - [anon_sym_xor_eq] = ACTIONS(3990), - [anon_sym_LT_EQ_GT] = ACTIONS(3795), - [anon_sym_or] = ACTIONS(3803), - [anon_sym_and] = ACTIONS(3803), - [anon_sym_bitor] = ACTIONS(3795), - [anon_sym_xor] = ACTIONS(3803), - [anon_sym_bitand] = ACTIONS(3795), - [anon_sym_not_eq] = ACTIONS(3795), - [anon_sym_DASH_DASH] = ACTIONS(3795), - [anon_sym_PLUS_PLUS] = ACTIONS(3795), - [anon_sym_DOT] = ACTIONS(3803), - [anon_sym_DASH_GT] = ACTIONS(3803), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3801), - [anon_sym_decltype] = ACTIONS(3801), - [anon_sym_DOT_STAR] = ACTIONS(3795), - [anon_sym_DASH_GT_STAR] = ACTIONS(3795), + [sym__expression] = STATE(4436), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3579), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3579), + [sym_call_expression] = STATE(3579), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3579), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3579), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3579), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3633), + [anon_sym_LPAREN2] = ACTIONS(3635), + [anon_sym_BANG] = ACTIONS(3639), + [anon_sym_TILDE] = ACTIONS(3639), + [anon_sym_DASH] = ACTIONS(3637), + [anon_sym_PLUS] = ACTIONS(3637), + [anon_sym_STAR] = ACTIONS(3641), + [anon_sym_AMP] = ACTIONS(3641), + [anon_sym_COLON_COLON] = ACTIONS(3643), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(3637), + [anon_sym_compl] = ACTIONS(3637), + [anon_sym_DASH_DASH] = ACTIONS(3645), + [anon_sym_PLUS_PLUS] = ACTIONS(3645), + [anon_sym_sizeof] = ACTIONS(3647), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(3649), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(3651), + [anon_sym_new] = ACTIONS(3631), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1854] = { - [sym__declaration_modifiers] = STATE(2191), - [sym__declaration_specifiers] = STATE(3187), - [sym_attribute_specifier] = STATE(2191), - [sym_attribute_declaration] = STATE(2191), - [sym_ms_declspec_modifier] = STATE(2191), - [sym_storage_class_specifier] = STATE(2191), - [sym_type_qualifier] = STATE(2191), - [sym__type_specifier] = STATE(3156), - [sym_sized_type_specifier] = STATE(3232), - [sym_enum_specifier] = STATE(3232), - [sym_struct_specifier] = STATE(3232), - [sym_union_specifier] = STATE(3232), - [sym_parameter_declaration] = STATE(5438), - [sym_placeholder_type_specifier] = STATE(3232), - [sym_decltype_auto] = STATE(3279), - [sym_decltype] = STATE(3198), - [sym_class_specifier] = STATE(3232), - [sym_virtual] = STATE(2191), - [sym_dependent_type] = STATE(3232), - [sym_type_parameter_declaration] = STATE(5438), - [sym_variadic_type_parameter_declaration] = STATE(5438), - [sym_optional_type_parameter_declaration] = STATE(5438), - [sym_template_template_parameter_declaration] = STATE(5438), - [sym_optional_parameter_declaration] = STATE(5438), - [sym_variadic_parameter_declaration] = STATE(5438), - [sym_template_type] = STATE(3198), - [sym_dependent_type_identifier] = STATE(6159), - [sym__scope_resolution] = STATE(5034), - [sym_qualified_type_identifier] = STATE(3259), - [aux_sym__declaration_specifiers_repeat1] = STATE(2191), - [aux_sym_sized_type_specifier_repeat1] = STATE(3171), - [sym_identifier] = ACTIONS(3906), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(3916), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1413), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(59), - [anon_sym_volatile] = ACTIONS(59), - [anon_sym_restrict] = ACTIONS(59), - [anon_sym__Atomic] = ACTIONS(59), - [anon_sym_mutable] = ACTIONS(59), - [anon_sym_constexpr] = ACTIONS(59), - [anon_sym_constinit] = ACTIONS(59), - [anon_sym_consteval] = ACTIONS(59), - [anon_sym_signed] = ACTIONS(61), - [anon_sym_unsigned] = ACTIONS(61), - [anon_sym_long] = ACTIONS(61), - [anon_sym_short] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2932), - [anon_sym_enum] = ACTIONS(1451), - [anon_sym_class] = ACTIONS(4007), - [anon_sym_struct] = ACTIONS(1455), - [anon_sym_union] = ACTIONS(1457), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(107), - [anon_sym_decltype] = ACTIONS(109), - [anon_sym_virtual] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(4009), - [anon_sym_template] = ACTIONS(4011), - [anon_sym_GT2] = ACTIONS(4018), + [sym__expression] = STATE(4061), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1855] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(4020), - [anon_sym_COMMA] = ACTIONS(4020), - [anon_sym_RPAREN] = ACTIONS(4020), - [anon_sym_LPAREN2] = ACTIONS(4020), - [anon_sym_DASH] = ACTIONS(4022), - [anon_sym_PLUS] = ACTIONS(4022), - [anon_sym_STAR] = ACTIONS(4022), - [anon_sym_SLASH] = ACTIONS(4022), - [anon_sym_PERCENT] = ACTIONS(4022), - [anon_sym_PIPE_PIPE] = ACTIONS(4020), - [anon_sym_AMP_AMP] = ACTIONS(4020), - [anon_sym_PIPE] = ACTIONS(4022), - [anon_sym_CARET] = ACTIONS(4022), - [anon_sym_AMP] = ACTIONS(4022), - [anon_sym_EQ_EQ] = ACTIONS(4020), - [anon_sym_BANG_EQ] = ACTIONS(4020), - [anon_sym_GT] = ACTIONS(4022), - [anon_sym_GT_EQ] = ACTIONS(4020), - [anon_sym_LT_EQ] = ACTIONS(4022), - [anon_sym_LT] = ACTIONS(4022), - [anon_sym_LT_LT] = ACTIONS(4022), - [anon_sym_GT_GT] = ACTIONS(4022), - [anon_sym_SEMI] = ACTIONS(4020), - [anon_sym_RBRACE] = ACTIONS(4020), - [anon_sym_LBRACK] = ACTIONS(4020), - [anon_sym_RBRACK] = ACTIONS(4020), - [anon_sym_EQ] = ACTIONS(4022), - [anon_sym_COLON] = ACTIONS(4020), - [anon_sym_QMARK] = ACTIONS(4020), - [anon_sym_STAR_EQ] = ACTIONS(4020), - [anon_sym_SLASH_EQ] = ACTIONS(4020), - [anon_sym_PERCENT_EQ] = ACTIONS(4020), - [anon_sym_PLUS_EQ] = ACTIONS(4020), - [anon_sym_DASH_EQ] = ACTIONS(4020), - [anon_sym_LT_LT_EQ] = ACTIONS(4020), - [anon_sym_GT_GT_EQ] = ACTIONS(4020), - [anon_sym_AMP_EQ] = ACTIONS(4020), - [anon_sym_CARET_EQ] = ACTIONS(4020), - [anon_sym_PIPE_EQ] = ACTIONS(4020), - [anon_sym_and_eq] = ACTIONS(4022), - [anon_sym_or_eq] = ACTIONS(4022), - [anon_sym_xor_eq] = ACTIONS(4022), - [anon_sym_LT_EQ_GT] = ACTIONS(4020), - [anon_sym_or] = ACTIONS(4022), - [anon_sym_and] = ACTIONS(4022), - [anon_sym_bitor] = ACTIONS(4022), - [anon_sym_xor] = ACTIONS(4022), - [anon_sym_bitand] = ACTIONS(4022), - [anon_sym_not_eq] = ACTIONS(4022), - [anon_sym_DASH_DASH] = ACTIONS(4020), - [anon_sym_PLUS_PLUS] = ACTIONS(4020), - [anon_sym_DOT] = ACTIONS(4022), - [anon_sym_DASH_GT] = ACTIONS(4020), - [anon_sym_L_DQUOTE] = ACTIONS(4020), - [anon_sym_u_DQUOTE] = ACTIONS(4020), - [anon_sym_U_DQUOTE] = ACTIONS(4020), - [anon_sym_u8_DQUOTE] = ACTIONS(4020), - [anon_sym_DQUOTE] = ACTIONS(4020), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(4020), - [anon_sym_LR_DQUOTE] = ACTIONS(4020), - [anon_sym_uR_DQUOTE] = ACTIONS(4020), - [anon_sym_UR_DQUOTE] = ACTIONS(4020), - [anon_sym_u8R_DQUOTE] = ACTIONS(4020), - [sym_literal_suffix] = ACTIONS(4022), + [sym__expression] = STATE(2964), + [sym__expression_not_binary] = STATE(3021), + [sym_conditional_expression] = STATE(3021), + [sym_assignment_expression] = STATE(3021), + [sym_pointer_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_cast_expression] = STATE(3021), + [sym_sizeof_expression] = STATE(3021), + [sym_offsetof_expression] = STATE(3021), + [sym_generic_expression] = STATE(3021), + [sym_subscript_expression] = STATE(3021), + [sym_call_expression] = STATE(3021), + [sym_gnu_asm_expression] = STATE(3021), + [sym_field_expression] = STATE(3021), + [sym_compound_literal_expression] = STATE(3021), + [sym_parenthesized_expression] = STATE(3021), + [sym_char_literal] = STATE(2901), + [sym_concatenated_string] = STATE(2901), + [sym_string_literal] = STATE(2173), + [sym_null] = STATE(3021), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6616), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3021), + [sym_raw_string_literal] = STATE(2173), + [sym_co_await_expression] = STATE(3021), + [sym_new_expression] = STATE(3021), + [sym_delete_expression] = STATE(3021), + [sym_requires_clause] = STATE(3021), + [sym_requires_expression] = STATE(3021), + [sym_lambda_expression] = STATE(3021), + [sym_lambda_capture_specifier] = STATE(5188), + [sym_fold_expression] = STATE(3021), + [sym_parameter_pack_expansion] = STATE(3021), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3021), + [sym_qualified_type_identifier] = STATE(6616), + [sym_user_defined_literal] = STATE(3021), + [sym_identifier] = ACTIONS(1933), + [anon_sym_LPAREN2] = ACTIONS(1937), + [anon_sym_BANG] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(1941), + [anon_sym_DASH] = ACTIONS(1939), + [anon_sym_PLUS] = ACTIONS(1939), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(1945), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(1939), + [anon_sym_compl] = ACTIONS(1939), + [anon_sym_DASH_DASH] = ACTIONS(1953), + [anon_sym_PLUS_PLUS] = ACTIONS(1953), + [anon_sym_sizeof] = ACTIONS(1955), + [anon_sym_offsetof] = ACTIONS(1957), + [anon_sym__Generic] = ACTIONS(1959), + [anon_sym_asm] = ACTIONS(1961), + [anon_sym___asm__] = ACTIONS(1961), + [sym_number_literal] = ACTIONS(1963), + [anon_sym_L_SQUOTE] = ACTIONS(1965), + [anon_sym_u_SQUOTE] = ACTIONS(1965), + [anon_sym_U_SQUOTE] = ACTIONS(1965), + [anon_sym_u8_SQUOTE] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_L_DQUOTE] = ACTIONS(1967), + [anon_sym_u_DQUOTE] = ACTIONS(1967), + [anon_sym_U_DQUOTE] = ACTIONS(1967), + [anon_sym_u8_DQUOTE] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(1967), + [sym_true] = ACTIONS(1969), + [sym_false] = ACTIONS(1969), + [anon_sym_NULL] = ACTIONS(1971), + [anon_sym_nullptr] = ACTIONS(1971), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(1975), + [anon_sym_R_DQUOTE] = ACTIONS(1977), + [anon_sym_LR_DQUOTE] = ACTIONS(1977), + [anon_sym_uR_DQUOTE] = ACTIONS(1977), + [anon_sym_UR_DQUOTE] = ACTIONS(1977), + [anon_sym_u8R_DQUOTE] = ACTIONS(1977), + [anon_sym_co_await] = ACTIONS(1979), + [anon_sym_new] = ACTIONS(1981), + [anon_sym_requires] = ACTIONS(1983), + [sym_this] = ACTIONS(1969), }, [1856] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(4024), - [anon_sym_COMMA] = ACTIONS(4024), - [anon_sym_RPAREN] = ACTIONS(4024), - [anon_sym_LPAREN2] = ACTIONS(4024), - [anon_sym_DASH] = ACTIONS(4026), - [anon_sym_PLUS] = ACTIONS(4026), - [anon_sym_STAR] = ACTIONS(4026), - [anon_sym_SLASH] = ACTIONS(4026), - [anon_sym_PERCENT] = ACTIONS(4026), - [anon_sym_PIPE_PIPE] = ACTIONS(4024), - [anon_sym_AMP_AMP] = ACTIONS(4024), - [anon_sym_PIPE] = ACTIONS(4026), - [anon_sym_CARET] = ACTIONS(4026), - [anon_sym_AMP] = ACTIONS(4026), - [anon_sym_EQ_EQ] = ACTIONS(4024), - [anon_sym_BANG_EQ] = ACTIONS(4024), - [anon_sym_GT] = ACTIONS(4026), - [anon_sym_GT_EQ] = ACTIONS(4024), - [anon_sym_LT_EQ] = ACTIONS(4026), - [anon_sym_LT] = ACTIONS(4026), - [anon_sym_LT_LT] = ACTIONS(4026), - [anon_sym_GT_GT] = ACTIONS(4026), - [anon_sym_SEMI] = ACTIONS(4024), - [anon_sym_RBRACE] = ACTIONS(4024), - [anon_sym_LBRACK] = ACTIONS(4024), - [anon_sym_RBRACK] = ACTIONS(4024), - [anon_sym_EQ] = ACTIONS(4026), - [anon_sym_COLON] = ACTIONS(4024), - [anon_sym_QMARK] = ACTIONS(4024), - [anon_sym_STAR_EQ] = ACTIONS(4024), - [anon_sym_SLASH_EQ] = ACTIONS(4024), - [anon_sym_PERCENT_EQ] = ACTIONS(4024), - [anon_sym_PLUS_EQ] = ACTIONS(4024), - [anon_sym_DASH_EQ] = ACTIONS(4024), - [anon_sym_LT_LT_EQ] = ACTIONS(4024), - [anon_sym_GT_GT_EQ] = ACTIONS(4024), - [anon_sym_AMP_EQ] = ACTIONS(4024), - [anon_sym_CARET_EQ] = ACTIONS(4024), - [anon_sym_PIPE_EQ] = ACTIONS(4024), - [anon_sym_and_eq] = ACTIONS(4026), - [anon_sym_or_eq] = ACTIONS(4026), - [anon_sym_xor_eq] = ACTIONS(4026), - [anon_sym_LT_EQ_GT] = ACTIONS(4024), - [anon_sym_or] = ACTIONS(4026), - [anon_sym_and] = ACTIONS(4026), - [anon_sym_bitor] = ACTIONS(4026), - [anon_sym_xor] = ACTIONS(4026), - [anon_sym_bitand] = ACTIONS(4026), - [anon_sym_not_eq] = ACTIONS(4026), - [anon_sym_DASH_DASH] = ACTIONS(4024), - [anon_sym_PLUS_PLUS] = ACTIONS(4024), - [anon_sym_DOT] = ACTIONS(4026), - [anon_sym_DASH_GT] = ACTIONS(4024), - [anon_sym_L_DQUOTE] = ACTIONS(4024), - [anon_sym_u_DQUOTE] = ACTIONS(4024), - [anon_sym_U_DQUOTE] = ACTIONS(4024), - [anon_sym_u8_DQUOTE] = ACTIONS(4024), - [anon_sym_DQUOTE] = ACTIONS(4024), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(4024), - [anon_sym_LR_DQUOTE] = ACTIONS(4024), - [anon_sym_uR_DQUOTE] = ACTIONS(4024), - [anon_sym_UR_DQUOTE] = ACTIONS(4024), - [anon_sym_u8R_DQUOTE] = ACTIONS(4024), - [sym_literal_suffix] = ACTIONS(4026), + [sym__expression] = STATE(2966), + [sym__expression_not_binary] = STATE(3021), + [sym_conditional_expression] = STATE(3021), + [sym_assignment_expression] = STATE(3021), + [sym_pointer_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_cast_expression] = STATE(3021), + [sym_sizeof_expression] = STATE(3021), + [sym_offsetof_expression] = STATE(3021), + [sym_generic_expression] = STATE(3021), + [sym_subscript_expression] = STATE(3021), + [sym_call_expression] = STATE(3021), + [sym_gnu_asm_expression] = STATE(3021), + [sym_field_expression] = STATE(3021), + [sym_compound_literal_expression] = STATE(3021), + [sym_parenthesized_expression] = STATE(3021), + [sym_char_literal] = STATE(2901), + [sym_concatenated_string] = STATE(2901), + [sym_string_literal] = STATE(2173), + [sym_null] = STATE(3021), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6616), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3021), + [sym_raw_string_literal] = STATE(2173), + [sym_co_await_expression] = STATE(3021), + [sym_new_expression] = STATE(3021), + [sym_delete_expression] = STATE(3021), + [sym_requires_clause] = STATE(3021), + [sym_requires_expression] = STATE(3021), + [sym_lambda_expression] = STATE(3021), + [sym_lambda_capture_specifier] = STATE(5188), + [sym_fold_expression] = STATE(3021), + [sym_parameter_pack_expansion] = STATE(3021), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3021), + [sym_qualified_type_identifier] = STATE(6616), + [sym_user_defined_literal] = STATE(3021), + [sym_identifier] = ACTIONS(1933), + [anon_sym_LPAREN2] = ACTIONS(1937), + [anon_sym_BANG] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(1941), + [anon_sym_DASH] = ACTIONS(1939), + [anon_sym_PLUS] = ACTIONS(1939), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(1945), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(1939), + [anon_sym_compl] = ACTIONS(1939), + [anon_sym_DASH_DASH] = ACTIONS(1953), + [anon_sym_PLUS_PLUS] = ACTIONS(1953), + [anon_sym_sizeof] = ACTIONS(1955), + [anon_sym_offsetof] = ACTIONS(1957), + [anon_sym__Generic] = ACTIONS(1959), + [anon_sym_asm] = ACTIONS(1961), + [anon_sym___asm__] = ACTIONS(1961), + [sym_number_literal] = ACTIONS(1963), + [anon_sym_L_SQUOTE] = ACTIONS(1965), + [anon_sym_u_SQUOTE] = ACTIONS(1965), + [anon_sym_U_SQUOTE] = ACTIONS(1965), + [anon_sym_u8_SQUOTE] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_L_DQUOTE] = ACTIONS(1967), + [anon_sym_u_DQUOTE] = ACTIONS(1967), + [anon_sym_U_DQUOTE] = ACTIONS(1967), + [anon_sym_u8_DQUOTE] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(1967), + [sym_true] = ACTIONS(1969), + [sym_false] = ACTIONS(1969), + [anon_sym_NULL] = ACTIONS(1971), + [anon_sym_nullptr] = ACTIONS(1971), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(1975), + [anon_sym_R_DQUOTE] = ACTIONS(1977), + [anon_sym_LR_DQUOTE] = ACTIONS(1977), + [anon_sym_uR_DQUOTE] = ACTIONS(1977), + [anon_sym_UR_DQUOTE] = ACTIONS(1977), + [anon_sym_u8R_DQUOTE] = ACTIONS(1977), + [anon_sym_co_await] = ACTIONS(1979), + [anon_sym_new] = ACTIONS(1981), + [anon_sym_requires] = ACTIONS(1983), + [sym_this] = ACTIONS(1969), }, [1857] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(4028), - [anon_sym_COMMA] = ACTIONS(4028), - [anon_sym_RPAREN] = ACTIONS(4028), - [anon_sym_LPAREN2] = ACTIONS(4028), - [anon_sym_DASH] = ACTIONS(4030), - [anon_sym_PLUS] = ACTIONS(4030), - [anon_sym_STAR] = ACTIONS(4030), - [anon_sym_SLASH] = ACTIONS(4030), - [anon_sym_PERCENT] = ACTIONS(4030), - [anon_sym_PIPE_PIPE] = ACTIONS(4028), - [anon_sym_AMP_AMP] = ACTIONS(4028), - [anon_sym_PIPE] = ACTIONS(4030), - [anon_sym_CARET] = ACTIONS(4030), - [anon_sym_AMP] = ACTIONS(4030), - [anon_sym_EQ_EQ] = ACTIONS(4028), - [anon_sym_BANG_EQ] = ACTIONS(4028), - [anon_sym_GT] = ACTIONS(4030), - [anon_sym_GT_EQ] = ACTIONS(4028), - [anon_sym_LT_EQ] = ACTIONS(4030), - [anon_sym_LT] = ACTIONS(4030), - [anon_sym_LT_LT] = ACTIONS(4030), - [anon_sym_GT_GT] = ACTIONS(4030), - [anon_sym_SEMI] = ACTIONS(4028), - [anon_sym_RBRACE] = ACTIONS(4028), - [anon_sym_LBRACK] = ACTIONS(4028), - [anon_sym_RBRACK] = ACTIONS(4028), - [anon_sym_EQ] = ACTIONS(4030), - [anon_sym_COLON] = ACTIONS(4028), - [anon_sym_QMARK] = ACTIONS(4028), - [anon_sym_STAR_EQ] = ACTIONS(4028), - [anon_sym_SLASH_EQ] = ACTIONS(4028), - [anon_sym_PERCENT_EQ] = ACTIONS(4028), - [anon_sym_PLUS_EQ] = ACTIONS(4028), - [anon_sym_DASH_EQ] = ACTIONS(4028), - [anon_sym_LT_LT_EQ] = ACTIONS(4028), - [anon_sym_GT_GT_EQ] = ACTIONS(4028), - [anon_sym_AMP_EQ] = ACTIONS(4028), - [anon_sym_CARET_EQ] = ACTIONS(4028), - [anon_sym_PIPE_EQ] = ACTIONS(4028), - [anon_sym_and_eq] = ACTIONS(4030), - [anon_sym_or_eq] = ACTIONS(4030), - [anon_sym_xor_eq] = ACTIONS(4030), - [anon_sym_LT_EQ_GT] = ACTIONS(4028), - [anon_sym_or] = ACTIONS(4030), - [anon_sym_and] = ACTIONS(4030), - [anon_sym_bitor] = ACTIONS(4030), - [anon_sym_xor] = ACTIONS(4030), - [anon_sym_bitand] = ACTIONS(4030), - [anon_sym_not_eq] = ACTIONS(4030), - [anon_sym_DASH_DASH] = ACTIONS(4028), - [anon_sym_PLUS_PLUS] = ACTIONS(4028), - [anon_sym_DOT] = ACTIONS(4030), - [anon_sym_DASH_GT] = ACTIONS(4028), - [anon_sym_L_DQUOTE] = ACTIONS(4028), - [anon_sym_u_DQUOTE] = ACTIONS(4028), - [anon_sym_U_DQUOTE] = ACTIONS(4028), - [anon_sym_u8_DQUOTE] = ACTIONS(4028), - [anon_sym_DQUOTE] = ACTIONS(4028), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(4028), - [anon_sym_LR_DQUOTE] = ACTIONS(4028), - [anon_sym_uR_DQUOTE] = ACTIONS(4028), - [anon_sym_UR_DQUOTE] = ACTIONS(4028), - [anon_sym_u8R_DQUOTE] = ACTIONS(4028), - [sym_literal_suffix] = ACTIONS(4030), + [sym__expression] = STATE(4430), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3579), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3579), + [sym_call_expression] = STATE(3579), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3579), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3579), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3579), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3633), + [anon_sym_LPAREN2] = ACTIONS(3635), + [anon_sym_BANG] = ACTIONS(3639), + [anon_sym_TILDE] = ACTIONS(3639), + [anon_sym_DASH] = ACTIONS(3637), + [anon_sym_PLUS] = ACTIONS(3637), + [anon_sym_STAR] = ACTIONS(3641), + [anon_sym_AMP] = ACTIONS(3641), + [anon_sym_COLON_COLON] = ACTIONS(3643), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(3637), + [anon_sym_compl] = ACTIONS(3637), + [anon_sym_DASH_DASH] = ACTIONS(3645), + [anon_sym_PLUS_PLUS] = ACTIONS(3645), + [anon_sym_sizeof] = ACTIONS(3647), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(3649), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(3651), + [anon_sym_new] = ACTIONS(3631), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), }, [1858] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(3886), - [anon_sym_COMMA] = ACTIONS(3886), - [anon_sym_LPAREN2] = ACTIONS(3886), - [anon_sym_DASH] = ACTIONS(3884), - [anon_sym_PLUS] = ACTIONS(3884), - [anon_sym_STAR] = ACTIONS(3884), - [anon_sym_SLASH] = ACTIONS(3884), - [anon_sym_PERCENT] = ACTIONS(3884), - [anon_sym_PIPE_PIPE] = ACTIONS(3886), - [anon_sym_AMP_AMP] = ACTIONS(3886), - [anon_sym_PIPE] = ACTIONS(3884), - [anon_sym_CARET] = ACTIONS(3884), - [anon_sym_AMP] = ACTIONS(3884), - [anon_sym_EQ_EQ] = ACTIONS(3886), - [anon_sym_BANG_EQ] = ACTIONS(3886), - [anon_sym_GT] = ACTIONS(3884), - [anon_sym_GT_EQ] = ACTIONS(3884), - [anon_sym_LT_EQ] = ACTIONS(3884), - [anon_sym_LT] = ACTIONS(3884), - [anon_sym_LT_LT] = ACTIONS(3884), - [anon_sym_GT_GT] = ACTIONS(3884), - [anon_sym_COLON_COLON] = ACTIONS(3886), - [anon_sym_LBRACE] = ACTIONS(3886), - [anon_sym_LBRACK] = ACTIONS(3886), - [anon_sym_EQ] = ACTIONS(3884), - [anon_sym_const] = ACTIONS(3884), - [anon_sym_volatile] = ACTIONS(3886), - [anon_sym_restrict] = ACTIONS(3886), - [anon_sym__Atomic] = ACTIONS(3886), - [anon_sym_mutable] = ACTIONS(3886), - [anon_sym_constexpr] = ACTIONS(3886), - [anon_sym_constinit] = ACTIONS(3886), - [anon_sym_consteval] = ACTIONS(3886), - [anon_sym_COLON] = ACTIONS(3884), - [anon_sym_QMARK] = ACTIONS(3886), - [anon_sym_STAR_EQ] = ACTIONS(3886), - [anon_sym_SLASH_EQ] = ACTIONS(3886), - [anon_sym_PERCENT_EQ] = ACTIONS(3886), - [anon_sym_PLUS_EQ] = ACTIONS(3886), - [anon_sym_DASH_EQ] = ACTIONS(3886), - [anon_sym_LT_LT_EQ] = ACTIONS(3886), - [anon_sym_GT_GT_EQ] = ACTIONS(3884), - [anon_sym_AMP_EQ] = ACTIONS(3886), - [anon_sym_CARET_EQ] = ACTIONS(3886), - [anon_sym_PIPE_EQ] = ACTIONS(3886), - [anon_sym_and_eq] = ACTIONS(3886), - [anon_sym_or_eq] = ACTIONS(3886), - [anon_sym_xor_eq] = ACTIONS(3886), - [anon_sym_LT_EQ_GT] = ACTIONS(3886), - [anon_sym_or] = ACTIONS(3884), - [anon_sym_and] = ACTIONS(3884), - [anon_sym_bitor] = ACTIONS(3886), - [anon_sym_xor] = ACTIONS(3884), - [anon_sym_bitand] = ACTIONS(3886), - [anon_sym_not_eq] = ACTIONS(3886), - [anon_sym_DASH_DASH] = ACTIONS(3886), - [anon_sym_PLUS_PLUS] = ACTIONS(3886), - [anon_sym_DOT] = ACTIONS(3884), - [anon_sym_DASH_GT] = ACTIONS(3886), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3886), - [anon_sym_decltype] = ACTIONS(3886), - [anon_sym_final] = ACTIONS(3886), - [anon_sym_override] = ACTIONS(3886), - [anon_sym_GT2] = ACTIONS(3886), + [sym__expression] = STATE(4426), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3579), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3579), + [sym_call_expression] = STATE(3579), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3579), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3579), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3579), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3633), + [anon_sym_LPAREN2] = ACTIONS(3635), + [anon_sym_BANG] = ACTIONS(3639), + [anon_sym_TILDE] = ACTIONS(3639), + [anon_sym_DASH] = ACTIONS(3637), + [anon_sym_PLUS] = ACTIONS(3637), + [anon_sym_STAR] = ACTIONS(3641), + [anon_sym_AMP] = ACTIONS(3641), + [anon_sym_COLON_COLON] = ACTIONS(3643), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(3637), + [anon_sym_compl] = ACTIONS(3637), + [anon_sym_DASH_DASH] = ACTIONS(3645), + [anon_sym_PLUS_PLUS] = ACTIONS(3645), + [anon_sym_sizeof] = ACTIONS(3647), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(3649), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(3651), + [anon_sym_new] = ACTIONS(3631), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), + }, + [1859] = { + [sym__expression] = STATE(2970), + [sym__expression_not_binary] = STATE(3021), + [sym_conditional_expression] = STATE(3021), + [sym_assignment_expression] = STATE(3021), + [sym_pointer_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_cast_expression] = STATE(3021), + [sym_sizeof_expression] = STATE(3021), + [sym_offsetof_expression] = STATE(3021), + [sym_generic_expression] = STATE(3021), + [sym_subscript_expression] = STATE(3021), + [sym_call_expression] = STATE(3021), + [sym_gnu_asm_expression] = STATE(3021), + [sym_field_expression] = STATE(3021), + [sym_compound_literal_expression] = STATE(3021), + [sym_parenthesized_expression] = STATE(3021), + [sym_char_literal] = STATE(2901), + [sym_concatenated_string] = STATE(2901), + [sym_string_literal] = STATE(2173), + [sym_null] = STATE(3021), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6616), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3021), + [sym_raw_string_literal] = STATE(2173), + [sym_co_await_expression] = STATE(3021), + [sym_new_expression] = STATE(3021), + [sym_delete_expression] = STATE(3021), + [sym_requires_clause] = STATE(3021), + [sym_requires_expression] = STATE(3021), + [sym_lambda_expression] = STATE(3021), + [sym_lambda_capture_specifier] = STATE(5188), + [sym_fold_expression] = STATE(3021), + [sym_parameter_pack_expansion] = STATE(3021), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3021), + [sym_qualified_type_identifier] = STATE(6616), + [sym_user_defined_literal] = STATE(3021), + [sym_identifier] = ACTIONS(1933), + [anon_sym_LPAREN2] = ACTIONS(1937), + [anon_sym_BANG] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(1941), + [anon_sym_DASH] = ACTIONS(1939), + [anon_sym_PLUS] = ACTIONS(1939), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(1945), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(1939), + [anon_sym_compl] = ACTIONS(1939), + [anon_sym_DASH_DASH] = ACTIONS(1953), + [anon_sym_PLUS_PLUS] = ACTIONS(1953), + [anon_sym_sizeof] = ACTIONS(1955), + [anon_sym_offsetof] = ACTIONS(1957), + [anon_sym__Generic] = ACTIONS(1959), + [anon_sym_asm] = ACTIONS(1961), + [anon_sym___asm__] = ACTIONS(1961), + [sym_number_literal] = ACTIONS(1963), + [anon_sym_L_SQUOTE] = ACTIONS(1965), + [anon_sym_u_SQUOTE] = ACTIONS(1965), + [anon_sym_U_SQUOTE] = ACTIONS(1965), + [anon_sym_u8_SQUOTE] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_L_DQUOTE] = ACTIONS(1967), + [anon_sym_u_DQUOTE] = ACTIONS(1967), + [anon_sym_U_DQUOTE] = ACTIONS(1967), + [anon_sym_u8_DQUOTE] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(1967), + [sym_true] = ACTIONS(1969), + [sym_false] = ACTIONS(1969), + [anon_sym_NULL] = ACTIONS(1971), + [anon_sym_nullptr] = ACTIONS(1971), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(1975), + [anon_sym_R_DQUOTE] = ACTIONS(1977), + [anon_sym_LR_DQUOTE] = ACTIONS(1977), + [anon_sym_uR_DQUOTE] = ACTIONS(1977), + [anon_sym_UR_DQUOTE] = ACTIONS(1977), + [anon_sym_u8R_DQUOTE] = ACTIONS(1977), + [anon_sym_co_await] = ACTIONS(1979), + [anon_sym_new] = ACTIONS(1981), + [anon_sym_requires] = ACTIONS(1983), + [sym_this] = ACTIONS(1969), + }, + [1860] = { + [sym__expression] = STATE(3472), + [sym__expression_not_binary] = STATE(3565), + [sym_conditional_expression] = STATE(3565), + [sym_assignment_expression] = STATE(3565), + [sym_pointer_expression] = STATE(3220), + [sym_unary_expression] = STATE(3565), + [sym_binary_expression] = STATE(3565), + [sym_update_expression] = STATE(3565), + [sym_cast_expression] = STATE(3565), + [sym_sizeof_expression] = STATE(3565), + [sym_offsetof_expression] = STATE(3565), + [sym_generic_expression] = STATE(3565), + [sym_subscript_expression] = STATE(3220), + [sym_call_expression] = STATE(3220), + [sym_gnu_asm_expression] = STATE(3565), + [sym_field_expression] = STATE(3220), + [sym_compound_literal_expression] = STATE(3565), + [sym_parenthesized_expression] = STATE(3220), + [sym_char_literal] = STATE(3429), + [sym_concatenated_string] = STATE(3429), + [sym_string_literal] = STATE(2248), + [sym_null] = STATE(3565), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6847), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3565), + [sym_raw_string_literal] = STATE(2248), + [sym_co_await_expression] = STATE(3565), + [sym_new_expression] = STATE(3565), + [sym_delete_expression] = STATE(3565), + [sym_requires_clause] = STATE(3565), + [sym_requires_expression] = STATE(3565), + [sym_lambda_expression] = STATE(3565), + [sym_lambda_capture_specifier] = STATE(5204), + [sym_fold_expression] = STATE(3565), + [sym_parameter_pack_expansion] = STATE(3565), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5232), + [sym_qualified_identifier] = STATE(3220), + [sym_qualified_type_identifier] = STATE(6847), + [sym_user_defined_literal] = STATE(3565), + [sym_identifier] = ACTIONS(2095), + [anon_sym_LPAREN2] = ACTIONS(1841), + [anon_sym_BANG] = ACTIONS(1843), + [anon_sym_TILDE] = ACTIONS(1843), + [anon_sym_DASH] = ACTIONS(1845), + [anon_sym_PLUS] = ACTIONS(1845), + [anon_sym_STAR] = ACTIONS(1847), + [anon_sym_AMP] = ACTIONS(1847), + [anon_sym_COLON_COLON] = ACTIONS(1849), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1999), + [anon_sym_not] = ACTIONS(1845), + [anon_sym_compl] = ACTIONS(1845), + [anon_sym_DASH_DASH] = ACTIONS(1861), + [anon_sym_PLUS_PLUS] = ACTIONS(1861), + [anon_sym_sizeof] = ACTIONS(1863), + [anon_sym_offsetof] = ACTIONS(1865), + [anon_sym__Generic] = ACTIONS(1867), + [anon_sym_asm] = ACTIONS(1869), + [anon_sym___asm__] = ACTIONS(1869), + [sym_number_literal] = ACTIONS(1871), + [anon_sym_L_SQUOTE] = ACTIONS(1873), + [anon_sym_u_SQUOTE] = ACTIONS(1873), + [anon_sym_U_SQUOTE] = ACTIONS(1873), + [anon_sym_u8_SQUOTE] = ACTIONS(1873), + [anon_sym_SQUOTE] = ACTIONS(1873), + [anon_sym_L_DQUOTE] = ACTIONS(1875), + [anon_sym_u_DQUOTE] = ACTIONS(1875), + [anon_sym_U_DQUOTE] = ACTIONS(1875), + [anon_sym_u8_DQUOTE] = ACTIONS(1875), + [anon_sym_DQUOTE] = ACTIONS(1875), + [sym_true] = ACTIONS(1877), + [sym_false] = ACTIONS(1877), + [anon_sym_NULL] = ACTIONS(1879), + [anon_sym_nullptr] = ACTIONS(1879), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(1883), + [anon_sym_R_DQUOTE] = ACTIONS(1885), + [anon_sym_LR_DQUOTE] = ACTIONS(1885), + [anon_sym_uR_DQUOTE] = ACTIONS(1885), + [anon_sym_UR_DQUOTE] = ACTIONS(1885), + [anon_sym_u8R_DQUOTE] = ACTIONS(1885), + [anon_sym_co_await] = ACTIONS(1887), + [anon_sym_new] = ACTIONS(1889), + [anon_sym_requires] = ACTIONS(1891), + [sym_this] = ACTIONS(1877), + }, + [1861] = { + [sym__expression] = STATE(4424), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3579), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3579), + [sym_call_expression] = STATE(3579), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3579), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3579), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3579), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3633), + [anon_sym_LPAREN2] = ACTIONS(3635), + [anon_sym_BANG] = ACTIONS(3639), + [anon_sym_TILDE] = ACTIONS(3639), + [anon_sym_DASH] = ACTIONS(3637), + [anon_sym_PLUS] = ACTIONS(3637), + [anon_sym_STAR] = ACTIONS(3641), + [anon_sym_AMP] = ACTIONS(3641), + [anon_sym_COLON_COLON] = ACTIONS(3643), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(3637), + [anon_sym_compl] = ACTIONS(3637), + [anon_sym_DASH_DASH] = ACTIONS(3645), + [anon_sym_PLUS_PLUS] = ACTIONS(3645), + [anon_sym_sizeof] = ACTIONS(3647), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(3649), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(3651), + [anon_sym_new] = ACTIONS(3631), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), + }, + [1862] = { + [sym__expression] = STATE(4361), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), + }, + [1863] = { + [sym__expression] = STATE(4124), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), + }, + [1864] = { + [sym__expression] = STATE(4303), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), + }, + [1865] = { + [sym__expression] = STATE(3443), + [sym__expression_not_binary] = STATE(3021), + [sym_conditional_expression] = STATE(3021), + [sym_assignment_expression] = STATE(3021), + [sym_pointer_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_cast_expression] = STATE(3021), + [sym_sizeof_expression] = STATE(3021), + [sym_offsetof_expression] = STATE(3021), + [sym_generic_expression] = STATE(3021), + [sym_subscript_expression] = STATE(3021), + [sym_call_expression] = STATE(3021), + [sym_gnu_asm_expression] = STATE(3021), + [sym_field_expression] = STATE(3021), + [sym_compound_literal_expression] = STATE(3021), + [sym_parenthesized_expression] = STATE(3021), + [sym_char_literal] = STATE(2901), + [sym_concatenated_string] = STATE(2901), + [sym_string_literal] = STATE(2173), + [sym_null] = STATE(3021), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6616), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3021), + [sym_raw_string_literal] = STATE(2173), + [sym_co_await_expression] = STATE(3021), + [sym_new_expression] = STATE(3021), + [sym_delete_expression] = STATE(3021), + [sym_requires_clause] = STATE(3021), + [sym_requires_expression] = STATE(3021), + [sym_lambda_expression] = STATE(3021), + [sym_lambda_capture_specifier] = STATE(5188), + [sym_fold_expression] = STATE(3021), + [sym_parameter_pack_expansion] = STATE(3021), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3021), + [sym_qualified_type_identifier] = STATE(6616), + [sym_user_defined_literal] = STATE(3021), + [sym_identifier] = ACTIONS(1933), + [anon_sym_LPAREN2] = ACTIONS(2077), + [anon_sym_BANG] = ACTIONS(2081), + [anon_sym_TILDE] = ACTIONS(2081), + [anon_sym_DASH] = ACTIONS(2079), + [anon_sym_PLUS] = ACTIONS(2079), + [anon_sym_STAR] = ACTIONS(3641), + [anon_sym_AMP] = ACTIONS(3641), + [anon_sym_COLON_COLON] = ACTIONS(2085), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(2079), + [anon_sym_compl] = ACTIONS(2079), + [anon_sym_DASH_DASH] = ACTIONS(2087), + [anon_sym_PLUS_PLUS] = ACTIONS(2087), + [anon_sym_sizeof] = ACTIONS(2089), + [anon_sym_offsetof] = ACTIONS(1957), + [anon_sym__Generic] = ACTIONS(1959), + [anon_sym_asm] = ACTIONS(1961), + [anon_sym___asm__] = ACTIONS(1961), + [sym_number_literal] = ACTIONS(1963), + [anon_sym_L_SQUOTE] = ACTIONS(1965), + [anon_sym_u_SQUOTE] = ACTIONS(1965), + [anon_sym_U_SQUOTE] = ACTIONS(1965), + [anon_sym_u8_SQUOTE] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_L_DQUOTE] = ACTIONS(1967), + [anon_sym_u_DQUOTE] = ACTIONS(1967), + [anon_sym_U_DQUOTE] = ACTIONS(1967), + [anon_sym_u8_DQUOTE] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(1967), + [sym_true] = ACTIONS(1969), + [sym_false] = ACTIONS(1969), + [anon_sym_NULL] = ACTIONS(1971), + [anon_sym_nullptr] = ACTIONS(1971), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(2091), + [anon_sym_R_DQUOTE] = ACTIONS(1977), + [anon_sym_LR_DQUOTE] = ACTIONS(1977), + [anon_sym_uR_DQUOTE] = ACTIONS(1977), + [anon_sym_UR_DQUOTE] = ACTIONS(1977), + [anon_sym_u8R_DQUOTE] = ACTIONS(1977), + [anon_sym_co_await] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(1981), + [anon_sym_requires] = ACTIONS(1983), + [sym_this] = ACTIONS(1969), + }, + [1866] = { + [sym__expression] = STATE(4352), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), + }, + [1867] = { + [sym__expression] = STATE(4133), + [sym__expression_not_binary] = STATE(4369), + [sym_conditional_expression] = STATE(4369), + [sym_assignment_expression] = STATE(4369), + [sym_pointer_expression] = STATE(3541), + [sym_unary_expression] = STATE(4369), + [sym_binary_expression] = STATE(4369), + [sym_update_expression] = STATE(4369), + [sym_cast_expression] = STATE(4369), + [sym_sizeof_expression] = STATE(4369), + [sym_offsetof_expression] = STATE(4369), + [sym_generic_expression] = STATE(4369), + [sym_subscript_expression] = STATE(3541), + [sym_call_expression] = STATE(3541), + [sym_gnu_asm_expression] = STATE(4369), + [sym_field_expression] = STATE(3541), + [sym_compound_literal_expression] = STATE(4369), + [sym_parenthesized_expression] = STATE(3541), + [sym_char_literal] = STATE(4131), + [sym_concatenated_string] = STATE(4131), + [sym_string_literal] = STATE(3542), + [sym_null] = STATE(4369), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6872), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(4369), + [sym_raw_string_literal] = STATE(3542), + [sym_co_await_expression] = STATE(4369), + [sym_new_expression] = STATE(4369), + [sym_delete_expression] = STATE(4369), + [sym_requires_clause] = STATE(4369), + [sym_requires_expression] = STATE(4369), + [sym_lambda_expression] = STATE(4369), + [sym_lambda_capture_specifier] = STATE(5208), + [sym_fold_expression] = STATE(4369), + [sym_parameter_pack_expansion] = STATE(4369), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5289), + [sym_qualified_identifier] = STATE(3541), + [sym_qualified_type_identifier] = STATE(6872), + [sym_user_defined_literal] = STATE(4369), + [sym_identifier] = ACTIONS(3599), + [anon_sym_LPAREN2] = ACTIONS(2618), + [anon_sym_BANG] = ACTIONS(2620), + [anon_sym_TILDE] = ACTIONS(2620), + [anon_sym_DASH] = ACTIONS(2622), + [anon_sym_PLUS] = ACTIONS(2622), + [anon_sym_STAR] = ACTIONS(2624), + [anon_sym_AMP] = ACTIONS(2624), + [anon_sym_COLON_COLON] = ACTIONS(2626), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(2045), + [anon_sym_not] = ACTIONS(2622), + [anon_sym_compl] = ACTIONS(2622), + [anon_sym_DASH_DASH] = ACTIONS(2640), + [anon_sym_PLUS_PLUS] = ACTIONS(2640), + [anon_sym_sizeof] = ACTIONS(2642), + [anon_sym_offsetof] = ACTIONS(2644), + [anon_sym__Generic] = ACTIONS(2646), + [anon_sym_asm] = ACTIONS(2648), + [anon_sym___asm__] = ACTIONS(2648), + [sym_number_literal] = ACTIONS(2650), + [anon_sym_L_SQUOTE] = ACTIONS(2652), + [anon_sym_u_SQUOTE] = ACTIONS(2652), + [anon_sym_U_SQUOTE] = ACTIONS(2652), + [anon_sym_u8_SQUOTE] = ACTIONS(2652), + [anon_sym_SQUOTE] = ACTIONS(2652), + [anon_sym_L_DQUOTE] = ACTIONS(2654), + [anon_sym_u_DQUOTE] = ACTIONS(2654), + [anon_sym_U_DQUOTE] = ACTIONS(2654), + [anon_sym_u8_DQUOTE] = ACTIONS(2654), + [anon_sym_DQUOTE] = ACTIONS(2654), + [sym_true] = ACTIONS(2656), + [sym_false] = ACTIONS(2656), + [anon_sym_NULL] = ACTIONS(2658), + [anon_sym_nullptr] = ACTIONS(2658), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(2668), + [anon_sym_R_DQUOTE] = ACTIONS(2670), + [anon_sym_LR_DQUOTE] = ACTIONS(2670), + [anon_sym_uR_DQUOTE] = ACTIONS(2670), + [anon_sym_UR_DQUOTE] = ACTIONS(2670), + [anon_sym_u8R_DQUOTE] = ACTIONS(2670), + [anon_sym_co_await] = ACTIONS(2672), + [anon_sym_new] = ACTIONS(2674), + [anon_sym_requires] = ACTIONS(2676), + [sym_this] = ACTIONS(2656), }, -}; - -static const uint16_t ts_small_parse_table[] = { - [0] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4034), 13, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(4032), 50, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - anon_sym_or, - anon_sym_and, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_friend, - anon_sym_using, - anon_sym_concept, - anon_sym_requires, - [71] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4038), 13, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(4036), 50, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - anon_sym_or, - anon_sym_and, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_friend, - anon_sym_using, - anon_sym_concept, - anon_sym_requires, - [142] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4040), 1, - sym_literal_suffix, - STATE(1881), 3, - sym_string_literal, - sym_raw_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(1629), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1635), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(3795), 23, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - ACTIONS(3803), 26, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - [221] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4044), 13, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(4042), 50, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - anon_sym_or, - anon_sym_and, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_friend, - anon_sym_using, - anon_sym_concept, - anon_sym_requires, - [292] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4048), 13, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(4046), 50, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - anon_sym_or, - anon_sym_and, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_friend, - anon_sym_using, - anon_sym_concept, - anon_sym_requires, - [363] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(39), 1, - anon_sym___attribute__, - ACTIONS(45), 1, - anon_sym___declspec, - ACTIONS(107), 1, - sym_auto, - ACTIONS(109), 1, - anon_sym_decltype, - ACTIONS(111), 1, - anon_sym_virtual, - ACTIONS(1413), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1451), 1, - anon_sym_enum, - ACTIONS(1455), 1, - anon_sym_struct, - ACTIONS(1457), 1, - anon_sym_union, - ACTIONS(2932), 1, - sym_primitive_type, - ACTIONS(3906), 1, - sym_identifier, - ACTIONS(3916), 1, - anon_sym_COLON_COLON, - ACTIONS(4007), 1, - anon_sym_class, - ACTIONS(4009), 1, - anon_sym_typename, - ACTIONS(4011), 1, - anon_sym_template, - STATE(3156), 1, - sym__type_specifier, - STATE(3171), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3187), 1, - sym__declaration_specifiers, - STATE(3259), 1, - sym_qualified_type_identifier, - STATE(3279), 1, - sym_decltype_auto, - STATE(5034), 1, - sym__scope_resolution, - STATE(6159), 1, - sym_dependent_type_identifier, - STATE(3198), 2, - sym_decltype, - sym_template_type, - ACTIONS(61), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(55), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - STATE(3232), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - STATE(5917), 7, - sym_parameter_declaration, - sym_type_parameter_declaration, - sym_variadic_type_parameter_declaration, - sym_optional_type_parameter_declaration, - sym_template_template_parameter_declaration, - sym_optional_parameter_declaration, - sym_variadic_parameter_declaration, - ACTIONS(59), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(2191), 8, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual, - aux_sym__declaration_specifiers_repeat1, - [488] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3870), 1, - anon_sym_const, - ACTIONS(3879), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(3872), 4, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_AMP_AMP, - anon_sym_LBRACK, - ACTIONS(3875), 11, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - ACTIONS(3877), 17, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3882), 28, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [567] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4050), 1, - sym_identifier, - ACTIONS(4058), 1, - sym_primitive_type, - STATE(1878), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(4056), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(4054), 26, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_auto, - anon_sym_decltype, - ACTIONS(4052), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [646] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3866), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_const, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3868), 45, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [717] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4048), 13, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(4046), 50, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - anon_sym_or, - anon_sym_and, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_friend, - anon_sym_using, - anon_sym_concept, - anon_sym_requires, - [788] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4062), 13, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(4060), 50, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - anon_sym_or, - anon_sym_and, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_friend, - anon_sym_using, - anon_sym_concept, - anon_sym_requires, - [859] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4066), 13, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(4064), 50, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - anon_sym_or, - anon_sym_and, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_friend, - anon_sym_using, - anon_sym_concept, - anon_sym_requires, - [930] = 3, + [1868] = { + [sym__expression] = STATE(4248), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), + }, + [1869] = { + [sym__expression] = STATE(3440), + [sym__expression_not_binary] = STATE(3565), + [sym_conditional_expression] = STATE(3565), + [sym_assignment_expression] = STATE(3565), + [sym_pointer_expression] = STATE(3220), + [sym_unary_expression] = STATE(3565), + [sym_binary_expression] = STATE(3565), + [sym_update_expression] = STATE(3565), + [sym_cast_expression] = STATE(3565), + [sym_sizeof_expression] = STATE(3565), + [sym_offsetof_expression] = STATE(3565), + [sym_generic_expression] = STATE(3565), + [sym_subscript_expression] = STATE(3220), + [sym_call_expression] = STATE(3220), + [sym_gnu_asm_expression] = STATE(3565), + [sym_field_expression] = STATE(3220), + [sym_compound_literal_expression] = STATE(3565), + [sym_parenthesized_expression] = STATE(3220), + [sym_char_literal] = STATE(3429), + [sym_concatenated_string] = STATE(3429), + [sym_string_literal] = STATE(2248), + [sym_null] = STATE(3565), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6847), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3565), + [sym_raw_string_literal] = STATE(2248), + [sym_co_await_expression] = STATE(3565), + [sym_new_expression] = STATE(3565), + [sym_delete_expression] = STATE(3565), + [sym_requires_clause] = STATE(3565), + [sym_requires_expression] = STATE(3565), + [sym_lambda_expression] = STATE(3565), + [sym_lambda_capture_specifier] = STATE(5204), + [sym_fold_expression] = STATE(3565), + [sym_parameter_pack_expansion] = STATE(3565), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5232), + [sym_qualified_identifier] = STATE(3220), + [sym_qualified_type_identifier] = STATE(6847), + [sym_user_defined_literal] = STATE(3565), + [sym_identifier] = ACTIONS(4419), + [anon_sym_LPAREN2] = ACTIONS(1841), + [anon_sym_BANG] = ACTIONS(1843), + [anon_sym_TILDE] = ACTIONS(1843), + [anon_sym_DASH] = ACTIONS(1845), + [anon_sym_PLUS] = ACTIONS(1845), + [anon_sym_STAR] = ACTIONS(1847), + [anon_sym_AMP] = ACTIONS(1847), + [anon_sym_COLON_COLON] = ACTIONS(1849), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1999), + [anon_sym_not] = ACTIONS(1845), + [anon_sym_compl] = ACTIONS(1845), + [anon_sym_DASH_DASH] = ACTIONS(1861), + [anon_sym_PLUS_PLUS] = ACTIONS(1861), + [anon_sym_sizeof] = ACTIONS(1863), + [anon_sym_offsetof] = ACTIONS(1865), + [anon_sym__Generic] = ACTIONS(1867), + [anon_sym_asm] = ACTIONS(1869), + [anon_sym___asm__] = ACTIONS(1869), + [sym_number_literal] = ACTIONS(1871), + [anon_sym_L_SQUOTE] = ACTIONS(1873), + [anon_sym_u_SQUOTE] = ACTIONS(1873), + [anon_sym_U_SQUOTE] = ACTIONS(1873), + [anon_sym_u8_SQUOTE] = ACTIONS(1873), + [anon_sym_SQUOTE] = ACTIONS(1873), + [anon_sym_L_DQUOTE] = ACTIONS(1875), + [anon_sym_u_DQUOTE] = ACTIONS(1875), + [anon_sym_U_DQUOTE] = ACTIONS(1875), + [anon_sym_u8_DQUOTE] = ACTIONS(1875), + [anon_sym_DQUOTE] = ACTIONS(1875), + [sym_true] = ACTIONS(1877), + [sym_false] = ACTIONS(1877), + [anon_sym_NULL] = ACTIONS(1879), + [anon_sym_nullptr] = ACTIONS(1879), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(1883), + [anon_sym_R_DQUOTE] = ACTIONS(1885), + [anon_sym_LR_DQUOTE] = ACTIONS(1885), + [anon_sym_uR_DQUOTE] = ACTIONS(1885), + [anon_sym_UR_DQUOTE] = ACTIONS(1885), + [anon_sym_u8R_DQUOTE] = ACTIONS(1885), + [anon_sym_co_await] = ACTIONS(1887), + [anon_sym_new] = ACTIONS(1889), + [anon_sym_requires] = ACTIONS(1891), + [sym_this] = ACTIONS(1877), + }, + [1870] = { + [sym__expression] = STATE(3050), + [sym__expression_not_binary] = STATE(3021), + [sym_conditional_expression] = STATE(3021), + [sym_assignment_expression] = STATE(3021), + [sym_pointer_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_cast_expression] = STATE(3021), + [sym_sizeof_expression] = STATE(3021), + [sym_offsetof_expression] = STATE(3021), + [sym_generic_expression] = STATE(3021), + [sym_subscript_expression] = STATE(3021), + [sym_call_expression] = STATE(3021), + [sym_gnu_asm_expression] = STATE(3021), + [sym_field_expression] = STATE(3021), + [sym_compound_literal_expression] = STATE(3021), + [sym_parenthesized_expression] = STATE(3021), + [sym_char_literal] = STATE(2901), + [sym_concatenated_string] = STATE(2901), + [sym_string_literal] = STATE(2173), + [sym_null] = STATE(3021), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6616), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3021), + [sym_raw_string_literal] = STATE(2173), + [sym_co_await_expression] = STATE(3021), + [sym_new_expression] = STATE(3021), + [sym_delete_expression] = STATE(3021), + [sym_requires_clause] = STATE(3021), + [sym_requires_expression] = STATE(3021), + [sym_lambda_expression] = STATE(3021), + [sym_lambda_capture_specifier] = STATE(5188), + [sym_fold_expression] = STATE(3021), + [sym_parameter_pack_expansion] = STATE(3021), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3021), + [sym_qualified_type_identifier] = STATE(6616), + [sym_user_defined_literal] = STATE(3021), + [sym_identifier] = ACTIONS(1933), + [anon_sym_LPAREN2] = ACTIONS(1937), + [anon_sym_BANG] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(1941), + [anon_sym_DASH] = ACTIONS(1939), + [anon_sym_PLUS] = ACTIONS(1939), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(1945), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(1939), + [anon_sym_compl] = ACTIONS(1939), + [anon_sym_DASH_DASH] = ACTIONS(1953), + [anon_sym_PLUS_PLUS] = ACTIONS(1953), + [anon_sym_sizeof] = ACTIONS(1955), + [anon_sym_offsetof] = ACTIONS(1957), + [anon_sym__Generic] = ACTIONS(1959), + [anon_sym_asm] = ACTIONS(1961), + [anon_sym___asm__] = ACTIONS(1961), + [sym_number_literal] = ACTIONS(1963), + [anon_sym_L_SQUOTE] = ACTIONS(1965), + [anon_sym_u_SQUOTE] = ACTIONS(1965), + [anon_sym_U_SQUOTE] = ACTIONS(1965), + [anon_sym_u8_SQUOTE] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_L_DQUOTE] = ACTIONS(1967), + [anon_sym_u_DQUOTE] = ACTIONS(1967), + [anon_sym_U_DQUOTE] = ACTIONS(1967), + [anon_sym_u8_DQUOTE] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(1967), + [sym_true] = ACTIONS(1969), + [sym_false] = ACTIONS(1969), + [anon_sym_NULL] = ACTIONS(1971), + [anon_sym_nullptr] = ACTIONS(1971), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(1975), + [anon_sym_R_DQUOTE] = ACTIONS(1977), + [anon_sym_LR_DQUOTE] = ACTIONS(1977), + [anon_sym_uR_DQUOTE] = ACTIONS(1977), + [anon_sym_UR_DQUOTE] = ACTIONS(1977), + [anon_sym_u8R_DQUOTE] = ACTIONS(1977), + [anon_sym_co_await] = ACTIONS(1979), + [anon_sym_new] = ACTIONS(1981), + [anon_sym_requires] = ACTIONS(1983), + [sym_this] = ACTIONS(1969), + }, + [1871] = { + [sym__expression] = STATE(3440), + [sym__expression_not_binary] = STATE(3565), + [sym_conditional_expression] = STATE(3565), + [sym_assignment_expression] = STATE(3565), + [sym_pointer_expression] = STATE(3220), + [sym_unary_expression] = STATE(3565), + [sym_binary_expression] = STATE(3565), + [sym_update_expression] = STATE(3565), + [sym_cast_expression] = STATE(3565), + [sym_sizeof_expression] = STATE(3565), + [sym_offsetof_expression] = STATE(3565), + [sym_generic_expression] = STATE(3565), + [sym_subscript_expression] = STATE(3220), + [sym_call_expression] = STATE(3220), + [sym_gnu_asm_expression] = STATE(3565), + [sym_field_expression] = STATE(3220), + [sym_compound_literal_expression] = STATE(3565), + [sym_parenthesized_expression] = STATE(3220), + [sym_char_literal] = STATE(3429), + [sym_concatenated_string] = STATE(3429), + [sym_string_literal] = STATE(2248), + [sym_null] = STATE(3565), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6847), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3565), + [sym_raw_string_literal] = STATE(2248), + [sym_co_await_expression] = STATE(3565), + [sym_new_expression] = STATE(3565), + [sym_delete_expression] = STATE(3565), + [sym_requires_clause] = STATE(3565), + [sym_requires_expression] = STATE(3565), + [sym_lambda_expression] = STATE(3565), + [sym_lambda_capture_specifier] = STATE(5204), + [sym_fold_expression] = STATE(3565), + [sym_parameter_pack_expansion] = STATE(3565), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5232), + [sym_qualified_identifier] = STATE(3220), + [sym_qualified_type_identifier] = STATE(6847), + [sym_user_defined_literal] = STATE(3565), + [sym_identifier] = ACTIONS(2095), + [anon_sym_LPAREN2] = ACTIONS(1841), + [anon_sym_BANG] = ACTIONS(1843), + [anon_sym_TILDE] = ACTIONS(1843), + [anon_sym_DASH] = ACTIONS(1845), + [anon_sym_PLUS] = ACTIONS(1845), + [anon_sym_STAR] = ACTIONS(1847), + [anon_sym_AMP] = ACTIONS(1847), + [anon_sym_COLON_COLON] = ACTIONS(1849), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1999), + [anon_sym_not] = ACTIONS(1845), + [anon_sym_compl] = ACTIONS(1845), + [anon_sym_DASH_DASH] = ACTIONS(1861), + [anon_sym_PLUS_PLUS] = ACTIONS(1861), + [anon_sym_sizeof] = ACTIONS(1863), + [anon_sym_offsetof] = ACTIONS(1865), + [anon_sym__Generic] = ACTIONS(1867), + [anon_sym_asm] = ACTIONS(1869), + [anon_sym___asm__] = ACTIONS(1869), + [sym_number_literal] = ACTIONS(1871), + [anon_sym_L_SQUOTE] = ACTIONS(1873), + [anon_sym_u_SQUOTE] = ACTIONS(1873), + [anon_sym_U_SQUOTE] = ACTIONS(1873), + [anon_sym_u8_SQUOTE] = ACTIONS(1873), + [anon_sym_SQUOTE] = ACTIONS(1873), + [anon_sym_L_DQUOTE] = ACTIONS(1875), + [anon_sym_u_DQUOTE] = ACTIONS(1875), + [anon_sym_U_DQUOTE] = ACTIONS(1875), + [anon_sym_u8_DQUOTE] = ACTIONS(1875), + [anon_sym_DQUOTE] = ACTIONS(1875), + [sym_true] = ACTIONS(1877), + [sym_false] = ACTIONS(1877), + [anon_sym_NULL] = ACTIONS(1879), + [anon_sym_nullptr] = ACTIONS(1879), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(1883), + [anon_sym_R_DQUOTE] = ACTIONS(1885), + [anon_sym_LR_DQUOTE] = ACTIONS(1885), + [anon_sym_uR_DQUOTE] = ACTIONS(1885), + [anon_sym_UR_DQUOTE] = ACTIONS(1885), + [anon_sym_u8R_DQUOTE] = ACTIONS(1885), + [anon_sym_co_await] = ACTIONS(1887), + [anon_sym_new] = ACTIONS(1889), + [anon_sym_requires] = ACTIONS(1891), + [sym_this] = ACTIONS(1877), + }, + [1872] = { + [sym__expression] = STATE(4370), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), + }, + [1873] = { + [sym__expression] = STATE(4420), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3579), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3579), + [sym_call_expression] = STATE(3579), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3579), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3579), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3579), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3633), + [anon_sym_LPAREN2] = ACTIONS(3635), + [anon_sym_BANG] = ACTIONS(3639), + [anon_sym_TILDE] = ACTIONS(3639), + [anon_sym_DASH] = ACTIONS(3637), + [anon_sym_PLUS] = ACTIONS(3637), + [anon_sym_STAR] = ACTIONS(3641), + [anon_sym_AMP] = ACTIONS(3641), + [anon_sym_COLON_COLON] = ACTIONS(3643), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(3637), + [anon_sym_compl] = ACTIONS(3637), + [anon_sym_DASH_DASH] = ACTIONS(3645), + [anon_sym_PLUS_PLUS] = ACTIONS(3645), + [anon_sym_sizeof] = ACTIONS(3647), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(3649), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(3651), + [anon_sym_new] = ACTIONS(3631), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), + }, + [1874] = { + [sym__expression] = STATE(4389), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3579), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3579), + [sym_call_expression] = STATE(3579), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3579), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3579), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3579), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3633), + [anon_sym_LPAREN2] = ACTIONS(3635), + [anon_sym_BANG] = ACTIONS(3639), + [anon_sym_TILDE] = ACTIONS(3639), + [anon_sym_DASH] = ACTIONS(3637), + [anon_sym_PLUS] = ACTIONS(3637), + [anon_sym_STAR] = ACTIONS(3641), + [anon_sym_AMP] = ACTIONS(3641), + [anon_sym_COLON_COLON] = ACTIONS(3643), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(3637), + [anon_sym_compl] = ACTIONS(3637), + [anon_sym_DASH_DASH] = ACTIONS(3645), + [anon_sym_PLUS_PLUS] = ACTIONS(3645), + [anon_sym_sizeof] = ACTIONS(3647), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(3649), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(3651), + [anon_sym_new] = ACTIONS(3631), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), + }, + [1875] = { + [sym__expression] = STATE(3180), + [sym__expression_not_binary] = STATE(3318), + [sym_conditional_expression] = STATE(3318), + [sym_assignment_expression] = STATE(3318), + [sym_pointer_expression] = STATE(3318), + [sym_unary_expression] = STATE(3318), + [sym_binary_expression] = STATE(3318), + [sym_update_expression] = STATE(3318), + [sym_cast_expression] = STATE(3318), + [sym_sizeof_expression] = STATE(3318), + [sym_offsetof_expression] = STATE(3318), + [sym_generic_expression] = STATE(3318), + [sym_subscript_expression] = STATE(3318), + [sym_call_expression] = STATE(3318), + [sym_gnu_asm_expression] = STATE(3318), + [sym_field_expression] = STATE(3318), + [sym_compound_literal_expression] = STATE(3318), + [sym_parenthesized_expression] = STATE(3318), + [sym_char_literal] = STATE(3076), + [sym_concatenated_string] = STATE(3076), + [sym_string_literal] = STATE(2202), + [sym_null] = STATE(3318), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6739), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3318), + [sym_raw_string_literal] = STATE(2202), + [sym_co_await_expression] = STATE(3318), + [sym_new_expression] = STATE(3318), + [sym_delete_expression] = STATE(3318), + [sym_requires_clause] = STATE(3318), + [sym_requires_expression] = STATE(3318), + [sym_lambda_expression] = STATE(3318), + [sym_lambda_capture_specifier] = STATE(5187), + [sym_fold_expression] = STATE(3318), + [sym_parameter_pack_expansion] = STATE(3318), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5232), + [sym_qualified_identifier] = STATE(3318), + [sym_qualified_type_identifier] = STATE(6739), + [sym_user_defined_literal] = STATE(3318), + [sym_identifier] = ACTIONS(1985), + [anon_sym_LPAREN2] = ACTIONS(1987), + [anon_sym_BANG] = ACTIONS(1991), + [anon_sym_TILDE] = ACTIONS(1991), + [anon_sym_DASH] = ACTIONS(1989), + [anon_sym_PLUS] = ACTIONS(1989), + [anon_sym_STAR] = ACTIONS(1847), + [anon_sym_AMP] = ACTIONS(1847), + [anon_sym_COLON_COLON] = ACTIONS(1995), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1999), + [anon_sym_not] = ACTIONS(1989), + [anon_sym_compl] = ACTIONS(1989), + [anon_sym_DASH_DASH] = ACTIONS(2001), + [anon_sym_PLUS_PLUS] = ACTIONS(2001), + [anon_sym_sizeof] = ACTIONS(2003), + [anon_sym_offsetof] = ACTIONS(2005), + [anon_sym__Generic] = ACTIONS(2007), + [anon_sym_asm] = ACTIONS(2009), + [anon_sym___asm__] = ACTIONS(2009), + [sym_number_literal] = ACTIONS(2011), + [anon_sym_L_SQUOTE] = ACTIONS(2013), + [anon_sym_u_SQUOTE] = ACTIONS(2013), + [anon_sym_U_SQUOTE] = ACTIONS(2013), + [anon_sym_u8_SQUOTE] = ACTIONS(2013), + [anon_sym_SQUOTE] = ACTIONS(2013), + [anon_sym_L_DQUOTE] = ACTIONS(2015), + [anon_sym_u_DQUOTE] = ACTIONS(2015), + [anon_sym_U_DQUOTE] = ACTIONS(2015), + [anon_sym_u8_DQUOTE] = ACTIONS(2015), + [anon_sym_DQUOTE] = ACTIONS(2015), + [sym_true] = ACTIONS(2017), + [sym_false] = ACTIONS(2017), + [anon_sym_NULL] = ACTIONS(2019), + [anon_sym_nullptr] = ACTIONS(2019), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(2021), + [anon_sym_R_DQUOTE] = ACTIONS(2023), + [anon_sym_LR_DQUOTE] = ACTIONS(2023), + [anon_sym_uR_DQUOTE] = ACTIONS(2023), + [anon_sym_UR_DQUOTE] = ACTIONS(2023), + [anon_sym_u8R_DQUOTE] = ACTIONS(2023), + [anon_sym_co_await] = ACTIONS(2025), + [anon_sym_new] = ACTIONS(2027), + [anon_sym_requires] = ACTIONS(2029), + [sym_this] = ACTIONS(2017), + }, + [1876] = { + [sym__expression] = STATE(4417), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3579), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3579), + [sym_call_expression] = STATE(3579), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3579), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3579), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3579), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3633), + [anon_sym_LPAREN2] = ACTIONS(3635), + [anon_sym_BANG] = ACTIONS(3639), + [anon_sym_TILDE] = ACTIONS(3639), + [anon_sym_DASH] = ACTIONS(3637), + [anon_sym_PLUS] = ACTIONS(3637), + [anon_sym_STAR] = ACTIONS(3641), + [anon_sym_AMP] = ACTIONS(3641), + [anon_sym_COLON_COLON] = ACTIONS(3643), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(3637), + [anon_sym_compl] = ACTIONS(3637), + [anon_sym_DASH_DASH] = ACTIONS(3645), + [anon_sym_PLUS_PLUS] = ACTIONS(3645), + [anon_sym_sizeof] = ACTIONS(3647), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(3649), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(3651), + [anon_sym_new] = ACTIONS(3631), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), + }, + [1877] = { + [sym__expression] = STATE(3412), + [sym__expression_not_binary] = STATE(3513), + [sym_conditional_expression] = STATE(3513), + [sym_assignment_expression] = STATE(3513), + [sym_pointer_expression] = STATE(3513), + [sym_unary_expression] = STATE(3513), + [sym_binary_expression] = STATE(3513), + [sym_update_expression] = STATE(3513), + [sym_cast_expression] = STATE(3513), + [sym_sizeof_expression] = STATE(3513), + [sym_offsetof_expression] = STATE(3513), + [sym_generic_expression] = STATE(3513), + [sym_subscript_expression] = STATE(3513), + [sym_call_expression] = STATE(3513), + [sym_gnu_asm_expression] = STATE(3513), + [sym_field_expression] = STATE(3513), + [sym_compound_literal_expression] = STATE(3513), + [sym_parenthesized_expression] = STATE(3513), + [sym_char_literal] = STATE(3385), + [sym_concatenated_string] = STATE(3385), + [sym_string_literal] = STATE(2225), + [sym_null] = STATE(3513), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6957), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3513), + [sym_raw_string_literal] = STATE(2225), + [sym_co_await_expression] = STATE(3513), + [sym_new_expression] = STATE(3513), + [sym_delete_expression] = STATE(3513), + [sym_requires_clause] = STATE(3513), + [sym_requires_expression] = STATE(3513), + [sym_lambda_expression] = STATE(3513), + [sym_lambda_capture_specifier] = STATE(5162), + [sym_fold_expression] = STATE(3513), + [sym_parameter_pack_expansion] = STATE(3513), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5289), + [sym_qualified_identifier] = STATE(3513), + [sym_qualified_type_identifier] = STATE(6957), + [sym_user_defined_literal] = STATE(3513), + [sym_identifier] = ACTIONS(2031), + [anon_sym_LPAREN2] = ACTIONS(2033), + [anon_sym_BANG] = ACTIONS(2037), + [anon_sym_TILDE] = ACTIONS(2037), + [anon_sym_DASH] = ACTIONS(2035), + [anon_sym_PLUS] = ACTIONS(2035), + [anon_sym_STAR] = ACTIONS(2624), + [anon_sym_AMP] = ACTIONS(2624), + [anon_sym_COLON_COLON] = ACTIONS(2041), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(2045), + [anon_sym_not] = ACTIONS(2035), + [anon_sym_compl] = ACTIONS(2035), + [anon_sym_DASH_DASH] = ACTIONS(2047), + [anon_sym_PLUS_PLUS] = ACTIONS(2047), + [anon_sym_sizeof] = ACTIONS(2049), + [anon_sym_offsetof] = ACTIONS(2051), + [anon_sym__Generic] = ACTIONS(2053), + [anon_sym_asm] = ACTIONS(2055), + [anon_sym___asm__] = ACTIONS(2055), + [sym_number_literal] = ACTIONS(2057), + [anon_sym_L_SQUOTE] = ACTIONS(2059), + [anon_sym_u_SQUOTE] = ACTIONS(2059), + [anon_sym_U_SQUOTE] = ACTIONS(2059), + [anon_sym_u8_SQUOTE] = ACTIONS(2059), + [anon_sym_SQUOTE] = ACTIONS(2059), + [anon_sym_L_DQUOTE] = ACTIONS(2061), + [anon_sym_u_DQUOTE] = ACTIONS(2061), + [anon_sym_U_DQUOTE] = ACTIONS(2061), + [anon_sym_u8_DQUOTE] = ACTIONS(2061), + [anon_sym_DQUOTE] = ACTIONS(2061), + [sym_true] = ACTIONS(2063), + [sym_false] = ACTIONS(2063), + [anon_sym_NULL] = ACTIONS(2065), + [anon_sym_nullptr] = ACTIONS(2065), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(2067), + [anon_sym_R_DQUOTE] = ACTIONS(2069), + [anon_sym_LR_DQUOTE] = ACTIONS(2069), + [anon_sym_uR_DQUOTE] = ACTIONS(2069), + [anon_sym_UR_DQUOTE] = ACTIONS(2069), + [anon_sym_u8R_DQUOTE] = ACTIONS(2069), + [anon_sym_co_await] = ACTIONS(2071), + [anon_sym_new] = ACTIONS(2073), + [anon_sym_requires] = ACTIONS(2075), + [sym_this] = ACTIONS(2063), + }, + [1878] = { + [sym__expression] = STATE(4224), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), + }, + [1879] = { + [sym__expression] = STATE(3930), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3509), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3509), + [sym_call_expression] = STATE(3509), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3509), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3509), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3509), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3613), + [anon_sym_LPAREN2] = ACTIONS(3615), + [anon_sym_BANG] = ACTIONS(3619), + [anon_sym_TILDE] = ACTIONS(3619), + [anon_sym_DASH] = ACTIONS(3617), + [anon_sym_PLUS] = ACTIONS(3617), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(3621), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(3617), + [anon_sym_compl] = ACTIONS(3617), + [anon_sym_DASH_DASH] = ACTIONS(3623), + [anon_sym_PLUS_PLUS] = ACTIONS(3623), + [anon_sym_sizeof] = ACTIONS(3625), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(3627), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(3629), + [anon_sym_new] = ACTIONS(3631), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), + }, + [1880] = { + [sym__expression] = STATE(3018), + [sym__expression_not_binary] = STATE(3021), + [sym_conditional_expression] = STATE(3021), + [sym_assignment_expression] = STATE(3021), + [sym_pointer_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_cast_expression] = STATE(3021), + [sym_sizeof_expression] = STATE(3021), + [sym_offsetof_expression] = STATE(3021), + [sym_generic_expression] = STATE(3021), + [sym_subscript_expression] = STATE(3021), + [sym_call_expression] = STATE(3021), + [sym_gnu_asm_expression] = STATE(3021), + [sym_field_expression] = STATE(3021), + [sym_compound_literal_expression] = STATE(3021), + [sym_parenthesized_expression] = STATE(3021), + [sym_char_literal] = STATE(2901), + [sym_concatenated_string] = STATE(2901), + [sym_string_literal] = STATE(2173), + [sym_null] = STATE(3021), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6616), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3021), + [sym_raw_string_literal] = STATE(2173), + [sym_co_await_expression] = STATE(3021), + [sym_new_expression] = STATE(3021), + [sym_delete_expression] = STATE(3021), + [sym_requires_clause] = STATE(3021), + [sym_requires_expression] = STATE(3021), + [sym_lambda_expression] = STATE(3021), + [sym_lambda_capture_specifier] = STATE(5188), + [sym_fold_expression] = STATE(3021), + [sym_parameter_pack_expansion] = STATE(3021), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3021), + [sym_qualified_type_identifier] = STATE(6616), + [sym_user_defined_literal] = STATE(3021), + [sym_identifier] = ACTIONS(1933), + [anon_sym_LPAREN2] = ACTIONS(1937), + [anon_sym_BANG] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(1941), + [anon_sym_DASH] = ACTIONS(1939), + [anon_sym_PLUS] = ACTIONS(1939), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(1945), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(1939), + [anon_sym_compl] = ACTIONS(1939), + [anon_sym_DASH_DASH] = ACTIONS(1953), + [anon_sym_PLUS_PLUS] = ACTIONS(1953), + [anon_sym_sizeof] = ACTIONS(1955), + [anon_sym_offsetof] = ACTIONS(1957), + [anon_sym__Generic] = ACTIONS(1959), + [anon_sym_asm] = ACTIONS(1961), + [anon_sym___asm__] = ACTIONS(1961), + [sym_number_literal] = ACTIONS(1963), + [anon_sym_L_SQUOTE] = ACTIONS(1965), + [anon_sym_u_SQUOTE] = ACTIONS(1965), + [anon_sym_U_SQUOTE] = ACTIONS(1965), + [anon_sym_u8_SQUOTE] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_L_DQUOTE] = ACTIONS(1967), + [anon_sym_u_DQUOTE] = ACTIONS(1967), + [anon_sym_U_DQUOTE] = ACTIONS(1967), + [anon_sym_u8_DQUOTE] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(1967), + [sym_true] = ACTIONS(1969), + [sym_false] = ACTIONS(1969), + [anon_sym_NULL] = ACTIONS(1971), + [anon_sym_nullptr] = ACTIONS(1971), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(1975), + [anon_sym_R_DQUOTE] = ACTIONS(1977), + [anon_sym_LR_DQUOTE] = ACTIONS(1977), + [anon_sym_uR_DQUOTE] = ACTIONS(1977), + [anon_sym_UR_DQUOTE] = ACTIONS(1977), + [anon_sym_u8R_DQUOTE] = ACTIONS(1977), + [anon_sym_co_await] = ACTIONS(1979), + [anon_sym_new] = ACTIONS(1981), + [anon_sym_requires] = ACTIONS(1983), + [sym_this] = ACTIONS(1969), + }, + [1881] = { + [sym__expression] = STATE(4415), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3579), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3579), + [sym_call_expression] = STATE(3579), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3579), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3579), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3579), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3633), + [anon_sym_LPAREN2] = ACTIONS(3635), + [anon_sym_BANG] = ACTIONS(3639), + [anon_sym_TILDE] = ACTIONS(3639), + [anon_sym_DASH] = ACTIONS(3637), + [anon_sym_PLUS] = ACTIONS(3637), + [anon_sym_STAR] = ACTIONS(3641), + [anon_sym_AMP] = ACTIONS(3641), + [anon_sym_COLON_COLON] = ACTIONS(3643), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(3637), + [anon_sym_compl] = ACTIONS(3637), + [anon_sym_DASH_DASH] = ACTIONS(3645), + [anon_sym_PLUS_PLUS] = ACTIONS(3645), + [anon_sym_sizeof] = ACTIONS(3647), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(3649), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(3651), + [anon_sym_new] = ACTIONS(3631), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), + }, + [1882] = { + [sym__expression] = STATE(3973), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), + }, + [1883] = { + [sym__expression] = STATE(4250), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3509), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3509), + [sym_call_expression] = STATE(3509), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3509), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3509), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3509), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3613), + [anon_sym_LPAREN2] = ACTIONS(3615), + [anon_sym_BANG] = ACTIONS(3619), + [anon_sym_TILDE] = ACTIONS(3619), + [anon_sym_DASH] = ACTIONS(3617), + [anon_sym_PLUS] = ACTIONS(3617), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(3621), + [anon_sym_LBRACK] = ACTIONS(4421), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(3617), + [anon_sym_compl] = ACTIONS(3617), + [anon_sym_DASH_DASH] = ACTIONS(3623), + [anon_sym_PLUS_PLUS] = ACTIONS(3623), + [anon_sym_sizeof] = ACTIONS(3625), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(3627), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(3629), + [anon_sym_new] = ACTIONS(3631), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), + }, + [1884] = { + [sym__expression] = STATE(4113), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), + }, + [1885] = { + [sym__expression] = STATE(3973), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3509), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3509), + [sym_call_expression] = STATE(3509), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3509), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3509), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3509), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3613), + [anon_sym_LPAREN2] = ACTIONS(3615), + [anon_sym_BANG] = ACTIONS(3619), + [anon_sym_TILDE] = ACTIONS(3619), + [anon_sym_DASH] = ACTIONS(3617), + [anon_sym_PLUS] = ACTIONS(3617), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(3621), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(3617), + [anon_sym_compl] = ACTIONS(3617), + [anon_sym_DASH_DASH] = ACTIONS(3623), + [anon_sym_PLUS_PLUS] = ACTIONS(3623), + [anon_sym_sizeof] = ACTIONS(3625), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(3627), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(3629), + [anon_sym_new] = ACTIONS(3631), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), + }, + [1886] = { + [sym__expression] = STATE(4413), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3579), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3579), + [sym_call_expression] = STATE(3579), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3579), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3579), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3579), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3633), + [anon_sym_LPAREN2] = ACTIONS(3635), + [anon_sym_BANG] = ACTIONS(3639), + [anon_sym_TILDE] = ACTIONS(3639), + [anon_sym_DASH] = ACTIONS(3637), + [anon_sym_PLUS] = ACTIONS(3637), + [anon_sym_STAR] = ACTIONS(3641), + [anon_sym_AMP] = ACTIONS(3641), + [anon_sym_COLON_COLON] = ACTIONS(3643), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(3637), + [anon_sym_compl] = ACTIONS(3637), + [anon_sym_DASH_DASH] = ACTIONS(3645), + [anon_sym_PLUS_PLUS] = ACTIONS(3645), + [anon_sym_sizeof] = ACTIONS(3647), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(3649), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(3651), + [anon_sym_new] = ACTIONS(3631), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), + }, + [1887] = { + [sym__expression] = STATE(3018), + [sym__expression_not_binary] = STATE(3021), + [sym_conditional_expression] = STATE(3021), + [sym_assignment_expression] = STATE(3021), + [sym_pointer_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_cast_expression] = STATE(3021), + [sym_sizeof_expression] = STATE(3021), + [sym_offsetof_expression] = STATE(3021), + [sym_generic_expression] = STATE(3021), + [sym_subscript_expression] = STATE(3021), + [sym_call_expression] = STATE(3021), + [sym_gnu_asm_expression] = STATE(3021), + [sym_field_expression] = STATE(3021), + [sym_compound_literal_expression] = STATE(3021), + [sym_parenthesized_expression] = STATE(3021), + [sym_char_literal] = STATE(2901), + [sym_concatenated_string] = STATE(2901), + [sym_string_literal] = STATE(2173), + [sym_null] = STATE(3021), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6616), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3021), + [sym_raw_string_literal] = STATE(2173), + [sym_co_await_expression] = STATE(3021), + [sym_new_expression] = STATE(3021), + [sym_delete_expression] = STATE(3021), + [sym_requires_clause] = STATE(3021), + [sym_requires_expression] = STATE(3021), + [sym_lambda_expression] = STATE(3021), + [sym_lambda_capture_specifier] = STATE(5188), + [sym_fold_expression] = STATE(3021), + [sym_parameter_pack_expansion] = STATE(3021), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3021), + [sym_qualified_type_identifier] = STATE(6616), + [sym_user_defined_literal] = STATE(3021), + [sym_identifier] = ACTIONS(4423), + [anon_sym_LPAREN2] = ACTIONS(1937), + [anon_sym_BANG] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(1941), + [anon_sym_DASH] = ACTIONS(1939), + [anon_sym_PLUS] = ACTIONS(1939), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(1945), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(1939), + [anon_sym_compl] = ACTIONS(1939), + [anon_sym_DASH_DASH] = ACTIONS(1953), + [anon_sym_PLUS_PLUS] = ACTIONS(1953), + [anon_sym_sizeof] = ACTIONS(1955), + [anon_sym_offsetof] = ACTIONS(1957), + [anon_sym__Generic] = ACTIONS(1959), + [anon_sym_asm] = ACTIONS(1961), + [anon_sym___asm__] = ACTIONS(1961), + [sym_number_literal] = ACTIONS(1963), + [anon_sym_L_SQUOTE] = ACTIONS(1965), + [anon_sym_u_SQUOTE] = ACTIONS(1965), + [anon_sym_U_SQUOTE] = ACTIONS(1965), + [anon_sym_u8_SQUOTE] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_L_DQUOTE] = ACTIONS(1967), + [anon_sym_u_DQUOTE] = ACTIONS(1967), + [anon_sym_U_DQUOTE] = ACTIONS(1967), + [anon_sym_u8_DQUOTE] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(1967), + [sym_true] = ACTIONS(1969), + [sym_false] = ACTIONS(1969), + [anon_sym_NULL] = ACTIONS(1971), + [anon_sym_nullptr] = ACTIONS(1971), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(1975), + [anon_sym_R_DQUOTE] = ACTIONS(1977), + [anon_sym_LR_DQUOTE] = ACTIONS(1977), + [anon_sym_uR_DQUOTE] = ACTIONS(1977), + [anon_sym_UR_DQUOTE] = ACTIONS(1977), + [anon_sym_u8R_DQUOTE] = ACTIONS(1977), + [anon_sym_co_await] = ACTIONS(1979), + [anon_sym_new] = ACTIONS(1981), + [anon_sym_requires] = ACTIONS(1983), + [sym_this] = ACTIONS(1969), + }, + [1888] = { + [sym__expression] = STATE(3454), + [sym__expression_not_binary] = STATE(3021), + [sym_conditional_expression] = STATE(3021), + [sym_assignment_expression] = STATE(3021), + [sym_pointer_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_cast_expression] = STATE(3021), + [sym_sizeof_expression] = STATE(3021), + [sym_offsetof_expression] = STATE(3021), + [sym_generic_expression] = STATE(3021), + [sym_subscript_expression] = STATE(3021), + [sym_call_expression] = STATE(3021), + [sym_gnu_asm_expression] = STATE(3021), + [sym_field_expression] = STATE(3021), + [sym_compound_literal_expression] = STATE(3021), + [sym_parenthesized_expression] = STATE(3021), + [sym_char_literal] = STATE(2901), + [sym_concatenated_string] = STATE(2901), + [sym_string_literal] = STATE(2173), + [sym_null] = STATE(3021), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6616), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3021), + [sym_raw_string_literal] = STATE(2173), + [sym_co_await_expression] = STATE(3021), + [sym_new_expression] = STATE(3021), + [sym_delete_expression] = STATE(3021), + [sym_requires_clause] = STATE(3021), + [sym_requires_expression] = STATE(3021), + [sym_lambda_expression] = STATE(3021), + [sym_lambda_capture_specifier] = STATE(5188), + [sym_fold_expression] = STATE(3021), + [sym_parameter_pack_expansion] = STATE(3021), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3021), + [sym_qualified_type_identifier] = STATE(6616), + [sym_user_defined_literal] = STATE(3021), + [sym_identifier] = ACTIONS(1933), + [anon_sym_LPAREN2] = ACTIONS(2077), + [anon_sym_BANG] = ACTIONS(2081), + [anon_sym_TILDE] = ACTIONS(2081), + [anon_sym_DASH] = ACTIONS(2079), + [anon_sym_PLUS] = ACTIONS(2079), + [anon_sym_STAR] = ACTIONS(3641), + [anon_sym_AMP] = ACTIONS(3641), + [anon_sym_COLON_COLON] = ACTIONS(2085), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(2079), + [anon_sym_compl] = ACTIONS(2079), + [anon_sym_DASH_DASH] = ACTIONS(2087), + [anon_sym_PLUS_PLUS] = ACTIONS(2087), + [anon_sym_sizeof] = ACTIONS(2089), + [anon_sym_offsetof] = ACTIONS(1957), + [anon_sym__Generic] = ACTIONS(1959), + [anon_sym_asm] = ACTIONS(1961), + [anon_sym___asm__] = ACTIONS(1961), + [sym_number_literal] = ACTIONS(1963), + [anon_sym_L_SQUOTE] = ACTIONS(1965), + [anon_sym_u_SQUOTE] = ACTIONS(1965), + [anon_sym_U_SQUOTE] = ACTIONS(1965), + [anon_sym_u8_SQUOTE] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_L_DQUOTE] = ACTIONS(1967), + [anon_sym_u_DQUOTE] = ACTIONS(1967), + [anon_sym_U_DQUOTE] = ACTIONS(1967), + [anon_sym_u8_DQUOTE] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(1967), + [sym_true] = ACTIONS(1969), + [sym_false] = ACTIONS(1969), + [anon_sym_NULL] = ACTIONS(1971), + [anon_sym_nullptr] = ACTIONS(1971), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(2091), + [anon_sym_R_DQUOTE] = ACTIONS(1977), + [anon_sym_LR_DQUOTE] = ACTIONS(1977), + [anon_sym_uR_DQUOTE] = ACTIONS(1977), + [anon_sym_UR_DQUOTE] = ACTIONS(1977), + [anon_sym_u8R_DQUOTE] = ACTIONS(1977), + [anon_sym_co_await] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(1981), + [anon_sym_requires] = ACTIONS(1983), + [sym_this] = ACTIONS(1969), + }, + [1889] = { + [sym__expression] = STATE(3157), + [sym__expression_not_binary] = STATE(3318), + [sym_conditional_expression] = STATE(3318), + [sym_assignment_expression] = STATE(3318), + [sym_pointer_expression] = STATE(3318), + [sym_unary_expression] = STATE(3318), + [sym_binary_expression] = STATE(3318), + [sym_update_expression] = STATE(3318), + [sym_cast_expression] = STATE(3318), + [sym_sizeof_expression] = STATE(3318), + [sym_offsetof_expression] = STATE(3318), + [sym_generic_expression] = STATE(3318), + [sym_subscript_expression] = STATE(3318), + [sym_call_expression] = STATE(3318), + [sym_gnu_asm_expression] = STATE(3318), + [sym_field_expression] = STATE(3318), + [sym_compound_literal_expression] = STATE(3318), + [sym_parenthesized_expression] = STATE(3318), + [sym_char_literal] = STATE(3076), + [sym_concatenated_string] = STATE(3076), + [sym_string_literal] = STATE(2202), + [sym_null] = STATE(3318), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6739), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3318), + [sym_raw_string_literal] = STATE(2202), + [sym_co_await_expression] = STATE(3318), + [sym_new_expression] = STATE(3318), + [sym_delete_expression] = STATE(3318), + [sym_requires_clause] = STATE(3318), + [sym_requires_expression] = STATE(3318), + [sym_lambda_expression] = STATE(3318), + [sym_lambda_capture_specifier] = STATE(5187), + [sym_fold_expression] = STATE(3318), + [sym_parameter_pack_expansion] = STATE(3318), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5232), + [sym_qualified_identifier] = STATE(3318), + [sym_qualified_type_identifier] = STATE(6739), + [sym_user_defined_literal] = STATE(3318), + [sym_identifier] = ACTIONS(1985), + [anon_sym_LPAREN2] = ACTIONS(1987), + [anon_sym_BANG] = ACTIONS(1991), + [anon_sym_TILDE] = ACTIONS(1991), + [anon_sym_DASH] = ACTIONS(1989), + [anon_sym_PLUS] = ACTIONS(1989), + [anon_sym_STAR] = ACTIONS(1847), + [anon_sym_AMP] = ACTIONS(1847), + [anon_sym_COLON_COLON] = ACTIONS(1995), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1999), + [anon_sym_not] = ACTIONS(1989), + [anon_sym_compl] = ACTIONS(1989), + [anon_sym_DASH_DASH] = ACTIONS(2001), + [anon_sym_PLUS_PLUS] = ACTIONS(2001), + [anon_sym_sizeof] = ACTIONS(2003), + [anon_sym_offsetof] = ACTIONS(2005), + [anon_sym__Generic] = ACTIONS(2007), + [anon_sym_asm] = ACTIONS(2009), + [anon_sym___asm__] = ACTIONS(2009), + [sym_number_literal] = ACTIONS(2011), + [anon_sym_L_SQUOTE] = ACTIONS(2013), + [anon_sym_u_SQUOTE] = ACTIONS(2013), + [anon_sym_U_SQUOTE] = ACTIONS(2013), + [anon_sym_u8_SQUOTE] = ACTIONS(2013), + [anon_sym_SQUOTE] = ACTIONS(2013), + [anon_sym_L_DQUOTE] = ACTIONS(2015), + [anon_sym_u_DQUOTE] = ACTIONS(2015), + [anon_sym_U_DQUOTE] = ACTIONS(2015), + [anon_sym_u8_DQUOTE] = ACTIONS(2015), + [anon_sym_DQUOTE] = ACTIONS(2015), + [sym_true] = ACTIONS(2017), + [sym_false] = ACTIONS(2017), + [anon_sym_NULL] = ACTIONS(2019), + [anon_sym_nullptr] = ACTIONS(2019), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(2021), + [anon_sym_R_DQUOTE] = ACTIONS(2023), + [anon_sym_LR_DQUOTE] = ACTIONS(2023), + [anon_sym_uR_DQUOTE] = ACTIONS(2023), + [anon_sym_UR_DQUOTE] = ACTIONS(2023), + [anon_sym_u8R_DQUOTE] = ACTIONS(2023), + [anon_sym_co_await] = ACTIONS(2025), + [anon_sym_new] = ACTIONS(2027), + [anon_sym_requires] = ACTIONS(2029), + [sym_this] = ACTIONS(2017), + }, + [1890] = { + [sym__expression] = STATE(4385), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), + }, + [1891] = { + [sym__expression] = STATE(3154), + [sym__expression_not_binary] = STATE(3318), + [sym_conditional_expression] = STATE(3318), + [sym_assignment_expression] = STATE(3318), + [sym_pointer_expression] = STATE(3318), + [sym_unary_expression] = STATE(3318), + [sym_binary_expression] = STATE(3318), + [sym_update_expression] = STATE(3318), + [sym_cast_expression] = STATE(3318), + [sym_sizeof_expression] = STATE(3318), + [sym_offsetof_expression] = STATE(3318), + [sym_generic_expression] = STATE(3318), + [sym_subscript_expression] = STATE(3318), + [sym_call_expression] = STATE(3318), + [sym_gnu_asm_expression] = STATE(3318), + [sym_field_expression] = STATE(3318), + [sym_compound_literal_expression] = STATE(3318), + [sym_parenthesized_expression] = STATE(3318), + [sym_char_literal] = STATE(3076), + [sym_concatenated_string] = STATE(3076), + [sym_string_literal] = STATE(2202), + [sym_null] = STATE(3318), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6739), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3318), + [sym_raw_string_literal] = STATE(2202), + [sym_co_await_expression] = STATE(3318), + [sym_new_expression] = STATE(3318), + [sym_delete_expression] = STATE(3318), + [sym_requires_clause] = STATE(3318), + [sym_requires_expression] = STATE(3318), + [sym_lambda_expression] = STATE(3318), + [sym_lambda_capture_specifier] = STATE(5187), + [sym_fold_expression] = STATE(3318), + [sym_parameter_pack_expansion] = STATE(3318), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5232), + [sym_qualified_identifier] = STATE(3318), + [sym_qualified_type_identifier] = STATE(6739), + [sym_user_defined_literal] = STATE(3318), + [sym_identifier] = ACTIONS(1985), + [anon_sym_LPAREN2] = ACTIONS(1987), + [anon_sym_BANG] = ACTIONS(1991), + [anon_sym_TILDE] = ACTIONS(1991), + [anon_sym_DASH] = ACTIONS(1989), + [anon_sym_PLUS] = ACTIONS(1989), + [anon_sym_STAR] = ACTIONS(1847), + [anon_sym_AMP] = ACTIONS(1847), + [anon_sym_COLON_COLON] = ACTIONS(1995), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1999), + [anon_sym_not] = ACTIONS(1989), + [anon_sym_compl] = ACTIONS(1989), + [anon_sym_DASH_DASH] = ACTIONS(2001), + [anon_sym_PLUS_PLUS] = ACTIONS(2001), + [anon_sym_sizeof] = ACTIONS(2003), + [anon_sym_offsetof] = ACTIONS(2005), + [anon_sym__Generic] = ACTIONS(2007), + [anon_sym_asm] = ACTIONS(2009), + [anon_sym___asm__] = ACTIONS(2009), + [sym_number_literal] = ACTIONS(2011), + [anon_sym_L_SQUOTE] = ACTIONS(2013), + [anon_sym_u_SQUOTE] = ACTIONS(2013), + [anon_sym_U_SQUOTE] = ACTIONS(2013), + [anon_sym_u8_SQUOTE] = ACTIONS(2013), + [anon_sym_SQUOTE] = ACTIONS(2013), + [anon_sym_L_DQUOTE] = ACTIONS(2015), + [anon_sym_u_DQUOTE] = ACTIONS(2015), + [anon_sym_U_DQUOTE] = ACTIONS(2015), + [anon_sym_u8_DQUOTE] = ACTIONS(2015), + [anon_sym_DQUOTE] = ACTIONS(2015), + [sym_true] = ACTIONS(2017), + [sym_false] = ACTIONS(2017), + [anon_sym_NULL] = ACTIONS(2019), + [anon_sym_nullptr] = ACTIONS(2019), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(2021), + [anon_sym_R_DQUOTE] = ACTIONS(2023), + [anon_sym_LR_DQUOTE] = ACTIONS(2023), + [anon_sym_uR_DQUOTE] = ACTIONS(2023), + [anon_sym_UR_DQUOTE] = ACTIONS(2023), + [anon_sym_u8R_DQUOTE] = ACTIONS(2023), + [anon_sym_co_await] = ACTIONS(2025), + [anon_sym_new] = ACTIONS(2027), + [anon_sym_requires] = ACTIONS(2029), + [sym_this] = ACTIONS(2017), + }, + [1892] = { + [sym__expression] = STATE(3492), + [sym__expression_not_binary] = STATE(3021), + [sym_conditional_expression] = STATE(3021), + [sym_assignment_expression] = STATE(3021), + [sym_pointer_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_cast_expression] = STATE(3021), + [sym_sizeof_expression] = STATE(3021), + [sym_offsetof_expression] = STATE(3021), + [sym_generic_expression] = STATE(3021), + [sym_subscript_expression] = STATE(3021), + [sym_call_expression] = STATE(3021), + [sym_gnu_asm_expression] = STATE(3021), + [sym_field_expression] = STATE(3021), + [sym_compound_literal_expression] = STATE(3021), + [sym_parenthesized_expression] = STATE(3021), + [sym_char_literal] = STATE(2901), + [sym_concatenated_string] = STATE(2901), + [sym_string_literal] = STATE(2173), + [sym_null] = STATE(3021), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6616), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3021), + [sym_raw_string_literal] = STATE(2173), + [sym_co_await_expression] = STATE(3021), + [sym_new_expression] = STATE(3021), + [sym_delete_expression] = STATE(3021), + [sym_requires_clause] = STATE(3021), + [sym_requires_expression] = STATE(3021), + [sym_lambda_expression] = STATE(3021), + [sym_lambda_capture_specifier] = STATE(5188), + [sym_fold_expression] = STATE(3021), + [sym_parameter_pack_expansion] = STATE(3021), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3021), + [sym_qualified_type_identifier] = STATE(6616), + [sym_user_defined_literal] = STATE(3021), + [sym_identifier] = ACTIONS(1933), + [anon_sym_LPAREN2] = ACTIONS(2077), + [anon_sym_BANG] = ACTIONS(2081), + [anon_sym_TILDE] = ACTIONS(2081), + [anon_sym_DASH] = ACTIONS(2079), + [anon_sym_PLUS] = ACTIONS(2079), + [anon_sym_STAR] = ACTIONS(3641), + [anon_sym_AMP] = ACTIONS(3641), + [anon_sym_COLON_COLON] = ACTIONS(2085), + [anon_sym_LBRACK] = ACTIONS(4425), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(2079), + [anon_sym_compl] = ACTIONS(2079), + [anon_sym_DASH_DASH] = ACTIONS(2087), + [anon_sym_PLUS_PLUS] = ACTIONS(2087), + [anon_sym_sizeof] = ACTIONS(2089), + [anon_sym_offsetof] = ACTIONS(1957), + [anon_sym__Generic] = ACTIONS(1959), + [anon_sym_asm] = ACTIONS(1961), + [anon_sym___asm__] = ACTIONS(1961), + [sym_number_literal] = ACTIONS(1963), + [anon_sym_L_SQUOTE] = ACTIONS(1965), + [anon_sym_u_SQUOTE] = ACTIONS(1965), + [anon_sym_U_SQUOTE] = ACTIONS(1965), + [anon_sym_u8_SQUOTE] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_L_DQUOTE] = ACTIONS(1967), + [anon_sym_u_DQUOTE] = ACTIONS(1967), + [anon_sym_U_DQUOTE] = ACTIONS(1967), + [anon_sym_u8_DQUOTE] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(1967), + [sym_true] = ACTIONS(1969), + [sym_false] = ACTIONS(1969), + [anon_sym_NULL] = ACTIONS(1971), + [anon_sym_nullptr] = ACTIONS(1971), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(2091), + [anon_sym_R_DQUOTE] = ACTIONS(1977), + [anon_sym_LR_DQUOTE] = ACTIONS(1977), + [anon_sym_uR_DQUOTE] = ACTIONS(1977), + [anon_sym_UR_DQUOTE] = ACTIONS(1977), + [anon_sym_u8R_DQUOTE] = ACTIONS(1977), + [anon_sym_co_await] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(1981), + [anon_sym_requires] = ACTIONS(1983), + [sym_this] = ACTIONS(1969), + }, + [1893] = { + [sym__expression] = STATE(4412), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3579), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3579), + [sym_call_expression] = STATE(3579), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3579), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3579), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3579), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3633), + [anon_sym_LPAREN2] = ACTIONS(3635), + [anon_sym_BANG] = ACTIONS(3639), + [anon_sym_TILDE] = ACTIONS(3639), + [anon_sym_DASH] = ACTIONS(3637), + [anon_sym_PLUS] = ACTIONS(3637), + [anon_sym_STAR] = ACTIONS(3641), + [anon_sym_AMP] = ACTIONS(3641), + [anon_sym_COLON_COLON] = ACTIONS(3643), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(3637), + [anon_sym_compl] = ACTIONS(3637), + [anon_sym_DASH_DASH] = ACTIONS(3645), + [anon_sym_PLUS_PLUS] = ACTIONS(3645), + [anon_sym_sizeof] = ACTIONS(3647), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(3649), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(3651), + [anon_sym_new] = ACTIONS(3631), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), + }, + [1894] = { + [sym__expression] = STATE(3933), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3509), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3509), + [sym_call_expression] = STATE(3509), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3509), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3509), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3509), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3613), + [anon_sym_LPAREN2] = ACTIONS(3615), + [anon_sym_BANG] = ACTIONS(3619), + [anon_sym_TILDE] = ACTIONS(3619), + [anon_sym_DASH] = ACTIONS(3617), + [anon_sym_PLUS] = ACTIONS(3617), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(3621), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(3617), + [anon_sym_compl] = ACTIONS(3617), + [anon_sym_DASH_DASH] = ACTIONS(3623), + [anon_sym_PLUS_PLUS] = ACTIONS(3623), + [anon_sym_sizeof] = ACTIONS(3625), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(3627), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(3629), + [anon_sym_new] = ACTIONS(3631), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), + }, + [1895] = { + [sym__expression] = STATE(3423), + [sym__expression_not_binary] = STATE(3021), + [sym_conditional_expression] = STATE(3021), + [sym_assignment_expression] = STATE(3021), + [sym_pointer_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_cast_expression] = STATE(3021), + [sym_sizeof_expression] = STATE(3021), + [sym_offsetof_expression] = STATE(3021), + [sym_generic_expression] = STATE(3021), + [sym_subscript_expression] = STATE(3021), + [sym_call_expression] = STATE(3021), + [sym_gnu_asm_expression] = STATE(3021), + [sym_field_expression] = STATE(3021), + [sym_compound_literal_expression] = STATE(3021), + [sym_parenthesized_expression] = STATE(3021), + [sym_char_literal] = STATE(2901), + [sym_concatenated_string] = STATE(2901), + [sym_string_literal] = STATE(2173), + [sym_null] = STATE(3021), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6616), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3021), + [sym_raw_string_literal] = STATE(2173), + [sym_co_await_expression] = STATE(3021), + [sym_new_expression] = STATE(3021), + [sym_delete_expression] = STATE(3021), + [sym_requires_clause] = STATE(3021), + [sym_requires_expression] = STATE(3021), + [sym_lambda_expression] = STATE(3021), + [sym_lambda_capture_specifier] = STATE(5188), + [sym_fold_expression] = STATE(3021), + [sym_parameter_pack_expansion] = STATE(3021), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3021), + [sym_qualified_type_identifier] = STATE(6616), + [sym_user_defined_literal] = STATE(3021), + [sym_identifier] = ACTIONS(1933), + [anon_sym_LPAREN2] = ACTIONS(2077), + [anon_sym_BANG] = ACTIONS(2081), + [anon_sym_TILDE] = ACTIONS(2081), + [anon_sym_DASH] = ACTIONS(2079), + [anon_sym_PLUS] = ACTIONS(2079), + [anon_sym_STAR] = ACTIONS(3641), + [anon_sym_AMP] = ACTIONS(3641), + [anon_sym_COLON_COLON] = ACTIONS(2085), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(2079), + [anon_sym_compl] = ACTIONS(2079), + [anon_sym_DASH_DASH] = ACTIONS(2087), + [anon_sym_PLUS_PLUS] = ACTIONS(2087), + [anon_sym_sizeof] = ACTIONS(2089), + [anon_sym_offsetof] = ACTIONS(1957), + [anon_sym__Generic] = ACTIONS(1959), + [anon_sym_asm] = ACTIONS(1961), + [anon_sym___asm__] = ACTIONS(1961), + [sym_number_literal] = ACTIONS(1963), + [anon_sym_L_SQUOTE] = ACTIONS(1965), + [anon_sym_u_SQUOTE] = ACTIONS(1965), + [anon_sym_U_SQUOTE] = ACTIONS(1965), + [anon_sym_u8_SQUOTE] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_L_DQUOTE] = ACTIONS(1967), + [anon_sym_u_DQUOTE] = ACTIONS(1967), + [anon_sym_U_DQUOTE] = ACTIONS(1967), + [anon_sym_u8_DQUOTE] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(1967), + [sym_true] = ACTIONS(1969), + [sym_false] = ACTIONS(1969), + [anon_sym_NULL] = ACTIONS(1971), + [anon_sym_nullptr] = ACTIONS(1971), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(2091), + [anon_sym_R_DQUOTE] = ACTIONS(1977), + [anon_sym_LR_DQUOTE] = ACTIONS(1977), + [anon_sym_uR_DQUOTE] = ACTIONS(1977), + [anon_sym_UR_DQUOTE] = ACTIONS(1977), + [anon_sym_u8R_DQUOTE] = ACTIONS(1977), + [anon_sym_co_await] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(1981), + [anon_sym_requires] = ACTIONS(1983), + [sym_this] = ACTIONS(1969), + }, + [1896] = { + [sym__expression] = STATE(4259), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3509), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3509), + [sym_call_expression] = STATE(3509), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3509), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3509), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3509), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3613), + [anon_sym_LPAREN2] = ACTIONS(3615), + [anon_sym_BANG] = ACTIONS(3619), + [anon_sym_TILDE] = ACTIONS(3619), + [anon_sym_DASH] = ACTIONS(3617), + [anon_sym_PLUS] = ACTIONS(3617), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(3621), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(3617), + [anon_sym_compl] = ACTIONS(3617), + [anon_sym_DASH_DASH] = ACTIONS(3623), + [anon_sym_PLUS_PLUS] = ACTIONS(3623), + [anon_sym_sizeof] = ACTIONS(3625), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(3627), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(3629), + [anon_sym_new] = ACTIONS(3631), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), + }, + [1897] = { + [sym__expression] = STATE(4249), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3509), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3509), + [sym_call_expression] = STATE(3509), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3509), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3509), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3509), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3613), + [anon_sym_LPAREN2] = ACTIONS(3615), + [anon_sym_BANG] = ACTIONS(3619), + [anon_sym_TILDE] = ACTIONS(3619), + [anon_sym_DASH] = ACTIONS(3617), + [anon_sym_PLUS] = ACTIONS(3617), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(3621), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(3617), + [anon_sym_compl] = ACTIONS(3617), + [anon_sym_DASH_DASH] = ACTIONS(3623), + [anon_sym_PLUS_PLUS] = ACTIONS(3623), + [anon_sym_sizeof] = ACTIONS(3625), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(3627), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(3629), + [anon_sym_new] = ACTIONS(3631), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), + }, + [1898] = { + [sym__expression] = STATE(4135), + [sym__expression_not_binary] = STATE(4369), + [sym_conditional_expression] = STATE(4369), + [sym_assignment_expression] = STATE(4369), + [sym_pointer_expression] = STATE(3541), + [sym_unary_expression] = STATE(4369), + [sym_binary_expression] = STATE(4369), + [sym_update_expression] = STATE(4369), + [sym_cast_expression] = STATE(4369), + [sym_sizeof_expression] = STATE(4369), + [sym_offsetof_expression] = STATE(4369), + [sym_generic_expression] = STATE(4369), + [sym_subscript_expression] = STATE(3541), + [sym_call_expression] = STATE(3541), + [sym_gnu_asm_expression] = STATE(4369), + [sym_field_expression] = STATE(3541), + [sym_compound_literal_expression] = STATE(4369), + [sym_parenthesized_expression] = STATE(3541), + [sym_char_literal] = STATE(4131), + [sym_concatenated_string] = STATE(4131), + [sym_string_literal] = STATE(3542), + [sym_null] = STATE(4369), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6872), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(4369), + [sym_raw_string_literal] = STATE(3542), + [sym_co_await_expression] = STATE(4369), + [sym_new_expression] = STATE(4369), + [sym_delete_expression] = STATE(4369), + [sym_requires_clause] = STATE(4369), + [sym_requires_expression] = STATE(4369), + [sym_lambda_expression] = STATE(4369), + [sym_lambda_capture_specifier] = STATE(5208), + [sym_fold_expression] = STATE(4369), + [sym_parameter_pack_expansion] = STATE(4369), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5289), + [sym_qualified_identifier] = STATE(3541), + [sym_qualified_type_identifier] = STATE(6872), + [sym_user_defined_literal] = STATE(4369), + [sym_identifier] = ACTIONS(3599), + [anon_sym_LPAREN2] = ACTIONS(2618), + [anon_sym_BANG] = ACTIONS(2620), + [anon_sym_TILDE] = ACTIONS(2620), + [anon_sym_DASH] = ACTIONS(2622), + [anon_sym_PLUS] = ACTIONS(2622), + [anon_sym_STAR] = ACTIONS(2624), + [anon_sym_AMP] = ACTIONS(2624), + [anon_sym_COLON_COLON] = ACTIONS(2626), + [anon_sym_LBRACK] = ACTIONS(4427), + [sym_primitive_type] = ACTIONS(2045), + [anon_sym_not] = ACTIONS(2622), + [anon_sym_compl] = ACTIONS(2622), + [anon_sym_DASH_DASH] = ACTIONS(2640), + [anon_sym_PLUS_PLUS] = ACTIONS(2640), + [anon_sym_sizeof] = ACTIONS(2642), + [anon_sym_offsetof] = ACTIONS(2644), + [anon_sym__Generic] = ACTIONS(2646), + [anon_sym_asm] = ACTIONS(2648), + [anon_sym___asm__] = ACTIONS(2648), + [sym_number_literal] = ACTIONS(2650), + [anon_sym_L_SQUOTE] = ACTIONS(2652), + [anon_sym_u_SQUOTE] = ACTIONS(2652), + [anon_sym_U_SQUOTE] = ACTIONS(2652), + [anon_sym_u8_SQUOTE] = ACTIONS(2652), + [anon_sym_SQUOTE] = ACTIONS(2652), + [anon_sym_L_DQUOTE] = ACTIONS(2654), + [anon_sym_u_DQUOTE] = ACTIONS(2654), + [anon_sym_U_DQUOTE] = ACTIONS(2654), + [anon_sym_u8_DQUOTE] = ACTIONS(2654), + [anon_sym_DQUOTE] = ACTIONS(2654), + [sym_true] = ACTIONS(2656), + [sym_false] = ACTIONS(2656), + [anon_sym_NULL] = ACTIONS(2658), + [anon_sym_nullptr] = ACTIONS(2658), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(2668), + [anon_sym_R_DQUOTE] = ACTIONS(2670), + [anon_sym_LR_DQUOTE] = ACTIONS(2670), + [anon_sym_uR_DQUOTE] = ACTIONS(2670), + [anon_sym_UR_DQUOTE] = ACTIONS(2670), + [anon_sym_u8R_DQUOTE] = ACTIONS(2670), + [anon_sym_co_await] = ACTIONS(2672), + [anon_sym_new] = ACTIONS(2674), + [anon_sym_requires] = ACTIONS(2676), + [sym_this] = ACTIONS(2656), + }, + [1899] = { + [sym__expression] = STATE(4431), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), + }, + [1900] = { + [sym__expression] = STATE(3494), + [sym__expression_not_binary] = STATE(3021), + [sym_conditional_expression] = STATE(3021), + [sym_assignment_expression] = STATE(3021), + [sym_pointer_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_cast_expression] = STATE(3021), + [sym_sizeof_expression] = STATE(3021), + [sym_offsetof_expression] = STATE(3021), + [sym_generic_expression] = STATE(3021), + [sym_subscript_expression] = STATE(3021), + [sym_call_expression] = STATE(3021), + [sym_gnu_asm_expression] = STATE(3021), + [sym_field_expression] = STATE(3021), + [sym_compound_literal_expression] = STATE(3021), + [sym_parenthesized_expression] = STATE(3021), + [sym_char_literal] = STATE(2901), + [sym_concatenated_string] = STATE(2901), + [sym_string_literal] = STATE(2173), + [sym_null] = STATE(3021), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6616), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3021), + [sym_raw_string_literal] = STATE(2173), + [sym_co_await_expression] = STATE(3021), + [sym_new_expression] = STATE(3021), + [sym_delete_expression] = STATE(3021), + [sym_requires_clause] = STATE(3021), + [sym_requires_expression] = STATE(3021), + [sym_lambda_expression] = STATE(3021), + [sym_lambda_capture_specifier] = STATE(5188), + [sym_fold_expression] = STATE(3021), + [sym_parameter_pack_expansion] = STATE(3021), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3021), + [sym_qualified_type_identifier] = STATE(6616), + [sym_user_defined_literal] = STATE(3021), + [sym_identifier] = ACTIONS(1933), + [anon_sym_LPAREN2] = ACTIONS(2077), + [anon_sym_BANG] = ACTIONS(2081), + [anon_sym_TILDE] = ACTIONS(2081), + [anon_sym_DASH] = ACTIONS(2079), + [anon_sym_PLUS] = ACTIONS(2079), + [anon_sym_STAR] = ACTIONS(3641), + [anon_sym_AMP] = ACTIONS(3641), + [anon_sym_COLON_COLON] = ACTIONS(2085), + [anon_sym_LBRACK] = ACTIONS(4429), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(2079), + [anon_sym_compl] = ACTIONS(2079), + [anon_sym_DASH_DASH] = ACTIONS(2087), + [anon_sym_PLUS_PLUS] = ACTIONS(2087), + [anon_sym_sizeof] = ACTIONS(2089), + [anon_sym_offsetof] = ACTIONS(1957), + [anon_sym__Generic] = ACTIONS(1959), + [anon_sym_asm] = ACTIONS(1961), + [anon_sym___asm__] = ACTIONS(1961), + [sym_number_literal] = ACTIONS(1963), + [anon_sym_L_SQUOTE] = ACTIONS(1965), + [anon_sym_u_SQUOTE] = ACTIONS(1965), + [anon_sym_U_SQUOTE] = ACTIONS(1965), + [anon_sym_u8_SQUOTE] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_L_DQUOTE] = ACTIONS(1967), + [anon_sym_u_DQUOTE] = ACTIONS(1967), + [anon_sym_U_DQUOTE] = ACTIONS(1967), + [anon_sym_u8_DQUOTE] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(1967), + [sym_true] = ACTIONS(1969), + [sym_false] = ACTIONS(1969), + [anon_sym_NULL] = ACTIONS(1971), + [anon_sym_nullptr] = ACTIONS(1971), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(2091), + [anon_sym_R_DQUOTE] = ACTIONS(1977), + [anon_sym_LR_DQUOTE] = ACTIONS(1977), + [anon_sym_uR_DQUOTE] = ACTIONS(1977), + [anon_sym_UR_DQUOTE] = ACTIONS(1977), + [anon_sym_u8R_DQUOTE] = ACTIONS(1977), + [anon_sym_co_await] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(1981), + [anon_sym_requires] = ACTIONS(1983), + [sym_this] = ACTIONS(1969), + }, + [1901] = { + [sym__expression] = STATE(3091), + [sym__expression_not_binary] = STATE(3318), + [sym_conditional_expression] = STATE(3318), + [sym_assignment_expression] = STATE(3318), + [sym_pointer_expression] = STATE(3318), + [sym_unary_expression] = STATE(3318), + [sym_binary_expression] = STATE(3318), + [sym_update_expression] = STATE(3318), + [sym_cast_expression] = STATE(3318), + [sym_sizeof_expression] = STATE(3318), + [sym_offsetof_expression] = STATE(3318), + [sym_generic_expression] = STATE(3318), + [sym_subscript_expression] = STATE(3318), + [sym_call_expression] = STATE(3318), + [sym_gnu_asm_expression] = STATE(3318), + [sym_field_expression] = STATE(3318), + [sym_compound_literal_expression] = STATE(3318), + [sym_parenthesized_expression] = STATE(3318), + [sym_char_literal] = STATE(3076), + [sym_concatenated_string] = STATE(3076), + [sym_string_literal] = STATE(2202), + [sym_null] = STATE(3318), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6739), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3318), + [sym_raw_string_literal] = STATE(2202), + [sym_co_await_expression] = STATE(3318), + [sym_new_expression] = STATE(3318), + [sym_delete_expression] = STATE(3318), + [sym_requires_clause] = STATE(3318), + [sym_requires_expression] = STATE(3318), + [sym_lambda_expression] = STATE(3318), + [sym_lambda_capture_specifier] = STATE(5187), + [sym_fold_expression] = STATE(3318), + [sym_parameter_pack_expansion] = STATE(3318), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5232), + [sym_qualified_identifier] = STATE(3318), + [sym_qualified_type_identifier] = STATE(6739), + [sym_user_defined_literal] = STATE(3318), + [sym_identifier] = ACTIONS(1985), + [anon_sym_LPAREN2] = ACTIONS(1987), + [anon_sym_BANG] = ACTIONS(1991), + [anon_sym_TILDE] = ACTIONS(1991), + [anon_sym_DASH] = ACTIONS(1989), + [anon_sym_PLUS] = ACTIONS(1989), + [anon_sym_STAR] = ACTIONS(1847), + [anon_sym_AMP] = ACTIONS(1847), + [anon_sym_COLON_COLON] = ACTIONS(1995), + [anon_sym_LBRACK] = ACTIONS(4431), + [sym_primitive_type] = ACTIONS(1999), + [anon_sym_not] = ACTIONS(1989), + [anon_sym_compl] = ACTIONS(1989), + [anon_sym_DASH_DASH] = ACTIONS(2001), + [anon_sym_PLUS_PLUS] = ACTIONS(2001), + [anon_sym_sizeof] = ACTIONS(2003), + [anon_sym_offsetof] = ACTIONS(2005), + [anon_sym__Generic] = ACTIONS(2007), + [anon_sym_asm] = ACTIONS(2009), + [anon_sym___asm__] = ACTIONS(2009), + [sym_number_literal] = ACTIONS(2011), + [anon_sym_L_SQUOTE] = ACTIONS(2013), + [anon_sym_u_SQUOTE] = ACTIONS(2013), + [anon_sym_U_SQUOTE] = ACTIONS(2013), + [anon_sym_u8_SQUOTE] = ACTIONS(2013), + [anon_sym_SQUOTE] = ACTIONS(2013), + [anon_sym_L_DQUOTE] = ACTIONS(2015), + [anon_sym_u_DQUOTE] = ACTIONS(2015), + [anon_sym_U_DQUOTE] = ACTIONS(2015), + [anon_sym_u8_DQUOTE] = ACTIONS(2015), + [anon_sym_DQUOTE] = ACTIONS(2015), + [sym_true] = ACTIONS(2017), + [sym_false] = ACTIONS(2017), + [anon_sym_NULL] = ACTIONS(2019), + [anon_sym_nullptr] = ACTIONS(2019), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(2021), + [anon_sym_R_DQUOTE] = ACTIONS(2023), + [anon_sym_LR_DQUOTE] = ACTIONS(2023), + [anon_sym_uR_DQUOTE] = ACTIONS(2023), + [anon_sym_UR_DQUOTE] = ACTIONS(2023), + [anon_sym_u8R_DQUOTE] = ACTIONS(2023), + [anon_sym_co_await] = ACTIONS(2025), + [anon_sym_new] = ACTIONS(2027), + [anon_sym_requires] = ACTIONS(2029), + [sym_this] = ACTIONS(2017), + }, + [1902] = { + [sym__expression] = STATE(4421), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), + }, + [1903] = { + [sym__expression] = STATE(3150), + [sym__expression_not_binary] = STATE(3318), + [sym_conditional_expression] = STATE(3318), + [sym_assignment_expression] = STATE(3318), + [sym_pointer_expression] = STATE(3318), + [sym_unary_expression] = STATE(3318), + [sym_binary_expression] = STATE(3318), + [sym_update_expression] = STATE(3318), + [sym_cast_expression] = STATE(3318), + [sym_sizeof_expression] = STATE(3318), + [sym_offsetof_expression] = STATE(3318), + [sym_generic_expression] = STATE(3318), + [sym_subscript_expression] = STATE(3318), + [sym_call_expression] = STATE(3318), + [sym_gnu_asm_expression] = STATE(3318), + [sym_field_expression] = STATE(3318), + [sym_compound_literal_expression] = STATE(3318), + [sym_parenthesized_expression] = STATE(3318), + [sym_char_literal] = STATE(3076), + [sym_concatenated_string] = STATE(3076), + [sym_string_literal] = STATE(2202), + [sym_null] = STATE(3318), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6739), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3318), + [sym_raw_string_literal] = STATE(2202), + [sym_co_await_expression] = STATE(3318), + [sym_new_expression] = STATE(3318), + [sym_delete_expression] = STATE(3318), + [sym_requires_clause] = STATE(3318), + [sym_requires_expression] = STATE(3318), + [sym_lambda_expression] = STATE(3318), + [sym_lambda_capture_specifier] = STATE(5187), + [sym_fold_expression] = STATE(3318), + [sym_parameter_pack_expansion] = STATE(3318), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5232), + [sym_qualified_identifier] = STATE(3318), + [sym_qualified_type_identifier] = STATE(6739), + [sym_user_defined_literal] = STATE(3318), + [sym_identifier] = ACTIONS(1985), + [anon_sym_LPAREN2] = ACTIONS(1987), + [anon_sym_BANG] = ACTIONS(1991), + [anon_sym_TILDE] = ACTIONS(1991), + [anon_sym_DASH] = ACTIONS(1989), + [anon_sym_PLUS] = ACTIONS(1989), + [anon_sym_STAR] = ACTIONS(1847), + [anon_sym_AMP] = ACTIONS(1847), + [anon_sym_COLON_COLON] = ACTIONS(1995), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1999), + [anon_sym_not] = ACTIONS(1989), + [anon_sym_compl] = ACTIONS(1989), + [anon_sym_DASH_DASH] = ACTIONS(2001), + [anon_sym_PLUS_PLUS] = ACTIONS(2001), + [anon_sym_sizeof] = ACTIONS(2003), + [anon_sym_offsetof] = ACTIONS(2005), + [anon_sym__Generic] = ACTIONS(2007), + [anon_sym_asm] = ACTIONS(2009), + [anon_sym___asm__] = ACTIONS(2009), + [sym_number_literal] = ACTIONS(2011), + [anon_sym_L_SQUOTE] = ACTIONS(2013), + [anon_sym_u_SQUOTE] = ACTIONS(2013), + [anon_sym_U_SQUOTE] = ACTIONS(2013), + [anon_sym_u8_SQUOTE] = ACTIONS(2013), + [anon_sym_SQUOTE] = ACTIONS(2013), + [anon_sym_L_DQUOTE] = ACTIONS(2015), + [anon_sym_u_DQUOTE] = ACTIONS(2015), + [anon_sym_U_DQUOTE] = ACTIONS(2015), + [anon_sym_u8_DQUOTE] = ACTIONS(2015), + [anon_sym_DQUOTE] = ACTIONS(2015), + [sym_true] = ACTIONS(2017), + [sym_false] = ACTIONS(2017), + [anon_sym_NULL] = ACTIONS(2019), + [anon_sym_nullptr] = ACTIONS(2019), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(2021), + [anon_sym_R_DQUOTE] = ACTIONS(2023), + [anon_sym_LR_DQUOTE] = ACTIONS(2023), + [anon_sym_uR_DQUOTE] = ACTIONS(2023), + [anon_sym_UR_DQUOTE] = ACTIONS(2023), + [anon_sym_u8R_DQUOTE] = ACTIONS(2023), + [anon_sym_co_await] = ACTIONS(2025), + [anon_sym_new] = ACTIONS(2027), + [anon_sym_requires] = ACTIONS(2029), + [sym_this] = ACTIONS(2017), + }, + [1904] = { + [sym__expression] = STATE(3149), + [sym__expression_not_binary] = STATE(3318), + [sym_conditional_expression] = STATE(3318), + [sym_assignment_expression] = STATE(3318), + [sym_pointer_expression] = STATE(3318), + [sym_unary_expression] = STATE(3318), + [sym_binary_expression] = STATE(3318), + [sym_update_expression] = STATE(3318), + [sym_cast_expression] = STATE(3318), + [sym_sizeof_expression] = STATE(3318), + [sym_offsetof_expression] = STATE(3318), + [sym_generic_expression] = STATE(3318), + [sym_subscript_expression] = STATE(3318), + [sym_call_expression] = STATE(3318), + [sym_gnu_asm_expression] = STATE(3318), + [sym_field_expression] = STATE(3318), + [sym_compound_literal_expression] = STATE(3318), + [sym_parenthesized_expression] = STATE(3318), + [sym_char_literal] = STATE(3076), + [sym_concatenated_string] = STATE(3076), + [sym_string_literal] = STATE(2202), + [sym_null] = STATE(3318), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6739), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3318), + [sym_raw_string_literal] = STATE(2202), + [sym_co_await_expression] = STATE(3318), + [sym_new_expression] = STATE(3318), + [sym_delete_expression] = STATE(3318), + [sym_requires_clause] = STATE(3318), + [sym_requires_expression] = STATE(3318), + [sym_lambda_expression] = STATE(3318), + [sym_lambda_capture_specifier] = STATE(5187), + [sym_fold_expression] = STATE(3318), + [sym_parameter_pack_expansion] = STATE(3318), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5232), + [sym_qualified_identifier] = STATE(3318), + [sym_qualified_type_identifier] = STATE(6739), + [sym_user_defined_literal] = STATE(3318), + [sym_identifier] = ACTIONS(1985), + [anon_sym_LPAREN2] = ACTIONS(1987), + [anon_sym_BANG] = ACTIONS(1991), + [anon_sym_TILDE] = ACTIONS(1991), + [anon_sym_DASH] = ACTIONS(1989), + [anon_sym_PLUS] = ACTIONS(1989), + [anon_sym_STAR] = ACTIONS(1847), + [anon_sym_AMP] = ACTIONS(1847), + [anon_sym_COLON_COLON] = ACTIONS(1995), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1999), + [anon_sym_not] = ACTIONS(1989), + [anon_sym_compl] = ACTIONS(1989), + [anon_sym_DASH_DASH] = ACTIONS(2001), + [anon_sym_PLUS_PLUS] = ACTIONS(2001), + [anon_sym_sizeof] = ACTIONS(2003), + [anon_sym_offsetof] = ACTIONS(2005), + [anon_sym__Generic] = ACTIONS(2007), + [anon_sym_asm] = ACTIONS(2009), + [anon_sym___asm__] = ACTIONS(2009), + [sym_number_literal] = ACTIONS(2011), + [anon_sym_L_SQUOTE] = ACTIONS(2013), + [anon_sym_u_SQUOTE] = ACTIONS(2013), + [anon_sym_U_SQUOTE] = ACTIONS(2013), + [anon_sym_u8_SQUOTE] = ACTIONS(2013), + [anon_sym_SQUOTE] = ACTIONS(2013), + [anon_sym_L_DQUOTE] = ACTIONS(2015), + [anon_sym_u_DQUOTE] = ACTIONS(2015), + [anon_sym_U_DQUOTE] = ACTIONS(2015), + [anon_sym_u8_DQUOTE] = ACTIONS(2015), + [anon_sym_DQUOTE] = ACTIONS(2015), + [sym_true] = ACTIONS(2017), + [sym_false] = ACTIONS(2017), + [anon_sym_NULL] = ACTIONS(2019), + [anon_sym_nullptr] = ACTIONS(2019), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(2021), + [anon_sym_R_DQUOTE] = ACTIONS(2023), + [anon_sym_LR_DQUOTE] = ACTIONS(2023), + [anon_sym_uR_DQUOTE] = ACTIONS(2023), + [anon_sym_UR_DQUOTE] = ACTIONS(2023), + [anon_sym_u8R_DQUOTE] = ACTIONS(2023), + [anon_sym_co_await] = ACTIONS(2025), + [anon_sym_new] = ACTIONS(2027), + [anon_sym_requires] = ACTIONS(2029), + [sym_this] = ACTIONS(2017), + }, + [1905] = { + [sym__expression] = STATE(4194), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), + }, + [1906] = { + [sym__expression] = STATE(4137), + [sym__expression_not_binary] = STATE(4369), + [sym_conditional_expression] = STATE(4369), + [sym_assignment_expression] = STATE(4369), + [sym_pointer_expression] = STATE(3541), + [sym_unary_expression] = STATE(4369), + [sym_binary_expression] = STATE(4369), + [sym_update_expression] = STATE(4369), + [sym_cast_expression] = STATE(4369), + [sym_sizeof_expression] = STATE(4369), + [sym_offsetof_expression] = STATE(4369), + [sym_generic_expression] = STATE(4369), + [sym_subscript_expression] = STATE(3541), + [sym_call_expression] = STATE(3541), + [sym_gnu_asm_expression] = STATE(4369), + [sym_field_expression] = STATE(3541), + [sym_compound_literal_expression] = STATE(4369), + [sym_parenthesized_expression] = STATE(3541), + [sym_char_literal] = STATE(4131), + [sym_concatenated_string] = STATE(4131), + [sym_string_literal] = STATE(3542), + [sym_null] = STATE(4369), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6872), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(4369), + [sym_raw_string_literal] = STATE(3542), + [sym_co_await_expression] = STATE(4369), + [sym_new_expression] = STATE(4369), + [sym_delete_expression] = STATE(4369), + [sym_requires_clause] = STATE(4369), + [sym_requires_expression] = STATE(4369), + [sym_lambda_expression] = STATE(4369), + [sym_lambda_capture_specifier] = STATE(5208), + [sym_fold_expression] = STATE(4369), + [sym_parameter_pack_expansion] = STATE(4369), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5289), + [sym_qualified_identifier] = STATE(3541), + [sym_qualified_type_identifier] = STATE(6872), + [sym_user_defined_literal] = STATE(4369), + [sym_identifier] = ACTIONS(3599), + [anon_sym_LPAREN2] = ACTIONS(2618), + [anon_sym_BANG] = ACTIONS(2620), + [anon_sym_TILDE] = ACTIONS(2620), + [anon_sym_DASH] = ACTIONS(2622), + [anon_sym_PLUS] = ACTIONS(2622), + [anon_sym_STAR] = ACTIONS(2624), + [anon_sym_AMP] = ACTIONS(2624), + [anon_sym_COLON_COLON] = ACTIONS(2626), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(2045), + [anon_sym_not] = ACTIONS(2622), + [anon_sym_compl] = ACTIONS(2622), + [anon_sym_DASH_DASH] = ACTIONS(2640), + [anon_sym_PLUS_PLUS] = ACTIONS(2640), + [anon_sym_sizeof] = ACTIONS(2642), + [anon_sym_offsetof] = ACTIONS(2644), + [anon_sym__Generic] = ACTIONS(2646), + [anon_sym_asm] = ACTIONS(2648), + [anon_sym___asm__] = ACTIONS(2648), + [sym_number_literal] = ACTIONS(2650), + [anon_sym_L_SQUOTE] = ACTIONS(2652), + [anon_sym_u_SQUOTE] = ACTIONS(2652), + [anon_sym_U_SQUOTE] = ACTIONS(2652), + [anon_sym_u8_SQUOTE] = ACTIONS(2652), + [anon_sym_SQUOTE] = ACTIONS(2652), + [anon_sym_L_DQUOTE] = ACTIONS(2654), + [anon_sym_u_DQUOTE] = ACTIONS(2654), + [anon_sym_U_DQUOTE] = ACTIONS(2654), + [anon_sym_u8_DQUOTE] = ACTIONS(2654), + [anon_sym_DQUOTE] = ACTIONS(2654), + [sym_true] = ACTIONS(2656), + [sym_false] = ACTIONS(2656), + [anon_sym_NULL] = ACTIONS(2658), + [anon_sym_nullptr] = ACTIONS(2658), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(2668), + [anon_sym_R_DQUOTE] = ACTIONS(2670), + [anon_sym_LR_DQUOTE] = ACTIONS(2670), + [anon_sym_uR_DQUOTE] = ACTIONS(2670), + [anon_sym_UR_DQUOTE] = ACTIONS(2670), + [anon_sym_u8R_DQUOTE] = ACTIONS(2670), + [anon_sym_co_await] = ACTIONS(2672), + [anon_sym_new] = ACTIONS(2674), + [anon_sym_requires] = ACTIONS(2676), + [sym_this] = ACTIONS(2656), + }, + [1907] = { + [sym__expression] = STATE(4472), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3579), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3579), + [sym_call_expression] = STATE(3579), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3579), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3579), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3579), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3633), + [anon_sym_LPAREN2] = ACTIONS(3635), + [anon_sym_BANG] = ACTIONS(3639), + [anon_sym_TILDE] = ACTIONS(3639), + [anon_sym_DASH] = ACTIONS(3637), + [anon_sym_PLUS] = ACTIONS(3637), + [anon_sym_STAR] = ACTIONS(3641), + [anon_sym_AMP] = ACTIONS(3641), + [anon_sym_COLON_COLON] = ACTIONS(3643), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(3637), + [anon_sym_compl] = ACTIONS(3637), + [anon_sym_DASH_DASH] = ACTIONS(3645), + [anon_sym_PLUS_PLUS] = ACTIONS(3645), + [anon_sym_sizeof] = ACTIONS(3647), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(3649), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(3651), + [anon_sym_new] = ACTIONS(3631), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), + }, + [1908] = { + [sym__expression] = STATE(3031), + [sym__expression_not_binary] = STATE(3021), + [sym_conditional_expression] = STATE(3021), + [sym_assignment_expression] = STATE(3021), + [sym_pointer_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_cast_expression] = STATE(3021), + [sym_sizeof_expression] = STATE(3021), + [sym_offsetof_expression] = STATE(3021), + [sym_generic_expression] = STATE(3021), + [sym_subscript_expression] = STATE(3021), + [sym_call_expression] = STATE(3021), + [sym_gnu_asm_expression] = STATE(3021), + [sym_field_expression] = STATE(3021), + [sym_compound_literal_expression] = STATE(3021), + [sym_parenthesized_expression] = STATE(3021), + [sym_char_literal] = STATE(2901), + [sym_concatenated_string] = STATE(2901), + [sym_string_literal] = STATE(2173), + [sym_null] = STATE(3021), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6616), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3021), + [sym_raw_string_literal] = STATE(2173), + [sym_co_await_expression] = STATE(3021), + [sym_new_expression] = STATE(3021), + [sym_delete_expression] = STATE(3021), + [sym_requires_clause] = STATE(3021), + [sym_requires_expression] = STATE(3021), + [sym_lambda_expression] = STATE(3021), + [sym_lambda_capture_specifier] = STATE(5188), + [sym_fold_expression] = STATE(3021), + [sym_parameter_pack_expansion] = STATE(3021), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3021), + [sym_qualified_type_identifier] = STATE(6616), + [sym_user_defined_literal] = STATE(3021), + [sym_identifier] = ACTIONS(1933), + [anon_sym_LPAREN2] = ACTIONS(1937), + [anon_sym_BANG] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(1941), + [anon_sym_DASH] = ACTIONS(1939), + [anon_sym_PLUS] = ACTIONS(1939), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(1945), + [anon_sym_LBRACK] = ACTIONS(4433), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(1939), + [anon_sym_compl] = ACTIONS(1939), + [anon_sym_DASH_DASH] = ACTIONS(1953), + [anon_sym_PLUS_PLUS] = ACTIONS(1953), + [anon_sym_sizeof] = ACTIONS(1955), + [anon_sym_offsetof] = ACTIONS(1957), + [anon_sym__Generic] = ACTIONS(1959), + [anon_sym_asm] = ACTIONS(1961), + [anon_sym___asm__] = ACTIONS(1961), + [sym_number_literal] = ACTIONS(1963), + [anon_sym_L_SQUOTE] = ACTIONS(1965), + [anon_sym_u_SQUOTE] = ACTIONS(1965), + [anon_sym_U_SQUOTE] = ACTIONS(1965), + [anon_sym_u8_SQUOTE] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_L_DQUOTE] = ACTIONS(1967), + [anon_sym_u_DQUOTE] = ACTIONS(1967), + [anon_sym_U_DQUOTE] = ACTIONS(1967), + [anon_sym_u8_DQUOTE] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(1967), + [sym_true] = ACTIONS(1969), + [sym_false] = ACTIONS(1969), + [anon_sym_NULL] = ACTIONS(1971), + [anon_sym_nullptr] = ACTIONS(1971), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(1975), + [anon_sym_R_DQUOTE] = ACTIONS(1977), + [anon_sym_LR_DQUOTE] = ACTIONS(1977), + [anon_sym_uR_DQUOTE] = ACTIONS(1977), + [anon_sym_UR_DQUOTE] = ACTIONS(1977), + [anon_sym_u8R_DQUOTE] = ACTIONS(1977), + [anon_sym_co_await] = ACTIONS(1979), + [anon_sym_new] = ACTIONS(1981), + [anon_sym_requires] = ACTIONS(1983), + [sym_this] = ACTIONS(1969), + }, + [1909] = { + [sym__expression] = STATE(4147), + [sym__expression_not_binary] = STATE(4369), + [sym_conditional_expression] = STATE(4369), + [sym_assignment_expression] = STATE(4369), + [sym_pointer_expression] = STATE(3541), + [sym_unary_expression] = STATE(4369), + [sym_binary_expression] = STATE(4369), + [sym_update_expression] = STATE(4369), + [sym_cast_expression] = STATE(4369), + [sym_sizeof_expression] = STATE(4369), + [sym_offsetof_expression] = STATE(4369), + [sym_generic_expression] = STATE(4369), + [sym_subscript_expression] = STATE(3541), + [sym_call_expression] = STATE(3541), + [sym_gnu_asm_expression] = STATE(4369), + [sym_field_expression] = STATE(3541), + [sym_compound_literal_expression] = STATE(4369), + [sym_parenthesized_expression] = STATE(3541), + [sym_char_literal] = STATE(4131), + [sym_concatenated_string] = STATE(4131), + [sym_string_literal] = STATE(3542), + [sym_null] = STATE(4369), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6872), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(4369), + [sym_raw_string_literal] = STATE(3542), + [sym_co_await_expression] = STATE(4369), + [sym_new_expression] = STATE(4369), + [sym_delete_expression] = STATE(4369), + [sym_requires_clause] = STATE(4369), + [sym_requires_expression] = STATE(4369), + [sym_lambda_expression] = STATE(4369), + [sym_lambda_capture_specifier] = STATE(5208), + [sym_fold_expression] = STATE(4369), + [sym_parameter_pack_expansion] = STATE(4369), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5289), + [sym_qualified_identifier] = STATE(3541), + [sym_qualified_type_identifier] = STATE(6872), + [sym_user_defined_literal] = STATE(4369), + [sym_identifier] = ACTIONS(3599), + [anon_sym_LPAREN2] = ACTIONS(2618), + [anon_sym_BANG] = ACTIONS(2620), + [anon_sym_TILDE] = ACTIONS(2620), + [anon_sym_DASH] = ACTIONS(2622), + [anon_sym_PLUS] = ACTIONS(2622), + [anon_sym_STAR] = ACTIONS(2624), + [anon_sym_AMP] = ACTIONS(2624), + [anon_sym_COLON_COLON] = ACTIONS(2626), + [anon_sym_LBRACK] = ACTIONS(4435), + [sym_primitive_type] = ACTIONS(2045), + [anon_sym_not] = ACTIONS(2622), + [anon_sym_compl] = ACTIONS(2622), + [anon_sym_DASH_DASH] = ACTIONS(2640), + [anon_sym_PLUS_PLUS] = ACTIONS(2640), + [anon_sym_sizeof] = ACTIONS(2642), + [anon_sym_offsetof] = ACTIONS(2644), + [anon_sym__Generic] = ACTIONS(2646), + [anon_sym_asm] = ACTIONS(2648), + [anon_sym___asm__] = ACTIONS(2648), + [sym_number_literal] = ACTIONS(2650), + [anon_sym_L_SQUOTE] = ACTIONS(2652), + [anon_sym_u_SQUOTE] = ACTIONS(2652), + [anon_sym_U_SQUOTE] = ACTIONS(2652), + [anon_sym_u8_SQUOTE] = ACTIONS(2652), + [anon_sym_SQUOTE] = ACTIONS(2652), + [anon_sym_L_DQUOTE] = ACTIONS(2654), + [anon_sym_u_DQUOTE] = ACTIONS(2654), + [anon_sym_U_DQUOTE] = ACTIONS(2654), + [anon_sym_u8_DQUOTE] = ACTIONS(2654), + [anon_sym_DQUOTE] = ACTIONS(2654), + [sym_true] = ACTIONS(2656), + [sym_false] = ACTIONS(2656), + [anon_sym_NULL] = ACTIONS(2658), + [anon_sym_nullptr] = ACTIONS(2658), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(2668), + [anon_sym_R_DQUOTE] = ACTIONS(2670), + [anon_sym_LR_DQUOTE] = ACTIONS(2670), + [anon_sym_uR_DQUOTE] = ACTIONS(2670), + [anon_sym_UR_DQUOTE] = ACTIONS(2670), + [anon_sym_u8R_DQUOTE] = ACTIONS(2670), + [anon_sym_co_await] = ACTIONS(2672), + [anon_sym_new] = ACTIONS(2674), + [anon_sym_requires] = ACTIONS(2676), + [sym_this] = ACTIONS(2656), + }, + [1910] = { + [sym__expression] = STATE(4422), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), + }, + [1911] = { + [sym__expression] = STATE(4148), + [sym__expression_not_binary] = STATE(4369), + [sym_conditional_expression] = STATE(4369), + [sym_assignment_expression] = STATE(4369), + [sym_pointer_expression] = STATE(3541), + [sym_unary_expression] = STATE(4369), + [sym_binary_expression] = STATE(4369), + [sym_update_expression] = STATE(4369), + [sym_cast_expression] = STATE(4369), + [sym_sizeof_expression] = STATE(4369), + [sym_offsetof_expression] = STATE(4369), + [sym_generic_expression] = STATE(4369), + [sym_subscript_expression] = STATE(3541), + [sym_call_expression] = STATE(3541), + [sym_gnu_asm_expression] = STATE(4369), + [sym_field_expression] = STATE(3541), + [sym_compound_literal_expression] = STATE(4369), + [sym_parenthesized_expression] = STATE(3541), + [sym_char_literal] = STATE(4131), + [sym_concatenated_string] = STATE(4131), + [sym_string_literal] = STATE(3542), + [sym_null] = STATE(4369), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6872), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(4369), + [sym_raw_string_literal] = STATE(3542), + [sym_co_await_expression] = STATE(4369), + [sym_new_expression] = STATE(4369), + [sym_delete_expression] = STATE(4369), + [sym_requires_clause] = STATE(4369), + [sym_requires_expression] = STATE(4369), + [sym_lambda_expression] = STATE(4369), + [sym_lambda_capture_specifier] = STATE(5208), + [sym_fold_expression] = STATE(4369), + [sym_parameter_pack_expansion] = STATE(4369), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5289), + [sym_qualified_identifier] = STATE(3541), + [sym_qualified_type_identifier] = STATE(6872), + [sym_user_defined_literal] = STATE(4369), + [sym_identifier] = ACTIONS(3599), + [anon_sym_LPAREN2] = ACTIONS(2618), + [anon_sym_BANG] = ACTIONS(2620), + [anon_sym_TILDE] = ACTIONS(2620), + [anon_sym_DASH] = ACTIONS(2622), + [anon_sym_PLUS] = ACTIONS(2622), + [anon_sym_STAR] = ACTIONS(2624), + [anon_sym_AMP] = ACTIONS(2624), + [anon_sym_COLON_COLON] = ACTIONS(2626), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(2045), + [anon_sym_not] = ACTIONS(2622), + [anon_sym_compl] = ACTIONS(2622), + [anon_sym_DASH_DASH] = ACTIONS(2640), + [anon_sym_PLUS_PLUS] = ACTIONS(2640), + [anon_sym_sizeof] = ACTIONS(2642), + [anon_sym_offsetof] = ACTIONS(2644), + [anon_sym__Generic] = ACTIONS(2646), + [anon_sym_asm] = ACTIONS(2648), + [anon_sym___asm__] = ACTIONS(2648), + [sym_number_literal] = ACTIONS(2650), + [anon_sym_L_SQUOTE] = ACTIONS(2652), + [anon_sym_u_SQUOTE] = ACTIONS(2652), + [anon_sym_U_SQUOTE] = ACTIONS(2652), + [anon_sym_u8_SQUOTE] = ACTIONS(2652), + [anon_sym_SQUOTE] = ACTIONS(2652), + [anon_sym_L_DQUOTE] = ACTIONS(2654), + [anon_sym_u_DQUOTE] = ACTIONS(2654), + [anon_sym_U_DQUOTE] = ACTIONS(2654), + [anon_sym_u8_DQUOTE] = ACTIONS(2654), + [anon_sym_DQUOTE] = ACTIONS(2654), + [sym_true] = ACTIONS(2656), + [sym_false] = ACTIONS(2656), + [anon_sym_NULL] = ACTIONS(2658), + [anon_sym_nullptr] = ACTIONS(2658), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(2668), + [anon_sym_R_DQUOTE] = ACTIONS(2670), + [anon_sym_LR_DQUOTE] = ACTIONS(2670), + [anon_sym_uR_DQUOTE] = ACTIONS(2670), + [anon_sym_UR_DQUOTE] = ACTIONS(2670), + [anon_sym_u8R_DQUOTE] = ACTIONS(2670), + [anon_sym_co_await] = ACTIONS(2672), + [anon_sym_new] = ACTIONS(2674), + [anon_sym_requires] = ACTIONS(2676), + [sym_this] = ACTIONS(2656), + }, + [1912] = { + [sym__expression] = STATE(3147), + [sym__expression_not_binary] = STATE(3318), + [sym_conditional_expression] = STATE(3318), + [sym_assignment_expression] = STATE(3318), + [sym_pointer_expression] = STATE(3318), + [sym_unary_expression] = STATE(3318), + [sym_binary_expression] = STATE(3318), + [sym_update_expression] = STATE(3318), + [sym_cast_expression] = STATE(3318), + [sym_sizeof_expression] = STATE(3318), + [sym_offsetof_expression] = STATE(3318), + [sym_generic_expression] = STATE(3318), + [sym_subscript_expression] = STATE(3318), + [sym_call_expression] = STATE(3318), + [sym_gnu_asm_expression] = STATE(3318), + [sym_field_expression] = STATE(3318), + [sym_compound_literal_expression] = STATE(3318), + [sym_parenthesized_expression] = STATE(3318), + [sym_char_literal] = STATE(3076), + [sym_concatenated_string] = STATE(3076), + [sym_string_literal] = STATE(2202), + [sym_null] = STATE(3318), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6739), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3318), + [sym_raw_string_literal] = STATE(2202), + [sym_co_await_expression] = STATE(3318), + [sym_new_expression] = STATE(3318), + [sym_delete_expression] = STATE(3318), + [sym_requires_clause] = STATE(3318), + [sym_requires_expression] = STATE(3318), + [sym_lambda_expression] = STATE(3318), + [sym_lambda_capture_specifier] = STATE(5187), + [sym_fold_expression] = STATE(3318), + [sym_parameter_pack_expansion] = STATE(3318), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5232), + [sym_qualified_identifier] = STATE(3318), + [sym_qualified_type_identifier] = STATE(6739), + [sym_user_defined_literal] = STATE(3318), + [sym_identifier] = ACTIONS(1985), + [anon_sym_LPAREN2] = ACTIONS(1987), + [anon_sym_BANG] = ACTIONS(1991), + [anon_sym_TILDE] = ACTIONS(1991), + [anon_sym_DASH] = ACTIONS(1989), + [anon_sym_PLUS] = ACTIONS(1989), + [anon_sym_STAR] = ACTIONS(1847), + [anon_sym_AMP] = ACTIONS(1847), + [anon_sym_COLON_COLON] = ACTIONS(1995), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1999), + [anon_sym_not] = ACTIONS(1989), + [anon_sym_compl] = ACTIONS(1989), + [anon_sym_DASH_DASH] = ACTIONS(2001), + [anon_sym_PLUS_PLUS] = ACTIONS(2001), + [anon_sym_sizeof] = ACTIONS(2003), + [anon_sym_offsetof] = ACTIONS(2005), + [anon_sym__Generic] = ACTIONS(2007), + [anon_sym_asm] = ACTIONS(2009), + [anon_sym___asm__] = ACTIONS(2009), + [sym_number_literal] = ACTIONS(2011), + [anon_sym_L_SQUOTE] = ACTIONS(2013), + [anon_sym_u_SQUOTE] = ACTIONS(2013), + [anon_sym_U_SQUOTE] = ACTIONS(2013), + [anon_sym_u8_SQUOTE] = ACTIONS(2013), + [anon_sym_SQUOTE] = ACTIONS(2013), + [anon_sym_L_DQUOTE] = ACTIONS(2015), + [anon_sym_u_DQUOTE] = ACTIONS(2015), + [anon_sym_U_DQUOTE] = ACTIONS(2015), + [anon_sym_u8_DQUOTE] = ACTIONS(2015), + [anon_sym_DQUOTE] = ACTIONS(2015), + [sym_true] = ACTIONS(2017), + [sym_false] = ACTIONS(2017), + [anon_sym_NULL] = ACTIONS(2019), + [anon_sym_nullptr] = ACTIONS(2019), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(2021), + [anon_sym_R_DQUOTE] = ACTIONS(2023), + [anon_sym_LR_DQUOTE] = ACTIONS(2023), + [anon_sym_uR_DQUOTE] = ACTIONS(2023), + [anon_sym_UR_DQUOTE] = ACTIONS(2023), + [anon_sym_u8R_DQUOTE] = ACTIONS(2023), + [anon_sym_co_await] = ACTIONS(2025), + [anon_sym_new] = ACTIONS(2027), + [anon_sym_requires] = ACTIONS(2029), + [sym_this] = ACTIONS(2017), + }, + [1913] = { + [sym__expression] = STATE(4438), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3509), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3509), + [sym_call_expression] = STATE(3509), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3509), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3509), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3509), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3613), + [anon_sym_LPAREN2] = ACTIONS(3615), + [anon_sym_BANG] = ACTIONS(3619), + [anon_sym_TILDE] = ACTIONS(3619), + [anon_sym_DASH] = ACTIONS(3617), + [anon_sym_PLUS] = ACTIONS(3617), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(3621), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(3617), + [anon_sym_compl] = ACTIONS(3617), + [anon_sym_DASH_DASH] = ACTIONS(3623), + [anon_sym_PLUS_PLUS] = ACTIONS(3623), + [anon_sym_sizeof] = ACTIONS(3625), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(3627), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(3629), + [anon_sym_new] = ACTIONS(3631), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), + }, + [1914] = { + [sym__expression] = STATE(3032), + [sym__expression_not_binary] = STATE(3021), + [sym_conditional_expression] = STATE(3021), + [sym_assignment_expression] = STATE(3021), + [sym_pointer_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_cast_expression] = STATE(3021), + [sym_sizeof_expression] = STATE(3021), + [sym_offsetof_expression] = STATE(3021), + [sym_generic_expression] = STATE(3021), + [sym_subscript_expression] = STATE(3021), + [sym_call_expression] = STATE(3021), + [sym_gnu_asm_expression] = STATE(3021), + [sym_field_expression] = STATE(3021), + [sym_compound_literal_expression] = STATE(3021), + [sym_parenthesized_expression] = STATE(3021), + [sym_char_literal] = STATE(2901), + [sym_concatenated_string] = STATE(2901), + [sym_string_literal] = STATE(2173), + [sym_null] = STATE(3021), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6616), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3021), + [sym_raw_string_literal] = STATE(2173), + [sym_co_await_expression] = STATE(3021), + [sym_new_expression] = STATE(3021), + [sym_delete_expression] = STATE(3021), + [sym_requires_clause] = STATE(3021), + [sym_requires_expression] = STATE(3021), + [sym_lambda_expression] = STATE(3021), + [sym_lambda_capture_specifier] = STATE(5188), + [sym_fold_expression] = STATE(3021), + [sym_parameter_pack_expansion] = STATE(3021), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3021), + [sym_qualified_type_identifier] = STATE(6616), + [sym_user_defined_literal] = STATE(3021), + [sym_identifier] = ACTIONS(1933), + [anon_sym_LPAREN2] = ACTIONS(1937), + [anon_sym_BANG] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(1941), + [anon_sym_DASH] = ACTIONS(1939), + [anon_sym_PLUS] = ACTIONS(1939), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(1945), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(1939), + [anon_sym_compl] = ACTIONS(1939), + [anon_sym_DASH_DASH] = ACTIONS(1953), + [anon_sym_PLUS_PLUS] = ACTIONS(1953), + [anon_sym_sizeof] = ACTIONS(1955), + [anon_sym_offsetof] = ACTIONS(1957), + [anon_sym__Generic] = ACTIONS(1959), + [anon_sym_asm] = ACTIONS(1961), + [anon_sym___asm__] = ACTIONS(1961), + [sym_number_literal] = ACTIONS(1963), + [anon_sym_L_SQUOTE] = ACTIONS(1965), + [anon_sym_u_SQUOTE] = ACTIONS(1965), + [anon_sym_U_SQUOTE] = ACTIONS(1965), + [anon_sym_u8_SQUOTE] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_L_DQUOTE] = ACTIONS(1967), + [anon_sym_u_DQUOTE] = ACTIONS(1967), + [anon_sym_U_DQUOTE] = ACTIONS(1967), + [anon_sym_u8_DQUOTE] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(1967), + [sym_true] = ACTIONS(1969), + [sym_false] = ACTIONS(1969), + [anon_sym_NULL] = ACTIONS(1971), + [anon_sym_nullptr] = ACTIONS(1971), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(1975), + [anon_sym_R_DQUOTE] = ACTIONS(1977), + [anon_sym_LR_DQUOTE] = ACTIONS(1977), + [anon_sym_uR_DQUOTE] = ACTIONS(1977), + [anon_sym_UR_DQUOTE] = ACTIONS(1977), + [anon_sym_u8R_DQUOTE] = ACTIONS(1977), + [anon_sym_co_await] = ACTIONS(1979), + [anon_sym_new] = ACTIONS(1981), + [anon_sym_requires] = ACTIONS(1983), + [sym_this] = ACTIONS(1969), + }, + [1915] = { + [sym__expression] = STATE(3138), + [sym__expression_not_binary] = STATE(3318), + [sym_conditional_expression] = STATE(3318), + [sym_assignment_expression] = STATE(3318), + [sym_pointer_expression] = STATE(3318), + [sym_unary_expression] = STATE(3318), + [sym_binary_expression] = STATE(3318), + [sym_update_expression] = STATE(3318), + [sym_cast_expression] = STATE(3318), + [sym_sizeof_expression] = STATE(3318), + [sym_offsetof_expression] = STATE(3318), + [sym_generic_expression] = STATE(3318), + [sym_subscript_expression] = STATE(3318), + [sym_call_expression] = STATE(3318), + [sym_gnu_asm_expression] = STATE(3318), + [sym_field_expression] = STATE(3318), + [sym_compound_literal_expression] = STATE(3318), + [sym_parenthesized_expression] = STATE(3318), + [sym_char_literal] = STATE(3076), + [sym_concatenated_string] = STATE(3076), + [sym_string_literal] = STATE(2202), + [sym_null] = STATE(3318), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6739), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3318), + [sym_raw_string_literal] = STATE(2202), + [sym_co_await_expression] = STATE(3318), + [sym_new_expression] = STATE(3318), + [sym_delete_expression] = STATE(3318), + [sym_requires_clause] = STATE(3318), + [sym_requires_expression] = STATE(3318), + [sym_lambda_expression] = STATE(3318), + [sym_lambda_capture_specifier] = STATE(5187), + [sym_fold_expression] = STATE(3318), + [sym_parameter_pack_expansion] = STATE(3318), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5232), + [sym_qualified_identifier] = STATE(3318), + [sym_qualified_type_identifier] = STATE(6739), + [sym_user_defined_literal] = STATE(3318), + [sym_identifier] = ACTIONS(1985), + [anon_sym_LPAREN2] = ACTIONS(1987), + [anon_sym_BANG] = ACTIONS(1991), + [anon_sym_TILDE] = ACTIONS(1991), + [anon_sym_DASH] = ACTIONS(1989), + [anon_sym_PLUS] = ACTIONS(1989), + [anon_sym_STAR] = ACTIONS(1847), + [anon_sym_AMP] = ACTIONS(1847), + [anon_sym_COLON_COLON] = ACTIONS(1995), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1999), + [anon_sym_not] = ACTIONS(1989), + [anon_sym_compl] = ACTIONS(1989), + [anon_sym_DASH_DASH] = ACTIONS(2001), + [anon_sym_PLUS_PLUS] = ACTIONS(2001), + [anon_sym_sizeof] = ACTIONS(2003), + [anon_sym_offsetof] = ACTIONS(2005), + [anon_sym__Generic] = ACTIONS(2007), + [anon_sym_asm] = ACTIONS(2009), + [anon_sym___asm__] = ACTIONS(2009), + [sym_number_literal] = ACTIONS(2011), + [anon_sym_L_SQUOTE] = ACTIONS(2013), + [anon_sym_u_SQUOTE] = ACTIONS(2013), + [anon_sym_U_SQUOTE] = ACTIONS(2013), + [anon_sym_u8_SQUOTE] = ACTIONS(2013), + [anon_sym_SQUOTE] = ACTIONS(2013), + [anon_sym_L_DQUOTE] = ACTIONS(2015), + [anon_sym_u_DQUOTE] = ACTIONS(2015), + [anon_sym_U_DQUOTE] = ACTIONS(2015), + [anon_sym_u8_DQUOTE] = ACTIONS(2015), + [anon_sym_DQUOTE] = ACTIONS(2015), + [sym_true] = ACTIONS(2017), + [sym_false] = ACTIONS(2017), + [anon_sym_NULL] = ACTIONS(2019), + [anon_sym_nullptr] = ACTIONS(2019), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(2021), + [anon_sym_R_DQUOTE] = ACTIONS(2023), + [anon_sym_LR_DQUOTE] = ACTIONS(2023), + [anon_sym_uR_DQUOTE] = ACTIONS(2023), + [anon_sym_UR_DQUOTE] = ACTIONS(2023), + [anon_sym_u8R_DQUOTE] = ACTIONS(2023), + [anon_sym_co_await] = ACTIONS(2025), + [anon_sym_new] = ACTIONS(2027), + [anon_sym_requires] = ACTIONS(2029), + [sym_this] = ACTIONS(2017), + }, + [1916] = { + [sym__expression] = STATE(3461), + [sym__expression_not_binary] = STATE(3021), + [sym_conditional_expression] = STATE(3021), + [sym_assignment_expression] = STATE(3021), + [sym_pointer_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_cast_expression] = STATE(3021), + [sym_sizeof_expression] = STATE(3021), + [sym_offsetof_expression] = STATE(3021), + [sym_generic_expression] = STATE(3021), + [sym_subscript_expression] = STATE(3021), + [sym_call_expression] = STATE(3021), + [sym_gnu_asm_expression] = STATE(3021), + [sym_field_expression] = STATE(3021), + [sym_compound_literal_expression] = STATE(3021), + [sym_parenthesized_expression] = STATE(3021), + [sym_char_literal] = STATE(2901), + [sym_concatenated_string] = STATE(2901), + [sym_string_literal] = STATE(2173), + [sym_null] = STATE(3021), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6616), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3021), + [sym_raw_string_literal] = STATE(2173), + [sym_co_await_expression] = STATE(3021), + [sym_new_expression] = STATE(3021), + [sym_delete_expression] = STATE(3021), + [sym_requires_clause] = STATE(3021), + [sym_requires_expression] = STATE(3021), + [sym_lambda_expression] = STATE(3021), + [sym_lambda_capture_specifier] = STATE(5188), + [sym_fold_expression] = STATE(3021), + [sym_parameter_pack_expansion] = STATE(3021), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3021), + [sym_qualified_type_identifier] = STATE(6616), + [sym_user_defined_literal] = STATE(3021), + [sym_identifier] = ACTIONS(1933), + [anon_sym_LPAREN2] = ACTIONS(2077), + [anon_sym_BANG] = ACTIONS(2081), + [anon_sym_TILDE] = ACTIONS(2081), + [anon_sym_DASH] = ACTIONS(2079), + [anon_sym_PLUS] = ACTIONS(2079), + [anon_sym_STAR] = ACTIONS(3641), + [anon_sym_AMP] = ACTIONS(3641), + [anon_sym_COLON_COLON] = ACTIONS(2085), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(2079), + [anon_sym_compl] = ACTIONS(2079), + [anon_sym_DASH_DASH] = ACTIONS(2087), + [anon_sym_PLUS_PLUS] = ACTIONS(2087), + [anon_sym_sizeof] = ACTIONS(2089), + [anon_sym_offsetof] = ACTIONS(1957), + [anon_sym__Generic] = ACTIONS(1959), + [anon_sym_asm] = ACTIONS(1961), + [anon_sym___asm__] = ACTIONS(1961), + [sym_number_literal] = ACTIONS(1963), + [anon_sym_L_SQUOTE] = ACTIONS(1965), + [anon_sym_u_SQUOTE] = ACTIONS(1965), + [anon_sym_U_SQUOTE] = ACTIONS(1965), + [anon_sym_u8_SQUOTE] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_L_DQUOTE] = ACTIONS(1967), + [anon_sym_u_DQUOTE] = ACTIONS(1967), + [anon_sym_U_DQUOTE] = ACTIONS(1967), + [anon_sym_u8_DQUOTE] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(1967), + [sym_true] = ACTIONS(1969), + [sym_false] = ACTIONS(1969), + [anon_sym_NULL] = ACTIONS(1971), + [anon_sym_nullptr] = ACTIONS(1971), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(2091), + [anon_sym_R_DQUOTE] = ACTIONS(1977), + [anon_sym_LR_DQUOTE] = ACTIONS(1977), + [anon_sym_uR_DQUOTE] = ACTIONS(1977), + [anon_sym_UR_DQUOTE] = ACTIONS(1977), + [anon_sym_u8R_DQUOTE] = ACTIONS(1977), + [anon_sym_co_await] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(1981), + [anon_sym_requires] = ACTIONS(1983), + [sym_this] = ACTIONS(1969), + }, + [1917] = { + [sym__expression] = STATE(4132), + [sym__expression_not_binary] = STATE(4369), + [sym_conditional_expression] = STATE(4369), + [sym_assignment_expression] = STATE(4369), + [sym_pointer_expression] = STATE(3541), + [sym_unary_expression] = STATE(4369), + [sym_binary_expression] = STATE(4369), + [sym_update_expression] = STATE(4369), + [sym_cast_expression] = STATE(4369), + [sym_sizeof_expression] = STATE(4369), + [sym_offsetof_expression] = STATE(4369), + [sym_generic_expression] = STATE(4369), + [sym_subscript_expression] = STATE(3541), + [sym_call_expression] = STATE(3541), + [sym_gnu_asm_expression] = STATE(4369), + [sym_field_expression] = STATE(3541), + [sym_compound_literal_expression] = STATE(4369), + [sym_parenthesized_expression] = STATE(3541), + [sym_char_literal] = STATE(4131), + [sym_concatenated_string] = STATE(4131), + [sym_string_literal] = STATE(3542), + [sym_null] = STATE(4369), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6872), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(4369), + [sym_raw_string_literal] = STATE(3542), + [sym_co_await_expression] = STATE(4369), + [sym_new_expression] = STATE(4369), + [sym_delete_expression] = STATE(4369), + [sym_requires_clause] = STATE(4369), + [sym_requires_expression] = STATE(4369), + [sym_lambda_expression] = STATE(4369), + [sym_lambda_capture_specifier] = STATE(5208), + [sym_fold_expression] = STATE(4369), + [sym_parameter_pack_expansion] = STATE(4369), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5289), + [sym_qualified_identifier] = STATE(3541), + [sym_qualified_type_identifier] = STATE(6872), + [sym_user_defined_literal] = STATE(4369), + [sym_identifier] = ACTIONS(3599), + [anon_sym_LPAREN2] = ACTIONS(2618), + [anon_sym_BANG] = ACTIONS(2620), + [anon_sym_TILDE] = ACTIONS(2620), + [anon_sym_DASH] = ACTIONS(2622), + [anon_sym_PLUS] = ACTIONS(2622), + [anon_sym_STAR] = ACTIONS(2624), + [anon_sym_AMP] = ACTIONS(2624), + [anon_sym_COLON_COLON] = ACTIONS(2626), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(2045), + [anon_sym_not] = ACTIONS(2622), + [anon_sym_compl] = ACTIONS(2622), + [anon_sym_DASH_DASH] = ACTIONS(2640), + [anon_sym_PLUS_PLUS] = ACTIONS(2640), + [anon_sym_sizeof] = ACTIONS(2642), + [anon_sym_offsetof] = ACTIONS(2644), + [anon_sym__Generic] = ACTIONS(2646), + [anon_sym_asm] = ACTIONS(2648), + [anon_sym___asm__] = ACTIONS(2648), + [sym_number_literal] = ACTIONS(2650), + [anon_sym_L_SQUOTE] = ACTIONS(2652), + [anon_sym_u_SQUOTE] = ACTIONS(2652), + [anon_sym_U_SQUOTE] = ACTIONS(2652), + [anon_sym_u8_SQUOTE] = ACTIONS(2652), + [anon_sym_SQUOTE] = ACTIONS(2652), + [anon_sym_L_DQUOTE] = ACTIONS(2654), + [anon_sym_u_DQUOTE] = ACTIONS(2654), + [anon_sym_U_DQUOTE] = ACTIONS(2654), + [anon_sym_u8_DQUOTE] = ACTIONS(2654), + [anon_sym_DQUOTE] = ACTIONS(2654), + [sym_true] = ACTIONS(2656), + [sym_false] = ACTIONS(2656), + [anon_sym_NULL] = ACTIONS(2658), + [anon_sym_nullptr] = ACTIONS(2658), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(2668), + [anon_sym_R_DQUOTE] = ACTIONS(2670), + [anon_sym_LR_DQUOTE] = ACTIONS(2670), + [anon_sym_uR_DQUOTE] = ACTIONS(2670), + [anon_sym_UR_DQUOTE] = ACTIONS(2670), + [anon_sym_u8R_DQUOTE] = ACTIONS(2670), + [anon_sym_co_await] = ACTIONS(2672), + [anon_sym_new] = ACTIONS(2674), + [anon_sym_requires] = ACTIONS(2676), + [sym_this] = ACTIONS(2656), + }, + [1918] = { + [sym__expression] = STATE(4498), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), + }, + [1919] = { + [sym__expression] = STATE(4204), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), + }, + [1920] = { + [sym__expression] = STATE(4501), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3509), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3509), + [sym_call_expression] = STATE(3509), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3509), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3509), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3509), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3613), + [anon_sym_LPAREN2] = ACTIONS(3615), + [anon_sym_BANG] = ACTIONS(3619), + [anon_sym_TILDE] = ACTIONS(3619), + [anon_sym_DASH] = ACTIONS(3617), + [anon_sym_PLUS] = ACTIONS(3617), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(3621), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(3617), + [anon_sym_compl] = ACTIONS(3617), + [anon_sym_DASH_DASH] = ACTIONS(3623), + [anon_sym_PLUS_PLUS] = ACTIONS(3623), + [anon_sym_sizeof] = ACTIONS(3625), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(3627), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(3629), + [anon_sym_new] = ACTIONS(3631), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), + }, + [1921] = { + [sym__expression] = STATE(4505), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), + }, + [1922] = { + [sym__expression] = STATE(3136), + [sym__expression_not_binary] = STATE(3318), + [sym_conditional_expression] = STATE(3318), + [sym_assignment_expression] = STATE(3318), + [sym_pointer_expression] = STATE(3318), + [sym_unary_expression] = STATE(3318), + [sym_binary_expression] = STATE(3318), + [sym_update_expression] = STATE(3318), + [sym_cast_expression] = STATE(3318), + [sym_sizeof_expression] = STATE(3318), + [sym_offsetof_expression] = STATE(3318), + [sym_generic_expression] = STATE(3318), + [sym_subscript_expression] = STATE(3318), + [sym_call_expression] = STATE(3318), + [sym_gnu_asm_expression] = STATE(3318), + [sym_field_expression] = STATE(3318), + [sym_compound_literal_expression] = STATE(3318), + [sym_parenthesized_expression] = STATE(3318), + [sym_char_literal] = STATE(3076), + [sym_concatenated_string] = STATE(3076), + [sym_string_literal] = STATE(2202), + [sym_null] = STATE(3318), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6739), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3318), + [sym_raw_string_literal] = STATE(2202), + [sym_co_await_expression] = STATE(3318), + [sym_new_expression] = STATE(3318), + [sym_delete_expression] = STATE(3318), + [sym_requires_clause] = STATE(3318), + [sym_requires_expression] = STATE(3318), + [sym_lambda_expression] = STATE(3318), + [sym_lambda_capture_specifier] = STATE(5187), + [sym_fold_expression] = STATE(3318), + [sym_parameter_pack_expansion] = STATE(3318), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5232), + [sym_qualified_identifier] = STATE(3318), + [sym_qualified_type_identifier] = STATE(6739), + [sym_user_defined_literal] = STATE(3318), + [sym_identifier] = ACTIONS(1985), + [anon_sym_LPAREN2] = ACTIONS(1987), + [anon_sym_BANG] = ACTIONS(1991), + [anon_sym_TILDE] = ACTIONS(1991), + [anon_sym_DASH] = ACTIONS(1989), + [anon_sym_PLUS] = ACTIONS(1989), + [anon_sym_STAR] = ACTIONS(1847), + [anon_sym_AMP] = ACTIONS(1847), + [anon_sym_COLON_COLON] = ACTIONS(1995), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1999), + [anon_sym_not] = ACTIONS(1989), + [anon_sym_compl] = ACTIONS(1989), + [anon_sym_DASH_DASH] = ACTIONS(2001), + [anon_sym_PLUS_PLUS] = ACTIONS(2001), + [anon_sym_sizeof] = ACTIONS(2003), + [anon_sym_offsetof] = ACTIONS(2005), + [anon_sym__Generic] = ACTIONS(2007), + [anon_sym_asm] = ACTIONS(2009), + [anon_sym___asm__] = ACTIONS(2009), + [sym_number_literal] = ACTIONS(2011), + [anon_sym_L_SQUOTE] = ACTIONS(2013), + [anon_sym_u_SQUOTE] = ACTIONS(2013), + [anon_sym_U_SQUOTE] = ACTIONS(2013), + [anon_sym_u8_SQUOTE] = ACTIONS(2013), + [anon_sym_SQUOTE] = ACTIONS(2013), + [anon_sym_L_DQUOTE] = ACTIONS(2015), + [anon_sym_u_DQUOTE] = ACTIONS(2015), + [anon_sym_U_DQUOTE] = ACTIONS(2015), + [anon_sym_u8_DQUOTE] = ACTIONS(2015), + [anon_sym_DQUOTE] = ACTIONS(2015), + [sym_true] = ACTIONS(2017), + [sym_false] = ACTIONS(2017), + [anon_sym_NULL] = ACTIONS(2019), + [anon_sym_nullptr] = ACTIONS(2019), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(2021), + [anon_sym_R_DQUOTE] = ACTIONS(2023), + [anon_sym_LR_DQUOTE] = ACTIONS(2023), + [anon_sym_uR_DQUOTE] = ACTIONS(2023), + [anon_sym_UR_DQUOTE] = ACTIONS(2023), + [anon_sym_u8R_DQUOTE] = ACTIONS(2023), + [anon_sym_co_await] = ACTIONS(2025), + [anon_sym_new] = ACTIONS(2027), + [anon_sym_requires] = ACTIONS(2029), + [sym_this] = ACTIONS(2017), + }, + [1923] = { + [sym__expression] = STATE(3463), + [sym__expression_not_binary] = STATE(3021), + [sym_conditional_expression] = STATE(3021), + [sym_assignment_expression] = STATE(3021), + [sym_pointer_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_cast_expression] = STATE(3021), + [sym_sizeof_expression] = STATE(3021), + [sym_offsetof_expression] = STATE(3021), + [sym_generic_expression] = STATE(3021), + [sym_subscript_expression] = STATE(3021), + [sym_call_expression] = STATE(3021), + [sym_gnu_asm_expression] = STATE(3021), + [sym_field_expression] = STATE(3021), + [sym_compound_literal_expression] = STATE(3021), + [sym_parenthesized_expression] = STATE(3021), + [sym_char_literal] = STATE(2901), + [sym_concatenated_string] = STATE(2901), + [sym_string_literal] = STATE(2173), + [sym_null] = STATE(3021), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6616), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3021), + [sym_raw_string_literal] = STATE(2173), + [sym_co_await_expression] = STATE(3021), + [sym_new_expression] = STATE(3021), + [sym_delete_expression] = STATE(3021), + [sym_requires_clause] = STATE(3021), + [sym_requires_expression] = STATE(3021), + [sym_lambda_expression] = STATE(3021), + [sym_lambda_capture_specifier] = STATE(5188), + [sym_fold_expression] = STATE(3021), + [sym_parameter_pack_expansion] = STATE(3021), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3021), + [sym_qualified_type_identifier] = STATE(6616), + [sym_user_defined_literal] = STATE(3021), + [sym_identifier] = ACTIONS(1933), + [anon_sym_LPAREN2] = ACTIONS(2077), + [anon_sym_BANG] = ACTIONS(2081), + [anon_sym_TILDE] = ACTIONS(2081), + [anon_sym_DASH] = ACTIONS(2079), + [anon_sym_PLUS] = ACTIONS(2079), + [anon_sym_STAR] = ACTIONS(3641), + [anon_sym_AMP] = ACTIONS(3641), + [anon_sym_COLON_COLON] = ACTIONS(2085), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(2079), + [anon_sym_compl] = ACTIONS(2079), + [anon_sym_DASH_DASH] = ACTIONS(2087), + [anon_sym_PLUS_PLUS] = ACTIONS(2087), + [anon_sym_sizeof] = ACTIONS(2089), + [anon_sym_offsetof] = ACTIONS(1957), + [anon_sym__Generic] = ACTIONS(1959), + [anon_sym_asm] = ACTIONS(1961), + [anon_sym___asm__] = ACTIONS(1961), + [sym_number_literal] = ACTIONS(1963), + [anon_sym_L_SQUOTE] = ACTIONS(1965), + [anon_sym_u_SQUOTE] = ACTIONS(1965), + [anon_sym_U_SQUOTE] = ACTIONS(1965), + [anon_sym_u8_SQUOTE] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_L_DQUOTE] = ACTIONS(1967), + [anon_sym_u_DQUOTE] = ACTIONS(1967), + [anon_sym_U_DQUOTE] = ACTIONS(1967), + [anon_sym_u8_DQUOTE] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(1967), + [sym_true] = ACTIONS(1969), + [sym_false] = ACTIONS(1969), + [anon_sym_NULL] = ACTIONS(1971), + [anon_sym_nullptr] = ACTIONS(1971), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(2091), + [anon_sym_R_DQUOTE] = ACTIONS(1977), + [anon_sym_LR_DQUOTE] = ACTIONS(1977), + [anon_sym_uR_DQUOTE] = ACTIONS(1977), + [anon_sym_UR_DQUOTE] = ACTIONS(1977), + [anon_sym_u8R_DQUOTE] = ACTIONS(1977), + [anon_sym_co_await] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(1981), + [anon_sym_requires] = ACTIONS(1983), + [sym_this] = ACTIONS(1969), + }, + [1924] = { + [sym__expression] = STATE(3177), + [sym__expression_not_binary] = STATE(3318), + [sym_conditional_expression] = STATE(3318), + [sym_assignment_expression] = STATE(3318), + [sym_pointer_expression] = STATE(3318), + [sym_unary_expression] = STATE(3318), + [sym_binary_expression] = STATE(3318), + [sym_update_expression] = STATE(3318), + [sym_cast_expression] = STATE(3318), + [sym_sizeof_expression] = STATE(3318), + [sym_offsetof_expression] = STATE(3318), + [sym_generic_expression] = STATE(3318), + [sym_subscript_expression] = STATE(3318), + [sym_call_expression] = STATE(3318), + [sym_gnu_asm_expression] = STATE(3318), + [sym_field_expression] = STATE(3318), + [sym_compound_literal_expression] = STATE(3318), + [sym_parenthesized_expression] = STATE(3318), + [sym_char_literal] = STATE(3076), + [sym_concatenated_string] = STATE(3076), + [sym_string_literal] = STATE(2202), + [sym_null] = STATE(3318), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6739), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3318), + [sym_raw_string_literal] = STATE(2202), + [sym_co_await_expression] = STATE(3318), + [sym_new_expression] = STATE(3318), + [sym_delete_expression] = STATE(3318), + [sym_requires_clause] = STATE(3318), + [sym_requires_expression] = STATE(3318), + [sym_lambda_expression] = STATE(3318), + [sym_lambda_capture_specifier] = STATE(5187), + [sym_fold_expression] = STATE(3318), + [sym_parameter_pack_expansion] = STATE(3318), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5232), + [sym_qualified_identifier] = STATE(3318), + [sym_qualified_type_identifier] = STATE(6739), + [sym_user_defined_literal] = STATE(3318), + [sym_identifier] = ACTIONS(1985), + [anon_sym_LPAREN2] = ACTIONS(1987), + [anon_sym_BANG] = ACTIONS(1991), + [anon_sym_TILDE] = ACTIONS(1991), + [anon_sym_DASH] = ACTIONS(1989), + [anon_sym_PLUS] = ACTIONS(1989), + [anon_sym_STAR] = ACTIONS(1847), + [anon_sym_AMP] = ACTIONS(1847), + [anon_sym_COLON_COLON] = ACTIONS(1995), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1999), + [anon_sym_not] = ACTIONS(1989), + [anon_sym_compl] = ACTIONS(1989), + [anon_sym_DASH_DASH] = ACTIONS(2001), + [anon_sym_PLUS_PLUS] = ACTIONS(2001), + [anon_sym_sizeof] = ACTIONS(2003), + [anon_sym_offsetof] = ACTIONS(2005), + [anon_sym__Generic] = ACTIONS(2007), + [anon_sym_asm] = ACTIONS(2009), + [anon_sym___asm__] = ACTIONS(2009), + [sym_number_literal] = ACTIONS(2011), + [anon_sym_L_SQUOTE] = ACTIONS(2013), + [anon_sym_u_SQUOTE] = ACTIONS(2013), + [anon_sym_U_SQUOTE] = ACTIONS(2013), + [anon_sym_u8_SQUOTE] = ACTIONS(2013), + [anon_sym_SQUOTE] = ACTIONS(2013), + [anon_sym_L_DQUOTE] = ACTIONS(2015), + [anon_sym_u_DQUOTE] = ACTIONS(2015), + [anon_sym_U_DQUOTE] = ACTIONS(2015), + [anon_sym_u8_DQUOTE] = ACTIONS(2015), + [anon_sym_DQUOTE] = ACTIONS(2015), + [sym_true] = ACTIONS(2017), + [sym_false] = ACTIONS(2017), + [anon_sym_NULL] = ACTIONS(2019), + [anon_sym_nullptr] = ACTIONS(2019), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(2021), + [anon_sym_R_DQUOTE] = ACTIONS(2023), + [anon_sym_LR_DQUOTE] = ACTIONS(2023), + [anon_sym_uR_DQUOTE] = ACTIONS(2023), + [anon_sym_UR_DQUOTE] = ACTIONS(2023), + [anon_sym_u8R_DQUOTE] = ACTIONS(2023), + [anon_sym_co_await] = ACTIONS(2025), + [anon_sym_new] = ACTIONS(2027), + [anon_sym_requires] = ACTIONS(2029), + [sym_this] = ACTIONS(2017), + }, + [1925] = { + [sym__expression] = STATE(3106), + [sym__expression_not_binary] = STATE(3318), + [sym_conditional_expression] = STATE(3318), + [sym_assignment_expression] = STATE(3318), + [sym_pointer_expression] = STATE(3318), + [sym_unary_expression] = STATE(3318), + [sym_binary_expression] = STATE(3318), + [sym_update_expression] = STATE(3318), + [sym_cast_expression] = STATE(3318), + [sym_sizeof_expression] = STATE(3318), + [sym_offsetof_expression] = STATE(3318), + [sym_generic_expression] = STATE(3318), + [sym_subscript_expression] = STATE(3318), + [sym_call_expression] = STATE(3318), + [sym_gnu_asm_expression] = STATE(3318), + [sym_field_expression] = STATE(3318), + [sym_compound_literal_expression] = STATE(3318), + [sym_parenthesized_expression] = STATE(3318), + [sym_char_literal] = STATE(3076), + [sym_concatenated_string] = STATE(3076), + [sym_string_literal] = STATE(2202), + [sym_null] = STATE(3318), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6739), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3318), + [sym_raw_string_literal] = STATE(2202), + [sym_co_await_expression] = STATE(3318), + [sym_new_expression] = STATE(3318), + [sym_delete_expression] = STATE(3318), + [sym_requires_clause] = STATE(3318), + [sym_requires_expression] = STATE(3318), + [sym_lambda_expression] = STATE(3318), + [sym_lambda_capture_specifier] = STATE(5187), + [sym_fold_expression] = STATE(3318), + [sym_parameter_pack_expansion] = STATE(3318), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5232), + [sym_qualified_identifier] = STATE(3318), + [sym_qualified_type_identifier] = STATE(6739), + [sym_user_defined_literal] = STATE(3318), + [sym_identifier] = ACTIONS(1985), + [anon_sym_LPAREN2] = ACTIONS(1987), + [anon_sym_BANG] = ACTIONS(1991), + [anon_sym_TILDE] = ACTIONS(1991), + [anon_sym_DASH] = ACTIONS(1989), + [anon_sym_PLUS] = ACTIONS(1989), + [anon_sym_STAR] = ACTIONS(1847), + [anon_sym_AMP] = ACTIONS(1847), + [anon_sym_COLON_COLON] = ACTIONS(1995), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1999), + [anon_sym_not] = ACTIONS(1989), + [anon_sym_compl] = ACTIONS(1989), + [anon_sym_DASH_DASH] = ACTIONS(2001), + [anon_sym_PLUS_PLUS] = ACTIONS(2001), + [anon_sym_sizeof] = ACTIONS(2003), + [anon_sym_offsetof] = ACTIONS(2005), + [anon_sym__Generic] = ACTIONS(2007), + [anon_sym_asm] = ACTIONS(2009), + [anon_sym___asm__] = ACTIONS(2009), + [sym_number_literal] = ACTIONS(2011), + [anon_sym_L_SQUOTE] = ACTIONS(2013), + [anon_sym_u_SQUOTE] = ACTIONS(2013), + [anon_sym_U_SQUOTE] = ACTIONS(2013), + [anon_sym_u8_SQUOTE] = ACTIONS(2013), + [anon_sym_SQUOTE] = ACTIONS(2013), + [anon_sym_L_DQUOTE] = ACTIONS(2015), + [anon_sym_u_DQUOTE] = ACTIONS(2015), + [anon_sym_U_DQUOTE] = ACTIONS(2015), + [anon_sym_u8_DQUOTE] = ACTIONS(2015), + [anon_sym_DQUOTE] = ACTIONS(2015), + [sym_true] = ACTIONS(2017), + [sym_false] = ACTIONS(2017), + [anon_sym_NULL] = ACTIONS(2019), + [anon_sym_nullptr] = ACTIONS(2019), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(2021), + [anon_sym_R_DQUOTE] = ACTIONS(2023), + [anon_sym_LR_DQUOTE] = ACTIONS(2023), + [anon_sym_uR_DQUOTE] = ACTIONS(2023), + [anon_sym_UR_DQUOTE] = ACTIONS(2023), + [anon_sym_u8R_DQUOTE] = ACTIONS(2023), + [anon_sym_co_await] = ACTIONS(2025), + [anon_sym_new] = ACTIONS(2027), + [anon_sym_requires] = ACTIONS(2029), + [sym_this] = ACTIONS(2017), + }, + [1926] = { + [sym__expression] = STATE(4447), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), + }, + [1927] = { + [sym__expression] = STATE(4235), + [sym__expression_not_binary] = STATE(4369), + [sym_conditional_expression] = STATE(4369), + [sym_assignment_expression] = STATE(4369), + [sym_pointer_expression] = STATE(3541), + [sym_unary_expression] = STATE(4369), + [sym_binary_expression] = STATE(4369), + [sym_update_expression] = STATE(4369), + [sym_cast_expression] = STATE(4369), + [sym_sizeof_expression] = STATE(4369), + [sym_offsetof_expression] = STATE(4369), + [sym_generic_expression] = STATE(4369), + [sym_subscript_expression] = STATE(3541), + [sym_call_expression] = STATE(3541), + [sym_gnu_asm_expression] = STATE(4369), + [sym_field_expression] = STATE(3541), + [sym_compound_literal_expression] = STATE(4369), + [sym_parenthesized_expression] = STATE(3541), + [sym_char_literal] = STATE(4131), + [sym_concatenated_string] = STATE(4131), + [sym_string_literal] = STATE(3542), + [sym_null] = STATE(4369), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6872), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(4369), + [sym_raw_string_literal] = STATE(3542), + [sym_co_await_expression] = STATE(4369), + [sym_new_expression] = STATE(4369), + [sym_delete_expression] = STATE(4369), + [sym_requires_clause] = STATE(4369), + [sym_requires_expression] = STATE(4369), + [sym_lambda_expression] = STATE(4369), + [sym_lambda_capture_specifier] = STATE(5208), + [sym_fold_expression] = STATE(4369), + [sym_parameter_pack_expansion] = STATE(4369), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5289), + [sym_qualified_identifier] = STATE(3541), + [sym_qualified_type_identifier] = STATE(6872), + [sym_user_defined_literal] = STATE(4369), + [sym_identifier] = ACTIONS(3599), + [anon_sym_LPAREN2] = ACTIONS(2618), + [anon_sym_BANG] = ACTIONS(2620), + [anon_sym_TILDE] = ACTIONS(2620), + [anon_sym_DASH] = ACTIONS(2622), + [anon_sym_PLUS] = ACTIONS(2622), + [anon_sym_STAR] = ACTIONS(2624), + [anon_sym_AMP] = ACTIONS(2624), + [anon_sym_COLON_COLON] = ACTIONS(2626), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(2045), + [anon_sym_not] = ACTIONS(2622), + [anon_sym_compl] = ACTIONS(2622), + [anon_sym_DASH_DASH] = ACTIONS(2640), + [anon_sym_PLUS_PLUS] = ACTIONS(2640), + [anon_sym_sizeof] = ACTIONS(2642), + [anon_sym_offsetof] = ACTIONS(2644), + [anon_sym__Generic] = ACTIONS(2646), + [anon_sym_asm] = ACTIONS(2648), + [anon_sym___asm__] = ACTIONS(2648), + [sym_number_literal] = ACTIONS(2650), + [anon_sym_L_SQUOTE] = ACTIONS(2652), + [anon_sym_u_SQUOTE] = ACTIONS(2652), + [anon_sym_U_SQUOTE] = ACTIONS(2652), + [anon_sym_u8_SQUOTE] = ACTIONS(2652), + [anon_sym_SQUOTE] = ACTIONS(2652), + [anon_sym_L_DQUOTE] = ACTIONS(2654), + [anon_sym_u_DQUOTE] = ACTIONS(2654), + [anon_sym_U_DQUOTE] = ACTIONS(2654), + [anon_sym_u8_DQUOTE] = ACTIONS(2654), + [anon_sym_DQUOTE] = ACTIONS(2654), + [sym_true] = ACTIONS(2656), + [sym_false] = ACTIONS(2656), + [anon_sym_NULL] = ACTIONS(2658), + [anon_sym_nullptr] = ACTIONS(2658), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(2668), + [anon_sym_R_DQUOTE] = ACTIONS(2670), + [anon_sym_LR_DQUOTE] = ACTIONS(2670), + [anon_sym_uR_DQUOTE] = ACTIONS(2670), + [anon_sym_UR_DQUOTE] = ACTIONS(2670), + [anon_sym_u8R_DQUOTE] = ACTIONS(2670), + [anon_sym_co_await] = ACTIONS(2672), + [anon_sym_new] = ACTIONS(2674), + [anon_sym_requires] = ACTIONS(2676), + [sym_this] = ACTIONS(2656), + }, + [1928] = { + [sym__expression] = STATE(4143), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), + }, + [1929] = { + [sym__expression] = STATE(3080), + [sym__expression_not_binary] = STATE(3318), + [sym_conditional_expression] = STATE(3318), + [sym_assignment_expression] = STATE(3318), + [sym_pointer_expression] = STATE(3318), + [sym_unary_expression] = STATE(3318), + [sym_binary_expression] = STATE(3318), + [sym_update_expression] = STATE(3318), + [sym_cast_expression] = STATE(3318), + [sym_sizeof_expression] = STATE(3318), + [sym_offsetof_expression] = STATE(3318), + [sym_generic_expression] = STATE(3318), + [sym_subscript_expression] = STATE(3318), + [sym_call_expression] = STATE(3318), + [sym_gnu_asm_expression] = STATE(3318), + [sym_field_expression] = STATE(3318), + [sym_compound_literal_expression] = STATE(3318), + [sym_parenthesized_expression] = STATE(3318), + [sym_char_literal] = STATE(3076), + [sym_concatenated_string] = STATE(3076), + [sym_string_literal] = STATE(2202), + [sym_null] = STATE(3318), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6739), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3318), + [sym_raw_string_literal] = STATE(2202), + [sym_co_await_expression] = STATE(3318), + [sym_new_expression] = STATE(3318), + [sym_delete_expression] = STATE(3318), + [sym_requires_clause] = STATE(3318), + [sym_requires_expression] = STATE(3318), + [sym_lambda_expression] = STATE(3318), + [sym_lambda_capture_specifier] = STATE(5187), + [sym_fold_expression] = STATE(3318), + [sym_parameter_pack_expansion] = STATE(3318), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5232), + [sym_qualified_identifier] = STATE(3318), + [sym_qualified_type_identifier] = STATE(6739), + [sym_user_defined_literal] = STATE(3318), + [sym_identifier] = ACTIONS(4437), + [anon_sym_LPAREN2] = ACTIONS(1987), + [anon_sym_BANG] = ACTIONS(1991), + [anon_sym_TILDE] = ACTIONS(1991), + [anon_sym_DASH] = ACTIONS(1989), + [anon_sym_PLUS] = ACTIONS(1989), + [anon_sym_STAR] = ACTIONS(1847), + [anon_sym_AMP] = ACTIONS(1847), + [anon_sym_COLON_COLON] = ACTIONS(1995), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1999), + [anon_sym_not] = ACTIONS(1989), + [anon_sym_compl] = ACTIONS(1989), + [anon_sym_DASH_DASH] = ACTIONS(2001), + [anon_sym_PLUS_PLUS] = ACTIONS(2001), + [anon_sym_sizeof] = ACTIONS(2003), + [anon_sym_offsetof] = ACTIONS(2005), + [anon_sym__Generic] = ACTIONS(2007), + [anon_sym_asm] = ACTIONS(2009), + [anon_sym___asm__] = ACTIONS(2009), + [sym_number_literal] = ACTIONS(2011), + [anon_sym_L_SQUOTE] = ACTIONS(2013), + [anon_sym_u_SQUOTE] = ACTIONS(2013), + [anon_sym_U_SQUOTE] = ACTIONS(2013), + [anon_sym_u8_SQUOTE] = ACTIONS(2013), + [anon_sym_SQUOTE] = ACTIONS(2013), + [anon_sym_L_DQUOTE] = ACTIONS(2015), + [anon_sym_u_DQUOTE] = ACTIONS(2015), + [anon_sym_U_DQUOTE] = ACTIONS(2015), + [anon_sym_u8_DQUOTE] = ACTIONS(2015), + [anon_sym_DQUOTE] = ACTIONS(2015), + [sym_true] = ACTIONS(2017), + [sym_false] = ACTIONS(2017), + [anon_sym_NULL] = ACTIONS(2019), + [anon_sym_nullptr] = ACTIONS(2019), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(2021), + [anon_sym_R_DQUOTE] = ACTIONS(2023), + [anon_sym_LR_DQUOTE] = ACTIONS(2023), + [anon_sym_uR_DQUOTE] = ACTIONS(2023), + [anon_sym_UR_DQUOTE] = ACTIONS(2023), + [anon_sym_u8R_DQUOTE] = ACTIONS(2023), + [anon_sym_co_await] = ACTIONS(2025), + [anon_sym_new] = ACTIONS(2027), + [anon_sym_requires] = ACTIONS(2029), + [sym_this] = ACTIONS(2017), + }, + [1930] = { + [sym__expression] = STATE(3080), + [sym__expression_not_binary] = STATE(3318), + [sym_conditional_expression] = STATE(3318), + [sym_assignment_expression] = STATE(3318), + [sym_pointer_expression] = STATE(3318), + [sym_unary_expression] = STATE(3318), + [sym_binary_expression] = STATE(3318), + [sym_update_expression] = STATE(3318), + [sym_cast_expression] = STATE(3318), + [sym_sizeof_expression] = STATE(3318), + [sym_offsetof_expression] = STATE(3318), + [sym_generic_expression] = STATE(3318), + [sym_subscript_expression] = STATE(3318), + [sym_call_expression] = STATE(3318), + [sym_gnu_asm_expression] = STATE(3318), + [sym_field_expression] = STATE(3318), + [sym_compound_literal_expression] = STATE(3318), + [sym_parenthesized_expression] = STATE(3318), + [sym_char_literal] = STATE(3076), + [sym_concatenated_string] = STATE(3076), + [sym_string_literal] = STATE(2202), + [sym_null] = STATE(3318), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6739), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3318), + [sym_raw_string_literal] = STATE(2202), + [sym_co_await_expression] = STATE(3318), + [sym_new_expression] = STATE(3318), + [sym_delete_expression] = STATE(3318), + [sym_requires_clause] = STATE(3318), + [sym_requires_expression] = STATE(3318), + [sym_lambda_expression] = STATE(3318), + [sym_lambda_capture_specifier] = STATE(5187), + [sym_fold_expression] = STATE(3318), + [sym_parameter_pack_expansion] = STATE(3318), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5232), + [sym_qualified_identifier] = STATE(3318), + [sym_qualified_type_identifier] = STATE(6739), + [sym_user_defined_literal] = STATE(3318), + [sym_identifier] = ACTIONS(1985), + [anon_sym_LPAREN2] = ACTIONS(1987), + [anon_sym_BANG] = ACTIONS(1991), + [anon_sym_TILDE] = ACTIONS(1991), + [anon_sym_DASH] = ACTIONS(1989), + [anon_sym_PLUS] = ACTIONS(1989), + [anon_sym_STAR] = ACTIONS(1847), + [anon_sym_AMP] = ACTIONS(1847), + [anon_sym_COLON_COLON] = ACTIONS(1995), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1999), + [anon_sym_not] = ACTIONS(1989), + [anon_sym_compl] = ACTIONS(1989), + [anon_sym_DASH_DASH] = ACTIONS(2001), + [anon_sym_PLUS_PLUS] = ACTIONS(2001), + [anon_sym_sizeof] = ACTIONS(2003), + [anon_sym_offsetof] = ACTIONS(2005), + [anon_sym__Generic] = ACTIONS(2007), + [anon_sym_asm] = ACTIONS(2009), + [anon_sym___asm__] = ACTIONS(2009), + [sym_number_literal] = ACTIONS(2011), + [anon_sym_L_SQUOTE] = ACTIONS(2013), + [anon_sym_u_SQUOTE] = ACTIONS(2013), + [anon_sym_U_SQUOTE] = ACTIONS(2013), + [anon_sym_u8_SQUOTE] = ACTIONS(2013), + [anon_sym_SQUOTE] = ACTIONS(2013), + [anon_sym_L_DQUOTE] = ACTIONS(2015), + [anon_sym_u_DQUOTE] = ACTIONS(2015), + [anon_sym_U_DQUOTE] = ACTIONS(2015), + [anon_sym_u8_DQUOTE] = ACTIONS(2015), + [anon_sym_DQUOTE] = ACTIONS(2015), + [sym_true] = ACTIONS(2017), + [sym_false] = ACTIONS(2017), + [anon_sym_NULL] = ACTIONS(2019), + [anon_sym_nullptr] = ACTIONS(2019), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(2021), + [anon_sym_R_DQUOTE] = ACTIONS(2023), + [anon_sym_LR_DQUOTE] = ACTIONS(2023), + [anon_sym_uR_DQUOTE] = ACTIONS(2023), + [anon_sym_UR_DQUOTE] = ACTIONS(2023), + [anon_sym_u8R_DQUOTE] = ACTIONS(2023), + [anon_sym_co_await] = ACTIONS(2025), + [anon_sym_new] = ACTIONS(2027), + [anon_sym_requires] = ACTIONS(2029), + [sym_this] = ACTIONS(2017), + }, + [1931] = { + [sym__expression] = STATE(3547), + [sym__expression_not_binary] = STATE(3565), + [sym_conditional_expression] = STATE(3565), + [sym_assignment_expression] = STATE(3565), + [sym_pointer_expression] = STATE(3220), + [sym_unary_expression] = STATE(3565), + [sym_binary_expression] = STATE(3565), + [sym_update_expression] = STATE(3565), + [sym_cast_expression] = STATE(3565), + [sym_sizeof_expression] = STATE(3565), + [sym_offsetof_expression] = STATE(3565), + [sym_generic_expression] = STATE(3565), + [sym_subscript_expression] = STATE(3220), + [sym_call_expression] = STATE(3220), + [sym_gnu_asm_expression] = STATE(3565), + [sym_field_expression] = STATE(3220), + [sym_compound_literal_expression] = STATE(3565), + [sym_parenthesized_expression] = STATE(3220), + [sym_char_literal] = STATE(3429), + [sym_concatenated_string] = STATE(3429), + [sym_string_literal] = STATE(2248), + [sym_null] = STATE(3565), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6847), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3565), + [sym_raw_string_literal] = STATE(2248), + [sym_co_await_expression] = STATE(3565), + [sym_new_expression] = STATE(3565), + [sym_delete_expression] = STATE(3565), + [sym_requires_clause] = STATE(3565), + [sym_requires_expression] = STATE(3565), + [sym_lambda_expression] = STATE(3565), + [sym_lambda_capture_specifier] = STATE(5204), + [sym_fold_expression] = STATE(3565), + [sym_parameter_pack_expansion] = STATE(3565), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5232), + [sym_qualified_identifier] = STATE(3220), + [sym_qualified_type_identifier] = STATE(6847), + [sym_user_defined_literal] = STATE(3565), + [sym_identifier] = ACTIONS(2095), + [anon_sym_LPAREN2] = ACTIONS(1841), + [anon_sym_BANG] = ACTIONS(1843), + [anon_sym_TILDE] = ACTIONS(1843), + [anon_sym_DASH] = ACTIONS(1845), + [anon_sym_PLUS] = ACTIONS(1845), + [anon_sym_STAR] = ACTIONS(1847), + [anon_sym_AMP] = ACTIONS(1847), + [anon_sym_COLON_COLON] = ACTIONS(1849), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1999), + [anon_sym_not] = ACTIONS(1845), + [anon_sym_compl] = ACTIONS(1845), + [anon_sym_DASH_DASH] = ACTIONS(1861), + [anon_sym_PLUS_PLUS] = ACTIONS(1861), + [anon_sym_sizeof] = ACTIONS(1863), + [anon_sym_offsetof] = ACTIONS(1865), + [anon_sym__Generic] = ACTIONS(1867), + [anon_sym_asm] = ACTIONS(1869), + [anon_sym___asm__] = ACTIONS(1869), + [sym_number_literal] = ACTIONS(1871), + [anon_sym_L_SQUOTE] = ACTIONS(1873), + [anon_sym_u_SQUOTE] = ACTIONS(1873), + [anon_sym_U_SQUOTE] = ACTIONS(1873), + [anon_sym_u8_SQUOTE] = ACTIONS(1873), + [anon_sym_SQUOTE] = ACTIONS(1873), + [anon_sym_L_DQUOTE] = ACTIONS(1875), + [anon_sym_u_DQUOTE] = ACTIONS(1875), + [anon_sym_U_DQUOTE] = ACTIONS(1875), + [anon_sym_u8_DQUOTE] = ACTIONS(1875), + [anon_sym_DQUOTE] = ACTIONS(1875), + [sym_true] = ACTIONS(1877), + [sym_false] = ACTIONS(1877), + [anon_sym_NULL] = ACTIONS(1879), + [anon_sym_nullptr] = ACTIONS(1879), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(1883), + [anon_sym_R_DQUOTE] = ACTIONS(1885), + [anon_sym_LR_DQUOTE] = ACTIONS(1885), + [anon_sym_uR_DQUOTE] = ACTIONS(1885), + [anon_sym_UR_DQUOTE] = ACTIONS(1885), + [anon_sym_u8R_DQUOTE] = ACTIONS(1885), + [anon_sym_co_await] = ACTIONS(1887), + [anon_sym_new] = ACTIONS(1889), + [anon_sym_requires] = ACTIONS(1891), + [sym_this] = ACTIONS(1877), + }, + [1932] = { + [sym__expression] = STATE(3464), + [sym__expression_not_binary] = STATE(3021), + [sym_conditional_expression] = STATE(3021), + [sym_assignment_expression] = STATE(3021), + [sym_pointer_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_cast_expression] = STATE(3021), + [sym_sizeof_expression] = STATE(3021), + [sym_offsetof_expression] = STATE(3021), + [sym_generic_expression] = STATE(3021), + [sym_subscript_expression] = STATE(3021), + [sym_call_expression] = STATE(3021), + [sym_gnu_asm_expression] = STATE(3021), + [sym_field_expression] = STATE(3021), + [sym_compound_literal_expression] = STATE(3021), + [sym_parenthesized_expression] = STATE(3021), + [sym_char_literal] = STATE(2901), + [sym_concatenated_string] = STATE(2901), + [sym_string_literal] = STATE(2173), + [sym_null] = STATE(3021), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6616), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3021), + [sym_raw_string_literal] = STATE(2173), + [sym_co_await_expression] = STATE(3021), + [sym_new_expression] = STATE(3021), + [sym_delete_expression] = STATE(3021), + [sym_requires_clause] = STATE(3021), + [sym_requires_expression] = STATE(3021), + [sym_lambda_expression] = STATE(3021), + [sym_lambda_capture_specifier] = STATE(5188), + [sym_fold_expression] = STATE(3021), + [sym_parameter_pack_expansion] = STATE(3021), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3021), + [sym_qualified_type_identifier] = STATE(6616), + [sym_user_defined_literal] = STATE(3021), + [sym_identifier] = ACTIONS(1933), + [anon_sym_LPAREN2] = ACTIONS(2077), + [anon_sym_BANG] = ACTIONS(2081), + [anon_sym_TILDE] = ACTIONS(2081), + [anon_sym_DASH] = ACTIONS(2079), + [anon_sym_PLUS] = ACTIONS(2079), + [anon_sym_STAR] = ACTIONS(3641), + [anon_sym_AMP] = ACTIONS(3641), + [anon_sym_COLON_COLON] = ACTIONS(2085), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(2079), + [anon_sym_compl] = ACTIONS(2079), + [anon_sym_DASH_DASH] = ACTIONS(2087), + [anon_sym_PLUS_PLUS] = ACTIONS(2087), + [anon_sym_sizeof] = ACTIONS(2089), + [anon_sym_offsetof] = ACTIONS(1957), + [anon_sym__Generic] = ACTIONS(1959), + [anon_sym_asm] = ACTIONS(1961), + [anon_sym___asm__] = ACTIONS(1961), + [sym_number_literal] = ACTIONS(1963), + [anon_sym_L_SQUOTE] = ACTIONS(1965), + [anon_sym_u_SQUOTE] = ACTIONS(1965), + [anon_sym_U_SQUOTE] = ACTIONS(1965), + [anon_sym_u8_SQUOTE] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_L_DQUOTE] = ACTIONS(1967), + [anon_sym_u_DQUOTE] = ACTIONS(1967), + [anon_sym_U_DQUOTE] = ACTIONS(1967), + [anon_sym_u8_DQUOTE] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(1967), + [sym_true] = ACTIONS(1969), + [sym_false] = ACTIONS(1969), + [anon_sym_NULL] = ACTIONS(1971), + [anon_sym_nullptr] = ACTIONS(1971), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(2091), + [anon_sym_R_DQUOTE] = ACTIONS(1977), + [anon_sym_LR_DQUOTE] = ACTIONS(1977), + [anon_sym_uR_DQUOTE] = ACTIONS(1977), + [anon_sym_UR_DQUOTE] = ACTIONS(1977), + [anon_sym_u8R_DQUOTE] = ACTIONS(1977), + [anon_sym_co_await] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(1981), + [anon_sym_requires] = ACTIONS(1983), + [sym_this] = ACTIONS(1969), + }, + [1933] = { + [sym__expression] = STATE(4449), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), + }, + [1934] = { + [sym__expression] = STATE(4176), + [sym__expression_not_binary] = STATE(4369), + [sym_conditional_expression] = STATE(4369), + [sym_assignment_expression] = STATE(4369), + [sym_pointer_expression] = STATE(3541), + [sym_unary_expression] = STATE(4369), + [sym_binary_expression] = STATE(4369), + [sym_update_expression] = STATE(4369), + [sym_cast_expression] = STATE(4369), + [sym_sizeof_expression] = STATE(4369), + [sym_offsetof_expression] = STATE(4369), + [sym_generic_expression] = STATE(4369), + [sym_subscript_expression] = STATE(3541), + [sym_call_expression] = STATE(3541), + [sym_gnu_asm_expression] = STATE(4369), + [sym_field_expression] = STATE(3541), + [sym_compound_literal_expression] = STATE(4369), + [sym_parenthesized_expression] = STATE(3541), + [sym_char_literal] = STATE(4131), + [sym_concatenated_string] = STATE(4131), + [sym_string_literal] = STATE(3542), + [sym_null] = STATE(4369), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6872), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(4369), + [sym_raw_string_literal] = STATE(3542), + [sym_co_await_expression] = STATE(4369), + [sym_new_expression] = STATE(4369), + [sym_delete_expression] = STATE(4369), + [sym_requires_clause] = STATE(4369), + [sym_requires_expression] = STATE(4369), + [sym_lambda_expression] = STATE(4369), + [sym_lambda_capture_specifier] = STATE(5208), + [sym_fold_expression] = STATE(4369), + [sym_parameter_pack_expansion] = STATE(4369), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5289), + [sym_qualified_identifier] = STATE(3541), + [sym_qualified_type_identifier] = STATE(6872), + [sym_user_defined_literal] = STATE(4369), + [sym_identifier] = ACTIONS(3599), + [anon_sym_LPAREN2] = ACTIONS(2618), + [anon_sym_BANG] = ACTIONS(2620), + [anon_sym_TILDE] = ACTIONS(2620), + [anon_sym_DASH] = ACTIONS(2622), + [anon_sym_PLUS] = ACTIONS(2622), + [anon_sym_STAR] = ACTIONS(2624), + [anon_sym_AMP] = ACTIONS(2624), + [anon_sym_COLON_COLON] = ACTIONS(2626), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(2045), + [anon_sym_not] = ACTIONS(2622), + [anon_sym_compl] = ACTIONS(2622), + [anon_sym_DASH_DASH] = ACTIONS(2640), + [anon_sym_PLUS_PLUS] = ACTIONS(2640), + [anon_sym_sizeof] = ACTIONS(2642), + [anon_sym_offsetof] = ACTIONS(2644), + [anon_sym__Generic] = ACTIONS(2646), + [anon_sym_asm] = ACTIONS(2648), + [anon_sym___asm__] = ACTIONS(2648), + [sym_number_literal] = ACTIONS(2650), + [anon_sym_L_SQUOTE] = ACTIONS(2652), + [anon_sym_u_SQUOTE] = ACTIONS(2652), + [anon_sym_U_SQUOTE] = ACTIONS(2652), + [anon_sym_u8_SQUOTE] = ACTIONS(2652), + [anon_sym_SQUOTE] = ACTIONS(2652), + [anon_sym_L_DQUOTE] = ACTIONS(2654), + [anon_sym_u_DQUOTE] = ACTIONS(2654), + [anon_sym_U_DQUOTE] = ACTIONS(2654), + [anon_sym_u8_DQUOTE] = ACTIONS(2654), + [anon_sym_DQUOTE] = ACTIONS(2654), + [sym_true] = ACTIONS(2656), + [sym_false] = ACTIONS(2656), + [anon_sym_NULL] = ACTIONS(2658), + [anon_sym_nullptr] = ACTIONS(2658), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(2668), + [anon_sym_R_DQUOTE] = ACTIONS(2670), + [anon_sym_LR_DQUOTE] = ACTIONS(2670), + [anon_sym_uR_DQUOTE] = ACTIONS(2670), + [anon_sym_UR_DQUOTE] = ACTIONS(2670), + [anon_sym_u8R_DQUOTE] = ACTIONS(2670), + [anon_sym_co_await] = ACTIONS(2672), + [anon_sym_new] = ACTIONS(2674), + [anon_sym_requires] = ACTIONS(2676), + [sym_this] = ACTIONS(2656), + }, + [1935] = { + [sym__expression] = STATE(3368), + [sym__expression_not_binary] = STATE(3513), + [sym_conditional_expression] = STATE(3513), + [sym_assignment_expression] = STATE(3513), + [sym_pointer_expression] = STATE(3513), + [sym_unary_expression] = STATE(3513), + [sym_binary_expression] = STATE(3513), + [sym_update_expression] = STATE(3513), + [sym_cast_expression] = STATE(3513), + [sym_sizeof_expression] = STATE(3513), + [sym_offsetof_expression] = STATE(3513), + [sym_generic_expression] = STATE(3513), + [sym_subscript_expression] = STATE(3513), + [sym_call_expression] = STATE(3513), + [sym_gnu_asm_expression] = STATE(3513), + [sym_field_expression] = STATE(3513), + [sym_compound_literal_expression] = STATE(3513), + [sym_parenthesized_expression] = STATE(3513), + [sym_char_literal] = STATE(3385), + [sym_concatenated_string] = STATE(3385), + [sym_string_literal] = STATE(2225), + [sym_null] = STATE(3513), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6957), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3513), + [sym_raw_string_literal] = STATE(2225), + [sym_co_await_expression] = STATE(3513), + [sym_new_expression] = STATE(3513), + [sym_delete_expression] = STATE(3513), + [sym_requires_clause] = STATE(3513), + [sym_requires_expression] = STATE(3513), + [sym_lambda_expression] = STATE(3513), + [sym_lambda_capture_specifier] = STATE(5162), + [sym_fold_expression] = STATE(3513), + [sym_parameter_pack_expansion] = STATE(3513), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5289), + [sym_qualified_identifier] = STATE(3513), + [sym_qualified_type_identifier] = STATE(6957), + [sym_user_defined_literal] = STATE(3513), + [sym_identifier] = ACTIONS(2031), + [anon_sym_LPAREN2] = ACTIONS(2033), + [anon_sym_BANG] = ACTIONS(2037), + [anon_sym_TILDE] = ACTIONS(2037), + [anon_sym_DASH] = ACTIONS(2035), + [anon_sym_PLUS] = ACTIONS(2035), + [anon_sym_STAR] = ACTIONS(2624), + [anon_sym_AMP] = ACTIONS(2624), + [anon_sym_COLON_COLON] = ACTIONS(2041), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(2045), + [anon_sym_not] = ACTIONS(2035), + [anon_sym_compl] = ACTIONS(2035), + [anon_sym_DASH_DASH] = ACTIONS(2047), + [anon_sym_PLUS_PLUS] = ACTIONS(2047), + [anon_sym_sizeof] = ACTIONS(2049), + [anon_sym_offsetof] = ACTIONS(2051), + [anon_sym__Generic] = ACTIONS(2053), + [anon_sym_asm] = ACTIONS(2055), + [anon_sym___asm__] = ACTIONS(2055), + [sym_number_literal] = ACTIONS(2057), + [anon_sym_L_SQUOTE] = ACTIONS(2059), + [anon_sym_u_SQUOTE] = ACTIONS(2059), + [anon_sym_U_SQUOTE] = ACTIONS(2059), + [anon_sym_u8_SQUOTE] = ACTIONS(2059), + [anon_sym_SQUOTE] = ACTIONS(2059), + [anon_sym_L_DQUOTE] = ACTIONS(2061), + [anon_sym_u_DQUOTE] = ACTIONS(2061), + [anon_sym_U_DQUOTE] = ACTIONS(2061), + [anon_sym_u8_DQUOTE] = ACTIONS(2061), + [anon_sym_DQUOTE] = ACTIONS(2061), + [sym_true] = ACTIONS(2063), + [sym_false] = ACTIONS(2063), + [anon_sym_NULL] = ACTIONS(2065), + [anon_sym_nullptr] = ACTIONS(2065), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(2067), + [anon_sym_R_DQUOTE] = ACTIONS(2069), + [anon_sym_LR_DQUOTE] = ACTIONS(2069), + [anon_sym_uR_DQUOTE] = ACTIONS(2069), + [anon_sym_UR_DQUOTE] = ACTIONS(2069), + [anon_sym_u8R_DQUOTE] = ACTIONS(2069), + [anon_sym_co_await] = ACTIONS(2071), + [anon_sym_new] = ACTIONS(2073), + [anon_sym_requires] = ACTIONS(2075), + [sym_this] = ACTIONS(2063), + }, + [1936] = { + [sym__expression] = STATE(4052), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(4219), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), + }, + [1937] = { + [sym__expression] = STATE(3083), + [sym__expression_not_binary] = STATE(3318), + [sym_conditional_expression] = STATE(3318), + [sym_assignment_expression] = STATE(3318), + [sym_pointer_expression] = STATE(3318), + [sym_unary_expression] = STATE(3318), + [sym_binary_expression] = STATE(3318), + [sym_update_expression] = STATE(3318), + [sym_cast_expression] = STATE(3318), + [sym_sizeof_expression] = STATE(3318), + [sym_offsetof_expression] = STATE(3318), + [sym_generic_expression] = STATE(3318), + [sym_subscript_expression] = STATE(3318), + [sym_call_expression] = STATE(3318), + [sym_gnu_asm_expression] = STATE(3318), + [sym_field_expression] = STATE(3318), + [sym_compound_literal_expression] = STATE(3318), + [sym_parenthesized_expression] = STATE(3318), + [sym_char_literal] = STATE(3076), + [sym_concatenated_string] = STATE(3076), + [sym_string_literal] = STATE(2202), + [sym_null] = STATE(3318), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6739), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3318), + [sym_raw_string_literal] = STATE(2202), + [sym_co_await_expression] = STATE(3318), + [sym_new_expression] = STATE(3318), + [sym_delete_expression] = STATE(3318), + [sym_requires_clause] = STATE(3318), + [sym_requires_expression] = STATE(3318), + [sym_lambda_expression] = STATE(3318), + [sym_lambda_capture_specifier] = STATE(5187), + [sym_fold_expression] = STATE(3318), + [sym_parameter_pack_expansion] = STATE(3318), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5232), + [sym_qualified_identifier] = STATE(3318), + [sym_qualified_type_identifier] = STATE(6739), + [sym_user_defined_literal] = STATE(3318), + [sym_identifier] = ACTIONS(1985), + [anon_sym_LPAREN2] = ACTIONS(1987), + [anon_sym_BANG] = ACTIONS(1991), + [anon_sym_TILDE] = ACTIONS(1991), + [anon_sym_DASH] = ACTIONS(1989), + [anon_sym_PLUS] = ACTIONS(1989), + [anon_sym_STAR] = ACTIONS(1847), + [anon_sym_AMP] = ACTIONS(1847), + [anon_sym_COLON_COLON] = ACTIONS(1995), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1999), + [anon_sym_not] = ACTIONS(1989), + [anon_sym_compl] = ACTIONS(1989), + [anon_sym_DASH_DASH] = ACTIONS(2001), + [anon_sym_PLUS_PLUS] = ACTIONS(2001), + [anon_sym_sizeof] = ACTIONS(2003), + [anon_sym_offsetof] = ACTIONS(2005), + [anon_sym__Generic] = ACTIONS(2007), + [anon_sym_asm] = ACTIONS(2009), + [anon_sym___asm__] = ACTIONS(2009), + [sym_number_literal] = ACTIONS(2011), + [anon_sym_L_SQUOTE] = ACTIONS(2013), + [anon_sym_u_SQUOTE] = ACTIONS(2013), + [anon_sym_U_SQUOTE] = ACTIONS(2013), + [anon_sym_u8_SQUOTE] = ACTIONS(2013), + [anon_sym_SQUOTE] = ACTIONS(2013), + [anon_sym_L_DQUOTE] = ACTIONS(2015), + [anon_sym_u_DQUOTE] = ACTIONS(2015), + [anon_sym_U_DQUOTE] = ACTIONS(2015), + [anon_sym_u8_DQUOTE] = ACTIONS(2015), + [anon_sym_DQUOTE] = ACTIONS(2015), + [sym_true] = ACTIONS(2017), + [sym_false] = ACTIONS(2017), + [anon_sym_NULL] = ACTIONS(2019), + [anon_sym_nullptr] = ACTIONS(2019), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(2021), + [anon_sym_R_DQUOTE] = ACTIONS(2023), + [anon_sym_LR_DQUOTE] = ACTIONS(2023), + [anon_sym_uR_DQUOTE] = ACTIONS(2023), + [anon_sym_UR_DQUOTE] = ACTIONS(2023), + [anon_sym_u8R_DQUOTE] = ACTIONS(2023), + [anon_sym_co_await] = ACTIONS(2025), + [anon_sym_new] = ACTIONS(2027), + [anon_sym_requires] = ACTIONS(2029), + [sym_this] = ACTIONS(2017), + }, + [1938] = { + [sym__expression] = STATE(3082), + [sym__expression_not_binary] = STATE(3318), + [sym_conditional_expression] = STATE(3318), + [sym_assignment_expression] = STATE(3318), + [sym_pointer_expression] = STATE(3318), + [sym_unary_expression] = STATE(3318), + [sym_binary_expression] = STATE(3318), + [sym_update_expression] = STATE(3318), + [sym_cast_expression] = STATE(3318), + [sym_sizeof_expression] = STATE(3318), + [sym_offsetof_expression] = STATE(3318), + [sym_generic_expression] = STATE(3318), + [sym_subscript_expression] = STATE(3318), + [sym_call_expression] = STATE(3318), + [sym_gnu_asm_expression] = STATE(3318), + [sym_field_expression] = STATE(3318), + [sym_compound_literal_expression] = STATE(3318), + [sym_parenthesized_expression] = STATE(3318), + [sym_char_literal] = STATE(3076), + [sym_concatenated_string] = STATE(3076), + [sym_string_literal] = STATE(2202), + [sym_null] = STATE(3318), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6739), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3318), + [sym_raw_string_literal] = STATE(2202), + [sym_co_await_expression] = STATE(3318), + [sym_new_expression] = STATE(3318), + [sym_delete_expression] = STATE(3318), + [sym_requires_clause] = STATE(3318), + [sym_requires_expression] = STATE(3318), + [sym_lambda_expression] = STATE(3318), + [sym_lambda_capture_specifier] = STATE(5187), + [sym_fold_expression] = STATE(3318), + [sym_parameter_pack_expansion] = STATE(3318), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5232), + [sym_qualified_identifier] = STATE(3318), + [sym_qualified_type_identifier] = STATE(6739), + [sym_user_defined_literal] = STATE(3318), + [sym_identifier] = ACTIONS(1985), + [anon_sym_LPAREN2] = ACTIONS(1987), + [anon_sym_BANG] = ACTIONS(1991), + [anon_sym_TILDE] = ACTIONS(1991), + [anon_sym_DASH] = ACTIONS(1989), + [anon_sym_PLUS] = ACTIONS(1989), + [anon_sym_STAR] = ACTIONS(1847), + [anon_sym_AMP] = ACTIONS(1847), + [anon_sym_COLON_COLON] = ACTIONS(1995), + [anon_sym_LBRACK] = ACTIONS(4439), + [sym_primitive_type] = ACTIONS(1999), + [anon_sym_not] = ACTIONS(1989), + [anon_sym_compl] = ACTIONS(1989), + [anon_sym_DASH_DASH] = ACTIONS(2001), + [anon_sym_PLUS_PLUS] = ACTIONS(2001), + [anon_sym_sizeof] = ACTIONS(2003), + [anon_sym_offsetof] = ACTIONS(2005), + [anon_sym__Generic] = ACTIONS(2007), + [anon_sym_asm] = ACTIONS(2009), + [anon_sym___asm__] = ACTIONS(2009), + [sym_number_literal] = ACTIONS(2011), + [anon_sym_L_SQUOTE] = ACTIONS(2013), + [anon_sym_u_SQUOTE] = ACTIONS(2013), + [anon_sym_U_SQUOTE] = ACTIONS(2013), + [anon_sym_u8_SQUOTE] = ACTIONS(2013), + [anon_sym_SQUOTE] = ACTIONS(2013), + [anon_sym_L_DQUOTE] = ACTIONS(2015), + [anon_sym_u_DQUOTE] = ACTIONS(2015), + [anon_sym_U_DQUOTE] = ACTIONS(2015), + [anon_sym_u8_DQUOTE] = ACTIONS(2015), + [anon_sym_DQUOTE] = ACTIONS(2015), + [sym_true] = ACTIONS(2017), + [sym_false] = ACTIONS(2017), + [anon_sym_NULL] = ACTIONS(2019), + [anon_sym_nullptr] = ACTIONS(2019), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(2021), + [anon_sym_R_DQUOTE] = ACTIONS(2023), + [anon_sym_LR_DQUOTE] = ACTIONS(2023), + [anon_sym_uR_DQUOTE] = ACTIONS(2023), + [anon_sym_UR_DQUOTE] = ACTIONS(2023), + [anon_sym_u8R_DQUOTE] = ACTIONS(2023), + [anon_sym_co_await] = ACTIONS(2025), + [anon_sym_new] = ACTIONS(2027), + [anon_sym_requires] = ACTIONS(2029), + [sym_this] = ACTIONS(2017), + }, + [1939] = { + [sym__expression] = STATE(3431), + [sym__expression_not_binary] = STATE(3565), + [sym_conditional_expression] = STATE(3565), + [sym_assignment_expression] = STATE(3565), + [sym_pointer_expression] = STATE(3220), + [sym_unary_expression] = STATE(3565), + [sym_binary_expression] = STATE(3565), + [sym_update_expression] = STATE(3565), + [sym_cast_expression] = STATE(3565), + [sym_sizeof_expression] = STATE(3565), + [sym_offsetof_expression] = STATE(3565), + [sym_generic_expression] = STATE(3565), + [sym_subscript_expression] = STATE(3220), + [sym_call_expression] = STATE(3220), + [sym_gnu_asm_expression] = STATE(3565), + [sym_field_expression] = STATE(3220), + [sym_compound_literal_expression] = STATE(3565), + [sym_parenthesized_expression] = STATE(3220), + [sym_char_literal] = STATE(3429), + [sym_concatenated_string] = STATE(3429), + [sym_string_literal] = STATE(2248), + [sym_null] = STATE(3565), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6847), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3565), + [sym_raw_string_literal] = STATE(2248), + [sym_co_await_expression] = STATE(3565), + [sym_new_expression] = STATE(3565), + [sym_delete_expression] = STATE(3565), + [sym_requires_clause] = STATE(3565), + [sym_requires_expression] = STATE(3565), + [sym_lambda_expression] = STATE(3565), + [sym_lambda_capture_specifier] = STATE(5204), + [sym_fold_expression] = STATE(3565), + [sym_parameter_pack_expansion] = STATE(3565), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5232), + [sym_qualified_identifier] = STATE(3220), + [sym_qualified_type_identifier] = STATE(6847), + [sym_user_defined_literal] = STATE(3565), + [sym_identifier] = ACTIONS(2095), + [anon_sym_LPAREN2] = ACTIONS(1841), + [anon_sym_BANG] = ACTIONS(1843), + [anon_sym_TILDE] = ACTIONS(1843), + [anon_sym_DASH] = ACTIONS(1845), + [anon_sym_PLUS] = ACTIONS(1845), + [anon_sym_STAR] = ACTIONS(1847), + [anon_sym_AMP] = ACTIONS(1847), + [anon_sym_COLON_COLON] = ACTIONS(1849), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1999), + [anon_sym_not] = ACTIONS(1845), + [anon_sym_compl] = ACTIONS(1845), + [anon_sym_DASH_DASH] = ACTIONS(1861), + [anon_sym_PLUS_PLUS] = ACTIONS(1861), + [anon_sym_sizeof] = ACTIONS(1863), + [anon_sym_offsetof] = ACTIONS(1865), + [anon_sym__Generic] = ACTIONS(1867), + [anon_sym_asm] = ACTIONS(1869), + [anon_sym___asm__] = ACTIONS(1869), + [sym_number_literal] = ACTIONS(1871), + [anon_sym_L_SQUOTE] = ACTIONS(1873), + [anon_sym_u_SQUOTE] = ACTIONS(1873), + [anon_sym_U_SQUOTE] = ACTIONS(1873), + [anon_sym_u8_SQUOTE] = ACTIONS(1873), + [anon_sym_SQUOTE] = ACTIONS(1873), + [anon_sym_L_DQUOTE] = ACTIONS(1875), + [anon_sym_u_DQUOTE] = ACTIONS(1875), + [anon_sym_U_DQUOTE] = ACTIONS(1875), + [anon_sym_u8_DQUOTE] = ACTIONS(1875), + [anon_sym_DQUOTE] = ACTIONS(1875), + [sym_true] = ACTIONS(1877), + [sym_false] = ACTIONS(1877), + [anon_sym_NULL] = ACTIONS(1879), + [anon_sym_nullptr] = ACTIONS(1879), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(1883), + [anon_sym_R_DQUOTE] = ACTIONS(1885), + [anon_sym_LR_DQUOTE] = ACTIONS(1885), + [anon_sym_uR_DQUOTE] = ACTIONS(1885), + [anon_sym_UR_DQUOTE] = ACTIONS(1885), + [anon_sym_u8R_DQUOTE] = ACTIONS(1885), + [anon_sym_co_await] = ACTIONS(1887), + [anon_sym_new] = ACTIONS(1889), + [anon_sym_requires] = ACTIONS(1891), + [sym_this] = ACTIONS(1877), + }, + [1940] = { + [sym__expression] = STATE(3465), + [sym__expression_not_binary] = STATE(3021), + [sym_conditional_expression] = STATE(3021), + [sym_assignment_expression] = STATE(3021), + [sym_pointer_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_cast_expression] = STATE(3021), + [sym_sizeof_expression] = STATE(3021), + [sym_offsetof_expression] = STATE(3021), + [sym_generic_expression] = STATE(3021), + [sym_subscript_expression] = STATE(3021), + [sym_call_expression] = STATE(3021), + [sym_gnu_asm_expression] = STATE(3021), + [sym_field_expression] = STATE(3021), + [sym_compound_literal_expression] = STATE(3021), + [sym_parenthesized_expression] = STATE(3021), + [sym_char_literal] = STATE(2901), + [sym_concatenated_string] = STATE(2901), + [sym_string_literal] = STATE(2173), + [sym_null] = STATE(3021), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6616), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3021), + [sym_raw_string_literal] = STATE(2173), + [sym_co_await_expression] = STATE(3021), + [sym_new_expression] = STATE(3021), + [sym_delete_expression] = STATE(3021), + [sym_requires_clause] = STATE(3021), + [sym_requires_expression] = STATE(3021), + [sym_lambda_expression] = STATE(3021), + [sym_lambda_capture_specifier] = STATE(5188), + [sym_fold_expression] = STATE(3021), + [sym_parameter_pack_expansion] = STATE(3021), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3021), + [sym_qualified_type_identifier] = STATE(6616), + [sym_user_defined_literal] = STATE(3021), + [sym_identifier] = ACTIONS(1933), + [anon_sym_LPAREN2] = ACTIONS(2077), + [anon_sym_BANG] = ACTIONS(2081), + [anon_sym_TILDE] = ACTIONS(2081), + [anon_sym_DASH] = ACTIONS(2079), + [anon_sym_PLUS] = ACTIONS(2079), + [anon_sym_STAR] = ACTIONS(3641), + [anon_sym_AMP] = ACTIONS(3641), + [anon_sym_COLON_COLON] = ACTIONS(2085), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(2079), + [anon_sym_compl] = ACTIONS(2079), + [anon_sym_DASH_DASH] = ACTIONS(2087), + [anon_sym_PLUS_PLUS] = ACTIONS(2087), + [anon_sym_sizeof] = ACTIONS(2089), + [anon_sym_offsetof] = ACTIONS(1957), + [anon_sym__Generic] = ACTIONS(1959), + [anon_sym_asm] = ACTIONS(1961), + [anon_sym___asm__] = ACTIONS(1961), + [sym_number_literal] = ACTIONS(1963), + [anon_sym_L_SQUOTE] = ACTIONS(1965), + [anon_sym_u_SQUOTE] = ACTIONS(1965), + [anon_sym_U_SQUOTE] = ACTIONS(1965), + [anon_sym_u8_SQUOTE] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_L_DQUOTE] = ACTIONS(1967), + [anon_sym_u_DQUOTE] = ACTIONS(1967), + [anon_sym_U_DQUOTE] = ACTIONS(1967), + [anon_sym_u8_DQUOTE] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(1967), + [sym_true] = ACTIONS(1969), + [sym_false] = ACTIONS(1969), + [anon_sym_NULL] = ACTIONS(1971), + [anon_sym_nullptr] = ACTIONS(1971), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(2091), + [anon_sym_R_DQUOTE] = ACTIONS(1977), + [anon_sym_LR_DQUOTE] = ACTIONS(1977), + [anon_sym_uR_DQUOTE] = ACTIONS(1977), + [anon_sym_UR_DQUOTE] = ACTIONS(1977), + [anon_sym_u8R_DQUOTE] = ACTIONS(1977), + [anon_sym_co_await] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(1981), + [anon_sym_requires] = ACTIONS(1983), + [sym_this] = ACTIONS(1969), + }, + [1941] = { + [sym__expression] = STATE(4458), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3579), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3579), + [sym_call_expression] = STATE(3579), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3579), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3579), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3579), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3633), + [anon_sym_LPAREN2] = ACTIONS(3635), + [anon_sym_BANG] = ACTIONS(3639), + [anon_sym_TILDE] = ACTIONS(3639), + [anon_sym_DASH] = ACTIONS(3637), + [anon_sym_PLUS] = ACTIONS(3637), + [anon_sym_STAR] = ACTIONS(3641), + [anon_sym_AMP] = ACTIONS(3641), + [anon_sym_COLON_COLON] = ACTIONS(3643), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(3637), + [anon_sym_compl] = ACTIONS(3637), + [anon_sym_DASH_DASH] = ACTIONS(3645), + [anon_sym_PLUS_PLUS] = ACTIONS(3645), + [anon_sym_sizeof] = ACTIONS(3647), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(3649), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(3651), + [anon_sym_new] = ACTIONS(3631), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), + }, + [1942] = { + [sym__expression] = STATE(3466), + [sym__expression_not_binary] = STATE(3021), + [sym_conditional_expression] = STATE(3021), + [sym_assignment_expression] = STATE(3021), + [sym_pointer_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_cast_expression] = STATE(3021), + [sym_sizeof_expression] = STATE(3021), + [sym_offsetof_expression] = STATE(3021), + [sym_generic_expression] = STATE(3021), + [sym_subscript_expression] = STATE(3021), + [sym_call_expression] = STATE(3021), + [sym_gnu_asm_expression] = STATE(3021), + [sym_field_expression] = STATE(3021), + [sym_compound_literal_expression] = STATE(3021), + [sym_parenthesized_expression] = STATE(3021), + [sym_char_literal] = STATE(2901), + [sym_concatenated_string] = STATE(2901), + [sym_string_literal] = STATE(2173), + [sym_null] = STATE(3021), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6616), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3021), + [sym_raw_string_literal] = STATE(2173), + [sym_co_await_expression] = STATE(3021), + [sym_new_expression] = STATE(3021), + [sym_delete_expression] = STATE(3021), + [sym_requires_clause] = STATE(3021), + [sym_requires_expression] = STATE(3021), + [sym_lambda_expression] = STATE(3021), + [sym_lambda_capture_specifier] = STATE(5188), + [sym_fold_expression] = STATE(3021), + [sym_parameter_pack_expansion] = STATE(3021), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3021), + [sym_qualified_type_identifier] = STATE(6616), + [sym_user_defined_literal] = STATE(3021), + [sym_identifier] = ACTIONS(1933), + [anon_sym_LPAREN2] = ACTIONS(2077), + [anon_sym_BANG] = ACTIONS(2081), + [anon_sym_TILDE] = ACTIONS(2081), + [anon_sym_DASH] = ACTIONS(2079), + [anon_sym_PLUS] = ACTIONS(2079), + [anon_sym_STAR] = ACTIONS(3641), + [anon_sym_AMP] = ACTIONS(3641), + [anon_sym_COLON_COLON] = ACTIONS(2085), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(2079), + [anon_sym_compl] = ACTIONS(2079), + [anon_sym_DASH_DASH] = ACTIONS(2087), + [anon_sym_PLUS_PLUS] = ACTIONS(2087), + [anon_sym_sizeof] = ACTIONS(2089), + [anon_sym_offsetof] = ACTIONS(1957), + [anon_sym__Generic] = ACTIONS(1959), + [anon_sym_asm] = ACTIONS(1961), + [anon_sym___asm__] = ACTIONS(1961), + [sym_number_literal] = ACTIONS(1963), + [anon_sym_L_SQUOTE] = ACTIONS(1965), + [anon_sym_u_SQUOTE] = ACTIONS(1965), + [anon_sym_U_SQUOTE] = ACTIONS(1965), + [anon_sym_u8_SQUOTE] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_L_DQUOTE] = ACTIONS(1967), + [anon_sym_u_DQUOTE] = ACTIONS(1967), + [anon_sym_U_DQUOTE] = ACTIONS(1967), + [anon_sym_u8_DQUOTE] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(1967), + [sym_true] = ACTIONS(1969), + [sym_false] = ACTIONS(1969), + [anon_sym_NULL] = ACTIONS(1971), + [anon_sym_nullptr] = ACTIONS(1971), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(2091), + [anon_sym_R_DQUOTE] = ACTIONS(1977), + [anon_sym_LR_DQUOTE] = ACTIONS(1977), + [anon_sym_uR_DQUOTE] = ACTIONS(1977), + [anon_sym_UR_DQUOTE] = ACTIONS(1977), + [anon_sym_u8R_DQUOTE] = ACTIONS(1977), + [anon_sym_co_await] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(1981), + [anon_sym_requires] = ACTIONS(1983), + [sym_this] = ACTIONS(1969), + }, + [1943] = { + [sym__expression] = STATE(3944), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3509), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3509), + [sym_call_expression] = STATE(3509), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3509), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3509), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3509), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3613), + [anon_sym_LPAREN2] = ACTIONS(3615), + [anon_sym_BANG] = ACTIONS(3619), + [anon_sym_TILDE] = ACTIONS(3619), + [anon_sym_DASH] = ACTIONS(3617), + [anon_sym_PLUS] = ACTIONS(3617), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(3621), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(3617), + [anon_sym_compl] = ACTIONS(3617), + [anon_sym_DASH_DASH] = ACTIONS(3623), + [anon_sym_PLUS_PLUS] = ACTIONS(3623), + [anon_sym_sizeof] = ACTIONS(3625), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(3627), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(3629), + [anon_sym_new] = ACTIONS(3631), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), + }, + [1944] = { + [sym__expression] = STATE(4482), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), + }, + [1945] = { + [sym__expression] = STATE(3369), + [sym__expression_not_binary] = STATE(3513), + [sym_conditional_expression] = STATE(3513), + [sym_assignment_expression] = STATE(3513), + [sym_pointer_expression] = STATE(3513), + [sym_unary_expression] = STATE(3513), + [sym_binary_expression] = STATE(3513), + [sym_update_expression] = STATE(3513), + [sym_cast_expression] = STATE(3513), + [sym_sizeof_expression] = STATE(3513), + [sym_offsetof_expression] = STATE(3513), + [sym_generic_expression] = STATE(3513), + [sym_subscript_expression] = STATE(3513), + [sym_call_expression] = STATE(3513), + [sym_gnu_asm_expression] = STATE(3513), + [sym_field_expression] = STATE(3513), + [sym_compound_literal_expression] = STATE(3513), + [sym_parenthesized_expression] = STATE(3513), + [sym_char_literal] = STATE(3385), + [sym_concatenated_string] = STATE(3385), + [sym_string_literal] = STATE(2225), + [sym_null] = STATE(3513), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6957), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3513), + [sym_raw_string_literal] = STATE(2225), + [sym_co_await_expression] = STATE(3513), + [sym_new_expression] = STATE(3513), + [sym_delete_expression] = STATE(3513), + [sym_requires_clause] = STATE(3513), + [sym_requires_expression] = STATE(3513), + [sym_lambda_expression] = STATE(3513), + [sym_lambda_capture_specifier] = STATE(5162), + [sym_fold_expression] = STATE(3513), + [sym_parameter_pack_expansion] = STATE(3513), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5289), + [sym_qualified_identifier] = STATE(3513), + [sym_qualified_type_identifier] = STATE(6957), + [sym_user_defined_literal] = STATE(3513), + [sym_identifier] = ACTIONS(2031), + [anon_sym_LPAREN2] = ACTIONS(2033), + [anon_sym_BANG] = ACTIONS(2037), + [anon_sym_TILDE] = ACTIONS(2037), + [anon_sym_DASH] = ACTIONS(2035), + [anon_sym_PLUS] = ACTIONS(2035), + [anon_sym_STAR] = ACTIONS(2624), + [anon_sym_AMP] = ACTIONS(2624), + [anon_sym_COLON_COLON] = ACTIONS(2041), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(2045), + [anon_sym_not] = ACTIONS(2035), + [anon_sym_compl] = ACTIONS(2035), + [anon_sym_DASH_DASH] = ACTIONS(2047), + [anon_sym_PLUS_PLUS] = ACTIONS(2047), + [anon_sym_sizeof] = ACTIONS(2049), + [anon_sym_offsetof] = ACTIONS(2051), + [anon_sym__Generic] = ACTIONS(2053), + [anon_sym_asm] = ACTIONS(2055), + [anon_sym___asm__] = ACTIONS(2055), + [sym_number_literal] = ACTIONS(2057), + [anon_sym_L_SQUOTE] = ACTIONS(2059), + [anon_sym_u_SQUOTE] = ACTIONS(2059), + [anon_sym_U_SQUOTE] = ACTIONS(2059), + [anon_sym_u8_SQUOTE] = ACTIONS(2059), + [anon_sym_SQUOTE] = ACTIONS(2059), + [anon_sym_L_DQUOTE] = ACTIONS(2061), + [anon_sym_u_DQUOTE] = ACTIONS(2061), + [anon_sym_U_DQUOTE] = ACTIONS(2061), + [anon_sym_u8_DQUOTE] = ACTIONS(2061), + [anon_sym_DQUOTE] = ACTIONS(2061), + [sym_true] = ACTIONS(2063), + [sym_false] = ACTIONS(2063), + [anon_sym_NULL] = ACTIONS(2065), + [anon_sym_nullptr] = ACTIONS(2065), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(2067), + [anon_sym_R_DQUOTE] = ACTIONS(2069), + [anon_sym_LR_DQUOTE] = ACTIONS(2069), + [anon_sym_uR_DQUOTE] = ACTIONS(2069), + [anon_sym_UR_DQUOTE] = ACTIONS(2069), + [anon_sym_u8R_DQUOTE] = ACTIONS(2069), + [anon_sym_co_await] = ACTIONS(2071), + [anon_sym_new] = ACTIONS(2073), + [anon_sym_requires] = ACTIONS(2075), + [sym_this] = ACTIONS(2063), + }, + [1946] = { + [sym__expression] = STATE(3000), + [sym__expression_not_binary] = STATE(3021), + [sym_conditional_expression] = STATE(3021), + [sym_assignment_expression] = STATE(3021), + [sym_pointer_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_cast_expression] = STATE(3021), + [sym_sizeof_expression] = STATE(3021), + [sym_offsetof_expression] = STATE(3021), + [sym_generic_expression] = STATE(3021), + [sym_subscript_expression] = STATE(3021), + [sym_call_expression] = STATE(3021), + [sym_gnu_asm_expression] = STATE(3021), + [sym_field_expression] = STATE(3021), + [sym_compound_literal_expression] = STATE(3021), + [sym_parenthesized_expression] = STATE(3021), + [sym_char_literal] = STATE(2901), + [sym_concatenated_string] = STATE(2901), + [sym_string_literal] = STATE(2173), + [sym_null] = STATE(3021), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6616), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3021), + [sym_raw_string_literal] = STATE(2173), + [sym_co_await_expression] = STATE(3021), + [sym_new_expression] = STATE(3021), + [sym_delete_expression] = STATE(3021), + [sym_requires_clause] = STATE(3021), + [sym_requires_expression] = STATE(3021), + [sym_lambda_expression] = STATE(3021), + [sym_lambda_capture_specifier] = STATE(5188), + [sym_fold_expression] = STATE(3021), + [sym_parameter_pack_expansion] = STATE(3021), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3021), + [sym_qualified_type_identifier] = STATE(6616), + [sym_user_defined_literal] = STATE(3021), + [sym_identifier] = ACTIONS(1933), + [anon_sym_LPAREN2] = ACTIONS(1937), + [anon_sym_BANG] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(1941), + [anon_sym_DASH] = ACTIONS(1939), + [anon_sym_PLUS] = ACTIONS(1939), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(1945), + [anon_sym_LBRACK] = ACTIONS(4441), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(1939), + [anon_sym_compl] = ACTIONS(1939), + [anon_sym_DASH_DASH] = ACTIONS(1953), + [anon_sym_PLUS_PLUS] = ACTIONS(1953), + [anon_sym_sizeof] = ACTIONS(1955), + [anon_sym_offsetof] = ACTIONS(1957), + [anon_sym__Generic] = ACTIONS(1959), + [anon_sym_asm] = ACTIONS(1961), + [anon_sym___asm__] = ACTIONS(1961), + [sym_number_literal] = ACTIONS(1963), + [anon_sym_L_SQUOTE] = ACTIONS(1965), + [anon_sym_u_SQUOTE] = ACTIONS(1965), + [anon_sym_U_SQUOTE] = ACTIONS(1965), + [anon_sym_u8_SQUOTE] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_L_DQUOTE] = ACTIONS(1967), + [anon_sym_u_DQUOTE] = ACTIONS(1967), + [anon_sym_U_DQUOTE] = ACTIONS(1967), + [anon_sym_u8_DQUOTE] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(1967), + [sym_true] = ACTIONS(1969), + [sym_false] = ACTIONS(1969), + [anon_sym_NULL] = ACTIONS(1971), + [anon_sym_nullptr] = ACTIONS(1971), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(1975), + [anon_sym_R_DQUOTE] = ACTIONS(1977), + [anon_sym_LR_DQUOTE] = ACTIONS(1977), + [anon_sym_uR_DQUOTE] = ACTIONS(1977), + [anon_sym_UR_DQUOTE] = ACTIONS(1977), + [anon_sym_u8R_DQUOTE] = ACTIONS(1977), + [anon_sym_co_await] = ACTIONS(1979), + [anon_sym_new] = ACTIONS(1981), + [anon_sym_requires] = ACTIONS(1983), + [sym_this] = ACTIONS(1969), + }, + [1947] = { + [sym__expression] = STATE(3370), + [sym__expression_not_binary] = STATE(3513), + [sym_conditional_expression] = STATE(3513), + [sym_assignment_expression] = STATE(3513), + [sym_pointer_expression] = STATE(3513), + [sym_unary_expression] = STATE(3513), + [sym_binary_expression] = STATE(3513), + [sym_update_expression] = STATE(3513), + [sym_cast_expression] = STATE(3513), + [sym_sizeof_expression] = STATE(3513), + [sym_offsetof_expression] = STATE(3513), + [sym_generic_expression] = STATE(3513), + [sym_subscript_expression] = STATE(3513), + [sym_call_expression] = STATE(3513), + [sym_gnu_asm_expression] = STATE(3513), + [sym_field_expression] = STATE(3513), + [sym_compound_literal_expression] = STATE(3513), + [sym_parenthesized_expression] = STATE(3513), + [sym_char_literal] = STATE(3385), + [sym_concatenated_string] = STATE(3385), + [sym_string_literal] = STATE(2225), + [sym_null] = STATE(3513), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6957), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3513), + [sym_raw_string_literal] = STATE(2225), + [sym_co_await_expression] = STATE(3513), + [sym_new_expression] = STATE(3513), + [sym_delete_expression] = STATE(3513), + [sym_requires_clause] = STATE(3513), + [sym_requires_expression] = STATE(3513), + [sym_lambda_expression] = STATE(3513), + [sym_lambda_capture_specifier] = STATE(5162), + [sym_fold_expression] = STATE(3513), + [sym_parameter_pack_expansion] = STATE(3513), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5289), + [sym_qualified_identifier] = STATE(3513), + [sym_qualified_type_identifier] = STATE(6957), + [sym_user_defined_literal] = STATE(3513), + [sym_identifier] = ACTIONS(2031), + [anon_sym_LPAREN2] = ACTIONS(2033), + [anon_sym_BANG] = ACTIONS(2037), + [anon_sym_TILDE] = ACTIONS(2037), + [anon_sym_DASH] = ACTIONS(2035), + [anon_sym_PLUS] = ACTIONS(2035), + [anon_sym_STAR] = ACTIONS(2624), + [anon_sym_AMP] = ACTIONS(2624), + [anon_sym_COLON_COLON] = ACTIONS(2041), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(2045), + [anon_sym_not] = ACTIONS(2035), + [anon_sym_compl] = ACTIONS(2035), + [anon_sym_DASH_DASH] = ACTIONS(2047), + [anon_sym_PLUS_PLUS] = ACTIONS(2047), + [anon_sym_sizeof] = ACTIONS(2049), + [anon_sym_offsetof] = ACTIONS(2051), + [anon_sym__Generic] = ACTIONS(2053), + [anon_sym_asm] = ACTIONS(2055), + [anon_sym___asm__] = ACTIONS(2055), + [sym_number_literal] = ACTIONS(2057), + [anon_sym_L_SQUOTE] = ACTIONS(2059), + [anon_sym_u_SQUOTE] = ACTIONS(2059), + [anon_sym_U_SQUOTE] = ACTIONS(2059), + [anon_sym_u8_SQUOTE] = ACTIONS(2059), + [anon_sym_SQUOTE] = ACTIONS(2059), + [anon_sym_L_DQUOTE] = ACTIONS(2061), + [anon_sym_u_DQUOTE] = ACTIONS(2061), + [anon_sym_U_DQUOTE] = ACTIONS(2061), + [anon_sym_u8_DQUOTE] = ACTIONS(2061), + [anon_sym_DQUOTE] = ACTIONS(2061), + [sym_true] = ACTIONS(2063), + [sym_false] = ACTIONS(2063), + [anon_sym_NULL] = ACTIONS(2065), + [anon_sym_nullptr] = ACTIONS(2065), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(2067), + [anon_sym_R_DQUOTE] = ACTIONS(2069), + [anon_sym_LR_DQUOTE] = ACTIONS(2069), + [anon_sym_uR_DQUOTE] = ACTIONS(2069), + [anon_sym_UR_DQUOTE] = ACTIONS(2069), + [anon_sym_u8R_DQUOTE] = ACTIONS(2069), + [anon_sym_co_await] = ACTIONS(2071), + [anon_sym_new] = ACTIONS(2073), + [anon_sym_requires] = ACTIONS(2075), + [sym_this] = ACTIONS(2063), + }, + [1948] = { + [sym__expression] = STATE(3013), + [sym__expression_not_binary] = STATE(3021), + [sym_conditional_expression] = STATE(3021), + [sym_assignment_expression] = STATE(3021), + [sym_pointer_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_cast_expression] = STATE(3021), + [sym_sizeof_expression] = STATE(3021), + [sym_offsetof_expression] = STATE(3021), + [sym_generic_expression] = STATE(3021), + [sym_subscript_expression] = STATE(3021), + [sym_call_expression] = STATE(3021), + [sym_gnu_asm_expression] = STATE(3021), + [sym_field_expression] = STATE(3021), + [sym_compound_literal_expression] = STATE(3021), + [sym_parenthesized_expression] = STATE(3021), + [sym_char_literal] = STATE(2901), + [sym_concatenated_string] = STATE(2901), + [sym_string_literal] = STATE(2173), + [sym_null] = STATE(3021), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6616), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3021), + [sym_raw_string_literal] = STATE(2173), + [sym_co_await_expression] = STATE(3021), + [sym_new_expression] = STATE(3021), + [sym_delete_expression] = STATE(3021), + [sym_requires_clause] = STATE(3021), + [sym_requires_expression] = STATE(3021), + [sym_lambda_expression] = STATE(3021), + [sym_lambda_capture_specifier] = STATE(5188), + [sym_fold_expression] = STATE(3021), + [sym_parameter_pack_expansion] = STATE(3021), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3021), + [sym_qualified_type_identifier] = STATE(6616), + [sym_user_defined_literal] = STATE(3021), + [sym_identifier] = ACTIONS(1933), + [anon_sym_LPAREN2] = ACTIONS(1937), + [anon_sym_BANG] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(1941), + [anon_sym_DASH] = ACTIONS(1939), + [anon_sym_PLUS] = ACTIONS(1939), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(1945), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(1939), + [anon_sym_compl] = ACTIONS(1939), + [anon_sym_DASH_DASH] = ACTIONS(1953), + [anon_sym_PLUS_PLUS] = ACTIONS(1953), + [anon_sym_sizeof] = ACTIONS(1955), + [anon_sym_offsetof] = ACTIONS(1957), + [anon_sym__Generic] = ACTIONS(1959), + [anon_sym_asm] = ACTIONS(1961), + [anon_sym___asm__] = ACTIONS(1961), + [sym_number_literal] = ACTIONS(1963), + [anon_sym_L_SQUOTE] = ACTIONS(1965), + [anon_sym_u_SQUOTE] = ACTIONS(1965), + [anon_sym_U_SQUOTE] = ACTIONS(1965), + [anon_sym_u8_SQUOTE] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_L_DQUOTE] = ACTIONS(1967), + [anon_sym_u_DQUOTE] = ACTIONS(1967), + [anon_sym_U_DQUOTE] = ACTIONS(1967), + [anon_sym_u8_DQUOTE] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(1967), + [sym_true] = ACTIONS(1969), + [sym_false] = ACTIONS(1969), + [anon_sym_NULL] = ACTIONS(1971), + [anon_sym_nullptr] = ACTIONS(1971), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(1975), + [anon_sym_R_DQUOTE] = ACTIONS(1977), + [anon_sym_LR_DQUOTE] = ACTIONS(1977), + [anon_sym_uR_DQUOTE] = ACTIONS(1977), + [anon_sym_UR_DQUOTE] = ACTIONS(1977), + [anon_sym_u8R_DQUOTE] = ACTIONS(1977), + [anon_sym_co_await] = ACTIONS(1979), + [anon_sym_new] = ACTIONS(1981), + [anon_sym_requires] = ACTIONS(1983), + [sym_this] = ACTIONS(1969), + }, + [1949] = { + [sym__expression] = STATE(4175), + [sym__expression_not_binary] = STATE(4369), + [sym_conditional_expression] = STATE(4369), + [sym_assignment_expression] = STATE(4369), + [sym_pointer_expression] = STATE(3541), + [sym_unary_expression] = STATE(4369), + [sym_binary_expression] = STATE(4369), + [sym_update_expression] = STATE(4369), + [sym_cast_expression] = STATE(4369), + [sym_sizeof_expression] = STATE(4369), + [sym_offsetof_expression] = STATE(4369), + [sym_generic_expression] = STATE(4369), + [sym_subscript_expression] = STATE(3541), + [sym_call_expression] = STATE(3541), + [sym_gnu_asm_expression] = STATE(4369), + [sym_field_expression] = STATE(3541), + [sym_compound_literal_expression] = STATE(4369), + [sym_parenthesized_expression] = STATE(3541), + [sym_char_literal] = STATE(4131), + [sym_concatenated_string] = STATE(4131), + [sym_string_literal] = STATE(3542), + [sym_null] = STATE(4369), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6872), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(4369), + [sym_raw_string_literal] = STATE(3542), + [sym_co_await_expression] = STATE(4369), + [sym_new_expression] = STATE(4369), + [sym_delete_expression] = STATE(4369), + [sym_requires_clause] = STATE(4369), + [sym_requires_expression] = STATE(4369), + [sym_lambda_expression] = STATE(4369), + [sym_lambda_capture_specifier] = STATE(5208), + [sym_fold_expression] = STATE(4369), + [sym_parameter_pack_expansion] = STATE(4369), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5289), + [sym_qualified_identifier] = STATE(3541), + [sym_qualified_type_identifier] = STATE(6872), + [sym_user_defined_literal] = STATE(4369), + [sym_identifier] = ACTIONS(3599), + [anon_sym_LPAREN2] = ACTIONS(2618), + [anon_sym_BANG] = ACTIONS(2620), + [anon_sym_TILDE] = ACTIONS(2620), + [anon_sym_DASH] = ACTIONS(2622), + [anon_sym_PLUS] = ACTIONS(2622), + [anon_sym_STAR] = ACTIONS(2624), + [anon_sym_AMP] = ACTIONS(2624), + [anon_sym_COLON_COLON] = ACTIONS(2626), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(2045), + [anon_sym_not] = ACTIONS(2622), + [anon_sym_compl] = ACTIONS(2622), + [anon_sym_DASH_DASH] = ACTIONS(2640), + [anon_sym_PLUS_PLUS] = ACTIONS(2640), + [anon_sym_sizeof] = ACTIONS(2642), + [anon_sym_offsetof] = ACTIONS(2644), + [anon_sym__Generic] = ACTIONS(2646), + [anon_sym_asm] = ACTIONS(2648), + [anon_sym___asm__] = ACTIONS(2648), + [sym_number_literal] = ACTIONS(2650), + [anon_sym_L_SQUOTE] = ACTIONS(2652), + [anon_sym_u_SQUOTE] = ACTIONS(2652), + [anon_sym_U_SQUOTE] = ACTIONS(2652), + [anon_sym_u8_SQUOTE] = ACTIONS(2652), + [anon_sym_SQUOTE] = ACTIONS(2652), + [anon_sym_L_DQUOTE] = ACTIONS(2654), + [anon_sym_u_DQUOTE] = ACTIONS(2654), + [anon_sym_U_DQUOTE] = ACTIONS(2654), + [anon_sym_u8_DQUOTE] = ACTIONS(2654), + [anon_sym_DQUOTE] = ACTIONS(2654), + [sym_true] = ACTIONS(2656), + [sym_false] = ACTIONS(2656), + [anon_sym_NULL] = ACTIONS(2658), + [anon_sym_nullptr] = ACTIONS(2658), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(2668), + [anon_sym_R_DQUOTE] = ACTIONS(2670), + [anon_sym_LR_DQUOTE] = ACTIONS(2670), + [anon_sym_uR_DQUOTE] = ACTIONS(2670), + [anon_sym_UR_DQUOTE] = ACTIONS(2670), + [anon_sym_u8R_DQUOTE] = ACTIONS(2670), + [anon_sym_co_await] = ACTIONS(2672), + [anon_sym_new] = ACTIONS(2674), + [anon_sym_requires] = ACTIONS(2676), + [sym_this] = ACTIONS(2656), + }, + [1950] = { + [sym__expression] = STATE(3371), + [sym__expression_not_binary] = STATE(3513), + [sym_conditional_expression] = STATE(3513), + [sym_assignment_expression] = STATE(3513), + [sym_pointer_expression] = STATE(3513), + [sym_unary_expression] = STATE(3513), + [sym_binary_expression] = STATE(3513), + [sym_update_expression] = STATE(3513), + [sym_cast_expression] = STATE(3513), + [sym_sizeof_expression] = STATE(3513), + [sym_offsetof_expression] = STATE(3513), + [sym_generic_expression] = STATE(3513), + [sym_subscript_expression] = STATE(3513), + [sym_call_expression] = STATE(3513), + [sym_gnu_asm_expression] = STATE(3513), + [sym_field_expression] = STATE(3513), + [sym_compound_literal_expression] = STATE(3513), + [sym_parenthesized_expression] = STATE(3513), + [sym_char_literal] = STATE(3385), + [sym_concatenated_string] = STATE(3385), + [sym_string_literal] = STATE(2225), + [sym_null] = STATE(3513), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6957), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3513), + [sym_raw_string_literal] = STATE(2225), + [sym_co_await_expression] = STATE(3513), + [sym_new_expression] = STATE(3513), + [sym_delete_expression] = STATE(3513), + [sym_requires_clause] = STATE(3513), + [sym_requires_expression] = STATE(3513), + [sym_lambda_expression] = STATE(3513), + [sym_lambda_capture_specifier] = STATE(5162), + [sym_fold_expression] = STATE(3513), + [sym_parameter_pack_expansion] = STATE(3513), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5289), + [sym_qualified_identifier] = STATE(3513), + [sym_qualified_type_identifier] = STATE(6957), + [sym_user_defined_literal] = STATE(3513), + [sym_identifier] = ACTIONS(2031), + [anon_sym_LPAREN2] = ACTIONS(2033), + [anon_sym_BANG] = ACTIONS(2037), + [anon_sym_TILDE] = ACTIONS(2037), + [anon_sym_DASH] = ACTIONS(2035), + [anon_sym_PLUS] = ACTIONS(2035), + [anon_sym_STAR] = ACTIONS(2624), + [anon_sym_AMP] = ACTIONS(2624), + [anon_sym_COLON_COLON] = ACTIONS(2041), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(2045), + [anon_sym_not] = ACTIONS(2035), + [anon_sym_compl] = ACTIONS(2035), + [anon_sym_DASH_DASH] = ACTIONS(2047), + [anon_sym_PLUS_PLUS] = ACTIONS(2047), + [anon_sym_sizeof] = ACTIONS(2049), + [anon_sym_offsetof] = ACTIONS(2051), + [anon_sym__Generic] = ACTIONS(2053), + [anon_sym_asm] = ACTIONS(2055), + [anon_sym___asm__] = ACTIONS(2055), + [sym_number_literal] = ACTIONS(2057), + [anon_sym_L_SQUOTE] = ACTIONS(2059), + [anon_sym_u_SQUOTE] = ACTIONS(2059), + [anon_sym_U_SQUOTE] = ACTIONS(2059), + [anon_sym_u8_SQUOTE] = ACTIONS(2059), + [anon_sym_SQUOTE] = ACTIONS(2059), + [anon_sym_L_DQUOTE] = ACTIONS(2061), + [anon_sym_u_DQUOTE] = ACTIONS(2061), + [anon_sym_U_DQUOTE] = ACTIONS(2061), + [anon_sym_u8_DQUOTE] = ACTIONS(2061), + [anon_sym_DQUOTE] = ACTIONS(2061), + [sym_true] = ACTIONS(2063), + [sym_false] = ACTIONS(2063), + [anon_sym_NULL] = ACTIONS(2065), + [anon_sym_nullptr] = ACTIONS(2065), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(2067), + [anon_sym_R_DQUOTE] = ACTIONS(2069), + [anon_sym_LR_DQUOTE] = ACTIONS(2069), + [anon_sym_uR_DQUOTE] = ACTIONS(2069), + [anon_sym_UR_DQUOTE] = ACTIONS(2069), + [anon_sym_u8R_DQUOTE] = ACTIONS(2069), + [anon_sym_co_await] = ACTIONS(2071), + [anon_sym_new] = ACTIONS(2073), + [anon_sym_requires] = ACTIONS(2075), + [sym_this] = ACTIONS(2063), + }, + [1951] = { + [sym__expression] = STATE(4174), + [sym__expression_not_binary] = STATE(4369), + [sym_conditional_expression] = STATE(4369), + [sym_assignment_expression] = STATE(4369), + [sym_pointer_expression] = STATE(3541), + [sym_unary_expression] = STATE(4369), + [sym_binary_expression] = STATE(4369), + [sym_update_expression] = STATE(4369), + [sym_cast_expression] = STATE(4369), + [sym_sizeof_expression] = STATE(4369), + [sym_offsetof_expression] = STATE(4369), + [sym_generic_expression] = STATE(4369), + [sym_subscript_expression] = STATE(3541), + [sym_call_expression] = STATE(3541), + [sym_gnu_asm_expression] = STATE(4369), + [sym_field_expression] = STATE(3541), + [sym_compound_literal_expression] = STATE(4369), + [sym_parenthesized_expression] = STATE(3541), + [sym_char_literal] = STATE(4131), + [sym_concatenated_string] = STATE(4131), + [sym_string_literal] = STATE(3542), + [sym_null] = STATE(4369), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6872), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(4369), + [sym_raw_string_literal] = STATE(3542), + [sym_co_await_expression] = STATE(4369), + [sym_new_expression] = STATE(4369), + [sym_delete_expression] = STATE(4369), + [sym_requires_clause] = STATE(4369), + [sym_requires_expression] = STATE(4369), + [sym_lambda_expression] = STATE(4369), + [sym_lambda_capture_specifier] = STATE(5208), + [sym_fold_expression] = STATE(4369), + [sym_parameter_pack_expansion] = STATE(4369), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5289), + [sym_qualified_identifier] = STATE(3541), + [sym_qualified_type_identifier] = STATE(6872), + [sym_user_defined_literal] = STATE(4369), + [sym_identifier] = ACTIONS(3599), + [anon_sym_LPAREN2] = ACTIONS(2618), + [anon_sym_BANG] = ACTIONS(2620), + [anon_sym_TILDE] = ACTIONS(2620), + [anon_sym_DASH] = ACTIONS(2622), + [anon_sym_PLUS] = ACTIONS(2622), + [anon_sym_STAR] = ACTIONS(2624), + [anon_sym_AMP] = ACTIONS(2624), + [anon_sym_COLON_COLON] = ACTIONS(2626), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(2045), + [anon_sym_not] = ACTIONS(2622), + [anon_sym_compl] = ACTIONS(2622), + [anon_sym_DASH_DASH] = ACTIONS(2640), + [anon_sym_PLUS_PLUS] = ACTIONS(2640), + [anon_sym_sizeof] = ACTIONS(2642), + [anon_sym_offsetof] = ACTIONS(2644), + [anon_sym__Generic] = ACTIONS(2646), + [anon_sym_asm] = ACTIONS(2648), + [anon_sym___asm__] = ACTIONS(2648), + [sym_number_literal] = ACTIONS(2650), + [anon_sym_L_SQUOTE] = ACTIONS(2652), + [anon_sym_u_SQUOTE] = ACTIONS(2652), + [anon_sym_U_SQUOTE] = ACTIONS(2652), + [anon_sym_u8_SQUOTE] = ACTIONS(2652), + [anon_sym_SQUOTE] = ACTIONS(2652), + [anon_sym_L_DQUOTE] = ACTIONS(2654), + [anon_sym_u_DQUOTE] = ACTIONS(2654), + [anon_sym_U_DQUOTE] = ACTIONS(2654), + [anon_sym_u8_DQUOTE] = ACTIONS(2654), + [anon_sym_DQUOTE] = ACTIONS(2654), + [sym_true] = ACTIONS(2656), + [sym_false] = ACTIONS(2656), + [anon_sym_NULL] = ACTIONS(2658), + [anon_sym_nullptr] = ACTIONS(2658), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(2668), + [anon_sym_R_DQUOTE] = ACTIONS(2670), + [anon_sym_LR_DQUOTE] = ACTIONS(2670), + [anon_sym_uR_DQUOTE] = ACTIONS(2670), + [anon_sym_UR_DQUOTE] = ACTIONS(2670), + [anon_sym_u8R_DQUOTE] = ACTIONS(2670), + [anon_sym_co_await] = ACTIONS(2672), + [anon_sym_new] = ACTIONS(2674), + [anon_sym_requires] = ACTIONS(2676), + [sym_this] = ACTIONS(2656), + }, + [1952] = { + [sym__expression] = STATE(4507), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), + }, + [1953] = { + [sym__expression] = STATE(4380), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), + }, + [1954] = { + [sym__expression] = STATE(4265), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3509), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3509), + [sym_call_expression] = STATE(3509), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3509), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3509), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3509), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3613), + [anon_sym_LPAREN2] = ACTIONS(3615), + [anon_sym_BANG] = ACTIONS(3619), + [anon_sym_TILDE] = ACTIONS(3619), + [anon_sym_DASH] = ACTIONS(3617), + [anon_sym_PLUS] = ACTIONS(3617), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(3621), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(3617), + [anon_sym_compl] = ACTIONS(3617), + [anon_sym_DASH_DASH] = ACTIONS(3623), + [anon_sym_PLUS_PLUS] = ACTIONS(3623), + [anon_sym_sizeof] = ACTIONS(3625), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(3627), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(3629), + [anon_sym_new] = ACTIONS(3631), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), + }, + [1955] = { + [sym__expression] = STATE(4173), + [sym__expression_not_binary] = STATE(4369), + [sym_conditional_expression] = STATE(4369), + [sym_assignment_expression] = STATE(4369), + [sym_pointer_expression] = STATE(3541), + [sym_unary_expression] = STATE(4369), + [sym_binary_expression] = STATE(4369), + [sym_update_expression] = STATE(4369), + [sym_cast_expression] = STATE(4369), + [sym_sizeof_expression] = STATE(4369), + [sym_offsetof_expression] = STATE(4369), + [sym_generic_expression] = STATE(4369), + [sym_subscript_expression] = STATE(3541), + [sym_call_expression] = STATE(3541), + [sym_gnu_asm_expression] = STATE(4369), + [sym_field_expression] = STATE(3541), + [sym_compound_literal_expression] = STATE(4369), + [sym_parenthesized_expression] = STATE(3541), + [sym_char_literal] = STATE(4131), + [sym_concatenated_string] = STATE(4131), + [sym_string_literal] = STATE(3542), + [sym_null] = STATE(4369), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6872), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(4369), + [sym_raw_string_literal] = STATE(3542), + [sym_co_await_expression] = STATE(4369), + [sym_new_expression] = STATE(4369), + [sym_delete_expression] = STATE(4369), + [sym_requires_clause] = STATE(4369), + [sym_requires_expression] = STATE(4369), + [sym_lambda_expression] = STATE(4369), + [sym_lambda_capture_specifier] = STATE(5208), + [sym_fold_expression] = STATE(4369), + [sym_parameter_pack_expansion] = STATE(4369), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5289), + [sym_qualified_identifier] = STATE(3541), + [sym_qualified_type_identifier] = STATE(6872), + [sym_user_defined_literal] = STATE(4369), + [sym_identifier] = ACTIONS(3599), + [anon_sym_LPAREN2] = ACTIONS(2618), + [anon_sym_BANG] = ACTIONS(2620), + [anon_sym_TILDE] = ACTIONS(2620), + [anon_sym_DASH] = ACTIONS(2622), + [anon_sym_PLUS] = ACTIONS(2622), + [anon_sym_STAR] = ACTIONS(2624), + [anon_sym_AMP] = ACTIONS(2624), + [anon_sym_COLON_COLON] = ACTIONS(2626), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(2045), + [anon_sym_not] = ACTIONS(2622), + [anon_sym_compl] = ACTIONS(2622), + [anon_sym_DASH_DASH] = ACTIONS(2640), + [anon_sym_PLUS_PLUS] = ACTIONS(2640), + [anon_sym_sizeof] = ACTIONS(2642), + [anon_sym_offsetof] = ACTIONS(2644), + [anon_sym__Generic] = ACTIONS(2646), + [anon_sym_asm] = ACTIONS(2648), + [anon_sym___asm__] = ACTIONS(2648), + [sym_number_literal] = ACTIONS(2650), + [anon_sym_L_SQUOTE] = ACTIONS(2652), + [anon_sym_u_SQUOTE] = ACTIONS(2652), + [anon_sym_U_SQUOTE] = ACTIONS(2652), + [anon_sym_u8_SQUOTE] = ACTIONS(2652), + [anon_sym_SQUOTE] = ACTIONS(2652), + [anon_sym_L_DQUOTE] = ACTIONS(2654), + [anon_sym_u_DQUOTE] = ACTIONS(2654), + [anon_sym_U_DQUOTE] = ACTIONS(2654), + [anon_sym_u8_DQUOTE] = ACTIONS(2654), + [anon_sym_DQUOTE] = ACTIONS(2654), + [sym_true] = ACTIONS(2656), + [sym_false] = ACTIONS(2656), + [anon_sym_NULL] = ACTIONS(2658), + [anon_sym_nullptr] = ACTIONS(2658), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(2668), + [anon_sym_R_DQUOTE] = ACTIONS(2670), + [anon_sym_LR_DQUOTE] = ACTIONS(2670), + [anon_sym_uR_DQUOTE] = ACTIONS(2670), + [anon_sym_UR_DQUOTE] = ACTIONS(2670), + [anon_sym_u8R_DQUOTE] = ACTIONS(2670), + [anon_sym_co_await] = ACTIONS(2672), + [anon_sym_new] = ACTIONS(2674), + [anon_sym_requires] = ACTIONS(2676), + [sym_this] = ACTIONS(2656), + }, + [1956] = { + [sym__expression] = STATE(4432), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), + }, + [1957] = { + [sym__expression] = STATE(4171), + [sym__expression_not_binary] = STATE(4369), + [sym_conditional_expression] = STATE(4369), + [sym_assignment_expression] = STATE(4369), + [sym_pointer_expression] = STATE(3541), + [sym_unary_expression] = STATE(4369), + [sym_binary_expression] = STATE(4369), + [sym_update_expression] = STATE(4369), + [sym_cast_expression] = STATE(4369), + [sym_sizeof_expression] = STATE(4369), + [sym_offsetof_expression] = STATE(4369), + [sym_generic_expression] = STATE(4369), + [sym_subscript_expression] = STATE(3541), + [sym_call_expression] = STATE(3541), + [sym_gnu_asm_expression] = STATE(4369), + [sym_field_expression] = STATE(3541), + [sym_compound_literal_expression] = STATE(4369), + [sym_parenthesized_expression] = STATE(3541), + [sym_char_literal] = STATE(4131), + [sym_concatenated_string] = STATE(4131), + [sym_string_literal] = STATE(3542), + [sym_null] = STATE(4369), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6872), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(4369), + [sym_raw_string_literal] = STATE(3542), + [sym_co_await_expression] = STATE(4369), + [sym_new_expression] = STATE(4369), + [sym_delete_expression] = STATE(4369), + [sym_requires_clause] = STATE(4369), + [sym_requires_expression] = STATE(4369), + [sym_lambda_expression] = STATE(4369), + [sym_lambda_capture_specifier] = STATE(5208), + [sym_fold_expression] = STATE(4369), + [sym_parameter_pack_expansion] = STATE(4369), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5289), + [sym_qualified_identifier] = STATE(3541), + [sym_qualified_type_identifier] = STATE(6872), + [sym_user_defined_literal] = STATE(4369), + [sym_identifier] = ACTIONS(3599), + [anon_sym_LPAREN2] = ACTIONS(2618), + [anon_sym_BANG] = ACTIONS(2620), + [anon_sym_TILDE] = ACTIONS(2620), + [anon_sym_DASH] = ACTIONS(2622), + [anon_sym_PLUS] = ACTIONS(2622), + [anon_sym_STAR] = ACTIONS(2624), + [anon_sym_AMP] = ACTIONS(2624), + [anon_sym_COLON_COLON] = ACTIONS(2626), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(2045), + [anon_sym_not] = ACTIONS(2622), + [anon_sym_compl] = ACTIONS(2622), + [anon_sym_DASH_DASH] = ACTIONS(2640), + [anon_sym_PLUS_PLUS] = ACTIONS(2640), + [anon_sym_sizeof] = ACTIONS(2642), + [anon_sym_offsetof] = ACTIONS(2644), + [anon_sym__Generic] = ACTIONS(2646), + [anon_sym_asm] = ACTIONS(2648), + [anon_sym___asm__] = ACTIONS(2648), + [sym_number_literal] = ACTIONS(2650), + [anon_sym_L_SQUOTE] = ACTIONS(2652), + [anon_sym_u_SQUOTE] = ACTIONS(2652), + [anon_sym_U_SQUOTE] = ACTIONS(2652), + [anon_sym_u8_SQUOTE] = ACTIONS(2652), + [anon_sym_SQUOTE] = ACTIONS(2652), + [anon_sym_L_DQUOTE] = ACTIONS(2654), + [anon_sym_u_DQUOTE] = ACTIONS(2654), + [anon_sym_U_DQUOTE] = ACTIONS(2654), + [anon_sym_u8_DQUOTE] = ACTIONS(2654), + [anon_sym_DQUOTE] = ACTIONS(2654), + [sym_true] = ACTIONS(2656), + [sym_false] = ACTIONS(2656), + [anon_sym_NULL] = ACTIONS(2658), + [anon_sym_nullptr] = ACTIONS(2658), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(2668), + [anon_sym_R_DQUOTE] = ACTIONS(2670), + [anon_sym_LR_DQUOTE] = ACTIONS(2670), + [anon_sym_uR_DQUOTE] = ACTIONS(2670), + [anon_sym_UR_DQUOTE] = ACTIONS(2670), + [anon_sym_u8R_DQUOTE] = ACTIONS(2670), + [anon_sym_co_await] = ACTIONS(2672), + [anon_sym_new] = ACTIONS(2674), + [anon_sym_requires] = ACTIONS(2676), + [sym_this] = ACTIONS(2656), + }, + [1958] = { + [sym__expression] = STATE(4004), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), + }, + [1959] = { + [sym__expression] = STATE(4442), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), + }, + [1960] = { + [sym__expression] = STATE(3130), + [sym__expression_not_binary] = STATE(3318), + [sym_conditional_expression] = STATE(3318), + [sym_assignment_expression] = STATE(3318), + [sym_pointer_expression] = STATE(3318), + [sym_unary_expression] = STATE(3318), + [sym_binary_expression] = STATE(3318), + [sym_update_expression] = STATE(3318), + [sym_cast_expression] = STATE(3318), + [sym_sizeof_expression] = STATE(3318), + [sym_offsetof_expression] = STATE(3318), + [sym_generic_expression] = STATE(3318), + [sym_subscript_expression] = STATE(3318), + [sym_call_expression] = STATE(3318), + [sym_gnu_asm_expression] = STATE(3318), + [sym_field_expression] = STATE(3318), + [sym_compound_literal_expression] = STATE(3318), + [sym_parenthesized_expression] = STATE(3318), + [sym_char_literal] = STATE(3076), + [sym_concatenated_string] = STATE(3076), + [sym_string_literal] = STATE(2202), + [sym_null] = STATE(3318), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6739), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3318), + [sym_raw_string_literal] = STATE(2202), + [sym_co_await_expression] = STATE(3318), + [sym_new_expression] = STATE(3318), + [sym_delete_expression] = STATE(3318), + [sym_requires_clause] = STATE(3318), + [sym_requires_expression] = STATE(3318), + [sym_lambda_expression] = STATE(3318), + [sym_lambda_capture_specifier] = STATE(5187), + [sym_fold_expression] = STATE(3318), + [sym_parameter_pack_expansion] = STATE(3318), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5232), + [sym_qualified_identifier] = STATE(3318), + [sym_qualified_type_identifier] = STATE(6739), + [sym_user_defined_literal] = STATE(3318), + [sym_identifier] = ACTIONS(1985), + [anon_sym_LPAREN2] = ACTIONS(1987), + [anon_sym_BANG] = ACTIONS(1991), + [anon_sym_TILDE] = ACTIONS(1991), + [anon_sym_DASH] = ACTIONS(1989), + [anon_sym_PLUS] = ACTIONS(1989), + [anon_sym_STAR] = ACTIONS(1847), + [anon_sym_AMP] = ACTIONS(1847), + [anon_sym_COLON_COLON] = ACTIONS(1995), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1999), + [anon_sym_not] = ACTIONS(1989), + [anon_sym_compl] = ACTIONS(1989), + [anon_sym_DASH_DASH] = ACTIONS(2001), + [anon_sym_PLUS_PLUS] = ACTIONS(2001), + [anon_sym_sizeof] = ACTIONS(2003), + [anon_sym_offsetof] = ACTIONS(2005), + [anon_sym__Generic] = ACTIONS(2007), + [anon_sym_asm] = ACTIONS(2009), + [anon_sym___asm__] = ACTIONS(2009), + [sym_number_literal] = ACTIONS(2011), + [anon_sym_L_SQUOTE] = ACTIONS(2013), + [anon_sym_u_SQUOTE] = ACTIONS(2013), + [anon_sym_U_SQUOTE] = ACTIONS(2013), + [anon_sym_u8_SQUOTE] = ACTIONS(2013), + [anon_sym_SQUOTE] = ACTIONS(2013), + [anon_sym_L_DQUOTE] = ACTIONS(2015), + [anon_sym_u_DQUOTE] = ACTIONS(2015), + [anon_sym_U_DQUOTE] = ACTIONS(2015), + [anon_sym_u8_DQUOTE] = ACTIONS(2015), + [anon_sym_DQUOTE] = ACTIONS(2015), + [sym_true] = ACTIONS(2017), + [sym_false] = ACTIONS(2017), + [anon_sym_NULL] = ACTIONS(2019), + [anon_sym_nullptr] = ACTIONS(2019), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(2021), + [anon_sym_R_DQUOTE] = ACTIONS(2023), + [anon_sym_LR_DQUOTE] = ACTIONS(2023), + [anon_sym_uR_DQUOTE] = ACTIONS(2023), + [anon_sym_UR_DQUOTE] = ACTIONS(2023), + [anon_sym_u8R_DQUOTE] = ACTIONS(2023), + [anon_sym_co_await] = ACTIONS(2025), + [anon_sym_new] = ACTIONS(2027), + [anon_sym_requires] = ACTIONS(2029), + [sym_this] = ACTIONS(2017), + }, + [1961] = { + [sym__expression] = STATE(4346), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), + }, + [1962] = { + [sym__expression] = STATE(4331), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), + }, + [1963] = { + [sym__expression] = STATE(3122), + [sym__expression_not_binary] = STATE(3318), + [sym_conditional_expression] = STATE(3318), + [sym_assignment_expression] = STATE(3318), + [sym_pointer_expression] = STATE(3318), + [sym_unary_expression] = STATE(3318), + [sym_binary_expression] = STATE(3318), + [sym_update_expression] = STATE(3318), + [sym_cast_expression] = STATE(3318), + [sym_sizeof_expression] = STATE(3318), + [sym_offsetof_expression] = STATE(3318), + [sym_generic_expression] = STATE(3318), + [sym_subscript_expression] = STATE(3318), + [sym_call_expression] = STATE(3318), + [sym_gnu_asm_expression] = STATE(3318), + [sym_field_expression] = STATE(3318), + [sym_compound_literal_expression] = STATE(3318), + [sym_parenthesized_expression] = STATE(3318), + [sym_char_literal] = STATE(3076), + [sym_concatenated_string] = STATE(3076), + [sym_string_literal] = STATE(2202), + [sym_null] = STATE(3318), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6739), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3318), + [sym_raw_string_literal] = STATE(2202), + [sym_co_await_expression] = STATE(3318), + [sym_new_expression] = STATE(3318), + [sym_delete_expression] = STATE(3318), + [sym_requires_clause] = STATE(3318), + [sym_requires_expression] = STATE(3318), + [sym_lambda_expression] = STATE(3318), + [sym_lambda_capture_specifier] = STATE(5187), + [sym_fold_expression] = STATE(3318), + [sym_parameter_pack_expansion] = STATE(3318), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5232), + [sym_qualified_identifier] = STATE(3318), + [sym_qualified_type_identifier] = STATE(6739), + [sym_user_defined_literal] = STATE(3318), + [sym_identifier] = ACTIONS(1985), + [anon_sym_LPAREN2] = ACTIONS(1987), + [anon_sym_BANG] = ACTIONS(1991), + [anon_sym_TILDE] = ACTIONS(1991), + [anon_sym_DASH] = ACTIONS(1989), + [anon_sym_PLUS] = ACTIONS(1989), + [anon_sym_STAR] = ACTIONS(1847), + [anon_sym_AMP] = ACTIONS(1847), + [anon_sym_COLON_COLON] = ACTIONS(1995), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1999), + [anon_sym_not] = ACTIONS(1989), + [anon_sym_compl] = ACTIONS(1989), + [anon_sym_DASH_DASH] = ACTIONS(2001), + [anon_sym_PLUS_PLUS] = ACTIONS(2001), + [anon_sym_sizeof] = ACTIONS(2003), + [anon_sym_offsetof] = ACTIONS(2005), + [anon_sym__Generic] = ACTIONS(2007), + [anon_sym_asm] = ACTIONS(2009), + [anon_sym___asm__] = ACTIONS(2009), + [sym_number_literal] = ACTIONS(2011), + [anon_sym_L_SQUOTE] = ACTIONS(2013), + [anon_sym_u_SQUOTE] = ACTIONS(2013), + [anon_sym_U_SQUOTE] = ACTIONS(2013), + [anon_sym_u8_SQUOTE] = ACTIONS(2013), + [anon_sym_SQUOTE] = ACTIONS(2013), + [anon_sym_L_DQUOTE] = ACTIONS(2015), + [anon_sym_u_DQUOTE] = ACTIONS(2015), + [anon_sym_U_DQUOTE] = ACTIONS(2015), + [anon_sym_u8_DQUOTE] = ACTIONS(2015), + [anon_sym_DQUOTE] = ACTIONS(2015), + [sym_true] = ACTIONS(2017), + [sym_false] = ACTIONS(2017), + [anon_sym_NULL] = ACTIONS(2019), + [anon_sym_nullptr] = ACTIONS(2019), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(2021), + [anon_sym_R_DQUOTE] = ACTIONS(2023), + [anon_sym_LR_DQUOTE] = ACTIONS(2023), + [anon_sym_uR_DQUOTE] = ACTIONS(2023), + [anon_sym_UR_DQUOTE] = ACTIONS(2023), + [anon_sym_u8R_DQUOTE] = ACTIONS(2023), + [anon_sym_co_await] = ACTIONS(2025), + [anon_sym_new] = ACTIONS(2027), + [anon_sym_requires] = ACTIONS(2029), + [sym_this] = ACTIONS(2017), + }, + [1964] = { + [sym__expression] = STATE(4371), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3509), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3509), + [sym_call_expression] = STATE(3509), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3509), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3509), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3509), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3613), + [anon_sym_LPAREN2] = ACTIONS(3615), + [anon_sym_BANG] = ACTIONS(3619), + [anon_sym_TILDE] = ACTIONS(3619), + [anon_sym_DASH] = ACTIONS(3617), + [anon_sym_PLUS] = ACTIONS(3617), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(3621), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(3617), + [anon_sym_compl] = ACTIONS(3617), + [anon_sym_DASH_DASH] = ACTIONS(3623), + [anon_sym_PLUS_PLUS] = ACTIONS(3623), + [anon_sym_sizeof] = ACTIONS(3625), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(3627), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(3629), + [anon_sym_new] = ACTIONS(3631), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), + }, + [1965] = { + [sym__expression] = STATE(4319), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), + }, + [1966] = { + [sym__expression] = STATE(3930), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), + }, + [1967] = { + [sym__expression] = STATE(4418), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), + }, + [1968] = { + [sym__expression] = STATE(4425), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), + }, + [1969] = { + [sym__expression] = STATE(4402), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), + }, + [1970] = { + [sym__expression] = STATE(4167), + [sym__expression_not_binary] = STATE(4369), + [sym_conditional_expression] = STATE(4369), + [sym_assignment_expression] = STATE(4369), + [sym_pointer_expression] = STATE(3541), + [sym_unary_expression] = STATE(4369), + [sym_binary_expression] = STATE(4369), + [sym_update_expression] = STATE(4369), + [sym_cast_expression] = STATE(4369), + [sym_sizeof_expression] = STATE(4369), + [sym_offsetof_expression] = STATE(4369), + [sym_generic_expression] = STATE(4369), + [sym_subscript_expression] = STATE(3541), + [sym_call_expression] = STATE(3541), + [sym_gnu_asm_expression] = STATE(4369), + [sym_field_expression] = STATE(3541), + [sym_compound_literal_expression] = STATE(4369), + [sym_parenthesized_expression] = STATE(3541), + [sym_char_literal] = STATE(4131), + [sym_concatenated_string] = STATE(4131), + [sym_string_literal] = STATE(3542), + [sym_null] = STATE(4369), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6872), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(4369), + [sym_raw_string_literal] = STATE(3542), + [sym_co_await_expression] = STATE(4369), + [sym_new_expression] = STATE(4369), + [sym_delete_expression] = STATE(4369), + [sym_requires_clause] = STATE(4369), + [sym_requires_expression] = STATE(4369), + [sym_lambda_expression] = STATE(4369), + [sym_lambda_capture_specifier] = STATE(5208), + [sym_fold_expression] = STATE(4369), + [sym_parameter_pack_expansion] = STATE(4369), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5289), + [sym_qualified_identifier] = STATE(3541), + [sym_qualified_type_identifier] = STATE(6872), + [sym_user_defined_literal] = STATE(4369), + [sym_identifier] = ACTIONS(3599), + [anon_sym_LPAREN2] = ACTIONS(2618), + [anon_sym_BANG] = ACTIONS(2620), + [anon_sym_TILDE] = ACTIONS(2620), + [anon_sym_DASH] = ACTIONS(2622), + [anon_sym_PLUS] = ACTIONS(2622), + [anon_sym_STAR] = ACTIONS(2624), + [anon_sym_AMP] = ACTIONS(2624), + [anon_sym_COLON_COLON] = ACTIONS(2626), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(2045), + [anon_sym_not] = ACTIONS(2622), + [anon_sym_compl] = ACTIONS(2622), + [anon_sym_DASH_DASH] = ACTIONS(2640), + [anon_sym_PLUS_PLUS] = ACTIONS(2640), + [anon_sym_sizeof] = ACTIONS(2642), + [anon_sym_offsetof] = ACTIONS(2644), + [anon_sym__Generic] = ACTIONS(2646), + [anon_sym_asm] = ACTIONS(2648), + [anon_sym___asm__] = ACTIONS(2648), + [sym_number_literal] = ACTIONS(2650), + [anon_sym_L_SQUOTE] = ACTIONS(2652), + [anon_sym_u_SQUOTE] = ACTIONS(2652), + [anon_sym_U_SQUOTE] = ACTIONS(2652), + [anon_sym_u8_SQUOTE] = ACTIONS(2652), + [anon_sym_SQUOTE] = ACTIONS(2652), + [anon_sym_L_DQUOTE] = ACTIONS(2654), + [anon_sym_u_DQUOTE] = ACTIONS(2654), + [anon_sym_U_DQUOTE] = ACTIONS(2654), + [anon_sym_u8_DQUOTE] = ACTIONS(2654), + [anon_sym_DQUOTE] = ACTIONS(2654), + [sym_true] = ACTIONS(2656), + [sym_false] = ACTIONS(2656), + [anon_sym_NULL] = ACTIONS(2658), + [anon_sym_nullptr] = ACTIONS(2658), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(2668), + [anon_sym_R_DQUOTE] = ACTIONS(2670), + [anon_sym_LR_DQUOTE] = ACTIONS(2670), + [anon_sym_uR_DQUOTE] = ACTIONS(2670), + [anon_sym_UR_DQUOTE] = ACTIONS(2670), + [anon_sym_u8R_DQUOTE] = ACTIONS(2670), + [anon_sym_co_await] = ACTIONS(2672), + [anon_sym_new] = ACTIONS(2674), + [anon_sym_requires] = ACTIONS(2676), + [sym_this] = ACTIONS(2656), + }, + [1971] = { + [sym__expression] = STATE(3467), + [sym__expression_not_binary] = STATE(3021), + [sym_conditional_expression] = STATE(3021), + [sym_assignment_expression] = STATE(3021), + [sym_pointer_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_cast_expression] = STATE(3021), + [sym_sizeof_expression] = STATE(3021), + [sym_offsetof_expression] = STATE(3021), + [sym_generic_expression] = STATE(3021), + [sym_subscript_expression] = STATE(3021), + [sym_call_expression] = STATE(3021), + [sym_gnu_asm_expression] = STATE(3021), + [sym_field_expression] = STATE(3021), + [sym_compound_literal_expression] = STATE(3021), + [sym_parenthesized_expression] = STATE(3021), + [sym_char_literal] = STATE(2901), + [sym_concatenated_string] = STATE(2901), + [sym_string_literal] = STATE(2173), + [sym_null] = STATE(3021), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6616), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3021), + [sym_raw_string_literal] = STATE(2173), + [sym_co_await_expression] = STATE(3021), + [sym_new_expression] = STATE(3021), + [sym_delete_expression] = STATE(3021), + [sym_requires_clause] = STATE(3021), + [sym_requires_expression] = STATE(3021), + [sym_lambda_expression] = STATE(3021), + [sym_lambda_capture_specifier] = STATE(5188), + [sym_fold_expression] = STATE(3021), + [sym_parameter_pack_expansion] = STATE(3021), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3021), + [sym_qualified_type_identifier] = STATE(6616), + [sym_user_defined_literal] = STATE(3021), + [sym_identifier] = ACTIONS(1933), + [anon_sym_LPAREN2] = ACTIONS(2077), + [anon_sym_BANG] = ACTIONS(2081), + [anon_sym_TILDE] = ACTIONS(2081), + [anon_sym_DASH] = ACTIONS(2079), + [anon_sym_PLUS] = ACTIONS(2079), + [anon_sym_STAR] = ACTIONS(3641), + [anon_sym_AMP] = ACTIONS(3641), + [anon_sym_COLON_COLON] = ACTIONS(2085), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(2079), + [anon_sym_compl] = ACTIONS(2079), + [anon_sym_DASH_DASH] = ACTIONS(2087), + [anon_sym_PLUS_PLUS] = ACTIONS(2087), + [anon_sym_sizeof] = ACTIONS(2089), + [anon_sym_offsetof] = ACTIONS(1957), + [anon_sym__Generic] = ACTIONS(1959), + [anon_sym_asm] = ACTIONS(1961), + [anon_sym___asm__] = ACTIONS(1961), + [sym_number_literal] = ACTIONS(1963), + [anon_sym_L_SQUOTE] = ACTIONS(1965), + [anon_sym_u_SQUOTE] = ACTIONS(1965), + [anon_sym_U_SQUOTE] = ACTIONS(1965), + [anon_sym_u8_SQUOTE] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_L_DQUOTE] = ACTIONS(1967), + [anon_sym_u_DQUOTE] = ACTIONS(1967), + [anon_sym_U_DQUOTE] = ACTIONS(1967), + [anon_sym_u8_DQUOTE] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(1967), + [sym_true] = ACTIONS(1969), + [sym_false] = ACTIONS(1969), + [anon_sym_NULL] = ACTIONS(1971), + [anon_sym_nullptr] = ACTIONS(1971), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(2091), + [anon_sym_R_DQUOTE] = ACTIONS(1977), + [anon_sym_LR_DQUOTE] = ACTIONS(1977), + [anon_sym_uR_DQUOTE] = ACTIONS(1977), + [anon_sym_UR_DQUOTE] = ACTIONS(1977), + [anon_sym_u8R_DQUOTE] = ACTIONS(1977), + [anon_sym_co_await] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(1981), + [anon_sym_requires] = ACTIONS(1983), + [sym_this] = ACTIONS(1969), + }, + [1972] = { + [sym__expression] = STATE(4159), + [sym__expression_not_binary] = STATE(4369), + [sym_conditional_expression] = STATE(4369), + [sym_assignment_expression] = STATE(4369), + [sym_pointer_expression] = STATE(3541), + [sym_unary_expression] = STATE(4369), + [sym_binary_expression] = STATE(4369), + [sym_update_expression] = STATE(4369), + [sym_cast_expression] = STATE(4369), + [sym_sizeof_expression] = STATE(4369), + [sym_offsetof_expression] = STATE(4369), + [sym_generic_expression] = STATE(4369), + [sym_subscript_expression] = STATE(3541), + [sym_call_expression] = STATE(3541), + [sym_gnu_asm_expression] = STATE(4369), + [sym_field_expression] = STATE(3541), + [sym_compound_literal_expression] = STATE(4369), + [sym_parenthesized_expression] = STATE(3541), + [sym_char_literal] = STATE(4131), + [sym_concatenated_string] = STATE(4131), + [sym_string_literal] = STATE(3542), + [sym_null] = STATE(4369), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6872), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(4369), + [sym_raw_string_literal] = STATE(3542), + [sym_co_await_expression] = STATE(4369), + [sym_new_expression] = STATE(4369), + [sym_delete_expression] = STATE(4369), + [sym_requires_clause] = STATE(4369), + [sym_requires_expression] = STATE(4369), + [sym_lambda_expression] = STATE(4369), + [sym_lambda_capture_specifier] = STATE(5208), + [sym_fold_expression] = STATE(4369), + [sym_parameter_pack_expansion] = STATE(4369), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5289), + [sym_qualified_identifier] = STATE(3541), + [sym_qualified_type_identifier] = STATE(6872), + [sym_user_defined_literal] = STATE(4369), + [sym_identifier] = ACTIONS(3599), + [anon_sym_LPAREN2] = ACTIONS(2618), + [anon_sym_BANG] = ACTIONS(2620), + [anon_sym_TILDE] = ACTIONS(2620), + [anon_sym_DASH] = ACTIONS(2622), + [anon_sym_PLUS] = ACTIONS(2622), + [anon_sym_STAR] = ACTIONS(2624), + [anon_sym_AMP] = ACTIONS(2624), + [anon_sym_COLON_COLON] = ACTIONS(2626), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(2045), + [anon_sym_not] = ACTIONS(2622), + [anon_sym_compl] = ACTIONS(2622), + [anon_sym_DASH_DASH] = ACTIONS(2640), + [anon_sym_PLUS_PLUS] = ACTIONS(2640), + [anon_sym_sizeof] = ACTIONS(2642), + [anon_sym_offsetof] = ACTIONS(2644), + [anon_sym__Generic] = ACTIONS(2646), + [anon_sym_asm] = ACTIONS(2648), + [anon_sym___asm__] = ACTIONS(2648), + [sym_number_literal] = ACTIONS(2650), + [anon_sym_L_SQUOTE] = ACTIONS(2652), + [anon_sym_u_SQUOTE] = ACTIONS(2652), + [anon_sym_U_SQUOTE] = ACTIONS(2652), + [anon_sym_u8_SQUOTE] = ACTIONS(2652), + [anon_sym_SQUOTE] = ACTIONS(2652), + [anon_sym_L_DQUOTE] = ACTIONS(2654), + [anon_sym_u_DQUOTE] = ACTIONS(2654), + [anon_sym_U_DQUOTE] = ACTIONS(2654), + [anon_sym_u8_DQUOTE] = ACTIONS(2654), + [anon_sym_DQUOTE] = ACTIONS(2654), + [sym_true] = ACTIONS(2656), + [sym_false] = ACTIONS(2656), + [anon_sym_NULL] = ACTIONS(2658), + [anon_sym_nullptr] = ACTIONS(2658), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(2668), + [anon_sym_R_DQUOTE] = ACTIONS(2670), + [anon_sym_LR_DQUOTE] = ACTIONS(2670), + [anon_sym_uR_DQUOTE] = ACTIONS(2670), + [anon_sym_UR_DQUOTE] = ACTIONS(2670), + [anon_sym_u8R_DQUOTE] = ACTIONS(2670), + [anon_sym_co_await] = ACTIONS(2672), + [anon_sym_new] = ACTIONS(2674), + [anon_sym_requires] = ACTIONS(2676), + [sym_this] = ACTIONS(2656), + }, + [1973] = { + [sym__expression] = STATE(3373), + [sym__expression_not_binary] = STATE(3513), + [sym_conditional_expression] = STATE(3513), + [sym_assignment_expression] = STATE(3513), + [sym_pointer_expression] = STATE(3513), + [sym_unary_expression] = STATE(3513), + [sym_binary_expression] = STATE(3513), + [sym_update_expression] = STATE(3513), + [sym_cast_expression] = STATE(3513), + [sym_sizeof_expression] = STATE(3513), + [sym_offsetof_expression] = STATE(3513), + [sym_generic_expression] = STATE(3513), + [sym_subscript_expression] = STATE(3513), + [sym_call_expression] = STATE(3513), + [sym_gnu_asm_expression] = STATE(3513), + [sym_field_expression] = STATE(3513), + [sym_compound_literal_expression] = STATE(3513), + [sym_parenthesized_expression] = STATE(3513), + [sym_char_literal] = STATE(3385), + [sym_concatenated_string] = STATE(3385), + [sym_string_literal] = STATE(2225), + [sym_null] = STATE(3513), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6957), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3513), + [sym_raw_string_literal] = STATE(2225), + [sym_co_await_expression] = STATE(3513), + [sym_new_expression] = STATE(3513), + [sym_delete_expression] = STATE(3513), + [sym_requires_clause] = STATE(3513), + [sym_requires_expression] = STATE(3513), + [sym_lambda_expression] = STATE(3513), + [sym_lambda_capture_specifier] = STATE(5162), + [sym_fold_expression] = STATE(3513), + [sym_parameter_pack_expansion] = STATE(3513), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5289), + [sym_qualified_identifier] = STATE(3513), + [sym_qualified_type_identifier] = STATE(6957), + [sym_user_defined_literal] = STATE(3513), + [sym_identifier] = ACTIONS(2031), + [anon_sym_LPAREN2] = ACTIONS(2033), + [anon_sym_BANG] = ACTIONS(2037), + [anon_sym_TILDE] = ACTIONS(2037), + [anon_sym_DASH] = ACTIONS(2035), + [anon_sym_PLUS] = ACTIONS(2035), + [anon_sym_STAR] = ACTIONS(2624), + [anon_sym_AMP] = ACTIONS(2624), + [anon_sym_COLON_COLON] = ACTIONS(2041), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(2045), + [anon_sym_not] = ACTIONS(2035), + [anon_sym_compl] = ACTIONS(2035), + [anon_sym_DASH_DASH] = ACTIONS(2047), + [anon_sym_PLUS_PLUS] = ACTIONS(2047), + [anon_sym_sizeof] = ACTIONS(2049), + [anon_sym_offsetof] = ACTIONS(2051), + [anon_sym__Generic] = ACTIONS(2053), + [anon_sym_asm] = ACTIONS(2055), + [anon_sym___asm__] = ACTIONS(2055), + [sym_number_literal] = ACTIONS(2057), + [anon_sym_L_SQUOTE] = ACTIONS(2059), + [anon_sym_u_SQUOTE] = ACTIONS(2059), + [anon_sym_U_SQUOTE] = ACTIONS(2059), + [anon_sym_u8_SQUOTE] = ACTIONS(2059), + [anon_sym_SQUOTE] = ACTIONS(2059), + [anon_sym_L_DQUOTE] = ACTIONS(2061), + [anon_sym_u_DQUOTE] = ACTIONS(2061), + [anon_sym_U_DQUOTE] = ACTIONS(2061), + [anon_sym_u8_DQUOTE] = ACTIONS(2061), + [anon_sym_DQUOTE] = ACTIONS(2061), + [sym_true] = ACTIONS(2063), + [sym_false] = ACTIONS(2063), + [anon_sym_NULL] = ACTIONS(2065), + [anon_sym_nullptr] = ACTIONS(2065), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(2067), + [anon_sym_R_DQUOTE] = ACTIONS(2069), + [anon_sym_LR_DQUOTE] = ACTIONS(2069), + [anon_sym_uR_DQUOTE] = ACTIONS(2069), + [anon_sym_UR_DQUOTE] = ACTIONS(2069), + [anon_sym_u8R_DQUOTE] = ACTIONS(2069), + [anon_sym_co_await] = ACTIONS(2071), + [anon_sym_new] = ACTIONS(2073), + [anon_sym_requires] = ACTIONS(2075), + [sym_this] = ACTIONS(2063), + }, + [1974] = { + [sym__expression] = STATE(4471), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), + }, + [1975] = { + [sym__expression] = STATE(3480), + [sym__expression_not_binary] = STATE(3021), + [sym_conditional_expression] = STATE(3021), + [sym_assignment_expression] = STATE(3021), + [sym_pointer_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_cast_expression] = STATE(3021), + [sym_sizeof_expression] = STATE(3021), + [sym_offsetof_expression] = STATE(3021), + [sym_generic_expression] = STATE(3021), + [sym_subscript_expression] = STATE(3021), + [sym_call_expression] = STATE(3021), + [sym_gnu_asm_expression] = STATE(3021), + [sym_field_expression] = STATE(3021), + [sym_compound_literal_expression] = STATE(3021), + [sym_parenthesized_expression] = STATE(3021), + [sym_char_literal] = STATE(2901), + [sym_concatenated_string] = STATE(2901), + [sym_string_literal] = STATE(2173), + [sym_null] = STATE(3021), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6616), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3021), + [sym_raw_string_literal] = STATE(2173), + [sym_co_await_expression] = STATE(3021), + [sym_new_expression] = STATE(3021), + [sym_delete_expression] = STATE(3021), + [sym_requires_clause] = STATE(3021), + [sym_requires_expression] = STATE(3021), + [sym_lambda_expression] = STATE(3021), + [sym_lambda_capture_specifier] = STATE(5188), + [sym_fold_expression] = STATE(3021), + [sym_parameter_pack_expansion] = STATE(3021), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3021), + [sym_qualified_type_identifier] = STATE(6616), + [sym_user_defined_literal] = STATE(3021), + [sym_identifier] = ACTIONS(1933), + [anon_sym_LPAREN2] = ACTIONS(2077), + [anon_sym_BANG] = ACTIONS(2081), + [anon_sym_TILDE] = ACTIONS(2081), + [anon_sym_DASH] = ACTIONS(2079), + [anon_sym_PLUS] = ACTIONS(2079), + [anon_sym_STAR] = ACTIONS(3641), + [anon_sym_AMP] = ACTIONS(3641), + [anon_sym_COLON_COLON] = ACTIONS(2085), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(2079), + [anon_sym_compl] = ACTIONS(2079), + [anon_sym_DASH_DASH] = ACTIONS(2087), + [anon_sym_PLUS_PLUS] = ACTIONS(2087), + [anon_sym_sizeof] = ACTIONS(2089), + [anon_sym_offsetof] = ACTIONS(1957), + [anon_sym__Generic] = ACTIONS(1959), + [anon_sym_asm] = ACTIONS(1961), + [anon_sym___asm__] = ACTIONS(1961), + [sym_number_literal] = ACTIONS(1963), + [anon_sym_L_SQUOTE] = ACTIONS(1965), + [anon_sym_u_SQUOTE] = ACTIONS(1965), + [anon_sym_U_SQUOTE] = ACTIONS(1965), + [anon_sym_u8_SQUOTE] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_L_DQUOTE] = ACTIONS(1967), + [anon_sym_u_DQUOTE] = ACTIONS(1967), + [anon_sym_U_DQUOTE] = ACTIONS(1967), + [anon_sym_u8_DQUOTE] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(1967), + [sym_true] = ACTIONS(1969), + [sym_false] = ACTIONS(1969), + [anon_sym_NULL] = ACTIONS(1971), + [anon_sym_nullptr] = ACTIONS(1971), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(2091), + [anon_sym_R_DQUOTE] = ACTIONS(1977), + [anon_sym_LR_DQUOTE] = ACTIONS(1977), + [anon_sym_uR_DQUOTE] = ACTIONS(1977), + [anon_sym_UR_DQUOTE] = ACTIONS(1977), + [anon_sym_u8R_DQUOTE] = ACTIONS(1977), + [anon_sym_co_await] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(1981), + [anon_sym_requires] = ACTIONS(1983), + [sym_this] = ACTIONS(1969), + }, + [1976] = { + [sym__expression] = STATE(4403), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3509), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3509), + [sym_call_expression] = STATE(3509), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3509), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3509), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3509), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3613), + [anon_sym_LPAREN2] = ACTIONS(3615), + [anon_sym_BANG] = ACTIONS(3619), + [anon_sym_TILDE] = ACTIONS(3619), + [anon_sym_DASH] = ACTIONS(3617), + [anon_sym_PLUS] = ACTIONS(3617), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(3621), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(3617), + [anon_sym_compl] = ACTIONS(3617), + [anon_sym_DASH_DASH] = ACTIONS(3623), + [anon_sym_PLUS_PLUS] = ACTIONS(3623), + [anon_sym_sizeof] = ACTIONS(3625), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(3627), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(3629), + [anon_sym_new] = ACTIONS(3631), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), + }, + [1977] = { + [sym__expression] = STATE(4300), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), + }, + [1978] = { + [sym__expression] = STATE(3190), + [sym__expression_not_binary] = STATE(3318), + [sym_conditional_expression] = STATE(3318), + [sym_assignment_expression] = STATE(3318), + [sym_pointer_expression] = STATE(3318), + [sym_unary_expression] = STATE(3318), + [sym_binary_expression] = STATE(3318), + [sym_update_expression] = STATE(3318), + [sym_cast_expression] = STATE(3318), + [sym_sizeof_expression] = STATE(3318), + [sym_offsetof_expression] = STATE(3318), + [sym_generic_expression] = STATE(3318), + [sym_subscript_expression] = STATE(3318), + [sym_call_expression] = STATE(3318), + [sym_gnu_asm_expression] = STATE(3318), + [sym_field_expression] = STATE(3318), + [sym_compound_literal_expression] = STATE(3318), + [sym_parenthesized_expression] = STATE(3318), + [sym_char_literal] = STATE(3076), + [sym_concatenated_string] = STATE(3076), + [sym_string_literal] = STATE(2202), + [sym_null] = STATE(3318), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6739), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3318), + [sym_raw_string_literal] = STATE(2202), + [sym_co_await_expression] = STATE(3318), + [sym_new_expression] = STATE(3318), + [sym_delete_expression] = STATE(3318), + [sym_requires_clause] = STATE(3318), + [sym_requires_expression] = STATE(3318), + [sym_lambda_expression] = STATE(3318), + [sym_lambda_capture_specifier] = STATE(5187), + [sym_fold_expression] = STATE(3318), + [sym_parameter_pack_expansion] = STATE(3318), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5232), + [sym_qualified_identifier] = STATE(3318), + [sym_qualified_type_identifier] = STATE(6739), + [sym_user_defined_literal] = STATE(3318), + [sym_identifier] = ACTIONS(1985), + [anon_sym_LPAREN2] = ACTIONS(1987), + [anon_sym_BANG] = ACTIONS(1991), + [anon_sym_TILDE] = ACTIONS(1991), + [anon_sym_DASH] = ACTIONS(1989), + [anon_sym_PLUS] = ACTIONS(1989), + [anon_sym_STAR] = ACTIONS(1847), + [anon_sym_AMP] = ACTIONS(1847), + [anon_sym_COLON_COLON] = ACTIONS(1995), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1999), + [anon_sym_not] = ACTIONS(1989), + [anon_sym_compl] = ACTIONS(1989), + [anon_sym_DASH_DASH] = ACTIONS(2001), + [anon_sym_PLUS_PLUS] = ACTIONS(2001), + [anon_sym_sizeof] = ACTIONS(2003), + [anon_sym_offsetof] = ACTIONS(2005), + [anon_sym__Generic] = ACTIONS(2007), + [anon_sym_asm] = ACTIONS(2009), + [anon_sym___asm__] = ACTIONS(2009), + [sym_number_literal] = ACTIONS(2011), + [anon_sym_L_SQUOTE] = ACTIONS(2013), + [anon_sym_u_SQUOTE] = ACTIONS(2013), + [anon_sym_U_SQUOTE] = ACTIONS(2013), + [anon_sym_u8_SQUOTE] = ACTIONS(2013), + [anon_sym_SQUOTE] = ACTIONS(2013), + [anon_sym_L_DQUOTE] = ACTIONS(2015), + [anon_sym_u_DQUOTE] = ACTIONS(2015), + [anon_sym_U_DQUOTE] = ACTIONS(2015), + [anon_sym_u8_DQUOTE] = ACTIONS(2015), + [anon_sym_DQUOTE] = ACTIONS(2015), + [sym_true] = ACTIONS(2017), + [sym_false] = ACTIONS(2017), + [anon_sym_NULL] = ACTIONS(2019), + [anon_sym_nullptr] = ACTIONS(2019), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(2021), + [anon_sym_R_DQUOTE] = ACTIONS(2023), + [anon_sym_LR_DQUOTE] = ACTIONS(2023), + [anon_sym_uR_DQUOTE] = ACTIONS(2023), + [anon_sym_UR_DQUOTE] = ACTIONS(2023), + [anon_sym_u8R_DQUOTE] = ACTIONS(2023), + [anon_sym_co_await] = ACTIONS(2025), + [anon_sym_new] = ACTIONS(2027), + [anon_sym_requires] = ACTIONS(2029), + [sym_this] = ACTIONS(2017), + }, + [1979] = { + [sym__expression] = STATE(3024), + [sym__expression_not_binary] = STATE(3021), + [sym_conditional_expression] = STATE(3021), + [sym_assignment_expression] = STATE(3021), + [sym_pointer_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_cast_expression] = STATE(3021), + [sym_sizeof_expression] = STATE(3021), + [sym_offsetof_expression] = STATE(3021), + [sym_generic_expression] = STATE(3021), + [sym_subscript_expression] = STATE(3021), + [sym_call_expression] = STATE(3021), + [sym_gnu_asm_expression] = STATE(3021), + [sym_field_expression] = STATE(3021), + [sym_compound_literal_expression] = STATE(3021), + [sym_parenthesized_expression] = STATE(3021), + [sym_char_literal] = STATE(2901), + [sym_concatenated_string] = STATE(2901), + [sym_string_literal] = STATE(2173), + [sym_null] = STATE(3021), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6616), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3021), + [sym_raw_string_literal] = STATE(2173), + [sym_co_await_expression] = STATE(3021), + [sym_new_expression] = STATE(3021), + [sym_delete_expression] = STATE(3021), + [sym_requires_clause] = STATE(3021), + [sym_requires_expression] = STATE(3021), + [sym_lambda_expression] = STATE(3021), + [sym_lambda_capture_specifier] = STATE(5188), + [sym_fold_expression] = STATE(3021), + [sym_parameter_pack_expansion] = STATE(3021), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3021), + [sym_qualified_type_identifier] = STATE(6616), + [sym_user_defined_literal] = STATE(3021), + [sym_identifier] = ACTIONS(1933), + [anon_sym_LPAREN2] = ACTIONS(1937), + [anon_sym_BANG] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(1941), + [anon_sym_DASH] = ACTIONS(1939), + [anon_sym_PLUS] = ACTIONS(1939), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(1945), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(1939), + [anon_sym_compl] = ACTIONS(1939), + [anon_sym_DASH_DASH] = ACTIONS(1953), + [anon_sym_PLUS_PLUS] = ACTIONS(1953), + [anon_sym_sizeof] = ACTIONS(1955), + [anon_sym_offsetof] = ACTIONS(1957), + [anon_sym__Generic] = ACTIONS(1959), + [anon_sym_asm] = ACTIONS(1961), + [anon_sym___asm__] = ACTIONS(1961), + [sym_number_literal] = ACTIONS(1963), + [anon_sym_L_SQUOTE] = ACTIONS(1965), + [anon_sym_u_SQUOTE] = ACTIONS(1965), + [anon_sym_U_SQUOTE] = ACTIONS(1965), + [anon_sym_u8_SQUOTE] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_L_DQUOTE] = ACTIONS(1967), + [anon_sym_u_DQUOTE] = ACTIONS(1967), + [anon_sym_U_DQUOTE] = ACTIONS(1967), + [anon_sym_u8_DQUOTE] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(1967), + [sym_true] = ACTIONS(1969), + [sym_false] = ACTIONS(1969), + [anon_sym_NULL] = ACTIONS(1971), + [anon_sym_nullptr] = ACTIONS(1971), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(1975), + [anon_sym_R_DQUOTE] = ACTIONS(1977), + [anon_sym_LR_DQUOTE] = ACTIONS(1977), + [anon_sym_uR_DQUOTE] = ACTIONS(1977), + [anon_sym_UR_DQUOTE] = ACTIONS(1977), + [anon_sym_u8R_DQUOTE] = ACTIONS(1977), + [anon_sym_co_await] = ACTIONS(1979), + [anon_sym_new] = ACTIONS(1981), + [anon_sym_requires] = ACTIONS(1983), + [sym_this] = ACTIONS(1969), + }, + [1980] = { + [sym__expression] = STATE(3482), + [sym__expression_not_binary] = STATE(3021), + [sym_conditional_expression] = STATE(3021), + [sym_assignment_expression] = STATE(3021), + [sym_pointer_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_cast_expression] = STATE(3021), + [sym_sizeof_expression] = STATE(3021), + [sym_offsetof_expression] = STATE(3021), + [sym_generic_expression] = STATE(3021), + [sym_subscript_expression] = STATE(3021), + [sym_call_expression] = STATE(3021), + [sym_gnu_asm_expression] = STATE(3021), + [sym_field_expression] = STATE(3021), + [sym_compound_literal_expression] = STATE(3021), + [sym_parenthesized_expression] = STATE(3021), + [sym_char_literal] = STATE(2901), + [sym_concatenated_string] = STATE(2901), + [sym_string_literal] = STATE(2173), + [sym_null] = STATE(3021), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6616), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3021), + [sym_raw_string_literal] = STATE(2173), + [sym_co_await_expression] = STATE(3021), + [sym_new_expression] = STATE(3021), + [sym_delete_expression] = STATE(3021), + [sym_requires_clause] = STATE(3021), + [sym_requires_expression] = STATE(3021), + [sym_lambda_expression] = STATE(3021), + [sym_lambda_capture_specifier] = STATE(5188), + [sym_fold_expression] = STATE(3021), + [sym_parameter_pack_expansion] = STATE(3021), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3021), + [sym_qualified_type_identifier] = STATE(6616), + [sym_user_defined_literal] = STATE(3021), + [sym_identifier] = ACTIONS(1933), + [anon_sym_LPAREN2] = ACTIONS(2077), + [anon_sym_BANG] = ACTIONS(2081), + [anon_sym_TILDE] = ACTIONS(2081), + [anon_sym_DASH] = ACTIONS(2079), + [anon_sym_PLUS] = ACTIONS(2079), + [anon_sym_STAR] = ACTIONS(3641), + [anon_sym_AMP] = ACTIONS(3641), + [anon_sym_COLON_COLON] = ACTIONS(2085), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(2079), + [anon_sym_compl] = ACTIONS(2079), + [anon_sym_DASH_DASH] = ACTIONS(2087), + [anon_sym_PLUS_PLUS] = ACTIONS(2087), + [anon_sym_sizeof] = ACTIONS(2089), + [anon_sym_offsetof] = ACTIONS(1957), + [anon_sym__Generic] = ACTIONS(1959), + [anon_sym_asm] = ACTIONS(1961), + [anon_sym___asm__] = ACTIONS(1961), + [sym_number_literal] = ACTIONS(1963), + [anon_sym_L_SQUOTE] = ACTIONS(1965), + [anon_sym_u_SQUOTE] = ACTIONS(1965), + [anon_sym_U_SQUOTE] = ACTIONS(1965), + [anon_sym_u8_SQUOTE] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_L_DQUOTE] = ACTIONS(1967), + [anon_sym_u_DQUOTE] = ACTIONS(1967), + [anon_sym_U_DQUOTE] = ACTIONS(1967), + [anon_sym_u8_DQUOTE] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(1967), + [sym_true] = ACTIONS(1969), + [sym_false] = ACTIONS(1969), + [anon_sym_NULL] = ACTIONS(1971), + [anon_sym_nullptr] = ACTIONS(1971), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(2091), + [anon_sym_R_DQUOTE] = ACTIONS(1977), + [anon_sym_LR_DQUOTE] = ACTIONS(1977), + [anon_sym_uR_DQUOTE] = ACTIONS(1977), + [anon_sym_UR_DQUOTE] = ACTIONS(1977), + [anon_sym_u8R_DQUOTE] = ACTIONS(1977), + [anon_sym_co_await] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(1981), + [anon_sym_requires] = ACTIONS(1983), + [sym_this] = ACTIONS(1969), + }, + [1981] = { + [sym__expression] = STATE(4337), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), + }, + [1982] = { + [sym__expression] = STATE(4302), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3509), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3509), + [sym_call_expression] = STATE(3509), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3509), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3509), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3509), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3613), + [anon_sym_LPAREN2] = ACTIONS(3615), + [anon_sym_BANG] = ACTIONS(3619), + [anon_sym_TILDE] = ACTIONS(3619), + [anon_sym_DASH] = ACTIONS(3617), + [anon_sym_PLUS] = ACTIONS(3617), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(3621), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(3617), + [anon_sym_compl] = ACTIONS(3617), + [anon_sym_DASH_DASH] = ACTIONS(3623), + [anon_sym_PLUS_PLUS] = ACTIONS(3623), + [anon_sym_sizeof] = ACTIONS(3625), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(3627), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(3629), + [anon_sym_new] = ACTIONS(3631), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), + }, + [1983] = { + [sym__expression] = STATE(4305), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), + }, + [1984] = { + [sym__expression] = STATE(3481), + [sym__expression_not_binary] = STATE(3565), + [sym_conditional_expression] = STATE(3565), + [sym_assignment_expression] = STATE(3565), + [sym_pointer_expression] = STATE(3220), + [sym_unary_expression] = STATE(3565), + [sym_binary_expression] = STATE(3565), + [sym_update_expression] = STATE(3565), + [sym_cast_expression] = STATE(3565), + [sym_sizeof_expression] = STATE(3565), + [sym_offsetof_expression] = STATE(3565), + [sym_generic_expression] = STATE(3565), + [sym_subscript_expression] = STATE(3220), + [sym_call_expression] = STATE(3220), + [sym_gnu_asm_expression] = STATE(3565), + [sym_field_expression] = STATE(3220), + [sym_compound_literal_expression] = STATE(3565), + [sym_parenthesized_expression] = STATE(3220), + [sym_char_literal] = STATE(3429), + [sym_concatenated_string] = STATE(3429), + [sym_string_literal] = STATE(2248), + [sym_null] = STATE(3565), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6847), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3565), + [sym_raw_string_literal] = STATE(2248), + [sym_co_await_expression] = STATE(3565), + [sym_new_expression] = STATE(3565), + [sym_delete_expression] = STATE(3565), + [sym_requires_clause] = STATE(3565), + [sym_requires_expression] = STATE(3565), + [sym_lambda_expression] = STATE(3565), + [sym_lambda_capture_specifier] = STATE(5204), + [sym_fold_expression] = STATE(3565), + [sym_parameter_pack_expansion] = STATE(3565), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5232), + [sym_qualified_identifier] = STATE(3220), + [sym_qualified_type_identifier] = STATE(6847), + [sym_user_defined_literal] = STATE(3565), + [sym_identifier] = ACTIONS(2095), + [anon_sym_LPAREN2] = ACTIONS(1841), + [anon_sym_BANG] = ACTIONS(1843), + [anon_sym_TILDE] = ACTIONS(1843), + [anon_sym_DASH] = ACTIONS(1845), + [anon_sym_PLUS] = ACTIONS(1845), + [anon_sym_STAR] = ACTIONS(1847), + [anon_sym_AMP] = ACTIONS(1847), + [anon_sym_COLON_COLON] = ACTIONS(1849), + [anon_sym_LBRACK] = ACTIONS(4443), + [sym_primitive_type] = ACTIONS(1999), + [anon_sym_not] = ACTIONS(1845), + [anon_sym_compl] = ACTIONS(1845), + [anon_sym_DASH_DASH] = ACTIONS(1861), + [anon_sym_PLUS_PLUS] = ACTIONS(1861), + [anon_sym_sizeof] = ACTIONS(1863), + [anon_sym_offsetof] = ACTIONS(1865), + [anon_sym__Generic] = ACTIONS(1867), + [anon_sym_asm] = ACTIONS(1869), + [anon_sym___asm__] = ACTIONS(1869), + [sym_number_literal] = ACTIONS(1871), + [anon_sym_L_SQUOTE] = ACTIONS(1873), + [anon_sym_u_SQUOTE] = ACTIONS(1873), + [anon_sym_U_SQUOTE] = ACTIONS(1873), + [anon_sym_u8_SQUOTE] = ACTIONS(1873), + [anon_sym_SQUOTE] = ACTIONS(1873), + [anon_sym_L_DQUOTE] = ACTIONS(1875), + [anon_sym_u_DQUOTE] = ACTIONS(1875), + [anon_sym_U_DQUOTE] = ACTIONS(1875), + [anon_sym_u8_DQUOTE] = ACTIONS(1875), + [anon_sym_DQUOTE] = ACTIONS(1875), + [sym_true] = ACTIONS(1877), + [sym_false] = ACTIONS(1877), + [anon_sym_NULL] = ACTIONS(1879), + [anon_sym_nullptr] = ACTIONS(1879), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(1883), + [anon_sym_R_DQUOTE] = ACTIONS(1885), + [anon_sym_LR_DQUOTE] = ACTIONS(1885), + [anon_sym_uR_DQUOTE] = ACTIONS(1885), + [anon_sym_UR_DQUOTE] = ACTIONS(1885), + [anon_sym_u8R_DQUOTE] = ACTIONS(1885), + [anon_sym_co_await] = ACTIONS(1887), + [anon_sym_new] = ACTIONS(1889), + [anon_sym_requires] = ACTIONS(1891), + [sym_this] = ACTIONS(1877), + }, + [1985] = { + [sym__expression] = STATE(4020), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), + }, + [1986] = { + [sym__expression] = STATE(4156), + [sym__expression_not_binary] = STATE(4369), + [sym_conditional_expression] = STATE(4369), + [sym_assignment_expression] = STATE(4369), + [sym_pointer_expression] = STATE(3541), + [sym_unary_expression] = STATE(4369), + [sym_binary_expression] = STATE(4369), + [sym_update_expression] = STATE(4369), + [sym_cast_expression] = STATE(4369), + [sym_sizeof_expression] = STATE(4369), + [sym_offsetof_expression] = STATE(4369), + [sym_generic_expression] = STATE(4369), + [sym_subscript_expression] = STATE(3541), + [sym_call_expression] = STATE(3541), + [sym_gnu_asm_expression] = STATE(4369), + [sym_field_expression] = STATE(3541), + [sym_compound_literal_expression] = STATE(4369), + [sym_parenthesized_expression] = STATE(3541), + [sym_char_literal] = STATE(4131), + [sym_concatenated_string] = STATE(4131), + [sym_string_literal] = STATE(3542), + [sym_null] = STATE(4369), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6872), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(4369), + [sym_raw_string_literal] = STATE(3542), + [sym_co_await_expression] = STATE(4369), + [sym_new_expression] = STATE(4369), + [sym_delete_expression] = STATE(4369), + [sym_requires_clause] = STATE(4369), + [sym_requires_expression] = STATE(4369), + [sym_lambda_expression] = STATE(4369), + [sym_lambda_capture_specifier] = STATE(5208), + [sym_fold_expression] = STATE(4369), + [sym_parameter_pack_expansion] = STATE(4369), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5289), + [sym_qualified_identifier] = STATE(3541), + [sym_qualified_type_identifier] = STATE(6872), + [sym_user_defined_literal] = STATE(4369), + [sym_identifier] = ACTIONS(3599), + [anon_sym_LPAREN2] = ACTIONS(2618), + [anon_sym_BANG] = ACTIONS(2620), + [anon_sym_TILDE] = ACTIONS(2620), + [anon_sym_DASH] = ACTIONS(2622), + [anon_sym_PLUS] = ACTIONS(2622), + [anon_sym_STAR] = ACTIONS(2624), + [anon_sym_AMP] = ACTIONS(2624), + [anon_sym_COLON_COLON] = ACTIONS(2626), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(2045), + [anon_sym_not] = ACTIONS(2622), + [anon_sym_compl] = ACTIONS(2622), + [anon_sym_DASH_DASH] = ACTIONS(2640), + [anon_sym_PLUS_PLUS] = ACTIONS(2640), + [anon_sym_sizeof] = ACTIONS(2642), + [anon_sym_offsetof] = ACTIONS(2644), + [anon_sym__Generic] = ACTIONS(2646), + [anon_sym_asm] = ACTIONS(2648), + [anon_sym___asm__] = ACTIONS(2648), + [sym_number_literal] = ACTIONS(2650), + [anon_sym_L_SQUOTE] = ACTIONS(2652), + [anon_sym_u_SQUOTE] = ACTIONS(2652), + [anon_sym_U_SQUOTE] = ACTIONS(2652), + [anon_sym_u8_SQUOTE] = ACTIONS(2652), + [anon_sym_SQUOTE] = ACTIONS(2652), + [anon_sym_L_DQUOTE] = ACTIONS(2654), + [anon_sym_u_DQUOTE] = ACTIONS(2654), + [anon_sym_U_DQUOTE] = ACTIONS(2654), + [anon_sym_u8_DQUOTE] = ACTIONS(2654), + [anon_sym_DQUOTE] = ACTIONS(2654), + [sym_true] = ACTIONS(2656), + [sym_false] = ACTIONS(2656), + [anon_sym_NULL] = ACTIONS(2658), + [anon_sym_nullptr] = ACTIONS(2658), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(2668), + [anon_sym_R_DQUOTE] = ACTIONS(2670), + [anon_sym_LR_DQUOTE] = ACTIONS(2670), + [anon_sym_uR_DQUOTE] = ACTIONS(2670), + [anon_sym_UR_DQUOTE] = ACTIONS(2670), + [anon_sym_u8R_DQUOTE] = ACTIONS(2670), + [anon_sym_co_await] = ACTIONS(2672), + [anon_sym_new] = ACTIONS(2674), + [anon_sym_requires] = ACTIONS(2676), + [sym_this] = ACTIONS(2656), + }, + [1987] = { + [sym__expression] = STATE(3487), + [sym__expression_not_binary] = STATE(3021), + [sym_conditional_expression] = STATE(3021), + [sym_assignment_expression] = STATE(3021), + [sym_pointer_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_cast_expression] = STATE(3021), + [sym_sizeof_expression] = STATE(3021), + [sym_offsetof_expression] = STATE(3021), + [sym_generic_expression] = STATE(3021), + [sym_subscript_expression] = STATE(3021), + [sym_call_expression] = STATE(3021), + [sym_gnu_asm_expression] = STATE(3021), + [sym_field_expression] = STATE(3021), + [sym_compound_literal_expression] = STATE(3021), + [sym_parenthesized_expression] = STATE(3021), + [sym_char_literal] = STATE(2901), + [sym_concatenated_string] = STATE(2901), + [sym_string_literal] = STATE(2173), + [sym_null] = STATE(3021), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6616), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3021), + [sym_raw_string_literal] = STATE(2173), + [sym_co_await_expression] = STATE(3021), + [sym_new_expression] = STATE(3021), + [sym_delete_expression] = STATE(3021), + [sym_requires_clause] = STATE(3021), + [sym_requires_expression] = STATE(3021), + [sym_lambda_expression] = STATE(3021), + [sym_lambda_capture_specifier] = STATE(5188), + [sym_fold_expression] = STATE(3021), + [sym_parameter_pack_expansion] = STATE(3021), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3021), + [sym_qualified_type_identifier] = STATE(6616), + [sym_user_defined_literal] = STATE(3021), + [sym_identifier] = ACTIONS(1933), + [anon_sym_LPAREN2] = ACTIONS(2077), + [anon_sym_BANG] = ACTIONS(2081), + [anon_sym_TILDE] = ACTIONS(2081), + [anon_sym_DASH] = ACTIONS(2079), + [anon_sym_PLUS] = ACTIONS(2079), + [anon_sym_STAR] = ACTIONS(3641), + [anon_sym_AMP] = ACTIONS(3641), + [anon_sym_COLON_COLON] = ACTIONS(2085), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(2079), + [anon_sym_compl] = ACTIONS(2079), + [anon_sym_DASH_DASH] = ACTIONS(2087), + [anon_sym_PLUS_PLUS] = ACTIONS(2087), + [anon_sym_sizeof] = ACTIONS(2089), + [anon_sym_offsetof] = ACTIONS(1957), + [anon_sym__Generic] = ACTIONS(1959), + [anon_sym_asm] = ACTIONS(1961), + [anon_sym___asm__] = ACTIONS(1961), + [sym_number_literal] = ACTIONS(1963), + [anon_sym_L_SQUOTE] = ACTIONS(1965), + [anon_sym_u_SQUOTE] = ACTIONS(1965), + [anon_sym_U_SQUOTE] = ACTIONS(1965), + [anon_sym_u8_SQUOTE] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_L_DQUOTE] = ACTIONS(1967), + [anon_sym_u_DQUOTE] = ACTIONS(1967), + [anon_sym_U_DQUOTE] = ACTIONS(1967), + [anon_sym_u8_DQUOTE] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(1967), + [sym_true] = ACTIONS(1969), + [sym_false] = ACTIONS(1969), + [anon_sym_NULL] = ACTIONS(1971), + [anon_sym_nullptr] = ACTIONS(1971), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(2091), + [anon_sym_R_DQUOTE] = ACTIONS(1977), + [anon_sym_LR_DQUOTE] = ACTIONS(1977), + [anon_sym_uR_DQUOTE] = ACTIONS(1977), + [anon_sym_UR_DQUOTE] = ACTIONS(1977), + [anon_sym_u8R_DQUOTE] = ACTIONS(1977), + [anon_sym_co_await] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(1981), + [anon_sym_requires] = ACTIONS(1983), + [sym_this] = ACTIONS(1969), + }, + [1988] = { + [sym__expression] = STATE(4246), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), + }, + [1989] = { + [sym__expression] = STATE(4456), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), + }, + [1990] = { + [sym__expression] = STATE(4344), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3579), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3579), + [sym_call_expression] = STATE(3579), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3579), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3579), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3579), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3633), + [anon_sym_LPAREN2] = ACTIONS(3635), + [anon_sym_BANG] = ACTIONS(3639), + [anon_sym_TILDE] = ACTIONS(3639), + [anon_sym_DASH] = ACTIONS(3637), + [anon_sym_PLUS] = ACTIONS(3637), + [anon_sym_STAR] = ACTIONS(3641), + [anon_sym_AMP] = ACTIONS(3641), + [anon_sym_COLON_COLON] = ACTIONS(3643), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(3637), + [anon_sym_compl] = ACTIONS(3637), + [anon_sym_DASH_DASH] = ACTIONS(3645), + [anon_sym_PLUS_PLUS] = ACTIONS(3645), + [anon_sym_sizeof] = ACTIONS(3647), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(3649), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(3651), + [anon_sym_new] = ACTIONS(3631), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), + }, + [1991] = { + [sym__expression] = STATE(4009), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), + }, + [1992] = { + [sym__expression] = STATE(4245), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3509), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3509), + [sym_call_expression] = STATE(3509), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3509), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3509), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3509), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3613), + [anon_sym_LPAREN2] = ACTIONS(3615), + [anon_sym_BANG] = ACTIONS(3619), + [anon_sym_TILDE] = ACTIONS(3619), + [anon_sym_DASH] = ACTIONS(3617), + [anon_sym_PLUS] = ACTIONS(3617), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(3621), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(3617), + [anon_sym_compl] = ACTIONS(3617), + [anon_sym_DASH_DASH] = ACTIONS(3623), + [anon_sym_PLUS_PLUS] = ACTIONS(3623), + [anon_sym_sizeof] = ACTIONS(3625), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(3627), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(3629), + [anon_sym_new] = ACTIONS(3631), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), + }, + [1993] = { + [sym__expression] = STATE(4444), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), + }, + [1994] = { + [sym__expression] = STATE(4357), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), + }, + [1995] = { + [sym__expression] = STATE(4192), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), + }, + [1996] = { + [sym__expression] = STATE(3483), + [sym__expression_not_binary] = STATE(3565), + [sym_conditional_expression] = STATE(3565), + [sym_assignment_expression] = STATE(3565), + [sym_pointer_expression] = STATE(3220), + [sym_unary_expression] = STATE(3565), + [sym_binary_expression] = STATE(3565), + [sym_update_expression] = STATE(3565), + [sym_cast_expression] = STATE(3565), + [sym_sizeof_expression] = STATE(3565), + [sym_offsetof_expression] = STATE(3565), + [sym_generic_expression] = STATE(3565), + [sym_subscript_expression] = STATE(3220), + [sym_call_expression] = STATE(3220), + [sym_gnu_asm_expression] = STATE(3565), + [sym_field_expression] = STATE(3220), + [sym_compound_literal_expression] = STATE(3565), + [sym_parenthesized_expression] = STATE(3220), + [sym_char_literal] = STATE(3429), + [sym_concatenated_string] = STATE(3429), + [sym_string_literal] = STATE(2248), + [sym_null] = STATE(3565), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6847), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3565), + [sym_raw_string_literal] = STATE(2248), + [sym_co_await_expression] = STATE(3565), + [sym_new_expression] = STATE(3565), + [sym_delete_expression] = STATE(3565), + [sym_requires_clause] = STATE(3565), + [sym_requires_expression] = STATE(3565), + [sym_lambda_expression] = STATE(3565), + [sym_lambda_capture_specifier] = STATE(5204), + [sym_fold_expression] = STATE(3565), + [sym_parameter_pack_expansion] = STATE(3565), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5232), + [sym_qualified_identifier] = STATE(3220), + [sym_qualified_type_identifier] = STATE(6847), + [sym_user_defined_literal] = STATE(3565), + [sym_identifier] = ACTIONS(2095), + [anon_sym_LPAREN2] = ACTIONS(1841), + [anon_sym_BANG] = ACTIONS(1843), + [anon_sym_TILDE] = ACTIONS(1843), + [anon_sym_DASH] = ACTIONS(1845), + [anon_sym_PLUS] = ACTIONS(1845), + [anon_sym_STAR] = ACTIONS(1847), + [anon_sym_AMP] = ACTIONS(1847), + [anon_sym_COLON_COLON] = ACTIONS(1849), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1999), + [anon_sym_not] = ACTIONS(1845), + [anon_sym_compl] = ACTIONS(1845), + [anon_sym_DASH_DASH] = ACTIONS(1861), + [anon_sym_PLUS_PLUS] = ACTIONS(1861), + [anon_sym_sizeof] = ACTIONS(1863), + [anon_sym_offsetof] = ACTIONS(1865), + [anon_sym__Generic] = ACTIONS(1867), + [anon_sym_asm] = ACTIONS(1869), + [anon_sym___asm__] = ACTIONS(1869), + [sym_number_literal] = ACTIONS(1871), + [anon_sym_L_SQUOTE] = ACTIONS(1873), + [anon_sym_u_SQUOTE] = ACTIONS(1873), + [anon_sym_U_SQUOTE] = ACTIONS(1873), + [anon_sym_u8_SQUOTE] = ACTIONS(1873), + [anon_sym_SQUOTE] = ACTIONS(1873), + [anon_sym_L_DQUOTE] = ACTIONS(1875), + [anon_sym_u_DQUOTE] = ACTIONS(1875), + [anon_sym_U_DQUOTE] = ACTIONS(1875), + [anon_sym_u8_DQUOTE] = ACTIONS(1875), + [anon_sym_DQUOTE] = ACTIONS(1875), + [sym_true] = ACTIONS(1877), + [sym_false] = ACTIONS(1877), + [anon_sym_NULL] = ACTIONS(1879), + [anon_sym_nullptr] = ACTIONS(1879), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(1883), + [anon_sym_R_DQUOTE] = ACTIONS(1885), + [anon_sym_LR_DQUOTE] = ACTIONS(1885), + [anon_sym_uR_DQUOTE] = ACTIONS(1885), + [anon_sym_UR_DQUOTE] = ACTIONS(1885), + [anon_sym_u8R_DQUOTE] = ACTIONS(1885), + [anon_sym_co_await] = ACTIONS(1887), + [anon_sym_new] = ACTIONS(1889), + [anon_sym_requires] = ACTIONS(1891), + [sym_this] = ACTIONS(1877), + }, + [1997] = { + [sym__expression] = STATE(4445), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), + }, + [1998] = { + [sym__expression] = STATE(2971), + [sym__expression_not_binary] = STATE(3021), + [sym_conditional_expression] = STATE(3021), + [sym_assignment_expression] = STATE(3021), + [sym_pointer_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_cast_expression] = STATE(3021), + [sym_sizeof_expression] = STATE(3021), + [sym_offsetof_expression] = STATE(3021), + [sym_generic_expression] = STATE(3021), + [sym_subscript_expression] = STATE(3021), + [sym_call_expression] = STATE(3021), + [sym_gnu_asm_expression] = STATE(3021), + [sym_field_expression] = STATE(3021), + [sym_compound_literal_expression] = STATE(3021), + [sym_parenthesized_expression] = STATE(3021), + [sym_char_literal] = STATE(2901), + [sym_concatenated_string] = STATE(2901), + [sym_string_literal] = STATE(2173), + [sym_null] = STATE(3021), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6616), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3021), + [sym_raw_string_literal] = STATE(2173), + [sym_co_await_expression] = STATE(3021), + [sym_new_expression] = STATE(3021), + [sym_delete_expression] = STATE(3021), + [sym_requires_clause] = STATE(3021), + [sym_requires_expression] = STATE(3021), + [sym_lambda_expression] = STATE(3021), + [sym_lambda_capture_specifier] = STATE(5188), + [sym_fold_expression] = STATE(3021), + [sym_parameter_pack_expansion] = STATE(3021), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3021), + [sym_qualified_type_identifier] = STATE(6616), + [sym_user_defined_literal] = STATE(3021), + [sym_identifier] = ACTIONS(1933), + [anon_sym_LPAREN2] = ACTIONS(1937), + [anon_sym_BANG] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(1941), + [anon_sym_DASH] = ACTIONS(1939), + [anon_sym_PLUS] = ACTIONS(1939), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(1945), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(1939), + [anon_sym_compl] = ACTIONS(1939), + [anon_sym_DASH_DASH] = ACTIONS(1953), + [anon_sym_PLUS_PLUS] = ACTIONS(1953), + [anon_sym_sizeof] = ACTIONS(1955), + [anon_sym_offsetof] = ACTIONS(1957), + [anon_sym__Generic] = ACTIONS(1959), + [anon_sym_asm] = ACTIONS(1961), + [anon_sym___asm__] = ACTIONS(1961), + [sym_number_literal] = ACTIONS(1963), + [anon_sym_L_SQUOTE] = ACTIONS(1965), + [anon_sym_u_SQUOTE] = ACTIONS(1965), + [anon_sym_U_SQUOTE] = ACTIONS(1965), + [anon_sym_u8_SQUOTE] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_L_DQUOTE] = ACTIONS(1967), + [anon_sym_u_DQUOTE] = ACTIONS(1967), + [anon_sym_U_DQUOTE] = ACTIONS(1967), + [anon_sym_u8_DQUOTE] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(1967), + [sym_true] = ACTIONS(1969), + [sym_false] = ACTIONS(1969), + [anon_sym_NULL] = ACTIONS(1971), + [anon_sym_nullptr] = ACTIONS(1971), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(1975), + [anon_sym_R_DQUOTE] = ACTIONS(1977), + [anon_sym_LR_DQUOTE] = ACTIONS(1977), + [anon_sym_uR_DQUOTE] = ACTIONS(1977), + [anon_sym_UR_DQUOTE] = ACTIONS(1977), + [anon_sym_u8R_DQUOTE] = ACTIONS(1977), + [anon_sym_co_await] = ACTIONS(1979), + [anon_sym_new] = ACTIONS(1981), + [anon_sym_requires] = ACTIONS(1983), + [sym_this] = ACTIONS(1969), + }, + [1999] = { + [sym__expression] = STATE(3376), + [sym__expression_not_binary] = STATE(3513), + [sym_conditional_expression] = STATE(3513), + [sym_assignment_expression] = STATE(3513), + [sym_pointer_expression] = STATE(3513), + [sym_unary_expression] = STATE(3513), + [sym_binary_expression] = STATE(3513), + [sym_update_expression] = STATE(3513), + [sym_cast_expression] = STATE(3513), + [sym_sizeof_expression] = STATE(3513), + [sym_offsetof_expression] = STATE(3513), + [sym_generic_expression] = STATE(3513), + [sym_subscript_expression] = STATE(3513), + [sym_call_expression] = STATE(3513), + [sym_gnu_asm_expression] = STATE(3513), + [sym_field_expression] = STATE(3513), + [sym_compound_literal_expression] = STATE(3513), + [sym_parenthesized_expression] = STATE(3513), + [sym_char_literal] = STATE(3385), + [sym_concatenated_string] = STATE(3385), + [sym_string_literal] = STATE(2225), + [sym_null] = STATE(3513), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6957), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3513), + [sym_raw_string_literal] = STATE(2225), + [sym_co_await_expression] = STATE(3513), + [sym_new_expression] = STATE(3513), + [sym_delete_expression] = STATE(3513), + [sym_requires_clause] = STATE(3513), + [sym_requires_expression] = STATE(3513), + [sym_lambda_expression] = STATE(3513), + [sym_lambda_capture_specifier] = STATE(5162), + [sym_fold_expression] = STATE(3513), + [sym_parameter_pack_expansion] = STATE(3513), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5289), + [sym_qualified_identifier] = STATE(3513), + [sym_qualified_type_identifier] = STATE(6957), + [sym_user_defined_literal] = STATE(3513), + [sym_identifier] = ACTIONS(2031), + [anon_sym_LPAREN2] = ACTIONS(2033), + [anon_sym_BANG] = ACTIONS(2037), + [anon_sym_TILDE] = ACTIONS(2037), + [anon_sym_DASH] = ACTIONS(2035), + [anon_sym_PLUS] = ACTIONS(2035), + [anon_sym_STAR] = ACTIONS(2624), + [anon_sym_AMP] = ACTIONS(2624), + [anon_sym_COLON_COLON] = ACTIONS(2041), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(2045), + [anon_sym_not] = ACTIONS(2035), + [anon_sym_compl] = ACTIONS(2035), + [anon_sym_DASH_DASH] = ACTIONS(2047), + [anon_sym_PLUS_PLUS] = ACTIONS(2047), + [anon_sym_sizeof] = ACTIONS(2049), + [anon_sym_offsetof] = ACTIONS(2051), + [anon_sym__Generic] = ACTIONS(2053), + [anon_sym_asm] = ACTIONS(2055), + [anon_sym___asm__] = ACTIONS(2055), + [sym_number_literal] = ACTIONS(2057), + [anon_sym_L_SQUOTE] = ACTIONS(2059), + [anon_sym_u_SQUOTE] = ACTIONS(2059), + [anon_sym_U_SQUOTE] = ACTIONS(2059), + [anon_sym_u8_SQUOTE] = ACTIONS(2059), + [anon_sym_SQUOTE] = ACTIONS(2059), + [anon_sym_L_DQUOTE] = ACTIONS(2061), + [anon_sym_u_DQUOTE] = ACTIONS(2061), + [anon_sym_U_DQUOTE] = ACTIONS(2061), + [anon_sym_u8_DQUOTE] = ACTIONS(2061), + [anon_sym_DQUOTE] = ACTIONS(2061), + [sym_true] = ACTIONS(2063), + [sym_false] = ACTIONS(2063), + [anon_sym_NULL] = ACTIONS(2065), + [anon_sym_nullptr] = ACTIONS(2065), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(2067), + [anon_sym_R_DQUOTE] = ACTIONS(2069), + [anon_sym_LR_DQUOTE] = ACTIONS(2069), + [anon_sym_uR_DQUOTE] = ACTIONS(2069), + [anon_sym_UR_DQUOTE] = ACTIONS(2069), + [anon_sym_u8R_DQUOTE] = ACTIONS(2069), + [anon_sym_co_await] = ACTIONS(2071), + [anon_sym_new] = ACTIONS(2073), + [anon_sym_requires] = ACTIONS(2075), + [sym_this] = ACTIONS(2063), + }, + [2000] = { + [sym__expression] = STATE(3358), + [sym__expression_not_binary] = STATE(3513), + [sym_conditional_expression] = STATE(3513), + [sym_assignment_expression] = STATE(3513), + [sym_pointer_expression] = STATE(3513), + [sym_unary_expression] = STATE(3513), + [sym_binary_expression] = STATE(3513), + [sym_update_expression] = STATE(3513), + [sym_cast_expression] = STATE(3513), + [sym_sizeof_expression] = STATE(3513), + [sym_offsetof_expression] = STATE(3513), + [sym_generic_expression] = STATE(3513), + [sym_subscript_expression] = STATE(3513), + [sym_call_expression] = STATE(3513), + [sym_gnu_asm_expression] = STATE(3513), + [sym_field_expression] = STATE(3513), + [sym_compound_literal_expression] = STATE(3513), + [sym_parenthesized_expression] = STATE(3513), + [sym_char_literal] = STATE(3385), + [sym_concatenated_string] = STATE(3385), + [sym_string_literal] = STATE(2225), + [sym_null] = STATE(3513), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6957), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3513), + [sym_raw_string_literal] = STATE(2225), + [sym_co_await_expression] = STATE(3513), + [sym_new_expression] = STATE(3513), + [sym_delete_expression] = STATE(3513), + [sym_requires_clause] = STATE(3513), + [sym_requires_expression] = STATE(3513), + [sym_lambda_expression] = STATE(3513), + [sym_lambda_capture_specifier] = STATE(5162), + [sym_fold_expression] = STATE(3513), + [sym_parameter_pack_expansion] = STATE(3513), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5289), + [sym_qualified_identifier] = STATE(3513), + [sym_qualified_type_identifier] = STATE(6957), + [sym_user_defined_literal] = STATE(3513), + [sym_identifier] = ACTIONS(2031), + [anon_sym_LPAREN2] = ACTIONS(2033), + [anon_sym_BANG] = ACTIONS(2037), + [anon_sym_TILDE] = ACTIONS(2037), + [anon_sym_DASH] = ACTIONS(2035), + [anon_sym_PLUS] = ACTIONS(2035), + [anon_sym_STAR] = ACTIONS(2624), + [anon_sym_AMP] = ACTIONS(2624), + [anon_sym_COLON_COLON] = ACTIONS(2041), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(2045), + [anon_sym_not] = ACTIONS(2035), + [anon_sym_compl] = ACTIONS(2035), + [anon_sym_DASH_DASH] = ACTIONS(2047), + [anon_sym_PLUS_PLUS] = ACTIONS(2047), + [anon_sym_sizeof] = ACTIONS(2049), + [anon_sym_offsetof] = ACTIONS(2051), + [anon_sym__Generic] = ACTIONS(2053), + [anon_sym_asm] = ACTIONS(2055), + [anon_sym___asm__] = ACTIONS(2055), + [sym_number_literal] = ACTIONS(2057), + [anon_sym_L_SQUOTE] = ACTIONS(2059), + [anon_sym_u_SQUOTE] = ACTIONS(2059), + [anon_sym_U_SQUOTE] = ACTIONS(2059), + [anon_sym_u8_SQUOTE] = ACTIONS(2059), + [anon_sym_SQUOTE] = ACTIONS(2059), + [anon_sym_L_DQUOTE] = ACTIONS(2061), + [anon_sym_u_DQUOTE] = ACTIONS(2061), + [anon_sym_U_DQUOTE] = ACTIONS(2061), + [anon_sym_u8_DQUOTE] = ACTIONS(2061), + [anon_sym_DQUOTE] = ACTIONS(2061), + [sym_true] = ACTIONS(2063), + [sym_false] = ACTIONS(2063), + [anon_sym_NULL] = ACTIONS(2065), + [anon_sym_nullptr] = ACTIONS(2065), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(2067), + [anon_sym_R_DQUOTE] = ACTIONS(2069), + [anon_sym_LR_DQUOTE] = ACTIONS(2069), + [anon_sym_uR_DQUOTE] = ACTIONS(2069), + [anon_sym_UR_DQUOTE] = ACTIONS(2069), + [anon_sym_u8R_DQUOTE] = ACTIONS(2069), + [anon_sym_co_await] = ACTIONS(2071), + [anon_sym_new] = ACTIONS(2073), + [anon_sym_requires] = ACTIONS(2075), + [sym_this] = ACTIONS(2063), + }, + [2001] = { + [sym__expression] = STATE(4388), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), + }, + [2002] = { + [sym__expression] = STATE(4154), + [sym__expression_not_binary] = STATE(4369), + [sym_conditional_expression] = STATE(4369), + [sym_assignment_expression] = STATE(4369), + [sym_pointer_expression] = STATE(3541), + [sym_unary_expression] = STATE(4369), + [sym_binary_expression] = STATE(4369), + [sym_update_expression] = STATE(4369), + [sym_cast_expression] = STATE(4369), + [sym_sizeof_expression] = STATE(4369), + [sym_offsetof_expression] = STATE(4369), + [sym_generic_expression] = STATE(4369), + [sym_subscript_expression] = STATE(3541), + [sym_call_expression] = STATE(3541), + [sym_gnu_asm_expression] = STATE(4369), + [sym_field_expression] = STATE(3541), + [sym_compound_literal_expression] = STATE(4369), + [sym_parenthesized_expression] = STATE(3541), + [sym_char_literal] = STATE(4131), + [sym_concatenated_string] = STATE(4131), + [sym_string_literal] = STATE(3542), + [sym_null] = STATE(4369), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6872), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(4369), + [sym_raw_string_literal] = STATE(3542), + [sym_co_await_expression] = STATE(4369), + [sym_new_expression] = STATE(4369), + [sym_delete_expression] = STATE(4369), + [sym_requires_clause] = STATE(4369), + [sym_requires_expression] = STATE(4369), + [sym_lambda_expression] = STATE(4369), + [sym_lambda_capture_specifier] = STATE(5208), + [sym_fold_expression] = STATE(4369), + [sym_parameter_pack_expansion] = STATE(4369), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5289), + [sym_qualified_identifier] = STATE(3541), + [sym_qualified_type_identifier] = STATE(6872), + [sym_user_defined_literal] = STATE(4369), + [sym_identifier] = ACTIONS(3599), + [anon_sym_LPAREN2] = ACTIONS(2618), + [anon_sym_BANG] = ACTIONS(2620), + [anon_sym_TILDE] = ACTIONS(2620), + [anon_sym_DASH] = ACTIONS(2622), + [anon_sym_PLUS] = ACTIONS(2622), + [anon_sym_STAR] = ACTIONS(2624), + [anon_sym_AMP] = ACTIONS(2624), + [anon_sym_COLON_COLON] = ACTIONS(2626), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(2045), + [anon_sym_not] = ACTIONS(2622), + [anon_sym_compl] = ACTIONS(2622), + [anon_sym_DASH_DASH] = ACTIONS(2640), + [anon_sym_PLUS_PLUS] = ACTIONS(2640), + [anon_sym_sizeof] = ACTIONS(2642), + [anon_sym_offsetof] = ACTIONS(2644), + [anon_sym__Generic] = ACTIONS(2646), + [anon_sym_asm] = ACTIONS(2648), + [anon_sym___asm__] = ACTIONS(2648), + [sym_number_literal] = ACTIONS(2650), + [anon_sym_L_SQUOTE] = ACTIONS(2652), + [anon_sym_u_SQUOTE] = ACTIONS(2652), + [anon_sym_U_SQUOTE] = ACTIONS(2652), + [anon_sym_u8_SQUOTE] = ACTIONS(2652), + [anon_sym_SQUOTE] = ACTIONS(2652), + [anon_sym_L_DQUOTE] = ACTIONS(2654), + [anon_sym_u_DQUOTE] = ACTIONS(2654), + [anon_sym_U_DQUOTE] = ACTIONS(2654), + [anon_sym_u8_DQUOTE] = ACTIONS(2654), + [anon_sym_DQUOTE] = ACTIONS(2654), + [sym_true] = ACTIONS(2656), + [sym_false] = ACTIONS(2656), + [anon_sym_NULL] = ACTIONS(2658), + [anon_sym_nullptr] = ACTIONS(2658), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(2668), + [anon_sym_R_DQUOTE] = ACTIONS(2670), + [anon_sym_LR_DQUOTE] = ACTIONS(2670), + [anon_sym_uR_DQUOTE] = ACTIONS(2670), + [anon_sym_UR_DQUOTE] = ACTIONS(2670), + [anon_sym_u8R_DQUOTE] = ACTIONS(2670), + [anon_sym_co_await] = ACTIONS(2672), + [anon_sym_new] = ACTIONS(2674), + [anon_sym_requires] = ACTIONS(2676), + [sym_this] = ACTIONS(2656), + }, + [2003] = { + [sym__expression] = STATE(4397), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), + }, + [2004] = { + [sym__expression] = STATE(4243), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3509), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3509), + [sym_call_expression] = STATE(3509), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3509), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3509), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3509), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3613), + [anon_sym_LPAREN2] = ACTIONS(3615), + [anon_sym_BANG] = ACTIONS(3619), + [anon_sym_TILDE] = ACTIONS(3619), + [anon_sym_DASH] = ACTIONS(3617), + [anon_sym_PLUS] = ACTIONS(3617), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(3621), + [anon_sym_LBRACK] = ACTIONS(4445), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(3617), + [anon_sym_compl] = ACTIONS(3617), + [anon_sym_DASH_DASH] = ACTIONS(3623), + [anon_sym_PLUS_PLUS] = ACTIONS(3623), + [anon_sym_sizeof] = ACTIONS(3625), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(3627), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(3629), + [anon_sym_new] = ACTIONS(3631), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), + }, + [2005] = { + [sym__expression] = STATE(4153), + [sym__expression_not_binary] = STATE(4369), + [sym_conditional_expression] = STATE(4369), + [sym_assignment_expression] = STATE(4369), + [sym_pointer_expression] = STATE(3541), + [sym_unary_expression] = STATE(4369), + [sym_binary_expression] = STATE(4369), + [sym_update_expression] = STATE(4369), + [sym_cast_expression] = STATE(4369), + [sym_sizeof_expression] = STATE(4369), + [sym_offsetof_expression] = STATE(4369), + [sym_generic_expression] = STATE(4369), + [sym_subscript_expression] = STATE(3541), + [sym_call_expression] = STATE(3541), + [sym_gnu_asm_expression] = STATE(4369), + [sym_field_expression] = STATE(3541), + [sym_compound_literal_expression] = STATE(4369), + [sym_parenthesized_expression] = STATE(3541), + [sym_char_literal] = STATE(4131), + [sym_concatenated_string] = STATE(4131), + [sym_string_literal] = STATE(3542), + [sym_null] = STATE(4369), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6872), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(4369), + [sym_raw_string_literal] = STATE(3542), + [sym_co_await_expression] = STATE(4369), + [sym_new_expression] = STATE(4369), + [sym_delete_expression] = STATE(4369), + [sym_requires_clause] = STATE(4369), + [sym_requires_expression] = STATE(4369), + [sym_lambda_expression] = STATE(4369), + [sym_lambda_capture_specifier] = STATE(5208), + [sym_fold_expression] = STATE(4369), + [sym_parameter_pack_expansion] = STATE(4369), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5289), + [sym_qualified_identifier] = STATE(3541), + [sym_qualified_type_identifier] = STATE(6872), + [sym_user_defined_literal] = STATE(4369), + [sym_identifier] = ACTIONS(3599), + [anon_sym_LPAREN2] = ACTIONS(2618), + [anon_sym_BANG] = ACTIONS(2620), + [anon_sym_TILDE] = ACTIONS(2620), + [anon_sym_DASH] = ACTIONS(2622), + [anon_sym_PLUS] = ACTIONS(2622), + [anon_sym_STAR] = ACTIONS(2624), + [anon_sym_AMP] = ACTIONS(2624), + [anon_sym_COLON_COLON] = ACTIONS(2626), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(2045), + [anon_sym_not] = ACTIONS(2622), + [anon_sym_compl] = ACTIONS(2622), + [anon_sym_DASH_DASH] = ACTIONS(2640), + [anon_sym_PLUS_PLUS] = ACTIONS(2640), + [anon_sym_sizeof] = ACTIONS(2642), + [anon_sym_offsetof] = ACTIONS(2644), + [anon_sym__Generic] = ACTIONS(2646), + [anon_sym_asm] = ACTIONS(2648), + [anon_sym___asm__] = ACTIONS(2648), + [sym_number_literal] = ACTIONS(2650), + [anon_sym_L_SQUOTE] = ACTIONS(2652), + [anon_sym_u_SQUOTE] = ACTIONS(2652), + [anon_sym_U_SQUOTE] = ACTIONS(2652), + [anon_sym_u8_SQUOTE] = ACTIONS(2652), + [anon_sym_SQUOTE] = ACTIONS(2652), + [anon_sym_L_DQUOTE] = ACTIONS(2654), + [anon_sym_u_DQUOTE] = ACTIONS(2654), + [anon_sym_U_DQUOTE] = ACTIONS(2654), + [anon_sym_u8_DQUOTE] = ACTIONS(2654), + [anon_sym_DQUOTE] = ACTIONS(2654), + [sym_true] = ACTIONS(2656), + [sym_false] = ACTIONS(2656), + [anon_sym_NULL] = ACTIONS(2658), + [anon_sym_nullptr] = ACTIONS(2658), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(2668), + [anon_sym_R_DQUOTE] = ACTIONS(2670), + [anon_sym_LR_DQUOTE] = ACTIONS(2670), + [anon_sym_uR_DQUOTE] = ACTIONS(2670), + [anon_sym_UR_DQUOTE] = ACTIONS(2670), + [anon_sym_u8R_DQUOTE] = ACTIONS(2670), + [anon_sym_co_await] = ACTIONS(2672), + [anon_sym_new] = ACTIONS(2674), + [anon_sym_requires] = ACTIONS(2676), + [sym_this] = ACTIONS(2656), + }, + [2006] = { + [sym__expression] = STATE(4188), + [sym__expression_not_binary] = STATE(4369), + [sym_conditional_expression] = STATE(4369), + [sym_assignment_expression] = STATE(4369), + [sym_pointer_expression] = STATE(3541), + [sym_unary_expression] = STATE(4369), + [sym_binary_expression] = STATE(4369), + [sym_update_expression] = STATE(4369), + [sym_cast_expression] = STATE(4369), + [sym_sizeof_expression] = STATE(4369), + [sym_offsetof_expression] = STATE(4369), + [sym_generic_expression] = STATE(4369), + [sym_subscript_expression] = STATE(3541), + [sym_call_expression] = STATE(3541), + [sym_gnu_asm_expression] = STATE(4369), + [sym_field_expression] = STATE(3541), + [sym_compound_literal_expression] = STATE(4369), + [sym_parenthesized_expression] = STATE(3541), + [sym_char_literal] = STATE(4131), + [sym_concatenated_string] = STATE(4131), + [sym_string_literal] = STATE(3542), + [sym_null] = STATE(4369), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6872), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(4369), + [sym_raw_string_literal] = STATE(3542), + [sym_co_await_expression] = STATE(4369), + [sym_new_expression] = STATE(4369), + [sym_delete_expression] = STATE(4369), + [sym_requires_clause] = STATE(4369), + [sym_requires_expression] = STATE(4369), + [sym_lambda_expression] = STATE(4369), + [sym_lambda_capture_specifier] = STATE(5208), + [sym_fold_expression] = STATE(4369), + [sym_parameter_pack_expansion] = STATE(4369), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5289), + [sym_qualified_identifier] = STATE(3541), + [sym_qualified_type_identifier] = STATE(6872), + [sym_user_defined_literal] = STATE(4369), + [sym_identifier] = ACTIONS(3599), + [anon_sym_LPAREN2] = ACTIONS(2618), + [anon_sym_BANG] = ACTIONS(2620), + [anon_sym_TILDE] = ACTIONS(2620), + [anon_sym_DASH] = ACTIONS(2622), + [anon_sym_PLUS] = ACTIONS(2622), + [anon_sym_STAR] = ACTIONS(2624), + [anon_sym_AMP] = ACTIONS(2624), + [anon_sym_COLON_COLON] = ACTIONS(2626), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(2045), + [anon_sym_not] = ACTIONS(2622), + [anon_sym_compl] = ACTIONS(2622), + [anon_sym_DASH_DASH] = ACTIONS(2640), + [anon_sym_PLUS_PLUS] = ACTIONS(2640), + [anon_sym_sizeof] = ACTIONS(2642), + [anon_sym_offsetof] = ACTIONS(2644), + [anon_sym__Generic] = ACTIONS(2646), + [anon_sym_asm] = ACTIONS(2648), + [anon_sym___asm__] = ACTIONS(2648), + [sym_number_literal] = ACTIONS(2650), + [anon_sym_L_SQUOTE] = ACTIONS(2652), + [anon_sym_u_SQUOTE] = ACTIONS(2652), + [anon_sym_U_SQUOTE] = ACTIONS(2652), + [anon_sym_u8_SQUOTE] = ACTIONS(2652), + [anon_sym_SQUOTE] = ACTIONS(2652), + [anon_sym_L_DQUOTE] = ACTIONS(2654), + [anon_sym_u_DQUOTE] = ACTIONS(2654), + [anon_sym_U_DQUOTE] = ACTIONS(2654), + [anon_sym_u8_DQUOTE] = ACTIONS(2654), + [anon_sym_DQUOTE] = ACTIONS(2654), + [sym_true] = ACTIONS(2656), + [sym_false] = ACTIONS(2656), + [anon_sym_NULL] = ACTIONS(2658), + [anon_sym_nullptr] = ACTIONS(2658), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(2668), + [anon_sym_R_DQUOTE] = ACTIONS(2670), + [anon_sym_LR_DQUOTE] = ACTIONS(2670), + [anon_sym_uR_DQUOTE] = ACTIONS(2670), + [anon_sym_UR_DQUOTE] = ACTIONS(2670), + [anon_sym_u8R_DQUOTE] = ACTIONS(2670), + [anon_sym_co_await] = ACTIONS(2672), + [anon_sym_new] = ACTIONS(2674), + [anon_sym_requires] = ACTIONS(2676), + [sym_this] = ACTIONS(2656), + }, + [2007] = { + [sym__expression] = STATE(4339), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), + }, + [2008] = { + [sym__expression] = STATE(4328), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), + }, + [2009] = { + [sym__expression] = STATE(3378), + [sym__expression_not_binary] = STATE(3513), + [sym_conditional_expression] = STATE(3513), + [sym_assignment_expression] = STATE(3513), + [sym_pointer_expression] = STATE(3513), + [sym_unary_expression] = STATE(3513), + [sym_binary_expression] = STATE(3513), + [sym_update_expression] = STATE(3513), + [sym_cast_expression] = STATE(3513), + [sym_sizeof_expression] = STATE(3513), + [sym_offsetof_expression] = STATE(3513), + [sym_generic_expression] = STATE(3513), + [sym_subscript_expression] = STATE(3513), + [sym_call_expression] = STATE(3513), + [sym_gnu_asm_expression] = STATE(3513), + [sym_field_expression] = STATE(3513), + [sym_compound_literal_expression] = STATE(3513), + [sym_parenthesized_expression] = STATE(3513), + [sym_char_literal] = STATE(3385), + [sym_concatenated_string] = STATE(3385), + [sym_string_literal] = STATE(2225), + [sym_null] = STATE(3513), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6957), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3513), + [sym_raw_string_literal] = STATE(2225), + [sym_co_await_expression] = STATE(3513), + [sym_new_expression] = STATE(3513), + [sym_delete_expression] = STATE(3513), + [sym_requires_clause] = STATE(3513), + [sym_requires_expression] = STATE(3513), + [sym_lambda_expression] = STATE(3513), + [sym_lambda_capture_specifier] = STATE(5162), + [sym_fold_expression] = STATE(3513), + [sym_parameter_pack_expansion] = STATE(3513), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5289), + [sym_qualified_identifier] = STATE(3513), + [sym_qualified_type_identifier] = STATE(6957), + [sym_user_defined_literal] = STATE(3513), + [sym_identifier] = ACTIONS(2031), + [anon_sym_LPAREN2] = ACTIONS(2033), + [anon_sym_BANG] = ACTIONS(2037), + [anon_sym_TILDE] = ACTIONS(2037), + [anon_sym_DASH] = ACTIONS(2035), + [anon_sym_PLUS] = ACTIONS(2035), + [anon_sym_STAR] = ACTIONS(2624), + [anon_sym_AMP] = ACTIONS(2624), + [anon_sym_COLON_COLON] = ACTIONS(2041), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(2045), + [anon_sym_not] = ACTIONS(2035), + [anon_sym_compl] = ACTIONS(2035), + [anon_sym_DASH_DASH] = ACTIONS(2047), + [anon_sym_PLUS_PLUS] = ACTIONS(2047), + [anon_sym_sizeof] = ACTIONS(2049), + [anon_sym_offsetof] = ACTIONS(2051), + [anon_sym__Generic] = ACTIONS(2053), + [anon_sym_asm] = ACTIONS(2055), + [anon_sym___asm__] = ACTIONS(2055), + [sym_number_literal] = ACTIONS(2057), + [anon_sym_L_SQUOTE] = ACTIONS(2059), + [anon_sym_u_SQUOTE] = ACTIONS(2059), + [anon_sym_U_SQUOTE] = ACTIONS(2059), + [anon_sym_u8_SQUOTE] = ACTIONS(2059), + [anon_sym_SQUOTE] = ACTIONS(2059), + [anon_sym_L_DQUOTE] = ACTIONS(2061), + [anon_sym_u_DQUOTE] = ACTIONS(2061), + [anon_sym_U_DQUOTE] = ACTIONS(2061), + [anon_sym_u8_DQUOTE] = ACTIONS(2061), + [anon_sym_DQUOTE] = ACTIONS(2061), + [sym_true] = ACTIONS(2063), + [sym_false] = ACTIONS(2063), + [anon_sym_NULL] = ACTIONS(2065), + [anon_sym_nullptr] = ACTIONS(2065), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(2067), + [anon_sym_R_DQUOTE] = ACTIONS(2069), + [anon_sym_LR_DQUOTE] = ACTIONS(2069), + [anon_sym_uR_DQUOTE] = ACTIONS(2069), + [anon_sym_UR_DQUOTE] = ACTIONS(2069), + [anon_sym_u8R_DQUOTE] = ACTIONS(2069), + [anon_sym_co_await] = ACTIONS(2071), + [anon_sym_new] = ACTIONS(2073), + [anon_sym_requires] = ACTIONS(2075), + [sym_this] = ACTIONS(2063), + }, + [2010] = { + [sym__expression] = STATE(4022), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), + }, + [2011] = { + [sym__expression] = STATE(4260), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3509), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3509), + [sym_call_expression] = STATE(3509), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3509), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3509), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3509), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3613), + [anon_sym_LPAREN2] = ACTIONS(3615), + [anon_sym_BANG] = ACTIONS(3619), + [anon_sym_TILDE] = ACTIONS(3619), + [anon_sym_DASH] = ACTIONS(3617), + [anon_sym_PLUS] = ACTIONS(3617), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(3621), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(3617), + [anon_sym_compl] = ACTIONS(3617), + [anon_sym_DASH_DASH] = ACTIONS(3623), + [anon_sym_PLUS_PLUS] = ACTIONS(3623), + [anon_sym_sizeof] = ACTIONS(3625), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(3627), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(3629), + [anon_sym_new] = ACTIONS(3631), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), + }, + [2012] = { + [sym__expression] = STATE(4024), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), + }, + [2013] = { + [sym__expression] = STATE(4419), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3579), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3579), + [sym_call_expression] = STATE(3579), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3579), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3579), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3579), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3633), + [anon_sym_LPAREN2] = ACTIONS(3635), + [anon_sym_BANG] = ACTIONS(3639), + [anon_sym_TILDE] = ACTIONS(3639), + [anon_sym_DASH] = ACTIONS(3637), + [anon_sym_PLUS] = ACTIONS(3637), + [anon_sym_STAR] = ACTIONS(3641), + [anon_sym_AMP] = ACTIONS(3641), + [anon_sym_COLON_COLON] = ACTIONS(3643), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(3637), + [anon_sym_compl] = ACTIONS(3637), + [anon_sym_DASH_DASH] = ACTIONS(3645), + [anon_sym_PLUS_PLUS] = ACTIONS(3645), + [anon_sym_sizeof] = ACTIONS(3647), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(3649), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(3651), + [anon_sym_new] = ACTIONS(3631), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), + }, + [2014] = { + [sym__expression] = STATE(4474), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), + }, + [2015] = { + [sym__expression] = STATE(3390), + [sym__expression_not_binary] = STATE(3513), + [sym_conditional_expression] = STATE(3513), + [sym_assignment_expression] = STATE(3513), + [sym_pointer_expression] = STATE(3513), + [sym_unary_expression] = STATE(3513), + [sym_binary_expression] = STATE(3513), + [sym_update_expression] = STATE(3513), + [sym_cast_expression] = STATE(3513), + [sym_sizeof_expression] = STATE(3513), + [sym_offsetof_expression] = STATE(3513), + [sym_generic_expression] = STATE(3513), + [sym_subscript_expression] = STATE(3513), + [sym_call_expression] = STATE(3513), + [sym_gnu_asm_expression] = STATE(3513), + [sym_field_expression] = STATE(3513), + [sym_compound_literal_expression] = STATE(3513), + [sym_parenthesized_expression] = STATE(3513), + [sym_char_literal] = STATE(3385), + [sym_concatenated_string] = STATE(3385), + [sym_string_literal] = STATE(2225), + [sym_null] = STATE(3513), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6957), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3513), + [sym_raw_string_literal] = STATE(2225), + [sym_co_await_expression] = STATE(3513), + [sym_new_expression] = STATE(3513), + [sym_delete_expression] = STATE(3513), + [sym_requires_clause] = STATE(3513), + [sym_requires_expression] = STATE(3513), + [sym_lambda_expression] = STATE(3513), + [sym_lambda_capture_specifier] = STATE(5162), + [sym_fold_expression] = STATE(3513), + [sym_parameter_pack_expansion] = STATE(3513), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5289), + [sym_qualified_identifier] = STATE(3513), + [sym_qualified_type_identifier] = STATE(6957), + [sym_user_defined_literal] = STATE(3513), + [sym_identifier] = ACTIONS(2031), + [anon_sym_LPAREN2] = ACTIONS(2033), + [anon_sym_BANG] = ACTIONS(2037), + [anon_sym_TILDE] = ACTIONS(2037), + [anon_sym_DASH] = ACTIONS(2035), + [anon_sym_PLUS] = ACTIONS(2035), + [anon_sym_STAR] = ACTIONS(2624), + [anon_sym_AMP] = ACTIONS(2624), + [anon_sym_COLON_COLON] = ACTIONS(2041), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(2045), + [anon_sym_not] = ACTIONS(2035), + [anon_sym_compl] = ACTIONS(2035), + [anon_sym_DASH_DASH] = ACTIONS(2047), + [anon_sym_PLUS_PLUS] = ACTIONS(2047), + [anon_sym_sizeof] = ACTIONS(2049), + [anon_sym_offsetof] = ACTIONS(2051), + [anon_sym__Generic] = ACTIONS(2053), + [anon_sym_asm] = ACTIONS(2055), + [anon_sym___asm__] = ACTIONS(2055), + [sym_number_literal] = ACTIONS(2057), + [anon_sym_L_SQUOTE] = ACTIONS(2059), + [anon_sym_u_SQUOTE] = ACTIONS(2059), + [anon_sym_U_SQUOTE] = ACTIONS(2059), + [anon_sym_u8_SQUOTE] = ACTIONS(2059), + [anon_sym_SQUOTE] = ACTIONS(2059), + [anon_sym_L_DQUOTE] = ACTIONS(2061), + [anon_sym_u_DQUOTE] = ACTIONS(2061), + [anon_sym_U_DQUOTE] = ACTIONS(2061), + [anon_sym_u8_DQUOTE] = ACTIONS(2061), + [anon_sym_DQUOTE] = ACTIONS(2061), + [sym_true] = ACTIONS(2063), + [sym_false] = ACTIONS(2063), + [anon_sym_NULL] = ACTIONS(2065), + [anon_sym_nullptr] = ACTIONS(2065), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(2067), + [anon_sym_R_DQUOTE] = ACTIONS(2069), + [anon_sym_LR_DQUOTE] = ACTIONS(2069), + [anon_sym_uR_DQUOTE] = ACTIONS(2069), + [anon_sym_UR_DQUOTE] = ACTIONS(2069), + [anon_sym_u8R_DQUOTE] = ACTIONS(2069), + [anon_sym_co_await] = ACTIONS(2071), + [anon_sym_new] = ACTIONS(2073), + [anon_sym_requires] = ACTIONS(2075), + [sym_this] = ACTIONS(2063), + }, + [2016] = { + [sym__expression] = STATE(4258), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3509), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3509), + [sym_call_expression] = STATE(3509), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3509), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3509), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3509), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3613), + [anon_sym_LPAREN2] = ACTIONS(3615), + [anon_sym_BANG] = ACTIONS(3619), + [anon_sym_TILDE] = ACTIONS(3619), + [anon_sym_DASH] = ACTIONS(3617), + [anon_sym_PLUS] = ACTIONS(3617), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(3621), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(3617), + [anon_sym_compl] = ACTIONS(3617), + [anon_sym_DASH_DASH] = ACTIONS(3623), + [anon_sym_PLUS_PLUS] = ACTIONS(3623), + [anon_sym_sizeof] = ACTIONS(3625), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(3627), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(3629), + [anon_sym_new] = ACTIONS(3631), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), + }, + [2017] = { + [sym__expression] = STATE(4257), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3509), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3509), + [sym_call_expression] = STATE(3509), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3509), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3509), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3509), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3613), + [anon_sym_LPAREN2] = ACTIONS(3615), + [anon_sym_BANG] = ACTIONS(3619), + [anon_sym_TILDE] = ACTIONS(3619), + [anon_sym_DASH] = ACTIONS(3617), + [anon_sym_PLUS] = ACTIONS(3617), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(3621), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(3617), + [anon_sym_compl] = ACTIONS(3617), + [anon_sym_DASH_DASH] = ACTIONS(3623), + [anon_sym_PLUS_PLUS] = ACTIONS(3623), + [anon_sym_sizeof] = ACTIONS(3625), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(3627), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(3629), + [anon_sym_new] = ACTIONS(3631), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), + }, + [2018] = { + [sym__expression] = STATE(4106), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), + }, + [2019] = { + [sym__expression] = STATE(4296), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3579), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3579), + [sym_call_expression] = STATE(3579), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3579), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3579), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3579), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3633), + [anon_sym_LPAREN2] = ACTIONS(3635), + [anon_sym_BANG] = ACTIONS(3639), + [anon_sym_TILDE] = ACTIONS(3639), + [anon_sym_DASH] = ACTIONS(3637), + [anon_sym_PLUS] = ACTIONS(3637), + [anon_sym_STAR] = ACTIONS(3641), + [anon_sym_AMP] = ACTIONS(3641), + [anon_sym_COLON_COLON] = ACTIONS(3643), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(3637), + [anon_sym_compl] = ACTIONS(3637), + [anon_sym_DASH_DASH] = ACTIONS(3645), + [anon_sym_PLUS_PLUS] = ACTIONS(3645), + [anon_sym_sizeof] = ACTIONS(3647), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(3649), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(3651), + [anon_sym_new] = ACTIONS(3631), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), + }, + [2020] = { + [sym__expression] = STATE(4304), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3579), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3579), + [sym_call_expression] = STATE(3579), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3579), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3579), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3579), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3633), + [anon_sym_LPAREN2] = ACTIONS(3635), + [anon_sym_BANG] = ACTIONS(3639), + [anon_sym_TILDE] = ACTIONS(3639), + [anon_sym_DASH] = ACTIONS(3637), + [anon_sym_PLUS] = ACTIONS(3637), + [anon_sym_STAR] = ACTIONS(3641), + [anon_sym_AMP] = ACTIONS(3641), + [anon_sym_COLON_COLON] = ACTIONS(3643), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(3637), + [anon_sym_compl] = ACTIONS(3637), + [anon_sym_DASH_DASH] = ACTIONS(3645), + [anon_sym_PLUS_PLUS] = ACTIONS(3645), + [anon_sym_sizeof] = ACTIONS(3647), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(3649), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(3651), + [anon_sym_new] = ACTIONS(3631), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), + }, + [2021] = { + [sym__expression] = STATE(3374), + [sym__expression_not_binary] = STATE(3513), + [sym_conditional_expression] = STATE(3513), + [sym_assignment_expression] = STATE(3513), + [sym_pointer_expression] = STATE(3513), + [sym_unary_expression] = STATE(3513), + [sym_binary_expression] = STATE(3513), + [sym_update_expression] = STATE(3513), + [sym_cast_expression] = STATE(3513), + [sym_sizeof_expression] = STATE(3513), + [sym_offsetof_expression] = STATE(3513), + [sym_generic_expression] = STATE(3513), + [sym_subscript_expression] = STATE(3513), + [sym_call_expression] = STATE(3513), + [sym_gnu_asm_expression] = STATE(3513), + [sym_field_expression] = STATE(3513), + [sym_compound_literal_expression] = STATE(3513), + [sym_parenthesized_expression] = STATE(3513), + [sym_char_literal] = STATE(3385), + [sym_concatenated_string] = STATE(3385), + [sym_string_literal] = STATE(2225), + [sym_null] = STATE(3513), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6957), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3513), + [sym_raw_string_literal] = STATE(2225), + [sym_co_await_expression] = STATE(3513), + [sym_new_expression] = STATE(3513), + [sym_delete_expression] = STATE(3513), + [sym_requires_clause] = STATE(3513), + [sym_requires_expression] = STATE(3513), + [sym_lambda_expression] = STATE(3513), + [sym_lambda_capture_specifier] = STATE(5162), + [sym_fold_expression] = STATE(3513), + [sym_parameter_pack_expansion] = STATE(3513), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5289), + [sym_qualified_identifier] = STATE(3513), + [sym_qualified_type_identifier] = STATE(6957), + [sym_user_defined_literal] = STATE(3513), + [sym_identifier] = ACTIONS(2031), + [anon_sym_LPAREN2] = ACTIONS(2033), + [anon_sym_BANG] = ACTIONS(2037), + [anon_sym_TILDE] = ACTIONS(2037), + [anon_sym_DASH] = ACTIONS(2035), + [anon_sym_PLUS] = ACTIONS(2035), + [anon_sym_STAR] = ACTIONS(2624), + [anon_sym_AMP] = ACTIONS(2624), + [anon_sym_COLON_COLON] = ACTIONS(2041), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(2045), + [anon_sym_not] = ACTIONS(2035), + [anon_sym_compl] = ACTIONS(2035), + [anon_sym_DASH_DASH] = ACTIONS(2047), + [anon_sym_PLUS_PLUS] = ACTIONS(2047), + [anon_sym_sizeof] = ACTIONS(2049), + [anon_sym_offsetof] = ACTIONS(2051), + [anon_sym__Generic] = ACTIONS(2053), + [anon_sym_asm] = ACTIONS(2055), + [anon_sym___asm__] = ACTIONS(2055), + [sym_number_literal] = ACTIONS(2057), + [anon_sym_L_SQUOTE] = ACTIONS(2059), + [anon_sym_u_SQUOTE] = ACTIONS(2059), + [anon_sym_U_SQUOTE] = ACTIONS(2059), + [anon_sym_u8_SQUOTE] = ACTIONS(2059), + [anon_sym_SQUOTE] = ACTIONS(2059), + [anon_sym_L_DQUOTE] = ACTIONS(2061), + [anon_sym_u_DQUOTE] = ACTIONS(2061), + [anon_sym_U_DQUOTE] = ACTIONS(2061), + [anon_sym_u8_DQUOTE] = ACTIONS(2061), + [anon_sym_DQUOTE] = ACTIONS(2061), + [sym_true] = ACTIONS(2063), + [sym_false] = ACTIONS(2063), + [anon_sym_NULL] = ACTIONS(2065), + [anon_sym_nullptr] = ACTIONS(2065), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(2067), + [anon_sym_R_DQUOTE] = ACTIONS(2069), + [anon_sym_LR_DQUOTE] = ACTIONS(2069), + [anon_sym_uR_DQUOTE] = ACTIONS(2069), + [anon_sym_UR_DQUOTE] = ACTIONS(2069), + [anon_sym_u8R_DQUOTE] = ACTIONS(2069), + [anon_sym_co_await] = ACTIONS(2071), + [anon_sym_new] = ACTIONS(2073), + [anon_sym_requires] = ACTIONS(2075), + [sym_this] = ACTIONS(2063), + }, + [2022] = { + [sym__expression] = STATE(4462), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), + }, + [2023] = { + [sym__expression] = STATE(4026), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), + }, + [2024] = { + [sym__expression] = STATE(4256), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3509), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3509), + [sym_call_expression] = STATE(3509), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3509), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3509), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3509), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3613), + [anon_sym_LPAREN2] = ACTIONS(3615), + [anon_sym_BANG] = ACTIONS(3619), + [anon_sym_TILDE] = ACTIONS(3619), + [anon_sym_DASH] = ACTIONS(3617), + [anon_sym_PLUS] = ACTIONS(3617), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(3621), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(3617), + [anon_sym_compl] = ACTIONS(3617), + [anon_sym_DASH_DASH] = ACTIONS(3623), + [anon_sym_PLUS_PLUS] = ACTIONS(3623), + [anon_sym_sizeof] = ACTIONS(3625), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(3627), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(3629), + [anon_sym_new] = ACTIONS(3631), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), + }, + [2025] = { + [sym__expression] = STATE(4187), + [sym__expression_not_binary] = STATE(4369), + [sym_conditional_expression] = STATE(4369), + [sym_assignment_expression] = STATE(4369), + [sym_pointer_expression] = STATE(3541), + [sym_unary_expression] = STATE(4369), + [sym_binary_expression] = STATE(4369), + [sym_update_expression] = STATE(4369), + [sym_cast_expression] = STATE(4369), + [sym_sizeof_expression] = STATE(4369), + [sym_offsetof_expression] = STATE(4369), + [sym_generic_expression] = STATE(4369), + [sym_subscript_expression] = STATE(3541), + [sym_call_expression] = STATE(3541), + [sym_gnu_asm_expression] = STATE(4369), + [sym_field_expression] = STATE(3541), + [sym_compound_literal_expression] = STATE(4369), + [sym_parenthesized_expression] = STATE(3541), + [sym_char_literal] = STATE(4131), + [sym_concatenated_string] = STATE(4131), + [sym_string_literal] = STATE(3542), + [sym_null] = STATE(4369), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6872), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(4369), + [sym_raw_string_literal] = STATE(3542), + [sym_co_await_expression] = STATE(4369), + [sym_new_expression] = STATE(4369), + [sym_delete_expression] = STATE(4369), + [sym_requires_clause] = STATE(4369), + [sym_requires_expression] = STATE(4369), + [sym_lambda_expression] = STATE(4369), + [sym_lambda_capture_specifier] = STATE(5208), + [sym_fold_expression] = STATE(4369), + [sym_parameter_pack_expansion] = STATE(4369), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5289), + [sym_qualified_identifier] = STATE(3541), + [sym_qualified_type_identifier] = STATE(6872), + [sym_user_defined_literal] = STATE(4369), + [sym_identifier] = ACTIONS(3599), + [anon_sym_LPAREN2] = ACTIONS(2618), + [anon_sym_BANG] = ACTIONS(2620), + [anon_sym_TILDE] = ACTIONS(2620), + [anon_sym_DASH] = ACTIONS(2622), + [anon_sym_PLUS] = ACTIONS(2622), + [anon_sym_STAR] = ACTIONS(2624), + [anon_sym_AMP] = ACTIONS(2624), + [anon_sym_COLON_COLON] = ACTIONS(2626), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(2045), + [anon_sym_not] = ACTIONS(2622), + [anon_sym_compl] = ACTIONS(2622), + [anon_sym_DASH_DASH] = ACTIONS(2640), + [anon_sym_PLUS_PLUS] = ACTIONS(2640), + [anon_sym_sizeof] = ACTIONS(2642), + [anon_sym_offsetof] = ACTIONS(2644), + [anon_sym__Generic] = ACTIONS(2646), + [anon_sym_asm] = ACTIONS(2648), + [anon_sym___asm__] = ACTIONS(2648), + [sym_number_literal] = ACTIONS(2650), + [anon_sym_L_SQUOTE] = ACTIONS(2652), + [anon_sym_u_SQUOTE] = ACTIONS(2652), + [anon_sym_U_SQUOTE] = ACTIONS(2652), + [anon_sym_u8_SQUOTE] = ACTIONS(2652), + [anon_sym_SQUOTE] = ACTIONS(2652), + [anon_sym_L_DQUOTE] = ACTIONS(2654), + [anon_sym_u_DQUOTE] = ACTIONS(2654), + [anon_sym_U_DQUOTE] = ACTIONS(2654), + [anon_sym_u8_DQUOTE] = ACTIONS(2654), + [anon_sym_DQUOTE] = ACTIONS(2654), + [sym_true] = ACTIONS(2656), + [sym_false] = ACTIONS(2656), + [anon_sym_NULL] = ACTIONS(2658), + [anon_sym_nullptr] = ACTIONS(2658), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(2668), + [anon_sym_R_DQUOTE] = ACTIONS(2670), + [anon_sym_LR_DQUOTE] = ACTIONS(2670), + [anon_sym_uR_DQUOTE] = ACTIONS(2670), + [anon_sym_UR_DQUOTE] = ACTIONS(2670), + [anon_sym_u8R_DQUOTE] = ACTIONS(2670), + [anon_sym_co_await] = ACTIONS(2672), + [anon_sym_new] = ACTIONS(2674), + [anon_sym_requires] = ACTIONS(2676), + [sym_this] = ACTIONS(2656), + }, + [2026] = { + [sym__expression] = STATE(4374), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), + }, + [2027] = { + [sym__expression] = STATE(4373), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), + }, + [2028] = { + [sym__expression] = STATE(4027), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), + }, + [2029] = { + [sym__expression] = STATE(4028), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), + }, + [2030] = { + [sym__expression] = STATE(4006), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), + }, + [2031] = { + [sym__expression] = STATE(4366), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), + }, + [2032] = { + [sym__expression] = STATE(4039), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), + }, + [2033] = { + [sym__expression] = STATE(4040), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), + }, + [2034] = { + [sym__expression] = STATE(4042), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), + }, + [2035] = { + [sym__expression] = STATE(4386), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3579), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3579), + [sym_call_expression] = STATE(3579), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3579), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3579), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3579), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3633), + [anon_sym_LPAREN2] = ACTIONS(3635), + [anon_sym_BANG] = ACTIONS(3639), + [anon_sym_TILDE] = ACTIONS(3639), + [anon_sym_DASH] = ACTIONS(3637), + [anon_sym_PLUS] = ACTIONS(3637), + [anon_sym_STAR] = ACTIONS(3641), + [anon_sym_AMP] = ACTIONS(3641), + [anon_sym_COLON_COLON] = ACTIONS(3643), + [anon_sym_LBRACK] = ACTIONS(4447), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(3637), + [anon_sym_compl] = ACTIONS(3637), + [anon_sym_DASH_DASH] = ACTIONS(3645), + [anon_sym_PLUS_PLUS] = ACTIONS(3645), + [anon_sym_sizeof] = ACTIONS(3647), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(3649), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(3651), + [anon_sym_new] = ACTIONS(3631), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), + }, + [2036] = { + [sym__expression] = STATE(4298), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3579), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3579), + [sym_call_expression] = STATE(3579), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3579), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3579), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3579), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3633), + [anon_sym_LPAREN2] = ACTIONS(3635), + [anon_sym_BANG] = ACTIONS(3639), + [anon_sym_TILDE] = ACTIONS(3639), + [anon_sym_DASH] = ACTIONS(3637), + [anon_sym_PLUS] = ACTIONS(3637), + [anon_sym_STAR] = ACTIONS(3641), + [anon_sym_AMP] = ACTIONS(3641), + [anon_sym_COLON_COLON] = ACTIONS(3643), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(3637), + [anon_sym_compl] = ACTIONS(3637), + [anon_sym_DASH_DASH] = ACTIONS(3645), + [anon_sym_PLUS_PLUS] = ACTIONS(3645), + [anon_sym_sizeof] = ACTIONS(3647), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(3649), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(3651), + [anon_sym_new] = ACTIONS(3631), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), + }, + [2037] = { + [sym__expression] = STATE(4299), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3579), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3579), + [sym_call_expression] = STATE(3579), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3579), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3579), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3579), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3633), + [anon_sym_LPAREN2] = ACTIONS(3635), + [anon_sym_BANG] = ACTIONS(3639), + [anon_sym_TILDE] = ACTIONS(3639), + [anon_sym_DASH] = ACTIONS(3637), + [anon_sym_PLUS] = ACTIONS(3637), + [anon_sym_STAR] = ACTIONS(3641), + [anon_sym_AMP] = ACTIONS(3641), + [anon_sym_COLON_COLON] = ACTIONS(3643), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(3637), + [anon_sym_compl] = ACTIONS(3637), + [anon_sym_DASH_DASH] = ACTIONS(3645), + [anon_sym_PLUS_PLUS] = ACTIONS(3645), + [anon_sym_sizeof] = ACTIONS(3647), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(3649), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(3651), + [anon_sym_new] = ACTIONS(3631), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), + }, + [2038] = { + [sym__expression] = STATE(3944), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), + }, + [2039] = { + [sym__expression] = STATE(4110), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), + }, + [2040] = { + [sym__expression] = STATE(4316), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), + }, + [2041] = { + [sym__expression] = STATE(4046), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), + }, + [2042] = { + [sym__expression] = STATE(4255), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3509), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3509), + [sym_call_expression] = STATE(3509), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3509), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3509), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3509), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3613), + [anon_sym_LPAREN2] = ACTIONS(3615), + [anon_sym_BANG] = ACTIONS(3619), + [anon_sym_TILDE] = ACTIONS(3619), + [anon_sym_DASH] = ACTIONS(3617), + [anon_sym_PLUS] = ACTIONS(3617), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(3621), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(3617), + [anon_sym_compl] = ACTIONS(3617), + [anon_sym_DASH_DASH] = ACTIONS(3623), + [anon_sym_PLUS_PLUS] = ACTIONS(3623), + [anon_sym_sizeof] = ACTIONS(3625), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(3627), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(3629), + [anon_sym_new] = ACTIONS(3631), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), + }, + [2043] = { + [sym__expression] = STATE(3433), + [sym__expression_not_binary] = STATE(3021), + [sym_conditional_expression] = STATE(3021), + [sym_assignment_expression] = STATE(3021), + [sym_pointer_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_cast_expression] = STATE(3021), + [sym_sizeof_expression] = STATE(3021), + [sym_offsetof_expression] = STATE(3021), + [sym_generic_expression] = STATE(3021), + [sym_subscript_expression] = STATE(3021), + [sym_call_expression] = STATE(3021), + [sym_gnu_asm_expression] = STATE(3021), + [sym_field_expression] = STATE(3021), + [sym_compound_literal_expression] = STATE(3021), + [sym_parenthesized_expression] = STATE(3021), + [sym_char_literal] = STATE(2901), + [sym_concatenated_string] = STATE(2901), + [sym_string_literal] = STATE(2173), + [sym_null] = STATE(3021), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6616), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3021), + [sym_raw_string_literal] = STATE(2173), + [sym_co_await_expression] = STATE(3021), + [sym_new_expression] = STATE(3021), + [sym_delete_expression] = STATE(3021), + [sym_requires_clause] = STATE(3021), + [sym_requires_expression] = STATE(3021), + [sym_lambda_expression] = STATE(3021), + [sym_lambda_capture_specifier] = STATE(5188), + [sym_fold_expression] = STATE(3021), + [sym_parameter_pack_expansion] = STATE(3021), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3021), + [sym_qualified_type_identifier] = STATE(6616), + [sym_user_defined_literal] = STATE(3021), + [sym_identifier] = ACTIONS(1933), + [anon_sym_LPAREN2] = ACTIONS(2077), + [anon_sym_BANG] = ACTIONS(2081), + [anon_sym_TILDE] = ACTIONS(2081), + [anon_sym_DASH] = ACTIONS(2079), + [anon_sym_PLUS] = ACTIONS(2079), + [anon_sym_STAR] = ACTIONS(3641), + [anon_sym_AMP] = ACTIONS(3641), + [anon_sym_COLON_COLON] = ACTIONS(2085), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(2079), + [anon_sym_compl] = ACTIONS(2079), + [anon_sym_DASH_DASH] = ACTIONS(2087), + [anon_sym_PLUS_PLUS] = ACTIONS(2087), + [anon_sym_sizeof] = ACTIONS(2089), + [anon_sym_offsetof] = ACTIONS(1957), + [anon_sym__Generic] = ACTIONS(1959), + [anon_sym_asm] = ACTIONS(1961), + [anon_sym___asm__] = ACTIONS(1961), + [sym_number_literal] = ACTIONS(1963), + [anon_sym_L_SQUOTE] = ACTIONS(1965), + [anon_sym_u_SQUOTE] = ACTIONS(1965), + [anon_sym_U_SQUOTE] = ACTIONS(1965), + [anon_sym_u8_SQUOTE] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_L_DQUOTE] = ACTIONS(1967), + [anon_sym_u_DQUOTE] = ACTIONS(1967), + [anon_sym_U_DQUOTE] = ACTIONS(1967), + [anon_sym_u8_DQUOTE] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(1967), + [sym_true] = ACTIONS(1969), + [sym_false] = ACTIONS(1969), + [anon_sym_NULL] = ACTIONS(1971), + [anon_sym_nullptr] = ACTIONS(1971), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(2091), + [anon_sym_R_DQUOTE] = ACTIONS(1977), + [anon_sym_LR_DQUOTE] = ACTIONS(1977), + [anon_sym_uR_DQUOTE] = ACTIONS(1977), + [anon_sym_UR_DQUOTE] = ACTIONS(1977), + [anon_sym_u8R_DQUOTE] = ACTIONS(1977), + [anon_sym_co_await] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(1981), + [anon_sym_requires] = ACTIONS(1983), + [sym_this] = ACTIONS(1969), + }, + [2044] = { + [sym__expression] = STATE(3459), + [sym__expression_not_binary] = STATE(3021), + [sym_conditional_expression] = STATE(3021), + [sym_assignment_expression] = STATE(3021), + [sym_pointer_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_cast_expression] = STATE(3021), + [sym_sizeof_expression] = STATE(3021), + [sym_offsetof_expression] = STATE(3021), + [sym_generic_expression] = STATE(3021), + [sym_subscript_expression] = STATE(3021), + [sym_call_expression] = STATE(3021), + [sym_gnu_asm_expression] = STATE(3021), + [sym_field_expression] = STATE(3021), + [sym_compound_literal_expression] = STATE(3021), + [sym_parenthesized_expression] = STATE(3021), + [sym_char_literal] = STATE(2901), + [sym_concatenated_string] = STATE(2901), + [sym_string_literal] = STATE(2173), + [sym_null] = STATE(3021), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6616), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3021), + [sym_raw_string_literal] = STATE(2173), + [sym_co_await_expression] = STATE(3021), + [sym_new_expression] = STATE(3021), + [sym_delete_expression] = STATE(3021), + [sym_requires_clause] = STATE(3021), + [sym_requires_expression] = STATE(3021), + [sym_lambda_expression] = STATE(3021), + [sym_lambda_capture_specifier] = STATE(5188), + [sym_fold_expression] = STATE(3021), + [sym_parameter_pack_expansion] = STATE(3021), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3021), + [sym_qualified_type_identifier] = STATE(6616), + [sym_user_defined_literal] = STATE(3021), + [sym_identifier] = ACTIONS(1933), + [anon_sym_LPAREN2] = ACTIONS(2077), + [anon_sym_BANG] = ACTIONS(2081), + [anon_sym_TILDE] = ACTIONS(2081), + [anon_sym_DASH] = ACTIONS(2079), + [anon_sym_PLUS] = ACTIONS(2079), + [anon_sym_STAR] = ACTIONS(3641), + [anon_sym_AMP] = ACTIONS(3641), + [anon_sym_COLON_COLON] = ACTIONS(2085), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(2079), + [anon_sym_compl] = ACTIONS(2079), + [anon_sym_DASH_DASH] = ACTIONS(2087), + [anon_sym_PLUS_PLUS] = ACTIONS(2087), + [anon_sym_sizeof] = ACTIONS(2089), + [anon_sym_offsetof] = ACTIONS(1957), + [anon_sym__Generic] = ACTIONS(1959), + [anon_sym_asm] = ACTIONS(1961), + [anon_sym___asm__] = ACTIONS(1961), + [sym_number_literal] = ACTIONS(1963), + [anon_sym_L_SQUOTE] = ACTIONS(1965), + [anon_sym_u_SQUOTE] = ACTIONS(1965), + [anon_sym_U_SQUOTE] = ACTIONS(1965), + [anon_sym_u8_SQUOTE] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_L_DQUOTE] = ACTIONS(1967), + [anon_sym_u_DQUOTE] = ACTIONS(1967), + [anon_sym_U_DQUOTE] = ACTIONS(1967), + [anon_sym_u8_DQUOTE] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(1967), + [sym_true] = ACTIONS(1969), + [sym_false] = ACTIONS(1969), + [anon_sym_NULL] = ACTIONS(1971), + [anon_sym_nullptr] = ACTIONS(1971), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(2091), + [anon_sym_R_DQUOTE] = ACTIONS(1977), + [anon_sym_LR_DQUOTE] = ACTIONS(1977), + [anon_sym_uR_DQUOTE] = ACTIONS(1977), + [anon_sym_UR_DQUOTE] = ACTIONS(1977), + [anon_sym_u8R_DQUOTE] = ACTIONS(1977), + [anon_sym_co_await] = ACTIONS(2093), + [anon_sym_new] = ACTIONS(1981), + [anon_sym_requires] = ACTIONS(1983), + [sym_this] = ACTIONS(1969), + }, + [2045] = { + [sym__expression] = STATE(4254), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3509), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3509), + [sym_call_expression] = STATE(3509), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3509), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3509), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3509), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3613), + [anon_sym_LPAREN2] = ACTIONS(3615), + [anon_sym_BANG] = ACTIONS(3619), + [anon_sym_TILDE] = ACTIONS(3619), + [anon_sym_DASH] = ACTIONS(3617), + [anon_sym_PLUS] = ACTIONS(3617), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(3621), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(3617), + [anon_sym_compl] = ACTIONS(3617), + [anon_sym_DASH_DASH] = ACTIONS(3623), + [anon_sym_PLUS_PLUS] = ACTIONS(3623), + [anon_sym_sizeof] = ACTIONS(3625), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(3627), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(3629), + [anon_sym_new] = ACTIONS(3631), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), + }, + [2046] = { + [sym__expression] = STATE(3380), + [sym__expression_not_binary] = STATE(3513), + [sym_conditional_expression] = STATE(3513), + [sym_assignment_expression] = STATE(3513), + [sym_pointer_expression] = STATE(3513), + [sym_unary_expression] = STATE(3513), + [sym_binary_expression] = STATE(3513), + [sym_update_expression] = STATE(3513), + [sym_cast_expression] = STATE(3513), + [sym_sizeof_expression] = STATE(3513), + [sym_offsetof_expression] = STATE(3513), + [sym_generic_expression] = STATE(3513), + [sym_subscript_expression] = STATE(3513), + [sym_call_expression] = STATE(3513), + [sym_gnu_asm_expression] = STATE(3513), + [sym_field_expression] = STATE(3513), + [sym_compound_literal_expression] = STATE(3513), + [sym_parenthesized_expression] = STATE(3513), + [sym_char_literal] = STATE(3385), + [sym_concatenated_string] = STATE(3385), + [sym_string_literal] = STATE(2225), + [sym_null] = STATE(3513), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6957), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3513), + [sym_raw_string_literal] = STATE(2225), + [sym_co_await_expression] = STATE(3513), + [sym_new_expression] = STATE(3513), + [sym_delete_expression] = STATE(3513), + [sym_requires_clause] = STATE(3513), + [sym_requires_expression] = STATE(3513), + [sym_lambda_expression] = STATE(3513), + [sym_lambda_capture_specifier] = STATE(5162), + [sym_fold_expression] = STATE(3513), + [sym_parameter_pack_expansion] = STATE(3513), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5289), + [sym_qualified_identifier] = STATE(3513), + [sym_qualified_type_identifier] = STATE(6957), + [sym_user_defined_literal] = STATE(3513), + [sym_identifier] = ACTIONS(2031), + [anon_sym_LPAREN2] = ACTIONS(2033), + [anon_sym_BANG] = ACTIONS(2037), + [anon_sym_TILDE] = ACTIONS(2037), + [anon_sym_DASH] = ACTIONS(2035), + [anon_sym_PLUS] = ACTIONS(2035), + [anon_sym_STAR] = ACTIONS(2624), + [anon_sym_AMP] = ACTIONS(2624), + [anon_sym_COLON_COLON] = ACTIONS(2041), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(2045), + [anon_sym_not] = ACTIONS(2035), + [anon_sym_compl] = ACTIONS(2035), + [anon_sym_DASH_DASH] = ACTIONS(2047), + [anon_sym_PLUS_PLUS] = ACTIONS(2047), + [anon_sym_sizeof] = ACTIONS(2049), + [anon_sym_offsetof] = ACTIONS(2051), + [anon_sym__Generic] = ACTIONS(2053), + [anon_sym_asm] = ACTIONS(2055), + [anon_sym___asm__] = ACTIONS(2055), + [sym_number_literal] = ACTIONS(2057), + [anon_sym_L_SQUOTE] = ACTIONS(2059), + [anon_sym_u_SQUOTE] = ACTIONS(2059), + [anon_sym_U_SQUOTE] = ACTIONS(2059), + [anon_sym_u8_SQUOTE] = ACTIONS(2059), + [anon_sym_SQUOTE] = ACTIONS(2059), + [anon_sym_L_DQUOTE] = ACTIONS(2061), + [anon_sym_u_DQUOTE] = ACTIONS(2061), + [anon_sym_U_DQUOTE] = ACTIONS(2061), + [anon_sym_u8_DQUOTE] = ACTIONS(2061), + [anon_sym_DQUOTE] = ACTIONS(2061), + [sym_true] = ACTIONS(2063), + [sym_false] = ACTIONS(2063), + [anon_sym_NULL] = ACTIONS(2065), + [anon_sym_nullptr] = ACTIONS(2065), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(2067), + [anon_sym_R_DQUOTE] = ACTIONS(2069), + [anon_sym_LR_DQUOTE] = ACTIONS(2069), + [anon_sym_uR_DQUOTE] = ACTIONS(2069), + [anon_sym_UR_DQUOTE] = ACTIONS(2069), + [anon_sym_u8R_DQUOTE] = ACTIONS(2069), + [anon_sym_co_await] = ACTIONS(2071), + [anon_sym_new] = ACTIONS(2073), + [anon_sym_requires] = ACTIONS(2075), + [sym_this] = ACTIONS(2063), + }, + [2047] = { + [sym__expression] = STATE(4282), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), + }, + [2048] = { + [sym__expression] = STATE(4253), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3509), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3509), + [sym_call_expression] = STATE(3509), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3509), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3509), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3509), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3613), + [anon_sym_LPAREN2] = ACTIONS(3615), + [anon_sym_BANG] = ACTIONS(3619), + [anon_sym_TILDE] = ACTIONS(3619), + [anon_sym_DASH] = ACTIONS(3617), + [anon_sym_PLUS] = ACTIONS(3617), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(3621), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(3617), + [anon_sym_compl] = ACTIONS(3617), + [anon_sym_DASH_DASH] = ACTIONS(3623), + [anon_sym_PLUS_PLUS] = ACTIONS(3623), + [anon_sym_sizeof] = ACTIONS(3625), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(3627), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(3629), + [anon_sym_new] = ACTIONS(3631), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), + }, + [2049] = { + [sym__expression] = STATE(4127), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), + }, + [2050] = { + [sym__expression] = STATE(3375), + [sym__expression_not_binary] = STATE(3513), + [sym_conditional_expression] = STATE(3513), + [sym_assignment_expression] = STATE(3513), + [sym_pointer_expression] = STATE(3513), + [sym_unary_expression] = STATE(3513), + [sym_binary_expression] = STATE(3513), + [sym_update_expression] = STATE(3513), + [sym_cast_expression] = STATE(3513), + [sym_sizeof_expression] = STATE(3513), + [sym_offsetof_expression] = STATE(3513), + [sym_generic_expression] = STATE(3513), + [sym_subscript_expression] = STATE(3513), + [sym_call_expression] = STATE(3513), + [sym_gnu_asm_expression] = STATE(3513), + [sym_field_expression] = STATE(3513), + [sym_compound_literal_expression] = STATE(3513), + [sym_parenthesized_expression] = STATE(3513), + [sym_char_literal] = STATE(3385), + [sym_concatenated_string] = STATE(3385), + [sym_string_literal] = STATE(2225), + [sym_null] = STATE(3513), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6957), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3513), + [sym_raw_string_literal] = STATE(2225), + [sym_co_await_expression] = STATE(3513), + [sym_new_expression] = STATE(3513), + [sym_delete_expression] = STATE(3513), + [sym_requires_clause] = STATE(3513), + [sym_requires_expression] = STATE(3513), + [sym_lambda_expression] = STATE(3513), + [sym_lambda_capture_specifier] = STATE(5162), + [sym_fold_expression] = STATE(3513), + [sym_parameter_pack_expansion] = STATE(3513), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5289), + [sym_qualified_identifier] = STATE(3513), + [sym_qualified_type_identifier] = STATE(6957), + [sym_user_defined_literal] = STATE(3513), + [sym_identifier] = ACTIONS(2031), + [anon_sym_LPAREN2] = ACTIONS(2033), + [anon_sym_BANG] = ACTIONS(2037), + [anon_sym_TILDE] = ACTIONS(2037), + [anon_sym_DASH] = ACTIONS(2035), + [anon_sym_PLUS] = ACTIONS(2035), + [anon_sym_STAR] = ACTIONS(2624), + [anon_sym_AMP] = ACTIONS(2624), + [anon_sym_COLON_COLON] = ACTIONS(2041), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(2045), + [anon_sym_not] = ACTIONS(2035), + [anon_sym_compl] = ACTIONS(2035), + [anon_sym_DASH_DASH] = ACTIONS(2047), + [anon_sym_PLUS_PLUS] = ACTIONS(2047), + [anon_sym_sizeof] = ACTIONS(2049), + [anon_sym_offsetof] = ACTIONS(2051), + [anon_sym__Generic] = ACTIONS(2053), + [anon_sym_asm] = ACTIONS(2055), + [anon_sym___asm__] = ACTIONS(2055), + [sym_number_literal] = ACTIONS(2057), + [anon_sym_L_SQUOTE] = ACTIONS(2059), + [anon_sym_u_SQUOTE] = ACTIONS(2059), + [anon_sym_U_SQUOTE] = ACTIONS(2059), + [anon_sym_u8_SQUOTE] = ACTIONS(2059), + [anon_sym_SQUOTE] = ACTIONS(2059), + [anon_sym_L_DQUOTE] = ACTIONS(2061), + [anon_sym_u_DQUOTE] = ACTIONS(2061), + [anon_sym_U_DQUOTE] = ACTIONS(2061), + [anon_sym_u8_DQUOTE] = ACTIONS(2061), + [anon_sym_DQUOTE] = ACTIONS(2061), + [sym_true] = ACTIONS(2063), + [sym_false] = ACTIONS(2063), + [anon_sym_NULL] = ACTIONS(2065), + [anon_sym_nullptr] = ACTIONS(2065), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(2067), + [anon_sym_R_DQUOTE] = ACTIONS(2069), + [anon_sym_LR_DQUOTE] = ACTIONS(2069), + [anon_sym_uR_DQUOTE] = ACTIONS(2069), + [anon_sym_UR_DQUOTE] = ACTIONS(2069), + [anon_sym_u8R_DQUOTE] = ACTIONS(2069), + [anon_sym_co_await] = ACTIONS(2071), + [anon_sym_new] = ACTIONS(2073), + [anon_sym_requires] = ACTIONS(2075), + [sym_this] = ACTIONS(2063), + }, + [2051] = { + [sym__expression] = STATE(4336), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), + }, + [2052] = { + [sym__expression] = STATE(4334), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3509), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3509), + [sym_call_expression] = STATE(3509), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3509), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3509), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3509), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3613), + [anon_sym_LPAREN2] = ACTIONS(3615), + [anon_sym_BANG] = ACTIONS(3619), + [anon_sym_TILDE] = ACTIONS(3619), + [anon_sym_DASH] = ACTIONS(3617), + [anon_sym_PLUS] = ACTIONS(3617), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(3621), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(3617), + [anon_sym_compl] = ACTIONS(3617), + [anon_sym_DASH_DASH] = ACTIONS(3623), + [anon_sym_PLUS_PLUS] = ACTIONS(3623), + [anon_sym_sizeof] = ACTIONS(3625), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(3627), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(3629), + [anon_sym_new] = ACTIONS(3631), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), + }, + [2053] = { + [sym__expression] = STATE(2975), + [sym__expression_not_binary] = STATE(3021), + [sym_conditional_expression] = STATE(3021), + [sym_assignment_expression] = STATE(3021), + [sym_pointer_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_cast_expression] = STATE(3021), + [sym_sizeof_expression] = STATE(3021), + [sym_offsetof_expression] = STATE(3021), + [sym_generic_expression] = STATE(3021), + [sym_subscript_expression] = STATE(3021), + [sym_call_expression] = STATE(3021), + [sym_gnu_asm_expression] = STATE(3021), + [sym_field_expression] = STATE(3021), + [sym_compound_literal_expression] = STATE(3021), + [sym_parenthesized_expression] = STATE(3021), + [sym_char_literal] = STATE(2901), + [sym_concatenated_string] = STATE(2901), + [sym_string_literal] = STATE(2173), + [sym_null] = STATE(3021), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6616), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3021), + [sym_raw_string_literal] = STATE(2173), + [sym_co_await_expression] = STATE(3021), + [sym_new_expression] = STATE(3021), + [sym_delete_expression] = STATE(3021), + [sym_requires_clause] = STATE(3021), + [sym_requires_expression] = STATE(3021), + [sym_lambda_expression] = STATE(3021), + [sym_lambda_capture_specifier] = STATE(5188), + [sym_fold_expression] = STATE(3021), + [sym_parameter_pack_expansion] = STATE(3021), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3021), + [sym_qualified_type_identifier] = STATE(6616), + [sym_user_defined_literal] = STATE(3021), + [sym_identifier] = ACTIONS(1933), + [anon_sym_LPAREN2] = ACTIONS(1937), + [anon_sym_BANG] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(1941), + [anon_sym_DASH] = ACTIONS(1939), + [anon_sym_PLUS] = ACTIONS(1939), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(1945), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(1939), + [anon_sym_compl] = ACTIONS(1939), + [anon_sym_DASH_DASH] = ACTIONS(1953), + [anon_sym_PLUS_PLUS] = ACTIONS(1953), + [anon_sym_sizeof] = ACTIONS(1955), + [anon_sym_offsetof] = ACTIONS(1957), + [anon_sym__Generic] = ACTIONS(1959), + [anon_sym_asm] = ACTIONS(1961), + [anon_sym___asm__] = ACTIONS(1961), + [sym_number_literal] = ACTIONS(1963), + [anon_sym_L_SQUOTE] = ACTIONS(1965), + [anon_sym_u_SQUOTE] = ACTIONS(1965), + [anon_sym_U_SQUOTE] = ACTIONS(1965), + [anon_sym_u8_SQUOTE] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_L_DQUOTE] = ACTIONS(1967), + [anon_sym_u_DQUOTE] = ACTIONS(1967), + [anon_sym_U_DQUOTE] = ACTIONS(1967), + [anon_sym_u8_DQUOTE] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(1967), + [sym_true] = ACTIONS(1969), + [sym_false] = ACTIONS(1969), + [anon_sym_NULL] = ACTIONS(1971), + [anon_sym_nullptr] = ACTIONS(1971), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(1975), + [anon_sym_R_DQUOTE] = ACTIONS(1977), + [anon_sym_LR_DQUOTE] = ACTIONS(1977), + [anon_sym_uR_DQUOTE] = ACTIONS(1977), + [anon_sym_UR_DQUOTE] = ACTIONS(1977), + [anon_sym_u8R_DQUOTE] = ACTIONS(1977), + [anon_sym_co_await] = ACTIONS(1979), + [anon_sym_new] = ACTIONS(1981), + [anon_sym_requires] = ACTIONS(1983), + [sym_this] = ACTIONS(1969), + }, + [2054] = { + [sym__expression] = STATE(4395), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3579), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3579), + [sym_call_expression] = STATE(3579), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3579), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3579), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3579), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3633), + [anon_sym_LPAREN2] = ACTIONS(3635), + [anon_sym_BANG] = ACTIONS(3639), + [anon_sym_TILDE] = ACTIONS(3639), + [anon_sym_DASH] = ACTIONS(3637), + [anon_sym_PLUS] = ACTIONS(3637), + [anon_sym_STAR] = ACTIONS(3641), + [anon_sym_AMP] = ACTIONS(3641), + [anon_sym_COLON_COLON] = ACTIONS(3643), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(3637), + [anon_sym_compl] = ACTIONS(3637), + [anon_sym_DASH_DASH] = ACTIONS(3645), + [anon_sym_PLUS_PLUS] = ACTIONS(3645), + [anon_sym_sizeof] = ACTIONS(3647), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(3649), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(3651), + [anon_sym_new] = ACTIONS(3631), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), + }, + [2055] = { + [sym__expression] = STATE(3505), + [sym__expression_not_binary] = STATE(3565), + [sym_conditional_expression] = STATE(3565), + [sym_assignment_expression] = STATE(3565), + [sym_pointer_expression] = STATE(3220), + [sym_unary_expression] = STATE(3565), + [sym_binary_expression] = STATE(3565), + [sym_update_expression] = STATE(3565), + [sym_cast_expression] = STATE(3565), + [sym_sizeof_expression] = STATE(3565), + [sym_offsetof_expression] = STATE(3565), + [sym_generic_expression] = STATE(3565), + [sym_subscript_expression] = STATE(3220), + [sym_call_expression] = STATE(3220), + [sym_gnu_asm_expression] = STATE(3565), + [sym_field_expression] = STATE(3220), + [sym_compound_literal_expression] = STATE(3565), + [sym_parenthesized_expression] = STATE(3220), + [sym_char_literal] = STATE(3429), + [sym_concatenated_string] = STATE(3429), + [sym_string_literal] = STATE(2248), + [sym_null] = STATE(3565), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6847), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3565), + [sym_raw_string_literal] = STATE(2248), + [sym_co_await_expression] = STATE(3565), + [sym_new_expression] = STATE(3565), + [sym_delete_expression] = STATE(3565), + [sym_requires_clause] = STATE(3565), + [sym_requires_expression] = STATE(3565), + [sym_lambda_expression] = STATE(3565), + [sym_lambda_capture_specifier] = STATE(5204), + [sym_fold_expression] = STATE(3565), + [sym_parameter_pack_expansion] = STATE(3565), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5232), + [sym_qualified_identifier] = STATE(3220), + [sym_qualified_type_identifier] = STATE(6847), + [sym_user_defined_literal] = STATE(3565), + [sym_identifier] = ACTIONS(2095), + [anon_sym_LPAREN2] = ACTIONS(1841), + [anon_sym_BANG] = ACTIONS(1843), + [anon_sym_TILDE] = ACTIONS(1843), + [anon_sym_DASH] = ACTIONS(1845), + [anon_sym_PLUS] = ACTIONS(1845), + [anon_sym_STAR] = ACTIONS(1847), + [anon_sym_AMP] = ACTIONS(1847), + [anon_sym_COLON_COLON] = ACTIONS(1849), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1999), + [anon_sym_not] = ACTIONS(1845), + [anon_sym_compl] = ACTIONS(1845), + [anon_sym_DASH_DASH] = ACTIONS(1861), + [anon_sym_PLUS_PLUS] = ACTIONS(1861), + [anon_sym_sizeof] = ACTIONS(1863), + [anon_sym_offsetof] = ACTIONS(1865), + [anon_sym__Generic] = ACTIONS(1867), + [anon_sym_asm] = ACTIONS(1869), + [anon_sym___asm__] = ACTIONS(1869), + [sym_number_literal] = ACTIONS(1871), + [anon_sym_L_SQUOTE] = ACTIONS(1873), + [anon_sym_u_SQUOTE] = ACTIONS(1873), + [anon_sym_U_SQUOTE] = ACTIONS(1873), + [anon_sym_u8_SQUOTE] = ACTIONS(1873), + [anon_sym_SQUOTE] = ACTIONS(1873), + [anon_sym_L_DQUOTE] = ACTIONS(1875), + [anon_sym_u_DQUOTE] = ACTIONS(1875), + [anon_sym_U_DQUOTE] = ACTIONS(1875), + [anon_sym_u8_DQUOTE] = ACTIONS(1875), + [anon_sym_DQUOTE] = ACTIONS(1875), + [sym_true] = ACTIONS(1877), + [sym_false] = ACTIONS(1877), + [anon_sym_NULL] = ACTIONS(1879), + [anon_sym_nullptr] = ACTIONS(1879), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(1883), + [anon_sym_R_DQUOTE] = ACTIONS(1885), + [anon_sym_LR_DQUOTE] = ACTIONS(1885), + [anon_sym_uR_DQUOTE] = ACTIONS(1885), + [anon_sym_UR_DQUOTE] = ACTIONS(1885), + [anon_sym_u8R_DQUOTE] = ACTIONS(1885), + [anon_sym_co_await] = ACTIONS(1887), + [anon_sym_new] = ACTIONS(1889), + [anon_sym_requires] = ACTIONS(1891), + [sym_this] = ACTIONS(1877), + }, + [2056] = { + [sym__expression] = STATE(3359), + [sym__expression_not_binary] = STATE(3513), + [sym_conditional_expression] = STATE(3513), + [sym_assignment_expression] = STATE(3513), + [sym_pointer_expression] = STATE(3513), + [sym_unary_expression] = STATE(3513), + [sym_binary_expression] = STATE(3513), + [sym_update_expression] = STATE(3513), + [sym_cast_expression] = STATE(3513), + [sym_sizeof_expression] = STATE(3513), + [sym_offsetof_expression] = STATE(3513), + [sym_generic_expression] = STATE(3513), + [sym_subscript_expression] = STATE(3513), + [sym_call_expression] = STATE(3513), + [sym_gnu_asm_expression] = STATE(3513), + [sym_field_expression] = STATE(3513), + [sym_compound_literal_expression] = STATE(3513), + [sym_parenthesized_expression] = STATE(3513), + [sym_char_literal] = STATE(3385), + [sym_concatenated_string] = STATE(3385), + [sym_string_literal] = STATE(2225), + [sym_null] = STATE(3513), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6957), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3513), + [sym_raw_string_literal] = STATE(2225), + [sym_co_await_expression] = STATE(3513), + [sym_new_expression] = STATE(3513), + [sym_delete_expression] = STATE(3513), + [sym_requires_clause] = STATE(3513), + [sym_requires_expression] = STATE(3513), + [sym_lambda_expression] = STATE(3513), + [sym_lambda_capture_specifier] = STATE(5162), + [sym_fold_expression] = STATE(3513), + [sym_parameter_pack_expansion] = STATE(3513), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5289), + [sym_qualified_identifier] = STATE(3513), + [sym_qualified_type_identifier] = STATE(6957), + [sym_user_defined_literal] = STATE(3513), + [sym_identifier] = ACTIONS(2031), + [anon_sym_LPAREN2] = ACTIONS(2033), + [anon_sym_BANG] = ACTIONS(2037), + [anon_sym_TILDE] = ACTIONS(2037), + [anon_sym_DASH] = ACTIONS(2035), + [anon_sym_PLUS] = ACTIONS(2035), + [anon_sym_STAR] = ACTIONS(2624), + [anon_sym_AMP] = ACTIONS(2624), + [anon_sym_COLON_COLON] = ACTIONS(2041), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(2045), + [anon_sym_not] = ACTIONS(2035), + [anon_sym_compl] = ACTIONS(2035), + [anon_sym_DASH_DASH] = ACTIONS(2047), + [anon_sym_PLUS_PLUS] = ACTIONS(2047), + [anon_sym_sizeof] = ACTIONS(2049), + [anon_sym_offsetof] = ACTIONS(2051), + [anon_sym__Generic] = ACTIONS(2053), + [anon_sym_asm] = ACTIONS(2055), + [anon_sym___asm__] = ACTIONS(2055), + [sym_number_literal] = ACTIONS(2057), + [anon_sym_L_SQUOTE] = ACTIONS(2059), + [anon_sym_u_SQUOTE] = ACTIONS(2059), + [anon_sym_U_SQUOTE] = ACTIONS(2059), + [anon_sym_u8_SQUOTE] = ACTIONS(2059), + [anon_sym_SQUOTE] = ACTIONS(2059), + [anon_sym_L_DQUOTE] = ACTIONS(2061), + [anon_sym_u_DQUOTE] = ACTIONS(2061), + [anon_sym_U_DQUOTE] = ACTIONS(2061), + [anon_sym_u8_DQUOTE] = ACTIONS(2061), + [anon_sym_DQUOTE] = ACTIONS(2061), + [sym_true] = ACTIONS(2063), + [sym_false] = ACTIONS(2063), + [anon_sym_NULL] = ACTIONS(2065), + [anon_sym_nullptr] = ACTIONS(2065), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(2067), + [anon_sym_R_DQUOTE] = ACTIONS(2069), + [anon_sym_LR_DQUOTE] = ACTIONS(2069), + [anon_sym_uR_DQUOTE] = ACTIONS(2069), + [anon_sym_UR_DQUOTE] = ACTIONS(2069), + [anon_sym_u8R_DQUOTE] = ACTIONS(2069), + [anon_sym_co_await] = ACTIONS(2071), + [anon_sym_new] = ACTIONS(2073), + [anon_sym_requires] = ACTIONS(2075), + [sym_this] = ACTIONS(2063), + }, + [2057] = { + [sym__expression] = STATE(3039), + [sym__expression_not_binary] = STATE(3021), + [sym_conditional_expression] = STATE(3021), + [sym_assignment_expression] = STATE(3021), + [sym_pointer_expression] = STATE(3021), + [sym_unary_expression] = STATE(3021), + [sym_binary_expression] = STATE(3021), + [sym_update_expression] = STATE(3021), + [sym_cast_expression] = STATE(3021), + [sym_sizeof_expression] = STATE(3021), + [sym_offsetof_expression] = STATE(3021), + [sym_generic_expression] = STATE(3021), + [sym_subscript_expression] = STATE(3021), + [sym_call_expression] = STATE(3021), + [sym_gnu_asm_expression] = STATE(3021), + [sym_field_expression] = STATE(3021), + [sym_compound_literal_expression] = STATE(3021), + [sym_parenthesized_expression] = STATE(3021), + [sym_char_literal] = STATE(2901), + [sym_concatenated_string] = STATE(2901), + [sym_string_literal] = STATE(2173), + [sym_null] = STATE(3021), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6616), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3021), + [sym_raw_string_literal] = STATE(2173), + [sym_co_await_expression] = STATE(3021), + [sym_new_expression] = STATE(3021), + [sym_delete_expression] = STATE(3021), + [sym_requires_clause] = STATE(3021), + [sym_requires_expression] = STATE(3021), + [sym_lambda_expression] = STATE(3021), + [sym_lambda_capture_specifier] = STATE(5188), + [sym_fold_expression] = STATE(3021), + [sym_parameter_pack_expansion] = STATE(3021), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3021), + [sym_qualified_type_identifier] = STATE(6616), + [sym_user_defined_literal] = STATE(3021), + [sym_identifier] = ACTIONS(1933), + [anon_sym_LPAREN2] = ACTIONS(1937), + [anon_sym_BANG] = ACTIONS(1941), + [anon_sym_TILDE] = ACTIONS(1941), + [anon_sym_DASH] = ACTIONS(1939), + [anon_sym_PLUS] = ACTIONS(1939), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(1945), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(1939), + [anon_sym_compl] = ACTIONS(1939), + [anon_sym_DASH_DASH] = ACTIONS(1953), + [anon_sym_PLUS_PLUS] = ACTIONS(1953), + [anon_sym_sizeof] = ACTIONS(1955), + [anon_sym_offsetof] = ACTIONS(1957), + [anon_sym__Generic] = ACTIONS(1959), + [anon_sym_asm] = ACTIONS(1961), + [anon_sym___asm__] = ACTIONS(1961), + [sym_number_literal] = ACTIONS(1963), + [anon_sym_L_SQUOTE] = ACTIONS(1965), + [anon_sym_u_SQUOTE] = ACTIONS(1965), + [anon_sym_U_SQUOTE] = ACTIONS(1965), + [anon_sym_u8_SQUOTE] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_L_DQUOTE] = ACTIONS(1967), + [anon_sym_u_DQUOTE] = ACTIONS(1967), + [anon_sym_U_DQUOTE] = ACTIONS(1967), + [anon_sym_u8_DQUOTE] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(1967), + [sym_true] = ACTIONS(1969), + [sym_false] = ACTIONS(1969), + [anon_sym_NULL] = ACTIONS(1971), + [anon_sym_nullptr] = ACTIONS(1971), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(1975), + [anon_sym_R_DQUOTE] = ACTIONS(1977), + [anon_sym_LR_DQUOTE] = ACTIONS(1977), + [anon_sym_uR_DQUOTE] = ACTIONS(1977), + [anon_sym_UR_DQUOTE] = ACTIONS(1977), + [anon_sym_u8R_DQUOTE] = ACTIONS(1977), + [anon_sym_co_await] = ACTIONS(1979), + [anon_sym_new] = ACTIONS(1981), + [anon_sym_requires] = ACTIONS(1983), + [sym_this] = ACTIONS(1969), + }, + [2058] = { + [sym__expression] = STATE(4407), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3579), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3579), + [sym_call_expression] = STATE(3579), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3579), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3579), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3579), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3633), + [anon_sym_LPAREN2] = ACTIONS(3635), + [anon_sym_BANG] = ACTIONS(3639), + [anon_sym_TILDE] = ACTIONS(3639), + [anon_sym_DASH] = ACTIONS(3637), + [anon_sym_PLUS] = ACTIONS(3637), + [anon_sym_STAR] = ACTIONS(3641), + [anon_sym_AMP] = ACTIONS(3641), + [anon_sym_COLON_COLON] = ACTIONS(3643), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(3637), + [anon_sym_compl] = ACTIONS(3637), + [anon_sym_DASH_DASH] = ACTIONS(3645), + [anon_sym_PLUS_PLUS] = ACTIONS(3645), + [anon_sym_sizeof] = ACTIONS(3647), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(3649), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(3651), + [anon_sym_new] = ACTIONS(3631), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), + }, + [2059] = { + [sym__expression] = STATE(3508), + [sym__expression_not_binary] = STATE(3565), + [sym_conditional_expression] = STATE(3565), + [sym_assignment_expression] = STATE(3565), + [sym_pointer_expression] = STATE(3220), + [sym_unary_expression] = STATE(3565), + [sym_binary_expression] = STATE(3565), + [sym_update_expression] = STATE(3565), + [sym_cast_expression] = STATE(3565), + [sym_sizeof_expression] = STATE(3565), + [sym_offsetof_expression] = STATE(3565), + [sym_generic_expression] = STATE(3565), + [sym_subscript_expression] = STATE(3220), + [sym_call_expression] = STATE(3220), + [sym_gnu_asm_expression] = STATE(3565), + [sym_field_expression] = STATE(3220), + [sym_compound_literal_expression] = STATE(3565), + [sym_parenthesized_expression] = STATE(3220), + [sym_char_literal] = STATE(3429), + [sym_concatenated_string] = STATE(3429), + [sym_string_literal] = STATE(2248), + [sym_null] = STATE(3565), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6847), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3565), + [sym_raw_string_literal] = STATE(2248), + [sym_co_await_expression] = STATE(3565), + [sym_new_expression] = STATE(3565), + [sym_delete_expression] = STATE(3565), + [sym_requires_clause] = STATE(3565), + [sym_requires_expression] = STATE(3565), + [sym_lambda_expression] = STATE(3565), + [sym_lambda_capture_specifier] = STATE(5204), + [sym_fold_expression] = STATE(3565), + [sym_parameter_pack_expansion] = STATE(3565), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5232), + [sym_qualified_identifier] = STATE(3220), + [sym_qualified_type_identifier] = STATE(6847), + [sym_user_defined_literal] = STATE(3565), + [sym_identifier] = ACTIONS(2095), + [anon_sym_LPAREN2] = ACTIONS(1841), + [anon_sym_BANG] = ACTIONS(1843), + [anon_sym_TILDE] = ACTIONS(1843), + [anon_sym_DASH] = ACTIONS(1845), + [anon_sym_PLUS] = ACTIONS(1845), + [anon_sym_STAR] = ACTIONS(1847), + [anon_sym_AMP] = ACTIONS(1847), + [anon_sym_COLON_COLON] = ACTIONS(1849), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1999), + [anon_sym_not] = ACTIONS(1845), + [anon_sym_compl] = ACTIONS(1845), + [anon_sym_DASH_DASH] = ACTIONS(1861), + [anon_sym_PLUS_PLUS] = ACTIONS(1861), + [anon_sym_sizeof] = ACTIONS(1863), + [anon_sym_offsetof] = ACTIONS(1865), + [anon_sym__Generic] = ACTIONS(1867), + [anon_sym_asm] = ACTIONS(1869), + [anon_sym___asm__] = ACTIONS(1869), + [sym_number_literal] = ACTIONS(1871), + [anon_sym_L_SQUOTE] = ACTIONS(1873), + [anon_sym_u_SQUOTE] = ACTIONS(1873), + [anon_sym_U_SQUOTE] = ACTIONS(1873), + [anon_sym_u8_SQUOTE] = ACTIONS(1873), + [anon_sym_SQUOTE] = ACTIONS(1873), + [anon_sym_L_DQUOTE] = ACTIONS(1875), + [anon_sym_u_DQUOTE] = ACTIONS(1875), + [anon_sym_U_DQUOTE] = ACTIONS(1875), + [anon_sym_u8_DQUOTE] = ACTIONS(1875), + [anon_sym_DQUOTE] = ACTIONS(1875), + [sym_true] = ACTIONS(1877), + [sym_false] = ACTIONS(1877), + [anon_sym_NULL] = ACTIONS(1879), + [anon_sym_nullptr] = ACTIONS(1879), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(1883), + [anon_sym_R_DQUOTE] = ACTIONS(1885), + [anon_sym_LR_DQUOTE] = ACTIONS(1885), + [anon_sym_uR_DQUOTE] = ACTIONS(1885), + [anon_sym_UR_DQUOTE] = ACTIONS(1885), + [anon_sym_u8R_DQUOTE] = ACTIONS(1885), + [anon_sym_co_await] = ACTIONS(1887), + [anon_sym_new] = ACTIONS(1889), + [anon_sym_requires] = ACTIONS(1891), + [sym_this] = ACTIONS(1877), + }, + [2060] = { + [sym__expression] = STATE(3510), + [sym__expression_not_binary] = STATE(3565), + [sym_conditional_expression] = STATE(3565), + [sym_assignment_expression] = STATE(3565), + [sym_pointer_expression] = STATE(3220), + [sym_unary_expression] = STATE(3565), + [sym_binary_expression] = STATE(3565), + [sym_update_expression] = STATE(3565), + [sym_cast_expression] = STATE(3565), + [sym_sizeof_expression] = STATE(3565), + [sym_offsetof_expression] = STATE(3565), + [sym_generic_expression] = STATE(3565), + [sym_subscript_expression] = STATE(3220), + [sym_call_expression] = STATE(3220), + [sym_gnu_asm_expression] = STATE(3565), + [sym_field_expression] = STATE(3220), + [sym_compound_literal_expression] = STATE(3565), + [sym_parenthesized_expression] = STATE(3220), + [sym_char_literal] = STATE(3429), + [sym_concatenated_string] = STATE(3429), + [sym_string_literal] = STATE(2248), + [sym_null] = STATE(3565), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6847), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3565), + [sym_raw_string_literal] = STATE(2248), + [sym_co_await_expression] = STATE(3565), + [sym_new_expression] = STATE(3565), + [sym_delete_expression] = STATE(3565), + [sym_requires_clause] = STATE(3565), + [sym_requires_expression] = STATE(3565), + [sym_lambda_expression] = STATE(3565), + [sym_lambda_capture_specifier] = STATE(5204), + [sym_fold_expression] = STATE(3565), + [sym_parameter_pack_expansion] = STATE(3565), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5232), + [sym_qualified_identifier] = STATE(3220), + [sym_qualified_type_identifier] = STATE(6847), + [sym_user_defined_literal] = STATE(3565), + [sym_identifier] = ACTIONS(2095), + [anon_sym_LPAREN2] = ACTIONS(1841), + [anon_sym_BANG] = ACTIONS(1843), + [anon_sym_TILDE] = ACTIONS(1843), + [anon_sym_DASH] = ACTIONS(1845), + [anon_sym_PLUS] = ACTIONS(1845), + [anon_sym_STAR] = ACTIONS(1847), + [anon_sym_AMP] = ACTIONS(1847), + [anon_sym_COLON_COLON] = ACTIONS(1849), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1999), + [anon_sym_not] = ACTIONS(1845), + [anon_sym_compl] = ACTIONS(1845), + [anon_sym_DASH_DASH] = ACTIONS(1861), + [anon_sym_PLUS_PLUS] = ACTIONS(1861), + [anon_sym_sizeof] = ACTIONS(1863), + [anon_sym_offsetof] = ACTIONS(1865), + [anon_sym__Generic] = ACTIONS(1867), + [anon_sym_asm] = ACTIONS(1869), + [anon_sym___asm__] = ACTIONS(1869), + [sym_number_literal] = ACTIONS(1871), + [anon_sym_L_SQUOTE] = ACTIONS(1873), + [anon_sym_u_SQUOTE] = ACTIONS(1873), + [anon_sym_U_SQUOTE] = ACTIONS(1873), + [anon_sym_u8_SQUOTE] = ACTIONS(1873), + [anon_sym_SQUOTE] = ACTIONS(1873), + [anon_sym_L_DQUOTE] = ACTIONS(1875), + [anon_sym_u_DQUOTE] = ACTIONS(1875), + [anon_sym_U_DQUOTE] = ACTIONS(1875), + [anon_sym_u8_DQUOTE] = ACTIONS(1875), + [anon_sym_DQUOTE] = ACTIONS(1875), + [sym_true] = ACTIONS(1877), + [sym_false] = ACTIONS(1877), + [anon_sym_NULL] = ACTIONS(1879), + [anon_sym_nullptr] = ACTIONS(1879), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(1883), + [anon_sym_R_DQUOTE] = ACTIONS(1885), + [anon_sym_LR_DQUOTE] = ACTIONS(1885), + [anon_sym_uR_DQUOTE] = ACTIONS(1885), + [anon_sym_UR_DQUOTE] = ACTIONS(1885), + [anon_sym_u8R_DQUOTE] = ACTIONS(1885), + [anon_sym_co_await] = ACTIONS(1887), + [anon_sym_new] = ACTIONS(1889), + [anon_sym_requires] = ACTIONS(1891), + [sym_this] = ACTIONS(1877), + }, + [2061] = { + [sym__expression] = STATE(3511), + [sym__expression_not_binary] = STATE(3565), + [sym_conditional_expression] = STATE(3565), + [sym_assignment_expression] = STATE(3565), + [sym_pointer_expression] = STATE(3220), + [sym_unary_expression] = STATE(3565), + [sym_binary_expression] = STATE(3565), + [sym_update_expression] = STATE(3565), + [sym_cast_expression] = STATE(3565), + [sym_sizeof_expression] = STATE(3565), + [sym_offsetof_expression] = STATE(3565), + [sym_generic_expression] = STATE(3565), + [sym_subscript_expression] = STATE(3220), + [sym_call_expression] = STATE(3220), + [sym_gnu_asm_expression] = STATE(3565), + [sym_field_expression] = STATE(3220), + [sym_compound_literal_expression] = STATE(3565), + [sym_parenthesized_expression] = STATE(3220), + [sym_char_literal] = STATE(3429), + [sym_concatenated_string] = STATE(3429), + [sym_string_literal] = STATE(2248), + [sym_null] = STATE(3565), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6847), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3565), + [sym_raw_string_literal] = STATE(2248), + [sym_co_await_expression] = STATE(3565), + [sym_new_expression] = STATE(3565), + [sym_delete_expression] = STATE(3565), + [sym_requires_clause] = STATE(3565), + [sym_requires_expression] = STATE(3565), + [sym_lambda_expression] = STATE(3565), + [sym_lambda_capture_specifier] = STATE(5204), + [sym_fold_expression] = STATE(3565), + [sym_parameter_pack_expansion] = STATE(3565), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5232), + [sym_qualified_identifier] = STATE(3220), + [sym_qualified_type_identifier] = STATE(6847), + [sym_user_defined_literal] = STATE(3565), + [sym_identifier] = ACTIONS(2095), + [anon_sym_LPAREN2] = ACTIONS(1841), + [anon_sym_BANG] = ACTIONS(1843), + [anon_sym_TILDE] = ACTIONS(1843), + [anon_sym_DASH] = ACTIONS(1845), + [anon_sym_PLUS] = ACTIONS(1845), + [anon_sym_STAR] = ACTIONS(1847), + [anon_sym_AMP] = ACTIONS(1847), + [anon_sym_COLON_COLON] = ACTIONS(1849), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1999), + [anon_sym_not] = ACTIONS(1845), + [anon_sym_compl] = ACTIONS(1845), + [anon_sym_DASH_DASH] = ACTIONS(1861), + [anon_sym_PLUS_PLUS] = ACTIONS(1861), + [anon_sym_sizeof] = ACTIONS(1863), + [anon_sym_offsetof] = ACTIONS(1865), + [anon_sym__Generic] = ACTIONS(1867), + [anon_sym_asm] = ACTIONS(1869), + [anon_sym___asm__] = ACTIONS(1869), + [sym_number_literal] = ACTIONS(1871), + [anon_sym_L_SQUOTE] = ACTIONS(1873), + [anon_sym_u_SQUOTE] = ACTIONS(1873), + [anon_sym_U_SQUOTE] = ACTIONS(1873), + [anon_sym_u8_SQUOTE] = ACTIONS(1873), + [anon_sym_SQUOTE] = ACTIONS(1873), + [anon_sym_L_DQUOTE] = ACTIONS(1875), + [anon_sym_u_DQUOTE] = ACTIONS(1875), + [anon_sym_U_DQUOTE] = ACTIONS(1875), + [anon_sym_u8_DQUOTE] = ACTIONS(1875), + [anon_sym_DQUOTE] = ACTIONS(1875), + [sym_true] = ACTIONS(1877), + [sym_false] = ACTIONS(1877), + [anon_sym_NULL] = ACTIONS(1879), + [anon_sym_nullptr] = ACTIONS(1879), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(1883), + [anon_sym_R_DQUOTE] = ACTIONS(1885), + [anon_sym_LR_DQUOTE] = ACTIONS(1885), + [anon_sym_uR_DQUOTE] = ACTIONS(1885), + [anon_sym_UR_DQUOTE] = ACTIONS(1885), + [anon_sym_u8R_DQUOTE] = ACTIONS(1885), + [anon_sym_co_await] = ACTIONS(1887), + [anon_sym_new] = ACTIONS(1889), + [anon_sym_requires] = ACTIONS(1891), + [sym_this] = ACTIONS(1877), + }, + [2062] = { + [sym__expression] = STATE(3512), + [sym__expression_not_binary] = STATE(3565), + [sym_conditional_expression] = STATE(3565), + [sym_assignment_expression] = STATE(3565), + [sym_pointer_expression] = STATE(3220), + [sym_unary_expression] = STATE(3565), + [sym_binary_expression] = STATE(3565), + [sym_update_expression] = STATE(3565), + [sym_cast_expression] = STATE(3565), + [sym_sizeof_expression] = STATE(3565), + [sym_offsetof_expression] = STATE(3565), + [sym_generic_expression] = STATE(3565), + [sym_subscript_expression] = STATE(3220), + [sym_call_expression] = STATE(3220), + [sym_gnu_asm_expression] = STATE(3565), + [sym_field_expression] = STATE(3220), + [sym_compound_literal_expression] = STATE(3565), + [sym_parenthesized_expression] = STATE(3220), + [sym_char_literal] = STATE(3429), + [sym_concatenated_string] = STATE(3429), + [sym_string_literal] = STATE(2248), + [sym_null] = STATE(3565), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6847), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3565), + [sym_raw_string_literal] = STATE(2248), + [sym_co_await_expression] = STATE(3565), + [sym_new_expression] = STATE(3565), + [sym_delete_expression] = STATE(3565), + [sym_requires_clause] = STATE(3565), + [sym_requires_expression] = STATE(3565), + [sym_lambda_expression] = STATE(3565), + [sym_lambda_capture_specifier] = STATE(5204), + [sym_fold_expression] = STATE(3565), + [sym_parameter_pack_expansion] = STATE(3565), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5232), + [sym_qualified_identifier] = STATE(3220), + [sym_qualified_type_identifier] = STATE(6847), + [sym_user_defined_literal] = STATE(3565), + [sym_identifier] = ACTIONS(2095), + [anon_sym_LPAREN2] = ACTIONS(1841), + [anon_sym_BANG] = ACTIONS(1843), + [anon_sym_TILDE] = ACTIONS(1843), + [anon_sym_DASH] = ACTIONS(1845), + [anon_sym_PLUS] = ACTIONS(1845), + [anon_sym_STAR] = ACTIONS(1847), + [anon_sym_AMP] = ACTIONS(1847), + [anon_sym_COLON_COLON] = ACTIONS(1849), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1999), + [anon_sym_not] = ACTIONS(1845), + [anon_sym_compl] = ACTIONS(1845), + [anon_sym_DASH_DASH] = ACTIONS(1861), + [anon_sym_PLUS_PLUS] = ACTIONS(1861), + [anon_sym_sizeof] = ACTIONS(1863), + [anon_sym_offsetof] = ACTIONS(1865), + [anon_sym__Generic] = ACTIONS(1867), + [anon_sym_asm] = ACTIONS(1869), + [anon_sym___asm__] = ACTIONS(1869), + [sym_number_literal] = ACTIONS(1871), + [anon_sym_L_SQUOTE] = ACTIONS(1873), + [anon_sym_u_SQUOTE] = ACTIONS(1873), + [anon_sym_U_SQUOTE] = ACTIONS(1873), + [anon_sym_u8_SQUOTE] = ACTIONS(1873), + [anon_sym_SQUOTE] = ACTIONS(1873), + [anon_sym_L_DQUOTE] = ACTIONS(1875), + [anon_sym_u_DQUOTE] = ACTIONS(1875), + [anon_sym_U_DQUOTE] = ACTIONS(1875), + [anon_sym_u8_DQUOTE] = ACTIONS(1875), + [anon_sym_DQUOTE] = ACTIONS(1875), + [sym_true] = ACTIONS(1877), + [sym_false] = ACTIONS(1877), + [anon_sym_NULL] = ACTIONS(1879), + [anon_sym_nullptr] = ACTIONS(1879), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(1883), + [anon_sym_R_DQUOTE] = ACTIONS(1885), + [anon_sym_LR_DQUOTE] = ACTIONS(1885), + [anon_sym_uR_DQUOTE] = ACTIONS(1885), + [anon_sym_UR_DQUOTE] = ACTIONS(1885), + [anon_sym_u8R_DQUOTE] = ACTIONS(1885), + [anon_sym_co_await] = ACTIONS(1887), + [anon_sym_new] = ACTIONS(1889), + [anon_sym_requires] = ACTIONS(1891), + [sym_this] = ACTIONS(1877), + }, + [2063] = { + [sym__expression] = STATE(3514), + [sym__expression_not_binary] = STATE(3565), + [sym_conditional_expression] = STATE(3565), + [sym_assignment_expression] = STATE(3565), + [sym_pointer_expression] = STATE(3220), + [sym_unary_expression] = STATE(3565), + [sym_binary_expression] = STATE(3565), + [sym_update_expression] = STATE(3565), + [sym_cast_expression] = STATE(3565), + [sym_sizeof_expression] = STATE(3565), + [sym_offsetof_expression] = STATE(3565), + [sym_generic_expression] = STATE(3565), + [sym_subscript_expression] = STATE(3220), + [sym_call_expression] = STATE(3220), + [sym_gnu_asm_expression] = STATE(3565), + [sym_field_expression] = STATE(3220), + [sym_compound_literal_expression] = STATE(3565), + [sym_parenthesized_expression] = STATE(3220), + [sym_char_literal] = STATE(3429), + [sym_concatenated_string] = STATE(3429), + [sym_string_literal] = STATE(2248), + [sym_null] = STATE(3565), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6847), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3565), + [sym_raw_string_literal] = STATE(2248), + [sym_co_await_expression] = STATE(3565), + [sym_new_expression] = STATE(3565), + [sym_delete_expression] = STATE(3565), + [sym_requires_clause] = STATE(3565), + [sym_requires_expression] = STATE(3565), + [sym_lambda_expression] = STATE(3565), + [sym_lambda_capture_specifier] = STATE(5204), + [sym_fold_expression] = STATE(3565), + [sym_parameter_pack_expansion] = STATE(3565), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5232), + [sym_qualified_identifier] = STATE(3220), + [sym_qualified_type_identifier] = STATE(6847), + [sym_user_defined_literal] = STATE(3565), + [sym_identifier] = ACTIONS(2095), + [anon_sym_LPAREN2] = ACTIONS(1841), + [anon_sym_BANG] = ACTIONS(1843), + [anon_sym_TILDE] = ACTIONS(1843), + [anon_sym_DASH] = ACTIONS(1845), + [anon_sym_PLUS] = ACTIONS(1845), + [anon_sym_STAR] = ACTIONS(1847), + [anon_sym_AMP] = ACTIONS(1847), + [anon_sym_COLON_COLON] = ACTIONS(1849), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1999), + [anon_sym_not] = ACTIONS(1845), + [anon_sym_compl] = ACTIONS(1845), + [anon_sym_DASH_DASH] = ACTIONS(1861), + [anon_sym_PLUS_PLUS] = ACTIONS(1861), + [anon_sym_sizeof] = ACTIONS(1863), + [anon_sym_offsetof] = ACTIONS(1865), + [anon_sym__Generic] = ACTIONS(1867), + [anon_sym_asm] = ACTIONS(1869), + [anon_sym___asm__] = ACTIONS(1869), + [sym_number_literal] = ACTIONS(1871), + [anon_sym_L_SQUOTE] = ACTIONS(1873), + [anon_sym_u_SQUOTE] = ACTIONS(1873), + [anon_sym_U_SQUOTE] = ACTIONS(1873), + [anon_sym_u8_SQUOTE] = ACTIONS(1873), + [anon_sym_SQUOTE] = ACTIONS(1873), + [anon_sym_L_DQUOTE] = ACTIONS(1875), + [anon_sym_u_DQUOTE] = ACTIONS(1875), + [anon_sym_U_DQUOTE] = ACTIONS(1875), + [anon_sym_u8_DQUOTE] = ACTIONS(1875), + [anon_sym_DQUOTE] = ACTIONS(1875), + [sym_true] = ACTIONS(1877), + [sym_false] = ACTIONS(1877), + [anon_sym_NULL] = ACTIONS(1879), + [anon_sym_nullptr] = ACTIONS(1879), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(1883), + [anon_sym_R_DQUOTE] = ACTIONS(1885), + [anon_sym_LR_DQUOTE] = ACTIONS(1885), + [anon_sym_uR_DQUOTE] = ACTIONS(1885), + [anon_sym_UR_DQUOTE] = ACTIONS(1885), + [anon_sym_u8R_DQUOTE] = ACTIONS(1885), + [anon_sym_co_await] = ACTIONS(1887), + [anon_sym_new] = ACTIONS(1889), + [anon_sym_requires] = ACTIONS(1891), + [sym_this] = ACTIONS(1877), + }, + [2064] = { + [sym__expression] = STATE(3517), + [sym__expression_not_binary] = STATE(3565), + [sym_conditional_expression] = STATE(3565), + [sym_assignment_expression] = STATE(3565), + [sym_pointer_expression] = STATE(3220), + [sym_unary_expression] = STATE(3565), + [sym_binary_expression] = STATE(3565), + [sym_update_expression] = STATE(3565), + [sym_cast_expression] = STATE(3565), + [sym_sizeof_expression] = STATE(3565), + [sym_offsetof_expression] = STATE(3565), + [sym_generic_expression] = STATE(3565), + [sym_subscript_expression] = STATE(3220), + [sym_call_expression] = STATE(3220), + [sym_gnu_asm_expression] = STATE(3565), + [sym_field_expression] = STATE(3220), + [sym_compound_literal_expression] = STATE(3565), + [sym_parenthesized_expression] = STATE(3220), + [sym_char_literal] = STATE(3429), + [sym_concatenated_string] = STATE(3429), + [sym_string_literal] = STATE(2248), + [sym_null] = STATE(3565), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6847), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3565), + [sym_raw_string_literal] = STATE(2248), + [sym_co_await_expression] = STATE(3565), + [sym_new_expression] = STATE(3565), + [sym_delete_expression] = STATE(3565), + [sym_requires_clause] = STATE(3565), + [sym_requires_expression] = STATE(3565), + [sym_lambda_expression] = STATE(3565), + [sym_lambda_capture_specifier] = STATE(5204), + [sym_fold_expression] = STATE(3565), + [sym_parameter_pack_expansion] = STATE(3565), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5232), + [sym_qualified_identifier] = STATE(3220), + [sym_qualified_type_identifier] = STATE(6847), + [sym_user_defined_literal] = STATE(3565), + [sym_identifier] = ACTIONS(2095), + [anon_sym_LPAREN2] = ACTIONS(1841), + [anon_sym_BANG] = ACTIONS(1843), + [anon_sym_TILDE] = ACTIONS(1843), + [anon_sym_DASH] = ACTIONS(1845), + [anon_sym_PLUS] = ACTIONS(1845), + [anon_sym_STAR] = ACTIONS(1847), + [anon_sym_AMP] = ACTIONS(1847), + [anon_sym_COLON_COLON] = ACTIONS(1849), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1999), + [anon_sym_not] = ACTIONS(1845), + [anon_sym_compl] = ACTIONS(1845), + [anon_sym_DASH_DASH] = ACTIONS(1861), + [anon_sym_PLUS_PLUS] = ACTIONS(1861), + [anon_sym_sizeof] = ACTIONS(1863), + [anon_sym_offsetof] = ACTIONS(1865), + [anon_sym__Generic] = ACTIONS(1867), + [anon_sym_asm] = ACTIONS(1869), + [anon_sym___asm__] = ACTIONS(1869), + [sym_number_literal] = ACTIONS(1871), + [anon_sym_L_SQUOTE] = ACTIONS(1873), + [anon_sym_u_SQUOTE] = ACTIONS(1873), + [anon_sym_U_SQUOTE] = ACTIONS(1873), + [anon_sym_u8_SQUOTE] = ACTIONS(1873), + [anon_sym_SQUOTE] = ACTIONS(1873), + [anon_sym_L_DQUOTE] = ACTIONS(1875), + [anon_sym_u_DQUOTE] = ACTIONS(1875), + [anon_sym_U_DQUOTE] = ACTIONS(1875), + [anon_sym_u8_DQUOTE] = ACTIONS(1875), + [anon_sym_DQUOTE] = ACTIONS(1875), + [sym_true] = ACTIONS(1877), + [sym_false] = ACTIONS(1877), + [anon_sym_NULL] = ACTIONS(1879), + [anon_sym_nullptr] = ACTIONS(1879), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(1883), + [anon_sym_R_DQUOTE] = ACTIONS(1885), + [anon_sym_LR_DQUOTE] = ACTIONS(1885), + [anon_sym_uR_DQUOTE] = ACTIONS(1885), + [anon_sym_UR_DQUOTE] = ACTIONS(1885), + [anon_sym_u8R_DQUOTE] = ACTIONS(1885), + [anon_sym_co_await] = ACTIONS(1887), + [anon_sym_new] = ACTIONS(1889), + [anon_sym_requires] = ACTIONS(1891), + [sym_this] = ACTIONS(1877), + }, + [2065] = { + [sym__expression] = STATE(3458), + [sym__expression_not_binary] = STATE(3565), + [sym_conditional_expression] = STATE(3565), + [sym_assignment_expression] = STATE(3565), + [sym_pointer_expression] = STATE(3220), + [sym_unary_expression] = STATE(3565), + [sym_binary_expression] = STATE(3565), + [sym_update_expression] = STATE(3565), + [sym_cast_expression] = STATE(3565), + [sym_sizeof_expression] = STATE(3565), + [sym_offsetof_expression] = STATE(3565), + [sym_generic_expression] = STATE(3565), + [sym_subscript_expression] = STATE(3220), + [sym_call_expression] = STATE(3220), + [sym_gnu_asm_expression] = STATE(3565), + [sym_field_expression] = STATE(3220), + [sym_compound_literal_expression] = STATE(3565), + [sym_parenthesized_expression] = STATE(3220), + [sym_char_literal] = STATE(3429), + [sym_concatenated_string] = STATE(3429), + [sym_string_literal] = STATE(2248), + [sym_null] = STATE(3565), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6847), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3565), + [sym_raw_string_literal] = STATE(2248), + [sym_co_await_expression] = STATE(3565), + [sym_new_expression] = STATE(3565), + [sym_delete_expression] = STATE(3565), + [sym_requires_clause] = STATE(3565), + [sym_requires_expression] = STATE(3565), + [sym_lambda_expression] = STATE(3565), + [sym_lambda_capture_specifier] = STATE(5204), + [sym_fold_expression] = STATE(3565), + [sym_parameter_pack_expansion] = STATE(3565), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5232), + [sym_qualified_identifier] = STATE(3220), + [sym_qualified_type_identifier] = STATE(6847), + [sym_user_defined_literal] = STATE(3565), + [sym_identifier] = ACTIONS(2095), + [anon_sym_LPAREN2] = ACTIONS(1841), + [anon_sym_BANG] = ACTIONS(1843), + [anon_sym_TILDE] = ACTIONS(1843), + [anon_sym_DASH] = ACTIONS(1845), + [anon_sym_PLUS] = ACTIONS(1845), + [anon_sym_STAR] = ACTIONS(1847), + [anon_sym_AMP] = ACTIONS(1847), + [anon_sym_COLON_COLON] = ACTIONS(1849), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1999), + [anon_sym_not] = ACTIONS(1845), + [anon_sym_compl] = ACTIONS(1845), + [anon_sym_DASH_DASH] = ACTIONS(1861), + [anon_sym_PLUS_PLUS] = ACTIONS(1861), + [anon_sym_sizeof] = ACTIONS(1863), + [anon_sym_offsetof] = ACTIONS(1865), + [anon_sym__Generic] = ACTIONS(1867), + [anon_sym_asm] = ACTIONS(1869), + [anon_sym___asm__] = ACTIONS(1869), + [sym_number_literal] = ACTIONS(1871), + [anon_sym_L_SQUOTE] = ACTIONS(1873), + [anon_sym_u_SQUOTE] = ACTIONS(1873), + [anon_sym_U_SQUOTE] = ACTIONS(1873), + [anon_sym_u8_SQUOTE] = ACTIONS(1873), + [anon_sym_SQUOTE] = ACTIONS(1873), + [anon_sym_L_DQUOTE] = ACTIONS(1875), + [anon_sym_u_DQUOTE] = ACTIONS(1875), + [anon_sym_U_DQUOTE] = ACTIONS(1875), + [anon_sym_u8_DQUOTE] = ACTIONS(1875), + [anon_sym_DQUOTE] = ACTIONS(1875), + [sym_true] = ACTIONS(1877), + [sym_false] = ACTIONS(1877), + [anon_sym_NULL] = ACTIONS(1879), + [anon_sym_nullptr] = ACTIONS(1879), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(1883), + [anon_sym_R_DQUOTE] = ACTIONS(1885), + [anon_sym_LR_DQUOTE] = ACTIONS(1885), + [anon_sym_uR_DQUOTE] = ACTIONS(1885), + [anon_sym_UR_DQUOTE] = ACTIONS(1885), + [anon_sym_u8R_DQUOTE] = ACTIONS(1885), + [anon_sym_co_await] = ACTIONS(1887), + [anon_sym_new] = ACTIONS(1889), + [anon_sym_requires] = ACTIONS(1891), + [sym_this] = ACTIONS(1877), + }, + [2066] = { + [sym__expression] = STATE(3521), + [sym__expression_not_binary] = STATE(3565), + [sym_conditional_expression] = STATE(3565), + [sym_assignment_expression] = STATE(3565), + [sym_pointer_expression] = STATE(3220), + [sym_unary_expression] = STATE(3565), + [sym_binary_expression] = STATE(3565), + [sym_update_expression] = STATE(3565), + [sym_cast_expression] = STATE(3565), + [sym_sizeof_expression] = STATE(3565), + [sym_offsetof_expression] = STATE(3565), + [sym_generic_expression] = STATE(3565), + [sym_subscript_expression] = STATE(3220), + [sym_call_expression] = STATE(3220), + [sym_gnu_asm_expression] = STATE(3565), + [sym_field_expression] = STATE(3220), + [sym_compound_literal_expression] = STATE(3565), + [sym_parenthesized_expression] = STATE(3220), + [sym_char_literal] = STATE(3429), + [sym_concatenated_string] = STATE(3429), + [sym_string_literal] = STATE(2248), + [sym_null] = STATE(3565), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6847), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3565), + [sym_raw_string_literal] = STATE(2248), + [sym_co_await_expression] = STATE(3565), + [sym_new_expression] = STATE(3565), + [sym_delete_expression] = STATE(3565), + [sym_requires_clause] = STATE(3565), + [sym_requires_expression] = STATE(3565), + [sym_lambda_expression] = STATE(3565), + [sym_lambda_capture_specifier] = STATE(5204), + [sym_fold_expression] = STATE(3565), + [sym_parameter_pack_expansion] = STATE(3565), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5232), + [sym_qualified_identifier] = STATE(3220), + [sym_qualified_type_identifier] = STATE(6847), + [sym_user_defined_literal] = STATE(3565), + [sym_identifier] = ACTIONS(2095), + [anon_sym_LPAREN2] = ACTIONS(1841), + [anon_sym_BANG] = ACTIONS(1843), + [anon_sym_TILDE] = ACTIONS(1843), + [anon_sym_DASH] = ACTIONS(1845), + [anon_sym_PLUS] = ACTIONS(1845), + [anon_sym_STAR] = ACTIONS(1847), + [anon_sym_AMP] = ACTIONS(1847), + [anon_sym_COLON_COLON] = ACTIONS(1849), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1999), + [anon_sym_not] = ACTIONS(1845), + [anon_sym_compl] = ACTIONS(1845), + [anon_sym_DASH_DASH] = ACTIONS(1861), + [anon_sym_PLUS_PLUS] = ACTIONS(1861), + [anon_sym_sizeof] = ACTIONS(1863), + [anon_sym_offsetof] = ACTIONS(1865), + [anon_sym__Generic] = ACTIONS(1867), + [anon_sym_asm] = ACTIONS(1869), + [anon_sym___asm__] = ACTIONS(1869), + [sym_number_literal] = ACTIONS(1871), + [anon_sym_L_SQUOTE] = ACTIONS(1873), + [anon_sym_u_SQUOTE] = ACTIONS(1873), + [anon_sym_U_SQUOTE] = ACTIONS(1873), + [anon_sym_u8_SQUOTE] = ACTIONS(1873), + [anon_sym_SQUOTE] = ACTIONS(1873), + [anon_sym_L_DQUOTE] = ACTIONS(1875), + [anon_sym_u_DQUOTE] = ACTIONS(1875), + [anon_sym_U_DQUOTE] = ACTIONS(1875), + [anon_sym_u8_DQUOTE] = ACTIONS(1875), + [anon_sym_DQUOTE] = ACTIONS(1875), + [sym_true] = ACTIONS(1877), + [sym_false] = ACTIONS(1877), + [anon_sym_NULL] = ACTIONS(1879), + [anon_sym_nullptr] = ACTIONS(1879), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(1883), + [anon_sym_R_DQUOTE] = ACTIONS(1885), + [anon_sym_LR_DQUOTE] = ACTIONS(1885), + [anon_sym_uR_DQUOTE] = ACTIONS(1885), + [anon_sym_UR_DQUOTE] = ACTIONS(1885), + [anon_sym_u8R_DQUOTE] = ACTIONS(1885), + [anon_sym_co_await] = ACTIONS(1887), + [anon_sym_new] = ACTIONS(1889), + [anon_sym_requires] = ACTIONS(1891), + [sym_this] = ACTIONS(1877), + }, + [2067] = { + [sym__expression] = STATE(3522), + [sym__expression_not_binary] = STATE(3565), + [sym_conditional_expression] = STATE(3565), + [sym_assignment_expression] = STATE(3565), + [sym_pointer_expression] = STATE(3220), + [sym_unary_expression] = STATE(3565), + [sym_binary_expression] = STATE(3565), + [sym_update_expression] = STATE(3565), + [sym_cast_expression] = STATE(3565), + [sym_sizeof_expression] = STATE(3565), + [sym_offsetof_expression] = STATE(3565), + [sym_generic_expression] = STATE(3565), + [sym_subscript_expression] = STATE(3220), + [sym_call_expression] = STATE(3220), + [sym_gnu_asm_expression] = STATE(3565), + [sym_field_expression] = STATE(3220), + [sym_compound_literal_expression] = STATE(3565), + [sym_parenthesized_expression] = STATE(3220), + [sym_char_literal] = STATE(3429), + [sym_concatenated_string] = STATE(3429), + [sym_string_literal] = STATE(2248), + [sym_null] = STATE(3565), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6847), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3565), + [sym_raw_string_literal] = STATE(2248), + [sym_co_await_expression] = STATE(3565), + [sym_new_expression] = STATE(3565), + [sym_delete_expression] = STATE(3565), + [sym_requires_clause] = STATE(3565), + [sym_requires_expression] = STATE(3565), + [sym_lambda_expression] = STATE(3565), + [sym_lambda_capture_specifier] = STATE(5204), + [sym_fold_expression] = STATE(3565), + [sym_parameter_pack_expansion] = STATE(3565), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5232), + [sym_qualified_identifier] = STATE(3220), + [sym_qualified_type_identifier] = STATE(6847), + [sym_user_defined_literal] = STATE(3565), + [sym_identifier] = ACTIONS(2095), + [anon_sym_LPAREN2] = ACTIONS(1841), + [anon_sym_BANG] = ACTIONS(1843), + [anon_sym_TILDE] = ACTIONS(1843), + [anon_sym_DASH] = ACTIONS(1845), + [anon_sym_PLUS] = ACTIONS(1845), + [anon_sym_STAR] = ACTIONS(1847), + [anon_sym_AMP] = ACTIONS(1847), + [anon_sym_COLON_COLON] = ACTIONS(1849), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1999), + [anon_sym_not] = ACTIONS(1845), + [anon_sym_compl] = ACTIONS(1845), + [anon_sym_DASH_DASH] = ACTIONS(1861), + [anon_sym_PLUS_PLUS] = ACTIONS(1861), + [anon_sym_sizeof] = ACTIONS(1863), + [anon_sym_offsetof] = ACTIONS(1865), + [anon_sym__Generic] = ACTIONS(1867), + [anon_sym_asm] = ACTIONS(1869), + [anon_sym___asm__] = ACTIONS(1869), + [sym_number_literal] = ACTIONS(1871), + [anon_sym_L_SQUOTE] = ACTIONS(1873), + [anon_sym_u_SQUOTE] = ACTIONS(1873), + [anon_sym_U_SQUOTE] = ACTIONS(1873), + [anon_sym_u8_SQUOTE] = ACTIONS(1873), + [anon_sym_SQUOTE] = ACTIONS(1873), + [anon_sym_L_DQUOTE] = ACTIONS(1875), + [anon_sym_u_DQUOTE] = ACTIONS(1875), + [anon_sym_U_DQUOTE] = ACTIONS(1875), + [anon_sym_u8_DQUOTE] = ACTIONS(1875), + [anon_sym_DQUOTE] = ACTIONS(1875), + [sym_true] = ACTIONS(1877), + [sym_false] = ACTIONS(1877), + [anon_sym_NULL] = ACTIONS(1879), + [anon_sym_nullptr] = ACTIONS(1879), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(1883), + [anon_sym_R_DQUOTE] = ACTIONS(1885), + [anon_sym_LR_DQUOTE] = ACTIONS(1885), + [anon_sym_uR_DQUOTE] = ACTIONS(1885), + [anon_sym_UR_DQUOTE] = ACTIONS(1885), + [anon_sym_u8R_DQUOTE] = ACTIONS(1885), + [anon_sym_co_await] = ACTIONS(1887), + [anon_sym_new] = ACTIONS(1889), + [anon_sym_requires] = ACTIONS(1891), + [sym_this] = ACTIONS(1877), + }, + [2068] = { + [sym__expression] = STATE(4103), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), + }, + [2069] = { + [sym__expression] = STATE(4330), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), + }, + [2070] = { + [sym__expression] = STATE(4294), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), + }, + [2071] = { + [sym__expression] = STATE(4411), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3579), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3579), + [sym_call_expression] = STATE(3579), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3579), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3579), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3579), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3633), + [anon_sym_LPAREN2] = ACTIONS(3635), + [anon_sym_BANG] = ACTIONS(3639), + [anon_sym_TILDE] = ACTIONS(3639), + [anon_sym_DASH] = ACTIONS(3637), + [anon_sym_PLUS] = ACTIONS(3637), + [anon_sym_STAR] = ACTIONS(3641), + [anon_sym_AMP] = ACTIONS(3641), + [anon_sym_COLON_COLON] = ACTIONS(3643), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(3637), + [anon_sym_compl] = ACTIONS(3637), + [anon_sym_DASH_DASH] = ACTIONS(3645), + [anon_sym_PLUS_PLUS] = ACTIONS(3645), + [anon_sym_sizeof] = ACTIONS(3647), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(3649), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(3651), + [anon_sym_new] = ACTIONS(3631), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), + }, + [2072] = { + [sym__expression] = STATE(4261), + [sym__expression_not_binary] = STATE(4369), + [sym_conditional_expression] = STATE(4369), + [sym_assignment_expression] = STATE(4369), + [sym_pointer_expression] = STATE(3541), + [sym_unary_expression] = STATE(4369), + [sym_binary_expression] = STATE(4369), + [sym_update_expression] = STATE(4369), + [sym_cast_expression] = STATE(4369), + [sym_sizeof_expression] = STATE(4369), + [sym_offsetof_expression] = STATE(4369), + [sym_generic_expression] = STATE(4369), + [sym_subscript_expression] = STATE(3541), + [sym_call_expression] = STATE(3541), + [sym_gnu_asm_expression] = STATE(4369), + [sym_field_expression] = STATE(3541), + [sym_compound_literal_expression] = STATE(4369), + [sym_parenthesized_expression] = STATE(3541), + [sym_char_literal] = STATE(4131), + [sym_concatenated_string] = STATE(4131), + [sym_string_literal] = STATE(3542), + [sym_null] = STATE(4369), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6872), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(4369), + [sym_raw_string_literal] = STATE(3542), + [sym_co_await_expression] = STATE(4369), + [sym_new_expression] = STATE(4369), + [sym_delete_expression] = STATE(4369), + [sym_requires_clause] = STATE(4369), + [sym_requires_expression] = STATE(4369), + [sym_lambda_expression] = STATE(4369), + [sym_lambda_capture_specifier] = STATE(5208), + [sym_fold_expression] = STATE(4369), + [sym_parameter_pack_expansion] = STATE(4369), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5289), + [sym_qualified_identifier] = STATE(3541), + [sym_qualified_type_identifier] = STATE(6872), + [sym_user_defined_literal] = STATE(4369), + [sym_identifier] = ACTIONS(3599), + [anon_sym_LPAREN2] = ACTIONS(2618), + [anon_sym_BANG] = ACTIONS(2620), + [anon_sym_TILDE] = ACTIONS(2620), + [anon_sym_DASH] = ACTIONS(2622), + [anon_sym_PLUS] = ACTIONS(2622), + [anon_sym_STAR] = ACTIONS(2624), + [anon_sym_AMP] = ACTIONS(2624), + [anon_sym_COLON_COLON] = ACTIONS(2626), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(2045), + [anon_sym_not] = ACTIONS(2622), + [anon_sym_compl] = ACTIONS(2622), + [anon_sym_DASH_DASH] = ACTIONS(2640), + [anon_sym_PLUS_PLUS] = ACTIONS(2640), + [anon_sym_sizeof] = ACTIONS(2642), + [anon_sym_offsetof] = ACTIONS(2644), + [anon_sym__Generic] = ACTIONS(2646), + [anon_sym_asm] = ACTIONS(2648), + [anon_sym___asm__] = ACTIONS(2648), + [sym_number_literal] = ACTIONS(2650), + [anon_sym_L_SQUOTE] = ACTIONS(2652), + [anon_sym_u_SQUOTE] = ACTIONS(2652), + [anon_sym_U_SQUOTE] = ACTIONS(2652), + [anon_sym_u8_SQUOTE] = ACTIONS(2652), + [anon_sym_SQUOTE] = ACTIONS(2652), + [anon_sym_L_DQUOTE] = ACTIONS(2654), + [anon_sym_u_DQUOTE] = ACTIONS(2654), + [anon_sym_U_DQUOTE] = ACTIONS(2654), + [anon_sym_u8_DQUOTE] = ACTIONS(2654), + [anon_sym_DQUOTE] = ACTIONS(2654), + [sym_true] = ACTIONS(2656), + [sym_false] = ACTIONS(2656), + [anon_sym_NULL] = ACTIONS(2658), + [anon_sym_nullptr] = ACTIONS(2658), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(2668), + [anon_sym_R_DQUOTE] = ACTIONS(2670), + [anon_sym_LR_DQUOTE] = ACTIONS(2670), + [anon_sym_uR_DQUOTE] = ACTIONS(2670), + [anon_sym_UR_DQUOTE] = ACTIONS(2670), + [anon_sym_u8R_DQUOTE] = ACTIONS(2670), + [anon_sym_co_await] = ACTIONS(2672), + [anon_sym_new] = ACTIONS(2674), + [anon_sym_requires] = ACTIONS(2676), + [sym_this] = ACTIONS(2656), + }, + [2073] = { + [sym__expression] = STATE(3377), + [sym__expression_not_binary] = STATE(3513), + [sym_conditional_expression] = STATE(3513), + [sym_assignment_expression] = STATE(3513), + [sym_pointer_expression] = STATE(3513), + [sym_unary_expression] = STATE(3513), + [sym_binary_expression] = STATE(3513), + [sym_update_expression] = STATE(3513), + [sym_cast_expression] = STATE(3513), + [sym_sizeof_expression] = STATE(3513), + [sym_offsetof_expression] = STATE(3513), + [sym_generic_expression] = STATE(3513), + [sym_subscript_expression] = STATE(3513), + [sym_call_expression] = STATE(3513), + [sym_gnu_asm_expression] = STATE(3513), + [sym_field_expression] = STATE(3513), + [sym_compound_literal_expression] = STATE(3513), + [sym_parenthesized_expression] = STATE(3513), + [sym_char_literal] = STATE(3385), + [sym_concatenated_string] = STATE(3385), + [sym_string_literal] = STATE(2225), + [sym_null] = STATE(3513), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6957), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3513), + [sym_raw_string_literal] = STATE(2225), + [sym_co_await_expression] = STATE(3513), + [sym_new_expression] = STATE(3513), + [sym_delete_expression] = STATE(3513), + [sym_requires_clause] = STATE(3513), + [sym_requires_expression] = STATE(3513), + [sym_lambda_expression] = STATE(3513), + [sym_lambda_capture_specifier] = STATE(5162), + [sym_fold_expression] = STATE(3513), + [sym_parameter_pack_expansion] = STATE(3513), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5289), + [sym_qualified_identifier] = STATE(3513), + [sym_qualified_type_identifier] = STATE(6957), + [sym_user_defined_literal] = STATE(3513), + [sym_identifier] = ACTIONS(2031), + [anon_sym_LPAREN2] = ACTIONS(2033), + [anon_sym_BANG] = ACTIONS(2037), + [anon_sym_TILDE] = ACTIONS(2037), + [anon_sym_DASH] = ACTIONS(2035), + [anon_sym_PLUS] = ACTIONS(2035), + [anon_sym_STAR] = ACTIONS(2624), + [anon_sym_AMP] = ACTIONS(2624), + [anon_sym_COLON_COLON] = ACTIONS(2041), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(2045), + [anon_sym_not] = ACTIONS(2035), + [anon_sym_compl] = ACTIONS(2035), + [anon_sym_DASH_DASH] = ACTIONS(2047), + [anon_sym_PLUS_PLUS] = ACTIONS(2047), + [anon_sym_sizeof] = ACTIONS(2049), + [anon_sym_offsetof] = ACTIONS(2051), + [anon_sym__Generic] = ACTIONS(2053), + [anon_sym_asm] = ACTIONS(2055), + [anon_sym___asm__] = ACTIONS(2055), + [sym_number_literal] = ACTIONS(2057), + [anon_sym_L_SQUOTE] = ACTIONS(2059), + [anon_sym_u_SQUOTE] = ACTIONS(2059), + [anon_sym_U_SQUOTE] = ACTIONS(2059), + [anon_sym_u8_SQUOTE] = ACTIONS(2059), + [anon_sym_SQUOTE] = ACTIONS(2059), + [anon_sym_L_DQUOTE] = ACTIONS(2061), + [anon_sym_u_DQUOTE] = ACTIONS(2061), + [anon_sym_U_DQUOTE] = ACTIONS(2061), + [anon_sym_u8_DQUOTE] = ACTIONS(2061), + [anon_sym_DQUOTE] = ACTIONS(2061), + [sym_true] = ACTIONS(2063), + [sym_false] = ACTIONS(2063), + [anon_sym_NULL] = ACTIONS(2065), + [anon_sym_nullptr] = ACTIONS(2065), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(2067), + [anon_sym_R_DQUOTE] = ACTIONS(2069), + [anon_sym_LR_DQUOTE] = ACTIONS(2069), + [anon_sym_uR_DQUOTE] = ACTIONS(2069), + [anon_sym_UR_DQUOTE] = ACTIONS(2069), + [anon_sym_u8R_DQUOTE] = ACTIONS(2069), + [anon_sym_co_await] = ACTIONS(2071), + [anon_sym_new] = ACTIONS(2073), + [anon_sym_requires] = ACTIONS(2075), + [sym_this] = ACTIONS(2063), + }, + [2074] = { + [sym__expression] = STATE(4293), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), + }, + [2075] = { + [sym__expression] = STATE(4275), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), + }, + [2076] = { + [sym__expression] = STATE(4324), + [sym__expression_not_binary] = STATE(3976), + [sym_conditional_expression] = STATE(3976), + [sym_assignment_expression] = STATE(3976), + [sym_pointer_expression] = STATE(3213), + [sym_unary_expression] = STATE(3976), + [sym_binary_expression] = STATE(3976), + [sym_update_expression] = STATE(3976), + [sym_cast_expression] = STATE(3976), + [sym_sizeof_expression] = STATE(3976), + [sym_offsetof_expression] = STATE(3976), + [sym_generic_expression] = STATE(3976), + [sym_subscript_expression] = STATE(3213), + [sym_call_expression] = STATE(3213), + [sym_gnu_asm_expression] = STATE(3976), + [sym_field_expression] = STATE(3213), + [sym_compound_literal_expression] = STATE(3976), + [sym_parenthesized_expression] = STATE(3213), + [sym_char_literal] = STATE(3884), + [sym_concatenated_string] = STATE(3884), + [sym_string_literal] = STATE(2986), + [sym_null] = STATE(3976), + [sym_decltype] = STATE(7638), + [sym__class_name] = STATE(6623), + [sym_template_type] = STATE(3578), + [sym_template_function] = STATE(3976), + [sym_raw_string_literal] = STATE(2986), + [sym_co_await_expression] = STATE(3976), + [sym_new_expression] = STATE(3976), + [sym_delete_expression] = STATE(3976), + [sym_requires_clause] = STATE(3976), + [sym_requires_expression] = STATE(3976), + [sym_lambda_expression] = STATE(3976), + [sym_lambda_capture_specifier] = STATE(5183), + [sym_fold_expression] = STATE(3976), + [sym_parameter_pack_expansion] = STATE(3976), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5265), + [sym_qualified_identifier] = STATE(3213), + [sym_qualified_type_identifier] = STATE(6623), + [sym_user_defined_literal] = STATE(3976), + [sym_identifier] = ACTIONS(3525), + [anon_sym_LPAREN2] = ACTIONS(1317), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(1949), + [sym_primitive_type] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_offsetof] = ACTIONS(97), + [anon_sym__Generic] = ACTIONS(99), + [anon_sym_asm] = ACTIONS(101), + [anon_sym___asm__] = ACTIONS(101), + [sym_number_literal] = ACTIONS(103), + [anon_sym_L_SQUOTE] = ACTIONS(105), + [anon_sym_u_SQUOTE] = ACTIONS(105), + [anon_sym_U_SQUOTE] = ACTIONS(105), + [anon_sym_u8_SQUOTE] = ACTIONS(105), + [anon_sym_SQUOTE] = ACTIONS(105), + [anon_sym_L_DQUOTE] = ACTIONS(107), + [anon_sym_u_DQUOTE] = ACTIONS(107), + [anon_sym_U_DQUOTE] = ACTIONS(107), + [anon_sym_u8_DQUOTE] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(107), + [sym_true] = ACTIONS(205), + [sym_false] = ACTIONS(205), + [anon_sym_NULL] = ACTIONS(111), + [anon_sym_nullptr] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1973), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_delete] = ACTIONS(129), + [anon_sym_R_DQUOTE] = ACTIONS(145), + [anon_sym_LR_DQUOTE] = ACTIONS(145), + [anon_sym_uR_DQUOTE] = ACTIONS(145), + [anon_sym_UR_DQUOTE] = ACTIONS(145), + [anon_sym_u8R_DQUOTE] = ACTIONS(145), + [anon_sym_co_await] = ACTIONS(147), + [anon_sym_new] = ACTIONS(149), + [anon_sym_requires] = ACTIONS(151), + [sym_this] = ACTIONS(205), + }, + [2077] = { + [sym__declaration_modifiers] = STATE(2514), + [sym__declaration_specifiers] = STATE(4697), + [sym_attribute_specifier] = STATE(2514), + [sym_attribute_declaration] = STATE(2514), + [sym_ms_declspec_modifier] = STATE(2514), + [sym_ms_based_modifier] = STATE(7654), + [sym__declarator] = STATE(5800), + [sym_parenthesized_declarator] = STATE(5640), + [sym_attributed_declarator] = STATE(5640), + [sym_pointer_declarator] = STATE(5640), + [sym_function_declarator] = STATE(5640), + [sym_array_declarator] = STATE(5640), + [sym_storage_class_specifier] = STATE(2514), + [sym_type_qualifier] = STATE(2514), + [sym__type_specifier] = STATE(3633), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym_virtual] = STATE(2514), + [sym_dependent_type] = STATE(3723), + [sym_template_parameter_list] = STATE(1383), + [sym_reference_declarator] = STATE(5640), + [sym_structured_binding_declarator] = STATE(5640), + [sym_template_type] = STATE(4543), + [sym_template_function] = STATE(5640), + [sym_destructor_name] = STATE(5640), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5270), + [sym_qualified_identifier] = STATE(5640), + [sym_qualified_type_identifier] = STATE(3694), + [sym_operator_name] = STATE(5640), + [aux_sym__declaration_specifiers_repeat1] = STATE(2514), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [sym_identifier] = ACTIONS(4449), + [anon_sym_LPAREN2] = ACTIONS(2560), + [anon_sym_TILDE] = ACTIONS(2562), + [anon_sym_STAR] = ACTIONS(2564), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_LT] = ACTIONS(4451), + [anon_sym_extern] = ACTIONS(53), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(4453), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1813), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(2572), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(53), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(3667), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(113), + [anon_sym_decltype] = ACTIONS(115), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_typename] = ACTIONS(121), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_operator] = ACTIONS(1931), + }, + [2078] = { + [sym__declaration_modifiers] = STATE(2514), + [sym__declaration_specifiers] = STATE(4704), + [sym_attribute_specifier] = STATE(2514), + [sym_attribute_declaration] = STATE(2514), + [sym_ms_declspec_modifier] = STATE(2514), + [sym_ms_based_modifier] = STATE(7654), + [sym__declarator] = STATE(5819), + [sym_parenthesized_declarator] = STATE(5640), + [sym_attributed_declarator] = STATE(5640), + [sym_pointer_declarator] = STATE(5640), + [sym_function_declarator] = STATE(5640), + [sym_array_declarator] = STATE(5640), + [sym_storage_class_specifier] = STATE(2514), + [sym_type_qualifier] = STATE(2514), + [sym__type_specifier] = STATE(3633), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym_virtual] = STATE(2514), + [sym_dependent_type] = STATE(3723), + [sym_template_parameter_list] = STATE(1385), + [sym_reference_declarator] = STATE(5640), + [sym_structured_binding_declarator] = STATE(5640), + [sym_template_type] = STATE(4543), + [sym_template_function] = STATE(5640), + [sym_destructor_name] = STATE(5640), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5270), + [sym_qualified_identifier] = STATE(5640), + [sym_qualified_type_identifier] = STATE(3694), + [sym_operator_name] = STATE(5640), + [aux_sym__declaration_specifiers_repeat1] = STATE(2514), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [sym_identifier] = ACTIONS(4449), + [anon_sym_LPAREN2] = ACTIONS(2560), + [anon_sym_TILDE] = ACTIONS(2562), + [anon_sym_STAR] = ACTIONS(2564), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_LT] = ACTIONS(4451), + [anon_sym_extern] = ACTIONS(53), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(4453), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1813), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(2572), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(53), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(3667), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(113), + [anon_sym_decltype] = ACTIONS(115), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_typename] = ACTIONS(121), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_operator] = ACTIONS(1931), + }, + [2079] = { + [sym__declaration_modifiers] = STATE(2514), + [sym__declaration_specifiers] = STATE(4702), + [sym_attribute_specifier] = STATE(2514), + [sym_attribute_declaration] = STATE(2514), + [sym_ms_declspec_modifier] = STATE(2514), + [sym_ms_based_modifier] = STATE(7654), + [sym__declarator] = STATE(5863), + [sym_parenthesized_declarator] = STATE(5640), + [sym_attributed_declarator] = STATE(5640), + [sym_pointer_declarator] = STATE(5640), + [sym_function_declarator] = STATE(5640), + [sym_array_declarator] = STATE(5640), + [sym_storage_class_specifier] = STATE(2514), + [sym_type_qualifier] = STATE(2514), + [sym__type_specifier] = STATE(3633), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym_virtual] = STATE(2514), + [sym_dependent_type] = STATE(3723), + [sym_template_parameter_list] = STATE(1381), + [sym_reference_declarator] = STATE(5640), + [sym_structured_binding_declarator] = STATE(5640), + [sym_template_type] = STATE(4543), + [sym_template_function] = STATE(5640), + [sym_destructor_name] = STATE(5640), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5270), + [sym_qualified_identifier] = STATE(5640), + [sym_qualified_type_identifier] = STATE(3694), + [sym_operator_name] = STATE(5640), + [aux_sym__declaration_specifiers_repeat1] = STATE(2514), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [sym_identifier] = ACTIONS(4449), + [anon_sym_LPAREN2] = ACTIONS(2560), + [anon_sym_TILDE] = ACTIONS(2562), + [anon_sym_STAR] = ACTIONS(2564), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_LT] = ACTIONS(4451), + [anon_sym_extern] = ACTIONS(53), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(4453), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1813), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(2572), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(53), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(3667), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(113), + [anon_sym_decltype] = ACTIONS(115), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_typename] = ACTIONS(121), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_operator] = ACTIONS(1931), + }, + [2080] = { + [sym__declaration_modifiers] = STATE(2514), + [sym__declaration_specifiers] = STATE(4675), + [sym_attribute_specifier] = STATE(2514), + [sym_attribute_declaration] = STATE(2514), + [sym_ms_declspec_modifier] = STATE(2514), + [sym_ms_based_modifier] = STATE(7654), + [sym__declarator] = STATE(5816), + [sym_parenthesized_declarator] = STATE(5640), + [sym_attributed_declarator] = STATE(5640), + [sym_pointer_declarator] = STATE(5640), + [sym_function_declarator] = STATE(5640), + [sym_array_declarator] = STATE(5640), + [sym_storage_class_specifier] = STATE(2514), + [sym_type_qualifier] = STATE(2514), + [sym__type_specifier] = STATE(3633), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym_virtual] = STATE(2514), + [sym_dependent_type] = STATE(3723), + [sym_template_parameter_list] = STATE(1379), + [sym_reference_declarator] = STATE(5640), + [sym_structured_binding_declarator] = STATE(5640), + [sym_template_type] = STATE(4543), + [sym_template_function] = STATE(5640), + [sym_destructor_name] = STATE(5640), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5270), + [sym_qualified_identifier] = STATE(5640), + [sym_qualified_type_identifier] = STATE(3694), + [sym_operator_name] = STATE(5640), + [aux_sym__declaration_specifiers_repeat1] = STATE(2514), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [sym_identifier] = ACTIONS(4449), + [anon_sym_LPAREN2] = ACTIONS(2560), + [anon_sym_TILDE] = ACTIONS(2562), + [anon_sym_STAR] = ACTIONS(2564), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_LT] = ACTIONS(4451), + [anon_sym_extern] = ACTIONS(53), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(4453), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1813), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(2572), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(53), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(3667), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(113), + [anon_sym_decltype] = ACTIONS(115), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_typename] = ACTIONS(121), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_operator] = ACTIONS(1931), + }, + [2081] = { + [sym__declaration_modifiers] = STATE(2514), + [sym__declaration_specifiers] = STATE(4671), + [sym_attribute_specifier] = STATE(2514), + [sym_attribute_declaration] = STATE(2514), + [sym_ms_declspec_modifier] = STATE(2514), + [sym_ms_based_modifier] = STATE(7654), + [sym__declarator] = STATE(5809), + [sym_parenthesized_declarator] = STATE(5640), + [sym_attributed_declarator] = STATE(5640), + [sym_pointer_declarator] = STATE(5640), + [sym_function_declarator] = STATE(5640), + [sym_array_declarator] = STATE(5640), + [sym_storage_class_specifier] = STATE(2514), + [sym_type_qualifier] = STATE(2514), + [sym__type_specifier] = STATE(3633), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym_virtual] = STATE(2514), + [sym_dependent_type] = STATE(3723), + [sym_template_parameter_list] = STATE(1384), + [sym_reference_declarator] = STATE(5640), + [sym_structured_binding_declarator] = STATE(5640), + [sym_template_type] = STATE(4543), + [sym_template_function] = STATE(5640), + [sym_destructor_name] = STATE(5640), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5270), + [sym_qualified_identifier] = STATE(5640), + [sym_qualified_type_identifier] = STATE(3694), + [sym_operator_name] = STATE(5640), + [aux_sym__declaration_specifiers_repeat1] = STATE(2514), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [sym_identifier] = ACTIONS(4449), + [anon_sym_LPAREN2] = ACTIONS(2560), + [anon_sym_TILDE] = ACTIONS(2562), + [anon_sym_STAR] = ACTIONS(2564), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_LT] = ACTIONS(4451), + [anon_sym_extern] = ACTIONS(53), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(4453), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1813), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___based] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(2572), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(53), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(3667), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(113), + [anon_sym_decltype] = ACTIONS(115), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_typename] = ACTIONS(121), + [anon_sym_template] = ACTIONS(1329), + [anon_sym_operator] = ACTIONS(1931), + }, + [2082] = { + [sym_template_argument_list] = STATE(2205), + [sym_identifier] = ACTIONS(4455), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4457), + [anon_sym_COMMA] = ACTIONS(4457), + [anon_sym_LPAREN2] = ACTIONS(4459), + [anon_sym_TILDE] = ACTIONS(4463), + [anon_sym_DASH] = ACTIONS(4465), + [anon_sym_PLUS] = ACTIONS(4465), + [anon_sym_STAR] = ACTIONS(4467), + [anon_sym_SLASH] = ACTIONS(4465), + [anon_sym_PERCENT] = ACTIONS(4465), + [anon_sym_PIPE_PIPE] = ACTIONS(4457), + [anon_sym_AMP_AMP] = ACTIONS(4470), + [anon_sym_PIPE] = ACTIONS(4465), + [anon_sym_CARET] = ACTIONS(4465), + [anon_sym_AMP] = ACTIONS(4467), + [anon_sym_EQ_EQ] = ACTIONS(4457), + [anon_sym_BANG_EQ] = ACTIONS(4457), + [anon_sym_GT] = ACTIONS(4465), + [anon_sym_GT_EQ] = ACTIONS(4457), + [anon_sym_LT_EQ] = ACTIONS(4465), + [anon_sym_LT] = ACTIONS(4473), + [anon_sym_LT_LT] = ACTIONS(4465), + [anon_sym_GT_GT] = ACTIONS(4465), + [anon_sym_SEMI] = ACTIONS(4470), + [anon_sym_extern] = ACTIONS(4455), + [anon_sym___attribute__] = ACTIONS(4455), + [anon_sym_COLON_COLON] = ACTIONS(4476), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4478), + [anon_sym___declspec] = ACTIONS(4455), + [anon_sym___based] = ACTIONS(4455), + [anon_sym_LBRACE] = ACTIONS(4481), + [anon_sym_RBRACE] = ACTIONS(4457), + [anon_sym_LBRACK] = ACTIONS(4483), + [anon_sym_EQ] = ACTIONS(4487), + [anon_sym_static] = ACTIONS(4455), + [anon_sym_register] = ACTIONS(4455), + [anon_sym_inline] = ACTIONS(4455), + [anon_sym_thread_local] = ACTIONS(4455), + [anon_sym_const] = ACTIONS(4455), + [anon_sym_constexpr] = ACTIONS(4455), + [anon_sym_volatile] = ACTIONS(4455), + [anon_sym_restrict] = ACTIONS(4455), + [anon_sym___restrict__] = ACTIONS(4455), + [anon_sym__Atomic] = ACTIONS(4455), + [anon_sym__Noreturn] = ACTIONS(4455), + [anon_sym_noreturn] = ACTIONS(4455), + [anon_sym_mutable] = ACTIONS(4455), + [anon_sym_constinit] = ACTIONS(4455), + [anon_sym_consteval] = ACTIONS(4455), + [anon_sym_COLON] = ACTIONS(4489), + [anon_sym_QMARK] = ACTIONS(4457), + [anon_sym_STAR_EQ] = ACTIONS(4491), + [anon_sym_SLASH_EQ] = ACTIONS(4491), + [anon_sym_PERCENT_EQ] = ACTIONS(4491), + [anon_sym_PLUS_EQ] = ACTIONS(4491), + [anon_sym_DASH_EQ] = ACTIONS(4491), + [anon_sym_LT_LT_EQ] = ACTIONS(4491), + [anon_sym_GT_GT_EQ] = ACTIONS(4491), + [anon_sym_AMP_EQ] = ACTIONS(4491), + [anon_sym_CARET_EQ] = ACTIONS(4491), + [anon_sym_PIPE_EQ] = ACTIONS(4491), + [anon_sym_and_eq] = ACTIONS(4487), + [anon_sym_or_eq] = ACTIONS(4487), + [anon_sym_xor_eq] = ACTIONS(4487), + [anon_sym_LT_EQ_GT] = ACTIONS(4457), + [anon_sym_or] = ACTIONS(4465), + [anon_sym_and] = ACTIONS(4465), + [anon_sym_bitor] = ACTIONS(4465), + [anon_sym_xor] = ACTIONS(4465), + [anon_sym_bitand] = ACTIONS(4465), + [anon_sym_not_eq] = ACTIONS(4465), + [anon_sym_DASH_DASH] = ACTIONS(4457), + [anon_sym_PLUS_PLUS] = ACTIONS(4457), + [anon_sym_DOT] = ACTIONS(4465), + [anon_sym_DASH_GT] = ACTIONS(4457), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4455), + [anon_sym_decltype] = ACTIONS(4455), + [anon_sym_virtual] = ACTIONS(4455), + [anon_sym_template] = ACTIONS(4455), + [anon_sym_operator] = ACTIONS(4455), + }, + [2083] = { + [sym_template_argument_list] = STATE(2130), + [sym_identifier] = ACTIONS(4455), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4470), + [anon_sym_COMMA] = ACTIONS(4470), + [anon_sym_RPAREN] = ACTIONS(4470), + [anon_sym_LPAREN2] = ACTIONS(4470), + [anon_sym_TILDE] = ACTIONS(4463), + [anon_sym_DASH] = ACTIONS(4465), + [anon_sym_PLUS] = ACTIONS(4465), + [anon_sym_STAR] = ACTIONS(4467), + [anon_sym_SLASH] = ACTIONS(4465), + [anon_sym_PERCENT] = ACTIONS(4465), + [anon_sym_PIPE_PIPE] = ACTIONS(4457), + [anon_sym_AMP_AMP] = ACTIONS(4470), + [anon_sym_PIPE] = ACTIONS(4465), + [anon_sym_CARET] = ACTIONS(4465), + [anon_sym_AMP] = ACTIONS(4467), + [anon_sym_EQ_EQ] = ACTIONS(4457), + [anon_sym_BANG_EQ] = ACTIONS(4457), + [anon_sym_GT] = ACTIONS(4465), + [anon_sym_GT_EQ] = ACTIONS(4457), + [anon_sym_LT_EQ] = ACTIONS(4465), + [anon_sym_LT] = ACTIONS(4493), + [anon_sym_LT_LT] = ACTIONS(4465), + [anon_sym_GT_GT] = ACTIONS(4465), + [anon_sym_extern] = ACTIONS(4455), + [anon_sym___attribute__] = ACTIONS(4455), + [anon_sym_COLON_COLON] = ACTIONS(4476), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4463), + [anon_sym___declspec] = ACTIONS(4455), + [anon_sym___based] = ACTIONS(4455), + [anon_sym_LBRACE] = ACTIONS(4481), + [anon_sym_LBRACK] = ACTIONS(4467), + [anon_sym_EQ] = ACTIONS(4467), + [anon_sym_static] = ACTIONS(4455), + [anon_sym_register] = ACTIONS(4455), + [anon_sym_inline] = ACTIONS(4455), + [anon_sym_thread_local] = ACTIONS(4455), + [anon_sym_const] = ACTIONS(4455), + [anon_sym_constexpr] = ACTIONS(4455), + [anon_sym_volatile] = ACTIONS(4455), + [anon_sym_restrict] = ACTIONS(4455), + [anon_sym___restrict__] = ACTIONS(4455), + [anon_sym__Atomic] = ACTIONS(4455), + [anon_sym__Noreturn] = ACTIONS(4455), + [anon_sym_noreturn] = ACTIONS(4455), + [anon_sym_mutable] = ACTIONS(4455), + [anon_sym_constinit] = ACTIONS(4455), + [anon_sym_consteval] = ACTIONS(4455), + [anon_sym_QMARK] = ACTIONS(4457), + [anon_sym_STAR_EQ] = ACTIONS(4457), + [anon_sym_SLASH_EQ] = ACTIONS(4457), + [anon_sym_PERCENT_EQ] = ACTIONS(4457), + [anon_sym_PLUS_EQ] = ACTIONS(4457), + [anon_sym_DASH_EQ] = ACTIONS(4457), + [anon_sym_LT_LT_EQ] = ACTIONS(4457), + [anon_sym_GT_GT_EQ] = ACTIONS(4457), + [anon_sym_AMP_EQ] = ACTIONS(4457), + [anon_sym_CARET_EQ] = ACTIONS(4457), + [anon_sym_PIPE_EQ] = ACTIONS(4457), + [anon_sym_and_eq] = ACTIONS(4496), + [anon_sym_or_eq] = ACTIONS(4496), + [anon_sym_xor_eq] = ACTIONS(4496), + [anon_sym_LT_EQ_GT] = ACTIONS(4457), + [anon_sym_or] = ACTIONS(4465), + [anon_sym_and] = ACTIONS(4465), + [anon_sym_bitor] = ACTIONS(4465), + [anon_sym_xor] = ACTIONS(4465), + [anon_sym_bitand] = ACTIONS(4465), + [anon_sym_not_eq] = ACTIONS(4465), + [anon_sym_DASH_DASH] = ACTIONS(4457), + [anon_sym_PLUS_PLUS] = ACTIONS(4457), + [anon_sym_DOT] = ACTIONS(4465), + [anon_sym_DASH_GT] = ACTIONS(4465), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4455), + [anon_sym_decltype] = ACTIONS(4455), + [anon_sym_virtual] = ACTIONS(4455), + [anon_sym_template] = ACTIONS(4455), + [anon_sym_operator] = ACTIONS(4455), + [anon_sym_DOT_STAR] = ACTIONS(4457), + [anon_sym_DASH_GT_STAR] = ACTIONS(4457), + }, + [2084] = { + [sym_template_argument_list] = STATE(2098), + [sym_identifier] = ACTIONS(4498), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4500), + [anon_sym_COMMA] = ACTIONS(4500), + [anon_sym_RPAREN] = ACTIONS(4500), + [anon_sym_LPAREN2] = ACTIONS(4500), + [anon_sym_TILDE] = ACTIONS(4503), + [anon_sym_DASH] = ACTIONS(4505), + [anon_sym_PLUS] = ACTIONS(4505), + [anon_sym_STAR] = ACTIONS(4507), + [anon_sym_SLASH] = ACTIONS(4505), + [anon_sym_PERCENT] = ACTIONS(4505), + [anon_sym_PIPE_PIPE] = ACTIONS(4510), + [anon_sym_AMP_AMP] = ACTIONS(4500), + [anon_sym_PIPE] = ACTIONS(4505), + [anon_sym_CARET] = ACTIONS(4505), + [anon_sym_AMP] = ACTIONS(4507), + [anon_sym_EQ_EQ] = ACTIONS(4510), + [anon_sym_BANG_EQ] = ACTIONS(4510), + [anon_sym_GT] = ACTIONS(4505), + [anon_sym_GT_EQ] = ACTIONS(4510), + [anon_sym_LT_EQ] = ACTIONS(4505), + [anon_sym_LT] = ACTIONS(4512), + [anon_sym_LT_LT] = ACTIONS(4505), + [anon_sym_GT_GT] = ACTIONS(4505), + [anon_sym_extern] = ACTIONS(4498), + [anon_sym___attribute__] = ACTIONS(4498), + [anon_sym_COLON_COLON] = ACTIONS(4476), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4503), + [anon_sym___declspec] = ACTIONS(4498), + [anon_sym___based] = ACTIONS(4498), + [anon_sym_LBRACE] = ACTIONS(4503), + [anon_sym_LBRACK] = ACTIONS(4507), + [anon_sym_EQ] = ACTIONS(4507), + [anon_sym_static] = ACTIONS(4498), + [anon_sym_register] = ACTIONS(4498), + [anon_sym_inline] = ACTIONS(4498), + [anon_sym_thread_local] = ACTIONS(4498), + [anon_sym_const] = ACTIONS(4498), + [anon_sym_constexpr] = ACTIONS(4498), + [anon_sym_volatile] = ACTIONS(4498), + [anon_sym_restrict] = ACTIONS(4498), + [anon_sym___restrict__] = ACTIONS(4498), + [anon_sym__Atomic] = ACTIONS(4498), + [anon_sym__Noreturn] = ACTIONS(4498), + [anon_sym_noreturn] = ACTIONS(4498), + [anon_sym_mutable] = ACTIONS(4498), + [anon_sym_constinit] = ACTIONS(4498), + [anon_sym_consteval] = ACTIONS(4498), + [anon_sym_QMARK] = ACTIONS(4510), + [anon_sym_STAR_EQ] = ACTIONS(4510), + [anon_sym_SLASH_EQ] = ACTIONS(4510), + [anon_sym_PERCENT_EQ] = ACTIONS(4510), + [anon_sym_PLUS_EQ] = ACTIONS(4510), + [anon_sym_DASH_EQ] = ACTIONS(4510), + [anon_sym_LT_LT_EQ] = ACTIONS(4510), + [anon_sym_GT_GT_EQ] = ACTIONS(4510), + [anon_sym_AMP_EQ] = ACTIONS(4510), + [anon_sym_CARET_EQ] = ACTIONS(4510), + [anon_sym_PIPE_EQ] = ACTIONS(4510), + [anon_sym_and_eq] = ACTIONS(4505), + [anon_sym_or_eq] = ACTIONS(4505), + [anon_sym_xor_eq] = ACTIONS(4505), + [anon_sym_LT_EQ_GT] = ACTIONS(4510), + [anon_sym_or] = ACTIONS(4505), + [anon_sym_and] = ACTIONS(4505), + [anon_sym_bitor] = ACTIONS(4505), + [anon_sym_xor] = ACTIONS(4505), + [anon_sym_bitand] = ACTIONS(4505), + [anon_sym_not_eq] = ACTIONS(4505), + [anon_sym_DASH_DASH] = ACTIONS(4510), + [anon_sym_PLUS_PLUS] = ACTIONS(4510), + [anon_sym_DOT] = ACTIONS(4505), + [anon_sym_DASH_GT] = ACTIONS(4505), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4498), + [anon_sym_decltype] = ACTIONS(4498), + [anon_sym_virtual] = ACTIONS(4498), + [anon_sym_template] = ACTIONS(4498), + [anon_sym_operator] = ACTIONS(4498), + [anon_sym_DOT_STAR] = ACTIONS(4510), + [anon_sym_DASH_GT_STAR] = ACTIONS(4510), + }, + [2085] = { + [sym_template_argument_list] = STATE(2209), + [sym_identifier] = ACTIONS(4455), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4457), + [anon_sym_COMMA] = ACTIONS(4457), + [anon_sym_LPAREN2] = ACTIONS(4470), + [anon_sym_TILDE] = ACTIONS(4463), + [anon_sym_DASH] = ACTIONS(4465), + [anon_sym_PLUS] = ACTIONS(4465), + [anon_sym_STAR] = ACTIONS(4467), + [anon_sym_SLASH] = ACTIONS(4465), + [anon_sym_PERCENT] = ACTIONS(4465), + [anon_sym_PIPE_PIPE] = ACTIONS(4457), + [anon_sym_AMP_AMP] = ACTIONS(4470), + [anon_sym_PIPE] = ACTIONS(4465), + [anon_sym_CARET] = ACTIONS(4465), + [anon_sym_AMP] = ACTIONS(4467), + [anon_sym_EQ_EQ] = ACTIONS(4457), + [anon_sym_BANG_EQ] = ACTIONS(4457), + [anon_sym_GT] = ACTIONS(4465), + [anon_sym_GT_EQ] = ACTIONS(4457), + [anon_sym_LT_EQ] = ACTIONS(4465), + [anon_sym_LT] = ACTIONS(4473), + [anon_sym_LT_LT] = ACTIONS(4465), + [anon_sym_GT_GT] = ACTIONS(4465), + [anon_sym_SEMI] = ACTIONS(4457), + [anon_sym_extern] = ACTIONS(4455), + [anon_sym___attribute__] = ACTIONS(4455), + [anon_sym_COLON_COLON] = ACTIONS(4476), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4463), + [anon_sym___declspec] = ACTIONS(4455), + [anon_sym___based] = ACTIONS(4455), + [anon_sym_LBRACE] = ACTIONS(4481), + [anon_sym_LBRACK] = ACTIONS(4467), + [anon_sym_EQ] = ACTIONS(4487), + [anon_sym_static] = ACTIONS(4455), + [anon_sym_register] = ACTIONS(4455), + [anon_sym_inline] = ACTIONS(4455), + [anon_sym_thread_local] = ACTIONS(4455), + [anon_sym_const] = ACTIONS(4455), + [anon_sym_constexpr] = ACTIONS(4455), + [anon_sym_volatile] = ACTIONS(4455), + [anon_sym_restrict] = ACTIONS(4455), + [anon_sym___restrict__] = ACTIONS(4455), + [anon_sym__Atomic] = ACTIONS(4455), + [anon_sym__Noreturn] = ACTIONS(4455), + [anon_sym_noreturn] = ACTIONS(4455), + [anon_sym_mutable] = ACTIONS(4455), + [anon_sym_constinit] = ACTIONS(4455), + [anon_sym_consteval] = ACTIONS(4455), + [anon_sym_COLON] = ACTIONS(4515), + [anon_sym_QMARK] = ACTIONS(4457), + [anon_sym_STAR_EQ] = ACTIONS(4491), + [anon_sym_SLASH_EQ] = ACTIONS(4491), + [anon_sym_PERCENT_EQ] = ACTIONS(4491), + [anon_sym_PLUS_EQ] = ACTIONS(4491), + [anon_sym_DASH_EQ] = ACTIONS(4491), + [anon_sym_LT_LT_EQ] = ACTIONS(4491), + [anon_sym_GT_GT_EQ] = ACTIONS(4491), + [anon_sym_AMP_EQ] = ACTIONS(4491), + [anon_sym_CARET_EQ] = ACTIONS(4491), + [anon_sym_PIPE_EQ] = ACTIONS(4491), + [anon_sym_and_eq] = ACTIONS(4487), + [anon_sym_or_eq] = ACTIONS(4487), + [anon_sym_xor_eq] = ACTIONS(4487), + [anon_sym_LT_EQ_GT] = ACTIONS(4457), + [anon_sym_or] = ACTIONS(4465), + [anon_sym_and] = ACTIONS(4465), + [anon_sym_bitor] = ACTIONS(4465), + [anon_sym_xor] = ACTIONS(4465), + [anon_sym_bitand] = ACTIONS(4465), + [anon_sym_not_eq] = ACTIONS(4465), + [anon_sym_DASH_DASH] = ACTIONS(4457), + [anon_sym_PLUS_PLUS] = ACTIONS(4457), + [anon_sym_DOT] = ACTIONS(4465), + [anon_sym_DASH_GT] = ACTIONS(4457), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4455), + [anon_sym_decltype] = ACTIONS(4455), + [anon_sym_virtual] = ACTIONS(4455), + [anon_sym_template] = ACTIONS(4455), + [anon_sym_operator] = ACTIONS(4455), + }, + [2086] = { + [sym_identifier] = ACTIONS(4517), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4519), + [anon_sym_COMMA] = ACTIONS(4519), + [anon_sym_RPAREN] = ACTIONS(4519), + [anon_sym_LPAREN2] = ACTIONS(4519), + [anon_sym_TILDE] = ACTIONS(4519), + [anon_sym_DASH] = ACTIONS(4517), + [anon_sym_PLUS] = ACTIONS(4517), + [anon_sym_STAR] = ACTIONS(4517), + [anon_sym_SLASH] = ACTIONS(4517), + [anon_sym_PERCENT] = ACTIONS(4517), + [anon_sym_PIPE_PIPE] = ACTIONS(4519), + [anon_sym_AMP_AMP] = ACTIONS(4519), + [anon_sym_PIPE] = ACTIONS(4517), + [anon_sym_CARET] = ACTIONS(4517), + [anon_sym_AMP] = ACTIONS(4517), + [anon_sym_EQ_EQ] = ACTIONS(4519), + [anon_sym_BANG_EQ] = ACTIONS(4519), + [anon_sym_GT] = ACTIONS(4517), + [anon_sym_GT_EQ] = ACTIONS(4519), + [anon_sym_LT_EQ] = ACTIONS(4517), + [anon_sym_LT] = ACTIONS(4517), + [anon_sym_LT_LT] = ACTIONS(4517), + [anon_sym_GT_GT] = ACTIONS(4517), + [anon_sym_extern] = ACTIONS(4517), + [anon_sym___attribute__] = ACTIONS(4517), + [anon_sym_COLON_COLON] = ACTIONS(4519), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4519), + [anon_sym___declspec] = ACTIONS(4517), + [anon_sym___based] = ACTIONS(4517), + [anon_sym_LBRACE] = ACTIONS(4519), + [anon_sym_LBRACK] = ACTIONS(4517), + [anon_sym_EQ] = ACTIONS(4517), + [anon_sym_static] = ACTIONS(4517), + [anon_sym_register] = ACTIONS(4517), + [anon_sym_inline] = ACTIONS(4517), + [anon_sym_thread_local] = ACTIONS(4517), + [anon_sym_const] = ACTIONS(4517), + [anon_sym_constexpr] = ACTIONS(4517), + [anon_sym_volatile] = ACTIONS(4517), + [anon_sym_restrict] = ACTIONS(4517), + [anon_sym___restrict__] = ACTIONS(4517), + [anon_sym__Atomic] = ACTIONS(4517), + [anon_sym__Noreturn] = ACTIONS(4517), + [anon_sym_noreturn] = ACTIONS(4517), + [anon_sym_mutable] = ACTIONS(4517), + [anon_sym_constinit] = ACTIONS(4517), + [anon_sym_consteval] = ACTIONS(4517), + [anon_sym_QMARK] = ACTIONS(4519), + [anon_sym_STAR_EQ] = ACTIONS(4519), + [anon_sym_SLASH_EQ] = ACTIONS(4519), + [anon_sym_PERCENT_EQ] = ACTIONS(4519), + [anon_sym_PLUS_EQ] = ACTIONS(4519), + [anon_sym_DASH_EQ] = ACTIONS(4519), + [anon_sym_LT_LT_EQ] = ACTIONS(4519), + [anon_sym_GT_GT_EQ] = ACTIONS(4519), + [anon_sym_AMP_EQ] = ACTIONS(4519), + [anon_sym_CARET_EQ] = ACTIONS(4519), + [anon_sym_PIPE_EQ] = ACTIONS(4519), + [anon_sym_and_eq] = ACTIONS(4517), + [anon_sym_or_eq] = ACTIONS(4517), + [anon_sym_xor_eq] = ACTIONS(4517), + [anon_sym_LT_EQ_GT] = ACTIONS(4519), + [anon_sym_or] = ACTIONS(4517), + [anon_sym_and] = ACTIONS(4517), + [anon_sym_bitor] = ACTIONS(4517), + [anon_sym_xor] = ACTIONS(4517), + [anon_sym_bitand] = ACTIONS(4517), + [anon_sym_not_eq] = ACTIONS(4517), + [anon_sym_DASH_DASH] = ACTIONS(4519), + [anon_sym_PLUS_PLUS] = ACTIONS(4519), + [anon_sym_DOT] = ACTIONS(4517), + [anon_sym_DASH_GT] = ACTIONS(4517), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4517), + [anon_sym_decltype] = ACTIONS(4517), + [anon_sym_virtual] = ACTIONS(4517), + [anon_sym_template] = ACTIONS(4517), + [anon_sym_operator] = ACTIONS(4517), + [anon_sym_DOT_STAR] = ACTIONS(4519), + [anon_sym_DASH_GT_STAR] = ACTIONS(4519), + }, + [2087] = { + [sym_template_argument_list] = STATE(2209), + [sym_identifier] = ACTIONS(4455), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4457), + [anon_sym_COMMA] = ACTIONS(4457), + [anon_sym_LPAREN2] = ACTIONS(4470), + [anon_sym_TILDE] = ACTIONS(4463), + [anon_sym_DASH] = ACTIONS(4465), + [anon_sym_PLUS] = ACTIONS(4465), + [anon_sym_STAR] = ACTIONS(4467), + [anon_sym_SLASH] = ACTIONS(4465), + [anon_sym_PERCENT] = ACTIONS(4465), + [anon_sym_PIPE_PIPE] = ACTIONS(4457), + [anon_sym_AMP_AMP] = ACTIONS(4470), + [anon_sym_PIPE] = ACTIONS(4465), + [anon_sym_CARET] = ACTIONS(4465), + [anon_sym_AMP] = ACTIONS(4467), + [anon_sym_EQ_EQ] = ACTIONS(4457), + [anon_sym_BANG_EQ] = ACTIONS(4457), + [anon_sym_GT] = ACTIONS(4465), + [anon_sym_GT_EQ] = ACTIONS(4457), + [anon_sym_LT_EQ] = ACTIONS(4465), + [anon_sym_LT] = ACTIONS(4473), + [anon_sym_LT_LT] = ACTIONS(4465), + [anon_sym_GT_GT] = ACTIONS(4465), + [anon_sym_SEMI] = ACTIONS(4457), + [anon_sym_extern] = ACTIONS(4455), + [anon_sym___attribute__] = ACTIONS(4455), + [anon_sym_COLON_COLON] = ACTIONS(4476), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4463), + [anon_sym___declspec] = ACTIONS(4455), + [anon_sym___based] = ACTIONS(4455), + [anon_sym_LBRACE] = ACTIONS(4481), + [anon_sym_LBRACK] = ACTIONS(4467), + [anon_sym_EQ] = ACTIONS(4487), + [anon_sym_static] = ACTIONS(4455), + [anon_sym_register] = ACTIONS(4455), + [anon_sym_inline] = ACTIONS(4455), + [anon_sym_thread_local] = ACTIONS(4455), + [anon_sym_const] = ACTIONS(4455), + [anon_sym_constexpr] = ACTIONS(4455), + [anon_sym_volatile] = ACTIONS(4455), + [anon_sym_restrict] = ACTIONS(4455), + [anon_sym___restrict__] = ACTIONS(4455), + [anon_sym__Atomic] = ACTIONS(4455), + [anon_sym__Noreturn] = ACTIONS(4455), + [anon_sym_noreturn] = ACTIONS(4455), + [anon_sym_mutable] = ACTIONS(4455), + [anon_sym_constinit] = ACTIONS(4455), + [anon_sym_consteval] = ACTIONS(4455), + [anon_sym_COLON] = ACTIONS(4521), + [anon_sym_QMARK] = ACTIONS(4457), + [anon_sym_STAR_EQ] = ACTIONS(4491), + [anon_sym_SLASH_EQ] = ACTIONS(4491), + [anon_sym_PERCENT_EQ] = ACTIONS(4491), + [anon_sym_PLUS_EQ] = ACTIONS(4491), + [anon_sym_DASH_EQ] = ACTIONS(4491), + [anon_sym_LT_LT_EQ] = ACTIONS(4491), + [anon_sym_GT_GT_EQ] = ACTIONS(4491), + [anon_sym_AMP_EQ] = ACTIONS(4491), + [anon_sym_CARET_EQ] = ACTIONS(4491), + [anon_sym_PIPE_EQ] = ACTIONS(4491), + [anon_sym_and_eq] = ACTIONS(4487), + [anon_sym_or_eq] = ACTIONS(4487), + [anon_sym_xor_eq] = ACTIONS(4487), + [anon_sym_LT_EQ_GT] = ACTIONS(4457), + [anon_sym_or] = ACTIONS(4465), + [anon_sym_and] = ACTIONS(4465), + [anon_sym_bitor] = ACTIONS(4465), + [anon_sym_xor] = ACTIONS(4465), + [anon_sym_bitand] = ACTIONS(4465), + [anon_sym_not_eq] = ACTIONS(4465), + [anon_sym_DASH_DASH] = ACTIONS(4457), + [anon_sym_PLUS_PLUS] = ACTIONS(4457), + [anon_sym_DOT] = ACTIONS(4465), + [anon_sym_DASH_GT] = ACTIONS(4457), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4455), + [anon_sym_decltype] = ACTIONS(4455), + [anon_sym_virtual] = ACTIONS(4455), + [anon_sym_template] = ACTIONS(4455), + [anon_sym_operator] = ACTIONS(4455), + }, + [2088] = { + [sym_identifier] = ACTIONS(4523), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4525), + [anon_sym_COMMA] = ACTIONS(4525), + [anon_sym_RPAREN] = ACTIONS(4525), + [anon_sym_LPAREN2] = ACTIONS(4525), + [anon_sym_TILDE] = ACTIONS(4525), + [anon_sym_DASH] = ACTIONS(4523), + [anon_sym_PLUS] = ACTIONS(4523), + [anon_sym_STAR] = ACTIONS(4523), + [anon_sym_SLASH] = ACTIONS(4523), + [anon_sym_PERCENT] = ACTIONS(4523), + [anon_sym_PIPE_PIPE] = ACTIONS(4525), + [anon_sym_AMP_AMP] = ACTIONS(4525), + [anon_sym_PIPE] = ACTIONS(4523), + [anon_sym_CARET] = ACTIONS(4523), + [anon_sym_AMP] = ACTIONS(4523), + [anon_sym_EQ_EQ] = ACTIONS(4525), + [anon_sym_BANG_EQ] = ACTIONS(4525), + [anon_sym_GT] = ACTIONS(4523), + [anon_sym_GT_EQ] = ACTIONS(4525), + [anon_sym_LT_EQ] = ACTIONS(4523), + [anon_sym_LT] = ACTIONS(4523), + [anon_sym_LT_LT] = ACTIONS(4523), + [anon_sym_GT_GT] = ACTIONS(4523), + [anon_sym_SEMI] = ACTIONS(4525), + [anon_sym_extern] = ACTIONS(4523), + [anon_sym___attribute__] = ACTIONS(4523), + [anon_sym_COLON_COLON] = ACTIONS(4525), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4525), + [anon_sym___declspec] = ACTIONS(4523), + [anon_sym___based] = ACTIONS(4523), + [anon_sym_LBRACE] = ACTIONS(4525), + [anon_sym_RBRACE] = ACTIONS(4525), + [anon_sym_LBRACK] = ACTIONS(4523), + [anon_sym_EQ] = ACTIONS(4523), + [anon_sym_static] = ACTIONS(4523), + [anon_sym_register] = ACTIONS(4523), + [anon_sym_inline] = ACTIONS(4523), + [anon_sym_thread_local] = ACTIONS(4523), + [anon_sym_const] = ACTIONS(4523), + [anon_sym_constexpr] = ACTIONS(4523), + [anon_sym_volatile] = ACTIONS(4523), + [anon_sym_restrict] = ACTIONS(4523), + [anon_sym___restrict__] = ACTIONS(4523), + [anon_sym__Atomic] = ACTIONS(4523), + [anon_sym__Noreturn] = ACTIONS(4523), + [anon_sym_noreturn] = ACTIONS(4523), + [anon_sym_mutable] = ACTIONS(4523), + [anon_sym_constinit] = ACTIONS(4523), + [anon_sym_consteval] = ACTIONS(4523), + [anon_sym_QMARK] = ACTIONS(4525), + [anon_sym_STAR_EQ] = ACTIONS(4525), + [anon_sym_SLASH_EQ] = ACTIONS(4525), + [anon_sym_PERCENT_EQ] = ACTIONS(4525), + [anon_sym_PLUS_EQ] = ACTIONS(4525), + [anon_sym_DASH_EQ] = ACTIONS(4525), + [anon_sym_LT_LT_EQ] = ACTIONS(4525), + [anon_sym_GT_GT_EQ] = ACTIONS(4525), + [anon_sym_AMP_EQ] = ACTIONS(4525), + [anon_sym_CARET_EQ] = ACTIONS(4525), + [anon_sym_PIPE_EQ] = ACTIONS(4525), + [anon_sym_and_eq] = ACTIONS(4523), + [anon_sym_or_eq] = ACTIONS(4523), + [anon_sym_xor_eq] = ACTIONS(4523), + [anon_sym_LT_EQ_GT] = ACTIONS(4525), + [anon_sym_or] = ACTIONS(4523), + [anon_sym_and] = ACTIONS(4523), + [anon_sym_bitor] = ACTIONS(4523), + [anon_sym_xor] = ACTIONS(4523), + [anon_sym_bitand] = ACTIONS(4523), + [anon_sym_not_eq] = ACTIONS(4523), + [anon_sym_DASH_DASH] = ACTIONS(4525), + [anon_sym_PLUS_PLUS] = ACTIONS(4525), + [anon_sym_DOT] = ACTIONS(4523), + [anon_sym_DASH_GT] = ACTIONS(4525), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4523), + [anon_sym_decltype] = ACTIONS(4523), + [anon_sym_virtual] = ACTIONS(4523), + [anon_sym_template] = ACTIONS(4523), + [anon_sym_operator] = ACTIONS(4523), + }, + [2089] = { + [sym_identifier] = ACTIONS(4527), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4529), + [anon_sym_COMMA] = ACTIONS(4529), + [anon_sym_RPAREN] = ACTIONS(4529), + [anon_sym_LPAREN2] = ACTIONS(4529), + [anon_sym_TILDE] = ACTIONS(4529), + [anon_sym_DASH] = ACTIONS(4527), + [anon_sym_PLUS] = ACTIONS(4527), + [anon_sym_STAR] = ACTIONS(4527), + [anon_sym_SLASH] = ACTIONS(4527), + [anon_sym_PERCENT] = ACTIONS(4527), + [anon_sym_PIPE_PIPE] = ACTIONS(4529), + [anon_sym_AMP_AMP] = ACTIONS(4529), + [anon_sym_PIPE] = ACTIONS(4527), + [anon_sym_CARET] = ACTIONS(4527), + [anon_sym_AMP] = ACTIONS(4527), + [anon_sym_EQ_EQ] = ACTIONS(4529), + [anon_sym_BANG_EQ] = ACTIONS(4529), + [anon_sym_GT] = ACTIONS(4527), + [anon_sym_GT_EQ] = ACTIONS(4529), + [anon_sym_LT_EQ] = ACTIONS(4527), + [anon_sym_LT] = ACTIONS(4527), + [anon_sym_LT_LT] = ACTIONS(4527), + [anon_sym_GT_GT] = ACTIONS(4527), + [anon_sym_SEMI] = ACTIONS(4529), + [anon_sym_extern] = ACTIONS(4527), + [anon_sym___attribute__] = ACTIONS(4527), + [anon_sym_COLON_COLON] = ACTIONS(4529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4529), + [anon_sym___declspec] = ACTIONS(4527), + [anon_sym___based] = ACTIONS(4527), + [anon_sym_LBRACE] = ACTIONS(4529), + [anon_sym_RBRACE] = ACTIONS(4529), + [anon_sym_LBRACK] = ACTIONS(4527), + [anon_sym_EQ] = ACTIONS(4527), + [anon_sym_static] = ACTIONS(4527), + [anon_sym_register] = ACTIONS(4527), + [anon_sym_inline] = ACTIONS(4527), + [anon_sym_thread_local] = ACTIONS(4527), + [anon_sym_const] = ACTIONS(4527), + [anon_sym_constexpr] = ACTIONS(4527), + [anon_sym_volatile] = ACTIONS(4527), + [anon_sym_restrict] = ACTIONS(4527), + [anon_sym___restrict__] = ACTIONS(4527), + [anon_sym__Atomic] = ACTIONS(4527), + [anon_sym__Noreturn] = ACTIONS(4527), + [anon_sym_noreturn] = ACTIONS(4527), + [anon_sym_mutable] = ACTIONS(4527), + [anon_sym_constinit] = ACTIONS(4527), + [anon_sym_consteval] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4529), + [anon_sym_STAR_EQ] = ACTIONS(4529), + [anon_sym_SLASH_EQ] = ACTIONS(4529), + [anon_sym_PERCENT_EQ] = ACTIONS(4529), + [anon_sym_PLUS_EQ] = ACTIONS(4529), + [anon_sym_DASH_EQ] = ACTIONS(4529), + [anon_sym_LT_LT_EQ] = ACTIONS(4529), + [anon_sym_GT_GT_EQ] = ACTIONS(4529), + [anon_sym_AMP_EQ] = ACTIONS(4529), + [anon_sym_CARET_EQ] = ACTIONS(4529), + [anon_sym_PIPE_EQ] = ACTIONS(4529), + [anon_sym_and_eq] = ACTIONS(4527), + [anon_sym_or_eq] = ACTIONS(4527), + [anon_sym_xor_eq] = ACTIONS(4527), + [anon_sym_LT_EQ_GT] = ACTIONS(4529), + [anon_sym_or] = ACTIONS(4527), + [anon_sym_and] = ACTIONS(4527), + [anon_sym_bitor] = ACTIONS(4527), + [anon_sym_xor] = ACTIONS(4527), + [anon_sym_bitand] = ACTIONS(4527), + [anon_sym_not_eq] = ACTIONS(4527), + [anon_sym_DASH_DASH] = ACTIONS(4529), + [anon_sym_PLUS_PLUS] = ACTIONS(4529), + [anon_sym_DOT] = ACTIONS(4527), + [anon_sym_DASH_GT] = ACTIONS(4529), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4527), + [anon_sym_decltype] = ACTIONS(4527), + [anon_sym_virtual] = ACTIONS(4527), + [anon_sym_template] = ACTIONS(4527), + [anon_sym_operator] = ACTIONS(4527), + }, + [2090] = { + [sym_template_argument_list] = STATE(2209), + [sym_identifier] = ACTIONS(4455), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4457), + [anon_sym_COMMA] = ACTIONS(4457), + [anon_sym_LPAREN2] = ACTIONS(4470), + [anon_sym_TILDE] = ACTIONS(4463), + [anon_sym_DASH] = ACTIONS(4465), + [anon_sym_PLUS] = ACTIONS(4465), + [anon_sym_STAR] = ACTIONS(4467), + [anon_sym_SLASH] = ACTIONS(4465), + [anon_sym_PERCENT] = ACTIONS(4465), + [anon_sym_PIPE_PIPE] = ACTIONS(4457), + [anon_sym_AMP_AMP] = ACTIONS(4470), + [anon_sym_PIPE] = ACTIONS(4465), + [anon_sym_CARET] = ACTIONS(4465), + [anon_sym_AMP] = ACTIONS(4467), + [anon_sym_EQ_EQ] = ACTIONS(4457), + [anon_sym_BANG_EQ] = ACTIONS(4457), + [anon_sym_GT] = ACTIONS(4465), + [anon_sym_GT_EQ] = ACTIONS(4457), + [anon_sym_LT_EQ] = ACTIONS(4465), + [anon_sym_LT] = ACTIONS(4473), + [anon_sym_LT_LT] = ACTIONS(4465), + [anon_sym_GT_GT] = ACTIONS(4465), + [anon_sym_SEMI] = ACTIONS(4457), + [anon_sym_extern] = ACTIONS(4455), + [anon_sym___attribute__] = ACTIONS(4455), + [anon_sym_COLON_COLON] = ACTIONS(4476), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4463), + [anon_sym___declspec] = ACTIONS(4455), + [anon_sym___based] = ACTIONS(4455), + [anon_sym_LBRACE] = ACTIONS(4481), + [anon_sym_LBRACK] = ACTIONS(4467), + [anon_sym_EQ] = ACTIONS(4487), + [anon_sym_static] = ACTIONS(4455), + [anon_sym_register] = ACTIONS(4455), + [anon_sym_inline] = ACTIONS(4455), + [anon_sym_thread_local] = ACTIONS(4455), + [anon_sym_const] = ACTIONS(4455), + [anon_sym_constexpr] = ACTIONS(4455), + [anon_sym_volatile] = ACTIONS(4455), + [anon_sym_restrict] = ACTIONS(4455), + [anon_sym___restrict__] = ACTIONS(4455), + [anon_sym__Atomic] = ACTIONS(4455), + [anon_sym__Noreturn] = ACTIONS(4455), + [anon_sym_noreturn] = ACTIONS(4455), + [anon_sym_mutable] = ACTIONS(4455), + [anon_sym_constinit] = ACTIONS(4455), + [anon_sym_consteval] = ACTIONS(4455), + [anon_sym_COLON] = ACTIONS(4489), + [anon_sym_QMARK] = ACTIONS(4457), + [anon_sym_STAR_EQ] = ACTIONS(4491), + [anon_sym_SLASH_EQ] = ACTIONS(4491), + [anon_sym_PERCENT_EQ] = ACTIONS(4491), + [anon_sym_PLUS_EQ] = ACTIONS(4491), + [anon_sym_DASH_EQ] = ACTIONS(4491), + [anon_sym_LT_LT_EQ] = ACTIONS(4491), + [anon_sym_GT_GT_EQ] = ACTIONS(4491), + [anon_sym_AMP_EQ] = ACTIONS(4491), + [anon_sym_CARET_EQ] = ACTIONS(4491), + [anon_sym_PIPE_EQ] = ACTIONS(4491), + [anon_sym_and_eq] = ACTIONS(4487), + [anon_sym_or_eq] = ACTIONS(4487), + [anon_sym_xor_eq] = ACTIONS(4487), + [anon_sym_LT_EQ_GT] = ACTIONS(4457), + [anon_sym_or] = ACTIONS(4465), + [anon_sym_and] = ACTIONS(4465), + [anon_sym_bitor] = ACTIONS(4465), + [anon_sym_xor] = ACTIONS(4465), + [anon_sym_bitand] = ACTIONS(4465), + [anon_sym_not_eq] = ACTIONS(4465), + [anon_sym_DASH_DASH] = ACTIONS(4457), + [anon_sym_PLUS_PLUS] = ACTIONS(4457), + [anon_sym_DOT] = ACTIONS(4465), + [anon_sym_DASH_GT] = ACTIONS(4457), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4455), + [anon_sym_decltype] = ACTIONS(4455), + [anon_sym_virtual] = ACTIONS(4455), + [anon_sym_template] = ACTIONS(4455), + [anon_sym_operator] = ACTIONS(4455), + }, + [2091] = { + [sym_identifier] = ACTIONS(4531), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4533), + [anon_sym_COMMA] = ACTIONS(4533), + [anon_sym_RPAREN] = ACTIONS(4533), + [anon_sym_LPAREN2] = ACTIONS(4533), + [anon_sym_TILDE] = ACTIONS(4533), + [anon_sym_DASH] = ACTIONS(4531), + [anon_sym_PLUS] = ACTIONS(4531), + [anon_sym_STAR] = ACTIONS(4531), + [anon_sym_SLASH] = ACTIONS(4531), + [anon_sym_PERCENT] = ACTIONS(4531), + [anon_sym_PIPE_PIPE] = ACTIONS(4533), + [anon_sym_AMP_AMP] = ACTIONS(4533), + [anon_sym_PIPE] = ACTIONS(4531), + [anon_sym_CARET] = ACTIONS(4531), + [anon_sym_AMP] = ACTIONS(4531), + [anon_sym_EQ_EQ] = ACTIONS(4533), + [anon_sym_BANG_EQ] = ACTIONS(4533), + [anon_sym_GT] = ACTIONS(4531), + [anon_sym_GT_EQ] = ACTIONS(4533), + [anon_sym_LT_EQ] = ACTIONS(4531), + [anon_sym_LT] = ACTIONS(4531), + [anon_sym_LT_LT] = ACTIONS(4531), + [anon_sym_GT_GT] = ACTIONS(4531), + [anon_sym_SEMI] = ACTIONS(4533), + [anon_sym_extern] = ACTIONS(4531), + [anon_sym___attribute__] = ACTIONS(4531), + [anon_sym_COLON_COLON] = ACTIONS(4533), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4533), + [anon_sym___declspec] = ACTIONS(4531), + [anon_sym___based] = ACTIONS(4531), + [anon_sym_LBRACE] = ACTIONS(4533), + [anon_sym_RBRACE] = ACTIONS(4533), + [anon_sym_LBRACK] = ACTIONS(4531), + [anon_sym_EQ] = ACTIONS(4531), + [anon_sym_static] = ACTIONS(4531), + [anon_sym_register] = ACTIONS(4531), + [anon_sym_inline] = ACTIONS(4531), + [anon_sym_thread_local] = ACTIONS(4531), + [anon_sym_const] = ACTIONS(4531), + [anon_sym_constexpr] = ACTIONS(4531), + [anon_sym_volatile] = ACTIONS(4531), + [anon_sym_restrict] = ACTIONS(4531), + [anon_sym___restrict__] = ACTIONS(4531), + [anon_sym__Atomic] = ACTIONS(4531), + [anon_sym__Noreturn] = ACTIONS(4531), + [anon_sym_noreturn] = ACTIONS(4531), + [anon_sym_mutable] = ACTIONS(4531), + [anon_sym_constinit] = ACTIONS(4531), + [anon_sym_consteval] = ACTIONS(4531), + [anon_sym_QMARK] = ACTIONS(4533), + [anon_sym_STAR_EQ] = ACTIONS(4533), + [anon_sym_SLASH_EQ] = ACTIONS(4533), + [anon_sym_PERCENT_EQ] = ACTIONS(4533), + [anon_sym_PLUS_EQ] = ACTIONS(4533), + [anon_sym_DASH_EQ] = ACTIONS(4533), + [anon_sym_LT_LT_EQ] = ACTIONS(4533), + [anon_sym_GT_GT_EQ] = ACTIONS(4533), + [anon_sym_AMP_EQ] = ACTIONS(4533), + [anon_sym_CARET_EQ] = ACTIONS(4533), + [anon_sym_PIPE_EQ] = ACTIONS(4533), + [anon_sym_and_eq] = ACTIONS(4531), + [anon_sym_or_eq] = ACTIONS(4531), + [anon_sym_xor_eq] = ACTIONS(4531), + [anon_sym_LT_EQ_GT] = ACTIONS(4533), + [anon_sym_or] = ACTIONS(4531), + [anon_sym_and] = ACTIONS(4531), + [anon_sym_bitor] = ACTIONS(4531), + [anon_sym_xor] = ACTIONS(4531), + [anon_sym_bitand] = ACTIONS(4531), + [anon_sym_not_eq] = ACTIONS(4531), + [anon_sym_DASH_DASH] = ACTIONS(4533), + [anon_sym_PLUS_PLUS] = ACTIONS(4533), + [anon_sym_DOT] = ACTIONS(4531), + [anon_sym_DASH_GT] = ACTIONS(4533), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4531), + [anon_sym_decltype] = ACTIONS(4531), + [anon_sym_virtual] = ACTIONS(4531), + [anon_sym_template] = ACTIONS(4531), + [anon_sym_operator] = ACTIONS(4531), + }, + [2092] = { + [sym_template_argument_list] = STATE(2205), + [sym_identifier] = ACTIONS(4455), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4457), + [anon_sym_COMMA] = ACTIONS(4457), + [anon_sym_LPAREN2] = ACTIONS(4459), + [anon_sym_TILDE] = ACTIONS(4463), + [anon_sym_DASH] = ACTIONS(4465), + [anon_sym_PLUS] = ACTIONS(4465), + [anon_sym_STAR] = ACTIONS(4467), + [anon_sym_SLASH] = ACTIONS(4465), + [anon_sym_PERCENT] = ACTIONS(4465), + [anon_sym_PIPE_PIPE] = ACTIONS(4457), + [anon_sym_AMP_AMP] = ACTIONS(4470), + [anon_sym_PIPE] = ACTIONS(4465), + [anon_sym_CARET] = ACTIONS(4465), + [anon_sym_AMP] = ACTIONS(4467), + [anon_sym_EQ_EQ] = ACTIONS(4457), + [anon_sym_BANG_EQ] = ACTIONS(4457), + [anon_sym_GT] = ACTIONS(4465), + [anon_sym_GT_EQ] = ACTIONS(4457), + [anon_sym_LT_EQ] = ACTIONS(4465), + [anon_sym_LT] = ACTIONS(4473), + [anon_sym_LT_LT] = ACTIONS(4465), + [anon_sym_GT_GT] = ACTIONS(4465), + [anon_sym_SEMI] = ACTIONS(4470), + [anon_sym_extern] = ACTIONS(4455), + [anon_sym___attribute__] = ACTIONS(4455), + [anon_sym_COLON_COLON] = ACTIONS(4476), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4478), + [anon_sym___declspec] = ACTIONS(4455), + [anon_sym___based] = ACTIONS(4455), + [anon_sym_LBRACE] = ACTIONS(4481), + [anon_sym_LBRACK] = ACTIONS(4483), + [anon_sym_EQ] = ACTIONS(4487), + [anon_sym_static] = ACTIONS(4455), + [anon_sym_register] = ACTIONS(4455), + [anon_sym_inline] = ACTIONS(4455), + [anon_sym_thread_local] = ACTIONS(4455), + [anon_sym_const] = ACTIONS(4455), + [anon_sym_constexpr] = ACTIONS(4455), + [anon_sym_volatile] = ACTIONS(4455), + [anon_sym_restrict] = ACTIONS(4455), + [anon_sym___restrict__] = ACTIONS(4455), + [anon_sym__Atomic] = ACTIONS(4455), + [anon_sym__Noreturn] = ACTIONS(4455), + [anon_sym_noreturn] = ACTIONS(4455), + [anon_sym_mutable] = ACTIONS(4455), + [anon_sym_constinit] = ACTIONS(4455), + [anon_sym_consteval] = ACTIONS(4455), + [anon_sym_COLON] = ACTIONS(4521), + [anon_sym_QMARK] = ACTIONS(4457), + [anon_sym_STAR_EQ] = ACTIONS(4491), + [anon_sym_SLASH_EQ] = ACTIONS(4491), + [anon_sym_PERCENT_EQ] = ACTIONS(4491), + [anon_sym_PLUS_EQ] = ACTIONS(4491), + [anon_sym_DASH_EQ] = ACTIONS(4491), + [anon_sym_LT_LT_EQ] = ACTIONS(4491), + [anon_sym_GT_GT_EQ] = ACTIONS(4491), + [anon_sym_AMP_EQ] = ACTIONS(4491), + [anon_sym_CARET_EQ] = ACTIONS(4491), + [anon_sym_PIPE_EQ] = ACTIONS(4491), + [anon_sym_and_eq] = ACTIONS(4487), + [anon_sym_or_eq] = ACTIONS(4487), + [anon_sym_xor_eq] = ACTIONS(4487), + [anon_sym_LT_EQ_GT] = ACTIONS(4457), + [anon_sym_or] = ACTIONS(4465), + [anon_sym_and] = ACTIONS(4465), + [anon_sym_bitor] = ACTIONS(4465), + [anon_sym_xor] = ACTIONS(4465), + [anon_sym_bitand] = ACTIONS(4465), + [anon_sym_not_eq] = ACTIONS(4465), + [anon_sym_DASH_DASH] = ACTIONS(4457), + [anon_sym_PLUS_PLUS] = ACTIONS(4457), + [anon_sym_DOT] = ACTIONS(4465), + [anon_sym_DASH_GT] = ACTIONS(4457), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4455), + [anon_sym_decltype] = ACTIONS(4455), + [anon_sym_virtual] = ACTIONS(4455), + [anon_sym_template] = ACTIONS(4455), + [anon_sym_operator] = ACTIONS(4455), + }, + [2093] = { + [sym_identifier] = ACTIONS(4535), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4537), + [anon_sym_COMMA] = ACTIONS(4537), + [anon_sym_RPAREN] = ACTIONS(4537), + [anon_sym_LPAREN2] = ACTIONS(4537), + [anon_sym_TILDE] = ACTIONS(4537), + [anon_sym_DASH] = ACTIONS(4535), + [anon_sym_PLUS] = ACTIONS(4535), + [anon_sym_STAR] = ACTIONS(4535), + [anon_sym_SLASH] = ACTIONS(4535), + [anon_sym_PERCENT] = ACTIONS(4535), + [anon_sym_PIPE_PIPE] = ACTIONS(4537), + [anon_sym_AMP_AMP] = ACTIONS(4537), + [anon_sym_PIPE] = ACTIONS(4535), + [anon_sym_CARET] = ACTIONS(4535), + [anon_sym_AMP] = ACTIONS(4535), + [anon_sym_EQ_EQ] = ACTIONS(4537), + [anon_sym_BANG_EQ] = ACTIONS(4537), + [anon_sym_GT] = ACTIONS(4535), + [anon_sym_GT_EQ] = ACTIONS(4537), + [anon_sym_LT_EQ] = ACTIONS(4535), + [anon_sym_LT] = ACTIONS(4535), + [anon_sym_LT_LT] = ACTIONS(4535), + [anon_sym_GT_GT] = ACTIONS(4535), + [anon_sym_extern] = ACTIONS(4535), + [anon_sym___attribute__] = ACTIONS(4535), + [anon_sym_COLON_COLON] = ACTIONS(4537), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4537), + [anon_sym___declspec] = ACTIONS(4535), + [anon_sym___based] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4537), + [anon_sym_LBRACK] = ACTIONS(4535), + [anon_sym_EQ] = ACTIONS(4535), + [anon_sym_static] = ACTIONS(4535), + [anon_sym_register] = ACTIONS(4535), + [anon_sym_inline] = ACTIONS(4535), + [anon_sym_thread_local] = ACTIONS(4535), + [anon_sym_const] = ACTIONS(4535), + [anon_sym_constexpr] = ACTIONS(4535), + [anon_sym_volatile] = ACTIONS(4535), + [anon_sym_restrict] = ACTIONS(4535), + [anon_sym___restrict__] = ACTIONS(4535), + [anon_sym__Atomic] = ACTIONS(4535), + [anon_sym__Noreturn] = ACTIONS(4535), + [anon_sym_noreturn] = ACTIONS(4535), + [anon_sym_mutable] = ACTIONS(4535), + [anon_sym_constinit] = ACTIONS(4535), + [anon_sym_consteval] = ACTIONS(4535), + [anon_sym_QMARK] = ACTIONS(4537), + [anon_sym_STAR_EQ] = ACTIONS(4537), + [anon_sym_SLASH_EQ] = ACTIONS(4537), + [anon_sym_PERCENT_EQ] = ACTIONS(4537), + [anon_sym_PLUS_EQ] = ACTIONS(4537), + [anon_sym_DASH_EQ] = ACTIONS(4537), + [anon_sym_LT_LT_EQ] = ACTIONS(4537), + [anon_sym_GT_GT_EQ] = ACTIONS(4537), + [anon_sym_AMP_EQ] = ACTIONS(4537), + [anon_sym_CARET_EQ] = ACTIONS(4537), + [anon_sym_PIPE_EQ] = ACTIONS(4537), + [anon_sym_and_eq] = ACTIONS(4535), + [anon_sym_or_eq] = ACTIONS(4535), + [anon_sym_xor_eq] = ACTIONS(4535), + [anon_sym_LT_EQ_GT] = ACTIONS(4537), + [anon_sym_or] = ACTIONS(4535), + [anon_sym_and] = ACTIONS(4535), + [anon_sym_bitor] = ACTIONS(4535), + [anon_sym_xor] = ACTIONS(4535), + [anon_sym_bitand] = ACTIONS(4535), + [anon_sym_not_eq] = ACTIONS(4535), + [anon_sym_DASH_DASH] = ACTIONS(4537), + [anon_sym_PLUS_PLUS] = ACTIONS(4537), + [anon_sym_DOT] = ACTIONS(4535), + [anon_sym_DASH_GT] = ACTIONS(4535), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4535), + [anon_sym_decltype] = ACTIONS(4535), + [anon_sym_virtual] = ACTIONS(4535), + [anon_sym_template] = ACTIONS(4535), + [anon_sym_operator] = ACTIONS(4535), + [anon_sym_DOT_STAR] = ACTIONS(4537), + [anon_sym_DASH_GT_STAR] = ACTIONS(4537), + }, + [2094] = { + [sym_template_argument_list] = STATE(2114), + [sym_identifier] = ACTIONS(4498), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4510), + [anon_sym_COMMA] = ACTIONS(4510), + [anon_sym_RPAREN] = ACTIONS(4510), + [anon_sym_LPAREN2] = ACTIONS(4500), + [anon_sym_TILDE] = ACTIONS(4503), + [anon_sym_DASH] = ACTIONS(4505), + [anon_sym_PLUS] = ACTIONS(4505), + [anon_sym_STAR] = ACTIONS(4507), + [anon_sym_SLASH] = ACTIONS(4505), + [anon_sym_PERCENT] = ACTIONS(4505), + [anon_sym_PIPE_PIPE] = ACTIONS(4510), + [anon_sym_AMP_AMP] = ACTIONS(4500), + [anon_sym_PIPE] = ACTIONS(4505), + [anon_sym_CARET] = ACTIONS(4505), + [anon_sym_AMP] = ACTIONS(4507), + [anon_sym_EQ_EQ] = ACTIONS(4510), + [anon_sym_BANG_EQ] = ACTIONS(4510), + [anon_sym_GT] = ACTIONS(4505), + [anon_sym_GT_EQ] = ACTIONS(4510), + [anon_sym_LT_EQ] = ACTIONS(4505), + [anon_sym_LT] = ACTIONS(4539), + [anon_sym_LT_LT] = ACTIONS(4505), + [anon_sym_GT_GT] = ACTIONS(4505), + [anon_sym_SEMI] = ACTIONS(4510), + [anon_sym_extern] = ACTIONS(4498), + [anon_sym___attribute__] = ACTIONS(4498), + [anon_sym_COLON_COLON] = ACTIONS(4476), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4503), + [anon_sym___declspec] = ACTIONS(4498), + [anon_sym___based] = ACTIONS(4498), + [anon_sym_LBRACE] = ACTIONS(4503), + [anon_sym_LBRACK] = ACTIONS(4507), + [anon_sym_EQ] = ACTIONS(4505), + [anon_sym_static] = ACTIONS(4498), + [anon_sym_register] = ACTIONS(4498), + [anon_sym_inline] = ACTIONS(4498), + [anon_sym_thread_local] = ACTIONS(4498), + [anon_sym_const] = ACTIONS(4498), + [anon_sym_constexpr] = ACTIONS(4498), + [anon_sym_volatile] = ACTIONS(4498), + [anon_sym_restrict] = ACTIONS(4498), + [anon_sym___restrict__] = ACTIONS(4498), + [anon_sym__Atomic] = ACTIONS(4498), + [anon_sym__Noreturn] = ACTIONS(4498), + [anon_sym_noreturn] = ACTIONS(4498), + [anon_sym_mutable] = ACTIONS(4498), + [anon_sym_constinit] = ACTIONS(4498), + [anon_sym_consteval] = ACTIONS(4498), + [anon_sym_QMARK] = ACTIONS(4510), + [anon_sym_STAR_EQ] = ACTIONS(4510), + [anon_sym_SLASH_EQ] = ACTIONS(4510), + [anon_sym_PERCENT_EQ] = ACTIONS(4510), + [anon_sym_PLUS_EQ] = ACTIONS(4510), + [anon_sym_DASH_EQ] = ACTIONS(4510), + [anon_sym_LT_LT_EQ] = ACTIONS(4510), + [anon_sym_GT_GT_EQ] = ACTIONS(4510), + [anon_sym_AMP_EQ] = ACTIONS(4510), + [anon_sym_CARET_EQ] = ACTIONS(4510), + [anon_sym_PIPE_EQ] = ACTIONS(4510), + [anon_sym_and_eq] = ACTIONS(4505), + [anon_sym_or_eq] = ACTIONS(4505), + [anon_sym_xor_eq] = ACTIONS(4505), + [anon_sym_LT_EQ_GT] = ACTIONS(4510), + [anon_sym_or] = ACTIONS(4505), + [anon_sym_and] = ACTIONS(4505), + [anon_sym_bitor] = ACTIONS(4505), + [anon_sym_xor] = ACTIONS(4505), + [anon_sym_bitand] = ACTIONS(4505), + [anon_sym_not_eq] = ACTIONS(4505), + [anon_sym_DASH_DASH] = ACTIONS(4510), + [anon_sym_PLUS_PLUS] = ACTIONS(4510), + [anon_sym_DOT] = ACTIONS(4505), + [anon_sym_DASH_GT] = ACTIONS(4510), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4498), + [anon_sym_decltype] = ACTIONS(4498), + [anon_sym_virtual] = ACTIONS(4498), + [anon_sym_template] = ACTIONS(4498), + [anon_sym_operator] = ACTIONS(4498), + }, + [2095] = { + [sym_template_argument_list] = STATE(2209), + [sym_identifier] = ACTIONS(4455), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4457), + [anon_sym_COMMA] = ACTIONS(4457), + [anon_sym_LPAREN2] = ACTIONS(4470), + [anon_sym_TILDE] = ACTIONS(4463), + [anon_sym_DASH] = ACTIONS(4465), + [anon_sym_PLUS] = ACTIONS(4465), + [anon_sym_STAR] = ACTIONS(4467), + [anon_sym_SLASH] = ACTIONS(4465), + [anon_sym_PERCENT] = ACTIONS(4465), + [anon_sym_PIPE_PIPE] = ACTIONS(4457), + [anon_sym_AMP_AMP] = ACTIONS(4470), + [anon_sym_PIPE] = ACTIONS(4465), + [anon_sym_CARET] = ACTIONS(4465), + [anon_sym_AMP] = ACTIONS(4467), + [anon_sym_EQ_EQ] = ACTIONS(4457), + [anon_sym_BANG_EQ] = ACTIONS(4457), + [anon_sym_GT] = ACTIONS(4465), + [anon_sym_GT_EQ] = ACTIONS(4457), + [anon_sym_LT_EQ] = ACTIONS(4465), + [anon_sym_LT] = ACTIONS(4473), + [anon_sym_LT_LT] = ACTIONS(4465), + [anon_sym_GT_GT] = ACTIONS(4465), + [anon_sym_SEMI] = ACTIONS(4457), + [anon_sym_extern] = ACTIONS(4455), + [anon_sym___attribute__] = ACTIONS(4455), + [anon_sym_COLON_COLON] = ACTIONS(4476), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4463), + [anon_sym___declspec] = ACTIONS(4455), + [anon_sym___based] = ACTIONS(4455), + [anon_sym_LBRACE] = ACTIONS(4481), + [anon_sym_LBRACK] = ACTIONS(4467), + [anon_sym_EQ] = ACTIONS(4487), + [anon_sym_static] = ACTIONS(4455), + [anon_sym_register] = ACTIONS(4455), + [anon_sym_inline] = ACTIONS(4455), + [anon_sym_thread_local] = ACTIONS(4455), + [anon_sym_const] = ACTIONS(4455), + [anon_sym_constexpr] = ACTIONS(4455), + [anon_sym_volatile] = ACTIONS(4455), + [anon_sym_restrict] = ACTIONS(4455), + [anon_sym___restrict__] = ACTIONS(4455), + [anon_sym__Atomic] = ACTIONS(4455), + [anon_sym__Noreturn] = ACTIONS(4455), + [anon_sym_noreturn] = ACTIONS(4455), + [anon_sym_mutable] = ACTIONS(4455), + [anon_sym_constinit] = ACTIONS(4455), + [anon_sym_consteval] = ACTIONS(4455), + [anon_sym_COLON] = ACTIONS(4542), + [anon_sym_QMARK] = ACTIONS(4457), + [anon_sym_STAR_EQ] = ACTIONS(4491), + [anon_sym_SLASH_EQ] = ACTIONS(4491), + [anon_sym_PERCENT_EQ] = ACTIONS(4491), + [anon_sym_PLUS_EQ] = ACTIONS(4491), + [anon_sym_DASH_EQ] = ACTIONS(4491), + [anon_sym_LT_LT_EQ] = ACTIONS(4491), + [anon_sym_GT_GT_EQ] = ACTIONS(4491), + [anon_sym_AMP_EQ] = ACTIONS(4491), + [anon_sym_CARET_EQ] = ACTIONS(4491), + [anon_sym_PIPE_EQ] = ACTIONS(4491), + [anon_sym_and_eq] = ACTIONS(4487), + [anon_sym_or_eq] = ACTIONS(4487), + [anon_sym_xor_eq] = ACTIONS(4487), + [anon_sym_LT_EQ_GT] = ACTIONS(4457), + [anon_sym_or] = ACTIONS(4465), + [anon_sym_and] = ACTIONS(4465), + [anon_sym_bitor] = ACTIONS(4465), + [anon_sym_xor] = ACTIONS(4465), + [anon_sym_bitand] = ACTIONS(4465), + [anon_sym_not_eq] = ACTIONS(4465), + [anon_sym_DASH_DASH] = ACTIONS(4457), + [anon_sym_PLUS_PLUS] = ACTIONS(4457), + [anon_sym_DOT] = ACTIONS(4465), + [anon_sym_DASH_GT] = ACTIONS(4457), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4455), + [anon_sym_decltype] = ACTIONS(4455), + [anon_sym_virtual] = ACTIONS(4455), + [anon_sym_template] = ACTIONS(4455), + [anon_sym_operator] = ACTIONS(4455), + }, + [2096] = { + [sym_template_argument_list] = STATE(2209), + [sym_identifier] = ACTIONS(4455), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4457), + [anon_sym_COMMA] = ACTIONS(4457), + [anon_sym_LPAREN2] = ACTIONS(4470), + [anon_sym_TILDE] = ACTIONS(4463), + [anon_sym_DASH] = ACTIONS(4465), + [anon_sym_PLUS] = ACTIONS(4465), + [anon_sym_STAR] = ACTIONS(4467), + [anon_sym_SLASH] = ACTIONS(4465), + [anon_sym_PERCENT] = ACTIONS(4465), + [anon_sym_PIPE_PIPE] = ACTIONS(4457), + [anon_sym_AMP_AMP] = ACTIONS(4470), + [anon_sym_PIPE] = ACTIONS(4465), + [anon_sym_CARET] = ACTIONS(4465), + [anon_sym_AMP] = ACTIONS(4467), + [anon_sym_EQ_EQ] = ACTIONS(4457), + [anon_sym_BANG_EQ] = ACTIONS(4457), + [anon_sym_GT] = ACTIONS(4465), + [anon_sym_GT_EQ] = ACTIONS(4457), + [anon_sym_LT_EQ] = ACTIONS(4465), + [anon_sym_LT] = ACTIONS(4473), + [anon_sym_LT_LT] = ACTIONS(4465), + [anon_sym_GT_GT] = ACTIONS(4465), + [anon_sym_SEMI] = ACTIONS(4457), + [anon_sym_extern] = ACTIONS(4455), + [anon_sym___attribute__] = ACTIONS(4455), + [anon_sym_COLON_COLON] = ACTIONS(4476), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4463), + [anon_sym___declspec] = ACTIONS(4455), + [anon_sym___based] = ACTIONS(4455), + [anon_sym_LBRACE] = ACTIONS(4481), + [anon_sym_LBRACK] = ACTIONS(4467), + [anon_sym_EQ] = ACTIONS(4487), + [anon_sym_static] = ACTIONS(4455), + [anon_sym_register] = ACTIONS(4455), + [anon_sym_inline] = ACTIONS(4455), + [anon_sym_thread_local] = ACTIONS(4455), + [anon_sym_const] = ACTIONS(4455), + [anon_sym_constexpr] = ACTIONS(4455), + [anon_sym_volatile] = ACTIONS(4455), + [anon_sym_restrict] = ACTIONS(4455), + [anon_sym___restrict__] = ACTIONS(4455), + [anon_sym__Atomic] = ACTIONS(4455), + [anon_sym__Noreturn] = ACTIONS(4455), + [anon_sym_noreturn] = ACTIONS(4455), + [anon_sym_mutable] = ACTIONS(4455), + [anon_sym_constinit] = ACTIONS(4455), + [anon_sym_consteval] = ACTIONS(4455), + [anon_sym_COLON] = ACTIONS(4544), + [anon_sym_QMARK] = ACTIONS(4457), + [anon_sym_STAR_EQ] = ACTIONS(4491), + [anon_sym_SLASH_EQ] = ACTIONS(4491), + [anon_sym_PERCENT_EQ] = ACTIONS(4491), + [anon_sym_PLUS_EQ] = ACTIONS(4491), + [anon_sym_DASH_EQ] = ACTIONS(4491), + [anon_sym_LT_LT_EQ] = ACTIONS(4491), + [anon_sym_GT_GT_EQ] = ACTIONS(4491), + [anon_sym_AMP_EQ] = ACTIONS(4491), + [anon_sym_CARET_EQ] = ACTIONS(4491), + [anon_sym_PIPE_EQ] = ACTIONS(4491), + [anon_sym_and_eq] = ACTIONS(4487), + [anon_sym_or_eq] = ACTIONS(4487), + [anon_sym_xor_eq] = ACTIONS(4487), + [anon_sym_LT_EQ_GT] = ACTIONS(4457), + [anon_sym_or] = ACTIONS(4465), + [anon_sym_and] = ACTIONS(4465), + [anon_sym_bitor] = ACTIONS(4465), + [anon_sym_xor] = ACTIONS(4465), + [anon_sym_bitand] = ACTIONS(4465), + [anon_sym_not_eq] = ACTIONS(4465), + [anon_sym_DASH_DASH] = ACTIONS(4457), + [anon_sym_PLUS_PLUS] = ACTIONS(4457), + [anon_sym_DOT] = ACTIONS(4465), + [anon_sym_DASH_GT] = ACTIONS(4457), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4455), + [anon_sym_decltype] = ACTIONS(4455), + [anon_sym_virtual] = ACTIONS(4455), + [anon_sym_template] = ACTIONS(4455), + [anon_sym_operator] = ACTIONS(4455), + }, + [2097] = { + [sym_identifier] = ACTIONS(4546), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4548), + [anon_sym_COMMA] = ACTIONS(4548), + [anon_sym_RPAREN] = ACTIONS(4548), + [anon_sym_LPAREN2] = ACTIONS(4548), + [anon_sym_TILDE] = ACTIONS(4548), + [anon_sym_DASH] = ACTIONS(4546), + [anon_sym_PLUS] = ACTIONS(4546), + [anon_sym_STAR] = ACTIONS(4546), + [anon_sym_SLASH] = ACTIONS(4546), + [anon_sym_PERCENT] = ACTIONS(4546), + [anon_sym_PIPE_PIPE] = ACTIONS(4548), + [anon_sym_AMP_AMP] = ACTIONS(4548), + [anon_sym_PIPE] = ACTIONS(4546), + [anon_sym_CARET] = ACTIONS(4546), + [anon_sym_AMP] = ACTIONS(4546), + [anon_sym_EQ_EQ] = ACTIONS(4548), + [anon_sym_BANG_EQ] = ACTIONS(4548), + [anon_sym_GT] = ACTIONS(4546), + [anon_sym_GT_EQ] = ACTIONS(4548), + [anon_sym_LT_EQ] = ACTIONS(4546), + [anon_sym_LT] = ACTIONS(4546), + [anon_sym_LT_LT] = ACTIONS(4546), + [anon_sym_GT_GT] = ACTIONS(4546), + [anon_sym_extern] = ACTIONS(4546), + [anon_sym___attribute__] = ACTIONS(4546), + [anon_sym_COLON_COLON] = ACTIONS(4548), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4548), + [anon_sym___declspec] = ACTIONS(4546), + [anon_sym___based] = ACTIONS(4546), + [anon_sym_LBRACE] = ACTIONS(4548), + [anon_sym_LBRACK] = ACTIONS(4546), + [anon_sym_EQ] = ACTIONS(4546), + [anon_sym_static] = ACTIONS(4546), + [anon_sym_register] = ACTIONS(4546), + [anon_sym_inline] = ACTIONS(4546), + [anon_sym_thread_local] = ACTIONS(4546), + [anon_sym_const] = ACTIONS(4546), + [anon_sym_constexpr] = ACTIONS(4546), + [anon_sym_volatile] = ACTIONS(4546), + [anon_sym_restrict] = ACTIONS(4546), + [anon_sym___restrict__] = ACTIONS(4546), + [anon_sym__Atomic] = ACTIONS(4546), + [anon_sym__Noreturn] = ACTIONS(4546), + [anon_sym_noreturn] = ACTIONS(4546), + [anon_sym_mutable] = ACTIONS(4546), + [anon_sym_constinit] = ACTIONS(4546), + [anon_sym_consteval] = ACTIONS(4546), + [anon_sym_QMARK] = ACTIONS(4548), + [anon_sym_STAR_EQ] = ACTIONS(4548), + [anon_sym_SLASH_EQ] = ACTIONS(4548), + [anon_sym_PERCENT_EQ] = ACTIONS(4548), + [anon_sym_PLUS_EQ] = ACTIONS(4548), + [anon_sym_DASH_EQ] = ACTIONS(4548), + [anon_sym_LT_LT_EQ] = ACTIONS(4548), + [anon_sym_GT_GT_EQ] = ACTIONS(4548), + [anon_sym_AMP_EQ] = ACTIONS(4548), + [anon_sym_CARET_EQ] = ACTIONS(4548), + [anon_sym_PIPE_EQ] = ACTIONS(4548), + [anon_sym_and_eq] = ACTIONS(4546), + [anon_sym_or_eq] = ACTIONS(4546), + [anon_sym_xor_eq] = ACTIONS(4546), + [anon_sym_LT_EQ_GT] = ACTIONS(4548), + [anon_sym_or] = ACTIONS(4546), + [anon_sym_and] = ACTIONS(4546), + [anon_sym_bitor] = ACTIONS(4546), + [anon_sym_xor] = ACTIONS(4546), + [anon_sym_bitand] = ACTIONS(4546), + [anon_sym_not_eq] = ACTIONS(4546), + [anon_sym_DASH_DASH] = ACTIONS(4548), + [anon_sym_PLUS_PLUS] = ACTIONS(4548), + [anon_sym_DOT] = ACTIONS(4546), + [anon_sym_DASH_GT] = ACTIONS(4546), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4546), + [anon_sym_decltype] = ACTIONS(4546), + [anon_sym_virtual] = ACTIONS(4546), + [anon_sym_template] = ACTIONS(4546), + [anon_sym_operator] = ACTIONS(4546), + [anon_sym_DOT_STAR] = ACTIONS(4548), + [anon_sym_DASH_GT_STAR] = ACTIONS(4548), + }, + [2098] = { + [sym_identifier] = ACTIONS(4550), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4552), + [anon_sym_COMMA] = ACTIONS(4552), + [anon_sym_RPAREN] = ACTIONS(4552), + [anon_sym_LPAREN2] = ACTIONS(4552), + [anon_sym_TILDE] = ACTIONS(4555), + [anon_sym_DASH] = ACTIONS(4557), + [anon_sym_PLUS] = ACTIONS(4557), + [anon_sym_STAR] = ACTIONS(4559), + [anon_sym_SLASH] = ACTIONS(4557), + [anon_sym_PERCENT] = ACTIONS(4557), + [anon_sym_PIPE_PIPE] = ACTIONS(4562), + [anon_sym_AMP_AMP] = ACTIONS(4552), + [anon_sym_PIPE] = ACTIONS(4557), + [anon_sym_CARET] = ACTIONS(4557), + [anon_sym_AMP] = ACTIONS(4559), + [anon_sym_EQ_EQ] = ACTIONS(4562), + [anon_sym_BANG_EQ] = ACTIONS(4562), + [anon_sym_GT] = ACTIONS(4557), + [anon_sym_GT_EQ] = ACTIONS(4562), + [anon_sym_LT_EQ] = ACTIONS(4557), + [anon_sym_LT] = ACTIONS(4557), + [anon_sym_LT_LT] = ACTIONS(4557), + [anon_sym_GT_GT] = ACTIONS(4557), + [anon_sym_extern] = ACTIONS(4550), + [anon_sym___attribute__] = ACTIONS(4550), + [anon_sym_COLON_COLON] = ACTIONS(4555), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4555), + [anon_sym___declspec] = ACTIONS(4550), + [anon_sym___based] = ACTIONS(4550), + [anon_sym_LBRACE] = ACTIONS(4555), + [anon_sym_LBRACK] = ACTIONS(4559), + [anon_sym_EQ] = ACTIONS(4559), + [anon_sym_static] = ACTIONS(4550), + [anon_sym_register] = ACTIONS(4550), + [anon_sym_inline] = ACTIONS(4550), + [anon_sym_thread_local] = ACTIONS(4550), + [anon_sym_const] = ACTIONS(4550), + [anon_sym_constexpr] = ACTIONS(4550), + [anon_sym_volatile] = ACTIONS(4550), + [anon_sym_restrict] = ACTIONS(4550), + [anon_sym___restrict__] = ACTIONS(4550), + [anon_sym__Atomic] = ACTIONS(4550), + [anon_sym__Noreturn] = ACTIONS(4550), + [anon_sym_noreturn] = ACTIONS(4550), + [anon_sym_mutable] = ACTIONS(4550), + [anon_sym_constinit] = ACTIONS(4550), + [anon_sym_consteval] = ACTIONS(4550), + [anon_sym_QMARK] = ACTIONS(4562), + [anon_sym_STAR_EQ] = ACTIONS(4562), + [anon_sym_SLASH_EQ] = ACTIONS(4562), + [anon_sym_PERCENT_EQ] = ACTIONS(4562), + [anon_sym_PLUS_EQ] = ACTIONS(4562), + [anon_sym_DASH_EQ] = ACTIONS(4562), + [anon_sym_LT_LT_EQ] = ACTIONS(4562), + [anon_sym_GT_GT_EQ] = ACTIONS(4562), + [anon_sym_AMP_EQ] = ACTIONS(4562), + [anon_sym_CARET_EQ] = ACTIONS(4562), + [anon_sym_PIPE_EQ] = ACTIONS(4562), + [anon_sym_and_eq] = ACTIONS(4557), + [anon_sym_or_eq] = ACTIONS(4557), + [anon_sym_xor_eq] = ACTIONS(4557), + [anon_sym_LT_EQ_GT] = ACTIONS(4562), + [anon_sym_or] = ACTIONS(4557), + [anon_sym_and] = ACTIONS(4557), + [anon_sym_bitor] = ACTIONS(4557), + [anon_sym_xor] = ACTIONS(4557), + [anon_sym_bitand] = ACTIONS(4557), + [anon_sym_not_eq] = ACTIONS(4557), + [anon_sym_DASH_DASH] = ACTIONS(4562), + [anon_sym_PLUS_PLUS] = ACTIONS(4562), + [anon_sym_DOT] = ACTIONS(4557), + [anon_sym_DASH_GT] = ACTIONS(4557), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4550), + [anon_sym_decltype] = ACTIONS(4550), + [anon_sym_virtual] = ACTIONS(4550), + [anon_sym_template] = ACTIONS(4550), + [anon_sym_operator] = ACTIONS(4550), + [anon_sym_DOT_STAR] = ACTIONS(4562), + [anon_sym_DASH_GT_STAR] = ACTIONS(4562), + }, + [2099] = { + [sym_template_argument_list] = STATE(2209), + [sym_identifier] = ACTIONS(4455), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4457), + [anon_sym_COMMA] = ACTIONS(4457), + [anon_sym_LPAREN2] = ACTIONS(4470), + [anon_sym_TILDE] = ACTIONS(4463), + [anon_sym_DASH] = ACTIONS(4465), + [anon_sym_PLUS] = ACTIONS(4465), + [anon_sym_STAR] = ACTIONS(4467), + [anon_sym_SLASH] = ACTIONS(4465), + [anon_sym_PERCENT] = ACTIONS(4465), + [anon_sym_PIPE_PIPE] = ACTIONS(4457), + [anon_sym_AMP_AMP] = ACTIONS(4470), + [anon_sym_PIPE] = ACTIONS(4465), + [anon_sym_CARET] = ACTIONS(4465), + [anon_sym_AMP] = ACTIONS(4467), + [anon_sym_EQ_EQ] = ACTIONS(4457), + [anon_sym_BANG_EQ] = ACTIONS(4457), + [anon_sym_GT] = ACTIONS(4465), + [anon_sym_GT_EQ] = ACTIONS(4457), + [anon_sym_LT_EQ] = ACTIONS(4465), + [anon_sym_LT] = ACTIONS(4473), + [anon_sym_LT_LT] = ACTIONS(4465), + [anon_sym_GT_GT] = ACTIONS(4465), + [anon_sym_SEMI] = ACTIONS(4457), + [anon_sym_extern] = ACTIONS(4455), + [anon_sym___attribute__] = ACTIONS(4455), + [anon_sym_COLON_COLON] = ACTIONS(4476), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4463), + [anon_sym___declspec] = ACTIONS(4455), + [anon_sym___based] = ACTIONS(4455), + [anon_sym_LBRACE] = ACTIONS(4481), + [anon_sym_LBRACK] = ACTIONS(4467), + [anon_sym_EQ] = ACTIONS(4487), + [anon_sym_static] = ACTIONS(4455), + [anon_sym_register] = ACTIONS(4455), + [anon_sym_inline] = ACTIONS(4455), + [anon_sym_thread_local] = ACTIONS(4455), + [anon_sym_const] = ACTIONS(4455), + [anon_sym_constexpr] = ACTIONS(4455), + [anon_sym_volatile] = ACTIONS(4455), + [anon_sym_restrict] = ACTIONS(4455), + [anon_sym___restrict__] = ACTIONS(4455), + [anon_sym__Atomic] = ACTIONS(4455), + [anon_sym__Noreturn] = ACTIONS(4455), + [anon_sym_noreturn] = ACTIONS(4455), + [anon_sym_mutable] = ACTIONS(4455), + [anon_sym_constinit] = ACTIONS(4455), + [anon_sym_consteval] = ACTIONS(4455), + [anon_sym_COLON] = ACTIONS(4564), + [anon_sym_QMARK] = ACTIONS(4457), + [anon_sym_STAR_EQ] = ACTIONS(4491), + [anon_sym_SLASH_EQ] = ACTIONS(4491), + [anon_sym_PERCENT_EQ] = ACTIONS(4491), + [anon_sym_PLUS_EQ] = ACTIONS(4491), + [anon_sym_DASH_EQ] = ACTIONS(4491), + [anon_sym_LT_LT_EQ] = ACTIONS(4491), + [anon_sym_GT_GT_EQ] = ACTIONS(4491), + [anon_sym_AMP_EQ] = ACTIONS(4491), + [anon_sym_CARET_EQ] = ACTIONS(4491), + [anon_sym_PIPE_EQ] = ACTIONS(4491), + [anon_sym_and_eq] = ACTIONS(4487), + [anon_sym_or_eq] = ACTIONS(4487), + [anon_sym_xor_eq] = ACTIONS(4487), + [anon_sym_LT_EQ_GT] = ACTIONS(4457), + [anon_sym_or] = ACTIONS(4465), + [anon_sym_and] = ACTIONS(4465), + [anon_sym_bitor] = ACTIONS(4465), + [anon_sym_xor] = ACTIONS(4465), + [anon_sym_bitand] = ACTIONS(4465), + [anon_sym_not_eq] = ACTIONS(4465), + [anon_sym_DASH_DASH] = ACTIONS(4457), + [anon_sym_PLUS_PLUS] = ACTIONS(4457), + [anon_sym_DOT] = ACTIONS(4465), + [anon_sym_DASH_GT] = ACTIONS(4457), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4455), + [anon_sym_decltype] = ACTIONS(4455), + [anon_sym_virtual] = ACTIONS(4455), + [anon_sym_template] = ACTIONS(4455), + [anon_sym_operator] = ACTIONS(4455), + }, + [2100] = { + [sym_template_argument_list] = STATE(2116), + [sym_identifier] = ACTIONS(4498), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4510), + [anon_sym_COMMA] = ACTIONS(4510), + [anon_sym_LPAREN2] = ACTIONS(4500), + [anon_sym_TILDE] = ACTIONS(4503), + [anon_sym_DASH] = ACTIONS(4505), + [anon_sym_PLUS] = ACTIONS(4505), + [anon_sym_STAR] = ACTIONS(4507), + [anon_sym_SLASH] = ACTIONS(4505), + [anon_sym_PERCENT] = ACTIONS(4505), + [anon_sym_PIPE_PIPE] = ACTIONS(4510), + [anon_sym_AMP_AMP] = ACTIONS(4500), + [anon_sym_PIPE] = ACTIONS(4505), + [anon_sym_CARET] = ACTIONS(4505), + [anon_sym_AMP] = ACTIONS(4507), + [anon_sym_EQ_EQ] = ACTIONS(4510), + [anon_sym_BANG_EQ] = ACTIONS(4510), + [anon_sym_GT] = ACTIONS(4505), + [anon_sym_GT_EQ] = ACTIONS(4510), + [anon_sym_LT_EQ] = ACTIONS(4505), + [anon_sym_LT] = ACTIONS(4539), + [anon_sym_LT_LT] = ACTIONS(4505), + [anon_sym_GT_GT] = ACTIONS(4505), + [anon_sym_SEMI] = ACTIONS(4500), + [anon_sym_extern] = ACTIONS(4498), + [anon_sym___attribute__] = ACTIONS(4498), + [anon_sym_COLON_COLON] = ACTIONS(4476), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4500), + [anon_sym___declspec] = ACTIONS(4498), + [anon_sym___based] = ACTIONS(4498), + [anon_sym_LBRACE] = ACTIONS(4503), + [anon_sym_RBRACE] = ACTIONS(4510), + [anon_sym_LBRACK] = ACTIONS(4507), + [anon_sym_EQ] = ACTIONS(4505), + [anon_sym_static] = ACTIONS(4498), + [anon_sym_register] = ACTIONS(4498), + [anon_sym_inline] = ACTIONS(4498), + [anon_sym_thread_local] = ACTIONS(4498), + [anon_sym_const] = ACTIONS(4498), + [anon_sym_constexpr] = ACTIONS(4498), + [anon_sym_volatile] = ACTIONS(4498), + [anon_sym_restrict] = ACTIONS(4498), + [anon_sym___restrict__] = ACTIONS(4498), + [anon_sym__Atomic] = ACTIONS(4498), + [anon_sym__Noreturn] = ACTIONS(4498), + [anon_sym_noreturn] = ACTIONS(4498), + [anon_sym_mutable] = ACTIONS(4498), + [anon_sym_constinit] = ACTIONS(4498), + [anon_sym_consteval] = ACTIONS(4498), + [anon_sym_QMARK] = ACTIONS(4510), + [anon_sym_STAR_EQ] = ACTIONS(4510), + [anon_sym_SLASH_EQ] = ACTIONS(4510), + [anon_sym_PERCENT_EQ] = ACTIONS(4510), + [anon_sym_PLUS_EQ] = ACTIONS(4510), + [anon_sym_DASH_EQ] = ACTIONS(4510), + [anon_sym_LT_LT_EQ] = ACTIONS(4510), + [anon_sym_GT_GT_EQ] = ACTIONS(4510), + [anon_sym_AMP_EQ] = ACTIONS(4510), + [anon_sym_CARET_EQ] = ACTIONS(4510), + [anon_sym_PIPE_EQ] = ACTIONS(4510), + [anon_sym_and_eq] = ACTIONS(4505), + [anon_sym_or_eq] = ACTIONS(4505), + [anon_sym_xor_eq] = ACTIONS(4505), + [anon_sym_LT_EQ_GT] = ACTIONS(4510), + [anon_sym_or] = ACTIONS(4505), + [anon_sym_and] = ACTIONS(4505), + [anon_sym_bitor] = ACTIONS(4505), + [anon_sym_xor] = ACTIONS(4505), + [anon_sym_bitand] = ACTIONS(4505), + [anon_sym_not_eq] = ACTIONS(4505), + [anon_sym_DASH_DASH] = ACTIONS(4510), + [anon_sym_PLUS_PLUS] = ACTIONS(4510), + [anon_sym_DOT] = ACTIONS(4505), + [anon_sym_DASH_GT] = ACTIONS(4510), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4498), + [anon_sym_decltype] = ACTIONS(4498), + [anon_sym_virtual] = ACTIONS(4498), + [anon_sym_template] = ACTIONS(4498), + [anon_sym_operator] = ACTIONS(4498), + }, + [2101] = { + [sym_identifier] = ACTIONS(4531), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4533), + [anon_sym_COMMA] = ACTIONS(4533), + [anon_sym_RPAREN] = ACTIONS(4533), + [anon_sym_LPAREN2] = ACTIONS(4533), + [anon_sym_TILDE] = ACTIONS(4533), + [anon_sym_DASH] = ACTIONS(4531), + [anon_sym_PLUS] = ACTIONS(4531), + [anon_sym_STAR] = ACTIONS(4531), + [anon_sym_SLASH] = ACTIONS(4531), + [anon_sym_PERCENT] = ACTIONS(4531), + [anon_sym_PIPE_PIPE] = ACTIONS(4533), + [anon_sym_AMP_AMP] = ACTIONS(4533), + [anon_sym_PIPE] = ACTIONS(4531), + [anon_sym_CARET] = ACTIONS(4531), + [anon_sym_AMP] = ACTIONS(4531), + [anon_sym_EQ_EQ] = ACTIONS(4533), + [anon_sym_BANG_EQ] = ACTIONS(4533), + [anon_sym_GT] = ACTIONS(4531), + [anon_sym_GT_EQ] = ACTIONS(4533), + [anon_sym_LT_EQ] = ACTIONS(4531), + [anon_sym_LT] = ACTIONS(4531), + [anon_sym_LT_LT] = ACTIONS(4531), + [anon_sym_GT_GT] = ACTIONS(4531), + [anon_sym_extern] = ACTIONS(4531), + [anon_sym___attribute__] = ACTIONS(4531), + [anon_sym_COLON_COLON] = ACTIONS(4533), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4533), + [anon_sym___declspec] = ACTIONS(4531), + [anon_sym___based] = ACTIONS(4531), + [anon_sym_LBRACE] = ACTIONS(4533), + [anon_sym_LBRACK] = ACTIONS(4531), + [anon_sym_EQ] = ACTIONS(4531), + [anon_sym_static] = ACTIONS(4531), + [anon_sym_register] = ACTIONS(4531), + [anon_sym_inline] = ACTIONS(4531), + [anon_sym_thread_local] = ACTIONS(4531), + [anon_sym_const] = ACTIONS(4531), + [anon_sym_constexpr] = ACTIONS(4531), + [anon_sym_volatile] = ACTIONS(4531), + [anon_sym_restrict] = ACTIONS(4531), + [anon_sym___restrict__] = ACTIONS(4531), + [anon_sym__Atomic] = ACTIONS(4531), + [anon_sym__Noreturn] = ACTIONS(4531), + [anon_sym_noreturn] = ACTIONS(4531), + [anon_sym_mutable] = ACTIONS(4531), + [anon_sym_constinit] = ACTIONS(4531), + [anon_sym_consteval] = ACTIONS(4531), + [anon_sym_QMARK] = ACTIONS(4533), + [anon_sym_STAR_EQ] = ACTIONS(4533), + [anon_sym_SLASH_EQ] = ACTIONS(4533), + [anon_sym_PERCENT_EQ] = ACTIONS(4533), + [anon_sym_PLUS_EQ] = ACTIONS(4533), + [anon_sym_DASH_EQ] = ACTIONS(4533), + [anon_sym_LT_LT_EQ] = ACTIONS(4533), + [anon_sym_GT_GT_EQ] = ACTIONS(4533), + [anon_sym_AMP_EQ] = ACTIONS(4533), + [anon_sym_CARET_EQ] = ACTIONS(4533), + [anon_sym_PIPE_EQ] = ACTIONS(4533), + [anon_sym_and_eq] = ACTIONS(4531), + [anon_sym_or_eq] = ACTIONS(4531), + [anon_sym_xor_eq] = ACTIONS(4531), + [anon_sym_LT_EQ_GT] = ACTIONS(4533), + [anon_sym_or] = ACTIONS(4531), + [anon_sym_and] = ACTIONS(4531), + [anon_sym_bitor] = ACTIONS(4531), + [anon_sym_xor] = ACTIONS(4531), + [anon_sym_bitand] = ACTIONS(4531), + [anon_sym_not_eq] = ACTIONS(4531), + [anon_sym_DASH_DASH] = ACTIONS(4533), + [anon_sym_PLUS_PLUS] = ACTIONS(4533), + [anon_sym_DOT] = ACTIONS(4531), + [anon_sym_DASH_GT] = ACTIONS(4531), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4531), + [anon_sym_decltype] = ACTIONS(4531), + [anon_sym_virtual] = ACTIONS(4531), + [anon_sym_template] = ACTIONS(4531), + [anon_sym_operator] = ACTIONS(4531), + [anon_sym_DOT_STAR] = ACTIONS(4533), + [anon_sym_DASH_GT_STAR] = ACTIONS(4533), + }, + [2102] = { + [sym_identifier] = ACTIONS(4527), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4529), + [anon_sym_COMMA] = ACTIONS(4529), + [anon_sym_RPAREN] = ACTIONS(4529), + [anon_sym_LPAREN2] = ACTIONS(4529), + [anon_sym_TILDE] = ACTIONS(4529), + [anon_sym_DASH] = ACTIONS(4527), + [anon_sym_PLUS] = ACTIONS(4527), + [anon_sym_STAR] = ACTIONS(4527), + [anon_sym_SLASH] = ACTIONS(4527), + [anon_sym_PERCENT] = ACTIONS(4527), + [anon_sym_PIPE_PIPE] = ACTIONS(4529), + [anon_sym_AMP_AMP] = ACTIONS(4529), + [anon_sym_PIPE] = ACTIONS(4527), + [anon_sym_CARET] = ACTIONS(4527), + [anon_sym_AMP] = ACTIONS(4527), + [anon_sym_EQ_EQ] = ACTIONS(4529), + [anon_sym_BANG_EQ] = ACTIONS(4529), + [anon_sym_GT] = ACTIONS(4527), + [anon_sym_GT_EQ] = ACTIONS(4529), + [anon_sym_LT_EQ] = ACTIONS(4527), + [anon_sym_LT] = ACTIONS(4527), + [anon_sym_LT_LT] = ACTIONS(4527), + [anon_sym_GT_GT] = ACTIONS(4527), + [anon_sym_extern] = ACTIONS(4527), + [anon_sym___attribute__] = ACTIONS(4527), + [anon_sym_COLON_COLON] = ACTIONS(4529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4529), + [anon_sym___declspec] = ACTIONS(4527), + [anon_sym___based] = ACTIONS(4527), + [anon_sym_LBRACE] = ACTIONS(4529), + [anon_sym_LBRACK] = ACTIONS(4527), + [anon_sym_EQ] = ACTIONS(4527), + [anon_sym_static] = ACTIONS(4527), + [anon_sym_register] = ACTIONS(4527), + [anon_sym_inline] = ACTIONS(4527), + [anon_sym_thread_local] = ACTIONS(4527), + [anon_sym_const] = ACTIONS(4527), + [anon_sym_constexpr] = ACTIONS(4527), + [anon_sym_volatile] = ACTIONS(4527), + [anon_sym_restrict] = ACTIONS(4527), + [anon_sym___restrict__] = ACTIONS(4527), + [anon_sym__Atomic] = ACTIONS(4527), + [anon_sym__Noreturn] = ACTIONS(4527), + [anon_sym_noreturn] = ACTIONS(4527), + [anon_sym_mutable] = ACTIONS(4527), + [anon_sym_constinit] = ACTIONS(4527), + [anon_sym_consteval] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4529), + [anon_sym_STAR_EQ] = ACTIONS(4529), + [anon_sym_SLASH_EQ] = ACTIONS(4529), + [anon_sym_PERCENT_EQ] = ACTIONS(4529), + [anon_sym_PLUS_EQ] = ACTIONS(4529), + [anon_sym_DASH_EQ] = ACTIONS(4529), + [anon_sym_LT_LT_EQ] = ACTIONS(4529), + [anon_sym_GT_GT_EQ] = ACTIONS(4529), + [anon_sym_AMP_EQ] = ACTIONS(4529), + [anon_sym_CARET_EQ] = ACTIONS(4529), + [anon_sym_PIPE_EQ] = ACTIONS(4529), + [anon_sym_and_eq] = ACTIONS(4527), + [anon_sym_or_eq] = ACTIONS(4527), + [anon_sym_xor_eq] = ACTIONS(4527), + [anon_sym_LT_EQ_GT] = ACTIONS(4529), + [anon_sym_or] = ACTIONS(4527), + [anon_sym_and] = ACTIONS(4527), + [anon_sym_bitor] = ACTIONS(4527), + [anon_sym_xor] = ACTIONS(4527), + [anon_sym_bitand] = ACTIONS(4527), + [anon_sym_not_eq] = ACTIONS(4527), + [anon_sym_DASH_DASH] = ACTIONS(4529), + [anon_sym_PLUS_PLUS] = ACTIONS(4529), + [anon_sym_DOT] = ACTIONS(4527), + [anon_sym_DASH_GT] = ACTIONS(4527), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4527), + [anon_sym_decltype] = ACTIONS(4527), + [anon_sym_virtual] = ACTIONS(4527), + [anon_sym_template] = ACTIONS(4527), + [anon_sym_operator] = ACTIONS(4527), + [anon_sym_DOT_STAR] = ACTIONS(4529), + [anon_sym_DASH_GT_STAR] = ACTIONS(4529), + }, + [2103] = { + [sym_identifier] = ACTIONS(4546), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4548), + [anon_sym_COMMA] = ACTIONS(4548), + [anon_sym_RPAREN] = ACTIONS(4548), + [anon_sym_LPAREN2] = ACTIONS(4548), + [anon_sym_TILDE] = ACTIONS(4548), + [anon_sym_DASH] = ACTIONS(4546), + [anon_sym_PLUS] = ACTIONS(4546), + [anon_sym_STAR] = ACTIONS(4546), + [anon_sym_SLASH] = ACTIONS(4546), + [anon_sym_PERCENT] = ACTIONS(4546), + [anon_sym_PIPE_PIPE] = ACTIONS(4548), + [anon_sym_AMP_AMP] = ACTIONS(4548), + [anon_sym_PIPE] = ACTIONS(4546), + [anon_sym_CARET] = ACTIONS(4546), + [anon_sym_AMP] = ACTIONS(4546), + [anon_sym_EQ_EQ] = ACTIONS(4548), + [anon_sym_BANG_EQ] = ACTIONS(4548), + [anon_sym_GT] = ACTIONS(4546), + [anon_sym_GT_EQ] = ACTIONS(4548), + [anon_sym_LT_EQ] = ACTIONS(4546), + [anon_sym_LT] = ACTIONS(4546), + [anon_sym_LT_LT] = ACTIONS(4546), + [anon_sym_GT_GT] = ACTIONS(4546), + [anon_sym_SEMI] = ACTIONS(4548), + [anon_sym_extern] = ACTIONS(4546), + [anon_sym___attribute__] = ACTIONS(4546), + [anon_sym_COLON_COLON] = ACTIONS(4548), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4548), + [anon_sym___declspec] = ACTIONS(4546), + [anon_sym___based] = ACTIONS(4546), + [anon_sym_LBRACE] = ACTIONS(4548), + [anon_sym_RBRACE] = ACTIONS(4548), + [anon_sym_LBRACK] = ACTIONS(4546), + [anon_sym_EQ] = ACTIONS(4546), + [anon_sym_static] = ACTIONS(4546), + [anon_sym_register] = ACTIONS(4546), + [anon_sym_inline] = ACTIONS(4546), + [anon_sym_thread_local] = ACTIONS(4546), + [anon_sym_const] = ACTIONS(4546), + [anon_sym_constexpr] = ACTIONS(4546), + [anon_sym_volatile] = ACTIONS(4546), + [anon_sym_restrict] = ACTIONS(4546), + [anon_sym___restrict__] = ACTIONS(4546), + [anon_sym__Atomic] = ACTIONS(4546), + [anon_sym__Noreturn] = ACTIONS(4546), + [anon_sym_noreturn] = ACTIONS(4546), + [anon_sym_mutable] = ACTIONS(4546), + [anon_sym_constinit] = ACTIONS(4546), + [anon_sym_consteval] = ACTIONS(4546), + [anon_sym_QMARK] = ACTIONS(4548), + [anon_sym_STAR_EQ] = ACTIONS(4548), + [anon_sym_SLASH_EQ] = ACTIONS(4548), + [anon_sym_PERCENT_EQ] = ACTIONS(4548), + [anon_sym_PLUS_EQ] = ACTIONS(4548), + [anon_sym_DASH_EQ] = ACTIONS(4548), + [anon_sym_LT_LT_EQ] = ACTIONS(4548), + [anon_sym_GT_GT_EQ] = ACTIONS(4548), + [anon_sym_AMP_EQ] = ACTIONS(4548), + [anon_sym_CARET_EQ] = ACTIONS(4548), + [anon_sym_PIPE_EQ] = ACTIONS(4548), + [anon_sym_and_eq] = ACTIONS(4546), + [anon_sym_or_eq] = ACTIONS(4546), + [anon_sym_xor_eq] = ACTIONS(4546), + [anon_sym_LT_EQ_GT] = ACTIONS(4548), + [anon_sym_or] = ACTIONS(4546), + [anon_sym_and] = ACTIONS(4546), + [anon_sym_bitor] = ACTIONS(4546), + [anon_sym_xor] = ACTIONS(4546), + [anon_sym_bitand] = ACTIONS(4546), + [anon_sym_not_eq] = ACTIONS(4546), + [anon_sym_DASH_DASH] = ACTIONS(4548), + [anon_sym_PLUS_PLUS] = ACTIONS(4548), + [anon_sym_DOT] = ACTIONS(4546), + [anon_sym_DASH_GT] = ACTIONS(4548), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4546), + [anon_sym_decltype] = ACTIONS(4546), + [anon_sym_virtual] = ACTIONS(4546), + [anon_sym_template] = ACTIONS(4546), + [anon_sym_operator] = ACTIONS(4546), + }, + [2104] = { + [sym_template_argument_list] = STATE(2209), + [sym_identifier] = ACTIONS(4455), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4457), + [anon_sym_COMMA] = ACTIONS(4457), + [anon_sym_RPAREN] = ACTIONS(4457), + [anon_sym_LPAREN2] = ACTIONS(4470), + [anon_sym_TILDE] = ACTIONS(4463), + [anon_sym_DASH] = ACTIONS(4465), + [anon_sym_PLUS] = ACTIONS(4465), + [anon_sym_STAR] = ACTIONS(4467), + [anon_sym_SLASH] = ACTIONS(4465), + [anon_sym_PERCENT] = ACTIONS(4465), + [anon_sym_PIPE_PIPE] = ACTIONS(4457), + [anon_sym_AMP_AMP] = ACTIONS(4470), + [anon_sym_PIPE] = ACTIONS(4465), + [anon_sym_CARET] = ACTIONS(4465), + [anon_sym_AMP] = ACTIONS(4467), + [anon_sym_EQ_EQ] = ACTIONS(4457), + [anon_sym_BANG_EQ] = ACTIONS(4457), + [anon_sym_GT] = ACTIONS(4465), + [anon_sym_GT_EQ] = ACTIONS(4457), + [anon_sym_LT_EQ] = ACTIONS(4465), + [anon_sym_LT] = ACTIONS(4473), + [anon_sym_LT_LT] = ACTIONS(4465), + [anon_sym_GT_GT] = ACTIONS(4465), + [anon_sym_SEMI] = ACTIONS(4457), + [anon_sym_extern] = ACTIONS(4455), + [anon_sym___attribute__] = ACTIONS(4455), + [anon_sym_COLON_COLON] = ACTIONS(4476), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4463), + [anon_sym___declspec] = ACTIONS(4455), + [anon_sym___based] = ACTIONS(4455), + [anon_sym_LBRACE] = ACTIONS(4481), + [anon_sym_LBRACK] = ACTIONS(4467), + [anon_sym_EQ] = ACTIONS(4487), + [anon_sym_static] = ACTIONS(4455), + [anon_sym_register] = ACTIONS(4455), + [anon_sym_inline] = ACTIONS(4455), + [anon_sym_thread_local] = ACTIONS(4455), + [anon_sym_const] = ACTIONS(4455), + [anon_sym_constexpr] = ACTIONS(4455), + [anon_sym_volatile] = ACTIONS(4455), + [anon_sym_restrict] = ACTIONS(4455), + [anon_sym___restrict__] = ACTIONS(4455), + [anon_sym__Atomic] = ACTIONS(4455), + [anon_sym__Noreturn] = ACTIONS(4455), + [anon_sym_noreturn] = ACTIONS(4455), + [anon_sym_mutable] = ACTIONS(4455), + [anon_sym_constinit] = ACTIONS(4455), + [anon_sym_consteval] = ACTIONS(4455), + [anon_sym_QMARK] = ACTIONS(4457), + [anon_sym_STAR_EQ] = ACTIONS(4491), + [anon_sym_SLASH_EQ] = ACTIONS(4491), + [anon_sym_PERCENT_EQ] = ACTIONS(4491), + [anon_sym_PLUS_EQ] = ACTIONS(4491), + [anon_sym_DASH_EQ] = ACTIONS(4491), + [anon_sym_LT_LT_EQ] = ACTIONS(4491), + [anon_sym_GT_GT_EQ] = ACTIONS(4491), + [anon_sym_AMP_EQ] = ACTIONS(4491), + [anon_sym_CARET_EQ] = ACTIONS(4491), + [anon_sym_PIPE_EQ] = ACTIONS(4491), + [anon_sym_and_eq] = ACTIONS(4487), + [anon_sym_or_eq] = ACTIONS(4487), + [anon_sym_xor_eq] = ACTIONS(4487), + [anon_sym_LT_EQ_GT] = ACTIONS(4457), + [anon_sym_or] = ACTIONS(4465), + [anon_sym_and] = ACTIONS(4465), + [anon_sym_bitor] = ACTIONS(4465), + [anon_sym_xor] = ACTIONS(4465), + [anon_sym_bitand] = ACTIONS(4465), + [anon_sym_not_eq] = ACTIONS(4465), + [anon_sym_DASH_DASH] = ACTIONS(4457), + [anon_sym_PLUS_PLUS] = ACTIONS(4457), + [anon_sym_DOT] = ACTIONS(4465), + [anon_sym_DASH_GT] = ACTIONS(4457), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4455), + [anon_sym_decltype] = ACTIONS(4455), + [anon_sym_virtual] = ACTIONS(4455), + [anon_sym_template] = ACTIONS(4455), + [anon_sym_operator] = ACTIONS(4455), + }, + [2105] = { + [sym_identifier] = ACTIONS(4566), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4568), + [anon_sym_COMMA] = ACTIONS(4568), + [anon_sym_RPAREN] = ACTIONS(4568), + [anon_sym_LPAREN2] = ACTIONS(4568), + [anon_sym_TILDE] = ACTIONS(4568), + [anon_sym_DASH] = ACTIONS(4566), + [anon_sym_PLUS] = ACTIONS(4566), + [anon_sym_STAR] = ACTIONS(4566), + [anon_sym_SLASH] = ACTIONS(4566), + [anon_sym_PERCENT] = ACTIONS(4566), + [anon_sym_PIPE_PIPE] = ACTIONS(4568), + [anon_sym_AMP_AMP] = ACTIONS(4568), + [anon_sym_PIPE] = ACTIONS(4566), + [anon_sym_CARET] = ACTIONS(4566), + [anon_sym_AMP] = ACTIONS(4566), + [anon_sym_EQ_EQ] = ACTIONS(4568), + [anon_sym_BANG_EQ] = ACTIONS(4568), + [anon_sym_GT] = ACTIONS(4566), + [anon_sym_GT_EQ] = ACTIONS(4568), + [anon_sym_LT_EQ] = ACTIONS(4566), + [anon_sym_LT] = ACTIONS(4566), + [anon_sym_LT_LT] = ACTIONS(4566), + [anon_sym_GT_GT] = ACTIONS(4566), + [anon_sym_extern] = ACTIONS(4566), + [anon_sym___attribute__] = ACTIONS(4566), + [anon_sym_COLON_COLON] = ACTIONS(4568), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4568), + [anon_sym___declspec] = ACTIONS(4566), + [anon_sym___based] = ACTIONS(4566), + [anon_sym_LBRACE] = ACTIONS(4568), + [anon_sym_LBRACK] = ACTIONS(4566), + [anon_sym_EQ] = ACTIONS(4566), + [anon_sym_static] = ACTIONS(4566), + [anon_sym_register] = ACTIONS(4566), + [anon_sym_inline] = ACTIONS(4566), + [anon_sym_thread_local] = ACTIONS(4566), + [anon_sym_const] = ACTIONS(4566), + [anon_sym_constexpr] = ACTIONS(4566), + [anon_sym_volatile] = ACTIONS(4566), + [anon_sym_restrict] = ACTIONS(4566), + [anon_sym___restrict__] = ACTIONS(4566), + [anon_sym__Atomic] = ACTIONS(4566), + [anon_sym__Noreturn] = ACTIONS(4566), + [anon_sym_noreturn] = ACTIONS(4566), + [anon_sym_mutable] = ACTIONS(4566), + [anon_sym_constinit] = ACTIONS(4566), + [anon_sym_consteval] = ACTIONS(4566), + [anon_sym_QMARK] = ACTIONS(4568), + [anon_sym_STAR_EQ] = ACTIONS(4568), + [anon_sym_SLASH_EQ] = ACTIONS(4568), + [anon_sym_PERCENT_EQ] = ACTIONS(4568), + [anon_sym_PLUS_EQ] = ACTIONS(4568), + [anon_sym_DASH_EQ] = ACTIONS(4568), + [anon_sym_LT_LT_EQ] = ACTIONS(4568), + [anon_sym_GT_GT_EQ] = ACTIONS(4568), + [anon_sym_AMP_EQ] = ACTIONS(4568), + [anon_sym_CARET_EQ] = ACTIONS(4568), + [anon_sym_PIPE_EQ] = ACTIONS(4568), + [anon_sym_and_eq] = ACTIONS(4566), + [anon_sym_or_eq] = ACTIONS(4566), + [anon_sym_xor_eq] = ACTIONS(4566), + [anon_sym_LT_EQ_GT] = ACTIONS(4568), + [anon_sym_or] = ACTIONS(4566), + [anon_sym_and] = ACTIONS(4566), + [anon_sym_bitor] = ACTIONS(4566), + [anon_sym_xor] = ACTIONS(4566), + [anon_sym_bitand] = ACTIONS(4566), + [anon_sym_not_eq] = ACTIONS(4566), + [anon_sym_DASH_DASH] = ACTIONS(4568), + [anon_sym_PLUS_PLUS] = ACTIONS(4568), + [anon_sym_DOT] = ACTIONS(4566), + [anon_sym_DASH_GT] = ACTIONS(4566), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4566), + [anon_sym_decltype] = ACTIONS(4566), + [anon_sym_virtual] = ACTIONS(4566), + [anon_sym_template] = ACTIONS(4566), + [anon_sym_operator] = ACTIONS(4566), + [anon_sym_DOT_STAR] = ACTIONS(4568), + [anon_sym_DASH_GT_STAR] = ACTIONS(4568), + }, + [2106] = { + [sym_identifier] = ACTIONS(4566), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4568), + [anon_sym_COMMA] = ACTIONS(4568), + [anon_sym_RPAREN] = ACTIONS(4568), + [anon_sym_LPAREN2] = ACTIONS(4568), + [anon_sym_TILDE] = ACTIONS(4568), + [anon_sym_DASH] = ACTIONS(4566), + [anon_sym_PLUS] = ACTIONS(4566), + [anon_sym_STAR] = ACTIONS(4566), + [anon_sym_SLASH] = ACTIONS(4566), + [anon_sym_PERCENT] = ACTIONS(4566), + [anon_sym_PIPE_PIPE] = ACTIONS(4568), + [anon_sym_AMP_AMP] = ACTIONS(4568), + [anon_sym_PIPE] = ACTIONS(4566), + [anon_sym_CARET] = ACTIONS(4566), + [anon_sym_AMP] = ACTIONS(4566), + [anon_sym_EQ_EQ] = ACTIONS(4568), + [anon_sym_BANG_EQ] = ACTIONS(4568), + [anon_sym_GT] = ACTIONS(4566), + [anon_sym_GT_EQ] = ACTIONS(4568), + [anon_sym_LT_EQ] = ACTIONS(4566), + [anon_sym_LT] = ACTIONS(4566), + [anon_sym_LT_LT] = ACTIONS(4566), + [anon_sym_GT_GT] = ACTIONS(4566), + [anon_sym_SEMI] = ACTIONS(4568), + [anon_sym_extern] = ACTIONS(4566), + [anon_sym___attribute__] = ACTIONS(4566), + [anon_sym_COLON_COLON] = ACTIONS(4568), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4568), + [anon_sym___declspec] = ACTIONS(4566), + [anon_sym___based] = ACTIONS(4566), + [anon_sym_LBRACE] = ACTIONS(4568), + [anon_sym_RBRACE] = ACTIONS(4568), + [anon_sym_LBRACK] = ACTIONS(4566), + [anon_sym_EQ] = ACTIONS(4566), + [anon_sym_static] = ACTIONS(4566), + [anon_sym_register] = ACTIONS(4566), + [anon_sym_inline] = ACTIONS(4566), + [anon_sym_thread_local] = ACTIONS(4566), + [anon_sym_const] = ACTIONS(4566), + [anon_sym_constexpr] = ACTIONS(4566), + [anon_sym_volatile] = ACTIONS(4566), + [anon_sym_restrict] = ACTIONS(4566), + [anon_sym___restrict__] = ACTIONS(4566), + [anon_sym__Atomic] = ACTIONS(4566), + [anon_sym__Noreturn] = ACTIONS(4566), + [anon_sym_noreturn] = ACTIONS(4566), + [anon_sym_mutable] = ACTIONS(4566), + [anon_sym_constinit] = ACTIONS(4566), + [anon_sym_consteval] = ACTIONS(4566), + [anon_sym_QMARK] = ACTIONS(4568), + [anon_sym_STAR_EQ] = ACTIONS(4568), + [anon_sym_SLASH_EQ] = ACTIONS(4568), + [anon_sym_PERCENT_EQ] = ACTIONS(4568), + [anon_sym_PLUS_EQ] = ACTIONS(4568), + [anon_sym_DASH_EQ] = ACTIONS(4568), + [anon_sym_LT_LT_EQ] = ACTIONS(4568), + [anon_sym_GT_GT_EQ] = ACTIONS(4568), + [anon_sym_AMP_EQ] = ACTIONS(4568), + [anon_sym_CARET_EQ] = ACTIONS(4568), + [anon_sym_PIPE_EQ] = ACTIONS(4568), + [anon_sym_and_eq] = ACTIONS(4566), + [anon_sym_or_eq] = ACTIONS(4566), + [anon_sym_xor_eq] = ACTIONS(4566), + [anon_sym_LT_EQ_GT] = ACTIONS(4568), + [anon_sym_or] = ACTIONS(4566), + [anon_sym_and] = ACTIONS(4566), + [anon_sym_bitor] = ACTIONS(4566), + [anon_sym_xor] = ACTIONS(4566), + [anon_sym_bitand] = ACTIONS(4566), + [anon_sym_not_eq] = ACTIONS(4566), + [anon_sym_DASH_DASH] = ACTIONS(4568), + [anon_sym_PLUS_PLUS] = ACTIONS(4568), + [anon_sym_DOT] = ACTIONS(4566), + [anon_sym_DASH_GT] = ACTIONS(4568), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4566), + [anon_sym_decltype] = ACTIONS(4566), + [anon_sym_virtual] = ACTIONS(4566), + [anon_sym_template] = ACTIONS(4566), + [anon_sym_operator] = ACTIONS(4566), + }, + [2107] = { + [sym_identifier] = ACTIONS(4535), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4537), + [anon_sym_COMMA] = ACTIONS(4537), + [anon_sym_RPAREN] = ACTIONS(4537), + [anon_sym_LPAREN2] = ACTIONS(4537), + [anon_sym_TILDE] = ACTIONS(4537), + [anon_sym_DASH] = ACTIONS(4535), + [anon_sym_PLUS] = ACTIONS(4535), + [anon_sym_STAR] = ACTIONS(4535), + [anon_sym_SLASH] = ACTIONS(4535), + [anon_sym_PERCENT] = ACTIONS(4535), + [anon_sym_PIPE_PIPE] = ACTIONS(4537), + [anon_sym_AMP_AMP] = ACTIONS(4537), + [anon_sym_PIPE] = ACTIONS(4535), + [anon_sym_CARET] = ACTIONS(4535), + [anon_sym_AMP] = ACTIONS(4535), + [anon_sym_EQ_EQ] = ACTIONS(4537), + [anon_sym_BANG_EQ] = ACTIONS(4537), + [anon_sym_GT] = ACTIONS(4535), + [anon_sym_GT_EQ] = ACTIONS(4537), + [anon_sym_LT_EQ] = ACTIONS(4535), + [anon_sym_LT] = ACTIONS(4535), + [anon_sym_LT_LT] = ACTIONS(4535), + [anon_sym_GT_GT] = ACTIONS(4535), + [anon_sym_SEMI] = ACTIONS(4537), + [anon_sym_extern] = ACTIONS(4535), + [anon_sym___attribute__] = ACTIONS(4535), + [anon_sym_COLON_COLON] = ACTIONS(4537), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4537), + [anon_sym___declspec] = ACTIONS(4535), + [anon_sym___based] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4537), + [anon_sym_RBRACE] = ACTIONS(4537), + [anon_sym_LBRACK] = ACTIONS(4535), + [anon_sym_EQ] = ACTIONS(4535), + [anon_sym_static] = ACTIONS(4535), + [anon_sym_register] = ACTIONS(4535), + [anon_sym_inline] = ACTIONS(4535), + [anon_sym_thread_local] = ACTIONS(4535), + [anon_sym_const] = ACTIONS(4535), + [anon_sym_constexpr] = ACTIONS(4535), + [anon_sym_volatile] = ACTIONS(4535), + [anon_sym_restrict] = ACTIONS(4535), + [anon_sym___restrict__] = ACTIONS(4535), + [anon_sym__Atomic] = ACTIONS(4535), + [anon_sym__Noreturn] = ACTIONS(4535), + [anon_sym_noreturn] = ACTIONS(4535), + [anon_sym_mutable] = ACTIONS(4535), + [anon_sym_constinit] = ACTIONS(4535), + [anon_sym_consteval] = ACTIONS(4535), + [anon_sym_QMARK] = ACTIONS(4537), + [anon_sym_STAR_EQ] = ACTIONS(4537), + [anon_sym_SLASH_EQ] = ACTIONS(4537), + [anon_sym_PERCENT_EQ] = ACTIONS(4537), + [anon_sym_PLUS_EQ] = ACTIONS(4537), + [anon_sym_DASH_EQ] = ACTIONS(4537), + [anon_sym_LT_LT_EQ] = ACTIONS(4537), + [anon_sym_GT_GT_EQ] = ACTIONS(4537), + [anon_sym_AMP_EQ] = ACTIONS(4537), + [anon_sym_CARET_EQ] = ACTIONS(4537), + [anon_sym_PIPE_EQ] = ACTIONS(4537), + [anon_sym_and_eq] = ACTIONS(4535), + [anon_sym_or_eq] = ACTIONS(4535), + [anon_sym_xor_eq] = ACTIONS(4535), + [anon_sym_LT_EQ_GT] = ACTIONS(4537), + [anon_sym_or] = ACTIONS(4535), + [anon_sym_and] = ACTIONS(4535), + [anon_sym_bitor] = ACTIONS(4535), + [anon_sym_xor] = ACTIONS(4535), + [anon_sym_bitand] = ACTIONS(4535), + [anon_sym_not_eq] = ACTIONS(4535), + [anon_sym_DASH_DASH] = ACTIONS(4537), + [anon_sym_PLUS_PLUS] = ACTIONS(4537), + [anon_sym_DOT] = ACTIONS(4535), + [anon_sym_DASH_GT] = ACTIONS(4537), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4535), + [anon_sym_decltype] = ACTIONS(4535), + [anon_sym_virtual] = ACTIONS(4535), + [anon_sym_template] = ACTIONS(4535), + [anon_sym_operator] = ACTIONS(4535), + }, + [2108] = { + [sym_identifier] = ACTIONS(4523), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4525), + [anon_sym_COMMA] = ACTIONS(4525), + [anon_sym_RPAREN] = ACTIONS(4525), + [anon_sym_LPAREN2] = ACTIONS(4525), + [anon_sym_TILDE] = ACTIONS(4525), + [anon_sym_DASH] = ACTIONS(4523), + [anon_sym_PLUS] = ACTIONS(4523), + [anon_sym_STAR] = ACTIONS(4523), + [anon_sym_SLASH] = ACTIONS(4523), + [anon_sym_PERCENT] = ACTIONS(4523), + [anon_sym_PIPE_PIPE] = ACTIONS(4525), + [anon_sym_AMP_AMP] = ACTIONS(4525), + [anon_sym_PIPE] = ACTIONS(4523), + [anon_sym_CARET] = ACTIONS(4523), + [anon_sym_AMP] = ACTIONS(4523), + [anon_sym_EQ_EQ] = ACTIONS(4525), + [anon_sym_BANG_EQ] = ACTIONS(4525), + [anon_sym_GT] = ACTIONS(4523), + [anon_sym_GT_EQ] = ACTIONS(4525), + [anon_sym_LT_EQ] = ACTIONS(4523), + [anon_sym_LT] = ACTIONS(4523), + [anon_sym_LT_LT] = ACTIONS(4523), + [anon_sym_GT_GT] = ACTIONS(4523), + [anon_sym_extern] = ACTIONS(4523), + [anon_sym___attribute__] = ACTIONS(4523), + [anon_sym_COLON_COLON] = ACTIONS(4525), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4525), + [anon_sym___declspec] = ACTIONS(4523), + [anon_sym___based] = ACTIONS(4523), + [anon_sym_LBRACE] = ACTIONS(4525), + [anon_sym_LBRACK] = ACTIONS(4523), + [anon_sym_EQ] = ACTIONS(4523), + [anon_sym_static] = ACTIONS(4523), + [anon_sym_register] = ACTIONS(4523), + [anon_sym_inline] = ACTIONS(4523), + [anon_sym_thread_local] = ACTIONS(4523), + [anon_sym_const] = ACTIONS(4523), + [anon_sym_constexpr] = ACTIONS(4523), + [anon_sym_volatile] = ACTIONS(4523), + [anon_sym_restrict] = ACTIONS(4523), + [anon_sym___restrict__] = ACTIONS(4523), + [anon_sym__Atomic] = ACTIONS(4523), + [anon_sym__Noreturn] = ACTIONS(4523), + [anon_sym_noreturn] = ACTIONS(4523), + [anon_sym_mutable] = ACTIONS(4523), + [anon_sym_constinit] = ACTIONS(4523), + [anon_sym_consteval] = ACTIONS(4523), + [anon_sym_QMARK] = ACTIONS(4525), + [anon_sym_STAR_EQ] = ACTIONS(4525), + [anon_sym_SLASH_EQ] = ACTIONS(4525), + [anon_sym_PERCENT_EQ] = ACTIONS(4525), + [anon_sym_PLUS_EQ] = ACTIONS(4525), + [anon_sym_DASH_EQ] = ACTIONS(4525), + [anon_sym_LT_LT_EQ] = ACTIONS(4525), + [anon_sym_GT_GT_EQ] = ACTIONS(4525), + [anon_sym_AMP_EQ] = ACTIONS(4525), + [anon_sym_CARET_EQ] = ACTIONS(4525), + [anon_sym_PIPE_EQ] = ACTIONS(4525), + [anon_sym_and_eq] = ACTIONS(4523), + [anon_sym_or_eq] = ACTIONS(4523), + [anon_sym_xor_eq] = ACTIONS(4523), + [anon_sym_LT_EQ_GT] = ACTIONS(4525), + [anon_sym_or] = ACTIONS(4523), + [anon_sym_and] = ACTIONS(4523), + [anon_sym_bitor] = ACTIONS(4523), + [anon_sym_xor] = ACTIONS(4523), + [anon_sym_bitand] = ACTIONS(4523), + [anon_sym_not_eq] = ACTIONS(4523), + [anon_sym_DASH_DASH] = ACTIONS(4525), + [anon_sym_PLUS_PLUS] = ACTIONS(4525), + [anon_sym_DOT] = ACTIONS(4523), + [anon_sym_DASH_GT] = ACTIONS(4523), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4523), + [anon_sym_decltype] = ACTIONS(4523), + [anon_sym_virtual] = ACTIONS(4523), + [anon_sym_template] = ACTIONS(4523), + [anon_sym_operator] = ACTIONS(4523), + [anon_sym_DOT_STAR] = ACTIONS(4525), + [anon_sym_DASH_GT_STAR] = ACTIONS(4525), + }, + [2109] = { + [sym_template_argument_list] = STATE(2205), + [sym_identifier] = ACTIONS(4455), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4457), + [anon_sym_COMMA] = ACTIONS(4457), + [anon_sym_LPAREN2] = ACTIONS(4459), + [anon_sym_TILDE] = ACTIONS(4463), + [anon_sym_DASH] = ACTIONS(4465), + [anon_sym_PLUS] = ACTIONS(4465), + [anon_sym_STAR] = ACTIONS(4467), + [anon_sym_SLASH] = ACTIONS(4465), + [anon_sym_PERCENT] = ACTIONS(4465), + [anon_sym_PIPE_PIPE] = ACTIONS(4457), + [anon_sym_AMP_AMP] = ACTIONS(4470), + [anon_sym_PIPE] = ACTIONS(4465), + [anon_sym_CARET] = ACTIONS(4465), + [anon_sym_AMP] = ACTIONS(4467), + [anon_sym_EQ_EQ] = ACTIONS(4457), + [anon_sym_BANG_EQ] = ACTIONS(4457), + [anon_sym_GT] = ACTIONS(4465), + [anon_sym_GT_EQ] = ACTIONS(4457), + [anon_sym_LT_EQ] = ACTIONS(4465), + [anon_sym_LT] = ACTIONS(4473), + [anon_sym_LT_LT] = ACTIONS(4465), + [anon_sym_GT_GT] = ACTIONS(4465), + [anon_sym_SEMI] = ACTIONS(4470), + [anon_sym_extern] = ACTIONS(4455), + [anon_sym___attribute__] = ACTIONS(4455), + [anon_sym_COLON_COLON] = ACTIONS(4476), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4478), + [anon_sym___declspec] = ACTIONS(4455), + [anon_sym___based] = ACTIONS(4455), + [anon_sym_LBRACE] = ACTIONS(4481), + [anon_sym_LBRACK] = ACTIONS(4483), + [anon_sym_EQ] = ACTIONS(4487), + [anon_sym_static] = ACTIONS(4455), + [anon_sym_register] = ACTIONS(4455), + [anon_sym_inline] = ACTIONS(4455), + [anon_sym_thread_local] = ACTIONS(4455), + [anon_sym_const] = ACTIONS(4455), + [anon_sym_constexpr] = ACTIONS(4455), + [anon_sym_volatile] = ACTIONS(4455), + [anon_sym_restrict] = ACTIONS(4455), + [anon_sym___restrict__] = ACTIONS(4455), + [anon_sym__Atomic] = ACTIONS(4455), + [anon_sym__Noreturn] = ACTIONS(4455), + [anon_sym_noreturn] = ACTIONS(4455), + [anon_sym_mutable] = ACTIONS(4455), + [anon_sym_constinit] = ACTIONS(4455), + [anon_sym_consteval] = ACTIONS(4455), + [anon_sym_COLON] = ACTIONS(4564), + [anon_sym_QMARK] = ACTIONS(4457), + [anon_sym_STAR_EQ] = ACTIONS(4491), + [anon_sym_SLASH_EQ] = ACTIONS(4491), + [anon_sym_PERCENT_EQ] = ACTIONS(4491), + [anon_sym_PLUS_EQ] = ACTIONS(4491), + [anon_sym_DASH_EQ] = ACTIONS(4491), + [anon_sym_LT_LT_EQ] = ACTIONS(4491), + [anon_sym_GT_GT_EQ] = ACTIONS(4491), + [anon_sym_AMP_EQ] = ACTIONS(4491), + [anon_sym_CARET_EQ] = ACTIONS(4491), + [anon_sym_PIPE_EQ] = ACTIONS(4491), + [anon_sym_and_eq] = ACTIONS(4487), + [anon_sym_or_eq] = ACTIONS(4487), + [anon_sym_xor_eq] = ACTIONS(4487), + [anon_sym_LT_EQ_GT] = ACTIONS(4457), + [anon_sym_or] = ACTIONS(4465), + [anon_sym_and] = ACTIONS(4465), + [anon_sym_bitor] = ACTIONS(4465), + [anon_sym_xor] = ACTIONS(4465), + [anon_sym_bitand] = ACTIONS(4465), + [anon_sym_not_eq] = ACTIONS(4465), + [anon_sym_DASH_DASH] = ACTIONS(4457), + [anon_sym_PLUS_PLUS] = ACTIONS(4457), + [anon_sym_DOT] = ACTIONS(4465), + [anon_sym_DASH_GT] = ACTIONS(4457), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4455), + [anon_sym_decltype] = ACTIONS(4455), + [anon_sym_virtual] = ACTIONS(4455), + [anon_sym_template] = ACTIONS(4455), + [anon_sym_operator] = ACTIONS(4455), + }, + [2110] = { + [sym_identifier] = ACTIONS(4517), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4519), + [anon_sym_COMMA] = ACTIONS(4519), + [anon_sym_RPAREN] = ACTIONS(4519), + [anon_sym_LPAREN2] = ACTIONS(4519), + [anon_sym_TILDE] = ACTIONS(4519), + [anon_sym_DASH] = ACTIONS(4517), + [anon_sym_PLUS] = ACTIONS(4517), + [anon_sym_STAR] = ACTIONS(4517), + [anon_sym_SLASH] = ACTIONS(4517), + [anon_sym_PERCENT] = ACTIONS(4517), + [anon_sym_PIPE_PIPE] = ACTIONS(4519), + [anon_sym_AMP_AMP] = ACTIONS(4519), + [anon_sym_PIPE] = ACTIONS(4517), + [anon_sym_CARET] = ACTIONS(4517), + [anon_sym_AMP] = ACTIONS(4517), + [anon_sym_EQ_EQ] = ACTIONS(4519), + [anon_sym_BANG_EQ] = ACTIONS(4519), + [anon_sym_GT] = ACTIONS(4517), + [anon_sym_GT_EQ] = ACTIONS(4519), + [anon_sym_LT_EQ] = ACTIONS(4517), + [anon_sym_LT] = ACTIONS(4517), + [anon_sym_LT_LT] = ACTIONS(4517), + [anon_sym_GT_GT] = ACTIONS(4517), + [anon_sym_SEMI] = ACTIONS(4519), + [anon_sym_extern] = ACTIONS(4517), + [anon_sym___attribute__] = ACTIONS(4517), + [anon_sym_COLON_COLON] = ACTIONS(4519), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4519), + [anon_sym___declspec] = ACTIONS(4517), + [anon_sym___based] = ACTIONS(4517), + [anon_sym_LBRACE] = ACTIONS(4519), + [anon_sym_RBRACE] = ACTIONS(4519), + [anon_sym_LBRACK] = ACTIONS(4517), + [anon_sym_EQ] = ACTIONS(4517), + [anon_sym_static] = ACTIONS(4517), + [anon_sym_register] = ACTIONS(4517), + [anon_sym_inline] = ACTIONS(4517), + [anon_sym_thread_local] = ACTIONS(4517), + [anon_sym_const] = ACTIONS(4517), + [anon_sym_constexpr] = ACTIONS(4517), + [anon_sym_volatile] = ACTIONS(4517), + [anon_sym_restrict] = ACTIONS(4517), + [anon_sym___restrict__] = ACTIONS(4517), + [anon_sym__Atomic] = ACTIONS(4517), + [anon_sym__Noreturn] = ACTIONS(4517), + [anon_sym_noreturn] = ACTIONS(4517), + [anon_sym_mutable] = ACTIONS(4517), + [anon_sym_constinit] = ACTIONS(4517), + [anon_sym_consteval] = ACTIONS(4517), + [anon_sym_QMARK] = ACTIONS(4519), + [anon_sym_STAR_EQ] = ACTIONS(4519), + [anon_sym_SLASH_EQ] = ACTIONS(4519), + [anon_sym_PERCENT_EQ] = ACTIONS(4519), + [anon_sym_PLUS_EQ] = ACTIONS(4519), + [anon_sym_DASH_EQ] = ACTIONS(4519), + [anon_sym_LT_LT_EQ] = ACTIONS(4519), + [anon_sym_GT_GT_EQ] = ACTIONS(4519), + [anon_sym_AMP_EQ] = ACTIONS(4519), + [anon_sym_CARET_EQ] = ACTIONS(4519), + [anon_sym_PIPE_EQ] = ACTIONS(4519), + [anon_sym_and_eq] = ACTIONS(4517), + [anon_sym_or_eq] = ACTIONS(4517), + [anon_sym_xor_eq] = ACTIONS(4517), + [anon_sym_LT_EQ_GT] = ACTIONS(4519), + [anon_sym_or] = ACTIONS(4517), + [anon_sym_and] = ACTIONS(4517), + [anon_sym_bitor] = ACTIONS(4517), + [anon_sym_xor] = ACTIONS(4517), + [anon_sym_bitand] = ACTIONS(4517), + [anon_sym_not_eq] = ACTIONS(4517), + [anon_sym_DASH_DASH] = ACTIONS(4519), + [anon_sym_PLUS_PLUS] = ACTIONS(4519), + [anon_sym_DOT] = ACTIONS(4517), + [anon_sym_DASH_GT] = ACTIONS(4519), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4517), + [anon_sym_decltype] = ACTIONS(4517), + [anon_sym_virtual] = ACTIONS(4517), + [anon_sym_template] = ACTIONS(4517), + [anon_sym_operator] = ACTIONS(4517), + }, + [2111] = { + [sym_template_argument_list] = STATE(2205), + [sym_identifier] = ACTIONS(4455), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4457), + [anon_sym_COMMA] = ACTIONS(4457), + [anon_sym_LPAREN2] = ACTIONS(4459), + [anon_sym_TILDE] = ACTIONS(4463), + [anon_sym_DASH] = ACTIONS(4465), + [anon_sym_PLUS] = ACTIONS(4465), + [anon_sym_STAR] = ACTIONS(4467), + [anon_sym_SLASH] = ACTIONS(4465), + [anon_sym_PERCENT] = ACTIONS(4465), + [anon_sym_PIPE_PIPE] = ACTIONS(4457), + [anon_sym_AMP_AMP] = ACTIONS(4470), + [anon_sym_PIPE] = ACTIONS(4465), + [anon_sym_CARET] = ACTIONS(4465), + [anon_sym_AMP] = ACTIONS(4467), + [anon_sym_EQ_EQ] = ACTIONS(4457), + [anon_sym_BANG_EQ] = ACTIONS(4457), + [anon_sym_GT] = ACTIONS(4465), + [anon_sym_GT_EQ] = ACTIONS(4457), + [anon_sym_LT_EQ] = ACTIONS(4465), + [anon_sym_LT] = ACTIONS(4473), + [anon_sym_LT_LT] = ACTIONS(4465), + [anon_sym_GT_GT] = ACTIONS(4465), + [anon_sym_SEMI] = ACTIONS(4470), + [anon_sym_extern] = ACTIONS(4455), + [anon_sym___attribute__] = ACTIONS(4455), + [anon_sym_COLON_COLON] = ACTIONS(4476), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4478), + [anon_sym___declspec] = ACTIONS(4455), + [anon_sym___based] = ACTIONS(4455), + [anon_sym_LBRACE] = ACTIONS(4481), + [anon_sym_LBRACK] = ACTIONS(4483), + [anon_sym_EQ] = ACTIONS(4487), + [anon_sym_static] = ACTIONS(4455), + [anon_sym_register] = ACTIONS(4455), + [anon_sym_inline] = ACTIONS(4455), + [anon_sym_thread_local] = ACTIONS(4455), + [anon_sym_const] = ACTIONS(4455), + [anon_sym_constexpr] = ACTIONS(4455), + [anon_sym_volatile] = ACTIONS(4455), + [anon_sym_restrict] = ACTIONS(4455), + [anon_sym___restrict__] = ACTIONS(4455), + [anon_sym__Atomic] = ACTIONS(4455), + [anon_sym__Noreturn] = ACTIONS(4455), + [anon_sym_noreturn] = ACTIONS(4455), + [anon_sym_mutable] = ACTIONS(4455), + [anon_sym_constinit] = ACTIONS(4455), + [anon_sym_consteval] = ACTIONS(4455), + [anon_sym_COLON] = ACTIONS(4515), + [anon_sym_QMARK] = ACTIONS(4457), + [anon_sym_STAR_EQ] = ACTIONS(4491), + [anon_sym_SLASH_EQ] = ACTIONS(4491), + [anon_sym_PERCENT_EQ] = ACTIONS(4491), + [anon_sym_PLUS_EQ] = ACTIONS(4491), + [anon_sym_DASH_EQ] = ACTIONS(4491), + [anon_sym_LT_LT_EQ] = ACTIONS(4491), + [anon_sym_GT_GT_EQ] = ACTIONS(4491), + [anon_sym_AMP_EQ] = ACTIONS(4491), + [anon_sym_CARET_EQ] = ACTIONS(4491), + [anon_sym_PIPE_EQ] = ACTIONS(4491), + [anon_sym_and_eq] = ACTIONS(4487), + [anon_sym_or_eq] = ACTIONS(4487), + [anon_sym_xor_eq] = ACTIONS(4487), + [anon_sym_LT_EQ_GT] = ACTIONS(4457), + [anon_sym_or] = ACTIONS(4465), + [anon_sym_and] = ACTIONS(4465), + [anon_sym_bitor] = ACTIONS(4465), + [anon_sym_xor] = ACTIONS(4465), + [anon_sym_bitand] = ACTIONS(4465), + [anon_sym_not_eq] = ACTIONS(4465), + [anon_sym_DASH_DASH] = ACTIONS(4457), + [anon_sym_PLUS_PLUS] = ACTIONS(4457), + [anon_sym_DOT] = ACTIONS(4465), + [anon_sym_DASH_GT] = ACTIONS(4457), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4455), + [anon_sym_decltype] = ACTIONS(4455), + [anon_sym_virtual] = ACTIONS(4455), + [anon_sym_template] = ACTIONS(4455), + [anon_sym_operator] = ACTIONS(4455), + }, + [2112] = { + [sym_template_argument_list] = STATE(2201), + [sym_identifier] = ACTIONS(4455), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4470), + [anon_sym_COMMA] = ACTIONS(4470), + [anon_sym_RPAREN] = ACTIONS(4470), + [anon_sym_LPAREN2] = ACTIONS(4470), + [anon_sym_TILDE] = ACTIONS(4463), + [anon_sym_DASH] = ACTIONS(4465), + [anon_sym_PLUS] = ACTIONS(4465), + [anon_sym_STAR] = ACTIONS(4467), + [anon_sym_SLASH] = ACTIONS(4465), + [anon_sym_PERCENT] = ACTIONS(4465), + [anon_sym_PIPE_PIPE] = ACTIONS(4457), + [anon_sym_AMP_AMP] = ACTIONS(4470), + [anon_sym_PIPE] = ACTIONS(4465), + [anon_sym_CARET] = ACTIONS(4465), + [anon_sym_AMP] = ACTIONS(4467), + [anon_sym_EQ_EQ] = ACTIONS(4457), + [anon_sym_BANG_EQ] = ACTIONS(4457), + [anon_sym_GT] = ACTIONS(4465), + [anon_sym_GT_EQ] = ACTIONS(4457), + [anon_sym_LT_EQ] = ACTIONS(4465), + [anon_sym_LT] = ACTIONS(4473), + [anon_sym_LT_LT] = ACTIONS(4465), + [anon_sym_GT_GT] = ACTIONS(4465), + [anon_sym_extern] = ACTIONS(4455), + [anon_sym___attribute__] = ACTIONS(4455), + [anon_sym_COLON_COLON] = ACTIONS(4476), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4463), + [anon_sym___declspec] = ACTIONS(4455), + [anon_sym___based] = ACTIONS(4455), + [anon_sym_LBRACE] = ACTIONS(4481), + [anon_sym_LBRACK] = ACTIONS(4467), + [anon_sym_EQ] = ACTIONS(4455), + [anon_sym_static] = ACTIONS(4455), + [anon_sym_register] = ACTIONS(4455), + [anon_sym_inline] = ACTIONS(4455), + [anon_sym_thread_local] = ACTIONS(4455), + [anon_sym_const] = ACTIONS(4455), + [anon_sym_constexpr] = ACTIONS(4455), + [anon_sym_volatile] = ACTIONS(4455), + [anon_sym_restrict] = ACTIONS(4455), + [anon_sym___restrict__] = ACTIONS(4455), + [anon_sym__Atomic] = ACTIONS(4455), + [anon_sym__Noreturn] = ACTIONS(4455), + [anon_sym_noreturn] = ACTIONS(4455), + [anon_sym_mutable] = ACTIONS(4455), + [anon_sym_constinit] = ACTIONS(4455), + [anon_sym_consteval] = ACTIONS(4455), + [anon_sym_QMARK] = ACTIONS(4457), + [anon_sym_STAR_EQ] = ACTIONS(4491), + [anon_sym_SLASH_EQ] = ACTIONS(4491), + [anon_sym_PERCENT_EQ] = ACTIONS(4491), + [anon_sym_PLUS_EQ] = ACTIONS(4491), + [anon_sym_DASH_EQ] = ACTIONS(4491), + [anon_sym_LT_LT_EQ] = ACTIONS(4491), + [anon_sym_GT_GT_EQ] = ACTIONS(4491), + [anon_sym_AMP_EQ] = ACTIONS(4491), + [anon_sym_CARET_EQ] = ACTIONS(4491), + [anon_sym_PIPE_EQ] = ACTIONS(4491), + [anon_sym_and_eq] = ACTIONS(4487), + [anon_sym_or_eq] = ACTIONS(4487), + [anon_sym_xor_eq] = ACTIONS(4487), + [anon_sym_LT_EQ_GT] = ACTIONS(4457), + [anon_sym_or] = ACTIONS(4465), + [anon_sym_and] = ACTIONS(4465), + [anon_sym_bitor] = ACTIONS(4465), + [anon_sym_xor] = ACTIONS(4465), + [anon_sym_bitand] = ACTIONS(4465), + [anon_sym_not_eq] = ACTIONS(4465), + [anon_sym_DASH_DASH] = ACTIONS(4457), + [anon_sym_PLUS_PLUS] = ACTIONS(4457), + [anon_sym_DOT] = ACTIONS(4465), + [anon_sym_DASH_GT] = ACTIONS(4457), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4455), + [anon_sym_decltype] = ACTIONS(4455), + [anon_sym_virtual] = ACTIONS(4455), + [anon_sym_template] = ACTIONS(4455), + [anon_sym_operator] = ACTIONS(4455), + }, + [2113] = { + [sym_template_argument_list] = STATE(2117), + [sym_identifier] = ACTIONS(4498), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4500), + [anon_sym_COMMA] = ACTIONS(4500), + [anon_sym_RPAREN] = ACTIONS(4500), + [anon_sym_LPAREN2] = ACTIONS(4500), + [anon_sym_TILDE] = ACTIONS(4503), + [anon_sym_DASH] = ACTIONS(4505), + [anon_sym_PLUS] = ACTIONS(4505), + [anon_sym_STAR] = ACTIONS(4507), + [anon_sym_SLASH] = ACTIONS(4505), + [anon_sym_PERCENT] = ACTIONS(4505), + [anon_sym_PIPE_PIPE] = ACTIONS(4510), + [anon_sym_AMP_AMP] = ACTIONS(4500), + [anon_sym_PIPE] = ACTIONS(4505), + [anon_sym_CARET] = ACTIONS(4505), + [anon_sym_AMP] = ACTIONS(4507), + [anon_sym_EQ_EQ] = ACTIONS(4510), + [anon_sym_BANG_EQ] = ACTIONS(4510), + [anon_sym_GT] = ACTIONS(4505), + [anon_sym_GT_EQ] = ACTIONS(4510), + [anon_sym_LT_EQ] = ACTIONS(4505), + [anon_sym_LT] = ACTIONS(4539), + [anon_sym_LT_LT] = ACTIONS(4505), + [anon_sym_GT_GT] = ACTIONS(4505), + [anon_sym_extern] = ACTIONS(4498), + [anon_sym___attribute__] = ACTIONS(4498), + [anon_sym_COLON_COLON] = ACTIONS(4476), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4503), + [anon_sym___declspec] = ACTIONS(4498), + [anon_sym___based] = ACTIONS(4498), + [anon_sym_LBRACE] = ACTIONS(4503), + [anon_sym_LBRACK] = ACTIONS(4507), + [anon_sym_EQ] = ACTIONS(4507), + [anon_sym_static] = ACTIONS(4498), + [anon_sym_register] = ACTIONS(4498), + [anon_sym_inline] = ACTIONS(4498), + [anon_sym_thread_local] = ACTIONS(4498), + [anon_sym_const] = ACTIONS(4498), + [anon_sym_constexpr] = ACTIONS(4498), + [anon_sym_volatile] = ACTIONS(4498), + [anon_sym_restrict] = ACTIONS(4498), + [anon_sym___restrict__] = ACTIONS(4498), + [anon_sym__Atomic] = ACTIONS(4498), + [anon_sym__Noreturn] = ACTIONS(4498), + [anon_sym_noreturn] = ACTIONS(4498), + [anon_sym_mutable] = ACTIONS(4498), + [anon_sym_constinit] = ACTIONS(4498), + [anon_sym_consteval] = ACTIONS(4498), + [anon_sym_QMARK] = ACTIONS(4510), + [anon_sym_STAR_EQ] = ACTIONS(4510), + [anon_sym_SLASH_EQ] = ACTIONS(4510), + [anon_sym_PERCENT_EQ] = ACTIONS(4510), + [anon_sym_PLUS_EQ] = ACTIONS(4510), + [anon_sym_DASH_EQ] = ACTIONS(4510), + [anon_sym_LT_LT_EQ] = ACTIONS(4510), + [anon_sym_GT_GT_EQ] = ACTIONS(4510), + [anon_sym_AMP_EQ] = ACTIONS(4510), + [anon_sym_CARET_EQ] = ACTIONS(4510), + [anon_sym_PIPE_EQ] = ACTIONS(4510), + [anon_sym_and_eq] = ACTIONS(4505), + [anon_sym_or_eq] = ACTIONS(4505), + [anon_sym_xor_eq] = ACTIONS(4505), + [anon_sym_LT_EQ_GT] = ACTIONS(4510), + [anon_sym_or] = ACTIONS(4505), + [anon_sym_and] = ACTIONS(4505), + [anon_sym_bitor] = ACTIONS(4505), + [anon_sym_xor] = ACTIONS(4505), + [anon_sym_bitand] = ACTIONS(4505), + [anon_sym_not_eq] = ACTIONS(4505), + [anon_sym_DASH_DASH] = ACTIONS(4510), + [anon_sym_PLUS_PLUS] = ACTIONS(4510), + [anon_sym_DOT] = ACTIONS(4505), + [anon_sym_DASH_GT] = ACTIONS(4510), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4498), + [anon_sym_decltype] = ACTIONS(4498), + [anon_sym_virtual] = ACTIONS(4498), + [anon_sym_template] = ACTIONS(4498), + [anon_sym_operator] = ACTIONS(4498), + }, + [2114] = { + [sym_identifier] = ACTIONS(4550), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4562), + [anon_sym_COMMA] = ACTIONS(4562), + [anon_sym_RPAREN] = ACTIONS(4562), + [anon_sym_LPAREN2] = ACTIONS(4552), + [anon_sym_TILDE] = ACTIONS(4555), + [anon_sym_DASH] = ACTIONS(4557), + [anon_sym_PLUS] = ACTIONS(4557), + [anon_sym_STAR] = ACTIONS(4559), + [anon_sym_SLASH] = ACTIONS(4557), + [anon_sym_PERCENT] = ACTIONS(4557), + [anon_sym_PIPE_PIPE] = ACTIONS(4562), + [anon_sym_AMP_AMP] = ACTIONS(4552), + [anon_sym_PIPE] = ACTIONS(4557), + [anon_sym_CARET] = ACTIONS(4557), + [anon_sym_AMP] = ACTIONS(4559), + [anon_sym_EQ_EQ] = ACTIONS(4562), + [anon_sym_BANG_EQ] = ACTIONS(4562), + [anon_sym_GT] = ACTIONS(4557), + [anon_sym_GT_EQ] = ACTIONS(4562), + [anon_sym_LT_EQ] = ACTIONS(4557), + [anon_sym_LT] = ACTIONS(4557), + [anon_sym_LT_LT] = ACTIONS(4557), + [anon_sym_GT_GT] = ACTIONS(4557), + [anon_sym_SEMI] = ACTIONS(4562), + [anon_sym_extern] = ACTIONS(4550), + [anon_sym___attribute__] = ACTIONS(4550), + [anon_sym_COLON_COLON] = ACTIONS(4555), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4555), + [anon_sym___declspec] = ACTIONS(4550), + [anon_sym___based] = ACTIONS(4550), + [anon_sym_LBRACE] = ACTIONS(4555), + [anon_sym_LBRACK] = ACTIONS(4559), + [anon_sym_EQ] = ACTIONS(4557), + [anon_sym_static] = ACTIONS(4550), + [anon_sym_register] = ACTIONS(4550), + [anon_sym_inline] = ACTIONS(4550), + [anon_sym_thread_local] = ACTIONS(4550), + [anon_sym_const] = ACTIONS(4550), + [anon_sym_constexpr] = ACTIONS(4550), + [anon_sym_volatile] = ACTIONS(4550), + [anon_sym_restrict] = ACTIONS(4550), + [anon_sym___restrict__] = ACTIONS(4550), + [anon_sym__Atomic] = ACTIONS(4550), + [anon_sym__Noreturn] = ACTIONS(4550), + [anon_sym_noreturn] = ACTIONS(4550), + [anon_sym_mutable] = ACTIONS(4550), + [anon_sym_constinit] = ACTIONS(4550), + [anon_sym_consteval] = ACTIONS(4550), + [anon_sym_QMARK] = ACTIONS(4562), + [anon_sym_STAR_EQ] = ACTIONS(4562), + [anon_sym_SLASH_EQ] = ACTIONS(4562), + [anon_sym_PERCENT_EQ] = ACTIONS(4562), + [anon_sym_PLUS_EQ] = ACTIONS(4562), + [anon_sym_DASH_EQ] = ACTIONS(4562), + [anon_sym_LT_LT_EQ] = ACTIONS(4562), + [anon_sym_GT_GT_EQ] = ACTIONS(4562), + [anon_sym_AMP_EQ] = ACTIONS(4562), + [anon_sym_CARET_EQ] = ACTIONS(4562), + [anon_sym_PIPE_EQ] = ACTIONS(4562), + [anon_sym_and_eq] = ACTIONS(4557), + [anon_sym_or_eq] = ACTIONS(4557), + [anon_sym_xor_eq] = ACTIONS(4557), + [anon_sym_LT_EQ_GT] = ACTIONS(4562), + [anon_sym_or] = ACTIONS(4557), + [anon_sym_and] = ACTIONS(4557), + [anon_sym_bitor] = ACTIONS(4557), + [anon_sym_xor] = ACTIONS(4557), + [anon_sym_bitand] = ACTIONS(4557), + [anon_sym_not_eq] = ACTIONS(4557), + [anon_sym_DASH_DASH] = ACTIONS(4562), + [anon_sym_PLUS_PLUS] = ACTIONS(4562), + [anon_sym_DOT] = ACTIONS(4557), + [anon_sym_DASH_GT] = ACTIONS(4562), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4550), + [anon_sym_decltype] = ACTIONS(4550), + [anon_sym_virtual] = ACTIONS(4550), + [anon_sym_template] = ACTIONS(4550), + [anon_sym_operator] = ACTIONS(4550), + }, + [2115] = { + [sym_template_argument_list] = STATE(2205), + [sym_identifier] = ACTIONS(4455), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4457), + [anon_sym_LPAREN2] = ACTIONS(4459), + [anon_sym_TILDE] = ACTIONS(4463), + [anon_sym_DASH] = ACTIONS(4465), + [anon_sym_PLUS] = ACTIONS(4465), + [anon_sym_STAR] = ACTIONS(4467), + [anon_sym_SLASH] = ACTIONS(4465), + [anon_sym_PERCENT] = ACTIONS(4465), + [anon_sym_PIPE_PIPE] = ACTIONS(4457), + [anon_sym_AMP_AMP] = ACTIONS(4470), + [anon_sym_PIPE] = ACTIONS(4465), + [anon_sym_CARET] = ACTIONS(4465), + [anon_sym_AMP] = ACTIONS(4467), + [anon_sym_EQ_EQ] = ACTIONS(4457), + [anon_sym_BANG_EQ] = ACTIONS(4457), + [anon_sym_GT] = ACTIONS(4465), + [anon_sym_GT_EQ] = ACTIONS(4457), + [anon_sym_LT_EQ] = ACTIONS(4465), + [anon_sym_LT] = ACTIONS(4473), + [anon_sym_LT_LT] = ACTIONS(4465), + [anon_sym_GT_GT] = ACTIONS(4465), + [anon_sym_SEMI] = ACTIONS(4470), + [anon_sym_extern] = ACTIONS(4455), + [anon_sym___attribute__] = ACTIONS(4455), + [anon_sym_COLON_COLON] = ACTIONS(4476), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4478), + [anon_sym___declspec] = ACTIONS(4455), + [anon_sym___based] = ACTIONS(4455), + [anon_sym_LBRACE] = ACTIONS(4481), + [anon_sym_LBRACK] = ACTIONS(4483), + [anon_sym_EQ] = ACTIONS(4487), + [anon_sym_static] = ACTIONS(4455), + [anon_sym_register] = ACTIONS(4455), + [anon_sym_inline] = ACTIONS(4455), + [anon_sym_thread_local] = ACTIONS(4455), + [anon_sym_const] = ACTIONS(4455), + [anon_sym_constexpr] = ACTIONS(4455), + [anon_sym_volatile] = ACTIONS(4455), + [anon_sym_restrict] = ACTIONS(4455), + [anon_sym___restrict__] = ACTIONS(4455), + [anon_sym__Atomic] = ACTIONS(4455), + [anon_sym__Noreturn] = ACTIONS(4455), + [anon_sym_noreturn] = ACTIONS(4455), + [anon_sym_mutable] = ACTIONS(4455), + [anon_sym_constinit] = ACTIONS(4455), + [anon_sym_consteval] = ACTIONS(4455), + [anon_sym_COLON] = ACTIONS(4542), + [anon_sym_QMARK] = ACTIONS(4457), + [anon_sym_STAR_EQ] = ACTIONS(4491), + [anon_sym_SLASH_EQ] = ACTIONS(4491), + [anon_sym_PERCENT_EQ] = ACTIONS(4491), + [anon_sym_PLUS_EQ] = ACTIONS(4491), + [anon_sym_DASH_EQ] = ACTIONS(4491), + [anon_sym_LT_LT_EQ] = ACTIONS(4491), + [anon_sym_GT_GT_EQ] = ACTIONS(4491), + [anon_sym_AMP_EQ] = ACTIONS(4491), + [anon_sym_CARET_EQ] = ACTIONS(4491), + [anon_sym_PIPE_EQ] = ACTIONS(4491), + [anon_sym_and_eq] = ACTIONS(4487), + [anon_sym_or_eq] = ACTIONS(4487), + [anon_sym_xor_eq] = ACTIONS(4487), + [anon_sym_LT_EQ_GT] = ACTIONS(4457), + [anon_sym_or] = ACTIONS(4465), + [anon_sym_and] = ACTIONS(4465), + [anon_sym_bitor] = ACTIONS(4465), + [anon_sym_xor] = ACTIONS(4465), + [anon_sym_bitand] = ACTIONS(4465), + [anon_sym_not_eq] = ACTIONS(4465), + [anon_sym_DASH_DASH] = ACTIONS(4457), + [anon_sym_PLUS_PLUS] = ACTIONS(4457), + [anon_sym_DOT] = ACTIONS(4465), + [anon_sym_DASH_GT] = ACTIONS(4457), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4455), + [anon_sym_decltype] = ACTIONS(4455), + [anon_sym_virtual] = ACTIONS(4455), + [anon_sym_template] = ACTIONS(4455), + [anon_sym_operator] = ACTIONS(4455), + }, + [2116] = { + [sym_identifier] = ACTIONS(4550), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4562), + [anon_sym_COMMA] = ACTIONS(4562), + [anon_sym_LPAREN2] = ACTIONS(4552), + [anon_sym_TILDE] = ACTIONS(4555), + [anon_sym_DASH] = ACTIONS(4557), + [anon_sym_PLUS] = ACTIONS(4557), + [anon_sym_STAR] = ACTIONS(4559), + [anon_sym_SLASH] = ACTIONS(4557), + [anon_sym_PERCENT] = ACTIONS(4557), + [anon_sym_PIPE_PIPE] = ACTIONS(4562), + [anon_sym_AMP_AMP] = ACTIONS(4552), + [anon_sym_PIPE] = ACTIONS(4557), + [anon_sym_CARET] = ACTIONS(4557), + [anon_sym_AMP] = ACTIONS(4559), + [anon_sym_EQ_EQ] = ACTIONS(4562), + [anon_sym_BANG_EQ] = ACTIONS(4562), + [anon_sym_GT] = ACTIONS(4557), + [anon_sym_GT_EQ] = ACTIONS(4562), + [anon_sym_LT_EQ] = ACTIONS(4557), + [anon_sym_LT] = ACTIONS(4557), + [anon_sym_LT_LT] = ACTIONS(4557), + [anon_sym_GT_GT] = ACTIONS(4557), + [anon_sym_SEMI] = ACTIONS(4552), + [anon_sym_extern] = ACTIONS(4550), + [anon_sym___attribute__] = ACTIONS(4550), + [anon_sym_COLON_COLON] = ACTIONS(4555), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4552), + [anon_sym___declspec] = ACTIONS(4550), + [anon_sym___based] = ACTIONS(4550), + [anon_sym_LBRACE] = ACTIONS(4555), + [anon_sym_RBRACE] = ACTIONS(4562), + [anon_sym_LBRACK] = ACTIONS(4559), + [anon_sym_EQ] = ACTIONS(4557), + [anon_sym_static] = ACTIONS(4550), + [anon_sym_register] = ACTIONS(4550), + [anon_sym_inline] = ACTIONS(4550), + [anon_sym_thread_local] = ACTIONS(4550), + [anon_sym_const] = ACTIONS(4550), + [anon_sym_constexpr] = ACTIONS(4550), + [anon_sym_volatile] = ACTIONS(4550), + [anon_sym_restrict] = ACTIONS(4550), + [anon_sym___restrict__] = ACTIONS(4550), + [anon_sym__Atomic] = ACTIONS(4550), + [anon_sym__Noreturn] = ACTIONS(4550), + [anon_sym_noreturn] = ACTIONS(4550), + [anon_sym_mutable] = ACTIONS(4550), + [anon_sym_constinit] = ACTIONS(4550), + [anon_sym_consteval] = ACTIONS(4550), + [anon_sym_QMARK] = ACTIONS(4562), + [anon_sym_STAR_EQ] = ACTIONS(4562), + [anon_sym_SLASH_EQ] = ACTIONS(4562), + [anon_sym_PERCENT_EQ] = ACTIONS(4562), + [anon_sym_PLUS_EQ] = ACTIONS(4562), + [anon_sym_DASH_EQ] = ACTIONS(4562), + [anon_sym_LT_LT_EQ] = ACTIONS(4562), + [anon_sym_GT_GT_EQ] = ACTIONS(4562), + [anon_sym_AMP_EQ] = ACTIONS(4562), + [anon_sym_CARET_EQ] = ACTIONS(4562), + [anon_sym_PIPE_EQ] = ACTIONS(4562), + [anon_sym_and_eq] = ACTIONS(4557), + [anon_sym_or_eq] = ACTIONS(4557), + [anon_sym_xor_eq] = ACTIONS(4557), + [anon_sym_LT_EQ_GT] = ACTIONS(4562), + [anon_sym_or] = ACTIONS(4557), + [anon_sym_and] = ACTIONS(4557), + [anon_sym_bitor] = ACTIONS(4557), + [anon_sym_xor] = ACTIONS(4557), + [anon_sym_bitand] = ACTIONS(4557), + [anon_sym_not_eq] = ACTIONS(4557), + [anon_sym_DASH_DASH] = ACTIONS(4562), + [anon_sym_PLUS_PLUS] = ACTIONS(4562), + [anon_sym_DOT] = ACTIONS(4557), + [anon_sym_DASH_GT] = ACTIONS(4562), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4550), + [anon_sym_decltype] = ACTIONS(4550), + [anon_sym_virtual] = ACTIONS(4550), + [anon_sym_template] = ACTIONS(4550), + [anon_sym_operator] = ACTIONS(4550), + }, + [2117] = { + [sym_identifier] = ACTIONS(4550), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4552), + [anon_sym_COMMA] = ACTIONS(4552), + [anon_sym_RPAREN] = ACTIONS(4552), + [anon_sym_LPAREN2] = ACTIONS(4552), + [anon_sym_TILDE] = ACTIONS(4555), + [anon_sym_DASH] = ACTIONS(4557), + [anon_sym_PLUS] = ACTIONS(4557), + [anon_sym_STAR] = ACTIONS(4559), + [anon_sym_SLASH] = ACTIONS(4557), + [anon_sym_PERCENT] = ACTIONS(4557), + [anon_sym_PIPE_PIPE] = ACTIONS(4562), + [anon_sym_AMP_AMP] = ACTIONS(4552), + [anon_sym_PIPE] = ACTIONS(4557), + [anon_sym_CARET] = ACTIONS(4557), + [anon_sym_AMP] = ACTIONS(4559), + [anon_sym_EQ_EQ] = ACTIONS(4562), + [anon_sym_BANG_EQ] = ACTIONS(4562), + [anon_sym_GT] = ACTIONS(4557), + [anon_sym_GT_EQ] = ACTIONS(4562), + [anon_sym_LT_EQ] = ACTIONS(4557), + [anon_sym_LT] = ACTIONS(4557), + [anon_sym_LT_LT] = ACTIONS(4557), + [anon_sym_GT_GT] = ACTIONS(4557), + [anon_sym_extern] = ACTIONS(4550), + [anon_sym___attribute__] = ACTIONS(4550), + [anon_sym_COLON_COLON] = ACTIONS(4555), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4555), + [anon_sym___declspec] = ACTIONS(4550), + [anon_sym___based] = ACTIONS(4550), + [anon_sym_LBRACE] = ACTIONS(4555), + [anon_sym_LBRACK] = ACTIONS(4559), + [anon_sym_EQ] = ACTIONS(4559), + [anon_sym_static] = ACTIONS(4550), + [anon_sym_register] = ACTIONS(4550), + [anon_sym_inline] = ACTIONS(4550), + [anon_sym_thread_local] = ACTIONS(4550), + [anon_sym_const] = ACTIONS(4550), + [anon_sym_constexpr] = ACTIONS(4550), + [anon_sym_volatile] = ACTIONS(4550), + [anon_sym_restrict] = ACTIONS(4550), + [anon_sym___restrict__] = ACTIONS(4550), + [anon_sym__Atomic] = ACTIONS(4550), + [anon_sym__Noreturn] = ACTIONS(4550), + [anon_sym_noreturn] = ACTIONS(4550), + [anon_sym_mutable] = ACTIONS(4550), + [anon_sym_constinit] = ACTIONS(4550), + [anon_sym_consteval] = ACTIONS(4550), + [anon_sym_QMARK] = ACTIONS(4562), + [anon_sym_STAR_EQ] = ACTIONS(4562), + [anon_sym_SLASH_EQ] = ACTIONS(4562), + [anon_sym_PERCENT_EQ] = ACTIONS(4562), + [anon_sym_PLUS_EQ] = ACTIONS(4562), + [anon_sym_DASH_EQ] = ACTIONS(4562), + [anon_sym_LT_LT_EQ] = ACTIONS(4562), + [anon_sym_GT_GT_EQ] = ACTIONS(4562), + [anon_sym_AMP_EQ] = ACTIONS(4562), + [anon_sym_CARET_EQ] = ACTIONS(4562), + [anon_sym_PIPE_EQ] = ACTIONS(4562), + [anon_sym_and_eq] = ACTIONS(4557), + [anon_sym_or_eq] = ACTIONS(4557), + [anon_sym_xor_eq] = ACTIONS(4557), + [anon_sym_LT_EQ_GT] = ACTIONS(4562), + [anon_sym_or] = ACTIONS(4557), + [anon_sym_and] = ACTIONS(4557), + [anon_sym_bitor] = ACTIONS(4557), + [anon_sym_xor] = ACTIONS(4557), + [anon_sym_bitand] = ACTIONS(4557), + [anon_sym_not_eq] = ACTIONS(4557), + [anon_sym_DASH_DASH] = ACTIONS(4562), + [anon_sym_PLUS_PLUS] = ACTIONS(4562), + [anon_sym_DOT] = ACTIONS(4557), + [anon_sym_DASH_GT] = ACTIONS(4562), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4550), + [anon_sym_decltype] = ACTIONS(4550), + [anon_sym_virtual] = ACTIONS(4550), + [anon_sym_template] = ACTIONS(4550), + [anon_sym_operator] = ACTIONS(4550), + }, + [2118] = { + [sym_identifier] = ACTIONS(3234), + [anon_sym_LPAREN2] = ACTIONS(3236), + [anon_sym_BANG] = ACTIONS(3236), + [anon_sym_TILDE] = ACTIONS(3236), + [anon_sym_DASH] = ACTIONS(3234), + [anon_sym_PLUS] = ACTIONS(3234), + [anon_sym_STAR] = ACTIONS(3236), + [anon_sym_AMP] = ACTIONS(3236), + [anon_sym_extern] = ACTIONS(3234), + [anon_sym___attribute__] = ACTIONS(3234), + [anon_sym_COLON_COLON] = ACTIONS(3236), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3236), + [anon_sym___declspec] = ACTIONS(3234), + [anon_sym_LBRACK] = ACTIONS(3234), + [anon_sym_static] = ACTIONS(3234), + [anon_sym_register] = ACTIONS(3234), + [anon_sym_inline] = ACTIONS(3234), + [anon_sym_thread_local] = ACTIONS(3234), + [anon_sym_const] = ACTIONS(3234), + [anon_sym_constexpr] = ACTIONS(3234), + [anon_sym_volatile] = ACTIONS(3234), + [anon_sym_restrict] = ACTIONS(3234), + [anon_sym___restrict__] = ACTIONS(3234), + [anon_sym__Atomic] = ACTIONS(3234), + [anon_sym__Noreturn] = ACTIONS(3234), + [anon_sym_noreturn] = ACTIONS(3234), + [anon_sym_mutable] = ACTIONS(3234), + [anon_sym_constinit] = ACTIONS(3234), + [anon_sym_consteval] = ACTIONS(3234), + [anon_sym_signed] = ACTIONS(3234), + [anon_sym_unsigned] = ACTIONS(3234), + [anon_sym_long] = ACTIONS(3234), + [anon_sym_short] = ACTIONS(3234), + [sym_primitive_type] = ACTIONS(3234), + [anon_sym_enum] = ACTIONS(3234), + [anon_sym_class] = ACTIONS(3234), + [anon_sym_struct] = ACTIONS(3234), + [anon_sym_union] = ACTIONS(3234), + [anon_sym_not] = ACTIONS(3234), + [anon_sym_compl] = ACTIONS(3234), + [anon_sym_DASH_DASH] = ACTIONS(3236), + [anon_sym_PLUS_PLUS] = ACTIONS(3236), + [anon_sym_sizeof] = ACTIONS(3234), + [anon_sym_offsetof] = ACTIONS(3234), + [anon_sym__Generic] = ACTIONS(3234), + [anon_sym_asm] = ACTIONS(3234), + [anon_sym___asm__] = ACTIONS(3234), + [sym_number_literal] = ACTIONS(3236), + [anon_sym_L_SQUOTE] = ACTIONS(3236), + [anon_sym_u_SQUOTE] = ACTIONS(3236), + [anon_sym_U_SQUOTE] = ACTIONS(3236), + [anon_sym_u8_SQUOTE] = ACTIONS(3236), + [anon_sym_SQUOTE] = ACTIONS(3236), + [anon_sym_L_DQUOTE] = ACTIONS(3236), + [anon_sym_u_DQUOTE] = ACTIONS(3236), + [anon_sym_U_DQUOTE] = ACTIONS(3236), + [anon_sym_u8_DQUOTE] = ACTIONS(3236), + [anon_sym_DQUOTE] = ACTIONS(3236), + [sym_true] = ACTIONS(3234), + [sym_false] = ACTIONS(3234), + [anon_sym_NULL] = ACTIONS(3234), + [anon_sym_nullptr] = ACTIONS(3234), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3234), + [anon_sym_decltype] = ACTIONS(3234), + [anon_sym_virtual] = ACTIONS(3234), + [anon_sym_typename] = ACTIONS(3234), + [anon_sym_template] = ACTIONS(3234), + [anon_sym_delete] = ACTIONS(3234), + [anon_sym_R_DQUOTE] = ACTIONS(3236), + [anon_sym_LR_DQUOTE] = ACTIONS(3236), + [anon_sym_uR_DQUOTE] = ACTIONS(3236), + [anon_sym_UR_DQUOTE] = ACTIONS(3236), + [anon_sym_u8R_DQUOTE] = ACTIONS(3236), + [anon_sym_co_await] = ACTIONS(3234), + [anon_sym_new] = ACTIONS(3234), + [anon_sym_requires] = ACTIONS(3234), + [sym_this] = ACTIONS(3234), + }, + [2119] = { + [sym__declaration_modifiers] = STATE(2530), + [sym__declaration_specifiers] = STATE(3795), + [sym_attribute_specifier] = STATE(2530), + [sym_attribute_declaration] = STATE(2530), + [sym_ms_declspec_modifier] = STATE(2530), + [sym__abstract_declarator] = STATE(5952), + [sym_abstract_parenthesized_declarator] = STATE(5452), + [sym_abstract_pointer_declarator] = STATE(5452), + [sym_abstract_function_declarator] = STATE(5452), + [sym_abstract_array_declarator] = STATE(5452), + [sym_storage_class_specifier] = STATE(2530), + [sym_type_qualifier] = STATE(2530), + [sym__type_specifier] = STATE(3633), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), + [sym_parameter_list] = STATE(3900), + [sym_parameter_declaration] = STATE(6292), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym_virtual] = STATE(2530), + [sym_dependent_type] = STATE(3723), + [sym_optional_parameter_declaration] = STATE(6292), + [sym_variadic_parameter_declaration] = STATE(6292), + [sym_abstract_reference_declarator] = STATE(5452), + [sym__function_declarator_seq] = STATE(5457), + [sym_template_type] = STATE(3680), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5733), + [sym_qualified_type_identifier] = STATE(3694), + [aux_sym__declaration_specifiers_repeat1] = STATE(2530), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [sym_identifier] = ACTIONS(4570), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1895), + [anon_sym_RPAREN] = ACTIONS(4012), + [anon_sym_LPAREN2] = ACTIONS(4572), + [anon_sym_STAR] = ACTIONS(4574), + [anon_sym_AMP_AMP] = ACTIONS(4576), + [anon_sym_AMP] = ACTIONS(4578), + [anon_sym_extern] = ACTIONS(53), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(4580), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1813), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACK] = ACTIONS(4582), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(53), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(3667), + [anon_sym_enum] = ACTIONS(1853), + [anon_sym_class] = ACTIONS(1855), + [anon_sym_struct] = ACTIONS(1857), + [anon_sym_union] = ACTIONS(1859), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(113), + [anon_sym_decltype] = ACTIONS(115), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_typename] = ACTIONS(1881), + [anon_sym_template] = ACTIONS(1329), + }, + [2120] = { + [sym__declaration_modifiers] = STATE(2530), + [sym__declaration_specifiers] = STATE(3795), + [sym_attribute_specifier] = STATE(2530), + [sym_attribute_declaration] = STATE(2530), + [sym_ms_declspec_modifier] = STATE(2530), + [sym__abstract_declarator] = STATE(5946), + [sym_abstract_parenthesized_declarator] = STATE(5452), + [sym_abstract_pointer_declarator] = STATE(5452), + [sym_abstract_function_declarator] = STATE(5452), + [sym_abstract_array_declarator] = STATE(5452), + [sym_storage_class_specifier] = STATE(2530), + [sym_type_qualifier] = STATE(2530), + [sym__type_specifier] = STATE(3633), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), + [sym_parameter_list] = STATE(3900), + [sym_parameter_declaration] = STATE(6292), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym_virtual] = STATE(2530), + [sym_dependent_type] = STATE(3723), + [sym_optional_parameter_declaration] = STATE(6292), + [sym_variadic_parameter_declaration] = STATE(6292), + [sym_abstract_reference_declarator] = STATE(5452), + [sym__function_declarator_seq] = STATE(5457), + [sym_template_type] = STATE(3680), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5733), + [sym_qualified_type_identifier] = STATE(3694), + [aux_sym__declaration_specifiers_repeat1] = STATE(2530), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [sym_identifier] = ACTIONS(4570), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1895), + [anon_sym_RPAREN] = ACTIONS(4012), + [anon_sym_LPAREN2] = ACTIONS(4572), + [anon_sym_STAR] = ACTIONS(4574), + [anon_sym_AMP_AMP] = ACTIONS(4576), + [anon_sym_AMP] = ACTIONS(4578), + [anon_sym_extern] = ACTIONS(53), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(4580), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1813), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_LBRACK] = ACTIONS(4582), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(53), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(3667), + [anon_sym_enum] = ACTIONS(1853), + [anon_sym_class] = ACTIONS(1855), + [anon_sym_struct] = ACTIONS(1857), + [anon_sym_union] = ACTIONS(1859), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(113), + [anon_sym_decltype] = ACTIONS(115), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_typename] = ACTIONS(1881), + [anon_sym_template] = ACTIONS(1329), + }, + [2121] = { + [sym_identifier] = ACTIONS(4531), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4533), + [anon_sym_COMMA] = ACTIONS(4533), + [anon_sym_RPAREN] = ACTIONS(4533), + [anon_sym_LPAREN2] = ACTIONS(4533), + [anon_sym_TILDE] = ACTIONS(4533), + [anon_sym_DASH] = ACTIONS(4531), + [anon_sym_PLUS] = ACTIONS(4531), + [anon_sym_STAR] = ACTIONS(4531), + [anon_sym_SLASH] = ACTIONS(4531), + [anon_sym_PERCENT] = ACTIONS(4531), + [anon_sym_PIPE_PIPE] = ACTIONS(4533), + [anon_sym_AMP_AMP] = ACTIONS(4533), + [anon_sym_PIPE] = ACTIONS(4531), + [anon_sym_CARET] = ACTIONS(4531), + [anon_sym_AMP] = ACTIONS(4531), + [anon_sym_EQ_EQ] = ACTIONS(4533), + [anon_sym_BANG_EQ] = ACTIONS(4533), + [anon_sym_GT] = ACTIONS(4531), + [anon_sym_GT_EQ] = ACTIONS(4533), + [anon_sym_LT_EQ] = ACTIONS(4531), + [anon_sym_LT] = ACTIONS(4531), + [anon_sym_LT_LT] = ACTIONS(4531), + [anon_sym_GT_GT] = ACTIONS(4531), + [anon_sym_extern] = ACTIONS(4531), + [anon_sym___attribute__] = ACTIONS(4531), + [anon_sym_COLON_COLON] = ACTIONS(4533), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4533), + [anon_sym___declspec] = ACTIONS(4531), + [anon_sym___based] = ACTIONS(4531), + [anon_sym_LBRACE] = ACTIONS(4533), + [anon_sym_LBRACK] = ACTIONS(4531), + [anon_sym_EQ] = ACTIONS(4531), + [anon_sym_static] = ACTIONS(4531), + [anon_sym_register] = ACTIONS(4531), + [anon_sym_inline] = ACTIONS(4531), + [anon_sym_thread_local] = ACTIONS(4531), + [anon_sym_const] = ACTIONS(4531), + [anon_sym_constexpr] = ACTIONS(4531), + [anon_sym_volatile] = ACTIONS(4531), + [anon_sym_restrict] = ACTIONS(4531), + [anon_sym___restrict__] = ACTIONS(4531), + [anon_sym__Atomic] = ACTIONS(4531), + [anon_sym__Noreturn] = ACTIONS(4531), + [anon_sym_noreturn] = ACTIONS(4531), + [anon_sym_mutable] = ACTIONS(4531), + [anon_sym_constinit] = ACTIONS(4531), + [anon_sym_consteval] = ACTIONS(4531), + [anon_sym_QMARK] = ACTIONS(4533), + [anon_sym_STAR_EQ] = ACTIONS(4533), + [anon_sym_SLASH_EQ] = ACTIONS(4533), + [anon_sym_PERCENT_EQ] = ACTIONS(4533), + [anon_sym_PLUS_EQ] = ACTIONS(4533), + [anon_sym_DASH_EQ] = ACTIONS(4533), + [anon_sym_LT_LT_EQ] = ACTIONS(4533), + [anon_sym_GT_GT_EQ] = ACTIONS(4533), + [anon_sym_AMP_EQ] = ACTIONS(4533), + [anon_sym_CARET_EQ] = ACTIONS(4533), + [anon_sym_PIPE_EQ] = ACTIONS(4533), + [anon_sym_LT_EQ_GT] = ACTIONS(4533), + [anon_sym_or] = ACTIONS(4531), + [anon_sym_and] = ACTIONS(4531), + [anon_sym_bitor] = ACTIONS(4531), + [anon_sym_xor] = ACTIONS(4531), + [anon_sym_bitand] = ACTIONS(4531), + [anon_sym_not_eq] = ACTIONS(4531), + [anon_sym_DASH_DASH] = ACTIONS(4533), + [anon_sym_PLUS_PLUS] = ACTIONS(4533), + [anon_sym_DOT] = ACTIONS(4531), + [anon_sym_DASH_GT] = ACTIONS(4531), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4531), + [anon_sym_decltype] = ACTIONS(4531), + [anon_sym_virtual] = ACTIONS(4531), + [anon_sym_template] = ACTIONS(4531), + [anon_sym_operator] = ACTIONS(4531), + [anon_sym_DOT_STAR] = ACTIONS(4533), + [anon_sym_DASH_GT_STAR] = ACTIONS(4533), + }, + [2122] = { + [sym_identifier] = ACTIONS(3189), + [anon_sym_LPAREN2] = ACTIONS(3194), + [anon_sym_BANG] = ACTIONS(3194), + [anon_sym_TILDE] = ACTIONS(3194), + [anon_sym_DASH] = ACTIONS(3189), + [anon_sym_PLUS] = ACTIONS(3189), + [anon_sym_STAR] = ACTIONS(3194), + [anon_sym_AMP] = ACTIONS(3194), + [anon_sym_extern] = ACTIONS(3189), + [anon_sym___attribute__] = ACTIONS(3189), + [anon_sym_COLON_COLON] = ACTIONS(3194), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3194), + [anon_sym___declspec] = ACTIONS(3189), + [anon_sym_LBRACK] = ACTIONS(3189), + [anon_sym_static] = ACTIONS(3189), + [anon_sym_register] = ACTIONS(3189), + [anon_sym_inline] = ACTIONS(3189), + [anon_sym_thread_local] = ACTIONS(3189), + [anon_sym_const] = ACTIONS(3189), + [anon_sym_constexpr] = ACTIONS(3189), + [anon_sym_volatile] = ACTIONS(3189), + [anon_sym_restrict] = ACTIONS(3189), + [anon_sym___restrict__] = ACTIONS(3189), + [anon_sym__Atomic] = ACTIONS(3189), + [anon_sym__Noreturn] = ACTIONS(3189), + [anon_sym_noreturn] = ACTIONS(3189), + [anon_sym_mutable] = ACTIONS(3189), + [anon_sym_constinit] = ACTIONS(3189), + [anon_sym_consteval] = ACTIONS(3189), + [anon_sym_signed] = ACTIONS(3189), + [anon_sym_unsigned] = ACTIONS(3189), + [anon_sym_long] = ACTIONS(3189), + [anon_sym_short] = ACTIONS(3189), + [sym_primitive_type] = ACTIONS(3189), + [anon_sym_enum] = ACTIONS(3189), + [anon_sym_class] = ACTIONS(3189), + [anon_sym_struct] = ACTIONS(3189), + [anon_sym_union] = ACTIONS(3189), + [anon_sym_not] = ACTIONS(3189), + [anon_sym_compl] = ACTIONS(3189), + [anon_sym_DASH_DASH] = ACTIONS(3194), + [anon_sym_PLUS_PLUS] = ACTIONS(3194), + [anon_sym_sizeof] = ACTIONS(3189), + [anon_sym_offsetof] = ACTIONS(3189), + [anon_sym__Generic] = ACTIONS(3189), + [anon_sym_asm] = ACTIONS(3189), + [anon_sym___asm__] = ACTIONS(3189), + [sym_number_literal] = ACTIONS(3194), + [anon_sym_L_SQUOTE] = ACTIONS(3194), + [anon_sym_u_SQUOTE] = ACTIONS(3194), + [anon_sym_U_SQUOTE] = ACTIONS(3194), + [anon_sym_u8_SQUOTE] = ACTIONS(3194), + [anon_sym_SQUOTE] = ACTIONS(3194), + [anon_sym_L_DQUOTE] = ACTIONS(3194), + [anon_sym_u_DQUOTE] = ACTIONS(3194), + [anon_sym_U_DQUOTE] = ACTIONS(3194), + [anon_sym_u8_DQUOTE] = ACTIONS(3194), + [anon_sym_DQUOTE] = ACTIONS(3194), + [sym_true] = ACTIONS(3189), + [sym_false] = ACTIONS(3189), + [anon_sym_NULL] = ACTIONS(3189), + [anon_sym_nullptr] = ACTIONS(3189), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3189), + [anon_sym_decltype] = ACTIONS(3189), + [anon_sym_virtual] = ACTIONS(3189), + [anon_sym_typename] = ACTIONS(3189), + [anon_sym_template] = ACTIONS(3189), + [anon_sym_delete] = ACTIONS(3189), + [anon_sym_R_DQUOTE] = ACTIONS(3194), + [anon_sym_LR_DQUOTE] = ACTIONS(3194), + [anon_sym_uR_DQUOTE] = ACTIONS(3194), + [anon_sym_UR_DQUOTE] = ACTIONS(3194), + [anon_sym_u8R_DQUOTE] = ACTIONS(3194), + [anon_sym_co_await] = ACTIONS(3189), + [anon_sym_new] = ACTIONS(3189), + [anon_sym_requires] = ACTIONS(3189), + [sym_this] = ACTIONS(3189), + }, + [2123] = { + [sym_identifier] = ACTIONS(4523), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4525), + [anon_sym_COMMA] = ACTIONS(4525), + [anon_sym_RPAREN] = ACTIONS(4525), + [anon_sym_LPAREN2] = ACTIONS(4525), + [anon_sym_TILDE] = ACTIONS(4525), + [anon_sym_DASH] = ACTIONS(4523), + [anon_sym_PLUS] = ACTIONS(4523), + [anon_sym_STAR] = ACTIONS(4523), + [anon_sym_SLASH] = ACTIONS(4523), + [anon_sym_PERCENT] = ACTIONS(4523), + [anon_sym_PIPE_PIPE] = ACTIONS(4525), + [anon_sym_AMP_AMP] = ACTIONS(4525), + [anon_sym_PIPE] = ACTIONS(4523), + [anon_sym_CARET] = ACTIONS(4523), + [anon_sym_AMP] = ACTIONS(4523), + [anon_sym_EQ_EQ] = ACTIONS(4525), + [anon_sym_BANG_EQ] = ACTIONS(4525), + [anon_sym_GT] = ACTIONS(4523), + [anon_sym_GT_EQ] = ACTIONS(4525), + [anon_sym_LT_EQ] = ACTIONS(4523), + [anon_sym_LT] = ACTIONS(4523), + [anon_sym_LT_LT] = ACTIONS(4523), + [anon_sym_GT_GT] = ACTIONS(4523), + [anon_sym_extern] = ACTIONS(4523), + [anon_sym___attribute__] = ACTIONS(4523), + [anon_sym_COLON_COLON] = ACTIONS(4525), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4525), + [anon_sym___declspec] = ACTIONS(4523), + [anon_sym___based] = ACTIONS(4523), + [anon_sym_LBRACE] = ACTIONS(4525), + [anon_sym_LBRACK] = ACTIONS(4523), + [anon_sym_EQ] = ACTIONS(4523), + [anon_sym_static] = ACTIONS(4523), + [anon_sym_register] = ACTIONS(4523), + [anon_sym_inline] = ACTIONS(4523), + [anon_sym_thread_local] = ACTIONS(4523), + [anon_sym_const] = ACTIONS(4523), + [anon_sym_constexpr] = ACTIONS(4523), + [anon_sym_volatile] = ACTIONS(4523), + [anon_sym_restrict] = ACTIONS(4523), + [anon_sym___restrict__] = ACTIONS(4523), + [anon_sym__Atomic] = ACTIONS(4523), + [anon_sym__Noreturn] = ACTIONS(4523), + [anon_sym_noreturn] = ACTIONS(4523), + [anon_sym_mutable] = ACTIONS(4523), + [anon_sym_constinit] = ACTIONS(4523), + [anon_sym_consteval] = ACTIONS(4523), + [anon_sym_QMARK] = ACTIONS(4525), + [anon_sym_STAR_EQ] = ACTIONS(4525), + [anon_sym_SLASH_EQ] = ACTIONS(4525), + [anon_sym_PERCENT_EQ] = ACTIONS(4525), + [anon_sym_PLUS_EQ] = ACTIONS(4525), + [anon_sym_DASH_EQ] = ACTIONS(4525), + [anon_sym_LT_LT_EQ] = ACTIONS(4525), + [anon_sym_GT_GT_EQ] = ACTIONS(4525), + [anon_sym_AMP_EQ] = ACTIONS(4525), + [anon_sym_CARET_EQ] = ACTIONS(4525), + [anon_sym_PIPE_EQ] = ACTIONS(4525), + [anon_sym_LT_EQ_GT] = ACTIONS(4525), + [anon_sym_or] = ACTIONS(4523), + [anon_sym_and] = ACTIONS(4523), + [anon_sym_bitor] = ACTIONS(4523), + [anon_sym_xor] = ACTIONS(4523), + [anon_sym_bitand] = ACTIONS(4523), + [anon_sym_not_eq] = ACTIONS(4523), + [anon_sym_DASH_DASH] = ACTIONS(4525), + [anon_sym_PLUS_PLUS] = ACTIONS(4525), + [anon_sym_DOT] = ACTIONS(4523), + [anon_sym_DASH_GT] = ACTIONS(4523), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4523), + [anon_sym_decltype] = ACTIONS(4523), + [anon_sym_virtual] = ACTIONS(4523), + [anon_sym_template] = ACTIONS(4523), + [anon_sym_operator] = ACTIONS(4523), + [anon_sym_DOT_STAR] = ACTIONS(4525), + [anon_sym_DASH_GT_STAR] = ACTIONS(4525), + }, + [2124] = { + [sym_identifier] = ACTIONS(4535), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4537), + [anon_sym_COMMA] = ACTIONS(4537), + [anon_sym_RPAREN] = ACTIONS(4537), + [anon_sym_LPAREN2] = ACTIONS(4537), + [anon_sym_TILDE] = ACTIONS(4537), + [anon_sym_DASH] = ACTIONS(4535), + [anon_sym_PLUS] = ACTIONS(4535), + [anon_sym_STAR] = ACTIONS(4535), + [anon_sym_SLASH] = ACTIONS(4535), + [anon_sym_PERCENT] = ACTIONS(4535), + [anon_sym_PIPE_PIPE] = ACTIONS(4537), + [anon_sym_AMP_AMP] = ACTIONS(4537), + [anon_sym_PIPE] = ACTIONS(4535), + [anon_sym_CARET] = ACTIONS(4535), + [anon_sym_AMP] = ACTIONS(4535), + [anon_sym_EQ_EQ] = ACTIONS(4537), + [anon_sym_BANG_EQ] = ACTIONS(4537), + [anon_sym_GT] = ACTIONS(4535), + [anon_sym_GT_EQ] = ACTIONS(4537), + [anon_sym_LT_EQ] = ACTIONS(4535), + [anon_sym_LT] = ACTIONS(4535), + [anon_sym_LT_LT] = ACTIONS(4535), + [anon_sym_GT_GT] = ACTIONS(4535), + [anon_sym_extern] = ACTIONS(4535), + [anon_sym___attribute__] = ACTIONS(4535), + [anon_sym_COLON_COLON] = ACTIONS(4537), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4537), + [anon_sym___declspec] = ACTIONS(4535), + [anon_sym___based] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4537), + [anon_sym_LBRACK] = ACTIONS(4535), + [anon_sym_EQ] = ACTIONS(4535), + [anon_sym_static] = ACTIONS(4535), + [anon_sym_register] = ACTIONS(4535), + [anon_sym_inline] = ACTIONS(4535), + [anon_sym_thread_local] = ACTIONS(4535), + [anon_sym_const] = ACTIONS(4535), + [anon_sym_constexpr] = ACTIONS(4535), + [anon_sym_volatile] = ACTIONS(4535), + [anon_sym_restrict] = ACTIONS(4535), + [anon_sym___restrict__] = ACTIONS(4535), + [anon_sym__Atomic] = ACTIONS(4535), + [anon_sym__Noreturn] = ACTIONS(4535), + [anon_sym_noreturn] = ACTIONS(4535), + [anon_sym_mutable] = ACTIONS(4535), + [anon_sym_constinit] = ACTIONS(4535), + [anon_sym_consteval] = ACTIONS(4535), + [anon_sym_QMARK] = ACTIONS(4537), + [anon_sym_STAR_EQ] = ACTIONS(4537), + [anon_sym_SLASH_EQ] = ACTIONS(4537), + [anon_sym_PERCENT_EQ] = ACTIONS(4537), + [anon_sym_PLUS_EQ] = ACTIONS(4537), + [anon_sym_DASH_EQ] = ACTIONS(4537), + [anon_sym_LT_LT_EQ] = ACTIONS(4537), + [anon_sym_GT_GT_EQ] = ACTIONS(4537), + [anon_sym_AMP_EQ] = ACTIONS(4537), + [anon_sym_CARET_EQ] = ACTIONS(4537), + [anon_sym_PIPE_EQ] = ACTIONS(4537), + [anon_sym_LT_EQ_GT] = ACTIONS(4537), + [anon_sym_or] = ACTIONS(4535), + [anon_sym_and] = ACTIONS(4535), + [anon_sym_bitor] = ACTIONS(4535), + [anon_sym_xor] = ACTIONS(4535), + [anon_sym_bitand] = ACTIONS(4535), + [anon_sym_not_eq] = ACTIONS(4535), + [anon_sym_DASH_DASH] = ACTIONS(4537), + [anon_sym_PLUS_PLUS] = ACTIONS(4537), + [anon_sym_DOT] = ACTIONS(4535), + [anon_sym_DASH_GT] = ACTIONS(4535), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4535), + [anon_sym_decltype] = ACTIONS(4535), + [anon_sym_virtual] = ACTIONS(4535), + [anon_sym_template] = ACTIONS(4535), + [anon_sym_operator] = ACTIONS(4535), + [anon_sym_DOT_STAR] = ACTIONS(4537), + [anon_sym_DASH_GT_STAR] = ACTIONS(4537), + }, + [2125] = { + [sym_identifier] = ACTIONS(4546), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4548), + [anon_sym_COMMA] = ACTIONS(4548), + [anon_sym_RPAREN] = ACTIONS(4548), + [anon_sym_LPAREN2] = ACTIONS(4548), + [anon_sym_TILDE] = ACTIONS(4548), + [anon_sym_DASH] = ACTIONS(4546), + [anon_sym_PLUS] = ACTIONS(4546), + [anon_sym_STAR] = ACTIONS(4546), + [anon_sym_SLASH] = ACTIONS(4546), + [anon_sym_PERCENT] = ACTIONS(4546), + [anon_sym_PIPE_PIPE] = ACTIONS(4548), + [anon_sym_AMP_AMP] = ACTIONS(4548), + [anon_sym_PIPE] = ACTIONS(4546), + [anon_sym_CARET] = ACTIONS(4546), + [anon_sym_AMP] = ACTIONS(4546), + [anon_sym_EQ_EQ] = ACTIONS(4548), + [anon_sym_BANG_EQ] = ACTIONS(4548), + [anon_sym_GT] = ACTIONS(4546), + [anon_sym_GT_EQ] = ACTIONS(4548), + [anon_sym_LT_EQ] = ACTIONS(4546), + [anon_sym_LT] = ACTIONS(4546), + [anon_sym_LT_LT] = ACTIONS(4546), + [anon_sym_GT_GT] = ACTIONS(4546), + [anon_sym_extern] = ACTIONS(4546), + [anon_sym___attribute__] = ACTIONS(4546), + [anon_sym_COLON_COLON] = ACTIONS(4548), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4548), + [anon_sym___declspec] = ACTIONS(4546), + [anon_sym___based] = ACTIONS(4546), + [anon_sym_LBRACE] = ACTIONS(4548), + [anon_sym_LBRACK] = ACTIONS(4546), + [anon_sym_EQ] = ACTIONS(4546), + [anon_sym_static] = ACTIONS(4546), + [anon_sym_register] = ACTIONS(4546), + [anon_sym_inline] = ACTIONS(4546), + [anon_sym_thread_local] = ACTIONS(4546), + [anon_sym_const] = ACTIONS(4546), + [anon_sym_constexpr] = ACTIONS(4546), + [anon_sym_volatile] = ACTIONS(4546), + [anon_sym_restrict] = ACTIONS(4546), + [anon_sym___restrict__] = ACTIONS(4546), + [anon_sym__Atomic] = ACTIONS(4546), + [anon_sym__Noreturn] = ACTIONS(4546), + [anon_sym_noreturn] = ACTIONS(4546), + [anon_sym_mutable] = ACTIONS(4546), + [anon_sym_constinit] = ACTIONS(4546), + [anon_sym_consteval] = ACTIONS(4546), + [anon_sym_QMARK] = ACTIONS(4548), + [anon_sym_STAR_EQ] = ACTIONS(4548), + [anon_sym_SLASH_EQ] = ACTIONS(4548), + [anon_sym_PERCENT_EQ] = ACTIONS(4548), + [anon_sym_PLUS_EQ] = ACTIONS(4548), + [anon_sym_DASH_EQ] = ACTIONS(4548), + [anon_sym_LT_LT_EQ] = ACTIONS(4548), + [anon_sym_GT_GT_EQ] = ACTIONS(4548), + [anon_sym_AMP_EQ] = ACTIONS(4548), + [anon_sym_CARET_EQ] = ACTIONS(4548), + [anon_sym_PIPE_EQ] = ACTIONS(4548), + [anon_sym_LT_EQ_GT] = ACTIONS(4548), + [anon_sym_or] = ACTIONS(4546), + [anon_sym_and] = ACTIONS(4546), + [anon_sym_bitor] = ACTIONS(4546), + [anon_sym_xor] = ACTIONS(4546), + [anon_sym_bitand] = ACTIONS(4546), + [anon_sym_not_eq] = ACTIONS(4546), + [anon_sym_DASH_DASH] = ACTIONS(4548), + [anon_sym_PLUS_PLUS] = ACTIONS(4548), + [anon_sym_DOT] = ACTIONS(4546), + [anon_sym_DASH_GT] = ACTIONS(4546), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4546), + [anon_sym_decltype] = ACTIONS(4546), + [anon_sym_virtual] = ACTIONS(4546), + [anon_sym_template] = ACTIONS(4546), + [anon_sym_operator] = ACTIONS(4546), + [anon_sym_DOT_STAR] = ACTIONS(4548), + [anon_sym_DASH_GT_STAR] = ACTIONS(4548), + }, + [2126] = { + [sym_identifier] = ACTIONS(4566), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4568), + [anon_sym_COMMA] = ACTIONS(4568), + [anon_sym_RPAREN] = ACTIONS(4568), + [anon_sym_LPAREN2] = ACTIONS(4568), + [anon_sym_TILDE] = ACTIONS(4568), + [anon_sym_DASH] = ACTIONS(4566), + [anon_sym_PLUS] = ACTIONS(4566), + [anon_sym_STAR] = ACTIONS(4566), + [anon_sym_SLASH] = ACTIONS(4566), + [anon_sym_PERCENT] = ACTIONS(4566), + [anon_sym_PIPE_PIPE] = ACTIONS(4568), + [anon_sym_AMP_AMP] = ACTIONS(4568), + [anon_sym_PIPE] = ACTIONS(4566), + [anon_sym_CARET] = ACTIONS(4566), + [anon_sym_AMP] = ACTIONS(4566), + [anon_sym_EQ_EQ] = ACTIONS(4568), + [anon_sym_BANG_EQ] = ACTIONS(4568), + [anon_sym_GT] = ACTIONS(4566), + [anon_sym_GT_EQ] = ACTIONS(4568), + [anon_sym_LT_EQ] = ACTIONS(4566), + [anon_sym_LT] = ACTIONS(4566), + [anon_sym_LT_LT] = ACTIONS(4566), + [anon_sym_GT_GT] = ACTIONS(4566), + [anon_sym_extern] = ACTIONS(4566), + [anon_sym___attribute__] = ACTIONS(4566), + [anon_sym_COLON_COLON] = ACTIONS(4568), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4568), + [anon_sym___declspec] = ACTIONS(4566), + [anon_sym___based] = ACTIONS(4566), + [anon_sym_LBRACE] = ACTIONS(4568), + [anon_sym_LBRACK] = ACTIONS(4566), + [anon_sym_EQ] = ACTIONS(4566), + [anon_sym_static] = ACTIONS(4566), + [anon_sym_register] = ACTIONS(4566), + [anon_sym_inline] = ACTIONS(4566), + [anon_sym_thread_local] = ACTIONS(4566), + [anon_sym_const] = ACTIONS(4566), + [anon_sym_constexpr] = ACTIONS(4566), + [anon_sym_volatile] = ACTIONS(4566), + [anon_sym_restrict] = ACTIONS(4566), + [anon_sym___restrict__] = ACTIONS(4566), + [anon_sym__Atomic] = ACTIONS(4566), + [anon_sym__Noreturn] = ACTIONS(4566), + [anon_sym_noreturn] = ACTIONS(4566), + [anon_sym_mutable] = ACTIONS(4566), + [anon_sym_constinit] = ACTIONS(4566), + [anon_sym_consteval] = ACTIONS(4566), + [anon_sym_QMARK] = ACTIONS(4568), + [anon_sym_STAR_EQ] = ACTIONS(4568), + [anon_sym_SLASH_EQ] = ACTIONS(4568), + [anon_sym_PERCENT_EQ] = ACTIONS(4568), + [anon_sym_PLUS_EQ] = ACTIONS(4568), + [anon_sym_DASH_EQ] = ACTIONS(4568), + [anon_sym_LT_LT_EQ] = ACTIONS(4568), + [anon_sym_GT_GT_EQ] = ACTIONS(4568), + [anon_sym_AMP_EQ] = ACTIONS(4568), + [anon_sym_CARET_EQ] = ACTIONS(4568), + [anon_sym_PIPE_EQ] = ACTIONS(4568), + [anon_sym_LT_EQ_GT] = ACTIONS(4568), + [anon_sym_or] = ACTIONS(4566), + [anon_sym_and] = ACTIONS(4566), + [anon_sym_bitor] = ACTIONS(4566), + [anon_sym_xor] = ACTIONS(4566), + [anon_sym_bitand] = ACTIONS(4566), + [anon_sym_not_eq] = ACTIONS(4566), + [anon_sym_DASH_DASH] = ACTIONS(4568), + [anon_sym_PLUS_PLUS] = ACTIONS(4568), + [anon_sym_DOT] = ACTIONS(4566), + [anon_sym_DASH_GT] = ACTIONS(4566), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4566), + [anon_sym_decltype] = ACTIONS(4566), + [anon_sym_virtual] = ACTIONS(4566), + [anon_sym_template] = ACTIONS(4566), + [anon_sym_operator] = ACTIONS(4566), + [anon_sym_DOT_STAR] = ACTIONS(4568), + [anon_sym_DASH_GT_STAR] = ACTIONS(4568), + }, + [2127] = { + [sym_identifier] = ACTIONS(4517), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4519), + [anon_sym_COMMA] = ACTIONS(4519), + [anon_sym_RPAREN] = ACTIONS(4519), + [anon_sym_LPAREN2] = ACTIONS(4519), + [anon_sym_TILDE] = ACTIONS(4519), + [anon_sym_DASH] = ACTIONS(4517), + [anon_sym_PLUS] = ACTIONS(4517), + [anon_sym_STAR] = ACTIONS(4517), + [anon_sym_SLASH] = ACTIONS(4517), + [anon_sym_PERCENT] = ACTIONS(4517), + [anon_sym_PIPE_PIPE] = ACTIONS(4519), + [anon_sym_AMP_AMP] = ACTIONS(4519), + [anon_sym_PIPE] = ACTIONS(4517), + [anon_sym_CARET] = ACTIONS(4517), + [anon_sym_AMP] = ACTIONS(4517), + [anon_sym_EQ_EQ] = ACTIONS(4519), + [anon_sym_BANG_EQ] = ACTIONS(4519), + [anon_sym_GT] = ACTIONS(4517), + [anon_sym_GT_EQ] = ACTIONS(4519), + [anon_sym_LT_EQ] = ACTIONS(4517), + [anon_sym_LT] = ACTIONS(4517), + [anon_sym_LT_LT] = ACTIONS(4517), + [anon_sym_GT_GT] = ACTIONS(4517), + [anon_sym_extern] = ACTIONS(4517), + [anon_sym___attribute__] = ACTIONS(4517), + [anon_sym_COLON_COLON] = ACTIONS(4519), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4519), + [anon_sym___declspec] = ACTIONS(4517), + [anon_sym___based] = ACTIONS(4517), + [anon_sym_LBRACE] = ACTIONS(4519), + [anon_sym_LBRACK] = ACTIONS(4517), + [anon_sym_EQ] = ACTIONS(4517), + [anon_sym_static] = ACTIONS(4517), + [anon_sym_register] = ACTIONS(4517), + [anon_sym_inline] = ACTIONS(4517), + [anon_sym_thread_local] = ACTIONS(4517), + [anon_sym_const] = ACTIONS(4517), + [anon_sym_constexpr] = ACTIONS(4517), + [anon_sym_volatile] = ACTIONS(4517), + [anon_sym_restrict] = ACTIONS(4517), + [anon_sym___restrict__] = ACTIONS(4517), + [anon_sym__Atomic] = ACTIONS(4517), + [anon_sym__Noreturn] = ACTIONS(4517), + [anon_sym_noreturn] = ACTIONS(4517), + [anon_sym_mutable] = ACTIONS(4517), + [anon_sym_constinit] = ACTIONS(4517), + [anon_sym_consteval] = ACTIONS(4517), + [anon_sym_QMARK] = ACTIONS(4519), + [anon_sym_STAR_EQ] = ACTIONS(4519), + [anon_sym_SLASH_EQ] = ACTIONS(4519), + [anon_sym_PERCENT_EQ] = ACTIONS(4519), + [anon_sym_PLUS_EQ] = ACTIONS(4519), + [anon_sym_DASH_EQ] = ACTIONS(4519), + [anon_sym_LT_LT_EQ] = ACTIONS(4519), + [anon_sym_GT_GT_EQ] = ACTIONS(4519), + [anon_sym_AMP_EQ] = ACTIONS(4519), + [anon_sym_CARET_EQ] = ACTIONS(4519), + [anon_sym_PIPE_EQ] = ACTIONS(4519), + [anon_sym_LT_EQ_GT] = ACTIONS(4519), + [anon_sym_or] = ACTIONS(4517), + [anon_sym_and] = ACTIONS(4517), + [anon_sym_bitor] = ACTIONS(4517), + [anon_sym_xor] = ACTIONS(4517), + [anon_sym_bitand] = ACTIONS(4517), + [anon_sym_not_eq] = ACTIONS(4517), + [anon_sym_DASH_DASH] = ACTIONS(4519), + [anon_sym_PLUS_PLUS] = ACTIONS(4519), + [anon_sym_DOT] = ACTIONS(4517), + [anon_sym_DASH_GT] = ACTIONS(4517), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4517), + [anon_sym_decltype] = ACTIONS(4517), + [anon_sym_virtual] = ACTIONS(4517), + [anon_sym_template] = ACTIONS(4517), + [anon_sym_operator] = ACTIONS(4517), + [anon_sym_DOT_STAR] = ACTIONS(4519), + [anon_sym_DASH_GT_STAR] = ACTIONS(4519), + }, + [2128] = { + [sym_identifier] = ACTIONS(4527), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4529), + [anon_sym_COMMA] = ACTIONS(4529), + [anon_sym_RPAREN] = ACTIONS(4529), + [anon_sym_LPAREN2] = ACTIONS(4529), + [anon_sym_TILDE] = ACTIONS(4529), + [anon_sym_DASH] = ACTIONS(4527), + [anon_sym_PLUS] = ACTIONS(4527), + [anon_sym_STAR] = ACTIONS(4527), + [anon_sym_SLASH] = ACTIONS(4527), + [anon_sym_PERCENT] = ACTIONS(4527), + [anon_sym_PIPE_PIPE] = ACTIONS(4529), + [anon_sym_AMP_AMP] = ACTIONS(4529), + [anon_sym_PIPE] = ACTIONS(4527), + [anon_sym_CARET] = ACTIONS(4527), + [anon_sym_AMP] = ACTIONS(4527), + [anon_sym_EQ_EQ] = ACTIONS(4529), + [anon_sym_BANG_EQ] = ACTIONS(4529), + [anon_sym_GT] = ACTIONS(4527), + [anon_sym_GT_EQ] = ACTIONS(4529), + [anon_sym_LT_EQ] = ACTIONS(4527), + [anon_sym_LT] = ACTIONS(4527), + [anon_sym_LT_LT] = ACTIONS(4527), + [anon_sym_GT_GT] = ACTIONS(4527), + [anon_sym_extern] = ACTIONS(4527), + [anon_sym___attribute__] = ACTIONS(4527), + [anon_sym_COLON_COLON] = ACTIONS(4529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4529), + [anon_sym___declspec] = ACTIONS(4527), + [anon_sym___based] = ACTIONS(4527), + [anon_sym_LBRACE] = ACTIONS(4529), + [anon_sym_LBRACK] = ACTIONS(4527), + [anon_sym_EQ] = ACTIONS(4527), + [anon_sym_static] = ACTIONS(4527), + [anon_sym_register] = ACTIONS(4527), + [anon_sym_inline] = ACTIONS(4527), + [anon_sym_thread_local] = ACTIONS(4527), + [anon_sym_const] = ACTIONS(4527), + [anon_sym_constexpr] = ACTIONS(4527), + [anon_sym_volatile] = ACTIONS(4527), + [anon_sym_restrict] = ACTIONS(4527), + [anon_sym___restrict__] = ACTIONS(4527), + [anon_sym__Atomic] = ACTIONS(4527), + [anon_sym__Noreturn] = ACTIONS(4527), + [anon_sym_noreturn] = ACTIONS(4527), + [anon_sym_mutable] = ACTIONS(4527), + [anon_sym_constinit] = ACTIONS(4527), + [anon_sym_consteval] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4529), + [anon_sym_STAR_EQ] = ACTIONS(4529), + [anon_sym_SLASH_EQ] = ACTIONS(4529), + [anon_sym_PERCENT_EQ] = ACTIONS(4529), + [anon_sym_PLUS_EQ] = ACTIONS(4529), + [anon_sym_DASH_EQ] = ACTIONS(4529), + [anon_sym_LT_LT_EQ] = ACTIONS(4529), + [anon_sym_GT_GT_EQ] = ACTIONS(4529), + [anon_sym_AMP_EQ] = ACTIONS(4529), + [anon_sym_CARET_EQ] = ACTIONS(4529), + [anon_sym_PIPE_EQ] = ACTIONS(4529), + [anon_sym_LT_EQ_GT] = ACTIONS(4529), + [anon_sym_or] = ACTIONS(4527), + [anon_sym_and] = ACTIONS(4527), + [anon_sym_bitor] = ACTIONS(4527), + [anon_sym_xor] = ACTIONS(4527), + [anon_sym_bitand] = ACTIONS(4527), + [anon_sym_not_eq] = ACTIONS(4527), + [anon_sym_DASH_DASH] = ACTIONS(4529), + [anon_sym_PLUS_PLUS] = ACTIONS(4529), + [anon_sym_DOT] = ACTIONS(4527), + [anon_sym_DASH_GT] = ACTIONS(4527), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4527), + [anon_sym_decltype] = ACTIONS(4527), + [anon_sym_virtual] = ACTIONS(4527), + [anon_sym_template] = ACTIONS(4527), + [anon_sym_operator] = ACTIONS(4527), + [anon_sym_DOT_STAR] = ACTIONS(4529), + [anon_sym_DASH_GT_STAR] = ACTIONS(4529), + }, + [2129] = { + [sym_identifier] = ACTIONS(3384), + [anon_sym_LPAREN2] = ACTIONS(3386), + [anon_sym_BANG] = ACTIONS(3386), + [anon_sym_TILDE] = ACTIONS(3386), + [anon_sym_DASH] = ACTIONS(3384), + [anon_sym_PLUS] = ACTIONS(3384), + [anon_sym_STAR] = ACTIONS(3386), + [anon_sym_AMP] = ACTIONS(3386), + [anon_sym_extern] = ACTIONS(3384), + [anon_sym___attribute__] = ACTIONS(3384), + [anon_sym_COLON_COLON] = ACTIONS(3386), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3386), + [anon_sym___declspec] = ACTIONS(3384), + [anon_sym_LBRACK] = ACTIONS(3384), + [anon_sym_static] = ACTIONS(3384), + [anon_sym_register] = ACTIONS(3384), + [anon_sym_inline] = ACTIONS(3384), + [anon_sym_thread_local] = ACTIONS(3384), + [anon_sym_const] = ACTIONS(3384), + [anon_sym_constexpr] = ACTIONS(3384), + [anon_sym_volatile] = ACTIONS(3384), + [anon_sym_restrict] = ACTIONS(3384), + [anon_sym___restrict__] = ACTIONS(3384), + [anon_sym__Atomic] = ACTIONS(3384), + [anon_sym__Noreturn] = ACTIONS(3384), + [anon_sym_noreturn] = ACTIONS(3384), + [anon_sym_mutable] = ACTIONS(3384), + [anon_sym_constinit] = ACTIONS(3384), + [anon_sym_consteval] = ACTIONS(3384), + [anon_sym_signed] = ACTIONS(3384), + [anon_sym_unsigned] = ACTIONS(3384), + [anon_sym_long] = ACTIONS(3384), + [anon_sym_short] = ACTIONS(3384), + [sym_primitive_type] = ACTIONS(3384), + [anon_sym_enum] = ACTIONS(3384), + [anon_sym_class] = ACTIONS(3384), + [anon_sym_struct] = ACTIONS(3384), + [anon_sym_union] = ACTIONS(3384), + [anon_sym_not] = ACTIONS(3384), + [anon_sym_compl] = ACTIONS(3384), + [anon_sym_DASH_DASH] = ACTIONS(3386), + [anon_sym_PLUS_PLUS] = ACTIONS(3386), + [anon_sym_sizeof] = ACTIONS(3384), + [anon_sym_offsetof] = ACTIONS(3384), + [anon_sym__Generic] = ACTIONS(3384), + [anon_sym_asm] = ACTIONS(3384), + [anon_sym___asm__] = ACTIONS(3384), + [sym_number_literal] = ACTIONS(3386), + [anon_sym_L_SQUOTE] = ACTIONS(3386), + [anon_sym_u_SQUOTE] = ACTIONS(3386), + [anon_sym_U_SQUOTE] = ACTIONS(3386), + [anon_sym_u8_SQUOTE] = ACTIONS(3386), + [anon_sym_SQUOTE] = ACTIONS(3386), + [anon_sym_L_DQUOTE] = ACTIONS(3386), + [anon_sym_u_DQUOTE] = ACTIONS(3386), + [anon_sym_U_DQUOTE] = ACTIONS(3386), + [anon_sym_u8_DQUOTE] = ACTIONS(3386), + [anon_sym_DQUOTE] = ACTIONS(3386), + [sym_true] = ACTIONS(3384), + [sym_false] = ACTIONS(3384), + [anon_sym_NULL] = ACTIONS(3384), + [anon_sym_nullptr] = ACTIONS(3384), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3384), + [anon_sym_decltype] = ACTIONS(3384), + [anon_sym_virtual] = ACTIONS(3384), + [anon_sym_typename] = ACTIONS(3384), + [anon_sym_template] = ACTIONS(3384), + [anon_sym_delete] = ACTIONS(3384), + [anon_sym_R_DQUOTE] = ACTIONS(3386), + [anon_sym_LR_DQUOTE] = ACTIONS(3386), + [anon_sym_uR_DQUOTE] = ACTIONS(3386), + [anon_sym_UR_DQUOTE] = ACTIONS(3386), + [anon_sym_u8R_DQUOTE] = ACTIONS(3386), + [anon_sym_co_await] = ACTIONS(3384), + [anon_sym_new] = ACTIONS(3384), + [anon_sym_requires] = ACTIONS(3384), + [sym_this] = ACTIONS(3384), + }, + [2130] = { + [sym_identifier] = ACTIONS(4550), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4552), + [anon_sym_COMMA] = ACTIONS(4552), + [anon_sym_RPAREN] = ACTIONS(4552), + [anon_sym_LPAREN2] = ACTIONS(4552), + [anon_sym_TILDE] = ACTIONS(4555), + [anon_sym_DASH] = ACTIONS(4557), + [anon_sym_PLUS] = ACTIONS(4557), + [anon_sym_STAR] = ACTIONS(4559), + [anon_sym_SLASH] = ACTIONS(4557), + [anon_sym_PERCENT] = ACTIONS(4557), + [anon_sym_PIPE_PIPE] = ACTIONS(4562), + [anon_sym_AMP_AMP] = ACTIONS(4552), + [anon_sym_PIPE] = ACTIONS(4557), + [anon_sym_CARET] = ACTIONS(4557), + [anon_sym_AMP] = ACTIONS(4559), + [anon_sym_EQ_EQ] = ACTIONS(4562), + [anon_sym_BANG_EQ] = ACTIONS(4562), + [anon_sym_GT] = ACTIONS(4557), + [anon_sym_GT_EQ] = ACTIONS(4562), + [anon_sym_LT_EQ] = ACTIONS(4557), + [anon_sym_LT] = ACTIONS(4557), + [anon_sym_LT_LT] = ACTIONS(4557), + [anon_sym_GT_GT] = ACTIONS(4557), + [anon_sym_extern] = ACTIONS(4550), + [anon_sym___attribute__] = ACTIONS(4550), + [anon_sym_COLON_COLON] = ACTIONS(4555), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4555), + [anon_sym___declspec] = ACTIONS(4550), + [anon_sym___based] = ACTIONS(4550), + [anon_sym_LBRACE] = ACTIONS(4555), + [anon_sym_LBRACK] = ACTIONS(4559), + [anon_sym_EQ] = ACTIONS(4559), + [anon_sym_static] = ACTIONS(4550), + [anon_sym_register] = ACTIONS(4550), + [anon_sym_inline] = ACTIONS(4550), + [anon_sym_thread_local] = ACTIONS(4550), + [anon_sym_const] = ACTIONS(4550), + [anon_sym_constexpr] = ACTIONS(4550), + [anon_sym_volatile] = ACTIONS(4550), + [anon_sym_restrict] = ACTIONS(4550), + [anon_sym___restrict__] = ACTIONS(4550), + [anon_sym__Atomic] = ACTIONS(4550), + [anon_sym__Noreturn] = ACTIONS(4550), + [anon_sym_noreturn] = ACTIONS(4550), + [anon_sym_mutable] = ACTIONS(4550), + [anon_sym_constinit] = ACTIONS(4550), + [anon_sym_consteval] = ACTIONS(4550), + [anon_sym_QMARK] = ACTIONS(4562), + [anon_sym_STAR_EQ] = ACTIONS(4562), + [anon_sym_SLASH_EQ] = ACTIONS(4562), + [anon_sym_PERCENT_EQ] = ACTIONS(4562), + [anon_sym_PLUS_EQ] = ACTIONS(4562), + [anon_sym_DASH_EQ] = ACTIONS(4562), + [anon_sym_LT_LT_EQ] = ACTIONS(4562), + [anon_sym_GT_GT_EQ] = ACTIONS(4562), + [anon_sym_AMP_EQ] = ACTIONS(4562), + [anon_sym_CARET_EQ] = ACTIONS(4562), + [anon_sym_PIPE_EQ] = ACTIONS(4562), + [anon_sym_LT_EQ_GT] = ACTIONS(4562), + [anon_sym_or] = ACTIONS(4557), + [anon_sym_and] = ACTIONS(4557), + [anon_sym_bitor] = ACTIONS(4557), + [anon_sym_xor] = ACTIONS(4557), + [anon_sym_bitand] = ACTIONS(4557), + [anon_sym_not_eq] = ACTIONS(4557), + [anon_sym_DASH_DASH] = ACTIONS(4562), + [anon_sym_PLUS_PLUS] = ACTIONS(4562), + [anon_sym_DOT] = ACTIONS(4557), + [anon_sym_DASH_GT] = ACTIONS(4557), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4550), + [anon_sym_decltype] = ACTIONS(4550), + [anon_sym_virtual] = ACTIONS(4550), + [anon_sym_template] = ACTIONS(4550), + [anon_sym_operator] = ACTIONS(4550), + [anon_sym_DOT_STAR] = ACTIONS(4562), + [anon_sym_DASH_GT_STAR] = ACTIONS(4562), + }, + [2131] = { + [sym_identifier] = ACTIONS(4535), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4537), + [anon_sym_COMMA] = ACTIONS(4537), + [anon_sym_RPAREN] = ACTIONS(4537), + [anon_sym_LPAREN2] = ACTIONS(4537), + [anon_sym_TILDE] = ACTIONS(4537), + [anon_sym_DASH] = ACTIONS(4535), + [anon_sym_PLUS] = ACTIONS(4535), + [anon_sym_STAR] = ACTIONS(4537), + [anon_sym_SLASH] = ACTIONS(4535), + [anon_sym_PERCENT] = ACTIONS(4537), + [anon_sym_PIPE_PIPE] = ACTIONS(4537), + [anon_sym_AMP_AMP] = ACTIONS(4537), + [anon_sym_PIPE] = ACTIONS(4535), + [anon_sym_CARET] = ACTIONS(4537), + [anon_sym_AMP] = ACTIONS(4535), + [anon_sym_EQ_EQ] = ACTIONS(4537), + [anon_sym_BANG_EQ] = ACTIONS(4537), + [anon_sym_GT] = ACTIONS(4535), + [anon_sym_GT_EQ] = ACTIONS(4537), + [anon_sym_LT_EQ] = ACTIONS(4535), + [anon_sym_LT] = ACTIONS(4535), + [anon_sym_LT_LT] = ACTIONS(4537), + [anon_sym_GT_GT] = ACTIONS(4537), + [anon_sym_SEMI] = ACTIONS(4537), + [anon_sym_extern] = ACTIONS(4535), + [anon_sym___attribute__] = ACTIONS(4535), + [anon_sym_COLON_COLON] = ACTIONS(4537), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4537), + [anon_sym___declspec] = ACTIONS(4535), + [anon_sym___based] = ACTIONS(4535), + [anon_sym_LBRACE] = ACTIONS(4537), + [anon_sym_RBRACE] = ACTIONS(4537), + [anon_sym_LBRACK] = ACTIONS(4535), + [anon_sym_EQ] = ACTIONS(4535), + [anon_sym_static] = ACTIONS(4535), + [anon_sym_register] = ACTIONS(4535), + [anon_sym_inline] = ACTIONS(4535), + [anon_sym_thread_local] = ACTIONS(4535), + [anon_sym_const] = ACTIONS(4535), + [anon_sym_constexpr] = ACTIONS(4535), + [anon_sym_volatile] = ACTIONS(4535), + [anon_sym_restrict] = ACTIONS(4535), + [anon_sym___restrict__] = ACTIONS(4535), + [anon_sym__Atomic] = ACTIONS(4535), + [anon_sym__Noreturn] = ACTIONS(4535), + [anon_sym_noreturn] = ACTIONS(4535), + [anon_sym_mutable] = ACTIONS(4535), + [anon_sym_constinit] = ACTIONS(4535), + [anon_sym_consteval] = ACTIONS(4535), + [anon_sym_COLON] = ACTIONS(4535), + [anon_sym_QMARK] = ACTIONS(4537), + [anon_sym_LT_EQ_GT] = ACTIONS(4537), + [anon_sym_or] = ACTIONS(4535), + [anon_sym_and] = ACTIONS(4535), + [anon_sym_bitor] = ACTIONS(4535), + [anon_sym_xor] = ACTIONS(4535), + [anon_sym_bitand] = ACTIONS(4535), + [anon_sym_not_eq] = ACTIONS(4535), + [anon_sym_DASH_DASH] = ACTIONS(4537), + [anon_sym_PLUS_PLUS] = ACTIONS(4537), + [anon_sym_DOT] = ACTIONS(4535), + [anon_sym_DASH_GT] = ACTIONS(4537), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4535), + [anon_sym_decltype] = ACTIONS(4535), + [anon_sym_final] = ACTIONS(4535), + [anon_sym_override] = ACTIONS(4535), + [anon_sym_virtual] = ACTIONS(4535), + [anon_sym_template] = ACTIONS(4535), + [anon_sym_operator] = ACTIONS(4535), + [anon_sym_try] = ACTIONS(4535), + [anon_sym_requires] = ACTIONS(4535), + }, + [2132] = { + [sym_identifier] = ACTIONS(4566), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4568), + [anon_sym_COMMA] = ACTIONS(4568), + [anon_sym_RPAREN] = ACTIONS(4568), + [anon_sym_LPAREN2] = ACTIONS(4568), + [anon_sym_TILDE] = ACTIONS(4568), + [anon_sym_DASH] = ACTIONS(4566), + [anon_sym_PLUS] = ACTIONS(4566), + [anon_sym_STAR] = ACTIONS(4568), + [anon_sym_SLASH] = ACTIONS(4566), + [anon_sym_PERCENT] = ACTIONS(4568), + [anon_sym_PIPE_PIPE] = ACTIONS(4568), + [anon_sym_AMP_AMP] = ACTIONS(4568), + [anon_sym_PIPE] = ACTIONS(4566), + [anon_sym_CARET] = ACTIONS(4568), + [anon_sym_AMP] = ACTIONS(4566), + [anon_sym_EQ_EQ] = ACTIONS(4568), + [anon_sym_BANG_EQ] = ACTIONS(4568), + [anon_sym_GT] = ACTIONS(4566), + [anon_sym_GT_EQ] = ACTIONS(4568), + [anon_sym_LT_EQ] = ACTIONS(4566), + [anon_sym_LT] = ACTIONS(4566), + [anon_sym_LT_LT] = ACTIONS(4568), + [anon_sym_GT_GT] = ACTIONS(4568), + [anon_sym_SEMI] = ACTIONS(4568), + [anon_sym_extern] = ACTIONS(4566), + [anon_sym___attribute__] = ACTIONS(4566), + [anon_sym_COLON_COLON] = ACTIONS(4568), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4568), + [anon_sym___declspec] = ACTIONS(4566), + [anon_sym___based] = ACTIONS(4566), + [anon_sym_LBRACE] = ACTIONS(4568), + [anon_sym_RBRACE] = ACTIONS(4568), + [anon_sym_LBRACK] = ACTIONS(4566), + [anon_sym_EQ] = ACTIONS(4566), + [anon_sym_static] = ACTIONS(4566), + [anon_sym_register] = ACTIONS(4566), + [anon_sym_inline] = ACTIONS(4566), + [anon_sym_thread_local] = ACTIONS(4566), + [anon_sym_const] = ACTIONS(4566), + [anon_sym_constexpr] = ACTIONS(4566), + [anon_sym_volatile] = ACTIONS(4566), + [anon_sym_restrict] = ACTIONS(4566), + [anon_sym___restrict__] = ACTIONS(4566), + [anon_sym__Atomic] = ACTIONS(4566), + [anon_sym__Noreturn] = ACTIONS(4566), + [anon_sym_noreturn] = ACTIONS(4566), + [anon_sym_mutable] = ACTIONS(4566), + [anon_sym_constinit] = ACTIONS(4566), + [anon_sym_consteval] = ACTIONS(4566), + [anon_sym_COLON] = ACTIONS(4566), + [anon_sym_QMARK] = ACTIONS(4568), + [anon_sym_LT_EQ_GT] = ACTIONS(4568), + [anon_sym_or] = ACTIONS(4566), + [anon_sym_and] = ACTIONS(4566), + [anon_sym_bitor] = ACTIONS(4566), + [anon_sym_xor] = ACTIONS(4566), + [anon_sym_bitand] = ACTIONS(4566), + [anon_sym_not_eq] = ACTIONS(4566), + [anon_sym_DASH_DASH] = ACTIONS(4568), + [anon_sym_PLUS_PLUS] = ACTIONS(4568), + [anon_sym_DOT] = ACTIONS(4566), + [anon_sym_DASH_GT] = ACTIONS(4568), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4566), + [anon_sym_decltype] = ACTIONS(4566), + [anon_sym_final] = ACTIONS(4566), + [anon_sym_override] = ACTIONS(4566), + [anon_sym_virtual] = ACTIONS(4566), + [anon_sym_template] = ACTIONS(4566), + [anon_sym_operator] = ACTIONS(4566), + [anon_sym_try] = ACTIONS(4566), + [anon_sym_requires] = ACTIONS(4566), + }, + [2133] = { + [sym_identifier] = ACTIONS(4523), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4525), + [anon_sym_COMMA] = ACTIONS(4525), + [anon_sym_RPAREN] = ACTIONS(4525), + [anon_sym_LPAREN2] = ACTIONS(4525), + [anon_sym_TILDE] = ACTIONS(4525), + [anon_sym_DASH] = ACTIONS(4523), + [anon_sym_PLUS] = ACTIONS(4523), + [anon_sym_STAR] = ACTIONS(4525), + [anon_sym_SLASH] = ACTIONS(4523), + [anon_sym_PERCENT] = ACTIONS(4525), + [anon_sym_PIPE_PIPE] = ACTIONS(4525), + [anon_sym_AMP_AMP] = ACTIONS(4525), + [anon_sym_PIPE] = ACTIONS(4523), + [anon_sym_CARET] = ACTIONS(4525), + [anon_sym_AMP] = ACTIONS(4523), + [anon_sym_EQ_EQ] = ACTIONS(4525), + [anon_sym_BANG_EQ] = ACTIONS(4525), + [anon_sym_GT] = ACTIONS(4523), + [anon_sym_GT_EQ] = ACTIONS(4525), + [anon_sym_LT_EQ] = ACTIONS(4523), + [anon_sym_LT] = ACTIONS(4523), + [anon_sym_LT_LT] = ACTIONS(4525), + [anon_sym_GT_GT] = ACTIONS(4525), + [anon_sym_SEMI] = ACTIONS(4525), + [anon_sym_extern] = ACTIONS(4523), + [anon_sym___attribute__] = ACTIONS(4523), + [anon_sym_COLON_COLON] = ACTIONS(4525), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4525), + [anon_sym___declspec] = ACTIONS(4523), + [anon_sym___based] = ACTIONS(4523), + [anon_sym_LBRACE] = ACTIONS(4525), + [anon_sym_RBRACE] = ACTIONS(4525), + [anon_sym_LBRACK] = ACTIONS(4523), + [anon_sym_EQ] = ACTIONS(4523), + [anon_sym_static] = ACTIONS(4523), + [anon_sym_register] = ACTIONS(4523), + [anon_sym_inline] = ACTIONS(4523), + [anon_sym_thread_local] = ACTIONS(4523), + [anon_sym_const] = ACTIONS(4523), + [anon_sym_constexpr] = ACTIONS(4523), + [anon_sym_volatile] = ACTIONS(4523), + [anon_sym_restrict] = ACTIONS(4523), + [anon_sym___restrict__] = ACTIONS(4523), + [anon_sym__Atomic] = ACTIONS(4523), + [anon_sym__Noreturn] = ACTIONS(4523), + [anon_sym_noreturn] = ACTIONS(4523), + [anon_sym_mutable] = ACTIONS(4523), + [anon_sym_constinit] = ACTIONS(4523), + [anon_sym_consteval] = ACTIONS(4523), + [anon_sym_COLON] = ACTIONS(4523), + [anon_sym_QMARK] = ACTIONS(4525), + [anon_sym_LT_EQ_GT] = ACTIONS(4525), + [anon_sym_or] = ACTIONS(4523), + [anon_sym_and] = ACTIONS(4523), + [anon_sym_bitor] = ACTIONS(4523), + [anon_sym_xor] = ACTIONS(4523), + [anon_sym_bitand] = ACTIONS(4523), + [anon_sym_not_eq] = ACTIONS(4523), + [anon_sym_DASH_DASH] = ACTIONS(4525), + [anon_sym_PLUS_PLUS] = ACTIONS(4525), + [anon_sym_DOT] = ACTIONS(4523), + [anon_sym_DASH_GT] = ACTIONS(4525), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4523), + [anon_sym_decltype] = ACTIONS(4523), + [anon_sym_final] = ACTIONS(4523), + [anon_sym_override] = ACTIONS(4523), + [anon_sym_virtual] = ACTIONS(4523), + [anon_sym_template] = ACTIONS(4523), + [anon_sym_operator] = ACTIONS(4523), + [anon_sym_try] = ACTIONS(4523), + [anon_sym_requires] = ACTIONS(4523), + }, + [2134] = { + [sym_identifier] = ACTIONS(4517), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4519), + [anon_sym_COMMA] = ACTIONS(4519), + [anon_sym_RPAREN] = ACTIONS(4519), + [anon_sym_LPAREN2] = ACTIONS(4519), + [anon_sym_TILDE] = ACTIONS(4519), + [anon_sym_DASH] = ACTIONS(4517), + [anon_sym_PLUS] = ACTIONS(4517), + [anon_sym_STAR] = ACTIONS(4519), + [anon_sym_SLASH] = ACTIONS(4517), + [anon_sym_PERCENT] = ACTIONS(4519), + [anon_sym_PIPE_PIPE] = ACTIONS(4519), + [anon_sym_AMP_AMP] = ACTIONS(4519), + [anon_sym_PIPE] = ACTIONS(4517), + [anon_sym_CARET] = ACTIONS(4519), + [anon_sym_AMP] = ACTIONS(4517), + [anon_sym_EQ_EQ] = ACTIONS(4519), + [anon_sym_BANG_EQ] = ACTIONS(4519), + [anon_sym_GT] = ACTIONS(4517), + [anon_sym_GT_EQ] = ACTIONS(4519), + [anon_sym_LT_EQ] = ACTIONS(4517), + [anon_sym_LT] = ACTIONS(4517), + [anon_sym_LT_LT] = ACTIONS(4519), + [anon_sym_GT_GT] = ACTIONS(4519), + [anon_sym_SEMI] = ACTIONS(4519), + [anon_sym_extern] = ACTIONS(4517), + [anon_sym___attribute__] = ACTIONS(4517), + [anon_sym_COLON_COLON] = ACTIONS(4519), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4519), + [anon_sym___declspec] = ACTIONS(4517), + [anon_sym___based] = ACTIONS(4517), + [anon_sym_LBRACE] = ACTIONS(4519), + [anon_sym_RBRACE] = ACTIONS(4519), + [anon_sym_LBRACK] = ACTIONS(4517), + [anon_sym_EQ] = ACTIONS(4517), + [anon_sym_static] = ACTIONS(4517), + [anon_sym_register] = ACTIONS(4517), + [anon_sym_inline] = ACTIONS(4517), + [anon_sym_thread_local] = ACTIONS(4517), + [anon_sym_const] = ACTIONS(4517), + [anon_sym_constexpr] = ACTIONS(4517), + [anon_sym_volatile] = ACTIONS(4517), + [anon_sym_restrict] = ACTIONS(4517), + [anon_sym___restrict__] = ACTIONS(4517), + [anon_sym__Atomic] = ACTIONS(4517), + [anon_sym__Noreturn] = ACTIONS(4517), + [anon_sym_noreturn] = ACTIONS(4517), + [anon_sym_mutable] = ACTIONS(4517), + [anon_sym_constinit] = ACTIONS(4517), + [anon_sym_consteval] = ACTIONS(4517), + [anon_sym_COLON] = ACTIONS(4517), + [anon_sym_QMARK] = ACTIONS(4519), + [anon_sym_LT_EQ_GT] = ACTIONS(4519), + [anon_sym_or] = ACTIONS(4517), + [anon_sym_and] = ACTIONS(4517), + [anon_sym_bitor] = ACTIONS(4517), + [anon_sym_xor] = ACTIONS(4517), + [anon_sym_bitand] = ACTIONS(4517), + [anon_sym_not_eq] = ACTIONS(4517), + [anon_sym_DASH_DASH] = ACTIONS(4519), + [anon_sym_PLUS_PLUS] = ACTIONS(4519), + [anon_sym_DOT] = ACTIONS(4517), + [anon_sym_DASH_GT] = ACTIONS(4519), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4517), + [anon_sym_decltype] = ACTIONS(4517), + [anon_sym_final] = ACTIONS(4517), + [anon_sym_override] = ACTIONS(4517), + [anon_sym_virtual] = ACTIONS(4517), + [anon_sym_template] = ACTIONS(4517), + [anon_sym_operator] = ACTIONS(4517), + [anon_sym_try] = ACTIONS(4517), + [anon_sym_requires] = ACTIONS(4517), + }, + [2135] = { + [sym_identifier] = ACTIONS(4531), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4533), + [anon_sym_COMMA] = ACTIONS(4533), + [anon_sym_RPAREN] = ACTIONS(4533), + [anon_sym_LPAREN2] = ACTIONS(4533), + [anon_sym_TILDE] = ACTIONS(4533), + [anon_sym_DASH] = ACTIONS(4531), + [anon_sym_PLUS] = ACTIONS(4531), + [anon_sym_STAR] = ACTIONS(4533), + [anon_sym_SLASH] = ACTIONS(4531), + [anon_sym_PERCENT] = ACTIONS(4533), + [anon_sym_PIPE_PIPE] = ACTIONS(4533), + [anon_sym_AMP_AMP] = ACTIONS(4533), + [anon_sym_PIPE] = ACTIONS(4531), + [anon_sym_CARET] = ACTIONS(4533), + [anon_sym_AMP] = ACTIONS(4531), + [anon_sym_EQ_EQ] = ACTIONS(4533), + [anon_sym_BANG_EQ] = ACTIONS(4533), + [anon_sym_GT] = ACTIONS(4531), + [anon_sym_GT_EQ] = ACTIONS(4533), + [anon_sym_LT_EQ] = ACTIONS(4531), + [anon_sym_LT] = ACTIONS(4531), + [anon_sym_LT_LT] = ACTIONS(4533), + [anon_sym_GT_GT] = ACTIONS(4533), + [anon_sym_SEMI] = ACTIONS(4533), + [anon_sym_extern] = ACTIONS(4531), + [anon_sym___attribute__] = ACTIONS(4531), + [anon_sym_COLON_COLON] = ACTIONS(4533), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4533), + [anon_sym___declspec] = ACTIONS(4531), + [anon_sym___based] = ACTIONS(4531), + [anon_sym_LBRACE] = ACTIONS(4533), + [anon_sym_RBRACE] = ACTIONS(4533), + [anon_sym_LBRACK] = ACTIONS(4531), + [anon_sym_EQ] = ACTIONS(4531), + [anon_sym_static] = ACTIONS(4531), + [anon_sym_register] = ACTIONS(4531), + [anon_sym_inline] = ACTIONS(4531), + [anon_sym_thread_local] = ACTIONS(4531), + [anon_sym_const] = ACTIONS(4531), + [anon_sym_constexpr] = ACTIONS(4531), + [anon_sym_volatile] = ACTIONS(4531), + [anon_sym_restrict] = ACTIONS(4531), + [anon_sym___restrict__] = ACTIONS(4531), + [anon_sym__Atomic] = ACTIONS(4531), + [anon_sym__Noreturn] = ACTIONS(4531), + [anon_sym_noreturn] = ACTIONS(4531), + [anon_sym_mutable] = ACTIONS(4531), + [anon_sym_constinit] = ACTIONS(4531), + [anon_sym_consteval] = ACTIONS(4531), + [anon_sym_COLON] = ACTIONS(4531), + [anon_sym_QMARK] = ACTIONS(4533), + [anon_sym_LT_EQ_GT] = ACTIONS(4533), + [anon_sym_or] = ACTIONS(4531), + [anon_sym_and] = ACTIONS(4531), + [anon_sym_bitor] = ACTIONS(4531), + [anon_sym_xor] = ACTIONS(4531), + [anon_sym_bitand] = ACTIONS(4531), + [anon_sym_not_eq] = ACTIONS(4531), + [anon_sym_DASH_DASH] = ACTIONS(4533), + [anon_sym_PLUS_PLUS] = ACTIONS(4533), + [anon_sym_DOT] = ACTIONS(4531), + [anon_sym_DASH_GT] = ACTIONS(4533), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4531), + [anon_sym_decltype] = ACTIONS(4531), + [anon_sym_final] = ACTIONS(4531), + [anon_sym_override] = ACTIONS(4531), + [anon_sym_virtual] = ACTIONS(4531), + [anon_sym_template] = ACTIONS(4531), + [anon_sym_operator] = ACTIONS(4531), + [anon_sym_try] = ACTIONS(4531), + [anon_sym_requires] = ACTIONS(4531), + }, + [2136] = { + [sym_identifier] = ACTIONS(4527), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4529), + [anon_sym_COMMA] = ACTIONS(4529), + [anon_sym_RPAREN] = ACTIONS(4529), + [anon_sym_LPAREN2] = ACTIONS(4529), + [anon_sym_TILDE] = ACTIONS(4529), + [anon_sym_DASH] = ACTIONS(4527), + [anon_sym_PLUS] = ACTIONS(4527), + [anon_sym_STAR] = ACTIONS(4529), + [anon_sym_SLASH] = ACTIONS(4527), + [anon_sym_PERCENT] = ACTIONS(4529), + [anon_sym_PIPE_PIPE] = ACTIONS(4529), + [anon_sym_AMP_AMP] = ACTIONS(4529), + [anon_sym_PIPE] = ACTIONS(4527), + [anon_sym_CARET] = ACTIONS(4529), + [anon_sym_AMP] = ACTIONS(4527), + [anon_sym_EQ_EQ] = ACTIONS(4529), + [anon_sym_BANG_EQ] = ACTIONS(4529), + [anon_sym_GT] = ACTIONS(4527), + [anon_sym_GT_EQ] = ACTIONS(4529), + [anon_sym_LT_EQ] = ACTIONS(4527), + [anon_sym_LT] = ACTIONS(4527), + [anon_sym_LT_LT] = ACTIONS(4529), + [anon_sym_GT_GT] = ACTIONS(4529), + [anon_sym_SEMI] = ACTIONS(4529), + [anon_sym_extern] = ACTIONS(4527), + [anon_sym___attribute__] = ACTIONS(4527), + [anon_sym_COLON_COLON] = ACTIONS(4529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4529), + [anon_sym___declspec] = ACTIONS(4527), + [anon_sym___based] = ACTIONS(4527), + [anon_sym_LBRACE] = ACTIONS(4529), + [anon_sym_RBRACE] = ACTIONS(4529), + [anon_sym_LBRACK] = ACTIONS(4527), + [anon_sym_EQ] = ACTIONS(4527), + [anon_sym_static] = ACTIONS(4527), + [anon_sym_register] = ACTIONS(4527), + [anon_sym_inline] = ACTIONS(4527), + [anon_sym_thread_local] = ACTIONS(4527), + [anon_sym_const] = ACTIONS(4527), + [anon_sym_constexpr] = ACTIONS(4527), + [anon_sym_volatile] = ACTIONS(4527), + [anon_sym_restrict] = ACTIONS(4527), + [anon_sym___restrict__] = ACTIONS(4527), + [anon_sym__Atomic] = ACTIONS(4527), + [anon_sym__Noreturn] = ACTIONS(4527), + [anon_sym_noreturn] = ACTIONS(4527), + [anon_sym_mutable] = ACTIONS(4527), + [anon_sym_constinit] = ACTIONS(4527), + [anon_sym_consteval] = ACTIONS(4527), + [anon_sym_COLON] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4529), + [anon_sym_LT_EQ_GT] = ACTIONS(4529), + [anon_sym_or] = ACTIONS(4527), + [anon_sym_and] = ACTIONS(4527), + [anon_sym_bitor] = ACTIONS(4527), + [anon_sym_xor] = ACTIONS(4527), + [anon_sym_bitand] = ACTIONS(4527), + [anon_sym_not_eq] = ACTIONS(4527), + [anon_sym_DASH_DASH] = ACTIONS(4529), + [anon_sym_PLUS_PLUS] = ACTIONS(4529), + [anon_sym_DOT] = ACTIONS(4527), + [anon_sym_DASH_GT] = ACTIONS(4529), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4527), + [anon_sym_decltype] = ACTIONS(4527), + [anon_sym_final] = ACTIONS(4527), + [anon_sym_override] = ACTIONS(4527), + [anon_sym_virtual] = ACTIONS(4527), + [anon_sym_template] = ACTIONS(4527), + [anon_sym_operator] = ACTIONS(4527), + [anon_sym_try] = ACTIONS(4527), + [anon_sym_requires] = ACTIONS(4527), + }, + [2137] = { + [sym_identifier] = ACTIONS(4546), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4548), + [anon_sym_COMMA] = ACTIONS(4548), + [anon_sym_RPAREN] = ACTIONS(4548), + [anon_sym_LPAREN2] = ACTIONS(4548), + [anon_sym_TILDE] = ACTIONS(4548), + [anon_sym_DASH] = ACTIONS(4546), + [anon_sym_PLUS] = ACTIONS(4546), + [anon_sym_STAR] = ACTIONS(4548), + [anon_sym_SLASH] = ACTIONS(4546), + [anon_sym_PERCENT] = ACTIONS(4548), + [anon_sym_PIPE_PIPE] = ACTIONS(4548), + [anon_sym_AMP_AMP] = ACTIONS(4548), + [anon_sym_PIPE] = ACTIONS(4546), + [anon_sym_CARET] = ACTIONS(4548), + [anon_sym_AMP] = ACTIONS(4546), + [anon_sym_EQ_EQ] = ACTIONS(4548), + [anon_sym_BANG_EQ] = ACTIONS(4548), + [anon_sym_GT] = ACTIONS(4546), + [anon_sym_GT_EQ] = ACTIONS(4548), + [anon_sym_LT_EQ] = ACTIONS(4546), + [anon_sym_LT] = ACTIONS(4546), + [anon_sym_LT_LT] = ACTIONS(4548), + [anon_sym_GT_GT] = ACTIONS(4548), + [anon_sym_SEMI] = ACTIONS(4548), + [anon_sym_extern] = ACTIONS(4546), + [anon_sym___attribute__] = ACTIONS(4546), + [anon_sym_COLON_COLON] = ACTIONS(4548), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4548), + [anon_sym___declspec] = ACTIONS(4546), + [anon_sym___based] = ACTIONS(4546), + [anon_sym_LBRACE] = ACTIONS(4548), + [anon_sym_RBRACE] = ACTIONS(4548), + [anon_sym_LBRACK] = ACTIONS(4546), + [anon_sym_EQ] = ACTIONS(4546), + [anon_sym_static] = ACTIONS(4546), + [anon_sym_register] = ACTIONS(4546), + [anon_sym_inline] = ACTIONS(4546), + [anon_sym_thread_local] = ACTIONS(4546), + [anon_sym_const] = ACTIONS(4546), + [anon_sym_constexpr] = ACTIONS(4546), + [anon_sym_volatile] = ACTIONS(4546), + [anon_sym_restrict] = ACTIONS(4546), + [anon_sym___restrict__] = ACTIONS(4546), + [anon_sym__Atomic] = ACTIONS(4546), + [anon_sym__Noreturn] = ACTIONS(4546), + [anon_sym_noreturn] = ACTIONS(4546), + [anon_sym_mutable] = ACTIONS(4546), + [anon_sym_constinit] = ACTIONS(4546), + [anon_sym_consteval] = ACTIONS(4546), + [anon_sym_COLON] = ACTIONS(4546), + [anon_sym_QMARK] = ACTIONS(4548), + [anon_sym_LT_EQ_GT] = ACTIONS(4548), + [anon_sym_or] = ACTIONS(4546), + [anon_sym_and] = ACTIONS(4546), + [anon_sym_bitor] = ACTIONS(4546), + [anon_sym_xor] = ACTIONS(4546), + [anon_sym_bitand] = ACTIONS(4546), + [anon_sym_not_eq] = ACTIONS(4546), + [anon_sym_DASH_DASH] = ACTIONS(4548), + [anon_sym_PLUS_PLUS] = ACTIONS(4548), + [anon_sym_DOT] = ACTIONS(4546), + [anon_sym_DASH_GT] = ACTIONS(4548), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4546), + [anon_sym_decltype] = ACTIONS(4546), + [anon_sym_final] = ACTIONS(4546), + [anon_sym_override] = ACTIONS(4546), + [anon_sym_virtual] = ACTIONS(4546), + [anon_sym_template] = ACTIONS(4546), + [anon_sym_operator] = ACTIONS(4546), + [anon_sym_try] = ACTIONS(4546), + [anon_sym_requires] = ACTIONS(4546), + }, + [2138] = { + [sym_function_definition] = STATE(793), + [sym_declaration] = STATE(793), + [sym__declaration_modifiers] = STATE(2514), + [sym__declaration_specifiers] = STATE(4664), + [sym_attribute_specifier] = STATE(2514), + [sym_attribute_declaration] = STATE(2514), + [sym_ms_declspec_modifier] = STATE(2514), + [sym_ms_call_modifier] = STATE(2402), + [sym_declaration_list] = STATE(793), + [sym_storage_class_specifier] = STATE(2514), + [sym_type_qualifier] = STATE(2514), + [sym__type_specifier] = STATE(3633), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym_virtual] = STATE(2514), + [sym_dependent_type] = STATE(3723), + [sym_template_type] = STATE(3680), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5779), + [sym_qualified_type_identifier] = STATE(3694), + [aux_sym__declaration_specifiers_repeat1] = STATE(2514), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [sym_identifier] = ACTIONS(3657), + [anon_sym_extern] = ACTIONS(53), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(3663), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1813), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(47), + [anon_sym___clrcall] = ACTIONS(47), + [anon_sym___stdcall] = ACTIONS(47), + [anon_sym___fastcall] = ACTIONS(47), + [anon_sym___thiscall] = ACTIONS(47), + [anon_sym___vectorcall] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(4584), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(53), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(3667), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(113), + [anon_sym_decltype] = ACTIONS(115), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_typename] = ACTIONS(121), + [anon_sym_template] = ACTIONS(1329), + }, + [2139] = { + [sym_function_definition] = STATE(1296), + [sym_declaration] = STATE(1296), + [sym__declaration_modifiers] = STATE(2514), + [sym__declaration_specifiers] = STATE(4618), + [sym_attribute_specifier] = STATE(2514), + [sym_attribute_declaration] = STATE(2514), + [sym_ms_declspec_modifier] = STATE(2514), + [sym_ms_call_modifier] = STATE(2462), + [sym_declaration_list] = STATE(1296), + [sym_storage_class_specifier] = STATE(2514), + [sym_type_qualifier] = STATE(2514), + [sym__type_specifier] = STATE(3633), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym_virtual] = STATE(2514), + [sym_dependent_type] = STATE(3723), + [sym_template_type] = STATE(3680), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5779), + [sym_qualified_type_identifier] = STATE(3694), + [aux_sym__declaration_specifiers_repeat1] = STATE(2514), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [sym_identifier] = ACTIONS(3657), + [anon_sym_extern] = ACTIONS(53), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(3663), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1813), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(47), + [anon_sym___clrcall] = ACTIONS(47), + [anon_sym___stdcall] = ACTIONS(47), + [anon_sym___fastcall] = ACTIONS(47), + [anon_sym___thiscall] = ACTIONS(47), + [anon_sym___vectorcall] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(4586), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(53), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(3667), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(113), + [anon_sym_decltype] = ACTIONS(115), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_typename] = ACTIONS(121), + [anon_sym_template] = ACTIONS(1329), + }, + [2140] = { + [sym_function_definition] = STATE(1326), + [sym_declaration] = STATE(1326), + [sym__declaration_modifiers] = STATE(2514), + [sym__declaration_specifiers] = STATE(4613), + [sym_attribute_specifier] = STATE(2514), + [sym_attribute_declaration] = STATE(2514), + [sym_ms_declspec_modifier] = STATE(2514), + [sym_ms_call_modifier] = STATE(2381), + [sym_declaration_list] = STATE(1326), + [sym_storage_class_specifier] = STATE(2514), + [sym_type_qualifier] = STATE(2514), + [sym__type_specifier] = STATE(3633), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym_virtual] = STATE(2514), + [sym_dependent_type] = STATE(3723), + [sym_template_type] = STATE(3680), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5779), + [sym_qualified_type_identifier] = STATE(3694), + [aux_sym__declaration_specifiers_repeat1] = STATE(2514), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [sym_identifier] = ACTIONS(3657), + [anon_sym_extern] = ACTIONS(53), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(3663), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1813), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(47), + [anon_sym___clrcall] = ACTIONS(47), + [anon_sym___stdcall] = ACTIONS(47), + [anon_sym___fastcall] = ACTIONS(47), + [anon_sym___thiscall] = ACTIONS(47), + [anon_sym___vectorcall] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(4588), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(53), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(3667), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(113), + [anon_sym_decltype] = ACTIONS(115), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_typename] = ACTIONS(121), + [anon_sym_template] = ACTIONS(1329), + }, + [2141] = { + [sym_function_definition] = STATE(549), + [sym_declaration] = STATE(549), + [sym__declaration_modifiers] = STATE(2514), + [sym__declaration_specifiers] = STATE(4661), + [sym_attribute_specifier] = STATE(2514), + [sym_attribute_declaration] = STATE(2514), + [sym_ms_declspec_modifier] = STATE(2514), + [sym_ms_call_modifier] = STATE(2439), + [sym_declaration_list] = STATE(549), + [sym_storage_class_specifier] = STATE(2514), + [sym_type_qualifier] = STATE(2514), + [sym__type_specifier] = STATE(3633), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym_virtual] = STATE(2514), + [sym_dependent_type] = STATE(3723), + [sym_template_type] = STATE(3680), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5779), + [sym_qualified_type_identifier] = STATE(3694), + [aux_sym__declaration_specifiers_repeat1] = STATE(2514), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [sym_identifier] = ACTIONS(3657), + [anon_sym_extern] = ACTIONS(53), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(3663), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1813), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(47), + [anon_sym___clrcall] = ACTIONS(47), + [anon_sym___stdcall] = ACTIONS(47), + [anon_sym___fastcall] = ACTIONS(47), + [anon_sym___thiscall] = ACTIONS(47), + [anon_sym___vectorcall] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(4590), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(53), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(3667), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(113), + [anon_sym_decltype] = ACTIONS(115), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_typename] = ACTIONS(121), + [anon_sym_template] = ACTIONS(1329), + }, + [2142] = { + [sym_function_definition] = STATE(1276), + [sym_declaration] = STATE(1276), + [sym__declaration_modifiers] = STATE(2514), + [sym__declaration_specifiers] = STATE(4656), + [sym_attribute_specifier] = STATE(2514), + [sym_attribute_declaration] = STATE(2514), + [sym_ms_declspec_modifier] = STATE(2514), + [sym_ms_call_modifier] = STATE(2383), + [sym_declaration_list] = STATE(1276), + [sym_storage_class_specifier] = STATE(2514), + [sym_type_qualifier] = STATE(2514), + [sym__type_specifier] = STATE(3633), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym_virtual] = STATE(2514), + [sym_dependent_type] = STATE(3723), + [sym_template_type] = STATE(3680), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5779), + [sym_qualified_type_identifier] = STATE(3694), + [aux_sym__declaration_specifiers_repeat1] = STATE(2514), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [sym_identifier] = ACTIONS(3657), + [anon_sym_extern] = ACTIONS(53), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(3663), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1813), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(47), + [anon_sym___clrcall] = ACTIONS(47), + [anon_sym___stdcall] = ACTIONS(47), + [anon_sym___fastcall] = ACTIONS(47), + [anon_sym___thiscall] = ACTIONS(47), + [anon_sym___vectorcall] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(4592), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(53), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(3667), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(113), + [anon_sym_decltype] = ACTIONS(115), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_typename] = ACTIONS(121), + [anon_sym_template] = ACTIONS(1329), + }, + [2143] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(4568), + [anon_sym_COMMA] = ACTIONS(4568), + [anon_sym_RPAREN] = ACTIONS(4568), + [anon_sym_LPAREN2] = ACTIONS(4568), + [anon_sym_DASH] = ACTIONS(4566), + [anon_sym_PLUS] = ACTIONS(4566), + [anon_sym_STAR] = ACTIONS(4566), + [anon_sym_SLASH] = ACTIONS(4566), + [anon_sym_PERCENT] = ACTIONS(4566), + [anon_sym_PIPE_PIPE] = ACTIONS(4568), + [anon_sym_AMP_AMP] = ACTIONS(4568), + [anon_sym_PIPE] = ACTIONS(4566), + [anon_sym_CARET] = ACTIONS(4566), + [anon_sym_AMP] = ACTIONS(4566), + [anon_sym_EQ_EQ] = ACTIONS(4568), + [anon_sym_BANG_EQ] = ACTIONS(4568), + [anon_sym_GT] = ACTIONS(4566), + [anon_sym_GT_EQ] = ACTIONS(4568), + [anon_sym_LT_EQ] = ACTIONS(4566), + [anon_sym_LT] = ACTIONS(4566), + [anon_sym_LT_LT] = ACTIONS(4566), + [anon_sym_GT_GT] = ACTIONS(4566), + [anon_sym_COLON_COLON] = ACTIONS(4568), + [anon_sym_LBRACE] = ACTIONS(4568), + [anon_sym_LBRACK] = ACTIONS(4568), + [anon_sym_EQ] = ACTIONS(4566), + [anon_sym_const] = ACTIONS(4566), + [anon_sym_constexpr] = ACTIONS(4568), + [anon_sym_volatile] = ACTIONS(4568), + [anon_sym_restrict] = ACTIONS(4568), + [anon_sym___restrict__] = ACTIONS(4568), + [anon_sym__Atomic] = ACTIONS(4568), + [anon_sym__Noreturn] = ACTIONS(4568), + [anon_sym_noreturn] = ACTIONS(4568), + [anon_sym_mutable] = ACTIONS(4568), + [anon_sym_constinit] = ACTIONS(4568), + [anon_sym_consteval] = ACTIONS(4568), + [anon_sym_COLON] = ACTIONS(4566), + [anon_sym_QMARK] = ACTIONS(4568), + [anon_sym_STAR_EQ] = ACTIONS(4568), + [anon_sym_SLASH_EQ] = ACTIONS(4568), + [anon_sym_PERCENT_EQ] = ACTIONS(4568), + [anon_sym_PLUS_EQ] = ACTIONS(4568), + [anon_sym_DASH_EQ] = ACTIONS(4568), + [anon_sym_LT_LT_EQ] = ACTIONS(4568), + [anon_sym_GT_GT_EQ] = ACTIONS(4568), + [anon_sym_AMP_EQ] = ACTIONS(4568), + [anon_sym_CARET_EQ] = ACTIONS(4568), + [anon_sym_PIPE_EQ] = ACTIONS(4568), + [anon_sym_and_eq] = ACTIONS(4568), + [anon_sym_or_eq] = ACTIONS(4568), + [anon_sym_xor_eq] = ACTIONS(4568), + [anon_sym_LT_EQ_GT] = ACTIONS(4568), + [anon_sym_or] = ACTIONS(4566), + [anon_sym_and] = ACTIONS(4566), + [anon_sym_bitor] = ACTIONS(4568), + [anon_sym_xor] = ACTIONS(4566), + [anon_sym_bitand] = ACTIONS(4568), + [anon_sym_not_eq] = ACTIONS(4568), + [anon_sym_DASH_DASH] = ACTIONS(4568), + [anon_sym_PLUS_PLUS] = ACTIONS(4568), + [anon_sym_DOT] = ACTIONS(4566), + [anon_sym_DASH_GT] = ACTIONS(4566), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4568), + [anon_sym_decltype] = ACTIONS(4568), + [anon_sym_final] = ACTIONS(4568), + [anon_sym_override] = ACTIONS(4568), + [anon_sym_DOT_STAR] = ACTIONS(4568), + [anon_sym_DASH_GT_STAR] = ACTIONS(4568), + }, + [2144] = { + [sym_function_definition] = STATE(2672), + [sym_declaration] = STATE(2672), + [sym__declaration_modifiers] = STATE(2514), + [sym__declaration_specifiers] = STATE(4658), + [sym_attribute_specifier] = STATE(2514), + [sym_attribute_declaration] = STATE(2514), + [sym_ms_declspec_modifier] = STATE(2514), + [sym_ms_call_modifier] = STATE(2454), + [sym_storage_class_specifier] = STATE(2514), + [sym_type_qualifier] = STATE(2514), + [sym__type_specifier] = STATE(3633), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym__class_name] = STATE(7471), + [sym_virtual] = STATE(2514), + [sym_dependent_type] = STATE(3723), + [sym_template_type] = STATE(4517), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5779), + [sym_qualified_type_identifier] = STATE(4508), + [aux_sym__declaration_specifiers_repeat1] = STATE(2514), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [sym_identifier] = ACTIONS(4594), + [anon_sym_extern] = ACTIONS(53), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(3663), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1813), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(47), + [anon_sym___clrcall] = ACTIONS(47), + [anon_sym___stdcall] = ACTIONS(47), + [anon_sym___fastcall] = ACTIONS(47), + [anon_sym___thiscall] = ACTIONS(47), + [anon_sym___vectorcall] = ACTIONS(47), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(53), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(3667), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(4596), + [anon_sym_struct] = ACTIONS(4598), + [anon_sym_union] = ACTIONS(4600), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(113), + [anon_sym_decltype] = ACTIONS(115), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_typename] = ACTIONS(121), + [anon_sym_template] = ACTIONS(1329), + }, + [2145] = { + [sym_function_definition] = STATE(2276), + [sym_declaration] = STATE(2276), + [sym__declaration_modifiers] = STATE(2514), + [sym__declaration_specifiers] = STATE(4607), + [sym_attribute_specifier] = STATE(2514), + [sym_attribute_declaration] = STATE(2514), + [sym_ms_declspec_modifier] = STATE(2514), + [sym_ms_call_modifier] = STATE(2434), + [sym_storage_class_specifier] = STATE(2514), + [sym_type_qualifier] = STATE(2514), + [sym__type_specifier] = STATE(3633), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym__class_name] = STATE(7026), + [sym_virtual] = STATE(2514), + [sym_dependent_type] = STATE(3723), + [sym_template_type] = STATE(4517), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5779), + [sym_qualified_type_identifier] = STATE(4508), + [aux_sym__declaration_specifiers_repeat1] = STATE(2514), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [sym_identifier] = ACTIONS(4594), + [anon_sym_extern] = ACTIONS(53), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(3663), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1813), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(47), + [anon_sym___clrcall] = ACTIONS(47), + [anon_sym___stdcall] = ACTIONS(47), + [anon_sym___fastcall] = ACTIONS(47), + [anon_sym___thiscall] = ACTIONS(47), + [anon_sym___vectorcall] = ACTIONS(47), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(53), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(3667), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(4602), + [anon_sym_struct] = ACTIONS(4604), + [anon_sym_union] = ACTIONS(4606), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(113), + [anon_sym_decltype] = ACTIONS(115), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_typename] = ACTIONS(121), + [anon_sym_template] = ACTIONS(1329), + }, + [2146] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(4525), + [anon_sym_COMMA] = ACTIONS(4525), + [anon_sym_RPAREN] = ACTIONS(4525), + [anon_sym_LPAREN2] = ACTIONS(4525), + [anon_sym_DASH] = ACTIONS(4523), + [anon_sym_PLUS] = ACTIONS(4523), + [anon_sym_STAR] = ACTIONS(4523), + [anon_sym_SLASH] = ACTIONS(4523), + [anon_sym_PERCENT] = ACTIONS(4523), + [anon_sym_PIPE_PIPE] = ACTIONS(4525), + [anon_sym_AMP_AMP] = ACTIONS(4525), + [anon_sym_PIPE] = ACTIONS(4523), + [anon_sym_CARET] = ACTIONS(4523), + [anon_sym_AMP] = ACTIONS(4523), + [anon_sym_EQ_EQ] = ACTIONS(4525), + [anon_sym_BANG_EQ] = ACTIONS(4525), + [anon_sym_GT] = ACTIONS(4523), + [anon_sym_GT_EQ] = ACTIONS(4525), + [anon_sym_LT_EQ] = ACTIONS(4523), + [anon_sym_LT] = ACTIONS(4523), + [anon_sym_LT_LT] = ACTIONS(4523), + [anon_sym_GT_GT] = ACTIONS(4523), + [anon_sym_COLON_COLON] = ACTIONS(4525), + [anon_sym_LBRACE] = ACTIONS(4525), + [anon_sym_LBRACK] = ACTIONS(4525), + [anon_sym_EQ] = ACTIONS(4523), + [anon_sym_const] = ACTIONS(4523), + [anon_sym_constexpr] = ACTIONS(4525), + [anon_sym_volatile] = ACTIONS(4525), + [anon_sym_restrict] = ACTIONS(4525), + [anon_sym___restrict__] = ACTIONS(4525), + [anon_sym__Atomic] = ACTIONS(4525), + [anon_sym__Noreturn] = ACTIONS(4525), + [anon_sym_noreturn] = ACTIONS(4525), + [anon_sym_mutable] = ACTIONS(4525), + [anon_sym_constinit] = ACTIONS(4525), + [anon_sym_consteval] = ACTIONS(4525), + [anon_sym_COLON] = ACTIONS(4523), + [anon_sym_QMARK] = ACTIONS(4525), + [anon_sym_STAR_EQ] = ACTIONS(4525), + [anon_sym_SLASH_EQ] = ACTIONS(4525), + [anon_sym_PERCENT_EQ] = ACTIONS(4525), + [anon_sym_PLUS_EQ] = ACTIONS(4525), + [anon_sym_DASH_EQ] = ACTIONS(4525), + [anon_sym_LT_LT_EQ] = ACTIONS(4525), + [anon_sym_GT_GT_EQ] = ACTIONS(4525), + [anon_sym_AMP_EQ] = ACTIONS(4525), + [anon_sym_CARET_EQ] = ACTIONS(4525), + [anon_sym_PIPE_EQ] = ACTIONS(4525), + [anon_sym_and_eq] = ACTIONS(4525), + [anon_sym_or_eq] = ACTIONS(4525), + [anon_sym_xor_eq] = ACTIONS(4525), + [anon_sym_LT_EQ_GT] = ACTIONS(4525), + [anon_sym_or] = ACTIONS(4523), + [anon_sym_and] = ACTIONS(4523), + [anon_sym_bitor] = ACTIONS(4525), + [anon_sym_xor] = ACTIONS(4523), + [anon_sym_bitand] = ACTIONS(4525), + [anon_sym_not_eq] = ACTIONS(4525), + [anon_sym_DASH_DASH] = ACTIONS(4525), + [anon_sym_PLUS_PLUS] = ACTIONS(4525), + [anon_sym_DOT] = ACTIONS(4523), + [anon_sym_DASH_GT] = ACTIONS(4523), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4525), + [anon_sym_decltype] = ACTIONS(4525), + [anon_sym_final] = ACTIONS(4525), + [anon_sym_override] = ACTIONS(4525), + [anon_sym_DOT_STAR] = ACTIONS(4525), + [anon_sym_DASH_GT_STAR] = ACTIONS(4525), + }, + [2147] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(4537), + [anon_sym_COMMA] = ACTIONS(4537), + [anon_sym_RPAREN] = ACTIONS(4537), + [anon_sym_LPAREN2] = ACTIONS(4537), + [anon_sym_DASH] = ACTIONS(4535), + [anon_sym_PLUS] = ACTIONS(4535), + [anon_sym_STAR] = ACTIONS(4535), + [anon_sym_SLASH] = ACTIONS(4535), + [anon_sym_PERCENT] = ACTIONS(4535), + [anon_sym_PIPE_PIPE] = ACTIONS(4537), + [anon_sym_AMP_AMP] = ACTIONS(4537), + [anon_sym_PIPE] = ACTIONS(4535), + [anon_sym_CARET] = ACTIONS(4535), + [anon_sym_AMP] = ACTIONS(4535), + [anon_sym_EQ_EQ] = ACTIONS(4537), + [anon_sym_BANG_EQ] = ACTIONS(4537), + [anon_sym_GT] = ACTIONS(4535), + [anon_sym_GT_EQ] = ACTIONS(4537), + [anon_sym_LT_EQ] = ACTIONS(4535), + [anon_sym_LT] = ACTIONS(4535), + [anon_sym_LT_LT] = ACTIONS(4535), + [anon_sym_GT_GT] = ACTIONS(4535), + [anon_sym_COLON_COLON] = ACTIONS(4537), + [anon_sym_LBRACE] = ACTIONS(4537), + [anon_sym_LBRACK] = ACTIONS(4537), + [anon_sym_EQ] = ACTIONS(4535), + [anon_sym_const] = ACTIONS(4535), + [anon_sym_constexpr] = ACTIONS(4537), + [anon_sym_volatile] = ACTIONS(4537), + [anon_sym_restrict] = ACTIONS(4537), + [anon_sym___restrict__] = ACTIONS(4537), + [anon_sym__Atomic] = ACTIONS(4537), + [anon_sym__Noreturn] = ACTIONS(4537), + [anon_sym_noreturn] = ACTIONS(4537), + [anon_sym_mutable] = ACTIONS(4537), + [anon_sym_constinit] = ACTIONS(4537), + [anon_sym_consteval] = ACTIONS(4537), + [anon_sym_COLON] = ACTIONS(4535), + [anon_sym_QMARK] = ACTIONS(4537), + [anon_sym_STAR_EQ] = ACTIONS(4537), + [anon_sym_SLASH_EQ] = ACTIONS(4537), + [anon_sym_PERCENT_EQ] = ACTIONS(4537), + [anon_sym_PLUS_EQ] = ACTIONS(4537), + [anon_sym_DASH_EQ] = ACTIONS(4537), + [anon_sym_LT_LT_EQ] = ACTIONS(4537), + [anon_sym_GT_GT_EQ] = ACTIONS(4537), + [anon_sym_AMP_EQ] = ACTIONS(4537), + [anon_sym_CARET_EQ] = ACTIONS(4537), + [anon_sym_PIPE_EQ] = ACTIONS(4537), + [anon_sym_and_eq] = ACTIONS(4537), + [anon_sym_or_eq] = ACTIONS(4537), + [anon_sym_xor_eq] = ACTIONS(4537), + [anon_sym_LT_EQ_GT] = ACTIONS(4537), + [anon_sym_or] = ACTIONS(4535), + [anon_sym_and] = ACTIONS(4535), + [anon_sym_bitor] = ACTIONS(4537), + [anon_sym_xor] = ACTIONS(4535), + [anon_sym_bitand] = ACTIONS(4537), + [anon_sym_not_eq] = ACTIONS(4537), + [anon_sym_DASH_DASH] = ACTIONS(4537), + [anon_sym_PLUS_PLUS] = ACTIONS(4537), + [anon_sym_DOT] = ACTIONS(4535), + [anon_sym_DASH_GT] = ACTIONS(4535), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4537), + [anon_sym_decltype] = ACTIONS(4537), + [anon_sym_final] = ACTIONS(4537), + [anon_sym_override] = ACTIONS(4537), + [anon_sym_DOT_STAR] = ACTIONS(4537), + [anon_sym_DASH_GT_STAR] = ACTIONS(4537), + }, + [2148] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(4519), + [anon_sym_COMMA] = ACTIONS(4519), + [anon_sym_RPAREN] = ACTIONS(4519), + [anon_sym_LPAREN2] = ACTIONS(4519), + [anon_sym_DASH] = ACTIONS(4517), + [anon_sym_PLUS] = ACTIONS(4517), + [anon_sym_STAR] = ACTIONS(4517), + [anon_sym_SLASH] = ACTIONS(4517), + [anon_sym_PERCENT] = ACTIONS(4517), + [anon_sym_PIPE_PIPE] = ACTIONS(4519), + [anon_sym_AMP_AMP] = ACTIONS(4519), + [anon_sym_PIPE] = ACTIONS(4517), + [anon_sym_CARET] = ACTIONS(4517), + [anon_sym_AMP] = ACTIONS(4517), + [anon_sym_EQ_EQ] = ACTIONS(4519), + [anon_sym_BANG_EQ] = ACTIONS(4519), + [anon_sym_GT] = ACTIONS(4517), + [anon_sym_GT_EQ] = ACTIONS(4519), + [anon_sym_LT_EQ] = ACTIONS(4517), + [anon_sym_LT] = ACTIONS(4517), + [anon_sym_LT_LT] = ACTIONS(4517), + [anon_sym_GT_GT] = ACTIONS(4517), + [anon_sym_COLON_COLON] = ACTIONS(4519), + [anon_sym_LBRACE] = ACTIONS(4519), + [anon_sym_LBRACK] = ACTIONS(4519), + [anon_sym_EQ] = ACTIONS(4517), + [anon_sym_const] = ACTIONS(4517), + [anon_sym_constexpr] = ACTIONS(4519), + [anon_sym_volatile] = ACTIONS(4519), + [anon_sym_restrict] = ACTIONS(4519), + [anon_sym___restrict__] = ACTIONS(4519), + [anon_sym__Atomic] = ACTIONS(4519), + [anon_sym__Noreturn] = ACTIONS(4519), + [anon_sym_noreturn] = ACTIONS(4519), + [anon_sym_mutable] = ACTIONS(4519), + [anon_sym_constinit] = ACTIONS(4519), + [anon_sym_consteval] = ACTIONS(4519), + [anon_sym_COLON] = ACTIONS(4517), + [anon_sym_QMARK] = ACTIONS(4519), + [anon_sym_STAR_EQ] = ACTIONS(4519), + [anon_sym_SLASH_EQ] = ACTIONS(4519), + [anon_sym_PERCENT_EQ] = ACTIONS(4519), + [anon_sym_PLUS_EQ] = ACTIONS(4519), + [anon_sym_DASH_EQ] = ACTIONS(4519), + [anon_sym_LT_LT_EQ] = ACTIONS(4519), + [anon_sym_GT_GT_EQ] = ACTIONS(4519), + [anon_sym_AMP_EQ] = ACTIONS(4519), + [anon_sym_CARET_EQ] = ACTIONS(4519), + [anon_sym_PIPE_EQ] = ACTIONS(4519), + [anon_sym_and_eq] = ACTIONS(4519), + [anon_sym_or_eq] = ACTIONS(4519), + [anon_sym_xor_eq] = ACTIONS(4519), + [anon_sym_LT_EQ_GT] = ACTIONS(4519), + [anon_sym_or] = ACTIONS(4517), + [anon_sym_and] = ACTIONS(4517), + [anon_sym_bitor] = ACTIONS(4519), + [anon_sym_xor] = ACTIONS(4517), + [anon_sym_bitand] = ACTIONS(4519), + [anon_sym_not_eq] = ACTIONS(4519), + [anon_sym_DASH_DASH] = ACTIONS(4519), + [anon_sym_PLUS_PLUS] = ACTIONS(4519), + [anon_sym_DOT] = ACTIONS(4517), + [anon_sym_DASH_GT] = ACTIONS(4517), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4519), + [anon_sym_decltype] = ACTIONS(4519), + [anon_sym_final] = ACTIONS(4519), + [anon_sym_override] = ACTIONS(4519), + [anon_sym_DOT_STAR] = ACTIONS(4519), + [anon_sym_DASH_GT_STAR] = ACTIONS(4519), + }, + [2149] = { + [sym_function_definition] = STATE(1372), + [sym_declaration] = STATE(1372), + [sym__declaration_modifiers] = STATE(2514), + [sym__declaration_specifiers] = STATE(4613), + [sym_attribute_specifier] = STATE(2514), + [sym_attribute_declaration] = STATE(2514), + [sym_ms_declspec_modifier] = STATE(2514), + [sym_ms_call_modifier] = STATE(2381), + [sym_storage_class_specifier] = STATE(2514), + [sym_type_qualifier] = STATE(2514), + [sym__type_specifier] = STATE(3633), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym__class_name] = STATE(7441), + [sym_virtual] = STATE(2514), + [sym_dependent_type] = STATE(3723), + [sym_template_type] = STATE(4517), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5779), + [sym_qualified_type_identifier] = STATE(4508), + [aux_sym__declaration_specifiers_repeat1] = STATE(2514), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [sym_identifier] = ACTIONS(4594), + [anon_sym_extern] = ACTIONS(53), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(3663), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1813), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(47), + [anon_sym___clrcall] = ACTIONS(47), + [anon_sym___stdcall] = ACTIONS(47), + [anon_sym___fastcall] = ACTIONS(47), + [anon_sym___thiscall] = ACTIONS(47), + [anon_sym___vectorcall] = ACTIONS(47), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(53), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(3667), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(4608), + [anon_sym_struct] = ACTIONS(4610), + [anon_sym_union] = ACTIONS(4612), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(113), + [anon_sym_decltype] = ACTIONS(115), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_typename] = ACTIONS(121), + [anon_sym_template] = ACTIONS(1329), + }, + [2150] = { + [sym_function_definition] = STATE(756), + [sym_declaration] = STATE(756), + [sym__declaration_modifiers] = STATE(2514), + [sym__declaration_specifiers] = STATE(4664), + [sym_attribute_specifier] = STATE(2514), + [sym_attribute_declaration] = STATE(2514), + [sym_ms_declspec_modifier] = STATE(2514), + [sym_ms_call_modifier] = STATE(2402), + [sym_storage_class_specifier] = STATE(2514), + [sym_type_qualifier] = STATE(2514), + [sym__type_specifier] = STATE(3633), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym__class_name] = STATE(7073), + [sym_virtual] = STATE(2514), + [sym_dependent_type] = STATE(3723), + [sym_template_type] = STATE(4517), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5779), + [sym_qualified_type_identifier] = STATE(4508), + [aux_sym__declaration_specifiers_repeat1] = STATE(2514), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [sym_identifier] = ACTIONS(4594), + [anon_sym_extern] = ACTIONS(53), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(3663), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1813), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(47), + [anon_sym___clrcall] = ACTIONS(47), + [anon_sym___stdcall] = ACTIONS(47), + [anon_sym___fastcall] = ACTIONS(47), + [anon_sym___thiscall] = ACTIONS(47), + [anon_sym___vectorcall] = ACTIONS(47), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(53), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(3667), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(4614), + [anon_sym_struct] = ACTIONS(4616), + [anon_sym_union] = ACTIONS(4618), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(113), + [anon_sym_decltype] = ACTIONS(115), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_typename] = ACTIONS(121), + [anon_sym_template] = ACTIONS(1329), + }, + [2151] = { + [sym_function_definition] = STATE(1220), + [sym_declaration] = STATE(1220), + [sym__declaration_modifiers] = STATE(2514), + [sym__declaration_specifiers] = STATE(4656), + [sym_attribute_specifier] = STATE(2514), + [sym_attribute_declaration] = STATE(2514), + [sym_ms_declspec_modifier] = STATE(2514), + [sym_ms_call_modifier] = STATE(2383), + [sym_storage_class_specifier] = STATE(2514), + [sym_type_qualifier] = STATE(2514), + [sym__type_specifier] = STATE(3633), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym__class_name] = STATE(7226), + [sym_virtual] = STATE(2514), + [sym_dependent_type] = STATE(3723), + [sym_template_type] = STATE(4517), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5779), + [sym_qualified_type_identifier] = STATE(4508), + [aux_sym__declaration_specifiers_repeat1] = STATE(2514), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [sym_identifier] = ACTIONS(4594), + [anon_sym_extern] = ACTIONS(53), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(3663), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1813), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(47), + [anon_sym___clrcall] = ACTIONS(47), + [anon_sym___stdcall] = ACTIONS(47), + [anon_sym___fastcall] = ACTIONS(47), + [anon_sym___thiscall] = ACTIONS(47), + [anon_sym___vectorcall] = ACTIONS(47), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(53), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(3667), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(4620), + [anon_sym_struct] = ACTIONS(4622), + [anon_sym_union] = ACTIONS(4624), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(113), + [anon_sym_decltype] = ACTIONS(115), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_typename] = ACTIONS(121), + [anon_sym_template] = ACTIONS(1329), + }, + [2152] = { + [sym_function_definition] = STATE(2701), + [sym_declaration] = STATE(2701), + [sym__declaration_modifiers] = STATE(2514), + [sym__declaration_specifiers] = STATE(4608), + [sym_attribute_specifier] = STATE(2514), + [sym_attribute_declaration] = STATE(2514), + [sym_ms_declspec_modifier] = STATE(2514), + [sym_ms_call_modifier] = STATE(2431), + [sym_storage_class_specifier] = STATE(2514), + [sym_type_qualifier] = STATE(2514), + [sym__type_specifier] = STATE(3633), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym__class_name] = STATE(7029), + [sym_virtual] = STATE(2514), + [sym_dependent_type] = STATE(3723), + [sym_template_type] = STATE(4517), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5779), + [sym_qualified_type_identifier] = STATE(4508), + [aux_sym__declaration_specifiers_repeat1] = STATE(2514), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [sym_identifier] = ACTIONS(4594), + [anon_sym_extern] = ACTIONS(53), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(3663), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1813), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(47), + [anon_sym___clrcall] = ACTIONS(47), + [anon_sym___stdcall] = ACTIONS(47), + [anon_sym___fastcall] = ACTIONS(47), + [anon_sym___thiscall] = ACTIONS(47), + [anon_sym___vectorcall] = ACTIONS(47), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(53), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(3667), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(4626), + [anon_sym_struct] = ACTIONS(4628), + [anon_sym_union] = ACTIONS(4630), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(113), + [anon_sym_decltype] = ACTIONS(115), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_typename] = ACTIONS(121), + [anon_sym_template] = ACTIONS(1329), + }, + [2153] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(4548), + [anon_sym_COMMA] = ACTIONS(4548), + [anon_sym_RPAREN] = ACTIONS(4548), + [anon_sym_LPAREN2] = ACTIONS(4548), + [anon_sym_DASH] = ACTIONS(4546), + [anon_sym_PLUS] = ACTIONS(4546), + [anon_sym_STAR] = ACTIONS(4546), + [anon_sym_SLASH] = ACTIONS(4546), + [anon_sym_PERCENT] = ACTIONS(4546), + [anon_sym_PIPE_PIPE] = ACTIONS(4548), + [anon_sym_AMP_AMP] = ACTIONS(4548), + [anon_sym_PIPE] = ACTIONS(4546), + [anon_sym_CARET] = ACTIONS(4546), + [anon_sym_AMP] = ACTIONS(4546), + [anon_sym_EQ_EQ] = ACTIONS(4548), + [anon_sym_BANG_EQ] = ACTIONS(4548), + [anon_sym_GT] = ACTIONS(4546), + [anon_sym_GT_EQ] = ACTIONS(4548), + [anon_sym_LT_EQ] = ACTIONS(4546), + [anon_sym_LT] = ACTIONS(4546), + [anon_sym_LT_LT] = ACTIONS(4546), + [anon_sym_GT_GT] = ACTIONS(4546), + [anon_sym_COLON_COLON] = ACTIONS(4548), + [anon_sym_LBRACE] = ACTIONS(4548), + [anon_sym_LBRACK] = ACTIONS(4548), + [anon_sym_EQ] = ACTIONS(4546), + [anon_sym_const] = ACTIONS(4546), + [anon_sym_constexpr] = ACTIONS(4548), + [anon_sym_volatile] = ACTIONS(4548), + [anon_sym_restrict] = ACTIONS(4548), + [anon_sym___restrict__] = ACTIONS(4548), + [anon_sym__Atomic] = ACTIONS(4548), + [anon_sym__Noreturn] = ACTIONS(4548), + [anon_sym_noreturn] = ACTIONS(4548), + [anon_sym_mutable] = ACTIONS(4548), + [anon_sym_constinit] = ACTIONS(4548), + [anon_sym_consteval] = ACTIONS(4548), + [anon_sym_COLON] = ACTIONS(4546), + [anon_sym_QMARK] = ACTIONS(4548), + [anon_sym_STAR_EQ] = ACTIONS(4548), + [anon_sym_SLASH_EQ] = ACTIONS(4548), + [anon_sym_PERCENT_EQ] = ACTIONS(4548), + [anon_sym_PLUS_EQ] = ACTIONS(4548), + [anon_sym_DASH_EQ] = ACTIONS(4548), + [anon_sym_LT_LT_EQ] = ACTIONS(4548), + [anon_sym_GT_GT_EQ] = ACTIONS(4548), + [anon_sym_AMP_EQ] = ACTIONS(4548), + [anon_sym_CARET_EQ] = ACTIONS(4548), + [anon_sym_PIPE_EQ] = ACTIONS(4548), + [anon_sym_and_eq] = ACTIONS(4548), + [anon_sym_or_eq] = ACTIONS(4548), + [anon_sym_xor_eq] = ACTIONS(4548), + [anon_sym_LT_EQ_GT] = ACTIONS(4548), + [anon_sym_or] = ACTIONS(4546), + [anon_sym_and] = ACTIONS(4546), + [anon_sym_bitor] = ACTIONS(4548), + [anon_sym_xor] = ACTIONS(4546), + [anon_sym_bitand] = ACTIONS(4548), + [anon_sym_not_eq] = ACTIONS(4548), + [anon_sym_DASH_DASH] = ACTIONS(4548), + [anon_sym_PLUS_PLUS] = ACTIONS(4548), + [anon_sym_DOT] = ACTIONS(4546), + [anon_sym_DASH_GT] = ACTIONS(4546), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4548), + [anon_sym_decltype] = ACTIONS(4548), + [anon_sym_final] = ACTIONS(4548), + [anon_sym_override] = ACTIONS(4548), + [anon_sym_DOT_STAR] = ACTIONS(4548), + [anon_sym_DASH_GT_STAR] = ACTIONS(4548), + }, + [2154] = { + [sym_function_definition] = STATE(2375), + [sym_declaration] = STATE(2375), + [sym__declaration_modifiers] = STATE(2514), + [sym__declaration_specifiers] = STATE(4622), + [sym_attribute_specifier] = STATE(2514), + [sym_attribute_declaration] = STATE(2514), + [sym_ms_declspec_modifier] = STATE(2514), + [sym_ms_call_modifier] = STATE(2436), + [sym_storage_class_specifier] = STATE(2514), + [sym_type_qualifier] = STATE(2514), + [sym__type_specifier] = STATE(3633), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym__class_name] = STATE(7292), + [sym_virtual] = STATE(2514), + [sym_dependent_type] = STATE(3723), + [sym_template_type] = STATE(4517), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5779), + [sym_qualified_type_identifier] = STATE(4508), + [aux_sym__declaration_specifiers_repeat1] = STATE(2514), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [sym_identifier] = ACTIONS(4594), + [anon_sym_extern] = ACTIONS(53), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(3663), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1813), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(47), + [anon_sym___clrcall] = ACTIONS(47), + [anon_sym___stdcall] = ACTIONS(47), + [anon_sym___fastcall] = ACTIONS(47), + [anon_sym___thiscall] = ACTIONS(47), + [anon_sym___vectorcall] = ACTIONS(47), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(53), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(3667), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(4632), + [anon_sym_struct] = ACTIONS(4634), + [anon_sym_union] = ACTIONS(4636), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(113), + [anon_sym_decltype] = ACTIONS(115), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_typename] = ACTIONS(121), + [anon_sym_template] = ACTIONS(1329), + }, + [2155] = { + [sym_function_definition] = STATE(1233), + [sym_declaration] = STATE(1233), + [sym__declaration_modifiers] = STATE(2514), + [sym__declaration_specifiers] = STATE(4618), + [sym_attribute_specifier] = STATE(2514), + [sym_attribute_declaration] = STATE(2514), + [sym_ms_declspec_modifier] = STATE(2514), + [sym_ms_call_modifier] = STATE(2462), + [sym_storage_class_specifier] = STATE(2514), + [sym_type_qualifier] = STATE(2514), + [sym__type_specifier] = STATE(3633), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym__class_name] = STATE(7503), + [sym_virtual] = STATE(2514), + [sym_dependent_type] = STATE(3723), + [sym_template_type] = STATE(4517), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5779), + [sym_qualified_type_identifier] = STATE(4508), + [aux_sym__declaration_specifiers_repeat1] = STATE(2514), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [sym_identifier] = ACTIONS(4594), + [anon_sym_extern] = ACTIONS(53), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(3663), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1813), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(47), + [anon_sym___clrcall] = ACTIONS(47), + [anon_sym___stdcall] = ACTIONS(47), + [anon_sym___fastcall] = ACTIONS(47), + [anon_sym___thiscall] = ACTIONS(47), + [anon_sym___vectorcall] = ACTIONS(47), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(53), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(3667), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(4638), + [anon_sym_struct] = ACTIONS(4640), + [anon_sym_union] = ACTIONS(4642), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(113), + [anon_sym_decltype] = ACTIONS(115), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_typename] = ACTIONS(121), + [anon_sym_template] = ACTIONS(1329), + }, + [2156] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(4533), + [anon_sym_COMMA] = ACTIONS(4533), + [anon_sym_RPAREN] = ACTIONS(4533), + [anon_sym_LPAREN2] = ACTIONS(4533), + [anon_sym_DASH] = ACTIONS(4531), + [anon_sym_PLUS] = ACTIONS(4531), + [anon_sym_STAR] = ACTIONS(4531), + [anon_sym_SLASH] = ACTIONS(4531), + [anon_sym_PERCENT] = ACTIONS(4531), + [anon_sym_PIPE_PIPE] = ACTIONS(4533), + [anon_sym_AMP_AMP] = ACTIONS(4533), + [anon_sym_PIPE] = ACTIONS(4531), + [anon_sym_CARET] = ACTIONS(4531), + [anon_sym_AMP] = ACTIONS(4531), + [anon_sym_EQ_EQ] = ACTIONS(4533), + [anon_sym_BANG_EQ] = ACTIONS(4533), + [anon_sym_GT] = ACTIONS(4531), + [anon_sym_GT_EQ] = ACTIONS(4533), + [anon_sym_LT_EQ] = ACTIONS(4531), + [anon_sym_LT] = ACTIONS(4531), + [anon_sym_LT_LT] = ACTIONS(4531), + [anon_sym_GT_GT] = ACTIONS(4531), + [anon_sym_COLON_COLON] = ACTIONS(4533), + [anon_sym_LBRACE] = ACTIONS(4533), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_EQ] = ACTIONS(4531), + [anon_sym_const] = ACTIONS(4531), + [anon_sym_constexpr] = ACTIONS(4533), + [anon_sym_volatile] = ACTIONS(4533), + [anon_sym_restrict] = ACTIONS(4533), + [anon_sym___restrict__] = ACTIONS(4533), + [anon_sym__Atomic] = ACTIONS(4533), + [anon_sym__Noreturn] = ACTIONS(4533), + [anon_sym_noreturn] = ACTIONS(4533), + [anon_sym_mutable] = ACTIONS(4533), + [anon_sym_constinit] = ACTIONS(4533), + [anon_sym_consteval] = ACTIONS(4533), + [anon_sym_COLON] = ACTIONS(4531), + [anon_sym_QMARK] = ACTIONS(4533), + [anon_sym_STAR_EQ] = ACTIONS(4533), + [anon_sym_SLASH_EQ] = ACTIONS(4533), + [anon_sym_PERCENT_EQ] = ACTIONS(4533), + [anon_sym_PLUS_EQ] = ACTIONS(4533), + [anon_sym_DASH_EQ] = ACTIONS(4533), + [anon_sym_LT_LT_EQ] = ACTIONS(4533), + [anon_sym_GT_GT_EQ] = ACTIONS(4533), + [anon_sym_AMP_EQ] = ACTIONS(4533), + [anon_sym_CARET_EQ] = ACTIONS(4533), + [anon_sym_PIPE_EQ] = ACTIONS(4533), + [anon_sym_and_eq] = ACTIONS(4533), + [anon_sym_or_eq] = ACTIONS(4533), + [anon_sym_xor_eq] = ACTIONS(4533), + [anon_sym_LT_EQ_GT] = ACTIONS(4533), + [anon_sym_or] = ACTIONS(4531), + [anon_sym_and] = ACTIONS(4531), + [anon_sym_bitor] = ACTIONS(4533), + [anon_sym_xor] = ACTIONS(4531), + [anon_sym_bitand] = ACTIONS(4533), + [anon_sym_not_eq] = ACTIONS(4533), + [anon_sym_DASH_DASH] = ACTIONS(4533), + [anon_sym_PLUS_PLUS] = ACTIONS(4533), + [anon_sym_DOT] = ACTIONS(4531), + [anon_sym_DASH_GT] = ACTIONS(4531), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4533), + [anon_sym_decltype] = ACTIONS(4533), + [anon_sym_final] = ACTIONS(4533), + [anon_sym_override] = ACTIONS(4533), + [anon_sym_DOT_STAR] = ACTIONS(4533), + [anon_sym_DASH_GT_STAR] = ACTIONS(4533), + }, + [2157] = { + [sym_function_definition] = STATE(548), + [sym_declaration] = STATE(548), + [sym__declaration_modifiers] = STATE(2514), + [sym__declaration_specifiers] = STATE(4661), + [sym_attribute_specifier] = STATE(2514), + [sym_attribute_declaration] = STATE(2514), + [sym_ms_declspec_modifier] = STATE(2514), + [sym_ms_call_modifier] = STATE(2439), + [sym_storage_class_specifier] = STATE(2514), + [sym_type_qualifier] = STATE(2514), + [sym__type_specifier] = STATE(3633), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym__class_name] = STATE(7243), + [sym_virtual] = STATE(2514), + [sym_dependent_type] = STATE(3723), + [sym_template_type] = STATE(4517), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5779), + [sym_qualified_type_identifier] = STATE(4508), + [aux_sym__declaration_specifiers_repeat1] = STATE(2514), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [sym_identifier] = ACTIONS(4594), + [anon_sym_extern] = ACTIONS(53), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(3663), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1813), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym___cdecl] = ACTIONS(47), + [anon_sym___clrcall] = ACTIONS(47), + [anon_sym___stdcall] = ACTIONS(47), + [anon_sym___fastcall] = ACTIONS(47), + [anon_sym___thiscall] = ACTIONS(47), + [anon_sym___vectorcall] = ACTIONS(47), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(53), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(3667), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(4644), + [anon_sym_struct] = ACTIONS(4646), + [anon_sym_union] = ACTIONS(4648), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(113), + [anon_sym_decltype] = ACTIONS(115), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_typename] = ACTIONS(121), + [anon_sym_template] = ACTIONS(1329), + }, + [2158] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(4529), + [anon_sym_COMMA] = ACTIONS(4529), + [anon_sym_RPAREN] = ACTIONS(4529), + [anon_sym_LPAREN2] = ACTIONS(4529), + [anon_sym_DASH] = ACTIONS(4527), + [anon_sym_PLUS] = ACTIONS(4527), + [anon_sym_STAR] = ACTIONS(4527), + [anon_sym_SLASH] = ACTIONS(4527), + [anon_sym_PERCENT] = ACTIONS(4527), + [anon_sym_PIPE_PIPE] = ACTIONS(4529), + [anon_sym_AMP_AMP] = ACTIONS(4529), + [anon_sym_PIPE] = ACTIONS(4527), + [anon_sym_CARET] = ACTIONS(4527), + [anon_sym_AMP] = ACTIONS(4527), + [anon_sym_EQ_EQ] = ACTIONS(4529), + [anon_sym_BANG_EQ] = ACTIONS(4529), + [anon_sym_GT] = ACTIONS(4527), + [anon_sym_GT_EQ] = ACTIONS(4529), + [anon_sym_LT_EQ] = ACTIONS(4527), + [anon_sym_LT] = ACTIONS(4527), + [anon_sym_LT_LT] = ACTIONS(4527), + [anon_sym_GT_GT] = ACTIONS(4527), + [anon_sym_COLON_COLON] = ACTIONS(4529), + [anon_sym_LBRACE] = ACTIONS(4529), + [anon_sym_LBRACK] = ACTIONS(4529), + [anon_sym_EQ] = ACTIONS(4527), + [anon_sym_const] = ACTIONS(4527), + [anon_sym_constexpr] = ACTIONS(4529), + [anon_sym_volatile] = ACTIONS(4529), + [anon_sym_restrict] = ACTIONS(4529), + [anon_sym___restrict__] = ACTIONS(4529), + [anon_sym__Atomic] = ACTIONS(4529), + [anon_sym__Noreturn] = ACTIONS(4529), + [anon_sym_noreturn] = ACTIONS(4529), + [anon_sym_mutable] = ACTIONS(4529), + [anon_sym_constinit] = ACTIONS(4529), + [anon_sym_consteval] = ACTIONS(4529), + [anon_sym_COLON] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4529), + [anon_sym_STAR_EQ] = ACTIONS(4529), + [anon_sym_SLASH_EQ] = ACTIONS(4529), + [anon_sym_PERCENT_EQ] = ACTIONS(4529), + [anon_sym_PLUS_EQ] = ACTIONS(4529), + [anon_sym_DASH_EQ] = ACTIONS(4529), + [anon_sym_LT_LT_EQ] = ACTIONS(4529), + [anon_sym_GT_GT_EQ] = ACTIONS(4529), + [anon_sym_AMP_EQ] = ACTIONS(4529), + [anon_sym_CARET_EQ] = ACTIONS(4529), + [anon_sym_PIPE_EQ] = ACTIONS(4529), + [anon_sym_and_eq] = ACTIONS(4529), + [anon_sym_or_eq] = ACTIONS(4529), + [anon_sym_xor_eq] = ACTIONS(4529), + [anon_sym_LT_EQ_GT] = ACTIONS(4529), + [anon_sym_or] = ACTIONS(4527), + [anon_sym_and] = ACTIONS(4527), + [anon_sym_bitor] = ACTIONS(4529), + [anon_sym_xor] = ACTIONS(4527), + [anon_sym_bitand] = ACTIONS(4529), + [anon_sym_not_eq] = ACTIONS(4529), + [anon_sym_DASH_DASH] = ACTIONS(4529), + [anon_sym_PLUS_PLUS] = ACTIONS(4529), + [anon_sym_DOT] = ACTIONS(4527), + [anon_sym_DASH_GT] = ACTIONS(4527), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4529), + [anon_sym_decltype] = ACTIONS(4529), + [anon_sym_final] = ACTIONS(4529), + [anon_sym_override] = ACTIONS(4529), + [anon_sym_DOT_STAR] = ACTIONS(4529), + [anon_sym_DASH_GT_STAR] = ACTIONS(4529), + }, + [2159] = { + [sym_template_argument_list] = STATE(2206), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4457), + [anon_sym_COMMA] = ACTIONS(4457), + [anon_sym_RPAREN] = ACTIONS(4459), + [anon_sym_LPAREN2] = ACTIONS(4459), + [anon_sym_DASH] = ACTIONS(4465), + [anon_sym_PLUS] = ACTIONS(4465), + [anon_sym_STAR] = ACTIONS(4467), + [anon_sym_SLASH] = ACTIONS(4465), + [anon_sym_PERCENT] = ACTIONS(4465), + [anon_sym_PIPE_PIPE] = ACTIONS(4457), + [anon_sym_AMP_AMP] = ACTIONS(4470), + [anon_sym_PIPE] = ACTIONS(4465), + [anon_sym_CARET] = ACTIONS(4465), + [anon_sym_AMP] = ACTIONS(4467), + [anon_sym_EQ_EQ] = ACTIONS(4457), + [anon_sym_BANG_EQ] = ACTIONS(4457), + [anon_sym_GT] = ACTIONS(4465), + [anon_sym_GT_EQ] = ACTIONS(4457), + [anon_sym_LT_EQ] = ACTIONS(4465), + [anon_sym_LT] = ACTIONS(4493), + [anon_sym_LT_LT] = ACTIONS(4465), + [anon_sym_GT_GT] = ACTIONS(4465), + [anon_sym_COLON_COLON] = ACTIONS(4476), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4650), + [anon_sym_LBRACE] = ACTIONS(4481), + [anon_sym_LBRACK] = ACTIONS(4483), + [anon_sym_EQ] = ACTIONS(4465), + [anon_sym_const] = ACTIONS(4455), + [anon_sym_constexpr] = ACTIONS(4463), + [anon_sym_volatile] = ACTIONS(4463), + [anon_sym_restrict] = ACTIONS(4463), + [anon_sym___restrict__] = ACTIONS(4463), + [anon_sym__Atomic] = ACTIONS(4463), + [anon_sym__Noreturn] = ACTIONS(4463), + [anon_sym_noreturn] = ACTIONS(4463), + [anon_sym_mutable] = ACTIONS(4463), + [anon_sym_constinit] = ACTIONS(4463), + [anon_sym_consteval] = ACTIONS(4463), + [anon_sym_QMARK] = ACTIONS(4457), + [anon_sym_STAR_EQ] = ACTIONS(4457), + [anon_sym_SLASH_EQ] = ACTIONS(4457), + [anon_sym_PERCENT_EQ] = ACTIONS(4457), + [anon_sym_PLUS_EQ] = ACTIONS(4457), + [anon_sym_DASH_EQ] = ACTIONS(4457), + [anon_sym_LT_LT_EQ] = ACTIONS(4457), + [anon_sym_GT_GT_EQ] = ACTIONS(4457), + [anon_sym_AMP_EQ] = ACTIONS(4457), + [anon_sym_CARET_EQ] = ACTIONS(4457), + [anon_sym_PIPE_EQ] = ACTIONS(4457), + [anon_sym_and_eq] = ACTIONS(4652), + [anon_sym_or_eq] = ACTIONS(4652), + [anon_sym_xor_eq] = ACTIONS(4652), + [anon_sym_LT_EQ_GT] = ACTIONS(4457), + [anon_sym_or] = ACTIONS(4465), + [anon_sym_and] = ACTIONS(4465), + [anon_sym_bitor] = ACTIONS(4457), + [anon_sym_xor] = ACTIONS(4465), + [anon_sym_bitand] = ACTIONS(4457), + [anon_sym_not_eq] = ACTIONS(4457), + [anon_sym_DASH_DASH] = ACTIONS(4457), + [anon_sym_PLUS_PLUS] = ACTIONS(4457), + [anon_sym_DOT] = ACTIONS(4465), + [anon_sym_DASH_GT] = ACTIONS(4465), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4463), + [anon_sym_decltype] = ACTIONS(4463), + [anon_sym_DOT_STAR] = ACTIONS(4457), + [anon_sym_DASH_GT_STAR] = ACTIONS(4457), + }, + [2160] = { + [sym_template_argument_list] = STATE(2167), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4510), + [anon_sym_COMMA] = ACTIONS(4510), + [anon_sym_RPAREN] = ACTIONS(4500), + [anon_sym_LPAREN2] = ACTIONS(4500), + [anon_sym_DASH] = ACTIONS(4505), + [anon_sym_PLUS] = ACTIONS(4505), + [anon_sym_STAR] = ACTIONS(4507), + [anon_sym_SLASH] = ACTIONS(4505), + [anon_sym_PERCENT] = ACTIONS(4505), + [anon_sym_PIPE_PIPE] = ACTIONS(4510), + [anon_sym_AMP_AMP] = ACTIONS(4500), + [anon_sym_PIPE] = ACTIONS(4505), + [anon_sym_CARET] = ACTIONS(4505), + [anon_sym_AMP] = ACTIONS(4507), + [anon_sym_EQ_EQ] = ACTIONS(4510), + [anon_sym_BANG_EQ] = ACTIONS(4510), + [anon_sym_GT] = ACTIONS(4505), + [anon_sym_GT_EQ] = ACTIONS(4510), + [anon_sym_LT_EQ] = ACTIONS(4505), + [anon_sym_LT] = ACTIONS(4512), + [anon_sym_LT_LT] = ACTIONS(4505), + [anon_sym_GT_GT] = ACTIONS(4505), + [anon_sym_COLON_COLON] = ACTIONS(4476), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4510), + [anon_sym_LBRACE] = ACTIONS(4503), + [anon_sym_LBRACK] = ACTIONS(4507), + [anon_sym_EQ] = ACTIONS(4505), + [anon_sym_const] = ACTIONS(4498), + [anon_sym_constexpr] = ACTIONS(4503), + [anon_sym_volatile] = ACTIONS(4503), + [anon_sym_restrict] = ACTIONS(4503), + [anon_sym___restrict__] = ACTIONS(4503), + [anon_sym__Atomic] = ACTIONS(4503), + [anon_sym__Noreturn] = ACTIONS(4503), + [anon_sym_noreturn] = ACTIONS(4503), + [anon_sym_mutable] = ACTIONS(4503), + [anon_sym_constinit] = ACTIONS(4503), + [anon_sym_consteval] = ACTIONS(4503), + [anon_sym_QMARK] = ACTIONS(4510), + [anon_sym_STAR_EQ] = ACTIONS(4510), + [anon_sym_SLASH_EQ] = ACTIONS(4510), + [anon_sym_PERCENT_EQ] = ACTIONS(4510), + [anon_sym_PLUS_EQ] = ACTIONS(4510), + [anon_sym_DASH_EQ] = ACTIONS(4510), + [anon_sym_LT_LT_EQ] = ACTIONS(4510), + [anon_sym_GT_GT_EQ] = ACTIONS(4510), + [anon_sym_AMP_EQ] = ACTIONS(4510), + [anon_sym_CARET_EQ] = ACTIONS(4510), + [anon_sym_PIPE_EQ] = ACTIONS(4510), + [anon_sym_and_eq] = ACTIONS(4510), + [anon_sym_or_eq] = ACTIONS(4510), + [anon_sym_xor_eq] = ACTIONS(4510), + [anon_sym_LT_EQ_GT] = ACTIONS(4510), + [anon_sym_or] = ACTIONS(4505), + [anon_sym_and] = ACTIONS(4505), + [anon_sym_bitor] = ACTIONS(4510), + [anon_sym_xor] = ACTIONS(4505), + [anon_sym_bitand] = ACTIONS(4510), + [anon_sym_not_eq] = ACTIONS(4510), + [anon_sym_DASH_DASH] = ACTIONS(4510), + [anon_sym_PLUS_PLUS] = ACTIONS(4510), + [anon_sym_DOT] = ACTIONS(4505), + [anon_sym_DASH_GT] = ACTIONS(4505), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4503), + [anon_sym_decltype] = ACTIONS(4503), + [anon_sym_DOT_STAR] = ACTIONS(4510), + [anon_sym_DASH_GT_STAR] = ACTIONS(4510), + }, + [2161] = { + [sym_template_argument_list] = STATE(2176), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4510), + [anon_sym_COMMA] = ACTIONS(4510), + [anon_sym_RPAREN] = ACTIONS(4500), + [anon_sym_LPAREN2] = ACTIONS(4500), + [anon_sym_DASH] = ACTIONS(4505), + [anon_sym_PLUS] = ACTIONS(4505), + [anon_sym_STAR] = ACTIONS(4507), + [anon_sym_SLASH] = ACTIONS(4505), + [anon_sym_PERCENT] = ACTIONS(4505), + [anon_sym_PIPE_PIPE] = ACTIONS(4510), + [anon_sym_AMP_AMP] = ACTIONS(4500), + [anon_sym_PIPE] = ACTIONS(4505), + [anon_sym_CARET] = ACTIONS(4505), + [anon_sym_AMP] = ACTIONS(4507), + [anon_sym_EQ_EQ] = ACTIONS(4510), + [anon_sym_BANG_EQ] = ACTIONS(4510), + [anon_sym_GT] = ACTIONS(4505), + [anon_sym_GT_EQ] = ACTIONS(4510), + [anon_sym_LT_EQ] = ACTIONS(4505), + [anon_sym_LT] = ACTIONS(4654), + [anon_sym_LT_LT] = ACTIONS(4505), + [anon_sym_GT_GT] = ACTIONS(4505), + [anon_sym_COLON_COLON] = ACTIONS(4476), + [anon_sym_LBRACE] = ACTIONS(4503), + [anon_sym_LBRACK] = ACTIONS(4500), + [anon_sym_EQ] = ACTIONS(4505), + [anon_sym_const] = ACTIONS(4498), + [anon_sym_constexpr] = ACTIONS(4503), + [anon_sym_volatile] = ACTIONS(4503), + [anon_sym_restrict] = ACTIONS(4503), + [anon_sym___restrict__] = ACTIONS(4503), + [anon_sym__Atomic] = ACTIONS(4503), + [anon_sym__Noreturn] = ACTIONS(4503), + [anon_sym_noreturn] = ACTIONS(4503), + [anon_sym_mutable] = ACTIONS(4503), + [anon_sym_constinit] = ACTIONS(4503), + [anon_sym_consteval] = ACTIONS(4503), + [anon_sym_QMARK] = ACTIONS(4510), + [anon_sym_STAR_EQ] = ACTIONS(4510), + [anon_sym_SLASH_EQ] = ACTIONS(4510), + [anon_sym_PERCENT_EQ] = ACTIONS(4510), + [anon_sym_PLUS_EQ] = ACTIONS(4510), + [anon_sym_DASH_EQ] = ACTIONS(4510), + [anon_sym_LT_LT_EQ] = ACTIONS(4510), + [anon_sym_GT_GT_EQ] = ACTIONS(4510), + [anon_sym_AMP_EQ] = ACTIONS(4510), + [anon_sym_CARET_EQ] = ACTIONS(4510), + [anon_sym_PIPE_EQ] = ACTIONS(4510), + [anon_sym_and_eq] = ACTIONS(4510), + [anon_sym_or_eq] = ACTIONS(4510), + [anon_sym_xor_eq] = ACTIONS(4510), + [anon_sym_LT_EQ_GT] = ACTIONS(4510), + [anon_sym_or] = ACTIONS(4505), + [anon_sym_and] = ACTIONS(4505), + [anon_sym_bitor] = ACTIONS(4510), + [anon_sym_xor] = ACTIONS(4505), + [anon_sym_bitand] = ACTIONS(4510), + [anon_sym_not_eq] = ACTIONS(4510), + [anon_sym_DASH_DASH] = ACTIONS(4510), + [anon_sym_PLUS_PLUS] = ACTIONS(4510), + [anon_sym_DOT] = ACTIONS(4505), + [anon_sym_DASH_GT] = ACTIONS(4505), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4503), + [anon_sym_decltype] = ACTIONS(4503), + [anon_sym_DOT_STAR] = ACTIONS(4510), + [anon_sym_DASH_GT_STAR] = ACTIONS(4510), + }, + [2162] = { + [sym__declaration_modifiers] = STATE(2530), + [sym__declaration_specifiers] = STATE(3815), + [sym_attribute_specifier] = STATE(2530), + [sym_attribute_declaration] = STATE(2530), + [sym_ms_declspec_modifier] = STATE(2530), + [sym_storage_class_specifier] = STATE(2530), + [sym_type_qualifier] = STATE(2530), + [sym__type_specifier] = STATE(3633), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), + [sym_parameter_declaration] = STATE(6269), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym_virtual] = STATE(2530), + [sym_dependent_type] = STATE(3723), + [sym_type_parameter_declaration] = STATE(6269), + [sym_variadic_type_parameter_declaration] = STATE(6269), + [sym_optional_type_parameter_declaration] = STATE(6269), + [sym_template_template_parameter_declaration] = STATE(6269), + [sym_optional_parameter_declaration] = STATE(6269), + [sym_variadic_parameter_declaration] = STATE(6269), + [sym_template_type] = STATE(3680), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5733), + [sym_qualified_type_identifier] = STATE(3694), + [aux_sym__declaration_specifiers_repeat1] = STATE(2530), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [sym_identifier] = ACTIONS(4570), + [anon_sym_extern] = ACTIONS(53), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(4580), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1813), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(53), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(3667), + [anon_sym_enum] = ACTIONS(1853), + [anon_sym_class] = ACTIONS(4657), + [anon_sym_struct] = ACTIONS(1857), + [anon_sym_union] = ACTIONS(1859), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(113), + [anon_sym_decltype] = ACTIONS(115), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_typename] = ACTIONS(4659), + [anon_sym_template] = ACTIONS(4661), + [anon_sym_GT2] = ACTIONS(4663), + }, + [2163] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(4548), + [anon_sym_COMMA] = ACTIONS(4548), + [anon_sym_LPAREN2] = ACTIONS(4548), + [anon_sym_DASH] = ACTIONS(4546), + [anon_sym_PLUS] = ACTIONS(4546), + [anon_sym_STAR] = ACTIONS(4546), + [anon_sym_SLASH] = ACTIONS(4546), + [anon_sym_PERCENT] = ACTIONS(4546), + [anon_sym_PIPE_PIPE] = ACTIONS(4548), + [anon_sym_AMP_AMP] = ACTIONS(4548), + [anon_sym_PIPE] = ACTIONS(4546), + [anon_sym_CARET] = ACTIONS(4546), + [anon_sym_AMP] = ACTIONS(4546), + [anon_sym_EQ_EQ] = ACTIONS(4548), + [anon_sym_BANG_EQ] = ACTIONS(4548), + [anon_sym_GT] = ACTIONS(4546), + [anon_sym_GT_EQ] = ACTIONS(4546), + [anon_sym_LT_EQ] = ACTIONS(4546), + [anon_sym_LT] = ACTIONS(4546), + [anon_sym_LT_LT] = ACTIONS(4546), + [anon_sym_GT_GT] = ACTIONS(4546), + [anon_sym_COLON_COLON] = ACTIONS(4548), + [anon_sym_LBRACE] = ACTIONS(4548), + [anon_sym_LBRACK] = ACTIONS(4548), + [anon_sym_EQ] = ACTIONS(4546), + [anon_sym_const] = ACTIONS(4546), + [anon_sym_constexpr] = ACTIONS(4548), + [anon_sym_volatile] = ACTIONS(4548), + [anon_sym_restrict] = ACTIONS(4548), + [anon_sym___restrict__] = ACTIONS(4548), + [anon_sym__Atomic] = ACTIONS(4548), + [anon_sym__Noreturn] = ACTIONS(4548), + [anon_sym_noreturn] = ACTIONS(4548), + [anon_sym_mutable] = ACTIONS(4548), + [anon_sym_constinit] = ACTIONS(4548), + [anon_sym_consteval] = ACTIONS(4548), + [anon_sym_COLON] = ACTIONS(4546), + [anon_sym_QMARK] = ACTIONS(4548), + [anon_sym_STAR_EQ] = ACTIONS(4548), + [anon_sym_SLASH_EQ] = ACTIONS(4548), + [anon_sym_PERCENT_EQ] = ACTIONS(4548), + [anon_sym_PLUS_EQ] = ACTIONS(4548), + [anon_sym_DASH_EQ] = ACTIONS(4548), + [anon_sym_LT_LT_EQ] = ACTIONS(4548), + [anon_sym_GT_GT_EQ] = ACTIONS(4546), + [anon_sym_AMP_EQ] = ACTIONS(4548), + [anon_sym_CARET_EQ] = ACTIONS(4548), + [anon_sym_PIPE_EQ] = ACTIONS(4548), + [anon_sym_and_eq] = ACTIONS(4548), + [anon_sym_or_eq] = ACTIONS(4548), + [anon_sym_xor_eq] = ACTIONS(4548), + [anon_sym_LT_EQ_GT] = ACTIONS(4548), + [anon_sym_or] = ACTIONS(4546), + [anon_sym_and] = ACTIONS(4546), + [anon_sym_bitor] = ACTIONS(4548), + [anon_sym_xor] = ACTIONS(4546), + [anon_sym_bitand] = ACTIONS(4548), + [anon_sym_not_eq] = ACTIONS(4548), + [anon_sym_DASH_DASH] = ACTIONS(4548), + [anon_sym_PLUS_PLUS] = ACTIONS(4548), + [anon_sym_DOT] = ACTIONS(4546), + [anon_sym_DASH_GT] = ACTIONS(4548), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4548), + [anon_sym_decltype] = ACTIONS(4548), + [anon_sym_final] = ACTIONS(4548), + [anon_sym_override] = ACTIONS(4548), + [anon_sym_GT2] = ACTIONS(4548), + }, + [2164] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(4568), + [anon_sym_COMMA] = ACTIONS(4568), + [anon_sym_LPAREN2] = ACTIONS(4568), + [anon_sym_DASH] = ACTIONS(4566), + [anon_sym_PLUS] = ACTIONS(4566), + [anon_sym_STAR] = ACTIONS(4566), + [anon_sym_SLASH] = ACTIONS(4566), + [anon_sym_PERCENT] = ACTIONS(4566), + [anon_sym_PIPE_PIPE] = ACTIONS(4568), + [anon_sym_AMP_AMP] = ACTIONS(4568), + [anon_sym_PIPE] = ACTIONS(4566), + [anon_sym_CARET] = ACTIONS(4566), + [anon_sym_AMP] = ACTIONS(4566), + [anon_sym_EQ_EQ] = ACTIONS(4568), + [anon_sym_BANG_EQ] = ACTIONS(4568), + [anon_sym_GT] = ACTIONS(4566), + [anon_sym_GT_EQ] = ACTIONS(4566), + [anon_sym_LT_EQ] = ACTIONS(4566), + [anon_sym_LT] = ACTIONS(4566), + [anon_sym_LT_LT] = ACTIONS(4566), + [anon_sym_GT_GT] = ACTIONS(4566), + [anon_sym_COLON_COLON] = ACTIONS(4568), + [anon_sym_LBRACE] = ACTIONS(4568), + [anon_sym_LBRACK] = ACTIONS(4568), + [anon_sym_EQ] = ACTIONS(4566), + [anon_sym_const] = ACTIONS(4566), + [anon_sym_constexpr] = ACTIONS(4568), + [anon_sym_volatile] = ACTIONS(4568), + [anon_sym_restrict] = ACTIONS(4568), + [anon_sym___restrict__] = ACTIONS(4568), + [anon_sym__Atomic] = ACTIONS(4568), + [anon_sym__Noreturn] = ACTIONS(4568), + [anon_sym_noreturn] = ACTIONS(4568), + [anon_sym_mutable] = ACTIONS(4568), + [anon_sym_constinit] = ACTIONS(4568), + [anon_sym_consteval] = ACTIONS(4568), + [anon_sym_COLON] = ACTIONS(4566), + [anon_sym_QMARK] = ACTIONS(4568), + [anon_sym_STAR_EQ] = ACTIONS(4568), + [anon_sym_SLASH_EQ] = ACTIONS(4568), + [anon_sym_PERCENT_EQ] = ACTIONS(4568), + [anon_sym_PLUS_EQ] = ACTIONS(4568), + [anon_sym_DASH_EQ] = ACTIONS(4568), + [anon_sym_LT_LT_EQ] = ACTIONS(4568), + [anon_sym_GT_GT_EQ] = ACTIONS(4566), + [anon_sym_AMP_EQ] = ACTIONS(4568), + [anon_sym_CARET_EQ] = ACTIONS(4568), + [anon_sym_PIPE_EQ] = ACTIONS(4568), + [anon_sym_and_eq] = ACTIONS(4568), + [anon_sym_or_eq] = ACTIONS(4568), + [anon_sym_xor_eq] = ACTIONS(4568), + [anon_sym_LT_EQ_GT] = ACTIONS(4568), + [anon_sym_or] = ACTIONS(4566), + [anon_sym_and] = ACTIONS(4566), + [anon_sym_bitor] = ACTIONS(4568), + [anon_sym_xor] = ACTIONS(4566), + [anon_sym_bitand] = ACTIONS(4568), + [anon_sym_not_eq] = ACTIONS(4568), + [anon_sym_DASH_DASH] = ACTIONS(4568), + [anon_sym_PLUS_PLUS] = ACTIONS(4568), + [anon_sym_DOT] = ACTIONS(4566), + [anon_sym_DASH_GT] = ACTIONS(4568), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4568), + [anon_sym_decltype] = ACTIONS(4568), + [anon_sym_final] = ACTIONS(4568), + [anon_sym_override] = ACTIONS(4568), + [anon_sym_GT2] = ACTIONS(4568), + }, + [2165] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(4519), + [anon_sym_COMMA] = ACTIONS(4519), + [anon_sym_LPAREN2] = ACTIONS(4519), + [anon_sym_DASH] = ACTIONS(4517), + [anon_sym_PLUS] = ACTIONS(4517), + [anon_sym_STAR] = ACTIONS(4517), + [anon_sym_SLASH] = ACTIONS(4517), + [anon_sym_PERCENT] = ACTIONS(4517), + [anon_sym_PIPE_PIPE] = ACTIONS(4519), + [anon_sym_AMP_AMP] = ACTIONS(4519), + [anon_sym_PIPE] = ACTIONS(4517), + [anon_sym_CARET] = ACTIONS(4517), + [anon_sym_AMP] = ACTIONS(4517), + [anon_sym_EQ_EQ] = ACTIONS(4519), + [anon_sym_BANG_EQ] = ACTIONS(4519), + [anon_sym_GT] = ACTIONS(4517), + [anon_sym_GT_EQ] = ACTIONS(4517), + [anon_sym_LT_EQ] = ACTIONS(4517), + [anon_sym_LT] = ACTIONS(4517), + [anon_sym_LT_LT] = ACTIONS(4517), + [anon_sym_GT_GT] = ACTIONS(4517), + [anon_sym_COLON_COLON] = ACTIONS(4519), + [anon_sym_LBRACE] = ACTIONS(4519), + [anon_sym_LBRACK] = ACTIONS(4519), + [anon_sym_EQ] = ACTIONS(4517), + [anon_sym_const] = ACTIONS(4517), + [anon_sym_constexpr] = ACTIONS(4519), + [anon_sym_volatile] = ACTIONS(4519), + [anon_sym_restrict] = ACTIONS(4519), + [anon_sym___restrict__] = ACTIONS(4519), + [anon_sym__Atomic] = ACTIONS(4519), + [anon_sym__Noreturn] = ACTIONS(4519), + [anon_sym_noreturn] = ACTIONS(4519), + [anon_sym_mutable] = ACTIONS(4519), + [anon_sym_constinit] = ACTIONS(4519), + [anon_sym_consteval] = ACTIONS(4519), + [anon_sym_COLON] = ACTIONS(4517), + [anon_sym_QMARK] = ACTIONS(4519), + [anon_sym_STAR_EQ] = ACTIONS(4519), + [anon_sym_SLASH_EQ] = ACTIONS(4519), + [anon_sym_PERCENT_EQ] = ACTIONS(4519), + [anon_sym_PLUS_EQ] = ACTIONS(4519), + [anon_sym_DASH_EQ] = ACTIONS(4519), + [anon_sym_LT_LT_EQ] = ACTIONS(4519), + [anon_sym_GT_GT_EQ] = ACTIONS(4517), + [anon_sym_AMP_EQ] = ACTIONS(4519), + [anon_sym_CARET_EQ] = ACTIONS(4519), + [anon_sym_PIPE_EQ] = ACTIONS(4519), + [anon_sym_and_eq] = ACTIONS(4519), + [anon_sym_or_eq] = ACTIONS(4519), + [anon_sym_xor_eq] = ACTIONS(4519), + [anon_sym_LT_EQ_GT] = ACTIONS(4519), + [anon_sym_or] = ACTIONS(4517), + [anon_sym_and] = ACTIONS(4517), + [anon_sym_bitor] = ACTIONS(4519), + [anon_sym_xor] = ACTIONS(4517), + [anon_sym_bitand] = ACTIONS(4519), + [anon_sym_not_eq] = ACTIONS(4519), + [anon_sym_DASH_DASH] = ACTIONS(4519), + [anon_sym_PLUS_PLUS] = ACTIONS(4519), + [anon_sym_DOT] = ACTIONS(4517), + [anon_sym_DASH_GT] = ACTIONS(4519), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4519), + [anon_sym_decltype] = ACTIONS(4519), + [anon_sym_final] = ACTIONS(4519), + [anon_sym_override] = ACTIONS(4519), + [anon_sym_GT2] = ACTIONS(4519), + }, + [2166] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(4537), + [anon_sym_COMMA] = ACTIONS(4537), + [anon_sym_LPAREN2] = ACTIONS(4537), + [anon_sym_DASH] = ACTIONS(4535), + [anon_sym_PLUS] = ACTIONS(4535), + [anon_sym_STAR] = ACTIONS(4535), + [anon_sym_SLASH] = ACTIONS(4535), + [anon_sym_PERCENT] = ACTIONS(4535), + [anon_sym_PIPE_PIPE] = ACTIONS(4537), + [anon_sym_AMP_AMP] = ACTIONS(4537), + [anon_sym_PIPE] = ACTIONS(4535), + [anon_sym_CARET] = ACTIONS(4535), + [anon_sym_AMP] = ACTIONS(4535), + [anon_sym_EQ_EQ] = ACTIONS(4537), + [anon_sym_BANG_EQ] = ACTIONS(4537), + [anon_sym_GT] = ACTIONS(4535), + [anon_sym_GT_EQ] = ACTIONS(4535), + [anon_sym_LT_EQ] = ACTIONS(4535), + [anon_sym_LT] = ACTIONS(4535), + [anon_sym_LT_LT] = ACTIONS(4535), + [anon_sym_GT_GT] = ACTIONS(4535), + [anon_sym_COLON_COLON] = ACTIONS(4537), + [anon_sym_LBRACE] = ACTIONS(4537), + [anon_sym_LBRACK] = ACTIONS(4537), + [anon_sym_EQ] = ACTIONS(4535), + [anon_sym_const] = ACTIONS(4535), + [anon_sym_constexpr] = ACTIONS(4537), + [anon_sym_volatile] = ACTIONS(4537), + [anon_sym_restrict] = ACTIONS(4537), + [anon_sym___restrict__] = ACTIONS(4537), + [anon_sym__Atomic] = ACTIONS(4537), + [anon_sym__Noreturn] = ACTIONS(4537), + [anon_sym_noreturn] = ACTIONS(4537), + [anon_sym_mutable] = ACTIONS(4537), + [anon_sym_constinit] = ACTIONS(4537), + [anon_sym_consteval] = ACTIONS(4537), + [anon_sym_COLON] = ACTIONS(4535), + [anon_sym_QMARK] = ACTIONS(4537), + [anon_sym_STAR_EQ] = ACTIONS(4537), + [anon_sym_SLASH_EQ] = ACTIONS(4537), + [anon_sym_PERCENT_EQ] = ACTIONS(4537), + [anon_sym_PLUS_EQ] = ACTIONS(4537), + [anon_sym_DASH_EQ] = ACTIONS(4537), + [anon_sym_LT_LT_EQ] = ACTIONS(4537), + [anon_sym_GT_GT_EQ] = ACTIONS(4535), + [anon_sym_AMP_EQ] = ACTIONS(4537), + [anon_sym_CARET_EQ] = ACTIONS(4537), + [anon_sym_PIPE_EQ] = ACTIONS(4537), + [anon_sym_and_eq] = ACTIONS(4537), + [anon_sym_or_eq] = ACTIONS(4537), + [anon_sym_xor_eq] = ACTIONS(4537), + [anon_sym_LT_EQ_GT] = ACTIONS(4537), + [anon_sym_or] = ACTIONS(4535), + [anon_sym_and] = ACTIONS(4535), + [anon_sym_bitor] = ACTIONS(4537), + [anon_sym_xor] = ACTIONS(4535), + [anon_sym_bitand] = ACTIONS(4537), + [anon_sym_not_eq] = ACTIONS(4537), + [anon_sym_DASH_DASH] = ACTIONS(4537), + [anon_sym_PLUS_PLUS] = ACTIONS(4537), + [anon_sym_DOT] = ACTIONS(4535), + [anon_sym_DASH_GT] = ACTIONS(4537), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4537), + [anon_sym_decltype] = ACTIONS(4537), + [anon_sym_final] = ACTIONS(4537), + [anon_sym_override] = ACTIONS(4537), + [anon_sym_GT2] = ACTIONS(4537), + }, + [2167] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(4562), + [anon_sym_COMMA] = ACTIONS(4562), + [anon_sym_RPAREN] = ACTIONS(4552), + [anon_sym_LPAREN2] = ACTIONS(4552), + [anon_sym_DASH] = ACTIONS(4557), + [anon_sym_PLUS] = ACTIONS(4557), + [anon_sym_STAR] = ACTIONS(4559), + [anon_sym_SLASH] = ACTIONS(4557), + [anon_sym_PERCENT] = ACTIONS(4557), + [anon_sym_PIPE_PIPE] = ACTIONS(4562), + [anon_sym_AMP_AMP] = ACTIONS(4552), + [anon_sym_PIPE] = ACTIONS(4557), + [anon_sym_CARET] = ACTIONS(4557), + [anon_sym_AMP] = ACTIONS(4559), + [anon_sym_EQ_EQ] = ACTIONS(4562), + [anon_sym_BANG_EQ] = ACTIONS(4562), + [anon_sym_GT] = ACTIONS(4557), + [anon_sym_GT_EQ] = ACTIONS(4562), + [anon_sym_LT_EQ] = ACTIONS(4557), + [anon_sym_LT] = ACTIONS(4557), + [anon_sym_LT_LT] = ACTIONS(4557), + [anon_sym_GT_GT] = ACTIONS(4557), + [anon_sym_COLON_COLON] = ACTIONS(4555), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4562), + [anon_sym_LBRACE] = ACTIONS(4555), + [anon_sym_LBRACK] = ACTIONS(4559), + [anon_sym_EQ] = ACTIONS(4557), + [anon_sym_const] = ACTIONS(4550), + [anon_sym_constexpr] = ACTIONS(4555), + [anon_sym_volatile] = ACTIONS(4555), + [anon_sym_restrict] = ACTIONS(4555), + [anon_sym___restrict__] = ACTIONS(4555), + [anon_sym__Atomic] = ACTIONS(4555), + [anon_sym__Noreturn] = ACTIONS(4555), + [anon_sym_noreturn] = ACTIONS(4555), + [anon_sym_mutable] = ACTIONS(4555), + [anon_sym_constinit] = ACTIONS(4555), + [anon_sym_consteval] = ACTIONS(4555), + [anon_sym_QMARK] = ACTIONS(4562), + [anon_sym_STAR_EQ] = ACTIONS(4562), + [anon_sym_SLASH_EQ] = ACTIONS(4562), + [anon_sym_PERCENT_EQ] = ACTIONS(4562), + [anon_sym_PLUS_EQ] = ACTIONS(4562), + [anon_sym_DASH_EQ] = ACTIONS(4562), + [anon_sym_LT_LT_EQ] = ACTIONS(4562), + [anon_sym_GT_GT_EQ] = ACTIONS(4562), + [anon_sym_AMP_EQ] = ACTIONS(4562), + [anon_sym_CARET_EQ] = ACTIONS(4562), + [anon_sym_PIPE_EQ] = ACTIONS(4562), + [anon_sym_and_eq] = ACTIONS(4562), + [anon_sym_or_eq] = ACTIONS(4562), + [anon_sym_xor_eq] = ACTIONS(4562), + [anon_sym_LT_EQ_GT] = ACTIONS(4562), + [anon_sym_or] = ACTIONS(4557), + [anon_sym_and] = ACTIONS(4557), + [anon_sym_bitor] = ACTIONS(4562), + [anon_sym_xor] = ACTIONS(4557), + [anon_sym_bitand] = ACTIONS(4562), + [anon_sym_not_eq] = ACTIONS(4562), + [anon_sym_DASH_DASH] = ACTIONS(4562), + [anon_sym_PLUS_PLUS] = ACTIONS(4562), + [anon_sym_DOT] = ACTIONS(4557), + [anon_sym_DASH_GT] = ACTIONS(4557), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4555), + [anon_sym_decltype] = ACTIONS(4555), + [anon_sym_DOT_STAR] = ACTIONS(4562), + [anon_sym_DASH_GT_STAR] = ACTIONS(4562), + }, + [2168] = { + [sym__declaration_modifiers] = STATE(2530), + [sym__declaration_specifiers] = STATE(3815), + [sym_attribute_specifier] = STATE(2530), + [sym_attribute_declaration] = STATE(2530), + [sym_ms_declspec_modifier] = STATE(2530), + [sym_storage_class_specifier] = STATE(2530), + [sym_type_qualifier] = STATE(2530), + [sym__type_specifier] = STATE(3633), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), + [sym_parameter_declaration] = STATE(6216), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym_virtual] = STATE(2530), + [sym_dependent_type] = STATE(3723), + [sym_type_parameter_declaration] = STATE(6216), + [sym_variadic_type_parameter_declaration] = STATE(6216), + [sym_optional_type_parameter_declaration] = STATE(6216), + [sym_template_template_parameter_declaration] = STATE(6216), + [sym_optional_parameter_declaration] = STATE(6216), + [sym_variadic_parameter_declaration] = STATE(6216), + [sym_template_type] = STATE(3680), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5733), + [sym_qualified_type_identifier] = STATE(3694), + [aux_sym__declaration_specifiers_repeat1] = STATE(2530), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [sym_identifier] = ACTIONS(4570), + [anon_sym_extern] = ACTIONS(53), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(4580), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1813), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(53), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(3667), + [anon_sym_enum] = ACTIONS(1853), + [anon_sym_class] = ACTIONS(4657), + [anon_sym_struct] = ACTIONS(1857), + [anon_sym_union] = ACTIONS(1859), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(113), + [anon_sym_decltype] = ACTIONS(115), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_typename] = ACTIONS(4659), + [anon_sym_template] = ACTIONS(4661), + [anon_sym_GT2] = ACTIONS(4665), + }, + [2169] = { + [sym_template_argument_list] = STATE(2228), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4457), + [anon_sym_COMMA] = ACTIONS(4457), + [anon_sym_RPAREN] = ACTIONS(4470), + [anon_sym_LPAREN2] = ACTIONS(4470), + [anon_sym_DASH] = ACTIONS(4465), + [anon_sym_PLUS] = ACTIONS(4465), + [anon_sym_STAR] = ACTIONS(4467), + [anon_sym_SLASH] = ACTIONS(4465), + [anon_sym_PERCENT] = ACTIONS(4465), + [anon_sym_PIPE_PIPE] = ACTIONS(4457), + [anon_sym_AMP_AMP] = ACTIONS(4470), + [anon_sym_PIPE] = ACTIONS(4465), + [anon_sym_CARET] = ACTIONS(4465), + [anon_sym_AMP] = ACTIONS(4467), + [anon_sym_EQ_EQ] = ACTIONS(4457), + [anon_sym_BANG_EQ] = ACTIONS(4457), + [anon_sym_GT] = ACTIONS(4465), + [anon_sym_GT_EQ] = ACTIONS(4457), + [anon_sym_LT_EQ] = ACTIONS(4465), + [anon_sym_LT] = ACTIONS(4667), + [anon_sym_LT_LT] = ACTIONS(4465), + [anon_sym_GT_GT] = ACTIONS(4465), + [anon_sym_COLON_COLON] = ACTIONS(4476), + [anon_sym_LBRACE] = ACTIONS(4481), + [anon_sym_LBRACK] = ACTIONS(4470), + [anon_sym_EQ] = ACTIONS(4465), + [anon_sym_const] = ACTIONS(4455), + [anon_sym_constexpr] = ACTIONS(4463), + [anon_sym_volatile] = ACTIONS(4463), + [anon_sym_restrict] = ACTIONS(4463), + [anon_sym___restrict__] = ACTIONS(4463), + [anon_sym__Atomic] = ACTIONS(4463), + [anon_sym__Noreturn] = ACTIONS(4463), + [anon_sym_noreturn] = ACTIONS(4463), + [anon_sym_mutable] = ACTIONS(4463), + [anon_sym_constinit] = ACTIONS(4463), + [anon_sym_consteval] = ACTIONS(4463), + [anon_sym_QMARK] = ACTIONS(4457), + [anon_sym_STAR_EQ] = ACTIONS(4457), + [anon_sym_SLASH_EQ] = ACTIONS(4457), + [anon_sym_PERCENT_EQ] = ACTIONS(4457), + [anon_sym_PLUS_EQ] = ACTIONS(4457), + [anon_sym_DASH_EQ] = ACTIONS(4457), + [anon_sym_LT_LT_EQ] = ACTIONS(4457), + [anon_sym_GT_GT_EQ] = ACTIONS(4457), + [anon_sym_AMP_EQ] = ACTIONS(4457), + [anon_sym_CARET_EQ] = ACTIONS(4457), + [anon_sym_PIPE_EQ] = ACTIONS(4457), + [anon_sym_and_eq] = ACTIONS(4652), + [anon_sym_or_eq] = ACTIONS(4652), + [anon_sym_xor_eq] = ACTIONS(4652), + [anon_sym_LT_EQ_GT] = ACTIONS(4457), + [anon_sym_or] = ACTIONS(4465), + [anon_sym_and] = ACTIONS(4465), + [anon_sym_bitor] = ACTIONS(4457), + [anon_sym_xor] = ACTIONS(4465), + [anon_sym_bitand] = ACTIONS(4457), + [anon_sym_not_eq] = ACTIONS(4457), + [anon_sym_DASH_DASH] = ACTIONS(4457), + [anon_sym_PLUS_PLUS] = ACTIONS(4457), + [anon_sym_DOT] = ACTIONS(4465), + [anon_sym_DASH_GT] = ACTIONS(4465), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4463), + [anon_sym_decltype] = ACTIONS(4463), + [anon_sym_DOT_STAR] = ACTIONS(4457), + [anon_sym_DASH_GT_STAR] = ACTIONS(4457), + }, + [2170] = { + [sym_string_literal] = STATE(2174), + [sym_raw_string_literal] = STATE(2174), + [aux_sym_concatenated_string_repeat1] = STATE(2174), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4670), + [anon_sym_COMMA] = ACTIONS(4670), + [anon_sym_RPAREN] = ACTIONS(4670), + [anon_sym_LPAREN2] = ACTIONS(4670), + [anon_sym_DASH] = ACTIONS(4672), + [anon_sym_PLUS] = ACTIONS(4672), + [anon_sym_STAR] = ACTIONS(4672), + [anon_sym_SLASH] = ACTIONS(4672), + [anon_sym_PERCENT] = ACTIONS(4672), + [anon_sym_PIPE_PIPE] = ACTIONS(4670), + [anon_sym_AMP_AMP] = ACTIONS(4670), + [anon_sym_PIPE] = ACTIONS(4672), + [anon_sym_CARET] = ACTIONS(4672), + [anon_sym_AMP] = ACTIONS(4672), + [anon_sym_EQ_EQ] = ACTIONS(4670), + [anon_sym_BANG_EQ] = ACTIONS(4670), + [anon_sym_GT] = ACTIONS(4672), + [anon_sym_GT_EQ] = ACTIONS(4670), + [anon_sym_LT_EQ] = ACTIONS(4672), + [anon_sym_LT] = ACTIONS(4672), + [anon_sym_LT_LT] = ACTIONS(4672), + [anon_sym_GT_GT] = ACTIONS(4672), + [anon_sym_SEMI] = ACTIONS(4670), + [anon_sym_RBRACE] = ACTIONS(4670), + [anon_sym_LBRACK] = ACTIONS(4670), + [anon_sym_RBRACK] = ACTIONS(4670), + [anon_sym_EQ] = ACTIONS(4672), + [anon_sym_COLON] = ACTIONS(4670), + [anon_sym_QMARK] = ACTIONS(4670), + [anon_sym_STAR_EQ] = ACTIONS(4670), + [anon_sym_SLASH_EQ] = ACTIONS(4670), + [anon_sym_PERCENT_EQ] = ACTIONS(4670), + [anon_sym_PLUS_EQ] = ACTIONS(4670), + [anon_sym_DASH_EQ] = ACTIONS(4670), + [anon_sym_LT_LT_EQ] = ACTIONS(4670), + [anon_sym_GT_GT_EQ] = ACTIONS(4670), + [anon_sym_AMP_EQ] = ACTIONS(4670), + [anon_sym_CARET_EQ] = ACTIONS(4670), + [anon_sym_PIPE_EQ] = ACTIONS(4670), + [anon_sym_and_eq] = ACTIONS(4672), + [anon_sym_or_eq] = ACTIONS(4672), + [anon_sym_xor_eq] = ACTIONS(4672), + [anon_sym_LT_EQ_GT] = ACTIONS(4670), + [anon_sym_or] = ACTIONS(4672), + [anon_sym_and] = ACTIONS(4672), + [anon_sym_bitor] = ACTIONS(4672), + [anon_sym_xor] = ACTIONS(4672), + [anon_sym_bitand] = ACTIONS(4672), + [anon_sym_not_eq] = ACTIONS(4672), + [anon_sym_DASH_DASH] = ACTIONS(4670), + [anon_sym_PLUS_PLUS] = ACTIONS(4670), + [anon_sym_DOT] = ACTIONS(4672), + [anon_sym_DASH_GT] = ACTIONS(4670), + [anon_sym_L_DQUOTE] = ACTIONS(1967), + [anon_sym_u_DQUOTE] = ACTIONS(1967), + [anon_sym_U_DQUOTE] = ACTIONS(1967), + [anon_sym_u8_DQUOTE] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(1967), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(1977), + [anon_sym_LR_DQUOTE] = ACTIONS(1977), + [anon_sym_uR_DQUOTE] = ACTIONS(1977), + [anon_sym_UR_DQUOTE] = ACTIONS(1977), + [anon_sym_u8R_DQUOTE] = ACTIONS(1977), + [sym_literal_suffix] = ACTIONS(4672), + }, + [2171] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(4533), + [anon_sym_COMMA] = ACTIONS(4533), + [anon_sym_LPAREN2] = ACTIONS(4533), + [anon_sym_DASH] = ACTIONS(4531), + [anon_sym_PLUS] = ACTIONS(4531), + [anon_sym_STAR] = ACTIONS(4531), + [anon_sym_SLASH] = ACTIONS(4531), + [anon_sym_PERCENT] = ACTIONS(4531), + [anon_sym_PIPE_PIPE] = ACTIONS(4533), + [anon_sym_AMP_AMP] = ACTIONS(4533), + [anon_sym_PIPE] = ACTIONS(4531), + [anon_sym_CARET] = ACTIONS(4531), + [anon_sym_AMP] = ACTIONS(4531), + [anon_sym_EQ_EQ] = ACTIONS(4533), + [anon_sym_BANG_EQ] = ACTIONS(4533), + [anon_sym_GT] = ACTIONS(4531), + [anon_sym_GT_EQ] = ACTIONS(4531), + [anon_sym_LT_EQ] = ACTIONS(4531), + [anon_sym_LT] = ACTIONS(4531), + [anon_sym_LT_LT] = ACTIONS(4531), + [anon_sym_GT_GT] = ACTIONS(4531), + [anon_sym_COLON_COLON] = ACTIONS(4533), + [anon_sym_LBRACE] = ACTIONS(4533), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_EQ] = ACTIONS(4531), + [anon_sym_const] = ACTIONS(4531), + [anon_sym_constexpr] = ACTIONS(4533), + [anon_sym_volatile] = ACTIONS(4533), + [anon_sym_restrict] = ACTIONS(4533), + [anon_sym___restrict__] = ACTIONS(4533), + [anon_sym__Atomic] = ACTIONS(4533), + [anon_sym__Noreturn] = ACTIONS(4533), + [anon_sym_noreturn] = ACTIONS(4533), + [anon_sym_mutable] = ACTIONS(4533), + [anon_sym_constinit] = ACTIONS(4533), + [anon_sym_consteval] = ACTIONS(4533), + [anon_sym_COLON] = ACTIONS(4531), + [anon_sym_QMARK] = ACTIONS(4533), + [anon_sym_STAR_EQ] = ACTIONS(4533), + [anon_sym_SLASH_EQ] = ACTIONS(4533), + [anon_sym_PERCENT_EQ] = ACTIONS(4533), + [anon_sym_PLUS_EQ] = ACTIONS(4533), + [anon_sym_DASH_EQ] = ACTIONS(4533), + [anon_sym_LT_LT_EQ] = ACTIONS(4533), + [anon_sym_GT_GT_EQ] = ACTIONS(4531), + [anon_sym_AMP_EQ] = ACTIONS(4533), + [anon_sym_CARET_EQ] = ACTIONS(4533), + [anon_sym_PIPE_EQ] = ACTIONS(4533), + [anon_sym_and_eq] = ACTIONS(4533), + [anon_sym_or_eq] = ACTIONS(4533), + [anon_sym_xor_eq] = ACTIONS(4533), + [anon_sym_LT_EQ_GT] = ACTIONS(4533), + [anon_sym_or] = ACTIONS(4531), + [anon_sym_and] = ACTIONS(4531), + [anon_sym_bitor] = ACTIONS(4533), + [anon_sym_xor] = ACTIONS(4531), + [anon_sym_bitand] = ACTIONS(4533), + [anon_sym_not_eq] = ACTIONS(4533), + [anon_sym_DASH_DASH] = ACTIONS(4533), + [anon_sym_PLUS_PLUS] = ACTIONS(4533), + [anon_sym_DOT] = ACTIONS(4531), + [anon_sym_DASH_GT] = ACTIONS(4533), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4533), + [anon_sym_decltype] = ACTIONS(4533), + [anon_sym_final] = ACTIONS(4533), + [anon_sym_override] = ACTIONS(4533), + [anon_sym_GT2] = ACTIONS(4533), + }, + [2172] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(4529), + [anon_sym_COMMA] = ACTIONS(4529), + [anon_sym_LPAREN2] = ACTIONS(4529), + [anon_sym_DASH] = ACTIONS(4527), + [anon_sym_PLUS] = ACTIONS(4527), + [anon_sym_STAR] = ACTIONS(4527), + [anon_sym_SLASH] = ACTIONS(4527), + [anon_sym_PERCENT] = ACTIONS(4527), + [anon_sym_PIPE_PIPE] = ACTIONS(4529), + [anon_sym_AMP_AMP] = ACTIONS(4529), + [anon_sym_PIPE] = ACTIONS(4527), + [anon_sym_CARET] = ACTIONS(4527), + [anon_sym_AMP] = ACTIONS(4527), + [anon_sym_EQ_EQ] = ACTIONS(4529), + [anon_sym_BANG_EQ] = ACTIONS(4529), + [anon_sym_GT] = ACTIONS(4527), + [anon_sym_GT_EQ] = ACTIONS(4527), + [anon_sym_LT_EQ] = ACTIONS(4527), + [anon_sym_LT] = ACTIONS(4527), + [anon_sym_LT_LT] = ACTIONS(4527), + [anon_sym_GT_GT] = ACTIONS(4527), + [anon_sym_COLON_COLON] = ACTIONS(4529), + [anon_sym_LBRACE] = ACTIONS(4529), + [anon_sym_LBRACK] = ACTIONS(4529), + [anon_sym_EQ] = ACTIONS(4527), + [anon_sym_const] = ACTIONS(4527), + [anon_sym_constexpr] = ACTIONS(4529), + [anon_sym_volatile] = ACTIONS(4529), + [anon_sym_restrict] = ACTIONS(4529), + [anon_sym___restrict__] = ACTIONS(4529), + [anon_sym__Atomic] = ACTIONS(4529), + [anon_sym__Noreturn] = ACTIONS(4529), + [anon_sym_noreturn] = ACTIONS(4529), + [anon_sym_mutable] = ACTIONS(4529), + [anon_sym_constinit] = ACTIONS(4529), + [anon_sym_consteval] = ACTIONS(4529), + [anon_sym_COLON] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4529), + [anon_sym_STAR_EQ] = ACTIONS(4529), + [anon_sym_SLASH_EQ] = ACTIONS(4529), + [anon_sym_PERCENT_EQ] = ACTIONS(4529), + [anon_sym_PLUS_EQ] = ACTIONS(4529), + [anon_sym_DASH_EQ] = ACTIONS(4529), + [anon_sym_LT_LT_EQ] = ACTIONS(4529), + [anon_sym_GT_GT_EQ] = ACTIONS(4527), + [anon_sym_AMP_EQ] = ACTIONS(4529), + [anon_sym_CARET_EQ] = ACTIONS(4529), + [anon_sym_PIPE_EQ] = ACTIONS(4529), + [anon_sym_and_eq] = ACTIONS(4529), + [anon_sym_or_eq] = ACTIONS(4529), + [anon_sym_xor_eq] = ACTIONS(4529), + [anon_sym_LT_EQ_GT] = ACTIONS(4529), + [anon_sym_or] = ACTIONS(4527), + [anon_sym_and] = ACTIONS(4527), + [anon_sym_bitor] = ACTIONS(4529), + [anon_sym_xor] = ACTIONS(4527), + [anon_sym_bitand] = ACTIONS(4529), + [anon_sym_not_eq] = ACTIONS(4529), + [anon_sym_DASH_DASH] = ACTIONS(4529), + [anon_sym_PLUS_PLUS] = ACTIONS(4529), + [anon_sym_DOT] = ACTIONS(4527), + [anon_sym_DASH_GT] = ACTIONS(4529), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4529), + [anon_sym_decltype] = ACTIONS(4529), + [anon_sym_final] = ACTIONS(4529), + [anon_sym_override] = ACTIONS(4529), + [anon_sym_GT2] = ACTIONS(4529), + }, + [2173] = { + [sym_string_literal] = STATE(2170), + [sym_raw_string_literal] = STATE(2170), + [aux_sym_concatenated_string_repeat1] = STATE(2170), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4457), + [anon_sym_COMMA] = ACTIONS(4457), + [anon_sym_RPAREN] = ACTIONS(4457), + [anon_sym_LPAREN2] = ACTIONS(4457), + [anon_sym_DASH] = ACTIONS(4465), + [anon_sym_PLUS] = ACTIONS(4465), + [anon_sym_STAR] = ACTIONS(4465), + [anon_sym_SLASH] = ACTIONS(4465), + [anon_sym_PERCENT] = ACTIONS(4465), + [anon_sym_PIPE_PIPE] = ACTIONS(4457), + [anon_sym_AMP_AMP] = ACTIONS(4457), + [anon_sym_PIPE] = ACTIONS(4465), + [anon_sym_CARET] = ACTIONS(4465), + [anon_sym_AMP] = ACTIONS(4465), + [anon_sym_EQ_EQ] = ACTIONS(4457), + [anon_sym_BANG_EQ] = ACTIONS(4457), + [anon_sym_GT] = ACTIONS(4465), + [anon_sym_GT_EQ] = ACTIONS(4457), + [anon_sym_LT_EQ] = ACTIONS(4465), + [anon_sym_LT] = ACTIONS(4465), + [anon_sym_LT_LT] = ACTIONS(4465), + [anon_sym_GT_GT] = ACTIONS(4465), + [anon_sym_SEMI] = ACTIONS(4457), + [anon_sym_RBRACE] = ACTIONS(4457), + [anon_sym_LBRACK] = ACTIONS(4457), + [anon_sym_RBRACK] = ACTIONS(4457), + [anon_sym_EQ] = ACTIONS(4465), + [anon_sym_COLON] = ACTIONS(4457), + [anon_sym_QMARK] = ACTIONS(4457), + [anon_sym_STAR_EQ] = ACTIONS(4457), + [anon_sym_SLASH_EQ] = ACTIONS(4457), + [anon_sym_PERCENT_EQ] = ACTIONS(4457), + [anon_sym_PLUS_EQ] = ACTIONS(4457), + [anon_sym_DASH_EQ] = ACTIONS(4457), + [anon_sym_LT_LT_EQ] = ACTIONS(4457), + [anon_sym_GT_GT_EQ] = ACTIONS(4457), + [anon_sym_AMP_EQ] = ACTIONS(4457), + [anon_sym_CARET_EQ] = ACTIONS(4457), + [anon_sym_PIPE_EQ] = ACTIONS(4457), + [anon_sym_and_eq] = ACTIONS(4465), + [anon_sym_or_eq] = ACTIONS(4465), + [anon_sym_xor_eq] = ACTIONS(4465), + [anon_sym_LT_EQ_GT] = ACTIONS(4457), + [anon_sym_or] = ACTIONS(4465), + [anon_sym_and] = ACTIONS(4465), + [anon_sym_bitor] = ACTIONS(4465), + [anon_sym_xor] = ACTIONS(4465), + [anon_sym_bitand] = ACTIONS(4465), + [anon_sym_not_eq] = ACTIONS(4465), + [anon_sym_DASH_DASH] = ACTIONS(4457), + [anon_sym_PLUS_PLUS] = ACTIONS(4457), + [anon_sym_DOT] = ACTIONS(4465), + [anon_sym_DASH_GT] = ACTIONS(4457), + [anon_sym_L_DQUOTE] = ACTIONS(1967), + [anon_sym_u_DQUOTE] = ACTIONS(1967), + [anon_sym_U_DQUOTE] = ACTIONS(1967), + [anon_sym_u8_DQUOTE] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(1967), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(1977), + [anon_sym_LR_DQUOTE] = ACTIONS(1977), + [anon_sym_uR_DQUOTE] = ACTIONS(1977), + [anon_sym_UR_DQUOTE] = ACTIONS(1977), + [anon_sym_u8R_DQUOTE] = ACTIONS(1977), + [sym_literal_suffix] = ACTIONS(4674), + }, + [2174] = { + [sym_string_literal] = STATE(2174), + [sym_raw_string_literal] = STATE(2174), + [aux_sym_concatenated_string_repeat1] = STATE(2174), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4676), + [anon_sym_COMMA] = ACTIONS(4676), + [anon_sym_RPAREN] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(4676), + [anon_sym_DASH] = ACTIONS(4678), + [anon_sym_PLUS] = ACTIONS(4678), + [anon_sym_STAR] = ACTIONS(4678), + [anon_sym_SLASH] = ACTIONS(4678), + [anon_sym_PERCENT] = ACTIONS(4678), + [anon_sym_PIPE_PIPE] = ACTIONS(4676), + [anon_sym_AMP_AMP] = ACTIONS(4676), + [anon_sym_PIPE] = ACTIONS(4678), + [anon_sym_CARET] = ACTIONS(4678), + [anon_sym_AMP] = ACTIONS(4678), + [anon_sym_EQ_EQ] = ACTIONS(4676), + [anon_sym_BANG_EQ] = ACTIONS(4676), + [anon_sym_GT] = ACTIONS(4678), + [anon_sym_GT_EQ] = ACTIONS(4676), + [anon_sym_LT_EQ] = ACTIONS(4678), + [anon_sym_LT] = ACTIONS(4678), + [anon_sym_LT_LT] = ACTIONS(4678), + [anon_sym_GT_GT] = ACTIONS(4678), + [anon_sym_SEMI] = ACTIONS(4676), + [anon_sym_RBRACE] = ACTIONS(4676), + [anon_sym_LBRACK] = ACTIONS(4676), + [anon_sym_RBRACK] = ACTIONS(4676), + [anon_sym_EQ] = ACTIONS(4678), + [anon_sym_COLON] = ACTIONS(4676), + [anon_sym_QMARK] = ACTIONS(4676), + [anon_sym_STAR_EQ] = ACTIONS(4676), + [anon_sym_SLASH_EQ] = ACTIONS(4676), + [anon_sym_PERCENT_EQ] = ACTIONS(4676), + [anon_sym_PLUS_EQ] = ACTIONS(4676), + [anon_sym_DASH_EQ] = ACTIONS(4676), + [anon_sym_LT_LT_EQ] = ACTIONS(4676), + [anon_sym_GT_GT_EQ] = ACTIONS(4676), + [anon_sym_AMP_EQ] = ACTIONS(4676), + [anon_sym_CARET_EQ] = ACTIONS(4676), + [anon_sym_PIPE_EQ] = ACTIONS(4676), + [anon_sym_and_eq] = ACTIONS(4678), + [anon_sym_or_eq] = ACTIONS(4678), + [anon_sym_xor_eq] = ACTIONS(4678), + [anon_sym_LT_EQ_GT] = ACTIONS(4676), + [anon_sym_or] = ACTIONS(4678), + [anon_sym_and] = ACTIONS(4678), + [anon_sym_bitor] = ACTIONS(4678), + [anon_sym_xor] = ACTIONS(4678), + [anon_sym_bitand] = ACTIONS(4678), + [anon_sym_not_eq] = ACTIONS(4678), + [anon_sym_DASH_DASH] = ACTIONS(4676), + [anon_sym_PLUS_PLUS] = ACTIONS(4676), + [anon_sym_DOT] = ACTIONS(4678), + [anon_sym_DASH_GT] = ACTIONS(4676), + [anon_sym_L_DQUOTE] = ACTIONS(4680), + [anon_sym_u_DQUOTE] = ACTIONS(4680), + [anon_sym_U_DQUOTE] = ACTIONS(4680), + [anon_sym_u8_DQUOTE] = ACTIONS(4680), + [anon_sym_DQUOTE] = ACTIONS(4680), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(4683), + [anon_sym_LR_DQUOTE] = ACTIONS(4683), + [anon_sym_uR_DQUOTE] = ACTIONS(4683), + [anon_sym_UR_DQUOTE] = ACTIONS(4683), + [anon_sym_u8R_DQUOTE] = ACTIONS(4683), + [sym_literal_suffix] = ACTIONS(4678), + }, + [2175] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(4525), + [anon_sym_COMMA] = ACTIONS(4525), + [anon_sym_LPAREN2] = ACTIONS(4525), + [anon_sym_DASH] = ACTIONS(4523), + [anon_sym_PLUS] = ACTIONS(4523), + [anon_sym_STAR] = ACTIONS(4523), + [anon_sym_SLASH] = ACTIONS(4523), + [anon_sym_PERCENT] = ACTIONS(4523), + [anon_sym_PIPE_PIPE] = ACTIONS(4525), + [anon_sym_AMP_AMP] = ACTIONS(4525), + [anon_sym_PIPE] = ACTIONS(4523), + [anon_sym_CARET] = ACTIONS(4523), + [anon_sym_AMP] = ACTIONS(4523), + [anon_sym_EQ_EQ] = ACTIONS(4525), + [anon_sym_BANG_EQ] = ACTIONS(4525), + [anon_sym_GT] = ACTIONS(4523), + [anon_sym_GT_EQ] = ACTIONS(4523), + [anon_sym_LT_EQ] = ACTIONS(4523), + [anon_sym_LT] = ACTIONS(4523), + [anon_sym_LT_LT] = ACTIONS(4523), + [anon_sym_GT_GT] = ACTIONS(4523), + [anon_sym_COLON_COLON] = ACTIONS(4525), + [anon_sym_LBRACE] = ACTIONS(4525), + [anon_sym_LBRACK] = ACTIONS(4525), + [anon_sym_EQ] = ACTIONS(4523), + [anon_sym_const] = ACTIONS(4523), + [anon_sym_constexpr] = ACTIONS(4525), + [anon_sym_volatile] = ACTIONS(4525), + [anon_sym_restrict] = ACTIONS(4525), + [anon_sym___restrict__] = ACTIONS(4525), + [anon_sym__Atomic] = ACTIONS(4525), + [anon_sym__Noreturn] = ACTIONS(4525), + [anon_sym_noreturn] = ACTIONS(4525), + [anon_sym_mutable] = ACTIONS(4525), + [anon_sym_constinit] = ACTIONS(4525), + [anon_sym_consteval] = ACTIONS(4525), + [anon_sym_COLON] = ACTIONS(4523), + [anon_sym_QMARK] = ACTIONS(4525), + [anon_sym_STAR_EQ] = ACTIONS(4525), + [anon_sym_SLASH_EQ] = ACTIONS(4525), + [anon_sym_PERCENT_EQ] = ACTIONS(4525), + [anon_sym_PLUS_EQ] = ACTIONS(4525), + [anon_sym_DASH_EQ] = ACTIONS(4525), + [anon_sym_LT_LT_EQ] = ACTIONS(4525), + [anon_sym_GT_GT_EQ] = ACTIONS(4523), + [anon_sym_AMP_EQ] = ACTIONS(4525), + [anon_sym_CARET_EQ] = ACTIONS(4525), + [anon_sym_PIPE_EQ] = ACTIONS(4525), + [anon_sym_and_eq] = ACTIONS(4525), + [anon_sym_or_eq] = ACTIONS(4525), + [anon_sym_xor_eq] = ACTIONS(4525), + [anon_sym_LT_EQ_GT] = ACTIONS(4525), + [anon_sym_or] = ACTIONS(4523), + [anon_sym_and] = ACTIONS(4523), + [anon_sym_bitor] = ACTIONS(4525), + [anon_sym_xor] = ACTIONS(4523), + [anon_sym_bitand] = ACTIONS(4525), + [anon_sym_not_eq] = ACTIONS(4525), + [anon_sym_DASH_DASH] = ACTIONS(4525), + [anon_sym_PLUS_PLUS] = ACTIONS(4525), + [anon_sym_DOT] = ACTIONS(4523), + [anon_sym_DASH_GT] = ACTIONS(4525), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4525), + [anon_sym_decltype] = ACTIONS(4525), + [anon_sym_final] = ACTIONS(4525), + [anon_sym_override] = ACTIONS(4525), + [anon_sym_GT2] = ACTIONS(4525), + }, + [2176] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(4562), + [anon_sym_COMMA] = ACTIONS(4562), + [anon_sym_RPAREN] = ACTIONS(4552), + [anon_sym_LPAREN2] = ACTIONS(4552), + [anon_sym_DASH] = ACTIONS(4557), + [anon_sym_PLUS] = ACTIONS(4557), + [anon_sym_STAR] = ACTIONS(4559), + [anon_sym_SLASH] = ACTIONS(4557), + [anon_sym_PERCENT] = ACTIONS(4557), + [anon_sym_PIPE_PIPE] = ACTIONS(4562), + [anon_sym_AMP_AMP] = ACTIONS(4552), + [anon_sym_PIPE] = ACTIONS(4557), + [anon_sym_CARET] = ACTIONS(4557), + [anon_sym_AMP] = ACTIONS(4559), + [anon_sym_EQ_EQ] = ACTIONS(4562), + [anon_sym_BANG_EQ] = ACTIONS(4562), + [anon_sym_GT] = ACTIONS(4557), + [anon_sym_GT_EQ] = ACTIONS(4562), + [anon_sym_LT_EQ] = ACTIONS(4557), + [anon_sym_LT] = ACTIONS(4557), + [anon_sym_LT_LT] = ACTIONS(4557), + [anon_sym_GT_GT] = ACTIONS(4557), + [anon_sym_COLON_COLON] = ACTIONS(4555), + [anon_sym_LBRACE] = ACTIONS(4555), + [anon_sym_LBRACK] = ACTIONS(4552), + [anon_sym_EQ] = ACTIONS(4557), + [anon_sym_const] = ACTIONS(4550), + [anon_sym_constexpr] = ACTIONS(4555), + [anon_sym_volatile] = ACTIONS(4555), + [anon_sym_restrict] = ACTIONS(4555), + [anon_sym___restrict__] = ACTIONS(4555), + [anon_sym__Atomic] = ACTIONS(4555), + [anon_sym__Noreturn] = ACTIONS(4555), + [anon_sym_noreturn] = ACTIONS(4555), + [anon_sym_mutable] = ACTIONS(4555), + [anon_sym_constinit] = ACTIONS(4555), + [anon_sym_consteval] = ACTIONS(4555), + [anon_sym_QMARK] = ACTIONS(4562), + [anon_sym_STAR_EQ] = ACTIONS(4562), + [anon_sym_SLASH_EQ] = ACTIONS(4562), + [anon_sym_PERCENT_EQ] = ACTIONS(4562), + [anon_sym_PLUS_EQ] = ACTIONS(4562), + [anon_sym_DASH_EQ] = ACTIONS(4562), + [anon_sym_LT_LT_EQ] = ACTIONS(4562), + [anon_sym_GT_GT_EQ] = ACTIONS(4562), + [anon_sym_AMP_EQ] = ACTIONS(4562), + [anon_sym_CARET_EQ] = ACTIONS(4562), + [anon_sym_PIPE_EQ] = ACTIONS(4562), + [anon_sym_and_eq] = ACTIONS(4562), + [anon_sym_or_eq] = ACTIONS(4562), + [anon_sym_xor_eq] = ACTIONS(4562), + [anon_sym_LT_EQ_GT] = ACTIONS(4562), + [anon_sym_or] = ACTIONS(4557), + [anon_sym_and] = ACTIONS(4557), + [anon_sym_bitor] = ACTIONS(4562), + [anon_sym_xor] = ACTIONS(4557), + [anon_sym_bitand] = ACTIONS(4562), + [anon_sym_not_eq] = ACTIONS(4562), + [anon_sym_DASH_DASH] = ACTIONS(4562), + [anon_sym_PLUS_PLUS] = ACTIONS(4562), + [anon_sym_DOT] = ACTIONS(4557), + [anon_sym_DASH_GT] = ACTIONS(4557), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4555), + [anon_sym_decltype] = ACTIONS(4555), + [anon_sym_DOT_STAR] = ACTIONS(4562), + [anon_sym_DASH_GT_STAR] = ACTIONS(4562), + }, + [2177] = { + [sym_identifier] = ACTIONS(4686), + [anon_sym_COMMA] = ACTIONS(4688), + [anon_sym_RPAREN] = ACTIONS(4688), + [anon_sym_LPAREN2] = ACTIONS(4688), + [anon_sym_TILDE] = ACTIONS(4688), + [anon_sym_STAR] = ACTIONS(4688), + [anon_sym_PIPE_PIPE] = ACTIONS(4688), + [anon_sym_AMP_AMP] = ACTIONS(4688), + [anon_sym_AMP] = ACTIONS(4686), + [anon_sym_SEMI] = ACTIONS(4688), + [anon_sym_extern] = ACTIONS(4686), + [anon_sym___attribute__] = ACTIONS(4686), + [anon_sym_COLON_COLON] = ACTIONS(4688), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4688), + [anon_sym___declspec] = ACTIONS(4686), + [anon_sym___based] = ACTIONS(4686), + [anon_sym___cdecl] = ACTIONS(4686), + [anon_sym___clrcall] = ACTIONS(4686), + [anon_sym___stdcall] = ACTIONS(4686), + [anon_sym___fastcall] = ACTIONS(4686), + [anon_sym___thiscall] = ACTIONS(4686), + [anon_sym___vectorcall] = ACTIONS(4686), + [anon_sym_LBRACE] = ACTIONS(4688), + [anon_sym_LBRACK] = ACTIONS(4686), + [anon_sym_EQ] = ACTIONS(4688), + [anon_sym_static] = ACTIONS(4686), + [anon_sym_register] = ACTIONS(4686), + [anon_sym_inline] = ACTIONS(4686), + [anon_sym_thread_local] = ACTIONS(4686), + [anon_sym_const] = ACTIONS(4686), + [anon_sym_constexpr] = ACTIONS(4686), + [anon_sym_volatile] = ACTIONS(4686), + [anon_sym_restrict] = ACTIONS(4686), + [anon_sym___restrict__] = ACTIONS(4686), + [anon_sym__Atomic] = ACTIONS(4686), + [anon_sym__Noreturn] = ACTIONS(4686), + [anon_sym_noreturn] = ACTIONS(4686), + [anon_sym_mutable] = ACTIONS(4686), + [anon_sym_constinit] = ACTIONS(4686), + [anon_sym_consteval] = ACTIONS(4686), + [anon_sym_signed] = ACTIONS(4686), + [anon_sym_unsigned] = ACTIONS(4686), + [anon_sym_long] = ACTIONS(4686), + [anon_sym_short] = ACTIONS(4686), + [sym_primitive_type] = ACTIONS(4686), + [anon_sym_enum] = ACTIONS(4686), + [anon_sym_class] = ACTIONS(4686), + [anon_sym_struct] = ACTIONS(4686), + [anon_sym_union] = ACTIONS(4686), + [anon_sym_or] = ACTIONS(4686), + [anon_sym_and] = ACTIONS(4686), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4686), + [anon_sym_decltype] = ACTIONS(4686), + [anon_sym_final] = ACTIONS(4686), + [anon_sym_override] = ACTIONS(4686), + [anon_sym_virtual] = ACTIONS(4686), + [anon_sym_explicit] = ACTIONS(4686), + [anon_sym_typename] = ACTIONS(4686), + [anon_sym_template] = ACTIONS(4686), + [anon_sym_GT2] = ACTIONS(4688), + [anon_sym_operator] = ACTIONS(4686), + [anon_sym_try] = ACTIONS(4686), + [anon_sym_friend] = ACTIONS(4686), + [anon_sym_using] = ACTIONS(4686), + [anon_sym_concept] = ACTIONS(4686), + [anon_sym_requires] = ACTIONS(4686), + }, + [2178] = { + [sym_identifier] = ACTIONS(4690), + [anon_sym_COMMA] = ACTIONS(4692), + [anon_sym_RPAREN] = ACTIONS(4692), + [anon_sym_LPAREN2] = ACTIONS(4692), + [anon_sym_TILDE] = ACTIONS(4692), + [anon_sym_STAR] = ACTIONS(4692), + [anon_sym_PIPE_PIPE] = ACTIONS(4692), + [anon_sym_AMP_AMP] = ACTIONS(4692), + [anon_sym_AMP] = ACTIONS(4690), + [anon_sym_SEMI] = ACTIONS(4692), + [anon_sym_extern] = ACTIONS(4690), + [anon_sym___attribute__] = ACTIONS(4690), + [anon_sym_COLON_COLON] = ACTIONS(4692), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4692), + [anon_sym___declspec] = ACTIONS(4690), + [anon_sym___based] = ACTIONS(4690), + [anon_sym___cdecl] = ACTIONS(4690), + [anon_sym___clrcall] = ACTIONS(4690), + [anon_sym___stdcall] = ACTIONS(4690), + [anon_sym___fastcall] = ACTIONS(4690), + [anon_sym___thiscall] = ACTIONS(4690), + [anon_sym___vectorcall] = ACTIONS(4690), + [anon_sym_LBRACE] = ACTIONS(4692), + [anon_sym_LBRACK] = ACTIONS(4690), + [anon_sym_EQ] = ACTIONS(4692), + [anon_sym_static] = ACTIONS(4690), + [anon_sym_register] = ACTIONS(4690), + [anon_sym_inline] = ACTIONS(4690), + [anon_sym_thread_local] = ACTIONS(4690), + [anon_sym_const] = ACTIONS(4690), + [anon_sym_constexpr] = ACTIONS(4690), + [anon_sym_volatile] = ACTIONS(4690), + [anon_sym_restrict] = ACTIONS(4690), + [anon_sym___restrict__] = ACTIONS(4690), + [anon_sym__Atomic] = ACTIONS(4690), + [anon_sym__Noreturn] = ACTIONS(4690), + [anon_sym_noreturn] = ACTIONS(4690), + [anon_sym_mutable] = ACTIONS(4690), + [anon_sym_constinit] = ACTIONS(4690), + [anon_sym_consteval] = ACTIONS(4690), + [anon_sym_signed] = ACTIONS(4690), + [anon_sym_unsigned] = ACTIONS(4690), + [anon_sym_long] = ACTIONS(4690), + [anon_sym_short] = ACTIONS(4690), + [sym_primitive_type] = ACTIONS(4690), + [anon_sym_enum] = ACTIONS(4690), + [anon_sym_class] = ACTIONS(4690), + [anon_sym_struct] = ACTIONS(4690), + [anon_sym_union] = ACTIONS(4690), + [anon_sym_or] = ACTIONS(4690), + [anon_sym_and] = ACTIONS(4690), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4690), + [anon_sym_decltype] = ACTIONS(4690), + [anon_sym_final] = ACTIONS(4690), + [anon_sym_override] = ACTIONS(4690), + [anon_sym_virtual] = ACTIONS(4690), + [anon_sym_explicit] = ACTIONS(4690), + [anon_sym_typename] = ACTIONS(4690), + [anon_sym_template] = ACTIONS(4690), + [anon_sym_GT2] = ACTIONS(4692), + [anon_sym_operator] = ACTIONS(4690), + [anon_sym_try] = ACTIONS(4690), + [anon_sym_friend] = ACTIONS(4690), + [anon_sym_using] = ACTIONS(4690), + [anon_sym_concept] = ACTIONS(4690), + [anon_sym_requires] = ACTIONS(4690), + }, + [2179] = { + [sym_identifier] = ACTIONS(4694), + [anon_sym_COMMA] = ACTIONS(4696), + [anon_sym_RPAREN] = ACTIONS(4696), + [anon_sym_LPAREN2] = ACTIONS(4696), + [anon_sym_TILDE] = ACTIONS(4696), + [anon_sym_STAR] = ACTIONS(4696), + [anon_sym_PIPE_PIPE] = ACTIONS(4696), + [anon_sym_AMP_AMP] = ACTIONS(4696), + [anon_sym_AMP] = ACTIONS(4694), + [anon_sym_SEMI] = ACTIONS(4696), + [anon_sym_extern] = ACTIONS(4694), + [anon_sym___attribute__] = ACTIONS(4694), + [anon_sym_COLON_COLON] = ACTIONS(4696), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4696), + [anon_sym___declspec] = ACTIONS(4694), + [anon_sym___based] = ACTIONS(4694), + [anon_sym___cdecl] = ACTIONS(4694), + [anon_sym___clrcall] = ACTIONS(4694), + [anon_sym___stdcall] = ACTIONS(4694), + [anon_sym___fastcall] = ACTIONS(4694), + [anon_sym___thiscall] = ACTIONS(4694), + [anon_sym___vectorcall] = ACTIONS(4694), + [anon_sym_LBRACE] = ACTIONS(4696), + [anon_sym_LBRACK] = ACTIONS(4694), + [anon_sym_EQ] = ACTIONS(4696), + [anon_sym_static] = ACTIONS(4694), + [anon_sym_register] = ACTIONS(4694), + [anon_sym_inline] = ACTIONS(4694), + [anon_sym_thread_local] = ACTIONS(4694), + [anon_sym_const] = ACTIONS(4694), + [anon_sym_constexpr] = ACTIONS(4694), + [anon_sym_volatile] = ACTIONS(4694), + [anon_sym_restrict] = ACTIONS(4694), + [anon_sym___restrict__] = ACTIONS(4694), + [anon_sym__Atomic] = ACTIONS(4694), + [anon_sym__Noreturn] = ACTIONS(4694), + [anon_sym_noreturn] = ACTIONS(4694), + [anon_sym_mutable] = ACTIONS(4694), + [anon_sym_constinit] = ACTIONS(4694), + [anon_sym_consteval] = ACTIONS(4694), + [anon_sym_signed] = ACTIONS(4694), + [anon_sym_unsigned] = ACTIONS(4694), + [anon_sym_long] = ACTIONS(4694), + [anon_sym_short] = ACTIONS(4694), + [sym_primitive_type] = ACTIONS(4694), + [anon_sym_enum] = ACTIONS(4694), + [anon_sym_class] = ACTIONS(4694), + [anon_sym_struct] = ACTIONS(4694), + [anon_sym_union] = ACTIONS(4694), + [anon_sym_or] = ACTIONS(4694), + [anon_sym_and] = ACTIONS(4694), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4694), + [anon_sym_decltype] = ACTIONS(4694), + [anon_sym_final] = ACTIONS(4694), + [anon_sym_override] = ACTIONS(4694), + [anon_sym_virtual] = ACTIONS(4694), + [anon_sym_explicit] = ACTIONS(4694), + [anon_sym_typename] = ACTIONS(4694), + [anon_sym_template] = ACTIONS(4694), + [anon_sym_GT2] = ACTIONS(4696), + [anon_sym_operator] = ACTIONS(4694), + [anon_sym_try] = ACTIONS(4694), + [anon_sym_friend] = ACTIONS(4694), + [anon_sym_using] = ACTIONS(4694), + [anon_sym_concept] = ACTIONS(4694), + [anon_sym_requires] = ACTIONS(4694), + }, + [2180] = { + [sym_identifier] = ACTIONS(4698), + [anon_sym_COMMA] = ACTIONS(4700), + [anon_sym_RPAREN] = ACTIONS(4700), + [anon_sym_LPAREN2] = ACTIONS(4700), + [anon_sym_TILDE] = ACTIONS(4700), + [anon_sym_STAR] = ACTIONS(4700), + [anon_sym_PIPE_PIPE] = ACTIONS(4700), + [anon_sym_AMP_AMP] = ACTIONS(4700), + [anon_sym_AMP] = ACTIONS(4698), + [anon_sym_SEMI] = ACTIONS(4700), + [anon_sym_extern] = ACTIONS(4698), + [anon_sym___attribute__] = ACTIONS(4698), + [anon_sym_COLON_COLON] = ACTIONS(4700), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4700), + [anon_sym___declspec] = ACTIONS(4698), + [anon_sym___based] = ACTIONS(4698), + [anon_sym___cdecl] = ACTIONS(4698), + [anon_sym___clrcall] = ACTIONS(4698), + [anon_sym___stdcall] = ACTIONS(4698), + [anon_sym___fastcall] = ACTIONS(4698), + [anon_sym___thiscall] = ACTIONS(4698), + [anon_sym___vectorcall] = ACTIONS(4698), + [anon_sym_LBRACE] = ACTIONS(4700), + [anon_sym_LBRACK] = ACTIONS(4698), + [anon_sym_EQ] = ACTIONS(4700), + [anon_sym_static] = ACTIONS(4698), + [anon_sym_register] = ACTIONS(4698), + [anon_sym_inline] = ACTIONS(4698), + [anon_sym_thread_local] = ACTIONS(4698), + [anon_sym_const] = ACTIONS(4698), + [anon_sym_constexpr] = ACTIONS(4698), + [anon_sym_volatile] = ACTIONS(4698), + [anon_sym_restrict] = ACTIONS(4698), + [anon_sym___restrict__] = ACTIONS(4698), + [anon_sym__Atomic] = ACTIONS(4698), + [anon_sym__Noreturn] = ACTIONS(4698), + [anon_sym_noreturn] = ACTIONS(4698), + [anon_sym_mutable] = ACTIONS(4698), + [anon_sym_constinit] = ACTIONS(4698), + [anon_sym_consteval] = ACTIONS(4698), + [anon_sym_signed] = ACTIONS(4698), + [anon_sym_unsigned] = ACTIONS(4698), + [anon_sym_long] = ACTIONS(4698), + [anon_sym_short] = ACTIONS(4698), + [sym_primitive_type] = ACTIONS(4698), + [anon_sym_enum] = ACTIONS(4698), + [anon_sym_class] = ACTIONS(4698), + [anon_sym_struct] = ACTIONS(4698), + [anon_sym_union] = ACTIONS(4698), + [anon_sym_or] = ACTIONS(4698), + [anon_sym_and] = ACTIONS(4698), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4698), + [anon_sym_decltype] = ACTIONS(4698), + [anon_sym_final] = ACTIONS(4698), + [anon_sym_override] = ACTIONS(4698), + [anon_sym_virtual] = ACTIONS(4698), + [anon_sym_explicit] = ACTIONS(4698), + [anon_sym_typename] = ACTIONS(4698), + [anon_sym_template] = ACTIONS(4698), + [anon_sym_GT2] = ACTIONS(4700), + [anon_sym_operator] = ACTIONS(4698), + [anon_sym_try] = ACTIONS(4698), + [anon_sym_friend] = ACTIONS(4698), + [anon_sym_using] = ACTIONS(4698), + [anon_sym_concept] = ACTIONS(4698), + [anon_sym_requires] = ACTIONS(4698), + }, + [2181] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(4529), + [anon_sym_COMMA] = ACTIONS(4529), + [anon_sym_RPAREN] = ACTIONS(4529), + [anon_sym_LPAREN2] = ACTIONS(4529), + [anon_sym_DASH] = ACTIONS(4527), + [anon_sym_PLUS] = ACTIONS(4527), + [anon_sym_STAR] = ACTIONS(4527), + [anon_sym_SLASH] = ACTIONS(4527), + [anon_sym_PERCENT] = ACTIONS(4527), + [anon_sym_PIPE_PIPE] = ACTIONS(4529), + [anon_sym_AMP_AMP] = ACTIONS(4529), + [anon_sym_PIPE] = ACTIONS(4527), + [anon_sym_CARET] = ACTIONS(4527), + [anon_sym_AMP] = ACTIONS(4527), + [anon_sym_EQ_EQ] = ACTIONS(4529), + [anon_sym_BANG_EQ] = ACTIONS(4529), + [anon_sym_GT] = ACTIONS(4527), + [anon_sym_GT_EQ] = ACTIONS(4529), + [anon_sym_LT_EQ] = ACTIONS(4527), + [anon_sym_LT] = ACTIONS(4527), + [anon_sym_LT_LT] = ACTIONS(4527), + [anon_sym_GT_GT] = ACTIONS(4527), + [anon_sym_COLON_COLON] = ACTIONS(4529), + [anon_sym_LBRACE] = ACTIONS(4529), + [anon_sym_LBRACK] = ACTIONS(4529), + [anon_sym_EQ] = ACTIONS(4527), + [anon_sym_const] = ACTIONS(4527), + [anon_sym_constexpr] = ACTIONS(4529), + [anon_sym_volatile] = ACTIONS(4529), + [anon_sym_restrict] = ACTIONS(4529), + [anon_sym___restrict__] = ACTIONS(4529), + [anon_sym__Atomic] = ACTIONS(4529), + [anon_sym__Noreturn] = ACTIONS(4529), + [anon_sym_noreturn] = ACTIONS(4529), + [anon_sym_mutable] = ACTIONS(4529), + [anon_sym_constinit] = ACTIONS(4529), + [anon_sym_consteval] = ACTIONS(4529), + [anon_sym_COLON] = ACTIONS(4527), + [anon_sym_QMARK] = ACTIONS(4529), + [anon_sym_STAR_EQ] = ACTIONS(4529), + [anon_sym_SLASH_EQ] = ACTIONS(4529), + [anon_sym_PERCENT_EQ] = ACTIONS(4529), + [anon_sym_PLUS_EQ] = ACTIONS(4529), + [anon_sym_DASH_EQ] = ACTIONS(4529), + [anon_sym_LT_LT_EQ] = ACTIONS(4529), + [anon_sym_GT_GT_EQ] = ACTIONS(4529), + [anon_sym_AMP_EQ] = ACTIONS(4529), + [anon_sym_CARET_EQ] = ACTIONS(4529), + [anon_sym_PIPE_EQ] = ACTIONS(4529), + [anon_sym_LT_EQ_GT] = ACTIONS(4529), + [anon_sym_or] = ACTIONS(4529), + [anon_sym_and] = ACTIONS(4529), + [anon_sym_bitor] = ACTIONS(4529), + [anon_sym_xor] = ACTIONS(4529), + [anon_sym_bitand] = ACTIONS(4529), + [anon_sym_not_eq] = ACTIONS(4529), + [anon_sym_DASH_DASH] = ACTIONS(4529), + [anon_sym_PLUS_PLUS] = ACTIONS(4529), + [anon_sym_DOT] = ACTIONS(4527), + [anon_sym_DASH_GT] = ACTIONS(4527), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4529), + [anon_sym_decltype] = ACTIONS(4529), + [anon_sym_final] = ACTIONS(4529), + [anon_sym_override] = ACTIONS(4529), + [anon_sym_DOT_STAR] = ACTIONS(4529), + [anon_sym_DASH_GT_STAR] = ACTIONS(4529), + }, + [2182] = { + [sym_identifier] = ACTIONS(4702), + [anon_sym_COMMA] = ACTIONS(4704), + [anon_sym_RPAREN] = ACTIONS(4704), + [anon_sym_LPAREN2] = ACTIONS(4704), + [anon_sym_TILDE] = ACTIONS(4704), + [anon_sym_STAR] = ACTIONS(4704), + [anon_sym_PIPE_PIPE] = ACTIONS(4704), + [anon_sym_AMP_AMP] = ACTIONS(4704), + [anon_sym_AMP] = ACTIONS(4702), + [anon_sym_SEMI] = ACTIONS(4704), + [anon_sym_extern] = ACTIONS(4702), + [anon_sym___attribute__] = ACTIONS(4702), + [anon_sym_COLON_COLON] = ACTIONS(4704), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4704), + [anon_sym___declspec] = ACTIONS(4702), + [anon_sym___based] = ACTIONS(4702), + [anon_sym___cdecl] = ACTIONS(4702), + [anon_sym___clrcall] = ACTIONS(4702), + [anon_sym___stdcall] = ACTIONS(4702), + [anon_sym___fastcall] = ACTIONS(4702), + [anon_sym___thiscall] = ACTIONS(4702), + [anon_sym___vectorcall] = ACTIONS(4702), + [anon_sym_LBRACE] = ACTIONS(4704), + [anon_sym_LBRACK] = ACTIONS(4702), + [anon_sym_EQ] = ACTIONS(4704), + [anon_sym_static] = ACTIONS(4702), + [anon_sym_register] = ACTIONS(4702), + [anon_sym_inline] = ACTIONS(4702), + [anon_sym_thread_local] = ACTIONS(4702), + [anon_sym_const] = ACTIONS(4702), + [anon_sym_constexpr] = ACTIONS(4702), + [anon_sym_volatile] = ACTIONS(4702), + [anon_sym_restrict] = ACTIONS(4702), + [anon_sym___restrict__] = ACTIONS(4702), + [anon_sym__Atomic] = ACTIONS(4702), + [anon_sym__Noreturn] = ACTIONS(4702), + [anon_sym_noreturn] = ACTIONS(4702), + [anon_sym_mutable] = ACTIONS(4702), + [anon_sym_constinit] = ACTIONS(4702), + [anon_sym_consteval] = ACTIONS(4702), + [anon_sym_signed] = ACTIONS(4702), + [anon_sym_unsigned] = ACTIONS(4702), + [anon_sym_long] = ACTIONS(4702), + [anon_sym_short] = ACTIONS(4702), + [sym_primitive_type] = ACTIONS(4702), + [anon_sym_enum] = ACTIONS(4702), + [anon_sym_class] = ACTIONS(4702), + [anon_sym_struct] = ACTIONS(4702), + [anon_sym_union] = ACTIONS(4702), + [anon_sym_or] = ACTIONS(4702), + [anon_sym_and] = ACTIONS(4702), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4702), + [anon_sym_decltype] = ACTIONS(4702), + [anon_sym_final] = ACTIONS(4702), + [anon_sym_override] = ACTIONS(4702), + [anon_sym_virtual] = ACTIONS(4702), + [anon_sym_explicit] = ACTIONS(4702), + [anon_sym_typename] = ACTIONS(4702), + [anon_sym_template] = ACTIONS(4702), + [anon_sym_GT2] = ACTIONS(4704), + [anon_sym_operator] = ACTIONS(4702), + [anon_sym_try] = ACTIONS(4702), + [anon_sym_friend] = ACTIONS(4702), + [anon_sym_using] = ACTIONS(4702), + [anon_sym_concept] = ACTIONS(4702), + [anon_sym_requires] = ACTIONS(4702), + }, + [2183] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(4525), + [anon_sym_COMMA] = ACTIONS(4525), + [anon_sym_RPAREN] = ACTIONS(4525), + [anon_sym_LPAREN2] = ACTIONS(4525), + [anon_sym_DASH] = ACTIONS(4523), + [anon_sym_PLUS] = ACTIONS(4523), + [anon_sym_STAR] = ACTIONS(4523), + [anon_sym_SLASH] = ACTIONS(4523), + [anon_sym_PERCENT] = ACTIONS(4523), + [anon_sym_PIPE_PIPE] = ACTIONS(4525), + [anon_sym_AMP_AMP] = ACTIONS(4525), + [anon_sym_PIPE] = ACTIONS(4523), + [anon_sym_CARET] = ACTIONS(4523), + [anon_sym_AMP] = ACTIONS(4523), + [anon_sym_EQ_EQ] = ACTIONS(4525), + [anon_sym_BANG_EQ] = ACTIONS(4525), + [anon_sym_GT] = ACTIONS(4523), + [anon_sym_GT_EQ] = ACTIONS(4525), + [anon_sym_LT_EQ] = ACTIONS(4523), + [anon_sym_LT] = ACTIONS(4523), + [anon_sym_LT_LT] = ACTIONS(4523), + [anon_sym_GT_GT] = ACTIONS(4523), + [anon_sym_COLON_COLON] = ACTIONS(4525), + [anon_sym_LBRACE] = ACTIONS(4525), + [anon_sym_LBRACK] = ACTIONS(4525), + [anon_sym_EQ] = ACTIONS(4523), + [anon_sym_const] = ACTIONS(4523), + [anon_sym_constexpr] = ACTIONS(4525), + [anon_sym_volatile] = ACTIONS(4525), + [anon_sym_restrict] = ACTIONS(4525), + [anon_sym___restrict__] = ACTIONS(4525), + [anon_sym__Atomic] = ACTIONS(4525), + [anon_sym__Noreturn] = ACTIONS(4525), + [anon_sym_noreturn] = ACTIONS(4525), + [anon_sym_mutable] = ACTIONS(4525), + [anon_sym_constinit] = ACTIONS(4525), + [anon_sym_consteval] = ACTIONS(4525), + [anon_sym_COLON] = ACTIONS(4523), + [anon_sym_QMARK] = ACTIONS(4525), + [anon_sym_STAR_EQ] = ACTIONS(4525), + [anon_sym_SLASH_EQ] = ACTIONS(4525), + [anon_sym_PERCENT_EQ] = ACTIONS(4525), + [anon_sym_PLUS_EQ] = ACTIONS(4525), + [anon_sym_DASH_EQ] = ACTIONS(4525), + [anon_sym_LT_LT_EQ] = ACTIONS(4525), + [anon_sym_GT_GT_EQ] = ACTIONS(4525), + [anon_sym_AMP_EQ] = ACTIONS(4525), + [anon_sym_CARET_EQ] = ACTIONS(4525), + [anon_sym_PIPE_EQ] = ACTIONS(4525), + [anon_sym_LT_EQ_GT] = ACTIONS(4525), + [anon_sym_or] = ACTIONS(4525), + [anon_sym_and] = ACTIONS(4525), + [anon_sym_bitor] = ACTIONS(4525), + [anon_sym_xor] = ACTIONS(4525), + [anon_sym_bitand] = ACTIONS(4525), + [anon_sym_not_eq] = ACTIONS(4525), + [anon_sym_DASH_DASH] = ACTIONS(4525), + [anon_sym_PLUS_PLUS] = ACTIONS(4525), + [anon_sym_DOT] = ACTIONS(4523), + [anon_sym_DASH_GT] = ACTIONS(4523), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4525), + [anon_sym_decltype] = ACTIONS(4525), + [anon_sym_final] = ACTIONS(4525), + [anon_sym_override] = ACTIONS(4525), + [anon_sym_DOT_STAR] = ACTIONS(4525), + [anon_sym_DASH_GT_STAR] = ACTIONS(4525), + }, + [2184] = { + [sym_identifier] = ACTIONS(4706), + [anon_sym_COMMA] = ACTIONS(4708), + [anon_sym_RPAREN] = ACTIONS(4708), + [anon_sym_LPAREN2] = ACTIONS(4708), + [anon_sym_TILDE] = ACTIONS(4708), + [anon_sym_STAR] = ACTIONS(4708), + [anon_sym_PIPE_PIPE] = ACTIONS(4708), + [anon_sym_AMP_AMP] = ACTIONS(4708), + [anon_sym_AMP] = ACTIONS(4706), + [anon_sym_SEMI] = ACTIONS(4708), + [anon_sym_extern] = ACTIONS(4706), + [anon_sym___attribute__] = ACTIONS(4706), + [anon_sym_COLON_COLON] = ACTIONS(4708), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4708), + [anon_sym___declspec] = ACTIONS(4706), + [anon_sym___based] = ACTIONS(4706), + [anon_sym___cdecl] = ACTIONS(4706), + [anon_sym___clrcall] = ACTIONS(4706), + [anon_sym___stdcall] = ACTIONS(4706), + [anon_sym___fastcall] = ACTIONS(4706), + [anon_sym___thiscall] = ACTIONS(4706), + [anon_sym___vectorcall] = ACTIONS(4706), + [anon_sym_LBRACE] = ACTIONS(4708), + [anon_sym_LBRACK] = ACTIONS(4706), + [anon_sym_EQ] = ACTIONS(4708), + [anon_sym_static] = ACTIONS(4706), + [anon_sym_register] = ACTIONS(4706), + [anon_sym_inline] = ACTIONS(4706), + [anon_sym_thread_local] = ACTIONS(4706), + [anon_sym_const] = ACTIONS(4706), + [anon_sym_constexpr] = ACTIONS(4706), + [anon_sym_volatile] = ACTIONS(4706), + [anon_sym_restrict] = ACTIONS(4706), + [anon_sym___restrict__] = ACTIONS(4706), + [anon_sym__Atomic] = ACTIONS(4706), + [anon_sym__Noreturn] = ACTIONS(4706), + [anon_sym_noreturn] = ACTIONS(4706), + [anon_sym_mutable] = ACTIONS(4706), + [anon_sym_constinit] = ACTIONS(4706), + [anon_sym_consteval] = ACTIONS(4706), + [anon_sym_signed] = ACTIONS(4706), + [anon_sym_unsigned] = ACTIONS(4706), + [anon_sym_long] = ACTIONS(4706), + [anon_sym_short] = ACTIONS(4706), + [sym_primitive_type] = ACTIONS(4706), + [anon_sym_enum] = ACTIONS(4706), + [anon_sym_class] = ACTIONS(4706), + [anon_sym_struct] = ACTIONS(4706), + [anon_sym_union] = ACTIONS(4706), + [anon_sym_or] = ACTIONS(4706), + [anon_sym_and] = ACTIONS(4706), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4706), + [anon_sym_decltype] = ACTIONS(4706), + [anon_sym_final] = ACTIONS(4706), + [anon_sym_override] = ACTIONS(4706), + [anon_sym_virtual] = ACTIONS(4706), + [anon_sym_explicit] = ACTIONS(4706), + [anon_sym_typename] = ACTIONS(4706), + [anon_sym_template] = ACTIONS(4706), + [anon_sym_GT2] = ACTIONS(4708), + [anon_sym_operator] = ACTIONS(4706), + [anon_sym_try] = ACTIONS(4706), + [anon_sym_friend] = ACTIONS(4706), + [anon_sym_using] = ACTIONS(4706), + [anon_sym_concept] = ACTIONS(4706), + [anon_sym_requires] = ACTIONS(4706), + }, + [2185] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(4548), + [anon_sym_COMMA] = ACTIONS(4548), + [anon_sym_RPAREN] = ACTIONS(4548), + [anon_sym_LPAREN2] = ACTIONS(4548), + [anon_sym_DASH] = ACTIONS(4546), + [anon_sym_PLUS] = ACTIONS(4546), + [anon_sym_STAR] = ACTIONS(4546), + [anon_sym_SLASH] = ACTIONS(4546), + [anon_sym_PERCENT] = ACTIONS(4546), + [anon_sym_PIPE_PIPE] = ACTIONS(4548), + [anon_sym_AMP_AMP] = ACTIONS(4548), + [anon_sym_PIPE] = ACTIONS(4546), + [anon_sym_CARET] = ACTIONS(4546), + [anon_sym_AMP] = ACTIONS(4546), + [anon_sym_EQ_EQ] = ACTIONS(4548), + [anon_sym_BANG_EQ] = ACTIONS(4548), + [anon_sym_GT] = ACTIONS(4546), + [anon_sym_GT_EQ] = ACTIONS(4548), + [anon_sym_LT_EQ] = ACTIONS(4546), + [anon_sym_LT] = ACTIONS(4546), + [anon_sym_LT_LT] = ACTIONS(4546), + [anon_sym_GT_GT] = ACTIONS(4546), + [anon_sym_COLON_COLON] = ACTIONS(4548), + [anon_sym_LBRACE] = ACTIONS(4548), + [anon_sym_LBRACK] = ACTIONS(4548), + [anon_sym_EQ] = ACTIONS(4546), + [anon_sym_const] = ACTIONS(4546), + [anon_sym_constexpr] = ACTIONS(4548), + [anon_sym_volatile] = ACTIONS(4548), + [anon_sym_restrict] = ACTIONS(4548), + [anon_sym___restrict__] = ACTIONS(4548), + [anon_sym__Atomic] = ACTIONS(4548), + [anon_sym__Noreturn] = ACTIONS(4548), + [anon_sym_noreturn] = ACTIONS(4548), + [anon_sym_mutable] = ACTIONS(4548), + [anon_sym_constinit] = ACTIONS(4548), + [anon_sym_consteval] = ACTIONS(4548), + [anon_sym_COLON] = ACTIONS(4546), + [anon_sym_QMARK] = ACTIONS(4548), + [anon_sym_STAR_EQ] = ACTIONS(4548), + [anon_sym_SLASH_EQ] = ACTIONS(4548), + [anon_sym_PERCENT_EQ] = ACTIONS(4548), + [anon_sym_PLUS_EQ] = ACTIONS(4548), + [anon_sym_DASH_EQ] = ACTIONS(4548), + [anon_sym_LT_LT_EQ] = ACTIONS(4548), + [anon_sym_GT_GT_EQ] = ACTIONS(4548), + [anon_sym_AMP_EQ] = ACTIONS(4548), + [anon_sym_CARET_EQ] = ACTIONS(4548), + [anon_sym_PIPE_EQ] = ACTIONS(4548), + [anon_sym_LT_EQ_GT] = ACTIONS(4548), + [anon_sym_or] = ACTIONS(4548), + [anon_sym_and] = ACTIONS(4548), + [anon_sym_bitor] = ACTIONS(4548), + [anon_sym_xor] = ACTIONS(4548), + [anon_sym_bitand] = ACTIONS(4548), + [anon_sym_not_eq] = ACTIONS(4548), + [anon_sym_DASH_DASH] = ACTIONS(4548), + [anon_sym_PLUS_PLUS] = ACTIONS(4548), + [anon_sym_DOT] = ACTIONS(4546), + [anon_sym_DASH_GT] = ACTIONS(4546), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4548), + [anon_sym_decltype] = ACTIONS(4548), + [anon_sym_final] = ACTIONS(4548), + [anon_sym_override] = ACTIONS(4548), + [anon_sym_DOT_STAR] = ACTIONS(4548), + [anon_sym_DASH_GT_STAR] = ACTIONS(4548), + }, + [2186] = { + [sym_identifier] = ACTIONS(4710), + [anon_sym_COMMA] = ACTIONS(4712), + [anon_sym_RPAREN] = ACTIONS(4712), + [anon_sym_LPAREN2] = ACTIONS(4712), + [anon_sym_TILDE] = ACTIONS(4712), + [anon_sym_STAR] = ACTIONS(4712), + [anon_sym_PIPE_PIPE] = ACTIONS(4712), + [anon_sym_AMP_AMP] = ACTIONS(4712), + [anon_sym_AMP] = ACTIONS(4710), + [anon_sym_SEMI] = ACTIONS(4712), + [anon_sym_extern] = ACTIONS(4710), + [anon_sym___attribute__] = ACTIONS(4710), + [anon_sym_COLON_COLON] = ACTIONS(4712), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4712), + [anon_sym___declspec] = ACTIONS(4710), + [anon_sym___based] = ACTIONS(4710), + [anon_sym___cdecl] = ACTIONS(4710), + [anon_sym___clrcall] = ACTIONS(4710), + [anon_sym___stdcall] = ACTIONS(4710), + [anon_sym___fastcall] = ACTIONS(4710), + [anon_sym___thiscall] = ACTIONS(4710), + [anon_sym___vectorcall] = ACTIONS(4710), + [anon_sym_LBRACE] = ACTIONS(4712), + [anon_sym_LBRACK] = ACTIONS(4710), + [anon_sym_EQ] = ACTIONS(4712), + [anon_sym_static] = ACTIONS(4710), + [anon_sym_register] = ACTIONS(4710), + [anon_sym_inline] = ACTIONS(4710), + [anon_sym_thread_local] = ACTIONS(4710), + [anon_sym_const] = ACTIONS(4710), + [anon_sym_constexpr] = ACTIONS(4710), + [anon_sym_volatile] = ACTIONS(4710), + [anon_sym_restrict] = ACTIONS(4710), + [anon_sym___restrict__] = ACTIONS(4710), + [anon_sym__Atomic] = ACTIONS(4710), + [anon_sym__Noreturn] = ACTIONS(4710), + [anon_sym_noreturn] = ACTIONS(4710), + [anon_sym_mutable] = ACTIONS(4710), + [anon_sym_constinit] = ACTIONS(4710), + [anon_sym_consteval] = ACTIONS(4710), + [anon_sym_signed] = ACTIONS(4710), + [anon_sym_unsigned] = ACTIONS(4710), + [anon_sym_long] = ACTIONS(4710), + [anon_sym_short] = ACTIONS(4710), + [sym_primitive_type] = ACTIONS(4710), + [anon_sym_enum] = ACTIONS(4710), + [anon_sym_class] = ACTIONS(4710), + [anon_sym_struct] = ACTIONS(4710), + [anon_sym_union] = ACTIONS(4710), + [anon_sym_or] = ACTIONS(4710), + [anon_sym_and] = ACTIONS(4710), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4710), + [anon_sym_decltype] = ACTIONS(4710), + [anon_sym_final] = ACTIONS(4710), + [anon_sym_override] = ACTIONS(4710), + [anon_sym_virtual] = ACTIONS(4710), + [anon_sym_explicit] = ACTIONS(4710), + [anon_sym_typename] = ACTIONS(4710), + [anon_sym_template] = ACTIONS(4710), + [anon_sym_GT2] = ACTIONS(4712), + [anon_sym_operator] = ACTIONS(4710), + [anon_sym_try] = ACTIONS(4710), + [anon_sym_friend] = ACTIONS(4710), + [anon_sym_using] = ACTIONS(4710), + [anon_sym_concept] = ACTIONS(4710), + [anon_sym_requires] = ACTIONS(4710), + }, + [2187] = { + [sym_identifier] = ACTIONS(4714), + [anon_sym_COMMA] = ACTIONS(4716), + [anon_sym_RPAREN] = ACTIONS(4716), + [anon_sym_LPAREN2] = ACTIONS(4716), + [anon_sym_TILDE] = ACTIONS(4716), + [anon_sym_STAR] = ACTIONS(4716), + [anon_sym_PIPE_PIPE] = ACTIONS(4716), + [anon_sym_AMP_AMP] = ACTIONS(4716), + [anon_sym_AMP] = ACTIONS(4714), + [anon_sym_SEMI] = ACTIONS(4716), + [anon_sym_extern] = ACTIONS(4714), + [anon_sym___attribute__] = ACTIONS(4714), + [anon_sym_COLON_COLON] = ACTIONS(4716), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4716), + [anon_sym___declspec] = ACTIONS(4714), + [anon_sym___based] = ACTIONS(4714), + [anon_sym___cdecl] = ACTIONS(4714), + [anon_sym___clrcall] = ACTIONS(4714), + [anon_sym___stdcall] = ACTIONS(4714), + [anon_sym___fastcall] = ACTIONS(4714), + [anon_sym___thiscall] = ACTIONS(4714), + [anon_sym___vectorcall] = ACTIONS(4714), + [anon_sym_LBRACE] = ACTIONS(4716), + [anon_sym_LBRACK] = ACTIONS(4714), + [anon_sym_EQ] = ACTIONS(4716), + [anon_sym_static] = ACTIONS(4714), + [anon_sym_register] = ACTIONS(4714), + [anon_sym_inline] = ACTIONS(4714), + [anon_sym_thread_local] = ACTIONS(4714), + [anon_sym_const] = ACTIONS(4714), + [anon_sym_constexpr] = ACTIONS(4714), + [anon_sym_volatile] = ACTIONS(4714), + [anon_sym_restrict] = ACTIONS(4714), + [anon_sym___restrict__] = ACTIONS(4714), + [anon_sym__Atomic] = ACTIONS(4714), + [anon_sym__Noreturn] = ACTIONS(4714), + [anon_sym_noreturn] = ACTIONS(4714), + [anon_sym_mutable] = ACTIONS(4714), + [anon_sym_constinit] = ACTIONS(4714), + [anon_sym_consteval] = ACTIONS(4714), + [anon_sym_signed] = ACTIONS(4714), + [anon_sym_unsigned] = ACTIONS(4714), + [anon_sym_long] = ACTIONS(4714), + [anon_sym_short] = ACTIONS(4714), + [sym_primitive_type] = ACTIONS(4714), + [anon_sym_enum] = ACTIONS(4714), + [anon_sym_class] = ACTIONS(4714), + [anon_sym_struct] = ACTIONS(4714), + [anon_sym_union] = ACTIONS(4714), + [anon_sym_or] = ACTIONS(4714), + [anon_sym_and] = ACTIONS(4714), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4714), + [anon_sym_decltype] = ACTIONS(4714), + [anon_sym_final] = ACTIONS(4714), + [anon_sym_override] = ACTIONS(4714), + [anon_sym_virtual] = ACTIONS(4714), + [anon_sym_explicit] = ACTIONS(4714), + [anon_sym_typename] = ACTIONS(4714), + [anon_sym_template] = ACTIONS(4714), + [anon_sym_GT2] = ACTIONS(4716), + [anon_sym_operator] = ACTIONS(4714), + [anon_sym_try] = ACTIONS(4714), + [anon_sym_friend] = ACTIONS(4714), + [anon_sym_using] = ACTIONS(4714), + [anon_sym_concept] = ACTIONS(4714), + [anon_sym_requires] = ACTIONS(4714), + }, + [2188] = { + [sym_identifier] = ACTIONS(4718), + [anon_sym_COMMA] = ACTIONS(4720), + [anon_sym_RPAREN] = ACTIONS(4720), + [anon_sym_LPAREN2] = ACTIONS(4720), + [anon_sym_TILDE] = ACTIONS(4720), + [anon_sym_STAR] = ACTIONS(4720), + [anon_sym_PIPE_PIPE] = ACTIONS(4720), + [anon_sym_AMP_AMP] = ACTIONS(4720), + [anon_sym_AMP] = ACTIONS(4718), + [anon_sym_SEMI] = ACTIONS(4720), + [anon_sym_extern] = ACTIONS(4718), + [anon_sym___attribute__] = ACTIONS(4718), + [anon_sym_COLON_COLON] = ACTIONS(4720), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4720), + [anon_sym___declspec] = ACTIONS(4718), + [anon_sym___based] = ACTIONS(4718), + [anon_sym___cdecl] = ACTIONS(4718), + [anon_sym___clrcall] = ACTIONS(4718), + [anon_sym___stdcall] = ACTIONS(4718), + [anon_sym___fastcall] = ACTIONS(4718), + [anon_sym___thiscall] = ACTIONS(4718), + [anon_sym___vectorcall] = ACTIONS(4718), + [anon_sym_LBRACE] = ACTIONS(4720), + [anon_sym_LBRACK] = ACTIONS(4718), + [anon_sym_EQ] = ACTIONS(4720), + [anon_sym_static] = ACTIONS(4718), + [anon_sym_register] = ACTIONS(4718), + [anon_sym_inline] = ACTIONS(4718), + [anon_sym_thread_local] = ACTIONS(4718), + [anon_sym_const] = ACTIONS(4718), + [anon_sym_constexpr] = ACTIONS(4718), + [anon_sym_volatile] = ACTIONS(4718), + [anon_sym_restrict] = ACTIONS(4718), + [anon_sym___restrict__] = ACTIONS(4718), + [anon_sym__Atomic] = ACTIONS(4718), + [anon_sym__Noreturn] = ACTIONS(4718), + [anon_sym_noreturn] = ACTIONS(4718), + [anon_sym_mutable] = ACTIONS(4718), + [anon_sym_constinit] = ACTIONS(4718), + [anon_sym_consteval] = ACTIONS(4718), + [anon_sym_signed] = ACTIONS(4718), + [anon_sym_unsigned] = ACTIONS(4718), + [anon_sym_long] = ACTIONS(4718), + [anon_sym_short] = ACTIONS(4718), + [sym_primitive_type] = ACTIONS(4718), + [anon_sym_enum] = ACTIONS(4718), + [anon_sym_class] = ACTIONS(4718), + [anon_sym_struct] = ACTIONS(4718), + [anon_sym_union] = ACTIONS(4718), + [anon_sym_or] = ACTIONS(4718), + [anon_sym_and] = ACTIONS(4718), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4718), + [anon_sym_decltype] = ACTIONS(4718), + [anon_sym_final] = ACTIONS(4718), + [anon_sym_override] = ACTIONS(4718), + [anon_sym_virtual] = ACTIONS(4718), + [anon_sym_explicit] = ACTIONS(4718), + [anon_sym_typename] = ACTIONS(4718), + [anon_sym_template] = ACTIONS(4718), + [anon_sym_GT2] = ACTIONS(4720), + [anon_sym_operator] = ACTIONS(4718), + [anon_sym_try] = ACTIONS(4718), + [anon_sym_friend] = ACTIONS(4718), + [anon_sym_using] = ACTIONS(4718), + [anon_sym_concept] = ACTIONS(4718), + [anon_sym_requires] = ACTIONS(4718), + }, + [2189] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(4568), + [anon_sym_COMMA] = ACTIONS(4568), + [anon_sym_RPAREN] = ACTIONS(4568), + [anon_sym_LPAREN2] = ACTIONS(4568), + [anon_sym_DASH] = ACTIONS(4566), + [anon_sym_PLUS] = ACTIONS(4566), + [anon_sym_STAR] = ACTIONS(4566), + [anon_sym_SLASH] = ACTIONS(4566), + [anon_sym_PERCENT] = ACTIONS(4566), + [anon_sym_PIPE_PIPE] = ACTIONS(4568), + [anon_sym_AMP_AMP] = ACTIONS(4568), + [anon_sym_PIPE] = ACTIONS(4566), + [anon_sym_CARET] = ACTIONS(4566), + [anon_sym_AMP] = ACTIONS(4566), + [anon_sym_EQ_EQ] = ACTIONS(4568), + [anon_sym_BANG_EQ] = ACTIONS(4568), + [anon_sym_GT] = ACTIONS(4566), + [anon_sym_GT_EQ] = ACTIONS(4568), + [anon_sym_LT_EQ] = ACTIONS(4566), + [anon_sym_LT] = ACTIONS(4566), + [anon_sym_LT_LT] = ACTIONS(4566), + [anon_sym_GT_GT] = ACTIONS(4566), + [anon_sym_COLON_COLON] = ACTIONS(4568), + [anon_sym_LBRACE] = ACTIONS(4568), + [anon_sym_LBRACK] = ACTIONS(4568), + [anon_sym_EQ] = ACTIONS(4566), + [anon_sym_const] = ACTIONS(4566), + [anon_sym_constexpr] = ACTIONS(4568), + [anon_sym_volatile] = ACTIONS(4568), + [anon_sym_restrict] = ACTIONS(4568), + [anon_sym___restrict__] = ACTIONS(4568), + [anon_sym__Atomic] = ACTIONS(4568), + [anon_sym__Noreturn] = ACTIONS(4568), + [anon_sym_noreturn] = ACTIONS(4568), + [anon_sym_mutable] = ACTIONS(4568), + [anon_sym_constinit] = ACTIONS(4568), + [anon_sym_consteval] = ACTIONS(4568), + [anon_sym_COLON] = ACTIONS(4566), + [anon_sym_QMARK] = ACTIONS(4568), + [anon_sym_STAR_EQ] = ACTIONS(4568), + [anon_sym_SLASH_EQ] = ACTIONS(4568), + [anon_sym_PERCENT_EQ] = ACTIONS(4568), + [anon_sym_PLUS_EQ] = ACTIONS(4568), + [anon_sym_DASH_EQ] = ACTIONS(4568), + [anon_sym_LT_LT_EQ] = ACTIONS(4568), + [anon_sym_GT_GT_EQ] = ACTIONS(4568), + [anon_sym_AMP_EQ] = ACTIONS(4568), + [anon_sym_CARET_EQ] = ACTIONS(4568), + [anon_sym_PIPE_EQ] = ACTIONS(4568), + [anon_sym_LT_EQ_GT] = ACTIONS(4568), + [anon_sym_or] = ACTIONS(4568), + [anon_sym_and] = ACTIONS(4568), + [anon_sym_bitor] = ACTIONS(4568), + [anon_sym_xor] = ACTIONS(4568), + [anon_sym_bitand] = ACTIONS(4568), + [anon_sym_not_eq] = ACTIONS(4568), + [anon_sym_DASH_DASH] = ACTIONS(4568), + [anon_sym_PLUS_PLUS] = ACTIONS(4568), + [anon_sym_DOT] = ACTIONS(4566), + [anon_sym_DASH_GT] = ACTIONS(4566), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4568), + [anon_sym_decltype] = ACTIONS(4568), + [anon_sym_final] = ACTIONS(4568), + [anon_sym_override] = ACTIONS(4568), + [anon_sym_DOT_STAR] = ACTIONS(4568), + [anon_sym_DASH_GT_STAR] = ACTIONS(4568), + }, + [2190] = { + [sym_identifier] = ACTIONS(4722), + [anon_sym_COMMA] = ACTIONS(4724), + [anon_sym_RPAREN] = ACTIONS(4724), + [anon_sym_LPAREN2] = ACTIONS(4724), + [anon_sym_TILDE] = ACTIONS(4724), + [anon_sym_STAR] = ACTIONS(4724), + [anon_sym_PIPE_PIPE] = ACTIONS(4724), + [anon_sym_AMP_AMP] = ACTIONS(4724), + [anon_sym_AMP] = ACTIONS(4722), + [anon_sym_SEMI] = ACTIONS(4724), + [anon_sym_extern] = ACTIONS(4722), + [anon_sym___attribute__] = ACTIONS(4722), + [anon_sym_COLON_COLON] = ACTIONS(4724), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4724), + [anon_sym___declspec] = ACTIONS(4722), + [anon_sym___based] = ACTIONS(4722), + [anon_sym___cdecl] = ACTIONS(4722), + [anon_sym___clrcall] = ACTIONS(4722), + [anon_sym___stdcall] = ACTIONS(4722), + [anon_sym___fastcall] = ACTIONS(4722), + [anon_sym___thiscall] = ACTIONS(4722), + [anon_sym___vectorcall] = ACTIONS(4722), + [anon_sym_LBRACE] = ACTIONS(4724), + [anon_sym_LBRACK] = ACTIONS(4722), + [anon_sym_EQ] = ACTIONS(4724), + [anon_sym_static] = ACTIONS(4722), + [anon_sym_register] = ACTIONS(4722), + [anon_sym_inline] = ACTIONS(4722), + [anon_sym_thread_local] = ACTIONS(4722), + [anon_sym_const] = ACTIONS(4722), + [anon_sym_constexpr] = ACTIONS(4722), + [anon_sym_volatile] = ACTIONS(4722), + [anon_sym_restrict] = ACTIONS(4722), + [anon_sym___restrict__] = ACTIONS(4722), + [anon_sym__Atomic] = ACTIONS(4722), + [anon_sym__Noreturn] = ACTIONS(4722), + [anon_sym_noreturn] = ACTIONS(4722), + [anon_sym_mutable] = ACTIONS(4722), + [anon_sym_constinit] = ACTIONS(4722), + [anon_sym_consteval] = ACTIONS(4722), + [anon_sym_signed] = ACTIONS(4722), + [anon_sym_unsigned] = ACTIONS(4722), + [anon_sym_long] = ACTIONS(4722), + [anon_sym_short] = ACTIONS(4722), + [sym_primitive_type] = ACTIONS(4722), + [anon_sym_enum] = ACTIONS(4722), + [anon_sym_class] = ACTIONS(4722), + [anon_sym_struct] = ACTIONS(4722), + [anon_sym_union] = ACTIONS(4722), + [anon_sym_or] = ACTIONS(4722), + [anon_sym_and] = ACTIONS(4722), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4722), + [anon_sym_decltype] = ACTIONS(4722), + [anon_sym_final] = ACTIONS(4722), + [anon_sym_override] = ACTIONS(4722), + [anon_sym_virtual] = ACTIONS(4722), + [anon_sym_explicit] = ACTIONS(4722), + [anon_sym_typename] = ACTIONS(4722), + [anon_sym_template] = ACTIONS(4722), + [anon_sym_GT2] = ACTIONS(4724), + [anon_sym_operator] = ACTIONS(4722), + [anon_sym_try] = ACTIONS(4722), + [anon_sym_friend] = ACTIONS(4722), + [anon_sym_using] = ACTIONS(4722), + [anon_sym_concept] = ACTIONS(4722), + [anon_sym_requires] = ACTIONS(4722), + }, + [2191] = { + [sym_identifier] = ACTIONS(4722), + [anon_sym_COMMA] = ACTIONS(4724), + [anon_sym_RPAREN] = ACTIONS(4724), + [anon_sym_LPAREN2] = ACTIONS(4724), + [anon_sym_TILDE] = ACTIONS(4724), + [anon_sym_STAR] = ACTIONS(4724), + [anon_sym_PIPE_PIPE] = ACTIONS(4724), + [anon_sym_AMP_AMP] = ACTIONS(4724), + [anon_sym_AMP] = ACTIONS(4722), + [anon_sym_SEMI] = ACTIONS(4724), + [anon_sym_extern] = ACTIONS(4722), + [anon_sym___attribute__] = ACTIONS(4722), + [anon_sym_COLON_COLON] = ACTIONS(4724), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4724), + [anon_sym___declspec] = ACTIONS(4722), + [anon_sym___based] = ACTIONS(4722), + [anon_sym___cdecl] = ACTIONS(4722), + [anon_sym___clrcall] = ACTIONS(4722), + [anon_sym___stdcall] = ACTIONS(4722), + [anon_sym___fastcall] = ACTIONS(4722), + [anon_sym___thiscall] = ACTIONS(4722), + [anon_sym___vectorcall] = ACTIONS(4722), + [anon_sym_LBRACE] = ACTIONS(4724), + [anon_sym_LBRACK] = ACTIONS(4722), + [anon_sym_EQ] = ACTIONS(4724), + [anon_sym_static] = ACTIONS(4722), + [anon_sym_register] = ACTIONS(4722), + [anon_sym_inline] = ACTIONS(4722), + [anon_sym_thread_local] = ACTIONS(4722), + [anon_sym_const] = ACTIONS(4722), + [anon_sym_constexpr] = ACTIONS(4722), + [anon_sym_volatile] = ACTIONS(4722), + [anon_sym_restrict] = ACTIONS(4722), + [anon_sym___restrict__] = ACTIONS(4722), + [anon_sym__Atomic] = ACTIONS(4722), + [anon_sym__Noreturn] = ACTIONS(4722), + [anon_sym_noreturn] = ACTIONS(4722), + [anon_sym_mutable] = ACTIONS(4722), + [anon_sym_constinit] = ACTIONS(4722), + [anon_sym_consteval] = ACTIONS(4722), + [anon_sym_signed] = ACTIONS(4722), + [anon_sym_unsigned] = ACTIONS(4722), + [anon_sym_long] = ACTIONS(4722), + [anon_sym_short] = ACTIONS(4722), + [sym_primitive_type] = ACTIONS(4722), + [anon_sym_enum] = ACTIONS(4722), + [anon_sym_class] = ACTIONS(4722), + [anon_sym_struct] = ACTIONS(4722), + [anon_sym_union] = ACTIONS(4722), + [anon_sym_or] = ACTIONS(4722), + [anon_sym_and] = ACTIONS(4722), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4722), + [anon_sym_decltype] = ACTIONS(4722), + [anon_sym_final] = ACTIONS(4722), + [anon_sym_override] = ACTIONS(4722), + [anon_sym_virtual] = ACTIONS(4722), + [anon_sym_explicit] = ACTIONS(4722), + [anon_sym_typename] = ACTIONS(4722), + [anon_sym_template] = ACTIONS(4722), + [anon_sym_GT2] = ACTIONS(4724), + [anon_sym_operator] = ACTIONS(4722), + [anon_sym_try] = ACTIONS(4722), + [anon_sym_friend] = ACTIONS(4722), + [anon_sym_using] = ACTIONS(4722), + [anon_sym_concept] = ACTIONS(4722), + [anon_sym_requires] = ACTIONS(4722), + }, + [2192] = { + [sym__declaration_modifiers] = STATE(2530), + [sym__declaration_specifiers] = STATE(3815), + [sym_attribute_specifier] = STATE(2530), + [sym_attribute_declaration] = STATE(2530), + [sym_ms_declspec_modifier] = STATE(2530), + [sym_storage_class_specifier] = STATE(2530), + [sym_type_qualifier] = STATE(2530), + [sym__type_specifier] = STATE(3633), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), + [sym_parameter_declaration] = STATE(6684), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym_virtual] = STATE(2530), + [sym_dependent_type] = STATE(3723), + [sym_type_parameter_declaration] = STATE(6684), + [sym_variadic_type_parameter_declaration] = STATE(6684), + [sym_optional_type_parameter_declaration] = STATE(6684), + [sym_template_template_parameter_declaration] = STATE(6684), + [sym_optional_parameter_declaration] = STATE(6684), + [sym_variadic_parameter_declaration] = STATE(6684), + [sym_template_type] = STATE(3680), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5733), + [sym_qualified_type_identifier] = STATE(3694), + [aux_sym__declaration_specifiers_repeat1] = STATE(2530), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [sym_identifier] = ACTIONS(4570), + [anon_sym_extern] = ACTIONS(53), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(4580), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1813), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(53), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(3667), + [anon_sym_enum] = ACTIONS(1853), + [anon_sym_class] = ACTIONS(4657), + [anon_sym_struct] = ACTIONS(1857), + [anon_sym_union] = ACTIONS(1859), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(113), + [anon_sym_decltype] = ACTIONS(115), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_typename] = ACTIONS(4659), + [anon_sym_template] = ACTIONS(4661), + }, + [2193] = { + [sym_identifier] = ACTIONS(4722), + [anon_sym_COMMA] = ACTIONS(4724), + [anon_sym_RPAREN] = ACTIONS(4724), + [anon_sym_LPAREN2] = ACTIONS(4724), + [anon_sym_TILDE] = ACTIONS(4724), + [anon_sym_STAR] = ACTIONS(4724), + [anon_sym_PIPE_PIPE] = ACTIONS(4724), + [anon_sym_AMP_AMP] = ACTIONS(4724), + [anon_sym_AMP] = ACTIONS(4722), + [anon_sym_SEMI] = ACTIONS(4724), + [anon_sym_extern] = ACTIONS(4722), + [anon_sym___attribute__] = ACTIONS(4722), + [anon_sym_COLON_COLON] = ACTIONS(4724), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4724), + [anon_sym___declspec] = ACTIONS(4722), + [anon_sym___based] = ACTIONS(4722), + [anon_sym___cdecl] = ACTIONS(4722), + [anon_sym___clrcall] = ACTIONS(4722), + [anon_sym___stdcall] = ACTIONS(4722), + [anon_sym___fastcall] = ACTIONS(4722), + [anon_sym___thiscall] = ACTIONS(4722), + [anon_sym___vectorcall] = ACTIONS(4722), + [anon_sym_LBRACE] = ACTIONS(4724), + [anon_sym_LBRACK] = ACTIONS(4722), + [anon_sym_EQ] = ACTIONS(4724), + [anon_sym_static] = ACTIONS(4722), + [anon_sym_register] = ACTIONS(4722), + [anon_sym_inline] = ACTIONS(4722), + [anon_sym_thread_local] = ACTIONS(4722), + [anon_sym_const] = ACTIONS(4722), + [anon_sym_constexpr] = ACTIONS(4722), + [anon_sym_volatile] = ACTIONS(4722), + [anon_sym_restrict] = ACTIONS(4722), + [anon_sym___restrict__] = ACTIONS(4722), + [anon_sym__Atomic] = ACTIONS(4722), + [anon_sym__Noreturn] = ACTIONS(4722), + [anon_sym_noreturn] = ACTIONS(4722), + [anon_sym_mutable] = ACTIONS(4722), + [anon_sym_constinit] = ACTIONS(4722), + [anon_sym_consteval] = ACTIONS(4722), + [anon_sym_signed] = ACTIONS(4722), + [anon_sym_unsigned] = ACTIONS(4722), + [anon_sym_long] = ACTIONS(4722), + [anon_sym_short] = ACTIONS(4722), + [sym_primitive_type] = ACTIONS(4722), + [anon_sym_enum] = ACTIONS(4722), + [anon_sym_class] = ACTIONS(4722), + [anon_sym_struct] = ACTIONS(4722), + [anon_sym_union] = ACTIONS(4722), + [anon_sym_or] = ACTIONS(4722), + [anon_sym_and] = ACTIONS(4722), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4722), + [anon_sym_decltype] = ACTIONS(4722), + [anon_sym_final] = ACTIONS(4722), + [anon_sym_override] = ACTIONS(4722), + [anon_sym_virtual] = ACTIONS(4722), + [anon_sym_explicit] = ACTIONS(4722), + [anon_sym_typename] = ACTIONS(4722), + [anon_sym_template] = ACTIONS(4722), + [anon_sym_GT2] = ACTIONS(4724), + [anon_sym_operator] = ACTIONS(4722), + [anon_sym_try] = ACTIONS(4722), + [anon_sym_friend] = ACTIONS(4722), + [anon_sym_using] = ACTIONS(4722), + [anon_sym_concept] = ACTIONS(4722), + [anon_sym_requires] = ACTIONS(4722), + }, + [2194] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(4533), + [anon_sym_COMMA] = ACTIONS(4533), + [anon_sym_RPAREN] = ACTIONS(4533), + [anon_sym_LPAREN2] = ACTIONS(4533), + [anon_sym_DASH] = ACTIONS(4531), + [anon_sym_PLUS] = ACTIONS(4531), + [anon_sym_STAR] = ACTIONS(4531), + [anon_sym_SLASH] = ACTIONS(4531), + [anon_sym_PERCENT] = ACTIONS(4531), + [anon_sym_PIPE_PIPE] = ACTIONS(4533), + [anon_sym_AMP_AMP] = ACTIONS(4533), + [anon_sym_PIPE] = ACTIONS(4531), + [anon_sym_CARET] = ACTIONS(4531), + [anon_sym_AMP] = ACTIONS(4531), + [anon_sym_EQ_EQ] = ACTIONS(4533), + [anon_sym_BANG_EQ] = ACTIONS(4533), + [anon_sym_GT] = ACTIONS(4531), + [anon_sym_GT_EQ] = ACTIONS(4533), + [anon_sym_LT_EQ] = ACTIONS(4531), + [anon_sym_LT] = ACTIONS(4531), + [anon_sym_LT_LT] = ACTIONS(4531), + [anon_sym_GT_GT] = ACTIONS(4531), + [anon_sym_COLON_COLON] = ACTIONS(4533), + [anon_sym_LBRACE] = ACTIONS(4533), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_EQ] = ACTIONS(4531), + [anon_sym_const] = ACTIONS(4531), + [anon_sym_constexpr] = ACTIONS(4533), + [anon_sym_volatile] = ACTIONS(4533), + [anon_sym_restrict] = ACTIONS(4533), + [anon_sym___restrict__] = ACTIONS(4533), + [anon_sym__Atomic] = ACTIONS(4533), + [anon_sym__Noreturn] = ACTIONS(4533), + [anon_sym_noreturn] = ACTIONS(4533), + [anon_sym_mutable] = ACTIONS(4533), + [anon_sym_constinit] = ACTIONS(4533), + [anon_sym_consteval] = ACTIONS(4533), + [anon_sym_COLON] = ACTIONS(4531), + [anon_sym_QMARK] = ACTIONS(4533), + [anon_sym_STAR_EQ] = ACTIONS(4533), + [anon_sym_SLASH_EQ] = ACTIONS(4533), + [anon_sym_PERCENT_EQ] = ACTIONS(4533), + [anon_sym_PLUS_EQ] = ACTIONS(4533), + [anon_sym_DASH_EQ] = ACTIONS(4533), + [anon_sym_LT_LT_EQ] = ACTIONS(4533), + [anon_sym_GT_GT_EQ] = ACTIONS(4533), + [anon_sym_AMP_EQ] = ACTIONS(4533), + [anon_sym_CARET_EQ] = ACTIONS(4533), + [anon_sym_PIPE_EQ] = ACTIONS(4533), + [anon_sym_LT_EQ_GT] = ACTIONS(4533), + [anon_sym_or] = ACTIONS(4533), + [anon_sym_and] = ACTIONS(4533), + [anon_sym_bitor] = ACTIONS(4533), + [anon_sym_xor] = ACTIONS(4533), + [anon_sym_bitand] = ACTIONS(4533), + [anon_sym_not_eq] = ACTIONS(4533), + [anon_sym_DASH_DASH] = ACTIONS(4533), + [anon_sym_PLUS_PLUS] = ACTIONS(4533), + [anon_sym_DOT] = ACTIONS(4531), + [anon_sym_DASH_GT] = ACTIONS(4531), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4533), + [anon_sym_decltype] = ACTIONS(4533), + [anon_sym_final] = ACTIONS(4533), + [anon_sym_override] = ACTIONS(4533), + [anon_sym_DOT_STAR] = ACTIONS(4533), + [anon_sym_DASH_GT_STAR] = ACTIONS(4533), + }, + [2195] = { + [sym_identifier] = ACTIONS(4726), + [anon_sym_COMMA] = ACTIONS(4728), + [anon_sym_RPAREN] = ACTIONS(4728), + [anon_sym_LPAREN2] = ACTIONS(4728), + [anon_sym_TILDE] = ACTIONS(4728), + [anon_sym_STAR] = ACTIONS(4728), + [anon_sym_PIPE_PIPE] = ACTIONS(4728), + [anon_sym_AMP_AMP] = ACTIONS(4728), + [anon_sym_AMP] = ACTIONS(4726), + [anon_sym_SEMI] = ACTIONS(4728), + [anon_sym_extern] = ACTIONS(4726), + [anon_sym___attribute__] = ACTIONS(4726), + [anon_sym_COLON_COLON] = ACTIONS(4728), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4728), + [anon_sym___declspec] = ACTIONS(4726), + [anon_sym___based] = ACTIONS(4726), + [anon_sym___cdecl] = ACTIONS(4726), + [anon_sym___clrcall] = ACTIONS(4726), + [anon_sym___stdcall] = ACTIONS(4726), + [anon_sym___fastcall] = ACTIONS(4726), + [anon_sym___thiscall] = ACTIONS(4726), + [anon_sym___vectorcall] = ACTIONS(4726), + [anon_sym_LBRACE] = ACTIONS(4728), + [anon_sym_LBRACK] = ACTIONS(4726), + [anon_sym_EQ] = ACTIONS(4728), + [anon_sym_static] = ACTIONS(4726), + [anon_sym_register] = ACTIONS(4726), + [anon_sym_inline] = ACTIONS(4726), + [anon_sym_thread_local] = ACTIONS(4726), + [anon_sym_const] = ACTIONS(4726), + [anon_sym_constexpr] = ACTIONS(4726), + [anon_sym_volatile] = ACTIONS(4726), + [anon_sym_restrict] = ACTIONS(4726), + [anon_sym___restrict__] = ACTIONS(4726), + [anon_sym__Atomic] = ACTIONS(4726), + [anon_sym__Noreturn] = ACTIONS(4726), + [anon_sym_noreturn] = ACTIONS(4726), + [anon_sym_mutable] = ACTIONS(4726), + [anon_sym_constinit] = ACTIONS(4726), + [anon_sym_consteval] = ACTIONS(4726), + [anon_sym_signed] = ACTIONS(4726), + [anon_sym_unsigned] = ACTIONS(4726), + [anon_sym_long] = ACTIONS(4726), + [anon_sym_short] = ACTIONS(4726), + [sym_primitive_type] = ACTIONS(4726), + [anon_sym_enum] = ACTIONS(4726), + [anon_sym_class] = ACTIONS(4726), + [anon_sym_struct] = ACTIONS(4726), + [anon_sym_union] = ACTIONS(4726), + [anon_sym_or] = ACTIONS(4726), + [anon_sym_and] = ACTIONS(4726), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4726), + [anon_sym_decltype] = ACTIONS(4726), + [anon_sym_final] = ACTIONS(4726), + [anon_sym_override] = ACTIONS(4726), + [anon_sym_virtual] = ACTIONS(4726), + [anon_sym_explicit] = ACTIONS(4726), + [anon_sym_typename] = ACTIONS(4726), + [anon_sym_template] = ACTIONS(4726), + [anon_sym_GT2] = ACTIONS(4728), + [anon_sym_operator] = ACTIONS(4726), + [anon_sym_try] = ACTIONS(4726), + [anon_sym_friend] = ACTIONS(4726), + [anon_sym_using] = ACTIONS(4726), + [anon_sym_concept] = ACTIONS(4726), + [anon_sym_requires] = ACTIONS(4726), + }, + [2196] = { + [sym_identifier] = ACTIONS(4730), + [anon_sym_COMMA] = ACTIONS(4732), + [anon_sym_RPAREN] = ACTIONS(4732), + [anon_sym_LPAREN2] = ACTIONS(4732), + [anon_sym_TILDE] = ACTIONS(4732), + [anon_sym_STAR] = ACTIONS(4732), + [anon_sym_PIPE_PIPE] = ACTIONS(4732), + [anon_sym_AMP_AMP] = ACTIONS(4732), + [anon_sym_AMP] = ACTIONS(4730), + [anon_sym_SEMI] = ACTIONS(4732), + [anon_sym_extern] = ACTIONS(4730), + [anon_sym___attribute__] = ACTIONS(4730), + [anon_sym_COLON_COLON] = ACTIONS(4732), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4732), + [anon_sym___declspec] = ACTIONS(4730), + [anon_sym___based] = ACTIONS(4730), + [anon_sym___cdecl] = ACTIONS(4730), + [anon_sym___clrcall] = ACTIONS(4730), + [anon_sym___stdcall] = ACTIONS(4730), + [anon_sym___fastcall] = ACTIONS(4730), + [anon_sym___thiscall] = ACTIONS(4730), + [anon_sym___vectorcall] = ACTIONS(4730), + [anon_sym_LBRACE] = ACTIONS(4732), + [anon_sym_LBRACK] = ACTIONS(4730), + [anon_sym_EQ] = ACTIONS(4732), + [anon_sym_static] = ACTIONS(4730), + [anon_sym_register] = ACTIONS(4730), + [anon_sym_inline] = ACTIONS(4730), + [anon_sym_thread_local] = ACTIONS(4730), + [anon_sym_const] = ACTIONS(4730), + [anon_sym_constexpr] = ACTIONS(4730), + [anon_sym_volatile] = ACTIONS(4730), + [anon_sym_restrict] = ACTIONS(4730), + [anon_sym___restrict__] = ACTIONS(4730), + [anon_sym__Atomic] = ACTIONS(4730), + [anon_sym__Noreturn] = ACTIONS(4730), + [anon_sym_noreturn] = ACTIONS(4730), + [anon_sym_mutable] = ACTIONS(4730), + [anon_sym_constinit] = ACTIONS(4730), + [anon_sym_consteval] = ACTIONS(4730), + [anon_sym_signed] = ACTIONS(4730), + [anon_sym_unsigned] = ACTIONS(4730), + [anon_sym_long] = ACTIONS(4730), + [anon_sym_short] = ACTIONS(4730), + [sym_primitive_type] = ACTIONS(4730), + [anon_sym_enum] = ACTIONS(4730), + [anon_sym_class] = ACTIONS(4730), + [anon_sym_struct] = ACTIONS(4730), + [anon_sym_union] = ACTIONS(4730), + [anon_sym_or] = ACTIONS(4730), + [anon_sym_and] = ACTIONS(4730), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4730), + [anon_sym_decltype] = ACTIONS(4730), + [anon_sym_final] = ACTIONS(4730), + [anon_sym_override] = ACTIONS(4730), + [anon_sym_virtual] = ACTIONS(4730), + [anon_sym_explicit] = ACTIONS(4730), + [anon_sym_typename] = ACTIONS(4730), + [anon_sym_template] = ACTIONS(4730), + [anon_sym_GT2] = ACTIONS(4732), + [anon_sym_operator] = ACTIONS(4730), + [anon_sym_try] = ACTIONS(4730), + [anon_sym_friend] = ACTIONS(4730), + [anon_sym_using] = ACTIONS(4730), + [anon_sym_concept] = ACTIONS(4730), + [anon_sym_requires] = ACTIONS(4730), + }, + [2197] = { + [sym_identifier] = ACTIONS(4734), + [anon_sym_COMMA] = ACTIONS(4736), + [anon_sym_RPAREN] = ACTIONS(4736), + [anon_sym_LPAREN2] = ACTIONS(4736), + [anon_sym_TILDE] = ACTIONS(4736), + [anon_sym_STAR] = ACTIONS(4736), + [anon_sym_PIPE_PIPE] = ACTIONS(4736), + [anon_sym_AMP_AMP] = ACTIONS(4736), + [anon_sym_AMP] = ACTIONS(4734), + [anon_sym_SEMI] = ACTIONS(4736), + [anon_sym_extern] = ACTIONS(4734), + [anon_sym___attribute__] = ACTIONS(4734), + [anon_sym_COLON_COLON] = ACTIONS(4736), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4736), + [anon_sym___declspec] = ACTIONS(4734), + [anon_sym___based] = ACTIONS(4734), + [anon_sym___cdecl] = ACTIONS(4734), + [anon_sym___clrcall] = ACTIONS(4734), + [anon_sym___stdcall] = ACTIONS(4734), + [anon_sym___fastcall] = ACTIONS(4734), + [anon_sym___thiscall] = ACTIONS(4734), + [anon_sym___vectorcall] = ACTIONS(4734), + [anon_sym_LBRACE] = ACTIONS(4736), + [anon_sym_LBRACK] = ACTIONS(4734), + [anon_sym_EQ] = ACTIONS(4736), + [anon_sym_static] = ACTIONS(4734), + [anon_sym_register] = ACTIONS(4734), + [anon_sym_inline] = ACTIONS(4734), + [anon_sym_thread_local] = ACTIONS(4734), + [anon_sym_const] = ACTIONS(4734), + [anon_sym_constexpr] = ACTIONS(4734), + [anon_sym_volatile] = ACTIONS(4734), + [anon_sym_restrict] = ACTIONS(4734), + [anon_sym___restrict__] = ACTIONS(4734), + [anon_sym__Atomic] = ACTIONS(4734), + [anon_sym__Noreturn] = ACTIONS(4734), + [anon_sym_noreturn] = ACTIONS(4734), + [anon_sym_mutable] = ACTIONS(4734), + [anon_sym_constinit] = ACTIONS(4734), + [anon_sym_consteval] = ACTIONS(4734), + [anon_sym_signed] = ACTIONS(4734), + [anon_sym_unsigned] = ACTIONS(4734), + [anon_sym_long] = ACTIONS(4734), + [anon_sym_short] = ACTIONS(4734), + [sym_primitive_type] = ACTIONS(4734), + [anon_sym_enum] = ACTIONS(4734), + [anon_sym_class] = ACTIONS(4734), + [anon_sym_struct] = ACTIONS(4734), + [anon_sym_union] = ACTIONS(4734), + [anon_sym_or] = ACTIONS(4734), + [anon_sym_and] = ACTIONS(4734), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4734), + [anon_sym_decltype] = ACTIONS(4734), + [anon_sym_final] = ACTIONS(4734), + [anon_sym_override] = ACTIONS(4734), + [anon_sym_virtual] = ACTIONS(4734), + [anon_sym_explicit] = ACTIONS(4734), + [anon_sym_typename] = ACTIONS(4734), + [anon_sym_template] = ACTIONS(4734), + [anon_sym_GT2] = ACTIONS(4736), + [anon_sym_operator] = ACTIONS(4734), + [anon_sym_try] = ACTIONS(4734), + [anon_sym_friend] = ACTIONS(4734), + [anon_sym_using] = ACTIONS(4734), + [anon_sym_concept] = ACTIONS(4734), + [anon_sym_requires] = ACTIONS(4734), + }, + [2198] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(4519), + [anon_sym_COMMA] = ACTIONS(4519), + [anon_sym_RPAREN] = ACTIONS(4519), + [anon_sym_LPAREN2] = ACTIONS(4519), + [anon_sym_DASH] = ACTIONS(4517), + [anon_sym_PLUS] = ACTIONS(4517), + [anon_sym_STAR] = ACTIONS(4517), + [anon_sym_SLASH] = ACTIONS(4517), + [anon_sym_PERCENT] = ACTIONS(4517), + [anon_sym_PIPE_PIPE] = ACTIONS(4519), + [anon_sym_AMP_AMP] = ACTIONS(4519), + [anon_sym_PIPE] = ACTIONS(4517), + [anon_sym_CARET] = ACTIONS(4517), + [anon_sym_AMP] = ACTIONS(4517), + [anon_sym_EQ_EQ] = ACTIONS(4519), + [anon_sym_BANG_EQ] = ACTIONS(4519), + [anon_sym_GT] = ACTIONS(4517), + [anon_sym_GT_EQ] = ACTIONS(4519), + [anon_sym_LT_EQ] = ACTIONS(4517), + [anon_sym_LT] = ACTIONS(4517), + [anon_sym_LT_LT] = ACTIONS(4517), + [anon_sym_GT_GT] = ACTIONS(4517), + [anon_sym_COLON_COLON] = ACTIONS(4519), + [anon_sym_LBRACE] = ACTIONS(4519), + [anon_sym_LBRACK] = ACTIONS(4519), + [anon_sym_EQ] = ACTIONS(4517), + [anon_sym_const] = ACTIONS(4517), + [anon_sym_constexpr] = ACTIONS(4519), + [anon_sym_volatile] = ACTIONS(4519), + [anon_sym_restrict] = ACTIONS(4519), + [anon_sym___restrict__] = ACTIONS(4519), + [anon_sym__Atomic] = ACTIONS(4519), + [anon_sym__Noreturn] = ACTIONS(4519), + [anon_sym_noreturn] = ACTIONS(4519), + [anon_sym_mutable] = ACTIONS(4519), + [anon_sym_constinit] = ACTIONS(4519), + [anon_sym_consteval] = ACTIONS(4519), + [anon_sym_COLON] = ACTIONS(4517), + [anon_sym_QMARK] = ACTIONS(4519), + [anon_sym_STAR_EQ] = ACTIONS(4519), + [anon_sym_SLASH_EQ] = ACTIONS(4519), + [anon_sym_PERCENT_EQ] = ACTIONS(4519), + [anon_sym_PLUS_EQ] = ACTIONS(4519), + [anon_sym_DASH_EQ] = ACTIONS(4519), + [anon_sym_LT_LT_EQ] = ACTIONS(4519), + [anon_sym_GT_GT_EQ] = ACTIONS(4519), + [anon_sym_AMP_EQ] = ACTIONS(4519), + [anon_sym_CARET_EQ] = ACTIONS(4519), + [anon_sym_PIPE_EQ] = ACTIONS(4519), + [anon_sym_LT_EQ_GT] = ACTIONS(4519), + [anon_sym_or] = ACTIONS(4519), + [anon_sym_and] = ACTIONS(4519), + [anon_sym_bitor] = ACTIONS(4519), + [anon_sym_xor] = ACTIONS(4519), + [anon_sym_bitand] = ACTIONS(4519), + [anon_sym_not_eq] = ACTIONS(4519), + [anon_sym_DASH_DASH] = ACTIONS(4519), + [anon_sym_PLUS_PLUS] = ACTIONS(4519), + [anon_sym_DOT] = ACTIONS(4517), + [anon_sym_DASH_GT] = ACTIONS(4517), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4519), + [anon_sym_decltype] = ACTIONS(4519), + [anon_sym_final] = ACTIONS(4519), + [anon_sym_override] = ACTIONS(4519), + [anon_sym_DOT_STAR] = ACTIONS(4519), + [anon_sym_DASH_GT_STAR] = ACTIONS(4519), + }, + [2199] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(4537), + [anon_sym_COMMA] = ACTIONS(4537), + [anon_sym_RPAREN] = ACTIONS(4537), + [anon_sym_LPAREN2] = ACTIONS(4537), + [anon_sym_DASH] = ACTIONS(4535), + [anon_sym_PLUS] = ACTIONS(4535), + [anon_sym_STAR] = ACTIONS(4535), + [anon_sym_SLASH] = ACTIONS(4535), + [anon_sym_PERCENT] = ACTIONS(4535), + [anon_sym_PIPE_PIPE] = ACTIONS(4537), + [anon_sym_AMP_AMP] = ACTIONS(4537), + [anon_sym_PIPE] = ACTIONS(4535), + [anon_sym_CARET] = ACTIONS(4535), + [anon_sym_AMP] = ACTIONS(4535), + [anon_sym_EQ_EQ] = ACTIONS(4537), + [anon_sym_BANG_EQ] = ACTIONS(4537), + [anon_sym_GT] = ACTIONS(4535), + [anon_sym_GT_EQ] = ACTIONS(4537), + [anon_sym_LT_EQ] = ACTIONS(4535), + [anon_sym_LT] = ACTIONS(4535), + [anon_sym_LT_LT] = ACTIONS(4535), + [anon_sym_GT_GT] = ACTIONS(4535), + [anon_sym_COLON_COLON] = ACTIONS(4537), + [anon_sym_LBRACE] = ACTIONS(4537), + [anon_sym_LBRACK] = ACTIONS(4537), + [anon_sym_EQ] = ACTIONS(4535), + [anon_sym_const] = ACTIONS(4535), + [anon_sym_constexpr] = ACTIONS(4537), + [anon_sym_volatile] = ACTIONS(4537), + [anon_sym_restrict] = ACTIONS(4537), + [anon_sym___restrict__] = ACTIONS(4537), + [anon_sym__Atomic] = ACTIONS(4537), + [anon_sym__Noreturn] = ACTIONS(4537), + [anon_sym_noreturn] = ACTIONS(4537), + [anon_sym_mutable] = ACTIONS(4537), + [anon_sym_constinit] = ACTIONS(4537), + [anon_sym_consteval] = ACTIONS(4537), + [anon_sym_COLON] = ACTIONS(4535), + [anon_sym_QMARK] = ACTIONS(4537), + [anon_sym_STAR_EQ] = ACTIONS(4537), + [anon_sym_SLASH_EQ] = ACTIONS(4537), + [anon_sym_PERCENT_EQ] = ACTIONS(4537), + [anon_sym_PLUS_EQ] = ACTIONS(4537), + [anon_sym_DASH_EQ] = ACTIONS(4537), + [anon_sym_LT_LT_EQ] = ACTIONS(4537), + [anon_sym_GT_GT_EQ] = ACTIONS(4537), + [anon_sym_AMP_EQ] = ACTIONS(4537), + [anon_sym_CARET_EQ] = ACTIONS(4537), + [anon_sym_PIPE_EQ] = ACTIONS(4537), + [anon_sym_LT_EQ_GT] = ACTIONS(4537), + [anon_sym_or] = ACTIONS(4537), + [anon_sym_and] = ACTIONS(4537), + [anon_sym_bitor] = ACTIONS(4537), + [anon_sym_xor] = ACTIONS(4537), + [anon_sym_bitand] = ACTIONS(4537), + [anon_sym_not_eq] = ACTIONS(4537), + [anon_sym_DASH_DASH] = ACTIONS(4537), + [anon_sym_PLUS_PLUS] = ACTIONS(4537), + [anon_sym_DOT] = ACTIONS(4535), + [anon_sym_DASH_GT] = ACTIONS(4535), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4537), + [anon_sym_decltype] = ACTIONS(4537), + [anon_sym_final] = ACTIONS(4537), + [anon_sym_override] = ACTIONS(4537), + [anon_sym_DOT_STAR] = ACTIONS(4537), + [anon_sym_DASH_GT_STAR] = ACTIONS(4537), + }, + [2200] = { + [sym_identifier] = ACTIONS(4738), + [anon_sym_LPAREN2] = ACTIONS(4740), + [anon_sym_BANG] = ACTIONS(4740), + [anon_sym_TILDE] = ACTIONS(4740), + [anon_sym_DASH] = ACTIONS(4738), + [anon_sym_PLUS] = ACTIONS(4738), + [anon_sym_STAR] = ACTIONS(4740), + [anon_sym_AMP] = ACTIONS(4740), + [anon_sym_SEMI] = ACTIONS(4740), + [anon_sym_COLON_COLON] = ACTIONS(4740), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4740), + [anon_sym_LBRACE] = ACTIONS(4740), + [anon_sym_LBRACK] = ACTIONS(4738), + [sym_primitive_type] = ACTIONS(4738), + [anon_sym_if] = ACTIONS(4738), + [anon_sym_switch] = ACTIONS(4738), + [anon_sym_case] = ACTIONS(4738), + [anon_sym_default] = ACTIONS(4738), + [anon_sym_while] = ACTIONS(4738), + [anon_sym_do] = ACTIONS(4738), + [anon_sym_for] = ACTIONS(4738), + [anon_sym_return] = ACTIONS(4738), + [anon_sym_break] = ACTIONS(4738), + [anon_sym_continue] = ACTIONS(4738), + [anon_sym_goto] = ACTIONS(4738), + [anon_sym_not] = ACTIONS(4738), + [anon_sym_compl] = ACTIONS(4738), + [anon_sym_DASH_DASH] = ACTIONS(4740), + [anon_sym_PLUS_PLUS] = ACTIONS(4740), + [anon_sym_sizeof] = ACTIONS(4738), + [anon_sym_offsetof] = ACTIONS(4738), + [anon_sym__Generic] = ACTIONS(4738), + [anon_sym_asm] = ACTIONS(4738), + [anon_sym___asm__] = ACTIONS(4738), + [sym_number_literal] = ACTIONS(4740), + [anon_sym_L_SQUOTE] = ACTIONS(4740), + [anon_sym_u_SQUOTE] = ACTIONS(4740), + [anon_sym_U_SQUOTE] = ACTIONS(4740), + [anon_sym_u8_SQUOTE] = ACTIONS(4740), + [anon_sym_SQUOTE] = ACTIONS(4740), + [anon_sym_L_DQUOTE] = ACTIONS(4740), + [anon_sym_u_DQUOTE] = ACTIONS(4740), + [anon_sym_U_DQUOTE] = ACTIONS(4740), + [anon_sym_u8_DQUOTE] = ACTIONS(4740), + [anon_sym_DQUOTE] = ACTIONS(4740), + [sym_true] = ACTIONS(4738), + [sym_false] = ACTIONS(4738), + [anon_sym_NULL] = ACTIONS(4738), + [anon_sym_nullptr] = ACTIONS(4738), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(4738), + [anon_sym_template] = ACTIONS(4738), + [anon_sym_try] = ACTIONS(4738), + [anon_sym_delete] = ACTIONS(4738), + [anon_sym_throw] = ACTIONS(4738), + [anon_sym_co_return] = ACTIONS(4738), + [anon_sym_co_yield] = ACTIONS(4738), + [anon_sym_R_DQUOTE] = ACTIONS(4740), + [anon_sym_LR_DQUOTE] = ACTIONS(4740), + [anon_sym_uR_DQUOTE] = ACTIONS(4740), + [anon_sym_UR_DQUOTE] = ACTIONS(4740), + [anon_sym_u8R_DQUOTE] = ACTIONS(4740), + [anon_sym_co_await] = ACTIONS(4738), + [anon_sym_new] = ACTIONS(4738), + [anon_sym_requires] = ACTIONS(4738), + [sym_this] = ACTIONS(4738), + }, + [2201] = { + [sym_identifier] = ACTIONS(4550), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4552), + [anon_sym_COMMA] = ACTIONS(4552), + [anon_sym_RPAREN] = ACTIONS(4552), + [anon_sym_LPAREN2] = ACTIONS(4552), + [anon_sym_TILDE] = ACTIONS(4555), + [anon_sym_DASH] = ACTIONS(4557), + [anon_sym_PLUS] = ACTIONS(4557), + [anon_sym_STAR] = ACTIONS(4552), + [anon_sym_SLASH] = ACTIONS(4557), + [anon_sym_PERCENT] = ACTIONS(4562), + [anon_sym_PIPE_PIPE] = ACTIONS(4562), + [anon_sym_AMP_AMP] = ACTIONS(4552), + [anon_sym_PIPE] = ACTIONS(4557), + [anon_sym_CARET] = ACTIONS(4562), + [anon_sym_AMP] = ACTIONS(4559), + [anon_sym_EQ_EQ] = ACTIONS(4562), + [anon_sym_BANG_EQ] = ACTIONS(4562), + [anon_sym_GT] = ACTIONS(4557), + [anon_sym_GT_EQ] = ACTIONS(4562), + [anon_sym_LT_EQ] = ACTIONS(4557), + [anon_sym_LT] = ACTIONS(4557), + [anon_sym_LT_LT] = ACTIONS(4562), + [anon_sym_GT_GT] = ACTIONS(4562), + [anon_sym_extern] = ACTIONS(4550), + [anon_sym___attribute__] = ACTIONS(4550), + [anon_sym_COLON_COLON] = ACTIONS(4555), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4555), + [anon_sym___declspec] = ACTIONS(4550), + [anon_sym___based] = ACTIONS(4550), + [anon_sym_LBRACE] = ACTIONS(4555), + [anon_sym_LBRACK] = ACTIONS(4559), + [anon_sym_EQ] = ACTIONS(4550), + [anon_sym_static] = ACTIONS(4550), + [anon_sym_register] = ACTIONS(4550), + [anon_sym_inline] = ACTIONS(4550), + [anon_sym_thread_local] = ACTIONS(4550), + [anon_sym_const] = ACTIONS(4550), + [anon_sym_constexpr] = ACTIONS(4550), + [anon_sym_volatile] = ACTIONS(4550), + [anon_sym_restrict] = ACTIONS(4550), + [anon_sym___restrict__] = ACTIONS(4550), + [anon_sym__Atomic] = ACTIONS(4550), + [anon_sym__Noreturn] = ACTIONS(4550), + [anon_sym_noreturn] = ACTIONS(4550), + [anon_sym_mutable] = ACTIONS(4550), + [anon_sym_constinit] = ACTIONS(4550), + [anon_sym_consteval] = ACTIONS(4550), + [anon_sym_QMARK] = ACTIONS(4562), + [anon_sym_LT_EQ_GT] = ACTIONS(4562), + [anon_sym_or] = ACTIONS(4557), + [anon_sym_and] = ACTIONS(4557), + [anon_sym_bitor] = ACTIONS(4557), + [anon_sym_xor] = ACTIONS(4557), + [anon_sym_bitand] = ACTIONS(4557), + [anon_sym_not_eq] = ACTIONS(4557), + [anon_sym_DASH_DASH] = ACTIONS(4562), + [anon_sym_PLUS_PLUS] = ACTIONS(4562), + [anon_sym_DOT] = ACTIONS(4557), + [anon_sym_DASH_GT] = ACTIONS(4562), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4550), + [anon_sym_decltype] = ACTIONS(4550), + [anon_sym_virtual] = ACTIONS(4550), + [anon_sym_template] = ACTIONS(4550), + [anon_sym_operator] = ACTIONS(4550), + }, + [2202] = { + [sym_string_literal] = STATE(2204), + [sym_raw_string_literal] = STATE(2204), + [aux_sym_concatenated_string_repeat1] = STATE(2204), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4457), + [anon_sym_COMMA] = ACTIONS(4457), + [anon_sym_RPAREN] = ACTIONS(4457), + [anon_sym_LPAREN2] = ACTIONS(4457), + [anon_sym_DASH] = ACTIONS(4465), + [anon_sym_PLUS] = ACTIONS(4465), + [anon_sym_STAR] = ACTIONS(4465), + [anon_sym_SLASH] = ACTIONS(4465), + [anon_sym_PERCENT] = ACTIONS(4465), + [anon_sym_PIPE_PIPE] = ACTIONS(4457), + [anon_sym_AMP_AMP] = ACTIONS(4457), + [anon_sym_PIPE] = ACTIONS(4465), + [anon_sym_CARET] = ACTIONS(4465), + [anon_sym_AMP] = ACTIONS(4465), + [anon_sym_EQ_EQ] = ACTIONS(4457), + [anon_sym_BANG_EQ] = ACTIONS(4457), + [anon_sym_GT] = ACTIONS(4465), + [anon_sym_GT_EQ] = ACTIONS(4457), + [anon_sym_LT_EQ] = ACTIONS(4465), + [anon_sym_LT] = ACTIONS(4465), + [anon_sym_LT_LT] = ACTIONS(4465), + [anon_sym_GT_GT] = ACTIONS(4465), + [anon_sym_LBRACK] = ACTIONS(4457), + [anon_sym_EQ] = ACTIONS(4465), + [anon_sym_QMARK] = ACTIONS(4457), + [anon_sym_STAR_EQ] = ACTIONS(4457), + [anon_sym_SLASH_EQ] = ACTIONS(4457), + [anon_sym_PERCENT_EQ] = ACTIONS(4457), + [anon_sym_PLUS_EQ] = ACTIONS(4457), + [anon_sym_DASH_EQ] = ACTIONS(4457), + [anon_sym_LT_LT_EQ] = ACTIONS(4457), + [anon_sym_GT_GT_EQ] = ACTIONS(4457), + [anon_sym_AMP_EQ] = ACTIONS(4457), + [anon_sym_CARET_EQ] = ACTIONS(4457), + [anon_sym_PIPE_EQ] = ACTIONS(4457), + [anon_sym_and_eq] = ACTIONS(4465), + [anon_sym_or_eq] = ACTIONS(4465), + [anon_sym_xor_eq] = ACTIONS(4465), + [anon_sym_LT_EQ_GT] = ACTIONS(4457), + [anon_sym_or] = ACTIONS(4465), + [anon_sym_and] = ACTIONS(4465), + [anon_sym_bitor] = ACTIONS(4465), + [anon_sym_xor] = ACTIONS(4465), + [anon_sym_bitand] = ACTIONS(4465), + [anon_sym_not_eq] = ACTIONS(4465), + [anon_sym_DASH_DASH] = ACTIONS(4457), + [anon_sym_PLUS_PLUS] = ACTIONS(4457), + [anon_sym_DOT] = ACTIONS(4465), + [anon_sym_DASH_GT] = ACTIONS(4465), + [anon_sym_L_DQUOTE] = ACTIONS(2015), + [anon_sym_u_DQUOTE] = ACTIONS(2015), + [anon_sym_U_DQUOTE] = ACTIONS(2015), + [anon_sym_u8_DQUOTE] = ACTIONS(2015), + [anon_sym_DQUOTE] = ACTIONS(2015), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(2023), + [anon_sym_LR_DQUOTE] = ACTIONS(2023), + [anon_sym_uR_DQUOTE] = ACTIONS(2023), + [anon_sym_UR_DQUOTE] = ACTIONS(2023), + [anon_sym_u8R_DQUOTE] = ACTIONS(2023), + [anon_sym_DOT_STAR] = ACTIONS(4457), + [anon_sym_DASH_GT_STAR] = ACTIONS(4457), + [sym_literal_suffix] = ACTIONS(4742), + }, + [2203] = { + [sym_identifier] = ACTIONS(4744), + [anon_sym_LPAREN2] = ACTIONS(4746), + [anon_sym_BANG] = ACTIONS(4746), + [anon_sym_TILDE] = ACTIONS(4746), + [anon_sym_DASH] = ACTIONS(4744), + [anon_sym_PLUS] = ACTIONS(4744), + [anon_sym_STAR] = ACTIONS(4746), + [anon_sym_AMP] = ACTIONS(4746), + [anon_sym_SEMI] = ACTIONS(4746), + [anon_sym_COLON_COLON] = ACTIONS(4746), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4746), + [anon_sym_LBRACE] = ACTIONS(4746), + [anon_sym_LBRACK] = ACTIONS(4744), + [sym_primitive_type] = ACTIONS(4744), + [anon_sym_if] = ACTIONS(4744), + [anon_sym_switch] = ACTIONS(4744), + [anon_sym_case] = ACTIONS(4744), + [anon_sym_default] = ACTIONS(4744), + [anon_sym_while] = ACTIONS(4744), + [anon_sym_do] = ACTIONS(4744), + [anon_sym_for] = ACTIONS(4744), + [anon_sym_return] = ACTIONS(4744), + [anon_sym_break] = ACTIONS(4744), + [anon_sym_continue] = ACTIONS(4744), + [anon_sym_goto] = ACTIONS(4744), + [anon_sym_not] = ACTIONS(4744), + [anon_sym_compl] = ACTIONS(4744), + [anon_sym_DASH_DASH] = ACTIONS(4746), + [anon_sym_PLUS_PLUS] = ACTIONS(4746), + [anon_sym_sizeof] = ACTIONS(4744), + [anon_sym_offsetof] = ACTIONS(4744), + [anon_sym__Generic] = ACTIONS(4744), + [anon_sym_asm] = ACTIONS(4744), + [anon_sym___asm__] = ACTIONS(4744), + [sym_number_literal] = ACTIONS(4746), + [anon_sym_L_SQUOTE] = ACTIONS(4746), + [anon_sym_u_SQUOTE] = ACTIONS(4746), + [anon_sym_U_SQUOTE] = ACTIONS(4746), + [anon_sym_u8_SQUOTE] = ACTIONS(4746), + [anon_sym_SQUOTE] = ACTIONS(4746), + [anon_sym_L_DQUOTE] = ACTIONS(4746), + [anon_sym_u_DQUOTE] = ACTIONS(4746), + [anon_sym_U_DQUOTE] = ACTIONS(4746), + [anon_sym_u8_DQUOTE] = ACTIONS(4746), + [anon_sym_DQUOTE] = ACTIONS(4746), + [sym_true] = ACTIONS(4744), + [sym_false] = ACTIONS(4744), + [anon_sym_NULL] = ACTIONS(4744), + [anon_sym_nullptr] = ACTIONS(4744), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(4744), + [anon_sym_template] = ACTIONS(4744), + [anon_sym_try] = ACTIONS(4744), + [anon_sym_delete] = ACTIONS(4744), + [anon_sym_throw] = ACTIONS(4744), + [anon_sym_co_return] = ACTIONS(4744), + [anon_sym_co_yield] = ACTIONS(4744), + [anon_sym_R_DQUOTE] = ACTIONS(4746), + [anon_sym_LR_DQUOTE] = ACTIONS(4746), + [anon_sym_uR_DQUOTE] = ACTIONS(4746), + [anon_sym_UR_DQUOTE] = ACTIONS(4746), + [anon_sym_u8R_DQUOTE] = ACTIONS(4746), + [anon_sym_co_await] = ACTIONS(4744), + [anon_sym_new] = ACTIONS(4744), + [anon_sym_requires] = ACTIONS(4744), + [sym_this] = ACTIONS(4744), + }, + [2204] = { + [sym_string_literal] = STATE(2207), + [sym_raw_string_literal] = STATE(2207), + [aux_sym_concatenated_string_repeat1] = STATE(2207), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4670), + [anon_sym_COMMA] = ACTIONS(4670), + [anon_sym_RPAREN] = ACTIONS(4670), + [anon_sym_LPAREN2] = ACTIONS(4670), + [anon_sym_DASH] = ACTIONS(4672), + [anon_sym_PLUS] = ACTIONS(4672), + [anon_sym_STAR] = ACTIONS(4672), + [anon_sym_SLASH] = ACTIONS(4672), + [anon_sym_PERCENT] = ACTIONS(4672), + [anon_sym_PIPE_PIPE] = ACTIONS(4670), + [anon_sym_AMP_AMP] = ACTIONS(4670), + [anon_sym_PIPE] = ACTIONS(4672), + [anon_sym_CARET] = ACTIONS(4672), + [anon_sym_AMP] = ACTIONS(4672), + [anon_sym_EQ_EQ] = ACTIONS(4670), + [anon_sym_BANG_EQ] = ACTIONS(4670), + [anon_sym_GT] = ACTIONS(4672), + [anon_sym_GT_EQ] = ACTIONS(4670), + [anon_sym_LT_EQ] = ACTIONS(4672), + [anon_sym_LT] = ACTIONS(4672), + [anon_sym_LT_LT] = ACTIONS(4672), + [anon_sym_GT_GT] = ACTIONS(4672), + [anon_sym_LBRACK] = ACTIONS(4670), + [anon_sym_EQ] = ACTIONS(4672), + [anon_sym_QMARK] = ACTIONS(4670), + [anon_sym_STAR_EQ] = ACTIONS(4670), + [anon_sym_SLASH_EQ] = ACTIONS(4670), + [anon_sym_PERCENT_EQ] = ACTIONS(4670), + [anon_sym_PLUS_EQ] = ACTIONS(4670), + [anon_sym_DASH_EQ] = ACTIONS(4670), + [anon_sym_LT_LT_EQ] = ACTIONS(4670), + [anon_sym_GT_GT_EQ] = ACTIONS(4670), + [anon_sym_AMP_EQ] = ACTIONS(4670), + [anon_sym_CARET_EQ] = ACTIONS(4670), + [anon_sym_PIPE_EQ] = ACTIONS(4670), + [anon_sym_and_eq] = ACTIONS(4672), + [anon_sym_or_eq] = ACTIONS(4672), + [anon_sym_xor_eq] = ACTIONS(4672), + [anon_sym_LT_EQ_GT] = ACTIONS(4670), + [anon_sym_or] = ACTIONS(4672), + [anon_sym_and] = ACTIONS(4672), + [anon_sym_bitor] = ACTIONS(4672), + [anon_sym_xor] = ACTIONS(4672), + [anon_sym_bitand] = ACTIONS(4672), + [anon_sym_not_eq] = ACTIONS(4672), + [anon_sym_DASH_DASH] = ACTIONS(4670), + [anon_sym_PLUS_PLUS] = ACTIONS(4670), + [anon_sym_DOT] = ACTIONS(4672), + [anon_sym_DASH_GT] = ACTIONS(4672), + [anon_sym_L_DQUOTE] = ACTIONS(2015), + [anon_sym_u_DQUOTE] = ACTIONS(2015), + [anon_sym_U_DQUOTE] = ACTIONS(2015), + [anon_sym_u8_DQUOTE] = ACTIONS(2015), + [anon_sym_DQUOTE] = ACTIONS(2015), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(2023), + [anon_sym_LR_DQUOTE] = ACTIONS(2023), + [anon_sym_uR_DQUOTE] = ACTIONS(2023), + [anon_sym_UR_DQUOTE] = ACTIONS(2023), + [anon_sym_u8R_DQUOTE] = ACTIONS(2023), + [anon_sym_DOT_STAR] = ACTIONS(4670), + [anon_sym_DASH_GT_STAR] = ACTIONS(4670), + [sym_literal_suffix] = ACTIONS(4672), + }, + [2205] = { + [sym_identifier] = ACTIONS(4550), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4562), + [anon_sym_COMMA] = ACTIONS(4562), + [anon_sym_LPAREN2] = ACTIONS(4552), + [anon_sym_TILDE] = ACTIONS(4555), + [anon_sym_DASH] = ACTIONS(4557), + [anon_sym_PLUS] = ACTIONS(4557), + [anon_sym_STAR] = ACTIONS(4552), + [anon_sym_SLASH] = ACTIONS(4557), + [anon_sym_PERCENT] = ACTIONS(4562), + [anon_sym_PIPE_PIPE] = ACTIONS(4562), + [anon_sym_AMP_AMP] = ACTIONS(4552), + [anon_sym_PIPE] = ACTIONS(4557), + [anon_sym_CARET] = ACTIONS(4562), + [anon_sym_AMP] = ACTIONS(4559), + [anon_sym_EQ_EQ] = ACTIONS(4562), + [anon_sym_BANG_EQ] = ACTIONS(4562), + [anon_sym_GT] = ACTIONS(4557), + [anon_sym_GT_EQ] = ACTIONS(4562), + [anon_sym_LT_EQ] = ACTIONS(4557), + [anon_sym_LT] = ACTIONS(4557), + [anon_sym_LT_LT] = ACTIONS(4562), + [anon_sym_GT_GT] = ACTIONS(4562), + [anon_sym_SEMI] = ACTIONS(4552), + [anon_sym_extern] = ACTIONS(4550), + [anon_sym___attribute__] = ACTIONS(4550), + [anon_sym_COLON_COLON] = ACTIONS(4555), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4552), + [anon_sym___declspec] = ACTIONS(4550), + [anon_sym___based] = ACTIONS(4550), + [anon_sym_LBRACE] = ACTIONS(4555), + [anon_sym_RBRACE] = ACTIONS(4562), + [anon_sym_LBRACK] = ACTIONS(4559), + [anon_sym_static] = ACTIONS(4550), + [anon_sym_register] = ACTIONS(4550), + [anon_sym_inline] = ACTIONS(4550), + [anon_sym_thread_local] = ACTIONS(4550), + [anon_sym_const] = ACTIONS(4550), + [anon_sym_constexpr] = ACTIONS(4550), + [anon_sym_volatile] = ACTIONS(4550), + [anon_sym_restrict] = ACTIONS(4550), + [anon_sym___restrict__] = ACTIONS(4550), + [anon_sym__Atomic] = ACTIONS(4550), + [anon_sym__Noreturn] = ACTIONS(4550), + [anon_sym_noreturn] = ACTIONS(4550), + [anon_sym_mutable] = ACTIONS(4550), + [anon_sym_constinit] = ACTIONS(4550), + [anon_sym_consteval] = ACTIONS(4550), + [anon_sym_QMARK] = ACTIONS(4562), + [anon_sym_LT_EQ_GT] = ACTIONS(4562), + [anon_sym_or] = ACTIONS(4557), + [anon_sym_and] = ACTIONS(4557), + [anon_sym_bitor] = ACTIONS(4557), + [anon_sym_xor] = ACTIONS(4557), + [anon_sym_bitand] = ACTIONS(4557), + [anon_sym_not_eq] = ACTIONS(4557), + [anon_sym_DASH_DASH] = ACTIONS(4562), + [anon_sym_PLUS_PLUS] = ACTIONS(4562), + [anon_sym_DOT] = ACTIONS(4557), + [anon_sym_DASH_GT] = ACTIONS(4562), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4550), + [anon_sym_decltype] = ACTIONS(4550), + [anon_sym_virtual] = ACTIONS(4550), + [anon_sym_template] = ACTIONS(4550), + [anon_sym_operator] = ACTIONS(4550), + }, + [2206] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(4562), + [anon_sym_COMMA] = ACTIONS(4562), + [anon_sym_RPAREN] = ACTIONS(4552), + [anon_sym_LPAREN2] = ACTIONS(4552), + [anon_sym_DASH] = ACTIONS(4557), + [anon_sym_PLUS] = ACTIONS(4557), + [anon_sym_STAR] = ACTIONS(4559), + [anon_sym_SLASH] = ACTIONS(4557), + [anon_sym_PERCENT] = ACTIONS(4557), + [anon_sym_PIPE_PIPE] = ACTIONS(4562), + [anon_sym_AMP_AMP] = ACTIONS(4552), + [anon_sym_PIPE] = ACTIONS(4557), + [anon_sym_CARET] = ACTIONS(4557), + [anon_sym_AMP] = ACTIONS(4559), + [anon_sym_EQ_EQ] = ACTIONS(4562), + [anon_sym_BANG_EQ] = ACTIONS(4562), + [anon_sym_GT] = ACTIONS(4557), + [anon_sym_GT_EQ] = ACTIONS(4562), + [anon_sym_LT_EQ] = ACTIONS(4557), + [anon_sym_LT] = ACTIONS(4557), + [anon_sym_LT_LT] = ACTIONS(4557), + [anon_sym_GT_GT] = ACTIONS(4557), + [anon_sym_SEMI] = ACTIONS(4562), + [anon_sym_COLON_COLON] = ACTIONS(4555), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4562), + [anon_sym_LBRACE] = ACTIONS(4555), + [anon_sym_LBRACK] = ACTIONS(4559), + [anon_sym_EQ] = ACTIONS(4557), + [anon_sym_const] = ACTIONS(4550), + [anon_sym_constexpr] = ACTIONS(4555), + [anon_sym_volatile] = ACTIONS(4555), + [anon_sym_restrict] = ACTIONS(4555), + [anon_sym___restrict__] = ACTIONS(4555), + [anon_sym__Atomic] = ACTIONS(4555), + [anon_sym__Noreturn] = ACTIONS(4555), + [anon_sym_noreturn] = ACTIONS(4555), + [anon_sym_mutable] = ACTIONS(4555), + [anon_sym_constinit] = ACTIONS(4555), + [anon_sym_consteval] = ACTIONS(4555), + [anon_sym_QMARK] = ACTIONS(4562), + [anon_sym_STAR_EQ] = ACTIONS(4562), + [anon_sym_SLASH_EQ] = ACTIONS(4562), + [anon_sym_PERCENT_EQ] = ACTIONS(4562), + [anon_sym_PLUS_EQ] = ACTIONS(4562), + [anon_sym_DASH_EQ] = ACTIONS(4562), + [anon_sym_LT_LT_EQ] = ACTIONS(4562), + [anon_sym_GT_GT_EQ] = ACTIONS(4562), + [anon_sym_AMP_EQ] = ACTIONS(4562), + [anon_sym_CARET_EQ] = ACTIONS(4562), + [anon_sym_PIPE_EQ] = ACTIONS(4562), + [anon_sym_LT_EQ_GT] = ACTIONS(4562), + [anon_sym_or] = ACTIONS(4562), + [anon_sym_and] = ACTIONS(4562), + [anon_sym_bitor] = ACTIONS(4562), + [anon_sym_xor] = ACTIONS(4562), + [anon_sym_bitand] = ACTIONS(4562), + [anon_sym_not_eq] = ACTIONS(4562), + [anon_sym_DASH_DASH] = ACTIONS(4562), + [anon_sym_PLUS_PLUS] = ACTIONS(4562), + [anon_sym_DOT] = ACTIONS(4557), + [anon_sym_DASH_GT] = ACTIONS(4557), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4555), + [anon_sym_decltype] = ACTIONS(4555), + [anon_sym_DOT_STAR] = ACTIONS(4562), + [anon_sym_DASH_GT_STAR] = ACTIONS(4562), + }, + [2207] = { + [sym_string_literal] = STATE(2207), + [sym_raw_string_literal] = STATE(2207), + [aux_sym_concatenated_string_repeat1] = STATE(2207), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4676), + [anon_sym_COMMA] = ACTIONS(4676), + [anon_sym_RPAREN] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(4676), + [anon_sym_DASH] = ACTIONS(4678), + [anon_sym_PLUS] = ACTIONS(4678), + [anon_sym_STAR] = ACTIONS(4678), + [anon_sym_SLASH] = ACTIONS(4678), + [anon_sym_PERCENT] = ACTIONS(4678), + [anon_sym_PIPE_PIPE] = ACTIONS(4676), + [anon_sym_AMP_AMP] = ACTIONS(4676), + [anon_sym_PIPE] = ACTIONS(4678), + [anon_sym_CARET] = ACTIONS(4678), + [anon_sym_AMP] = ACTIONS(4678), + [anon_sym_EQ_EQ] = ACTIONS(4676), + [anon_sym_BANG_EQ] = ACTIONS(4676), + [anon_sym_GT] = ACTIONS(4678), + [anon_sym_GT_EQ] = ACTIONS(4676), + [anon_sym_LT_EQ] = ACTIONS(4678), + [anon_sym_LT] = ACTIONS(4678), + [anon_sym_LT_LT] = ACTIONS(4678), + [anon_sym_GT_GT] = ACTIONS(4678), + [anon_sym_LBRACK] = ACTIONS(4676), + [anon_sym_EQ] = ACTIONS(4678), + [anon_sym_QMARK] = ACTIONS(4676), + [anon_sym_STAR_EQ] = ACTIONS(4676), + [anon_sym_SLASH_EQ] = ACTIONS(4676), + [anon_sym_PERCENT_EQ] = ACTIONS(4676), + [anon_sym_PLUS_EQ] = ACTIONS(4676), + [anon_sym_DASH_EQ] = ACTIONS(4676), + [anon_sym_LT_LT_EQ] = ACTIONS(4676), + [anon_sym_GT_GT_EQ] = ACTIONS(4676), + [anon_sym_AMP_EQ] = ACTIONS(4676), + [anon_sym_CARET_EQ] = ACTIONS(4676), + [anon_sym_PIPE_EQ] = ACTIONS(4676), + [anon_sym_and_eq] = ACTIONS(4678), + [anon_sym_or_eq] = ACTIONS(4678), + [anon_sym_xor_eq] = ACTIONS(4678), + [anon_sym_LT_EQ_GT] = ACTIONS(4676), + [anon_sym_or] = ACTIONS(4678), + [anon_sym_and] = ACTIONS(4678), + [anon_sym_bitor] = ACTIONS(4678), + [anon_sym_xor] = ACTIONS(4678), + [anon_sym_bitand] = ACTIONS(4678), + [anon_sym_not_eq] = ACTIONS(4678), + [anon_sym_DASH_DASH] = ACTIONS(4676), + [anon_sym_PLUS_PLUS] = ACTIONS(4676), + [anon_sym_DOT] = ACTIONS(4678), + [anon_sym_DASH_GT] = ACTIONS(4678), + [anon_sym_L_DQUOTE] = ACTIONS(4748), + [anon_sym_u_DQUOTE] = ACTIONS(4748), + [anon_sym_U_DQUOTE] = ACTIONS(4748), + [anon_sym_u8_DQUOTE] = ACTIONS(4748), + [anon_sym_DQUOTE] = ACTIONS(4748), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(4751), + [anon_sym_LR_DQUOTE] = ACTIONS(4751), + [anon_sym_uR_DQUOTE] = ACTIONS(4751), + [anon_sym_UR_DQUOTE] = ACTIONS(4751), + [anon_sym_u8R_DQUOTE] = ACTIONS(4751), + [anon_sym_DOT_STAR] = ACTIONS(4676), + [anon_sym_DASH_GT_STAR] = ACTIONS(4676), + [sym_literal_suffix] = ACTIONS(4678), + }, + [2208] = { + [sym_template_argument_list] = STATE(3391), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4470), + [anon_sym_COMMA] = ACTIONS(4470), + [anon_sym_LPAREN2] = ACTIONS(4470), + [anon_sym_DASH] = ACTIONS(4465), + [anon_sym_PLUS] = ACTIONS(4465), + [anon_sym_STAR] = ACTIONS(4467), + [anon_sym_SLASH] = ACTIONS(4465), + [anon_sym_PERCENT] = ACTIONS(4465), + [anon_sym_PIPE_PIPE] = ACTIONS(4457), + [anon_sym_AMP_AMP] = ACTIONS(4470), + [anon_sym_PIPE] = ACTIONS(4465), + [anon_sym_CARET] = ACTIONS(4465), + [anon_sym_AMP] = ACTIONS(4467), + [anon_sym_EQ_EQ] = ACTIONS(4457), + [anon_sym_BANG_EQ] = ACTIONS(4457), + [anon_sym_GT] = ACTIONS(4465), + [anon_sym_GT_EQ] = ACTIONS(4465), + [anon_sym_LT_EQ] = ACTIONS(4465), + [anon_sym_LT] = ACTIONS(4754), + [anon_sym_LT_LT] = ACTIONS(4465), + [anon_sym_GT_GT] = ACTIONS(4465), + [anon_sym_COLON_COLON] = ACTIONS(4476), + [anon_sym_LBRACE] = ACTIONS(4481), + [anon_sym_LBRACK] = ACTIONS(4470), + [anon_sym_EQ] = ACTIONS(4757), + [anon_sym_const] = ACTIONS(4455), + [anon_sym_constexpr] = ACTIONS(4463), + [anon_sym_volatile] = ACTIONS(4463), + [anon_sym_restrict] = ACTIONS(4463), + [anon_sym___restrict__] = ACTIONS(4463), + [anon_sym__Atomic] = ACTIONS(4463), + [anon_sym__Noreturn] = ACTIONS(4463), + [anon_sym_noreturn] = ACTIONS(4463), + [anon_sym_mutable] = ACTIONS(4463), + [anon_sym_constinit] = ACTIONS(4463), + [anon_sym_consteval] = ACTIONS(4463), + [anon_sym_QMARK] = ACTIONS(4457), + [anon_sym_STAR_EQ] = ACTIONS(4759), + [anon_sym_SLASH_EQ] = ACTIONS(4759), + [anon_sym_PERCENT_EQ] = ACTIONS(4759), + [anon_sym_PLUS_EQ] = ACTIONS(4759), + [anon_sym_DASH_EQ] = ACTIONS(4759), + [anon_sym_LT_LT_EQ] = ACTIONS(4759), + [anon_sym_GT_GT_EQ] = ACTIONS(4757), + [anon_sym_AMP_EQ] = ACTIONS(4759), + [anon_sym_CARET_EQ] = ACTIONS(4759), + [anon_sym_PIPE_EQ] = ACTIONS(4759), + [anon_sym_and_eq] = ACTIONS(4759), + [anon_sym_or_eq] = ACTIONS(4759), + [anon_sym_xor_eq] = ACTIONS(4759), + [anon_sym_LT_EQ_GT] = ACTIONS(4457), + [anon_sym_or] = ACTIONS(4465), + [anon_sym_and] = ACTIONS(4465), + [anon_sym_bitor] = ACTIONS(4457), + [anon_sym_xor] = ACTIONS(4465), + [anon_sym_bitand] = ACTIONS(4457), + [anon_sym_not_eq] = ACTIONS(4457), + [anon_sym_DASH_DASH] = ACTIONS(4457), + [anon_sym_PLUS_PLUS] = ACTIONS(4457), + [anon_sym_DOT] = ACTIONS(4465), + [anon_sym_DASH_GT] = ACTIONS(4457), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4463), + [anon_sym_decltype] = ACTIONS(4463), + [anon_sym_GT2] = ACTIONS(4470), + }, + [2209] = { + [sym_identifier] = ACTIONS(4550), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4562), + [anon_sym_COMMA] = ACTIONS(4562), + [anon_sym_RPAREN] = ACTIONS(4562), + [anon_sym_LPAREN2] = ACTIONS(4552), + [anon_sym_TILDE] = ACTIONS(4555), + [anon_sym_DASH] = ACTIONS(4557), + [anon_sym_PLUS] = ACTIONS(4557), + [anon_sym_STAR] = ACTIONS(4552), + [anon_sym_SLASH] = ACTIONS(4557), + [anon_sym_PERCENT] = ACTIONS(4562), + [anon_sym_PIPE_PIPE] = ACTIONS(4562), + [anon_sym_AMP_AMP] = ACTIONS(4552), + [anon_sym_PIPE] = ACTIONS(4557), + [anon_sym_CARET] = ACTIONS(4562), + [anon_sym_AMP] = ACTIONS(4559), + [anon_sym_EQ_EQ] = ACTIONS(4562), + [anon_sym_BANG_EQ] = ACTIONS(4562), + [anon_sym_GT] = ACTIONS(4557), + [anon_sym_GT_EQ] = ACTIONS(4562), + [anon_sym_LT_EQ] = ACTIONS(4557), + [anon_sym_LT] = ACTIONS(4557), + [anon_sym_LT_LT] = ACTIONS(4562), + [anon_sym_GT_GT] = ACTIONS(4562), + [anon_sym_SEMI] = ACTIONS(4562), + [anon_sym_extern] = ACTIONS(4550), + [anon_sym___attribute__] = ACTIONS(4550), + [anon_sym_COLON_COLON] = ACTIONS(4555), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4555), + [anon_sym___declspec] = ACTIONS(4550), + [anon_sym___based] = ACTIONS(4550), + [anon_sym_LBRACE] = ACTIONS(4555), + [anon_sym_LBRACK] = ACTIONS(4559), + [anon_sym_static] = ACTIONS(4550), + [anon_sym_register] = ACTIONS(4550), + [anon_sym_inline] = ACTIONS(4550), + [anon_sym_thread_local] = ACTIONS(4550), + [anon_sym_const] = ACTIONS(4550), + [anon_sym_constexpr] = ACTIONS(4550), + [anon_sym_volatile] = ACTIONS(4550), + [anon_sym_restrict] = ACTIONS(4550), + [anon_sym___restrict__] = ACTIONS(4550), + [anon_sym__Atomic] = ACTIONS(4550), + [anon_sym__Noreturn] = ACTIONS(4550), + [anon_sym_noreturn] = ACTIONS(4550), + [anon_sym_mutable] = ACTIONS(4550), + [anon_sym_constinit] = ACTIONS(4550), + [anon_sym_consteval] = ACTIONS(4550), + [anon_sym_QMARK] = ACTIONS(4562), + [anon_sym_LT_EQ_GT] = ACTIONS(4562), + [anon_sym_or] = ACTIONS(4557), + [anon_sym_and] = ACTIONS(4557), + [anon_sym_bitor] = ACTIONS(4557), + [anon_sym_xor] = ACTIONS(4557), + [anon_sym_bitand] = ACTIONS(4557), + [anon_sym_not_eq] = ACTIONS(4557), + [anon_sym_DASH_DASH] = ACTIONS(4562), + [anon_sym_PLUS_PLUS] = ACTIONS(4562), + [anon_sym_DOT] = ACTIONS(4557), + [anon_sym_DASH_GT] = ACTIONS(4562), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4550), + [anon_sym_decltype] = ACTIONS(4550), + [anon_sym_virtual] = ACTIONS(4550), + [anon_sym_template] = ACTIONS(4550), + [anon_sym_operator] = ACTIONS(4550), + }, + [2210] = { + [sym_template_argument_list] = STATE(2218), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4500), + [anon_sym_COMMA] = ACTIONS(4500), + [anon_sym_LPAREN2] = ACTIONS(4500), + [anon_sym_DASH] = ACTIONS(4505), + [anon_sym_PLUS] = ACTIONS(4505), + [anon_sym_STAR] = ACTIONS(4507), + [anon_sym_SLASH] = ACTIONS(4505), + [anon_sym_PERCENT] = ACTIONS(4505), + [anon_sym_PIPE_PIPE] = ACTIONS(4510), + [anon_sym_AMP_AMP] = ACTIONS(4500), + [anon_sym_PIPE] = ACTIONS(4505), + [anon_sym_CARET] = ACTIONS(4505), + [anon_sym_AMP] = ACTIONS(4507), + [anon_sym_EQ_EQ] = ACTIONS(4510), + [anon_sym_BANG_EQ] = ACTIONS(4510), + [anon_sym_GT] = ACTIONS(4505), + [anon_sym_GT_EQ] = ACTIONS(4505), + [anon_sym_LT_EQ] = ACTIONS(4505), + [anon_sym_LT] = ACTIONS(4761), + [anon_sym_LT_LT] = ACTIONS(4505), + [anon_sym_GT_GT] = ACTIONS(4505), + [anon_sym_COLON_COLON] = ACTIONS(4476), + [anon_sym_LBRACE] = ACTIONS(4503), + [anon_sym_LBRACK] = ACTIONS(4500), + [anon_sym_EQ] = ACTIONS(4505), + [anon_sym_const] = ACTIONS(4498), + [anon_sym_constexpr] = ACTIONS(4503), + [anon_sym_volatile] = ACTIONS(4503), + [anon_sym_restrict] = ACTIONS(4503), + [anon_sym___restrict__] = ACTIONS(4503), + [anon_sym__Atomic] = ACTIONS(4503), + [anon_sym__Noreturn] = ACTIONS(4503), + [anon_sym_noreturn] = ACTIONS(4503), + [anon_sym_mutable] = ACTIONS(4503), + [anon_sym_constinit] = ACTIONS(4503), + [anon_sym_consteval] = ACTIONS(4503), + [anon_sym_QMARK] = ACTIONS(4510), + [anon_sym_STAR_EQ] = ACTIONS(4510), + [anon_sym_SLASH_EQ] = ACTIONS(4510), + [anon_sym_PERCENT_EQ] = ACTIONS(4510), + [anon_sym_PLUS_EQ] = ACTIONS(4510), + [anon_sym_DASH_EQ] = ACTIONS(4510), + [anon_sym_LT_LT_EQ] = ACTIONS(4510), + [anon_sym_GT_GT_EQ] = ACTIONS(4505), + [anon_sym_AMP_EQ] = ACTIONS(4510), + [anon_sym_CARET_EQ] = ACTIONS(4510), + [anon_sym_PIPE_EQ] = ACTIONS(4510), + [anon_sym_and_eq] = ACTIONS(4510), + [anon_sym_or_eq] = ACTIONS(4510), + [anon_sym_xor_eq] = ACTIONS(4510), + [anon_sym_LT_EQ_GT] = ACTIONS(4510), + [anon_sym_or] = ACTIONS(4505), + [anon_sym_and] = ACTIONS(4505), + [anon_sym_bitor] = ACTIONS(4510), + [anon_sym_xor] = ACTIONS(4505), + [anon_sym_bitand] = ACTIONS(4510), + [anon_sym_not_eq] = ACTIONS(4510), + [anon_sym_DASH_DASH] = ACTIONS(4510), + [anon_sym_PLUS_PLUS] = ACTIONS(4510), + [anon_sym_DOT] = ACTIONS(4505), + [anon_sym_DASH_GT] = ACTIONS(4510), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4503), + [anon_sym_decltype] = ACTIONS(4503), + [anon_sym_GT2] = ACTIONS(4500), + }, + [2211] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(4764), + [anon_sym_COMMA] = ACTIONS(4764), + [anon_sym_RPAREN] = ACTIONS(4764), + [anon_sym_LPAREN2] = ACTIONS(4764), + [anon_sym_DASH] = ACTIONS(4766), + [anon_sym_PLUS] = ACTIONS(4766), + [anon_sym_STAR] = ACTIONS(4766), + [anon_sym_SLASH] = ACTIONS(4766), + [anon_sym_PERCENT] = ACTIONS(4766), + [anon_sym_PIPE_PIPE] = ACTIONS(4764), + [anon_sym_AMP_AMP] = ACTIONS(4764), + [anon_sym_PIPE] = ACTIONS(4766), + [anon_sym_CARET] = ACTIONS(4766), + [anon_sym_AMP] = ACTIONS(4766), + [anon_sym_EQ_EQ] = ACTIONS(4764), + [anon_sym_BANG_EQ] = ACTIONS(4764), + [anon_sym_GT] = ACTIONS(4766), + [anon_sym_GT_EQ] = ACTIONS(4764), + [anon_sym_LT_EQ] = ACTIONS(4766), + [anon_sym_LT] = ACTIONS(4766), + [anon_sym_LT_LT] = ACTIONS(4766), + [anon_sym_GT_GT] = ACTIONS(4766), + [anon_sym_SEMI] = ACTIONS(4764), + [anon_sym_RBRACE] = ACTIONS(4764), + [anon_sym_LBRACK] = ACTIONS(4764), + [anon_sym_RBRACK] = ACTIONS(4764), + [anon_sym_EQ] = ACTIONS(4766), + [anon_sym_COLON] = ACTIONS(4764), + [anon_sym_QMARK] = ACTIONS(4764), + [anon_sym_STAR_EQ] = ACTIONS(4764), + [anon_sym_SLASH_EQ] = ACTIONS(4764), + [anon_sym_PERCENT_EQ] = ACTIONS(4764), + [anon_sym_PLUS_EQ] = ACTIONS(4764), + [anon_sym_DASH_EQ] = ACTIONS(4764), + [anon_sym_LT_LT_EQ] = ACTIONS(4764), + [anon_sym_GT_GT_EQ] = ACTIONS(4764), + [anon_sym_AMP_EQ] = ACTIONS(4764), + [anon_sym_CARET_EQ] = ACTIONS(4764), + [anon_sym_PIPE_EQ] = ACTIONS(4764), + [anon_sym_and_eq] = ACTIONS(4766), + [anon_sym_or_eq] = ACTIONS(4766), + [anon_sym_xor_eq] = ACTIONS(4766), + [anon_sym_LT_EQ_GT] = ACTIONS(4764), + [anon_sym_or] = ACTIONS(4766), + [anon_sym_and] = ACTIONS(4766), + [anon_sym_bitor] = ACTIONS(4766), + [anon_sym_xor] = ACTIONS(4766), + [anon_sym_bitand] = ACTIONS(4766), + [anon_sym_not_eq] = ACTIONS(4766), + [anon_sym_DASH_DASH] = ACTIONS(4764), + [anon_sym_PLUS_PLUS] = ACTIONS(4764), + [anon_sym_DOT] = ACTIONS(4766), + [anon_sym_DASH_GT] = ACTIONS(4764), + [anon_sym_L_DQUOTE] = ACTIONS(4764), + [anon_sym_u_DQUOTE] = ACTIONS(4764), + [anon_sym_U_DQUOTE] = ACTIONS(4764), + [anon_sym_u8_DQUOTE] = ACTIONS(4764), + [anon_sym_DQUOTE] = ACTIONS(4764), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(4764), + [anon_sym_LR_DQUOTE] = ACTIONS(4764), + [anon_sym_uR_DQUOTE] = ACTIONS(4764), + [anon_sym_UR_DQUOTE] = ACTIONS(4764), + [anon_sym_u8R_DQUOTE] = ACTIONS(4764), + [sym_literal_suffix] = ACTIONS(4766), + }, + [2212] = { + [sym_catch_clause] = STATE(2212), + [aux_sym_constructor_try_statement_repeat1] = STATE(2212), + [sym_identifier] = 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_TILDE] = ACTIONS(2686), + [anon_sym_STAR] = ACTIONS(2686), + [anon_sym_AMP_AMP] = ACTIONS(2686), + [anon_sym_AMP] = ACTIONS(2684), + [anon_sym_typedef] = ACTIONS(2684), + [anon_sym_extern] = ACTIONS(2684), + [anon_sym___attribute__] = ACTIONS(2684), + [anon_sym_COLON_COLON] = ACTIONS(2686), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2686), + [anon_sym___declspec] = ACTIONS(2684), + [anon_sym___based] = ACTIONS(2684), + [anon_sym_LBRACK] = ACTIONS(2684), + [anon_sym_static] = ACTIONS(2684), + [anon_sym_register] = ACTIONS(2684), + [anon_sym_inline] = ACTIONS(2684), + [anon_sym_thread_local] = 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_noreturn] = ACTIONS(2684), + [anon_sym_mutable] = ACTIONS(2684), + [anon_sym_constinit] = ACTIONS(2684), + [anon_sym_consteval] = ACTIONS(2684), + [anon_sym_signed] = ACTIONS(2684), + [anon_sym_unsigned] = ACTIONS(2684), + [anon_sym_long] = ACTIONS(2684), + [anon_sym_short] = ACTIONS(2684), + [sym_primitive_type] = ACTIONS(2684), + [anon_sym_enum] = ACTIONS(2684), + [anon_sym_class] = ACTIONS(2684), + [anon_sym_struct] = ACTIONS(2684), + [anon_sym_union] = ACTIONS(2684), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2684), + [anon_sym_decltype] = ACTIONS(2684), + [anon_sym_virtual] = ACTIONS(2684), + [anon_sym_explicit] = ACTIONS(2684), + [anon_sym_typename] = ACTIONS(2684), + [anon_sym_template] = ACTIONS(2684), + [anon_sym_operator] = ACTIONS(2684), + [anon_sym_friend] = ACTIONS(2684), + [anon_sym_public] = ACTIONS(2684), + [anon_sym_private] = ACTIONS(2684), + [anon_sym_protected] = ACTIONS(2684), + [anon_sym_using] = ACTIONS(2684), + [anon_sym_static_assert] = ACTIONS(2684), + [anon_sym_catch] = ACTIONS(4768), + }, + [2213] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(4771), + [anon_sym_COMMA] = ACTIONS(4771), + [anon_sym_RPAREN] = ACTIONS(4771), + [anon_sym_LPAREN2] = ACTIONS(4771), + [anon_sym_DASH] = ACTIONS(4773), + [anon_sym_PLUS] = ACTIONS(4773), + [anon_sym_STAR] = ACTIONS(4773), + [anon_sym_SLASH] = ACTIONS(4773), + [anon_sym_PERCENT] = ACTIONS(4773), + [anon_sym_PIPE_PIPE] = ACTIONS(4771), + [anon_sym_AMP_AMP] = ACTIONS(4771), + [anon_sym_PIPE] = ACTIONS(4773), + [anon_sym_CARET] = ACTIONS(4773), + [anon_sym_AMP] = ACTIONS(4773), + [anon_sym_EQ_EQ] = ACTIONS(4771), + [anon_sym_BANG_EQ] = ACTIONS(4771), + [anon_sym_GT] = ACTIONS(4773), + [anon_sym_GT_EQ] = ACTIONS(4771), + [anon_sym_LT_EQ] = ACTIONS(4773), + [anon_sym_LT] = ACTIONS(4773), + [anon_sym_LT_LT] = ACTIONS(4773), + [anon_sym_GT_GT] = ACTIONS(4773), + [anon_sym_SEMI] = ACTIONS(4771), + [anon_sym_RBRACE] = ACTIONS(4771), + [anon_sym_LBRACK] = ACTIONS(4771), + [anon_sym_RBRACK] = ACTIONS(4771), + [anon_sym_EQ] = ACTIONS(4773), + [anon_sym_COLON] = ACTIONS(4771), + [anon_sym_QMARK] = ACTIONS(4771), + [anon_sym_STAR_EQ] = ACTIONS(4771), + [anon_sym_SLASH_EQ] = ACTIONS(4771), + [anon_sym_PERCENT_EQ] = ACTIONS(4771), + [anon_sym_PLUS_EQ] = ACTIONS(4771), + [anon_sym_DASH_EQ] = ACTIONS(4771), + [anon_sym_LT_LT_EQ] = ACTIONS(4771), + [anon_sym_GT_GT_EQ] = ACTIONS(4771), + [anon_sym_AMP_EQ] = ACTIONS(4771), + [anon_sym_CARET_EQ] = ACTIONS(4771), + [anon_sym_PIPE_EQ] = ACTIONS(4771), + [anon_sym_and_eq] = ACTIONS(4773), + [anon_sym_or_eq] = ACTIONS(4773), + [anon_sym_xor_eq] = ACTIONS(4773), + [anon_sym_LT_EQ_GT] = ACTIONS(4771), + [anon_sym_or] = ACTIONS(4773), + [anon_sym_and] = ACTIONS(4773), + [anon_sym_bitor] = ACTIONS(4773), + [anon_sym_xor] = ACTIONS(4773), + [anon_sym_bitand] = ACTIONS(4773), + [anon_sym_not_eq] = ACTIONS(4773), + [anon_sym_DASH_DASH] = ACTIONS(4771), + [anon_sym_PLUS_PLUS] = ACTIONS(4771), + [anon_sym_DOT] = ACTIONS(4773), + [anon_sym_DASH_GT] = ACTIONS(4771), + [anon_sym_L_DQUOTE] = ACTIONS(4771), + [anon_sym_u_DQUOTE] = ACTIONS(4771), + [anon_sym_U_DQUOTE] = ACTIONS(4771), + [anon_sym_u8_DQUOTE] = ACTIONS(4771), + [anon_sym_DQUOTE] = ACTIONS(4771), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(4771), + [anon_sym_LR_DQUOTE] = ACTIONS(4771), + [anon_sym_uR_DQUOTE] = ACTIONS(4771), + [anon_sym_UR_DQUOTE] = ACTIONS(4771), + [anon_sym_u8R_DQUOTE] = ACTIONS(4771), + [sym_literal_suffix] = ACTIONS(4773), + }, + [2214] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(4775), + [anon_sym_COMMA] = ACTIONS(4775), + [anon_sym_RPAREN] = ACTIONS(4775), + [anon_sym_LPAREN2] = ACTIONS(4775), + [anon_sym_DASH] = ACTIONS(4777), + [anon_sym_PLUS] = ACTIONS(4777), + [anon_sym_STAR] = ACTIONS(4777), + [anon_sym_SLASH] = ACTIONS(4777), + [anon_sym_PERCENT] = ACTIONS(4777), + [anon_sym_PIPE_PIPE] = ACTIONS(4775), + [anon_sym_AMP_AMP] = ACTIONS(4775), + [anon_sym_PIPE] = ACTIONS(4777), + [anon_sym_CARET] = ACTIONS(4777), + [anon_sym_AMP] = ACTIONS(4777), + [anon_sym_EQ_EQ] = ACTIONS(4775), + [anon_sym_BANG_EQ] = ACTIONS(4775), + [anon_sym_GT] = ACTIONS(4777), + [anon_sym_GT_EQ] = ACTIONS(4775), + [anon_sym_LT_EQ] = ACTIONS(4777), + [anon_sym_LT] = ACTIONS(4777), + [anon_sym_LT_LT] = ACTIONS(4777), + [anon_sym_GT_GT] = ACTIONS(4777), + [anon_sym_SEMI] = ACTIONS(4775), + [anon_sym_RBRACE] = ACTIONS(4775), + [anon_sym_LBRACK] = ACTIONS(4775), + [anon_sym_RBRACK] = ACTIONS(4775), + [anon_sym_EQ] = ACTIONS(4777), + [anon_sym_COLON] = ACTIONS(4775), + [anon_sym_QMARK] = ACTIONS(4775), + [anon_sym_STAR_EQ] = ACTIONS(4775), + [anon_sym_SLASH_EQ] = ACTIONS(4775), + [anon_sym_PERCENT_EQ] = ACTIONS(4775), + [anon_sym_PLUS_EQ] = ACTIONS(4775), + [anon_sym_DASH_EQ] = ACTIONS(4775), + [anon_sym_LT_LT_EQ] = ACTIONS(4775), + [anon_sym_GT_GT_EQ] = ACTIONS(4775), + [anon_sym_AMP_EQ] = ACTIONS(4775), + [anon_sym_CARET_EQ] = ACTIONS(4775), + [anon_sym_PIPE_EQ] = ACTIONS(4775), + [anon_sym_and_eq] = ACTIONS(4777), + [anon_sym_or_eq] = ACTIONS(4777), + [anon_sym_xor_eq] = ACTIONS(4777), + [anon_sym_LT_EQ_GT] = ACTIONS(4775), + [anon_sym_or] = ACTIONS(4777), + [anon_sym_and] = ACTIONS(4777), + [anon_sym_bitor] = ACTIONS(4777), + [anon_sym_xor] = ACTIONS(4777), + [anon_sym_bitand] = ACTIONS(4777), + [anon_sym_not_eq] = ACTIONS(4777), + [anon_sym_DASH_DASH] = ACTIONS(4775), + [anon_sym_PLUS_PLUS] = ACTIONS(4775), + [anon_sym_DOT] = ACTIONS(4777), + [anon_sym_DASH_GT] = ACTIONS(4775), + [anon_sym_L_DQUOTE] = ACTIONS(4775), + [anon_sym_u_DQUOTE] = ACTIONS(4775), + [anon_sym_U_DQUOTE] = ACTIONS(4775), + [anon_sym_u8_DQUOTE] = ACTIONS(4775), + [anon_sym_DQUOTE] = ACTIONS(4775), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(4775), + [anon_sym_LR_DQUOTE] = ACTIONS(4775), + [anon_sym_uR_DQUOTE] = ACTIONS(4775), + [anon_sym_UR_DQUOTE] = ACTIONS(4775), + [anon_sym_u8R_DQUOTE] = ACTIONS(4775), + [sym_literal_suffix] = ACTIONS(4777), + }, + [2215] = { + [sym_catch_clause] = STATE(2212), + [aux_sym_constructor_try_statement_repeat1] = STATE(2212), + [sym_identifier] = ACTIONS(2857), + [aux_sym_preproc_def_token1] = ACTIONS(2857), + [aux_sym_preproc_if_token1] = ACTIONS(2857), + [aux_sym_preproc_if_token2] = ACTIONS(2857), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2857), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2857), + [aux_sym_preproc_else_token1] = ACTIONS(2857), + [aux_sym_preproc_elif_token1] = ACTIONS(2857), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2857), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2857), + [sym_preproc_directive] = ACTIONS(2857), + [anon_sym_LPAREN2] = ACTIONS(2859), + [anon_sym_TILDE] = ACTIONS(2859), + [anon_sym_STAR] = ACTIONS(2859), + [anon_sym_AMP_AMP] = ACTIONS(2859), + [anon_sym_AMP] = ACTIONS(2857), + [anon_sym_typedef] = ACTIONS(2857), + [anon_sym_extern] = ACTIONS(2857), + [anon_sym___attribute__] = ACTIONS(2857), + [anon_sym_COLON_COLON] = ACTIONS(2859), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2859), + [anon_sym___declspec] = ACTIONS(2857), + [anon_sym___based] = ACTIONS(2857), + [anon_sym_LBRACK] = ACTIONS(2857), + [anon_sym_static] = ACTIONS(2857), + [anon_sym_register] = ACTIONS(2857), + [anon_sym_inline] = ACTIONS(2857), + [anon_sym_thread_local] = ACTIONS(2857), + [anon_sym_const] = ACTIONS(2857), + [anon_sym_constexpr] = ACTIONS(2857), + [anon_sym_volatile] = ACTIONS(2857), + [anon_sym_restrict] = ACTIONS(2857), + [anon_sym___restrict__] = ACTIONS(2857), + [anon_sym__Atomic] = ACTIONS(2857), + [anon_sym__Noreturn] = ACTIONS(2857), + [anon_sym_noreturn] = ACTIONS(2857), + [anon_sym_mutable] = ACTIONS(2857), + [anon_sym_constinit] = ACTIONS(2857), + [anon_sym_consteval] = ACTIONS(2857), + [anon_sym_signed] = ACTIONS(2857), + [anon_sym_unsigned] = ACTIONS(2857), + [anon_sym_long] = ACTIONS(2857), + [anon_sym_short] = ACTIONS(2857), + [sym_primitive_type] = ACTIONS(2857), + [anon_sym_enum] = ACTIONS(2857), + [anon_sym_class] = ACTIONS(2857), + [anon_sym_struct] = ACTIONS(2857), + [anon_sym_union] = ACTIONS(2857), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2857), + [anon_sym_decltype] = ACTIONS(2857), + [anon_sym_virtual] = ACTIONS(2857), + [anon_sym_explicit] = ACTIONS(2857), + [anon_sym_typename] = ACTIONS(2857), + [anon_sym_template] = ACTIONS(2857), + [anon_sym_operator] = ACTIONS(2857), + [anon_sym_friend] = ACTIONS(2857), + [anon_sym_public] = ACTIONS(2857), + [anon_sym_private] = ACTIONS(2857), + [anon_sym_protected] = ACTIONS(2857), + [anon_sym_using] = ACTIONS(2857), + [anon_sym_static_assert] = ACTIONS(2857), + [anon_sym_catch] = ACTIONS(4779), + }, + [2216] = { + [sym__declaration_modifiers] = STATE(2530), + [sym__declaration_specifiers] = STATE(3795), + [sym_attribute_specifier] = STATE(2530), + [sym_attribute_declaration] = STATE(2530), + [sym_ms_declspec_modifier] = STATE(2530), + [sym_storage_class_specifier] = STATE(2530), + [sym_type_qualifier] = STATE(2530), + [sym__type_specifier] = STATE(3633), + [sym_sized_type_specifier] = STATE(3723), + [sym_enum_specifier] = STATE(3723), + [sym_struct_specifier] = STATE(3723), + [sym_union_specifier] = STATE(3723), + [sym_parameter_declaration] = STATE(6292), + [sym_placeholder_type_specifier] = STATE(3723), + [sym_decltype_auto] = STATE(3717), + [sym_decltype] = STATE(3680), + [sym_class_specifier] = STATE(3723), + [sym_virtual] = STATE(2530), + [sym_dependent_type] = STATE(3723), + [sym_optional_parameter_declaration] = STATE(6292), + [sym_variadic_parameter_declaration] = STATE(6292), + [sym_template_type] = STATE(3680), + [sym_dependent_type_identifier] = STATE(7638), + [sym__scope_resolution] = STATE(5733), + [sym_qualified_type_identifier] = STATE(3694), + [aux_sym__declaration_specifiers_repeat1] = STATE(2530), + [aux_sym_sized_type_specifier_repeat1] = STATE(3657), + [sym_identifier] = ACTIONS(4570), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1895), + [anon_sym_RPAREN] = ACTIONS(4012), + [anon_sym_extern] = ACTIONS(53), + [anon_sym___attribute__] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(4580), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1813), + [anon_sym___declspec] = ACTIONS(43), + [anon_sym_static] = ACTIONS(53), + [anon_sym_register] = ACTIONS(53), + [anon_sym_inline] = ACTIONS(53), + [anon_sym_thread_local] = ACTIONS(53), + [anon_sym_const] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym___restrict__] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym__Noreturn] = ACTIONS(57), + [anon_sym_noreturn] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(3667), + [anon_sym_enum] = ACTIONS(1853), + [anon_sym_class] = ACTIONS(1855), + [anon_sym_struct] = ACTIONS(1857), + [anon_sym_union] = ACTIONS(1859), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(113), + [anon_sym_decltype] = ACTIONS(115), + [anon_sym_virtual] = ACTIONS(117), + [anon_sym_typename] = ACTIONS(1881), + [anon_sym_template] = ACTIONS(1329), + }, + [2217] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(4781), + [anon_sym_COMMA] = ACTIONS(4781), + [anon_sym_RPAREN] = ACTIONS(4781), + [anon_sym_LPAREN2] = ACTIONS(4781), + [anon_sym_DASH] = ACTIONS(4783), + [anon_sym_PLUS] = ACTIONS(4783), + [anon_sym_STAR] = ACTIONS(4783), + [anon_sym_SLASH] = ACTIONS(4783), + [anon_sym_PERCENT] = ACTIONS(4783), + [anon_sym_PIPE_PIPE] = ACTIONS(4781), + [anon_sym_AMP_AMP] = ACTIONS(4781), + [anon_sym_PIPE] = ACTIONS(4783), + [anon_sym_CARET] = ACTIONS(4783), + [anon_sym_AMP] = ACTIONS(4783), + [anon_sym_EQ_EQ] = ACTIONS(4781), + [anon_sym_BANG_EQ] = ACTIONS(4781), + [anon_sym_GT] = ACTIONS(4783), + [anon_sym_GT_EQ] = ACTIONS(4781), + [anon_sym_LT_EQ] = ACTIONS(4783), + [anon_sym_LT] = ACTIONS(4783), + [anon_sym_LT_LT] = ACTIONS(4783), + [anon_sym_GT_GT] = ACTIONS(4783), + [anon_sym_SEMI] = ACTIONS(4781), + [anon_sym_RBRACE] = ACTIONS(4781), + [anon_sym_LBRACK] = ACTIONS(4781), + [anon_sym_RBRACK] = ACTIONS(4781), + [anon_sym_EQ] = ACTIONS(4783), + [anon_sym_COLON] = ACTIONS(4781), + [anon_sym_QMARK] = ACTIONS(4781), + [anon_sym_STAR_EQ] = ACTIONS(4781), + [anon_sym_SLASH_EQ] = ACTIONS(4781), + [anon_sym_PERCENT_EQ] = ACTIONS(4781), + [anon_sym_PLUS_EQ] = ACTIONS(4781), + [anon_sym_DASH_EQ] = ACTIONS(4781), + [anon_sym_LT_LT_EQ] = ACTIONS(4781), + [anon_sym_GT_GT_EQ] = ACTIONS(4781), + [anon_sym_AMP_EQ] = ACTIONS(4781), + [anon_sym_CARET_EQ] = ACTIONS(4781), + [anon_sym_PIPE_EQ] = ACTIONS(4781), + [anon_sym_and_eq] = ACTIONS(4783), + [anon_sym_or_eq] = ACTIONS(4783), + [anon_sym_xor_eq] = ACTIONS(4783), + [anon_sym_LT_EQ_GT] = ACTIONS(4781), + [anon_sym_or] = ACTIONS(4783), + [anon_sym_and] = ACTIONS(4783), + [anon_sym_bitor] = ACTIONS(4783), + [anon_sym_xor] = ACTIONS(4783), + [anon_sym_bitand] = ACTIONS(4783), + [anon_sym_not_eq] = ACTIONS(4783), + [anon_sym_DASH_DASH] = ACTIONS(4781), + [anon_sym_PLUS_PLUS] = ACTIONS(4781), + [anon_sym_DOT] = ACTIONS(4783), + [anon_sym_DASH_GT] = ACTIONS(4781), + [anon_sym_L_DQUOTE] = ACTIONS(4781), + [anon_sym_u_DQUOTE] = ACTIONS(4781), + [anon_sym_U_DQUOTE] = ACTIONS(4781), + [anon_sym_u8_DQUOTE] = ACTIONS(4781), + [anon_sym_DQUOTE] = ACTIONS(4781), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(4781), + [anon_sym_LR_DQUOTE] = ACTIONS(4781), + [anon_sym_uR_DQUOTE] = ACTIONS(4781), + [anon_sym_UR_DQUOTE] = ACTIONS(4781), + [anon_sym_u8R_DQUOTE] = ACTIONS(4781), + [sym_literal_suffix] = ACTIONS(4783), + }, + [2218] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(4552), + [anon_sym_COMMA] = ACTIONS(4552), + [anon_sym_LPAREN2] = ACTIONS(4552), + [anon_sym_DASH] = ACTIONS(4557), + [anon_sym_PLUS] = ACTIONS(4557), + [anon_sym_STAR] = ACTIONS(4559), + [anon_sym_SLASH] = ACTIONS(4557), + [anon_sym_PERCENT] = ACTIONS(4557), + [anon_sym_PIPE_PIPE] = ACTIONS(4562), + [anon_sym_AMP_AMP] = ACTIONS(4552), + [anon_sym_PIPE] = ACTIONS(4557), + [anon_sym_CARET] = ACTIONS(4557), + [anon_sym_AMP] = ACTIONS(4559), + [anon_sym_EQ_EQ] = ACTIONS(4562), + [anon_sym_BANG_EQ] = ACTIONS(4562), + [anon_sym_GT] = ACTIONS(4557), + [anon_sym_GT_EQ] = ACTIONS(4557), + [anon_sym_LT_EQ] = ACTIONS(4557), + [anon_sym_LT] = ACTIONS(4557), + [anon_sym_LT_LT] = ACTIONS(4557), + [anon_sym_GT_GT] = ACTIONS(4557), + [anon_sym_COLON_COLON] = ACTIONS(4555), + [anon_sym_LBRACE] = ACTIONS(4555), + [anon_sym_LBRACK] = ACTIONS(4552), + [anon_sym_EQ] = ACTIONS(4557), + [anon_sym_const] = ACTIONS(4550), + [anon_sym_constexpr] = ACTIONS(4555), + [anon_sym_volatile] = ACTIONS(4555), + [anon_sym_restrict] = ACTIONS(4555), + [anon_sym___restrict__] = ACTIONS(4555), + [anon_sym__Atomic] = ACTIONS(4555), + [anon_sym__Noreturn] = ACTIONS(4555), + [anon_sym_noreturn] = ACTIONS(4555), + [anon_sym_mutable] = ACTIONS(4555), + [anon_sym_constinit] = ACTIONS(4555), + [anon_sym_consteval] = ACTIONS(4555), + [anon_sym_QMARK] = ACTIONS(4562), + [anon_sym_STAR_EQ] = ACTIONS(4562), + [anon_sym_SLASH_EQ] = ACTIONS(4562), + [anon_sym_PERCENT_EQ] = ACTIONS(4562), + [anon_sym_PLUS_EQ] = ACTIONS(4562), + [anon_sym_DASH_EQ] = ACTIONS(4562), + [anon_sym_LT_LT_EQ] = ACTIONS(4562), + [anon_sym_GT_GT_EQ] = ACTIONS(4557), + [anon_sym_AMP_EQ] = ACTIONS(4562), + [anon_sym_CARET_EQ] = ACTIONS(4562), + [anon_sym_PIPE_EQ] = ACTIONS(4562), + [anon_sym_and_eq] = ACTIONS(4562), + [anon_sym_or_eq] = ACTIONS(4562), + [anon_sym_xor_eq] = ACTIONS(4562), + [anon_sym_LT_EQ_GT] = ACTIONS(4562), + [anon_sym_or] = ACTIONS(4557), + [anon_sym_and] = ACTIONS(4557), + [anon_sym_bitor] = ACTIONS(4562), + [anon_sym_xor] = ACTIONS(4557), + [anon_sym_bitand] = ACTIONS(4562), + [anon_sym_not_eq] = ACTIONS(4562), + [anon_sym_DASH_DASH] = ACTIONS(4562), + [anon_sym_PLUS_PLUS] = ACTIONS(4562), + [anon_sym_DOT] = ACTIONS(4557), + [anon_sym_DASH_GT] = ACTIONS(4562), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4555), + [anon_sym_decltype] = ACTIONS(4555), + [anon_sym_GT2] = ACTIONS(4552), + }, + [2219] = { + [sym_catch_clause] = STATE(2212), + [aux_sym_constructor_try_statement_repeat1] = STATE(2212), + [sym_identifier] = ACTIONS(2709), + [aux_sym_preproc_def_token1] = ACTIONS(2709), + [aux_sym_preproc_if_token1] = ACTIONS(2709), + [aux_sym_preproc_if_token2] = ACTIONS(2709), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2709), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2709), + [aux_sym_preproc_else_token1] = ACTIONS(2709), + [aux_sym_preproc_elif_token1] = ACTIONS(2709), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2709), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2709), + [sym_preproc_directive] = ACTIONS(2709), + [anon_sym_LPAREN2] = ACTIONS(2711), + [anon_sym_TILDE] = ACTIONS(2711), + [anon_sym_STAR] = ACTIONS(2711), + [anon_sym_AMP_AMP] = ACTIONS(2711), + [anon_sym_AMP] = ACTIONS(2709), + [anon_sym_typedef] = ACTIONS(2709), + [anon_sym_extern] = ACTIONS(2709), + [anon_sym___attribute__] = ACTIONS(2709), + [anon_sym_COLON_COLON] = ACTIONS(2711), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2711), + [anon_sym___declspec] = ACTIONS(2709), + [anon_sym___based] = ACTIONS(2709), + [anon_sym_LBRACK] = ACTIONS(2709), + [anon_sym_static] = ACTIONS(2709), + [anon_sym_register] = ACTIONS(2709), + [anon_sym_inline] = ACTIONS(2709), + [anon_sym_thread_local] = ACTIONS(2709), + [anon_sym_const] = ACTIONS(2709), + [anon_sym_constexpr] = ACTIONS(2709), + [anon_sym_volatile] = ACTIONS(2709), + [anon_sym_restrict] = ACTIONS(2709), + [anon_sym___restrict__] = ACTIONS(2709), + [anon_sym__Atomic] = ACTIONS(2709), + [anon_sym__Noreturn] = ACTIONS(2709), + [anon_sym_noreturn] = ACTIONS(2709), + [anon_sym_mutable] = ACTIONS(2709), + [anon_sym_constinit] = ACTIONS(2709), + [anon_sym_consteval] = ACTIONS(2709), + [anon_sym_signed] = ACTIONS(2709), + [anon_sym_unsigned] = ACTIONS(2709), + [anon_sym_long] = ACTIONS(2709), + [anon_sym_short] = ACTIONS(2709), + [sym_primitive_type] = ACTIONS(2709), + [anon_sym_enum] = ACTIONS(2709), + [anon_sym_class] = ACTIONS(2709), + [anon_sym_struct] = ACTIONS(2709), + [anon_sym_union] = ACTIONS(2709), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2709), + [anon_sym_decltype] = ACTIONS(2709), + [anon_sym_virtual] = ACTIONS(2709), + [anon_sym_explicit] = ACTIONS(2709), + [anon_sym_typename] = ACTIONS(2709), + [anon_sym_template] = ACTIONS(2709), + [anon_sym_operator] = ACTIONS(2709), + [anon_sym_friend] = ACTIONS(2709), + [anon_sym_public] = ACTIONS(2709), + [anon_sym_private] = ACTIONS(2709), + [anon_sym_protected] = ACTIONS(2709), + [anon_sym_using] = ACTIONS(2709), + [anon_sym_static_assert] = ACTIONS(2709), + [anon_sym_catch] = ACTIONS(4779), + }, + [2220] = { + [sym_catch_clause] = STATE(2212), + [aux_sym_constructor_try_statement_repeat1] = STATE(2212), + [sym_identifier] = ACTIONS(2721), + [aux_sym_preproc_def_token1] = ACTIONS(2721), + [aux_sym_preproc_if_token1] = ACTIONS(2721), + [aux_sym_preproc_if_token2] = ACTIONS(2721), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2721), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2721), + [aux_sym_preproc_else_token1] = ACTIONS(2721), + [aux_sym_preproc_elif_token1] = ACTIONS(2721), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2721), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2721), + [sym_preproc_directive] = ACTIONS(2721), + [anon_sym_LPAREN2] = ACTIONS(2723), + [anon_sym_TILDE] = ACTIONS(2723), + [anon_sym_STAR] = ACTIONS(2723), + [anon_sym_AMP_AMP] = ACTIONS(2723), + [anon_sym_AMP] = ACTIONS(2721), + [anon_sym_typedef] = ACTIONS(2721), + [anon_sym_extern] = ACTIONS(2721), + [anon_sym___attribute__] = ACTIONS(2721), + [anon_sym_COLON_COLON] = ACTIONS(2723), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2723), + [anon_sym___declspec] = ACTIONS(2721), + [anon_sym___based] = ACTIONS(2721), + [anon_sym_LBRACK] = ACTIONS(2721), + [anon_sym_static] = ACTIONS(2721), + [anon_sym_register] = ACTIONS(2721), + [anon_sym_inline] = ACTIONS(2721), + [anon_sym_thread_local] = ACTIONS(2721), + [anon_sym_const] = ACTIONS(2721), + [anon_sym_constexpr] = ACTIONS(2721), + [anon_sym_volatile] = ACTIONS(2721), + [anon_sym_restrict] = ACTIONS(2721), + [anon_sym___restrict__] = ACTIONS(2721), + [anon_sym__Atomic] = ACTIONS(2721), + [anon_sym__Noreturn] = ACTIONS(2721), + [anon_sym_noreturn] = ACTIONS(2721), + [anon_sym_mutable] = ACTIONS(2721), + [anon_sym_constinit] = ACTIONS(2721), + [anon_sym_consteval] = ACTIONS(2721), + [anon_sym_signed] = ACTIONS(2721), + [anon_sym_unsigned] = ACTIONS(2721), + [anon_sym_long] = ACTIONS(2721), + [anon_sym_short] = ACTIONS(2721), + [sym_primitive_type] = ACTIONS(2721), + [anon_sym_enum] = ACTIONS(2721), + [anon_sym_class] = ACTIONS(2721), + [anon_sym_struct] = ACTIONS(2721), + [anon_sym_union] = ACTIONS(2721), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2721), + [anon_sym_decltype] = ACTIONS(2721), + [anon_sym_virtual] = ACTIONS(2721), + [anon_sym_explicit] = ACTIONS(2721), + [anon_sym_typename] = ACTIONS(2721), + [anon_sym_template] = ACTIONS(2721), + [anon_sym_operator] = ACTIONS(2721), + [anon_sym_friend] = ACTIONS(2721), + [anon_sym_public] = ACTIONS(2721), + [anon_sym_private] = ACTIONS(2721), + [anon_sym_protected] = ACTIONS(2721), + [anon_sym_using] = ACTIONS(2721), + [anon_sym_static_assert] = ACTIONS(2721), + [anon_sym_catch] = ACTIONS(4779), + }, +}; + +static const uint16_t ts_small_parse_table[] = { + [0] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(3902), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_const, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3904), 45, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(37), 1, + anon_sym___attribute__, + ACTIONS(43), 1, + anon_sym___declspec, + ACTIONS(113), 1, + sym_auto, + ACTIONS(115), 1, + anon_sym_decltype, + ACTIONS(117), 1, + anon_sym_virtual, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1813), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1839), 1, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, + ACTIONS(1853), 1, + anon_sym_enum, + ACTIONS(1855), 1, + anon_sym_class, + ACTIONS(1857), 1, + anon_sym_struct, + ACTIONS(1859), 1, + anon_sym_union, + ACTIONS(1881), 1, + anon_sym_typename, + ACTIONS(3667), 1, + sym_primitive_type, + ACTIONS(4570), 1, + sym_identifier, + ACTIONS(4580), 1, anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, + STATE(3633), 1, + sym__type_specifier, + STATE(3657), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3694), 1, + sym_qualified_type_identifier, + STATE(3717), 1, + sym_decltype_auto, + STATE(3795), 1, + sym__declaration_specifiers, + STATE(5733), 1, + sym__scope_resolution, + STATE(7638), 1, + sym_dependent_type_identifier, + STATE(3680), 2, + sym_decltype, + sym_template_type, + STATE(6284), 3, + sym_parameter_declaration, + sym_optional_parameter_declaration, + sym_variadic_parameter_declaration, + ACTIONS(59), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(53), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + STATE(3723), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + STATE(2530), 8, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(57), 11, + anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [1001] = 3, + [127] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4070), 13, + STATE(2222), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(4789), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(4787), 25, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_TILDE, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(4068), 50, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, + anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + ACTIONS(4785), 33, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, anon_sym_or, anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, sym_identifier, sym_auto, anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_virtual, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_friend, - anon_sym_using, - anon_sym_concept, anon_sym_requires, - [1072] = 3, + [202] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4074), 13, + ACTIONS(2960), 2, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(2540), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, - anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(4072), 50, + ACTIONS(2542), 55, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, anon_sym_AMP, + anon_sym_typedef, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, anon_sym_LBRACK, anon_sym_static, anon_sym_register, anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -226923,133 +301342,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_class, anon_sym_struct, anon_sym_union, - anon_sym_or, - anon_sym_and, sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, anon_sym_virtual, anon_sym_explicit, anon_sym_typename, anon_sym_template, anon_sym_operator, - anon_sym_try, anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, anon_sym_using, - anon_sym_concept, - anon_sym_requires, - [1143] = 3, + anon_sym_static_assert, + [275] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4078), 13, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(4076), 50, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - anon_sym_or, - anon_sym_and, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_friend, - anon_sym_using, - anon_sym_concept, - anon_sym_requires, - [1214] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3892), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_const, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3894), 45, + STATE(2224), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(4792), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(4795), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(4676), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_COLON, - anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -227057,97 +301391,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [1285] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3884), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_const, - anon_sym_COLON, - anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3886), 45, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [1356] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3896), 18, + anon_sym_GT2, + ACTIONS(4678), 27, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -227157,87 +301409,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_const, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3898), 45, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [1427] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(1878), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(4084), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(4080), 28, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - sym_primitive_type, + anon_sym_GT_GT_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, @@ -227248,196 +301426,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(4082), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [1502] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4089), 13, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(4087), 50, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - anon_sym_or, - anon_sym_and, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_friend, - anon_sym_using, - anon_sym_concept, - anon_sym_requires, - [1573] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3862), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_const, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3864), 45, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [1644] = 6, + sym_literal_suffix, + [352] = 7, ACTIONS(3), 1, sym_comment, - STATE(1885), 3, + ACTIONS(4798), 1, + sym_literal_suffix, + STATE(2227), 3, sym_string_literal, sym_raw_string_literal, aux_sym_concatenated_string_repeat1, - ACTIONS(1629), 5, + ACTIONS(2061), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1635), 5, + ACTIONS(2069), 5, anon_sym_R_DQUOTE, anon_sym_LR_DQUOTE, anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - ACTIONS(3936), 23, + ACTIONS(4457), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -227461,7 +301472,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_GT, anon_sym_GT2, - ACTIONS(3938), 27, + ACTIONS(4465), 26, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -227488,231 +301499,122 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_literal_suffix, - [1721] = 3, + [431] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(4093), 13, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(4091), 50, - anon_sym_AMP, - anon_sym_extern, + ACTIONS(37), 1, anon_sym___attribute__, + ACTIONS(43), 1, anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - anon_sym_or, - anon_sym_and, - sym_identifier, + ACTIONS(113), 1, sym_auto, + ACTIONS(115), 1, anon_sym_decltype, - anon_sym_final, - anon_sym_override, + ACTIONS(117), 1, anon_sym_virtual, - anon_sym_explicit, - anon_sym_typename, + ACTIONS(1329), 1, anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_friend, - anon_sym_using, - anon_sym_concept, - anon_sym_requires, - [1792] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4048), 13, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, + ACTIONS(1813), 1, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(4046), 50, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, + ACTIONS(1853), 1, anon_sym_enum, + ACTIONS(1855), 1, anon_sym_class, + ACTIONS(1857), 1, anon_sym_struct, + ACTIONS(1859), 1, anon_sym_union, - anon_sym_or, - anon_sym_and, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_explicit, + ACTIONS(1881), 1, anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_friend, - anon_sym_using, - anon_sym_concept, - anon_sym_requires, - [1863] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4097), 13, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(3667), 1, + sym_primitive_type, + ACTIONS(4570), 1, + sym_identifier, + ACTIONS(4580), 1, anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(4095), 50, - anon_sym_AMP, + ACTIONS(4800), 1, + anon_sym_DOT_DOT_DOT, + STATE(3633), 1, + sym__type_specifier, + STATE(3657), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3694), 1, + sym_qualified_type_identifier, + STATE(3717), 1, + sym_decltype_auto, + STATE(3795), 1, + sym__declaration_specifiers, + STATE(5733), 1, + sym__scope_resolution, + STATE(7638), 1, + sym_dependent_type_identifier, + STATE(3680), 2, + sym_decltype, + sym_template_type, + STATE(6672), 3, + sym_parameter_declaration, + sym_optional_parameter_declaration, + sym_variadic_parameter_declaration, + ACTIONS(59), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(53), 5, anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, anon_sym_static, anon_sym_register, anon_sym_inline, anon_sym_thread_local, + STATE(3723), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + STATE(2530), 8, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(57), 11, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - anon_sym_or, - anon_sym_and, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_friend, - anon_sym_using, - anon_sym_concept, - anon_sym_requires, - [1934] = 6, + [558] = 6, ACTIONS(3), 1, sym_comment, - STATE(1885), 3, + STATE(2224), 3, sym_string_literal, sym_raw_string_literal, aux_sym_concatenated_string_repeat1, - ACTIONS(4099), 5, + ACTIONS(2061), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(4102), 5, + ACTIONS(2069), 5, anon_sym_R_DQUOTE, anon_sym_LR_DQUOTE, anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - ACTIONS(3920), 23, + ACTIONS(4670), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -227736,7 +301638,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_GT, anon_sym_GT2, - ACTIONS(3922), 27, + ACTIONS(4672), 27, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -227764,116 +301666,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_literal_suffix, - [2011] = 3, + [635] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4107), 13, - anon_sym_COMMA, + ACTIONS(4550), 1, + anon_sym_const, + ACTIONS(4559), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(4552), 4, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, + anon_sym_LBRACK, + ACTIONS(4555), 14, anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(4105), 50, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - anon_sym_or, - anon_sym_and, - sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_friend, - anon_sym_using, - anon_sym_concept, - anon_sym_requires, - [2082] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3858), 18, + ACTIONS(4557), 14, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_PIPE, anon_sym_CARET, - anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_const, - anon_sym_COLON, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3860), 45, + ACTIONS(4562), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -227894,32 +301736,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [2153] = 6, + [714] = 5, ACTIONS(3), 1, sym_comment, - STATE(1888), 3, - sym_string_literal, - sym_raw_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(4109), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(4112), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(3922), 23, + STATE(2229), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(4802), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(4785), 28, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -227934,6 +301763,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + sym_primitive_type, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -227941,9 +301774,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - anon_sym_DASH_GT, - sym_literal_suffix, - ACTIONS(3920), 26, + sym_identifier, + sym_auto, + anon_sym_decltype, + ACTIONS(4787), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -227953,7 +301787,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -227968,171 +301807,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [2229] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3870), 1, - anon_sym_const, - ACTIONS(3872), 3, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_AMP_AMP, - ACTIONS(3879), 3, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_LBRACK, - ACTIONS(3875), 11, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - ACTIONS(3877), 14, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3882), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [2307] = 7, + [789] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3879), 2, - anon_sym_AMP, - anon_sym_LBRACK, - ACTIONS(3875), 4, - anon_sym_TILDE, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(3872), 6, + ACTIONS(4805), 1, + sym_identifier, + ACTIONS(4813), 1, + sym_primitive_type, + STATE(2222), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(4811), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(4807), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_AMP_AMP, - ACTIONS(3882), 13, anon_sym_PERCENT, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - ACTIONS(3877), 14, + ACTIONS(4809), 31, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - ACTIONS(3870), 23, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_EQ, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - [2385] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4030), 26, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -228140,65 +301875,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - anon_sym_DASH_GT, - sym_literal_suffix, - ACTIONS(4028), 36, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [2455] = 6, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [868] = 7, ACTIONS(3), 1, sym_comment, - STATE(1888), 3, - sym_string_literal, - sym_raw_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(1467), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(1475), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(3938), 23, + ACTIONS(4815), 1, + sym_identifier, + ACTIONS(4819), 1, + sym_primitive_type, + STATE(2229), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(4817), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(4809), 26, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -228213,6 +301909,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -228220,9 +301919,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - anon_sym_DASH_GT, - sym_literal_suffix, - ACTIONS(3936), 26, + sym_auto, + anon_sym_decltype, + ACTIONS(4807), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -228232,7 +301931,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -228247,150 +301951,607 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [2531] = 7, + anon_sym_DASH_GT, + [947] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3879), 2, - anon_sym_AMP, - anon_sym_LBRACK, - ACTIONS(3872), 3, + ACTIONS(2902), 6, anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, - ACTIONS(3875), 4, - anon_sym_TILDE, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(3877), 14, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - ACTIONS(3882), 17, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - ACTIONS(3870), 22, + ACTIONS(2900), 56, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, anon_sym___based, + anon_sym_LBRACK, anon_sym_static, anon_sym_register, anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, sym_identifier, sym_auto, anon_sym_decltype, anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, anon_sym_template, anon_sym_operator, - [2609] = 3, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + anon_sym_catch, + [1017] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4022), 26, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(4821), 1, + anon_sym_catch, + STATE(2260), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + ACTIONS(2723), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2721), 53, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - anon_sym_DASH_GT, - sym_literal_suffix, - ACTIONS(4020), 36, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [1091] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(29), 1, + anon_sym_AMP_AMP, + ACTIONS(45), 1, + anon_sym___based, + ACTIONS(119), 1, + anon_sym_explicit, + ACTIONS(125), 1, + anon_sym_operator, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(2560), 1, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + ACTIONS(2562), 1, + anon_sym_TILDE, + ACTIONS(2564), 1, + anon_sym_STAR, + ACTIONS(2566), 1, + anon_sym_AMP, + ACTIONS(2572), 1, + anon_sym_LBRACK, + ACTIONS(4823), 1, + sym_identifier, + ACTIONS(4827), 1, + anon_sym___attribute__, + ACTIONS(4829), 1, + anon_sym_COLON_COLON, + ACTIONS(4831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4833), 1, + anon_sym___declspec, + ACTIONS(4837), 1, + anon_sym_virtual, + STATE(5207), 1, + sym__scope_resolution, + STATE(5479), 1, + sym_function_declarator, + STATE(5881), 1, + sym__declarator, + STATE(7654), 1, + sym_ms_based_modifier, + STATE(5902), 2, + sym_operator_cast, + sym_qualified_operator_cast_identifier, + STATE(7638), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(4825), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + STATE(3814), 10, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual, + sym_explicit_function_specifier, + sym__constructor_specifiers, + aux_sym_operator_cast_definition_repeat1, + STATE(5640), 10, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(4835), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [1211] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(29), 1, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, + ACTIONS(45), 1, + anon_sym___based, + ACTIONS(119), 1, + anon_sym_explicit, + ACTIONS(125), 1, + anon_sym_operator, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(2560), 1, + anon_sym_LPAREN2, + ACTIONS(2562), 1, + anon_sym_TILDE, + ACTIONS(2564), 1, + anon_sym_STAR, + ACTIONS(2566), 1, + anon_sym_AMP, + ACTIONS(2572), 1, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [2679] = 3, + ACTIONS(4823), 1, + sym_identifier, + ACTIONS(4827), 1, + anon_sym___attribute__, + ACTIONS(4829), 1, + anon_sym_COLON_COLON, + ACTIONS(4831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4833), 1, + anon_sym___declspec, + ACTIONS(4837), 1, + anon_sym_virtual, + STATE(5207), 1, + sym__scope_resolution, + STATE(5521), 1, + sym_function_declarator, + STATE(5881), 1, + sym__declarator, + STATE(7654), 1, + sym_ms_based_modifier, + STATE(5930), 2, + sym_operator_cast, + sym_qualified_operator_cast_identifier, + STATE(7638), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(4825), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + STATE(3814), 10, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual, + sym_explicit_function_specifier, + sym__constructor_specifiers, + aux_sym_operator_cast_definition_repeat1, + STATE(5640), 10, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(4835), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [1331] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(29), 1, + anon_sym_AMP_AMP, + ACTIONS(45), 1, + anon_sym___based, + ACTIONS(119), 1, + anon_sym_explicit, + ACTIONS(125), 1, + anon_sym_operator, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(2560), 1, + anon_sym_LPAREN2, + ACTIONS(2562), 1, + anon_sym_TILDE, + ACTIONS(2564), 1, + anon_sym_STAR, + ACTIONS(2566), 1, + anon_sym_AMP, + ACTIONS(2572), 1, + anon_sym_LBRACK, + ACTIONS(4823), 1, + sym_identifier, + ACTIONS(4827), 1, + anon_sym___attribute__, + ACTIONS(4829), 1, + anon_sym_COLON_COLON, + ACTIONS(4831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4833), 1, + anon_sym___declspec, + ACTIONS(4837), 1, + anon_sym_virtual, + STATE(5207), 1, + sym__scope_resolution, + STATE(5500), 1, + sym_function_declarator, + STATE(5881), 1, + sym__declarator, + STATE(7654), 1, + sym_ms_based_modifier, + STATE(5932), 2, + sym_operator_cast, + sym_qualified_operator_cast_identifier, + STATE(7638), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(4825), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + STATE(3814), 10, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual, + sym_explicit_function_specifier, + sym__constructor_specifiers, + aux_sym_operator_cast_definition_repeat1, + STATE(5640), 10, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(4835), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [1451] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(29), 1, + anon_sym_AMP_AMP, + ACTIONS(45), 1, + anon_sym___based, + ACTIONS(119), 1, + anon_sym_explicit, + ACTIONS(125), 1, + anon_sym_operator, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(2560), 1, + anon_sym_LPAREN2, + ACTIONS(2562), 1, + anon_sym_TILDE, + ACTIONS(2564), 1, + anon_sym_STAR, + ACTIONS(2566), 1, + anon_sym_AMP, + ACTIONS(2572), 1, + anon_sym_LBRACK, + ACTIONS(4823), 1, + sym_identifier, + ACTIONS(4827), 1, + anon_sym___attribute__, + ACTIONS(4829), 1, + anon_sym_COLON_COLON, + ACTIONS(4831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4833), 1, + anon_sym___declspec, + ACTIONS(4837), 1, + anon_sym_virtual, + STATE(5207), 1, + sym__scope_resolution, + STATE(5542), 1, + sym_function_declarator, + STATE(5881), 1, + sym__declarator, + STATE(7654), 1, + sym_ms_based_modifier, + STATE(5931), 2, + sym_operator_cast, + sym_qualified_operator_cast_identifier, + STATE(7638), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(4825), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + STATE(3814), 10, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual, + sym_explicit_function_specifier, + sym__constructor_specifiers, + aux_sym_operator_cast_definition_repeat1, + STATE(5640), 10, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(4835), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [1571] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(29), 1, + anon_sym_AMP_AMP, + ACTIONS(45), 1, + anon_sym___based, + ACTIONS(119), 1, + anon_sym_explicit, + ACTIONS(125), 1, + anon_sym_operator, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(2560), 1, + anon_sym_LPAREN2, + ACTIONS(2562), 1, + anon_sym_TILDE, + ACTIONS(2564), 1, + anon_sym_STAR, + ACTIONS(2566), 1, + anon_sym_AMP, + ACTIONS(2572), 1, + anon_sym_LBRACK, + ACTIONS(4823), 1, + sym_identifier, + ACTIONS(4827), 1, + anon_sym___attribute__, + ACTIONS(4829), 1, + anon_sym_COLON_COLON, + ACTIONS(4831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4833), 1, + anon_sym___declspec, + ACTIONS(4837), 1, + anon_sym_virtual, + STATE(5207), 1, + sym__scope_resolution, + STATE(5590), 1, + sym_function_declarator, + STATE(5881), 1, + sym__declarator, + STATE(7654), 1, + sym_ms_based_modifier, + STATE(5928), 2, + sym_operator_cast, + sym_qualified_operator_cast_identifier, + STATE(7638), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(4825), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + STATE(3814), 10, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual, + sym_explicit_function_specifier, + sym__constructor_specifiers, + aux_sym_operator_cast_definition_repeat1, + STATE(5640), 10, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(4835), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [1691] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4002), 26, + ACTIONS(4766), 26, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -228417,7 +302578,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_DASH_GT, sym_literal_suffix, - ACTIONS(4000), 36, + ACTIONS(4764), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -228454,87 +302615,194 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_u8R_DQUOTE, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [2749] = 13, + [1761] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(3793), 1, - anon_sym_const, - ACTIONS(3814), 1, - anon_sym_COLON_COLON, - ACTIONS(3819), 1, - anon_sym_LBRACE, - ACTIONS(4115), 1, - anon_sym_LT, - STATE(3076), 1, - sym_template_argument_list, - ACTIONS(3805), 2, + ACTIONS(29), 1, + anon_sym_AMP_AMP, + ACTIONS(45), 1, + anon_sym___based, + ACTIONS(119), 1, + anon_sym_explicit, + ACTIONS(125), 1, + anon_sym_operator, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(2560), 1, + anon_sym_LPAREN2, + ACTIONS(2562), 1, + anon_sym_TILDE, + ACTIONS(2564), 1, anon_sym_STAR, + ACTIONS(2566), 1, anon_sym_AMP, - ACTIONS(4118), 2, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - ACTIONS(3808), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_AMP_AMP, + ACTIONS(2572), 1, anon_sym_LBRACK, - anon_sym_GT2, - ACTIONS(3801), 9, + ACTIONS(4823), 1, + sym_identifier, + ACTIONS(4827), 1, + anon_sym___attribute__, + ACTIONS(4829), 1, + anon_sym_COLON_COLON, + ACTIONS(4831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4833), 1, + anon_sym___declspec, + ACTIONS(4837), 1, + anon_sym_virtual, + STATE(5207), 1, + sym__scope_resolution, + STATE(5557), 1, + sym_function_declarator, + STATE(5881), 1, + sym__declarator, + STATE(7654), 1, + sym_ms_based_modifier, + STATE(5920), 2, + sym_operator_cast, + sym_qualified_operator_cast_identifier, + STATE(7638), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(4825), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + STATE(3814), 10, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual, + sym_explicit_function_specifier, + sym__constructor_specifiers, + aux_sym_operator_cast_definition_repeat1, + STATE(5640), 10, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(4835), 11, + anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - sym_auto, + [1881] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(29), 1, + anon_sym_AMP_AMP, + ACTIONS(45), 1, + anon_sym___based, + ACTIONS(119), 1, + anon_sym_explicit, + ACTIONS(125), 1, + anon_sym_operator, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1973), 1, anon_sym_decltype, - ACTIONS(3795), 11, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - ACTIONS(4120), 12, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - ACTIONS(3803), 15, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - [2839] = 3, + ACTIONS(2560), 1, + anon_sym_LPAREN2, + ACTIONS(2562), 1, + anon_sym_TILDE, + ACTIONS(2564), 1, + anon_sym_STAR, + ACTIONS(2566), 1, + anon_sym_AMP, + ACTIONS(2572), 1, + anon_sym_LBRACK, + ACTIONS(4823), 1, + sym_identifier, + ACTIONS(4827), 1, + anon_sym___attribute__, + ACTIONS(4829), 1, + anon_sym_COLON_COLON, + ACTIONS(4831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4833), 1, + anon_sym___declspec, + ACTIONS(4837), 1, + anon_sym_virtual, + STATE(5207), 1, + sym__scope_resolution, + STATE(5527), 1, + sym_function_declarator, + STATE(5881), 1, + sym__declarator, + STATE(7654), 1, + sym_ms_based_modifier, + STATE(5928), 2, + sym_operator_cast, + sym_qualified_operator_cast_identifier, + STATE(7638), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(4825), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + STATE(3814), 10, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual, + sym_explicit_function_specifier, + sym__constructor_specifiers, + aux_sym_operator_cast_definition_repeat1, + STATE(5640), 10, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(4835), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [2001] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4026), 26, + ACTIONS(4773), 26, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -228561,7 +302829,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_DASH_GT, sym_literal_suffix, - ACTIONS(4024), 36, + ACTIONS(4771), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -228598,173 +302866,465 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_u8R_DQUOTE, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [2909] = 10, + [2071] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(3814), 1, - anon_sym_COLON_COLON, - ACTIONS(3831), 1, - anon_sym_const, - ACTIONS(4122), 1, - anon_sym_LT, - STATE(1901), 1, - sym_template_argument_list, - ACTIONS(3840), 2, + ACTIONS(29), 1, + anon_sym_AMP_AMP, + ACTIONS(45), 1, + anon_sym___based, + ACTIONS(119), 1, + anon_sym_explicit, + ACTIONS(125), 1, + anon_sym_operator, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(2560), 1, + anon_sym_LPAREN2, + ACTIONS(2562), 1, + anon_sym_TILDE, + ACTIONS(2564), 1, anon_sym_STAR, + ACTIONS(2566), 1, anon_sym_AMP, - ACTIONS(3833), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_AMP_AMP, + ACTIONS(2572), 1, anon_sym_LBRACK, - anon_sym_GT2, - ACTIONS(3836), 10, - anon_sym_LBRACE, + ACTIONS(4823), 1, + sym_identifier, + ACTIONS(4827), 1, + anon_sym___attribute__, + ACTIONS(4829), 1, + anon_sym_COLON_COLON, + ACTIONS(4831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4833), 1, + anon_sym___declspec, + ACTIONS(4837), 1, + anon_sym_virtual, + STATE(5207), 1, + sym__scope_resolution, + STATE(5543), 1, + sym_function_declarator, + STATE(5881), 1, + sym__declarator, + STATE(7654), 1, + sym_ms_based_modifier, + STATE(5896), 2, + sym_operator_cast, + sym_qualified_operator_cast_identifier, + STATE(7638), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(4825), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + STATE(3814), 10, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual, + sym_explicit_function_specifier, + sym__constructor_specifiers, + aux_sym_operator_cast_definition_repeat1, + STATE(5640), 10, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(4835), 11, + anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, + [2191] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(37), 1, + anon_sym___attribute__, + ACTIONS(43), 1, + anon_sym___declspec, + ACTIONS(113), 1, sym_auto, + ACTIONS(115), 1, anon_sym_decltype, - ACTIONS(3838), 17, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(3843), 23, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [2993] = 7, + ACTIONS(117), 1, + anon_sym_virtual, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1813), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1853), 1, + anon_sym_enum, + ACTIONS(1855), 1, + anon_sym_class, + ACTIONS(1857), 1, + anon_sym_struct, + ACTIONS(1859), 1, + anon_sym_union, + ACTIONS(1881), 1, + anon_sym_typename, + ACTIONS(3667), 1, + sym_primitive_type, + ACTIONS(4570), 1, + sym_identifier, + ACTIONS(4580), 1, + anon_sym_COLON_COLON, + STATE(3633), 1, + sym__type_specifier, + STATE(3657), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3694), 1, + sym_qualified_type_identifier, + STATE(3717), 1, + sym_decltype_auto, + STATE(3795), 1, + sym__declaration_specifiers, + STATE(5733), 1, + sym__scope_resolution, + STATE(7638), 1, + sym_dependent_type_identifier, + STATE(3680), 2, + sym_decltype, + sym_template_type, + STATE(6677), 3, + sym_parameter_declaration, + sym_optional_parameter_declaration, + sym_variadic_parameter_declaration, + ACTIONS(59), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(53), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + STATE(3723), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + STATE(2530), 8, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(57), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [2315] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3879), 2, - anon_sym_AMP, - anon_sym_LBRACK, - ACTIONS(3875), 3, - anon_sym_TILDE, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - ACTIONS(3872), 5, + ACTIONS(2540), 6, anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_SEMI, + anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(3877), 14, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - ACTIONS(3882), 16, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - ACTIONS(3870), 22, + ACTIONS(2542), 56, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, anon_sym___based, + anon_sym_LBRACK, anon_sym_static, anon_sym_register, anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, sym_identifier, sym_auto, anon_sym_decltype, anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + anon_sym_catch, + [2385] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(29), 1, + anon_sym_AMP_AMP, + ACTIONS(45), 1, + anon_sym___based, + ACTIONS(119), 1, + anon_sym_explicit, + ACTIONS(125), 1, + anon_sym_operator, + ACTIONS(1329), 1, anon_sym_template, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(2560), 1, + anon_sym_LPAREN2, + ACTIONS(2562), 1, + anon_sym_TILDE, + ACTIONS(2564), 1, + anon_sym_STAR, + ACTIONS(2566), 1, + anon_sym_AMP, + ACTIONS(2572), 1, + anon_sym_LBRACK, + ACTIONS(4823), 1, + sym_identifier, + ACTIONS(4827), 1, + anon_sym___attribute__, + ACTIONS(4829), 1, + anon_sym_COLON_COLON, + ACTIONS(4831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4833), 1, + anon_sym___declspec, + ACTIONS(4837), 1, + anon_sym_virtual, + STATE(5207), 1, + sym__scope_resolution, + STATE(5498), 1, + sym_function_declarator, + STATE(5881), 1, + sym__declarator, + STATE(7654), 1, + sym_ms_based_modifier, + STATE(5920), 2, + sym_operator_cast, + sym_qualified_operator_cast_identifier, + STATE(7638), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(4825), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + STATE(3814), 10, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual, + sym_explicit_function_specifier, + sym__constructor_specifiers, + aux_sym_operator_cast_definition_repeat1, + STATE(5640), 10, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(4835), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [2505] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(29), 1, + anon_sym_AMP_AMP, + ACTIONS(45), 1, + anon_sym___based, + ACTIONS(119), 1, + anon_sym_explicit, + ACTIONS(125), 1, anon_sym_operator, - [3071] = 7, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(2560), 1, + anon_sym_LPAREN2, + ACTIONS(2562), 1, + anon_sym_TILDE, + ACTIONS(2564), 1, + anon_sym_STAR, + ACTIONS(2566), 1, + anon_sym_AMP, + ACTIONS(2572), 1, + anon_sym_LBRACK, + ACTIONS(4823), 1, + sym_identifier, + ACTIONS(4827), 1, + anon_sym___attribute__, + ACTIONS(4829), 1, + anon_sym_COLON_COLON, + ACTIONS(4831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4833), 1, + anon_sym___declspec, + ACTIONS(4837), 1, + anon_sym_virtual, + STATE(5207), 1, + sym__scope_resolution, + STATE(5478), 1, + sym_function_declarator, + STATE(5881), 1, + sym__declarator, + STATE(7654), 1, + sym_ms_based_modifier, + STATE(5888), 2, + sym_operator_cast, + sym_qualified_operator_cast_identifier, + STATE(7638), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(4825), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + STATE(3814), 10, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual, + sym_explicit_function_specifier, + sym__constructor_specifiers, + aux_sym_operator_cast_definition_repeat1, + STATE(5640), 10, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(4835), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [2625] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4125), 1, + ACTIONS(4839), 1, sym_literal_suffix, - STATE(1892), 3, + STATE(2258), 3, sym_string_literal, sym_raw_string_literal, aux_sym_concatenated_string_repeat1, - ACTIONS(1467), 5, + ACTIONS(1875), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1475), 5, + ACTIONS(1885), 5, anon_sym_R_DQUOTE, anon_sym_LR_DQUOTE, anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - ACTIONS(3803), 22, + ACTIONS(4465), 22, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -228787,7 +303347,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3795), 26, + ACTIONS(4457), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -228814,602 +303374,346 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [3149] = 7, + [2703] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(3870), 1, - anon_sym_const, - ACTIONS(3879), 2, + ACTIONS(29), 1, + anon_sym_AMP_AMP, + ACTIONS(45), 1, + anon_sym___based, + ACTIONS(119), 1, + anon_sym_explicit, + ACTIONS(125), 1, + anon_sym_operator, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(2560), 1, + anon_sym_LPAREN2, + ACTIONS(2562), 1, + anon_sym_TILDE, + ACTIONS(2564), 1, anon_sym_STAR, + ACTIONS(2566), 1, anon_sym_AMP, - ACTIONS(3872), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_AMP_AMP, + ACTIONS(2572), 1, anon_sym_LBRACK, - anon_sym_GT2, - ACTIONS(3875), 11, + ACTIONS(4823), 1, + sym_identifier, + ACTIONS(4827), 1, + anon_sym___attribute__, + ACTIONS(4829), 1, anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - ACTIONS(3877), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(3882), 23, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [3226] = 9, + ACTIONS(4831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4833), 1, + anon_sym___declspec, + ACTIONS(4837), 1, + anon_sym_virtual, + STATE(5207), 1, + sym__scope_resolution, + STATE(5471), 1, + sym_function_declarator, + STATE(5881), 1, + sym__declarator, + STATE(7654), 1, + sym_ms_based_modifier, + STATE(5906), 2, + sym_operator_cast, + sym_qualified_operator_cast_identifier, + STATE(7638), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(4825), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + STATE(3814), 10, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual, + sym_explicit_function_specifier, + sym__constructor_specifiers, + aux_sym_operator_cast_definition_repeat1, + STATE(5640), 10, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(4835), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [2823] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(4131), 1, - anon_sym_LBRACE, - ACTIONS(4133), 1, - anon_sym_COLON, - STATE(2115), 1, - sym_field_declaration_list, - STATE(5362), 1, - sym_virtual_specifier, - STATE(5866), 1, - sym_base_class_clause, - ACTIONS(4135), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(4129), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4127), 36, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + ACTIONS(29), 1, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, + ACTIONS(45), 1, + anon_sym___based, + ACTIONS(119), 1, + anon_sym_explicit, + ACTIONS(125), 1, + anon_sym_operator, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1973), 1, anon_sym_decltype, - [3307] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4137), 1, - sym_identifier, - ACTIONS(4141), 1, - sym_primitive_type, - STATE(1905), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(4139), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(4052), 27, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2560), 1, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - ACTIONS(4054), 27, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(2562), 1, + anon_sym_TILDE, + ACTIONS(2564), 1, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(2566), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [3384] = 9, + ACTIONS(2572), 1, + anon_sym_LBRACK, + ACTIONS(4823), 1, + sym_identifier, + ACTIONS(4827), 1, + anon_sym___attribute__, + ACTIONS(4829), 1, + anon_sym_COLON_COLON, + ACTIONS(4831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4833), 1, + anon_sym___declspec, + ACTIONS(4837), 1, + anon_sym_virtual, + STATE(5207), 1, + sym__scope_resolution, + STATE(5596), 1, + sym_function_declarator, + STATE(5881), 1, + sym__declarator, + STATE(7654), 1, + sym_ms_based_modifier, + STATE(5930), 2, + sym_operator_cast, + sym_qualified_operator_cast_identifier, + STATE(7638), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(4825), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + STATE(3814), 10, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual, + sym_explicit_function_specifier, + sym__constructor_specifiers, + aux_sym_operator_cast_definition_repeat1, + STATE(5640), 10, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(4835), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [2943] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4131), 1, - anon_sym_LBRACE, - ACTIONS(4133), 1, - anon_sym_COLON, - STATE(2127), 1, - sym_field_declaration_list, - STATE(5352), 1, - sym_virtual_specifier, - STATE(5857), 1, - sym_base_class_clause, - ACTIONS(4135), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(4145), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4143), 36, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2534), 6, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2536), 56, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [3465] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(1905), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(4147), 4, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(4082), 27, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - ACTIONS(4080), 29, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, sym_primitive_type, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - anon_sym_DASH_GT, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, sym_identifier, sym_auto, anon_sym_decltype, - [3538] = 3, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + anon_sym_catch, + [3013] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4152), 27, + ACTIONS(4821), 1, + anon_sym_catch, + STATE(2260), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + ACTIONS(2711), 6, anon_sym_LPAREN2, - anon_sym_BANG, anon_sym_TILDE, anon_sym_STAR, - anon_sym_AMP, - anon_sym_SEMI, + anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(4150), 34, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - sym_primitive_type, - anon_sym_if, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_not, - anon_sym_compl, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_try, - anon_sym_delete, - anon_sym_throw, - anon_sym_co_return, - anon_sym_co_yield, - anon_sym_co_await, - anon_sym_new, - anon_sym_requires, - sym_this, - sym_nullptr, - [3607] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(39), 1, + ACTIONS(2709), 53, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, anon_sym___attribute__, - ACTIONS(45), 1, anon_sym___declspec, - ACTIONS(107), 1, - sym_auto, - ACTIONS(109), 1, - anon_sym_decltype, - ACTIONS(111), 1, - anon_sym_virtual, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1413), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1451), 1, - anon_sym_enum, - ACTIONS(1453), 1, - anon_sym_class, - ACTIONS(1455), 1, - anon_sym_struct, - ACTIONS(1457), 1, - anon_sym_union, - ACTIONS(1471), 1, - anon_sym_typename, - ACTIONS(1485), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2932), 1, - sym_primitive_type, - ACTIONS(3224), 1, - anon_sym_RPAREN, - ACTIONS(3906), 1, - sym_identifier, - ACTIONS(3916), 1, - anon_sym_COLON_COLON, - STATE(3156), 1, - sym__type_specifier, - STATE(3171), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3188), 1, - sym__declaration_specifiers, - STATE(3259), 1, - sym_qualified_type_identifier, - STATE(3279), 1, - sym_decltype_auto, - STATE(5034), 1, - sym__scope_resolution, - STATE(6159), 1, - sym_dependent_type_identifier, - STATE(3198), 2, - sym_decltype, - sym_template_type, - STATE(5574), 3, - sym_parameter_declaration, - sym_optional_parameter_declaration, - sym_variadic_parameter_declaration, - ACTIONS(61), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(55), 5, - anon_sym_extern, + anon_sym___based, + anon_sym_LBRACK, anon_sym_static, anon_sym_register, anon_sym_inline, anon_sym_thread_local, - STATE(3232), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(59), 8, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - STATE(2191), 8, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual, - aux_sym__declaration_specifiers_repeat1, - [3734] = 3, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [3087] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4156), 27, - anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, + STATE(2253), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(4841), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, + ACTIONS(4844), 5, anon_sym_R_DQUOTE, anon_sym_LR_DQUOTE, anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - ACTIONS(4154), 34, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - sym_primitive_type, - anon_sym_if, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_not, - anon_sym_compl, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_try, - anon_sym_delete, - anon_sym_throw, - anon_sym_co_return, - anon_sym_co_yield, - anon_sym_co_await, - anon_sym_new, - anon_sym_requires, - sym_this, - sym_nullptr, - [3803] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4131), 1, - anon_sym_LBRACE, - ACTIONS(4133), 1, - anon_sym_COLON, - STATE(2138), 1, - sym_field_declaration_list, - STATE(5343), 1, - sym_virtual_specifier, - STATE(5870), 1, - sym_base_class_clause, - ACTIONS(4135), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(4160), 18, + ACTIONS(4678), 23, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -229426,9 +303730,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(4158), 36, + anon_sym_DASH_GT, + sym_literal_suffix, + ACTIONS(4676), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -229438,10 +303747,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -229453,22 +303759,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [3884] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [3163] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4030), 27, + ACTIONS(4777), 26, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -229478,13 +303777,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, @@ -229495,15 +303792,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, + anon_sym_DASH_GT, sym_literal_suffix, - ACTIONS(4028), 33, + ACTIONS(4775), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -229512,41 +303812,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - anon_sym_GT2, anon_sym_R_DQUOTE, anon_sym_LR_DQUOTE, anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [3952] = 9, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [3233] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4133), 1, - anon_sym_COLON, - ACTIONS(4162), 1, - anon_sym_LBRACE, - STATE(2432), 1, - sym_field_declaration_list, - STATE(5322), 1, - sym_virtual_specifier, - STATE(5742), 1, - sym_base_class_clause, - ACTIONS(4135), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(4145), 19, + ACTIONS(4783), 26, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -229561,12 +303849,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4143), 34, + sym_literal_suffix, + ACTIONS(4781), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -229588,177 +303883,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - sym_auto, - anon_sym_decltype, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [4032] = 11, + [3303] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(1537), 1, - anon_sym_LBRACE, - ACTIONS(4166), 1, - anon_sym_LPAREN2, - ACTIONS(4170), 1, - anon_sym_LBRACK, - ACTIONS(4172), 1, - sym_auto, - ACTIONS(4174), 1, + ACTIONS(29), 1, + anon_sym_AMP_AMP, + ACTIONS(45), 1, + anon_sym___based, + ACTIONS(119), 1, + anon_sym_explicit, + ACTIONS(125), 1, + anon_sym_operator, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1973), 1, anon_sym_decltype, - STATE(2067), 1, - sym_decltype_auto, - STATE(2096), 1, - sym_new_declarator, - STATE(2544), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(4168), 18, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(2560), 1, + anon_sym_LPAREN2, + ACTIONS(2562), 1, + anon_sym_TILDE, + ACTIONS(2564), 1, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(2566), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4164), 33, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [4116] = 31, - ACTIONS(3), 1, - sym_comment, - ACTIONS(39), 1, + ACTIONS(2572), 1, + anon_sym_LBRACK, + ACTIONS(4823), 1, + sym_identifier, + ACTIONS(4827), 1, anon_sym___attribute__, - ACTIONS(45), 1, + ACTIONS(4829), 1, + anon_sym_COLON_COLON, + ACTIONS(4831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4833), 1, anon_sym___declspec, - ACTIONS(107), 1, - sym_auto, - ACTIONS(109), 1, - anon_sym_decltype, - ACTIONS(111), 1, + ACTIONS(4837), 1, anon_sym_virtual, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1413), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1437), 1, - anon_sym_RPAREN, - ACTIONS(1451), 1, - anon_sym_enum, - ACTIONS(1453), 1, - anon_sym_class, - ACTIONS(1455), 1, - anon_sym_struct, - ACTIONS(1457), 1, - anon_sym_union, - ACTIONS(1471), 1, - anon_sym_typename, - ACTIONS(2932), 1, - sym_primitive_type, - ACTIONS(3906), 1, - sym_identifier, - ACTIONS(3916), 1, - anon_sym_COLON_COLON, - STATE(3156), 1, - sym__type_specifier, - STATE(3171), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3188), 1, - sym__declaration_specifiers, - STATE(3259), 1, - sym_qualified_type_identifier, - STATE(3279), 1, - sym_decltype_auto, - STATE(5034), 1, + STATE(5207), 1, sym__scope_resolution, - STATE(6159), 1, - sym_dependent_type_identifier, - STATE(3198), 2, + STATE(5570), 1, + sym_function_declarator, + STATE(5881), 1, + sym__declarator, + STATE(7654), 1, + sym_ms_based_modifier, + STATE(5906), 2, + sym_operator_cast, + sym_qualified_operator_cast_identifier, + STATE(7638), 3, sym_decltype, sym_template_type, - STATE(5540), 3, - sym_parameter_declaration, - sym_optional_parameter_declaration, - sym_variadic_parameter_declaration, - ACTIONS(61), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(55), 5, + sym_dependent_type_identifier, + ACTIONS(4825), 5, anon_sym_extern, anon_sym_static, anon_sym_register, anon_sym_inline, anon_sym_thread_local, - STATE(3232), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(59), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(2191), 8, + STATE(3814), 10, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -229766,164 +303964,121 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, sym_virtual, - aux_sym__declaration_specifiers_repeat1, - [4240] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1537), 1, - anon_sym_LBRACE, - ACTIONS(4166), 1, - anon_sym_LPAREN2, - ACTIONS(4170), 1, - anon_sym_LBRACK, - ACTIONS(4172), 1, - sym_auto, - ACTIONS(4174), 1, - anon_sym_decltype, - STATE(2067), 1, - sym_decltype_auto, - STATE(2090), 1, - sym_new_declarator, - STATE(2592), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(4178), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4176), 33, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [4324] = 5, + sym_explicit_function_specifier, + sym__constructor_specifiers, + aux_sym_operator_cast_definition_repeat1, + STATE(5640), 10, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(4835), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [3423] = 5, ACTIONS(3), 1, sym_comment, - STATE(1915), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(4180), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(4082), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(4821), 1, + anon_sym_catch, + STATE(2260), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + ACTIONS(2859), 6, anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - ACTIONS(4080), 30, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2857), 53, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, sym_primitive_type, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [4396] = 9, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [3497] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4133), 1, - anon_sym_COLON, - ACTIONS(4162), 1, - anon_sym_LBRACE, - STATE(2426), 1, - sym_field_declaration_list, - STATE(5329), 1, - sym_virtual_specifier, - STATE(5749), 1, - sym_base_class_clause, - ACTIONS(4135), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(4129), 19, + STATE(2253), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(1875), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(1885), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(4672), 23, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -229940,10 +304095,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4127), 34, + sym_literal_suffix, + ACTIONS(4670), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -229965,467 +304124,593 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - sym_auto, - anon_sym_decltype, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [4476] = 11, + [3573] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(1537), 1, - anon_sym_LBRACE, - ACTIONS(4166), 1, - anon_sym_LPAREN2, - ACTIONS(4170), 1, - anon_sym_LBRACK, - ACTIONS(4172), 1, - sym_auto, - ACTIONS(4174), 1, + ACTIONS(29), 1, + anon_sym_AMP_AMP, + ACTIONS(45), 1, + anon_sym___based, + ACTIONS(119), 1, + anon_sym_explicit, + ACTIONS(125), 1, + anon_sym_operator, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1973), 1, anon_sym_decltype, - STATE(2020), 1, - sym_new_declarator, - STATE(2067), 1, - sym_decltype_auto, - STATE(2569), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(4185), 18, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(2560), 1, + anon_sym_LPAREN2, + ACTIONS(2562), 1, + anon_sym_TILDE, + ACTIONS(2564), 1, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(2566), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4183), 33, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [4560] = 3, + ACTIONS(2572), 1, + anon_sym_LBRACK, + ACTIONS(4823), 1, + sym_identifier, + ACTIONS(4827), 1, + anon_sym___attribute__, + ACTIONS(4829), 1, + anon_sym_COLON_COLON, + ACTIONS(4831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4833), 1, + anon_sym___declspec, + ACTIONS(4837), 1, + anon_sym_virtual, + STATE(5207), 1, + sym__scope_resolution, + STATE(5592), 1, + sym_function_declarator, + STATE(5881), 1, + sym__declarator, + STATE(7654), 1, + sym_ms_based_modifier, + STATE(5931), 2, + sym_operator_cast, + sym_qualified_operator_cast_identifier, + STATE(7638), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(4825), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + STATE(3814), 10, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual, + sym_explicit_function_specifier, + sym__constructor_specifiers, + aux_sym_operator_cast_definition_repeat1, + STATE(5640), 10, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(4835), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [3693] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4022), 27, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_literal_suffix, - ACTIONS(4020), 33, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(4847), 1, + anon_sym_catch, + STATE(2260), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + ACTIONS(2686), 6, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2684), 53, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_GT2, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [4628] = 3, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [3767] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4002), 27, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_literal_suffix, - ACTIONS(4000), 33, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(3318), 6, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(3316), 55, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_GT2, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [4696] = 6, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [3836] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3814), 1, - anon_sym_COLON_COLON, - ACTIONS(4187), 1, - anon_sym_LT, - STATE(1951), 1, - sym_template_argument_list, - ACTIONS(3831), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(3836), 39, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3038), 6, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(3036), 55, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - [4770] = 7, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [3905] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3870), 1, - anon_sym_const, - ACTIONS(3879), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(3872), 4, - anon_sym_RPAREN, + ACTIONS(4852), 6, anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_LBRACK, - ACTIONS(3875), 11, anon_sym_COLON_COLON, - anon_sym_LBRACE, + anon_sym_LBRACK_LBRACK, + ACTIONS(4850), 55, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(3877), 14, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3882), 28, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [4846] = 7, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [3974] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4190), 1, - sym_identifier, - ACTIONS(4194), 1, - sym_primitive_type, - STATE(1915), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(4192), 4, + ACTIONS(4856), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4854), 55, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(4052), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [4043] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4860), 6, anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - ACTIONS(4054), 28, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4858), 55, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [4922] = 3, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [4112] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4026), 27, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(3370), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(3368), 55, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_literal_suffix, - ACTIONS(4024), 33, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [4181] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4862), 1, + sym_identifier, + ACTIONS(4866), 1, + sym_primitive_type, + STATE(2341), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(4864), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(4807), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -230434,34 +304719,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_GT2, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [4990] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3814), 1, - anon_sym_COLON_COLON, - ACTIONS(4198), 1, - anon_sym_LT, - STATE(1951), 1, - sym_template_argument_list, - ACTIONS(4196), 18, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + ACTIONS(4809), 27, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -230472,71 +304739,238 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_COLON, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(3819), 39, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + anon_sym_DOT, anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - [5064] = 9, + [4258] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4133), 1, - anon_sym_COLON, - ACTIONS(4162), 1, + ACTIONS(3382), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(3380), 55, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [4327] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3397), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(3395), 55, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [4396] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4870), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4868), 55, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [4465] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4876), 1, anon_sym_LBRACE, - STATE(2386), 1, + ACTIONS(4878), 1, + anon_sym_COLON, + STATE(2726), 1, sym_field_declaration_list, - STATE(5166), 1, + STATE(6029), 1, sym_virtual_specifier, - STATE(5757), 1, + STATE(6832), 1, sym_base_class_clause, - ACTIONS(4135), 2, + ACTIONS(4880), 2, anon_sym_final, anon_sym_override, - ACTIONS(4160), 19, + ACTIONS(4874), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -230555,8 +304989,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4158), 34, + ACTIONS(4872), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -230566,7 +304999,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -230587,645 +305023,818 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [5144] = 11, + [4546] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1537), 1, - anon_sym_LBRACE, - ACTIONS(4166), 1, + ACTIONS(3111), 6, anon_sym_LPAREN2, - ACTIONS(4170), 1, - anon_sym_LBRACK, - ACTIONS(4172), 1, - sym_auto, - ACTIONS(4174), 1, - anon_sym_decltype, - STATE(2036), 1, - sym_new_declarator, - STATE(2067), 1, - sym_decltype_auto, - STATE(2570), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(4202), 18, - anon_sym_DASH, - anon_sym_PLUS, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(3109), 55, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4200), 33, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [5228] = 31, - ACTIONS(3), 1, - sym_comment, - ACTIONS(39), 1, + anon_sym_typedef, + anon_sym_extern, anon_sym___attribute__, - ACTIONS(45), 1, anon_sym___declspec, - ACTIONS(107), 1, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, - ACTIONS(109), 1, anon_sym_decltype, - ACTIONS(111), 1, anon_sym_virtual, - ACTIONS(996), 1, + anon_sym_explicit, + anon_sym_typename, anon_sym_template, - ACTIONS(1413), 1, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [4615] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3276), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(1451), 1, + ACTIONS(3274), 55, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, anon_sym_enum, - ACTIONS(1453), 1, anon_sym_class, - ACTIONS(1455), 1, anon_sym_struct, - ACTIONS(1457), 1, anon_sym_union, - ACTIONS(1471), 1, - anon_sym_typename, - ACTIONS(2932), 1, - sym_primitive_type, - ACTIONS(3906), 1, sym_identifier, - ACTIONS(3916), 1, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [4684] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4884), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, anon_sym_COLON_COLON, - ACTIONS(4204), 1, - anon_sym_DOT_DOT_DOT, - STATE(3156), 1, - sym__type_specifier, - STATE(3171), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3188), 1, - sym__declaration_specifiers, - STATE(3259), 1, - sym_qualified_type_identifier, - STATE(3279), 1, - sym_decltype_auto, - STATE(5034), 1, - sym__scope_resolution, - STATE(6159), 1, - sym_dependent_type_identifier, - STATE(3198), 2, - sym_decltype, - sym_template_type, - STATE(5956), 3, - sym_parameter_declaration, - sym_optional_parameter_declaration, - sym_variadic_parameter_declaration, - ACTIONS(61), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(55), 5, + anon_sym_LBRACK_LBRACK, + ACTIONS(4882), 55, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, anon_sym_static, anon_sym_register, anon_sym_inline, anon_sym_thread_local, - STATE(3232), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(59), 8, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - STATE(2191), 8, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual, - aux_sym__declaration_specifiers_repeat1, - [5352] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(39), 1, - anon_sym___attribute__, - ACTIONS(45), 1, - anon_sym___declspec, - ACTIONS(107), 1, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, - ACTIONS(109), 1, anon_sym_decltype, - ACTIONS(111), 1, anon_sym_virtual, - ACTIONS(996), 1, + anon_sym_explicit, + anon_sym_typename, anon_sym_template, - ACTIONS(1413), 1, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [4753] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4888), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(1451), 1, + ACTIONS(4886), 55, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, anon_sym_enum, - ACTIONS(1453), 1, anon_sym_class, - ACTIONS(1455), 1, anon_sym_struct, - ACTIONS(1457), 1, anon_sym_union, - ACTIONS(1471), 1, - anon_sym_typename, - ACTIONS(2932), 1, - sym_primitive_type, - ACTIONS(3906), 1, sym_identifier, - ACTIONS(3916), 1, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [4822] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3280), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, anon_sym_COLON_COLON, - STATE(3156), 1, - sym__type_specifier, - STATE(3171), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3188), 1, - sym__declaration_specifiers, - STATE(3259), 1, - sym_qualified_type_identifier, - STATE(3279), 1, - sym_decltype_auto, - STATE(5034), 1, - sym__scope_resolution, - STATE(6159), 1, - sym_dependent_type_identifier, - STATE(3198), 2, - sym_decltype, - sym_template_type, - STATE(5921), 3, - sym_parameter_declaration, - sym_optional_parameter_declaration, - sym_variadic_parameter_declaration, - ACTIONS(61), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(55), 5, + anon_sym_LBRACK_LBRACK, + ACTIONS(3278), 55, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, anon_sym_static, anon_sym_register, anon_sym_inline, anon_sym_thread_local, - STATE(3232), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(59), 8, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - STATE(2191), 8, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual, - aux_sym__declaration_specifiers_repeat1, - [5473] = 28, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [4891] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(29), 1, + ACTIONS(3306), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - ACTIONS(47), 1, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(3304), 55, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, anon_sym___based, - ACTIONS(113), 1, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, anon_sym_explicit, - ACTIONS(119), 1, - anon_sym_operator, - ACTIONS(996), 1, + anon_sym_typename, anon_sym_template, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(1681), 1, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [4960] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2910), 6, anon_sym_LPAREN2, - ACTIONS(1683), 1, anon_sym_TILDE, - ACTIONS(1685), 1, anon_sym_STAR, - ACTIONS(1687), 1, - anon_sym_AMP, - ACTIONS(1693), 1, - anon_sym_LBRACK, - ACTIONS(4206), 1, - sym_identifier, - ACTIONS(4210), 1, - anon_sym___attribute__, - ACTIONS(4212), 1, + anon_sym_AMP_AMP, anon_sym_COLON_COLON, - ACTIONS(4214), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4216), 1, - anon_sym___declspec, - ACTIONS(4220), 1, - anon_sym_virtual, - STATE(4486), 1, - sym__scope_resolution, - STATE(4855), 1, - sym_function_declarator, - STATE(5113), 1, - sym__declarator, - STATE(6104), 1, - sym_ms_based_modifier, - STATE(5145), 2, - sym_operator_cast, - sym_qualified_operator_cast_identifier, - STATE(6159), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(4208), 5, + ACTIONS(2908), 55, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, anon_sym_static, anon_sym_register, anon_sym_inline, anon_sym_thread_local, - ACTIONS(4218), 8, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - STATE(3294), 10, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual, - sym_explicit_function_specifier, - sym__constructor_specifiers, - aux_sym_operator_cast_definition_repeat1, - STATE(4918), 10, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [5590] = 6, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [5029] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3814), 1, - anon_sym_COLON_COLON, - ACTIONS(4222), 1, - anon_sym_LT, - STATE(1964), 1, - sym_template_argument_list, - ACTIONS(3831), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3836), 37, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3268), 6, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(3266), 55, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [5663] = 3, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [5098] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3896), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(3898), 40, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3115), 6, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_LBRACK_LBRACK, + ACTIONS(3113), 55, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - [5730] = 28, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [5167] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(29), 1, + ACTIONS(3026), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - ACTIONS(47), 1, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(3024), 55, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, anon_sym___based, - ACTIONS(113), 1, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, anon_sym_explicit, - ACTIONS(119), 1, - anon_sym_operator, - ACTIONS(996), 1, + anon_sym_typename, anon_sym_template, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(1681), 1, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [5236] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3356), 6, anon_sym_LPAREN2, - ACTIONS(1683), 1, anon_sym_TILDE, - ACTIONS(1685), 1, anon_sym_STAR, - ACTIONS(1687), 1, - anon_sym_AMP, - ACTIONS(1693), 1, - anon_sym_LBRACK, - ACTIONS(4206), 1, - sym_identifier, - ACTIONS(4210), 1, - anon_sym___attribute__, - ACTIONS(4212), 1, + anon_sym_AMP_AMP, anon_sym_COLON_COLON, - ACTIONS(4214), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4216), 1, - anon_sym___declspec, - ACTIONS(4220), 1, - anon_sym_virtual, - STATE(4486), 1, - sym__scope_resolution, - STATE(4793), 1, - sym_function_declarator, - STATE(5113), 1, - sym__declarator, - STATE(6104), 1, - sym_ms_based_modifier, - STATE(5143), 2, - sym_operator_cast, - sym_qualified_operator_cast_identifier, - STATE(6159), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(4208), 5, + ACTIONS(3354), 55, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, anon_sym_static, anon_sym_register, anon_sym_inline, anon_sym_thread_local, - ACTIONS(4218), 8, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - STATE(3294), 10, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual, - sym_explicit_function_specifier, - sym__constructor_specifiers, - aux_sym_operator_cast_definition_repeat1, - STATE(4918), 10, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [5847] = 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [5305] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4229), 1, - anon_sym_COLON_COLON, - ACTIONS(4227), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4225), 39, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3431), 6, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(3429), 55, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - [5916] = 3, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [5374] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3884), 19, + ACTIONS(4876), 1, + anon_sym_LBRACE, + ACTIONS(4878), 1, + anon_sym_COLON, + STATE(2796), 1, + sym_field_declaration_list, + STATE(5999), 1, + sym_virtual_specifier, + STATE(6808), 1, + sym_base_class_clause, + ACTIONS(4880), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4892), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -231240,12 +305849,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_COLON, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(3886), 40, + ACTIONS(4890), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -231256,8 +305864,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, @@ -231284,588 +305890,413 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - [5983] = 28, + [5455] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(29), 1, - anon_sym_AMP_AMP, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(113), 1, - anon_sym_explicit, - ACTIONS(119), 1, - anon_sym_operator, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(1681), 1, + ACTIONS(3026), 6, anon_sym_LPAREN2, - ACTIONS(1683), 1, anon_sym_TILDE, - ACTIONS(1685), 1, anon_sym_STAR, - ACTIONS(1687), 1, - anon_sym_AMP, - ACTIONS(1693), 1, - anon_sym_LBRACK, - ACTIONS(4206), 1, - sym_identifier, - ACTIONS(4210), 1, - anon_sym___attribute__, - ACTIONS(4212), 1, + anon_sym_AMP_AMP, anon_sym_COLON_COLON, - ACTIONS(4214), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4216), 1, - anon_sym___declspec, - ACTIONS(4220), 1, - anon_sym_virtual, - STATE(4486), 1, - sym__scope_resolution, - STATE(4784), 1, - sym_function_declarator, - STATE(5113), 1, - sym__declarator, - STATE(6104), 1, - sym_ms_based_modifier, - STATE(5128), 2, - sym_operator_cast, - sym_qualified_operator_cast_identifier, - STATE(6159), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(4208), 5, + ACTIONS(3024), 55, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, anon_sym_static, anon_sym_register, anon_sym_inline, anon_sym_thread_local, - ACTIONS(4218), 8, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - STATE(3294), 10, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual, - sym_explicit_function_specifier, - sym__constructor_specifiers, - aux_sym_operator_cast_definition_repeat1, - STATE(4918), 10, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [6100] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(29), 1, - anon_sym_AMP_AMP, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(113), 1, - anon_sym_explicit, - ACTIONS(119), 1, - anon_sym_operator, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(1681), 1, - anon_sym_LPAREN2, - ACTIONS(1683), 1, - anon_sym_TILDE, - ACTIONS(1685), 1, - anon_sym_STAR, - ACTIONS(1687), 1, - anon_sym_AMP, - ACTIONS(1693), 1, - anon_sym_LBRACK, - ACTIONS(4206), 1, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, sym_identifier, - ACTIONS(4210), 1, - anon_sym___attribute__, - ACTIONS(4212), 1, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [5524] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3427), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, anon_sym_COLON_COLON, - ACTIONS(4214), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4216), 1, - anon_sym___declspec, - ACTIONS(4220), 1, - anon_sym_virtual, - STATE(4486), 1, - sym__scope_resolution, - STATE(4821), 1, - sym_function_declarator, - STATE(5113), 1, - sym__declarator, - STATE(6104), 1, - sym_ms_based_modifier, - STATE(5128), 2, - sym_operator_cast, - sym_qualified_operator_cast_identifier, - STATE(6159), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(4208), 5, + ACTIONS(3425), 55, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, anon_sym_static, anon_sym_register, anon_sym_inline, anon_sym_thread_local, - ACTIONS(4218), 8, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - STATE(3294), 10, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual, - sym_explicit_function_specifier, - sym__constructor_specifiers, - aux_sym_operator_cast_definition_repeat1, - STATE(4918), 10, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [6217] = 3, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [5593] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4022), 23, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - anon_sym_DASH_GT, - sym_literal_suffix, - ACTIONS(4020), 36, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3272), 6, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [6284] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4030), 23, - anon_sym_DASH, - anon_sym_PLUS, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - anon_sym_DASH_GT, - sym_literal_suffix, - ACTIONS(4028), 36, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(3270), 55, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [6351] = 3, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [5662] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3858), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(3860), 40, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3244), 6, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_LBRACK_LBRACK, + ACTIONS(3242), 55, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - [6418] = 3, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [5731] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3892), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(3894), 40, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(4896), 6, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_LBRACK_LBRACK, + ACTIONS(4894), 55, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - [6485] = 3, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [5800] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3862), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(3864), 40, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(4900), 6, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_LBRACK_LBRACK, + ACTIONS(4898), 55, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - [6552] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(1942), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(4231), 4, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(4082), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - ACTIONS(4080), 30, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, sym_primitive_type, - anon_sym_GT_GT_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, sym_identifier, sym_auto, anon_sym_decltype, - [6623] = 5, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [5869] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4234), 1, - anon_sym_catch, - STATE(1948), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - ACTIONS(2370), 6, + ACTIONS(4904), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2368), 50, + ACTIONS(4902), 55, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -231873,6 +306304,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, sym_preproc_directive, anon_sym_AMP, anon_sym_typedef, @@ -231886,11 +306319,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -231916,332 +306352,281 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [6694] = 3, + [5938] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3902), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(3904), 40, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(4908), 6, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_LBRACK_LBRACK, + ACTIONS(4906), 55, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - [6761] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(29), 1, - anon_sym_AMP_AMP, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(113), 1, + anon_sym_virtual, anon_sym_explicit, - ACTIONS(119), 1, - anon_sym_operator, - ACTIONS(996), 1, + anon_sym_typename, anon_sym_template, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(1681), 1, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [6007] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4908), 6, anon_sym_LPAREN2, - ACTIONS(1683), 1, anon_sym_TILDE, - ACTIONS(1685), 1, anon_sym_STAR, - ACTIONS(1687), 1, - anon_sym_AMP, - ACTIONS(1693), 1, - anon_sym_LBRACK, - ACTIONS(4206), 1, - sym_identifier, - ACTIONS(4210), 1, - anon_sym___attribute__, - ACTIONS(4212), 1, + anon_sym_AMP_AMP, anon_sym_COLON_COLON, - ACTIONS(4214), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4216), 1, - anon_sym___declspec, - ACTIONS(4220), 1, - anon_sym_virtual, - STATE(4486), 1, - sym__scope_resolution, - STATE(4750), 1, - sym_function_declarator, - STATE(5113), 1, - sym__declarator, - STATE(6104), 1, - sym_ms_based_modifier, - STATE(5147), 2, - sym_operator_cast, - sym_qualified_operator_cast_identifier, - STATE(6159), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(4208), 5, + ACTIONS(4906), 55, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, anon_sym_static, anon_sym_register, anon_sym_inline, anon_sym_thread_local, - ACTIONS(4218), 8, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - STATE(3294), 10, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual, - sym_explicit_function_specifier, - sym__constructor_specifiers, - aux_sym_operator_cast_definition_repeat1, - STATE(4918), 10, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [6878] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4236), 1, - sym_identifier, - ACTIONS(4240), 1, - sym_primitive_type, - STATE(1942), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(4238), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(4052), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - ACTIONS(4054), 28, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, anon_sym_decltype, - [6953] = 28, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [6076] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(29), 1, + ACTIONS(3174), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - ACTIONS(47), 1, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(3172), 55, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, anon_sym___based, - ACTIONS(113), 1, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, anon_sym_explicit, - ACTIONS(119), 1, - anon_sym_operator, - ACTIONS(996), 1, + anon_sym_typename, anon_sym_template, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(1681), 1, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [6145] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3127), 6, anon_sym_LPAREN2, - ACTIONS(1683), 1, anon_sym_TILDE, - ACTIONS(1685), 1, anon_sym_STAR, - ACTIONS(1687), 1, - anon_sym_AMP, - ACTIONS(1693), 1, - anon_sym_LBRACK, - ACTIONS(4206), 1, - sym_identifier, - ACTIONS(4210), 1, - anon_sym___attribute__, - ACTIONS(4212), 1, + anon_sym_AMP_AMP, anon_sym_COLON_COLON, - ACTIONS(4214), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4216), 1, - anon_sym___declspec, - ACTIONS(4220), 1, - anon_sym_virtual, - STATE(4486), 1, - sym__scope_resolution, - STATE(4816), 1, - sym_function_declarator, - STATE(5113), 1, - sym__declarator, - STATE(6104), 1, - sym_ms_based_modifier, - STATE(5139), 2, - sym_operator_cast, - sym_qualified_operator_cast_identifier, - STATE(6159), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(4208), 5, + ACTIONS(3125), 55, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, anon_sym_static, anon_sym_register, anon_sym_inline, anon_sym_thread_local, - ACTIONS(4218), 8, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - STATE(3294), 10, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual, - sym_explicit_function_specifier, - sym__constructor_specifiers, - aux_sym_operator_cast_definition_repeat1, - STATE(4918), 10, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [7070] = 5, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [6214] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4242), 1, - anon_sym_catch, - STATE(1948), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - ACTIONS(2376), 6, + ACTIONS(3288), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2374), 50, + ACTIONS(3286), 55, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -232249,6 +306634,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, sym_preproc_directive, anon_sym_AMP, anon_sym_typedef, @@ -232262,11 +306649,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -232292,22 +306682,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [7141] = 5, + [6283] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4234), 1, - anon_sym_catch, - STATE(1948), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - ACTIONS(2387), 6, + ACTIONS(3386), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2385), 50, + ACTIONS(3384), 55, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -232315,6 +306700,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, sym_preproc_directive, anon_sym_AMP, anon_sym_typedef, @@ -232328,11 +306715,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -232358,22 +306748,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [7212] = 5, + [6352] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4234), 1, - anon_sym_catch, - STATE(1948), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - ACTIONS(2383), 6, + ACTIONS(4912), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2381), 50, + ACTIONS(4910), 55, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -232381,6 +306766,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, sym_preproc_directive, anon_sym_AMP, anon_sym_typedef, @@ -232394,11 +306781,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -232424,407 +306814,196 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [7283] = 3, + [6421] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3870), 19, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(4916), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(3875), 40, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - [7350] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3866), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + anon_sym_LBRACK_LBRACK, + ACTIONS(4914), 55, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(3868), 40, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - [7417] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(29), 1, - anon_sym_AMP_AMP, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(113), 1, + anon_sym_virtual, anon_sym_explicit, - ACTIONS(119), 1, - anon_sym_operator, - ACTIONS(996), 1, + anon_sym_typename, anon_sym_template, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(1681), 1, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [6490] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4920), 6, anon_sym_LPAREN2, - ACTIONS(1683), 1, anon_sym_TILDE, - ACTIONS(1685), 1, anon_sym_STAR, - ACTIONS(1687), 1, - anon_sym_AMP, - ACTIONS(1693), 1, - anon_sym_LBRACK, - ACTIONS(4206), 1, - sym_identifier, - ACTIONS(4210), 1, - anon_sym___attribute__, - ACTIONS(4212), 1, + anon_sym_AMP_AMP, anon_sym_COLON_COLON, - ACTIONS(4214), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4216), 1, - anon_sym___declspec, - ACTIONS(4220), 1, - anon_sym_virtual, - STATE(4486), 1, - sym__scope_resolution, - STATE(4744), 1, - sym_function_declarator, - STATE(5113), 1, - sym__declarator, - STATE(6104), 1, - sym_ms_based_modifier, - STATE(5145), 2, - sym_operator_cast, - sym_qualified_operator_cast_identifier, - STATE(6159), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(4208), 5, + ACTIONS(4918), 55, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, anon_sym_static, anon_sym_register, anon_sym_inline, anon_sym_thread_local, - ACTIONS(4218), 8, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - STATE(3294), 10, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual, - sym_explicit_function_specifier, - sym__constructor_specifiers, - aux_sym_operator_cast_definition_repeat1, - STATE(4918), 10, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [7534] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4229), 1, - anon_sym_COLON_COLON, - ACTIONS(4247), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4245), 39, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - [7603] = 6, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [6559] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3814), 1, - anon_sym_COLON_COLON, - ACTIONS(4249), 1, - anon_sym_LT, - STATE(1964), 1, - sym_template_argument_list, - ACTIONS(4196), 19, + STATE(2301), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(4926), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(4922), 22, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3819), 37, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_auto, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [7676] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4002), 23, - anon_sym_DASH, - anon_sym_PLUS, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + ACTIONS(4924), 26, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - anon_sym_DASH_GT, - sym_literal_suffix, - ACTIONS(4000), 36, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_COLON_COLON, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, + anon_sym_RBRACK, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, @@ -232835,255 +307014,287 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [7743] = 4, + [6632] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4229), 1, - anon_sym_COLON_COLON, - ACTIONS(4247), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4245), 39, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3119), 6, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(3117), 55, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - [7812] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(29), 1, - anon_sym_AMP_AMP, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(113), 1, + anon_sym_virtual, anon_sym_explicit, - ACTIONS(119), 1, - anon_sym_operator, - ACTIONS(996), 1, + anon_sym_typename, anon_sym_template, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(1681), 1, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [6701] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4931), 6, anon_sym_LPAREN2, - ACTIONS(1683), 1, anon_sym_TILDE, - ACTIONS(1685), 1, anon_sym_STAR, - ACTIONS(1687), 1, - anon_sym_AMP, - ACTIONS(1693), 1, - anon_sym_LBRACK, - ACTIONS(4206), 1, - sym_identifier, - ACTIONS(4210), 1, - anon_sym___attribute__, - ACTIONS(4212), 1, + anon_sym_AMP_AMP, anon_sym_COLON_COLON, - ACTIONS(4214), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4216), 1, - anon_sym___declspec, - ACTIONS(4220), 1, - anon_sym_virtual, - STATE(4486), 1, - sym__scope_resolution, - STATE(4847), 1, - sym_function_declarator, - STATE(5113), 1, - sym__declarator, - STATE(6104), 1, - sym_ms_based_modifier, - STATE(5119), 2, - sym_operator_cast, - sym_qualified_operator_cast_identifier, - STATE(6159), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(4208), 5, + ACTIONS(4929), 55, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, anon_sym_static, anon_sym_register, anon_sym_inline, anon_sym_thread_local, - ACTIONS(4218), 8, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - STATE(3294), 10, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual, - sym_explicit_function_specifier, - sym__constructor_specifiers, - aux_sym_operator_cast_definition_repeat1, - STATE(4918), 10, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [7929] = 28, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [6770] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(29), 1, + ACTIONS(4935), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - ACTIONS(47), 1, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4933), 55, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, anon_sym___based, - ACTIONS(113), 1, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, anon_sym_explicit, - ACTIONS(119), 1, - anon_sym_operator, - ACTIONS(996), 1, + anon_sym_typename, anon_sym_template, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(1681), 1, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [6839] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3119), 6, anon_sym_LPAREN2, - ACTIONS(1683), 1, anon_sym_TILDE, - ACTIONS(1685), 1, anon_sym_STAR, - ACTIONS(1687), 1, - anon_sym_AMP, - ACTIONS(1693), 1, - anon_sym_LBRACK, - ACTIONS(4206), 1, - sym_identifier, - ACTIONS(4210), 1, - anon_sym___attribute__, - ACTIONS(4212), 1, + anon_sym_AMP_AMP, anon_sym_COLON_COLON, - ACTIONS(4214), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4216), 1, - anon_sym___declspec, - ACTIONS(4220), 1, - anon_sym_virtual, - STATE(4486), 1, - sym__scope_resolution, - STATE(4762), 1, - sym_function_declarator, - STATE(5113), 1, - sym__declarator, - STATE(6104), 1, - sym_ms_based_modifier, - STATE(5119), 2, - sym_operator_cast, - sym_qualified_operator_cast_identifier, - STATE(6159), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(4208), 5, + ACTIONS(3117), 55, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, anon_sym_static, anon_sym_register, anon_sym_inline, anon_sym_thread_local, - ACTIONS(4218), 8, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - STATE(3294), 10, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual, - sym_explicit_function_specifier, - sym__constructor_specifiers, - aux_sym_operator_cast_definition_repeat1, - STATE(4918), 10, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [8046] = 3, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [6908] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4253), 19, + ACTIONS(4876), 1, + anon_sym_LBRACE, + ACTIONS(4878), 1, + anon_sym_COLON, + STATE(2781), 1, + sym_field_declaration_list, + STATE(6132), 1, + sym_virtual_specifier, + STATE(6786), 1, + sym_base_class_clause, + ACTIONS(4880), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4939), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -233098,12 +307309,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_COLON, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4251), 40, + ACTIONS(4937), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -233114,8 +307324,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, @@ -233142,667 +307350,678 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - [8113] = 28, + [6989] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(29), 1, - anon_sym_AMP_AMP, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(113), 1, - anon_sym_explicit, - ACTIONS(119), 1, - anon_sym_operator, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(1681), 1, + ACTIONS(3401), 6, anon_sym_LPAREN2, - ACTIONS(1683), 1, anon_sym_TILDE, - ACTIONS(1685), 1, anon_sym_STAR, - ACTIONS(1687), 1, - anon_sym_AMP, - ACTIONS(1693), 1, - anon_sym_LBRACK, - ACTIONS(4206), 1, - sym_identifier, - ACTIONS(4210), 1, - anon_sym___attribute__, - ACTIONS(4212), 1, + anon_sym_AMP_AMP, anon_sym_COLON_COLON, - ACTIONS(4214), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4216), 1, - anon_sym___declspec, - ACTIONS(4220), 1, - anon_sym_virtual, - STATE(4486), 1, - sym__scope_resolution, - STATE(4748), 1, - sym_function_declarator, - STATE(5113), 1, - sym__declarator, - STATE(6104), 1, - sym_ms_based_modifier, - STATE(5142), 2, - sym_operator_cast, - sym_qualified_operator_cast_identifier, - STATE(6159), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(4208), 5, + ACTIONS(3399), 55, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, anon_sym_static, anon_sym_register, anon_sym_inline, anon_sym_thread_local, - ACTIONS(4218), 8, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - STATE(3294), 10, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual, - sym_explicit_function_specifier, - sym__constructor_specifiers, - aux_sym_operator_cast_definition_repeat1, - STATE(4918), 10, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [8230] = 28, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [7058] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(29), 1, + ACTIONS(3310), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - ACTIONS(47), 1, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(3308), 55, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, anon_sym___based, - ACTIONS(113), 1, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, anon_sym_explicit, - ACTIONS(119), 1, - anon_sym_operator, - ACTIONS(996), 1, + anon_sym_typename, anon_sym_template, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(1681), 1, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [7127] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4943), 6, anon_sym_LPAREN2, - ACTIONS(1683), 1, anon_sym_TILDE, - ACTIONS(1685), 1, anon_sym_STAR, - ACTIONS(1687), 1, - anon_sym_AMP, - ACTIONS(1693), 1, - anon_sym_LBRACK, - ACTIONS(4206), 1, - sym_identifier, - ACTIONS(4210), 1, - anon_sym___attribute__, - ACTIONS(4212), 1, + anon_sym_AMP_AMP, anon_sym_COLON_COLON, - ACTIONS(4214), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4216), 1, - anon_sym___declspec, - ACTIONS(4220), 1, - anon_sym_virtual, - STATE(4486), 1, - sym__scope_resolution, - STATE(4869), 1, - sym_function_declarator, - STATE(5113), 1, - sym__declarator, - STATE(6104), 1, - sym_ms_based_modifier, - STATE(5143), 2, - sym_operator_cast, - sym_qualified_operator_cast_identifier, - STATE(6159), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(4208), 5, + ACTIONS(4941), 55, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, anon_sym_static, anon_sym_register, anon_sym_inline, anon_sym_thread_local, - ACTIONS(4218), 8, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - STATE(3294), 10, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual, - sym_explicit_function_specifier, - sym__constructor_specifiers, - aux_sym_operator_cast_definition_repeat1, - STATE(4918), 10, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [8347] = 3, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [7196] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4026), 23, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(3148), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(3146), 55, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - anon_sym_DASH_GT, - sym_literal_suffix, - ACTIONS(4024), 36, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [8414] = 3, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [7265] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3870), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3875), 38, - anon_sym_DOT_DOT_DOT, + ACTIONS(2960), 2, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(2540), 6, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_COLON_COLON, - anon_sym_LBRACE, + anon_sym_LBRACK_LBRACK, + ACTIONS(2542), 53, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [8480] = 9, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [7336] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4133), 1, - anon_sym_COLON, - ACTIONS(4255), 1, - anon_sym_LBRACE, - STATE(2609), 1, - sym_field_declaration_list, - STATE(5280), 1, - sym_virtual_specifier, - STATE(5720), 1, - sym_base_class_clause, - ACTIONS(4135), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(4129), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4127), 31, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(3046), 6, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(3044), 55, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_GT2, - [8558] = 6, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [7405] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3814), 1, - anon_sym_COLON_COLON, - ACTIONS(4198), 1, - anon_sym_LT, - STATE(1951), 1, - sym_template_argument_list, - ACTIONS(3793), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(3801), 37, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(4947), 6, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4945), 55, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, anon_sym_decltype, - [8630] = 3, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [7474] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4253), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4251), 38, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(4947), 6, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_COLON_COLON, - anon_sym_LBRACE, + anon_sym_LBRACK_LBRACK, + ACTIONS(4945), 55, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [8696] = 11, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [7543] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1579), 1, - anon_sym_LBRACE, - ACTIONS(4257), 1, + ACTIONS(3042), 6, anon_sym_LPAREN2, - ACTIONS(4259), 1, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(3040), 55, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, anon_sym_LBRACK, - ACTIONS(4261), 1, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, - ACTIONS(4263), 1, anon_sym_decltype, - STATE(2235), 1, - sym_new_declarator, - STATE(2358), 1, - sym_decltype_auto, - STATE(2725), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(4185), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4183), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [8778] = 11, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [7612] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1579), 1, - anon_sym_LBRACE, - ACTIONS(4257), 1, + ACTIONS(4870), 6, anon_sym_LPAREN2, - ACTIONS(4259), 1, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4868), 55, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, anon_sym_LBRACK, - ACTIONS(4261), 1, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, - ACTIONS(4263), 1, anon_sym_decltype, - STATE(2358), 1, - sym_decltype_auto, - STATE(2360), 1, - sym_new_declarator, - STATE(2788), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(4168), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4164), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [8860] = 4, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [7681] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2652), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(1735), 6, + ACTIONS(3417), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(1737), 50, + ACTIONS(3415), 55, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -233810,6 +308029,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, sym_preproc_directive, anon_sym_AMP, anon_sym_typedef, @@ -233823,11 +308044,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -233853,1029 +308077,356 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [8928] = 11, + [7750] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1579), 1, - anon_sym_LBRACE, - ACTIONS(4257), 1, + ACTIONS(3236), 6, anon_sym_LPAREN2, - ACTIONS(4259), 1, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(3234), 55, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, anon_sym_LBRACK, - ACTIONS(4261), 1, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, - ACTIONS(4263), 1, anon_sym_decltype, - STATE(2293), 1, - sym_new_declarator, - STATE(2358), 1, - sym_decltype_auto, - STATE(2756), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(4202), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4200), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [9010] = 9, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [7819] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4133), 1, - anon_sym_COLON, - ACTIONS(4255), 1, - anon_sym_LBRACE, - STATE(2655), 1, - sym_field_declaration_list, - STATE(5289), 1, - sym_virtual_specifier, - STATE(5723), 1, - sym_base_class_clause, - ACTIONS(4135), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(4160), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4158), 31, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(2946), 6, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2944), 55, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_GT2, - [9088] = 5, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [7888] = 3, ACTIONS(3), 1, sym_comment, - STATE(1973), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(4265), 4, + ACTIONS(4951), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4949), 55, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(4080), 26, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, sym_primitive_type, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - anon_sym_DASH_GT, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(4082), 27, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [7957] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4955), 6, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4953), 55, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [9158] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4272), 1, - anon_sym_LBRACE, - ACTIONS(4274), 1, - anon_sym_COLON, - STATE(2001), 1, - sym__enum_base_clause, - STATE(2126), 1, - sym_enumerator_list, - ACTIONS(4270), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4268), 36, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [9232] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4272), 1, - anon_sym_LBRACE, - ACTIONS(4274), 1, - anon_sym_COLON, - STATE(2010), 1, - sym__enum_base_clause, - STATE(2084), 1, - sym_enumerator_list, - ACTIONS(4278), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4276), 36, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [9306] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4280), 1, - sym_identifier, - ACTIONS(4284), 1, - sym_primitive_type, - STATE(1973), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(4282), 4, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(4054), 24, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - ACTIONS(4052), 27, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [9380] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4229), 1, - anon_sym_COLON_COLON, - ACTIONS(4247), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4245), 37, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [9448] = 5, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [8026] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3814), 1, - anon_sym_COLON_COLON, - STATE(3135), 1, - sym_template_argument_list, - ACTIONS(4288), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4286), 37, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3087), 6, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [9518] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4229), 1, - anon_sym_COLON_COLON, - ACTIONS(4227), 20, - anon_sym_DASH, - anon_sym_PLUS, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4225), 37, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [9586] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4229), 1, anon_sym_COLON_COLON, - ACTIONS(4247), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4245), 37, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [9654] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4133), 1, - anon_sym_COLON, - ACTIONS(4255), 1, - anon_sym_LBRACE, - STATE(2627), 1, - sym_field_declaration_list, - STATE(5274), 1, - sym_virtual_specifier, - STATE(5709), 1, - sym_base_class_clause, - ACTIONS(4135), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(4145), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4143), 31, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [9732] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4247), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4245), 40, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - [9798] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1579), 1, - anon_sym_LBRACE, - ACTIONS(4257), 1, - anon_sym_LPAREN2, - ACTIONS(4259), 1, - anon_sym_LBRACK, - ACTIONS(4261), 1, - sym_auto, - ACTIONS(4263), 1, - anon_sym_decltype, - STATE(2216), 1, - sym_new_declarator, - STATE(2358), 1, - sym_decltype_auto, - STATE(2717), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(4178), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4176), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [9880] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4133), 1, - anon_sym_COLON, - ACTIONS(4290), 1, - anon_sym_LBRACE, - STATE(2790), 1, - sym_field_declaration_list, - STATE(5240), 1, - sym_virtual_specifier, - STATE(5916), 1, - sym_base_class_clause, - ACTIONS(4135), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(4129), 16, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4127), 34, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [9957] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4133), 1, - anon_sym_COLON, - ACTIONS(4290), 1, - anon_sym_LBRACE, - STATE(2819), 1, - sym_field_declaration_list, - STATE(5194), 1, - sym_virtual_specifier, - STATE(5923), 1, - sym_base_class_clause, - ACTIONS(4135), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(4160), 16, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + anon_sym_LBRACK_LBRACK, + ACTIONS(3085), 55, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4158), 34, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [10034] = 5, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [8095] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4292), 1, - anon_sym_catch, - STATE(2008), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - ACTIONS(2387), 6, + ACTIONS(4959), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2385), 48, + ACTIONS(4957), 55, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, sym_preproc_directive, anon_sym_AMP, anon_sym_typedef, @@ -234889,11 +308440,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -234919,158 +308473,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [10103] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4294), 1, - anon_sym_LBRACE, - ACTIONS(4296), 1, - anon_sym_COLON, - STATE(2178), 1, - sym__enum_base_clause, - STATE(2379), 1, - sym_enumerator_list, - ACTIONS(4270), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4268), 34, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [10176] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3814), 1, - anon_sym_COLON_COLON, - ACTIONS(4298), 1, - anon_sym_LT, - STATE(2146), 1, - sym_template_argument_list, - ACTIONS(4196), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(3819), 34, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - [10247] = 5, + [8164] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4300), 1, - anon_sym_catch, - STATE(2006), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - ACTIONS(2383), 7, + ACTIONS(3393), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2381), 47, + ACTIONS(3391), 55, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, sym_preproc_directive, anon_sym_AMP, anon_sym_typedef, @@ -235084,11 +308506,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -235114,79 +308539,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [10316] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4247), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4245), 38, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [10381] = 3, + [8233] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2406), 6, + ACTIONS(3087), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2404), 51, + ACTIONS(3085), 55, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -235194,6 +308557,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, sym_preproc_directive, anon_sym_AMP, anon_sym_typedef, @@ -235207,11 +308572,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -235237,204 +308605,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - anon_sym_catch, - [10446] = 29, + [8302] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1521), 1, - anon_sym_operator, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(1683), 1, - anon_sym_TILDE, - ACTIONS(3226), 1, + ACTIONS(4963), 6, anon_sym_LPAREN2, - ACTIONS(4302), 1, - sym_identifier, - ACTIONS(4306), 1, + anon_sym_TILDE, anon_sym_STAR, - ACTIONS(4308), 1, anon_sym_AMP_AMP, - ACTIONS(4310), 1, - anon_sym_AMP, - ACTIONS(4312), 1, anon_sym_COLON_COLON, - ACTIONS(4314), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4961), 55, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, anon_sym_LBRACK, - STATE(3482), 1, - sym_parameter_list, - STATE(4091), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4598), 1, - sym__scope_resolution, - STATE(4654), 1, - sym__declarator, - STATE(4765), 1, - sym__function_declarator_seq, - STATE(4929), 1, - sym__abstract_declarator, - STATE(6066), 1, - sym_ms_based_modifier, - ACTIONS(2722), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(4304), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(2942), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(3091), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(2720), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(6159), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(4764), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(2724), 8, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - STATE(4918), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [10563] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(996), 1, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, anon_sym_template, - ACTIONS(1521), 1, anon_sym_operator, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(1683), 1, - anon_sym_TILDE, - ACTIONS(3226), 1, - anon_sym_LPAREN2, - ACTIONS(4302), 1, - sym_identifier, - ACTIONS(4312), 1, - anon_sym_COLON_COLON, - ACTIONS(4314), 1, - anon_sym_LBRACK, - ACTIONS(4316), 1, - anon_sym_STAR, - ACTIONS(4318), 1, - anon_sym_AMP_AMP, - ACTIONS(4320), 1, - anon_sym_AMP, - STATE(3556), 1, - sym_parameter_list, - STATE(4091), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4598), 1, - sym__scope_resolution, - STATE(4654), 1, - sym__declarator, - STATE(4765), 1, - sym__function_declarator_seq, - STATE(4965), 1, - sym__abstract_declarator, - STATE(6066), 1, - sym_ms_based_modifier, - ACTIONS(2722), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(4304), 2, - anon_sym_COMMA, - anon_sym_GT2, - STATE(2944), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(3091), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(2720), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(6159), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(4764), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(2724), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(4918), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [10680] = 5, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [8371] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4300), 1, - anon_sym_catch, - STATE(2006), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - ACTIONS(2370), 7, + ACTIONS(3344), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2368), 47, + ACTIONS(3342), 55, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, sym_preproc_directive, anon_sym_AMP, anon_sym_typedef, @@ -235448,11 +308704,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -235478,286 +308737,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [10749] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4229), 1, - anon_sym_COLON_COLON, - ACTIONS(4324), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4322), 37, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [10816] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4328), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4326), 38, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [10881] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4133), 1, - anon_sym_COLON, - ACTIONS(4290), 1, - anon_sym_LBRACE, - STATE(2767), 1, - sym_field_declaration_list, - STATE(5268), 1, - sym_virtual_specifier, - STATE(5903), 1, - sym_base_class_clause, - ACTIONS(4135), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(4145), 16, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4143), 34, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [10958] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4294), 1, - anon_sym_LBRACE, - ACTIONS(4296), 1, - anon_sym_COLON, - STATE(2195), 1, - sym__enum_base_clause, - STATE(2415), 1, - sym_enumerator_list, - ACTIONS(4278), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4276), 34, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [11031] = 5, + [8440] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4292), 1, - anon_sym_catch, - STATE(2008), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - ACTIONS(2383), 6, + ACTIONS(3152), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2381), 48, + ACTIONS(3150), 55, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, sym_preproc_directive, anon_sym_AMP, anon_sym_typedef, @@ -235771,11 +308770,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -235801,208 +308803,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [11100] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3870), 17, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3875), 40, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [11165] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4272), 1, - anon_sym_LBRACE, - STATE(2141), 1, - sym_enumerator_list, - ACTIONS(4332), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4330), 37, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [11234] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4172), 1, - sym_auto, - ACTIONS(4174), 1, - anon_sym_decltype, - STATE(2067), 1, - sym_decltype_auto, - ACTIONS(4336), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4334), 36, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [11305] = 3, + [8509] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1727), 6, + ACTIONS(3374), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(1729), 51, + ACTIONS(3372), 55, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -236010,6 +308821,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, sym_preproc_directive, anon_sym_AMP, anon_sym_typedef, @@ -236023,11 +308836,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -236053,18 +308869,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - anon_sym_catch, - [11370] = 3, + [8578] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1735), 6, + ACTIONS(3178), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(1737), 51, + ACTIONS(3176), 55, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -236072,6 +308887,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, sym_preproc_directive, anon_sym_AMP, anon_sym_typedef, @@ -236085,11 +308902,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -236115,93 +308935,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - anon_sym_catch, - [11435] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3814), 1, - anon_sym_COLON_COLON, - ACTIONS(4338), 1, - anon_sym_LT, - STATE(2146), 1, - sym_template_argument_list, - ACTIONS(3831), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(3836), 34, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - [11506] = 5, + [8647] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4341), 1, - anon_sym_catch, - STATE(2006), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - ACTIONS(2376), 7, + ACTIONS(3182), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2374), 47, + ACTIONS(3180), 55, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, sym_preproc_directive, anon_sym_AMP, anon_sym_typedef, @@ -236215,11 +308968,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -236245,27 +309001,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [11575] = 5, + [8716] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4292), 1, - anon_sym_catch, - STATE(2008), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - ACTIONS(2370), 6, + ACTIONS(3232), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2368), 48, + ACTIONS(3230), 55, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, sym_preproc_directive, anon_sym_AMP, anon_sym_typedef, @@ -236279,11 +309034,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -236309,27 +309067,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [11644] = 5, + [8785] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4344), 1, - anon_sym_catch, - STATE(2008), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - ACTIONS(2376), 6, + ACTIONS(3207), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2374), 48, + ACTIONS(3205), 55, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, sym_preproc_directive, anon_sym_AMP, anon_sym_typedef, @@ -236343,11 +309100,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -236373,27 +309133,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [11713] = 5, + [8854] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4300), 1, - anon_sym_catch, - STATE(2006), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - ACTIONS(2387), 7, + ACTIONS(3228), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2385), 47, + ACTIONS(3226), 55, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, sym_preproc_directive, anon_sym_AMP, anon_sym_typedef, @@ -236407,11 +309166,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -236437,81 +309199,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [11782] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4272), 1, - anon_sym_LBRACE, - STATE(2117), 1, - sym_enumerator_list, - ACTIONS(4349), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4347), 37, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [11851] = 3, + [8923] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4353), 6, + ACTIONS(3334), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(4351), 50, + ACTIONS(3332), 55, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -236519,6 +309217,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, sym_preproc_directive, anon_sym_AMP, anon_sym_typedef, @@ -236532,11 +309232,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -236562,104 +309265,149 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [11915] = 29, + [8992] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, + ACTIONS(4963), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4961), 55, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, anon_sym___attribute__, - ACTIONS(45), 1, anon_sym___declspec, - ACTIONS(65), 1, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, anon_sym_enum, - ACTIONS(67), 1, anon_sym_class, - ACTIONS(69), 1, anon_sym_struct, - ACTIONS(71), 1, anon_sym_union, - ACTIONS(107), 1, + sym_identifier, sym_auto, - ACTIONS(109), 1, anon_sym_decltype, - ACTIONS(111), 1, anon_sym_virtual, - ACTIONS(115), 1, + anon_sym_explicit, anon_sym_typename, - ACTIONS(996), 1, anon_sym_template, - ACTIONS(1413), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2922), 1, - sym_identifier, - ACTIONS(2928), 1, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [9061] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3034), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, anon_sym_COLON_COLON, - ACTIONS(2932), 1, - sym_primitive_type, - STATE(3156), 1, - sym__type_specifier, - STATE(3171), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3259), 1, - sym_qualified_type_identifier, - STATE(3279), 1, - sym_decltype_auto, - STATE(4008), 1, - sym__declaration_specifiers, - STATE(5006), 1, - sym__scope_resolution, - STATE(6159), 1, - sym_dependent_type_identifier, - STATE(3198), 2, - sym_decltype, - sym_template_type, - ACTIONS(61), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(55), 5, + anon_sym_LBRACK_LBRACK, + ACTIONS(3032), 55, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, anon_sym_static, anon_sym_register, anon_sym_inline, anon_sym_thread_local, - STATE(3232), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(59), 8, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - STATE(2179), 8, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual, - aux_sym__declaration_specifiers_repeat1, - [12031] = 3, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [9130] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4357), 6, + ACTIONS(3248), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(4355), 50, + ACTIONS(3246), 55, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -236667,6 +309415,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, sym_preproc_directive, anon_sym_AMP, anon_sym_typedef, @@ -236680,11 +309430,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -236710,145 +309463,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [12095] = 9, + [9199] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4133), 1, - anon_sym_COLON, - ACTIONS(4359), 1, - anon_sym_LBRACE, - STATE(2449), 1, - sym_field_declaration_list, - STATE(5179), 1, - sym_virtual_specifier, - STATE(5963), 1, - sym_base_class_clause, - ACTIONS(4135), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(4129), 10, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(4127), 39, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3264), 6, anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(3262), 55, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_requires, - [12171] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4363), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4361), 38, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, anon_sym_decltype, - [12235] = 3, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [9268] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4367), 6, + ACTIONS(3457), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(4365), 50, + ACTIONS(3455), 55, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -236856,6 +309547,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, sym_preproc_directive, anon_sym_AMP, anon_sym_typedef, @@ -236869,11 +309562,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -236899,177 +309595,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [12299] = 3, + [9337] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4324), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4322), 38, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [12363] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(39), 1, - anon_sym___attribute__, - ACTIONS(45), 1, - anon_sym___declspec, - ACTIONS(65), 1, - anon_sym_enum, - ACTIONS(67), 1, - anon_sym_class, - ACTIONS(69), 1, - anon_sym_struct, - ACTIONS(71), 1, - anon_sym_union, - ACTIONS(107), 1, - sym_auto, - ACTIONS(109), 1, - anon_sym_decltype, - ACTIONS(111), 1, - anon_sym_virtual, - ACTIONS(115), 1, - anon_sym_typename, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1413), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2922), 1, - sym_identifier, - ACTIONS(2928), 1, - anon_sym_COLON_COLON, - ACTIONS(2932), 1, - sym_primitive_type, - STATE(3156), 1, - sym__type_specifier, - STATE(3171), 1, + STATE(2341), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3259), 1, - sym_qualified_type_identifier, - STATE(3279), 1, - sym_decltype_auto, - STATE(4034), 1, - sym__declaration_specifiers, - STATE(5006), 1, - sym__scope_resolution, - STATE(6159), 1, - sym_dependent_type_identifier, - STATE(3198), 2, - sym_decltype, - sym_template_type, - ACTIONS(61), 4, + ACTIONS(4965), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(55), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - STATE(3232), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(59), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(2179), 8, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual, - aux_sym__declaration_specifiers_repeat1, - [12479] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4371), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4369), 38, + ACTIONS(4787), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -237079,12 +309615,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -237096,29 +309628,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [12543] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1537), 1, - anon_sym_LBRACE, - ACTIONS(4166), 1, - anon_sym_LPAREN2, - STATE(2571), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(4375), 18, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + ACTIONS(4785), 29, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -237133,185 +309648,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4373), 34, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + sym_primitive_type, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [12613] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1521), 1, - anon_sym_operator, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(1683), 1, - anon_sym_TILDE, - ACTIONS(3226), 1, - anon_sym_LPAREN2, - ACTIONS(3228), 1, - anon_sym_STAR, - ACTIONS(3230), 1, - anon_sym_AMP_AMP, - ACTIONS(3232), 1, - anon_sym_AMP, - ACTIONS(4206), 1, - sym_identifier, - ACTIONS(4304), 1, - anon_sym_RPAREN, - ACTIONS(4314), 1, - anon_sym_LBRACK, - ACTIONS(4377), 1, - anon_sym_COLON_COLON, - STATE(3482), 1, - sym_parameter_list, - STATE(4091), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4605), 1, - sym__scope_resolution, - STATE(4765), 1, - sym__function_declarator_seq, - STATE(4929), 1, - sym__abstract_declarator, - STATE(4939), 1, - sym__declarator, - STATE(6104), 1, - sym_ms_based_modifier, - ACTIONS(2722), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(3059), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(3101), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(2720), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(6159), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(4764), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(2724), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(4918), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [12729] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4379), 1, - sym_identifier, - ACTIONS(4383), 1, - sym_primitive_type, - STATE(2063), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(4381), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(4052), 19, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - ACTIONS(4054), 30, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -237319,91 +309659,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, + anon_sym_DASH_GT, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [12801] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1617), 1, - anon_sym_LBRACE, - ACTIONS(4385), 1, - anon_sym_LPAREN2, - ACTIONS(4387), 1, - anon_sym_LBRACK, - ACTIONS(4389), 1, - sym_auto, - ACTIONS(4391), 1, - anon_sym_decltype, - STATE(2664), 1, - sym_decltype_auto, - STATE(2685), 1, - sym_new_declarator, - STATE(2939), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(4185), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4183), 27, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [12881] = 3, + [9410] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2764), 6, + ACTIONS(4970), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2762), 50, + ACTIONS(4968), 55, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -237411,6 +309681,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, sym_preproc_directive, anon_sym_AMP, anon_sym_typedef, @@ -237424,11 +309696,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -237454,17 +309729,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [12945] = 3, + [9479] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2780), 6, + ACTIONS(3411), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2778), 50, + ACTIONS(3409), 55, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -237472,6 +309747,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, sym_preproc_directive, anon_sym_AMP, anon_sym_typedef, @@ -237485,11 +309762,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -237515,78 +309795,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [13009] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4395), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4393), 38, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [13073] = 3, + [9548] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2812), 6, + ACTIONS(4974), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2810), 50, + ACTIONS(4972), 55, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -237594,6 +309813,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, sym_preproc_directive, anon_sym_AMP, anon_sym_typedef, @@ -237607,11 +309828,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -237637,17 +309861,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [13137] = 3, + [9617] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2676), 6, + ACTIONS(4959), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2674), 50, + ACTIONS(4957), 55, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -237655,6 +309879,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, sym_preproc_directive, anon_sym_AMP, anon_sym_typedef, @@ -237668,11 +309894,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -237698,104 +309927,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [13201] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(39), 1, - anon_sym___attribute__, - ACTIONS(45), 1, - anon_sym___declspec, - ACTIONS(65), 1, - anon_sym_enum, - ACTIONS(67), 1, - anon_sym_class, - ACTIONS(69), 1, - anon_sym_struct, - ACTIONS(71), 1, - anon_sym_union, - ACTIONS(107), 1, - sym_auto, - ACTIONS(109), 1, - anon_sym_decltype, - ACTIONS(111), 1, - anon_sym_virtual, - ACTIONS(115), 1, - anon_sym_typename, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1413), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2922), 1, - sym_identifier, - ACTIONS(2928), 1, - anon_sym_COLON_COLON, - ACTIONS(2932), 1, - sym_primitive_type, - STATE(3156), 1, - sym__type_specifier, - STATE(3171), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3259), 1, - sym_qualified_type_identifier, - STATE(3279), 1, - sym_decltype_auto, - STATE(4046), 1, - sym__declaration_specifiers, - STATE(5006), 1, - sym__scope_resolution, - STATE(6159), 1, - sym_dependent_type_identifier, - STATE(3198), 2, - sym_decltype, - sym_template_type, - ACTIONS(61), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(55), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - STATE(3232), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(59), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(2179), 8, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual, - aux_sym__declaration_specifiers_repeat1, - [13317] = 3, + [9686] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4399), 6, + ACTIONS(3334), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(4397), 50, + ACTIONS(3332), 55, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -237803,6 +309945,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, sym_preproc_directive, anon_sym_AMP, anon_sym_typedef, @@ -237816,11 +309960,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -237846,73 +309993,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [13381] = 3, + [9755] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2680), 6, + ACTIONS(1947), 1, + anon_sym_LBRACE, + ACTIONS(4978), 1, anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2678), 50, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, - anon_sym_AMP, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + ACTIONS(4982), 1, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, + ACTIONS(4984), 1, sym_auto, + ACTIONS(4986), 1, anon_sym_decltype, - anon_sym_virtual, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [13445] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4229), 1, - anon_sym_COLON_COLON, - ACTIONS(4227), 21, + STATE(2727), 1, + sym_decltype_auto, + STATE(2786), 1, + sym_new_declarator, + STATE(2987), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(4980), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -237922,28 +310023,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_COLON, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4225), 34, + ACTIONS(4976), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -237951,6 +310052,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -237964,29 +310066,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - [13511] = 3, + [9839] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2632), 6, + ACTIONS(4988), 1, + anon_sym_catch, + STATE(2372), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + ACTIONS(2723), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2630), 50, + anon_sym_RBRACE, + ACTIONS(2721), 50, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, sym_preproc_directive, anon_sym_AMP, anon_sym_typedef, @@ -238000,72 +310100,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [13575] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4403), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(4401), 50, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, - anon_sym_AMP, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -238091,24 +310133,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [13639] = 3, + [9911] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4407), 6, + ACTIONS(4990), 1, + anon_sym_catch, + STATE(2360), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + ACTIONS(2711), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(4405), 50, + ACTIONS(2709), 51, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, sym_preproc_directive, anon_sym_AMP, anon_sym_typedef, @@ -238122,11 +310167,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -238152,17 +310200,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [13703] = 6, + [9983] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1537), 1, + ACTIONS(4878), 1, + anon_sym_COLON, + ACTIONS(4992), 1, anon_sym_LBRACE, - ACTIONS(4166), 1, - anon_sym_LPAREN2, - STATE(2501), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(4411), 18, + STATE(2920), 1, + sym_field_declaration_list, + STATE(6121), 1, + sym_virtual_specifier, + STATE(6844), 1, + sym_base_class_clause, + ACTIONS(4880), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4939), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -238181,20 +310235,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4409), 34, + anon_sym_DASH_GT, + ACTIONS(4937), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -238215,281 +310267,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [13773] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2632), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2630), 50, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, - anon_sym_AMP, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [13837] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4407), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(4405), 50, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, - anon_sym_AMP, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_virtual, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [13901] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [10063] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2712), 6, + ACTIONS(1947), 1, + anon_sym_LBRACE, + ACTIONS(4978), 1, anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2710), 50, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, - anon_sym_AMP, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + ACTIONS(4982), 1, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [13965] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(39), 1, - anon_sym___attribute__, - ACTIONS(45), 1, - anon_sym___declspec, - ACTIONS(65), 1, - anon_sym_enum, - ACTIONS(67), 1, - anon_sym_class, - ACTIONS(69), 1, - anon_sym_struct, - ACTIONS(71), 1, - anon_sym_union, - ACTIONS(107), 1, + ACTIONS(4984), 1, sym_auto, - ACTIONS(109), 1, + ACTIONS(4986), 1, anon_sym_decltype, - ACTIONS(111), 1, - anon_sym_virtual, - ACTIONS(115), 1, - anon_sym_typename, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1413), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2922), 1, - sym_identifier, - ACTIONS(2928), 1, - anon_sym_COLON_COLON, - ACTIONS(2932), 1, - sym_primitive_type, - STATE(3156), 1, - sym__type_specifier, - STATE(3171), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3259), 1, - sym_qualified_type_identifier, - STATE(3279), 1, + STATE(2722), 1, + sym_new_declarator, + STATE(2727), 1, sym_decltype_auto, - STATE(4016), 1, - sym__declaration_specifiers, - STATE(5006), 1, - sym__scope_resolution, - STATE(6159), 1, - sym_dependent_type_identifier, - STATE(3198), 2, - sym_decltype, - sym_template_type, - ACTIONS(61), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(55), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - STATE(3232), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(59), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(2179), 8, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual, - aux_sym__declaration_specifiers_repeat1, - [14081] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4415), 18, + STATE(3020), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(4996), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -238508,20 +310310,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4413), 38, + ACTIONS(4994), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_SEMI, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, @@ -238545,140 +310344,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [14145] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4419), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(4417), 50, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, - anon_sym_AMP, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [14209] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2550), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2548), 50, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, - anon_sym_AMP, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [14273] = 6, + [10147] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3814), 1, - anon_sym_COLON_COLON, - ACTIONS(4421), 1, - anon_sym_LT, - STATE(2000), 1, - sym_template_argument_list, - ACTIONS(4196), 16, + ACTIONS(4773), 27, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -238688,24 +310357,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_COLON, + anon_sym_GT_GT_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3819), 37, + sym_literal_suffix, + ACTIONS(4771), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -238714,29 +310391,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [14343] = 3, + anon_sym_DASH_GT, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_GT2, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [10215] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4425), 18, + ACTIONS(4878), 1, + anon_sym_COLON, + ACTIONS(4992), 1, + anon_sym_LBRACE, + STATE(2874), 1, + sym_field_declaration_list, + STATE(6176), 1, + sym_virtual_specifier, + STATE(6815), 1, + sym_base_class_clause, + ACTIONS(4880), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4874), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -238755,7 +310444,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4423), 38, + anon_sym_DASH_GT, + ACTIONS(4872), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -238765,12 +310455,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -238791,13 +310476,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - [14407] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [10295] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(4429), 18, + ACTIONS(1947), 1, + anon_sym_LBRACE, + ACTIONS(4978), 1, + anon_sym_LPAREN2, + ACTIONS(4982), 1, + anon_sym_LBRACK, + ACTIONS(4984), 1, + sym_auto, + ACTIONS(4986), 1, + anon_sym_decltype, + STATE(2727), 1, + sym_decltype_auto, + STATE(2736), 1, + sym_new_declarator, + STATE(3006), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5000), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -238816,20 +310519,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4427), 38, + ACTIONS(4998), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_SEMI, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, @@ -238853,12 +310553,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - sym_auto, + [10379] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(45), 1, + anon_sym___based, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1931), 1, + anon_sym_operator, + ACTIONS(1973), 1, anon_sym_decltype, - [14471] = 3, + ACTIONS(2562), 1, + anon_sym_TILDE, + ACTIONS(4014), 1, + anon_sym_LPAREN2, + ACTIONS(5002), 1, + sym_identifier, + ACTIONS(5006), 1, + anon_sym_STAR, + ACTIONS(5008), 1, + anon_sym_AMP_AMP, + ACTIONS(5010), 1, + anon_sym_AMP, + ACTIONS(5012), 1, + anon_sym_COLON_COLON, + ACTIONS(5014), 1, + anon_sym_LBRACK, + STATE(3900), 1, + sym_parameter_list, + STATE(4712), 1, + sym_ms_unaligned_ptr_modifier, + STATE(5316), 1, + sym__scope_resolution, + STATE(5445), 1, + sym__declarator, + STATE(5457), 1, + sym__function_declarator_seq, + STATE(5655), 1, + sym__abstract_declarator, + STATE(7713), 1, + sym_ms_based_modifier, + ACTIONS(2869), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(5004), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(3073), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(3365), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(2867), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(7638), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(5452), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(2871), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + STATE(5640), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [10499] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4433), 18, + ACTIONS(4777), 27, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -238868,31 +310657,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(4431), 38, + sym_literal_suffix, + ACTIONS(4775), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -238900,26 +310691,166 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_GT2, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [10567] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4988), 1, + anon_sym_catch, + STATE(2372), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + ACTIONS(2859), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(2857), 50, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [10639] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4766), 27, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, + anon_sym_DOT, + sym_literal_suffix, + ACTIONS(4764), 33, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [14535] = 3, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_GT2, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [10707] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4437), 18, + ACTIONS(4476), 1, + anon_sym_COLON_COLON, + ACTIONS(5016), 1, + anon_sym_LT, + STATE(2425), 1, + sym_template_argument_list, + ACTIONS(4498), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -238930,15 +310861,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_COLON, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4435), 38, + ACTIONS(4503), 39, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -238953,7 +310884,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -238977,24 +310907,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - [14599] = 3, + anon_sym_final, + anon_sym_override, + [10781] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4441), 6, + ACTIONS(5019), 1, + anon_sym_catch, + STATE(2360), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + ACTIONS(2686), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(4439), 50, + ACTIONS(2684), 51, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, sym_preproc_directive, anon_sym_AMP, anon_sym_typedef, @@ -239008,11 +310943,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -239038,10 +310976,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [14663] = 3, + [10853] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4445), 18, + ACTIONS(4878), 1, + anon_sym_COLON, + ACTIONS(4992), 1, + anon_sym_LBRACE, + STATE(2884), 1, + sym_field_declaration_list, + STATE(6155), 1, + sym_virtual_specifier, + STATE(6823), 1, + sym_base_class_clause, + ACTIONS(4880), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4892), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -239060,7 +311011,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4443), 38, + anon_sym_DASH_GT, + ACTIONS(4890), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -239070,10 +311022,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [10933] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1947), 1, anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(4978), 1, + anon_sym_LPAREN2, + ACTIONS(4982), 1, anon_sym_LBRACK, + ACTIONS(4984), 1, + sym_auto, + ACTIONS(4986), 1, + anon_sym_decltype, + STATE(2727), 1, + sym_decltype_auto, + STATE(2805), 1, + sym_new_declarator, + STATE(2993), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5024), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(5022), 33, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, @@ -239097,19 +311120,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [14727] = 3, + [11017] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2704), 6, + ACTIONS(2902), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2702), 50, + ACTIONS(2900), 54, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -239130,11 +311151,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -239160,10 +311184,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [14791] = 3, + anon_sym_catch, + [11085] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4449), 18, + ACTIONS(4476), 1, + anon_sym_COLON_COLON, + ACTIONS(5028), 1, + anon_sym_LT, + STATE(2425), 1, + sym_template_argument_list, + ACTIONS(5026), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -239174,15 +311205,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_COLON, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4447), 38, + ACTIONS(4481), 39, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -239197,7 +311228,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -239221,17 +311251,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - [14855] = 3, + anon_sym_final, + anon_sym_override, + [11159] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2836), 6, + ACTIONS(2534), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2834), 50, + ACTIONS(2536), 54, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -239252,11 +311284,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -239282,111 +311317,158 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [14919] = 29, + anon_sym_catch, + [11227] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, - anon_sym___attribute__, - ACTIONS(45), 1, - anon_sym___declspec, - ACTIONS(65), 1, - anon_sym_enum, - ACTIONS(67), 1, - anon_sym_class, - ACTIONS(69), 1, - anon_sym_struct, - ACTIONS(71), 1, - anon_sym_union, - ACTIONS(107), 1, - sym_auto, - ACTIONS(109), 1, - anon_sym_decltype, - ACTIONS(111), 1, - anon_sym_virtual, - ACTIONS(115), 1, - anon_sym_typename, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1413), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2922), 1, - sym_identifier, - ACTIONS(2928), 1, + ACTIONS(4783), 27, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_literal_suffix, + ACTIONS(4781), 33, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_GT2, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [11295] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2540), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, anon_sym_COLON_COLON, - ACTIONS(2932), 1, - sym_primitive_type, - STATE(3156), 1, - sym__type_specifier, - STATE(3171), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3259), 1, - sym_qualified_type_identifier, - STATE(3279), 1, - sym_decltype_auto, - STATE(4044), 1, - sym__declaration_specifiers, - STATE(5006), 1, - sym__scope_resolution, - STATE(6159), 1, - sym_dependent_type_identifier, - STATE(3198), 2, - sym_decltype, - sym_template_type, - ACTIONS(61), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(55), 5, + anon_sym_LBRACK_LBRACK, + ACTIONS(2542), 54, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, anon_sym_static, anon_sym_register, anon_sym_inline, anon_sym_thread_local, - STATE(3232), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(59), 8, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - STATE(2179), 8, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual, - aux_sym__declaration_specifiers_repeat1, - [15035] = 3, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + anon_sym_catch, + [11363] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2840), 6, + ACTIONS(4988), 1, + anon_sym_catch, + STATE(2372), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + ACTIONS(2711), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2838), 50, + anon_sym_RBRACE, + ACTIONS(2709), 50, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, sym_preproc_directive, anon_sym_AMP, anon_sym_typedef, @@ -239400,11 +311482,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -239430,24 +311515,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [15099] = 3, + [11435] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2748), 6, + ACTIONS(4990), 1, + anon_sym_catch, + STATE(2360), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + ACTIONS(2723), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2746), 50, + ACTIONS(2721), 51, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, sym_preproc_directive, anon_sym_AMP, anon_sym_typedef, @@ -239461,11 +311549,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -239491,24 +311582,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [15163] = 3, + [11507] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2886), 6, + ACTIONS(4990), 1, + anon_sym_catch, + STATE(2360), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + ACTIONS(2859), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2884), 50, + ACTIONS(2857), 51, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, sym_preproc_directive, anon_sym_AMP, anon_sym_typedef, @@ -239522,11 +311616,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -239552,104 +311649,175 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [15227] = 29, + [11579] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, - anon_sym___attribute__, ACTIONS(45), 1, - anon_sym___declspec, - ACTIONS(65), 1, - anon_sym_enum, - ACTIONS(67), 1, - anon_sym_class, - ACTIONS(69), 1, - anon_sym_struct, - ACTIONS(71), 1, - anon_sym_union, - ACTIONS(107), 1, - sym_auto, - ACTIONS(109), 1, - anon_sym_decltype, - ACTIONS(111), 1, - anon_sym_virtual, - ACTIONS(115), 1, - anon_sym_typename, - ACTIONS(996), 1, + anon_sym___based, + ACTIONS(1329), 1, anon_sym_template, - ACTIONS(1413), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2922), 1, + ACTIONS(1931), 1, + anon_sym_operator, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(2562), 1, + anon_sym_TILDE, + ACTIONS(4014), 1, + anon_sym_LPAREN2, + ACTIONS(5002), 1, sym_identifier, - ACTIONS(2928), 1, + ACTIONS(5012), 1, anon_sym_COLON_COLON, - ACTIONS(2932), 1, - sym_primitive_type, - STATE(3156), 1, - sym__type_specifier, - STATE(3171), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3259), 1, - sym_qualified_type_identifier, - STATE(3279), 1, - sym_decltype_auto, - STATE(4007), 1, - sym__declaration_specifiers, - STATE(5006), 1, + ACTIONS(5014), 1, + anon_sym_LBRACK, + ACTIONS(5030), 1, + anon_sym_STAR, + ACTIONS(5032), 1, + anon_sym_AMP_AMP, + ACTIONS(5034), 1, + anon_sym_AMP, + STATE(3964), 1, + sym_parameter_list, + STATE(4712), 1, + sym_ms_unaligned_ptr_modifier, + STATE(5316), 1, sym__scope_resolution, - STATE(6159), 1, - sym_dependent_type_identifier, - STATE(3198), 2, + STATE(5445), 1, + sym__declarator, + STATE(5457), 1, + sym__function_declarator_seq, + STATE(5677), 1, + sym__abstract_declarator, + STATE(7713), 1, + sym_ms_based_modifier, + ACTIONS(2869), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(5004), 2, + anon_sym_COMMA, + anon_sym_GT2, + STATE(3071), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(3365), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(2867), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(7638), 3, sym_decltype, sym_template_type, - ACTIONS(61), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(55), 5, + sym_dependent_type_identifier, + STATE(5452), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(2871), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + STATE(5640), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [11699] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5036), 1, + anon_sym_catch, + STATE(2372), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + ACTIONS(2686), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(2684), 50, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, anon_sym_static, anon_sym_register, anon_sym_inline, anon_sym_thread_local, - STATE(3232), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(59), 8, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - STATE(2179), 8, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual, - aux_sym__declaration_specifiers_repeat1, - [15343] = 3, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [11771] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2736), 6, + ACTIONS(3431), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2734), 50, + ACTIONS(3429), 53, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -239670,11 +311838,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -239700,17 +311871,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [15407] = 3, + [11838] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2740), 6, + ACTIONS(4951), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2738), 50, + ACTIONS(4949), 53, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -239731,11 +311902,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -239761,17 +311935,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [15471] = 3, + [11905] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2890), 6, + ACTIONS(3280), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2888), 50, + ACTIONS(3278), 53, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -239792,11 +311966,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -239822,18 +311999,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [15535] = 7, + [11972] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3814), 1, - anon_sym_COLON_COLON, - ACTIONS(3819), 1, - anon_sym_LBRACE, - ACTIONS(4451), 1, - anon_sym_LT, - STATE(2201), 1, - sym_template_argument_list, - ACTIONS(3803), 18, + ACTIONS(4766), 23, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -239844,15 +312013,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_COLON, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(3795), 34, + anon_sym_DASH_GT, + sym_literal_suffix, + ACTIONS(4764), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -239862,10 +312036,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -239877,240 +312048,224 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [15607] = 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [12039] = 3, ACTIONS(3), 1, sym_comment, - STATE(2063), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(4454), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(4082), 19, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(3152), 6, anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - ACTIONS(4080), 32, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(3150), 53, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, sym_primitive_type, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [15675] = 5, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [12106] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3814), 1, - anon_sym_COLON_COLON, - STATE(3135), 1, - sym_template_argument_list, - ACTIONS(4288), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4286), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3148), 6, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [15743] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(39), 1, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(3146), 53, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, anon_sym___attribute__, - ACTIONS(45), 1, anon_sym___declspec, - ACTIONS(65), 1, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, anon_sym_enum, - ACTIONS(67), 1, anon_sym_class, - ACTIONS(69), 1, anon_sym_struct, - ACTIONS(71), 1, anon_sym_union, - ACTIONS(107), 1, + sym_identifier, sym_auto, - ACTIONS(109), 1, anon_sym_decltype, - ACTIONS(111), 1, anon_sym_virtual, - ACTIONS(115), 1, + anon_sym_explicit, anon_sym_typename, - ACTIONS(996), 1, anon_sym_template, - ACTIONS(1413), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2922), 1, - sym_identifier, - ACTIONS(2928), 1, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [12173] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3034), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, anon_sym_COLON_COLON, - ACTIONS(2932), 1, - sym_primitive_type, - STATE(3156), 1, - sym__type_specifier, - STATE(3171), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3259), 1, - sym_qualified_type_identifier, - STATE(3279), 1, - sym_decltype_auto, - STATE(4047), 1, - sym__declaration_specifiers, - STATE(5006), 1, - sym__scope_resolution, - STATE(6159), 1, - sym_dependent_type_identifier, - STATE(3198), 2, - sym_decltype, - sym_template_type, - ACTIONS(61), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(55), 5, + anon_sym_LBRACK_LBRACK, + ACTIONS(3032), 53, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, anon_sym_static, anon_sym_register, anon_sym_inline, anon_sym_thread_local, - STATE(3232), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(59), 8, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - STATE(2179), 8, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual, - aux_sym__declaration_specifiers_repeat1, - [15859] = 3, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [12240] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2668), 6, + ACTIONS(3127), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2666), 50, + ACTIONS(3125), 53, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -240131,11 +312286,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -240161,207 +312319,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [15923] = 3, + [12307] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(4459), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4457), 38, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [15987] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4324), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4322), 38, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, + ACTIONS(37), 1, + anon_sym___attribute__, + ACTIONS(43), 1, + anon_sym___declspec, + ACTIONS(63), 1, + anon_sym_enum, + ACTIONS(65), 1, + anon_sym_class, + ACTIONS(67), 1, + anon_sym_struct, + ACTIONS(69), 1, + anon_sym_union, + ACTIONS(113), 1, sym_auto, + ACTIONS(115), 1, anon_sym_decltype, - [16051] = 3, + ACTIONS(117), 1, + anon_sym_virtual, + ACTIONS(121), 1, + anon_sym_typename, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1813), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3657), 1, + sym_identifier, + ACTIONS(3663), 1, + anon_sym_COLON_COLON, + ACTIONS(3667), 1, + sym_primitive_type, + STATE(3633), 1, + sym__type_specifier, + STATE(3657), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3694), 1, + sym_qualified_type_identifier, + STATE(3717), 1, + sym_decltype_auto, + STATE(4690), 1, + sym__declaration_specifiers, + STATE(5779), 1, + sym__scope_resolution, + STATE(7638), 1, + sym_dependent_type_identifier, + STATE(3680), 2, + sym_decltype, + sym_template_type, + ACTIONS(59), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(53), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + STATE(3723), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + STATE(2514), 8, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(57), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [12426] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4463), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4461), 38, - anon_sym_DOT_DOT_DOT, + ACTIONS(2960), 2, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [16115] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2788), 6, + ACTIONS(2540), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2786), 50, + ACTIONS(2542), 51, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, sym_preproc_directive, anon_sym_AMP, anon_sym_typedef, @@ -240375,11 +312441,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -240405,78 +312474,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [16179] = 3, + [12495] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(2744), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2742), 50, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, - anon_sym_AMP, - anon_sym_typedef, - anon_sym_extern, + ACTIONS(37), 1, anon_sym___attribute__, + ACTIONS(43), 1, anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, + ACTIONS(63), 1, + anon_sym_enum, + ACTIONS(65), 1, + anon_sym_class, + ACTIONS(67), 1, + anon_sym_struct, + ACTIONS(69), 1, + anon_sym_union, + ACTIONS(113), 1, + sym_auto, + ACTIONS(115), 1, + anon_sym_decltype, + ACTIONS(117), 1, + anon_sym_virtual, + ACTIONS(121), 1, + anon_sym_typename, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1813), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3657), 1, + sym_identifier, + ACTIONS(3663), 1, + anon_sym_COLON_COLON, + ACTIONS(3667), 1, + sym_primitive_type, + STATE(3633), 1, + sym__type_specifier, + STATE(3657), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3694), 1, + sym_qualified_type_identifier, + STATE(3717), 1, + sym_decltype_auto, + STATE(4678), 1, + sym__declaration_specifiers, + STATE(5779), 1, + sym__scope_resolution, + STATE(7638), 1, + sym_dependent_type_identifier, + STATE(3680), 2, + sym_decltype, + sym_template_type, + ACTIONS(59), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(53), 5, + anon_sym_extern, anon_sym_static, anon_sym_register, anon_sym_inline, anon_sym_thread_local, + STATE(3723), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + STATE(2514), 8, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(57), 11, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [16243] = 3, + [12614] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4467), 6, + ACTIONS(3111), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(4465), 50, + ACTIONS(3109), 53, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -240497,11 +312595,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -240527,17 +312628,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [16307] = 3, + [12681] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4471), 6, + ACTIONS(2910), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(4469), 50, + ACTIONS(2908), 53, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -240558,11 +312659,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -240588,86 +312692,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [16371] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1617), 1, - anon_sym_LBRACE, - ACTIONS(4385), 1, - anon_sym_LPAREN2, - ACTIONS(4387), 1, - anon_sym_LBRACK, - ACTIONS(4389), 1, - sym_auto, - ACTIONS(4391), 1, - anon_sym_decltype, - STATE(2632), 1, - sym_new_declarator, - STATE(2664), 1, - sym_decltype_auto, - STATE(3025), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(4168), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4164), 27, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [16451] = 3, + [12748] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4475), 6, + ACTIONS(3115), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(4473), 50, + ACTIONS(3113), 53, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -240688,11 +312723,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -240718,68 +312756,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [16515] = 29, + [12815] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, + ACTIONS(37), 1, anon_sym___attribute__, - ACTIONS(45), 1, + ACTIONS(43), 1, anon_sym___declspec, - ACTIONS(65), 1, + ACTIONS(63), 1, anon_sym_enum, - ACTIONS(67), 1, + ACTIONS(65), 1, anon_sym_class, - ACTIONS(69), 1, + ACTIONS(67), 1, anon_sym_struct, - ACTIONS(71), 1, + ACTIONS(69), 1, anon_sym_union, - ACTIONS(107), 1, + ACTIONS(113), 1, sym_auto, - ACTIONS(109), 1, + ACTIONS(115), 1, anon_sym_decltype, - ACTIONS(111), 1, + ACTIONS(117), 1, anon_sym_virtual, - ACTIONS(115), 1, + ACTIONS(121), 1, anon_sym_typename, - ACTIONS(996), 1, + ACTIONS(1329), 1, anon_sym_template, - ACTIONS(1413), 1, + ACTIONS(1813), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2922), 1, + ACTIONS(3657), 1, sym_identifier, - ACTIONS(2928), 1, + ACTIONS(3663), 1, anon_sym_COLON_COLON, - ACTIONS(2932), 1, + ACTIONS(3667), 1, sym_primitive_type, - STATE(3156), 1, + STATE(3633), 1, sym__type_specifier, - STATE(3171), 1, + STATE(3657), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3259), 1, + STATE(3694), 1, sym_qualified_type_identifier, - STATE(3279), 1, + STATE(3717), 1, sym_decltype_auto, - STATE(4019), 1, + STATE(4673), 1, sym__declaration_specifiers, - STATE(5006), 1, + STATE(5779), 1, sym__scope_resolution, - STATE(6159), 1, + STATE(7638), 1, sym_dependent_type_identifier, - STATE(3198), 2, + STATE(3680), 2, sym_decltype, sym_template_type, - ACTIONS(61), 4, + ACTIONS(59), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(55), 5, + ACTIONS(53), 5, anon_sym_extern, anon_sym_static, anon_sym_register, anon_sym_inline, anon_sym_thread_local, - STATE(3232), 7, + STATE(3723), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -240787,16 +312825,7 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - ACTIONS(59), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(2179), 8, + STATE(2514), 8, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -240805,17 +312834,29 @@ static const uint16_t ts_small_parse_table[] = { sym_type_qualifier, sym_virtual, aux_sym__declaration_specifiers_repeat1, - [16631] = 3, + ACTIONS(57), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [12934] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4479), 6, + ACTIONS(3386), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(4477), 50, + ACTIONS(3384), 53, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -240836,11 +312877,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -240866,17 +312910,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [16695] = 3, + [13001] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4479), 6, + ACTIONS(3046), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(4477), 50, + ACTIONS(3044), 53, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -240897,11 +312941,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -240927,17 +312974,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [16759] = 3, + [13068] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2516), 6, + ACTIONS(3042), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2514), 50, + ACTIONS(3040), 53, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -240958,11 +313005,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -240988,17 +313038,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [16823] = 3, + [13135] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4483), 6, + ACTIONS(3038), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(4481), 50, + ACTIONS(3036), 53, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -241019,11 +313069,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -241049,17 +313102,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [16887] = 3, + [13202] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4487), 6, + ACTIONS(3236), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(4485), 50, + ACTIONS(3234), 53, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -241080,11 +313133,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -241110,17 +313166,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [16951] = 3, + [13269] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4491), 6, + ACTIONS(2946), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(4489), 50, + ACTIONS(2944), 53, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -241141,11 +313197,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -241171,17 +313230,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [17015] = 3, + [13336] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5043), 1, + anon_sym_COLON_COLON, + ACTIONS(5041), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(5039), 39, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + [13405] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2512), 6, + ACTIONS(3268), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2510), 50, + ACTIONS(3266), 53, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -241202,11 +313326,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -241232,60 +313359,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [17079] = 3, + [13472] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 18, + ACTIONS(4878), 1, + anon_sym_COLON, + ACTIONS(5045), 1, + anon_sym_LBRACE, + STATE(2765), 1, + sym_field_declaration_list, + STATE(6113), 1, + sym_virtual_specifier, + STATE(6733), 1, + sym_base_class_clause, + ACTIONS(4880), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4939), 10, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, + anon_sym_const, anon_sym_DOT, - ACTIONS(4493), 38, + ACTIONS(4937), 42, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SEMI, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_COLON, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, @@ -241293,10 +313428,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - [17143] = 3, + anon_sym_requires, + [13551] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4499), 18, + ACTIONS(4476), 1, + anon_sym_COLON_COLON, + ACTIONS(5047), 1, + anon_sym_LT, + STATE(2501), 1, + sym_template_argument_list, + ACTIONS(4498), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -241307,15 +313449,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_COLON, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4497), 38, + anon_sym_DASH_GT, + ACTIONS(4503), 37, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -241325,12 +313468,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -241351,97 +313490,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [17207] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1617), 1, - anon_sym_LBRACE, - ACTIONS(4385), 1, - anon_sym_LPAREN2, - ACTIONS(4387), 1, - anon_sym_LBRACK, - ACTIONS(4389), 1, sym_auto, - ACTIONS(4391), 1, anon_sym_decltype, - STATE(2664), 1, - sym_decltype_auto, - STATE(2692), 1, - sym_new_declarator, - STATE(2951), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(4178), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4176), 27, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [17287] = 4, + anon_sym_final, + anon_sym_override, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [13624] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2652), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(1735), 6, + ACTIONS(3228), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(1737), 48, + ACTIONS(3226), 53, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, sym_preproc_directive, anon_sym_AMP, anon_sym_typedef, @@ -241455,11 +313527,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -241485,17 +313560,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [17353] = 3, + [13691] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2502), 6, + ACTIONS(3288), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2500), 50, + ACTIONS(3286), 53, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -241516,11 +313591,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -241546,78 +313624,260 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [17417] = 3, + [13758] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4503), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, + ACTIONS(5052), 19, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(5050), 40, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(4501), 50, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, - anon_sym_AMP, - anon_sym_typedef, - anon_sym_extern, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + [13825] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(37), 1, anon_sym___attribute__, + ACTIONS(43), 1, anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, + ACTIONS(63), 1, + anon_sym_enum, + ACTIONS(65), 1, + anon_sym_class, + ACTIONS(67), 1, + anon_sym_struct, + ACTIONS(69), 1, + anon_sym_union, + ACTIONS(113), 1, + sym_auto, + ACTIONS(115), 1, + anon_sym_decltype, + ACTIONS(117), 1, + anon_sym_virtual, + ACTIONS(121), 1, + anon_sym_typename, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1813), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3657), 1, + sym_identifier, + ACTIONS(3663), 1, + anon_sym_COLON_COLON, + ACTIONS(3667), 1, + sym_primitive_type, + STATE(3633), 1, + sym__type_specifier, + STATE(3657), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3694), 1, + sym_qualified_type_identifier, + STATE(3717), 1, + sym_decltype_auto, + STATE(4694), 1, + sym__declaration_specifiers, + STATE(5779), 1, + sym__scope_resolution, + STATE(7638), 1, + sym_dependent_type_identifier, + STATE(3680), 2, + sym_decltype, + sym_template_type, + ACTIONS(59), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(53), 5, + anon_sym_extern, anon_sym_static, anon_sym_register, anon_sym_inline, anon_sym_thread_local, + STATE(3723), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + STATE(2514), 8, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(57), 11, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, + [13944] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(37), 1, + anon_sym___attribute__, + ACTIONS(43), 1, + anon_sym___declspec, + ACTIONS(63), 1, anon_sym_enum, + ACTIONS(65), 1, anon_sym_class, + ACTIONS(67), 1, anon_sym_struct, + ACTIONS(69), 1, anon_sym_union, - sym_identifier, + ACTIONS(113), 1, sym_auto, + ACTIONS(115), 1, anon_sym_decltype, + ACTIONS(117), 1, anon_sym_virtual, - anon_sym_explicit, + ACTIONS(121), 1, anon_sym_typename, + ACTIONS(1329), 1, anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [17481] = 6, + ACTIONS(1813), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3657), 1, + sym_identifier, + ACTIONS(3663), 1, + anon_sym_COLON_COLON, + ACTIONS(3667), 1, + sym_primitive_type, + STATE(3633), 1, + sym__type_specifier, + STATE(3657), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3694), 1, + sym_qualified_type_identifier, + STATE(3717), 1, + sym_decltype_auto, + STATE(4680), 1, + sym__declaration_specifiers, + STATE(5779), 1, + sym__scope_resolution, + STATE(7638), 1, + sym_dependent_type_identifier, + STATE(3680), 2, + sym_decltype, + sym_template_type, + ACTIONS(59), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(53), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + STATE(3723), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + STATE(2514), 8, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(57), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [14063] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1537), 1, - anon_sym_LBRACE, - ACTIONS(4166), 1, - anon_sym_LPAREN2, - STATE(2545), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(4507), 18, + ACTIONS(4476), 1, + anon_sym_COLON_COLON, + ACTIONS(5054), 1, + anon_sym_LT, + STATE(2501), 1, + sym_template_argument_list, + ACTIONS(5026), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -241628,28 +313888,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_COLON, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4505), 34, + anon_sym_DASH_GT, + ACTIONS(4481), 37, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -241670,18 +313929,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [14136] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(2404), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(5056), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(4787), 19, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [17551] = 3, + anon_sym_GT2, + ACTIONS(4785), 35, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [14207] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2502), 6, + ACTIONS(4947), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2500), 50, + ACTIONS(4945), 53, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -241702,11 +314032,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -241732,17 +314065,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [17615] = 3, + [14274] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2894), 6, + ACTIONS(3182), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2892), 50, + ACTIONS(3180), 53, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -241763,11 +314096,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -241793,17 +314129,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [17679] = 3, + [14341] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2688), 6, + ACTIONS(4947), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2686), 50, + ACTIONS(4945), 53, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -241824,11 +314160,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -241854,17 +314193,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [17743] = 3, + [14408] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4511), 6, + ACTIONS(3457), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(4509), 50, + ACTIONS(3455), 53, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -241885,11 +314224,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -241915,17 +314257,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [17807] = 3, + [14475] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4515), 6, + ACTIONS(3026), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(4513), 50, + ACTIONS(3024), 53, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -241946,11 +314288,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -241976,17 +314321,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [17871] = 6, + [14542] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1537), 1, - anon_sym_LBRACE, - ACTIONS(4166), 1, - anon_sym_LPAREN2, - STATE(2491), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(4519), 18, + ACTIONS(4783), 23, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -242003,22 +314341,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(4517), 34, + anon_sym_DASH_GT, + sym_literal_suffix, + ACTIONS(4781), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -242030,27 +314370,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [17941] = 3, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [14609] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4523), 6, + ACTIONS(3411), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(4521), 50, + ACTIONS(3409), 53, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -242071,11 +314416,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -242101,17 +314449,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [18005] = 3, + [14676] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(2412), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(5059), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(4787), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + ACTIONS(4785), 30, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + sym_primitive_type, + anon_sym_GT_GT_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + sym_auto, + anon_sym_decltype, + [14747] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4523), 6, + ACTIONS(3401), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(4521), 50, + ACTIONS(3399), 53, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -242132,11 +314546,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -242162,71 +314579,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [18069] = 3, + [14814] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4527), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, + ACTIONS(5043), 1, anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(4525), 50, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, - anon_sym_AMP, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [18133] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4531), 18, + ACTIONS(5064), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -242241,11 +314599,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_COLON, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4529), 38, + ACTIONS(5062), 39, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -242260,7 +314619,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -242284,44 +314642,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - [18197] = 3, + anon_sym_final, + anon_sym_override, + [14883] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4535), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4533), 38, + ACTIONS(5066), 1, + sym_identifier, + ACTIONS(5070), 1, + sym_primitive_type, + STATE(2412), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(5068), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(4807), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -242329,100 +314675,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [18261] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4133), 1, - anon_sym_COLON, - ACTIONS(4359), 1, - anon_sym_LBRACE, - STATE(2477), 1, - sym_field_declaration_list, - STATE(5294), 1, - sym_virtual_specifier, - STATE(5954), 1, - sym_base_class_clause, - ACTIONS(4135), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(4145), 10, + anon_sym_GT2, + ACTIONS(4809), 28, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(4143), 39, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, + anon_sym_DOT, sym_auto, anon_sym_decltype, - anon_sym_requires, - [18337] = 3, + [14958] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2664), 6, + ACTIONS(3248), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2662), 50, + ACTIONS(3246), 53, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -242443,11 +314743,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -242473,17 +314776,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [18401] = 3, + [15025] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4515), 6, + ACTIONS(3264), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(4513), 50, + ACTIONS(3262), 53, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -242504,11 +314807,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -242534,65 +314840,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [18465] = 9, + [15092] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4133), 1, + ACTIONS(4523), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, anon_sym_COLON, - ACTIONS(4359), 1, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4525), 40, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_COLON_COLON, anon_sym_LBRACE, - STATE(2524), 1, - sym_field_declaration_list, - STATE(5330), 1, - sym_virtual_specifier, - STATE(5970), 1, - sym_base_class_clause, - ACTIONS(4135), 2, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, - ACTIONS(4160), 10, + [15159] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4535), 19, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_const, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4158), 39, + ACTIONS(4537), 40, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, @@ -242600,18 +314966,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_requires, - [18541] = 3, + anon_sym_final, + anon_sym_override, + [15226] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2914), 6, + ACTIONS(3318), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2912), 50, + ACTIONS(3316), 53, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -242632,11 +314999,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -242662,78 +315032,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [18605] = 3, + [15293] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4539), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4537), 38, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(4935), 6, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4933), 53, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, anon_sym_decltype, - [18669] = 3, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [15360] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4357), 6, + ACTIONS(4943), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(4355), 50, + ACTIONS(4941), 53, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -242754,11 +315127,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -242784,17 +315160,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [18733] = 3, + [15427] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2792), 6, + ACTIONS(4912), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2790), 50, + ACTIONS(4910), 53, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -242815,11 +315191,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -242845,17 +315224,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [18797] = 3, + [15494] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2728), 6, + ACTIONS(3026), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2726), 50, + ACTIONS(3024), 53, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -242876,11 +315255,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -242906,10 +315288,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [18861] = 3, + [15561] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4543), 18, + ACTIONS(4550), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -242924,11 +315306,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_COLON, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4541), 38, + ACTIONS(4555), 40, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -242939,11 +315322,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_SEMI, + anon_sym_COLON_COLON, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -242967,10 +315350,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - [18925] = 3, + anon_sym_final, + anon_sym_override, + [15628] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4547), 18, + ACTIONS(5043), 1, + anon_sym_COLON_COLON, + ACTIONS(5041), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -242985,11 +315372,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_COLON, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4545), 38, + ACTIONS(5039), 39, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -243004,7 +315392,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -243028,17 +315415,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - [18989] = 3, + anon_sym_final, + anon_sym_override, + [15697] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2476), 6, + ACTIONS(4896), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2474), 50, + ACTIONS(4894), 53, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -243059,11 +315448,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [15764] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4900), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4898), 53, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -243089,68 +315545,196 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [19053] = 29, + [15831] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, + ACTIONS(3344), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(3342), 53, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, anon_sym___attribute__, - ACTIONS(45), 1, anon_sym___declspec, - ACTIONS(65), 1, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [15898] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3119), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(3117), 53, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, anon_sym_enum, - ACTIONS(67), 1, anon_sym_class, - ACTIONS(69), 1, anon_sym_struct, - ACTIONS(71), 1, anon_sym_union, - ACTIONS(107), 1, + sym_identifier, sym_auto, - ACTIONS(109), 1, anon_sym_decltype, - ACTIONS(111), 1, anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [15965] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(37), 1, + anon_sym___attribute__, + ACTIONS(43), 1, + anon_sym___declspec, + ACTIONS(63), 1, + anon_sym_enum, + ACTIONS(65), 1, + anon_sym_class, + ACTIONS(67), 1, + anon_sym_struct, + ACTIONS(69), 1, + anon_sym_union, + ACTIONS(113), 1, + sym_auto, ACTIONS(115), 1, + anon_sym_decltype, + ACTIONS(117), 1, + anon_sym_virtual, + ACTIONS(121), 1, anon_sym_typename, - ACTIONS(996), 1, + ACTIONS(1329), 1, anon_sym_template, - ACTIONS(1413), 1, + ACTIONS(1813), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2922), 1, + ACTIONS(3657), 1, sym_identifier, - ACTIONS(2928), 1, + ACTIONS(3663), 1, anon_sym_COLON_COLON, - ACTIONS(2932), 1, + ACTIONS(3667), 1, sym_primitive_type, - STATE(3156), 1, + STATE(3633), 1, sym__type_specifier, - STATE(3171), 1, + STATE(3657), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3259), 1, + STATE(3694), 1, sym_qualified_type_identifier, - STATE(3279), 1, + STATE(3717), 1, sym_decltype_auto, - STATE(4030), 1, + STATE(4692), 1, sym__declaration_specifiers, - STATE(5006), 1, + STATE(5779), 1, sym__scope_resolution, - STATE(6159), 1, + STATE(7638), 1, sym_dependent_type_identifier, - STATE(3198), 2, + STATE(3680), 2, sym_decltype, sym_template_type, - ACTIONS(61), 4, + ACTIONS(59), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(55), 5, + ACTIONS(53), 5, anon_sym_extern, anon_sym_static, anon_sym_register, anon_sym_inline, anon_sym_thread_local, - STATE(3232), 7, + STATE(3723), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -243158,16 +315742,7 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - ACTIONS(59), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(2179), 8, + STATE(2514), 8, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -243176,447 +315751,247 @@ static const uint16_t ts_small_parse_table[] = { sym_type_qualifier, sym_virtual, aux_sym__declaration_specifiers_repeat1, - [19169] = 3, + ACTIONS(57), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [16084] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4551), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4549), 38, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3119), 6, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [19233] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4555), 18, - anon_sym_DASH, - anon_sym_PLUS, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4553), 38, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [19297] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4559), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(3117), 53, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4557), 38, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, anon_sym_decltype, - [19361] = 3, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [16151] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4563), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4561), 38, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(4904), 6, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [19425] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4567), 18, - anon_sym_DASH, - anon_sym_PLUS, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4565), 38, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [19489] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3814), 1, anon_sym_COLON_COLON, - ACTIONS(4249), 1, - anon_sym_LT, - STATE(1964), 1, - sym_template_argument_list, - ACTIONS(3793), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + anon_sym_LBRACK_LBRACK, + ACTIONS(4902), 53, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3801), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [19559] = 3, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [16218] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(4571), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4569), 38, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, + ACTIONS(37), 1, + anon_sym___attribute__, + ACTIONS(43), 1, + anon_sym___declspec, + ACTIONS(63), 1, + anon_sym_enum, + ACTIONS(65), 1, + anon_sym_class, + ACTIONS(67), 1, + anon_sym_struct, + ACTIONS(69), 1, + anon_sym_union, + ACTIONS(113), 1, sym_auto, + ACTIONS(115), 1, anon_sym_decltype, - [19623] = 3, + ACTIONS(117), 1, + anon_sym_virtual, + ACTIONS(121), 1, + anon_sym_typename, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1813), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3657), 1, + sym_identifier, + ACTIONS(3663), 1, + anon_sym_COLON_COLON, + ACTIONS(3667), 1, + sym_primitive_type, + STATE(3633), 1, + sym__type_specifier, + STATE(3657), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3694), 1, + sym_qualified_type_identifier, + STATE(3717), 1, + sym_decltype_auto, + STATE(4691), 1, + sym__declaration_specifiers, + STATE(5779), 1, + sym__scope_resolution, + STATE(7638), 1, + sym_dependent_type_identifier, + STATE(3680), 2, + sym_decltype, + sym_template_type, + ACTIONS(59), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(53), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + STATE(3723), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + STATE(2514), 8, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(57), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [16337] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2796), 6, + ACTIONS(3306), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2794), 50, + ACTIONS(3304), 53, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -243637,11 +316012,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -243667,17 +316045,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [19687] = 3, + [16404] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(37), 1, + anon_sym___attribute__, + ACTIONS(43), 1, + anon_sym___declspec, + ACTIONS(63), 1, + anon_sym_enum, + ACTIONS(65), 1, + anon_sym_class, + ACTIONS(67), 1, + anon_sym_struct, + ACTIONS(69), 1, + anon_sym_union, + ACTIONS(113), 1, + sym_auto, + ACTIONS(115), 1, + anon_sym_decltype, + ACTIONS(117), 1, + anon_sym_virtual, + ACTIONS(121), 1, + anon_sym_typename, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1813), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3657), 1, + sym_identifier, + ACTIONS(3663), 1, + anon_sym_COLON_COLON, + ACTIONS(3667), 1, + sym_primitive_type, + STATE(3633), 1, + sym__type_specifier, + STATE(3657), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3694), 1, + sym_qualified_type_identifier, + STATE(3717), 1, + sym_decltype_auto, + STATE(4698), 1, + sym__declaration_specifiers, + STATE(5779), 1, + sym__scope_resolution, + STATE(7638), 1, + sym_dependent_type_identifier, + STATE(3680), 2, + sym_decltype, + sym_template_type, + ACTIONS(59), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(53), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + STATE(3723), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + STATE(2514), 8, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(57), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [16523] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2832), 6, + ACTIONS(3370), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2830), 50, + ACTIONS(3368), 53, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -243698,11 +316166,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -243728,17 +316199,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [19751] = 3, + [16590] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2672), 6, + ACTIONS(3382), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2670), 50, + ACTIONS(3380), 53, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -243759,11 +316230,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -243789,68 +316263,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [19815] = 29, + [16657] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, + ACTIONS(37), 1, anon_sym___attribute__, - ACTIONS(45), 1, + ACTIONS(43), 1, anon_sym___declspec, - ACTIONS(65), 1, + ACTIONS(63), 1, anon_sym_enum, - ACTIONS(67), 1, + ACTIONS(65), 1, anon_sym_class, - ACTIONS(69), 1, + ACTIONS(67), 1, anon_sym_struct, - ACTIONS(71), 1, + ACTIONS(69), 1, anon_sym_union, - ACTIONS(107), 1, + ACTIONS(113), 1, sym_auto, - ACTIONS(109), 1, + ACTIONS(115), 1, anon_sym_decltype, - ACTIONS(111), 1, + ACTIONS(117), 1, anon_sym_virtual, - ACTIONS(115), 1, + ACTIONS(121), 1, anon_sym_typename, - ACTIONS(996), 1, + ACTIONS(1329), 1, anon_sym_template, - ACTIONS(1413), 1, + ACTIONS(1813), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2922), 1, + ACTIONS(3657), 1, sym_identifier, - ACTIONS(2928), 1, + ACTIONS(3663), 1, anon_sym_COLON_COLON, - ACTIONS(2932), 1, + ACTIONS(3667), 1, sym_primitive_type, - STATE(3156), 1, + STATE(3633), 1, sym__type_specifier, - STATE(3171), 1, + STATE(3657), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3259), 1, + STATE(3694), 1, sym_qualified_type_identifier, - STATE(3279), 1, + STATE(3717), 1, sym_decltype_auto, - STATE(4049), 1, + STATE(4679), 1, sym__declaration_specifiers, - STATE(5006), 1, + STATE(5779), 1, sym__scope_resolution, - STATE(6159), 1, + STATE(7638), 1, sym_dependent_type_identifier, - STATE(3198), 2, + STATE(3680), 2, sym_decltype, sym_template_type, - ACTIONS(61), 4, + ACTIONS(59), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(55), 5, + ACTIONS(53), 5, anon_sym_extern, anon_sym_static, anon_sym_register, anon_sym_inline, anon_sym_thread_local, - STATE(3232), 7, + STATE(3723), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -243858,16 +316332,7 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - ACTIONS(59), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(2179), 8, + STATE(2514), 8, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -243876,71 +316341,150 @@ static const uint16_t ts_small_parse_table[] = { sym_type_qualifier, sym_virtual, aux_sym__declaration_specifiers_repeat1, - [19931] = 3, + ACTIONS(57), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [16776] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4575), 18, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(3397), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(3395), 53, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4573), 38, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [16843] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4908), 6, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4906), 53, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, anon_sym_decltype, - [19995] = 3, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [16910] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4579), 18, + ACTIONS(4527), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -243955,11 +316499,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_COLON, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4577), 38, + ACTIONS(4529), 40, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -243970,11 +316515,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_SEMI, + anon_sym_COLON_COLON, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -243998,265 +316543,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - [20059] = 3, + anon_sym_final, + anon_sym_override, + [16977] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4583), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4581), 38, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [20123] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4587), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4585), 38, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [20187] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3814), 1, - anon_sym_COLON_COLON, - ACTIONS(3836), 1, - anon_sym_LBRACE, - ACTIONS(4589), 1, - anon_sym_LT, - STATE(2201), 1, - sym_template_argument_list, - ACTIONS(3838), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(3843), 34, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [20259] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4594), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4592), 38, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [20323] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2784), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, + ACTIONS(3427), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2782), 50, + ACTIONS(3425), 53, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -244277,11 +316576,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -244307,147 +316609,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [20387] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4598), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4596), 38, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [20451] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1617), 1, - anon_sym_LBRACE, - ACTIONS(4385), 1, - anon_sym_LPAREN2, - ACTIONS(4387), 1, - anon_sym_LBRACK, - ACTIONS(4389), 1, - sym_auto, - ACTIONS(4391), 1, - anon_sym_decltype, - STATE(2664), 1, - sym_decltype_auto, - STATE(2693), 1, - sym_new_declarator, - STATE(2993), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(4202), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4200), 27, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [20531] = 3, + [17044] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4602), 6, + ACTIONS(3417), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(4600), 50, + ACTIONS(3415), 53, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -244468,11 +316640,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -244498,78 +316673,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [20595] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4606), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4604), 38, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [20659] = 3, + [17111] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4610), 6, + ACTIONS(4908), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(4608), 50, + ACTIONS(4906), 53, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -244590,11 +316704,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -244620,165 +316737,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [20723] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4614), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4612), 38, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [20787] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(39), 1, - anon_sym___attribute__, - ACTIONS(45), 1, - anon_sym___declspec, - ACTIONS(65), 1, - anon_sym_enum, - ACTIONS(67), 1, - anon_sym_class, - ACTIONS(69), 1, - anon_sym_struct, - ACTIONS(71), 1, - anon_sym_union, - ACTIONS(107), 1, - sym_auto, - ACTIONS(109), 1, - anon_sym_decltype, - ACTIONS(111), 1, - anon_sym_virtual, - ACTIONS(115), 1, - anon_sym_typename, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1413), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2922), 1, - sym_identifier, - ACTIONS(2928), 1, - anon_sym_COLON_COLON, - ACTIONS(2932), 1, - sym_primitive_type, - STATE(3156), 1, - sym__type_specifier, - STATE(3171), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3259), 1, - sym_qualified_type_identifier, - STATE(3279), 1, - sym_decltype_auto, - STATE(4005), 1, - sym__declaration_specifiers, - STATE(5006), 1, - sym__scope_resolution, - STATE(6159), 1, - sym_dependent_type_identifier, - STATE(3198), 2, - sym_decltype, - sym_template_type, - ACTIONS(61), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(55), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - STATE(3232), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(59), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(2179), 8, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual, - aux_sym__declaration_specifiers_repeat1, - [20903] = 3, + [17178] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2898), 6, + ACTIONS(3356), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2896), 50, + ACTIONS(3354), 53, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -244799,11 +316768,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -244829,139 +316801,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [20967] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4618), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4616), 38, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [21031] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4622), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4620), 38, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [21095] = 3, + [17245] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2800), 6, + ACTIONS(4888), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2798), 50, + ACTIONS(4886), 53, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -244982,11 +316832,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -245012,104 +316865,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [21159] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(39), 1, - anon_sym___attribute__, - ACTIONS(45), 1, - anon_sym___declspec, - ACTIONS(65), 1, - anon_sym_enum, - ACTIONS(67), 1, - anon_sym_class, - ACTIONS(69), 1, - anon_sym_struct, - ACTIONS(71), 1, - anon_sym_union, - ACTIONS(107), 1, - sym_auto, - ACTIONS(109), 1, - anon_sym_decltype, - ACTIONS(111), 1, - anon_sym_virtual, - ACTIONS(115), 1, - anon_sym_typename, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1413), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2922), 1, - sym_identifier, - ACTIONS(2928), 1, - anon_sym_COLON_COLON, - ACTIONS(2932), 1, - sym_primitive_type, - STATE(3156), 1, - sym__type_specifier, - STATE(3171), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3259), 1, - sym_qualified_type_identifier, - STATE(3279), 1, - sym_decltype_auto, - STATE(4043), 1, - sym__declaration_specifiers, - STATE(5006), 1, - sym__scope_resolution, - STATE(6159), 1, - sym_dependent_type_identifier, - STATE(3198), 2, - sym_decltype, - sym_template_type, - ACTIONS(61), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(55), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - STATE(3232), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(59), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(2179), 8, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual, - aux_sym__declaration_specifiers_repeat1, - [21275] = 3, + [17312] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2824), 6, + ACTIONS(4884), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2822), 50, + ACTIONS(4882), 53, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -245130,11 +316896,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -245160,78 +316929,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [21339] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3870), 21, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(3875), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - [21403] = 3, + [17379] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4626), 6, + ACTIONS(4870), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(4624), 50, + ACTIONS(4868), 53, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -245252,11 +316960,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -245282,17 +316993,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [21467] = 3, + [17446] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2804), 6, + ACTIONS(4870), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2802), 50, + ACTIONS(4868), 53, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -245313,11 +317024,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -245343,17 +317057,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [21531] = 3, + [17513] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4878), 1, + anon_sym_COLON, + ACTIONS(5045), 1, + anon_sym_LBRACE, + STATE(2827), 1, + sym_field_declaration_list, + STATE(6055), 1, + sym_virtual_specifier, + STATE(6659), 1, + sym_base_class_clause, + ACTIONS(4880), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4874), 10, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4872), 42, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [17592] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2684), 6, + ACTIONS(3276), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2682), 50, + ACTIONS(3274), 53, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -245374,11 +317158,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -245404,77 +317191,190 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [21595] = 3, + [17659] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(2684), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2682), 50, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, - anon_sym_AMP, - anon_sym_typedef, - anon_sym_extern, + ACTIONS(37), 1, anon_sym___attribute__, + ACTIONS(43), 1, anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, + ACTIONS(63), 1, + anon_sym_enum, + ACTIONS(65), 1, + anon_sym_class, + ACTIONS(67), 1, + anon_sym_struct, + ACTIONS(69), 1, + anon_sym_union, + ACTIONS(113), 1, + sym_auto, + ACTIONS(115), 1, + anon_sym_decltype, + ACTIONS(117), 1, + anon_sym_virtual, + ACTIONS(121), 1, + anon_sym_typename, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1813), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3657), 1, + sym_identifier, + ACTIONS(3663), 1, + anon_sym_COLON_COLON, + ACTIONS(3667), 1, + sym_primitive_type, + STATE(3633), 1, + sym__type_specifier, + STATE(3657), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3694), 1, + sym_qualified_type_identifier, + STATE(3717), 1, + sym_decltype_auto, + STATE(4684), 1, + sym__declaration_specifiers, + STATE(5779), 1, + sym__scope_resolution, + STATE(7638), 1, + sym_dependent_type_identifier, + STATE(3680), 2, + sym_decltype, + sym_template_type, + ACTIONS(59), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(53), 5, + anon_sym_extern, anon_sym_static, anon_sym_register, anon_sym_inline, anon_sym_thread_local, + STATE(3723), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + STATE(2514), 8, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(57), 11, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, + [17778] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(37), 1, + anon_sym___attribute__, + ACTIONS(43), 1, + anon_sym___declspec, + ACTIONS(63), 1, anon_sym_enum, + ACTIONS(65), 1, anon_sym_class, + ACTIONS(67), 1, anon_sym_struct, + ACTIONS(69), 1, anon_sym_union, - sym_identifier, + ACTIONS(113), 1, sym_auto, + ACTIONS(115), 1, anon_sym_decltype, + ACTIONS(117), 1, anon_sym_virtual, - anon_sym_explicit, + ACTIONS(121), 1, anon_sym_typename, + ACTIONS(1329), 1, anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [21659] = 6, + ACTIONS(1813), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3657), 1, + sym_identifier, + ACTIONS(3663), 1, + anon_sym_COLON_COLON, + ACTIONS(3667), 1, + sym_primitive_type, + STATE(3633), 1, + sym__type_specifier, + STATE(3657), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3694), 1, + sym_qualified_type_identifier, + STATE(3717), 1, + sym_decltype_auto, + STATE(4685), 1, + sym__declaration_specifiers, + STATE(5779), 1, + sym__scope_resolution, + STATE(7638), 1, + sym_dependent_type_identifier, + STATE(3680), 2, + sym_decltype, + sym_template_type, + ACTIONS(59), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(53), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + STATE(3723), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + STATE(2514), 8, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(57), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [17897] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3814), 1, - anon_sym_COLON_COLON, - ACTIONS(4628), 1, - anon_sym_LT, - STATE(2000), 1, - sym_template_argument_list, - ACTIONS(3831), 16, + ACTIONS(4517), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -245485,13 +317385,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3836), 37, + ACTIONS(4519), 40, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -245501,8 +317404,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_COLON_COLON, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -245514,88 +317421,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [21729] = 3, + [17964] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2808), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, + ACTIONS(4566), 19, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2806), 50, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4568), 40, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_virtual, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [21793] = 4, + anon_sym_final, + anon_sym_override, + [18031] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4229), 1, - anon_sym_COLON_COLON, - ACTIONS(4247), 21, + ACTIONS(4531), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -245605,28 +317512,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, anon_sym_COLON, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4245), 34, + ACTIONS(4533), 40, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_COLON_COLON, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -245634,6 +317545,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -245651,13 +317563,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_GT2, - [21859] = 4, + [18098] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4229), 1, - anon_sym_COLON_COLON, - ACTIONS(4247), 21, + ACTIONS(4546), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -245667,28 +317576,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, anon_sym_COLON, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4245), 34, + ACTIONS(4548), 40, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_COLON_COLON, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -245696,6 +317609,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -245713,26 +317627,178 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_GT2, - [21925] = 4, + [18165] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(37), 1, + anon_sym___attribute__, + ACTIONS(43), 1, + anon_sym___declspec, + ACTIONS(63), 1, + anon_sym_enum, + ACTIONS(65), 1, + anon_sym_class, + ACTIONS(67), 1, + anon_sym_struct, + ACTIONS(69), 1, + anon_sym_union, + ACTIONS(113), 1, + sym_auto, + ACTIONS(115), 1, + anon_sym_decltype, + ACTIONS(117), 1, + anon_sym_virtual, + ACTIONS(121), 1, + anon_sym_typename, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1813), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3657), 1, + sym_identifier, + ACTIONS(3663), 1, + anon_sym_COLON_COLON, + ACTIONS(3667), 1, + sym_primitive_type, + STATE(3633), 1, + sym__type_specifier, + STATE(3657), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3694), 1, + sym_qualified_type_identifier, + STATE(3717), 1, + sym_decltype_auto, + STATE(4677), 1, + sym__declaration_specifiers, + STATE(5779), 1, + sym__scope_resolution, + STATE(7638), 1, + sym_dependent_type_identifier, + STATE(3680), 2, + sym_decltype, + sym_template_type, + ACTIONS(59), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(53), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + STATE(3723), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + STATE(2514), 8, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(57), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [18284] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2652), 2, + ACTIONS(4773), 23, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + anon_sym_DASH_GT, + sym_literal_suffix, + ACTIONS(4771), 36, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(1735), 7, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [18351] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4916), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(1737), 47, + ACTIONS(4914), 53, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, sym_preproc_directive, anon_sym_AMP, anon_sym_typedef, @@ -245746,11 +317812,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -245776,24 +317845,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [21991] = 3, + [18418] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(37), 1, + anon_sym___attribute__, + ACTIONS(43), 1, + anon_sym___declspec, + ACTIONS(63), 1, + anon_sym_enum, + ACTIONS(65), 1, + anon_sym_class, + ACTIONS(67), 1, + anon_sym_struct, + ACTIONS(69), 1, + anon_sym_union, + ACTIONS(113), 1, + sym_auto, + ACTIONS(115), 1, + anon_sym_decltype, + ACTIONS(117), 1, + anon_sym_virtual, + ACTIONS(121), 1, + anon_sym_typename, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1813), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3657), 1, + sym_identifier, + ACTIONS(3663), 1, + anon_sym_COLON_COLON, + ACTIONS(3667), 1, + sym_primitive_type, + STATE(3633), 1, + sym__type_specifier, + STATE(3657), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3694), 1, + sym_qualified_type_identifier, + STATE(3717), 1, + sym_decltype_auto, + STATE(4701), 1, + sym__declaration_specifiers, + STATE(5779), 1, + sym__scope_resolution, + STATE(7638), 1, + sym_dependent_type_identifier, + STATE(3680), 2, + sym_decltype, + sym_template_type, + ACTIONS(59), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(53), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + STATE(3723), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + STATE(2514), 8, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(57), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [18537] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2808), 6, + ACTIONS(2960), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(2540), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2806), 50, + anon_sym_RBRACE, + ACTIONS(2542), 50, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, sym_preproc_directive, anon_sym_AMP, anon_sym_typedef, @@ -245807,11 +317967,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -245837,17 +318000,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [22055] = 3, + [18606] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2816), 6, + ACTIONS(3393), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2814), 50, + ACTIONS(3391), 53, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -245868,11 +318031,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -245898,17 +318064,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [22119] = 3, + [18673] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2692), 6, + ACTIONS(3087), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2690), 50, + ACTIONS(3085), 53, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -245929,11 +318095,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -245959,78 +318128,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [22183] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4253), 21, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4251), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - [22247] = 3, + [18740] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2696), 6, + ACTIONS(3087), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2694), 50, + ACTIONS(3085), 53, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -246051,11 +318159,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -246081,104 +318192,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [22311] = 29, + [18807] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, - anon_sym___attribute__, ACTIONS(45), 1, - anon_sym___declspec, - ACTIONS(65), 1, - anon_sym_enum, - ACTIONS(67), 1, - anon_sym_class, - ACTIONS(69), 1, - anon_sym_struct, - ACTIONS(71), 1, - anon_sym_union, - ACTIONS(107), 1, - sym_auto, - ACTIONS(109), 1, - anon_sym_decltype, - ACTIONS(111), 1, - anon_sym_virtual, - ACTIONS(115), 1, - anon_sym_typename, - ACTIONS(996), 1, + anon_sym___based, + ACTIONS(1329), 1, anon_sym_template, - ACTIONS(1413), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2922), 1, + ACTIONS(1931), 1, + anon_sym_operator, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(2562), 1, + anon_sym_TILDE, + ACTIONS(4014), 1, + anon_sym_LPAREN2, + ACTIONS(4016), 1, + anon_sym_STAR, + ACTIONS(4018), 1, + anon_sym_AMP_AMP, + ACTIONS(4020), 1, + anon_sym_AMP, + ACTIONS(4823), 1, sym_identifier, - ACTIONS(2928), 1, + ACTIONS(5004), 1, + anon_sym_RPAREN, + ACTIONS(5014), 1, + anon_sym_LBRACK, + ACTIONS(5072), 1, anon_sym_COLON_COLON, - ACTIONS(2932), 1, - sym_primitive_type, - STATE(3156), 1, - sym__type_specifier, - STATE(3171), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3259), 1, - sym_qualified_type_identifier, - STATE(3279), 1, - sym_decltype_auto, - STATE(4022), 1, - sym__declaration_specifiers, - STATE(5006), 1, + STATE(3900), 1, + sym_parameter_list, + STATE(4712), 1, + sym_ms_unaligned_ptr_modifier, + STATE(5352), 1, sym__scope_resolution, - STATE(6159), 1, - sym_dependent_type_identifier, - STATE(3198), 2, + STATE(5457), 1, + sym__function_declarator_seq, + STATE(5614), 1, + sym__declarator, + STATE(5655), 1, + sym__abstract_declarator, + STATE(7654), 1, + sym_ms_based_modifier, + ACTIONS(2869), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3351), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(3395), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(2867), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(7638), 3, sym_decltype, sym_template_type, - ACTIONS(61), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(55), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - STATE(3232), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(59), 8, + sym_dependent_type_identifier, + STATE(5452), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(2871), 11, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - STATE(2179), 8, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual, - aux_sym__declaration_specifiers_repeat1, - [22427] = 3, + STATE(5640), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [18926] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2902), 6, + ACTIONS(4852), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2900), 50, + ACTIONS(4850), 53, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -246199,11 +318313,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -246229,26 +318346,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [22491] = 3, + [18993] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4633), 14, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3207), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_SEMI, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - ACTIONS(4631), 41, + ACTIONS(3205), 53, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, anon_sym_AMP, + anon_sym_typedef, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -246259,11 +318377,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -246278,21 +318399,21 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, anon_sym_virtual, anon_sym_explicit, anon_sym_typename, anon_sym_template, anon_sym_operator, - anon_sym_try, - anon_sym_noexcept, - anon_sym_throw, - anon_sym_requires, - [22554] = 3, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [19060] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4247), 20, + ACTIONS(4777), 23, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -246302,149 +318423,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4245), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - [22617] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4635), 1, - anon_sym_LBRACE, - ACTIONS(4637), 1, - anon_sym_COLON, - STATE(2564), 1, - sym__enum_base_clause, - STATE(2635), 1, - sym_enumerator_list, - ACTIONS(4278), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, anon_sym_xor, - anon_sym_DOT, - ACTIONS(4276), 31, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [22688] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3814), 1, - anon_sym_COLON_COLON, - ACTIONS(3836), 1, - anon_sym_LBRACE, - ACTIONS(3845), 1, - anon_sym_LT, - STATE(2266), 1, - sym_template_argument_list, - ACTIONS(3838), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3843), 32, + sym_literal_suffix, + ACTIONS(4775), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -246454,7 +318447,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -246466,56 +318459,150 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [22759] = 6, + [19127] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3814), 1, + ACTIONS(37), 1, + anon_sym___attribute__, + ACTIONS(43), 1, + anon_sym___declspec, + ACTIONS(63), 1, + anon_sym_enum, + ACTIONS(65), 1, + anon_sym_class, + ACTIONS(67), 1, + anon_sym_struct, + ACTIONS(69), 1, + anon_sym_union, + ACTIONS(113), 1, + sym_auto, + ACTIONS(115), 1, + anon_sym_decltype, + ACTIONS(117), 1, + anon_sym_virtual, + ACTIONS(121), 1, + anon_sym_typename, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1813), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3657), 1, + sym_identifier, + ACTIONS(3663), 1, anon_sym_COLON_COLON, - ACTIONS(4639), 1, - anon_sym_LT, - STATE(2576), 1, - sym_template_argument_list, - ACTIONS(3819), 6, + ACTIONS(3667), 1, + sym_primitive_type, + STATE(3633), 1, + sym__type_specifier, + STATE(3657), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3694), 1, + sym_qualified_type_identifier, + STATE(3717), 1, + sym_decltype_auto, + STATE(4688), 1, + sym__declaration_specifiers, + STATE(5779), 1, + sym__scope_resolution, + STATE(7638), 1, + sym_dependent_type_identifier, + STATE(3680), 2, + sym_decltype, + sym_template_type, + ACTIONS(59), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(53), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + STATE(3723), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + STATE(2514), 8, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(57), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [19246] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3374), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, - anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(4196), 46, + ACTIONS(3372), 53, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, anon_sym_AMP, + anon_sym_typedef, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, anon_sym_LBRACK, anon_sym_static, anon_sym_register, anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -246527,8 +318614,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_class, anon_sym_struct, anon_sym_union, - anon_sym_or, - anon_sym_and, sym_identifier, sym_auto, anon_sym_decltype, @@ -246538,47 +318623,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_template, anon_sym_operator, anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, anon_sym_using, - anon_sym_concept, - [22828] = 6, + anon_sym_static_assert, + [19313] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3814), 1, - anon_sym_COLON_COLON, - ACTIONS(4639), 1, - anon_sym_LT, - STATE(2576), 1, - sym_template_argument_list, - ACTIONS(3836), 6, + ACTIONS(3232), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, - anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(3831), 46, + ACTIONS(3230), 53, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, anon_sym_AMP, + anon_sym_typedef, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, anon_sym_LBRACK, anon_sym_static, anon_sym_register, anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -246590,8 +318678,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_class, anon_sym_struct, anon_sym_union, - anon_sym_or, - anon_sym_and, sym_identifier, sym_auto, anon_sym_decltype, @@ -246601,24 +318687,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_template, anon_sym_operator, anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, anon_sym_using, - anon_sym_concept, - [22897] = 3, + anon_sym_static_assert, + [19380] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1727), 6, + ACTIONS(4856), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(1729), 49, + ACTIONS(4854), 53, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, sym_preproc_directive, anon_sym_AMP, anon_sym_typedef, @@ -246632,11 +318723,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -246662,249 +318756,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - anon_sym_catch, - [22960] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4328), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4326), 36, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [23023] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4229), 1, - anon_sym_COLON_COLON, - ACTIONS(4247), 17, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4245), 37, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [23088] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4229), 1, - anon_sym_COLON_COLON, - ACTIONS(4247), 17, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4245), 37, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [23153] = 28, + [19447] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, + ACTIONS(37), 1, anon_sym___attribute__, - ACTIONS(45), 1, + ACTIONS(43), 1, anon_sym___declspec, - ACTIONS(111), 1, - anon_sym_virtual, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1413), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1697), 1, - sym_primitive_type, - ACTIONS(1699), 1, + ACTIONS(63), 1, anon_sym_enum, - ACTIONS(1701), 1, + ACTIONS(65), 1, anon_sym_class, - ACTIONS(1703), 1, + ACTIONS(67), 1, anon_sym_struct, - ACTIONS(1705), 1, + ACTIONS(69), 1, anon_sym_union, - ACTIONS(1707), 1, + ACTIONS(113), 1, sym_auto, - ACTIONS(1709), 1, + ACTIONS(115), 1, anon_sym_decltype, - ACTIONS(1711), 1, + ACTIONS(117), 1, + anon_sym_virtual, + ACTIONS(121), 1, anon_sym_typename, - ACTIONS(3906), 1, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1813), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3657), 1, sym_identifier, - ACTIONS(4641), 1, + ACTIONS(3663), 1, anon_sym_COLON_COLON, - STATE(3390), 1, + ACTIONS(3667), 1, + sym_primitive_type, + STATE(3633), 1, sym__type_specifier, - STATE(3554), 1, + STATE(3657), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3694), 1, sym_qualified_type_identifier, - STATE(3558), 1, + STATE(3717), 1, sym_decltype_auto, - STATE(3584), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(5040), 1, + STATE(4699), 1, + sym__declaration_specifiers, + STATE(5779), 1, sym__scope_resolution, - STATE(6159), 1, + STATE(7638), 1, sym_dependent_type_identifier, - STATE(3198), 2, + STATE(3680), 2, sym_decltype, sym_template_type, - ACTIONS(1695), 4, + ACTIONS(59), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(55), 5, + ACTIONS(53), 5, anon_sym_extern, anon_sym_static, anon_sym_register, anon_sym_inline, anon_sym_thread_local, - STATE(3601), 7, + STATE(3723), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -246912,16 +318825,7 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - ACTIONS(59), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(3327), 8, + STATE(2514), 8, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -246930,216 +318834,228 @@ static const uint16_t ts_small_parse_table[] = { sym_type_qualifier, sym_virtual, aux_sym__declaration_specifiers_repeat1, - [23266] = 10, + ACTIONS(57), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [19566] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3814), 1, - anon_sym_COLON_COLON, - ACTIONS(3819), 1, - anon_sym_LBRACE, - ACTIONS(4015), 1, - anon_sym_LT, - ACTIONS(4645), 1, - anon_sym_LBRACK, - STATE(2839), 1, - sym_template_argument_list, - ACTIONS(3990), 3, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - ACTIONS(4643), 3, - anon_sym_RPAREN, + ACTIONS(4920), 6, anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - ACTIONS(3803), 18, - anon_sym_DASH, - anon_sym_PLUS, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3795), 26, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [23343] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3814), 1, anon_sym_COLON_COLON, - ACTIONS(3819), 1, - anon_sym_LBRACE, - ACTIONS(3988), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4650), 1, - anon_sym_LT, - ACTIONS(4653), 1, - anon_sym_LBRACK, - STATE(2266), 1, - sym_template_argument_list, - ACTIONS(4647), 2, - anon_sym_RPAREN, - anon_sym_LPAREN2, - ACTIONS(3803), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(4918), 53, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3795), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [23420] = 3, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [19633] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4658), 19, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(3334), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(3332), 53, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4656), 36, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [19700] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3334), 6, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, + anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_try, - [23483] = 3, + ACTIONS(3332), 53, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [19767] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1735), 6, + ACTIONS(4860), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(1737), 49, + ACTIONS(4858), 53, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, sym_preproc_directive, anon_sym_AMP, anon_sym_typedef, @@ -247153,11 +319069,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -247183,129 +319102,132 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - anon_sym_catch, - [23546] = 5, + [19834] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4294), 1, - anon_sym_LBRACE, - STATE(2424), 1, - sym_enumerator_list, - ACTIONS(4332), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4330), 34, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(4970), 6, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4968), 53, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [23613] = 28, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [19901] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, + ACTIONS(37), 1, anon_sym___attribute__, - ACTIONS(45), 1, + ACTIONS(43), 1, anon_sym___declspec, - ACTIONS(65), 1, + ACTIONS(63), 1, anon_sym_enum, - ACTIONS(67), 1, + ACTIONS(65), 1, anon_sym_class, - ACTIONS(69), 1, + ACTIONS(67), 1, anon_sym_struct, - ACTIONS(71), 1, + ACTIONS(69), 1, anon_sym_union, - ACTIONS(107), 1, + ACTIONS(113), 1, sym_auto, - ACTIONS(109), 1, + ACTIONS(115), 1, anon_sym_decltype, - ACTIONS(111), 1, + ACTIONS(117), 1, anon_sym_virtual, - ACTIONS(115), 1, + ACTIONS(121), 1, anon_sym_typename, - ACTIONS(996), 1, + ACTIONS(1329), 1, anon_sym_template, - ACTIONS(1413), 1, + ACTIONS(1813), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2922), 1, + ACTIONS(3657), 1, sym_identifier, - ACTIONS(2928), 1, + ACTIONS(3663), 1, anon_sym_COLON_COLON, - ACTIONS(2932), 1, + ACTIONS(3667), 1, sym_primitive_type, - STATE(3148), 1, + STATE(3633), 1, sym__type_specifier, - STATE(3171), 1, + STATE(3657), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3259), 1, + STATE(3694), 1, sym_qualified_type_identifier, - STATE(3279), 1, + STATE(3717), 1, sym_decltype_auto, - STATE(5006), 1, + STATE(4676), 1, + sym__declaration_specifiers, + STATE(5779), 1, sym__scope_resolution, - STATE(6159), 1, + STATE(7638), 1, sym_dependent_type_identifier, - STATE(3198), 2, + STATE(3680), 2, sym_decltype, sym_template_type, - ACTIONS(61), 4, + ACTIONS(59), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(55), 5, + ACTIONS(53), 5, anon_sym_extern, anon_sym_static, anon_sym_register, anon_sym_inline, anon_sym_thread_local, - STATE(3232), 7, + STATE(3723), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -247313,16 +319235,7 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - ACTIONS(59), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(3327), 8, + STATE(2514), 8, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -247331,156 +319244,235 @@ static const uint16_t ts_small_parse_table[] = { sym_type_qualifier, sym_virtual, aux_sym__declaration_specifiers_repeat1, - [23726] = 5, + ACTIONS(57), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [20020] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4170), 1, - anon_sym_LBRACK, - STATE(2413), 1, - sym_new_declarator, - ACTIONS(4662), 18, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(4974), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4972), 53, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4660), 35, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [20087] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5074), 1, + sym_identifier, + ACTIONS(5078), 1, + sym_primitive_type, + STATE(2404), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(5076), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(4807), 19, 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_SEMI, + anon_sym_LT_LT, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COLON, + anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [23793] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1645), 1, - anon_sym_LBRACE, - ACTIONS(4664), 1, - anon_sym_LPAREN2, - ACTIONS(4666), 1, - anon_sym_LBRACK, - ACTIONS(4668), 1, - sym_auto, - ACTIONS(4670), 1, - anon_sym_decltype, - STATE(2707), 1, - sym_decltype_auto, - STATE(2715), 1, - sym_new_declarator, - STATE(3033), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(4202), 16, + anon_sym_GT2, + ACTIONS(4809), 33, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4200), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, + anon_sym_DOT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [20162] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5082), 26, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [23872] = 3, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(5080), 33, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + [20229] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4674), 14, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3310), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_SEMI, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - ACTIONS(4672), 41, + ACTIONS(3308), 53, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, anon_sym_AMP, + anon_sym_typedef, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -247491,11 +319483,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -247510,158 +319505,335 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, anon_sym_virtual, anon_sym_explicit, anon_sym_typename, anon_sym_template, anon_sym_operator, - anon_sym_try, - anon_sym_noexcept, - anon_sym_throw, - anon_sym_requires, - [23935] = 28, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [20296] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, + ACTIONS(3272), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(3270), 53, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, anon_sym___attribute__, - ACTIONS(45), 1, anon_sym___declspec, - ACTIONS(107), 1, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, - ACTIONS(109), 1, anon_sym_decltype, - ACTIONS(111), 1, anon_sym_virtual, - ACTIONS(996), 1, + anon_sym_explicit, + anon_sym_typename, anon_sym_template, - ACTIONS(1413), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2922), 1, - sym_identifier, - ACTIONS(2928), 1, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [20363] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4931), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, anon_sym_COLON_COLON, - ACTIONS(2932), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4929), 53, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, sym_primitive_type, - ACTIONS(2934), 1, anon_sym_enum, - ACTIONS(2936), 1, anon_sym_class, - ACTIONS(2938), 1, anon_sym_struct, - ACTIONS(2940), 1, anon_sym_union, - ACTIONS(2942), 1, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, anon_sym_typename, - STATE(3259), 1, - sym_qualified_type_identifier, - STATE(3272), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3279), 1, - sym_decltype_auto, - STATE(3879), 1, - sym__type_specifier, - STATE(5006), 1, - sym__scope_resolution, - STATE(6159), 1, - sym_dependent_type_identifier, - STATE(3198), 2, - sym_decltype, - sym_template_type, - ACTIONS(2930), 4, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [20430] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3244), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(3242), 53, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(55), 5, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [20497] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3174), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(3172), 53, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, anon_sym_static, anon_sym_register, anon_sym_inline, anon_sym_thread_local, - STATE(3232), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(59), 8, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - STATE(3327), 8, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual, - aux_sym__declaration_specifiers_repeat1, - [24048] = 7, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [20564] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4635), 1, - anon_sym_LBRACE, - ACTIONS(4637), 1, + ACTIONS(4878), 1, anon_sym_COLON, - STATE(2519), 1, - sym__enum_base_clause, - STATE(2658), 1, - sym_enumerator_list, - ACTIONS(4270), 20, + ACTIONS(5045), 1, + anon_sym_LBRACE, + STATE(2769), 1, + sym_field_declaration_list, + STATE(6056), 1, + sym_virtual_specifier, + STATE(6716), 1, + sym_base_class_clause, + ACTIONS(4880), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4892), 10, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, + anon_sym_const, anon_sym_DOT, - ACTIONS(4268), 31, + ACTIONS(4890), 42, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, @@ -247669,23 +319841,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_GT2, - [24119] = 3, + anon_sym_requires, + [20643] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1735), 7, + ACTIONS(3178), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(1737), 48, + ACTIONS(3176), 53, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, sym_preproc_directive, anon_sym_AMP, anon_sym_typedef, @@ -247699,11 +319873,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -247729,131 +319906,497 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - anon_sym_catch, - [24182] = 3, + [20710] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3838), 19, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(4959), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4957), 53, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(3843), 36, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [20777] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4955), 6, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, + anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_try, - [24245] = 3, + ACTIONS(4953), 53, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [20844] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3838), 19, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(4959), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4957), 53, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(3843), 36, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [20911] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4963), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4961), 53, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [20978] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4963), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4961), 53, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [21045] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(37), 1, + anon_sym___attribute__, + ACTIONS(43), 1, + anon_sym___declspec, + ACTIONS(113), 1, + sym_auto, + ACTIONS(115), 1, + anon_sym_decltype, + ACTIONS(117), 1, + anon_sym_virtual, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1813), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3657), 1, + sym_identifier, + ACTIONS(3663), 1, + anon_sym_COLON_COLON, + ACTIONS(3667), 1, + sym_primitive_type, + ACTIONS(3669), 1, + anon_sym_enum, + ACTIONS(3671), 1, + anon_sym_class, + ACTIONS(3673), 1, + anon_sym_struct, + ACTIONS(3675), 1, + anon_sym_union, + ACTIONS(3677), 1, + anon_sym_typename, + STATE(3694), 1, + sym_qualified_type_identifier, + STATE(3717), 1, + sym_decltype_auto, + STATE(3751), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4214), 1, + sym__type_specifier, + STATE(5779), 1, + sym__scope_resolution, + STATE(7638), 1, + sym_dependent_type_identifier, + STATE(3680), 2, + sym_decltype, + sym_template_type, + ACTIONS(3665), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(53), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + STATE(3723), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + STATE(3799), 8, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(57), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [21161] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4476), 1, + anon_sym_COLON_COLON, + ACTIONS(5084), 1, + anon_sym_LT, + STATE(2800), 1, + sym_template_argument_list, + ACTIONS(4503), 6, anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_try, - [24308] = 3, + ACTIONS(4498), 49, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + anon_sym_or, + anon_sym_and, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_concept, + [21233] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3838), 19, + ACTIONS(4878), 1, + anon_sym_COLON, + ACTIONS(5086), 1, + anon_sym_LBRACE, + STATE(3195), 1, + sym_field_declaration_list, + STATE(6105), 1, + sym_virtual_specifier, + STATE(6772), 1, + sym_base_class_clause, + ACTIONS(4880), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4892), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -247863,31 +320406,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(3843), 36, + ACTIONS(4890), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -247895,7 +320433,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -247909,234 +320446,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - anon_sym_try, - [24371] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1645), 1, - anon_sym_LBRACE, - ACTIONS(4664), 1, - anon_sym_LPAREN2, - ACTIONS(4666), 1, - anon_sym_LBRACK, - ACTIONS(4668), 1, sym_auto, - ACTIONS(4670), 1, anon_sym_decltype, - STATE(2707), 1, - sym_decltype_auto, - STATE(2785), 1, - sym_new_declarator, - STATE(3057), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(4185), 16, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4183), 30, + anon_sym_GT2, + [21311] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5039), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [24450] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1645), 1, - anon_sym_LBRACE, - ACTIONS(4664), 1, - anon_sym_LPAREN2, - ACTIONS(4666), 1, - anon_sym_LBRACK, - ACTIONS(4668), 1, - sym_auto, - ACTIONS(4670), 1, - anon_sym_decltype, - STATE(2707), 1, - sym_decltype_auto, - STATE(2828), 1, - sym_new_declarator, - STATE(3052), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(4168), 16, + anon_sym_DASH_GT, + ACTIONS(5041), 33, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4164), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, + anon_sym___based, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [24529] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(39), 1, - anon_sym___attribute__, - ACTIONS(45), 1, - anon_sym___declspec, - ACTIONS(107), 1, + anon_sym_DOT, + sym_identifier, sym_auto, - ACTIONS(109), 1, anon_sym_decltype, - ACTIONS(111), 1, - anon_sym_virtual, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1413), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1451), 1, - anon_sym_enum, - ACTIONS(1453), 1, - anon_sym_class, - ACTIONS(1455), 1, - anon_sym_struct, - ACTIONS(1457), 1, - anon_sym_union, - ACTIONS(1471), 1, - anon_sym_typename, - ACTIONS(2932), 1, - sym_primitive_type, - ACTIONS(3906), 1, - sym_identifier, - ACTIONS(3916), 1, - anon_sym_COLON_COLON, - STATE(3148), 1, - sym__type_specifier, - STATE(3171), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3259), 1, - sym_qualified_type_identifier, - STATE(3279), 1, - sym_decltype_auto, - STATE(5034), 1, - sym__scope_resolution, - STATE(6159), 1, - sym_dependent_type_identifier, - STATE(3198), 2, - sym_decltype, - sym_template_type, - ACTIONS(61), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(55), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - STATE(3232), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(59), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(3327), 8, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual, - aux_sym__declaration_specifiers_repeat1, - [24642] = 4, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [21377] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4229), 1, - anon_sym_COLON_COLON, - ACTIONS(4227), 17, + ACTIONS(4550), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -248152,9 +320531,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ, anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4225), 37, + ACTIONS(4555), 38, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -248164,6 +320546,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_COLON_COLON, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -248177,11 +320560,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, @@ -248192,10 +320575,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [24707] = 3, + [21443] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(3838), 19, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(5088), 1, + anon_sym_LPAREN2, + ACTIONS(5090), 1, + anon_sym_LBRACK, + ACTIONS(5092), 1, + sym_auto, + ACTIONS(5094), 1, + anon_sym_decltype, + STATE(2899), 1, + sym_new_declarator, + STATE(2910), 1, + sym_decltype_auto, + STATE(3289), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(4980), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -248209,27 +320609,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(3843), 36, + anon_sym_DASH_GT, + ACTIONS(4976), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -248250,76 +320644,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_try, - [24770] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [21525] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4245), 25, + ACTIONS(5082), 14, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + anon_sym_EQ, anon_sym_DASH_GT, - ACTIONS(4247), 30, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, + anon_sym_GT2, + ACTIONS(5080), 44, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, sym_identifier, sym_auto, anon_sym_decltype, anon_sym_final, anon_sym_override, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_noexcept, + anon_sym_throw, anon_sym_requires, - [24833] = 5, + [21591] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4294), 1, - anon_sym_LBRACE, - STATE(2438), 1, - sym_enumerator_list, - ACTIONS(4349), 19, + ACTIONS(5096), 1, + sym_identifier, + ACTIONS(5100), 1, + sym_primitive_type, + STATE(2512), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(5098), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(4809), 24, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -248336,10 +320740,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4347), 34, + sym_auto, + anon_sym_decltype, + ACTIONS(4807), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -248349,6 +320758,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -248361,33 +320771,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - sym_auto, - anon_sym_decltype, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [24900] = 3, + [21665] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2406), 7, + ACTIONS(2534), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2404), 48, + ACTIONS(2536), 52, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -248403,11 +320805,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -248434,17 +320839,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_using, anon_sym_static_assert, anon_sym_catch, - [24963] = 3, + [21731] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2406), 6, + ACTIONS(2540), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2404), 49, + ACTIONS(2542), 52, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -248463,11 +320868,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -248494,85 +320902,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_using, anon_sym_static_assert, anon_sym_catch, - [25026] = 4, + [21797] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3875), 2, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - ACTIONS(3877), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(3882), 33, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2902), 7, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, + anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [25091] = 9, + ACTIONS(2900), 51, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + anon_sym_catch, + [21863] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(3814), 1, - anon_sym_COLON_COLON, - ACTIONS(3819), 1, + ACTIONS(1997), 1, anon_sym_LBRACE, - ACTIONS(4645), 1, - anon_sym_LBRACK, - ACTIONS(4676), 1, - anon_sym_LT, - STATE(2486), 1, - sym_template_argument_list, - ACTIONS(4643), 3, - anon_sym_RPAREN, + ACTIONS(5088), 1, anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - ACTIONS(3803), 18, + ACTIONS(5090), 1, + anon_sym_LBRACK, + ACTIONS(5092), 1, + sym_auto, + ACTIONS(5094), 1, + anon_sym_decltype, + STATE(2866), 1, + sym_new_declarator, + STATE(2910), 1, + sym_decltype_auto, + STATE(3266), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5024), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -248583,6 +320996,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, @@ -248591,9 +321005,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3795), 29, + ACTIONS(5022), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -248621,10 +321036,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [25166] = 3, + [21945] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(37), 1, + anon_sym___attribute__, + ACTIONS(43), 1, + anon_sym___declspec, + ACTIONS(117), 1, + anon_sym_virtual, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1813), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2576), 1, + sym_primitive_type, + ACTIONS(2578), 1, + anon_sym_enum, + ACTIONS(2580), 1, + anon_sym_class, + ACTIONS(2582), 1, + anon_sym_struct, + ACTIONS(2584), 1, + anon_sym_union, + ACTIONS(2586), 1, + sym_auto, + ACTIONS(2588), 1, + anon_sym_decltype, + ACTIONS(2590), 1, + anon_sym_typename, + ACTIONS(4570), 1, + sym_identifier, + ACTIONS(5102), 1, + anon_sym_COLON_COLON, + STATE(3856), 1, + sym__type_specifier, + STATE(3916), 1, + sym_decltype_auto, + STATE(3966), 1, + sym_qualified_type_identifier, + STATE(3981), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5718), 1, + sym__scope_resolution, + STATE(7638), 1, + sym_dependent_type_identifier, + STATE(3680), 2, + sym_decltype, + sym_template_type, + ACTIONS(2574), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(53), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + STATE(3918), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + STATE(3799), 8, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(57), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [22061] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3838), 19, + ACTIONS(4476), 1, + anon_sym_COLON_COLON, + STATE(3608), 1, + sym_template_argument_list, + ACTIONS(5106), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -248638,13 +321145,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_EQ, + anon_sym_COLON, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(3843), 36, + ACTIONS(5104), 37, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -248655,10 +321162,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -248680,14 +321187,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - anon_sym_try, - [25229] = 4, + sym_auto, + anon_sym_decltype, + [22131] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3875), 2, + ACTIONS(5043), 1, anon_sym_COLON_COLON, - anon_sym_LBRACE, - ACTIONS(3877), 19, + ACTIONS(5064), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -248707,7 +321214,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(3882), 34, + anon_sym_DASH_GT, + ACTIONS(5062), 37, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -248717,10 +321225,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -248741,11 +321247,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [25294] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [22199] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4253), 17, + STATE(2512), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(5108), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(4785), 26, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -248760,10 +321278,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_COLON, + sym_primitive_type, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4251), 38, + sym_identifier, + sym_auto, + anon_sym_decltype, + ACTIONS(4787), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -248773,7 +321300,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_COLON_COLON, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -248788,41 +321314,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [25357] = 11, + [22269] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1645), 1, + ACTIONS(5115), 1, anon_sym_LBRACE, - ACTIONS(4664), 1, - anon_sym_LPAREN2, - ACTIONS(4666), 1, - anon_sym_LBRACK, - ACTIONS(4668), 1, - sym_auto, - ACTIONS(4670), 1, - anon_sym_decltype, - STATE(2707), 1, - sym_decltype_auto, + ACTIONS(5117), 1, + anon_sym_COLON, + STATE(2669), 1, + sym__enum_base_clause, STATE(2776), 1, - sym_new_declarator, - STATE(3054), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(4178), 16, + sym_enumerator_list, + ACTIONS(5113), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -248837,17 +321344,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4176), 30, + ACTIONS(5111), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -248859,53 +321373,151 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [25436] = 4, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [22343] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(4229), 1, + ACTIONS(37), 1, + anon_sym___attribute__, + ACTIONS(43), 1, + anon_sym___declspec, + ACTIONS(63), 1, + anon_sym_enum, + ACTIONS(65), 1, + anon_sym_class, + ACTIONS(67), 1, + anon_sym_struct, + ACTIONS(69), 1, + anon_sym_union, + ACTIONS(113), 1, + sym_auto, + ACTIONS(115), 1, + anon_sym_decltype, + ACTIONS(117), 1, + anon_sym_virtual, + ACTIONS(121), 1, + anon_sym_typename, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1813), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3657), 1, + sym_identifier, + ACTIONS(3663), 1, anon_sym_COLON_COLON, - ACTIONS(4324), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(3667), 1, + sym_primitive_type, + STATE(3635), 1, + sym__type_specifier, + STATE(3657), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3694), 1, + sym_qualified_type_identifier, + STATE(3717), 1, + sym_decltype_auto, + STATE(5779), 1, + sym__scope_resolution, + STATE(7638), 1, + sym_dependent_type_identifier, + STATE(3680), 2, + sym_decltype, + sym_template_type, + ACTIONS(59), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(53), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + STATE(3723), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + STATE(3799), 8, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(57), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [22459] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4878), 1, + anon_sym_COLON, + ACTIONS(5086), 1, + anon_sym_LBRACE, + STATE(3170), 1, + sym_field_declaration_list, + STATE(6090), 1, + sym_virtual_specifier, + STATE(6764), 1, + sym_base_class_clause, + ACTIONS(4880), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4874), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4322), 35, + ACTIONS(4872), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -248914,7 +321526,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -248927,14 +321538,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [25501] = 3, + anon_sym_GT2, + [22537] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1727), 7, + ACTIONS(2540), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, @@ -248942,7 +321553,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(1729), 48, + ACTIONS(2542), 51, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -248960,11 +321571,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -248991,16 +321605,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_using, anon_sym_static_assert, anon_sym_catch, - [25564] = 6, + [22603] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4261), 1, - sym_auto, - ACTIONS(4263), 1, - anon_sym_decltype, - STATE(2358), 1, - sym_decltype_auto, - ACTIONS(4336), 19, + ACTIONS(4476), 1, + anon_sym_COLON_COLON, + ACTIONS(5028), 1, + anon_sym_LT, + STATE(2425), 1, + sym_template_argument_list, + ACTIONS(4455), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -249011,16 +321625,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_COLON, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4334), 33, + ACTIONS(4463), 37, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -249030,8 +321643,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_SEMI, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -249052,72 +321668,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [25633] = 4, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [22675] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(3934), 1, - sym_literal_suffix, - ACTIONS(3803), 24, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - ACTIONS(3795), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(5088), 1, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, + ACTIONS(5090), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [25697] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4543), 19, + ACTIONS(5092), 1, + sym_auto, + ACTIONS(5094), 1, + anon_sym_decltype, + STATE(2892), 1, + sym_new_declarator, + STATE(2910), 1, + sym_decltype_auto, + STATE(3321), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5000), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -249137,18 +321711,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4541), 35, + ACTIONS(4998), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -249169,29 +321740,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - sym_auto, - anon_sym_decltype, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [25759] = 3, + [22757] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2740), 7, + ACTIONS(5121), 14, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, + anon_sym_SEMI, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2738), 47, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + ACTIONS(5119), 44, anon_sym_AMP, - anon_sym_typedef, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -249202,11 +321772,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -249221,31 +321794,31 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, + anon_sym_final, + anon_sym_override, anon_sym_virtual, anon_sym_explicit, anon_sym_typename, anon_sym_template, anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [25821] = 3, + anon_sym_try, + anon_sym_noexcept, + anon_sym_throw, + anon_sym_requires, + [22823] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2502), 6, + ACTIONS(2534), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2500), 48, + anon_sym_RBRACE, + ACTIONS(2536), 51, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -249261,11 +321834,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -249291,55 +321867,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [25883] = 3, + anon_sym_catch, + [22889] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3884), 11, + ACTIONS(4878), 1, + anon_sym_COLON, + ACTIONS(5086), 1, + anon_sym_LBRACE, + STATE(3155), 1, + sym_field_declaration_list, + STATE(6123), 1, + sym_virtual_specifier, + STATE(6788), 1, + sym_base_class_clause, + ACTIONS(4880), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4939), 20, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_const, - anon_sym_COLON, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(3886), 43, + ACTIONS(4937), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, @@ -249347,76 +321936,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [25945] = 3, + anon_sym_GT2, + [22967] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2502), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, + ACTIONS(5043), 1, anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2500), 48, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + ACTIONS(5041), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5039), 37, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, sym_auto, anon_sym_decltype, - anon_sym_virtual, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [26007] = 5, + anon_sym_final, + anon_sym_override, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [23035] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3814), 1, + ACTIONS(5043), 1, anon_sym_COLON_COLON, - STATE(3135), 1, - sym_template_argument_list, - ACTIONS(4288), 20, + ACTIONS(5041), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -249426,25 +322016,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, + anon_sym_COLON, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4286), 32, + anon_sym_DASH_GT, + ACTIONS(5039), 37, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -249454,6 +322046,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -249466,139 +322059,159 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_GT2, - [26073] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [23103] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2632), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, + ACTIONS(5052), 20, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5050), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2630), 48, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, sym_auto, anon_sym_decltype, - anon_sym_virtual, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [26135] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [23169] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4479), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, + ACTIONS(5041), 18, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(5039), 40, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_RBRACE, - ACTIONS(4477), 47, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_virtual, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [26197] = 6, + anon_sym_final, + anon_sym_override, + [23235] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1579), 1, + ACTIONS(1997), 1, anon_sym_LBRACE, - ACTIONS(4257), 1, + ACTIONS(5088), 1, anon_sym_LPAREN2, - STATE(2787), 2, + ACTIONS(5090), 1, + anon_sym_LBRACK, + ACTIONS(5092), 1, + sym_auto, + ACTIONS(5094), 1, + anon_sym_decltype, + STATE(2887), 1, + sym_new_declarator, + STATE(2910), 1, + sym_decltype_auto, + STATE(3206), 2, sym_argument_list, sym_initializer_list, - ACTIONS(4507), 19, + ACTIONS(4996), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -249618,7 +322231,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4505), 31, + ACTIONS(4994), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -249627,7 +322240,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -249650,40 +322262,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [26265] = 3, + [23317] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5115), 1, + anon_sym_LBRACE, + ACTIONS(5117), 1, + anon_sym_COLON, + STATE(2604), 1, + sym__enum_base_clause, + STATE(2806), 1, + sym_enumerator_list, + ACTIONS(5125), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(5123), 36, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [23391] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2632), 6, + ACTIONS(4476), 1, + anon_sym_COLON_COLON, + ACTIONS(5084), 1, + anon_sym_LT, + STATE(2800), 1, + sym_template_argument_list, + ACTIONS(4481), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2630), 48, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + ACTIONS(5026), 49, anon_sym_AMP, - anon_sym_typedef, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_LBRACK, anon_sym_static, anon_sym_register, anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -249695,6 +322382,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_class, anon_sym_struct, anon_sym_union, + anon_sym_or, + anon_sym_and, sym_identifier, sym_auto, anon_sym_decltype, @@ -249704,25 +322393,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_template, anon_sym_operator, anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, anon_sym_using, - anon_sym_static_assert, - [26327] = 3, + anon_sym_concept, + [23463] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4407), 7, + ACTIONS(2902), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(4405), 47, + ACTIONS(2900), 52, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -249738,11 +322424,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -249768,69 +322457,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [26389] = 3, + anon_sym_catch, + [23529] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(2476), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2474), 47, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym_typedef, - anon_sym_extern, + ACTIONS(37), 1, anon_sym___attribute__, + ACTIONS(43), 1, anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, + ACTIONS(113), 1, + sym_auto, + ACTIONS(115), 1, + anon_sym_decltype, + ACTIONS(117), 1, + anon_sym_virtual, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1813), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1853), 1, + anon_sym_enum, + ACTIONS(1855), 1, + anon_sym_class, + ACTIONS(1857), 1, + anon_sym_struct, + ACTIONS(1859), 1, + anon_sym_union, + ACTIONS(1881), 1, + anon_sym_typename, + ACTIONS(3667), 1, + sym_primitive_type, + ACTIONS(4570), 1, + sym_identifier, + ACTIONS(4580), 1, + anon_sym_COLON_COLON, + STATE(3635), 1, + sym__type_specifier, + STATE(3657), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3694), 1, + sym_qualified_type_identifier, + STATE(3717), 1, + sym_decltype_auto, + STATE(5733), 1, + sym__scope_resolution, + STATE(7638), 1, + sym_dependent_type_identifier, + STATE(3680), 2, + sym_decltype, + sym_template_type, + ACTIONS(59), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(53), 5, + anon_sym_extern, anon_sym_static, anon_sym_register, anon_sym_inline, anon_sym_thread_local, + STATE(3723), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + STATE(3799), 8, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(57), 11, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [26451] = 3, + [23645] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2680), 7, + ACTIONS(3334), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, @@ -249838,7 +322557,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2678), 47, + ACTIONS(3332), 50, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -249856,11 +322575,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -249886,10 +322608,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [26513] = 3, + [23710] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2808), 7, + ACTIONS(3382), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, @@ -249897,7 +322619,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2806), 47, + ACTIONS(3380), 50, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -249915,11 +322637,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -249945,10 +322670,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [26575] = 3, + [23775] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2808), 7, + ACTIONS(3457), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, @@ -249956,7 +322681,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2806), 47, + ACTIONS(3455), 50, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -249974,11 +322699,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -250004,71 +322732,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [26637] = 5, + [23840] = 7, ACTIONS(3), 1, sym_comment, - STATE(2223), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(4683), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - ACTIONS(4679), 18, + ACTIONS(5127), 1, + anon_sym_LBRACE, + ACTIONS(5129), 1, + anon_sym_COLON, + STATE(2836), 1, + sym__enum_base_clause, + STATE(2943), 1, + sym_enumerator_list, + ACTIONS(5113), 19, anon_sym_DASH, anon_sym_PLUS, - sym_primitive_type, - anon_sym_not, - anon_sym_compl, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, - anon_sym_requires, - sym_this, - sym_nullptr, - ACTIONS(4681), 26, - anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - anon_sym_COLON_COLON, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5111), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [26703] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [23913] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2886), 7, + ACTIONS(3401), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, @@ -250076,7 +322809,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2884), 47, + ACTIONS(3399), 50, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -250094,11 +322827,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -250124,69 +322860,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [26765] = 3, + [23978] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2890), 7, + ACTIONS(5043), 1, + anon_sym_COLON_COLON, + ACTIONS(5041), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_const, + anon_sym_COLON, + anon_sym_DOT, + ACTIONS(5039), 45, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_TILDE, anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_RBRACE, - ACTIONS(2888), 47, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, + anon_sym_RBRACK, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_virtual, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [26827] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [24045] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2894), 7, + ACTIONS(3386), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, @@ -250194,7 +322934,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2892), 47, + ACTIONS(3384), 50, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -250212,11 +322952,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -250242,10 +322985,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [26889] = 3, + [24110] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5127), 1, + anon_sym_LBRACE, + ACTIONS(5129), 1, + anon_sym_COLON, + STATE(2835), 1, + sym__enum_base_clause, + STATE(2870), 1, + sym_enumerator_list, + ACTIONS(5125), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5123), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [24183] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2898), 7, + ACTIONS(4860), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, @@ -250253,7 +323062,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2896), 47, + ACTIONS(4858), 50, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -250271,11 +323080,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -250301,10 +323113,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [26951] = 3, + [24248] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2902), 7, + ACTIONS(3207), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, @@ -250312,7 +323124,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2900), 47, + ACTIONS(3205), 50, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -250330,11 +323142,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -250360,20 +323175,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [27013] = 3, + [24313] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2696), 7, + ACTIONS(4970), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2694), 47, + ACTIONS(4968), 51, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -250389,11 +323204,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -250419,10 +323237,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [27075] = 3, + [24378] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4610), 7, + ACTIONS(4856), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, @@ -250430,7 +323248,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(4608), 47, + ACTIONS(4854), 50, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -250448,11 +323266,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -250478,20 +323299,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [27137] = 3, + [24443] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2692), 7, + ACTIONS(4974), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2690), 47, + ACTIONS(4972), 51, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -250507,11 +323328,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -250537,128 +323361,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [27199] = 3, + [24508] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4602), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(4600), 47, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + ACTIONS(4531), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [27261] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4515), 7, + anon_sym_COLON, + anon_sym_DOT, + ACTIONS(4533), 46, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_TILDE, anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - ACTIONS(4513), 47, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, + anon_sym_RBRACK, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_virtual, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [27323] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [24573] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3870), 11, + ACTIONS(4527), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -250670,7 +323438,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_const, anon_sym_COLON, anon_sym_DOT, - ACTIONS(3875), 43, + ACTIONS(4529), 46, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -250691,11 +323459,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_QMARK, @@ -250714,131 +323485,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [27385] = 6, + [24638] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1579), 1, - anon_sym_LBRACE, - ACTIONS(4257), 1, - anon_sym_LPAREN2, - STATE(2755), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(4375), 19, + ACTIONS(4523), 11, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, + anon_sym_const, + anon_sym_COLON, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4373), 31, + ACTIONS(4525), 46, 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_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [27453] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4523), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - ACTIONS(4521), 47, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, + anon_sym_RBRACK, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_virtual, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [27515] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [24703] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4523), 7, + ACTIONS(4852), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, @@ -250846,7 +323558,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(4521), 47, + ACTIONS(4850), 50, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -250864,11 +323576,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -250894,20 +323609,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [27577] = 3, + [24768] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2832), 7, + ACTIONS(4959), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2830), 47, + ACTIONS(4957), 51, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -250923,11 +323638,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -250953,20 +323671,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [27639] = 3, + [24833] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4515), 7, + ACTIONS(4963), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(4513), 47, + ACTIONS(4961), 51, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -250982,11 +323700,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -251012,20 +323733,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [27701] = 3, + [24898] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4511), 7, + ACTIONS(4963), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(4509), 47, + ACTIONS(4961), 51, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -251041,11 +323762,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -251071,140 +323795,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [27763] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4247), 16, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4245), 38, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [27825] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4692), 1, - anon_sym_DQUOTE_DQUOTE, - ACTIONS(4690), 2, - anon_sym_delete, - anon_sym_new, - ACTIONS(4688), 20, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_not, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DASH_GT, - ACTIONS(4686), 31, - anon_sym_COMMA, - anon_sym_TILDE, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_compl, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_co_await, - anon_sym_DASH_GT_STAR, - anon_sym_LPAREN_RPAREN, - anon_sym_LBRACK_RBRACK, - [27891] = 3, + [24963] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2914), 7, + ACTIONS(4959), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2912), 47, + ACTIONS(4957), 51, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -251220,11 +323824,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -251250,140 +323857,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [27953] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4700), 1, - anon_sym_DQUOTE_DQUOTE, - ACTIONS(4698), 2, - anon_sym_delete, - anon_sym_new, - ACTIONS(4696), 20, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_not, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DASH_GT, - ACTIONS(4694), 31, - anon_sym_COMMA, - anon_sym_TILDE, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_compl, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_co_await, - anon_sym_DASH_GT_STAR, - anon_sym_LPAREN_RPAREN, - anon_sym_LBRACK_RBRACK, - [28019] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4704), 25, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_literal_suffix, - ACTIONS(4702), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [28081] = 3, + [25028] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2704), 6, + ACTIONS(4870), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2702), 48, + anon_sym_RBRACE, + ACTIONS(4868), 50, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -251399,11 +323886,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -251429,80 +323919,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [28143] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4229), 1, - anon_sym_COLON_COLON, - ACTIONS(4324), 11, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_const, - anon_sym_COLON, - anon_sym_DOT, - ACTIONS(4322), 42, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [28207] = 3, + [25093] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2688), 6, + ACTIONS(4870), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2686), 48, + anon_sym_RBRACE, + ACTIONS(4868), 50, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -251518,11 +323948,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -251548,17 +323981,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [28269] = 3, + [25158] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2736), 6, + ACTIONS(4955), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2734), 48, + ACTIONS(4953), 51, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -251577,11 +324010,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -251607,79 +324043,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [28331] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4708), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_RBRACK_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - ACTIONS(4706), 29, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_typename, - anon_sym_template, - [28393] = 3, + [25223] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2740), 6, + ACTIONS(4970), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2738), 48, + anon_sym_RBRACE, + ACTIONS(4968), 50, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -251695,11 +324072,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -251725,83 +324105,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [28455] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4710), 1, - anon_sym_LBRACE, - ACTIONS(4712), 1, - anon_sym_COLON, - STATE(2604), 1, - sym__enum_base_clause, - STATE(2813), 1, - sym_enumerator_list, - ACTIONS(4278), 16, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4276), 34, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [28525] = 3, + [25288] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2744), 6, + ACTIONS(4884), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2742), 48, + anon_sym_RBRACE, + ACTIONS(4882), 50, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -251817,11 +324134,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -251847,144 +324167,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [28587] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3814), 1, - anon_sym_COLON_COLON, - ACTIONS(3819), 1, - anon_sym_LBRACE, - ACTIONS(4015), 1, - anon_sym_LT, - STATE(2839), 1, - sym_template_argument_list, - ACTIONS(3990), 3, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - ACTIONS(3803), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3795), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [28659] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4229), 1, - anon_sym_COLON_COLON, - ACTIONS(4227), 11, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_const, - anon_sym_COLON, - anon_sym_DOT, - ACTIONS(4225), 42, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [28723] = 3, + [25353] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2680), 6, + ACTIONS(4888), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2678), 48, + anon_sym_RBRACE, + ACTIONS(4886), 50, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -252000,11 +324196,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -252030,17 +324229,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [28785] = 3, + [25418] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2676), 6, + ACTIONS(4951), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2674), 48, + ACTIONS(4949), 51, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -252059,11 +324258,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -252089,75 +324291,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [28847] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3814), 1, - anon_sym_COLON_COLON, - ACTIONS(3819), 1, - anon_sym_LBRACE, - ACTIONS(3825), 1, - anon_sym_EQ, - ACTIONS(4714), 1, - anon_sym_LT, - STATE(3255), 1, - sym_template_argument_list, - ACTIONS(3829), 13, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - ACTIONS(3803), 16, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(3795), 20, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [28921] = 3, + [25483] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2788), 7, + ACTIONS(3115), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, @@ -252165,7 +324302,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2786), 47, + ACTIONS(3113), 50, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -252183,11 +324320,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -252213,10 +324353,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [28983] = 3, + [25548] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2668), 7, + ACTIONS(3411), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, @@ -252224,7 +324364,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2666), 47, + ACTIONS(3409), 50, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -252242,11 +324382,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -252272,10 +324415,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [29045] = 3, + [25613] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4471), 7, + ACTIONS(2910), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, @@ -252283,7 +324426,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(4469), 47, + ACTIONS(2908), 50, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -252301,11 +324444,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -252331,20 +324477,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [29107] = 3, + [25678] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2664), 6, + ACTIONS(3111), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2662), 48, + anon_sym_RBRACE, + ACTIONS(3109), 50, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -252360,11 +324506,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -252390,20 +324539,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [29169] = 3, + [25743] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2792), 6, + ACTIONS(4974), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2790), 48, + anon_sym_RBRACE, + ACTIONS(4972), 50, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -252419,11 +324568,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -252449,20 +324601,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [29231] = 3, + [25808] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2796), 6, + ACTIONS(3026), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2794), 48, + anon_sym_RBRACE, + ACTIONS(3024), 50, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -252478,11 +324630,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -252508,16 +324663,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [29293] = 6, + [25873] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4717), 1, - sym_auto, - ACTIONS(4719), 1, - anon_sym_decltype, - STATE(2581), 1, - sym_decltype_auto, - ACTIONS(4336), 10, + ACTIONS(4535), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -252527,8 +324676,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_const, + anon_sym_COLON, anon_sym_DOT, - ACTIONS(4334), 41, + ACTIONS(4537), 46, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -252544,18 +324694,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI, + anon_sym_COLON_COLON, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -252567,83 +324720,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, anon_sym_requires, - [29361] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3875), 2, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - ACTIONS(3877), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3882), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [29425] = 3, + [25938] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2804), 6, + ACTIONS(3174), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2802), 48, + anon_sym_RBRACE, + ACTIONS(3172), 50, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -252659,11 +324754,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -252689,10 +324787,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [29487] = 3, + [26003] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2684), 7, + ACTIONS(3244), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, @@ -252700,7 +324798,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2682), 47, + ACTIONS(3242), 50, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -252718,11 +324816,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -252748,10 +324849,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [29549] = 3, + [26068] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2684), 7, + ACTIONS(3272), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, @@ -252759,7 +324860,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2682), 47, + ACTIONS(3270), 50, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -252777,11 +324878,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -252807,70 +324911,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [29611] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4725), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(4723), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4721), 34, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [29675] = 3, + [26133] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4467), 7, + ACTIONS(3306), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, @@ -252878,7 +324922,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(4465), 47, + ACTIONS(3304), 50, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -252896,11 +324940,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -252926,10 +324973,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [29737] = 3, + [26198] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4626), 7, + ACTIONS(3310), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, @@ -252937,7 +324984,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(4624), 47, + ACTIONS(3308), 50, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -252955,11 +325002,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -252985,20 +325035,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [29799] = 3, + [26263] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2808), 6, + ACTIONS(5135), 1, + anon_sym_LBRACE, + STATE(2824), 1, + sym_enumerator_list, + ACTIONS(5133), 10, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(5131), 45, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_TILDE, anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2806), 48, - aux_sym_preproc_def_token1, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [26332] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4959), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(4957), 50, + aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -253014,11 +325128,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -253044,20 +325161,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [29861] = 3, + [26397] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2808), 6, + ACTIONS(4963), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2806), 48, + anon_sym_RBRACE, + ACTIONS(4961), 50, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -253073,11 +325190,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -253103,10 +325223,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [29923] = 3, + [26462] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4475), 7, + ACTIONS(3374), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, @@ -253114,7 +325234,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(4473), 47, + ACTIONS(3372), 50, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -253132,11 +325252,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [26527] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3393), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(3391), 50, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -253162,10 +325347,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [29985] = 3, + [26592] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4729), 25, + ACTIONS(4546), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_const, + anon_sym_COLON, + anon_sym_DOT, + ACTIONS(4548), 46, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -253182,16 +325379,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_SEMI, anon_sym_COLON_COLON, - anon_sym_RBRACK_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - ACTIONS(4727), 29, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [26657] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4566), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -253200,100 +325421,132 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, + anon_sym_const, + anon_sym_COLON, + anon_sym_DOT, + ACTIONS(4568), 46, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_typename, - anon_sym_template, - [30047] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [26722] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2816), 6, + ACTIONS(4517), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_const, + anon_sym_COLON, + anon_sym_DOT, + ACTIONS(4519), 46, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_TILDE, anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2814), 48, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, + anon_sym_RBRACK, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_virtual, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [30109] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [26787] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4503), 6, + ACTIONS(4963), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(4501), 48, + anon_sym_RBRACE, + ACTIONS(4961), 50, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -253309,11 +325562,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -253339,18 +325595,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [30171] = 7, + [26852] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3814), 1, - anon_sym_COLON_COLON, - ACTIONS(3836), 1, - anon_sym_LBRACE, - ACTIONS(3855), 1, - anon_sym_LT, - STATE(2198), 1, - sym_template_argument_list, - ACTIONS(3838), 18, + ACTIONS(5139), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -253361,17 +325609,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_EQ, + anon_sym_COLON, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(3843), 32, + ACTIONS(5137), 38, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -253379,8 +325629,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, + anon_sym_COLON_COLON, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -253402,20 +325655,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [30241] = 3, + sym_auto, + anon_sym_decltype, + [26917] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4527), 6, + ACTIONS(3026), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(4525), 48, + anon_sym_RBRACE, + ACTIONS(3024), 50, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -253431,11 +325686,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -253461,10 +325719,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [30303] = 3, + [26982] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2840), 7, + ACTIONS(4959), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, @@ -253472,7 +325730,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2838), 47, + ACTIONS(4957), 50, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -253490,11 +325748,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -253520,10 +325781,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [30365] = 3, + [27047] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2836), 7, + ACTIONS(4955), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, @@ -253531,7 +325792,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2834), 47, + ACTIONS(4953), 50, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -253549,11 +325810,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -253579,134 +325843,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [30427] = 9, + [27112] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3814), 1, - anon_sym_COLON_COLON, - ACTIONS(3819), 1, - anon_sym_LBRACE, - ACTIONS(4451), 1, - anon_sym_LT, - ACTIONS(4645), 1, - anon_sym_LBRACK, - STATE(2201), 1, - sym_template_argument_list, - ACTIONS(4643), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - ACTIONS(3803), 17, + ACTIONS(5139), 11, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, + anon_sym_LT, + anon_sym_const, + anon_sym_COLON, anon_sym_DOT, - ACTIONS(3795), 30, + ACTIONS(5137), 46, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [30501] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2824), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2822), 48, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_virtual, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [30563] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [27177] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4441), 7, + ACTIONS(3232), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, @@ -253714,7 +325916,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(4439), 47, + ACTIONS(3230), 50, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -253732,11 +325934,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -253762,20 +325967,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [30625] = 3, + [27242] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4419), 7, + ACTIONS(2946), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(4417), 47, + ACTIONS(2944), 51, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -253791,11 +325996,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -253821,71 +326029,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [30687] = 3, + [27307] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4353), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(4351), 47, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, + ACTIONS(5145), 1, sym_auto, + ACTIONS(5147), 1, anon_sym_decltype, - anon_sym_virtual, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [30749] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4229), 1, - anon_sym_COLON_COLON, - ACTIONS(4247), 11, + STATE(2731), 1, + sym_decltype_auto, + ACTIONS(5143), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -253895,9 +326048,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_const, - anon_sym_COLON, anon_sym_DOT, - ACTIONS(4245), 42, + ACTIONS(5141), 44, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -253917,13 +326069,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, + anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -253935,25 +326091,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, anon_sym_final, anon_sym_override, anon_sym_requires, - [30813] = 3, + [27378] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2780), 7, + ACTIONS(3236), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2778), 47, + ACTIONS(3234), 51, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -253969,11 +326123,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -253999,10 +326156,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [30875] = 3, + [27443] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2764), 7, + ACTIONS(4951), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, @@ -254010,7 +326167,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2762), 47, + ACTIONS(4949), 50, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -254028,11 +326185,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -254058,20 +326218,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [30937] = 3, + [27508] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2824), 7, + ACTIONS(3038), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2822), 47, + ACTIONS(3036), 51, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -254087,11 +326247,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -254117,20 +326280,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [30999] = 3, + [27573] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2816), 7, + ACTIONS(3042), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2814), 47, + ACTIONS(3040), 51, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -254146,11 +326309,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -254176,259 +326342,144 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [31061] = 6, + [27638] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1579), 1, - anon_sym_LBRACE, - ACTIONS(4257), 1, - anon_sym_LPAREN2, - STATE(2817), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(4411), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4409), 31, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [31129] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3858), 11, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_const, - anon_sym_COLON, - anon_sym_DOT, - ACTIONS(3860), 43, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3046), 6, anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [31191] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3862), 11, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, + anon_sym_LBRACK_LBRACK, + ACTIONS(3044), 51, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_const, - anon_sym_COLON, - anon_sym_DOT, - ACTIONS(3864), 43, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [31253] = 3, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [27703] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3896), 11, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_const, - anon_sym_COLON, - anon_sym_DOT, - ACTIONS(3898), 43, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3386), 6, anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_LBRACK_LBRACK, + ACTIONS(3384), 51, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [31315] = 3, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [27768] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4407), 7, + ACTIONS(3115), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(4405), 47, + ACTIONS(3113), 51, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -254444,11 +326495,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -254474,51 +326528,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [31377] = 4, + [27833] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4229), 1, - anon_sym_COLON_COLON, - ACTIONS(4247), 11, + ACTIONS(4878), 1, + anon_sym_COLON, + ACTIONS(5149), 1, + anon_sym_LBRACE, + STATE(3281), 1, + sym_field_declaration_list, + STATE(6072), 1, + sym_virtual_specifier, + STATE(6718), 1, + sym_base_class_clause, + ACTIONS(4880), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4874), 16, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_const, - anon_sym_COLON, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, anon_sym_DOT, - ACTIONS(4245), 42, + anon_sym_DASH_GT, + ACTIONS(4872), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, @@ -254528,23 +326592,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [31441] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [27910] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2784), 6, + ACTIONS(2910), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2782), 48, + ACTIONS(2908), 51, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -254563,11 +326625,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -254593,10 +326658,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [31503] = 3, + [27975] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2672), 7, + ACTIONS(3087), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, @@ -254604,7 +326669,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2670), 47, + ACTIONS(3085), 50, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -254622,11 +326687,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -254652,20 +326720,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [31565] = 3, + [28040] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4403), 7, + ACTIONS(3111), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(4401), 47, + ACTIONS(3109), 51, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -254681,11 +326749,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -254711,17 +326782,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [31627] = 3, + [28105] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2672), 6, + ACTIONS(3034), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2670), 48, + ACTIONS(3032), 51, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -254740,11 +326811,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -254770,20 +326844,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [31689] = 3, + [28170] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4479), 7, + ACTIONS(4912), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(4477), 47, + ACTIONS(4910), 51, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -254799,11 +326873,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -254829,10 +326906,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [31751] = 3, + [28235] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4503), 7, + ACTIONS(3087), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, @@ -254840,7 +326917,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(4501), 47, + ACTIONS(3085), 50, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -254858,11 +326935,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -254888,17 +326968,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [31813] = 3, + [28300] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2800), 6, + ACTIONS(4935), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2798), 48, + ACTIONS(4933), 51, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -254917,11 +326997,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -254947,77 +327030,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [31875] = 11, + [28365] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3814), 1, - anon_sym_COLON_COLON, - ACTIONS(3819), 1, - anon_sym_LBRACE, - ACTIONS(3825), 1, - anon_sym_EQ, - ACTIONS(4645), 1, - anon_sym_LBRACK, - ACTIONS(4714), 1, - anon_sym_LT, - STATE(3255), 1, - sym_template_argument_list, - ACTIONS(4643), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - ACTIONS(3829), 13, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - ACTIONS(3803), 16, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(3795), 17, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [31953] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4399), 7, + ACTIONS(3042), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, @@ -255025,7 +327041,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(4397), 47, + ACTIONS(3040), 50, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -255043,11 +327059,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -255073,69 +327092,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [32015] = 3, + [28430] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2804), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, + ACTIONS(5115), 1, + anon_sym_LBRACE, + STATE(2732), 1, + sym_enumerator_list, + ACTIONS(5133), 18, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(5131), 37, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, anon_sym_RBRACE, - ACTIONS(2802), 47, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_virtual, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_using, - anon_sym_static_assert, - [32077] = 3, + [28499] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2800), 7, + ACTIONS(3038), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, @@ -255143,7 +327167,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2798), 47, + ACTIONS(3036), 50, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -255161,11 +327185,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -255191,20 +327218,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [32139] = 3, + [28564] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2796), 7, + ACTIONS(4931), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2794), 47, + ACTIONS(4929), 51, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -255220,11 +327247,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -255250,20 +327280,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [32201] = 3, + [28629] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2886), 6, + ACTIONS(3034), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2884), 48, + anon_sym_RBRACE, + ACTIONS(3032), 50, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -255279,11 +327309,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -255309,17 +327342,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [32263] = 3, + [28694] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2890), 6, + ACTIONS(4920), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2888), 48, + ACTIONS(4918), 51, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -255338,11 +327371,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -255368,20 +327404,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [32325] = 3, + [28759] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2784), 7, + ACTIONS(4916), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2782), 47, + ACTIONS(4914), 51, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -255397,11 +327433,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -255427,20 +327466,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [32387] = 3, + [28824] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2812), 7, + ACTIONS(3087), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2810), 47, + ACTIONS(3085), 51, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -255456,11 +327495,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -255486,20 +327528,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [32449] = 3, + [28889] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4527), 7, + ACTIONS(3087), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(4525), 47, + ACTIONS(3085), 51, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -255515,11 +327557,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -255545,20 +327590,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [32511] = 3, + [28954] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2712), 6, + ACTIONS(3417), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2710), 48, + anon_sym_RBRACE, + ACTIONS(3415), 50, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -255574,11 +327619,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -255604,17 +327652,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [32573] = 3, + [29019] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2550), 6, + ACTIONS(3026), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2548), 48, + ACTIONS(3024), 51, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -255633,11 +327681,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -255663,17 +327714,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [32635] = 3, + [29084] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2894), 6, + ACTIONS(3026), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2892), 48, + ACTIONS(3024), 51, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -255692,11 +327743,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -255722,69 +327776,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [32697] = 3, + [29149] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4363), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, + ACTIONS(4476), 1, + anon_sym_COLON_COLON, + ACTIONS(5151), 1, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4361), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [32759] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4324), 19, + STATE(2724), 1, + sym_template_argument_list, + ACTIONS(5026), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -255794,26 +327795,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_COLON, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4322), 35, + ACTIONS(4481), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -255823,7 +327823,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -255836,21 +327835,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [32821] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + [29220] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2748), 6, + ACTIONS(3228), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2746), 48, + ACTIONS(3226), 51, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -255869,11 +327870,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -255899,83 +327903,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [32883] = 7, + [29285] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4710), 1, - anon_sym_LBRACE, - ACTIONS(4712), 1, - anon_sym_COLON, - STATE(2689), 1, - sym__enum_base_clause, - STATE(2814), 1, - sym_enumerator_list, - ACTIONS(4270), 16, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4268), 34, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [32953] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2688), 7, + ACTIONS(3288), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2686), 47, + ACTIONS(3286), 51, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -255991,11 +327932,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -256021,20 +327965,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [33015] = 3, + [29350] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2898), 6, + ACTIONS(3427), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2896), 48, + anon_sym_RBRACE, + ACTIONS(3425), 50, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -256050,11 +327994,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -256080,20 +328027,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [33077] = 3, + [29415] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2516), 6, + ACTIONS(4896), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2514), 48, + anon_sym_RBRACE, + ACTIONS(4894), 50, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -256109,11 +328056,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -256139,69 +328089,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [33139] = 3, + [29480] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4253), 11, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_const, - anon_sym_COLON, - anon_sym_DOT, - ACTIONS(4251), 43, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3431), 7, anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, anon_sym_COLON_COLON, - anon_sym_LBRACE, + anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, + ACTIONS(3429), 50, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [33201] = 3, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [29545] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4483), 7, + ACTIONS(3397), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, @@ -256209,7 +328162,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(4481), 47, + ACTIONS(3395), 50, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -256227,11 +328180,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -256257,20 +328213,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [33263] = 3, + [29610] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5043), 1, + anon_sym_COLON_COLON, + ACTIONS(5041), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_const, + anon_sym_COLON, + anon_sym_DOT, + ACTIONS(5039), 45, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [29677] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2792), 7, + ACTIONS(3457), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2790), 47, + ACTIONS(3455), 51, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -256286,11 +328305,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -256316,10 +328338,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [33325] = 3, + [29742] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4487), 7, + ACTIONS(3370), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, @@ -256327,7 +328349,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(4485), 47, + ACTIONS(3368), 50, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -256345,11 +328367,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -256375,17 +328400,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [33387] = 3, + [29807] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2902), 6, + ACTIONS(3401), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2900), 48, + ACTIONS(3399), 51, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -256404,11 +328429,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -256434,76 +328462,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [33449] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4324), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4322), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [33511] = 3, + [29872] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2696), 6, + ACTIONS(4908), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2694), 48, + ACTIONS(4906), 51, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -256522,11 +328491,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -256552,197 +328524,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [33573] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4425), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4423), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [33635] = 3, + [29937] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4429), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4427), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [33697] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4433), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4431), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [33759] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4491), 7, + ACTIONS(4908), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(4489), 47, + ACTIONS(4906), 51, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -256758,11 +328553,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -256788,17 +328586,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [33821] = 3, + [30002] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2692), 6, + ACTIONS(4904), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2690), 48, + ACTIONS(4902), 51, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -256817,11 +328615,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -256847,10 +328648,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [33883] = 3, + [30067] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4367), 7, + ACTIONS(4900), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, @@ -256858,7 +328659,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(4365), 47, + ACTIONS(4898), 50, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -256876,11 +328677,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -256906,83 +328710,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [33945] = 7, + [30132] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3814), 1, - anon_sym_COLON_COLON, - ACTIONS(3819), 1, - anon_sym_LBRACE, - ACTIONS(4676), 1, - anon_sym_LT, - STATE(2486), 1, - sym_template_argument_list, - ACTIONS(3803), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3795), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [34015] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2728), 7, + ACTIONS(4900), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2726), 47, + ACTIONS(4898), 51, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -256998,11 +328739,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -257028,17 +328772,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [34077] = 3, + [30197] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2684), 6, + ACTIONS(3207), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2682), 48, + ACTIONS(3205), 51, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -257057,11 +328801,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -257087,138 +328834,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [34139] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4437), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4435), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [34201] = 3, + [30262] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4449), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4447), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [34263] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2664), 7, + ACTIONS(4896), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2662), 47, + ACTIONS(4894), 51, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -257234,11 +328863,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -257264,17 +328896,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [34325] = 3, + [30327] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2684), 6, + ACTIONS(3232), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2682), 48, + ACTIONS(3230), 51, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -257293,11 +328925,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -257323,20 +328958,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [34387] = 3, + [30392] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4471), 6, + ACTIONS(3046), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(4469), 48, + anon_sym_RBRACE, + ACTIONS(3044), 50, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -257352,11 +328987,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -257382,20 +329020,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [34449] = 3, + [30457] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2832), 6, + ACTIONS(3236), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2830), 48, + anon_sym_RBRACE, + ACTIONS(3234), 50, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -257411,11 +329049,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -257441,20 +329082,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [34511] = 3, + [30522] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4511), 6, + ACTIONS(4943), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(4509), 48, + anon_sym_RBRACE, + ACTIONS(4941), 50, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -257470,11 +329111,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -257500,20 +329144,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [34573] = 3, + [30587] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4515), 6, + ACTIONS(3356), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(4513), 48, + anon_sym_RBRACE, + ACTIONS(3354), 50, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -257529,11 +329173,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -257559,20 +329206,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [34635] = 3, + [30652] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4523), 6, + ACTIONS(2946), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(4521), 48, + anon_sym_RBRACE, + ACTIONS(2944), 50, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -257588,11 +329235,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -257618,17 +329268,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [34697] = 3, + [30717] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4523), 6, + ACTIONS(4860), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(4521), 48, + ACTIONS(4858), 51, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -257647,11 +329297,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -257677,17 +329330,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [34759] = 3, + [30782] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4515), 6, + ACTIONS(3174), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(4513), 48, + ACTIONS(3172), 51, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -257706,11 +329359,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -257736,20 +329392,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [34821] = 3, + [30847] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4602), 6, + ACTIONS(4947), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(4600), 48, + anon_sym_RBRACE, + ACTIONS(4945), 50, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -257765,11 +329421,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -257795,17 +329454,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [34883] = 3, + [30912] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4610), 6, + ACTIONS(3244), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(4608), 48, + ACTIONS(3242), 51, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -257824,11 +329483,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -257854,10 +329516,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [34945] = 3, + [30977] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2512), 7, + ACTIONS(4947), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, @@ -257865,7 +329527,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2510), 47, + ACTIONS(4945), 50, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -257883,11 +329545,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -257913,81 +329578,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [35007] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4731), 1, - anon_sym_LBRACE, - STATE(2453), 1, - sym_enumerator_list, - ACTIONS(4332), 10, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(4330), 42, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [35073] = 3, + [31042] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2516), 7, + ACTIONS(4856), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2514), 47, + ACTIONS(4854), 51, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -258003,11 +329607,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -258033,204 +329640,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [35135] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4459), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4457), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [35197] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3814), 1, - anon_sym_COLON_COLON, - ACTIONS(3836), 1, - anon_sym_LBRACE, - ACTIONS(4004), 1, - anon_sym_LT, - STATE(2486), 1, - sym_template_argument_list, - ACTIONS(3838), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3843), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [35267] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1579), 1, - anon_sym_LBRACE, - ACTIONS(4257), 1, - anon_sym_LPAREN2, - STATE(2827), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(4519), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4517), 31, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [35335] = 3, + [31107] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2502), 7, + ACTIONS(3272), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2500), 47, + ACTIONS(3270), 51, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -258246,11 +329669,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -258276,135 +329702,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [35397] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4531), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4529), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [35459] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4535), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4533), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [35521] = 3, + [31172] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2914), 6, + ACTIONS(3306), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2912), 48, + ACTIONS(3304), 51, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -258423,11 +329731,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -258453,78 +329764,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [35583] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4739), 1, - anon_sym_DQUOTE_DQUOTE, - ACTIONS(4737), 2, - anon_sym_delete, - anon_sym_new, - ACTIONS(4735), 20, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_not, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DASH_GT, - ACTIONS(4733), 31, - anon_sym_COMMA, - anon_sym_TILDE, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_compl, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_co_await, - anon_sym_DASH_GT_STAR, - anon_sym_LPAREN_RPAREN, - anon_sym_LBRACK_RBRACK, - [35649] = 3, + [31237] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2476), 6, + ACTIONS(3310), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2474), 48, + ACTIONS(3308), 51, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -258543,11 +329793,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -258573,10 +329826,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [35711] = 3, + [31302] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3892), 11, + ACTIONS(5052), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -258588,7 +329841,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_const, anon_sym_COLON, anon_sym_DOT, - ACTIONS(3894), 43, + ACTIONS(5050), 46, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -258609,70 +329862,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [35773] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3902), 11, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_const, - anon_sym_COLON, - anon_sym_DOT, - ACTIONS(3904), 43, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_QMARK, @@ -258691,76 +329888,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [35835] = 3, + [31367] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3866), 11, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_const, - anon_sym_COLON, - anon_sym_DOT, - ACTIONS(3868), 43, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(4852), 6, anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_LBRACK_LBRACK, + ACTIONS(4850), 51, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [35897] = 3, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [31432] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2788), 6, + ACTIONS(3334), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2786), 48, + ACTIONS(3332), 51, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -258779,11 +329979,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -258809,17 +330012,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [35959] = 3, + [31497] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2668), 6, + ACTIONS(4870), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2666), 48, + ACTIONS(4868), 51, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -258838,11 +330041,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -258868,17 +330074,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [36021] = 3, + [31562] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2840), 6, + ACTIONS(4870), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2838), 48, + ACTIONS(4868), 51, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -258897,11 +330103,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -258927,17 +330136,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [36083] = 3, + [31627] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2836), 6, + ACTIONS(3334), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2834), 48, + ACTIONS(3332), 51, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -258956,11 +330165,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -258986,17 +330198,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [36145] = 3, + [31692] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2812), 6, + ACTIONS(4884), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2810), 48, + ACTIONS(4882), 51, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -259015,11 +330227,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -259045,204 +330260,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [36207] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3814), 1, - anon_sym_COLON_COLON, - ACTIONS(3819), 1, - anon_sym_LBRACE, - ACTIONS(3988), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(4647), 1, - anon_sym_LPAREN2, - ACTIONS(4653), 1, - anon_sym_LBRACK, - ACTIONS(4741), 1, - anon_sym_LT, - STATE(2198), 1, - sym_template_argument_list, - ACTIONS(3803), 17, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(3795), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [36283] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4563), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4561), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [36345] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4567), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4565), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [36407] = 3, + [31757] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2748), 7, + ACTIONS(4888), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2746), 47, + ACTIONS(4886), 51, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -259258,11 +330289,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -259288,69 +330322,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [36469] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4575), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4573), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [36531] = 3, + [31822] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2744), 7, + ACTIONS(3344), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, @@ -259358,7 +330333,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2742), 47, + ACTIONS(3342), 50, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -259376,11 +330351,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -259406,196 +330384,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [36593] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4750), 1, - anon_sym_DQUOTE_DQUOTE, - ACTIONS(4748), 2, - anon_sym_delete, - anon_sym_new, - ACTIONS(4746), 20, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_not, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DASH_GT, - ACTIONS(4744), 31, - anon_sym_COMMA, - anon_sym_TILDE, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_compl, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_co_await, - anon_sym_DASH_GT_STAR, - anon_sym_LPAREN_RPAREN, - anon_sym_LBRACK_RBRACK, - [36659] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4583), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4581), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [36721] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4587), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4585), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [36783] = 3, + [31887] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2780), 6, + ACTIONS(3374), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2778), 48, + ACTIONS(3372), 51, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -259614,11 +330413,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -259644,20 +330446,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [36845] = 3, + [31952] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2764), 6, + ACTIONS(3288), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2762), 48, + anon_sym_RBRACE, + ACTIONS(3286), 50, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -259673,11 +330475,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -259703,79 +330508,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [36907] = 3, + [32017] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4614), 19, + ACTIONS(4550), 11, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, + anon_sym_const, + anon_sym_COLON, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4612), 35, + ACTIONS(4555), 46, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_COLON_COLON, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [36969] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [32082] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2736), 7, + ACTIONS(3411), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2734), 47, + ACTIONS(3409), 51, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -259791,11 +330599,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -259821,20 +330632,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [37031] = 3, + [32147] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2676), 7, + ACTIONS(3393), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2674), 47, + ACTIONS(3391), 51, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -259850,11 +330661,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -259880,10 +330694,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [37093] = 3, + [32212] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2550), 7, + ACTIONS(5043), 1, + anon_sym_COLON_COLON, + ACTIONS(5155), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_const, + anon_sym_COLON, + anon_sym_DOT, + ACTIONS(5153), 45, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [32279] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3119), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, @@ -259891,7 +330768,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2548), 47, + ACTIONS(3117), 50, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -259909,11 +330786,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -259939,82 +330819,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [37155] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3814), 1, - anon_sym_COLON_COLON, - ACTIONS(4298), 1, - anon_sym_LT, - STATE(2146), 1, - sym_template_argument_list, - ACTIONS(3793), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(3801), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [37223] = 3, + [32344] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4491), 6, + ACTIONS(3119), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(4489), 48, + anon_sym_RBRACE, + ACTIONS(3117), 50, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -260030,11 +330848,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -260060,20 +330881,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [37285] = 3, + [32409] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4487), 6, + ACTIONS(3318), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(4485), 48, + anon_sym_RBRACE, + ACTIONS(3316), 50, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -260089,11 +330910,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -260119,20 +330943,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [37347] = 3, + [32474] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5041), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5039), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [32539] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4483), 6, + ACTIONS(4931), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(4481), 48, + anon_sym_RBRACE, + ACTIONS(4929), 50, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -260148,11 +331034,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -260178,79 +331067,152 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [37409] = 3, + [32604] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4754), 25, + ACTIONS(4878), 1, + anon_sym_COLON, + ACTIONS(5149), 1, + anon_sym_LBRACE, + STATE(3244), 1, + sym_field_declaration_list, + STATE(6019), 1, + sym_virtual_specifier, + STATE(6701), 1, + sym_base_class_clause, + ACTIONS(4880), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4892), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4890), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_RBRACK_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - ACTIONS(4752), 29, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [32681] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5115), 1, + anon_sym_LBRACE, + STATE(2721), 1, + sym_enumerator_list, + ACTIONS(5159), 18, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, + anon_sym_DOT, + ACTIONS(5157), 37, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_typename, - anon_sym_template, - [37471] = 3, + [32750] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4479), 6, + ACTIONS(3228), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(4477), 48, + anon_sym_RBRACE, + ACTIONS(3226), 50, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -260266,11 +331228,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -260296,17 +331261,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [37533] = 3, + [32815] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4479), 6, + ACTIONS(3276), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(4477), 48, + ACTIONS(3274), 51, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -260325,11 +331290,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -260355,17 +331323,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [37595] = 3, + [32880] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4475), 6, + ACTIONS(3280), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(4473), 48, + ACTIONS(3278), 51, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -260384,11 +331352,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -260414,17 +331385,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [37657] = 3, + [32945] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4626), 6, + ACTIONS(3318), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(4624), 48, + ACTIONS(3316), 51, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -260443,11 +331414,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -260473,17 +331447,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [37719] = 3, + [33010] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4467), 6, + ACTIONS(5135), 1, + anon_sym_LBRACE, + STATE(2763), 1, + sym_enumerator_list, + ACTIONS(5159), 10, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(5157), 45, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [33079] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3119), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(4465), 48, + ACTIONS(3117), 51, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -260502,11 +331540,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -260532,17 +331573,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [37781] = 3, + [33144] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2728), 6, + ACTIONS(3417), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2726), 48, + ACTIONS(3415), 51, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -260561,11 +331602,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -260591,20 +331635,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [37843] = 3, + [33209] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2632), 7, + ACTIONS(4943), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2630), 47, + ACTIONS(4941), 51, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -260620,11 +331664,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -260650,20 +331697,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [37905] = 3, + [33274] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2632), 7, + ACTIONS(4947), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2630), 47, + ACTIONS(4945), 51, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -260679,11 +331726,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -260709,20 +331759,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [37967] = 3, + [33339] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2712), 7, + ACTIONS(4947), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2710), 47, + ACTIONS(4945), 51, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -260738,11 +331788,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [33404] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3427), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(3425), 51, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -260768,10 +331883,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [38029] = 3, + [33469] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4758), 18, + ACTIONS(5043), 1, + anon_sym_COLON_COLON, + ACTIONS(5155), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -260786,11 +331903,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_COLON, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4756), 36, + ACTIONS(5153), 37, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -260805,7 +331923,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -260827,81 +331944,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [38091] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2962), 1, - anon_sym_DQUOTE_DQUOTE, - ACTIONS(4760), 2, - anon_sym_delete, - anon_sym_new, - ACTIONS(2958), 20, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_not, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DASH_GT, - ACTIONS(2956), 31, - anon_sym_COMMA, - anon_sym_TILDE, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_compl, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_co_await, - anon_sym_DASH_GT_STAR, - anon_sym_LPAREN_RPAREN, - anon_sym_LBRACK_RBRACK, - [38157] = 3, + sym_auto, + anon_sym_decltype, + [33536] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2704), 7, + ACTIONS(3431), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2702), 47, + ACTIONS(3429), 51, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -260917,11 +331975,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -260947,189 +332008,134 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [38219] = 5, + [33601] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2946), 1, - anon_sym_DQUOTE_DQUOTE, - ACTIONS(4762), 2, - anon_sym_delete, - anon_sym_new, - ACTIONS(2926), 20, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_not, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DASH_GT, - ACTIONS(2924), 31, - anon_sym_COMMA, + ACTIONS(3397), 6, + anon_sym_LPAREN2, anon_sym_TILDE, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_compl, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_co_await, - anon_sym_DASH_GT_STAR, - anon_sym_LPAREN_RPAREN, - anon_sym_LBRACK_RBRACK, - [38285] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4445), 19, - anon_sym_DASH, - anon_sym_PLUS, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4443), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(3395), 51, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [38347] = 3, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [33666] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4371), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4369), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3382), 6, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(3380), 51, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [38409] = 3, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [33731] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4357), 7, + ACTIONS(3268), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, @@ -261137,7 +332143,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(4355), 47, + ACTIONS(3266), 50, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -261155,11 +332161,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -261185,374 +332194,330 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [38471] = 3, + [33796] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4598), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4596), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(4920), 7, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(4918), 50, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [38533] = 3, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [33861] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4415), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4413), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3370), 6, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(3368), 51, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [38595] = 3, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [33926] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4766), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4764), 36, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3356), 6, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [38657] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4499), 19, - anon_sym_DASH, - anon_sym_PLUS, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4497), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(3354), 51, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [38719] = 3, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [33991] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4493), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3152), 7, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(3150), 50, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [38781] = 3, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [34056] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4622), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4620), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(4912), 7, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(4910), 50, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [38843] = 3, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [34121] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4441), 6, + ACTIONS(3334), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(4439), 48, + anon_sym_RBRACE, + ACTIONS(3332), 50, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -261568,11 +332533,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -261598,17 +332566,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [38905] = 3, + [34186] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4419), 6, + ACTIONS(3119), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(4417), 48, + ACTIONS(3117), 51, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -261627,11 +332595,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -261657,20 +332628,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [38967] = 3, + [34251] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4353), 6, + ACTIONS(3264), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(4351), 48, + anon_sym_RBRACE, + ACTIONS(3262), 50, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -261686,11 +332657,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -261716,20 +332690,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [39029] = 3, + [34316] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4407), 6, + ACTIONS(3276), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(4405), 48, + anon_sym_RBRACE, + ACTIONS(3274), 50, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -261745,11 +332719,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -261775,20 +332752,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [39091] = 3, + [34381] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4407), 6, + ACTIONS(3248), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(4405), 48, + anon_sym_RBRACE, + ACTIONS(3246), 50, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -261804,11 +332781,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -261834,20 +332814,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [39153] = 3, + [34446] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4403), 6, + ACTIONS(4916), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(4401), 48, + anon_sym_RBRACE, + ACTIONS(4914), 50, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -261863,11 +332843,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -261893,20 +332876,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [39215] = 3, + [34511] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4399), 6, + ACTIONS(4904), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(4397), 48, + anon_sym_RBRACE, + ACTIONS(4902), 50, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -261922,11 +332905,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -261952,69 +332938,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [39277] = 3, + [34576] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4618), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4616), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, + ACTIONS(4878), 1, + anon_sym_COLON, + ACTIONS(5149), 1, anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [39339] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4555), 19, + STATE(3240), 1, + sym_field_declaration_list, + STATE(5961), 1, + sym_virtual_specifier, + STATE(6680), 1, + sym_base_class_clause, + ACTIONS(4880), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4939), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -262029,12 +332969,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4553), 35, + ACTIONS(4937), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -262044,7 +332981,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -262057,11 +332993,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, @@ -262070,246 +333006,320 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [39401] = 3, + [34653] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4551), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4549), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(4935), 7, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(4933), 50, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [39463] = 3, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [34718] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4547), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4545), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(4908), 7, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(4906), 50, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [39525] = 3, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [34783] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4539), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4537), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3280), 7, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(3278), 50, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [39587] = 3, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [34848] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4395), 19, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(3268), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(3266), 51, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4393), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [34913] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3344), 6, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(3342), 51, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [39649] = 3, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [34978] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4594), 19, + ACTIONS(4550), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -262324,12 +333334,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, + anon_sym_COLON, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4592), 35, + ACTIONS(4555), 40, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -262339,6 +333347,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_COLON_COLON, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -262352,23 +333362,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, sym_auto, anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [39711] = 3, + [35043] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4357), 7, + ACTIONS(4908), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, @@ -262376,7 +333389,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(4355), 47, + ACTIONS(4906), 50, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -262394,11 +333407,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -262424,69 +333440,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [39773] = 3, + [35108] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4579), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4577), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3182), 7, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(3180), 50, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [39835] = 3, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [35173] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4463), 19, + ACTIONS(4476), 1, + anon_sym_COLON_COLON, + ACTIONS(5161), 1, + anon_sym_LT, + STATE(2724), 1, + sym_template_argument_list, + ACTIONS(4498), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -262496,26 +333521,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_COLON, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4461), 35, + ACTIONS(4503), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -262525,7 +333549,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -262538,80 +333561,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [39897] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + [35244] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4571), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4569), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3178), 7, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(3176), 50, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [39959] = 3, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [35309] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2512), 6, + ACTIONS(3127), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2510), 48, + ACTIONS(3125), 51, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -262630,11 +333658,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -262660,71 +333691,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [40021] = 5, + [35374] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4731), 1, - anon_sym_LBRACE, - STATE(2470), 1, - sym_enumerator_list, - ACTIONS(4349), 10, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(4347), 42, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3148), 6, anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(3146), 51, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [40087] = 3, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [35439] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4606), 19, + ACTIONS(4984), 1, + sym_auto, + ACTIONS(4986), 1, + anon_sym_decltype, + STATE(2727), 1, + sym_decltype_auto, + ACTIONS(5143), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -262743,8 +333781,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4604), 35, + ACTIONS(5141), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -262754,8 +333791,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_SEMI, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -262776,83 +333817,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [40149] = 3, + anon_sym_DASH_GT, + [35510] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4559), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4557), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3152), 6, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(3150), 51, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [40211] = 3, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [35575] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2502), 7, + ACTIONS(3178), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2500), 47, + ACTIONS(3176), 51, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -262868,11 +333909,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -262898,17 +333942,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [40273] = 3, + [35640] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4367), 6, + ACTIONS(3182), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(4365), 48, + ACTIONS(3180), 51, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -262927,11 +333971,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -262957,17 +334004,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [40335] = 3, + [35705] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4357), 6, + ACTIONS(3264), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(4355), 48, + ACTIONS(3262), 51, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -262986,11 +334033,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -263016,20 +334066,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [40397] = 3, + [35770] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4357), 6, + ACTIONS(3148), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(4355), 48, + anon_sym_RBRACE, + ACTIONS(3146), 50, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -263045,11 +334095,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [35835] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3127), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(3125), 50, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -263075,10 +334190,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_protected, anon_sym_using, anon_sym_static_assert, - [40459] = 3, + [35900] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4328), 11, + ACTIONS(5043), 1, + anon_sym_COLON_COLON, + ACTIONS(5064), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -263090,7 +334207,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_const, anon_sym_COLON, anon_sym_DOT, - ACTIONS(4326), 43, + ACTIONS(5062), 45, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -263106,16 +334223,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI, - anon_sym_COLON_COLON, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_QMARK, @@ -263134,21 +334253,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [40521] = 3, + [35967] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4324), 10, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, + ACTIONS(3248), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(3246), 51, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_using, + anon_sym_static_assert, + [36032] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5166), 10, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, anon_sym_const, anon_sym_DOT, - ACTIONS(4322), 43, + ACTIONS(5164), 46, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -263168,11 +334349,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_COLON, @@ -263192,10 +334376,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [40582] = 3, + [36096] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4770), 18, + ACTIONS(5170), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -263214,7 +334398,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4768), 35, + ACTIONS(5168), 38, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -263225,6 +334409,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, @@ -263250,73 +334435,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [40643] = 26, + sym_auto, + anon_sym_decltype, + [36160] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(1947), 1, + anon_sym_LBRACE, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(4772), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4780), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4782), 1, - anon_sym_AMP_AMP, - ACTIONS(4784), 1, - anon_sym_PIPE, - ACTIONS(4788), 1, - anon_sym_AMP, - ACTIONS(4794), 1, - anon_sym_GT_EQ, - ACTIONS(4798), 1, - anon_sym_LBRACK, - ACTIONS(4800), 1, - anon_sym_EQ, - ACTIONS(4802), 1, - anon_sym_LT_EQ_GT, - ACTIONS(4804), 1, - anon_sym_or, - ACTIONS(4806), 1, - anon_sym_and, - ACTIONS(4808), 1, - anon_sym_bitor, - ACTIONS(4810), 1, - anon_sym_bitand, - ACTIONS(4814), 1, - anon_sym_DOT, - ACTIONS(4816), 1, - anon_sym_DASH_GT, - STATE(2475), 1, + STATE(3057), 2, sym_argument_list, - ACTIONS(4776), 2, + sym_initializer_list, + ACTIONS(5174), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4786), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(4796), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4812), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4778), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4790), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(4792), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(4774), 19, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(5172), 34, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_SEMI, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -263331,54 +334494,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [40750] = 3, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [36230] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5039), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(5041), 49, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + anon_sym_or, + anon_sym_and, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_concept, + [36294] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4539), 10, + ACTIONS(4550), 21, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_const, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4537), 43, + ACTIONS(4555), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, + anon_sym_COLON_COLON, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, @@ -263388,55 +334622,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_requires, - [40811] = 3, + anon_sym_GT2, + [36358] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4547), 10, + ACTIONS(5178), 18, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_const, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4545), 43, + ACTIONS(5176), 38, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, anon_sym_COLON, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, @@ -263444,57 +334684,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [40872] = 3, + [36422] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4551), 10, + ACTIONS(5182), 18, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_const, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4549), 43, + ACTIONS(5180), 38, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, anon_sym_COLON, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, @@ -263502,57 +334745,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [40933] = 3, + [36486] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4555), 10, + ACTIONS(5186), 18, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_const, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4553), 43, + ACTIONS(5184), 38, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, anon_sym_COLON, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, @@ -263560,13 +334806,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [40994] = 3, + [36550] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4064), 18, + ACTIONS(5190), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -263585,7 +334828,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4066), 35, + ACTIONS(5188), 38, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -263596,6 +334839,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, @@ -263621,72 +334865,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [41055] = 25, + sym_auto, + anon_sym_decltype, + [36614] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(5194), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(5192), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(4780), 1, anon_sym_PIPE_PIPE, - ACTIONS(4782), 1, anon_sym_AMP_AMP, - ACTIONS(4784), 1, - anon_sym_PIPE, - ACTIONS(4788), 1, - anon_sym_AMP, - ACTIONS(4794), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(4798), 1, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, - ACTIONS(4802), 1, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - ACTIONS(4804), 1, - anon_sym_or, - ACTIONS(4806), 1, - anon_sym_and, - ACTIONS(4808), 1, anon_sym_bitor, - ACTIONS(4810), 1, anon_sym_bitand, - ACTIONS(4814), 1, - anon_sym_DOT, - ACTIONS(4816), 1, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - ACTIONS(4820), 1, - anon_sym_EQ, - STATE(2475), 1, - sym_argument_list, - ACTIONS(4776), 2, + sym_auto, + anon_sym_decltype, + [36678] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5155), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4786), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(4796), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4812), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4778), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4790), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(4792), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(4818), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(5153), 38, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -263701,10 +334980,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [41160] = 3, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [36742] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4618), 10, + ACTIONS(5186), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -263715,7 +335003,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_const, anon_sym_DOT, - ACTIONS(4616), 43, + ACTIONS(5184), 46, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -263735,11 +335023,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_COLON, @@ -263759,54 +335050,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [41221] = 3, + [36806] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4622), 10, + ACTIONS(5198), 18, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_const, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4620), 43, + ACTIONS(5196), 38, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, anon_sym_COLON, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [36870] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5202), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, + anon_sym_DOT, + ACTIONS(5200), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, @@ -263814,24 +335172,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [41282] = 5, + [36934] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4826), 1, + ACTIONS(5208), 1, anon_sym_AMP_AMP, - ACTIONS(4828), 1, + ACTIONS(5210), 1, anon_sym_and, - ACTIONS(4824), 6, + ACTIONS(5206), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(4822), 45, + ACTIONS(5204), 48, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, @@ -263849,11 +335204,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -263877,132 +335235,204 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_concept, - [41347] = 9, + [37002] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(4133), 1, - anon_sym_COLON, - ACTIONS(4830), 1, + ACTIONS(2043), 1, anon_sym_LBRACE, - STATE(3023), 1, - sym_field_declaration_list, - STATE(5320), 1, - sym_virtual_specifier, - STATE(5773), 1, - sym_base_class_clause, - ACTIONS(4135), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(4145), 12, + ACTIONS(5212), 1, + anon_sym_LPAREN2, + ACTIONS(5214), 1, + anon_sym_LBRACK, + ACTIONS(5216), 1, + sym_auto, + ACTIONS(5218), 1, + anon_sym_decltype, + STATE(3126), 1, + sym_decltype_auto, + STATE(3133), 1, + sym_new_declarator, + STATE(3435), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(4980), 20, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_const, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4143), 34, + ACTIONS(4976), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, anon_sym_GT2, - anon_sym_requires, - [41420] = 3, + [37082] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 10, + ACTIONS(1947), 1, + anon_sym_LBRACE, + ACTIONS(4978), 1, + anon_sym_LPAREN2, + STATE(3045), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5222), 18, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_const, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4493), 43, + ACTIONS(5220), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_SEMI, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, anon_sym_COLON, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, + [37152] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4525), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4523), 49, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + anon_sym_or, + anon_sym_and, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [41481] = 3, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_concept, + [37216] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4499), 10, + ACTIONS(5226), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -264013,7 +335443,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_const, anon_sym_DOT, - ACTIONS(4497), 43, + ACTIONS(5224), 46, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -264033,11 +335463,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_COLON, @@ -264057,77 +335490,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [41542] = 12, + [37280] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3814), 1, + ACTIONS(5043), 1, anon_sym_COLON_COLON, - ACTIONS(3819), 1, - anon_sym_LBRACE, - ACTIONS(4714), 1, - anon_sym_LT, - ACTIONS(4832), 1, - anon_sym_COMMA, - ACTIONS(4835), 1, - anon_sym_RBRACK, - ACTIONS(4838), 1, - anon_sym_EQ, - STATE(3255), 1, - sym_template_argument_list, - STATE(5446), 1, - aux_sym_structured_binding_declarator_repeat1, - ACTIONS(4840), 13, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - ACTIONS(3795), 16, - anon_sym_DOT_DOT_DOT, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - ACTIONS(3803), 16, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - [41621] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4706), 18, + ACTIONS(5064), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -264137,30 +335505,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_COLON, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4708), 35, + ACTIONS(5062), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -264168,7 +335534,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -264182,56 +335547,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [41682] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + [37346] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4328), 20, + ACTIONS(5230), 10, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, + anon_sym_const, anon_sym_DOT, - ACTIONS(4326), 33, + ACTIONS(5228), 46, 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_COLON_COLON, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, @@ -264239,15 +335610,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_GT2, - [41743] = 5, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [37410] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4846), 1, - anon_sym_LT, - STATE(2472), 1, - sym_template_argument_list, - ACTIONS(4844), 17, + ACTIONS(4529), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4527), 49, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + anon_sym_or, + anon_sym_and, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_concept, + [37474] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5234), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -264258,6 +335688,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, @@ -264265,7 +335696,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4842), 34, + ACTIONS(5232), 38, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -264276,9 +335707,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -264300,10 +335733,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [41808] = 3, + sym_auto, + anon_sym_decltype, + [37538] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4851), 18, + ACTIONS(5238), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -264322,7 +335757,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4849), 35, + ACTIONS(5236), 38, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -264333,6 +335768,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, @@ -264358,134 +335794,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [41869] = 6, + sym_auto, + anon_sym_decltype, + [37602] = 3, ACTIONS(3), 1, sym_comment, - STATE(2464), 3, - sym_string_literal, - sym_raw_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(4853), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(4856), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(3922), 16, + ACTIONS(5242), 18, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_literal_suffix, - ACTIONS(3920), 24, + ACTIONS(5240), 38, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [41936] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4166), 1, - anon_sym_LPAREN2, - ACTIONS(4780), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4782), 1, - anon_sym_AMP_AMP, - ACTIONS(4784), 1, - anon_sym_PIPE, - ACTIONS(4788), 1, - anon_sym_AMP, - ACTIONS(4794), 1, - anon_sym_GT_EQ, - ACTIONS(4798), 1, - anon_sym_LBRACK, - ACTIONS(4802), 1, - anon_sym_LT_EQ_GT, - ACTIONS(4804), 1, - anon_sym_or, - ACTIONS(4806), 1, - anon_sym_and, - ACTIONS(4808), 1, - anon_sym_bitor, - ACTIONS(4810), 1, - anon_sym_bitand, - ACTIONS(4814), 1, - anon_sym_DOT, - ACTIONS(4816), 1, - anon_sym_DASH_GT, - ACTIONS(4861), 1, - anon_sym_EQ, - STATE(2475), 1, - sym_argument_list, - ACTIONS(4776), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4786), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(4796), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4812), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4778), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4790), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(4792), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(4859), 20, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -264499,10 +335848,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [42041] = 3, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [37666] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4865), 18, + ACTIONS(5246), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -264521,7 +335879,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4863), 35, + ACTIONS(5244), 38, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -264532,6 +335890,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, @@ -264557,10 +335916,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [42102] = 3, + sym_auto, + anon_sym_decltype, + [37730] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4727), 18, + ACTIONS(5250), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -264579,7 +335940,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4729), 35, + ACTIONS(5248), 38, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -264590,6 +335951,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, @@ -264615,10 +335977,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [42163] = 3, + sym_auto, + anon_sym_decltype, + [37794] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4869), 18, + ACTIONS(5254), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -264637,7 +336001,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4867), 35, + ACTIONS(5252), 38, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -264648,6 +336012,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, @@ -264673,10 +336038,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [42224] = 3, + sym_auto, + anon_sym_decltype, + [37858] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4543), 10, + ACTIONS(5258), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -264687,7 +336054,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_const, anon_sym_DOT, - ACTIONS(4541), 43, + ACTIONS(5256), 46, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -264707,11 +336074,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_COLON, @@ -264731,10 +336101,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [42285] = 3, + [37922] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4559), 10, + ACTIONS(5262), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -264745,7 +336115,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_const, anon_sym_DOT, - ACTIONS(4557), 43, + ACTIONS(5260), 46, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -264765,11 +336135,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_COLON, @@ -264789,68 +336162,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [42346] = 3, + [37986] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4606), 10, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(4604), 43, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(4533), 7, anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4531), 49, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, anon_sym_or, anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [42407] = 3, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_concept, + [38050] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4873), 18, + ACTIONS(5266), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -264869,7 +336245,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4871), 35, + ACTIONS(5264), 38, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -264880,6 +336256,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, @@ -264905,10 +336282,204 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [42468] = 3, + sym_auto, + anon_sym_decltype, + [38114] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4476), 1, + anon_sym_COLON_COLON, + ACTIONS(5268), 1, + anon_sym_LT, + STATE(2704), 1, + sym_template_argument_list, + ACTIONS(5026), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4481), 37, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [38184] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4878), 1, + anon_sym_COLON, + ACTIONS(5270), 1, + anon_sym_LBRACE, + STATE(3088), 1, + sym_field_declaration_list, + STATE(6041), 1, + sym_virtual_specifier, + STATE(6887), 1, + sym_base_class_clause, + ACTIONS(4880), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4874), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4872), 37, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + anon_sym_requires, + [38260] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4548), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4546), 49, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + anon_sym_or, + anon_sym_and, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_concept, + [38324] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4571), 10, + ACTIONS(5274), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -264919,7 +336490,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_const, anon_sym_DOT, - ACTIONS(4569), 43, + ACTIONS(5272), 46, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -264939,11 +336510,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_COLON, @@ -264963,68 +336537,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [42529] = 3, + [38388] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4068), 18, + ACTIONS(5266), 10, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, + anon_sym_const, anon_sym_DOT, - ACTIONS(4070), 35, + ACTIONS(5264), 46, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_COLON, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [42590] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [38452] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4877), 18, + ACTIONS(5155), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -265043,7 +336620,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4875), 35, + ACTIONS(5153), 38, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -265054,6 +336631,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, @@ -265079,71 +336657,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [42651] = 6, + sym_auto, + anon_sym_decltype, + [38516] = 7, ACTIONS(3), 1, sym_comment, - STATE(2464), 3, - sym_string_literal, - sym_raw_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(139), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(3938), 16, + ACTIONS(4476), 1, + anon_sym_COLON_COLON, + ACTIONS(4481), 1, + anon_sym_LBRACE, + ACTIONS(5276), 1, + anon_sym_LT, + STATE(2861), 1, + sym_template_argument_list, + ACTIONS(4465), 18, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_COLON, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_literal_suffix, - ACTIONS(3936), 24, + ACTIONS(4457), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [42718] = 3, + [38588] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4579), 10, + ACTIONS(5281), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -265154,7 +336738,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_const, anon_sym_DOT, - ACTIONS(4577), 43, + ACTIONS(5279), 46, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -265174,11 +336758,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_COLON, @@ -265198,10 +336785,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [42779] = 3, + [38652] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4046), 18, + ACTIONS(5285), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -265220,7 +336807,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4048), 35, + ACTIONS(5283), 38, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -265231,6 +336818,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, @@ -265256,75 +336844,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [42840] = 10, + sym_auto, + anon_sym_decltype, + [38716] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3814), 1, - anon_sym_COLON_COLON, - ACTIONS(3819), 1, - anon_sym_LBRACE, - ACTIONS(3825), 1, - anon_sym_EQ, - ACTIONS(3888), 1, - anon_sym_COLON, - ACTIONS(4714), 1, - anon_sym_LT, - STATE(3255), 1, - sym_template_argument_list, - ACTIONS(3829), 13, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - ACTIONS(3803), 16, + ACTIONS(5289), 10, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_or, - anon_sym_and, - anon_sym_xor, + anon_sym_LT, + anon_sym_const, anon_sym_DOT, - ACTIONS(3795), 18, + ACTIONS(5287), 46, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [42915] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [38780] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4594), 10, + ACTIONS(5293), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -265335,7 +336921,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_const, anon_sym_DOT, - ACTIONS(4592), 43, + ACTIONS(5291), 46, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -265355,11 +336941,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_COLON, @@ -265379,77 +336968,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [42976] = 3, + [38844] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4046), 18, + ACTIONS(5170), 10, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, + anon_sym_const, anon_sym_DOT, - ACTIONS(4048), 35, + ACTIONS(5168), 46, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_COLON, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [43037] = 4, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [38908] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4229), 1, - anon_sym_COLON_COLON, - ACTIONS(4225), 6, + ACTIONS(4568), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(4227), 46, + ACTIONS(4566), 49, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, @@ -265467,11 +337058,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -265496,276 +337090,446 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_concept, - [43100] = 10, + [38972] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3814), 1, - anon_sym_COLON_COLON, - ACTIONS(3819), 1, - anon_sym_LBRACE, - ACTIONS(3825), 1, - anon_sym_EQ, - ACTIONS(4714), 1, - anon_sym_LT, - ACTIONS(4879), 1, - anon_sym_COLON, - STATE(3255), 1, - sym_template_argument_list, - ACTIONS(3829), 13, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - ACTIONS(3803), 16, + ACTIONS(5297), 10, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_or, - anon_sym_and, - anon_sym_xor, + anon_sym_LT, + anon_sym_const, anon_sym_DOT, - ACTIONS(3795), 18, + ACTIONS(5295), 46, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [43175] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [39036] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5208), 1, + anon_sym_AMP_AMP, + ACTIONS(5210), 1, + anon_sym_and, + ACTIONS(5303), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5305), 1, + anon_sym_or, + ACTIONS(5301), 5, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(5299), 47, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_concept, + [39108] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4046), 18, + ACTIONS(5309), 10, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, + anon_sym_const, anon_sym_DOT, - ACTIONS(4048), 35, + ACTIONS(5307), 46, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_COLON, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [43236] = 10, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [39172] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3814), 1, + ACTIONS(4519), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_COLON_COLON, - ACTIONS(3819), 1, - anon_sym_LBRACE, - ACTIONS(3825), 1, - anon_sym_EQ, - ACTIONS(3900), 1, - anon_sym_COLON, - ACTIONS(4714), 1, - anon_sym_LT, - STATE(3255), 1, - sym_template_argument_list, - ACTIONS(3829), 13, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - ACTIONS(3803), 16, + anon_sym_LBRACK_LBRACK, + ACTIONS(4517), 49, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + anon_sym_or, + anon_sym_and, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_concept, + [39236] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5313), 10, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_or, - anon_sym_and, - anon_sym_xor, + anon_sym_LT, + anon_sym_const, anon_sym_DOT, - ACTIONS(3795), 18, + ACTIONS(5311), 46, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [43311] = 4, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [39300] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3875), 2, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - ACTIONS(3877), 19, + ACTIONS(5317), 10, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, + anon_sym_const, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3882), 32, + ACTIONS(5315), 46, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [43374] = 10, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [39364] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(4537), 7, anon_sym_LPAREN2, - ACTIONS(4798), 1, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4535), 49, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_LBRACK, - ACTIONS(4814), 1, - anon_sym_DOT, - ACTIONS(4816), 1, - anon_sym_DASH_GT, - STATE(2475), 1, - sym_argument_list, - ACTIONS(4812), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4778), 3, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + anon_sym_or, + anon_sym_and, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_concept, + [39428] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5258), 18, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4883), 14, - anon_sym_DASH, - anon_sym_PLUS, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -265778,18 +337542,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(4881), 29, + anon_sym_DOT, + ACTIONS(5256), 38, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -265808,23 +337577,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - [43449] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4166), 1, - anon_sym_LPAREN2, - ACTIONS(4798), 1, - anon_sym_LBRACK, - ACTIONS(4814), 1, - anon_sym_DOT, - ACTIONS(4816), 1, - anon_sym_DASH_GT, - STATE(2475), 1, - sym_argument_list, - ACTIONS(4812), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(4883), 17, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [39492] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5262), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -265842,18 +337603,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(4881), 29, + anon_sym_DOT, + ACTIONS(5260), 38, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -265872,146 +337638,171 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - [43522] = 23, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [39556] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, - anon_sym_LPAREN2, - ACTIONS(4782), 1, - anon_sym_AMP_AMP, - ACTIONS(4784), 1, + ACTIONS(5155), 10, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, anon_sym_PIPE, - ACTIONS(4788), 1, anon_sym_AMP, - ACTIONS(4794), 1, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(5153), 46, + 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, - ACTIONS(4798), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, - ACTIONS(4802), 1, + anon_sym_RBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + anon_sym_QMARK, anon_sym_LT_EQ_GT, - ACTIONS(4806), 1, + anon_sym_or, anon_sym_and, - ACTIONS(4808), 1, anon_sym_bitor, - ACTIONS(4810), 1, + anon_sym_xor, anon_sym_bitand, - ACTIONS(4814), 1, - anon_sym_DOT, - ACTIONS(4816), 1, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - STATE(2475), 1, - sym_argument_list, - ACTIONS(4776), 2, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [39620] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5321), 10, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4786), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(4796), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4812), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4883), 2, - anon_sym_EQ, - anon_sym_or, - ACTIONS(4778), 3, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4790), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(4792), 3, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(4881), 21, + anon_sym_const, + anon_sym_DOT, + ACTIONS(5319), 46, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - [43623] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4166), 1, - anon_sym_LPAREN2, - ACTIONS(4784), 1, - anon_sym_PIPE, - ACTIONS(4788), 1, - anon_sym_AMP, - ACTIONS(4794), 1, - anon_sym_GT_EQ, - ACTIONS(4798), 1, - anon_sym_LBRACK, - ACTIONS(4802), 1, anon_sym_LT_EQ_GT, - ACTIONS(4808), 1, + anon_sym_or, + anon_sym_and, anon_sym_bitor, - ACTIONS(4810), 1, + anon_sym_xor, anon_sym_bitand, - ACTIONS(4814), 1, - anon_sym_DOT, - ACTIONS(4816), 1, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - STATE(2475), 1, - sym_argument_list, - ACTIONS(4776), 2, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [39684] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5281), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4786), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(4796), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4812), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4778), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4790), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(4792), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(4883), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, anon_sym_or, anon_sym_and, - ACTIONS(4881), 22, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(5279), 38, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -266026,10 +337817,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [43720] = 3, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [39748] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4887), 18, + ACTIONS(5325), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -266048,7 +337848,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4885), 35, + ACTIONS(5323), 38, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -266059,6 +337859,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, @@ -266084,16 +337885,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [43781] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4389), 1, sym_auto, - ACTIONS(4391), 1, anon_sym_decltype, - STATE(2664), 1, - sym_decltype_auto, - ACTIONS(4336), 20, + [39812] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5289), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -266103,27 +337900,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4334), 30, + ACTIONS(5287), 38, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -266131,6 +337932,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -266144,97 +337946,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - anon_sym_GT2, - [43848] = 19, + sym_auto, + anon_sym_decltype, + [39876] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, - anon_sym_LPAREN2, - ACTIONS(4788), 1, - anon_sym_AMP, - ACTIONS(4794), 1, - anon_sym_GT_EQ, - ACTIONS(4798), 1, - anon_sym_LBRACK, - ACTIONS(4802), 1, - anon_sym_LT_EQ_GT, - ACTIONS(4810), 1, - anon_sym_bitand, - ACTIONS(4814), 1, - anon_sym_DOT, - ACTIONS(4816), 1, - anon_sym_DASH_GT, - STATE(2475), 1, - sym_argument_list, - ACTIONS(4776), 2, + ACTIONS(5293), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4786), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(4796), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4812), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4778), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4790), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(4792), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(4883), 4, - anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, anon_sym_or, anon_sym_and, - ACTIONS(4881), 23, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(5291), 38, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_bitor, - [43941] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3814), 1, - anon_sym_COLON_COLON, - ACTIONS(3819), 1, - anon_sym_LBRACE, - ACTIONS(3825), 1, - anon_sym_EQ, - ACTIONS(3853), 1, anon_sym_COLON, - ACTIONS(4714), 1, - anon_sym_LT, - STATE(3255), 1, - sym_template_argument_list, - ACTIONS(3829), 13, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -266248,35 +338000,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - ACTIONS(3803), 16, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(3795), 18, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_bitor, anon_sym_bitand, @@ -266284,23 +338007,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [44016] = 9, + sym_auto, + anon_sym_decltype, + [39940] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(5043), 1, + anon_sym_COLON_COLON, + ACTIONS(5039), 6, anon_sym_LPAREN2, - ACTIONS(4798), 1, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LBRACK_LBRACK, + ACTIONS(5041), 49, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_LBRACK, - ACTIONS(4814), 1, - anon_sym_DOT, - ACTIONS(4816), 1, - anon_sym_DASH_GT, - STATE(2475), 1, - sym_argument_list, - ACTIONS(4812), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4891), 17, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + anon_sym_or, + anon_sym_and, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_concept, + [40006] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5297), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -266318,18 +338092,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(4889), 29, + anon_sym_DOT, + ACTIONS(5295), 38, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -266348,78 +338127,154 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - [44089] = 9, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [40070] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4133), 1, - anon_sym_COLON, - ACTIONS(4830), 1, - anon_sym_LBRACE, - STATE(2880), 1, - sym_field_declaration_list, - STATE(5296), 1, - sym_virtual_specifier, - STATE(5780), 1, - sym_base_class_clause, - ACTIONS(4135), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(4129), 12, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(2534), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2536), 49, anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, anon_sym_const, - anon_sym_DOT, - ACTIONS(4127), 34, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + anon_sym_or, + anon_sym_and, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_concept, + [40134] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2540), 7, anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2542), 49, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, anon_sym_or, anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_GT2, - anon_sym_requires, - [44162] = 5, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_concept, + [40198] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(4259), 1, + ACTIONS(2043), 1, + anon_sym_LBRACE, + ACTIONS(5212), 1, + anon_sym_LPAREN2, + ACTIONS(5214), 1, anon_sym_LBRACK, - STATE(2688), 1, + ACTIONS(5216), 1, + sym_auto, + ACTIONS(5218), 1, + anon_sym_decltype, + STATE(3126), 1, + sym_decltype_auto, + STATE(3178), 1, sym_new_declarator, - ACTIONS(4662), 19, + STATE(3474), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5024), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -266429,27 +338284,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4660), 32, + ACTIONS(5022), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -266457,7 +338309,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -266470,12 +338321,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [44227] = 3, + anon_sym_DASH_GT, + anon_sym_GT2, + [40278] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5043), 1, + anon_sym_COLON_COLON, + ACTIONS(5039), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LBRACK_LBRACK, + ACTIONS(5041), 49, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + anon_sym_or, + anon_sym_and, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_concept, + [40344] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4060), 18, + ACTIONS(1947), 1, + anon_sym_LBRACE, + ACTIONS(4978), 1, + anon_sym_LPAREN2, + STATE(3019), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5329), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -266494,11 +338414,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4062), 35, + ACTIONS(5327), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -266530,92 +338449,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [44288] = 27, + [40414] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, - anon_sym_LPAREN2, - ACTIONS(4772), 1, + ACTIONS(5333), 10, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(5331), 46, anon_sym_DOT_DOT_DOT, - ACTIONS(4780), 1, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, - ACTIONS(4782), 1, anon_sym_AMP_AMP, - ACTIONS(4784), 1, - anon_sym_PIPE, - ACTIONS(4788), 1, - anon_sym_AMP, - ACTIONS(4794), 1, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(4798), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, - ACTIONS(4802), 1, + anon_sym_RBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + anon_sym_QMARK, anon_sym_LT_EQ_GT, - ACTIONS(4804), 1, anon_sym_or, - ACTIONS(4806), 1, anon_sym_and, - ACTIONS(4808), 1, anon_sym_bitor, - ACTIONS(4810), 1, - anon_sym_bitand, - ACTIONS(4814), 1, - anon_sym_DOT, - ACTIONS(4816), 1, - anon_sym_DASH_GT, - ACTIONS(4895), 1, - anon_sym_EQ, - ACTIONS(4897), 1, - anon_sym_QMARK, - STATE(2475), 1, - sym_argument_list, - ACTIONS(4776), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4786), 2, - anon_sym_CARET, anon_sym_xor, - ACTIONS(4796), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4812), 2, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(4778), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4790), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(4792), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(4893), 18, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - [44397] = 3, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [40478] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(4901), 18, + ACTIONS(2043), 1, + anon_sym_LBRACE, + ACTIONS(5212), 1, + anon_sym_LPAREN2, + ACTIONS(5214), 1, + anon_sym_LBRACK, + ACTIONS(5216), 1, + sym_auto, + ACTIONS(5218), 1, + anon_sym_decltype, + STATE(3103), 1, + sym_new_declarator, + STATE(3126), 1, + sym_decltype_auto, + STATE(3442), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(4996), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -266625,30 +338540,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4899), 35, + ACTIONS(4994), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -266656,7 +338565,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -266670,68 +338578,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [44458] = 3, + anon_sym_GT2, + [40558] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4905), 18, + ACTIONS(5337), 10, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, + anon_sym_const, anon_sym_DOT, - ACTIONS(4903), 35, + ACTIONS(5335), 46, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_COLON, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [44519] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [40622] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1729), 18, + ACTIONS(5166), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -266750,7 +338662,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(1727), 35, + ACTIONS(5164), 38, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -266761,6 +338673,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, @@ -266786,83 +338699,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [44580] = 18, + sym_auto, + anon_sym_decltype, + [40686] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, - anon_sym_LPAREN2, - ACTIONS(4788), 1, - anon_sym_AMP, - ACTIONS(4794), 1, - anon_sym_GT_EQ, - ACTIONS(4798), 1, - anon_sym_LBRACK, - ACTIONS(4802), 1, - anon_sym_LT_EQ_GT, - ACTIONS(4810), 1, - anon_sym_bitand, - ACTIONS(4814), 1, - anon_sym_DOT, - ACTIONS(4816), 1, - anon_sym_DASH_GT, - STATE(2475), 1, - sym_argument_list, - ACTIONS(4776), 2, + ACTIONS(5341), 10, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4796), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4812), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4778), 3, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4790), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(4792), 3, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(4883), 6, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - ACTIONS(4881), 23, + anon_sym_const, + anon_sym_DOT, + ACTIONS(5339), 46, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, - [44671] = 3, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [40750] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4395), 10, + ACTIONS(5345), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -266873,7 +338776,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_const, anon_sym_DOT, - ACTIONS(4393), 43, + ACTIONS(5343), 46, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -266893,11 +338796,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_COLON, @@ -266917,139 +338823,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [44732] = 16, + [40814] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, - anon_sym_LPAREN2, - ACTIONS(4794), 1, - anon_sym_GT_EQ, - ACTIONS(4798), 1, - anon_sym_LBRACK, - ACTIONS(4802), 1, - anon_sym_LT_EQ_GT, - ACTIONS(4814), 1, - anon_sym_DOT, - ACTIONS(4816), 1, - anon_sym_DASH_GT, - STATE(2475), 1, - sym_argument_list, - ACTIONS(4776), 2, + ACTIONS(4878), 1, + anon_sym_COLON, + ACTIONS(5270), 1, + anon_sym_LBRACE, + STATE(3123), 1, + sym_field_declaration_list, + STATE(6011), 1, + sym_virtual_specifier, + STATE(6899), 1, + sym_base_class_clause, + ACTIONS(4880), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4892), 12, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4796), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4812), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4778), 3, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4790), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(4792), 3, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(4883), 7, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - ACTIONS(4881), 24, + anon_sym_GT_GT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4890), 37, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_bitor, - anon_sym_bitand, - [44819] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4245), 7, anon_sym_LPAREN2, - anon_sym_TILDE, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(4247), 46, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, - sym_identifier, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_virtual, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_concept, - [44880] = 3, + anon_sym_GT2, + anon_sym_requires, + [40890] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4463), 10, + ACTIONS(5254), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -267060,7 +338904,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_const, anon_sym_DOT, - ACTIONS(4461), 43, + ACTIONS(5252), 46, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -267080,11 +338924,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_COLON, @@ -267104,59 +338951,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [44941] = 15, + [40954] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, - anon_sym_LPAREN2, - ACTIONS(4794), 1, - anon_sym_GT_EQ, - ACTIONS(4798), 1, - anon_sym_LBRACK, - ACTIONS(4802), 1, - anon_sym_LT_EQ_GT, - ACTIONS(4814), 1, - anon_sym_DOT, - ACTIONS(4816), 1, - anon_sym_DASH_GT, - STATE(2475), 1, - sym_argument_list, - ACTIONS(4776), 2, + ACTIONS(5317), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4796), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4812), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4778), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4792), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(4883), 7, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(4881), 27, + anon_sym_DOT, + ACTIONS(5315), 38, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -267171,60 +339003,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, + anon_sym_LT_EQ_GT, anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - [45026] = 13, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [41018] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, - anon_sym_LPAREN2, - ACTIONS(4798), 1, - anon_sym_LBRACK, - ACTIONS(4802), 1, - anon_sym_LT_EQ_GT, - ACTIONS(4814), 1, - anon_sym_DOT, - ACTIONS(4816), 1, - anon_sym_DASH_GT, - STATE(2475), 1, - sym_argument_list, - ACTIONS(4776), 2, + ACTIONS(5313), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4796), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4812), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4778), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4883), 10, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(4881), 28, + anon_sym_DOT, + ACTIONS(5311), 38, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -267239,25 +339064,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, + anon_sym_LT_EQ_GT, anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - [45107] = 10, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [41082] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3814), 1, - anon_sym_COLON_COLON, - ACTIONS(3819), 1, - anon_sym_LBRACE, - ACTIONS(3825), 1, + ACTIONS(5321), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(3890), 1, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(5319), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_COLON, - ACTIONS(4714), 1, - anon_sym_LT, - STATE(3255), 1, - sym_template_argument_list, - ACTIONS(3829), 13, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -267271,7 +339125,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - ACTIONS(3803), 16, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [41146] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5309), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -267282,15 +339148,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(3795), 18, + ACTIONS(5307), 38, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -267298,8 +339167,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, anon_sym_bitor, anon_sym_bitand, @@ -267307,10 +339193,134 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [45182] = 3, + sym_auto, + anon_sym_decltype, + [41210] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5050), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(5052), 49, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + anon_sym_or, + anon_sym_and, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_concept, + [41274] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4555), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4550), 49, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + anon_sym_or, + anon_sym_and, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_concept, + [41338] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4415), 10, + ACTIONS(5250), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -267321,7 +339331,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_const, anon_sym_DOT, - ACTIONS(4413), 43, + ACTIONS(5248), 46, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -267341,11 +339351,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_COLON, @@ -267365,10 +339378,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [45243] = 3, + [41402] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4598), 10, + ACTIONS(5155), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -267379,7 +339392,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_const, anon_sym_DOT, - ACTIONS(4596), 43, + ACTIONS(5153), 46, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -267399,11 +339412,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_COLON, @@ -267423,76 +339439,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [45304] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4166), 1, - anon_sym_LPAREN2, - ACTIONS(4798), 1, - anon_sym_LBRACK, - ACTIONS(4814), 1, - anon_sym_DOT, - ACTIONS(4816), 1, - anon_sym_DASH_GT, - STATE(2475), 1, - sym_argument_list, - ACTIONS(4776), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4812), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4778), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4883), 12, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - ACTIONS(4881), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - [45381] = 3, + [41466] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4371), 10, + ACTIONS(5246), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -267503,7 +339453,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_const, anon_sym_DOT, - ACTIONS(4369), 43, + ACTIONS(5244), 46, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -267523,11 +339473,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_COLON, @@ -267547,10 +339500,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [45442] = 3, + [41530] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4909), 18, + ACTIONS(5274), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -267569,7 +339522,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4907), 35, + ACTIONS(5272), 38, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -267580,6 +339533,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, @@ -267605,10 +339559,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [45503] = 3, + sym_auto, + anon_sym_decltype, + [41594] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4913), 18, + ACTIONS(1947), 1, + anon_sym_LBRACE, + ACTIONS(4978), 1, + anon_sym_LPAREN2, + STATE(3005), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5349), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -267627,11 +339590,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4911), 35, + ACTIONS(5347), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -267663,77 +339625,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [45564] = 12, + [41664] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, - anon_sym_LPAREN2, - ACTIONS(4798), 1, - anon_sym_LBRACK, - ACTIONS(4814), 1, - anon_sym_DOT, - ACTIONS(4816), 1, - anon_sym_DASH_GT, - STATE(2475), 1, - sym_argument_list, - ACTIONS(4776), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4796), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4812), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4778), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4883), 10, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - ACTIONS(4881), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - [45643] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3838), 18, + ACTIONS(5230), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -267752,7 +339647,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(3843), 35, + ACTIONS(5228), 38, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -267763,6 +339658,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, @@ -267788,128 +339684,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [45704] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4635), 1, - anon_sym_LBRACE, - STATE(2629), 1, - sym_enumerator_list, - ACTIONS(4332), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4330), 31, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_GT2, - [45769] = 3, + [41728] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3838), 18, + ACTIONS(5242), 10, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, + anon_sym_const, anon_sym_DOT, - ACTIONS(3843), 35, + ACTIONS(5240), 46, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_COLON, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [45830] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [41792] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3838), 18, + ACTIONS(5226), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -267928,7 +339769,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(3843), 35, + ACTIONS(5224), 38, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -267939,6 +339780,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, @@ -267964,10 +339806,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [45891] = 3, + sym_auto, + anon_sym_decltype, + [41856] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4076), 18, + ACTIONS(5052), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -267977,166 +339821,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_COLON, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4078), 35, + ACTIONS(5050), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [45952] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3814), 1, anon_sym_COLON_COLON, - ACTIONS(3819), 1, anon_sym_LBRACE, - ACTIONS(4714), 1, - anon_sym_LT, - ACTIONS(4835), 1, - anon_sym_RBRACK, - ACTIONS(4838), 1, - anon_sym_EQ, - ACTIONS(4915), 1, - anon_sym_COMMA, - STATE(3255), 1, - sym_template_argument_list, - STATE(5446), 1, - aux_sym_structured_binding_declarator_repeat1, - ACTIONS(4840), 13, + anon_sym_LBRACK, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - ACTIONS(3795), 16, - anon_sym_DOT_DOT_DOT, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - ACTIONS(3803), 16, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - [46031] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4614), 10, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(4612), 43, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_QMARK, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, @@ -268146,19 +339868,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_requires, - [46092] = 3, + anon_sym_GT2, + [41920] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4251), 7, + ACTIONS(5043), 1, + anon_sym_COLON_COLON, + ACTIONS(5062), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(4253), 46, + ACTIONS(5064), 49, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, @@ -268176,11 +339899,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -268205,74 +339931,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_concept, - [46153] = 9, + [41986] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(4133), 1, - anon_sym_COLON, - ACTIONS(4830), 1, + ACTIONS(2043), 1, anon_sym_LBRACE, - STATE(2907), 1, - sym_field_declaration_list, - STATE(5258), 1, - sym_virtual_specifier, - STATE(5786), 1, - sym_base_class_clause, - ACTIONS(4135), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(4160), 12, + ACTIONS(5212), 1, + anon_sym_LPAREN2, + ACTIONS(5214), 1, + anon_sym_LBRACK, + ACTIONS(5216), 1, + sym_auto, + ACTIONS(5218), 1, + anon_sym_decltype, + STATE(3105), 1, + sym_new_declarator, + STATE(3126), 1, + sym_decltype_auto, + STATE(3428), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5000), 20, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_const, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4158), 34, + ACTIONS(4998), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, anon_sym_GT2, - anon_sym_requires, - [46226] = 3, + [42066] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4587), 10, + ACTIONS(5238), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -268283,7 +340014,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_const, anon_sym_DOT, - ACTIONS(4585), 43, + ACTIONS(5236), 46, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -268303,11 +340034,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_COLON, @@ -268327,10 +340061,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [46287] = 3, + [42130] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4583), 10, + ACTIONS(5234), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -268341,7 +340075,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_const, anon_sym_DOT, - ACTIONS(4581), 43, + ACTIONS(5232), 46, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -268361,11 +340095,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_COLON, @@ -268385,10 +340122,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [46348] = 3, + [42194] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4087), 18, + ACTIONS(5043), 1, + anon_sym_COLON_COLON, + ACTIONS(5041), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -268398,16 +340137,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_COLON, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(5039), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + [42260] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4476), 1, + anon_sym_COLON_COLON, + ACTIONS(5054), 1, + anon_sym_LT, + STATE(2501), 1, + sym_template_argument_list, + ACTIONS(4455), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4089), 35, + anon_sym_DASH_GT, + ACTIONS(4463), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -268417,11 +340222,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -268442,11 +340244,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [46409] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [42330] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4658), 18, + ACTIONS(5345), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -268465,7 +340270,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4656), 35, + ACTIONS(5343), 38, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -268476,6 +340281,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, @@ -268501,83 +340307,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [46470] = 4, + sym_auto, + anon_sym_decltype, + [42394] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4229), 1, + ACTIONS(5043), 1, anon_sym_COLON_COLON, - ACTIONS(4245), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, + ACTIONS(5041), 21, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LBRACK_LBRACK, - ACTIONS(4247), 46, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, - sym_identifier, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(5039), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_virtual, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_concept, - [46533] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + [42460] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4445), 10, + ACTIONS(4878), 1, + anon_sym_COLON, + ACTIONS(5270), 1, + anon_sym_LBRACE, + STATE(3075), 1, + sym_field_declaration_list, + STATE(5974), 1, + sym_virtual_specifier, + STATE(6934), 1, + sym_base_class_clause, + ACTIONS(4880), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4939), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_GT_GT, anon_sym_const, anon_sym_DOT, - ACTIONS(4443), 43, + ACTIONS(4937), 37, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -268586,22 +340411,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -268615,75 +340436,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, + anon_sym_GT2, anon_sym_requires, - [46594] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4826), 1, - anon_sym_AMP_AMP, - ACTIONS(4828), 1, - anon_sym_and, - ACTIONS(4921), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4923), 1, - anon_sym_or, - ACTIONS(4919), 5, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(4917), 44, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_concept, - [46663] = 3, + [42536] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4575), 10, + ACTIONS(5285), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -268694,7 +340452,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_const, anon_sym_DOT, - ACTIONS(4573), 43, + ACTIONS(5283), 46, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -268714,11 +340472,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_COLON, @@ -268738,12 +340499,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [46724] = 4, + [42600] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4925), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(4723), 20, + ACTIONS(4476), 1, + anon_sym_COLON_COLON, + ACTIONS(4503), 1, + anon_sym_LBRACE, + ACTIONS(5351), 1, + anon_sym_LT, + STATE(2861), 1, + sym_template_argument_list, + ACTIONS(4505), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -268754,17 +340521,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_EQ, + anon_sym_COLON, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4721), 32, + ACTIONS(4510), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -268774,7 +340539,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -268795,12 +340563,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [42672] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4476), 1, + anon_sym_COLON_COLON, + ACTIONS(5354), 1, + anon_sym_LT, + STATE(2704), 1, + sym_template_argument_list, + ACTIONS(4498), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4503), 37, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [46787] = 3, + [42742] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4567), 10, + ACTIONS(5202), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -268811,7 +340642,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_const, anon_sym_DOT, - ACTIONS(4565), 43, + ACTIONS(5200), 46, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -268831,11 +340662,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_COLON, @@ -268855,10 +340689,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [46848] = 3, + [42806] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4563), 10, + ACTIONS(5178), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -268869,7 +340703,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_const, anon_sym_DOT, - ACTIONS(4561), 43, + ACTIONS(5176), 46, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -268889,11 +340723,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_COLON, @@ -268913,126 +340750,132 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [46909] = 3, + [42870] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4752), 18, + ACTIONS(5198), 10, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, + anon_sym_const, anon_sym_DOT, - ACTIONS(4754), 35, + ACTIONS(5196), 46, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_COLON, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [46970] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [42934] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3838), 18, + ACTIONS(5194), 10, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, + anon_sym_const, anon_sym_DOT, - ACTIONS(3843), 35, + ACTIONS(5192), 46, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_COLON, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [47031] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [42998] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4363), 10, + ACTIONS(5190), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -269043,7 +340886,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_const, anon_sym_DOT, - ACTIONS(4361), 43, + ACTIONS(5188), 46, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -269063,11 +340906,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_COLON, @@ -269087,10 +340933,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [47092] = 3, + [43062] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4324), 10, + ACTIONS(5182), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -269101,7 +340947,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_const, anon_sym_DOT, - ACTIONS(4322), 43, + ACTIONS(5180), 46, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -269121,11 +340967,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_COLON, @@ -269145,14 +340994,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [47153] = 5, + [43126] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3814), 1, + ACTIONS(4476), 1, anon_sym_COLON_COLON, - STATE(3135), 1, + STATE(3608), 1, sym_template_argument_list, - ACTIONS(4288), 16, + ACTIONS(5106), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -269167,9 +341016,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4286), 35, + ACTIONS(5104), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -269192,11 +341044,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, @@ -269205,10 +341057,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [47218] = 3, + [43194] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3838), 18, + ACTIONS(5333), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -269227,7 +341079,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(3843), 35, + ACTIONS(5331), 38, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -269238,6 +341090,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, @@ -269263,10 +341116,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [47279] = 3, + sym_auto, + anon_sym_decltype, + [43258] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4929), 18, + ACTIONS(5337), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -269285,7 +341140,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4927), 35, + ACTIONS(5335), 38, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -269296,6 +341151,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, @@ -269321,10 +341177,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [47340] = 3, + sym_auto, + anon_sym_decltype, + [43322] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4933), 18, + ACTIONS(5341), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -269343,7 +341201,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4931), 35, + ACTIONS(5339), 38, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -269354,6 +341212,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, @@ -269379,68 +341238,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [47401] = 3, + sym_auto, + anon_sym_decltype, + [43386] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4072), 18, + ACTIONS(5325), 10, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, + anon_sym_const, anon_sym_DOT, - ACTIONS(4074), 35, + ACTIONS(5323), 46, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_COLON, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [47462] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [43450] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4645), 18, + ACTIONS(5092), 1, + sym_auto, + ACTIONS(5094), 1, + anon_sym_decltype, + STATE(2910), 1, + sym_decltype_auto, + ACTIONS(5143), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -269459,7 +341329,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4643), 35, + anon_sym_DASH_GT, + ACTIONS(5141), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -269469,11 +341340,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -269494,11 +341362,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [47523] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [43519] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4042), 18, + ACTIONS(4476), 1, + anon_sym_COLON_COLON, + ACTIONS(4503), 1, + anon_sym_LBRACE, + ACTIONS(4512), 1, + anon_sym_LT, + STATE(2863), 1, + sym_template_argument_list, + ACTIONS(4505), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -269509,15 +341386,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4044), 35, + anon_sym_DASH_GT, + ACTIONS(4510), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -269527,11 +341405,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -269552,11 +341426,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [47584] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [43590] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4937), 18, + ACTIONS(5127), 1, + anon_sym_LBRACE, + STATE(2930), 1, + sym_enumerator_list, + ACTIONS(5133), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -269575,7 +341454,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4935), 35, + anon_sym_DASH_GT, + ACTIONS(5131), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -269585,11 +341465,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -269610,11 +341486,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [47645] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [43657] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 18, + ACTIONS(5127), 1, + anon_sym_LBRACE, + STATE(2864), 1, + sym_enumerator_list, + ACTIONS(5159), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -269633,7 +341516,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(1735), 35, + anon_sym_DASH_GT, + ACTIONS(5157), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -269643,11 +341527,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -269668,11 +341548,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [47706] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [43724] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(4091), 18, + ACTIONS(4476), 1, + anon_sym_COLON_COLON, + ACTIONS(4481), 1, + anon_sym_LBRACE, + ACTIONS(4667), 1, + anon_sym_LT, + ACTIONS(5359), 1, + anon_sym_LBRACK, + STATE(3404), 1, + sym_template_argument_list, + ACTIONS(4652), 3, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + ACTIONS(5357), 3, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + ACTIONS(4465), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -269683,7 +341584,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, @@ -269691,21 +341591,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4093), 35, + anon_sym_DASH_GT, + ACTIONS(4457), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -269717,20 +341611,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [47767] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [43801] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4036), 18, + ACTIONS(5052), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -269745,11 +341637,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, + anon_sym_COLON, anon_sym_DOT, - ACTIONS(4038), 35, + anon_sym_DASH_GT, + ACTIONS(5050), 38, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -269759,11 +341650,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_COLON_COLON, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -269775,20 +341664,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [47828] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [43864] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4939), 18, + ACTIONS(5043), 1, + anon_sym_COLON_COLON, + ACTIONS(5041), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -269803,11 +341699,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, + anon_sym_COLON, anon_sym_DOT, - ACTIONS(2652), 35, + anon_sym_DASH_GT, + ACTIONS(5039), 37, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -269817,11 +341712,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -269833,20 +341725,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [47889] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [43929] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(4943), 18, + ACTIONS(2097), 1, + anon_sym_LBRACE, + ACTIONS(5361), 1, + anon_sym_LPAREN2, + ACTIONS(5363), 1, + anon_sym_LBRACK, + ACTIONS(5365), 1, + sym_auto, + ACTIONS(5367), 1, + anon_sym_decltype, + STATE(3284), 1, + sym_new_declarator, + STATE(3320), 1, + sym_decltype_auto, + STATE(3594), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(4996), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -269861,25 +341775,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, anon_sym_DOT, - ACTIONS(4941), 35, + anon_sym_DASH_GT, + ACTIONS(4994), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -269891,84 +341797,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [47950] = 7, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [44008] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4945), 1, - sym_literal_suffix, - STATE(2476), 3, - sym_string_literal, - sym_raw_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(139), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(3803), 15, + ACTIONS(5043), 1, + anon_sym_COLON_COLON, + ACTIONS(5041), 17, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_COLON, anon_sym_DOT, - ACTIONS(3795), 24, + anon_sym_DASH_GT, + ACTIONS(5039), 37, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, - anon_sym_LT_EQ_GT, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [48019] = 4, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [44073] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4229), 1, - anon_sym_COLON_COLON, - ACTIONS(4324), 20, + ACTIONS(5041), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -269989,7 +341893,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4322), 32, + ACTIONS(5039), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -269999,6 +341903,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -270021,11 +341926,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_auto, anon_sym_decltype, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - [48082] = 3, + [44136] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(4949), 18, + ACTIONS(4476), 1, + anon_sym_COLON_COLON, + ACTIONS(4481), 1, + anon_sym_LBRACE, + ACTIONS(4650), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5372), 1, + anon_sym_LT, + ACTIONS(5375), 1, + anon_sym_LBRACK, + STATE(2863), 1, + sym_template_argument_list, + ACTIONS(5369), 2, + anon_sym_RPAREN, + anon_sym_LPAREN2, + ACTIONS(4465), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -270036,7 +341958,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, @@ -270044,21 +341965,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4947), 35, + anon_sym_DASH_GT, + ACTIONS(4457), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -270079,78 +341994,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [48143] = 4, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [44213] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(4229), 1, - anon_sym_COLON_COLON, - ACTIONS(4245), 6, + ACTIONS(2097), 1, + anon_sym_LBRACE, + ACTIONS(5361), 1, anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LBRACK_LBRACK, - ACTIONS(4247), 46, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, + ACTIONS(5363), 1, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - anon_sym_or, - anon_sym_and, - sym_identifier, + ACTIONS(5365), 1, sym_auto, + ACTIONS(5367), 1, anon_sym_decltype, - anon_sym_virtual, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_concept, - [48206] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4951), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4953), 1, - anon_sym_AMP_AMP, - ACTIONS(4955), 1, - anon_sym_or, - ACTIONS(4957), 1, - anon_sym_and, - ACTIONS(4917), 16, + STATE(3320), 1, + sym_decltype_auto, + STATE(3355), 1, + sym_new_declarator, + STATE(3616), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(4980), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -270165,21 +342031,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_xor, anon_sym_DOT, - ACTIONS(4919), 33, + anon_sym_DASH_GT, + ACTIONS(4976), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -270191,20 +342053,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [48275] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [44292] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4095), 18, + ACTIONS(4555), 2, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + ACTIONS(4557), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -270218,12 +342084,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_EQ, + anon_sym_COLON, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4097), 35, + ACTIONS(4562), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -270234,10 +342102,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -270259,10 +342125,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [48336] = 3, + [44357] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4032), 18, + ACTIONS(5043), 1, + anon_sym_COLON_COLON, + ACTIONS(5064), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -270277,11 +342145,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, + anon_sym_COLON, anon_sym_DOT, - ACTIONS(4034), 35, + anon_sym_DASH_GT, + ACTIONS(5062), 37, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -270291,11 +342158,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -270307,59 +342171,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [48397] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [44422] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(4535), 10, + ACTIONS(2097), 1, + anon_sym_LBRACE, + ACTIONS(5361), 1, + anon_sym_LPAREN2, + ACTIONS(5363), 1, + anon_sym_LBRACK, + ACTIONS(5365), 1, + sym_auto, + ACTIONS(5367), 1, + anon_sym_decltype, + STATE(3260), 1, + sym_new_declarator, + STATE(3320), 1, + sym_decltype_auto, + STATE(3573), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5024), 16, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_const, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, anon_sym_DOT, - ACTIONS(4533), 43, + anon_sym_DASH_GT, + ACTIONS(5022), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, @@ -270369,78 +342252,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [48458] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [44501] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4531), 10, + ACTIONS(5139), 19, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_const, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4529), 43, + anon_sym_DASH_GT, + ACTIONS(5137), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, + anon_sym_COLON_COLON, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [48519] = 5, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [44564] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4635), 1, + ACTIONS(5378), 1, anon_sym_LBRACE, - STATE(2615), 1, + ACTIONS(5380), 1, + anon_sym_COLON, + STATE(2991), 1, + sym__enum_base_clause, + STATE(3146), 1, sym_enumerator_list, - ACTIONS(4349), 20, + ACTIONS(5113), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -270461,7 +342346,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4347), 31, + ACTIONS(5111), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -270493,14 +342378,10 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_GT2, - [48584] = 5, + [44635] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4953), 1, - anon_sym_AMP_AMP, - ACTIONS(4957), 1, - anon_sym_and, - ACTIONS(4822), 17, + ACTIONS(4505), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -270514,23 +342395,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_EQ, anon_sym_or, + anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4824), 34, + ACTIONS(4510), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -270553,10 +342437,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [48649] = 3, + anon_sym_try, + [44698] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4105), 18, + ACTIONS(4505), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -270570,12 +342455,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4107), 35, + ACTIONS(4510), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -270586,9 +342472,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -270611,20 +342497,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [48710] = 8, + anon_sym_try, + [44761] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, - anon_sym_LPAREN2, - ACTIONS(4798), 1, - anon_sym_LBRACK, - ACTIONS(4814), 1, - anon_sym_DOT, - ACTIONS(4816), 1, - anon_sym_DASH_GT, - STATE(2475), 1, - sym_argument_list, - ACTIONS(4961), 17, + ACTIONS(4505), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -270638,22 +342515,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(4959), 31, + anon_sym_DOT, + ACTIONS(4510), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -270674,22 +342556,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - [48781] = 10, + anon_sym_DASH_GT, + anon_sym_try, + [44824] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3814), 1, + ACTIONS(4476), 1, anon_sym_COLON_COLON, - ACTIONS(3819), 1, + ACTIONS(4481), 1, anon_sym_LBRACE, - ACTIONS(3825), 1, - anon_sym_EQ, - ACTIONS(3827), 1, - anon_sym_COLON, - ACTIONS(4714), 1, + ACTIONS(5359), 1, + anon_sym_LBRACK, + ACTIONS(5382), 1, anon_sym_LT, - STATE(3255), 1, + STATE(3062), 1, sym_template_argument_list, - ACTIONS(3829), 13, + ACTIONS(5357), 3, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + ACTIONS(4465), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4457), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -270703,7 +342616,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - ACTIONS(3803), 16, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [44899] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4505), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -270714,15 +342638,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(3795), 18, + ACTIONS(4510), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -270730,8 +342658,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COLON, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, anon_sym_bitor, anon_sym_bitand, @@ -270739,10 +342683,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [48856] = 3, + anon_sym_try, + [44962] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4965), 18, + ACTIONS(4982), 1, + anon_sym_LBRACK, + STATE(2916), 1, + sym_new_declarator, + ACTIONS(5387), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -270761,7 +342710,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4963), 35, + ACTIONS(5385), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -270772,8 +342721,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, @@ -270797,10 +342746,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [48917] = 3, + [45029] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4969), 18, + ACTIONS(5391), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -270814,12 +342763,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4967), 35, + ACTIONS(5389), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -270830,9 +342780,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -270855,10 +342805,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [48978] = 3, + anon_sym_try, + [45092] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4973), 18, + ACTIONS(5043), 1, + anon_sym_COLON_COLON, + ACTIONS(5155), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -270877,7 +342830,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4971), 35, + anon_sym_DASH_GT, + ACTIONS(5153), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -270887,11 +342841,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -270912,73 +342863,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [49039] = 25, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [45157] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(2097), 1, + anon_sym_LBRACE, + ACTIONS(5361), 1, anon_sym_LPAREN2, - ACTIONS(4780), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4782), 1, - anon_sym_AMP_AMP, - ACTIONS(4784), 1, - anon_sym_PIPE, - ACTIONS(4788), 1, - anon_sym_AMP, - ACTIONS(4794), 1, - anon_sym_GT_EQ, - ACTIONS(4798), 1, + ACTIONS(5363), 1, anon_sym_LBRACK, - ACTIONS(4802), 1, - anon_sym_LT_EQ_GT, - ACTIONS(4804), 1, - anon_sym_or, - ACTIONS(4806), 1, - anon_sym_and, - ACTIONS(4808), 1, - anon_sym_bitor, - ACTIONS(4810), 1, - anon_sym_bitand, - ACTIONS(4814), 1, - anon_sym_DOT, - ACTIONS(4816), 1, - anon_sym_DASH_GT, - ACTIONS(4977), 1, - anon_sym_EQ, - STATE(2475), 1, + ACTIONS(5365), 1, + sym_auto, + ACTIONS(5367), 1, + anon_sym_decltype, + STATE(3320), 1, + sym_decltype_auto, + STATE(3330), 1, + sym_new_declarator, + STATE(3627), 2, sym_argument_list, - ACTIONS(4776), 2, + sym_initializer_list, + ACTIONS(5000), 16, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4786), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(4796), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4812), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4778), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4790), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(4792), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(4975), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4998), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RBRACK, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -270990,71 +342924,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - [49144] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1735), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(1737), 46, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, + anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_concept, - [49205] = 3, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [45236] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3803), 18, + ACTIONS(4505), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -271068,12 +342952,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(3795), 35, + ACTIONS(4510), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -271084,9 +342969,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -271109,10 +342994,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [49266] = 3, + anon_sym_try, + [45299] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4981), 18, + ACTIONS(5378), 1, + anon_sym_LBRACE, + ACTIONS(5380), 1, + anon_sym_COLON, + STATE(2948), 1, + sym__enum_base_clause, + STATE(3137), 1, + sym_enumerator_list, + ACTIONS(5125), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -271122,30 +343016,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4979), 35, + ACTIONS(5123), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -271153,7 +343043,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -271167,126 +343056,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [49327] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [45370] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3875), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(4555), 2, anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(3870), 46, + anon_sym_LBRACE, + ACTIONS(4557), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_COLON, anon_sym_or, anon_sym_and, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_concept, - [49388] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1727), 7, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4562), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(1729), 46, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - anon_sym_or, - anon_sym_and, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_concept, - [49449] = 3, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [45435] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3803), 18, + ACTIONS(5166), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -271305,7 +343142,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(3795), 35, + anon_sym_DASH_GT, + ACTIONS(5164), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -271315,11 +343153,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -271340,21 +343175,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [49510] = 8, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [45497] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, - anon_sym_LPAREN2, - ACTIONS(4798), 1, - anon_sym_LBRACK, - ACTIONS(4814), 1, - anon_sym_DOT, - ACTIONS(4816), 1, - anon_sym_DASH_GT, - STATE(2475), 1, - sym_argument_list, - ACTIONS(4985), 17, + ACTIONS(4555), 2, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + ACTIONS(4557), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -271368,22 +343199,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(4983), 31, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4562), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RBRACK, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -271404,16 +343237,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - [49581] = 6, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [45561] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3814), 1, - anon_sym_COLON_COLON, - ACTIONS(4421), 1, - anon_sym_LT, - STATE(2000), 1, - sym_template_argument_list, - ACTIONS(3793), 15, + ACTIONS(5170), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -271424,12 +343253,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3801), 35, + ACTIONS(5168), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -271452,11 +343285,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, @@ -271465,24 +343298,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [49648] = 3, + [45623] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4459), 10, + ACTIONS(5043), 1, + anon_sym_COLON_COLON, + ACTIONS(5041), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_GT_GT, anon_sym_const, + anon_sym_COLON, anon_sym_DOT, - ACTIONS(4457), 43, + ACTIONS(5039), 40, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -271491,22 +343328,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -271522,82 +343356,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_requires, - [49709] = 3, + [45687] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3886), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(3884), 46, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - anon_sym_or, - anon_sym_and, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_concept, - [49770] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4166), 1, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(5088), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, - anon_sym_LBRACK, - ACTIONS(4814), 1, - anon_sym_DOT, - ACTIONS(4816), 1, - anon_sym_DASH_GT, - STATE(2475), 1, + STATE(3300), 2, sym_argument_list, - ACTIONS(4812), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4989), 17, + sym_initializer_list, + ACTIONS(5349), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -271615,7 +343386,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(4987), 29, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5347), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -271624,9 +343397,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RBRACK, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -271645,10 +343416,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - [49843] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [45755] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4877), 18, + ACTIONS(5155), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -271667,7 +343442,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4875), 35, + anon_sym_DASH_GT, + ACTIONS(5153), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -271677,11 +343453,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -271702,58 +343475,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [49904] = 13, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [45817] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, - anon_sym_LPAREN2, - ACTIONS(4798), 1, - anon_sym_LBRACK, - ACTIONS(4802), 1, - anon_sym_LT_EQ_GT, - ACTIONS(4814), 1, - anon_sym_DOT, - ACTIONS(4816), 1, - anon_sym_DASH_GT, - STATE(2475), 1, - sym_argument_list, - ACTIONS(4776), 2, + ACTIONS(5254), 19, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4796), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4812), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4778), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4993), 10, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(4991), 28, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5252), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -271768,13 +343528,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [45879] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4531), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_const, + anon_sym_COLON, + anon_sym_DOT, + ACTIONS(4533), 41, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - [49985] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [45941] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4997), 18, + ACTIONS(5230), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -271793,7 +343619,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4995), 35, + anon_sym_DASH_GT, + ACTIONS(5228), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -271803,11 +343630,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -271828,11 +343652,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [50046] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [46003] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4723), 18, + ACTIONS(5226), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -271851,7 +343678,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4721), 35, + anon_sym_DASH_GT, + ACTIONS(5224), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -271861,11 +343689,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -271886,243 +343711,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [50107] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3860), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(3858), 46, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - anon_sym_or, - anon_sym_and, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_concept, - [50168] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3864), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(3862), 46, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - anon_sym_or, - anon_sym_and, - sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_virtual, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_concept, - [50229] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [46065] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3898), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, + ACTIONS(5250), 19, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(3896), 46, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, anon_sym_or, anon_sym_and, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_concept, - [50290] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3894), 7, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5248), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(3892), 46, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - anon_sym_or, - anon_sym_and, - sym_identifier, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, sym_auto, anon_sym_decltype, - anon_sym_virtual, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_concept, - [50351] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [46127] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5001), 18, + ACTIONS(5266), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -272141,7 +343796,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4999), 35, + anon_sym_DASH_GT, + ACTIONS(5264), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -272151,11 +343807,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -272176,131 +343829,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [50412] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3904), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(3902), 46, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - anon_sym_or, - anon_sym_and, - sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_virtual, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_concept, - [50473] = 25, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [46189] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, - anon_sym_LPAREN2, - ACTIONS(4780), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4782), 1, - anon_sym_AMP_AMP, - ACTIONS(4784), 1, - anon_sym_PIPE, - ACTIONS(4788), 1, - anon_sym_AMP, - ACTIONS(4794), 1, - anon_sym_GT_EQ, - ACTIONS(4798), 1, - anon_sym_LBRACK, - ACTIONS(4802), 1, - anon_sym_LT_EQ_GT, - ACTIONS(4804), 1, - anon_sym_or, - ACTIONS(4806), 1, - anon_sym_and, - ACTIONS(4808), 1, - anon_sym_bitor, - ACTIONS(4810), 1, - anon_sym_bitand, - ACTIONS(4814), 1, - anon_sym_DOT, - ACTIONS(4816), 1, - anon_sym_DASH_GT, - ACTIONS(5005), 1, - anon_sym_EQ, - STATE(2475), 1, - sym_argument_list, - ACTIONS(4776), 2, + ACTIONS(5182), 19, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4786), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(4796), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4812), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4778), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4790), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(4792), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(5003), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5180), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RBRACK, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -272315,24 +343882,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [50578] = 3, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [46251] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4449), 10, + ACTIONS(4546), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_GT_GT, anon_sym_const, + anon_sym_COLON, anon_sym_DOT, - ACTIONS(4447), 43, + ACTIONS(4548), 41, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -272341,22 +343920,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, + anon_sym_COLON_COLON, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -272372,243 +343949,132 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_requires, - [50639] = 3, + [46313] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4437), 10, + ACTIONS(3681), 1, + anon_sym_DQUOTE_DQUOTE, + ACTIONS(5393), 2, + anon_sym_delete, + anon_sym_new, + ACTIONS(3661), 20, + anon_sym_BANG, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(4435), 43, - anon_sym_DOT_DOT_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_not, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DASH_GT, + ACTIONS(3659), 31, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, + anon_sym_TILDE, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_compl, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [50700] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3868), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(3866), 46, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - anon_sym_or, - anon_sym_and, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_concept, - [50761] = 3, + anon_sym_co_await, + anon_sym_DASH_GT_STAR, + anon_sym_LPAREN_RPAREN, + anon_sym_LBRACK_RBRACK, + [46379] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4433), 10, + ACTIONS(5397), 25, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(4431), 43, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [50822] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4429), 10, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_const, anon_sym_DOT, - ACTIONS(4427), 43, + sym_literal_suffix, + ACTIONS(5395), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_SEMI, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, anon_sym_COLON, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [50883] = 3, + [46441] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5009), 18, + ACTIONS(5234), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -272627,7 +344093,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5007), 35, + anon_sym_DASH_GT, + ACTIONS(5232), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -272637,11 +344104,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -272662,24 +344126,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [50944] = 9, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [46503] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, - anon_sym_LPAREN2, - ACTIONS(4798), 1, - anon_sym_LBRACK, - ACTIONS(4814), 1, - anon_sym_DOT, - ACTIONS(4816), 1, - anon_sym_DASH_GT, - STATE(2475), 1, - sym_argument_list, - ACTIONS(4812), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5013), 17, + ACTIONS(5178), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -272697,18 +344151,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(5011), 29, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5176), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -272727,68 +344183,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - [51017] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4425), 10, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(4423), 43, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [51078] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [46565] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4531), 20, + ACTIONS(5337), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -272798,25 +344202,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4529), 32, + anon_sym_DASH_GT, + ACTIONS(5335), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -272826,6 +344231,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -272838,18 +344244,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_GT2, - [51138] = 5, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [46627] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4710), 1, - anon_sym_LBRACE, - STATE(2763), 1, - sym_enumerator_list, - ACTIONS(4349), 16, + ACTIONS(5202), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -272864,9 +344266,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4347), 34, + ACTIONS(5200), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -272876,6 +344281,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -272888,11 +344294,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, @@ -272901,10 +344307,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [51202] = 3, + [46689] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3838), 20, + ACTIONS(4476), 1, + anon_sym_COLON_COLON, + ACTIONS(4481), 1, + anon_sym_LBRACE, + ACTIONS(4487), 1, + anon_sym_EQ, + ACTIONS(5399), 1, + anon_sym_LT, + STATE(3864), 1, + sym_template_argument_list, + ACTIONS(4491), 13, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + ACTIONS(4465), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -272915,17 +344345,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, - anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3843), 32, + ACTIONS(4457), 20, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -272935,33 +344361,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [51262] = 3, + anon_sym_DASH_GT, + [46763] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5404), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(5402), 48, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_concept, + anon_sym_requires, + [46825] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4328), 16, + ACTIONS(5313), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -272976,9 +344449,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4326), 36, + ACTIONS(5311), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -272988,7 +344464,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_COLON_COLON, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -273002,11 +344477,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, @@ -273015,55 +344490,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [51322] = 3, + [46887] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4555), 20, + ACTIONS(4566), 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_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, + anon_sym_const, + anon_sym_COLON, anon_sym_DOT, - ACTIONS(4553), 32, + ACTIONS(4568), 41, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_COLON_COLON, anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, @@ -273071,17 +344545,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_auto, anon_sym_decltype, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - [51382] = 6, + anon_sym_requires, + [46949] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4668), 1, - sym_auto, - ACTIONS(4670), 1, - anon_sym_decltype, - STATE(2707), 1, - sym_decltype_auto, - ACTIONS(4336), 16, + ACTIONS(5406), 1, + anon_sym_LBRACE, + ACTIONS(5408), 1, + anon_sym_COLON, + STATE(3142), 1, + sym__enum_base_clause, + STATE(3228), 1, + sym_enumerator_list, + ACTIONS(5125), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -273098,7 +344577,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4334), 33, + ACTIONS(5123), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -273108,7 +344587,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -273130,12 +344608,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [51448] = 3, + [47019] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4551), 20, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(5088), 1, + anon_sym_LPAREN2, + STATE(3331), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5174), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -273145,26 +344632,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4549), 32, + anon_sym_DASH_GT, + ACTIONS(5172), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACE, + anon_sym_GT_EQ, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -273173,6 +344659,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -273185,14 +344672,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [47087] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5412), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(5410), 48, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_GT2, - [51508] = 3, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_concept, + anon_sym_requires, + [47149] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4547), 20, + ACTIONS(5420), 1, + anon_sym_DQUOTE_DQUOTE, + ACTIONS(5418), 2, + anon_sym_delete, + anon_sym_new, + ACTIONS(5416), 20, + anon_sym_BANG, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -273202,54 +344752,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, + anon_sym_not, anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DOT, - ACTIONS(4545), 32, - anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, + ACTIONS(5414), 31, anon_sym_COMMA, - anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, + anon_sym_GT_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, + anon_sym_compl, anon_sym_LT_EQ_GT, anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [51568] = 3, + anon_sym_co_await, + anon_sym_DASH_GT_STAR, + anon_sym_LPAREN_RPAREN, + anon_sym_LBRACK_RBRACK, + [47215] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4539), 20, + ACTIONS(5428), 1, + anon_sym_DQUOTE_DQUOTE, + ACTIONS(5426), 2, + anon_sym_delete, + anon_sym_new, + ACTIONS(5424), 20, + anon_sym_BANG, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -273259,54 +344813,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, + anon_sym_not, anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DOT, - ACTIONS(4537), 32, - anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, + ACTIONS(5422), 31, anon_sym_COMMA, - anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, + anon_sym_GT_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, + anon_sym_compl, anon_sym_LT_EQ_GT, anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [51628] = 3, + anon_sym_co_await, + anon_sym_DASH_GT_STAR, + anon_sym_LPAREN_RPAREN, + anon_sym_LBRACK_RBRACK, + [47281] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4543), 20, + ACTIONS(5434), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(5432), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -273316,27 +344870,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4541), 32, + ACTIONS(5430), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -273344,6 +344901,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -273357,13 +344915,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [51688] = 3, + [47345] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4463), 20, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(5088), 1, + anon_sym_LPAREN2, + STATE(3326), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5222), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -273373,26 +344935,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4461), 32, + anon_sym_DASH_GT, + ACTIONS(5220), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACE, + anon_sym_GT_EQ, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -273401,6 +344962,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -273413,16 +344975,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [51748] = 4, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [47413] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5015), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(4723), 20, + ACTIONS(5442), 1, + anon_sym_DQUOTE_DQUOTE, + ACTIONS(5440), 2, + anon_sym_delete, + anon_sym_new, + ACTIONS(5438), 20, + anon_sym_BANG, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -273436,24 +345000,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_EQ, + anon_sym_not, anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4721), 31, - anon_sym_DOT_DOT_DOT, + ACTIONS(5436), 31, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -273467,77 +345027,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, + anon_sym_compl, anon_sym_LT_EQ_GT, anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, + anon_sym_co_await, anon_sym_DASH_GT_STAR, - [51810] = 3, + anon_sym_LPAREN_RPAREN, + anon_sym_LBRACK_RBRACK, + [47479] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(4559), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4557), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(4476), 1, + anon_sym_COLON_COLON, + ACTIONS(4481), 1, anon_sym_LBRACE, + ACTIONS(4487), 1, + anon_sym_EQ, + ACTIONS(5359), 1, anon_sym_LBRACK, - anon_sym_QMARK, + ACTIONS(5399), 1, + anon_sym_LT, + STATE(3864), 1, + sym_template_argument_list, + ACTIONS(5357), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + ACTIONS(4491), 13, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [51870] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4229), 1, - anon_sym_COLON_COLON, - ACTIONS(4324), 16, + ACTIONS(4465), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -273548,52 +345081,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4322), 35, + ACTIONS(4457), 17, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [51932] = 3, + anon_sym_DASH_GT, + [47557] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3838), 20, + ACTIONS(4476), 1, + anon_sym_COLON_COLON, + ACTIONS(4481), 1, + anon_sym_LBRACE, + ACTIONS(4650), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5369), 1, + anon_sym_LPAREN2, + ACTIONS(5375), 1, + anon_sym_LBRACK, + ACTIONS(5444), 1, + anon_sym_LT, + STATE(2845), 1, + sym_template_argument_list, + ACTIONS(4465), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -273604,27 +345133,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3843), 32, + ACTIONS(4457), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -273645,73 +345170,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [51992] = 7, + anon_sym_DASH_GT, + [47633] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4257), 1, - anon_sym_LPAREN2, - ACTIONS(5017), 1, - anon_sym_LBRACK, - STATE(2721), 1, - sym_argument_list, - ACTIONS(5019), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4961), 17, + ACTIONS(4517), 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_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - ACTIONS(4959), 30, + anon_sym_const, + anon_sym_COLON, + anon_sym_DOT, + ACTIONS(4519), 41, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [52060] = 3, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [47695] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3838), 20, + ACTIONS(4476), 1, + anon_sym_COLON_COLON, + ACTIONS(4481), 1, + anon_sym_LBRACE, + ACTIONS(5276), 1, + anon_sym_LT, + ACTIONS(5359), 1, + anon_sym_LBRACK, + STATE(2861), 1, + sym_template_argument_list, + ACTIONS(5357), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + ACTIONS(4465), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -273722,27 +345257,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3843), 32, + ACTIONS(4457), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -273763,20 +345294,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [52120] = 7, + anon_sym_DASH_GT, + [47769] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3814), 1, + ACTIONS(4476), 1, anon_sym_COLON_COLON, - ACTIONS(3836), 1, + ACTIONS(4481), 1, anon_sym_LBRACE, - ACTIONS(4122), 1, + ACTIONS(5382), 1, anon_sym_LT, - STATE(2770), 1, + STATE(3062), 1, sym_template_argument_list, - ACTIONS(3838), 19, + ACTIONS(4465), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -273786,24 +345316,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(3843), 29, + anon_sym_DASH_GT, + ACTIONS(4457), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -273812,6 +345343,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -273824,90 +345356,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [52188] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4257), 1, - anon_sym_LPAREN2, - ACTIONS(4977), 1, - anon_sym_EQ, - ACTIONS(5017), 1, - anon_sym_LBRACK, - ACTIONS(5025), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5027), 1, - anon_sym_AMP_AMP, - ACTIONS(5029), 1, - anon_sym_PIPE, - ACTIONS(5033), 1, - anon_sym_AMP, - ACTIONS(5039), 1, - anon_sym_GT_EQ, - ACTIONS(5043), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5045), 1, - anon_sym_or, - ACTIONS(5047), 1, - anon_sym_and, - ACTIONS(5049), 1, - anon_sym_bitor, - ACTIONS(5051), 1, - anon_sym_bitand, - STATE(2721), 1, - sym_argument_list, - ACTIONS(5019), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5021), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5031), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5041), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5053), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5023), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5035), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5037), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(4975), 19, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [52290] = 3, + [47839] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3838), 20, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(5088), 1, + anon_sym_LPAREN2, + STATE(3312), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5329), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -273921,24 +345382,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3843), 32, + ACTIONS(5327), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -273961,10 +345420,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [52350] = 3, + [47907] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3838), 20, + ACTIONS(5406), 1, + anon_sym_LBRACE, + ACTIONS(5408), 1, + anon_sym_COLON, + STATE(3131), 1, + sym__enum_base_clause, + STATE(3252), 1, + sym_enumerator_list, + ACTIONS(5113), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -273978,14 +345445,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3843), 32, + ACTIONS(5111), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -273995,7 +345458,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -274007,21 +345470,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [52410] = 3, + [47977] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4606), 20, + ACTIONS(4674), 1, + sym_literal_suffix, + ACTIONS(4465), 24, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -274031,27 +345498,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(4604), 32, + ACTIONS(4457), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACE, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -274059,104 +345535,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [52470] = 24, + [48041] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4257), 1, - anon_sym_LPAREN2, - ACTIONS(5005), 1, - anon_sym_EQ, - ACTIONS(5017), 1, - anon_sym_LBRACK, - ACTIONS(5025), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5027), 1, - anon_sym_AMP_AMP, - ACTIONS(5029), 1, - anon_sym_PIPE, - ACTIONS(5033), 1, - anon_sym_AMP, - ACTIONS(5039), 1, - anon_sym_GT_EQ, - ACTIONS(5043), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5045), 1, - anon_sym_or, - ACTIONS(5047), 1, - anon_sym_and, - ACTIONS(5049), 1, - anon_sym_bitor, - ACTIONS(5051), 1, - anon_sym_bitand, - STATE(2721), 1, - sym_argument_list, - ACTIONS(5019), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5021), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5031), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5041), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5053), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5023), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5035), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5037), 3, - anon_sym_GT, - anon_sym_LT_EQ, + ACTIONS(4476), 1, + anon_sym_COLON_COLON, + ACTIONS(4503), 1, + anon_sym_LBRACE, + ACTIONS(4654), 1, anon_sym_LT, - ACTIONS(5003), 19, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [52572] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4571), 20, + STATE(3062), 1, + sym_template_argument_list, + ACTIONS(4505), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -274166,26 +345564,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4569), 32, + anon_sym_DASH_GT, + ACTIONS(4510), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACE, + anon_sym_GT_EQ, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -274194,6 +345591,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -274206,14 +345604,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [52632] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [48111] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4579), 20, + ACTIONS(5317), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -274223,25 +345619,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4577), 32, + anon_sym_DASH_GT, + ACTIONS(5315), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -274251,6 +345648,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -274263,72 +345661,170 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_GT2, - [52692] = 24, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [48173] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4257), 1, + ACTIONS(5449), 6, anon_sym_LPAREN2, - ACTIONS(4861), 1, - anon_sym_EQ, - ACTIONS(5017), 1, - anon_sym_LBRACK, - ACTIONS(5025), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5027), 1, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - ACTIONS(5029), 1, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(5447), 48, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_concept, + anon_sym_requires, + [48235] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4535), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, anon_sym_PIPE, - ACTIONS(5033), 1, anon_sym_AMP, - ACTIONS(5039), 1, + anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(5043), 1, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_const, + anon_sym_COLON, + anon_sym_DOT, + ACTIONS(4537), 41, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, anon_sym_LT_EQ_GT, - ACTIONS(5045), 1, anon_sym_or, - ACTIONS(5047), 1, anon_sym_and, - ACTIONS(5049), 1, anon_sym_bitor, - ACTIONS(5051), 1, + anon_sym_xor, anon_sym_bitand, - STATE(2721), 1, - sym_argument_list, - ACTIONS(5019), 2, - anon_sym_DOT, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - ACTIONS(5021), 2, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [48297] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4476), 1, + anon_sym_COLON_COLON, + ACTIONS(4503), 1, + anon_sym_LBRACE, + ACTIONS(4539), 1, + anon_sym_LT, + STATE(2845), 1, + sym_template_argument_list, + ACTIONS(4505), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5031), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5041), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5053), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5023), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(5035), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5037), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(4859), 19, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4510), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -274343,12 +345839,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [52794] = 3, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [48367] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4618), 20, + ACTIONS(5258), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -274358,25 +345859,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4616), 32, + anon_sym_DASH_GT, + ACTIONS(5256), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -274386,6 +345888,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -274398,14 +345901,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_GT2, - [52854] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [48429] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4594), 20, + ACTIONS(5262), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -274415,25 +345918,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4592), 32, + anon_sym_DASH_GT, + ACTIONS(5260), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -274443,6 +345947,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -274455,26 +345960,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_GT2, - [52914] = 8, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [48491] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4257), 1, - anon_sym_LPAREN2, - ACTIONS(5017), 1, - anon_sym_LBRACK, - STATE(2721), 1, - sym_argument_list, - ACTIONS(5019), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5053), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4891), 17, + ACTIONS(5309), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -274492,15 +345985,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(4889), 28, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5307), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -274519,19 +346017,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [52984] = 6, + [48553] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1617), 1, - anon_sym_LBRACE, - ACTIONS(4385), 1, - anon_sym_LPAREN2, - STATE(2967), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(4519), 20, + ACTIONS(5186), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -274541,24 +346036,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4517), 28, + anon_sym_DASH_GT, + ACTIONS(5184), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -274567,6 +346065,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -274579,55 +346078,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [53050] = 12, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [48615] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4257), 1, - anon_sym_LPAREN2, - ACTIONS(5017), 1, - anon_sym_LBRACK, - ACTIONS(5043), 1, - anon_sym_LT_EQ_GT, - STATE(2721), 1, - sym_argument_list, - ACTIONS(5019), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5021), 2, + ACTIONS(5274), 19, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5041), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5053), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5023), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4993), 10, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(4991), 27, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5272), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -274642,27 +346131,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, + anon_sym_LT_EQ_GT, anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [53128] = 8, + [48677] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4257), 1, - anon_sym_LPAREN2, - ACTIONS(5017), 1, - anon_sym_LBRACK, - STATE(2721), 1, - sym_argument_list, - ACTIONS(5019), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5053), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4989), 17, + ACTIONS(5345), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -274680,15 +346162,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(4987), 28, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5343), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -274707,57 +346194,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [53198] = 3, + [48739] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 20, + ACTIONS(4527), 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_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, + anon_sym_const, + anon_sym_COLON, anon_sym_DOT, - ACTIONS(4493), 32, + ACTIONS(4529), 41, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_COLON_COLON, anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, @@ -274765,56 +346255,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_auto, anon_sym_decltype, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - [53258] = 3, + anon_sym_requires, + [48801] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4499), 20, + ACTIONS(4550), 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_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, + anon_sym_const, + anon_sym_COLON, anon_sym_DOT, - ACTIONS(4497), 32, + ACTIONS(4555), 41, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_COLON_COLON, anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, @@ -274822,13 +346314,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_auto, anon_sym_decltype, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - [53318] = 4, + anon_sym_requires, + [48863] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5055), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(4723), 19, + ACTIONS(5453), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -274842,15 +346335,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4721), 32, + ACTIONS(5451), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -274858,8 +346351,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -274881,18 +346377,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [53380] = 7, + [48925] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3814), 1, - anon_sym_COLON_COLON, - ACTIONS(3819), 1, - anon_sym_LBRACE, - ACTIONS(5057), 1, - anon_sym_LT, - STATE(2770), 1, - sym_template_argument_list, - ACTIONS(3803), 19, + ACTIONS(5457), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -274902,25 +346390,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(3795), 29, + ACTIONS(5455), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -274928,6 +346422,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -274941,22 +346436,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - anon_sym_GT2, - [53448] = 7, + [48987] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3988), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(4653), 1, - anon_sym_LBRACK, - ACTIONS(4647), 2, - anon_sym_RPAREN, - anon_sym_LPAREN2, - ACTIONS(3990), 3, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - ACTIONS(3803), 19, + ACTIONS(5341), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -274976,14 +346459,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3795), 26, + ACTIONS(5339), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -274995,18 +346482,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [53516] = 3, + [49049] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4395), 20, + ACTIONS(5190), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -275016,25 +346508,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4393), 32, + anon_sym_DASH_GT, + ACTIONS(5188), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -275044,6 +346537,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -275056,14 +346550,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_GT2, - [53576] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [49111] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4324), 20, + ACTIONS(3689), 1, + anon_sym_DQUOTE_DQUOTE, + ACTIONS(5459), 2, + anon_sym_delete, + anon_sym_new, + ACTIONS(3685), 20, + anon_sym_BANG, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -275073,63 +346573,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, + anon_sym_not, anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DOT, - ACTIONS(4322), 32, - anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, + ACTIONS(3683), 31, anon_sym_COMMA, - anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, + anon_sym_GT_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, + anon_sym_compl, anon_sym_LT_EQ_GT, anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [53636] = 7, + anon_sym_co_await, + anon_sym_DASH_GT_STAR, + anon_sym_LPAREN_RPAREN, + anon_sym_LBRACK_RBRACK, + [49177] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4257), 1, - anon_sym_LPAREN2, - ACTIONS(5017), 1, - anon_sym_LBRACK, - STATE(2721), 1, - sym_argument_list, - ACTIONS(5019), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4985), 17, + ACTIONS(5297), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -275147,15 +346636,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(4983), 30, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5295), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -275176,12 +346670,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [53704] = 3, + [49239] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4415), 20, + ACTIONS(5333), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -275191,25 +346687,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4413), 32, + anon_sym_DASH_GT, + ACTIONS(5331), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -275219,6 +346716,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -275231,77 +346729,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_GT2, - [53764] = 9, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [49301] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3814), 1, + ACTIONS(4476), 1, anon_sym_COLON_COLON, - ACTIONS(3819), 1, - anon_sym_LBRACE, - ACTIONS(4115), 1, - anon_sym_LT, - STATE(3452), 1, + STATE(3608), 1, sym_template_argument_list, - ACTIONS(4118), 2, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - ACTIONS(4120), 12, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - ACTIONS(3795), 17, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - ACTIONS(3803), 17, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - [53836] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4598), 20, + ACTIONS(5106), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -275322,7 +346761,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4596), 32, + ACTIONS(5104), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -275355,10 +346794,10 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_GT2, - [53896] = 3, + [49367] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4371), 20, + ACTIONS(5293), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -275368,25 +346807,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4369), 32, + anon_sym_DASH_GT, + ACTIONS(5291), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -275396,6 +346836,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -275408,21 +346849,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_GT2, - [53956] = 6, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [49429] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3988), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(4653), 1, - anon_sym_LBRACK, - ACTIONS(4647), 2, + ACTIONS(5463), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(3803), 19, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_RBRACK_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + ACTIONS(5461), 29, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_typename, + anon_sym_template, + [49491] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5289), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -275442,14 +346935,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3795), 29, + ACTIONS(5287), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -275470,57 +346967,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [54022] = 3, + [49553] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4445), 20, + ACTIONS(5467), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_RBRACK_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + ACTIONS(5465), 29, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_typename, + anon_sym_template, + [49615] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5052), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_const, + anon_sym_COLON, anon_sym_DOT, - ACTIONS(4443), 32, + ACTIONS(5050), 41, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_COLON_COLON, anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, @@ -275528,18 +347085,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_auto, anon_sym_decltype, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - [54082] = 6, + anon_sym_requires, + [49677] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3988), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(4653), 1, - anon_sym_LBRACK, - ACTIONS(4647), 2, - anon_sym_RPAREN, - anon_sym_LPAREN2, - ACTIONS(3803), 19, + ACTIONS(5325), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -275559,14 +347112,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3795), 29, + ACTIONS(5323), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -275587,12 +347144,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [54148] = 3, + [49739] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4723), 20, + ACTIONS(5194), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -275606,14 +347165,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4721), 32, + ACTIONS(5192), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -275623,7 +347181,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -275644,14 +347203,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [54208] = 4, + [49801] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3992), 1, - sym_literal_suffix, - ACTIONS(3803), 25, + ACTIONS(5198), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -275666,18 +347225,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3795), 26, + ACTIONS(5196), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -275687,6 +347240,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -275699,132 +347253,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [54270] = 3, + [49863] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4631), 26, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_not, - anon_sym_compl, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - anon_sym_decltype, - anon_sym_template, + ACTIONS(5475), 1, + anon_sym_DQUOTE_DQUOTE, + ACTIONS(5473), 2, anon_sym_delete, - anon_sym_co_await, anon_sym_new, - anon_sym_requires, - sym_this, - sym_nullptr, - ACTIONS(4633), 26, - anon_sym_LPAREN2, + ACTIONS(5471), 20, anon_sym_BANG, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [54330] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4257), 1, - anon_sym_LPAREN2, - ACTIONS(4800), 1, - anon_sym_EQ, - ACTIONS(5017), 1, - anon_sym_LBRACK, - ACTIONS(5025), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5027), 1, - anon_sym_AMP_AMP, - ACTIONS(5029), 1, - anon_sym_PIPE, - ACTIONS(5033), 1, - anon_sym_AMP, - ACTIONS(5039), 1, - anon_sym_GT_EQ, - ACTIONS(5043), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5045), 1, - anon_sym_or, - ACTIONS(5047), 1, - anon_sym_and, - ACTIONS(5049), 1, - anon_sym_bitor, - ACTIONS(5051), 1, - anon_sym_bitand, - ACTIONS(5060), 1, - anon_sym_DOT_DOT_DOT, - STATE(2721), 1, - sym_argument_list, - ACTIONS(5019), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5021), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5031), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5041), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5053), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5023), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(5035), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5037), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(4774), 18, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_not, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DASH_GT, + ACTIONS(5469), 31, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_QMARK, + anon_sym_TILDE, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -275838,70 +347316,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [54434] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4257), 1, - anon_sym_LPAREN2, - ACTIONS(4820), 1, - anon_sym_EQ, - ACTIONS(5017), 1, - anon_sym_LBRACK, - ACTIONS(5025), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5027), 1, - anon_sym_AMP_AMP, - ACTIONS(5029), 1, - anon_sym_PIPE, - ACTIONS(5033), 1, - anon_sym_AMP, - ACTIONS(5039), 1, - anon_sym_GT_EQ, - ACTIONS(5043), 1, + anon_sym_compl, anon_sym_LT_EQ_GT, - ACTIONS(5045), 1, - anon_sym_or, - ACTIONS(5047), 1, - anon_sym_and, - ACTIONS(5049), 1, anon_sym_bitor, - ACTIONS(5051), 1, anon_sym_bitand, - STATE(2721), 1, - sym_argument_list, - ACTIONS(5019), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5021), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5031), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5041), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5053), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5023), 3, + anon_sym_co_await, + anon_sym_DASH_GT_STAR, + anon_sym_LPAREN_RPAREN, + anon_sym_LBRACK_RBRACK, + [49929] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5238), 19, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(5035), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5037), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(4818), 19, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5236), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -275916,12 +347376,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [54536] = 3, + [49991] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4614), 20, + ACTIONS(4476), 1, + anon_sym_COLON_COLON, + ACTIONS(5151), 1, + anon_sym_LT, + STATE(2724), 1, + sym_template_argument_list, + ACTIONS(4455), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -275933,7 +347407,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, @@ -275942,7 +347415,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4612), 32, + ACTIONS(4463), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -275975,10 +347448,10 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_GT2, - [54596] = 3, + [50059] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4587), 20, + ACTIONS(5242), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -275988,25 +347461,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4585), 32, + anon_sym_DASH_GT, + ACTIONS(5240), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -276016,6 +347490,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -276028,14 +347503,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [50121] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5479), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_RBRACK_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, anon_sym_DASH_GT, + ACTIONS(5477), 29, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_GT2, - [54656] = 3, + anon_sym_typename, + anon_sym_template, + [50183] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4583), 20, + ACTIONS(5246), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -276045,25 +347579,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4581), 32, + anon_sym_DASH_GT, + ACTIONS(5244), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -276073,6 +347608,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -276085,59 +347621,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_GT2, - [54716] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [50245] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4575), 20, + ACTIONS(5043), 1, + anon_sym_COLON_COLON, + ACTIONS(5041), 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_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, + anon_sym_const, + anon_sym_COLON, anon_sym_DOT, - ACTIONS(4573), 32, + ACTIONS(5039), 40, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT_LT, anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, @@ -276145,11 +347681,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_auto, anon_sym_decltype, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - [54776] = 3, + anon_sym_requires, + [50309] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4622), 20, + ACTIONS(4476), 1, + anon_sym_COLON_COLON, + ACTIONS(4481), 1, + anon_sym_LBRACE, + ACTIONS(4667), 1, + anon_sym_LT, + STATE(3404), 1, + sym_template_argument_list, + ACTIONS(4652), 3, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + ACTIONS(4465), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -276159,26 +347710,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4620), 32, + anon_sym_DASH_GT, + ACTIONS(4457), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACE, + anon_sym_GT_EQ, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -276187,26 +347737,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [54836] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [50381] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4563), 20, + ACTIONS(5041), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -276216,27 +347762,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, anon_sym_DOT, - ACTIONS(4561), 32, + anon_sym_DASH_GT, + ACTIONS(5039), 38, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -276244,89 +347789,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_GT2, - [54896] = 9, + anon_sym_final, + anon_sym_override, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [50443] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3814), 1, - anon_sym_COLON_COLON, - ACTIONS(3819), 1, - anon_sym_LBRACE, - ACTIONS(4714), 1, - anon_sym_LT, - ACTIONS(4838), 1, - anon_sym_EQ, - STATE(3255), 1, - sym_template_argument_list, - ACTIONS(4840), 13, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - ACTIONS(3803), 16, + ACTIONS(4523), 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_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, + anon_sym_LT, anon_sym_GT_GT, - anon_sym_or, - anon_sym_and, - anon_sym_xor, + anon_sym_const, + anon_sym_COLON, anon_sym_DOT, - ACTIONS(3795), 18, + ACTIONS(4525), 41, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_COLON_COLON, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [54968] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [50505] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4535), 20, + ACTIONS(5285), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -276336,25 +347880,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4533), 32, + anon_sym_DASH_GT, + ACTIONS(5283), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -276364,6 +347909,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -276376,14 +347922,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_GT2, - [55028] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [50567] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4645), 20, + ACTIONS(5155), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -276397,14 +347943,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4643), 32, + ACTIONS(5153), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -276414,7 +347959,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -276435,12 +347981,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [55088] = 3, + [50629] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4459), 20, + ACTIONS(5281), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -276450,25 +347998,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4457), 32, + anon_sym_DASH_GT, + ACTIONS(5279), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -276478,6 +348027,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -276490,14 +348040,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_GT2, - [55148] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [50691] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4702), 26, + ACTIONS(5321), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5319), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -276507,6 +348077,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -276519,103 +348090,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - ACTIONS(4704), 26, + [50753] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5043), 1, + anon_sym_COLON_COLON, + ACTIONS(5064), 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_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + anon_sym_const, + anon_sym_COLON, anon_sym_DOT, - anon_sym_DASH_GT, - sym_literal_suffix, - [55208] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4257), 1, + ACTIONS(5062), 40, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(4895), 1, - anon_sym_EQ, - ACTIONS(5017), 1, - anon_sym_LBRACK, - ACTIONS(5025), 1, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, - ACTIONS(5027), 1, anon_sym_AMP_AMP, - ACTIONS(5029), 1, - anon_sym_PIPE, - ACTIONS(5033), 1, - anon_sym_AMP, - ACTIONS(5039), 1, - anon_sym_GT_EQ, - ACTIONS(5043), 1, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, anon_sym_LT_EQ_GT, - ACTIONS(5045), 1, anon_sym_or, - ACTIONS(5047), 1, anon_sym_and, - ACTIONS(5049), 1, anon_sym_bitor, - ACTIONS(5051), 1, + anon_sym_xor, anon_sym_bitand, - ACTIONS(5060), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5062), 1, - anon_sym_QMARK, - STATE(2721), 1, - sym_argument_list, - ACTIONS(5019), 2, - anon_sym_DOT, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - ACTIONS(5021), 2, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [50817] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4710), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5031), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5041), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5053), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5023), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(5035), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5037), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(4893), 17, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4712), 35, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -276629,51 +348214,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [55314] = 9, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [50878] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4257), 1, + ACTIONS(5481), 1, + sym_auto, + ACTIONS(5483), 1, + anon_sym_decltype, + STATE(3132), 1, + sym_decltype_auto, + ACTIONS(5143), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(5141), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(5017), 1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACE, anon_sym_LBRACK, - STATE(2721), 1, - sym_argument_list, - ACTIONS(5019), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5053), 2, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5023), 3, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [50945] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5378), 1, + anon_sym_LBRACE, + STATE(3175), 1, + sym_enumerator_list, + ACTIONS(5133), 20, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4883), 14, - anon_sym_DASH, - anon_sym_PLUS, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(4881), 28, + anon_sym_DOT, + ACTIONS(5131), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -276681,7 +348326,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -276692,24 +348336,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [55386] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4257), 1, - anon_sym_LPAREN2, - ACTIONS(5017), 1, - anon_sym_LBRACK, - STATE(2721), 1, - sym_argument_list, - ACTIONS(5019), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5053), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(4883), 17, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [51010] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5485), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(5432), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -276723,19 +348361,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(4881), 28, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5430), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -276754,68 +348397,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [55456] = 22, + [51073] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(4257), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(5017), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(5027), 1, - anon_sym_AMP_AMP, - ACTIONS(5029), 1, - anon_sym_PIPE, - ACTIONS(5033), 1, - anon_sym_AMP, - ACTIONS(5039), 1, - anon_sym_GT_EQ, - ACTIONS(5043), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5047), 1, - anon_sym_and, - ACTIONS(5049), 1, - anon_sym_bitor, - ACTIONS(5051), 1, - anon_sym_bitand, - STATE(2721), 1, - sym_argument_list, - ACTIONS(4883), 2, - anon_sym_EQ, - anon_sym_or, - ACTIONS(5019), 2, + ACTIONS(5497), 1, anon_sym_DOT, + ACTIONS(5499), 1, anon_sym_DASH_GT, - ACTIONS(5021), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5031), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5041), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5053), 2, + STATE(2996), 1, + sym_argument_list, + ACTIONS(5495), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5023), 3, + ACTIONS(5491), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(5035), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5037), 3, + ACTIONS(5489), 14, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(4881), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(5487), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -276830,66 +348462,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [55554] = 20, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + [51148] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4257), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(5017), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(5029), 1, - anon_sym_PIPE, - ACTIONS(5033), 1, - anon_sym_AMP, - ACTIONS(5039), 1, - anon_sym_GT_EQ, - ACTIONS(5043), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5049), 1, - anon_sym_bitor, - ACTIONS(5051), 1, - anon_sym_bitand, - STATE(2721), 1, - sym_argument_list, - ACTIONS(5019), 2, + ACTIONS(5497), 1, anon_sym_DOT, + ACTIONS(5499), 1, anon_sym_DASH_GT, - ACTIONS(5021), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5031), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5041), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5053), 2, + STATE(2996), 1, + sym_argument_list, + ACTIONS(5495), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(4883), 3, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - ACTIONS(5023), 3, + ACTIONS(5489), 17, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(5035), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5037), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(4881), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(5487), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -276904,63 +348526,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [55648] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4257), 1, - anon_sym_LPAREN2, - ACTIONS(5017), 1, - anon_sym_LBRACK, - ACTIONS(5033), 1, - anon_sym_AMP, - ACTIONS(5039), 1, - anon_sym_GT_EQ, - ACTIONS(5043), 1, anon_sym_LT_EQ_GT, - ACTIONS(5051), 1, + anon_sym_bitor, anon_sym_bitand, - STATE(2721), 1, - sym_argument_list, - ACTIONS(5019), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5021), 2, + anon_sym_not_eq, + [51221] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5503), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5031), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5041), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5053), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5023), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(5035), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5037), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(4883), 4, - anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, anon_sym_or, anon_sym_and, - ACTIONS(4881), 22, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(5501), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -276975,198 +348581,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_bitor, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [55738] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4257), 1, - anon_sym_LPAREN2, - ACTIONS(5017), 1, - anon_sym_LBRACK, - ACTIONS(5033), 1, - anon_sym_AMP, - ACTIONS(5039), 1, - anon_sym_GT_EQ, - ACTIONS(5043), 1, anon_sym_LT_EQ_GT, - ACTIONS(5051), 1, + anon_sym_bitor, anon_sym_bitand, - STATE(2721), 1, - sym_argument_list, - ACTIONS(5019), 2, - anon_sym_DOT, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - ACTIONS(5021), 2, + [51282] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5359), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5041), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5053), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5023), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(5035), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5037), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(4883), 6, - anon_sym_PIPE, - anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(4881), 22, + anon_sym_DOT, + ACTIONS(5357), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_bitor, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [55826] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4257), 1, - anon_sym_LPAREN2, - ACTIONS(5017), 1, - anon_sym_LBRACK, - ACTIONS(5039), 1, - anon_sym_GT_EQ, - ACTIONS(5043), 1, - anon_sym_LT_EQ_GT, - STATE(2721), 1, - sym_argument_list, - ACTIONS(5019), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5021), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5041), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5053), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5023), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5035), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5037), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(4883), 7, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - ACTIONS(4881), 23, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [55910] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4257), 1, - anon_sym_LPAREN2, - ACTIONS(5017), 1, - anon_sym_LBRACK, - ACTIONS(5039), 1, anon_sym_GT_EQ, - ACTIONS(5043), 1, - anon_sym_LT_EQ_GT, - STATE(2721), 1, - sym_argument_list, - ACTIONS(5019), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5021), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5041), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5053), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5023), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5037), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(4883), 7, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - ACTIONS(4881), 26, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -277181,58 +348639,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, + anon_sym_LT_EQ_GT, anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [55992] = 12, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [51343] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4257), 1, - anon_sym_LPAREN2, - ACTIONS(5017), 1, - anon_sym_LBRACK, - ACTIONS(5043), 1, - anon_sym_LT_EQ_GT, - STATE(2721), 1, - sym_argument_list, - ACTIONS(5019), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5021), 2, + ACTIONS(2542), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5041), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5053), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5023), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4883), 10, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(4881), 27, + anon_sym_DOT, + ACTIONS(2540), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -277247,55 +348697,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, + anon_sym_LT_EQ_GT, anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [56070] = 10, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [51404] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(4257), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(5017), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - STATE(2721), 1, - sym_argument_list, - ACTIONS(5019), 2, + ACTIONS(5497), 1, anon_sym_DOT, + ACTIONS(5499), 1, anon_sym_DASH_GT, - ACTIONS(5021), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5053), 2, + ACTIONS(5507), 1, + anon_sym_AMP_AMP, + ACTIONS(5509), 1, + anon_sym_PIPE, + ACTIONS(5513), 1, + anon_sym_AMP, + ACTIONS(5519), 1, + anon_sym_GT_EQ, + ACTIONS(5523), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5525), 1, + anon_sym_and, + ACTIONS(5527), 1, + anon_sym_bitor, + ACTIONS(5529), 1, + anon_sym_bitand, + STATE(2996), 1, + sym_argument_list, + ACTIONS(5489), 2, + anon_sym_EQ, + anon_sym_or, + ACTIONS(5495), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5023), 3, + ACTIONS(5505), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5511), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5521), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5491), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4883), 12, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(5515), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5517), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - ACTIONS(4881), 28, + ACTIONS(5487), 21, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -277310,81 +348782,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [56144] = 11, + [51505] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4257), 1, - anon_sym_LPAREN2, - ACTIONS(5017), 1, - anon_sym_LBRACK, - STATE(2721), 1, - sym_argument_list, - ACTIONS(5019), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5021), 2, + ACTIONS(5139), 12, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5041), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5053), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5023), 3, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4883), 10, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - ACTIONS(4881), 28, + anon_sym_GT_GT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(5137), 41, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [56220] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [51566] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4449), 20, + ACTIONS(5043), 1, + anon_sym_COLON_COLON, + ACTIONS(5155), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -277405,7 +348866,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4447), 32, + ACTIONS(5153), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -277438,10 +348899,10 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_GT2, - [56280] = 3, + [51629] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4909), 20, + ACTIONS(5461), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -277455,14 +348916,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4907), 32, + ACTIONS(5463), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -277472,7 +348931,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -277493,12 +348956,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [56340] = 3, + anon_sym_DASH_GT, + [51690] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(4437), 20, + ACTIONS(4476), 1, + anon_sym_COLON_COLON, + ACTIONS(4481), 1, + anon_sym_LBRACE, + ACTIONS(4487), 1, + anon_sym_EQ, + ACTIONS(4521), 1, + anon_sym_COLON, + ACTIONS(5399), 1, + anon_sym_LT, + STATE(3864), 1, + sym_template_argument_list, + ACTIONS(4491), 13, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + ACTIONS(4465), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -277508,18 +348996,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4435), 32, + ACTIONS(4457), 18, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -277527,21 +349011,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACE, + anon_sym_GT_EQ, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, anon_sym_bitor, anon_sym_bitand, @@ -277549,13 +349022,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [56400] = 3, + [51765] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4433), 20, + ACTIONS(2536), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -277565,27 +349035,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4431), 32, + ACTIONS(2534), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACE, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -277593,6 +349066,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -277606,103 +349080,129 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [56460] = 3, + [51826] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4429), 20, + STATE(2969), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(107), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(145), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(4672), 16, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(4427), 32, + sym_literal_suffix, + ACTIONS(4670), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACE, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [56520] = 5, + [51893] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(5064), 1, - anon_sym_LT, - STATE(2731), 1, - sym_template_argument_list, - ACTIONS(4844), 18, + ACTIONS(4978), 1, + anon_sym_LPAREN2, + ACTIONS(5493), 1, + anon_sym_LBRACK, + ACTIONS(5497), 1, + anon_sym_DOT, + ACTIONS(5499), 1, + anon_sym_DASH_GT, + ACTIONS(5509), 1, + anon_sym_PIPE, + ACTIONS(5513), 1, + anon_sym_AMP, + ACTIONS(5519), 1, + anon_sym_GT_EQ, + ACTIONS(5523), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5527), 1, + anon_sym_bitor, + ACTIONS(5529), 1, + anon_sym_bitand, + STATE(2996), 1, + sym_argument_list, + ACTIONS(5495), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5505), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, + ACTIONS(5511), 2, anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, + anon_sym_xor, + ACTIONS(5521), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(5489), 3, anon_sym_EQ, anon_sym_or, anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4842), 32, + ACTIONS(5491), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5515), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5517), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5487), 22, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -277717,48 +349217,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, + [51990] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4978), 1, + anon_sym_LPAREN2, + ACTIONS(5493), 1, + anon_sym_LBRACK, + ACTIONS(5497), 1, + anon_sym_DOT, + ACTIONS(5499), 1, + anon_sym_DASH_GT, + ACTIONS(5513), 1, + anon_sym_AMP, + ACTIONS(5519), 1, + anon_sym_GT_EQ, + ACTIONS(5523), 1, anon_sym_LT_EQ_GT, - anon_sym_bitor, + ACTIONS(5529), 1, anon_sym_bitand, - anon_sym_not_eq, + STATE(2996), 1, + sym_argument_list, + ACTIONS(5495), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [56584] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4425), 20, + ACTIONS(5505), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(5511), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5521), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5491), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(5515), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5517), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(5489), 4, + anon_sym_PIPE, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4423), 32, + ACTIONS(5487), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -277766,61 +349283,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_LT_EQ_GT, anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [56644] = 6, + [52083] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1617), 1, - anon_sym_LBRACE, - ACTIONS(4385), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - STATE(2992), 2, + ACTIONS(5493), 1, + anon_sym_LBRACK, + ACTIONS(5497), 1, + anon_sym_DOT, + ACTIONS(5499), 1, + anon_sym_DASH_GT, + ACTIONS(5513), 1, + anon_sym_AMP, + ACTIONS(5519), 1, + anon_sym_GT_EQ, + ACTIONS(5523), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5529), 1, + anon_sym_bitand, + STATE(2996), 1, sym_argument_list, - sym_initializer_list, - ACTIONS(4375), 20, + ACTIONS(5495), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5505), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(5521), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5491), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(5515), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5517), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(5489), 6, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DOT, - ACTIONS(4373), 28, + ACTIONS(5487), 23, 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_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -277828,36 +349356,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_LT_EQ_GT, anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [56710] = 8, + [52174] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4257), 1, - anon_sym_LPAREN2, - ACTIONS(5017), 1, + ACTIONS(5090), 1, anon_sym_LBRACK, - STATE(2721), 1, - sym_argument_list, - ACTIONS(5019), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5053), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5013), 17, + STATE(3127), 1, + sym_new_declarator, + ACTIONS(5387), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -277875,15 +349389,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(5011), 28, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5385), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LBRACE, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -277902,42 +349420,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [56780] = 3, + [52239] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(4324), 20, + ACTIONS(4978), 1, + anon_sym_LPAREN2, + ACTIONS(5493), 1, + anon_sym_LBRACK, + ACTIONS(5497), 1, + anon_sym_DOT, + ACTIONS(5499), 1, + anon_sym_DASH_GT, + ACTIONS(5519), 1, + anon_sym_GT_EQ, + ACTIONS(5523), 1, + anon_sym_LT_EQ_GT, + STATE(2996), 1, + sym_argument_list, + ACTIONS(5495), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5505), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(5521), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5491), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(5515), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5517), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(5489), 7, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DOT, - ACTIONS(4322), 32, + ACTIONS(5487), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -277945,26 +349486,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_LT_EQ_GT, anon_sym_bitor, anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [56840] = 3, + [52326] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4766), 19, + ACTIONS(5535), 1, + anon_sym_LT, + STATE(2988), 1, + sym_template_argument_list, + ACTIONS(5533), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -277975,7 +349513,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, @@ -277983,8 +349520,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4764), 33, + ACTIONS(5531), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -277994,8 +349530,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -278016,16 +349554,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [56900] = 5, + anon_sym_DASH_GT, + [52391] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4710), 1, - anon_sym_LBRACE, - STATE(2811), 1, - sym_enumerator_list, - ACTIONS(4332), 16, + ACTIONS(5540), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -278040,9 +349573,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4330), 34, + ACTIONS(5538), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -278052,7 +349587,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -278064,110 +349603,130 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [56964] = 3, + anon_sym_DASH_GT, + [52452] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4658), 20, + STATE(2969), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(5542), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(5545), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(4678), 16, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, - anon_sym_EQ, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4656), 32, + sym_literal_suffix, + ACTIONS(4676), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK_LBRACK, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [57024] = 3, + anon_sym_DASH_GT, + [52519] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(4363), 20, + ACTIONS(4978), 1, + anon_sym_LPAREN2, + ACTIONS(5493), 1, + anon_sym_LBRACK, + ACTIONS(5497), 1, + anon_sym_DOT, + ACTIONS(5499), 1, + anon_sym_DASH_GT, + ACTIONS(5519), 1, + anon_sym_GT_EQ, + ACTIONS(5523), 1, + anon_sym_LT_EQ_GT, + STATE(2996), 1, + sym_argument_list, + ACTIONS(5495), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5505), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(5521), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5491), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(5517), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(5489), 7, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DOT, - ACTIONS(4361), 32, + ACTIONS(5487), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -278175,61 +349734,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_LT_EQ_GT, anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [57084] = 6, + [52604] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1617), 1, - anon_sym_LBRACE, - ACTIONS(4385), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - STATE(3021), 2, + ACTIONS(5493), 1, + anon_sym_LBRACK, + ACTIONS(5497), 1, + anon_sym_DOT, + ACTIONS(5499), 1, + anon_sym_DASH_GT, + ACTIONS(5523), 1, + anon_sym_LT_EQ_GT, + STATE(2996), 1, sym_argument_list, - sym_initializer_list, - ACTIONS(4507), 20, + ACTIONS(5495), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5505), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(5521), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5491), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(5489), 10, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DOT, - ACTIONS(4505), 28, + ACTIONS(5487), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACK, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -278237,31 +349802,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_LT_EQ_GT, anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [57150] = 6, + [52685] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1617), 1, - anon_sym_LBRACE, - ACTIONS(4385), 1, - anon_sym_LPAREN2, - STATE(2902), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(4411), 20, + ACTIONS(5432), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -278271,25 +349825,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4409), 28, + ACTIONS(5430), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -278297,6 +349856,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -278310,11 +349870,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - anon_sym_GT2, - [57216] = 3, + [52746] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4567), 20, + ACTIONS(5465), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -278324,27 +349883,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4565), 32, + ACTIONS(5467), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACE, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -278352,6 +349914,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -278365,18 +349928,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [57276] = 3, + [52807] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(4046), 19, + ACTIONS(4978), 1, + anon_sym_LPAREN2, + ACTIONS(5493), 1, + anon_sym_LBRACK, + ACTIONS(5497), 1, + anon_sym_DOT, + ACTIONS(5499), 1, + anon_sym_DASH_GT, + STATE(2996), 1, + sym_argument_list, + ACTIONS(5495), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5505), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(5491), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(5489), 12, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -278389,19 +349964,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4048), 32, + ACTIONS(5487), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -278420,44 +349994,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [57335] = 3, + [52884] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(4706), 19, + ACTIONS(4978), 1, + anon_sym_LPAREN2, + ACTIONS(5493), 1, + anon_sym_LBRACK, + ACTIONS(5497), 1, + anon_sym_DOT, + ACTIONS(5499), 1, + anon_sym_DASH_GT, + STATE(2996), 1, + sym_argument_list, + ACTIONS(5495), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5505), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(5521), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5491), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(5489), 10, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4708), 32, + ACTIONS(5487), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -278476,53 +350061,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [57394] = 3, + [52963] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4535), 16, + ACTIONS(5041), 12, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + anon_sym_const, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4533), 35, + ACTIONS(5039), 41, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_LT_LT, anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, @@ -278532,14 +350112,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [57453] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [53024] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4939), 19, + ACTIONS(4476), 1, + anon_sym_COLON_COLON, + STATE(3608), 1, + sym_template_argument_list, + ACTIONS(5106), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -278554,12 +350141,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2652), 32, + ACTIONS(5104), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -278569,6 +350153,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -278581,21 +350166,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [57512] = 3, + [53089] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(4068), 19, + ACTIONS(4476), 1, + anon_sym_COLON_COLON, + ACTIONS(4481), 1, + anon_sym_LBRACE, + ACTIONS(4487), 1, + anon_sym_EQ, + ACTIONS(4544), 1, + anon_sym_COLON, + ACTIONS(5399), 1, + anon_sym_LT, + STATE(3864), 1, + sym_template_argument_list, + ACTIONS(4491), 13, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + ACTIONS(4465), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -278606,62 +350219,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4070), 32, + ACTIONS(4457), 18, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [57571] = 9, + anon_sym_DASH_GT, + [53164] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3814), 1, + ACTIONS(4476), 1, anon_sym_COLON_COLON, - ACTIONS(3819), 1, + ACTIONS(4481), 1, anon_sym_LBRACE, - ACTIONS(4714), 1, + ACTIONS(5399), 1, anon_sym_LT, - ACTIONS(5067), 1, + ACTIONS(5548), 1, + anon_sym_COMMA, + ACTIONS(5550), 1, + anon_sym_RBRACK, + ACTIONS(5553), 1, anon_sym_EQ, - STATE(3255), 1, + STATE(3864), 1, sym_template_argument_list, - ACTIONS(5069), 13, + STATE(6254), 1, + aux_sym_structured_binding_declarator_repeat1, + ACTIONS(5555), 13, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -278675,7 +350277,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - ACTIONS(3795), 16, + ACTIONS(4457), 16, anon_sym_DOT_DOT_DOT, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, @@ -278692,7 +350294,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - ACTIONS(3803), 17, + ACTIONS(4465), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -278705,15 +350307,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_COLON, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - [57642] = 3, + [53243] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4076), 19, + ACTIONS(4690), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -278732,8 +350333,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4078), 32, + ACTIONS(4692), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -278743,7 +350343,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -278764,12 +350368,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [57701] = 3, + anon_sym_DASH_GT, + [53304] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4087), 19, + ACTIONS(4726), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -278788,8 +350391,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4089), 32, + ACTIONS(4728), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -278799,7 +350401,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -278820,12 +350426,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [57760] = 3, + anon_sym_DASH_GT, + [53365] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4531), 16, + ACTIONS(5477), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -278840,9 +350445,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4529), 35, + ACTIONS(5479), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -278852,8 +350459,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -278865,23 +350475,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [57819] = 3, + anon_sym_DASH_GT, + [53426] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3838), 19, + ACTIONS(5391), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -278900,8 +350507,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3843), 32, + ACTIONS(5389), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -278911,7 +350517,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -278932,115 +350542,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [57878] = 50, + anon_sym_DASH_GT, + [53487] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4257), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(5017), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(5071), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5073), 1, - anon_sym_COMMA, - ACTIONS(5075), 1, - anon_sym_RPAREN, - ACTIONS(5077), 1, + ACTIONS(5497), 1, + anon_sym_DOT, + ACTIONS(5499), 1, + anon_sym_DASH_GT, + STATE(2996), 1, + sym_argument_list, + ACTIONS(5495), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5559), 17, anon_sym_DASH, - ACTIONS(5079), 1, anon_sym_PLUS, - ACTIONS(5081), 1, anon_sym_STAR, - ACTIONS(5083), 1, anon_sym_SLASH, - ACTIONS(5085), 1, anon_sym_PERCENT, - ACTIONS(5087), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5089), 1, - anon_sym_AMP_AMP, - ACTIONS(5091), 1, anon_sym_PIPE, - ACTIONS(5093), 1, anon_sym_CARET, - ACTIONS(5095), 1, anon_sym_AMP, - ACTIONS(5097), 1, - anon_sym_EQ_EQ, - ACTIONS(5099), 1, - anon_sym_BANG_EQ, - ACTIONS(5101), 1, anon_sym_GT, - ACTIONS(5103), 1, - anon_sym_GT_EQ, - ACTIONS(5105), 1, anon_sym_LT_EQ, - ACTIONS(5107), 1, anon_sym_LT, - ACTIONS(5109), 1, anon_sym_LT_LT, - ACTIONS(5111), 1, anon_sym_GT_GT, - ACTIONS(5113), 1, anon_sym_EQ, - ACTIONS(5115), 1, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(5557), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_QMARK, - ACTIONS(5117), 1, anon_sym_STAR_EQ, - ACTIONS(5119), 1, anon_sym_SLASH_EQ, - ACTIONS(5121), 1, anon_sym_PERCENT_EQ, - ACTIONS(5123), 1, anon_sym_PLUS_EQ, - ACTIONS(5125), 1, anon_sym_DASH_EQ, - ACTIONS(5127), 1, anon_sym_LT_LT_EQ, - ACTIONS(5129), 1, anon_sym_GT_GT_EQ, - ACTIONS(5131), 1, anon_sym_AMP_EQ, - ACTIONS(5133), 1, anon_sym_CARET_EQ, - ACTIONS(5135), 1, anon_sym_PIPE_EQ, - ACTIONS(5137), 1, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - ACTIONS(5139), 1, - anon_sym_or, - ACTIONS(5141), 1, - anon_sym_and, - ACTIONS(5143), 1, anon_sym_bitor, - ACTIONS(5145), 1, - anon_sym_xor, - ACTIONS(5147), 1, anon_sym_bitand, - ACTIONS(5149), 1, anon_sym_not_eq, - ACTIONS(5153), 1, - anon_sym_DOT_STAR, - ACTIONS(5155), 1, - anon_sym_DASH_GT_STAR, - STATE(1750), 1, - sym__binary_fold_operator, - STATE(2721), 1, - sym_argument_list, - STATE(6364), 1, - sym__fold_operator, - ACTIONS(5019), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5151), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - [58031] = 3, + [53560] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4909), 19, + ACTIONS(5563), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -279059,8 +350629,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4907), 32, + ACTIONS(5561), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -279070,7 +350639,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -279091,68 +350664,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [58090] = 3, + anon_sym_DASH_GT, + [53621] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4459), 16, + ACTIONS(5565), 1, + sym_literal_suffix, + STATE(2961), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(107), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(145), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(4465), 15, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4457), 35, + ACTIONS(4457), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [58149] = 3, + anon_sym_DASH_GT, + [53690] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3838), 19, + ACTIONS(5569), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -279171,8 +350749,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3843), 32, + ACTIONS(5567), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -279182,7 +350759,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -279203,218 +350784,127 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [58208] = 50, + anon_sym_DASH_GT, + [53751] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4257), 1, - anon_sym_LPAREN2, - ACTIONS(5017), 1, - anon_sym_LBRACK, - ACTIONS(5071), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5077), 1, + ACTIONS(5573), 18, anon_sym_DASH, - ACTIONS(5079), 1, anon_sym_PLUS, - ACTIONS(5081), 1, anon_sym_STAR, - ACTIONS(5083), 1, anon_sym_SLASH, - ACTIONS(5085), 1, anon_sym_PERCENT, - ACTIONS(5087), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5089), 1, - anon_sym_AMP_AMP, - ACTIONS(5091), 1, anon_sym_PIPE, - ACTIONS(5093), 1, anon_sym_CARET, - ACTIONS(5095), 1, anon_sym_AMP, - ACTIONS(5097), 1, - anon_sym_EQ_EQ, - ACTIONS(5099), 1, - anon_sym_BANG_EQ, - ACTIONS(5101), 1, anon_sym_GT, - ACTIONS(5103), 1, - anon_sym_GT_EQ, - ACTIONS(5105), 1, anon_sym_LT_EQ, - ACTIONS(5107), 1, anon_sym_LT, - ACTIONS(5109), 1, anon_sym_LT_LT, - ACTIONS(5111), 1, anon_sym_GT_GT, - ACTIONS(5113), 1, anon_sym_EQ, - ACTIONS(5115), 1, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(5571), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, - ACTIONS(5117), 1, anon_sym_STAR_EQ, - ACTIONS(5119), 1, anon_sym_SLASH_EQ, - ACTIONS(5121), 1, anon_sym_PERCENT_EQ, - ACTIONS(5123), 1, anon_sym_PLUS_EQ, - ACTIONS(5125), 1, anon_sym_DASH_EQ, - ACTIONS(5127), 1, anon_sym_LT_LT_EQ, - ACTIONS(5129), 1, anon_sym_GT_GT_EQ, - ACTIONS(5131), 1, anon_sym_AMP_EQ, - ACTIONS(5133), 1, anon_sym_CARET_EQ, - ACTIONS(5135), 1, anon_sym_PIPE_EQ, - ACTIONS(5137), 1, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - ACTIONS(5139), 1, - anon_sym_or, - ACTIONS(5141), 1, - anon_sym_and, - ACTIONS(5143), 1, anon_sym_bitor, - ACTIONS(5145), 1, - anon_sym_xor, - ACTIONS(5147), 1, anon_sym_bitand, - ACTIONS(5149), 1, anon_sym_not_eq, - ACTIONS(5153), 1, - anon_sym_DOT_STAR, - ACTIONS(5155), 1, - anon_sym_DASH_GT_STAR, - ACTIONS(5157), 1, - anon_sym_COMMA, - ACTIONS(5159), 1, - anon_sym_RPAREN, - STATE(1750), 1, - sym__binary_fold_operator, - STATE(2721), 1, - sym_argument_list, - STATE(6364), 1, - sym__fold_operator, - ACTIONS(5019), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5151), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - [58361] = 50, + anon_sym_DASH_GT, + [53812] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4257), 1, - anon_sym_LPAREN2, - ACTIONS(5017), 1, - anon_sym_LBRACK, - ACTIONS(5071), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5073), 1, - anon_sym_COMMA, - ACTIONS(5077), 1, + ACTIONS(5577), 18, anon_sym_DASH, - ACTIONS(5079), 1, anon_sym_PLUS, - ACTIONS(5081), 1, anon_sym_STAR, - ACTIONS(5083), 1, anon_sym_SLASH, - ACTIONS(5085), 1, anon_sym_PERCENT, - ACTIONS(5087), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5089), 1, - anon_sym_AMP_AMP, - ACTIONS(5091), 1, anon_sym_PIPE, - ACTIONS(5093), 1, anon_sym_CARET, - ACTIONS(5095), 1, anon_sym_AMP, - ACTIONS(5097), 1, - anon_sym_EQ_EQ, - ACTIONS(5099), 1, - anon_sym_BANG_EQ, - ACTIONS(5101), 1, anon_sym_GT, - ACTIONS(5103), 1, - anon_sym_GT_EQ, - ACTIONS(5105), 1, anon_sym_LT_EQ, - ACTIONS(5107), 1, anon_sym_LT, - ACTIONS(5109), 1, anon_sym_LT_LT, - ACTIONS(5111), 1, anon_sym_GT_GT, - ACTIONS(5113), 1, anon_sym_EQ, - ACTIONS(5115), 1, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(5575), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, - ACTIONS(5117), 1, anon_sym_STAR_EQ, - ACTIONS(5119), 1, anon_sym_SLASH_EQ, - ACTIONS(5121), 1, anon_sym_PERCENT_EQ, - ACTIONS(5123), 1, anon_sym_PLUS_EQ, - ACTIONS(5125), 1, anon_sym_DASH_EQ, - ACTIONS(5127), 1, anon_sym_LT_LT_EQ, - ACTIONS(5129), 1, anon_sym_GT_GT_EQ, - ACTIONS(5131), 1, anon_sym_AMP_EQ, - ACTIONS(5133), 1, anon_sym_CARET_EQ, - ACTIONS(5135), 1, anon_sym_PIPE_EQ, - ACTIONS(5137), 1, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - ACTIONS(5139), 1, - anon_sym_or, - ACTIONS(5141), 1, - anon_sym_and, - ACTIONS(5143), 1, anon_sym_bitor, - ACTIONS(5145), 1, - anon_sym_xor, - ACTIONS(5147), 1, anon_sym_bitand, - ACTIONS(5149), 1, anon_sym_not_eq, - ACTIONS(5153), 1, - anon_sym_DOT_STAR, - ACTIONS(5155), 1, - anon_sym_DASH_GT_STAR, - ACTIONS(5161), 1, - anon_sym_RPAREN, - STATE(1750), 1, - sym__binary_fold_operator, - STATE(2721), 1, - sym_argument_list, - STATE(6364), 1, - sym__fold_operator, - ACTIONS(5019), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5151), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - [58514] = 3, + anon_sym_DASH_GT, + [53873] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3838), 19, + ACTIONS(4694), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -279433,8 +350923,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3843), 32, + ACTIONS(4696), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -279444,7 +350933,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -279465,12 +350958,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [58573] = 3, + anon_sym_DASH_GT, + [53934] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3838), 19, + ACTIONS(5378), 1, + anon_sym_LBRACE, + STATE(3199), 1, + sym_enumerator_list, + ACTIONS(5159), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -279480,26 +350976,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3843), 32, + ACTIONS(5157), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -279508,7 +351003,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -279521,16 +351015,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [58632] = 4, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [53999] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3990), 3, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - ACTIONS(3803), 19, + ACTIONS(4714), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -279549,8 +351041,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3795), 29, + ACTIONS(4716), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -279560,7 +351051,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -279572,18 +351067,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [58693] = 3, + anon_sym_DASH_GT, + [54060] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5009), 19, + ACTIONS(5581), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -279602,8 +351099,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5007), 32, + ACTIONS(5579), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -279613,7 +351109,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -279634,45 +351134,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [58752] = 6, + anon_sym_DASH_GT, + [54121] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1645), 1, - anon_sym_LBRACE, - ACTIONS(4664), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - STATE(3062), 2, + ACTIONS(5493), 1, + anon_sym_LBRACK, + ACTIONS(5497), 1, + anon_sym_DOT, + ACTIONS(5499), 1, + anon_sym_DASH_GT, + ACTIONS(5507), 1, + anon_sym_AMP_AMP, + ACTIONS(5509), 1, + anon_sym_PIPE, + ACTIONS(5513), 1, + anon_sym_AMP, + ACTIONS(5519), 1, + anon_sym_GT_EQ, + ACTIONS(5523), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5525), 1, + anon_sym_and, + ACTIONS(5527), 1, + anon_sym_bitor, + ACTIONS(5529), 1, + anon_sym_bitand, + ACTIONS(5583), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5587), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5589), 1, + anon_sym_EQ, + ACTIONS(5591), 1, + anon_sym_or, + STATE(2996), 1, sym_argument_list, - sym_initializer_list, - ACTIONS(4411), 16, + ACTIONS(5495), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5505), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(5511), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5521), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5491), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(5515), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5517), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4409), 31, - anon_sym_DOT_DOT_DOT, + ACTIONS(5585), 19, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -279684,21 +351213,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [58817] = 3, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + [54228] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3838), 19, + ACTIONS(5593), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -279717,8 +351238,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3843), 32, + ACTIONS(2960), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -279728,7 +351248,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -279749,12 +351273,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [58876] = 3, + anon_sym_DASH_GT, + [54289] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5001), 19, + ACTIONS(5597), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -279773,8 +351296,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4999), 32, + ACTIONS(5595), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -279784,7 +351306,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -279805,12 +351331,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [58935] = 3, + anon_sym_DASH_GT, + [54350] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4463), 16, + ACTIONS(5139), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -279820,23 +351345,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4461), 35, + ACTIONS(5137), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_COLON_COLON, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -279846,27 +351374,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [58994] = 3, + anon_sym_GT2, + [54411] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(4645), 19, + ACTIONS(4476), 1, + anon_sym_COLON_COLON, + ACTIONS(4481), 1, + anon_sym_LBRACE, + ACTIONS(4487), 1, + anon_sym_EQ, + ACTIONS(4515), 1, + anon_sym_COLON, + ACTIONS(5399), 1, + anon_sym_LT, + STATE(3864), 1, + sym_template_argument_list, + ACTIONS(4491), 13, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + ACTIONS(4465), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -279877,16 +351430,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, - anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4643), 32, + ACTIONS(4457), 18, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -279896,22 +351446,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, anon_sym_bitor, anon_sym_bitand, @@ -279919,40 +351455,133 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [59053] = 3, + [54486] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4723), 19, + ACTIONS(4476), 1, + anon_sym_COLON_COLON, + ACTIONS(5599), 1, + anon_sym_LT, + STATE(3251), 1, + sym_template_argument_list, + ACTIONS(5026), 23, anon_sym_DASH, anon_sym_PLUS, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + anon_sym_decltype, + anon_sym_typename, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + ACTIONS(4481), 27, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [54553] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4978), 1, + anon_sym_LPAREN2, + ACTIONS(5493), 1, + anon_sym_LBRACK, + ACTIONS(5497), 1, + anon_sym_DOT, + ACTIONS(5499), 1, + anon_sym_DASH_GT, + ACTIONS(5507), 1, + anon_sym_AMP_AMP, + ACTIONS(5509), 1, anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(5513), 1, anon_sym_AMP, + ACTIONS(5519), 1, + anon_sym_GT_EQ, + ACTIONS(5523), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5525), 1, + anon_sym_and, + ACTIONS(5527), 1, + anon_sym_bitor, + ACTIONS(5529), 1, + anon_sym_bitand, + ACTIONS(5587), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5591), 1, + anon_sym_or, + ACTIONS(5603), 1, + anon_sym_EQ, + STATE(2996), 1, + sym_argument_list, + ACTIONS(5495), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5505), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5511), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5521), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5491), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5515), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5517), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4721), 32, + ACTIONS(5601), 20, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -279967,18 +351596,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [59112] = 3, + [54658] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4877), 19, + ACTIONS(5607), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -279997,8 +351618,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4875), 32, + ACTIONS(5605), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -280008,7 +351628,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -280029,12 +351653,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [59171] = 3, + anon_sym_DASH_GT, + [54719] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 19, + ACTIONS(5611), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -280053,8 +351676,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1735), 32, + ACTIONS(5609), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -280064,7 +351686,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -280085,12 +351711,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [59230] = 3, + anon_sym_DASH_GT, + [54780] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4064), 19, + ACTIONS(5216), 1, + sym_auto, + ACTIONS(5218), 1, + anon_sym_decltype, + STATE(3126), 1, + sym_decltype_auto, + ACTIONS(5143), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -280100,26 +351731,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4066), 32, + ACTIONS(5141), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -280128,7 +351759,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -280141,12 +351771,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [59289] = 3, + anon_sym_DASH_GT, + anon_sym_GT2, + [54847] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4476), 1, + anon_sym_COLON_COLON, + ACTIONS(5599), 1, + anon_sym_LT, + STATE(3251), 1, + sym_template_argument_list, + ACTIONS(4498), 23, + anon_sym_DASH, + anon_sym_PLUS, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + anon_sym_decltype, + anon_sym_typename, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + ACTIONS(4503), 27, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [54914] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4449), 16, + ACTIONS(5615), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -280161,9 +351852,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4447), 35, + ACTIONS(5613), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -280173,8 +351866,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -280186,23 +351882,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [59348] = 3, + anon_sym_DASH_GT, + [54975] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4965), 19, + ACTIONS(5619), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -280221,8 +351914,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4963), 32, + ACTIONS(5617), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -280232,7 +351924,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -280253,12 +351949,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [59407] = 3, + anon_sym_DASH_GT, + [55036] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4437), 16, + ACTIONS(4686), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -280273,9 +351968,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4435), 35, + ACTIONS(4688), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -280285,8 +351982,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -280298,62 +351998,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [59466] = 3, + anon_sym_DASH_GT, + [55097] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4433), 16, + ACTIONS(5621), 1, + anon_sym_LBRACE, + STATE(3092), 1, + sym_enumerator_list, + ACTIONS(5133), 12, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + anon_sym_const, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4431), 35, + ACTIONS(5131), 39, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, + anon_sym_LT_LT, anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, @@ -280363,14 +352061,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [59525] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [55162] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4429), 16, + ACTIONS(4718), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -280385,9 +352086,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4427), 35, + ACTIONS(4720), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -280397,8 +352100,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -280410,23 +352116,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [59584] = 3, + anon_sym_DASH_GT, + [55223] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4425), 16, + ACTIONS(5623), 1, + anon_sym_AMP_AMP, + ACTIONS(5625), 1, + anon_sym_and, + ACTIONS(5204), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -280441,20 +352148,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4423), 35, + ACTIONS(5206), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -280466,23 +352176,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [59643] = 3, + anon_sym_DASH_GT, + [55288] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4869), 19, + ACTIONS(5629), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -280501,8 +352208,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4867), 32, + ACTIONS(5627), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -280512,7 +352218,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -280533,12 +352243,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [59702] = 3, + anon_sym_DASH_GT, + [55349] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4873), 19, + ACTIONS(4706), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -280557,8 +352266,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4871), 32, + ACTIONS(4708), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -280568,7 +352276,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -280589,73 +352301,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [59761] = 8, + anon_sym_DASH_GT, + [55410] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(3825), 1, - anon_sym_EQ, - ACTIONS(3988), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(4647), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(4653), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(3829), 13, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - ACTIONS(3795), 17, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, + ACTIONS(5497), 1, + anon_sym_DOT, + ACTIONS(5499), 1, + anon_sym_DASH_GT, + ACTIONS(5507), 1, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(5509), 1, + anon_sym_PIPE, + ACTIONS(5513), 1, + anon_sym_AMP, + ACTIONS(5519), 1, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_QMARK, + ACTIONS(5523), 1, anon_sym_LT_EQ_GT, + ACTIONS(5525), 1, + anon_sym_and, + ACTIONS(5527), 1, anon_sym_bitor, + ACTIONS(5529), 1, anon_sym_bitand, - anon_sym_not_eq, + ACTIONS(5583), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5587), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5591), 1, + anon_sym_or, + ACTIONS(5633), 1, + anon_sym_EQ, + ACTIONS(5635), 1, + anon_sym_QMARK, + STATE(2996), 1, + sym_argument_list, + ACTIONS(5495), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - ACTIONS(3803), 17, + ACTIONS(5505), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(5511), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5521), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5491), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(5515), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5517), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - [59830] = 3, + ACTIONS(5631), 18, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + [55519] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4758), 19, + ACTIONS(5639), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -280674,8 +352406,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4756), 32, + ACTIONS(5637), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -280685,7 +352416,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -280706,12 +352441,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [59889] = 3, + anon_sym_DASH_GT, + [55580] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4723), 19, + ACTIONS(4702), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -280725,15 +352459,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4721), 32, + ACTIONS(4704), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -280741,8 +352475,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -280764,44 +352500,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [59948] = 6, + [55641] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(3988), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(4647), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(4653), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(3803), 18, + ACTIONS(5497), 1, + anon_sym_DOT, + ACTIONS(5499), 1, + anon_sym_DASH_GT, + ACTIONS(5507), 1, + anon_sym_AMP_AMP, + ACTIONS(5509), 1, + anon_sym_PIPE, + ACTIONS(5513), 1, + anon_sym_AMP, + ACTIONS(5519), 1, + anon_sym_GT_EQ, + ACTIONS(5523), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5525), 1, + anon_sym_and, + ACTIONS(5527), 1, + anon_sym_bitor, + ACTIONS(5529), 1, + anon_sym_bitand, + ACTIONS(5587), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5591), 1, + anon_sym_or, + ACTIONS(5643), 1, + anon_sym_EQ, + STATE(2996), 1, + sym_argument_list, + ACTIONS(5495), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5505), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(5511), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5521), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5491), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(5515), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5517), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(3795), 30, + ACTIONS(5641), 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_GT_EQ, + anon_sym_RPAREN, anon_sym_SEMI, anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -280816,6 +352580,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, + [55746] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4476), 1, + anon_sym_COLON_COLON, + ACTIONS(4481), 1, + anon_sym_LBRACE, + ACTIONS(4487), 1, + anon_sym_EQ, + ACTIONS(4542), 1, + anon_sym_COLON, + ACTIONS(5399), 1, + anon_sym_LT, + STATE(3864), 1, + sym_template_argument_list, + ACTIONS(4491), 13, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + ACTIONS(4465), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4457), 18, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_bitor, anon_sym_bitand, @@ -280823,16 +352645,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [60013] = 6, + [55821] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3988), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(4647), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(4653), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(3803), 18, + ACTIONS(5497), 1, + anon_sym_DOT, + ACTIONS(5499), 1, + anon_sym_DASH_GT, + STATE(2996), 1, + sym_argument_list, + ACTIONS(5647), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -280850,10 +352676,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DOT, - ACTIONS(3795), 30, + ACTIONS(5645), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -280861,6 +352687,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_SEMI, anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -280881,11 +352708,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [60078] = 3, + [55892] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4324), 16, + ACTIONS(5651), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -280900,9 +352726,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4322), 35, + ACTIONS(5649), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -280912,8 +352740,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -280925,23 +352756,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [60137] = 3, + anon_sym_DASH_GT, + [55953] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4363), 16, + ACTIONS(5655), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -280956,9 +352784,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4361), 35, + ACTIONS(5653), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -280968,8 +352798,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -280981,23 +352814,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [60196] = 3, + anon_sym_DASH_GT, + [56014] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4901), 19, + ACTIONS(5659), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -281016,8 +352846,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4899), 32, + ACTIONS(5657), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -281027,7 +352856,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -281048,12 +352881,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [60255] = 3, + anon_sym_DASH_GT, + [56075] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(4046), 19, + ACTIONS(4476), 1, + anon_sym_COLON_COLON, + ACTIONS(4481), 1, + anon_sym_LBRACE, + ACTIONS(4487), 1, + anon_sym_EQ, + ACTIONS(5399), 1, + anon_sym_LT, + ACTIONS(5661), 1, + anon_sym_COLON, + STATE(3864), 1, + sym_template_argument_list, + ACTIONS(4491), 13, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + ACTIONS(4465), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -281064,27 +352922,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4048), 32, + ACTIONS(4457), 18, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [56150] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4476), 1, + anon_sym_COLON_COLON, + ACTIONS(4481), 1, + anon_sym_LBRACE, + ACTIONS(4487), 1, + anon_sym_EQ, + ACTIONS(4564), 1, + anon_sym_COLON, + ACTIONS(5399), 1, + anon_sym_LT, + STATE(3864), 1, + sym_template_argument_list, + ACTIONS(4491), 13, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -281098,18 +352976,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [60314] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4046), 19, + ACTIONS(4465), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -281120,52 +352987,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4048), 32, + ACTIONS(4457), 18, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [60373] = 3, + anon_sym_DASH_GT, + [56225] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4981), 19, + ACTIONS(4978), 1, + anon_sym_LPAREN2, + ACTIONS(5493), 1, + anon_sym_LBRACK, + ACTIONS(5497), 1, + anon_sym_DOT, + ACTIONS(5499), 1, + anon_sym_DASH_GT, + STATE(2996), 1, + sym_argument_list, + ACTIONS(5495), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5665), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -281183,19 +353046,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4979), 32, + ACTIONS(5663), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -281214,119 +353076,138 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [60432] = 50, + [56298] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(4257), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(5017), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(5071), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5077), 1, + ACTIONS(5497), 1, + anon_sym_DOT, + ACTIONS(5499), 1, + anon_sym_DASH_GT, + ACTIONS(5523), 1, + anon_sym_LT_EQ_GT, + STATE(2996), 1, + sym_argument_list, + ACTIONS(5495), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5505), 2, anon_sym_DASH, - ACTIONS(5079), 1, anon_sym_PLUS, - ACTIONS(5081), 1, + ACTIONS(5521), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5491), 3, anon_sym_STAR, - ACTIONS(5083), 1, anon_sym_SLASH, - ACTIONS(5085), 1, anon_sym_PERCENT, - ACTIONS(5087), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5089), 1, - anon_sym_AMP_AMP, - ACTIONS(5091), 1, + ACTIONS(5669), 10, anon_sym_PIPE, - ACTIONS(5093), 1, anon_sym_CARET, - ACTIONS(5095), 1, anon_sym_AMP, - ACTIONS(5097), 1, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(5667), 28, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_EQ_EQ, - ACTIONS(5099), 1, anon_sym_BANG_EQ, - ACTIONS(5101), 1, - anon_sym_GT, - ACTIONS(5103), 1, anon_sym_GT_EQ, - ACTIONS(5105), 1, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + [56379] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5673), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(5107), 1, anon_sym_LT, - ACTIONS(5109), 1, anon_sym_LT_LT, - ACTIONS(5111), 1, anon_sym_GT_GT, - ACTIONS(5113), 1, anon_sym_EQ, - ACTIONS(5115), 1, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(5671), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, - ACTIONS(5117), 1, anon_sym_STAR_EQ, - ACTIONS(5119), 1, anon_sym_SLASH_EQ, - ACTIONS(5121), 1, anon_sym_PERCENT_EQ, - ACTIONS(5123), 1, anon_sym_PLUS_EQ, - ACTIONS(5125), 1, anon_sym_DASH_EQ, - ACTIONS(5127), 1, anon_sym_LT_LT_EQ, - ACTIONS(5129), 1, anon_sym_GT_GT_EQ, - ACTIONS(5131), 1, anon_sym_AMP_EQ, - ACTIONS(5133), 1, anon_sym_CARET_EQ, - ACTIONS(5135), 1, anon_sym_PIPE_EQ, - ACTIONS(5137), 1, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - ACTIONS(5139), 1, - anon_sym_or, - ACTIONS(5141), 1, - anon_sym_and, - ACTIONS(5143), 1, anon_sym_bitor, - ACTIONS(5145), 1, - anon_sym_xor, - ACTIONS(5147), 1, anon_sym_bitand, - ACTIONS(5149), 1, anon_sym_not_eq, - ACTIONS(5153), 1, - anon_sym_DOT_STAR, - ACTIONS(5155), 1, - anon_sym_DASH_GT_STAR, - ACTIONS(5157), 1, - anon_sym_COMMA, - ACTIONS(5163), 1, - anon_sym_RPAREN, - STATE(1750), 1, - sym__binary_fold_operator, - STATE(2721), 1, - sym_argument_list, - STATE(6364), 1, - sym__fold_operator, - ACTIONS(5019), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5151), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - [60585] = 4, + anon_sym_DASH_GT, + [56440] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4229), 1, + ACTIONS(5043), 1, anon_sym_COLON_COLON, - ACTIONS(4247), 13, + ACTIONS(5155), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -281338,9 +353219,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_const, - anon_sym_COLON, anon_sym_DOT, - ACTIONS(4245), 37, + ACTIONS(5153), 40, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -281354,11 +353234,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_QMARK, @@ -281378,10 +353261,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [60646] = 3, + [56503] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4072), 19, + ACTIONS(4722), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -281400,8 +353283,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4074), 32, + ACTIONS(4724), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -281411,7 +353293,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -281432,12 +353318,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [60705] = 3, + anon_sym_DASH_GT, + [56564] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4937), 19, + ACTIONS(4722), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -281456,8 +353341,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4935), 32, + ACTIONS(4724), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -281467,7 +353351,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -281488,12 +353376,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [60764] = 3, + anon_sym_DASH_GT, + [56625] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4943), 19, + ACTIONS(4722), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -281512,8 +353399,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4941), 32, + ACTIONS(4724), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -281523,7 +353409,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -281544,42 +353434,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [60823] = 3, + anon_sym_DASH_GT, + [56686] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4949), 19, + ACTIONS(4978), 1, + anon_sym_LPAREN2, + ACTIONS(5493), 1, + anon_sym_LBRACK, + ACTIONS(5497), 1, + anon_sym_DOT, + ACTIONS(5499), 1, + anon_sym_DASH_GT, + ACTIONS(5507), 1, + anon_sym_AMP_AMP, + ACTIONS(5509), 1, + anon_sym_PIPE, + ACTIONS(5513), 1, + anon_sym_AMP, + ACTIONS(5519), 1, + anon_sym_GT_EQ, + ACTIONS(5523), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5525), 1, + anon_sym_and, + ACTIONS(5527), 1, + anon_sym_bitor, + ACTIONS(5529), 1, + anon_sym_bitand, + ACTIONS(5587), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5591), 1, + anon_sym_or, + ACTIONS(5677), 1, + anon_sym_EQ, + STATE(2996), 1, + sym_argument_list, + ACTIONS(5495), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5505), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(5511), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5521), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5491), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(5515), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5517), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4947), 32, + ACTIONS(5675), 20, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -281594,195 +353515,138 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [60882] = 4, + [56791] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4229), 1, - anon_sym_COLON_COLON, - ACTIONS(4247), 13, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_const, - anon_sym_COLON, - anon_sym_DOT, - ACTIONS(4245), 37, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(4978), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACE, + ACTIONS(5493), 1, anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + ACTIONS(5497), 1, + anon_sym_DOT, + ACTIONS(5499), 1, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [60943] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4253), 13, + STATE(2996), 1, + sym_argument_list, + ACTIONS(5681), 17, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_const, - anon_sym_COLON, - anon_sym_DOT, - ACTIONS(4251), 38, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(5679), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [61002] = 3, + [56862] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3870), 13, + ACTIONS(4476), 1, + anon_sym_COLON_COLON, + ACTIONS(4481), 1, + anon_sym_LBRACE, + ACTIONS(4487), 1, + anon_sym_EQ, + ACTIONS(4489), 1, + anon_sym_COLON, + ACTIONS(5399), 1, + anon_sym_LT, + STATE(3864), 1, + sym_template_argument_list, + ACTIONS(4491), 13, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + ACTIONS(4465), 16, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_const, - anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(3875), 38, + ACTIONS(4457), 18, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_COLON_COLON, - anon_sym_LBRACE, + anon_sym_GT_EQ, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, anon_sym_QMARK, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [61061] = 7, + [56937] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5165), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5167), 1, - anon_sym_AMP_AMP, - ACTIONS(5169), 1, - anon_sym_or, - ACTIONS(5171), 1, - anon_sym_and, - ACTIONS(4917), 17, + ACTIONS(5597), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -281797,18 +353661,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4919), 30, + ACTIONS(5595), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -281829,12 +353700,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [61128] = 3, + anon_sym_DASH_GT, + [56998] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4645), 19, + ACTIONS(4698), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -281853,8 +353723,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4643), 32, + ACTIONS(4700), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -281864,7 +353733,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -281885,12 +353758,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [61187] = 3, + anon_sym_DASH_GT, + [57059] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4095), 19, + ACTIONS(5685), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -281909,8 +353781,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4097), 32, + ACTIONS(5683), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -281920,7 +353791,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -281941,12 +353816,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [61246] = 3, + anon_sym_DASH_GT, + [57120] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4973), 19, + ACTIONS(5689), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -281965,8 +353839,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4971), 32, + ACTIONS(5687), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -281976,7 +353849,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -281997,12 +353874,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [61305] = 3, + anon_sym_DASH_GT, + [57181] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4969), 19, + ACTIONS(5623), 1, + anon_sym_AMP_AMP, + ACTIONS(5625), 1, + anon_sym_and, + ACTIONS(5691), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5693), 1, + anon_sym_or, + ACTIONS(5299), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -282017,22 +353901,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_or, - anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4967), 32, + ACTIONS(5301), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -282053,28 +353936,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [61364] = 5, + anon_sym_DASH_GT, + [57250] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3825), 1, - anon_sym_EQ, - ACTIONS(3829), 13, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - ACTIONS(3803), 17, + ACTIONS(4978), 1, + anon_sym_LPAREN2, + ACTIONS(5493), 1, + anon_sym_LBRACK, + ACTIONS(5497), 1, + anon_sym_DOT, + ACTIONS(5499), 1, + anon_sym_DASH_GT, + STATE(2996), 1, + sym_argument_list, + ACTIONS(5495), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5697), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -282088,15 +353967,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DOT, - ACTIONS(3795), 20, + ACTIONS(5695), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -282104,19 +353982,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_SEMI, anon_sym_RBRACE, - anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [61427] = 3, + [57323] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4042), 19, + ACTIONS(4476), 1, + anon_sym_COLON_COLON, + ACTIONS(5268), 1, + anon_sym_LT, + STATE(2704), 1, + sym_template_argument_list, + ACTIONS(4455), 15, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -282127,16 +354021,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4044), 32, + ACTIONS(4463), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -282146,6 +354036,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -282158,21 +354049,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [61486] = 3, + [57390] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4105), 19, + ACTIONS(5701), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -282191,8 +354084,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4107), 32, + ACTIONS(5699), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -282202,7 +354094,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -282223,16 +354119,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [61545] = 5, + anon_sym_DASH_GT, + [57451] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5167), 1, - anon_sym_AMP_AMP, - ACTIONS(5171), 1, - anon_sym_and, - ACTIONS(4822), 18, + ACTIONS(5705), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -282248,19 +354139,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ, anon_sym_or, + anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4824), 31, + ACTIONS(5703), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -282281,12 +354177,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [61608] = 3, + anon_sym_DASH_GT, + [57512] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4032), 19, + ACTIONS(5709), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -282305,8 +354200,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4034), 32, + ACTIONS(5707), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -282316,7 +354210,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -282337,12 +354235,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [61667] = 3, + anon_sym_DASH_GT, + [57573] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4543), 16, + ACTIONS(5713), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -282357,9 +354254,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4541), 35, + ACTIONS(5711), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -282369,8 +354268,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -282382,23 +354284,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [61726] = 3, + anon_sym_DASH_GT, + [57634] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4559), 16, + ACTIONS(5717), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -282413,9 +354312,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4557), 35, + ACTIONS(5715), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -282425,8 +354326,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -282438,54 +354342,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [61785] = 3, + anon_sym_DASH_GT, + [57695] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4752), 19, + ACTIONS(5621), 1, + anon_sym_LBRACE, + STATE(3112), 1, + sym_enumerator_list, + ACTIONS(5159), 12, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, + anon_sym_const, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4754), 32, + ACTIONS(5157), 39, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_LT_LT, anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [57760] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4476), 1, + anon_sym_COLON_COLON, + ACTIONS(4481), 1, + anon_sym_LBRACE, + ACTIONS(5399), 1, + anon_sym_LT, + ACTIONS(5550), 1, + anon_sym_RBRACK, + ACTIONS(5553), 1, + anon_sym_EQ, + ACTIONS(5719), 1, + anon_sym_COMMA, + STATE(3864), 1, + sym_template_argument_list, + STATE(6254), 1, + aux_sym_structured_binding_declarator_repeat1, + ACTIONS(5555), 13, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -282499,18 +354445,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, + ACTIONS(4457), 16, + anon_sym_DOT_DOT_DOT, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [61844] = 3, + anon_sym_DASH_GT, + ACTIONS(4465), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + [57839] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4606), 16, + ACTIONS(5724), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -282525,9 +354497,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4604), 35, + ACTIONS(5722), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -282537,8 +354511,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -282550,23 +354527,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [61903] = 3, + anon_sym_DASH_GT, + [57900] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4571), 16, + ACTIONS(5728), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -282581,9 +354555,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4569), 35, + ACTIONS(5726), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -282593,8 +354569,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -282606,52 +354585,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [61962] = 3, + anon_sym_DASH_GT, + [57961] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(4579), 16, + ACTIONS(4978), 1, + anon_sym_LPAREN2, + ACTIONS(5493), 1, + anon_sym_LBRACK, + ACTIONS(5497), 1, + anon_sym_DOT, + ACTIONS(5499), 1, + anon_sym_DASH_GT, + ACTIONS(5507), 1, + anon_sym_AMP_AMP, + ACTIONS(5509), 1, + anon_sym_PIPE, + ACTIONS(5513), 1, + anon_sym_AMP, + ACTIONS(5519), 1, + anon_sym_GT_EQ, + ACTIONS(5523), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5525), 1, + anon_sym_and, + ACTIONS(5527), 1, + anon_sym_bitor, + ACTIONS(5529), 1, + anon_sym_bitand, + ACTIONS(5583), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5587), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5591), 1, + anon_sym_or, + ACTIONS(5635), 1, + anon_sym_QMARK, + ACTIONS(5732), 1, + anon_sym_EQ, + STATE(2996), 1, + sym_argument_list, + ACTIONS(5495), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5505), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(5511), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5521), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5491), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(5515), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5517), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4577), 35, - anon_sym_DOT_DOT_DOT, + ACTIONS(5730), 18, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -282662,23 +354674,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [62021] = 3, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + [58070] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4594), 16, + ACTIONS(5736), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -282693,9 +354695,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4592), 35, + ACTIONS(5734), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -282705,8 +354709,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -282718,82 +354725,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [62080] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3884), 13, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_const, - anon_sym_COLON, - anon_sym_DOT, - ACTIONS(3886), 38, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [62139] = 4, + [58131] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3875), 2, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - ACTIONS(3877), 20, + ACTIONS(5740), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -282803,26 +354748,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(3882), 29, + ACTIONS(5738), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -282830,6 +354779,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -282843,11 +354793,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - anon_sym_GT2, - [62200] = 3, + [58192] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4997), 19, + ACTIONS(4730), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -282866,8 +354815,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4995), 32, + ACTIONS(4732), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -282877,7 +354825,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -282898,115 +354850,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [62259] = 50, + anon_sym_DASH_GT, + [58253] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4257), 1, - anon_sym_LPAREN2, - ACTIONS(5017), 1, - anon_sym_LBRACK, - ACTIONS(5071), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5077), 1, + ACTIONS(5744), 18, anon_sym_DASH, - ACTIONS(5079), 1, anon_sym_PLUS, - ACTIONS(5081), 1, anon_sym_STAR, - ACTIONS(5083), 1, anon_sym_SLASH, - ACTIONS(5085), 1, anon_sym_PERCENT, - ACTIONS(5087), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5089), 1, - anon_sym_AMP_AMP, - ACTIONS(5091), 1, anon_sym_PIPE, - ACTIONS(5093), 1, anon_sym_CARET, - ACTIONS(5095), 1, anon_sym_AMP, - ACTIONS(5097), 1, - anon_sym_EQ_EQ, - ACTIONS(5099), 1, - anon_sym_BANG_EQ, - ACTIONS(5101), 1, anon_sym_GT, - ACTIONS(5103), 1, - anon_sym_GT_EQ, - ACTIONS(5105), 1, anon_sym_LT_EQ, - ACTIONS(5107), 1, anon_sym_LT, - ACTIONS(5109), 1, anon_sym_LT_LT, - ACTIONS(5111), 1, anon_sym_GT_GT, - ACTIONS(5113), 1, anon_sym_EQ, - ACTIONS(5115), 1, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(5742), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, - ACTIONS(5117), 1, anon_sym_STAR_EQ, - ACTIONS(5119), 1, anon_sym_SLASH_EQ, - ACTIONS(5121), 1, anon_sym_PERCENT_EQ, - ACTIONS(5123), 1, anon_sym_PLUS_EQ, - ACTIONS(5125), 1, anon_sym_DASH_EQ, - ACTIONS(5127), 1, anon_sym_LT_LT_EQ, - ACTIONS(5129), 1, anon_sym_GT_GT_EQ, - ACTIONS(5131), 1, anon_sym_AMP_EQ, - ACTIONS(5133), 1, anon_sym_CARET_EQ, - ACTIONS(5135), 1, anon_sym_PIPE_EQ, - ACTIONS(5137), 1, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - ACTIONS(5139), 1, - anon_sym_or, - ACTIONS(5141), 1, - anon_sym_and, - ACTIONS(5143), 1, anon_sym_bitor, - ACTIONS(5145), 1, - anon_sym_xor, - ACTIONS(5147), 1, anon_sym_bitand, - ACTIONS(5149), 1, anon_sym_not_eq, - ACTIONS(5153), 1, - anon_sym_DOT_STAR, - ACTIONS(5155), 1, - anon_sym_DASH_GT_STAR, - ACTIONS(5157), 1, - anon_sym_COMMA, - ACTIONS(5173), 1, - anon_sym_RPAREN, - STATE(1750), 1, - sym__binary_fold_operator, - STATE(2721), 1, - sym_argument_list, - STATE(6364), 1, - sym__fold_operator, - ACTIONS(5019), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5151), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - [62412] = 3, + anon_sym_DASH_GT, + [58314] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4539), 16, + ACTIONS(5748), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -283021,9 +354927,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4537), 35, + ACTIONS(5746), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -283033,8 +354941,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -283046,189 +354957,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [62471] = 3, + anon_sym_DASH_GT, + [58375] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3858), 13, + ACTIONS(5752), 18, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_GT_GT, - anon_sym_const, - anon_sym_COLON, - anon_sym_DOT, - ACTIONS(3860), 38, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT_LT, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, + anon_sym_GT_GT, + anon_sym_EQ, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [62530] = 50, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4257), 1, - anon_sym_LPAREN2, - ACTIONS(5017), 1, - anon_sym_LBRACK, - ACTIONS(5071), 1, + anon_sym_DOT, + ACTIONS(5750), 35, anon_sym_DOT_DOT_DOT, - ACTIONS(5077), 1, - anon_sym_DASH, - ACTIONS(5079), 1, - anon_sym_PLUS, - ACTIONS(5081), 1, - anon_sym_STAR, - ACTIONS(5083), 1, - anon_sym_SLASH, - ACTIONS(5085), 1, - anon_sym_PERCENT, - ACTIONS(5087), 1, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, - ACTIONS(5089), 1, anon_sym_AMP_AMP, - ACTIONS(5091), 1, - anon_sym_PIPE, - ACTIONS(5093), 1, - anon_sym_CARET, - ACTIONS(5095), 1, - anon_sym_AMP, - ACTIONS(5097), 1, anon_sym_EQ_EQ, - ACTIONS(5099), 1, anon_sym_BANG_EQ, - ACTIONS(5101), 1, - anon_sym_GT, - ACTIONS(5103), 1, anon_sym_GT_EQ, - ACTIONS(5105), 1, - anon_sym_LT_EQ, - ACTIONS(5107), 1, - anon_sym_LT, - ACTIONS(5109), 1, - anon_sym_LT_LT, - ACTIONS(5111), 1, - anon_sym_GT_GT, - ACTIONS(5113), 1, - anon_sym_EQ, - ACTIONS(5115), 1, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, - ACTIONS(5117), 1, anon_sym_STAR_EQ, - ACTIONS(5119), 1, anon_sym_SLASH_EQ, - ACTIONS(5121), 1, anon_sym_PERCENT_EQ, - ACTIONS(5123), 1, anon_sym_PLUS_EQ, - ACTIONS(5125), 1, anon_sym_DASH_EQ, - ACTIONS(5127), 1, anon_sym_LT_LT_EQ, - ACTIONS(5129), 1, anon_sym_GT_GT_EQ, - ACTIONS(5131), 1, anon_sym_AMP_EQ, - ACTIONS(5133), 1, anon_sym_CARET_EQ, - ACTIONS(5135), 1, anon_sym_PIPE_EQ, - ACTIONS(5137), 1, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - ACTIONS(5139), 1, - anon_sym_or, - ACTIONS(5141), 1, - anon_sym_and, - ACTIONS(5143), 1, anon_sym_bitor, - ACTIONS(5145), 1, - anon_sym_xor, - ACTIONS(5147), 1, anon_sym_bitand, - ACTIONS(5149), 1, anon_sym_not_eq, - ACTIONS(5153), 1, - anon_sym_DOT_STAR, - ACTIONS(5155), 1, - anon_sym_DASH_GT_STAR, - ACTIONS(5157), 1, - anon_sym_COMMA, - ACTIONS(5175), 1, - anon_sym_RPAREN, - STATE(1750), 1, - sym__binary_fold_operator, - STATE(2721), 1, - sym_argument_list, - STATE(6364), 1, - sym__fold_operator, - ACTIONS(5019), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5151), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - [62683] = 6, + anon_sym_DASH_GT, + [58436] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1645), 1, - anon_sym_LBRACE, - ACTIONS(4664), 1, - anon_sym_LPAREN2, - STATE(3051), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(4507), 16, + ACTIONS(5756), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -283243,18 +355043,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4505), 31, + ACTIONS(5754), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -283266,21 +355073,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [62748] = 3, + anon_sym_DASH_GT, + [58497] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4036), 19, + ACTIONS(4505), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -283299,8 +355105,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4038), 32, + ACTIONS(4510), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -283310,7 +355115,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -283331,12 +355140,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [62807] = 3, + anon_sym_DASH_GT, + [58558] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4091), 19, + ACTIONS(5760), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -283355,8 +355163,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4093), 32, + ACTIONS(5758), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -283366,7 +355173,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -283387,115 +355198,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [62866] = 50, + anon_sym_DASH_GT, + [58619] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4257), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(5017), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(5071), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5077), 1, + ACTIONS(5497), 1, + anon_sym_DOT, + ACTIONS(5499), 1, + anon_sym_DASH_GT, + ACTIONS(5507), 1, + anon_sym_AMP_AMP, + ACTIONS(5509), 1, + anon_sym_PIPE, + ACTIONS(5513), 1, + anon_sym_AMP, + ACTIONS(5519), 1, + anon_sym_GT_EQ, + ACTIONS(5523), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5525), 1, + anon_sym_and, + ACTIONS(5527), 1, + anon_sym_bitor, + ACTIONS(5529), 1, + anon_sym_bitand, + ACTIONS(5587), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5591), 1, + anon_sym_or, + ACTIONS(5764), 1, + anon_sym_EQ, + STATE(2996), 1, + sym_argument_list, + ACTIONS(5495), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5505), 2, anon_sym_DASH, - ACTIONS(5079), 1, anon_sym_PLUS, - ACTIONS(5081), 1, + ACTIONS(5511), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5521), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5491), 3, anon_sym_STAR, - ACTIONS(5083), 1, anon_sym_SLASH, - ACTIONS(5085), 1, anon_sym_PERCENT, - ACTIONS(5087), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5089), 1, - anon_sym_AMP_AMP, - ACTIONS(5091), 1, - anon_sym_PIPE, - ACTIONS(5093), 1, - anon_sym_CARET, - ACTIONS(5095), 1, - anon_sym_AMP, - ACTIONS(5097), 1, + ACTIONS(5515), 3, anon_sym_EQ_EQ, - ACTIONS(5099), 1, anon_sym_BANG_EQ, - ACTIONS(5101), 1, + anon_sym_not_eq, + ACTIONS(5517), 3, anon_sym_GT, - ACTIONS(5103), 1, - anon_sym_GT_EQ, - ACTIONS(5105), 1, anon_sym_LT_EQ, - ACTIONS(5107), 1, anon_sym_LT, - ACTIONS(5109), 1, - anon_sym_LT_LT, - ACTIONS(5111), 1, - anon_sym_GT_GT, - ACTIONS(5113), 1, - anon_sym_EQ, - ACTIONS(5115), 1, + ACTIONS(5762), 20, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_QMARK, - ACTIONS(5117), 1, anon_sym_STAR_EQ, - ACTIONS(5119), 1, anon_sym_SLASH_EQ, - ACTIONS(5121), 1, anon_sym_PERCENT_EQ, - ACTIONS(5123), 1, anon_sym_PLUS_EQ, - ACTIONS(5125), 1, anon_sym_DASH_EQ, - ACTIONS(5127), 1, anon_sym_LT_LT_EQ, - ACTIONS(5129), 1, anon_sym_GT_GT_EQ, - ACTIONS(5131), 1, anon_sym_AMP_EQ, - ACTIONS(5133), 1, anon_sym_CARET_EQ, - ACTIONS(5135), 1, anon_sym_PIPE_EQ, - ACTIONS(5137), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5139), 1, - anon_sym_or, - ACTIONS(5141), 1, - anon_sym_and, - ACTIONS(5143), 1, - anon_sym_bitor, - ACTIONS(5145), 1, - anon_sym_xor, - ACTIONS(5147), 1, - anon_sym_bitand, - ACTIONS(5149), 1, - anon_sym_not_eq, - ACTIONS(5153), 1, - anon_sym_DOT_STAR, - ACTIONS(5155), 1, - anon_sym_DASH_GT_STAR, - ACTIONS(5157), 1, - anon_sym_COMMA, - ACTIONS(5177), 1, - anon_sym_RPAREN, - STATE(1750), 1, - sym__binary_fold_operator, - STATE(2721), 1, - sym_argument_list, - STATE(6364), 1, - sym__fold_operator, - ACTIONS(5019), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5151), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - [63019] = 3, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + [58724] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1729), 19, + ACTIONS(4734), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -283514,8 +355301,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1727), 32, + ACTIONS(4736), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -283525,7 +355311,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -283546,124 +355336,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [63078] = 3, + anon_sym_DASH_GT, + [58785] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3862), 13, + ACTIONS(4555), 2, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + ACTIONS(4557), 19, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_const, - anon_sym_COLON, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(3864), 38, + anon_sym_DASH_GT, + ACTIONS(4562), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_COLON_COLON, - anon_sym_LBRACE, + anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [63137] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [58848] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3896), 13, + ACTIONS(5768), 18, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_const, - anon_sym_COLON, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(3898), 38, + ACTIONS(5766), 35, 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_LT_LT, - anon_sym_COLON_COLON, - anon_sym_LBRACE, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [63196] = 3, + [58909] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4547), 16, + ACTIONS(5772), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -283678,9 +355472,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4545), 35, + ACTIONS(5770), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -283690,8 +355486,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -283703,23 +355502,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [63255] = 3, + anon_sym_DASH_GT, + [58970] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3803), 19, + ACTIONS(5776), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -283738,8 +355534,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3795), 32, + ACTIONS(5774), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -283749,7 +355544,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -283770,19 +355569,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [63314] = 6, + anon_sym_DASH_GT, + [59031] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1645), 1, - anon_sym_LBRACE, - ACTIONS(4664), 1, - anon_sym_LPAREN2, - STATE(3032), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(4375), 16, + ACTIONS(5780), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -283797,18 +355588,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4373), 31, + ACTIONS(5778), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -283820,21 +355618,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [63379] = 3, + anon_sym_DASH_GT, + [59092] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3803), 19, + ACTIONS(4505), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -283853,8 +355650,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3795), 32, + ACTIONS(4510), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -283864,7 +355660,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -283885,12 +355685,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [63438] = 3, + anon_sym_DASH_GT, + [59153] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4933), 19, + ACTIONS(4505), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -283909,8 +355708,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4931), 32, + ACTIONS(4510), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -283920,7 +355718,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -283941,12 +355743,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [63497] = 3, + anon_sym_DASH_GT, + [59214] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4929), 19, + ACTIONS(4505), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -283965,8 +355766,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4927), 32, + ACTIONS(4510), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -283976,7 +355776,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -283997,68 +355801,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [63556] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5181), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(5179), 45, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_concept, - anon_sym_requires, - [63615] = 3, + anon_sym_DASH_GT, + [59275] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4551), 16, + ACTIONS(4505), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -284073,9 +355820,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4549), 35, + ACTIONS(4510), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -284085,8 +355834,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -284098,23 +355850,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - sym_auto, + anon_sym_DASH_GT, + [59336] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(45), 1, + anon_sym___based, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1931), 1, + anon_sym_operator, + ACTIONS(1973), 1, anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [63674] = 3, + ACTIONS(2562), 1, + anon_sym_TILDE, + ACTIONS(4014), 1, + anon_sym_LPAREN2, + ACTIONS(5002), 1, + sym_identifier, + ACTIONS(5012), 1, + anon_sym_COLON_COLON, + ACTIONS(5014), 1, + anon_sym_LBRACK, + ACTIONS(5030), 1, + anon_sym_STAR, + ACTIONS(5032), 1, + anon_sym_AMP_AMP, + ACTIONS(5034), 1, + anon_sym_AMP, + STATE(3964), 1, + sym_parameter_list, + STATE(5316), 1, + sym__scope_resolution, + STATE(5421), 1, + sym__declarator, + STATE(5457), 1, + sym__function_declarator_seq, + STATE(5670), 1, + sym__abstract_declarator, + STATE(7713), 1, + sym_ms_based_modifier, + ACTIONS(5782), 2, + anon_sym_COMMA, + anon_sym_GT2, + STATE(4706), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(7638), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(5452), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(2871), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + STATE(5640), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [59440] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3892), 13, + ACTIONS(5289), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -284126,9 +355954,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_const, - anon_sym_COLON, anon_sym_DOT, - ACTIONS(3894), 38, + ACTIONS(5287), 40, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -284140,14 +355967,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_LT, - anon_sym_COLON_COLON, anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_QMARK, @@ -284167,10 +355996,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [63733] = 3, + [59500] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(45), 1, + anon_sym___based, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1931), 1, + anon_sym_operator, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(2562), 1, + anon_sym_TILDE, + ACTIONS(4014), 1, + anon_sym_LPAREN2, + ACTIONS(5002), 1, + sym_identifier, + ACTIONS(5006), 1, + anon_sym_STAR, + ACTIONS(5008), 1, + anon_sym_AMP_AMP, + ACTIONS(5010), 1, + anon_sym_AMP, + ACTIONS(5012), 1, + anon_sym_COLON_COLON, + ACTIONS(5014), 1, + anon_sym_LBRACK, + STATE(3900), 1, + sym_parameter_list, + STATE(5316), 1, + sym__scope_resolution, + STATE(5421), 1, + sym__declarator, + STATE(5457), 1, + sym__function_declarator_seq, + STATE(5608), 1, + sym__abstract_declarator, + STATE(7713), 1, + sym_ms_based_modifier, + ACTIONS(5782), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(4706), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(7638), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(5452), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(2871), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + STATE(5640), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [59604] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3902), 13, + ACTIONS(5293), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -284182,9 +356090,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_const, - anon_sym_COLON, anon_sym_DOT, - ACTIONS(3904), 38, + ACTIONS(5291), 40, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -284196,14 +356103,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_LT, - anon_sym_COLON_COLON, anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_QMARK, @@ -284223,10 +356132,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [63792] = 3, + [59664] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3866), 13, + ACTIONS(5297), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -284238,9 +356147,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_const, - anon_sym_COLON, anon_sym_DOT, - ACTIONS(3868), 38, + ACTIONS(5295), 40, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -284252,14 +356160,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_LT, - anon_sym_COLON_COLON, anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_QMARK, @@ -284279,10 +356189,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [63851] = 3, + [59724] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4563), 16, + ACTIONS(4742), 1, + sym_literal_suffix, + ACTIONS(4465), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -284297,9 +356209,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4561), 35, + ACTIONS(4457), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -284309,7 +356230,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -284323,64 +356243,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - sym_auto, - anon_sym_decltype, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [63910] = 4, + [59786] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4229), 1, - anon_sym_COLON_COLON, - ACTIONS(4227), 13, + ACTIONS(5285), 20, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_const, - anon_sym_COLON, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4225), 37, + ACTIONS(5283), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, @@ -284388,14 +356303,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, anon_sym_GT2, - anon_sym_requires, - [63971] = 3, + [59846] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4567), 16, + ACTIONS(4650), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5375), 1, + anon_sym_LBRACK, + ACTIONS(5369), 2, + anon_sym_RPAREN, + anon_sym_LPAREN2, + ACTIONS(4465), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -284410,20 +356329,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4565), 35, + ACTIONS(4457), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -284435,23 +356353,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - sym_auto, - anon_sym_decltype, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [64030] = 3, + [59912] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4395), 16, + ACTIONS(4650), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5375), 1, + anon_sym_LBRACK, + ACTIONS(5369), 2, + anon_sym_RPAREN, + anon_sym_LPAREN2, + ACTIONS(4465), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -284466,20 +356389,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4393), 35, + ACTIONS(4457), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -284491,23 +356413,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - sym_auto, - anon_sym_decltype, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [64089] = 3, + [59978] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4909), 19, + ACTIONS(5088), 1, + anon_sym_LPAREN2, + ACTIONS(5784), 1, + anon_sym_LBRACK, + STATE(3343), 1, + sym_argument_list, + ACTIONS(5786), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5647), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -284521,24 +356450,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DOT, - ACTIONS(4907), 32, + ACTIONS(5645), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -284559,39 +356483,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [64148] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [60046] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(4415), 16, + ACTIONS(5088), 1, + anon_sym_LPAREN2, + ACTIONS(5784), 1, + anon_sym_LBRACK, + ACTIONS(5794), 1, + anon_sym_LT_EQ_GT, + STATE(3343), 1, + sym_argument_list, + ACTIONS(5786), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5788), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(5792), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5796), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5790), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(5669), 10, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_EQ, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4413), 35, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(5667), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -284603,51 +356543,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_auto, - anon_sym_decltype, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [64207] = 3, + [60124] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(4598), 16, + ACTIONS(5088), 1, + anon_sym_LPAREN2, + ACTIONS(5677), 1, + anon_sym_EQ, + ACTIONS(5784), 1, + anon_sym_LBRACK, + ACTIONS(5794), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5800), 1, + anon_sym_AMP_AMP, + ACTIONS(5802), 1, + anon_sym_PIPE, + ACTIONS(5806), 1, + anon_sym_AMP, + ACTIONS(5812), 1, + anon_sym_GT_EQ, + ACTIONS(5814), 1, + anon_sym_or, + ACTIONS(5816), 1, + anon_sym_and, + ACTIONS(5818), 1, + anon_sym_bitor, + ACTIONS(5820), 1, + anon_sym_bitand, + STATE(3343), 1, + sym_argument_list, + ACTIONS(5786), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5788), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(5792), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5796), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5804), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5790), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(5808), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5810), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4596), 35, + ACTIONS(5675), 19, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -284659,23 +356624,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_auto, - anon_sym_decltype, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [64266] = 3, + [60226] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4371), 16, + ACTIONS(5088), 1, + anon_sym_LPAREN2, + ACTIONS(5784), 1, + anon_sym_LBRACK, + STATE(3343), 1, + sym_argument_list, + ACTIONS(5786), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5681), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -284690,20 +356656,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4369), 35, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(5679), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -284715,79 +356679,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - sym_auto, - anon_sym_decltype, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [64325] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5185), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(5183), 45, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_concept, - anon_sym_requires, - [64384] = 3, + [60294] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4727), 19, + ACTIONS(5155), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -284797,26 +356703,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4729), 32, + ACTIONS(5153), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -284825,7 +356731,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -284838,12 +356743,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [64443] = 3, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [60354] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4770), 19, + ACTIONS(5822), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(5432), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -284857,13 +356766,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4768), 32, + ACTIONS(5430), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -284873,7 +356783,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -284896,10 +356805,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [64502] = 3, + [60416] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4913), 19, + ACTIONS(5365), 1, + sym_auto, + ACTIONS(5367), 1, + anon_sym_decltype, + STATE(3320), 1, + sym_decltype_auto, + ACTIONS(5143), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -284914,12 +356829,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4911), 32, + ACTIONS(5141), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -284929,6 +356841,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -284941,118 +356854,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [64561] = 5, + [60482] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4387), 1, - anon_sym_LBRACK, - STATE(2848), 1, - sym_new_declarator, - ACTIONS(4662), 20, + ACTIONS(5178), 12, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, + anon_sym_const, anon_sym_DOT, - ACTIONS(4660), 29, + ACTIONS(5176), 40, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT_LT, anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - [64624] = 3, + anon_sym_requires, + [60542] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4445), 16, + ACTIONS(5182), 12, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + anon_sym_const, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4443), 35, + ACTIONS(5180), 40, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_LT_LT, anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, @@ -285062,109 +356972,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [64683] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [60602] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5189), 6, + ACTIONS(5190), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(5188), 40, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_TILDE, anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(5187), 45, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_virtual, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_concept, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, anon_sym_requires, - [64742] = 3, + [60662] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4555), 16, + ACTIONS(5194), 12, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + anon_sym_const, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4553), 35, + ACTIONS(5192), 40, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_LT_LT, anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, @@ -285174,44 +357086,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [64801] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [60722] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(4851), 19, + ACTIONS(5088), 1, + anon_sym_LPAREN2, + ACTIONS(5603), 1, + anon_sym_EQ, + ACTIONS(5784), 1, + anon_sym_LBRACK, + ACTIONS(5794), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5800), 1, + anon_sym_AMP_AMP, + ACTIONS(5802), 1, + anon_sym_PIPE, + ACTIONS(5806), 1, + anon_sym_AMP, + ACTIONS(5812), 1, + anon_sym_GT_EQ, + ACTIONS(5814), 1, + anon_sym_or, + ACTIONS(5816), 1, + anon_sym_and, + ACTIONS(5818), 1, + anon_sym_bitor, + ACTIONS(5820), 1, + anon_sym_bitand, + STATE(3343), 1, + sym_argument_list, + ACTIONS(5786), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5788), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(5792), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5796), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5804), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5790), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(5808), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5810), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4849), 32, + ACTIONS(5601), 19, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -285226,57 +357169,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [64860] = 3, + [60824] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4618), 16, + ACTIONS(5198), 12, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + anon_sym_const, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4616), 35, + ACTIONS(5196), 40, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_LT_LT, anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, @@ -285286,53 +357221,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [64919] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [60884] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4622), 16, + ACTIONS(5202), 12, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + anon_sym_const, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4620), 35, + ACTIONS(5200), 40, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_LT_LT, anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, @@ -285342,53 +357278,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [64978] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [60944] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 16, + ACTIONS(5226), 12, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + anon_sym_const, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4493), 35, + ACTIONS(5224), 40, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_LT_LT, anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, @@ -285398,53 +357335,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [65037] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [61004] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4575), 16, + ACTIONS(5281), 12, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + anon_sym_const, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4573), 35, + ACTIONS(5279), 40, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_LT_LT, anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, @@ -285454,14 +357392,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [65096] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [61064] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4583), 16, + ACTIONS(5266), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -285471,23 +357412,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4581), 35, + ACTIONS(5264), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -285497,27 +357440,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [65155] = 3, + anon_sym_GT2, + [61124] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4499), 16, + ACTIONS(5246), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -285527,23 +357469,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4497), 35, + ACTIONS(5244), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -285553,27 +357497,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, + anon_sym_GT2, + [61184] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5088), 1, + anon_sym_LPAREN2, + ACTIONS(5589), 1, + anon_sym_EQ, + ACTIONS(5784), 1, + anon_sym_LBRACK, + ACTIONS(5794), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5800), 1, + anon_sym_AMP_AMP, + ACTIONS(5802), 1, + anon_sym_PIPE, + ACTIONS(5806), 1, + anon_sym_AMP, + ACTIONS(5812), 1, + anon_sym_GT_EQ, + ACTIONS(5814), 1, + anon_sym_or, + ACTIONS(5816), 1, + anon_sym_and, + ACTIONS(5818), 1, + anon_sym_bitor, + ACTIONS(5820), 1, + anon_sym_bitand, + ACTIONS(5824), 1, + anon_sym_DOT_DOT_DOT, + STATE(3343), 1, + sym_argument_list, + ACTIONS(5786), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5788), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5792), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5796), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5804), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5790), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5808), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5810), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5585), 18, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [65214] = 3, + [61288] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4905), 19, + ACTIONS(5242), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -285583,26 +357605,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4903), 32, + ACTIONS(5240), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -285611,7 +357633,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -285624,51 +357645,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [65273] = 3, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [61348] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4587), 16, + ACTIONS(5345), 12, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + anon_sym_const, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4585), 35, + ACTIONS(5343), 40, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_LT_LT, anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, @@ -285678,53 +357699,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [65332] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [61408] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4614), 16, + ACTIONS(5262), 12, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + anon_sym_const, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4612), 35, + ACTIONS(5260), 40, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_LT_LT, anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, @@ -285734,117 +357756,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [65391] = 50, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [61468] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4257), 1, - anon_sym_LPAREN2, - ACTIONS(5017), 1, - anon_sym_LBRACK, - ACTIONS(5071), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5077), 1, + ACTIONS(5043), 1, + anon_sym_COLON_COLON, + ACTIONS(5155), 16, anon_sym_DASH, - ACTIONS(5079), 1, anon_sym_PLUS, - ACTIONS(5081), 1, anon_sym_STAR, - ACTIONS(5083), 1, anon_sym_SLASH, - ACTIONS(5085), 1, anon_sym_PERCENT, - ACTIONS(5087), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5089), 1, - anon_sym_AMP_AMP, - ACTIONS(5091), 1, anon_sym_PIPE, - ACTIONS(5093), 1, anon_sym_CARET, - ACTIONS(5095), 1, anon_sym_AMP, - ACTIONS(5097), 1, - anon_sym_EQ_EQ, - ACTIONS(5099), 1, - anon_sym_BANG_EQ, - ACTIONS(5101), 1, anon_sym_GT, - ACTIONS(5103), 1, - anon_sym_GT_EQ, - ACTIONS(5105), 1, anon_sym_LT_EQ, - ACTIONS(5107), 1, anon_sym_LT, - ACTIONS(5109), 1, anon_sym_LT_LT, - ACTIONS(5111), 1, anon_sym_GT_GT, - ACTIONS(5113), 1, anon_sym_EQ, - ACTIONS(5115), 1, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5153), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, - ACTIONS(5117), 1, anon_sym_STAR_EQ, - ACTIONS(5119), 1, anon_sym_SLASH_EQ, - ACTIONS(5121), 1, anon_sym_PERCENT_EQ, - ACTIONS(5123), 1, anon_sym_PLUS_EQ, - ACTIONS(5125), 1, anon_sym_DASH_EQ, - ACTIONS(5127), 1, anon_sym_LT_LT_EQ, - ACTIONS(5129), 1, anon_sym_GT_GT_EQ, - ACTIONS(5131), 1, anon_sym_AMP_EQ, - ACTIONS(5133), 1, anon_sym_CARET_EQ, - ACTIONS(5135), 1, anon_sym_PIPE_EQ, - ACTIONS(5137), 1, anon_sym_LT_EQ_GT, - ACTIONS(5139), 1, anon_sym_or, - ACTIONS(5141), 1, anon_sym_and, - ACTIONS(5143), 1, anon_sym_bitor, - ACTIONS(5145), 1, anon_sym_xor, - ACTIONS(5147), 1, anon_sym_bitand, - ACTIONS(5149), 1, anon_sym_not_eq, - ACTIONS(5153), 1, - anon_sym_DOT_STAR, - ACTIONS(5155), 1, - anon_sym_DASH_GT_STAR, - ACTIONS(5157), 1, - anon_sym_COMMA, - ACTIONS(5191), 1, - anon_sym_RPAREN, - STATE(1750), 1, - sym__binary_fold_operator, - STATE(2721), 1, - sym_argument_list, - STATE(6364), 1, - sym__fold_operator, - ACTIONS(5019), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5151), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - [65544] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [61530] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4865), 19, + ACTIONS(2043), 1, + anon_sym_LBRACE, + ACTIONS(5212), 1, + anon_sym_LPAREN2, + STATE(3462), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5174), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -285854,26 +357841,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4863), 32, + ACTIONS(5172), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -285882,7 +357867,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -285895,51 +357879,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [65603] = 3, + anon_sym_DASH_GT, + anon_sym_GT2, + [61596] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4324), 16, + ACTIONS(5230), 12, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + anon_sym_const, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4322), 35, + ACTIONS(5228), 40, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_LT_LT, anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, @@ -285949,14 +357931,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [65662] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [61656] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4060), 19, + ACTIONS(2043), 1, + anon_sym_LBRACE, + ACTIONS(5212), 1, + anon_sym_LPAREN2, + STATE(3456), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5222), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -285966,26 +357958,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4062), 32, + ACTIONS(5220), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -285994,7 +357984,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -286007,12 +357996,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [65721] = 3, + anon_sym_DASH_GT, + anon_sym_GT2, + [61722] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4877), 19, + ACTIONS(5088), 1, + anon_sym_LPAREN2, + ACTIONS(5784), 1, + anon_sym_LBRACK, + STATE(3343), 1, + sym_argument_list, + ACTIONS(5786), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5796), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5665), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -286030,19 +358031,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4875), 32, + ACTIONS(5663), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -286061,173 +358058,130 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [65780] = 3, + [61792] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4658), 19, + ACTIONS(5274), 12, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, + anon_sym_const, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4656), 32, + ACTIONS(5272), 40, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [65839] = 50, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4257), 1, - anon_sym_LPAREN2, - ACTIONS(5017), 1, - anon_sym_LBRACK, - ACTIONS(5071), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5073), 1, - anon_sym_COMMA, - ACTIONS(5077), 1, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [61852] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4476), 1, + anon_sym_COLON_COLON, + ACTIONS(4503), 1, + anon_sym_LBRACE, + ACTIONS(4761), 1, + anon_sym_LT, + STATE(3307), 1, + sym_template_argument_list, + ACTIONS(4505), 19, anon_sym_DASH, - ACTIONS(5079), 1, anon_sym_PLUS, - ACTIONS(5081), 1, anon_sym_STAR, - ACTIONS(5083), 1, anon_sym_SLASH, - ACTIONS(5085), 1, anon_sym_PERCENT, - ACTIONS(5087), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5089), 1, - anon_sym_AMP_AMP, - ACTIONS(5091), 1, anon_sym_PIPE, - ACTIONS(5093), 1, anon_sym_CARET, - ACTIONS(5095), 1, anon_sym_AMP, - ACTIONS(5097), 1, - anon_sym_EQ_EQ, - ACTIONS(5099), 1, - anon_sym_BANG_EQ, - ACTIONS(5101), 1, anon_sym_GT, - ACTIONS(5103), 1, anon_sym_GT_EQ, - ACTIONS(5105), 1, anon_sym_LT_EQ, - ACTIONS(5107), 1, - anon_sym_LT, - ACTIONS(5109), 1, anon_sym_LT_LT, - ACTIONS(5111), 1, anon_sym_GT_GT, - ACTIONS(5113), 1, anon_sym_EQ, - ACTIONS(5115), 1, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4510), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, anon_sym_QMARK, - ACTIONS(5117), 1, anon_sym_STAR_EQ, - ACTIONS(5119), 1, anon_sym_SLASH_EQ, - ACTIONS(5121), 1, anon_sym_PERCENT_EQ, - ACTIONS(5123), 1, anon_sym_PLUS_EQ, - ACTIONS(5125), 1, anon_sym_DASH_EQ, - ACTIONS(5127), 1, anon_sym_LT_LT_EQ, - ACTIONS(5129), 1, - anon_sym_GT_GT_EQ, - ACTIONS(5131), 1, anon_sym_AMP_EQ, - ACTIONS(5133), 1, anon_sym_CARET_EQ, - ACTIONS(5135), 1, anon_sym_PIPE_EQ, - ACTIONS(5137), 1, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - ACTIONS(5139), 1, - anon_sym_or, - ACTIONS(5141), 1, - anon_sym_and, - ACTIONS(5143), 1, anon_sym_bitor, - ACTIONS(5145), 1, - anon_sym_xor, - ACTIONS(5147), 1, anon_sym_bitand, - ACTIONS(5149), 1, anon_sym_not_eq, - ACTIONS(5153), 1, - anon_sym_DOT_STAR, - ACTIONS(5155), 1, - anon_sym_DASH_GT_STAR, - ACTIONS(5193), 1, - anon_sym_RPAREN, - STATE(1750), 1, - sym__binary_fold_operator, - STATE(2721), 1, - sym_argument_list, - STATE(6364), 1, - sym__fold_operator, - ACTIONS(5019), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5151), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - [65992] = 3, + anon_sym_DASH_GT, + anon_sym_GT2, + [61920] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4887), 19, + ACTIONS(5238), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -286237,26 +358191,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4885), 32, + ACTIONS(5236), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -286265,7 +358219,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -286278,19 +358231,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [66051] = 6, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [61980] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1645), 1, + ACTIONS(4476), 1, + anon_sym_COLON_COLON, + ACTIONS(4481), 1, anon_sym_LBRACE, - ACTIONS(4664), 1, - anon_sym_LPAREN2, - STATE(3027), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(4519), 16, + ACTIONS(5399), 1, + anon_sym_LT, + ACTIONS(5553), 1, + anon_sym_EQ, + STATE(3864), 1, + sym_template_argument_list, + ACTIONS(5555), 13, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + ACTIONS(4465), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -286301,444 +358273,221 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4517), 31, + ACTIONS(4457), 18, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [66116] = 50, + anon_sym_DASH_GT, + [62052] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4257), 1, - anon_sym_LPAREN2, - ACTIONS(5017), 1, - anon_sym_LBRACK, - ACTIONS(5071), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5077), 1, + ACTIONS(5258), 12, anon_sym_DASH, - ACTIONS(5079), 1, anon_sym_PLUS, - ACTIONS(5081), 1, - anon_sym_STAR, - ACTIONS(5083), 1, anon_sym_SLASH, - ACTIONS(5085), 1, - anon_sym_PERCENT, - ACTIONS(5087), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5089), 1, - anon_sym_AMP_AMP, - ACTIONS(5091), 1, anon_sym_PIPE, - ACTIONS(5093), 1, - anon_sym_CARET, - ACTIONS(5095), 1, anon_sym_AMP, - ACTIONS(5097), 1, - anon_sym_EQ_EQ, - ACTIONS(5099), 1, - anon_sym_BANG_EQ, - ACTIONS(5101), 1, anon_sym_GT, - ACTIONS(5103), 1, anon_sym_GT_EQ, - ACTIONS(5105), 1, anon_sym_LT_EQ, - ACTIONS(5107), 1, anon_sym_LT, - ACTIONS(5109), 1, - anon_sym_LT_LT, - ACTIONS(5111), 1, anon_sym_GT_GT, - ACTIONS(5113), 1, - anon_sym_EQ, - ACTIONS(5115), 1, - anon_sym_QMARK, - ACTIONS(5117), 1, - anon_sym_STAR_EQ, - ACTIONS(5119), 1, - anon_sym_SLASH_EQ, - ACTIONS(5121), 1, - anon_sym_PERCENT_EQ, - ACTIONS(5123), 1, - anon_sym_PLUS_EQ, - ACTIONS(5125), 1, - anon_sym_DASH_EQ, - ACTIONS(5127), 1, - anon_sym_LT_LT_EQ, - ACTIONS(5129), 1, - anon_sym_GT_GT_EQ, - ACTIONS(5131), 1, - anon_sym_AMP_EQ, - ACTIONS(5133), 1, - anon_sym_CARET_EQ, - ACTIONS(5135), 1, - anon_sym_PIPE_EQ, - ACTIONS(5137), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5139), 1, - anon_sym_or, - ACTIONS(5141), 1, - anon_sym_and, - ACTIONS(5143), 1, - anon_sym_bitor, - ACTIONS(5145), 1, - anon_sym_xor, - ACTIONS(5147), 1, - anon_sym_bitand, - ACTIONS(5149), 1, - anon_sym_not_eq, - ACTIONS(5153), 1, - anon_sym_DOT_STAR, - ACTIONS(5155), 1, - anon_sym_DASH_GT_STAR, - ACTIONS(5157), 1, - anon_sym_COMMA, - ACTIONS(5195), 1, - anon_sym_RPAREN, - STATE(1750), 1, - sym__binary_fold_operator, - STATE(2721), 1, - sym_argument_list, - STATE(6364), 1, - sym__fold_operator, - ACTIONS(5019), 2, + anon_sym_const, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5151), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - [66269] = 50, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4257), 1, - anon_sym_LPAREN2, - ACTIONS(5017), 1, - anon_sym_LBRACK, - ACTIONS(5071), 1, + ACTIONS(5256), 40, anon_sym_DOT_DOT_DOT, - ACTIONS(5077), 1, - anon_sym_DASH, - ACTIONS(5079), 1, - anon_sym_PLUS, - ACTIONS(5081), 1, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(5083), 1, - anon_sym_SLASH, - ACTIONS(5085), 1, anon_sym_PERCENT, - ACTIONS(5087), 1, anon_sym_PIPE_PIPE, - ACTIONS(5089), 1, anon_sym_AMP_AMP, - ACTIONS(5091), 1, - anon_sym_PIPE, - ACTIONS(5093), 1, anon_sym_CARET, - ACTIONS(5095), 1, - anon_sym_AMP, - ACTIONS(5097), 1, anon_sym_EQ_EQ, - ACTIONS(5099), 1, anon_sym_BANG_EQ, - ACTIONS(5101), 1, - anon_sym_GT, - ACTIONS(5103), 1, - anon_sym_GT_EQ, - ACTIONS(5105), 1, - anon_sym_LT_EQ, - ACTIONS(5107), 1, - anon_sym_LT, - ACTIONS(5109), 1, anon_sym_LT_LT, - ACTIONS(5111), 1, - anon_sym_GT_GT, - ACTIONS(5113), 1, - anon_sym_EQ, - ACTIONS(5115), 1, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_QMARK, - ACTIONS(5117), 1, - anon_sym_STAR_EQ, - ACTIONS(5119), 1, - anon_sym_SLASH_EQ, - ACTIONS(5121), 1, - anon_sym_PERCENT_EQ, - ACTIONS(5123), 1, - anon_sym_PLUS_EQ, - ACTIONS(5125), 1, - anon_sym_DASH_EQ, - ACTIONS(5127), 1, - anon_sym_LT_LT_EQ, - ACTIONS(5129), 1, - anon_sym_GT_GT_EQ, - ACTIONS(5131), 1, - anon_sym_AMP_EQ, - ACTIONS(5133), 1, - anon_sym_CARET_EQ, - ACTIONS(5135), 1, - anon_sym_PIPE_EQ, - ACTIONS(5137), 1, anon_sym_LT_EQ_GT, - ACTIONS(5139), 1, anon_sym_or, - ACTIONS(5141), 1, anon_sym_and, - ACTIONS(5143), 1, anon_sym_bitor, - ACTIONS(5145), 1, anon_sym_xor, - ACTIONS(5147), 1, anon_sym_bitand, - ACTIONS(5149), 1, anon_sym_not_eq, - ACTIONS(5153), 1, - anon_sym_DOT_STAR, - ACTIONS(5155), 1, - anon_sym_DASH_GT_STAR, - ACTIONS(5157), 1, - anon_sym_COMMA, - ACTIONS(5197), 1, - anon_sym_RPAREN, - STATE(1750), 1, - sym__binary_fold_operator, - STATE(2721), 1, - sym_argument_list, - STATE(6364), 1, - sym__fold_operator, - ACTIONS(5019), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5151), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - [66422] = 50, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [62112] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4257), 1, - anon_sym_LPAREN2, - ACTIONS(5017), 1, - anon_sym_LBRACK, - ACTIONS(5071), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5077), 1, + ACTIONS(5170), 12, anon_sym_DASH, - ACTIONS(5079), 1, anon_sym_PLUS, - ACTIONS(5081), 1, - anon_sym_STAR, - ACTIONS(5083), 1, anon_sym_SLASH, - ACTIONS(5085), 1, - anon_sym_PERCENT, - ACTIONS(5087), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5089), 1, - anon_sym_AMP_AMP, - ACTIONS(5091), 1, anon_sym_PIPE, - ACTIONS(5093), 1, - anon_sym_CARET, - ACTIONS(5095), 1, anon_sym_AMP, - ACTIONS(5097), 1, - anon_sym_EQ_EQ, - ACTIONS(5099), 1, - anon_sym_BANG_EQ, - ACTIONS(5101), 1, anon_sym_GT, - ACTIONS(5103), 1, anon_sym_GT_EQ, - ACTIONS(5105), 1, anon_sym_LT_EQ, - ACTIONS(5107), 1, anon_sym_LT, - ACTIONS(5109), 1, - anon_sym_LT_LT, - ACTIONS(5111), 1, anon_sym_GT_GT, - ACTIONS(5113), 1, - anon_sym_EQ, - ACTIONS(5115), 1, + anon_sym_const, + anon_sym_DOT, + ACTIONS(5168), 40, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_QMARK, - ACTIONS(5117), 1, - anon_sym_STAR_EQ, - ACTIONS(5119), 1, - anon_sym_SLASH_EQ, - ACTIONS(5121), 1, - anon_sym_PERCENT_EQ, - ACTIONS(5123), 1, - anon_sym_PLUS_EQ, - ACTIONS(5125), 1, - anon_sym_DASH_EQ, - ACTIONS(5127), 1, - anon_sym_LT_LT_EQ, - ACTIONS(5129), 1, - anon_sym_GT_GT_EQ, - ACTIONS(5131), 1, - anon_sym_AMP_EQ, - ACTIONS(5133), 1, - anon_sym_CARET_EQ, - ACTIONS(5135), 1, - anon_sym_PIPE_EQ, - ACTIONS(5137), 1, anon_sym_LT_EQ_GT, - ACTIONS(5139), 1, anon_sym_or, - ACTIONS(5141), 1, anon_sym_and, - ACTIONS(5143), 1, anon_sym_bitor, - ACTIONS(5145), 1, anon_sym_xor, - ACTIONS(5147), 1, anon_sym_bitand, - ACTIONS(5149), 1, anon_sym_not_eq, - ACTIONS(5153), 1, - anon_sym_DOT_STAR, - ACTIONS(5155), 1, - anon_sym_DASH_GT_STAR, - ACTIONS(5157), 1, - anon_sym_COMMA, - ACTIONS(5199), 1, - anon_sym_RPAREN, - STATE(1750), 1, - sym__binary_fold_operator, - STATE(2721), 1, - sym_argument_list, - STATE(6364), 1, - sym__fold_operator, - ACTIONS(5019), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5151), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - [66575] = 15, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [62172] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4385), 1, - anon_sym_LPAREN2, - ACTIONS(5211), 1, - anon_sym_LBRACK, - ACTIONS(5213), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5217), 1, - anon_sym_DOT, - ACTIONS(5219), 1, - anon_sym_DASH_GT, - STATE(3010), 1, - sym_argument_list, - ACTIONS(5201), 2, + ACTIONS(5341), 12, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5209), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5215), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5203), 3, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5205), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5207), 4, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(4883), 8, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - ACTIONS(4881), 20, + anon_sym_GT_GT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(5339), 40, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - [66657] = 3, + anon_sym_requires, + [62232] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4002), 16, + ACTIONS(5337), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + anon_sym_GT_GT, + anon_sym_const, anon_sym_DOT, - sym_literal_suffix, - ACTIONS(4000), 34, + ACTIONS(5335), 40, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -286747,109 +358496,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_QMARK, anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [66715] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4385), 1, - anon_sym_LPAREN2, - ACTIONS(5211), 1, - anon_sym_LBRACK, - ACTIONS(5213), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5217), 1, - anon_sym_DOT, - ACTIONS(5219), 1, - anon_sym_DASH_GT, - ACTIONS(5221), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5223), 1, - anon_sym_AMP_AMP, - ACTIONS(5225), 1, - anon_sym_PIPE, - ACTIONS(5229), 1, - anon_sym_AMP, - ACTIONS(5231), 1, anon_sym_or, - ACTIONS(5233), 1, anon_sym_and, - ACTIONS(5235), 1, anon_sym_bitor, - ACTIONS(5237), 1, + anon_sym_xor, anon_sym_bitand, - STATE(3010), 1, - sym_argument_list, - ACTIONS(4820), 2, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - ACTIONS(5201), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5209), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5215), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5227), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5203), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5205), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5207), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(4818), 16, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - [66815] = 3, + anon_sym_requires, + [62292] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4328), 12, + ACTIONS(5333), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -286862,7 +358542,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_const, anon_sym_DOT, - ACTIONS(4326), 38, + ACTIONS(5331), 40, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -286874,14 +358554,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_LT, - anon_sym_COLON_COLON, anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_QMARK, @@ -286901,68 +358583,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [66873] = 24, + [62352] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4385), 1, - anon_sym_LPAREN2, - ACTIONS(5211), 1, - anon_sym_LBRACK, - ACTIONS(5213), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5217), 1, - anon_sym_DOT, - ACTIONS(5219), 1, - anon_sym_DASH_GT, - ACTIONS(5221), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5223), 1, - anon_sym_AMP_AMP, - ACTIONS(5225), 1, - anon_sym_PIPE, - ACTIONS(5229), 1, - anon_sym_AMP, - ACTIONS(5231), 1, - anon_sym_or, - ACTIONS(5233), 1, - anon_sym_and, - ACTIONS(5235), 1, - anon_sym_bitor, - ACTIONS(5237), 1, - anon_sym_bitand, - STATE(3010), 1, - sym_argument_list, - ACTIONS(4977), 2, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - ACTIONS(5201), 2, + ACTIONS(5139), 16, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5209), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5215), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5227), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5203), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(5205), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5207), 4, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(4975), 16, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5137), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -286970,30 +358623,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_GT2, - [66973] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4385), 1, - anon_sym_LPAREN2, - ACTIONS(5211), 1, - anon_sym_LBRACK, - ACTIONS(5217), 1, - anon_sym_DOT, - ACTIONS(5219), 1, - anon_sym_DASH_GT, - STATE(3010), 1, - sym_argument_list, - ACTIONS(5215), 2, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(4891), 19, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [62412] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5234), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -287013,13 +358663,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(4889), 24, + anon_sym_DOT, + ACTIONS(5232), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -287037,130 +358691,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, anon_sym_GT2, - [67043] = 26, + [62472] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4385), 1, - anon_sym_LPAREN2, - ACTIONS(5211), 1, - anon_sym_LBRACK, - ACTIONS(5213), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5217), 1, + ACTIONS(5321), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_const, anon_sym_DOT, - ACTIONS(5219), 1, - anon_sym_DASH_GT, - ACTIONS(5221), 1, + ACTIONS(5319), 40, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, - ACTIONS(5223), 1, anon_sym_AMP_AMP, - ACTIONS(5225), 1, - anon_sym_PIPE, - ACTIONS(5229), 1, - anon_sym_AMP, - ACTIONS(5231), 1, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, anon_sym_or, - ACTIONS(5233), 1, anon_sym_and, - ACTIONS(5235), 1, anon_sym_bitor, - ACTIONS(5237), 1, + anon_sym_xor, anon_sym_bitand, - ACTIONS(5239), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5241), 1, - anon_sym_QMARK, - STATE(3010), 1, - sym_argument_list, - ACTIONS(4895), 2, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - ACTIONS(5201), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5209), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5215), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5227), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5203), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5205), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5207), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(4893), 14, - anon_sym_COMMA, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - [67147] = 4, + anon_sym_requires, + [62532] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3875), 2, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - ACTIONS(3877), 16, + ACTIONS(5309), 12, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + anon_sym_const, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3882), 32, + ACTIONS(5307), 40, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, @@ -287170,18 +358804,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [67207] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5243), 1, + anon_sym_DASH_GT, sym_auto, - ACTIONS(5245), 1, anon_sym_decltype, - STATE(2969), 1, - sym_decltype_auto, - ACTIONS(4336), 12, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [62592] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5254), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -287194,7 +358827,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_const, anon_sym_DOT, - ACTIONS(4334), 35, + ACTIONS(5252), 40, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -287208,11 +358841,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_QMARK, @@ -287226,130 +358862,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, anon_sym_GT2, anon_sym_requires, - [67271] = 5, + [62652] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5247), 1, - anon_sym_LT, - STATE(2938), 1, - sym_template_argument_list, - ACTIONS(4844), 19, + ACTIONS(5155), 12, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, + anon_sym_LT, anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, + anon_sym_const, anon_sym_DOT, - ACTIONS(4842), 29, + ACTIONS(5153), 40, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - [67333] = 25, + anon_sym_requires, + [62712] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4385), 1, + ACTIONS(5088), 1, anon_sym_LPAREN2, - ACTIONS(5211), 1, + ACTIONS(5784), 1, anon_sym_LBRACK, - ACTIONS(5213), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5217), 1, + STATE(3343), 1, + sym_argument_list, + ACTIONS(5786), 2, anon_sym_DOT, - ACTIONS(5219), 1, anon_sym_DASH_GT, - ACTIONS(5221), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5223), 1, - anon_sym_AMP_AMP, - ACTIONS(5225), 1, - anon_sym_PIPE, - ACTIONS(5229), 1, - anon_sym_AMP, - ACTIONS(5231), 1, - anon_sym_or, - ACTIONS(5233), 1, - anon_sym_and, - ACTIONS(5235), 1, - anon_sym_bitor, - ACTIONS(5237), 1, - anon_sym_bitand, - ACTIONS(5239), 1, - anon_sym_DOT_DOT_DOT, - STATE(3010), 1, - sym_argument_list, - ACTIONS(4800), 2, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - ACTIONS(5201), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5209), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5215), 2, + ACTIONS(5796), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5227), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5203), 3, + ACTIONS(5790), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(5205), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5207), 4, + ACTIONS(5489), 14, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(4774), 15, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(5487), 28, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -287357,37 +358975,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_GT2, - [67435] = 3, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [62784] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4022), 16, + ACTIONS(5313), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + anon_sym_GT_GT, + anon_sym_const, anon_sym_DOT, - sym_literal_suffix, - ACTIONS(4020), 34, + ACTIONS(5311), 40, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -287396,65 +359015,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [67493] = 4, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [62844] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5250), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(4723), 21, + ACTIONS(5250), 12, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, + anon_sym_const, anon_sym_DOT, - ACTIONS(4721), 28, + ACTIONS(5248), 40, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [62904] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4476), 1, + anon_sym_COLON_COLON, + ACTIONS(4481), 1, + anon_sym_LBRACE, + ACTIONS(4754), 1, + anon_sym_LT, + STATE(4120), 1, + sym_template_argument_list, + ACTIONS(4757), 2, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + ACTIONS(4759), 12, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -287467,20 +359129,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [67553] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4040), 1, - sym_literal_suffix, - ACTIONS(3795), 23, + ACTIONS(4457), 17, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -287490,21 +359139,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, anon_sym_GT2, - ACTIONS(3803), 26, + ACTIONS(4465), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -287516,38 +359159,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - [67613] = 9, + [62976] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4385), 1, - anon_sym_LPAREN2, - ACTIONS(5211), 1, - anon_sym_LBRACK, - ACTIONS(5217), 1, - anon_sym_DOT, - ACTIONS(5219), 1, - anon_sym_DASH_GT, - STATE(3010), 1, - sym_argument_list, - ACTIONS(5215), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5013), 19, + ACTIONS(5186), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -287567,13 +359188,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(5011), 24, + anon_sym_DOT, + ACTIONS(5184), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -287591,24 +359216,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, anon_sym_GT2, - [67683] = 9, + [63036] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4385), 1, - anon_sym_LPAREN2, - ACTIONS(5211), 1, - anon_sym_LBRACK, - ACTIONS(5217), 1, - anon_sym_DOT, - ACTIONS(5219), 1, - anon_sym_DASH_GT, - STATE(3010), 1, - sym_argument_list, - ACTIONS(5215), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4989), 19, + ACTIONS(5457), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -287618,23 +359235,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(4987), 24, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5455), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -287642,6 +359264,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -287652,11 +359275,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_GT2, - [67753] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [63096] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4766), 20, + ACTIONS(5250), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -287677,7 +359303,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4764), 30, + ACTIONS(5248), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -287707,21 +359333,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, anon_sym_GT2, - [67811] = 8, + [63156] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4385), 1, - anon_sym_LPAREN2, - ACTIONS(5211), 1, - anon_sym_LBRACK, - ACTIONS(5217), 1, - anon_sym_DOT, - ACTIONS(5219), 1, - anon_sym_DASH_GT, - STATE(3010), 1, - sym_argument_list, - ACTIONS(4961), 19, + ACTIONS(5254), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -287741,13 +359359,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(4959), 26, + anon_sym_DOT, + ACTIONS(5252), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -287767,35 +359389,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, anon_sym_GT2, - [67879] = 3, + [63216] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4702), 23, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(5088), 1, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(5784), 1, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, + STATE(3343), 1, + sym_argument_list, + ACTIONS(5786), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5796), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - ACTIONS(4704), 27, + ACTIONS(5489), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -287805,63 +359418,142 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(5487), 28, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_or, - anon_sym_and, + anon_sym_LT_EQ_GT, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DOT, - sym_literal_suffix, - [67937] = 4, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [63286] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4229), 1, - anon_sym_COLON_COLON, - ACTIONS(4324), 12, + ACTIONS(5406), 1, + anon_sym_LBRACE, + STATE(3232), 1, + sym_enumerator_list, + ACTIONS(5159), 16, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_const, + anon_sym_EQ, anon_sym_DOT, - ACTIONS(4322), 37, + anon_sym_DASH_GT, + ACTIONS(5157), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACE, + anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [63350] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5186), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(5184), 40, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -287879,69 +359571,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [67997] = 3, + [63410] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4026), 16, + ACTIONS(2043), 1, + anon_sym_LBRACE, + ACTIONS(5212), 1, + anon_sym_LPAREN2, + STATE(3441), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5329), 20, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_literal_suffix, - ACTIONS(4024), 34, + ACTIONS(5327), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [68055] = 5, + anon_sym_GT2, + [63476] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5252), 1, - anon_sym_LBRACE, - STATE(2983), 1, - sym_enumerator_list, - ACTIONS(4349), 12, + ACTIONS(5317), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -287954,7 +359647,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_const, anon_sym_DOT, - ACTIONS(4347), 36, + ACTIONS(5315), 40, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -287966,12 +359659,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_LT, + anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_QMARK, @@ -287991,68 +359688,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [68117] = 24, + [63536] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4385), 1, + ACTIONS(5155), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(5153), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(5211), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(5213), 1, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - ACTIONS(5217), 1, - anon_sym_DOT, - ACTIONS(5219), 1, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - ACTIONS(5221), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5223), 1, - anon_sym_AMP_AMP, - ACTIONS(5225), 1, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [63596] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5088), 1, + anon_sym_LPAREN2, + ACTIONS(5784), 1, + anon_sym_LBRACK, + ACTIONS(5794), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5802), 1, anon_sym_PIPE, - ACTIONS(5229), 1, + ACTIONS(5806), 1, anon_sym_AMP, - ACTIONS(5231), 1, - anon_sym_or, - ACTIONS(5233), 1, - anon_sym_and, - ACTIONS(5235), 1, + ACTIONS(5812), 1, + anon_sym_GT_EQ, + ACTIONS(5818), 1, anon_sym_bitor, - ACTIONS(5237), 1, + ACTIONS(5820), 1, anon_sym_bitand, - STATE(3010), 1, + STATE(3343), 1, sym_argument_list, - ACTIONS(5005), 2, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - ACTIONS(5201), 2, + ACTIONS(5786), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5788), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5209), 2, + ACTIONS(5792), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5215), 2, + ACTIONS(5796), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5227), 2, + ACTIONS(5804), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(5203), 3, + ACTIONS(5489), 3, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + ACTIONS(5790), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(5205), 3, + ACTIONS(5808), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5207), 4, + ACTIONS(5810), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(5003), 16, + ACTIONS(5487), 21, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -288060,37 +359810,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_GT2, - [68217] = 11, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [63690] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4385), 1, - anon_sym_LPAREN2, - ACTIONS(5211), 1, - anon_sym_LBRACK, - ACTIONS(5217), 1, - anon_sym_DOT, - ACTIONS(5219), 1, - anon_sym_DASH_GT, - STATE(3010), 1, - sym_argument_list, - ACTIONS(5201), 2, + ACTIONS(5230), 20, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5215), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5203), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4883), 14, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -288105,13 +359842,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(4881), 24, + anon_sym_DOT, + ACTIONS(5228), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -288129,53 +359870,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, anon_sym_GT2, - [68291] = 12, + [63750] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(4385), 1, + ACTIONS(5088), 1, anon_sym_LPAREN2, - ACTIONS(5211), 1, + ACTIONS(5784), 1, anon_sym_LBRACK, - ACTIONS(5217), 1, + ACTIONS(5794), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5806), 1, + anon_sym_AMP, + ACTIONS(5812), 1, + anon_sym_GT_EQ, + ACTIONS(5820), 1, + anon_sym_bitand, + STATE(3343), 1, + sym_argument_list, + ACTIONS(5786), 2, anon_sym_DOT, - ACTIONS(5219), 1, anon_sym_DASH_GT, - STATE(3010), 1, - sym_argument_list, - ACTIONS(5201), 2, + ACTIONS(5788), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5209), 2, + ACTIONS(5792), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5215), 2, + ACTIONS(5796), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5203), 3, + ACTIONS(5804), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5790), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4883), 12, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(5808), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5810), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + ACTIONS(5489), 4, + anon_sym_PIPE, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, - anon_sym_xor, - ACTIONS(4881), 24, + ACTIONS(5487), 22, 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, @@ -288183,79 +359938,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_LT_EQ_GT, anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_GT2, - [68367] = 24, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [63840] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4385), 1, - anon_sym_LPAREN2, - ACTIONS(5211), 1, - anon_sym_LBRACK, - ACTIONS(5213), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5217), 1, - anon_sym_DOT, - ACTIONS(5219), 1, - anon_sym_DASH_GT, - ACTIONS(5221), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5223), 1, - anon_sym_AMP_AMP, - ACTIONS(5225), 1, - anon_sym_PIPE, - ACTIONS(5229), 1, - anon_sym_AMP, - ACTIONS(5231), 1, - anon_sym_or, - ACTIONS(5233), 1, - anon_sym_and, - ACTIONS(5235), 1, - anon_sym_bitor, - ACTIONS(5237), 1, - anon_sym_bitand, - STATE(3010), 1, - sym_argument_list, - ACTIONS(4861), 2, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - ACTIONS(5201), 2, + ACTIONS(5258), 20, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5209), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5215), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5227), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5203), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(5205), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5207), 4, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(4859), 16, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(5256), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -288269,56 +359995,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, anon_sym_GT2, - [68467] = 14, + [63900] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4385), 1, - anon_sym_LPAREN2, - ACTIONS(5211), 1, - anon_sym_LBRACK, - ACTIONS(5213), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5217), 1, - anon_sym_DOT, - ACTIONS(5219), 1, - anon_sym_DASH_GT, - STATE(3010), 1, - sym_argument_list, - ACTIONS(5201), 2, + ACTIONS(5262), 20, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5209), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5215), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5203), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(5207), 4, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(4883), 8, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(4881), 23, + anon_sym_DOT, + ACTIONS(5260), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -288332,14 +360052,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, + anon_sym_LT_EQ_GT, anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, anon_sym_GT2, - [68547] = 3, + [63960] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4247), 12, + ACTIONS(5234), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -288352,7 +360078,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_const, anon_sym_DOT, - ACTIONS(4245), 38, + ACTIONS(5232), 40, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -288366,14 +360092,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -288391,14 +360119,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [68605] = 5, + [64020] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4666), 1, - anon_sym_LBRACK, - STATE(2903), 1, - sym_new_declarator, - ACTIONS(4662), 16, + ACTIONS(5406), 1, + anon_sym_LBRACE, + STATE(3277), 1, + sym_enumerator_list, + ACTIONS(5133), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -288415,7 +360143,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4660), 32, + ACTIONS(5131), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -288425,7 +360153,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -288446,16 +360174,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [68667] = 5, + [64084] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5252), 1, - anon_sym_LBRACE, - STATE(2878), 1, - sym_enumerator_list, - ACTIONS(4332), 12, + ACTIONS(5238), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -288468,7 +360194,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_const, anon_sym_DOT, - ACTIONS(4330), 36, + ACTIONS(5236), 40, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -288480,12 +360206,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_LT, + anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_QMARK, @@ -288505,29 +360235,129 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [68729] = 10, + [64144] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4385), 1, + ACTIONS(5242), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(5240), 40, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(5211), 1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(5217), 1, - anon_sym_DOT, - ACTIONS(5219), 1, - anon_sym_DASH_GT, - STATE(3010), 1, - sym_argument_list, - ACTIONS(5215), 2, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5203), 3, - anon_sym_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [64204] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5246), 12, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(5244), 40, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(4883), 16, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [64264] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5281), 20, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -288542,13 +360372,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(4881), 24, + anon_sym_DOT, + ACTIONS(5279), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -288566,50 +360400,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, anon_sym_GT2, - [68801] = 9, + [64324] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(4385), 1, + ACTIONS(5088), 1, anon_sym_LPAREN2, - ACTIONS(5211), 1, + ACTIONS(5784), 1, anon_sym_LBRACK, - ACTIONS(5217), 1, + ACTIONS(5794), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5806), 1, + anon_sym_AMP, + ACTIONS(5812), 1, + anon_sym_GT_EQ, + ACTIONS(5820), 1, + anon_sym_bitand, + STATE(3343), 1, + sym_argument_list, + ACTIONS(5786), 2, anon_sym_DOT, - ACTIONS(5219), 1, anon_sym_DASH_GT, - STATE(3010), 1, - sym_argument_list, - ACTIONS(5215), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4883), 19, + ACTIONS(5788), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(5792), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5796), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5790), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(5808), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5810), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(5489), 6, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(4881), 24, + ACTIONS(5487), 22, 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, @@ -288617,41 +360467,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_LT_EQ_GT, anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_GT2, - [68871] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [64412] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4030), 16, + ACTIONS(5266), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + anon_sym_GT_GT, + anon_sym_const, anon_sym_DOT, - sym_literal_suffix, - ACTIONS(4028), 34, + ACTIONS(5264), 40, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -288660,77 +360504,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [68929] = 13, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [64472] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(4385), 1, + ACTIONS(5088), 1, anon_sym_LPAREN2, - ACTIONS(5211), 1, + ACTIONS(5784), 1, anon_sym_LBRACK, - ACTIONS(5213), 1, + ACTIONS(5794), 1, anon_sym_LT_EQ_GT, - ACTIONS(5217), 1, + ACTIONS(5812), 1, + anon_sym_GT_EQ, + STATE(3343), 1, + sym_argument_list, + ACTIONS(5786), 2, anon_sym_DOT, - ACTIONS(5219), 1, anon_sym_DASH_GT, - STATE(3010), 1, - sym_argument_list, - ACTIONS(5201), 2, + ACTIONS(5788), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5209), 2, + ACTIONS(5792), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5215), 2, + ACTIONS(5796), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5203), 3, + ACTIONS(5790), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4883), 12, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(5808), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5810), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + ACTIONS(5489), 7, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(4881), 23, + ACTIONS(5487), 23, 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, @@ -288738,6 +360592,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -288746,44 +360601,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor_eq, anon_sym_bitor, anon_sym_bitand, - anon_sym_not_eq, - anon_sym_GT2, - [69007] = 8, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [64556] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(4385), 1, + ACTIONS(5088), 1, anon_sym_LPAREN2, - ACTIONS(5211), 1, + ACTIONS(5784), 1, anon_sym_LBRACK, - ACTIONS(5217), 1, + ACTIONS(5794), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5812), 1, + anon_sym_GT_EQ, + STATE(3343), 1, + sym_argument_list, + ACTIONS(5786), 2, anon_sym_DOT, - ACTIONS(5219), 1, anon_sym_DASH_GT, - STATE(3010), 1, - sym_argument_list, - ACTIONS(4985), 19, + ACTIONS(5788), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(5792), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5796), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5790), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(5810), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(5489), 7, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(4983), 26, + ACTIONS(5487), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -288795,48 +360659,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_LT_EQ_GT, anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_GT2, - [69075] = 13, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [64638] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4385), 1, - anon_sym_LPAREN2, - ACTIONS(5211), 1, - anon_sym_LBRACK, - ACTIONS(5213), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5217), 1, - anon_sym_DOT, - ACTIONS(5219), 1, - anon_sym_DASH_GT, - STATE(3010), 1, - sym_argument_list, - ACTIONS(5201), 2, + ACTIONS(5289), 20, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5209), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5215), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5203), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4993), 12, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -288844,18 +360687,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(4991), 23, + anon_sym_DOT, + ACTIONS(5287), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -288869,70 +360718,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, + anon_sym_LT_EQ_GT, anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, anon_sym_GT2, - [69153] = 22, + [64698] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4385), 1, - anon_sym_LPAREN2, - ACTIONS(5211), 1, - anon_sym_LBRACK, - ACTIONS(5213), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5217), 1, - anon_sym_DOT, - ACTIONS(5219), 1, - anon_sym_DASH_GT, - ACTIONS(5223), 1, - anon_sym_AMP_AMP, - ACTIONS(5225), 1, - anon_sym_PIPE, - ACTIONS(5229), 1, - anon_sym_AMP, - ACTIONS(5233), 1, - anon_sym_and, - ACTIONS(5235), 1, - anon_sym_bitor, - ACTIONS(5237), 1, - anon_sym_bitand, - STATE(3010), 1, - sym_argument_list, - ACTIONS(5201), 2, + ACTIONS(5293), 20, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5209), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5215), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5227), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(4883), 3, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - ACTIONS(5203), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(5205), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5207), 4, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(4881), 17, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(5291), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -288946,65 +360775,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_GT2, - [69249] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4385), 1, - anon_sym_LPAREN2, - ACTIONS(5211), 1, - anon_sym_LBRACK, - ACTIONS(5213), 1, anon_sym_LT_EQ_GT, - ACTIONS(5217), 1, - anon_sym_DOT, - ACTIONS(5219), 1, - anon_sym_DASH_GT, - ACTIONS(5225), 1, - anon_sym_PIPE, - ACTIONS(5229), 1, - anon_sym_AMP, - ACTIONS(5235), 1, anon_sym_bitor, - ACTIONS(5237), 1, anon_sym_bitand, - STATE(3010), 1, - sym_argument_list, - ACTIONS(5201), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5209), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5215), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5227), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5203), 3, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [64758] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5826), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(5432), 19, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(5205), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(4883), 4, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - ACTIONS(5207), 4, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(4881), 18, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(5430), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -289012,68 +360829,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_GT2, - [69341] = 18, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [64820] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(4385), 1, + ACTIONS(5088), 1, anon_sym_LPAREN2, - ACTIONS(5211), 1, + ACTIONS(5784), 1, anon_sym_LBRACK, - ACTIONS(5213), 1, + ACTIONS(5794), 1, anon_sym_LT_EQ_GT, - ACTIONS(5217), 1, + STATE(3343), 1, + sym_argument_list, + ACTIONS(5786), 2, anon_sym_DOT, - ACTIONS(5219), 1, anon_sym_DASH_GT, - ACTIONS(5229), 1, - anon_sym_AMP, - ACTIONS(5237), 1, - anon_sym_bitand, - STATE(3010), 1, - sym_argument_list, - ACTIONS(5201), 2, + ACTIONS(5788), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5209), 2, + ACTIONS(5792), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5215), 2, + ACTIONS(5796), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5227), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5203), 3, + ACTIONS(5790), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(5205), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5207), 4, + ACTIONS(5489), 10, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(4883), 5, - anon_sym_PIPE, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, - ACTIONS(4881), 19, + anon_sym_xor, + ACTIONS(5487), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -289081,6 +360897,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -289088,61 +360905,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or_eq, anon_sym_xor_eq, anon_sym_bitor, - anon_sym_GT2, - [69429] = 17, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [64898] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4385), 1, - anon_sym_LPAREN2, - ACTIONS(5211), 1, - anon_sym_LBRACK, - ACTIONS(5213), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5217), 1, - anon_sym_DOT, - ACTIONS(5219), 1, - anon_sym_DASH_GT, - ACTIONS(5229), 1, - anon_sym_AMP, - ACTIONS(5237), 1, - anon_sym_bitand, - STATE(3010), 1, - sym_argument_list, - ACTIONS(5201), 2, + ACTIONS(5297), 20, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5209), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5215), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5203), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(5205), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5207), 4, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(4883), 7, - anon_sym_PIPE, - anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(4881), 19, + anon_sym_DOT, + ACTIONS(5295), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -289156,12 +360956,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, + anon_sym_LT_EQ_GT, anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, anon_sym_GT2, - [69515] = 3, + [64958] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4463), 12, + ACTIONS(5155), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -289174,7 +360982,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_const, anon_sym_DOT, - ACTIONS(4461), 37, + ACTIONS(5153), 40, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -289188,11 +360996,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_QMARK, @@ -289212,39 +361023,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [69572] = 3, + [65018] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(4032), 20, + ACTIONS(5088), 1, + anon_sym_LPAREN2, + ACTIONS(5784), 1, + anon_sym_LBRACK, + STATE(3343), 1, + sym_argument_list, + ACTIONS(5786), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5788), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(5796), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5790), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(5489), 12, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DOT, - ACTIONS(4034), 29, + ACTIONS(5487), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACK, + anon_sym_GT_EQ, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -289252,6 +361074,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -289262,73 +361085,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [69629] = 26, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [65092] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(5088), 1, anon_sym_LPAREN2, - ACTIONS(4772), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4798), 1, + ACTIONS(5784), 1, anon_sym_LBRACK, - ACTIONS(4800), 1, - anon_sym_EQ, - ACTIONS(5258), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5260), 1, - anon_sym_AMP_AMP, - ACTIONS(5262), 1, - anon_sym_PIPE, - ACTIONS(5266), 1, - anon_sym_AMP, - ACTIONS(5272), 1, - anon_sym_GT_EQ, - ACTIONS(5276), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5278), 1, - anon_sym_or, - ACTIONS(5280), 1, - anon_sym_and, - ACTIONS(5282), 1, - anon_sym_bitor, - ACTIONS(5284), 1, - anon_sym_bitand, - ACTIONS(5286), 1, + STATE(3343), 1, + sym_argument_list, + ACTIONS(5786), 2, anon_sym_DOT, - ACTIONS(5288), 1, anon_sym_DASH_GT, - STATE(2475), 1, - sym_argument_list, - ACTIONS(4812), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5254), 2, + ACTIONS(5788), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5264), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5274), 2, + ACTIONS(5792), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5256), 3, + ACTIONS(5796), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5790), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(5268), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5270), 3, + ACTIONS(5489), 10, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(4774), 15, - anon_sym_COLON, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(5487), 28, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -289343,10 +361146,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [69732] = 3, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [65168] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4499), 12, + ACTIONS(5285), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -289359,7 +361168,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_const, anon_sym_DOT, - ACTIONS(4497), 37, + ACTIONS(5283), 40, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -289373,11 +361182,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_QMARK, @@ -289397,49 +361209,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [69789] = 3, + [65228] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 12, + ACTIONS(5321), 20, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_const, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4493), 37, + ACTIONS(5319), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, @@ -289447,53 +361265,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, anon_sym_GT2, - anon_sym_requires, - [69846] = 3, + [65288] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4622), 12, + ACTIONS(5226), 20, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_const, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4620), 37, + ACTIONS(5224), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, @@ -289501,53 +361322,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, anon_sym_GT2, - anon_sym_requires, - [69903] = 3, + [65348] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4618), 12, + ACTIONS(5333), 20, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_const, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4616), 37, + ACTIONS(5331), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, @@ -289555,53 +361379,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, anon_sym_GT2, - anon_sym_requires, - [69960] = 3, + [65408] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4555), 12, + ACTIONS(5337), 20, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_const, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4553), 37, + ACTIONS(5335), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, @@ -289609,53 +361436,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, anon_sym_GT2, - anon_sym_requires, - [70017] = 3, + [65468] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4551), 12, + ACTIONS(5341), 20, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_const, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4549), 37, + ACTIONS(5339), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, @@ -289663,53 +361493,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, anon_sym_GT2, - anon_sym_requires, - [70074] = 3, + [65528] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4547), 12, + ACTIONS(4650), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5375), 1, + anon_sym_LBRACK, + ACTIONS(5369), 2, + anon_sym_RPAREN, + anon_sym_LPAREN2, + ACTIONS(4652), 3, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + ACTIONS(4465), 19, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_const, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4545), 37, + anon_sym_DASH_GT, + ACTIONS(4457), 26, 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_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [65596] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5345), 20, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(5343), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, @@ -289717,72 +361611,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, anon_sym_GT2, - anon_sym_requires, - [70131] = 25, + [65656] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(5088), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(5784), 1, anon_sym_LBRACK, - ACTIONS(5005), 1, - anon_sym_EQ, - ACTIONS(5258), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5260), 1, - anon_sym_AMP_AMP, - ACTIONS(5262), 1, - anon_sym_PIPE, - ACTIONS(5266), 1, - anon_sym_AMP, - ACTIONS(5272), 1, - anon_sym_GT_EQ, - ACTIONS(5276), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5278), 1, - anon_sym_or, - ACTIONS(5280), 1, - anon_sym_and, - ACTIONS(5282), 1, - anon_sym_bitor, - ACTIONS(5284), 1, - anon_sym_bitand, - ACTIONS(5286), 1, + STATE(3343), 1, + sym_argument_list, + ACTIONS(5786), 2, anon_sym_DOT, - ACTIONS(5288), 1, anon_sym_DASH_GT, - STATE(2475), 1, - sym_argument_list, - ACTIONS(4812), 2, + ACTIONS(5796), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5254), 2, + ACTIONS(5697), 17, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5264), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5274), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5256), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(5268), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5270), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(5003), 16, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(5695), 28, anon_sym_DOT_DOT_DOT, - anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -289797,49 +361668,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [70232] = 3, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [65726] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4571), 12, + ACTIONS(5178), 20, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_const, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4569), 37, + ACTIONS(5176), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, @@ -289847,57 +361730,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, anon_sym_GT2, - anon_sym_requires, - [70289] = 13, + [65786] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(5088), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(5784), 1, anon_sym_LBRACK, - ACTIONS(5276), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5286), 1, + STATE(3343), 1, + sym_argument_list, + ACTIONS(5786), 2, anon_sym_DOT, - ACTIONS(5288), 1, anon_sym_DASH_GT, - STATE(2475), 1, - sym_argument_list, - ACTIONS(4812), 2, + ACTIONS(5796), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5254), 2, + ACTIONS(5559), 17, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5274), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5256), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4993), 10, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(4991), 24, + ACTIONS(5557), 28, anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -289912,26 +361787,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, + anon_sym_LT_EQ_GT, anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - [70366] = 9, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [65856] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, - anon_sym_LPAREN2, - ACTIONS(4798), 1, - anon_sym_LBRACK, - ACTIONS(5286), 1, - anon_sym_DOT, - ACTIONS(5288), 1, - anon_sym_DASH_GT, - STATE(2475), 1, - sym_argument_list, - ACTIONS(4812), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4989), 17, + ACTIONS(5182), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -289941,22 +361806,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(4987), 25, + anon_sym_DOT, + ACTIONS(5180), 32, anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -289964,7 +361834,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -289975,10 +361844,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - [70435] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [65916] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4706), 20, + ACTIONS(5190), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -289999,7 +361874,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4708), 29, + ACTIONS(5188), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -290007,6 +361882,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -290028,11 +361904,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, anon_sym_GT2, - [70492] = 3, + [65976] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5088), 1, + anon_sym_LPAREN2, + ACTIONS(5643), 1, + anon_sym_EQ, + ACTIONS(5784), 1, + anon_sym_LBRACK, + ACTIONS(5794), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5800), 1, + anon_sym_AMP_AMP, + ACTIONS(5802), 1, + anon_sym_PIPE, + ACTIONS(5806), 1, + anon_sym_AMP, + ACTIONS(5812), 1, + anon_sym_GT_EQ, + ACTIONS(5814), 1, + anon_sym_or, + ACTIONS(5816), 1, + anon_sym_and, + ACTIONS(5818), 1, + anon_sym_bitor, + ACTIONS(5820), 1, + anon_sym_bitand, + STATE(3343), 1, + sym_argument_list, + ACTIONS(5786), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5788), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5792), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5796), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5804), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5790), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5808), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5810), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5641), 19, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [66078] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4539), 12, + ACTIONS(5166), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -290045,7 +362001,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_const, anon_sym_DOT, - ACTIONS(4537), 37, + ACTIONS(5164), 40, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -290059,11 +362015,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_QMARK, @@ -290083,20 +362042,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [70549] = 8, + [66138] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, - anon_sym_LPAREN2, - ACTIONS(4798), 1, - anon_sym_LBRACK, - ACTIONS(5286), 1, - anon_sym_DOT, - ACTIONS(5288), 1, - anon_sym_DASH_GT, - STATE(2475), 1, - sym_argument_list, - ACTIONS(4985), 17, + ACTIONS(5194), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -290106,22 +362055,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(4983), 27, + anon_sym_DOT, + ACTIONS(5192), 32, anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -290129,7 +362083,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -290142,10 +362095,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - [70616] = 3, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [66198] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1729), 20, + ACTIONS(5198), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -290166,7 +362123,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(1727), 29, + ACTIONS(5196), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -290174,6 +362131,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -290195,11 +362153,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, anon_sym_GT2, - [70673] = 3, + [66258] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4046), 20, + ACTIONS(5202), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -290220,7 +362180,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4048), 29, + ACTIONS(5200), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -290228,6 +362188,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -290249,11 +362210,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, anon_sym_GT2, - [70730] = 3, + [66318] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5088), 1, + anon_sym_LPAREN2, + ACTIONS(5784), 1, + anon_sym_LBRACK, + ACTIONS(5794), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5800), 1, + anon_sym_AMP_AMP, + ACTIONS(5802), 1, + anon_sym_PIPE, + ACTIONS(5806), 1, + anon_sym_AMP, + ACTIONS(5812), 1, + anon_sym_GT_EQ, + ACTIONS(5816), 1, + anon_sym_and, + ACTIONS(5818), 1, + anon_sym_bitor, + ACTIONS(5820), 1, + anon_sym_bitand, + STATE(3343), 1, + sym_argument_list, + ACTIONS(5489), 2, + anon_sym_EQ, + anon_sym_or, + ACTIONS(5786), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5788), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5792), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5796), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5804), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5790), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5808), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5810), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5487), 20, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [66416] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 20, + ACTIONS(2043), 1, + anon_sym_LBRACE, + ACTIONS(5212), 1, + anon_sym_LPAREN2, + STATE(3425), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5349), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -290274,10 +362320,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(1735), 29, + ACTIONS(5347), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -290304,10 +362349,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_GT, anon_sym_GT2, - [70787] = 3, + [66482] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4046), 20, + ACTIONS(5503), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -290317,26 +362362,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4048), 29, + anon_sym_DASH_GT, + ACTIONS(5501), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACK, + anon_sym_GT_EQ, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -290344,6 +362391,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -290356,69 +362404,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [70844] = 23, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [66542] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4257), 1, + ACTIONS(5088), 1, anon_sym_LPAREN2, - ACTIONS(5005), 1, + ACTIONS(5732), 1, anon_sym_EQ, - ACTIONS(5017), 1, + ACTIONS(5784), 1, anon_sym_LBRACK, - ACTIONS(5137), 1, + ACTIONS(5794), 1, anon_sym_LT_EQ_GT, - ACTIONS(5298), 1, + ACTIONS(5798), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5800), 1, + anon_sym_AMP_AMP, + ACTIONS(5802), 1, anon_sym_PIPE, - ACTIONS(5300), 1, - anon_sym_CARET, - ACTIONS(5302), 1, + ACTIONS(5806), 1, anon_sym_AMP, - ACTIONS(5308), 1, + ACTIONS(5812), 1, anon_sym_GT_EQ, - ACTIONS(5312), 1, + ACTIONS(5814), 1, + anon_sym_or, + ACTIONS(5816), 1, + anon_sym_and, + ACTIONS(5818), 1, anon_sym_bitor, - ACTIONS(5314), 1, - anon_sym_xor, - ACTIONS(5316), 1, + ACTIONS(5820), 1, anon_sym_bitand, - STATE(2721), 1, + ACTIONS(5824), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5828), 1, + anon_sym_QMARK, + STATE(3343), 1, sym_argument_list, - ACTIONS(5019), 2, + ACTIONS(5786), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5151), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5290), 2, + ACTIONS(5788), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5294), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5296), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5310), 2, + ACTIONS(5792), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5292), 3, + ACTIONS(5796), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5804), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5790), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(5304), 3, + ACTIONS(5808), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5306), 3, + ACTIONS(5810), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(5003), 16, + ACTIONS(5730), 17, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [66648] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5395), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -290430,12 +362511,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [70941] = 3, + ACTIONS(5397), 26, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + anon_sym_DASH_GT, + sym_literal_suffix, + [66708] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5325), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(5323), 40, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [66768] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4046), 20, + ACTIONS(4505), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -290445,26 +362613,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4048), 29, + anon_sym_DASH_GT, + ACTIONS(4510), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACK, + anon_sym_GT_EQ, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -290472,6 +362642,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -290484,31 +362655,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [70998] = 10, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [66828] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, - anon_sym_LPAREN2, - ACTIONS(4798), 1, - anon_sym_LBRACK, - ACTIONS(5286), 1, - anon_sym_DOT, - ACTIONS(5288), 1, - anon_sym_DASH_GT, - STATE(2475), 1, - sym_argument_list, - ACTIONS(4812), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5256), 3, + ACTIONS(4505), 20, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4883), 14, - anon_sym_DASH, - anon_sym_PLUS, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -290517,18 +362674,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(4881), 25, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4510), 32, anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -290547,10 +362710,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - [71069] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [66888] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3838), 20, + ACTIONS(4505), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -290560,26 +362727,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(3843), 29, + anon_sym_DASH_GT, + ACTIONS(4510), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACK, + anon_sym_GT_EQ, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -290587,6 +362756,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -290599,12 +362769,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [71126] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [66948] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3838), 20, + ACTIONS(5391), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -290614,26 +362784,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(3843), 29, + anon_sym_DASH_GT, + ACTIONS(5389), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACK, + anon_sym_GT_EQ, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -290641,6 +362813,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -290653,12 +362826,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [67008] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5088), 1, + anon_sym_LPAREN2, + ACTIONS(5764), 1, + anon_sym_EQ, + ACTIONS(5784), 1, + anon_sym_LBRACK, + ACTIONS(5794), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5800), 1, + anon_sym_AMP_AMP, + ACTIONS(5802), 1, + anon_sym_PIPE, + ACTIONS(5806), 1, + anon_sym_AMP, + ACTIONS(5812), 1, + anon_sym_GT_EQ, + ACTIONS(5814), 1, + anon_sym_or, + ACTIONS(5816), 1, + anon_sym_and, + ACTIONS(5818), 1, + anon_sym_bitor, + ACTIONS(5820), 1, + anon_sym_bitand, + STATE(3343), 1, + sym_argument_list, + ACTIONS(5786), 2, + anon_sym_DOT, anon_sym_DASH_GT, - anon_sym_GT2, - [71183] = 3, + ACTIONS(5788), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5792), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5796), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5804), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5790), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5808), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5810), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5762), 19, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [67110] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4068), 20, + ACTIONS(4505), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -290668,26 +362919,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4070), 29, + anon_sym_DASH_GT, + ACTIONS(4510), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACK, + anon_sym_GT_EQ, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -290695,6 +362948,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -290707,12 +362961,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [71240] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [67170] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3838), 20, + ACTIONS(5830), 1, + anon_sym_LT, + STATE(3319), 1, + sym_template_argument_list, + ACTIONS(5533), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -290722,25 +362980,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(3843), 29, + anon_sym_DASH_GT, + ACTIONS(5531), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -290749,6 +363007,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -290761,12 +363020,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [67234] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5088), 1, + anon_sym_LPAREN2, + ACTIONS(5633), 1, + anon_sym_EQ, + ACTIONS(5784), 1, + anon_sym_LBRACK, + ACTIONS(5794), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5800), 1, + anon_sym_AMP_AMP, + ACTIONS(5802), 1, + anon_sym_PIPE, + ACTIONS(5806), 1, + anon_sym_AMP, + ACTIONS(5812), 1, + anon_sym_GT_EQ, + ACTIONS(5814), 1, + anon_sym_or, + ACTIONS(5816), 1, + anon_sym_and, + ACTIONS(5818), 1, + anon_sym_bitor, + ACTIONS(5820), 1, + anon_sym_bitand, + ACTIONS(5824), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5828), 1, + anon_sym_QMARK, + STATE(3343), 1, + sym_argument_list, + ACTIONS(5786), 2, + anon_sym_DOT, anon_sym_DASH_GT, - anon_sym_GT2, - [71297] = 3, + ACTIONS(5788), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5792), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5796), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5804), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5790), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5808), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5810), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5631), 17, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [67340] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3838), 20, + ACTIONS(5325), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -290787,7 +363126,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(3843), 29, + ACTIONS(5323), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -290795,6 +363134,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -290816,11 +363156,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, anon_sym_GT2, - [71354] = 3, + [67400] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3838), 20, + ACTIONS(5166), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -290841,7 +363183,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(3843), 29, + ACTIONS(5164), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -290849,6 +363191,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -290870,11 +363213,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, anon_sym_GT2, - [71411] = 3, + [67460] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4905), 20, + ACTIONS(4476), 1, + anon_sym_COLON_COLON, + ACTIONS(4481), 1, + anon_sym_LBRACE, + ACTIONS(5833), 1, + anon_sym_LT, + STATE(3307), 1, + sym_template_argument_list, + ACTIONS(4465), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -290886,7 +363239,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, @@ -290895,7 +363247,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4903), 29, + ACTIONS(4457), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -290925,10 +363277,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_GT, anon_sym_GT2, - [71468] = 3, + [67528] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4766), 16, + ACTIONS(5317), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -290938,23 +363290,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4764), 33, + ACTIONS(5315), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -290964,25 +363318,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [71525] = 3, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [67588] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4072), 20, + ACTIONS(5313), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -291003,7 +363358,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4074), 29, + ACTIONS(5311), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -291011,6 +363366,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -291032,24 +363388,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, anon_sym_GT2, - [71582] = 9, + [67648] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, - anon_sym_LPAREN2, - ACTIONS(4798), 1, - anon_sym_LBRACK, - ACTIONS(5286), 1, - anon_sym_DOT, - ACTIONS(5288), 1, - anon_sym_DASH_GT, - STATE(2475), 1, - sym_argument_list, - ACTIONS(4812), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4883), 17, + ACTIONS(5359), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -291063,18 +363408,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(4881), 25, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5357), 32, anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -291093,10 +363444,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - [71651] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [67708] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4937), 20, + ACTIONS(5432), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -291106,26 +363461,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4935), 29, + anon_sym_DASH_GT, + ACTIONS(5430), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACK, + anon_sym_GT_EQ, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -291133,6 +363490,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -291145,51 +363503,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [71708] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [67768] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4614), 12, + ACTIONS(5309), 20, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_const, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4612), 37, + ACTIONS(5307), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, @@ -291197,14 +363561,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, anon_sym_GT2, - anon_sym_requires, - [71765] = 3, + [67828] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4943), 20, + ACTIONS(5170), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -291225,7 +363586,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4941), 29, + ACTIONS(5168), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -291233,6 +363594,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -291254,49 +363616,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, anon_sym_GT2, - [71822] = 11, + [67888] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4257), 1, - anon_sym_LPAREN2, - ACTIONS(5017), 1, - anon_sym_LBRACK, - STATE(2721), 1, - sym_argument_list, - ACTIONS(5019), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5151), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5290), 2, + ACTIONS(5274), 20, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5310), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5292), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4883), 7, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(4881), 28, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(5272), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -291304,23 +363660,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [71895] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [67948] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4949), 20, + ACTIONS(4505), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -291330,26 +363689,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4947), 29, + anon_sym_DASH_GT, + ACTIONS(4510), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACK, + anon_sym_GT_EQ, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -291357,6 +363718,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -291369,31 +363731,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [71952] = 10, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [68008] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4257), 1, - anon_sym_LPAREN2, - ACTIONS(5017), 1, - anon_sym_LBRACK, - STATE(2721), 1, - sym_argument_list, - ACTIONS(5019), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5151), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5290), 2, + ACTIONS(5285), 16, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5292), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4883), 9, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -291403,15 +363751,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(4881), 28, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5283), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -291430,52 +363783,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [72023] = 12, + [68067] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4257), 1, - anon_sym_LPAREN2, - ACTIONS(5017), 1, - anon_sym_LBRACK, - ACTIONS(5137), 1, - anon_sym_LT_EQ_GT, - STATE(2721), 1, - sym_argument_list, - ACTIONS(5019), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5151), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5290), 2, + ACTIONS(5629), 19, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5310), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5292), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4883), 7, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(4881), 27, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5627), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -291487,60 +363834,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_or, - anon_sym_and, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [72098] = 14, + [68126] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4257), 1, - anon_sym_LPAREN2, - ACTIONS(5017), 1, - anon_sym_LBRACK, - ACTIONS(5137), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5308), 1, - anon_sym_GT_EQ, - STATE(2721), 1, - sym_argument_list, - ACTIONS(5019), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5151), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5290), 2, + ACTIONS(4505), 19, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5310), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5292), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(5306), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(4883), 4, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(4881), 26, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4510), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -291552,72 +363890,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_or, - anon_sym_and, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [72177] = 3, + [68185] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4587), 12, + ACTIONS(4505), 19, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_const, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4585), 37, + anon_sym_DASH_GT, + ACTIONS(4510), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACE, + anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [72234] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [68244] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4095), 20, + ACTIONS(5655), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -291627,25 +363970,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4097), 29, + anon_sym_DASH_GT, + ACTIONS(5653), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -291654,6 +363998,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -291666,25 +364011,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [72291] = 9, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [68303] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(2966), 23, + anon_sym_DASH, + anon_sym_PLUS, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + anon_sym_decltype, + anon_sym_typename, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + ACTIONS(2968), 28, anon_sym_LPAREN2, - ACTIONS(4798), 1, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, - ACTIONS(5286), 1, - anon_sym_DOT, - ACTIONS(5288), 1, - anon_sym_DASH_GT, - STATE(2475), 1, - sym_argument_list, - ACTIONS(4812), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(4891), 17, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [68362] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4694), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -291702,14 +364090,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(4889), 25, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4696), 32, anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_COLON, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -291728,54 +364121,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - [72360] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4257), 1, - anon_sym_LPAREN2, - ACTIONS(5017), 1, - anon_sym_LBRACK, - ACTIONS(5137), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5308), 1, - anon_sym_GT_EQ, - STATE(2721), 1, - sym_argument_list, - ACTIONS(5019), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5151), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5290), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [68421] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4505), 19, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5310), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5292), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(5304), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5306), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(4883), 4, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(4881), 23, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4510), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -291787,135 +364170,154 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_or, - anon_sym_and, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [72441] = 17, + [68480] = 50, ACTIONS(3), 1, sym_comment, - ACTIONS(4257), 1, + ACTIONS(5088), 1, anon_sym_LPAREN2, - ACTIONS(5017), 1, + ACTIONS(5784), 1, anon_sym_LBRACK, - ACTIONS(5137), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5302), 1, - anon_sym_AMP, - ACTIONS(5308), 1, - anon_sym_GT_EQ, - ACTIONS(5316), 1, - anon_sym_bitand, - STATE(2721), 1, - sym_argument_list, - ACTIONS(5019), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5151), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5290), 2, + ACTIONS(5836), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5838), 1, + anon_sym_COMMA, + ACTIONS(5840), 1, + anon_sym_RPAREN, + ACTIONS(5842), 1, anon_sym_DASH, + ACTIONS(5844), 1, anon_sym_PLUS, - ACTIONS(5310), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4883), 3, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_EQ, - ACTIONS(5292), 3, + ACTIONS(5846), 1, anon_sym_STAR, + ACTIONS(5848), 1, anon_sym_SLASH, + ACTIONS(5850), 1, anon_sym_PERCENT, - ACTIONS(5304), 3, + ACTIONS(5852), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5854), 1, + anon_sym_AMP_AMP, + ACTIONS(5856), 1, + anon_sym_PIPE, + ACTIONS(5858), 1, + anon_sym_CARET, + ACTIONS(5860), 1, + anon_sym_AMP, + ACTIONS(5862), 1, anon_sym_EQ_EQ, + ACTIONS(5864), 1, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5306), 3, + ACTIONS(5866), 1, anon_sym_GT, + ACTIONS(5868), 1, + anon_sym_GT_EQ, + ACTIONS(5870), 1, anon_sym_LT_EQ, + ACTIONS(5872), 1, anon_sym_LT, - ACTIONS(4881), 22, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(5874), 1, + anon_sym_LT_LT, + ACTIONS(5876), 1, + anon_sym_GT_GT, + ACTIONS(5878), 1, + anon_sym_EQ, + ACTIONS(5880), 1, anon_sym_QMARK, + ACTIONS(5882), 1, anon_sym_STAR_EQ, + ACTIONS(5884), 1, anon_sym_SLASH_EQ, + ACTIONS(5886), 1, anon_sym_PERCENT_EQ, + ACTIONS(5888), 1, anon_sym_PLUS_EQ, + ACTIONS(5890), 1, anon_sym_DASH_EQ, + ACTIONS(5892), 1, anon_sym_LT_LT_EQ, + ACTIONS(5894), 1, anon_sym_GT_GT_EQ, + ACTIONS(5896), 1, anon_sym_AMP_EQ, + ACTIONS(5898), 1, anon_sym_CARET_EQ, + ACTIONS(5900), 1, anon_sym_PIPE_EQ, + ACTIONS(5902), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5904), 1, anon_sym_or, + ACTIONS(5906), 1, anon_sym_and, + ACTIONS(5908), 1, anon_sym_bitor, + ACTIONS(5910), 1, anon_sym_xor, + ACTIONS(5912), 1, + anon_sym_bitand, + ACTIONS(5914), 1, + anon_sym_not_eq, + ACTIONS(5918), 1, anon_sym_DOT_STAR, + ACTIONS(5920), 1, anon_sym_DASH_GT_STAR, - [72526] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4257), 1, - anon_sym_LPAREN2, - ACTIONS(5017), 1, - anon_sym_LBRACK, - ACTIONS(5137), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5300), 1, - anon_sym_CARET, - ACTIONS(5302), 1, - anon_sym_AMP, - ACTIONS(5308), 1, - anon_sym_GT_EQ, - ACTIONS(5314), 1, - anon_sym_xor, - ACTIONS(5316), 1, - anon_sym_bitand, - STATE(2721), 1, + STATE(1821), 1, + sym__binary_fold_operator, + STATE(3343), 1, sym_argument_list, - ACTIONS(4883), 2, - anon_sym_PIPE, - anon_sym_EQ, - ACTIONS(5019), 2, + STATE(7383), 1, + sym__fold_operator, + ACTIONS(5786), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5151), 2, + ACTIONS(5916), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5290), 2, + [68633] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4505), 19, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5310), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5292), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(5304), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5306), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(4881), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4510), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -291927,122 +364329,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_or, - anon_sym_and, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [72615] = 3, + [68692] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4583), 12, + ACTIONS(5639), 19, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_GT_GT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(4581), 37, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT_LT, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, + anon_sym_GT_GT, + anon_sym_EQ, anon_sym_or, anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [72672] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4257), 1, - anon_sym_LPAREN2, - ACTIONS(4883), 1, - anon_sym_EQ, - ACTIONS(5017), 1, - anon_sym_LBRACK, - ACTIONS(5137), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5298), 1, - anon_sym_PIPE, - ACTIONS(5300), 1, - anon_sym_CARET, - ACTIONS(5302), 1, - anon_sym_AMP, - ACTIONS(5308), 1, - anon_sym_GT_EQ, - ACTIONS(5312), 1, - anon_sym_bitor, - ACTIONS(5314), 1, anon_sym_xor, - ACTIONS(5316), 1, - anon_sym_bitand, - STATE(2721), 1, - sym_argument_list, - ACTIONS(5019), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5151), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5290), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5310), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5292), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5304), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5306), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(4881), 20, + ACTIONS(5637), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -292054,70 +364385,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [72765] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4257), 1, - anon_sym_LPAREN2, - ACTIONS(4883), 1, - anon_sym_EQ, - ACTIONS(5017), 1, - anon_sym_LBRACK, - ACTIONS(5137), 1, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - ACTIONS(5298), 1, - anon_sym_PIPE, - ACTIONS(5300), 1, - anon_sym_CARET, - ACTIONS(5302), 1, - anon_sym_AMP, - ACTIONS(5308), 1, - anon_sym_GT_EQ, - ACTIONS(5312), 1, anon_sym_bitor, - ACTIONS(5314), 1, - anon_sym_xor, - ACTIONS(5316), 1, anon_sym_bitand, - STATE(2721), 1, - sym_argument_list, - ACTIONS(5019), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5151), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5290), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5296), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5310), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5292), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5304), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5306), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(4881), 18, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_QMARK, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [68751] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4487), 1, + anon_sym_EQ, + ACTIONS(4491), 13, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -292128,13 +364412,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_or, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [72860] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4997), 20, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + ACTIONS(4465), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -292144,39 +364425,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4995), 29, + ACTIONS(4457), 20, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, anon_sym_bitor, anon_sym_bitand, @@ -292184,23 +364454,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - anon_sym_GT2, - [72917] = 8, + [68814] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4257), 1, - anon_sym_LPAREN2, - ACTIONS(5017), 1, - anon_sym_LBRACK, - STATE(2721), 1, - sym_argument_list, - ACTIONS(5019), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5151), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4883), 14, + ACTIONS(4714), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -292215,15 +364472,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(4881), 28, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4716), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -292235,37 +364499,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [72984] = 9, + [68873] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4257), 1, - anon_sym_LPAREN2, - ACTIONS(5017), 1, - anon_sym_LBRACK, - STATE(2721), 1, - sym_argument_list, - ACTIONS(5019), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5151), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5292), 3, + ACTIONS(5359), 19, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4883), 11, - anon_sym_DASH, - anon_sym_PLUS, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -292274,16 +364527,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_EQ, - ACTIONS(4881), 28, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(5357), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -292295,93 +364556,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [73053] = 23, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [68932] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(5922), 23, + anon_sym_DASH, + anon_sym_PLUS, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + anon_sym_decltype, + anon_sym_typename, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + ACTIONS(5924), 28, anon_sym_LPAREN2, - ACTIONS(4798), 1, - anon_sym_LBRACK, - ACTIONS(5260), 1, - anon_sym_AMP_AMP, - ACTIONS(5262), 1, - anon_sym_PIPE, - ACTIONS(5266), 1, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP, - ACTIONS(5272), 1, - anon_sym_GT_EQ, - ACTIONS(5276), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5280), 1, - anon_sym_and, - ACTIONS(5282), 1, - anon_sym_bitor, - ACTIONS(5284), 1, - anon_sym_bitand, - ACTIONS(5286), 1, - anon_sym_DOT, - ACTIONS(5288), 1, - anon_sym_DASH_GT, - STATE(2475), 1, - sym_argument_list, - ACTIONS(4812), 2, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(4883), 2, - anon_sym_EQ, - anon_sym_or, - ACTIONS(5254), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5264), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5274), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5256), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5268), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5270), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(4881), 17, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - [73150] = 3, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [68991] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4076), 20, + ACTIONS(4505), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -292391,25 +364635,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4078), 29, + anon_sym_DASH_GT, + ACTIONS(4510), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -292418,6 +364663,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -292430,12 +364676,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [73207] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [69050] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4064), 20, + ACTIONS(5772), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -292445,25 +364691,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4066), 29, + anon_sym_DASH_GT, + ACTIONS(5770), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -292472,6 +364719,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -292484,66 +364732,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [73264] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [69109] = 50, ACTIONS(3), 1, sym_comment, - ACTIONS(4575), 12, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(4573), 37, + ACTIONS(5088), 1, + anon_sym_LPAREN2, + ACTIONS(5784), 1, + anon_sym_LBRACK, + ACTIONS(5836), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(5838), 1, anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(5842), 1, + anon_sym_DASH, + ACTIONS(5844), 1, + anon_sym_PLUS, + ACTIONS(5846), 1, anon_sym_STAR, + ACTIONS(5848), 1, + anon_sym_SLASH, + ACTIONS(5850), 1, anon_sym_PERCENT, + ACTIONS(5852), 1, anon_sym_PIPE_PIPE, + ACTIONS(5854), 1, anon_sym_AMP_AMP, + ACTIONS(5856), 1, + anon_sym_PIPE, + ACTIONS(5858), 1, anon_sym_CARET, + ACTIONS(5860), 1, + anon_sym_AMP, + ACTIONS(5862), 1, anon_sym_EQ_EQ, + ACTIONS(5864), 1, anon_sym_BANG_EQ, + ACTIONS(5866), 1, + anon_sym_GT, + ACTIONS(5868), 1, + anon_sym_GT_EQ, + ACTIONS(5870), 1, + anon_sym_LT_EQ, + ACTIONS(5872), 1, + anon_sym_LT, + ACTIONS(5874), 1, anon_sym_LT_LT, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, + ACTIONS(5876), 1, + anon_sym_GT_GT, + ACTIONS(5878), 1, + anon_sym_EQ, + ACTIONS(5880), 1, anon_sym_QMARK, + ACTIONS(5882), 1, + anon_sym_STAR_EQ, + ACTIONS(5884), 1, + anon_sym_SLASH_EQ, + ACTIONS(5886), 1, + anon_sym_PERCENT_EQ, + ACTIONS(5888), 1, + anon_sym_PLUS_EQ, + ACTIONS(5890), 1, + anon_sym_DASH_EQ, + ACTIONS(5892), 1, + anon_sym_LT_LT_EQ, + ACTIONS(5894), 1, + anon_sym_GT_GT_EQ, + ACTIONS(5896), 1, + anon_sym_AMP_EQ, + ACTIONS(5898), 1, + anon_sym_CARET_EQ, + ACTIONS(5900), 1, + anon_sym_PIPE_EQ, + ACTIONS(5902), 1, anon_sym_LT_EQ_GT, + ACTIONS(5904), 1, anon_sym_or, + ACTIONS(5906), 1, anon_sym_and, + ACTIONS(5908), 1, anon_sym_bitor, + ACTIONS(5910), 1, anon_sym_xor, + ACTIONS(5912), 1, anon_sym_bitand, + ACTIONS(5914), 1, anon_sym_not_eq, + ACTIONS(5918), 1, + anon_sym_DOT_STAR, + ACTIONS(5920), 1, + anon_sym_DASH_GT_STAR, + ACTIONS(5926), 1, + anon_sym_RPAREN, + STATE(1821), 1, + sym__binary_fold_operator, + STATE(3343), 1, + sym_argument_list, + STATE(7383), 1, + sym__fold_operator, + ACTIONS(5786), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5916), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [73321] = 3, + [69262] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4087), 20, + ACTIONS(4652), 3, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + ACTIONS(4465), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -292553,25 +364854,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4089), 29, + anon_sym_DASH_GT, + ACTIONS(4457), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -292580,28 +364882,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [73378] = 5, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [69323] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5318), 1, - anon_sym_AMP_AMP, - ACTIONS(5320), 1, - anon_sym_and, - ACTIONS(4822), 19, + ACTIONS(5928), 23, + anon_sym_DASH, + anon_sym_PLUS, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + anon_sym_decltype, + anon_sym_typename, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + ACTIONS(5930), 28, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [69382] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5776), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -292611,23 +364963,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, + anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4824), 28, + anon_sym_DASH_GT, + ACTIONS(5774), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -292636,6 +364991,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -292648,12 +365004,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [73439] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [69441] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4658), 20, + ACTIONS(2536), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -292663,25 +365019,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4656), 29, + anon_sym_DASH_GT, + ACTIONS(2534), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -292690,6 +365047,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -292702,12 +365060,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [73496] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [69500] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3803), 20, + ACTIONS(5465), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -292717,25 +365075,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(3795), 29, + anon_sym_DASH_GT, + ACTIONS(5467), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -292744,6 +365103,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -292756,66 +365116,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [73553] = 21, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [69559] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, - anon_sym_LPAREN2, - ACTIONS(4798), 1, - anon_sym_LBRACK, - ACTIONS(5262), 1, - anon_sym_PIPE, - ACTIONS(5266), 1, - anon_sym_AMP, - ACTIONS(5272), 1, - anon_sym_GT_EQ, - ACTIONS(5276), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5282), 1, - anon_sym_bitor, - ACTIONS(5284), 1, - anon_sym_bitand, - ACTIONS(5286), 1, - anon_sym_DOT, - ACTIONS(5288), 1, - anon_sym_DASH_GT, - STATE(2475), 1, - sym_argument_list, - ACTIONS(4812), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5254), 2, + ACTIONS(5432), 19, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5264), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5274), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4883), 3, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - ACTIONS(5256), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(5268), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5270), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(4881), 18, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(5430), 32, anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_COLON, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -292830,19 +365167,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [73646] = 7, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [69618] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4257), 1, + ACTIONS(5043), 1, + anon_sym_COLON_COLON, + ACTIONS(5064), 23, + anon_sym_DASH, + anon_sym_PLUS, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + anon_sym_decltype, + anon_sym_typename, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + ACTIONS(5062), 27, anon_sym_LPAREN2, - ACTIONS(5017), 1, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, - STATE(2721), 1, - sym_argument_list, - ACTIONS(5019), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4961), 14, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [69679] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5226), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -292857,15 +365249,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(4959), 30, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5224), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -292886,46 +365283,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [73711] = 3, + [69738] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4567), 12, + ACTIONS(5230), 16, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_const, + anon_sym_EQ, anon_sym_DOT, - ACTIONS(4565), 37, + anon_sym_DASH_GT, + ACTIONS(5228), 35, 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_LT_LT, + anon_sym_GT_EQ, anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, @@ -292935,125 +365339,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [73768] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [69797] = 50, ACTIONS(3), 1, sym_comment, - ACTIONS(4563), 12, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(4561), 37, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(5088), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACE, + ACTIONS(5784), 1, anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [73825] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4873), 20, + ACTIONS(5836), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5838), 1, + anon_sym_COMMA, + ACTIONS(5842), 1, anon_sym_DASH, + ACTIONS(5844), 1, anon_sym_PLUS, + ACTIONS(5846), 1, anon_sym_STAR, + ACTIONS(5848), 1, anon_sym_SLASH, + ACTIONS(5850), 1, anon_sym_PERCENT, + ACTIONS(5852), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5854), 1, + anon_sym_AMP_AMP, + ACTIONS(5856), 1, anon_sym_PIPE, + ACTIONS(5858), 1, anon_sym_CARET, + ACTIONS(5860), 1, anon_sym_AMP, + ACTIONS(5862), 1, + anon_sym_EQ_EQ, + ACTIONS(5864), 1, + anon_sym_BANG_EQ, + ACTIONS(5866), 1, anon_sym_GT, + ACTIONS(5868), 1, anon_sym_GT_EQ, + ACTIONS(5870), 1, anon_sym_LT_EQ, + ACTIONS(5872), 1, anon_sym_LT, + ACTIONS(5874), 1, anon_sym_LT_LT, + ACTIONS(5876), 1, anon_sym_GT_GT, + ACTIONS(5878), 1, anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4871), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACK, + ACTIONS(5880), 1, anon_sym_QMARK, + ACTIONS(5882), 1, anon_sym_STAR_EQ, + ACTIONS(5884), 1, anon_sym_SLASH_EQ, + ACTIONS(5886), 1, anon_sym_PERCENT_EQ, + ACTIONS(5888), 1, anon_sym_PLUS_EQ, + ACTIONS(5890), 1, anon_sym_DASH_EQ, + ACTIONS(5892), 1, anon_sym_LT_LT_EQ, + ACTIONS(5894), 1, + anon_sym_GT_GT_EQ, + ACTIONS(5896), 1, anon_sym_AMP_EQ, + ACTIONS(5898), 1, anon_sym_CARET_EQ, + ACTIONS(5900), 1, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + ACTIONS(5902), 1, anon_sym_LT_EQ_GT, + ACTIONS(5904), 1, + anon_sym_or, + ACTIONS(5906), 1, + anon_sym_and, + ACTIONS(5908), 1, anon_sym_bitor, + ACTIONS(5910), 1, + anon_sym_xor, + ACTIONS(5912), 1, anon_sym_bitand, + ACTIONS(5914), 1, anon_sym_not_eq, + ACTIONS(5918), 1, + anon_sym_DOT_STAR, + ACTIONS(5920), 1, + anon_sym_DASH_GT_STAR, + ACTIONS(5932), 1, + anon_sym_RPAREN, + STATE(1821), 1, + sym__binary_fold_operator, + STATE(3343), 1, + sym_argument_list, + STATE(7383), 1, + sym__fold_operator, + ACTIONS(5786), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5916), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [73882] = 3, + [69950] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4965), 20, + ACTIONS(5274), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -293063,25 +365459,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, anon_sym_DOT, - ACTIONS(4963), 29, + anon_sym_DASH_GT, + ACTIONS(5272), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -293090,138 +365485,159 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [73939] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [70009] = 50, ACTIONS(3), 1, sym_comment, - ACTIONS(3803), 20, + ACTIONS(5088), 1, + anon_sym_LPAREN2, + ACTIONS(5784), 1, + anon_sym_LBRACK, + ACTIONS(5836), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5838), 1, + anon_sym_COMMA, + ACTIONS(5842), 1, anon_sym_DASH, + ACTIONS(5844), 1, anon_sym_PLUS, + ACTIONS(5846), 1, anon_sym_STAR, + ACTIONS(5848), 1, anon_sym_SLASH, + ACTIONS(5850), 1, anon_sym_PERCENT, + ACTIONS(5852), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5854), 1, + anon_sym_AMP_AMP, + ACTIONS(5856), 1, anon_sym_PIPE, + ACTIONS(5858), 1, anon_sym_CARET, + ACTIONS(5860), 1, anon_sym_AMP, + ACTIONS(5862), 1, + anon_sym_EQ_EQ, + ACTIONS(5864), 1, + anon_sym_BANG_EQ, + ACTIONS(5866), 1, anon_sym_GT, + ACTIONS(5868), 1, anon_sym_GT_EQ, + ACTIONS(5870), 1, anon_sym_LT_EQ, + ACTIONS(5872), 1, anon_sym_LT, + ACTIONS(5874), 1, anon_sym_LT_LT, + ACTIONS(5876), 1, anon_sym_GT_GT, + ACTIONS(5878), 1, anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(3795), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACK, + ACTIONS(5880), 1, anon_sym_QMARK, + ACTIONS(5882), 1, anon_sym_STAR_EQ, + ACTIONS(5884), 1, anon_sym_SLASH_EQ, + ACTIONS(5886), 1, anon_sym_PERCENT_EQ, + ACTIONS(5888), 1, anon_sym_PLUS_EQ, + ACTIONS(5890), 1, anon_sym_DASH_EQ, + ACTIONS(5892), 1, anon_sym_LT_LT_EQ, + ACTIONS(5894), 1, + anon_sym_GT_GT_EQ, + ACTIONS(5896), 1, anon_sym_AMP_EQ, + ACTIONS(5898), 1, anon_sym_CARET_EQ, + ACTIONS(5900), 1, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [73996] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4257), 1, - anon_sym_LPAREN2, - ACTIONS(4895), 1, - anon_sym_EQ, - ACTIONS(5017), 1, - anon_sym_LBRACK, - ACTIONS(5071), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5115), 1, - anon_sym_QMARK, - ACTIONS(5137), 1, + ACTIONS(5902), 1, anon_sym_LT_EQ_GT, - ACTIONS(5298), 1, - anon_sym_PIPE, - ACTIONS(5300), 1, - anon_sym_CARET, - ACTIONS(5302), 1, - anon_sym_AMP, - ACTIONS(5308), 1, - anon_sym_GT_EQ, - ACTIONS(5312), 1, + ACTIONS(5904), 1, + anon_sym_or, + ACTIONS(5906), 1, + anon_sym_and, + ACTIONS(5908), 1, anon_sym_bitor, - ACTIONS(5314), 1, + ACTIONS(5910), 1, anon_sym_xor, - ACTIONS(5316), 1, + ACTIONS(5912), 1, anon_sym_bitand, - STATE(2721), 1, + ACTIONS(5914), 1, + anon_sym_not_eq, + ACTIONS(5918), 1, + anon_sym_DOT_STAR, + ACTIONS(5920), 1, + anon_sym_DASH_GT_STAR, + ACTIONS(5934), 1, + anon_sym_RPAREN, + STATE(1821), 1, + sym__binary_fold_operator, + STATE(3343), 1, sym_argument_list, - ACTIONS(5019), 2, + STATE(7383), 1, + sym__fold_operator, + ACTIONS(5786), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5151), 2, + ACTIONS(5916), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5290), 2, + [70162] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5170), 16, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5294), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5296), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5310), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5292), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(5304), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5306), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(4893), 14, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5168), 35, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -293232,92 +365648,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [74097] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1521), 1, - anon_sym_operator, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(1683), 1, - anon_sym_TILDE, - ACTIONS(3226), 1, - anon_sym_LPAREN2, - ACTIONS(4302), 1, - sym_identifier, - ACTIONS(4306), 1, - anon_sym_STAR, - ACTIONS(4308), 1, - anon_sym_AMP_AMP, - ACTIONS(4310), 1, - anon_sym_AMP, - ACTIONS(4312), 1, - anon_sym_COLON_COLON, - ACTIONS(4314), 1, - anon_sym_LBRACK, - STATE(3482), 1, - sym_parameter_list, - STATE(4598), 1, - sym__scope_resolution, - STATE(4665), 1, - sym__declarator, - STATE(4765), 1, - sym__function_declarator_seq, - STATE(4898), 1, - sym__abstract_declarator, - STATE(6066), 1, - sym_ms_based_modifier, - ACTIONS(5322), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(4104), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(6159), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(4764), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(2724), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(4918), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [74198] = 5, + [70221] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, - anon_sym_LT, - STATE(2472), 1, - sym_template_argument_list, - ACTIONS(4844), 17, + ACTIONS(5780), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -293328,6 +365675,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, @@ -293335,8 +365683,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4842), 30, + anon_sym_DASH_GT, + ACTIONS(5778), 32, anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -293344,7 +365695,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -293365,87 +365715,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [74259] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1521), 1, - anon_sym_operator, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(1683), 1, - anon_sym_TILDE, - ACTIONS(3226), 1, - anon_sym_LPAREN2, - ACTIONS(4302), 1, - sym_identifier, - ACTIONS(4312), 1, - anon_sym_COLON_COLON, - ACTIONS(4314), 1, - anon_sym_LBRACK, - ACTIONS(4316), 1, - anon_sym_STAR, - ACTIONS(4318), 1, - anon_sym_AMP_AMP, - ACTIONS(4320), 1, - anon_sym_AMP, - STATE(3556), 1, - sym_parameter_list, - STATE(4598), 1, - sym__scope_resolution, - STATE(4665), 1, - sym__declarator, - STATE(4765), 1, - sym__function_declarator_seq, - STATE(4958), 1, - sym__abstract_declarator, - STATE(6066), 1, - sym_ms_based_modifier, - ACTIONS(5322), 2, - anon_sym_COMMA, - anon_sym_GT2, - STATE(4104), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(6159), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(4764), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(2724), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(4918), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [74360] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [70280] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5009), 20, + ACTIONS(5503), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -293455,25 +365730,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5007), 29, + anon_sym_DASH_GT, + ACTIONS(5501), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -293482,6 +365758,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -293494,144 +365771,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [74417] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3814), 1, - anon_sym_COLON_COLON, - ACTIONS(5327), 1, - anon_sym_LT, - STATE(3100), 1, - sym_template_argument_list, - ACTIONS(3831), 19, - anon_sym_DASH, - anon_sym_PLUS, - sym_primitive_type, - anon_sym_not, - anon_sym_compl, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - anon_sym_decltype, - anon_sym_typename, - anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, - anon_sym_requires, - sym_this, - sym_nullptr, - ACTIONS(3836), 27, - anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [74480] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4257), 1, - anon_sym_LPAREN2, - ACTIONS(4800), 1, - anon_sym_EQ, - ACTIONS(5017), 1, - anon_sym_LBRACK, - ACTIONS(5071), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5137), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5298), 1, - anon_sym_PIPE, - ACTIONS(5300), 1, - anon_sym_CARET, - ACTIONS(5302), 1, - anon_sym_AMP, - ACTIONS(5308), 1, - anon_sym_GT_EQ, - ACTIONS(5312), 1, - anon_sym_bitor, - ACTIONS(5314), 1, - anon_sym_xor, - ACTIONS(5316), 1, - anon_sym_bitand, - STATE(2721), 1, - sym_argument_list, - ACTIONS(5019), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5151), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5290), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5294), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5296), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5310), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5292), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5304), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5306), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(4774), 15, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [74579] = 3, + [70339] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4042), 20, + ACTIONS(5503), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -293641,18 +365786,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4044), 29, + ACTIONS(5501), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -293660,7 +365804,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACK, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -293668,6 +365815,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -293681,99 +365829,152 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - anon_sym_GT2, - [74636] = 3, + [70398] = 50, ACTIONS(3), 1, sym_comment, - ACTIONS(4865), 20, + ACTIONS(5088), 1, + anon_sym_LPAREN2, + ACTIONS(5784), 1, + anon_sym_LBRACK, + ACTIONS(5836), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5842), 1, anon_sym_DASH, + ACTIONS(5844), 1, anon_sym_PLUS, + ACTIONS(5846), 1, anon_sym_STAR, + ACTIONS(5848), 1, anon_sym_SLASH, + ACTIONS(5850), 1, anon_sym_PERCENT, + ACTIONS(5852), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5854), 1, + anon_sym_AMP_AMP, + ACTIONS(5856), 1, anon_sym_PIPE, + ACTIONS(5858), 1, anon_sym_CARET, + ACTIONS(5860), 1, anon_sym_AMP, + ACTIONS(5862), 1, + anon_sym_EQ_EQ, + ACTIONS(5864), 1, + anon_sym_BANG_EQ, + ACTIONS(5866), 1, anon_sym_GT, + ACTIONS(5868), 1, anon_sym_GT_EQ, + ACTIONS(5870), 1, anon_sym_LT_EQ, + ACTIONS(5872), 1, anon_sym_LT, + ACTIONS(5874), 1, anon_sym_LT_LT, + ACTIONS(5876), 1, anon_sym_GT_GT, + ACTIONS(5878), 1, anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4863), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACK, + ACTIONS(5880), 1, anon_sym_QMARK, + ACTIONS(5882), 1, anon_sym_STAR_EQ, + ACTIONS(5884), 1, anon_sym_SLASH_EQ, + ACTIONS(5886), 1, anon_sym_PERCENT_EQ, + ACTIONS(5888), 1, anon_sym_PLUS_EQ, + ACTIONS(5890), 1, anon_sym_DASH_EQ, + ACTIONS(5892), 1, anon_sym_LT_LT_EQ, + ACTIONS(5894), 1, + anon_sym_GT_GT_EQ, + ACTIONS(5896), 1, anon_sym_AMP_EQ, + ACTIONS(5898), 1, anon_sym_CARET_EQ, + ACTIONS(5900), 1, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + ACTIONS(5902), 1, anon_sym_LT_EQ_GT, + ACTIONS(5904), 1, + anon_sym_or, + ACTIONS(5906), 1, + anon_sym_and, + ACTIONS(5908), 1, anon_sym_bitor, + ACTIONS(5910), 1, + anon_sym_xor, + ACTIONS(5912), 1, anon_sym_bitand, + ACTIONS(5914), 1, anon_sym_not_eq, + ACTIONS(5918), 1, + anon_sym_DOT_STAR, + ACTIONS(5920), 1, + anon_sym_DASH_GT_STAR, + ACTIONS(5936), 1, + anon_sym_COMMA, + ACTIONS(5938), 1, + anon_sym_RPAREN, + STATE(1821), 1, + sym__binary_fold_operator, + STATE(3343), 1, + sym_argument_list, + STATE(7383), 1, + sym__fold_operator, + ACTIONS(5786), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5916), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [74693] = 3, + [70551] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4535), 12, + ACTIONS(5258), 16, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_const, + anon_sym_EQ, anon_sym_DOT, - ACTIONS(4533), 37, + anon_sym_DASH_GT, + ACTIONS(5256), 35, 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_LT_LT, + anon_sym_GT_EQ, anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, @@ -293783,17 +365984,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [74750] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [70610] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5001), 20, + ACTIONS(5607), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -293803,25 +366001,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4999), 29, + anon_sym_DASH_GT, + ACTIONS(5605), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -293830,6 +366029,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -293842,117 +366042,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [74807] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [70669] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4531), 12, + ACTIONS(5685), 19, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_const, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4529), 37, + anon_sym_DASH_GT, + ACTIONS(5683), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [74864] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4166), 1, - anon_sym_LPAREN2, - ACTIONS(4798), 1, - anon_sym_LBRACK, - ACTIONS(5266), 1, - anon_sym_AMP, - ACTIONS(5272), 1, anon_sym_GT_EQ, - ACTIONS(5276), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5284), 1, - anon_sym_bitand, - ACTIONS(5286), 1, - anon_sym_DOT, - ACTIONS(5288), 1, - anon_sym_DASH_GT, - STATE(2475), 1, - sym_argument_list, - ACTIONS(4812), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5254), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5264), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5274), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5256), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5268), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5270), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(4883), 4, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - ACTIONS(4881), 19, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_COLON, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -293967,45 +366092,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_bitor, - [74953] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4118), 2, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - ACTIONS(4120), 12, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - ACTIONS(3795), 17, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - ACTIONS(3803), 18, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [70728] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5297), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -294015,134 +366113,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - [75014] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5329), 1, - sym_literal_suffix, - STATE(3006), 3, - sym_string_literal, - sym_raw_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(2440), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2454), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(3803), 17, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + anon_sym_EQ, anon_sym_DOT, - ACTIONS(3795), 18, + anon_sym_DASH_GT, + ACTIONS(5295), 35, 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_LT_LT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [75079] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4257), 1, - anon_sym_LPAREN2, - ACTIONS(4820), 1, - anon_sym_EQ, - ACTIONS(5017), 1, - anon_sym_LBRACK, - ACTIONS(5137), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5298), 1, - anon_sym_PIPE, - ACTIONS(5300), 1, - anon_sym_CARET, - ACTIONS(5302), 1, - anon_sym_AMP, - ACTIONS(5308), 1, anon_sym_GT_EQ, - ACTIONS(5312), 1, - anon_sym_bitor, - ACTIONS(5314), 1, - anon_sym_xor, - ACTIONS(5316), 1, - anon_sym_bitand, - STATE(2721), 1, - sym_argument_list, - ACTIONS(5019), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5151), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5290), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5294), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5296), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5310), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5292), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5304), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5306), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(4818), 16, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -294154,86 +366143,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [75176] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4257), 1, - anon_sym_LPAREN2, - ACTIONS(4861), 1, - anon_sym_EQ, - ACTIONS(5017), 1, - anon_sym_LBRACK, - ACTIONS(5137), 1, anon_sym_LT_EQ_GT, - ACTIONS(5298), 1, - anon_sym_PIPE, - ACTIONS(5300), 1, - anon_sym_CARET, - ACTIONS(5302), 1, - anon_sym_AMP, - ACTIONS(5308), 1, - anon_sym_GT_EQ, - ACTIONS(5312), 1, + anon_sym_or, + anon_sym_and, anon_sym_bitor, - ACTIONS(5314), 1, anon_sym_xor, - ACTIONS(5316), 1, anon_sym_bitand, - STATE(2721), 1, - sym_argument_list, - ACTIONS(5019), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5151), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5290), 2, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [70787] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5052), 23, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5294), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5296), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5310), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5292), 3, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + anon_sym_decltype, + anon_sym_typename, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + ACTIONS(5050), 28, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5304), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5306), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(4859), 16, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [75273] = 3, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [70846] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4913), 20, + ACTIONS(5293), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -294243,25 +366225,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, anon_sym_DOT, - ACTIONS(4911), 29, + anon_sym_DASH_GT, + ACTIONS(5291), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -294270,24 +366251,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [75330] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [70905] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4723), 20, + ACTIONS(5289), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -294297,25 +366281,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, anon_sym_DOT, - ACTIONS(4721), 29, + anon_sym_DASH_GT, + ACTIONS(5287), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -294324,24 +366307,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [75387] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [70964] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4939), 20, + ACTIONS(5313), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -294351,25 +366337,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, anon_sym_DOT, - ACTIONS(2652), 29, + anon_sym_DASH_GT, + ACTIONS(5311), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -294378,93 +366363,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [75444] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4166), 1, - anon_sym_LPAREN2, - ACTIONS(4798), 1, - anon_sym_LBRACK, - ACTIONS(5266), 1, - anon_sym_AMP, - ACTIONS(5272), 1, - anon_sym_GT_EQ, - ACTIONS(5276), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5284), 1, - anon_sym_bitand, - ACTIONS(5286), 1, - anon_sym_DOT, - ACTIONS(5288), 1, - anon_sym_DASH_GT, - STATE(2475), 1, - sym_argument_list, - ACTIONS(4812), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5254), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5274), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5256), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5268), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5270), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(4883), 6, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - ACTIONS(4881), 19, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_bitor, - [75531] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [71023] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4770), 20, + ACTIONS(5317), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -294474,25 +366393,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, anon_sym_DOT, - ACTIONS(4768), 29, + anon_sym_DASH_GT, + ACTIONS(5315), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -294501,129 +366419,205 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [75588] = 6, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [71082] = 3, ACTIONS(3), 1, sym_comment, - STATE(2963), 3, - sym_string_literal, - sym_raw_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(5331), 5, + ACTIONS(2962), 23, + anon_sym_DASH, + anon_sym_PLUS, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + anon_sym_decltype, + anon_sym_typename, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + ACTIONS(2964), 28, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(5334), 5, anon_sym_R_DQUOTE, anon_sym_LR_DQUOTE, anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - ACTIONS(3920), 18, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + [71141] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5043), 1, + anon_sym_COLON_COLON, + ACTIONS(5041), 23, + anon_sym_DASH, + anon_sym_PLUS, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + anon_sym_decltype, + anon_sym_typename, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + ACTIONS(5039), 27, anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - ACTIONS(3922), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_literal_suffix, - [75651] = 16, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [71202] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, - anon_sym_LPAREN2, - ACTIONS(4798), 1, - anon_sym_LBRACK, - ACTIONS(5272), 1, - anon_sym_GT_EQ, - ACTIONS(5276), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5286), 1, - anon_sym_DOT, - ACTIONS(5288), 1, - anon_sym_DASH_GT, - STATE(2475), 1, - sym_argument_list, - ACTIONS(4812), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5254), 2, + ACTIONS(5043), 1, + anon_sym_COLON_COLON, + ACTIONS(5041), 23, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5274), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5256), 3, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + anon_sym_decltype, + anon_sym_typename, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + ACTIONS(5039), 27, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5268), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5270), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(4883), 7, - anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [71263] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4487), 1, anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - ACTIONS(4881), 20, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_COLON, - anon_sym_QMARK, + ACTIONS(4650), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5369), 1, + anon_sym_LPAREN2, + ACTIONS(5375), 1, + anon_sym_LBRACK, + ACTIONS(4491), 13, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -294637,54 +366631,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_bitor, - anon_sym_bitand, - [75734] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4851), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4849), 29, + ACTIONS(4457), 17, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACK, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, anon_sym_bitor, anon_sym_bitand, @@ -294692,77 +366649,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - anon_sym_GT2, - [75791] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4166), 1, - anon_sym_LPAREN2, - ACTIONS(4798), 1, - anon_sym_LBRACK, - ACTIONS(5272), 1, - anon_sym_GT_EQ, - ACTIONS(5276), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5286), 1, - anon_sym_DOT, - ACTIONS(5288), 1, - anon_sym_DASH_GT, - STATE(2475), 1, - sym_argument_list, - ACTIONS(4812), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5254), 2, + ACTIONS(4465), 17, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5274), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5256), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(5270), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(4883), 7, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, - anon_sym_EQ, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(4881), 23, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - [75872] = 3, + anon_sym_DOT, + [71332] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4887), 20, + ACTIONS(4690), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -294772,25 +366680,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4885), 29, + anon_sym_DASH_GT, + ACTIONS(4692), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -294799,6 +366708,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -294811,100 +366721,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [75929] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [71391] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4543), 12, + ACTIONS(4550), 23, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(4541), 37, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + anon_sym_decltype, + anon_sym_typename, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + ACTIONS(4555), 28, anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [75986] = 3, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [71450] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4459), 12, + ACTIONS(5281), 16, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_const, + anon_sym_EQ, anon_sym_DOT, - ACTIONS(4457), 37, + anon_sym_DASH_GT, + ACTIONS(5279), 35, 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_LT_LT, + anon_sym_GT_EQ, anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, @@ -294914,103 +366831,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [76043] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4166), 1, - anon_sym_LPAREN2, - ACTIONS(4772), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4798), 1, - anon_sym_LBRACK, - ACTIONS(4895), 1, - anon_sym_EQ, - ACTIONS(5258), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5260), 1, - anon_sym_AMP_AMP, - ACTIONS(5262), 1, - anon_sym_PIPE, - ACTIONS(5266), 1, - anon_sym_AMP, - ACTIONS(5272), 1, - anon_sym_GT_EQ, - ACTIONS(5276), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5278), 1, - anon_sym_or, - ACTIONS(5280), 1, - anon_sym_and, - ACTIONS(5282), 1, - anon_sym_bitor, - ACTIONS(5284), 1, - anon_sym_bitand, - ACTIONS(5286), 1, - anon_sym_DOT, - ACTIONS(5288), 1, - anon_sym_DASH_GT, - ACTIONS(5337), 1, - anon_sym_QMARK, - STATE(2475), 1, - sym_argument_list, - ACTIONS(4812), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5254), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5264), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5274), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5256), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5268), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5270), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(4893), 14, - anon_sym_COLON, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - [76148] = 7, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [71509] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5318), 1, - anon_sym_AMP_AMP, - ACTIONS(5320), 1, - anon_sym_and, - ACTIONS(5339), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5341), 1, - anon_sym_or, - ACTIONS(4917), 18, + ACTIONS(5262), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -295020,21 +366848,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_xor, anon_sym_DOT, - ACTIONS(4919), 27, + anon_sym_DASH_GT, + ACTIONS(5260), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -295043,34 +366874,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [76213] = 8, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [71568] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, - anon_sym_LPAREN2, - ACTIONS(4798), 1, - anon_sym_LBRACK, - ACTIONS(5286), 1, - anon_sym_DOT, - ACTIONS(5288), 1, - anon_sym_DASH_GT, - STATE(2475), 1, - sym_argument_list, - ACTIONS(4961), 17, + ACTIONS(2542), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -295088,14 +366912,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(4959), 27, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2540), 32, anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_COLON, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -295116,144 +366945,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - [76280] = 25, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [71627] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, - anon_sym_LPAREN2, - ACTIONS(4798), 1, - anon_sym_LBRACK, - ACTIONS(4820), 1, - anon_sym_EQ, - ACTIONS(5258), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5260), 1, - anon_sym_AMP_AMP, - ACTIONS(5262), 1, - anon_sym_PIPE, - ACTIONS(5266), 1, - anon_sym_AMP, - ACTIONS(5272), 1, - anon_sym_GT_EQ, - ACTIONS(5276), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5278), 1, - anon_sym_or, - ACTIONS(5280), 1, - anon_sym_and, - ACTIONS(5282), 1, - anon_sym_bitor, - ACTIONS(5284), 1, - anon_sym_bitand, - ACTIONS(5286), 1, - anon_sym_DOT, - ACTIONS(5288), 1, - anon_sym_DASH_GT, - STATE(2475), 1, - sym_argument_list, - ACTIONS(4812), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5254), 2, + ACTIONS(5689), 19, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5264), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5274), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5256), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(5268), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5270), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(4818), 16, - anon_sym_DOT_DOT_DOT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - [76381] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4166), 1, - anon_sym_LPAREN2, - ACTIONS(4798), 1, - anon_sym_LBRACK, - ACTIONS(4977), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(5258), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5260), 1, - anon_sym_AMP_AMP, - ACTIONS(5262), 1, - anon_sym_PIPE, - ACTIONS(5266), 1, - anon_sym_AMP, - ACTIONS(5272), 1, - anon_sym_GT_EQ, - ACTIONS(5276), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5278), 1, anon_sym_or, - ACTIONS(5280), 1, anon_sym_and, - ACTIONS(5282), 1, - anon_sym_bitor, - ACTIONS(5284), 1, - anon_sym_bitand, - ACTIONS(5286), 1, + anon_sym_xor, anon_sym_DOT, - ACTIONS(5288), 1, anon_sym_DASH_GT, - STATE(2475), 1, - sym_argument_list, - ACTIONS(4812), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5254), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5264), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5274), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5256), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5268), 3, + ACTIONS(5687), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5270), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(4975), 16, - anon_sym_DOT_DOT_DOT, - anon_sym_COLON, + anon_sym_GT_EQ, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -295268,22 +366995,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [76482] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4257), 1, - anon_sym_LPAREN2, - ACTIONS(5017), 1, - anon_sym_LBRACK, - STATE(2721), 1, - sym_argument_list, - ACTIONS(5019), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5151), 2, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5013), 14, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [71686] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5166), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -295298,15 +367021,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(5011), 28, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5164), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -295325,120 +367053,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [76549] = 3, + [71745] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4449), 12, + ACTIONS(5041), 23, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(4447), 37, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + anon_sym_decltype, + anon_sym_typename, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + ACTIONS(5039), 28, anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [76606] = 3, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [71804] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4437), 12, + ACTIONS(5461), 19, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_const, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4435), 37, + anon_sym_DASH_GT, + ACTIONS(5463), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACE, + anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [76663] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [71863] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4758), 20, + ACTIONS(5705), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -295448,25 +367184,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4756), 29, + anon_sym_DASH_GT, + ACTIONS(5703), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -295475,6 +367212,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -295487,12 +367225,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [76720] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [71922] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4869), 20, + ACTIONS(2097), 1, + anon_sym_LBRACE, + ACTIONS(5361), 1, + anon_sym_LPAREN2, + STATE(3629), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5349), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -295502,25 +367247,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, anon_sym_DOT, - ACTIONS(4867), 29, + anon_sym_DASH_GT, + ACTIONS(5347), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -295529,24 +367271,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [76777] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [71987] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4645), 20, + ACTIONS(5325), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -295556,25 +367299,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, anon_sym_DOT, - ACTIONS(4643), 29, + anon_sym_DASH_GT, + ACTIONS(5323), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -295583,24 +367325,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [76834] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [72046] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4752), 20, + ACTIONS(5736), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -295610,25 +367355,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4754), 29, + anon_sym_DASH_GT, + ACTIONS(5734), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -295637,6 +367383,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -295649,12 +367396,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [76891] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [72105] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4981), 20, + ACTIONS(5740), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -295664,25 +367411,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4979), 29, + anon_sym_DASH_GT, + ACTIONS(5738), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -295691,6 +367439,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -295703,82 +367452,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [76948] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [72164] = 50, ACTIONS(3), 1, sym_comment, - ACTIONS(4559), 12, + ACTIONS(5088), 1, + anon_sym_LPAREN2, + ACTIONS(5784), 1, + anon_sym_LBRACK, + ACTIONS(5836), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5842), 1, anon_sym_DASH, + ACTIONS(5844), 1, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(4557), 37, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(5846), 1, anon_sym_STAR, + ACTIONS(5848), 1, + anon_sym_SLASH, + ACTIONS(5850), 1, anon_sym_PERCENT, + ACTIONS(5852), 1, anon_sym_PIPE_PIPE, + ACTIONS(5854), 1, anon_sym_AMP_AMP, + ACTIONS(5856), 1, + anon_sym_PIPE, + ACTIONS(5858), 1, anon_sym_CARET, + ACTIONS(5860), 1, + anon_sym_AMP, + ACTIONS(5862), 1, anon_sym_EQ_EQ, + ACTIONS(5864), 1, anon_sym_BANG_EQ, + ACTIONS(5866), 1, + anon_sym_GT, + ACTIONS(5868), 1, + anon_sym_GT_EQ, + ACTIONS(5870), 1, + anon_sym_LT_EQ, + ACTIONS(5872), 1, + anon_sym_LT, + ACTIONS(5874), 1, anon_sym_LT_LT, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, + ACTIONS(5876), 1, + anon_sym_GT_GT, + ACTIONS(5878), 1, + anon_sym_EQ, + ACTIONS(5880), 1, anon_sym_QMARK, + ACTIONS(5882), 1, + anon_sym_STAR_EQ, + ACTIONS(5884), 1, + anon_sym_SLASH_EQ, + ACTIONS(5886), 1, + anon_sym_PERCENT_EQ, + ACTIONS(5888), 1, + anon_sym_PLUS_EQ, + ACTIONS(5890), 1, + anon_sym_DASH_EQ, + ACTIONS(5892), 1, + anon_sym_LT_LT_EQ, + ACTIONS(5894), 1, + anon_sym_GT_GT_EQ, + ACTIONS(5896), 1, + anon_sym_AMP_EQ, + ACTIONS(5898), 1, + anon_sym_CARET_EQ, + ACTIONS(5900), 1, + anon_sym_PIPE_EQ, + ACTIONS(5902), 1, anon_sym_LT_EQ_GT, + ACTIONS(5904), 1, anon_sym_or, + ACTIONS(5906), 1, anon_sym_and, + ACTIONS(5908), 1, anon_sym_bitor, + ACTIONS(5910), 1, anon_sym_xor, + ACTIONS(5912), 1, anon_sym_bitand, + ACTIONS(5914), 1, anon_sym_not_eq, + ACTIONS(5918), 1, + anon_sym_DOT_STAR, + ACTIONS(5920), 1, + anon_sym_DASH_GT_STAR, + ACTIONS(5936), 1, + anon_sym_COMMA, + ACTIONS(5940), 1, + anon_sym_RPAREN, + STATE(1821), 1, + sym__binary_fold_operator, + STATE(3343), 1, + sym_argument_list, + STATE(7383), 1, + sym__fold_operator, + ACTIONS(5786), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5916), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [77005] = 5, + [72317] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4838), 1, - anon_sym_EQ, - ACTIONS(4840), 13, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - ACTIONS(3803), 17, + ACTIONS(5309), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -295792,33 +367574,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_or, - anon_sym_and, - anon_sym_xor, + anon_sym_EQ, anon_sym_DOT, - ACTIONS(3795), 18, + anon_sym_DASH_GT, + ACTIONS(5307), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [77066] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [72376] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4060), 20, + ACTIONS(5581), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -295828,25 +367626,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4062), 29, + anon_sym_DASH_GT, + ACTIONS(5579), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -295855,6 +367654,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -295867,87 +367667,185 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [77123] = 9, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [72435] = 50, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(5088), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(5784), 1, anon_sym_LBRACK, - ACTIONS(5286), 1, - anon_sym_DOT, - ACTIONS(5288), 1, - anon_sym_DASH_GT, - STATE(2475), 1, - sym_argument_list, - ACTIONS(4812), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5013), 17, + ACTIONS(5836), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5838), 1, + anon_sym_COMMA, + ACTIONS(5842), 1, anon_sym_DASH, + ACTIONS(5844), 1, anon_sym_PLUS, + ACTIONS(5846), 1, anon_sym_STAR, + ACTIONS(5848), 1, anon_sym_SLASH, + ACTIONS(5850), 1, anon_sym_PERCENT, + ACTIONS(5852), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5854), 1, + anon_sym_AMP_AMP, + ACTIONS(5856), 1, anon_sym_PIPE, + ACTIONS(5858), 1, anon_sym_CARET, + ACTIONS(5860), 1, anon_sym_AMP, + ACTIONS(5862), 1, + anon_sym_EQ_EQ, + ACTIONS(5864), 1, + anon_sym_BANG_EQ, + ACTIONS(5866), 1, anon_sym_GT, + ACTIONS(5868), 1, + anon_sym_GT_EQ, + ACTIONS(5870), 1, anon_sym_LT_EQ, + ACTIONS(5872), 1, anon_sym_LT, + ACTIONS(5874), 1, anon_sym_LT_LT, + ACTIONS(5876), 1, anon_sym_GT_GT, + ACTIONS(5878), 1, anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - ACTIONS(5011), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, + ACTIONS(5880), 1, anon_sym_QMARK, + ACTIONS(5882), 1, anon_sym_STAR_EQ, + ACTIONS(5884), 1, anon_sym_SLASH_EQ, + ACTIONS(5886), 1, anon_sym_PERCENT_EQ, + ACTIONS(5888), 1, anon_sym_PLUS_EQ, + ACTIONS(5890), 1, anon_sym_DASH_EQ, + ACTIONS(5892), 1, anon_sym_LT_LT_EQ, + ACTIONS(5894), 1, anon_sym_GT_GT_EQ, + ACTIONS(5896), 1, anon_sym_AMP_EQ, + ACTIONS(5898), 1, anon_sym_CARET_EQ, + ACTIONS(5900), 1, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + ACTIONS(5902), 1, anon_sym_LT_EQ_GT, + ACTIONS(5904), 1, + anon_sym_or, + ACTIONS(5906), 1, + anon_sym_and, + ACTIONS(5908), 1, anon_sym_bitor, + ACTIONS(5910), 1, + anon_sym_xor, + ACTIONS(5912), 1, anon_sym_bitand, + ACTIONS(5914), 1, anon_sym_not_eq, - [77192] = 6, + ACTIONS(5918), 1, + anon_sym_DOT_STAR, + ACTIONS(5920), 1, + anon_sym_DASH_GT_STAR, + ACTIONS(5942), 1, + anon_sym_RPAREN, + STATE(1821), 1, + sym__binary_fold_operator, + STATE(3343), 1, + sym_argument_list, + STATE(7383), 1, + sym__fold_operator, + ACTIONS(5786), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5916), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + [72588] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3814), 1, + ACTIONS(4535), 23, + anon_sym_DASH, + anon_sym_PLUS, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + anon_sym_decltype, + anon_sym_typename, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + ACTIONS(4537), 28, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_SEMI, anon_sym_COLON_COLON, - ACTIONS(5327), 1, - anon_sym_LT, - STATE(3100), 1, - sym_template_argument_list, - ACTIONS(4196), 19, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [72647] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5944), 23, anon_sym_DASH, anon_sym_PLUS, sym_primitive_type, anon_sym_not, anon_sym_compl, anon_sym_sizeof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, sym_true, sym_false, - sym_null, + anon_sym_NULL, + anon_sym_nullptr, sym_identifier, anon_sym_decltype, anon_sym_typename, @@ -295957,14 +367855,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, anon_sym_requires, sym_this, - sym_nullptr, - ACTIONS(3819), 27, + ACTIONS(5946), 28, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP, anon_sym_SEMI, + anon_sym_COLON_COLON, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, @@ -295986,10 +367884,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [77255] = 3, + [72706] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4877), 20, + ACTIONS(5477), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -295999,25 +367897,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4875), 29, + anon_sym_DASH_GT, + ACTIONS(5479), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -296026,6 +367925,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -296038,160 +367938,210 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [77312] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [72765] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4433), 12, + ACTIONS(4726), 19, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_const, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4431), 37, + anon_sym_DASH_GT, + ACTIONS(4728), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACE, + anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [77369] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [72824] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4429), 12, + ACTIONS(4517), 23, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(4427), 37, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + anon_sym_decltype, + anon_sym_typename, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + ACTIONS(4519), 28, anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [77426] = 12, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [72883] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4257), 1, + ACTIONS(4566), 23, + anon_sym_DASH, + anon_sym_PLUS, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + anon_sym_decltype, + anon_sym_typename, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + ACTIONS(4568), 28, anon_sym_LPAREN2, - ACTIONS(5017), 1, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, - ACTIONS(5137), 1, - anon_sym_LT_EQ_GT, - STATE(2721), 1, - sym_argument_list, - ACTIONS(5019), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5151), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5290), 2, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [72942] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5391), 19, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5310), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5292), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4993), 7, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(4991), 27, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5389), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -296203,18 +368153,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_or, - anon_sym_and, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [77501] = 3, + [73001] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4973), 20, + ACTIONS(5359), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -296224,25 +368177,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4971), 29, + anon_sym_DASH_GT, + ACTIONS(5357), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -296251,6 +368205,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -296263,12 +368218,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [77558] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [73060] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4969), 20, + ACTIONS(5202), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -296278,25 +368233,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, anon_sym_DOT, - ACTIONS(4967), 29, + anon_sym_DASH_GT, + ACTIONS(5200), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -296305,24 +368259,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [77615] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [73119] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4909), 20, + ACTIONS(5198), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -296332,25 +368289,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, anon_sym_DOT, - ACTIONS(4907), 29, + anon_sym_DASH_GT, + ACTIONS(5196), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -296359,24 +368315,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [77672] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [73178] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4105), 20, + ACTIONS(5194), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -296386,25 +368345,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, anon_sym_DOT, - ACTIONS(4107), 29, + anon_sym_DASH_GT, + ACTIONS(5192), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -296413,24 +368371,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [77729] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [73237] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4901), 20, + ACTIONS(5190), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -296440,25 +368401,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, anon_sym_DOT, - ACTIONS(4899), 29, + anon_sym_DASH_GT, + ACTIONS(5188), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -296467,58 +368427,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [77786] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4445), 12, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(4443), 37, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, @@ -296528,105 +368440,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [77843] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [73296] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4425), 12, + ACTIONS(5713), 19, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_const, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4423), 37, + anon_sym_DASH_GT, + ACTIONS(5711), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACE, + anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [77900] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [73355] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4606), 12, + ACTIONS(5182), 16, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_const, + anon_sym_EQ, anon_sym_DOT, - ACTIONS(4604), 37, + anon_sym_DASH_GT, + ACTIONS(5180), 35, 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_LT_LT, + anon_sym_GT_EQ, anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, @@ -296636,51 +368552,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [77957] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [73414] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4324), 12, + ACTIONS(5254), 16, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_const, + anon_sym_EQ, anon_sym_DOT, - ACTIONS(4322), 37, + anon_sym_DASH_GT, + ACTIONS(5252), 35, 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_LT_LT, + anon_sym_GT_EQ, anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, @@ -296690,17 +368608,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [78014] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [73473] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4727), 20, + ACTIONS(5250), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -296710,25 +368625,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, anon_sym_DOT, - ACTIONS(4729), 29, + anon_sym_DASH_GT, + ACTIONS(5248), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -296737,58 +368651,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [78071] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4371), 12, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(4369), 37, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, @@ -296798,51 +368664,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [78128] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [73532] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4324), 12, + ACTIONS(2097), 1, + anon_sym_LBRACE, + ACTIONS(5361), 1, + anon_sym_LPAREN2, + STATE(3556), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5174), 16, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_const, + anon_sym_EQ, anon_sym_DOT, - ACTIONS(4322), 37, + anon_sym_DASH_GT, + ACTIONS(5172), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACE, + anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, @@ -296852,216 +368725,163 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [78185] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [73597] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4598), 12, + ACTIONS(5563), 19, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_const, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4596), 37, + anon_sym_DASH_GT, + ACTIONS(5561), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACE, + anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [78242] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [73656] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4415), 12, + ACTIONS(4546), 23, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(4413), 37, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + anon_sym_decltype, + anon_sym_typename, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + ACTIONS(4548), 28, anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [78299] = 6, - ACTIONS(3), 1, - sym_comment, - STATE(2963), 3, - sym_string_literal, - sym_raw_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(2440), 5, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(2454), 5, anon_sym_R_DQUOTE, anon_sym_LR_DQUOTE, anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - ACTIONS(3936), 18, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - ACTIONS(3938), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_literal_suffix, - [78362] = 3, + [73715] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4395), 12, + ACTIONS(5178), 16, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_const, + anon_sym_EQ, anon_sym_DOT, - ACTIONS(4393), 37, + anon_sym_DASH_GT, + ACTIONS(5176), 35, 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_LT_LT, + anon_sym_GT_EQ, anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, @@ -297071,51 +368891,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [78419] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [73774] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4363), 12, + ACTIONS(5337), 16, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_const, + anon_sym_EQ, anon_sym_DOT, - ACTIONS(4361), 37, + anon_sym_DASH_GT, + ACTIONS(5335), 35, 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_LT_LT, + anon_sym_GT_EQ, anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, @@ -297125,93 +368947,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [78476] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4166), 1, - anon_sym_LPAREN2, - ACTIONS(4798), 1, - anon_sym_LBRACK, - ACTIONS(4861), 1, - anon_sym_EQ, - ACTIONS(5258), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5260), 1, - anon_sym_AMP_AMP, - ACTIONS(5262), 1, - anon_sym_PIPE, - ACTIONS(5266), 1, - anon_sym_AMP, - ACTIONS(5272), 1, - anon_sym_GT_EQ, - ACTIONS(5276), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5278), 1, - anon_sym_or, - ACTIONS(5280), 1, - anon_sym_and, - ACTIONS(5282), 1, - anon_sym_bitor, - ACTIONS(5284), 1, - anon_sym_bitand, - ACTIONS(5286), 1, - anon_sym_DOT, - ACTIONS(5288), 1, - anon_sym_DASH_GT, - STATE(2475), 1, - sym_argument_list, - ACTIONS(4812), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5254), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5264), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5274), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5256), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5268), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5270), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(4859), 16, - anon_sym_DOT_DOT_DOT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - [78577] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [73833] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4877), 20, + ACTIONS(5569), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -297221,25 +368964,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4875), 29, + anon_sym_DASH_GT, + ACTIONS(5567), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -297248,6 +368992,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -297260,53 +369005,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [78634] = 12, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [73892] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, - anon_sym_LPAREN2, - ACTIONS(4798), 1, - anon_sym_LBRACK, - ACTIONS(5286), 1, - anon_sym_DOT, - ACTIONS(5288), 1, - anon_sym_DASH_GT, - STATE(2475), 1, - sym_argument_list, - ACTIONS(4812), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5254), 2, + ACTIONS(5155), 16, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5274), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5256), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4883), 10, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - ACTIONS(4881), 25, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5153), 35, anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -297318,37 +369050,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - [78709] = 11, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [73951] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(4531), 23, + anon_sym_DASH, + anon_sym_PLUS, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + anon_sym_decltype, + anon_sym_typename, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + ACTIONS(4533), 28, anon_sym_LPAREN2, - ACTIONS(4798), 1, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, - ACTIONS(5286), 1, - anon_sym_DOT, - ACTIONS(5288), 1, - anon_sym_DASH_GT, - STATE(2475), 1, - sym_argument_list, - ACTIONS(4812), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5254), 2, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [74010] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5611), 19, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5256), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4883), 12, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -297361,14 +369140,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(4881), 25, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5609), 32, anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_COLON, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -297387,12 +369171,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - [78782] = 4, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [74069] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4125), 1, - sym_literal_suffix, - ACTIONS(3803), 22, + ACTIONS(5345), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -297407,15 +369193,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3795), 26, + ACTIONS(5343), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -297425,6 +369205,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -297438,21 +369219,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [78841] = 6, + [74128] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3988), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(4653), 1, - anon_sym_LBRACK, - ACTIONS(4647), 2, - anon_sym_RPAREN, - anon_sym_LPAREN2, - ACTIONS(3803), 16, + ACTIONS(5341), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -297469,14 +369251,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3795), 29, + ACTIONS(5339), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -297497,69 +369283,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [78904] = 23, + [74187] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4257), 1, + ACTIONS(4527), 23, + anon_sym_DASH, + anon_sym_PLUS, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + anon_sym_decltype, + anon_sym_typename, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + ACTIONS(4529), 28, anon_sym_LPAREN2, - ACTIONS(4977), 1, - anon_sym_EQ, - ACTIONS(5017), 1, - anon_sym_LBRACK, - ACTIONS(5137), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5298), 1, - anon_sym_PIPE, - ACTIONS(5300), 1, - anon_sym_CARET, - ACTIONS(5302), 1, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP, - ACTIONS(5308), 1, - anon_sym_GT_EQ, - ACTIONS(5312), 1, - anon_sym_bitor, - ACTIONS(5314), 1, - anon_sym_xor, - ACTIONS(5316), 1, - anon_sym_bitand, - STATE(2721), 1, - sym_argument_list, - ACTIONS(5019), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5151), 2, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5290), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5294), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5296), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5310), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5292), 3, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [74246] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5768), 19, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(5304), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5306), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(4975), 16, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5766), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -297571,21 +369388,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [79001] = 7, + [74305] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4257), 1, + ACTIONS(4523), 23, + anon_sym_DASH, + anon_sym_PLUS, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + anon_sym_decltype, + anon_sym_typename, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + ACTIONS(4525), 28, anon_sym_LPAREN2, - ACTIONS(5017), 1, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, - STATE(2721), 1, - sym_argument_list, - ACTIONS(5019), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4985), 14, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [74364] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5333), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -297600,15 +369473,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(4983), 30, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5331), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -297629,12 +369507,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [79066] = 3, + [74423] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4036), 20, + ACTIONS(5593), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -297644,25 +369524,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4038), 29, + anon_sym_DASH_GT, + ACTIONS(2960), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -297671,6 +369552,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -297683,12 +369565,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [79123] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [74482] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4091), 20, + ACTIONS(5615), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -297698,25 +369580,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4093), 29, + anon_sym_DASH_GT, + ACTIONS(5613), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -297725,6 +369608,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -297737,24 +369621,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [79180] = 8, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [74541] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4257), 1, - anon_sym_LPAREN2, - ACTIONS(5017), 1, - anon_sym_LBRACK, - STATE(2721), 1, - sym_argument_list, - ACTIONS(5019), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5151), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4989), 14, + ACTIONS(5744), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -297769,15 +369641,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(4987), 28, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5742), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -297789,62 +369668,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [79247] = 13, + [74600] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, - anon_sym_LPAREN2, - ACTIONS(4798), 1, - anon_sym_LBRACK, - ACTIONS(5276), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5286), 1, - anon_sym_DOT, - ACTIONS(5288), 1, - anon_sym_DASH_GT, - STATE(2475), 1, - sym_argument_list, - ACTIONS(4812), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5254), 2, + ACTIONS(5748), 19, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5274), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5256), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4883), 10, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(4881), 24, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5746), 32, anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_COLON, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -297859,13 +369727,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, + anon_sym_LT_EQ_GT, anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - [79324] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [74659] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4933), 20, + ACTIONS(5709), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -297875,25 +369748,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4931), 29, + anon_sym_DASH_GT, + ACTIONS(5707), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -297902,6 +369776,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -297914,174 +369789,230 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [79381] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [74718] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4594), 12, + ACTIONS(5752), 19, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_const, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4592), 37, + anon_sym_DASH_GT, + ACTIONS(5750), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACE, + anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [79438] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [74777] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4579), 12, + ACTIONS(5760), 19, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_const, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4577), 37, + anon_sym_DASH_GT, + ACTIONS(5758), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACE, + anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [79495] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [74836] = 50, ACTIONS(3), 1, sym_comment, - ACTIONS(4704), 23, + ACTIONS(5088), 1, + anon_sym_LPAREN2, + ACTIONS(5784), 1, + anon_sym_LBRACK, + ACTIONS(5836), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5838), 1, + anon_sym_COMMA, + ACTIONS(5842), 1, anon_sym_DASH, + ACTIONS(5844), 1, anon_sym_PLUS, + ACTIONS(5846), 1, anon_sym_STAR, + ACTIONS(5848), 1, anon_sym_SLASH, + ACTIONS(5850), 1, anon_sym_PERCENT, + ACTIONS(5852), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5854), 1, + anon_sym_AMP_AMP, + ACTIONS(5856), 1, anon_sym_PIPE, + ACTIONS(5858), 1, anon_sym_CARET, + ACTIONS(5860), 1, anon_sym_AMP, + ACTIONS(5862), 1, + anon_sym_EQ_EQ, + ACTIONS(5864), 1, + anon_sym_BANG_EQ, + ACTIONS(5866), 1, anon_sym_GT, + ACTIONS(5868), 1, + anon_sym_GT_EQ, + ACTIONS(5870), 1, anon_sym_LT_EQ, + ACTIONS(5872), 1, anon_sym_LT, + ACTIONS(5874), 1, anon_sym_LT_LT, + ACTIONS(5876), 1, anon_sym_GT_GT, + ACTIONS(5878), 1, anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - anon_sym_DASH_GT, - sym_literal_suffix, - ACTIONS(4702), 26, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, + ACTIONS(5880), 1, anon_sym_QMARK, + ACTIONS(5882), 1, anon_sym_STAR_EQ, + ACTIONS(5884), 1, anon_sym_SLASH_EQ, + ACTIONS(5886), 1, anon_sym_PERCENT_EQ, + ACTIONS(5888), 1, anon_sym_PLUS_EQ, + ACTIONS(5890), 1, anon_sym_DASH_EQ, + ACTIONS(5892), 1, anon_sym_LT_LT_EQ, + ACTIONS(5894), 1, anon_sym_GT_GT_EQ, + ACTIONS(5896), 1, anon_sym_AMP_EQ, + ACTIONS(5898), 1, anon_sym_CARET_EQ, + ACTIONS(5900), 1, anon_sym_PIPE_EQ, + ACTIONS(5902), 1, anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + ACTIONS(5904), 1, + anon_sym_or, + ACTIONS(5906), 1, + anon_sym_and, + ACTIONS(5908), 1, + anon_sym_bitor, + ACTIONS(5910), 1, + anon_sym_xor, + ACTIONS(5912), 1, + anon_sym_bitand, + ACTIONS(5914), 1, + anon_sym_not_eq, + ACTIONS(5918), 1, anon_sym_DOT_STAR, + ACTIONS(5920), 1, anon_sym_DASH_GT_STAR, - [79552] = 3, + ACTIONS(5948), 1, + anon_sym_RPAREN, + STATE(1821), 1, + sym__binary_fold_operator, + STATE(3343), 1, + sym_argument_list, + STATE(7383), 1, + sym__fold_operator, + ACTIONS(5786), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5916), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + [74989] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4929), 20, + ACTIONS(4555), 2, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + ACTIONS(4557), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -298102,7 +370033,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4927), 29, + ACTIONS(4562), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -298132,10 +370063,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_GT, anon_sym_GT2, - [79609] = 3, + [75050] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4068), 16, + ACTIONS(4650), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5369), 1, + anon_sym_LPAREN2, + ACTIONS(5375), 1, + anon_sym_LBRACK, + ACTIONS(4465), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -298150,19 +370087,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4070), 32, + ACTIONS(4457), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -298174,21 +370112,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [79665] = 3, + anon_sym_DASH_GT, + [75115] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4887), 16, + ACTIONS(5321), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -298205,7 +370142,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4885), 32, + ACTIONS(5319), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -298215,6 +370152,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -298236,12 +370174,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [79721] = 3, + [75174] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4943), 16, + ACTIONS(5453), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -298256,9 +370196,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4941), 32, + ACTIONS(5451), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -298280,53 +370223,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [79777] = 5, + [75233] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5343), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5345), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(4917), 16, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, + ACTIONS(4476), 1, + anon_sym_COLON_COLON, + ACTIONS(4481), 1, + anon_sym_LBRACE, + ACTIONS(5399), 1, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(5950), 1, anon_sym_EQ, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4919), 28, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, + STATE(3864), 1, + sym_template_argument_list, + ACTIONS(5952), 13, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -298337,19 +370258,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + ACTIONS(4457), 16, + anon_sym_DOT_DOT_DOT, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [79837] = 3, + anon_sym_DASH_GT, + ACTIONS(4465), 17, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + [75304] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4937), 16, + ACTIONS(5651), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -298364,9 +370314,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4935), 32, + ACTIONS(5649), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -298388,21 +370341,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [79893] = 3, + [75363] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4981), 16, + ACTIONS(5214), 1, + anon_sym_LBRACK, + STATE(3360), 1, + sym_new_declarator, + ACTIONS(5387), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -298412,24 +370369,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4979), 32, + ACTIONS(5385), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -298437,25 +370396,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [79949] = 3, + anon_sym_DASH_GT, + anon_sym_GT2, + [75426] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4973), 16, + ACTIONS(4710), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -298470,9 +370428,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4971), 32, + ACTIONS(4712), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -298494,21 +370455,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [80005] = 3, + [75485] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4969), 16, + ACTIONS(5540), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -298523,9 +370484,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4967), 32, + ACTIONS(5538), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -298547,21 +370511,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [80061] = 3, + [75544] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4042), 16, + ACTIONS(4702), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -298576,9 +370540,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4044), 32, + ACTIONS(4704), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -298600,129 +370567,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [80117] = 3, + [75603] = 50, ACTIONS(3), 1, sym_comment, - ACTIONS(3803), 16, + ACTIONS(5088), 1, + anon_sym_LPAREN2, + ACTIONS(5784), 1, + anon_sym_LBRACK, + ACTIONS(5836), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5838), 1, + anon_sym_COMMA, + ACTIONS(5842), 1, anon_sym_DASH, + ACTIONS(5844), 1, anon_sym_PLUS, + ACTIONS(5846), 1, anon_sym_STAR, + ACTIONS(5848), 1, anon_sym_SLASH, + ACTIONS(5850), 1, anon_sym_PERCENT, + ACTIONS(5852), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5854), 1, + anon_sym_AMP_AMP, + ACTIONS(5856), 1, anon_sym_PIPE, + ACTIONS(5858), 1, anon_sym_CARET, + ACTIONS(5860), 1, anon_sym_AMP, + ACTIONS(5862), 1, + anon_sym_EQ_EQ, + ACTIONS(5864), 1, + anon_sym_BANG_EQ, + ACTIONS(5866), 1, anon_sym_GT, + ACTIONS(5868), 1, + anon_sym_GT_EQ, + ACTIONS(5870), 1, anon_sym_LT_EQ, + ACTIONS(5872), 1, anon_sym_LT, + ACTIONS(5874), 1, anon_sym_LT_LT, + ACTIONS(5876), 1, anon_sym_GT_GT, + ACTIONS(5878), 1, anon_sym_EQ, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3795), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, + ACTIONS(5880), 1, anon_sym_QMARK, + ACTIONS(5882), 1, anon_sym_STAR_EQ, + ACTIONS(5884), 1, anon_sym_SLASH_EQ, + ACTIONS(5886), 1, anon_sym_PERCENT_EQ, + ACTIONS(5888), 1, anon_sym_PLUS_EQ, + ACTIONS(5890), 1, anon_sym_DASH_EQ, + ACTIONS(5892), 1, anon_sym_LT_LT_EQ, + ACTIONS(5894), 1, anon_sym_GT_GT_EQ, + ACTIONS(5896), 1, anon_sym_AMP_EQ, + ACTIONS(5898), 1, anon_sym_CARET_EQ, + ACTIONS(5900), 1, anon_sym_PIPE_EQ, + ACTIONS(5902), 1, anon_sym_LT_EQ_GT, + ACTIONS(5904), 1, anon_sym_or, + ACTIONS(5906), 1, anon_sym_and, + ACTIONS(5908), 1, anon_sym_bitor, + ACTIONS(5910), 1, anon_sym_xor, + ACTIONS(5912), 1, anon_sym_bitand, + ACTIONS(5914), 1, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + ACTIONS(5918), 1, anon_sym_DOT_STAR, + ACTIONS(5920), 1, anon_sym_DASH_GT_STAR, - [80173] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5067), 1, - anon_sym_EQ, - ACTIONS(5069), 13, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - ACTIONS(3795), 17, - anon_sym_DOT_DOT_DOT, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, + ACTIONS(5954), 1, + anon_sym_RPAREN, + STATE(1821), 1, + sym__binary_fold_operator, + STATE(3343), 1, + sym_argument_list, + STATE(7383), 1, + sym__fold_operator, + ACTIONS(5786), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5916), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - ACTIONS(3803), 17, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - [80233] = 3, + [75756] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4105), 16, + ACTIONS(5659), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -298737,9 +370699,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4107), 32, + ACTIONS(5657), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -298761,21 +370726,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [80289] = 3, + [75815] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4706), 16, + ACTIONS(5573), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -298790,9 +370755,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4708), 32, + ACTIONS(5571), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -298814,21 +370782,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [80345] = 3, + [75874] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4072), 16, + ACTIONS(5186), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -298845,7 +370813,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4074), 32, + ACTIONS(5184), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -298855,6 +370823,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -298876,12 +370845,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [80401] = 3, + [75933] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1729), 16, + ACTIONS(5619), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -298896,9 +370867,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1727), 32, + ACTIONS(5617), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -298920,24 +370894,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [80457] = 4, + [75992] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5345), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(4822), 16, + ACTIONS(5673), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -298952,14 +370923,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4824), 30, + ACTIONS(5671), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -298975,20 +370950,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [80515] = 3, + [76051] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4032), 16, + ACTIONS(4686), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -299003,9 +370979,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4034), 32, + ACTIONS(4688), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -299027,21 +371006,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [80571] = 3, + [76110] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4752), 16, + ACTIONS(4650), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5369), 1, + anon_sym_LPAREN2, + ACTIONS(5375), 1, + anon_sym_LBRACK, + ACTIONS(4465), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -299056,72 +371041,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4754), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [80627] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4095), 16, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4097), 32, + ACTIONS(4457), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -299133,21 +371066,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [80683] = 3, + anon_sym_DASH_GT, + [76175] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4046), 16, + ACTIONS(4698), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -299162,9 +371094,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4048), 32, + ACTIONS(4700), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -299186,21 +371121,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [80739] = 3, + [76234] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 16, + ACTIONS(5717), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -299215,9 +371150,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(1735), 32, + ACTIONS(5715), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -299239,21 +371177,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [80795] = 3, + [76293] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4036), 16, + ACTIONS(5577), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -299268,9 +371206,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4038), 32, + ACTIONS(5575), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -299292,74 +371233,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [80851] = 3, + [76352] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4046), 16, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4048), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(5956), 1, anon_sym_PIPE_PIPE, + ACTIONS(5958), 1, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, + ACTIONS(5960), 1, anon_sym_or, + ACTIONS(5962), 1, anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [80907] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4046), 16, + ACTIONS(5299), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -299374,15 +371270,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4048), 32, + ACTIONS(5301), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -299398,21 +371293,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [80963] = 3, + [76419] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4091), 16, + ACTIONS(4722), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -299427,9 +371322,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4093), 32, + ACTIONS(4724), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -299451,21 +371349,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [81019] = 3, + [76478] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4933), 16, + ACTIONS(2097), 1, + anon_sym_LBRACE, + ACTIONS(5361), 1, + anon_sym_LPAREN2, + STATE(3571), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5222), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -299482,11 +371387,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4931), 32, + ACTIONS(5220), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -299515,10 +371419,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [81075] = 3, + [76543] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4929), 16, + ACTIONS(5756), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -299533,9 +371437,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4927), 32, + ACTIONS(5754), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -299557,74 +371464,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [81131] = 3, + [76602] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4939), 16, + ACTIONS(5964), 23, anon_sym_DASH, anon_sym_PLUS, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + anon_sym_decltype, + anon_sym_typename, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + ACTIONS(5966), 28, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2652), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [81187] = 3, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [76661] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5001), 16, + ACTIONS(5701), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -299639,9 +371549,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4999), 32, + ACTIONS(5699), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -299663,21 +371576,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [81243] = 3, + [76720] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4770), 16, + ACTIONS(5724), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -299692,9 +371605,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4768), 32, + ACTIONS(5722), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -299716,21 +371632,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [81299] = 3, + [76779] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4727), 16, + ACTIONS(5432), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -299745,9 +371661,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4729), 32, + ACTIONS(5430), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -299769,255 +371688,227 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [81355] = 3, + [76838] = 50, ACTIONS(3), 1, sym_comment, - ACTIONS(4965), 16, + ACTIONS(5088), 1, + anon_sym_LPAREN2, + ACTIONS(5784), 1, + anon_sym_LBRACK, + ACTIONS(5836), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5842), 1, anon_sym_DASH, + ACTIONS(5844), 1, anon_sym_PLUS, + ACTIONS(5846), 1, anon_sym_STAR, + ACTIONS(5848), 1, anon_sym_SLASH, + ACTIONS(5850), 1, anon_sym_PERCENT, + ACTIONS(5852), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5854), 1, + anon_sym_AMP_AMP, + ACTIONS(5856), 1, anon_sym_PIPE, + ACTIONS(5858), 1, anon_sym_CARET, + ACTIONS(5860), 1, anon_sym_AMP, + ACTIONS(5862), 1, + anon_sym_EQ_EQ, + ACTIONS(5864), 1, + anon_sym_BANG_EQ, + ACTIONS(5866), 1, anon_sym_GT, + ACTIONS(5868), 1, + anon_sym_GT_EQ, + ACTIONS(5870), 1, anon_sym_LT_EQ, + ACTIONS(5872), 1, anon_sym_LT, + ACTIONS(5874), 1, anon_sym_LT_LT, + ACTIONS(5876), 1, anon_sym_GT_GT, + ACTIONS(5878), 1, anon_sym_EQ, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4963), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, + ACTIONS(5880), 1, anon_sym_QMARK, + ACTIONS(5882), 1, anon_sym_STAR_EQ, + ACTIONS(5884), 1, anon_sym_SLASH_EQ, + ACTIONS(5886), 1, anon_sym_PERCENT_EQ, + ACTIONS(5888), 1, anon_sym_PLUS_EQ, + ACTIONS(5890), 1, anon_sym_DASH_EQ, + ACTIONS(5892), 1, anon_sym_LT_LT_EQ, + ACTIONS(5894), 1, anon_sym_GT_GT_EQ, + ACTIONS(5896), 1, anon_sym_AMP_EQ, + ACTIONS(5898), 1, anon_sym_CARET_EQ, + ACTIONS(5900), 1, anon_sym_PIPE_EQ, + ACTIONS(5902), 1, anon_sym_LT_EQ_GT, + ACTIONS(5904), 1, anon_sym_or, + ACTIONS(5906), 1, anon_sym_and, + ACTIONS(5908), 1, anon_sym_bitor, + ACTIONS(5910), 1, anon_sym_xor, + ACTIONS(5912), 1, anon_sym_bitand, + ACTIONS(5914), 1, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + ACTIONS(5918), 1, anon_sym_DOT_STAR, + ACTIONS(5920), 1, anon_sym_DASH_GT_STAR, - [81411] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4913), 16, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4911), 32, - anon_sym_DOT_DOT_DOT, + ACTIONS(5936), 1, anon_sym_COMMA, + ACTIONS(5968), 1, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + STATE(1821), 1, + sym__binary_fold_operator, + STATE(3343), 1, + sym_argument_list, + STATE(7383), 1, + sym__fold_operator, + ACTIONS(5786), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5916), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [81467] = 25, + [76991] = 50, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1521), 1, - anon_sym_operator, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(1683), 1, - anon_sym_TILDE, - ACTIONS(3226), 1, + ACTIONS(5088), 1, anon_sym_LPAREN2, - ACTIONS(3228), 1, - anon_sym_STAR, - ACTIONS(3230), 1, - anon_sym_AMP_AMP, - ACTIONS(3232), 1, - anon_sym_AMP, - ACTIONS(4206), 1, - sym_identifier, - ACTIONS(4314), 1, + ACTIONS(5784), 1, anon_sym_LBRACK, - ACTIONS(4377), 1, - anon_sym_COLON_COLON, - ACTIONS(5322), 1, - anon_sym_RPAREN, - STATE(3482), 1, - sym_parameter_list, - STATE(4605), 1, - sym__scope_resolution, - STATE(4765), 1, - sym__function_declarator_seq, - STATE(4898), 1, - sym__abstract_declarator, - STATE(4937), 1, - sym__declarator, - STATE(6104), 1, - sym_ms_based_modifier, - STATE(4104), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(6159), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(4764), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(2724), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(4918), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [81567] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4064), 16, + ACTIONS(5836), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5838), 1, + anon_sym_COMMA, + ACTIONS(5842), 1, anon_sym_DASH, + ACTIONS(5844), 1, anon_sym_PLUS, + ACTIONS(5846), 1, anon_sym_STAR, + ACTIONS(5848), 1, anon_sym_SLASH, + ACTIONS(5850), 1, anon_sym_PERCENT, + ACTIONS(5852), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5854), 1, + anon_sym_AMP_AMP, + ACTIONS(5856), 1, anon_sym_PIPE, + ACTIONS(5858), 1, anon_sym_CARET, + ACTIONS(5860), 1, anon_sym_AMP, + ACTIONS(5862), 1, + anon_sym_EQ_EQ, + ACTIONS(5864), 1, + anon_sym_BANG_EQ, + ACTIONS(5866), 1, anon_sym_GT, + ACTIONS(5868), 1, + anon_sym_GT_EQ, + ACTIONS(5870), 1, anon_sym_LT_EQ, + ACTIONS(5872), 1, anon_sym_LT, + ACTIONS(5874), 1, anon_sym_LT_LT, + ACTIONS(5876), 1, anon_sym_GT_GT, + ACTIONS(5878), 1, anon_sym_EQ, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4066), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, + ACTIONS(5880), 1, anon_sym_QMARK, + ACTIONS(5882), 1, anon_sym_STAR_EQ, + ACTIONS(5884), 1, anon_sym_SLASH_EQ, + ACTIONS(5886), 1, anon_sym_PERCENT_EQ, + ACTIONS(5888), 1, anon_sym_PLUS_EQ, + ACTIONS(5890), 1, anon_sym_DASH_EQ, + ACTIONS(5892), 1, anon_sym_LT_LT_EQ, + ACTIONS(5894), 1, anon_sym_GT_GT_EQ, + ACTIONS(5896), 1, anon_sym_AMP_EQ, + ACTIONS(5898), 1, anon_sym_CARET_EQ, + ACTIONS(5900), 1, anon_sym_PIPE_EQ, + ACTIONS(5902), 1, anon_sym_LT_EQ_GT, + ACTIONS(5904), 1, anon_sym_or, + ACTIONS(5906), 1, anon_sym_and, + ACTIONS(5908), 1, anon_sym_bitor, + ACTIONS(5910), 1, anon_sym_xor, + ACTIONS(5912), 1, anon_sym_bitand, + ACTIONS(5914), 1, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + ACTIONS(5918), 1, anon_sym_DOT_STAR, + ACTIONS(5920), 1, anon_sym_DASH_GT_STAR, - [81623] = 3, + ACTIONS(5970), 1, + anon_sym_RPAREN, + STATE(1821), 1, + sym__binary_fold_operator, + STATE(3343), 1, + sym_argument_list, + STATE(7383), 1, + sym__fold_operator, + ACTIONS(5786), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5916), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + [77144] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5009), 16, + ACTIONS(4706), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -300032,9 +371923,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5007), 32, + ACTIONS(4708), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -300056,21 +371950,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [81679] = 3, + [77203] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4905), 16, + ACTIONS(5155), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -300087,7 +371981,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4903), 32, + ACTIONS(5153), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -300097,6 +371991,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -300118,12 +372013,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [81735] = 3, + [77262] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4997), 16, + ACTIONS(5728), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -300138,9 +372035,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4995), 32, + ACTIONS(5726), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -300162,21 +372062,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [81791] = 3, + [77321] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4060), 16, + ACTIONS(4718), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -300191,9 +372091,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4062), 32, + ACTIONS(4720), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -300215,21 +372118,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [81847] = 3, + [77380] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4087), 16, + ACTIONS(5958), 1, + anon_sym_AMP_AMP, + ACTIONS(5962), 1, + anon_sym_and, + ACTIONS(5204), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -300244,15 +372151,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4089), 32, + ACTIONS(5206), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -300268,21 +372176,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [81903] = 3, + [77443] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4949), 16, + ACTIONS(5597), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -300297,9 +372205,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4947), 32, + ACTIONS(5595), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -300321,21 +372232,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [81959] = 3, + [77502] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4076), 16, + ACTIONS(5266), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -300352,7 +372263,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4078), 32, + ACTIONS(5264), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -300362,6 +372273,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -300383,12 +372295,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [82015] = 3, + [77561] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5972), 23, + anon_sym_DASH, + anon_sym_PLUS, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + anon_sym_decltype, + anon_sym_typename, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + ACTIONS(5974), 28, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [77620] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3866), 18, + ACTIONS(4734), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -300407,8 +372377,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(3868), 30, + anon_sym_DASH_GT, + ACTIONS(4736), 32, anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -300416,7 +372389,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -300437,11 +372409,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [82071] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [77679] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3902), 18, + ACTIONS(4722), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -300460,8 +372433,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(3904), 30, + anon_sym_DASH_GT, + ACTIONS(4724), 32, anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -300469,7 +372445,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -300490,11 +372465,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [82127] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [77738] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3892), 18, + ACTIONS(4722), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -300513,8 +372489,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(3894), 30, + anon_sym_DASH_GT, + ACTIONS(4724), 32, anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -300522,7 +372501,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -300543,11 +372521,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [82183] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [77797] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3896), 18, + ACTIONS(5234), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -300562,20 +372541,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, anon_sym_DOT, - ACTIONS(3898), 30, + anon_sym_DASH_GT, + ACTIONS(5232), 35, anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -300587,20 +372566,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [82239] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [77856] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3862), 18, + ACTIONS(5238), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -300615,20 +372597,154 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5236), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [77915] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(45), 1, + anon_sym___based, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1931), 1, + anon_sym_operator, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(2562), 1, + anon_sym_TILDE, + ACTIONS(4014), 1, + anon_sym_LPAREN2, + ACTIONS(4016), 1, + anon_sym_STAR, + ACTIONS(4018), 1, + anon_sym_AMP_AMP, + ACTIONS(4020), 1, + anon_sym_AMP, + ACTIONS(4823), 1, + sym_identifier, + ACTIONS(5014), 1, + anon_sym_LBRACK, + ACTIONS(5072), 1, + anon_sym_COLON_COLON, + ACTIONS(5782), 1, + anon_sym_RPAREN, + STATE(3900), 1, + sym_parameter_list, + STATE(5352), 1, + sym__scope_resolution, + STATE(5457), 1, + sym__function_declarator_seq, + STATE(5608), 1, + sym__abstract_declarator, + STATE(5613), 1, + sym__declarator, + STATE(7654), 1, + sym_ms_based_modifier, + STATE(4706), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(7638), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(5452), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(2871), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + STATE(5640), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [78018] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5242), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, anon_sym_DOT, - ACTIONS(3864), 30, + anon_sym_DASH_GT, + ACTIONS(5240), 35, anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -300640,20 +372756,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [82295] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [78077] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4865), 16, + ACTIONS(5246), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -300670,7 +372789,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4863), 32, + ACTIONS(5244), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -300680,6 +372799,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -300701,12 +372821,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [82351] = 3, + [78136] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3858), 18, + ACTIONS(5597), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -300725,8 +372847,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(3860), 30, + anon_sym_DASH_GT, + ACTIONS(5595), 32, anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -300734,7 +372859,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -300755,11 +372879,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [78195] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2097), 1, + anon_sym_LBRACE, + ACTIONS(5361), 1, + anon_sym_LPAREN2, + STATE(3596), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5329), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, anon_sym_DASH_GT, - [82407] = 3, + ACTIONS(5327), 31, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [78260] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3884), 18, + ACTIONS(4730), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -300778,8 +372962,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(3886), 30, + anon_sym_DASH_GT, + ACTIONS(4732), 32, anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -300787,7 +372974,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -300808,198 +372994,354 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [82463] = 7, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [78319] = 50, ACTIONS(3), 1, sym_comment, - ACTIONS(3870), 1, - anon_sym_const, - ACTIONS(3879), 1, - anon_sym_AMP, - ACTIONS(3872), 7, + ACTIONS(5088), 1, + anon_sym_LPAREN2, + ACTIONS(5784), 1, + anon_sym_LBRACK, + ACTIONS(5836), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(5838), 1, anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(5842), 1, + anon_sym_DASH, + ACTIONS(5844), 1, + anon_sym_PLUS, + ACTIONS(5846), 1, anon_sym_STAR, + ACTIONS(5848), 1, + anon_sym_SLASH, + ACTIONS(5850), 1, + anon_sym_PERCENT, + ACTIONS(5852), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5854), 1, anon_sym_AMP_AMP, + ACTIONS(5856), 1, + anon_sym_PIPE, + ACTIONS(5858), 1, + anon_sym_CARET, + ACTIONS(5860), 1, + anon_sym_AMP, + ACTIONS(5862), 1, + anon_sym_EQ_EQ, + ACTIONS(5864), 1, + anon_sym_BANG_EQ, + ACTIONS(5866), 1, + anon_sym_GT, + ACTIONS(5868), 1, + anon_sym_GT_EQ, + ACTIONS(5870), 1, + anon_sym_LT_EQ, + ACTIONS(5872), 1, + anon_sym_LT, + ACTIONS(5874), 1, + anon_sym_LT_LT, + ACTIONS(5876), 1, + anon_sym_GT_GT, + ACTIONS(5878), 1, + anon_sym_EQ, + ACTIONS(5880), 1, + anon_sym_QMARK, + ACTIONS(5882), 1, + anon_sym_STAR_EQ, + ACTIONS(5884), 1, + anon_sym_SLASH_EQ, + ACTIONS(5886), 1, + anon_sym_PERCENT_EQ, + ACTIONS(5888), 1, + anon_sym_PLUS_EQ, + ACTIONS(5890), 1, + anon_sym_DASH_EQ, + ACTIONS(5892), 1, + anon_sym_LT_LT_EQ, + ACTIONS(5894), 1, + anon_sym_GT_GT_EQ, + ACTIONS(5896), 1, + anon_sym_AMP_EQ, + ACTIONS(5898), 1, + anon_sym_CARET_EQ, + ACTIONS(5900), 1, + anon_sym_PIPE_EQ, + ACTIONS(5902), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5904), 1, + anon_sym_or, + ACTIONS(5906), 1, + anon_sym_and, + ACTIONS(5908), 1, + anon_sym_bitor, + ACTIONS(5910), 1, + anon_sym_xor, + ACTIONS(5912), 1, + anon_sym_bitand, + ACTIONS(5914), 1, + anon_sym_not_eq, + ACTIONS(5918), 1, + anon_sym_DOT_STAR, + ACTIONS(5920), 1, + anon_sym_DASH_GT_STAR, + ACTIONS(5976), 1, + anon_sym_RPAREN, + STATE(1821), 1, + sym__binary_fold_operator, + STATE(3343), 1, + sym_argument_list, + STATE(7383), 1, + sym__fold_operator, + ACTIONS(5786), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5916), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + [78472] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5212), 1, + anon_sym_LPAREN2, + ACTIONS(5982), 1, anon_sym_LBRACK, - anon_sym_GT2, - ACTIONS(3877), 10, + ACTIONS(5986), 1, + anon_sym_DOT, + ACTIONS(5988), 1, + anon_sym_DASH_GT, + STATE(3506), 1, + sym_argument_list, + ACTIONS(5978), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(5984), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5980), 3, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5489), 14, anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(3875), 11, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - ACTIONS(3882), 17, - anon_sym_PERCENT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(5487), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_PIPE_PIPE, - anon_sym_CARET, + anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_GT2, + [78546] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5212), 1, + anon_sym_LPAREN2, + ACTIONS(5982), 1, + anon_sym_LBRACK, + ACTIONS(5986), 1, + anon_sym_DOT, + ACTIONS(5988), 1, + anon_sym_DASH_GT, + STATE(3506), 1, + sym_argument_list, + ACTIONS(5647), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, + ACTIONS(5645), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [82526] = 24, + anon_sym_GT2, + [78614] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1521), 1, - anon_sym_operator, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(1681), 1, - anon_sym_LPAREN2, - ACTIONS(1683), 1, - anon_sym_TILDE, - ACTIONS(4206), 1, - sym_identifier, - ACTIONS(4377), 1, - anon_sym_COLON_COLON, - ACTIONS(5347), 1, + ACTIONS(5457), 20, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - ACTIONS(5349), 1, - anon_sym_AMP_AMP, - ACTIONS(5351), 1, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(5353), 1, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(5455), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, - STATE(4091), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4605), 1, - sym__scope_resolution, - STATE(5071), 1, - sym__declarator, - STATE(6132), 1, - sym_ms_based_modifier, - ACTIONS(2722), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(3085), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(3369), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(2720), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(6159), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(2724), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(4918), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [82623] = 24, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [78672] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, + ACTIONS(45), 1, anon_sym___based, - ACTIONS(996), 1, + ACTIONS(1329), 1, anon_sym_template, - ACTIONS(1521), 1, + ACTIONS(1931), 1, anon_sym_operator, - ACTIONS(1555), 1, + ACTIONS(1973), 1, anon_sym_decltype, - ACTIONS(1681), 1, + ACTIONS(2560), 1, anon_sym_LPAREN2, - ACTIONS(1683), 1, + ACTIONS(2562), 1, anon_sym_TILDE, - ACTIONS(5353), 1, - anon_sym_LBRACK, - ACTIONS(5355), 1, + ACTIONS(5002), 1, sym_identifier, - ACTIONS(5357), 1, + ACTIONS(5012), 1, + anon_sym_COLON_COLON, + ACTIONS(5990), 1, anon_sym_STAR, - ACTIONS(5359), 1, + ACTIONS(5992), 1, anon_sym_AMP_AMP, - ACTIONS(5361), 1, + ACTIONS(5994), 1, anon_sym_AMP, - ACTIONS(5363), 1, - anon_sym_COLON_COLON, - STATE(4091), 1, + ACTIONS(5996), 1, + anon_sym_LBRACK, + STATE(4712), 1, sym_ms_unaligned_ptr_modifier, - STATE(4639), 1, + STATE(5316), 1, sym__scope_resolution, - STATE(4885), 1, + STATE(5584), 1, sym__declarator, - STATE(6010), 1, + STATE(6967), 1, sym_ms_based_modifier, - ACTIONS(2722), 2, + ACTIONS(2869), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(3378), 2, + STATE(3847), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - STATE(4056), 2, + STATE(4580), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - ACTIONS(2720), 3, + ACTIONS(2867), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(6159), 3, + STATE(7638), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - ACTIONS(2724), 8, + ACTIONS(2871), 11, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - STATE(4918), 11, + STATE(5640), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -301011,68 +373353,71 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [82720] = 24, + [78772] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, + ACTIONS(45), 1, anon_sym___based, - ACTIONS(996), 1, + ACTIONS(1329), 1, anon_sym_template, - ACTIONS(1521), 1, + ACTIONS(1931), 1, anon_sym_operator, - ACTIONS(1555), 1, + ACTIONS(1973), 1, anon_sym_decltype, - ACTIONS(1681), 1, + ACTIONS(2560), 1, anon_sym_LPAREN2, - ACTIONS(1683), 1, + ACTIONS(2562), 1, anon_sym_TILDE, - ACTIONS(4206), 1, + ACTIONS(5002), 1, sym_identifier, - ACTIONS(4377), 1, + ACTIONS(5012), 1, anon_sym_COLON_COLON, - ACTIONS(5347), 1, + ACTIONS(5990), 1, anon_sym_STAR, - ACTIONS(5349), 1, + ACTIONS(5992), 1, anon_sym_AMP_AMP, - ACTIONS(5351), 1, + ACTIONS(5994), 1, anon_sym_AMP, - ACTIONS(5353), 1, + ACTIONS(5996), 1, anon_sym_LBRACK, - STATE(4091), 1, + STATE(4712), 1, sym_ms_unaligned_ptr_modifier, - STATE(4605), 1, + STATE(5316), 1, sym__scope_resolution, - STATE(5076), 1, + STATE(5564), 1, sym__declarator, - STATE(6132), 1, + STATE(6967), 1, sym_ms_based_modifier, - ACTIONS(2722), 2, + ACTIONS(2869), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(3083), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(3374), 2, + STATE(3832), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(2720), 3, + STATE(4580), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(2867), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(6159), 3, + STATE(7638), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - ACTIONS(2724), 8, + ACTIONS(2871), 11, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - STATE(4918), 11, + STATE(5640), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -301084,25 +373429,25 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [82817] = 5, + [78872] = 5, ACTIONS(3), 1, sym_comment, - STATE(1819), 1, + STATE(2139), 1, sym_string_literal, - ACTIONS(5369), 5, + ACTIONS(6002), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(5367), 6, + ACTIONS(6000), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(5365), 35, + ACTIONS(5998), 38, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, @@ -301114,65 +373459,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - [82876] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(1818), 1, - sym_string_literal, - ACTIONS(5369), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(5367), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(5365), 35, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -301192,68 +373486,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_typename, anon_sym_template, anon_sym_operator, - [82935] = 24, + [78934] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, + ACTIONS(45), 1, anon_sym___based, - ACTIONS(996), 1, + ACTIONS(1329), 1, anon_sym_template, - ACTIONS(1521), 1, + ACTIONS(1931), 1, anon_sym_operator, - ACTIONS(1555), 1, + ACTIONS(1973), 1, anon_sym_decltype, - ACTIONS(1681), 1, + ACTIONS(2560), 1, anon_sym_LPAREN2, - ACTIONS(1683), 1, + ACTIONS(2562), 1, anon_sym_TILDE, - ACTIONS(4302), 1, - sym_identifier, - ACTIONS(4312), 1, - anon_sym_COLON_COLON, - ACTIONS(5353), 1, + ACTIONS(5996), 1, anon_sym_LBRACK, - ACTIONS(5371), 1, + ACTIONS(6004), 1, + sym_identifier, + ACTIONS(6006), 1, anon_sym_STAR, - ACTIONS(5373), 1, + ACTIONS(6008), 1, anon_sym_AMP_AMP, - ACTIONS(5375), 1, + ACTIONS(6010), 1, anon_sym_AMP, - STATE(4091), 1, + ACTIONS(6012), 1, + anon_sym_COLON_COLON, + STATE(4712), 1, sym_ms_unaligned_ptr_modifier, - STATE(4598), 1, + STATE(5330), 1, sym__scope_resolution, - STATE(4654), 1, + STATE(5613), 1, sym__declarator, - STATE(6066), 1, + STATE(7191), 1, sym_ms_based_modifier, - ACTIONS(2722), 2, + ACTIONS(2869), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(3091), 2, + STATE(3415), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(3373), 2, + STATE(3843), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(2720), 3, + ACTIONS(2867), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(6159), 3, + STATE(7638), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - ACTIONS(2724), 8, + ACTIONS(2871), 11, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - STATE(4918), 11, + STATE(5640), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -301265,68 +373562,71 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [83032] = 24, + [79034] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, + ACTIONS(45), 1, anon_sym___based, - ACTIONS(996), 1, + ACTIONS(1329), 1, anon_sym_template, - ACTIONS(1521), 1, + ACTIONS(1931), 1, anon_sym_operator, - ACTIONS(1555), 1, + ACTIONS(1973), 1, anon_sym_decltype, - ACTIONS(1681), 1, + ACTIONS(2560), 1, anon_sym_LPAREN2, - ACTIONS(1683), 1, + ACTIONS(2562), 1, anon_sym_TILDE, - ACTIONS(4206), 1, + ACTIONS(5002), 1, sym_identifier, - ACTIONS(4377), 1, + ACTIONS(5012), 1, anon_sym_COLON_COLON, - ACTIONS(5347), 1, + ACTIONS(5996), 1, + anon_sym_LBRACK, + ACTIONS(6014), 1, anon_sym_STAR, - ACTIONS(5349), 1, + ACTIONS(6016), 1, anon_sym_AMP_AMP, - ACTIONS(5351), 1, + ACTIONS(6018), 1, anon_sym_AMP, - ACTIONS(5353), 1, - anon_sym_LBRACK, - STATE(4091), 1, + STATE(4712), 1, sym_ms_unaligned_ptr_modifier, - STATE(4605), 1, + STATE(5316), 1, sym__scope_resolution, - STATE(5071), 1, + STATE(5421), 1, sym__declarator, - STATE(6132), 1, + STATE(7713), 1, sym_ms_based_modifier, - ACTIONS(2722), 2, + ACTIONS(2869), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(3369), 2, + STATE(3852), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - STATE(4056), 2, + STATE(4580), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - ACTIONS(2720), 3, + ACTIONS(2867), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(6159), 3, + STATE(7638), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - ACTIONS(2724), 8, + ACTIONS(2871), 11, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - STATE(4918), 11, + STATE(5640), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -301338,68 +373638,71 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [83129] = 24, + [79134] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, + ACTIONS(45), 1, anon_sym___based, - ACTIONS(996), 1, + ACTIONS(1329), 1, anon_sym_template, - ACTIONS(1521), 1, + ACTIONS(1931), 1, anon_sym_operator, - ACTIONS(1555), 1, + ACTIONS(1973), 1, anon_sym_decltype, - ACTIONS(1681), 1, + ACTIONS(2560), 1, anon_sym_LPAREN2, - ACTIONS(1683), 1, + ACTIONS(2562), 1, anon_sym_TILDE, - ACTIONS(4302), 1, + ACTIONS(5002), 1, sym_identifier, - ACTIONS(4312), 1, + ACTIONS(5012), 1, anon_sym_COLON_COLON, - ACTIONS(5353), 1, + ACTIONS(5996), 1, anon_sym_LBRACK, - ACTIONS(5377), 1, + ACTIONS(6014), 1, anon_sym_STAR, - ACTIONS(5379), 1, + ACTIONS(6016), 1, anon_sym_AMP_AMP, - ACTIONS(5381), 1, + ACTIONS(6018), 1, anon_sym_AMP, - STATE(4091), 1, + STATE(4712), 1, sym_ms_unaligned_ptr_modifier, - STATE(4598), 1, + STATE(5316), 1, sym__scope_resolution, - STATE(4867), 1, + STATE(5445), 1, sym__declarator, - STATE(6072), 1, + STATE(7713), 1, sym_ms_based_modifier, - ACTIONS(2722), 2, + ACTIONS(2869), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(3102), 2, + STATE(3365), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(3364), 2, + STATE(3844), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(2720), 3, + ACTIONS(2867), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(6159), 3, + STATE(7638), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - ACTIONS(2724), 8, + ACTIONS(2871), 11, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - STATE(4918), 11, + STATE(5640), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -301411,89 +373714,342 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [83226] = 24, + [79234] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1521), 1, - anon_sym_operator, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(1681), 1, + STATE(3367), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6020), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(4787), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(1683), 1, anon_sym_TILDE, - ACTIONS(4206), 1, - sym_identifier, - ACTIONS(4377), 1, - anon_sym_COLON_COLON, - ACTIONS(5347), 1, anon_sym_STAR, - ACTIONS(5349), 1, anon_sym_AMP_AMP, - ACTIONS(5351), 1, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4785), 32, anon_sym_AMP, - ACTIONS(5353), 1, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, anon_sym_LBRACK, - STATE(4091), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4605), 1, - sym__scope_resolution, - STATE(5054), 1, - sym__declarator, - STATE(6132), 1, - sym_ms_based_modifier, - ACTIONS(2722), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(3387), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(4056), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(2720), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(6159), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(2724), 8, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - STATE(4918), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [83323] = 6, + sym_primitive_type, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [79296] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5212), 1, + anon_sym_LPAREN2, + ACTIONS(5982), 1, + anon_sym_LBRACK, + ACTIONS(5986), 1, + anon_sym_DOT, + ACTIONS(5988), 1, + anon_sym_DASH_GT, + STATE(3506), 1, + sym_argument_list, + ACTIONS(5984), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5980), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5489), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(5487), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_GT2, + [79368] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5212), 1, + anon_sym_LPAREN2, + ACTIONS(5982), 1, + anon_sym_LBRACK, + ACTIONS(5986), 1, + anon_sym_DOT, + ACTIONS(5988), 1, + anon_sym_DASH_GT, + STATE(3506), 1, + sym_argument_list, + ACTIONS(5984), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5489), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(5487), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_GT2, + [79438] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5212), 1, + anon_sym_LPAREN2, + ACTIONS(5982), 1, + anon_sym_LBRACK, + ACTIONS(5986), 1, + anon_sym_DOT, + ACTIONS(5988), 1, + anon_sym_DASH_GT, + ACTIONS(6023), 1, + anon_sym_AMP_AMP, + ACTIONS(6025), 1, + anon_sym_PIPE, + ACTIONS(6029), 1, + anon_sym_AMP, + ACTIONS(6037), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6039), 1, + anon_sym_and, + ACTIONS(6041), 1, + anon_sym_bitor, + ACTIONS(6043), 1, + anon_sym_bitand, + STATE(3506), 1, + sym_argument_list, + ACTIONS(5978), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5984), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6027), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6035), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5489), 3, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + ACTIONS(5980), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6031), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6033), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5487), 17, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_GT2, + [79534] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5212), 1, + anon_sym_LPAREN2, + ACTIONS(5982), 1, + anon_sym_LBRACK, + ACTIONS(5986), 1, + anon_sym_DOT, + ACTIONS(5988), 1, + anon_sym_DASH_GT, + ACTIONS(6025), 1, + anon_sym_PIPE, + ACTIONS(6029), 1, + anon_sym_AMP, + ACTIONS(6037), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6041), 1, + anon_sym_bitor, + ACTIONS(6043), 1, + anon_sym_bitand, + STATE(3506), 1, + sym_argument_list, + ACTIONS(5978), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5984), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6027), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6035), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5980), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6031), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5489), 4, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + ACTIONS(6033), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5487), 18, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_GT2, + [79626] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3814), 1, + ACTIONS(4476), 1, anon_sym_COLON_COLON, - ACTIONS(5383), 1, + ACTIONS(6045), 1, anon_sym_LT, - STATE(3135), 1, + STATE(3608), 1, sym_template_argument_list, - ACTIONS(3819), 13, + ACTIONS(4481), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -301507,7 +374063,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(4196), 31, + ACTIONS(5026), 34, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, @@ -301519,11 +374075,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_COLON, @@ -301539,174 +374098,469 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, anon_sym_try, anon_sym_requires, - [83384] = 3, + [79690] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2496), 19, - anon_sym_DASH, - anon_sym_PLUS, - sym_primitive_type, - anon_sym_not, - anon_sym_compl, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - anon_sym_decltype, - anon_sym_typename, - anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, - anon_sym_requires, - sym_this, - sym_nullptr, - ACTIONS(2498), 28, + ACTIONS(5212), 1, anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(5982), 1, anon_sym_LBRACK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [83439] = 5, + ACTIONS(5986), 1, + anon_sym_DOT, + ACTIONS(5988), 1, + anon_sym_DASH_GT, + ACTIONS(6029), 1, + anon_sym_AMP, + ACTIONS(6037), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6043), 1, + anon_sym_bitand, + STATE(3506), 1, + sym_argument_list, + ACTIONS(5978), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5984), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6027), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6035), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5980), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6031), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6033), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5489), 5, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + ACTIONS(5487), 19, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_bitor, + anon_sym_GT2, + [79778] = 17, ACTIONS(3), 1, sym_comment, - STATE(3088), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(5385), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(4082), 13, + ACTIONS(5212), 1, + anon_sym_LPAREN2, + ACTIONS(5982), 1, + anon_sym_LBRACK, + ACTIONS(5986), 1, + anon_sym_DOT, + ACTIONS(5988), 1, + anon_sym_DASH_GT, + ACTIONS(6029), 1, + anon_sym_AMP, + ACTIONS(6037), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6043), 1, + anon_sym_bitand, + STATE(3506), 1, + sym_argument_list, + ACTIONS(5978), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5984), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6035), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5980), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6031), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6033), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5489), 7, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(5487), 19, 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_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_bitor, + anon_sym_GT2, + [79864] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5212), 1, anon_sym_LPAREN2, - anon_sym_TILDE, + ACTIONS(5982), 1, + anon_sym_LBRACK, + ACTIONS(5986), 1, + anon_sym_DOT, + ACTIONS(5988), 1, + anon_sym_DASH_GT, + ACTIONS(6037), 1, + anon_sym_LT_EQ_GT, + STATE(3506), 1, + sym_argument_list, + ACTIONS(5978), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5984), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6035), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5980), 3, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6031), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6033), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5489), 8, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(5487), 20, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_GT2, + [79946] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5212), 1, + anon_sym_LPAREN2, + ACTIONS(5982), 1, + anon_sym_LBRACK, + ACTIONS(5986), 1, + anon_sym_DOT, + ACTIONS(5988), 1, + anon_sym_DASH_GT, + STATE(3506), 1, + sym_argument_list, + ACTIONS(5984), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5697), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(5695), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_GT2, - ACTIONS(4080), 29, + [80016] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5212), 1, + anon_sym_LPAREN2, + ACTIONS(5982), 1, + anon_sym_LBRACK, + ACTIONS(5986), 1, + anon_sym_DOT, + ACTIONS(5988), 1, + anon_sym_DASH_GT, + ACTIONS(6037), 1, + anon_sym_LT_EQ_GT, + STATE(3506), 1, + sym_argument_list, + ACTIONS(5978), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5984), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6035), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5980), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6033), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5489), 8, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(5487), 23, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_GT2, + [80096] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5212), 1, + anon_sym_LPAREN2, + ACTIONS(5982), 1, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [83498] = 24, + ACTIONS(5986), 1, + anon_sym_DOT, + ACTIONS(5988), 1, + anon_sym_DASH_GT, + ACTIONS(6037), 1, + anon_sym_LT_EQ_GT, + STATE(3506), 1, + sym_argument_list, + ACTIONS(5978), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5984), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6035), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5980), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5489), 12, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(5487), 23, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_GT2, + [80174] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, + ACTIONS(45), 1, anon_sym___based, - ACTIONS(996), 1, + ACTIONS(1329), 1, anon_sym_template, - ACTIONS(1521), 1, + ACTIONS(1931), 1, anon_sym_operator, - ACTIONS(1555), 1, + ACTIONS(1973), 1, anon_sym_decltype, - ACTIONS(1681), 1, + ACTIONS(2560), 1, anon_sym_LPAREN2, - ACTIONS(1683), 1, + ACTIONS(2562), 1, anon_sym_TILDE, - ACTIONS(4302), 1, + ACTIONS(4823), 1, sym_identifier, - ACTIONS(4312), 1, + ACTIONS(5072), 1, anon_sym_COLON_COLON, - ACTIONS(5353), 1, + ACTIONS(5996), 1, anon_sym_LBRACK, - ACTIONS(5371), 1, + ACTIONS(6047), 1, anon_sym_STAR, - ACTIONS(5373), 1, + ACTIONS(6049), 1, anon_sym_AMP_AMP, - ACTIONS(5375), 1, + ACTIONS(6051), 1, anon_sym_AMP, - STATE(4091), 1, + STATE(4712), 1, sym_ms_unaligned_ptr_modifier, - STATE(4598), 1, + STATE(5352), 1, sym__scope_resolution, - STATE(4665), 1, + STATE(5857), 1, sym__declarator, - STATE(6066), 1, + STATE(7052), 1, sym_ms_based_modifier, - ACTIONS(2722), 2, + ACTIONS(2869), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(3122), 2, + STATE(3411), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(3381), 2, + STATE(3857), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(2720), 3, + ACTIONS(2867), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(6159), 3, + STATE(7638), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - ACTIONS(2724), 8, + ACTIONS(2871), 11, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - STATE(4918), 11, + STATE(5640), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -301718,121 +374572,336 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [83595] = 4, + [80274] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4229), 1, - anon_sym_COLON_COLON, - ACTIONS(4227), 19, + ACTIONS(5212), 1, + anon_sym_LPAREN2, + ACTIONS(5982), 1, + anon_sym_LBRACK, + ACTIONS(5986), 1, + anon_sym_DOT, + ACTIONS(5988), 1, + anon_sym_DASH_GT, + ACTIONS(6023), 1, + anon_sym_AMP_AMP, + ACTIONS(6025), 1, + anon_sym_PIPE, + ACTIONS(6029), 1, + anon_sym_AMP, + ACTIONS(6037), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6039), 1, + anon_sym_and, + ACTIONS(6041), 1, + anon_sym_bitor, + ACTIONS(6043), 1, + anon_sym_bitand, + ACTIONS(6053), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6055), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6057), 1, + anon_sym_QMARK, + ACTIONS(6059), 1, + anon_sym_or, + STATE(3506), 1, + sym_argument_list, + ACTIONS(5732), 2, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + ACTIONS(5978), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5984), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6027), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6035), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5980), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6031), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6033), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5730), 14, + anon_sym_COMMA, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_GT2, + [80378] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6061), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(5432), 21, anon_sym_DASH, anon_sym_PLUS, - sym_primitive_type, - anon_sym_not, - anon_sym_compl, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - anon_sym_decltype, - anon_sym_typename, - anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, - anon_sym_requires, - sym_this, - sym_nullptr, - ACTIONS(4225), 27, - anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(5430), 28, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [80438] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5212), 1, + anon_sym_LPAREN2, + ACTIONS(5982), 1, anon_sym_LBRACK, + ACTIONS(5986), 1, + anon_sym_DOT, + ACTIONS(5988), 1, + anon_sym_DASH_GT, + ACTIONS(6023), 1, + anon_sym_AMP_AMP, + ACTIONS(6025), 1, + anon_sym_PIPE, + ACTIONS(6029), 1, + anon_sym_AMP, + ACTIONS(6037), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6039), 1, + anon_sym_and, + ACTIONS(6041), 1, + anon_sym_bitor, + ACTIONS(6043), 1, + anon_sym_bitand, + ACTIONS(6055), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6059), 1, + anon_sym_or, + STATE(3506), 1, + sym_argument_list, + ACTIONS(5603), 2, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + ACTIONS(5978), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5984), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [83652] = 24, + ACTIONS(6027), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6035), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5980), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6031), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6033), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5601), 16, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_GT2, + [80538] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5395), 23, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + ACTIONS(5397), 27, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_literal_suffix, + [80596] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, + ACTIONS(29), 1, + anon_sym_AMP_AMP, + ACTIONS(45), 1, anon_sym___based, - ACTIONS(996), 1, + ACTIONS(1329), 1, anon_sym_template, - ACTIONS(1521), 1, + ACTIONS(1931), 1, anon_sym_operator, - ACTIONS(1555), 1, + ACTIONS(1973), 1, anon_sym_decltype, - ACTIONS(1681), 1, + ACTIONS(2560), 1, anon_sym_LPAREN2, - ACTIONS(1683), 1, + ACTIONS(2562), 1, anon_sym_TILDE, - ACTIONS(4302), 1, + ACTIONS(2564), 1, + anon_sym_STAR, + ACTIONS(2566), 1, + anon_sym_AMP, + ACTIONS(4823), 1, sym_identifier, - ACTIONS(4312), 1, + ACTIONS(5072), 1, anon_sym_COLON_COLON, - ACTIONS(5353), 1, + ACTIONS(5996), 1, anon_sym_LBRACK, - ACTIONS(5371), 1, - anon_sym_STAR, - ACTIONS(5373), 1, - anon_sym_AMP_AMP, - ACTIONS(5375), 1, - anon_sym_AMP, - STATE(4091), 1, + STATE(4712), 1, sym_ms_unaligned_ptr_modifier, - STATE(4598), 1, + STATE(5352), 1, sym__scope_resolution, - STATE(4665), 1, + STATE(5613), 1, sym__declarator, - STATE(6066), 1, + STATE(7654), 1, sym_ms_based_modifier, - ACTIONS(2722), 2, + ACTIONS(2869), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(3381), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(4056), 2, + STATE(3410), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - ACTIONS(2720), 3, + STATE(3854), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(2867), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(6159), 3, + STATE(7638), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - ACTIONS(2724), 8, + ACTIONS(2871), 11, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - STATE(4918), 11, + STATE(5640), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -301844,130 +374913,81 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [83749] = 3, + [80696] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5388), 19, - anon_sym_DASH, - anon_sym_PLUS, - sym_primitive_type, - anon_sym_not, - anon_sym_compl, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - anon_sym_decltype, - anon_sym_typename, - anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, - anon_sym_requires, - sym_this, - sym_nullptr, - ACTIONS(5390), 28, + ACTIONS(4798), 1, + sym_literal_suffix, + ACTIONS(4457), 23, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [83804] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4229), 1, - anon_sym_COLON_COLON, - ACTIONS(4247), 19, + anon_sym_DASH_GT, + anon_sym_GT2, + ACTIONS(4465), 26, anon_sym_DASH, anon_sym_PLUS, - sym_primitive_type, - anon_sym_not, - anon_sym_compl, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - anon_sym_decltype, - anon_sym_typename, - anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, - anon_sym_requires, - sym_this, - sym_nullptr, - ACTIONS(4245), 27, - anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [83861] = 5, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + [80756] = 5, ACTIONS(3), 1, sym_comment, - STATE(1822), 1, + STATE(2138), 1, sym_string_literal, - ACTIONS(5369), 5, + ACTIONS(6002), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(5367), 6, + ACTIONS(6000), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(5365), 35, + ACTIONS(5998), 38, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, @@ -301979,11 +374999,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -302003,101 +375026,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_typename, anon_sym_template, anon_sym_operator, - [83920] = 3, + [80818] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5392), 19, + ACTIONS(4766), 16, anon_sym_DASH, anon_sym_PLUS, - sym_primitive_type, - anon_sym_not, - anon_sym_compl, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - anon_sym_decltype, - anon_sym_typename, - anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, - anon_sym_requires, - sym_this, - sym_nullptr, - ACTIONS(5394), 28, - anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [83975] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4229), 1, - anon_sym_COLON_COLON, - ACTIONS(4247), 19, - anon_sym_DASH, - anon_sym_PLUS, - sym_primitive_type, - anon_sym_not, - anon_sym_compl, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - anon_sym_decltype, - anon_sym_typename, - anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, - anon_sym_requires, - sym_this, - sym_nullptr, - ACTIONS(4245), 27, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_literal_suffix, + ACTIONS(4764), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, anon_sym_STAR, - anon_sym_AMP, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SEMI, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, + anon_sym_DASH_GT, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, @@ -302108,123 +375081,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [84032] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3814), 1, - anon_sym_COLON_COLON, - ACTIONS(5383), 1, - anon_sym_LT, - STATE(3135), 1, - sym_template_argument_list, - ACTIONS(3836), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(3831), 31, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_or, - anon_sym_and, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [84093] = 24, + [80876] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(29), 1, - anon_sym_AMP_AMP, - ACTIONS(47), 1, + ACTIONS(45), 1, anon_sym___based, - ACTIONS(996), 1, + ACTIONS(1329), 1, anon_sym_template, - ACTIONS(1521), 1, + ACTIONS(1931), 1, anon_sym_operator, - ACTIONS(1555), 1, + ACTIONS(1973), 1, anon_sym_decltype, - ACTIONS(1681), 1, + ACTIONS(2560), 1, anon_sym_LPAREN2, - ACTIONS(1683), 1, + ACTIONS(2562), 1, anon_sym_TILDE, - ACTIONS(1685), 1, - anon_sym_STAR, - ACTIONS(1687), 1, - anon_sym_AMP, - ACTIONS(4206), 1, + ACTIONS(5002), 1, sym_identifier, - ACTIONS(4377), 1, + ACTIONS(5012), 1, anon_sym_COLON_COLON, - ACTIONS(5353), 1, + ACTIONS(5990), 1, + anon_sym_STAR, + ACTIONS(5992), 1, + anon_sym_AMP_AMP, + ACTIONS(5994), 1, + anon_sym_AMP, + ACTIONS(5996), 1, anon_sym_LBRACK, - STATE(4091), 1, + STATE(4712), 1, sym_ms_unaligned_ptr_modifier, - STATE(4605), 1, + STATE(5316), 1, sym__scope_resolution, - STATE(4939), 1, + STATE(5550), 1, sym__declarator, - STATE(6104), 1, + STATE(6967), 1, sym_ms_based_modifier, - ACTIONS(2722), 2, + ACTIONS(2869), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(3101), 2, + STATE(3362), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(3370), 2, + STATE(3836), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(2720), 3, + ACTIONS(2867), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(6159), 3, + STATE(7638), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - ACTIONS(2724), 8, + ACTIONS(2871), 11, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - STATE(4918), 11, + STATE(5640), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -302236,68 +375157,367 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [84190] = 24, + [80976] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(29), 1, - anon_sym_AMP_AMP, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1521), 1, - anon_sym_operator, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(1681), 1, + ACTIONS(4783), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_literal_suffix, + ACTIONS(4781), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(1683), 1, - anon_sym_TILDE, - ACTIONS(1685), 1, anon_sym_STAR, - ACTIONS(1687), 1, - anon_sym_AMP, - ACTIONS(4206), 1, - sym_identifier, - ACTIONS(4377), 1, - anon_sym_COLON_COLON, - ACTIONS(5353), 1, - anon_sym_LBRACK, - STATE(4091), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4605), 1, - sym__scope_resolution, - STATE(4885), 1, - sym__declarator, - STATE(6104), 1, - sym_ms_based_modifier, - ACTIONS(2722), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(3343), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(4056), 2, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [81034] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5212), 1, + anon_sym_LPAREN2, + ACTIONS(5982), 1, + anon_sym_LBRACK, + ACTIONS(5986), 1, + anon_sym_DOT, + ACTIONS(5988), 1, + anon_sym_DASH_GT, + STATE(3506), 1, + sym_argument_list, + ACTIONS(5984), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5665), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(5663), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_GT2, + [81104] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4550), 1, + anon_sym_const, + ACTIONS(4559), 1, + anon_sym_AMP, + ACTIONS(4552), 7, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LBRACK, + anon_sym_GT2, + ACTIONS(4557), 10, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(4555), 14, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + ACTIONS(4562), 17, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [81170] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5212), 1, + anon_sym_LPAREN2, + ACTIONS(5982), 1, + anon_sym_LBRACK, + ACTIONS(5986), 1, + anon_sym_DOT, + ACTIONS(5988), 1, + anon_sym_DASH_GT, + STATE(3506), 1, + sym_argument_list, + ACTIONS(5978), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5984), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6035), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5980), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5489), 12, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(5487), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_GT2, + [81246] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6063), 1, + anon_sym_LT, + STATE(3515), 1, + sym_template_argument_list, + ACTIONS(5533), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(5531), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [81308] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(29), 1, + anon_sym_AMP_AMP, + ACTIONS(45), 1, + anon_sym___based, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1931), 1, + anon_sym_operator, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(2560), 1, + anon_sym_LPAREN2, + ACTIONS(2562), 1, + anon_sym_TILDE, + ACTIONS(2564), 1, + anon_sym_STAR, + ACTIONS(2566), 1, + anon_sym_AMP, + ACTIONS(4823), 1, + sym_identifier, + ACTIONS(5072), 1, + anon_sym_COLON_COLON, + ACTIONS(5996), 1, + anon_sym_LBRACK, + STATE(4712), 1, + sym_ms_unaligned_ptr_modifier, + STATE(5352), 1, + sym__scope_resolution, + STATE(5614), 1, + sym__declarator, + STATE(7654), 1, + sym_ms_based_modifier, + ACTIONS(2869), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3395), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - ACTIONS(2720), 3, + STATE(3840), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(2867), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(6159), 3, + STATE(7638), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - ACTIONS(2724), 8, + ACTIONS(2871), 11, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - STATE(4918), 11, + STATE(5640), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -302309,120 +375529,71 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [84287] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3870), 19, - anon_sym_DASH, - anon_sym_PLUS, - sym_primitive_type, - anon_sym_not, - anon_sym_compl, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - anon_sym_decltype, - anon_sym_typename, - anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, - anon_sym_requires, - sym_this, - sym_nullptr, - ACTIONS(3875), 28, - anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [84342] = 24, + [81408] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(29), 1, anon_sym_AMP_AMP, - ACTIONS(47), 1, + ACTIONS(45), 1, anon_sym___based, - ACTIONS(996), 1, + ACTIONS(1329), 1, anon_sym_template, - ACTIONS(1521), 1, + ACTIONS(1931), 1, anon_sym_operator, - ACTIONS(1555), 1, + ACTIONS(1973), 1, anon_sym_decltype, - ACTIONS(1681), 1, + ACTIONS(2560), 1, anon_sym_LPAREN2, - ACTIONS(1683), 1, + ACTIONS(2562), 1, anon_sym_TILDE, - ACTIONS(1685), 1, + ACTIONS(2564), 1, anon_sym_STAR, - ACTIONS(1687), 1, + ACTIONS(2566), 1, anon_sym_AMP, - ACTIONS(4206), 1, + ACTIONS(4823), 1, sym_identifier, - ACTIONS(4377), 1, + ACTIONS(5072), 1, anon_sym_COLON_COLON, - ACTIONS(5353), 1, + ACTIONS(5996), 1, anon_sym_LBRACK, - STATE(4091), 1, + STATE(4712), 1, sym_ms_unaligned_ptr_modifier, - STATE(4605), 1, + STATE(5352), 1, sym__scope_resolution, - STATE(4937), 1, + STATE(5613), 1, sym__declarator, - STATE(6104), 1, + STATE(7654), 1, sym_ms_based_modifier, - ACTIONS(2722), 2, + ACTIONS(2869), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(3388), 2, + STATE(3854), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - STATE(4056), 2, + STATE(4580), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - ACTIONS(2720), 3, + ACTIONS(2867), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(6159), 3, + STATE(7638), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - ACTIONS(2724), 8, + ACTIONS(2871), 11, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - STATE(4918), 11, + STATE(5640), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -302434,68 +375605,71 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [84439] = 24, + [81508] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, + ACTIONS(45), 1, anon_sym___based, - ACTIONS(996), 1, + ACTIONS(1329), 1, anon_sym_template, - ACTIONS(1521), 1, + ACTIONS(1931), 1, anon_sym_operator, - ACTIONS(1555), 1, + ACTIONS(1973), 1, anon_sym_decltype, - ACTIONS(1681), 1, + ACTIONS(2560), 1, anon_sym_LPAREN2, - ACTIONS(1683), 1, + ACTIONS(2562), 1, anon_sym_TILDE, - ACTIONS(4302), 1, + ACTIONS(5002), 1, sym_identifier, - ACTIONS(4312), 1, + ACTIONS(5012), 1, anon_sym_COLON_COLON, - ACTIONS(5353), 1, + ACTIONS(5996), 1, anon_sym_LBRACK, - ACTIONS(5377), 1, + ACTIONS(6014), 1, anon_sym_STAR, - ACTIONS(5379), 1, + ACTIONS(6016), 1, anon_sym_AMP_AMP, - ACTIONS(5381), 1, + ACTIONS(6018), 1, anon_sym_AMP, - STATE(4091), 1, + STATE(4712), 1, sym_ms_unaligned_ptr_modifier, - STATE(4598), 1, + STATE(5316), 1, sym__scope_resolution, - STATE(4878), 1, + STATE(5406), 1, sym__declarator, - STATE(6072), 1, + STATE(7713), 1, sym_ms_based_modifier, - ACTIONS(2722), 2, + ACTIONS(2869), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(3367), 2, + STATE(3841), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - STATE(4056), 2, + STATE(4580), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - ACTIONS(2720), 3, + ACTIONS(2867), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(6159), 3, + STATE(7638), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - ACTIONS(2724), 8, + ACTIONS(2871), 11, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - STATE(4918), 11, + STATE(5640), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -302507,25 +375681,157 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [84536] = 5, + [81608] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4773), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_literal_suffix, + ACTIONS(4771), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [81666] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5212), 1, + anon_sym_LPAREN2, + ACTIONS(5982), 1, + anon_sym_LBRACK, + ACTIONS(5986), 1, + anon_sym_DOT, + ACTIONS(5988), 1, + anon_sym_DASH_GT, + ACTIONS(6023), 1, + anon_sym_AMP_AMP, + ACTIONS(6025), 1, + anon_sym_PIPE, + ACTIONS(6029), 1, + anon_sym_AMP, + ACTIONS(6037), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6039), 1, + anon_sym_and, + ACTIONS(6041), 1, + anon_sym_bitor, + ACTIONS(6043), 1, + anon_sym_bitand, + ACTIONS(6053), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6055), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6059), 1, + anon_sym_or, + STATE(3506), 1, + sym_argument_list, + ACTIONS(5589), 2, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + ACTIONS(5978), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5984), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6027), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6035), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5980), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6031), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6033), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5585), 15, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_GT2, + [81768] = 5, ACTIONS(3), 1, sym_comment, - STATE(1823), 1, + STATE(2140), 1, sym_string_literal, - ACTIONS(5369), 5, + ACTIONS(6002), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(5367), 6, + ACTIONS(6000), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(5365), 35, + ACTIONS(5998), 38, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, @@ -302537,11 +375843,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_signed, @@ -302561,68 +375870,136 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_typename, anon_sym_template, anon_sym_operator, - [84595] = 24, + [81830] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5212), 1, + anon_sym_LPAREN2, + ACTIONS(5982), 1, + anon_sym_LBRACK, + ACTIONS(5986), 1, + anon_sym_DOT, + ACTIONS(5988), 1, + anon_sym_DASH_GT, + ACTIONS(6037), 1, + anon_sym_LT_EQ_GT, + STATE(3506), 1, + sym_argument_list, + ACTIONS(5978), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5984), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6035), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5980), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5669), 12, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(5667), 23, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_GT2, + [81908] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, + ACTIONS(45), 1, anon_sym___based, - ACTIONS(996), 1, + ACTIONS(1329), 1, anon_sym_template, - ACTIONS(1521), 1, + ACTIONS(1931), 1, anon_sym_operator, - ACTIONS(1555), 1, + ACTIONS(1973), 1, anon_sym_decltype, - ACTIONS(1681), 1, + ACTIONS(2560), 1, anon_sym_LPAREN2, - ACTIONS(1683), 1, + ACTIONS(2562), 1, anon_sym_TILDE, - ACTIONS(4302), 1, + ACTIONS(4823), 1, sym_identifier, - ACTIONS(4312), 1, + ACTIONS(5072), 1, anon_sym_COLON_COLON, - ACTIONS(5353), 1, + ACTIONS(5996), 1, anon_sym_LBRACK, - ACTIONS(5377), 1, + ACTIONS(6047), 1, anon_sym_STAR, - ACTIONS(5379), 1, + ACTIONS(6049), 1, anon_sym_AMP_AMP, - ACTIONS(5381), 1, + ACTIONS(6051), 1, anon_sym_AMP, - STATE(4091), 1, + STATE(4712), 1, sym_ms_unaligned_ptr_modifier, - STATE(4598), 1, + STATE(5352), 1, sym__scope_resolution, - STATE(4848), 1, + STATE(5805), 1, sym__declarator, - STATE(6072), 1, + STATE(7052), 1, sym_ms_based_modifier, - ACTIONS(2722), 2, + ACTIONS(2869), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(3109), 2, + STATE(3421), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(3363), 2, + STATE(3853), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(2720), 3, + ACTIONS(2867), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(6159), 3, + STATE(7638), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - ACTIONS(2724), 8, + ACTIONS(2871), 11, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - STATE(4918), 11, + STATE(5640), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -302634,100 +376011,358 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [84692] = 3, + [82008] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5396), 19, + ACTIONS(5212), 1, + anon_sym_LPAREN2, + ACTIONS(5982), 1, + anon_sym_LBRACK, + ACTIONS(5986), 1, + anon_sym_DOT, + ACTIONS(5988), 1, + anon_sym_DASH_GT, + STATE(3506), 1, + sym_argument_list, + ACTIONS(5984), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5559), 19, anon_sym_DASH, anon_sym_PLUS, - sym_primitive_type, - anon_sym_not, - anon_sym_compl, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - anon_sym_decltype, - anon_sym_typename, - anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, - anon_sym_requires, - sym_this, - sym_nullptr, - ACTIONS(5398), 28, - anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - anon_sym_SEMI, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(5557), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_GT2, + [82078] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5212), 1, + anon_sym_LPAREN2, + ACTIONS(5982), 1, + anon_sym_LBRACK, + ACTIONS(5986), 1, + anon_sym_DOT, + ACTIONS(5988), 1, + anon_sym_DASH_GT, + ACTIONS(6023), 1, + anon_sym_AMP_AMP, + ACTIONS(6025), 1, + anon_sym_PIPE, + ACTIONS(6029), 1, + anon_sym_AMP, + ACTIONS(6037), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6039), 1, + anon_sym_and, + ACTIONS(6041), 1, + anon_sym_bitor, + ACTIONS(6043), 1, + anon_sym_bitand, + ACTIONS(6055), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6059), 1, + anon_sym_or, + STATE(3506), 1, + sym_argument_list, + ACTIONS(5643), 2, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + ACTIONS(5978), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5984), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6027), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6035), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5980), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6031), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6033), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5641), 16, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_GT2, + [82178] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4555), 2, anon_sym_COLON_COLON, anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(4557), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4562), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [82238] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(2142), 1, + sym_string_literal, + ACTIONS(6002), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [84747] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5400), 19, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(6000), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(5998), 38, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, sym_primitive_type, - anon_sym_not, - anon_sym_compl, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, sym_identifier, + sym_auto, anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, anon_sym_typename, anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, - anon_sym_requires, - sym_this, - sym_nullptr, - ACTIONS(5402), 28, - anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, + anon_sym_operator, + [82300] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5363), 1, + anon_sym_LBRACK, + STATE(3424), 1, + sym_new_declarator, + ACTIONS(5387), 16, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5385), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [82362] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4777), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_literal_suffix, + ACTIONS(4775), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, + anon_sym_DASH_GT, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, @@ -302738,68 +376373,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [84802] = 24, + [82420] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(29), 1, - anon_sym_AMP_AMP, - ACTIONS(47), 1, + ACTIONS(45), 1, anon_sym___based, - ACTIONS(996), 1, + ACTIONS(1329), 1, anon_sym_template, - ACTIONS(1521), 1, + ACTIONS(1931), 1, anon_sym_operator, - ACTIONS(1555), 1, + ACTIONS(1973), 1, anon_sym_decltype, - ACTIONS(1681), 1, + ACTIONS(2560), 1, anon_sym_LPAREN2, - ACTIONS(1683), 1, + ACTIONS(2562), 1, anon_sym_TILDE, - ACTIONS(1685), 1, - anon_sym_STAR, - ACTIONS(1687), 1, - anon_sym_AMP, - ACTIONS(4206), 1, + ACTIONS(5002), 1, sym_identifier, - ACTIONS(4377), 1, + ACTIONS(5012), 1, anon_sym_COLON_COLON, - ACTIONS(5353), 1, + ACTIONS(5990), 1, + anon_sym_STAR, + ACTIONS(5992), 1, + anon_sym_AMP_AMP, + ACTIONS(5994), 1, + anon_sym_AMP, + ACTIONS(5996), 1, anon_sym_LBRACK, - STATE(4091), 1, + STATE(4712), 1, sym_ms_unaligned_ptr_modifier, - STATE(4605), 1, + STATE(5316), 1, sym__scope_resolution, - STATE(4937), 1, + STATE(5564), 1, sym__declarator, - STATE(6104), 1, + STATE(6967), 1, sym_ms_based_modifier, - ACTIONS(2722), 2, + ACTIONS(2869), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(3099), 2, + STATE(3361), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(3388), 2, + STATE(3832), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(2720), 3, + ACTIONS(2867), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(6159), 3, + STATE(7638), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - ACTIONS(2724), 8, + ACTIONS(2871), 11, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - STATE(4918), 11, + STATE(5640), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -302811,120 +376449,147 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [84899] = 3, + [82520] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(3858), 19, - anon_sym_DASH, - anon_sym_PLUS, - sym_primitive_type, - anon_sym_not, - anon_sym_compl, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - anon_sym_decltype, - anon_sym_typename, + ACTIONS(45), 1, + anon_sym___based, + ACTIONS(1329), 1, anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, - anon_sym_requires, - sym_this, - sym_nullptr, - ACTIONS(3860), 28, + ACTIONS(1931), 1, + anon_sym_operator, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(2560), 1, anon_sym_LPAREN2, - anon_sym_BANG, + ACTIONS(2562), 1, anon_sym_TILDE, + ACTIONS(5996), 1, + anon_sym_LBRACK, + ACTIONS(6004), 1, + sym_identifier, + ACTIONS(6006), 1, anon_sym_STAR, + ACTIONS(6008), 1, + anon_sym_AMP_AMP, + ACTIONS(6010), 1, anon_sym_AMP, - anon_sym_SEMI, + ACTIONS(6012), 1, anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [84954] = 24, + STATE(4712), 1, + sym_ms_unaligned_ptr_modifier, + STATE(5330), 1, + sym__scope_resolution, + STATE(5614), 1, + sym__declarator, + STATE(7191), 1, + sym_ms_based_modifier, + ACTIONS(2869), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3416), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(3833), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(2867), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(7638), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(2871), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + STATE(5640), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [82620] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, + ACTIONS(29), 1, + anon_sym_AMP_AMP, + ACTIONS(45), 1, anon_sym___based, - ACTIONS(996), 1, + ACTIONS(1329), 1, anon_sym_template, - ACTIONS(1521), 1, + ACTIONS(1931), 1, anon_sym_operator, - ACTIONS(1555), 1, + ACTIONS(1973), 1, anon_sym_decltype, - ACTIONS(1681), 1, + ACTIONS(2560), 1, anon_sym_LPAREN2, - ACTIONS(1683), 1, + ACTIONS(2562), 1, anon_sym_TILDE, - ACTIONS(4302), 1, + ACTIONS(2564), 1, + anon_sym_STAR, + ACTIONS(2566), 1, + anon_sym_AMP, + ACTIONS(4823), 1, sym_identifier, - ACTIONS(4312), 1, + ACTIONS(5072), 1, anon_sym_COLON_COLON, - ACTIONS(5353), 1, + ACTIONS(5996), 1, anon_sym_LBRACK, - ACTIONS(5377), 1, - anon_sym_STAR, - ACTIONS(5379), 1, - anon_sym_AMP_AMP, - ACTIONS(5381), 1, - anon_sym_AMP, - STATE(4091), 1, + STATE(4712), 1, sym_ms_unaligned_ptr_modifier, - STATE(4598), 1, + STATE(5352), 1, sym__scope_resolution, - STATE(4867), 1, + STATE(5668), 1, sym__declarator, - STATE(6072), 1, + STATE(7654), 1, sym_ms_based_modifier, - ACTIONS(2722), 2, + ACTIONS(2869), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(3364), 2, + STATE(3838), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - STATE(4056), 2, + STATE(4580), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - ACTIONS(2720), 3, + ACTIONS(2867), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(6159), 3, + STATE(7638), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - ACTIONS(2724), 8, + ACTIONS(2871), 11, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - STATE(4918), 11, + STATE(5640), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -302936,328 +376601,71 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [85051] = 3, + [82720] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(3862), 19, - anon_sym_DASH, - anon_sym_PLUS, - sym_primitive_type, - anon_sym_not, - anon_sym_compl, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - anon_sym_decltype, - anon_sym_typename, + ACTIONS(45), 1, + anon_sym___based, + ACTIONS(1329), 1, anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, - anon_sym_requires, - sym_this, - sym_nullptr, - ACTIONS(3864), 28, + ACTIONS(1931), 1, + anon_sym_operator, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(2560), 1, anon_sym_LPAREN2, - anon_sym_BANG, + ACTIONS(2562), 1, anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_SEMI, + ACTIONS(4823), 1, + sym_identifier, + ACTIONS(5072), 1, anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(5996), 1, anon_sym_LBRACK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [85106] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3896), 19, - anon_sym_DASH, - anon_sym_PLUS, - sym_primitive_type, - anon_sym_not, - anon_sym_compl, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - anon_sym_decltype, - anon_sym_typename, - anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, - anon_sym_requires, - sym_this, - sym_nullptr, - ACTIONS(3898), 28, - anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [85161] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3892), 19, - anon_sym_DASH, - anon_sym_PLUS, - sym_primitive_type, - anon_sym_not, - anon_sym_compl, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - anon_sym_decltype, - anon_sym_typename, - anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, - anon_sym_requires, - sym_this, - sym_nullptr, - ACTIONS(3894), 28, - anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [85216] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3902), 19, - anon_sym_DASH, - anon_sym_PLUS, - sym_primitive_type, - anon_sym_not, - anon_sym_compl, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - anon_sym_decltype, - anon_sym_typename, - anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, - anon_sym_requires, - sym_this, - sym_nullptr, - ACTIONS(3904), 28, - anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [85271] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3866), 19, - anon_sym_DASH, - anon_sym_PLUS, - sym_primitive_type, - anon_sym_not, - anon_sym_compl, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - anon_sym_decltype, - anon_sym_typename, - anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, - anon_sym_requires, - sym_this, - sym_nullptr, - ACTIONS(3868), 28, - anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [85326] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1521), 1, - anon_sym_operator, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(1681), 1, - anon_sym_LPAREN2, - ACTIONS(1683), 1, - anon_sym_TILDE, - ACTIONS(5353), 1, - anon_sym_LBRACK, - ACTIONS(5355), 1, - sym_identifier, - ACTIONS(5357), 1, + ACTIONS(6047), 1, anon_sym_STAR, - ACTIONS(5359), 1, + ACTIONS(6049), 1, anon_sym_AMP_AMP, - ACTIONS(5361), 1, + ACTIONS(6051), 1, anon_sym_AMP, - ACTIONS(5363), 1, - anon_sym_COLON_COLON, - STATE(4091), 1, + STATE(4712), 1, sym_ms_unaligned_ptr_modifier, - STATE(4639), 1, + STATE(5352), 1, sym__scope_resolution, - STATE(4939), 1, + STATE(5801), 1, sym__declarator, - STATE(6010), 1, + STATE(7052), 1, sym_ms_based_modifier, - ACTIONS(2722), 2, + ACTIONS(2869), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(3117), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(3346), 2, + STATE(3855), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(2720), 3, + STATE(4580), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(2867), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(6159), 3, + STATE(7638), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - ACTIONS(2724), 8, + ACTIONS(2871), 11, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - STATE(4918), 11, + STATE(5640), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -303269,120 +376677,149 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [85423] = 3, + [82820] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(3884), 19, - anon_sym_DASH, - anon_sym_PLUS, - sym_primitive_type, - anon_sym_not, - anon_sym_compl, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - anon_sym_decltype, - anon_sym_typename, - anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, - anon_sym_requires, - sym_this, - sym_nullptr, - ACTIONS(3886), 28, + ACTIONS(5212), 1, anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(5982), 1, anon_sym_LBRACK, + ACTIONS(5986), 1, + anon_sym_DOT, + ACTIONS(5988), 1, + anon_sym_DASH_GT, + ACTIONS(6023), 1, + anon_sym_AMP_AMP, + ACTIONS(6025), 1, + anon_sym_PIPE, + ACTIONS(6029), 1, + anon_sym_AMP, + ACTIONS(6037), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6039), 1, + anon_sym_and, + ACTIONS(6041), 1, + anon_sym_bitor, + ACTIONS(6043), 1, + anon_sym_bitand, + ACTIONS(6053), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6055), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6057), 1, + anon_sym_QMARK, + ACTIONS(6059), 1, + anon_sym_or, + STATE(3506), 1, + sym_argument_list, + ACTIONS(5633), 2, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + ACTIONS(5978), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5984), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [85478] = 24, + ACTIONS(6027), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6035), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5980), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6031), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6033), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5631), 14, + anon_sym_COMMA, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_GT2, + [82924] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, + ACTIONS(45), 1, anon_sym___based, - ACTIONS(996), 1, + ACTIONS(1329), 1, anon_sym_template, - ACTIONS(1521), 1, + ACTIONS(1931), 1, anon_sym_operator, - ACTIONS(1555), 1, + ACTIONS(1973), 1, anon_sym_decltype, - ACTIONS(1681), 1, + ACTIONS(2560), 1, anon_sym_LPAREN2, - ACTIONS(1683), 1, + ACTIONS(2562), 1, anon_sym_TILDE, - ACTIONS(5353), 1, - anon_sym_LBRACK, - ACTIONS(5355), 1, + ACTIONS(5002), 1, sym_identifier, - ACTIONS(5357), 1, + ACTIONS(5012), 1, + anon_sym_COLON_COLON, + ACTIONS(5996), 1, + anon_sym_LBRACK, + ACTIONS(6014), 1, anon_sym_STAR, - ACTIONS(5359), 1, + ACTIONS(6016), 1, anon_sym_AMP_AMP, - ACTIONS(5361), 1, + ACTIONS(6018), 1, anon_sym_AMP, - ACTIONS(5363), 1, - anon_sym_COLON_COLON, - STATE(4091), 1, + STATE(4712), 1, sym_ms_unaligned_ptr_modifier, - STATE(4639), 1, + STATE(5316), 1, sym__scope_resolution, - STATE(4937), 1, + STATE(5421), 1, sym__declarator, - STATE(6010), 1, + STATE(7713), 1, sym_ms_based_modifier, - ACTIONS(2722), 2, + ACTIONS(2869), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(3349), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(4056), 2, + STATE(3396), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - ACTIONS(2720), 3, + STATE(3852), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(2867), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(6159), 3, + STATE(7638), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - ACTIONS(2724), 8, + ACTIONS(2871), 11, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - STATE(4918), 11, + STATE(5640), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -303394,224 +376831,147 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [85575] = 3, + [83024] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(4247), 19, - anon_sym_DASH, - anon_sym_PLUS, - sym_primitive_type, - anon_sym_not, - anon_sym_compl, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - anon_sym_decltype, - anon_sym_typename, - anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, - anon_sym_requires, - sym_this, - sym_nullptr, - ACTIONS(4245), 28, + ACTIONS(5212), 1, anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(5982), 1, anon_sym_LBRACK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [85630] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4253), 19, - anon_sym_DASH, - anon_sym_PLUS, - sym_primitive_type, - anon_sym_not, - anon_sym_compl, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - anon_sym_decltype, - anon_sym_typename, - anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, - anon_sym_requires, - sym_this, - sym_nullptr, - ACTIONS(4251), 28, - anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_STAR, + ACTIONS(5986), 1, + anon_sym_DOT, + ACTIONS(5988), 1, + anon_sym_DASH_GT, + ACTIONS(6023), 1, + anon_sym_AMP_AMP, + ACTIONS(6025), 1, + anon_sym_PIPE, + ACTIONS(6029), 1, anon_sym_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [85685] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2568), 19, + ACTIONS(6037), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6039), 1, + anon_sym_and, + ACTIONS(6041), 1, + anon_sym_bitor, + ACTIONS(6043), 1, + anon_sym_bitand, + ACTIONS(6055), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6059), 1, + anon_sym_or, + STATE(3506), 1, + sym_argument_list, + ACTIONS(5677), 2, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + ACTIONS(5978), 2, anon_sym_DASH, anon_sym_PLUS, - sym_primitive_type, - anon_sym_not, - anon_sym_compl, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - anon_sym_decltype, - anon_sym_typename, - anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, - anon_sym_requires, - sym_this, - sym_nullptr, - ACTIONS(2570), 28, - anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, + ACTIONS(5984), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [85740] = 24, + ACTIONS(6027), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6035), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5980), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6031), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6033), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5675), 16, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_GT2, + [83124] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, + ACTIONS(45), 1, anon_sym___based, - ACTIONS(996), 1, + ACTIONS(1329), 1, anon_sym_template, - ACTIONS(1521), 1, + ACTIONS(1931), 1, anon_sym_operator, - ACTIONS(1555), 1, + ACTIONS(1973), 1, anon_sym_decltype, - ACTIONS(1681), 1, + ACTIONS(2560), 1, anon_sym_LPAREN2, - ACTIONS(1683), 1, + ACTIONS(2562), 1, anon_sym_TILDE, - ACTIONS(5353), 1, + ACTIONS(5996), 1, anon_sym_LBRACK, - ACTIONS(5355), 1, + ACTIONS(6004), 1, sym_identifier, - ACTIONS(5357), 1, + ACTIONS(6006), 1, anon_sym_STAR, - ACTIONS(5359), 1, + ACTIONS(6008), 1, anon_sym_AMP_AMP, - ACTIONS(5361), 1, + ACTIONS(6010), 1, anon_sym_AMP, - ACTIONS(5363), 1, + ACTIONS(6012), 1, anon_sym_COLON_COLON, - STATE(4091), 1, + STATE(4712), 1, sym_ms_unaligned_ptr_modifier, - STATE(4639), 1, + STATE(5330), 1, sym__scope_resolution, - STATE(4937), 1, + STATE(5668), 1, sym__declarator, - STATE(6010), 1, + STATE(7191), 1, sym_ms_based_modifier, - ACTIONS(2722), 2, + ACTIONS(2869), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(3078), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(3349), 2, + STATE(3846), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(2720), 3, + STATE(4580), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(2867), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(6159), 3, + STATE(7638), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - ACTIONS(2724), 8, + ACTIONS(2871), 11, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - STATE(4918), 11, + STATE(5640), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -303623,68 +376983,71 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [85837] = 24, + [83224] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, + ACTIONS(45), 1, anon_sym___based, - ACTIONS(996), 1, + ACTIONS(1329), 1, anon_sym_template, - ACTIONS(1521), 1, + ACTIONS(1931), 1, anon_sym_operator, - ACTIONS(1555), 1, + ACTIONS(1973), 1, anon_sym_decltype, - ACTIONS(1681), 1, + ACTIONS(2560), 1, anon_sym_LPAREN2, - ACTIONS(1683), 1, + ACTIONS(2562), 1, anon_sym_TILDE, - ACTIONS(4302), 1, - sym_identifier, - ACTIONS(4312), 1, - anon_sym_COLON_COLON, - ACTIONS(5353), 1, + ACTIONS(5996), 1, anon_sym_LBRACK, - ACTIONS(5371), 1, + ACTIONS(6004), 1, + sym_identifier, + ACTIONS(6006), 1, anon_sym_STAR, - ACTIONS(5373), 1, + ACTIONS(6008), 1, anon_sym_AMP_AMP, - ACTIONS(5375), 1, + ACTIONS(6010), 1, anon_sym_AMP, - STATE(4091), 1, + ACTIONS(6012), 1, + anon_sym_COLON_COLON, + STATE(4712), 1, sym_ms_unaligned_ptr_modifier, - STATE(4598), 1, + STATE(5330), 1, sym__scope_resolution, - STATE(4678), 1, + STATE(5613), 1, sym__declarator, - STATE(6066), 1, + STATE(7191), 1, sym_ms_based_modifier, - ACTIONS(2722), 2, + ACTIONS(2869), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(3342), 2, + STATE(3843), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - STATE(4056), 2, + STATE(4580), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - ACTIONS(2720), 3, + ACTIONS(2867), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(6159), 3, + STATE(7638), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - ACTIONS(2724), 8, + ACTIONS(2871), 11, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - STATE(4918), 11, + STATE(5640), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -303696,254 +377059,489 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [85934] = 3, + [83324] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5404), 19, - anon_sym_DASH, - anon_sym_PLUS, + STATE(2141), 1, + sym_string_literal, + ACTIONS(6002), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(6000), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(5998), 38, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, sym_primitive_type, - anon_sym_not, - anon_sym_compl, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, sym_identifier, + sym_auto, anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, anon_sym_typename, anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, - anon_sym_requires, - sym_this, - sym_nullptr, - ACTIONS(5406), 28, + anon_sym_operator, + [83386] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4476), 1, + anon_sym_COLON_COLON, + ACTIONS(6045), 1, + anon_sym_LT, + STATE(3608), 1, + sym_template_argument_list, + ACTIONS(4503), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_BANG, anon_sym_TILDE, anon_sym_STAR, - anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4498), 34, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, anon_sym_LBRACK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [85989] = 3, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [83450] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4026), 18, + ACTIONS(5212), 1, + anon_sym_LPAREN2, + ACTIONS(5982), 1, + anon_sym_LBRACK, + ACTIONS(5986), 1, + anon_sym_DOT, + ACTIONS(5988), 1, + anon_sym_DASH_GT, + STATE(3506), 1, + sym_argument_list, + ACTIONS(5681), 19, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_literal_suffix, - ACTIONS(4024), 28, + ACTIONS(5679), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + anon_sym_GT2, + [83518] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5212), 1, + anon_sym_LPAREN2, + ACTIONS(5982), 1, + anon_sym_LBRACK, + ACTIONS(5986), 1, + anon_sym_DOT, + ACTIONS(5988), 1, anon_sym_DASH_GT, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, + ACTIONS(6023), 1, + anon_sym_AMP_AMP, + ACTIONS(6025), 1, + anon_sym_PIPE, + ACTIONS(6029), 1, + anon_sym_AMP, + ACTIONS(6037), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6039), 1, + anon_sym_and, + ACTIONS(6041), 1, + anon_sym_bitor, + ACTIONS(6043), 1, + anon_sym_bitand, + ACTIONS(6055), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6059), 1, + anon_sym_or, + STATE(3506), 1, + sym_argument_list, + ACTIONS(5764), 2, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + ACTIONS(5978), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5984), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6027), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6035), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5980), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6031), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6033), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5762), 16, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_GT2, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [86043] = 3, + [83618] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(45), 1, + anon_sym___based, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1931), 1, + anon_sym_operator, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(2560), 1, + anon_sym_LPAREN2, + ACTIONS(2562), 1, + anon_sym_TILDE, + ACTIONS(4823), 1, + sym_identifier, + ACTIONS(5072), 1, + anon_sym_COLON_COLON, + ACTIONS(5996), 1, + anon_sym_LBRACK, + ACTIONS(6047), 1, + anon_sym_STAR, + ACTIONS(6049), 1, + anon_sym_AMP_AMP, + ACTIONS(6051), 1, + anon_sym_AMP, + STATE(4712), 1, + sym_ms_unaligned_ptr_modifier, + STATE(5352), 1, + sym__scope_resolution, + STATE(5857), 1, + sym__declarator, + STATE(7052), 1, + sym_ms_based_modifier, + ACTIONS(2869), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3857), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(4580), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(2867), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(7638), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(2871), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + STATE(5640), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [83718] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4022), 18, + ACTIONS(5736), 20, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_literal_suffix, - ACTIONS(4020), 28, + ACTIONS(5734), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, anon_sym_GT2, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [86097] = 6, + [83775] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3814), 1, - anon_sym_COLON_COLON, - ACTIONS(5408), 1, - anon_sym_LT, - STATE(2234), 1, - sym_template_argument_list, - ACTIONS(3831), 9, + ACTIONS(4978), 1, + anon_sym_LPAREN2, + ACTIONS(5493), 1, + anon_sym_LBRACK, + ACTIONS(6066), 1, + anon_sym_DOT, + ACTIONS(6068), 1, + anon_sym_DASH_GT, + STATE(2996), 1, + sym_argument_list, + ACTIONS(5681), 17, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_COLON, - anon_sym_DOT, - ACTIONS(3836), 34, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(5679), 27, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - [86157] = 6, + [83842] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3814), 1, - anon_sym_COLON_COLON, - ACTIONS(5411), 1, - anon_sym_LT, - STATE(2234), 1, - sym_template_argument_list, - ACTIONS(4196), 9, + ACTIONS(5457), 16, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_COLON, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, anon_sym_DOT, - ACTIONS(3819), 34, + anon_sym_DASH_GT, + ACTIONS(5455), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, @@ -303953,1189 +377551,943 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - [86217] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [83899] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4030), 18, + ACTIONS(5615), 20, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_literal_suffix, - ACTIONS(4028), 28, + ACTIONS(5613), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_GT2, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [86271] = 3, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [83956] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4002), 18, + ACTIONS(5611), 20, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_literal_suffix, - ACTIONS(4000), 28, + ACTIONS(5609), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, anon_sym_GT2, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [86325] = 3, + [84013] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3137), 14, + ACTIONS(5607), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(5605), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, anon_sym_DASH_GT, anon_sym_GT2, - ACTIONS(3135), 32, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - sym_identifier, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_explicit, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_requires, - [86379] = 3, + [84070] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3141), 14, + ACTIONS(5619), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(5617), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, anon_sym_DASH_GT, anon_sym_GT2, - ACTIONS(3139), 32, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - sym_identifier, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_explicit, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_requires, - [86433] = 3, + [84127] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3898), 14, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, + ACTIONS(4839), 1, + sym_literal_suffix, + ACTIONS(4465), 22, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(3896), 31, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, anon_sym_or, anon_sym_and, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [86486] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4229), 1, - anon_sym_COLON_COLON, - ACTIONS(4225), 13, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4457), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(4227), 31, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_or, - anon_sym_and, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [86541] = 4, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [84186] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4229), 1, - anon_sym_COLON_COLON, - ACTIONS(4245), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, + ACTIONS(4718), 20, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(4247), 31, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [86596] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3875), 14, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4720), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(3870), 31, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_or, - anon_sym_and, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [86649] = 3, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [84243] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4251), 14, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(5088), 1, anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, + ACTIONS(5732), 1, anon_sym_EQ, - anon_sym_GT2, - ACTIONS(4253), 31, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + ACTIONS(5784), 1, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, + ACTIONS(5836), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5880), 1, + anon_sym_QMARK, + ACTIONS(5902), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6078), 1, + anon_sym_PIPE, + ACTIONS(6080), 1, + anon_sym_CARET, + ACTIONS(6082), 1, + anon_sym_AMP, + ACTIONS(6088), 1, + anon_sym_GT_EQ, + ACTIONS(6092), 1, + anon_sym_bitor, + ACTIONS(6094), 1, + anon_sym_xor, + ACTIONS(6096), 1, + anon_sym_bitand, + STATE(3343), 1, + sym_argument_list, + ACTIONS(5786), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5916), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6070), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6074), 2, + anon_sym_PIPE_PIPE, anon_sym_or, + ACTIONS(6076), 2, + anon_sym_AMP_AMP, anon_sym_and, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [86702] = 3, + ACTIONS(6090), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6072), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6084), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6086), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5730), 14, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [84344] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3886), 14, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(4650), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5375), 1, + anon_sym_LBRACK, + ACTIONS(5369), 2, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_TILDE, + ACTIONS(4465), 16, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(3884), 31, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_or, - anon_sym_and, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [86755] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3814), 1, - anon_sym_COLON_COLON, - ACTIONS(5413), 1, + anon_sym_GT, + anon_sym_LT_EQ, anon_sym_LT, - STATE(3135), 1, - sym_template_argument_list, - ACTIONS(3819), 11, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4457), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(4196), 31, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [86814] = 3, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [84407] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3868), 14, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(4978), 1, anon_sym_LPAREN2, - anon_sym_TILDE, + ACTIONS(5493), 1, + anon_sym_LBRACK, + ACTIONS(6066), 1, + anon_sym_DOT, + ACTIONS(6068), 1, + anon_sym_DASH_GT, + STATE(2996), 1, + sym_argument_list, + ACTIONS(5495), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5697), 17, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(3866), 31, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, anon_sym_or, anon_sym_and, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [86867] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3860), 14, + anon_sym_xor, + ACTIONS(5695), 25, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(3858), 31, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_COLON, - anon_sym_or, - anon_sym_and, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [86920] = 3, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + [84476] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3904), 14, + ACTIONS(4710), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4712), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, anon_sym_GT2, - ACTIONS(3902), 31, + [84533] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5569), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [86973] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4245), 14, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(5567), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, anon_sym_GT2, - ACTIONS(4247), 31, + [84590] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4702), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [87026] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3894), 14, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4704), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(3892), 31, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_or, - anon_sym_and, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [87079] = 4, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [84647] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(4229), 1, - anon_sym_COLON_COLON, - ACTIONS(4245), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(4978), 1, anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(4247), 31, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + ACTIONS(5493), 1, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_or, - anon_sym_and, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [87134] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3814), 1, - anon_sym_COLON_COLON, - ACTIONS(5413), 1, - anon_sym_LT, - STATE(3135), 1, - sym_template_argument_list, - ACTIONS(3836), 11, + ACTIONS(5583), 1, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, + ACTIONS(5732), 1, + anon_sym_EQ, + ACTIONS(6066), 1, + anon_sym_DOT, + ACTIONS(6068), 1, + anon_sym_DASH_GT, + ACTIONS(6102), 1, anon_sym_PIPE_PIPE, + ACTIONS(6104), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(3831), 31, + ACTIONS(6106), 1, + anon_sym_PIPE, + ACTIONS(6110), 1, anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, + ACTIONS(6116), 1, + anon_sym_GT_EQ, + ACTIONS(6120), 1, + anon_sym_QMARK, + ACTIONS(6122), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6124), 1, anon_sym_or, + ACTIONS(6126), 1, anon_sym_and, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [87193] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3864), 14, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, + ACTIONS(6128), 1, + anon_sym_bitor, + ACTIONS(6130), 1, + anon_sym_bitand, + STATE(2996), 1, + sym_argument_list, + ACTIONS(5495), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6098), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6108), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6118), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6100), 3, anon_sym_STAR, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(3862), 31, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6112), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6114), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5730), 14, anon_sym_COLON, - anon_sym_or, - anon_sym_and, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [87246] = 11, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + [84752] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1489), 1, - anon_sym_LBRACE, - ACTIONS(4717), 1, - sym_auto, - ACTIONS(4719), 1, - anon_sym_decltype, - ACTIONS(5415), 1, - anon_sym_LPAREN2, - ACTIONS(5417), 1, - anon_sym_LBRACK, - STATE(2581), 1, - sym_decltype_auto, - STATE(3316), 1, - sym_new_declarator, - STATE(3379), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(4202), 9, + ACTIONS(5563), 20, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4200), 26, + ACTIONS(5561), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [87314] = 13, + anon_sym_GT2, + [84809] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4210), 1, - anon_sym___attribute__, - ACTIONS(4214), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(4216), 1, - anon_sym___declspec, - ACTIONS(4220), 1, - anon_sym_virtual, - ACTIONS(5423), 1, - sym_auto, - ACTIONS(5425), 1, - anon_sym_decltype, - STATE(3229), 1, - sym_decltype_auto, - ACTIONS(4208), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - ACTIONS(5419), 6, - anon_sym_AMP, - anon_sym___based, - anon_sym_LBRACK, - sym_identifier, - anon_sym_template, - anon_sym_operator, - ACTIONS(4218), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(3193), 8, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(5421), 10, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(4978), 1, anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, + ACTIONS(5493), 1, + anon_sym_LBRACK, + ACTIONS(5643), 1, anon_sym_EQ, - anon_sym_GT2, - [87386] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3814), 1, - anon_sym_COLON_COLON, - ACTIONS(5411), 1, - anon_sym_LT, - STATE(2234), 1, - sym_template_argument_list, - ACTIONS(3793), 9, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_COLON, + ACTIONS(6066), 1, anon_sym_DOT, - ACTIONS(3801), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(6068), 1, + anon_sym_DASH_GT, + ACTIONS(6102), 1, anon_sym_PIPE_PIPE, + ACTIONS(6104), 1, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(6106), 1, + anon_sym_PIPE, + ACTIONS(6110), 1, + anon_sym_AMP, + ACTIONS(6116), 1, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, + ACTIONS(6122), 1, anon_sym_LT_EQ_GT, + ACTIONS(6124), 1, anon_sym_or, + ACTIONS(6126), 1, anon_sym_and, + ACTIONS(6128), 1, anon_sym_bitor, - anon_sym_xor, + ACTIONS(6130), 1, anon_sym_bitand, - anon_sym_not_eq, + STATE(2996), 1, + sym_argument_list, + ACTIONS(5495), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [87444] = 11, + ACTIONS(6098), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6108), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6118), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6100), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6112), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6114), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5641), 16, + anon_sym_DOT_DOT_DOT, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + [84910] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1489), 1, - anon_sym_LBRACE, - ACTIONS(4717), 1, - sym_auto, - ACTIONS(4719), 1, - anon_sym_decltype, - ACTIONS(5415), 1, + ACTIONS(5088), 1, anon_sym_LPAREN2, - ACTIONS(5417), 1, + ACTIONS(5784), 1, anon_sym_LBRACK, - STATE(2581), 1, - sym_decltype_auto, - STATE(3302), 1, - sym_new_declarator, - STATE(3389), 2, + STATE(3343), 1, sym_argument_list, - sym_initializer_list, - ACTIONS(4168), 9, + ACTIONS(5786), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5647), 14, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_DOT, - ACTIONS(4164), 26, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(5645), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, @@ -305145,2028 +378497,1944 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [87512] = 7, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [84975] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4731), 1, - anon_sym_LBRACE, - ACTIONS(5427), 1, - anon_sym_COLON, - STATE(2436), 1, - sym__enum_base_clause, - STATE(2457), 1, - sym_enumerator_list, - ACTIONS(4278), 9, + ACTIONS(5651), 20, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4276), 31, + ACTIONS(5649), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [87572] = 5, + anon_sym_GT2, + [85032] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3814), 1, - anon_sym_COLON_COLON, - STATE(3135), 1, - sym_template_argument_list, - ACTIONS(4288), 10, + ACTIONS(5655), 20, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_COLON, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4286), 32, + ACTIONS(5653), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [87628] = 11, + anon_sym_GT2, + [85089] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(1489), 1, - anon_sym_LBRACE, - ACTIONS(4717), 1, - sym_auto, - ACTIONS(4719), 1, - anon_sym_decltype, - ACTIONS(5415), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(5417), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - STATE(2581), 1, - sym_decltype_auto, - STATE(3304), 1, - sym_new_declarator, - STATE(3366), 2, + ACTIONS(5583), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5633), 1, + anon_sym_EQ, + ACTIONS(6066), 1, + anon_sym_DOT, + ACTIONS(6068), 1, + anon_sym_DASH_GT, + ACTIONS(6102), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6104), 1, + anon_sym_AMP_AMP, + ACTIONS(6106), 1, + anon_sym_PIPE, + ACTIONS(6110), 1, + anon_sym_AMP, + ACTIONS(6116), 1, + anon_sym_GT_EQ, + ACTIONS(6120), 1, + anon_sym_QMARK, + ACTIONS(6122), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6124), 1, + anon_sym_or, + ACTIONS(6126), 1, + anon_sym_and, + ACTIONS(6128), 1, + anon_sym_bitor, + ACTIONS(6130), 1, + anon_sym_bitand, + STATE(2996), 1, sym_argument_list, - sym_initializer_list, - ACTIONS(4185), 9, + ACTIONS(5495), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6098), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6108), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6118), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6100), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6112), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6114), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5631), 14, + anon_sym_COLON, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + [85194] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5391), 20, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4183), 26, + ACTIONS(5389), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [87696] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3814), 1, - anon_sym_COLON_COLON, - ACTIONS(5413), 1, - anon_sym_LT, - STATE(3135), 1, - sym_template_argument_list, - ACTIONS(4286), 12, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, anon_sym_GT2, - ACTIONS(4288), 29, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [87754] = 7, + [85251] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4731), 1, - anon_sym_LBRACE, - ACTIONS(5427), 1, - anon_sym_COLON, - STATE(2356), 1, - sym__enum_base_clause, - STATE(2534), 1, - sym_enumerator_list, - ACTIONS(4270), 9, + ACTIONS(4726), 20, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4268), 31, + ACTIONS(4728), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [87814] = 13, + anon_sym_GT2, + [85308] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(4210), 1, - anon_sym___attribute__, - ACTIONS(4214), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(4216), 1, - anon_sym___declspec, - ACTIONS(4220), 1, - anon_sym_virtual, - ACTIONS(5423), 1, - sym_auto, - ACTIONS(5425), 1, - anon_sym_decltype, - STATE(3229), 1, - sym_decltype_auto, - ACTIONS(4208), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - ACTIONS(5429), 6, - anon_sym_AMP, - anon_sym___based, - anon_sym_LBRACK, - sym_identifier, - anon_sym_template, - anon_sym_operator, - ACTIONS(4218), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(3194), 8, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(5431), 10, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(5088), 1, anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, + ACTIONS(5643), 1, anon_sym_EQ, - anon_sym_GT2, - [87886] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3814), 1, - anon_sym_COLON_COLON, - ACTIONS(5383), 1, + ACTIONS(5784), 1, + anon_sym_LBRACK, + ACTIONS(5902), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6078), 1, + anon_sym_PIPE, + ACTIONS(6080), 1, + anon_sym_CARET, + ACTIONS(6082), 1, + anon_sym_AMP, + ACTIONS(6088), 1, + anon_sym_GT_EQ, + ACTIONS(6092), 1, + anon_sym_bitor, + ACTIONS(6094), 1, + anon_sym_xor, + ACTIONS(6096), 1, + anon_sym_bitand, + STATE(3343), 1, + sym_argument_list, + ACTIONS(5786), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5916), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6070), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6074), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6076), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6090), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6072), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6084), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6086), 3, + anon_sym_GT, + anon_sym_LT_EQ, anon_sym_LT, - STATE(3135), 1, - sym_template_argument_list, - ACTIONS(3801), 12, + ACTIONS(5641), 16, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(3793), 29, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [87944] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5435), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(5433), 38, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - [87996] = 11, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [85405] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1489), 1, - anon_sym_LBRACE, - ACTIONS(4717), 1, - sym_auto, - ACTIONS(4719), 1, - anon_sym_decltype, - ACTIONS(5415), 1, - anon_sym_LPAREN2, - ACTIONS(5417), 1, - anon_sym_LBRACK, - STATE(2581), 1, - sym_decltype_auto, - STATE(3330), 1, - sym_new_declarator, - STATE(3352), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(4178), 9, + ACTIONS(4690), 20, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4176), 26, + ACTIONS(4692), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [88064] = 11, + anon_sym_GT2, + [85462] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1489), 1, - anon_sym_LBRACE, - ACTIONS(4717), 1, - sym_auto, - ACTIONS(4719), 1, - anon_sym_decltype, - ACTIONS(5417), 1, - anon_sym_LBRACK, - ACTIONS(5437), 1, - anon_sym_LPAREN2, - STATE(2581), 1, - sym_decltype_auto, - STATE(3341), 1, - sym_new_declarator, - STATE(3389), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(4168), 9, + ACTIONS(5685), 20, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4164), 25, + ACTIONS(5683), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_STAR, - anon_sym_PERCENT, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RBRACK, - anon_sym_COLON, + anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [88131] = 3, + anon_sym_GT2, + [85519] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5439), 18, + ACTIONS(5689), 20, anon_sym_DASH, anon_sym_PLUS, - sym_primitive_type, - anon_sym_not, - anon_sym_compl, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, - anon_sym_requires, - sym_this, - sym_nullptr, - ACTIONS(5441), 25, - anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, anon_sym_STAR, - anon_sym_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [88182] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4046), 9, - anon_sym_DASH, - anon_sym_PLUS, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4048), 34, + ACTIONS(5687), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [88233] = 3, + anon_sym_GT2, + [85576] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4046), 9, + ACTIONS(5705), 20, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4048), 34, + ACTIONS(5703), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [88284] = 6, + anon_sym_GT2, + [85633] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3814), 1, - anon_sym_COLON_COLON, - ACTIONS(5443), 1, - anon_sym_LT, - STATE(2751), 1, - sym_template_argument_list, - ACTIONS(4196), 11, + ACTIONS(5713), 20, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_COLON, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(3819), 29, + ACTIONS(5711), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, anon_sym_GT2, - [88341] = 3, + [85690] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 9, + ACTIONS(5503), 20, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(1735), 34, + ACTIONS(5501), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [88392] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5445), 1, - anon_sym_LBRACE, - ACTIONS(5447), 1, - anon_sym_COLON, - STATE(3216), 1, - sym_field_declaration_list, - STATE(5292), 1, - sym_virtual_specifier, - STATE(5890), 1, - sym_base_class_clause, - ACTIONS(5449), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(4143), 12, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, anon_sym_GT2, - ACTIONS(4145), 24, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - [88455] = 11, + [85747] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1489), 1, - anon_sym_LBRACE, - ACTIONS(4717), 1, - sym_auto, - ACTIONS(4719), 1, - anon_sym_decltype, - ACTIONS(5417), 1, - anon_sym_LBRACK, - ACTIONS(5437), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - STATE(2581), 1, - sym_decltype_auto, - STATE(3359), 1, - sym_new_declarator, - STATE(3366), 2, + ACTIONS(5493), 1, + anon_sym_LBRACK, + ACTIONS(6066), 1, + anon_sym_DOT, + ACTIONS(6068), 1, + anon_sym_DASH_GT, + STATE(2996), 1, sym_argument_list, - sym_initializer_list, - ACTIONS(4185), 9, + ACTIONS(5495), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5559), 17, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_DOT, - ACTIONS(4183), 25, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(5557), 25, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [88522] = 9, + [85816] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(5445), 1, - anon_sym_LBRACE, - ACTIONS(5447), 1, - anon_sym_COLON, - STATE(3270), 1, - sym_field_declaration_list, - STATE(5189), 1, - sym_virtual_specifier, - STATE(5819), 1, - sym_base_class_clause, - ACTIONS(5449), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(4127), 12, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(4978), 1, anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(4129), 24, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + ACTIONS(5493), 1, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - [88585] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4060), 9, + ACTIONS(6066), 1, + anon_sym_DOT, + ACTIONS(6068), 1, + anon_sym_DASH_GT, + STATE(2996), 1, + sym_argument_list, + ACTIONS(5495), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6098), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(6118), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6100), 3, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5489), 10, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_DOT, - ACTIONS(4062), 34, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(5487), 25, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [88636] = 3, + [85891] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4046), 9, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(4048), 34, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(5088), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(5633), 1, + anon_sym_EQ, + ACTIONS(5784), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, + ACTIONS(5836), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5880), 1, anon_sym_QMARK, + ACTIONS(5902), 1, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, + ACTIONS(6078), 1, + anon_sym_PIPE, + ACTIONS(6080), 1, + anon_sym_CARET, + ACTIONS(6082), 1, + anon_sym_AMP, + ACTIONS(6088), 1, + anon_sym_GT_EQ, + ACTIONS(6092), 1, anon_sym_bitor, + ACTIONS(6094), 1, anon_sym_xor, + ACTIONS(6096), 1, anon_sym_bitand, - anon_sym_not_eq, + STATE(3343), 1, + sym_argument_list, + ACTIONS(5786), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5916), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [88687] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5451), 1, - sym_identifier, - ACTIONS(5456), 1, - sym_primitive_type, - STATE(3088), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(5454), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(4052), 13, - anon_sym_DOT_DOT_DOT, + ACTIONS(6070), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6074), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6076), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6090), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6072), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6084), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6086), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5631), 14, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(4054), 23, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - [88746] = 6, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [85992] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3814), 1, - anon_sym_COLON_COLON, - ACTIONS(5458), 1, - anon_sym_LT, - STATE(2751), 1, - sym_template_argument_list, - ACTIONS(3831), 11, + ACTIONS(5717), 20, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_COLON, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(3836), 29, + ACTIONS(5715), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, anon_sym_GT2, - [88803] = 3, + [86049] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4064), 9, + ACTIONS(4730), 20, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4066), 34, + ACTIONS(4732), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [88854] = 3, + anon_sym_GT2, + [86106] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(4068), 9, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(4070), 34, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(5088), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(5489), 1, + anon_sym_EQ, + ACTIONS(5784), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, + ACTIONS(5902), 1, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, + ACTIONS(6078), 1, + anon_sym_PIPE, + ACTIONS(6080), 1, + anon_sym_CARET, + ACTIONS(6082), 1, + anon_sym_AMP, + ACTIONS(6088), 1, + anon_sym_GT_EQ, + ACTIONS(6092), 1, anon_sym_bitor, + ACTIONS(6094), 1, anon_sym_xor, + ACTIONS(6096), 1, anon_sym_bitand, - anon_sym_not_eq, + STATE(3343), 1, + sym_argument_list, + ACTIONS(5786), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5916), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [88905] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4076), 9, + ACTIONS(6070), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(6076), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6090), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6072), 3, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + anon_sym_PERCENT, + ACTIONS(6084), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6086), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_DOT, - ACTIONS(4078), 34, + ACTIONS(5487), 18, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, - anon_sym_LT_EQ_GT, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [88956] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [86201] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(4072), 9, + ACTIONS(4978), 1, + anon_sym_LPAREN2, + ACTIONS(5493), 1, + anon_sym_LBRACK, + ACTIONS(6066), 1, + anon_sym_DOT, + ACTIONS(6068), 1, + anon_sym_DASH_GT, + STATE(2996), 1, + sym_argument_list, + ACTIONS(5495), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6098), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(6100), 3, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5489), 12, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_DOT, - ACTIONS(4074), 34, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(5487), 25, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [89007] = 3, + [86274] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4042), 9, + ACTIONS(5359), 20, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4044), 34, + ACTIONS(5357), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [89058] = 11, + anon_sym_GT2, + [86331] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1489), 1, - anon_sym_LBRACE, - ACTIONS(4717), 1, - sym_auto, - ACTIONS(4719), 1, - anon_sym_decltype, - ACTIONS(5417), 1, - anon_sym_LBRACK, - ACTIONS(5437), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - STATE(2581), 1, - sym_decltype_auto, - STATE(3372), 1, - sym_new_declarator, - STATE(3352), 2, + ACTIONS(5493), 1, + anon_sym_LBRACK, + ACTIONS(6066), 1, + anon_sym_DOT, + ACTIONS(6068), 1, + anon_sym_DASH_GT, + ACTIONS(6122), 1, + anon_sym_LT_EQ_GT, + STATE(2996), 1, sym_argument_list, - sym_initializer_list, - ACTIONS(4178), 9, + ACTIONS(5495), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6098), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(6118), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6100), 3, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5489), 10, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_DOT, - ACTIONS(4176), 25, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(5487), 24, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [89125] = 3, + [86408] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4105), 9, + ACTIONS(5756), 20, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4107), 34, + ACTIONS(5754), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [89176] = 3, + anon_sym_GT2, + [86465] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(4091), 9, + ACTIONS(4978), 1, + anon_sym_LPAREN2, + ACTIONS(5493), 1, + anon_sym_LBRACK, + ACTIONS(6066), 1, + anon_sym_DOT, + ACTIONS(6068), 1, + anon_sym_DASH_GT, + ACTIONS(6116), 1, + anon_sym_GT_EQ, + ACTIONS(6122), 1, + anon_sym_LT_EQ_GT, + STATE(2996), 1, + sym_argument_list, + ACTIONS(5495), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6098), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(6118), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6100), 3, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + anon_sym_PERCENT, + ACTIONS(6114), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_DOT, - ACTIONS(4093), 34, + ACTIONS(5489), 7, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(5487), 23, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [89227] = 3, + [86546] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(4036), 9, + ACTIONS(4978), 1, + anon_sym_LPAREN2, + ACTIONS(5493), 1, + anon_sym_LBRACK, + ACTIONS(6066), 1, + anon_sym_DOT, + ACTIONS(6068), 1, + anon_sym_DASH_GT, + ACTIONS(6116), 1, + anon_sym_GT_EQ, + ACTIONS(6122), 1, + anon_sym_LT_EQ_GT, + STATE(2996), 1, + sym_argument_list, + ACTIONS(5495), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6098), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(6118), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6100), 3, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + anon_sym_PERCENT, + ACTIONS(6112), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6114), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_DOT, - ACTIONS(4038), 34, + ACTIONS(5489), 7, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(5487), 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_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [89278] = 9, + [86629] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5445), 1, - anon_sym_LBRACE, - ACTIONS(5447), 1, - anon_sym_COLON, - STATE(3221), 1, - sym_field_declaration_list, - STATE(5346), 1, - sym_virtual_specifier, - STATE(5854), 1, - sym_base_class_clause, - ACTIONS(5449), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(4158), 12, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(4978), 1, anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(4160), 24, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + ACTIONS(5493), 1, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - [89341] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4095), 9, + ACTIONS(6066), 1, + anon_sym_DOT, + ACTIONS(6068), 1, + anon_sym_DASH_GT, + ACTIONS(6110), 1, + anon_sym_AMP, + ACTIONS(6116), 1, + anon_sym_GT_EQ, + ACTIONS(6122), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6130), 1, + anon_sym_bitand, + STATE(2996), 1, + sym_argument_list, + ACTIONS(5495), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6098), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(6118), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6100), 3, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + anon_sym_PERCENT, + ACTIONS(6112), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6114), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_DOT, - ACTIONS(4097), 34, + ACTIONS(5489), 6, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(5487), 19, 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_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_bitor, + [86716] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4978), 1, + anon_sym_LPAREN2, + ACTIONS(5493), 1, + anon_sym_LBRACK, + ACTIONS(6066), 1, + anon_sym_DOT, + ACTIONS(6068), 1, + anon_sym_DASH_GT, + ACTIONS(6110), 1, + anon_sym_AMP, + ACTIONS(6116), 1, anon_sym_GT_EQ, + ACTIONS(6122), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6130), 1, + anon_sym_bitand, + STATE(2996), 1, + sym_argument_list, + ACTIONS(5495), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6098), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6108), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6118), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(6100), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6112), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6114), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5489), 4, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + ACTIONS(5487), 19, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_COLON, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_bitor, + [86805] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4978), 1, + anon_sym_LPAREN2, + ACTIONS(5493), 1, + anon_sym_LBRACK, + ACTIONS(6066), 1, + anon_sym_DOT, + ACTIONS(6068), 1, + anon_sym_DASH_GT, + ACTIONS(6106), 1, + anon_sym_PIPE, + ACTIONS(6110), 1, + anon_sym_AMP, + ACTIONS(6116), 1, + anon_sym_GT_EQ, + ACTIONS(6122), 1, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, + ACTIONS(6128), 1, anon_sym_bitor, - anon_sym_xor, + ACTIONS(6130), 1, anon_sym_bitand, - anon_sym_not_eq, + STATE(2996), 1, + sym_argument_list, + ACTIONS(5495), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [89392] = 3, + ACTIONS(6098), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6108), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6118), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5489), 3, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + ACTIONS(6100), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6112), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6114), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5487), 18, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + [86898] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1729), 9, + ACTIONS(5597), 20, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(1727), 34, + ACTIONS(5595), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [89443] = 3, + anon_sym_GT2, + [86955] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4032), 9, + ACTIONS(4694), 20, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4034), 34, + ACTIONS(4696), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [89494] = 3, + anon_sym_GT2, + [87012] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4087), 9, + ACTIONS(4714), 20, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4089), 34, + ACTIONS(4716), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [89545] = 27, + anon_sym_GT2, + [87069] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1521), 1, - anon_sym_operator, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(1683), 1, - anon_sym_TILDE, - ACTIONS(3226), 1, + ACTIONS(5088), 1, anon_sym_LPAREN2, - ACTIONS(4302), 1, - sym_identifier, - ACTIONS(4312), 1, - anon_sym_COLON_COLON, - ACTIONS(4314), 1, + ACTIONS(5764), 1, + anon_sym_EQ, + ACTIONS(5784), 1, anon_sym_LBRACK, - ACTIONS(4316), 1, - anon_sym_STAR, - ACTIONS(5461), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5465), 1, - anon_sym_AMP_AMP, - ACTIONS(5467), 1, + ACTIONS(5902), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6078), 1, + anon_sym_PIPE, + ACTIONS(6080), 1, + anon_sym_CARET, + ACTIONS(6082), 1, anon_sym_AMP, - ACTIONS(5469), 1, - anon_sym_EQ, - STATE(3556), 1, - sym_parameter_list, - STATE(4598), 1, - sym__scope_resolution, - STATE(4765), 1, - sym__function_declarator_seq, - STATE(4948), 1, - sym__declarator, - STATE(5117), 1, - sym__abstract_declarator, - STATE(5442), 1, - sym_variadic_declarator, - STATE(5444), 1, - sym_variadic_reference_declarator, - STATE(6066), 1, - sym_ms_based_modifier, - ACTIONS(5463), 2, - anon_sym_COMMA, - anon_sym_GT2, - STATE(6159), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(4764), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - STATE(4918), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [89644] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1521), 1, - anon_sym_operator, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(1683), 1, - anon_sym_TILDE, - ACTIONS(3226), 1, - anon_sym_LPAREN2, - ACTIONS(4302), 1, - sym_identifier, - ACTIONS(4306), 1, + ACTIONS(6088), 1, + anon_sym_GT_EQ, + ACTIONS(6092), 1, + anon_sym_bitor, + ACTIONS(6094), 1, + anon_sym_xor, + ACTIONS(6096), 1, + anon_sym_bitand, + STATE(3343), 1, + sym_argument_list, + ACTIONS(5786), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5916), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6070), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6074), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6076), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6090), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6072), 3, anon_sym_STAR, - ACTIONS(4312), 1, - anon_sym_COLON_COLON, - ACTIONS(4314), 1, - anon_sym_LBRACK, - ACTIONS(5461), 1, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6084), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6086), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5762), 16, anon_sym_DOT_DOT_DOT, - ACTIONS(5471), 1, - anon_sym_AMP_AMP, - ACTIONS(5473), 1, - anon_sym_AMP, - ACTIONS(5475), 1, - anon_sym_EQ, - STATE(3482), 1, - sym_parameter_list, - STATE(4598), 1, - sym__scope_resolution, - STATE(4765), 1, - sym__function_declarator_seq, - STATE(4953), 1, - sym__declarator, - STATE(5129), 1, - sym__abstract_declarator, - STATE(5442), 1, - sym_variadic_declarator, - STATE(5444), 1, - sym_variadic_reference_declarator, - STATE(6066), 1, - sym_ms_based_modifier, - ACTIONS(5463), 2, anon_sym_COMMA, anon_sym_RPAREN, - STATE(6159), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(4764), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - STATE(4918), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [89743] = 11, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [87166] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1489), 1, - anon_sym_LBRACE, - ACTIONS(4717), 1, - sym_auto, - ACTIONS(4719), 1, - anon_sym_decltype, - ACTIONS(5417), 1, - anon_sym_LBRACK, - ACTIONS(5437), 1, + ACTIONS(5088), 1, anon_sym_LPAREN2, - STATE(2581), 1, - sym_decltype_auto, - STATE(3344), 1, - sym_new_declarator, - STATE(3379), 2, + ACTIONS(5784), 1, + anon_sym_LBRACK, + STATE(3343), 1, sym_argument_list, - sym_initializer_list, - ACTIONS(4202), 9, + ACTIONS(5786), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5916), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5665), 14, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_DOT, - ACTIONS(4200), 25, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(5663), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_STAR, - anon_sym_PERCENT, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, @@ -307174,425 +380442,345 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [89810] = 11, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [87233] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3025), 1, - anon_sym_LBRACE, - ACTIONS(5243), 1, - sym_auto, - ACTIONS(5245), 1, - anon_sym_decltype, - ACTIONS(5477), 1, - anon_sym_LPAREN2, - ACTIONS(5479), 1, - anon_sym_LBRACK, - STATE(2969), 1, - sym_decltype_auto, - STATE(3422), 1, - sym_new_declarator, - STATE(3768), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(4185), 11, + ACTIONS(5780), 20, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4183), 22, + ACTIONS(5778), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_STAR, - anon_sym_PERCENT, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, anon_sym_GT2, - [89876] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5481), 1, - anon_sym_namespace, - ACTIONS(5367), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(5365), 35, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - [89928] = 11, + [87290] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3025), 1, - anon_sym_LBRACE, - ACTIONS(5243), 1, - sym_auto, - ACTIONS(5245), 1, - anon_sym_decltype, - ACTIONS(5477), 1, - anon_sym_LPAREN2, - ACTIONS(5479), 1, - anon_sym_LBRACK, - STATE(2969), 1, - sym_decltype_auto, - STATE(3402), 1, - sym_new_declarator, - STATE(3747), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(4178), 11, + ACTIONS(5581), 20, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4176), 22, + ACTIONS(5579), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_STAR, - anon_sym_PERCENT, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, anon_sym_GT2, - [89994] = 10, + [87347] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(4210), 1, - anon_sym___attribute__, - ACTIONS(4214), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(4216), 1, - anon_sym___declspec, - ACTIONS(4220), 1, - anon_sym_virtual, - ACTIONS(4208), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - ACTIONS(5483), 7, - anon_sym_AMP, - anon_sym___based, + ACTIONS(5088), 1, + anon_sym_LPAREN2, + ACTIONS(5784), 1, anon_sym_LBRACK, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - ACTIONS(4218), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(3207), 8, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(5485), 10, + ACTIONS(5902), 1, + anon_sym_LT_EQ_GT, + STATE(3343), 1, + sym_argument_list, + ACTIONS(5786), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5916), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6070), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6090), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6072), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5669), 7, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_EQ, + ACTIONS(5667), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_EQ, - anon_sym_GT2, - [90058] = 10, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [87422] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4210), 1, - anon_sym___attribute__, - ACTIONS(4214), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(4216), 1, - anon_sym___declspec, - ACTIONS(4220), 1, - anon_sym_virtual, - ACTIONS(4208), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - ACTIONS(5487), 7, + ACTIONS(5776), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - anon_sym___based, - anon_sym_LBRACK, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - ACTIONS(4218), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(3207), 8, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(5489), 10, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(5774), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, anon_sym_GT2, - [90122] = 4, + [87479] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5491), 1, - anon_sym_namespace, - ACTIONS(5367), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, + ACTIONS(5772), 20, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(5365), 35, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - [90174] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5493), 1, - anon_sym_LBRACE, - STATE(3273), 1, - sym_enumerator_list, - ACTIONS(4330), 12, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(5770), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(4332), 28, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [90228] = 3, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [87536] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4326), 13, + ACTIONS(5768), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(5766), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(4328), 29, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [90278] = 4, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [87593] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4229), 1, - anon_sym_COLON_COLON, - ACTIONS(4322), 12, + ACTIONS(3805), 14, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -307601,11 +380789,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, + anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, + anon_sym_DASH_GT, anon_sym_GT2, - ACTIONS(4324), 29, + ACTIONS(3803), 35, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, @@ -307617,333 +380807,285 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_COLON, sym_identifier, - sym_auto, anon_sym_decltype, anon_sym_final, anon_sym_override, anon_sym_virtual, + anon_sym_explicit, anon_sym_template, anon_sym_operator, anon_sym_try, + anon_sym_public, + anon_sym_private, + anon_sym_protected, anon_sym_requires, - [90330] = 6, + [87650] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(5423), 1, - sym_auto, - ACTIONS(5425), 1, - anon_sym_decltype, - STATE(3229), 1, - sym_decltype_auto, - ACTIONS(4334), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(4978), 1, anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, + ACTIONS(5493), 1, + anon_sym_LBRACK, + ACTIONS(6066), 1, + anon_sym_DOT, + ACTIONS(6068), 1, + anon_sym_DASH_GT, + ACTIONS(6104), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(4336), 26, + ACTIONS(6106), 1, + anon_sym_PIPE, + ACTIONS(6110), 1, anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [90386] = 5, + ACTIONS(6116), 1, + anon_sym_GT_EQ, + ACTIONS(6122), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6126), 1, + anon_sym_and, + ACTIONS(6128), 1, + anon_sym_bitor, + ACTIONS(6130), 1, + anon_sym_bitand, + STATE(2996), 1, + sym_argument_list, + ACTIONS(5489), 2, + anon_sym_EQ, + anon_sym_or, + ACTIONS(5495), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6098), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6108), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6118), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6100), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6112), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6114), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5487), 17, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + [87747] = 23, ACTIONS(3), 1, sym_comment, - STATE(3200), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(5495), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(4082), 9, - anon_sym_COMMA, + ACTIONS(5088), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, + ACTIONS(5677), 1, anon_sym_EQ, - anon_sym_COLON, - ACTIONS(4080), 28, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + ACTIONS(5784), 1, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [90440] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1507), 1, - anon_sym_enum, - ACTIONS(1509), 1, - anon_sym_class, - ACTIONS(1511), 1, - anon_sym_struct, - ACTIONS(1513), 1, - anon_sym_union, - ACTIONS(1515), 1, - sym_auto, - ACTIONS(1517), 1, - anon_sym_decltype, - ACTIONS(1519), 1, - anon_sym_typename, - ACTIONS(5498), 1, - sym_identifier, - ACTIONS(5500), 1, - anon_sym_RPAREN, - ACTIONS(5502), 1, - anon_sym_COLON_COLON, - ACTIONS(5504), 1, - sym_primitive_type, - STATE(1922), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2444), 1, - sym_qualified_type_identifier, - STATE(2540), 1, - sym_decltype_auto, - STATE(3894), 1, - sym__type_specifier, - STATE(4997), 1, - sym__scope_resolution, - STATE(5576), 1, - sym_type_descriptor, - STATE(6159), 1, - sym_dependent_type_identifier, - STATE(2247), 2, - sym_decltype, - sym_template_type, - STATE(3299), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(1503), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2541), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(59), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [90534] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5493), 1, - anon_sym_LBRACE, - STATE(3210), 1, - sym_enumerator_list, - ACTIONS(4347), 12, + ACTIONS(5902), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6078), 1, + anon_sym_PIPE, + ACTIONS(6080), 1, + anon_sym_CARET, + ACTIONS(6082), 1, + anon_sym_AMP, + ACTIONS(6088), 1, + anon_sym_GT_EQ, + ACTIONS(6092), 1, + anon_sym_bitor, + ACTIONS(6094), 1, + anon_sym_xor, + ACTIONS(6096), 1, + anon_sym_bitand, + STATE(3343), 1, + sym_argument_list, + ACTIONS(5786), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5916), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6070), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6074), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6076), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6090), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6072), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6084), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6086), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5675), 16, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(4349), 28, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [90588] = 4, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [87844] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5506), 1, - anon_sym_namespace, - ACTIONS(5367), 6, + ACTIONS(4978), 1, anon_sym_LPAREN2, - anon_sym_TILDE, + ACTIONS(5493), 1, + anon_sym_LBRACK, + ACTIONS(6066), 1, + anon_sym_DOT, + ACTIONS(6068), 1, + anon_sym_DASH_GT, + STATE(2996), 1, + sym_argument_list, + ACTIONS(5495), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5489), 17, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(5365), 35, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - [90640] = 11, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(5487), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + [87913] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3025), 1, - anon_sym_LBRACE, - ACTIONS(5243), 1, - sym_auto, - ACTIONS(5245), 1, - anon_sym_decltype, - ACTIONS(5477), 1, + ACTIONS(5088), 1, anon_sym_LPAREN2, - ACTIONS(5479), 1, + ACTIONS(5784), 1, anon_sym_LBRACK, - STATE(2969), 1, - sym_decltype_auto, - STATE(3413), 1, - sym_new_declarator, - STATE(3703), 2, + STATE(3343), 1, sym_argument_list, - sym_initializer_list, - ACTIONS(4168), 11, + ACTIONS(5786), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5681), 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_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4164), 22, + anon_sym_EQ, + ACTIONS(5679), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_STAR, - anon_sym_PERCENT, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_GT_EQ, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, @@ -307953,52 +381095,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [87978] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5477), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(5479), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, anon_sym_DASH_GT, anon_sym_GT2, - [90706] = 11, + [88035] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3025), 1, - anon_sym_LBRACE, - ACTIONS(5243), 1, - sym_auto, - ACTIONS(5245), 1, - anon_sym_decltype, - ACTIONS(5477), 1, + ACTIONS(5088), 1, anon_sym_LPAREN2, - ACTIONS(5479), 1, + ACTIONS(5784), 1, anon_sym_LBRACK, - STATE(2969), 1, - sym_decltype_auto, - STATE(3441), 1, - sym_new_declarator, - STATE(3716), 2, + STATE(3343), 1, sym_argument_list, - sym_initializer_list, - ACTIONS(4202), 11, + ACTIONS(5786), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5916), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5559), 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_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4200), 22, + anon_sym_EQ, + ACTIONS(5557), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_STAR, - anon_sym_PERCENT, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_GT_EQ, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, @@ -308006,1438 +381208,27387 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [88102] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5593), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(2960), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, anon_sym_GT2, - [90772] = 4, + [88159] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(5508), 1, - anon_sym_namespace, - ACTIONS(5367), 6, + ACTIONS(4978), 1, anon_sym_LPAREN2, - anon_sym_TILDE, + ACTIONS(5493), 1, + anon_sym_LBRACK, + ACTIONS(6066), 1, + anon_sym_DOT, + ACTIONS(6068), 1, + anon_sym_DASH_GT, + STATE(2996), 1, + sym_argument_list, + ACTIONS(5495), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6100), 3, anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(5365), 35, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5489), 14, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - [90824] = 10, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(5487), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + [88230] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5517), 1, - anon_sym___attribute__, - ACTIONS(5520), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5523), 1, - anon_sym___declspec, - ACTIONS(5529), 1, - anon_sym_virtual, - ACTIONS(5514), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - ACTIONS(5510), 7, + ACTIONS(5709), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - anon_sym___based, - anon_sym_LBRACK, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - ACTIONS(5526), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(3207), 8, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(5512), 10, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(5707), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, anon_sym_GT2, - [90888] = 7, + [88287] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5252), 1, - anon_sym_LBRACE, - ACTIONS(5532), 1, - anon_sym_COLON, - STATE(2853), 1, - sym__enum_base_clause, - STATE(2876), 1, - sym_enumerator_list, - ACTIONS(4278), 11, + ACTIONS(5760), 20, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4276), 26, + ACTIONS(5758), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, anon_sym_GT2, - [90945] = 3, + [88344] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4245), 12, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(4978), 1, anon_sym_LPAREN2, - anon_sym_STAR, + ACTIONS(5493), 1, + anon_sym_LBRACK, + ACTIONS(5583), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5589), 1, + anon_sym_EQ, + ACTIONS(6066), 1, + anon_sym_DOT, + ACTIONS(6068), 1, + anon_sym_DASH_GT, + ACTIONS(6102), 1, anon_sym_PIPE_PIPE, + ACTIONS(6104), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_GT2, - ACTIONS(4247), 29, + ACTIONS(6106), 1, + anon_sym_PIPE, + ACTIONS(6110), 1, anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, + ACTIONS(6116), 1, + anon_sym_GT_EQ, + ACTIONS(6122), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6124), 1, anon_sym_or, + ACTIONS(6126), 1, anon_sym_and, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [90994] = 3, + ACTIONS(6128), 1, + anon_sym_bitor, + ACTIONS(6130), 1, + anon_sym_bitand, + STATE(2996), 1, + sym_argument_list, + ACTIONS(5495), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6098), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6108), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6118), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6100), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6112), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6114), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5585), 15, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + [88447] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4557), 13, + ACTIONS(4686), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4688), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(4559), 28, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [91043] = 24, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [88504] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1507), 1, - anon_sym_enum, - ACTIONS(1509), 1, - anon_sym_class, - ACTIONS(1511), 1, - anon_sym_struct, - ACTIONS(1513), 1, - anon_sym_union, - ACTIONS(1515), 1, - sym_auto, - ACTIONS(1517), 1, - anon_sym_decltype, - ACTIONS(1519), 1, - anon_sym_typename, - ACTIONS(5498), 1, - sym_identifier, - ACTIONS(5502), 1, - anon_sym_COLON_COLON, - ACTIONS(5504), 1, - sym_primitive_type, - STATE(1922), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2444), 1, - sym_qualified_type_identifier, - STATE(2540), 1, - sym_decltype_auto, - STATE(3894), 1, - sym__type_specifier, - STATE(4997), 1, - sym__scope_resolution, - STATE(6159), 1, - sym_dependent_type_identifier, - STATE(6314), 1, - sym_type_descriptor, - STATE(2247), 2, - sym_decltype, - sym_template_type, - STATE(3299), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(1503), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2541), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(59), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [91134] = 3, + ACTIONS(4978), 1, + anon_sym_LPAREN2, + ACTIONS(5493), 1, + anon_sym_LBRACK, + ACTIONS(5603), 1, + anon_sym_EQ, + ACTIONS(6066), 1, + anon_sym_DOT, + ACTIONS(6068), 1, + anon_sym_DASH_GT, + ACTIONS(6102), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6104), 1, + anon_sym_AMP_AMP, + ACTIONS(6106), 1, + anon_sym_PIPE, + ACTIONS(6110), 1, + anon_sym_AMP, + ACTIONS(6116), 1, + anon_sym_GT_EQ, + ACTIONS(6122), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6124), 1, + anon_sym_or, + ACTIONS(6126), 1, + anon_sym_and, + ACTIONS(6128), 1, + anon_sym_bitor, + ACTIONS(6130), 1, + anon_sym_bitand, + STATE(2996), 1, + sym_argument_list, + ACTIONS(5495), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6098), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6108), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6118), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6100), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6112), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6114), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5601), 16, + anon_sym_DOT_DOT_DOT, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + [88605] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4604), 13, + ACTIONS(5461), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(5463), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, anon_sym_GT2, - ACTIONS(4606), 28, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + [88662] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4978), 1, + anon_sym_LPAREN2, + ACTIONS(5493), 1, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [91183] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1697), 1, - sym_primitive_type, - ACTIONS(1701), 1, - anon_sym_class, - ACTIONS(1703), 1, - anon_sym_struct, - ACTIONS(1705), 1, - anon_sym_union, - ACTIONS(1707), 1, - sym_auto, - ACTIONS(1709), 1, - anon_sym_decltype, - ACTIONS(3906), 1, - sym_identifier, - ACTIONS(4641), 1, - anon_sym_COLON_COLON, - ACTIONS(5536), 1, - anon_sym_enum, - ACTIONS(5538), 1, - anon_sym_typename, - STATE(3554), 1, - sym_qualified_type_identifier, - STATE(3558), 1, - sym_decltype_auto, - STATE(3674), 1, - sym__type_specifier, - STATE(3905), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(4691), 1, - sym_type_descriptor, - STATE(5040), 1, - sym__scope_resolution, - STATE(6159), 1, - sym_dependent_type_identifier, - STATE(3198), 2, - sym_decltype, - sym_template_type, - STATE(3305), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(5534), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3601), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(59), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [91274] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1507), 1, - anon_sym_enum, - ACTIONS(1509), 1, - anon_sym_class, - ACTIONS(1511), 1, - anon_sym_struct, - ACTIONS(1513), 1, - anon_sym_union, - ACTIONS(1515), 1, - sym_auto, - ACTIONS(1517), 1, - anon_sym_decltype, - ACTIONS(1519), 1, - anon_sym_typename, - ACTIONS(5498), 1, - sym_identifier, - ACTIONS(5502), 1, - anon_sym_COLON_COLON, - ACTIONS(5504), 1, - sym_primitive_type, - STATE(1922), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2444), 1, - sym_qualified_type_identifier, - STATE(2540), 1, - sym_decltype_auto, - STATE(3894), 1, - sym__type_specifier, - STATE(4997), 1, - sym__scope_resolution, - STATE(6159), 1, - sym_dependent_type_identifier, - STATE(6306), 1, - sym_type_descriptor, - STATE(2247), 2, - sym_decltype, - sym_template_type, - STATE(3299), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(1503), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2541), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(59), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [91365] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4569), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, + ACTIONS(5677), 1, anon_sym_EQ, - anon_sym_GT2, - ACTIONS(4571), 28, + ACTIONS(6066), 1, + anon_sym_DOT, + ACTIONS(6068), 1, + anon_sym_DASH_GT, + ACTIONS(6102), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6104), 1, + anon_sym_AMP_AMP, + ACTIONS(6106), 1, + anon_sym_PIPE, + ACTIONS(6110), 1, anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [91414] = 3, + ACTIONS(6116), 1, + anon_sym_GT_EQ, + ACTIONS(6122), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6124), 1, + anon_sym_or, + ACTIONS(6126), 1, + anon_sym_and, + ACTIONS(6128), 1, + anon_sym_bitor, + ACTIONS(6130), 1, + anon_sym_bitand, + STATE(2996), 1, + sym_argument_list, + ACTIONS(5495), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6098), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6108), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6118), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6100), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6112), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6114), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5675), 16, + anon_sym_DOT_DOT_DOT, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + [88763] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(4577), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(4978), 1, anon_sym_LPAREN2, - anon_sym_TILDE, + ACTIONS(5493), 1, + anon_sym_LBRACK, + ACTIONS(6066), 1, + anon_sym_DOT, + ACTIONS(6068), 1, + anon_sym_DASH_GT, + ACTIONS(6122), 1, + anon_sym_LT_EQ_GT, + STATE(2996), 1, + sym_argument_list, + ACTIONS(5495), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6098), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6118), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6100), 3, anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(4579), 28, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5669), 10, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [91463] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1507), 1, - anon_sym_enum, - ACTIONS(1509), 1, - anon_sym_class, - ACTIONS(1511), 1, - anon_sym_struct, - ACTIONS(1513), 1, - anon_sym_union, - ACTIONS(1515), 1, - sym_auto, - ACTIONS(1517), 1, - anon_sym_decltype, - ACTIONS(1519), 1, - anon_sym_typename, - ACTIONS(5498), 1, - sym_identifier, - ACTIONS(5502), 1, - anon_sym_COLON_COLON, - ACTIONS(5504), 1, - sym_primitive_type, - STATE(1922), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2444), 1, - sym_qualified_type_identifier, - STATE(2540), 1, - sym_decltype_auto, - STATE(3894), 1, - sym__type_specifier, - STATE(4997), 1, - sym__scope_resolution, - STATE(6159), 1, - sym_dependent_type_identifier, - STATE(6559), 1, - sym_type_descriptor, - STATE(2247), 2, - sym_decltype, - sym_template_type, - STATE(3299), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(1503), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2541), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(59), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [91554] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(107), 1, - sym_auto, - ACTIONS(109), 1, - anon_sym_decltype, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(2932), 1, - sym_primitive_type, - ACTIONS(3906), 1, - sym_identifier, - ACTIONS(3916), 1, - anon_sym_COLON_COLON, - ACTIONS(5540), 1, - anon_sym_enum, - ACTIONS(5542), 1, - anon_sym_class, - ACTIONS(5544), 1, - anon_sym_struct, - ACTIONS(5546), 1, - anon_sym_union, - ACTIONS(5548), 1, - anon_sym_typename, - STATE(3259), 1, - sym_qualified_type_identifier, - STATE(3272), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3279), 1, - sym_decltype_auto, - STATE(3454), 1, - sym__type_specifier, - STATE(4691), 1, - sym_type_descriptor, - STATE(5034), 1, - sym__scope_resolution, - STATE(6159), 1, - sym_dependent_type_identifier, - STATE(3198), 2, - sym_decltype, - sym_template_type, - STATE(3324), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(2930), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3232), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(59), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [91645] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4541), 13, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(5667), 24, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(4543), 28, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [91694] = 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + [88840] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5417), 1, - anon_sym_LBRACK, - STATE(3296), 1, - sym_new_declarator, - ACTIONS(4662), 9, + ACTIONS(5432), 20, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4660), 30, + ACTIONS(5430), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COLON, + anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [91747] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4612), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(4614), 28, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [91796] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1507), 1, - anon_sym_enum, - ACTIONS(1509), 1, - anon_sym_class, - ACTIONS(1511), 1, - anon_sym_struct, - ACTIONS(1513), 1, - anon_sym_union, - ACTIONS(1515), 1, - sym_auto, - ACTIONS(1517), 1, - anon_sym_decltype, - ACTIONS(1519), 1, - anon_sym_typename, - ACTIONS(5498), 1, - sym_identifier, - ACTIONS(5502), 1, - anon_sym_COLON_COLON, - ACTIONS(5504), 1, - sym_primitive_type, - STATE(1922), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2444), 1, - sym_qualified_type_identifier, - STATE(2540), 1, - sym_decltype_auto, - STATE(3894), 1, - sym__type_specifier, - STATE(4997), 1, - sym__scope_resolution, - STATE(6022), 1, - sym_type_descriptor, - STATE(6159), 1, - sym_dependent_type_identifier, - STATE(2247), 2, - sym_decltype, - sym_template_type, - STATE(3299), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(1503), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2541), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(59), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [91887] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4461), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, anon_sym_GT2, - ACTIONS(4463), 28, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [91936] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1521), 1, - anon_sym_operator, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(1683), 1, - anon_sym_TILDE, - ACTIONS(3226), 1, - anon_sym_LPAREN2, - ACTIONS(4302), 1, - sym_identifier, - ACTIONS(4306), 1, - anon_sym_STAR, - ACTIONS(4308), 1, - anon_sym_AMP_AMP, - ACTIONS(4310), 1, - anon_sym_AMP, - ACTIONS(4312), 1, - anon_sym_COLON_COLON, - ACTIONS(4314), 1, - anon_sym_LBRACK, - ACTIONS(5461), 1, - anon_sym_DOT_DOT_DOT, - STATE(3482), 1, - sym_parameter_list, - STATE(4598), 1, - sym__scope_resolution, - STATE(4650), 1, - sym__declarator, - STATE(4765), 1, - sym__function_declarator_seq, - STATE(4922), 1, - sym__abstract_declarator, - STATE(5501), 1, - sym_variadic_declarator, - STATE(6066), 1, - sym_ms_based_modifier, - ACTIONS(5550), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(6159), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(4764), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - STATE(4918), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [92029] = 6, + [88897] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5559), 2, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(5555), 4, + ACTIONS(4978), 1, anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - ACTIONS(5557), 5, - anon_sym_AMP, - anon_sym___based, + ACTIONS(5493), 1, anon_sym_LBRACK, - anon_sym_explicit, - anon_sym_operator, - ACTIONS(5562), 11, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_auto, - anon_sym_typename, - ACTIONS(5552), 19, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_template, - [92084] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4561), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, + ACTIONS(6066), 1, + anon_sym_DOT, + ACTIONS(6068), 1, + anon_sym_DASH_GT, + STATE(2996), 1, + sym_argument_list, + ACTIONS(5495), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5665), 17, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(4563), 28, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [92133] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4565), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT2, - ACTIONS(4567), 28, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [92182] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(107), 1, - sym_auto, - ACTIONS(109), 1, - anon_sym_decltype, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(2922), 1, - sym_identifier, - ACTIONS(2928), 1, - anon_sym_COLON_COLON, - ACTIONS(2932), 1, - sym_primitive_type, - ACTIONS(2934), 1, - anon_sym_enum, - ACTIONS(2936), 1, - anon_sym_class, - ACTIONS(2938), 1, - anon_sym_struct, - ACTIONS(2940), 1, - anon_sym_union, - ACTIONS(2942), 1, - anon_sym_typename, - STATE(3259), 1, - sym_qualified_type_identifier, - STATE(3272), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3279), 1, - sym_decltype_auto, - STATE(3866), 1, - sym__type_specifier, - STATE(4691), 1, - sym_type_descriptor, - STATE(5006), 1, - sym__scope_resolution, - STATE(6159), 1, - sym_dependent_type_identifier, - STATE(3198), 2, - sym_decltype, - sym_template_type, - STATE(3291), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(2930), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3232), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(59), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [92273] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4457), 13, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(5663), 25, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(4459), 28, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [92322] = 25, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + [88966] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1521), 1, - anon_sym_operator, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(1683), 1, - anon_sym_TILDE, - ACTIONS(3226), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(4302), 1, - sym_identifier, - ACTIONS(4312), 1, - anon_sym_COLON_COLON, - ACTIONS(4314), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(4316), 1, + ACTIONS(6066), 1, + anon_sym_DOT, + ACTIONS(6068), 1, + anon_sym_DASH_GT, + STATE(2996), 1, + sym_argument_list, + ACTIONS(5647), 17, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - ACTIONS(4318), 1, - anon_sym_AMP_AMP, - ACTIONS(4320), 1, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(5461), 1, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(5645), 27, anon_sym_DOT_DOT_DOT, - STATE(3556), 1, - sym_parameter_list, - STATE(4598), 1, - sym__scope_resolution, - STATE(4650), 1, - sym__declarator, - STATE(4765), 1, - sym__function_declarator_seq, - STATE(4955), 1, - sym__abstract_declarator, - STATE(5501), 1, - sym_variadic_declarator, - STATE(6066), 1, - sym_ms_based_modifier, - ACTIONS(5550), 2, - anon_sym_COMMA, - anon_sym_GT2, - STATE(6159), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(4764), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - STATE(4918), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [92415] = 7, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + [89033] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5252), 1, - anon_sym_LBRACE, - ACTIONS(5532), 1, - anon_sym_COLON, - STATE(2861), 1, - sym__enum_base_clause, - STATE(2929), 1, - sym_enumerator_list, - ACTIONS(4270), 11, + ACTIONS(5752), 20, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4268), 26, + ACTIONS(5750), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, anon_sym_GT2, - [92472] = 3, + [89090] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4322), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, + ACTIONS(5748), 20, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(5746), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [89147] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5744), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(5742), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [89204] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5088), 1, + anon_sym_LPAREN2, + ACTIONS(5784), 1, + anon_sym_LBRACK, + STATE(3343), 1, + sym_argument_list, + ACTIONS(5786), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5916), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6070), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6090), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6072), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5489), 7, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_EQ, + ACTIONS(5487), 28, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [89277] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4978), 1, + anon_sym_LPAREN2, + ACTIONS(5493), 1, + anon_sym_LBRACK, + ACTIONS(5764), 1, + anon_sym_EQ, + ACTIONS(6066), 1, + anon_sym_DOT, + ACTIONS(6068), 1, + anon_sym_DASH_GT, + ACTIONS(6102), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6104), 1, + anon_sym_AMP_AMP, + ACTIONS(6106), 1, + anon_sym_PIPE, + ACTIONS(6110), 1, + anon_sym_AMP, + ACTIONS(6116), 1, + anon_sym_GT_EQ, + ACTIONS(6122), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6124), 1, + anon_sym_or, + ACTIONS(6126), 1, + anon_sym_and, + ACTIONS(6128), 1, + anon_sym_bitor, + ACTIONS(6130), 1, + anon_sym_bitand, + STATE(2996), 1, + sym_argument_list, + ACTIONS(5495), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6098), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6108), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6118), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6100), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6112), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6114), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5762), 16, + anon_sym_DOT_DOT_DOT, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + [89378] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5701), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(5699), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [89435] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5088), 1, + anon_sym_LPAREN2, + ACTIONS(5784), 1, + anon_sym_LBRACK, + STATE(3343), 1, + sym_argument_list, + ACTIONS(5786), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5916), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6070), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6072), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5489), 9, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(5487), 28, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [89506] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5597), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(5595), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [89563] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5629), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(5627), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [89620] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5088), 1, + anon_sym_LPAREN2, + ACTIONS(5784), 1, + anon_sym_LBRACK, + ACTIONS(5902), 1, + anon_sym_LT_EQ_GT, + STATE(3343), 1, + sym_argument_list, + ACTIONS(5786), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5916), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6070), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6090), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6072), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5489), 7, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_EQ, + ACTIONS(5487), 27, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [89695] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5553), 1, + anon_sym_EQ, + ACTIONS(5555), 13, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + ACTIONS(4465), 17, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4457), 18, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [89756] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5088), 1, + anon_sym_LPAREN2, + ACTIONS(5784), 1, + anon_sym_LBRACK, + ACTIONS(5902), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6088), 1, + anon_sym_GT_EQ, + STATE(3343), 1, + sym_argument_list, + ACTIONS(5786), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5916), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6070), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6090), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6072), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6086), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5489), 4, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ, + ACTIONS(5487), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [89835] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5088), 1, + anon_sym_LPAREN2, + ACTIONS(5784), 1, + anon_sym_LBRACK, + ACTIONS(5902), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6088), 1, + anon_sym_GT_EQ, + STATE(3343), 1, + sym_argument_list, + ACTIONS(5786), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5916), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6070), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6090), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6072), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6084), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6086), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5489), 4, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ, + ACTIONS(5487), 23, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [89916] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5088), 1, + anon_sym_LPAREN2, + ACTIONS(5784), 1, + anon_sym_LBRACK, + ACTIONS(5902), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6082), 1, + anon_sym_AMP, + ACTIONS(6088), 1, + anon_sym_GT_EQ, + ACTIONS(6096), 1, + anon_sym_bitand, + STATE(3343), 1, + sym_argument_list, + ACTIONS(5786), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5916), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6070), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6090), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5489), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_EQ, + ACTIONS(6072), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6084), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6086), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5487), 22, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [90001] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5659), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(5657), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [90058] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5088), 1, + anon_sym_LPAREN2, + ACTIONS(5784), 1, + anon_sym_LBRACK, + ACTIONS(5902), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6080), 1, + anon_sym_CARET, + ACTIONS(6082), 1, + anon_sym_AMP, + ACTIONS(6088), 1, + anon_sym_GT_EQ, + ACTIONS(6094), 1, + anon_sym_xor, + ACTIONS(6096), 1, + anon_sym_bitand, + STATE(3343), 1, + sym_argument_list, + ACTIONS(5489), 2, + anon_sym_PIPE, + anon_sym_EQ, + ACTIONS(5786), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5916), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6070), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6090), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6072), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6084), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6086), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5487), 21, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [90147] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5573), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(5571), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [90204] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5724), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(5722), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [90261] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5088), 1, + anon_sym_LPAREN2, + ACTIONS(5489), 1, + anon_sym_EQ, + ACTIONS(5784), 1, + anon_sym_LBRACK, + ACTIONS(5902), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6078), 1, + anon_sym_PIPE, + ACTIONS(6080), 1, + anon_sym_CARET, + ACTIONS(6082), 1, + anon_sym_AMP, + ACTIONS(6088), 1, + anon_sym_GT_EQ, + ACTIONS(6092), 1, + anon_sym_bitor, + ACTIONS(6094), 1, + anon_sym_xor, + ACTIONS(6096), 1, + anon_sym_bitand, + STATE(3343), 1, + sym_argument_list, + ACTIONS(5786), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5916), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6070), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6090), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6072), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6084), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6086), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5487), 20, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [90354] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6132), 1, + anon_sym_LT, + STATE(2988), 1, + sym_template_argument_list, + ACTIONS(5533), 17, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(5531), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [90415] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5465), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(5467), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [90472] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3801), 14, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + ACTIONS(3799), 35, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + sym_identifier, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_requires, + [90529] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5088), 1, + anon_sym_LPAREN2, + ACTIONS(5784), 1, + anon_sym_LBRACK, + STATE(3343), 1, + sym_argument_list, + ACTIONS(5786), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5916), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5489), 14, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(5487), 28, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [90596] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5088), 1, + anon_sym_LPAREN2, + ACTIONS(5784), 1, + anon_sym_LBRACK, + STATE(3343), 1, + sym_argument_list, + ACTIONS(5786), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5916), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6072), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5489), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(5487), 28, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [90665] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4706), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4708), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [90722] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5728), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(5726), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [90779] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5088), 1, + anon_sym_LPAREN2, + ACTIONS(5603), 1, + anon_sym_EQ, + ACTIONS(5784), 1, + anon_sym_LBRACK, + ACTIONS(5902), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6078), 1, + anon_sym_PIPE, + ACTIONS(6080), 1, + anon_sym_CARET, + ACTIONS(6082), 1, + anon_sym_AMP, + ACTIONS(6088), 1, + anon_sym_GT_EQ, + ACTIONS(6092), 1, + anon_sym_bitor, + ACTIONS(6094), 1, + anon_sym_xor, + ACTIONS(6096), 1, + anon_sym_bitand, + STATE(3343), 1, + sym_argument_list, + ACTIONS(5786), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5916), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6070), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6074), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6076), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6090), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6072), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6084), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6086), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5601), 16, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [90876] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4722), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4724), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [90933] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4734), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4736), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [90990] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5740), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(5738), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [91047] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5639), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(5637), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [91104] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4505), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4510), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [91161] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4505), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4510), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [91218] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4505), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4510), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [91275] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4722), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4724), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [91332] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4505), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4510), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [91389] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4722), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4724), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [91446] = 6, + ACTIONS(3), 1, + sym_comment, + STATE(3536), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(6135), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(6138), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(4676), 18, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + ACTIONS(4678), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_literal_suffix, + [91509] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5453), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(5451), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [91566] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5673), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(5671), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [91623] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5577), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(5575), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [91680] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4505), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4510), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [91737] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4757), 2, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + ACTIONS(4759), 12, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + ACTIONS(4457), 17, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + ACTIONS(4465), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + [91798] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6141), 1, + sym_literal_suffix, + STATE(3550), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(2654), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2670), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(4465), 17, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + ACTIONS(4457), 18, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [91863] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2536), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(2534), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [91920] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2542), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(2540), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [91977] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6143), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6145), 1, + anon_sym_AMP_AMP, + ACTIONS(6147), 1, + anon_sym_or, + ACTIONS(6149), 1, + anon_sym_and, + ACTIONS(5299), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(5301), 27, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [92042] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5397), 23, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + anon_sym_DASH_GT, + sym_literal_suffix, + ACTIONS(5395), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [92099] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5088), 1, + anon_sym_LPAREN2, + ACTIONS(5589), 1, + anon_sym_EQ, + ACTIONS(5784), 1, + anon_sym_LBRACK, + ACTIONS(5836), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5902), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6078), 1, + anon_sym_PIPE, + ACTIONS(6080), 1, + anon_sym_CARET, + ACTIONS(6082), 1, + anon_sym_AMP, + ACTIONS(6088), 1, + anon_sym_GT_EQ, + ACTIONS(6092), 1, + anon_sym_bitor, + ACTIONS(6094), 1, + anon_sym_xor, + ACTIONS(6096), 1, + anon_sym_bitand, + STATE(3343), 1, + sym_argument_list, + ACTIONS(5786), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5916), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6070), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6074), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6076), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6090), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6072), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6084), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6086), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5585), 15, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [92198] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5540), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(5538), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [92255] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6145), 1, + anon_sym_AMP_AMP, + ACTIONS(6149), 1, + anon_sym_and, + ACTIONS(5204), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(5206), 28, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [92316] = 6, + ACTIONS(3), 1, + sym_comment, + STATE(3536), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(2654), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2670), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(4670), 18, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + ACTIONS(4672), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_literal_suffix, + [92379] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4698), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4700), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [92436] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4714), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4716), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [92492] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4525), 14, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4523), 34, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [92548] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4548), 14, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4546), 34, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [92604] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4568), 14, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4566), 34, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [92660] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5756), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5754), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [92716] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5776), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5774), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [92772] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5772), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5770), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [92828] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5768), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5766), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [92884] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5050), 14, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5052), 34, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [92940] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5465), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5467), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [92996] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4730), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4732), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [93052] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5629), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5627), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [93108] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4690), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4692), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [93164] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5659), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5657), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [93220] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5760), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5758), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [93276] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4519), 14, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4517), 34, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [93332] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5724), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5722), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [93388] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4694), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4696), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [93444] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4476), 1, + anon_sym_COLON_COLON, + ACTIONS(6151), 1, + anon_sym_LT, + STATE(3608), 1, + sym_template_argument_list, + ACTIONS(4481), 11, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + ACTIONS(5026), 34, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [93506] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5717), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5715), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [93562] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5713), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5711), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [93618] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5581), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5579), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [93674] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5752), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5750), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [93730] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5705), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5703), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [93786] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5461), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5463), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [93842] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5593), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2960), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [93898] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5043), 1, + anon_sym_COLON_COLON, + ACTIONS(5062), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5064), 34, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [93956] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5950), 1, + anon_sym_EQ, + ACTIONS(5952), 13, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + ACTIONS(4457), 17, + anon_sym_DOT_DOT_DOT, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + ACTIONS(4465), 17, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + [94016] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5689), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5687), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [94072] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5748), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5746), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [94128] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5744), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5742), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [94184] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5740), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5738), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [94240] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4722), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4724), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [94296] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4722), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4724), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [94352] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4722), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4724), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [94408] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4523), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4525), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [94464] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4527), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4529), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [94520] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4531), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4533), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [94576] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4546), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4548), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [94632] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4566), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4568), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [94688] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4517), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4519), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [94744] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5685), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5683), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [94800] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5655), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5653), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [94856] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5043), 1, + anon_sym_COLON_COLON, + ACTIONS(5039), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5041), 34, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [94914] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5651), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5649), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [94970] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4726), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4728), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [95026] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4535), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4537), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [95082] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4537), 14, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4535), 34, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [95138] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4734), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4736), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [95194] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5043), 1, + anon_sym_COLON_COLON, + ACTIONS(5039), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5041), 34, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [95252] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5039), 14, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5041), 34, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [95308] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5728), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5726), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [95364] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2542), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2540), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [95420] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4702), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4704), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [95476] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5701), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5699), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [95532] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4710), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4712), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [95588] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4555), 14, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4550), 34, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [95644] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5736), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5734), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [95700] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6153), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6155), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5299), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5301), 28, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [95760] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4533), 14, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4531), 34, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [95816] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4698), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4700), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [95872] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5563), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5561), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [95928] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4686), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4688), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [95984] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4529), 14, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4527), 34, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [96040] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5569), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5567), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [96096] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5780), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5778), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [96152] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4476), 1, + anon_sym_COLON_COLON, + ACTIONS(6151), 1, + anon_sym_LT, + STATE(3608), 1, + sym_template_argument_list, + ACTIONS(4503), 11, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + ACTIONS(4498), 34, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [96214] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5477), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5479), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [96270] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4706), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4708), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [96326] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2536), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2534), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [96382] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5673), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5671), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [96438] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6155), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5204), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5206), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [96496] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4718), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4720), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [96552] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5607), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5605), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [96608] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5611), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5609), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [96664] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5619), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5617), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [96720] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5709), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5707), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [96776] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5615), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5613), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [96832] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4476), 1, + anon_sym_COLON_COLON, + ACTIONS(6045), 1, + anon_sym_LT, + STATE(3608), 1, + sym_template_argument_list, + ACTIONS(4463), 12, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4455), 32, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [96893] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6159), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(6157), 41, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + [96948] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4476), 1, + anon_sym_COLON_COLON, + ACTIONS(6151), 1, + anon_sym_LT, + STATE(3608), 1, + sym_template_argument_list, + ACTIONS(5104), 12, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5106), 32, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [97009] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4827), 1, + anon_sym___attribute__, + ACTIONS(4831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4833), 1, + anon_sym___declspec, + ACTIONS(4837), 1, + anon_sym_virtual, + ACTIONS(6165), 1, + sym_auto, + ACTIONS(6167), 1, + anon_sym_decltype, + STATE(3692), 1, + sym_decltype_auto, + ACTIONS(4825), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + ACTIONS(6161), 6, + anon_sym_AMP, + anon_sym___based, + anon_sym_LBRACK, + sym_identifier, + anon_sym_template, + anon_sym_operator, + STATE(3669), 8, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(6163), 10, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4835), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [97084] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6169), 22, + anon_sym_DASH, + anon_sym_PLUS, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + ACTIONS(6171), 25, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [97139] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4827), 1, + anon_sym___attribute__, + ACTIONS(4831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4833), 1, + anon_sym___declspec, + ACTIONS(4837), 1, + anon_sym_virtual, + ACTIONS(6165), 1, + sym_auto, + ACTIONS(6167), 1, + anon_sym_decltype, + STATE(3692), 1, + sym_decltype_auto, + ACTIONS(4825), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + ACTIONS(6173), 6, + anon_sym_AMP, + anon_sym___based, + anon_sym_LBRACK, + sym_identifier, + anon_sym_template, + anon_sym_operator, + STATE(3681), 8, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(6175), 10, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4835), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [97214] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(113), 1, + sym_auto, + ACTIONS(115), 1, + anon_sym_decltype, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(3663), 1, + anon_sym_COLON_COLON, + ACTIONS(6177), 1, + sym_identifier, + ACTIONS(6181), 1, + sym_primitive_type, + ACTIONS(6183), 1, + anon_sym_enum, + ACTIONS(6185), 1, + anon_sym_class, + ACTIONS(6187), 1, + anon_sym_struct, + ACTIONS(6189), 1, + anon_sym_union, + ACTIONS(6191), 1, + anon_sym_typename, + STATE(3657), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3717), 1, + sym_decltype_auto, + STATE(5070), 1, + aux_sym__typedef_sized_type_specifier, + STATE(5184), 1, + sym_qualified_type_identifier, + STATE(5779), 1, + sym__scope_resolution, + STATE(6545), 1, + sym__type_specifier, + STATE(7638), 1, + sym_dependent_type_identifier, + STATE(4715), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(4788), 2, + sym__typedef_type_specifier, + sym_macro_type_specifier, + STATE(5145), 2, + sym_decltype, + sym_template_type, + ACTIONS(6179), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(5169), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(57), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [97312] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(113), 1, + sym_auto, + ACTIONS(115), 1, + anon_sym_decltype, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(3663), 1, + anon_sym_COLON_COLON, + ACTIONS(6177), 1, + sym_identifier, + ACTIONS(6181), 1, + sym_primitive_type, + ACTIONS(6183), 1, + anon_sym_enum, + ACTIONS(6185), 1, + anon_sym_class, + ACTIONS(6187), 1, + anon_sym_struct, + ACTIONS(6189), 1, + anon_sym_union, + ACTIONS(6191), 1, + anon_sym_typename, + STATE(3657), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3717), 1, + sym_decltype_auto, + STATE(5070), 1, + aux_sym__typedef_sized_type_specifier, + STATE(5184), 1, + sym_qualified_type_identifier, + STATE(5779), 1, + sym__scope_resolution, + STATE(6545), 1, + sym__type_specifier, + STATE(7638), 1, + sym_dependent_type_identifier, + STATE(3663), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(4811), 2, + sym__typedef_type_specifier, + sym_macro_type_specifier, + STATE(5145), 2, + sym_decltype, + sym_template_type, + ACTIONS(6179), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(5169), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(57), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [97410] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4476), 1, + anon_sym_COLON_COLON, + ACTIONS(6193), 1, + anon_sym_LT, + STATE(2659), 1, + sym_template_argument_list, + ACTIONS(5026), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_COLON, + anon_sym_DOT, + ACTIONS(4481), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + [97470] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(113), 1, + sym_auto, + ACTIONS(115), 1, + anon_sym_decltype, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(3663), 1, + anon_sym_COLON_COLON, + ACTIONS(6177), 1, + sym_identifier, + ACTIONS(6181), 1, + sym_primitive_type, + ACTIONS(6183), 1, + anon_sym_enum, + ACTIONS(6185), 1, + anon_sym_class, + ACTIONS(6187), 1, + anon_sym_struct, + ACTIONS(6189), 1, + anon_sym_union, + ACTIONS(6191), 1, + anon_sym_typename, + STATE(3657), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3717), 1, + sym_decltype_auto, + STATE(5070), 1, + aux_sym__typedef_sized_type_specifier, + STATE(5184), 1, + sym_qualified_type_identifier, + STATE(5779), 1, + sym__scope_resolution, + STATE(6545), 1, + sym__type_specifier, + STATE(7638), 1, + sym_dependent_type_identifier, + STATE(3662), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(4806), 2, + sym__typedef_type_specifier, + sym_macro_type_specifier, + STATE(5145), 2, + sym_decltype, + sym_template_type, + ACTIONS(6179), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(5169), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(57), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [97568] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(113), 1, + sym_auto, + ACTIONS(115), 1, + anon_sym_decltype, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(3663), 1, + anon_sym_COLON_COLON, + ACTIONS(6177), 1, + sym_identifier, + ACTIONS(6181), 1, + sym_primitive_type, + ACTIONS(6183), 1, + anon_sym_enum, + ACTIONS(6185), 1, + anon_sym_class, + ACTIONS(6187), 1, + anon_sym_struct, + ACTIONS(6189), 1, + anon_sym_union, + ACTIONS(6191), 1, + anon_sym_typename, + STATE(3657), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3717), 1, + sym_decltype_auto, + STATE(5070), 1, + aux_sym__typedef_sized_type_specifier, + STATE(5184), 1, + sym_qualified_type_identifier, + STATE(5779), 1, + sym__scope_resolution, + STATE(6545), 1, + sym__type_specifier, + STATE(7638), 1, + sym_dependent_type_identifier, + STATE(4715), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(4816), 2, + sym__typedef_type_specifier, + sym_macro_type_specifier, + STATE(5145), 2, + sym_decltype, + sym_template_type, + ACTIONS(6179), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(5169), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(57), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [97666] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4783), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_literal_suffix, + ACTIONS(4781), 28, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_GT2, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [97720] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(113), 1, + sym_auto, + ACTIONS(115), 1, + anon_sym_decltype, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(3663), 1, + anon_sym_COLON_COLON, + ACTIONS(6177), 1, + sym_identifier, + ACTIONS(6181), 1, + sym_primitive_type, + ACTIONS(6183), 1, + anon_sym_enum, + ACTIONS(6185), 1, + anon_sym_class, + ACTIONS(6187), 1, + anon_sym_struct, + ACTIONS(6189), 1, + anon_sym_union, + ACTIONS(6191), 1, + anon_sym_typename, + STATE(3657), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3717), 1, + sym_decltype_auto, + STATE(5070), 1, + aux_sym__typedef_sized_type_specifier, + STATE(5184), 1, + sym_qualified_type_identifier, + STATE(5779), 1, + sym__scope_resolution, + STATE(6545), 1, + sym__type_specifier, + STATE(7638), 1, + sym_dependent_type_identifier, + STATE(4715), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(4790), 2, + sym__typedef_type_specifier, + sym_macro_type_specifier, + STATE(5145), 2, + sym_decltype, + sym_template_type, + ACTIONS(6179), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(5169), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(57), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [97818] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(113), 1, + sym_auto, + ACTIONS(115), 1, + anon_sym_decltype, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(3663), 1, + anon_sym_COLON_COLON, + ACTIONS(6177), 1, + sym_identifier, + ACTIONS(6181), 1, + sym_primitive_type, + ACTIONS(6183), 1, + anon_sym_enum, + ACTIONS(6185), 1, + anon_sym_class, + ACTIONS(6187), 1, + anon_sym_struct, + ACTIONS(6189), 1, + anon_sym_union, + ACTIONS(6191), 1, + anon_sym_typename, + STATE(3657), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3717), 1, + sym_decltype_auto, + STATE(5070), 1, + aux_sym__typedef_sized_type_specifier, + STATE(5184), 1, + sym_qualified_type_identifier, + STATE(5779), 1, + sym__scope_resolution, + STATE(6545), 1, + sym__type_specifier, + STATE(7638), 1, + sym_dependent_type_identifier, + STATE(3636), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(4783), 2, + sym__typedef_type_specifier, + sym_macro_type_specifier, + STATE(5145), 2, + sym_decltype, + sym_template_type, + ACTIONS(6179), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(5169), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(57), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [97916] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6195), 1, + anon_sym_LBRACE, + ACTIONS(6197), 1, + anon_sym_COLON, + STATE(3768), 1, + sym_field_declaration_list, + STATE(6054), 1, + sym_virtual_specifier, + STATE(6930), 1, + sym_base_class_clause, + ACTIONS(6199), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4890), 12, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4892), 27, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + [97982] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(113), 1, + sym_auto, + ACTIONS(115), 1, + anon_sym_decltype, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(3663), 1, + anon_sym_COLON_COLON, + ACTIONS(6177), 1, + sym_identifier, + ACTIONS(6181), 1, + sym_primitive_type, + ACTIONS(6183), 1, + anon_sym_enum, + ACTIONS(6185), 1, + anon_sym_class, + ACTIONS(6187), 1, + anon_sym_struct, + ACTIONS(6189), 1, + anon_sym_union, + ACTIONS(6191), 1, + anon_sym_typename, + STATE(3657), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3717), 1, + sym_decltype_auto, + STATE(5070), 1, + aux_sym__typedef_sized_type_specifier, + STATE(5184), 1, + sym_qualified_type_identifier, + STATE(5779), 1, + sym__scope_resolution, + STATE(6545), 1, + sym__type_specifier, + STATE(7638), 1, + sym_dependent_type_identifier, + STATE(3647), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(4795), 2, + sym__typedef_type_specifier, + sym_macro_type_specifier, + STATE(5145), 2, + sym_decltype, + sym_template_type, + ACTIONS(6179), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(5169), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(57), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [98080] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4766), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_literal_suffix, + ACTIONS(4764), 28, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_GT2, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [98134] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(113), 1, + sym_auto, + ACTIONS(115), 1, + anon_sym_decltype, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(3663), 1, + anon_sym_COLON_COLON, + ACTIONS(6177), 1, + sym_identifier, + ACTIONS(6181), 1, + sym_primitive_type, + ACTIONS(6183), 1, + anon_sym_enum, + ACTIONS(6185), 1, + anon_sym_class, + ACTIONS(6187), 1, + anon_sym_struct, + ACTIONS(6189), 1, + anon_sym_union, + ACTIONS(6191), 1, + anon_sym_typename, + STATE(3657), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3717), 1, + sym_decltype_auto, + STATE(5070), 1, + aux_sym__typedef_sized_type_specifier, + STATE(5184), 1, + sym_qualified_type_identifier, + STATE(5779), 1, + sym__scope_resolution, + STATE(6545), 1, + sym__type_specifier, + STATE(7638), 1, + sym_dependent_type_identifier, + STATE(4715), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(4823), 2, + sym__typedef_type_specifier, + sym_macro_type_specifier, + STATE(5145), 2, + sym_decltype, + sym_template_type, + ACTIONS(6179), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(5169), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(57), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [98232] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(113), 1, + sym_auto, + ACTIONS(115), 1, + anon_sym_decltype, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(3663), 1, + anon_sym_COLON_COLON, + ACTIONS(6177), 1, + sym_identifier, + ACTIONS(6181), 1, + sym_primitive_type, + ACTIONS(6183), 1, + anon_sym_enum, + ACTIONS(6185), 1, + anon_sym_class, + ACTIONS(6187), 1, + anon_sym_struct, + ACTIONS(6189), 1, + anon_sym_union, + ACTIONS(6191), 1, + anon_sym_typename, + STATE(3657), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3717), 1, + sym_decltype_auto, + STATE(5070), 1, + aux_sym__typedef_sized_type_specifier, + STATE(5184), 1, + sym_qualified_type_identifier, + STATE(5779), 1, + sym__scope_resolution, + STATE(6545), 1, + sym__type_specifier, + STATE(7638), 1, + sym_dependent_type_identifier, + STATE(3652), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(4805), 2, + sym__typedef_type_specifier, + sym_macro_type_specifier, + STATE(5145), 2, + sym_decltype, + sym_template_type, + ACTIONS(6179), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(5169), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(57), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [98330] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(113), 1, + sym_auto, + ACTIONS(115), 1, + anon_sym_decltype, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(3663), 1, + anon_sym_COLON_COLON, + ACTIONS(6177), 1, + sym_identifier, + ACTIONS(6181), 1, + sym_primitive_type, + ACTIONS(6183), 1, + anon_sym_enum, + ACTIONS(6185), 1, + anon_sym_class, + ACTIONS(6187), 1, + anon_sym_struct, + ACTIONS(6189), 1, + anon_sym_union, + ACTIONS(6191), 1, + anon_sym_typename, + STATE(3657), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3717), 1, + sym_decltype_auto, + STATE(5070), 1, + aux_sym__typedef_sized_type_specifier, + STATE(5184), 1, + sym_qualified_type_identifier, + STATE(5779), 1, + sym__scope_resolution, + STATE(6545), 1, + sym__type_specifier, + STATE(7638), 1, + sym_dependent_type_identifier, + STATE(3640), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(4822), 2, + sym__typedef_type_specifier, + sym_macro_type_specifier, + STATE(5145), 2, + sym_decltype, + sym_template_type, + ACTIONS(6179), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(5169), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(57), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [98428] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6195), 1, + anon_sym_LBRACE, + ACTIONS(6197), 1, + anon_sym_COLON, + STATE(3773), 1, + sym_field_declaration_list, + STATE(6035), 1, + sym_virtual_specifier, + STATE(6732), 1, + sym_base_class_clause, + ACTIONS(6199), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4872), 12, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4874), 27, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + [98494] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6195), 1, + anon_sym_LBRACE, + ACTIONS(6197), 1, + anon_sym_COLON, + STATE(3691), 1, + sym_field_declaration_list, + STATE(6182), 1, + sym_virtual_specifier, + STATE(6759), 1, + sym_base_class_clause, + ACTIONS(6199), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4937), 12, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4939), 27, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + [98560] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(113), 1, + sym_auto, + ACTIONS(115), 1, + anon_sym_decltype, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(3663), 1, + anon_sym_COLON_COLON, + ACTIONS(6177), 1, + sym_identifier, + ACTIONS(6181), 1, + sym_primitive_type, + ACTIONS(6183), 1, + anon_sym_enum, + ACTIONS(6185), 1, + anon_sym_class, + ACTIONS(6187), 1, + anon_sym_struct, + ACTIONS(6189), 1, + anon_sym_union, + ACTIONS(6191), 1, + anon_sym_typename, + STATE(3657), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3717), 1, + sym_decltype_auto, + STATE(5070), 1, + aux_sym__typedef_sized_type_specifier, + STATE(5184), 1, + sym_qualified_type_identifier, + STATE(5779), 1, + sym__scope_resolution, + STATE(6545), 1, + sym__type_specifier, + STATE(7638), 1, + sym_dependent_type_identifier, + STATE(4715), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(4820), 2, + sym__typedef_type_specifier, + sym_macro_type_specifier, + STATE(5145), 2, + sym_decltype, + sym_template_type, + ACTIONS(6179), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(5169), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(57), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [98658] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(113), 1, + sym_auto, + ACTIONS(115), 1, + anon_sym_decltype, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(3663), 1, + anon_sym_COLON_COLON, + ACTIONS(6177), 1, + sym_identifier, + ACTIONS(6181), 1, + sym_primitive_type, + ACTIONS(6183), 1, + anon_sym_enum, + ACTIONS(6185), 1, + anon_sym_class, + ACTIONS(6187), 1, + anon_sym_struct, + ACTIONS(6189), 1, + anon_sym_union, + ACTIONS(6191), 1, + anon_sym_typename, + STATE(3657), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3717), 1, + sym_decltype_auto, + STATE(5070), 1, + aux_sym__typedef_sized_type_specifier, + STATE(5184), 1, + sym_qualified_type_identifier, + STATE(5779), 1, + sym__scope_resolution, + STATE(6545), 1, + sym__type_specifier, + STATE(7638), 1, + sym_dependent_type_identifier, + STATE(3664), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(4775), 2, + sym__typedef_type_specifier, + sym_macro_type_specifier, + STATE(5145), 2, + sym_decltype, + sym_template_type, + ACTIONS(6179), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(5169), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(57), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [98756] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4773), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_literal_suffix, + ACTIONS(4771), 28, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_GT2, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [98810] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(113), 1, + sym_auto, + ACTIONS(115), 1, + anon_sym_decltype, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(3663), 1, + anon_sym_COLON_COLON, + ACTIONS(6177), 1, + sym_identifier, + ACTIONS(6181), 1, + sym_primitive_type, + ACTIONS(6183), 1, + anon_sym_enum, + ACTIONS(6185), 1, + anon_sym_class, + ACTIONS(6187), 1, + anon_sym_struct, + ACTIONS(6189), 1, + anon_sym_union, + ACTIONS(6191), 1, + anon_sym_typename, + STATE(3657), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3717), 1, + sym_decltype_auto, + STATE(5070), 1, + aux_sym__typedef_sized_type_specifier, + STATE(5184), 1, + sym_qualified_type_identifier, + STATE(5779), 1, + sym__scope_resolution, + STATE(6545), 1, + sym__type_specifier, + STATE(7638), 1, + sym_dependent_type_identifier, + STATE(4715), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(4778), 2, + sym__typedef_type_specifier, + sym_macro_type_specifier, + STATE(5145), 2, + sym_decltype, + sym_template_type, + ACTIONS(6179), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(5169), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(57), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [98908] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4476), 1, + anon_sym_COLON_COLON, + ACTIONS(6201), 1, + anon_sym_LT, + STATE(2659), 1, + sym_template_argument_list, + ACTIONS(4498), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_COLON, + anon_sym_DOT, + ACTIONS(4503), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + [98968] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6204), 1, + sym_identifier, + ACTIONS(6209), 1, + sym_primitive_type, + STATE(3367), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6207), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(4807), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4809), 26, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + [99030] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4777), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_literal_suffix, + ACTIONS(4775), 28, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_GT2, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [99084] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(113), 1, + sym_auto, + ACTIONS(115), 1, + anon_sym_decltype, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(3663), 1, + anon_sym_COLON_COLON, + ACTIONS(6177), 1, + sym_identifier, + ACTIONS(6181), 1, + sym_primitive_type, + ACTIONS(6183), 1, + anon_sym_enum, + ACTIONS(6185), 1, + anon_sym_class, + ACTIONS(6187), 1, + anon_sym_struct, + ACTIONS(6189), 1, + anon_sym_union, + ACTIONS(6191), 1, + anon_sym_typename, + STATE(3657), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3717), 1, + sym_decltype_auto, + STATE(5070), 1, + aux_sym__typedef_sized_type_specifier, + STATE(5184), 1, + sym_qualified_type_identifier, + STATE(5779), 1, + sym__scope_resolution, + STATE(6545), 1, + sym__type_specifier, + STATE(7638), 1, + sym_dependent_type_identifier, + STATE(3655), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(4782), 2, + sym__typedef_type_specifier, + sym_macro_type_specifier, + STATE(5145), 2, + sym_decltype, + sym_template_type, + ACTIONS(6179), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(5169), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(57), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [99182] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(113), 1, + sym_auto, + ACTIONS(115), 1, + anon_sym_decltype, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(3663), 1, + anon_sym_COLON_COLON, + ACTIONS(6177), 1, + sym_identifier, + ACTIONS(6181), 1, + sym_primitive_type, + ACTIONS(6183), 1, + anon_sym_enum, + ACTIONS(6185), 1, + anon_sym_class, + ACTIONS(6187), 1, + anon_sym_struct, + ACTIONS(6189), 1, + anon_sym_union, + ACTIONS(6191), 1, + anon_sym_typename, + STATE(3657), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3717), 1, + sym_decltype_auto, + STATE(5070), 1, + aux_sym__typedef_sized_type_specifier, + STATE(5184), 1, + sym_qualified_type_identifier, + STATE(5779), 1, + sym__scope_resolution, + STATE(6545), 1, + sym__type_specifier, + STATE(7638), 1, + sym_dependent_type_identifier, + STATE(3642), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(4793), 2, + sym__typedef_type_specifier, + sym_macro_type_specifier, + STATE(5145), 2, + sym_decltype, + sym_template_type, + ACTIONS(6179), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(5169), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(57), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [99280] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(113), 1, + sym_auto, + ACTIONS(115), 1, + anon_sym_decltype, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(3663), 1, + anon_sym_COLON_COLON, + ACTIONS(6177), 1, + sym_identifier, + ACTIONS(6181), 1, + sym_primitive_type, + ACTIONS(6183), 1, + anon_sym_enum, + ACTIONS(6185), 1, + anon_sym_class, + ACTIONS(6187), 1, + anon_sym_struct, + ACTIONS(6189), 1, + anon_sym_union, + ACTIONS(6191), 1, + anon_sym_typename, + STATE(3657), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3717), 1, + sym_decltype_auto, + STATE(5070), 1, + aux_sym__typedef_sized_type_specifier, + STATE(5184), 1, + sym_qualified_type_identifier, + STATE(5779), 1, + sym__scope_resolution, + STATE(6545), 1, + sym__type_specifier, + STATE(7638), 1, + sym_dependent_type_identifier, + STATE(3667), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(4810), 2, + sym__typedef_type_specifier, + sym_macro_type_specifier, + STATE(5145), 2, + sym_decltype, + sym_template_type, + ACTIONS(6179), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(5169), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(57), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [99378] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(113), 1, + sym_auto, + ACTIONS(115), 1, + anon_sym_decltype, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(3663), 1, + anon_sym_COLON_COLON, + ACTIONS(6177), 1, + sym_identifier, + ACTIONS(6181), 1, + sym_primitive_type, + ACTIONS(6183), 1, + anon_sym_enum, + ACTIONS(6185), 1, + anon_sym_class, + ACTIONS(6187), 1, + anon_sym_struct, + ACTIONS(6189), 1, + anon_sym_union, + ACTIONS(6191), 1, + anon_sym_typename, + STATE(3657), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3717), 1, + sym_decltype_auto, + STATE(5070), 1, + aux_sym__typedef_sized_type_specifier, + STATE(5184), 1, + sym_qualified_type_identifier, + STATE(5779), 1, + sym__scope_resolution, + STATE(6545), 1, + sym__type_specifier, + STATE(7638), 1, + sym_dependent_type_identifier, + STATE(4715), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(4798), 2, + sym__typedef_type_specifier, + sym_macro_type_specifier, + STATE(5145), 2, + sym_decltype, + sym_template_type, + ACTIONS(6179), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(5169), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(57), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [99476] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(113), 1, + sym_auto, + ACTIONS(115), 1, + anon_sym_decltype, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(3663), 1, + anon_sym_COLON_COLON, + ACTIONS(6177), 1, + sym_identifier, + ACTIONS(6181), 1, + sym_primitive_type, + ACTIONS(6183), 1, + anon_sym_enum, + ACTIONS(6185), 1, + anon_sym_class, + ACTIONS(6187), 1, + anon_sym_struct, + ACTIONS(6189), 1, + anon_sym_union, + ACTIONS(6191), 1, + anon_sym_typename, + STATE(3657), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3717), 1, + sym_decltype_auto, + STATE(5070), 1, + aux_sym__typedef_sized_type_specifier, + STATE(5184), 1, + sym_qualified_type_identifier, + STATE(5779), 1, + sym__scope_resolution, + STATE(6545), 1, + sym__type_specifier, + STATE(7638), 1, + sym_dependent_type_identifier, + STATE(4715), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(4791), 2, + sym__typedef_type_specifier, + sym_macro_type_specifier, + STATE(5145), 2, + sym_decltype, + sym_template_type, + ACTIONS(6179), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(5169), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(57), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [99574] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(113), 1, + sym_auto, + ACTIONS(115), 1, + anon_sym_decltype, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(3663), 1, + anon_sym_COLON_COLON, + ACTIONS(6177), 1, + sym_identifier, + ACTIONS(6181), 1, + sym_primitive_type, + ACTIONS(6183), 1, + anon_sym_enum, + ACTIONS(6185), 1, + anon_sym_class, + ACTIONS(6187), 1, + anon_sym_struct, + ACTIONS(6189), 1, + anon_sym_union, + ACTIONS(6191), 1, + anon_sym_typename, + STATE(3657), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3717), 1, + sym_decltype_auto, + STATE(5070), 1, + aux_sym__typedef_sized_type_specifier, + STATE(5184), 1, + sym_qualified_type_identifier, + STATE(5779), 1, + sym__scope_resolution, + STATE(6545), 1, + sym__type_specifier, + STATE(7638), 1, + sym_dependent_type_identifier, + STATE(4715), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(4804), 2, + sym__typedef_type_specifier, + sym_macro_type_specifier, + STATE(5145), 2, + sym_decltype, + sym_template_type, + ACTIONS(6179), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(5169), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(57), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [99672] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(113), 1, + sym_auto, + ACTIONS(115), 1, + anon_sym_decltype, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(3663), 1, + anon_sym_COLON_COLON, + ACTIONS(6177), 1, + sym_identifier, + ACTIONS(6181), 1, + sym_primitive_type, + ACTIONS(6183), 1, + anon_sym_enum, + ACTIONS(6185), 1, + anon_sym_class, + ACTIONS(6187), 1, + anon_sym_struct, + ACTIONS(6189), 1, + anon_sym_union, + ACTIONS(6191), 1, + anon_sym_typename, + STATE(3657), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3717), 1, + sym_decltype_auto, + STATE(5070), 1, + aux_sym__typedef_sized_type_specifier, + STATE(5184), 1, + sym_qualified_type_identifier, + STATE(5779), 1, + sym__scope_resolution, + STATE(6545), 1, + sym__type_specifier, + STATE(7638), 1, + sym_dependent_type_identifier, + STATE(4715), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(4779), 2, + sym__typedef_type_specifier, + sym_macro_type_specifier, + STATE(5145), 2, + sym_decltype, + sym_template_type, + ACTIONS(6179), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(5169), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(57), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [99770] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(113), 1, + sym_auto, + ACTIONS(115), 1, + anon_sym_decltype, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(3663), 1, + anon_sym_COLON_COLON, + ACTIONS(6177), 1, + sym_identifier, + ACTIONS(6181), 1, + sym_primitive_type, + ACTIONS(6183), 1, + anon_sym_enum, + ACTIONS(6185), 1, + anon_sym_class, + ACTIONS(6187), 1, + anon_sym_struct, + ACTIONS(6189), 1, + anon_sym_union, + ACTIONS(6191), 1, + anon_sym_typename, + STATE(3657), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3717), 1, + sym_decltype_auto, + STATE(5070), 1, + aux_sym__typedef_sized_type_specifier, + STATE(5184), 1, + sym_qualified_type_identifier, + STATE(5779), 1, + sym__scope_resolution, + STATE(6545), 1, + sym__type_specifier, + STATE(7638), 1, + sym_dependent_type_identifier, + STATE(3665), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(4800), 2, + sym__typedef_type_specifier, + sym_macro_type_specifier, + STATE(5145), 2, + sym_decltype, + sym_template_type, + ACTIONS(6179), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(5169), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(57), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [99868] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(113), 1, + sym_auto, + ACTIONS(115), 1, + anon_sym_decltype, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(3663), 1, + anon_sym_COLON_COLON, + ACTIONS(6177), 1, + sym_identifier, + ACTIONS(6181), 1, + sym_primitive_type, + ACTIONS(6183), 1, + anon_sym_enum, + ACTIONS(6185), 1, + anon_sym_class, + ACTIONS(6187), 1, + anon_sym_struct, + ACTIONS(6189), 1, + anon_sym_union, + ACTIONS(6191), 1, + anon_sym_typename, + STATE(3657), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3717), 1, + sym_decltype_auto, + STATE(5070), 1, + aux_sym__typedef_sized_type_specifier, + STATE(5184), 1, + sym_qualified_type_identifier, + STATE(5779), 1, + sym__scope_resolution, + STATE(6545), 1, + sym__type_specifier, + STATE(7638), 1, + sym_dependent_type_identifier, + STATE(4715), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(4821), 2, + sym__typedef_type_specifier, + sym_macro_type_specifier, + STATE(5145), 2, + sym_decltype, + sym_template_type, + ACTIONS(6179), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(5169), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(57), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [99966] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6211), 1, + anon_sym_namespace, + ACTIONS(6000), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(5998), 38, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + [100021] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4827), 1, + anon_sym___attribute__, + ACTIONS(4831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4833), 1, + anon_sym___declspec, + ACTIONS(4837), 1, + anon_sym_virtual, + ACTIONS(4825), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + ACTIONS(6213), 7, + anon_sym_AMP, + anon_sym___based, + anon_sym_LBRACK, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + STATE(3679), 8, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(6215), 10, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4835), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [100088] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6217), 1, + anon_sym_namespace, + ACTIONS(6000), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(5998), 38, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + [100143] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6219), 1, + anon_sym_LBRACE, + STATE(3712), 1, + sym_enumerator_list, + ACTIONS(5157), 12, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5159), 31, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [100200] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1917), 1, + anon_sym_enum, + ACTIONS(1919), 1, + anon_sym_class, + ACTIONS(1921), 1, + anon_sym_struct, + ACTIONS(1923), 1, + anon_sym_union, + ACTIONS(1925), 1, + sym_auto, + ACTIONS(1927), 1, + anon_sym_decltype, + ACTIONS(1929), 1, + anon_sym_typename, + ACTIONS(6221), 1, + sym_identifier, + ACTIONS(6223), 1, + anon_sym_RPAREN, + ACTIONS(6225), 1, + anon_sym_COLON_COLON, + ACTIONS(6227), 1, + sym_primitive_type, + STATE(2230), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2774), 1, + sym_qualified_type_identifier, + STATE(2819), 1, + sym_decltype_auto, + STATE(4168), 1, + sym__type_specifier, + STATE(5741), 1, + sym__scope_resolution, + STATE(6452), 1, + sym_type_descriptor, + STATE(7638), 1, + sym_dependent_type_identifier, + STATE(2662), 2, + sym_decltype, + sym_template_type, + STATE(3781), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(1913), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2802), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(57), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [100297] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5137), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5139), 32, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [100350] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6219), 1, + anon_sym_LBRACE, + STATE(3746), 1, + sym_enumerator_list, + ACTIONS(5131), 12, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5133), 31, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [100407] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6229), 1, + anon_sym_namespace, + ACTIONS(6000), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(5998), 38, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + [100462] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6231), 1, + anon_sym_namespace, + ACTIONS(6000), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(5998), 38, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + [100517] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6165), 1, + sym_auto, + ACTIONS(6167), 1, + anon_sym_decltype, + STATE(3692), 1, + sym_decltype_auto, + ACTIONS(5141), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5143), 29, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [100576] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6233), 1, + anon_sym_namespace, + ACTIONS(6000), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(5998), 38, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + [100631] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6242), 1, + anon_sym___attribute__, + ACTIONS(6245), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6248), 1, + anon_sym___declspec, + ACTIONS(6254), 1, + anon_sym_virtual, + ACTIONS(6239), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + ACTIONS(6235), 7, + anon_sym_AMP, + anon_sym___based, + anon_sym_LBRACK, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + STATE(3679), 8, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(6237), 10, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(6251), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [100698] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5043), 1, + anon_sym_COLON_COLON, + ACTIONS(5153), 12, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5155), 32, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [100753] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4827), 1, + anon_sym___attribute__, + ACTIONS(4831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4833), 1, + anon_sym___declspec, + ACTIONS(4837), 1, + anon_sym_virtual, + ACTIONS(4825), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + ACTIONS(6257), 7, + anon_sym_AMP, + anon_sym___based, + anon_sym_LBRACK, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + STATE(3679), 8, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(6259), 10, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4835), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [100820] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(3682), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6261), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(4787), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(4785), 31, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [100877] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5232), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5234), 31, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [100929] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3801), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(3799), 38, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + [100981] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5291), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5293), 31, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [101033] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5224), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5226), 31, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [101085] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1917), 1, + anon_sym_enum, + ACTIONS(1919), 1, + anon_sym_class, + ACTIONS(1921), 1, + anon_sym_struct, + ACTIONS(1923), 1, + anon_sym_union, + ACTIONS(1925), 1, + sym_auto, + ACTIONS(1927), 1, + anon_sym_decltype, + ACTIONS(1929), 1, + anon_sym_typename, + ACTIONS(6221), 1, + sym_identifier, + ACTIONS(6225), 1, + anon_sym_COLON_COLON, + ACTIONS(6227), 1, + sym_primitive_type, + STATE(2230), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2774), 1, + sym_qualified_type_identifier, + STATE(2819), 1, + sym_decltype_auto, + STATE(4168), 1, + sym__type_specifier, + STATE(5432), 1, + sym_type_descriptor, + STATE(5741), 1, + sym__scope_resolution, + STATE(7638), 1, + sym_dependent_type_identifier, + STATE(2662), 2, + sym_decltype, + sym_template_type, + STATE(3781), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(1913), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2802), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(57), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [101179] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1917), 1, + anon_sym_enum, + ACTIONS(1919), 1, + anon_sym_class, + ACTIONS(1921), 1, + anon_sym_struct, + ACTIONS(1923), 1, + anon_sym_union, + ACTIONS(1925), 1, + sym_auto, + ACTIONS(1927), 1, + anon_sym_decltype, + ACTIONS(1929), 1, + anon_sym_typename, + ACTIONS(6221), 1, + sym_identifier, + ACTIONS(6225), 1, + anon_sym_COLON_COLON, + ACTIONS(6227), 1, + sym_primitive_type, + STATE(2230), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2774), 1, + sym_qualified_type_identifier, + STATE(2819), 1, + sym_decltype_auto, + STATE(4168), 1, + sym__type_specifier, + STATE(5741), 1, + sym__scope_resolution, + STATE(7480), 1, + sym_type_descriptor, + STATE(7638), 1, + sym_dependent_type_identifier, + STATE(2662), 2, + sym_decltype, + sym_template_type, + STATE(3781), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(1913), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2802), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(57), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [101273] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1917), 1, + anon_sym_enum, + ACTIONS(1919), 1, + anon_sym_class, + ACTIONS(1921), 1, + anon_sym_struct, + ACTIONS(1923), 1, + anon_sym_union, + ACTIONS(1925), 1, + sym_auto, + ACTIONS(1927), 1, + anon_sym_decltype, + ACTIONS(1929), 1, + anon_sym_typename, + ACTIONS(6221), 1, + sym_identifier, + ACTIONS(6225), 1, + anon_sym_COLON_COLON, + ACTIONS(6227), 1, + sym_primitive_type, + STATE(2230), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2774), 1, + sym_qualified_type_identifier, + STATE(2819), 1, + sym_decltype_auto, + STATE(4168), 1, + sym__type_specifier, + STATE(5741), 1, + sym__scope_resolution, + STATE(7530), 1, + sym_type_descriptor, + STATE(7638), 1, + sym_dependent_type_identifier, + STATE(2662), 2, + sym_decltype, + sym_template_type, + STATE(3781), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(1913), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2802), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(57), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [101367] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3805), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(3803), 38, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + [101419] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5295), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5297), 31, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [101471] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5184), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5186), 31, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [101523] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1917), 1, + anon_sym_enum, + ACTIONS(1919), 1, + anon_sym_class, + ACTIONS(1921), 1, + anon_sym_struct, + ACTIONS(1923), 1, + anon_sym_union, + ACTIONS(1925), 1, + sym_auto, + ACTIONS(1927), 1, + anon_sym_decltype, + ACTIONS(1929), 1, + anon_sym_typename, + ACTIONS(6221), 1, + sym_identifier, + ACTIONS(6225), 1, + anon_sym_COLON_COLON, + ACTIONS(6227), 1, + sym_primitive_type, + STATE(2230), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2774), 1, + sym_qualified_type_identifier, + STATE(2819), 1, + sym_decltype_auto, + STATE(4530), 1, + sym__type_specifier, + STATE(5741), 1, + sym__scope_resolution, + STATE(7512), 1, + sym_type_descriptor, + STATE(7638), 1, + sym_dependent_type_identifier, + STATE(2662), 2, + sym_decltype, + sym_template_type, + STATE(3791), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(1913), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2802), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(57), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [101617] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5153), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5155), 31, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [101669] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1917), 1, + anon_sym_enum, + ACTIONS(1919), 1, + anon_sym_class, + ACTIONS(1921), 1, + anon_sym_struct, + ACTIONS(1923), 1, + anon_sym_union, + ACTIONS(1925), 1, + sym_auto, + ACTIONS(1927), 1, + anon_sym_decltype, + ACTIONS(1929), 1, + anon_sym_typename, + ACTIONS(6221), 1, + sym_identifier, + ACTIONS(6225), 1, + anon_sym_COLON_COLON, + ACTIONS(6227), 1, + sym_primitive_type, + STATE(2230), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2774), 1, + sym_qualified_type_identifier, + STATE(2819), 1, + sym_decltype_auto, + STATE(4168), 1, + sym__type_specifier, + STATE(5741), 1, + sym__scope_resolution, + STATE(7507), 1, + sym_type_descriptor, + STATE(7638), 1, + sym_dependent_type_identifier, + STATE(2662), 2, + sym_decltype, + sym_template_type, + STATE(3781), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(1913), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2802), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(57), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [101763] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5228), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5230), 31, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [101815] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5343), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5345), 31, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [101867] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1917), 1, + anon_sym_enum, + ACTIONS(1919), 1, + anon_sym_class, + ACTIONS(1921), 1, + anon_sym_struct, + ACTIONS(1923), 1, + anon_sym_union, + ACTIONS(1925), 1, + sym_auto, + ACTIONS(1927), 1, + anon_sym_decltype, + ACTIONS(1929), 1, + anon_sym_typename, + ACTIONS(6221), 1, + sym_identifier, + ACTIONS(6225), 1, + anon_sym_COLON_COLON, + ACTIONS(6227), 1, + sym_primitive_type, + STATE(2230), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2774), 1, + sym_qualified_type_identifier, + STATE(2819), 1, + sym_decltype_auto, + STATE(4168), 1, + sym__type_specifier, + STATE(5741), 1, + sym__scope_resolution, + STATE(7316), 1, + sym_type_descriptor, + STATE(7638), 1, + sym_dependent_type_identifier, + STATE(2662), 2, + sym_decltype, + sym_template_type, + STATE(3781), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(1913), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2802), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(57), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [101961] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5323), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5325), 31, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [102013] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1917), 1, + anon_sym_enum, + ACTIONS(1919), 1, + anon_sym_class, + ACTIONS(1921), 1, + anon_sym_struct, + ACTIONS(1923), 1, + anon_sym_union, + ACTIONS(1925), 1, + sym_auto, + ACTIONS(1927), 1, + anon_sym_decltype, + ACTIONS(1929), 1, + anon_sym_typename, + ACTIONS(6221), 1, + sym_identifier, + ACTIONS(6225), 1, + anon_sym_COLON_COLON, + ACTIONS(6227), 1, + sym_primitive_type, + STATE(2230), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2774), 1, + sym_qualified_type_identifier, + STATE(2819), 1, + sym_decltype_auto, + STATE(4530), 1, + sym__type_specifier, + STATE(5741), 1, + sym__scope_resolution, + STATE(7494), 1, + sym_type_descriptor, + STATE(7638), 1, + sym_dependent_type_identifier, + STATE(2662), 2, + sym_decltype, + sym_template_type, + STATE(3791), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(1913), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2802), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(57), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [102107] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(6264), 1, + sym_identifier, + ACTIONS(6266), 1, + anon_sym_COLON_COLON, + ACTIONS(6270), 1, + sym_primitive_type, + ACTIONS(6272), 1, + anon_sym_enum, + ACTIONS(6274), 1, + anon_sym_class, + ACTIONS(6276), 1, + anon_sym_struct, + ACTIONS(6278), 1, + anon_sym_union, + ACTIONS(6280), 1, + sym_auto, + ACTIONS(6282), 1, + anon_sym_decltype, + ACTIONS(6284), 1, + anon_sym_typename, + STATE(4226), 1, + sym__type_specifier, + STATE(4546), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4738), 1, + sym_decltype_auto, + STATE(4761), 1, + sym_qualified_type_identifier, + STATE(5432), 1, + sym_type_descriptor, + STATE(5766), 1, + sym__scope_resolution, + STATE(7638), 1, + sym_dependent_type_identifier, + STATE(3825), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(4719), 2, + sym_decltype, + sym_template_type, + ACTIONS(6268), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(4747), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(57), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [102201] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(2632), 1, + anon_sym_enum, + ACTIONS(2634), 1, + anon_sym_class, + ACTIONS(2636), 1, + anon_sym_struct, + ACTIONS(2638), 1, + anon_sym_union, + ACTIONS(2660), 1, + sym_auto, + ACTIONS(2662), 1, + anon_sym_decltype, + ACTIONS(2664), 1, + anon_sym_typename, + ACTIONS(6286), 1, + sym_identifier, + ACTIONS(6288), 1, + anon_sym_COLON_COLON, + ACTIONS(6290), 1, + sym_primitive_type, + STATE(2483), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3121), 1, + sym_qualified_type_identifier, + STATE(3159), 1, + sym_decltype_auto, + STATE(4503), 1, + sym__type_specifier, + STATE(5432), 1, + sym_type_descriptor, + STATE(5712), 1, + sym__scope_resolution, + STATE(7638), 1, + sym_dependent_type_identifier, + STATE(3027), 2, + sym_decltype, + sym_template_type, + STATE(3794), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(2628), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3156), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(57), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [102295] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1917), 1, + anon_sym_enum, + ACTIONS(1919), 1, + anon_sym_class, + ACTIONS(1921), 1, + anon_sym_struct, + ACTIONS(1923), 1, + anon_sym_union, + ACTIONS(1925), 1, + sym_auto, + ACTIONS(1927), 1, + anon_sym_decltype, + ACTIONS(1929), 1, + anon_sym_typename, + ACTIONS(6221), 1, + sym_identifier, + ACTIONS(6225), 1, + anon_sym_COLON_COLON, + ACTIONS(6227), 1, + sym_primitive_type, + STATE(2230), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2774), 1, + sym_qualified_type_identifier, + STATE(2819), 1, + sym_decltype_auto, + STATE(4168), 1, + sym__type_specifier, + STATE(5741), 1, + sym__scope_resolution, + STATE(7481), 1, + sym_type_descriptor, + STATE(7638), 1, + sym_dependent_type_identifier, + STATE(2662), 2, + sym_decltype, + sym_template_type, + STATE(3781), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(1913), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2802), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(57), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [102389] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6294), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(6292), 38, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + [102441] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1917), 1, + anon_sym_enum, + ACTIONS(1919), 1, + anon_sym_class, + ACTIONS(1921), 1, + anon_sym_struct, + ACTIONS(1923), 1, + anon_sym_union, + ACTIONS(1925), 1, + sym_auto, + ACTIONS(1927), 1, + anon_sym_decltype, + ACTIONS(1929), 1, + anon_sym_typename, + ACTIONS(6221), 1, + sym_identifier, + ACTIONS(6225), 1, + anon_sym_COLON_COLON, + ACTIONS(6227), 1, + sym_primitive_type, + STATE(2230), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2774), 1, + sym_qualified_type_identifier, + STATE(2819), 1, + sym_decltype_auto, + STATE(4530), 1, + sym__type_specifier, + STATE(5741), 1, + sym__scope_resolution, + STATE(7491), 1, + sym_type_descriptor, + STATE(7638), 1, + sym_dependent_type_identifier, + STATE(2662), 2, + sym_decltype, + sym_template_type, + STATE(3791), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(1913), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2802), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(57), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [102535] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6303), 2, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(6299), 4, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + ACTIONS(6301), 5, + anon_sym_AMP, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_explicit, + anon_sym_operator, + ACTIONS(6306), 11, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_auto, + anon_sym_typename, + ACTIONS(6296), 22, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + [102593] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1917), 1, + anon_sym_enum, + ACTIONS(1919), 1, + anon_sym_class, + ACTIONS(1921), 1, + anon_sym_struct, + ACTIONS(1923), 1, + anon_sym_union, + ACTIONS(1925), 1, + sym_auto, + ACTIONS(1927), 1, + anon_sym_decltype, + ACTIONS(1929), 1, + anon_sym_typename, + ACTIONS(6221), 1, + sym_identifier, + ACTIONS(6225), 1, + anon_sym_COLON_COLON, + ACTIONS(6227), 1, + sym_primitive_type, + STATE(2230), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2774), 1, + sym_qualified_type_identifier, + STATE(2819), 1, + sym_decltype_auto, + STATE(4530), 1, + sym__type_specifier, + STATE(5741), 1, + sym__scope_resolution, + STATE(7238), 1, + sym_type_descriptor, + STATE(7638), 1, + sym_dependent_type_identifier, + STATE(2662), 2, + sym_decltype, + sym_template_type, + STATE(3791), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(1913), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2802), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(57), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [102687] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1899), 1, + anon_sym_LBRACE, + ACTIONS(5145), 1, + sym_auto, + ACTIONS(5147), 1, + anon_sym_decltype, + ACTIONS(6308), 1, + anon_sym_LPAREN2, + ACTIONS(6310), 1, + anon_sym_LBRACK, + STATE(2731), 1, + sym_decltype_auto, + STATE(3901), 1, + sym_new_declarator, + STATE(3982), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(4996), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(4994), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [102755] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5272), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5274), 31, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [102807] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5287), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5289), 31, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [102859] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1917), 1, + anon_sym_enum, + ACTIONS(1919), 1, + anon_sym_class, + ACTIONS(1921), 1, + anon_sym_struct, + ACTIONS(1923), 1, + anon_sym_union, + ACTIONS(1925), 1, + sym_auto, + ACTIONS(1927), 1, + anon_sym_decltype, + ACTIONS(1929), 1, + anon_sym_typename, + ACTIONS(6221), 1, + sym_identifier, + ACTIONS(6225), 1, + anon_sym_COLON_COLON, + ACTIONS(6227), 1, + sym_primitive_type, + STATE(2230), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2774), 1, + sym_qualified_type_identifier, + STATE(2819), 1, + sym_decltype_auto, + STATE(4168), 1, + sym__type_specifier, + STATE(5741), 1, + sym__scope_resolution, + STATE(7580), 1, + sym_type_descriptor, + STATE(7638), 1, + sym_dependent_type_identifier, + STATE(2662), 2, + sym_decltype, + sym_template_type, + STATE(3781), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(1913), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2802), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(57), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [102953] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5168), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5170), 31, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [103005] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1917), 1, + anon_sym_enum, + ACTIONS(1919), 1, + anon_sym_class, + ACTIONS(1921), 1, + anon_sym_struct, + ACTIONS(1923), 1, + anon_sym_union, + ACTIONS(1925), 1, + sym_auto, + ACTIONS(1927), 1, + anon_sym_decltype, + ACTIONS(1929), 1, + anon_sym_typename, + ACTIONS(6221), 1, + sym_identifier, + ACTIONS(6225), 1, + anon_sym_COLON_COLON, + ACTIONS(6227), 1, + sym_primitive_type, + STATE(2230), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2774), 1, + sym_qualified_type_identifier, + STATE(2819), 1, + sym_decltype_auto, + STATE(4530), 1, + sym__type_specifier, + STATE(5432), 1, + sym_type_descriptor, + STATE(5741), 1, + sym__scope_resolution, + STATE(7638), 1, + sym_dependent_type_identifier, + STATE(2662), 2, + sym_decltype, + sym_template_type, + STATE(3791), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(1913), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2802), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(57), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [103099] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1917), 1, + anon_sym_enum, + ACTIONS(1919), 1, + anon_sym_class, + ACTIONS(1921), 1, + anon_sym_struct, + ACTIONS(1923), 1, + anon_sym_union, + ACTIONS(1925), 1, + sym_auto, + ACTIONS(1927), 1, + anon_sym_decltype, + ACTIONS(1929), 1, + anon_sym_typename, + ACTIONS(6221), 1, + sym_identifier, + ACTIONS(6225), 1, + anon_sym_COLON_COLON, + ACTIONS(6227), 1, + sym_primitive_type, + STATE(2230), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2774), 1, + sym_qualified_type_identifier, + STATE(2819), 1, + sym_decltype_auto, + STATE(4168), 1, + sym__type_specifier, + STATE(5741), 1, + sym__scope_resolution, + STATE(7078), 1, + sym_type_descriptor, + STATE(7638), 1, + sym_dependent_type_identifier, + STATE(2662), 2, + sym_decltype, + sym_template_type, + STATE(3781), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(1913), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2802), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(57), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [103193] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1917), 1, + anon_sym_enum, + ACTIONS(1919), 1, + anon_sym_class, + ACTIONS(1921), 1, + anon_sym_struct, + ACTIONS(1923), 1, + anon_sym_union, + ACTIONS(1925), 1, + sym_auto, + ACTIONS(1927), 1, + anon_sym_decltype, + ACTIONS(1929), 1, + anon_sym_typename, + ACTIONS(6221), 1, + sym_identifier, + ACTIONS(6225), 1, + anon_sym_COLON_COLON, + ACTIONS(6227), 1, + sym_primitive_type, + STATE(2230), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2774), 1, + sym_qualified_type_identifier, + STATE(2819), 1, + sym_decltype_auto, + STATE(4168), 1, + sym__type_specifier, + STATE(5741), 1, + sym__scope_resolution, + STATE(7579), 1, + sym_type_descriptor, + STATE(7638), 1, + sym_dependent_type_identifier, + STATE(2662), 2, + sym_decltype, + sym_template_type, + STATE(3781), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(1913), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2802), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(57), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [103287] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5264), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5266), 31, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [103339] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5283), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5285), 31, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [103391] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1917), 1, + anon_sym_enum, + ACTIONS(1919), 1, + anon_sym_class, + ACTIONS(1921), 1, + anon_sym_struct, + ACTIONS(1923), 1, + anon_sym_union, + ACTIONS(1925), 1, + sym_auto, + ACTIONS(1927), 1, + anon_sym_decltype, + ACTIONS(1929), 1, + anon_sym_typename, + ACTIONS(6221), 1, + sym_identifier, + ACTIONS(6225), 1, + anon_sym_COLON_COLON, + ACTIONS(6227), 1, + sym_primitive_type, + STATE(2230), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2774), 1, + sym_qualified_type_identifier, + STATE(2819), 1, + sym_decltype_auto, + STATE(4530), 1, + sym__type_specifier, + STATE(5741), 1, + sym__scope_resolution, + STATE(7465), 1, + sym_type_descriptor, + STATE(7638), 1, + sym_dependent_type_identifier, + STATE(2662), 2, + sym_decltype, + sym_template_type, + STATE(3791), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(1913), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2802), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(57), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [103485] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1917), 1, + anon_sym_enum, + ACTIONS(1919), 1, + anon_sym_class, + ACTIONS(1921), 1, + anon_sym_struct, + ACTIONS(1923), 1, + anon_sym_union, + ACTIONS(1925), 1, + sym_auto, + ACTIONS(1927), 1, + anon_sym_decltype, + ACTIONS(1929), 1, + anon_sym_typename, + ACTIONS(6221), 1, + sym_identifier, + ACTIONS(6225), 1, + anon_sym_COLON_COLON, + ACTIONS(6227), 1, + sym_primitive_type, + STATE(2230), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2774), 1, + sym_qualified_type_identifier, + STATE(2819), 1, + sym_decltype_auto, + STATE(4168), 1, + sym__type_specifier, + STATE(5741), 1, + sym__scope_resolution, + STATE(7452), 1, + sym_type_descriptor, + STATE(7638), 1, + sym_dependent_type_identifier, + STATE(2662), 2, + sym_decltype, + sym_template_type, + STATE(3781), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(1913), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2802), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(57), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [103579] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1917), 1, + anon_sym_enum, + ACTIONS(1919), 1, + anon_sym_class, + ACTIONS(1921), 1, + anon_sym_struct, + ACTIONS(1923), 1, + anon_sym_union, + ACTIONS(1925), 1, + sym_auto, + ACTIONS(1927), 1, + anon_sym_decltype, + ACTIONS(1929), 1, + anon_sym_typename, + ACTIONS(6221), 1, + sym_identifier, + ACTIONS(6225), 1, + anon_sym_COLON_COLON, + ACTIONS(6227), 1, + sym_primitive_type, + STATE(2230), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2774), 1, + sym_qualified_type_identifier, + STATE(2819), 1, + sym_decltype_auto, + STATE(4168), 1, + sym__type_specifier, + STATE(5741), 1, + sym__scope_resolution, + STATE(7559), 1, + sym_type_descriptor, + STATE(7638), 1, + sym_dependent_type_identifier, + STATE(2662), 2, + sym_decltype, + sym_template_type, + STATE(3781), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(1913), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2802), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(57), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [103673] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(2576), 1, + sym_primitive_type, + ACTIONS(2586), 1, + sym_auto, + ACTIONS(2588), 1, + anon_sym_decltype, + ACTIONS(3657), 1, + sym_identifier, + ACTIONS(6312), 1, + anon_sym_COLON_COLON, + ACTIONS(6316), 1, + anon_sym_enum, + ACTIONS(6318), 1, + anon_sym_class, + ACTIONS(6320), 1, + anon_sym_struct, + ACTIONS(6322), 1, + anon_sym_union, + ACTIONS(6324), 1, + anon_sym_typename, + STATE(3916), 1, + sym_decltype_auto, + STATE(3966), 1, + sym_qualified_type_identifier, + STATE(4464), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4516), 1, + sym__type_specifier, + STATE(5438), 1, + sym_type_descriptor, + STATE(5765), 1, + sym__scope_resolution, + STATE(7638), 1, + sym_dependent_type_identifier, + STATE(3680), 2, + sym_decltype, + sym_template_type, + STATE(3785), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(6314), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3918), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(57), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [103767] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5339), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5341), 31, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [103819] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5153), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5155), 31, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [103871] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1917), 1, + anon_sym_enum, + ACTIONS(1919), 1, + anon_sym_class, + ACTIONS(1921), 1, + anon_sym_struct, + ACTIONS(1923), 1, + anon_sym_union, + ACTIONS(1925), 1, + sym_auto, + ACTIONS(1927), 1, + anon_sym_decltype, + ACTIONS(1929), 1, + anon_sym_typename, + ACTIONS(6221), 1, + sym_identifier, + ACTIONS(6225), 1, + anon_sym_COLON_COLON, + ACTIONS(6227), 1, + sym_primitive_type, + STATE(2230), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2774), 1, + sym_qualified_type_identifier, + STATE(2819), 1, + sym_decltype_auto, + STATE(4168), 1, + sym__type_specifier, + STATE(5741), 1, + sym__scope_resolution, + STATE(7007), 1, + sym_type_descriptor, + STATE(7638), 1, + sym_dependent_type_identifier, + STATE(2662), 2, + sym_decltype, + sym_template_type, + STATE(3781), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(1913), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2802), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(57), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [103965] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1917), 1, + anon_sym_enum, + ACTIONS(1919), 1, + anon_sym_class, + ACTIONS(1921), 1, + anon_sym_struct, + ACTIONS(1923), 1, + anon_sym_union, + ACTIONS(1925), 1, + sym_auto, + ACTIONS(1927), 1, + anon_sym_decltype, + ACTIONS(1929), 1, + anon_sym_typename, + ACTIONS(6221), 1, + sym_identifier, + ACTIONS(6225), 1, + anon_sym_COLON_COLON, + ACTIONS(6227), 1, + sym_primitive_type, + STATE(2230), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2774), 1, + sym_qualified_type_identifier, + STATE(2819), 1, + sym_decltype_auto, + STATE(4168), 1, + sym__type_specifier, + STATE(5438), 1, + sym_type_descriptor, + STATE(5741), 1, + sym__scope_resolution, + STATE(7638), 1, + sym_dependent_type_identifier, + STATE(2662), 2, + sym_decltype, + sym_template_type, + STATE(3781), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(1913), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2802), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(57), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [104059] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1917), 1, + anon_sym_enum, + ACTIONS(1919), 1, + anon_sym_class, + ACTIONS(1921), 1, + anon_sym_struct, + ACTIONS(1923), 1, + anon_sym_union, + ACTIONS(1925), 1, + sym_auto, + ACTIONS(1927), 1, + anon_sym_decltype, + ACTIONS(1929), 1, + anon_sym_typename, + ACTIONS(6221), 1, + sym_identifier, + ACTIONS(6225), 1, + anon_sym_COLON_COLON, + ACTIONS(6227), 1, + sym_primitive_type, + STATE(2230), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2774), 1, + sym_qualified_type_identifier, + STATE(2819), 1, + sym_decltype_auto, + STATE(4168), 1, + sym__type_specifier, + STATE(5741), 1, + sym__scope_resolution, + STATE(7437), 1, + sym_type_descriptor, + STATE(7638), 1, + sym_dependent_type_identifier, + STATE(2662), 2, + sym_decltype, + sym_template_type, + STATE(3781), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(1913), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2802), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(57), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [104153] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1917), 1, + anon_sym_enum, + ACTIONS(1919), 1, + anon_sym_class, + ACTIONS(1921), 1, + anon_sym_struct, + ACTIONS(1923), 1, + anon_sym_union, + ACTIONS(1925), 1, + sym_auto, + ACTIONS(1927), 1, + anon_sym_decltype, + ACTIONS(1929), 1, + anon_sym_typename, + ACTIONS(6221), 1, + sym_identifier, + ACTIONS(6225), 1, + anon_sym_COLON_COLON, + ACTIONS(6227), 1, + sym_primitive_type, + STATE(2230), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2774), 1, + sym_qualified_type_identifier, + STATE(2819), 1, + sym_decltype_auto, + STATE(4168), 1, + sym__type_specifier, + STATE(5741), 1, + sym__scope_resolution, + STATE(7295), 1, + sym_type_descriptor, + STATE(7638), 1, + sym_dependent_type_identifier, + STATE(2662), 2, + sym_decltype, + sym_template_type, + STATE(3781), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(1913), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2802), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(57), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [104247] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5335), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5337), 31, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [104299] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5252), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5254), 31, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [104351] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1917), 1, + anon_sym_enum, + ACTIONS(1919), 1, + anon_sym_class, + ACTIONS(1921), 1, + anon_sym_struct, + ACTIONS(1923), 1, + anon_sym_union, + ACTIONS(1925), 1, + sym_auto, + ACTIONS(1927), 1, + anon_sym_decltype, + ACTIONS(1929), 1, + anon_sym_typename, + ACTIONS(6221), 1, + sym_identifier, + ACTIONS(6225), 1, + anon_sym_COLON_COLON, + ACTIONS(6227), 1, + sym_primitive_type, + STATE(2230), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2774), 1, + sym_qualified_type_identifier, + STATE(2819), 1, + sym_decltype_auto, + STATE(4168), 1, + sym__type_specifier, + STATE(5741), 1, + sym__scope_resolution, + STATE(6994), 1, + sym_type_descriptor, + STATE(7638), 1, + sym_dependent_type_identifier, + STATE(2662), 2, + sym_decltype, + sym_template_type, + STATE(3781), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(1913), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2802), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(57), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [104445] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5248), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5250), 31, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [104497] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5331), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5333), 31, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [104549] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1917), 1, + anon_sym_enum, + ACTIONS(1919), 1, + anon_sym_class, + ACTIONS(1921), 1, + anon_sym_struct, + ACTIONS(1923), 1, + anon_sym_union, + ACTIONS(1925), 1, + sym_auto, + ACTIONS(1927), 1, + anon_sym_decltype, + ACTIONS(1929), 1, + anon_sym_typename, + ACTIONS(6221), 1, + sym_identifier, + ACTIONS(6225), 1, + anon_sym_COLON_COLON, + ACTIONS(6227), 1, + sym_primitive_type, + STATE(2230), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2774), 1, + sym_qualified_type_identifier, + STATE(2819), 1, + sym_decltype_auto, + STATE(4168), 1, + sym__type_specifier, + STATE(5741), 1, + sym__scope_resolution, + STATE(7077), 1, + sym_type_descriptor, + STATE(7638), 1, + sym_dependent_type_identifier, + STATE(2662), 2, + sym_decltype, + sym_template_type, + STATE(3781), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(1913), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2802), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(57), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [104643] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1917), 1, + anon_sym_enum, + ACTIONS(1919), 1, + anon_sym_class, + ACTIONS(1921), 1, + anon_sym_struct, + ACTIONS(1923), 1, + anon_sym_union, + ACTIONS(1925), 1, + sym_auto, + ACTIONS(1927), 1, + anon_sym_decltype, + ACTIONS(1929), 1, + anon_sym_typename, + ACTIONS(6221), 1, + sym_identifier, + ACTIONS(6225), 1, + anon_sym_COLON_COLON, + ACTIONS(6227), 1, + sym_primitive_type, + STATE(2230), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2774), 1, + sym_qualified_type_identifier, + STATE(2819), 1, + sym_decltype_auto, + STATE(4168), 1, + sym__type_specifier, + STATE(5741), 1, + sym__scope_resolution, + STATE(7221), 1, + sym_type_descriptor, + STATE(7638), 1, + sym_dependent_type_identifier, + STATE(2662), 2, + sym_decltype, + sym_template_type, + STATE(3781), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(1913), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2802), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(57), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [104737] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1917), 1, + anon_sym_enum, + ACTIONS(1919), 1, + anon_sym_class, + ACTIONS(1921), 1, + anon_sym_struct, + ACTIONS(1923), 1, + anon_sym_union, + ACTIONS(1925), 1, + sym_auto, + ACTIONS(1927), 1, + anon_sym_decltype, + ACTIONS(1929), 1, + anon_sym_typename, + ACTIONS(6221), 1, + sym_identifier, + ACTIONS(6225), 1, + anon_sym_COLON_COLON, + ACTIONS(6227), 1, + sym_primitive_type, + STATE(2230), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2774), 1, + sym_qualified_type_identifier, + STATE(2819), 1, + sym_decltype_auto, + STATE(4168), 1, + sym__type_specifier, + STATE(5741), 1, + sym__scope_resolution, + STATE(7122), 1, + sym_type_descriptor, + STATE(7638), 1, + sym_dependent_type_identifier, + STATE(2662), 2, + sym_decltype, + sym_template_type, + STATE(3781), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(1913), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2802), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(57), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [104831] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1917), 1, + anon_sym_enum, + ACTIONS(1919), 1, + anon_sym_class, + ACTIONS(1921), 1, + anon_sym_struct, + ACTIONS(1923), 1, + anon_sym_union, + ACTIONS(1925), 1, + sym_auto, + ACTIONS(1927), 1, + anon_sym_decltype, + ACTIONS(1929), 1, + anon_sym_typename, + ACTIONS(6221), 1, + sym_identifier, + ACTIONS(6225), 1, + anon_sym_COLON_COLON, + ACTIONS(6227), 1, + sym_primitive_type, + STATE(2230), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2774), 1, + sym_qualified_type_identifier, + STATE(2819), 1, + sym_decltype_auto, + STATE(4168), 1, + sym__type_specifier, + STATE(5741), 1, + sym__scope_resolution, + STATE(7228), 1, + sym_type_descriptor, + STATE(7638), 1, + sym_dependent_type_identifier, + STATE(2662), 2, + sym_decltype, + sym_template_type, + STATE(3781), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(1913), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2802), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(57), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [104925] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1917), 1, + anon_sym_enum, + ACTIONS(1919), 1, + anon_sym_class, + ACTIONS(1921), 1, + anon_sym_struct, + ACTIONS(1923), 1, + anon_sym_union, + ACTIONS(1925), 1, + sym_auto, + ACTIONS(1927), 1, + anon_sym_decltype, + ACTIONS(1929), 1, + anon_sym_typename, + ACTIONS(6221), 1, + sym_identifier, + ACTIONS(6225), 1, + anon_sym_COLON_COLON, + ACTIONS(6227), 1, + sym_primitive_type, + STATE(2230), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2774), 1, + sym_qualified_type_identifier, + STATE(2819), 1, + sym_decltype_auto, + STATE(4530), 1, + sym__type_specifier, + STATE(5741), 1, + sym__scope_resolution, + STATE(7339), 1, + sym_type_descriptor, + STATE(7638), 1, + sym_dependent_type_identifier, + STATE(2662), 2, + sym_decltype, + sym_template_type, + STATE(3791), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(1913), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2802), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(57), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [105019] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1899), 1, + anon_sym_LBRACE, + ACTIONS(5145), 1, + sym_auto, + ACTIONS(5147), 1, + anon_sym_decltype, + ACTIONS(6308), 1, + anon_sym_LPAREN2, + ACTIONS(6310), 1, + anon_sym_LBRACK, + STATE(2731), 1, + sym_decltype_auto, + STATE(3905), 1, + sym_new_declarator, + STATE(3988), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(4980), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(4976), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [105087] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5279), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5281), 31, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [105139] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1917), 1, + anon_sym_enum, + ACTIONS(1919), 1, + anon_sym_class, + ACTIONS(1921), 1, + anon_sym_struct, + ACTIONS(1923), 1, + anon_sym_union, + ACTIONS(1925), 1, + sym_auto, + ACTIONS(1927), 1, + anon_sym_decltype, + ACTIONS(1929), 1, + anon_sym_typename, + ACTIONS(6221), 1, + sym_identifier, + ACTIONS(6225), 1, + anon_sym_COLON_COLON, + ACTIONS(6227), 1, + sym_primitive_type, + STATE(2230), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2774), 1, + sym_qualified_type_identifier, + STATE(2819), 1, + sym_decltype_auto, + STATE(4168), 1, + sym__type_specifier, + STATE(5741), 1, + sym__scope_resolution, + STATE(7235), 1, + sym_type_descriptor, + STATE(7638), 1, + sym_dependent_type_identifier, + STATE(2662), 2, + sym_decltype, + sym_template_type, + STATE(3781), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(1913), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2802), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(57), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [105233] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1917), 1, + anon_sym_enum, + ACTIONS(1919), 1, + anon_sym_class, + ACTIONS(1921), 1, + anon_sym_struct, + ACTIONS(1923), 1, + anon_sym_union, + ACTIONS(1925), 1, + sym_auto, + ACTIONS(1927), 1, + anon_sym_decltype, + ACTIONS(1929), 1, + anon_sym_typename, + ACTIONS(6221), 1, + sym_identifier, + ACTIONS(6225), 1, + anon_sym_COLON_COLON, + ACTIONS(6227), 1, + sym_primitive_type, + STATE(2230), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2774), 1, + sym_qualified_type_identifier, + STATE(2819), 1, + sym_decltype_auto, + STATE(4168), 1, + sym__type_specifier, + STATE(5741), 1, + sym__scope_resolution, + STATE(7566), 1, + sym_type_descriptor, + STATE(7638), 1, + sym_dependent_type_identifier, + STATE(2662), 2, + sym_decltype, + sym_template_type, + STATE(3781), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(1913), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2802), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(57), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [105327] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5244), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5246), 31, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [105379] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1917), 1, + anon_sym_enum, + ACTIONS(1919), 1, + anon_sym_class, + ACTIONS(1921), 1, + anon_sym_struct, + ACTIONS(1923), 1, + anon_sym_union, + ACTIONS(1925), 1, + sym_auto, + ACTIONS(1927), 1, + anon_sym_decltype, + ACTIONS(1929), 1, + anon_sym_typename, + ACTIONS(6221), 1, + sym_identifier, + ACTIONS(6225), 1, + anon_sym_COLON_COLON, + ACTIONS(6227), 1, + sym_primitive_type, + STATE(2230), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2774), 1, + sym_qualified_type_identifier, + STATE(2819), 1, + sym_decltype_auto, + STATE(4168), 1, + sym__type_specifier, + STATE(5741), 1, + sym__scope_resolution, + STATE(7420), 1, + sym_type_descriptor, + STATE(7638), 1, + sym_dependent_type_identifier, + STATE(2662), 2, + sym_decltype, + sym_template_type, + STATE(3781), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(1913), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2802), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(57), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [105473] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5200), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5202), 31, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [105525] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6000), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(5998), 38, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + [105577] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5196), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5198), 31, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [105629] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5039), 12, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_GT2, + ACTIONS(5041), 32, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_or, + anon_sym_and, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [105681] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5319), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5321), 31, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [105733] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5260), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5262), 31, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [105785] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5240), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5242), 31, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [105837] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6209), 1, + sym_primitive_type, + ACTIONS(6326), 1, + sym_identifier, + STATE(3367), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6207), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(4807), 10, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4809), 27, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_try, + anon_sym_requires, + [105897] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1917), 1, + anon_sym_enum, + ACTIONS(1919), 1, + anon_sym_class, + ACTIONS(1921), 1, + anon_sym_struct, + ACTIONS(1923), 1, + anon_sym_union, + ACTIONS(1925), 1, + sym_auto, + ACTIONS(1927), 1, + anon_sym_decltype, + ACTIONS(1929), 1, + anon_sym_typename, + ACTIONS(6221), 1, + sym_identifier, + ACTIONS(6225), 1, + anon_sym_COLON_COLON, + ACTIONS(6227), 1, + sym_primitive_type, + STATE(2230), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2774), 1, + sym_qualified_type_identifier, + STATE(2819), 1, + sym_decltype_auto, + STATE(4168), 1, + sym__type_specifier, + STATE(5741), 1, + sym__scope_resolution, + STATE(7298), 1, + sym_type_descriptor, + STATE(7638), 1, + sym_dependent_type_identifier, + STATE(2662), 2, + sym_decltype, + sym_template_type, + STATE(3781), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(1913), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2802), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(57), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [105991] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1917), 1, + anon_sym_enum, + ACTIONS(1919), 1, + anon_sym_class, + ACTIONS(1921), 1, + anon_sym_struct, + ACTIONS(1923), 1, + anon_sym_union, + ACTIONS(1925), 1, + sym_auto, + ACTIONS(1927), 1, + anon_sym_decltype, + ACTIONS(1929), 1, + anon_sym_typename, + ACTIONS(6221), 1, + sym_identifier, + ACTIONS(6225), 1, + anon_sym_COLON_COLON, + ACTIONS(6227), 1, + sym_primitive_type, + STATE(2230), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2774), 1, + sym_qualified_type_identifier, + STATE(2819), 1, + sym_decltype_auto, + STATE(4168), 1, + sym__type_specifier, + STATE(5741), 1, + sym__scope_resolution, + STATE(7321), 1, + sym_type_descriptor, + STATE(7638), 1, + sym_dependent_type_identifier, + STATE(2662), 2, + sym_decltype, + sym_template_type, + STATE(3781), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(1913), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2802), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(57), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [106085] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5135), 1, + anon_sym_LBRACE, + ACTIONS(6328), 1, + anon_sym_COLON, + STATE(2571), 1, + sym__enum_base_clause, + STATE(2740), 1, + sym_enumerator_list, + ACTIONS(5125), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(5123), 31, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [106145] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4476), 1, + anon_sym_COLON_COLON, + ACTIONS(6193), 1, + anon_sym_LT, + STATE(2659), 1, + sym_template_argument_list, + ACTIONS(4455), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_COLON, + anon_sym_DOT, + ACTIONS(4463), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [106203] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4476), 1, + anon_sym_COLON_COLON, + STATE(3608), 1, + sym_template_argument_list, + ACTIONS(5106), 10, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_COLON, + anon_sym_DOT, + ACTIONS(5104), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [106259] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5307), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5309), 31, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [106311] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1917), 1, + anon_sym_enum, + ACTIONS(1919), 1, + anon_sym_class, + ACTIONS(1921), 1, + anon_sym_struct, + ACTIONS(1923), 1, + anon_sym_union, + ACTIONS(1925), 1, + sym_auto, + ACTIONS(1927), 1, + anon_sym_decltype, + ACTIONS(1929), 1, + anon_sym_typename, + ACTIONS(6221), 1, + sym_identifier, + ACTIONS(6225), 1, + anon_sym_COLON_COLON, + ACTIONS(6227), 1, + sym_primitive_type, + STATE(2230), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2774), 1, + sym_qualified_type_identifier, + STATE(2819), 1, + sym_decltype_auto, + STATE(4168), 1, + sym__type_specifier, + STATE(5741), 1, + sym__scope_resolution, + STATE(7569), 1, + sym_type_descriptor, + STATE(7638), 1, + sym_dependent_type_identifier, + STATE(2662), 2, + sym_decltype, + sym_template_type, + STATE(3781), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(1913), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2802), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(57), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [106405] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(2576), 1, + sym_primitive_type, + ACTIONS(2580), 1, + anon_sym_class, + ACTIONS(2582), 1, + anon_sym_struct, + ACTIONS(2584), 1, + anon_sym_union, + ACTIONS(2586), 1, + sym_auto, + ACTIONS(2588), 1, + anon_sym_decltype, + ACTIONS(4570), 1, + sym_identifier, + ACTIONS(5102), 1, + anon_sym_COLON_COLON, + ACTIONS(6330), 1, + anon_sym_enum, + ACTIONS(6332), 1, + anon_sym_typename, + STATE(3916), 1, + sym_decltype_auto, + STATE(3936), 1, + sym__type_specifier, + STATE(3966), 1, + sym_qualified_type_identifier, + STATE(4464), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5438), 1, + sym_type_descriptor, + STATE(5718), 1, + sym__scope_resolution, + STATE(7638), 1, + sym_dependent_type_identifier, + STATE(3680), 2, + sym_decltype, + sym_template_type, + STATE(3803), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(6314), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3918), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(57), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [106499] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1917), 1, + anon_sym_enum, + ACTIONS(1919), 1, + anon_sym_class, + ACTIONS(1921), 1, + anon_sym_struct, + ACTIONS(1923), 1, + anon_sym_union, + ACTIONS(1925), 1, + sym_auto, + ACTIONS(1927), 1, + anon_sym_decltype, + ACTIONS(1929), 1, + anon_sym_typename, + ACTIONS(6221), 1, + sym_identifier, + ACTIONS(6225), 1, + anon_sym_COLON_COLON, + ACTIONS(6227), 1, + sym_primitive_type, + STATE(2230), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2774), 1, + sym_qualified_type_identifier, + STATE(2819), 1, + sym_decltype_auto, + STATE(4168), 1, + sym__type_specifier, + STATE(5741), 1, + sym__scope_resolution, + STATE(7034), 1, + sym_type_descriptor, + STATE(7638), 1, + sym_dependent_type_identifier, + STATE(2662), 2, + sym_decltype, + sym_template_type, + STATE(3781), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(1913), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2802), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(57), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [106593] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1917), 1, + anon_sym_enum, + ACTIONS(1919), 1, + anon_sym_class, + ACTIONS(1921), 1, + anon_sym_struct, + ACTIONS(1923), 1, + anon_sym_union, + ACTIONS(1925), 1, + sym_auto, + ACTIONS(1927), 1, + anon_sym_decltype, + ACTIONS(1929), 1, + anon_sym_typename, + ACTIONS(6221), 1, + sym_identifier, + ACTIONS(6225), 1, + anon_sym_COLON_COLON, + ACTIONS(6227), 1, + sym_primitive_type, + STATE(2230), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2774), 1, + sym_qualified_type_identifier, + STATE(2819), 1, + sym_decltype_auto, + STATE(4168), 1, + sym__type_specifier, + STATE(5741), 1, + sym__scope_resolution, + STATE(7499), 1, + sym_type_descriptor, + STATE(7638), 1, + sym_dependent_type_identifier, + STATE(2662), 2, + sym_decltype, + sym_template_type, + STATE(3781), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(1913), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2802), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(57), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [106687] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5135), 1, + anon_sym_LBRACE, + ACTIONS(6328), 1, + anon_sym_COLON, + STATE(2674), 1, + sym__enum_base_clause, + STATE(2759), 1, + sym_enumerator_list, + ACTIONS(5113), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(5111), 31, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [106747] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1899), 1, + anon_sym_LBRACE, + ACTIONS(5145), 1, + sym_auto, + ACTIONS(5147), 1, + anon_sym_decltype, + ACTIONS(6308), 1, + anon_sym_LPAREN2, + ACTIONS(6310), 1, + anon_sym_LBRACK, + STATE(2731), 1, + sym_decltype_auto, + STATE(3899), 1, + sym_new_declarator, + STATE(3914), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5000), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(4998), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [106815] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1917), 1, + anon_sym_enum, + ACTIONS(1919), 1, + anon_sym_class, + ACTIONS(1921), 1, + anon_sym_struct, + ACTIONS(1923), 1, + anon_sym_union, + ACTIONS(1925), 1, + sym_auto, + ACTIONS(1927), 1, + anon_sym_decltype, + ACTIONS(1929), 1, + anon_sym_typename, + ACTIONS(6221), 1, + sym_identifier, + ACTIONS(6225), 1, + anon_sym_COLON_COLON, + ACTIONS(6227), 1, + sym_primitive_type, + STATE(2230), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2774), 1, + sym_qualified_type_identifier, + STATE(2819), 1, + sym_decltype_auto, + STATE(4168), 1, + sym__type_specifier, + STATE(5741), 1, + sym__scope_resolution, + STATE(7521), 1, + sym_type_descriptor, + STATE(7638), 1, + sym_dependent_type_identifier, + STATE(2662), 2, + sym_decltype, + sym_template_type, + STATE(3781), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(1913), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2802), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(57), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [106909] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1917), 1, + anon_sym_enum, + ACTIONS(1919), 1, + anon_sym_class, + ACTIONS(1921), 1, + anon_sym_struct, + ACTIONS(1923), 1, + anon_sym_union, + ACTIONS(1925), 1, + sym_auto, + ACTIONS(1927), 1, + anon_sym_decltype, + ACTIONS(1929), 1, + anon_sym_typename, + ACTIONS(6221), 1, + sym_identifier, + ACTIONS(6225), 1, + anon_sym_COLON_COLON, + ACTIONS(6227), 1, + sym_primitive_type, + STATE(2230), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2774), 1, + sym_qualified_type_identifier, + STATE(2819), 1, + sym_decltype_auto, + STATE(4168), 1, + sym__type_specifier, + STATE(5741), 1, + sym__scope_resolution, + STATE(7194), 1, + sym_type_descriptor, + STATE(7638), 1, + sym_dependent_type_identifier, + STATE(2662), 2, + sym_decltype, + sym_template_type, + STATE(3781), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(1913), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2802), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(57), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [107003] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(113), 1, + sym_auto, + ACTIONS(115), 1, + anon_sym_decltype, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(3657), 1, + sym_identifier, + ACTIONS(3663), 1, + anon_sym_COLON_COLON, + ACTIONS(3667), 1, + sym_primitive_type, + ACTIONS(3669), 1, + anon_sym_enum, + ACTIONS(3671), 1, + anon_sym_class, + ACTIONS(3673), 1, + anon_sym_struct, + ACTIONS(3675), 1, + anon_sym_union, + ACTIONS(3677), 1, + anon_sym_typename, + STATE(3694), 1, + sym_qualified_type_identifier, + STATE(3717), 1, + sym_decltype_auto, + STATE(3751), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4069), 1, + sym__type_specifier, + STATE(5438), 1, + sym_type_descriptor, + STATE(5779), 1, + sym__scope_resolution, + STATE(7638), 1, + sym_dependent_type_identifier, + STATE(3680), 2, + sym_decltype, + sym_template_type, + STATE(3811), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(3665), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3723), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(57), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [107097] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(113), 1, + sym_auto, + ACTIONS(115), 1, + anon_sym_decltype, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(3667), 1, + sym_primitive_type, + ACTIONS(4570), 1, + sym_identifier, + ACTIONS(4580), 1, + anon_sym_COLON_COLON, + ACTIONS(6334), 1, + anon_sym_enum, + ACTIONS(6336), 1, + anon_sym_class, + ACTIONS(6338), 1, + anon_sym_struct, + ACTIONS(6340), 1, + anon_sym_union, + ACTIONS(6342), 1, + anon_sym_typename, + STATE(3694), 1, + sym_qualified_type_identifier, + STATE(3717), 1, + sym_decltype_auto, + STATE(3751), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3890), 1, + sym__type_specifier, + STATE(5438), 1, + sym_type_descriptor, + STATE(5733), 1, + sym__scope_resolution, + STATE(7638), 1, + sym_dependent_type_identifier, + STATE(3680), 2, + sym_decltype, + sym_template_type, + STATE(3810), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(3665), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3723), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(57), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [107191] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5311), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5313), 31, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [107243] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1917), 1, + anon_sym_enum, + ACTIONS(1919), 1, + anon_sym_class, + ACTIONS(1921), 1, + anon_sym_struct, + ACTIONS(1923), 1, + anon_sym_union, + ACTIONS(1925), 1, + sym_auto, + ACTIONS(1927), 1, + anon_sym_decltype, + ACTIONS(1929), 1, + anon_sym_typename, + ACTIONS(6221), 1, + sym_identifier, + ACTIONS(6225), 1, + anon_sym_COLON_COLON, + ACTIONS(6227), 1, + sym_primitive_type, + STATE(2230), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2774), 1, + sym_qualified_type_identifier, + STATE(2819), 1, + sym_decltype_auto, + STATE(4530), 1, + sym__type_specifier, + STATE(5741), 1, + sym__scope_resolution, + STATE(7435), 1, + sym_type_descriptor, + STATE(7638), 1, + sym_dependent_type_identifier, + STATE(2662), 2, + sym_decltype, + sym_template_type, + STATE(3791), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(1913), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2802), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(57), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [107337] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5192), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5194), 31, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [107389] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5188), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5190), 31, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [107441] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5315), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5317), 31, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [107493] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5180), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5182), 31, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [107545] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5176), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5178), 31, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [107597] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5256), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5258), 31, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [107649] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1899), 1, + anon_sym_LBRACE, + ACTIONS(5145), 1, + sym_auto, + ACTIONS(5147), 1, + anon_sym_decltype, + ACTIONS(6308), 1, + anon_sym_LPAREN2, + ACTIONS(6310), 1, + anon_sym_LBRACK, + STATE(2731), 1, + sym_decltype_auto, + STATE(3878), 1, + sym_new_declarator, + STATE(3928), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5024), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(5022), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [107717] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5236), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5238), 31, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [107769] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1917), 1, + anon_sym_enum, + ACTIONS(1919), 1, + anon_sym_class, + ACTIONS(1921), 1, + anon_sym_struct, + ACTIONS(1923), 1, + anon_sym_union, + ACTIONS(1925), 1, + sym_auto, + ACTIONS(1927), 1, + anon_sym_decltype, + ACTIONS(1929), 1, + anon_sym_typename, + ACTIONS(6221), 1, + sym_identifier, + ACTIONS(6225), 1, + anon_sym_COLON_COLON, + ACTIONS(6227), 1, + sym_primitive_type, + STATE(2230), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2774), 1, + sym_qualified_type_identifier, + STATE(2819), 1, + sym_decltype_auto, + STATE(4168), 1, + sym__type_specifier, + STATE(5741), 1, + sym__scope_resolution, + STATE(7546), 1, + sym_type_descriptor, + STATE(7638), 1, + sym_dependent_type_identifier, + STATE(2662), 2, + sym_decltype, + sym_template_type, + STATE(3781), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(1913), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2802), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(57), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [107863] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1917), 1, + anon_sym_enum, + ACTIONS(1919), 1, + anon_sym_class, + ACTIONS(1921), 1, + anon_sym_struct, + ACTIONS(1923), 1, + anon_sym_union, + ACTIONS(1925), 1, + sym_auto, + ACTIONS(1927), 1, + anon_sym_decltype, + ACTIONS(1929), 1, + anon_sym_typename, + ACTIONS(6221), 1, + sym_identifier, + ACTIONS(6225), 1, + anon_sym_COLON_COLON, + ACTIONS(6227), 1, + sym_primitive_type, + STATE(2230), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2774), 1, + sym_qualified_type_identifier, + STATE(2819), 1, + sym_decltype_auto, + STATE(4168), 1, + sym__type_specifier, + STATE(5741), 1, + sym__scope_resolution, + STATE(6685), 1, + sym_type_descriptor, + STATE(7638), 1, + sym_dependent_type_identifier, + STATE(2662), 2, + sym_decltype, + sym_template_type, + STATE(3781), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(1913), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2802), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(57), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [107957] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5164), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5166), 31, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [108009] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1917), 1, + anon_sym_enum, + ACTIONS(1919), 1, + anon_sym_class, + ACTIONS(1921), 1, + anon_sym_struct, + ACTIONS(1923), 1, + anon_sym_union, + ACTIONS(1925), 1, + sym_auto, + ACTIONS(1927), 1, + anon_sym_decltype, + ACTIONS(1929), 1, + anon_sym_typename, + ACTIONS(6221), 1, + sym_identifier, + ACTIONS(6225), 1, + anon_sym_COLON_COLON, + ACTIONS(6227), 1, + sym_primitive_type, + STATE(2230), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2774), 1, + sym_qualified_type_identifier, + STATE(2819), 1, + sym_decltype_auto, + STATE(4229), 1, + sym__type_specifier, + STATE(5741), 1, + sym__scope_resolution, + STATE(7638), 1, + sym_dependent_type_identifier, + STATE(2662), 2, + sym_decltype, + sym_template_type, + STATE(4715), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(1913), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2802), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(57), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [108100] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4686), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(4688), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [108151] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4476), 1, + anon_sym_COLON_COLON, + ACTIONS(6344), 1, + anon_sym_LT, + STATE(2914), 1, + sym_template_argument_list, + ACTIONS(4498), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_DOT, + ACTIONS(4503), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + [108208] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1899), 1, + anon_sym_LBRACE, + ACTIONS(5145), 1, + sym_auto, + ACTIONS(5147), 1, + anon_sym_decltype, + ACTIONS(6310), 1, + anon_sym_LBRACK, + ACTIONS(6347), 1, + anon_sym_LPAREN2, + STATE(2731), 1, + sym_decltype_auto, + STATE(3975), 1, + sym_new_declarator, + STATE(3914), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5000), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(4998), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [108275] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(2576), 1, + sym_primitive_type, + ACTIONS(2586), 1, + sym_auto, + ACTIONS(2588), 1, + anon_sym_decltype, + ACTIONS(3657), 1, + sym_identifier, + ACTIONS(6312), 1, + anon_sym_COLON_COLON, + ACTIONS(6316), 1, + anon_sym_enum, + ACTIONS(6318), 1, + anon_sym_class, + ACTIONS(6320), 1, + anon_sym_struct, + ACTIONS(6322), 1, + anon_sym_union, + ACTIONS(6324), 1, + anon_sym_typename, + STATE(3916), 1, + sym_decltype_auto, + STATE(3966), 1, + sym_qualified_type_identifier, + STATE(4464), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4523), 1, + sym__type_specifier, + STATE(5765), 1, + sym__scope_resolution, + STATE(7638), 1, + sym_dependent_type_identifier, + STATE(3680), 2, + sym_decltype, + sym_template_type, + STATE(4715), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(6314), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3918), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(57), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [108366] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4714), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(4716), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [108417] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2536), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(2534), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [108468] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2542), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(2540), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [108519] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4694), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(4696), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [108570] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4698), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(4700), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [108621] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1917), 1, + anon_sym_enum, + ACTIONS(1919), 1, + anon_sym_class, + ACTIONS(1921), 1, + anon_sym_struct, + ACTIONS(1923), 1, + anon_sym_union, + ACTIONS(1925), 1, + sym_auto, + ACTIONS(1927), 1, + anon_sym_decltype, + ACTIONS(1929), 1, + anon_sym_typename, + ACTIONS(6221), 1, + sym_identifier, + ACTIONS(6225), 1, + anon_sym_COLON_COLON, + ACTIONS(6227), 1, + sym_primitive_type, + STATE(2230), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2774), 1, + sym_qualified_type_identifier, + STATE(2819), 1, + sym_decltype_auto, + STATE(4540), 1, + sym__type_specifier, + STATE(5741), 1, + sym__scope_resolution, + STATE(7638), 1, + sym_dependent_type_identifier, + STATE(2662), 2, + sym_decltype, + sym_template_type, + STATE(4715), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(1913), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2802), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(57), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [108712] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4718), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(4720), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [108763] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(4831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6351), 1, + anon_sym_AMP_AMP, + ACTIONS(6353), 1, + anon_sym_AMP, + ACTIONS(6355), 1, + anon_sym___attribute__, + ACTIONS(6357), 1, + anon_sym_LBRACK, + ACTIONS(6361), 1, + anon_sym_DASH_GT, + ACTIONS(6363), 1, + anon_sym_noexcept, + ACTIONS(6365), 1, + anon_sym_throw, + ACTIONS(6367), 1, + anon_sym_requires, + STATE(4807), 1, + sym_ref_qualifier, + STATE(5283), 1, + sym_trailing_return_type, + STATE(5378), 1, + sym_requires_clause, + ACTIONS(4880), 2, + anon_sym_final, + anon_sym_override, + STATE(3813), 2, + sym_attribute_specifier, + aux_sym__function_declarator_seq_repeat1, + STATE(3882), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(4977), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(4991), 2, + sym_noexcept, + sym_throw_specifier, + STATE(5278), 2, + sym_virtual_specifier, + aux_sym__function_declarator_seq_repeat2, + ACTIONS(6349), 8, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_try, + ACTIONS(6359), 10, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [108852] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(2632), 1, + anon_sym_enum, + ACTIONS(2634), 1, + anon_sym_class, + ACTIONS(2636), 1, + anon_sym_struct, + ACTIONS(2638), 1, + anon_sym_union, + ACTIONS(2660), 1, + sym_auto, + ACTIONS(2662), 1, + anon_sym_decltype, + ACTIONS(2664), 1, + anon_sym_typename, + ACTIONS(6286), 1, + sym_identifier, + ACTIONS(6288), 1, + anon_sym_COLON_COLON, + ACTIONS(6290), 1, + sym_primitive_type, + STATE(2483), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3121), 1, + sym_qualified_type_identifier, + STATE(3159), 1, + sym_decltype_auto, + STATE(4406), 1, + sym__type_specifier, + STATE(5712), 1, + sym__scope_resolution, + STATE(7638), 1, + sym_dependent_type_identifier, + STATE(3027), 2, + sym_decltype, + sym_template_type, + STATE(4715), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(2628), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3156), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(57), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [108943] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(45), 1, + anon_sym___based, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1931), 1, + anon_sym_operator, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(2562), 1, + anon_sym_TILDE, + ACTIONS(4014), 1, + anon_sym_LPAREN2, + ACTIONS(5002), 1, + sym_identifier, + ACTIONS(5006), 1, + anon_sym_STAR, + ACTIONS(5012), 1, + anon_sym_COLON_COLON, + ACTIONS(5014), 1, + anon_sym_LBRACK, + ACTIONS(6369), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6373), 1, + anon_sym_AMP_AMP, + ACTIONS(6375), 1, + anon_sym_AMP, + ACTIONS(6377), 1, + anon_sym_EQ, + STATE(3900), 1, + sym_parameter_list, + STATE(5316), 1, + sym__scope_resolution, + STATE(5457), 1, + sym__function_declarator_seq, + STATE(5697), 1, + sym__declarator, + STATE(5911), 1, + sym__abstract_declarator, + STATE(6465), 1, + sym_variadic_reference_declarator, + STATE(6480), 1, + sym_variadic_declarator, + STATE(7713), 1, + sym_ms_based_modifier, + ACTIONS(6371), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(7638), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(5452), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + STATE(5640), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [109042] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4690), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(4692), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [109093] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4726), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(4728), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [109144] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1899), 1, + anon_sym_LBRACE, + ACTIONS(5145), 1, + sym_auto, + ACTIONS(5147), 1, + anon_sym_decltype, + ACTIONS(6310), 1, + anon_sym_LBRACK, + ACTIONS(6347), 1, + anon_sym_LPAREN2, + STATE(2731), 1, + sym_decltype_auto, + STATE(3961), 1, + sym_new_declarator, + STATE(3982), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(4996), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(4994), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [109211] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6237), 1, + anon_sym_COLON_COLON, + ACTIONS(6382), 1, + anon_sym___attribute__, + ACTIONS(6385), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6388), 1, + anon_sym___declspec, + ACTIONS(6394), 1, + anon_sym_virtual, + ACTIONS(6379), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + STATE(3799), 8, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(6391), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(6235), 14, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_typename, + anon_sym_template, + [109276] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4827), 1, + anon_sym___attribute__, + ACTIONS(4831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4833), 1, + anon_sym___declspec, + ACTIONS(4837), 1, + anon_sym_virtual, + ACTIONS(6165), 1, + sym_auto, + ACTIONS(6167), 1, + anon_sym_decltype, + ACTIONS(6397), 1, + anon_sym_SEMI, + STATE(3692), 1, + sym_decltype_auto, + ACTIONS(4825), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + ACTIONS(6163), 5, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + ACTIONS(6161), 6, + anon_sym_AMP, + anon_sym___based, + anon_sym_LBRACK, + sym_identifier, + anon_sym_template, + anon_sym_operator, + STATE(3669), 8, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(4835), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [109349] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4827), 1, + anon_sym___attribute__, + ACTIONS(4831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4833), 1, + anon_sym___declspec, + ACTIONS(4837), 1, + anon_sym_virtual, + ACTIONS(6165), 1, + sym_auto, + ACTIONS(6167), 1, + anon_sym_decltype, + ACTIONS(6399), 1, + anon_sym_SEMI, + STATE(3692), 1, + sym_decltype_auto, + ACTIONS(4825), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + ACTIONS(6163), 5, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + ACTIONS(6161), 6, + anon_sym_AMP, + anon_sym___based, + anon_sym_LBRACK, + sym_identifier, + anon_sym_template, + anon_sym_operator, + STATE(3669), 8, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(4835), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [109422] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4706), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(4708), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [109473] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(2576), 1, + sym_primitive_type, + ACTIONS(2580), 1, + anon_sym_class, + ACTIONS(2582), 1, + anon_sym_struct, + ACTIONS(2584), 1, + anon_sym_union, + ACTIONS(2586), 1, + sym_auto, + ACTIONS(2588), 1, + anon_sym_decltype, + ACTIONS(4570), 1, + sym_identifier, + ACTIONS(5102), 1, + anon_sym_COLON_COLON, + ACTIONS(6330), 1, + anon_sym_enum, + ACTIONS(6332), 1, + anon_sym_typename, + STATE(3916), 1, + sym_decltype_auto, + STATE(3948), 1, + sym__type_specifier, + STATE(3966), 1, + sym_qualified_type_identifier, + STATE(4464), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5718), 1, + sym__scope_resolution, + STATE(7638), 1, + sym_dependent_type_identifier, + STATE(3680), 2, + sym_decltype, + sym_template_type, + STATE(4715), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(6314), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3918), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(57), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [109564] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4702), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(4704), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [109615] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4734), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(4736), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [109666] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4710), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(4712), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [109717] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4476), 1, + anon_sym_COLON_COLON, + ACTIONS(6401), 1, + anon_sym_LT, + STATE(2914), 1, + sym_template_argument_list, + ACTIONS(5026), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_DOT, + ACTIONS(4481), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + [109774] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4827), 1, + anon_sym___attribute__, + ACTIONS(4831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4833), 1, + anon_sym___declspec, + ACTIONS(4837), 1, + anon_sym_virtual, + ACTIONS(6165), 1, + sym_auto, + ACTIONS(6167), 1, + anon_sym_decltype, + ACTIONS(6403), 1, + anon_sym_SEMI, + STATE(3692), 1, + sym_decltype_auto, + ACTIONS(4825), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + ACTIONS(6163), 5, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + ACTIONS(6161), 6, + anon_sym_AMP, + anon_sym___based, + anon_sym_LBRACK, + sym_identifier, + anon_sym_template, + anon_sym_operator, + STATE(3669), 8, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(4835), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [109847] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4827), 1, + anon_sym___attribute__, + ACTIONS(4831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4833), 1, + anon_sym___declspec, + ACTIONS(4837), 1, + anon_sym_virtual, + ACTIONS(6165), 1, + sym_auto, + ACTIONS(6167), 1, + anon_sym_decltype, + ACTIONS(6405), 1, + anon_sym_SEMI, + STATE(3692), 1, + sym_decltype_auto, + ACTIONS(4825), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + ACTIONS(6163), 5, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + ACTIONS(6161), 6, + anon_sym_AMP, + anon_sym___based, + anon_sym_LBRACK, + sym_identifier, + anon_sym_template, + anon_sym_operator, + STATE(3669), 8, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(4835), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [109920] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(113), 1, + sym_auto, + ACTIONS(115), 1, + anon_sym_decltype, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(3667), 1, + sym_primitive_type, + ACTIONS(4570), 1, + sym_identifier, + ACTIONS(4580), 1, + anon_sym_COLON_COLON, + ACTIONS(6334), 1, + anon_sym_enum, + ACTIONS(6336), 1, + anon_sym_class, + ACTIONS(6338), 1, + anon_sym_struct, + ACTIONS(6340), 1, + anon_sym_union, + ACTIONS(6342), 1, + anon_sym_typename, + STATE(3694), 1, + sym_qualified_type_identifier, + STATE(3717), 1, + sym_decltype_auto, + STATE(3751), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3880), 1, + sym__type_specifier, + STATE(5733), 1, + sym__scope_resolution, + STATE(7638), 1, + sym_dependent_type_identifier, + STATE(3680), 2, + sym_decltype, + sym_template_type, + STATE(4715), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(3665), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3723), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(57), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [110011] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(113), 1, + sym_auto, + ACTIONS(115), 1, + anon_sym_decltype, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(3657), 1, + sym_identifier, + ACTIONS(3663), 1, + anon_sym_COLON_COLON, + ACTIONS(3667), 1, + sym_primitive_type, + ACTIONS(3669), 1, + anon_sym_enum, + ACTIONS(3671), 1, + anon_sym_class, + ACTIONS(3673), 1, + anon_sym_struct, + ACTIONS(3675), 1, + anon_sym_union, + ACTIONS(3677), 1, + anon_sym_typename, + STATE(3694), 1, + sym_qualified_type_identifier, + STATE(3717), 1, + sym_decltype_auto, + STATE(3751), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4105), 1, + sym__type_specifier, + STATE(5779), 1, + sym__scope_resolution, + STATE(7638), 1, + sym_dependent_type_identifier, + STATE(3680), 2, + sym_decltype, + sym_template_type, + STATE(4715), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(3665), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3723), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(57), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [110102] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1899), 1, + anon_sym_LBRACE, + ACTIONS(5145), 1, + sym_auto, + ACTIONS(5147), 1, + anon_sym_decltype, + ACTIONS(6310), 1, + anon_sym_LBRACK, + ACTIONS(6347), 1, + anon_sym_LPAREN2, + STATE(2731), 1, + sym_decltype_auto, + STATE(3934), 1, + sym_new_declarator, + STATE(3928), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5024), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(5022), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [110169] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(4831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6351), 1, + anon_sym_AMP_AMP, + ACTIONS(6353), 1, + anon_sym_AMP, + ACTIONS(6355), 1, + anon_sym___attribute__, + ACTIONS(6361), 1, + anon_sym_DASH_GT, + ACTIONS(6363), 1, + anon_sym_noexcept, + ACTIONS(6365), 1, + anon_sym_throw, + ACTIONS(6367), 1, + anon_sym_requires, + ACTIONS(6409), 1, + anon_sym_LBRACK, + STATE(4808), 1, + sym_ref_qualifier, + STATE(5247), 1, + sym_trailing_return_type, + STATE(5422), 1, + sym_requires_clause, + ACTIONS(4880), 2, + anon_sym_final, + anon_sym_override, + STATE(3896), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(4525), 2, + sym_attribute_specifier, + aux_sym__function_declarator_seq_repeat1, + STATE(5074), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5077), 2, + sym_noexcept, + sym_throw_specifier, + STATE(5301), 2, + sym_virtual_specifier, + aux_sym__function_declarator_seq_repeat2, + ACTIONS(6407), 8, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_try, + ACTIONS(6359), 10, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [110258] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6418), 1, + anon_sym___attribute__, + ACTIONS(6421), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6424), 1, + anon_sym___declspec, + ACTIONS(6430), 1, + anon_sym_virtual, + ACTIONS(6433), 1, + anon_sym_explicit, + ACTIONS(6413), 5, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + ACTIONS(6415), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + ACTIONS(6411), 7, + anon_sym_AMP, + anon_sym___based, + anon_sym_LBRACK, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + STATE(3814), 10, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual, + sym_explicit_function_specifier, + sym__constructor_specifiers, + aux_sym_operator_cast_definition_repeat1, + ACTIONS(6427), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [110325] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(45), 1, + anon_sym___based, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1931), 1, + anon_sym_operator, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(2562), 1, + anon_sym_TILDE, + ACTIONS(4014), 1, + anon_sym_LPAREN2, + ACTIONS(5002), 1, + sym_identifier, + ACTIONS(5012), 1, + anon_sym_COLON_COLON, + ACTIONS(5014), 1, + anon_sym_LBRACK, + ACTIONS(5030), 1, + anon_sym_STAR, + ACTIONS(6369), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6436), 1, + anon_sym_AMP_AMP, + ACTIONS(6438), 1, + anon_sym_AMP, + ACTIONS(6440), 1, + anon_sym_EQ, + STATE(3964), 1, + sym_parameter_list, + STATE(5316), 1, + sym__scope_resolution, + STATE(5457), 1, + sym__function_declarator_seq, + STATE(5693), 1, + sym__declarator, + STATE(5924), 1, + sym__abstract_declarator, + STATE(6465), 1, + sym_variadic_reference_declarator, + STATE(6480), 1, + sym_variadic_declarator, + STATE(7713), 1, + sym_ms_based_modifier, + ACTIONS(6371), 2, + anon_sym_COMMA, + anon_sym_GT2, + STATE(7638), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(5452), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + STATE(5640), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [110424] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4827), 1, + anon_sym___attribute__, + ACTIONS(4831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4833), 1, + anon_sym___declspec, + ACTIONS(4837), 1, + anon_sym_virtual, + ACTIONS(6165), 1, + sym_auto, + ACTIONS(6167), 1, + anon_sym_decltype, + ACTIONS(6442), 1, + anon_sym_SEMI, + STATE(3692), 1, + sym_decltype_auto, + ACTIONS(4825), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + ACTIONS(6163), 5, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + ACTIONS(6161), 6, + anon_sym_AMP, + anon_sym___based, + anon_sym_LBRACK, + sym_identifier, + anon_sym_template, + anon_sym_operator, + STATE(3669), 8, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(4835), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [110497] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4476), 1, + anon_sym_COLON_COLON, + ACTIONS(6045), 1, + anon_sym_LT, + ACTIONS(6446), 1, + anon_sym_EQ, + STATE(3608), 1, + sym_template_argument_list, + ACTIONS(6444), 2, + anon_sym_COMMA, + anon_sym_GT2, + ACTIONS(4481), 7, + anon_sym_DOT_DOT_DOT, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + ACTIONS(5026), 30, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + [110558] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4722), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(4724), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [110609] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4722), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(4724), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [110660] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4827), 1, + anon_sym___attribute__, + ACTIONS(4831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4833), 1, + anon_sym___declspec, + ACTIONS(4837), 1, + anon_sym_virtual, + ACTIONS(6165), 1, + sym_auto, + ACTIONS(6167), 1, + anon_sym_decltype, + ACTIONS(6448), 1, + anon_sym_SEMI, + STATE(3692), 1, + sym_decltype_auto, + ACTIONS(4825), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + ACTIONS(6163), 5, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + ACTIONS(6161), 6, + anon_sym_AMP, + anon_sym___based, + anon_sym_LBRACK, + sym_identifier, + anon_sym_template, + anon_sym_operator, + STATE(3669), 8, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(4835), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [110733] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4476), 1, + anon_sym_COLON_COLON, + ACTIONS(6151), 1, + anon_sym_LT, + STATE(3608), 1, + sym_template_argument_list, + ACTIONS(4463), 8, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + ACTIONS(4455), 32, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [110790] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4722), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(4724), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [110841] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1899), 1, + anon_sym_LBRACE, + ACTIONS(5145), 1, + sym_auto, + ACTIONS(5147), 1, + anon_sym_decltype, + ACTIONS(6310), 1, + anon_sym_LBRACK, + ACTIONS(6347), 1, + anon_sym_LPAREN2, + STATE(2731), 1, + sym_decltype_auto, + STATE(3910), 1, + sym_new_declarator, + STATE(3988), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(4980), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(4976), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [110908] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4827), 1, + anon_sym___attribute__, + ACTIONS(4831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4833), 1, + anon_sym___declspec, + ACTIONS(4837), 1, + anon_sym_virtual, + ACTIONS(6165), 1, + sym_auto, + ACTIONS(6167), 1, + anon_sym_decltype, + ACTIONS(6450), 1, + anon_sym_SEMI, + STATE(3692), 1, + sym_decltype_auto, + ACTIONS(4825), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + ACTIONS(6163), 5, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + ACTIONS(6161), 6, + anon_sym_AMP, + anon_sym___based, + anon_sym_LBRACK, + sym_identifier, + anon_sym_template, + anon_sym_operator, + STATE(3669), 8, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(4835), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [110981] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(6264), 1, + sym_identifier, + ACTIONS(6266), 1, + anon_sym_COLON_COLON, + ACTIONS(6270), 1, + sym_primitive_type, + ACTIONS(6272), 1, + anon_sym_enum, + ACTIONS(6274), 1, + anon_sym_class, + ACTIONS(6276), 1, + anon_sym_struct, + ACTIONS(6278), 1, + anon_sym_union, + ACTIONS(6280), 1, + sym_auto, + ACTIONS(6282), 1, + anon_sym_decltype, + ACTIONS(6284), 1, + anon_sym_typename, + STATE(4232), 1, + sym__type_specifier, + STATE(4546), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4738), 1, + sym_decltype_auto, + STATE(4761), 1, + sym_qualified_type_identifier, + STATE(5766), 1, + sym__scope_resolution, + STATE(7638), 1, + sym_dependent_type_identifier, + STATE(4715), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(4719), 2, + sym_decltype, + sym_template_type, + ACTIONS(6268), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(4747), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(57), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [111072] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4827), 1, + anon_sym___attribute__, + ACTIONS(4831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4833), 1, + anon_sym___declspec, + ACTIONS(4837), 1, + anon_sym_virtual, + ACTIONS(6165), 1, + sym_auto, + ACTIONS(6167), 1, + anon_sym_decltype, + ACTIONS(6452), 1, + anon_sym_SEMI, + STATE(3692), 1, + sym_decltype_auto, + ACTIONS(4825), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + ACTIONS(6163), 5, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + ACTIONS(6161), 6, + anon_sym_AMP, + anon_sym___based, + anon_sym_LBRACK, + sym_identifier, + anon_sym_template, + anon_sym_operator, + STATE(3669), 8, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(4835), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [111145] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4827), 1, + anon_sym___attribute__, + ACTIONS(4831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4833), 1, + anon_sym___declspec, + ACTIONS(4837), 1, + anon_sym_virtual, + ACTIONS(6165), 1, + sym_auto, + ACTIONS(6167), 1, + anon_sym_decltype, + ACTIONS(6454), 1, + anon_sym_SEMI, + STATE(3692), 1, + sym_decltype_auto, + ACTIONS(4825), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + ACTIONS(6163), 5, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + ACTIONS(6161), 6, + anon_sym_AMP, + anon_sym___based, + anon_sym_LBRACK, + sym_identifier, + anon_sym_template, + anon_sym_operator, + STATE(3669), 8, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(4835), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [111218] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4730), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(4732), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [111269] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6219), 1, + anon_sym_LBRACE, + ACTIONS(6456), 1, + anon_sym_COLON, + STATE(3671), 1, + sym__enum_base_clause, + STATE(3739), 1, + sym_enumerator_list, + ACTIONS(5111), 11, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5113), 27, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + [111327] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4878), 1, + anon_sym_COLON, + ACTIONS(6458), 1, + anon_sym_LBRACE, + STATE(3927), 1, + sym_field_declaration_list, + STATE(6150), 1, + sym_virtual_specifier, + STATE(6936), 1, + sym_base_class_clause, + ACTIONS(6199), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4872), 7, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + ACTIONS(4874), 28, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [111389] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6294), 12, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(6292), 30, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + sym_identifier, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_template, + anon_sym_operator, + [111439] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(45), 1, + anon_sym___based, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1931), 1, + anon_sym_operator, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(2560), 1, + anon_sym_LPAREN2, + ACTIONS(2562), 1, + anon_sym_TILDE, + ACTIONS(5002), 1, + sym_identifier, + ACTIONS(5012), 1, + anon_sym_COLON_COLON, + ACTIONS(5990), 1, + anon_sym_STAR, + ACTIONS(5992), 1, + anon_sym_AMP_AMP, + ACTIONS(5994), 1, + anon_sym_AMP, + ACTIONS(5996), 1, + anon_sym_LBRACK, + STATE(5316), 1, + sym__scope_resolution, + STATE(5584), 1, + sym__declarator, + STATE(6967), 1, + sym_ms_based_modifier, + STATE(4706), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(7638), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(2871), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + STATE(5640), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [111523] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(45), 1, + anon_sym___based, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1931), 1, + anon_sym_operator, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(2560), 1, + anon_sym_LPAREN2, + ACTIONS(2562), 1, + anon_sym_TILDE, + ACTIONS(5996), 1, + anon_sym_LBRACK, + ACTIONS(6004), 1, + sym_identifier, + ACTIONS(6006), 1, + anon_sym_STAR, + ACTIONS(6008), 1, + anon_sym_AMP_AMP, + ACTIONS(6010), 1, + anon_sym_AMP, + ACTIONS(6012), 1, + anon_sym_COLON_COLON, + STATE(5330), 1, + sym__scope_resolution, + STATE(5613), 1, + sym__declarator, + STATE(7191), 1, + sym_ms_based_modifier, + STATE(4706), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(7638), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(2871), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + STATE(5640), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [111607] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3601), 1, + anon_sym_LBRACE, + ACTIONS(5481), 1, + sym_auto, + ACTIONS(5483), 1, + anon_sym_decltype, + ACTIONS(6460), 1, + anon_sym_LPAREN2, + ACTIONS(6462), 1, + anon_sym_LBRACK, + STATE(3132), 1, + sym_decltype_auto, + STATE(4012), 1, + sym_new_declarator, + STATE(4470), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5000), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(4998), 22, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [111673] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6219), 1, + anon_sym_LBRACE, + ACTIONS(6456), 1, + anon_sym_COLON, + STATE(3674), 1, + sym__enum_base_clause, + STATE(3696), 1, + sym_enumerator_list, + ACTIONS(5123), 11, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5125), 27, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + [111731] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(45), 1, + anon_sym___based, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1931), 1, + anon_sym_operator, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(2560), 1, + anon_sym_LPAREN2, + ACTIONS(2562), 1, + anon_sym_TILDE, + ACTIONS(5002), 1, + sym_identifier, + ACTIONS(5012), 1, + anon_sym_COLON_COLON, + ACTIONS(5990), 1, + anon_sym_STAR, + ACTIONS(5992), 1, + anon_sym_AMP_AMP, + ACTIONS(5994), 1, + anon_sym_AMP, + ACTIONS(5996), 1, + anon_sym_LBRACK, + STATE(5316), 1, + sym__scope_resolution, + STATE(5564), 1, + sym__declarator, + STATE(6967), 1, + sym_ms_based_modifier, + STATE(4706), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(7638), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(2871), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + STATE(5640), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [111815] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4764), 3, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + ACTIONS(4766), 39, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_typename, + anon_sym_template, + [111865] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(29), 1, + anon_sym_AMP_AMP, + ACTIONS(45), 1, + anon_sym___based, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1931), 1, + anon_sym_operator, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(2560), 1, + anon_sym_LPAREN2, + ACTIONS(2562), 1, + anon_sym_TILDE, + ACTIONS(2564), 1, + anon_sym_STAR, + ACTIONS(2566), 1, + anon_sym_AMP, + ACTIONS(4823), 1, + sym_identifier, + ACTIONS(5072), 1, + anon_sym_COLON_COLON, + ACTIONS(5996), 1, + anon_sym_LBRACK, + STATE(5352), 1, + sym__scope_resolution, + STATE(5646), 1, + sym__declarator, + STATE(7654), 1, + sym_ms_based_modifier, + STATE(4706), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(7638), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(2871), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + STATE(5640), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [111949] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6351), 1, + anon_sym_AMP_AMP, + ACTIONS(6353), 1, + anon_sym_AMP, + ACTIONS(6357), 1, + anon_sym_LBRACK, + ACTIONS(6363), 1, + anon_sym_noexcept, + ACTIONS(6365), 1, + anon_sym_throw, + ACTIONS(6464), 1, + anon_sym___attribute__, + ACTIONS(6466), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6468), 1, + anon_sym_const, + ACTIONS(6472), 1, + anon_sym_DASH_GT, + ACTIONS(6474), 1, + anon_sym_requires, + STATE(4896), 1, + sym_ref_qualifier, + STATE(5341), 1, + sym_trailing_return_type, + STATE(5378), 1, + sym_requires_clause, + ACTIONS(4880), 2, + anon_sym_final, + anon_sym_override, + STATE(3848), 2, + sym_attribute_specifier, + aux_sym__function_declarator_seq_repeat1, + STATE(3935), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(5114), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5124), 2, + sym_noexcept, + sym_throw_specifier, + STATE(5278), 2, + sym_virtual_specifier, + aux_sym__function_declarator_seq_repeat2, + ACTIONS(6349), 7, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + ACTIONS(6470), 10, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [112037] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(29), 1, + anon_sym_AMP_AMP, + ACTIONS(45), 1, + anon_sym___based, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1931), 1, + anon_sym_operator, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(2560), 1, + anon_sym_LPAREN2, + ACTIONS(2562), 1, + anon_sym_TILDE, + ACTIONS(2564), 1, + anon_sym_STAR, + ACTIONS(2566), 1, + anon_sym_AMP, + ACTIONS(4823), 1, + sym_identifier, + ACTIONS(5072), 1, + anon_sym_COLON_COLON, + ACTIONS(5996), 1, + anon_sym_LBRACK, + STATE(5352), 1, + sym__scope_resolution, + STATE(5613), 1, + sym__declarator, + STATE(7654), 1, + sym_ms_based_modifier, + STATE(4706), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(7638), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(2871), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + STATE(5640), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [112121] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(45), 1, + anon_sym___based, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1931), 1, + anon_sym_operator, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(2560), 1, + anon_sym_LPAREN2, + ACTIONS(2562), 1, + anon_sym_TILDE, + ACTIONS(5002), 1, + sym_identifier, + ACTIONS(5012), 1, + anon_sym_COLON_COLON, + ACTIONS(5996), 1, + anon_sym_LBRACK, + ACTIONS(6014), 1, + anon_sym_STAR, + ACTIONS(6016), 1, + anon_sym_AMP_AMP, + ACTIONS(6018), 1, + anon_sym_AMP, + STATE(5316), 1, + sym__scope_resolution, + STATE(5381), 1, + sym__declarator, + STATE(7713), 1, + sym_ms_based_modifier, + STATE(4706), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(7638), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(2871), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + STATE(5640), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [112205] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4878), 1, + anon_sym_COLON, + ACTIONS(6458), 1, + anon_sym_LBRACE, + STATE(3971), 1, + sym_field_declaration_list, + STATE(6097), 1, + sym_virtual_specifier, + STATE(6923), 1, + sym_base_class_clause, + ACTIONS(6199), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4890), 7, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + ACTIONS(4892), 28, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [112267] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(45), 1, + anon_sym___based, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1931), 1, + anon_sym_operator, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(2560), 1, + anon_sym_LPAREN2, + ACTIONS(2562), 1, + anon_sym_TILDE, + ACTIONS(5996), 1, + anon_sym_LBRACK, + ACTIONS(6004), 1, + sym_identifier, + ACTIONS(6006), 1, + anon_sym_STAR, + ACTIONS(6008), 1, + anon_sym_AMP_AMP, + ACTIONS(6010), 1, + anon_sym_AMP, + ACTIONS(6012), 1, + anon_sym_COLON_COLON, + STATE(5330), 1, + sym__scope_resolution, + STATE(5668), 1, + sym__declarator, + STATE(7191), 1, + sym_ms_based_modifier, + STATE(4706), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(7638), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(2871), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + STATE(5640), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [112351] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(45), 1, + anon_sym___based, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1931), 1, + anon_sym_operator, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(2560), 1, + anon_sym_LPAREN2, + ACTIONS(2562), 1, + anon_sym_TILDE, + ACTIONS(5002), 1, + sym_identifier, + ACTIONS(5012), 1, + anon_sym_COLON_COLON, + ACTIONS(5996), 1, + anon_sym_LBRACK, + ACTIONS(6014), 1, + anon_sym_STAR, + ACTIONS(6016), 1, + anon_sym_AMP_AMP, + ACTIONS(6018), 1, + anon_sym_AMP, + STATE(5316), 1, + sym__scope_resolution, + STATE(5421), 1, + sym__declarator, + STATE(7713), 1, + sym_ms_based_modifier, + STATE(4706), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(7638), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(2871), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + STATE(5640), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [112435] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6466), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6478), 1, + anon_sym___attribute__, + ACTIONS(6480), 1, + anon_sym___declspec, + ACTIONS(6482), 1, + sym_auto, + ACTIONS(6484), 1, + anon_sym_decltype, + ACTIONS(6486), 1, + anon_sym_virtual, + STATE(3984), 1, + sym_decltype_auto, + ACTIONS(6161), 4, + anon_sym_AMP, + anon_sym___based, + sym_identifier, + anon_sym_operator, + ACTIONS(6476), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + ACTIONS(6163), 7, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + STATE(3912), 8, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(6468), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [112505] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(45), 1, + anon_sym___based, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1931), 1, + anon_sym_operator, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(2560), 1, + anon_sym_LPAREN2, + ACTIONS(2562), 1, + anon_sym_TILDE, + ACTIONS(5996), 1, + anon_sym_LBRACK, + ACTIONS(6004), 1, + sym_identifier, + ACTIONS(6006), 1, + anon_sym_STAR, + ACTIONS(6008), 1, + anon_sym_AMP_AMP, + ACTIONS(6010), 1, + anon_sym_AMP, + ACTIONS(6012), 1, + anon_sym_COLON_COLON, + STATE(5330), 1, + sym__scope_resolution, + STATE(5646), 1, + sym__declarator, + STATE(7191), 1, + sym_ms_based_modifier, + STATE(4706), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(7638), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(2871), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + STATE(5640), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [112589] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(45), 1, + anon_sym___based, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1931), 1, + anon_sym_operator, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(2560), 1, + anon_sym_LPAREN2, + ACTIONS(2562), 1, + anon_sym_TILDE, + ACTIONS(5002), 1, + sym_identifier, + ACTIONS(5012), 1, + anon_sym_COLON_COLON, + ACTIONS(5990), 1, + anon_sym_STAR, + ACTIONS(5992), 1, + anon_sym_AMP_AMP, + ACTIONS(5994), 1, + anon_sym_AMP, + ACTIONS(5996), 1, + anon_sym_LBRACK, + STATE(5316), 1, + sym__scope_resolution, + STATE(5594), 1, + sym__declarator, + STATE(6967), 1, + sym_ms_based_modifier, + STATE(4706), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(7638), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(2871), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + STATE(5640), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [112673] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6351), 1, + anon_sym_AMP_AMP, + ACTIONS(6353), 1, + anon_sym_AMP, + ACTIONS(6363), 1, + anon_sym_noexcept, + ACTIONS(6365), 1, + anon_sym_throw, + ACTIONS(6409), 1, + anon_sym_LBRACK, + ACTIONS(6464), 1, + anon_sym___attribute__, + ACTIONS(6466), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6468), 1, + anon_sym_const, + ACTIONS(6472), 1, + anon_sym_DASH_GT, + ACTIONS(6474), 1, + anon_sym_requires, + STATE(4836), 1, + sym_ref_qualifier, + STATE(5314), 1, + sym_trailing_return_type, + STATE(5422), 1, + sym_requires_clause, + ACTIONS(4880), 2, + anon_sym_final, + anon_sym_override, + STATE(3941), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(4581), 2, + sym_attribute_specifier, + aux_sym__function_declarator_seq_repeat1, + STATE(5115), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5127), 2, + sym_noexcept, + sym_throw_specifier, + STATE(5301), 2, + sym_virtual_specifier, + aux_sym__function_declarator_seq_repeat2, + ACTIONS(6407), 7, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + ACTIONS(6470), 10, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [112761] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3601), 1, + anon_sym_LBRACE, + ACTIONS(5481), 1, + sym_auto, + ACTIONS(5483), 1, + anon_sym_decltype, + ACTIONS(6460), 1, + anon_sym_LPAREN2, + ACTIONS(6462), 1, + anon_sym_LBRACK, + STATE(3132), 1, + sym_decltype_auto, + STATE(4029), 1, + sym_new_declarator, + STATE(4491), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(4980), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(4976), 22, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [112827] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4878), 1, + anon_sym_COLON, + ACTIONS(6458), 1, + anon_sym_LBRACE, + STATE(3952), 1, + sym_field_declaration_list, + STATE(6027), 1, + sym_virtual_specifier, + STATE(6914), 1, + sym_base_class_clause, + ACTIONS(6199), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4937), 7, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + ACTIONS(4939), 28, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [112889] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3601), 1, + anon_sym_LBRACE, + ACTIONS(5481), 1, + sym_auto, + ACTIONS(5483), 1, + anon_sym_decltype, + ACTIONS(6460), 1, + anon_sym_LPAREN2, + ACTIONS(6462), 1, + anon_sym_LBRACK, + STATE(3132), 1, + sym_decltype_auto, + STATE(4048), 1, + sym_new_declarator, + STATE(4435), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5024), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(5022), 22, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [112955] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(45), 1, + anon_sym___based, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1931), 1, + anon_sym_operator, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(2560), 1, + anon_sym_LPAREN2, + ACTIONS(2562), 1, + anon_sym_TILDE, + ACTIONS(5002), 1, + sym_identifier, + ACTIONS(5012), 1, + anon_sym_COLON_COLON, + ACTIONS(5996), 1, + anon_sym_LBRACK, + ACTIONS(6014), 1, + anon_sym_STAR, + ACTIONS(6016), 1, + anon_sym_AMP_AMP, + ACTIONS(6018), 1, + anon_sym_AMP, + STATE(5316), 1, + sym__scope_resolution, + STATE(5406), 1, + sym__declarator, + STATE(7713), 1, + sym_ms_based_modifier, + STATE(4706), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(7638), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(2871), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + STATE(5640), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [113039] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(45), 1, + anon_sym___based, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1931), 1, + anon_sym_operator, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(2560), 1, + anon_sym_LPAREN2, + ACTIONS(2562), 1, + anon_sym_TILDE, + ACTIONS(4823), 1, + sym_identifier, + ACTIONS(5072), 1, + anon_sym_COLON_COLON, + ACTIONS(5996), 1, + anon_sym_LBRACK, + ACTIONS(6047), 1, + anon_sym_STAR, + ACTIONS(6049), 1, + anon_sym_AMP_AMP, + ACTIONS(6051), 1, + anon_sym_AMP, + STATE(5352), 1, + sym__scope_resolution, + STATE(5857), 1, + sym__declarator, + STATE(7052), 1, + sym_ms_based_modifier, + STATE(4706), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(7638), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(2871), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + STATE(5640), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [113123] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(29), 1, + anon_sym_AMP_AMP, + ACTIONS(45), 1, + anon_sym___based, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1931), 1, + anon_sym_operator, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(2560), 1, + anon_sym_LPAREN2, + ACTIONS(2562), 1, + anon_sym_TILDE, + ACTIONS(2564), 1, + anon_sym_STAR, + ACTIONS(2566), 1, + anon_sym_AMP, + ACTIONS(4823), 1, + sym_identifier, + ACTIONS(5072), 1, + anon_sym_COLON_COLON, + ACTIONS(5996), 1, + anon_sym_LBRACK, + STATE(5352), 1, + sym__scope_resolution, + STATE(5668), 1, + sym__declarator, + STATE(7654), 1, + sym_ms_based_modifier, + STATE(4706), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(7638), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(2871), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + STATE(5640), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [113207] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(45), 1, + anon_sym___based, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1931), 1, + anon_sym_operator, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(2560), 1, + anon_sym_LPAREN2, + ACTIONS(2562), 1, + anon_sym_TILDE, + ACTIONS(4823), 1, + sym_identifier, + ACTIONS(5072), 1, + anon_sym_COLON_COLON, + ACTIONS(5996), 1, + anon_sym_LBRACK, + ACTIONS(6047), 1, + anon_sym_STAR, + ACTIONS(6049), 1, + anon_sym_AMP_AMP, + ACTIONS(6051), 1, + anon_sym_AMP, + STATE(5352), 1, + sym__scope_resolution, + STATE(5864), 1, + sym__declarator, + STATE(7052), 1, + sym_ms_based_modifier, + STATE(4706), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(7638), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(2871), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + STATE(5640), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [113291] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6466), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6478), 1, + anon_sym___attribute__, + ACTIONS(6480), 1, + anon_sym___declspec, + ACTIONS(6482), 1, + sym_auto, + ACTIONS(6484), 1, + anon_sym_decltype, + ACTIONS(6486), 1, + anon_sym_virtual, + STATE(3984), 1, + sym_decltype_auto, + ACTIONS(6173), 4, + anon_sym_AMP, + anon_sym___based, + sym_identifier, + anon_sym_operator, + ACTIONS(6476), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + ACTIONS(6175), 7, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + STATE(3949), 8, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(6468), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [113361] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(45), 1, + anon_sym___based, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1931), 1, + anon_sym_operator, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(2560), 1, + anon_sym_LPAREN2, + ACTIONS(2562), 1, + anon_sym_TILDE, + ACTIONS(4823), 1, + sym_identifier, + ACTIONS(5072), 1, + anon_sym_COLON_COLON, + ACTIONS(5996), 1, + anon_sym_LBRACK, + ACTIONS(6047), 1, + anon_sym_STAR, + ACTIONS(6049), 1, + anon_sym_AMP_AMP, + ACTIONS(6051), 1, + anon_sym_AMP, + STATE(5352), 1, + sym__scope_resolution, + STATE(5801), 1, + sym__declarator, + STATE(7052), 1, + sym_ms_based_modifier, + STATE(4706), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(7638), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(2871), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + STATE(5640), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [113445] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3601), 1, + anon_sym_LBRACE, + ACTIONS(5481), 1, + sym_auto, + ACTIONS(5483), 1, + anon_sym_decltype, + ACTIONS(6460), 1, + anon_sym_LPAREN2, + ACTIONS(6462), 1, + anon_sym_LBRACK, + STATE(3132), 1, + sym_decltype_auto, + STATE(4057), 1, + sym_new_declarator, + STATE(4459), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(4996), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(4994), 22, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [113511] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4775), 3, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + ACTIONS(4777), 39, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_typename, + anon_sym_template, + [113561] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6195), 1, + anon_sym_LBRACE, + ACTIONS(6197), 1, + anon_sym_COLON, + ACTIONS(6488), 1, + anon_sym_SEMI, + STATE(3691), 1, + sym_field_declaration_list, + STATE(6182), 1, + sym_virtual_specifier, + STATE(6759), 1, + sym_base_class_clause, + ACTIONS(6199), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4937), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4939), 27, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + [113624] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6195), 1, + anon_sym_LBRACE, + ACTIONS(6197), 1, + anon_sym_COLON, + ACTIONS(6490), 1, + anon_sym_SEMI, + STATE(3691), 1, + sym_field_declaration_list, + STATE(6182), 1, + sym_virtual_specifier, + STATE(6759), 1, + sym_base_class_clause, + ACTIONS(6199), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4937), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4939), 27, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + [113687] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4878), 1, + anon_sym_COLON, + ACTIONS(6195), 1, + anon_sym_LBRACE, + STATE(3691), 1, + sym_field_declaration_list, + STATE(6182), 1, + sym_virtual_specifier, + STATE(6759), 1, + sym_base_class_clause, + ACTIONS(4880), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4939), 3, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + ACTIONS(4937), 31, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_EQ, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [113748] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6195), 1, + anon_sym_LBRACE, + ACTIONS(6197), 1, + anon_sym_COLON, + ACTIONS(6492), 1, + anon_sym_SEMI, + STATE(3691), 1, + sym_field_declaration_list, + STATE(6182), 1, + sym_virtual_specifier, + STATE(6759), 1, + sym_base_class_clause, + ACTIONS(6199), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4937), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4939), 27, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + [113811] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4555), 2, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + ACTIONS(4557), 10, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_COLON, + anon_sym_DOT, + ACTIONS(4562), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [113862] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4878), 1, + anon_sym_COLON, + ACTIONS(6195), 1, + anon_sym_LBRACE, + STATE(3768), 1, + sym_field_declaration_list, + STATE(6054), 1, + sym_virtual_specifier, + STATE(6930), 1, + sym_base_class_clause, + ACTIONS(4880), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4892), 3, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + ACTIONS(4890), 31, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_EQ, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [113923] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6195), 1, + anon_sym_LBRACE, + ACTIONS(6197), 1, + anon_sym_COLON, + ACTIONS(6494), 1, + anon_sym_SEMI, + STATE(3691), 1, + sym_field_declaration_list, + STATE(6182), 1, + sym_virtual_specifier, + STATE(6759), 1, + sym_base_class_clause, + ACTIONS(6199), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4937), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4939), 27, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + [113986] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5621), 1, + anon_sym_LBRACE, + ACTIONS(6496), 1, + anon_sym_COLON, + STATE(3046), 1, + sym__enum_base_clause, + STATE(3095), 1, + sym_enumerator_list, + ACTIONS(5113), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(5111), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [114043] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6195), 1, + anon_sym_LBRACE, + ACTIONS(6197), 1, + anon_sym_COLON, + ACTIONS(6498), 1, + anon_sym_SEMI, + STATE(3691), 1, + sym_field_declaration_list, + STATE(6182), 1, + sym_virtual_specifier, + STATE(6759), 1, + sym_base_class_clause, + ACTIONS(6199), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4937), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4939), 27, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + [114106] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6195), 1, + anon_sym_LBRACE, + ACTIONS(6197), 1, + anon_sym_COLON, + ACTIONS(6500), 1, + anon_sym_SEMI, + STATE(3691), 1, + sym_field_declaration_list, + STATE(6182), 1, + sym_virtual_specifier, + STATE(6759), 1, + sym_base_class_clause, + ACTIONS(6199), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4937), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4939), 27, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + [114169] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(45), 1, + anon_sym___based, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1931), 1, + anon_sym_operator, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(2562), 1, + anon_sym_TILDE, + ACTIONS(4014), 1, + anon_sym_LPAREN2, + ACTIONS(5002), 1, + sym_identifier, + ACTIONS(5006), 1, + anon_sym_STAR, + ACTIONS(5008), 1, + anon_sym_AMP_AMP, + ACTIONS(5010), 1, + anon_sym_AMP, + ACTIONS(5012), 1, + anon_sym_COLON_COLON, + ACTIONS(5014), 1, + anon_sym_LBRACK, + ACTIONS(6369), 1, + anon_sym_DOT_DOT_DOT, + STATE(3900), 1, + sym_parameter_list, + STATE(5316), 1, + sym__scope_resolution, + STATE(5440), 1, + sym__declarator, + STATE(5457), 1, + sym__function_declarator_seq, + STATE(5650), 1, + sym__abstract_declarator, + STATE(6410), 1, + sym_variadic_declarator, + STATE(7713), 1, + sym_ms_based_modifier, + ACTIONS(6502), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(7638), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(5452), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + STATE(5640), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [114262] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(45), 1, + anon_sym___based, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1931), 1, + anon_sym_operator, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(2562), 1, + anon_sym_TILDE, + ACTIONS(4014), 1, + anon_sym_LPAREN2, + ACTIONS(5002), 1, + sym_identifier, + ACTIONS(5012), 1, + anon_sym_COLON_COLON, + ACTIONS(5014), 1, + anon_sym_LBRACK, + ACTIONS(5030), 1, + anon_sym_STAR, + ACTIONS(5032), 1, + anon_sym_AMP_AMP, + ACTIONS(5034), 1, + anon_sym_AMP, + ACTIONS(6369), 1, + anon_sym_DOT_DOT_DOT, + STATE(3964), 1, + sym_parameter_list, + STATE(5316), 1, + sym__scope_resolution, + STATE(5440), 1, + sym__declarator, + STATE(5457), 1, + sym__function_declarator_seq, + STATE(5674), 1, + sym__abstract_declarator, + STATE(6410), 1, + sym_variadic_declarator, + STATE(7713), 1, + sym_ms_based_modifier, + ACTIONS(6502), 2, + anon_sym_COMMA, + anon_sym_GT2, + STATE(7638), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(5452), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + STATE(5640), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [114355] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6195), 1, + anon_sym_LBRACE, + ACTIONS(6197), 1, + anon_sym_COLON, + ACTIONS(6504), 1, + anon_sym_SEMI, + STATE(3691), 1, + sym_field_declaration_list, + STATE(6182), 1, + sym_virtual_specifier, + STATE(6759), 1, + sym_base_class_clause, + ACTIONS(6199), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4937), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4939), 27, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + [114418] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5621), 1, + anon_sym_LBRACE, + ACTIONS(6496), 1, + anon_sym_COLON, + STATE(3008), 1, + sym__enum_base_clause, + STATE(3104), 1, + sym_enumerator_list, + ACTIONS(5125), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(5123), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [114475] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6195), 1, + anon_sym_LBRACE, + ACTIONS(6197), 1, + anon_sym_COLON, + ACTIONS(6506), 1, + anon_sym_SEMI, + STATE(3691), 1, + sym_field_declaration_list, + STATE(6182), 1, + sym_virtual_specifier, + STATE(6759), 1, + sym_base_class_clause, + ACTIONS(6199), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4937), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4939), 27, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + [114538] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6310), 1, + anon_sym_LBRACK, + STATE(3879), 1, + sym_new_declarator, + ACTIONS(5387), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(5385), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [114591] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6195), 1, + anon_sym_LBRACE, + ACTIONS(6197), 1, + anon_sym_COLON, + ACTIONS(6508), 1, + anon_sym_SEMI, + STATE(3691), 1, + sym_field_declaration_list, + STATE(6182), 1, + sym_virtual_specifier, + STATE(6759), 1, + sym_base_class_clause, + ACTIONS(6199), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4937), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4939), 27, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + [114654] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4878), 1, + anon_sym_COLON, + ACTIONS(6195), 1, + anon_sym_LBRACE, + STATE(3773), 1, + sym_field_declaration_list, + STATE(6035), 1, + sym_virtual_specifier, + STATE(6732), 1, + sym_base_class_clause, + ACTIONS(4880), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4874), 3, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + ACTIONS(4872), 31, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_EQ, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [114715] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1899), 1, + anon_sym_LBRACE, + ACTIONS(6308), 1, + anon_sym_LPAREN2, + STATE(3920), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5349), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(5347), 27, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [114769] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5457), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(5455), 31, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [114817] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(6512), 1, + anon_sym_LPAREN2, + ACTIONS(6514), 1, + anon_sym_STAR, + ACTIONS(6516), 1, + anon_sym_AMP_AMP, + ACTIONS(6518), 1, + anon_sym_AMP, + ACTIONS(6520), 1, + anon_sym_LBRACK, + ACTIONS(6522), 1, + sym_auto, + ACTIONS(6524), 1, + anon_sym_decltype, + STATE(3692), 1, + sym_decltype_auto, + STATE(3793), 1, + sym_parameter_list, + STATE(5322), 1, + sym__abstract_declarator, + STATE(5464), 1, + sym__function_declarator_seq, + STATE(4099), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(5367), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6359), 10, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(6510), 11, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [114893] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6482), 1, + sym_auto, + ACTIONS(6484), 1, + anon_sym_decltype, + STATE(3984), 1, + sym_decltype_auto, + ACTIONS(5141), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(5143), 28, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [114947] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(4831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6351), 1, + anon_sym_AMP_AMP, + ACTIONS(6353), 1, + anon_sym_AMP, + ACTIONS(6361), 1, + anon_sym_DASH_GT, + ACTIONS(6363), 1, + anon_sym_noexcept, + ACTIONS(6365), 1, + anon_sym_throw, + ACTIONS(6367), 1, + anon_sym_requires, + ACTIONS(6409), 1, + anon_sym_LBRACK, + STATE(4808), 1, + sym_ref_qualifier, + STATE(5247), 1, + sym_trailing_return_type, + STATE(5422), 1, + sym_requires_clause, + ACTIONS(4880), 2, + anon_sym_final, + anon_sym_override, + STATE(4527), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(5074), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5077), 2, + sym_noexcept, + sym_throw_specifier, + STATE(5301), 2, + sym_virtual_specifier, + aux_sym__function_declarator_seq_repeat2, + ACTIONS(6407), 8, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_try, + ACTIONS(6359), 10, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [115029] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(4831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6351), 1, + anon_sym_AMP_AMP, + ACTIONS(6353), 1, + anon_sym_AMP, + ACTIONS(6355), 1, + anon_sym___attribute__, + ACTIONS(6363), 1, + anon_sym_noexcept, + ACTIONS(6365), 1, + anon_sym_throw, + ACTIONS(6409), 1, + anon_sym_LBRACK, + ACTIONS(6526), 1, + anon_sym_DASH_GT, + ACTIONS(6530), 1, + anon_sym_requires, + STATE(4951), 1, + sym_ref_qualifier, + STATE(5436), 1, + sym_requires_clause, + STATE(5484), 1, + sym_trailing_return_type, + ACTIONS(6528), 2, + anon_sym_final, + anon_sym_override, + STATE(4094), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(4525), 2, + sym_attribute_specifier, + aux_sym__function_declarator_seq_repeat1, + STATE(5155), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5186), 2, + sym_noexcept, + sym_throw_specifier, + STATE(5229), 2, + sym_virtual_specifier, + aux_sym__function_declarator_seq_repeat2, + ACTIONS(6407), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + ACTIONS(6359), 10, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [115115] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5565), 1, + sym_literal_suffix, + ACTIONS(4465), 15, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + ACTIONS(4457), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [115165] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5121), 10, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_DASH_GT, + ACTIONS(5119), 30, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_noexcept, + anon_sym_throw, + anon_sym_requires, + [115213] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4476), 1, + anon_sym_COLON_COLON, + ACTIONS(6401), 1, + anon_sym_LT, + STATE(2914), 1, + sym_template_argument_list, + ACTIONS(4455), 10, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(4463), 27, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [115267] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(4831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6351), 1, + anon_sym_AMP_AMP, + ACTIONS(6353), 1, + anon_sym_AMP, + ACTIONS(6355), 1, + anon_sym___attribute__, + ACTIONS(6357), 1, + anon_sym_LBRACK, + ACTIONS(6363), 1, + anon_sym_noexcept, + ACTIONS(6365), 1, + anon_sym_throw, + ACTIONS(6532), 1, + anon_sym_DASH_GT, + ACTIONS(6534), 1, + anon_sym_requires, + STATE(4964), 1, + sym_ref_qualifier, + STATE(5378), 1, + sym_requires_clause, + STATE(5492), 1, + sym_trailing_return_type, + ACTIONS(4880), 2, + anon_sym_final, + anon_sym_override, + STATE(3894), 2, + sym_attribute_specifier, + aux_sym__function_declarator_seq_repeat1, + STATE(4062), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(5170), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5171), 2, + sym_noexcept, + sym_throw_specifier, + STATE(5278), 2, + sym_virtual_specifier, + aux_sym__function_declarator_seq_repeat2, + ACTIONS(6349), 5, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_try, + ACTIONS(6359), 10, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [115353] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(4831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6351), 1, + anon_sym_AMP_AMP, + ACTIONS(6353), 1, + anon_sym_AMP, + ACTIONS(6355), 1, + anon_sym___attribute__, + ACTIONS(6357), 1, + anon_sym_LBRACK, + ACTIONS(6363), 1, + anon_sym_noexcept, + ACTIONS(6365), 1, + anon_sym_throw, + ACTIONS(6536), 1, + anon_sym_DASH_GT, + ACTIONS(6538), 1, + anon_sym_requires, + STATE(4962), 1, + sym_ref_qualifier, + STATE(5410), 1, + sym_requires_clause, + STATE(5576), 1, + sym_trailing_return_type, + ACTIONS(6528), 2, + anon_sym_final, + anon_sym_override, + STATE(3891), 2, + sym_attribute_specifier, + aux_sym__function_declarator_seq_repeat1, + STATE(4111), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(5164), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5167), 2, + sym_noexcept, + sym_throw_specifier, + STATE(5222), 2, + sym_virtual_specifier, + aux_sym__function_declarator_seq_repeat2, + ACTIONS(6349), 5, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + ACTIONS(6359), 10, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [115439] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5780), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(5778), 31, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [115487] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(6512), 1, + anon_sym_LPAREN2, + ACTIONS(6514), 1, + anon_sym_STAR, + ACTIONS(6516), 1, + anon_sym_AMP_AMP, + ACTIONS(6518), 1, + anon_sym_AMP, + ACTIONS(6520), 1, + anon_sym_LBRACK, + ACTIONS(6522), 1, + sym_auto, + ACTIONS(6524), 1, + anon_sym_decltype, + STATE(3692), 1, + sym_decltype_auto, + STATE(3793), 1, + sym_parameter_list, + STATE(5335), 1, + sym__abstract_declarator, + STATE(5464), 1, + sym__function_declarator_seq, + STATE(4089), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(5367), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6359), 10, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(6540), 11, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [115563] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(4831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6351), 1, + anon_sym_AMP_AMP, + ACTIONS(6353), 1, + anon_sym_AMP, + ACTIONS(6355), 1, + anon_sym___attribute__, + ACTIONS(6363), 1, + anon_sym_noexcept, + ACTIONS(6365), 1, + anon_sym_throw, + ACTIONS(6409), 1, + anon_sym_LBRACK, + ACTIONS(6536), 1, + anon_sym_DASH_GT, + ACTIONS(6538), 1, + anon_sym_requires, + STATE(4959), 1, + sym_ref_qualifier, + STATE(5436), 1, + sym_requires_clause, + STATE(5599), 1, + sym_trailing_return_type, + ACTIONS(6528), 2, + anon_sym_final, + anon_sym_override, + STATE(4119), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(4525), 2, + sym_attribute_specifier, + aux_sym__function_declarator_seq_repeat1, + STATE(5158), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5161), 2, + sym_noexcept, + sym_throw_specifier, + STATE(5229), 2, + sym_virtual_specifier, + aux_sym__function_declarator_seq_repeat2, + ACTIONS(6407), 5, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + ACTIONS(6359), 10, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [115649] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5397), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_literal_suffix, + ACTIONS(5395), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [115697] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5607), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(5605), 31, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [115745] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(4831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6351), 1, + anon_sym_AMP_AMP, + ACTIONS(6353), 1, + anon_sym_AMP, + ACTIONS(6355), 1, + anon_sym___attribute__, + ACTIONS(6363), 1, + anon_sym_noexcept, + ACTIONS(6365), 1, + anon_sym_throw, + ACTIONS(6409), 1, + anon_sym_LBRACK, + ACTIONS(6532), 1, + anon_sym_DASH_GT, + ACTIONS(6534), 1, + anon_sym_requires, + STATE(4955), 1, + sym_ref_qualifier, + STATE(5422), 1, + sym_requires_clause, + STATE(5499), 1, + sym_trailing_return_type, + ACTIONS(4880), 2, + anon_sym_final, + anon_sym_override, + STATE(4073), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(4525), 2, + sym_attribute_specifier, + aux_sym__function_declarator_seq_repeat1, + STATE(5168), 2, + sym_noexcept, + sym_throw_specifier, + STATE(5177), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5301), 2, + sym_virtual_specifier, + aux_sym__function_declarator_seq_repeat2, + ACTIONS(6407), 5, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_try, + ACTIONS(6359), 10, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [115831] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4476), 1, + anon_sym_COLON_COLON, + STATE(3608), 1, + sym_template_argument_list, + ACTIONS(5106), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(5104), 27, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [115883] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(4831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6351), 1, + anon_sym_AMP_AMP, + ACTIONS(6353), 1, + anon_sym_AMP, + ACTIONS(6361), 1, + anon_sym_DASH_GT, + ACTIONS(6363), 1, + anon_sym_noexcept, + ACTIONS(6365), 1, + anon_sym_throw, + ACTIONS(6367), 1, + anon_sym_requires, + ACTIONS(6544), 1, + anon_sym_LBRACK, + STATE(4809), 1, + sym_ref_qualifier, + STATE(5237), 1, + sym_trailing_return_type, + STATE(5360), 1, + sym_requires_clause, + ACTIONS(4880), 2, + anon_sym_final, + anon_sym_override, + STATE(4527), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(5050), 2, + sym_noexcept, + sym_throw_specifier, + STATE(5055), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5295), 2, + sym_virtual_specifier, + aux_sym__function_declarator_seq_repeat2, + ACTIONS(6542), 8, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_try, + ACTIONS(6359), 10, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [115965] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5685), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(5683), 31, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [116013] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6546), 1, + anon_sym_LBRACE, + STATE(3922), 1, + sym_enumerator_list, + ACTIONS(5131), 8, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(5133), 30, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [116065] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1899), 1, + anon_sym_LBRACE, + ACTIONS(6308), 1, + anon_sym_LPAREN2, + STATE(3972), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5222), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(5220), 27, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [116119] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(4831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6351), 1, + anon_sym_AMP_AMP, + ACTIONS(6353), 1, + anon_sym_AMP, + ACTIONS(6355), 1, + anon_sym___attribute__, + ACTIONS(6357), 1, + anon_sym_LBRACK, + ACTIONS(6363), 1, + anon_sym_noexcept, + ACTIONS(6365), 1, + anon_sym_throw, + ACTIONS(6526), 1, + anon_sym_DASH_GT, + ACTIONS(6530), 1, + anon_sym_requires, + STATE(4956), 1, + sym_ref_qualifier, + STATE(5410), 1, + sym_requires_clause, + STATE(5540), 1, + sym_trailing_return_type, + ACTIONS(6528), 2, + anon_sym_final, + anon_sym_override, + STATE(3883), 2, + sym_attribute_specifier, + aux_sym__function_declarator_seq_repeat1, + STATE(4117), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(5199), 2, + sym_noexcept, + sym_throw_specifier, + STATE(5220), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5222), 2, + sym_virtual_specifier, + aux_sym__function_declarator_seq_repeat2, + ACTIONS(6349), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + ACTIONS(6359), 10, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [116205] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1899), 1, + anon_sym_LBRACE, + ACTIONS(6308), 1, + anon_sym_LPAREN2, + STATE(3985), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5174), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(5172), 27, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [116259] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5593), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(2960), 31, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [116307] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6546), 1, + anon_sym_LBRACE, + STATE(3962), 1, + sym_enumerator_list, + ACTIONS(5157), 8, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(5159), 30, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [116359] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5082), 10, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_DASH_GT, + ACTIONS(5080), 30, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_noexcept, + anon_sym_throw, + anon_sym_requires, + [116407] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1899), 1, + anon_sym_LBRACE, + ACTIONS(6308), 1, + anon_sym_LPAREN2, + STATE(3983), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5329), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(5327), 27, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [116461] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5713), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(5711), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [116508] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6551), 1, + anon_sym___attribute__, + ACTIONS(6554), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6557), 1, + anon_sym___declspec, + ACTIONS(6563), 1, + anon_sym_virtual, + ACTIONS(6235), 4, + anon_sym_AMP, + anon_sym___based, + sym_identifier, + anon_sym_operator, + ACTIONS(6548), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + ACTIONS(6237), 7, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + STATE(3907), 8, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(6560), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [116569] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(45), 1, + anon_sym___based, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1931), 1, + anon_sym_operator, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(2562), 1, + anon_sym_TILDE, + ACTIONS(4014), 1, + anon_sym_LPAREN2, + ACTIONS(5002), 1, + sym_identifier, + ACTIONS(5006), 1, + anon_sym_STAR, + ACTIONS(5008), 1, + anon_sym_AMP_AMP, + ACTIONS(5010), 1, + anon_sym_AMP, + ACTIONS(5012), 1, + anon_sym_COLON_COLON, + ACTIONS(5014), 1, + anon_sym_LBRACK, + STATE(3900), 1, + sym_parameter_list, + STATE(5316), 1, + sym__scope_resolution, + STATE(5440), 1, + sym__declarator, + STATE(5457), 1, + sym__function_declarator_seq, + STATE(5650), 1, + sym__abstract_declarator, + STATE(7713), 1, + sym_ms_based_modifier, + ACTIONS(6502), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(7638), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(5452), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + STATE(5640), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [116656] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5768), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(5766), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [116703] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1899), 1, + anon_sym_LBRACE, + ACTIONS(6347), 1, + anon_sym_LPAREN2, + STATE(3983), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5329), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(5327), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [116756] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6566), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5204), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(5206), 28, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [116805] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6466), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6478), 1, + anon_sym___attribute__, + ACTIONS(6480), 1, + anon_sym___declspec, + ACTIONS(6486), 1, + anon_sym_virtual, + ACTIONS(6213), 4, + anon_sym_AMP, + anon_sym___based, + sym_identifier, + anon_sym_operator, + ACTIONS(6476), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + ACTIONS(6215), 7, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + STATE(3907), 8, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(6468), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [116866] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6568), 1, + anon_sym_LPAREN2, + STATE(3034), 1, + sym_argument_list, + ACTIONS(5153), 10, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + ACTIONS(5155), 27, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + [116917] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5619), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(5617), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [116964] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5062), 1, + anon_sym_LBRACE, + ACTIONS(5153), 11, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + ACTIONS(5155), 27, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + [117013] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5283), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(5285), 30, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [117060] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5740), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(5738), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [117107] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5153), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(5155), 30, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [117154] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5200), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(5202), 30, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [117201] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5615), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(5613), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [117248] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5043), 1, + anon_sym_COLON_COLON, + ACTIONS(5062), 1, + anon_sym_LBRACE, + ACTIONS(5153), 10, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + ACTIONS(5155), 27, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + [117299] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5196), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(5198), 30, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [117346] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5776), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(5774), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [117393] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5192), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(5194), 30, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [117440] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5188), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(5190), 30, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [117487] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5689), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(5687), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [117534] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5180), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(5182), 30, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [117581] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5581), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(5579), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [117628] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5176), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(5178), 30, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [117675] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4978), 1, + anon_sym_LPAREN2, + ACTIONS(5493), 1, + anon_sym_LBRACK, + ACTIONS(5497), 1, + anon_sym_DOT, + ACTIONS(5499), 1, + anon_sym_DASH_GT, + STATE(2996), 1, + sym_argument_list, + ACTIONS(5681), 8, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5679), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + [117732] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5629), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(5627), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [117779] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(1890), 1, + sym__fold_operator, + ACTIONS(6573), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(6571), 25, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [117828] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4978), 1, + anon_sym_LPAREN2, + ACTIONS(5493), 1, + anon_sym_LBRACK, + ACTIONS(5497), 1, + anon_sym_DOT, + ACTIONS(5499), 1, + anon_sym_DASH_GT, + STATE(2996), 1, + sym_argument_list, + ACTIONS(5647), 8, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5645), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + [117885] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1899), 1, + anon_sym_LBRACE, + ACTIONS(6347), 1, + anon_sym_LPAREN2, + STATE(3920), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5349), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(5347), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [117938] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6351), 1, + anon_sym_AMP_AMP, + ACTIONS(6353), 1, + anon_sym_AMP, + ACTIONS(6363), 1, + anon_sym_noexcept, + ACTIONS(6365), 1, + anon_sym_throw, + ACTIONS(6409), 1, + anon_sym_LBRACK, + ACTIONS(6466), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6468), 1, + anon_sym_const, + ACTIONS(6472), 1, + anon_sym_DASH_GT, + ACTIONS(6474), 1, + anon_sym_requires, + STATE(4836), 1, + sym_ref_qualifier, + STATE(5314), 1, + sym_trailing_return_type, + STATE(5422), 1, + sym_requires_clause, + ACTIONS(4880), 2, + anon_sym_final, + anon_sym_override, + STATE(4585), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(5115), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5127), 2, + sym_noexcept, + sym_throw_specifier, + STATE(5301), 2, + sym_virtual_specifier, + aux_sym__function_declarator_seq_repeat2, + ACTIONS(6407), 7, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + ACTIONS(6470), 10, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [118019] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6468), 1, + anon_sym_const, + ACTIONS(6512), 1, + anon_sym_LPAREN2, + ACTIONS(6520), 1, + anon_sym_LBRACK, + ACTIONS(6575), 1, + anon_sym_STAR, + ACTIONS(6577), 1, + anon_sym_AMP_AMP, + ACTIONS(6579), 1, + anon_sym_AMP, + ACTIONS(6581), 1, + sym_auto, + ACTIONS(6583), 1, + anon_sym_decltype, + STATE(3839), 1, + sym_parameter_list, + STATE(3984), 1, + sym_decltype_auto, + STATE(5379), 1, + sym__abstract_declarator, + STATE(5464), 1, + sym__function_declarator_seq, + STATE(4208), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(5367), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6470), 10, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(6540), 10, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [118094] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5705), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(5703), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [118141] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5264), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(5266), 30, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [118188] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5244), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(5246), 30, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [118235] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5736), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(5734), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [118282] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6351), 1, + anon_sym_AMP_AMP, + ACTIONS(6353), 1, + anon_sym_AMP, + ACTIONS(6363), 1, + anon_sym_noexcept, + ACTIONS(6365), 1, + anon_sym_throw, + ACTIONS(6466), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6468), 1, + anon_sym_const, + ACTIONS(6472), 1, + anon_sym_DASH_GT, + ACTIONS(6474), 1, + anon_sym_requires, + ACTIONS(6544), 1, + anon_sym_LBRACK, + STATE(4834), 1, + sym_ref_qualifier, + STATE(5306), 1, + sym_trailing_return_type, + STATE(5360), 1, + sym_requires_clause, + ACTIONS(4880), 2, + anon_sym_final, + anon_sym_override, + STATE(4585), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(5134), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5141), 2, + sym_noexcept, + sym_throw_specifier, + STATE(5295), 2, + sym_virtual_specifier, + aux_sym__function_declarator_seq_repeat2, + ACTIONS(6542), 7, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + ACTIONS(6470), 10, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [118363] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5240), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(5242), 30, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [118410] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5236), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(5238), 30, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [118457] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4978), 1, + anon_sym_LPAREN2, + ACTIONS(5493), 1, + anon_sym_LBRACK, + ACTIONS(5497), 1, + anon_sym_DOT, + ACTIONS(5499), 1, + anon_sym_DASH_GT, + STATE(2996), 1, + sym_argument_list, + ACTIONS(6585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5489), 8, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5487), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + [118516] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5232), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(5234), 30, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [118563] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6566), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6587), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5299), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(5301), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [118614] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5339), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(5341), 30, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [118661] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6468), 1, + anon_sym_const, + ACTIONS(6512), 1, + anon_sym_LPAREN2, + ACTIONS(6520), 1, + anon_sym_LBRACK, + ACTIONS(6575), 1, + anon_sym_STAR, + ACTIONS(6577), 1, + anon_sym_AMP_AMP, + ACTIONS(6579), 1, + anon_sym_AMP, + ACTIONS(6581), 1, + sym_auto, + ACTIONS(6583), 1, + anon_sym_decltype, + STATE(3839), 1, + sym_parameter_list, + STATE(3984), 1, + sym_decltype_auto, + STATE(5444), 1, + sym__abstract_declarator, + STATE(5464), 1, + sym__function_declarator_seq, + STATE(4202), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(5367), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6470), 10, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(6510), 10, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [118736] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6466), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6478), 1, + anon_sym___attribute__, + ACTIONS(6480), 1, + anon_sym___declspec, + ACTIONS(6486), 1, + anon_sym_virtual, + ACTIONS(6257), 4, + anon_sym_AMP, + anon_sym___based, + sym_identifier, + anon_sym_operator, + ACTIONS(6476), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + ACTIONS(6259), 7, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + STATE(3907), 8, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(6468), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [118797] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5728), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(5726), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [118844] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5260), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(5262), 30, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [118891] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5295), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(5297), 30, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [118938] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5772), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(5770), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [118985] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5224), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(5226), 30, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [119032] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5291), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(5293), 30, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [119079] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5287), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(5289), 30, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [119126] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5744), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(5742), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [119173] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5228), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(5230), 30, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [119220] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5272), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(5274), 30, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [119267] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5279), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(5281), 30, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [119314] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1899), 1, + anon_sym_LBRACE, + ACTIONS(6347), 1, + anon_sym_LPAREN2, + STATE(3985), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5174), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(5172), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [119367] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5168), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(5170), 30, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [119414] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5256), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(5258), 30, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [119461] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(4831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6351), 1, + anon_sym_AMP_AMP, + ACTIONS(6353), 1, + anon_sym_AMP, + ACTIONS(6355), 1, + anon_sym___attribute__, + ACTIONS(6357), 1, + anon_sym_LBRACK, + ACTIONS(6363), 1, + anon_sym_noexcept, + ACTIONS(6365), 1, + anon_sym_throw, + ACTIONS(6589), 1, + anon_sym_DASH_GT, + ACTIONS(6591), 1, + anon_sym_requires, + STATE(5024), 1, + sym_ref_qualifier, + STATE(5410), 1, + sym_requires_clause, + STATE(5605), 1, + sym_trailing_return_type, + ACTIONS(6528), 2, + anon_sym_final, + anon_sym_override, + STATE(3986), 2, + sym_attribute_specifier, + aux_sym__function_declarator_seq_repeat1, + STATE(4130), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(5222), 2, + sym_virtual_specifier, + aux_sym__function_declarator_seq_repeat2, + STATE(5224), 2, + sym_noexcept, + sym_throw_specifier, + STATE(5225), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(6349), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_GT2, + ACTIONS(6359), 10, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [119546] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4476), 1, anon_sym_COLON_COLON, + ACTIONS(6045), 1, + anon_sym_LT, + ACTIONS(6446), 1, + anon_sym_EQ, + STATE(3608), 1, + sym_template_argument_list, + ACTIONS(6444), 2, + anon_sym_COMMA, + anon_sym_GT2, + ACTIONS(4463), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LBRACK_LBRACK, + ACTIONS(4455), 27, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + [119603] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5153), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(5155), 30, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [119650] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5748), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(5746), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [119697] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5724), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(5722), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [119744] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5752), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(5750), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [119791] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5307), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(5309), 30, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [119838] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5311), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(5313), 30, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [119885] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5717), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(5715), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [119932] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4978), 1, + anon_sym_LPAREN2, + ACTIONS(5493), 1, + anon_sym_LBRACK, + ACTIONS(5497), 1, + anon_sym_DOT, + ACTIONS(5499), 1, + anon_sym_DASH_GT, + STATE(2996), 1, + sym_argument_list, + ACTIONS(6585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5665), 8, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5663), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + [119991] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5319), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(5321), 30, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [120038] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1899), 1, + anon_sym_LBRACE, + ACTIONS(6347), 1, + anon_sym_LPAREN2, + STATE(3972), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5222), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(5220), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [120091] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5659), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(5657), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [120138] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5315), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_GT2, - ACTIONS(4324), 28, + anon_sym_COLON, + ACTIONS(5317), 30, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, @@ -309449,11 +408600,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [120185] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5701), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(5699), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [120232] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5164), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(5166), 30, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, sym_identifier, @@ -309462,162 +408704,555 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_virtual, - anon_sym_template, anon_sym_operator, anon_sym_try, anon_sym_requires, - [92521] = 24, + [120279] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, + ACTIONS(45), 1, + anon_sym___based, + ACTIONS(1329), 1, anon_sym_template, - ACTIONS(1507), 1, - anon_sym_enum, - ACTIONS(1509), 1, - anon_sym_class, - ACTIONS(1511), 1, - anon_sym_struct, - ACTIONS(1513), 1, - anon_sym_union, - ACTIONS(1515), 1, - sym_auto, - ACTIONS(1517), 1, + ACTIONS(1931), 1, + anon_sym_operator, + ACTIONS(1973), 1, anon_sym_decltype, - ACTIONS(1519), 1, - anon_sym_typename, - ACTIONS(5498), 1, + ACTIONS(2562), 1, + anon_sym_TILDE, + ACTIONS(4014), 1, + anon_sym_LPAREN2, + ACTIONS(5002), 1, sym_identifier, - ACTIONS(5502), 1, + ACTIONS(5012), 1, anon_sym_COLON_COLON, - ACTIONS(5504), 1, - sym_primitive_type, - STATE(1922), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2444), 1, - sym_qualified_type_identifier, - STATE(2540), 1, - sym_decltype_auto, - STATE(3894), 1, - sym__type_specifier, - STATE(4997), 1, + ACTIONS(5014), 1, + anon_sym_LBRACK, + ACTIONS(5030), 1, + anon_sym_STAR, + ACTIONS(5032), 1, + anon_sym_AMP_AMP, + ACTIONS(5034), 1, + anon_sym_AMP, + STATE(3964), 1, + sym_parameter_list, + STATE(5316), 1, sym__scope_resolution, - STATE(5909), 1, - sym_type_descriptor, - STATE(6159), 1, - sym_dependent_type_identifier, - STATE(2247), 2, + STATE(5440), 1, + sym__declarator, + STATE(5457), 1, + sym__function_declarator_seq, + STATE(5674), 1, + sym__abstract_declarator, + STATE(7713), 1, + sym_ms_based_modifier, + ACTIONS(6502), 2, + anon_sym_COMMA, + anon_sym_GT2, + STATE(7638), 3, sym_decltype, sym_template_type, - STATE(3299), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(1503), 4, + sym_dependent_type_identifier, + STATE(5452), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + STATE(5640), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [120366] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6593), 1, + sym_identifier, + ACTIONS(6598), 1, + sym_primitive_type, + STATE(3682), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6596), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2541), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(59), 8, + ACTIONS(4807), 8, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(4809), 24, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - [92612] = 24, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + [120421] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1507), 1, - anon_sym_enum, - ACTIONS(1509), 1, - anon_sym_class, - ACTIONS(1511), 1, - anon_sym_struct, - ACTIONS(1513), 1, - anon_sym_union, - ACTIONS(1515), 1, + ACTIONS(5655), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(5653), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [120468] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5651), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(5649), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [120515] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5184), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(5186), 30, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, sym_auto, - ACTIONS(1517), 1, anon_sym_decltype, - ACTIONS(1519), 1, - anon_sym_typename, - ACTIONS(5498), 1, - sym_identifier, - ACTIONS(5502), 1, - anon_sym_COLON_COLON, - ACTIONS(5504), 1, - sym_primitive_type, - STATE(1922), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2444), 1, - sym_qualified_type_identifier, - STATE(2540), 1, - sym_decltype_auto, - STATE(3894), 1, - sym__type_specifier, - STATE(4997), 1, - sym__scope_resolution, - STATE(6159), 1, - sym_dependent_type_identifier, - STATE(6233), 1, - sym_type_descriptor, - STATE(2247), 2, - sym_decltype, - sym_template_type, - STATE(3299), 2, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [120562] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5756), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(5754), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [120609] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(4831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6351), 1, + anon_sym_AMP_AMP, + ACTIONS(6353), 1, + anon_sym_AMP, + ACTIONS(6355), 1, + anon_sym___attribute__, + ACTIONS(6363), 1, + anon_sym_noexcept, + ACTIONS(6365), 1, + anon_sym_throw, + ACTIONS(6409), 1, + anon_sym_LBRACK, + ACTIONS(6589), 1, + anon_sym_DASH_GT, + ACTIONS(6591), 1, + anon_sym_requires, + STATE(4975), 1, + sym_ref_qualifier, + STATE(5436), 1, + sym_requires_clause, + STATE(5618), 1, + sym_trailing_return_type, + ACTIONS(6528), 2, + anon_sym_final, + anon_sym_override, + STATE(4128), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(1503), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2541), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(59), 8, - anon_sym_const, + STATE(4525), 2, + sym_attribute_specifier, + aux_sym__function_declarator_seq_repeat1, + STATE(5229), 2, + sym_virtual_specifier, + aux_sym__function_declarator_seq_repeat2, + STATE(5233), 2, + sym_noexcept, + sym_throw_specifier, + STATE(5236), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(6407), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_GT2, + ACTIONS(6359), 10, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - [92703] = 3, + [120694] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4573), 13, + ACTIONS(5673), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(5671), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [120741] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5569), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(5567), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [120788] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5611), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(5609), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_TILDE, anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [120835] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4476), 1, anon_sym_COLON_COLON, + ACTIONS(4507), 1, + anon_sym_LBRACK, + ACTIONS(6045), 1, + anon_sym_LT, + STATE(4033), 1, + sym_template_argument_list, + ACTIONS(4500), 3, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + ACTIONS(4503), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_EQ, + ACTIONS(4498), 26, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + [120892] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5343), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_GT2, - ACTIONS(4575), 28, + anon_sym_COLON, + ACTIONS(5345), 30, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, @@ -309629,11 +409264,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, sym_identifier, @@ -309642,95 +409280,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_virtual, - anon_sym_template, anon_sym_operator, anon_sym_try, anon_sym_requires, - [92752] = 24, + [120939] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1507), 1, - anon_sym_enum, - ACTIONS(1509), 1, - anon_sym_class, - ACTIONS(1511), 1, - anon_sym_struct, - ACTIONS(1513), 1, - anon_sym_union, - ACTIONS(1515), 1, - sym_auto, - ACTIONS(1517), 1, - anon_sym_decltype, - ACTIONS(1519), 1, - anon_sym_typename, - ACTIONS(5498), 1, - sym_identifier, - ACTIONS(5502), 1, + ACTIONS(4476), 1, anon_sym_COLON_COLON, - ACTIONS(5504), 1, - sym_primitive_type, - STATE(1922), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2444), 1, - sym_qualified_type_identifier, - STATE(2540), 1, - sym_decltype_auto, - STATE(3894), 1, - sym__type_specifier, - STATE(4997), 1, - sym__scope_resolution, - STATE(6159), 1, - sym_dependent_type_identifier, - STATE(6529), 1, - sym_type_descriptor, - STATE(2247), 2, - sym_decltype, - sym_template_type, - STATE(3299), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(1503), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2541), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(59), 8, + ACTIONS(6045), 1, + anon_sym_LT, + ACTIONS(6600), 1, + anon_sym_LBRACK, + STATE(4033), 1, + sym_template_argument_list, + ACTIONS(4478), 3, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + ACTIONS(4463), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_EQ, + ACTIONS(4455), 26, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - [92843] = 3, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + [120996] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4369), 13, - anon_sym_DOT_DOT_DOT, + ACTIONS(5323), 9, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_GT2, - ACTIONS(4371), 28, + anon_sym_COLON, + ACTIONS(5325), 30, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, @@ -309742,11 +409357,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, sym_identifier, @@ -309755,88 +409373,430 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_virtual, - anon_sym_template, anon_sym_operator, anon_sym_try, anon_sym_requires, - [92892] = 24, + [121043] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1507), 1, - anon_sym_enum, - ACTIONS(1509), 1, - anon_sym_class, - ACTIONS(1511), 1, - anon_sym_struct, - ACTIONS(1513), 1, - anon_sym_union, - ACTIONS(1515), 1, + ACTIONS(5252), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(5254), 30, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, sym_auto, - ACTIONS(1517), 1, anon_sym_decltype, - ACTIONS(1519), 1, - anon_sym_typename, - ACTIONS(5498), 1, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [121090] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5331), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(5333), 30, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, sym_identifier, - ACTIONS(5502), 1, - anon_sym_COLON_COLON, - ACTIONS(5504), 1, - sym_primitive_type, - STATE(1922), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2444), 1, - sym_qualified_type_identifier, - STATE(2540), 1, - sym_decltype_auto, - STATE(3894), 1, - sym__type_specifier, - STATE(4767), 1, - sym_type_descriptor, - STATE(4997), 1, - sym__scope_resolution, - STATE(6159), 1, - sym_dependent_type_identifier, - STATE(2247), 2, - sym_decltype, - sym_template_type, - STATE(3299), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(1503), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2541), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(59), 8, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [121137] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5248), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(5250), 30, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [121184] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5335), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(5337), 30, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [92983] = 3, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [121231] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5709), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(5707), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [121278] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4978), 1, + anon_sym_LPAREN2, + ACTIONS(5493), 1, + anon_sym_LBRACK, + ACTIONS(5497), 1, + anon_sym_DOT, + ACTIONS(5499), 1, + anon_sym_DASH_GT, + STATE(2996), 1, + sym_argument_list, + ACTIONS(6585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5559), 8, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5557), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + [121337] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5760), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(5758), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [121384] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5563), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(5561), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [121431] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4722), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(4724), 27, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [121477] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5566), 6, + ACTIONS(6219), 1, + anon_sym_LBRACE, + ACTIONS(6603), 1, + anon_sym_COLON, + STATE(3671), 1, + sym__enum_base_clause, + STATE(3739), 1, + sym_enumerator_list, + ACTIONS(5111), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, + anon_sym_SEMI, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(5564), 35, + ACTIONS(5113), 27, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, @@ -309848,48 +409808,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, sym_identifier, sym_auto, anon_sym_decltype, anon_sym_virtual, - anon_sym_explicit, - anon_sym_typename, anon_sym_template, anon_sym_operator, - [93032] = 3, + [121531] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4596), 13, + ACTIONS(4978), 1, + anon_sym_LPAREN2, + ACTIONS(5493), 1, + anon_sym_LBRACK, + ACTIONS(5497), 1, + anon_sym_DOT, + ACTIONS(5499), 1, + anon_sym_DASH_GT, + ACTIONS(6605), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, + anon_sym_SLASH, + ACTIONS(6617), 1, + anon_sym_PIPE, + ACTIONS(6621), 1, + anon_sym_AMP, + ACTIONS(6627), 1, + anon_sym_GT_EQ, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6635), 1, + anon_sym_bitor, + ACTIONS(6637), 1, + anon_sym_bitand, + STATE(2996), 1, + sym_argument_list, + ACTIONS(6585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6607), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6609), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6613), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6615), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6619), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6629), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6623), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6625), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5730), 4, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_RBRACE, + [121621] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6639), 1, anon_sym_LPAREN2, + STATE(3354), 1, + sym_argument_list, + ACTIONS(5153), 9, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_SEMI, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, anon_sym_EQ, - anon_sym_GT2, - ACTIONS(4598), 28, + ACTIONS(5155), 27, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, @@ -309901,73 +409918,312 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, anon_sym_virtual, anon_sym_template, anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [93081] = 3, + [121671] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(4413), 13, + ACTIONS(4978), 1, + anon_sym_LPAREN2, + ACTIONS(5489), 1, + anon_sym_PIPE, + ACTIONS(5493), 1, + anon_sym_LBRACK, + ACTIONS(5497), 1, + anon_sym_DOT, + ACTIONS(5499), 1, + anon_sym_DASH_GT, + ACTIONS(6611), 1, + anon_sym_SLASH, + ACTIONS(6621), 1, + anon_sym_AMP, + ACTIONS(6627), 1, + anon_sym_GT_EQ, + ACTIONS(6633), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6637), 1, + anon_sym_bitand, + STATE(2996), 1, + sym_argument_list, + ACTIONS(6585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6607), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6609), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6629), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6623), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6625), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5487), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + [121749] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4978), 1, anon_sym_LPAREN2, - anon_sym_TILDE, + ACTIONS(5493), 1, + anon_sym_LBRACK, + ACTIONS(5497), 1, + anon_sym_DOT, + ACTIONS(5499), 1, + anon_sym_DASH_GT, + ACTIONS(6611), 1, + anon_sym_SLASH, + ACTIONS(6617), 1, + anon_sym_PIPE, + ACTIONS(6621), 1, + anon_sym_AMP, + ACTIONS(6627), 1, + anon_sym_GT_EQ, + ACTIONS(6633), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6635), 1, + anon_sym_bitor, + ACTIONS(6637), 1, + anon_sym_bitand, + STATE(2996), 1, + sym_argument_list, + ACTIONS(6585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6607), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6609), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6613), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6615), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6619), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6629), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6623), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6625), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5601), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, + anon_sym_RBRACE, + anon_sym_QMARK, + [121835] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4718), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(4720), 27, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - ACTIONS(4415), 28, + anon_sym_requires, + [121881] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4978), 1, + anon_sym_LPAREN2, + ACTIONS(5493), 1, + anon_sym_LBRACK, + ACTIONS(5497), 1, + anon_sym_DOT, + ACTIONS(5499), 1, + anon_sym_DASH_GT, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, + anon_sym_SLASH, + ACTIONS(6617), 1, + anon_sym_PIPE, + ACTIONS(6621), 1, anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, + ACTIONS(6627), 1, + anon_sym_GT_EQ, + ACTIONS(6633), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6635), 1, + anon_sym_bitor, + ACTIONS(6637), 1, + anon_sym_bitand, + STATE(2996), 1, + sym_argument_list, + ACTIONS(6585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6607), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6609), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6613), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6615), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6619), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6629), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6623), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6625), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5585), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_QMARK, + [121969] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(45), 1, anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, + ACTIONS(1931), 1, + anon_sym_operator, + ACTIONS(6642), 1, + sym_identifier, + ACTIONS(6644), 1, + anon_sym_LPAREN2, + ACTIONS(6646), 1, + anon_sym_STAR, + ACTIONS(6648), 1, + anon_sym_AMP_AMP, + ACTIONS(6650), 1, + anon_sym_AMP, + STATE(4712), 1, + sym_ms_unaligned_ptr_modifier, + STATE(5481), 1, + sym__field_declarator, + STATE(7022), 1, + sym_ms_based_modifier, + ACTIONS(2869), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(4580), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4641), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(2867), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(5685), 8, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + sym_reference_field_declarator, + sym_template_method, + sym_operator_name, + ACTIONS(2871), 11, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [93130] = 3, + [122043] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4447), 13, + ACTIONS(5082), 11, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -309975,13 +410231,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_SEMI, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(4449), 28, + ACTIONS(5080), 27, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, @@ -309993,426 +410247,705 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, sym_identifier, - sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, anon_sym_virtual, + anon_sym_explicit, anon_sym_template, anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [93179] = 24, + [122089] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1507), 1, - anon_sym_enum, - ACTIONS(1509), 1, - anon_sym_class, - ACTIONS(1511), 1, - anon_sym_struct, - ACTIONS(1513), 1, - anon_sym_union, - ACTIONS(1515), 1, - sym_auto, - ACTIONS(1517), 1, - anon_sym_decltype, - ACTIONS(1519), 1, - anon_sym_typename, - ACTIONS(5498), 1, - sym_identifier, - ACTIONS(5502), 1, - anon_sym_COLON_COLON, - ACTIONS(5504), 1, - sym_primitive_type, - STATE(1922), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2444), 1, - sym_qualified_type_identifier, - STATE(2540), 1, - sym_decltype_auto, - STATE(3894), 1, - sym__type_specifier, - STATE(4997), 1, - sym__scope_resolution, - STATE(6159), 1, - sym_dependent_type_identifier, - STATE(6424), 1, - sym_type_descriptor, - STATE(2247), 2, - sym_decltype, - sym_template_type, - STATE(3299), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(1503), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2541), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(59), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [93270] = 24, + ACTIONS(3601), 1, + anon_sym_LBRACE, + ACTIONS(6460), 1, + anon_sym_LPAREN2, + STATE(4382), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5222), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(5220), 23, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [122141] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, + ACTIONS(4686), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(4688), 27, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [122187] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(45), 1, + anon_sym___based, + ACTIONS(1329), 1, anon_sym_template, - ACTIONS(1507), 1, - anon_sym_enum, - ACTIONS(1509), 1, - anon_sym_class, - ACTIONS(1511), 1, - anon_sym_struct, - ACTIONS(1513), 1, - anon_sym_union, - ACTIONS(1515), 1, - sym_auto, - ACTIONS(1517), 1, + ACTIONS(1931), 1, + anon_sym_operator, + ACTIONS(1973), 1, anon_sym_decltype, - ACTIONS(1519), 1, - anon_sym_typename, - ACTIONS(5498), 1, + ACTIONS(2562), 1, + anon_sym_TILDE, + ACTIONS(4014), 1, + anon_sym_LPAREN2, + ACTIONS(4016), 1, + anon_sym_STAR, + ACTIONS(4018), 1, + anon_sym_AMP_AMP, + ACTIONS(4020), 1, + anon_sym_AMP, + ACTIONS(4823), 1, sym_identifier, - ACTIONS(5502), 1, + ACTIONS(5014), 1, + anon_sym_LBRACK, + ACTIONS(5072), 1, anon_sym_COLON_COLON, - ACTIONS(5504), 1, - sym_primitive_type, - STATE(1922), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2444), 1, - sym_qualified_type_identifier, - STATE(2540), 1, - sym_decltype_auto, - STATE(3894), 1, - sym__type_specifier, - STATE(4997), 1, + ACTIONS(6502), 1, + anon_sym_RPAREN, + STATE(3900), 1, + sym_parameter_list, + STATE(5352), 1, sym__scope_resolution, - STATE(6159), 1, - sym_dependent_type_identifier, - STATE(6226), 1, - sym_type_descriptor, - STATE(2247), 2, + STATE(5457), 1, + sym__function_declarator_seq, + STATE(5611), 1, + sym__declarator, + STATE(5650), 1, + sym__abstract_declarator, + STATE(7654), 1, + sym_ms_based_modifier, + STATE(7638), 3, sym_decltype, sym_template_type, - STATE(3299), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(1503), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2541), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(59), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [93361] = 3, + sym_dependent_type_identifier, + STATE(5452), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + STATE(5640), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [122273] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3137), 6, + ACTIONS(4978), 1, anon_sym_LPAREN2, - anon_sym_TILDE, + ACTIONS(5493), 1, + anon_sym_LBRACK, + ACTIONS(5497), 1, + anon_sym_DOT, + ACTIONS(5499), 1, + anon_sym_DASH_GT, + ACTIONS(6611), 1, + anon_sym_SLASH, + ACTIONS(6633), 1, + anon_sym_LT_EQ_GT, + STATE(2996), 1, + sym_argument_list, + ACTIONS(6585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6607), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6609), 2, anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(3135), 35, + anon_sym_PERCENT, + ACTIONS(6629), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5669), 5, + anon_sym_PIPE, anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - [93410] = 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5667), 18, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + [122341] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4592), 13, + ACTIONS(4730), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(4732), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_TILDE, anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(4594), 28, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - anon_sym_try, + anon_sym_GT2, anon_sym_requires, - [93459] = 3, + [122387] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(5367), 6, + ACTIONS(4978), 1, anon_sym_LPAREN2, - anon_sym_TILDE, + ACTIONS(5493), 1, + anon_sym_LBRACK, + ACTIONS(5497), 1, + anon_sym_DOT, + ACTIONS(5499), 1, + anon_sym_DASH_GT, + ACTIONS(6611), 1, + anon_sym_SLASH, + ACTIONS(6617), 1, + anon_sym_PIPE, + ACTIONS(6621), 1, + anon_sym_AMP, + ACTIONS(6627), 1, + anon_sym_GT_EQ, + ACTIONS(6633), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6635), 1, + anon_sym_bitor, + ACTIONS(6637), 1, + anon_sym_bitand, + STATE(2996), 1, + sym_argument_list, + ACTIONS(6585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6607), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6609), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6613), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6615), 2, anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(5365), 35, + anon_sym_and, + ACTIONS(6619), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6629), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6623), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6625), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5641), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_QMARK, + [122473] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4722), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(4724), 27, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - [93508] = 24, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [122519] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1507), 1, - anon_sym_enum, - ACTIONS(1509), 1, - anon_sym_class, - ACTIONS(1511), 1, - anon_sym_struct, - ACTIONS(1513), 1, - anon_sym_union, - ACTIONS(1515), 1, - sym_auto, - ACTIONS(1517), 1, - anon_sym_decltype, - ACTIONS(1519), 1, - anon_sym_typename, - ACTIONS(5498), 1, + ACTIONS(45), 1, + anon_sym___based, + ACTIONS(1931), 1, + anon_sym_operator, + ACTIONS(6644), 1, + anon_sym_LPAREN2, + ACTIONS(6652), 1, sym_identifier, - ACTIONS(5502), 1, - anon_sym_COLON_COLON, - ACTIONS(5504), 1, - sym_primitive_type, - STATE(1922), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2444), 1, - sym_qualified_type_identifier, - STATE(2540), 1, - sym_decltype_auto, - STATE(3894), 1, - sym__type_specifier, - STATE(4997), 1, - sym__scope_resolution, - STATE(6159), 1, - sym_dependent_type_identifier, - STATE(6180), 1, - sym_type_descriptor, - STATE(2247), 2, - sym_decltype, - sym_template_type, - STATE(3299), 2, + ACTIONS(6654), 1, + anon_sym_STAR, + ACTIONS(6656), 1, + anon_sym_AMP_AMP, + ACTIONS(6658), 1, + anon_sym_AMP, + STATE(4712), 1, + sym_ms_unaligned_ptr_modifier, + STATE(5817), 1, + sym__field_declarator, + STATE(7524), 1, + sym_ms_based_modifier, + ACTIONS(2869), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(4060), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4597), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(1503), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2541), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(59), 8, + ACTIONS(2867), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(5685), 8, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + sym_reference_field_declarator, + sym_template_method, + sym_operator_name, + ACTIONS(2871), 11, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - [93599] = 3, + [122593] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4529), 13, + ACTIONS(4978), 1, + anon_sym_LPAREN2, + ACTIONS(5493), 1, + anon_sym_LBRACK, + ACTIONS(5497), 1, + anon_sym_DOT, + ACTIONS(5499), 1, + anon_sym_DASH_GT, + ACTIONS(6605), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, + anon_sym_SLASH, + ACTIONS(6617), 1, + anon_sym_PIPE, + ACTIONS(6621), 1, + anon_sym_AMP, + ACTIONS(6627), 1, + anon_sym_GT_EQ, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6635), 1, + anon_sym_bitor, + ACTIONS(6637), 1, + anon_sym_bitand, + STATE(2996), 1, + sym_argument_list, + ACTIONS(6585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6607), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6609), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6613), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6615), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6619), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6629), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6623), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6625), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5631), 4, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_RBRACE, + [122683] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4722), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(4724), 27, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_TILDE, anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - ACTIONS(4531), 28, + anon_sym_requires, + [122729] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4978), 1, + anon_sym_LPAREN2, + ACTIONS(5493), 1, + anon_sym_LBRACK, + ACTIONS(5497), 1, + anon_sym_DOT, + ACTIONS(5499), 1, + anon_sym_DASH_GT, + ACTIONS(6611), 1, + anon_sym_SLASH, + STATE(2996), 1, + sym_argument_list, + ACTIONS(6585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6607), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6609), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6629), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5489), 5, + anon_sym_PIPE, anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5487), 19, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + [122795] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4698), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(4700), 27, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - anon_sym_try, + anon_sym_GT2, anon_sym_requires, - [93648] = 3, + [122841] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4978), 1, + anon_sym_LPAREN2, + ACTIONS(5493), 1, + anon_sym_LBRACK, + ACTIONS(5497), 1, + anon_sym_DOT, + ACTIONS(5499), 1, + anon_sym_DASH_GT, + ACTIONS(6611), 1, + anon_sym_SLASH, + STATE(2996), 1, + sym_argument_list, + ACTIONS(6585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6607), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6609), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5489), 5, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5487), 21, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + [122905] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4435), 13, - anon_sym_DOT_DOT_DOT, + ACTIONS(3805), 10, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_GT2, - ACTIONS(4437), 28, + anon_sym_COLON, + anon_sym_DASH_GT, + ACTIONS(3803), 28, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, @@ -310424,221 +410957,251 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, sym_identifier, - sym_auto, - anon_sym_decltype, anon_sym_final, anon_sym_override, anon_sym_virtual, - anon_sym_template, anon_sym_operator, anon_sym_try, anon_sym_requires, - [93697] = 24, + [122951] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1507), 1, - anon_sym_enum, - ACTIONS(1509), 1, - anon_sym_class, - ACTIONS(1511), 1, - anon_sym_struct, - ACTIONS(1513), 1, - anon_sym_union, - ACTIONS(1515), 1, - sym_auto, - ACTIONS(1517), 1, - anon_sym_decltype, - ACTIONS(1519), 1, - anon_sym_typename, - ACTIONS(5498), 1, - sym_identifier, - ACTIONS(5502), 1, - anon_sym_COLON_COLON, - ACTIONS(5504), 1, - sym_primitive_type, - STATE(1922), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2444), 1, - sym_qualified_type_identifier, - STATE(2540), 1, - sym_decltype_auto, - STATE(3894), 1, - sym__type_specifier, - STATE(4997), 1, - sym__scope_resolution, - STATE(6159), 1, - sym_dependent_type_identifier, - STATE(6399), 1, - sym_type_descriptor, - STATE(2247), 2, - sym_decltype, - sym_template_type, - STATE(3299), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(1503), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2541), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(59), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [93788] = 3, + ACTIONS(4978), 1, + anon_sym_LPAREN2, + ACTIONS(5493), 1, + anon_sym_LBRACK, + ACTIONS(5497), 1, + anon_sym_DOT, + ACTIONS(5499), 1, + anon_sym_DASH_GT, + ACTIONS(6611), 1, + anon_sym_SLASH, + ACTIONS(6633), 1, + anon_sym_LT_EQ_GT, + STATE(2996), 1, + sym_argument_list, + ACTIONS(6585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6607), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6609), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6629), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5489), 5, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5487), 18, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + [123019] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(4533), 13, + ACTIONS(4978), 1, + anon_sym_LPAREN2, + ACTIONS(5493), 1, + anon_sym_LBRACK, + ACTIONS(5497), 1, + anon_sym_DOT, + ACTIONS(5499), 1, + anon_sym_DASH_GT, + ACTIONS(6611), 1, + anon_sym_SLASH, + ACTIONS(6627), 1, + anon_sym_GT_EQ, + ACTIONS(6633), 1, + anon_sym_LT_EQ_GT, + STATE(2996), 1, + sym_argument_list, + ACTIONS(5489), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(6585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6607), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6609), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6629), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6625), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5487), 17, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + [123091] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4978), 1, anon_sym_LPAREN2, - anon_sym_TILDE, + ACTIONS(5493), 1, + anon_sym_LBRACK, + ACTIONS(5497), 1, + anon_sym_DOT, + ACTIONS(5499), 1, + anon_sym_DASH_GT, + ACTIONS(6611), 1, + anon_sym_SLASH, + ACTIONS(6627), 1, + anon_sym_GT_EQ, + ACTIONS(6633), 1, + anon_sym_LT_EQ_GT, + STATE(2996), 1, + sym_argument_list, + ACTIONS(5489), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(6585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6607), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6609), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6629), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6623), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6625), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5487), 14, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + [123165] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3601), 1, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(4535), 28, + ACTIONS(6460), 1, + anon_sym_LPAREN2, + STATE(4460), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5329), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(5327), 23, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [93837] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1507), 1, - anon_sym_enum, - ACTIONS(1509), 1, - anon_sym_class, - ACTIONS(1511), 1, - anon_sym_struct, - ACTIONS(1513), 1, - anon_sym_union, - ACTIONS(1515), 1, - sym_auto, - ACTIONS(1517), 1, - anon_sym_decltype, - ACTIONS(1519), 1, - anon_sym_typename, - ACTIONS(5498), 1, - sym_identifier, - ACTIONS(5502), 1, - anon_sym_COLON_COLON, - ACTIONS(5504), 1, - sym_primitive_type, - STATE(1922), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2444), 1, - sym_qualified_type_identifier, - STATE(2540), 1, - sym_decltype_auto, - STATE(3894), 1, - sym__type_specifier, - STATE(4997), 1, - sym__scope_resolution, - STATE(6159), 1, - sym_dependent_type_identifier, - STATE(6174), 1, - sym_type_descriptor, - STATE(2247), 2, - sym_decltype, - sym_template_type, - STATE(3299), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(1503), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2541), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(59), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [93928] = 3, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [123217] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4443), 13, - anon_sym_DOT_DOT_DOT, + ACTIONS(3801), 10, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_GT2, - ACTIONS(4445), 28, + anon_sym_COLON, + anon_sym_DASH_GT, + ACTIONS(3799), 28, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, @@ -310650,44 +411213,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, sym_identifier, - sym_auto, - anon_sym_decltype, anon_sym_final, anon_sym_override, anon_sym_virtual, - anon_sym_template, anon_sym_operator, anon_sym_try, anon_sym_requires, - [93977] = 4, + [123263] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3875), 2, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - ACTIONS(3877), 10, + ACTIONS(4726), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_COLON, + anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(3882), 29, + ACTIONS(4728), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -310696,13 +411256,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -310714,218 +411269,317 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [94028] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1507), 1, - anon_sym_enum, - ACTIONS(1509), 1, - anon_sym_class, - ACTIONS(1511), 1, - anon_sym_struct, - ACTIONS(1513), 1, - anon_sym_union, - ACTIONS(1515), 1, - sym_auto, - ACTIONS(1517), 1, - anon_sym_decltype, - ACTIONS(1519), 1, - anon_sym_typename, - ACTIONS(5498), 1, - sym_identifier, - ACTIONS(5502), 1, - anon_sym_COLON_COLON, - ACTIONS(5504), 1, - sym_primitive_type, - STATE(1922), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2444), 1, - sym_qualified_type_identifier, - STATE(2540), 1, - sym_decltype_auto, - STATE(3894), 1, - sym__type_specifier, - STATE(4997), 1, - sym__scope_resolution, - STATE(6140), 1, - sym_type_descriptor, - STATE(6159), 1, - sym_dependent_type_identifier, - STATE(2247), 2, - sym_decltype, - sym_template_type, - STATE(3299), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(1503), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2541), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(59), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [94119] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [123309] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4493), 13, + ACTIONS(4690), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(4692), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_TILDE, anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(4495), 28, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - anon_sym_try, + anon_sym_GT2, anon_sym_requires, - [94168] = 3, + [123355] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4393), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(4559), 1, + anon_sym_LBRACK, + ACTIONS(4562), 1, + anon_sym_SEMI, + ACTIONS(4552), 3, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + ACTIONS(4555), 7, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_SEMI, anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, anon_sym_EQ, - anon_sym_GT2, - ACTIONS(4395), 28, + ACTIONS(4550), 26, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, anon_sym___based, - anon_sym_LBRACK, anon_sym_static, anon_sym_register, anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, anon_sym_virtual, anon_sym_template, anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [94217] = 3, + [123407] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(4322), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(45), 1, + anon_sym___based, + ACTIONS(1931), 1, + anon_sym_operator, + ACTIONS(6644), 1, anon_sym_LPAREN2, - anon_sym_TILDE, + ACTIONS(6652), 1, + sym_identifier, + ACTIONS(6654), 1, anon_sym_STAR, + ACTIONS(6656), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(4324), 28, + ACTIONS(6658), 1, anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, + STATE(4712), 1, + sym_ms_unaligned_ptr_modifier, + STATE(5835), 1, + sym__field_declarator, + STATE(7524), 1, + sym_ms_based_modifier, + ACTIONS(2869), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(4580), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4593), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(2867), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(5685), 8, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + sym_reference_field_declarator, + sym_template_method, + sym_operator_name, + ACTIONS(2871), 11, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, + [123481] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4978), 1, + anon_sym_LPAREN2, + ACTIONS(5493), 1, + anon_sym_LBRACK, + ACTIONS(5497), 1, + anon_sym_DOT, + ACTIONS(5499), 1, + anon_sym_DASH_GT, + ACTIONS(6611), 1, + anon_sym_SLASH, + ACTIONS(6617), 1, + anon_sym_PIPE, + ACTIONS(6621), 1, + anon_sym_AMP, + ACTIONS(6627), 1, + anon_sym_GT_EQ, + ACTIONS(6633), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6635), 1, + anon_sym_bitor, + ACTIONS(6637), 1, + anon_sym_bitand, + STATE(2996), 1, + sym_argument_list, + ACTIONS(6585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6607), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6609), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6613), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6615), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6619), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6629), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6623), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6625), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5762), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_QMARK, + [123567] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4706), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(4708), 27, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - anon_sym_try, + anon_sym_GT2, anon_sym_requires, - [94266] = 3, + [123613] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4431), 13, + ACTIONS(4734), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(4736), 27, 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_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [123659] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6219), 1, + anon_sym_LBRACE, + ACTIONS(6603), 1, + anon_sym_COLON, + STATE(3674), 1, + sym__enum_base_clause, + STATE(3696), 1, + sym_enumerator_list, + ACTIONS(5123), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, @@ -310933,10 +411587,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(4433), 28, + ACTIONS(5125), 27, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, @@ -310948,186 +411599,549 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, anon_sym_virtual, anon_sym_template, anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [94315] = 3, + [123713] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(4581), 13, + ACTIONS(4978), 1, + anon_sym_LPAREN2, + ACTIONS(5489), 1, + anon_sym_PIPE, + ACTIONS(5493), 1, + anon_sym_LBRACK, + ACTIONS(5497), 1, + anon_sym_DOT, + ACTIONS(5499), 1, + anon_sym_DASH_GT, + ACTIONS(6611), 1, + anon_sym_SLASH, + ACTIONS(6621), 1, + anon_sym_AMP, + ACTIONS(6627), 1, + anon_sym_GT_EQ, + ACTIONS(6633), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6637), 1, + anon_sym_bitand, + STATE(2996), 1, + sym_argument_list, + ACTIONS(6585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6607), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6609), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6619), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6629), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6623), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6625), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5487), 11, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + [123793] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4978), 1, anon_sym_LPAREN2, - anon_sym_TILDE, + ACTIONS(5493), 1, + anon_sym_LBRACK, + ACTIONS(5497), 1, + anon_sym_DOT, + ACTIONS(5499), 1, + anon_sym_DASH_GT, + ACTIONS(6611), 1, + anon_sym_SLASH, + ACTIONS(6617), 1, + anon_sym_PIPE, + ACTIONS(6621), 1, + anon_sym_AMP, + ACTIONS(6627), 1, + anon_sym_GT_EQ, + ACTIONS(6633), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6635), 1, + anon_sym_bitor, + ACTIONS(6637), 1, + anon_sym_bitand, + STATE(2996), 1, + sym_argument_list, + ACTIONS(6585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6607), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6609), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6619), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6629), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6623), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6625), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5487), 10, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(4583), 28, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_or, + anon_sym_and, + [123875] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(45), 1, anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, + ACTIONS(1931), 1, + anon_sym_operator, + ACTIONS(6642), 1, + sym_identifier, + ACTIONS(6644), 1, + anon_sym_LPAREN2, + ACTIONS(6646), 1, + anon_sym_STAR, + ACTIONS(6648), 1, + anon_sym_AMP_AMP, + ACTIONS(6650), 1, + anon_sym_AMP, + STATE(4712), 1, + sym_ms_unaligned_ptr_modifier, + STATE(5470), 1, + sym__field_declarator, + STATE(7022), 1, + sym_ms_based_modifier, + ACTIONS(2869), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(4580), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4631), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(2867), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(5685), 8, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + sym_reference_field_declarator, + sym_template_method, + sym_operator_name, + ACTIONS(2871), 11, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [94364] = 3, + [123949] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(4537), 13, + ACTIONS(4978), 1, + anon_sym_LPAREN2, + ACTIONS(5493), 1, + anon_sym_LBRACK, + ACTIONS(5497), 1, + anon_sym_DOT, + ACTIONS(5499), 1, + anon_sym_DASH_GT, + ACTIONS(6611), 1, + anon_sym_SLASH, + ACTIONS(6617), 1, + anon_sym_PIPE, + ACTIONS(6621), 1, + anon_sym_AMP, + ACTIONS(6627), 1, + anon_sym_GT_EQ, + ACTIONS(6633), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6635), 1, + anon_sym_bitor, + ACTIONS(6637), 1, + anon_sym_bitand, + STATE(2996), 1, + sym_argument_list, + ACTIONS(6585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6607), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6609), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6615), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6619), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6629), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6623), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6625), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5487), 8, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_or, + [124033] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4710), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(4712), 27, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_TILDE, anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - ACTIONS(4539), 28, + anon_sym_requires, + [124079] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4694), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(4696), 27, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - anon_sym_try, + anon_sym_GT2, anon_sym_requires, - [94413] = 24, + [124125] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(2424), 1, - anon_sym_enum, - ACTIONS(2426), 1, - anon_sym_class, - ACTIONS(2428), 1, - anon_sym_struct, - ACTIONS(2430), 1, - anon_sym_union, - ACTIONS(2444), 1, - sym_auto, - ACTIONS(2446), 1, - anon_sym_decltype, - ACTIONS(2448), 1, - anon_sym_typename, - ACTIONS(5568), 1, + ACTIONS(45), 1, + anon_sym___based, + ACTIONS(1931), 1, + anon_sym_operator, + ACTIONS(6642), 1, sym_identifier, - ACTIONS(5570), 1, - anon_sym_COLON_COLON, - ACTIONS(5572), 1, - sym_primitive_type, - STATE(2022), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3000), 1, - sym_qualified_type_identifier, - STATE(3008), 1, - sym_decltype_auto, - STATE(3903), 1, - sym__type_specifier, - STATE(4767), 1, - sym_type_descriptor, - STATE(4989), 1, - sym__scope_resolution, - STATE(6159), 1, - sym_dependent_type_identifier, - STATE(2851), 2, - sym_decltype, - sym_template_type, - STATE(3306), 2, + ACTIONS(6644), 1, + anon_sym_LPAREN2, + ACTIONS(6646), 1, + anon_sym_STAR, + ACTIONS(6648), 1, + anon_sym_AMP_AMP, + ACTIONS(6650), 1, + anon_sym_AMP, + STATE(4712), 1, + sym_ms_unaligned_ptr_modifier, + STATE(5470), 1, + sym__field_declarator, + STATE(7022), 1, + sym_ms_based_modifier, + ACTIONS(2869), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(4010), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4631), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(2420), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3003), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(59), 8, + ACTIONS(2867), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(5685), 8, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + sym_reference_field_declarator, + sym_template_method, + sym_operator_name, + ACTIONS(2871), 11, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - [94504] = 3, + [124199] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4978), 1, + anon_sym_LPAREN2, + ACTIONS(5493), 1, + anon_sym_LBRACK, + ACTIONS(5497), 1, + anon_sym_DOT, + ACTIONS(5499), 1, + anon_sym_DASH_GT, + ACTIONS(6611), 1, + anon_sym_SLASH, + STATE(2996), 1, + sym_argument_list, + ACTIONS(6585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6609), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5489), 7, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5487), 21, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + [124261] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4714), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(4716), 27, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [124307] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3601), 1, + anon_sym_LBRACE, + ACTIONS(6460), 1, + anon_sym_LPAREN2, + STATE(4481), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5349), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(5347), 23, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [124359] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4585), 13, + ACTIONS(5121), 11, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -311135,13 +412149,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_SEMI, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(4587), 28, + ACTIONS(5119), 27, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, @@ -311153,34 +412165,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, sym_identifier, - sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, anon_sym_virtual, + anon_sym_explicit, anon_sym_template, anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [94553] = 3, + [124405] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3141), 6, + ACTIONS(6000), 11, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(3139), 35, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5998), 27, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, @@ -311192,34 +412208,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, sym_identifier, - sym_auto, anon_sym_decltype, anon_sym_virtual, anon_sym_explicit, - anon_sym_typename, anon_sym_template, anon_sym_operator, - [94602] = 3, + [124451] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4427), 13, + ACTIONS(6159), 11, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -311227,13 +412235,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_SEMI, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(4429), 28, + ACTIONS(6157), 27, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, @@ -311245,315 +412251,1415 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, sym_identifier, - sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, anon_sym_virtual, + anon_sym_explicit, anon_sym_template, anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [94651] = 3, + [124497] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(4545), 13, + ACTIONS(4978), 1, + anon_sym_LPAREN2, + ACTIONS(5493), 1, + anon_sym_LBRACK, + ACTIONS(5497), 1, + anon_sym_DOT, + ACTIONS(5499), 1, + anon_sym_DASH_GT, + ACTIONS(6611), 1, + anon_sym_SLASH, + ACTIONS(6617), 1, + anon_sym_PIPE, + ACTIONS(6621), 1, + anon_sym_AMP, + ACTIONS(6627), 1, + anon_sym_GT_EQ, + ACTIONS(6633), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6635), 1, + anon_sym_bitor, + ACTIONS(6637), 1, + anon_sym_bitand, + STATE(2996), 1, + sym_argument_list, + ACTIONS(6585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6607), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6609), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6613), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6615), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6619), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6629), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6623), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6625), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5675), 6, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_QMARK, + [124583] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4702), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(4704), 27, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_TILDE, anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - ACTIONS(4547), 28, + anon_sym_requires, + [124629] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2536), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(2534), 27, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [124675] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2542), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(2540), 27, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [124721] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(45), 1, + anon_sym___based, + ACTIONS(1931), 1, + anon_sym_operator, + ACTIONS(6644), 1, + anon_sym_LPAREN2, + ACTIONS(6652), 1, + sym_identifier, + ACTIONS(6654), 1, + anon_sym_STAR, + ACTIONS(6656), 1, + anon_sym_AMP_AMP, + ACTIONS(6658), 1, + anon_sym_AMP, + STATE(4712), 1, + sym_ms_unaligned_ptr_modifier, + STATE(5812), 1, + sym__field_declarator, + STATE(7524), 1, + sym_ms_based_modifier, + ACTIONS(2869), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(4034), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4659), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(2867), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(5685), 8, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + sym_reference_field_declarator, + sym_template_method, + sym_operator_name, + ACTIONS(2871), 11, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [94700] = 24, + [124795] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(5574), 1, + ACTIONS(3601), 1, + anon_sym_LBRACE, + ACTIONS(6460), 1, + anon_sym_LPAREN2, + STATE(4381), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5174), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(5172), 23, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [124847] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4978), 1, + anon_sym_LPAREN2, + ACTIONS(5493), 1, + anon_sym_LBRACK, + ACTIONS(5497), 1, + anon_sym_DOT, + ACTIONS(5499), 1, + anon_sym_DASH_GT, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, + anon_sym_SLASH, + ACTIONS(6617), 1, + anon_sym_PIPE, + ACTIONS(6621), 1, + anon_sym_AMP, + ACTIONS(6627), 1, + anon_sym_GT_EQ, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6635), 1, + anon_sym_bitor, + ACTIONS(6637), 1, + anon_sym_bitand, + ACTIONS(6660), 1, + anon_sym_COMMA, + ACTIONS(6662), 1, + anon_sym_SEMI, + ACTIONS(6664), 1, + anon_sym_RBRACE, + STATE(2996), 1, + sym_argument_list, + STATE(6580), 1, + aux_sym_initializer_list_repeat1, + ACTIONS(6585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6607), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6609), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6613), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6615), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6619), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6629), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6623), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6625), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [124943] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(45), 1, + anon_sym___based, + ACTIONS(1931), 1, + anon_sym_operator, + ACTIONS(6642), 1, sym_identifier, - ACTIONS(5576), 1, - anon_sym_COLON_COLON, - ACTIONS(5580), 1, - sym_primitive_type, - ACTIONS(5582), 1, - anon_sym_enum, - ACTIONS(5584), 1, - anon_sym_class, - ACTIONS(5586), 1, - anon_sym_struct, - ACTIONS(5588), 1, - anon_sym_union, - ACTIONS(5590), 1, - sym_auto, - ACTIONS(5592), 1, - anon_sym_decltype, - ACTIONS(5594), 1, - anon_sym_typename, - STATE(3888), 1, - sym__type_specifier, - STATE(4040), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(4262), 1, - sym_qualified_type_identifier, - STATE(4265), 1, - sym_decltype_auto, - STATE(4767), 1, - sym_type_descriptor, - STATE(5024), 1, - sym__scope_resolution, - STATE(6159), 1, - sym_dependent_type_identifier, - STATE(3315), 2, + ACTIONS(6644), 1, + anon_sym_LPAREN2, + ACTIONS(6646), 1, + anon_sym_STAR, + ACTIONS(6648), 1, + anon_sym_AMP_AMP, + ACTIONS(6650), 1, + anon_sym_AMP, + STATE(4712), 1, + sym_ms_unaligned_ptr_modifier, + STATE(5537), 1, + sym__field_declarator, + STATE(7022), 1, + sym_ms_based_modifier, + ACTIONS(2869), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(4041), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4666), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - STATE(4116), 2, - sym_decltype, - sym_template_type, - ACTIONS(5578), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(4264), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(59), 8, + ACTIONS(2867), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(5685), 8, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + sym_reference_field_declarator, + sym_template_method, + sym_operator_name, + ACTIONS(2871), 11, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [125017] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(45), 1, + anon_sym___based, + ACTIONS(1931), 1, + anon_sym_operator, + ACTIONS(6644), 1, + anon_sym_LPAREN2, + ACTIONS(6652), 1, + sym_identifier, + ACTIONS(6654), 1, + anon_sym_STAR, + ACTIONS(6656), 1, + anon_sym_AMP_AMP, + ACTIONS(6658), 1, + anon_sym_AMP, + STATE(4712), 1, + sym_ms_unaligned_ptr_modifier, + STATE(5812), 1, + sym__field_declarator, + STATE(7524), 1, + sym_ms_based_modifier, + ACTIONS(2869), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(4580), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4659), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(2867), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(5685), 8, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + sym_reference_field_declarator, + sym_template_method, + sym_operator_name, + ACTIONS(2871), 11, + anon_sym_const, anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [94791] = 3, + [125091] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(4423), 13, + ACTIONS(4978), 1, + anon_sym_LPAREN2, + ACTIONS(5493), 1, + anon_sym_LBRACK, + ACTIONS(5497), 1, + anon_sym_DOT, + ACTIONS(5499), 1, + anon_sym_DASH_GT, + ACTIONS(6605), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, + anon_sym_SLASH, + ACTIONS(6617), 1, + anon_sym_PIPE, + ACTIONS(6621), 1, + anon_sym_AMP, + ACTIONS(6627), 1, + anon_sym_GT_EQ, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6635), 1, + anon_sym_bitor, + ACTIONS(6637), 1, + anon_sym_bitand, + ACTIONS(6666), 1, anon_sym_COMMA, + ACTIONS(6668), 1, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, + STATE(2996), 1, + sym_argument_list, + STATE(6426), 1, + aux_sym_generic_expression_repeat1, + ACTIONS(6585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6607), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6609), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6613), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6615), 2, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, + anon_sym_and, + ACTIONS(6619), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6629), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6623), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6625), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [125184] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(4831), 1, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(4425), 28, + ACTIONS(6351), 1, + anon_sym_AMP_AMP, + ACTIONS(6353), 1, anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + ACTIONS(6363), 1, + anon_sym_noexcept, + ACTIONS(6365), 1, + anon_sym_throw, + ACTIONS(6409), 1, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, + ACTIONS(6532), 1, + anon_sym_DASH_GT, + ACTIONS(6534), 1, + anon_sym_requires, + STATE(4955), 1, + sym_ref_qualifier, + STATE(5422), 1, + sym_requires_clause, + STATE(5499), 1, + sym_trailing_return_type, + ACTIONS(4880), 2, + anon_sym_final, + anon_sym_override, + STATE(4527), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(5168), 2, + sym_noexcept, + sym_throw_specifier, + STATE(5177), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5301), 2, + sym_virtual_specifier, + aux_sym__function_declarator_seq_repeat2, + ACTIONS(6407), 5, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_try, + ACTIONS(6359), 10, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - sym_identifier, + [125263] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5212), 1, + anon_sym_LPAREN2, + ACTIONS(5982), 1, + anon_sym_LBRACK, + ACTIONS(5986), 1, + anon_sym_DOT, + ACTIONS(5988), 1, + anon_sym_DASH_GT, + ACTIONS(6670), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6672), 1, + anon_sym_COMMA, + ACTIONS(6678), 1, + anon_sym_SLASH, + ACTIONS(6684), 1, + anon_sym_PIPE, + ACTIONS(6688), 1, + anon_sym_AMP, + ACTIONS(6694), 1, + anon_sym_LT_LT, + ACTIONS(6696), 1, + anon_sym_GT_GT, + ACTIONS(6698), 1, + anon_sym_QMARK, + ACTIONS(6700), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6702), 1, + anon_sym_bitor, + ACTIONS(6704), 1, + anon_sym_bitand, + ACTIONS(6708), 1, + anon_sym_GT2, + STATE(3506), 1, + sym_argument_list, + STATE(6314), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(6674), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6676), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6680), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6682), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6686), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6706), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6690), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6692), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [125356] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5212), 1, + anon_sym_LPAREN2, + ACTIONS(5982), 1, + anon_sym_LBRACK, + ACTIONS(5986), 1, + anon_sym_DOT, + ACTIONS(5988), 1, + anon_sym_DASH_GT, + ACTIONS(6670), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6672), 1, + anon_sym_COMMA, + ACTIONS(6678), 1, + anon_sym_SLASH, + ACTIONS(6684), 1, + anon_sym_PIPE, + ACTIONS(6688), 1, + anon_sym_AMP, + ACTIONS(6694), 1, + anon_sym_LT_LT, + ACTIONS(6696), 1, + anon_sym_GT_GT, + ACTIONS(6698), 1, + anon_sym_QMARK, + ACTIONS(6700), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6702), 1, + anon_sym_bitor, + ACTIONS(6704), 1, + anon_sym_bitand, + ACTIONS(6710), 1, + anon_sym_GT2, + STATE(3506), 1, + sym_argument_list, + STATE(6512), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(6674), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6676), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6680), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6682), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6686), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6706), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6690), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6692), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [125449] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4978), 1, + anon_sym_LPAREN2, + ACTIONS(5493), 1, + anon_sym_LBRACK, + ACTIONS(5497), 1, + anon_sym_DOT, + ACTIONS(5499), 1, + anon_sym_DASH_GT, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, + anon_sym_SLASH, + ACTIONS(6617), 1, + anon_sym_PIPE, + ACTIONS(6621), 1, + anon_sym_AMP, + ACTIONS(6627), 1, + anon_sym_GT_EQ, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6635), 1, + anon_sym_bitor, + ACTIONS(6637), 1, + anon_sym_bitand, + ACTIONS(6712), 1, + anon_sym_COMMA, + ACTIONS(6714), 1, + anon_sym_RBRACE, + STATE(2996), 1, + sym_argument_list, + STATE(6311), 1, + aux_sym_initializer_list_repeat1, + ACTIONS(6585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6607), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6609), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6613), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6615), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6619), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6629), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6623), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6625), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [125542] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4650), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5369), 1, + anon_sym_LPAREN2, + ACTIONS(5375), 1, + anon_sym_LBRACK, + ACTIONS(4465), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(4457), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [125593] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5212), 1, + anon_sym_LPAREN2, + ACTIONS(5982), 1, + anon_sym_LBRACK, + ACTIONS(5986), 1, + anon_sym_DOT, + ACTIONS(5988), 1, + anon_sym_DASH_GT, + ACTIONS(6670), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6672), 1, + anon_sym_COMMA, + ACTIONS(6678), 1, + anon_sym_SLASH, + ACTIONS(6684), 1, + anon_sym_PIPE, + ACTIONS(6688), 1, + anon_sym_AMP, + ACTIONS(6694), 1, + anon_sym_LT_LT, + ACTIONS(6696), 1, + anon_sym_GT_GT, + ACTIONS(6698), 1, + anon_sym_QMARK, + ACTIONS(6700), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6702), 1, + anon_sym_bitor, + ACTIONS(6704), 1, + anon_sym_bitand, + ACTIONS(6716), 1, + anon_sym_GT2, + STATE(3506), 1, + sym_argument_list, + STATE(6495), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(6674), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6676), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6680), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6682), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6686), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6706), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6690), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6692), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [125686] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4978), 1, + anon_sym_LPAREN2, + ACTIONS(5493), 1, + anon_sym_LBRACK, + ACTIONS(5497), 1, + anon_sym_DOT, + ACTIONS(5499), 1, + anon_sym_DASH_GT, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6718), 1, + anon_sym_COMMA, + ACTIONS(6724), 1, + anon_sym_SLASH, + ACTIONS(6730), 1, + anon_sym_PIPE, + ACTIONS(6734), 1, + anon_sym_AMP, + ACTIONS(6740), 1, + anon_sym_GT_EQ, + ACTIONS(6744), 1, + anon_sym_RBRACK, + ACTIONS(6746), 1, + anon_sym_QMARK, + ACTIONS(6748), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6750), 1, + anon_sym_bitor, + ACTIONS(6752), 1, + anon_sym_bitand, + STATE(2996), 1, + sym_argument_list, + STATE(6247), 1, + aux_sym_lambda_capture_specifier_repeat1, + ACTIONS(6585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6720), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6722), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6726), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6728), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6732), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6742), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6736), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6738), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [125779] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(6512), 1, + anon_sym_LPAREN2, + ACTIONS(6520), 1, + anon_sym_LBRACK, + ACTIONS(6522), 1, sym_auto, + ACTIONS(6524), 1, anon_sym_decltype, + ACTIONS(6754), 1, + anon_sym_STAR, + ACTIONS(6756), 1, + anon_sym_AMP_AMP, + ACTIONS(6758), 1, + anon_sym_AMP, + STATE(3692), 1, + sym_decltype_auto, + STATE(3887), 1, + sym_parameter_list, + STATE(5464), 1, + sym__function_declarator_seq, + STATE(5556), 1, + sym__abstract_declarator, + STATE(4515), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(5367), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6540), 8, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, anon_sym_final, anon_sym_override, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, anon_sym_try, anon_sym_requires, - [94840] = 3, + ACTIONS(6359), 10, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [125852] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(4549), 13, + ACTIONS(4978), 1, + anon_sym_LPAREN2, + ACTIONS(5493), 1, + anon_sym_LBRACK, + ACTIONS(5497), 1, + anon_sym_DOT, + ACTIONS(5499), 1, + anon_sym_DASH_GT, + ACTIONS(6605), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, + anon_sym_SLASH, + ACTIONS(6617), 1, + anon_sym_PIPE, + ACTIONS(6621), 1, + anon_sym_AMP, + ACTIONS(6627), 1, + anon_sym_GT_EQ, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6635), 1, + anon_sym_bitor, + ACTIONS(6637), 1, + anon_sym_bitand, + ACTIONS(6760), 1, anon_sym_COMMA, + ACTIONS(6762), 1, anon_sym_RPAREN, + STATE(2996), 1, + sym_argument_list, + STATE(6505), 1, + aux_sym_argument_list_repeat1, + ACTIONS(6585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6607), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6609), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6613), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6615), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6619), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6629), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6623), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6625), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [125945] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5212), 1, anon_sym_LPAREN2, - anon_sym_TILDE, + ACTIONS(5982), 1, + anon_sym_LBRACK, + ACTIONS(5986), 1, + anon_sym_DOT, + ACTIONS(5988), 1, + anon_sym_DASH_GT, + ACTIONS(6670), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6672), 1, + anon_sym_COMMA, + ACTIONS(6678), 1, + anon_sym_SLASH, + ACTIONS(6684), 1, + anon_sym_PIPE, + ACTIONS(6688), 1, + anon_sym_AMP, + ACTIONS(6694), 1, + anon_sym_LT_LT, + ACTIONS(6696), 1, + anon_sym_GT_GT, + ACTIONS(6698), 1, + anon_sym_QMARK, + ACTIONS(6700), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6702), 1, + anon_sym_bitor, + ACTIONS(6704), 1, + anon_sym_bitand, + ACTIONS(6764), 1, + anon_sym_GT2, + STATE(3506), 1, + sym_argument_list, + STATE(6528), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(6674), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6676), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6680), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6682), 2, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, + anon_sym_and, + ACTIONS(6686), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6706), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6690), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6692), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [126038] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5212), 1, + anon_sym_LPAREN2, + ACTIONS(5982), 1, + anon_sym_LBRACK, + ACTIONS(5986), 1, + anon_sym_DOT, + ACTIONS(5988), 1, + anon_sym_DASH_GT, + ACTIONS(6670), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6672), 1, + anon_sym_COMMA, + ACTIONS(6678), 1, + anon_sym_SLASH, + ACTIONS(6684), 1, + anon_sym_PIPE, + ACTIONS(6688), 1, + anon_sym_AMP, + ACTIONS(6694), 1, + anon_sym_LT_LT, + ACTIONS(6696), 1, + anon_sym_GT_GT, + ACTIONS(6698), 1, + anon_sym_QMARK, + ACTIONS(6700), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6702), 1, + anon_sym_bitor, + ACTIONS(6704), 1, + anon_sym_bitand, + ACTIONS(6766), 1, anon_sym_GT2, - ACTIONS(4551), 28, + STATE(3506), 1, + sym_argument_list, + STATE(6382), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(6674), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6676), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6680), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6682), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6686), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6706), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6690), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6692), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [126131] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(4831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6351), 1, + anon_sym_AMP_AMP, + ACTIONS(6353), 1, anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + ACTIONS(6363), 1, + anon_sym_noexcept, + ACTIONS(6365), 1, + anon_sym_throw, + ACTIONS(6532), 1, + anon_sym_DASH_GT, + ACTIONS(6534), 1, + anon_sym_requires, + ACTIONS(6544), 1, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, + STATE(4954), 1, + sym_ref_qualifier, + STATE(5360), 1, + sym_requires_clause, + STATE(5503), 1, + sym_trailing_return_type, + ACTIONS(4880), 2, + anon_sym_final, + anon_sym_override, + STATE(4527), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(5202), 2, + sym_noexcept, + sym_throw_specifier, + STATE(5210), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5295), 2, + sym_virtual_specifier, + aux_sym__function_declarator_seq_repeat2, + ACTIONS(6542), 5, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_try, + ACTIONS(6359), 10, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [94889] = 3, + [126210] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(4620), 13, + ACTIONS(4978), 1, + anon_sym_LPAREN2, + ACTIONS(5493), 1, + anon_sym_LBRACK, + ACTIONS(5497), 1, + anon_sym_DOT, + ACTIONS(5499), 1, + anon_sym_DASH_GT, + ACTIONS(6605), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, + anon_sym_SLASH, + ACTIONS(6617), 1, + anon_sym_PIPE, + ACTIONS(6621), 1, + anon_sym_AMP, + ACTIONS(6627), 1, + anon_sym_GT_EQ, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6635), 1, + anon_sym_bitor, + ACTIONS(6637), 1, + anon_sym_bitand, + ACTIONS(6768), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, + ACTIONS(6771), 1, + anon_sym_SEMI, + ACTIONS(6773), 1, + anon_sym_RBRACE, + STATE(2996), 1, + sym_argument_list, + ACTIONS(6585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6607), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6609), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6613), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6615), 2, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, + anon_sym_and, + ACTIONS(6619), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6629), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6623), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6625), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [126303] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6219), 1, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(4622), 28, + ACTIONS(6775), 1, + anon_sym_COLON, + STATE(3671), 1, + sym__enum_base_clause, + STATE(3739), 1, + sym_enumerator_list, + ACTIONS(5113), 3, anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [94938] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5456), 1, - sym_primitive_type, - ACTIONS(5596), 1, - sym_identifier, - STATE(3088), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(5454), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(4052), 10, - anon_sym_COMMA, + ACTIONS(5111), 30, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(4054), 24, - anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym___declspec, - anon_sym_LBRACK, anon_sym_static, anon_sym_register, anon_sym_inline, anon_sym_thread_local, - anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, sym_auto, @@ -311563,1196 +413669,1555 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_virtual, anon_sym_try, anon_sym_requires, - [94995] = 3, + [126356] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(4616), 13, + ACTIONS(5212), 1, + anon_sym_LPAREN2, + ACTIONS(5982), 1, + anon_sym_LBRACK, + ACTIONS(5986), 1, + anon_sym_DOT, + ACTIONS(5988), 1, + anon_sym_DASH_GT, + ACTIONS(6670), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(6672), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, + ACTIONS(6678), 1, + anon_sym_SLASH, + ACTIONS(6684), 1, + anon_sym_PIPE, + ACTIONS(6688), 1, + anon_sym_AMP, + ACTIONS(6694), 1, + anon_sym_LT_LT, + ACTIONS(6696), 1, + anon_sym_GT_GT, + ACTIONS(6698), 1, + anon_sym_QMARK, + ACTIONS(6700), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6702), 1, + anon_sym_bitor, + ACTIONS(6704), 1, + anon_sym_bitand, + ACTIONS(6777), 1, + anon_sym_GT2, + STATE(3506), 1, + sym_argument_list, + STATE(6541), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(6674), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6676), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6680), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6682), 2, anon_sym_AMP_AMP, - anon_sym_SEMI, + anon_sym_and, + ACTIONS(6686), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6706), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6690), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6692), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [126449] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4476), 1, anon_sym_COLON_COLON, + ACTIONS(6045), 1, + anon_sym_LT, + ACTIONS(6779), 1, + anon_sym_LBRACK, + STATE(4399), 1, + sym_template_argument_list, + ACTIONS(4478), 2, + anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, + ACTIONS(4463), 5, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_GT2, - ACTIONS(4618), 28, + ACTIONS(4455), 26, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, anon_sym___based, - anon_sym_LBRACK, anon_sym_static, anon_sym_register, anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, + anon_sym_COLON, sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, anon_sym_virtual, - anon_sym_template, anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [95044] = 24, + [126504] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1697), 1, - sym_primitive_type, - ACTIONS(1707), 1, - sym_auto, - ACTIONS(1709), 1, - anon_sym_decltype, - ACTIONS(2922), 1, - sym_identifier, - ACTIONS(5598), 1, - anon_sym_COLON_COLON, - ACTIONS(5600), 1, - anon_sym_enum, - ACTIONS(5602), 1, - anon_sym_class, - ACTIONS(5604), 1, - anon_sym_struct, - ACTIONS(5606), 1, - anon_sym_union, - ACTIONS(5608), 1, - anon_sym_typename, - STATE(3554), 1, - sym_qualified_type_identifier, - STATE(3558), 1, - sym_decltype_auto, - STATE(3905), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3926), 1, - sym__type_specifier, - STATE(4691), 1, - sym_type_descriptor, - STATE(5035), 1, - sym__scope_resolution, - STATE(6159), 1, - sym_dependent_type_identifier, - STATE(3198), 2, - sym_decltype, - sym_template_type, - STATE(3310), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(5534), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3601), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(59), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [95135] = 3, + ACTIONS(5212), 1, + anon_sym_LPAREN2, + ACTIONS(5982), 1, + anon_sym_LBRACK, + ACTIONS(5986), 1, + anon_sym_DOT, + ACTIONS(5988), 1, + anon_sym_DASH_GT, + ACTIONS(6670), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6672), 1, + anon_sym_COMMA, + ACTIONS(6678), 1, + anon_sym_SLASH, + ACTIONS(6684), 1, + anon_sym_PIPE, + ACTIONS(6688), 1, + anon_sym_AMP, + ACTIONS(6694), 1, + anon_sym_LT_LT, + ACTIONS(6696), 1, + anon_sym_GT_GT, + ACTIONS(6698), 1, + anon_sym_QMARK, + ACTIONS(6700), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6702), 1, + anon_sym_bitor, + ACTIONS(6704), 1, + anon_sym_bitand, + ACTIONS(6781), 1, + anon_sym_GT2, + STATE(3506), 1, + sym_argument_list, + STATE(6569), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(6674), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6676), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6680), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6682), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6686), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6706), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6690), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6692), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [126597] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(4497), 13, + ACTIONS(4978), 1, + anon_sym_LPAREN2, + ACTIONS(5493), 1, + anon_sym_LBRACK, + ACTIONS(5497), 1, + anon_sym_DOT, + ACTIONS(5499), 1, + anon_sym_DASH_GT, + ACTIONS(6605), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, + anon_sym_SLASH, + ACTIONS(6617), 1, + anon_sym_PIPE, + ACTIONS(6621), 1, + anon_sym_AMP, + ACTIONS(6627), 1, + anon_sym_GT_EQ, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6635), 1, + anon_sym_bitor, + ACTIONS(6637), 1, + anon_sym_bitand, + ACTIONS(6783), 1, anon_sym_COMMA, + ACTIONS(6785), 1, + anon_sym_RBRACE, + STATE(2996), 1, + sym_argument_list, + STATE(6560), 1, + aux_sym_initializer_list_repeat1, + ACTIONS(6585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6607), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6609), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6613), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6615), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6619), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6629), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6623), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6625), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [126690] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6219), 1, + anon_sym_LBRACE, + ACTIONS(6775), 1, + anon_sym_COLON, + STATE(3674), 1, + sym__enum_base_clause, + STATE(3696), 1, + sym_enumerator_list, + ACTIONS(5125), 3, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + ACTIONS(5123), 30, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(4499), 28, - anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, anon_sym_static, anon_sym_register, anon_sym_inline, anon_sym_thread_local, - anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - sym_identifier, sym_auto, anon_sym_decltype, anon_sym_final, anon_sym_override, anon_sym_virtual, - anon_sym_template, - anon_sym_operator, anon_sym_try, anon_sym_requires, - [95184] = 24, + [126743] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1507), 1, - anon_sym_enum, - ACTIONS(1509), 1, - anon_sym_class, - ACTIONS(1511), 1, - anon_sym_struct, - ACTIONS(1513), 1, - anon_sym_union, - ACTIONS(1515), 1, - sym_auto, - ACTIONS(1517), 1, - anon_sym_decltype, - ACTIONS(1519), 1, - anon_sym_typename, - ACTIONS(5498), 1, - sym_identifier, - ACTIONS(5502), 1, - anon_sym_COLON_COLON, - ACTIONS(5504), 1, - sym_primitive_type, - STATE(1922), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2444), 1, - sym_qualified_type_identifier, - STATE(2540), 1, - sym_decltype_auto, - STATE(3894), 1, - sym__type_specifier, - STATE(4997), 1, - sym__scope_resolution, - STATE(6159), 1, - sym_dependent_type_identifier, - STATE(6546), 1, - sym_type_descriptor, - STATE(2247), 2, - sym_decltype, - sym_template_type, - STATE(3299), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(1503), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2541), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(59), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [95275] = 24, + ACTIONS(4978), 1, + anon_sym_LPAREN2, + ACTIONS(5493), 1, + anon_sym_LBRACK, + ACTIONS(5497), 1, + anon_sym_DOT, + ACTIONS(5499), 1, + anon_sym_DASH_GT, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, + anon_sym_SLASH, + ACTIONS(6617), 1, + anon_sym_PIPE, + ACTIONS(6621), 1, + anon_sym_AMP, + ACTIONS(6627), 1, + anon_sym_GT_EQ, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6635), 1, + anon_sym_bitor, + ACTIONS(6637), 1, + anon_sym_bitand, + ACTIONS(6787), 1, + anon_sym_COMMA, + ACTIONS(6789), 1, + anon_sym_RBRACE, + STATE(2996), 1, + sym_argument_list, + STATE(6357), 1, + aux_sym_initializer_list_repeat1, + ACTIONS(6585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6607), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6609), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6613), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6615), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6619), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6629), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6623), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6625), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [126836] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1507), 1, - anon_sym_enum, - ACTIONS(1509), 1, - anon_sym_class, - ACTIONS(1511), 1, - anon_sym_struct, - ACTIONS(1513), 1, - anon_sym_union, - ACTIONS(1515), 1, - sym_auto, - ACTIONS(1517), 1, - anon_sym_decltype, - ACTIONS(1519), 1, - anon_sym_typename, - ACTIONS(5498), 1, - sym_identifier, - ACTIONS(5502), 1, - anon_sym_COLON_COLON, - ACTIONS(5504), 1, - sym_primitive_type, - STATE(1922), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2444), 1, - sym_qualified_type_identifier, - STATE(2540), 1, - sym_decltype_auto, - STATE(3894), 1, - sym__type_specifier, - STATE(4997), 1, - sym__scope_resolution, - STATE(6135), 1, - sym_type_descriptor, - STATE(6159), 1, - sym_dependent_type_identifier, - STATE(2247), 2, - sym_decltype, - sym_template_type, - STATE(3299), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(1503), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2541), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(59), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [95366] = 24, + ACTIONS(4978), 1, + anon_sym_LPAREN2, + ACTIONS(5493), 1, + anon_sym_LBRACK, + ACTIONS(5497), 1, + anon_sym_DOT, + ACTIONS(5499), 1, + anon_sym_DASH_GT, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, + anon_sym_SLASH, + ACTIONS(6617), 1, + anon_sym_PIPE, + ACTIONS(6621), 1, + anon_sym_AMP, + ACTIONS(6627), 1, + anon_sym_GT_EQ, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6635), 1, + anon_sym_bitor, + ACTIONS(6637), 1, + anon_sym_bitand, + ACTIONS(6760), 1, + anon_sym_COMMA, + ACTIONS(6791), 1, + anon_sym_RPAREN, + STATE(2996), 1, + sym_argument_list, + STATE(6297), 1, + aux_sym_argument_list_repeat1, + ACTIONS(6585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6607), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6609), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6613), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6615), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6619), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6629), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6623), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6625), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [126929] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1507), 1, - anon_sym_enum, - ACTIONS(1509), 1, - anon_sym_class, - ACTIONS(1511), 1, - anon_sym_struct, - ACTIONS(1513), 1, - anon_sym_union, - ACTIONS(1515), 1, - sym_auto, - ACTIONS(1517), 1, - anon_sym_decltype, - ACTIONS(1519), 1, - anon_sym_typename, - ACTIONS(5498), 1, - sym_identifier, - ACTIONS(5502), 1, - anon_sym_COLON_COLON, - ACTIONS(5504), 1, - sym_primitive_type, - STATE(1922), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2444), 1, - sym_qualified_type_identifier, - STATE(2540), 1, - sym_decltype_auto, - STATE(3894), 1, - sym__type_specifier, - STATE(4691), 1, - sym_type_descriptor, - STATE(4997), 1, - sym__scope_resolution, - STATE(6159), 1, - sym_dependent_type_identifier, - STATE(2247), 2, - sym_decltype, - sym_template_type, - STATE(3299), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(1503), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2541), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(59), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [95457] = 3, + ACTIONS(5212), 1, + anon_sym_LPAREN2, + ACTIONS(5982), 1, + anon_sym_LBRACK, + ACTIONS(5986), 1, + anon_sym_DOT, + ACTIONS(5988), 1, + anon_sym_DASH_GT, + ACTIONS(6670), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6672), 1, + anon_sym_COMMA, + ACTIONS(6678), 1, + anon_sym_SLASH, + ACTIONS(6684), 1, + anon_sym_PIPE, + ACTIONS(6688), 1, + anon_sym_AMP, + ACTIONS(6694), 1, + anon_sym_LT_LT, + ACTIONS(6696), 1, + anon_sym_GT_GT, + ACTIONS(6698), 1, + anon_sym_QMARK, + ACTIONS(6700), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6702), 1, + anon_sym_bitor, + ACTIONS(6704), 1, + anon_sym_bitand, + ACTIONS(6793), 1, + anon_sym_GT2, + STATE(3506), 1, + sym_argument_list, + STATE(6552), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(6674), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6676), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6680), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6682), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6686), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6706), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6690), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6692), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [127022] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(4361), 13, + ACTIONS(4978), 1, + anon_sym_LPAREN2, + ACTIONS(5493), 1, + anon_sym_LBRACK, + ACTIONS(5497), 1, + anon_sym_DOT, + ACTIONS(5499), 1, + anon_sym_DASH_GT, + ACTIONS(6605), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, + anon_sym_SLASH, + ACTIONS(6617), 1, + anon_sym_PIPE, + ACTIONS(6621), 1, + anon_sym_AMP, + ACTIONS(6627), 1, + anon_sym_GT_EQ, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6635), 1, + anon_sym_bitor, + ACTIONS(6637), 1, + anon_sym_bitand, + ACTIONS(6760), 1, anon_sym_COMMA, + ACTIONS(6795), 1, anon_sym_RPAREN, + STATE(2996), 1, + sym_argument_list, + STATE(6304), 1, + aux_sym_argument_list_repeat1, + ACTIONS(6585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6607), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6609), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6613), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6615), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6619), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6629), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6623), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6625), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [127115] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(6512), 1, anon_sym_LPAREN2, - anon_sym_TILDE, + ACTIONS(6514), 1, anon_sym_STAR, + ACTIONS(6516), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(4363), 28, + ACTIONS(6518), 1, anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + ACTIONS(6520), 1, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, + STATE(3793), 1, + sym_parameter_list, + STATE(5333), 1, + sym__abstract_declarator, + STATE(5464), 1, + sym__function_declarator_seq, + STATE(4092), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(5367), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6359), 10, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, + ACTIONS(5004), 11, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_final, anon_sym_override, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, + anon_sym_GT2, anon_sym_try, anon_sym_requires, - [95506] = 3, + [127182] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(4553), 13, + ACTIONS(4978), 1, + anon_sym_LPAREN2, + ACTIONS(5493), 1, + anon_sym_LBRACK, + ACTIONS(5497), 1, + anon_sym_DOT, + ACTIONS(5499), 1, + anon_sym_DASH_GT, + ACTIONS(6605), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, + anon_sym_SLASH, + ACTIONS(6617), 1, + anon_sym_PIPE, + ACTIONS(6621), 1, + anon_sym_AMP, + ACTIONS(6627), 1, + anon_sym_GT_EQ, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6635), 1, + anon_sym_bitor, + ACTIONS(6637), 1, + anon_sym_bitand, + ACTIONS(6760), 1, anon_sym_COMMA, + ACTIONS(6797), 1, anon_sym_RPAREN, + STATE(2996), 1, + sym_argument_list, + STATE(6418), 1, + aux_sym_argument_list_repeat1, + ACTIONS(6585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6607), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6609), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6613), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6615), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6619), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6629), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6623), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6625), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [127275] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4978), 1, anon_sym_LPAREN2, - anon_sym_TILDE, + ACTIONS(5493), 1, + anon_sym_LBRACK, + ACTIONS(5497), 1, + anon_sym_DOT, + ACTIONS(5499), 1, + anon_sym_DASH_GT, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, + anon_sym_SLASH, + ACTIONS(6617), 1, + anon_sym_PIPE, + ACTIONS(6621), 1, + anon_sym_AMP, + ACTIONS(6627), 1, + anon_sym_GT_EQ, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6635), 1, + anon_sym_bitor, + ACTIONS(6637), 1, + anon_sym_bitand, + ACTIONS(6799), 1, + anon_sym_COMMA, + ACTIONS(6801), 1, + anon_sym_RBRACE, + STATE(2996), 1, + sym_argument_list, + STATE(6397), 1, + aux_sym_initializer_list_repeat1, + ACTIONS(6585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6607), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6609), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6613), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6615), 2, anon_sym_AMP_AMP, - anon_sym_SEMI, + anon_sym_and, + ACTIONS(6619), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6629), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6623), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6625), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [127368] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4476), 1, anon_sym_COLON_COLON, + ACTIONS(4505), 1, + anon_sym_LBRACK, + ACTIONS(6045), 1, + anon_sym_LT, + STATE(4399), 1, + sym_template_argument_list, + ACTIONS(4500), 2, + anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, + ACTIONS(4503), 5, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_GT2, - ACTIONS(4555), 28, + ACTIONS(4498), 26, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, anon_sym___based, - anon_sym_LBRACK, anon_sym_static, anon_sym_register, anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, + anon_sym_COLON, sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, anon_sym_virtual, - anon_sym_template, anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [95555] = 24, + [127423] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1507), 1, - anon_sym_enum, - ACTIONS(1509), 1, - anon_sym_class, - ACTIONS(1511), 1, - anon_sym_struct, - ACTIONS(1513), 1, - anon_sym_union, - ACTIONS(1515), 1, - sym_auto, - ACTIONS(1517), 1, - anon_sym_decltype, - ACTIONS(1519), 1, - anon_sym_typename, - ACTIONS(5498), 1, - sym_identifier, - ACTIONS(5502), 1, - anon_sym_COLON_COLON, - ACTIONS(5504), 1, - sym_primitive_type, - STATE(1922), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2444), 1, - sym_qualified_type_identifier, - STATE(2540), 1, - sym_decltype_auto, - STATE(3894), 1, - sym__type_specifier, - STATE(4997), 1, - sym__scope_resolution, - STATE(6112), 1, - sym_type_descriptor, - STATE(6159), 1, - sym_dependent_type_identifier, - STATE(2247), 2, - sym_decltype, - sym_template_type, - STATE(3299), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(1503), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2541), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(59), 8, + ACTIONS(57), 1, anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [95646] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1507), 1, - anon_sym_enum, - ACTIONS(1509), 1, - anon_sym_class, - ACTIONS(1511), 1, - anon_sym_struct, - ACTIONS(1513), 1, - anon_sym_union, - ACTIONS(1515), 1, - sym_auto, - ACTIONS(1517), 1, - anon_sym_decltype, - ACTIONS(1519), 1, - anon_sym_typename, - ACTIONS(5498), 1, - sym_identifier, - ACTIONS(5502), 1, - anon_sym_COLON_COLON, - ACTIONS(5504), 1, - sym_primitive_type, - STATE(1922), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2444), 1, - sym_qualified_type_identifier, - STATE(2540), 1, - sym_decltype_auto, - STATE(3894), 1, - sym__type_specifier, - STATE(4997), 1, - sym__scope_resolution, - STATE(6092), 1, - sym_type_descriptor, - STATE(6159), 1, - sym_dependent_type_identifier, - STATE(2247), 2, - sym_decltype, - sym_template_type, - STATE(3299), 2, + ACTIONS(6512), 1, + anon_sym_LPAREN2, + ACTIONS(6514), 1, + anon_sym_STAR, + ACTIONS(6516), 1, + anon_sym_AMP_AMP, + ACTIONS(6518), 1, + anon_sym_AMP, + ACTIONS(6520), 1, + anon_sym_LBRACK, + STATE(3793), 1, + sym_parameter_list, + STATE(5323), 1, + sym__abstract_declarator, + STATE(5464), 1, + sym__function_declarator_seq, + STATE(4527), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(1503), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2541), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(59), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, + STATE(5367), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6359), 10, anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [95737] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1507), 1, - anon_sym_enum, - ACTIONS(1509), 1, - anon_sym_class, - ACTIONS(1511), 1, - anon_sym_struct, - ACTIONS(1513), 1, - anon_sym_union, - ACTIONS(1515), 1, - sym_auto, - ACTIONS(1517), 1, - anon_sym_decltype, - ACTIONS(1519), 1, - anon_sym_typename, - ACTIONS(5498), 1, - sym_identifier, - ACTIONS(5502), 1, - anon_sym_COLON_COLON, - ACTIONS(5504), 1, - sym_primitive_type, - STATE(1922), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2444), 1, - sym_qualified_type_identifier, - STATE(2540), 1, - sym_decltype_auto, - STATE(3894), 1, - sym__type_specifier, - STATE(4997), 1, - sym__scope_resolution, - STATE(6093), 1, - sym_type_descriptor, - STATE(6159), 1, - sym_dependent_type_identifier, - STATE(2247), 2, - sym_decltype, - sym_template_type, - STATE(3299), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(1503), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2541), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(59), 8, - anon_sym_const, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - [95828] = 24, + ACTIONS(6803), 11, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [127490] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1507), 1, - anon_sym_enum, - ACTIONS(1509), 1, - anon_sym_class, - ACTIONS(1511), 1, - anon_sym_struct, - ACTIONS(1513), 1, - anon_sym_union, - ACTIONS(1515), 1, - sym_auto, - ACTIONS(1517), 1, - anon_sym_decltype, - ACTIONS(1519), 1, - anon_sym_typename, - ACTIONS(5498), 1, - sym_identifier, - ACTIONS(5502), 1, - anon_sym_COLON_COLON, - ACTIONS(5504), 1, - sym_primitive_type, - STATE(1922), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2444), 1, - sym_qualified_type_identifier, - STATE(2540), 1, - sym_decltype_auto, - STATE(3894), 1, - sym__type_specifier, - STATE(4997), 1, - sym__scope_resolution, - STATE(6111), 1, - sym_type_descriptor, - STATE(6159), 1, - sym_dependent_type_identifier, - STATE(2247), 2, - sym_decltype, - sym_template_type, - STATE(3299), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(1503), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2541), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(59), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [95919] = 23, + ACTIONS(5212), 1, + anon_sym_LPAREN2, + ACTIONS(5982), 1, + anon_sym_LBRACK, + ACTIONS(5986), 1, + anon_sym_DOT, + ACTIONS(5988), 1, + anon_sym_DASH_GT, + ACTIONS(6670), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6672), 1, + anon_sym_COMMA, + ACTIONS(6678), 1, + anon_sym_SLASH, + ACTIONS(6684), 1, + anon_sym_PIPE, + ACTIONS(6688), 1, + anon_sym_AMP, + ACTIONS(6694), 1, + anon_sym_LT_LT, + ACTIONS(6696), 1, + anon_sym_GT_GT, + ACTIONS(6698), 1, + anon_sym_QMARK, + ACTIONS(6700), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6702), 1, + anon_sym_bitor, + ACTIONS(6704), 1, + anon_sym_bitand, + ACTIONS(6805), 1, + anon_sym_GT2, + STATE(3506), 1, + sym_argument_list, + STATE(6385), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(6674), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6676), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6680), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6682), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6686), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6706), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6690), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6692), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [127583] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(107), 1, - sym_auto, - ACTIONS(109), 1, - anon_sym_decltype, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(2922), 1, - sym_identifier, - ACTIONS(2928), 1, - anon_sym_COLON_COLON, - ACTIONS(2932), 1, - sym_primitive_type, - ACTIONS(5610), 1, - anon_sym_enum, - ACTIONS(5612), 1, - anon_sym_class, - ACTIONS(5614), 1, - anon_sym_struct, - ACTIONS(5616), 1, - anon_sym_union, - ACTIONS(5618), 1, - anon_sym_typename, - STATE(3171), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3259), 1, - sym_qualified_type_identifier, - STATE(3279), 1, - sym_decltype_auto, - STATE(4714), 1, - sym__type_specifier, - STATE(5006), 1, - sym__scope_resolution, - STATE(6159), 1, - sym_dependent_type_identifier, - STATE(3198), 2, - sym_decltype, - sym_template_type, - STATE(3309), 2, + ACTIONS(6351), 1, + anon_sym_AMP_AMP, + ACTIONS(6353), 1, + anon_sym_AMP, + ACTIONS(6363), 1, + anon_sym_noexcept, + ACTIONS(6365), 1, + anon_sym_throw, + ACTIONS(6409), 1, + anon_sym_LBRACK, + ACTIONS(6464), 1, + anon_sym___attribute__, + ACTIONS(6466), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6468), 1, + anon_sym_const, + ACTIONS(6530), 1, + anon_sym_requires, + ACTIONS(6807), 1, + anon_sym_DASH_GT, + STATE(5152), 1, + sym_ref_qualifier, + STATE(5436), 1, + sym_requires_clause, + STATE(5484), 1, + sym_trailing_return_type, + ACTIONS(6407), 2, + anon_sym_LPAREN2, + anon_sym_COLON, + ACTIONS(6528), 2, + anon_sym_final, + anon_sym_override, + STATE(4511), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(61), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3232), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(59), 8, - anon_sym_const, + STATE(4581), 2, + sym_attribute_specifier, + aux_sym__function_declarator_seq_repeat1, + STATE(5229), 2, + sym_virtual_specifier, + aux_sym__function_declarator_seq_repeat2, + STATE(5459), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5462), 2, + sym_noexcept, + sym_throw_specifier, + ACTIONS(6470), 10, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - [96007] = 23, + [127666] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(107), 1, - sym_auto, - ACTIONS(109), 1, - anon_sym_decltype, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(2922), 1, - sym_identifier, - ACTIONS(2928), 1, - anon_sym_COLON_COLON, - ACTIONS(2932), 1, - sym_primitive_type, - ACTIONS(5610), 1, - anon_sym_enum, - ACTIONS(5612), 1, - anon_sym_class, - ACTIONS(5614), 1, - anon_sym_struct, - ACTIONS(5616), 1, - anon_sym_union, - ACTIONS(5618), 1, - anon_sym_typename, - STATE(3171), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3259), 1, - sym_qualified_type_identifier, - STATE(3279), 1, - sym_decltype_auto, - STATE(4693), 1, - sym__type_specifier, - STATE(5006), 1, - sym__scope_resolution, - STATE(6159), 1, - sym_dependent_type_identifier, - STATE(3198), 2, - sym_decltype, - sym_template_type, - STATE(4098), 2, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(6512), 1, + anon_sym_LPAREN2, + ACTIONS(6514), 1, + anon_sym_STAR, + ACTIONS(6516), 1, + anon_sym_AMP_AMP, + ACTIONS(6518), 1, + anon_sym_AMP, + ACTIONS(6520), 1, + anon_sym_LBRACK, + STATE(3793), 1, + sym_parameter_list, + STATE(5321), 1, + sym__abstract_declarator, + STATE(5464), 1, + sym__function_declarator_seq, + STATE(4527), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(61), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3232), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(59), 8, - anon_sym_const, + STATE(5367), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6359), 10, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - [96095] = 3, + ACTIONS(5782), 11, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [127733] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4770), 9, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(4978), 1, + anon_sym_LPAREN2, + ACTIONS(5493), 1, + anon_sym_LBRACK, + ACTIONS(5497), 1, + anon_sym_DOT, + ACTIONS(5499), 1, + anon_sym_DASH_GT, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, anon_sym_SLASH, + ACTIONS(6617), 1, anon_sym_PIPE, + ACTIONS(6621), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(4768), 31, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(6627), 1, + anon_sym_GT_EQ, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6635), 1, + anon_sym_bitor, + ACTIONS(6637), 1, + anon_sym_bitand, + ACTIONS(6811), 1, anon_sym_RPAREN, - anon_sym_LPAREN2, + STATE(2996), 1, + sym_argument_list, + ACTIONS(6585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6607), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6609), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(6613), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6615), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6619), 2, anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_xor, + ACTIONS(6629), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(6809), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(6623), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6625), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [127824] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(4831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6351), 1, + anon_sym_AMP_AMP, + ACTIONS(6353), 1, + anon_sym_AMP, + ACTIONS(6363), 1, + anon_sym_noexcept, + ACTIONS(6365), 1, + anon_sym_throw, + ACTIONS(6526), 1, + anon_sym_DASH_GT, + ACTIONS(6530), 1, + anon_sym_requires, + ACTIONS(6544), 1, + anon_sym_LBRACK, + STATE(4958), 1, + sym_ref_qualifier, + STATE(5365), 1, + sym_requires_clause, + STATE(5476), 1, + sym_trailing_return_type, + ACTIONS(6528), 2, + anon_sym_final, + anon_sym_override, + STATE(4527), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(5156), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5160), 2, + sym_noexcept, + sym_throw_specifier, + STATE(5277), 2, + sym_virtual_specifier, + aux_sym__function_declarator_seq_repeat2, + ACTIONS(6542), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(6359), 10, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [127903] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4978), 1, + anon_sym_LPAREN2, + ACTIONS(5493), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, + ACTIONS(5497), 1, + anon_sym_DOT, + ACTIONS(5499), 1, + anon_sym_DASH_GT, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, + anon_sym_SLASH, + ACTIONS(6617), 1, + anon_sym_PIPE, + ACTIONS(6621), 1, + anon_sym_AMP, + ACTIONS(6627), 1, + anon_sym_GT_EQ, + ACTIONS(6631), 1, anon_sym_QMARK, + ACTIONS(6633), 1, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, + ACTIONS(6635), 1, anon_sym_bitor, - anon_sym_xor, + ACTIONS(6637), 1, anon_sym_bitand, - anon_sym_not_eq, + ACTIONS(6760), 1, + anon_sym_COMMA, + ACTIONS(6813), 1, + anon_sym_RPAREN, + STATE(2996), 1, + sym_argument_list, + STATE(6538), 1, + aux_sym_argument_list_repeat1, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [96143] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3814), 1, - anon_sym_COLON_COLON, - STATE(3135), 1, - sym_template_argument_list, - ACTIONS(4288), 11, + ACTIONS(6607), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(6609), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6613), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6615), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6619), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6629), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6623), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6625), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_GT_GT, + [127996] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5212), 1, + anon_sym_LPAREN2, + ACTIONS(5982), 1, + anon_sym_LBRACK, + ACTIONS(5986), 1, anon_sym_DOT, - ACTIONS(4286), 27, + ACTIONS(5988), 1, + anon_sym_DASH_GT, + ACTIONS(6670), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(6672), 1, anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(6678), 1, + anon_sym_SLASH, + ACTIONS(6684), 1, + anon_sym_PIPE, + ACTIONS(6688), 1, + anon_sym_AMP, + ACTIONS(6694), 1, + anon_sym_LT_LT, + ACTIONS(6696), 1, + anon_sym_GT_GT, + ACTIONS(6698), 1, + anon_sym_QMARK, + ACTIONS(6700), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6702), 1, + anon_sym_bitor, + ACTIONS(6704), 1, + anon_sym_bitand, + ACTIONS(6815), 1, + anon_sym_GT2, + STATE(3506), 1, + sym_argument_list, + STATE(6187), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(6674), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6676), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(6680), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6682), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6686), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(6706), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6690), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACE, + anon_sym_not_eq, + ACTIONS(6692), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [128089] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4978), 1, + anon_sym_LPAREN2, + ACTIONS(5493), 1, anon_sym_LBRACK, + ACTIONS(5497), 1, + anon_sym_DOT, + ACTIONS(5499), 1, + anon_sym_DASH_GT, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6718), 1, + anon_sym_COMMA, + ACTIONS(6724), 1, + anon_sym_SLASH, + ACTIONS(6730), 1, + anon_sym_PIPE, + ACTIONS(6734), 1, + anon_sym_AMP, + ACTIONS(6740), 1, + anon_sym_GT_EQ, + ACTIONS(6746), 1, anon_sym_QMARK, + ACTIONS(6748), 1, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, + ACTIONS(6750), 1, anon_sym_bitor, - anon_sym_xor, + ACTIONS(6752), 1, anon_sym_bitand, - anon_sym_not_eq, + ACTIONS(6817), 1, + anon_sym_RBRACK, + STATE(2996), 1, + sym_argument_list, + STATE(6245), 1, + aux_sym_lambda_capture_specifier_repeat1, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [96195] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(107), 1, - sym_auto, - ACTIONS(109), 1, - anon_sym_decltype, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(2922), 1, - sym_identifier, - ACTIONS(2928), 1, - anon_sym_COLON_COLON, - ACTIONS(2932), 1, - sym_primitive_type, - ACTIONS(5610), 1, - anon_sym_enum, - ACTIONS(5612), 1, - anon_sym_class, - ACTIONS(5614), 1, - anon_sym_struct, - ACTIONS(5616), 1, - anon_sym_union, - ACTIONS(5618), 1, - anon_sym_typename, - STATE(3171), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3259), 1, - sym_qualified_type_identifier, - STATE(3279), 1, - sym_decltype_auto, - STATE(4668), 1, - sym__type_specifier, - STATE(5006), 1, - sym__scope_resolution, - STATE(6159), 1, - sym_dependent_type_identifier, - STATE(3198), 2, - sym_decltype, - sym_template_type, - STATE(3319), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(61), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3232), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(59), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [96283] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4704), 16, + ACTIONS(6720), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, + ACTIONS(6722), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6726), 2, + anon_sym_PIPE_PIPE, anon_sym_or, + ACTIONS(6728), 2, + anon_sym_AMP_AMP, anon_sym_and, - anon_sym_bitor, + ACTIONS(6732), 2, + anon_sym_CARET, anon_sym_xor, - anon_sym_bitand, + ACTIONS(6742), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6736), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_not_eq, + ACTIONS(6738), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [128182] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4978), 1, + anon_sym_LPAREN2, + ACTIONS(5493), 1, + anon_sym_LBRACK, + ACTIONS(5497), 1, anon_sym_DOT, - sym_literal_suffix, - ACTIONS(4702), 24, + ACTIONS(5499), 1, + anon_sym_DASH_GT, + ACTIONS(6605), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, + anon_sym_SLASH, + ACTIONS(6617), 1, + anon_sym_PIPE, + ACTIONS(6621), 1, + anon_sym_AMP, + ACTIONS(6627), 1, + anon_sym_GT_EQ, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6635), 1, + anon_sym_bitor, + ACTIONS(6637), 1, + anon_sym_bitand, + ACTIONS(6760), 1, anon_sym_COMMA, + ACTIONS(6819), 1, anon_sym_RPAREN, - anon_sym_LPAREN2, + STATE(2996), 1, + sym_argument_list, + STATE(6388), 1, + aux_sym_argument_list_repeat1, + ACTIONS(6585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6607), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6609), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(6613), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6615), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6619), 2, anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_xor, + ACTIONS(6629), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [96331] = 23, + ACTIONS(6623), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6625), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [128275] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(107), 1, - sym_auto, - ACTIONS(109), 1, - anon_sym_decltype, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(2922), 1, - sym_identifier, - ACTIONS(2928), 1, - anon_sym_COLON_COLON, - ACTIONS(2932), 1, - sym_primitive_type, - ACTIONS(2934), 1, - anon_sym_enum, - ACTIONS(2936), 1, - anon_sym_class, - ACTIONS(2938), 1, - anon_sym_struct, - ACTIONS(2940), 1, - anon_sym_union, - ACTIONS(2942), 1, - anon_sym_typename, - STATE(3259), 1, - sym_qualified_type_identifier, - STATE(3272), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3279), 1, - sym_decltype_auto, - STATE(3869), 1, - sym__type_specifier, - STATE(5006), 1, - sym__scope_resolution, - STATE(6159), 1, - sym_dependent_type_identifier, - STATE(3198), 2, - sym_decltype, - sym_template_type, - STATE(4098), 2, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(6512), 1, + anon_sym_LPAREN2, + ACTIONS(6514), 1, + anon_sym_STAR, + ACTIONS(6516), 1, + anon_sym_AMP_AMP, + ACTIONS(6518), 1, + anon_sym_AMP, + ACTIONS(6520), 1, + anon_sym_LBRACK, + STATE(3793), 1, + sym_parameter_list, + STATE(5320), 1, + sym__abstract_declarator, + STATE(5464), 1, + sym__function_declarator_seq, + STATE(4527), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(2930), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3232), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(59), 8, - anon_sym_const, + STATE(5367), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6359), 10, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - [96419] = 14, + ACTIONS(6821), 11, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [128342] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(4210), 1, - anon_sym___attribute__, - ACTIONS(4214), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(4216), 1, - anon_sym___declspec, - ACTIONS(4220), 1, - anon_sym_virtual, - ACTIONS(5423), 1, - sym_auto, - ACTIONS(5425), 1, - anon_sym_decltype, - ACTIONS(5620), 1, - anon_sym_SEMI, - STATE(3229), 1, - sym_decltype_auto, - ACTIONS(4208), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - ACTIONS(5431), 5, + ACTIONS(4978), 1, anon_sym_LPAREN2, - anon_sym_TILDE, + ACTIONS(5493), 1, + anon_sym_LBRACK, + ACTIONS(5497), 1, + anon_sym_DOT, + ACTIONS(5499), 1, + anon_sym_DASH_GT, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, + anon_sym_SLASH, + ACTIONS(6617), 1, + anon_sym_PIPE, + ACTIONS(6621), 1, + anon_sym_AMP, + ACTIONS(6627), 1, + anon_sym_GT_EQ, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6635), 1, + anon_sym_bitor, + ACTIONS(6637), 1, + anon_sym_bitand, + ACTIONS(6823), 1, + anon_sym_COMMA, + ACTIONS(6825), 1, + anon_sym_RPAREN, + ACTIONS(6827), 1, + anon_sym_SEMI, + STATE(2996), 1, + sym_argument_list, + ACTIONS(6585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6607), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6609), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6613), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6615), 2, anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - ACTIONS(5429), 6, - anon_sym_AMP, - anon_sym___based, - anon_sym_LBRACK, - sym_identifier, - anon_sym_template, - anon_sym_operator, - ACTIONS(4218), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(3194), 8, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual, - aux_sym__declaration_specifiers_repeat1, - [96489] = 3, + anon_sym_and, + ACTIONS(6619), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6629), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6623), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6625), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [128435] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4865), 9, + ACTIONS(6462), 1, + anon_sym_LBRACK, + STATE(4191), 1, + sym_new_declarator, + ACTIONS(5387), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(4863), 31, + ACTIONS(5385), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -312761,15 +415226,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -312781,575 +415239,1175 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [96537] = 11, + anon_sym_GT2, + [128484] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5629), 1, - anon_sym___attribute__, - ACTIONS(5632), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5635), 1, - anon_sym___declspec, - ACTIONS(5641), 1, - anon_sym_virtual, - ACTIONS(5644), 1, - anon_sym_explicit, - ACTIONS(5624), 5, + ACTIONS(4978), 1, anon_sym_LPAREN2, - anon_sym_TILDE, + ACTIONS(5493), 1, + anon_sym_LBRACK, + ACTIONS(5497), 1, + anon_sym_DOT, + ACTIONS(5499), 1, + anon_sym_DASH_GT, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, + anon_sym_SLASH, + ACTIONS(6617), 1, + anon_sym_PIPE, + ACTIONS(6621), 1, + anon_sym_AMP, + ACTIONS(6627), 1, + anon_sym_GT_EQ, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6635), 1, + anon_sym_bitor, + ACTIONS(6637), 1, + anon_sym_bitand, + ACTIONS(6760), 1, + anon_sym_COMMA, + ACTIONS(6829), 1, + anon_sym_RPAREN, + STATE(2996), 1, + sym_argument_list, + STATE(6415), 1, + aux_sym_argument_list_repeat1, + ACTIONS(6585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6607), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6609), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6613), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6615), 2, anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - ACTIONS(5626), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - ACTIONS(5622), 7, + anon_sym_and, + ACTIONS(6619), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6629), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6623), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6625), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [128577] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4978), 1, + anon_sym_LPAREN2, + ACTIONS(5493), 1, + anon_sym_LBRACK, + ACTIONS(5497), 1, + anon_sym_DOT, + ACTIONS(5499), 1, + anon_sym_DASH_GT, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, + anon_sym_SLASH, + ACTIONS(6617), 1, + anon_sym_PIPE, + ACTIONS(6621), 1, anon_sym_AMP, - anon_sym___based, + ACTIONS(6627), 1, + anon_sym_GT_EQ, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6635), 1, + anon_sym_bitor, + ACTIONS(6637), 1, + anon_sym_bitand, + ACTIONS(6666), 1, + anon_sym_COMMA, + ACTIONS(6831), 1, + anon_sym_RPAREN, + STATE(2996), 1, + sym_argument_list, + STATE(6279), 1, + aux_sym_generic_expression_repeat1, + ACTIONS(6585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6607), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6609), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6613), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6615), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6619), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6629), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6623), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6625), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [128670] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6351), 1, + anon_sym_AMP_AMP, + ACTIONS(6353), 1, + anon_sym_AMP, + ACTIONS(6363), 1, + anon_sym_noexcept, + ACTIONS(6365), 1, + anon_sym_throw, + ACTIONS(6409), 1, anon_sym_LBRACK, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - ACTIONS(5638), 8, + ACTIONS(6464), 1, + anon_sym___attribute__, + ACTIONS(6466), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6468), 1, anon_sym_const, + ACTIONS(6833), 1, + anon_sym_DASH_GT, + ACTIONS(6835), 1, + anon_sym_requires, + STATE(5147), 1, + sym_ref_qualifier, + STATE(5422), 1, + sym_requires_clause, + STATE(5678), 1, + sym_trailing_return_type, + ACTIONS(4880), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(6407), 2, + anon_sym_LPAREN2, + anon_sym_COLON, + STATE(4510), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(4581), 2, + sym_attribute_specifier, + aux_sym__function_declarator_seq_repeat1, + STATE(5301), 2, + sym_virtual_specifier, + aux_sym__function_declarator_seq_repeat2, + STATE(5359), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5386), 2, + sym_noexcept, + sym_throw_specifier, + ACTIONS(6470), 10, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - STATE(3294), 10, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual, - sym_explicit_function_specifier, - sym__constructor_specifiers, - aux_sym_operator_cast_definition_repeat1, - [96601] = 6, + [128753] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(3814), 1, - anon_sym_COLON_COLON, - ACTIONS(5413), 1, - anon_sym_LT, - STATE(3135), 1, - sym_template_argument_list, - ACTIONS(3801), 8, - anon_sym_RPAREN, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(6512), 1, anon_sym_LPAREN2, - anon_sym_TILDE, + ACTIONS(6520), 1, + anon_sym_LBRACK, + ACTIONS(6522), 1, + sym_auto, + ACTIONS(6524), 1, + anon_sym_decltype, + ACTIONS(6754), 1, anon_sym_STAR, + ACTIONS(6756), 1, anon_sym_AMP_AMP, + ACTIONS(6758), 1, + anon_sym_AMP, + STATE(3692), 1, + sym_decltype_auto, + STATE(3887), 1, + sym_parameter_list, + STATE(5464), 1, + sym__function_declarator_seq, + STATE(5553), 1, + sym__abstract_declarator, + STATE(4519), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(5367), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6510), 8, + anon_sym_RPAREN, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - ACTIONS(3793), 29, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + ACTIONS(6359), 10, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - anon_sym_COLON, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [96655] = 3, + [128826] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(4766), 9, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(4978), 1, + anon_sym_LPAREN2, + ACTIONS(5493), 1, + anon_sym_LBRACK, + ACTIONS(5497), 1, + anon_sym_DOT, + ACTIONS(5499), 1, + anon_sym_DASH_GT, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, anon_sym_SLASH, + ACTIONS(6617), 1, anon_sym_PIPE, + ACTIONS(6621), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(4764), 31, - anon_sym_DOT_DOT_DOT, + ACTIONS(6627), 1, + anon_sym_GT_EQ, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6635), 1, + anon_sym_bitor, + ACTIONS(6637), 1, + anon_sym_bitand, + ACTIONS(6666), 1, anon_sym_COMMA, + ACTIONS(6837), 1, anon_sym_RPAREN, - anon_sym_LPAREN2, + STATE(2996), 1, + sym_argument_list, + STATE(6593), 1, + aux_sym_generic_expression_repeat1, + ACTIONS(6585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6607), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6609), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(6613), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6615), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6619), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(6629), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6623), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_not_eq, + ACTIONS(6625), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [128919] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5212), 1, + anon_sym_LPAREN2, + ACTIONS(5982), 1, + anon_sym_LBRACK, + ACTIONS(5986), 1, + anon_sym_DOT, + ACTIONS(5988), 1, + anon_sym_DASH_GT, + ACTIONS(6670), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6672), 1, + anon_sym_COMMA, + ACTIONS(6678), 1, + anon_sym_SLASH, + ACTIONS(6684), 1, + anon_sym_PIPE, + ACTIONS(6688), 1, + anon_sym_AMP, + ACTIONS(6694), 1, anon_sym_LT_LT, + ACTIONS(6696), 1, anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, + ACTIONS(6698), 1, anon_sym_QMARK, + ACTIONS(6700), 1, anon_sym_LT_EQ_GT, + ACTIONS(6702), 1, + anon_sym_bitor, + ACTIONS(6704), 1, + anon_sym_bitand, + ACTIONS(6839), 1, + anon_sym_GT2, + STATE(3506), 1, + sym_argument_list, + STATE(6184), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(6674), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6676), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6680), 2, + anon_sym_PIPE_PIPE, anon_sym_or, + ACTIONS(6682), 2, + anon_sym_AMP_AMP, anon_sym_and, - anon_sym_bitor, + ACTIONS(6686), 2, + anon_sym_CARET, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + ACTIONS(6706), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [96703] = 14, + ACTIONS(6690), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6692), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [129012] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(4210), 1, - anon_sym___attribute__, - ACTIONS(4214), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(4216), 1, - anon_sym___declspec, - ACTIONS(4220), 1, - anon_sym_virtual, - ACTIONS(5423), 1, - sym_auto, - ACTIONS(5425), 1, - anon_sym_decltype, - ACTIONS(5647), 1, - anon_sym_SEMI, - STATE(3229), 1, - sym_decltype_auto, - ACTIONS(4208), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - ACTIONS(5431), 5, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, + ACTIONS(6351), 1, anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - ACTIONS(5429), 6, + ACTIONS(6353), 1, anon_sym_AMP, - anon_sym___based, + ACTIONS(6357), 1, anon_sym_LBRACK, - sym_identifier, - anon_sym_template, - anon_sym_operator, - ACTIONS(4218), 8, + ACTIONS(6363), 1, + anon_sym_noexcept, + ACTIONS(6365), 1, + anon_sym_throw, + ACTIONS(6464), 1, + anon_sym___attribute__, + ACTIONS(6466), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6468), 1, anon_sym_const, + ACTIONS(6530), 1, + anon_sym_requires, + ACTIONS(6807), 1, + anon_sym_DASH_GT, + STATE(5150), 1, + sym_ref_qualifier, + STATE(5410), 1, + sym_requires_clause, + STATE(5540), 1, + sym_trailing_return_type, + ACTIONS(6349), 2, + anon_sym_LPAREN2, + anon_sym_COLON, + ACTIONS(6528), 2, + anon_sym_final, + anon_sym_override, + STATE(4091), 2, + sym_attribute_specifier, + aux_sym__function_declarator_seq_repeat1, + STATE(4509), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(5222), 2, + sym_virtual_specifier, + aux_sym__function_declarator_seq_repeat2, + STATE(5434), 2, + sym_noexcept, + sym_throw_specifier, + STATE(5435), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(6470), 10, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - STATE(3194), 8, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual, - aux_sym__declaration_specifiers_repeat1, - [96773] = 14, + [129095] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(4210), 1, - anon_sym___attribute__, - ACTIONS(4214), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(4216), 1, - anon_sym___declspec, - ACTIONS(4220), 1, - anon_sym_virtual, - ACTIONS(5423), 1, - sym_auto, - ACTIONS(5425), 1, - anon_sym_decltype, - ACTIONS(5649), 1, - anon_sym_SEMI, - STATE(3229), 1, - sym_decltype_auto, - ACTIONS(4208), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - ACTIONS(5431), 5, + ACTIONS(5212), 1, anon_sym_LPAREN2, - anon_sym_TILDE, + ACTIONS(5982), 1, + anon_sym_LBRACK, + ACTIONS(5986), 1, + anon_sym_DOT, + ACTIONS(5988), 1, + anon_sym_DASH_GT, + ACTIONS(6670), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6672), 1, + anon_sym_COMMA, + ACTIONS(6678), 1, + anon_sym_SLASH, + ACTIONS(6684), 1, + anon_sym_PIPE, + ACTIONS(6688), 1, + anon_sym_AMP, + ACTIONS(6694), 1, + anon_sym_LT_LT, + ACTIONS(6696), 1, + anon_sym_GT_GT, + ACTIONS(6698), 1, + anon_sym_QMARK, + ACTIONS(6700), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6702), 1, + anon_sym_bitor, + ACTIONS(6704), 1, + anon_sym_bitand, + ACTIONS(6841), 1, + anon_sym_GT2, + STATE(3506), 1, + sym_argument_list, + STATE(6471), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(6674), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6676), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6680), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6682), 2, anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - ACTIONS(5429), 6, - anon_sym_AMP, - anon_sym___based, - anon_sym_LBRACK, - sym_identifier, - anon_sym_template, - anon_sym_operator, - ACTIONS(4218), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(3194), 8, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual, - aux_sym__declaration_specifiers_repeat1, - [96843] = 23, + anon_sym_and, + ACTIONS(6686), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6706), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6690), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6692), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [129188] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1507), 1, - anon_sym_enum, - ACTIONS(1509), 1, - anon_sym_class, - ACTIONS(1511), 1, - anon_sym_struct, - ACTIONS(1513), 1, - anon_sym_union, - ACTIONS(1515), 1, - sym_auto, - ACTIONS(1517), 1, - anon_sym_decltype, - ACTIONS(1519), 1, - anon_sym_typename, - ACTIONS(5498), 1, - sym_identifier, - ACTIONS(5502), 1, - anon_sym_COLON_COLON, - ACTIONS(5504), 1, - sym_primitive_type, - STATE(1922), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2444), 1, - sym_qualified_type_identifier, - STATE(2540), 1, - sym_decltype_auto, - STATE(3889), 1, - sym__type_specifier, - STATE(4997), 1, - sym__scope_resolution, - STATE(6159), 1, - sym_dependent_type_identifier, - STATE(2247), 2, - sym_decltype, - sym_template_type, - STATE(4098), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(1503), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2541), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(59), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [96931] = 22, + ACTIONS(4978), 1, + anon_sym_LPAREN2, + ACTIONS(5493), 1, + anon_sym_LBRACK, + ACTIONS(5497), 1, + anon_sym_DOT, + ACTIONS(5499), 1, + anon_sym_DASH_GT, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, + anon_sym_SLASH, + ACTIONS(6617), 1, + anon_sym_PIPE, + ACTIONS(6621), 1, + anon_sym_AMP, + ACTIONS(6627), 1, + anon_sym_GT_EQ, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6635), 1, + anon_sym_bitor, + ACTIONS(6637), 1, + anon_sym_bitand, + ACTIONS(6666), 1, + anon_sym_COMMA, + ACTIONS(6843), 1, + anon_sym_RPAREN, + STATE(2996), 1, + sym_argument_list, + STATE(6325), 1, + aux_sym_generic_expression_repeat1, + ACTIONS(6585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6607), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6609), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6613), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6615), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6619), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6629), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6623), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6625), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [129281] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(59), 1, + ACTIONS(57), 1, anon_sym_const, - ACTIONS(4214), 1, + ACTIONS(4831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5653), 1, + ACTIONS(6351), 1, anon_sym_AMP_AMP, - ACTIONS(5655), 1, + ACTIONS(6353), 1, anon_sym_AMP, - ACTIONS(5657), 1, - anon_sym___attribute__, - ACTIONS(5659), 1, - anon_sym_LBRACK, - ACTIONS(5663), 1, - anon_sym_DASH_GT, - ACTIONS(5665), 1, + ACTIONS(6363), 1, anon_sym_noexcept, - ACTIONS(5667), 1, + ACTIONS(6365), 1, anon_sym_throw, - ACTIONS(5669), 1, + ACTIONS(6409), 1, + anon_sym_LBRACK, + ACTIONS(6536), 1, + anon_sym_DASH_GT, + ACTIONS(6538), 1, anon_sym_requires, - STATE(4107), 1, + STATE(4959), 1, sym_ref_qualifier, - STATE(4560), 1, - sym_trailing_return_type, - STATE(4718), 1, + STATE(5436), 1, sym_requires_clause, - ACTIONS(4135), 2, + STATE(5599), 1, + sym_trailing_return_type, + ACTIONS(6528), 2, anon_sym_final, anon_sym_override, - STATE(3320), 2, - sym_attribute_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(3473), 2, + STATE(4527), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - STATE(4291), 2, + STATE(5158), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(4351), 2, + STATE(5161), 2, sym_noexcept, sym_throw_specifier, - STATE(4546), 2, + STATE(5229), 2, sym_virtual_specifier, aux_sym__function_declarator_seq_repeat2, - ACTIONS(5661), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - ACTIONS(5651), 8, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(6407), 5, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_GT2, anon_sym_try, - [97017] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(107), 1, - sym_auto, - ACTIONS(109), 1, - anon_sym_decltype, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(2922), 1, - sym_identifier, - ACTIONS(2928), 1, - anon_sym_COLON_COLON, - ACTIONS(2932), 1, - sym_primitive_type, - ACTIONS(5610), 1, - anon_sym_enum, - ACTIONS(5612), 1, - anon_sym_class, - ACTIONS(5614), 1, - anon_sym_struct, - ACTIONS(5616), 1, - anon_sym_union, - ACTIONS(5618), 1, - anon_sym_typename, - STATE(3171), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3259), 1, - sym_qualified_type_identifier, - STATE(3279), 1, - sym_decltype_auto, - STATE(4675), 1, - sym__type_specifier, - STATE(5006), 1, - sym__scope_resolution, - STATE(6159), 1, - sym_dependent_type_identifier, - STATE(3198), 2, - sym_decltype, - sym_template_type, - STATE(3333), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(61), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3232), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(59), 8, - anon_sym_const, + ACTIONS(6359), 10, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - [97105] = 6, + [129360] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(1489), 1, - anon_sym_LBRACE, - ACTIONS(5415), 1, + ACTIONS(5212), 1, anon_sym_LPAREN2, - STATE(3347), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(4519), 9, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(5982), 1, + anon_sym_LBRACK, + ACTIONS(5986), 1, + anon_sym_DOT, + ACTIONS(5988), 1, + anon_sym_DASH_GT, + ACTIONS(6670), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6672), 1, + anon_sym_COMMA, + ACTIONS(6678), 1, anon_sym_SLASH, + ACTIONS(6684), 1, anon_sym_PIPE, + ACTIONS(6688), 1, anon_sym_AMP, + ACTIONS(6694), 1, + anon_sym_LT_LT, + ACTIONS(6696), 1, + anon_sym_GT_GT, + ACTIONS(6698), 1, + anon_sym_QMARK, + ACTIONS(6700), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6702), 1, + anon_sym_bitor, + ACTIONS(6704), 1, + anon_sym_bitand, + ACTIONS(6845), 1, + anon_sym_GT2, + STATE(3506), 1, + sym_argument_list, + STATE(6370), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(6674), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6676), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6680), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6682), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6686), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6706), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6690), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6692), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + [129453] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4978), 1, + anon_sym_LPAREN2, + ACTIONS(5493), 1, + anon_sym_LBRACK, + ACTIONS(5497), 1, anon_sym_DOT, - ACTIONS(4517), 27, + ACTIONS(5499), 1, + anon_sym_DASH_GT, + ACTIONS(6605), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, + anon_sym_SLASH, + ACTIONS(6617), 1, + anon_sym_PIPE, + ACTIONS(6621), 1, + anon_sym_AMP, + ACTIONS(6627), 1, + anon_sym_GT_EQ, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6635), 1, + anon_sym_bitor, + ACTIONS(6637), 1, + anon_sym_bitand, + ACTIONS(6666), 1, anon_sym_COMMA, + ACTIONS(6847), 1, anon_sym_RPAREN, + STATE(2996), 1, + sym_argument_list, + STATE(6346), 1, + aux_sym_generic_expression_repeat1, + ACTIONS(6585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6607), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6609), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(6613), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6615), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6619), 2, anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_xor, + ACTIONS(6629), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACE, + ACTIONS(6623), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6625), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [129546] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4978), 1, + anon_sym_LPAREN2, + ACTIONS(5493), 1, anon_sym_LBRACK, + ACTIONS(5497), 1, + anon_sym_DOT, + ACTIONS(5499), 1, + anon_sym_DASH_GT, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6718), 1, + anon_sym_COMMA, + ACTIONS(6724), 1, + anon_sym_SLASH, + ACTIONS(6730), 1, + anon_sym_PIPE, + ACTIONS(6734), 1, + anon_sym_AMP, + ACTIONS(6740), 1, + anon_sym_GT_EQ, + ACTIONS(6746), 1, anon_sym_QMARK, + ACTIONS(6748), 1, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, + ACTIONS(6750), 1, anon_sym_bitor, - anon_sym_xor, + ACTIONS(6752), 1, anon_sym_bitand, - anon_sym_not_eq, + ACTIONS(6849), 1, + anon_sym_RBRACK, + STATE(2996), 1, + sym_argument_list, + STATE(6247), 1, + aux_sym_lambda_capture_specifier_repeat1, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [97159] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4939), 9, + ACTIONS(6720), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(6722), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6726), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6728), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6732), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6742), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6736), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6738), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + [129639] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4978), 1, + anon_sym_LPAREN2, + ACTIONS(5493), 1, + anon_sym_LBRACK, + ACTIONS(5497), 1, anon_sym_DOT, - ACTIONS(2652), 31, + ACTIONS(5499), 1, + anon_sym_DASH_GT, + ACTIONS(6605), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, + anon_sym_SLASH, + ACTIONS(6617), 1, + anon_sym_PIPE, + ACTIONS(6621), 1, + anon_sym_AMP, + ACTIONS(6627), 1, + anon_sym_GT_EQ, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6635), 1, + anon_sym_bitor, + ACTIONS(6637), 1, + anon_sym_bitand, + ACTIONS(6823), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + STATE(2996), 1, + sym_argument_list, + ACTIONS(6585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6607), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6609), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(6613), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6615), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6619), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(6629), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6771), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(6623), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6625), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [129730] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4978), 1, + anon_sym_LPAREN2, + ACTIONS(5493), 1, + anon_sym_LBRACK, + ACTIONS(5497), 1, + anon_sym_DOT, + ACTIONS(5499), 1, + anon_sym_DASH_GT, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, + anon_sym_SLASH, + ACTIONS(6617), 1, + anon_sym_PIPE, + ACTIONS(6621), 1, + anon_sym_AMP, + ACTIONS(6627), 1, anon_sym_GT_EQ, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6635), 1, + anon_sym_bitor, + ACTIONS(6637), 1, + anon_sym_bitand, + ACTIONS(6851), 1, + anon_sym_COMMA, + ACTIONS(6853), 1, + anon_sym_RBRACE, + STATE(2996), 1, + sym_argument_list, + STATE(6374), 1, + aux_sym_initializer_list_repeat1, + ACTIONS(6585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6607), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6609), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6613), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6615), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6619), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6629), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(6623), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6625), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [129823] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(4831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6351), 1, + anon_sym_AMP_AMP, + ACTIONS(6353), 1, + anon_sym_AMP, + ACTIONS(6363), 1, + anon_sym_noexcept, + ACTIONS(6365), 1, + anon_sym_throw, + ACTIONS(6409), 1, + anon_sym_LBRACK, + ACTIONS(6526), 1, + anon_sym_DASH_GT, + ACTIONS(6530), 1, + anon_sym_requires, + STATE(4951), 1, + sym_ref_qualifier, + STATE(5436), 1, + sym_requires_clause, + STATE(5484), 1, + sym_trailing_return_type, + ACTIONS(6528), 2, + anon_sym_final, + anon_sym_override, + STATE(4527), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(5155), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5186), 2, + sym_noexcept, + sym_throw_specifier, + STATE(5229), 2, + sym_virtual_specifier, + aux_sym__function_declarator_seq_repeat2, + ACTIONS(6407), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(6359), 10, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [129902] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5212), 1, + anon_sym_LPAREN2, + ACTIONS(5982), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, + ACTIONS(5986), 1, + anon_sym_DOT, + ACTIONS(5988), 1, + anon_sym_DASH_GT, + ACTIONS(6670), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6672), 1, + anon_sym_COMMA, + ACTIONS(6678), 1, + anon_sym_SLASH, + ACTIONS(6684), 1, + anon_sym_PIPE, + ACTIONS(6688), 1, + anon_sym_AMP, + ACTIONS(6694), 1, + anon_sym_LT_LT, + ACTIONS(6696), 1, + anon_sym_GT_GT, + ACTIONS(6698), 1, anon_sym_QMARK, + ACTIONS(6700), 1, anon_sym_LT_EQ_GT, + ACTIONS(6702), 1, + anon_sym_bitor, + ACTIONS(6704), 1, + anon_sym_bitand, + ACTIONS(6855), 1, + anon_sym_GT2, + STATE(3506), 1, + sym_argument_list, + STATE(6555), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(6674), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6676), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6680), 2, + anon_sym_PIPE_PIPE, anon_sym_or, + ACTIONS(6682), 2, + anon_sym_AMP_AMP, anon_sym_and, - anon_sym_bitor, + ACTIONS(6686), 2, + anon_sym_CARET, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + ACTIONS(6706), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(6690), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6692), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [129995] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(4831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6351), 1, + anon_sym_AMP_AMP, + ACTIONS(6353), 1, + anon_sym_AMP, + ACTIONS(6363), 1, + anon_sym_noexcept, + ACTIONS(6365), 1, + anon_sym_throw, + ACTIONS(6536), 1, anon_sym_DASH_GT, - [97207] = 6, + ACTIONS(6538), 1, + anon_sym_requires, + ACTIONS(6544), 1, + anon_sym_LBRACK, + STATE(4963), 1, + sym_ref_qualifier, + STATE(5365), 1, + sym_requires_clause, + STATE(5589), 1, + sym_trailing_return_type, + ACTIONS(6528), 2, + anon_sym_final, + anon_sym_override, + STATE(4527), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(5172), 2, + sym_noexcept, + sym_throw_specifier, + STATE(5181), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5277), 2, + sym_virtual_specifier, + aux_sym__function_declarator_seq_repeat2, + ACTIONS(6542), 5, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + ACTIONS(6359), 10, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [130074] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1489), 1, + ACTIONS(4555), 2, + anon_sym_COLON_COLON, anon_sym_LBRACE, - ACTIONS(5415), 1, - anon_sym_LPAREN2, - STATE(3385), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(4375), 9, + ACTIONS(4557), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(4373), 27, + ACTIONS(4562), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -313357,11 +416415,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -313374,1158 +416428,758 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [97261] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1697), 1, - sym_primitive_type, - ACTIONS(1701), 1, - anon_sym_class, - ACTIONS(1703), 1, - anon_sym_struct, - ACTIONS(1705), 1, - anon_sym_union, - ACTIONS(1707), 1, - sym_auto, - ACTIONS(1709), 1, - anon_sym_decltype, - ACTIONS(3906), 1, - sym_identifier, - ACTIONS(4641), 1, - anon_sym_COLON_COLON, - ACTIONS(5536), 1, - anon_sym_enum, - ACTIONS(5538), 1, - anon_sym_typename, - STATE(3554), 1, - sym_qualified_type_identifier, - STATE(3558), 1, - sym_decltype_auto, - STATE(3617), 1, - sym__type_specifier, - STATE(3905), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(5040), 1, - sym__scope_resolution, - STATE(6159), 1, - sym_dependent_type_identifier, - STATE(3198), 2, - sym_decltype, - sym_template_type, - STATE(4098), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(5534), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3601), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(59), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [97349] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(2424), 1, - anon_sym_enum, - ACTIONS(2426), 1, - anon_sym_class, - ACTIONS(2428), 1, - anon_sym_struct, - ACTIONS(2430), 1, - anon_sym_union, - ACTIONS(2444), 1, - sym_auto, - ACTIONS(2446), 1, - anon_sym_decltype, - ACTIONS(2448), 1, - anon_sym_typename, - ACTIONS(5568), 1, - sym_identifier, - ACTIONS(5570), 1, - anon_sym_COLON_COLON, - ACTIONS(5572), 1, - sym_primitive_type, - STATE(2022), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3000), 1, - sym_qualified_type_identifier, - STATE(3008), 1, - sym_decltype_auto, - STATE(3918), 1, - sym__type_specifier, - STATE(4989), 1, - sym__scope_resolution, - STATE(6159), 1, - sym_dependent_type_identifier, - STATE(2851), 2, - sym_decltype, - sym_template_type, - STATE(4098), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(2420), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3003), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(59), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [97437] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(107), 1, - sym_auto, - ACTIONS(109), 1, - anon_sym_decltype, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(2922), 1, - sym_identifier, - ACTIONS(2928), 1, - anon_sym_COLON_COLON, - ACTIONS(2932), 1, - sym_primitive_type, - ACTIONS(5610), 1, - anon_sym_enum, - ACTIONS(5612), 1, - anon_sym_class, - ACTIONS(5614), 1, - anon_sym_struct, - ACTIONS(5616), 1, - anon_sym_union, - ACTIONS(5618), 1, - anon_sym_typename, - STATE(3171), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3259), 1, - sym_qualified_type_identifier, - STATE(3279), 1, - sym_decltype_auto, - STATE(4700), 1, - sym__type_specifier, - STATE(5006), 1, - sym__scope_resolution, - STATE(6159), 1, - sym_dependent_type_identifier, - STATE(3198), 2, - sym_decltype, - sym_template_type, - STATE(4098), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(61), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3232), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(59), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [97525] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(107), 1, - sym_auto, - ACTIONS(109), 1, - anon_sym_decltype, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(2922), 1, - sym_identifier, - ACTIONS(2928), 1, - anon_sym_COLON_COLON, - ACTIONS(2932), 1, - sym_primitive_type, - ACTIONS(5610), 1, - anon_sym_enum, - ACTIONS(5612), 1, - anon_sym_class, - ACTIONS(5614), 1, - anon_sym_struct, - ACTIONS(5616), 1, - anon_sym_union, - ACTIONS(5618), 1, - anon_sym_typename, - STATE(3171), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3259), 1, - sym_qualified_type_identifier, - STATE(3279), 1, - sym_decltype_auto, - STATE(4701), 1, - sym__type_specifier, - STATE(5006), 1, - sym__scope_resolution, - STATE(6159), 1, - sym_dependent_type_identifier, - STATE(3198), 2, - sym_decltype, - sym_template_type, - STATE(3307), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(61), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3232), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(59), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [97613] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(107), 1, - sym_auto, - ACTIONS(109), 1, - anon_sym_decltype, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(2922), 1, - sym_identifier, - ACTIONS(2928), 1, - anon_sym_COLON_COLON, - ACTIONS(2932), 1, - sym_primitive_type, - ACTIONS(5610), 1, - anon_sym_enum, - ACTIONS(5612), 1, - anon_sym_class, - ACTIONS(5614), 1, - anon_sym_struct, - ACTIONS(5616), 1, - anon_sym_union, - ACTIONS(5618), 1, - anon_sym_typename, - STATE(3171), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3259), 1, - sym_qualified_type_identifier, - STATE(3279), 1, - sym_decltype_auto, - STATE(4709), 1, - sym__type_specifier, - STATE(5006), 1, - sym__scope_resolution, - STATE(6159), 1, - sym_dependent_type_identifier, - STATE(3198), 2, - sym_decltype, - sym_template_type, - STATE(4098), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(61), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3232), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(59), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [97701] = 23, + anon_sym_GT2, + [130121] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1697), 1, - sym_primitive_type, - ACTIONS(1707), 1, - sym_auto, - ACTIONS(1709), 1, - anon_sym_decltype, - ACTIONS(2922), 1, - sym_identifier, - ACTIONS(5598), 1, - anon_sym_COLON_COLON, - ACTIONS(5600), 1, - anon_sym_enum, - ACTIONS(5602), 1, - anon_sym_class, - ACTIONS(5604), 1, - anon_sym_struct, - ACTIONS(5606), 1, - anon_sym_union, - ACTIONS(5608), 1, - anon_sym_typename, - STATE(3554), 1, - sym_qualified_type_identifier, - STATE(3558), 1, - sym_decltype_auto, - STATE(3905), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3929), 1, - sym__type_specifier, - STATE(5035), 1, - sym__scope_resolution, - STATE(6159), 1, - sym_dependent_type_identifier, - STATE(3198), 2, - sym_decltype, - sym_template_type, - STATE(4098), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(5534), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3601), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(59), 8, + ACTIONS(6351), 1, + anon_sym_AMP_AMP, + ACTIONS(6353), 1, + anon_sym_AMP, + ACTIONS(6357), 1, + anon_sym_LBRACK, + ACTIONS(6363), 1, + anon_sym_noexcept, + ACTIONS(6365), 1, + anon_sym_throw, + ACTIONS(6464), 1, + anon_sym___attribute__, + ACTIONS(6466), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6468), 1, anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [97789] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(107), 1, - sym_auto, - ACTIONS(109), 1, - anon_sym_decltype, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(2922), 1, - sym_identifier, - ACTIONS(2928), 1, - anon_sym_COLON_COLON, - ACTIONS(2932), 1, - sym_primitive_type, - ACTIONS(5610), 1, - anon_sym_enum, - ACTIONS(5612), 1, - anon_sym_class, - ACTIONS(5614), 1, - anon_sym_struct, - ACTIONS(5616), 1, - anon_sym_union, - ACTIONS(5618), 1, - anon_sym_typename, - STATE(3171), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3259), 1, - sym_qualified_type_identifier, - STATE(3279), 1, - sym_decltype_auto, - STATE(4739), 1, - sym__type_specifier, - STATE(5006), 1, - sym__scope_resolution, - STATE(6159), 1, - sym_dependent_type_identifier, - STATE(3198), 2, - sym_decltype, - sym_template_type, - STATE(4098), 2, + ACTIONS(6833), 1, + anon_sym_DASH_GT, + ACTIONS(6835), 1, + anon_sym_requires, + STATE(5149), 1, + sym_ref_qualifier, + STATE(5378), 1, + sym_requires_clause, + STATE(5687), 1, + sym_trailing_return_type, + ACTIONS(4880), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(6349), 2, + anon_sym_LPAREN2, + anon_sym_COLON, + STATE(4104), 2, + sym_attribute_specifier, + aux_sym__function_declarator_seq_repeat1, + STATE(4513), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(61), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3232), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(59), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, + STATE(5278), 2, + sym_virtual_specifier, + aux_sym__function_declarator_seq_repeat2, + STATE(5356), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5404), 2, + sym_noexcept, + sym_throw_specifier, + ACTIONS(6470), 10, anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [97877] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(107), 1, - sym_auto, - ACTIONS(109), 1, - anon_sym_decltype, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(2922), 1, - sym_identifier, - ACTIONS(2928), 1, - anon_sym_COLON_COLON, - ACTIONS(2932), 1, - sym_primitive_type, - ACTIONS(5610), 1, - anon_sym_enum, - ACTIONS(5612), 1, - anon_sym_class, - ACTIONS(5614), 1, - anon_sym_struct, - ACTIONS(5616), 1, - anon_sym_union, - ACTIONS(5618), 1, - anon_sym_typename, - STATE(3171), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3259), 1, - sym_qualified_type_identifier, - STATE(3279), 1, - sym_decltype_auto, - STATE(4737), 1, - sym__type_specifier, - STATE(5006), 1, - sym__scope_resolution, - STATE(6159), 1, - sym_dependent_type_identifier, - STATE(3198), 2, - sym_decltype, - sym_template_type, - STATE(3311), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(61), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3232), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(59), 8, - anon_sym_const, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - [97965] = 23, + [130204] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(107), 1, - sym_auto, - ACTIONS(109), 1, - anon_sym_decltype, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(2922), 1, - sym_identifier, - ACTIONS(2928), 1, - anon_sym_COLON_COLON, - ACTIONS(2932), 1, - sym_primitive_type, - ACTIONS(5610), 1, - anon_sym_enum, - ACTIONS(5612), 1, - anon_sym_class, - ACTIONS(5614), 1, - anon_sym_struct, - ACTIONS(5616), 1, - anon_sym_union, - ACTIONS(5618), 1, - anon_sym_typename, - STATE(3171), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3259), 1, - sym_qualified_type_identifier, - STATE(3279), 1, - sym_decltype_auto, - STATE(4699), 1, - sym__type_specifier, - STATE(5006), 1, - sym__scope_resolution, - STATE(6159), 1, - sym_dependent_type_identifier, - STATE(3198), 2, - sym_decltype, - sym_template_type, - STATE(4098), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(61), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3232), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(59), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [98053] = 23, + ACTIONS(5212), 1, + anon_sym_LPAREN2, + ACTIONS(5982), 1, + anon_sym_LBRACK, + ACTIONS(5986), 1, + anon_sym_DOT, + ACTIONS(5988), 1, + anon_sym_DASH_GT, + ACTIONS(6670), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6672), 1, + anon_sym_COMMA, + ACTIONS(6678), 1, + anon_sym_SLASH, + ACTIONS(6684), 1, + anon_sym_PIPE, + ACTIONS(6688), 1, + anon_sym_AMP, + ACTIONS(6694), 1, + anon_sym_LT_LT, + ACTIONS(6696), 1, + anon_sym_GT_GT, + ACTIONS(6698), 1, + anon_sym_QMARK, + ACTIONS(6700), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6702), 1, + anon_sym_bitor, + ACTIONS(6704), 1, + anon_sym_bitand, + ACTIONS(6857), 1, + anon_sym_GT2, + STATE(3506), 1, + sym_argument_list, + STATE(6276), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(6674), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6676), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6680), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6682), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6686), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6706), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6690), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6692), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [130297] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(107), 1, - sym_auto, - ACTIONS(109), 1, - anon_sym_decltype, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(2922), 1, - sym_identifier, - ACTIONS(2928), 1, - anon_sym_COLON_COLON, - ACTIONS(2932), 1, - sym_primitive_type, - ACTIONS(5610), 1, - anon_sym_enum, - ACTIONS(5612), 1, - anon_sym_class, - ACTIONS(5614), 1, - anon_sym_struct, - ACTIONS(5616), 1, - anon_sym_union, - ACTIONS(5618), 1, - anon_sym_typename, - STATE(3171), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3259), 1, - sym_qualified_type_identifier, - STATE(3279), 1, - sym_decltype_auto, - STATE(4694), 1, - sym__type_specifier, - STATE(5006), 1, - sym__scope_resolution, - STATE(6159), 1, - sym_dependent_type_identifier, - STATE(3198), 2, - sym_decltype, - sym_template_type, - STATE(3313), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(61), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3232), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(59), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [98141] = 23, + ACTIONS(4978), 1, + anon_sym_LPAREN2, + ACTIONS(5493), 1, + anon_sym_LBRACK, + ACTIONS(5497), 1, + anon_sym_DOT, + ACTIONS(5499), 1, + anon_sym_DASH_GT, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, + anon_sym_SLASH, + ACTIONS(6617), 1, + anon_sym_PIPE, + ACTIONS(6621), 1, + anon_sym_AMP, + ACTIONS(6627), 1, + anon_sym_GT_EQ, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6635), 1, + anon_sym_bitor, + ACTIONS(6637), 1, + anon_sym_bitand, + ACTIONS(6664), 1, + anon_sym_RBRACE, + ACTIONS(6859), 1, + anon_sym_COMMA, + STATE(2996), 1, + sym_argument_list, + STATE(6580), 1, + aux_sym_initializer_list_repeat1, + ACTIONS(6585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6607), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6609), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6613), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6615), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6619), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6629), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6623), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6625), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [130390] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(5574), 1, - sym_identifier, - ACTIONS(5576), 1, - anon_sym_COLON_COLON, - ACTIONS(5580), 1, - sym_primitive_type, - ACTIONS(5582), 1, - anon_sym_enum, - ACTIONS(5584), 1, - anon_sym_class, - ACTIONS(5586), 1, - anon_sym_struct, - ACTIONS(5588), 1, - anon_sym_union, - ACTIONS(5590), 1, - sym_auto, - ACTIONS(5592), 1, - anon_sym_decltype, - ACTIONS(5594), 1, - anon_sym_typename, - STATE(3884), 1, - sym__type_specifier, - STATE(4040), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(4262), 1, - sym_qualified_type_identifier, - STATE(4265), 1, - sym_decltype_auto, - STATE(5024), 1, - sym__scope_resolution, - STATE(6159), 1, - sym_dependent_type_identifier, - STATE(4098), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(4116), 2, - sym_decltype, - sym_template_type, - ACTIONS(5578), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(4264), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(59), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [98229] = 6, + ACTIONS(4978), 1, + anon_sym_LPAREN2, + ACTIONS(5493), 1, + anon_sym_LBRACK, + ACTIONS(5497), 1, + anon_sym_DOT, + ACTIONS(5499), 1, + anon_sym_DASH_GT, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, + anon_sym_SLASH, + ACTIONS(6617), 1, + anon_sym_PIPE, + ACTIONS(6621), 1, + anon_sym_AMP, + ACTIONS(6627), 1, + anon_sym_GT_EQ, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6635), 1, + anon_sym_bitor, + ACTIONS(6637), 1, + anon_sym_bitand, + ACTIONS(6666), 1, + anon_sym_COMMA, + ACTIONS(6861), 1, + anon_sym_RPAREN, + STATE(2996), 1, + sym_argument_list, + STATE(6589), 1, + aux_sym_generic_expression_repeat1, + ACTIONS(6585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6607), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6609), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6613), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6615), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6619), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6629), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6623), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6625), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [130483] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(1489), 1, - anon_sym_LBRACE, - ACTIONS(5415), 1, + ACTIONS(5212), 1, anon_sym_LPAREN2, - STATE(3358), 2, + ACTIONS(5982), 1, + anon_sym_LBRACK, + ACTIONS(5986), 1, + anon_sym_DOT, + ACTIONS(5988), 1, + anon_sym_DASH_GT, + ACTIONS(6670), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6672), 1, + anon_sym_COMMA, + ACTIONS(6678), 1, + anon_sym_SLASH, + ACTIONS(6684), 1, + anon_sym_PIPE, + ACTIONS(6688), 1, + anon_sym_AMP, + ACTIONS(6694), 1, + anon_sym_LT_LT, + ACTIONS(6696), 1, + anon_sym_GT_GT, + ACTIONS(6698), 1, + anon_sym_QMARK, + ACTIONS(6700), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6702), 1, + anon_sym_bitor, + ACTIONS(6704), 1, + anon_sym_bitand, + ACTIONS(6863), 1, + anon_sym_GT2, + STATE(3506), 1, sym_argument_list, - sym_initializer_list, - ACTIONS(4411), 9, + STATE(6441), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(6674), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(6676), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6680), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6682), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6686), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6706), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6690), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6692), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + [130576] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4978), 1, + anon_sym_LPAREN2, + ACTIONS(5493), 1, + anon_sym_LBRACK, + ACTIONS(5497), 1, anon_sym_DOT, - ACTIONS(4409), 27, + ACTIONS(5499), 1, + anon_sym_DASH_GT, + ACTIONS(6605), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, + anon_sym_SLASH, + ACTIONS(6617), 1, + anon_sym_PIPE, + ACTIONS(6621), 1, + anon_sym_AMP, + ACTIONS(6627), 1, + anon_sym_GT_EQ, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6635), 1, + anon_sym_bitor, + ACTIONS(6637), 1, + anon_sym_bitand, + ACTIONS(6823), 1, anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(6865), 1, + anon_sym_SEMI, + STATE(2996), 1, + sym_argument_list, + ACTIONS(6585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6607), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6609), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(6613), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6615), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6619), 2, anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_xor, + ACTIONS(6629), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACE, + ACTIONS(6623), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6625), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [130666] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4978), 1, + anon_sym_LPAREN2, + ACTIONS(5493), 1, anon_sym_LBRACK, + ACTIONS(5497), 1, + anon_sym_DOT, + ACTIONS(5499), 1, + anon_sym_DASH_GT, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, + anon_sym_SLASH, + ACTIONS(6617), 1, + anon_sym_PIPE, + ACTIONS(6621), 1, + anon_sym_AMP, + ACTIONS(6627), 1, + anon_sym_GT_EQ, + ACTIONS(6631), 1, anon_sym_QMARK, + ACTIONS(6633), 1, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, + ACTIONS(6635), 1, anon_sym_bitor, - anon_sym_xor, + ACTIONS(6637), 1, anon_sym_bitand, - anon_sym_not_eq, + ACTIONS(6867), 1, + anon_sym_COMMA, + ACTIONS(6869), 1, + anon_sym_RPAREN, + STATE(2996), 1, + sym_argument_list, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [98283] = 14, + ACTIONS(6607), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6609), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6613), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6615), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6619), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6629), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6623), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6625), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [130756] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(4210), 1, - anon_sym___attribute__, - ACTIONS(4214), 1, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(4831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4216), 1, - anon_sym___declspec, - ACTIONS(4220), 1, - anon_sym_virtual, - ACTIONS(5423), 1, - sym_auto, - ACTIONS(5425), 1, - anon_sym_decltype, - ACTIONS(5671), 1, - anon_sym_SEMI, - STATE(3229), 1, - sym_decltype_auto, - ACTIONS(4208), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - ACTIONS(5431), 5, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, + ACTIONS(6351), 1, anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - ACTIONS(5429), 6, + ACTIONS(6353), 1, anon_sym_AMP, - anon_sym___based, + ACTIONS(6363), 1, + anon_sym_noexcept, + ACTIONS(6365), 1, + anon_sym_throw, + ACTIONS(6544), 1, anon_sym_LBRACK, - sym_identifier, - anon_sym_template, - anon_sym_operator, - ACTIONS(4218), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(3194), 8, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual, - aux_sym__declaration_specifiers_repeat1, - [98353] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(107), 1, - sym_auto, - ACTIONS(109), 1, - anon_sym_decltype, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(2922), 1, - sym_identifier, - ACTIONS(2928), 1, - anon_sym_COLON_COLON, - ACTIONS(2932), 1, - sym_primitive_type, - ACTIONS(5610), 1, - anon_sym_enum, - ACTIONS(5612), 1, - anon_sym_class, - ACTIONS(5614), 1, - anon_sym_struct, - ACTIONS(5616), 1, - anon_sym_union, - ACTIONS(5618), 1, - anon_sym_typename, - STATE(3171), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3259), 1, - sym_qualified_type_identifier, - STATE(3279), 1, - sym_decltype_auto, - STATE(4657), 1, - sym__type_specifier, - STATE(5006), 1, - sym__scope_resolution, - STATE(6159), 1, - sym_dependent_type_identifier, - STATE(3198), 2, - sym_decltype, - sym_template_type, - STATE(4098), 2, + ACTIONS(6589), 1, + anon_sym_DASH_GT, + ACTIONS(6591), 1, + anon_sym_requires, + STATE(4979), 1, + sym_ref_qualifier, + STATE(5365), 1, + sym_requires_clause, + STATE(5619), 1, + sym_trailing_return_type, + ACTIONS(6528), 2, + anon_sym_final, + anon_sym_override, + STATE(4527), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(61), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3232), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(59), 8, - anon_sym_const, + STATE(5238), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5239), 2, + sym_noexcept, + sym_throw_specifier, + STATE(5277), 2, + sym_virtual_specifier, + aux_sym__function_declarator_seq_repeat2, + ACTIONS(6542), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_GT2, + ACTIONS(6359), 10, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - [98441] = 23, + [130834] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(107), 1, - sym_auto, - ACTIONS(109), 1, - anon_sym_decltype, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(2922), 1, - sym_identifier, - ACTIONS(2928), 1, - anon_sym_COLON_COLON, - ACTIONS(2932), 1, - sym_primitive_type, - ACTIONS(5610), 1, - anon_sym_enum, - ACTIONS(5612), 1, - anon_sym_class, - ACTIONS(5614), 1, - anon_sym_struct, - ACTIONS(5616), 1, - anon_sym_union, - ACTIONS(5618), 1, - anon_sym_typename, - STATE(3171), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3259), 1, - sym_qualified_type_identifier, - STATE(3279), 1, - sym_decltype_auto, - STATE(4704), 1, - sym__type_specifier, - STATE(5006), 1, - sym__scope_resolution, - STATE(6159), 1, - sym_dependent_type_identifier, - STATE(3198), 2, - sym_decltype, - sym_template_type, - STATE(4098), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(61), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3232), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(59), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [98529] = 22, + ACTIONS(4978), 1, + anon_sym_LPAREN2, + ACTIONS(5493), 1, + anon_sym_LBRACK, + ACTIONS(5497), 1, + anon_sym_DOT, + ACTIONS(5499), 1, + anon_sym_DASH_GT, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, + anon_sym_SLASH, + ACTIONS(6617), 1, + anon_sym_PIPE, + ACTIONS(6621), 1, + anon_sym_AMP, + ACTIONS(6627), 1, + anon_sym_GT_EQ, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6635), 1, + anon_sym_bitor, + ACTIONS(6637), 1, + anon_sym_bitand, + ACTIONS(6823), 1, + anon_sym_COMMA, + ACTIONS(6871), 1, + anon_sym_SEMI, + STATE(2996), 1, + sym_argument_list, + ACTIONS(6585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6607), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6609), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6613), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6615), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6619), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6629), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6623), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6625), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [130924] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(59), 1, + ACTIONS(57), 1, anon_sym_const, - ACTIONS(4214), 1, + ACTIONS(4831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5653), 1, + ACTIONS(6351), 1, anon_sym_AMP_AMP, - ACTIONS(5655), 1, + ACTIONS(6353), 1, anon_sym_AMP, - ACTIONS(5657), 1, - anon_sym___attribute__, - ACTIONS(5663), 1, - anon_sym_DASH_GT, - ACTIONS(5665), 1, + ACTIONS(6363), 1, anon_sym_noexcept, - ACTIONS(5667), 1, + ACTIONS(6365), 1, anon_sym_throw, - ACTIONS(5669), 1, - anon_sym_requires, - ACTIONS(5675), 1, + ACTIONS(6409), 1, anon_sym_LBRACK, - STATE(4108), 1, + ACTIONS(6589), 1, + anon_sym_DASH_GT, + ACTIONS(6591), 1, + anon_sym_requires, + STATE(4975), 1, sym_ref_qualifier, - STATE(4550), 1, - sym_trailing_return_type, - STATE(4716), 1, + STATE(5436), 1, sym_requires_clause, - ACTIONS(4135), 2, + STATE(5618), 1, + sym_trailing_return_type, + ACTIONS(6528), 2, anon_sym_final, anon_sym_override, - STATE(3469), 2, + STATE(4527), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - STATE(3978), 2, - sym_attribute_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(4335), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(4347), 2, - sym_noexcept, - sym_throw_specifier, - STATE(4578), 2, + STATE(5229), 2, sym_virtual_specifier, aux_sym__function_declarator_seq_repeat2, - ACTIONS(5661), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - ACTIONS(5673), 8, + STATE(5233), 2, + sym_noexcept, + sym_throw_specifier, + STATE(5236), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(6407), 4, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, anon_sym_GT2, - anon_sym_try, - [98615] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(107), 1, - sym_auto, - ACTIONS(109), 1, - anon_sym_decltype, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(2922), 1, - sym_identifier, - ACTIONS(2928), 1, - anon_sym_COLON_COLON, - ACTIONS(2932), 1, - sym_primitive_type, - ACTIONS(5610), 1, - anon_sym_enum, - ACTIONS(5612), 1, - anon_sym_class, - ACTIONS(5614), 1, - anon_sym_struct, - ACTIONS(5616), 1, - anon_sym_union, - ACTIONS(5618), 1, - anon_sym_typename, - STATE(3171), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3259), 1, - sym_qualified_type_identifier, - STATE(3279), 1, - sym_decltype_auto, - STATE(4676), 1, - sym__type_specifier, - STATE(5006), 1, - sym__scope_resolution, - STATE(6159), 1, - sym_dependent_type_identifier, - STATE(3198), 2, - sym_decltype, - sym_template_type, - STATE(3318), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(61), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3232), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(59), 8, - anon_sym_const, + ACTIONS(6359), 10, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - [98703] = 14, + [131002] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4210), 1, - anon_sym___attribute__, - ACTIONS(4214), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(4216), 1, - anon_sym___declspec, - ACTIONS(4220), 1, - anon_sym_virtual, - ACTIONS(5423), 1, - sym_auto, - ACTIONS(5425), 1, - anon_sym_decltype, - ACTIONS(5677), 1, - anon_sym_SEMI, - STATE(3229), 1, - sym_decltype_auto, - ACTIONS(4208), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - ACTIONS(5431), 5, + ACTIONS(6141), 1, + sym_literal_suffix, + ACTIONS(4465), 17, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + ACTIONS(4457), 18, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_TILDE, anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - ACTIONS(5429), 6, - anon_sym_AMP, - anon_sym___based, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, anon_sym_LBRACK, - sym_identifier, - anon_sym_template, - anon_sym_operator, - ACTIONS(4218), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(3194), 8, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual, - aux_sym__declaration_specifiers_repeat1, - [98773] = 3, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [131048] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4981), 9, + ACTIONS(5212), 1, + anon_sym_LPAREN2, + ACTIONS(5982), 1, + anon_sym_LBRACK, + ACTIONS(5986), 1, + anon_sym_DOT, + ACTIONS(5988), 1, + anon_sym_DASH_GT, + STATE(3506), 1, + sym_argument_list, + ACTIONS(5647), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_DOT, - ACTIONS(4979), 31, + anon_sym_GT_GT, + ACTIONS(5645), 21, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_GT2, + [131102] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5212), 1, anon_sym_LPAREN2, + ACTIONS(5982), 1, + anon_sym_LBRACK, + ACTIONS(5986), 1, + anon_sym_DOT, + ACTIONS(5988), 1, + anon_sym_DASH_GT, + STATE(3506), 1, + sym_argument_list, + ACTIONS(6706), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5665), 10, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + ACTIONS(5663), 19, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -314533,15 +417187,229 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_GT2, + [131158] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5212), 1, + anon_sym_LPAREN2, + ACTIONS(5982), 1, + anon_sym_LBRACK, + ACTIONS(5986), 1, + anon_sym_DOT, + ACTIONS(5988), 1, + anon_sym_DASH_GT, + ACTIONS(6678), 1, + anon_sym_SLASH, + ACTIONS(6694), 1, + anon_sym_LT_LT, + ACTIONS(6696), 1, + anon_sym_GT_GT, + ACTIONS(6700), 1, + anon_sym_LT_EQ_GT, + STATE(3506), 1, + sym_argument_list, + ACTIONS(6674), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6676), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6706), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5669), 6, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5667), 15, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_GT2, + [131226] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5212), 1, + anon_sym_LPAREN2, + ACTIONS(5982), 1, + anon_sym_LBRACK, + ACTIONS(5986), 1, + anon_sym_DOT, + ACTIONS(5988), 1, + anon_sym_DASH_GT, + ACTIONS(6678), 1, + anon_sym_SLASH, + ACTIONS(6684), 1, + anon_sym_PIPE, + ACTIONS(6688), 1, + anon_sym_AMP, + ACTIONS(6694), 1, anon_sym_LT_LT, + ACTIONS(6696), 1, anon_sym_GT_GT, + ACTIONS(6700), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6702), 1, + anon_sym_bitor, + ACTIONS(6704), 1, + anon_sym_bitand, + STATE(3506), 1, + sym_argument_list, + ACTIONS(6674), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6676), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6680), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6682), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6686), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6706), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6690), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5675), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_GT2, + ACTIONS(6692), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [131310] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4978), 1, + anon_sym_LPAREN2, + ACTIONS(5493), 1, + anon_sym_LBRACK, + ACTIONS(5497), 1, + anon_sym_DOT, + ACTIONS(5499), 1, + anon_sym_DASH_GT, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, + anon_sym_SLASH, + ACTIONS(6617), 1, + anon_sym_PIPE, + ACTIONS(6621), 1, + anon_sym_AMP, + ACTIONS(6627), 1, + anon_sym_GT_EQ, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6635), 1, + anon_sym_bitor, + ACTIONS(6637), 1, + anon_sym_bitand, + ACTIONS(6823), 1, + anon_sym_COMMA, + ACTIONS(6873), 1, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, + STATE(2996), 1, + sym_argument_list, + ACTIONS(6585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6607), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6609), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6613), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6615), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6619), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6629), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6623), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6625), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [131400] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5212), 1, + anon_sym_LPAREN2, + ACTIONS(5982), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, + ACTIONS(5986), 1, + anon_sym_DOT, + ACTIONS(5988), 1, + anon_sym_DASH_GT, + STATE(3506), 1, + sym_argument_list, + ACTIONS(5681), 10, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + ACTIONS(5679), 21, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -314552,378 +417420,985 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + anon_sym_GT2, + [131454] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4978), 1, + anon_sym_LPAREN2, + ACTIONS(5493), 1, + anon_sym_LBRACK, + ACTIONS(5497), 1, + anon_sym_DOT, + ACTIONS(5499), 1, anon_sym_DASH_GT, - [98821] = 23, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, + anon_sym_SLASH, + ACTIONS(6617), 1, + anon_sym_PIPE, + ACTIONS(6621), 1, + anon_sym_AMP, + ACTIONS(6627), 1, + anon_sym_GT_EQ, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6635), 1, + anon_sym_bitor, + ACTIONS(6637), 1, + anon_sym_bitand, + ACTIONS(6823), 1, + anon_sym_COMMA, + ACTIONS(6875), 1, + anon_sym_SEMI, + STATE(2996), 1, + sym_argument_list, + ACTIONS(6585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6607), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6609), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6613), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6615), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6619), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6629), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6623), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6625), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [131544] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(107), 1, - sym_auto, - ACTIONS(109), 1, - anon_sym_decltype, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(2932), 1, - sym_primitive_type, - ACTIONS(3906), 1, - sym_identifier, - ACTIONS(3916), 1, - anon_sym_COLON_COLON, - ACTIONS(5540), 1, - anon_sym_enum, - ACTIONS(5542), 1, - anon_sym_class, - ACTIONS(5544), 1, - anon_sym_struct, - ACTIONS(5546), 1, - anon_sym_union, - ACTIONS(5548), 1, - anon_sym_typename, - STATE(3259), 1, - sym_qualified_type_identifier, - STATE(3272), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3279), 1, - sym_decltype_auto, - STATE(3458), 1, - sym__type_specifier, - STATE(5034), 1, - sym__scope_resolution, - STATE(6159), 1, - sym_dependent_type_identifier, - STATE(3198), 2, - sym_decltype, - sym_template_type, - STATE(4098), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(2930), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3232), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(59), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [98909] = 14, + ACTIONS(4978), 1, + anon_sym_LPAREN2, + ACTIONS(5493), 1, + anon_sym_LBRACK, + ACTIONS(5497), 1, + anon_sym_DOT, + ACTIONS(5499), 1, + anon_sym_DASH_GT, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, + anon_sym_SLASH, + ACTIONS(6617), 1, + anon_sym_PIPE, + ACTIONS(6621), 1, + anon_sym_AMP, + ACTIONS(6627), 1, + anon_sym_GT_EQ, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6635), 1, + anon_sym_bitor, + ACTIONS(6637), 1, + anon_sym_bitand, + ACTIONS(6823), 1, + anon_sym_COMMA, + ACTIONS(6877), 1, + anon_sym_SEMI, + STATE(2996), 1, + sym_argument_list, + ACTIONS(6585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6607), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6609), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6613), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6615), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6619), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6629), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6623), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6625), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [131634] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4210), 1, - anon_sym___attribute__, - ACTIONS(4214), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(4216), 1, - anon_sym___declspec, - ACTIONS(4220), 1, - anon_sym_virtual, - ACTIONS(5423), 1, - sym_auto, - ACTIONS(5425), 1, - anon_sym_decltype, - ACTIONS(5679), 1, + ACTIONS(4476), 1, + anon_sym_COLON_COLON, + ACTIONS(4507), 1, + anon_sym_LBRACK, + ACTIONS(4510), 1, anon_sym_SEMI, - STATE(3229), 1, - sym_decltype_auto, - ACTIONS(4208), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - ACTIONS(5431), 5, + ACTIONS(6151), 1, + anon_sym_LT, + STATE(4033), 1, + sym_template_argument_list, + ACTIONS(4500), 2, anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + ACTIONS(4503), 3, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - ACTIONS(5429), 6, + ACTIONS(4498), 26, anon_sym_AMP, - anon_sym___based, - anon_sym_LBRACK, - sym_identifier, - anon_sym_template, - anon_sym_operator, - ACTIONS(4218), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(3194), 8, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual, - aux_sym__declaration_specifiers_repeat1, - [98979] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(107), 1, - sym_auto, - ACTIONS(109), 1, - anon_sym_decltype, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(2922), 1, - sym_identifier, - ACTIONS(2928), 1, - anon_sym_COLON_COLON, - ACTIONS(2932), 1, - sym_primitive_type, - ACTIONS(5610), 1, - anon_sym_enum, - ACTIONS(5612), 1, - anon_sym_class, - ACTIONS(5614), 1, - anon_sym_struct, - ACTIONS(5616), 1, - anon_sym_union, - ACTIONS(5618), 1, - anon_sym_typename, - STATE(3171), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3259), 1, - sym_qualified_type_identifier, - STATE(3279), 1, - sym_decltype_auto, - STATE(4695), 1, - sym__type_specifier, - STATE(5006), 1, - sym__scope_resolution, - STATE(6159), 1, - sym_dependent_type_identifier, - STATE(3198), 2, - sym_decltype, - sym_template_type, - STATE(4098), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(61), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3232), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(59), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [99067] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5512), 1, - anon_sym_COLON_COLON, - ACTIONS(5684), 1, + anon_sym_extern, anon_sym___attribute__, - ACTIONS(5687), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5690), 1, anon_sym___declspec, - ACTIONS(5696), 1, - anon_sym_virtual, - ACTIONS(5681), 5, - anon_sym_extern, + anon_sym___based, anon_sym_static, anon_sym_register, anon_sym_inline, anon_sym_thread_local, - ACTIONS(5693), 8, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - STATE(3327), 8, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(5510), 14, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_typename, + anon_sym_virtual, anon_sym_template, - [99129] = 4, + anon_sym_operator, + [131690] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4978), 1, + anon_sym_LPAREN2, + ACTIONS(5493), 1, + anon_sym_LBRACK, + ACTIONS(5497), 1, + anon_sym_DOT, + ACTIONS(5499), 1, + anon_sym_DASH_GT, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, + anon_sym_SLASH, + ACTIONS(6617), 1, + anon_sym_PIPE, + ACTIONS(6621), 1, + anon_sym_AMP, + ACTIONS(6627), 1, + anon_sym_GT_EQ, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6635), 1, + anon_sym_bitor, + ACTIONS(6637), 1, + anon_sym_bitand, + ACTIONS(6823), 1, + anon_sym_COMMA, + ACTIONS(6879), 1, + anon_sym_SEMI, + STATE(2996), 1, + sym_argument_list, + ACTIONS(6585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6607), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6609), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6613), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6615), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6619), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6629), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6623), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6625), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [131780] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4978), 1, + anon_sym_LPAREN2, + ACTIONS(5493), 1, + anon_sym_LBRACK, + ACTIONS(5497), 1, + anon_sym_DOT, + ACTIONS(5499), 1, + anon_sym_DASH_GT, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, + anon_sym_SLASH, + ACTIONS(6617), 1, + anon_sym_PIPE, + ACTIONS(6621), 1, + anon_sym_AMP, + ACTIONS(6627), 1, + anon_sym_GT_EQ, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6635), 1, + anon_sym_bitor, + ACTIONS(6637), 1, + anon_sym_bitand, + ACTIONS(6823), 1, + anon_sym_COMMA, + ACTIONS(6881), 1, + anon_sym_RPAREN, + STATE(2996), 1, + sym_argument_list, + ACTIONS(6585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6607), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6609), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6613), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6615), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6619), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6629), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6623), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6625), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [131870] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4978), 1, + anon_sym_LPAREN2, + ACTIONS(5493), 1, + anon_sym_LBRACK, + ACTIONS(5497), 1, + anon_sym_DOT, + ACTIONS(5499), 1, + anon_sym_DASH_GT, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, + anon_sym_SLASH, + ACTIONS(6617), 1, + anon_sym_PIPE, + ACTIONS(6621), 1, + anon_sym_AMP, + ACTIONS(6627), 1, + anon_sym_GT_EQ, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6635), 1, + anon_sym_bitor, + ACTIONS(6637), 1, + anon_sym_bitand, + ACTIONS(6883), 1, + anon_sym_COMMA, + ACTIONS(6885), 1, + anon_sym_RPAREN, + STATE(2996), 1, + sym_argument_list, + ACTIONS(6585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6607), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6609), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6613), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6615), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6619), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6629), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6623), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6625), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [131960] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4978), 1, + anon_sym_LPAREN2, + ACTIONS(5493), 1, + anon_sym_LBRACK, + ACTIONS(5497), 1, + anon_sym_DOT, + ACTIONS(5499), 1, + anon_sym_DASH_GT, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, + anon_sym_SLASH, + ACTIONS(6617), 1, + anon_sym_PIPE, + ACTIONS(6621), 1, + anon_sym_AMP, + ACTIONS(6627), 1, + anon_sym_GT_EQ, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6635), 1, + anon_sym_bitor, + ACTIONS(6637), 1, + anon_sym_bitand, + ACTIONS(6823), 1, + anon_sym_COMMA, + ACTIONS(6887), 1, + anon_sym_RPAREN, + STATE(2996), 1, + sym_argument_list, + ACTIONS(6585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6607), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6609), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6613), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6615), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6619), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6629), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6623), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6625), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [132050] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4945), 1, - sym_literal_suffix, - ACTIONS(3803), 15, + ACTIONS(4978), 1, + anon_sym_LPAREN2, + ACTIONS(5493), 1, + anon_sym_LBRACK, + ACTIONS(5497), 1, + anon_sym_DOT, + ACTIONS(5499), 1, + anon_sym_DASH_GT, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, + anon_sym_SLASH, + ACTIONS(6617), 1, + anon_sym_PIPE, + ACTIONS(6621), 1, + anon_sym_AMP, + ACTIONS(6627), 1, + anon_sym_GT_EQ, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6635), 1, + anon_sym_bitor, + ACTIONS(6637), 1, + anon_sym_bitand, + ACTIONS(6823), 1, + anon_sym_COMMA, + ACTIONS(6889), 1, + anon_sym_RPAREN, + STATE(2996), 1, + sym_argument_list, + ACTIONS(6585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6607), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(6609), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6613), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6615), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6619), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6629), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6623), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6625), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [132140] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4978), 1, + anon_sym_LPAREN2, + ACTIONS(5493), 1, + anon_sym_LBRACK, + ACTIONS(5497), 1, + anon_sym_DOT, + ACTIONS(5499), 1, + anon_sym_DASH_GT, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, anon_sym_SLASH, + ACTIONS(6617), 1, anon_sym_PIPE, + ACTIONS(6621), 1, anon_sym_AMP, + ACTIONS(6627), 1, + anon_sym_GT_EQ, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6635), 1, + anon_sym_bitor, + ACTIONS(6637), 1, + anon_sym_bitand, + ACTIONS(6823), 1, + anon_sym_COMMA, + ACTIONS(6891), 1, + anon_sym_RPAREN, + STATE(2996), 1, + sym_argument_list, + ACTIONS(6585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6607), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6609), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6613), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6615), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6619), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6629), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6623), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6625), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + [132230] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5212), 1, + anon_sym_LPAREN2, + ACTIONS(5982), 1, + anon_sym_LBRACK, + ACTIONS(5986), 1, + anon_sym_DOT, + ACTIONS(5988), 1, + anon_sym_DASH_GT, + ACTIONS(6678), 1, + anon_sym_SLASH, + ACTIONS(6684), 1, + anon_sym_PIPE, + ACTIONS(6688), 1, + anon_sym_AMP, + ACTIONS(6694), 1, + anon_sym_LT_LT, + ACTIONS(6696), 1, + anon_sym_GT_GT, + ACTIONS(6700), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6702), 1, + anon_sym_bitor, + ACTIONS(6704), 1, + anon_sym_bitand, + STATE(3506), 1, + sym_argument_list, + ACTIONS(6674), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6676), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6680), 2, + anon_sym_PIPE_PIPE, anon_sym_or, + ACTIONS(6682), 2, + anon_sym_AMP_AMP, anon_sym_and, - anon_sym_bitor, + ACTIONS(6686), 2, + anon_sym_CARET, anon_sym_xor, + ACTIONS(6706), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6690), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5601), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_GT2, + ACTIONS(6692), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [132314] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5212), 1, + anon_sym_LPAREN2, + ACTIONS(5982), 1, + anon_sym_LBRACK, + ACTIONS(5986), 1, + anon_sym_DOT, + ACTIONS(5988), 1, + anon_sym_DASH_GT, + ACTIONS(6670), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6678), 1, + anon_sym_SLASH, + ACTIONS(6684), 1, + anon_sym_PIPE, + ACTIONS(6688), 1, + anon_sym_AMP, + ACTIONS(6694), 1, + anon_sym_LT_LT, + ACTIONS(6696), 1, + anon_sym_GT_GT, + ACTIONS(6700), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6702), 1, + anon_sym_bitor, + ACTIONS(6704), 1, anon_sym_bitand, + STATE(3506), 1, + sym_argument_list, + ACTIONS(6674), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6676), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6680), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6682), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6686), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6706), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5585), 3, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_GT2, + ACTIONS(6690), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_not_eq, + ACTIONS(6692), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [132400] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4978), 1, + anon_sym_LPAREN2, + ACTIONS(5493), 1, + anon_sym_LBRACK, + ACTIONS(5497), 1, anon_sym_DOT, - ACTIONS(3795), 24, + ACTIONS(5499), 1, + anon_sym_DASH_GT, + ACTIONS(6605), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, + anon_sym_SLASH, + ACTIONS(6617), 1, + anon_sym_PIPE, + ACTIONS(6621), 1, + anon_sym_AMP, + ACTIONS(6627), 1, + anon_sym_GT_EQ, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6635), 1, + anon_sym_bitor, + ACTIONS(6637), 1, + anon_sym_bitand, + ACTIONS(6823), 1, anon_sym_COMMA, + ACTIONS(6893), 1, anon_sym_RPAREN, - anon_sym_LPAREN2, + STATE(2996), 1, + sym_argument_list, + ACTIONS(6585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6607), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6609), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(6613), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6615), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6619), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(6629), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6623), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6625), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [132490] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4978), 1, + anon_sym_LPAREN2, + ACTIONS(5493), 1, + anon_sym_LBRACK, + ACTIONS(5497), 1, + anon_sym_DOT, + ACTIONS(5499), 1, + anon_sym_DASH_GT, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, + anon_sym_SLASH, + ACTIONS(6617), 1, + anon_sym_PIPE, + ACTIONS(6621), 1, + anon_sym_AMP, + ACTIONS(6627), 1, anon_sym_GT_EQ, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6635), 1, + anon_sym_bitor, + ACTIONS(6637), 1, + anon_sym_bitand, + ACTIONS(6823), 1, + anon_sym_COMMA, + ACTIONS(6895), 1, + anon_sym_RPAREN, + STATE(2996), 1, + sym_argument_list, + ACTIONS(6585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6607), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6609), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6613), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6615), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6619), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6629), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACE, + ACTIONS(6623), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6625), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [132580] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4978), 1, + anon_sym_LPAREN2, + ACTIONS(5493), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, + ACTIONS(5497), 1, + anon_sym_DOT, + ACTIONS(5499), 1, + anon_sym_DASH_GT, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, + anon_sym_SLASH, + ACTIONS(6617), 1, + anon_sym_PIPE, + ACTIONS(6621), 1, + anon_sym_AMP, + ACTIONS(6627), 1, + anon_sym_GT_EQ, + ACTIONS(6631), 1, anon_sym_QMARK, + ACTIONS(6633), 1, anon_sym_LT_EQ_GT, + ACTIONS(6635), 1, + anon_sym_bitor, + ACTIONS(6637), 1, + anon_sym_bitand, + ACTIONS(6823), 1, + anon_sym_COMMA, + ACTIONS(6897), 1, + anon_sym_SEMI, + STATE(2996), 1, + sym_argument_list, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [99179] = 8, + ACTIONS(6607), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6609), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6613), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6615), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6619), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6629), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6623), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6625), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [132670] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(3814), 1, - anon_sym_COLON_COLON, - ACTIONS(5383), 1, - anon_sym_LT, - ACTIONS(5701), 1, - anon_sym_EQ, - STATE(3135), 1, - sym_template_argument_list, - ACTIONS(5699), 2, - anon_sym_COMMA, - anon_sym_GT2, - ACTIONS(3819), 7, - anon_sym_DOT_DOT_DOT, + ACTIONS(4978), 1, anon_sym_LPAREN2, - anon_sym_TILDE, + ACTIONS(5493), 1, + anon_sym_LBRACK, + ACTIONS(5497), 1, + anon_sym_DOT, + ACTIONS(5499), 1, + anon_sym_DASH_GT, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, + anon_sym_SLASH, + ACTIONS(6617), 1, + anon_sym_PIPE, + ACTIONS(6621), 1, + anon_sym_AMP, + ACTIONS(6627), 1, + anon_sym_GT_EQ, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6635), 1, + anon_sym_bitor, + ACTIONS(6637), 1, + anon_sym_bitand, + ACTIONS(6823), 1, + anon_sym_COMMA, + ACTIONS(6899), 1, + anon_sym_SEMI, + STATE(2996), 1, + sym_argument_list, + ACTIONS(6585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6607), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6609), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6613), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6615), 2, anon_sym_AMP_AMP, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(4196), 27, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - [99237] = 6, + anon_sym_and, + ACTIONS(6619), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6629), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6623), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6625), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [132760] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1489), 1, - anon_sym_LBRACE, - ACTIONS(5415), 1, + ACTIONS(5212), 1, anon_sym_LPAREN2, - STATE(3339), 2, + ACTIONS(5982), 1, + anon_sym_LBRACK, + ACTIONS(5986), 1, + anon_sym_DOT, + ACTIONS(5988), 1, + anon_sym_DASH_GT, + ACTIONS(6678), 1, + anon_sym_SLASH, + STATE(3506), 1, sym_argument_list, - sym_initializer_list, - ACTIONS(4507), 9, + ACTIONS(6676), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6706), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5489), 9, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_DOT, - ACTIONS(4505), 27, + anon_sym_GT_GT, + ACTIONS(5487), 17, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -314932,84 +418407,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [99291] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(107), 1, - sym_auto, - ACTIONS(109), 1, - anon_sym_decltype, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(2922), 1, - sym_identifier, - ACTIONS(2928), 1, - anon_sym_COLON_COLON, - ACTIONS(2932), 1, - sym_primitive_type, - ACTIONS(5610), 1, - anon_sym_enum, - ACTIONS(5612), 1, - anon_sym_class, - ACTIONS(5614), 1, - anon_sym_struct, - ACTIONS(5616), 1, - anon_sym_union, - ACTIONS(5618), 1, - anon_sym_typename, - STATE(3171), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3259), 1, - sym_qualified_type_identifier, - STATE(3279), 1, - sym_decltype_auto, - STATE(4658), 1, - sym__type_specifier, - STATE(5006), 1, - sym__scope_resolution, - STATE(6159), 1, - sym_dependent_type_identifier, - STATE(3198), 2, - sym_decltype, - sym_template_type, - STATE(3286), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(61), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3232), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(59), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [99379] = 6, + anon_sym_GT2, + [132820] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3814), 1, - anon_sym_COLON_COLON, - ACTIONS(5443), 1, - anon_sym_LT, - STATE(2751), 1, - sym_template_argument_list, - ACTIONS(3793), 10, + ACTIONS(5212), 1, + anon_sym_LPAREN2, + ACTIONS(5982), 1, + anon_sym_LBRACK, + ACTIONS(5986), 1, + anon_sym_DOT, + ACTIONS(5988), 1, + anon_sym_DASH_GT, + STATE(3506), 1, + sym_argument_list, + ACTIONS(6706), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5489), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -315018,12 +418433,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_LT, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(3801), 27, + ACTIONS(5487), 19, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -315032,8 +418446,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_LT, - anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -315042,1109 +418454,1266 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, anon_sym_GT2, - [99433] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(107), 1, - sym_auto, - ACTIONS(109), 1, - anon_sym_decltype, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(2922), 1, - sym_identifier, - ACTIONS(2928), 1, - anon_sym_COLON_COLON, - ACTIONS(2932), 1, - sym_primitive_type, - ACTIONS(5610), 1, - anon_sym_enum, - ACTIONS(5612), 1, - anon_sym_class, - ACTIONS(5614), 1, - anon_sym_struct, - ACTIONS(5616), 1, - anon_sym_union, - ACTIONS(5618), 1, - anon_sym_typename, - STATE(3171), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3259), 1, - sym_qualified_type_identifier, - STATE(3279), 1, - sym_decltype_auto, - STATE(4707), 1, - sym__type_specifier, - STATE(5006), 1, - sym__scope_resolution, - STATE(6159), 1, - sym_dependent_type_identifier, - STATE(3198), 2, - sym_decltype, - sym_template_type, - STATE(4098), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(61), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3232), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(59), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [99521] = 14, + [132876] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4210), 1, - anon_sym___attribute__, - ACTIONS(4214), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(4216), 1, - anon_sym___declspec, - ACTIONS(4220), 1, - anon_sym_virtual, - ACTIONS(5423), 1, - sym_auto, - ACTIONS(5425), 1, - anon_sym_decltype, - ACTIONS(5703), 1, - anon_sym_SEMI, - STATE(3229), 1, - sym_decltype_auto, - ACTIONS(4208), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - ACTIONS(5431), 5, + ACTIONS(4978), 1, anon_sym_LPAREN2, - anon_sym_TILDE, + ACTIONS(5493), 1, + anon_sym_LBRACK, + ACTIONS(5497), 1, + anon_sym_DOT, + ACTIONS(5499), 1, + anon_sym_DASH_GT, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, + anon_sym_SLASH, + ACTIONS(6617), 1, + anon_sym_PIPE, + ACTIONS(6621), 1, + anon_sym_AMP, + ACTIONS(6627), 1, + anon_sym_GT_EQ, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6635), 1, + anon_sym_bitor, + ACTIONS(6637), 1, + anon_sym_bitand, + ACTIONS(6823), 1, + anon_sym_COMMA, + ACTIONS(6901), 1, + anon_sym_RPAREN, + STATE(2996), 1, + sym_argument_list, + ACTIONS(6585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6607), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6609), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6613), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6615), 2, anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - ACTIONS(5429), 6, - anon_sym_AMP, - anon_sym___based, - anon_sym_LBRACK, - sym_identifier, - anon_sym_template, - anon_sym_operator, - ACTIONS(4218), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(3194), 8, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual, - aux_sym__declaration_specifiers_repeat1, - [99591] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(107), 1, - sym_auto, - ACTIONS(109), 1, - anon_sym_decltype, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(2922), 1, - sym_identifier, - ACTIONS(2928), 1, - anon_sym_COLON_COLON, - ACTIONS(2932), 1, - sym_primitive_type, - ACTIONS(5610), 1, - anon_sym_enum, - ACTIONS(5612), 1, - anon_sym_class, - ACTIONS(5614), 1, - anon_sym_struct, - ACTIONS(5616), 1, - anon_sym_union, - ACTIONS(5618), 1, - anon_sym_typename, - STATE(3171), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3259), 1, - sym_qualified_type_identifier, - STATE(3279), 1, - sym_decltype_auto, - STATE(4647), 1, - sym__type_specifier, - STATE(5006), 1, - sym__scope_resolution, - STATE(6159), 1, - sym_dependent_type_identifier, - STATE(3198), 2, - sym_decltype, - sym_template_type, - STATE(3326), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(61), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3232), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(59), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [99679] = 23, + anon_sym_and, + ACTIONS(6619), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6629), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6623), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6625), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [132966] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1521), 1, - anon_sym_operator, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(1683), 1, - anon_sym_TILDE, - ACTIONS(3226), 1, + ACTIONS(5212), 1, anon_sym_LPAREN2, - ACTIONS(4302), 1, - sym_identifier, - ACTIONS(4306), 1, + ACTIONS(5982), 1, + anon_sym_LBRACK, + ACTIONS(5986), 1, + anon_sym_DOT, + ACTIONS(5988), 1, + anon_sym_DASH_GT, + ACTIONS(6678), 1, + anon_sym_SLASH, + ACTIONS(6684), 1, + anon_sym_PIPE, + ACTIONS(6688), 1, + anon_sym_AMP, + ACTIONS(6694), 1, + anon_sym_LT_LT, + ACTIONS(6696), 1, + anon_sym_GT_GT, + ACTIONS(6700), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6702), 1, + anon_sym_bitor, + ACTIONS(6704), 1, + anon_sym_bitand, + STATE(3506), 1, + sym_argument_list, + ACTIONS(6674), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6676), 2, anon_sym_STAR, - ACTIONS(4308), 1, + anon_sym_PERCENT, + ACTIONS(6682), 2, anon_sym_AMP_AMP, - ACTIONS(4310), 1, - anon_sym_AMP, - ACTIONS(4312), 1, - anon_sym_COLON_COLON, - ACTIONS(4314), 1, + anon_sym_and, + ACTIONS(6686), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6706), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6690), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6692), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5487), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_QMARK, + anon_sym_or, + anon_sym_GT2, + [133048] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4978), 1, + anon_sym_LPAREN2, + ACTIONS(5493), 1, anon_sym_LBRACK, - STATE(3482), 1, - sym_parameter_list, - STATE(4598), 1, - sym__scope_resolution, - STATE(4650), 1, - sym__declarator, - STATE(4765), 1, - sym__function_declarator_seq, - STATE(4922), 1, - sym__abstract_declarator, - STATE(6066), 1, - sym_ms_based_modifier, - ACTIONS(5550), 2, + ACTIONS(5497), 1, + anon_sym_DOT, + ACTIONS(5499), 1, + anon_sym_DASH_GT, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, + anon_sym_SLASH, + ACTIONS(6617), 1, + anon_sym_PIPE, + ACTIONS(6621), 1, + anon_sym_AMP, + ACTIONS(6627), 1, + anon_sym_GT_EQ, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6635), 1, + anon_sym_bitor, + ACTIONS(6637), 1, + anon_sym_bitand, + ACTIONS(6823), 1, anon_sym_COMMA, + ACTIONS(6903), 1, anon_sym_RPAREN, - STATE(6159), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(4764), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - STATE(4918), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [99766] = 13, + STATE(2996), 1, + sym_argument_list, + ACTIONS(6585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6607), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6609), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6613), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6615), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6619), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6629), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6623), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6625), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [133138] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(5707), 1, - anon_sym___attribute__, - ACTIONS(5709), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5711), 1, - anon_sym___declspec, - ACTIONS(5715), 1, - sym_auto, - ACTIONS(5717), 1, - anon_sym_decltype, - ACTIONS(5719), 1, - anon_sym_virtual, - STATE(3606), 1, - sym_decltype_auto, - ACTIONS(5429), 4, - anon_sym_AMP, - anon_sym___based, - sym_identifier, - anon_sym_operator, - ACTIONS(5705), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - ACTIONS(5431), 7, + ACTIONS(5212), 1, anon_sym_LPAREN2, + ACTIONS(5982), 1, + anon_sym_LBRACK, + ACTIONS(5986), 1, + anon_sym_DOT, + ACTIONS(5988), 1, + anon_sym_DASH_GT, + ACTIONS(6678), 1, + anon_sym_SLASH, + ACTIONS(6684), 1, + anon_sym_PIPE, + ACTIONS(6688), 1, + anon_sym_AMP, + ACTIONS(6694), 1, + anon_sym_LT_LT, + ACTIONS(6696), 1, + anon_sym_GT_GT, + ACTIONS(6700), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6702), 1, + anon_sym_bitor, + ACTIONS(6704), 1, + anon_sym_bitand, + STATE(3506), 1, + sym_argument_list, + ACTIONS(6674), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6676), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6686), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6706), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6690), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6692), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5487), 8, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(5713), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(3650), 8, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual, - aux_sym__declaration_specifiers_repeat1, - [99833] = 8, + anon_sym_QMARK, + anon_sym_or, + anon_sym_and, + anon_sym_GT2, + [133218] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(5212), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(5489), 1, + anon_sym_PIPE, + ACTIONS(5982), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, + ACTIONS(5986), 1, anon_sym_DOT, - ACTIONS(4816), 1, + ACTIONS(5988), 1, anon_sym_DASH_GT, - STATE(2475), 1, + ACTIONS(6678), 1, + anon_sym_SLASH, + ACTIONS(6688), 1, + anon_sym_AMP, + ACTIONS(6694), 1, + anon_sym_LT_LT, + ACTIONS(6696), 1, + anon_sym_GT_GT, + ACTIONS(6700), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6704), 1, + anon_sym_bitand, + STATE(3506), 1, sym_argument_list, - ACTIONS(4985), 8, + ACTIONS(6674), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(6676), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6686), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6706), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6690), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6692), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5487), 9, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_QMARK, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_GT2, + [133296] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4978), 1, + anon_sym_LPAREN2, + ACTIONS(5493), 1, + anon_sym_LBRACK, + ACTIONS(5497), 1, + anon_sym_DOT, + ACTIONS(5499), 1, + anon_sym_DASH_GT, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, anon_sym_SLASH, + ACTIONS(6617), 1, anon_sym_PIPE, + ACTIONS(6621), 1, anon_sym_AMP, + ACTIONS(6627), 1, + anon_sym_GT_EQ, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6635), 1, + anon_sym_bitor, + ACTIONS(6637), 1, + anon_sym_bitand, + ACTIONS(6823), 1, + anon_sym_COMMA, + ACTIONS(6905), 1, + anon_sym_SEMI, + STATE(2996), 1, + sym_argument_list, + ACTIONS(6585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6607), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6609), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6613), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6615), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6619), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6629), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6623), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6625), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(4983), 26, + [133386] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4978), 1, + anon_sym_LPAREN2, + ACTIONS(5493), 1, + anon_sym_LBRACK, + ACTIONS(5497), 1, + anon_sym_DOT, + ACTIONS(5499), 1, + anon_sym_DASH_GT, + ACTIONS(6605), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, + anon_sym_SLASH, + ACTIONS(6617), 1, + anon_sym_PIPE, + ACTIONS(6621), 1, + anon_sym_AMP, + ACTIONS(6627), 1, + anon_sym_GT_EQ, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6635), 1, + anon_sym_bitor, + ACTIONS(6637), 1, + anon_sym_bitand, + ACTIONS(6823), 1, anon_sym_COMMA, + ACTIONS(6907), 1, anon_sym_RPAREN, + STATE(2996), 1, + sym_argument_list, + ACTIONS(6585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6607), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6609), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(6613), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6615), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6619), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(6629), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6623), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6625), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [133476] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4978), 1, + anon_sym_LPAREN2, + ACTIONS(5493), 1, + anon_sym_LBRACK, + ACTIONS(5497), 1, + anon_sym_DOT, + ACTIONS(5499), 1, + anon_sym_DASH_GT, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, + anon_sym_SLASH, + ACTIONS(6617), 1, + anon_sym_PIPE, + ACTIONS(6621), 1, + anon_sym_AMP, + ACTIONS(6627), 1, anon_sym_GT_EQ, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6635), 1, + anon_sym_bitor, + ACTIONS(6637), 1, + anon_sym_bitand, + ACTIONS(6823), 1, + anon_sym_COMMA, + ACTIONS(6909), 1, + anon_sym_RPAREN, + STATE(2996), 1, + sym_argument_list, + ACTIONS(6585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6607), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6609), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6613), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6615), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6619), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6629), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RBRACK, + ACTIONS(6623), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6625), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [133566] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4978), 1, + anon_sym_LPAREN2, + ACTIONS(5493), 1, + anon_sym_LBRACK, + ACTIONS(5497), 1, + anon_sym_DOT, + ACTIONS(5499), 1, + anon_sym_DASH_GT, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, + anon_sym_SLASH, + ACTIONS(6617), 1, + anon_sym_PIPE, + ACTIONS(6621), 1, + anon_sym_AMP, + ACTIONS(6627), 1, + anon_sym_GT_EQ, + ACTIONS(6631), 1, anon_sym_QMARK, + ACTIONS(6633), 1, anon_sym_LT_EQ_GT, + ACTIONS(6635), 1, + anon_sym_bitor, + ACTIONS(6637), 1, + anon_sym_bitand, + ACTIONS(6823), 1, + anon_sym_COMMA, + ACTIONS(6911), 1, + anon_sym_RPAREN, + STATE(2996), 1, + sym_argument_list, + ACTIONS(6585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6607), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6609), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6613), 2, + anon_sym_PIPE_PIPE, anon_sym_or, + ACTIONS(6615), 2, + anon_sym_AMP_AMP, anon_sym_and, - anon_sym_bitor, + ACTIONS(6619), 2, + anon_sym_CARET, anon_sym_xor, - anon_sym_bitand, + ACTIONS(6629), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6623), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_not_eq, + ACTIONS(6625), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [133656] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4978), 1, + anon_sym_LPAREN2, + ACTIONS(5493), 1, + anon_sym_LBRACK, + ACTIONS(5497), 1, + anon_sym_DOT, + ACTIONS(5499), 1, + anon_sym_DASH_GT, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, + anon_sym_SLASH, + ACTIONS(6617), 1, + anon_sym_PIPE, + ACTIONS(6621), 1, + anon_sym_AMP, + ACTIONS(6627), 1, + anon_sym_GT_EQ, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6635), 1, + anon_sym_bitor, + ACTIONS(6637), 1, + anon_sym_bitand, + ACTIONS(6823), 1, + anon_sym_COMMA, + ACTIONS(6913), 1, + anon_sym_RPAREN, + STATE(2996), 1, + sym_argument_list, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - [99890] = 3, + ACTIONS(6607), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6609), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6613), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6615), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6619), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6629), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6623), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6625), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [133746] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4933), 9, + ACTIONS(4978), 1, + anon_sym_LPAREN2, + ACTIONS(5493), 1, + anon_sym_LBRACK, + ACTIONS(5497), 1, + anon_sym_DOT, + ACTIONS(5499), 1, + anon_sym_DASH_GT, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, + anon_sym_SLASH, + ACTIONS(6617), 1, + anon_sym_PIPE, + ACTIONS(6621), 1, + anon_sym_AMP, + ACTIONS(6627), 1, + anon_sym_GT_EQ, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6635), 1, + anon_sym_bitor, + ACTIONS(6637), 1, + anon_sym_bitand, + ACTIONS(6823), 1, + anon_sym_COMMA, + ACTIONS(6915), 1, + anon_sym_RPAREN, + STATE(2996), 1, + sym_argument_list, + ACTIONS(6585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6607), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(6609), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6613), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6615), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6619), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6629), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6623), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6625), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [133836] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4978), 1, + anon_sym_LPAREN2, + ACTIONS(5493), 1, + anon_sym_LBRACK, + ACTIONS(5497), 1, + anon_sym_DOT, + ACTIONS(5499), 1, + anon_sym_DASH_GT, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, anon_sym_SLASH, + ACTIONS(6617), 1, anon_sym_PIPE, + ACTIONS(6621), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(4931), 30, - anon_sym_DOT_DOT_DOT, + ACTIONS(6627), 1, + anon_sym_GT_EQ, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6635), 1, + anon_sym_bitor, + ACTIONS(6637), 1, + anon_sym_bitand, + ACTIONS(6823), 1, anon_sym_COMMA, + ACTIONS(6917), 1, anon_sym_RPAREN, - anon_sym_LPAREN2, + STATE(2996), 1, + sym_argument_list, + ACTIONS(6585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6607), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6609), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(6613), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6615), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6619), 2, anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_xor, + ACTIONS(6629), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, + ACTIONS(6623), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [99937] = 3, + ACTIONS(6625), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [133926] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(5566), 12, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(5212), 1, anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(5564), 27, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + ACTIONS(5489), 1, + anon_sym_PIPE, + ACTIONS(5982), 1, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - sym_identifier, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_explicit, - anon_sym_template, - anon_sym_operator, - [99984] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1489), 1, - anon_sym_LBRACE, - ACTIONS(5437), 1, - anon_sym_LPAREN2, - STATE(3347), 2, + ACTIONS(5986), 1, + anon_sym_DOT, + ACTIONS(5988), 1, + anon_sym_DASH_GT, + ACTIONS(6678), 1, + anon_sym_SLASH, + ACTIONS(6688), 1, + anon_sym_AMP, + ACTIONS(6694), 1, + anon_sym_LT_LT, + ACTIONS(6696), 1, + anon_sym_GT_GT, + ACTIONS(6700), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6704), 1, + anon_sym_bitand, + STATE(3506), 1, sym_argument_list, - sym_initializer_list, - ACTIONS(4519), 9, + ACTIONS(6674), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(6676), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6706), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6690), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6692), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_DOT, - ACTIONS(4517), 26, + ACTIONS(5487), 11, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, - anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [100037] = 20, + anon_sym_GT2, + [134002] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1521), 1, - anon_sym_operator, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(1681), 1, + ACTIONS(2871), 1, + anon_sym_const, + ACTIONS(4572), 1, anon_sym_LPAREN2, - ACTIONS(1683), 1, - anon_sym_TILDE, - ACTIONS(4302), 1, - sym_identifier, - ACTIONS(4312), 1, - anon_sym_COLON_COLON, - ACTIONS(5353), 1, - anon_sym_LBRACK, - ACTIONS(5371), 1, + ACTIONS(4574), 1, anon_sym_STAR, - ACTIONS(5373), 1, + ACTIONS(4576), 1, anon_sym_AMP_AMP, - ACTIONS(5375), 1, + ACTIONS(4578), 1, anon_sym_AMP, - STATE(4598), 1, - sym__scope_resolution, - STATE(4685), 1, - sym__declarator, - STATE(6066), 1, - sym_ms_based_modifier, - STATE(4104), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(6159), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(2724), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(4918), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [100118] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(29), 1, - anon_sym_AMP_AMP, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1521), 1, - anon_sym_operator, - ACTIONS(1555), 1, + ACTIONS(5145), 1, + sym_auto, + ACTIONS(5147), 1, anon_sym_decltype, - ACTIONS(1681), 1, - anon_sym_LPAREN2, - ACTIONS(1683), 1, - anon_sym_TILDE, - ACTIONS(1685), 1, - anon_sym_STAR, - ACTIONS(1687), 1, - anon_sym_AMP, - ACTIONS(4206), 1, - sym_identifier, - ACTIONS(4377), 1, - anon_sym_COLON_COLON, - ACTIONS(5353), 1, + ACTIONS(6919), 1, anon_sym_LBRACK, - STATE(4605), 1, - sym__scope_resolution, - STATE(4892), 1, - sym__declarator, - STATE(6104), 1, - sym_ms_based_modifier, - STATE(4104), 2, + STATE(2731), 1, + sym_decltype_auto, + STATE(3900), 1, + sym_parameter_list, + STATE(5457), 1, + sym__function_declarator_seq, + STATE(5635), 1, + sym__abstract_declarator, + STATE(4528), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - STATE(6159), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(2724), 8, - anon_sym_const, + STATE(5452), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6540), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(6921), 10, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - STATE(4918), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [100199] = 6, + [134074] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1489), 1, - anon_sym_LBRACE, - ACTIONS(5437), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - STATE(3358), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(4411), 9, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(5493), 1, + anon_sym_LBRACK, + ACTIONS(5497), 1, + anon_sym_DOT, + ACTIONS(5499), 1, + anon_sym_DASH_GT, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, anon_sym_SLASH, + ACTIONS(6617), 1, anon_sym_PIPE, + ACTIONS(6621), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(4409), 26, - anon_sym_DOT_DOT_DOT, + ACTIONS(6627), 1, + anon_sym_GT_EQ, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6635), 1, + anon_sym_bitor, + ACTIONS(6637), 1, + anon_sym_bitand, + ACTIONS(6823), 1, anon_sym_COMMA, + ACTIONS(6923), 1, + anon_sym_SEMI, + STATE(2996), 1, + sym_argument_list, + ACTIONS(6585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6607), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6609), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(6613), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6615), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6619), 2, anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_xor, + ACTIONS(6629), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(6623), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6625), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [134164] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4978), 1, + anon_sym_LPAREN2, + ACTIONS(5493), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, + ACTIONS(5497), 1, + anon_sym_DOT, + ACTIONS(5499), 1, + anon_sym_DASH_GT, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, + anon_sym_SLASH, + ACTIONS(6617), 1, + anon_sym_PIPE, + ACTIONS(6621), 1, + anon_sym_AMP, + ACTIONS(6627), 1, + anon_sym_GT_EQ, + ACTIONS(6631), 1, anon_sym_QMARK, + ACTIONS(6633), 1, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, + ACTIONS(6635), 1, anon_sym_bitor, - anon_sym_xor, + ACTIONS(6637), 1, anon_sym_bitand, - anon_sym_not_eq, + ACTIONS(6823), 1, + anon_sym_COMMA, + ACTIONS(6925), 1, + anon_sym_RPAREN, + STATE(2996), 1, + sym_argument_list, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [100252] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4133), 1, - anon_sym_COLON, - ACTIONS(5721), 1, - anon_sym_LBRACE, - STATE(3630), 1, - sym_field_declaration_list, - STATE(5230), 1, - sym_virtual_specifier, - STATE(5832), 1, - sym_base_class_clause, - ACTIONS(5449), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(4158), 7, - anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(6607), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6609), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6613), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6615), 2, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - ACTIONS(4160), 25, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [100311] = 20, + anon_sym_and, + ACTIONS(6619), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6629), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6623), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6625), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [134254] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1521), 1, - anon_sym_operator, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(1681), 1, + ACTIONS(5212), 1, anon_sym_LPAREN2, - ACTIONS(1683), 1, - anon_sym_TILDE, - ACTIONS(5353), 1, + ACTIONS(5982), 1, anon_sym_LBRACK, - ACTIONS(5355), 1, - sym_identifier, - ACTIONS(5357), 1, - anon_sym_STAR, - ACTIONS(5359), 1, - anon_sym_AMP_AMP, - ACTIONS(5361), 1, - anon_sym_AMP, - ACTIONS(5363), 1, - anon_sym_COLON_COLON, - STATE(4639), 1, - sym__scope_resolution, - STATE(4937), 1, - sym__declarator, - STATE(6010), 1, - sym_ms_based_modifier, - STATE(4104), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(6159), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(2724), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(4918), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [100392] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4887), 9, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(5986), 1, + anon_sym_DOT, + ACTIONS(5988), 1, + anon_sym_DASH_GT, + ACTIONS(6678), 1, anon_sym_SLASH, + ACTIONS(6694), 1, + anon_sym_LT_LT, + ACTIONS(6696), 1, + anon_sym_GT_GT, + ACTIONS(6700), 1, + anon_sym_LT_EQ_GT, + STATE(3506), 1, + sym_argument_list, + ACTIONS(5489), 2, anon_sym_PIPE, anon_sym_AMP, + ACTIONS(6674), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6676), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6706), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6690), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6692), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_DOT, - ACTIONS(4885), 30, + ACTIONS(5487), 12, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, - anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [100439] = 9, + anon_sym_GT2, + [134326] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, + ACTIONS(5497), 1, anon_sym_DOT, - ACTIONS(4816), 1, + ACTIONS(5499), 1, anon_sym_DASH_GT, - STATE(2475), 1, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, + anon_sym_SLASH, + ACTIONS(6617), 1, + anon_sym_PIPE, + ACTIONS(6621), 1, + anon_sym_AMP, + ACTIONS(6627), 1, + anon_sym_GT_EQ, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6635), 1, + anon_sym_bitor, + ACTIONS(6637), 1, + anon_sym_bitand, + STATE(2996), 1, sym_argument_list, - ACTIONS(5723), 2, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(4883), 8, + ACTIONS(6607), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(4881), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(6609), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(6613), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6615), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6619), 2, anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_xor, + ACTIONS(6629), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(6809), 2, + anon_sym_COMMA, anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, + ACTIONS(6623), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_not_eq, - [100498] = 20, + ACTIONS(6625), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [134414] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1521), 1, - anon_sym_operator, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(1681), 1, + ACTIONS(5212), 1, anon_sym_LPAREN2, - ACTIONS(1683), 1, - anon_sym_TILDE, - ACTIONS(5353), 1, + ACTIONS(5982), 1, anon_sym_LBRACK, - ACTIONS(5355), 1, - sym_identifier, - ACTIONS(5357), 1, - anon_sym_STAR, - ACTIONS(5359), 1, - anon_sym_AMP_AMP, - ACTIONS(5361), 1, - anon_sym_AMP, - ACTIONS(5363), 1, - anon_sym_COLON_COLON, - STATE(4639), 1, - sym__scope_resolution, - STATE(4885), 1, - sym__declarator, - STATE(6010), 1, - sym_ms_based_modifier, - STATE(4104), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(6159), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(2724), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(4918), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [100579] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4000), 3, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(4002), 36, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_typename, - anon_sym_template, - [100626] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4949), 9, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(5986), 1, + anon_sym_DOT, + ACTIONS(5988), 1, + anon_sym_DASH_GT, + ACTIONS(6678), 1, anon_sym_SLASH, + ACTIONS(6694), 1, + anon_sym_LT_LT, + ACTIONS(6696), 1, + anon_sym_GT_GT, + ACTIONS(6700), 1, + anon_sym_LT_EQ_GT, + STATE(3506), 1, + sym_argument_list, + ACTIONS(5489), 2, anon_sym_PIPE, anon_sym_AMP, + ACTIONS(6674), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6676), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6706), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6692), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_DOT, - ACTIONS(4947), 30, + ACTIONS(5487), 15, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, - anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [100673] = 3, + anon_sym_GT2, + [134484] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(5001), 9, + ACTIONS(5212), 1, + anon_sym_LPAREN2, + ACTIONS(5982), 1, + anon_sym_LBRACK, + ACTIONS(5986), 1, + anon_sym_DOT, + ACTIONS(5988), 1, + anon_sym_DASH_GT, + ACTIONS(6678), 1, + anon_sym_SLASH, + ACTIONS(6694), 1, + anon_sym_LT_LT, + ACTIONS(6696), 1, + anon_sym_GT_GT, + ACTIONS(6700), 1, + anon_sym_LT_EQ_GT, + STATE(3506), 1, + sym_argument_list, + ACTIONS(6674), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, + ACTIONS(6676), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6706), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5489), 6, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_DOT, - ACTIONS(4999), 30, + ACTIONS(5487), 15, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, - anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [100720] = 9, + anon_sym_GT2, + [134552] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(5212), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(5982), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, + ACTIONS(5986), 1, anon_sym_DOT, - ACTIONS(4816), 1, + ACTIONS(5988), 1, anon_sym_DASH_GT, - STATE(2475), 1, + ACTIONS(6678), 1, + anon_sym_SLASH, + STATE(3506), 1, sym_argument_list, - ACTIONS(5723), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4989), 8, + ACTIONS(6674), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, + ACTIONS(6676), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6706), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5489), 7, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(4987), 24, + anon_sym_GT_GT, + ACTIONS(5487), 17, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -316153,164 +419722,205 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - [100779] = 4, + anon_sym_GT2, + [134614] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(5725), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(4822), 9, + ACTIONS(5212), 1, + anon_sym_LPAREN2, + ACTIONS(5982), 1, + anon_sym_LBRACK, + ACTIONS(5986), 1, + anon_sym_DOT, + ACTIONS(5988), 1, + anon_sym_DASH_GT, + ACTIONS(6678), 1, + anon_sym_SLASH, + ACTIONS(6694), 1, + anon_sym_LT_LT, + ACTIONS(6696), 1, + anon_sym_GT_GT, + STATE(3506), 1, + sym_argument_list, + ACTIONS(6674), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, + ACTIONS(6676), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6706), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5489), 6, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_DOT, - ACTIONS(4824), 28, + ACTIONS(5487), 16, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, + anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [100828] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4020), 3, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(4022), 36, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_typename, - anon_sym_template, - [100875] = 3, + anon_sym_GT2, + [134680] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4913), 9, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(4978), 1, + anon_sym_LPAREN2, + ACTIONS(5493), 1, + anon_sym_LBRACK, + ACTIONS(5497), 1, + anon_sym_DOT, + ACTIONS(5499), 1, + anon_sym_DASH_GT, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, anon_sym_SLASH, + ACTIONS(6617), 1, anon_sym_PIPE, + ACTIONS(6621), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(4911), 30, - anon_sym_DOT_DOT_DOT, + ACTIONS(6627), 1, + anon_sym_GT_EQ, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6635), 1, + anon_sym_bitor, + ACTIONS(6637), 1, + anon_sym_bitand, + ACTIONS(6823), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(6927), 1, + anon_sym_SEMI, + STATE(2996), 1, + sym_argument_list, + ACTIONS(6585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6607), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6609), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(6613), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6615), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6619), 2, anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_xor, + ACTIONS(6629), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACE, + ACTIONS(6623), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6625), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [134770] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4978), 1, + anon_sym_LPAREN2, + ACTIONS(5493), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, + ACTIONS(5497), 1, + anon_sym_DOT, + ACTIONS(5499), 1, + anon_sym_DASH_GT, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, + anon_sym_SLASH, + ACTIONS(6617), 1, + anon_sym_PIPE, + ACTIONS(6621), 1, + anon_sym_AMP, + ACTIONS(6627), 1, + anon_sym_GT_EQ, + ACTIONS(6631), 1, anon_sym_QMARK, + ACTIONS(6633), 1, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, + ACTIONS(6635), 1, anon_sym_bitor, - anon_sym_xor, + ACTIONS(6637), 1, anon_sym_bitand, - anon_sym_not_eq, + ACTIONS(6823), 1, + anon_sym_COMMA, + ACTIONS(6929), 1, + anon_sym_RPAREN, + STATE(2996), 1, + sym_argument_list, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [100922] = 9, + ACTIONS(6607), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6609), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6613), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6615), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6619), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6629), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6623), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6625), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [134860] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4133), 1, - anon_sym_COLON, - ACTIONS(5721), 1, - anon_sym_LBRACE, - STATE(3655), 1, - sym_field_declaration_list, - STATE(5205), 1, - sym_virtual_specifier, - STATE(5825), 1, - sym_base_class_clause, - ACTIONS(5449), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(4127), 7, - anon_sym_COMMA, + ACTIONS(4476), 1, + anon_sym_COLON_COLON, + ACTIONS(4481), 1, + anon_sym_SEMI, + ACTIONS(6151), 1, + anon_sym_LT, + STATE(3608), 1, + sym_template_argument_list, + ACTIONS(4463), 5, anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - ACTIONS(4129), 25, + ACTIONS(4455), 27, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, @@ -316322,38 +419932,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, sym_identifier, sym_auto, anon_sym_decltype, anon_sym_virtual, + anon_sym_template, anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [100981] = 3, + [134912] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4905), 9, + ACTIONS(5212), 1, + anon_sym_LPAREN2, + ACTIONS(5982), 1, + anon_sym_LBRACK, + ACTIONS(5986), 1, + anon_sym_DOT, + ACTIONS(5988), 1, + anon_sym_DASH_GT, + STATE(3506), 1, + sym_argument_list, + ACTIONS(6706), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5559), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_DOT, - ACTIONS(4903), 30, + anon_sym_GT_GT, + ACTIONS(5557), 19, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -316361,14 +419985,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -316377,398 +419994,642 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [101028] = 6, + anon_sym_GT2, + [134968] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1489), 1, - anon_sym_LBRACE, - ACTIONS(5437), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - STATE(3385), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(4375), 9, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(5493), 1, + anon_sym_LBRACK, + ACTIONS(5497), 1, + anon_sym_DOT, + ACTIONS(5499), 1, + anon_sym_DASH_GT, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, anon_sym_SLASH, + ACTIONS(6617), 1, anon_sym_PIPE, + ACTIONS(6621), 1, anon_sym_AMP, + ACTIONS(6627), 1, + anon_sym_GT_EQ, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6635), 1, + anon_sym_bitor, + ACTIONS(6637), 1, + anon_sym_bitand, + ACTIONS(6823), 1, + anon_sym_COMMA, + ACTIONS(6931), 1, + anon_sym_SEMI, + STATE(2996), 1, + sym_argument_list, + ACTIONS(6585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6607), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6609), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6613), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6615), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6619), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6629), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6623), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6625), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + [135058] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4978), 1, + anon_sym_LPAREN2, + ACTIONS(5493), 1, + anon_sym_LBRACK, + ACTIONS(5497), 1, anon_sym_DOT, - ACTIONS(4373), 26, + ACTIONS(5499), 1, + anon_sym_DASH_GT, + ACTIONS(6605), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, + anon_sym_SLASH, + ACTIONS(6617), 1, + anon_sym_PIPE, + ACTIONS(6621), 1, + anon_sym_AMP, + ACTIONS(6627), 1, + anon_sym_GT_EQ, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6635), 1, + anon_sym_bitor, + ACTIONS(6637), 1, + anon_sym_bitand, + ACTIONS(6662), 1, + anon_sym_SEMI, + ACTIONS(6823), 1, anon_sym_COMMA, + STATE(2996), 1, + sym_argument_list, + ACTIONS(6585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6607), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6609), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(6613), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6615), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6619), 2, anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_xor, + ACTIONS(6629), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(6623), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6625), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [135148] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4978), 1, + anon_sym_LPAREN2, + ACTIONS(5493), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, + ACTIONS(5497), 1, + anon_sym_DOT, + ACTIONS(5499), 1, + anon_sym_DASH_GT, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, + anon_sym_SLASH, + ACTIONS(6617), 1, + anon_sym_PIPE, + ACTIONS(6621), 1, + anon_sym_AMP, + ACTIONS(6627), 1, + anon_sym_GT_EQ, + ACTIONS(6631), 1, anon_sym_QMARK, + ACTIONS(6633), 1, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, + ACTIONS(6635), 1, anon_sym_bitor, - anon_sym_xor, + ACTIONS(6637), 1, anon_sym_bitand, - anon_sym_not_eq, + ACTIONS(6823), 1, + anon_sym_COMMA, + ACTIONS(6933), 1, + anon_sym_RPAREN, + STATE(2996), 1, + sym_argument_list, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [101081] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5725), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5727), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(4917), 9, + ACTIONS(6607), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(6609), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6613), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6615), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6619), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6629), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6623), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6625), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_DOT, - ACTIONS(4919), 26, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + [135238] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5212), 1, anon_sym_LPAREN2, + ACTIONS(5982), 1, + anon_sym_LBRACK, + ACTIONS(5986), 1, + anon_sym_DOT, + ACTIONS(5988), 1, + anon_sym_DASH_GT, + ACTIONS(6678), 1, + anon_sym_SLASH, + ACTIONS(6684), 1, + anon_sym_PIPE, + ACTIONS(6688), 1, + anon_sym_AMP, + ACTIONS(6694), 1, + anon_sym_LT_LT, + ACTIONS(6696), 1, + anon_sym_GT_GT, + ACTIONS(6700), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6702), 1, + anon_sym_bitor, + ACTIONS(6704), 1, + anon_sym_bitand, + STATE(3506), 1, + sym_argument_list, + ACTIONS(6674), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6676), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(6680), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6682), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6686), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(6706), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6690), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5762), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_GT2, + ACTIONS(6692), 4, + anon_sym_GT, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_LT_EQ, + anon_sym_LT, + [135322] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4978), 1, + anon_sym_LPAREN2, + ACTIONS(5493), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, + ACTIONS(5497), 1, + anon_sym_DOT, + ACTIONS(5499), 1, + anon_sym_DASH_GT, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, + anon_sym_SLASH, + ACTIONS(6617), 1, + anon_sym_PIPE, + ACTIONS(6621), 1, + anon_sym_AMP, + ACTIONS(6627), 1, + anon_sym_GT_EQ, + ACTIONS(6631), 1, anon_sym_QMARK, + ACTIONS(6633), 1, anon_sym_LT_EQ_GT, + ACTIONS(6635), 1, anon_sym_bitor, - anon_sym_xor, + ACTIONS(6637), 1, anon_sym_bitand, - anon_sym_not_eq, + ACTIONS(6823), 1, + anon_sym_COMMA, + ACTIONS(6935), 1, + anon_sym_RPAREN, + STATE(2996), 1, + sym_argument_list, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [101132] = 9, + ACTIONS(6607), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6609), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6613), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6615), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6619), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6629), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6623), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6625), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [135412] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4133), 1, - anon_sym_COLON, - ACTIONS(5721), 1, - anon_sym_LBRACE, - STATE(3676), 1, - sym_field_declaration_list, - STATE(5175), 1, - sym_virtual_specifier, - STATE(5814), 1, - sym_base_class_clause, - ACTIONS(5449), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(4143), 7, - anon_sym_COMMA, + ACTIONS(4476), 1, + anon_sym_COLON_COLON, + ACTIONS(6151), 1, + anon_sym_LT, + ACTIONS(6600), 1, + anon_sym_LBRACK, + STATE(4522), 1, + sym_template_argument_list, + ACTIONS(4478), 2, anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + ACTIONS(4463), 4, + anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - ACTIONS(4145), 25, + ACTIONS(4455), 26, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, anon_sym___based, - anon_sym_LBRACK, anon_sym_static, anon_sym_register, anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, sym_identifier, sym_auto, anon_sym_decltype, anon_sym_virtual, + anon_sym_template, anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [101191] = 22, + [135466] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(5653), 1, - anon_sym_AMP_AMP, - ACTIONS(5655), 1, - anon_sym_AMP, - ACTIONS(5659), 1, + ACTIONS(5212), 1, + anon_sym_LPAREN2, + ACTIONS(5982), 1, anon_sym_LBRACK, - ACTIONS(5665), 1, - anon_sym_noexcept, - ACTIONS(5667), 1, - anon_sym_throw, - ACTIONS(5709), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5713), 1, - anon_sym_const, - ACTIONS(5729), 1, - anon_sym___attribute__, - ACTIONS(5733), 1, + ACTIONS(5986), 1, + anon_sym_DOT, + ACTIONS(5988), 1, anon_sym_DASH_GT, - ACTIONS(5735), 1, - anon_sym_requires, - STATE(4177), 1, - sym_ref_qualifier, - STATE(4599), 1, - sym_trailing_return_type, - STATE(4718), 1, - sym_requires_clause, - ACTIONS(4135), 2, - anon_sym_final, - anon_sym_override, - STATE(3391), 2, - sym_attribute_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(3531), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(4418), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(4420), 2, - sym_noexcept, - sym_throw_specifier, - STATE(4546), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat2, - ACTIONS(5651), 7, + ACTIONS(6670), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6678), 1, + anon_sym_SLASH, + ACTIONS(6684), 1, + anon_sym_PIPE, + ACTIONS(6688), 1, + anon_sym_AMP, + ACTIONS(6694), 1, + anon_sym_LT_LT, + ACTIONS(6696), 1, + anon_sym_GT_GT, + ACTIONS(6698), 1, + anon_sym_QMARK, + ACTIONS(6700), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6702), 1, + anon_sym_bitor, + ACTIONS(6704), 1, + anon_sym_bitand, + STATE(3506), 1, + sym_argument_list, + ACTIONS(5631), 2, anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_try, - ACTIONS(5731), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [101276] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1521), 1, - anon_sym_operator, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(1681), 1, - anon_sym_LPAREN2, - ACTIONS(1683), 1, - anon_sym_TILDE, - ACTIONS(4302), 1, - sym_identifier, - ACTIONS(4312), 1, - anon_sym_COLON_COLON, - ACTIONS(5353), 1, - anon_sym_LBRACK, - ACTIONS(5377), 1, + anon_sym_GT2, + ACTIONS(6674), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6676), 2, anon_sym_STAR, - ACTIONS(5379), 1, + anon_sym_PERCENT, + ACTIONS(6680), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6682), 2, anon_sym_AMP_AMP, - ACTIONS(5381), 1, - anon_sym_AMP, - STATE(4598), 1, - sym__scope_resolution, - STATE(4867), 1, - sym__declarator, - STATE(6072), 1, - sym_ms_based_modifier, - STATE(4104), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(6159), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(2724), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(4918), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [101357] = 20, + anon_sym_and, + ACTIONS(6686), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6706), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6690), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6692), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [135554] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1521), 1, - anon_sym_operator, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(1681), 1, + ACTIONS(5212), 1, anon_sym_LPAREN2, - ACTIONS(1683), 1, - anon_sym_TILDE, - ACTIONS(4302), 1, - sym_identifier, - ACTIONS(4312), 1, - anon_sym_COLON_COLON, - ACTIONS(5353), 1, + ACTIONS(5982), 1, anon_sym_LBRACK, - ACTIONS(5377), 1, - anon_sym_STAR, - ACTIONS(5379), 1, - anon_sym_AMP_AMP, - ACTIONS(5381), 1, - anon_sym_AMP, - STATE(4598), 1, - sym__scope_resolution, - STATE(4878), 1, - sym__declarator, - STATE(6072), 1, - sym_ms_based_modifier, - STATE(4104), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(6159), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(2724), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(4918), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [101438] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3803), 9, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(5986), 1, + anon_sym_DOT, + ACTIONS(5988), 1, + anon_sym_DASH_GT, + ACTIONS(6670), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6678), 1, anon_sym_SLASH, + ACTIONS(6684), 1, anon_sym_PIPE, + ACTIONS(6688), 1, anon_sym_AMP, + ACTIONS(6694), 1, + anon_sym_LT_LT, + ACTIONS(6696), 1, + anon_sym_GT_GT, + ACTIONS(6698), 1, + anon_sym_QMARK, + ACTIONS(6700), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6702), 1, + anon_sym_bitor, + ACTIONS(6704), 1, + anon_sym_bitand, + STATE(3506), 1, + sym_argument_list, + ACTIONS(5730), 2, + anon_sym_COMMA, + anon_sym_GT2, + ACTIONS(6674), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6676), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6680), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6682), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6686), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6706), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6690), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6692), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + [135642] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4978), 1, + anon_sym_LPAREN2, + ACTIONS(5493), 1, + anon_sym_LBRACK, + ACTIONS(5497), 1, anon_sym_DOT, - ACTIONS(3795), 30, + ACTIONS(5499), 1, + anon_sym_DASH_GT, + ACTIONS(6605), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, + anon_sym_SLASH, + ACTIONS(6617), 1, + anon_sym_PIPE, + ACTIONS(6621), 1, + anon_sym_AMP, + ACTIONS(6627), 1, + anon_sym_GT_EQ, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6635), 1, + anon_sym_bitor, + ACTIONS(6637), 1, + anon_sym_bitand, + ACTIONS(6823), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(6937), 1, + anon_sym_SEMI, + STATE(2996), 1, + sym_argument_list, + ACTIONS(6585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6607), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6609), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(6613), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6615), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6619), 2, anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_xor, + ACTIONS(6629), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACE, + ACTIONS(6623), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6625), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [135732] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4978), 1, + anon_sym_LPAREN2, + ACTIONS(5493), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, + ACTIONS(5497), 1, + anon_sym_DOT, + ACTIONS(5499), 1, + anon_sym_DASH_GT, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, + anon_sym_SLASH, + ACTIONS(6617), 1, + anon_sym_PIPE, + ACTIONS(6621), 1, + anon_sym_AMP, + ACTIONS(6627), 1, + anon_sym_GT_EQ, + ACTIONS(6631), 1, anon_sym_QMARK, + ACTIONS(6633), 1, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, + ACTIONS(6635), 1, anon_sym_bitor, - anon_sym_xor, + ACTIONS(6637), 1, anon_sym_bitand, - anon_sym_not_eq, + ACTIONS(6823), 1, + anon_sym_COMMA, + ACTIONS(6939), 1, + anon_sym_SEMI, + STATE(2996), 1, + sym_argument_list, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [101485] = 3, + ACTIONS(6607), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6609), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6613), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6615), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6619), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6629), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6623), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6625), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [135822] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4965), 9, + ACTIONS(5457), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(4963), 30, + ACTIONS(5455), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -316777,14 +420638,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -316796,107 +420652,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [101532] = 20, + anon_sym_GT2, + [135866] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1521), 1, - anon_sym_operator, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(1681), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(1683), 1, - anon_sym_TILDE, - ACTIONS(4302), 1, - sym_identifier, - ACTIONS(4312), 1, - anon_sym_COLON_COLON, - ACTIONS(5353), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(5377), 1, + ACTIONS(5497), 1, + anon_sym_DOT, + ACTIONS(5499), 1, + anon_sym_DASH_GT, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, + anon_sym_SLASH, + ACTIONS(6617), 1, + anon_sym_PIPE, + ACTIONS(6621), 1, + anon_sym_AMP, + ACTIONS(6627), 1, + anon_sym_GT_EQ, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6635), 1, + anon_sym_bitor, + ACTIONS(6637), 1, + anon_sym_bitand, + STATE(2996), 1, + sym_argument_list, + ACTIONS(6585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6607), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6609), 2, anon_sym_STAR, - ACTIONS(5379), 1, + anon_sym_PERCENT, + ACTIONS(6613), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6615), 2, anon_sym_AMP_AMP, - ACTIONS(5381), 1, - anon_sym_AMP, - STATE(4598), 1, - sym__scope_resolution, - STATE(4827), 1, - sym__declarator, - STATE(6072), 1, - sym_ms_based_modifier, - STATE(4104), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(6159), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(2724), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(4918), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [101613] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5493), 1, - anon_sym_LBRACE, - ACTIONS(5737), 1, - anon_sym_COLON, - STATE(3202), 1, - sym__enum_base_clause, - STATE(3257), 1, - sym_enumerator_list, - ACTIONS(4276), 11, - anon_sym_DOT_DOT_DOT, + anon_sym_and, + ACTIONS(6619), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6629), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6941), 2, anon_sym_COMMA, anon_sym_RPAREN, + ACTIONS(6623), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6625), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [135954] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4476), 1, + anon_sym_COLON_COLON, + ACTIONS(4650), 1, + anon_sym_SEMI, + ACTIONS(6151), 1, + anon_sym_LT, + ACTIONS(6600), 1, + anon_sym_LBRACK, + STATE(4033), 1, + sym_template_argument_list, + ACTIONS(4478), 2, anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + ACTIONS(4463), 3, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(4278), 24, + ACTIONS(4455), 26, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, anon_sym___based, - anon_sym_LBRACK, anon_sym_static, anon_sym_register, anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, sym_identifier, @@ -316905,899 +420763,1185 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_virtual, anon_sym_template, anon_sym_operator, - [101668] = 20, + [136010] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1521), 1, - anon_sym_operator, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(1681), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(1683), 1, - anon_sym_TILDE, - ACTIONS(4206), 1, - sym_identifier, - ACTIONS(4377), 1, - anon_sym_COLON_COLON, - ACTIONS(5347), 1, - anon_sym_STAR, - ACTIONS(5349), 1, - anon_sym_AMP_AMP, - ACTIONS(5351), 1, - anon_sym_AMP, - ACTIONS(5353), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - STATE(4605), 1, - sym__scope_resolution, - STATE(5054), 1, - sym__declarator, - STATE(6132), 1, - sym_ms_based_modifier, - STATE(4104), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(6159), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(2724), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(4918), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [101749] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(29), 1, - anon_sym_AMP_AMP, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1521), 1, - anon_sym_operator, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(1681), 1, - anon_sym_LPAREN2, - ACTIONS(1683), 1, - anon_sym_TILDE, - ACTIONS(1685), 1, - anon_sym_STAR, - ACTIONS(1687), 1, + ACTIONS(5497), 1, + anon_sym_DOT, + ACTIONS(5499), 1, + anon_sym_DASH_GT, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, + anon_sym_SLASH, + ACTIONS(6617), 1, + anon_sym_PIPE, + ACTIONS(6621), 1, anon_sym_AMP, - ACTIONS(4206), 1, - sym_identifier, - ACTIONS(4377), 1, - anon_sym_COLON_COLON, - ACTIONS(5353), 1, - anon_sym_LBRACK, - STATE(4605), 1, - sym__scope_resolution, - STATE(4937), 1, - sym__declarator, - STATE(6104), 1, - sym_ms_based_modifier, - STATE(4104), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(6159), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(2724), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(4918), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [101830] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(1735), 1, - sym__fold_operator, - ACTIONS(5741), 13, + ACTIONS(6627), 1, + anon_sym_GT_EQ, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6635), 1, + anon_sym_bitor, + ACTIONS(6637), 1, + anon_sym_bitand, + STATE(2996), 1, + sym_argument_list, + ACTIONS(6585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6607), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(6609), 2, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, + ACTIONS(6613), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6615), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6619), 2, anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, + anon_sym_xor, + ACTIONS(6629), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(5739), 25, + ACTIONS(6943), 2, anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + anon_sym_RPAREN, + ACTIONS(6623), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, anon_sym_not_eq, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [101879] = 6, + ACTIONS(6625), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [136098] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1489), 1, - anon_sym_LBRACE, - ACTIONS(5437), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - STATE(3339), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(4507), 9, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(5493), 1, + anon_sym_LBRACK, + ACTIONS(5497), 1, + anon_sym_DOT, + ACTIONS(5499), 1, + anon_sym_DASH_GT, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, anon_sym_SLASH, + ACTIONS(6617), 1, anon_sym_PIPE, + ACTIONS(6621), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(4505), 26, - anon_sym_DOT_DOT_DOT, + ACTIONS(6627), 1, + anon_sym_GT_EQ, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6635), 1, + anon_sym_bitor, + ACTIONS(6637), 1, + anon_sym_bitand, + ACTIONS(6823), 1, anon_sym_COMMA, + ACTIONS(6945), 1, + anon_sym_SEMI, + STATE(2996), 1, + sym_argument_list, + ACTIONS(6585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6607), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6609), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(6613), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6615), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6619), 2, anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_xor, + ACTIONS(6629), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(6623), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6625), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [136188] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4978), 1, + anon_sym_LPAREN2, + ACTIONS(5493), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, + ACTIONS(5497), 1, + anon_sym_DOT, + ACTIONS(5499), 1, + anon_sym_DASH_GT, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, + anon_sym_SLASH, + ACTIONS(6617), 1, + anon_sym_PIPE, + ACTIONS(6621), 1, + anon_sym_AMP, + ACTIONS(6627), 1, + anon_sym_GT_EQ, + ACTIONS(6631), 1, anon_sym_QMARK, + ACTIONS(6633), 1, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, + ACTIONS(6635), 1, anon_sym_bitor, - anon_sym_xor, + ACTIONS(6637), 1, anon_sym_bitand, - anon_sym_not_eq, + ACTIONS(6823), 1, + anon_sym_COMMA, + ACTIONS(6947), 1, + anon_sym_RPAREN, + STATE(2996), 1, + sym_argument_list, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [101932] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1521), 1, - anon_sym_operator, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(1681), 1, - anon_sym_LPAREN2, - ACTIONS(1683), 1, - anon_sym_TILDE, - ACTIONS(4302), 1, - sym_identifier, - ACTIONS(4312), 1, - anon_sym_COLON_COLON, - ACTIONS(5353), 1, - anon_sym_LBRACK, - ACTIONS(5371), 1, + ACTIONS(6607), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6609), 2, anon_sym_STAR, - ACTIONS(5373), 1, + anon_sym_PERCENT, + ACTIONS(6613), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6615), 2, anon_sym_AMP_AMP, - ACTIONS(5375), 1, - anon_sym_AMP, - STATE(4598), 1, - sym__scope_resolution, - STATE(4665), 1, - sym__declarator, - STATE(6066), 1, - sym_ms_based_modifier, - STATE(4104), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(6159), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(2724), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(4918), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [102013] = 20, + anon_sym_and, + ACTIONS(6619), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6629), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6623), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6625), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [136278] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1521), 1, - anon_sym_operator, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(1681), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(1683), 1, - anon_sym_TILDE, - ACTIONS(4206), 1, - sym_identifier, - ACTIONS(4377), 1, - anon_sym_COLON_COLON, - ACTIONS(5347), 1, - anon_sym_STAR, - ACTIONS(5349), 1, - anon_sym_AMP_AMP, - ACTIONS(5351), 1, - anon_sym_AMP, - ACTIONS(5353), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - STATE(4605), 1, - sym__scope_resolution, - STATE(5071), 1, - sym__declarator, - STATE(6132), 1, - sym_ms_based_modifier, - STATE(4104), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(6159), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(2724), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(4918), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [102094] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4943), 9, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(5497), 1, + anon_sym_DOT, + ACTIONS(5499), 1, + anon_sym_DASH_GT, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, anon_sym_SLASH, + ACTIONS(6617), 1, anon_sym_PIPE, + ACTIONS(6621), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(4941), 30, - anon_sym_DOT_DOT_DOT, + ACTIONS(6627), 1, + anon_sym_GT_EQ, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6635), 1, + anon_sym_bitor, + ACTIONS(6637), 1, + anon_sym_bitand, + ACTIONS(6823), 1, anon_sym_COMMA, + ACTIONS(6949), 1, anon_sym_RPAREN, - anon_sym_LPAREN2, + STATE(2996), 1, + sym_argument_list, + ACTIONS(6585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6607), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6609), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(6613), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6615), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6619), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(6629), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6623), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_not_eq, + ACTIONS(6625), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [136368] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5212), 1, + anon_sym_LPAREN2, + ACTIONS(5982), 1, + anon_sym_LBRACK, + ACTIONS(5986), 1, + anon_sym_DOT, + ACTIONS(5988), 1, + anon_sym_DASH_GT, + ACTIONS(6678), 1, + anon_sym_SLASH, + ACTIONS(6684), 1, + anon_sym_PIPE, + ACTIONS(6688), 1, + anon_sym_AMP, + ACTIONS(6694), 1, anon_sym_LT_LT, + ACTIONS(6696), 1, anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, + ACTIONS(6700), 1, anon_sym_LT_EQ_GT, + ACTIONS(6702), 1, + anon_sym_bitor, + ACTIONS(6704), 1, + anon_sym_bitand, + STATE(3506), 1, + sym_argument_list, + ACTIONS(6674), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6676), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6680), 2, + anon_sym_PIPE_PIPE, anon_sym_or, + ACTIONS(6682), 2, + anon_sym_AMP_AMP, anon_sym_and, - anon_sym_bitor, + ACTIONS(6686), 2, + anon_sym_CARET, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + ACTIONS(6706), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [102141] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5493), 1, - anon_sym_LBRACE, - ACTIONS(5737), 1, - anon_sym_COLON, - STATE(3196), 1, - sym__enum_base_clause, - STATE(3235), 1, - sym_enumerator_list, - ACTIONS(4268), 11, + ACTIONS(6690), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5641), 4, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_QMARK, + anon_sym_GT2, + ACTIONS(6692), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [136452] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6468), 1, + anon_sym_const, + ACTIONS(6512), 1, anon_sym_LPAREN2, - anon_sym_TILDE, + ACTIONS(6520), 1, + anon_sym_LBRACK, + ACTIONS(6575), 1, anon_sym_STAR, + ACTIONS(6577), 1, anon_sym_AMP_AMP, - anon_sym_COLON_COLON, + ACTIONS(6579), 1, + anon_sym_AMP, + STATE(3839), 1, + sym_parameter_list, + STATE(5412), 1, + sym__abstract_declarator, + STATE(5464), 1, + sym__function_declarator_seq, + STATE(4585), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(5367), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(5782), 10, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, anon_sym_EQ, - anon_sym_GT2, - ACTIONS(4270), 24, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + ACTIONS(6470), 10, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - [102196] = 8, + [136518] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, + ACTIONS(5497), 1, anon_sym_DOT, - ACTIONS(4816), 1, + ACTIONS(5499), 1, anon_sym_DASH_GT, - STATE(2475), 1, - sym_argument_list, - ACTIONS(4961), 8, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, anon_sym_SLASH, + ACTIONS(6617), 1, anon_sym_PIPE, + ACTIONS(6621), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(4959), 26, - anon_sym_DOT_DOT_DOT, + ACTIONS(6627), 1, + anon_sym_GT_EQ, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6635), 1, + anon_sym_bitor, + ACTIONS(6637), 1, + anon_sym_bitand, + ACTIONS(6823), 1, anon_sym_COMMA, + ACTIONS(6951), 1, anon_sym_RPAREN, + STATE(2996), 1, + sym_argument_list, + ACTIONS(6585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6607), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6609), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(6613), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6615), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6619), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(6629), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6623), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6625), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [136608] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4978), 1, + anon_sym_LPAREN2, + ACTIONS(5493), 1, + anon_sym_LBRACK, + ACTIONS(5497), 1, + anon_sym_DOT, + ACTIONS(5499), 1, + anon_sym_DASH_GT, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, + anon_sym_SLASH, + ACTIONS(6617), 1, + anon_sym_PIPE, + ACTIONS(6621), 1, + anon_sym_AMP, + ACTIONS(6627), 1, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RBRACK, + ACTIONS(6631), 1, anon_sym_QMARK, + ACTIONS(6633), 1, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, + ACTIONS(6635), 1, anon_sym_bitor, - anon_sym_xor, + ACTIONS(6637), 1, anon_sym_bitand, - anon_sym_not_eq, + ACTIONS(6823), 1, + anon_sym_COMMA, + ACTIONS(6953), 1, + anon_sym_RPAREN, + STATE(2996), 1, + sym_argument_list, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - [102253] = 20, + ACTIONS(6607), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6609), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6613), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6615), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6619), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6629), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6623), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6625), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [136698] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1521), 1, - anon_sym_operator, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(1681), 1, + ACTIONS(6468), 1, + anon_sym_const, + ACTIONS(6512), 1, anon_sym_LPAREN2, - ACTIONS(1683), 1, - anon_sym_TILDE, - ACTIONS(5353), 1, + ACTIONS(6520), 1, anon_sym_LBRACK, - ACTIONS(5355), 1, - sym_identifier, - ACTIONS(5357), 1, + ACTIONS(6575), 1, anon_sym_STAR, - ACTIONS(5359), 1, + ACTIONS(6577), 1, anon_sym_AMP_AMP, - ACTIONS(5361), 1, + ACTIONS(6579), 1, anon_sym_AMP, - ACTIONS(5363), 1, - anon_sym_COLON_COLON, - STATE(4639), 1, - sym__scope_resolution, - STATE(4892), 1, - sym__declarator, - STATE(6010), 1, - sym_ms_based_modifier, - STATE(4104), 2, + STATE(3839), 1, + sym_parameter_list, + STATE(5399), 1, + sym__abstract_declarator, + STATE(5464), 1, + sym__function_declarator_seq, + STATE(4585), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - STATE(6159), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(2724), 8, - anon_sym_const, + STATE(5367), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6470), 10, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - STATE(4918), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [102334] = 3, + ACTIONS(6821), 10, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [136764] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4969), 9, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(4978), 1, + anon_sym_LPAREN2, + ACTIONS(5493), 1, + anon_sym_LBRACK, + ACTIONS(5497), 1, + anon_sym_DOT, + ACTIONS(5499), 1, + anon_sym_DASH_GT, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, anon_sym_SLASH, + ACTIONS(6617), 1, anon_sym_PIPE, + ACTIONS(6621), 1, anon_sym_AMP, + ACTIONS(6627), 1, + anon_sym_GT_EQ, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6635), 1, + anon_sym_bitor, + ACTIONS(6637), 1, + anon_sym_bitand, + ACTIONS(6823), 1, + anon_sym_COMMA, + ACTIONS(6955), 1, + anon_sym_RPAREN, + STATE(2996), 1, + sym_argument_list, + ACTIONS(6585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6607), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6609), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6613), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6615), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6619), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6629), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6623), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6625), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + [136854] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4978), 1, + anon_sym_LPAREN2, + ACTIONS(5493), 1, + anon_sym_LBRACK, + ACTIONS(5497), 1, anon_sym_DOT, - ACTIONS(4967), 30, + ACTIONS(5499), 1, + anon_sym_DASH_GT, + ACTIONS(6605), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, + anon_sym_SLASH, + ACTIONS(6617), 1, + anon_sym_PIPE, + ACTIONS(6621), 1, + anon_sym_AMP, + ACTIONS(6627), 1, + anon_sym_GT_EQ, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6635), 1, + anon_sym_bitor, + ACTIONS(6637), 1, + anon_sym_bitand, + ACTIONS(6957), 1, anon_sym_COMMA, + ACTIONS(6959), 1, anon_sym_RPAREN, - anon_sym_LPAREN2, + STATE(2996), 1, + sym_argument_list, + ACTIONS(6585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6607), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6609), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(6613), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6615), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6619), 2, anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_xor, + ACTIONS(6629), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACE, + ACTIONS(6623), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6625), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [136944] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4978), 1, + anon_sym_LPAREN2, + ACTIONS(5493), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, + ACTIONS(5497), 1, + anon_sym_DOT, + ACTIONS(5499), 1, + anon_sym_DASH_GT, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, + anon_sym_SLASH, + ACTIONS(6617), 1, + anon_sym_PIPE, + ACTIONS(6621), 1, + anon_sym_AMP, + ACTIONS(6627), 1, + anon_sym_GT_EQ, + ACTIONS(6631), 1, anon_sym_QMARK, + ACTIONS(6633), 1, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, + ACTIONS(6635), 1, anon_sym_bitor, - anon_sym_xor, + ACTIONS(6637), 1, anon_sym_bitand, - anon_sym_not_eq, + ACTIONS(6823), 1, + anon_sym_COMMA, + ACTIONS(6961), 1, + anon_sym_RPAREN, + STATE(2996), 1, + sym_argument_list, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [102381] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4937), 9, + ACTIONS(6607), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(6609), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6613), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6615), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6619), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6629), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6623), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6625), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + [137034] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4978), 1, + anon_sym_LPAREN2, + ACTIONS(5493), 1, + anon_sym_LBRACK, + ACTIONS(5497), 1, anon_sym_DOT, - ACTIONS(4935), 30, + ACTIONS(5499), 1, + anon_sym_DASH_GT, + ACTIONS(6605), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, + anon_sym_SLASH, + ACTIONS(6617), 1, + anon_sym_PIPE, + ACTIONS(6621), 1, + anon_sym_AMP, + ACTIONS(6627), 1, + anon_sym_GT_EQ, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6635), 1, + anon_sym_bitor, + ACTIONS(6637), 1, + anon_sym_bitand, + ACTIONS(6823), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(6963), 1, + anon_sym_SEMI, + STATE(2996), 1, + sym_argument_list, + ACTIONS(6585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6607), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6609), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(6613), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6615), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6619), 2, anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_xor, + ACTIONS(6629), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACE, + ACTIONS(6623), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6625), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [137124] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4978), 1, + anon_sym_LPAREN2, + ACTIONS(5493), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, + ACTIONS(5497), 1, + anon_sym_DOT, + ACTIONS(5499), 1, + anon_sym_DASH_GT, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, + anon_sym_SLASH, + ACTIONS(6617), 1, + anon_sym_PIPE, + ACTIONS(6621), 1, + anon_sym_AMP, + ACTIONS(6627), 1, + anon_sym_GT_EQ, + ACTIONS(6631), 1, anon_sym_QMARK, + ACTIONS(6633), 1, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, + ACTIONS(6635), 1, anon_sym_bitor, - anon_sym_xor, + ACTIONS(6637), 1, anon_sym_bitand, - anon_sym_not_eq, + ACTIONS(6823), 1, + anon_sym_COMMA, + ACTIONS(6965), 1, + anon_sym_RPAREN, + STATE(2996), 1, + sym_argument_list, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [102428] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1521), 1, - anon_sym_operator, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(1681), 1, - anon_sym_LPAREN2, - ACTIONS(1683), 1, - anon_sym_TILDE, - ACTIONS(4302), 1, - sym_identifier, - ACTIONS(4312), 1, - anon_sym_COLON_COLON, - ACTIONS(5353), 1, - anon_sym_LBRACK, - ACTIONS(5371), 1, + ACTIONS(6607), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6609), 2, anon_sym_STAR, - ACTIONS(5373), 1, + anon_sym_PERCENT, + ACTIONS(6613), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6615), 2, anon_sym_AMP_AMP, - ACTIONS(5375), 1, - anon_sym_AMP, - STATE(4598), 1, - sym__scope_resolution, - STATE(4678), 1, - sym__declarator, - STATE(6066), 1, - sym_ms_based_modifier, - STATE(4104), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(6159), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(2724), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(4918), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [102509] = 23, + anon_sym_and, + ACTIONS(6619), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6629), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6623), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6625), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [137214] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1521), 1, - anon_sym_operator, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(1683), 1, - anon_sym_TILDE, - ACTIONS(3226), 1, + ACTIONS(6468), 1, + anon_sym_const, + ACTIONS(6512), 1, anon_sym_LPAREN2, - ACTIONS(4302), 1, - sym_identifier, - ACTIONS(4312), 1, - anon_sym_COLON_COLON, - ACTIONS(4314), 1, + ACTIONS(6520), 1, anon_sym_LBRACK, - ACTIONS(4316), 1, + ACTIONS(6575), 1, anon_sym_STAR, - ACTIONS(4318), 1, + ACTIONS(6577), 1, anon_sym_AMP_AMP, - ACTIONS(4320), 1, + ACTIONS(6579), 1, anon_sym_AMP, - STATE(3556), 1, + STATE(3839), 1, sym_parameter_list, - STATE(4598), 1, - sym__scope_resolution, - STATE(4650), 1, - sym__declarator, - STATE(4765), 1, - sym__function_declarator_seq, - STATE(4955), 1, + STATE(5460), 1, sym__abstract_declarator, - STATE(6066), 1, - sym_ms_based_modifier, - ACTIONS(5550), 2, - anon_sym_COMMA, - anon_sym_GT2, - STATE(6159), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(4764), 5, + STATE(5464), 1, + sym__function_declarator_seq, + STATE(4585), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(5367), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - STATE(4918), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [102596] = 9, + ACTIONS(6470), 10, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(6803), 10, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [137280] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, + ACTIONS(5497), 1, anon_sym_DOT, - ACTIONS(4816), 1, + ACTIONS(5499), 1, anon_sym_DASH_GT, - STATE(2475), 1, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, + anon_sym_SLASH, + ACTIONS(6617), 1, + anon_sym_PIPE, + ACTIONS(6621), 1, + anon_sym_AMP, + ACTIONS(6627), 1, + anon_sym_GT_EQ, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6635), 1, + anon_sym_bitor, + ACTIONS(6637), 1, + anon_sym_bitand, + ACTIONS(6823), 1, + anon_sym_COMMA, + ACTIONS(6967), 1, + anon_sym_SEMI, + STATE(2996), 1, sym_argument_list, - ACTIONS(5723), 2, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5013), 8, + ACTIONS(6607), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(5011), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(6609), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(6613), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6615), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6619), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(6629), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6623), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6625), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [137370] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4978), 1, + anon_sym_LPAREN2, + ACTIONS(5493), 1, + anon_sym_LBRACK, + ACTIONS(5497), 1, + anon_sym_DOT, + ACTIONS(5499), 1, + anon_sym_DASH_GT, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6724), 1, + anon_sym_SLASH, + ACTIONS(6730), 1, + anon_sym_PIPE, + ACTIONS(6734), 1, + anon_sym_AMP, + ACTIONS(6740), 1, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RBRACK, + ACTIONS(6746), 1, anon_sym_QMARK, + ACTIONS(6748), 1, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, + ACTIONS(6750), 1, anon_sym_bitor, - anon_sym_xor, + ACTIONS(6752), 1, anon_sym_bitand, - anon_sym_not_eq, - [102655] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5009), 9, + STATE(2996), 1, + sym_argument_list, + ACTIONS(6585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6720), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(5007), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(6722), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(6726), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6728), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6732), 2, anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_xor, + ACTIONS(6742), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, + ACTIONS(6969), 2, + anon_sym_COMMA, anon_sym_RBRACK, - anon_sym_COLON, + ACTIONS(6736), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6738), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [137458] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4978), 1, + anon_sym_LPAREN2, + ACTIONS(5493), 1, + anon_sym_LBRACK, + ACTIONS(5497), 1, + anon_sym_DOT, + ACTIONS(5499), 1, + anon_sym_DASH_GT, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, + anon_sym_SLASH, + ACTIONS(6617), 1, + anon_sym_PIPE, + ACTIONS(6621), 1, + anon_sym_AMP, + ACTIONS(6627), 1, + anon_sym_GT_EQ, + ACTIONS(6631), 1, anon_sym_QMARK, + ACTIONS(6633), 1, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, + ACTIONS(6635), 1, anon_sym_bitor, - anon_sym_xor, + ACTIONS(6637), 1, anon_sym_bitand, - anon_sym_not_eq, + ACTIONS(6823), 1, + anon_sym_COMMA, + ACTIONS(6971), 1, + anon_sym_SEMI, + STATE(2996), 1, + sym_argument_list, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [102702] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4973), 9, + ACTIONS(6607), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(4971), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(6609), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(6613), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6615), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6619), 2, anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_xor, + ACTIONS(6629), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACE, + ACTIONS(6623), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6625), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [137548] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4978), 1, + anon_sym_LPAREN2, + ACTIONS(5493), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, + ACTIONS(5497), 1, + anon_sym_DOT, + ACTIONS(5499), 1, + anon_sym_DASH_GT, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, + anon_sym_SLASH, + ACTIONS(6617), 1, + anon_sym_PIPE, + ACTIONS(6621), 1, + anon_sym_AMP, + ACTIONS(6627), 1, + anon_sym_GT_EQ, + ACTIONS(6631), 1, anon_sym_QMARK, + ACTIONS(6633), 1, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, + ACTIONS(6635), 1, anon_sym_bitor, - anon_sym_xor, + ACTIONS(6637), 1, anon_sym_bitand, - anon_sym_not_eq, + ACTIONS(6823), 1, + anon_sym_COMMA, + ACTIONS(6827), 1, + anon_sym_SEMI, + STATE(2996), 1, + sym_argument_list, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [102749] = 3, + ACTIONS(6607), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6609), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6613), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6615), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6619), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6629), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6623), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6625), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [137638] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4997), 9, + ACTIONS(5461), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -317807,10 +421951,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(4995), 30, + ACTIONS(5463), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -317822,8 +421965,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COLON, @@ -317838,132 +421979,178 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [102796] = 20, + [137682] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1521), 1, - anon_sym_operator, - ACTIONS(1555), 1, + ACTIONS(41), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(6355), 1, + anon_sym___attribute__, + ACTIONS(6522), 1, + sym_auto, + ACTIONS(6524), 1, anon_sym_decltype, - ACTIONS(1681), 1, + ACTIONS(6975), 1, + anon_sym___declspec, + ACTIONS(6977), 1, + anon_sym_virtual, + STATE(3692), 1, + sym_decltype_auto, + ACTIONS(6173), 2, + anon_sym_AMP, + anon_sym_LBRACK, + ACTIONS(6175), 3, anon_sym_LPAREN2, - ACTIONS(1683), 1, - anon_sym_TILDE, - ACTIONS(4206), 1, - sym_identifier, - ACTIONS(4377), 1, - anon_sym_COLON_COLON, - ACTIONS(5347), 1, anon_sym_STAR, - ACTIONS(5349), 1, anon_sym_AMP_AMP, - ACTIONS(5351), 1, - anon_sym_AMP, - ACTIONS(5353), 1, - anon_sym_LBRACK, - STATE(4605), 1, - sym__scope_resolution, - STATE(5057), 1, - sym__declarator, - STATE(6132), 1, - sym_ms_based_modifier, - STATE(4104), 2, + ACTIONS(6973), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + STATE(4536), 8, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(6159), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(2724), 8, - anon_sym_const, + sym_virtual, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(6359), 10, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - STATE(4918), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [102877] = 20, + [137748] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(29), 1, - anon_sym_AMP_AMP, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1521), 1, - anon_sym_operator, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(1681), 1, + ACTIONS(6468), 1, + anon_sym_const, + ACTIONS(6512), 1, anon_sym_LPAREN2, - ACTIONS(1683), 1, - anon_sym_TILDE, - ACTIONS(1685), 1, + ACTIONS(6520), 1, + anon_sym_LBRACK, + ACTIONS(6575), 1, anon_sym_STAR, - ACTIONS(1687), 1, + ACTIONS(6577), 1, + anon_sym_AMP_AMP, + ACTIONS(6579), 1, anon_sym_AMP, - ACTIONS(4206), 1, - sym_identifier, - ACTIONS(4377), 1, - anon_sym_COLON_COLON, - ACTIONS(5353), 1, - anon_sym_LBRACK, - STATE(4605), 1, - sym__scope_resolution, - STATE(4885), 1, - sym__declarator, - STATE(6104), 1, - sym_ms_based_modifier, - STATE(4104), 2, + STATE(3839), 1, + sym_parameter_list, + STATE(5414), 1, + sym__abstract_declarator, + STATE(5464), 1, + sym__function_declarator_seq, + STATE(4199), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - STATE(6159), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(2724), 8, - anon_sym_const, + STATE(5367), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(5004), 10, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + ACTIONS(6470), 10, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - STATE(4918), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [102958] = 3, + [137814] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4978), 1, + anon_sym_LPAREN2, + ACTIONS(5493), 1, + anon_sym_LBRACK, + ACTIONS(5497), 1, + anon_sym_DOT, + ACTIONS(5499), 1, + anon_sym_DASH_GT, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, + anon_sym_SLASH, + ACTIONS(6617), 1, + anon_sym_PIPE, + ACTIONS(6621), 1, + anon_sym_AMP, + ACTIONS(6627), 1, + anon_sym_GT_EQ, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6635), 1, + anon_sym_bitor, + ACTIONS(6637), 1, + anon_sym_bitand, + ACTIONS(6823), 1, + anon_sym_COMMA, + ACTIONS(6979), 1, + anon_sym_SEMI, + STATE(2996), 1, + sym_argument_list, + ACTIONS(6585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6607), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6609), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6613), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6615), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6619), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6629), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6623), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6625), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [137904] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4929), 9, + ACTIONS(5465), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -317973,10 +422160,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(4927), 30, + ACTIONS(5467), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -317988,8 +422174,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COLON, @@ -318004,793 +422188,821 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [103005] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5707), 1, - anon_sym___attribute__, - ACTIONS(5709), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5711), 1, - anon_sym___declspec, - ACTIONS(5715), 1, - sym_auto, - ACTIONS(5717), 1, - anon_sym_decltype, - ACTIONS(5719), 1, - anon_sym_virtual, - STATE(3606), 1, - sym_decltype_auto, - ACTIONS(5419), 4, - anon_sym_AMP, - anon_sym___based, - sym_identifier, - anon_sym_operator, - ACTIONS(5705), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - ACTIONS(5421), 7, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(5713), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(3659), 8, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual, - aux_sym__declaration_specifiers_repeat1, - [103072] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5653), 1, - anon_sym_AMP_AMP, - ACTIONS(5655), 1, - anon_sym_AMP, - ACTIONS(5665), 1, - anon_sym_noexcept, - ACTIONS(5667), 1, - anon_sym_throw, - ACTIONS(5675), 1, - anon_sym_LBRACK, - ACTIONS(5709), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5713), 1, - anon_sym_const, - ACTIONS(5729), 1, - anon_sym___attribute__, - ACTIONS(5733), 1, - anon_sym_DASH_GT, - ACTIONS(5735), 1, - anon_sym_requires, - STATE(4189), 1, - sym_ref_qualifier, - STATE(4591), 1, - sym_trailing_return_type, - STATE(4716), 1, - sym_requires_clause, - ACTIONS(4135), 2, - anon_sym_final, - anon_sym_override, - STATE(3512), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(4053), 2, - sym_attribute_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(4415), 2, - sym_noexcept, - sym_throw_specifier, - STATE(4435), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(4578), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat2, - ACTIONS(5673), 7, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_try, - ACTIONS(5731), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [103157] = 23, + [137948] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, + ACTIONS(5497), 1, anon_sym_DOT, - ACTIONS(4816), 1, + ACTIONS(5499), 1, anon_sym_DASH_GT, - ACTIONS(5747), 1, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, anon_sym_SLASH, - ACTIONS(5753), 1, + ACTIONS(6617), 1, anon_sym_PIPE, - ACTIONS(5757), 1, + ACTIONS(6621), 1, anon_sym_AMP, - ACTIONS(5763), 1, + ACTIONS(6627), 1, anon_sym_GT_EQ, - ACTIONS(5767), 1, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, + ACTIONS(6635), 1, anon_sym_bitor, - ACTIONS(5771), 1, + ACTIONS(6637), 1, anon_sym_bitand, - STATE(2475), 1, + ACTIONS(6823), 1, + anon_sym_COMMA, + ACTIONS(6981), 1, + anon_sym_SEMI, + STATE(2996), 1, sym_argument_list, - ACTIONS(5723), 2, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, + ACTIONS(6607), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5745), 2, + ACTIONS(6609), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5749), 2, + ACTIONS(6613), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(5751), 2, + ACTIONS(6615), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(5755), 2, + ACTIONS(6619), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(5765), 2, + ACTIONS(6629), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5759), 3, + ACTIONS(6623), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5761), 3, + ACTIONS(6625), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(5003), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_QMARK, - [103243] = 24, + [138038] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, + ACTIONS(5497), 1, anon_sym_DOT, - ACTIONS(4816), 1, + ACTIONS(5499), 1, anon_sym_DASH_GT, - ACTIONS(5747), 1, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, anon_sym_SLASH, - ACTIONS(5753), 1, + ACTIONS(6617), 1, anon_sym_PIPE, - ACTIONS(5757), 1, + ACTIONS(6621), 1, anon_sym_AMP, - ACTIONS(5763), 1, + ACTIONS(6627), 1, anon_sym_GT_EQ, - ACTIONS(5767), 1, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, + ACTIONS(6635), 1, anon_sym_bitor, - ACTIONS(5771), 1, + ACTIONS(6637), 1, anon_sym_bitand, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - STATE(2475), 1, + ACTIONS(6823), 1, + anon_sym_COMMA, + ACTIONS(6983), 1, + anon_sym_SEMI, + STATE(2996), 1, sym_argument_list, - ACTIONS(5723), 2, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, + ACTIONS(6607), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5745), 2, + ACTIONS(6609), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5749), 2, + ACTIONS(6613), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(5751), 2, + ACTIONS(6615), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(5755), 2, + ACTIONS(6619), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(5765), 2, + ACTIONS(6629), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5759), 3, + ACTIONS(6623), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5761), 3, + ACTIONS(6625), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(4774), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_QMARK, - [103331] = 10, + [138128] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5445), 1, - anon_sym_LBRACE, - ACTIONS(5447), 1, - anon_sym_COLON, - ACTIONS(5775), 1, - anon_sym_SEMI, - STATE(3221), 1, - sym_field_declaration_list, - STATE(5346), 1, - sym_virtual_specifier, - STATE(5854), 1, - sym_base_class_clause, - ACTIONS(5449), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(4158), 6, + ACTIONS(4978), 1, anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(4160), 24, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + ACTIONS(5493), 1, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - [103391] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4046), 11, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(5497), 1, + anon_sym_DOT, + ACTIONS(5499), 1, + anon_sym_DASH_GT, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, anon_sym_SLASH, + ACTIONS(6617), 1, anon_sym_PIPE, + ACTIONS(6621), 1, anon_sym_AMP, - anon_sym_GT, + ACTIONS(6627), 1, anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4048), 27, - anon_sym_DOT_DOT_DOT, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6635), 1, + anon_sym_bitor, + ACTIONS(6637), 1, + anon_sym_bitand, + ACTIONS(6823), 1, anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(6985), 1, + anon_sym_SEMI, + STATE(2996), 1, + sym_argument_list, + ACTIONS(6585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6607), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6609), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(6613), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6615), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6619), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(6629), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6623), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_not_eq, + ACTIONS(6625), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [138218] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4978), 1, + anon_sym_LPAREN2, + ACTIONS(5493), 1, anon_sym_LBRACK, + ACTIONS(5497), 1, + anon_sym_DOT, + ACTIONS(5499), 1, + anon_sym_DASH_GT, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, + anon_sym_SLASH, + ACTIONS(6617), 1, + anon_sym_PIPE, + ACTIONS(6621), 1, + anon_sym_AMP, + ACTIONS(6627), 1, + anon_sym_GT_EQ, + ACTIONS(6631), 1, anon_sym_QMARK, + ACTIONS(6633), 1, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, + ACTIONS(6635), 1, anon_sym_bitor, - anon_sym_xor, + ACTIONS(6637), 1, anon_sym_bitand, - anon_sym_not_eq, + ACTIONS(6823), 1, + anon_sym_COMMA, + ACTIONS(6987), 1, + anon_sym_SEMI, + STATE(2996), 1, + sym_argument_list, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [103437] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4133), 1, - anon_sym_COLON, - ACTIONS(5445), 1, - anon_sym_LBRACE, - STATE(3270), 1, - sym_field_declaration_list, - STATE(5189), 1, - sym_virtual_specifier, - STATE(5819), 1, - sym_base_class_clause, - ACTIONS(4135), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(4129), 3, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_const, - ACTIONS(4127), 28, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(6607), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6609), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6613), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6615), 2, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_EQ, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [103495] = 14, + anon_sym_and, + ACTIONS(6619), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6629), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6623), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6625), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [138308] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, + ACTIONS(5497), 1, anon_sym_DOT, - ACTIONS(4816), 1, + ACTIONS(5499), 1, anon_sym_DASH_GT, - ACTIONS(5747), 1, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, anon_sym_SLASH, - ACTIONS(5767), 1, + ACTIONS(6617), 1, + anon_sym_PIPE, + ACTIONS(6621), 1, + anon_sym_AMP, + ACTIONS(6627), 1, + anon_sym_GT_EQ, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, anon_sym_LT_EQ_GT, - STATE(2475), 1, + ACTIONS(6635), 1, + anon_sym_bitor, + ACTIONS(6637), 1, + anon_sym_bitand, + ACTIONS(6823), 1, + anon_sym_COMMA, + ACTIONS(6989), 1, + anon_sym_SEMI, + STATE(2996), 1, sym_argument_list, - ACTIONS(5723), 2, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, + ACTIONS(6607), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5745), 2, + ACTIONS(6609), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5765), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4993), 5, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(4991), 18, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(6613), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6615), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6619), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(6629), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6623), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, anon_sym_not_eq, - [103563] = 3, + ACTIONS(6625), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [138398] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4064), 11, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(4978), 1, + anon_sym_LPAREN2, + ACTIONS(5493), 1, + anon_sym_LBRACK, + ACTIONS(5497), 1, + anon_sym_DOT, + ACTIONS(5499), 1, + anon_sym_DASH_GT, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, anon_sym_SLASH, + ACTIONS(6617), 1, anon_sym_PIPE, + ACTIONS(6621), 1, anon_sym_AMP, - anon_sym_GT, + ACTIONS(6627), 1, anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4066), 27, - anon_sym_DOT_DOT_DOT, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6635), 1, + anon_sym_bitor, + ACTIONS(6637), 1, + anon_sym_bitand, + ACTIONS(6823), 1, anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(6991), 1, + anon_sym_SEMI, + STATE(2996), 1, + sym_argument_list, + ACTIONS(6585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6607), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6609), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(6613), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6615), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6619), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(6629), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6623), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_not_eq, + ACTIONS(6625), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [138488] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4978), 1, + anon_sym_LPAREN2, + ACTIONS(5493), 1, anon_sym_LBRACK, + ACTIONS(5497), 1, + anon_sym_DOT, + ACTIONS(5499), 1, + anon_sym_DASH_GT, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, + anon_sym_SLASH, + ACTIONS(6617), 1, + anon_sym_PIPE, + ACTIONS(6621), 1, + anon_sym_AMP, + ACTIONS(6627), 1, + anon_sym_GT_EQ, + ACTIONS(6631), 1, anon_sym_QMARK, + ACTIONS(6633), 1, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, + ACTIONS(6635), 1, anon_sym_bitor, - anon_sym_xor, + ACTIONS(6637), 1, anon_sym_bitand, - anon_sym_not_eq, + STATE(2996), 1, + sym_argument_list, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [103609] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1729), 11, + ACTIONS(6607), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(1727), 27, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(6609), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(6613), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6615), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6619), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(6629), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6993), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(6623), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_not_eq, + ACTIONS(6625), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [138576] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4978), 1, + anon_sym_LPAREN2, + ACTIONS(5493), 1, anon_sym_LBRACK, + ACTIONS(5497), 1, + anon_sym_DOT, + ACTIONS(5499), 1, + anon_sym_DASH_GT, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, + anon_sym_SLASH, + ACTIONS(6617), 1, + anon_sym_PIPE, + ACTIONS(6621), 1, + anon_sym_AMP, + ACTIONS(6627), 1, + anon_sym_GT_EQ, + ACTIONS(6631), 1, anon_sym_QMARK, + ACTIONS(6633), 1, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, + ACTIONS(6635), 1, anon_sym_bitor, - anon_sym_xor, + ACTIONS(6637), 1, anon_sym_bitand, - anon_sym_not_eq, + ACTIONS(6823), 1, + anon_sym_COMMA, + ACTIONS(6995), 1, + anon_sym_RPAREN, + STATE(2996), 1, + sym_argument_list, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, + ACTIONS(6607), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6609), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6613), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6615), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6619), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6629), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6623), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6625), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [138666] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2871), 1, + anon_sym_const, + ACTIONS(4572), 1, + anon_sym_LPAREN2, + ACTIONS(6919), 1, + anon_sym_LBRACK, + ACTIONS(6997), 1, + anon_sym_STAR, + ACTIONS(6999), 1, + anon_sym_AMP_AMP, + ACTIONS(7001), 1, + anon_sym_AMP, + ACTIONS(7003), 1, + sym_auto, + ACTIONS(7005), 1, + anon_sym_decltype, + STATE(3888), 1, + sym_parameter_list, + STATE(4729), 1, + sym_decltype_auto, + STATE(5457), 1, + sym__function_declarator_seq, + STATE(5661), 1, + sym__abstract_declarator, + STATE(4535), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(5452), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6540), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_final, anon_sym_override, - anon_sym_GT2, + anon_sym_try, anon_sym_requires, - [103655] = 23, + ACTIONS(6921), 10, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [138738] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, + ACTIONS(5497), 1, anon_sym_DOT, - ACTIONS(4816), 1, + ACTIONS(5499), 1, anon_sym_DASH_GT, - ACTIONS(5747), 1, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, anon_sym_SLASH, - ACTIONS(5753), 1, + ACTIONS(6617), 1, anon_sym_PIPE, - ACTIONS(5757), 1, + ACTIONS(6621), 1, anon_sym_AMP, - ACTIONS(5763), 1, + ACTIONS(6627), 1, anon_sym_GT_EQ, - ACTIONS(5767), 1, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, + ACTIONS(6635), 1, anon_sym_bitor, - ACTIONS(5771), 1, + ACTIONS(6637), 1, anon_sym_bitand, - STATE(2475), 1, + ACTIONS(6823), 1, + anon_sym_COMMA, + ACTIONS(7007), 1, + anon_sym_SEMI, + STATE(2996), 1, sym_argument_list, - ACTIONS(5723), 2, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, + ACTIONS(6607), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5745), 2, + ACTIONS(6609), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5749), 2, + ACTIONS(6613), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(5751), 2, + ACTIONS(6615), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(5755), 2, + ACTIONS(6619), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(5765), 2, + ACTIONS(6629), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5759), 3, + ACTIONS(6623), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5761), 3, + ACTIONS(6625), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(4859), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_QMARK, - [103741] = 3, + [138828] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4076), 11, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(4978), 1, + anon_sym_LPAREN2, + ACTIONS(5493), 1, + anon_sym_LBRACK, + ACTIONS(5497), 1, + anon_sym_DOT, + ACTIONS(5499), 1, + anon_sym_DASH_GT, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, anon_sym_SLASH, + ACTIONS(6617), 1, anon_sym_PIPE, + ACTIONS(6621), 1, anon_sym_AMP, - anon_sym_GT, + ACTIONS(6627), 1, anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4078), 27, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACK, + ACTIONS(6631), 1, anon_sym_QMARK, + ACTIONS(6633), 1, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, + ACTIONS(6635), 1, anon_sym_bitor, - anon_sym_xor, + ACTIONS(6637), 1, anon_sym_bitand, - anon_sym_not_eq, + ACTIONS(6823), 1, + anon_sym_COMMA, + ACTIONS(7009), 1, + anon_sym_SEMI, + STATE(2996), 1, + sym_argument_list, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [103787] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3025), 1, - anon_sym_LBRACE, - ACTIONS(5477), 1, - anon_sym_LPAREN2, - STATE(3705), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(4507), 11, + ACTIONS(6607), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4505), 23, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(6609), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(6613), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6615), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6619), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(6629), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6623), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [103839] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4032), 11, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(6625), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4034), 27, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + [138918] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2871), 1, + anon_sym_const, + ACTIONS(4572), 1, anon_sym_LPAREN2, + ACTIONS(4574), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(4576), 1, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, + ACTIONS(4578), 1, + anon_sym_AMP, + ACTIONS(5145), 1, + sym_auto, + ACTIONS(5147), 1, + anon_sym_decltype, + ACTIONS(6919), 1, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, + STATE(2731), 1, + sym_decltype_auto, + STATE(3900), 1, + sym_parameter_list, + STATE(5457), 1, + sym__function_declarator_seq, + STATE(5669), 1, + sym__abstract_declarator, + STATE(4538), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(5452), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6510), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_requires, - [103885] = 10, + ACTIONS(6921), 10, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [138990] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(5445), 1, - anon_sym_LBRACE, - ACTIONS(5447), 1, - anon_sym_COLON, - ACTIONS(5777), 1, - anon_sym_SEMI, - STATE(3221), 1, - sym_field_declaration_list, - STATE(5346), 1, - sym_virtual_specifier, - STATE(5854), 1, - sym_base_class_clause, - ACTIONS(5449), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(4158), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, + ACTIONS(41), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4160), 24, - anon_sym_AMP, - anon_sym_extern, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(6355), 1, anon_sym___attribute__, + ACTIONS(6522), 1, + sym_auto, + ACTIONS(6524), 1, + anon_sym_decltype, + ACTIONS(6975), 1, anon_sym___declspec, - anon_sym___based, + ACTIONS(6977), 1, + anon_sym_virtual, + STATE(3692), 1, + sym_decltype_auto, + ACTIONS(6161), 2, + anon_sym_AMP, anon_sym_LBRACK, + ACTIONS(6163), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + ACTIONS(6973), 5, + anon_sym_extern, anon_sym_static, anon_sym_register, anon_sym_inline, anon_sym_thread_local, - anon_sym_const, + STATE(4526), 8, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(6359), 10, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - [103945] = 3, + [139056] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4072), 11, + ACTIONS(5477), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(4074), 27, + ACTIONS(5479), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -318801,8 +423013,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -318814,1095 +423030,1110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, + [139100] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2871), 1, + anon_sym_const, + ACTIONS(4572), 1, + anon_sym_LPAREN2, + ACTIONS(6919), 1, + anon_sym_LBRACK, + ACTIONS(6997), 1, + anon_sym_STAR, + ACTIONS(6999), 1, + anon_sym_AMP_AMP, + ACTIONS(7001), 1, + anon_sym_AMP, + ACTIONS(7003), 1, + sym_auto, + ACTIONS(7005), 1, + anon_sym_decltype, + STATE(3888), 1, + sym_parameter_list, + STATE(4729), 1, + sym_decltype_auto, + STATE(5457), 1, + sym__function_declarator_seq, + STATE(5607), 1, + sym__abstract_declarator, + STATE(4533), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(5452), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6510), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_final, anon_sym_override, - anon_sym_GT2, + anon_sym_try, anon_sym_requires, - [103991] = 21, + ACTIONS(6921), 10, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [139172] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, + ACTIONS(5497), 1, anon_sym_DOT, - ACTIONS(4816), 1, + ACTIONS(5499), 1, anon_sym_DASH_GT, - ACTIONS(5747), 1, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, anon_sym_SLASH, - ACTIONS(5753), 1, + ACTIONS(6617), 1, anon_sym_PIPE, - ACTIONS(5757), 1, + ACTIONS(6621), 1, anon_sym_AMP, - ACTIONS(5763), 1, + ACTIONS(6627), 1, anon_sym_GT_EQ, - ACTIONS(5767), 1, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, + ACTIONS(6635), 1, anon_sym_bitor, - ACTIONS(5771), 1, + ACTIONS(6637), 1, anon_sym_bitand, - STATE(2475), 1, + ACTIONS(6823), 1, + anon_sym_COMMA, + ACTIONS(7011), 1, + anon_sym_SEMI, + STATE(2996), 1, sym_argument_list, - ACTIONS(5723), 2, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, + ACTIONS(6607), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5745), 2, + ACTIONS(6609), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5755), 2, + ACTIONS(6613), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6615), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6619), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(5765), 2, + ACTIONS(6629), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5759), 3, + ACTIONS(6623), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5761), 3, + ACTIONS(6625), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(4881), 10, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_or, - anon_sym_and, - [104073] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1521), 1, - anon_sym_operator, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(1683), 1, - anon_sym_TILDE, - ACTIONS(3226), 1, - anon_sym_LPAREN2, - ACTIONS(3228), 1, - anon_sym_STAR, - ACTIONS(3230), 1, - anon_sym_AMP_AMP, - ACTIONS(3232), 1, - anon_sym_AMP, - ACTIONS(4206), 1, - sym_identifier, - ACTIONS(4314), 1, - anon_sym_LBRACK, - ACTIONS(4377), 1, - anon_sym_COLON_COLON, - ACTIONS(5550), 1, - anon_sym_RPAREN, - STATE(3482), 1, - sym_parameter_list, - STATE(4605), 1, - sym__scope_resolution, - STATE(4765), 1, - sym__function_declarator_seq, - STATE(4880), 1, - sym__declarator, - STATE(4922), 1, - sym__abstract_declarator, - STATE(6104), 1, - sym_ms_based_modifier, - STATE(6159), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(4764), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - STATE(4918), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [104159] = 11, + [139262] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, + ACTIONS(5497), 1, anon_sym_DOT, - ACTIONS(4816), 1, + ACTIONS(5499), 1, anon_sym_DASH_GT, - ACTIONS(5747), 1, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, anon_sym_SLASH, - STATE(2475), 1, + ACTIONS(6617), 1, + anon_sym_PIPE, + ACTIONS(6621), 1, + anon_sym_AMP, + ACTIONS(6627), 1, + anon_sym_GT_EQ, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6635), 1, + anon_sym_bitor, + ACTIONS(6637), 1, + anon_sym_bitand, + ACTIONS(6823), 1, + anon_sym_COMMA, + ACTIONS(7013), 1, + anon_sym_SEMI, + STATE(2996), 1, sym_argument_list, - ACTIONS(5723), 2, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5745), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(4883), 7, + ACTIONS(6607), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(4881), 21, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(6609), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6613), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6615), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6619), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(6629), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6623), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_not_eq, + ACTIONS(6625), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [139352] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5212), 1, + anon_sym_LPAREN2, + ACTIONS(5982), 1, + anon_sym_LBRACK, + ACTIONS(5986), 1, + anon_sym_DOT, + ACTIONS(5988), 1, + anon_sym_DASH_GT, + ACTIONS(6670), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6678), 1, + anon_sym_SLASH, + ACTIONS(6684), 1, + anon_sym_PIPE, + ACTIONS(6688), 1, + anon_sym_AMP, + ACTIONS(6694), 1, anon_sym_LT_LT, + ACTIONS(6696), 1, anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACE, + ACTIONS(6698), 1, anon_sym_QMARK, + ACTIONS(6700), 1, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, + ACTIONS(6702), 1, anon_sym_bitor, - anon_sym_xor, + ACTIONS(6704), 1, anon_sym_bitand, - anon_sym_not_eq, - [104221] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4091), 11, + STATE(3506), 1, + sym_argument_list, + ACTIONS(6674), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4093), 27, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(6676), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(6680), 2, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, anon_sym_or, + ACTIONS(6682), 2, + anon_sym_AMP_AMP, anon_sym_and, - anon_sym_bitor, + ACTIONS(6686), 2, + anon_sym_CARET, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + ACTIONS(6706), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, + ACTIONS(6941), 2, + anon_sym_COMMA, anon_sym_GT2, - anon_sym_requires, - [104267] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5445), 1, - anon_sym_LBRACE, - ACTIONS(5447), 1, - anon_sym_COLON, - ACTIONS(5779), 1, - anon_sym_SEMI, - STATE(3221), 1, - sym_field_declaration_list, - STATE(5346), 1, - sym_virtual_specifier, - STATE(5854), 1, - sym_base_class_clause, - ACTIONS(5449), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(4158), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(4160), 24, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - [104327] = 25, + ACTIONS(6690), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6692), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [139440] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, + ACTIONS(5497), 1, anon_sym_DOT, - ACTIONS(4816), 1, + ACTIONS(5499), 1, anon_sym_DASH_GT, - ACTIONS(5747), 1, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, anon_sym_SLASH, - ACTIONS(5753), 1, + ACTIONS(6617), 1, anon_sym_PIPE, - ACTIONS(5757), 1, + ACTIONS(6621), 1, anon_sym_AMP, - ACTIONS(5763), 1, + ACTIONS(6627), 1, anon_sym_GT_EQ, - ACTIONS(5767), 1, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, + ACTIONS(6635), 1, anon_sym_bitor, - ACTIONS(5771), 1, + ACTIONS(6637), 1, anon_sym_bitand, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - STATE(2475), 1, + ACTIONS(6823), 1, + anon_sym_COMMA, + ACTIONS(7015), 1, + anon_sym_RPAREN, + STATE(2996), 1, sym_argument_list, - ACTIONS(5723), 2, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, + ACTIONS(6607), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5745), 2, + ACTIONS(6609), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5749), 2, + ACTIONS(6613), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(5751), 2, + ACTIONS(6615), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(5755), 2, + ACTIONS(6619), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(5765), 2, + ACTIONS(6629), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5759), 3, + ACTIONS(6623), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5761), 3, + ACTIONS(6625), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(4893), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_RBRACE, - [104417] = 19, + [139530] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, + ACTIONS(5497), 1, anon_sym_DOT, - ACTIONS(4816), 1, + ACTIONS(5499), 1, anon_sym_DASH_GT, - ACTIONS(4883), 1, - anon_sym_PIPE, - ACTIONS(5747), 1, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, anon_sym_SLASH, - ACTIONS(5757), 1, + ACTIONS(6617), 1, + anon_sym_PIPE, + ACTIONS(6621), 1, anon_sym_AMP, - ACTIONS(5763), 1, + ACTIONS(6627), 1, anon_sym_GT_EQ, - ACTIONS(5767), 1, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, anon_sym_LT_EQ_GT, - ACTIONS(5771), 1, + ACTIONS(6635), 1, + anon_sym_bitor, + ACTIONS(6637), 1, anon_sym_bitand, - STATE(2475), 1, + ACTIONS(6823), 1, + anon_sym_COMMA, + ACTIONS(7017), 1, + anon_sym_RPAREN, + STATE(2996), 1, sym_argument_list, - ACTIONS(5723), 2, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, + ACTIONS(6607), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5745), 2, + ACTIONS(6609), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5765), 2, + ACTIONS(6613), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6615), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6619), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6629), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5759), 3, + ACTIONS(6623), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5761), 3, + ACTIONS(6625), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(4881), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - [104495] = 6, + [139620] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(3025), 1, - anon_sym_LBRACE, - ACTIONS(5477), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - STATE(3707), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(4519), 11, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(5493), 1, + anon_sym_LBRACK, + ACTIONS(5497), 1, + anon_sym_DOT, + ACTIONS(5499), 1, + anon_sym_DASH_GT, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, anon_sym_SLASH, + ACTIONS(6617), 1, anon_sym_PIPE, + ACTIONS(6621), 1, anon_sym_AMP, - anon_sym_GT, + ACTIONS(6627), 1, anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4517), 23, - anon_sym_DOT_DOT_DOT, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6635), 1, + anon_sym_bitor, + ACTIONS(6637), 1, + anon_sym_bitand, + ACTIONS(6823), 1, anon_sym_COMMA, + ACTIONS(7019), 1, + anon_sym_RPAREN, + STATE(2996), 1, + sym_argument_list, + ACTIONS(6585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6607), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6609), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(6613), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6615), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6619), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(6629), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6623), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [104547] = 22, + ACTIONS(6625), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [139710] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, + ACTIONS(5497), 1, anon_sym_DOT, - ACTIONS(4816), 1, + ACTIONS(5499), 1, anon_sym_DASH_GT, - ACTIONS(5747), 1, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6724), 1, anon_sym_SLASH, - ACTIONS(5753), 1, + ACTIONS(6730), 1, anon_sym_PIPE, - ACTIONS(5757), 1, + ACTIONS(6734), 1, anon_sym_AMP, - ACTIONS(5763), 1, + ACTIONS(6740), 1, anon_sym_GT_EQ, - ACTIONS(5767), 1, + ACTIONS(6746), 1, + anon_sym_QMARK, + ACTIONS(6748), 1, anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, + ACTIONS(6750), 1, anon_sym_bitor, - ACTIONS(5771), 1, + ACTIONS(6752), 1, anon_sym_bitand, - STATE(2475), 1, + STATE(2996), 1, sym_argument_list, - ACTIONS(5723), 2, + ACTIONS(5730), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, + ACTIONS(6720), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5745), 2, + ACTIONS(6722), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5751), 2, + ACTIONS(6726), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6728), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(5755), 2, + ACTIONS(6732), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(5765), 2, + ACTIONS(6742), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5759), 3, + ACTIONS(6736), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5761), 3, + ACTIONS(6738), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(4881), 8, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_or, - [104631] = 10, + [139798] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5445), 1, - anon_sym_LBRACE, - ACTIONS(5447), 1, - anon_sym_COLON, - ACTIONS(5783), 1, - anon_sym_SEMI, - STATE(3221), 1, - sym_field_declaration_list, - STATE(5346), 1, - sym_virtual_specifier, - STATE(5854), 1, - sym_base_class_clause, - ACTIONS(5449), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(4158), 6, + ACTIONS(4978), 1, anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(4160), 24, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + ACTIONS(5493), 1, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - [104691] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4068), 11, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(5497), 1, + anon_sym_DOT, + ACTIONS(5499), 1, + anon_sym_DASH_GT, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, anon_sym_SLASH, + ACTIONS(6617), 1, anon_sym_PIPE, + ACTIONS(6621), 1, anon_sym_AMP, - anon_sym_GT, + ACTIONS(6627), 1, anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4070), 27, - anon_sym_DOT_DOT_DOT, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6635), 1, + anon_sym_bitor, + ACTIONS(6637), 1, + anon_sym_bitand, + ACTIONS(6823), 1, anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(7021), 1, + anon_sym_SEMI, + STATE(2996), 1, + sym_argument_list, + ACTIONS(6585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6607), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6609), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(6613), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6615), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6619), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(6629), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6623), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [104737] = 10, + ACTIONS(6625), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [139888] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5445), 1, - anon_sym_LBRACE, - ACTIONS(5447), 1, - anon_sym_COLON, - ACTIONS(5785), 1, - anon_sym_SEMI, - STATE(3221), 1, - sym_field_declaration_list, - STATE(5346), 1, - sym_virtual_specifier, - STATE(5854), 1, - sym_base_class_clause, - ACTIONS(5449), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(4158), 6, + ACTIONS(4978), 1, anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(4160), 24, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + ACTIONS(5493), 1, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - [104797] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4087), 11, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(5497), 1, + anon_sym_DOT, + ACTIONS(5499), 1, + anon_sym_DASH_GT, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, anon_sym_SLASH, + ACTIONS(6617), 1, anon_sym_PIPE, + ACTIONS(6621), 1, anon_sym_AMP, - anon_sym_GT, + ACTIONS(6627), 1, anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4089), 27, - anon_sym_DOT_DOT_DOT, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6635), 1, + anon_sym_bitor, + ACTIONS(6637), 1, + anon_sym_bitand, + ACTIONS(6823), 1, anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(7023), 1, + anon_sym_SEMI, + STATE(2996), 1, + sym_argument_list, + ACTIONS(6585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6607), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6609), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(6613), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6615), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6619), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(6629), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6623), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_not_eq, + ACTIONS(6625), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [139978] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4978), 1, + anon_sym_LPAREN2, + ACTIONS(5493), 1, anon_sym_LBRACK, + ACTIONS(5497), 1, + anon_sym_DOT, + ACTIONS(5499), 1, + anon_sym_DASH_GT, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, + anon_sym_SLASH, + ACTIONS(6617), 1, + anon_sym_PIPE, + ACTIONS(6621), 1, + anon_sym_AMP, + ACTIONS(6627), 1, + anon_sym_GT_EQ, + ACTIONS(6631), 1, anon_sym_QMARK, + ACTIONS(6633), 1, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, + ACTIONS(6635), 1, anon_sym_bitor, - anon_sym_xor, + ACTIONS(6637), 1, anon_sym_bitand, - anon_sym_not_eq, + ACTIONS(6823), 1, + anon_sym_COMMA, + ACTIONS(7025), 1, + anon_sym_SEMI, + STATE(2996), 1, + sym_argument_list, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [104843] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4133), 1, - anon_sym_COLON, - ACTIONS(5445), 1, - anon_sym_LBRACE, - STATE(3221), 1, - sym_field_declaration_list, - STATE(5346), 1, - sym_virtual_specifier, - STATE(5854), 1, - sym_base_class_clause, - ACTIONS(4135), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(4160), 3, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_const, - ACTIONS(4158), 28, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(6607), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6609), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6613), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6615), 2, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_EQ, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [104901] = 20, + anon_sym_and, + ACTIONS(6619), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6629), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6623), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6625), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [140068] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, + ACTIONS(5497), 1, anon_sym_DOT, - ACTIONS(4816), 1, + ACTIONS(5499), 1, anon_sym_DASH_GT, - ACTIONS(4883), 1, - anon_sym_PIPE, - ACTIONS(5747), 1, + ACTIONS(6724), 1, anon_sym_SLASH, - ACTIONS(5757), 1, + ACTIONS(6730), 1, + anon_sym_PIPE, + ACTIONS(6734), 1, anon_sym_AMP, - ACTIONS(5763), 1, + ACTIONS(6740), 1, anon_sym_GT_EQ, - ACTIONS(5767), 1, + ACTIONS(6748), 1, anon_sym_LT_EQ_GT, - ACTIONS(5771), 1, + ACTIONS(6750), 1, + anon_sym_bitor, + ACTIONS(6752), 1, anon_sym_bitand, - STATE(2475), 1, + STATE(2996), 1, sym_argument_list, - ACTIONS(5723), 2, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, + ACTIONS(6720), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5745), 2, + ACTIONS(6722), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5755), 2, + ACTIONS(6726), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6728), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6732), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(5765), 2, + ACTIONS(6742), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5759), 3, + ACTIONS(6736), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5761), 3, + ACTIONS(6738), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(4881), 11, + ACTIONS(5601), 4, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - [104981] = 3, + [140152] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4060), 11, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(4978), 1, + anon_sym_LPAREN2, + ACTIONS(5493), 1, + anon_sym_LBRACK, + ACTIONS(5497), 1, + anon_sym_DOT, + ACTIONS(5499), 1, + anon_sym_DASH_GT, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, anon_sym_SLASH, + ACTIONS(6617), 1, anon_sym_PIPE, + ACTIONS(6621), 1, anon_sym_AMP, - anon_sym_GT, + ACTIONS(6627), 1, anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4062), 27, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACK, + ACTIONS(6631), 1, anon_sym_QMARK, + ACTIONS(6633), 1, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, + ACTIONS(6635), 1, anon_sym_bitor, - anon_sym_xor, + ACTIONS(6637), 1, anon_sym_bitand, - anon_sym_not_eq, + ACTIONS(6823), 1, + anon_sym_COMMA, + ACTIONS(7027), 1, + anon_sym_SEMI, + STATE(2996), 1, + sym_argument_list, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [105027] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3025), 1, - anon_sym_LBRACE, - ACTIONS(5477), 1, - anon_sym_LPAREN2, - STATE(3717), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(4375), 11, + ACTIONS(6607), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4373), 23, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(6609), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(6613), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6615), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6619), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(6629), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6623), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [105079] = 17, + ACTIONS(6625), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [140242] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, + ACTIONS(5497), 1, anon_sym_DOT, - ACTIONS(4816), 1, + ACTIONS(5499), 1, anon_sym_DASH_GT, - ACTIONS(5747), 1, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6724), 1, anon_sym_SLASH, - ACTIONS(5763), 1, + ACTIONS(6730), 1, + anon_sym_PIPE, + ACTIONS(6734), 1, + anon_sym_AMP, + ACTIONS(6740), 1, anon_sym_GT_EQ, - ACTIONS(5767), 1, + ACTIONS(6748), 1, anon_sym_LT_EQ_GT, - STATE(2475), 1, + ACTIONS(6750), 1, + anon_sym_bitor, + ACTIONS(6752), 1, + anon_sym_bitand, + STATE(2996), 1, sym_argument_list, - ACTIONS(4883), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(5723), 2, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, + ACTIONS(6720), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5745), 2, + ACTIONS(6722), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5765), 2, + ACTIONS(6726), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6728), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6732), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6742), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5759), 3, + ACTIONS(5585), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_QMARK, + ACTIONS(6736), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5761), 3, + ACTIONS(6738), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(4881), 14, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - [105153] = 16, + [140328] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, + ACTIONS(5497), 1, anon_sym_DOT, - ACTIONS(4816), 1, + ACTIONS(5499), 1, anon_sym_DASH_GT, - ACTIONS(5747), 1, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, anon_sym_SLASH, - ACTIONS(5763), 1, + ACTIONS(6617), 1, + anon_sym_PIPE, + ACTIONS(6621), 1, + anon_sym_AMP, + ACTIONS(6627), 1, anon_sym_GT_EQ, - ACTIONS(5767), 1, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, anon_sym_LT_EQ_GT, - STATE(2475), 1, + ACTIONS(6635), 1, + anon_sym_bitor, + ACTIONS(6637), 1, + anon_sym_bitand, + ACTIONS(7029), 1, + anon_sym_COMMA, + ACTIONS(7031), 1, + anon_sym_RPAREN, + STATE(2996), 1, sym_argument_list, - ACTIONS(4883), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(5723), 2, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, + ACTIONS(6607), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5745), 2, + ACTIONS(6609), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5765), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5761), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(4881), 17, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(6613), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6615), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6619), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(6629), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6623), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, anon_sym_not_eq, - [105225] = 14, + ACTIONS(6625), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [140418] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, + ACTIONS(5497), 1, anon_sym_DOT, - ACTIONS(4816), 1, + ACTIONS(5499), 1, anon_sym_DASH_GT, - ACTIONS(5747), 1, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, anon_sym_SLASH, - ACTIONS(5767), 1, + ACTIONS(6617), 1, + anon_sym_PIPE, + ACTIONS(6621), 1, + anon_sym_AMP, + ACTIONS(6627), 1, + anon_sym_GT_EQ, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, anon_sym_LT_EQ_GT, - STATE(2475), 1, + ACTIONS(6635), 1, + anon_sym_bitor, + ACTIONS(6637), 1, + anon_sym_bitand, + ACTIONS(6823), 1, + anon_sym_COMMA, + ACTIONS(7033), 1, + anon_sym_SEMI, + STATE(2996), 1, sym_argument_list, - ACTIONS(5723), 2, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, + ACTIONS(6607), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5745), 2, + ACTIONS(6609), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5765), 2, + ACTIONS(6613), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6615), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6619), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6629), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4883), 5, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(6623), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6625), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(4881), 18, + [140508] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4978), 1, + anon_sym_LPAREN2, + ACTIONS(5493), 1, + anon_sym_LBRACK, + ACTIONS(5497), 1, + anon_sym_DOT, + ACTIONS(5499), 1, + anon_sym_DASH_GT, + ACTIONS(6605), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, + anon_sym_SLASH, + ACTIONS(6617), 1, + anon_sym_PIPE, + ACTIONS(6621), 1, + anon_sym_AMP, + ACTIONS(6627), 1, + anon_sym_GT_EQ, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6635), 1, + anon_sym_bitor, + ACTIONS(6637), 1, + anon_sym_bitand, + ACTIONS(7035), 1, anon_sym_COMMA, + ACTIONS(7037), 1, anon_sym_RPAREN, + STATE(2996), 1, + sym_argument_list, + ACTIONS(6585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6607), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6609), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6613), 2, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_QMARK, anon_sym_or, + ACTIONS(6615), 2, + anon_sym_AMP_AMP, anon_sym_and, - anon_sym_bitor, + ACTIONS(6619), 2, + anon_sym_CARET, anon_sym_xor, - anon_sym_bitand, + ACTIONS(6629), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6623), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_not_eq, - [105293] = 12, + ACTIONS(6625), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [140598] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, + ACTIONS(5497), 1, anon_sym_DOT, - ACTIONS(4816), 1, + ACTIONS(5499), 1, anon_sym_DASH_GT, - ACTIONS(5747), 1, + ACTIONS(6724), 1, anon_sym_SLASH, - STATE(2475), 1, + STATE(2996), 1, sym_argument_list, - ACTIONS(5723), 2, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5745), 2, + ACTIONS(6722), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(4883), 5, + ACTIONS(5489), 7, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(4881), 21, + ACTIONS(5487), 19, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, @@ -319911,8 +424142,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -319921,638 +424151,556 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - [105357] = 3, + [140658] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 11, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(4978), 1, + anon_sym_LPAREN2, + ACTIONS(5493), 1, + anon_sym_LBRACK, + ACTIONS(5497), 1, + anon_sym_DOT, + ACTIONS(5499), 1, + anon_sym_DASH_GT, + ACTIONS(6724), 1, anon_sym_SLASH, + ACTIONS(6730), 1, anon_sym_PIPE, + ACTIONS(6734), 1, anon_sym_AMP, - anon_sym_GT, + ACTIONS(6740), 1, anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(1735), 27, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(6748), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6750), 1, + anon_sym_bitor, + ACTIONS(6752), 1, + anon_sym_bitand, + STATE(2996), 1, + sym_argument_list, + ACTIONS(6585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6720), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6722), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(6726), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6728), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6732), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(6742), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6736), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACK, + anon_sym_not_eq, + ACTIONS(6738), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5675), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_QMARK, + [140742] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4978), 1, + anon_sym_LPAREN2, + ACTIONS(5493), 1, + anon_sym_LBRACK, + ACTIONS(5497), 1, + anon_sym_DOT, + ACTIONS(5499), 1, + anon_sym_DASH_GT, + ACTIONS(6724), 1, + anon_sym_SLASH, + ACTIONS(6748), 1, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + STATE(2996), 1, + sym_argument_list, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [105403] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4036), 11, + ACTIONS(6720), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, + ACTIONS(6722), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6742), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5669), 5, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4038), 27, + ACTIONS(5667), 16, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACK, + anon_sym_GT_EQ, + anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [105449] = 23, + [140808] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, + ACTIONS(5497), 1, anon_sym_DOT, - ACTIONS(4816), 1, + ACTIONS(5499), 1, anon_sym_DASH_GT, - ACTIONS(5747), 1, + ACTIONS(6724), 1, anon_sym_SLASH, - ACTIONS(5753), 1, + ACTIONS(6730), 1, anon_sym_PIPE, - ACTIONS(5757), 1, + ACTIONS(6734), 1, anon_sym_AMP, - ACTIONS(5763), 1, + ACTIONS(6740), 1, anon_sym_GT_EQ, - ACTIONS(5767), 1, + ACTIONS(6748), 1, anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, + ACTIONS(6750), 1, anon_sym_bitor, - ACTIONS(5771), 1, + ACTIONS(6752), 1, anon_sym_bitand, - STATE(2475), 1, + STATE(2996), 1, sym_argument_list, - ACTIONS(5723), 2, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, + ACTIONS(6720), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5745), 2, + ACTIONS(6722), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5749), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5751), 2, + ACTIONS(6728), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(5755), 2, + ACTIONS(6732), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(5765), 2, + ACTIONS(6742), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5759), 3, + ACTIONS(6736), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5761), 3, + ACTIONS(6738), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(4975), 6, + ACTIONS(5487), 6, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, anon_sym_QMARK, - [105535] = 13, + anon_sym_or, + [140890] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, + ACTIONS(5497), 1, anon_sym_DOT, - ACTIONS(4816), 1, + ACTIONS(5499), 1, anon_sym_DASH_GT, - ACTIONS(5747), 1, + ACTIONS(6724), 1, anon_sym_SLASH, - STATE(2475), 1, + ACTIONS(6730), 1, + anon_sym_PIPE, + ACTIONS(6734), 1, + anon_sym_AMP, + ACTIONS(6740), 1, + anon_sym_GT_EQ, + ACTIONS(6748), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6750), 1, + anon_sym_bitor, + ACTIONS(6752), 1, + anon_sym_bitand, + STATE(2996), 1, sym_argument_list, - ACTIONS(5723), 2, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, + ACTIONS(6720), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5745), 2, + ACTIONS(6722), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5765), 2, + ACTIONS(6732), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6742), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4883), 5, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(6736), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6738), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(4881), 19, + ACTIONS(5487), 8, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - [105601] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4133), 1, - anon_sym_COLON, - ACTIONS(5445), 1, - anon_sym_LBRACE, - STATE(3216), 1, - sym_field_declaration_list, - STATE(5292), 1, - sym_virtual_specifier, - STATE(5890), 1, - sym_base_class_clause, - ACTIONS(4135), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(4145), 3, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_const, - ACTIONS(4143), 28, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_EQ, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [105659] = 28, + [140970] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(5489), 1, + anon_sym_PIPE, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, + ACTIONS(5497), 1, anon_sym_DOT, - ACTIONS(4816), 1, + ACTIONS(5499), 1, anon_sym_DASH_GT, - ACTIONS(5747), 1, + ACTIONS(6724), 1, anon_sym_SLASH, - ACTIONS(5753), 1, - anon_sym_PIPE, - ACTIONS(5757), 1, + ACTIONS(6734), 1, anon_sym_AMP, - ACTIONS(5763), 1, + ACTIONS(6740), 1, anon_sym_GT_EQ, - ACTIONS(5767), 1, + ACTIONS(6748), 1, anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, - anon_sym_bitor, - ACTIONS(5771), 1, + ACTIONS(6752), 1, anon_sym_bitand, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - ACTIONS(5787), 1, - anon_sym_COMMA, - ACTIONS(5789), 1, - anon_sym_SEMI, - ACTIONS(5791), 1, - anon_sym_RBRACE, - STATE(2475), 1, + STATE(2996), 1, sym_argument_list, - STATE(5458), 1, - aux_sym_initializer_list_repeat1, - ACTIONS(5723), 2, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, + ACTIONS(6720), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5745), 2, + ACTIONS(6722), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5749), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5751), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5755), 2, + ACTIONS(6732), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(5765), 2, + ACTIONS(6742), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5759), 3, + ACTIONS(6736), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5761), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [105755] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4105), 11, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(6738), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4107), 27, + ACTIONS(5487), 9, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, anon_sym_bitor, - anon_sym_xor, + [141048] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4978), 1, + anon_sym_LPAREN2, + ACTIONS(5489), 1, + anon_sym_PIPE, + ACTIONS(5493), 1, + anon_sym_LBRACK, + ACTIONS(5497), 1, + anon_sym_DOT, + ACTIONS(5499), 1, + anon_sym_DASH_GT, + ACTIONS(6724), 1, + anon_sym_SLASH, + ACTIONS(6734), 1, + anon_sym_AMP, + ACTIONS(6740), 1, + anon_sym_GT_EQ, + ACTIONS(6748), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6752), 1, anon_sym_bitand, - anon_sym_not_eq, + STATE(2996), 1, + sym_argument_list, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [105801] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4095), 11, + ACTIONS(6720), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(6722), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6742), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6736), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6738), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4097), 27, + ACTIONS(5487), 11, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [105847] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5445), 1, - anon_sym_LBRACE, - ACTIONS(5447), 1, - anon_sym_COLON, - ACTIONS(5793), 1, - anon_sym_SEMI, - STATE(3221), 1, - sym_field_declaration_list, - STATE(5346), 1, - sym_virtual_specifier, - STATE(5854), 1, - sym_base_class_clause, - ACTIONS(5449), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(4158), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(4160), 24, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - [105907] = 23, + [141124] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, + ACTIONS(5497), 1, anon_sym_DOT, - ACTIONS(4816), 1, + ACTIONS(5499), 1, anon_sym_DASH_GT, - ACTIONS(5747), 1, + ACTIONS(6724), 1, anon_sym_SLASH, - ACTIONS(5753), 1, - anon_sym_PIPE, - ACTIONS(5757), 1, - anon_sym_AMP, - ACTIONS(5763), 1, + ACTIONS(6740), 1, anon_sym_GT_EQ, - ACTIONS(5767), 1, + ACTIONS(6748), 1, anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, - anon_sym_bitor, - ACTIONS(5771), 1, - anon_sym_bitand, - STATE(2475), 1, + STATE(2996), 1, sym_argument_list, - ACTIONS(5723), 2, + ACTIONS(5489), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, + ACTIONS(6720), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5745), 2, + ACTIONS(6722), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5749), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5751), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5755), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5765), 2, + ACTIONS(6742), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5759), 3, + ACTIONS(6736), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5761), 3, + ACTIONS(6738), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(4818), 6, + ACTIONS(5487), 12, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_RBRACK, anon_sym_QMARK, - [105993] = 3, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + [141196] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(4046), 11, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(4978), 1, + anon_sym_LPAREN2, + ACTIONS(5493), 1, + anon_sym_LBRACK, + ACTIONS(5497), 1, + anon_sym_DOT, + ACTIONS(5499), 1, + anon_sym_DASH_GT, + ACTIONS(6724), 1, anon_sym_SLASH, + ACTIONS(6740), 1, + anon_sym_GT_EQ, + ACTIONS(6748), 1, + anon_sym_LT_EQ_GT, + STATE(2996), 1, + sym_argument_list, + ACTIONS(5489), 2, anon_sym_PIPE, anon_sym_AMP, + ACTIONS(6585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6720), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6722), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6742), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6738), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4048), 27, + ACTIONS(5487), 15, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [106039] = 3, + [141266] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(4046), 11, + ACTIONS(4978), 1, + anon_sym_LPAREN2, + ACTIONS(5493), 1, + anon_sym_LBRACK, + ACTIONS(5497), 1, + anon_sym_DOT, + ACTIONS(5499), 1, + anon_sym_DASH_GT, + ACTIONS(6724), 1, + anon_sym_SLASH, + ACTIONS(6748), 1, + anon_sym_LT_EQ_GT, + STATE(2996), 1, + sym_argument_list, + ACTIONS(6585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6720), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, + ACTIONS(6722), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6742), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5489), 5, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4048), 27, + ACTIONS(5487), 16, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACK, + anon_sym_GT_EQ, + anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [106085] = 3, + [141332] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(4042), 11, + ACTIONS(4978), 1, + anon_sym_LPAREN2, + ACTIONS(5493), 1, + anon_sym_LBRACK, + ACTIONS(5497), 1, + anon_sym_DOT, + ACTIONS(5499), 1, + anon_sym_DASH_GT, + ACTIONS(6724), 1, + anon_sym_SLASH, + STATE(2996), 1, + sym_argument_list, + ACTIONS(6585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6720), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, + ACTIONS(6722), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5489), 5, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4044), 27, + ACTIONS(5487), 19, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, - anon_sym_LBRACK, + anon_sym_GT_GT, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -320561,97 +424709,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [106131] = 10, + [141394] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(5445), 1, - anon_sym_LBRACE, - ACTIONS(5447), 1, - anon_sym_COLON, - ACTIONS(5795), 1, - anon_sym_SEMI, - STATE(3221), 1, - sym_field_declaration_list, - STATE(5346), 1, - sym_virtual_specifier, - STATE(5854), 1, - sym_base_class_clause, - ACTIONS(5449), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(4158), 6, + ACTIONS(4978), 1, anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(4160), 24, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + ACTIONS(5493), 1, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - [106191] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3025), 1, - anon_sym_LBRACE, - ACTIONS(5477), 1, - anon_sym_LPAREN2, - STATE(3700), 2, + ACTIONS(5497), 1, + anon_sym_DOT, + ACTIONS(5499), 1, + anon_sym_DASH_GT, + ACTIONS(6724), 1, + anon_sym_SLASH, + STATE(2996), 1, sym_argument_list, - sym_initializer_list, - ACTIONS(4411), 11, + ACTIONS(6585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6720), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, + ACTIONS(6722), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6742), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5489), 5, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4409), 23, + ACTIONS(5487), 17, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACK, + anon_sym_GT_EQ, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -320660,3228 +424760,2316 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [106243] = 27, + [141458] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4385), 1, + ACTIONS(5212), 1, anon_sym_LPAREN2, - ACTIONS(5211), 1, + ACTIONS(5982), 1, anon_sym_LBRACK, - ACTIONS(5217), 1, + ACTIONS(5986), 1, anon_sym_DOT, - ACTIONS(5219), 1, + ACTIONS(5988), 1, anon_sym_DASH_GT, - ACTIONS(5797), 1, + ACTIONS(6670), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5799), 1, - anon_sym_COMMA, - ACTIONS(5805), 1, + ACTIONS(6678), 1, anon_sym_SLASH, - ACTIONS(5811), 1, + ACTIONS(6684), 1, anon_sym_PIPE, - ACTIONS(5815), 1, + ACTIONS(6688), 1, anon_sym_AMP, - ACTIONS(5821), 1, + ACTIONS(6694), 1, anon_sym_LT_LT, - ACTIONS(5823), 1, + ACTIONS(6696), 1, anon_sym_GT_GT, - ACTIONS(5825), 1, + ACTIONS(6698), 1, anon_sym_QMARK, - ACTIONS(5827), 1, + ACTIONS(6700), 1, anon_sym_LT_EQ_GT, - ACTIONS(5829), 1, + ACTIONS(6702), 1, anon_sym_bitor, - ACTIONS(5831), 1, + ACTIONS(6704), 1, anon_sym_bitand, - ACTIONS(5835), 1, - anon_sym_GT2, - STATE(3010), 1, + STATE(3506), 1, sym_argument_list, - STATE(5569), 1, - aux_sym_template_argument_list_repeat1, - ACTIONS(5801), 2, + ACTIONS(6674), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5803), 2, + ACTIONS(6676), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5807), 2, + ACTIONS(6680), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(5809), 2, + ACTIONS(6682), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(5813), 2, + ACTIONS(6686), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(5833), 2, + ACTIONS(6706), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5817), 3, + ACTIONS(6943), 2, + anon_sym_COMMA, + anon_sym_GT2, + ACTIONS(6690), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5819), 4, + ACTIONS(6692), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [106336] = 27, + [141546] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, + ACTIONS(5497), 1, anon_sym_DOT, - ACTIONS(4816), 1, + ACTIONS(5499), 1, anon_sym_DASH_GT, - ACTIONS(5747), 1, - anon_sym_SLASH, - ACTIONS(5753), 1, - anon_sym_PIPE, - ACTIONS(5757), 1, - anon_sym_AMP, - ACTIONS(5763), 1, - anon_sym_GT_EQ, - ACTIONS(5767), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, - anon_sym_bitor, - ACTIONS(5771), 1, - anon_sym_bitand, - ACTIONS(5773), 1, + ACTIONS(6605), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - ACTIONS(5837), 1, - anon_sym_COMMA, - ACTIONS(5840), 1, - anon_sym_SEMI, - ACTIONS(5842), 1, - anon_sym_RBRACE, - STATE(2475), 1, - sym_argument_list, - ACTIONS(5723), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5745), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5749), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5751), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5755), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5765), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5759), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5761), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [106429] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4674), 10, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_DASH_GT, - ACTIONS(4672), 27, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_operator, - anon_sym_try, - anon_sym_noexcept, - anon_sym_throw, - anon_sym_requires, - [106474] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4166), 1, - anon_sym_LPAREN2, - ACTIONS(4798), 1, - anon_sym_LBRACK, - ACTIONS(4814), 1, - anon_sym_DOT, - ACTIONS(4816), 1, - anon_sym_DASH_GT, - ACTIONS(5747), 1, + ACTIONS(6611), 1, anon_sym_SLASH, - ACTIONS(5753), 1, + ACTIONS(6617), 1, anon_sym_PIPE, - ACTIONS(5757), 1, + ACTIONS(6621), 1, anon_sym_AMP, - ACTIONS(5763), 1, + ACTIONS(6627), 1, anon_sym_GT_EQ, - ACTIONS(5767), 1, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, + ACTIONS(6635), 1, anon_sym_bitor, - ACTIONS(5771), 1, + ACTIONS(6637), 1, anon_sym_bitand, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - ACTIONS(5844), 1, + ACTIONS(6823), 1, anon_sym_COMMA, - ACTIONS(5846), 1, - anon_sym_RPAREN, - STATE(2475), 1, + ACTIONS(7039), 1, + anon_sym_SEMI, + STATE(2996), 1, sym_argument_list, - STATE(5589), 1, - aux_sym_argument_list_repeat1, - ACTIONS(5723), 2, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, + ACTIONS(6607), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5745), 2, + ACTIONS(6609), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5749), 2, + ACTIONS(6613), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(5751), 2, + ACTIONS(6615), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(5755), 2, + ACTIONS(6619), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(5765), 2, + ACTIONS(6629), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5759), 3, + ACTIONS(6623), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5761), 3, + ACTIONS(6625), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [106567] = 27, + [141636] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4385), 1, + ACTIONS(5212), 1, anon_sym_LPAREN2, - ACTIONS(5211), 1, + ACTIONS(5982), 1, anon_sym_LBRACK, - ACTIONS(5217), 1, + ACTIONS(5986), 1, anon_sym_DOT, - ACTIONS(5219), 1, + ACTIONS(5988), 1, anon_sym_DASH_GT, - ACTIONS(5797), 1, + ACTIONS(6670), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5799), 1, - anon_sym_COMMA, - ACTIONS(5805), 1, + ACTIONS(6678), 1, anon_sym_SLASH, - ACTIONS(5811), 1, + ACTIONS(6684), 1, anon_sym_PIPE, - ACTIONS(5815), 1, + ACTIONS(6688), 1, anon_sym_AMP, - ACTIONS(5821), 1, + ACTIONS(6694), 1, anon_sym_LT_LT, - ACTIONS(5823), 1, + ACTIONS(6696), 1, anon_sym_GT_GT, - ACTIONS(5825), 1, + ACTIONS(6698), 1, anon_sym_QMARK, - ACTIONS(5827), 1, + ACTIONS(6700), 1, anon_sym_LT_EQ_GT, - ACTIONS(5829), 1, + ACTIONS(6702), 1, anon_sym_bitor, - ACTIONS(5831), 1, + ACTIONS(6704), 1, anon_sym_bitand, - ACTIONS(5848), 1, - anon_sym_GT2, - STATE(3010), 1, + STATE(3506), 1, sym_argument_list, - STATE(5612), 1, - aux_sym_template_argument_list_repeat1, - ACTIONS(5801), 2, + ACTIONS(6674), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5803), 2, + ACTIONS(6676), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5807), 2, + ACTIONS(6680), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(5809), 2, + ACTIONS(6682), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(5813), 2, + ACTIONS(6686), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(5833), 2, + ACTIONS(6706), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5817), 3, + ACTIONS(7041), 2, + anon_sym_COMMA, + anon_sym_GT2, + ACTIONS(6690), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5819), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [106660] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5479), 1, - anon_sym_LBRACK, - STATE(3661), 1, - sym_new_declarator, - ACTIONS(4662), 11, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(6692), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4660), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [106709] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5850), 1, - anon_sym_LBRACE, - STATE(3680), 1, - sym_enumerator_list, - ACTIONS(4347), 8, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(4349), 27, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [106758] = 27, + [141724] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, + ACTIONS(5497), 1, anon_sym_DOT, - ACTIONS(4816), 1, + ACTIONS(5499), 1, anon_sym_DASH_GT, - ACTIONS(5747), 1, + ACTIONS(6724), 1, anon_sym_SLASH, - ACTIONS(5753), 1, + ACTIONS(6730), 1, anon_sym_PIPE, - ACTIONS(5757), 1, + ACTIONS(6734), 1, anon_sym_AMP, - ACTIONS(5763), 1, + ACTIONS(6740), 1, anon_sym_GT_EQ, - ACTIONS(5767), 1, + ACTIONS(6748), 1, anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, + ACTIONS(6750), 1, anon_sym_bitor, - ACTIONS(5771), 1, + ACTIONS(6752), 1, anon_sym_bitand, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - ACTIONS(5844), 1, - anon_sym_COMMA, - ACTIONS(5852), 1, - anon_sym_RPAREN, - STATE(2475), 1, + STATE(2996), 1, sym_argument_list, - STATE(5400), 1, - aux_sym_argument_list_repeat1, - ACTIONS(5723), 2, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, + ACTIONS(6720), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5745), 2, + ACTIONS(6722), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5749), 2, + ACTIONS(6726), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(5751), 2, + ACTIONS(6728), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(5755), 2, + ACTIONS(6732), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(5765), 2, + ACTIONS(6742), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5759), 3, + ACTIONS(6736), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5761), 3, + ACTIONS(6738), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [106851] = 27, + ACTIONS(5762), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_QMARK, + [141808] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, + ACTIONS(5497), 1, anon_sym_DOT, - ACTIONS(4816), 1, + ACTIONS(5499), 1, anon_sym_DASH_GT, - ACTIONS(5747), 1, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6724), 1, anon_sym_SLASH, - ACTIONS(5753), 1, + ACTIONS(6730), 1, anon_sym_PIPE, - ACTIONS(5757), 1, + ACTIONS(6734), 1, anon_sym_AMP, - ACTIONS(5763), 1, + ACTIONS(6740), 1, anon_sym_GT_EQ, - ACTIONS(5767), 1, + ACTIONS(6746), 1, + anon_sym_QMARK, + ACTIONS(6748), 1, anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, + ACTIONS(6750), 1, anon_sym_bitor, - ACTIONS(5771), 1, + ACTIONS(6752), 1, anon_sym_bitand, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - ACTIONS(5844), 1, - anon_sym_COMMA, - ACTIONS(5854), 1, - anon_sym_RPAREN, - STATE(2475), 1, + STATE(2996), 1, sym_argument_list, - STATE(5620), 1, - aux_sym_argument_list_repeat1, - ACTIONS(5723), 2, + ACTIONS(5631), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, + ACTIONS(6720), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5745), 2, + ACTIONS(6722), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5749), 2, + ACTIONS(6726), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(5751), 2, + ACTIONS(6728), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(5755), 2, + ACTIONS(6732), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(5765), 2, + ACTIONS(6742), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5759), 3, + ACTIONS(6736), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5761), 3, + ACTIONS(6738), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [106944] = 27, + [141896] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, + ACTIONS(5497), 1, anon_sym_DOT, - ACTIONS(4816), 1, + ACTIONS(5499), 1, anon_sym_DASH_GT, - ACTIONS(5747), 1, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, anon_sym_SLASH, - ACTIONS(5753), 1, + ACTIONS(6617), 1, anon_sym_PIPE, - ACTIONS(5757), 1, + ACTIONS(6621), 1, anon_sym_AMP, - ACTIONS(5763), 1, + ACTIONS(6627), 1, anon_sym_GT_EQ, - ACTIONS(5767), 1, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, + ACTIONS(6635), 1, anon_sym_bitor, - ACTIONS(5771), 1, + ACTIONS(6637), 1, anon_sym_bitand, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - ACTIONS(5856), 1, + ACTIONS(6823), 1, anon_sym_COMMA, - ACTIONS(5858), 1, - anon_sym_RBRACE, - STATE(2475), 1, + ACTIONS(7043), 1, + anon_sym_RPAREN, + STATE(2996), 1, sym_argument_list, - STATE(5628), 1, - aux_sym_initializer_list_repeat1, - ACTIONS(5723), 2, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, + ACTIONS(6607), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5745), 2, + ACTIONS(6609), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5749), 2, + ACTIONS(6613), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(5751), 2, + ACTIONS(6615), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(5755), 2, + ACTIONS(6619), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(5765), 2, + ACTIONS(6629), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5759), 3, + ACTIONS(6623), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5761), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [107037] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3875), 2, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - ACTIONS(3877), 11, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(6625), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(3882), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [107084] = 27, + [141986] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4385), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(5211), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(5217), 1, + ACTIONS(5497), 1, anon_sym_DOT, - ACTIONS(5219), 1, + ACTIONS(5499), 1, anon_sym_DASH_GT, - ACTIONS(5797), 1, + ACTIONS(6605), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5799), 1, - anon_sym_COMMA, - ACTIONS(5805), 1, + ACTIONS(6611), 1, anon_sym_SLASH, - ACTIONS(5811), 1, + ACTIONS(6617), 1, anon_sym_PIPE, - ACTIONS(5815), 1, + ACTIONS(6621), 1, anon_sym_AMP, - ACTIONS(5821), 1, - anon_sym_LT_LT, - ACTIONS(5823), 1, - anon_sym_GT_GT, - ACTIONS(5825), 1, + ACTIONS(6627), 1, + anon_sym_GT_EQ, + ACTIONS(6631), 1, anon_sym_QMARK, - ACTIONS(5827), 1, + ACTIONS(6633), 1, anon_sym_LT_EQ_GT, - ACTIONS(5829), 1, + ACTIONS(6635), 1, anon_sym_bitor, - ACTIONS(5831), 1, + ACTIONS(6637), 1, anon_sym_bitand, - ACTIONS(5860), 1, - anon_sym_GT2, - STATE(3010), 1, + ACTIONS(6823), 1, + anon_sym_COMMA, + ACTIONS(7045), 1, + anon_sym_RPAREN, + STATE(2996), 1, sym_argument_list, - STATE(5375), 1, - aux_sym_template_argument_list_repeat1, - ACTIONS(5801), 2, + ACTIONS(6585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6607), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5803), 2, + ACTIONS(6609), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5807), 2, + ACTIONS(6613), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(5809), 2, + ACTIONS(6615), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(5813), 2, + ACTIONS(6619), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(5833), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5817), 3, + ACTIONS(6629), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6623), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5819), 4, + ACTIONS(6625), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [107177] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(59), 1, - anon_sym_const, - ACTIONS(5864), 1, - anon_sym_LPAREN2, - ACTIONS(5866), 1, - anon_sym_STAR, - ACTIONS(5868), 1, - anon_sym_AMP_AMP, - ACTIONS(5870), 1, - anon_sym_AMP, - ACTIONS(5872), 1, - anon_sym_LBRACK, - ACTIONS(5874), 1, - sym_auto, - ACTIONS(5876), 1, - anon_sym_decltype, - STATE(3229), 1, - sym_decltype_auto, - STATE(3300), 1, - sym_parameter_list, - STATE(4620), 1, - sym__abstract_declarator, - STATE(4690), 1, - sym__function_declarator_seq, - STATE(3871), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(4686), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(5661), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - ACTIONS(5862), 11, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [107250] = 27, + [142076] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, + ACTIONS(5497), 1, anon_sym_DOT, - ACTIONS(4816), 1, + ACTIONS(5499), 1, anon_sym_DASH_GT, - ACTIONS(5747), 1, + ACTIONS(6724), 1, anon_sym_SLASH, - ACTIONS(5753), 1, + ACTIONS(6730), 1, anon_sym_PIPE, - ACTIONS(5757), 1, + ACTIONS(6734), 1, anon_sym_AMP, - ACTIONS(5763), 1, + ACTIONS(6740), 1, anon_sym_GT_EQ, - ACTIONS(5767), 1, + ACTIONS(6748), 1, anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, + ACTIONS(6750), 1, anon_sym_bitor, - ACTIONS(5771), 1, + ACTIONS(6752), 1, anon_sym_bitand, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - ACTIONS(5878), 1, - anon_sym_COMMA, - ACTIONS(5880), 1, - anon_sym_RBRACE, - STATE(2475), 1, + STATE(2996), 1, sym_argument_list, - STATE(5393), 1, - aux_sym_initializer_list_repeat1, - ACTIONS(5723), 2, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, + ACTIONS(6720), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5745), 2, + ACTIONS(6722), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5749), 2, + ACTIONS(6726), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(5751), 2, + ACTIONS(6728), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(5755), 2, + ACTIONS(6732), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(5765), 2, + ACTIONS(6742), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5759), 3, + ACTIONS(6736), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5761), 3, + ACTIONS(6738), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [107343] = 27, + ACTIONS(5641), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_QMARK, + [142160] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4385), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(5211), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(5217), 1, + ACTIONS(5497), 1, anon_sym_DOT, - ACTIONS(5219), 1, + ACTIONS(5499), 1, anon_sym_DASH_GT, - ACTIONS(5797), 1, + ACTIONS(6605), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5799), 1, - anon_sym_COMMA, - ACTIONS(5805), 1, + ACTIONS(6611), 1, anon_sym_SLASH, - ACTIONS(5811), 1, + ACTIONS(6617), 1, anon_sym_PIPE, - ACTIONS(5815), 1, + ACTIONS(6621), 1, anon_sym_AMP, - ACTIONS(5821), 1, - anon_sym_LT_LT, - ACTIONS(5823), 1, - anon_sym_GT_GT, - ACTIONS(5825), 1, + ACTIONS(6627), 1, + anon_sym_GT_EQ, + ACTIONS(6631), 1, anon_sym_QMARK, - ACTIONS(5827), 1, + ACTIONS(6633), 1, anon_sym_LT_EQ_GT, - ACTIONS(5829), 1, + ACTIONS(6635), 1, anon_sym_bitor, - ACTIONS(5831), 1, + ACTIONS(6637), 1, anon_sym_bitand, - ACTIONS(5882), 1, - anon_sym_GT2, - STATE(3010), 1, + ACTIONS(6823), 1, + anon_sym_COMMA, + ACTIONS(7047), 1, + anon_sym_RPAREN, + STATE(2996), 1, sym_argument_list, - STATE(5392), 1, - aux_sym_template_argument_list_repeat1, - ACTIONS(5801), 2, + ACTIONS(6585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6607), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5803), 2, + ACTIONS(6609), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5807), 2, + ACTIONS(6613), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(5809), 2, + ACTIONS(6615), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(5813), 2, + ACTIONS(6619), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(5833), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5817), 3, + ACTIONS(6629), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6623), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5819), 4, + ACTIONS(6625), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [107436] = 26, + [142250] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, + ACTIONS(5497), 1, anon_sym_DOT, - ACTIONS(4816), 1, + ACTIONS(5499), 1, anon_sym_DASH_GT, - ACTIONS(5747), 1, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, anon_sym_SLASH, - ACTIONS(5753), 1, + ACTIONS(6617), 1, anon_sym_PIPE, - ACTIONS(5757), 1, + ACTIONS(6621), 1, anon_sym_AMP, - ACTIONS(5763), 1, + ACTIONS(6627), 1, anon_sym_GT_EQ, - ACTIONS(5767), 1, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, + ACTIONS(6635), 1, anon_sym_bitor, - ACTIONS(5771), 1, + ACTIONS(6637), 1, anon_sym_bitand, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - ACTIONS(5886), 1, + ACTIONS(6823), 1, + anon_sym_COMMA, + ACTIONS(7049), 1, anon_sym_RPAREN, - STATE(2475), 1, + STATE(2996), 1, sym_argument_list, - ACTIONS(5723), 2, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, + ACTIONS(6607), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5745), 2, + ACTIONS(6609), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5749), 2, + ACTIONS(6613), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(5751), 2, + ACTIONS(6615), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(5755), 2, + ACTIONS(6619), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(5765), 2, + ACTIONS(6629), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5884), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(5759), 3, + ACTIONS(6623), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5761), 3, + ACTIONS(6625), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [107527] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(59), 1, - anon_sym_const, - ACTIONS(5864), 1, - anon_sym_LPAREN2, - ACTIONS(5866), 1, - anon_sym_STAR, - ACTIONS(5868), 1, - anon_sym_AMP_AMP, - ACTIONS(5870), 1, - anon_sym_AMP, - ACTIONS(5872), 1, - anon_sym_LBRACK, - ACTIONS(5874), 1, - sym_auto, - ACTIONS(5876), 1, - anon_sym_decltype, - STATE(3229), 1, - sym_decltype_auto, - STATE(3300), 1, - sym_parameter_list, - STATE(4610), 1, - sym__abstract_declarator, - STATE(4690), 1, - sym__function_declarator_seq, - STATE(3875), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(4686), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(5661), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - ACTIONS(5888), 11, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [107600] = 27, + [142340] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, + ACTIONS(5497), 1, anon_sym_DOT, - ACTIONS(4816), 1, + ACTIONS(5499), 1, anon_sym_DASH_GT, - ACTIONS(5747), 1, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, anon_sym_SLASH, - ACTIONS(5753), 1, + ACTIONS(6617), 1, anon_sym_PIPE, - ACTIONS(5757), 1, + ACTIONS(6621), 1, anon_sym_AMP, - ACTIONS(5763), 1, + ACTIONS(6627), 1, anon_sym_GT_EQ, - ACTIONS(5767), 1, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, + ACTIONS(6635), 1, anon_sym_bitor, - ACTIONS(5771), 1, + ACTIONS(6637), 1, anon_sym_bitand, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - ACTIONS(5844), 1, + ACTIONS(6823), 1, anon_sym_COMMA, - ACTIONS(5890), 1, + ACTIONS(7051), 1, anon_sym_RPAREN, - STATE(2475), 1, + STATE(2996), 1, sym_argument_list, - STATE(5610), 1, - aux_sym_argument_list_repeat1, - ACTIONS(5723), 2, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, + ACTIONS(6607), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5745), 2, + ACTIONS(6609), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5749), 2, + ACTIONS(6613), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(5751), 2, + ACTIONS(6615), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(5755), 2, + ACTIONS(6619), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(5765), 2, + ACTIONS(6629), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5759), 3, + ACTIONS(6623), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5761), 3, + ACTIONS(6625), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [107693] = 27, + [142430] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, + ACTIONS(5497), 1, anon_sym_DOT, - ACTIONS(4816), 1, + ACTIONS(5499), 1, anon_sym_DASH_GT, - ACTIONS(5747), 1, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, anon_sym_SLASH, - ACTIONS(5753), 1, + ACTIONS(6617), 1, anon_sym_PIPE, - ACTIONS(5757), 1, + ACTIONS(6621), 1, anon_sym_AMP, - ACTIONS(5763), 1, + ACTIONS(6627), 1, anon_sym_GT_EQ, - ACTIONS(5767), 1, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, + ACTIONS(6635), 1, anon_sym_bitor, - ACTIONS(5771), 1, + ACTIONS(6637), 1, anon_sym_bitand, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - ACTIONS(5892), 1, + ACTIONS(6823), 1, anon_sym_COMMA, - ACTIONS(5894), 1, - anon_sym_RBRACE, - STATE(2475), 1, + ACTIONS(7053), 1, + anon_sym_SEMI, + STATE(2996), 1, sym_argument_list, - STATE(5551), 1, - aux_sym_initializer_list_repeat1, - ACTIONS(5723), 2, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, + ACTIONS(6607), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5745), 2, + ACTIONS(6609), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5749), 2, + ACTIONS(6613), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(5751), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5755), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5765), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5759), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5761), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [107786] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(59), 1, - anon_sym_const, - ACTIONS(4214), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5653), 1, - anon_sym_AMP_AMP, - ACTIONS(5655), 1, - anon_sym_AMP, - ACTIONS(5657), 1, - anon_sym___attribute__, - ACTIONS(5659), 1, - anon_sym_LBRACK, - ACTIONS(5665), 1, - anon_sym_noexcept, - ACTIONS(5667), 1, - anon_sym_throw, - ACTIONS(5896), 1, - anon_sym_DASH_GT, - ACTIONS(5900), 1, - anon_sym_requires, - STATE(4287), 1, - sym_ref_qualifier, - STATE(4794), 1, - sym_requires_clause, - STATE(4838), 1, - sym_trailing_return_type, - ACTIONS(5898), 2, - anon_sym_final, - anon_sym_override, - STATE(3483), 2, - sym_attribute_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(3867), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(4468), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(4469), 2, - sym_noexcept, - sym_throw_specifier, - STATE(4631), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat2, - ACTIONS(5651), 5, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - ACTIONS(5661), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [107869] = 27, + ACTIONS(6615), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6619), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6629), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6623), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6625), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [142520] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4385), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(5211), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(5217), 1, + ACTIONS(5497), 1, anon_sym_DOT, - ACTIONS(5219), 1, + ACTIONS(5499), 1, anon_sym_DASH_GT, - ACTIONS(5797), 1, + ACTIONS(6605), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5799), 1, - anon_sym_COMMA, - ACTIONS(5805), 1, + ACTIONS(6611), 1, anon_sym_SLASH, - ACTIONS(5811), 1, + ACTIONS(6617), 1, anon_sym_PIPE, - ACTIONS(5815), 1, + ACTIONS(6621), 1, anon_sym_AMP, - ACTIONS(5821), 1, - anon_sym_LT_LT, - ACTIONS(5823), 1, - anon_sym_GT_GT, - ACTIONS(5825), 1, + ACTIONS(6627), 1, + anon_sym_GT_EQ, + ACTIONS(6631), 1, anon_sym_QMARK, - ACTIONS(5827), 1, + ACTIONS(6633), 1, anon_sym_LT_EQ_GT, - ACTIONS(5829), 1, + ACTIONS(6635), 1, anon_sym_bitor, - ACTIONS(5831), 1, + ACTIONS(6637), 1, anon_sym_bitand, - ACTIONS(5902), 1, - anon_sym_GT2, - STATE(3010), 1, + ACTIONS(6823), 1, + anon_sym_COMMA, + ACTIONS(7055), 1, + anon_sym_RPAREN, + STATE(2996), 1, sym_argument_list, - STATE(5639), 1, - aux_sym_template_argument_list_repeat1, - ACTIONS(5801), 2, + ACTIONS(6585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6607), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5803), 2, + ACTIONS(6609), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5807), 2, + ACTIONS(6613), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(5809), 2, + ACTIONS(6615), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(5813), 2, + ACTIONS(6619), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(5833), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5817), 3, + ACTIONS(6629), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6623), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5819), 4, + ACTIONS(6625), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [107962] = 27, + [142610] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, + ACTIONS(5497), 1, anon_sym_DOT, - ACTIONS(4816), 1, + ACTIONS(5499), 1, anon_sym_DASH_GT, - ACTIONS(5747), 1, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, anon_sym_SLASH, - ACTIONS(5753), 1, + ACTIONS(6617), 1, anon_sym_PIPE, - ACTIONS(5757), 1, + ACTIONS(6621), 1, anon_sym_AMP, - ACTIONS(5763), 1, + ACTIONS(6627), 1, anon_sym_GT_EQ, - ACTIONS(5767), 1, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, + ACTIONS(6635), 1, anon_sym_bitor, - ACTIONS(5771), 1, + ACTIONS(6637), 1, anon_sym_bitand, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - ACTIONS(5904), 1, + ACTIONS(6823), 1, anon_sym_COMMA, - ACTIONS(5906), 1, - anon_sym_RBRACE, - STATE(2475), 1, + ACTIONS(7057), 1, + anon_sym_RPAREN, + STATE(2996), 1, sym_argument_list, - STATE(5666), 1, - aux_sym_initializer_list_repeat1, - ACTIONS(5723), 2, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, + ACTIONS(6607), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5745), 2, + ACTIONS(6609), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5749), 2, + ACTIONS(6613), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(5751), 2, + ACTIONS(6615), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(5755), 2, + ACTIONS(6619), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(5765), 2, + ACTIONS(6629), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5759), 3, + ACTIONS(6623), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5761), 3, + ACTIONS(6625), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [108055] = 27, + [142700] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, + ACTIONS(5497), 1, anon_sym_DOT, - ACTIONS(4816), 1, + ACTIONS(5499), 1, anon_sym_DASH_GT, - ACTIONS(5773), 1, + ACTIONS(6605), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5908), 1, - anon_sym_COMMA, - ACTIONS(5914), 1, + ACTIONS(6611), 1, anon_sym_SLASH, - ACTIONS(5920), 1, + ACTIONS(6617), 1, anon_sym_PIPE, - ACTIONS(5924), 1, + ACTIONS(6621), 1, anon_sym_AMP, - ACTIONS(5930), 1, + ACTIONS(6627), 1, anon_sym_GT_EQ, - ACTIONS(5934), 1, - anon_sym_RBRACK, - ACTIONS(5936), 1, + ACTIONS(6631), 1, anon_sym_QMARK, - ACTIONS(5938), 1, + ACTIONS(6633), 1, anon_sym_LT_EQ_GT, - ACTIONS(5940), 1, + ACTIONS(6635), 1, anon_sym_bitor, - ACTIONS(5942), 1, + ACTIONS(6637), 1, anon_sym_bitand, - STATE(2475), 1, + ACTIONS(7059), 1, + anon_sym_COMMA, + ACTIONS(7061), 1, + anon_sym_RPAREN, + STATE(2996), 1, sym_argument_list, - STATE(5436), 1, - aux_sym_lambda_capture_specifier_repeat1, - ACTIONS(5723), 2, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5910), 2, + ACTIONS(6607), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5912), 2, + ACTIONS(6609), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5916), 2, + ACTIONS(6613), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(5918), 2, + ACTIONS(6615), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(5922), 2, + ACTIONS(6619), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(5932), 2, + ACTIONS(6629), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5926), 3, + ACTIONS(6623), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5928), 3, + ACTIONS(6625), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [108148] = 27, + [142790] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4385), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(5211), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(5217), 1, + ACTIONS(5497), 1, anon_sym_DOT, - ACTIONS(5219), 1, + ACTIONS(5499), 1, anon_sym_DASH_GT, - ACTIONS(5797), 1, + ACTIONS(6605), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5799), 1, - anon_sym_COMMA, - ACTIONS(5805), 1, + ACTIONS(6611), 1, anon_sym_SLASH, - ACTIONS(5811), 1, + ACTIONS(6617), 1, anon_sym_PIPE, - ACTIONS(5815), 1, + ACTIONS(6621), 1, anon_sym_AMP, - ACTIONS(5821), 1, - anon_sym_LT_LT, - ACTIONS(5823), 1, - anon_sym_GT_GT, - ACTIONS(5825), 1, + ACTIONS(6627), 1, + anon_sym_GT_EQ, + ACTIONS(6631), 1, anon_sym_QMARK, - ACTIONS(5827), 1, + ACTIONS(6633), 1, anon_sym_LT_EQ_GT, - ACTIONS(5829), 1, + ACTIONS(6635), 1, anon_sym_bitor, - ACTIONS(5831), 1, + ACTIONS(6637), 1, anon_sym_bitand, - ACTIONS(5944), 1, - anon_sym_GT2, - STATE(3010), 1, + STATE(2996), 1, sym_argument_list, - STATE(5547), 1, - aux_sym_template_argument_list_repeat1, - ACTIONS(5801), 2, + ACTIONS(6585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6607), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5803), 2, + ACTIONS(6609), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5807), 2, + ACTIONS(6613), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(5809), 2, + ACTIONS(6615), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(5813), 2, + ACTIONS(6619), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(5833), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5817), 3, + ACTIONS(6629), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7063), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(6623), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5819), 4, + ACTIONS(6625), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [108241] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5715), 1, - sym_auto, - ACTIONS(5717), 1, - anon_sym_decltype, - STATE(3606), 1, - sym_decltype_auto, - ACTIONS(4334), 9, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(4336), 25, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [108292] = 27, + [142878] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4385), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(5211), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(5217), 1, + ACTIONS(5497), 1, anon_sym_DOT, - ACTIONS(5219), 1, + ACTIONS(5499), 1, anon_sym_DASH_GT, - ACTIONS(5797), 1, + ACTIONS(6605), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5799), 1, - anon_sym_COMMA, - ACTIONS(5805), 1, + ACTIONS(6611), 1, anon_sym_SLASH, - ACTIONS(5811), 1, + ACTIONS(6617), 1, anon_sym_PIPE, - ACTIONS(5815), 1, + ACTIONS(6621), 1, anon_sym_AMP, - ACTIONS(5821), 1, - anon_sym_LT_LT, - ACTIONS(5823), 1, - anon_sym_GT_GT, - ACTIONS(5825), 1, + ACTIONS(6627), 1, + anon_sym_GT_EQ, + ACTIONS(6631), 1, anon_sym_QMARK, - ACTIONS(5827), 1, + ACTIONS(6633), 1, anon_sym_LT_EQ_GT, - ACTIONS(5829), 1, + ACTIONS(6635), 1, anon_sym_bitor, - ACTIONS(5831), 1, + ACTIONS(6637), 1, anon_sym_bitand, - ACTIONS(5946), 1, - anon_sym_GT2, - STATE(3010), 1, + ACTIONS(6823), 1, + anon_sym_COMMA, + ACTIONS(7065), 1, + anon_sym_RPAREN, + STATE(2996), 1, sym_argument_list, - STATE(5634), 1, - aux_sym_template_argument_list_repeat1, - ACTIONS(5801), 2, + ACTIONS(6585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6607), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5803), 2, + ACTIONS(6609), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5807), 2, + ACTIONS(6613), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(5809), 2, + ACTIONS(6615), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(5813), 2, + ACTIONS(6619), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(5833), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5817), 3, + ACTIONS(6629), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6623), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5819), 4, + ACTIONS(6625), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [108385] = 27, + [142968] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, + ACTIONS(5497), 1, anon_sym_DOT, - ACTIONS(4816), 1, + ACTIONS(5499), 1, anon_sym_DASH_GT, - ACTIONS(5747), 1, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, anon_sym_SLASH, - ACTIONS(5753), 1, + ACTIONS(6617), 1, anon_sym_PIPE, - ACTIONS(5757), 1, + ACTIONS(6621), 1, anon_sym_AMP, - ACTIONS(5763), 1, + ACTIONS(6627), 1, anon_sym_GT_EQ, - ACTIONS(5767), 1, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, + ACTIONS(6635), 1, anon_sym_bitor, - ACTIONS(5771), 1, + ACTIONS(6637), 1, anon_sym_bitand, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - ACTIONS(5844), 1, - anon_sym_COMMA, - ACTIONS(5948), 1, - anon_sym_RPAREN, - STATE(2475), 1, + STATE(2996), 1, sym_argument_list, - STATE(5618), 1, - aux_sym_argument_list_repeat1, - ACTIONS(5723), 2, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, + ACTIONS(6607), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5745), 2, + ACTIONS(6609), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5749), 2, + ACTIONS(6613), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(5751), 2, + ACTIONS(6615), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(5755), 2, + ACTIONS(6619), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(5765), 2, + ACTIONS(6629), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5759), 3, + ACTIONS(6773), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(6623), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5761), 3, + ACTIONS(6625), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [108478] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(59), 1, - anon_sym_const, - ACTIONS(4214), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5653), 1, - anon_sym_AMP_AMP, - ACTIONS(5655), 1, - anon_sym_AMP, - ACTIONS(5663), 1, - anon_sym_DASH_GT, - ACTIONS(5665), 1, - anon_sym_noexcept, - ACTIONS(5667), 1, - anon_sym_throw, - ACTIONS(5669), 1, - anon_sym_requires, - ACTIONS(5952), 1, - anon_sym_LBRACK, - STATE(4110), 1, - sym_ref_qualifier, - STATE(4571), 1, - sym_trailing_return_type, - STATE(4723), 1, - sym_requires_clause, - ACTIONS(4135), 2, - anon_sym_final, - anon_sym_override, - STATE(3996), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(4323), 2, - sym_noexcept, - sym_throw_specifier, - STATE(4325), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(4538), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat2, - ACTIONS(5661), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - ACTIONS(5950), 8, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - anon_sym_try, - [108557] = 27, + [143056] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4385), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(5211), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(5217), 1, + ACTIONS(5497), 1, anon_sym_DOT, - ACTIONS(5219), 1, + ACTIONS(5499), 1, anon_sym_DASH_GT, - ACTIONS(5797), 1, + ACTIONS(6605), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5799), 1, - anon_sym_COMMA, - ACTIONS(5805), 1, + ACTIONS(6611), 1, anon_sym_SLASH, - ACTIONS(5811), 1, + ACTIONS(6617), 1, anon_sym_PIPE, - ACTIONS(5815), 1, + ACTIONS(6621), 1, anon_sym_AMP, - ACTIONS(5821), 1, - anon_sym_LT_LT, - ACTIONS(5823), 1, - anon_sym_GT_GT, - ACTIONS(5825), 1, + ACTIONS(6627), 1, + anon_sym_GT_EQ, + ACTIONS(6631), 1, anon_sym_QMARK, - ACTIONS(5827), 1, + ACTIONS(6633), 1, anon_sym_LT_EQ_GT, - ACTIONS(5829), 1, + ACTIONS(6635), 1, anon_sym_bitor, - ACTIONS(5831), 1, + ACTIONS(6637), 1, anon_sym_bitand, - ACTIONS(5954), 1, - anon_sym_GT2, - STATE(3010), 1, + ACTIONS(6823), 1, + anon_sym_COMMA, + ACTIONS(7067), 1, + anon_sym_SEMI, + STATE(2996), 1, sym_argument_list, - STATE(5644), 1, - aux_sym_template_argument_list_repeat1, - ACTIONS(5801), 2, + ACTIONS(6585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6607), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5803), 2, + ACTIONS(6609), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5807), 2, + ACTIONS(6613), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(5809), 2, + ACTIONS(6615), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(5813), 2, + ACTIONS(6619), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(5833), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5817), 3, + ACTIONS(6629), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6623), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5819), 4, + ACTIONS(6625), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [108650] = 27, + [143146] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4385), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(5211), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(5217), 1, + ACTIONS(5497), 1, anon_sym_DOT, - ACTIONS(5219), 1, + ACTIONS(5499), 1, anon_sym_DASH_GT, - ACTIONS(5797), 1, + ACTIONS(6605), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5799), 1, - anon_sym_COMMA, - ACTIONS(5805), 1, + ACTIONS(6611), 1, anon_sym_SLASH, - ACTIONS(5811), 1, + ACTIONS(6617), 1, anon_sym_PIPE, - ACTIONS(5815), 1, + ACTIONS(6621), 1, anon_sym_AMP, - ACTIONS(5821), 1, - anon_sym_LT_LT, - ACTIONS(5823), 1, - anon_sym_GT_GT, - ACTIONS(5825), 1, + ACTIONS(6627), 1, + anon_sym_GT_EQ, + ACTIONS(6631), 1, anon_sym_QMARK, - ACTIONS(5827), 1, + ACTIONS(6633), 1, anon_sym_LT_EQ_GT, - ACTIONS(5829), 1, + ACTIONS(6635), 1, anon_sym_bitor, - ACTIONS(5831), 1, + ACTIONS(6637), 1, anon_sym_bitand, - ACTIONS(5956), 1, - anon_sym_GT2, - STATE(3010), 1, + ACTIONS(6823), 1, + anon_sym_COMMA, + ACTIONS(7069), 1, + anon_sym_SEMI, + STATE(2996), 1, sym_argument_list, - STATE(5579), 1, - aux_sym_template_argument_list_repeat1, - ACTIONS(5801), 2, + ACTIONS(6585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6607), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5803), 2, + ACTIONS(6609), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5807), 2, + ACTIONS(6613), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(5809), 2, + ACTIONS(6615), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(5813), 2, + ACTIONS(6619), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(5833), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5817), 3, + ACTIONS(6629), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6623), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5819), 4, + ACTIONS(6625), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [108743] = 27, + [143236] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4385), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(5211), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(5217), 1, + ACTIONS(5497), 1, anon_sym_DOT, - ACTIONS(5219), 1, + ACTIONS(5499), 1, anon_sym_DASH_GT, - ACTIONS(5797), 1, + ACTIONS(6605), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5799), 1, - anon_sym_COMMA, - ACTIONS(5805), 1, + ACTIONS(6611), 1, anon_sym_SLASH, - ACTIONS(5811), 1, + ACTIONS(6617), 1, anon_sym_PIPE, - ACTIONS(5815), 1, + ACTIONS(6621), 1, anon_sym_AMP, - ACTIONS(5821), 1, - anon_sym_LT_LT, - ACTIONS(5823), 1, - anon_sym_GT_GT, - ACTIONS(5825), 1, + ACTIONS(6627), 1, + anon_sym_GT_EQ, + ACTIONS(6631), 1, anon_sym_QMARK, - ACTIONS(5827), 1, + ACTIONS(6633), 1, anon_sym_LT_EQ_GT, - ACTIONS(5829), 1, + ACTIONS(6635), 1, anon_sym_bitor, - ACTIONS(5831), 1, + ACTIONS(6637), 1, anon_sym_bitand, - ACTIONS(5958), 1, - anon_sym_GT2, - STATE(3010), 1, + ACTIONS(6823), 1, + anon_sym_COMMA, + ACTIONS(7071), 1, + anon_sym_RPAREN, + STATE(2996), 1, sym_argument_list, - STATE(5660), 1, - aux_sym_template_argument_list_repeat1, - ACTIONS(5801), 2, + ACTIONS(6585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6607), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5803), 2, + ACTIONS(6609), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5807), 2, + ACTIONS(6613), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(5809), 2, + ACTIONS(6615), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(5813), 2, + ACTIONS(6619), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(5833), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5817), 3, + ACTIONS(6629), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6623), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5819), 4, + ACTIONS(6625), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [108836] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(59), 1, - anon_sym_const, - ACTIONS(4214), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5653), 1, - anon_sym_AMP_AMP, - ACTIONS(5655), 1, - anon_sym_AMP, - ACTIONS(5663), 1, - anon_sym_DASH_GT, - ACTIONS(5665), 1, - anon_sym_noexcept, - ACTIONS(5667), 1, - anon_sym_throw, - ACTIONS(5669), 1, - anon_sym_requires, - ACTIONS(5675), 1, - anon_sym_LBRACK, - STATE(4108), 1, - sym_ref_qualifier, - STATE(4550), 1, - sym_trailing_return_type, - STATE(4716), 1, - sym_requires_clause, - ACTIONS(4135), 2, - anon_sym_final, - anon_sym_override, - STATE(3996), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(4335), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(4347), 2, - sym_noexcept, - sym_throw_specifier, - STATE(4578), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat2, - ACTIONS(5661), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - ACTIONS(5673), 8, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - anon_sym_try, - [108915] = 27, + [143326] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4385), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(5211), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(5217), 1, + ACTIONS(5497), 1, anon_sym_DOT, - ACTIONS(5219), 1, + ACTIONS(5499), 1, anon_sym_DASH_GT, - ACTIONS(5797), 1, + ACTIONS(6605), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5799), 1, - anon_sym_COMMA, - ACTIONS(5805), 1, + ACTIONS(6611), 1, anon_sym_SLASH, - ACTIONS(5811), 1, + ACTIONS(6617), 1, anon_sym_PIPE, - ACTIONS(5815), 1, + ACTIONS(6621), 1, anon_sym_AMP, - ACTIONS(5821), 1, - anon_sym_LT_LT, - ACTIONS(5823), 1, - anon_sym_GT_GT, - ACTIONS(5825), 1, + ACTIONS(6627), 1, + anon_sym_GT_EQ, + ACTIONS(6631), 1, anon_sym_QMARK, - ACTIONS(5827), 1, + ACTIONS(6633), 1, anon_sym_LT_EQ_GT, - ACTIONS(5829), 1, + ACTIONS(6635), 1, anon_sym_bitor, - ACTIONS(5831), 1, + ACTIONS(6637), 1, anon_sym_bitand, - ACTIONS(5960), 1, - anon_sym_GT2, - STATE(3010), 1, + ACTIONS(7073), 1, + anon_sym_COMMA, + ACTIONS(7075), 1, + anon_sym_RPAREN, + STATE(2996), 1, sym_argument_list, - STATE(5630), 1, - aux_sym_template_argument_list_repeat1, - ACTIONS(5801), 2, + ACTIONS(6585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6607), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5803), 2, + ACTIONS(6609), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5807), 2, + ACTIONS(6613), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(5809), 2, + ACTIONS(6615), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(5813), 2, + ACTIONS(6619), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(5833), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5817), 3, + ACTIONS(6629), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6623), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5819), 4, + ACTIONS(6625), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [109008] = 27, + [143416] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, + ACTIONS(5497), 1, anon_sym_DOT, - ACTIONS(4816), 1, + ACTIONS(5499), 1, anon_sym_DASH_GT, - ACTIONS(5747), 1, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, anon_sym_SLASH, - ACTIONS(5753), 1, + ACTIONS(6617), 1, anon_sym_PIPE, - ACTIONS(5757), 1, + ACTIONS(6621), 1, anon_sym_AMP, - ACTIONS(5763), 1, + ACTIONS(6627), 1, anon_sym_GT_EQ, - ACTIONS(5767), 1, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, + ACTIONS(6635), 1, anon_sym_bitor, - ACTIONS(5771), 1, + ACTIONS(6637), 1, anon_sym_bitand, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - ACTIONS(5791), 1, - anon_sym_RBRACE, - ACTIONS(5962), 1, + ACTIONS(6823), 1, anon_sym_COMMA, - STATE(2475), 1, + ACTIONS(7077), 1, + anon_sym_RPAREN, + STATE(2996), 1, sym_argument_list, - STATE(5458), 1, - aux_sym_initializer_list_repeat1, - ACTIONS(5723), 2, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, + ACTIONS(6607), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5745), 2, + ACTIONS(6609), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5749), 2, + ACTIONS(6613), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(5751), 2, + ACTIONS(6615), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(5755), 2, + ACTIONS(6619), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(5765), 2, + ACTIONS(6629), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5759), 3, + ACTIONS(6623), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5761), 3, + ACTIONS(6625), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [109101] = 26, + [143506] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, + ACTIONS(5497), 1, anon_sym_DOT, - ACTIONS(4816), 1, + ACTIONS(5499), 1, anon_sym_DASH_GT, - ACTIONS(5747), 1, + ACTIONS(5940), 1, + anon_sym_RPAREN, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, anon_sym_SLASH, - ACTIONS(5753), 1, + ACTIONS(6617), 1, anon_sym_PIPE, - ACTIONS(5757), 1, + ACTIONS(6621), 1, anon_sym_AMP, - ACTIONS(5763), 1, + ACTIONS(6627), 1, anon_sym_GT_EQ, - ACTIONS(5767), 1, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, + ACTIONS(6635), 1, anon_sym_bitor, - ACTIONS(5771), 1, + ACTIONS(6637), 1, anon_sym_bitand, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - ACTIONS(5964), 1, + ACTIONS(6823), 1, anon_sym_COMMA, - STATE(2475), 1, + STATE(2996), 1, sym_argument_list, - ACTIONS(5723), 2, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, + ACTIONS(6607), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5745), 2, + ACTIONS(6609), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5749), 2, + ACTIONS(6613), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(5751), 2, + ACTIONS(6615), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(5755), 2, + ACTIONS(6619), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(5765), 2, + ACTIONS(6629), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5840), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - ACTIONS(5759), 3, + ACTIONS(6623), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5761), 3, + ACTIONS(6625), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [109192] = 27, + [143596] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, + ACTIONS(5497), 1, anon_sym_DOT, - ACTIONS(4816), 1, + ACTIONS(5499), 1, anon_sym_DASH_GT, - ACTIONS(5747), 1, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, anon_sym_SLASH, - ACTIONS(5753), 1, + ACTIONS(6617), 1, anon_sym_PIPE, - ACTIONS(5757), 1, + ACTIONS(6621), 1, anon_sym_AMP, - ACTIONS(5763), 1, + ACTIONS(6627), 1, anon_sym_GT_EQ, - ACTIONS(5767), 1, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, + ACTIONS(6635), 1, anon_sym_bitor, - ACTIONS(5771), 1, + ACTIONS(6637), 1, anon_sym_bitand, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - ACTIONS(5964), 1, + ACTIONS(6823), 1, anon_sym_COMMA, - ACTIONS(5966), 1, + ACTIONS(7079), 1, anon_sym_RPAREN, - ACTIONS(5968), 1, - anon_sym_SEMI, - STATE(2475), 1, + STATE(2996), 1, sym_argument_list, - ACTIONS(5723), 2, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, + ACTIONS(6607), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5745), 2, + ACTIONS(6609), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5749), 2, + ACTIONS(6613), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(5751), 2, + ACTIONS(6615), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(5755), 2, + ACTIONS(6619), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(5765), 2, + ACTIONS(6629), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5759), 3, + ACTIONS(6623), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5761), 3, + ACTIONS(6625), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [109285] = 27, + [143686] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4385), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(5211), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(5217), 1, + ACTIONS(5497), 1, anon_sym_DOT, - ACTIONS(5219), 1, + ACTIONS(5499), 1, anon_sym_DASH_GT, - ACTIONS(5797), 1, + ACTIONS(6605), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5799), 1, - anon_sym_COMMA, - ACTIONS(5805), 1, + ACTIONS(6611), 1, anon_sym_SLASH, - ACTIONS(5811), 1, + ACTIONS(6617), 1, anon_sym_PIPE, - ACTIONS(5815), 1, + ACTIONS(6621), 1, anon_sym_AMP, - ACTIONS(5821), 1, - anon_sym_LT_LT, - ACTIONS(5823), 1, - anon_sym_GT_GT, - ACTIONS(5825), 1, + ACTIONS(6627), 1, + anon_sym_GT_EQ, + ACTIONS(6631), 1, anon_sym_QMARK, - ACTIONS(5827), 1, + ACTIONS(6633), 1, anon_sym_LT_EQ_GT, - ACTIONS(5829), 1, + ACTIONS(6635), 1, anon_sym_bitor, - ACTIONS(5831), 1, + ACTIONS(6637), 1, anon_sym_bitand, - ACTIONS(5970), 1, - anon_sym_GT2, - STATE(3010), 1, + ACTIONS(6823), 1, + anon_sym_COMMA, + ACTIONS(7081), 1, + anon_sym_RPAREN, + STATE(2996), 1, sym_argument_list, - STATE(5509), 1, - aux_sym_template_argument_list_repeat1, - ACTIONS(5801), 2, + ACTIONS(6585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6607), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5803), 2, + ACTIONS(6609), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5807), 2, + ACTIONS(6613), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(5809), 2, + ACTIONS(6615), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(5813), 2, + ACTIONS(6619), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(5833), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5817), 3, + ACTIONS(6629), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6623), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5819), 4, + ACTIONS(6625), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [109378] = 5, + [143776] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5850), 1, - anon_sym_LBRACE, - STATE(3652), 1, - sym_enumerator_list, - ACTIONS(4330), 8, - anon_sym_COMMA, + ACTIONS(4476), 1, + anon_sym_COLON_COLON, + ACTIONS(4507), 1, + anon_sym_LBRACK, + ACTIONS(6151), 1, + anon_sym_LT, + STATE(4522), 1, + sym_template_argument_list, + ACTIONS(4500), 2, anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + ACTIONS(4503), 4, + anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(4332), 27, + ACTIONS(4498), 26, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, anon_sym___based, - anon_sym_LBRACK, anon_sym_static, anon_sym_register, anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, anon_sym_virtual, + anon_sym_template, anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [109427] = 27, + [143830] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4385), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(5211), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(5217), 1, + ACTIONS(5497), 1, anon_sym_DOT, - ACTIONS(5219), 1, + ACTIONS(5499), 1, anon_sym_DASH_GT, - ACTIONS(5797), 1, + ACTIONS(6605), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5799), 1, - anon_sym_COMMA, - ACTIONS(5805), 1, + ACTIONS(6611), 1, anon_sym_SLASH, - ACTIONS(5811), 1, + ACTIONS(6617), 1, anon_sym_PIPE, - ACTIONS(5815), 1, + ACTIONS(6621), 1, anon_sym_AMP, - ACTIONS(5821), 1, - anon_sym_LT_LT, - ACTIONS(5823), 1, - anon_sym_GT_GT, - ACTIONS(5825), 1, + ACTIONS(6627), 1, + anon_sym_GT_EQ, + ACTIONS(6631), 1, anon_sym_QMARK, - ACTIONS(5827), 1, + ACTIONS(6633), 1, anon_sym_LT_EQ_GT, - ACTIONS(5829), 1, + ACTIONS(6635), 1, anon_sym_bitor, - ACTIONS(5831), 1, + ACTIONS(6637), 1, anon_sym_bitand, - ACTIONS(5972), 1, - anon_sym_GT2, - STATE(3010), 1, + ACTIONS(6823), 1, + anon_sym_COMMA, + ACTIONS(7083), 1, + anon_sym_RPAREN, + STATE(2996), 1, sym_argument_list, - STATE(5368), 1, - aux_sym_template_argument_list_repeat1, - ACTIONS(5801), 2, + ACTIONS(6585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6607), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5803), 2, + ACTIONS(6609), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5807), 2, + ACTIONS(6613), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(5809), 2, + ACTIONS(6615), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(5813), 2, + ACTIONS(6619), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(5833), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5817), 3, + ACTIONS(6629), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6623), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5819), 4, + ACTIONS(6625), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [109520] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(59), 1, - anon_sym_const, - ACTIONS(4214), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5653), 1, - anon_sym_AMP_AMP, - ACTIONS(5655), 1, - anon_sym_AMP, - ACTIONS(5657), 1, - anon_sym___attribute__, - ACTIONS(5665), 1, - anon_sym_noexcept, - ACTIONS(5667), 1, - anon_sym_throw, - ACTIONS(5675), 1, - anon_sym_LBRACK, - ACTIONS(5974), 1, - anon_sym_DASH_GT, - ACTIONS(5976), 1, - anon_sym_requires, - STATE(4273), 1, - sym_ref_qualifier, - STATE(4789), 1, - sym_requires_clause, - STATE(4825), 1, - sym_trailing_return_type, - ACTIONS(5898), 2, - anon_sym_final, - anon_sym_override, - STATE(3876), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(3978), 2, - sym_attribute_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(4470), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(4490), 2, - sym_noexcept, - sym_throw_specifier, - STATE(4622), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat2, - ACTIONS(5673), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - ACTIONS(5661), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [109603] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(59), 1, - anon_sym_const, - ACTIONS(4214), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5653), 1, - anon_sym_AMP_AMP, - ACTIONS(5655), 1, - anon_sym_AMP, - ACTIONS(5657), 1, - anon_sym___attribute__, - ACTIONS(5659), 1, - anon_sym_LBRACK, - ACTIONS(5665), 1, - anon_sym_noexcept, - ACTIONS(5667), 1, - anon_sym_throw, - ACTIONS(5974), 1, - anon_sym_DASH_GT, - ACTIONS(5976), 1, - anon_sym_requires, - STATE(4277), 1, - sym_ref_qualifier, - STATE(4794), 1, - sym_requires_clause, - STATE(4845), 1, - sym_trailing_return_type, - ACTIONS(5898), 2, - anon_sym_final, - anon_sym_override, - STATE(3481), 2, - sym_attribute_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(3863), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(4467), 2, - sym_noexcept, - sym_throw_specifier, - STATE(4516), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(4631), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat2, - ACTIONS(5651), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - ACTIONS(5661), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [109686] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(59), 1, - anon_sym_const, - ACTIONS(4214), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5653), 1, - anon_sym_AMP_AMP, - ACTIONS(5655), 1, - anon_sym_AMP, - ACTIONS(5657), 1, - anon_sym___attribute__, - ACTIONS(5665), 1, - anon_sym_noexcept, - ACTIONS(5667), 1, - anon_sym_throw, - ACTIONS(5675), 1, - anon_sym_LBRACK, - ACTIONS(5896), 1, - anon_sym_DASH_GT, - ACTIONS(5900), 1, - anon_sym_requires, - STATE(4278), 1, - sym_ref_qualifier, - STATE(4789), 1, - sym_requires_clause, - STATE(4856), 1, - sym_trailing_return_type, - ACTIONS(5898), 2, - anon_sym_final, - anon_sym_override, - STATE(3860), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(3978), 2, - sym_attribute_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(4473), 2, - sym_noexcept, - sym_throw_specifier, - STATE(4482), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(4622), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat2, - ACTIONS(5673), 5, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - ACTIONS(5661), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [109769] = 27, + [143920] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, + ACTIONS(5497), 1, anon_sym_DOT, - ACTIONS(4816), 1, + ACTIONS(5499), 1, anon_sym_DASH_GT, - ACTIONS(5747), 1, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, anon_sym_SLASH, - ACTIONS(5753), 1, + ACTIONS(6617), 1, anon_sym_PIPE, - ACTIONS(5757), 1, + ACTIONS(6621), 1, anon_sym_AMP, - ACTIONS(5763), 1, + ACTIONS(6627), 1, anon_sym_GT_EQ, - ACTIONS(5767), 1, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, + ACTIONS(6635), 1, anon_sym_bitor, - ACTIONS(5771), 1, + ACTIONS(6637), 1, anon_sym_bitand, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - ACTIONS(5844), 1, + ACTIONS(6823), 1, anon_sym_COMMA, - ACTIONS(5978), 1, + ACTIONS(7085), 1, anon_sym_RPAREN, - STATE(2475), 1, + STATE(2996), 1, sym_argument_list, - STATE(5482), 1, - aux_sym_argument_list_repeat1, - ACTIONS(5723), 2, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, + ACTIONS(6607), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5745), 2, + ACTIONS(6609), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5749), 2, + ACTIONS(6613), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(5751), 2, + ACTIONS(6615), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(5755), 2, + ACTIONS(6619), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(5765), 2, + ACTIONS(6629), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5759), 3, + ACTIONS(6623), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5761), 3, + ACTIONS(6625), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [109862] = 27, + [144010] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(5395), 18, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(4798), 1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + ACTIONS(5397), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_literal_suffix, + [144054] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4978), 1, + anon_sym_LPAREN2, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, + ACTIONS(5497), 1, anon_sym_DOT, - ACTIONS(4816), 1, + ACTIONS(5499), 1, anon_sym_DASH_GT, - ACTIONS(5773), 1, + ACTIONS(6605), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5908), 1, - anon_sym_COMMA, - ACTIONS(5914), 1, + ACTIONS(6611), 1, anon_sym_SLASH, - ACTIONS(5920), 1, + ACTIONS(6617), 1, anon_sym_PIPE, - ACTIONS(5924), 1, + ACTIONS(6621), 1, anon_sym_AMP, - ACTIONS(5930), 1, + ACTIONS(6627), 1, anon_sym_GT_EQ, - ACTIONS(5936), 1, + ACTIONS(6631), 1, anon_sym_QMARK, - ACTIONS(5938), 1, + ACTIONS(6633), 1, anon_sym_LT_EQ_GT, - ACTIONS(5940), 1, + ACTIONS(6635), 1, anon_sym_bitor, - ACTIONS(5942), 1, + ACTIONS(6637), 1, anon_sym_bitand, - ACTIONS(5980), 1, - anon_sym_RBRACK, - STATE(2475), 1, + STATE(2996), 1, sym_argument_list, - STATE(5436), 1, - aux_sym_lambda_capture_specifier_repeat1, - ACTIONS(5723), 2, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5910), 2, + ACTIONS(6607), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5912), 2, + ACTIONS(6609), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5916), 2, + ACTIONS(6613), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(5918), 2, + ACTIONS(6615), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(5922), 2, + ACTIONS(6619), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(5932), 2, + ACTIONS(6629), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5926), 3, + ACTIONS(7087), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(6623), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5928), 3, + ACTIONS(6625), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [109955] = 27, + [144142] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, + ACTIONS(5497), 1, anon_sym_DOT, - ACTIONS(4816), 1, + ACTIONS(5499), 1, anon_sym_DASH_GT, - ACTIONS(5747), 1, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, anon_sym_SLASH, - ACTIONS(5753), 1, + ACTIONS(6617), 1, anon_sym_PIPE, - ACTIONS(5757), 1, + ACTIONS(6621), 1, anon_sym_AMP, - ACTIONS(5763), 1, + ACTIONS(6627), 1, anon_sym_GT_EQ, - ACTIONS(5767), 1, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, + ACTIONS(6635), 1, anon_sym_bitor, - ACTIONS(5771), 1, + ACTIONS(6637), 1, anon_sym_bitand, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - ACTIONS(5982), 1, - anon_sym_COMMA, - ACTIONS(5984), 1, - anon_sym_RBRACE, - STATE(2475), 1, + STATE(2996), 1, sym_argument_list, - STATE(5468), 1, - aux_sym_initializer_list_repeat1, - ACTIONS(5723), 2, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, + ACTIONS(6607), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5745), 2, + ACTIONS(6609), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5749), 2, + ACTIONS(6613), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(5751), 2, + ACTIONS(6615), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(5755), 2, + ACTIONS(6619), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(5765), 2, + ACTIONS(6629), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5759), 3, + ACTIONS(7089), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(6623), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5761), 3, + ACTIONS(6625), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [110048] = 27, + [144230] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4385), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(5211), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(5217), 1, + ACTIONS(5497), 1, anon_sym_DOT, - ACTIONS(5219), 1, + ACTIONS(5499), 1, anon_sym_DASH_GT, - ACTIONS(5797), 1, + ACTIONS(6605), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5799), 1, - anon_sym_COMMA, - ACTIONS(5805), 1, + ACTIONS(6611), 1, anon_sym_SLASH, - ACTIONS(5811), 1, + ACTIONS(6617), 1, anon_sym_PIPE, - ACTIONS(5815), 1, + ACTIONS(6621), 1, anon_sym_AMP, - ACTIONS(5821), 1, - anon_sym_LT_LT, - ACTIONS(5823), 1, - anon_sym_GT_GT, - ACTIONS(5825), 1, + ACTIONS(6627), 1, + anon_sym_GT_EQ, + ACTIONS(6631), 1, anon_sym_QMARK, - ACTIONS(5827), 1, + ACTIONS(6633), 1, anon_sym_LT_EQ_GT, - ACTIONS(5829), 1, + ACTIONS(6635), 1, anon_sym_bitor, - ACTIONS(5831), 1, + ACTIONS(6637), 1, anon_sym_bitand, - ACTIONS(5986), 1, - anon_sym_GT2, - STATE(3010), 1, + ACTIONS(7091), 1, + anon_sym_COMMA, + ACTIONS(7093), 1, + anon_sym_RPAREN, + STATE(2996), 1, sym_argument_list, - STATE(5467), 1, - aux_sym_template_argument_list_repeat1, - ACTIONS(5801), 2, + ACTIONS(6585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6607), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5803), 2, + ACTIONS(6609), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5807), 2, + ACTIONS(6613), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(5809), 2, + ACTIONS(6615), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(5813), 2, + ACTIONS(6619), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(5833), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5817), 3, + ACTIONS(6629), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6623), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5819), 4, + ACTIONS(6625), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [110141] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4633), 10, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_DASH_GT, - ACTIONS(4631), 27, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_operator, - anon_sym_try, - anon_sym_noexcept, - anon_sym_throw, - anon_sym_requires, - [110186] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(59), 1, - anon_sym_const, - ACTIONS(4214), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5653), 1, - anon_sym_AMP_AMP, - ACTIONS(5655), 1, - anon_sym_AMP, - ACTIONS(5657), 1, - anon_sym___attribute__, - ACTIONS(5665), 1, - anon_sym_noexcept, - ACTIONS(5667), 1, - anon_sym_throw, - ACTIONS(5675), 1, - anon_sym_LBRACK, - ACTIONS(5988), 1, - anon_sym_DASH_GT, - ACTIONS(5990), 1, - anon_sym_requires, - STATE(4289), 1, - sym_ref_qualifier, - STATE(4716), 1, - sym_requires_clause, - STATE(4779), 1, - sym_trailing_return_type, - ACTIONS(4135), 2, - anon_sym_final, - anon_sym_override, - STATE(3859), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(3978), 2, - sym_attribute_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(4480), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(4521), 2, - sym_noexcept, - sym_throw_specifier, - STATE(4578), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat2, - ACTIONS(5673), 5, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_try, - ACTIONS(5661), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [110269] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(59), 1, - anon_sym_const, - ACTIONS(4214), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5653), 1, - anon_sym_AMP_AMP, - ACTIONS(5655), 1, - anon_sym_AMP, - ACTIONS(5657), 1, - anon_sym___attribute__, - ACTIONS(5659), 1, - anon_sym_LBRACK, - ACTIONS(5665), 1, - anon_sym_noexcept, - ACTIONS(5667), 1, - anon_sym_throw, - ACTIONS(5988), 1, - anon_sym_DASH_GT, - ACTIONS(5990), 1, - anon_sym_requires, - STATE(4286), 1, - sym_ref_qualifier, - STATE(4718), 1, - sym_requires_clause, - STATE(4743), 1, - sym_trailing_return_type, - ACTIONS(4135), 2, - anon_sym_final, - anon_sym_override, - STATE(3489), 2, - sym_attribute_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(3870), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(4489), 2, - sym_noexcept, - sym_throw_specifier, - STATE(4524), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(4546), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat2, - ACTIONS(5651), 5, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_try, - ACTIONS(5661), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [110352] = 27, + [144320] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4385), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(5211), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(5217), 1, + ACTIONS(5497), 1, anon_sym_DOT, - ACTIONS(5219), 1, + ACTIONS(5499), 1, anon_sym_DASH_GT, - ACTIONS(5797), 1, + ACTIONS(6605), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5799), 1, - anon_sym_COMMA, - ACTIONS(5805), 1, + ACTIONS(6611), 1, anon_sym_SLASH, - ACTIONS(5811), 1, + ACTIONS(6617), 1, anon_sym_PIPE, - ACTIONS(5815), 1, + ACTIONS(6621), 1, anon_sym_AMP, - ACTIONS(5821), 1, - anon_sym_LT_LT, - ACTIONS(5823), 1, - anon_sym_GT_GT, - ACTIONS(5825), 1, + ACTIONS(6627), 1, + anon_sym_GT_EQ, + ACTIONS(6631), 1, anon_sym_QMARK, - ACTIONS(5827), 1, + ACTIONS(6633), 1, anon_sym_LT_EQ_GT, - ACTIONS(5829), 1, + ACTIONS(6635), 1, anon_sym_bitor, - ACTIONS(5831), 1, + ACTIONS(6637), 1, anon_sym_bitand, - ACTIONS(5992), 1, - anon_sym_GT2, - STATE(3010), 1, + ACTIONS(7095), 1, + anon_sym_COMMA, + ACTIONS(7097), 1, + anon_sym_RPAREN, + STATE(2996), 1, sym_argument_list, - STATE(5613), 1, - aux_sym_template_argument_list_repeat1, - ACTIONS(5801), 2, + ACTIONS(6585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6607), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5803), 2, + ACTIONS(6609), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5807), 2, + ACTIONS(6613), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(5809), 2, + ACTIONS(6615), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(5813), 2, + ACTIONS(6619), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(5833), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5817), 3, + ACTIONS(6629), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6623), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5819), 4, + ACTIONS(6625), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [110445] = 27, + [144410] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, + ACTIONS(5497), 1, anon_sym_DOT, - ACTIONS(4816), 1, + ACTIONS(5499), 1, anon_sym_DASH_GT, - ACTIONS(5773), 1, + ACTIONS(6605), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5908), 1, - anon_sym_COMMA, - ACTIONS(5914), 1, + ACTIONS(6611), 1, anon_sym_SLASH, - ACTIONS(5920), 1, + ACTIONS(6617), 1, anon_sym_PIPE, - ACTIONS(5924), 1, + ACTIONS(6621), 1, anon_sym_AMP, - ACTIONS(5930), 1, + ACTIONS(6627), 1, anon_sym_GT_EQ, - ACTIONS(5936), 1, + ACTIONS(6631), 1, anon_sym_QMARK, - ACTIONS(5938), 1, + ACTIONS(6633), 1, anon_sym_LT_EQ_GT, - ACTIONS(5940), 1, + ACTIONS(6635), 1, anon_sym_bitor, - ACTIONS(5942), 1, + ACTIONS(6637), 1, anon_sym_bitand, - ACTIONS(5994), 1, - anon_sym_RBRACK, - STATE(2475), 1, + ACTIONS(6823), 1, + anon_sym_COMMA, + ACTIONS(7099), 1, + anon_sym_SEMI, + STATE(2996), 1, sym_argument_list, - STATE(5370), 1, - aux_sym_lambda_capture_specifier_repeat1, - ACTIONS(5723), 2, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5910), 2, + ACTIONS(6607), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5912), 2, + ACTIONS(6609), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5916), 2, + ACTIONS(6613), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(5918), 2, + ACTIONS(6615), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(5922), 2, + ACTIONS(6619), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(5932), 2, + ACTIONS(6629), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5926), 3, + ACTIONS(6623), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5928), 3, + ACTIONS(6625), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [110538] = 27, + [144500] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4385), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(5211), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(5217), 1, + ACTIONS(6066), 1, anon_sym_DOT, - ACTIONS(5219), 1, + ACTIONS(6068), 1, anon_sym_DASH_GT, - ACTIONS(5797), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5799), 1, - anon_sym_COMMA, - ACTIONS(5805), 1, + STATE(2996), 1, + sym_argument_list, + ACTIONS(5681), 8, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(5811), 1, anon_sym_PIPE, - ACTIONS(5815), 1, anon_sym_AMP, - ACTIONS(5821), 1, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5679), 22, + anon_sym_DOT_DOT_DOT, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, - ACTIONS(5823), 1, anon_sym_GT_GT, - ACTIONS(5825), 1, + anon_sym_COLON, anon_sym_QMARK, - ACTIONS(5827), 1, anon_sym_LT_EQ_GT, - ACTIONS(5829), 1, + anon_sym_or, + anon_sym_and, anon_sym_bitor, - ACTIONS(5831), 1, + anon_sym_xor, anon_sym_bitand, - ACTIONS(5996), 1, - anon_sym_GT2, - STATE(3010), 1, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + [144553] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4978), 1, + anon_sym_LPAREN2, + ACTIONS(5493), 1, + anon_sym_LBRACK, + ACTIONS(5497), 1, + anon_sym_DOT, + ACTIONS(5499), 1, + anon_sym_DASH_GT, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, + anon_sym_SLASH, + ACTIONS(6617), 1, + anon_sym_PIPE, + ACTIONS(6621), 1, + anon_sym_AMP, + ACTIONS(6627), 1, + anon_sym_GT_EQ, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6635), 1, + anon_sym_bitor, + ACTIONS(6637), 1, + anon_sym_bitand, + ACTIONS(7101), 1, + anon_sym_RPAREN, + STATE(2996), 1, sym_argument_list, - STATE(5424), 1, - aux_sym_template_argument_list_repeat1, - ACTIONS(5801), 2, + ACTIONS(6585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6607), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5803), 2, + ACTIONS(6609), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5807), 2, + ACTIONS(6613), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(5809), 2, + ACTIONS(6615), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(5813), 2, + ACTIONS(6619), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(5833), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5817), 3, + ACTIONS(6629), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6623), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5819), 4, + ACTIONS(6625), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [110631] = 6, + [144640] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3988), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(4647), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(4653), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(3803), 9, + ACTIONS(6066), 1, + anon_sym_DOT, + ACTIONS(6068), 1, + anon_sym_DASH_GT, + STATE(2996), 1, + sym_argument_list, + ACTIONS(6585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5665), 8, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -323890,10 +427078,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_DOT, - ACTIONS(3795), 25, + ACTIONS(5663), 20, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -323904,8 +427090,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -323914,836 +427099,749 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [110682] = 27, + [144695] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, + ACTIONS(6066), 1, anon_sym_DOT, - ACTIONS(4816), 1, + ACTIONS(6068), 1, anon_sym_DASH_GT, - ACTIONS(5747), 1, + STATE(2996), 1, + sym_argument_list, + ACTIONS(5647), 8, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(5753), 1, anon_sym_PIPE, - ACTIONS(5757), 1, anon_sym_AMP, - ACTIONS(5763), 1, - anon_sym_GT_EQ, - ACTIONS(5767), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, - anon_sym_bitor, - ACTIONS(5771), 1, - anon_sym_bitand, - ACTIONS(5773), 1, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5645), 22, anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - ACTIONS(5844), 1, - anon_sym_COMMA, - ACTIONS(5998), 1, - anon_sym_RPAREN, - STATE(2475), 1, - sym_argument_list, - STATE(5414), 1, - aux_sym_argument_list_repeat1, - ACTIONS(5723), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5745), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5749), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5751), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5755), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(5765), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5759), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, anon_sym_not_eq, - ACTIONS(5761), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [110775] = 23, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + [144748] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4385), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(5211), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(5217), 1, + ACTIONS(5497), 1, anon_sym_DOT, - ACTIONS(5219), 1, + ACTIONS(5499), 1, anon_sym_DASH_GT, - ACTIONS(5805), 1, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, anon_sym_SLASH, - ACTIONS(5811), 1, + ACTIONS(6617), 1, anon_sym_PIPE, - ACTIONS(5815), 1, + ACTIONS(6621), 1, anon_sym_AMP, - ACTIONS(5821), 1, - anon_sym_LT_LT, - ACTIONS(5823), 1, - anon_sym_GT_GT, - ACTIONS(5827), 1, + ACTIONS(6627), 1, + anon_sym_GT_EQ, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, anon_sym_LT_EQ_GT, - ACTIONS(5829), 1, + ACTIONS(6635), 1, anon_sym_bitor, - ACTIONS(5831), 1, + ACTIONS(6637), 1, anon_sym_bitand, - STATE(3010), 1, + ACTIONS(7103), 1, + anon_sym_SEMI, + STATE(2996), 1, sym_argument_list, - ACTIONS(5801), 2, + ACTIONS(6585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6607), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5803), 2, + ACTIONS(6609), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5807), 2, + ACTIONS(6613), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(5809), 2, + ACTIONS(6615), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(5813), 2, + ACTIONS(6619), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(5833), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5817), 3, + ACTIONS(6629), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6623), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(4859), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_GT2, - ACTIONS(5819), 4, + ACTIONS(6625), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [110859] = 26, + [144835] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, + ACTIONS(5497), 1, anon_sym_DOT, - ACTIONS(4816), 1, + ACTIONS(5499), 1, anon_sym_DASH_GT, - ACTIONS(5747), 1, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, anon_sym_SLASH, - ACTIONS(5753), 1, + ACTIONS(6617), 1, anon_sym_PIPE, - ACTIONS(5757), 1, + ACTIONS(6621), 1, anon_sym_AMP, - ACTIONS(5763), 1, + ACTIONS(6627), 1, anon_sym_GT_EQ, - ACTIONS(5767), 1, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, + ACTIONS(6635), 1, anon_sym_bitor, - ACTIONS(5771), 1, + ACTIONS(6637), 1, anon_sym_bitand, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - ACTIONS(5964), 1, - anon_sym_COMMA, - ACTIONS(6000), 1, + ACTIONS(7105), 1, anon_sym_SEMI, - STATE(2475), 1, + STATE(2996), 1, sym_argument_list, - ACTIONS(5723), 2, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, + ACTIONS(6607), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5745), 2, + ACTIONS(6609), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5749), 2, + ACTIONS(6613), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(5751), 2, + ACTIONS(6615), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(5755), 2, + ACTIONS(6619), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(5765), 2, + ACTIONS(6629), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5759), 3, + ACTIONS(6623), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5761), 3, + ACTIONS(6625), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [110949] = 26, + [144922] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, + ACTIONS(5497), 1, anon_sym_DOT, - ACTIONS(4816), 1, + ACTIONS(5499), 1, anon_sym_DASH_GT, - ACTIONS(5747), 1, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6724), 1, anon_sym_SLASH, - ACTIONS(5753), 1, + ACTIONS(6730), 1, anon_sym_PIPE, - ACTIONS(5757), 1, + ACTIONS(6734), 1, anon_sym_AMP, - ACTIONS(5763), 1, + ACTIONS(6740), 1, anon_sym_GT_EQ, - ACTIONS(5767), 1, + ACTIONS(6746), 1, + anon_sym_QMARK, + ACTIONS(6748), 1, anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, + ACTIONS(6750), 1, anon_sym_bitor, - ACTIONS(5771), 1, + ACTIONS(6752), 1, anon_sym_bitand, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - ACTIONS(5964), 1, - anon_sym_COMMA, - ACTIONS(6002), 1, - anon_sym_RPAREN, - STATE(2475), 1, + ACTIONS(7107), 1, + anon_sym_RBRACK, + STATE(2996), 1, sym_argument_list, - ACTIONS(5723), 2, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, + ACTIONS(6720), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5745), 2, + ACTIONS(6722), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5749), 2, + ACTIONS(6726), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(5751), 2, + ACTIONS(6728), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(5755), 2, + ACTIONS(6732), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(5765), 2, + ACTIONS(6742), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5759), 3, + ACTIONS(6736), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5761), 3, + ACTIONS(6738), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [111039] = 26, + [145009] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, + ACTIONS(5497), 1, anon_sym_DOT, - ACTIONS(4816), 1, + ACTIONS(5499), 1, anon_sym_DASH_GT, - ACTIONS(5747), 1, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, anon_sym_SLASH, - ACTIONS(5753), 1, + ACTIONS(6617), 1, anon_sym_PIPE, - ACTIONS(5757), 1, + ACTIONS(6621), 1, anon_sym_AMP, - ACTIONS(5763), 1, + ACTIONS(6627), 1, anon_sym_GT_EQ, - ACTIONS(5767), 1, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, + ACTIONS(6635), 1, anon_sym_bitor, - ACTIONS(5771), 1, + ACTIONS(6637), 1, anon_sym_bitand, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - ACTIONS(5964), 1, - anon_sym_COMMA, - ACTIONS(6004), 1, + ACTIONS(7109), 1, anon_sym_SEMI, - STATE(2475), 1, + STATE(2996), 1, sym_argument_list, - ACTIONS(5723), 2, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, + ACTIONS(6607), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5745), 2, + ACTIONS(6609), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5749), 2, + ACTIONS(6613), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(5751), 2, + ACTIONS(6615), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(5755), 2, + ACTIONS(6619), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(5765), 2, + ACTIONS(6629), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5759), 3, + ACTIONS(6623), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5761), 3, + ACTIONS(6625), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [111129] = 26, + [145096] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, + ACTIONS(6066), 1, anon_sym_DOT, - ACTIONS(4816), 1, + ACTIONS(6068), 1, anon_sym_DASH_GT, - ACTIONS(5747), 1, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7115), 1, anon_sym_SLASH, - ACTIONS(5753), 1, + ACTIONS(7121), 1, anon_sym_PIPE, - ACTIONS(5757), 1, + ACTIONS(7125), 1, anon_sym_AMP, - ACTIONS(5763), 1, + ACTIONS(7131), 1, anon_sym_GT_EQ, - ACTIONS(5767), 1, + ACTIONS(7135), 1, + anon_sym_COLON, + ACTIONS(7137), 1, + anon_sym_QMARK, + ACTIONS(7139), 1, anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, + ACTIONS(7141), 1, anon_sym_bitor, - ACTIONS(5771), 1, + ACTIONS(7143), 1, anon_sym_bitand, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - ACTIONS(5964), 1, - anon_sym_COMMA, - ACTIONS(6006), 1, - anon_sym_SEMI, - STATE(2475), 1, + STATE(2996), 1, sym_argument_list, - ACTIONS(5723), 2, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, + ACTIONS(7111), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5745), 2, + ACTIONS(7113), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5749), 2, + ACTIONS(7117), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(5751), 2, + ACTIONS(7119), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(5755), 2, + ACTIONS(7123), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(5765), 2, + ACTIONS(7133), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5759), 3, + ACTIONS(7127), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5761), 3, + ACTIONS(7129), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [111219] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3814), 1, - anon_sym_COLON_COLON, - ACTIONS(5383), 1, - anon_sym_LT, - ACTIONS(6008), 1, - anon_sym_LBRACK, - STATE(3810), 1, - sym_template_argument_list, - ACTIONS(3816), 3, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - ACTIONS(3801), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_EQ, - ACTIONS(3793), 23, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - [111273] = 26, + [145183] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, + ACTIONS(5497), 1, anon_sym_DOT, - ACTIONS(4816), 1, + ACTIONS(5499), 1, anon_sym_DASH_GT, - ACTIONS(5747), 1, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, anon_sym_SLASH, - ACTIONS(5753), 1, + ACTIONS(6617), 1, anon_sym_PIPE, - ACTIONS(5757), 1, + ACTIONS(6621), 1, anon_sym_AMP, - ACTIONS(5763), 1, + ACTIONS(6627), 1, anon_sym_GT_EQ, - ACTIONS(5767), 1, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, + ACTIONS(6635), 1, anon_sym_bitor, - ACTIONS(5771), 1, + ACTIONS(6637), 1, anon_sym_bitand, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - ACTIONS(5789), 1, + ACTIONS(7145), 1, anon_sym_SEMI, - ACTIONS(5964), 1, - anon_sym_COMMA, - STATE(2475), 1, + STATE(2996), 1, sym_argument_list, - ACTIONS(5723), 2, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, + ACTIONS(6607), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5745), 2, + ACTIONS(6609), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5749), 2, + ACTIONS(6613), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(5751), 2, + ACTIONS(6615), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(5755), 2, + ACTIONS(6619), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(5765), 2, + ACTIONS(6629), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5759), 3, + ACTIONS(6623), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5761), 3, + ACTIONS(6625), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [111363] = 26, + [145270] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, + ACTIONS(5497), 1, anon_sym_DOT, - ACTIONS(4816), 1, + ACTIONS(5499), 1, anon_sym_DASH_GT, - ACTIONS(5747), 1, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, anon_sym_SLASH, - ACTIONS(5753), 1, + ACTIONS(6617), 1, anon_sym_PIPE, - ACTIONS(5757), 1, + ACTIONS(6621), 1, anon_sym_AMP, - ACTIONS(5763), 1, + ACTIONS(6627), 1, anon_sym_GT_EQ, - ACTIONS(5767), 1, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, + ACTIONS(6635), 1, anon_sym_bitor, - ACTIONS(5771), 1, + ACTIONS(6637), 1, anon_sym_bitand, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - ACTIONS(5964), 1, - anon_sym_COMMA, - ACTIONS(6011), 1, - anon_sym_RPAREN, - STATE(2475), 1, + ACTIONS(7147), 1, + anon_sym_SEMI, + STATE(2996), 1, sym_argument_list, - ACTIONS(5723), 2, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, + ACTIONS(6607), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5745), 2, + ACTIONS(6609), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5749), 2, + ACTIONS(6613), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(5751), 2, + ACTIONS(6615), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(5755), 2, + ACTIONS(6619), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(5765), 2, + ACTIONS(6629), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5759), 3, + ACTIONS(6623), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5761), 3, + ACTIONS(6625), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [111453] = 26, + [145357] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, + ACTIONS(5497), 1, anon_sym_DOT, - ACTIONS(4816), 1, + ACTIONS(5499), 1, anon_sym_DASH_GT, - ACTIONS(5747), 1, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, anon_sym_SLASH, - ACTIONS(5753), 1, + ACTIONS(6617), 1, anon_sym_PIPE, - ACTIONS(5757), 1, + ACTIONS(6621), 1, anon_sym_AMP, - ACTIONS(5763), 1, + ACTIONS(6627), 1, anon_sym_GT_EQ, - ACTIONS(5767), 1, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, + ACTIONS(6635), 1, anon_sym_bitor, - ACTIONS(5771), 1, + ACTIONS(6637), 1, anon_sym_bitand, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - ACTIONS(6013), 1, - anon_sym_COMMA, - ACTIONS(6015), 1, - anon_sym_RPAREN, - STATE(2475), 1, + ACTIONS(7149), 1, + anon_sym_SEMI, + STATE(2996), 1, sym_argument_list, - ACTIONS(5723), 2, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, + ACTIONS(6607), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5745), 2, + ACTIONS(6609), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5749), 2, + ACTIONS(6613), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(5751), 2, + ACTIONS(6615), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(5755), 2, + ACTIONS(6619), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(5765), 2, + ACTIONS(6629), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5759), 3, + ACTIONS(6623), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5761), 3, + ACTIONS(6625), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [111543] = 26, + [145444] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, + ACTIONS(5497), 1, anon_sym_DOT, - ACTIONS(4816), 1, + ACTIONS(5499), 1, anon_sym_DASH_GT, - ACTIONS(5747), 1, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, anon_sym_SLASH, - ACTIONS(5753), 1, + ACTIONS(6617), 1, anon_sym_PIPE, - ACTIONS(5757), 1, + ACTIONS(6621), 1, anon_sym_AMP, - ACTIONS(5763), 1, + ACTIONS(6627), 1, anon_sym_GT_EQ, - ACTIONS(5767), 1, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, + ACTIONS(6635), 1, anon_sym_bitor, - ACTIONS(5771), 1, + ACTIONS(6637), 1, anon_sym_bitand, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - ACTIONS(5964), 1, - anon_sym_COMMA, - ACTIONS(6017), 1, - anon_sym_RPAREN, - STATE(2475), 1, + ACTIONS(7151), 1, + anon_sym_SEMI, + STATE(2996), 1, sym_argument_list, - ACTIONS(5723), 2, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, + ACTIONS(6607), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5745), 2, + ACTIONS(6609), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5749), 2, + ACTIONS(6613), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(5751), 2, + ACTIONS(6615), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(5755), 2, + ACTIONS(6619), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(5765), 2, + ACTIONS(6629), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5759), 3, + ACTIONS(6623), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5761), 3, + ACTIONS(6625), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [111633] = 26, + [145531] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, + ACTIONS(5497), 1, anon_sym_DOT, - ACTIONS(4816), 1, + ACTIONS(5499), 1, anon_sym_DASH_GT, - ACTIONS(5747), 1, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, anon_sym_SLASH, - ACTIONS(5753), 1, + ACTIONS(6617), 1, anon_sym_PIPE, - ACTIONS(5757), 1, + ACTIONS(6621), 1, anon_sym_AMP, - ACTIONS(5763), 1, + ACTIONS(6627), 1, anon_sym_GT_EQ, - ACTIONS(5767), 1, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, + ACTIONS(6635), 1, anon_sym_bitor, - ACTIONS(5771), 1, + ACTIONS(6637), 1, anon_sym_bitand, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - ACTIONS(5964), 1, - anon_sym_COMMA, - ACTIONS(6019), 1, + ACTIONS(7153), 1, anon_sym_SEMI, - STATE(2475), 1, + STATE(2996), 1, sym_argument_list, - ACTIONS(5723), 2, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, + ACTIONS(6607), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5745), 2, + ACTIONS(6609), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5749), 2, + ACTIONS(6613), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(5751), 2, + ACTIONS(6615), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(5755), 2, + ACTIONS(6619), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(5765), 2, + ACTIONS(6629), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5759), 3, + ACTIONS(6623), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5761), 3, + ACTIONS(6625), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [111723] = 26, + [145618] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, + ACTIONS(5497), 1, anon_sym_DOT, - ACTIONS(4816), 1, + ACTIONS(5499), 1, anon_sym_DASH_GT, - ACTIONS(5747), 1, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, anon_sym_SLASH, - ACTIONS(5753), 1, + ACTIONS(6617), 1, anon_sym_PIPE, - ACTIONS(5757), 1, + ACTIONS(6621), 1, anon_sym_AMP, - ACTIONS(5763), 1, + ACTIONS(6627), 1, anon_sym_GT_EQ, - ACTIONS(5767), 1, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, + ACTIONS(6635), 1, anon_sym_bitor, - ACTIONS(5771), 1, + ACTIONS(6637), 1, anon_sym_bitand, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - ACTIONS(5964), 1, - anon_sym_COMMA, - ACTIONS(6021), 1, + ACTIONS(7155), 1, anon_sym_SEMI, - STATE(2475), 1, + STATE(2996), 1, sym_argument_list, - ACTIONS(5723), 2, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, + ACTIONS(6607), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5745), 2, + ACTIONS(6609), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5749), 2, + ACTIONS(6613), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(5751), 2, + ACTIONS(6615), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(5755), 2, + ACTIONS(6619), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(5765), 2, + ACTIONS(6629), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5759), 3, + ACTIONS(6623), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5761), 3, + ACTIONS(6625), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [111813] = 3, + [145705] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4727), 9, + ACTIONS(5752), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(4729), 27, + ACTIONS(5750), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -324754,12 +427852,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -324771,2777 +427865,2761 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [111857] = 26, + anon_sym_GT2, + [145748] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(4347), 1, + anon_sym_RBRACK, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, + ACTIONS(5497), 1, anon_sym_DOT, - ACTIONS(4816), 1, + ACTIONS(5499), 1, anon_sym_DASH_GT, - ACTIONS(5747), 1, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6724), 1, anon_sym_SLASH, - ACTIONS(5753), 1, + ACTIONS(6730), 1, anon_sym_PIPE, - ACTIONS(5757), 1, + ACTIONS(6734), 1, anon_sym_AMP, - ACTIONS(5763), 1, + ACTIONS(6740), 1, anon_sym_GT_EQ, - ACTIONS(5767), 1, + ACTIONS(6746), 1, + anon_sym_QMARK, + ACTIONS(6748), 1, anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, + ACTIONS(6750), 1, anon_sym_bitor, - ACTIONS(5771), 1, + ACTIONS(6752), 1, anon_sym_bitand, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - ACTIONS(5964), 1, - anon_sym_COMMA, - ACTIONS(6023), 1, - anon_sym_RPAREN, - STATE(2475), 1, + STATE(2996), 1, sym_argument_list, - ACTIONS(5723), 2, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, + ACTIONS(6720), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5745), 2, + ACTIONS(6722), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5749), 2, + ACTIONS(6726), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(5751), 2, + ACTIONS(6728), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(5755), 2, + ACTIONS(6732), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(5765), 2, + ACTIONS(6742), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5759), 3, + ACTIONS(6736), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5761), 3, + ACTIONS(6738), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [111947] = 26, + [145835] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, - anon_sym_LPAREN2, - ACTIONS(4798), 1, - anon_sym_LBRACK, - ACTIONS(4814), 1, - anon_sym_DOT, - ACTIONS(4816), 1, - anon_sym_DASH_GT, - ACTIONS(5747), 1, + ACTIONS(5748), 11, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(5753), 1, anon_sym_PIPE, - ACTIONS(5757), 1, anon_sym_AMP, - ACTIONS(5763), 1, + anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(5767), 1, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(5746), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, + anon_sym_or, + anon_sym_and, anon_sym_bitor, - ACTIONS(5771), 1, + anon_sym_xor, anon_sym_bitand, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - ACTIONS(5964), 1, - anon_sym_COMMA, - ACTIONS(6025), 1, - anon_sym_SEMI, - STATE(2475), 1, - sym_argument_list, - ACTIONS(5723), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, + anon_sym_DASH_GT, + anon_sym_GT2, + [145878] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5744), 11, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5745), 2, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(5742), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5749), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5751), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5755), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(5765), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5759), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, anon_sym_not_eq, - ACTIONS(5761), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [112037] = 26, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [145921] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, + ACTIONS(5497), 1, anon_sym_DOT, - ACTIONS(4816), 1, + ACTIONS(5499), 1, anon_sym_DASH_GT, - ACTIONS(5747), 1, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, anon_sym_SLASH, - ACTIONS(5753), 1, + ACTIONS(6617), 1, anon_sym_PIPE, - ACTIONS(5757), 1, + ACTIONS(6621), 1, anon_sym_AMP, - ACTIONS(5763), 1, + ACTIONS(6627), 1, anon_sym_GT_EQ, - ACTIONS(5767), 1, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, + ACTIONS(6635), 1, anon_sym_bitor, - ACTIONS(5771), 1, + ACTIONS(6637), 1, anon_sym_bitand, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - ACTIONS(5964), 1, - anon_sym_COMMA, - ACTIONS(6027), 1, + ACTIONS(7157), 1, anon_sym_RPAREN, - STATE(2475), 1, + STATE(2996), 1, sym_argument_list, - ACTIONS(5723), 2, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, + ACTIONS(6607), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5745), 2, + ACTIONS(6609), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5749), 2, + ACTIONS(6613), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(5751), 2, + ACTIONS(6615), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(5755), 2, + ACTIONS(6619), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(5765), 2, + ACTIONS(6629), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5759), 3, + ACTIONS(6623), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5761), 3, + ACTIONS(6625), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [112127] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5653), 1, - anon_sym_AMP_AMP, - ACTIONS(5655), 1, - anon_sym_AMP, - ACTIONS(5665), 1, - anon_sym_noexcept, - ACTIONS(5667), 1, - anon_sym_throw, - ACTIONS(5709), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5713), 1, - anon_sym_const, - ACTIONS(5733), 1, - anon_sym_DASH_GT, - ACTIONS(5735), 1, - anon_sym_requires, - ACTIONS(5952), 1, - anon_sym_LBRACK, - STATE(4184), 1, - sym_ref_qualifier, - STATE(4645), 1, - sym_trailing_return_type, - STATE(4723), 1, - sym_requires_clause, - ACTIONS(4135), 2, - anon_sym_final, - anon_sym_override, - STATE(4059), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(4412), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(4413), 2, - sym_noexcept, - sym_throw_specifier, - STATE(4538), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat2, - ACTIONS(5731), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - ACTIONS(5950), 7, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_try, - [112205] = 26, + [146008] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, + ACTIONS(5497), 1, anon_sym_DOT, - ACTIONS(4816), 1, + ACTIONS(5499), 1, anon_sym_DASH_GT, - ACTIONS(5747), 1, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, anon_sym_SLASH, - ACTIONS(5753), 1, + ACTIONS(6617), 1, anon_sym_PIPE, - ACTIONS(5757), 1, + ACTIONS(6621), 1, anon_sym_AMP, - ACTIONS(5763), 1, + ACTIONS(6627), 1, anon_sym_GT_EQ, - ACTIONS(5767), 1, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, + ACTIONS(6635), 1, anon_sym_bitor, - ACTIONS(5771), 1, + ACTIONS(6637), 1, anon_sym_bitand, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - ACTIONS(5964), 1, - anon_sym_COMMA, - ACTIONS(6029), 1, - anon_sym_RPAREN, - STATE(2475), 1, + ACTIONS(7159), 1, + anon_sym_SEMI, + STATE(2996), 1, sym_argument_list, - ACTIONS(5723), 2, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, + ACTIONS(6607), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5745), 2, + ACTIONS(6609), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5749), 2, + ACTIONS(6613), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(5751), 2, + ACTIONS(6615), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(5755), 2, + ACTIONS(6619), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(5765), 2, + ACTIONS(6629), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5759), 3, + ACTIONS(6623), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5761), 3, + ACTIONS(6625), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [112295] = 26, + [146095] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, + ACTIONS(6066), 1, anon_sym_DOT, - ACTIONS(4816), 1, + ACTIONS(6068), 1, anon_sym_DASH_GT, - ACTIONS(5747), 1, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7115), 1, anon_sym_SLASH, - ACTIONS(5753), 1, + ACTIONS(7121), 1, anon_sym_PIPE, - ACTIONS(5757), 1, + ACTIONS(7125), 1, anon_sym_AMP, - ACTIONS(5763), 1, + ACTIONS(7131), 1, anon_sym_GT_EQ, - ACTIONS(5767), 1, + ACTIONS(7137), 1, + anon_sym_QMARK, + ACTIONS(7139), 1, anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, + ACTIONS(7141), 1, anon_sym_bitor, - ACTIONS(5771), 1, + ACTIONS(7143), 1, anon_sym_bitand, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - ACTIONS(5964), 1, - anon_sym_COMMA, - ACTIONS(6031), 1, - anon_sym_RPAREN, - STATE(2475), 1, + ACTIONS(7161), 1, + anon_sym_COLON, + STATE(2996), 1, sym_argument_list, - ACTIONS(5723), 2, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, + ACTIONS(7111), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5745), 2, + ACTIONS(7113), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5749), 2, + ACTIONS(7117), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(5751), 2, + ACTIONS(7119), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(5755), 2, + ACTIONS(7123), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(5765), 2, + ACTIONS(7133), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5759), 3, + ACTIONS(7127), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5761), 3, + ACTIONS(7129), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [112385] = 26, + [146182] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, + ACTIONS(5497), 1, anon_sym_DOT, - ACTIONS(4816), 1, + ACTIONS(5499), 1, anon_sym_DASH_GT, - ACTIONS(5747), 1, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, anon_sym_SLASH, - ACTIONS(5753), 1, + ACTIONS(6617), 1, anon_sym_PIPE, - ACTIONS(5757), 1, + ACTIONS(6621), 1, anon_sym_AMP, - ACTIONS(5763), 1, + ACTIONS(6627), 1, anon_sym_GT_EQ, - ACTIONS(5767), 1, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, + ACTIONS(6635), 1, anon_sym_bitor, - ACTIONS(5771), 1, + ACTIONS(6637), 1, anon_sym_bitand, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - ACTIONS(5964), 1, - anon_sym_COMMA, - ACTIONS(6033), 1, - anon_sym_RPAREN, - STATE(2475), 1, + ACTIONS(7163), 1, + anon_sym_SEMI, + STATE(2996), 1, sym_argument_list, - ACTIONS(5723), 2, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, + ACTIONS(6607), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5745), 2, + ACTIONS(6609), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5749), 2, + ACTIONS(6613), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(5751), 2, + ACTIONS(6615), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(5755), 2, + ACTIONS(6619), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(5765), 2, + ACTIONS(6629), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5759), 3, + ACTIONS(6623), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5761), 3, + ACTIONS(6625), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [112475] = 25, + [146269] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4385), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(5211), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(5217), 1, + ACTIONS(5497), 1, anon_sym_DOT, - ACTIONS(5219), 1, + ACTIONS(5499), 1, anon_sym_DASH_GT, - ACTIONS(5797), 1, + ACTIONS(6605), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5805), 1, + ACTIONS(6611), 1, anon_sym_SLASH, - ACTIONS(5811), 1, + ACTIONS(6617), 1, anon_sym_PIPE, - ACTIONS(5815), 1, + ACTIONS(6621), 1, anon_sym_AMP, - ACTIONS(5821), 1, - anon_sym_LT_LT, - ACTIONS(5823), 1, - anon_sym_GT_GT, - ACTIONS(5825), 1, + ACTIONS(6627), 1, + anon_sym_GT_EQ, + ACTIONS(6631), 1, anon_sym_QMARK, - ACTIONS(5827), 1, + ACTIONS(6633), 1, anon_sym_LT_EQ_GT, - ACTIONS(5829), 1, + ACTIONS(6635), 1, anon_sym_bitor, - ACTIONS(5831), 1, + ACTIONS(6637), 1, anon_sym_bitand, - STATE(3010), 1, + ACTIONS(7165), 1, + anon_sym_SEMI, + STATE(2996), 1, sym_argument_list, - ACTIONS(5801), 2, + ACTIONS(6585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6607), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5803), 2, + ACTIONS(6609), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5807), 2, + ACTIONS(6613), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(5809), 2, + ACTIONS(6615), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(5813), 2, + ACTIONS(6619), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(5833), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6035), 2, - anon_sym_COMMA, - anon_sym_GT2, - ACTIONS(5817), 3, + ACTIONS(6629), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6623), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5819), 4, + ACTIONS(6625), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [112563] = 26, + [146356] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, + ACTIONS(5497), 1, anon_sym_DOT, - ACTIONS(4816), 1, + ACTIONS(5499), 1, anon_sym_DASH_GT, - ACTIONS(5747), 1, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, anon_sym_SLASH, - ACTIONS(5753), 1, + ACTIONS(6617), 1, anon_sym_PIPE, - ACTIONS(5757), 1, + ACTIONS(6621), 1, anon_sym_AMP, - ACTIONS(5763), 1, + ACTIONS(6627), 1, anon_sym_GT_EQ, - ACTIONS(5767), 1, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, + ACTIONS(6635), 1, anon_sym_bitor, - ACTIONS(5771), 1, + ACTIONS(6637), 1, anon_sym_bitand, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - ACTIONS(5964), 1, - anon_sym_COMMA, - ACTIONS(6037), 1, - anon_sym_SEMI, - STATE(2475), 1, + ACTIONS(7167), 1, + anon_sym_RPAREN, + STATE(2996), 1, sym_argument_list, - ACTIONS(5723), 2, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, + ACTIONS(6607), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5745), 2, + ACTIONS(6609), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5749), 2, + ACTIONS(6613), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(5751), 2, + ACTIONS(6615), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(5755), 2, + ACTIONS(6619), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(5765), 2, + ACTIONS(6629), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5759), 3, + ACTIONS(6623), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5761), 3, + ACTIONS(6625), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [112653] = 25, + [146443] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, + ACTIONS(5497), 1, anon_sym_DOT, - ACTIONS(4816), 1, + ACTIONS(5499), 1, anon_sym_DASH_GT, - ACTIONS(5747), 1, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, anon_sym_SLASH, - ACTIONS(5753), 1, + ACTIONS(6617), 1, anon_sym_PIPE, - ACTIONS(5757), 1, + ACTIONS(6621), 1, anon_sym_AMP, - ACTIONS(5763), 1, + ACTIONS(6627), 1, anon_sym_GT_EQ, - ACTIONS(5767), 1, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, + ACTIONS(6635), 1, anon_sym_bitor, - ACTIONS(5771), 1, + ACTIONS(6637), 1, anon_sym_bitand, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - STATE(2475), 1, + ACTIONS(7169), 1, + anon_sym_SEMI, + STATE(2996), 1, sym_argument_list, - ACTIONS(5723), 2, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, + ACTIONS(6607), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5745), 2, + ACTIONS(6609), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5749), 2, + ACTIONS(6613), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(5751), 2, + ACTIONS(6615), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(5755), 2, + ACTIONS(6619), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(5765), 2, + ACTIONS(6629), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5884), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(5759), 3, + ACTIONS(6623), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5761), 3, + ACTIONS(6625), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [112741] = 3, + [146530] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4706), 9, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(4708), 27, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, + ACTIONS(4239), 1, anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [112785] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4166), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, + ACTIONS(5497), 1, anon_sym_DOT, - ACTIONS(4816), 1, + ACTIONS(5499), 1, anon_sym_DASH_GT, - ACTIONS(5747), 1, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6724), 1, anon_sym_SLASH, - ACTIONS(5753), 1, + ACTIONS(6730), 1, anon_sym_PIPE, - ACTIONS(5757), 1, + ACTIONS(6734), 1, anon_sym_AMP, - ACTIONS(5763), 1, + ACTIONS(6740), 1, anon_sym_GT_EQ, - ACTIONS(5767), 1, + ACTIONS(6746), 1, + anon_sym_QMARK, + ACTIONS(6748), 1, anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, + ACTIONS(6750), 1, anon_sym_bitor, - ACTIONS(5771), 1, + ACTIONS(6752), 1, anon_sym_bitand, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - ACTIONS(5964), 1, - anon_sym_COMMA, - ACTIONS(6039), 1, - anon_sym_SEMI, - STATE(2475), 1, + STATE(2996), 1, sym_argument_list, - ACTIONS(5723), 2, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, + ACTIONS(6720), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5745), 2, + ACTIONS(6722), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5749), 2, + ACTIONS(6726), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(5751), 2, + ACTIONS(6728), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(5755), 2, + ACTIONS(6732), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(5765), 2, + ACTIONS(6742), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5759), 3, + ACTIONS(6736), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5761), 3, + ACTIONS(6738), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [112875] = 26, + [146617] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, + ACTIONS(6066), 1, anon_sym_DOT, - ACTIONS(4816), 1, + ACTIONS(6068), 1, anon_sym_DASH_GT, - ACTIONS(5747), 1, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7115), 1, anon_sym_SLASH, - ACTIONS(5753), 1, + ACTIONS(7121), 1, anon_sym_PIPE, - ACTIONS(5757), 1, + ACTIONS(7125), 1, anon_sym_AMP, - ACTIONS(5763), 1, + ACTIONS(7131), 1, anon_sym_GT_EQ, - ACTIONS(5767), 1, + ACTIONS(7137), 1, + anon_sym_QMARK, + ACTIONS(7139), 1, anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, + ACTIONS(7141), 1, anon_sym_bitor, - ACTIONS(5771), 1, + ACTIONS(7143), 1, anon_sym_bitand, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - ACTIONS(5964), 1, - anon_sym_COMMA, - ACTIONS(6041), 1, - anon_sym_SEMI, - STATE(2475), 1, + ACTIONS(7171), 1, + anon_sym_COLON, + STATE(2996), 1, sym_argument_list, - ACTIONS(5723), 2, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, + ACTIONS(7111), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5745), 2, + ACTIONS(7113), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5749), 2, + ACTIONS(7117), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(5751), 2, + ACTIONS(7119), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(5755), 2, + ACTIONS(7123), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(5765), 2, + ACTIONS(7133), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5759), 3, + ACTIONS(7127), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5761), 3, + ACTIONS(7129), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [112965] = 26, + [146704] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, + ACTIONS(5497), 1, anon_sym_DOT, - ACTIONS(4816), 1, + ACTIONS(5499), 1, anon_sym_DASH_GT, - ACTIONS(5747), 1, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, anon_sym_SLASH, - ACTIONS(5753), 1, + ACTIONS(6617), 1, anon_sym_PIPE, - ACTIONS(5757), 1, + ACTIONS(6621), 1, anon_sym_AMP, - ACTIONS(5763), 1, + ACTIONS(6627), 1, anon_sym_GT_EQ, - ACTIONS(5767), 1, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, + ACTIONS(6635), 1, anon_sym_bitor, - ACTIONS(5771), 1, + ACTIONS(6637), 1, anon_sym_bitand, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - ACTIONS(5964), 1, - anon_sym_COMMA, - ACTIONS(6043), 1, + ACTIONS(7173), 1, anon_sym_SEMI, - STATE(2475), 1, + STATE(2996), 1, sym_argument_list, - ACTIONS(5723), 2, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, + ACTIONS(6607), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5745), 2, + ACTIONS(6609), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5749), 2, + ACTIONS(6613), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(5751), 2, + ACTIONS(6615), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(5755), 2, + ACTIONS(6619), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(5765), 2, + ACTIONS(6629), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5759), 3, + ACTIONS(6623), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5761), 3, + ACTIONS(6625), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [113055] = 26, + [146791] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, + ACTIONS(5497), 1, anon_sym_DOT, - ACTIONS(4816), 1, + ACTIONS(5499), 1, anon_sym_DASH_GT, - ACTIONS(5747), 1, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, anon_sym_SLASH, - ACTIONS(5753), 1, + ACTIONS(6617), 1, anon_sym_PIPE, - ACTIONS(5757), 1, + ACTIONS(6621), 1, anon_sym_AMP, - ACTIONS(5763), 1, + ACTIONS(6627), 1, anon_sym_GT_EQ, - ACTIONS(5767), 1, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, + ACTIONS(6635), 1, anon_sym_bitor, - ACTIONS(5771), 1, + ACTIONS(6637), 1, anon_sym_bitand, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - ACTIONS(5964), 1, - anon_sym_COMMA, - ACTIONS(6045), 1, - anon_sym_SEMI, - STATE(2475), 1, + ACTIONS(7175), 1, + anon_sym_RPAREN, + STATE(2996), 1, sym_argument_list, - ACTIONS(5723), 2, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, + ACTIONS(6607), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5745), 2, + ACTIONS(6609), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5749), 2, + ACTIONS(6613), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(5751), 2, + ACTIONS(6615), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(5755), 2, + ACTIONS(6619), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(5765), 2, + ACTIONS(6629), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5759), 3, + ACTIONS(6623), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5761), 3, + ACTIONS(6625), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [113145] = 26, + [146878] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(5740), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(5738), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(4798), 1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, anon_sym_LBRACK, - ACTIONS(4814), 1, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [146921] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4978), 1, + anon_sym_LPAREN2, + ACTIONS(5493), 1, + anon_sym_LBRACK, + ACTIONS(5497), 1, anon_sym_DOT, - ACTIONS(4816), 1, + ACTIONS(5499), 1, anon_sym_DASH_GT, - ACTIONS(5747), 1, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, anon_sym_SLASH, - ACTIONS(5753), 1, + ACTIONS(6617), 1, anon_sym_PIPE, - ACTIONS(5757), 1, + ACTIONS(6621), 1, anon_sym_AMP, - ACTIONS(5763), 1, + ACTIONS(6627), 1, anon_sym_GT_EQ, - ACTIONS(5767), 1, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, + ACTIONS(6635), 1, anon_sym_bitor, - ACTIONS(5771), 1, + ACTIONS(6637), 1, anon_sym_bitand, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - ACTIONS(6047), 1, - anon_sym_COMMA, - ACTIONS(6049), 1, + ACTIONS(7177), 1, anon_sym_RPAREN, - STATE(2475), 1, + STATE(2996), 1, sym_argument_list, - ACTIONS(5723), 2, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, + ACTIONS(6607), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5745), 2, + ACTIONS(6609), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5749), 2, + ACTIONS(6613), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(5751), 2, + ACTIONS(6615), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(5755), 2, + ACTIONS(6619), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(5765), 2, + ACTIONS(6629), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5759), 3, + ACTIONS(6623), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5761), 3, + ACTIONS(6625), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [113235] = 26, + [147008] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, + ACTIONS(5497), 1, anon_sym_DOT, - ACTIONS(4816), 1, + ACTIONS(5499), 1, anon_sym_DASH_GT, - ACTIONS(5747), 1, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, anon_sym_SLASH, - ACTIONS(5753), 1, + ACTIONS(6617), 1, anon_sym_PIPE, - ACTIONS(5757), 1, + ACTIONS(6621), 1, anon_sym_AMP, - ACTIONS(5763), 1, + ACTIONS(6627), 1, anon_sym_GT_EQ, - ACTIONS(5767), 1, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, + ACTIONS(6635), 1, anon_sym_bitor, - ACTIONS(5771), 1, + ACTIONS(6637), 1, anon_sym_bitand, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - ACTIONS(5964), 1, - anon_sym_COMMA, - ACTIONS(6051), 1, - anon_sym_RPAREN, - STATE(2475), 1, + ACTIONS(7179), 1, + anon_sym_SEMI, + STATE(2996), 1, sym_argument_list, - ACTIONS(5723), 2, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, + ACTIONS(6607), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5745), 2, + ACTIONS(6609), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5749), 2, + ACTIONS(6613), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(5751), 2, + ACTIONS(6615), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(5755), 2, + ACTIONS(6619), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(5765), 2, + ACTIONS(6629), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5759), 3, + ACTIONS(6623), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5761), 3, + ACTIONS(6625), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [113325] = 26, + [147095] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, - anon_sym_LPAREN2, - ACTIONS(4798), 1, - anon_sym_LBRACK, - ACTIONS(4814), 1, - anon_sym_DOT, - ACTIONS(4816), 1, - anon_sym_DASH_GT, - ACTIONS(5747), 1, + ACTIONS(5477), 11, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(5753), 1, anon_sym_PIPE, - ACTIONS(5757), 1, anon_sym_AMP, - ACTIONS(5763), 1, + anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(5767), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, - anon_sym_bitor, - ACTIONS(5771), 1, - anon_sym_bitand, - ACTIONS(5773), 1, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(5479), 24, anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - ACTIONS(5964), 1, anon_sym_COMMA, - ACTIONS(6053), 1, - anon_sym_SEMI, - STATE(2475), 1, - sym_argument_list, - ACTIONS(5723), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5745), 2, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5749), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5751), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5755), 2, anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, anon_sym_xor, - ACTIONS(5765), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5759), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + anon_sym_bitand, anon_sym_not_eq, - ACTIONS(5761), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [113415] = 26, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [147138] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, + ACTIONS(5497), 1, anon_sym_DOT, - ACTIONS(4816), 1, + ACTIONS(5499), 1, anon_sym_DASH_GT, - ACTIONS(5747), 1, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, anon_sym_SLASH, - ACTIONS(5753), 1, + ACTIONS(6617), 1, anon_sym_PIPE, - ACTIONS(5757), 1, + ACTIONS(6621), 1, anon_sym_AMP, - ACTIONS(5763), 1, + ACTIONS(6627), 1, anon_sym_GT_EQ, - ACTIONS(5767), 1, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, + ACTIONS(6635), 1, anon_sym_bitor, - ACTIONS(5771), 1, + ACTIONS(6637), 1, anon_sym_bitand, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - ACTIONS(5964), 1, - anon_sym_COMMA, - ACTIONS(6055), 1, + ACTIONS(7181), 1, anon_sym_SEMI, - STATE(2475), 1, + STATE(2996), 1, sym_argument_list, - ACTIONS(5723), 2, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, + ACTIONS(6607), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5745), 2, + ACTIONS(6609), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5749), 2, + ACTIONS(6613), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(5751), 2, + ACTIONS(6615), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(5755), 2, + ACTIONS(6619), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(5765), 2, + ACTIONS(6629), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5759), 3, + ACTIONS(6623), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5761), 3, + ACTIONS(6625), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [113505] = 25, + [147225] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, + ACTIONS(5497), 1, anon_sym_DOT, - ACTIONS(4816), 1, + ACTIONS(5499), 1, anon_sym_DASH_GT, - ACTIONS(5747), 1, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, anon_sym_SLASH, - ACTIONS(5753), 1, + ACTIONS(6617), 1, anon_sym_PIPE, - ACTIONS(5757), 1, + ACTIONS(6621), 1, anon_sym_AMP, - ACTIONS(5763), 1, + ACTIONS(6627), 1, anon_sym_GT_EQ, - ACTIONS(5767), 1, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, + ACTIONS(6635), 1, anon_sym_bitor, - ACTIONS(5771), 1, + ACTIONS(6637), 1, anon_sym_bitand, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - STATE(2475), 1, + ACTIONS(7183), 1, + anon_sym_SEMI, + STATE(2996), 1, sym_argument_list, - ACTIONS(5723), 2, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, + ACTIONS(6607), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5745), 2, + ACTIONS(6609), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5749), 2, + ACTIONS(6613), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(5751), 2, + ACTIONS(6615), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(5755), 2, + ACTIONS(6619), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(5765), 2, + ACTIONS(6629), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6057), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(5759), 3, + ACTIONS(6623), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5761), 3, + ACTIONS(6625), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [113593] = 26, + [147312] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(4300), 1, + anon_sym_RBRACK, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, + ACTIONS(5497), 1, anon_sym_DOT, - ACTIONS(4816), 1, + ACTIONS(5499), 1, anon_sym_DASH_GT, - ACTIONS(5747), 1, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6724), 1, anon_sym_SLASH, - ACTIONS(5753), 1, + ACTIONS(6730), 1, anon_sym_PIPE, - ACTIONS(5757), 1, + ACTIONS(6734), 1, anon_sym_AMP, - ACTIONS(5763), 1, + ACTIONS(6740), 1, anon_sym_GT_EQ, - ACTIONS(5767), 1, + ACTIONS(6746), 1, + anon_sym_QMARK, + ACTIONS(6748), 1, anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, + ACTIONS(6750), 1, anon_sym_bitor, - ACTIONS(5771), 1, + ACTIONS(6752), 1, anon_sym_bitand, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - ACTIONS(5964), 1, - anon_sym_COMMA, - ACTIONS(6059), 1, - anon_sym_SEMI, - STATE(2475), 1, + STATE(2996), 1, sym_argument_list, - ACTIONS(5723), 2, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, + ACTIONS(6720), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5745), 2, + ACTIONS(6722), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5749), 2, + ACTIONS(6726), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(5751), 2, + ACTIONS(6728), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(5755), 2, + ACTIONS(6732), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(5765), 2, + ACTIONS(6742), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5759), 3, + ACTIONS(6736), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5761), 3, + ACTIONS(6738), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [113683] = 26, + [147399] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(6546), 1, + anon_sym_LBRACE, + ACTIONS(7185), 1, + anon_sym_COLON, + STATE(3903), 1, + sym__enum_base_clause, + STATE(3960), 1, + sym_enumerator_list, + ACTIONS(5111), 6, anon_sym_LPAREN2, - ACTIONS(4798), 1, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + ACTIONS(5113), 25, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + [147450] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4978), 1, + anon_sym_LPAREN2, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, + ACTIONS(5497), 1, anon_sym_DOT, - ACTIONS(4816), 1, + ACTIONS(5499), 1, anon_sym_DASH_GT, - ACTIONS(5747), 1, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6724), 1, anon_sym_SLASH, - ACTIONS(5753), 1, + ACTIONS(6730), 1, anon_sym_PIPE, - ACTIONS(5757), 1, + ACTIONS(6734), 1, anon_sym_AMP, - ACTIONS(5763), 1, + ACTIONS(6740), 1, anon_sym_GT_EQ, - ACTIONS(5767), 1, + ACTIONS(6746), 1, + anon_sym_QMARK, + ACTIONS(6748), 1, anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, + ACTIONS(6750), 1, anon_sym_bitor, - ACTIONS(5771), 1, + ACTIONS(6752), 1, anon_sym_bitand, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - ACTIONS(5964), 1, - anon_sym_COMMA, - ACTIONS(6061), 1, - anon_sym_RPAREN, - STATE(2475), 1, + ACTIONS(7187), 1, + anon_sym_RBRACK, + STATE(2996), 1, sym_argument_list, - ACTIONS(5723), 2, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, + ACTIONS(6720), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5745), 2, + ACTIONS(6722), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5749), 2, + ACTIONS(6726), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(5751), 2, + ACTIONS(6728), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(5755), 2, + ACTIONS(6732), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(5765), 2, + ACTIONS(6742), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5759), 3, + ACTIONS(6736), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5761), 3, + ACTIONS(6738), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [113773] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5653), 1, - anon_sym_AMP_AMP, - ACTIONS(5655), 1, - anon_sym_AMP, - ACTIONS(5665), 1, - anon_sym_noexcept, - ACTIONS(5667), 1, - anon_sym_throw, - ACTIONS(5675), 1, - anon_sym_LBRACK, - ACTIONS(5709), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5713), 1, - anon_sym_const, - ACTIONS(5733), 1, - anon_sym_DASH_GT, - ACTIONS(5735), 1, - anon_sym_requires, - STATE(4189), 1, - sym_ref_qualifier, - STATE(4591), 1, - sym_trailing_return_type, - STATE(4716), 1, - sym_requires_clause, - ACTIONS(4135), 2, - anon_sym_final, - anon_sym_override, - STATE(4059), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(4415), 2, - sym_noexcept, - sym_throw_specifier, - STATE(4435), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(4578), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat2, - ACTIONS(5673), 7, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_try, - ACTIONS(5731), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [113851] = 26, + [147537] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, + ACTIONS(5497), 1, anon_sym_DOT, - ACTIONS(4816), 1, + ACTIONS(5499), 1, anon_sym_DASH_GT, - ACTIONS(5747), 1, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, anon_sym_SLASH, - ACTIONS(5753), 1, + ACTIONS(6617), 1, anon_sym_PIPE, - ACTIONS(5757), 1, + ACTIONS(6621), 1, anon_sym_AMP, - ACTIONS(5763), 1, + ACTIONS(6627), 1, anon_sym_GT_EQ, - ACTIONS(5767), 1, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, + ACTIONS(6635), 1, anon_sym_bitor, - ACTIONS(5771), 1, + ACTIONS(6637), 1, anon_sym_bitand, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - ACTIONS(5964), 1, - anon_sym_COMMA, - ACTIONS(6063), 1, - anon_sym_RPAREN, - STATE(2475), 1, + ACTIONS(7189), 1, + anon_sym_SEMI, + STATE(2996), 1, sym_argument_list, - ACTIONS(5723), 2, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, + ACTIONS(6607), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5745), 2, + ACTIONS(6609), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5749), 2, + ACTIONS(6613), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(5751), 2, + ACTIONS(6615), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(5755), 2, + ACTIONS(6619), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(5765), 2, + ACTIONS(6629), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5759), 3, + ACTIONS(6623), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5761), 3, + ACTIONS(6625), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [113941] = 26, + [147624] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, + ACTIONS(5497), 1, anon_sym_DOT, - ACTIONS(4816), 1, + ACTIONS(5499), 1, anon_sym_DASH_GT, - ACTIONS(5747), 1, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, anon_sym_SLASH, - ACTIONS(5753), 1, + ACTIONS(6617), 1, anon_sym_PIPE, - ACTIONS(5757), 1, + ACTIONS(6621), 1, anon_sym_AMP, - ACTIONS(5763), 1, + ACTIONS(6627), 1, anon_sym_GT_EQ, - ACTIONS(5767), 1, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, + ACTIONS(6635), 1, anon_sym_bitor, - ACTIONS(5771), 1, + ACTIONS(6637), 1, anon_sym_bitand, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - ACTIONS(5964), 1, - anon_sym_COMMA, - ACTIONS(6065), 1, - anon_sym_RPAREN, - STATE(2475), 1, + ACTIONS(7191), 1, + anon_sym_SEMI, + STATE(2996), 1, sym_argument_list, - ACTIONS(5723), 2, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, + ACTIONS(6607), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5745), 2, + ACTIONS(6609), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5749), 2, + ACTIONS(6613), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(5751), 2, + ACTIONS(6615), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(5755), 2, + ACTIONS(6619), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(5765), 2, + ACTIONS(6629), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5759), 3, + ACTIONS(6623), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5761), 3, + ACTIONS(6625), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [114031] = 26, + [147711] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, + ACTIONS(5497), 1, anon_sym_DOT, - ACTIONS(4816), 1, + ACTIONS(5499), 1, anon_sym_DASH_GT, - ACTIONS(5747), 1, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, anon_sym_SLASH, - ACTIONS(5753), 1, + ACTIONS(6617), 1, anon_sym_PIPE, - ACTIONS(5757), 1, + ACTIONS(6621), 1, anon_sym_AMP, - ACTIONS(5763), 1, + ACTIONS(6627), 1, anon_sym_GT_EQ, - ACTIONS(5767), 1, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, + ACTIONS(6635), 1, anon_sym_bitor, - ACTIONS(5771), 1, + ACTIONS(6637), 1, anon_sym_bitand, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - ACTIONS(5964), 1, + ACTIONS(7193), 1, anon_sym_COMMA, - ACTIONS(6067), 1, - anon_sym_SEMI, - STATE(2475), 1, + STATE(2996), 1, sym_argument_list, - ACTIONS(5723), 2, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, + ACTIONS(6607), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5745), 2, + ACTIONS(6609), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5749), 2, + ACTIONS(6613), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(5751), 2, + ACTIONS(6615), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(5755), 2, + ACTIONS(6619), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(5765), 2, + ACTIONS(6629), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5759), 3, + ACTIONS(6623), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5761), 3, + ACTIONS(6625), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [114121] = 5, + [147798] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6069), 1, - anon_sym_LPAREN2, - STATE(2584), 1, - sym_argument_list, - ACTIONS(4322), 10, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(7197), 2, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - ACTIONS(4324), 24, - anon_sym_AMP, + ACTIONS(7195), 33, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, anon_sym_static, anon_sym_register, anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, sym_identifier, sym_auto, anon_sym_decltype, anon_sym_virtual, + anon_sym_typename, anon_sym_template, - anon_sym_operator, - [114169] = 26, + [147841] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, + ACTIONS(5497), 1, anon_sym_DOT, - ACTIONS(4816), 1, + ACTIONS(5499), 1, anon_sym_DASH_GT, - ACTIONS(5747), 1, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, anon_sym_SLASH, - ACTIONS(5753), 1, + ACTIONS(6617), 1, anon_sym_PIPE, - ACTIONS(5757), 1, + ACTIONS(6621), 1, anon_sym_AMP, - ACTIONS(5763), 1, + ACTIONS(6627), 1, anon_sym_GT_EQ, - ACTIONS(5767), 1, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, + ACTIONS(6635), 1, anon_sym_bitor, - ACTIONS(5771), 1, + ACTIONS(6637), 1, anon_sym_bitand, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - ACTIONS(5964), 1, - anon_sym_COMMA, - ACTIONS(6072), 1, - anon_sym_RPAREN, - STATE(2475), 1, + ACTIONS(7199), 1, + anon_sym_SEMI, + STATE(2996), 1, sym_argument_list, - ACTIONS(5723), 2, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, + ACTIONS(6607), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5745), 2, + ACTIONS(6609), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5749), 2, + ACTIONS(6613), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(5751), 2, + ACTIONS(6615), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(5755), 2, + ACTIONS(6619), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(5765), 2, + ACTIONS(6629), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5759), 3, + ACTIONS(6623), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5761), 3, + ACTIONS(6625), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [114259] = 26, + [147928] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, + ACTIONS(6066), 1, anon_sym_DOT, - ACTIONS(4816), 1, + ACTIONS(6068), 1, anon_sym_DASH_GT, - ACTIONS(5747), 1, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7115), 1, anon_sym_SLASH, - ACTIONS(5753), 1, + ACTIONS(7121), 1, anon_sym_PIPE, - ACTIONS(5757), 1, + ACTIONS(7125), 1, anon_sym_AMP, - ACTIONS(5763), 1, + ACTIONS(7131), 1, anon_sym_GT_EQ, - ACTIONS(5767), 1, + ACTIONS(7137), 1, + anon_sym_QMARK, + ACTIONS(7139), 1, anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, + ACTIONS(7141), 1, anon_sym_bitor, - ACTIONS(5771), 1, + ACTIONS(7143), 1, anon_sym_bitand, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - ACTIONS(5964), 1, - anon_sym_COMMA, - ACTIONS(6074), 1, - anon_sym_RPAREN, - STATE(2475), 1, + ACTIONS(7201), 1, + anon_sym_COLON, + STATE(2996), 1, sym_argument_list, - ACTIONS(5723), 2, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, + ACTIONS(7111), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5745), 2, + ACTIONS(7113), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5749), 2, + ACTIONS(7117), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(5751), 2, + ACTIONS(7119), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(5755), 2, + ACTIONS(7123), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(5765), 2, + ACTIONS(7133), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5759), 3, + ACTIONS(7127), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5761), 3, + ACTIONS(7129), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [114349] = 26, + [148015] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, + ACTIONS(5497), 1, anon_sym_DOT, - ACTIONS(4816), 1, + ACTIONS(5499), 1, anon_sym_DASH_GT, - ACTIONS(5747), 1, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6724), 1, anon_sym_SLASH, - ACTIONS(5753), 1, + ACTIONS(6730), 1, anon_sym_PIPE, - ACTIONS(5757), 1, + ACTIONS(6734), 1, anon_sym_AMP, - ACTIONS(5763), 1, + ACTIONS(6740), 1, anon_sym_GT_EQ, - ACTIONS(5767), 1, + ACTIONS(6746), 1, + anon_sym_QMARK, + ACTIONS(6748), 1, anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, + ACTIONS(6750), 1, anon_sym_bitor, - ACTIONS(5771), 1, + ACTIONS(6752), 1, anon_sym_bitand, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - ACTIONS(6076), 1, - anon_sym_COMMA, - ACTIONS(6078), 1, - anon_sym_RPAREN, - STATE(2475), 1, + ACTIONS(7203), 1, + anon_sym_RBRACK, + STATE(2996), 1, sym_argument_list, - ACTIONS(5723), 2, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, + ACTIONS(6720), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5745), 2, + ACTIONS(6722), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5749), 2, + ACTIONS(6726), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(5751), 2, + ACTIONS(6728), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(5755), 2, + ACTIONS(6732), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(5765), 2, + ACTIONS(6742), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5759), 3, + ACTIONS(6736), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5761), 3, + ACTIONS(6738), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [114439] = 26, + [148102] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, + ACTIONS(6066), 1, anon_sym_DOT, - ACTIONS(4816), 1, + ACTIONS(6068), 1, anon_sym_DASH_GT, - ACTIONS(5747), 1, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7115), 1, anon_sym_SLASH, - ACTIONS(5753), 1, + ACTIONS(7121), 1, anon_sym_PIPE, - ACTIONS(5757), 1, + ACTIONS(7125), 1, anon_sym_AMP, - ACTIONS(5763), 1, + ACTIONS(7131), 1, anon_sym_GT_EQ, - ACTIONS(5767), 1, + ACTIONS(7137), 1, + anon_sym_QMARK, + ACTIONS(7139), 1, anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, + ACTIONS(7141), 1, anon_sym_bitor, - ACTIONS(5771), 1, + ACTIONS(7143), 1, anon_sym_bitand, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - ACTIONS(5964), 1, - anon_sym_COMMA, - ACTIONS(6080), 1, - anon_sym_SEMI, - STATE(2475), 1, + ACTIONS(7205), 1, + anon_sym_COLON, + STATE(2996), 1, sym_argument_list, - ACTIONS(5723), 2, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, + ACTIONS(7111), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5745), 2, + ACTIONS(7113), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5749), 2, + ACTIONS(7117), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(5751), 2, + ACTIONS(7119), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(5755), 2, + ACTIONS(7123), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(5765), 2, + ACTIONS(7133), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5759), 3, + ACTIONS(7127), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5761), 3, + ACTIONS(7129), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [114529] = 26, + [148189] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, + ACTIONS(5497), 1, anon_sym_DOT, - ACTIONS(4816), 1, + ACTIONS(5499), 1, anon_sym_DASH_GT, - ACTIONS(5747), 1, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6724), 1, anon_sym_SLASH, - ACTIONS(5753), 1, + ACTIONS(6730), 1, anon_sym_PIPE, - ACTIONS(5757), 1, + ACTIONS(6734), 1, anon_sym_AMP, - ACTIONS(5763), 1, + ACTIONS(6740), 1, anon_sym_GT_EQ, - ACTIONS(5767), 1, + ACTIONS(6746), 1, + anon_sym_QMARK, + ACTIONS(6748), 1, anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, + ACTIONS(6750), 1, anon_sym_bitor, - ACTIONS(5771), 1, + ACTIONS(6752), 1, anon_sym_bitand, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - ACTIONS(5964), 1, - anon_sym_COMMA, - ACTIONS(6082), 1, - anon_sym_RPAREN, - STATE(2475), 1, + ACTIONS(7207), 1, + anon_sym_RBRACK, + STATE(2996), 1, sym_argument_list, - ACTIONS(5723), 2, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, + ACTIONS(6720), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5745), 2, + ACTIONS(6722), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5749), 2, + ACTIONS(6726), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(5751), 2, + ACTIONS(6728), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(5755), 2, + ACTIONS(6732), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(5765), 2, + ACTIONS(6742), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5759), 3, + ACTIONS(6736), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5761), 3, + ACTIONS(6738), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [114619] = 26, + [148276] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, + ACTIONS(6066), 1, anon_sym_DOT, - ACTIONS(4816), 1, + ACTIONS(6068), 1, anon_sym_DASH_GT, - ACTIONS(5747), 1, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7115), 1, anon_sym_SLASH, - ACTIONS(5753), 1, + ACTIONS(7121), 1, anon_sym_PIPE, - ACTIONS(5757), 1, + ACTIONS(7125), 1, anon_sym_AMP, - ACTIONS(5763), 1, + ACTIONS(7131), 1, anon_sym_GT_EQ, - ACTIONS(5767), 1, + ACTIONS(7137), 1, + anon_sym_QMARK, + ACTIONS(7139), 1, anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, + ACTIONS(7141), 1, anon_sym_bitor, - ACTIONS(5771), 1, + ACTIONS(7143), 1, anon_sym_bitand, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - ACTIONS(5964), 1, - anon_sym_COMMA, - ACTIONS(6084), 1, - anon_sym_SEMI, - STATE(2475), 1, + ACTIONS(7209), 1, + anon_sym_COLON, + STATE(2996), 1, sym_argument_list, - ACTIONS(5723), 2, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, + ACTIONS(7111), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5745), 2, + ACTIONS(7113), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5749), 2, + ACTIONS(7117), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(5751), 2, + ACTIONS(7119), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(5755), 2, + ACTIONS(7123), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(5765), 2, + ACTIONS(7133), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5759), 3, + ACTIONS(7127), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5761), 3, + ACTIONS(7129), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [114709] = 26, + [148363] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, - anon_sym_LPAREN2, - ACTIONS(4798), 1, - anon_sym_LBRACK, - ACTIONS(4814), 1, - anon_sym_DOT, - ACTIONS(4816), 1, - anon_sym_DASH_GT, - ACTIONS(5747), 1, + ACTIONS(5629), 11, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(5753), 1, anon_sym_PIPE, - ACTIONS(5757), 1, anon_sym_AMP, - ACTIONS(5763), 1, + anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(5767), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, - anon_sym_bitor, - ACTIONS(5771), 1, - anon_sym_bitand, - ACTIONS(5773), 1, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(5627), 24, anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - ACTIONS(5964), 1, anon_sym_COMMA, - ACTIONS(6086), 1, - anon_sym_RPAREN, - STATE(2475), 1, - sym_argument_list, - ACTIONS(5723), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5745), 2, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5749), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5751), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5755), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(5765), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5759), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, anon_sym_not_eq, - ACTIONS(5761), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [114799] = 26, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [148406] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, + ACTIONS(5497), 1, anon_sym_DOT, - ACTIONS(4816), 1, + ACTIONS(5499), 1, anon_sym_DASH_GT, - ACTIONS(5747), 1, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, anon_sym_SLASH, - ACTIONS(5753), 1, + ACTIONS(6617), 1, anon_sym_PIPE, - ACTIONS(5757), 1, + ACTIONS(6621), 1, anon_sym_AMP, - ACTIONS(5763), 1, + ACTIONS(6627), 1, anon_sym_GT_EQ, - ACTIONS(5767), 1, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, + ACTIONS(6635), 1, anon_sym_bitor, - ACTIONS(5771), 1, + ACTIONS(6637), 1, anon_sym_bitand, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - ACTIONS(5964), 1, - anon_sym_COMMA, - ACTIONS(6088), 1, + ACTIONS(7211), 1, anon_sym_SEMI, - STATE(2475), 1, + STATE(2996), 1, sym_argument_list, - ACTIONS(5723), 2, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, + ACTIONS(6607), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5745), 2, + ACTIONS(6609), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5749), 2, + ACTIONS(6613), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(5751), 2, + ACTIONS(6615), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(5755), 2, + ACTIONS(6619), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(5765), 2, + ACTIONS(6629), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5759), 3, + ACTIONS(6623), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5761), 3, + ACTIONS(6625), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [114889] = 26, + [148493] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, + ACTIONS(6066), 1, anon_sym_DOT, - ACTIONS(4816), 1, + ACTIONS(6068), 1, anon_sym_DASH_GT, - ACTIONS(5747), 1, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7115), 1, anon_sym_SLASH, - ACTIONS(5753), 1, + ACTIONS(7121), 1, anon_sym_PIPE, - ACTIONS(5757), 1, + ACTIONS(7125), 1, anon_sym_AMP, - ACTIONS(5763), 1, + ACTIONS(7131), 1, anon_sym_GT_EQ, - ACTIONS(5767), 1, + ACTIONS(7137), 1, + anon_sym_QMARK, + ACTIONS(7139), 1, anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, + ACTIONS(7141), 1, anon_sym_bitor, - ACTIONS(5771), 1, + ACTIONS(7143), 1, anon_sym_bitand, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - ACTIONS(5964), 1, - anon_sym_COMMA, - ACTIONS(6090), 1, - anon_sym_RPAREN, - STATE(2475), 1, + ACTIONS(7213), 1, + anon_sym_COLON, + STATE(2996), 1, sym_argument_list, - ACTIONS(5723), 2, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, + ACTIONS(7111), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5745), 2, + ACTIONS(7113), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5749), 2, + ACTIONS(7117), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(5751), 2, + ACTIONS(7119), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(5755), 2, + ACTIONS(7123), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(5765), 2, + ACTIONS(7133), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5759), 3, + ACTIONS(7127), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5761), 3, + ACTIONS(7129), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [114979] = 26, + [148580] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, + ACTIONS(5497), 1, anon_sym_DOT, - ACTIONS(4816), 1, + ACTIONS(5499), 1, anon_sym_DASH_GT, - ACTIONS(5747), 1, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, anon_sym_SLASH, - ACTIONS(5753), 1, + ACTIONS(6617), 1, anon_sym_PIPE, - ACTIONS(5757), 1, + ACTIONS(6621), 1, anon_sym_AMP, - ACTIONS(5763), 1, + ACTIONS(6627), 1, anon_sym_GT_EQ, - ACTIONS(5767), 1, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, + ACTIONS(6635), 1, anon_sym_bitor, - ACTIONS(5771), 1, + ACTIONS(6637), 1, anon_sym_bitand, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - ACTIONS(5964), 1, + ACTIONS(7215), 1, anon_sym_COMMA, - ACTIONS(5968), 1, - anon_sym_SEMI, - STATE(2475), 1, + STATE(2996), 1, sym_argument_list, - ACTIONS(5723), 2, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, + ACTIONS(6607), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5745), 2, + ACTIONS(6609), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5749), 2, + ACTIONS(6613), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(5751), 2, + ACTIONS(6615), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(5755), 2, + ACTIONS(6619), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(5765), 2, + ACTIONS(6629), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5759), 3, + ACTIONS(6623), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5761), 3, + ACTIONS(6625), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [115069] = 26, + [148667] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(5465), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(5467), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(4798), 1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [148710] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3194), 2, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(3189), 33, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_typename, + anon_sym_template, + [148753] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4978), 1, + anon_sym_LPAREN2, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, + ACTIONS(5497), 1, anon_sym_DOT, - ACTIONS(4816), 1, + ACTIONS(5499), 1, anon_sym_DASH_GT, - ACTIONS(5747), 1, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, anon_sym_SLASH, - ACTIONS(5753), 1, + ACTIONS(6617), 1, anon_sym_PIPE, - ACTIONS(5757), 1, + ACTIONS(6621), 1, anon_sym_AMP, - ACTIONS(5763), 1, + ACTIONS(6627), 1, anon_sym_GT_EQ, - ACTIONS(5767), 1, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, + ACTIONS(6635), 1, anon_sym_bitor, - ACTIONS(5771), 1, + ACTIONS(6637), 1, anon_sym_bitand, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - ACTIONS(5964), 1, - anon_sym_COMMA, - ACTIONS(6092), 1, - anon_sym_RPAREN, - STATE(2475), 1, + ACTIONS(7217), 1, + anon_sym_SEMI, + STATE(2996), 1, sym_argument_list, - ACTIONS(5723), 2, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, + ACTIONS(6607), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5745), 2, + ACTIONS(6609), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5749), 2, + ACTIONS(6613), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(5751), 2, + ACTIONS(6615), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(5755), 2, + ACTIONS(6619), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(5765), 2, + ACTIONS(6629), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5759), 3, + ACTIONS(6623), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5761), 3, + ACTIONS(6625), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [115159] = 26, + [148840] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, + ACTIONS(5497), 1, anon_sym_DOT, - ACTIONS(4816), 1, + ACTIONS(5499), 1, anon_sym_DASH_GT, - ACTIONS(5747), 1, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, anon_sym_SLASH, - ACTIONS(5753), 1, + ACTIONS(6617), 1, anon_sym_PIPE, - ACTIONS(5757), 1, + ACTIONS(6621), 1, anon_sym_AMP, - ACTIONS(5763), 1, + ACTIONS(6627), 1, anon_sym_GT_EQ, - ACTIONS(5767), 1, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, + ACTIONS(6635), 1, anon_sym_bitor, - ACTIONS(5771), 1, + ACTIONS(6637), 1, anon_sym_bitand, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - ACTIONS(5964), 1, - anon_sym_COMMA, - ACTIONS(6094), 1, - anon_sym_RPAREN, - STATE(2475), 1, + ACTIONS(7219), 1, + anon_sym_SEMI, + STATE(2996), 1, sym_argument_list, - ACTIONS(5723), 2, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, + ACTIONS(6607), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5745), 2, + ACTIONS(6609), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5749), 2, + ACTIONS(6613), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(5751), 2, + ACTIONS(6615), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(5755), 2, + ACTIONS(6619), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(5765), 2, + ACTIONS(6629), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5759), 3, + ACTIONS(6623), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5761), 3, + ACTIONS(6625), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [115249] = 26, + [148927] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, + ACTIONS(5497), 1, anon_sym_DOT, - ACTIONS(4816), 1, + ACTIONS(5499), 1, anon_sym_DASH_GT, - ACTIONS(5747), 1, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, anon_sym_SLASH, - ACTIONS(5753), 1, + ACTIONS(6617), 1, anon_sym_PIPE, - ACTIONS(5757), 1, + ACTIONS(6621), 1, anon_sym_AMP, - ACTIONS(5763), 1, + ACTIONS(6627), 1, anon_sym_GT_EQ, - ACTIONS(5767), 1, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, + ACTIONS(6635), 1, anon_sym_bitor, - ACTIONS(5771), 1, + ACTIONS(6637), 1, anon_sym_bitand, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - ACTIONS(5964), 1, - anon_sym_COMMA, - ACTIONS(6096), 1, + ACTIONS(7221), 1, anon_sym_RPAREN, - STATE(2475), 1, + STATE(2996), 1, sym_argument_list, - ACTIONS(5723), 2, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, + ACTIONS(6607), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5745), 2, + ACTIONS(6609), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5749), 2, + ACTIONS(6613), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(5751), 2, + ACTIONS(6615), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(5755), 2, + ACTIONS(6619), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(5765), 2, + ACTIONS(6629), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5759), 3, + ACTIONS(6623), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5761), 3, + ACTIONS(6625), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [115339] = 26, + [149014] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, + ACTIONS(5497), 1, anon_sym_DOT, - ACTIONS(4816), 1, + ACTIONS(5499), 1, anon_sym_DASH_GT, - ACTIONS(5747), 1, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6724), 1, anon_sym_SLASH, - ACTIONS(5753), 1, + ACTIONS(6730), 1, anon_sym_PIPE, - ACTIONS(5757), 1, + ACTIONS(6734), 1, anon_sym_AMP, - ACTIONS(5763), 1, + ACTIONS(6740), 1, anon_sym_GT_EQ, - ACTIONS(5767), 1, + ACTIONS(6746), 1, + anon_sym_QMARK, + ACTIONS(6748), 1, anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, + ACTIONS(6750), 1, anon_sym_bitor, - ACTIONS(5771), 1, + ACTIONS(6752), 1, anon_sym_bitand, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - ACTIONS(5964), 1, - anon_sym_COMMA, - ACTIONS(6098), 1, - anon_sym_RPAREN, - STATE(2475), 1, + ACTIONS(7223), 1, + anon_sym_RBRACK, + STATE(2996), 1, sym_argument_list, - ACTIONS(5723), 2, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, + ACTIONS(6720), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5745), 2, + ACTIONS(6722), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5749), 2, + ACTIONS(6726), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(5751), 2, + ACTIONS(6728), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(5755), 2, + ACTIONS(6732), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(5765), 2, + ACTIONS(6742), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5759), 3, + ACTIONS(6736), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5761), 3, + ACTIONS(6738), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [115429] = 26, + [149101] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, + ACTIONS(5497), 1, anon_sym_DOT, - ACTIONS(4816), 1, + ACTIONS(5499), 1, anon_sym_DASH_GT, - ACTIONS(5747), 1, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, anon_sym_SLASH, - ACTIONS(5753), 1, + ACTIONS(6617), 1, anon_sym_PIPE, - ACTIONS(5757), 1, + ACTIONS(6621), 1, anon_sym_AMP, - ACTIONS(5763), 1, + ACTIONS(6627), 1, anon_sym_GT_EQ, - ACTIONS(5767), 1, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, + ACTIONS(6635), 1, anon_sym_bitor, - ACTIONS(5771), 1, + ACTIONS(6637), 1, anon_sym_bitand, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - ACTIONS(5964), 1, + ACTIONS(7225), 1, anon_sym_COMMA, - ACTIONS(6100), 1, - anon_sym_RPAREN, - STATE(2475), 1, + STATE(2996), 1, sym_argument_list, - ACTIONS(5723), 2, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, + ACTIONS(6607), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5745), 2, + ACTIONS(6609), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5749), 2, + ACTIONS(6613), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(5751), 2, + ACTIONS(6615), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(5755), 2, + ACTIONS(6619), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(5765), 2, + ACTIONS(6629), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5759), 3, + ACTIONS(6623), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5761), 3, + ACTIONS(6625), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [115519] = 26, + [149188] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(5760), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(5758), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(4798), 1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [149231] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4978), 1, + anon_sym_LPAREN2, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, + ACTIONS(5497), 1, anon_sym_DOT, - ACTIONS(4816), 1, + ACTIONS(5499), 1, anon_sym_DASH_GT, - ACTIONS(5747), 1, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, anon_sym_SLASH, - ACTIONS(5753), 1, + ACTIONS(6617), 1, anon_sym_PIPE, - ACTIONS(5757), 1, + ACTIONS(6621), 1, anon_sym_AMP, - ACTIONS(5763), 1, + ACTIONS(6627), 1, anon_sym_GT_EQ, - ACTIONS(5767), 1, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, + ACTIONS(6635), 1, anon_sym_bitor, - ACTIONS(5771), 1, + ACTIONS(6637), 1, anon_sym_bitand, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - ACTIONS(5964), 1, - anon_sym_COMMA, - ACTIONS(6102), 1, - anon_sym_RPAREN, - STATE(2475), 1, + ACTIONS(7227), 1, + anon_sym_SEMI, + STATE(2996), 1, sym_argument_list, - ACTIONS(5723), 2, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, + ACTIONS(6607), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5745), 2, + ACTIONS(6609), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5749), 2, + ACTIONS(6613), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(5751), 2, + ACTIONS(6615), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(5755), 2, + ACTIONS(6619), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(5765), 2, + ACTIONS(6629), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5759), 3, + ACTIONS(6623), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5761), 3, + ACTIONS(6625), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [115609] = 26, + [149318] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(5709), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(5707), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(4798), 1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [149361] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4978), 1, + anon_sym_LPAREN2, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, + ACTIONS(5497), 1, anon_sym_DOT, - ACTIONS(4816), 1, + ACTIONS(5499), 1, anon_sym_DASH_GT, - ACTIONS(5747), 1, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6724), 1, anon_sym_SLASH, - ACTIONS(5753), 1, + ACTIONS(6730), 1, anon_sym_PIPE, - ACTIONS(5757), 1, + ACTIONS(6734), 1, anon_sym_AMP, - ACTIONS(5763), 1, + ACTIONS(6740), 1, anon_sym_GT_EQ, - ACTIONS(5767), 1, + ACTIONS(6746), 1, + anon_sym_QMARK, + ACTIONS(6748), 1, anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, + ACTIONS(6750), 1, anon_sym_bitor, - ACTIONS(5771), 1, + ACTIONS(6752), 1, anon_sym_bitand, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - ACTIONS(5964), 1, - anon_sym_COMMA, - ACTIONS(6104), 1, - anon_sym_RPAREN, - STATE(2475), 1, + ACTIONS(7229), 1, + anon_sym_RBRACK, + STATE(2996), 1, sym_argument_list, - ACTIONS(5723), 2, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, + ACTIONS(6720), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5745), 2, + ACTIONS(6722), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5749), 2, + ACTIONS(6726), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(5751), 2, + ACTIONS(6728), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(5755), 2, + ACTIONS(6732), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(5765), 2, + ACTIONS(6742), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5759), 3, + ACTIONS(6736), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5761), 3, + ACTIONS(6738), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [115699] = 3, + [149448] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4752), 9, + ACTIONS(5768), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(4754), 27, + ACTIONS(5766), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -327552,12 +430630,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -327569,176 +430643,179 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [115743] = 3, + anon_sym_GT2, + [149491] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4322), 9, - anon_sym_COMMA, + ACTIONS(4978), 1, anon_sym_LPAREN2, + ACTIONS(5493), 1, + anon_sym_LBRACK, + ACTIONS(5497), 1, + anon_sym_DOT, + ACTIONS(5499), 1, + anon_sym_DASH_GT, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, + anon_sym_SLASH, + ACTIONS(6617), 1, + anon_sym_PIPE, + ACTIONS(6621), 1, + anon_sym_AMP, + ACTIONS(6627), 1, + anon_sym_GT_EQ, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6635), 1, + anon_sym_bitor, + ACTIONS(6637), 1, + anon_sym_bitand, + ACTIONS(7231), 1, + anon_sym_COMMA, + STATE(2996), 1, + sym_argument_list, + ACTIONS(6585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6607), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6609), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6613), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6615), 2, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(4324), 27, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [115787] = 25, + anon_sym_and, + ACTIONS(6619), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6629), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6623), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6625), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [149578] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4385), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(5211), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(5217), 1, + ACTIONS(5497), 1, anon_sym_DOT, - ACTIONS(5219), 1, + ACTIONS(5499), 1, anon_sym_DASH_GT, - ACTIONS(5797), 1, + ACTIONS(6605), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5805), 1, + ACTIONS(6611), 1, anon_sym_SLASH, - ACTIONS(5811), 1, + ACTIONS(6617), 1, anon_sym_PIPE, - ACTIONS(5815), 1, + ACTIONS(6621), 1, anon_sym_AMP, - ACTIONS(5821), 1, - anon_sym_LT_LT, - ACTIONS(5823), 1, - anon_sym_GT_GT, - ACTIONS(5825), 1, + ACTIONS(6627), 1, + anon_sym_GT_EQ, + ACTIONS(6631), 1, anon_sym_QMARK, - ACTIONS(5827), 1, + ACTIONS(6633), 1, anon_sym_LT_EQ_GT, - ACTIONS(5829), 1, + ACTIONS(6635), 1, anon_sym_bitor, - ACTIONS(5831), 1, + ACTIONS(6637), 1, anon_sym_bitand, - STATE(3010), 1, + ACTIONS(7233), 1, + anon_sym_RPAREN, + STATE(2996), 1, sym_argument_list, - ACTIONS(5801), 2, + ACTIONS(6585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6607), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5803), 2, + ACTIONS(6609), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5807), 2, + ACTIONS(6613), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(5809), 2, + ACTIONS(6615), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(5813), 2, + ACTIONS(6619), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(5833), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6057), 2, - anon_sym_COMMA, - anon_sym_GT2, - ACTIONS(5817), 3, + ACTIONS(6629), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6623), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5819), 4, + ACTIONS(6625), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [115875] = 22, + [149665] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(59), 1, - anon_sym_const, - ACTIONS(4214), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5653), 1, + ACTIONS(6546), 1, + anon_sym_LBRACE, + ACTIONS(7185), 1, + anon_sym_COLON, + STATE(3898), 1, + sym__enum_base_clause, + STATE(3958), 1, + sym_enumerator_list, + ACTIONS(5123), 6, + anon_sym_LPAREN2, + anon_sym_STAR, anon_sym_AMP_AMP, - ACTIONS(5655), 1, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + ACTIONS(5125), 25, anon_sym_AMP, - ACTIONS(5657), 1, + anon_sym_extern, anon_sym___attribute__, - ACTIONS(5659), 1, - anon_sym_LBRACK, - ACTIONS(5665), 1, - anon_sym_noexcept, - ACTIONS(5667), 1, - anon_sym_throw, - ACTIONS(6106), 1, - anon_sym_DASH_GT, - ACTIONS(6108), 1, - anon_sym_requires, - STATE(4409), 1, - sym_ref_qualifier, - STATE(4794), 1, - sym_requires_clause, - STATE(4905), 1, - sym_trailing_return_type, - ACTIONS(5898), 2, - anon_sym_final, - anon_sym_override, - STATE(3609), 2, - sym_attribute_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(3890), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(4554), 2, - sym_noexcept, - sym_throw_specifier, - STATE(4555), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(4631), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat2, - ACTIONS(5651), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_GT2, - ACTIONS(5661), 7, + anon_sym___declspec, + anon_sym___based, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - [115957] = 4, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + [149716] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5329), 1, - sym_literal_suffix, - ACTIONS(3803), 17, + ACTIONS(5772), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -327749,14 +430826,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_GT_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - ACTIONS(3795), 18, + ACTIONS(5770), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -327771,892 +430842,1044 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, anon_sym_GT2, - [116003] = 3, + [149759] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4361), 9, + ACTIONS(5736), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(5734), 24, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(4363), 27, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [116047] = 25, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [149802] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, + ACTIONS(5497), 1, anon_sym_DOT, - ACTIONS(4816), 1, + ACTIONS(5499), 1, anon_sym_DASH_GT, - ACTIONS(5747), 1, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, anon_sym_SLASH, - ACTIONS(5753), 1, + ACTIONS(6617), 1, anon_sym_PIPE, - ACTIONS(5757), 1, + ACTIONS(6621), 1, anon_sym_AMP, - ACTIONS(5763), 1, + ACTIONS(6627), 1, anon_sym_GT_EQ, - ACTIONS(5767), 1, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, + ACTIONS(6635), 1, anon_sym_bitor, - ACTIONS(5771), 1, + ACTIONS(6637), 1, anon_sym_bitand, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - STATE(2475), 1, + ACTIONS(7235), 1, + anon_sym_SEMI, + STATE(2996), 1, sym_argument_list, - ACTIONS(5723), 2, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, + ACTIONS(6607), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5745), 2, + ACTIONS(6609), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5749), 2, + ACTIONS(6613), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(5751), 2, + ACTIONS(6615), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(5755), 2, + ACTIONS(6619), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(5765), 2, + ACTIONS(6629), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6035), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(5759), 3, + ACTIONS(6623), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5761), 3, + ACTIONS(6625), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [116135] = 26, + [149889] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, + ACTIONS(5497), 1, anon_sym_DOT, - ACTIONS(4816), 1, + ACTIONS(5499), 1, anon_sym_DASH_GT, - ACTIONS(5747), 1, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, anon_sym_SLASH, - ACTIONS(5753), 1, + ACTIONS(6617), 1, anon_sym_PIPE, - ACTIONS(5757), 1, + ACTIONS(6621), 1, anon_sym_AMP, - ACTIONS(5763), 1, + ACTIONS(6627), 1, anon_sym_GT_EQ, - ACTIONS(5767), 1, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, + ACTIONS(6635), 1, anon_sym_bitor, - ACTIONS(5771), 1, + ACTIONS(6637), 1, anon_sym_bitand, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - ACTIONS(5964), 1, - anon_sym_COMMA, - ACTIONS(6110), 1, + ACTIONS(7237), 1, anon_sym_RPAREN, - STATE(2475), 1, + STATE(2996), 1, sym_argument_list, - ACTIONS(5723), 2, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, + ACTIONS(6607), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5745), 2, + ACTIONS(6609), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5749), 2, + ACTIONS(6613), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(5751), 2, + ACTIONS(6615), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(5755), 2, + ACTIONS(6619), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(5765), 2, + ACTIONS(6629), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5759), 3, + ACTIONS(6623), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5761), 3, + ACTIONS(6625), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [116225] = 26, + [149976] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, + ACTIONS(5497), 1, anon_sym_DOT, - ACTIONS(4816), 1, + ACTIONS(5499), 1, anon_sym_DASH_GT, - ACTIONS(5747), 1, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, anon_sym_SLASH, - ACTIONS(5753), 1, + ACTIONS(6617), 1, anon_sym_PIPE, - ACTIONS(5757), 1, + ACTIONS(6621), 1, anon_sym_AMP, - ACTIONS(5763), 1, + ACTIONS(6627), 1, anon_sym_GT_EQ, - ACTIONS(5767), 1, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, + ACTIONS(6635), 1, anon_sym_bitor, - ACTIONS(5771), 1, + ACTIONS(6637), 1, anon_sym_bitand, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - ACTIONS(5964), 1, - anon_sym_COMMA, - ACTIONS(6112), 1, + ACTIONS(7239), 1, anon_sym_RPAREN, - STATE(2475), 1, + STATE(2996), 1, sym_argument_list, - ACTIONS(5723), 2, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, + ACTIONS(6607), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5745), 2, + ACTIONS(6609), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5749), 2, + ACTIONS(6613), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(5751), 2, + ACTIONS(6615), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(5755), 2, + ACTIONS(6619), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(5765), 2, + ACTIONS(6629), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5759), 3, + ACTIONS(6623), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5761), 3, + ACTIONS(6625), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [150063] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5659), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [116315] = 26, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(5657), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [150106] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, + ACTIONS(5497), 1, anon_sym_DOT, - ACTIONS(4816), 1, + ACTIONS(5499), 1, anon_sym_DASH_GT, - ACTIONS(5747), 1, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, anon_sym_SLASH, - ACTIONS(5753), 1, + ACTIONS(6617), 1, anon_sym_PIPE, - ACTIONS(5757), 1, + ACTIONS(6621), 1, anon_sym_AMP, - ACTIONS(5763), 1, + ACTIONS(6627), 1, anon_sym_GT_EQ, - ACTIONS(5767), 1, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, + ACTIONS(6635), 1, anon_sym_bitor, - ACTIONS(5771), 1, + ACTIONS(6637), 1, anon_sym_bitand, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - ACTIONS(5964), 1, + ACTIONS(7241), 1, anon_sym_COMMA, - ACTIONS(6114), 1, - anon_sym_RPAREN, - STATE(2475), 1, + STATE(2996), 1, sym_argument_list, - ACTIONS(5723), 2, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, + ACTIONS(6607), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5745), 2, + ACTIONS(6609), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5749), 2, + ACTIONS(6613), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(5751), 2, + ACTIONS(6615), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(5755), 2, + ACTIONS(6619), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(5765), 2, + ACTIONS(6629), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5759), 3, + ACTIONS(6623), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5761), 3, + ACTIONS(6625), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [116405] = 26, + [150193] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, + ACTIONS(5497), 1, anon_sym_DOT, - ACTIONS(4816), 1, + ACTIONS(5499), 1, anon_sym_DASH_GT, - ACTIONS(5747), 1, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6724), 1, anon_sym_SLASH, - ACTIONS(5753), 1, + ACTIONS(6730), 1, anon_sym_PIPE, - ACTIONS(5757), 1, + ACTIONS(6734), 1, anon_sym_AMP, - ACTIONS(5763), 1, + ACTIONS(6740), 1, anon_sym_GT_EQ, - ACTIONS(5767), 1, + ACTIONS(6746), 1, + anon_sym_QMARK, + ACTIONS(6748), 1, anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, + ACTIONS(6750), 1, anon_sym_bitor, - ACTIONS(5771), 1, + ACTIONS(6752), 1, anon_sym_bitand, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - ACTIONS(5964), 1, - anon_sym_COMMA, - ACTIONS(6116), 1, - anon_sym_RPAREN, - STATE(2475), 1, + ACTIONS(7243), 1, + anon_sym_RBRACK, + STATE(2996), 1, sym_argument_list, - ACTIONS(5723), 2, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, + ACTIONS(6720), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5745), 2, + ACTIONS(6722), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5749), 2, + ACTIONS(6726), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(5751), 2, + ACTIONS(6728), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(5755), 2, + ACTIONS(6732), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(5765), 2, + ACTIONS(6742), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5759), 3, + ACTIONS(6736), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5761), 3, + ACTIONS(6738), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [116495] = 26, + [150280] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(4243), 1, + anon_sym_RBRACK, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, + ACTIONS(5497), 1, anon_sym_DOT, - ACTIONS(4816), 1, + ACTIONS(5499), 1, anon_sym_DASH_GT, - ACTIONS(5747), 1, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6724), 1, anon_sym_SLASH, - ACTIONS(5753), 1, + ACTIONS(6730), 1, anon_sym_PIPE, - ACTIONS(5757), 1, + ACTIONS(6734), 1, anon_sym_AMP, - ACTIONS(5763), 1, + ACTIONS(6740), 1, anon_sym_GT_EQ, - ACTIONS(5767), 1, + ACTIONS(6746), 1, + anon_sym_QMARK, + ACTIONS(6748), 1, anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, + ACTIONS(6750), 1, anon_sym_bitor, - ACTIONS(5771), 1, + ACTIONS(6752), 1, anon_sym_bitand, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - ACTIONS(5964), 1, - anon_sym_COMMA, - ACTIONS(6118), 1, - anon_sym_RPAREN, - STATE(2475), 1, + STATE(2996), 1, sym_argument_list, - ACTIONS(5723), 2, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, + ACTIONS(6720), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5745), 2, + ACTIONS(6722), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5749), 2, + ACTIONS(6726), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(5751), 2, + ACTIONS(6728), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(5755), 2, + ACTIONS(6732), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(5765), 2, + ACTIONS(6742), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5759), 3, + ACTIONS(6736), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5761), 3, + ACTIONS(6738), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [116585] = 26, + [150367] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, + ACTIONS(5497), 1, anon_sym_DOT, - ACTIONS(4816), 1, + ACTIONS(5499), 1, anon_sym_DASH_GT, - ACTIONS(5747), 1, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, anon_sym_SLASH, - ACTIONS(5753), 1, + ACTIONS(6617), 1, anon_sym_PIPE, - ACTIONS(5757), 1, + ACTIONS(6621), 1, anon_sym_AMP, - ACTIONS(5763), 1, + ACTIONS(6627), 1, anon_sym_GT_EQ, - ACTIONS(5767), 1, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, + ACTIONS(6635), 1, anon_sym_bitor, - ACTIONS(5771), 1, + ACTIONS(6637), 1, anon_sym_bitand, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - ACTIONS(5964), 1, - anon_sym_COMMA, - ACTIONS(6120), 1, - anon_sym_RPAREN, - STATE(2475), 1, + ACTIONS(7245), 1, + anon_sym_SEMI, + STATE(2996), 1, sym_argument_list, - ACTIONS(5723), 2, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, + ACTIONS(6607), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5745), 2, + ACTIONS(6609), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5749), 2, + ACTIONS(6613), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(5751), 2, + ACTIONS(6615), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(5755), 2, + ACTIONS(6619), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(5765), 2, + ACTIONS(6629), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5759), 3, + ACTIONS(6623), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5761), 3, + ACTIONS(6625), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [116675] = 25, + [150454] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, + ACTIONS(5497), 1, anon_sym_DOT, - ACTIONS(4816), 1, + ACTIONS(5499), 1, anon_sym_DASH_GT, - ACTIONS(5773), 1, + ACTIONS(6605), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5914), 1, + ACTIONS(6611), 1, anon_sym_SLASH, - ACTIONS(5920), 1, + ACTIONS(6617), 1, anon_sym_PIPE, - ACTIONS(5924), 1, + ACTIONS(6621), 1, anon_sym_AMP, - ACTIONS(5930), 1, + ACTIONS(6627), 1, anon_sym_GT_EQ, - ACTIONS(5936), 1, + ACTIONS(6631), 1, anon_sym_QMARK, - ACTIONS(5938), 1, + ACTIONS(6633), 1, anon_sym_LT_EQ_GT, - ACTIONS(5940), 1, + ACTIONS(6635), 1, anon_sym_bitor, - ACTIONS(5942), 1, + ACTIONS(6637), 1, anon_sym_bitand, - STATE(2475), 1, + ACTIONS(7247), 1, + anon_sym_SEMI, + STATE(2996), 1, sym_argument_list, - ACTIONS(4893), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(5723), 2, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5910), 2, + ACTIONS(6607), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5912), 2, + ACTIONS(6609), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5916), 2, + ACTIONS(6613), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(5918), 2, + ACTIONS(6615), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(5922), 2, + ACTIONS(6619), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(5932), 2, + ACTIONS(6629), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5926), 3, + ACTIONS(6623), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5928), 3, + ACTIONS(6625), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [116763] = 26, + [150541] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(5776), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(5774), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(4798), 1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, anon_sym_LBRACK, - ACTIONS(4814), 1, - anon_sym_DOT, - ACTIONS(4816), 1, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - ACTIONS(5747), 1, + anon_sym_GT2, + [150584] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5780), 11, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(5753), 1, anon_sym_PIPE, - ACTIONS(5757), 1, anon_sym_AMP, - ACTIONS(5763), 1, + anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(5767), 1, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(5778), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, + anon_sym_or, + anon_sym_and, anon_sym_bitor, - ACTIONS(5771), 1, + anon_sym_xor, anon_sym_bitand, - ACTIONS(5773), 1, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [150627] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4302), 1, + anon_sym_RBRACK, + ACTIONS(4978), 1, + anon_sym_LPAREN2, + ACTIONS(5493), 1, + anon_sym_LBRACK, + ACTIONS(5497), 1, + anon_sym_DOT, + ACTIONS(5499), 1, + anon_sym_DASH_GT, + ACTIONS(6605), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, + ACTIONS(6724), 1, + anon_sym_SLASH, + ACTIONS(6730), 1, + anon_sym_PIPE, + ACTIONS(6734), 1, + anon_sym_AMP, + ACTIONS(6740), 1, + anon_sym_GT_EQ, + ACTIONS(6746), 1, anon_sym_QMARK, - ACTIONS(5964), 1, - anon_sym_COMMA, - ACTIONS(6122), 1, - anon_sym_SEMI, - STATE(2475), 1, + ACTIONS(6748), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6750), 1, + anon_sym_bitor, + ACTIONS(6752), 1, + anon_sym_bitand, + STATE(2996), 1, sym_argument_list, - ACTIONS(5723), 2, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, + ACTIONS(6720), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5745), 2, + ACTIONS(6722), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5749), 2, + ACTIONS(6726), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(5751), 2, + ACTIONS(6728), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(5755), 2, + ACTIONS(6732), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(5765), 2, + ACTIONS(6742), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5759), 3, + ACTIONS(6736), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5761), 3, + ACTIONS(6738), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [116853] = 26, + [150714] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3034), 2, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(3032), 33, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_typename, + anon_sym_template, + [150757] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(4265), 1, + anon_sym_RBRACK, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, + ACTIONS(5497), 1, anon_sym_DOT, - ACTIONS(4816), 1, + ACTIONS(5499), 1, anon_sym_DASH_GT, - ACTIONS(5747), 1, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6724), 1, anon_sym_SLASH, - ACTIONS(5753), 1, + ACTIONS(6730), 1, anon_sym_PIPE, - ACTIONS(5757), 1, + ACTIONS(6734), 1, anon_sym_AMP, - ACTIONS(5763), 1, + ACTIONS(6740), 1, anon_sym_GT_EQ, - ACTIONS(5767), 1, + ACTIONS(6746), 1, + anon_sym_QMARK, + ACTIONS(6748), 1, anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, + ACTIONS(6750), 1, anon_sym_bitor, - ACTIONS(5771), 1, + ACTIONS(6752), 1, anon_sym_bitand, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - ACTIONS(5964), 1, - anon_sym_COMMA, - ACTIONS(6124), 1, - anon_sym_RPAREN, - STATE(2475), 1, + STATE(2996), 1, sym_argument_list, - ACTIONS(5723), 2, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, + ACTIONS(6720), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5745), 2, + ACTIONS(6722), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5749), 2, + ACTIONS(6726), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(5751), 2, + ACTIONS(6728), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(5755), 2, + ACTIONS(6732), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(5765), 2, + ACTIONS(6742), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5759), 3, + ACTIONS(6736), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5761), 3, + ACTIONS(6738), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [116943] = 26, + [150844] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, + ACTIONS(5497), 1, anon_sym_DOT, - ACTIONS(4816), 1, + ACTIONS(5499), 1, anon_sym_DASH_GT, - ACTIONS(5747), 1, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, anon_sym_SLASH, - ACTIONS(5753), 1, + ACTIONS(6617), 1, anon_sym_PIPE, - ACTIONS(5757), 1, + ACTIONS(6621), 1, anon_sym_AMP, - ACTIONS(5763), 1, + ACTIONS(6627), 1, anon_sym_GT_EQ, - ACTIONS(5767), 1, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, + ACTIONS(6635), 1, anon_sym_bitor, - ACTIONS(5771), 1, + ACTIONS(6637), 1, anon_sym_bitand, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - ACTIONS(5964), 1, - anon_sym_COMMA, - ACTIONS(6126), 1, - anon_sym_RPAREN, - STATE(2475), 1, + ACTIONS(7249), 1, + anon_sym_SEMI, + STATE(2996), 1, sym_argument_list, - ACTIONS(5723), 2, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, + ACTIONS(6607), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5745), 2, + ACTIONS(6609), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5749), 2, + ACTIONS(6613), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(5751), 2, + ACTIONS(6615), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(5755), 2, + ACTIONS(6619), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(5765), 2, + ACTIONS(6629), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5759), 3, + ACTIONS(6623), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5761), 3, + ACTIONS(6625), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [117033] = 26, + [150931] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, - anon_sym_LPAREN2, - ACTIONS(4798), 1, - anon_sym_LBRACK, - ACTIONS(4814), 1, - anon_sym_DOT, - ACTIONS(4816), 1, - anon_sym_DASH_GT, - ACTIONS(5747), 1, + ACTIONS(5756), 11, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(5753), 1, anon_sym_PIPE, - ACTIONS(5757), 1, anon_sym_AMP, - ACTIONS(5763), 1, + anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(5767), 1, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(5754), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, + anon_sym_or, + anon_sym_and, anon_sym_bitor, - ACTIONS(5771), 1, + anon_sym_xor, anon_sym_bitand, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - ACTIONS(5964), 1, - anon_sym_COMMA, - ACTIONS(6128), 1, - anon_sym_RPAREN, - STATE(2475), 1, - sym_argument_list, - ACTIONS(5723), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, + anon_sym_DASH_GT, + anon_sym_GT2, + [150974] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5717), 11, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5745), 2, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(5715), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5749), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5751), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5755), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(5765), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5759), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, anon_sym_not_eq, - ACTIONS(5761), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [117123] = 23, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [151017] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, + ACTIONS(5497), 1, anon_sym_DOT, - ACTIONS(4816), 1, + ACTIONS(5499), 1, anon_sym_DASH_GT, - ACTIONS(5914), 1, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, anon_sym_SLASH, - ACTIONS(5920), 1, + ACTIONS(6617), 1, anon_sym_PIPE, - ACTIONS(5924), 1, + ACTIONS(6621), 1, anon_sym_AMP, - ACTIONS(5930), 1, + ACTIONS(6627), 1, anon_sym_GT_EQ, - ACTIONS(5938), 1, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, anon_sym_LT_EQ_GT, - ACTIONS(5940), 1, + ACTIONS(6635), 1, anon_sym_bitor, - ACTIONS(5942), 1, + ACTIONS(6637), 1, anon_sym_bitand, - STATE(2475), 1, + ACTIONS(7251), 1, + anon_sym_RPAREN, + STATE(2996), 1, sym_argument_list, - ACTIONS(5723), 2, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5910), 2, + ACTIONS(6607), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5912), 2, + ACTIONS(6609), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5916), 2, + ACTIONS(6613), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(5918), 2, + ACTIONS(6615), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(5922), 2, + ACTIONS(6619), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(5932), 2, + ACTIONS(6629), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5926), 3, + ACTIONS(6623), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5928), 3, + ACTIONS(6625), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(4818), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_QMARK, - [117207] = 8, + [151104] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4385), 1, - anon_sym_LPAREN2, - ACTIONS(5211), 1, - anon_sym_LBRACK, - ACTIONS(5217), 1, - anon_sym_DOT, - ACTIONS(5219), 1, - anon_sym_DASH_GT, - STATE(3010), 1, - sym_argument_list, - ACTIONS(4985), 10, + ACTIONS(5673), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -328667,9 +431890,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_GT_GT, - ACTIONS(4983), 21, + anon_sym_DOT, + ACTIONS(5671), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -328678,6 +431903,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_LT, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -328688,954 +431914,617 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, anon_sym_GT2, - [117261] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3814), 1, - anon_sym_COLON_COLON, - ACTIONS(5383), 1, - anon_sym_LT, - ACTIONS(5701), 1, - anon_sym_EQ, - STATE(3135), 1, - sym_template_argument_list, - ACTIONS(5699), 2, - anon_sym_COMMA, - anon_sym_GT2, - ACTIONS(3801), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_LBRACK_LBRACK, - ACTIONS(3793), 24, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - [117315] = 26, + [151147] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, + ACTIONS(5497), 1, anon_sym_DOT, - ACTIONS(4816), 1, + ACTIONS(5499), 1, anon_sym_DASH_GT, - ACTIONS(5747), 1, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, anon_sym_SLASH, - ACTIONS(5753), 1, + ACTIONS(6617), 1, anon_sym_PIPE, - ACTIONS(5757), 1, + ACTIONS(6621), 1, anon_sym_AMP, - ACTIONS(5763), 1, + ACTIONS(6627), 1, anon_sym_GT_EQ, - ACTIONS(5767), 1, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, + ACTIONS(6635), 1, anon_sym_bitor, - ACTIONS(5771), 1, + ACTIONS(6637), 1, anon_sym_bitand, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - ACTIONS(5964), 1, - anon_sym_COMMA, - ACTIONS(6130), 1, + ACTIONS(7253), 1, anon_sym_RPAREN, - STATE(2475), 1, + STATE(2996), 1, sym_argument_list, - ACTIONS(5723), 2, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, + ACTIONS(6607), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5745), 2, + ACTIONS(6609), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5749), 2, + ACTIONS(6613), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(5751), 2, + ACTIONS(6615), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(5755), 2, + ACTIONS(6619), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(5765), 2, + ACTIONS(6629), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5759), 3, + ACTIONS(6623), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5761), 3, + ACTIONS(6625), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [117405] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4423), 9, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(4425), 27, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [117449] = 26, + [151234] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, + ACTIONS(6066), 1, anon_sym_DOT, - ACTIONS(4816), 1, + ACTIONS(6068), 1, anon_sym_DASH_GT, - ACTIONS(5747), 1, + ACTIONS(7115), 1, anon_sym_SLASH, - ACTIONS(5753), 1, + ACTIONS(7121), 1, anon_sym_PIPE, - ACTIONS(5757), 1, + ACTIONS(7125), 1, anon_sym_AMP, - ACTIONS(5763), 1, + ACTIONS(7131), 1, anon_sym_GT_EQ, - ACTIONS(5767), 1, + ACTIONS(7139), 1, anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, + ACTIONS(7141), 1, anon_sym_bitor, - ACTIONS(5771), 1, + ACTIONS(7143), 1, anon_sym_bitand, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - ACTIONS(6132), 1, - anon_sym_COMMA, - ACTIONS(6134), 1, - anon_sym_RPAREN, - STATE(2475), 1, + STATE(2996), 1, sym_argument_list, - ACTIONS(5723), 2, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, + ACTIONS(7111), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5745), 2, + ACTIONS(7113), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5749), 2, + ACTIONS(7117), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(5751), 2, + ACTIONS(7119), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(5755), 2, + ACTIONS(7123), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(5765), 2, + ACTIONS(7133), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5759), 3, + ACTIONS(5675), 3, + anon_sym_DOT_DOT_DOT, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(7127), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5761), 3, + ACTIONS(7129), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [117539] = 25, + [151317] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(4385), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(5211), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(5217), 1, + ACTIONS(6066), 1, anon_sym_DOT, - ACTIONS(5219), 1, + ACTIONS(6068), 1, anon_sym_DASH_GT, - ACTIONS(5797), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5805), 1, + ACTIONS(7115), 1, anon_sym_SLASH, - ACTIONS(5811), 1, - anon_sym_PIPE, - ACTIONS(5815), 1, - anon_sym_AMP, - ACTIONS(5821), 1, - anon_sym_LT_LT, - ACTIONS(5823), 1, - anon_sym_GT_GT, - ACTIONS(5825), 1, - anon_sym_QMARK, - ACTIONS(5827), 1, + ACTIONS(7139), 1, anon_sym_LT_EQ_GT, - ACTIONS(5829), 1, - anon_sym_bitor, - ACTIONS(5831), 1, - anon_sym_bitand, - STATE(3010), 1, + STATE(2996), 1, sym_argument_list, - ACTIONS(5801), 2, + ACTIONS(6585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7111), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5803), 2, + ACTIONS(7113), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5807), 2, + ACTIONS(7133), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5669), 5, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5667), 15, + anon_sym_DOT_DOT_DOT, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5809), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5813), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(5833), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6136), 2, - anon_sym_COMMA, - anon_sym_GT2, - ACTIONS(5817), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5819), 4, - anon_sym_GT, anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [117627] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4427), 9, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(4429), 27, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [117671] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4431), 9, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, anon_sym_COLON, - ACTIONS(4433), 27, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [117715] = 25, + anon_sym_QMARK, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + [151382] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, + ACTIONS(5497), 1, anon_sym_DOT, - ACTIONS(4816), 1, + ACTIONS(5499), 1, anon_sym_DASH_GT, - ACTIONS(5747), 1, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, anon_sym_SLASH, - ACTIONS(5753), 1, + ACTIONS(6617), 1, anon_sym_PIPE, - ACTIONS(5757), 1, + ACTIONS(6621), 1, anon_sym_AMP, - ACTIONS(5763), 1, + ACTIONS(6627), 1, anon_sym_GT_EQ, - ACTIONS(5767), 1, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, + ACTIONS(6635), 1, anon_sym_bitor, - ACTIONS(5771), 1, + ACTIONS(6637), 1, anon_sym_bitand, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - STATE(2475), 1, + ACTIONS(7255), 1, + anon_sym_RPAREN, + STATE(2996), 1, sym_argument_list, - ACTIONS(5723), 2, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, + ACTIONS(6607), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5745), 2, + ACTIONS(6609), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5749), 2, + ACTIONS(6613), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(5751), 2, + ACTIONS(6615), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(5755), 2, + ACTIONS(6619), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(5765), 2, + ACTIONS(6629), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6138), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(5759), 3, + ACTIONS(6623), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5761), 3, + ACTIONS(6625), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [117803] = 23, + [151469] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, + ACTIONS(6066), 1, anon_sym_DOT, - ACTIONS(4816), 1, + ACTIONS(6068), 1, anon_sym_DASH_GT, - ACTIONS(5914), 1, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7115), 1, anon_sym_SLASH, - ACTIONS(5920), 1, + ACTIONS(7121), 1, anon_sym_PIPE, - ACTIONS(5924), 1, + ACTIONS(7125), 1, anon_sym_AMP, - ACTIONS(5930), 1, + ACTIONS(7131), 1, anon_sym_GT_EQ, - ACTIONS(5938), 1, + ACTIONS(7137), 1, + anon_sym_QMARK, + ACTIONS(7139), 1, anon_sym_LT_EQ_GT, - ACTIONS(5940), 1, + ACTIONS(7141), 1, anon_sym_bitor, - ACTIONS(5942), 1, + ACTIONS(7143), 1, anon_sym_bitand, - STATE(2475), 1, + ACTIONS(7257), 1, + anon_sym_COLON, + STATE(2996), 1, sym_argument_list, - ACTIONS(5723), 2, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5910), 2, + ACTIONS(7111), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5912), 2, + ACTIONS(7113), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5916), 2, + ACTIONS(7117), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(5918), 2, + ACTIONS(7119), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(5922), 2, + ACTIONS(7123), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(5932), 2, + ACTIONS(7133), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5926), 3, + ACTIONS(7127), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5928), 3, + ACTIONS(7129), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(4975), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_QMARK, - [117887] = 26, + [151556] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, - anon_sym_LPAREN2, - ACTIONS(4798), 1, - anon_sym_LBRACK, - ACTIONS(4814), 1, - anon_sym_DOT, - ACTIONS(4816), 1, - anon_sym_DASH_GT, - ACTIONS(5747), 1, + ACTIONS(5461), 11, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(5753), 1, anon_sym_PIPE, - ACTIONS(5757), 1, anon_sym_AMP, - ACTIONS(5763), 1, + anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(5767), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, - anon_sym_bitor, - ACTIONS(5771), 1, - anon_sym_bitand, - ACTIONS(5773), 1, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(5463), 24, anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - ACTIONS(5964), 1, anon_sym_COMMA, - ACTIONS(6140), 1, - anon_sym_SEMI, - STATE(2475), 1, - sym_argument_list, - ACTIONS(5723), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5745), 2, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5749), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5751), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5755), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(5765), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5759), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, anon_sym_not_eq, - ACTIONS(5761), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [117977] = 26, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [151599] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, + ACTIONS(5497), 1, anon_sym_DOT, - ACTIONS(4816), 1, + ACTIONS(5499), 1, anon_sym_DASH_GT, - ACTIONS(5747), 1, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, anon_sym_SLASH, - ACTIONS(5753), 1, + ACTIONS(6617), 1, anon_sym_PIPE, - ACTIONS(5757), 1, + ACTIONS(6621), 1, anon_sym_AMP, - ACTIONS(5763), 1, + ACTIONS(6627), 1, anon_sym_GT_EQ, - ACTIONS(5767), 1, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, + ACTIONS(6635), 1, anon_sym_bitor, - ACTIONS(5771), 1, + ACTIONS(6637), 1, anon_sym_bitand, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - ACTIONS(5964), 1, - anon_sym_COMMA, - ACTIONS(6142), 1, - anon_sym_SEMI, - STATE(2475), 1, + ACTIONS(7259), 1, + anon_sym_RPAREN, + STATE(2996), 1, sym_argument_list, - ACTIONS(5723), 2, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, + ACTIONS(6607), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5745), 2, + ACTIONS(6609), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5749), 2, + ACTIONS(6613), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(5751), 2, + ACTIONS(6615), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(5755), 2, + ACTIONS(6619), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(5765), 2, + ACTIONS(6629), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5759), 3, + ACTIONS(6623), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5761), 3, + ACTIONS(6625), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [118067] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6144), 1, - sym_identifier, - ACTIONS(6149), 1, - sym_primitive_type, - STATE(3200), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6147), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(4052), 8, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(4054), 21, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_operator, - [118119] = 26, + [151686] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, - anon_sym_LPAREN2, - ACTIONS(4798), 1, - anon_sym_LBRACK, - ACTIONS(4814), 1, - anon_sym_DOT, - ACTIONS(4816), 1, - anon_sym_DASH_GT, - ACTIONS(5747), 1, + ACTIONS(5713), 11, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(5753), 1, anon_sym_PIPE, - ACTIONS(5757), 1, anon_sym_AMP, - ACTIONS(5763), 1, + anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(5767), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, - anon_sym_bitor, - ACTIONS(5771), 1, - anon_sym_bitand, - ACTIONS(5773), 1, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(5711), 24, anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - ACTIONS(5964), 1, anon_sym_COMMA, - ACTIONS(6151), 1, - anon_sym_SEMI, - STATE(2475), 1, - sym_argument_list, - ACTIONS(5723), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5745), 2, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5749), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5751), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5755), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(5765), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5759), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, anon_sym_not_eq, - ACTIONS(5761), 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [151729] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7261), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7263), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5299), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [118209] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4435), 9, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(5301), 20, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(4437), 27, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [118253] = 26, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [151776] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, + ACTIONS(5497), 1, anon_sym_DOT, - ACTIONS(4816), 1, + ACTIONS(5499), 1, anon_sym_DASH_GT, - ACTIONS(5747), 1, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, anon_sym_SLASH, - ACTIONS(5753), 1, + ACTIONS(6617), 1, anon_sym_PIPE, - ACTIONS(5757), 1, + ACTIONS(6621), 1, anon_sym_AMP, - ACTIONS(5763), 1, + ACTIONS(6627), 1, anon_sym_GT_EQ, - ACTIONS(5767), 1, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, + ACTIONS(6635), 1, anon_sym_bitor, - ACTIONS(5771), 1, + ACTIONS(6637), 1, anon_sym_bitand, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - ACTIONS(5964), 1, - anon_sym_COMMA, - ACTIONS(6153), 1, - anon_sym_SEMI, - STATE(2475), 1, + ACTIONS(7265), 1, + anon_sym_RPAREN, + STATE(2996), 1, sym_argument_list, - ACTIONS(5723), 2, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, + ACTIONS(6607), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5745), 2, + ACTIONS(6609), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5749), 2, + ACTIONS(6613), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(5751), 2, + ACTIONS(6615), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(5755), 2, + ACTIONS(6619), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(5765), 2, + ACTIONS(6629), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5759), 3, + ACTIONS(6623), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5761), 3, + ACTIONS(6625), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [118343] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4447), 9, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(4449), 27, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [118387] = 25, + [151863] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, + ACTIONS(5730), 1, + anon_sym_COLON, + ACTIONS(6066), 1, anon_sym_DOT, - ACTIONS(4816), 1, + ACTIONS(6068), 1, anon_sym_DASH_GT, - ACTIONS(5747), 1, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7115), 1, anon_sym_SLASH, - ACTIONS(5753), 1, + ACTIONS(7121), 1, anon_sym_PIPE, - ACTIONS(5757), 1, + ACTIONS(7125), 1, anon_sym_AMP, - ACTIONS(5763), 1, + ACTIONS(7131), 1, anon_sym_GT_EQ, - ACTIONS(5767), 1, + ACTIONS(7137), 1, + anon_sym_QMARK, + ACTIONS(7139), 1, anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, + ACTIONS(7141), 1, anon_sym_bitor, - ACTIONS(5771), 1, + ACTIONS(7143), 1, anon_sym_bitand, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - STATE(2475), 1, + STATE(2996), 1, sym_argument_list, - ACTIONS(5723), 2, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, + ACTIONS(7111), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5745), 2, + ACTIONS(7113), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5749), 2, + ACTIONS(7117), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(5751), 2, + ACTIONS(7119), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(5755), 2, + ACTIONS(7123), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(5765), 2, + ACTIONS(7133), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5842), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(5759), 3, + ACTIONS(7127), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5761), 3, + ACTIONS(7129), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [118475] = 9, + [151950] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4385), 1, - anon_sym_LPAREN2, - ACTIONS(5211), 1, - anon_sym_LBRACK, - ACTIONS(5217), 1, - anon_sym_DOT, - ACTIONS(5219), 1, - anon_sym_DASH_GT, - STATE(3010), 1, - sym_argument_list, - ACTIONS(5833), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4989), 10, + ACTIONS(5705), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -329646,9 +432535,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_GT_GT, - ACTIONS(4987), 19, + anon_sym_DOT, + ACTIONS(5703), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -329657,6 +432548,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_LT, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -329665,759 +432557,862 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_GT2, - [118531] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4385), 1, - anon_sym_LPAREN2, - ACTIONS(5211), 1, - anon_sym_LBRACK, - ACTIONS(5217), 1, - anon_sym_DOT, - ACTIONS(5219), 1, - anon_sym_DASH_GT, - ACTIONS(5805), 1, - anon_sym_SLASH, - ACTIONS(5821), 1, - anon_sym_LT_LT, - ACTIONS(5823), 1, - anon_sym_GT_GT, - ACTIONS(5827), 1, - anon_sym_LT_EQ_GT, - STATE(3010), 1, - sym_argument_list, - ACTIONS(5801), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5803), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5833), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(4993), 6, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(4991), 15, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + anon_sym_DASH_GT, anon_sym_GT2, - [118599] = 26, + [151993] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, + ACTIONS(5497), 1, anon_sym_DOT, - ACTIONS(4816), 1, + ACTIONS(5499), 1, anon_sym_DASH_GT, - ACTIONS(5747), 1, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, anon_sym_SLASH, - ACTIONS(5753), 1, + ACTIONS(6617), 1, anon_sym_PIPE, - ACTIONS(5757), 1, + ACTIONS(6621), 1, anon_sym_AMP, - ACTIONS(5763), 1, + ACTIONS(6627), 1, anon_sym_GT_EQ, - ACTIONS(5767), 1, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, + ACTIONS(6635), 1, anon_sym_bitor, - ACTIONS(5771), 1, + ACTIONS(6637), 1, anon_sym_bitand, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - ACTIONS(5964), 1, - anon_sym_COMMA, - ACTIONS(6155), 1, + ACTIONS(7267), 1, anon_sym_SEMI, - STATE(2475), 1, + STATE(2996), 1, sym_argument_list, - ACTIONS(5723), 2, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, + ACTIONS(6607), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5745), 2, + ACTIONS(6609), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5749), 2, + ACTIONS(6613), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(5751), 2, + ACTIONS(6615), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(5755), 2, + ACTIONS(6619), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(5765), 2, + ACTIONS(6629), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5759), 3, + ACTIONS(6623), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5761), 3, + ACTIONS(6625), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [118689] = 4, + [152080] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4225), 1, - anon_sym_LBRACE, - ACTIONS(4322), 11, + ACTIONS(5701), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(5699), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_TILDE, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [152123] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4557), 1, + anon_sym_LBRACK, + ACTIONS(4552), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + ACTIONS(4555), 6, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, anon_sym_EQ, - ACTIONS(4324), 24, + ACTIONS(4550), 26, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, anon_sym___based, - anon_sym_LBRACK, anon_sym_static, anon_sym_register, anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, + anon_sym_COLON, sym_identifier, sym_auto, anon_sym_decltype, anon_sym_virtual, - anon_sym_template, anon_sym_operator, - [118735] = 26, + [152170] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(5724), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(5722), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(4798), 1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, anon_sym_LBRACK, - ACTIONS(4814), 1, - anon_sym_DOT, - ACTIONS(4816), 1, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - ACTIONS(5747), 1, + anon_sym_GT2, + [152213] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5728), 11, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(5753), 1, anon_sym_PIPE, - ACTIONS(5757), 1, anon_sym_AMP, - ACTIONS(5763), 1, + anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(5767), 1, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(5726), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, + anon_sym_or, + anon_sym_and, anon_sym_bitor, - ACTIONS(5771), 1, + anon_sym_xor, anon_sym_bitand, - ACTIONS(5773), 1, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [152256] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4978), 1, + anon_sym_LPAREN2, + ACTIONS(5493), 1, + anon_sym_LBRACK, + ACTIONS(5497), 1, + anon_sym_DOT, + ACTIONS(5499), 1, + anon_sym_DASH_GT, + ACTIONS(6605), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, + ACTIONS(6611), 1, + anon_sym_SLASH, + ACTIONS(6617), 1, + anon_sym_PIPE, + ACTIONS(6621), 1, + anon_sym_AMP, + ACTIONS(6627), 1, + anon_sym_GT_EQ, + ACTIONS(6631), 1, anon_sym_QMARK, - ACTIONS(5964), 1, - anon_sym_COMMA, - ACTIONS(6157), 1, + ACTIONS(6633), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6635), 1, + anon_sym_bitor, + ACTIONS(6637), 1, + anon_sym_bitand, + ACTIONS(7269), 1, anon_sym_SEMI, - STATE(2475), 1, + STATE(2996), 1, sym_argument_list, - ACTIONS(5723), 2, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, + ACTIONS(6607), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5745), 2, + ACTIONS(6609), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5749), 2, + ACTIONS(6613), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(5751), 2, + ACTIONS(6615), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(5755), 2, + ACTIONS(6619), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(5765), 2, + ACTIONS(6629), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5759), 3, + ACTIONS(6623), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5761), 3, + ACTIONS(6625), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [118825] = 26, + [152343] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, + ACTIONS(5497), 1, anon_sym_DOT, - ACTIONS(4816), 1, + ACTIONS(5499), 1, anon_sym_DASH_GT, - ACTIONS(5747), 1, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6724), 1, anon_sym_SLASH, - ACTIONS(5753), 1, + ACTIONS(6730), 1, anon_sym_PIPE, - ACTIONS(5757), 1, + ACTIONS(6734), 1, anon_sym_AMP, - ACTIONS(5763), 1, + ACTIONS(6740), 1, anon_sym_GT_EQ, - ACTIONS(5767), 1, + ACTIONS(6746), 1, + anon_sym_QMARK, + ACTIONS(6748), 1, anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, + ACTIONS(6750), 1, anon_sym_bitor, - ACTIONS(5771), 1, + ACTIONS(6752), 1, anon_sym_bitand, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - ACTIONS(5964), 1, - anon_sym_COMMA, - ACTIONS(6159), 1, - anon_sym_SEMI, - STATE(2475), 1, + ACTIONS(7271), 1, + anon_sym_RBRACK, + STATE(2996), 1, sym_argument_list, - ACTIONS(5723), 2, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, + ACTIONS(6720), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5745), 2, + ACTIONS(6722), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5749), 2, + ACTIONS(6726), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(5751), 2, + ACTIONS(6728), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(5755), 2, + ACTIONS(6732), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(5765), 2, + ACTIONS(6742), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5759), 3, + ACTIONS(6736), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5761), 3, + ACTIONS(6738), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [118915] = 23, + [152430] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4385), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(5211), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(5217), 1, + ACTIONS(5497), 1, anon_sym_DOT, - ACTIONS(5219), 1, + ACTIONS(5499), 1, anon_sym_DASH_GT, - ACTIONS(5805), 1, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, anon_sym_SLASH, - ACTIONS(5811), 1, + ACTIONS(6617), 1, anon_sym_PIPE, - ACTIONS(5815), 1, + ACTIONS(6621), 1, anon_sym_AMP, - ACTIONS(5821), 1, - anon_sym_LT_LT, - ACTIONS(5823), 1, - anon_sym_GT_GT, - ACTIONS(5827), 1, + ACTIONS(6627), 1, + anon_sym_GT_EQ, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, anon_sym_LT_EQ_GT, - ACTIONS(5829), 1, + ACTIONS(6635), 1, anon_sym_bitor, - ACTIONS(5831), 1, + ACTIONS(6637), 1, anon_sym_bitand, - STATE(3010), 1, + ACTIONS(7273), 1, + anon_sym_RPAREN, + STATE(2996), 1, sym_argument_list, - ACTIONS(5801), 2, + ACTIONS(6585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6607), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5803), 2, + ACTIONS(6609), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5807), 2, + ACTIONS(6613), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(5809), 2, + ACTIONS(6615), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(5813), 2, + ACTIONS(6619), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(5833), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5817), 3, + ACTIONS(6629), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6623), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5003), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_GT2, - ACTIONS(5819), 4, + ACTIONS(6625), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [118999] = 26, + [152517] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, + ACTIONS(6066), 1, anon_sym_DOT, - ACTIONS(4816), 1, + ACTIONS(6068), 1, anon_sym_DASH_GT, - ACTIONS(5747), 1, + ACTIONS(7115), 1, anon_sym_SLASH, - ACTIONS(5753), 1, + ACTIONS(7121), 1, anon_sym_PIPE, - ACTIONS(5757), 1, + ACTIONS(7125), 1, anon_sym_AMP, - ACTIONS(5763), 1, + ACTIONS(7131), 1, anon_sym_GT_EQ, - ACTIONS(5767), 1, + ACTIONS(7139), 1, anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, + ACTIONS(7141), 1, anon_sym_bitor, - ACTIONS(5771), 1, + ACTIONS(7143), 1, anon_sym_bitand, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - ACTIONS(5964), 1, - anon_sym_COMMA, - ACTIONS(6161), 1, - anon_sym_SEMI, - STATE(2475), 1, + STATE(2996), 1, sym_argument_list, - ACTIONS(5723), 2, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, + ACTIONS(7111), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5745), 2, + ACTIONS(7113), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5749), 2, + ACTIONS(7117), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(5751), 2, + ACTIONS(7119), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(5755), 2, + ACTIONS(7123), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(5765), 2, + ACTIONS(7133), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5759), 3, + ACTIONS(5641), 3, + anon_sym_DOT_DOT_DOT, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(7127), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5761), 3, + ACTIONS(7129), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [119089] = 8, + [152600] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(4385), 1, + ACTIONS(2871), 1, + anon_sym_const, + ACTIONS(4572), 1, anon_sym_LPAREN2, - ACTIONS(5211), 1, + ACTIONS(5481), 1, + sym_auto, + ACTIONS(5483), 1, + anon_sym_decltype, + ACTIONS(6919), 1, anon_sym_LBRACK, - ACTIONS(5217), 1, - anon_sym_DOT, - ACTIONS(5219), 1, - anon_sym_DASH_GT, - STATE(3010), 1, - sym_argument_list, - ACTIONS(4961), 10, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(7275), 1, + anon_sym_STAR, + ACTIONS(7277), 1, + anon_sym_AMP_AMP, + ACTIONS(7279), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - ACTIONS(4959), 21, + STATE(3132), 1, + sym_decltype_auto, + STATE(3964), 1, + sym_parameter_list, + STATE(5457), 1, + sym__function_declarator_seq, + STATE(5690), 1, + sym__abstract_declarator, + STATE(4578), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(5452), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6510), 6, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - [119143] = 13, + anon_sym_requires, + ACTIONS(6921), 10, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [152671] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, + ACTIONS(5631), 1, + anon_sym_COLON, + ACTIONS(6066), 1, anon_sym_DOT, - ACTIONS(4816), 1, + ACTIONS(6068), 1, anon_sym_DASH_GT, - ACTIONS(5914), 1, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7115), 1, anon_sym_SLASH, - STATE(2475), 1, + ACTIONS(7121), 1, + anon_sym_PIPE, + ACTIONS(7125), 1, + anon_sym_AMP, + ACTIONS(7131), 1, + anon_sym_GT_EQ, + ACTIONS(7137), 1, + anon_sym_QMARK, + ACTIONS(7139), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7141), 1, + anon_sym_bitor, + ACTIONS(7143), 1, + anon_sym_bitand, + STATE(2996), 1, sym_argument_list, - ACTIONS(5723), 2, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5910), 2, + ACTIONS(7111), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5912), 2, + ACTIONS(7113), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5932), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4883), 5, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(4881), 17, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(7117), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7119), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7123), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(7133), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7127), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, anon_sym_not_eq, - [119207] = 26, + ACTIONS(7129), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [152758] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, + ACTIONS(6066), 1, anon_sym_DOT, - ACTIONS(4816), 1, + ACTIONS(6068), 1, anon_sym_DASH_GT, - ACTIONS(5747), 1, + ACTIONS(7115), 1, anon_sym_SLASH, - ACTIONS(5753), 1, + ACTIONS(7121), 1, anon_sym_PIPE, - ACTIONS(5757), 1, + ACTIONS(7125), 1, anon_sym_AMP, - ACTIONS(5763), 1, + ACTIONS(7131), 1, anon_sym_GT_EQ, - ACTIONS(5767), 1, + ACTIONS(7139), 1, anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, + ACTIONS(7141), 1, anon_sym_bitor, - ACTIONS(5771), 1, + ACTIONS(7143), 1, anon_sym_bitand, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - ACTIONS(5964), 1, - anon_sym_COMMA, - ACTIONS(6163), 1, - anon_sym_RPAREN, - STATE(2475), 1, + STATE(2996), 1, sym_argument_list, - ACTIONS(5723), 2, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, + ACTIONS(7111), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5745), 2, + ACTIONS(7113), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5749), 2, + ACTIONS(7117), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(5751), 2, + ACTIONS(7119), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(5755), 2, + ACTIONS(7123), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(5765), 2, + ACTIONS(7133), 2, anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5759), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5761), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [119297] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4322), 9, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(4324), 27, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [119341] = 26, + anon_sym_GT_GT, + ACTIONS(5762), 3, + anon_sym_DOT_DOT_DOT, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(7127), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7129), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [152841] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, + ACTIONS(5497), 1, anon_sym_DOT, - ACTIONS(4816), 1, + ACTIONS(5499), 1, anon_sym_DASH_GT, - ACTIONS(5747), 1, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, anon_sym_SLASH, - ACTIONS(5753), 1, + ACTIONS(6617), 1, anon_sym_PIPE, - ACTIONS(5757), 1, + ACTIONS(6621), 1, anon_sym_AMP, - ACTIONS(5763), 1, + ACTIONS(6627), 1, anon_sym_GT_EQ, - ACTIONS(5767), 1, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, + ACTIONS(6635), 1, anon_sym_bitor, - ACTIONS(5771), 1, + ACTIONS(6637), 1, anon_sym_bitand, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - ACTIONS(6165), 1, - anon_sym_COMMA, - ACTIONS(6167), 1, + ACTIONS(7281), 1, anon_sym_RPAREN, - STATE(2475), 1, + STATE(2996), 1, sym_argument_list, - ACTIONS(5723), 2, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, + ACTIONS(6607), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5745), 2, + ACTIONS(6609), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5749), 2, + ACTIONS(6613), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(5751), 2, + ACTIONS(6615), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(5755), 2, + ACTIONS(6619), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(5765), 2, + ACTIONS(6629), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5759), 3, + ACTIONS(6623), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5761), 3, + ACTIONS(6625), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [119431] = 3, + [152928] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4702), 18, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(4978), 1, anon_sym_LPAREN2, + ACTIONS(5493), 1, + anon_sym_LBRACK, + ACTIONS(5497), 1, + anon_sym_DOT, + ACTIONS(5499), 1, + anon_sym_DASH_GT, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, + anon_sym_SLASH, + ACTIONS(6617), 1, + anon_sym_PIPE, + ACTIONS(6621), 1, + anon_sym_AMP, + ACTIONS(6627), 1, + anon_sym_GT_EQ, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6635), 1, + anon_sym_bitor, + ACTIONS(6637), 1, + anon_sym_bitand, + ACTIONS(7283), 1, + anon_sym_RPAREN, + STATE(2996), 1, + sym_argument_list, + ACTIONS(6585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6607), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6609), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(6613), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6615), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6619), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(6629), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6623), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_not_eq, + ACTIONS(6625), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [153015] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4978), 1, + anon_sym_LPAREN2, + ACTIONS(5493), 1, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, + ACTIONS(6066), 1, + anon_sym_DOT, + ACTIONS(6068), 1, + anon_sym_DASH_GT, + ACTIONS(7115), 1, + anon_sym_SLASH, + STATE(2996), 1, + sym_argument_list, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - ACTIONS(4704), 18, + ACTIONS(7111), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, + ACTIONS(7113), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7133), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5489), 5, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_GT_GT, + ACTIONS(5487), 16, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DOT, - sym_literal_suffix, - [119475] = 12, + [153078] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, + ACTIONS(6066), 1, anon_sym_DOT, - ACTIONS(4816), 1, + ACTIONS(6068), 1, anon_sym_DASH_GT, - ACTIONS(5914), 1, + ACTIONS(7115), 1, anon_sym_SLASH, - STATE(2475), 1, + STATE(2996), 1, sym_argument_list, - ACTIONS(5723), 2, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5910), 2, + ACTIONS(7111), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5912), 2, + ACTIONS(7113), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(4883), 5, + ACTIONS(5489), 5, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(4881), 19, + ACTIONS(5487), 18, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, @@ -330426,7 +433421,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -330435,51 +433430,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - [119537] = 14, + [153139] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, + ACTIONS(6066), 1, anon_sym_DOT, - ACTIONS(4816), 1, + ACTIONS(6068), 1, anon_sym_DASH_GT, - ACTIONS(5914), 1, + ACTIONS(7115), 1, anon_sym_SLASH, - ACTIONS(5938), 1, + ACTIONS(7139), 1, anon_sym_LT_EQ_GT, - STATE(2475), 1, + STATE(2996), 1, sym_argument_list, - ACTIONS(5723), 2, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5910), 2, + ACTIONS(7111), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5912), 2, + ACTIONS(7113), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5932), 2, + ACTIONS(7133), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4883), 5, + ACTIONS(5489), 5, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(4881), 16, + ACTIONS(5487), 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_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_or, anon_sym_and, @@ -330487,94 +433481,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - [119603] = 3, + [153204] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4457), 9, - anon_sym_COMMA, + ACTIONS(4978), 1, anon_sym_LPAREN2, + ACTIONS(5493), 1, + anon_sym_LBRACK, + ACTIONS(5497), 1, + anon_sym_DOT, + ACTIONS(5499), 1, + anon_sym_DASH_GT, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, + anon_sym_SLASH, + ACTIONS(6617), 1, + anon_sym_PIPE, + ACTIONS(6621), 1, + anon_sym_AMP, + ACTIONS(6627), 1, + anon_sym_GT_EQ, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6635), 1, + anon_sym_bitor, + ACTIONS(6637), 1, + anon_sym_bitand, + ACTIONS(7285), 1, + anon_sym_RPAREN, + STATE(2996), 1, + sym_argument_list, + ACTIONS(6585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6607), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6609), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6613), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6615), 2, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(4459), 27, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [119647] = 16, + anon_sym_and, + ACTIONS(6619), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6629), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6623), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6625), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [153291] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, + ACTIONS(6066), 1, anon_sym_DOT, - ACTIONS(4816), 1, + ACTIONS(6068), 1, anon_sym_DASH_GT, - ACTIONS(5914), 1, + ACTIONS(7115), 1, anon_sym_SLASH, - ACTIONS(5930), 1, + ACTIONS(7131), 1, anon_sym_GT_EQ, - ACTIONS(5938), 1, + ACTIONS(7139), 1, anon_sym_LT_EQ_GT, - STATE(2475), 1, + STATE(2996), 1, sym_argument_list, - ACTIONS(4883), 2, + ACTIONS(5489), 2, anon_sym_PIPE, anon_sym_AMP, - ACTIONS(5723), 2, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5910), 2, + ACTIONS(7111), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5912), 2, + ACTIONS(7113), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5932), 2, + ACTIONS(7133), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5928), 3, + ACTIONS(7129), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(4881), 15, + ACTIONS(5487), 14, 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, anon_sym_or, anon_sym_and, @@ -330582,686 +433596,755 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - [119717] = 5, + [153360] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4225), 1, - anon_sym_LBRACE, - ACTIONS(4229), 1, - anon_sym_COLON_COLON, - ACTIONS(4322), 10, + ACTIONS(4978), 1, + anon_sym_LPAREN2, + ACTIONS(5493), 1, + anon_sym_LBRACK, + ACTIONS(5497), 1, + anon_sym_DOT, + ACTIONS(5499), 1, + anon_sym_DASH_GT, + ACTIONS(6605), 1, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(6611), 1, + anon_sym_SLASH, + ACTIONS(6617), 1, + anon_sym_PIPE, + ACTIONS(6621), 1, + anon_sym_AMP, + ACTIONS(6627), 1, + anon_sym_GT_EQ, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6635), 1, + anon_sym_bitor, + ACTIONS(6637), 1, + anon_sym_bitand, + ACTIONS(7287), 1, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, + STATE(2996), 1, + sym_argument_list, + ACTIONS(6585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6607), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6609), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6613), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6615), 2, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - ACTIONS(4324), 24, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - [119765] = 22, + anon_sym_and, + ACTIONS(6619), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6629), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6623), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6625), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [153447] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(59), 1, - anon_sym_const, - ACTIONS(4214), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5653), 1, - anon_sym_AMP_AMP, - ACTIONS(5655), 1, - anon_sym_AMP, - ACTIONS(5657), 1, - anon_sym___attribute__, - ACTIONS(5665), 1, - anon_sym_noexcept, - ACTIONS(5667), 1, - anon_sym_throw, - ACTIONS(5675), 1, + ACTIONS(4978), 1, + anon_sym_LPAREN2, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(6106), 1, + ACTIONS(6066), 1, + anon_sym_DOT, + ACTIONS(6068), 1, anon_sym_DASH_GT, - ACTIONS(6108), 1, - anon_sym_requires, - STATE(4402), 1, - sym_ref_qualifier, - STATE(4789), 1, - sym_requires_clause, - STATE(4942), 1, - sym_trailing_return_type, - ACTIONS(5898), 2, - anon_sym_final, - anon_sym_override, - STATE(3882), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(3978), 2, - sym_attribute_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(4563), 2, - sym_noexcept, - sym_throw_specifier, - STATE(4568), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(4622), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat2, - ACTIONS(5673), 4, + ACTIONS(7115), 1, + anon_sym_SLASH, + ACTIONS(7131), 1, + anon_sym_GT_EQ, + ACTIONS(7139), 1, + anon_sym_LT_EQ_GT, + STATE(2996), 1, + sym_argument_list, + ACTIONS(5489), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(6585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7111), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7113), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7133), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7127), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7129), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5487), 11, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_GT2, - ACTIONS(5661), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [119847] = 26, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + [153518] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, + ACTIONS(5497), 1, anon_sym_DOT, - ACTIONS(4816), 1, + ACTIONS(5499), 1, anon_sym_DASH_GT, - ACTIONS(5747), 1, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, anon_sym_SLASH, - ACTIONS(5753), 1, + ACTIONS(6617), 1, anon_sym_PIPE, - ACTIONS(5757), 1, + ACTIONS(6621), 1, anon_sym_AMP, - ACTIONS(5763), 1, + ACTIONS(6627), 1, anon_sym_GT_EQ, - ACTIONS(5767), 1, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, + ACTIONS(6635), 1, anon_sym_bitor, - ACTIONS(5771), 1, + ACTIONS(6637), 1, anon_sym_bitand, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - ACTIONS(5964), 1, - anon_sym_COMMA, - ACTIONS(6169), 1, - anon_sym_RPAREN, - STATE(2475), 1, + ACTIONS(7289), 1, + anon_sym_SEMI, + STATE(2996), 1, sym_argument_list, - ACTIONS(5723), 2, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, + ACTIONS(6607), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5745), 2, + ACTIONS(6609), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5749), 2, + ACTIONS(6613), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(5751), 2, + ACTIONS(6615), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(5755), 2, + ACTIONS(6619), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(5765), 2, + ACTIONS(6629), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5759), 3, + ACTIONS(6623), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5761), 3, + ACTIONS(6625), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [119937] = 26, + [153605] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, + ACTIONS(6066), 1, anon_sym_DOT, - ACTIONS(4816), 1, + ACTIONS(6068), 1, anon_sym_DASH_GT, - ACTIONS(5193), 1, - anon_sym_RPAREN, - ACTIONS(5747), 1, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7115), 1, anon_sym_SLASH, - ACTIONS(5753), 1, + ACTIONS(7121), 1, anon_sym_PIPE, - ACTIONS(5757), 1, + ACTIONS(7125), 1, anon_sym_AMP, - ACTIONS(5763), 1, + ACTIONS(7131), 1, anon_sym_GT_EQ, - ACTIONS(5767), 1, + ACTIONS(7137), 1, + anon_sym_QMARK, + ACTIONS(7139), 1, anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, + ACTIONS(7141), 1, anon_sym_bitor, - ACTIONS(5771), 1, + ACTIONS(7143), 1, anon_sym_bitand, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - ACTIONS(5964), 1, - anon_sym_COMMA, - STATE(2475), 1, + ACTIONS(7291), 1, + anon_sym_COLON, + STATE(2996), 1, sym_argument_list, - ACTIONS(5723), 2, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, + ACTIONS(7111), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5745), 2, + ACTIONS(7113), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5749), 2, + ACTIONS(7117), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(5751), 2, + ACTIONS(7119), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(5755), 2, + ACTIONS(7123), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(5765), 2, + ACTIONS(7133), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5759), 3, + ACTIONS(7127), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5761), 3, + ACTIONS(7129), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [120027] = 17, + [153692] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(5489), 1, + anon_sym_PIPE, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, + ACTIONS(6066), 1, anon_sym_DOT, - ACTIONS(4816), 1, + ACTIONS(6068), 1, anon_sym_DASH_GT, - ACTIONS(5914), 1, + ACTIONS(7115), 1, anon_sym_SLASH, - ACTIONS(5930), 1, + ACTIONS(7125), 1, + anon_sym_AMP, + ACTIONS(7131), 1, anon_sym_GT_EQ, - ACTIONS(5938), 1, + ACTIONS(7139), 1, anon_sym_LT_EQ_GT, - STATE(2475), 1, + ACTIONS(7143), 1, + anon_sym_bitand, + STATE(2996), 1, sym_argument_list, - ACTIONS(4883), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(5723), 2, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5910), 2, + ACTIONS(7111), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5912), 2, + ACTIONS(7113), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5932), 2, + ACTIONS(7133), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5926), 3, + ACTIONS(7127), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5928), 3, + ACTIONS(7129), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(4881), 12, + ACTIONS(5487), 10, 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, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - [120099] = 19, + [153767] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, + ACTIONS(5497), 1, anon_sym_DOT, - ACTIONS(4816), 1, + ACTIONS(5499), 1, anon_sym_DASH_GT, - ACTIONS(4883), 1, - anon_sym_PIPE, - ACTIONS(5914), 1, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, anon_sym_SLASH, - ACTIONS(5924), 1, + ACTIONS(6617), 1, + anon_sym_PIPE, + ACTIONS(6621), 1, anon_sym_AMP, - ACTIONS(5930), 1, + ACTIONS(6627), 1, anon_sym_GT_EQ, - ACTIONS(5938), 1, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, anon_sym_LT_EQ_GT, - ACTIONS(5942), 1, + ACTIONS(6635), 1, + anon_sym_bitor, + ACTIONS(6637), 1, anon_sym_bitand, - STATE(2475), 1, + ACTIONS(7293), 1, + anon_sym_SEMI, + STATE(2996), 1, sym_argument_list, - ACTIONS(5723), 2, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5910), 2, + ACTIONS(6607), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5912), 2, + ACTIONS(6609), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5932), 2, + ACTIONS(6613), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6615), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6619), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6629), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5926), 3, + ACTIONS(6623), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5928), 3, + ACTIONS(6625), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(4881), 11, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - [120175] = 20, + [153854] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, + ACTIONS(5497), 1, anon_sym_DOT, - ACTIONS(4816), 1, + ACTIONS(5499), 1, anon_sym_DASH_GT, - ACTIONS(4883), 1, - anon_sym_PIPE, - ACTIONS(5914), 1, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, anon_sym_SLASH, - ACTIONS(5924), 1, + ACTIONS(6617), 1, + anon_sym_PIPE, + ACTIONS(6621), 1, anon_sym_AMP, - ACTIONS(5930), 1, + ACTIONS(6627), 1, anon_sym_GT_EQ, - ACTIONS(5938), 1, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, anon_sym_LT_EQ_GT, - ACTIONS(5942), 1, + ACTIONS(6635), 1, + anon_sym_bitor, + ACTIONS(6637), 1, anon_sym_bitand, - STATE(2475), 1, + ACTIONS(7295), 1, + anon_sym_SEMI, + STATE(2996), 1, sym_argument_list, - ACTIONS(5723), 2, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5910), 2, + ACTIONS(6607), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5912), 2, + ACTIONS(6609), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5922), 2, + ACTIONS(6613), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6615), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6619), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(5932), 2, + ACTIONS(6629), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5926), 3, + ACTIONS(6623), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5928), 3, + ACTIONS(6625), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(4881), 9, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - [120253] = 26, + [153941] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, + ACTIONS(5497), 1, anon_sym_DOT, - ACTIONS(4816), 1, + ACTIONS(5499), 1, anon_sym_DASH_GT, - ACTIONS(5747), 1, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, anon_sym_SLASH, - ACTIONS(5753), 1, + ACTIONS(6617), 1, anon_sym_PIPE, - ACTIONS(5757), 1, + ACTIONS(6621), 1, anon_sym_AMP, - ACTIONS(5763), 1, + ACTIONS(6627), 1, anon_sym_GT_EQ, - ACTIONS(5767), 1, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, + ACTIONS(6635), 1, anon_sym_bitor, - ACTIONS(5771), 1, + ACTIONS(6637), 1, anon_sym_bitand, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - ACTIONS(6171), 1, - anon_sym_COMMA, - ACTIONS(6173), 1, - anon_sym_RPAREN, - STATE(2475), 1, + ACTIONS(7297), 1, + anon_sym_SEMI, + STATE(2996), 1, sym_argument_list, - ACTIONS(5723), 2, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, + ACTIONS(6607), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5745), 2, + ACTIONS(6609), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5749), 2, + ACTIONS(6613), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(5751), 2, + ACTIONS(6615), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(5755), 2, + ACTIONS(6619), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(5765), 2, + ACTIONS(6629), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5759), 3, + ACTIONS(6623), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5761), 3, + ACTIONS(6625), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [120343] = 21, + [154028] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(5489), 1, + anon_sym_PIPE, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, + ACTIONS(6066), 1, anon_sym_DOT, - ACTIONS(4816), 1, + ACTIONS(6068), 1, anon_sym_DASH_GT, - ACTIONS(5914), 1, + ACTIONS(7115), 1, anon_sym_SLASH, - ACTIONS(5920), 1, - anon_sym_PIPE, - ACTIONS(5924), 1, + ACTIONS(7125), 1, anon_sym_AMP, - ACTIONS(5930), 1, + ACTIONS(7131), 1, anon_sym_GT_EQ, - ACTIONS(5938), 1, + ACTIONS(7139), 1, anon_sym_LT_EQ_GT, - ACTIONS(5940), 1, - anon_sym_bitor, - ACTIONS(5942), 1, + ACTIONS(7143), 1, anon_sym_bitand, - STATE(2475), 1, + STATE(2996), 1, sym_argument_list, - ACTIONS(5723), 2, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5910), 2, + ACTIONS(7111), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5912), 2, + ACTIONS(7113), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5922), 2, + ACTIONS(7123), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(5932), 2, + ACTIONS(7133), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5926), 3, + ACTIONS(7127), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5928), 3, + ACTIONS(7129), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(4881), 8, + ACTIONS(5487), 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, anon_sym_or, anon_sym_and, - [120423] = 17, + anon_sym_bitor, + [154105] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(5713), 1, - anon_sym_const, - ACTIONS(5864), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(5872), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(6175), 1, - anon_sym_STAR, - ACTIONS(6177), 1, - anon_sym_AMP_AMP, - ACTIONS(6179), 1, + ACTIONS(5497), 1, + anon_sym_DOT, + ACTIONS(5499), 1, + anon_sym_DASH_GT, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, + anon_sym_SLASH, + ACTIONS(6617), 1, + anon_sym_PIPE, + ACTIONS(6621), 1, anon_sym_AMP, - ACTIONS(6181), 1, - sym_auto, - ACTIONS(6183), 1, - anon_sym_decltype, - STATE(3362), 1, - sym_parameter_list, - STATE(3606), 1, - sym_decltype_auto, - STATE(4690), 1, - sym__function_declarator_seq, - STATE(4696), 1, - sym__abstract_declarator, - STATE(3881), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(4686), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(5731), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - ACTIONS(5888), 10, - anon_sym_COMMA, + ACTIONS(6627), 1, + anon_sym_GT_EQ, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6635), 1, + anon_sym_bitor, + ACTIONS(6637), 1, + anon_sym_bitand, + ACTIONS(7299), 1, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [120495] = 22, + STATE(2996), 1, + sym_argument_list, + ACTIONS(6585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6607), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6609), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6613), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6615), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6619), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6629), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6623), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6625), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [154192] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, + ACTIONS(6066), 1, anon_sym_DOT, - ACTIONS(4816), 1, + ACTIONS(6068), 1, anon_sym_DASH_GT, - ACTIONS(5914), 1, + ACTIONS(7115), 1, anon_sym_SLASH, - ACTIONS(5920), 1, + ACTIONS(7121), 1, anon_sym_PIPE, - ACTIONS(5924), 1, + ACTIONS(7125), 1, anon_sym_AMP, - ACTIONS(5930), 1, + ACTIONS(7131), 1, anon_sym_GT_EQ, - ACTIONS(5938), 1, + ACTIONS(7139), 1, anon_sym_LT_EQ_GT, - ACTIONS(5940), 1, + ACTIONS(7141), 1, anon_sym_bitor, - ACTIONS(5942), 1, + ACTIONS(7143), 1, anon_sym_bitand, - STATE(2475), 1, + STATE(2996), 1, sym_argument_list, - ACTIONS(5723), 2, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5910), 2, + ACTIONS(7111), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5912), 2, + ACTIONS(7113), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5918), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5922), 2, + ACTIONS(7123), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(5932), 2, + ACTIONS(7133), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5926), 3, + ACTIONS(7127), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5928), 3, + ACTIONS(7129), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(4881), 6, + ACTIONS(5487), 7, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, anon_sym_PIPE_PIPE, - anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_COLON, anon_sym_QMARK, anon_sym_or, - [120577] = 11, + anon_sym_and, + [154271] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(4340), 1, + anon_sym_RBRACK, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, + ACTIONS(5497), 1, anon_sym_DOT, - ACTIONS(4816), 1, + ACTIONS(5499), 1, anon_sym_DASH_GT, - ACTIONS(5914), 1, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6724), 1, anon_sym_SLASH, - STATE(2475), 1, + ACTIONS(6730), 1, + anon_sym_PIPE, + ACTIONS(6734), 1, + anon_sym_AMP, + ACTIONS(6740), 1, + anon_sym_GT_EQ, + ACTIONS(6746), 1, + anon_sym_QMARK, + ACTIONS(6748), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6750), 1, + anon_sym_bitor, + ACTIONS(6752), 1, + anon_sym_bitand, + STATE(2996), 1, sym_argument_list, - ACTIONS(5723), 2, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5912), 2, + ACTIONS(6720), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6722), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(4883), 7, + ACTIONS(6726), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6728), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6732), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6742), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6736), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6738), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [154358] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5689), 11, anon_sym_DASH, anon_sym_PLUS, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(4881), 19, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(5687), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RBRACK, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -331270,734 +434353,437 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - [120637] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [154401] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4529), 9, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(4531), 27, + ACTIONS(5685), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [120681] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4533), 9, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(5683), 24, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(4535), 27, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [120725] = 26, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [154444] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, + ACTIONS(6066), 1, anon_sym_DOT, - ACTIONS(4816), 1, + ACTIONS(6068), 1, anon_sym_DASH_GT, - ACTIONS(5747), 1, + ACTIONS(7115), 1, anon_sym_SLASH, - ACTIONS(5753), 1, + ACTIONS(7121), 1, anon_sym_PIPE, - ACTIONS(5757), 1, + ACTIONS(7125), 1, anon_sym_AMP, - ACTIONS(5763), 1, + ACTIONS(7131), 1, anon_sym_GT_EQ, - ACTIONS(5767), 1, + ACTIONS(7139), 1, anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, + ACTIONS(7141), 1, anon_sym_bitor, - ACTIONS(5771), 1, + ACTIONS(7143), 1, anon_sym_bitand, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - ACTIONS(5964), 1, - anon_sym_COMMA, - ACTIONS(6185), 1, - anon_sym_SEMI, - STATE(2475), 1, + STATE(2996), 1, sym_argument_list, - ACTIONS(5723), 2, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, + ACTIONS(7111), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5745), 2, + ACTIONS(7113), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5749), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5751), 2, + ACTIONS(7119), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(5755), 2, + ACTIONS(7123), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(5765), 2, + ACTIONS(7133), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5759), 3, + ACTIONS(7127), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5761), 3, + ACTIONS(7129), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [120815] = 26, + ACTIONS(5487), 5, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_or, + [154525] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, + ACTIONS(5497), 1, anon_sym_DOT, - ACTIONS(4816), 1, + ACTIONS(5499), 1, anon_sym_DASH_GT, - ACTIONS(5747), 1, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, anon_sym_SLASH, - ACTIONS(5753), 1, + ACTIONS(6617), 1, anon_sym_PIPE, - ACTIONS(5757), 1, + ACTIONS(6621), 1, anon_sym_AMP, - ACTIONS(5763), 1, + ACTIONS(6627), 1, anon_sym_GT_EQ, - ACTIONS(5767), 1, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, + ACTIONS(6635), 1, anon_sym_bitor, - ACTIONS(5771), 1, + ACTIONS(6637), 1, anon_sym_bitand, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - ACTIONS(6187), 1, - anon_sym_COMMA, - ACTIONS(6189), 1, + ACTIONS(7301), 1, anon_sym_RPAREN, - STATE(2475), 1, + STATE(2996), 1, sym_argument_list, - ACTIONS(5723), 2, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, + ACTIONS(6607), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5745), 2, + ACTIONS(6609), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5749), 2, + ACTIONS(6613), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(5751), 2, + ACTIONS(6615), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(5755), 2, + ACTIONS(6619), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(5765), 2, + ACTIONS(6629), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5759), 3, + ACTIONS(6623), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5761), 3, + ACTIONS(6625), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [120905] = 24, + [154612] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, + ACTIONS(5497), 1, anon_sym_DOT, - ACTIONS(4816), 1, + ACTIONS(5499), 1, anon_sym_DASH_GT, - ACTIONS(5773), 1, + ACTIONS(6605), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5914), 1, + ACTIONS(6611), 1, anon_sym_SLASH, - ACTIONS(5920), 1, + ACTIONS(6617), 1, anon_sym_PIPE, - ACTIONS(5924), 1, + ACTIONS(6621), 1, anon_sym_AMP, - ACTIONS(5930), 1, + ACTIONS(6627), 1, anon_sym_GT_EQ, - ACTIONS(5938), 1, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, anon_sym_LT_EQ_GT, - ACTIONS(5940), 1, + ACTIONS(6635), 1, anon_sym_bitor, - ACTIONS(5942), 1, + ACTIONS(6637), 1, anon_sym_bitand, - STATE(2475), 1, + ACTIONS(7303), 1, + anon_sym_SEMI, + STATE(2996), 1, sym_argument_list, - ACTIONS(5723), 2, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5910), 2, + ACTIONS(6607), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5912), 2, + ACTIONS(6609), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5916), 2, + ACTIONS(6613), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(5918), 2, + ACTIONS(6615), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(5922), 2, + ACTIONS(6619), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(5932), 2, + ACTIONS(6629), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4774), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_QMARK, - ACTIONS(5926), 3, + ACTIONS(6623), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5928), 3, + ACTIONS(6625), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [120991] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4561), 9, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(4563), 27, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [121035] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4565), 9, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(4567), 27, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [121079] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4573), 9, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(4575), 27, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [121123] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4581), 9, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(4583), 27, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [121167] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4585), 9, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(4587), 27, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [121211] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4612), 9, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(4614), 27, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [121255] = 26, + [154699] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, + ACTIONS(5497), 1, anon_sym_DOT, - ACTIONS(4816), 1, + ACTIONS(5499), 1, anon_sym_DASH_GT, - ACTIONS(5747), 1, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, anon_sym_SLASH, - ACTIONS(5753), 1, + ACTIONS(6617), 1, anon_sym_PIPE, - ACTIONS(5757), 1, + ACTIONS(6621), 1, anon_sym_AMP, - ACTIONS(5763), 1, + ACTIONS(6627), 1, anon_sym_GT_EQ, - ACTIONS(5767), 1, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, + ACTIONS(6635), 1, anon_sym_bitor, - ACTIONS(5771), 1, + ACTIONS(6637), 1, anon_sym_bitand, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - ACTIONS(5964), 1, - anon_sym_COMMA, - ACTIONS(6191), 1, + ACTIONS(7305), 1, anon_sym_SEMI, - STATE(2475), 1, + STATE(2996), 1, sym_argument_list, - ACTIONS(5723), 2, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, + ACTIONS(6607), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5745), 2, + ACTIONS(6609), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5749), 2, + ACTIONS(6613), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(5751), 2, + ACTIONS(6615), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(5755), 2, + ACTIONS(6619), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(5765), 2, + ACTIONS(6629), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5759), 3, + ACTIONS(6623), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5761), 3, + ACTIONS(6625), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [121345] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3814), 1, - anon_sym_COLON_COLON, - ACTIONS(3840), 1, - anon_sym_LBRACK, - ACTIONS(5383), 1, - anon_sym_LT, - STATE(3810), 1, - sym_template_argument_list, - ACTIONS(3833), 3, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - ACTIONS(3836), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_EQ, - ACTIONS(3831), 23, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - [121399] = 24, + [154786] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4385), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(5211), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(5217), 1, + ACTIONS(5497), 1, anon_sym_DOT, - ACTIONS(5219), 1, + ACTIONS(5499), 1, anon_sym_DASH_GT, - ACTIONS(5797), 1, + ACTIONS(6605), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5805), 1, + ACTIONS(6611), 1, anon_sym_SLASH, - ACTIONS(5811), 1, + ACTIONS(6617), 1, anon_sym_PIPE, - ACTIONS(5815), 1, + ACTIONS(6621), 1, anon_sym_AMP, - ACTIONS(5821), 1, - anon_sym_LT_LT, - ACTIONS(5823), 1, - anon_sym_GT_GT, - ACTIONS(5827), 1, + ACTIONS(6627), 1, + anon_sym_GT_EQ, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, anon_sym_LT_EQ_GT, - ACTIONS(5829), 1, + ACTIONS(6635), 1, anon_sym_bitor, - ACTIONS(5831), 1, + ACTIONS(6637), 1, anon_sym_bitand, - STATE(3010), 1, + ACTIONS(7307), 1, + anon_sym_SEMI, + STATE(2996), 1, sym_argument_list, - ACTIONS(5801), 2, + ACTIONS(6585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6607), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6609), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6613), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6615), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6619), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6629), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6623), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6625), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [154873] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5581), 11, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5803), 2, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(5579), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5807), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5809), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5813), 2, anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, anon_sym_xor, - ACTIONS(5833), 2, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(4774), 3, - anon_sym_COMMA, - anon_sym_QMARK, + anon_sym_DASH_GT, anon_sym_GT2, - ACTIONS(5817), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5819), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [121485] = 9, + [154916] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(4385), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(5211), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(5217), 1, + ACTIONS(6066), 1, anon_sym_DOT, - ACTIONS(5219), 1, + ACTIONS(6068), 1, anon_sym_DASH_GT, - STATE(3010), 1, + ACTIONS(7115), 1, + anon_sym_SLASH, + STATE(2996), 1, sym_argument_list, - ACTIONS(5833), 2, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(4883), 10, + ACTIONS(7113), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5489), 7, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_GT_GT, - ACTIONS(4881), 19, + ACTIONS(5487), 18, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -332006,1319 +434792,1305 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_GT2, - [121541] = 22, + [154975] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(4385), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(5211), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(5217), 1, + ACTIONS(6066), 1, anon_sym_DOT, - ACTIONS(5219), 1, + ACTIONS(6068), 1, anon_sym_DASH_GT, - ACTIONS(5805), 1, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7115), 1, anon_sym_SLASH, - ACTIONS(5811), 1, + ACTIONS(7121), 1, anon_sym_PIPE, - ACTIONS(5815), 1, + ACTIONS(7125), 1, anon_sym_AMP, - ACTIONS(5821), 1, - anon_sym_LT_LT, - ACTIONS(5823), 1, - anon_sym_GT_GT, - ACTIONS(5827), 1, + ACTIONS(7131), 1, + anon_sym_GT_EQ, + ACTIONS(7139), 1, anon_sym_LT_EQ_GT, - ACTIONS(5829), 1, + ACTIONS(7141), 1, anon_sym_bitor, - ACTIONS(5831), 1, + ACTIONS(7143), 1, anon_sym_bitand, - STATE(3010), 1, + STATE(2996), 1, sym_argument_list, - ACTIONS(5801), 2, + ACTIONS(5585), 2, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(6585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7111), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5803), 2, + ACTIONS(7113), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5809), 2, + ACTIONS(7117), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7119), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(5813), 2, + ACTIONS(7123), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(5833), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5817), 3, + ACTIONS(7133), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7127), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5819), 4, + ACTIONS(7129), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(4881), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_QMARK, - anon_sym_or, - anon_sym_GT2, - [121623] = 21, + [155060] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4385), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(5211), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(5217), 1, + ACTIONS(5497), 1, anon_sym_DOT, - ACTIONS(5219), 1, + ACTIONS(5499), 1, anon_sym_DASH_GT, - ACTIONS(5805), 1, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6724), 1, anon_sym_SLASH, - ACTIONS(5811), 1, + ACTIONS(6730), 1, anon_sym_PIPE, - ACTIONS(5815), 1, + ACTIONS(6734), 1, anon_sym_AMP, - ACTIONS(5821), 1, - anon_sym_LT_LT, - ACTIONS(5823), 1, - anon_sym_GT_GT, - ACTIONS(5827), 1, + ACTIONS(6740), 1, + anon_sym_GT_EQ, + ACTIONS(6746), 1, + anon_sym_QMARK, + ACTIONS(6748), 1, anon_sym_LT_EQ_GT, - ACTIONS(5829), 1, + ACTIONS(6750), 1, anon_sym_bitor, - ACTIONS(5831), 1, + ACTIONS(6752), 1, anon_sym_bitand, - STATE(3010), 1, + ACTIONS(7309), 1, + anon_sym_RBRACK, + STATE(2996), 1, sym_argument_list, - ACTIONS(5801), 2, + ACTIONS(6585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6720), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5803), 2, + ACTIONS(6722), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5813), 2, + ACTIONS(6726), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6728), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6732), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(5833), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5817), 3, + ACTIONS(6742), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6736), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5819), 4, + ACTIONS(6738), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(4881), 8, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_QMARK, - anon_sym_or, - anon_sym_and, - anon_sym_GT2, - [121703] = 20, + [155147] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4385), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(4883), 1, - anon_sym_PIPE, - ACTIONS(5211), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(5217), 1, + ACTIONS(5497), 1, anon_sym_DOT, - ACTIONS(5219), 1, + ACTIONS(5499), 1, anon_sym_DASH_GT, - ACTIONS(5805), 1, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, anon_sym_SLASH, - ACTIONS(5815), 1, + ACTIONS(6617), 1, + anon_sym_PIPE, + ACTIONS(6621), 1, anon_sym_AMP, - ACTIONS(5821), 1, - anon_sym_LT_LT, - ACTIONS(5823), 1, - anon_sym_GT_GT, - ACTIONS(5827), 1, + ACTIONS(6627), 1, + anon_sym_GT_EQ, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, anon_sym_LT_EQ_GT, - ACTIONS(5831), 1, + ACTIONS(6635), 1, + anon_sym_bitor, + ACTIONS(6637), 1, anon_sym_bitand, - STATE(3010), 1, + ACTIONS(7311), 1, + anon_sym_SEMI, + STATE(2996), 1, sym_argument_list, - ACTIONS(5801), 2, + ACTIONS(6585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6607), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5803), 2, + ACTIONS(6609), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5813), 2, + ACTIONS(6613), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6615), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6619), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(5833), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5817), 3, + ACTIONS(6629), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6623), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5819), 4, + ACTIONS(6625), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(4881), 9, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_QMARK, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_GT2, - [121781] = 19, + [155234] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4385), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(4883), 1, - anon_sym_PIPE, - ACTIONS(5211), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(5217), 1, + ACTIONS(5497), 1, anon_sym_DOT, - ACTIONS(5219), 1, + ACTIONS(5499), 1, anon_sym_DASH_GT, - ACTIONS(5805), 1, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, anon_sym_SLASH, - ACTIONS(5815), 1, + ACTIONS(6617), 1, + anon_sym_PIPE, + ACTIONS(6621), 1, anon_sym_AMP, - ACTIONS(5821), 1, - anon_sym_LT_LT, - ACTIONS(5823), 1, - anon_sym_GT_GT, - ACTIONS(5827), 1, + ACTIONS(6627), 1, + anon_sym_GT_EQ, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, anon_sym_LT_EQ_GT, - ACTIONS(5831), 1, + ACTIONS(6635), 1, + anon_sym_bitor, + ACTIONS(6637), 1, anon_sym_bitand, - STATE(3010), 1, + ACTIONS(7313), 1, + anon_sym_RPAREN, + STATE(2996), 1, sym_argument_list, - ACTIONS(5801), 2, + ACTIONS(6585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6607), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5803), 2, + ACTIONS(6609), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5833), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5817), 3, + ACTIONS(6613), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6615), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6619), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6629), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6623), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5819), 4, + ACTIONS(6625), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(4881), 11, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_QMARK, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_GT2, - [121857] = 17, + [155321] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4385), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(5211), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(5217), 1, + ACTIONS(6066), 1, anon_sym_DOT, - ACTIONS(5219), 1, + ACTIONS(6068), 1, anon_sym_DASH_GT, - ACTIONS(5805), 1, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7115), 1, anon_sym_SLASH, - ACTIONS(5821), 1, - anon_sym_LT_LT, - ACTIONS(5823), 1, - anon_sym_GT_GT, - ACTIONS(5827), 1, - anon_sym_LT_EQ_GT, - STATE(3010), 1, - sym_argument_list, - ACTIONS(4883), 2, + ACTIONS(7121), 1, anon_sym_PIPE, + ACTIONS(7125), 1, anon_sym_AMP, - ACTIONS(5801), 2, + ACTIONS(7131), 1, + anon_sym_GT_EQ, + ACTIONS(7137), 1, + anon_sym_QMARK, + ACTIONS(7139), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7141), 1, + anon_sym_bitor, + ACTIONS(7143), 1, + anon_sym_bitand, + ACTIONS(7315), 1, + anon_sym_COLON, + STATE(2996), 1, + sym_argument_list, + ACTIONS(6585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7111), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5803), 2, + ACTIONS(7113), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5833), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5817), 3, + ACTIONS(7117), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7119), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7123), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7133), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7127), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5819), 4, + ACTIONS(7129), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(4881), 12, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_QMARK, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_GT2, - [121929] = 16, + [155408] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4385), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(5211), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(5217), 1, + ACTIONS(5497), 1, anon_sym_DOT, - ACTIONS(5219), 1, + ACTIONS(5499), 1, anon_sym_DASH_GT, - ACTIONS(5805), 1, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, anon_sym_SLASH, - ACTIONS(5821), 1, - anon_sym_LT_LT, - ACTIONS(5823), 1, - anon_sym_GT_GT, - ACTIONS(5827), 1, - anon_sym_LT_EQ_GT, - STATE(3010), 1, - sym_argument_list, - ACTIONS(4883), 2, + ACTIONS(6617), 1, anon_sym_PIPE, + ACTIONS(6621), 1, anon_sym_AMP, - ACTIONS(5801), 2, + ACTIONS(6627), 1, + anon_sym_GT_EQ, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6635), 1, + anon_sym_bitor, + ACTIONS(6637), 1, + anon_sym_bitand, + ACTIONS(7317), 1, + anon_sym_SEMI, + STATE(2996), 1, + sym_argument_list, + ACTIONS(6585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6607), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5803), 2, + ACTIONS(6609), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5833), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5819), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(4881), 15, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(6613), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6615), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6619), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(6629), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6623), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, anon_sym_not_eq, - anon_sym_GT2, - [121999] = 15, + ACTIONS(6625), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [155495] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4385), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(5211), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(5217), 1, + ACTIONS(5497), 1, anon_sym_DOT, - ACTIONS(5219), 1, + ACTIONS(5499), 1, anon_sym_DASH_GT, - ACTIONS(5805), 1, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, anon_sym_SLASH, - ACTIONS(5821), 1, - anon_sym_LT_LT, - ACTIONS(5823), 1, - anon_sym_GT_GT, - ACTIONS(5827), 1, + ACTIONS(6617), 1, + anon_sym_PIPE, + ACTIONS(6621), 1, + anon_sym_AMP, + ACTIONS(6627), 1, + anon_sym_GT_EQ, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, anon_sym_LT_EQ_GT, - STATE(3010), 1, + ACTIONS(6635), 1, + anon_sym_bitor, + ACTIONS(6637), 1, + anon_sym_bitand, + ACTIONS(7319), 1, + anon_sym_SEMI, + STATE(2996), 1, sym_argument_list, - ACTIONS(5801), 2, + ACTIONS(6585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6607), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5803), 2, + ACTIONS(6609), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5833), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4883), 6, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(4881), 15, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(6613), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6615), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6619), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(6629), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6623), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, anon_sym_not_eq, - anon_sym_GT2, - [122067] = 12, + ACTIONS(6625), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [155582] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4385), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(5211), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(5217), 1, + ACTIONS(5497), 1, anon_sym_DOT, - ACTIONS(5219), 1, + ACTIONS(5499), 1, anon_sym_DASH_GT, - ACTIONS(5805), 1, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, anon_sym_SLASH, - STATE(3010), 1, + ACTIONS(6617), 1, + anon_sym_PIPE, + ACTIONS(6621), 1, + anon_sym_AMP, + ACTIONS(6627), 1, + anon_sym_GT_EQ, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6635), 1, + anon_sym_bitor, + ACTIONS(6637), 1, + anon_sym_bitand, + ACTIONS(7321), 1, + anon_sym_RPAREN, + STATE(2996), 1, sym_argument_list, - ACTIONS(5801), 2, + ACTIONS(6585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6607), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5803), 2, + ACTIONS(6609), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5833), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4883), 7, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - ACTIONS(4881), 17, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(6613), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6615), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6619), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(6629), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6623), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, anon_sym_not_eq, - anon_sym_GT2, - [122129] = 23, + ACTIONS(6625), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [155669] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, + ACTIONS(5497), 1, anon_sym_DOT, - ACTIONS(4816), 1, + ACTIONS(5499), 1, anon_sym_DASH_GT, - ACTIONS(5914), 1, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, anon_sym_SLASH, - ACTIONS(5920), 1, + ACTIONS(6617), 1, anon_sym_PIPE, - ACTIONS(5924), 1, + ACTIONS(6621), 1, anon_sym_AMP, - ACTIONS(5930), 1, + ACTIONS(6627), 1, anon_sym_GT_EQ, - ACTIONS(5938), 1, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, anon_sym_LT_EQ_GT, - ACTIONS(5940), 1, + ACTIONS(6635), 1, anon_sym_bitor, - ACTIONS(5942), 1, + ACTIONS(6637), 1, anon_sym_bitand, - STATE(2475), 1, + ACTIONS(7323), 1, + anon_sym_SEMI, + STATE(2996), 1, sym_argument_list, - ACTIONS(5723), 2, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5910), 2, + ACTIONS(6607), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5912), 2, + ACTIONS(6609), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5916), 2, + ACTIONS(6613), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(5918), 2, + ACTIONS(6615), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(5922), 2, + ACTIONS(6619), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(5932), 2, + ACTIONS(6629), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5926), 3, + ACTIONS(6623), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5928), 3, + ACTIONS(6625), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(4859), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_QMARK, - [122213] = 14, + [155756] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4385), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(5211), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(5217), 1, + ACTIONS(5497), 1, anon_sym_DOT, - ACTIONS(5219), 1, + ACTIONS(5499), 1, anon_sym_DASH_GT, - ACTIONS(5805), 1, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, anon_sym_SLASH, - ACTIONS(5821), 1, - anon_sym_LT_LT, - ACTIONS(5823), 1, - anon_sym_GT_GT, - STATE(3010), 1, + ACTIONS(6617), 1, + anon_sym_PIPE, + ACTIONS(6621), 1, + anon_sym_AMP, + ACTIONS(6627), 1, + anon_sym_GT_EQ, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6635), 1, + anon_sym_bitor, + ACTIONS(6637), 1, + anon_sym_bitand, + ACTIONS(7325), 1, + anon_sym_RPAREN, + STATE(2996), 1, sym_argument_list, - ACTIONS(5801), 2, + ACTIONS(6585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6607), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5803), 2, + ACTIONS(6609), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5833), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4883), 6, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(4881), 16, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(6613), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6615), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6619), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(6629), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6623), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, anon_sym_not_eq, - anon_sym_GT2, - [122279] = 25, + ACTIONS(6625), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [155843] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, + ACTIONS(5497), 1, anon_sym_DOT, - ACTIONS(4816), 1, + ACTIONS(5499), 1, anon_sym_DASH_GT, - ACTIONS(5773), 1, + ACTIONS(6605), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5914), 1, + ACTIONS(6611), 1, anon_sym_SLASH, - ACTIONS(5920), 1, + ACTIONS(6617), 1, anon_sym_PIPE, - ACTIONS(5924), 1, + ACTIONS(6621), 1, anon_sym_AMP, - ACTIONS(5930), 1, + ACTIONS(6627), 1, anon_sym_GT_EQ, - ACTIONS(5936), 1, + ACTIONS(6631), 1, anon_sym_QMARK, - ACTIONS(5938), 1, + ACTIONS(6633), 1, anon_sym_LT_EQ_GT, - ACTIONS(5940), 1, + ACTIONS(6635), 1, anon_sym_bitor, - ACTIONS(5942), 1, + ACTIONS(6637), 1, anon_sym_bitand, - STATE(2475), 1, + ACTIONS(7327), 1, + anon_sym_RBRACE, + STATE(2996), 1, sym_argument_list, - ACTIONS(5723), 2, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5910), 2, + ACTIONS(6607), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5912), 2, + ACTIONS(6609), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5916), 2, + ACTIONS(6613), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(5918), 2, + ACTIONS(6615), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(5922), 2, + ACTIONS(6619), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(5932), 2, + ACTIONS(6629), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6193), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(5926), 3, + ACTIONS(6623), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5928), 3, + ACTIONS(6625), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [122367] = 25, + [155930] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, + ACTIONS(6066), 1, anon_sym_DOT, - ACTIONS(4816), 1, + ACTIONS(6068), 1, anon_sym_DASH_GT, - ACTIONS(5747), 1, + ACTIONS(7115), 1, anon_sym_SLASH, - ACTIONS(5753), 1, + ACTIONS(7121), 1, anon_sym_PIPE, - ACTIONS(5757), 1, + ACTIONS(7125), 1, anon_sym_AMP, - ACTIONS(5763), 1, + ACTIONS(7131), 1, anon_sym_GT_EQ, - ACTIONS(5767), 1, + ACTIONS(7139), 1, anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, + ACTIONS(7141), 1, anon_sym_bitor, - ACTIONS(5771), 1, + ACTIONS(7143), 1, anon_sym_bitand, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - STATE(2475), 1, + STATE(2996), 1, sym_argument_list, - ACTIONS(5723), 2, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, + ACTIONS(7111), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5745), 2, + ACTIONS(7113), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5749), 2, + ACTIONS(7117), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(5751), 2, + ACTIONS(7119), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(5755), 2, + ACTIONS(7123), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(5765), 2, + ACTIONS(7133), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6195), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(5759), 3, + ACTIONS(5601), 3, + anon_sym_DOT_DOT_DOT, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(7127), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5761), 3, + ACTIONS(7129), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [122455] = 9, + [156013] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4385), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(5211), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(5217), 1, + ACTIONS(5497), 1, anon_sym_DOT, - ACTIONS(5219), 1, + ACTIONS(5499), 1, anon_sym_DASH_GT, - STATE(3010), 1, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, + anon_sym_SLASH, + ACTIONS(6617), 1, + anon_sym_PIPE, + ACTIONS(6621), 1, + anon_sym_AMP, + ACTIONS(6627), 1, + anon_sym_GT_EQ, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6635), 1, + anon_sym_bitor, + ACTIONS(6637), 1, + anon_sym_bitand, + ACTIONS(7329), 1, + anon_sym_SEMI, + STATE(2996), 1, sym_argument_list, - ACTIONS(5833), 2, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5013), 10, + ACTIONS(6607), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - ACTIONS(5011), 19, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(6609), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(6613), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6615), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6619), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(6629), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6623), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, anon_sym_not_eq, - anon_sym_GT2, - [122511] = 3, + ACTIONS(6625), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [156100] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4497), 9, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(3111), 2, + anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(4499), 27, - anon_sym_AMP, + ACTIONS(3109), 33, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, anon_sym_static, anon_sym_register, anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, anon_sym_virtual, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [122555] = 3, + anon_sym_typename, + anon_sym_template, + [156143] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4493), 9, - anon_sym_COMMA, + ACTIONS(4978), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(4495), 27, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + ACTIONS(5493), 1, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [122599] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5707), 1, - anon_sym___attribute__, - ACTIONS(5709), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5711), 1, - anon_sym___declspec, - ACTIONS(5719), 1, - anon_sym_virtual, - ACTIONS(5487), 4, + ACTIONS(5497), 1, + anon_sym_DOT, + ACTIONS(5499), 1, + anon_sym_DASH_GT, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, + anon_sym_SLASH, + ACTIONS(6617), 1, + anon_sym_PIPE, + ACTIONS(6621), 1, anon_sym_AMP, - anon_sym___based, - sym_identifier, - anon_sym_operator, - ACTIONS(5705), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - ACTIONS(5489), 7, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, + ACTIONS(6627), 1, + anon_sym_GT_EQ, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6635), 1, + anon_sym_bitor, + ACTIONS(6637), 1, + anon_sym_bitand, + ACTIONS(7331), 1, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(5713), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(3653), 8, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual, - aux_sym__declaration_specifiers_repeat1, - [122657] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4620), 9, - anon_sym_COMMA, - anon_sym_LPAREN2, + STATE(2996), 1, + sym_argument_list, + ACTIONS(6585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6607), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6609), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6613), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6615), 2, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(4622), 27, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [122701] = 3, + anon_sym_and, + ACTIONS(6619), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6629), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6623), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6625), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [156230] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4616), 9, - anon_sym_COMMA, + ACTIONS(4978), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(4618), 27, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + ACTIONS(5493), 1, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [122745] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6200), 1, - anon_sym___attribute__, - ACTIONS(6203), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6206), 1, - anon_sym___declspec, - ACTIONS(6212), 1, - anon_sym_virtual, - ACTIONS(5510), 4, + ACTIONS(5497), 1, + anon_sym_DOT, + ACTIONS(5499), 1, + anon_sym_DASH_GT, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, + anon_sym_SLASH, + ACTIONS(6617), 1, + anon_sym_PIPE, + ACTIONS(6621), 1, anon_sym_AMP, - anon_sym___based, - sym_identifier, - anon_sym_operator, - ACTIONS(6197), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - ACTIONS(5512), 7, - anon_sym_LPAREN2, + ACTIONS(6627), 1, + anon_sym_GT_EQ, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6635), 1, + anon_sym_bitor, + ACTIONS(6637), 1, + anon_sym_bitand, + ACTIONS(7333), 1, + anon_sym_RPAREN, + STATE(2996), 1, + sym_argument_list, + ACTIONS(6585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6607), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6609), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6613), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6615), 2, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(6209), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(3653), 8, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual, - aux_sym__declaration_specifiers_repeat1, - [122803] = 3, + anon_sym_and, + ACTIONS(6619), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6629), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6623), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6625), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [156317] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4553), 9, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(2910), 2, + anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(4555), 27, - anon_sym_AMP, + ACTIONS(2908), 33, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, anon_sym_static, anon_sym_register, anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, anon_sym_virtual, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [122847] = 3, + anon_sym_typename, + anon_sym_template, + [156360] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4549), 9, - anon_sym_COMMA, + ACTIONS(4978), 1, anon_sym_LPAREN2, + ACTIONS(5493), 1, + anon_sym_LBRACK, + ACTIONS(5497), 1, + anon_sym_DOT, + ACTIONS(5499), 1, + anon_sym_DASH_GT, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, + anon_sym_SLASH, + ACTIONS(6617), 1, + anon_sym_PIPE, + ACTIONS(6621), 1, + anon_sym_AMP, + ACTIONS(6627), 1, + anon_sym_GT_EQ, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6635), 1, + anon_sym_bitor, + ACTIONS(6637), 1, + anon_sym_bitand, + ACTIONS(7335), 1, + anon_sym_RPAREN, + STATE(2996), 1, + sym_argument_list, + ACTIONS(6585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6607), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6609), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6613), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6615), 2, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(4551), 27, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [122891] = 3, + anon_sym_and, + ACTIONS(6619), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6629), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6623), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6625), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [156447] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4545), 9, - anon_sym_COMMA, + ACTIONS(4978), 1, anon_sym_LPAREN2, + ACTIONS(5493), 1, + anon_sym_LBRACK, + ACTIONS(5497), 1, + anon_sym_DOT, + ACTIONS(5499), 1, + anon_sym_DASH_GT, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, + anon_sym_SLASH, + ACTIONS(6617), 1, + anon_sym_PIPE, + ACTIONS(6621), 1, + anon_sym_AMP, + ACTIONS(6627), 1, + anon_sym_GT_EQ, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6635), 1, + anon_sym_bitor, + ACTIONS(6637), 1, + anon_sym_bitand, + ACTIONS(7337), 1, + anon_sym_RPAREN, + STATE(2996), 1, + sym_argument_list, + ACTIONS(6585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6607), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6609), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6613), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6615), 2, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(4547), 27, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [122935] = 25, + anon_sym_and, + ACTIONS(6619), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6629), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6623), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6625), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [156534] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, + ACTIONS(5497), 1, anon_sym_DOT, - ACTIONS(4816), 1, + ACTIONS(5499), 1, anon_sym_DASH_GT, - ACTIONS(5747), 1, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, anon_sym_SLASH, - ACTIONS(5753), 1, + ACTIONS(6617), 1, anon_sym_PIPE, - ACTIONS(5757), 1, + ACTIONS(6621), 1, anon_sym_AMP, - ACTIONS(5763), 1, + ACTIONS(6627), 1, anon_sym_GT_EQ, - ACTIONS(5767), 1, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, + ACTIONS(6635), 1, anon_sym_bitor, - ACTIONS(5771), 1, + ACTIONS(6637), 1, anon_sym_bitand, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - STATE(2475), 1, + ACTIONS(7339), 1, + anon_sym_COMMA, + STATE(2996), 1, sym_argument_list, - ACTIONS(5723), 2, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, + ACTIONS(6607), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5745), 2, + ACTIONS(6609), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5749), 2, + ACTIONS(6613), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(5751), 2, + ACTIONS(6615), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(5755), 2, + ACTIONS(6619), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(5765), 2, + ACTIONS(6629), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6215), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(5759), 3, + ACTIONS(6623), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5761), 3, + ACTIONS(6625), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [123023] = 3, + [156621] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4443), 9, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(3115), 2, + anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(4445), 27, - anon_sym_AMP, + ACTIONS(3113), 33, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, anon_sym_static, anon_sym_register, anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, anon_sym_virtual, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [123067] = 10, + anon_sym_typename, + anon_sym_template, + [156664] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(5707), 1, - anon_sym___attribute__, - ACTIONS(5709), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5711), 1, - anon_sym___declspec, - ACTIONS(5719), 1, - anon_sym_virtual, - ACTIONS(5483), 4, - anon_sym_AMP, - anon_sym___based, - sym_identifier, - anon_sym_operator, - ACTIONS(5705), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - ACTIONS(5485), 7, + ACTIONS(4978), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, + ACTIONS(5493), 1, + anon_sym_LBRACK, + ACTIONS(6066), 1, + anon_sym_DOT, + ACTIONS(6068), 1, + anon_sym_DASH_GT, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7115), 1, + anon_sym_SLASH, + ACTIONS(7121), 1, + anon_sym_PIPE, + ACTIONS(7125), 1, + anon_sym_AMP, + ACTIONS(7131), 1, + anon_sym_GT_EQ, + ACTIONS(7137), 1, + anon_sym_QMARK, + ACTIONS(7139), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7141), 1, + anon_sym_bitor, + ACTIONS(7143), 1, + anon_sym_bitand, + ACTIONS(7341), 1, anon_sym_COLON, - ACTIONS(5713), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(3653), 8, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual, - aux_sym__declaration_specifiers_repeat1, - [123125] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4537), 9, - anon_sym_COMMA, - anon_sym_LPAREN2, + STATE(2996), 1, + sym_argument_list, + ACTIONS(6585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7111), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7113), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7117), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7119), 2, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(4539), 27, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [123169] = 3, + anon_sym_and, + ACTIONS(7123), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7133), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7127), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7129), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [156751] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4766), 11, + ACTIONS(5655), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -333330,7 +436102,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(4764), 25, + ACTIONS(5653), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -333342,7 +436114,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_LT, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -333356,208 +436127,226 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_GT, anon_sym_GT2, - [123213] = 14, + [156794] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, - anon_sym_LPAREN2, - ACTIONS(4798), 1, - anon_sym_LBRACK, - ACTIONS(4814), 1, - anon_sym_DOT, - ACTIONS(4816), 1, - anon_sym_DASH_GT, - ACTIONS(5914), 1, - anon_sym_SLASH, - ACTIONS(5938), 1, - anon_sym_LT_EQ_GT, - STATE(2475), 1, - sym_argument_list, - ACTIONS(5723), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5910), 2, + ACTIONS(5651), 11, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5912), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5932), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4993), 5, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(4991), 16, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(5649), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, + anon_sym_LT_LT, + anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - [123279] = 26, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [156837] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, + ACTIONS(5497), 1, anon_sym_DOT, - ACTIONS(4816), 1, + ACTIONS(5499), 1, anon_sym_DASH_GT, - ACTIONS(5747), 1, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, anon_sym_SLASH, - ACTIONS(5753), 1, + ACTIONS(6617), 1, anon_sym_PIPE, - ACTIONS(5757), 1, + ACTIONS(6621), 1, anon_sym_AMP, - ACTIONS(5763), 1, + ACTIONS(6627), 1, anon_sym_GT_EQ, - ACTIONS(5767), 1, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, + ACTIONS(6635), 1, anon_sym_bitor, - ACTIONS(5771), 1, + ACTIONS(6637), 1, anon_sym_bitand, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - ACTIONS(5964), 1, - anon_sym_COMMA, - ACTIONS(6217), 1, - anon_sym_RPAREN, - STATE(2475), 1, + ACTIONS(7343), 1, + anon_sym_SEMI, + STATE(2996), 1, sym_argument_list, - ACTIONS(5723), 2, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, + ACTIONS(6607), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5745), 2, + ACTIONS(6609), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5749), 2, + ACTIONS(6613), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(5751), 2, + ACTIONS(6615), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(5755), 2, + ACTIONS(6619), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(5765), 2, + ACTIONS(6629), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5759), 3, + ACTIONS(6623), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5761), 3, + ACTIONS(6625), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [123369] = 3, + [156924] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4369), 9, - anon_sym_COMMA, + ACTIONS(4978), 1, anon_sym_LPAREN2, + ACTIONS(5493), 1, + anon_sym_LBRACK, + ACTIONS(5497), 1, + anon_sym_DOT, + ACTIONS(5499), 1, + anon_sym_DASH_GT, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, + anon_sym_SLASH, + ACTIONS(6617), 1, + anon_sym_PIPE, + ACTIONS(6621), 1, + anon_sym_AMP, + ACTIONS(6627), 1, + anon_sym_GT_EQ, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6635), 1, + anon_sym_bitor, + ACTIONS(6637), 1, + anon_sym_bitand, + ACTIONS(7345), 1, + anon_sym_SEMI, + STATE(2996), 1, + sym_argument_list, + ACTIONS(6585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6607), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6609), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6613), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6615), 2, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(4371), 27, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [123413] = 3, + anon_sym_and, + ACTIONS(6619), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6629), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6623), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6625), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [157011] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4596), 9, + ACTIONS(7263), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5204), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(5206), 22, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(4598), 27, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [123457] = 3, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [157056] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4413), 9, + ACTIONS(6598), 1, + sym_primitive_type, + ACTIONS(7347), 1, + sym_identifier, + STATE(3682), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6596), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(4807), 9, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, @@ -333567,262 +436356,299 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, - ACTIONS(4415), 27, + ACTIONS(4809), 19, anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - sym_identifier, sym_auto, anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_virtual, - anon_sym_operator, anon_sym_try, anon_sym_requires, - [123501] = 3, + [157107] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4461), 9, - anon_sym_COMMA, + ACTIONS(4978), 1, anon_sym_LPAREN2, + ACTIONS(5493), 1, + anon_sym_LBRACK, + ACTIONS(5497), 1, + anon_sym_DOT, + ACTIONS(5499), 1, + anon_sym_DASH_GT, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, + anon_sym_SLASH, + ACTIONS(6617), 1, + anon_sym_PIPE, + ACTIONS(6621), 1, + anon_sym_AMP, + ACTIONS(6627), 1, + anon_sym_GT_EQ, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6635), 1, + anon_sym_bitor, + ACTIONS(6637), 1, + anon_sym_bitand, + ACTIONS(7349), 1, + anon_sym_SEMI, + STATE(2996), 1, + sym_argument_list, + ACTIONS(6585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6607), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6609), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6613), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6615), 2, anon_sym_AMP_AMP, - anon_sym_SEMI, + anon_sym_and, + ACTIONS(6619), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6629), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6623), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6625), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [157194] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3386), 2, + anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(4463), 27, - anon_sym_AMP, + ACTIONS(3384), 33, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, anon_sym_static, anon_sym_register, anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, anon_sym_virtual, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [123545] = 23, + anon_sym_typename, + anon_sym_template, + [157237] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4385), 1, + ACTIONS(4345), 1, + anon_sym_RBRACK, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(5211), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(5217), 1, + ACTIONS(5497), 1, anon_sym_DOT, - ACTIONS(5219), 1, + ACTIONS(5499), 1, anon_sym_DASH_GT, - ACTIONS(5805), 1, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6724), 1, anon_sym_SLASH, - ACTIONS(5811), 1, + ACTIONS(6730), 1, anon_sym_PIPE, - ACTIONS(5815), 1, + ACTIONS(6734), 1, anon_sym_AMP, - ACTIONS(5821), 1, - anon_sym_LT_LT, - ACTIONS(5823), 1, - anon_sym_GT_GT, - ACTIONS(5827), 1, + ACTIONS(6740), 1, + anon_sym_GT_EQ, + ACTIONS(6746), 1, + anon_sym_QMARK, + ACTIONS(6748), 1, anon_sym_LT_EQ_GT, - ACTIONS(5829), 1, + ACTIONS(6750), 1, anon_sym_bitor, - ACTIONS(5831), 1, + ACTIONS(6752), 1, anon_sym_bitand, - STATE(3010), 1, + STATE(2996), 1, sym_argument_list, - ACTIONS(5801), 2, + ACTIONS(6585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6720), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5803), 2, + ACTIONS(6722), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5807), 2, + ACTIONS(6726), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(5809), 2, + ACTIONS(6728), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(5813), 2, + ACTIONS(6732), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(5833), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5817), 3, + ACTIONS(6742), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6736), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(4975), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_GT2, - ACTIONS(5819), 4, + ACTIONS(6738), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [157324] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5593), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [123629] = 23, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(2960), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [157367] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, + ACTIONS(5497), 1, anon_sym_DOT, - ACTIONS(4816), 1, + ACTIONS(5499), 1, anon_sym_DASH_GT, - ACTIONS(5914), 1, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, anon_sym_SLASH, - ACTIONS(5920), 1, + ACTIONS(6617), 1, anon_sym_PIPE, - ACTIONS(5924), 1, + ACTIONS(6621), 1, anon_sym_AMP, - ACTIONS(5930), 1, + ACTIONS(6627), 1, anon_sym_GT_EQ, - ACTIONS(5938), 1, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, anon_sym_LT_EQ_GT, - ACTIONS(5940), 1, + ACTIONS(6635), 1, anon_sym_bitor, - ACTIONS(5942), 1, + ACTIONS(6637), 1, anon_sym_bitand, - STATE(2475), 1, + ACTIONS(7351), 1, + anon_sym_RPAREN, + STATE(2996), 1, sym_argument_list, - ACTIONS(5723), 2, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5910), 2, + ACTIONS(6607), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5912), 2, + ACTIONS(6609), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5916), 2, + ACTIONS(6613), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(5918), 2, + ACTIONS(6615), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(5922), 2, + ACTIONS(6619), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(5932), 2, + ACTIONS(6629), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5926), 3, + ACTIONS(6623), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5928), 3, + ACTIONS(6625), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(5003), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_QMARK, - [123713] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4393), 9, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(4395), 27, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [123757] = 11, + [157454] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4385), 1, - anon_sym_LPAREN2, - ACTIONS(5211), 1, - anon_sym_LBRACK, - ACTIONS(5217), 1, - anon_sym_DOT, - ACTIONS(5219), 1, - anon_sym_DASH_GT, - ACTIONS(5805), 1, - anon_sym_SLASH, - STATE(3010), 1, - sym_argument_list, - ACTIONS(5803), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5833), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4883), 9, + ACTIONS(5619), 11, anon_sym_DASH, anon_sym_PLUS, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, @@ -333830,15 +436656,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_GT_GT, - ACTIONS(4881), 17, + anon_sym_DOT, + ACTIONS(5617), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_LT, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -333847,1025 +436678,1083 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, anon_sym_GT2, - [123817] = 26, + [157497] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, + ACTIONS(5497), 1, anon_sym_DOT, - ACTIONS(4816), 1, + ACTIONS(5499), 1, anon_sym_DASH_GT, - ACTIONS(5747), 1, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, anon_sym_SLASH, - ACTIONS(5753), 1, + ACTIONS(6617), 1, anon_sym_PIPE, - ACTIONS(5757), 1, + ACTIONS(6621), 1, anon_sym_AMP, - ACTIONS(5763), 1, + ACTIONS(6627), 1, anon_sym_GT_EQ, - ACTIONS(5767), 1, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, + ACTIONS(6635), 1, anon_sym_bitor, - ACTIONS(5771), 1, + ACTIONS(6637), 1, anon_sym_bitand, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - ACTIONS(5964), 1, - anon_sym_COMMA, - ACTIONS(6219), 1, - anon_sym_SEMI, - STATE(2475), 1, + ACTIONS(6811), 1, + anon_sym_RPAREN, + STATE(2996), 1, sym_argument_list, - ACTIONS(5723), 2, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, + ACTIONS(6607), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5745), 2, + ACTIONS(6609), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5749), 2, + ACTIONS(6613), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(5751), 2, + ACTIONS(6615), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(5755), 2, + ACTIONS(6619), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(5765), 2, + ACTIONS(6629), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5759), 3, + ACTIONS(6623), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5761), 3, + ACTIONS(6625), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [123907] = 25, + [157584] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4385), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(5211), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(5217), 1, + ACTIONS(6066), 1, anon_sym_DOT, - ACTIONS(5219), 1, + ACTIONS(6068), 1, anon_sym_DASH_GT, - ACTIONS(5797), 1, + ACTIONS(6605), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5805), 1, + ACTIONS(7115), 1, anon_sym_SLASH, - ACTIONS(5811), 1, + ACTIONS(7121), 1, anon_sym_PIPE, - ACTIONS(5815), 1, + ACTIONS(7125), 1, anon_sym_AMP, - ACTIONS(5821), 1, - anon_sym_LT_LT, - ACTIONS(5823), 1, - anon_sym_GT_GT, - ACTIONS(5825), 1, + ACTIONS(7131), 1, + anon_sym_GT_EQ, + ACTIONS(7137), 1, anon_sym_QMARK, - ACTIONS(5827), 1, + ACTIONS(7139), 1, anon_sym_LT_EQ_GT, - ACTIONS(5829), 1, + ACTIONS(7141), 1, anon_sym_bitor, - ACTIONS(5831), 1, + ACTIONS(7143), 1, anon_sym_bitand, - STATE(3010), 1, + ACTIONS(7353), 1, + anon_sym_COLON, + STATE(2996), 1, sym_argument_list, - ACTIONS(4893), 2, - anon_sym_COMMA, - anon_sym_GT2, - ACTIONS(5801), 2, + ACTIONS(6585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7111), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5803), 2, + ACTIONS(7113), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5807), 2, + ACTIONS(7117), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(5809), 2, + ACTIONS(7119), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(5813), 2, + ACTIONS(7123), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(5833), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5817), 3, + ACTIONS(7133), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7127), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5819), 4, + ACTIONS(7129), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [123995] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5713), 1, - anon_sym_const, - ACTIONS(5864), 1, - anon_sym_LPAREN2, - ACTIONS(5872), 1, - anon_sym_LBRACK, - ACTIONS(6175), 1, - anon_sym_STAR, - ACTIONS(6177), 1, - anon_sym_AMP_AMP, - ACTIONS(6179), 1, - anon_sym_AMP, - ACTIONS(6181), 1, - sym_auto, - ACTIONS(6183), 1, - anon_sym_decltype, - STATE(3362), 1, - sym_parameter_list, - STATE(3606), 1, - sym_decltype_auto, - STATE(4690), 1, - sym__function_declarator_seq, - STATE(4722), 1, - sym__abstract_declarator, - STATE(3886), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(4686), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(5731), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - ACTIONS(5862), 10, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [124067] = 3, + [157671] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4592), 9, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(3046), 2, + anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(4594), 27, - anon_sym_AMP, + ACTIONS(3044), 33, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, anon_sym_static, anon_sym_register, anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, anon_sym_virtual, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [124111] = 3, + anon_sym_typename, + anon_sym_template, + [157714] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4577), 9, - anon_sym_COMMA, + ACTIONS(4978), 1, anon_sym_LPAREN2, + ACTIONS(5493), 1, + anon_sym_LBRACK, + ACTIONS(5497), 1, + anon_sym_DOT, + ACTIONS(5499), 1, + anon_sym_DASH_GT, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, + anon_sym_SLASH, + ACTIONS(6617), 1, + anon_sym_PIPE, + ACTIONS(6621), 1, + anon_sym_AMP, + ACTIONS(6627), 1, + anon_sym_GT_EQ, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6635), 1, + anon_sym_bitor, + ACTIONS(6637), 1, + anon_sym_bitand, + ACTIONS(7355), 1, + anon_sym_SEMI, + STATE(2996), 1, + sym_argument_list, + ACTIONS(6585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6607), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6609), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6613), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6615), 2, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(4579), 27, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [124155] = 3, + anon_sym_and, + ACTIONS(6619), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6629), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6623), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6625), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [157801] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4569), 9, - anon_sym_COMMA, + ACTIONS(4978), 1, anon_sym_LPAREN2, + ACTIONS(5493), 1, + anon_sym_LBRACK, + ACTIONS(6066), 1, + anon_sym_DOT, + ACTIONS(6068), 1, + anon_sym_DASH_GT, + STATE(2996), 1, + sym_argument_list, + ACTIONS(6585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5489), 8, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5487), 20, + anon_sym_DOT_DOT_DOT, anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_COLON, - ACTIONS(4571), 27, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [124199] = 3, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + [157856] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4604), 9, - anon_sym_COMMA, + ACTIONS(4978), 1, anon_sym_LPAREN2, + ACTIONS(5493), 1, + anon_sym_LBRACK, + ACTIONS(6066), 1, + anon_sym_DOT, + ACTIONS(6068), 1, + anon_sym_DASH_GT, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7115), 1, + anon_sym_SLASH, + ACTIONS(7121), 1, + anon_sym_PIPE, + ACTIONS(7125), 1, + anon_sym_AMP, + ACTIONS(7131), 1, + anon_sym_GT_EQ, + ACTIONS(7137), 1, + anon_sym_QMARK, + ACTIONS(7139), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7141), 1, + anon_sym_bitor, + ACTIONS(7143), 1, + anon_sym_bitand, + ACTIONS(7357), 1, + anon_sym_COLON, + STATE(2996), 1, + sym_argument_list, + ACTIONS(6585), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7111), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7113), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7117), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7119), 2, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(4606), 27, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [124243] = 26, + anon_sym_and, + ACTIONS(7123), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7133), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7127), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7129), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [157943] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, + ACTIONS(5497), 1, anon_sym_DOT, - ACTIONS(4816), 1, + ACTIONS(5499), 1, anon_sym_DASH_GT, - ACTIONS(5747), 1, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, anon_sym_SLASH, - ACTIONS(5753), 1, + ACTIONS(6617), 1, anon_sym_PIPE, - ACTIONS(5757), 1, + ACTIONS(6621), 1, anon_sym_AMP, - ACTIONS(5763), 1, + ACTIONS(6627), 1, anon_sym_GT_EQ, - ACTIONS(5767), 1, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, + ACTIONS(6635), 1, anon_sym_bitor, - ACTIONS(5771), 1, + ACTIONS(6637), 1, anon_sym_bitand, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - ACTIONS(5964), 1, - anon_sym_COMMA, - ACTIONS(6221), 1, + ACTIONS(7359), 1, anon_sym_SEMI, - STATE(2475), 1, + STATE(2996), 1, sym_argument_list, - ACTIONS(5723), 2, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, + ACTIONS(6607), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5745), 2, + ACTIONS(6609), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5749), 2, + ACTIONS(6613), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(5751), 2, + ACTIONS(6615), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(5755), 2, + ACTIONS(6619), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(5765), 2, + ACTIONS(6629), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5759), 3, + ACTIONS(6623), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5761), 3, + ACTIONS(6625), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [124333] = 3, + [158030] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4557), 9, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(3042), 2, + anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(4559), 27, - anon_sym_AMP, + ACTIONS(3040), 33, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, anon_sym_static, anon_sym_register, anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, anon_sym_virtual, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [124377] = 3, + anon_sym_typename, + anon_sym_template, + [158073] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4541), 9, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(3038), 2, + anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(4543), 27, - anon_sym_AMP, + ACTIONS(3036), 33, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, anon_sym_static, anon_sym_register, anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, anon_sym_virtual, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [124421] = 26, + anon_sym_typename, + anon_sym_template, + [158116] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, + ACTIONS(6066), 1, anon_sym_DOT, - ACTIONS(4816), 1, + ACTIONS(6068), 1, anon_sym_DASH_GT, - ACTIONS(5747), 1, - anon_sym_SLASH, - ACTIONS(5753), 1, - anon_sym_PIPE, - ACTIONS(5757), 1, - anon_sym_AMP, - ACTIONS(5763), 1, - anon_sym_GT_EQ, - ACTIONS(5767), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, - anon_sym_bitor, - ACTIONS(5771), 1, - anon_sym_bitand, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - ACTIONS(5964), 1, - anon_sym_COMMA, - ACTIONS(6223), 1, - anon_sym_SEMI, - STATE(2475), 1, + STATE(2996), 1, sym_argument_list, - ACTIONS(5723), 2, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, + ACTIONS(5559), 8, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5745), 2, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5557), 20, + anon_sym_DOT_DOT_DOT, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5749), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5751), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5755), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(5765), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5759), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5761), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [124511] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4385), 1, - anon_sym_LPAREN2, - ACTIONS(5211), 1, - anon_sym_LBRACK, - ACTIONS(5217), 1, - anon_sym_DOT, - ACTIONS(5219), 1, - anon_sym_DASH_GT, - ACTIONS(5805), 1, - anon_sym_SLASH, - ACTIONS(5811), 1, - anon_sym_PIPE, - ACTIONS(5815), 1, - anon_sym_AMP, - ACTIONS(5821), 1, + anon_sym_GT_EQ, anon_sym_LT_LT, - ACTIONS(5823), 1, anon_sym_GT_GT, - ACTIONS(5827), 1, + anon_sym_COLON, + anon_sym_QMARK, anon_sym_LT_EQ_GT, - ACTIONS(5829), 1, + anon_sym_or, + anon_sym_and, anon_sym_bitor, - ACTIONS(5831), 1, + anon_sym_xor, anon_sym_bitand, - STATE(3010), 1, - sym_argument_list, - ACTIONS(5801), 2, + anon_sym_not_eq, + [158171] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5615), 11, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5803), 2, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(5613), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5807), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5809), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5813), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(5833), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5817), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(4818), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + anon_sym_LT_LT, + anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, anon_sym_GT2, - ACTIONS(5819), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [124595] = 26, + [158214] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, + ACTIONS(5497), 1, anon_sym_DOT, - ACTIONS(4816), 1, + ACTIONS(5499), 1, anon_sym_DASH_GT, - ACTIONS(5747), 1, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, anon_sym_SLASH, - ACTIONS(5753), 1, + ACTIONS(6617), 1, anon_sym_PIPE, - ACTIONS(5757), 1, + ACTIONS(6621), 1, anon_sym_AMP, - ACTIONS(5763), 1, + ACTIONS(6627), 1, anon_sym_GT_EQ, - ACTIONS(5767), 1, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, + ACTIONS(6635), 1, anon_sym_bitor, - ACTIONS(5771), 1, + ACTIONS(6637), 1, anon_sym_bitand, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - ACTIONS(5964), 1, - anon_sym_COMMA, - ACTIONS(6225), 1, + ACTIONS(7361), 1, anon_sym_SEMI, - STATE(2475), 1, + STATE(2996), 1, sym_argument_list, - ACTIONS(5723), 2, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, + ACTIONS(6607), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5745), 2, + ACTIONS(6609), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5749), 2, + ACTIONS(6613), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(5751), 2, + ACTIONS(6615), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(5755), 2, + ACTIONS(6619), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(5765), 2, + ACTIONS(6629), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5759), 3, + ACTIONS(6623), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5761), 3, + ACTIONS(6625), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [124685] = 25, + [158301] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(4306), 1, + anon_sym_RBRACK, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, + ACTIONS(5497), 1, anon_sym_DOT, - ACTIONS(4816), 1, + ACTIONS(5499), 1, anon_sym_DASH_GT, - ACTIONS(5747), 1, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6724), 1, anon_sym_SLASH, - ACTIONS(5753), 1, + ACTIONS(6730), 1, anon_sym_PIPE, - ACTIONS(5757), 1, + ACTIONS(6734), 1, anon_sym_AMP, - ACTIONS(5763), 1, + ACTIONS(6740), 1, anon_sym_GT_EQ, - ACTIONS(5767), 1, + ACTIONS(6746), 1, + anon_sym_QMARK, + ACTIONS(6748), 1, anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, + ACTIONS(6750), 1, anon_sym_bitor, - ACTIONS(5771), 1, + ACTIONS(6752), 1, anon_sym_bitand, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - ACTIONS(6227), 1, - anon_sym_RPAREN, - STATE(2475), 1, + STATE(2996), 1, sym_argument_list, - ACTIONS(5723), 2, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, + ACTIONS(6720), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5745), 2, + ACTIONS(6722), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5749), 2, + ACTIONS(6726), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(5751), 2, + ACTIONS(6728), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(5755), 2, + ACTIONS(6732), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(5765), 2, + ACTIONS(6742), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5759), 3, + ACTIONS(6736), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5761), 3, + ACTIONS(6738), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [124772] = 25, + [158388] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, + ACTIONS(5497), 1, anon_sym_DOT, - ACTIONS(4816), 1, + ACTIONS(5499), 1, anon_sym_DASH_GT, - ACTIONS(5747), 1, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, anon_sym_SLASH, - ACTIONS(5753), 1, + ACTIONS(6617), 1, anon_sym_PIPE, - ACTIONS(5757), 1, + ACTIONS(6621), 1, anon_sym_AMP, - ACTIONS(5763), 1, + ACTIONS(6627), 1, anon_sym_GT_EQ, - ACTIONS(5767), 1, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, + ACTIONS(6635), 1, anon_sym_bitor, - ACTIONS(5771), 1, + ACTIONS(6637), 1, anon_sym_bitand, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - ACTIONS(6229), 1, + ACTIONS(7363), 1, anon_sym_SEMI, - STATE(2475), 1, + STATE(2996), 1, sym_argument_list, - ACTIONS(5723), 2, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, + ACTIONS(6607), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5745), 2, + ACTIONS(6609), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5749), 2, + ACTIONS(6613), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(5751), 2, + ACTIONS(6615), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(5755), 2, + ACTIONS(6619), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(5765), 2, + ACTIONS(6629), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5759), 3, + ACTIONS(6623), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5761), 3, + ACTIONS(6625), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [124859] = 25, + [158475] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(5563), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(5561), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(4798), 1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [158518] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4325), 1, + anon_sym_RBRACK, + ACTIONS(4978), 1, + anon_sym_LPAREN2, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, + ACTIONS(5497), 1, anon_sym_DOT, - ACTIONS(4816), 1, + ACTIONS(5499), 1, anon_sym_DASH_GT, - ACTIONS(5747), 1, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6724), 1, anon_sym_SLASH, - ACTIONS(5753), 1, + ACTIONS(6730), 1, anon_sym_PIPE, - ACTIONS(5757), 1, + ACTIONS(6734), 1, anon_sym_AMP, - ACTIONS(5763), 1, + ACTIONS(6740), 1, anon_sym_GT_EQ, - ACTIONS(5767), 1, + ACTIONS(6746), 1, + anon_sym_QMARK, + ACTIONS(6748), 1, anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, + ACTIONS(6750), 1, anon_sym_bitor, - ACTIONS(5771), 1, + ACTIONS(6752), 1, anon_sym_bitand, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - ACTIONS(6231), 1, - anon_sym_SEMI, - STATE(2475), 1, + STATE(2996), 1, sym_argument_list, - ACTIONS(5723), 2, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, + ACTIONS(6720), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5745), 2, + ACTIONS(6722), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5749), 2, + ACTIONS(6726), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(5751), 2, + ACTIONS(6728), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(5755), 2, + ACTIONS(6732), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(5765), 2, + ACTIONS(6742), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5759), 3, + ACTIONS(6736), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5761), 3, + ACTIONS(6738), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [124946] = 25, + [158605] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(4282), 1, + anon_sym_RBRACK, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(5286), 1, + ACTIONS(5497), 1, anon_sym_DOT, - ACTIONS(5288), 1, + ACTIONS(5499), 1, anon_sym_DASH_GT, - ACTIONS(5773), 1, + ACTIONS(6605), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(6237), 1, + ACTIONS(6724), 1, anon_sym_SLASH, - ACTIONS(6243), 1, + ACTIONS(6730), 1, anon_sym_PIPE, - ACTIONS(6247), 1, + ACTIONS(6734), 1, anon_sym_AMP, - ACTIONS(6253), 1, + ACTIONS(6740), 1, anon_sym_GT_EQ, - ACTIONS(6257), 1, - anon_sym_COLON, - ACTIONS(6259), 1, + ACTIONS(6746), 1, anon_sym_QMARK, - ACTIONS(6261), 1, + ACTIONS(6748), 1, anon_sym_LT_EQ_GT, - ACTIONS(6263), 1, + ACTIONS(6750), 1, anon_sym_bitor, - ACTIONS(6265), 1, + ACTIONS(6752), 1, anon_sym_bitand, - STATE(2475), 1, + STATE(2996), 1, sym_argument_list, - ACTIONS(5723), 2, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6233), 2, + ACTIONS(6720), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6235), 2, + ACTIONS(6722), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6239), 2, + ACTIONS(6726), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(6241), 2, + ACTIONS(6728), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(6245), 2, + ACTIONS(6732), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(6255), 2, + ACTIONS(6742), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6249), 3, + ACTIONS(6736), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(6251), 3, + ACTIONS(6738), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [125033] = 25, + [158692] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(5611), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(5609), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(4798), 1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [158735] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4978), 1, + anon_sym_LPAREN2, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, + ACTIONS(5497), 1, anon_sym_DOT, - ACTIONS(4816), 1, + ACTIONS(5499), 1, anon_sym_DASH_GT, - ACTIONS(5773), 1, + ACTIONS(6605), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5914), 1, + ACTIONS(6611), 1, anon_sym_SLASH, - ACTIONS(5920), 1, + ACTIONS(6617), 1, anon_sym_PIPE, - ACTIONS(5924), 1, + ACTIONS(6621), 1, anon_sym_AMP, - ACTIONS(5930), 1, + ACTIONS(6627), 1, anon_sym_GT_EQ, - ACTIONS(5936), 1, + ACTIONS(6631), 1, anon_sym_QMARK, - ACTIONS(5938), 1, + ACTIONS(6633), 1, anon_sym_LT_EQ_GT, - ACTIONS(5940), 1, + ACTIONS(6635), 1, anon_sym_bitor, - ACTIONS(5942), 1, + ACTIONS(6637), 1, anon_sym_bitand, - ACTIONS(6267), 1, - anon_sym_RBRACK, - STATE(2475), 1, + ACTIONS(7365), 1, + anon_sym_RPAREN, + STATE(2996), 1, sym_argument_list, - ACTIONS(5723), 2, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5910), 2, + ACTIONS(6607), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5912), 2, + ACTIONS(6609), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5916), 2, + ACTIONS(6613), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(5918), 2, + ACTIONS(6615), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(5922), 2, + ACTIONS(6619), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(5932), 2, + ACTIONS(6629), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5926), 3, + ACTIONS(6623), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5928), 3, + ACTIONS(6625), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [125120] = 9, + [158822] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, - anon_sym_LPAREN2, - ACTIONS(4798), 1, - anon_sym_LBRACK, - ACTIONS(5286), 1, - anon_sym_DOT, - ACTIONS(5288), 1, - anon_sym_DASH_GT, - STATE(2475), 1, - sym_argument_list, - ACTIONS(5723), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5013), 8, + ACTIONS(3236), 2, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(3234), 33, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_typename, + anon_sym_template, + [158865] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5569), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(5011), 20, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(5567), 24, anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -334873,10 +437762,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_COLON, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -334885,870 +437772,728 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - [125175] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4166), 1, - anon_sym_LPAREN2, - ACTIONS(4798), 1, - anon_sym_LBRACK, - ACTIONS(4814), 1, - anon_sym_DOT, - ACTIONS(4816), 1, - anon_sym_DASH_GT, - ACTIONS(5747), 1, - anon_sym_SLASH, - ACTIONS(5753), 1, - anon_sym_PIPE, - ACTIONS(5757), 1, - anon_sym_AMP, - ACTIONS(5763), 1, - anon_sym_GT_EQ, - ACTIONS(5767), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, - anon_sym_bitor, - ACTIONS(5771), 1, - anon_sym_bitand, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - ACTIONS(6269), 1, - anon_sym_RPAREN, - STATE(2475), 1, - sym_argument_list, - ACTIONS(5723), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5745), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5749), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5751), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5755), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5765), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5759), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5761), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [125262] = 25, + anon_sym_DASH_GT, + anon_sym_GT2, + [158908] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(4292), 1, + anon_sym_RBRACK, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(5286), 1, + ACTIONS(5497), 1, anon_sym_DOT, - ACTIONS(5288), 1, + ACTIONS(5499), 1, anon_sym_DASH_GT, - ACTIONS(5773), 1, + ACTIONS(6605), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(6237), 1, + ACTIONS(6724), 1, anon_sym_SLASH, - ACTIONS(6243), 1, + ACTIONS(6730), 1, anon_sym_PIPE, - ACTIONS(6247), 1, + ACTIONS(6734), 1, anon_sym_AMP, - ACTIONS(6253), 1, + ACTIONS(6740), 1, anon_sym_GT_EQ, - ACTIONS(6259), 1, + ACTIONS(6746), 1, anon_sym_QMARK, - ACTIONS(6261), 1, + ACTIONS(6748), 1, anon_sym_LT_EQ_GT, - ACTIONS(6263), 1, + ACTIONS(6750), 1, anon_sym_bitor, - ACTIONS(6265), 1, + ACTIONS(6752), 1, anon_sym_bitand, - ACTIONS(6271), 1, - anon_sym_COLON, - STATE(2475), 1, + STATE(2996), 1, sym_argument_list, - ACTIONS(5723), 2, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6233), 2, + ACTIONS(6720), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6235), 2, + ACTIONS(6722), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6239), 2, + ACTIONS(6726), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(6241), 2, + ACTIONS(6728), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(6245), 2, + ACTIONS(6732), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(6255), 2, + ACTIONS(6742), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6249), 3, + ACTIONS(6736), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(6251), 3, + ACTIONS(6738), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [125349] = 3, + [158995] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5435), 11, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, + ACTIONS(2946), 2, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(5433), 24, - anon_sym_AMP, + ACTIONS(2944), 33, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, anon_sym_static, anon_sym_register, anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, sym_identifier, + sym_auto, anon_sym_decltype, anon_sym_virtual, - anon_sym_explicit, + anon_sym_typename, anon_sym_template, - anon_sym_operator, - [125392] = 25, + [159038] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, + ACTIONS(5497), 1, anon_sym_DOT, - ACTIONS(4816), 1, + ACTIONS(5499), 1, anon_sym_DASH_GT, - ACTIONS(5747), 1, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, anon_sym_SLASH, - ACTIONS(5753), 1, + ACTIONS(6617), 1, anon_sym_PIPE, - ACTIONS(5757), 1, + ACTIONS(6621), 1, anon_sym_AMP, - ACTIONS(5763), 1, + ACTIONS(6627), 1, anon_sym_GT_EQ, - ACTIONS(5767), 1, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, + ACTIONS(6635), 1, anon_sym_bitor, - ACTIONS(5771), 1, + ACTIONS(6637), 1, anon_sym_bitand, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - ACTIONS(6273), 1, + ACTIONS(7367), 1, anon_sym_SEMI, - STATE(2475), 1, + STATE(2996), 1, sym_argument_list, - ACTIONS(5723), 2, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, + ACTIONS(6607), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5745), 2, + ACTIONS(6609), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5749), 2, + ACTIONS(6613), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(5751), 2, + ACTIONS(6615), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(5755), 2, + ACTIONS(6619), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(5765), 2, + ACTIONS(6629), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5759), 3, + ACTIONS(6623), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5761), 3, + ACTIONS(6625), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [125479] = 25, + [159125] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, + ACTIONS(5497), 1, anon_sym_DOT, - ACTIONS(4816), 1, + ACTIONS(5499), 1, anon_sym_DASH_GT, - ACTIONS(5747), 1, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, anon_sym_SLASH, - ACTIONS(5753), 1, + ACTIONS(6617), 1, anon_sym_PIPE, - ACTIONS(5757), 1, + ACTIONS(6621), 1, anon_sym_AMP, - ACTIONS(5763), 1, + ACTIONS(6627), 1, anon_sym_GT_EQ, - ACTIONS(5767), 1, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, + ACTIONS(6635), 1, anon_sym_bitor, - ACTIONS(5771), 1, + ACTIONS(6637), 1, anon_sym_bitand, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - ACTIONS(6275), 1, + ACTIONS(7369), 1, anon_sym_SEMI, - STATE(2475), 1, + STATE(2996), 1, sym_argument_list, - ACTIONS(5723), 2, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, + ACTIONS(6607), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5745), 2, + ACTIONS(6609), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5749), 2, + ACTIONS(6613), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(5751), 2, + ACTIONS(6615), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(5755), 2, + ACTIONS(6619), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(5765), 2, + ACTIONS(6629), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5759), 3, + ACTIONS(6623), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5761), 3, + ACTIONS(6625), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [125566] = 25, + [159212] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(3734), 1, - anon_sym_RBRACK, - ACTIONS(4166), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, + ACTIONS(6066), 1, anon_sym_DOT, - ACTIONS(4816), 1, + ACTIONS(6068), 1, anon_sym_DASH_GT, - ACTIONS(5773), 1, + ACTIONS(6605), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5914), 1, + ACTIONS(7115), 1, anon_sym_SLASH, - ACTIONS(5920), 1, + ACTIONS(7121), 1, anon_sym_PIPE, - ACTIONS(5924), 1, + ACTIONS(7125), 1, anon_sym_AMP, - ACTIONS(5930), 1, + ACTIONS(7131), 1, anon_sym_GT_EQ, - ACTIONS(5936), 1, + ACTIONS(7137), 1, anon_sym_QMARK, - ACTIONS(5938), 1, + ACTIONS(7139), 1, anon_sym_LT_EQ_GT, - ACTIONS(5940), 1, + ACTIONS(7141), 1, anon_sym_bitor, - ACTIONS(5942), 1, + ACTIONS(7143), 1, anon_sym_bitand, - STATE(2475), 1, + ACTIONS(7371), 1, + anon_sym_COLON, + STATE(2996), 1, sym_argument_list, - ACTIONS(5723), 2, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5910), 2, + ACTIONS(7111), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5912), 2, + ACTIONS(7113), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5916), 2, + ACTIONS(7117), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(5918), 2, + ACTIONS(7119), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(5922), 2, + ACTIONS(7123), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(5932), 2, + ACTIONS(7133), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5926), 3, + ACTIONS(7127), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5928), 3, + ACTIONS(7129), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [125653] = 25, + [159299] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, + ACTIONS(5497), 1, anon_sym_DOT, - ACTIONS(4816), 1, + ACTIONS(5499), 1, anon_sym_DASH_GT, - ACTIONS(5747), 1, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, anon_sym_SLASH, - ACTIONS(5753), 1, + ACTIONS(6617), 1, anon_sym_PIPE, - ACTIONS(5757), 1, + ACTIONS(6621), 1, anon_sym_AMP, - ACTIONS(5763), 1, + ACTIONS(6627), 1, anon_sym_GT_EQ, - ACTIONS(5767), 1, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, + ACTIONS(6635), 1, anon_sym_bitor, - ACTIONS(5771), 1, + ACTIONS(6637), 1, anon_sym_bitand, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - ACTIONS(6277), 1, + ACTIONS(7373), 1, anon_sym_SEMI, - STATE(2475), 1, + STATE(2996), 1, sym_argument_list, - ACTIONS(5723), 2, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, + ACTIONS(6607), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5745), 2, + ACTIONS(6609), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5749), 2, + ACTIONS(6613), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(5751), 2, + ACTIONS(6615), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(5755), 2, + ACTIONS(6619), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(5765), 2, + ACTIONS(6629), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5759), 3, + ACTIONS(6623), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5761), 3, + ACTIONS(6625), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [125740] = 25, + [159386] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, + ACTIONS(5497), 1, anon_sym_DOT, - ACTIONS(4816), 1, + ACTIONS(5499), 1, anon_sym_DASH_GT, - ACTIONS(5747), 1, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, anon_sym_SLASH, - ACTIONS(5753), 1, + ACTIONS(6617), 1, anon_sym_PIPE, - ACTIONS(5757), 1, + ACTIONS(6621), 1, anon_sym_AMP, - ACTIONS(5763), 1, + ACTIONS(6627), 1, anon_sym_GT_EQ, - ACTIONS(5767), 1, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, + ACTIONS(6635), 1, anon_sym_bitor, - ACTIONS(5771), 1, + ACTIONS(6637), 1, anon_sym_bitand, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - ACTIONS(6279), 1, + ACTIONS(7375), 1, anon_sym_SEMI, - STATE(2475), 1, + STATE(2996), 1, sym_argument_list, - ACTIONS(5723), 2, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, + ACTIONS(6607), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5745), 2, + ACTIONS(6609), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5749), 2, + ACTIONS(6613), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(5751), 2, + ACTIONS(6615), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(5755), 2, + ACTIONS(6619), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(5765), 2, + ACTIONS(6629), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5759), 3, + ACTIONS(6623), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5761), 3, + ACTIONS(6625), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [125827] = 25, + [159473] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(4225), 1, + anon_sym_RBRACK, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, + ACTIONS(5497), 1, anon_sym_DOT, - ACTIONS(4816), 1, + ACTIONS(5499), 1, anon_sym_DASH_GT, - ACTIONS(5747), 1, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6724), 1, anon_sym_SLASH, - ACTIONS(5753), 1, + ACTIONS(6730), 1, anon_sym_PIPE, - ACTIONS(5757), 1, + ACTIONS(6734), 1, anon_sym_AMP, - ACTIONS(5763), 1, + ACTIONS(6740), 1, anon_sym_GT_EQ, - ACTIONS(5767), 1, + ACTIONS(6746), 1, + anon_sym_QMARK, + ACTIONS(6748), 1, anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, + ACTIONS(6750), 1, anon_sym_bitor, - ACTIONS(5771), 1, + ACTIONS(6752), 1, anon_sym_bitand, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - ACTIONS(6281), 1, - anon_sym_SEMI, - STATE(2475), 1, + STATE(2996), 1, sym_argument_list, - ACTIONS(5723), 2, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, + ACTIONS(6720), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5745), 2, + ACTIONS(6722), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5749), 2, + ACTIONS(6726), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(5751), 2, + ACTIONS(6728), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(5755), 2, + ACTIONS(6732), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(5765), 2, + ACTIONS(6742), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5759), 3, + ACTIONS(6736), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5761), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [125914] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4905), 11, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(6738), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4903), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [125957] = 25, + [159560] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(3691), 1, - anon_sym_RBRACK, - ACTIONS(4166), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, + ACTIONS(5497), 1, anon_sym_DOT, - ACTIONS(4816), 1, + ACTIONS(5499), 1, anon_sym_DASH_GT, - ACTIONS(5773), 1, + ACTIONS(6605), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5914), 1, + ACTIONS(6611), 1, anon_sym_SLASH, - ACTIONS(5920), 1, + ACTIONS(6617), 1, anon_sym_PIPE, - ACTIONS(5924), 1, + ACTIONS(6621), 1, anon_sym_AMP, - ACTIONS(5930), 1, + ACTIONS(6627), 1, anon_sym_GT_EQ, - ACTIONS(5936), 1, + ACTIONS(6631), 1, anon_sym_QMARK, - ACTIONS(5938), 1, + ACTIONS(6633), 1, anon_sym_LT_EQ_GT, - ACTIONS(5940), 1, + ACTIONS(6635), 1, anon_sym_bitor, - ACTIONS(5942), 1, + ACTIONS(6637), 1, anon_sym_bitand, - STATE(2475), 1, + ACTIONS(7377), 1, + anon_sym_SEMI, + STATE(2996), 1, sym_argument_list, - ACTIONS(5723), 2, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5910), 2, + ACTIONS(6607), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5912), 2, + ACTIONS(6609), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5916), 2, + ACTIONS(6613), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(5918), 2, + ACTIONS(6615), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(5922), 2, + ACTIONS(6619), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(5932), 2, + ACTIONS(6629), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5926), 3, + ACTIONS(6623), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5928), 3, + ACTIONS(6625), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [126044] = 25, + [159647] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, + ACTIONS(5497), 1, anon_sym_DOT, - ACTIONS(4816), 1, + ACTIONS(5499), 1, anon_sym_DASH_GT, - ACTIONS(5747), 1, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6724), 1, anon_sym_SLASH, - ACTIONS(5753), 1, + ACTIONS(6730), 1, anon_sym_PIPE, - ACTIONS(5757), 1, + ACTIONS(6734), 1, anon_sym_AMP, - ACTIONS(5763), 1, + ACTIONS(6740), 1, anon_sym_GT_EQ, - ACTIONS(5767), 1, + ACTIONS(6746), 1, + anon_sym_QMARK, + ACTIONS(6748), 1, anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, + ACTIONS(6750), 1, anon_sym_bitor, - ACTIONS(5771), 1, + ACTIONS(6752), 1, anon_sym_bitand, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - ACTIONS(6283), 1, - anon_sym_SEMI, - STATE(2475), 1, + ACTIONS(7379), 1, + anon_sym_RBRACK, + STATE(2996), 1, sym_argument_list, - ACTIONS(5723), 2, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, + ACTIONS(6720), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5745), 2, + ACTIONS(6722), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5749), 2, + ACTIONS(6726), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(5751), 2, + ACTIONS(6728), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(5755), 2, + ACTIONS(6732), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(5765), 2, + ACTIONS(6742), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5759), 3, + ACTIONS(6736), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5761), 3, + ACTIONS(6738), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [126131] = 3, + [159734] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4929), 11, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(4978), 1, + anon_sym_LPAREN2, + ACTIONS(5493), 1, + anon_sym_LBRACK, + ACTIONS(6066), 1, + anon_sym_DOT, + ACTIONS(6068), 1, + anon_sym_DASH_GT, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7115), 1, anon_sym_SLASH, + ACTIONS(7121), 1, anon_sym_PIPE, + ACTIONS(7125), 1, anon_sym_AMP, - anon_sym_GT, + ACTIONS(7131), 1, anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4927), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACK, + ACTIONS(7137), 1, anon_sym_QMARK, + ACTIONS(7139), 1, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, + ACTIONS(7141), 1, anon_sym_bitor, - anon_sym_xor, + ACTIONS(7143), 1, anon_sym_bitand, - anon_sym_not_eq, + ACTIONS(7381), 1, + anon_sym_COLON, + STATE(2996), 1, + sym_argument_list, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [126174] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5367), 11, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(5365), 24, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_explicit, - anon_sym_template, - anon_sym_operator, - [126217] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4933), 11, + ACTIONS(7111), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4931), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(7113), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(7117), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7119), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7123), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(7133), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7127), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [126260] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4913), 11, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(7129), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4911), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + [159821] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2871), 1, + anon_sym_const, + ACTIONS(4572), 1, anon_sym_LPAREN2, + ACTIONS(5481), 1, + sym_auto, + ACTIONS(5483), 1, + anon_sym_decltype, + ACTIONS(6919), 1, + anon_sym_LBRACK, + ACTIONS(7275), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(7277), 1, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, + ACTIONS(7279), 1, + anon_sym_AMP, + STATE(3132), 1, + sym_decltype_auto, + STATE(3964), 1, + sym_parameter_list, + STATE(5457), 1, + sym__function_declarator_seq, + STATE(5696), 1, + sym__abstract_declarator, + STATE(4553), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(5452), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6540), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - [126303] = 3, + anon_sym_requires, + ACTIONS(6921), 10, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [159892] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4887), 11, + ACTIONS(5607), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -335760,7 +438505,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(4885), 24, + ACTIONS(5605), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -335785,272 +438530,533 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_GT, anon_sym_GT2, - [126346] = 25, + [159935] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, + ACTIONS(5497), 1, anon_sym_DOT, - ACTIONS(4816), 1, + ACTIONS(5499), 1, anon_sym_DASH_GT, - ACTIONS(5747), 1, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, anon_sym_SLASH, - ACTIONS(5753), 1, + ACTIONS(6617), 1, anon_sym_PIPE, - ACTIONS(5757), 1, + ACTIONS(6621), 1, anon_sym_AMP, - ACTIONS(5763), 1, + ACTIONS(6627), 1, anon_sym_GT_EQ, - ACTIONS(5767), 1, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, + ACTIONS(6635), 1, anon_sym_bitor, - ACTIONS(5771), 1, + ACTIONS(6637), 1, anon_sym_bitand, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - ACTIONS(6285), 1, - anon_sym_RPAREN, - STATE(2475), 1, + ACTIONS(7383), 1, + anon_sym_SEMI, + STATE(2996), 1, sym_argument_list, - ACTIONS(5723), 2, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, + ACTIONS(6607), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5745), 2, + ACTIONS(6609), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5749), 2, + ACTIONS(6613), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(5751), 2, + ACTIONS(6615), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(5755), 2, + ACTIONS(6619), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(5765), 2, + ACTIONS(6629), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5759), 3, + ACTIONS(6623), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5761), 3, + ACTIONS(6625), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [126433] = 25, + [160022] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(4317), 1, + anon_sym_RBRACK, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(5286), 1, + ACTIONS(5497), 1, anon_sym_DOT, - ACTIONS(5288), 1, + ACTIONS(5499), 1, anon_sym_DASH_GT, - ACTIONS(5773), 1, + ACTIONS(6605), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(6237), 1, + ACTIONS(6724), 1, anon_sym_SLASH, - ACTIONS(6243), 1, + ACTIONS(6730), 1, anon_sym_PIPE, - ACTIONS(6247), 1, + ACTIONS(6734), 1, anon_sym_AMP, - ACTIONS(6253), 1, + ACTIONS(6740), 1, anon_sym_GT_EQ, - ACTIONS(6259), 1, + ACTIONS(6746), 1, anon_sym_QMARK, - ACTIONS(6261), 1, + ACTIONS(6748), 1, anon_sym_LT_EQ_GT, - ACTIONS(6263), 1, + ACTIONS(6750), 1, anon_sym_bitor, - ACTIONS(6265), 1, + ACTIONS(6752), 1, anon_sym_bitand, - ACTIONS(6287), 1, - anon_sym_COLON, - STATE(2475), 1, + STATE(2996), 1, sym_argument_list, - ACTIONS(5723), 2, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6233), 2, + ACTIONS(6720), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6235), 2, + ACTIONS(6722), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6239), 2, + ACTIONS(6726), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(6241), 2, + ACTIONS(6728), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(6245), 2, + ACTIONS(6732), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(6255), 2, + ACTIONS(6742), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6249), 3, + ACTIONS(6736), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(6251), 3, + ACTIONS(6738), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [126520] = 25, + [160109] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(3596), 1, - anon_sym_RBRACK, - ACTIONS(4166), 1, + ACTIONS(4978), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, + ACTIONS(5497), 1, anon_sym_DOT, - ACTIONS(4816), 1, + ACTIONS(5499), 1, anon_sym_DASH_GT, - ACTIONS(5773), 1, + ACTIONS(6605), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5914), 1, + ACTIONS(6611), 1, anon_sym_SLASH, - ACTIONS(5920), 1, + ACTIONS(6617), 1, anon_sym_PIPE, - ACTIONS(5924), 1, + ACTIONS(6621), 1, anon_sym_AMP, - ACTIONS(5930), 1, + ACTIONS(6627), 1, anon_sym_GT_EQ, - ACTIONS(5936), 1, + ACTIONS(6631), 1, anon_sym_QMARK, - ACTIONS(5938), 1, + ACTIONS(6633), 1, anon_sym_LT_EQ_GT, - ACTIONS(5940), 1, + ACTIONS(6635), 1, anon_sym_bitor, - ACTIONS(5942), 1, + ACTIONS(6637), 1, anon_sym_bitand, - STATE(2475), 1, + ACTIONS(7385), 1, + anon_sym_SEMI, + STATE(2996), 1, sym_argument_list, - ACTIONS(5723), 2, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5910), 2, + ACTIONS(6607), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5912), 2, + ACTIONS(6609), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5916), 2, + ACTIONS(6613), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(5918), 2, + ACTIONS(6615), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(5922), 2, + ACTIONS(6619), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(5932), 2, + ACTIONS(6629), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5926), 3, + ACTIONS(6623), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5928), 3, + ACTIONS(6625), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [126607] = 25, + [160196] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(5062), 1, + anon_sym_SEMI, + ACTIONS(5153), 6, anon_sym_LPAREN2, - ACTIONS(4798), 1, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(5155), 27, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + [160240] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6351), 1, + anon_sym_AMP_AMP, + ACTIONS(6353), 1, + anon_sym_AMP, + ACTIONS(6363), 1, + anon_sym_noexcept, + ACTIONS(6365), 1, + anon_sym_throw, + ACTIONS(6409), 1, + anon_sym_LBRACK, + ACTIONS(6466), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6468), 1, + anon_sym_const, + ACTIONS(6530), 1, + anon_sym_requires, + ACTIONS(6807), 1, + anon_sym_DASH_GT, + STATE(5152), 1, + sym_ref_qualifier, + STATE(5436), 1, + sym_requires_clause, + STATE(5484), 1, + sym_trailing_return_type, + ACTIONS(6407), 2, + anon_sym_LPAREN2, + anon_sym_COLON, + ACTIONS(6528), 2, + anon_sym_final, + anon_sym_override, + STATE(4585), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(5229), 2, + sym_virtual_specifier, + aux_sym__function_declarator_seq_repeat2, + STATE(5459), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5462), 2, + sym_noexcept, + sym_throw_specifier, + ACTIONS(6470), 10, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [160316] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6351), 1, + anon_sym_AMP_AMP, + ACTIONS(6353), 1, + anon_sym_AMP, + ACTIONS(6363), 1, + anon_sym_noexcept, + ACTIONS(6365), 1, + anon_sym_throw, + ACTIONS(6466), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6468), 1, + anon_sym_const, + ACTIONS(6544), 1, + anon_sym_LBRACK, + ACTIONS(6833), 1, + anon_sym_DASH_GT, + ACTIONS(6835), 1, + anon_sym_requires, + STATE(5144), 1, + sym_ref_qualifier, + STATE(5360), 1, + sym_requires_clause, + STATE(5699), 1, + sym_trailing_return_type, + ACTIONS(4880), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(6542), 2, + anon_sym_LPAREN2, + anon_sym_COLON, + STATE(4585), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(5295), 2, + sym_virtual_specifier, + aux_sym__function_declarator_seq_repeat2, + STATE(5366), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5371), 2, + sym_noexcept, + sym_throw_specifier, + ACTIONS(6470), 10, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [160392] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6351), 1, + anon_sym_AMP_AMP, + ACTIONS(6353), 1, + anon_sym_AMP, + ACTIONS(6363), 1, + anon_sym_noexcept, + ACTIONS(6365), 1, + anon_sym_throw, + ACTIONS(6466), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6468), 1, + anon_sym_const, + ACTIONS(6530), 1, + anon_sym_requires, + ACTIONS(6544), 1, + anon_sym_LBRACK, + ACTIONS(6807), 1, + anon_sym_DASH_GT, + STATE(5148), 1, + sym_ref_qualifier, + STATE(5365), 1, + sym_requires_clause, + STATE(5476), 1, + sym_trailing_return_type, + ACTIONS(6528), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(6542), 2, + anon_sym_LPAREN2, + anon_sym_COLON, + STATE(4585), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(5277), 2, + sym_virtual_specifier, + aux_sym__function_declarator_seq_repeat2, + STATE(5364), 2, + sym_noexcept, + sym_throw_specifier, + STATE(5437), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(6470), 10, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [160468] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4978), 1, + anon_sym_LPAREN2, + ACTIONS(5493), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, + ACTIONS(5497), 1, anon_sym_DOT, - ACTIONS(4816), 1, + ACTIONS(5499), 1, anon_sym_DASH_GT, - ACTIONS(5747), 1, + ACTIONS(6605), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6611), 1, anon_sym_SLASH, - ACTIONS(5753), 1, + ACTIONS(6617), 1, anon_sym_PIPE, - ACTIONS(5757), 1, + ACTIONS(6621), 1, anon_sym_AMP, - ACTIONS(5763), 1, + ACTIONS(6627), 1, anon_sym_GT_EQ, - ACTIONS(5767), 1, + ACTIONS(6631), 1, + anon_sym_QMARK, + ACTIONS(6633), 1, anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, + ACTIONS(6635), 1, anon_sym_bitor, - ACTIONS(5771), 1, + ACTIONS(6637), 1, anon_sym_bitand, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - ACTIONS(6289), 1, - anon_sym_SEMI, - STATE(2475), 1, + STATE(2996), 1, sym_argument_list, - ACTIONS(5723), 2, + ACTIONS(6585), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, + ACTIONS(6607), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5745), 2, + ACTIONS(6609), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5749), 2, + ACTIONS(6613), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(5751), 2, + ACTIONS(6615), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(5755), 2, + ACTIONS(6619), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(5765), 2, + ACTIONS(6629), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5759), 3, + ACTIONS(6623), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(5761), 3, + ACTIONS(6625), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [126694] = 3, + [160552] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6351), 1, + anon_sym_AMP_AMP, + ACTIONS(6353), 1, + anon_sym_AMP, + ACTIONS(6363), 1, + anon_sym_noexcept, + ACTIONS(6365), 1, + anon_sym_throw, + ACTIONS(6409), 1, + anon_sym_LBRACK, + ACTIONS(6466), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6468), 1, + anon_sym_const, + ACTIONS(6833), 1, + anon_sym_DASH_GT, + ACTIONS(6835), 1, + anon_sym_requires, + STATE(5147), 1, + sym_ref_qualifier, + STATE(5422), 1, + sym_requires_clause, + STATE(5678), 1, + sym_trailing_return_type, + ACTIONS(4880), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(6407), 2, + anon_sym_LPAREN2, + anon_sym_COLON, + STATE(4585), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(5301), 2, + sym_virtual_specifier, + aux_sym__function_declarator_seq_repeat2, + STATE(5359), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5386), 2, + sym_noexcept, + sym_throw_specifier, + ACTIONS(6470), 10, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [160628] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4770), 11, + ACTIONS(7387), 1, + anon_sym_SEMI, + ACTIONS(5659), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(4768), 24, + ACTIONS(5657), 24, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -336059,7 +439065,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -336072,766 +439080,779 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - anon_sym_GT2, - [126737] = 17, + [160672] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1521), 1, - anon_sym_operator, - ACTIONS(6291), 1, - sym_identifier, - ACTIONS(6293), 1, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(6512), 1, anon_sym_LPAREN2, - ACTIONS(6295), 1, + ACTIONS(6520), 1, + anon_sym_LBRACK, + ACTIONS(6754), 1, anon_sym_STAR, - ACTIONS(6297), 1, + ACTIONS(6756), 1, anon_sym_AMP_AMP, - ACTIONS(6299), 1, + ACTIONS(6758), 1, anon_sym_AMP, - STATE(4091), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4780), 1, - sym__field_declarator, - STATE(6059), 1, - sym_ms_based_modifier, - ACTIONS(2722), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(4056), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4067), 2, + STATE(3887), 1, + sym_parameter_list, + STATE(5464), 1, + sym__function_declarator_seq, + STATE(5552), 1, + sym__abstract_declarator, + STATE(4527), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(2720), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(2724), 8, - anon_sym_const, + STATE(5367), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6803), 8, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + ACTIONS(6359), 10, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - STATE(4964), 8, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - sym_reference_field_declarator, - sym_template_method, - sym_operator_name, - [126808] = 4, + [160736] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(6301), 2, + ACTIONS(6468), 1, + anon_sym_const, + ACTIONS(6512), 1, + anon_sym_LPAREN2, + ACTIONS(6520), 1, + anon_sym_LBRACK, + ACTIONS(6581), 1, + sym_auto, + ACTIONS(6583), 1, + anon_sym_decltype, + ACTIONS(7389), 1, + anon_sym_STAR, + ACTIONS(7391), 1, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(4822), 11, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(7393), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4824), 22, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + STATE(3984), 1, + sym_decltype_auto, + STATE(4121), 1, + sym_parameter_list, + STATE(5464), 1, + sym__function_declarator_seq, + STATE(5709), 1, + sym__abstract_declarator, + STATE(4584), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(6540), 5, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + STATE(5367), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6470), 10, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [160806] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5043), 1, + anon_sym_COLON_COLON, + ACTIONS(5062), 1, + anon_sym_SEMI, + ACTIONS(5153), 5, anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_AMP_AMP, + anon_sym_LBRACK_LBRACK, + ACTIONS(5155), 27, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [126853] = 9, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + [160852] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(6512), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(6520), 1, anon_sym_LBRACK, - ACTIONS(5286), 1, - anon_sym_DOT, - ACTIONS(5288), 1, - anon_sym_DASH_GT, - STATE(2475), 1, - sym_argument_list, - ACTIONS(5723), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4883), 8, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(4881), 20, - anon_sym_DOT_DOT_DOT, + ACTIONS(6754), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(6756), 1, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - [126908] = 3, + ACTIONS(6758), 1, + anon_sym_AMP, + STATE(3887), 1, + sym_parameter_list, + STATE(5464), 1, + sym__function_declarator_seq, + STATE(5546), 1, + sym__abstract_declarator, + STATE(4527), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(5367), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(5782), 8, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + ACTIONS(6359), 10, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [160916] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(4969), 11, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4967), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(6512), 1, anon_sym_LPAREN2, + ACTIONS(6520), 1, + anon_sym_LBRACK, + ACTIONS(6754), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(6756), 1, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [126951] = 3, + ACTIONS(6758), 1, + anon_sym_AMP, + STATE(3887), 1, + sym_parameter_list, + STATE(5464), 1, + sym__function_declarator_seq, + STATE(5551), 1, + sym__abstract_declarator, + STATE(4527), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(5367), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6821), 8, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + ACTIONS(6359), 10, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [160980] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4973), 11, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4971), 24, + ACTIONS(5082), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, + anon_sym_EQ, anon_sym_GT2, - [126994] = 25, + ACTIONS(5080), 21, + anon_sym_AMP, + anon_sym___based, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [161022] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3739), 1, - anon_sym_RBRACK, - ACTIONS(4166), 1, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(6512), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(6520), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, - anon_sym_DOT, - ACTIONS(4816), 1, - anon_sym_DASH_GT, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5914), 1, - anon_sym_SLASH, - ACTIONS(5920), 1, - anon_sym_PIPE, - ACTIONS(5924), 1, - anon_sym_AMP, - ACTIONS(5930), 1, - anon_sym_GT_EQ, - ACTIONS(5936), 1, - anon_sym_QMARK, - ACTIONS(5938), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5940), 1, - anon_sym_bitor, - ACTIONS(5942), 1, - anon_sym_bitand, - STATE(2475), 1, - sym_argument_list, - ACTIONS(5723), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5910), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5912), 2, + ACTIONS(6754), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5916), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5918), 2, + ACTIONS(6756), 1, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5922), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5932), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5926), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5928), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [127081] = 17, + ACTIONS(6758), 1, + anon_sym_AMP, + STATE(3887), 1, + sym_parameter_list, + STATE(5464), 1, + sym__function_declarator_seq, + STATE(5554), 1, + sym__abstract_declarator, + STATE(4518), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(5367), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(5004), 8, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + ACTIONS(6359), 10, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [161086] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, + ACTIONS(4559), 1, + anon_sym_LBRACK, + ACTIONS(4552), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + ACTIONS(4555), 5, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + ACTIONS(4550), 26, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, anon_sym___based, - ACTIONS(1521), 1, - anon_sym_operator, - ACTIONS(6291), 1, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, sym_identifier, - ACTIONS(6293), 1, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + [161132] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6468), 1, + anon_sym_const, + ACTIONS(6512), 1, anon_sym_LPAREN2, - ACTIONS(6295), 1, + ACTIONS(6520), 1, + anon_sym_LBRACK, + ACTIONS(6581), 1, + sym_auto, + ACTIONS(6583), 1, + anon_sym_decltype, + ACTIONS(7389), 1, anon_sym_STAR, - ACTIONS(6297), 1, + ACTIONS(7391), 1, anon_sym_AMP_AMP, - ACTIONS(6299), 1, + ACTIONS(7393), 1, anon_sym_AMP, - STATE(4091), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4759), 1, - sym__field_declarator, - STATE(6059), 1, - sym_ms_based_modifier, - ACTIONS(2722), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(4056), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4074), 2, + STATE(3984), 1, + sym_decltype_auto, + STATE(4121), 1, + sym_parameter_list, + STATE(5464), 1, + sym__function_declarator_seq, + STATE(5762), 1, + sym__abstract_declarator, + STATE(4586), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(2720), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(2724), 8, - anon_sym_const, + ACTIONS(6510), 5, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + STATE(5367), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6470), 10, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - STATE(4964), 8, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - sym_reference_field_declarator, - sym_template_method, - sym_operator_name, - [127152] = 25, + [161202] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, - anon_sym_LPAREN2, - ACTIONS(4798), 1, - anon_sym_LBRACK, - ACTIONS(4814), 1, - anon_sym_DOT, - ACTIONS(4816), 1, - anon_sym_DASH_GT, - ACTIONS(5747), 1, - anon_sym_SLASH, - ACTIONS(5753), 1, - anon_sym_PIPE, - ACTIONS(5757), 1, - anon_sym_AMP, - ACTIONS(5763), 1, - anon_sym_GT_EQ, - ACTIONS(5767), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, - anon_sym_bitor, - ACTIONS(5771), 1, - anon_sym_bitand, - ACTIONS(5773), 1, + ACTIONS(113), 1, + sym_auto, + ACTIONS(115), 1, + anon_sym_decltype, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1853), 1, + anon_sym_enum, + ACTIONS(1855), 1, + anon_sym_class, + ACTIONS(1857), 1, + anon_sym_struct, + ACTIONS(1859), 1, + anon_sym_union, + ACTIONS(1881), 1, + anon_sym_typename, + ACTIONS(3667), 1, + sym_primitive_type, + ACTIONS(4580), 1, + anon_sym_COLON_COLON, + ACTIONS(7395), 1, + sym_identifier, + ACTIONS(7397), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - ACTIONS(6303), 1, - anon_sym_SEMI, - STATE(2475), 1, - sym_argument_list, - ACTIONS(5723), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5745), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5749), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5751), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5755), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5765), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5759), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5761), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [127239] = 25, + ACTIONS(7401), 1, + anon_sym_EQ, + STATE(3657), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3677), 1, + sym__type_specifier, + STATE(3694), 1, + sym_qualified_type_identifier, + STATE(3717), 1, + sym_decltype_auto, + STATE(5733), 1, + sym__scope_resolution, + STATE(7638), 1, + sym_dependent_type_identifier, + ACTIONS(7399), 2, + anon_sym_COMMA, + anon_sym_GT2, + STATE(3680), 2, + sym_decltype, + sym_template_type, + ACTIONS(59), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3723), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [161286] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, - anon_sym_LPAREN2, - ACTIONS(4798), 1, - anon_sym_LBRACK, - ACTIONS(4814), 1, - anon_sym_DOT, - ACTIONS(4816), 1, - anon_sym_DASH_GT, - ACTIONS(5747), 1, - anon_sym_SLASH, - ACTIONS(5753), 1, - anon_sym_PIPE, - ACTIONS(5757), 1, + ACTIONS(7407), 1, + anon_sym___attribute__, + STATE(4525), 2, + sym_attribute_specifier, + aux_sym__function_declarator_seq_repeat1, + ACTIONS(7405), 3, anon_sym_AMP, - ACTIONS(5763), 1, - anon_sym_GT_EQ, - ACTIONS(5767), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, - anon_sym_bitor, - ACTIONS(5771), 1, - anon_sym_bitand, - ACTIONS(5773), 1, + anon_sym_LBRACK, + anon_sym_const, + ACTIONS(7403), 27, anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - ACTIONS(6305), 1, - anon_sym_SEMI, - STATE(2475), 1, - sym_argument_list, - ACTIONS(5723), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5745), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5749), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5751), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5755), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5765), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5759), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5761), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [127326] = 25, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_noexcept, + anon_sym_throw, + anon_sym_requires, + [161331] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, - anon_sym_LPAREN2, - ACTIONS(4798), 1, - anon_sym_LBRACK, - ACTIONS(4814), 1, - anon_sym_DOT, - ACTIONS(4816), 1, - anon_sym_DASH_GT, - ACTIONS(5747), 1, - anon_sym_SLASH, - ACTIONS(5753), 1, - anon_sym_PIPE, - ACTIONS(5757), 1, + ACTIONS(41), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(6355), 1, + anon_sym___attribute__, + ACTIONS(6975), 1, + anon_sym___declspec, + ACTIONS(6977), 1, + anon_sym_virtual, + ACTIONS(6213), 2, anon_sym_AMP, - ACTIONS(5763), 1, - anon_sym_GT_EQ, - ACTIONS(5767), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, - anon_sym_bitor, - ACTIONS(5771), 1, - anon_sym_bitand, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - ACTIONS(6307), 1, - anon_sym_RPAREN, - STATE(2475), 1, - sym_argument_list, - ACTIONS(5723), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5745), 2, + anon_sym_LBRACK, + ACTIONS(6215), 3, + anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5749), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5751), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5755), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5765), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5759), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5761), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [127413] = 3, + ACTIONS(6973), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + STATE(4529), 8, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(6359), 10, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [161388] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4727), 11, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(7410), 1, + anon_sym_const, + ACTIONS(4922), 2, anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4729), 24, + anon_sym_LBRACK, + STATE(4527), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(7413), 10, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(4924), 18, 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_LT_LT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - [127456] = 25, + anon_sym_try, + anon_sym_noexcept, + anon_sym_throw, + anon_sym_requires, + [161435] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(2871), 1, + anon_sym_const, + ACTIONS(4572), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, - anon_sym_LBRACK, - ACTIONS(5286), 1, - anon_sym_DOT, - ACTIONS(5288), 1, - anon_sym_DASH_GT, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6237), 1, - anon_sym_SLASH, - ACTIONS(6243), 1, - anon_sym_PIPE, - ACTIONS(6247), 1, - anon_sym_AMP, - ACTIONS(6253), 1, - anon_sym_GT_EQ, - ACTIONS(6259), 1, - anon_sym_QMARK, - ACTIONS(6261), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6263), 1, - anon_sym_bitor, - ACTIONS(6265), 1, - anon_sym_bitand, - ACTIONS(6309), 1, - anon_sym_COLON, - STATE(2475), 1, - sym_argument_list, - ACTIONS(5723), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6233), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6235), 2, + ACTIONS(4574), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6239), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(6241), 2, + ACTIONS(4576), 1, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(6245), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(6255), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6249), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(6251), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [127543] = 25, + ACTIONS(4578), 1, + anon_sym_AMP, + ACTIONS(6919), 1, + anon_sym_LBRACK, + STATE(3900), 1, + sym_parameter_list, + STATE(5457), 1, + sym__function_declarator_seq, + STATE(5643), 1, + sym__abstract_declarator, + STATE(4689), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(5452), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6803), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(6921), 10, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [161498] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, - anon_sym_LPAREN2, - ACTIONS(4798), 1, - anon_sym_LBRACK, - ACTIONS(4814), 1, - anon_sym_DOT, - ACTIONS(4816), 1, - anon_sym_DASH_GT, - ACTIONS(5747), 1, - anon_sym_SLASH, - ACTIONS(5753), 1, - anon_sym_PIPE, - ACTIONS(5757), 1, + ACTIONS(6391), 1, + anon_sym_const, + ACTIONS(7419), 1, + anon_sym___attribute__, + ACTIONS(7422), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7425), 1, + anon_sym___declspec, + ACTIONS(7431), 1, + anon_sym_virtual, + ACTIONS(6235), 2, anon_sym_AMP, - ACTIONS(5763), 1, - anon_sym_GT_EQ, - ACTIONS(5767), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, - anon_sym_bitor, - ACTIONS(5771), 1, - anon_sym_bitand, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - ACTIONS(6311), 1, - anon_sym_SEMI, - STATE(2475), 1, - sym_argument_list, - ACTIONS(5723), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5745), 2, + anon_sym_LBRACK, + ACTIONS(6237), 3, + anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5749), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5751), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5755), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5765), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5759), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5761), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [127630] = 17, + ACTIONS(7416), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + STATE(4529), 8, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(7428), 10, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [161555] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1521), 1, - anon_sym_operator, - ACTIONS(6291), 1, - sym_identifier, - ACTIONS(6293), 1, + ACTIONS(4572), 1, anon_sym_LPAREN2, - ACTIONS(6295), 1, + ACTIONS(5145), 1, + sym_auto, + ACTIONS(5147), 1, + anon_sym_decltype, + ACTIONS(6919), 1, + anon_sym_LBRACK, + ACTIONS(7434), 1, anon_sym_STAR, - ACTIONS(6297), 1, + ACTIONS(7436), 1, anon_sym_AMP_AMP, - ACTIONS(6299), 1, + ACTIONS(7438), 1, anon_sym_AMP, - STATE(4091), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4759), 1, - sym__field_declarator, - STATE(6059), 1, - sym_ms_based_modifier, - ACTIONS(2722), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(3713), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4074), 2, + ACTIONS(7440), 1, + anon_sym_const, + STATE(2731), 1, + sym_decltype_auto, + STATE(4108), 1, + sym_parameter_list, + STATE(5457), 1, + sym__function_declarator_seq, + STATE(5811), 1, + sym__abstract_declarator, + STATE(4632), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(2720), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(2724), 8, - anon_sym_const, + ACTIONS(6540), 4, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + STATE(5452), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7442), 10, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - STATE(4964), 8, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - sym_reference_field_declarator, - sym_template_method, - sym_operator_name, - [127701] = 5, + [161624] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6313), 1, + ACTIONS(7446), 1, anon_sym_LPAREN2, - STATE(2824), 1, - sym_argument_list, - ACTIONS(4322), 9, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(7448), 5, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - ACTIONS(4324), 24, + ACTIONS(7444), 27, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, @@ -336843,620 +439864,554 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, sym_identifier, - sym_auto, anon_sym_decltype, anon_sym_virtual, + anon_sym_explicit, anon_sym_template, anon_sym_operator, - [127748] = 25, + [161667] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(2871), 1, + anon_sym_const, + ACTIONS(4572), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(6919), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, - anon_sym_DOT, - ACTIONS(4816), 1, - anon_sym_DASH_GT, - ACTIONS(5747), 1, - anon_sym_SLASH, - ACTIONS(5753), 1, - anon_sym_PIPE, - ACTIONS(5757), 1, - anon_sym_AMP, - ACTIONS(5763), 1, - anon_sym_GT_EQ, - ACTIONS(5767), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, - anon_sym_bitor, - ACTIONS(5771), 1, - anon_sym_bitand, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - ACTIONS(6316), 1, - anon_sym_SEMI, - STATE(2475), 1, - sym_argument_list, - ACTIONS(5723), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5745), 2, + ACTIONS(6997), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5749), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5751), 2, + ACTIONS(6999), 1, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5755), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5765), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5759), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5761), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [127835] = 25, + ACTIONS(7001), 1, + anon_sym_AMP, + STATE(3888), 1, + sym_parameter_list, + STATE(5457), 1, + sym__function_declarator_seq, + STATE(5663), 1, + sym__abstract_declarator, + STATE(4689), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(5452), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(5782), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + ACTIONS(6921), 10, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [161730] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(2871), 1, + anon_sym_const, + ACTIONS(4572), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(6919), 1, anon_sym_LBRACK, - ACTIONS(5286), 1, - anon_sym_DOT, - ACTIONS(5288), 1, - anon_sym_DASH_GT, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6237), 1, - anon_sym_SLASH, - ACTIONS(6243), 1, - anon_sym_PIPE, - ACTIONS(6247), 1, - anon_sym_AMP, - ACTIONS(6253), 1, - anon_sym_GT_EQ, - ACTIONS(6259), 1, - anon_sym_QMARK, - ACTIONS(6261), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6263), 1, - anon_sym_bitor, - ACTIONS(6265), 1, - anon_sym_bitand, - ACTIONS(6318), 1, - anon_sym_COLON, - STATE(2475), 1, - sym_argument_list, - ACTIONS(5723), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6233), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6235), 2, + ACTIONS(6997), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6239), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(6241), 2, + ACTIONS(6999), 1, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(6245), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(6255), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6249), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(6251), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [127922] = 25, + ACTIONS(7001), 1, + anon_sym_AMP, + STATE(3888), 1, + sym_parameter_list, + STATE(5457), 1, + sym__function_declarator_seq, + STATE(5625), 1, + sym__abstract_declarator, + STATE(4689), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(5452), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6821), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + ACTIONS(6921), 10, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [161793] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(2871), 1, + anon_sym_const, + ACTIONS(4572), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, - anon_sym_LBRACK, - ACTIONS(4814), 1, - anon_sym_DOT, - ACTIONS(4816), 1, - anon_sym_DASH_GT, - ACTIONS(5747), 1, - anon_sym_SLASH, - ACTIONS(5753), 1, - anon_sym_PIPE, - ACTIONS(5757), 1, + ACTIONS(4574), 1, + anon_sym_STAR, + ACTIONS(4576), 1, + anon_sym_AMP_AMP, + ACTIONS(4578), 1, anon_sym_AMP, - ACTIONS(5763), 1, - anon_sym_GT_EQ, - ACTIONS(5767), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, - anon_sym_bitor, - ACTIONS(5771), 1, - anon_sym_bitand, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - ACTIONS(6320), 1, + ACTIONS(6919), 1, + anon_sym_LBRACK, + STATE(3900), 1, + sym_parameter_list, + STATE(5457), 1, + sym__function_declarator_seq, + STATE(5608), 1, + sym__abstract_declarator, + STATE(4689), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(5452), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(5782), 7, + anon_sym_COMMA, anon_sym_RPAREN, - STATE(2475), 1, - sym_argument_list, - ACTIONS(5723), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5745), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(6921), 10, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [161856] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2871), 1, + anon_sym_const, + ACTIONS(4572), 1, + anon_sym_LPAREN2, + ACTIONS(6919), 1, + anon_sym_LBRACK, + ACTIONS(6997), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5749), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5751), 2, + ACTIONS(6999), 1, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5755), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5765), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5759), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5761), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [128009] = 3, + ACTIONS(7001), 1, + anon_sym_AMP, + STATE(3888), 1, + sym_parameter_list, + STATE(5457), 1, + sym__function_declarator_seq, + STATE(5666), 1, + sym__abstract_declarator, + STATE(4689), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(5452), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6803), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + ACTIONS(6921), 10, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [161919] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(4981), 11, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(41), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(6355), 1, + anon_sym___attribute__, + ACTIONS(6975), 1, + anon_sym___declspec, + ACTIONS(6977), 1, + anon_sym_virtual, + ACTIONS(6257), 2, anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4979), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(6259), 3, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [128052] = 25, + ACTIONS(6973), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + STATE(4529), 8, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(6359), 10, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [161976] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(7452), 6, anon_sym_LPAREN2, - ACTIONS(4798), 1, - anon_sym_LBRACK, - ACTIONS(4814), 1, - anon_sym_DOT, - ACTIONS(4816), 1, - anon_sym_DASH_GT, - ACTIONS(5747), 1, - anon_sym_SLASH, - ACTIONS(5753), 1, - anon_sym_PIPE, - ACTIONS(5757), 1, - anon_sym_AMP, - ACTIONS(5763), 1, - anon_sym_GT_EQ, - ACTIONS(5767), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, - anon_sym_bitor, - ACTIONS(5771), 1, - anon_sym_bitand, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - ACTIONS(6322), 1, - anon_sym_RPAREN, - STATE(2475), 1, - sym_argument_list, - ACTIONS(5723), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5745), 2, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5749), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5751), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5755), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5765), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5759), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5761), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [128139] = 25, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(7450), 27, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_template, + anon_sym_operator, + [162017] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(2871), 1, + anon_sym_const, + ACTIONS(4572), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, - anon_sym_LBRACK, - ACTIONS(4814), 1, - anon_sym_DOT, - ACTIONS(4816), 1, - anon_sym_DASH_GT, - ACTIONS(5747), 1, - anon_sym_SLASH, - ACTIONS(5753), 1, - anon_sym_PIPE, - ACTIONS(5757), 1, - anon_sym_AMP, - ACTIONS(5763), 1, - anon_sym_GT_EQ, - ACTIONS(5767), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, - anon_sym_bitor, - ACTIONS(5771), 1, - anon_sym_bitand, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - ACTIONS(6324), 1, - anon_sym_RPAREN, - STATE(2475), 1, - sym_argument_list, - ACTIONS(5723), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5745), 2, + ACTIONS(4574), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5749), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5751), 2, + ACTIONS(4576), 1, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5755), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5765), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5759), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5761), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [128226] = 25, + ACTIONS(4578), 1, + anon_sym_AMP, + ACTIONS(6919), 1, + anon_sym_LBRACK, + STATE(3900), 1, + sym_parameter_list, + STATE(5457), 1, + sym__function_declarator_seq, + STATE(5653), 1, + sym__abstract_declarator, + STATE(4689), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(5452), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6821), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(6921), 10, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [162080] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, - anon_sym_LPAREN2, - ACTIONS(4798), 1, - anon_sym_LBRACK, - ACTIONS(4814), 1, - anon_sym_DOT, - ACTIONS(4816), 1, - anon_sym_DASH_GT, - ACTIONS(5747), 1, - anon_sym_SLASH, - ACTIONS(5753), 1, - anon_sym_PIPE, - ACTIONS(5757), 1, + ACTIONS(4476), 1, + anon_sym_COLON_COLON, + ACTIONS(6151), 1, + anon_sym_LT, + STATE(3608), 1, + sym_template_argument_list, + ACTIONS(5106), 3, anon_sym_AMP, - ACTIONS(5763), 1, - anon_sym_GT_EQ, - ACTIONS(5767), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, - anon_sym_bitor, - ACTIONS(5771), 1, - anon_sym_bitand, - ACTIONS(5773), 1, + anon_sym_const, + anon_sym_COLON, + ACTIONS(5104), 27, anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - ACTIONS(6326), 1, + anon_sym_COMMA, anon_sym_RPAREN, - STATE(2475), 1, - sym_argument_list, - ACTIONS(5723), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5745), 2, + anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5749), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5751), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5755), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5765), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5759), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5761), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [128313] = 25, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [162127] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(4572), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(5145), 1, + sym_auto, + ACTIONS(5147), 1, + anon_sym_decltype, + ACTIONS(6919), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, - anon_sym_DOT, - ACTIONS(4816), 1, - anon_sym_DASH_GT, - ACTIONS(5747), 1, - anon_sym_SLASH, - ACTIONS(5753), 1, - anon_sym_PIPE, - ACTIONS(5757), 1, - anon_sym_AMP, - ACTIONS(5763), 1, - anon_sym_GT_EQ, - ACTIONS(5767), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, - anon_sym_bitor, - ACTIONS(5771), 1, - anon_sym_bitand, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - ACTIONS(6328), 1, - anon_sym_RPAREN, - STATE(2475), 1, - sym_argument_list, - ACTIONS(5723), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5745), 2, + ACTIONS(7434), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5749), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5751), 2, + ACTIONS(7436), 1, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5755), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5765), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5759), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5761), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [128400] = 25, + ACTIONS(7438), 1, + anon_sym_AMP, + ACTIONS(7440), 1, + anon_sym_const, + STATE(2731), 1, + sym_decltype_auto, + STATE(4108), 1, + sym_parameter_list, + STATE(5457), 1, + sym__function_declarator_seq, + STATE(5808), 1, + sym__abstract_declarator, + STATE(4655), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(6510), 4, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + STATE(5452), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7442), 10, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [162196] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(2871), 1, + anon_sym_const, + ACTIONS(4572), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, - anon_sym_LBRACK, - ACTIONS(4814), 1, - anon_sym_DOT, - ACTIONS(4816), 1, - anon_sym_DASH_GT, - ACTIONS(5747), 1, - anon_sym_SLASH, - ACTIONS(5753), 1, - anon_sym_PIPE, - ACTIONS(5757), 1, + ACTIONS(4574), 1, + anon_sym_STAR, + ACTIONS(4576), 1, + anon_sym_AMP_AMP, + ACTIONS(4578), 1, anon_sym_AMP, - ACTIONS(5763), 1, - anon_sym_GT_EQ, - ACTIONS(5767), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, - anon_sym_bitor, - ACTIONS(5771), 1, - anon_sym_bitand, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - ACTIONS(6330), 1, + ACTIONS(6919), 1, + anon_sym_LBRACK, + STATE(3900), 1, + sym_parameter_list, + STATE(5457), 1, + sym__function_declarator_seq, + STATE(5655), 1, + sym__abstract_declarator, + STATE(4534), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(5452), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(5004), 7, + anon_sym_COMMA, anon_sym_RPAREN, - STATE(2475), 1, - sym_argument_list, - ACTIONS(5723), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5745), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5749), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5751), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5755), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5765), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5759), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5761), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [128487] = 8, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(6921), 10, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [162259] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(2871), 1, + anon_sym_const, + ACTIONS(4572), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(6919), 1, anon_sym_LBRACK, - ACTIONS(5286), 1, - anon_sym_DOT, - ACTIONS(5288), 1, - anon_sym_DASH_GT, - STATE(2475), 1, - sym_argument_list, - ACTIONS(4961), 8, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(4959), 22, - anon_sym_DOT_DOT_DOT, + ACTIONS(6997), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(6999), 1, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - [128540] = 7, + ACTIONS(7001), 1, + anon_sym_AMP, + STATE(3888), 1, + sym_parameter_list, + STATE(5457), 1, + sym__function_declarator_seq, + STATE(5610), 1, + sym__abstract_declarator, + STATE(4532), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(5452), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(5004), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + ACTIONS(6921), 10, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [162322] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5493), 1, - anon_sym_LBRACE, - ACTIONS(6332), 1, - anon_sym_COLON, - STATE(3202), 1, - sym__enum_base_clause, - STATE(3257), 1, - sym_enumerator_list, - ACTIONS(4276), 7, + ACTIONS(5043), 1, + anon_sym_COLON_COLON, + ACTIONS(5153), 5, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(4278), 24, + ACTIONS(5155), 27, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, @@ -337468,11 +440423,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, sym_identifier, @@ -337481,2573 +440439,2499 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_virtual, anon_sym_template, anon_sym_operator, - [128591] = 25, + [162365] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(6308), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, - anon_sym_LBRACK, - ACTIONS(4814), 1, - anon_sym_DOT, - ACTIONS(4816), 1, - anon_sym_DASH_GT, - ACTIONS(5747), 1, - anon_sym_SLASH, - ACTIONS(5753), 1, - anon_sym_PIPE, - ACTIONS(5757), 1, - anon_sym_AMP, - ACTIONS(5763), 1, - anon_sym_GT_EQ, - ACTIONS(5767), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, - anon_sym_bitor, - ACTIONS(5771), 1, - anon_sym_bitand, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - ACTIONS(6334), 1, - anon_sym_RPAREN, - STATE(2475), 1, + ACTIONS(7454), 1, + sym_identifier, + ACTIONS(7456), 1, + anon_sym_COLON_COLON, + ACTIONS(7460), 1, + sym_primitive_type, + ACTIONS(7462), 1, + anon_sym_enum, + ACTIONS(7464), 1, + anon_sym_class, + ACTIONS(7466), 1, + anon_sym_struct, + ACTIONS(7468), 1, + anon_sym_union, + ACTIONS(7470), 1, + sym_auto, + ACTIONS(7472), 1, + anon_sym_decltype, + ACTIONS(7474), 1, + anon_sym_typename, + STATE(2415), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2784), 1, + sym__type_specifier, + STATE(3077), 1, + sym_decltype_auto, + STATE(3135), 1, + sym_qualified_type_identifier, + STATE(4623), 1, sym_argument_list, - ACTIONS(5723), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5745), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5749), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5751), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5755), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5765), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5759), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5761), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [128678] = 25, + STATE(5797), 1, + sym__scope_resolution, + STATE(7638), 1, + sym_dependent_type_identifier, + STATE(2957), 2, + sym_decltype, + sym_template_type, + ACTIONS(7458), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3084), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [162445] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(6308), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, - anon_sym_LBRACK, - ACTIONS(5286), 1, - anon_sym_DOT, - ACTIONS(5288), 1, - anon_sym_DASH_GT, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6237), 1, - anon_sym_SLASH, - ACTIONS(6243), 1, - anon_sym_PIPE, - ACTIONS(6247), 1, - anon_sym_AMP, - ACTIONS(6253), 1, - anon_sym_GT_EQ, - ACTIONS(6259), 1, - anon_sym_QMARK, - ACTIONS(6261), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6263), 1, - anon_sym_bitor, - ACTIONS(6265), 1, - anon_sym_bitand, - ACTIONS(6336), 1, - anon_sym_COLON, - STATE(2475), 1, + ACTIONS(7476), 1, + sym_identifier, + ACTIONS(7478), 1, + anon_sym_COLON_COLON, + ACTIONS(7482), 1, + sym_primitive_type, + ACTIONS(7484), 1, + anon_sym_enum, + ACTIONS(7486), 1, + anon_sym_class, + ACTIONS(7488), 1, + anon_sym_struct, + ACTIONS(7490), 1, + anon_sym_union, + ACTIONS(7492), 1, + sym_auto, + ACTIONS(7494), 1, + anon_sym_decltype, + ACTIONS(7496), 1, + anon_sym_typename, + STATE(2231), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2362), 1, + sym__type_specifier, + STATE(2730), 1, + sym_qualified_type_identifier, + STATE(2760), 1, + sym_decltype_auto, + STATE(4651), 1, sym_argument_list, - ACTIONS(5723), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6233), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6235), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6239), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(6241), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(6245), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(6255), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6249), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(6251), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [128765] = 9, + STATE(5770), 1, + sym__scope_resolution, + STATE(7638), 1, + sym_dependent_type_identifier, + STATE(2681), 2, + sym_decltype, + sym_template_type, + ACTIONS(7480), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2757), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [162525] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(7498), 1, + sym_identifier, + ACTIONS(7502), 1, + sym_primitive_type, + STATE(4561), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7500), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(4807), 7, anon_sym_LPAREN2, - ACTIONS(4798), 1, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(5286), 1, - anon_sym_DOT, - ACTIONS(5288), 1, - anon_sym_DASH_GT, - STATE(2475), 1, - sym_argument_list, - ACTIONS(5723), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4989), 8, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, + anon_sym_EQ, + ACTIONS(4809), 18, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [162573] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4476), 1, + anon_sym_COLON_COLON, + ACTIONS(7504), 1, anon_sym_LT, - ACTIONS(4987), 20, + STATE(2914), 1, + sym_template_argument_list, + ACTIONS(4498), 3, + anon_sym_AMP, + anon_sym_const, + anon_sym_COLON, + ACTIONS(4503), 26, anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_or, anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - [128820] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [162619] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(4674), 11, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(45), 1, + anon_sym___based, + ACTIONS(7506), 1, + sym_identifier, + ACTIONS(7508), 1, anon_sym_LPAREN2, - anon_sym_TILDE, + ACTIONS(7510), 1, anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(4672), 24, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, + STATE(4712), 1, + sym_ms_unaligned_ptr_modifier, + STATE(5758), 1, + sym__type_declarator, + STATE(7376), 1, + sym_ms_based_modifier, + ACTIONS(2869), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(4569), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4776), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(2867), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(5904), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(2871), 11, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - sym_identifier, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_explicit, - anon_sym_template, - anon_sym_operator, - [128863] = 25, + [162681] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1925), 1, + sym_auto, + ACTIONS(1927), 1, + anon_sym_decltype, + ACTIONS(6227), 1, + sym_primitive_type, + ACTIONS(6308), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, - anon_sym_LBRACK, - ACTIONS(4814), 1, - anon_sym_DOT, - ACTIONS(4816), 1, - anon_sym_DASH_GT, - ACTIONS(5747), 1, - anon_sym_SLASH, - ACTIONS(5753), 1, - anon_sym_PIPE, - ACTIONS(5757), 1, - anon_sym_AMP, - ACTIONS(5763), 1, - anon_sym_GT_EQ, - ACTIONS(5767), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, - anon_sym_bitor, - ACTIONS(5771), 1, - anon_sym_bitand, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - ACTIONS(6338), 1, - anon_sym_SEMI, - STATE(2475), 1, + ACTIONS(7512), 1, + sym_identifier, + ACTIONS(7514), 1, + anon_sym_COLON_COLON, + ACTIONS(7516), 1, + anon_sym_enum, + ACTIONS(7518), 1, + anon_sym_class, + ACTIONS(7520), 1, + anon_sym_struct, + ACTIONS(7522), 1, + anon_sym_union, + ACTIONS(7524), 1, + anon_sym_typename, + STATE(2230), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2774), 1, + sym_qualified_type_identifier, + STATE(2819), 1, + sym_decltype_auto, + STATE(3812), 1, + sym__type_specifier, + STATE(4634), 1, sym_argument_list, - ACTIONS(5723), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5745), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5749), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5751), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5755), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5765), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5759), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5761), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [128950] = 25, + STATE(5735), 1, + sym__scope_resolution, + STATE(7638), 1, + sym_dependent_type_identifier, + STATE(2662), 2, + sym_decltype, + sym_template_type, + ACTIONS(1913), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2802), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [162761] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1925), 1, + sym_auto, + ACTIONS(1927), 1, + anon_sym_decltype, + ACTIONS(6227), 1, + sym_primitive_type, + ACTIONS(6308), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, - anon_sym_LBRACK, - ACTIONS(4814), 1, - anon_sym_DOT, - ACTIONS(4816), 1, - anon_sym_DASH_GT, - ACTIONS(5747), 1, - anon_sym_SLASH, - ACTIONS(5753), 1, - anon_sym_PIPE, - ACTIONS(5757), 1, - anon_sym_AMP, - ACTIONS(5763), 1, - anon_sym_GT_EQ, - ACTIONS(5767), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, - anon_sym_bitor, - ACTIONS(5771), 1, - anon_sym_bitand, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - ACTIONS(6340), 1, - anon_sym_SEMI, - STATE(2475), 1, + ACTIONS(7512), 1, + sym_identifier, + ACTIONS(7514), 1, + anon_sym_COLON_COLON, + ACTIONS(7516), 1, + anon_sym_enum, + ACTIONS(7518), 1, + anon_sym_class, + ACTIONS(7520), 1, + anon_sym_struct, + ACTIONS(7522), 1, + anon_sym_union, + ACTIONS(7524), 1, + anon_sym_typename, + STATE(2230), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2774), 1, + sym_qualified_type_identifier, + STATE(2819), 1, + sym_decltype_auto, + STATE(3776), 1, + sym__type_specifier, + STATE(4633), 1, sym_argument_list, - ACTIONS(5723), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5745), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5749), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5751), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5755), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5765), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5759), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5761), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [129037] = 25, + STATE(5735), 1, + sym__scope_resolution, + STATE(7638), 1, + sym_dependent_type_identifier, + STATE(2662), 2, + sym_decltype, + sym_template_type, + ACTIONS(1913), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2802), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [162841] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, - anon_sym_LPAREN2, - ACTIONS(4798), 1, - anon_sym_LBRACK, - ACTIONS(4814), 1, - anon_sym_DOT, - ACTIONS(4816), 1, - anon_sym_DASH_GT, - ACTIONS(5747), 1, - anon_sym_SLASH, - ACTIONS(5753), 1, - anon_sym_PIPE, - ACTIONS(5757), 1, + ACTIONS(7528), 3, anon_sym_AMP, - ACTIONS(5763), 1, - anon_sym_GT_EQ, - ACTIONS(5767), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, - anon_sym_bitor, - ACTIONS(5771), 1, - anon_sym_bitand, - ACTIONS(5773), 1, + anon_sym_LBRACK, + anon_sym_const, + ACTIONS(7526), 29, anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - ACTIONS(6342), 1, - anon_sym_SEMI, - STATE(2475), 1, - sym_argument_list, - ACTIONS(5723), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5745), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5749), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5751), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5755), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5765), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5759), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5761), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [129124] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3141), 10, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, + anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_COLON, - anon_sym_DASH_GT, - ACTIONS(3139), 25, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - sym_identifier, + anon_sym_COLON, + anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - anon_sym_virtual, - anon_sym_operator, + anon_sym_GT2, anon_sym_try, + anon_sym_noexcept, + anon_sym_throw, anon_sym_requires, - [129167] = 3, + [162881] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(5001), 11, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4999), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(6308), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [129210] = 25, + ACTIONS(7454), 1, + sym_identifier, + ACTIONS(7456), 1, + anon_sym_COLON_COLON, + ACTIONS(7460), 1, + sym_primitive_type, + ACTIONS(7462), 1, + anon_sym_enum, + ACTIONS(7464), 1, + anon_sym_class, + ACTIONS(7466), 1, + anon_sym_struct, + ACTIONS(7468), 1, + anon_sym_union, + ACTIONS(7470), 1, + sym_auto, + ACTIONS(7472), 1, + anon_sym_decltype, + ACTIONS(7474), 1, + anon_sym_typename, + STATE(2415), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2735), 1, + sym__type_specifier, + STATE(3077), 1, + sym_decltype_auto, + STATE(3135), 1, + sym_qualified_type_identifier, + STATE(4625), 1, + sym_argument_list, + STATE(5797), 1, + sym__scope_resolution, + STATE(7638), 1, + sym_dependent_type_identifier, + STATE(2957), 2, + sym_decltype, + sym_template_type, + ACTIONS(7458), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3084), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [162961] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3716), 1, - anon_sym_RBRACK, - ACTIONS(4166), 1, + ACTIONS(2871), 1, + anon_sym_const, + ACTIONS(4572), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(6919), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, - anon_sym_DOT, - ACTIONS(4816), 1, - anon_sym_DASH_GT, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5914), 1, - anon_sym_SLASH, - ACTIONS(5920), 1, - anon_sym_PIPE, - ACTIONS(5924), 1, - anon_sym_AMP, - ACTIONS(5930), 1, - anon_sym_GT_EQ, - ACTIONS(5936), 1, - anon_sym_QMARK, - ACTIONS(5938), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5940), 1, - anon_sym_bitor, - ACTIONS(5942), 1, - anon_sym_bitand, - STATE(2475), 1, - sym_argument_list, - ACTIONS(5723), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5910), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5912), 2, + ACTIONS(7275), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5916), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5918), 2, + ACTIONS(7277), 1, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5922), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5932), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5926), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5928), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [129297] = 25, + ACTIONS(7279), 1, + anon_sym_AMP, + STATE(3964), 1, + sym_parameter_list, + STATE(5457), 1, + sym__function_declarator_seq, + STATE(5686), 1, + sym__abstract_declarator, + STATE(4689), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(5452), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6803), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + ACTIONS(6921), 10, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [163023] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(45), 1, + anon_sym___based, + ACTIONS(7506), 1, + sym_identifier, + ACTIONS(7508), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, - anon_sym_LBRACK, - ACTIONS(4814), 1, - anon_sym_DOT, - ACTIONS(4816), 1, - anon_sym_DASH_GT, - ACTIONS(5747), 1, - anon_sym_SLASH, - ACTIONS(5753), 1, - anon_sym_PIPE, - ACTIONS(5757), 1, + ACTIONS(7510), 1, + anon_sym_STAR, + STATE(4712), 1, + sym_ms_unaligned_ptr_modifier, + STATE(5758), 1, + sym__type_declarator, + STATE(7376), 1, + sym_ms_based_modifier, + ACTIONS(2869), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(4580), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4776), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(2867), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(5904), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(2871), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [163085] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4476), 1, + anon_sym_COLON_COLON, + ACTIONS(7530), 1, + anon_sym_LT, + STATE(2659), 1, + sym_template_argument_list, + ACTIONS(5026), 3, anon_sym_AMP, - ACTIONS(5763), 1, - anon_sym_GT_EQ, - ACTIONS(5767), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, - anon_sym_bitor, - ACTIONS(5771), 1, - anon_sym_bitand, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - ACTIONS(6344), 1, - anon_sym_SEMI, - STATE(2475), 1, - sym_argument_list, - ACTIONS(5723), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5745), 2, + anon_sym_const, + anon_sym_COLON, + ACTIONS(4481), 26, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5749), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5751), 2, anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_or, anon_sym_and, - ACTIONS(5755), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5765), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5759), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5761), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [129384] = 25, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [163131] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(6308), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, - anon_sym_LBRACK, - ACTIONS(4814), 1, - anon_sym_DOT, - ACTIONS(4816), 1, - anon_sym_DASH_GT, - ACTIONS(5747), 1, - anon_sym_SLASH, - ACTIONS(5753), 1, - anon_sym_PIPE, - ACTIONS(5757), 1, - anon_sym_AMP, - ACTIONS(5763), 1, - anon_sym_GT_EQ, - ACTIONS(5767), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, - anon_sym_bitor, - ACTIONS(5771), 1, - anon_sym_bitand, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - ACTIONS(6346), 1, - anon_sym_SEMI, - STATE(2475), 1, + ACTIONS(7532), 1, + sym_identifier, + ACTIONS(7534), 1, + anon_sym_COLON_COLON, + ACTIONS(7538), 1, + sym_primitive_type, + ACTIONS(7540), 1, + anon_sym_enum, + ACTIONS(7542), 1, + anon_sym_class, + ACTIONS(7544), 1, + anon_sym_struct, + ACTIONS(7546), 1, + anon_sym_union, + ACTIONS(7548), 1, + sym_auto, + ACTIONS(7550), 1, + anon_sym_decltype, + ACTIONS(7552), 1, + anon_sym_typename, + STATE(2267), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2508), 1, + sym__type_specifier, + STATE(2867), 1, + sym_qualified_type_identifier, + STATE(2941), 1, + sym_decltype_auto, + STATE(4624), 1, sym_argument_list, - ACTIONS(5723), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5745), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5749), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5751), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5755), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5765), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5759), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5761), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [129471] = 8, + STATE(5713), 1, + sym__scope_resolution, + STATE(7638), 1, + sym_dependent_type_identifier, + STATE(2857), 2, + sym_decltype, + sym_template_type, + ACTIONS(7536), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2942), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [163211] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(6308), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, - anon_sym_LBRACK, - ACTIONS(5286), 1, - anon_sym_DOT, - ACTIONS(5288), 1, - anon_sym_DASH_GT, - STATE(2475), 1, + ACTIONS(7532), 1, + sym_identifier, + ACTIONS(7534), 1, + anon_sym_COLON_COLON, + ACTIONS(7538), 1, + sym_primitive_type, + ACTIONS(7540), 1, + anon_sym_enum, + ACTIONS(7542), 1, + anon_sym_class, + ACTIONS(7544), 1, + anon_sym_struct, + ACTIONS(7546), 1, + anon_sym_union, + ACTIONS(7548), 1, + sym_auto, + ACTIONS(7550), 1, + anon_sym_decltype, + ACTIONS(7552), 1, + anon_sym_typename, + STATE(2267), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2502), 1, + sym__type_specifier, + STATE(2867), 1, + sym_qualified_type_identifier, + STATE(2941), 1, + sym_decltype_auto, + STATE(4662), 1, sym_argument_list, - ACTIONS(4985), 8, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, + STATE(5713), 1, + sym__scope_resolution, + STATE(7638), 1, + sym_dependent_type_identifier, + STATE(2857), 2, + sym_decltype, + sym_template_type, + ACTIONS(7536), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2942), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [163291] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7556), 3, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(4983), 22, + anon_sym_LBRACK, + anon_sym_const, + ACTIONS(7554), 29, anon_sym_DOT_DOT_DOT, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - [129524] = 3, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_noexcept, + anon_sym_throw, + anon_sym_requires, + [163331] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(5009), 11, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5007), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(45), 1, + anon_sym___based, + ACTIONS(7506), 1, + sym_identifier, + ACTIONS(7508), 1, anon_sym_LPAREN2, + ACTIONS(7510), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, + STATE(4712), 1, + sym_ms_unaligned_ptr_modifier, + STATE(5705), 1, + sym__type_declarator, + STATE(7376), 1, + sym_ms_based_modifier, + ACTIONS(2869), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(4554), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4813), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(2867), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(5904), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(2871), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [163393] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7560), 3, + anon_sym_AMP, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + anon_sym_const, + ACTIONS(7558), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - [129567] = 25, + anon_sym_try, + anon_sym_noexcept, + anon_sym_throw, + anon_sym_requires, + [163433] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + STATE(4561), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7562), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(4787), 7, anon_sym_LPAREN2, - ACTIONS(4798), 1, - anon_sym_LBRACK, - ACTIONS(5286), 1, - anon_sym_DOT, - ACTIONS(5288), 1, - anon_sym_DASH_GT, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6237), 1, - anon_sym_SLASH, - ACTIONS(6243), 1, - anon_sym_PIPE, - ACTIONS(6247), 1, - anon_sym_AMP, - ACTIONS(6253), 1, - anon_sym_GT_EQ, - ACTIONS(6259), 1, - anon_sym_QMARK, - ACTIONS(6261), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6263), 1, - anon_sym_bitor, - ACTIONS(6265), 1, - anon_sym_bitand, - ACTIONS(6348), 1, - anon_sym_COLON, - STATE(2475), 1, - sym_argument_list, - ACTIONS(5723), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6233), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6235), 2, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6239), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(6241), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(6245), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(6255), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6249), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(6251), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [129654] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3590), 1, - anon_sym_RBRACK, - ACTIONS(4166), 1, - anon_sym_LPAREN2, - ACTIONS(4798), 1, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(4814), 1, - anon_sym_DOT, - ACTIONS(4816), 1, - anon_sym_DASH_GT, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5914), 1, - anon_sym_SLASH, - ACTIONS(5920), 1, - anon_sym_PIPE, - ACTIONS(5924), 1, + anon_sym_EQ, + ACTIONS(4785), 20, anon_sym_AMP, - ACTIONS(5930), 1, - anon_sym_GT_EQ, - ACTIONS(5936), 1, - anon_sym_QMARK, - ACTIONS(5938), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5940), 1, - anon_sym_bitor, - ACTIONS(5942), 1, - anon_sym_bitand, - STATE(2475), 1, - sym_argument_list, - ACTIONS(5723), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5910), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5912), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5916), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5918), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5922), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5932), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5926), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5928), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [129741] = 25, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [163477] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(2660), 1, + sym_auto, + ACTIONS(2662), 1, + anon_sym_decltype, + ACTIONS(6290), 1, + sym_primitive_type, + ACTIONS(6308), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, - anon_sym_LBRACK, - ACTIONS(4814), 1, - anon_sym_DOT, - ACTIONS(4816), 1, - anon_sym_DASH_GT, - ACTIONS(5747), 1, - anon_sym_SLASH, - ACTIONS(5753), 1, - anon_sym_PIPE, - ACTIONS(5757), 1, - anon_sym_AMP, - ACTIONS(5763), 1, - anon_sym_GT_EQ, - ACTIONS(5767), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, - anon_sym_bitor, - ACTIONS(5771), 1, - anon_sym_bitand, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - ACTIONS(6350), 1, - anon_sym_SEMI, - STATE(2475), 1, + ACTIONS(7565), 1, + sym_identifier, + ACTIONS(7567), 1, + anon_sym_COLON_COLON, + ACTIONS(7569), 1, + anon_sym_enum, + ACTIONS(7571), 1, + anon_sym_class, + ACTIONS(7573), 1, + anon_sym_struct, + ACTIONS(7575), 1, + anon_sym_union, + ACTIONS(7577), 1, + anon_sym_typename, + STATE(2483), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3121), 1, + sym_qualified_type_identifier, + STATE(3159), 1, + sym_decltype_auto, + STATE(3849), 1, + sym__type_specifier, + STATE(4615), 1, sym_argument_list, - ACTIONS(5723), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5745), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5749), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5751), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5755), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5765), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5759), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5761), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [129828] = 25, + STATE(5737), 1, + sym__scope_resolution, + STATE(7638), 1, + sym_dependent_type_identifier, + STATE(3027), 2, + sym_decltype, + sym_template_type, + ACTIONS(2628), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3156), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [163557] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(2871), 1, + anon_sym_const, + ACTIONS(4572), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(6919), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, - anon_sym_DOT, - ACTIONS(4816), 1, - anon_sym_DASH_GT, - ACTIONS(5747), 1, - anon_sym_SLASH, - ACTIONS(5753), 1, - anon_sym_PIPE, - ACTIONS(5757), 1, - anon_sym_AMP, - ACTIONS(5763), 1, - anon_sym_GT_EQ, - ACTIONS(5767), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, - anon_sym_bitor, - ACTIONS(5771), 1, - anon_sym_bitand, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - ACTIONS(6352), 1, - anon_sym_RBRACE, - STATE(2475), 1, - sym_argument_list, - ACTIONS(5723), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5745), 2, + ACTIONS(7275), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5749), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5751), 2, + ACTIONS(7277), 1, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5755), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5765), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5759), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5761), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [129915] = 25, + ACTIONS(7279), 1, + anon_sym_AMP, + STATE(3964), 1, + sym_parameter_list, + STATE(5457), 1, + sym__function_declarator_seq, + STATE(5677), 1, + sym__abstract_declarator, + STATE(4564), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(5452), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(5004), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + ACTIONS(6921), 10, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [163619] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(2871), 1, + anon_sym_const, + ACTIONS(4572), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(6919), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, - anon_sym_DOT, - ACTIONS(4816), 1, - anon_sym_DASH_GT, - ACTIONS(5747), 1, - anon_sym_SLASH, - ACTIONS(5753), 1, - anon_sym_PIPE, - ACTIONS(5757), 1, - anon_sym_AMP, - ACTIONS(5763), 1, - anon_sym_GT_EQ, - ACTIONS(5767), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, - anon_sym_bitor, - ACTIONS(5771), 1, - anon_sym_bitand, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - ACTIONS(6354), 1, - anon_sym_SEMI, - STATE(2475), 1, - sym_argument_list, - ACTIONS(5723), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5745), 2, + ACTIONS(7275), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5749), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5751), 2, + ACTIONS(7277), 1, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5755), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5765), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5759), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5761), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [130002] = 25, + ACTIONS(7279), 1, + anon_sym_AMP, + STATE(3964), 1, + sym_parameter_list, + STATE(5457), 1, + sym__function_declarator_seq, + STATE(5670), 1, + sym__abstract_declarator, + STATE(4689), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(5452), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(5782), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + ACTIONS(6921), 10, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [163681] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(2660), 1, + sym_auto, + ACTIONS(2662), 1, + anon_sym_decltype, + ACTIONS(6290), 1, + sym_primitive_type, + ACTIONS(6308), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, - anon_sym_LBRACK, - ACTIONS(4814), 1, - anon_sym_DOT, - ACTIONS(4816), 1, - anon_sym_DASH_GT, - ACTIONS(5747), 1, - anon_sym_SLASH, - ACTIONS(5753), 1, - anon_sym_PIPE, - ACTIONS(5757), 1, - anon_sym_AMP, - ACTIONS(5763), 1, - anon_sym_GT_EQ, - ACTIONS(5767), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, - anon_sym_bitor, - ACTIONS(5771), 1, - anon_sym_bitand, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - ACTIONS(6356), 1, - anon_sym_RPAREN, - STATE(2475), 1, + ACTIONS(7565), 1, + sym_identifier, + ACTIONS(7567), 1, + anon_sym_COLON_COLON, + ACTIONS(7569), 1, + anon_sym_enum, + ACTIONS(7571), 1, + anon_sym_class, + ACTIONS(7573), 1, + anon_sym_struct, + ACTIONS(7575), 1, + anon_sym_union, + ACTIONS(7577), 1, + anon_sym_typename, + STATE(2483), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3121), 1, + sym_qualified_type_identifier, + STATE(3159), 1, + sym_decltype_auto, + STATE(3851), 1, + sym__type_specifier, + STATE(4643), 1, sym_argument_list, - ACTIONS(5723), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5745), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5749), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5751), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5755), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5765), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5759), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5761), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [130089] = 25, + STATE(5737), 1, + sym__scope_resolution, + STATE(7638), 1, + sym_dependent_type_identifier, + STATE(3027), 2, + sym_decltype, + sym_template_type, + ACTIONS(2628), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3156), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [163761] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(6308), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, - anon_sym_LBRACK, - ACTIONS(4814), 1, - anon_sym_DOT, - ACTIONS(4816), 1, - anon_sym_DASH_GT, - ACTIONS(5747), 1, - anon_sym_SLASH, - ACTIONS(5753), 1, - anon_sym_PIPE, - ACTIONS(5757), 1, - anon_sym_AMP, - ACTIONS(5763), 1, - anon_sym_GT_EQ, - ACTIONS(5767), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, - anon_sym_bitor, - ACTIONS(5771), 1, - anon_sym_bitand, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - ACTIONS(6358), 1, - anon_sym_SEMI, - STATE(2475), 1, + ACTIONS(7579), 1, + sym_identifier, + ACTIONS(7581), 1, + anon_sym_COLON_COLON, + ACTIONS(7585), 1, + sym_primitive_type, + ACTIONS(7587), 1, + anon_sym_enum, + ACTIONS(7589), 1, + anon_sym_class, + ACTIONS(7591), 1, + anon_sym_struct, + ACTIONS(7593), 1, + anon_sym_union, + ACTIONS(7595), 1, + sym_auto, + ACTIONS(7597), 1, + anon_sym_decltype, + ACTIONS(7599), 1, + anon_sym_typename, + STATE(2504), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2847), 1, + sym__type_specifier, + STATE(3202), 1, + sym_decltype_auto, + STATE(3339), 1, + sym_qualified_type_identifier, + STATE(4642), 1, sym_argument_list, - ACTIONS(5723), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5745), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5749), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5751), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5755), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5765), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5759), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5761), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [130176] = 25, + STATE(5726), 1, + sym__scope_resolution, + STATE(7638), 1, + sym_dependent_type_identifier, + STATE(3102), 2, + sym_decltype, + sym_template_type, + ACTIONS(7583), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3290), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [163841] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, - anon_sym_LPAREN2, - ACTIONS(4798), 1, - anon_sym_LBRACK, - ACTIONS(5286), 1, - anon_sym_DOT, - ACTIONS(5288), 1, - anon_sym_DASH_GT, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6237), 1, - anon_sym_SLASH, - ACTIONS(6243), 1, - anon_sym_PIPE, - ACTIONS(6247), 1, + ACTIONS(4476), 1, + anon_sym_COLON_COLON, + ACTIONS(7530), 1, + anon_sym_LT, + STATE(2659), 1, + sym_template_argument_list, + ACTIONS(4498), 3, anon_sym_AMP, - ACTIONS(6253), 1, - anon_sym_GT_EQ, - ACTIONS(6259), 1, - anon_sym_QMARK, - ACTIONS(6261), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6263), 1, - anon_sym_bitor, - ACTIONS(6265), 1, - anon_sym_bitand, - ACTIONS(6360), 1, + anon_sym_const, anon_sym_COLON, - STATE(2475), 1, - sym_argument_list, - ACTIONS(5723), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6233), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6235), 2, + ACTIONS(4503), 26, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6239), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(6241), 2, anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_or, anon_sym_and, - ACTIONS(6245), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(6255), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6249), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(6251), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [130263] = 25, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [163887] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(6308), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, - anon_sym_LBRACK, - ACTIONS(4814), 1, - anon_sym_DOT, - ACTIONS(4816), 1, - anon_sym_DASH_GT, - ACTIONS(5747), 1, - anon_sym_SLASH, - ACTIONS(5753), 1, - anon_sym_PIPE, - ACTIONS(5757), 1, - anon_sym_AMP, - ACTIONS(5763), 1, - anon_sym_GT_EQ, - ACTIONS(5767), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, - anon_sym_bitor, - ACTIONS(5771), 1, - anon_sym_bitand, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - ACTIONS(6362), 1, - anon_sym_SEMI, - STATE(2475), 1, + ACTIONS(7476), 1, + sym_identifier, + ACTIONS(7478), 1, + anon_sym_COLON_COLON, + ACTIONS(7482), 1, + sym_primitive_type, + ACTIONS(7484), 1, + anon_sym_enum, + ACTIONS(7486), 1, + anon_sym_class, + ACTIONS(7488), 1, + anon_sym_struct, + ACTIONS(7490), 1, + anon_sym_union, + ACTIONS(7492), 1, + sym_auto, + ACTIONS(7494), 1, + anon_sym_decltype, + ACTIONS(7496), 1, + anon_sym_typename, + STATE(2231), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2347), 1, + sym__type_specifier, + STATE(2730), 1, + sym_qualified_type_identifier, + STATE(2760), 1, + sym_decltype_auto, + STATE(4617), 1, sym_argument_list, - ACTIONS(5723), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5745), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5749), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5751), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5755), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5765), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5759), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5761), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [130350] = 25, + STATE(5770), 1, + sym__scope_resolution, + STATE(7638), 1, + sym_dependent_type_identifier, + STATE(2681), 2, + sym_decltype, + sym_template_type, + ACTIONS(7480), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2757), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [163967] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(45), 1, + anon_sym___based, + ACTIONS(7506), 1, + sym_identifier, + ACTIONS(7508), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, - anon_sym_LBRACK, - ACTIONS(4814), 1, - anon_sym_DOT, - ACTIONS(4816), 1, - anon_sym_DASH_GT, - ACTIONS(5747), 1, - anon_sym_SLASH, - ACTIONS(5753), 1, - anon_sym_PIPE, - ACTIONS(5757), 1, - anon_sym_AMP, - ACTIONS(5763), 1, - anon_sym_GT_EQ, - ACTIONS(5767), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, - anon_sym_bitor, - ACTIONS(5771), 1, - anon_sym_bitand, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - ACTIONS(6364), 1, - anon_sym_SEMI, - STATE(2475), 1, - sym_argument_list, - ACTIONS(5723), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5745), 2, + ACTIONS(7510), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5749), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5751), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5755), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5765), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5759), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5761), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [130437] = 25, + STATE(4712), 1, + sym_ms_unaligned_ptr_modifier, + STATE(5752), 1, + sym__type_declarator, + STATE(7376), 1, + sym_ms_based_modifier, + ACTIONS(2869), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(4580), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4815), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(2867), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(5904), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(2871), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [164029] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1925), 1, + sym_auto, + ACTIONS(1927), 1, + anon_sym_decltype, + ACTIONS(6227), 1, + sym_primitive_type, + ACTIONS(6308), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, - anon_sym_LBRACK, - ACTIONS(4814), 1, - anon_sym_DOT, - ACTIONS(4816), 1, - anon_sym_DASH_GT, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5914), 1, - anon_sym_SLASH, - ACTIONS(5920), 1, - anon_sym_PIPE, - ACTIONS(5924), 1, - anon_sym_AMP, - ACTIONS(5930), 1, - anon_sym_GT_EQ, - ACTIONS(5936), 1, - anon_sym_QMARK, - ACTIONS(5938), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5940), 1, - anon_sym_bitor, - ACTIONS(5942), 1, - anon_sym_bitand, - ACTIONS(6366), 1, - anon_sym_RBRACK, - STATE(2475), 1, + ACTIONS(7512), 1, + sym_identifier, + ACTIONS(7514), 1, + anon_sym_COLON_COLON, + ACTIONS(7516), 1, + anon_sym_enum, + ACTIONS(7518), 1, + anon_sym_class, + ACTIONS(7520), 1, + anon_sym_struct, + ACTIONS(7522), 1, + anon_sym_union, + ACTIONS(7524), 1, + anon_sym_typename, + STATE(2230), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2774), 1, + sym_qualified_type_identifier, + STATE(2819), 1, + sym_decltype_auto, + STATE(3823), 1, + sym__type_specifier, + STATE(4669), 1, sym_argument_list, - ACTIONS(5723), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5910), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5912), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5916), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5918), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5922), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5932), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5926), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5928), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [130524] = 25, + STATE(5735), 1, + sym__scope_resolution, + STATE(7638), 1, + sym_dependent_type_identifier, + STATE(2662), 2, + sym_decltype, + sym_template_type, + ACTIONS(1913), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2802), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [164109] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1925), 1, + sym_auto, + ACTIONS(1927), 1, + anon_sym_decltype, + ACTIONS(6227), 1, + sym_primitive_type, + ACTIONS(6308), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, - anon_sym_LBRACK, - ACTIONS(4814), 1, - anon_sym_DOT, - ACTIONS(4816), 1, - anon_sym_DASH_GT, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5914), 1, - anon_sym_SLASH, - ACTIONS(5920), 1, - anon_sym_PIPE, - ACTIONS(5924), 1, - anon_sym_AMP, - ACTIONS(5930), 1, - anon_sym_GT_EQ, - ACTIONS(5936), 1, - anon_sym_QMARK, - ACTIONS(5938), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5940), 1, - anon_sym_bitor, - ACTIONS(5942), 1, - anon_sym_bitand, - ACTIONS(6368), 1, - anon_sym_RBRACK, - STATE(2475), 1, + ACTIONS(7512), 1, + sym_identifier, + ACTIONS(7514), 1, + anon_sym_COLON_COLON, + ACTIONS(7516), 1, + anon_sym_enum, + ACTIONS(7518), 1, + anon_sym_class, + ACTIONS(7520), 1, + anon_sym_struct, + ACTIONS(7522), 1, + anon_sym_union, + ACTIONS(7524), 1, + anon_sym_typename, + STATE(2230), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2774), 1, + sym_qualified_type_identifier, + STATE(2819), 1, + sym_decltype_auto, + STATE(3738), 1, + sym__type_specifier, + STATE(4654), 1, sym_argument_list, - ACTIONS(5723), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5910), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5912), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5916), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5918), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5922), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5932), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5926), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5928), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [130611] = 25, + STATE(5735), 1, + sym__scope_resolution, + STATE(7638), 1, + sym_dependent_type_identifier, + STATE(2662), 2, + sym_decltype, + sym_template_type, + ACTIONS(1913), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2802), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [164189] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, - anon_sym_LPAREN2, - ACTIONS(4798), 1, - anon_sym_LBRACK, - ACTIONS(5286), 1, - anon_sym_DOT, - ACTIONS(5288), 1, - anon_sym_DASH_GT, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6237), 1, - anon_sym_SLASH, - ACTIONS(6243), 1, - anon_sym_PIPE, - ACTIONS(6247), 1, + ACTIONS(4476), 1, + anon_sym_COLON_COLON, + ACTIONS(7601), 1, + anon_sym_LT, + STATE(4650), 1, + sym_template_argument_list, + ACTIONS(4498), 3, anon_sym_AMP, - ACTIONS(6253), 1, - anon_sym_GT_EQ, - ACTIONS(6259), 1, - anon_sym_QMARK, - ACTIONS(6261), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6263), 1, - anon_sym_bitor, - ACTIONS(6265), 1, - anon_sym_bitand, - ACTIONS(6370), 1, + anon_sym_const, anon_sym_COLON, - STATE(2475), 1, - sym_argument_list, - ACTIONS(5723), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6233), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6235), 2, + ACTIONS(4503), 26, + anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6239), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(6241), 2, anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_or, anon_sym_and, - ACTIONS(6245), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(6255), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6249), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(6251), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [130698] = 5, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [164235] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6301), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(6372), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(4917), 11, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(6219), 1, + anon_sym_LBRACE, + ACTIONS(7603), 1, + anon_sym_COLON, + STATE(3674), 1, + sym__enum_base_clause, + STATE(3696), 1, + sym_enumerator_list, + ACTIONS(5125), 3, anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4919), 20, - anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, + anon_sym_const, + ACTIONS(5123), 25, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - [130745] = 25, + anon_sym_try, + anon_sym_requires, + [164283] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, - anon_sym_LPAREN2, - ACTIONS(4798), 1, - anon_sym_LBRACK, - ACTIONS(4814), 1, - anon_sym_DOT, - ACTIONS(4816), 1, - anon_sym_DASH_GT, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5914), 1, - anon_sym_SLASH, - ACTIONS(5920), 1, - anon_sym_PIPE, - ACTIONS(5924), 1, + ACTIONS(4476), 1, + anon_sym_COLON_COLON, + ACTIONS(7601), 1, + anon_sym_LT, + STATE(4650), 1, + sym_template_argument_list, + ACTIONS(5026), 3, anon_sym_AMP, - ACTIONS(5930), 1, - anon_sym_GT_EQ, - ACTIONS(5936), 1, - anon_sym_QMARK, - ACTIONS(5938), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5940), 1, - anon_sym_bitor, - ACTIONS(5942), 1, - anon_sym_bitand, - ACTIONS(6374), 1, - anon_sym_RBRACK, - STATE(2475), 1, - sym_argument_list, - ACTIONS(5723), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5910), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5912), 2, + anon_sym_const, + anon_sym_COLON, + ACTIONS(4481), 26, + anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5916), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5918), 2, anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_or, anon_sym_and, - ACTIONS(5922), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5932), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5926), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5928), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [130832] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [164329] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(6308), 1, + anon_sym_LPAREN2, + ACTIONS(7579), 1, + sym_identifier, + ACTIONS(7581), 1, + anon_sym_COLON_COLON, + ACTIONS(7585), 1, + sym_primitive_type, + ACTIONS(7587), 1, + anon_sym_enum, + ACTIONS(7589), 1, + anon_sym_class, + ACTIONS(7591), 1, + anon_sym_struct, + ACTIONS(7593), 1, + anon_sym_union, + ACTIONS(7595), 1, + sym_auto, + ACTIONS(7597), 1, + anon_sym_decltype, + ACTIONS(7599), 1, + anon_sym_typename, + STATE(2504), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2844), 1, + sym__type_specifier, + STATE(3202), 1, + sym_decltype_auto, + STATE(3339), 1, + sym_qualified_type_identifier, + STATE(4614), 1, + sym_argument_list, + STATE(5726), 1, + sym__scope_resolution, + STATE(7638), 1, + sym_dependent_type_identifier, + STATE(3102), 2, + sym_decltype, + sym_template_type, + ACTIONS(7583), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3290), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [164409] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6219), 1, + anon_sym_LBRACE, + ACTIONS(7603), 1, + anon_sym_COLON, + STATE(3671), 1, + sym__enum_base_clause, + STATE(3739), 1, + sym_enumerator_list, + ACTIONS(5113), 3, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + ACTIONS(5111), 25, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [164457] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4965), 11, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, + ACTIONS(4476), 1, + anon_sym_COLON_COLON, + ACTIONS(7504), 1, anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4963), 24, + STATE(2914), 1, + sym_template_argument_list, + ACTIONS(5026), 3, + anon_sym_AMP, + anon_sym_const, + anon_sym_COLON, + ACTIONS(4481), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_or, anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - [130875] = 25, + anon_sym_requires, + [164503] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(2871), 1, + anon_sym_const, + ACTIONS(4572), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(6919), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, - anon_sym_DOT, - ACTIONS(4816), 1, - anon_sym_DASH_GT, - ACTIONS(5747), 1, - anon_sym_SLASH, - ACTIONS(5753), 1, - anon_sym_PIPE, - ACTIONS(5757), 1, + ACTIONS(7275), 1, + anon_sym_STAR, + ACTIONS(7277), 1, + anon_sym_AMP_AMP, + ACTIONS(7279), 1, anon_sym_AMP, - ACTIONS(5763), 1, - anon_sym_GT_EQ, - ACTIONS(5767), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, - anon_sym_bitor, - ACTIONS(5771), 1, - anon_sym_bitand, - ACTIONS(5773), 1, + STATE(3964), 1, + sym_parameter_list, + STATE(5457), 1, + sym__function_declarator_seq, + STATE(5698), 1, + sym__abstract_declarator, + STATE(4689), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(5452), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6821), 6, anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - ACTIONS(6376), 1, - anon_sym_SEMI, - STATE(2475), 1, - sym_argument_list, - ACTIONS(5723), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5745), 2, + anon_sym_COMMA, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + ACTIONS(6921), 10, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [164565] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6000), 8, + anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5749), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5751), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5755), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5765), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5759), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5761), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [130962] = 25, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(5998), 23, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + anon_sym_virtual, + anon_sym_operator, + [164604] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3732), 1, - anon_sym_RBRACK, - ACTIONS(4166), 1, + STATE(4712), 1, + sym_ms_unaligned_ptr_modifier, + ACTIONS(7612), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(4580), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(7609), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(7607), 6, anon_sym_LPAREN2, - ACTIONS(4798), 1, - anon_sym_LBRACK, - ACTIONS(4814), 1, - anon_sym_DOT, - ACTIONS(4816), 1, - anon_sym_DASH_GT, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5914), 1, - anon_sym_SLASH, - ACTIONS(5920), 1, - anon_sym_PIPE, - ACTIONS(5924), 1, - anon_sym_AMP, - ACTIONS(5930), 1, - anon_sym_GT_EQ, - ACTIONS(5936), 1, - anon_sym_QMARK, - ACTIONS(5938), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5940), 1, - anon_sym_bitor, - ACTIONS(5942), 1, - anon_sym_bitand, - STATE(2475), 1, - sym_argument_list, - ACTIONS(5723), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5910), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5912), 2, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5916), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5918), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5922), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5932), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5926), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5928), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [131049] = 25, + anon_sym_COLON_COLON, + anon_sym_LBRACK, + ACTIONS(7605), 17, + anon_sym_AMP, + anon_sym___based, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [164651] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3696), 1, - anon_sym_RBRACK, - ACTIONS(4166), 1, - anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(7615), 1, + anon_sym___attribute__, + STATE(4581), 2, + sym_attribute_specifier, + aux_sym__function_declarator_seq_repeat1, + ACTIONS(7405), 3, + anon_sym_AMP, anon_sym_LBRACK, - ACTIONS(4814), 1, - anon_sym_DOT, - ACTIONS(4816), 1, + anon_sym_const, + ACTIONS(7403), 25, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, anon_sym_DASH_GT, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5914), 1, - anon_sym_SLASH, - ACTIONS(5920), 1, - anon_sym_PIPE, - ACTIONS(5924), 1, - anon_sym_AMP, - ACTIONS(5930), 1, - anon_sym_GT_EQ, - ACTIONS(5936), 1, - anon_sym_QMARK, - ACTIONS(5938), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5940), 1, - anon_sym_bitor, - ACTIONS(5942), 1, - anon_sym_bitand, - STATE(2475), 1, - sym_argument_list, - ACTIONS(5723), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5910), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5912), 2, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_noexcept, + anon_sym_throw, + anon_sym_requires, + [164694] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6159), 8, + anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5916), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5918), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5922), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5932), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5926), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5928), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [131136] = 25, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(6157), 23, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + anon_sym_virtual, + anon_sym_operator, + [164733] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(6468), 1, + anon_sym_const, + ACTIONS(6512), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(6520), 1, anon_sym_LBRACK, - ACTIONS(5286), 1, - anon_sym_DOT, - ACTIONS(5288), 1, - anon_sym_DASH_GT, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6237), 1, - anon_sym_SLASH, - ACTIONS(6243), 1, - anon_sym_PIPE, - ACTIONS(6247), 1, + ACTIONS(7389), 1, + anon_sym_STAR, + ACTIONS(7391), 1, + anon_sym_AMP_AMP, + ACTIONS(7393), 1, anon_sym_AMP, - ACTIONS(6253), 1, - anon_sym_GT_EQ, - ACTIONS(6259), 1, - anon_sym_QMARK, - ACTIONS(6261), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6263), 1, - anon_sym_bitor, - ACTIONS(6265), 1, - anon_sym_bitand, - ACTIONS(6378), 1, + STATE(4121), 1, + sym_parameter_list, + STATE(5464), 1, + sym__function_declarator_seq, + STATE(5740), 1, + sym__abstract_declarator, + STATE(4587), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(5004), 5, + anon_sym_LBRACK_LBRACK, anon_sym_COLON, - STATE(2475), 1, - sym_argument_list, - ACTIONS(5723), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6233), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6235), 2, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + STATE(5367), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6470), 10, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [164794] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6468), 1, + anon_sym_const, + ACTIONS(6512), 1, + anon_sym_LPAREN2, + ACTIONS(6520), 1, + anon_sym_LBRACK, + ACTIONS(7389), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6239), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(6241), 2, + ACTIONS(7391), 1, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(6245), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(6255), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6249), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(6251), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [131223] = 3, + ACTIONS(7393), 1, + anon_sym_AMP, + STATE(4121), 1, + sym_parameter_list, + STATE(5464), 1, + sym__function_declarator_seq, + STATE(5754), 1, + sym__abstract_declarator, + STATE(4585), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(6803), 5, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + STATE(5367), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6470), 10, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [164855] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4939), 11, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(7618), 1, + anon_sym_const, + ACTIONS(4922), 2, anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(2652), 24, - anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, + STATE(4585), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(7621), 10, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(4924), 16, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, anon_sym_DASH_GT, - anon_sym_GT2, - [131266] = 25, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_noexcept, + anon_sym_throw, + anon_sym_requires, + [164900] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(6468), 1, + anon_sym_const, + ACTIONS(6512), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(6520), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, - anon_sym_DOT, - ACTIONS(4816), 1, - anon_sym_DASH_GT, - ACTIONS(5747), 1, - anon_sym_SLASH, - ACTIONS(5753), 1, - anon_sym_PIPE, - ACTIONS(5757), 1, - anon_sym_AMP, - ACTIONS(5763), 1, - anon_sym_GT_EQ, - ACTIONS(5767), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, - anon_sym_bitor, - ACTIONS(5771), 1, - anon_sym_bitand, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - ACTIONS(5886), 1, - anon_sym_RPAREN, - STATE(2475), 1, - sym_argument_list, - ACTIONS(5723), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5745), 2, + ACTIONS(7389), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5749), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5751), 2, + ACTIONS(7391), 1, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5755), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5765), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5759), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5761), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [131353] = 25, + ACTIONS(7393), 1, + anon_sym_AMP, + STATE(4121), 1, + sym_parameter_list, + STATE(5464), 1, + sym__function_declarator_seq, + STATE(5798), 1, + sym__abstract_declarator, + STATE(4585), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(6821), 5, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + STATE(5367), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6470), 10, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [164961] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(6468), 1, + anon_sym_const, + ACTIONS(6512), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(6520), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, - anon_sym_DOT, - ACTIONS(4816), 1, - anon_sym_DASH_GT, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5914), 1, - anon_sym_SLASH, - ACTIONS(5920), 1, - anon_sym_PIPE, - ACTIONS(5924), 1, - anon_sym_AMP, - ACTIONS(5930), 1, - anon_sym_GT_EQ, - ACTIONS(5936), 1, - anon_sym_QMARK, - ACTIONS(5938), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5940), 1, - anon_sym_bitor, - ACTIONS(5942), 1, - anon_sym_bitand, - ACTIONS(6380), 1, - anon_sym_RBRACK, - STATE(2475), 1, - sym_argument_list, - ACTIONS(5723), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5910), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5912), 2, + ACTIONS(7389), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5916), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5918), 2, + ACTIONS(7391), 1, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5922), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5932), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5926), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5928), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [131440] = 3, + ACTIONS(7393), 1, + anon_sym_AMP, + STATE(4121), 1, + sym_parameter_list, + STATE(5464), 1, + sym__function_declarator_seq, + STATE(5795), 1, + sym__abstract_declarator, + STATE(4585), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(5782), 5, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + STATE(5367), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6470), 10, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [165022] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4633), 11, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(6294), 8, anon_sym_LPAREN2, - anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_COLON_COLON, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, anon_sym_EQ, - anon_sym_GT2, - ACTIONS(4631), 24, + anon_sym_COLON, + ACTIONS(6292), 23, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, anon_sym___based, - anon_sym_LBRACK, anon_sym_static, anon_sym_register, anon_sym_inline, anon_sym_thread_local, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, sym_identifier, - anon_sym_decltype, anon_sym_virtual, - anon_sym_explicit, - anon_sym_template, anon_sym_operator, - [131483] = 25, + [165061] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(45), 1, + anon_sym___based, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1931), 1, + anon_sym_operator, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(2560), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, - anon_sym_LBRACK, - ACTIONS(4814), 1, - anon_sym_DOT, - ACTIONS(4816), 1, - anon_sym_DASH_GT, - ACTIONS(5747), 1, - anon_sym_SLASH, - ACTIONS(5753), 1, - anon_sym_PIPE, - ACTIONS(5757), 1, - anon_sym_AMP, - ACTIONS(5763), 1, - anon_sym_GT_EQ, - ACTIONS(5767), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, - anon_sym_bitor, - ACTIONS(5771), 1, - anon_sym_bitand, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - ACTIONS(6382), 1, - anon_sym_SEMI, - STATE(2475), 1, - sym_argument_list, - ACTIONS(5723), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5745), 2, + ACTIONS(2562), 1, + anon_sym_TILDE, + ACTIONS(5002), 1, + sym_identifier, + ACTIONS(5012), 1, + anon_sym_COLON_COLON, + ACTIONS(5990), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5749), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5751), 2, + ACTIONS(5992), 1, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5755), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5765), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5759), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5761), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [131570] = 25, + ACTIONS(5994), 1, + anon_sym_AMP, + ACTIONS(5996), 1, + anon_sym_LBRACK, + STATE(5316), 1, + sym__scope_resolution, + STATE(5324), 1, + sym__declarator, + STATE(6196), 1, + sym_init_declarator, + STATE(6967), 1, + sym_ms_based_modifier, + STATE(7638), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(5640), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [165131] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(45), 1, + anon_sym___based, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1931), 1, + anon_sym_operator, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(2560), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(2562), 1, + anon_sym_TILDE, + ACTIONS(5002), 1, + sym_identifier, + ACTIONS(5012), 1, + anon_sym_COLON_COLON, + ACTIONS(5996), 1, anon_sym_LBRACK, - ACTIONS(5286), 1, - anon_sym_DOT, - ACTIONS(5288), 1, - anon_sym_DASH_GT, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6237), 1, - anon_sym_SLASH, - ACTIONS(6243), 1, - anon_sym_PIPE, - ACTIONS(6247), 1, - anon_sym_AMP, - ACTIONS(6253), 1, - anon_sym_GT_EQ, - ACTIONS(6259), 1, - anon_sym_QMARK, - ACTIONS(6261), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6263), 1, - anon_sym_bitor, - ACTIONS(6265), 1, - anon_sym_bitand, - ACTIONS(6384), 1, - anon_sym_COLON, - STATE(2475), 1, - sym_argument_list, - ACTIONS(5723), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6233), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6235), 2, + ACTIONS(6014), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6239), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(6241), 2, + ACTIONS(6016), 1, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(6245), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(6255), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6249), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(6251), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [131657] = 25, + ACTIONS(6018), 1, + anon_sym_AMP, + STATE(5316), 1, + sym__scope_resolution, + STATE(5385), 1, + sym__declarator, + STATE(6520), 1, + sym_init_declarator, + STATE(7713), 1, + sym_ms_based_modifier, + STATE(7638), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(5640), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [165201] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(45), 1, + anon_sym___based, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1931), 1, + anon_sym_operator, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(2560), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, - anon_sym_LBRACK, - ACTIONS(4814), 1, - anon_sym_DOT, - ACTIONS(4816), 1, - anon_sym_DASH_GT, - ACTIONS(5747), 1, - anon_sym_SLASH, - ACTIONS(5753), 1, - anon_sym_PIPE, - ACTIONS(5757), 1, - anon_sym_AMP, - ACTIONS(5763), 1, - anon_sym_GT_EQ, - ACTIONS(5767), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, - anon_sym_bitor, - ACTIONS(5771), 1, - anon_sym_bitand, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - ACTIONS(6386), 1, - anon_sym_SEMI, - STATE(2475), 1, - sym_argument_list, - ACTIONS(5723), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5745), 2, + ACTIONS(2562), 1, + anon_sym_TILDE, + ACTIONS(5002), 1, + sym_identifier, + ACTIONS(5012), 1, + anon_sym_COLON_COLON, + ACTIONS(5990), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5749), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5751), 2, + ACTIONS(5992), 1, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5755), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5765), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5759), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5761), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [131744] = 25, + ACTIONS(5994), 1, + anon_sym_AMP, + ACTIONS(5996), 1, + anon_sym_LBRACK, + STATE(5316), 1, + sym__scope_resolution, + STATE(5348), 1, + sym__declarator, + STATE(6196), 1, + sym_init_declarator, + STATE(6967), 1, + sym_ms_based_modifier, + STATE(7638), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(5640), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [165271] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(113), 1, + sym_auto, + ACTIONS(115), 1, + anon_sym_decltype, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1853), 1, + anon_sym_enum, + ACTIONS(1855), 1, + anon_sym_class, + ACTIONS(1857), 1, + anon_sym_struct, + ACTIONS(1859), 1, + anon_sym_union, + ACTIONS(1881), 1, + anon_sym_typename, + ACTIONS(3667), 1, + sym_primitive_type, + ACTIONS(4570), 1, + sym_identifier, + ACTIONS(4580), 1, + anon_sym_COLON_COLON, + STATE(3657), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3677), 1, + sym__type_specifier, + STATE(3694), 1, + sym_qualified_type_identifier, + STATE(3717), 1, + sym_decltype_auto, + STATE(5733), 1, + sym__scope_resolution, + STATE(7638), 1, + sym_dependent_type_identifier, + STATE(3680), 2, + sym_decltype, + sym_template_type, + ACTIONS(59), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3723), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [165345] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(45), 1, + anon_sym___based, + ACTIONS(1931), 1, + anon_sym_operator, + ACTIONS(6644), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, - anon_sym_LBRACK, - ACTIONS(4814), 1, - anon_sym_DOT, - ACTIONS(4816), 1, - anon_sym_DASH_GT, - ACTIONS(5747), 1, - anon_sym_SLASH, - ACTIONS(5753), 1, - anon_sym_PIPE, - ACTIONS(5757), 1, - anon_sym_AMP, - ACTIONS(5763), 1, - anon_sym_GT_EQ, - ACTIONS(5767), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, - anon_sym_bitor, - ACTIONS(5771), 1, - anon_sym_bitand, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - ACTIONS(6388), 1, - anon_sym_RPAREN, - STATE(2475), 1, - sym_argument_list, - ACTIONS(5723), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5745), 2, + ACTIONS(6652), 1, + sym_identifier, + ACTIONS(6654), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5749), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5751), 2, + ACTIONS(6656), 1, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5755), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5765), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5759), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5761), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [131831] = 25, + ACTIONS(6658), 1, + anon_sym_AMP, + STATE(5847), 1, + sym__field_declarator, + STATE(7524), 1, + sym_ms_based_modifier, + STATE(4706), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(5685), 8, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + sym_reference_field_declarator, + sym_template_method, + sym_operator_name, + ACTIONS(2871), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [165403] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, - anon_sym_LPAREN2, - ACTIONS(4798), 1, - anon_sym_LBRACK, - ACTIONS(4814), 1, - anon_sym_DOT, - ACTIONS(4816), 1, - anon_sym_DASH_GT, - ACTIONS(5747), 1, - anon_sym_SLASH, - ACTIONS(5753), 1, - anon_sym_PIPE, - ACTIONS(5757), 1, + ACTIONS(4523), 3, anon_sym_AMP, - ACTIONS(5763), 1, - anon_sym_GT_EQ, - ACTIONS(5767), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, - anon_sym_bitor, - ACTIONS(5771), 1, - anon_sym_bitand, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - ACTIONS(6390), 1, - anon_sym_SEMI, - STATE(2475), 1, - sym_argument_list, - ACTIONS(5723), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5745), 2, + anon_sym_const, + anon_sym_COLON, + ACTIONS(4525), 27, + anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5749), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5751), 2, anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_or, anon_sym_and, - ACTIONS(5755), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5765), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5759), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5761), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [131918] = 25, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [165441] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, - anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(6546), 1, + anon_sym_LBRACE, + ACTIONS(7624), 1, + anon_sym_COLON, + STATE(3898), 1, + sym__enum_base_clause, + STATE(3958), 1, + sym_enumerator_list, + ACTIONS(5125), 3, + anon_sym_AMP, anon_sym_LBRACK, - ACTIONS(4814), 1, - anon_sym_DOT, - ACTIONS(4816), 1, - anon_sym_DASH_GT, - ACTIONS(5747), 1, - anon_sym_SLASH, - ACTIONS(5753), 1, - anon_sym_PIPE, - ACTIONS(5757), 1, + anon_sym_const, + ACTIONS(5123), 23, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [165487] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4527), 3, anon_sym_AMP, - ACTIONS(5763), 1, - anon_sym_GT_EQ, - ACTIONS(5767), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, - anon_sym_bitor, - ACTIONS(5771), 1, - anon_sym_bitand, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - ACTIONS(6392), 1, - anon_sym_RPAREN, - STATE(2475), 1, - sym_argument_list, - ACTIONS(5723), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5745), 2, + anon_sym_const, + anon_sym_COLON, + ACTIONS(4529), 27, + anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5749), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5751), 2, anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_or, anon_sym_and, - ACTIONS(5755), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5765), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5759), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5761), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [132005] = 17, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [165525] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, + ACTIONS(45), 1, anon_sym___based, - ACTIONS(1521), 1, + ACTIONS(1931), 1, anon_sym_operator, - ACTIONS(6291), 1, - sym_identifier, - ACTIONS(6293), 1, + ACTIONS(6644), 1, anon_sym_LPAREN2, - ACTIONS(6295), 1, + ACTIONS(6652), 1, + sym_identifier, + ACTIONS(6654), 1, anon_sym_STAR, - ACTIONS(6297), 1, + ACTIONS(6656), 1, anon_sym_AMP_AMP, - ACTIONS(6299), 1, + ACTIONS(6658), 1, anon_sym_AMP, - STATE(4091), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4795), 1, + STATE(5812), 1, sym__field_declarator, - STATE(6059), 1, + STATE(7524), 1, sym_ms_based_modifier, - ACTIONS(2722), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(3719), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4079), 2, + STATE(4706), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(2720), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(2724), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(4964), 8, + STATE(5685), 8, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, @@ -340056,1617 +442940,1672 @@ static const uint16_t ts_small_parse_table[] = { sym_reference_field_declarator, sym_template_method, sym_operator_name, - [132076] = 3, + ACTIONS(2871), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [165583] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4706), 11, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(4531), 3, anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4708), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + anon_sym_const, + anon_sym_COLON, + ACTIONS(4533), 27, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_or, anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [132119] = 23, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [165621] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, - anon_sym_LPAREN2, - ACTIONS(4798), 1, - anon_sym_LBRACK, - ACTIONS(5286), 1, - anon_sym_DOT, - ACTIONS(5288), 1, - anon_sym_DASH_GT, - ACTIONS(6237), 1, - anon_sym_SLASH, - ACTIONS(6243), 1, - anon_sym_PIPE, - ACTIONS(6247), 1, + ACTIONS(4546), 3, anon_sym_AMP, - ACTIONS(6253), 1, - anon_sym_GT_EQ, - ACTIONS(6261), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6263), 1, - anon_sym_bitor, - ACTIONS(6265), 1, - anon_sym_bitand, - STATE(2475), 1, - sym_argument_list, - ACTIONS(5723), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6233), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6235), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6239), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(6241), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(6245), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(6255), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5003), 3, - anon_sym_DOT_DOT_DOT, + anon_sym_const, anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(6249), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(6251), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [132202] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3137), 10, - anon_sym_COMMA, + ACTIONS(4548), 27, anon_sym_LPAREN2, anon_sym_STAR, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, + anon_sym_COLON_COLON, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_DASH_GT, - ACTIONS(3135), 25, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, + anon_sym_EQ, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - sym_identifier, + anon_sym_or, + anon_sym_and, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_virtual, - anon_sym_operator, anon_sym_try, anon_sym_requires, - [132245] = 25, + [165659] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, - anon_sym_LPAREN2, - ACTIONS(4798), 1, - anon_sym_LBRACK, - ACTIONS(4814), 1, - anon_sym_DOT, - ACTIONS(4816), 1, - anon_sym_DASH_GT, - ACTIONS(5747), 1, - anon_sym_SLASH, - ACTIONS(5753), 1, - anon_sym_PIPE, - ACTIONS(5757), 1, + ACTIONS(4566), 3, anon_sym_AMP, - ACTIONS(5763), 1, - anon_sym_GT_EQ, - ACTIONS(5767), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, - anon_sym_bitor, - ACTIONS(5771), 1, - anon_sym_bitand, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - ACTIONS(6394), 1, - anon_sym_RPAREN, - STATE(2475), 1, - sym_argument_list, - ACTIONS(5723), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5745), 2, + anon_sym_const, + anon_sym_COLON, + ACTIONS(4568), 27, + anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5749), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5751), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5755), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5765), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5759), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5761), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [132332] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4166), 1, - anon_sym_LPAREN2, - ACTIONS(4798), 1, - anon_sym_LBRACK, - ACTIONS(4814), 1, - anon_sym_DOT, - ACTIONS(4816), 1, - anon_sym_DASH_GT, - ACTIONS(5747), 1, - anon_sym_SLASH, - ACTIONS(5753), 1, - anon_sym_PIPE, - ACTIONS(5757), 1, - anon_sym_AMP, - ACTIONS(5763), 1, - anon_sym_GT_EQ, - ACTIONS(5767), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, - anon_sym_bitor, - ACTIONS(5771), 1, - anon_sym_bitand, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - ACTIONS(6396), 1, anon_sym_SEMI, - STATE(2475), 1, - sym_argument_list, - ACTIONS(5723), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5745), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5749), 2, - anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_or, - ACTIONS(5751), 2, - anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(5755), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5765), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5759), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5761), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [132419] = 14, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [165697] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(4517), 3, + anon_sym_AMP, + anon_sym_const, + anon_sym_COLON, + ACTIONS(4519), 27, anon_sym_LPAREN2, - ACTIONS(4798), 1, - anon_sym_LBRACK, - ACTIONS(5286), 1, - anon_sym_DOT, - ACTIONS(5288), 1, - anon_sym_DASH_GT, - ACTIONS(6237), 1, - anon_sym_SLASH, - ACTIONS(6261), 1, - anon_sym_LT_EQ_GT, - STATE(2475), 1, - sym_argument_list, - ACTIONS(5723), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6233), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6235), 2, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6255), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4993), 5, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(4991), 15, - anon_sym_DOT_DOT_DOT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_QMARK, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_or, anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - [132484] = 25, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [165735] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, - anon_sym_LPAREN2, - ACTIONS(4798), 1, - anon_sym_LBRACK, - ACTIONS(4814), 1, - anon_sym_DOT, - ACTIONS(4816), 1, - anon_sym_DASH_GT, - ACTIONS(5747), 1, - anon_sym_SLASH, - ACTIONS(5753), 1, - anon_sym_PIPE, - ACTIONS(5757), 1, + ACTIONS(4535), 3, anon_sym_AMP, - ACTIONS(5763), 1, - anon_sym_GT_EQ, - ACTIONS(5767), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, - anon_sym_bitor, - ACTIONS(5771), 1, - anon_sym_bitand, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - ACTIONS(6398), 1, - anon_sym_RPAREN, - STATE(2475), 1, - sym_argument_list, - ACTIONS(5723), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5745), 2, + anon_sym_const, + anon_sym_COLON, + ACTIONS(4537), 27, + anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5749), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5751), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5755), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5765), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5759), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5761), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [132571] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4166), 1, - anon_sym_LPAREN2, - ACTIONS(4798), 1, - anon_sym_LBRACK, - ACTIONS(4814), 1, - anon_sym_DOT, - ACTIONS(4816), 1, - anon_sym_DASH_GT, - ACTIONS(5747), 1, - anon_sym_SLASH, - ACTIONS(5753), 1, - anon_sym_PIPE, - ACTIONS(5757), 1, - anon_sym_AMP, - ACTIONS(5763), 1, - anon_sym_GT_EQ, - ACTIONS(5767), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, - anon_sym_bitor, - ACTIONS(5771), 1, - anon_sym_bitand, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - ACTIONS(6400), 1, anon_sym_SEMI, - STATE(2475), 1, - sym_argument_list, - ACTIONS(5723), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5745), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5749), 2, - anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_or, - ACTIONS(5751), 2, - anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(5755), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5765), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5759), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5761), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [132658] = 25, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [165773] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, - anon_sym_LPAREN2, - ACTIONS(4798), 1, - anon_sym_LBRACK, - ACTIONS(4814), 1, - anon_sym_DOT, - ACTIONS(4816), 1, - anon_sym_DASH_GT, - ACTIONS(5747), 1, - anon_sym_SLASH, - ACTIONS(5753), 1, - anon_sym_PIPE, - ACTIONS(5757), 1, + ACTIONS(6546), 1, + anon_sym_LBRACE, + ACTIONS(7624), 1, + anon_sym_COLON, + STATE(3903), 1, + sym__enum_base_clause, + STATE(3960), 1, + sym_enumerator_list, + ACTIONS(5113), 3, anon_sym_AMP, - ACTIONS(5763), 1, - anon_sym_GT_EQ, - ACTIONS(5767), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, - anon_sym_bitor, - ACTIONS(5771), 1, - anon_sym_bitand, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - ACTIONS(6402), 1, - anon_sym_SEMI, - STATE(2475), 1, - sym_argument_list, - ACTIONS(5723), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5745), 2, + anon_sym_LBRACK, + anon_sym_const, + ACTIONS(5111), 23, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5749), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5751), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5755), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5765), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5759), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5761), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [132745] = 25, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [165819] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3714), 1, - anon_sym_RBRACK, - ACTIONS(4166), 1, - anon_sym_LPAREN2, - ACTIONS(4798), 1, - anon_sym_LBRACK, - ACTIONS(4814), 1, - anon_sym_DOT, - ACTIONS(4816), 1, - anon_sym_DASH_GT, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5914), 1, - anon_sym_SLASH, - ACTIONS(5920), 1, - anon_sym_PIPE, - ACTIONS(5924), 1, - anon_sym_AMP, - ACTIONS(5930), 1, - anon_sym_GT_EQ, - ACTIONS(5936), 1, - anon_sym_QMARK, - ACTIONS(5938), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5940), 1, - anon_sym_bitor, - ACTIONS(5942), 1, - anon_sym_bitand, - STATE(2475), 1, - sym_argument_list, - ACTIONS(5723), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5910), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5912), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5916), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5918), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5922), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5932), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5926), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5928), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [132832] = 25, + ACTIONS(113), 1, + sym_auto, + ACTIONS(115), 1, + anon_sym_decltype, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(3667), 1, + sym_primitive_type, + ACTIONS(4570), 1, + sym_identifier, + ACTIONS(4580), 1, + anon_sym_COLON_COLON, + ACTIONS(6334), 1, + anon_sym_enum, + ACTIONS(6336), 1, + anon_sym_class, + ACTIONS(6338), 1, + anon_sym_struct, + ACTIONS(6340), 1, + anon_sym_union, + ACTIONS(6342), 1, + anon_sym_typename, + STATE(3694), 1, + sym_qualified_type_identifier, + STATE(3717), 1, + sym_decltype_auto, + STATE(3751), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5733), 1, + sym__scope_resolution, + STATE(5953), 1, + sym__type_specifier, + STATE(7638), 1, + sym_dependent_type_identifier, + STATE(3680), 2, + sym_decltype, + sym_template_type, + ACTIONS(3665), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3723), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [165893] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, - anon_sym_LPAREN2, - ACTIONS(4798), 1, - anon_sym_LBRACK, - ACTIONS(4814), 1, - anon_sym_DOT, - ACTIONS(4816), 1, - anon_sym_DASH_GT, - ACTIONS(5747), 1, - anon_sym_SLASH, - ACTIONS(5753), 1, - anon_sym_PIPE, - ACTIONS(5757), 1, - anon_sym_AMP, - ACTIONS(5763), 1, - anon_sym_GT_EQ, - ACTIONS(5767), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, - anon_sym_bitor, - ACTIONS(5771), 1, - anon_sym_bitand, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - ACTIONS(6404), 1, - anon_sym_SEMI, - STATE(2475), 1, - sym_argument_list, - ACTIONS(5723), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5745), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5749), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5751), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5755), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5765), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5759), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5761), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [132919] = 25, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(7532), 1, + sym_identifier, + ACTIONS(7534), 1, + anon_sym_COLON_COLON, + ACTIONS(7538), 1, + sym_primitive_type, + ACTIONS(7540), 1, + anon_sym_enum, + ACTIONS(7542), 1, + anon_sym_class, + ACTIONS(7544), 1, + anon_sym_struct, + ACTIONS(7546), 1, + anon_sym_union, + ACTIONS(7548), 1, + sym_auto, + ACTIONS(7550), 1, + anon_sym_decltype, + ACTIONS(7552), 1, + anon_sym_typename, + STATE(2267), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2833), 1, + sym__type_specifier, + STATE(2867), 1, + sym_qualified_type_identifier, + STATE(2941), 1, + sym_decltype_auto, + STATE(5713), 1, + sym__scope_resolution, + STATE(7638), 1, + sym_dependent_type_identifier, + STATE(2857), 2, + sym_decltype, + sym_template_type, + ACTIONS(7536), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2942), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [165967] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(6264), 1, + sym_identifier, + ACTIONS(6266), 1, + anon_sym_COLON_COLON, + ACTIONS(6270), 1, + sym_primitive_type, + ACTIONS(6272), 1, + anon_sym_enum, + ACTIONS(6274), 1, + anon_sym_class, + ACTIONS(6276), 1, + anon_sym_struct, + ACTIONS(6278), 1, + anon_sym_union, + ACTIONS(6280), 1, + sym_auto, + ACTIONS(6282), 1, + anon_sym_decltype, + ACTIONS(6284), 1, + anon_sym_typename, + STATE(4546), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4724), 1, + sym__type_specifier, + STATE(4738), 1, + sym_decltype_auto, + STATE(4761), 1, + sym_qualified_type_identifier, + STATE(5766), 1, + sym__scope_resolution, + STATE(7638), 1, + sym_dependent_type_identifier, + STATE(4719), 2, + sym_decltype, + sym_template_type, + ACTIONS(6268), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(4747), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [166041] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(45), 1, + anon_sym___based, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1931), 1, + anon_sym_operator, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(2560), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(2562), 1, + anon_sym_TILDE, + ACTIONS(5002), 1, + sym_identifier, + ACTIONS(5012), 1, + anon_sym_COLON_COLON, + ACTIONS(5996), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, - anon_sym_DOT, - ACTIONS(4816), 1, - anon_sym_DASH_GT, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5914), 1, - anon_sym_SLASH, - ACTIONS(5920), 1, - anon_sym_PIPE, - ACTIONS(5924), 1, - anon_sym_AMP, - ACTIONS(5930), 1, - anon_sym_GT_EQ, - ACTIONS(5936), 1, - anon_sym_QMARK, - ACTIONS(5938), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5940), 1, - anon_sym_bitor, - ACTIONS(5942), 1, - anon_sym_bitand, - ACTIONS(6406), 1, - anon_sym_RBRACK, - STATE(2475), 1, - sym_argument_list, - ACTIONS(5723), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5910), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5912), 2, + ACTIONS(6014), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5916), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5918), 2, + ACTIONS(6016), 1, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5922), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5932), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5926), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5928), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [133006] = 25, + ACTIONS(6018), 1, + anon_sym_AMP, + STATE(5190), 1, + sym__declarator, + STATE(5316), 1, + sym__scope_resolution, + STATE(6221), 1, + sym_init_declarator, + STATE(7713), 1, + sym_ms_based_modifier, + STATE(7638), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(5640), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [166111] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(45), 1, + anon_sym___based, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1931), 1, + anon_sym_operator, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(2560), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(2562), 1, + anon_sym_TILDE, + ACTIONS(5002), 1, + sym_identifier, + ACTIONS(5012), 1, + anon_sym_COLON_COLON, + ACTIONS(5996), 1, anon_sym_LBRACK, - ACTIONS(4893), 1, - anon_sym_COLON, - ACTIONS(5286), 1, - anon_sym_DOT, - ACTIONS(5288), 1, - anon_sym_DASH_GT, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6237), 1, - anon_sym_SLASH, - ACTIONS(6243), 1, - anon_sym_PIPE, - ACTIONS(6247), 1, - anon_sym_AMP, - ACTIONS(6253), 1, - anon_sym_GT_EQ, - ACTIONS(6259), 1, - anon_sym_QMARK, - ACTIONS(6261), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6263), 1, - anon_sym_bitor, - ACTIONS(6265), 1, - anon_sym_bitand, - STATE(2475), 1, - sym_argument_list, - ACTIONS(5723), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6233), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6235), 2, + ACTIONS(6014), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6239), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(6241), 2, + ACTIONS(6016), 1, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(6245), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(6255), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6249), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(6251), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [133093] = 25, + ACTIONS(6018), 1, + anon_sym_AMP, + STATE(5178), 1, + sym__declarator, + STATE(5316), 1, + sym__scope_resolution, + STATE(6274), 1, + sym_init_declarator, + STATE(7713), 1, + sym_ms_based_modifier, + STATE(7638), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(5640), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [166181] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(113), 1, + sym_auto, + ACTIONS(115), 1, + anon_sym_decltype, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(3657), 1, + sym_identifier, + ACTIONS(3663), 1, + anon_sym_COLON_COLON, + ACTIONS(3667), 1, + sym_primitive_type, + ACTIONS(3669), 1, + anon_sym_enum, + ACTIONS(3671), 1, + anon_sym_class, + ACTIONS(3673), 1, + anon_sym_struct, + ACTIONS(3675), 1, + anon_sym_union, + ACTIONS(3677), 1, + anon_sym_typename, + STATE(3677), 1, + sym__type_specifier, + STATE(3694), 1, + sym_qualified_type_identifier, + STATE(3717), 1, + sym_decltype_auto, + STATE(3751), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5779), 1, + sym__scope_resolution, + STATE(7638), 1, + sym_dependent_type_identifier, + STATE(3680), 2, + sym_decltype, + sym_template_type, + ACTIONS(3665), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3723), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [166255] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(2576), 1, + sym_primitive_type, + ACTIONS(2580), 1, + anon_sym_class, + ACTIONS(2582), 1, + anon_sym_struct, + ACTIONS(2584), 1, + anon_sym_union, + ACTIONS(2586), 1, + sym_auto, + ACTIONS(2588), 1, + anon_sym_decltype, + ACTIONS(4570), 1, + sym_identifier, + ACTIONS(5102), 1, + anon_sym_COLON_COLON, + ACTIONS(6330), 1, + anon_sym_enum, + ACTIONS(6332), 1, + anon_sym_typename, + STATE(3881), 1, + sym__type_specifier, + STATE(3916), 1, + sym_decltype_auto, + STATE(3966), 1, + sym_qualified_type_identifier, + STATE(4464), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5718), 1, + sym__scope_resolution, + STATE(7638), 1, + sym_dependent_type_identifier, + STATE(3680), 2, + sym_decltype, + sym_template_type, + ACTIONS(6314), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3918), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [166329] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(2660), 1, + sym_auto, + ACTIONS(2662), 1, + anon_sym_decltype, + ACTIONS(6290), 1, + sym_primitive_type, + ACTIONS(7565), 1, + sym_identifier, + ACTIONS(7567), 1, + anon_sym_COLON_COLON, + ACTIONS(7569), 1, + anon_sym_enum, + ACTIONS(7571), 1, + anon_sym_class, + ACTIONS(7573), 1, + anon_sym_struct, + ACTIONS(7575), 1, + anon_sym_union, + ACTIONS(7577), 1, + anon_sym_typename, + STATE(2483), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2947), 1, + sym__type_specifier, + STATE(3121), 1, + sym_qualified_type_identifier, + STATE(3159), 1, + sym_decltype_auto, + STATE(5737), 1, + sym__scope_resolution, + STATE(7638), 1, + sym_dependent_type_identifier, + STATE(3027), 2, + sym_decltype, + sym_template_type, + ACTIONS(2628), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3156), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [166403] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1925), 1, + sym_auto, + ACTIONS(1927), 1, + anon_sym_decltype, + ACTIONS(6227), 1, + sym_primitive_type, + ACTIONS(7512), 1, + sym_identifier, + ACTIONS(7514), 1, + anon_sym_COLON_COLON, + ACTIONS(7516), 1, + anon_sym_enum, + ACTIONS(7518), 1, + anon_sym_class, + ACTIONS(7520), 1, + anon_sym_struct, + ACTIONS(7522), 1, + anon_sym_union, + ACTIONS(7524), 1, + anon_sym_typename, + STATE(2230), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2587), 1, + sym__type_specifier, + STATE(2774), 1, + sym_qualified_type_identifier, + STATE(2819), 1, + sym_decltype_auto, + STATE(5735), 1, + sym__scope_resolution, + STATE(7638), 1, + sym_dependent_type_identifier, + STATE(2662), 2, + sym_decltype, + sym_template_type, + ACTIONS(1913), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2802), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [166477] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(45), 1, + anon_sym___based, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1931), 1, + anon_sym_operator, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(2560), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(2562), 1, + anon_sym_TILDE, + ACTIONS(5002), 1, + sym_identifier, + ACTIONS(5012), 1, + anon_sym_COLON_COLON, + ACTIONS(5996), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, - anon_sym_DOT, - ACTIONS(4816), 1, - anon_sym_DASH_GT, - ACTIONS(5747), 1, - anon_sym_SLASH, - ACTIONS(5753), 1, - anon_sym_PIPE, - ACTIONS(5757), 1, - anon_sym_AMP, - ACTIONS(5763), 1, - anon_sym_GT_EQ, - ACTIONS(5767), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, - anon_sym_bitor, - ACTIONS(5771), 1, - anon_sym_bitand, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - ACTIONS(6408), 1, - anon_sym_RPAREN, - STATE(2475), 1, - sym_argument_list, - ACTIONS(5723), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5745), 2, + ACTIONS(6014), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5749), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5751), 2, + ACTIONS(6016), 1, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5755), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5765), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5759), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5761), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [133180] = 3, + ACTIONS(6018), 1, + anon_sym_AMP, + STATE(5173), 1, + sym__declarator, + STATE(5316), 1, + sym__scope_resolution, + STATE(6436), 1, + sym_init_declarator, + STATE(7713), 1, + sym_ms_based_modifier, + STATE(7638), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(5640), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [166547] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(7579), 1, + sym_identifier, + ACTIONS(7581), 1, + anon_sym_COLON_COLON, + ACTIONS(7585), 1, + sym_primitive_type, + ACTIONS(7587), 1, + anon_sym_enum, + ACTIONS(7589), 1, + anon_sym_class, + ACTIONS(7591), 1, + anon_sym_struct, + ACTIONS(7593), 1, + anon_sym_union, + ACTIONS(7595), 1, + sym_auto, + ACTIONS(7597), 1, + anon_sym_decltype, + ACTIONS(7599), 1, + anon_sym_typename, + STATE(2504), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2840), 1, + sym__type_specifier, + STATE(3202), 1, + sym_decltype_auto, + STATE(3339), 1, + sym_qualified_type_identifier, + STATE(5726), 1, + sym__scope_resolution, + STATE(7638), 1, + sym_dependent_type_identifier, + STATE(3102), 2, + sym_decltype, + sym_template_type, + ACTIONS(7583), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3290), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [166621] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(2660), 1, + sym_auto, + ACTIONS(2662), 1, + anon_sym_decltype, + ACTIONS(6290), 1, + sym_primitive_type, + ACTIONS(7565), 1, + sym_identifier, + ACTIONS(7567), 1, + anon_sym_COLON_COLON, + ACTIONS(7569), 1, + anon_sym_enum, + ACTIONS(7571), 1, + anon_sym_class, + ACTIONS(7573), 1, + anon_sym_struct, + ACTIONS(7575), 1, + anon_sym_union, + ACTIONS(7577), 1, + anon_sym_typename, + STATE(2483), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3121), 1, + sym_qualified_type_identifier, + STATE(3159), 1, + sym_decltype_auto, + STATE(3858), 1, + sym__type_specifier, + STATE(5737), 1, + sym__scope_resolution, + STATE(7638), 1, + sym_dependent_type_identifier, + STATE(3027), 2, + sym_decltype, + sym_template_type, + ACTIONS(2628), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3156), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [166695] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(4937), 11, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4935), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(45), 1, + anon_sym___based, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1931), 1, + anon_sym_operator, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(2560), 1, anon_sym_LPAREN2, + ACTIONS(2562), 1, + anon_sym_TILDE, + ACTIONS(5002), 1, + sym_identifier, + ACTIONS(5012), 1, + anon_sym_COLON_COLON, + ACTIONS(5996), 1, + anon_sym_LBRACK, + ACTIONS(6014), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(6016), 1, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [133223] = 3, + ACTIONS(6018), 1, + anon_sym_AMP, + STATE(5316), 1, + sym__scope_resolution, + STATE(5463), 1, + sym__declarator, + STATE(6477), 1, + sym_init_declarator, + STATE(7713), 1, + sym_ms_based_modifier, + STATE(7638), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(5640), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [166765] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(4943), 11, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4941), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [133266] = 25, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(7476), 1, + sym_identifier, + ACTIONS(7478), 1, + anon_sym_COLON_COLON, + ACTIONS(7482), 1, + sym_primitive_type, + ACTIONS(7484), 1, + anon_sym_enum, + ACTIONS(7486), 1, + anon_sym_class, + ACTIONS(7488), 1, + anon_sym_struct, + ACTIONS(7490), 1, + anon_sym_union, + ACTIONS(7492), 1, + sym_auto, + ACTIONS(7494), 1, + anon_sym_decltype, + ACTIONS(7496), 1, + anon_sym_typename, + STATE(2231), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2351), 1, + sym__type_specifier, + STATE(2730), 1, + sym_qualified_type_identifier, + STATE(2760), 1, + sym_decltype_auto, + STATE(5770), 1, + sym__scope_resolution, + STATE(7638), 1, + sym_dependent_type_identifier, + STATE(2681), 2, + sym_decltype, + sym_template_type, + ACTIONS(7480), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2757), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [166839] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(45), 1, + anon_sym___based, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1931), 1, + anon_sym_operator, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(2560), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(2562), 1, + anon_sym_TILDE, + ACTIONS(5002), 1, + sym_identifier, + ACTIONS(5012), 1, + anon_sym_COLON_COLON, + ACTIONS(5996), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, - anon_sym_DOT, - ACTIONS(4816), 1, - anon_sym_DASH_GT, - ACTIONS(5747), 1, - anon_sym_SLASH, - ACTIONS(5753), 1, - anon_sym_PIPE, - ACTIONS(5757), 1, - anon_sym_AMP, - ACTIONS(5763), 1, - anon_sym_GT_EQ, - ACTIONS(5767), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, - anon_sym_bitor, - ACTIONS(5771), 1, - anon_sym_bitand, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - ACTIONS(6410), 1, - anon_sym_RPAREN, - STATE(2475), 1, - sym_argument_list, - ACTIONS(5723), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5745), 2, + ACTIONS(6014), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5749), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5751), 2, + ACTIONS(6016), 1, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5755), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5765), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5759), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5761), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [133353] = 3, + ACTIONS(6018), 1, + anon_sym_AMP, + STATE(5201), 1, + sym__declarator, + STATE(5316), 1, + sym__scope_resolution, + STATE(6204), 1, + sym_init_declarator, + STATE(7713), 1, + sym_ms_based_modifier, + STATE(7638), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(5640), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [166909] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(4949), 11, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4947), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [133396] = 23, + ACTIONS(113), 1, + sym_auto, + ACTIONS(115), 1, + anon_sym_decltype, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(3667), 1, + sym_primitive_type, + ACTIONS(4570), 1, + sym_identifier, + ACTIONS(4580), 1, + anon_sym_COLON_COLON, + ACTIONS(6334), 1, + anon_sym_enum, + ACTIONS(6336), 1, + anon_sym_class, + ACTIONS(6338), 1, + anon_sym_struct, + ACTIONS(6340), 1, + anon_sym_union, + ACTIONS(6342), 1, + anon_sym_typename, + STATE(3677), 1, + sym__type_specifier, + STATE(3694), 1, + sym_qualified_type_identifier, + STATE(3717), 1, + sym_decltype_auto, + STATE(3751), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5733), 1, + sym__scope_resolution, + STATE(7638), 1, + sym_dependent_type_identifier, + STATE(3680), 2, + sym_decltype, + sym_template_type, + ACTIONS(3665), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3723), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [166983] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, - anon_sym_LPAREN2, - ACTIONS(4798), 1, - anon_sym_LBRACK, - ACTIONS(5286), 1, - anon_sym_DOT, - ACTIONS(5288), 1, - anon_sym_DASH_GT, - ACTIONS(6237), 1, - anon_sym_SLASH, - ACTIONS(6243), 1, - anon_sym_PIPE, - ACTIONS(6247), 1, - anon_sym_AMP, - ACTIONS(6253), 1, - anon_sym_GT_EQ, - ACTIONS(6261), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6263), 1, - anon_sym_bitor, - ACTIONS(6265), 1, - anon_sym_bitand, - STATE(2475), 1, - sym_argument_list, - ACTIONS(5723), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6233), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6235), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6239), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(6241), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(6245), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(6255), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4818), 3, - anon_sym_DOT_DOT_DOT, - anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(6249), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(6251), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [133479] = 25, + ACTIONS(63), 1, + anon_sym_enum, + ACTIONS(65), 1, + anon_sym_class, + ACTIONS(67), 1, + anon_sym_struct, + ACTIONS(69), 1, + anon_sym_union, + ACTIONS(113), 1, + sym_auto, + ACTIONS(115), 1, + anon_sym_decltype, + ACTIONS(121), 1, + anon_sym_typename, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(3657), 1, + sym_identifier, + ACTIONS(3663), 1, + anon_sym_COLON_COLON, + ACTIONS(3667), 1, + sym_primitive_type, + STATE(3657), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3677), 1, + sym__type_specifier, + STATE(3694), 1, + sym_qualified_type_identifier, + STATE(3717), 1, + sym_decltype_auto, + STATE(5779), 1, + sym__scope_resolution, + STATE(7638), 1, + sym_dependent_type_identifier, + STATE(3680), 2, + sym_decltype, + sym_template_type, + ACTIONS(59), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3723), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [167057] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3662), 1, - anon_sym_RBRACK, - ACTIONS(4166), 1, - anon_sym_LPAREN2, - ACTIONS(4798), 1, - anon_sym_LBRACK, - ACTIONS(4814), 1, - anon_sym_DOT, - ACTIONS(4816), 1, - anon_sym_DASH_GT, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5914), 1, - anon_sym_SLASH, - ACTIONS(5920), 1, - anon_sym_PIPE, - ACTIONS(5924), 1, - anon_sym_AMP, - ACTIONS(5930), 1, - anon_sym_GT_EQ, - ACTIONS(5936), 1, - anon_sym_QMARK, - ACTIONS(5938), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5940), 1, - anon_sym_bitor, - ACTIONS(5942), 1, - anon_sym_bitand, - STATE(2475), 1, - sym_argument_list, - ACTIONS(5723), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5910), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5912), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5916), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5918), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5922), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5932), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5926), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5928), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [133566] = 23, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(7476), 1, + sym_identifier, + ACTIONS(7478), 1, + anon_sym_COLON_COLON, + ACTIONS(7482), 1, + sym_primitive_type, + ACTIONS(7484), 1, + anon_sym_enum, + ACTIONS(7486), 1, + anon_sym_class, + ACTIONS(7488), 1, + anon_sym_struct, + ACTIONS(7490), 1, + anon_sym_union, + ACTIONS(7492), 1, + sym_auto, + ACTIONS(7494), 1, + anon_sym_decltype, + ACTIONS(7496), 1, + anon_sym_typename, + STATE(2231), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2711), 1, + sym__type_specifier, + STATE(2730), 1, + sym_qualified_type_identifier, + STATE(2760), 1, + sym_decltype_auto, + STATE(5770), 1, + sym__scope_resolution, + STATE(7638), 1, + sym_dependent_type_identifier, + STATE(2681), 2, + sym_decltype, + sym_template_type, + ACTIONS(7480), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2757), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [167131] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(45), 1, + anon_sym___based, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1931), 1, + anon_sym_operator, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(2560), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(2562), 1, + anon_sym_TILDE, + ACTIONS(5002), 1, + sym_identifier, + ACTIONS(5012), 1, + anon_sym_COLON_COLON, + ACTIONS(5996), 1, anon_sym_LBRACK, - ACTIONS(5286), 1, - anon_sym_DOT, - ACTIONS(5288), 1, - anon_sym_DASH_GT, - ACTIONS(6237), 1, - anon_sym_SLASH, - ACTIONS(6243), 1, - anon_sym_PIPE, - ACTIONS(6247), 1, - anon_sym_AMP, - ACTIONS(6253), 1, - anon_sym_GT_EQ, - ACTIONS(6261), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6263), 1, - anon_sym_bitor, - ACTIONS(6265), 1, - anon_sym_bitand, - STATE(2475), 1, - sym_argument_list, - ACTIONS(5723), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6233), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6235), 2, + ACTIONS(6014), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6239), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(6241), 2, + ACTIONS(6016), 1, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(6245), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(6255), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4975), 3, - anon_sym_DOT_DOT_DOT, - anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(6249), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(6251), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [133649] = 13, + ACTIONS(6018), 1, + anon_sym_AMP, + STATE(5166), 1, + sym__declarator, + STATE(5316), 1, + sym__scope_resolution, + STATE(6334), 1, + sym_init_declarator, + STATE(7713), 1, + sym_ms_based_modifier, + STATE(7638), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(5640), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [167201] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, - anon_sym_LPAREN2, - ACTIONS(4798), 1, - anon_sym_LBRACK, - ACTIONS(5286), 1, - anon_sym_DOT, - ACTIONS(5288), 1, - anon_sym_DASH_GT, - ACTIONS(6237), 1, - anon_sym_SLASH, - STATE(2475), 1, - sym_argument_list, - ACTIONS(5723), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6233), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6235), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6255), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4883), 5, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(4881), 16, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - [133712] = 25, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(7454), 1, + sym_identifier, + ACTIONS(7456), 1, + anon_sym_COLON_COLON, + ACTIONS(7460), 1, + sym_primitive_type, + ACTIONS(7462), 1, + anon_sym_enum, + ACTIONS(7464), 1, + anon_sym_class, + ACTIONS(7466), 1, + anon_sym_struct, + ACTIONS(7468), 1, + anon_sym_union, + ACTIONS(7470), 1, + sym_auto, + ACTIONS(7472), 1, + anon_sym_decltype, + ACTIONS(7474), 1, + anon_sym_typename, + STATE(2415), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2811), 1, + sym__type_specifier, + STATE(3077), 1, + sym_decltype_auto, + STATE(3135), 1, + sym_qualified_type_identifier, + STATE(5797), 1, + sym__scope_resolution, + STATE(7638), 1, + sym_dependent_type_identifier, + STATE(2957), 2, + sym_decltype, + sym_template_type, + ACTIONS(7458), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3084), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [167275] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3660), 1, - anon_sym_RBRACK, - ACTIONS(4166), 1, - anon_sym_LPAREN2, - ACTIONS(4798), 1, - anon_sym_LBRACK, - ACTIONS(4814), 1, - anon_sym_DOT, - ACTIONS(4816), 1, - anon_sym_DASH_GT, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5914), 1, - anon_sym_SLASH, - ACTIONS(5920), 1, - anon_sym_PIPE, - ACTIONS(5924), 1, - anon_sym_AMP, - ACTIONS(5930), 1, - anon_sym_GT_EQ, - ACTIONS(5936), 1, - anon_sym_QMARK, - ACTIONS(5938), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5940), 1, - anon_sym_bitor, - ACTIONS(5942), 1, - anon_sym_bitand, - STATE(2475), 1, - sym_argument_list, - ACTIONS(5723), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5910), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5912), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5916), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5918), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5922), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5932), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5926), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5928), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [133799] = 12, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(7532), 1, + sym_identifier, + ACTIONS(7534), 1, + anon_sym_COLON_COLON, + ACTIONS(7538), 1, + sym_primitive_type, + ACTIONS(7540), 1, + anon_sym_enum, + ACTIONS(7542), 1, + anon_sym_class, + ACTIONS(7544), 1, + anon_sym_struct, + ACTIONS(7546), 1, + anon_sym_union, + ACTIONS(7548), 1, + sym_auto, + ACTIONS(7550), 1, + anon_sym_decltype, + ACTIONS(7552), 1, + anon_sym_typename, + STATE(2267), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2518), 1, + sym__type_specifier, + STATE(2867), 1, + sym_qualified_type_identifier, + STATE(2941), 1, + sym_decltype_auto, + STATE(5713), 1, + sym__scope_resolution, + STATE(7638), 1, + sym_dependent_type_identifier, + STATE(2857), 2, + sym_decltype, + sym_template_type, + ACTIONS(7536), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2942), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [167349] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, - anon_sym_LPAREN2, - ACTIONS(4798), 1, - anon_sym_LBRACK, - ACTIONS(5286), 1, - anon_sym_DOT, - ACTIONS(5288), 1, - anon_sym_DASH_GT, - ACTIONS(6237), 1, - anon_sym_SLASH, - STATE(2475), 1, - sym_argument_list, - ACTIONS(5723), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6233), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6235), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(4883), 5, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(4881), 18, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - [133860] = 25, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(7454), 1, + sym_identifier, + ACTIONS(7456), 1, + anon_sym_COLON_COLON, + ACTIONS(7460), 1, + sym_primitive_type, + ACTIONS(7462), 1, + anon_sym_enum, + ACTIONS(7464), 1, + anon_sym_class, + ACTIONS(7466), 1, + anon_sym_struct, + ACTIONS(7468), 1, + anon_sym_union, + ACTIONS(7470), 1, + sym_auto, + ACTIONS(7472), 1, + anon_sym_decltype, + ACTIONS(7474), 1, + anon_sym_typename, + STATE(2415), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2788), 1, + sym__type_specifier, + STATE(3077), 1, + sym_decltype_auto, + STATE(3135), 1, + sym_qualified_type_identifier, + STATE(5797), 1, + sym__scope_resolution, + STATE(7638), 1, + sym_dependent_type_identifier, + STATE(2957), 2, + sym_decltype, + sym_template_type, + ACTIONS(7458), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3084), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [167423] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, - anon_sym_LPAREN2, - ACTIONS(4798), 1, - anon_sym_LBRACK, - ACTIONS(4814), 1, - anon_sym_DOT, - ACTIONS(4816), 1, - anon_sym_DASH_GT, - ACTIONS(5747), 1, - anon_sym_SLASH, - ACTIONS(5753), 1, - anon_sym_PIPE, - ACTIONS(5757), 1, - anon_sym_AMP, - ACTIONS(5763), 1, - anon_sym_GT_EQ, - ACTIONS(5767), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, - anon_sym_bitor, - ACTIONS(5771), 1, - anon_sym_bitand, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - ACTIONS(6412), 1, - anon_sym_SEMI, - STATE(2475), 1, - sym_argument_list, - ACTIONS(5723), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5745), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5749), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5751), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5755), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5765), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5759), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5761), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [133947] = 25, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(7579), 1, + sym_identifier, + ACTIONS(7581), 1, + anon_sym_COLON_COLON, + ACTIONS(7585), 1, + sym_primitive_type, + ACTIONS(7587), 1, + anon_sym_enum, + ACTIONS(7589), 1, + anon_sym_class, + ACTIONS(7591), 1, + anon_sym_struct, + ACTIONS(7593), 1, + anon_sym_union, + ACTIONS(7595), 1, + sym_auto, + ACTIONS(7597), 1, + anon_sym_decltype, + ACTIONS(7599), 1, + anon_sym_typename, + STATE(2504), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3086), 1, + sym__type_specifier, + STATE(3202), 1, + sym_decltype_auto, + STATE(3339), 1, + sym_qualified_type_identifier, + STATE(5726), 1, + sym__scope_resolution, + STATE(7638), 1, + sym_dependent_type_identifier, + STATE(3102), 2, + sym_decltype, + sym_template_type, + ACTIONS(7583), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3290), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [167497] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, - anon_sym_LPAREN2, - ACTIONS(4798), 1, - anon_sym_LBRACK, - ACTIONS(4814), 1, - anon_sym_DOT, - ACTIONS(4816), 1, - anon_sym_DASH_GT, - ACTIONS(5747), 1, - anon_sym_SLASH, - ACTIONS(5753), 1, - anon_sym_PIPE, - ACTIONS(5757), 1, - anon_sym_AMP, - ACTIONS(5763), 1, - anon_sym_GT_EQ, - ACTIONS(5767), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, - anon_sym_bitor, - ACTIONS(5771), 1, - anon_sym_bitand, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - ACTIONS(6414), 1, - anon_sym_SEMI, - STATE(2475), 1, - sym_argument_list, - ACTIONS(5723), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5745), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5749), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5751), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5755), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5765), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5759), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5761), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [134034] = 6, + ACTIONS(113), 1, + sym_auto, + ACTIONS(115), 1, + anon_sym_decltype, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(3667), 1, + sym_primitive_type, + ACTIONS(4570), 1, + sym_identifier, + ACTIONS(4580), 1, + anon_sym_COLON_COLON, + ACTIONS(6334), 1, + anon_sym_enum, + ACTIONS(6336), 1, + anon_sym_class, + ACTIONS(6338), 1, + anon_sym_struct, + ACTIONS(6340), 1, + anon_sym_union, + ACTIONS(6342), 1, + anon_sym_typename, + STATE(3694), 1, + sym_qualified_type_identifier, + STATE(3717), 1, + sym_decltype_auto, + STATE(3751), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5733), 1, + sym__scope_resolution, + STATE(5944), 1, + sym__type_specifier, + STATE(7638), 1, + sym_dependent_type_identifier, + STATE(3680), 2, + sym_decltype, + sym_template_type, + ACTIONS(3665), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3723), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [167571] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(3879), 1, - anon_sym_LBRACK, - ACTIONS(3882), 1, - anon_sym_SEMI, - ACTIONS(3872), 3, - anon_sym_RPAREN, + ACTIONS(45), 1, + anon_sym___based, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1931), 1, + anon_sym_operator, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(2560), 1, anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - ACTIONS(3875), 7, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(2562), 1, anon_sym_TILDE, + ACTIONS(5002), 1, + sym_identifier, + ACTIONS(5012), 1, + anon_sym_COLON_COLON, + ACTIONS(5996), 1, + anon_sym_LBRACK, + ACTIONS(6014), 1, anon_sym_STAR, + ACTIONS(6016), 1, anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_EQ, - ACTIONS(3870), 23, + ACTIONS(6018), 1, anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, + STATE(5316), 1, + sym__scope_resolution, + STATE(5357), 1, + sym__declarator, + STATE(6492), 1, + sym_init_declarator, + STATE(7713), 1, + sym_ms_based_modifier, + STATE(7638), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(5640), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [167641] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(45), 1, anon_sym___based, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, + ACTIONS(1329), 1, anon_sym_template, + ACTIONS(1931), 1, anon_sym_operator, - [134083] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4166), 1, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(2560), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(2562), 1, + anon_sym_TILDE, + ACTIONS(5002), 1, + sym_identifier, + ACTIONS(5012), 1, + anon_sym_COLON_COLON, + ACTIONS(5996), 1, anon_sym_LBRACK, - ACTIONS(5286), 1, - anon_sym_DOT, - ACTIONS(5288), 1, - anon_sym_DASH_GT, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6237), 1, - anon_sym_SLASH, - ACTIONS(6243), 1, - anon_sym_PIPE, - ACTIONS(6247), 1, - anon_sym_AMP, - ACTIONS(6253), 1, - anon_sym_GT_EQ, - ACTIONS(6259), 1, - anon_sym_QMARK, - ACTIONS(6261), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6263), 1, - anon_sym_bitor, - ACTIONS(6265), 1, - anon_sym_bitand, - ACTIONS(6416), 1, - anon_sym_COLON, - STATE(2475), 1, - sym_argument_list, - ACTIONS(5723), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6233), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6235), 2, + ACTIONS(6014), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6239), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(6241), 2, + ACTIONS(6016), 1, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(6245), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(6255), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6249), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(6251), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [134170] = 17, + ACTIONS(6018), 1, + anon_sym_AMP, + STATE(5316), 1, + sym__scope_resolution, + STATE(5355), 1, + sym__declarator, + STATE(6196), 1, + sym_init_declarator, + STATE(7713), 1, + sym_ms_based_modifier, + STATE(7638), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(5640), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [167711] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1917), 1, + anon_sym_enum, + ACTIONS(1919), 1, + anon_sym_class, + ACTIONS(1921), 1, + anon_sym_struct, + ACTIONS(1923), 1, + anon_sym_union, + ACTIONS(1925), 1, + sym_auto, + ACTIONS(1927), 1, + anon_sym_decltype, + ACTIONS(1929), 1, + anon_sym_typename, + ACTIONS(6221), 1, + sym_identifier, + ACTIONS(6225), 1, + anon_sym_COLON_COLON, + ACTIONS(6227), 1, + sym_primitive_type, + STATE(2230), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2587), 1, + sym__type_specifier, + STATE(2774), 1, + sym_qualified_type_identifier, + STATE(2819), 1, + sym_decltype_auto, + STATE(5741), 1, + sym__scope_resolution, + STATE(7638), 1, + sym_dependent_type_identifier, + STATE(2662), 2, + sym_decltype, + sym_template_type, + ACTIONS(1913), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2802), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [167785] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, + ACTIONS(45), 1, anon_sym___based, - ACTIONS(1521), 1, + ACTIONS(1931), 1, anon_sym_operator, - ACTIONS(6293), 1, - anon_sym_LPAREN2, - ACTIONS(6418), 1, + ACTIONS(6642), 1, sym_identifier, - ACTIONS(6420), 1, + ACTIONS(6644), 1, + anon_sym_LPAREN2, + ACTIONS(6646), 1, anon_sym_STAR, - ACTIONS(6422), 1, + ACTIONS(6648), 1, anon_sym_AMP_AMP, - ACTIONS(6424), 1, + ACTIONS(6650), 1, anon_sym_AMP, - STATE(4091), 1, - sym_ms_unaligned_ptr_modifier, - STATE(5047), 1, + STATE(5481), 1, sym__field_declarator, - STATE(6046), 1, + STATE(7022), 1, sym_ms_based_modifier, - ACTIONS(2722), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(4056), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4075), 2, + STATE(4706), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(2720), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(2724), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(4964), 8, + STATE(5685), 8, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, @@ -341675,530 +444614,490 @@ static const uint16_t ts_small_parse_table[] = { sym_reference_field_declarator, sym_template_method, sym_operator_name, - [134241] = 25, + ACTIONS(2871), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [167843] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(4572), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(6919), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, - anon_sym_DOT, - ACTIONS(4816), 1, - anon_sym_DASH_GT, - ACTIONS(5747), 1, - anon_sym_SLASH, - ACTIONS(5753), 1, - anon_sym_PIPE, - ACTIONS(5757), 1, - anon_sym_AMP, - ACTIONS(5763), 1, - anon_sym_GT_EQ, - ACTIONS(5767), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, - anon_sym_bitor, - ACTIONS(5771), 1, - anon_sym_bitand, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - ACTIONS(6426), 1, - anon_sym_SEMI, - STATE(2475), 1, - sym_argument_list, - ACTIONS(5723), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5745), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5749), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5751), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5755), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5765), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5759), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5761), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [134328] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1521), 1, - anon_sym_operator, - ACTIONS(6293), 1, - anon_sym_LPAREN2, - ACTIONS(6418), 1, - sym_identifier, - ACTIONS(6420), 1, + ACTIONS(7434), 1, anon_sym_STAR, - ACTIONS(6422), 1, + ACTIONS(7436), 1, anon_sym_AMP_AMP, - ACTIONS(6424), 1, + ACTIONS(7438), 1, anon_sym_AMP, - STATE(4091), 1, - sym_ms_unaligned_ptr_modifier, - STATE(5047), 1, - sym__field_declarator, - STATE(6046), 1, - sym_ms_based_modifier, - ACTIONS(2722), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(3858), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4075), 2, + ACTIONS(7440), 1, + anon_sym_const, + STATE(4108), 1, + sym_parameter_list, + STATE(5457), 1, + sym__function_declarator_seq, + STATE(5865), 1, + sym__abstract_declarator, + STATE(4937), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(2720), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(2724), 8, - anon_sym_const, + ACTIONS(6803), 4, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + STATE(5452), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7442), 10, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - STATE(4964), 8, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - sym_reference_field_declarator, - sym_template_method, - sym_operator_name, - [134399] = 14, + [167903] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, - anon_sym_LPAREN2, - ACTIONS(4798), 1, - anon_sym_LBRACK, - ACTIONS(5286), 1, - anon_sym_DOT, - ACTIONS(5288), 1, - anon_sym_DASH_GT, - ACTIONS(6237), 1, - anon_sym_SLASH, - ACTIONS(6261), 1, - anon_sym_LT_EQ_GT, - STATE(2475), 1, - sym_argument_list, - ACTIONS(5723), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6233), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6235), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6255), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4883), 5, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(4881), 15, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - [134464] = 3, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1925), 1, + sym_auto, + ACTIONS(1927), 1, + anon_sym_decltype, + ACTIONS(6227), 1, + sym_primitive_type, + ACTIONS(7512), 1, + sym_identifier, + ACTIONS(7514), 1, + anon_sym_COLON_COLON, + ACTIONS(7516), 1, + anon_sym_enum, + ACTIONS(7518), 1, + anon_sym_class, + ACTIONS(7520), 1, + anon_sym_struct, + ACTIONS(7522), 1, + anon_sym_union, + ACTIONS(7524), 1, + anon_sym_typename, + STATE(2230), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2774), 1, + sym_qualified_type_identifier, + STATE(2819), 1, + sym_decltype_auto, + STATE(3763), 1, + sym__type_specifier, + STATE(5735), 1, + sym__scope_resolution, + STATE(7638), 1, + sym_dependent_type_identifier, + STATE(2662), 2, + sym_decltype, + sym_template_type, + ACTIONS(1913), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2802), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [167977] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(4997), 11, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4995), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [134507] = 16, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1925), 1, + sym_auto, + ACTIONS(1927), 1, + anon_sym_decltype, + ACTIONS(6227), 1, + sym_primitive_type, + ACTIONS(7512), 1, + sym_identifier, + ACTIONS(7514), 1, + anon_sym_COLON_COLON, + ACTIONS(7516), 1, + anon_sym_enum, + ACTIONS(7518), 1, + anon_sym_class, + ACTIONS(7520), 1, + anon_sym_struct, + ACTIONS(7522), 1, + anon_sym_union, + ACTIONS(7524), 1, + anon_sym_typename, + STATE(2230), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2774), 1, + sym_qualified_type_identifier, + STATE(2819), 1, + sym_decltype_auto, + STATE(3784), 1, + sym__type_specifier, + STATE(5735), 1, + sym__scope_resolution, + STATE(7638), 1, + sym_dependent_type_identifier, + STATE(2662), 2, + sym_decltype, + sym_template_type, + ACTIONS(1913), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2802), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [168051] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(45), 1, + anon_sym___based, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1931), 1, + anon_sym_operator, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(2560), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(2562), 1, + anon_sym_TILDE, + ACTIONS(5002), 1, + sym_identifier, + ACTIONS(5012), 1, + anon_sym_COLON_COLON, + ACTIONS(5996), 1, anon_sym_LBRACK, - ACTIONS(5286), 1, - anon_sym_DOT, - ACTIONS(5288), 1, - anon_sym_DASH_GT, - ACTIONS(6237), 1, - anon_sym_SLASH, - ACTIONS(6253), 1, - anon_sym_GT_EQ, - ACTIONS(6261), 1, - anon_sym_LT_EQ_GT, - STATE(2475), 1, - sym_argument_list, - ACTIONS(4883), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(5723), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6233), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6235), 2, + ACTIONS(6014), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6255), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6251), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(4881), 14, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, + ACTIONS(6016), 1, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - [134576] = 25, + ACTIONS(6018), 1, + anon_sym_AMP, + STATE(5316), 1, + sym__scope_resolution, + STATE(5441), 1, + sym__declarator, + STATE(6204), 1, + sym_init_declarator, + STATE(7713), 1, + sym_ms_based_modifier, + STATE(7638), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(5640), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [168121] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(2576), 1, + sym_primitive_type, + ACTIONS(2586), 1, + sym_auto, + ACTIONS(2588), 1, + anon_sym_decltype, + ACTIONS(3657), 1, + sym_identifier, + ACTIONS(6312), 1, + anon_sym_COLON_COLON, + ACTIONS(6316), 1, + anon_sym_enum, + ACTIONS(6318), 1, + anon_sym_class, + ACTIONS(6320), 1, + anon_sym_struct, + ACTIONS(6322), 1, + anon_sym_union, + ACTIONS(6324), 1, + anon_sym_typename, + STATE(3881), 1, + sym__type_specifier, + STATE(3916), 1, + sym_decltype_auto, + STATE(3966), 1, + sym_qualified_type_identifier, + STATE(4464), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5765), 1, + sym__scope_resolution, + STATE(7638), 1, + sym_dependent_type_identifier, + STATE(3680), 2, + sym_decltype, + sym_template_type, + ACTIONS(6314), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3918), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [168195] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(45), 1, + anon_sym___based, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1931), 1, + anon_sym_operator, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(2560), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(2562), 1, + anon_sym_TILDE, + ACTIONS(5002), 1, + sym_identifier, + ACTIONS(5012), 1, + anon_sym_COLON_COLON, + ACTIONS(5996), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, - anon_sym_DOT, - ACTIONS(4816), 1, - anon_sym_DASH_GT, - ACTIONS(5747), 1, - anon_sym_SLASH, - ACTIONS(5753), 1, - anon_sym_PIPE, - ACTIONS(5757), 1, - anon_sym_AMP, - ACTIONS(5763), 1, - anon_sym_GT_EQ, - ACTIONS(5767), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, - anon_sym_bitor, - ACTIONS(5771), 1, - anon_sym_bitand, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - ACTIONS(6428), 1, - anon_sym_SEMI, - STATE(2475), 1, - sym_argument_list, - ACTIONS(5723), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5745), 2, + ACTIONS(6014), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5749), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5751), 2, + ACTIONS(6016), 1, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5755), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5765), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5759), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5761), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [134663] = 3, + ACTIONS(6018), 1, + anon_sym_AMP, + STATE(5316), 1, + sym__scope_resolution, + STATE(5511), 1, + sym__declarator, + STATE(6907), 1, + sym_init_declarator, + STATE(7713), 1, + sym_ms_based_modifier, + STATE(7638), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(5640), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [168265] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4752), 11, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(5043), 1, + anon_sym_COLON_COLON, + ACTIONS(5064), 3, anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4754), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + anon_sym_const, + anon_sym_COLON, + ACTIONS(5062), 26, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_or, anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [134706] = 17, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [168305] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, - anon_sym_LPAREN2, - ACTIONS(4798), 1, - anon_sym_LBRACK, - ACTIONS(5286), 1, - anon_sym_DOT, - ACTIONS(5288), 1, - anon_sym_DASH_GT, - ACTIONS(6237), 1, - anon_sym_SLASH, - ACTIONS(6253), 1, - anon_sym_GT_EQ, - ACTIONS(6261), 1, - anon_sym_LT_EQ_GT, - STATE(2475), 1, - sym_argument_list, - ACTIONS(4883), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(5723), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6233), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6235), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6255), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6249), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(6251), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(4881), 11, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - [134777] = 25, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(7454), 1, + sym_identifier, + ACTIONS(7456), 1, + anon_sym_COLON_COLON, + ACTIONS(7460), 1, + sym_primitive_type, + ACTIONS(7462), 1, + anon_sym_enum, + ACTIONS(7464), 1, + anon_sym_class, + ACTIONS(7466), 1, + anon_sym_struct, + ACTIONS(7468), 1, + anon_sym_union, + ACTIONS(7470), 1, + sym_auto, + ACTIONS(7472), 1, + anon_sym_decltype, + ACTIONS(7474), 1, + anon_sym_typename, + STATE(2415), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3003), 1, + sym__type_specifier, + STATE(3077), 1, + sym_decltype_auto, + STATE(3135), 1, + sym_qualified_type_identifier, + STATE(5797), 1, + sym__scope_resolution, + STATE(7638), 1, + sym_dependent_type_identifier, + STATE(2957), 2, + sym_decltype, + sym_template_type, + ACTIONS(7458), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3084), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [168379] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(45), 1, + anon_sym___based, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1931), 1, + anon_sym_operator, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(2560), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, - anon_sym_LBRACK, - ACTIONS(4814), 1, - anon_sym_DOT, - ACTIONS(4816), 1, - anon_sym_DASH_GT, - ACTIONS(5747), 1, - anon_sym_SLASH, - ACTIONS(5753), 1, - anon_sym_PIPE, - ACTIONS(5757), 1, - anon_sym_AMP, - ACTIONS(5763), 1, - anon_sym_GT_EQ, - ACTIONS(5767), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, - anon_sym_bitor, - ACTIONS(5771), 1, - anon_sym_bitand, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - ACTIONS(6430), 1, - anon_sym_RPAREN, - STATE(2475), 1, - sym_argument_list, - ACTIONS(5723), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5745), 2, + ACTIONS(2562), 1, + anon_sym_TILDE, + ACTIONS(5002), 1, + sym_identifier, + ACTIONS(5012), 1, + anon_sym_COLON_COLON, + ACTIONS(5990), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5749), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5751), 2, + ACTIONS(5992), 1, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5755), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5765), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5759), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5761), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [134864] = 17, + ACTIONS(5994), 1, + anon_sym_AMP, + ACTIONS(5996), 1, + anon_sym_LBRACK, + STATE(5316), 1, + sym__scope_resolution, + STATE(5327), 1, + sym__declarator, + STATE(6196), 1, + sym_init_declarator, + STATE(6967), 1, + sym_ms_based_modifier, + STATE(7638), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(5640), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [168449] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, + ACTIONS(45), 1, anon_sym___based, - ACTIONS(1521), 1, + ACTIONS(1931), 1, anon_sym_operator, - ACTIONS(6293), 1, - anon_sym_LPAREN2, - ACTIONS(6418), 1, + ACTIONS(6642), 1, sym_identifier, - ACTIONS(6420), 1, + ACTIONS(6644), 1, + anon_sym_LPAREN2, + ACTIONS(6646), 1, anon_sym_STAR, - ACTIONS(6422), 1, + ACTIONS(6648), 1, anon_sym_AMP_AMP, - ACTIONS(6424), 1, + ACTIONS(6650), 1, anon_sym_AMP, - STATE(4091), 1, - sym_ms_unaligned_ptr_modifier, - STATE(5048), 1, + STATE(5504), 1, sym__field_declarator, - STATE(6046), 1, + STATE(7022), 1, sym_ms_based_modifier, - ACTIONS(2722), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(3812), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4062), 2, + STATE(4706), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(2720), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(2724), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(4964), 8, + STATE(5685), 8, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, @@ -342207,4470 +445106,3779 @@ static const uint16_t ts_small_parse_table[] = { sym_reference_field_declarator, sym_template_method, sym_operator_name, - [134935] = 25, + ACTIONS(2871), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [168507] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, - anon_sym_LPAREN2, - ACTIONS(4798), 1, - anon_sym_LBRACK, - ACTIONS(5286), 1, - anon_sym_DOT, - ACTIONS(5288), 1, - anon_sym_DASH_GT, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6237), 1, - anon_sym_SLASH, - ACTIONS(6243), 1, - anon_sym_PIPE, - ACTIONS(6247), 1, - anon_sym_AMP, - ACTIONS(6253), 1, - anon_sym_GT_EQ, - ACTIONS(6259), 1, - anon_sym_QMARK, - ACTIONS(6261), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6263), 1, - anon_sym_bitor, - ACTIONS(6265), 1, - anon_sym_bitand, - ACTIONS(6432), 1, - anon_sym_COLON, - STATE(2475), 1, - sym_argument_list, - ACTIONS(5723), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6233), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6235), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6239), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(6241), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(6245), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(6255), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6249), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(6251), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [135022] = 25, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(7579), 1, + sym_identifier, + ACTIONS(7581), 1, + anon_sym_COLON_COLON, + ACTIONS(7585), 1, + sym_primitive_type, + ACTIONS(7587), 1, + anon_sym_enum, + ACTIONS(7589), 1, + anon_sym_class, + ACTIONS(7591), 1, + anon_sym_struct, + ACTIONS(7593), 1, + anon_sym_union, + ACTIONS(7595), 1, + sym_auto, + ACTIONS(7597), 1, + anon_sym_decltype, + ACTIONS(7599), 1, + anon_sym_typename, + STATE(2504), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2858), 1, + sym__type_specifier, + STATE(3202), 1, + sym_decltype_auto, + STATE(3339), 1, + sym_qualified_type_identifier, + STATE(5726), 1, + sym__scope_resolution, + STATE(7638), 1, + sym_dependent_type_identifier, + STATE(3102), 2, + sym_decltype, + sym_template_type, + ACTIONS(7583), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3290), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [168581] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3618), 1, - anon_sym_RBRACK, - ACTIONS(4166), 1, - anon_sym_LPAREN2, - ACTIONS(4798), 1, - anon_sym_LBRACK, - ACTIONS(4814), 1, - anon_sym_DOT, - ACTIONS(4816), 1, - anon_sym_DASH_GT, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5914), 1, - anon_sym_SLASH, - ACTIONS(5920), 1, - anon_sym_PIPE, - ACTIONS(5924), 1, - anon_sym_AMP, - ACTIONS(5930), 1, - anon_sym_GT_EQ, - ACTIONS(5936), 1, - anon_sym_QMARK, - ACTIONS(5938), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5940), 1, - anon_sym_bitor, - ACTIONS(5942), 1, - anon_sym_bitand, - STATE(2475), 1, - sym_argument_list, - ACTIONS(5723), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5910), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5912), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5916), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5918), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5922), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5932), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5926), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5928), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [135109] = 25, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(2660), 1, + sym_auto, + ACTIONS(2662), 1, + anon_sym_decltype, + ACTIONS(6290), 1, + sym_primitive_type, + ACTIONS(7565), 1, + sym_identifier, + ACTIONS(7567), 1, + anon_sym_COLON_COLON, + ACTIONS(7569), 1, + anon_sym_enum, + ACTIONS(7571), 1, + anon_sym_class, + ACTIONS(7573), 1, + anon_sym_struct, + ACTIONS(7575), 1, + anon_sym_union, + ACTIONS(7577), 1, + anon_sym_typename, + STATE(2483), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3121), 1, + sym_qualified_type_identifier, + STATE(3159), 1, + sym_decltype_auto, + STATE(3834), 1, + sym__type_specifier, + STATE(5737), 1, + sym__scope_resolution, + STATE(7638), 1, + sym_dependent_type_identifier, + STATE(3027), 2, + sym_decltype, + sym_template_type, + ACTIONS(2628), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3156), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [168655] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, - anon_sym_LPAREN2, - ACTIONS(4798), 1, - anon_sym_LBRACK, - ACTIONS(4814), 1, - anon_sym_DOT, - ACTIONS(4816), 1, - anon_sym_DASH_GT, - ACTIONS(5747), 1, - anon_sym_SLASH, - ACTIONS(5753), 1, - anon_sym_PIPE, - ACTIONS(5757), 1, + ACTIONS(5043), 1, + anon_sym_COLON_COLON, + ACTIONS(5041), 3, anon_sym_AMP, - ACTIONS(5763), 1, - anon_sym_GT_EQ, - ACTIONS(5767), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, - anon_sym_bitor, - ACTIONS(5771), 1, - anon_sym_bitand, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - ACTIONS(6434), 1, - anon_sym_SEMI, - STATE(2475), 1, - sym_argument_list, - ACTIONS(5723), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5745), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5749), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5751), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5755), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5765), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5759), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5761), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [135196] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4166), 1, + anon_sym_const, + anon_sym_COLON, + ACTIONS(5039), 26, anon_sym_LPAREN2, - ACTIONS(4798), 1, - anon_sym_LBRACK, - ACTIONS(4814), 1, - anon_sym_DOT, - ACTIONS(4816), 1, - anon_sym_DASH_GT, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5914), 1, - anon_sym_SLASH, - ACTIONS(5920), 1, - anon_sym_PIPE, - ACTIONS(5924), 1, - anon_sym_AMP, - ACTIONS(5930), 1, - anon_sym_GT_EQ, - ACTIONS(5936), 1, - anon_sym_QMARK, - ACTIONS(5938), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5940), 1, - anon_sym_bitor, - ACTIONS(5942), 1, - anon_sym_bitand, - ACTIONS(6436), 1, - anon_sym_RBRACK, - STATE(2475), 1, - sym_argument_list, - ACTIONS(5723), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5910), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5912), 2, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5916), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5918), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5922), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5932), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5926), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5928), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [135283] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4166), 1, - anon_sym_LPAREN2, - ACTIONS(4798), 1, - anon_sym_LBRACK, - ACTIONS(4814), 1, - anon_sym_DOT, - ACTIONS(4816), 1, - anon_sym_DASH_GT, - ACTIONS(5747), 1, - anon_sym_SLASH, - ACTIONS(5753), 1, - anon_sym_PIPE, - ACTIONS(5757), 1, - anon_sym_AMP, - ACTIONS(5763), 1, - anon_sym_GT_EQ, - ACTIONS(5767), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, - anon_sym_bitor, - ACTIONS(5771), 1, - anon_sym_bitand, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - ACTIONS(6438), 1, anon_sym_SEMI, - STATE(2475), 1, - sym_argument_list, - ACTIONS(5723), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5745), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5749), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5751), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5755), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5765), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5759), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5761), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [135370] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3616), 1, - anon_sym_RBRACK, - ACTIONS(4166), 1, - anon_sym_LPAREN2, - ACTIONS(4798), 1, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(4814), 1, - anon_sym_DOT, - ACTIONS(4816), 1, - anon_sym_DASH_GT, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5914), 1, - anon_sym_SLASH, - ACTIONS(5920), 1, - anon_sym_PIPE, - ACTIONS(5924), 1, - anon_sym_AMP, - ACTIONS(5930), 1, - anon_sym_GT_EQ, - ACTIONS(5936), 1, - anon_sym_QMARK, - ACTIONS(5938), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5940), 1, - anon_sym_bitor, - ACTIONS(5942), 1, - anon_sym_bitand, - STATE(2475), 1, - sym_argument_list, - ACTIONS(5723), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5910), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5912), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5916), 2, - anon_sym_PIPE_PIPE, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_or, - ACTIONS(5918), 2, - anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(5922), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5932), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5926), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5928), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [135457] = 25, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [168695] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, - anon_sym_LPAREN2, - ACTIONS(4798), 1, - anon_sym_LBRACK, - ACTIONS(4814), 1, - anon_sym_DOT, - ACTIONS(4816), 1, - anon_sym_DASH_GT, - ACTIONS(5747), 1, - anon_sym_SLASH, - ACTIONS(5753), 1, - anon_sym_PIPE, - ACTIONS(5757), 1, - anon_sym_AMP, - ACTIONS(5763), 1, - anon_sym_GT_EQ, - ACTIONS(5767), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, - anon_sym_bitor, - ACTIONS(5771), 1, - anon_sym_bitand, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - ACTIONS(6440), 1, - anon_sym_RPAREN, - STATE(2475), 1, - sym_argument_list, - ACTIONS(5723), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5745), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5749), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5751), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5755), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5765), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5759), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5761), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [135544] = 19, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(2632), 1, + anon_sym_enum, + ACTIONS(2634), 1, + anon_sym_class, + ACTIONS(2636), 1, + anon_sym_struct, + ACTIONS(2638), 1, + anon_sym_union, + ACTIONS(2660), 1, + sym_auto, + ACTIONS(2662), 1, + anon_sym_decltype, + ACTIONS(2664), 1, + anon_sym_typename, + ACTIONS(6286), 1, + sym_identifier, + ACTIONS(6288), 1, + anon_sym_COLON_COLON, + ACTIONS(6290), 1, + sym_primitive_type, + STATE(2483), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2947), 1, + sym__type_specifier, + STATE(3121), 1, + sym_qualified_type_identifier, + STATE(3159), 1, + sym_decltype_auto, + STATE(5712), 1, + sym__scope_resolution, + STATE(7638), 1, + sym_dependent_type_identifier, + STATE(3027), 2, + sym_decltype, + sym_template_type, + ACTIONS(2628), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3156), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [168769] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(4572), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(6919), 1, anon_sym_LBRACK, - ACTIONS(4883), 1, - anon_sym_PIPE, - ACTIONS(5286), 1, - anon_sym_DOT, - ACTIONS(5288), 1, - anon_sym_DASH_GT, - ACTIONS(6237), 1, - anon_sym_SLASH, - ACTIONS(6247), 1, - anon_sym_AMP, - ACTIONS(6253), 1, - anon_sym_GT_EQ, - ACTIONS(6261), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6265), 1, - anon_sym_bitand, - STATE(2475), 1, - sym_argument_list, - ACTIONS(5723), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6233), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6235), 2, + ACTIONS(7434), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6255), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6249), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(6251), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(4881), 10, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, + ACTIONS(7436), 1, anon_sym_AMP_AMP, - anon_sym_CARET, + ACTIONS(7438), 1, + anon_sym_AMP, + ACTIONS(7440), 1, + anon_sym_const, + STATE(4108), 1, + sym_parameter_list, + STATE(5457), 1, + sym__function_declarator_seq, + STATE(5851), 1, + sym__abstract_declarator, + STATE(4660), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(5004), 4, anon_sym_COLON, - anon_sym_QMARK, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - [135619] = 25, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + STATE(5452), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7442), 10, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [168829] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, - anon_sym_LPAREN2, - ACTIONS(4798), 1, - anon_sym_LBRACK, - ACTIONS(4814), 1, - anon_sym_DOT, - ACTIONS(4816), 1, - anon_sym_DASH_GT, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5914), 1, - anon_sym_SLASH, - ACTIONS(5920), 1, - anon_sym_PIPE, - ACTIONS(5924), 1, + ACTIONS(5043), 1, + anon_sym_COLON_COLON, + ACTIONS(5041), 3, anon_sym_AMP, - ACTIONS(5930), 1, - anon_sym_GT_EQ, - ACTIONS(5936), 1, - anon_sym_QMARK, - ACTIONS(5938), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5940), 1, - anon_sym_bitor, - ACTIONS(5942), 1, - anon_sym_bitand, - ACTIONS(6442), 1, - anon_sym_RBRACK, - STATE(2475), 1, - sym_argument_list, - ACTIONS(5723), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5910), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5912), 2, + anon_sym_const, + anon_sym_COLON, + ACTIONS(5039), 26, + anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5916), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5918), 2, anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_or, anon_sym_and, - ACTIONS(5922), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5932), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5926), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5928), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [135706] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [168869] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4865), 11, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(5052), 3, anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4863), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + anon_sym_const, + anon_sym_COLON, + ACTIONS(5050), 27, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_or, anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [135749] = 20, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [168907] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(45), 1, + anon_sym___based, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1931), 1, + anon_sym_operator, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(2560), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(2562), 1, + anon_sym_TILDE, + ACTIONS(5002), 1, + sym_identifier, + ACTIONS(5012), 1, + anon_sym_COLON_COLON, + ACTIONS(5990), 1, + anon_sym_STAR, + ACTIONS(5992), 1, + anon_sym_AMP_AMP, + ACTIONS(5994), 1, + anon_sym_AMP, + ACTIONS(5996), 1, anon_sym_LBRACK, - ACTIONS(4883), 1, - anon_sym_PIPE, - ACTIONS(5286), 1, - anon_sym_DOT, - ACTIONS(5288), 1, - anon_sym_DASH_GT, - ACTIONS(6237), 1, - anon_sym_SLASH, - ACTIONS(6247), 1, + STATE(5316), 1, + sym__scope_resolution, + STATE(5338), 1, + sym__declarator, + STATE(6196), 1, + sym_init_declarator, + STATE(6967), 1, + sym_ms_based_modifier, + STATE(7638), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(5640), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [168977] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4550), 3, anon_sym_AMP, - ACTIONS(6253), 1, - anon_sym_GT_EQ, - ACTIONS(6261), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6265), 1, - anon_sym_bitand, - STATE(2475), 1, - sym_argument_list, - ACTIONS(5723), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6233), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6235), 2, + anon_sym_const, + anon_sym_COLON, + ACTIONS(4555), 27, + anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6245), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(6255), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6249), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(6251), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(4881), 8, - anon_sym_DOT_DOT_DOT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_COLON, - anon_sym_QMARK, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_or, anon_sym_and, - anon_sym_bitor, - [135826] = 25, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [169015] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(7476), 1, + sym_identifier, + ACTIONS(7478), 1, + anon_sym_COLON_COLON, + ACTIONS(7482), 1, + sym_primitive_type, + ACTIONS(7484), 1, + anon_sym_enum, + ACTIONS(7486), 1, + anon_sym_class, + ACTIONS(7488), 1, + anon_sym_struct, + ACTIONS(7490), 1, + anon_sym_union, + ACTIONS(7492), 1, + sym_auto, + ACTIONS(7494), 1, + anon_sym_decltype, + ACTIONS(7496), 1, + anon_sym_typename, + STATE(2231), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2354), 1, + sym__type_specifier, + STATE(2730), 1, + sym_qualified_type_identifier, + STATE(2760), 1, + sym_decltype_auto, + STATE(5770), 1, + sym__scope_resolution, + STATE(7638), 1, + sym_dependent_type_identifier, + STATE(2681), 2, + sym_decltype, + sym_template_type, + ACTIONS(7480), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2757), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [169089] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(113), 1, + sym_auto, + ACTIONS(115), 1, + anon_sym_decltype, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(3657), 1, + sym_identifier, + ACTIONS(3663), 1, + anon_sym_COLON_COLON, + ACTIONS(3667), 1, + sym_primitive_type, + ACTIONS(6183), 1, + anon_sym_enum, + ACTIONS(6185), 1, + anon_sym_class, + ACTIONS(6187), 1, + anon_sym_struct, + ACTIONS(6189), 1, + anon_sym_union, + ACTIONS(6191), 1, + anon_sym_typename, + STATE(3657), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3677), 1, + sym__type_specifier, + STATE(3694), 1, + sym_qualified_type_identifier, + STATE(3717), 1, + sym_decltype_auto, + STATE(5779), 1, + sym__scope_resolution, + STATE(7638), 1, + sym_dependent_type_identifier, + STATE(3680), 2, + sym_decltype, + sym_template_type, + ACTIONS(59), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3723), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [169163] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(45), 1, + anon_sym___based, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1931), 1, + anon_sym_operator, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(2560), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, - anon_sym_LBRACK, - ACTIONS(4814), 1, - anon_sym_DOT, - ACTIONS(4816), 1, - anon_sym_DASH_GT, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5914), 1, - anon_sym_SLASH, - ACTIONS(5920), 1, - anon_sym_PIPE, - ACTIONS(5924), 1, - anon_sym_AMP, - ACTIONS(5930), 1, - anon_sym_GT_EQ, - ACTIONS(5936), 1, - anon_sym_QMARK, - ACTIONS(5938), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5940), 1, - anon_sym_bitor, - ACTIONS(5942), 1, - anon_sym_bitand, - ACTIONS(6444), 1, - anon_sym_RBRACK, - STATE(2475), 1, - sym_argument_list, - ACTIONS(5723), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5910), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5912), 2, + ACTIONS(2562), 1, + anon_sym_TILDE, + ACTIONS(5002), 1, + sym_identifier, + ACTIONS(5012), 1, + anon_sym_COLON_COLON, + ACTIONS(5990), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5916), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5918), 2, + ACTIONS(5992), 1, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5922), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5932), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5926), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5928), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [135913] = 23, + ACTIONS(5994), 1, + anon_sym_AMP, + ACTIONS(5996), 1, + anon_sym_LBRACK, + STATE(5316), 1, + sym__scope_resolution, + STATE(5329), 1, + sym__declarator, + STATE(6196), 1, + sym_init_declarator, + STATE(6967), 1, + sym_ms_based_modifier, + STATE(7638), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(5640), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [169233] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1925), 1, + sym_auto, + ACTIONS(1927), 1, + anon_sym_decltype, + ACTIONS(6227), 1, + sym_primitive_type, + ACTIONS(7512), 1, + sym_identifier, + ACTIONS(7514), 1, + anon_sym_COLON_COLON, + ACTIONS(7516), 1, + anon_sym_enum, + ACTIONS(7518), 1, + anon_sym_class, + ACTIONS(7520), 1, + anon_sym_struct, + ACTIONS(7522), 1, + anon_sym_union, + ACTIONS(7524), 1, + anon_sym_typename, + STATE(2230), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2774), 1, + sym_qualified_type_identifier, + STATE(2819), 1, + sym_decltype_auto, + STATE(3708), 1, + sym__type_specifier, + STATE(5735), 1, + sym__scope_resolution, + STATE(7638), 1, + sym_dependent_type_identifier, + STATE(2662), 2, + sym_decltype, + sym_template_type, + ACTIONS(1913), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2802), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [169307] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(4572), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(6919), 1, anon_sym_LBRACK, - ACTIONS(5286), 1, - anon_sym_DOT, - ACTIONS(5288), 1, - anon_sym_DASH_GT, - ACTIONS(6237), 1, - anon_sym_SLASH, - ACTIONS(6243), 1, - anon_sym_PIPE, - ACTIONS(6247), 1, - anon_sym_AMP, - ACTIONS(6253), 1, - anon_sym_GT_EQ, - ACTIONS(6261), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6263), 1, - anon_sym_bitor, - ACTIONS(6265), 1, - anon_sym_bitand, - STATE(2475), 1, - sym_argument_list, - ACTIONS(5723), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6233), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6235), 2, + ACTIONS(7434), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6239), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(6241), 2, + ACTIONS(7436), 1, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(6245), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(6255), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4859), 3, - anon_sym_DOT_DOT_DOT, + ACTIONS(7438), 1, + anon_sym_AMP, + ACTIONS(7440), 1, + anon_sym_const, + STATE(4108), 1, + sym_parameter_list, + STATE(5457), 1, + sym__function_declarator_seq, + STATE(5803), 1, + sym__abstract_declarator, + STATE(4937), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(6821), 4, anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(6249), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(6251), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [135996] = 24, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + STATE(5452), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7442), 10, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [169367] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(45), 1, + anon_sym___based, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1931), 1, + anon_sym_operator, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(2560), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(2562), 1, + anon_sym_TILDE, + ACTIONS(5002), 1, + sym_identifier, + ACTIONS(5012), 1, + anon_sym_COLON_COLON, + ACTIONS(5996), 1, anon_sym_LBRACK, - ACTIONS(5286), 1, - anon_sym_DOT, - ACTIONS(5288), 1, - anon_sym_DASH_GT, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6237), 1, - anon_sym_SLASH, - ACTIONS(6243), 1, - anon_sym_PIPE, - ACTIONS(6247), 1, - anon_sym_AMP, - ACTIONS(6253), 1, - anon_sym_GT_EQ, - ACTIONS(6261), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6263), 1, - anon_sym_bitor, - ACTIONS(6265), 1, - anon_sym_bitand, - STATE(2475), 1, - sym_argument_list, - ACTIONS(4774), 2, - anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(5723), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6233), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6235), 2, + ACTIONS(6014), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6239), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(6241), 2, + ACTIONS(6016), 1, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(6245), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(6255), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6249), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(6251), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [136081] = 25, + ACTIONS(6018), 1, + anon_sym_AMP, + STATE(5165), 1, + sym__declarator, + STATE(5316), 1, + sym__scope_resolution, + STATE(6492), 1, + sym_init_declarator, + STATE(7713), 1, + sym_ms_based_modifier, + STATE(7638), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(5640), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [169437] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(45), 1, + anon_sym___based, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1931), 1, + anon_sym_operator, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(2560), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, - anon_sym_LBRACK, - ACTIONS(4814), 1, - anon_sym_DOT, - ACTIONS(4816), 1, - anon_sym_DASH_GT, - ACTIONS(5747), 1, - anon_sym_SLASH, - ACTIONS(5753), 1, - anon_sym_PIPE, - ACTIONS(5757), 1, - anon_sym_AMP, - ACTIONS(5763), 1, - anon_sym_GT_EQ, - ACTIONS(5767), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, - anon_sym_bitor, - ACTIONS(5771), 1, - anon_sym_bitand, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - ACTIONS(6446), 1, - anon_sym_SEMI, - STATE(2475), 1, - sym_argument_list, - ACTIONS(5723), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5745), 2, + ACTIONS(2562), 1, + anon_sym_TILDE, + ACTIONS(5002), 1, + sym_identifier, + ACTIONS(5012), 1, + anon_sym_COLON_COLON, + ACTIONS(5990), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5749), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5751), 2, + ACTIONS(5992), 1, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5755), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5765), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5759), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5761), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [136168] = 25, + ACTIONS(5994), 1, + anon_sym_AMP, + ACTIONS(5996), 1, + anon_sym_LBRACK, + STATE(5316), 1, + sym__scope_resolution, + STATE(5319), 1, + sym__declarator, + STATE(6196), 1, + sym_init_declarator, + STATE(6967), 1, + sym_ms_based_modifier, + STATE(7638), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(5640), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [169507] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(45), 1, + anon_sym___based, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1931), 1, + anon_sym_operator, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(2560), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(2562), 1, + anon_sym_TILDE, + ACTIONS(5002), 1, + sym_identifier, + ACTIONS(5012), 1, + anon_sym_COLON_COLON, + ACTIONS(5996), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, - anon_sym_DOT, - ACTIONS(4816), 1, - anon_sym_DASH_GT, - ACTIONS(5747), 1, - anon_sym_SLASH, - ACTIONS(5753), 1, - anon_sym_PIPE, - ACTIONS(5757), 1, - anon_sym_AMP, - ACTIONS(5763), 1, - anon_sym_GT_EQ, - ACTIONS(5767), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, - anon_sym_bitor, - ACTIONS(5771), 1, - anon_sym_bitand, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - ACTIONS(6448), 1, - anon_sym_SEMI, - STATE(2475), 1, - sym_argument_list, - ACTIONS(5723), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5745), 2, + ACTIONS(6014), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5749), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5751), 2, + ACTIONS(6016), 1, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5755), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5765), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5759), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5761), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [136255] = 25, + ACTIONS(6018), 1, + anon_sym_AMP, + STATE(5221), 1, + sym__declarator, + STATE(5316), 1, + sym__scope_resolution, + STATE(6424), 1, + sym_init_declarator, + STATE(7713), 1, + sym_ms_based_modifier, + STATE(7638), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(5640), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [169577] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(45), 1, + anon_sym___based, + ACTIONS(1931), 1, + anon_sym_operator, + ACTIONS(6644), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, - anon_sym_LBRACK, - ACTIONS(4814), 1, - anon_sym_DOT, - ACTIONS(4816), 1, - anon_sym_DASH_GT, - ACTIONS(5747), 1, - anon_sym_SLASH, - ACTIONS(5753), 1, - anon_sym_PIPE, - ACTIONS(5757), 1, - anon_sym_AMP, - ACTIONS(5763), 1, - anon_sym_GT_EQ, - ACTIONS(5767), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, - anon_sym_bitor, - ACTIONS(5771), 1, - anon_sym_bitand, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - ACTIONS(6450), 1, - anon_sym_SEMI, - STATE(2475), 1, - sym_argument_list, - ACTIONS(5723), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5745), 2, + ACTIONS(6652), 1, + sym_identifier, + ACTIONS(6654), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5749), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5751), 2, + ACTIONS(6656), 1, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5755), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5765), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5759), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5761), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [136342] = 7, + ACTIONS(6658), 1, + anon_sym_AMP, + STATE(5835), 1, + sym__field_declarator, + STATE(7524), 1, + sym_ms_based_modifier, + STATE(4706), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(5685), 8, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + sym_reference_field_declarator, + sym_template_method, + sym_operator_name, + ACTIONS(2871), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [169635] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(5493), 1, - anon_sym_LBRACE, - ACTIONS(6332), 1, - anon_sym_COLON, - STATE(3196), 1, - sym__enum_base_clause, - STATE(3235), 1, - sym_enumerator_list, - ACTIONS(4268), 7, + ACTIONS(4572), 1, anon_sym_LPAREN2, - anon_sym_TILDE, + ACTIONS(6919), 1, + anon_sym_LBRACK, + ACTIONS(7434), 1, anon_sym_STAR, + ACTIONS(7436), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(4270), 24, + ACTIONS(7438), 1, anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, + ACTIONS(7440), 1, anon_sym_const, + STATE(4108), 1, + sym_parameter_list, + STATE(5457), 1, + sym__function_declarator_seq, + STATE(5804), 1, + sym__abstract_declarator, + STATE(4937), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(5782), 4, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + STATE(5452), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7442), 10, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, + [169695] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(45), 1, + anon_sym___based, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1931), 1, + anon_sym_operator, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(2560), 1, + anon_sym_LPAREN2, + ACTIONS(2562), 1, + anon_sym_TILDE, + ACTIONS(5002), 1, + sym_identifier, + ACTIONS(5012), 1, + anon_sym_COLON_COLON, + ACTIONS(5996), 1, + anon_sym_LBRACK, + ACTIONS(6014), 1, + anon_sym_STAR, + ACTIONS(6016), 1, + anon_sym_AMP_AMP, + ACTIONS(6018), 1, + anon_sym_AMP, + STATE(5157), 1, + sym__declarator, + STATE(5316), 1, + sym__scope_resolution, + STATE(6520), 1, + sym_init_declarator, + STATE(7713), 1, + sym_ms_based_modifier, + STATE(7638), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(5640), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [169765] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(7532), 1, sym_identifier, + ACTIONS(7534), 1, + anon_sym_COLON_COLON, + ACTIONS(7538), 1, + sym_primitive_type, + ACTIONS(7540), 1, + anon_sym_enum, + ACTIONS(7542), 1, + anon_sym_class, + ACTIONS(7544), 1, + anon_sym_struct, + ACTIONS(7546), 1, + anon_sym_union, + ACTIONS(7548), 1, sym_auto, + ACTIONS(7550), 1, anon_sym_decltype, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - [136393] = 25, + ACTIONS(7552), 1, + anon_sym_typename, + STATE(2267), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2526), 1, + sym__type_specifier, + STATE(2867), 1, + sym_qualified_type_identifier, + STATE(2941), 1, + sym_decltype_auto, + STATE(5713), 1, + sym__scope_resolution, + STATE(7638), 1, + sym_dependent_type_identifier, + STATE(2857), 2, + sym_decltype, + sym_template_type, + ACTIONS(7536), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2942), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [169839] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(45), 1, + anon_sym___based, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1931), 1, + anon_sym_operator, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(2560), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(2562), 1, + anon_sym_TILDE, + ACTIONS(5002), 1, + sym_identifier, + ACTIONS(5012), 1, + anon_sym_COLON_COLON, + ACTIONS(5996), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, - anon_sym_DOT, - ACTIONS(4816), 1, - anon_sym_DASH_GT, - ACTIONS(5747), 1, - anon_sym_SLASH, - ACTIONS(5753), 1, - anon_sym_PIPE, - ACTIONS(5757), 1, - anon_sym_AMP, - ACTIONS(5763), 1, - anon_sym_GT_EQ, - ACTIONS(5767), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, - anon_sym_bitor, - ACTIONS(5771), 1, - anon_sym_bitand, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - ACTIONS(6452), 1, - anon_sym_RPAREN, - STATE(2475), 1, - sym_argument_list, - ACTIONS(5723), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5745), 2, + ACTIONS(6014), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5749), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5751), 2, + ACTIONS(6016), 1, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5755), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5765), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5759), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5761), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [136480] = 21, + ACTIONS(6018), 1, + anon_sym_AMP, + STATE(5316), 1, + sym__scope_resolution, + STATE(5403), 1, + sym__declarator, + STATE(6436), 1, + sym_init_declarator, + STATE(7713), 1, + sym_ms_based_modifier, + STATE(7638), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(5640), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [169909] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(45), 1, + anon_sym___based, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1931), 1, + anon_sym_operator, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(2560), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(2562), 1, + anon_sym_TILDE, + ACTIONS(5002), 1, + sym_identifier, + ACTIONS(5012), 1, + anon_sym_COLON_COLON, + ACTIONS(5996), 1, anon_sym_LBRACK, - ACTIONS(5286), 1, - anon_sym_DOT, - ACTIONS(5288), 1, - anon_sym_DASH_GT, - ACTIONS(6237), 1, - anon_sym_SLASH, - ACTIONS(6243), 1, - anon_sym_PIPE, - ACTIONS(6247), 1, - anon_sym_AMP, - ACTIONS(6253), 1, - anon_sym_GT_EQ, - ACTIONS(6261), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6263), 1, - anon_sym_bitor, - ACTIONS(6265), 1, - anon_sym_bitand, - STATE(2475), 1, - sym_argument_list, - ACTIONS(5723), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6233), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6235), 2, + ACTIONS(6014), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6245), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(6255), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6249), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(6251), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(4881), 7, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, + ACTIONS(6016), 1, anon_sym_AMP_AMP, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_or, - anon_sym_and, - [136559] = 25, + ACTIONS(6018), 1, + anon_sym_AMP, + STATE(5209), 1, + sym__declarator, + STATE(5316), 1, + sym__scope_resolution, + STATE(6477), 1, + sym_init_declarator, + STATE(7713), 1, + sym_ms_based_modifier, + STATE(7638), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(5640), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [169979] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(2576), 1, + sym_primitive_type, + ACTIONS(2578), 1, + anon_sym_enum, + ACTIONS(2580), 1, + anon_sym_class, + ACTIONS(2582), 1, + anon_sym_struct, + ACTIONS(2584), 1, + anon_sym_union, + ACTIONS(2586), 1, + sym_auto, + ACTIONS(2588), 1, + anon_sym_decltype, + ACTIONS(2590), 1, + anon_sym_typename, + ACTIONS(4570), 1, + sym_identifier, + ACTIONS(5102), 1, + anon_sym_COLON_COLON, + STATE(3881), 1, + sym__type_specifier, + STATE(3916), 1, + sym_decltype_auto, + STATE(3966), 1, + sym_qualified_type_identifier, + STATE(3981), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5718), 1, + sym__scope_resolution, + STATE(7638), 1, + sym_dependent_type_identifier, + STATE(3680), 2, + sym_decltype, + sym_template_type, + ACTIONS(2574), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3918), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [170053] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(45), 1, + anon_sym___based, + ACTIONS(1931), 1, + anon_sym_operator, + ACTIONS(6642), 1, + sym_identifier, + ACTIONS(6644), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, - anon_sym_LBRACK, - ACTIONS(5286), 1, - anon_sym_DOT, - ACTIONS(5288), 1, - anon_sym_DASH_GT, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6237), 1, - anon_sym_SLASH, - ACTIONS(6243), 1, - anon_sym_PIPE, - ACTIONS(6247), 1, - anon_sym_AMP, - ACTIONS(6253), 1, - anon_sym_GT_EQ, - ACTIONS(6259), 1, - anon_sym_QMARK, - ACTIONS(6261), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6263), 1, - anon_sym_bitor, - ACTIONS(6265), 1, - anon_sym_bitand, - ACTIONS(6454), 1, - anon_sym_COLON, - STATE(2475), 1, - sym_argument_list, - ACTIONS(5723), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6233), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6235), 2, + ACTIONS(6646), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6239), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(6241), 2, + ACTIONS(6648), 1, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(6245), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(6255), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6249), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(6251), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [136646] = 25, + ACTIONS(6650), 1, + anon_sym_AMP, + STATE(5470), 1, + sym__field_declarator, + STATE(7022), 1, + sym_ms_based_modifier, + STATE(4706), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(5685), 8, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + sym_reference_field_declarator, + sym_template_method, + sym_operator_name, + ACTIONS(2871), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [170111] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(45), 1, + anon_sym___based, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1931), 1, + anon_sym_operator, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(2560), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, - anon_sym_LBRACK, - ACTIONS(4814), 1, - anon_sym_DOT, - ACTIONS(4816), 1, - anon_sym_DASH_GT, - ACTIONS(5747), 1, - anon_sym_SLASH, - ACTIONS(5753), 1, - anon_sym_PIPE, - ACTIONS(5757), 1, - anon_sym_AMP, - ACTIONS(5763), 1, - anon_sym_GT_EQ, - ACTIONS(5767), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, - anon_sym_bitor, - ACTIONS(5771), 1, - anon_sym_bitand, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - ACTIONS(6456), 1, - anon_sym_SEMI, - STATE(2475), 1, - sym_argument_list, - ACTIONS(5723), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5745), 2, + ACTIONS(2562), 1, + anon_sym_TILDE, + ACTIONS(5002), 1, + sym_identifier, + ACTIONS(5012), 1, + anon_sym_COLON_COLON, + ACTIONS(5990), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5749), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5751), 2, + ACTIONS(5992), 1, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5755), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5765), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5759), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5761), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [136733] = 25, + ACTIONS(5994), 1, + anon_sym_AMP, + ACTIONS(5996), 1, + anon_sym_LBRACK, + STATE(5316), 1, + sym__scope_resolution, + STATE(5328), 1, + sym__declarator, + STATE(6196), 1, + sym_init_declarator, + STATE(6967), 1, + sym_ms_based_modifier, + STATE(7638), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(5640), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [170181] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(45), 1, + anon_sym___based, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1931), 1, + anon_sym_operator, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(2560), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(2562), 1, + anon_sym_TILDE, + ACTIONS(5002), 1, + sym_identifier, + ACTIONS(5012), 1, + anon_sym_COLON_COLON, + ACTIONS(5996), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, - anon_sym_DOT, - ACTIONS(4816), 1, - anon_sym_DASH_GT, - ACTIONS(5747), 1, - anon_sym_SLASH, - ACTIONS(5753), 1, - anon_sym_PIPE, - ACTIONS(5757), 1, - anon_sym_AMP, - ACTIONS(5763), 1, - anon_sym_GT_EQ, - ACTIONS(5767), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, - anon_sym_bitor, - ACTIONS(5771), 1, - anon_sym_bitand, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - ACTIONS(6458), 1, - anon_sym_SEMI, - STATE(2475), 1, - sym_argument_list, - ACTIONS(5723), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5745), 2, + ACTIONS(6014), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5749), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5751), 2, + ACTIONS(6016), 1, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5755), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5765), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5759), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5761), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [136820] = 25, + ACTIONS(6018), 1, + anon_sym_AMP, + STATE(5316), 1, + sym__scope_resolution, + STATE(5398), 1, + sym__declarator, + STATE(6196), 1, + sym_init_declarator, + STATE(7713), 1, + sym_ms_based_modifier, + STATE(7638), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(5640), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [170251] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1925), 1, + sym_auto, + ACTIONS(1927), 1, + anon_sym_decltype, + ACTIONS(6227), 1, + sym_primitive_type, + ACTIONS(7512), 1, + sym_identifier, + ACTIONS(7514), 1, + anon_sym_COLON_COLON, + ACTIONS(7516), 1, + anon_sym_enum, + ACTIONS(7518), 1, + anon_sym_class, + ACTIONS(7520), 1, + anon_sym_struct, + ACTIONS(7522), 1, + anon_sym_union, + ACTIONS(7524), 1, + anon_sym_typename, + STATE(2230), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2774), 1, + sym_qualified_type_identifier, + STATE(2819), 1, + sym_decltype_auto, + STATE(3798), 1, + sym__type_specifier, + STATE(5735), 1, + sym__scope_resolution, + STATE(7638), 1, + sym_dependent_type_identifier, + STATE(2662), 2, + sym_decltype, + sym_template_type, + ACTIONS(1913), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2802), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [170325] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(45), 1, + anon_sym___based, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1931), 1, + anon_sym_operator, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(2560), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(2562), 1, + anon_sym_TILDE, + ACTIONS(5002), 1, + sym_identifier, + ACTIONS(5012), 1, + anon_sym_COLON_COLON, + ACTIONS(5996), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, - anon_sym_DOT, - ACTIONS(4816), 1, - anon_sym_DASH_GT, - ACTIONS(5747), 1, - anon_sym_SLASH, - ACTIONS(5753), 1, - anon_sym_PIPE, - ACTIONS(5757), 1, - anon_sym_AMP, - ACTIONS(5763), 1, - anon_sym_GT_EQ, - ACTIONS(5767), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, - anon_sym_bitor, - ACTIONS(5771), 1, - anon_sym_bitand, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - ACTIONS(6460), 1, - anon_sym_SEMI, - STATE(2475), 1, - sym_argument_list, - ACTIONS(5723), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5745), 2, + ACTIONS(6014), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5749), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5751), 2, + ACTIONS(6016), 1, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5755), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5765), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5759), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5761), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [136907] = 25, + ACTIONS(6018), 1, + anon_sym_AMP, + STATE(5316), 1, + sym__scope_resolution, + STATE(5440), 1, + sym__declarator, + STATE(7713), 1, + sym_ms_based_modifier, + STATE(7638), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(5640), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [170392] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(29), 1, + anon_sym_AMP_AMP, + ACTIONS(45), 1, + anon_sym___based, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1931), 1, + anon_sym_operator, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(2560), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, - anon_sym_LBRACK, - ACTIONS(4814), 1, - anon_sym_DOT, - ACTIONS(4816), 1, - anon_sym_DASH_GT, - ACTIONS(5747), 1, - anon_sym_SLASH, - ACTIONS(5753), 1, - anon_sym_PIPE, - ACTIONS(5757), 1, - anon_sym_AMP, - ACTIONS(5763), 1, - anon_sym_GT_EQ, - ACTIONS(5767), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, - anon_sym_bitor, - ACTIONS(5771), 1, - anon_sym_bitand, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - ACTIONS(6462), 1, - anon_sym_SEMI, - STATE(2475), 1, - sym_argument_list, - ACTIONS(5723), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5745), 2, + ACTIONS(2562), 1, + anon_sym_TILDE, + ACTIONS(2564), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5749), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5751), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5755), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5765), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5759), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5761), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [136994] = 11, + ACTIONS(2566), 1, + anon_sym_AMP, + ACTIONS(4823), 1, + sym_identifier, + ACTIONS(5072), 1, + anon_sym_COLON_COLON, + ACTIONS(5996), 1, + anon_sym_LBRACK, + STATE(5352), 1, + sym__scope_resolution, + STATE(5838), 1, + sym__declarator, + STATE(7654), 1, + sym_ms_based_modifier, + STATE(7638), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(5640), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [170459] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(45), 1, + anon_sym___based, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1931), 1, + anon_sym_operator, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(2560), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(2562), 1, + anon_sym_TILDE, + ACTIONS(4823), 1, + sym_identifier, + ACTIONS(5072), 1, + anon_sym_COLON_COLON, + ACTIONS(5996), 1, anon_sym_LBRACK, - ACTIONS(5286), 1, - anon_sym_DOT, - ACTIONS(5288), 1, - anon_sym_DASH_GT, - ACTIONS(6237), 1, - anon_sym_SLASH, - STATE(2475), 1, - sym_argument_list, - ACTIONS(5723), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6235), 2, + ACTIONS(6047), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(4883), 7, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(4881), 18, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, + ACTIONS(6049), 1, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - [137053] = 25, + ACTIONS(6051), 1, + anon_sym_AMP, + STATE(5352), 1, + sym__scope_resolution, + STATE(5854), 1, + sym__declarator, + STATE(7052), 1, + sym_ms_based_modifier, + STATE(7638), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(5640), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [170526] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(45), 1, + anon_sym___based, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1931), 1, + anon_sym_operator, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(2560), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(2562), 1, + anon_sym_TILDE, + ACTIONS(4823), 1, + sym_identifier, + ACTIONS(5072), 1, + anon_sym_COLON_COLON, + ACTIONS(5996), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, - anon_sym_DOT, - ACTIONS(4816), 1, - anon_sym_DASH_GT, - ACTIONS(5747), 1, - anon_sym_SLASH, - ACTIONS(5753), 1, - anon_sym_PIPE, - ACTIONS(5757), 1, - anon_sym_AMP, - ACTIONS(5763), 1, - anon_sym_GT_EQ, - ACTIONS(5767), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, - anon_sym_bitor, - ACTIONS(5771), 1, - anon_sym_bitand, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - ACTIONS(6464), 1, - anon_sym_SEMI, - STATE(2475), 1, - sym_argument_list, - ACTIONS(5723), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5745), 2, + ACTIONS(6047), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5749), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5751), 2, + ACTIONS(6049), 1, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5755), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5765), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5759), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5761), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [137140] = 25, + ACTIONS(6051), 1, + anon_sym_AMP, + STATE(5352), 1, + sym__scope_resolution, + STATE(5841), 1, + sym__declarator, + STATE(7052), 1, + sym_ms_based_modifier, + STATE(7638), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(5640), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [170593] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, - anon_sym_LPAREN2, - ACTIONS(4798), 1, - anon_sym_LBRACK, - ACTIONS(4814), 1, - anon_sym_DOT, - ACTIONS(4816), 1, - anon_sym_DASH_GT, - ACTIONS(5747), 1, - anon_sym_SLASH, - ACTIONS(5753), 1, - anon_sym_PIPE, - ACTIONS(5757), 1, + ACTIONS(4878), 1, + anon_sym_COLON, + ACTIONS(7626), 1, + anon_sym_LBRACE, + STATE(4758), 1, + sym_field_declaration_list, + STATE(6040), 1, + sym_virtual_specifier, + STATE(6740), 1, + sym_base_class_clause, + ACTIONS(4880), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4939), 2, anon_sym_AMP, - ACTIONS(5763), 1, - anon_sym_GT_EQ, - ACTIONS(5767), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, - anon_sym_bitor, - ACTIONS(5771), 1, - anon_sym_bitand, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - ACTIONS(6466), 1, - anon_sym_RPAREN, - STATE(2475), 1, - sym_argument_list, - ACTIONS(5723), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5745), 2, + anon_sym_const, + ACTIONS(4937), 20, + anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5749), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5751), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5755), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5765), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5759), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5761), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [137227] = 25, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [170642] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(29), 1, + anon_sym_AMP_AMP, + ACTIONS(45), 1, + anon_sym___based, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1931), 1, + anon_sym_operator, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(2560), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, - anon_sym_LBRACK, - ACTIONS(4814), 1, - anon_sym_DOT, - ACTIONS(4816), 1, - anon_sym_DASH_GT, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5914), 1, - anon_sym_SLASH, - ACTIONS(5920), 1, - anon_sym_PIPE, - ACTIONS(5924), 1, - anon_sym_AMP, - ACTIONS(5930), 1, - anon_sym_GT_EQ, - ACTIONS(5936), 1, - anon_sym_QMARK, - ACTIONS(5938), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5940), 1, - anon_sym_bitor, - ACTIONS(5942), 1, - anon_sym_bitand, - ACTIONS(6468), 1, - anon_sym_RBRACK, - STATE(2475), 1, - sym_argument_list, - ACTIONS(5723), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5910), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5912), 2, + ACTIONS(2562), 1, + anon_sym_TILDE, + ACTIONS(2564), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5916), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5918), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5922), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5932), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5926), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5928), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [137314] = 25, + ACTIONS(2566), 1, + anon_sym_AMP, + ACTIONS(4823), 1, + sym_identifier, + ACTIONS(5072), 1, + anon_sym_COLON_COLON, + ACTIONS(5996), 1, + anon_sym_LBRACK, + STATE(5352), 1, + sym__scope_resolution, + STATE(5853), 1, + sym__declarator, + STATE(7654), 1, + sym_ms_based_modifier, + STATE(7638), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(5640), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [170709] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(45), 1, + anon_sym___based, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1931), 1, + anon_sym_operator, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(2560), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(2562), 1, + anon_sym_TILDE, + ACTIONS(4823), 1, + sym_identifier, + ACTIONS(5072), 1, + anon_sym_COLON_COLON, + ACTIONS(5996), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, - anon_sym_DOT, - ACTIONS(4816), 1, - anon_sym_DASH_GT, - ACTIONS(5747), 1, - anon_sym_SLASH, - ACTIONS(5753), 1, - anon_sym_PIPE, - ACTIONS(5757), 1, - anon_sym_AMP, - ACTIONS(5763), 1, - anon_sym_GT_EQ, - ACTIONS(5767), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, - anon_sym_bitor, - ACTIONS(5771), 1, - anon_sym_bitand, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - ACTIONS(6470), 1, - anon_sym_RPAREN, - STATE(2475), 1, - sym_argument_list, - ACTIONS(5723), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5745), 2, + ACTIONS(6047), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5749), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5751), 2, + ACTIONS(6049), 1, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5755), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5765), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5759), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5761), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [137401] = 22, + ACTIONS(6051), 1, + anon_sym_AMP, + STATE(5352), 1, + sym__scope_resolution, + STATE(5833), 1, + sym__declarator, + STATE(7052), 1, + sym_ms_based_modifier, + STATE(7638), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(5640), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [170776] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(45), 1, + anon_sym___based, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1931), 1, + anon_sym_operator, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(2560), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(2562), 1, + anon_sym_TILDE, + ACTIONS(4823), 1, + sym_identifier, + ACTIONS(5072), 1, + anon_sym_COLON_COLON, + ACTIONS(5996), 1, anon_sym_LBRACK, - ACTIONS(5286), 1, - anon_sym_DOT, - ACTIONS(5288), 1, - anon_sym_DASH_GT, - ACTIONS(6237), 1, - anon_sym_SLASH, - ACTIONS(6243), 1, - anon_sym_PIPE, - ACTIONS(6247), 1, - anon_sym_AMP, - ACTIONS(6253), 1, - anon_sym_GT_EQ, - ACTIONS(6261), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6263), 1, - anon_sym_bitor, - ACTIONS(6265), 1, - anon_sym_bitand, - STATE(2475), 1, - sym_argument_list, - ACTIONS(5723), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6233), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6235), 2, + ACTIONS(6047), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6241), 2, + ACTIONS(6049), 1, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(6245), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(6255), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6249), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(6251), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(4881), 5, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_or, - [137482] = 25, + ACTIONS(6051), 1, + anon_sym_AMP, + STATE(5352), 1, + sym__scope_resolution, + STATE(5813), 1, + sym__declarator, + STATE(7052), 1, + sym_ms_based_modifier, + STATE(7638), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(5640), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [170843] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(45), 1, + anon_sym___based, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1931), 1, + anon_sym_operator, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(2560), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(2562), 1, + anon_sym_TILDE, + ACTIONS(5996), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, - anon_sym_DOT, - ACTIONS(4816), 1, - anon_sym_DASH_GT, - ACTIONS(5747), 1, - anon_sym_SLASH, - ACTIONS(5753), 1, - anon_sym_PIPE, - ACTIONS(5757), 1, - anon_sym_AMP, - ACTIONS(5763), 1, - anon_sym_GT_EQ, - ACTIONS(5767), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, - anon_sym_bitor, - ACTIONS(5771), 1, - anon_sym_bitand, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - ACTIONS(6472), 1, - anon_sym_RPAREN, - STATE(2475), 1, - sym_argument_list, - ACTIONS(5723), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5745), 2, + ACTIONS(6004), 1, + sym_identifier, + ACTIONS(6006), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5749), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5751), 2, + ACTIONS(6008), 1, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5755), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5765), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5759), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5761), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [137569] = 3, + ACTIONS(6010), 1, + anon_sym_AMP, + ACTIONS(6012), 1, + anon_sym_COLON_COLON, + STATE(5330), 1, + sym__scope_resolution, + STATE(5616), 1, + sym__declarator, + STATE(7191), 1, + sym_ms_based_modifier, + STATE(7638), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(5640), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [170910] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3803), 11, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(3795), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(45), 1, + anon_sym___based, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1931), 1, + anon_sym_operator, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(2560), 1, anon_sym_LPAREN2, + ACTIONS(2562), 1, + anon_sym_TILDE, + ACTIONS(5996), 1, + anon_sym_LBRACK, + ACTIONS(6004), 1, + sym_identifier, + ACTIONS(6006), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(6008), 1, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [137612] = 25, + ACTIONS(6010), 1, + anon_sym_AMP, + ACTIONS(6012), 1, + anon_sym_COLON_COLON, + STATE(5330), 1, + sym__scope_resolution, + STATE(5642), 1, + sym__declarator, + STATE(7191), 1, + sym_ms_based_modifier, + STATE(7638), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(5640), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [170977] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(45), 1, + anon_sym___based, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1931), 1, + anon_sym_operator, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(2560), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(2562), 1, + anon_sym_TILDE, + ACTIONS(5996), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, - anon_sym_DOT, - ACTIONS(4816), 1, - anon_sym_DASH_GT, - ACTIONS(5747), 1, - anon_sym_SLASH, - ACTIONS(5753), 1, - anon_sym_PIPE, - ACTIONS(5757), 1, - anon_sym_AMP, - ACTIONS(5763), 1, - anon_sym_GT_EQ, - ACTIONS(5767), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5769), 1, - anon_sym_bitor, - ACTIONS(5771), 1, - anon_sym_bitand, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5781), 1, - anon_sym_QMARK, - ACTIONS(6474), 1, - anon_sym_SEMI, - STATE(2475), 1, - sym_argument_list, - ACTIONS(5723), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5743), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5745), 2, + ACTIONS(6004), 1, + sym_identifier, + ACTIONS(6006), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5749), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5751), 2, + ACTIONS(6008), 1, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5755), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5765), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5759), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5761), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [137699] = 25, + ACTIONS(6010), 1, + anon_sym_AMP, + ACTIONS(6012), 1, + anon_sym_COLON_COLON, + STATE(5330), 1, + sym__scope_resolution, + STATE(5660), 1, + sym__declarator, + STATE(7191), 1, + sym_ms_based_modifier, + STATE(7638), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(5640), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [171044] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3723), 1, - anon_sym_RBRACK, - ACTIONS(4166), 1, + ACTIONS(45), 1, + anon_sym___based, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1931), 1, + anon_sym_operator, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(2560), 1, anon_sym_LPAREN2, - ACTIONS(4798), 1, + ACTIONS(2562), 1, + anon_sym_TILDE, + ACTIONS(5002), 1, + sym_identifier, + ACTIONS(5012), 1, + anon_sym_COLON_COLON, + ACTIONS(5996), 1, anon_sym_LBRACK, - ACTIONS(4814), 1, - anon_sym_DOT, - ACTIONS(4816), 1, - anon_sym_DASH_GT, - ACTIONS(5773), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5914), 1, - anon_sym_SLASH, - ACTIONS(5920), 1, - anon_sym_PIPE, - ACTIONS(5924), 1, - anon_sym_AMP, - ACTIONS(5930), 1, - anon_sym_GT_EQ, - ACTIONS(5936), 1, - anon_sym_QMARK, - ACTIONS(5938), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5940), 1, - anon_sym_bitor, - ACTIONS(5942), 1, - anon_sym_bitand, - STATE(2475), 1, - sym_argument_list, - ACTIONS(5723), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5910), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5912), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5916), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(5918), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(5922), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(5932), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5926), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(5928), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [137786] = 17, + ACTIONS(6014), 1, + anon_sym_STAR, + ACTIONS(6016), 1, + anon_sym_AMP_AMP, + ACTIONS(6018), 1, + anon_sym_AMP, + STATE(5316), 1, + sym__scope_resolution, + STATE(5679), 1, + sym__declarator, + STATE(7713), 1, + sym_ms_based_modifier, + STATE(7638), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(5640), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [171111] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, + ACTIONS(45), 1, anon_sym___based, - ACTIONS(1521), 1, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1931), 1, anon_sym_operator, - ACTIONS(6293), 1, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(2560), 1, anon_sym_LPAREN2, - ACTIONS(6418), 1, + ACTIONS(2562), 1, + anon_sym_TILDE, + ACTIONS(5996), 1, + anon_sym_LBRACK, + ACTIONS(6004), 1, sym_identifier, - ACTIONS(6420), 1, + ACTIONS(6006), 1, anon_sym_STAR, - ACTIONS(6422), 1, + ACTIONS(6008), 1, anon_sym_AMP_AMP, - ACTIONS(6424), 1, + ACTIONS(6010), 1, anon_sym_AMP, - STATE(4091), 1, - sym_ms_unaligned_ptr_modifier, - STATE(5050), 1, - sym__field_declarator, - STATE(6046), 1, + ACTIONS(6012), 1, + anon_sym_COLON_COLON, + STATE(5330), 1, + sym__scope_resolution, + STATE(5611), 1, + sym__declarator, + STATE(7191), 1, sym_ms_based_modifier, - ACTIONS(2722), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(4056), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4078), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(2720), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(2724), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(4964), 8, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - sym_reference_field_declarator, - sym_template_method, + STATE(7638), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(5640), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, sym_operator_name, - [137857] = 20, + [171178] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(59), 1, - anon_sym_const, - ACTIONS(4214), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5653), 1, + ACTIONS(29), 1, anon_sym_AMP_AMP, - ACTIONS(5655), 1, + ACTIONS(45), 1, + anon_sym___based, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1931), 1, + anon_sym_operator, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(2560), 1, + anon_sym_LPAREN2, + ACTIONS(2562), 1, + anon_sym_TILDE, + ACTIONS(2564), 1, + anon_sym_STAR, + ACTIONS(2566), 1, anon_sym_AMP, - ACTIONS(5665), 1, - anon_sym_noexcept, - ACTIONS(5667), 1, - anon_sym_throw, - ACTIONS(5952), 1, + ACTIONS(4823), 1, + sym_identifier, + ACTIONS(5072), 1, + anon_sym_COLON_COLON, + ACTIONS(5996), 1, anon_sym_LBRACK, - ACTIONS(5988), 1, - anon_sym_DASH_GT, - ACTIONS(5990), 1, - anon_sym_requires, - STATE(4279), 1, - sym_ref_qualifier, - STATE(4723), 1, - sym_requires_clause, - STATE(4810), 1, - sym_trailing_return_type, - ACTIONS(4135), 2, - anon_sym_final, - anon_sym_override, - STATE(3996), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(4492), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(4493), 2, - sym_noexcept, - sym_throw_specifier, - STATE(4538), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat2, - ACTIONS(5950), 5, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_try, - ACTIONS(5661), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [137933] = 20, + STATE(5352), 1, + sym__scope_resolution, + STATE(5611), 1, + sym__declarator, + STATE(7654), 1, + sym_ms_based_modifier, + STATE(7638), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(5640), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [171245] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(59), 1, - anon_sym_const, - ACTIONS(4214), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5653), 1, + ACTIONS(45), 1, + anon_sym___based, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1931), 1, + anon_sym_operator, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(2560), 1, + anon_sym_LPAREN2, + ACTIONS(2562), 1, + anon_sym_TILDE, + ACTIONS(4823), 1, + sym_identifier, + ACTIONS(5072), 1, + anon_sym_COLON_COLON, + ACTIONS(5996), 1, + anon_sym_LBRACK, + ACTIONS(6047), 1, + anon_sym_STAR, + ACTIONS(6049), 1, anon_sym_AMP_AMP, - ACTIONS(5655), 1, + ACTIONS(6051), 1, anon_sym_AMP, - ACTIONS(5665), 1, - anon_sym_noexcept, - ACTIONS(5667), 1, - anon_sym_throw, - ACTIONS(5896), 1, - anon_sym_DASH_GT, - ACTIONS(5900), 1, - anon_sym_requires, - ACTIONS(5952), 1, - anon_sym_LBRACK, - STATE(4274), 1, - sym_ref_qualifier, - STATE(4813), 1, - sym_requires_clause, - STATE(4871), 1, - sym_trailing_return_type, - ACTIONS(5898), 2, - anon_sym_final, - anon_sym_override, - STATE(3996), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(4507), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(4508), 2, - sym_noexcept, - sym_throw_specifier, - STATE(4641), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat2, - ACTIONS(5950), 5, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - ACTIONS(5661), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [138009] = 8, + STATE(5352), 1, + sym__scope_resolution, + STATE(5820), 1, + sym__declarator, + STATE(7052), 1, + sym_ms_based_modifier, + STATE(7638), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(5640), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [171312] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3814), 1, - anon_sym_COLON_COLON, - ACTIONS(5383), 1, - anon_sym_LT, - ACTIONS(6476), 1, + ACTIONS(45), 1, + anon_sym___based, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1931), 1, + anon_sym_operator, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(2560), 1, + anon_sym_LPAREN2, + ACTIONS(2562), 1, + anon_sym_TILDE, + ACTIONS(5996), 1, anon_sym_LBRACK, - STATE(3922), 1, - sym_template_argument_list, - ACTIONS(3816), 2, + ACTIONS(6004), 1, + sym_identifier, + ACTIONS(6006), 1, + anon_sym_STAR, + ACTIONS(6008), 1, + anon_sym_AMP_AMP, + ACTIONS(6010), 1, + anon_sym_AMP, + ACTIONS(6012), 1, + anon_sym_COLON_COLON, + STATE(5330), 1, + sym__scope_resolution, + STATE(5664), 1, + sym__declarator, + STATE(7191), 1, + sym_ms_based_modifier, + STATE(7638), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(5640), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [171379] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5041), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(5039), 27, anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - ACTIONS(3801), 5, anon_sym_STAR, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, - ACTIONS(3793), 23, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, anon_sym_COLON, - sym_identifier, + anon_sym_or, + anon_sym_and, sym_auto, anon_sym_decltype, - anon_sym_virtual, - anon_sym_operator, - [138061] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5653), 1, - anon_sym_AMP_AMP, - ACTIONS(5655), 1, - anon_sym_AMP, - ACTIONS(5659), 1, - anon_sym_LBRACK, - ACTIONS(5665), 1, - anon_sym_noexcept, - ACTIONS(5667), 1, - anon_sym_throw, - ACTIONS(5709), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5713), 1, - anon_sym_const, - ACTIONS(5729), 1, - anon_sym___attribute__, - ACTIONS(6478), 1, - anon_sym_DASH_GT, - ACTIONS(6480), 1, - anon_sym_requires, - STATE(4461), 1, - sym_ref_qualifier, - STATE(4718), 1, - sym_requires_clause, - STATE(4946), 1, - sym_trailing_return_type, - ACTIONS(4135), 2, anon_sym_final, anon_sym_override, - ACTIONS(5651), 2, - anon_sym_LPAREN2, - anon_sym_COLON, - STATE(3864), 2, - sym_attribute_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(3933), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(4546), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat2, - STATE(4732), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(4738), 2, - sym_noexcept, - sym_throw_specifier, - ACTIONS(5731), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [138141] = 20, + anon_sym_try, + anon_sym_requires, + [171416] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(59), 1, - anon_sym_const, - ACTIONS(4214), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5653), 1, - anon_sym_AMP_AMP, - ACTIONS(5655), 1, + ACTIONS(4476), 1, + anon_sym_COLON_COLON, + ACTIONS(7530), 1, + anon_sym_LT, + STATE(2659), 1, + sym_template_argument_list, + ACTIONS(4455), 3, anon_sym_AMP, - ACTIONS(5665), 1, - anon_sym_noexcept, - ACTIONS(5667), 1, - anon_sym_throw, - ACTIONS(5675), 1, - anon_sym_LBRACK, - ACTIONS(5974), 1, - anon_sym_DASH_GT, - ACTIONS(5976), 1, - anon_sym_requires, - STATE(4273), 1, - sym_ref_qualifier, - STATE(4789), 1, - sym_requires_clause, - STATE(4825), 1, - sym_trailing_return_type, - ACTIONS(5898), 2, - anon_sym_final, - anon_sym_override, - STATE(3996), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(4470), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(4490), 2, - sym_noexcept, - sym_throw_specifier, - STATE(4622), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat2, - ACTIONS(5673), 5, + anon_sym_const, + anon_sym_COLON, + ACTIONS(4463), 23, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(5661), 7, + anon_sym_LBRACK, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - [138217] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5653), 1, - anon_sym_AMP_AMP, - ACTIONS(5655), 1, - anon_sym_AMP, - ACTIONS(5665), 1, - anon_sym_noexcept, - ACTIONS(5667), 1, - anon_sym_throw, - ACTIONS(5675), 1, - anon_sym_LBRACK, - ACTIONS(5709), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5713), 1, - anon_sym_const, - ACTIONS(5729), 1, - anon_sym___attribute__, - ACTIONS(6478), 1, - anon_sym_DASH_GT, - ACTIONS(6480), 1, - anon_sym_requires, - STATE(4456), 1, - sym_ref_qualifier, - STATE(4716), 1, - sym_requires_clause, - STATE(4945), 1, - sym_trailing_return_type, - ACTIONS(4135), 2, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, - ACTIONS(5673), 2, - anon_sym_LPAREN2, - anon_sym_COLON, - STATE(3923), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(4053), 2, - sym_attribute_specifier, - aux_sym__function_declarator_seq_repeat1, - STATE(4578), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat2, - STATE(4660), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(4662), 2, - sym_noexcept, - sym_throw_specifier, - ACTIONS(5731), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [138297] = 14, + anon_sym_requires, + [171459] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(59), 1, - anon_sym_const, - ACTIONS(5864), 1, + ACTIONS(45), 1, + anon_sym___based, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1931), 1, + anon_sym_operator, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(2560), 1, anon_sym_LPAREN2, - ACTIONS(5866), 1, + ACTIONS(2562), 1, + anon_sym_TILDE, + ACTIONS(4823), 1, + sym_identifier, + ACTIONS(5072), 1, + anon_sym_COLON_COLON, + ACTIONS(5996), 1, + anon_sym_LBRACK, + ACTIONS(6047), 1, anon_sym_STAR, - ACTIONS(5868), 1, + ACTIONS(6049), 1, anon_sym_AMP_AMP, - ACTIONS(5870), 1, + ACTIONS(6051), 1, anon_sym_AMP, - ACTIONS(5872), 1, - anon_sym_LBRACK, - STATE(3300), 1, - sym_parameter_list, - STATE(4607), 1, - sym__abstract_declarator, - STATE(4690), 1, - sym__function_declarator_seq, - STATE(3996), 2, + STATE(5352), 1, + sym__scope_resolution, + STATE(5810), 1, + sym__declarator, + STATE(7052), 1, + sym_ms_based_modifier, + STATE(7638), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(5640), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [171526] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4922), 1, + anon_sym_AMP, + ACTIONS(7628), 1, + anon_sym_const, + STATE(4689), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - STATE(4686), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(5661), 7, + ACTIONS(7631), 10, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - ACTIONS(5322), 11, + ACTIONS(4924), 15, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, anon_sym_final, anon_sym_override, anon_sym_GT2, anon_sym_try, anon_sym_requires, - [138361] = 17, + [171569] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(59), 1, - anon_sym_const, - ACTIONS(5864), 1, + ACTIONS(45), 1, + anon_sym___based, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1931), 1, + anon_sym_operator, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(2560), 1, anon_sym_LPAREN2, - ACTIONS(5872), 1, + ACTIONS(2562), 1, + anon_sym_TILDE, + ACTIONS(5996), 1, anon_sym_LBRACK, - ACTIONS(5874), 1, - sym_auto, - ACTIONS(5876), 1, - anon_sym_decltype, - ACTIONS(6482), 1, + ACTIONS(6004), 1, + sym_identifier, + ACTIONS(6006), 1, anon_sym_STAR, - ACTIONS(6484), 1, + ACTIONS(6008), 1, anon_sym_AMP_AMP, - ACTIONS(6486), 1, + ACTIONS(6010), 1, anon_sym_AMP, - STATE(3229), 1, - sym_decltype_auto, - STATE(3490), 1, - sym_parameter_list, - STATE(4690), 1, - sym__function_declarator_seq, - STATE(4868), 1, - sym__abstract_declarator, - STATE(3930), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(4686), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(5661), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - ACTIONS(5862), 8, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [138431] = 20, + ACTIONS(6012), 1, + anon_sym_COLON_COLON, + STATE(5330), 1, + sym__scope_resolution, + STATE(5662), 1, + sym__declarator, + STATE(7191), 1, + sym_ms_based_modifier, + STATE(7638), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(5640), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [171636] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(59), 1, - anon_sym_const, - ACTIONS(4214), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5653), 1, + ACTIONS(45), 1, + anon_sym___based, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1931), 1, + anon_sym_operator, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(2560), 1, + anon_sym_LPAREN2, + ACTIONS(2562), 1, + anon_sym_TILDE, + ACTIONS(5996), 1, + anon_sym_LBRACK, + ACTIONS(6004), 1, + sym_identifier, + ACTIONS(6006), 1, + anon_sym_STAR, + ACTIONS(6008), 1, anon_sym_AMP_AMP, - ACTIONS(5655), 1, + ACTIONS(6010), 1, anon_sym_AMP, - ACTIONS(5665), 1, - anon_sym_noexcept, - ACTIONS(5667), 1, - anon_sym_throw, - ACTIONS(5675), 1, + ACTIONS(6012), 1, + anon_sym_COLON_COLON, + STATE(5330), 1, + sym__scope_resolution, + STATE(5638), 1, + sym__declarator, + STATE(7191), 1, + sym_ms_based_modifier, + STATE(7638), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(5640), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [171703] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(45), 1, + anon_sym___based, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1931), 1, + anon_sym_operator, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(2560), 1, + anon_sym_LPAREN2, + ACTIONS(2562), 1, + anon_sym_TILDE, + ACTIONS(5996), 1, anon_sym_LBRACK, - ACTIONS(5896), 1, - anon_sym_DASH_GT, - ACTIONS(5900), 1, - anon_sym_requires, - STATE(4278), 1, - sym_ref_qualifier, - STATE(4789), 1, - sym_requires_clause, - STATE(4856), 1, - sym_trailing_return_type, - ACTIONS(5898), 2, + ACTIONS(6004), 1, + sym_identifier, + ACTIONS(6006), 1, + anon_sym_STAR, + ACTIONS(6008), 1, + anon_sym_AMP_AMP, + ACTIONS(6010), 1, + anon_sym_AMP, + ACTIONS(6012), 1, + anon_sym_COLON_COLON, + STATE(5330), 1, + sym__scope_resolution, + STATE(5659), 1, + sym__declarator, + STATE(7191), 1, + sym_ms_based_modifier, + STATE(7638), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(5640), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [171770] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4878), 1, + anon_sym_COLON, + ACTIONS(7626), 1, + anon_sym_LBRACE, + STATE(4751), 1, + sym_field_declaration_list, + STATE(6024), 1, + sym_virtual_specifier, + STATE(6713), 1, + sym_base_class_clause, + ACTIONS(4880), 2, anon_sym_final, anon_sym_override, - STATE(3996), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(4473), 2, - sym_noexcept, - sym_throw_specifier, - STATE(4482), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(4622), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat2, - ACTIONS(5673), 5, + ACTIONS(4892), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4890), 20, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, - anon_sym_try, - ACTIONS(5661), 7, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - [138507] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(107), 1, sym_auto, - ACTIONS(109), 1, anon_sym_decltype, - ACTIONS(996), 1, + anon_sym_try, + anon_sym_requires, + [171819] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(45), 1, + anon_sym___based, + ACTIONS(1329), 1, anon_sym_template, - ACTIONS(1451), 1, - anon_sym_enum, - ACTIONS(1453), 1, - anon_sym_class, - ACTIONS(1455), 1, - anon_sym_struct, - ACTIONS(1457), 1, - anon_sym_union, - ACTIONS(1471), 1, - anon_sym_typename, - ACTIONS(2932), 1, - sym_primitive_type, - ACTIONS(3916), 1, - anon_sym_COLON_COLON, - ACTIONS(6488), 1, + ACTIONS(1931), 1, + anon_sym_operator, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(2560), 1, + anon_sym_LPAREN2, + ACTIONS(2562), 1, + anon_sym_TILDE, + ACTIONS(4823), 1, sym_identifier, - ACTIONS(6490), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6494), 1, - anon_sym_EQ, - STATE(3171), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3199), 1, - sym__type_specifier, - STATE(3259), 1, - sym_qualified_type_identifier, - STATE(3279), 1, - sym_decltype_auto, - STATE(5034), 1, + ACTIONS(5072), 1, + anon_sym_COLON_COLON, + ACTIONS(5996), 1, + anon_sym_LBRACK, + ACTIONS(6047), 1, + anon_sym_STAR, + ACTIONS(6049), 1, + anon_sym_AMP_AMP, + ACTIONS(6051), 1, + anon_sym_AMP, + STATE(5352), 1, sym__scope_resolution, - STATE(6159), 1, - sym_dependent_type_identifier, - ACTIONS(6492), 2, - anon_sym_COMMA, - anon_sym_GT2, - STATE(3198), 2, + STATE(5839), 1, + sym__declarator, + STATE(7052), 1, + sym_ms_based_modifier, + STATE(7638), 3, sym_decltype, sym_template_type, - ACTIONS(61), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3232), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [138591] = 17, + sym_dependent_type_identifier, + STATE(5640), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [171886] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(59), 1, - anon_sym_const, - ACTIONS(5864), 1, + ACTIONS(29), 1, + anon_sym_AMP_AMP, + ACTIONS(45), 1, + anon_sym___based, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1931), 1, + anon_sym_operator, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(2560), 1, anon_sym_LPAREN2, - ACTIONS(5872), 1, + ACTIONS(2562), 1, + anon_sym_TILDE, + ACTIONS(2564), 1, + anon_sym_STAR, + ACTIONS(2566), 1, + anon_sym_AMP, + ACTIONS(4823), 1, + sym_identifier, + ACTIONS(5072), 1, + anon_sym_COLON_COLON, + ACTIONS(5996), 1, anon_sym_LBRACK, - ACTIONS(5874), 1, - sym_auto, - ACTIONS(5876), 1, + STATE(5352), 1, + sym__scope_resolution, + STATE(5825), 1, + sym__declarator, + STATE(7654), 1, + sym_ms_based_modifier, + STATE(7638), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(5640), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [171953] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(45), 1, + anon_sym___based, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1931), 1, + anon_sym_operator, + ACTIONS(1973), 1, anon_sym_decltype, - ACTIONS(6482), 1, + ACTIONS(2560), 1, + anon_sym_LPAREN2, + ACTIONS(2562), 1, + anon_sym_TILDE, + ACTIONS(5002), 1, + sym_identifier, + ACTIONS(5012), 1, + anon_sym_COLON_COLON, + ACTIONS(5990), 1, anon_sym_STAR, - ACTIONS(6484), 1, + ACTIONS(5992), 1, anon_sym_AMP_AMP, - ACTIONS(6486), 1, + ACTIONS(5994), 1, anon_sym_AMP, - STATE(3229), 1, - sym_decltype_auto, - STATE(3490), 1, - sym_parameter_list, - STATE(4690), 1, - sym__function_declarator_seq, - STATE(4851), 1, - sym__abstract_declarator, - STATE(3927), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(4686), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(5661), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - ACTIONS(5888), 8, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [138661] = 20, + ACTIONS(5996), 1, + anon_sym_LBRACK, + STATE(5316), 1, + sym__scope_resolution, + STATE(5568), 1, + sym__declarator, + STATE(6967), 1, + sym_ms_based_modifier, + STATE(7638), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(5640), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [172020] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(59), 1, - anon_sym_const, - ACTIONS(4214), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5653), 1, + ACTIONS(29), 1, anon_sym_AMP_AMP, - ACTIONS(5655), 1, + ACTIONS(45), 1, + anon_sym___based, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1931), 1, + anon_sym_operator, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(2560), 1, + anon_sym_LPAREN2, + ACTIONS(2562), 1, + anon_sym_TILDE, + ACTIONS(2564), 1, + anon_sym_STAR, + ACTIONS(2566), 1, anon_sym_AMP, - ACTIONS(5665), 1, - anon_sym_noexcept, - ACTIONS(5667), 1, - anon_sym_throw, - ACTIONS(5675), 1, + ACTIONS(4823), 1, + sym_identifier, + ACTIONS(5072), 1, + anon_sym_COLON_COLON, + ACTIONS(5996), 1, anon_sym_LBRACK, - ACTIONS(5988), 1, - anon_sym_DASH_GT, - ACTIONS(5990), 1, - anon_sym_requires, - STATE(4289), 1, - sym_ref_qualifier, - STATE(4716), 1, - sym_requires_clause, - STATE(4779), 1, - sym_trailing_return_type, - ACTIONS(4135), 2, - anon_sym_final, - anon_sym_override, - STATE(3996), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(4480), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(4521), 2, - sym_noexcept, - sym_throw_specifier, - STATE(4578), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat2, - ACTIONS(5673), 5, - anon_sym_RPAREN, + STATE(5352), 1, + sym__scope_resolution, + STATE(5826), 1, + sym__declarator, + STATE(7654), 1, + sym_ms_based_modifier, + STATE(7638), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(5640), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [172087] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(45), 1, + anon_sym___based, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1931), 1, + anon_sym_operator, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(2560), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_try, - ACTIONS(5661), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [138737] = 14, + ACTIONS(2562), 1, + anon_sym_TILDE, + ACTIONS(5996), 1, + anon_sym_LBRACK, + ACTIONS(6004), 1, + sym_identifier, + ACTIONS(6006), 1, + anon_sym_STAR, + ACTIONS(6008), 1, + anon_sym_AMP_AMP, + ACTIONS(6010), 1, + anon_sym_AMP, + ACTIONS(6012), 1, + anon_sym_COLON_COLON, + STATE(5330), 1, + sym__scope_resolution, + STATE(5657), 1, + sym__declarator, + STATE(7191), 1, + sym_ms_based_modifier, + STATE(7638), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(5640), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [172154] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(59), 1, - anon_sym_const, - ACTIONS(5864), 1, + ACTIONS(45), 1, + anon_sym___based, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1931), 1, + anon_sym_operator, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(2560), 1, anon_sym_LPAREN2, - ACTIONS(5866), 1, + ACTIONS(2562), 1, + anon_sym_TILDE, + ACTIONS(4823), 1, + sym_identifier, + ACTIONS(5072), 1, + anon_sym_COLON_COLON, + ACTIONS(5996), 1, + anon_sym_LBRACK, + ACTIONS(6047), 1, anon_sym_STAR, - ACTIONS(5868), 1, + ACTIONS(6049), 1, anon_sym_AMP_AMP, - ACTIONS(5870), 1, + ACTIONS(6051), 1, + anon_sym_AMP, + STATE(5352), 1, + sym__scope_resolution, + STATE(5850), 1, + sym__declarator, + STATE(7052), 1, + sym_ms_based_modifier, + STATE(7638), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(5640), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [172221] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7634), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(7528), 3, anon_sym_AMP, - ACTIONS(5872), 1, anon_sym_LBRACK, - STATE(3300), 1, - sym_parameter_list, - STATE(4611), 1, - sym__abstract_declarator, - STATE(4690), 1, - sym__function_declarator_seq, - STATE(3996), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(4686), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(5661), 7, + anon_sym_const, + ACTIONS(7526), 24, + anon_sym_LPAREN2, + anon_sym_AMP_AMP, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - ACTIONS(6496), 11, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, + anon_sym_COLON, + anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_try, + anon_sym_noexcept, + anon_sym_throw, anon_sym_requires, - [138801] = 7, + [172260] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(45), 1, + anon_sym___based, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1931), 1, + anon_sym_operator, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(2560), 1, + anon_sym_LPAREN2, + ACTIONS(2562), 1, + anon_sym_TILDE, + ACTIONS(5996), 1, + anon_sym_LBRACK, + ACTIONS(6004), 1, + sym_identifier, + ACTIONS(6006), 1, + anon_sym_STAR, + ACTIONS(6008), 1, + anon_sym_AMP_AMP, + ACTIONS(6010), 1, + anon_sym_AMP, + ACTIONS(6012), 1, + anon_sym_COLON_COLON, + STATE(5330), 1, + sym__scope_resolution, + STATE(5620), 1, + sym__declarator, + STATE(7191), 1, + sym_ms_based_modifier, + STATE(7638), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(5640), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [172327] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(29), 1, + anon_sym_AMP_AMP, + ACTIONS(45), 1, + anon_sym___based, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1931), 1, + anon_sym_operator, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(2560), 1, + anon_sym_LPAREN2, + ACTIONS(2562), 1, + anon_sym_TILDE, + ACTIONS(2564), 1, + anon_sym_STAR, + ACTIONS(2566), 1, + anon_sym_AMP, + ACTIONS(4823), 1, + sym_identifier, + ACTIONS(5072), 1, + anon_sym_COLON_COLON, + ACTIONS(5996), 1, + anon_sym_LBRACK, + STATE(5352), 1, + sym__scope_resolution, + STATE(5818), 1, + sym__declarator, + STATE(7654), 1, + sym_ms_based_modifier, + STATE(7638), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(5640), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [172394] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5493), 1, - anon_sym_LBRACE, - ACTIONS(6498), 1, + ACTIONS(4878), 1, anon_sym_COLON, - STATE(3202), 1, - sym__enum_base_clause, - STATE(3257), 1, - sym_enumerator_list, - ACTIONS(4278), 3, + ACTIONS(7626), 1, + anon_sym_LBRACE, + STATE(4732), 1, + sym_field_declaration_list, + STATE(6008), 1, + sym_virtual_specifier, + STATE(6693), 1, + sym_base_class_clause, + ACTIONS(4874), 2, anon_sym_AMP, - anon_sym_LBRACK, anon_sym_const, - ACTIONS(4276), 27, - anon_sym_RPAREN, + ACTIONS(4880), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4872), 20, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, anon_sym_try, anon_sym_requires, - [138851] = 8, + [172443] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3814), 1, - anon_sym_COLON_COLON, - ACTIONS(3838), 1, - anon_sym_LBRACK, - ACTIONS(5383), 1, - anon_sym_LT, - STATE(3922), 1, - sym_template_argument_list, - ACTIONS(3833), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - ACTIONS(3836), 5, - anon_sym_STAR, + ACTIONS(29), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - ACTIONS(3831), 23, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, + ACTIONS(45), 1, anon_sym___based, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1931), 1, anon_sym_operator, - [138903] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(59), 1, - anon_sym_const, - ACTIONS(5864), 1, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(2560), 1, anon_sym_LPAREN2, - ACTIONS(5866), 1, + ACTIONS(2562), 1, + anon_sym_TILDE, + ACTIONS(2564), 1, anon_sym_STAR, - ACTIONS(5868), 1, - anon_sym_AMP_AMP, - ACTIONS(5870), 1, + ACTIONS(2566), 1, anon_sym_AMP, - ACTIONS(5872), 1, + ACTIONS(4823), 1, + sym_identifier, + ACTIONS(5072), 1, + anon_sym_COLON_COLON, + ACTIONS(5996), 1, anon_sym_LBRACK, - STATE(3300), 1, - sym_parameter_list, - STATE(4588), 1, - sym__abstract_declarator, - STATE(4690), 1, - sym__function_declarator_seq, - STATE(3865), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(4686), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(5661), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - ACTIONS(4304), 11, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [138967] = 14, + STATE(5352), 1, + sym__scope_resolution, + STATE(5834), 1, + sym__declarator, + STATE(7654), 1, + sym_ms_based_modifier, + STATE(7638), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(5640), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [172510] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(59), 1, + ACTIONS(7637), 1, + anon_sym_LBRACE, + ACTIONS(7639), 1, + anon_sym_COLON, + STATE(4725), 1, + sym__enum_base_clause, + STATE(4763), 1, + sym_enumerator_list, + ACTIONS(5113), 2, + anon_sym_AMP, anon_sym_const, - ACTIONS(5864), 1, + ACTIONS(5111), 22, anon_sym_LPAREN2, - ACTIONS(5866), 1, anon_sym_STAR, - ACTIONS(5868), 1, anon_sym_AMP_AMP, - ACTIONS(5870), 1, - anon_sym_AMP, - ACTIONS(5872), 1, + anon_sym_SEMI, anon_sym_LBRACK, - STATE(3300), 1, - sym_parameter_list, - STATE(4606), 1, - sym__abstract_declarator, - STATE(4690), 1, - sym__function_declarator_seq, - STATE(3996), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(4686), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(5661), 7, + anon_sym_EQ, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - ACTIONS(6500), 11, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_try, anon_sym_requires, - [139031] = 20, + [172554] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(59), 1, - anon_sym_const, - ACTIONS(4214), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5653), 1, - anon_sym_AMP_AMP, - ACTIONS(5655), 1, - anon_sym_AMP, - ACTIONS(5665), 1, - anon_sym_noexcept, - ACTIONS(5667), 1, - anon_sym_throw, - ACTIONS(5952), 1, - anon_sym_LBRACK, - ACTIONS(5974), 1, - anon_sym_DASH_GT, - ACTIONS(5976), 1, - anon_sym_requires, - STATE(4283), 1, - sym_ref_qualifier, - STATE(4813), 1, - sym_requires_clause, - STATE(4852), 1, - sym_trailing_return_type, - ACTIONS(5898), 2, - anon_sym_final, - anon_sym_override, - STATE(3996), 2, + STATE(4706), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - STATE(4512), 2, - sym_noexcept, - sym_throw_specifier, - STATE(4517), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(4641), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat2, - ACTIONS(5950), 5, + ACTIONS(4922), 6, + anon_sym_AMP, + anon_sym___based, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + ACTIONS(4924), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - ACTIONS(5661), 7, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK, + anon_sym_GT2, + ACTIONS(7628), 11, + anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - [139107] = 7, + [172594] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5493), 1, + ACTIONS(7637), 1, anon_sym_LBRACE, - ACTIONS(6498), 1, + ACTIONS(7639), 1, anon_sym_COLON, - STATE(3196), 1, + STATE(4721), 1, sym__enum_base_clause, - STATE(3235), 1, + STATE(4726), 1, sym_enumerator_list, - ACTIONS(4270), 3, + ACTIONS(5125), 2, anon_sym_AMP, - anon_sym_LBRACK, anon_sym_const, - ACTIONS(4268), 27, - anon_sym_RPAREN, + ACTIONS(5123), 22, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, sym_auto, anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_virtual, anon_sym_try, anon_sym_requires, - [139157] = 14, + [172638] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5713), 1, + ACTIONS(5621), 1, + anon_sym_LBRACE, + ACTIONS(7641), 1, + anon_sym_COLON, + STATE(3008), 1, + sym__enum_base_clause, + STATE(3104), 1, + sym_enumerator_list, + ACTIONS(5125), 2, + anon_sym_AMP, anon_sym_const, - ACTIONS(5864), 1, + ACTIONS(5123), 22, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(5872), 1, - anon_sym_LBRACK, - ACTIONS(6175), 1, anon_sym_STAR, - ACTIONS(6177), 1, anon_sym_AMP_AMP, - ACTIONS(6179), 1, - anon_sym_AMP, - STATE(3362), 1, - sym_parameter_list, - STATE(4690), 1, - sym__function_declarator_seq, - STATE(4736), 1, - sym__abstract_declarator, - STATE(3893), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(4686), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(5731), 7, + anon_sym_LBRACK, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - ACTIONS(4304), 10, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_try, + anon_sym_GT2, anon_sym_requires, - [139220] = 14, + [172682] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(59), 1, - anon_sym_const, - ACTIONS(5657), 1, - anon_sym___attribute__, - ACTIONS(5874), 1, - sym_auto, - ACTIONS(5876), 1, - anon_sym_decltype, - ACTIONS(6504), 1, - anon_sym___declspec, - ACTIONS(6506), 1, - anon_sym_virtual, - STATE(3229), 1, - sym_decltype_auto, - ACTIONS(5419), 2, + ACTIONS(5621), 1, + anon_sym_LBRACE, + ACTIONS(7641), 1, + anon_sym_COLON, + STATE(3046), 1, + sym__enum_base_clause, + STATE(3095), 1, + sym_enumerator_list, + ACTIONS(5113), 2, anon_sym_AMP, - anon_sym_LBRACK, - ACTIONS(5421), 3, + anon_sym_const, + ACTIONS(5111), 22, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, - ACTIONS(6502), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - ACTIONS(5661), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(4002), 8, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual, - aux_sym__declaration_specifiers_repeat1, - [139283] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3814), 1, - anon_sym_COLON_COLON, - ACTIONS(3988), 1, - anon_sym_SEMI, - ACTIONS(5413), 1, - anon_sym_LT, - ACTIONS(6008), 1, anon_sym_LBRACK, - STATE(3810), 1, - sym_template_argument_list, - ACTIONS(3816), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - ACTIONS(3801), 3, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - ACTIONS(3793), 23, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - [139336] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5713), 1, - anon_sym_const, - ACTIONS(5864), 1, - anon_sym_LPAREN2, - ACTIONS(5872), 1, - anon_sym_LBRACK, - ACTIONS(6175), 1, - anon_sym_STAR, - ACTIONS(6177), 1, - anon_sym_AMP_AMP, - ACTIONS(6179), 1, - anon_sym_AMP, - STATE(3362), 1, - sym_parameter_list, - STATE(4666), 1, - sym__abstract_declarator, - STATE(4690), 1, - sym__function_declarator_seq, - STATE(4059), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(4686), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(5731), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - ACTIONS(6500), 10, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, anon_sym_final, anon_sym_override, - anon_sym_try, + anon_sym_GT2, anon_sym_requires, - [139399] = 20, + [172726] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(59), 1, - anon_sym_const, - ACTIONS(4214), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5653), 1, - anon_sym_AMP_AMP, - ACTIONS(5655), 1, + ACTIONS(5135), 1, + anon_sym_LBRACE, + ACTIONS(7643), 1, + anon_sym_COLON, + STATE(2571), 1, + sym__enum_base_clause, + STATE(2740), 1, + sym_enumerator_list, + ACTIONS(5125), 2, anon_sym_AMP, - ACTIONS(5665), 1, - anon_sym_noexcept, - ACTIONS(5667), 1, - anon_sym_throw, - ACTIONS(5952), 1, - anon_sym_LBRACK, - ACTIONS(6106), 1, - anon_sym_DASH_GT, - ACTIONS(6108), 1, - anon_sym_requires, - STATE(4397), 1, - sym_ref_qualifier, - STATE(4813), 1, - sym_requires_clause, - STATE(4927), 1, - sym_trailing_return_type, - ACTIONS(5898), 2, - anon_sym_final, - anon_sym_override, - STATE(3996), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(4582), 2, - sym_noexcept, - sym_throw_specifier, - STATE(4586), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(4641), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat2, - ACTIONS(5950), 4, - anon_sym_DOT_DOT_DOT, + anon_sym_const, + ACTIONS(5123), 22, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_GT2, - ACTIONS(5661), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [139474] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3814), 1, - anon_sym_COLON_COLON, - ACTIONS(3819), 1, - anon_sym_SEMI, - ACTIONS(5413), 1, - anon_sym_LT, - STATE(3135), 1, - sym_template_argument_list, - ACTIONS(3801), 5, - anon_sym_LPAREN2, - anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_LBRACK_LBRACK, - ACTIONS(3793), 24, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - [139523] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2724), 1, - anon_sym_const, - ACTIONS(3908), 1, - anon_sym_LPAREN2, - ACTIONS(6508), 1, - anon_sym_STAR, - ACTIONS(6510), 1, - anon_sym_AMP_AMP, - ACTIONS(6512), 1, - anon_sym_AMP, - ACTIONS(6514), 1, - anon_sym_LBRACK, - ACTIONS(6518), 1, sym_auto, - ACTIONS(6520), 1, anon_sym_decltype, - STATE(3461), 1, - sym_parameter_list, - STATE(4243), 1, - sym_decltype_auto, - STATE(4765), 1, - sym__function_declarator_seq, - STATE(4932), 1, - sym__abstract_declarator, - STATE(3973), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(4764), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(5888), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, anon_sym_final, anon_sym_override, - anon_sym_try, anon_sym_requires, - ACTIONS(6516), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [139592] = 14, + [172770] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(59), 1, - anon_sym_const, - ACTIONS(5657), 1, - anon_sym___attribute__, - ACTIONS(5874), 1, - sym_auto, - ACTIONS(5876), 1, - anon_sym_decltype, - ACTIONS(6504), 1, - anon_sym___declspec, - ACTIONS(6506), 1, - anon_sym_virtual, - STATE(3229), 1, - sym_decltype_auto, - ACTIONS(5429), 2, + ACTIONS(5135), 1, + anon_sym_LBRACE, + ACTIONS(7643), 1, + anon_sym_COLON, + STATE(2674), 1, + sym__enum_base_clause, + STATE(2759), 1, + sym_enumerator_list, + ACTIONS(5113), 2, anon_sym_AMP, - anon_sym_LBRACK, - ACTIONS(5431), 3, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - ACTIONS(6502), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - ACTIONS(5661), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(3958), 8, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual, - aux_sym__declaration_specifiers_repeat1, - [139655] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5713), 1, anon_sym_const, - ACTIONS(5864), 1, + ACTIONS(5111), 22, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(5872), 1, - anon_sym_LBRACK, - ACTIONS(6175), 1, anon_sym_STAR, - ACTIONS(6177), 1, anon_sym_AMP_AMP, - ACTIONS(6179), 1, - anon_sym_AMP, - STATE(3362), 1, - sym_parameter_list, - STATE(4682), 1, - sym__abstract_declarator, - STATE(4690), 1, - sym__function_declarator_seq, - STATE(4059), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(4686), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(5731), 7, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - ACTIONS(6496), 10, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_try, anon_sym_requires, - [139718] = 8, + [172814] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3814), 1, - anon_sym_COLON_COLON, - ACTIONS(3840), 1, - anon_sym_LBRACK, - ACTIONS(5413), 1, - anon_sym_LT, - STATE(3932), 1, - sym_template_argument_list, - ACTIONS(3833), 2, + ACTIONS(7647), 6, anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - ACTIONS(3836), 4, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_SEMI, - ACTIONS(3831), 23, + anon_sym_COLON_COLON, + anon_sym_LBRACK, + ACTIONS(7645), 22, anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, anon_sym___based, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + anon_sym__unaligned, + anon_sym___unaligned, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, sym_identifier, - sym_auto, anon_sym_decltype, - anon_sym_virtual, anon_sym_template, anon_sym_operator, - [139769] = 17, + [172850] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2724), 1, + ACTIONS(4476), 1, + anon_sym_COLON_COLON, + ACTIONS(7601), 1, + anon_sym_LT, + STATE(4650), 1, + sym_template_argument_list, + ACTIONS(4455), 2, + anon_sym_AMP, anon_sym_const, - ACTIONS(3908), 1, + ACTIONS(4463), 23, anon_sym_LPAREN2, - ACTIONS(6508), 1, anon_sym_STAR, - ACTIONS(6510), 1, anon_sym_AMP_AMP, - ACTIONS(6512), 1, - anon_sym_AMP, - ACTIONS(6514), 1, - anon_sym_LBRACK, - ACTIONS(6518), 1, - sym_auto, - ACTIONS(6520), 1, - anon_sym_decltype, - STATE(3461), 1, - sym_parameter_list, - STATE(4243), 1, - sym_decltype_auto, - STATE(4765), 1, - sym__function_declarator_seq, - STATE(4899), 1, - sym__abstract_declarator, - STATE(3983), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(4764), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(5862), 7, anon_sym_SEMI, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - ACTIONS(6516), 7, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - [139838] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2724), 1, - anon_sym_const, - ACTIONS(3908), 1, - anon_sym_LPAREN2, - ACTIONS(3910), 1, - anon_sym_STAR, - ACTIONS(3912), 1, - anon_sym_AMP_AMP, - ACTIONS(3914), 1, - anon_sym_AMP, - ACTIONS(4717), 1, sym_auto, - ACTIONS(4719), 1, anon_sym_decltype, - ACTIONS(6514), 1, - anon_sym_LBRACK, - STATE(2581), 1, - sym_decltype_auto, - STATE(3482), 1, - sym_parameter_list, - STATE(4765), 1, - sym__function_declarator_seq, - STATE(4881), 1, - sym__abstract_declarator, - STATE(3937), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(4764), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(5888), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACE, anon_sym_final, anon_sym_override, + anon_sym_try, anon_sym_requires, - ACTIONS(6516), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [139907] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(59), 1, - anon_sym_const, - ACTIONS(4214), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5653), 1, - anon_sym_AMP_AMP, - ACTIONS(5655), 1, - anon_sym_AMP, - ACTIONS(5665), 1, - anon_sym_noexcept, - ACTIONS(5667), 1, - anon_sym_throw, - ACTIONS(5675), 1, - anon_sym_LBRACK, - ACTIONS(6106), 1, - anon_sym_DASH_GT, - ACTIONS(6108), 1, - anon_sym_requires, - STATE(4402), 1, - sym_ref_qualifier, - STATE(4789), 1, - sym_requires_clause, - STATE(4942), 1, - sym_trailing_return_type, - ACTIONS(5898), 2, - anon_sym_final, - anon_sym_override, - STATE(3996), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(4563), 2, - sym_noexcept, - sym_throw_specifier, - STATE(4568), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(4622), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat2, - ACTIONS(5673), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_GT2, - ACTIONS(5661), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [139982] = 8, + [172892] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3814), 1, - anon_sym_COLON_COLON, - ACTIONS(5413), 1, - anon_sym_LT, - ACTIONS(6008), 1, - anon_sym_LBRACK, - STATE(3932), 1, - sym_template_argument_list, - ACTIONS(3816), 2, + ACTIONS(7651), 6, anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - ACTIONS(3801), 4, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_SEMI, - ACTIONS(3793), 23, + anon_sym_COLON_COLON, + anon_sym_LBRACK, + ACTIONS(7649), 22, anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, anon_sym___based, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + anon_sym__unaligned, + anon_sym___unaligned, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, sym_identifier, - sym_auto, anon_sym_decltype, - anon_sym_virtual, anon_sym_template, anon_sym_operator, - [140033] = 9, + [172928] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3814), 1, + ACTIONS(4924), 1, anon_sym_COLON_COLON, - ACTIONS(3840), 1, - anon_sym_LBRACK, - ACTIONS(3843), 1, - anon_sym_SEMI, - ACTIONS(5413), 1, - anon_sym_LT, - STATE(3810), 1, - sym_template_argument_list, - ACTIONS(3833), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - ACTIONS(3836), 3, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - ACTIONS(3831), 23, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, + STATE(4715), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(7410), 11, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, + ACTIONS(4922), 14, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_virtual, + anon_sym_typename, anon_sym_template, - anon_sym_operator, - [140086] = 14, + [172968] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5713), 1, + ACTIONS(4476), 1, + anon_sym_COLON_COLON, + ACTIONS(7504), 1, + anon_sym_LT, + STATE(2914), 1, + sym_template_argument_list, + ACTIONS(4455), 2, + anon_sym_AMP, anon_sym_const, - ACTIONS(5864), 1, + ACTIONS(4463), 22, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(5872), 1, - anon_sym_LBRACK, - ACTIONS(6175), 1, anon_sym_STAR, - ACTIONS(6177), 1, anon_sym_AMP_AMP, - ACTIONS(6179), 1, - anon_sym_AMP, - STATE(3362), 1, - sym_parameter_list, - STATE(4652), 1, - sym__abstract_declarator, - STATE(4690), 1, - sym__function_declarator_seq, - STATE(4059), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(4686), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(5731), 7, + anon_sym_LBRACK, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - ACTIONS(5322), 10, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [140149] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2724), 1, - anon_sym_const, - ACTIONS(3908), 1, - anon_sym_LPAREN2, - ACTIONS(3910), 1, - anon_sym_STAR, - ACTIONS(3912), 1, - anon_sym_AMP_AMP, - ACTIONS(3914), 1, - anon_sym_AMP, - ACTIONS(4717), 1, sym_auto, - ACTIONS(4719), 1, anon_sym_decltype, - ACTIONS(6514), 1, - anon_sym_LBRACK, - STATE(2581), 1, - sym_decltype_auto, - STATE(3482), 1, - sym_parameter_list, - STATE(4765), 1, - sym__function_declarator_seq, - STATE(4915), 1, - sym__abstract_declarator, - STATE(3987), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(4764), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(5862), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACE, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_requires, - ACTIONS(6516), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [140218] = 23, + [173009] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, + ACTIONS(1329), 1, anon_sym_template, - ACTIONS(5415), 1, - anon_sym_LPAREN2, - ACTIONS(6522), 1, - sym_identifier, - ACTIONS(6524), 1, - anon_sym_COLON_COLON, - ACTIONS(6528), 1, - sym_primitive_type, - ACTIONS(6530), 1, - anon_sym_enum, - ACTIONS(6532), 1, - anon_sym_class, - ACTIONS(6534), 1, - anon_sym_struct, - ACTIONS(6536), 1, - anon_sym_union, - ACTIONS(6538), 1, - sym_auto, - ACTIONS(6540), 1, + ACTIONS(1973), 1, anon_sym_decltype, - ACTIONS(6542), 1, - anon_sym_typename, - STATE(1866), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1914), 1, - sym__type_specifier, - STATE(2015), 1, - sym_decltype_auto, - STATE(2068), 1, - sym_qualified_type_identifier, - STATE(3975), 1, - sym_argument_list, - STATE(5022), 1, + ACTIONS(4580), 1, + anon_sym_COLON_COLON, + ACTIONS(4831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4833), 1, + anon_sym___declspec, + ACTIONS(6195), 1, + anon_sym_LBRACE, + ACTIONS(6197), 1, + anon_sym_COLON, + ACTIONS(7397), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7401), 1, + anon_sym_EQ, + ACTIONS(7653), 1, + sym_identifier, + STATE(3578), 1, + sym_template_type, + STATE(3742), 1, + sym_field_declaration_list, + STATE(3750), 1, + sym__class_declaration, + STATE(5014), 1, + sym_ms_declspec_modifier, + STATE(5733), 1, sym__scope_resolution, - STATE(6159), 1, - sym_dependent_type_identifier, - STATE(1995), 2, + STATE(6057), 1, + sym_virtual_specifier, + STATE(6662), 1, + sym_base_class_clause, + ACTIONS(6199), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7399), 2, + anon_sym_COMMA, + anon_sym_GT2, + STATE(3651), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5012), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7638), 2, sym_decltype, - sym_template_type, - ACTIONS(6526), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2017), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [140298] = 3, + sym_dependent_type_identifier, + [173084] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2712), 2, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2710), 30, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, + ACTIONS(6546), 1, + anon_sym_LBRACE, + ACTIONS(7655), 1, + anon_sym_COLON, + STATE(3903), 1, + sym__enum_base_clause, + STATE(3960), 1, + sym_enumerator_list, + ACTIONS(5113), 3, + anon_sym_AMP, + anon_sym_LBRACK, anon_sym_const, + ACTIONS(5111), 19, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LBRACK_LBRACK, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_typename, - anon_sym_template, - [140338] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(5415), 1, - anon_sym_LPAREN2, - ACTIONS(6544), 1, - sym_identifier, - ACTIONS(6546), 1, - anon_sym_COLON_COLON, - ACTIONS(6550), 1, - sym_primitive_type, - ACTIONS(6552), 1, - anon_sym_enum, - ACTIONS(6554), 1, - anon_sym_class, - ACTIONS(6556), 1, - anon_sym_struct, - ACTIONS(6558), 1, - anon_sym_union, - ACTIONS(6560), 1, - sym_auto, - ACTIONS(6562), 1, - anon_sym_decltype, - ACTIONS(6564), 1, - anon_sym_typename, - STATE(1976), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2203), 1, - sym__type_specifier, - STATE(2738), 1, - sym_decltype_auto, - STATE(2822), 1, - sym_qualified_type_identifier, - STATE(4001), 1, - sym_argument_list, - STATE(5036), 1, - sym__scope_resolution, - STATE(6159), 1, - sym_dependent_type_identifier, - STATE(2616), 2, - sym_decltype, - sym_template_type, - ACTIONS(6548), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2737), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [140418] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(2444), 1, - sym_auto, - ACTIONS(2446), 1, - anon_sym_decltype, - ACTIONS(5415), 1, - anon_sym_LPAREN2, - ACTIONS(5572), 1, - sym_primitive_type, - ACTIONS(6566), 1, - sym_identifier, - ACTIONS(6568), 1, - anon_sym_COLON_COLON, - ACTIONS(6570), 1, - anon_sym_enum, - ACTIONS(6572), 1, - anon_sym_class, - ACTIONS(6574), 1, - anon_sym_struct, - ACTIONS(6576), 1, - anon_sym_union, - ACTIONS(6578), 1, - anon_sym_typename, - STATE(2022), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3000), 1, - sym_qualified_type_identifier, - STATE(3008), 1, - sym_decltype_auto, - STATE(3190), 1, - sym__type_specifier, - STATE(3947), 1, - sym_argument_list, - STATE(5020), 1, - sym__scope_resolution, - STATE(6159), 1, - sym_dependent_type_identifier, - STATE(2851), 2, - sym_decltype, - sym_template_type, - ACTIONS(2420), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3003), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [140498] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(5415), 1, - anon_sym_LPAREN2, - ACTIONS(6580), 1, - sym_identifier, - ACTIONS(6582), 1, - anon_sym_COLON_COLON, - ACTIONS(6586), 1, - sym_primitive_type, - ACTIONS(6588), 1, - anon_sym_enum, - ACTIONS(6590), 1, - anon_sym_class, - ACTIONS(6592), 1, - anon_sym_struct, - ACTIONS(6594), 1, - anon_sym_union, - ACTIONS(6596), 1, sym_auto, - ACTIONS(6598), 1, anon_sym_decltype, - ACTIONS(6600), 1, - anon_sym_typename, - STATE(1946), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2086), 1, - sym__type_specifier, - STATE(2641), 1, - sym_qualified_type_identifier, - STATE(2691), 1, - sym_decltype_auto, - STATE(4000), 1, - sym_argument_list, - STATE(5025), 1, - sym__scope_resolution, - STATE(6159), 1, - sym_dependent_type_identifier, - STATE(2556), 2, - sym_decltype, - sym_template_type, - ACTIONS(6584), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2687), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [140578] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [173126] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2550), 2, + ACTIONS(5043), 1, anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2548), 30, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, + ACTIONS(5155), 2, + anon_sym_AMP, anon_sym_const, + ACTIONS(5153), 23, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_virtual, - anon_sym_typename, - anon_sym_template, - [140618] = 23, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [173162] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(5415), 1, + ACTIONS(7661), 1, + anon_sym_LBRACK_LBRACK, + STATE(4720), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(7659), 10, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(6580), 1, - sym_identifier, - ACTIONS(6582), 1, + anon_sym_SEMI, anon_sym_COLON_COLON, - ACTIONS(6586), 1, - sym_primitive_type, - ACTIONS(6588), 1, - anon_sym_enum, - ACTIONS(6590), 1, - anon_sym_class, - ACTIONS(6592), 1, - anon_sym_struct, - ACTIONS(6594), 1, - anon_sym_union, - ACTIONS(6596), 1, - sym_auto, - ACTIONS(6598), 1, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + ACTIONS(7657), 13, + anon_sym_LBRACK, + anon_sym_COLON, + sym_identifier, anon_sym_decltype, - ACTIONS(6600), 1, - anon_sym_typename, - STATE(1946), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2023), 1, - sym__type_specifier, - STATE(2641), 1, - sym_qualified_type_identifier, - STATE(2691), 1, - sym_decltype_auto, - STATE(3989), 1, - sym_argument_list, - STATE(5025), 1, - sym__scope_resolution, - STATE(6159), 1, - sym_dependent_type_identifier, - STATE(2556), 2, - sym_decltype, - sym_template_type, - ACTIONS(6584), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2687), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [140698] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_template, + anon_sym_try, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_requires, + [173200] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2974), 2, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2969), 30, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, + ACTIONS(7637), 1, + anon_sym_LBRACE, + STATE(4760), 1, + sym_enumerator_list, + ACTIONS(5133), 2, + anon_sym_AMP, anon_sym_const, + ACTIONS(5131), 22, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_virtual, - anon_sym_typename, - anon_sym_template, - [140738] = 17, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [173238] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2724), 1, + ACTIONS(6546), 1, + anon_sym_LBRACE, + ACTIONS(7655), 1, + anon_sym_COLON, + STATE(3898), 1, + sym__enum_base_clause, + STATE(3958), 1, + sym_enumerator_list, + ACTIONS(5125), 3, + anon_sym_AMP, + anon_sym_LBRACK, anon_sym_const, - ACTIONS(3908), 1, + ACTIONS(5123), 19, anon_sym_LPAREN2, - ACTIONS(5243), 1, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LBRACK_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, sym_auto, - ACTIONS(5245), 1, anon_sym_decltype, - ACTIONS(6514), 1, - anon_sym_LBRACK, - ACTIONS(6602), 1, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [173280] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5139), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(5137), 24, + anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(6604), 1, anon_sym_AMP_AMP, - ACTIONS(6606), 1, - anon_sym_AMP, - STATE(2969), 1, - sym_decltype_auto, - STATE(3556), 1, - sym_parameter_list, - STATE(4765), 1, - sym__function_declarator_seq, - STATE(4974), 1, - sym__abstract_declarator, - STATE(4015), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(4764), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(5862), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_GT2, + anon_sym_try, anon_sym_requires, - ACTIONS(6516), 7, + [173314] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7003), 1, + sym_auto, + ACTIONS(7005), 1, + anon_sym_decltype, + STATE(4729), 1, + sym_decltype_auto, + ACTIONS(5143), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(5141), 21, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - [140806] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [173354] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2512), 2, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2510), 30, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, + ACTIONS(7637), 1, + anon_sym_LBRACE, + STATE(4737), 1, + sym_enumerator_list, + ACTIONS(5159), 2, + anon_sym_AMP, anon_sym_const, + ACTIONS(5157), 22, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_virtual, - anon_sym_typename, - anon_sym_template, - [140846] = 7, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [173392] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6149), 1, - sym_primitive_type, - ACTIONS(6608), 1, - sym_identifier, - STATE(3200), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6147), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(4052), 9, - anon_sym_COMMA, + ACTIONS(5230), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(5228), 23, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(4054), 16, - anon_sym_AMP, anon_sym_LBRACK, - anon_sym_const, + anon_sym_EQ, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, sym_auto, @@ -346679,8367 +448887,7651 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [140894] = 23, + [173425] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, + ACTIONS(1329), 1, anon_sym_template, - ACTIONS(1515), 1, - sym_auto, - ACTIONS(1517), 1, + ACTIONS(1949), 1, + anon_sym_LBRACK, + ACTIONS(1973), 1, anon_sym_decltype, - ACTIONS(5415), 1, - anon_sym_LPAREN2, - ACTIONS(5504), 1, - sym_primitive_type, - ACTIONS(6610), 1, - sym_identifier, - ACTIONS(6612), 1, + ACTIONS(7514), 1, anon_sym_COLON_COLON, - ACTIONS(6614), 1, - anon_sym_enum, - ACTIONS(6616), 1, - anon_sym_class, - ACTIONS(6618), 1, - anon_sym_struct, - ACTIONS(6620), 1, - anon_sym_union, - ACTIONS(6622), 1, - anon_sym_typename, - STATE(1922), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2444), 1, - sym_qualified_type_identifier, - STATE(2540), 1, - sym_decltype_auto, - STATE(3167), 1, - sym__type_specifier, - STATE(3966), 1, - sym_argument_list, - STATE(4990), 1, + ACTIONS(7664), 1, + sym_identifier, + ACTIONS(7666), 1, + anon_sym_LPAREN2, + ACTIONS(7668), 1, + anon_sym_LBRACE, + ACTIONS(7672), 1, + anon_sym_requires, + STATE(2718), 1, + sym_template_type, + STATE(3790), 1, + sym_requirement_seq, + STATE(5183), 1, + sym_lambda_capture_specifier, + STATE(5735), 1, sym__scope_resolution, - STATE(6159), 1, - sym_dependent_type_identifier, - STATE(2247), 2, + STATE(6686), 1, + sym_requires_parameter_list, + ACTIONS(7670), 2, + sym_true, + sym_false, + STATE(7638), 2, sym_decltype, - sym_template_type, - ACTIONS(1503), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2541), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [140974] = 3, + sym_dependent_type_identifier, + STATE(3946), 8, + sym__class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym__requirement_clause_constraint, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + sym_qualified_type_identifier, + [173486] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2748), 2, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2746), 30, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, + ACTIONS(5190), 2, + anon_sym_AMP, anon_sym_const, + ACTIONS(5188), 23, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_virtual, - anon_sym_typename, - anon_sym_template, - [141014] = 23, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [173519] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1515), 1, + ACTIONS(5186), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(5184), 23, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, sym_auto, - ACTIONS(1517), 1, anon_sym_decltype, - ACTIONS(5415), 1, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [173552] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5166), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(5164), 23, anon_sym_LPAREN2, - ACTIONS(5504), 1, - sym_primitive_type, - ACTIONS(6610), 1, - sym_identifier, - ACTIONS(6612), 1, - anon_sym_COLON_COLON, - ACTIONS(6614), 1, - anon_sym_enum, - ACTIONS(6616), 1, - anon_sym_class, - ACTIONS(6618), 1, - anon_sym_struct, - ACTIONS(6620), 1, - anon_sym_union, - ACTIONS(6622), 1, - anon_sym_typename, - STATE(1922), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2444), 1, - sym_qualified_type_identifier, - STATE(2540), 1, - sym_decltype_auto, - STATE(3178), 1, - sym__type_specifier, - STATE(3981), 1, - sym_argument_list, - STATE(4990), 1, - sym__scope_resolution, - STATE(6159), 1, - sym_dependent_type_identifier, - STATE(2247), 2, - sym_decltype, - sym_template_type, - ACTIONS(1503), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2541), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [141094] = 23, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [173585] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, + ACTIONS(1329), 1, anon_sym_template, - ACTIONS(2444), 1, - sym_auto, - ACTIONS(2446), 1, + ACTIONS(1949), 1, + anon_sym_LBRACK, + ACTIONS(1973), 1, anon_sym_decltype, - ACTIONS(5415), 1, - anon_sym_LPAREN2, - ACTIONS(5572), 1, - sym_primitive_type, - ACTIONS(6566), 1, - sym_identifier, - ACTIONS(6568), 1, + ACTIONS(7456), 1, anon_sym_COLON_COLON, - ACTIONS(6570), 1, - anon_sym_enum, - ACTIONS(6572), 1, - anon_sym_class, - ACTIONS(6574), 1, - anon_sym_struct, - ACTIONS(6576), 1, - anon_sym_union, - ACTIONS(6578), 1, - anon_sym_typename, - STATE(2022), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3000), 1, - sym_qualified_type_identifier, - STATE(3008), 1, - sym_decltype_auto, - STATE(3192), 1, - sym__type_specifier, - STATE(3959), 1, - sym_argument_list, - STATE(5020), 1, + ACTIONS(7674), 1, + sym_identifier, + ACTIONS(7676), 1, + anon_sym_LPAREN2, + ACTIONS(7678), 1, + anon_sym_LBRACE, + ACTIONS(7682), 1, + anon_sym_requires, + STATE(2739), 1, + sym_template_type, + STATE(3551), 1, + sym_requirement_seq, + STATE(5162), 1, + sym_lambda_capture_specifier, + STATE(5797), 1, sym__scope_resolution, - STATE(6159), 1, - sym_dependent_type_identifier, - STATE(2851), 2, + STATE(6943), 1, + sym_requires_parameter_list, + ACTIONS(7680), 2, + sym_true, + sym_false, + STATE(7638), 2, sym_decltype, - sym_template_type, - ACTIONS(2420), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3003), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [141174] = 23, + sym_dependent_type_identifier, + STATE(3545), 8, + sym__class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym__requirement_clause_constraint, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + sym_qualified_type_identifier, + [173646] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(5415), 1, + ACTIONS(5182), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(5180), 23, anon_sym_LPAREN2, - ACTIONS(6624), 1, - sym_identifier, - ACTIONS(6626), 1, - anon_sym_COLON_COLON, - ACTIONS(6630), 1, - sym_primitive_type, - ACTIONS(6632), 1, - anon_sym_enum, - ACTIONS(6634), 1, - anon_sym_class, - ACTIONS(6636), 1, - anon_sym_struct, - ACTIONS(6638), 1, - anon_sym_union, - ACTIONS(6640), 1, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, sym_auto, - ACTIONS(6642), 1, anon_sym_decltype, - ACTIONS(6644), 1, - anon_sym_typename, - STATE(1903), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1983), 1, - sym__type_specifier, - STATE(2319), 1, - sym_decltype_auto, - STATE(2331), 1, - sym_qualified_type_identifier, - STATE(3974), 1, - sym_argument_list, - STATE(5001), 1, - sym__scope_resolution, - STATE(6159), 1, - sym_dependent_type_identifier, - STATE(2204), 2, - sym_decltype, - sym_template_type, - ACTIONS(6628), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2320), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [141254] = 23, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [173679] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(5415), 1, + ACTIONS(5178), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(5176), 23, anon_sym_LPAREN2, - ACTIONS(6624), 1, - sym_identifier, - ACTIONS(6626), 1, - anon_sym_COLON_COLON, - ACTIONS(6630), 1, - sym_primitive_type, - ACTIONS(6632), 1, - anon_sym_enum, - ACTIONS(6634), 1, - anon_sym_class, - ACTIONS(6636), 1, - anon_sym_struct, - ACTIONS(6638), 1, - anon_sym_union, - ACTIONS(6640), 1, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, sym_auto, - ACTIONS(6642), 1, anon_sym_decltype, - ACTIONS(6644), 1, - anon_sym_typename, - STATE(1903), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1968), 1, - sym__type_specifier, - STATE(2319), 1, - sym_decltype_auto, - STATE(2331), 1, - sym_qualified_type_identifier, - STATE(3969), 1, - sym_argument_list, - STATE(5001), 1, - sym__scope_resolution, - STATE(6159), 1, - sym_dependent_type_identifier, - STATE(2204), 2, - sym_decltype, - sym_template_type, - ACTIONS(6628), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2320), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [141334] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [173712] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6648), 2, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(6646), 30, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, + ACTIONS(5250), 2, + anon_sym_AMP, anon_sym_const, + ACTIONS(5248), 23, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_virtual, - anon_sym_typename, - anon_sym_template, - [141374] = 23, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [173745] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, + ACTIONS(1329), 1, anon_sym_template, - ACTIONS(5415), 1, - anon_sym_LPAREN2, - ACTIONS(6522), 1, - sym_identifier, - ACTIONS(6524), 1, - anon_sym_COLON_COLON, - ACTIONS(6528), 1, - sym_primitive_type, - ACTIONS(6530), 1, - anon_sym_enum, - ACTIONS(6532), 1, - anon_sym_class, - ACTIONS(6534), 1, - anon_sym_struct, - ACTIONS(6536), 1, - anon_sym_union, - ACTIONS(6538), 1, - sym_auto, - ACTIONS(6540), 1, + ACTIONS(1949), 1, + anon_sym_LBRACK, + ACTIONS(1973), 1, anon_sym_decltype, - ACTIONS(6542), 1, - anon_sym_typename, - STATE(1866), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1917), 1, - sym__type_specifier, - STATE(2015), 1, - sym_decltype_auto, - STATE(2068), 1, - sym_qualified_type_identifier, - STATE(3942), 1, - sym_argument_list, - STATE(5022), 1, + ACTIONS(7581), 1, + anon_sym_COLON_COLON, + ACTIONS(7684), 1, + sym_identifier, + ACTIONS(7686), 1, + anon_sym_LPAREN2, + ACTIONS(7688), 1, + anon_sym_LBRACE, + ACTIONS(7692), 1, + anon_sym_requires, + STATE(2846), 1, + sym_template_type, + STATE(3612), 1, + sym_requirement_seq, + STATE(5204), 1, + sym_lambda_capture_specifier, + STATE(5726), 1, sym__scope_resolution, - STATE(6159), 1, - sym_dependent_type_identifier, - STATE(1995), 2, + STATE(6766), 1, + sym_requires_parameter_list, + ACTIONS(7690), 2, + sym_true, + sym_false, + STATE(7638), 2, sym_decltype, - sym_template_type, - ACTIONS(6526), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2017), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [141454] = 3, + sym_dependent_type_identifier, + STATE(3610), 8, + sym__class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym__requirement_clause_constraint, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + sym_qualified_type_identifier, + [173806] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2476), 2, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2474), 30, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, + ACTIONS(5266), 2, + anon_sym_AMP, anon_sym_const, + ACTIONS(5264), 23, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_virtual, - anon_sym_typename, - anon_sym_template, - [141494] = 7, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [173839] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5850), 1, - anon_sym_LBRACE, - ACTIONS(6650), 1, - anon_sym_COLON, - STATE(3479), 1, - sym__enum_base_clause, - STATE(3627), 1, - sym_enumerator_list, - ACTIONS(4268), 6, + ACTIONS(5170), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(5168), 23, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, - ACTIONS(4270), 22, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_virtual, - anon_sym_operator, - [141542] = 23, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [173872] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1515), 1, + ACTIONS(5285), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(5283), 23, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, sym_auto, - ACTIONS(1517), 1, anon_sym_decltype, - ACTIONS(5415), 1, - anon_sym_LPAREN2, - ACTIONS(5504), 1, - sym_primitive_type, - ACTIONS(6610), 1, - sym_identifier, - ACTIONS(6612), 1, - anon_sym_COLON_COLON, - ACTIONS(6614), 1, - anon_sym_enum, - ACTIONS(6616), 1, - anon_sym_class, - ACTIONS(6618), 1, - anon_sym_struct, - ACTIONS(6620), 1, - anon_sym_union, - ACTIONS(6622), 1, - anon_sym_typename, - STATE(1922), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2444), 1, - sym_qualified_type_identifier, - STATE(2540), 1, - sym_decltype_auto, - STATE(3153), 1, - sym__type_specifier, - STATE(3980), 1, - sym_argument_list, - STATE(4990), 1, - sym__scope_resolution, - STATE(6159), 1, - sym_dependent_type_identifier, - STATE(2247), 2, - sym_decltype, - sym_template_type, - ACTIONS(1503), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2541), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [141622] = 23, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [173905] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1515), 1, + ACTIONS(5274), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(5272), 23, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, sym_auto, - ACTIONS(1517), 1, anon_sym_decltype, - ACTIONS(5415), 1, - anon_sym_LPAREN2, - ACTIONS(5504), 1, - sym_primitive_type, - ACTIONS(6610), 1, - sym_identifier, - ACTIONS(6612), 1, - anon_sym_COLON_COLON, - ACTIONS(6614), 1, - anon_sym_enum, - ACTIONS(6616), 1, - anon_sym_class, - ACTIONS(6618), 1, - anon_sym_struct, - ACTIONS(6620), 1, - anon_sym_union, - ACTIONS(6622), 1, - anon_sym_typename, - STATE(1922), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2444), 1, - sym_qualified_type_identifier, - STATE(2540), 1, - sym_decltype_auto, - STATE(3159), 1, - sym__type_specifier, - STATE(3955), 1, - sym_argument_list, - STATE(4990), 1, - sym__scope_resolution, - STATE(6159), 1, - sym_dependent_type_identifier, - STATE(2247), 2, - sym_decltype, - sym_template_type, - ACTIONS(1503), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2541), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [141702] = 17, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [173938] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2724), 1, + ACTIONS(5226), 2, + anon_sym_AMP, anon_sym_const, - ACTIONS(3908), 1, + ACTIONS(5224), 23, anon_sym_LPAREN2, - ACTIONS(5243), 1, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, sym_auto, - ACTIONS(5245), 1, anon_sym_decltype, - ACTIONS(6514), 1, - anon_sym_LBRACK, - ACTIONS(6602), 1, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [173971] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5317), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(5315), 23, + anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(6604), 1, anon_sym_AMP_AMP, - ACTIONS(6606), 1, - anon_sym_AMP, - STATE(2969), 1, - sym_decltype_auto, - STATE(3556), 1, - sym_parameter_list, - STATE(4765), 1, - sym__function_declarator_seq, - STATE(4972), 1, - sym__abstract_declarator, - STATE(4006), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(4764), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(5888), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_GT2, + anon_sym_try, anon_sym_requires, - ACTIONS(6516), 7, + [174004] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5345), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(5343), 23, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - [141770] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [174037] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2516), 2, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2514), 30, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, + ACTIONS(5341), 2, + anon_sym_AMP, anon_sym_const, + ACTIONS(5339), 23, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_virtual, - anon_sym_typename, - anon_sym_template, - [141810] = 23, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [174070] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(5415), 1, + ACTIONS(5337), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(5335), 23, anon_sym_LPAREN2, - ACTIONS(6544), 1, - sym_identifier, - ACTIONS(6546), 1, - anon_sym_COLON_COLON, - ACTIONS(6550), 1, - sym_primitive_type, - ACTIONS(6552), 1, - anon_sym_enum, - ACTIONS(6554), 1, - anon_sym_class, - ACTIONS(6556), 1, - anon_sym_struct, - ACTIONS(6558), 1, - anon_sym_union, - ACTIONS(6560), 1, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, sym_auto, - ACTIONS(6562), 1, anon_sym_decltype, - ACTIONS(6564), 1, - anon_sym_typename, - STATE(1976), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2189), 1, - sym__type_specifier, - STATE(2738), 1, - sym_decltype_auto, - STATE(2822), 1, - sym_qualified_type_identifier, - STATE(3968), 1, - sym_argument_list, - STATE(5036), 1, - sym__scope_resolution, - STATE(6159), 1, - sym_dependent_type_identifier, - STATE(2616), 2, - sym_decltype, - sym_template_type, - ACTIONS(6548), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2737), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [141890] = 7, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [174103] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5333), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(5331), 23, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [174136] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5850), 1, - anon_sym_LBRACE, - ACTIONS(6650), 1, - anon_sym_COLON, - STATE(3448), 1, - sym__enum_base_clause, - STATE(3649), 1, - sym_enumerator_list, - ACTIONS(4276), 6, + ACTIONS(5321), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(5319), 23, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, - ACTIONS(4278), 22, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_virtual, - anon_sym_operator, - [141938] = 5, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [174169] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3877), 1, - anon_sym_LBRACK, - ACTIONS(3872), 2, + ACTIONS(5155), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(5153), 23, anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - ACTIONS(3875), 6, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym_COLON_COLON, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, - ACTIONS(3870), 23, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - anon_sym_COLON, - sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_virtual, - anon_sym_operator, - [141982] = 20, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [174202] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5653), 1, - anon_sym_AMP_AMP, - ACTIONS(5655), 1, + ACTIONS(5246), 2, anon_sym_AMP, - ACTIONS(5665), 1, - anon_sym_noexcept, - ACTIONS(5667), 1, - anon_sym_throw, - ACTIONS(5709), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5713), 1, anon_sym_const, - ACTIONS(5952), 1, - anon_sym_LBRACK, - ACTIONS(6478), 1, - anon_sym_DASH_GT, - ACTIONS(6480), 1, - anon_sym_requires, - STATE(4462), 1, - sym_ref_qualifier, - STATE(4723), 1, - sym_requires_clause, - STATE(4968), 1, - sym_trailing_return_type, - ACTIONS(4135), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(5950), 2, + ACTIONS(5244), 23, anon_sym_LPAREN2, - anon_sym_COLON, - STATE(4059), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(4538), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat2, - STATE(4670), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(4672), 2, - sym_noexcept, - sym_throw_specifier, - ACTIONS(5731), 7, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - [142055] = 4, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [174235] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4225), 1, - anon_sym_SEMI, - ACTIONS(4322), 6, + ACTIONS(5242), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(5240), 23, anon_sym_LPAREN2, - anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(4324), 24, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, + anon_sym_EQ, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - [142096] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [174268] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4633), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(5309), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(5307), 23, anon_sym_LPAREN2, - anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym_COLON_COLON, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_EQ, - anon_sym_GT2, - ACTIONS(4631), 18, - anon_sym_AMP, - anon_sym___based, - anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - sym_identifier, + sym_auto, anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_template, - anon_sym_operator, anon_sym_try, anon_sym_requires, - [142135] = 17, + [174301] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5713), 1, + ACTIONS(5313), 2, + anon_sym_AMP, anon_sym_const, - ACTIONS(5864), 1, + ACTIONS(5311), 23, anon_sym_LPAREN2, - ACTIONS(5872), 1, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(6181), 1, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, sym_auto, - ACTIONS(6183), 1, anon_sym_decltype, - ACTIONS(6652), 1, - anon_sym_STAR, - ACTIONS(6654), 1, - anon_sym_AMP_AMP, - ACTIONS(6656), 1, - anon_sym_AMP, - STATE(3606), 1, - sym_decltype_auto, - STATE(3862), 1, - sym_parameter_list, - STATE(4690), 1, - sym__function_declarator_seq, - STATE(5013), 1, - sym__abstract_declarator, - STATE(4058), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(5862), 5, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, anon_sym_final, anon_sym_override, + anon_sym_try, anon_sym_requires, - STATE(4686), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(5731), 7, + [174334] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5194), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(5192), 23, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - [142202] = 14, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [174367] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(59), 1, + ACTIONS(5325), 2, + anon_sym_AMP, anon_sym_const, - ACTIONS(5864), 1, + ACTIONS(5323), 23, anon_sym_LPAREN2, - ACTIONS(5872), 1, - anon_sym_LBRACK, - ACTIONS(6482), 1, anon_sym_STAR, - ACTIONS(6484), 1, anon_sym_AMP_AMP, - ACTIONS(6486), 1, - anon_sym_AMP, - STATE(3490), 1, - sym_parameter_list, - STATE(4690), 1, - sym__function_declarator_seq, - STATE(4841), 1, - sym__abstract_declarator, - STATE(3996), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(4686), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(5661), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - ACTIONS(6500), 8, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, anon_sym_try, anon_sym_requires, - [142263] = 14, + [174400] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(59), 1, + ACTIONS(5238), 2, + anon_sym_AMP, anon_sym_const, - ACTIONS(5864), 1, + ACTIONS(5236), 23, anon_sym_LPAREN2, - ACTIONS(5872), 1, - anon_sym_LBRACK, - ACTIONS(6482), 1, anon_sym_STAR, - ACTIONS(6484), 1, anon_sym_AMP_AMP, - ACTIONS(6486), 1, - anon_sym_AMP, - STATE(3490), 1, - sym_parameter_list, - STATE(4690), 1, - sym__function_declarator_seq, - STATE(4857), 1, - sym__abstract_declarator, - STATE(3931), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(4686), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(5661), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - ACTIONS(4304), 8, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, anon_sym_try, anon_sym_requires, - [142324] = 17, + [174433] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5713), 1, + ACTIONS(5234), 2, + anon_sym_AMP, anon_sym_const, - ACTIONS(5864), 1, + ACTIONS(5232), 23, anon_sym_LPAREN2, - ACTIONS(5872), 1, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(6181), 1, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, sym_auto, - ACTIONS(6183), 1, anon_sym_decltype, - ACTIONS(6652), 1, - anon_sym_STAR, - ACTIONS(6654), 1, - anon_sym_AMP_AMP, - ACTIONS(6656), 1, - anon_sym_AMP, - STATE(3606), 1, - sym_decltype_auto, - STATE(3862), 1, - sym_parameter_list, - STATE(4690), 1, - sym__function_declarator_seq, - STATE(5010), 1, - sym__abstract_declarator, - STATE(4054), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(5888), 5, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, anon_sym_final, anon_sym_override, + anon_sym_try, anon_sym_requires, - STATE(4686), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(5731), 7, + [174466] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1949), 1, + anon_sym_LBRACK, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(7478), 1, + anon_sym_COLON_COLON, + ACTIONS(7694), 1, + sym_identifier, + ACTIONS(7696), 1, + anon_sym_LPAREN2, + ACTIONS(7698), 1, + anon_sym_LBRACE, + ACTIONS(7702), 1, + anon_sym_requires, + STATE(2414), 1, + sym_template_type, + STATE(3035), 1, + sym_requirement_seq, + STATE(5188), 1, + sym_lambda_capture_specifier, + STATE(5770), 1, + sym__scope_resolution, + STATE(6653), 1, + sym_requires_parameter_list, + ACTIONS(7700), 2, + sym_true, + sym_false, + STATE(7638), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(3038), 8, + sym__class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym__requirement_clause_constraint, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + sym_qualified_type_identifier, + [174527] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5254), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(5252), 23, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - [142391] = 14, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [174560] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(59), 1, + ACTIONS(5297), 2, + anon_sym_AMP, anon_sym_const, - ACTIONS(5864), 1, + ACTIONS(5295), 23, anon_sym_LPAREN2, - ACTIONS(5872), 1, - anon_sym_LBRACK, - ACTIONS(6482), 1, anon_sym_STAR, - ACTIONS(6484), 1, anon_sym_AMP_AMP, - ACTIONS(6486), 1, - anon_sym_AMP, - STATE(3490), 1, - sym_parameter_list, - STATE(4690), 1, - sym__function_declarator_seq, - STATE(4853), 1, - sym__abstract_declarator, - STATE(3996), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(4686), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(5661), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - ACTIONS(6496), 8, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, anon_sym_try, anon_sym_requires, - [142452] = 14, + [174593] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1949), 1, + anon_sym_LBRACK, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(7534), 1, + anon_sym_COLON_COLON, + ACTIONS(7704), 1, + sym_identifier, + ACTIONS(7706), 1, + anon_sym_LPAREN2, + ACTIONS(7708), 1, + anon_sym_LBRACE, + ACTIONS(7712), 1, + anon_sym_requires, + STATE(2511), 1, + sym_template_type, + STATE(3325), 1, + sym_requirement_seq, + STATE(5187), 1, + sym_lambda_capture_specifier, + STATE(5713), 1, + sym__scope_resolution, + STATE(6768), 1, + sym_requires_parameter_list, + ACTIONS(7710), 2, + sym_true, + sym_false, + STATE(7638), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(3328), 8, + sym__class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym__requirement_clause_constraint, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + sym_qualified_type_identifier, + [174654] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(59), 1, + ACTIONS(5198), 2, + anon_sym_AMP, anon_sym_const, - ACTIONS(5864), 1, + ACTIONS(5196), 23, anon_sym_LPAREN2, - ACTIONS(5872), 1, - anon_sym_LBRACK, - ACTIONS(6482), 1, anon_sym_STAR, - ACTIONS(6484), 1, anon_sym_AMP_AMP, - ACTIONS(6486), 1, - anon_sym_AMP, - STATE(3490), 1, - sym_parameter_list, - STATE(4690), 1, - sym__function_declarator_seq, - STATE(4842), 1, - sym__abstract_declarator, - STATE(3996), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(4686), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(5661), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - ACTIONS(5322), 8, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, anon_sym_try, anon_sym_requires, - [142513] = 5, + [174687] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3879), 1, - anon_sym_LBRACK, - ACTIONS(3872), 2, + ACTIONS(5155), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(5153), 23, anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - ACTIONS(3875), 5, - anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym_COLON_COLON, - ACTIONS(3870), 23, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - [142556] = 20, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [174720] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5653), 1, - anon_sym_AMP_AMP, - ACTIONS(5655), 1, + ACTIONS(5258), 2, anon_sym_AMP, - ACTIONS(5665), 1, - anon_sym_noexcept, - ACTIONS(5667), 1, - anon_sym_throw, - ACTIONS(5675), 1, - anon_sym_LBRACK, - ACTIONS(5709), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5713), 1, anon_sym_const, - ACTIONS(6478), 1, - anon_sym_DASH_GT, - ACTIONS(6480), 1, - anon_sym_requires, - STATE(4456), 1, - sym_ref_qualifier, - STATE(4716), 1, - sym_requires_clause, - STATE(4945), 1, - sym_trailing_return_type, - ACTIONS(4135), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(5673), 2, + ACTIONS(5256), 23, anon_sym_LPAREN2, - anon_sym_COLON, - STATE(4059), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(4578), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat2, - STATE(4660), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(4662), 2, - sym_noexcept, - sym_throw_specifier, - ACTIONS(5731), 7, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - [142629] = 5, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [174753] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4225), 1, - anon_sym_SEMI, - ACTIONS(4229), 1, - anon_sym_COLON_COLON, - ACTIONS(4322), 5, + ACTIONS(5281), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(5279), 23, anon_sym_LPAREN2, - anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_LBRACK_LBRACK, - ACTIONS(4324), 24, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, + anon_sym_EQ, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - [142672] = 19, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [174786] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1521), 1, - anon_sym_operator, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(1681), 1, + ACTIONS(5262), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(5260), 23, anon_sym_LPAREN2, - ACTIONS(1683), 1, - anon_sym_TILDE, - ACTIONS(4302), 1, - sym_identifier, - ACTIONS(4312), 1, - anon_sym_COLON_COLON, - ACTIONS(5353), 1, - anon_sym_LBRACK, - ACTIONS(5371), 1, anon_sym_STAR, - ACTIONS(5373), 1, anon_sym_AMP_AMP, - ACTIONS(5375), 1, - anon_sym_AMP, - STATE(4523), 1, - sym__declarator, - STATE(4598), 1, - sym__scope_resolution, - STATE(5663), 1, - sym_init_declarator, - STATE(6066), 1, - sym_ms_based_modifier, - STATE(6159), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(4918), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [142742] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(2424), 1, - anon_sym_enum, - ACTIONS(2426), 1, - anon_sym_class, - ACTIONS(2428), 1, - anon_sym_struct, - ACTIONS(2430), 1, - anon_sym_union, - ACTIONS(2444), 1, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, sym_auto, - ACTIONS(2446), 1, anon_sym_decltype, - ACTIONS(2448), 1, - anon_sym_typename, - ACTIONS(5568), 1, - sym_identifier, - ACTIONS(5570), 1, - anon_sym_COLON_COLON, - ACTIONS(5572), 1, - sym_primitive_type, - STATE(2022), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2840), 1, - sym__type_specifier, - STATE(3000), 1, - sym_qualified_type_identifier, - STATE(3008), 1, - sym_decltype_auto, - STATE(4989), 1, - sym__scope_resolution, - STATE(6159), 1, - sym_dependent_type_identifier, - STATE(2851), 2, - sym_decltype, - sym_template_type, - ACTIONS(2420), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3003), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [142816] = 14, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [174819] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2724), 1, + ACTIONS(5202), 2, + anon_sym_AMP, anon_sym_const, - ACTIONS(3908), 1, + ACTIONS(5200), 23, anon_sym_LPAREN2, - ACTIONS(3910), 1, anon_sym_STAR, - ACTIONS(3912), 1, anon_sym_AMP_AMP, - ACTIONS(3914), 1, - anon_sym_AMP, - ACTIONS(6514), 1, - anon_sym_LBRACK, - STATE(3482), 1, - sym_parameter_list, - STATE(4765), 1, - sym__function_declarator_seq, - STATE(4909), 1, - sym__abstract_declarator, - STATE(4084), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(4764), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(6500), 7, - anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_SEMI, anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, + anon_sym_try, anon_sym_requires, - ACTIONS(6516), 7, + [174852] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5293), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(5291), 23, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - [142876] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(2444), 1, sym_auto, - ACTIONS(2446), 1, anon_sym_decltype, - ACTIONS(5572), 1, - sym_primitive_type, - ACTIONS(6566), 1, - sym_identifier, - ACTIONS(6568), 1, - anon_sym_COLON_COLON, - ACTIONS(6570), 1, - anon_sym_enum, - ACTIONS(6572), 1, - anon_sym_class, - ACTIONS(6574), 1, - anon_sym_struct, - ACTIONS(6576), 1, - anon_sym_union, - ACTIONS(6578), 1, - anon_sym_typename, - STATE(2022), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2840), 1, - sym__type_specifier, - STATE(3000), 1, - sym_qualified_type_identifier, - STATE(3008), 1, - sym_decltype_auto, - STATE(5020), 1, - sym__scope_resolution, - STATE(6159), 1, - sym_dependent_type_identifier, - STATE(2851), 2, - sym_decltype, - sym_template_type, - ACTIONS(2420), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3003), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [142950] = 21, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [174885] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(107), 1, - sym_auto, - ACTIONS(109), 1, - anon_sym_decltype, - ACTIONS(996), 1, + ACTIONS(1329), 1, anon_sym_template, - ACTIONS(2932), 1, - sym_primitive_type, - ACTIONS(3906), 1, - sym_identifier, - ACTIONS(3916), 1, + ACTIONS(1949), 1, + anon_sym_LBRACK, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(7567), 1, anon_sym_COLON_COLON, - ACTIONS(5540), 1, - anon_sym_enum, - ACTIONS(5542), 1, - anon_sym_class, - ACTIONS(5544), 1, - anon_sym_struct, - ACTIONS(5546), 1, - anon_sym_union, - ACTIONS(5548), 1, - anon_sym_typename, - STATE(3199), 1, - sym__type_specifier, - STATE(3259), 1, - sym_qualified_type_identifier, - STATE(3272), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3279), 1, - sym_decltype_auto, - STATE(5034), 1, + ACTIONS(7714), 1, + sym_identifier, + ACTIONS(7716), 1, + anon_sym_LPAREN2, + ACTIONS(7718), 1, + anon_sym_LBRACE, + ACTIONS(7722), 1, + anon_sym_requires, + STATE(2945), 1, + sym_template_type, + STATE(4023), 1, + sym_requirement_seq, + STATE(5208), 1, + sym_lambda_capture_specifier, + STATE(5737), 1, sym__scope_resolution, - STATE(6159), 1, - sym_dependent_type_identifier, - STATE(3198), 2, + STATE(6901), 1, + sym_requires_parameter_list, + ACTIONS(7720), 2, + sym_true, + sym_false, + STATE(7638), 2, sym_decltype, - sym_template_type, - ACTIONS(2930), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3232), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [143024] = 21, + sym_dependent_type_identifier, + STATE(4393), 8, + sym__class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym__requirement_clause_constraint, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + sym_qualified_type_identifier, + [174946] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(6580), 1, - sym_identifier, - ACTIONS(6582), 1, - anon_sym_COLON_COLON, - ACTIONS(6586), 1, - sym_primitive_type, - ACTIONS(6588), 1, - anon_sym_enum, - ACTIONS(6590), 1, - anon_sym_class, - ACTIONS(6592), 1, - anon_sym_struct, - ACTIONS(6594), 1, - anon_sym_union, - ACTIONS(6596), 1, + ACTIONS(5289), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(5287), 23, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, sym_auto, - ACTIONS(6598), 1, anon_sym_decltype, - ACTIONS(6600), 1, - anon_sym_typename, - STATE(1946), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2492), 1, - sym__type_specifier, - STATE(2641), 1, - sym_qualified_type_identifier, - STATE(2691), 1, - sym_decltype_auto, - STATE(5025), 1, - sym__scope_resolution, - STATE(6159), 1, - sym_dependent_type_identifier, - STATE(2556), 2, - sym_decltype, - sym_template_type, - ACTIONS(6584), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2687), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [143098] = 19, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [174979] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, + ACTIONS(45), 1, anon_sym___based, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1521), 1, - anon_sym_operator, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(1681), 1, - anon_sym_LPAREN2, - ACTIONS(1683), 1, - anon_sym_TILDE, - ACTIONS(4302), 1, + ACTIONS(7506), 1, sym_identifier, - ACTIONS(4312), 1, - anon_sym_COLON_COLON, - ACTIONS(5353), 1, - anon_sym_LBRACK, - ACTIONS(5371), 1, + ACTIONS(7508), 1, + anon_sym_LPAREN2, + ACTIONS(7510), 1, anon_sym_STAR, - ACTIONS(5373), 1, - anon_sym_AMP_AMP, - ACTIONS(5375), 1, - anon_sym_AMP, - STATE(4598), 1, - sym__scope_resolution, - STATE(4717), 1, - sym__declarator, - STATE(5437), 1, - sym_init_declarator, - STATE(6066), 1, + STATE(5721), 1, + sym__type_declarator, + STATE(7376), 1, sym_ms_based_modifier, - STATE(6159), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(4918), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [143168] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(6522), 1, - sym_identifier, - ACTIONS(6524), 1, - anon_sym_COLON_COLON, - ACTIONS(6528), 1, - sym_primitive_type, - ACTIONS(6530), 1, - anon_sym_enum, - ACTIONS(6532), 1, - anon_sym_class, - ACTIONS(6534), 1, - anon_sym_struct, - ACTIONS(6536), 1, - anon_sym_union, - ACTIONS(6538), 1, - sym_auto, - ACTIONS(6540), 1, - anon_sym_decltype, - ACTIONS(6542), 1, - anon_sym_typename, - STATE(1866), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1926), 1, - sym__type_specifier, - STATE(2015), 1, - sym_decltype_auto, - STATE(2068), 1, - sym_qualified_type_identifier, - STATE(5022), 1, - sym__scope_resolution, - STATE(6159), 1, - sym_dependent_type_identifier, - STATE(1995), 2, - sym_decltype, - sym_template_type, - ACTIONS(6526), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2017), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [143242] = 19, + STATE(4706), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(5904), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(2871), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [175025] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, + ACTIONS(45), 1, anon_sym___based, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1521), 1, - anon_sym_operator, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(1681), 1, - anon_sym_LPAREN2, - ACTIONS(1683), 1, - anon_sym_TILDE, - ACTIONS(4302), 1, + ACTIONS(7506), 1, sym_identifier, - ACTIONS(4312), 1, - anon_sym_COLON_COLON, - ACTIONS(5353), 1, - anon_sym_LBRACK, - ACTIONS(5377), 1, + ACTIONS(7508), 1, + anon_sym_LPAREN2, + ACTIONS(7510), 1, anon_sym_STAR, - ACTIONS(5379), 1, - anon_sym_AMP_AMP, - ACTIONS(5381), 1, - anon_sym_AMP, - STATE(4598), 1, - sym__scope_resolution, - STATE(4614), 1, - sym__declarator, - STATE(5437), 1, - sym_init_declarator, - STATE(6072), 1, + STATE(5749), 1, + sym__type_declarator, + STATE(7376), 1, sym_ms_based_modifier, - STATE(6159), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(4918), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [143312] = 21, + STATE(4706), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(5904), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(2871), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [175071] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(6544), 1, - sym_identifier, - ACTIONS(6546), 1, + ACTIONS(5043), 1, anon_sym_COLON_COLON, - ACTIONS(6550), 1, - sym_primitive_type, - ACTIONS(6552), 1, - anon_sym_enum, - ACTIONS(6554), 1, - anon_sym_class, - ACTIONS(6556), 1, - anon_sym_struct, - ACTIONS(6558), 1, - anon_sym_union, - ACTIONS(6560), 1, + ACTIONS(5062), 1, + anon_sym_LBRACE, + ACTIONS(5155), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(5153), 20, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, sym_auto, - ACTIONS(6562), 1, anon_sym_decltype, - ACTIONS(6564), 1, - anon_sym_typename, - STATE(1976), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2608), 1, - sym__type_specifier, - STATE(2738), 1, - sym_decltype_auto, - STATE(2822), 1, - sym_qualified_type_identifier, - STATE(5036), 1, - sym__scope_resolution, - STATE(6159), 1, - sym_dependent_type_identifier, - STATE(2616), 2, - sym_decltype, - sym_template_type, - ACTIONS(6548), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2737), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [143386] = 14, + anon_sym_GT2, + [175107] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2724), 1, - anon_sym_const, - ACTIONS(3908), 1, + ACTIONS(45), 1, + anon_sym___based, + ACTIONS(7506), 1, + sym_identifier, + ACTIONS(7508), 1, anon_sym_LPAREN2, - ACTIONS(6508), 1, + ACTIONS(7510), 1, anon_sym_STAR, - ACTIONS(6510), 1, - anon_sym_AMP_AMP, - ACTIONS(6512), 1, - anon_sym_AMP, - ACTIONS(6514), 1, - anon_sym_LBRACK, - STATE(3461), 1, - sym_parameter_list, - STATE(4765), 1, - sym__function_declarator_seq, - STATE(4919), 1, - sym__abstract_declarator, - STATE(4084), 2, + STATE(5760), 1, + sym__type_declarator, + STATE(7376), 1, + sym_ms_based_modifier, + STATE(4706), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - STATE(4764), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(5322), 7, - anon_sym_SEMI, + STATE(5904), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(2871), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [175153] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4878), 1, + anon_sym_COLON, + ACTIONS(6195), 1, anon_sym_LBRACE, - anon_sym_EQ, + STATE(3691), 1, + sym_field_declaration_list, + STATE(6182), 1, + sym_virtual_specifier, + STATE(6759), 1, + sym_base_class_clause, + ACTIONS(4937), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + ACTIONS(6199), 2, anon_sym_final, anon_sym_override, - anon_sym_try, - anon_sym_requires, - ACTIONS(6516), 7, + ACTIONS(4939), 15, + anon_sym___based, + anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - [143446] = 19, + sym_identifier, + sym_auto, + anon_sym_decltype, + [175197] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, + ACTIONS(45), 1, anon_sym___based, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1521), 1, - anon_sym_operator, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(1681), 1, - anon_sym_LPAREN2, - ACTIONS(1683), 1, - anon_sym_TILDE, - ACTIONS(4302), 1, + ACTIONS(7506), 1, sym_identifier, - ACTIONS(4312), 1, - anon_sym_COLON_COLON, - ACTIONS(5353), 1, - anon_sym_LBRACK, - ACTIONS(5371), 1, + ACTIONS(7508), 1, + anon_sym_LPAREN2, + ACTIONS(7510), 1, anon_sym_STAR, - ACTIONS(5373), 1, - anon_sym_AMP_AMP, - ACTIONS(5375), 1, - anon_sym_AMP, - STATE(4522), 1, - sym__declarator, - STATE(4598), 1, - sym__scope_resolution, - STATE(5667), 1, - sym_init_declarator, - STATE(6066), 1, + STATE(5716), 1, + sym__type_declarator, + STATE(7376), 1, sym_ms_based_modifier, - STATE(6159), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(4918), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [143516] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(2444), 1, - sym_auto, - ACTIONS(2446), 1, - anon_sym_decltype, - ACTIONS(5572), 1, - sym_primitive_type, - ACTIONS(6566), 1, - sym_identifier, - ACTIONS(6568), 1, - anon_sym_COLON_COLON, - ACTIONS(6570), 1, - anon_sym_enum, - ACTIONS(6572), 1, - anon_sym_class, - ACTIONS(6574), 1, - anon_sym_struct, - ACTIONS(6576), 1, - anon_sym_union, - ACTIONS(6578), 1, - anon_sym_typename, - STATE(2022), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3000), 1, - sym_qualified_type_identifier, - STATE(3008), 1, - sym_decltype_auto, - STATE(3205), 1, - sym__type_specifier, - STATE(5020), 1, - sym__scope_resolution, - STATE(6159), 1, - sym_dependent_type_identifier, - STATE(2851), 2, - sym_decltype, - sym_template_type, - ACTIONS(2420), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3003), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [143590] = 19, + STATE(4706), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(5904), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(2871), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [175243] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, + ACTIONS(45), 1, anon_sym___based, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1521), 1, - anon_sym_operator, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(1681), 1, - anon_sym_LPAREN2, - ACTIONS(1683), 1, - anon_sym_TILDE, - ACTIONS(4302), 1, + ACTIONS(7506), 1, sym_identifier, - ACTIONS(4312), 1, - anon_sym_COLON_COLON, - ACTIONS(5353), 1, - anon_sym_LBRACK, - ACTIONS(5377), 1, + ACTIONS(7508), 1, + anon_sym_LPAREN2, + ACTIONS(7510), 1, anon_sym_STAR, - ACTIONS(5379), 1, - anon_sym_AMP_AMP, - ACTIONS(5381), 1, - anon_sym_AMP, - STATE(4598), 1, - sym__scope_resolution, - STATE(4603), 1, - sym__declarator, - STATE(5437), 1, - sym_init_declarator, - STATE(6072), 1, + STATE(5775), 1, + sym__type_declarator, + STATE(7376), 1, sym_ms_based_modifier, - STATE(6159), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(4918), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [143660] = 19, + STATE(4801), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(5904), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(2871), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [175289] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, + ACTIONS(45), 1, anon_sym___based, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1521), 1, - anon_sym_operator, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(1681), 1, - anon_sym_LPAREN2, - ACTIONS(1683), 1, - anon_sym_TILDE, - ACTIONS(4302), 1, + ACTIONS(7506), 1, sym_identifier, - ACTIONS(4312), 1, - anon_sym_COLON_COLON, - ACTIONS(5353), 1, - anon_sym_LBRACK, - ACTIONS(5371), 1, + ACTIONS(7508), 1, + anon_sym_LPAREN2, + ACTIONS(7510), 1, anon_sym_STAR, - ACTIONS(5373), 1, - anon_sym_AMP_AMP, - ACTIONS(5375), 1, - anon_sym_AMP, - STATE(4598), 1, - sym__scope_resolution, - STATE(4712), 1, - sym__declarator, - STATE(5667), 1, - sym_init_declarator, - STATE(6066), 1, + STATE(5752), 1, + sym__type_declarator, + STATE(7376), 1, sym_ms_based_modifier, - STATE(6159), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(4918), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [143730] = 21, + STATE(4706), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(5904), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(2871), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [175335] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1507), 1, - anon_sym_enum, - ACTIONS(1509), 1, - anon_sym_class, - ACTIONS(1511), 1, - anon_sym_struct, - ACTIONS(1513), 1, - anon_sym_union, - ACTIONS(1515), 1, - sym_auto, - ACTIONS(1517), 1, - anon_sym_decltype, - ACTIONS(1519), 1, - anon_sym_typename, - ACTIONS(5498), 1, + ACTIONS(45), 1, + anon_sym___based, + ACTIONS(7506), 1, sym_identifier, - ACTIONS(5502), 1, - anon_sym_COLON_COLON, - ACTIONS(5504), 1, - sym_primitive_type, - STATE(1922), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2265), 1, - sym__type_specifier, - STATE(2444), 1, - sym_qualified_type_identifier, - STATE(2540), 1, - sym_decltype_auto, - STATE(4997), 1, - sym__scope_resolution, - STATE(6159), 1, - sym_dependent_type_identifier, - STATE(2247), 2, - sym_decltype, - sym_template_type, - ACTIONS(1503), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2541), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [143804] = 21, + ACTIONS(7508), 1, + anon_sym_LPAREN2, + ACTIONS(7510), 1, + anon_sym_STAR, + STATE(5707), 1, + sym__type_declarator, + STATE(7376), 1, + sym_ms_based_modifier, + STATE(4706), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(5904), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(2871), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [175381] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(107), 1, - sym_auto, - ACTIONS(109), 1, - anon_sym_decltype, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(2932), 1, - sym_primitive_type, - ACTIONS(3906), 1, + ACTIONS(45), 1, + anon_sym___based, + ACTIONS(7506), 1, sym_identifier, - ACTIONS(3916), 1, - anon_sym_COLON_COLON, - ACTIONS(5540), 1, - anon_sym_enum, - ACTIONS(5542), 1, - anon_sym_class, - ACTIONS(5544), 1, - anon_sym_struct, - ACTIONS(5546), 1, - anon_sym_union, - ACTIONS(5548), 1, - anon_sym_typename, - STATE(3259), 1, - sym_qualified_type_identifier, - STATE(3272), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3279), 1, - sym_decltype_auto, - STATE(5034), 1, - sym__scope_resolution, - STATE(5156), 1, - sym__type_specifier, - STATE(6159), 1, - sym_dependent_type_identifier, - STATE(3198), 2, - sym_decltype, - sym_template_type, - ACTIONS(2930), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3232), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [143878] = 19, + ACTIONS(7508), 1, + anon_sym_LPAREN2, + ACTIONS(7510), 1, + anon_sym_STAR, + STATE(5773), 1, + sym__type_declarator, + STATE(7376), 1, + sym_ms_based_modifier, + STATE(4774), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(5904), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(2871), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [175427] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, + ACTIONS(45), 1, anon_sym___based, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1521), 1, - anon_sym_operator, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(1681), 1, - anon_sym_LPAREN2, - ACTIONS(1683), 1, - anon_sym_TILDE, - ACTIONS(4302), 1, + ACTIONS(7506), 1, sym_identifier, - ACTIONS(4312), 1, - anon_sym_COLON_COLON, - ACTIONS(5353), 1, - anon_sym_LBRACK, - ACTIONS(5377), 1, + ACTIONS(7508), 1, + anon_sym_LPAREN2, + ACTIONS(7510), 1, anon_sym_STAR, - ACTIONS(5379), 1, - anon_sym_AMP_AMP, - ACTIONS(5381), 1, - anon_sym_AMP, - STATE(4596), 1, - sym__declarator, - STATE(4598), 1, - sym__scope_resolution, - STATE(5437), 1, - sym_init_declarator, - STATE(6072), 1, + STATE(5725), 1, + sym__type_declarator, + STATE(7376), 1, sym_ms_based_modifier, - STATE(6159), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(4918), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [143948] = 4, + STATE(4802), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(5904), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(2871), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [175473] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(4229), 1, - anon_sym_COLON_COLON, - ACTIONS(4322), 5, + ACTIONS(45), 1, + anon_sym___based, + ACTIONS(7506), 1, + sym_identifier, + ACTIONS(7508), 1, anon_sym_LPAREN2, - anon_sym_TILDE, + ACTIONS(7510), 1, anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_LBRACK_LBRACK, - ACTIONS(4324), 24, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, + STATE(5777), 1, + sym__type_declarator, + STATE(7376), 1, + sym_ms_based_modifier, + STATE(4706), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(5904), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(2871), 11, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - [143988] = 21, + [175519] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1515), 1, - sym_auto, - ACTIONS(1517), 1, - anon_sym_decltype, - ACTIONS(5504), 1, - sym_primitive_type, - ACTIONS(6610), 1, + ACTIONS(45), 1, + anon_sym___based, + ACTIONS(7506), 1, sym_identifier, - ACTIONS(6612), 1, - anon_sym_COLON_COLON, - ACTIONS(6614), 1, - anon_sym_enum, - ACTIONS(6616), 1, - anon_sym_class, - ACTIONS(6618), 1, - anon_sym_struct, - ACTIONS(6620), 1, - anon_sym_union, - ACTIONS(6622), 1, - anon_sym_typename, - STATE(1922), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2265), 1, - sym__type_specifier, - STATE(2444), 1, - sym_qualified_type_identifier, - STATE(2540), 1, - sym_decltype_auto, - STATE(4990), 1, - sym__scope_resolution, - STATE(6159), 1, - sym_dependent_type_identifier, - STATE(2247), 2, - sym_decltype, - sym_template_type, - ACTIONS(1503), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2541), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [144062] = 21, + ACTIONS(7508), 1, + anon_sym_LPAREN2, + ACTIONS(7510), 1, + anon_sym_STAR, + STATE(5799), 1, + sym__type_declarator, + STATE(7376), 1, + sym_ms_based_modifier, + STATE(4706), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(5904), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(2871), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [175565] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1515), 1, - sym_auto, - ACTIONS(1517), 1, - anon_sym_decltype, - ACTIONS(5504), 1, - sym_primitive_type, - ACTIONS(6610), 1, + ACTIONS(45), 1, + anon_sym___based, + ACTIONS(7506), 1, sym_identifier, - ACTIONS(6612), 1, - anon_sym_COLON_COLON, - ACTIONS(6614), 1, - anon_sym_enum, - ACTIONS(6616), 1, - anon_sym_class, - ACTIONS(6618), 1, - anon_sym_struct, - ACTIONS(6620), 1, - anon_sym_union, - ACTIONS(6622), 1, - anon_sym_typename, - STATE(1922), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2444), 1, - sym_qualified_type_identifier, - STATE(2540), 1, - sym_decltype_auto, - STATE(3150), 1, - sym__type_specifier, - STATE(4990), 1, - sym__scope_resolution, - STATE(6159), 1, - sym_dependent_type_identifier, - STATE(2247), 2, - sym_decltype, - sym_template_type, - ACTIONS(1503), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2541), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [144136] = 19, + ACTIONS(7508), 1, + anon_sym_LPAREN2, + ACTIONS(7510), 1, + anon_sym_STAR, + STATE(5732), 1, + sym__type_declarator, + STATE(7376), 1, + sym_ms_based_modifier, + STATE(4781), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(5904), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(2871), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [175611] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, + ACTIONS(45), 1, anon_sym___based, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1521), 1, - anon_sym_operator, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(1681), 1, - anon_sym_LPAREN2, - ACTIONS(1683), 1, - anon_sym_TILDE, - ACTIONS(4302), 1, + ACTIONS(7506), 1, sym_identifier, - ACTIONS(4312), 1, - anon_sym_COLON_COLON, - ACTIONS(5353), 1, - anon_sym_LBRACK, - ACTIONS(5371), 1, + ACTIONS(7508), 1, + anon_sym_LPAREN2, + ACTIONS(7510), 1, anon_sym_STAR, - ACTIONS(5373), 1, - anon_sym_AMP_AMP, - ACTIONS(5375), 1, - anon_sym_AMP, - STATE(4598), 1, - sym__scope_resolution, - STATE(4679), 1, - sym__declarator, - STATE(5474), 1, - sym_init_declarator, - STATE(6066), 1, + STATE(5717), 1, + sym__type_declarator, + STATE(7376), 1, sym_ms_based_modifier, - STATE(6159), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(4918), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [144206] = 19, + STATE(4787), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(5904), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(2871), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [175657] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, + ACTIONS(45), 1, anon_sym___based, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1521), 1, - anon_sym_operator, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(1681), 1, - anon_sym_LPAREN2, - ACTIONS(1683), 1, - anon_sym_TILDE, - ACTIONS(4302), 1, + ACTIONS(7506), 1, sym_identifier, - ACTIONS(4312), 1, - anon_sym_COLON_COLON, - ACTIONS(5353), 1, - anon_sym_LBRACK, - ACTIONS(5377), 1, + ACTIONS(7508), 1, + anon_sym_LPAREN2, + ACTIONS(7510), 1, anon_sym_STAR, - ACTIONS(5379), 1, - anon_sym_AMP_AMP, - ACTIONS(5381), 1, - anon_sym_AMP, - STATE(4598), 1, - sym__scope_resolution, - STATE(4637), 1, - sym__declarator, - STATE(5437), 1, - sym_init_declarator, - STATE(6072), 1, + STATE(5790), 1, + sym__type_declarator, + STATE(7376), 1, sym_ms_based_modifier, - STATE(6159), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(4918), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [144276] = 11, + STATE(4706), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(5904), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(2871), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [175703] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(59), 1, - anon_sym_const, - ACTIONS(5657), 1, - anon_sym___attribute__, - ACTIONS(6504), 1, - anon_sym___declspec, - ACTIONS(6506), 1, - anon_sym_virtual, - ACTIONS(5487), 2, - anon_sym_AMP, - anon_sym_LBRACK, - ACTIONS(5489), 3, + ACTIONS(4878), 1, + anon_sym_COLON, + ACTIONS(6195), 1, + anon_sym_LBRACE, + STATE(3768), 1, + sym_field_declaration_list, + STATE(6054), 1, + sym_virtual_specifier, + STATE(6930), 1, + sym_base_class_clause, + ACTIONS(4890), 2, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_AMP_AMP, - ACTIONS(6502), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - ACTIONS(5661), 7, + ACTIONS(6199), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4892), 15, + anon_sym___based, + anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - STATE(3994), 8, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual, - aux_sym__declaration_specifiers_repeat1, - [144330] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(2444), 1, - sym_auto, - ACTIONS(2446), 1, - anon_sym_decltype, - ACTIONS(5572), 1, - sym_primitive_type, - ACTIONS(6566), 1, sym_identifier, - ACTIONS(6568), 1, - anon_sym_COLON_COLON, - ACTIONS(6570), 1, - anon_sym_enum, - ACTIONS(6572), 1, - anon_sym_class, - ACTIONS(6574), 1, - anon_sym_struct, - ACTIONS(6576), 1, - anon_sym_union, - ACTIONS(6578), 1, - anon_sym_typename, - STATE(2022), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3000), 1, - sym_qualified_type_identifier, - STATE(3008), 1, - sym_decltype_auto, - STATE(3204), 1, - sym__type_specifier, - STATE(5020), 1, - sym__scope_resolution, - STATE(6159), 1, - sym_dependent_type_identifier, - STATE(2851), 2, - sym_decltype, - sym_template_type, - ACTIONS(2420), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3003), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [144404] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1697), 1, - sym_primitive_type, - ACTIONS(1699), 1, - anon_sym_enum, - ACTIONS(1701), 1, - anon_sym_class, - ACTIONS(1703), 1, - anon_sym_struct, - ACTIONS(1705), 1, - anon_sym_union, - ACTIONS(1707), 1, sym_auto, - ACTIONS(1709), 1, anon_sym_decltype, - ACTIONS(1711), 1, - anon_sym_typename, - ACTIONS(3906), 1, - sym_identifier, - ACTIONS(4641), 1, - anon_sym_COLON_COLON, - STATE(3466), 1, - sym__type_specifier, - STATE(3554), 1, - sym_qualified_type_identifier, - STATE(3558), 1, - sym_decltype_auto, - STATE(3584), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(5040), 1, - sym__scope_resolution, - STATE(6159), 1, - sym_dependent_type_identifier, - STATE(3198), 2, - sym_decltype, - sym_template_type, - ACTIONS(1695), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3601), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [144478] = 19, + [175747] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, + ACTIONS(45), 1, anon_sym___based, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1521), 1, - anon_sym_operator, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(1681), 1, - anon_sym_LPAREN2, - ACTIONS(1683), 1, - anon_sym_TILDE, - ACTIONS(4302), 1, + ACTIONS(7506), 1, sym_identifier, - ACTIONS(4312), 1, - anon_sym_COLON_COLON, - ACTIONS(5353), 1, - anon_sym_LBRACK, - ACTIONS(5371), 1, + ACTIONS(7508), 1, + anon_sym_LPAREN2, + ACTIONS(7510), 1, anon_sym_STAR, - ACTIONS(5373), 1, - anon_sym_AMP_AMP, - ACTIONS(5375), 1, - anon_sym_AMP, - STATE(4598), 1, - sym__scope_resolution, - STATE(4742), 1, - sym__declarator, - STATE(5987), 1, - sym_init_declarator, - STATE(6066), 1, + STATE(5739), 1, + sym__type_declarator, + STATE(7376), 1, sym_ms_based_modifier, - STATE(6159), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(4918), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [144548] = 19, + STATE(4706), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(5904), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(2871), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [175793] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, + ACTIONS(45), 1, anon_sym___based, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1521), 1, - anon_sym_operator, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(1681), 1, - anon_sym_LPAREN2, - ACTIONS(1683), 1, - anon_sym_TILDE, - ACTIONS(4302), 1, + ACTIONS(7506), 1, sym_identifier, - ACTIONS(4312), 1, - anon_sym_COLON_COLON, - ACTIONS(5353), 1, - anon_sym_LBRACK, - ACTIONS(5371), 1, + ACTIONS(7508), 1, + anon_sym_LPAREN2, + ACTIONS(7510), 1, anon_sym_STAR, - ACTIONS(5373), 1, - anon_sym_AMP_AMP, - ACTIONS(5375), 1, - anon_sym_AMP, - STATE(4472), 1, - sym__declarator, - STATE(4598), 1, - sym__scope_resolution, - STATE(5492), 1, - sym_init_declarator, - STATE(6066), 1, + STATE(5722), 1, + sym__type_declarator, + STATE(7376), 1, sym_ms_based_modifier, - STATE(6159), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(4918), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [144618] = 21, + STATE(4706), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(5904), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(2871), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [175839] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1697), 1, - sym_primitive_type, - ACTIONS(1707), 1, - sym_auto, - ACTIONS(1709), 1, - anon_sym_decltype, - ACTIONS(2922), 1, + ACTIONS(45), 1, + anon_sym___based, + ACTIONS(7506), 1, sym_identifier, - ACTIONS(5598), 1, - anon_sym_COLON_COLON, - ACTIONS(5600), 1, - anon_sym_enum, - ACTIONS(5602), 1, - anon_sym_class, - ACTIONS(5604), 1, - anon_sym_struct, - ACTIONS(5606), 1, - anon_sym_union, - ACTIONS(5608), 1, - anon_sym_typename, - STATE(3466), 1, - sym__type_specifier, - STATE(3554), 1, - sym_qualified_type_identifier, - STATE(3558), 1, - sym_decltype_auto, - STATE(3905), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(5035), 1, - sym__scope_resolution, - STATE(6159), 1, - sym_dependent_type_identifier, - STATE(3198), 2, - sym_decltype, - sym_template_type, - ACTIONS(5534), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3601), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [144692] = 19, + ACTIONS(7508), 1, + anon_sym_LPAREN2, + ACTIONS(7510), 1, + anon_sym_STAR, + STATE(5724), 1, + sym__type_declarator, + STATE(7376), 1, + sym_ms_based_modifier, + STATE(4789), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(5904), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(2871), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [175885] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, + ACTIONS(45), 1, anon_sym___based, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1521), 1, - anon_sym_operator, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(1681), 1, - anon_sym_LPAREN2, - ACTIONS(1683), 1, - anon_sym_TILDE, - ACTIONS(4302), 1, + ACTIONS(7506), 1, sym_identifier, - ACTIONS(4312), 1, - anon_sym_COLON_COLON, - ACTIONS(5353), 1, - anon_sym_LBRACK, - ACTIONS(5371), 1, + ACTIONS(7508), 1, + anon_sym_LPAREN2, + ACTIONS(7510), 1, anon_sym_STAR, - ACTIONS(5373), 1, - anon_sym_AMP_AMP, - ACTIONS(5375), 1, - anon_sym_AMP, - STATE(4502), 1, - sym__declarator, - STATE(4598), 1, - sym__scope_resolution, - STATE(5571), 1, - sym_init_declarator, - STATE(6066), 1, + STATE(5727), 1, + sym__type_declarator, + STATE(7376), 1, sym_ms_based_modifier, - STATE(6159), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(4918), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [144762] = 21, + STATE(4706), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(5904), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(2871), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [175931] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(107), 1, - sym_auto, - ACTIONS(109), 1, - anon_sym_decltype, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1451), 1, - anon_sym_enum, - ACTIONS(1453), 1, - anon_sym_class, - ACTIONS(1455), 1, - anon_sym_struct, - ACTIONS(1457), 1, - anon_sym_union, - ACTIONS(1471), 1, - anon_sym_typename, - ACTIONS(2932), 1, - sym_primitive_type, - ACTIONS(3906), 1, + ACTIONS(45), 1, + anon_sym___based, + ACTIONS(7506), 1, sym_identifier, - ACTIONS(3916), 1, - anon_sym_COLON_COLON, - STATE(3171), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3199), 1, - sym__type_specifier, - STATE(3259), 1, - sym_qualified_type_identifier, - STATE(3279), 1, - sym_decltype_auto, - STATE(5034), 1, - sym__scope_resolution, - STATE(6159), 1, - sym_dependent_type_identifier, - STATE(3198), 2, - sym_decltype, - sym_template_type, - ACTIONS(61), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3232), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [144836] = 21, + ACTIONS(7508), 1, + anon_sym_LPAREN2, + ACTIONS(7510), 1, + anon_sym_STAR, + STATE(5751), 1, + sym__type_declarator, + STATE(7376), 1, + sym_ms_based_modifier, + STATE(4780), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(5904), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(2871), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [175977] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1515), 1, - sym_auto, - ACTIONS(1517), 1, - anon_sym_decltype, - ACTIONS(5504), 1, - sym_primitive_type, - ACTIONS(6610), 1, + ACTIONS(45), 1, + anon_sym___based, + ACTIONS(7506), 1, sym_identifier, - ACTIONS(6612), 1, - anon_sym_COLON_COLON, - ACTIONS(6614), 1, - anon_sym_enum, - ACTIONS(6616), 1, - anon_sym_class, - ACTIONS(6618), 1, - anon_sym_struct, - ACTIONS(6620), 1, - anon_sym_union, - ACTIONS(6622), 1, - anon_sym_typename, - STATE(1922), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2444), 1, - sym_qualified_type_identifier, - STATE(2540), 1, - sym_decltype_auto, - STATE(3189), 1, - sym__type_specifier, - STATE(4990), 1, - sym__scope_resolution, - STATE(6159), 1, - sym_dependent_type_identifier, - STATE(2247), 2, - sym_decltype, - sym_template_type, - ACTIONS(1503), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2541), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [144910] = 21, + ACTIONS(7508), 1, + anon_sym_LPAREN2, + ACTIONS(7510), 1, + anon_sym_STAR, + STATE(5743), 1, + sym__type_declarator, + STATE(7376), 1, + sym_ms_based_modifier, + STATE(4784), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(5904), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(2871), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [176023] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(107), 1, + ACTIONS(4878), 1, + anon_sym_COLON, + ACTIONS(6195), 1, + anon_sym_LBRACE, + STATE(3773), 1, + sym_field_declaration_list, + STATE(6035), 1, + sym_virtual_specifier, + STATE(6732), 1, + sym_base_class_clause, + ACTIONS(4872), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + ACTIONS(6199), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4874), 15, + anon_sym___based, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, sym_auto, - ACTIONS(109), 1, anon_sym_decltype, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(2932), 1, - sym_primitive_type, - ACTIONS(3906), 1, + [176067] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(45), 1, + anon_sym___based, + ACTIONS(7506), 1, sym_identifier, - ACTIONS(3916), 1, - anon_sym_COLON_COLON, - ACTIONS(5540), 1, - anon_sym_enum, - ACTIONS(5542), 1, - anon_sym_class, - ACTIONS(5544), 1, - anon_sym_struct, - ACTIONS(5546), 1, - anon_sym_union, - ACTIONS(5548), 1, - anon_sym_typename, - STATE(3259), 1, - sym_qualified_type_identifier, - STATE(3272), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3279), 1, - sym_decltype_auto, - STATE(5034), 1, - sym__scope_resolution, - STATE(5153), 1, - sym__type_specifier, - STATE(6159), 1, - sym_dependent_type_identifier, - STATE(3198), 2, - sym_decltype, - sym_template_type, - ACTIONS(2930), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3232), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [144984] = 21, + ACTIONS(7508), 1, + anon_sym_LPAREN2, + ACTIONS(7510), 1, + anon_sym_STAR, + STATE(5780), 1, + sym__type_declarator, + STATE(7376), 1, + sym_ms_based_modifier, + STATE(4772), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(5904), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(2871), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [176113] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(6544), 1, + ACTIONS(45), 1, + anon_sym___based, + ACTIONS(7506), 1, sym_identifier, - ACTIONS(6546), 1, - anon_sym_COLON_COLON, - ACTIONS(6550), 1, - sym_primitive_type, - ACTIONS(6552), 1, - anon_sym_enum, - ACTIONS(6554), 1, - anon_sym_class, - ACTIONS(6556), 1, - anon_sym_struct, - ACTIONS(6558), 1, - anon_sym_union, - ACTIONS(6560), 1, - sym_auto, - ACTIONS(6562), 1, - anon_sym_decltype, - ACTIONS(6564), 1, - anon_sym_typename, - STATE(1976), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2181), 1, - sym__type_specifier, - STATE(2738), 1, - sym_decltype_auto, - STATE(2822), 1, - sym_qualified_type_identifier, - STATE(5036), 1, - sym__scope_resolution, - STATE(6159), 1, - sym_dependent_type_identifier, - STATE(2616), 2, - sym_decltype, - sym_template_type, - ACTIONS(6548), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2737), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [145058] = 21, + ACTIONS(7508), 1, + anon_sym_LPAREN2, + ACTIONS(7510), 1, + anon_sym_STAR, + STATE(5768), 1, + sym__type_declarator, + STATE(7376), 1, + sym_ms_based_modifier, + STATE(4706), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(5904), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(2871), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [176159] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(6624), 1, + ACTIONS(45), 1, + anon_sym___based, + ACTIONS(7506), 1, sym_identifier, - ACTIONS(6626), 1, - anon_sym_COLON_COLON, - ACTIONS(6630), 1, - sym_primitive_type, - ACTIONS(6632), 1, - anon_sym_enum, - ACTIONS(6634), 1, - anon_sym_class, - ACTIONS(6636), 1, - anon_sym_struct, - ACTIONS(6638), 1, - anon_sym_union, - ACTIONS(6640), 1, - sym_auto, - ACTIONS(6642), 1, - anon_sym_decltype, - ACTIONS(6644), 1, - anon_sym_typename, - STATE(1903), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1971), 1, - sym__type_specifier, - STATE(2319), 1, - sym_decltype_auto, - STATE(2331), 1, - sym_qualified_type_identifier, - STATE(5001), 1, - sym__scope_resolution, - STATE(6159), 1, - sym_dependent_type_identifier, - STATE(2204), 2, - sym_decltype, - sym_template_type, - ACTIONS(6628), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2320), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [145132] = 14, + ACTIONS(7508), 1, + anon_sym_LPAREN2, + ACTIONS(7510), 1, + anon_sym_STAR, + STATE(5748), 1, + sym__type_declarator, + STATE(7376), 1, + sym_ms_based_modifier, + STATE(4770), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(5904), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(2871), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [176205] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2724), 1, + ACTIONS(45), 1, + anon_sym___based, + ACTIONS(7506), 1, + sym_identifier, + ACTIONS(7508), 1, + anon_sym_LPAREN2, + ACTIONS(7510), 1, + anon_sym_STAR, + STATE(5720), 1, + sym__type_declarator, + STATE(7376), 1, + sym_ms_based_modifier, + STATE(4706), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(5904), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(2871), 11, anon_sym_const, - ACTIONS(3908), 1, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [176251] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6512), 1, anon_sym_LPAREN2, - ACTIONS(3910), 1, + ACTIONS(6514), 1, anon_sym_STAR, - ACTIONS(3912), 1, + ACTIONS(6516), 1, anon_sym_AMP_AMP, - ACTIONS(3914), 1, + ACTIONS(6518), 1, anon_sym_AMP, - ACTIONS(6514), 1, + ACTIONS(6520), 1, anon_sym_LBRACK, - STATE(3482), 1, + STATE(3793), 1, sym_parameter_list, - STATE(4765), 1, - sym__function_declarator_seq, - STATE(4929), 1, + STATE(5326), 1, sym__abstract_declarator, - STATE(3976), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(4764), 5, + STATE(5464), 1, + sym__function_declarator_seq, + STATE(5367), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(4304), 7, + ACTIONS(6502), 11, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_EQ, anon_sym_final, anon_sym_override, + anon_sym_GT2, + anon_sym_try, anon_sym_requires, - ACTIONS(6516), 7, + [176299] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(45), 1, + anon_sym___based, + ACTIONS(7506), 1, + sym_identifier, + ACTIONS(7508), 1, + anon_sym_LPAREN2, + ACTIONS(7510), 1, + anon_sym_STAR, + STATE(5734), 1, + sym__type_declarator, + STATE(7376), 1, + sym_ms_based_modifier, + STATE(4794), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(5904), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(2871), 11, + anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - [145192] = 21, + [176345] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1697), 1, - sym_primitive_type, - ACTIONS(1701), 1, - anon_sym_class, - ACTIONS(1703), 1, - anon_sym_struct, - ACTIONS(1705), 1, - anon_sym_union, - ACTIONS(1707), 1, - sym_auto, - ACTIONS(1709), 1, - anon_sym_decltype, - ACTIONS(3906), 1, + ACTIONS(45), 1, + anon_sym___based, + ACTIONS(7506), 1, sym_identifier, - ACTIONS(4641), 1, - anon_sym_COLON_COLON, - ACTIONS(5536), 1, - anon_sym_enum, - ACTIONS(5538), 1, - anon_sym_typename, - STATE(3466), 1, - sym__type_specifier, - STATE(3554), 1, - sym_qualified_type_identifier, - STATE(3558), 1, - sym_decltype_auto, - STATE(3905), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(5040), 1, - sym__scope_resolution, - STATE(6159), 1, - sym_dependent_type_identifier, - STATE(3198), 2, - sym_decltype, - sym_template_type, - ACTIONS(5534), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3601), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [145266] = 19, + ACTIONS(7508), 1, + anon_sym_LPAREN2, + ACTIONS(7510), 1, + anon_sym_STAR, + STATE(5703), 1, + sym__type_declarator, + STATE(7376), 1, + sym_ms_based_modifier, + STATE(4706), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(5904), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(2871), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [176391] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, + ACTIONS(45), 1, anon_sym___based, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1521), 1, - anon_sym_operator, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(1681), 1, - anon_sym_LPAREN2, - ACTIONS(1683), 1, - anon_sym_TILDE, - ACTIONS(4302), 1, + ACTIONS(7506), 1, sym_identifier, - ACTIONS(4312), 1, - anon_sym_COLON_COLON, - ACTIONS(5353), 1, - anon_sym_LBRACK, - ACTIONS(5377), 1, + ACTIONS(7508), 1, + anon_sym_LPAREN2, + ACTIONS(7510), 1, anon_sym_STAR, - ACTIONS(5379), 1, - anon_sym_AMP_AMP, - ACTIONS(5381), 1, - anon_sym_AMP, - STATE(4592), 1, - sym__declarator, - STATE(4598), 1, - sym__scope_resolution, - STATE(5437), 1, - sym_init_declarator, - STATE(6072), 1, + STATE(5729), 1, + sym__type_declarator, + STATE(7376), 1, sym_ms_based_modifier, - STATE(6159), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(4918), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [145336] = 14, + STATE(4796), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(5904), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(2871), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [176437] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2724), 1, - anon_sym_const, - ACTIONS(3908), 1, + ACTIONS(45), 1, + anon_sym___based, + ACTIONS(7506), 1, + sym_identifier, + ACTIONS(7508), 1, anon_sym_LPAREN2, - ACTIONS(6508), 1, + ACTIONS(7510), 1, anon_sym_STAR, - ACTIONS(6510), 1, - anon_sym_AMP_AMP, - ACTIONS(6512), 1, - anon_sym_AMP, - ACTIONS(6514), 1, - anon_sym_LBRACK, - STATE(3461), 1, - sym_parameter_list, - STATE(4765), 1, - sym__function_declarator_seq, - STATE(4933), 1, - sym__abstract_declarator, - STATE(4084), 2, + STATE(5704), 1, + sym__type_declarator, + STATE(7376), 1, + sym_ms_based_modifier, + STATE(4706), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - STATE(4764), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(6500), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - ACTIONS(6516), 7, + STATE(5904), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(2871), 11, + anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [176483] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(45), 1, + anon_sym___based, + ACTIONS(7506), 1, + sym_identifier, + ACTIONS(7508), 1, + anon_sym_LPAREN2, + ACTIONS(7510), 1, + anon_sym_STAR, + STATE(5714), 1, + sym__type_declarator, + STATE(7376), 1, + sym_ms_based_modifier, + STATE(4706), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(5904), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(2871), 11, + anon_sym_const, anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [145396] = 21, + [176529] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(6624), 1, + ACTIONS(45), 1, + anon_sym___based, + ACTIONS(7506), 1, sym_identifier, - ACTIONS(6626), 1, - anon_sym_COLON_COLON, - ACTIONS(6630), 1, - sym_primitive_type, - ACTIONS(6632), 1, - anon_sym_enum, - ACTIONS(6634), 1, - anon_sym_class, - ACTIONS(6636), 1, - anon_sym_struct, - ACTIONS(6638), 1, - anon_sym_union, - ACTIONS(6640), 1, - sym_auto, - ACTIONS(6642), 1, - anon_sym_decltype, - ACTIONS(6644), 1, - anon_sym_typename, - STATE(1903), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1969), 1, - sym__type_specifier, - STATE(2319), 1, - sym_decltype_auto, - STATE(2331), 1, - sym_qualified_type_identifier, - STATE(5001), 1, - sym__scope_resolution, - STATE(6159), 1, - sym_dependent_type_identifier, - STATE(2204), 2, - sym_decltype, - sym_template_type, - ACTIONS(6628), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2320), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [145470] = 21, + ACTIONS(7508), 1, + anon_sym_LPAREN2, + ACTIONS(7510), 1, + anon_sym_STAR, + STATE(5764), 1, + sym__type_declarator, + STATE(7376), 1, + sym_ms_based_modifier, + STATE(4706), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(5904), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(2871), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [176575] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(6522), 1, + ACTIONS(45), 1, + anon_sym___based, + ACTIONS(7506), 1, sym_identifier, - ACTIONS(6524), 1, - anon_sym_COLON_COLON, - ACTIONS(6528), 1, - sym_primitive_type, - ACTIONS(6530), 1, - anon_sym_enum, - ACTIONS(6532), 1, - anon_sym_class, - ACTIONS(6534), 1, - anon_sym_struct, - ACTIONS(6536), 1, - anon_sym_union, - ACTIONS(6538), 1, - sym_auto, - ACTIONS(6540), 1, - anon_sym_decltype, - ACTIONS(6542), 1, - anon_sym_typename, - STATE(1866), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1912), 1, - sym__type_specifier, - STATE(2015), 1, - sym_decltype_auto, - STATE(2068), 1, - sym_qualified_type_identifier, - STATE(5022), 1, - sym__scope_resolution, - STATE(6159), 1, - sym_dependent_type_identifier, - STATE(1995), 2, - sym_decltype, - sym_template_type, - ACTIONS(6526), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2017), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [145544] = 14, + ACTIONS(7508), 1, + anon_sym_LPAREN2, + ACTIONS(7510), 1, + anon_sym_STAR, + STATE(5782), 1, + sym__type_declarator, + STATE(7376), 1, + sym_ms_based_modifier, + STATE(4777), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(5904), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(2871), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [176621] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2724), 1, + ACTIONS(45), 1, + anon_sym___based, + ACTIONS(7506), 1, + sym_identifier, + ACTIONS(7508), 1, + anon_sym_LPAREN2, + ACTIONS(7510), 1, + anon_sym_STAR, + STATE(5745), 1, + sym__type_declarator, + STATE(7376), 1, + sym_ms_based_modifier, + STATE(4819), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(5904), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(2871), 11, anon_sym_const, - ACTIONS(3908), 1, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [176667] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(45), 1, + anon_sym___based, + ACTIONS(7506), 1, + sym_identifier, + ACTIONS(7508), 1, anon_sym_LPAREN2, - ACTIONS(3910), 1, + ACTIONS(7510), 1, anon_sym_STAR, - ACTIONS(3912), 1, - anon_sym_AMP_AMP, - ACTIONS(3914), 1, - anon_sym_AMP, - ACTIONS(6514), 1, - anon_sym_LBRACK, - STATE(3482), 1, - sym_parameter_list, - STATE(4765), 1, - sym__function_declarator_seq, - STATE(4898), 1, - sym__abstract_declarator, - STATE(4084), 2, + STATE(5711), 1, + sym__type_declarator, + STATE(7376), 1, + sym_ms_based_modifier, + STATE(4769), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - STATE(4764), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(5322), 7, + STATE(5904), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(2871), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [176713] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6361), 1, + anon_sym_DASH_GT, + ACTIONS(6363), 1, + anon_sym_noexcept, + ACTIONS(6365), 1, + anon_sym_throw, + ACTIONS(6367), 1, + anon_sym_requires, + ACTIONS(6409), 1, + anon_sym_LBRACK, + STATE(5247), 1, + sym_trailing_return_type, + STATE(5422), 1, + sym_requires_clause, + ACTIONS(4880), 2, + anon_sym_final, + anon_sym_override, + STATE(5074), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5077), 2, + sym_noexcept, + sym_throw_specifier, + STATE(5301), 2, + sym_virtual_specifier, + aux_sym__function_declarator_seq_repeat2, + ACTIONS(6407), 8, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_try, + [176767] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6361), 1, + anon_sym_DASH_GT, + ACTIONS(6363), 1, + anon_sym_noexcept, + ACTIONS(6365), 1, + anon_sym_throw, + ACTIONS(6367), 1, + anon_sym_requires, + ACTIONS(6544), 1, + anon_sym_LBRACK, + STATE(5237), 1, + sym_trailing_return_type, + STATE(5360), 1, + sym_requires_clause, + ACTIONS(4880), 2, anon_sym_final, anon_sym_override, + STATE(5050), 2, + sym_noexcept, + sym_throw_specifier, + STATE(5055), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5295), 2, + sym_virtual_specifier, + aux_sym__function_declarator_seq_repeat2, + ACTIONS(6542), 8, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_try, + [176821] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6361), 1, + anon_sym_DASH_GT, + ACTIONS(6363), 1, + anon_sym_noexcept, + ACTIONS(6365), 1, + anon_sym_throw, + ACTIONS(6367), 1, anon_sym_requires, - ACTIONS(6516), 7, + ACTIONS(7726), 1, + anon_sym_LBRACK, + STATE(5276), 1, + sym_trailing_return_type, + STATE(5358), 1, + sym_requires_clause, + ACTIONS(4880), 2, + anon_sym_final, + anon_sym_override, + STATE(5042), 2, + sym_noexcept, + sym_throw_specifier, + STATE(5045), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5288), 2, + sym_virtual_specifier, + aux_sym__function_declarator_seq_repeat2, + ACTIONS(7724), 8, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_try, + [176875] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(45), 1, + anon_sym___based, + ACTIONS(7506), 1, + sym_identifier, + ACTIONS(7508), 1, + anon_sym_LPAREN2, + ACTIONS(7510), 1, + anon_sym_STAR, + STATE(5736), 1, + sym__type_declarator, + STATE(7376), 1, + sym_ms_based_modifier, + STATE(4818), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(5904), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(2871), 11, + anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [176921] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(45), 1, + anon_sym___based, + ACTIONS(7506), 1, + sym_identifier, + ACTIONS(7508), 1, + anon_sym_LPAREN2, + ACTIONS(7510), 1, + anon_sym_STAR, + STATE(5738), 1, + sym__type_declarator, + STATE(7376), 1, + sym_ms_based_modifier, + STATE(4786), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(5904), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(2871), 11, + anon_sym_const, anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [145604] = 19, + [176967] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, + ACTIONS(45), 1, anon_sym___based, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1521), 1, - anon_sym_operator, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(1681), 1, + ACTIONS(7506), 1, + sym_identifier, + ACTIONS(7508), 1, anon_sym_LPAREN2, - ACTIONS(1683), 1, - anon_sym_TILDE, - ACTIONS(4302), 1, + ACTIONS(7510), 1, + anon_sym_STAR, + STATE(5728), 1, + sym__type_declarator, + STATE(7376), 1, + sym_ms_based_modifier, + STATE(4706), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(5904), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(2871), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [177013] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(45), 1, + anon_sym___based, + ACTIONS(7506), 1, sym_identifier, - ACTIONS(4312), 1, - anon_sym_COLON_COLON, - ACTIONS(5353), 1, - anon_sym_LBRACK, - ACTIONS(5371), 1, + ACTIONS(7508), 1, + anon_sym_LPAREN2, + ACTIONS(7510), 1, anon_sym_STAR, - ACTIONS(5373), 1, - anon_sym_AMP_AMP, - ACTIONS(5375), 1, - anon_sym_AMP, - STATE(4519), 1, - sym__declarator, - STATE(4598), 1, - sym__scope_resolution, - STATE(5473), 1, - sym_init_declarator, - STATE(6066), 1, + STATE(5758), 1, + sym__type_declarator, + STATE(7376), 1, sym_ms_based_modifier, - STATE(6159), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(4918), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [145674] = 5, + STATE(4706), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(5904), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(2871), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [177059] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(6662), 1, - anon_sym___attribute__, - STATE(3978), 2, - sym_attribute_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(6660), 3, - anon_sym_AMP, - anon_sym_LBRACK, + ACTIONS(45), 1, + anon_sym___based, + ACTIONS(7506), 1, + sym_identifier, + ACTIONS(7508), 1, + anon_sym_LPAREN2, + ACTIONS(7510), 1, + anon_sym_STAR, + STATE(5742), 1, + sym__type_declarator, + STATE(7376), 1, + sym_ms_based_modifier, + STATE(4706), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(5904), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(2871), 11, anon_sym_const, - ACTIONS(6658), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [177105] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(45), 1, + anon_sym___based, + ACTIONS(7506), 1, + sym_identifier, + ACTIONS(7508), 1, anon_sym_LPAREN2, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, + ACTIONS(7510), 1, + anon_sym_STAR, + STATE(5786), 1, + sym__type_declarator, + STATE(7376), 1, + sym_ms_based_modifier, + STATE(4706), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(5904), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(2871), 11, + anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [177151] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(45), 1, + anon_sym___based, + ACTIONS(7506), 1, + sym_identifier, + ACTIONS(7508), 1, + anon_sym_LPAREN2, + ACTIONS(7510), 1, + anon_sym_STAR, + STATE(5796), 1, + sym__type_declarator, + STATE(7376), 1, + sym_ms_based_modifier, + STATE(4812), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(5904), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(2871), 11, + anon_sym_const, anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_noexcept, - anon_sym_throw, - anon_sym_requires, - [145716] = 19, + [177197] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, + ACTIONS(45), 1, anon_sym___based, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1521), 1, - anon_sym_operator, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(1681), 1, + ACTIONS(7506), 1, + sym_identifier, + ACTIONS(7508), 1, anon_sym_LPAREN2, - ACTIONS(1683), 1, - anon_sym_TILDE, - ACTIONS(4302), 1, + ACTIONS(7510), 1, + anon_sym_STAR, + STATE(5784), 1, + sym__type_declarator, + STATE(7376), 1, + sym_ms_based_modifier, + STATE(4706), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(5904), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(2871), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [177243] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(45), 1, + anon_sym___based, + ACTIONS(7506), 1, sym_identifier, - ACTIONS(4312), 1, - anon_sym_COLON_COLON, - ACTIONS(5353), 1, - anon_sym_LBRACK, - ACTIONS(5371), 1, + ACTIONS(7508), 1, + anon_sym_LPAREN2, + ACTIONS(7510), 1, anon_sym_STAR, - ACTIONS(5373), 1, - anon_sym_AMP_AMP, - ACTIONS(5375), 1, - anon_sym_AMP, - STATE(4598), 1, - sym__scope_resolution, - STATE(4702), 1, - sym__declarator, - STATE(5492), 1, - sym_init_declarator, - STATE(6066), 1, + STATE(5778), 1, + sym__type_declarator, + STATE(7376), 1, sym_ms_based_modifier, - STATE(6159), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(4918), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [145786] = 21, + STATE(4706), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(5904), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(2871), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [177289] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1515), 1, - sym_auto, - ACTIONS(1517), 1, - anon_sym_decltype, - ACTIONS(5504), 1, - sym_primitive_type, - ACTIONS(6610), 1, + ACTIONS(45), 1, + anon_sym___based, + ACTIONS(7506), 1, sym_identifier, - ACTIONS(6612), 1, - anon_sym_COLON_COLON, - ACTIONS(6614), 1, - anon_sym_enum, - ACTIONS(6616), 1, - anon_sym_class, - ACTIONS(6618), 1, - anon_sym_struct, - ACTIONS(6620), 1, - anon_sym_union, - ACTIONS(6622), 1, - anon_sym_typename, - STATE(1922), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2444), 1, - sym_qualified_type_identifier, - STATE(2540), 1, - sym_decltype_auto, - STATE(3147), 1, - sym__type_specifier, - STATE(4990), 1, - sym__scope_resolution, - STATE(6159), 1, - sym_dependent_type_identifier, - STATE(2247), 2, - sym_decltype, - sym_template_type, - ACTIONS(1503), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2541), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [145860] = 21, + ACTIONS(7508), 1, + anon_sym_LPAREN2, + ACTIONS(7510), 1, + anon_sym_STAR, + STATE(5792), 1, + sym__type_declarator, + STATE(7376), 1, + sym_ms_based_modifier, + STATE(4706), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(5904), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(2871), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [177335] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1515), 1, - sym_auto, - ACTIONS(1517), 1, - anon_sym_decltype, - ACTIONS(5504), 1, - sym_primitive_type, - ACTIONS(6610), 1, + ACTIONS(45), 1, + anon_sym___based, + ACTIONS(7506), 1, sym_identifier, - ACTIONS(6612), 1, - anon_sym_COLON_COLON, - ACTIONS(6614), 1, - anon_sym_enum, - ACTIONS(6616), 1, - anon_sym_class, - ACTIONS(6618), 1, - anon_sym_struct, - ACTIONS(6620), 1, - anon_sym_union, - ACTIONS(6622), 1, - anon_sym_typename, - STATE(1922), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2444), 1, - sym_qualified_type_identifier, - STATE(2540), 1, - sym_decltype_auto, - STATE(3160), 1, - sym__type_specifier, - STATE(4990), 1, - sym__scope_resolution, - STATE(6159), 1, - sym_dependent_type_identifier, - STATE(2247), 2, - sym_decltype, - sym_template_type, - ACTIONS(1503), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2541), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [145934] = 14, + ACTIONS(7508), 1, + anon_sym_LPAREN2, + ACTIONS(7510), 1, + anon_sym_STAR, + STATE(5793), 1, + sym__type_declarator, + STATE(7376), 1, + sym_ms_based_modifier, + STATE(4814), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(5904), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(2871), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [177381] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(45), 1, + anon_sym___based, + ACTIONS(7506), 1, + sym_identifier, + ACTIONS(7508), 1, + anon_sym_LPAREN2, + ACTIONS(7510), 1, + anon_sym_STAR, + STATE(5763), 1, + sym__type_declarator, + STATE(7376), 1, + sym_ms_based_modifier, + STATE(4803), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(5904), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(2871), 11, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [177427] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2724), 1, - anon_sym_const, - ACTIONS(3908), 1, + ACTIONS(45), 1, + anon_sym___based, + ACTIONS(7506), 1, + sym_identifier, + ACTIONS(7508), 1, anon_sym_LPAREN2, - ACTIONS(6508), 1, + ACTIONS(7510), 1, anon_sym_STAR, - ACTIONS(6510), 1, - anon_sym_AMP_AMP, - ACTIONS(6512), 1, - anon_sym_AMP, - ACTIONS(6514), 1, - anon_sym_LBRACK, - STATE(3461), 1, - sym_parameter_list, - STATE(4765), 1, - sym__function_declarator_seq, - STATE(4925), 1, - sym__abstract_declarator, - STATE(3945), 2, + STATE(5757), 1, + sym__type_declarator, + STATE(7376), 1, + sym_ms_based_modifier, + STATE(4817), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - STATE(4764), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(4304), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - ACTIONS(6516), 7, + STATE(5904), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(2871), 11, + anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - [145994] = 14, + [177473] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2724), 1, - anon_sym_const, - ACTIONS(3908), 1, + ACTIONS(45), 1, + anon_sym___based, + ACTIONS(7506), 1, + sym_identifier, + ACTIONS(7508), 1, anon_sym_LPAREN2, - ACTIONS(6508), 1, + ACTIONS(7510), 1, anon_sym_STAR, - ACTIONS(6510), 1, - anon_sym_AMP_AMP, - ACTIONS(6512), 1, - anon_sym_AMP, - ACTIONS(6514), 1, - anon_sym_LBRACK, - STATE(3461), 1, - sym_parameter_list, - STATE(4765), 1, - sym__function_declarator_seq, - STATE(4879), 1, - sym__abstract_declarator, - STATE(4084), 2, + STATE(5750), 1, + sym__type_declarator, + STATE(7376), 1, + sym_ms_based_modifier, + STATE(4799), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - STATE(4764), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(6496), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - ACTIONS(6516), 7, + STATE(5904), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(2871), 11, + anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - [146054] = 21, + [177519] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(107), 1, - sym_auto, - ACTIONS(109), 1, - anon_sym_decltype, - ACTIONS(996), 1, + ACTIONS(1329), 1, anon_sym_template, - ACTIONS(2922), 1, - sym_identifier, - ACTIONS(2928), 1, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(3663), 1, anon_sym_COLON_COLON, - ACTIONS(2932), 1, - sym_primitive_type, - ACTIONS(5610), 1, - anon_sym_enum, - ACTIONS(5612), 1, - anon_sym_class, - ACTIONS(5614), 1, - anon_sym_struct, - ACTIONS(5616), 1, - anon_sym_union, - ACTIONS(5618), 1, - anon_sym_typename, - STATE(3171), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3199), 1, - sym__type_specifier, - STATE(3259), 1, - sym_qualified_type_identifier, - STATE(3279), 1, - sym_decltype_auto, - STATE(5006), 1, + ACTIONS(4831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4833), 1, + anon_sym___declspec, + ACTIONS(6195), 1, + anon_sym_LBRACE, + ACTIONS(6197), 1, + anon_sym_COLON, + ACTIONS(7728), 1, + sym_identifier, + STATE(3578), 1, + sym_template_type, + STATE(3742), 1, + sym_field_declaration_list, + STATE(3750), 1, + sym__class_declaration, + STATE(5092), 1, + sym_ms_declspec_modifier, + STATE(5779), 1, sym__scope_resolution, - STATE(6159), 1, - sym_dependent_type_identifier, - STATE(3198), 2, + STATE(6057), 1, + sym_virtual_specifier, + STATE(6662), 1, + sym_base_class_clause, + ACTIONS(6199), 2, + anon_sym_final, + anon_sym_override, + STATE(3869), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5022), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7638), 2, sym_decltype, - sym_template_type, - ACTIONS(61), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3232), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [146128] = 21, + sym_dependent_type_identifier, + [177584] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, + ACTIONS(1329), 1, anon_sym_template, - ACTIONS(6522), 1, - sym_identifier, - ACTIONS(6524), 1, - anon_sym_COLON_COLON, - ACTIONS(6528), 1, - sym_primitive_type, - ACTIONS(6530), 1, - anon_sym_enum, - ACTIONS(6532), 1, - anon_sym_class, - ACTIONS(6534), 1, - anon_sym_struct, - ACTIONS(6536), 1, - anon_sym_union, - ACTIONS(6538), 1, - sym_auto, - ACTIONS(6540), 1, + ACTIONS(1973), 1, anon_sym_decltype, - ACTIONS(6542), 1, - anon_sym_typename, - STATE(1866), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2002), 1, - sym__type_specifier, - STATE(2015), 1, - sym_decltype_auto, - STATE(2068), 1, - sym_qualified_type_identifier, - STATE(5022), 1, + ACTIONS(4831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4833), 1, + anon_sym___declspec, + ACTIONS(5270), 1, + anon_sym_LBRACE, + ACTIONS(6197), 1, + anon_sym_COLON, + ACTIONS(7567), 1, + anon_sym_COLON_COLON, + ACTIONS(7714), 1, + sym_identifier, + STATE(2945), 1, + sym_template_type, + STATE(3144), 1, + sym__class_declaration, + STATE(3145), 1, + sym_field_declaration_list, + STATE(5084), 1, + sym_ms_declspec_modifier, + STATE(5737), 1, sym__scope_resolution, - STATE(6159), 1, - sym_dependent_type_identifier, - STATE(1995), 2, + STATE(5959), 1, + sym_virtual_specifier, + STATE(6894), 1, + sym_base_class_clause, + ACTIONS(6199), 2, + anon_sym_final, + anon_sym_override, + STATE(2818), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5080), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7638), 2, sym_decltype, - sym_template_type, - ACTIONS(6526), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2017), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [146202] = 19, + sym_dependent_type_identifier, + [177649] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(996), 1, + ACTIONS(1329), 1, anon_sym_template, - ACTIONS(1521), 1, - anon_sym_operator, - ACTIONS(1555), 1, + ACTIONS(1973), 1, anon_sym_decltype, - ACTIONS(1681), 1, - anon_sym_LPAREN2, - ACTIONS(1683), 1, - anon_sym_TILDE, - ACTIONS(4302), 1, - sym_identifier, - ACTIONS(4312), 1, + ACTIONS(4831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4833), 1, + anon_sym___declspec, + ACTIONS(6197), 1, + anon_sym_COLON, + ACTIONS(6266), 1, anon_sym_COLON_COLON, - ACTIONS(5353), 1, - anon_sym_LBRACK, - ACTIONS(5377), 1, - anon_sym_STAR, - ACTIONS(5379), 1, - anon_sym_AMP_AMP, - ACTIONS(5381), 1, - anon_sym_AMP, - STATE(4598), 1, + ACTIONS(7626), 1, + anon_sym_LBRACE, + ACTIONS(7730), 1, + sym_identifier, + STATE(4638), 1, + sym_template_type, + STATE(4748), 1, + sym_field_declaration_list, + STATE(4754), 1, + sym__class_declaration, + STATE(5051), 1, + sym_ms_declspec_modifier, + STATE(5766), 1, sym__scope_resolution, - STATE(4640), 1, - sym__declarator, - STATE(5437), 1, - sym_init_declarator, - STATE(6072), 1, - sym_ms_based_modifier, - STATE(6159), 3, + STATE(6061), 1, + sym_virtual_specifier, + STATE(6749), 1, + sym_base_class_clause, + ACTIONS(6199), 2, + anon_sym_final, + anon_sym_override, + STATE(4674), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5046), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7638), 2, sym_decltype, - sym_template_type, sym_dependent_type_identifier, - STATE(4918), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [146272] = 14, + [177714] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2724), 1, - anon_sym_const, - ACTIONS(3908), 1, - anon_sym_LPAREN2, - ACTIONS(3910), 1, - anon_sym_STAR, - ACTIONS(3912), 1, - anon_sym_AMP_AMP, - ACTIONS(3914), 1, - anon_sym_AMP, - ACTIONS(6514), 1, - anon_sym_LBRACK, - STATE(3482), 1, - sym_parameter_list, - STATE(4765), 1, - sym__function_declarator_seq, - STATE(4926), 1, - sym__abstract_declarator, - STATE(4084), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(4764), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(6496), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(4831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4833), 1, + anon_sym___declspec, + ACTIONS(6197), 1, + anon_sym_COLON, + ACTIONS(6266), 1, + anon_sym_COLON_COLON, + ACTIONS(7626), 1, anon_sym_LBRACE, + ACTIONS(7730), 1, + sym_identifier, + STATE(4638), 1, + sym_template_type, + STATE(4748), 1, + sym_field_declaration_list, + STATE(4755), 1, + sym__class_declaration, + STATE(5051), 1, + sym_ms_declspec_modifier, + STATE(5766), 1, + sym__scope_resolution, + STATE(6061), 1, + sym_virtual_specifier, + STATE(6749), 1, + sym_base_class_clause, + ACTIONS(6199), 2, anon_sym_final, anon_sym_override, - anon_sym_requires, - ACTIONS(6516), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [146332] = 4, + STATE(4674), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5046), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7638), 2, + sym_decltype, + sym_dependent_type_identifier, + [177779] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(6667), 1, - anon_sym_LPAREN2, - ACTIONS(6669), 5, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(4831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6665), 24, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, + ACTIONS(4833), 1, anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, + ACTIONS(6197), 1, + anon_sym_COLON, + ACTIONS(6312), 1, + anon_sym_COLON_COLON, + ACTIONS(6458), 1, + anon_sym_LBRACE, + ACTIONS(7728), 1, sym_identifier, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_explicit, - anon_sym_template, - anon_sym_operator, - [146372] = 21, + STATE(3578), 1, + sym_template_type, + STATE(3939), 1, + sym_field_declaration_list, + STATE(3942), 1, + sym__class_declaration, + STATE(4974), 1, + sym_ms_declspec_modifier, + STATE(5765), 1, + sym__scope_resolution, + STATE(5985), 1, + sym_virtual_specifier, + STATE(6891), 1, + sym_base_class_clause, + ACTIONS(6199), 2, + anon_sym_final, + anon_sym_override, + STATE(3850), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5025), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7638), 2, + sym_decltype, + sym_dependent_type_identifier, + [177844] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, + ACTIONS(1329), 1, anon_sym_template, - ACTIONS(6580), 1, - sym_identifier, - ACTIONS(6582), 1, - anon_sym_COLON_COLON, - ACTIONS(6586), 1, - sym_primitive_type, - ACTIONS(6588), 1, - anon_sym_enum, - ACTIONS(6590), 1, - anon_sym_class, - ACTIONS(6592), 1, - anon_sym_struct, - ACTIONS(6594), 1, - anon_sym_union, - ACTIONS(6596), 1, - sym_auto, - ACTIONS(6598), 1, + ACTIONS(1973), 1, anon_sym_decltype, - ACTIONS(6600), 1, - anon_sym_typename, - STATE(1946), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2134), 1, - sym__type_specifier, - STATE(2641), 1, - sym_qualified_type_identifier, - STATE(2691), 1, - sym_decltype_auto, - STATE(5025), 1, + ACTIONS(4831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4833), 1, + anon_sym___declspec, + ACTIONS(6197), 1, + anon_sym_COLON, + ACTIONS(6312), 1, + anon_sym_COLON_COLON, + ACTIONS(6458), 1, + anon_sym_LBRACE, + ACTIONS(7728), 1, + sym_identifier, + STATE(3578), 1, + sym_template_type, + STATE(3939), 1, + sym_field_declaration_list, + STATE(3945), 1, + sym__class_declaration, + STATE(4974), 1, + sym_ms_declspec_modifier, + STATE(5765), 1, sym__scope_resolution, - STATE(6159), 1, - sym_dependent_type_identifier, - STATE(2556), 2, + STATE(5985), 1, + sym_virtual_specifier, + STATE(6891), 1, + sym_base_class_clause, + ACTIONS(6199), 2, + anon_sym_final, + anon_sym_override, + STATE(3850), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5025), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7638), 2, sym_decltype, + sym_dependent_type_identifier, + [177909] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(3663), 1, + anon_sym_COLON_COLON, + ACTIONS(4831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4833), 1, + anon_sym___declspec, + ACTIONS(6195), 1, + anon_sym_LBRACE, + ACTIONS(6197), 1, + anon_sym_COLON, + ACTIONS(7728), 1, + sym_identifier, + STATE(3578), 1, sym_template_type, - ACTIONS(6584), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2687), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [146446] = 19, + STATE(3742), 1, + sym_field_declaration_list, + STATE(3777), 1, + sym__class_declaration, + STATE(5092), 1, + sym_ms_declspec_modifier, + STATE(5779), 1, + sym__scope_resolution, + STATE(6057), 1, + sym_virtual_specifier, + STATE(6662), 1, + sym_base_class_clause, + ACTIONS(6199), 2, + anon_sym_final, + anon_sym_override, + STATE(3861), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5022), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7638), 2, + sym_decltype, + sym_dependent_type_identifier, + [177974] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, + ACTIONS(45), 1, anon_sym___based, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1521), 1, + ACTIONS(1899), 1, + anon_sym_LBRACE, + ACTIONS(1931), 1, anon_sym_operator, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(1681), 1, - anon_sym_LPAREN2, - ACTIONS(1683), 1, - anon_sym_TILDE, - ACTIONS(4302), 1, + ACTIONS(6642), 1, sym_identifier, - ACTIONS(4312), 1, - anon_sym_COLON_COLON, - ACTIONS(5353), 1, - anon_sym_LBRACK, - ACTIONS(5371), 1, + ACTIONS(6644), 1, + anon_sym_LPAREN2, + ACTIONS(6646), 1, anon_sym_STAR, - ACTIONS(5373), 1, + ACTIONS(6648), 1, anon_sym_AMP_AMP, - ACTIONS(5375), 1, + ACTIONS(6650), 1, anon_sym_AMP, - STATE(4514), 1, - sym__declarator, - STATE(4598), 1, - sym__scope_resolution, - STATE(5474), 1, - sym_init_declarator, - STATE(6066), 1, + ACTIONS(7732), 1, + anon_sym_SEMI, + ACTIONS(7734), 1, + anon_sym_EQ, + ACTIONS(7736), 1, + anon_sym_COLON, + STATE(5082), 1, + sym__field_declarator, + STATE(7014), 1, + sym_initializer_list, + STATE(7015), 1, + sym_bitfield_clause, + STATE(7022), 1, sym_ms_based_modifier, - STATE(6159), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(4918), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, + STATE(5685), 8, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + sym_reference_field_declarator, + sym_template_method, sym_operator_name, - [146516] = 21, + [178033] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(65), 1, - anon_sym_enum, - ACTIONS(67), 1, - anon_sym_class, - ACTIONS(69), 1, - anon_sym_struct, - ACTIONS(71), 1, - anon_sym_union, - ACTIONS(107), 1, - sym_auto, - ACTIONS(109), 1, - anon_sym_decltype, - ACTIONS(115), 1, - anon_sym_typename, - ACTIONS(996), 1, + ACTIONS(1329), 1, anon_sym_template, - ACTIONS(2922), 1, - sym_identifier, - ACTIONS(2928), 1, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(4831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4833), 1, + anon_sym___declspec, + ACTIONS(5045), 1, + anon_sym_LBRACE, + ACTIONS(6197), 1, + anon_sym_COLON, + ACTIONS(6225), 1, anon_sym_COLON_COLON, - ACTIONS(2932), 1, - sym_primitive_type, - STATE(3171), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3199), 1, - sym__type_specifier, - STATE(3259), 1, - sym_qualified_type_identifier, - STATE(3279), 1, - sym_decltype_auto, - STATE(5006), 1, + ACTIONS(7738), 1, + sym_identifier, + STATE(2718), 1, + sym_template_type, + STATE(2803), 1, + sym_field_declaration_list, + STATE(2813), 1, + sym__class_declaration, + STATE(4992), 1, + sym_ms_declspec_modifier, + STATE(5741), 1, sym__scope_resolution, - STATE(6159), 1, - sym_dependent_type_identifier, - STATE(3198), 2, + STATE(6136), 1, + sym_virtual_specifier, + STATE(6784), 1, + sym_base_class_clause, + ACTIONS(6199), 2, + anon_sym_final, + anon_sym_override, + STATE(2396), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(4986), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7638), 2, sym_decltype, - sym_template_type, - ACTIONS(61), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3232), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [146590] = 21, + sym_dependent_type_identifier, + [178098] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(107), 1, - sym_auto, - ACTIONS(109), 1, - anon_sym_decltype, - ACTIONS(996), 1, + ACTIONS(1329), 1, anon_sym_template, - ACTIONS(2922), 1, - sym_identifier, - ACTIONS(2928), 1, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(4831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4833), 1, + anon_sym___declspec, + ACTIONS(5045), 1, + anon_sym_LBRACE, + ACTIONS(6197), 1, + anon_sym_COLON, + ACTIONS(6225), 1, anon_sym_COLON_COLON, - ACTIONS(2932), 1, - sym_primitive_type, - ACTIONS(2934), 1, - anon_sym_enum, - ACTIONS(2936), 1, - anon_sym_class, - ACTIONS(2938), 1, - anon_sym_struct, - ACTIONS(2940), 1, - anon_sym_union, - ACTIONS(2942), 1, - anon_sym_typename, - STATE(3199), 1, - sym__type_specifier, - STATE(3259), 1, - sym_qualified_type_identifier, - STATE(3272), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3279), 1, - sym_decltype_auto, - STATE(5006), 1, + ACTIONS(7738), 1, + sym_identifier, + STATE(2718), 1, + sym_template_type, + STATE(2803), 1, + sym_field_declaration_list, + STATE(2807), 1, + sym__class_declaration, + STATE(4992), 1, + sym_ms_declspec_modifier, + STATE(5741), 1, sym__scope_resolution, - STATE(6159), 1, - sym_dependent_type_identifier, - STATE(3198), 2, + STATE(6136), 1, + sym_virtual_specifier, + STATE(6784), 1, + sym_base_class_clause, + ACTIONS(6199), 2, + anon_sym_final, + anon_sym_override, + STATE(2396), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(4986), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7638), 2, sym_decltype, - sym_template_type, - ACTIONS(2930), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3232), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [146664] = 19, + sym_dependent_type_identifier, + [178163] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(996), 1, + ACTIONS(6363), 1, + anon_sym_noexcept, + ACTIONS(6365), 1, + anon_sym_throw, + ACTIONS(6466), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6472), 1, + anon_sym_DASH_GT, + ACTIONS(6474), 1, + anon_sym_requires, + ACTIONS(7726), 1, + anon_sym_LBRACK, + STATE(5344), 1, + sym_trailing_return_type, + STATE(5358), 1, + sym_requires_clause, + ACTIONS(4880), 2, + anon_sym_final, + anon_sym_override, + STATE(5097), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5099), 2, + sym_noexcept, + sym_throw_specifier, + STATE(5288), 2, + sym_virtual_specifier, + aux_sym__function_declarator_seq_repeat2, + ACTIONS(7724), 7, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [178216] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1329), 1, anon_sym_template, - ACTIONS(1521), 1, - anon_sym_operator, - ACTIONS(1555), 1, + ACTIONS(1973), 1, anon_sym_decltype, - ACTIONS(1681), 1, - anon_sym_LPAREN2, - ACTIONS(1683), 1, - anon_sym_TILDE, - ACTIONS(4302), 1, - sym_identifier, - ACTIONS(4312), 1, + ACTIONS(4831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4833), 1, + anon_sym___declspec, + ACTIONS(5045), 1, + anon_sym_LBRACE, + ACTIONS(6197), 1, + anon_sym_COLON, + ACTIONS(7514), 1, anon_sym_COLON_COLON, - ACTIONS(5353), 1, - anon_sym_LBRACK, - ACTIONS(5371), 1, - anon_sym_STAR, - ACTIONS(5373), 1, - anon_sym_AMP_AMP, - ACTIONS(5375), 1, - anon_sym_AMP, - STATE(4488), 1, - sym__declarator, - STATE(4598), 1, + ACTIONS(7664), 1, + sym_identifier, + STATE(2718), 1, + sym_template_type, + STATE(2803), 1, + sym_field_declaration_list, + STATE(2807), 1, + sym__class_declaration, + STATE(5020), 1, + sym_ms_declspec_modifier, + STATE(5735), 1, sym__scope_resolution, - STATE(5386), 1, - sym_init_declarator, - STATE(6066), 1, - sym_ms_based_modifier, - STATE(6159), 3, + STATE(6136), 1, + sym_virtual_specifier, + STATE(6784), 1, + sym_base_class_clause, + ACTIONS(6199), 2, + anon_sym_final, + anon_sym_override, + STATE(2396), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5021), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7638), 2, sym_decltype, - sym_template_type, sym_dependent_type_identifier, - STATE(4918), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [146734] = 11, + [178281] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(5693), 1, - anon_sym_const, - ACTIONS(6674), 1, - anon_sym___attribute__, - ACTIONS(6677), 1, + ACTIONS(6363), 1, + anon_sym_noexcept, + ACTIONS(6365), 1, + anon_sym_throw, + ACTIONS(6466), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6680), 1, - anon_sym___declspec, - ACTIONS(6686), 1, - anon_sym_virtual, - ACTIONS(5510), 2, - anon_sym_AMP, + ACTIONS(6472), 1, + anon_sym_DASH_GT, + ACTIONS(6474), 1, + anon_sym_requires, + ACTIONS(6544), 1, anon_sym_LBRACK, - ACTIONS(5512), 3, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - ACTIONS(6671), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - ACTIONS(6683), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(3994), 8, - sym__declaration_modifiers, - sym_attribute_specifier, + STATE(5306), 1, + sym_trailing_return_type, + STATE(5360), 1, + sym_requires_clause, + ACTIONS(4880), 2, + anon_sym_final, + anon_sym_override, + STATE(5134), 2, sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual, - aux_sym__declaration_specifiers_repeat1, - [146788] = 3, + aux_sym_attributed_declarator_repeat1, + STATE(5141), 2, + sym_noexcept, + sym_throw_specifier, + STATE(5295), 2, + sym_virtual_specifier, + aux_sym__function_declarator_seq_repeat2, + ACTIONS(6542), 7, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [178334] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(6691), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(3663), 1, anon_sym_COLON_COLON, + ACTIONS(4831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6689), 24, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, + ACTIONS(4833), 1, anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, + ACTIONS(6195), 1, + anon_sym_LBRACE, + ACTIONS(6197), 1, + anon_sym_COLON, + ACTIONS(7728), 1, sym_identifier, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_explicit, - anon_sym_template, - anon_sym_operator, - [146826] = 6, + STATE(3578), 1, + sym_template_type, + STATE(3742), 1, + sym_field_declaration_list, + STATE(3777), 1, + sym__class_declaration, + STATE(5092), 1, + sym_ms_declspec_modifier, + STATE(5779), 1, + sym__scope_resolution, + STATE(6057), 1, + sym_virtual_specifier, + STATE(6662), 1, + sym_base_class_clause, + ACTIONS(6199), 2, + anon_sym_final, + anon_sym_override, + STATE(3869), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5022), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7638), 2, + sym_decltype, + sym_dependent_type_identifier, + [178399] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(6693), 1, - anon_sym_const, - ACTIONS(4679), 2, - anon_sym_AMP, - anon_sym_LBRACK, - STATE(3996), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(6696), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - ACTIONS(4681), 18, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(3663), 1, + anon_sym_COLON_COLON, + ACTIONS(4831), 1, anon_sym_LBRACK_LBRACK, + ACTIONS(4833), 1, + anon_sym___declspec, + ACTIONS(6195), 1, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_DASH_GT, + ACTIONS(6197), 1, + anon_sym_COLON, + ACTIONS(7728), 1, + sym_identifier, + STATE(3578), 1, + sym_template_type, + STATE(3742), 1, + sym_field_declaration_list, + STATE(3750), 1, + sym__class_declaration, + STATE(5092), 1, + sym_ms_declspec_modifier, + STATE(5779), 1, + sym__scope_resolution, + STATE(6057), 1, + sym_virtual_specifier, + STATE(6662), 1, + sym_base_class_clause, + ACTIONS(6199), 2, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_noexcept, - anon_sym_throw, - anon_sym_requires, - [146870] = 21, + STATE(3861), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5022), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7638), 2, + sym_decltype, + sym_dependent_type_identifier, + [178464] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, + ACTIONS(1329), 1, anon_sym_template, - ACTIONS(5574), 1, - sym_identifier, - ACTIONS(5576), 1, - anon_sym_COLON_COLON, - ACTIONS(5580), 1, - sym_primitive_type, - ACTIONS(5582), 1, - anon_sym_enum, - ACTIONS(5584), 1, - anon_sym_class, - ACTIONS(5586), 1, - anon_sym_struct, - ACTIONS(5588), 1, - anon_sym_union, - ACTIONS(5590), 1, - sym_auto, - ACTIONS(5592), 1, + ACTIONS(1973), 1, anon_sym_decltype, - ACTIONS(5594), 1, - anon_sym_typename, - STATE(4040), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(4159), 1, - sym__type_specifier, - STATE(4262), 1, - sym_qualified_type_identifier, - STATE(4265), 1, - sym_decltype_auto, - STATE(5024), 1, + ACTIONS(4580), 1, + anon_sym_COLON_COLON, + ACTIONS(4831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4833), 1, + anon_sym___declspec, + ACTIONS(6195), 1, + anon_sym_LBRACE, + ACTIONS(6197), 1, + anon_sym_COLON, + ACTIONS(7740), 1, + sym_identifier, + STATE(3578), 1, + sym_template_type, + STATE(3683), 1, + sym__class_declaration, + STATE(3742), 1, + sym_field_declaration_list, + STATE(5014), 1, + sym_ms_declspec_modifier, + STATE(5733), 1, sym__scope_resolution, - STATE(6159), 1, - sym_dependent_type_identifier, - STATE(4116), 2, + STATE(6057), 1, + sym_virtual_specifier, + STATE(6662), 1, + sym_base_class_clause, + ACTIONS(6199), 2, + anon_sym_final, + anon_sym_override, + STATE(3651), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5012), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7638), 2, sym_decltype, - sym_template_type, - ACTIONS(5578), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(4264), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [146944] = 21, + sym_dependent_type_identifier, + [178529] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, + ACTIONS(1329), 1, anon_sym_template, - ACTIONS(6624), 1, - sym_identifier, - ACTIONS(6626), 1, - anon_sym_COLON_COLON, - ACTIONS(6630), 1, - sym_primitive_type, - ACTIONS(6632), 1, - anon_sym_enum, - ACTIONS(6634), 1, - anon_sym_class, - ACTIONS(6636), 1, - anon_sym_struct, - ACTIONS(6638), 1, - anon_sym_union, - ACTIONS(6640), 1, - sym_auto, - ACTIONS(6642), 1, + ACTIONS(1973), 1, anon_sym_decltype, - ACTIONS(6644), 1, - anon_sym_typename, - STATE(1903), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2206), 1, - sym__type_specifier, - STATE(2319), 1, - sym_decltype_auto, - STATE(2331), 1, - sym_qualified_type_identifier, - STATE(5001), 1, + ACTIONS(3663), 1, + anon_sym_COLON_COLON, + ACTIONS(4831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4833), 1, + anon_sym___declspec, + ACTIONS(6195), 1, + anon_sym_LBRACE, + ACTIONS(6197), 1, + anon_sym_COLON, + ACTIONS(7728), 1, + sym_identifier, + STATE(3578), 1, + sym_template_type, + STATE(3683), 1, + sym__class_declaration, + STATE(3742), 1, + sym_field_declaration_list, + STATE(5092), 1, + sym_ms_declspec_modifier, + STATE(5779), 1, sym__scope_resolution, - STATE(6159), 1, + STATE(6057), 1, + sym_virtual_specifier, + STATE(6662), 1, + sym_base_class_clause, + ACTIONS(6199), 2, + anon_sym_final, + anon_sym_override, + STATE(3861), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5022), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7638), 2, + sym_decltype, sym_dependent_type_identifier, - STATE(2204), 2, + [178594] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(3663), 1, + anon_sym_COLON_COLON, + ACTIONS(4831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4833), 1, + anon_sym___declspec, + ACTIONS(6195), 1, + anon_sym_LBRACE, + ACTIONS(6197), 1, + anon_sym_COLON, + ACTIONS(7728), 1, + sym_identifier, + STATE(3578), 1, + sym_template_type, + STATE(3742), 1, + sym_field_declaration_list, + STATE(3777), 1, + sym__class_declaration, + STATE(5092), 1, + sym_ms_declspec_modifier, + STATE(5779), 1, + sym__scope_resolution, + STATE(6057), 1, + sym_virtual_specifier, + STATE(6662), 1, + sym_base_class_clause, + ACTIONS(6199), 2, + anon_sym_final, + anon_sym_override, + STATE(3860), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5022), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7638), 2, sym_decltype, + sym_dependent_type_identifier, + [178659] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(4831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4833), 1, + anon_sym___declspec, + ACTIONS(4992), 1, + anon_sym_LBRACE, + ACTIONS(6197), 1, + anon_sym_COLON, + ACTIONS(7534), 1, + anon_sym_COLON_COLON, + ACTIONS(7704), 1, + sym_identifier, + STATE(2511), 1, sym_template_type, - ACTIONS(6628), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2320), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [147018] = 19, + STATE(2934), 1, + sym__class_declaration, + STATE(2936), 1, + sym_field_declaration_list, + STATE(4997), 1, + sym_ms_declspec_modifier, + STATE(5713), 1, + sym__scope_resolution, + STATE(6089), 1, + sym_virtual_specifier, + STATE(6859), 1, + sym_base_class_clause, + ACTIONS(6199), 2, + anon_sym_final, + anon_sym_override, + STATE(2350), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(4994), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7638), 2, + sym_decltype, + sym_dependent_type_identifier, + [178724] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(996), 1, + ACTIONS(1329), 1, anon_sym_template, - ACTIONS(1521), 1, - anon_sym_operator, - ACTIONS(1555), 1, + ACTIONS(1973), 1, anon_sym_decltype, - ACTIONS(1681), 1, - anon_sym_LPAREN2, - ACTIONS(1683), 1, - anon_sym_TILDE, - ACTIONS(4302), 1, + ACTIONS(3663), 1, + anon_sym_COLON_COLON, + ACTIONS(4831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4833), 1, + anon_sym___declspec, + ACTIONS(6195), 1, + anon_sym_LBRACE, + ACTIONS(6197), 1, + anon_sym_COLON, + ACTIONS(7728), 1, sym_identifier, - ACTIONS(4312), 1, + STATE(3578), 1, + sym_template_type, + STATE(3742), 1, + sym_field_declaration_list, + STATE(3750), 1, + sym__class_declaration, + STATE(5092), 1, + sym_ms_declspec_modifier, + STATE(5779), 1, + sym__scope_resolution, + STATE(6057), 1, + sym_virtual_specifier, + STATE(6662), 1, + sym_base_class_clause, + ACTIONS(6199), 2, + anon_sym_final, + anon_sym_override, + STATE(3860), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5022), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7638), 2, + sym_decltype, + sym_dependent_type_identifier, + [178789] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(4580), 1, anon_sym_COLON_COLON, - ACTIONS(5353), 1, - anon_sym_LBRACK, - ACTIONS(5371), 1, - anon_sym_STAR, - ACTIONS(5373), 1, - anon_sym_AMP_AMP, - ACTIONS(5375), 1, - anon_sym_AMP, - STATE(4598), 1, + ACTIONS(4831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4833), 1, + anon_sym___declspec, + ACTIONS(6195), 1, + anon_sym_LBRACE, + ACTIONS(6197), 1, + anon_sym_COLON, + ACTIONS(7740), 1, + sym_identifier, + STATE(3578), 1, + sym_template_type, + STATE(3742), 1, + sym_field_declaration_list, + STATE(3777), 1, + sym__class_declaration, + STATE(5014), 1, + sym_ms_declspec_modifier, + STATE(5733), 1, sym__scope_resolution, - STATE(4656), 1, - sym__declarator, - STATE(5663), 1, - sym_init_declarator, - STATE(6066), 1, - sym_ms_based_modifier, - STATE(6159), 3, + STATE(6057), 1, + sym_virtual_specifier, + STATE(6662), 1, + sym_base_class_clause, + ACTIONS(6199), 2, + anon_sym_final, + anon_sym_override, + STATE(3651), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5012), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7638), 2, sym_decltype, - sym_template_type, sym_dependent_type_identifier, - STATE(4918), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [147088] = 21, + [178854] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, + ACTIONS(1329), 1, anon_sym_template, - ACTIONS(6580), 1, - sym_identifier, - ACTIONS(6582), 1, - anon_sym_COLON_COLON, - ACTIONS(6586), 1, - sym_primitive_type, - ACTIONS(6588), 1, - anon_sym_enum, - ACTIONS(6590), 1, - anon_sym_class, - ACTIONS(6592), 1, - anon_sym_struct, - ACTIONS(6594), 1, - anon_sym_union, - ACTIONS(6596), 1, - sym_auto, - ACTIONS(6598), 1, + ACTIONS(1973), 1, anon_sym_decltype, - ACTIONS(6600), 1, - anon_sym_typename, - STATE(1946), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2074), 1, - sym__type_specifier, - STATE(2641), 1, - sym_qualified_type_identifier, - STATE(2691), 1, - sym_decltype_auto, - STATE(5025), 1, + ACTIONS(4580), 1, + anon_sym_COLON_COLON, + ACTIONS(4831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4833), 1, + anon_sym___declspec, + ACTIONS(6195), 1, + anon_sym_LBRACE, + ACTIONS(6197), 1, + anon_sym_COLON, + ACTIONS(7740), 1, + sym_identifier, + STATE(3578), 1, + sym_template_type, + STATE(3742), 1, + sym_field_declaration_list, + STATE(3750), 1, + sym__class_declaration, + STATE(5014), 1, + sym_ms_declspec_modifier, + STATE(5733), 1, sym__scope_resolution, - STATE(6159), 1, - sym_dependent_type_identifier, - STATE(2556), 2, + STATE(6057), 1, + sym_virtual_specifier, + STATE(6662), 1, + sym_base_class_clause, + ACTIONS(6199), 2, + anon_sym_final, + anon_sym_override, + STATE(3651), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5012), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7638), 2, sym_decltype, - sym_template_type, - ACTIONS(6584), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2687), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [147162] = 21, + sym_dependent_type_identifier, + [178919] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, + ACTIONS(1329), 1, anon_sym_template, - ACTIONS(6544), 1, - sym_identifier, - ACTIONS(6546), 1, - anon_sym_COLON_COLON, - ACTIONS(6550), 1, - sym_primitive_type, - ACTIONS(6552), 1, - anon_sym_enum, - ACTIONS(6554), 1, - anon_sym_class, - ACTIONS(6556), 1, - anon_sym_struct, - ACTIONS(6558), 1, - anon_sym_union, - ACTIONS(6560), 1, - sym_auto, - ACTIONS(6562), 1, + ACTIONS(1973), 1, anon_sym_decltype, - ACTIONS(6564), 1, - anon_sym_typename, - STATE(1976), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2190), 1, - sym__type_specifier, - STATE(2738), 1, - sym_decltype_auto, - STATE(2822), 1, - sym_qualified_type_identifier, - STATE(5036), 1, - sym__scope_resolution, - STATE(6159), 1, - sym_dependent_type_identifier, - STATE(2616), 2, - sym_decltype, - sym_template_type, - ACTIONS(6548), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2737), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [147236] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, + ACTIONS(4831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(59), 1, - anon_sym_const, - ACTIONS(5657), 1, - anon_sym___attribute__, - ACTIONS(6504), 1, + ACTIONS(4833), 1, anon_sym___declspec, - ACTIONS(6506), 1, - anon_sym_virtual, - ACTIONS(5483), 2, - anon_sym_AMP, - anon_sym_LBRACK, - ACTIONS(5485), 3, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - ACTIONS(6502), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - ACTIONS(5661), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(3994), 8, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, + ACTIONS(5149), 1, + anon_sym_LBRACE, + ACTIONS(6197), 1, + anon_sym_COLON, + ACTIONS(7581), 1, + anon_sym_COLON_COLON, + ACTIONS(7684), 1, + sym_identifier, + STATE(2846), 1, + sym_template_type, + STATE(3349), 1, + sym__class_declaration, + STATE(3353), 1, + sym_field_declaration_list, + STATE(5009), 1, sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual, - aux_sym__declaration_specifiers_repeat1, - [147290] = 19, + STATE(5726), 1, + sym__scope_resolution, + STATE(6093), 1, + sym_virtual_specifier, + STATE(6632), 1, + sym_base_class_clause, + ACTIONS(6199), 2, + anon_sym_final, + anon_sym_override, + STATE(2698), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5006), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7638), 2, + sym_decltype, + sym_dependent_type_identifier, + [178984] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(996), 1, + ACTIONS(1329), 1, anon_sym_template, - ACTIONS(1521), 1, - anon_sym_operator, - ACTIONS(1555), 1, + ACTIONS(1973), 1, anon_sym_decltype, - ACTIONS(1681), 1, - anon_sym_LPAREN2, - ACTIONS(1683), 1, - anon_sym_TILDE, - ACTIONS(4302), 1, - sym_identifier, - ACTIONS(4312), 1, + ACTIONS(3663), 1, anon_sym_COLON_COLON, - ACTIONS(5353), 1, - anon_sym_LBRACK, - ACTIONS(5371), 1, - anon_sym_STAR, - ACTIONS(5373), 1, - anon_sym_AMP_AMP, - ACTIONS(5375), 1, - anon_sym_AMP, - STATE(4598), 1, + ACTIONS(4831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4833), 1, + anon_sym___declspec, + ACTIONS(6195), 1, + anon_sym_LBRACE, + ACTIONS(6197), 1, + anon_sym_COLON, + ACTIONS(7728), 1, + sym_identifier, + STATE(3578), 1, + sym_template_type, + STATE(3742), 1, + sym_field_declaration_list, + STATE(3750), 1, + sym__class_declaration, + STATE(5092), 1, + sym_ms_declspec_modifier, + STATE(5779), 1, sym__scope_resolution, - STATE(4727), 1, - sym__declarator, - STATE(5437), 1, - sym_init_declarator, - STATE(6066), 1, - sym_ms_based_modifier, - STATE(6159), 3, + STATE(6057), 1, + sym_virtual_specifier, + STATE(6662), 1, + sym_base_class_clause, + ACTIONS(6199), 2, + anon_sym_final, + anon_sym_override, + STATE(3866), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5022), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7638), 2, sym_decltype, - sym_template_type, sym_dependent_type_identifier, - STATE(4918), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [147360] = 18, + [179049] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(29), 1, - anon_sym_AMP_AMP, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(996), 1, + ACTIONS(1329), 1, anon_sym_template, - ACTIONS(1521), 1, - anon_sym_operator, - ACTIONS(1555), 1, + ACTIONS(1973), 1, anon_sym_decltype, - ACTIONS(1681), 1, - anon_sym_LPAREN2, - ACTIONS(1683), 1, - anon_sym_TILDE, - ACTIONS(1685), 1, - anon_sym_STAR, - ACTIONS(1687), 1, - anon_sym_AMP, - ACTIONS(4206), 1, - sym_identifier, - ACTIONS(4377), 1, + ACTIONS(4831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4833), 1, + anon_sym___declspec, + ACTIONS(5149), 1, + anon_sym_LBRACE, + ACTIONS(6197), 1, + anon_sym_COLON, + ACTIONS(7581), 1, anon_sym_COLON_COLON, - ACTIONS(5353), 1, - anon_sym_LBRACK, - STATE(4605), 1, + ACTIONS(7684), 1, + sym_identifier, + STATE(2846), 1, + sym_template_type, + STATE(3350), 1, + sym__class_declaration, + STATE(3353), 1, + sym_field_declaration_list, + STATE(5009), 1, + sym_ms_declspec_modifier, + STATE(5726), 1, sym__scope_resolution, - STATE(5077), 1, - sym__declarator, - STATE(6104), 1, - sym_ms_based_modifier, - STATE(6159), 3, + STATE(6093), 1, + sym_virtual_specifier, + STATE(6632), 1, + sym_base_class_clause, + ACTIONS(6199), 2, + anon_sym_final, + anon_sym_override, + STATE(2698), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5006), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7638), 2, sym_decltype, - sym_template_type, sym_dependent_type_identifier, - STATE(4918), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [147427] = 18, + [179114] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(996), 1, + ACTIONS(1329), 1, anon_sym_template, - ACTIONS(1521), 1, - anon_sym_operator, - ACTIONS(1555), 1, + ACTIONS(1973), 1, anon_sym_decltype, - ACTIONS(1681), 1, - anon_sym_LPAREN2, - ACTIONS(1683), 1, - anon_sym_TILDE, - ACTIONS(4206), 1, - sym_identifier, - ACTIONS(4377), 1, + ACTIONS(3663), 1, anon_sym_COLON_COLON, - ACTIONS(5347), 1, - anon_sym_STAR, - ACTIONS(5349), 1, - anon_sym_AMP_AMP, - ACTIONS(5351), 1, - anon_sym_AMP, - ACTIONS(5353), 1, - anon_sym_LBRACK, - STATE(4605), 1, + ACTIONS(4831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4833), 1, + anon_sym___declspec, + ACTIONS(6195), 1, + anon_sym_LBRACE, + ACTIONS(6197), 1, + anon_sym_COLON, + ACTIONS(7728), 1, + sym_identifier, + STATE(3578), 1, + sym_template_type, + STATE(3742), 1, + sym_field_declaration_list, + STATE(3750), 1, + sym__class_declaration, + STATE(5092), 1, + sym_ms_declspec_modifier, + STATE(5779), 1, sym__scope_resolution, - STATE(5058), 1, - sym__declarator, - STATE(6132), 1, - sym_ms_based_modifier, - STATE(6159), 3, + STATE(6057), 1, + sym_virtual_specifier, + STATE(6662), 1, + sym_base_class_clause, + ACTIONS(6199), 2, + anon_sym_final, + anon_sym_override, + STATE(3874), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5022), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7638), 2, sym_decltype, - sym_template_type, sym_dependent_type_identifier, - STATE(4918), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [147494] = 14, + [179179] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2724), 1, - anon_sym_const, - ACTIONS(3908), 1, - anon_sym_LPAREN2, - ACTIONS(6514), 1, - anon_sym_LBRACK, - ACTIONS(6602), 1, - anon_sym_STAR, - ACTIONS(6604), 1, - anon_sym_AMP_AMP, - ACTIONS(6606), 1, - anon_sym_AMP, - STATE(3556), 1, - sym_parameter_list, - STATE(4765), 1, - sym__function_declarator_seq, - STATE(4957), 1, - sym__abstract_declarator, - STATE(4084), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(4764), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(6500), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(4831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4833), 1, + anon_sym___declspec, + ACTIONS(5270), 1, + anon_sym_LBRACE, + ACTIONS(6197), 1, + anon_sym_COLON, + ACTIONS(7567), 1, + anon_sym_COLON_COLON, + ACTIONS(7714), 1, + sym_identifier, + STATE(2945), 1, + sym_template_type, + STATE(3143), 1, + sym__class_declaration, + STATE(3145), 1, + sym_field_declaration_list, + STATE(5084), 1, + sym_ms_declspec_modifier, + STATE(5737), 1, + sym__scope_resolution, + STATE(5959), 1, + sym_virtual_specifier, + STATE(6894), 1, + sym_base_class_clause, + ACTIONS(6199), 2, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - ACTIONS(6516), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [147553] = 18, + STATE(2818), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5080), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7638), 2, + sym_decltype, + sym_dependent_type_identifier, + [179244] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(996), 1, + ACTIONS(1329), 1, anon_sym_template, - ACTIONS(1521), 1, - anon_sym_operator, - ACTIONS(1555), 1, + ACTIONS(1973), 1, anon_sym_decltype, - ACTIONS(1681), 1, - anon_sym_LPAREN2, - ACTIONS(1683), 1, - anon_sym_TILDE, - ACTIONS(5353), 1, - anon_sym_LBRACK, - ACTIONS(5355), 1, - sym_identifier, - ACTIONS(5357), 1, - anon_sym_STAR, - ACTIONS(5359), 1, - anon_sym_AMP_AMP, - ACTIONS(5361), 1, - anon_sym_AMP, - ACTIONS(5363), 1, + ACTIONS(4831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4833), 1, + anon_sym___declspec, + ACTIONS(5086), 1, + anon_sym_LBRACE, + ACTIONS(6197), 1, + anon_sym_COLON, + ACTIONS(7456), 1, anon_sym_COLON_COLON, - STATE(4639), 1, + ACTIONS(7674), 1, + sym_identifier, + STATE(2739), 1, + sym_template_type, + STATE(3097), 1, + sym_field_declaration_list, + STATE(3117), 1, + sym__class_declaration, + STATE(5002), 1, + sym_ms_declspec_modifier, + STATE(5797), 1, sym__scope_resolution, - STATE(4886), 1, - sym__declarator, - STATE(6010), 1, - sym_ms_based_modifier, - STATE(6159), 3, + STATE(6173), 1, + sym_virtual_specifier, + STATE(6801), 1, + sym_base_class_clause, + ACTIONS(6199), 2, + anon_sym_final, + anon_sym_override, + STATE(2521), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5003), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7638), 2, sym_decltype, - sym_template_type, sym_dependent_type_identifier, - STATE(4918), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [147620] = 18, + [179309] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(996), 1, + ACTIONS(1329), 1, anon_sym_template, - ACTIONS(1521), 1, - anon_sym_operator, - ACTIONS(1555), 1, + ACTIONS(1973), 1, anon_sym_decltype, - ACTIONS(1681), 1, - anon_sym_LPAREN2, - ACTIONS(1683), 1, - anon_sym_TILDE, - ACTIONS(5353), 1, - anon_sym_LBRACK, - ACTIONS(5355), 1, - sym_identifier, - ACTIONS(5357), 1, - anon_sym_STAR, - ACTIONS(5359), 1, - anon_sym_AMP_AMP, - ACTIONS(5361), 1, - anon_sym_AMP, - ACTIONS(5363), 1, + ACTIONS(4831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4833), 1, + anon_sym___declspec, + ACTIONS(5086), 1, + anon_sym_LBRACE, + ACTIONS(6197), 1, + anon_sym_COLON, + ACTIONS(7456), 1, anon_sym_COLON_COLON, - STATE(4639), 1, + ACTIONS(7674), 1, + sym_identifier, + STATE(2739), 1, + sym_template_type, + STATE(3097), 1, + sym_field_declaration_list, + STATE(3109), 1, + sym__class_declaration, + STATE(5002), 1, + sym_ms_declspec_modifier, + STATE(5797), 1, sym__scope_resolution, - STATE(4893), 1, - sym__declarator, - STATE(6010), 1, - sym_ms_based_modifier, - STATE(6159), 3, + STATE(6173), 1, + sym_virtual_specifier, + STATE(6801), 1, + sym_base_class_clause, + ACTIONS(6199), 2, + anon_sym_final, + anon_sym_override, + STATE(2521), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5003), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7638), 2, sym_decltype, - sym_template_type, sym_dependent_type_identifier, - STATE(4918), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [147687] = 6, + [179374] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(3814), 1, - anon_sym_COLON_COLON, - ACTIONS(5413), 1, - anon_sym_LT, - STATE(3135), 1, - sym_template_argument_list, - ACTIONS(4288), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(4286), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(45), 1, + anon_sym___based, + ACTIONS(1899), 1, + anon_sym_LBRACE, + ACTIONS(1931), 1, + anon_sym_operator, + ACTIONS(6642), 1, + sym_identifier, + ACTIONS(6644), 1, anon_sym_LPAREN2, + ACTIONS(6646), 1, anon_sym_STAR, + ACTIONS(6648), 1, anon_sym_AMP_AMP, + ACTIONS(6650), 1, + anon_sym_AMP, + ACTIONS(7736), 1, + anon_sym_COLON, + ACTIONS(7742), 1, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, + ACTIONS(7744), 1, anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [147730] = 18, + STATE(5048), 1, + sym__field_declarator, + STATE(7022), 1, + sym_ms_based_modifier, + STATE(7239), 1, + sym_initializer_list, + STATE(7241), 1, + sym_bitfield_clause, + STATE(5685), 8, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + sym_reference_field_declarator, + sym_template_method, + sym_operator_name, + [179433] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(996), 1, + ACTIONS(1329), 1, anon_sym_template, - ACTIONS(1521), 1, - anon_sym_operator, - ACTIONS(1555), 1, + ACTIONS(1973), 1, anon_sym_decltype, - ACTIONS(1681), 1, - anon_sym_LPAREN2, - ACTIONS(1683), 1, - anon_sym_TILDE, - ACTIONS(4302), 1, - sym_identifier, - ACTIONS(4312), 1, + ACTIONS(4831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4833), 1, + anon_sym___declspec, + ACTIONS(5086), 1, + anon_sym_LBRACE, + ACTIONS(6197), 1, + anon_sym_COLON, + ACTIONS(7456), 1, anon_sym_COLON_COLON, - ACTIONS(5353), 1, - anon_sym_LBRACK, - ACTIONS(5371), 1, - anon_sym_STAR, - ACTIONS(5373), 1, - anon_sym_AMP_AMP, - ACTIONS(5375), 1, - anon_sym_AMP, - STATE(4598), 1, + ACTIONS(7674), 1, + sym_identifier, + STATE(2739), 1, + sym_template_type, + STATE(3097), 1, + sym_field_declaration_list, + STATE(3099), 1, + sym__class_declaration, + STATE(5002), 1, + sym_ms_declspec_modifier, + STATE(5797), 1, sym__scope_resolution, - STATE(4949), 1, - sym__declarator, - STATE(6066), 1, - sym_ms_based_modifier, - STATE(6159), 3, + STATE(6173), 1, + sym_virtual_specifier, + STATE(6801), 1, + sym_base_class_clause, + ACTIONS(6199), 2, + anon_sym_final, + anon_sym_override, + STATE(2521), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5003), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7638), 2, sym_decltype, - sym_template_type, sym_dependent_type_identifier, - STATE(4918), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [147797] = 6, + [179498] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3814), 1, - anon_sym_COLON_COLON, - ACTIONS(6699), 1, - anon_sym_LT, - STATE(4060), 1, - sym_template_argument_list, - ACTIONS(4196), 3, - anon_sym_AMP, - anon_sym_const, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(4831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4833), 1, + anon_sym___declspec, + ACTIONS(6197), 1, anon_sym_COLON, - ACTIONS(3819), 23, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(6266), 1, + anon_sym_COLON_COLON, + ACTIONS(7626), 1, anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_or, - anon_sym_and, - sym_auto, - anon_sym_decltype, + ACTIONS(7730), 1, + sym_identifier, + STATE(4638), 1, + sym_template_type, + STATE(4748), 1, + sym_field_declaration_list, + STATE(4749), 1, + sym__class_declaration, + STATE(5051), 1, + sym_ms_declspec_modifier, + STATE(5766), 1, + sym__scope_resolution, + STATE(6061), 1, + sym_virtual_specifier, + STATE(6749), 1, + sym_base_class_clause, + ACTIONS(6199), 2, anon_sym_final, anon_sym_override, - anon_sym_try, - anon_sym_requires, - [147840] = 14, + STATE(4674), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5046), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7638), 2, + sym_decltype, + sym_dependent_type_identifier, + [179563] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2724), 1, - anon_sym_const, - ACTIONS(3908), 1, - anon_sym_LPAREN2, - ACTIONS(6514), 1, - anon_sym_LBRACK, - ACTIONS(6602), 1, - anon_sym_STAR, - ACTIONS(6604), 1, - anon_sym_AMP_AMP, - ACTIONS(6606), 1, - anon_sym_AMP, - STATE(3556), 1, - sym_parameter_list, - STATE(4765), 1, - sym__function_declarator_seq, - STATE(4965), 1, - sym__abstract_declarator, - STATE(4028), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(4764), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(4304), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(4831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4833), 1, + anon_sym___declspec, + ACTIONS(6197), 1, + anon_sym_COLON, + ACTIONS(6312), 1, + anon_sym_COLON_COLON, + ACTIONS(6458), 1, + anon_sym_LBRACE, + ACTIONS(7728), 1, + sym_identifier, + STATE(3578), 1, + sym_template_type, + STATE(3939), 1, + sym_field_declaration_list, + STATE(3943), 1, + sym__class_declaration, + STATE(4974), 1, + sym_ms_declspec_modifier, + STATE(5765), 1, + sym__scope_resolution, + STATE(5985), 1, + sym_virtual_specifier, + STATE(6891), 1, + sym_base_class_clause, + ACTIONS(6199), 2, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - ACTIONS(6516), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [147899] = 6, + STATE(3850), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5025), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7638), 2, + sym_decltype, + sym_dependent_type_identifier, + [179628] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3814), 1, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(3663), 1, anon_sym_COLON_COLON, - ACTIONS(6701), 1, - anon_sym_LT, - STATE(2751), 1, - sym_template_argument_list, - ACTIONS(3831), 3, - anon_sym_AMP, - anon_sym_const, - anon_sym_COLON, - ACTIONS(3836), 23, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(4831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4833), 1, + anon_sym___declspec, + ACTIONS(6195), 1, anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_or, - anon_sym_and, - sym_auto, - anon_sym_decltype, + ACTIONS(6197), 1, + anon_sym_COLON, + ACTIONS(7728), 1, + sym_identifier, + STATE(3578), 1, + sym_template_type, + STATE(3683), 1, + sym__class_declaration, + STATE(3742), 1, + sym_field_declaration_list, + STATE(5092), 1, + sym_ms_declspec_modifier, + STATE(5779), 1, + sym__scope_resolution, + STATE(6057), 1, + sym_virtual_specifier, + STATE(6662), 1, + sym_base_class_clause, + ACTIONS(6199), 2, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [147942] = 6, + STATE(3860), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5022), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7638), 2, + sym_decltype, + sym_dependent_type_identifier, + [179693] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3814), 1, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(4831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4833), 1, + anon_sym___declspec, + ACTIONS(5102), 1, anon_sym_COLON_COLON, - ACTIONS(6699), 1, - anon_sym_LT, - STATE(4060), 1, - sym_template_argument_list, - ACTIONS(3831), 3, - anon_sym_AMP, - anon_sym_const, - anon_sym_COLON, - ACTIONS(3836), 23, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(6195), 1, anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_or, - anon_sym_and, - sym_auto, - anon_sym_decltype, + ACTIONS(6197), 1, + anon_sym_COLON, + ACTIONS(7740), 1, + sym_identifier, + STATE(3578), 1, + sym_template_type, + STATE(3742), 1, + sym_field_declaration_list, + STATE(3750), 1, + sym__class_declaration, + STATE(4999), 1, + sym_ms_declspec_modifier, + STATE(5718), 1, + sym__scope_resolution, + STATE(6057), 1, + sym_virtual_specifier, + STATE(6662), 1, + sym_base_class_clause, + ACTIONS(6199), 2, anon_sym_final, anon_sym_override, - anon_sym_try, - anon_sym_requires, - [147985] = 14, + STATE(3862), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(4995), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7638), 2, + sym_decltype, + sym_dependent_type_identifier, + [179758] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2724), 1, - anon_sym_const, - ACTIONS(3908), 1, - anon_sym_LPAREN2, - ACTIONS(6514), 1, - anon_sym_LBRACK, - ACTIONS(6602), 1, - anon_sym_STAR, - ACTIONS(6604), 1, - anon_sym_AMP_AMP, - ACTIONS(6606), 1, - anon_sym_AMP, - STATE(3556), 1, - sym_parameter_list, - STATE(4765), 1, - sym__function_declarator_seq, - STATE(4967), 1, - sym__abstract_declarator, - STATE(4084), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(4764), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(6496), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(3663), 1, + anon_sym_COLON_COLON, + ACTIONS(4831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4833), 1, + anon_sym___declspec, + ACTIONS(6195), 1, + anon_sym_LBRACE, + ACTIONS(6197), 1, + anon_sym_COLON, + ACTIONS(7728), 1, + sym_identifier, + STATE(3578), 1, + sym_template_type, + STATE(3742), 1, + sym_field_declaration_list, + STATE(3750), 1, + sym__class_declaration, + STATE(5092), 1, + sym_ms_declspec_modifier, + STATE(5779), 1, + sym__scope_resolution, + STATE(6057), 1, + sym_virtual_specifier, + STATE(6662), 1, + sym_base_class_clause, + ACTIONS(6199), 2, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - ACTIONS(6516), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [148044] = 18, + STATE(3863), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5022), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7638), 2, + sym_decltype, + sym_dependent_type_identifier, + [179823] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(996), 1, + ACTIONS(1329), 1, anon_sym_template, - ACTIONS(1521), 1, - anon_sym_operator, - ACTIONS(1555), 1, + ACTIONS(1973), 1, anon_sym_decltype, - ACTIONS(1681), 1, - anon_sym_LPAREN2, - ACTIONS(1683), 1, - anon_sym_TILDE, - ACTIONS(5353), 1, - anon_sym_LBRACK, - ACTIONS(5355), 1, - sym_identifier, - ACTIONS(5357), 1, - anon_sym_STAR, - ACTIONS(5359), 1, - anon_sym_AMP_AMP, - ACTIONS(5361), 1, - anon_sym_AMP, - ACTIONS(5363), 1, + ACTIONS(3663), 1, anon_sym_COLON_COLON, - STATE(4639), 1, + ACTIONS(4831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4833), 1, + anon_sym___declspec, + ACTIONS(6195), 1, + anon_sym_LBRACE, + ACTIONS(6197), 1, + anon_sym_COLON, + ACTIONS(7728), 1, + sym_identifier, + STATE(3578), 1, + sym_template_type, + STATE(3683), 1, + sym__class_declaration, + STATE(3742), 1, + sym_field_declaration_list, + STATE(5092), 1, + sym_ms_declspec_modifier, + STATE(5779), 1, sym__scope_resolution, - STATE(4940), 1, - sym__declarator, - STATE(6010), 1, - sym_ms_based_modifier, - STATE(6159), 3, + STATE(6057), 1, + sym_virtual_specifier, + STATE(6662), 1, + sym_base_class_clause, + ACTIONS(6199), 2, + anon_sym_final, + anon_sym_override, + STATE(3874), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5022), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7638), 2, sym_decltype, - sym_template_type, sym_dependent_type_identifier, - STATE(4918), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [148111] = 18, + [179888] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(29), 1, - anon_sym_AMP_AMP, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(996), 1, + ACTIONS(1329), 1, anon_sym_template, - ACTIONS(1521), 1, - anon_sym_operator, - ACTIONS(1555), 1, + ACTIONS(1973), 1, anon_sym_decltype, - ACTIONS(1681), 1, - anon_sym_LPAREN2, - ACTIONS(1683), 1, - anon_sym_TILDE, - ACTIONS(1685), 1, - anon_sym_STAR, - ACTIONS(1687), 1, - anon_sym_AMP, - ACTIONS(4206), 1, - sym_identifier, - ACTIONS(4377), 1, + ACTIONS(3663), 1, anon_sym_COLON_COLON, - ACTIONS(5353), 1, - anon_sym_LBRACK, - STATE(4605), 1, + ACTIONS(4831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4833), 1, + anon_sym___declspec, + ACTIONS(6195), 1, + anon_sym_LBRACE, + ACTIONS(6197), 1, + anon_sym_COLON, + ACTIONS(7728), 1, + sym_identifier, + STATE(3578), 1, + sym_template_type, + STATE(3742), 1, + sym_field_declaration_list, + STATE(3777), 1, + sym__class_declaration, + STATE(5092), 1, + sym_ms_declspec_modifier, + STATE(5779), 1, sym__scope_resolution, - STATE(5094), 1, - sym__declarator, - STATE(6104), 1, - sym_ms_based_modifier, - STATE(6159), 3, + STATE(6057), 1, + sym_virtual_specifier, + STATE(6662), 1, + sym_base_class_clause, + ACTIONS(6199), 2, + anon_sym_final, + anon_sym_override, + STATE(3874), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5022), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7638), 2, sym_decltype, - sym_template_type, sym_dependent_type_identifier, - STATE(4918), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [148178] = 18, + [179953] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(996), 1, + ACTIONS(1329), 1, anon_sym_template, - ACTIONS(1521), 1, - anon_sym_operator, - ACTIONS(1555), 1, + ACTIONS(1973), 1, anon_sym_decltype, - ACTIONS(1681), 1, - anon_sym_LPAREN2, - ACTIONS(1683), 1, - anon_sym_TILDE, - ACTIONS(4302), 1, - sym_identifier, - ACTIONS(4312), 1, + ACTIONS(3663), 1, anon_sym_COLON_COLON, - ACTIONS(5353), 1, - anon_sym_LBRACK, - ACTIONS(5371), 1, - anon_sym_STAR, - ACTIONS(5373), 1, - anon_sym_AMP_AMP, - ACTIONS(5375), 1, - anon_sym_AMP, - STATE(4598), 1, + ACTIONS(4831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4833), 1, + anon_sym___declspec, + ACTIONS(6195), 1, + anon_sym_LBRACE, + ACTIONS(6197), 1, + anon_sym_COLON, + ACTIONS(7728), 1, + sym_identifier, + STATE(3578), 1, + sym_template_type, + STATE(3683), 1, + sym__class_declaration, + STATE(3742), 1, + sym_field_declaration_list, + STATE(5092), 1, + sym_ms_declspec_modifier, + STATE(5779), 1, sym__scope_resolution, - STATE(4650), 1, - sym__declarator, - STATE(6066), 1, - sym_ms_based_modifier, - STATE(6159), 3, + STATE(6057), 1, + sym_virtual_specifier, + STATE(6662), 1, + sym_base_class_clause, + ACTIONS(6199), 2, + anon_sym_final, + anon_sym_override, + STATE(3869), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5022), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7638), 2, sym_decltype, - sym_template_type, sym_dependent_type_identifier, - STATE(4918), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [148245] = 18, + [180018] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(996), 1, + ACTIONS(1329), 1, anon_sym_template, - ACTIONS(1521), 1, - anon_sym_operator, - ACTIONS(1555), 1, + ACTIONS(1973), 1, anon_sym_decltype, - ACTIONS(1681), 1, - anon_sym_LPAREN2, - ACTIONS(1683), 1, - anon_sym_TILDE, - ACTIONS(5353), 1, - anon_sym_LBRACK, - ACTIONS(5355), 1, - sym_identifier, - ACTIONS(5357), 1, - anon_sym_STAR, - ACTIONS(5359), 1, - anon_sym_AMP_AMP, - ACTIONS(5361), 1, - anon_sym_AMP, - ACTIONS(5363), 1, + ACTIONS(3663), 1, anon_sym_COLON_COLON, - STATE(4639), 1, + ACTIONS(4831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4833), 1, + anon_sym___declspec, + ACTIONS(6195), 1, + anon_sym_LBRACE, + ACTIONS(6197), 1, + anon_sym_COLON, + ACTIONS(7728), 1, + sym_identifier, + STATE(3578), 1, + sym_template_type, + STATE(3742), 1, + sym_field_declaration_list, + STATE(3777), 1, + sym__class_declaration, + STATE(5092), 1, + sym_ms_declspec_modifier, + STATE(5779), 1, sym__scope_resolution, - STATE(4910), 1, - sym__declarator, - STATE(6010), 1, - sym_ms_based_modifier, - STATE(6159), 3, + STATE(6057), 1, + sym_virtual_specifier, + STATE(6662), 1, + sym_base_class_clause, + ACTIONS(6199), 2, + anon_sym_final, + anon_sym_override, + STATE(3863), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5022), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7638), 2, sym_decltype, - sym_template_type, sym_dependent_type_identifier, - STATE(4918), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [148312] = 18, + [180083] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(996), 1, + ACTIONS(1329), 1, anon_sym_template, - ACTIONS(1521), 1, - anon_sym_operator, - ACTIONS(1555), 1, + ACTIONS(1973), 1, anon_sym_decltype, - ACTIONS(1681), 1, - anon_sym_LPAREN2, - ACTIONS(1683), 1, - anon_sym_TILDE, - ACTIONS(4302), 1, - sym_identifier, - ACTIONS(4312), 1, + ACTIONS(4831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4833), 1, + anon_sym___declspec, + ACTIONS(5270), 1, + anon_sym_LBRACE, + ACTIONS(6197), 1, + anon_sym_COLON, + ACTIONS(7567), 1, anon_sym_COLON_COLON, - ACTIONS(5353), 1, - anon_sym_LBRACK, - ACTIONS(5377), 1, - anon_sym_STAR, - ACTIONS(5379), 1, - anon_sym_AMP_AMP, - ACTIONS(5381), 1, - anon_sym_AMP, - STATE(4598), 1, + ACTIONS(7714), 1, + sym_identifier, + STATE(2945), 1, + sym_template_type, + STATE(3141), 1, + sym__class_declaration, + STATE(3145), 1, + sym_field_declaration_list, + STATE(5084), 1, + sym_ms_declspec_modifier, + STATE(5737), 1, sym__scope_resolution, - STATE(4858), 1, - sym__declarator, - STATE(6072), 1, - sym_ms_based_modifier, - STATE(6159), 3, + STATE(5959), 1, + sym_virtual_specifier, + STATE(6894), 1, + sym_base_class_clause, + ACTIONS(6199), 2, + anon_sym_final, + anon_sym_override, + STATE(2818), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5080), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7638), 2, sym_decltype, - sym_template_type, sym_dependent_type_identifier, - STATE(4918), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [148379] = 3, + [180148] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(6705), 3, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_const, - ACTIONS(6703), 26, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___attribute__, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(4831), 1, anon_sym_LBRACK_LBRACK, + ACTIONS(4833), 1, + anon_sym___declspec, + ACTIONS(4876), 1, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, + ACTIONS(6197), 1, anon_sym_COLON, - anon_sym_DASH_GT, + ACTIONS(7478), 1, + anon_sym_COLON_COLON, + ACTIONS(7694), 1, + sym_identifier, + STATE(2414), 1, + sym_template_type, + STATE(2744), 1, + sym__class_declaration, + STATE(2745), 1, + sym_field_declaration_list, + STATE(5087), 1, + sym_ms_declspec_modifier, + STATE(5770), 1, + sym__scope_resolution, + STATE(6167), 1, + sym_virtual_specifier, + STATE(6752), 1, + sym_base_class_clause, + ACTIONS(6199), 2, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_noexcept, - anon_sym_throw, - anon_sym_requires, - [148416] = 18, + STATE(2306), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5091), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7638), 2, + sym_decltype, + sym_dependent_type_identifier, + [180213] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(996), 1, + ACTIONS(1329), 1, anon_sym_template, - ACTIONS(1521), 1, - anon_sym_operator, - ACTIONS(1555), 1, + ACTIONS(1973), 1, anon_sym_decltype, - ACTIONS(1681), 1, - anon_sym_LPAREN2, - ACTIONS(1683), 1, - anon_sym_TILDE, - ACTIONS(4206), 1, - sym_identifier, - ACTIONS(4377), 1, + ACTIONS(4831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4833), 1, + anon_sym___declspec, + ACTIONS(5102), 1, anon_sym_COLON_COLON, - ACTIONS(5347), 1, - anon_sym_STAR, - ACTIONS(5349), 1, - anon_sym_AMP_AMP, - ACTIONS(5351), 1, - anon_sym_AMP, - ACTIONS(5353), 1, - anon_sym_LBRACK, - STATE(4605), 1, + ACTIONS(6195), 1, + anon_sym_LBRACE, + ACTIONS(6197), 1, + anon_sym_COLON, + ACTIONS(7740), 1, + sym_identifier, + STATE(3578), 1, + sym_template_type, + STATE(3683), 1, + sym__class_declaration, + STATE(3742), 1, + sym_field_declaration_list, + STATE(4999), 1, + sym_ms_declspec_modifier, + STATE(5718), 1, sym__scope_resolution, - STATE(5086), 1, - sym__declarator, - STATE(6132), 1, - sym_ms_based_modifier, - STATE(6159), 3, + STATE(6057), 1, + sym_virtual_specifier, + STATE(6662), 1, + sym_base_class_clause, + ACTIONS(6199), 2, + anon_sym_final, + anon_sym_override, + STATE(3862), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(4995), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7638), 2, sym_decltype, - sym_template_type, sym_dependent_type_identifier, - STATE(4918), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [148483] = 18, + [180278] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(29), 1, - anon_sym_AMP_AMP, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(996), 1, + ACTIONS(1329), 1, anon_sym_template, - ACTIONS(1521), 1, - anon_sym_operator, - ACTIONS(1555), 1, + ACTIONS(1973), 1, anon_sym_decltype, - ACTIONS(1681), 1, - anon_sym_LPAREN2, - ACTIONS(1683), 1, - anon_sym_TILDE, - ACTIONS(1685), 1, - anon_sym_STAR, - ACTIONS(1687), 1, - anon_sym_AMP, - ACTIONS(4206), 1, - sym_identifier, - ACTIONS(4377), 1, + ACTIONS(4831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4833), 1, + anon_sym___declspec, + ACTIONS(4992), 1, + anon_sym_LBRACE, + ACTIONS(6197), 1, + anon_sym_COLON, + ACTIONS(7534), 1, anon_sym_COLON_COLON, - ACTIONS(5353), 1, - anon_sym_LBRACK, - STATE(4605), 1, + ACTIONS(7704), 1, + sym_identifier, + STATE(2511), 1, + sym_template_type, + STATE(2878), 1, + sym__class_declaration, + STATE(2936), 1, + sym_field_declaration_list, + STATE(4997), 1, + sym_ms_declspec_modifier, + STATE(5713), 1, sym__scope_resolution, - STATE(5089), 1, - sym__declarator, - STATE(6104), 1, - sym_ms_based_modifier, - STATE(6159), 3, + STATE(6089), 1, + sym_virtual_specifier, + STATE(6859), 1, + sym_base_class_clause, + ACTIONS(6199), 2, + anon_sym_final, + anon_sym_override, + STATE(2350), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(4994), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7638), 2, sym_decltype, - sym_template_type, sym_dependent_type_identifier, - STATE(4918), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [148550] = 14, + [180343] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(6707), 1, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(4831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4833), 1, + anon_sym___declspec, + ACTIONS(5102), 1, + anon_sym_COLON_COLON, + ACTIONS(6195), 1, + anon_sym_LBRACE, + ACTIONS(6197), 1, + anon_sym_COLON, + ACTIONS(7740), 1, sym_identifier, - ACTIONS(6709), 1, - anon_sym_LPAREN2, - ACTIONS(6711), 1, - anon_sym_STAR, - STATE(4091), 1, - sym_ms_unaligned_ptr_modifier, - STATE(5019), 1, - sym__type_declarator, - STATE(6360), 1, - sym_ms_based_modifier, - ACTIONS(2722), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(4056), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4281), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(2720), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(5132), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(2724), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [148609] = 18, + STATE(3578), 1, + sym_template_type, + STATE(3742), 1, + sym_field_declaration_list, + STATE(3777), 1, + sym__class_declaration, + STATE(4999), 1, + sym_ms_declspec_modifier, + STATE(5718), 1, + sym__scope_resolution, + STATE(6057), 1, + sym_virtual_specifier, + STATE(6662), 1, + sym_base_class_clause, + ACTIONS(6199), 2, + anon_sym_final, + anon_sym_override, + STATE(3862), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(4995), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7638), 2, + sym_decltype, + sym_dependent_type_identifier, + [180408] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(996), 1, + ACTIONS(1329), 1, anon_sym_template, - ACTIONS(1521), 1, - anon_sym_operator, - ACTIONS(1555), 1, + ACTIONS(1973), 1, anon_sym_decltype, - ACTIONS(1681), 1, - anon_sym_LPAREN2, - ACTIONS(1683), 1, - anon_sym_TILDE, - ACTIONS(4206), 1, - sym_identifier, - ACTIONS(4377), 1, + ACTIONS(4831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4833), 1, + anon_sym___declspec, + ACTIONS(4992), 1, + anon_sym_LBRACE, + ACTIONS(6197), 1, + anon_sym_COLON, + ACTIONS(7534), 1, anon_sym_COLON_COLON, - ACTIONS(5347), 1, - anon_sym_STAR, - ACTIONS(5349), 1, - anon_sym_AMP_AMP, - ACTIONS(5351), 1, - anon_sym_AMP, - ACTIONS(5353), 1, - anon_sym_LBRACK, - STATE(4605), 1, + ACTIONS(7704), 1, + sym_identifier, + STATE(2511), 1, + sym_template_type, + STATE(2932), 1, + sym__class_declaration, + STATE(2936), 1, + sym_field_declaration_list, + STATE(4997), 1, + sym_ms_declspec_modifier, + STATE(5713), 1, sym__scope_resolution, - STATE(5065), 1, - sym__declarator, - STATE(6132), 1, - sym_ms_based_modifier, - STATE(6159), 3, + STATE(6089), 1, + sym_virtual_specifier, + STATE(6859), 1, + sym_base_class_clause, + ACTIONS(6199), 2, + anon_sym_final, + anon_sym_override, + STATE(2350), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(4994), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7638), 2, sym_decltype, - sym_template_type, sym_dependent_type_identifier, - STATE(4918), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [148676] = 18, + [180473] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(29), 1, - anon_sym_AMP_AMP, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(996), 1, + ACTIONS(1329), 1, anon_sym_template, - ACTIONS(1521), 1, - anon_sym_operator, - ACTIONS(1555), 1, + ACTIONS(1973), 1, anon_sym_decltype, - ACTIONS(1681), 1, - anon_sym_LPAREN2, - ACTIONS(1683), 1, - anon_sym_TILDE, - ACTIONS(1685), 1, - anon_sym_STAR, - ACTIONS(1687), 1, - anon_sym_AMP, - ACTIONS(4206), 1, - sym_identifier, - ACTIONS(4377), 1, + ACTIONS(4831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4833), 1, + anon_sym___declspec, + ACTIONS(5045), 1, + anon_sym_LBRACE, + ACTIONS(6197), 1, + anon_sym_COLON, + ACTIONS(6225), 1, anon_sym_COLON_COLON, - ACTIONS(5353), 1, - anon_sym_LBRACK, - STATE(4605), 1, + ACTIONS(7738), 1, + sym_identifier, + STATE(2718), 1, + sym_template_type, + STATE(2803), 1, + sym_field_declaration_list, + STATE(2812), 1, + sym__class_declaration, + STATE(4992), 1, + sym_ms_declspec_modifier, + STATE(5741), 1, sym__scope_resolution, - STATE(4880), 1, - sym__declarator, - STATE(6104), 1, - sym_ms_based_modifier, - STATE(6159), 3, + STATE(6136), 1, + sym_virtual_specifier, + STATE(6784), 1, + sym_base_class_clause, + ACTIONS(6199), 2, + anon_sym_final, + anon_sym_override, + STATE(2396), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(4986), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7638), 2, sym_decltype, - sym_template_type, sym_dependent_type_identifier, - STATE(4918), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [148743] = 6, + [180538] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3814), 1, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(3663), 1, anon_sym_COLON_COLON, - ACTIONS(6713), 1, - anon_sym_LT, - STATE(2234), 1, - sym_template_argument_list, - ACTIONS(3831), 3, - anon_sym_AMP, - anon_sym_const, - anon_sym_COLON, - ACTIONS(3836), 23, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(4831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4833), 1, + anon_sym___declspec, + ACTIONS(6195), 1, anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_or, - anon_sym_and, - sym_auto, - anon_sym_decltype, + ACTIONS(6197), 1, + anon_sym_COLON, + ACTIONS(7728), 1, + sym_identifier, + STATE(3578), 1, + sym_template_type, + STATE(3683), 1, + sym__class_declaration, + STATE(3742), 1, + sym_field_declaration_list, + STATE(5092), 1, + sym_ms_declspec_modifier, + STATE(5779), 1, + sym__scope_resolution, + STATE(6057), 1, + sym_virtual_specifier, + STATE(6662), 1, + sym_base_class_clause, + ACTIONS(6199), 2, anon_sym_final, anon_sym_override, - anon_sym_requires, - [148786] = 14, + STATE(3863), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5022), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7638), 2, + sym_decltype, + sym_dependent_type_identifier, + [180603] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2724), 1, - anon_sym_const, - ACTIONS(3908), 1, - anon_sym_LPAREN2, - ACTIONS(6514), 1, - anon_sym_LBRACK, - ACTIONS(6602), 1, - anon_sym_STAR, - ACTIONS(6604), 1, - anon_sym_AMP_AMP, - ACTIONS(6606), 1, - anon_sym_AMP, - STATE(3556), 1, - sym_parameter_list, - STATE(4765), 1, - sym__function_declarator_seq, - STATE(4958), 1, - sym__abstract_declarator, - STATE(4084), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(4764), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(5322), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(4831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4833), 1, + anon_sym___declspec, + ACTIONS(5270), 1, + anon_sym_LBRACE, + ACTIONS(6197), 1, + anon_sym_COLON, + ACTIONS(6288), 1, + anon_sym_COLON_COLON, + ACTIONS(7746), 1, + sym_identifier, + STATE(2945), 1, + sym_template_type, + STATE(3141), 1, + sym__class_declaration, + STATE(3145), 1, + sym_field_declaration_list, + STATE(5033), 1, + sym_ms_declspec_modifier, + STATE(5712), 1, + sym__scope_resolution, + STATE(5959), 1, + sym_virtual_specifier, + STATE(6894), 1, + sym_base_class_clause, + ACTIONS(6199), 2, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - ACTIONS(6516), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [148845] = 6, + STATE(2818), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5031), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7638), 2, + sym_decltype, + sym_dependent_type_identifier, + [180668] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3814), 1, - anon_sym_COLON_COLON, - ACTIONS(6701), 1, - anon_sym_LT, - STATE(2751), 1, - sym_template_argument_list, - ACTIONS(4196), 3, - anon_sym_AMP, - anon_sym_const, - anon_sym_COLON, - ACTIONS(3819), 23, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_or, - anon_sym_and, - sym_auto, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1973), 1, anon_sym_decltype, + ACTIONS(4831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4833), 1, + anon_sym___declspec, + ACTIONS(5270), 1, + anon_sym_LBRACE, + ACTIONS(6197), 1, + anon_sym_COLON, + ACTIONS(6288), 1, + anon_sym_COLON_COLON, + ACTIONS(7746), 1, + sym_identifier, + STATE(2945), 1, + sym_template_type, + STATE(3143), 1, + sym__class_declaration, + STATE(3145), 1, + sym_field_declaration_list, + STATE(5033), 1, + sym_ms_declspec_modifier, + STATE(5712), 1, + sym__scope_resolution, + STATE(5959), 1, + sym_virtual_specifier, + STATE(6894), 1, + sym_base_class_clause, + ACTIONS(6199), 2, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [148888] = 18, + STATE(2818), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5031), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7638), 2, + sym_decltype, + sym_dependent_type_identifier, + [180733] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(996), 1, + ACTIONS(1329), 1, anon_sym_template, - ACTIONS(1521), 1, - anon_sym_operator, - ACTIONS(1555), 1, + ACTIONS(1973), 1, anon_sym_decltype, - ACTIONS(1681), 1, - anon_sym_LPAREN2, - ACTIONS(1683), 1, - anon_sym_TILDE, - ACTIONS(4206), 1, - sym_identifier, - ACTIONS(4377), 1, + ACTIONS(4831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4833), 1, + anon_sym___declspec, + ACTIONS(5270), 1, + anon_sym_LBRACE, + ACTIONS(6197), 1, + anon_sym_COLON, + ACTIONS(6288), 1, anon_sym_COLON_COLON, - ACTIONS(5347), 1, - anon_sym_STAR, - ACTIONS(5349), 1, - anon_sym_AMP_AMP, - ACTIONS(5351), 1, - anon_sym_AMP, - ACTIONS(5353), 1, - anon_sym_LBRACK, - STATE(4605), 1, + ACTIONS(7746), 1, + sym_identifier, + STATE(2945), 1, + sym_template_type, + STATE(3144), 1, + sym__class_declaration, + STATE(3145), 1, + sym_field_declaration_list, + STATE(5033), 1, + sym_ms_declspec_modifier, + STATE(5712), 1, sym__scope_resolution, - STATE(5059), 1, - sym__declarator, - STATE(6132), 1, - sym_ms_based_modifier, - STATE(6159), 3, + STATE(5959), 1, + sym_virtual_specifier, + STATE(6894), 1, + sym_base_class_clause, + ACTIONS(6199), 2, + anon_sym_final, + anon_sym_override, + STATE(2818), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5031), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7638), 2, sym_decltype, - sym_template_type, sym_dependent_type_identifier, - STATE(4918), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [148955] = 18, + [180798] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(29), 1, - anon_sym_AMP_AMP, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(996), 1, + ACTIONS(1329), 1, anon_sym_template, - ACTIONS(1521), 1, - anon_sym_operator, - ACTIONS(1555), 1, + ACTIONS(1973), 1, anon_sym_decltype, - ACTIONS(1681), 1, - anon_sym_LPAREN2, - ACTIONS(1683), 1, - anon_sym_TILDE, - ACTIONS(1685), 1, - anon_sym_STAR, - ACTIONS(1687), 1, - anon_sym_AMP, - ACTIONS(4206), 1, - sym_identifier, - ACTIONS(4377), 1, + ACTIONS(4831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4833), 1, + anon_sym___declspec, + ACTIONS(5102), 1, anon_sym_COLON_COLON, - ACTIONS(5353), 1, - anon_sym_LBRACK, - STATE(4605), 1, + ACTIONS(6197), 1, + anon_sym_COLON, + ACTIONS(6458), 1, + anon_sym_LBRACE, + ACTIONS(7740), 1, + sym_identifier, + STATE(3578), 1, + sym_template_type, + STATE(3939), 1, + sym_field_declaration_list, + STATE(3945), 1, + sym__class_declaration, + STATE(5028), 1, + sym_ms_declspec_modifier, + STATE(5718), 1, sym__scope_resolution, - STATE(5074), 1, - sym__declarator, - STATE(6104), 1, - sym_ms_based_modifier, - STATE(6159), 3, + STATE(5985), 1, + sym_virtual_specifier, + STATE(6891), 1, + sym_base_class_clause, + ACTIONS(6199), 2, + anon_sym_final, + anon_sym_override, + STATE(3850), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5026), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7638), 2, sym_decltype, - sym_template_type, sym_dependent_type_identifier, - STATE(4918), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [149022] = 3, + [180863] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(6717), 3, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_const, - ACTIONS(6715), 26, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___attribute__, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(4831), 1, anon_sym_LBRACK_LBRACK, + ACTIONS(4833), 1, + anon_sym___declspec, + ACTIONS(5149), 1, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, + ACTIONS(6197), 1, anon_sym_COLON, - anon_sym_DASH_GT, + ACTIONS(7581), 1, + anon_sym_COLON_COLON, + ACTIONS(7684), 1, + sym_identifier, + STATE(2846), 1, + sym_template_type, + STATE(3352), 1, + sym__class_declaration, + STATE(3353), 1, + sym_field_declaration_list, + STATE(5009), 1, + sym_ms_declspec_modifier, + STATE(5726), 1, + sym__scope_resolution, + STATE(6093), 1, + sym_virtual_specifier, + STATE(6632), 1, + sym_base_class_clause, + ACTIONS(6199), 2, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_noexcept, - anon_sym_throw, - anon_sym_requires, - [149059] = 5, + STATE(2698), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5006), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7638), 2, + sym_decltype, + sym_dependent_type_identifier, + [180928] = 20, ACTIONS(3), 1, sym_comment, - STATE(4033), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6719), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(4082), 7, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(4831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4833), 1, + anon_sym___declspec, + ACTIONS(5102), 1, + anon_sym_COLON_COLON, + ACTIONS(6197), 1, + anon_sym_COLON, + ACTIONS(6458), 1, anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - ACTIONS(4080), 17, - anon_sym_AMP, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, + ACTIONS(7740), 1, sym_identifier, - sym_auto, - anon_sym_decltype, + STATE(3578), 1, + sym_template_type, + STATE(3939), 1, + sym_field_declaration_list, + STATE(3943), 1, + sym__class_declaration, + STATE(5028), 1, + sym_ms_declspec_modifier, + STATE(5718), 1, + sym__scope_resolution, + STATE(5985), 1, + sym_virtual_specifier, + STATE(6891), 1, + sym_base_class_clause, + ACTIONS(6199), 2, anon_sym_final, anon_sym_override, - anon_sym_try, - anon_sym_requires, - [149100] = 18, + STATE(3850), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5026), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7638), 2, + sym_decltype, + sym_dependent_type_identifier, + [180993] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(996), 1, + ACTIONS(1329), 1, anon_sym_template, - ACTIONS(1521), 1, - anon_sym_operator, - ACTIONS(1555), 1, + ACTIONS(1973), 1, anon_sym_decltype, - ACTIONS(1681), 1, - anon_sym_LPAREN2, - ACTIONS(1683), 1, - anon_sym_TILDE, - ACTIONS(5353), 1, - anon_sym_LBRACK, - ACTIONS(5355), 1, - sym_identifier, - ACTIONS(5357), 1, - anon_sym_STAR, - ACTIONS(5359), 1, - anon_sym_AMP_AMP, - ACTIONS(5361), 1, - anon_sym_AMP, - ACTIONS(5363), 1, + ACTIONS(4831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4833), 1, + anon_sym___declspec, + ACTIONS(5102), 1, anon_sym_COLON_COLON, - STATE(4639), 1, + ACTIONS(6197), 1, + anon_sym_COLON, + ACTIONS(6458), 1, + anon_sym_LBRACE, + ACTIONS(7740), 1, + sym_identifier, + STATE(3578), 1, + sym_template_type, + STATE(3939), 1, + sym_field_declaration_list, + STATE(3942), 1, + sym__class_declaration, + STATE(5028), 1, + sym_ms_declspec_modifier, + STATE(5718), 1, sym__scope_resolution, - STATE(4890), 1, - sym__declarator, - STATE(6010), 1, - sym_ms_based_modifier, - STATE(6159), 3, + STATE(5985), 1, + sym_virtual_specifier, + STATE(6891), 1, + sym_base_class_clause, + ACTIONS(6199), 2, + anon_sym_final, + anon_sym_override, + STATE(3850), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5026), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7638), 2, sym_decltype, - sym_template_type, sym_dependent_type_identifier, - STATE(4918), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [149167] = 7, + [181058] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5493), 1, + ACTIONS(45), 1, + anon_sym___based, + ACTIONS(1899), 1, anon_sym_LBRACE, - ACTIONS(6722), 1, - anon_sym_COLON, - STATE(3196), 1, - sym__enum_base_clause, - STATE(3235), 1, - sym_enumerator_list, - ACTIONS(4270), 3, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_const, - ACTIONS(4268), 22, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(1931), 1, + anon_sym_operator, + ACTIONS(6642), 1, + sym_identifier, + ACTIONS(6644), 1, anon_sym_LPAREN2, + ACTIONS(6646), 1, anon_sym_STAR, + ACTIONS(6648), 1, anon_sym_AMP_AMP, + ACTIONS(6650), 1, + anon_sym_AMP, + ACTIONS(7736), 1, + anon_sym_COLON, + ACTIONS(7748), 1, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, + ACTIONS(7750), 1, anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [149212] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(6707), 1, - sym_identifier, - ACTIONS(6709), 1, - anon_sym_LPAREN2, - ACTIONS(6711), 1, - anon_sym_STAR, - STATE(4091), 1, - sym_ms_unaligned_ptr_modifier, - STATE(5037), 1, - sym__type_declarator, - STATE(6360), 1, + STATE(5005), 1, + sym__field_declarator, + STATE(7022), 1, sym_ms_based_modifier, - ACTIONS(2722), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(4056), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4280), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(2720), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(5132), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(2724), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [149271] = 14, + STATE(7445), 1, + sym_bitfield_clause, + STATE(7449), 1, + sym_initializer_list, + STATE(5685), 8, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + sym_reference_field_declarator, + sym_template_method, + sym_operator_name, + [181117] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(6707), 1, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(3663), 1, + anon_sym_COLON_COLON, + ACTIONS(4831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4833), 1, + anon_sym___declspec, + ACTIONS(6195), 1, + anon_sym_LBRACE, + ACTIONS(6197), 1, + anon_sym_COLON, + ACTIONS(7728), 1, sym_identifier, - ACTIONS(6709), 1, - anon_sym_LPAREN2, - ACTIONS(6711), 1, - anon_sym_STAR, - STATE(4091), 1, - sym_ms_unaligned_ptr_modifier, - STATE(5044), 1, - sym__type_declarator, - STATE(6360), 1, - sym_ms_based_modifier, - ACTIONS(2722), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(4036), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4271), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(2720), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(5132), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(2724), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [149330] = 18, + STATE(3578), 1, + sym_template_type, + STATE(3683), 1, + sym__class_declaration, + STATE(3742), 1, + sym_field_declaration_list, + STATE(5092), 1, + sym_ms_declspec_modifier, + STATE(5779), 1, + sym__scope_resolution, + STATE(6057), 1, + sym_virtual_specifier, + STATE(6662), 1, + sym_base_class_clause, + ACTIONS(6199), 2, + anon_sym_final, + anon_sym_override, + STATE(3866), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5022), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7638), 2, + sym_decltype, + sym_dependent_type_identifier, + [181182] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(996), 1, + ACTIONS(1329), 1, anon_sym_template, - ACTIONS(1521), 1, - anon_sym_operator, - ACTIONS(1555), 1, + ACTIONS(1973), 1, anon_sym_decltype, - ACTIONS(1681), 1, - anon_sym_LPAREN2, - ACTIONS(1683), 1, - anon_sym_TILDE, - ACTIONS(5353), 1, - anon_sym_LBRACK, - ACTIONS(5355), 1, + ACTIONS(4831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4833), 1, + anon_sym___declspec, + ACTIONS(6195), 1, + anon_sym_LBRACE, + ACTIONS(6197), 1, + anon_sym_COLON, + ACTIONS(7728), 1, sym_identifier, - ACTIONS(5357), 1, - anon_sym_STAR, - ACTIONS(5359), 1, - anon_sym_AMP_AMP, - ACTIONS(5361), 1, - anon_sym_AMP, - ACTIONS(5363), 1, + ACTIONS(7752), 1, anon_sym_COLON_COLON, - STATE(4639), 1, + STATE(3578), 1, + sym_template_type, + STATE(3683), 1, + sym__class_declaration, + STATE(3742), 1, + sym_field_declaration_list, + STATE(4972), 1, + sym_ms_declspec_modifier, + STATE(5791), 1, sym__scope_resolution, - STATE(4880), 1, - sym__declarator, - STATE(6010), 1, - sym_ms_based_modifier, - STATE(6159), 3, + STATE(6057), 1, + sym_virtual_specifier, + STATE(6662), 1, + sym_base_class_clause, + ACTIONS(6199), 2, + anon_sym_final, + anon_sym_override, + STATE(4773), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5019), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7638), 2, sym_decltype, - sym_template_type, sym_dependent_type_identifier, - STATE(4918), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [149397] = 7, + [181247] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(5493), 1, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(3663), 1, + anon_sym_COLON_COLON, + ACTIONS(4831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4833), 1, + anon_sym___declspec, + ACTIONS(6195), 1, anon_sym_LBRACE, - ACTIONS(6722), 1, + ACTIONS(6197), 1, anon_sym_COLON, - STATE(3202), 1, - sym__enum_base_clause, - STATE(3257), 1, - sym_enumerator_list, - ACTIONS(4278), 3, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_const, - ACTIONS(4276), 22, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, + ACTIONS(7728), 1, + sym_identifier, + STATE(3578), 1, + sym_template_type, + STATE(3742), 1, + sym_field_declaration_list, + STATE(3750), 1, + sym__class_declaration, + STATE(5092), 1, + sym_ms_declspec_modifier, + STATE(5779), 1, + sym__scope_resolution, + STATE(6057), 1, + sym_virtual_specifier, + STATE(6662), 1, + sym_base_class_clause, + ACTIONS(6199), 2, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [149442] = 7, + STATE(3876), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5022), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7638), 2, + sym_decltype, + sym_dependent_type_identifier, + [181312] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(6724), 1, + ACTIONS(45), 1, + anon_sym___based, + ACTIONS(1899), 1, + anon_sym_LBRACE, + ACTIONS(1931), 1, + anon_sym_operator, + ACTIONS(6642), 1, sym_identifier, - ACTIONS(6728), 1, - sym_primitive_type, - STATE(4033), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6726), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(4052), 7, + ACTIONS(6644), 1, anon_sym_LPAREN2, + ACTIONS(6646), 1, anon_sym_STAR, + ACTIONS(6648), 1, anon_sym_AMP_AMP, + ACTIONS(6650), 1, + anon_sym_AMP, + ACTIONS(7736), 1, + anon_sym_COLON, + ACTIONS(7754), 1, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, + ACTIONS(7756), 1, anon_sym_EQ, - ACTIONS(4054), 15, - anon_sym_AMP, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [149487] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(6707), 1, - sym_identifier, - ACTIONS(6709), 1, - anon_sym_LPAREN2, - ACTIONS(6711), 1, - anon_sym_STAR, - STATE(4091), 1, - sym_ms_unaligned_ptr_modifier, - STATE(5037), 1, - sym__type_declarator, - STATE(6360), 1, + STATE(4998), 1, + sym__field_declarator, + STATE(7022), 1, sym_ms_based_modifier, - ACTIONS(2722), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(4024), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4280), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(2720), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(5132), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(2724), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [149546] = 3, + STATE(7497), 1, + sym_initializer_list, + STATE(7500), 1, + sym_bitfield_clause, + STATE(5685), 8, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + sym_reference_field_declarator, + sym_template_method, + sym_operator_name, + [181371] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(6732), 3, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_const, - ACTIONS(6730), 26, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___attribute__, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(4831), 1, anon_sym_LBRACK_LBRACK, + ACTIONS(4833), 1, + anon_sym___declspec, + ACTIONS(6195), 1, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, + ACTIONS(6197), 1, anon_sym_COLON, - anon_sym_DASH_GT, + ACTIONS(6312), 1, + anon_sym_COLON_COLON, + ACTIONS(7728), 1, + sym_identifier, + STATE(3578), 1, + sym_template_type, + STATE(3683), 1, + sym__class_declaration, + STATE(3742), 1, + sym_field_declaration_list, + STATE(5059), 1, + sym_ms_declspec_modifier, + STATE(5765), 1, + sym__scope_resolution, + STATE(6057), 1, + sym_virtual_specifier, + STATE(6662), 1, + sym_base_class_clause, + ACTIONS(6199), 2, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_noexcept, - anon_sym_throw, - anon_sym_requires, - [149583] = 18, + STATE(3862), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5062), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7638), 2, + sym_decltype, + sym_dependent_type_identifier, + [181436] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(996), 1, + ACTIONS(1329), 1, anon_sym_template, - ACTIONS(1521), 1, - anon_sym_operator, - ACTIONS(1555), 1, + ACTIONS(1973), 1, anon_sym_decltype, - ACTIONS(1681), 1, - anon_sym_LPAREN2, - ACTIONS(1683), 1, - anon_sym_TILDE, - ACTIONS(4206), 1, - sym_identifier, - ACTIONS(4377), 1, + ACTIONS(4831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4833), 1, + anon_sym___declspec, + ACTIONS(6195), 1, + anon_sym_LBRACE, + ACTIONS(6197), 1, + anon_sym_COLON, + ACTIONS(6312), 1, anon_sym_COLON_COLON, - ACTIONS(5347), 1, - anon_sym_STAR, - ACTIONS(5349), 1, - anon_sym_AMP_AMP, - ACTIONS(5351), 1, - anon_sym_AMP, - ACTIONS(5353), 1, - anon_sym_LBRACK, - STATE(4605), 1, - sym__scope_resolution, - STATE(5067), 1, - sym__declarator, - STATE(6132), 1, - sym_ms_based_modifier, - STATE(6159), 3, - sym_decltype, + ACTIONS(7728), 1, + sym_identifier, + STATE(3578), 1, sym_template_type, - sym_dependent_type_identifier, - STATE(4918), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [149650] = 18, + STATE(3742), 1, + sym_field_declaration_list, + STATE(3777), 1, + sym__class_declaration, + STATE(5059), 1, + sym_ms_declspec_modifier, + STATE(5765), 1, + sym__scope_resolution, + STATE(6057), 1, + sym_virtual_specifier, + STATE(6662), 1, + sym_base_class_clause, + ACTIONS(6199), 2, + anon_sym_final, + anon_sym_override, + STATE(3862), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5062), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7638), 2, + sym_decltype, + sym_dependent_type_identifier, + [181501] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(996), 1, + ACTIONS(1329), 1, anon_sym_template, - ACTIONS(1521), 1, - anon_sym_operator, - ACTIONS(1555), 1, + ACTIONS(1973), 1, anon_sym_decltype, - ACTIONS(1681), 1, - anon_sym_LPAREN2, - ACTIONS(1683), 1, - anon_sym_TILDE, - ACTIONS(4206), 1, - sym_identifier, - ACTIONS(4377), 1, + ACTIONS(3663), 1, anon_sym_COLON_COLON, - ACTIONS(5347), 1, - anon_sym_STAR, - ACTIONS(5349), 1, - anon_sym_AMP_AMP, - ACTIONS(5351), 1, - anon_sym_AMP, - ACTIONS(5353), 1, - anon_sym_LBRACK, - STATE(4605), 1, + ACTIONS(4831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4833), 1, + anon_sym___declspec, + ACTIONS(6195), 1, + anon_sym_LBRACE, + ACTIONS(6197), 1, + anon_sym_COLON, + ACTIONS(7728), 1, + sym_identifier, + STATE(3578), 1, + sym_template_type, + STATE(3742), 1, + sym_field_declaration_list, + STATE(3777), 1, + sym__class_declaration, + STATE(5092), 1, + sym_ms_declspec_modifier, + STATE(5779), 1, sym__scope_resolution, - STATE(5093), 1, - sym__declarator, - STATE(6132), 1, - sym_ms_based_modifier, - STATE(6159), 3, + STATE(6057), 1, + sym_virtual_specifier, + STATE(6662), 1, + sym_base_class_clause, + ACTIONS(6199), 2, + anon_sym_final, + anon_sym_override, + STATE(3876), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5022), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7638), 2, sym_decltype, - sym_template_type, sym_dependent_type_identifier, - STATE(4918), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [149717] = 18, + [181566] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(29), 1, - anon_sym_AMP_AMP, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(996), 1, + ACTIONS(1329), 1, anon_sym_template, - ACTIONS(1521), 1, - anon_sym_operator, - ACTIONS(1555), 1, + ACTIONS(1973), 1, anon_sym_decltype, - ACTIONS(1681), 1, - anon_sym_LPAREN2, - ACTIONS(1683), 1, - anon_sym_TILDE, - ACTIONS(1685), 1, - anon_sym_STAR, - ACTIONS(1687), 1, - anon_sym_AMP, - ACTIONS(4206), 1, - sym_identifier, - ACTIONS(4377), 1, + ACTIONS(4831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4833), 1, + anon_sym___declspec, + ACTIONS(6195), 1, + anon_sym_LBRACE, + ACTIONS(6197), 1, + anon_sym_COLON, + ACTIONS(6312), 1, anon_sym_COLON_COLON, - ACTIONS(5353), 1, - anon_sym_LBRACK, - STATE(4605), 1, + ACTIONS(7728), 1, + sym_identifier, + STATE(3578), 1, + sym_template_type, + STATE(3742), 1, + sym_field_declaration_list, + STATE(3750), 1, + sym__class_declaration, + STATE(5059), 1, + sym_ms_declspec_modifier, + STATE(5765), 1, sym__scope_resolution, - STATE(5046), 1, - sym__declarator, - STATE(6104), 1, - sym_ms_based_modifier, - STATE(6159), 3, + STATE(6057), 1, + sym_virtual_specifier, + STATE(6662), 1, + sym_base_class_clause, + ACTIONS(6199), 2, + anon_sym_final, + anon_sym_override, + STATE(3862), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5062), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7638), 2, sym_decltype, - sym_template_type, sym_dependent_type_identifier, - STATE(4918), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [149784] = 18, + [181631] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(996), 1, + ACTIONS(1329), 1, anon_sym_template, - ACTIONS(1521), 1, - anon_sym_operator, - ACTIONS(1555), 1, + ACTIONS(1973), 1, anon_sym_decltype, - ACTIONS(1681), 1, - anon_sym_LPAREN2, - ACTIONS(1683), 1, - anon_sym_TILDE, - ACTIONS(5353), 1, - anon_sym_LBRACK, - ACTIONS(5355), 1, - sym_identifier, - ACTIONS(5357), 1, - anon_sym_STAR, - ACTIONS(5359), 1, - anon_sym_AMP_AMP, - ACTIONS(5361), 1, - anon_sym_AMP, - ACTIONS(5363), 1, + ACTIONS(4831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4833), 1, + anon_sym___declspec, + ACTIONS(5045), 1, + anon_sym_LBRACE, + ACTIONS(6197), 1, + anon_sym_COLON, + ACTIONS(7514), 1, anon_sym_COLON_COLON, - STATE(4639), 1, + ACTIONS(7664), 1, + sym_identifier, + STATE(2718), 1, + sym_template_type, + STATE(2803), 1, + sym_field_declaration_list, + STATE(2812), 1, + sym__class_declaration, + STATE(5020), 1, + sym_ms_declspec_modifier, + STATE(5735), 1, sym__scope_resolution, - STATE(4884), 1, - sym__declarator, - STATE(6010), 1, - sym_ms_based_modifier, - STATE(6159), 3, + STATE(6136), 1, + sym_virtual_specifier, + STATE(6784), 1, + sym_base_class_clause, + ACTIONS(6199), 2, + anon_sym_final, + anon_sym_override, + STATE(2396), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5021), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7638), 2, sym_decltype, - sym_template_type, sym_dependent_type_identifier, - STATE(4918), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [149851] = 18, + [181696] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(996), 1, + ACTIONS(1329), 1, anon_sym_template, - ACTIONS(1521), 1, - anon_sym_operator, - ACTIONS(1555), 1, + ACTIONS(1973), 1, anon_sym_decltype, - ACTIONS(1681), 1, - anon_sym_LPAREN2, - ACTIONS(1683), 1, - anon_sym_TILDE, - ACTIONS(5353), 1, - anon_sym_LBRACK, - ACTIONS(5355), 1, - sym_identifier, - ACTIONS(5357), 1, - anon_sym_STAR, - ACTIONS(5359), 1, - anon_sym_AMP_AMP, - ACTIONS(5361), 1, - anon_sym_AMP, - ACTIONS(5363), 1, + ACTIONS(3663), 1, anon_sym_COLON_COLON, - STATE(4639), 1, + ACTIONS(4831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4833), 1, + anon_sym___declspec, + ACTIONS(6195), 1, + anon_sym_LBRACE, + ACTIONS(6197), 1, + anon_sym_COLON, + ACTIONS(7728), 1, + sym_identifier, + STATE(3578), 1, + sym_template_type, + STATE(3683), 1, + sym__class_declaration, + STATE(3742), 1, + sym_field_declaration_list, + STATE(5092), 1, + sym_ms_declspec_modifier, + STATE(5779), 1, sym__scope_resolution, - STATE(4941), 1, - sym__declarator, - STATE(6010), 1, - sym_ms_based_modifier, - STATE(6159), 3, + STATE(6057), 1, + sym_virtual_specifier, + STATE(6662), 1, + sym_base_class_clause, + ACTIONS(6199), 2, + anon_sym_final, + anon_sym_override, + STATE(3868), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5022), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7638), 2, sym_decltype, - sym_template_type, sym_dependent_type_identifier, - STATE(4918), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [149918] = 6, + [181761] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3814), 1, - anon_sym_COLON_COLON, - ACTIONS(6713), 1, - anon_sym_LT, - STATE(2234), 1, - sym_template_argument_list, - ACTIONS(4196), 3, + ACTIONS(5062), 1, + anon_sym_LBRACE, + ACTIONS(5155), 2, anon_sym_AMP, anon_sym_const, - anon_sym_COLON, - ACTIONS(3819), 23, + ACTIONS(5153), 20, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - anon_sym_or, - anon_sym_and, sym_auto, anon_sym_decltype, + anon_sym_GT2, + [181794] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(3663), 1, + anon_sym_COLON_COLON, + ACTIONS(4831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4833), 1, + anon_sym___declspec, + ACTIONS(6195), 1, + anon_sym_LBRACE, + ACTIONS(6197), 1, + anon_sym_COLON, + ACTIONS(7728), 1, + sym_identifier, + STATE(3578), 1, + sym_template_type, + STATE(3683), 1, + sym__class_declaration, + STATE(3742), 1, + sym_field_declaration_list, + STATE(5092), 1, + sym_ms_declspec_modifier, + STATE(5779), 1, + sym__scope_resolution, + STATE(6057), 1, + sym_virtual_specifier, + STATE(6662), 1, + sym_base_class_clause, + ACTIONS(6199), 2, anon_sym_final, anon_sym_override, - anon_sym_requires, - [149961] = 18, + STATE(3876), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5022), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7638), 2, + sym_decltype, + sym_dependent_type_identifier, + [181859] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(996), 1, + ACTIONS(1329), 1, anon_sym_template, - ACTIONS(1521), 1, - anon_sym_operator, - ACTIONS(1555), 1, + ACTIONS(1973), 1, anon_sym_decltype, - ACTIONS(1681), 1, - anon_sym_LPAREN2, - ACTIONS(1683), 1, - anon_sym_TILDE, - ACTIONS(4206), 1, - sym_identifier, - ACTIONS(4377), 1, + ACTIONS(3663), 1, anon_sym_COLON_COLON, - ACTIONS(5347), 1, - anon_sym_STAR, - ACTIONS(5349), 1, - anon_sym_AMP_AMP, - ACTIONS(5351), 1, - anon_sym_AMP, - ACTIONS(5353), 1, - anon_sym_LBRACK, - STATE(4605), 1, + ACTIONS(4831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4833), 1, + anon_sym___declspec, + ACTIONS(6195), 1, + anon_sym_LBRACE, + ACTIONS(6197), 1, + anon_sym_COLON, + ACTIONS(7728), 1, + sym_identifier, + STATE(3578), 1, + sym_template_type, + STATE(3742), 1, + sym_field_declaration_list, + STATE(3777), 1, + sym__class_declaration, + STATE(5092), 1, + sym_ms_declspec_modifier, + STATE(5779), 1, sym__scope_resolution, - STATE(5072), 1, - sym__declarator, - STATE(6132), 1, - sym_ms_based_modifier, - STATE(6159), 3, + STATE(6057), 1, + sym_virtual_specifier, + STATE(6662), 1, + sym_base_class_clause, + ACTIONS(6199), 2, + anon_sym_final, + anon_sym_override, + STATE(3868), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5022), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7638), 2, sym_decltype, - sym_template_type, sym_dependent_type_identifier, - STATE(4918), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [150028] = 3, + [181924] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(5566), 8, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(3663), 1, + anon_sym_COLON_COLON, + ACTIONS(4831), 1, anon_sym_LBRACK_LBRACK, + ACTIONS(4833), 1, + anon_sym___declspec, + ACTIONS(6195), 1, anon_sym_LBRACE, - anon_sym_EQ, + ACTIONS(6197), 1, anon_sym_COLON, - ACTIONS(5564), 20, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, + ACTIONS(7728), 1, sym_identifier, - anon_sym_virtual, - anon_sym_operator, - [150064] = 14, + STATE(3578), 1, + sym_template_type, + STATE(3742), 1, + sym_field_declaration_list, + STATE(3750), 1, + sym__class_declaration, + STATE(5092), 1, + sym_ms_declspec_modifier, + STATE(5779), 1, + sym__scope_resolution, + STATE(6057), 1, + sym_virtual_specifier, + STATE(6662), 1, + sym_base_class_clause, + ACTIONS(6199), 2, + anon_sym_final, + anon_sym_override, + STATE(3868), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5022), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7638), 2, + sym_decltype, + sym_dependent_type_identifier, + [181989] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(5713), 1, - anon_sym_const, - ACTIONS(5864), 1, - anon_sym_LPAREN2, - ACTIONS(5872), 1, - anon_sym_LBRACK, - ACTIONS(6652), 1, - anon_sym_STAR, - ACTIONS(6654), 1, - anon_sym_AMP_AMP, - ACTIONS(6656), 1, - anon_sym_AMP, - STATE(3862), 1, - sym_parameter_list, - STATE(4690), 1, - sym__function_declarator_seq, - STATE(5009), 1, - sym__abstract_declarator, - STATE(4055), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(4304), 5, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(4831), 1, anon_sym_LBRACK_LBRACK, + ACTIONS(4833), 1, + anon_sym___declspec, + ACTIONS(6195), 1, + anon_sym_LBRACE, + ACTIONS(6197), 1, anon_sym_COLON, + ACTIONS(7728), 1, + sym_identifier, + ACTIONS(7752), 1, + anon_sym_COLON_COLON, + STATE(3578), 1, + sym_template_type, + STATE(3742), 1, + sym_field_declaration_list, + STATE(3777), 1, + sym__class_declaration, + STATE(4972), 1, + sym_ms_declspec_modifier, + STATE(5791), 1, + sym__scope_resolution, + STATE(6057), 1, + sym_virtual_specifier, + STATE(6662), 1, + sym_base_class_clause, + ACTIONS(6199), 2, anon_sym_final, anon_sym_override, - anon_sym_requires, - STATE(4686), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(5731), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [150122] = 3, + STATE(4773), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5019), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7638), 2, + sym_decltype, + sym_dependent_type_identifier, + [182054] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(5367), 8, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(4831), 1, anon_sym_LBRACK_LBRACK, + ACTIONS(4833), 1, + anon_sym___declspec, + ACTIONS(6195), 1, anon_sym_LBRACE, - anon_sym_EQ, + ACTIONS(6197), 1, anon_sym_COLON, - ACTIONS(5365), 20, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, + ACTIONS(7728), 1, sym_identifier, - anon_sym_virtual, - anon_sym_operator, - [150158] = 5, + ACTIONS(7752), 1, + anon_sym_COLON_COLON, + STATE(3578), 1, + sym_template_type, + STATE(3742), 1, + sym_field_declaration_list, + STATE(3750), 1, + sym__class_declaration, + STATE(4972), 1, + sym_ms_declspec_modifier, + STATE(5791), 1, + sym__scope_resolution, + STATE(6057), 1, + sym_virtual_specifier, + STATE(6662), 1, + sym_base_class_clause, + ACTIONS(6199), 2, + anon_sym_final, + anon_sym_override, + STATE(4773), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5019), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7638), 2, + sym_decltype, + sym_dependent_type_identifier, + [182119] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(6734), 1, - anon_sym___attribute__, - STATE(4053), 2, - sym_attribute_specifier, - aux_sym__function_declarator_seq_repeat1, - ACTIONS(6660), 3, - anon_sym_AMP, + ACTIONS(6363), 1, + anon_sym_noexcept, + ACTIONS(6365), 1, + anon_sym_throw, + ACTIONS(6409), 1, anon_sym_LBRACK, - anon_sym_const, - ACTIONS(6658), 22, + ACTIONS(6466), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6472), 1, + anon_sym_DASH_GT, + ACTIONS(6474), 1, + anon_sym_requires, + STATE(5314), 1, + sym_trailing_return_type, + STATE(5422), 1, + sym_requires_clause, + ACTIONS(4880), 2, + anon_sym_final, + anon_sym_override, + STATE(5115), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5127), 2, + sym_noexcept, + sym_throw_specifier, + STATE(5301), 2, + sym_virtual_specifier, + aux_sym__function_declarator_seq_repeat2, + ACTIONS(6407), 7, anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, anon_sym_COLON, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, anon_sym_try, - anon_sym_noexcept, - anon_sym_throw, - anon_sym_requires, - [150198] = 14, + [182172] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(5713), 1, - anon_sym_const, - ACTIONS(5864), 1, - anon_sym_LPAREN2, - ACTIONS(5872), 1, - anon_sym_LBRACK, - ACTIONS(6652), 1, - anon_sym_STAR, - ACTIONS(6654), 1, - anon_sym_AMP_AMP, - ACTIONS(6656), 1, - anon_sym_AMP, - STATE(3862), 1, - sym_parameter_list, - STATE(4690), 1, - sym__function_declarator_seq, - STATE(4982), 1, - sym__abstract_declarator, - STATE(4059), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(6500), 5, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(3663), 1, + anon_sym_COLON_COLON, + ACTIONS(4831), 1, anon_sym_LBRACK_LBRACK, + ACTIONS(4833), 1, + anon_sym___declspec, + ACTIONS(6195), 1, + anon_sym_LBRACE, + ACTIONS(6197), 1, anon_sym_COLON, + ACTIONS(7728), 1, + sym_identifier, + STATE(3578), 1, + sym_template_type, + STATE(3683), 1, + sym__class_declaration, + STATE(3742), 1, + sym_field_declaration_list, + STATE(5092), 1, + sym_ms_declspec_modifier, + STATE(5779), 1, + sym__scope_resolution, + STATE(6057), 1, + sym_virtual_specifier, + STATE(6662), 1, + sym_base_class_clause, + ACTIONS(6199), 2, anon_sym_final, anon_sym_override, - anon_sym_requires, - STATE(4686), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(5731), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [150256] = 14, + STATE(3872), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5022), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7638), 2, + sym_decltype, + sym_dependent_type_identifier, + [182237] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(5713), 1, - anon_sym_const, - ACTIONS(5864), 1, - anon_sym_LPAREN2, - ACTIONS(5872), 1, - anon_sym_LBRACK, - ACTIONS(6652), 1, - anon_sym_STAR, - ACTIONS(6654), 1, - anon_sym_AMP_AMP, - ACTIONS(6656), 1, - anon_sym_AMP, - STATE(3862), 1, - sym_parameter_list, - STATE(4690), 1, - sym__function_declarator_seq, - STATE(4991), 1, - sym__abstract_declarator, - STATE(4059), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(5322), 5, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(3663), 1, + anon_sym_COLON_COLON, + ACTIONS(4831), 1, anon_sym_LBRACK_LBRACK, + ACTIONS(4833), 1, + anon_sym___declspec, + ACTIONS(6195), 1, + anon_sym_LBRACE, + ACTIONS(6197), 1, anon_sym_COLON, + ACTIONS(7728), 1, + sym_identifier, + STATE(3578), 1, + sym_template_type, + STATE(3742), 1, + sym_field_declaration_list, + STATE(3777), 1, + sym__class_declaration, + STATE(5092), 1, + sym_ms_declspec_modifier, + STATE(5779), 1, + sym__scope_resolution, + STATE(6057), 1, + sym_virtual_specifier, + STATE(6662), 1, + sym_base_class_clause, + ACTIONS(6199), 2, anon_sym_final, anon_sym_override, - anon_sym_requires, - STATE(4686), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(5731), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [150314] = 7, + STATE(3872), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5022), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7638), 2, + sym_decltype, + sym_dependent_type_identifier, + [182302] = 20, ACTIONS(3), 1, sym_comment, - STATE(4091), 1, - sym_ms_unaligned_ptr_modifier, - ACTIONS(6744), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(4056), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(6741), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(6739), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK, - ACTIONS(6737), 14, - anon_sym_AMP, - anon_sym___based, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - anon_sym_decltype, + ACTIONS(1329), 1, anon_sym_template, - anon_sym_operator, - [150358] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5435), 8, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(3663), 1, + anon_sym_COLON_COLON, + ACTIONS(4831), 1, anon_sym_LBRACK_LBRACK, + ACTIONS(4833), 1, + anon_sym___declspec, + ACTIONS(6195), 1, anon_sym_LBRACE, - anon_sym_EQ, + ACTIONS(6197), 1, anon_sym_COLON, - ACTIONS(5433), 20, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, + ACTIONS(7728), 1, sym_identifier, - anon_sym_virtual, - anon_sym_operator, - [150394] = 14, + STATE(3578), 1, + sym_template_type, + STATE(3742), 1, + sym_field_declaration_list, + STATE(3750), 1, + sym__class_declaration, + STATE(5092), 1, + sym_ms_declspec_modifier, + STATE(5779), 1, + sym__scope_resolution, + STATE(6057), 1, + sym_virtual_specifier, + STATE(6662), 1, + sym_base_class_clause, + ACTIONS(6199), 2, + anon_sym_final, + anon_sym_override, + STATE(3872), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5022), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7638), 2, + sym_decltype, + sym_dependent_type_identifier, + [182367] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5713), 1, - anon_sym_const, - ACTIONS(5864), 1, + ACTIONS(6512), 1, anon_sym_LPAREN2, - ACTIONS(5872), 1, + ACTIONS(6520), 1, anon_sym_LBRACK, - ACTIONS(6652), 1, + ACTIONS(6575), 1, anon_sym_STAR, - ACTIONS(6654), 1, + ACTIONS(6577), 1, anon_sym_AMP_AMP, - ACTIONS(6656), 1, + ACTIONS(6579), 1, anon_sym_AMP, - STATE(3862), 1, + STATE(3839), 1, sym_parameter_list, - STATE(4690), 1, - sym__function_declarator_seq, - STATE(5011), 1, + STATE(5447), 1, sym__abstract_declarator, - STATE(4059), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(6496), 5, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - STATE(4686), 5, + STATE(5464), 1, + sym__function_declarator_seq, + STATE(5367), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(5731), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [150452] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6747), 1, - anon_sym_const, - ACTIONS(4679), 2, - anon_sym_AMP, - anon_sym_LBRACK, - STATE(4059), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(6750), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - ACTIONS(4681), 16, + ACTIONS(6502), 10, anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, - anon_sym_DASH_GT, anon_sym_final, anon_sym_override, anon_sym_try, - anon_sym_noexcept, - anon_sym_throw, anon_sym_requires, - [150494] = 3, + [182414] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3870), 3, - anon_sym_AMP, - anon_sym_const, - anon_sym_COLON, - ACTIONS(3875), 24, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_or, - anon_sym_and, - sym_auto, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1973), 1, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [150529] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3858), 3, - anon_sym_AMP, - anon_sym_const, + ACTIONS(4831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4833), 1, + anon_sym___declspec, + ACTIONS(5045), 1, + anon_sym_LBRACE, + ACTIONS(6197), 1, anon_sym_COLON, - ACTIONS(3860), 24, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(7514), 1, anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_or, - anon_sym_and, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [150564] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1521), 1, - anon_sym_operator, - ACTIONS(6293), 1, - anon_sym_LPAREN2, - ACTIONS(6418), 1, + ACTIONS(7664), 1, sym_identifier, - ACTIONS(6420), 1, - anon_sym_STAR, - ACTIONS(6422), 1, - anon_sym_AMP_AMP, - ACTIONS(6424), 1, - anon_sym_AMP, - STATE(5047), 1, - sym__field_declarator, - STATE(6046), 1, - sym_ms_based_modifier, - STATE(4104), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(2724), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(4964), 8, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - sym_reference_field_declarator, - sym_template_method, - sym_operator_name, - [150619] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4229), 1, - anon_sym_COLON_COLON, - ACTIONS(4227), 3, - anon_sym_AMP, - anon_sym_const, - anon_sym_COLON, - ACTIONS(4225), 23, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_or, - anon_sym_and, - sym_auto, - anon_sym_decltype, + STATE(2718), 1, + sym_template_type, + STATE(2803), 1, + sym_field_declaration_list, + STATE(2813), 1, + sym__class_declaration, + STATE(5020), 1, + sym_ms_declspec_modifier, + STATE(5735), 1, + sym__scope_resolution, + STATE(6136), 1, + sym_virtual_specifier, + STATE(6784), 1, + sym_base_class_clause, + ACTIONS(6199), 2, anon_sym_final, anon_sym_override, - anon_sym_try, - anon_sym_requires, - [150656] = 4, + STATE(2396), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5021), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7638), 2, + sym_decltype, + sym_dependent_type_identifier, + [182479] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(4229), 1, - anon_sym_COLON_COLON, - ACTIONS(4247), 3, - anon_sym_AMP, - anon_sym_const, - anon_sym_COLON, - ACTIONS(4245), 23, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_or, - anon_sym_and, - sym_auto, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1973), 1, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [150693] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4229), 1, + ACTIONS(3663), 1, anon_sym_COLON_COLON, - ACTIONS(4247), 3, - anon_sym_AMP, - anon_sym_const, - anon_sym_COLON, - ACTIONS(4245), 23, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(4831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4833), 1, + anon_sym___declspec, + ACTIONS(6195), 1, anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_or, - anon_sym_and, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [150730] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4253), 3, - anon_sym_AMP, - anon_sym_const, + ACTIONS(6197), 1, anon_sym_COLON, - ACTIONS(4251), 24, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_or, - anon_sym_and, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [150765] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1521), 1, - anon_sym_operator, - ACTIONS(6291), 1, + ACTIONS(7728), 1, sym_identifier, - ACTIONS(6293), 1, - anon_sym_LPAREN2, - ACTIONS(6295), 1, - anon_sym_STAR, - ACTIONS(6297), 1, - anon_sym_AMP_AMP, - ACTIONS(6299), 1, - anon_sym_AMP, - STATE(4741), 1, - sym__field_declarator, - STATE(6059), 1, - sym_ms_based_modifier, - STATE(4104), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(2724), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(4964), 8, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - sym_reference_field_declarator, - sym_template_method, - sym_operator_name, - [150820] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5850), 1, - anon_sym_LBRACE, - ACTIONS(6753), 1, - anon_sym_COLON, - STATE(3448), 1, - sym__enum_base_clause, - STATE(3649), 1, - sym_enumerator_list, - ACTIONS(4278), 3, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_const, - ACTIONS(4276), 20, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, + STATE(3578), 1, + sym_template_type, + STATE(3683), 1, + sym__class_declaration, + STATE(3742), 1, + sym_field_declaration_list, + STATE(5092), 1, + sym_ms_declspec_modifier, + STATE(5779), 1, + sym__scope_resolution, + STATE(6057), 1, + sym_virtual_specifier, + STATE(6662), 1, + sym_base_class_clause, + ACTIONS(6199), 2, anon_sym_final, anon_sym_override, - anon_sym_try, - anon_sym_requires, - [150863] = 7, + STATE(3651), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5022), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7638), 2, + sym_decltype, + sym_dependent_type_identifier, + [182544] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(5850), 1, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(3663), 1, + anon_sym_COLON_COLON, + ACTIONS(4831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4833), 1, + anon_sym___declspec, + ACTIONS(6195), 1, anon_sym_LBRACE, - ACTIONS(6753), 1, + ACTIONS(6197), 1, anon_sym_COLON, - STATE(3479), 1, - sym__enum_base_clause, - STATE(3627), 1, - sym_enumerator_list, - ACTIONS(4270), 3, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_const, - ACTIONS(4268), 20, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, + ACTIONS(7728), 1, + sym_identifier, + STATE(3578), 1, + sym_template_type, + STATE(3742), 1, + sym_field_declaration_list, + STATE(3777), 1, + sym__class_declaration, + STATE(5092), 1, + sym_ms_declspec_modifier, + STATE(5779), 1, + sym__scope_resolution, + STATE(6057), 1, + sym_virtual_specifier, + STATE(6662), 1, + sym_base_class_clause, + ACTIONS(6199), 2, anon_sym_final, anon_sym_override, - anon_sym_try, - anon_sym_requires, - [150906] = 23, + STATE(3651), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5022), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7638), 2, + sym_decltype, + sym_dependent_type_identifier, + [182609] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, + ACTIONS(1329), 1, anon_sym_template, - ACTIONS(1555), 1, + ACTIONS(1973), 1, anon_sym_decltype, - ACTIONS(3916), 1, + ACTIONS(3663), 1, anon_sym_COLON_COLON, - ACTIONS(4214), 1, + ACTIONS(4831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4216), 1, + ACTIONS(4833), 1, anon_sym___declspec, - ACTIONS(5445), 1, + ACTIONS(6195), 1, anon_sym_LBRACE, - ACTIONS(5447), 1, + ACTIONS(6197), 1, anon_sym_COLON, - ACTIONS(6490), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6494), 1, - anon_sym_EQ, - ACTIONS(6755), 1, + ACTIONS(7728), 1, sym_identifier, - STATE(3133), 1, + STATE(3578), 1, sym_template_type, - STATE(3260), 1, - sym__class_declaration, - STATE(3266), 1, + STATE(3742), 1, sym_field_declaration_list, - STATE(4406), 1, + STATE(3750), 1, + sym__class_declaration, + STATE(5092), 1, sym_ms_declspec_modifier, - STATE(5034), 1, + STATE(5779), 1, sym__scope_resolution, - STATE(5348), 1, + STATE(6057), 1, sym_virtual_specifier, - STATE(5948), 1, + STATE(6662), 1, sym_base_class_clause, - ACTIONS(5449), 2, + ACTIONS(6199), 2, anon_sym_final, anon_sym_override, - ACTIONS(6492), 2, - anon_sym_COMMA, - anon_sym_GT2, - STATE(3182), 2, + STATE(3651), 2, sym__class_name, sym_qualified_type_identifier, - STATE(4405), 2, + STATE(5022), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6159), 2, + STATE(7638), 2, sym_decltype, sym_dependent_type_identifier, - [150981] = 3, + [182674] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3866), 3, - anon_sym_AMP, - anon_sym_const, - anon_sym_COLON, - ACTIONS(3868), 24, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(3663), 1, anon_sym_COLON_COLON, + ACTIONS(4831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4833), 1, + anon_sym___declspec, + ACTIONS(6195), 1, anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_or, - anon_sym_and, - sym_auto, - anon_sym_decltype, + ACTIONS(6197), 1, + anon_sym_COLON, + ACTIONS(7728), 1, + sym_identifier, + STATE(3578), 1, + sym_template_type, + STATE(3742), 1, + sym_field_declaration_list, + STATE(3777), 1, + sym__class_declaration, + STATE(5092), 1, + sym_ms_declspec_modifier, + STATE(5779), 1, + sym__scope_resolution, + STATE(6057), 1, + sym_virtual_specifier, + STATE(6662), 1, + sym_base_class_clause, + ACTIONS(6199), 2, anon_sym_final, anon_sym_override, - anon_sym_try, - anon_sym_requires, - [151016] = 3, + STATE(3866), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5022), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7638), 2, + sym_decltype, + sym_dependent_type_identifier, + [182739] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3862), 3, - anon_sym_AMP, - anon_sym_const, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(4831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4833), 1, + anon_sym___declspec, + ACTIONS(4876), 1, + anon_sym_LBRACE, + ACTIONS(6197), 1, anon_sym_COLON, - ACTIONS(3864), 24, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(7478), 1, anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_or, - anon_sym_and, - sym_auto, - anon_sym_decltype, + ACTIONS(7694), 1, + sym_identifier, + STATE(2414), 1, + sym_template_type, + STATE(2742), 1, + sym__class_declaration, + STATE(2745), 1, + sym_field_declaration_list, + STATE(5087), 1, + sym_ms_declspec_modifier, + STATE(5770), 1, + sym__scope_resolution, + STATE(6167), 1, + sym_virtual_specifier, + STATE(6752), 1, + sym_base_class_clause, + ACTIONS(6199), 2, anon_sym_final, anon_sym_override, - anon_sym_try, - anon_sym_requires, - [151051] = 3, + STATE(2306), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5091), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7638), 2, + sym_decltype, + sym_dependent_type_identifier, + [182804] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3902), 3, - anon_sym_AMP, - anon_sym_const, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(4831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4833), 1, + anon_sym___declspec, + ACTIONS(4876), 1, + anon_sym_LBRACE, + ACTIONS(6197), 1, anon_sym_COLON, - ACTIONS(3904), 24, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(7478), 1, anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_or, - anon_sym_and, - sym_auto, - anon_sym_decltype, + ACTIONS(7694), 1, + sym_identifier, + STATE(2414), 1, + sym_template_type, + STATE(2743), 1, + sym__class_declaration, + STATE(2745), 1, + sym_field_declaration_list, + STATE(5087), 1, + sym_ms_declspec_modifier, + STATE(5770), 1, + sym__scope_resolution, + STATE(6167), 1, + sym_virtual_specifier, + STATE(6752), 1, + sym_base_class_clause, + ACTIONS(6199), 2, anon_sym_final, anon_sym_override, - anon_sym_try, - anon_sym_requires, - [151086] = 13, + STATE(2306), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5091), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7638), 2, + sym_decltype, + sym_dependent_type_identifier, + [182869] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1521), 1, - anon_sym_operator, - ACTIONS(6291), 1, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1949), 1, + anon_sym_LBRACK, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(7672), 1, + anon_sym_requires, + ACTIONS(7758), 1, sym_identifier, - ACTIONS(6293), 1, - anon_sym_LPAREN2, - ACTIONS(6295), 1, - anon_sym_STAR, - ACTIONS(6297), 1, - anon_sym_AMP_AMP, - ACTIONS(6299), 1, - anon_sym_AMP, - STATE(4780), 1, - sym__field_declarator, - STATE(6059), 1, - sym_ms_based_modifier, - STATE(4104), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(2724), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(4964), 8, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - sym_reference_field_declarator, - sym_template_method, - sym_operator_name, - [151141] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1521), 1, - anon_sym_operator, - ACTIONS(6293), 1, + ACTIONS(7760), 1, anon_sym_LPAREN2, - ACTIONS(6418), 1, - sym_identifier, - ACTIONS(6420), 1, - anon_sym_STAR, - ACTIONS(6422), 1, - anon_sym_AMP_AMP, - ACTIONS(6424), 1, - anon_sym_AMP, - STATE(5050), 1, - sym__field_declarator, - STATE(6046), 1, - sym_ms_based_modifier, - STATE(4104), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(2724), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(4964), 8, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - sym_reference_field_declarator, - sym_template_method, - sym_operator_name, - [151196] = 3, + ACTIONS(7762), 1, + anon_sym_COLON_COLON, + STATE(2718), 1, + sym_template_type, + STATE(5183), 1, + sym_lambda_capture_specifier, + STATE(5789), 1, + sym__scope_resolution, + ACTIONS(7764), 2, + sym_true, + sym_false, + STATE(7638), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(5427), 8, + sym__class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym__requirement_clause_constraint, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + sym_qualified_type_identifier, + [182921] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3896), 3, - anon_sym_AMP, - anon_sym_const, - anon_sym_COLON, - ACTIONS(3898), 24, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACE, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1949), 1, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_or, - anon_sym_and, - sym_auto, + ACTIONS(1973), 1, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, + ACTIONS(6312), 1, + anon_sym_COLON_COLON, + ACTIONS(7728), 1, + sym_identifier, + ACTIONS(7766), 1, + anon_sym_LPAREN2, + ACTIONS(7770), 1, anon_sym_requires, - [151231] = 3, + STATE(3578), 1, + sym_template_type, + STATE(5191), 1, + sym_lambda_capture_specifier, + STATE(5765), 1, + sym__scope_resolution, + ACTIONS(7768), 2, + sym_true, + sym_false, + STATE(7638), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(5648), 8, + sym__class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym__requirement_clause_constraint, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + sym_qualified_type_identifier, + [182973] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3892), 3, - anon_sym_AMP, - anon_sym_const, - anon_sym_COLON, - ACTIONS(3894), 24, + ACTIONS(7774), 1, anon_sym_LPAREN2, + STATE(5085), 1, + sym_preproc_argument_list, + ACTIONS(7776), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(7772), 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_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACE, + 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, + [183007] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1949), 1, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_or, - anon_sym_and, - sym_auto, + ACTIONS(1973), 1, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, + ACTIONS(7514), 1, + anon_sym_COLON_COLON, + ACTIONS(7664), 1, + sym_identifier, + ACTIONS(7672), 1, anon_sym_requires, - [151266] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1521), 1, - anon_sym_operator, - ACTIONS(6293), 1, + ACTIONS(7760), 1, anon_sym_LPAREN2, - ACTIONS(6418), 1, - sym_identifier, - ACTIONS(6420), 1, - anon_sym_STAR, - ACTIONS(6422), 1, - anon_sym_AMP_AMP, - ACTIONS(6424), 1, - anon_sym_AMP, - STATE(5075), 1, - sym__field_declarator, - STATE(6046), 1, - sym_ms_based_modifier, - STATE(4104), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(2724), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(4964), 8, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - sym_reference_field_declarator, - sym_template_method, - sym_operator_name, - [151321] = 13, + STATE(2718), 1, + sym_template_type, + STATE(5183), 1, + sym_lambda_capture_specifier, + STATE(5735), 1, + sym__scope_resolution, + ACTIONS(7778), 2, + sym_true, + sym_false, + STATE(7638), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(3911), 8, + sym__class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym__requirement_clause_constraint, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + sym_qualified_type_identifier, + [183059] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1521), 1, - anon_sym_operator, - ACTIONS(6291), 1, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1949), 1, + anon_sym_LBRACK, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(7780), 1, sym_identifier, - ACTIONS(6293), 1, + ACTIONS(7782), 1, anon_sym_LPAREN2, - ACTIONS(6295), 1, - anon_sym_STAR, - ACTIONS(6297), 1, - anon_sym_AMP_AMP, - ACTIONS(6299), 1, - anon_sym_AMP, - STATE(4759), 1, - sym__field_declarator, - STATE(6059), 1, - sym_ms_based_modifier, - STATE(4104), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(2724), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(4964), 8, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - sym_reference_field_declarator, - sym_template_method, - sym_operator_name, - [151376] = 3, + ACTIONS(7784), 1, + anon_sym_COLON_COLON, + ACTIONS(7788), 1, + anon_sym_requires, + STATE(2810), 1, + sym_template_type, + STATE(5179), 1, + sym_lambda_capture_specifier, + STATE(5753), 1, + sym__scope_resolution, + ACTIONS(7786), 2, + sym_true, + sym_false, + STATE(7638), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(2184), 8, + sym__class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym__requirement_clause_constraint, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + sym_qualified_type_identifier, + [183111] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3884), 3, - anon_sym_AMP, - anon_sym_const, - anon_sym_COLON, - ACTIONS(3886), 24, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACE, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1949), 1, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_or, - anon_sym_and, - sym_auto, + ACTIONS(1973), 1, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, + ACTIONS(5102), 1, + anon_sym_COLON_COLON, + ACTIONS(7740), 1, + sym_identifier, + ACTIONS(7766), 1, + anon_sym_LPAREN2, + ACTIONS(7770), 1, anon_sym_requires, - [151411] = 3, + STATE(3578), 1, + sym_template_type, + STATE(5191), 1, + sym_lambda_capture_specifier, + STATE(5718), 1, + sym__scope_resolution, + ACTIONS(7790), 2, + sym_true, + sym_false, + STATE(7638), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(5266), 8, + sym__class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym__requirement_clause_constraint, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + sym_qualified_type_identifier, + [183163] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(4247), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(4245), 24, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1949), 1, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_or, - anon_sym_and, - sym_auto, + ACTIONS(1973), 1, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, + ACTIONS(7780), 1, + sym_identifier, + ACTIONS(7782), 1, + anon_sym_LPAREN2, + ACTIONS(7784), 1, + anon_sym_COLON_COLON, + ACTIONS(7788), 1, anon_sym_requires, - [151445] = 9, + STATE(2810), 1, + sym_template_type, + STATE(5179), 1, + sym_lambda_capture_specifier, + STATE(5753), 1, + sym__scope_resolution, + ACTIONS(7792), 2, + sym_true, + sym_false, + STATE(7638), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(2734), 8, + sym__class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym__requirement_clause_constraint, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + sym_qualified_type_identifier, + [183215] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(4133), 1, - anon_sym_COLON, - ACTIONS(6757), 1, - anon_sym_LBRACE, - STATE(4226), 1, - sym_field_declaration_list, - STATE(5222), 1, - sym_virtual_specifier, - STATE(5690), 1, - sym_base_class_clause, - ACTIONS(4135), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(4145), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(4143), 17, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1949), 1, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, + ACTIONS(1973), 1, anon_sym_decltype, - anon_sym_try, + ACTIONS(3663), 1, + anon_sym_COLON_COLON, + ACTIONS(7728), 1, + sym_identifier, + ACTIONS(7782), 1, + anon_sym_LPAREN2, + ACTIONS(7788), 1, anon_sym_requires, - [151491] = 9, + STATE(3578), 1, + sym_template_type, + STATE(5196), 1, + sym_lambda_capture_specifier, + STATE(5779), 1, + sym__scope_resolution, + ACTIONS(7794), 2, + sym_true, + sym_false, + STATE(7638), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(5439), 8, + sym__class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym__requirement_clause_constraint, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + sym_qualified_type_identifier, + [183267] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(4133), 1, - anon_sym_COLON, - ACTIONS(6757), 1, - anon_sym_LBRACE, - STATE(4205), 1, - sym_field_declaration_list, - STATE(5243), 1, - sym_virtual_specifier, - STATE(5699), 1, - sym_base_class_clause, - ACTIONS(4135), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(4160), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(4158), 17, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1949), 1, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, + ACTIONS(1973), 1, anon_sym_decltype, - anon_sym_try, + ACTIONS(6288), 1, + anon_sym_COLON_COLON, + ACTIONS(7722), 1, anon_sym_requires, - [151537] = 6, + ACTIONS(7746), 1, + sym_identifier, + ACTIONS(7796), 1, + anon_sym_LPAREN2, + STATE(2945), 1, + sym_template_type, + STATE(5208), 1, + sym_lambda_capture_specifier, + STATE(5712), 1, + sym__scope_resolution, + ACTIONS(7798), 2, + sym_true, + sym_false, + STATE(7638), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(4036), 8, + sym__class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym__requirement_clause_constraint, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + sym_qualified_type_identifier, + [183319] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(4679), 1, - anon_sym_AMP, - ACTIONS(6759), 1, - anon_sym_const, - STATE(4084), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(6762), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - ACTIONS(4681), 15, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1949), 1, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(6288), 1, + anon_sym_COLON_COLON, + ACTIONS(7722), 1, anon_sym_requires, - [151577] = 5, + ACTIONS(7746), 1, + sym_identifier, + ACTIONS(7796), 1, + anon_sym_LPAREN2, + STATE(2945), 1, + sym_template_type, + STATE(5208), 1, + sym_lambda_capture_specifier, + STATE(5712), 1, + sym__scope_resolution, + ACTIONS(7800), 2, + sym_true, + sym_false, + STATE(7638), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(5581), 8, + sym__class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym__requirement_clause_constraint, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + sym_qualified_type_identifier, + [183371] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(6769), 1, - anon_sym_LBRACK_LBRACK, - STATE(4085), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(6767), 10, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - ACTIONS(6765), 13, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1949), 1, anon_sym_LBRACK, - anon_sym_COLON, - sym_identifier, + ACTIONS(1973), 1, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_template, - anon_sym_try, - anon_sym_public, - anon_sym_private, - anon_sym_protected, + ACTIONS(6312), 1, + anon_sym_COLON_COLON, + ACTIONS(7728), 1, + sym_identifier, + ACTIONS(7766), 1, + anon_sym_LPAREN2, + ACTIONS(7770), 1, anon_sym_requires, - [151615] = 9, + STATE(3578), 1, + sym_template_type, + STATE(5191), 1, + sym_lambda_capture_specifier, + STATE(5765), 1, + sym__scope_resolution, + ACTIONS(7802), 2, + sym_true, + sym_false, + STATE(7638), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(5645), 8, + sym__class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym__requirement_clause_constraint, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + sym_qualified_type_identifier, + [183423] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(4133), 1, - anon_sym_COLON, - ACTIONS(6757), 1, - anon_sym_LBRACE, - STATE(4233), 1, - sym_field_declaration_list, - STATE(5229), 1, - sym_virtual_specifier, - STATE(5696), 1, - sym_base_class_clause, - ACTIONS(4129), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(4135), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(4127), 17, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1949), 1, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, + ACTIONS(1973), 1, anon_sym_decltype, - anon_sym_try, + ACTIONS(6312), 1, + anon_sym_COLON_COLON, + ACTIONS(7728), 1, + sym_identifier, + ACTIONS(7766), 1, + anon_sym_LPAREN2, + ACTIONS(7770), 1, anon_sym_requires, - [151661] = 4, + STATE(3578), 1, + sym_template_type, + STATE(5191), 1, + sym_lambda_capture_specifier, + STATE(5765), 1, + sym__scope_resolution, + ACTIONS(7804), 2, + sym_true, + sym_false, + STATE(7638), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(5259), 8, + sym__class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym__requirement_clause_constraint, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + sym_qualified_type_identifier, + [183475] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(6772), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(6732), 3, - anon_sym_AMP, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1949), 1, anon_sym_LBRACK, - anon_sym_const, - ACTIONS(6730), 21, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(4580), 1, + anon_sym_COLON_COLON, + ACTIONS(7740), 1, + sym_identifier, + ACTIONS(7782), 1, anon_sym_LPAREN2, - anon_sym_AMP_AMP, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_noexcept, - anon_sym_throw, + ACTIONS(7788), 1, anon_sym_requires, - [151697] = 6, + STATE(3578), 1, + sym_template_type, + STATE(5196), 1, + sym_lambda_capture_specifier, + STATE(5733), 1, + sym__scope_resolution, + ACTIONS(7806), 2, + sym_true, + sym_false, + STATE(7638), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(5216), 8, + sym__class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym__requirement_clause_constraint, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + sym_qualified_type_identifier, + [183527] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3814), 1, - anon_sym_COLON_COLON, - ACTIONS(6699), 1, - anon_sym_LT, - STATE(4060), 1, - sym_template_argument_list, - ACTIONS(3793), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(3801), 20, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1949), 1, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, + ACTIONS(1973), 1, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, + ACTIONS(4580), 1, + anon_sym_COLON_COLON, + ACTIONS(7740), 1, + sym_identifier, + ACTIONS(7782), 1, + anon_sym_LPAREN2, + ACTIONS(7788), 1, anon_sym_requires, - [151736] = 7, + STATE(3578), 1, + sym_template_type, + STATE(5196), 1, + sym_lambda_capture_specifier, + STATE(5733), 1, + sym__scope_resolution, + ACTIONS(7786), 2, + sym_true, + sym_false, + STATE(7638), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(2184), 8, + sym__class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym__requirement_clause_constraint, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + sym_qualified_type_identifier, + [183579] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(5252), 1, - anon_sym_LBRACE, - ACTIONS(6775), 1, - anon_sym_COLON, - STATE(2861), 1, - sym__enum_base_clause, - STATE(2929), 1, - sym_enumerator_list, - ACTIONS(4270), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(4268), 19, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1949), 1, anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, + ACTIONS(1973), 1, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, + ACTIONS(6266), 1, + anon_sym_COLON_COLON, + ACTIONS(7730), 1, + sym_identifier, + ACTIONS(7808), 1, + anon_sym_LPAREN2, + ACTIONS(7812), 1, anon_sym_requires, - [151777] = 17, + STATE(4638), 1, + sym_template_type, + STATE(5194), 1, + sym_lambda_capture_specifier, + STATE(5766), 1, + sym__scope_resolution, + ACTIONS(7810), 2, + sym_true, + sym_false, + STATE(7638), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(5526), 8, + sym__class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym__requirement_clause_constraint, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + sym_qualified_type_identifier, + [183631] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, + ACTIONS(1329), 1, anon_sym_template, - ACTIONS(1539), 1, + ACTIONS(1949), 1, anon_sym_LBRACK, - ACTIONS(1555), 1, + ACTIONS(1973), 1, anon_sym_decltype, - ACTIONS(6612), 1, + ACTIONS(6266), 1, anon_sym_COLON_COLON, - ACTIONS(6777), 1, + ACTIONS(7730), 1, sym_identifier, - ACTIONS(6779), 1, + ACTIONS(7808), 1, anon_sym_LPAREN2, - ACTIONS(6781), 1, - anon_sym_LBRACE, - ACTIONS(6785), 1, + ACTIONS(7812), 1, anon_sym_requires, - STATE(2255), 1, + STATE(4638), 1, sym_template_type, - STATE(3183), 1, - sym_requirement_seq, - STATE(4500), 1, + STATE(5194), 1, sym_lambda_capture_specifier, - STATE(4990), 1, + STATE(5766), 1, sym__scope_resolution, - STATE(5937), 1, - sym_requires_parameter_list, - ACTIONS(6783), 2, + ACTIONS(7814), 2, sym_true, sym_false, - STATE(6159), 2, + STATE(7638), 2, sym_decltype, sym_dependent_type_identifier, - STATE(3360), 8, + STATE(5532), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -355048,140 +456540,150 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [151838] = 3, + [183683] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(6789), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1949), 1, anon_sym_LBRACK, - ACTIONS(6787), 19, - anon_sym_AMP, - anon_sym___based, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - anon_sym__unaligned, - anon_sym___unaligned, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, + ACTIONS(1973), 1, anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [151871] = 7, + ACTIONS(7672), 1, + anon_sym_requires, + ACTIONS(7758), 1, + sym_identifier, + ACTIONS(7760), 1, + anon_sym_LPAREN2, + ACTIONS(7762), 1, + anon_sym_COLON_COLON, + STATE(2718), 1, + sym_template_type, + STATE(5183), 1, + sym_lambda_capture_specifier, + STATE(5789), 1, + sym__scope_resolution, + ACTIONS(7816), 2, + sym_true, + sym_false, + STATE(7638), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(5372), 8, + sym__class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym__requirement_clause_constraint, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + sym_qualified_type_identifier, + [183735] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(5252), 1, - anon_sym_LBRACE, - ACTIONS(6775), 1, - anon_sym_COLON, - STATE(2853), 1, - sym__enum_base_clause, - STATE(2876), 1, - sym_enumerator_list, - ACTIONS(4278), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(4276), 19, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1949), 1, anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, + ACTIONS(1973), 1, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, + ACTIONS(4580), 1, + anon_sym_COLON_COLON, + ACTIONS(7740), 1, + sym_identifier, + ACTIONS(7782), 1, + anon_sym_LPAREN2, + ACTIONS(7788), 1, anon_sym_requires, - [151912] = 7, + STATE(3578), 1, + sym_template_type, + STATE(5196), 1, + sym_lambda_capture_specifier, + STATE(5733), 1, + sym__scope_resolution, + ACTIONS(7818), 2, + sym_true, + sym_false, + STATE(7638), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(5203), 8, + sym__class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym__requirement_clause_constraint, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + sym_qualified_type_identifier, + [183787] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(4731), 1, - anon_sym_LBRACE, - ACTIONS(6791), 1, - anon_sym_COLON, - STATE(2436), 1, - sym__enum_base_clause, - STATE(2457), 1, - sym_enumerator_list, - ACTIONS(4278), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(4276), 19, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1949), 1, anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, + ACTIONS(1973), 1, anon_sym_decltype, - anon_sym_final, - anon_sym_override, + ACTIONS(7672), 1, anon_sym_requires, - [151953] = 17, + ACTIONS(7758), 1, + sym_identifier, + ACTIONS(7760), 1, + anon_sym_LPAREN2, + ACTIONS(7762), 1, + anon_sym_COLON_COLON, + STATE(2718), 1, + sym_template_type, + STATE(5183), 1, + sym_lambda_capture_specifier, + STATE(5789), 1, + sym__scope_resolution, + ACTIONS(7820), 2, + sym_true, + sym_false, + STATE(7638), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(3802), 8, + sym__class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym__requirement_clause_constraint, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + sym_qualified_type_identifier, + [183839] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, + ACTIONS(1329), 1, anon_sym_template, - ACTIONS(1539), 1, + ACTIONS(1949), 1, anon_sym_LBRACK, - ACTIONS(1555), 1, + ACTIONS(1973), 1, anon_sym_decltype, - ACTIONS(6626), 1, + ACTIONS(5102), 1, anon_sym_COLON_COLON, - ACTIONS(6793), 1, + ACTIONS(7740), 1, sym_identifier, - ACTIONS(6795), 1, + ACTIONS(7766), 1, anon_sym_LPAREN2, - ACTIONS(6797), 1, - anon_sym_LBRACE, - ACTIONS(6801), 1, + ACTIONS(7770), 1, anon_sym_requires, - STATE(1979), 1, + STATE(3578), 1, sym_template_type, - STATE(2754), 1, - sym_requirement_seq, - STATE(4484), 1, + STATE(5191), 1, sym_lambda_capture_specifier, - STATE(5001), 1, + STATE(5718), 1, sym__scope_resolution, - STATE(5878), 1, - sym_requires_parameter_list, - ACTIONS(6799), 2, + ACTIONS(7804), 2, sym_true, sym_false, - STATE(6159), 2, + STATE(7638), 2, sym_decltype, sym_dependent_type_identifier, - STATE(2752), 8, + STATE(5259), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -355190,76 +456692,74 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [152014] = 7, + [183891] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(4731), 1, - anon_sym_LBRACE, - ACTIONS(6791), 1, - anon_sym_COLON, - STATE(2356), 1, - sym__enum_base_clause, - STATE(2534), 1, - sym_enumerator_list, - ACTIONS(4270), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(4268), 19, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1949), 1, anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, + ACTIONS(1973), 1, anon_sym_decltype, - anon_sym_final, - anon_sym_override, + ACTIONS(6225), 1, + anon_sym_COLON_COLON, + ACTIONS(7672), 1, anon_sym_requires, - [152055] = 17, + ACTIONS(7738), 1, + sym_identifier, + ACTIONS(7760), 1, + anon_sym_LPAREN2, + STATE(2718), 1, + sym_template_type, + STATE(5183), 1, + sym_lambda_capture_specifier, + STATE(5741), 1, + sym__scope_resolution, + ACTIONS(7822), 2, + sym_true, + sym_false, + STATE(7638), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(5767), 8, + sym__class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym__requirement_clause_constraint, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + sym_qualified_type_identifier, + [183943] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, + ACTIONS(1329), 1, anon_sym_template, - ACTIONS(1539), 1, + ACTIONS(1949), 1, anon_sym_LBRACK, - ACTIONS(1555), 1, + ACTIONS(1973), 1, anon_sym_decltype, - ACTIONS(6582), 1, + ACTIONS(6225), 1, anon_sym_COLON_COLON, - ACTIONS(6803), 1, + ACTIONS(7672), 1, + anon_sym_requires, + ACTIONS(7738), 1, sym_identifier, - ACTIONS(6805), 1, + ACTIONS(7760), 1, anon_sym_LPAREN2, - ACTIONS(6807), 1, - anon_sym_LBRACE, - ACTIONS(6811), 1, - anon_sym_requires, - STATE(2032), 1, + STATE(2718), 1, sym_template_type, - STATE(2915), 1, - sym_requirement_seq, - STATE(4464), 1, + STATE(5183), 1, sym_lambda_capture_specifier, - STATE(5025), 1, + STATE(5741), 1, sym__scope_resolution, - STATE(5793), 1, - sym_requires_parameter_list, - ACTIONS(6809), 2, + ACTIONS(7820), 2, sym_true, sym_false, - STATE(6159), 2, + STATE(7638), 2, sym_decltype, sym_dependent_type_identifier, - STATE(2971), 8, + STATE(3802), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -355268,175 +456768,112 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [152116] = 6, + [183995] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3814), 1, - anon_sym_COLON_COLON, - ACTIONS(6713), 1, - anon_sym_LT, - STATE(2234), 1, - sym_template_argument_list, - ACTIONS(3793), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(3801), 20, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1949), 1, anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, + ACTIONS(1973), 1, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [152155] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4681), 1, + ACTIONS(7514), 1, anon_sym_COLON_COLON, - STATE(4098), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(6693), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - ACTIONS(4679), 14, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, + ACTIONS(7664), 1, sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_typename, - anon_sym_template, - [152192] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6813), 1, - anon_sym_LBRACE, - ACTIONS(6815), 1, - anon_sym_COLON, - STATE(4183), 1, - sym__enum_base_clause, - STATE(4218), 1, - sym_enumerator_list, - ACTIONS(4278), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(4276), 19, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, + ACTIONS(7672), 1, anon_sym_requires, - [152233] = 7, + ACTIONS(7760), 1, + anon_sym_LPAREN2, + STATE(2718), 1, + sym_template_type, + STATE(5183), 1, + sym_lambda_capture_specifier, + STATE(5735), 1, + sym__scope_resolution, + ACTIONS(7820), 2, + sym_true, + sym_false, + STATE(7638), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(3802), 8, + sym__class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym__requirement_clause_constraint, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + sym_qualified_type_identifier, + [184047] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(6813), 1, - anon_sym_LBRACE, - ACTIONS(6815), 1, - anon_sym_COLON, - STATE(4188), 1, - sym__enum_base_clause, - STATE(4216), 1, - sym_enumerator_list, - ACTIONS(4270), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(4268), 19, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1949), 1, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, + ACTIONS(1973), 1, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, + ACTIONS(6266), 1, + anon_sym_COLON_COLON, + ACTIONS(7730), 1, + sym_identifier, + ACTIONS(7808), 1, + anon_sym_LPAREN2, + ACTIONS(7812), 1, anon_sym_requires, - [152274] = 17, + STATE(4638), 1, + sym_template_type, + STATE(5194), 1, + sym_lambda_capture_specifier, + STATE(5766), 1, + sym__scope_resolution, + ACTIONS(7824), 2, + sym_true, + sym_false, + STATE(7638), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(5515), 8, + sym__class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym__requirement_clause_constraint, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + sym_qualified_type_identifier, + [184099] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, + ACTIONS(1329), 1, anon_sym_template, - ACTIONS(1539), 1, + ACTIONS(1949), 1, anon_sym_LBRACK, - ACTIONS(1555), 1, + ACTIONS(1973), 1, anon_sym_decltype, - ACTIONS(6546), 1, + ACTIONS(6225), 1, anon_sym_COLON_COLON, - ACTIONS(6817), 1, + ACTIONS(7672), 1, + anon_sym_requires, + ACTIONS(7738), 1, sym_identifier, - ACTIONS(6819), 1, + ACTIONS(7760), 1, anon_sym_LPAREN2, - ACTIONS(6821), 1, - anon_sym_LBRACE, - ACTIONS(6825), 1, - anon_sym_requires, - STATE(2192), 1, + STATE(2718), 1, sym_template_type, - STATE(3044), 1, - sym_requirement_seq, - STATE(4465), 1, + STATE(5183), 1, sym_lambda_capture_specifier, - STATE(5036), 1, + STATE(5741), 1, sym__scope_resolution, - STATE(5988), 1, - sym_requires_parameter_list, - ACTIONS(6823), 2, + ACTIONS(7826), 2, sym_true, sym_false, - STATE(6159), 2, + STATE(7638), 2, sym_decltype, sym_dependent_type_identifier, - STATE(3029), 8, + STATE(5708), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -355445,42 +456882,36 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [152335] = 17, + [184151] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, + ACTIONS(1329), 1, anon_sym_template, - ACTIONS(1539), 1, + ACTIONS(1949), 1, anon_sym_LBRACK, - ACTIONS(1555), 1, + ACTIONS(1973), 1, anon_sym_decltype, - ACTIONS(6524), 1, + ACTIONS(6288), 1, anon_sym_COLON_COLON, - ACTIONS(6827), 1, + ACTIONS(7722), 1, + anon_sym_requires, + ACTIONS(7746), 1, sym_identifier, - ACTIONS(6829), 1, + ACTIONS(7796), 1, anon_sym_LPAREN2, - ACTIONS(6831), 1, - anon_sym_LBRACE, - ACTIONS(6835), 1, - anon_sym_requires, - STATE(1933), 1, + STATE(2945), 1, sym_template_type, - STATE(2560), 1, - sym_requirement_seq, - STATE(4479), 1, + STATE(5208), 1, sym_lambda_capture_specifier, - STATE(5022), 1, + STATE(5712), 1, sym__scope_resolution, - STATE(5931), 1, - sym_requires_parameter_list, - ACTIONS(6833), 2, + ACTIONS(7828), 2, sym_true, sym_false, - STATE(6159), 2, + STATE(7638), 2, sym_decltype, sym_dependent_type_identifier, - STATE(2559), 8, + STATE(5547), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -355489,104 +456920,93 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [152396] = 3, + [184203] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6839), 6, + ACTIONS(7833), 2, anon_sym_LPAREN2, - anon_sym_TILDE, anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK, - ACTIONS(6837), 19, - anon_sym_AMP, + ACTIONS(7836), 3, + sym_primitive_type, + sym_auto, + anon_sym_decltype, + ACTIONS(7830), 17, anon_sym___based, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - anon_sym__unaligned, - anon_sym___unaligned, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [152429] = 5, + [184235] = 5, ACTIONS(3), 1, sym_comment, - STATE(4104), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(4679), 6, + ACTIONS(7838), 1, + anon_sym_LPAREN2, + STATE(3468), 1, + sym_argument_list, + ACTIONS(5155), 2, anon_sym_AMP, - anon_sym___based, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - ACTIONS(6759), 8, anon_sym_const, + ACTIONS(5153), 18, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LBRACK, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - ACTIONS(4681), 9, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK, + sym_auto, + anon_sym_decltype, anon_sym_GT2, - [152466] = 17, + [184269] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, + ACTIONS(1329), 1, anon_sym_template, - ACTIONS(1539), 1, + ACTIONS(1949), 1, anon_sym_LBRACK, - ACTIONS(1555), 1, + ACTIONS(1973), 1, anon_sym_decltype, - ACTIONS(6568), 1, + ACTIONS(7456), 1, anon_sym_COLON_COLON, - ACTIONS(6841), 1, + ACTIONS(7674), 1, sym_identifier, - ACTIONS(6843), 1, - anon_sym_LPAREN2, - ACTIONS(6845), 1, - anon_sym_LBRACE, - ACTIONS(6849), 1, + ACTIONS(7682), 1, anon_sym_requires, - STATE(2795), 1, + ACTIONS(7841), 1, + anon_sym_LPAREN2, + STATE(2739), 1, sym_template_type, - STATE(3434), 1, - sym_requirement_seq, - STATE(4501), 1, + STATE(5162), 1, sym_lambda_capture_specifier, - STATE(5020), 1, + STATE(5797), 1, sym__scope_resolution, - STATE(5838), 1, - sym_requires_parameter_list, - ACTIONS(6847), 2, + ACTIONS(7843), 2, sym_true, sym_false, - STATE(6159), 2, + STATE(7638), 2, sym_decltype, sym_dependent_type_identifier, - STATE(3766), 8, + STATE(3549), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -355595,4472 +457015,5151 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [152527] = 6, + [184321] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3814), 1, - anon_sym_COLON_COLON, - ACTIONS(6701), 1, - anon_sym_LT, - STATE(2751), 1, - sym_template_argument_list, - ACTIONS(3793), 2, + ACTIONS(4922), 1, anon_sym_AMP, + ACTIONS(7845), 1, anon_sym_const, - ACTIONS(3801), 19, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + STATE(4937), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(4924), 8, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(7848), 10, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [152565] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4214), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5663), 1, - anon_sym_DASH_GT, - ACTIONS(5665), 1, - anon_sym_noexcept, - ACTIONS(5667), 1, - anon_sym_throw, - ACTIONS(5669), 1, - anon_sym_requires, - ACTIONS(5675), 1, - anon_sym_LBRACK, - STATE(4550), 1, - sym_trailing_return_type, - STATE(4716), 1, - sym_requires_clause, - ACTIONS(4135), 2, - anon_sym_final, - anon_sym_override, - STATE(4335), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(4347), 2, - sym_noexcept, - sym_throw_specifier, - STATE(4578), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat2, - ACTIONS(5673), 8, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - anon_sym_try, - [152619] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4214), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5663), 1, - anon_sym_DASH_GT, - ACTIONS(5665), 1, - anon_sym_noexcept, - ACTIONS(5667), 1, - anon_sym_throw, - ACTIONS(5669), 1, - anon_sym_requires, - ACTIONS(5952), 1, - anon_sym_LBRACK, - STATE(4571), 1, - sym_trailing_return_type, - STATE(4723), 1, - sym_requires_clause, - ACTIONS(4135), 2, - anon_sym_final, - anon_sym_override, - STATE(4323), 2, - sym_noexcept, - sym_throw_specifier, - STATE(4325), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(4538), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat2, - ACTIONS(5950), 8, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - anon_sym_try, - [152673] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5864), 1, - anon_sym_LPAREN2, - ACTIONS(5866), 1, - anon_sym_STAR, - ACTIONS(5868), 1, - anon_sym_AMP_AMP, - ACTIONS(5870), 1, - anon_sym_AMP, - ACTIONS(5872), 1, - anon_sym_LBRACK, - STATE(3300), 1, - sym_parameter_list, - STATE(4613), 1, - sym__abstract_declarator, - STATE(4690), 1, - sym__function_declarator_seq, - STATE(4686), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(5550), 11, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [152721] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4214), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5663), 1, - anon_sym_DASH_GT, - ACTIONS(5665), 1, - anon_sym_noexcept, - ACTIONS(5667), 1, - anon_sym_throw, - ACTIONS(5669), 1, - anon_sym_requires, - ACTIONS(6853), 1, - anon_sym_LBRACK, - STATE(4529), 1, - sym_trailing_return_type, - STATE(4659), 1, - sym_requires_clause, - ACTIONS(4135), 2, - anon_sym_final, - anon_sym_override, - STATE(4313), 2, - sym_noexcept, - sym_throw_specifier, - STATE(4317), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(4533), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat2, - ACTIONS(6851), 8, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - anon_sym_try, - [152775] = 20, + [184357] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, + ACTIONS(1329), 1, anon_sym_template, - ACTIONS(1555), 1, + ACTIONS(1949), 1, + anon_sym_LBRACK, + ACTIONS(1973), 1, anon_sym_decltype, - ACTIONS(2928), 1, + ACTIONS(5102), 1, anon_sym_COLON_COLON, - ACTIONS(4214), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(4216), 1, - anon_sym___declspec, - ACTIONS(5445), 1, - anon_sym_LBRACE, - ACTIONS(5447), 1, - anon_sym_COLON, - ACTIONS(6855), 1, + ACTIONS(7740), 1, sym_identifier, - STATE(3133), 1, + ACTIONS(7766), 1, + anon_sym_LPAREN2, + ACTIONS(7770), 1, + anon_sym_requires, + STATE(3578), 1, sym_template_type, - STATE(3260), 1, - sym__class_declaration, - STATE(3266), 1, - sym_field_declaration_list, - STATE(4370), 1, - sym_ms_declspec_modifier, - STATE(5006), 1, + STATE(5191), 1, + sym_lambda_capture_specifier, + STATE(5718), 1, sym__scope_resolution, - STATE(5348), 1, - sym_virtual_specifier, - STATE(5948), 1, - sym_base_class_clause, - ACTIONS(5449), 2, - anon_sym_final, - anon_sym_override, - STATE(3435), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(4350), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6159), 2, + ACTIONS(7851), 2, + sym_true, + sym_false, + STATE(7638), 2, sym_decltype, sym_dependent_type_identifier, - [152840] = 20, + STATE(5267), 8, + sym__class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym__requirement_clause_constraint, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + sym_qualified_type_identifier, + [184409] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, + ACTIONS(1329), 1, anon_sym_template, - ACTIONS(1555), 1, + ACTIONS(1949), 1, + anon_sym_LBRACK, + ACTIONS(1973), 1, anon_sym_decltype, - ACTIONS(2928), 1, + ACTIONS(7534), 1, anon_sym_COLON_COLON, - ACTIONS(4214), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(4216), 1, - anon_sym___declspec, - ACTIONS(5445), 1, - anon_sym_LBRACE, - ACTIONS(5447), 1, - anon_sym_COLON, - ACTIONS(6855), 1, + ACTIONS(7704), 1, sym_identifier, - STATE(3133), 1, + ACTIONS(7712), 1, + anon_sym_requires, + ACTIONS(7853), 1, + anon_sym_LPAREN2, + STATE(2511), 1, sym_template_type, - STATE(3250), 1, - sym__class_declaration, - STATE(3266), 1, - sym_field_declaration_list, - STATE(4370), 1, - sym_ms_declspec_modifier, - STATE(5006), 1, + STATE(5187), 1, + sym_lambda_capture_specifier, + STATE(5713), 1, sym__scope_resolution, - STATE(5348), 1, - sym_virtual_specifier, - STATE(5948), 1, - sym_base_class_clause, - ACTIONS(5449), 2, - anon_sym_final, - anon_sym_override, - STATE(3415), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(4350), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6159), 2, + ACTIONS(7855), 2, + sym_true, + sym_false, + STATE(7638), 2, sym_decltype, sym_dependent_type_identifier, - [152905] = 20, + STATE(3342), 8, + sym__class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym__requirement_clause_constraint, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + sym_qualified_type_identifier, + [184461] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, + ACTIONS(1329), 1, anon_sym_template, - ACTIONS(1555), 1, + ACTIONS(1949), 1, + anon_sym_LBRACK, + ACTIONS(1973), 1, anon_sym_decltype, - ACTIONS(3916), 1, + ACTIONS(7581), 1, anon_sym_COLON_COLON, - ACTIONS(4214), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(4216), 1, - anon_sym___declspec, - ACTIONS(5445), 1, - anon_sym_LBRACE, - ACTIONS(5447), 1, - anon_sym_COLON, - ACTIONS(6857), 1, + ACTIONS(7684), 1, sym_identifier, - STATE(3133), 1, + ACTIONS(7692), 1, + anon_sym_requires, + ACTIONS(7857), 1, + anon_sym_LPAREN2, + STATE(2846), 1, sym_template_type, - STATE(3250), 1, - sym__class_declaration, - STATE(3266), 1, - sym_field_declaration_list, - STATE(4406), 1, - sym_ms_declspec_modifier, - STATE(5034), 1, + STATE(5204), 1, + sym_lambda_capture_specifier, + STATE(5726), 1, sym__scope_resolution, - STATE(5348), 1, - sym_virtual_specifier, - STATE(5948), 1, - sym_base_class_clause, - ACTIONS(5449), 2, - anon_sym_final, - anon_sym_override, - STATE(3182), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(4405), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6159), 2, + ACTIONS(7859), 2, + sym_true, + sym_false, + STATE(7638), 2, sym_decltype, sym_dependent_type_identifier, - [152970] = 20, + STATE(3623), 8, + sym__class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym__requirement_clause_constraint, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + sym_qualified_type_identifier, + [184513] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, + ACTIONS(1329), 1, anon_sym_template, - ACTIONS(1555), 1, + ACTIONS(1949), 1, + anon_sym_LBRACK, + ACTIONS(1973), 1, anon_sym_decltype, - ACTIONS(3916), 1, + ACTIONS(7534), 1, anon_sym_COLON_COLON, - ACTIONS(4214), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(4216), 1, - anon_sym___declspec, - ACTIONS(5445), 1, - anon_sym_LBRACE, - ACTIONS(5447), 1, - anon_sym_COLON, - ACTIONS(6857), 1, + ACTIONS(7704), 1, sym_identifier, - STATE(3133), 1, + ACTIONS(7712), 1, + anon_sym_requires, + ACTIONS(7853), 1, + anon_sym_LPAREN2, + STATE(2511), 1, sym_template_type, - STATE(3260), 1, - sym__class_declaration, - STATE(3266), 1, - sym_field_declaration_list, - STATE(4406), 1, - sym_ms_declspec_modifier, - STATE(5034), 1, + STATE(5187), 1, + sym_lambda_capture_specifier, + STATE(5713), 1, sym__scope_resolution, - STATE(5348), 1, - sym_virtual_specifier, - STATE(5948), 1, - sym_base_class_clause, - ACTIONS(5449), 2, - anon_sym_final, - anon_sym_override, - STATE(3182), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(4405), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6159), 2, + ACTIONS(7861), 2, + sym_true, + sym_false, + STATE(7638), 2, sym_decltype, sym_dependent_type_identifier, - [153035] = 20, + STATE(3338), 8, + sym__class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym__requirement_clause_constraint, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + sym_qualified_type_identifier, + [184565] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, + ACTIONS(1329), 1, anon_sym_template, - ACTIONS(1555), 1, + ACTIONS(1949), 1, + anon_sym_LBRACK, + ACTIONS(1973), 1, anon_sym_decltype, - ACTIONS(2928), 1, + ACTIONS(7581), 1, anon_sym_COLON_COLON, - ACTIONS(4214), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(4216), 1, - anon_sym___declspec, - ACTIONS(5445), 1, - anon_sym_LBRACE, - ACTIONS(5447), 1, - anon_sym_COLON, - ACTIONS(6855), 1, + ACTIONS(7684), 1, sym_identifier, - STATE(3133), 1, + ACTIONS(7692), 1, + anon_sym_requires, + ACTIONS(7857), 1, + anon_sym_LPAREN2, + STATE(2846), 1, sym_template_type, - STATE(3242), 1, - sym__class_declaration, - STATE(3266), 1, - sym_field_declaration_list, - STATE(4370), 1, - sym_ms_declspec_modifier, - STATE(5006), 1, + STATE(5204), 1, + sym_lambda_capture_specifier, + STATE(5726), 1, sym__scope_resolution, - STATE(5348), 1, - sym_virtual_specifier, - STATE(5948), 1, - sym_base_class_clause, - ACTIONS(5449), 2, - anon_sym_final, - anon_sym_override, - STATE(3440), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(4350), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6159), 2, + ACTIONS(7863), 2, + sym_true, + sym_false, + STATE(7638), 2, sym_decltype, sym_dependent_type_identifier, - [153100] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4229), 1, - anon_sym_COLON_COLON, - ACTIONS(4324), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(4322), 20, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [153133] = 20, + STATE(3620), 8, + sym__class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym__requirement_clause_constraint, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + sym_qualified_type_identifier, + [184617] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, + ACTIONS(1329), 1, anon_sym_template, - ACTIONS(1555), 1, + ACTIONS(1949), 1, + anon_sym_LBRACK, + ACTIONS(1973), 1, anon_sym_decltype, - ACTIONS(2928), 1, + ACTIONS(7456), 1, anon_sym_COLON_COLON, - ACTIONS(4214), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(4216), 1, - anon_sym___declspec, - ACTIONS(5445), 1, - anon_sym_LBRACE, - ACTIONS(5447), 1, - anon_sym_COLON, - ACTIONS(6855), 1, + ACTIONS(7674), 1, sym_identifier, - STATE(3133), 1, + ACTIONS(7682), 1, + anon_sym_requires, + ACTIONS(7841), 1, + anon_sym_LPAREN2, + STATE(2739), 1, sym_template_type, - STATE(3260), 1, - sym__class_declaration, - STATE(3266), 1, - sym_field_declaration_list, - STATE(4370), 1, - sym_ms_declspec_modifier, - STATE(5006), 1, + STATE(5162), 1, + sym_lambda_capture_specifier, + STATE(5797), 1, sym__scope_resolution, - STATE(5348), 1, - sym_virtual_specifier, - STATE(5948), 1, - sym_base_class_clause, - ACTIONS(5449), 2, - anon_sym_final, - anon_sym_override, - STATE(3410), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(4350), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6159), 2, + ACTIONS(7865), 2, + sym_true, + sym_false, + STATE(7638), 2, sym_decltype, sym_dependent_type_identifier, - [153198] = 20, + STATE(3523), 8, + sym__class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym__requirement_clause_constraint, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + sym_qualified_type_identifier, + [184669] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, + ACTIONS(1329), 1, anon_sym_template, - ACTIONS(1555), 1, + ACTIONS(1949), 1, + anon_sym_LBRACK, + ACTIONS(1973), 1, anon_sym_decltype, - ACTIONS(2928), 1, + ACTIONS(7478), 1, anon_sym_COLON_COLON, - ACTIONS(4214), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(4216), 1, - anon_sym___declspec, - ACTIONS(5445), 1, - anon_sym_LBRACE, - ACTIONS(5447), 1, - anon_sym_COLON, - ACTIONS(6855), 1, + ACTIONS(7694), 1, sym_identifier, - STATE(3133), 1, + ACTIONS(7702), 1, + anon_sym_requires, + ACTIONS(7867), 1, + anon_sym_LPAREN2, + STATE(2414), 1, sym_template_type, - STATE(3250), 1, - sym__class_declaration, - STATE(3266), 1, - sym_field_declaration_list, - STATE(4370), 1, - sym_ms_declspec_modifier, - STATE(5006), 1, + STATE(5188), 1, + sym_lambda_capture_specifier, + STATE(5770), 1, sym__scope_resolution, - STATE(5348), 1, - sym_virtual_specifier, - STATE(5948), 1, - sym_base_class_clause, - ACTIONS(5449), 2, - anon_sym_final, - anon_sym_override, - STATE(3410), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(4350), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6159), 2, + ACTIONS(7869), 2, + sym_true, + sym_false, + STATE(7638), 2, sym_decltype, sym_dependent_type_identifier, - [153263] = 20, + STATE(3012), 8, + sym__class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym__requirement_clause_constraint, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + sym_qualified_type_identifier, + [184721] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, + ACTIONS(1329), 1, anon_sym_template, - ACTIONS(1555), 1, + ACTIONS(1949), 1, + anon_sym_LBRACK, + ACTIONS(1973), 1, anon_sym_decltype, - ACTIONS(2928), 1, + ACTIONS(7478), 1, anon_sym_COLON_COLON, - ACTIONS(4214), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(4216), 1, - anon_sym___declspec, - ACTIONS(5445), 1, - anon_sym_LBRACE, - ACTIONS(5447), 1, - anon_sym_COLON, - ACTIONS(6855), 1, + ACTIONS(7694), 1, sym_identifier, - STATE(3133), 1, + ACTIONS(7702), 1, + anon_sym_requires, + ACTIONS(7867), 1, + anon_sym_LPAREN2, + STATE(2414), 1, sym_template_type, - STATE(3242), 1, - sym__class_declaration, - STATE(3266), 1, - sym_field_declaration_list, - STATE(4370), 1, - sym_ms_declspec_modifier, - STATE(5006), 1, + STATE(5188), 1, + sym_lambda_capture_specifier, + STATE(5770), 1, sym__scope_resolution, - STATE(5348), 1, - sym_virtual_specifier, - STATE(5948), 1, - sym_base_class_clause, - ACTIONS(5449), 2, - anon_sym_final, - anon_sym_override, - STATE(3410), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(4350), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6159), 2, + ACTIONS(7871), 2, + sym_true, + sym_false, + STATE(7638), 2, sym_decltype, sym_dependent_type_identifier, - [153328] = 20, + STATE(3010), 8, + sym__class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym__requirement_clause_constraint, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + sym_qualified_type_identifier, + [184773] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, + ACTIONS(1329), 1, anon_sym_template, - ACTIONS(1555), 1, + ACTIONS(1949), 1, + anon_sym_LBRACK, + ACTIONS(1973), 1, anon_sym_decltype, - ACTIONS(2928), 1, + ACTIONS(7567), 1, anon_sym_COLON_COLON, - ACTIONS(4214), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(4216), 1, - anon_sym___declspec, - ACTIONS(5445), 1, - anon_sym_LBRACE, - ACTIONS(5447), 1, - anon_sym_COLON, - ACTIONS(6855), 1, + ACTIONS(7714), 1, sym_identifier, - STATE(3133), 1, + ACTIONS(7722), 1, + anon_sym_requires, + ACTIONS(7796), 1, + anon_sym_LPAREN2, + STATE(2945), 1, sym_template_type, - STATE(3250), 1, - sym__class_declaration, - STATE(3266), 1, - sym_field_declaration_list, - STATE(4370), 1, - sym_ms_declspec_modifier, - STATE(5006), 1, + STATE(5208), 1, + sym_lambda_capture_specifier, + STATE(5737), 1, sym__scope_resolution, - STATE(5348), 1, - sym_virtual_specifier, - STATE(5948), 1, - sym_base_class_clause, - ACTIONS(5449), 2, - anon_sym_final, - anon_sym_override, - STATE(3440), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(4350), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6159), 2, + ACTIONS(7873), 2, + sym_true, + sym_false, + STATE(7638), 2, sym_decltype, sym_dependent_type_identifier, - [153393] = 20, + STATE(4463), 8, + sym__class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym__requirement_clause_constraint, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + sym_qualified_type_identifier, + [184825] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, + ACTIONS(1329), 1, anon_sym_template, - ACTIONS(1555), 1, + ACTIONS(1949), 1, + anon_sym_LBRACK, + ACTIONS(1973), 1, anon_sym_decltype, - ACTIONS(4214), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(4216), 1, - anon_sym___declspec, - ACTIONS(4830), 1, - anon_sym_LBRACE, - ACTIONS(5447), 1, - anon_sym_COLON, - ACTIONS(5570), 1, - anon_sym_COLON_COLON, - ACTIONS(6859), 1, + ACTIONS(7780), 1, sym_identifier, - STATE(2795), 1, + ACTIONS(7782), 1, + anon_sym_LPAREN2, + ACTIONS(7784), 1, + anon_sym_COLON_COLON, + ACTIONS(7788), 1, + anon_sym_requires, + STATE(2810), 1, sym_template_type, - STATE(2976), 1, - sym__class_declaration, - STATE(2990), 1, - sym_field_declaration_list, - STATE(4336), 1, - sym_ms_declspec_modifier, - STATE(4989), 1, + STATE(5179), 1, + sym_lambda_capture_specifier, + STATE(5753), 1, sym__scope_resolution, - STATE(5218), 1, - sym_virtual_specifier, - STATE(5768), 1, - sym_base_class_clause, - ACTIONS(5449), 2, - anon_sym_final, - anon_sym_override, - STATE(2526), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(4334), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6159), 2, + ACTIONS(7875), 2, + sym_true, + sym_false, + STATE(7638), 2, sym_decltype, sym_dependent_type_identifier, - [153458] = 20, + STATE(2766), 8, + sym__class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym__requirement_clause_constraint, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + sym_qualified_type_identifier, + [184877] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, + ACTIONS(1329), 1, anon_sym_template, - ACTIONS(1555), 1, + ACTIONS(1949), 1, + anon_sym_LBRACK, + ACTIONS(1973), 1, anon_sym_decltype, - ACTIONS(4214), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(4216), 1, - anon_sym___declspec, - ACTIONS(4830), 1, - anon_sym_LBRACE, - ACTIONS(5447), 1, - anon_sym_COLON, - ACTIONS(5570), 1, + ACTIONS(7567), 1, anon_sym_COLON_COLON, - ACTIONS(6859), 1, + ACTIONS(7714), 1, sym_identifier, - STATE(2795), 1, + ACTIONS(7722), 1, + anon_sym_requires, + ACTIONS(7796), 1, + anon_sym_LPAREN2, + STATE(2945), 1, sym_template_type, - STATE(2977), 1, - sym__class_declaration, - STATE(2990), 1, - sym_field_declaration_list, - STATE(4336), 1, - sym_ms_declspec_modifier, - STATE(4989), 1, + STATE(5208), 1, + sym_lambda_capture_specifier, + STATE(5737), 1, sym__scope_resolution, - STATE(5218), 1, - sym_virtual_specifier, - STATE(5768), 1, - sym_base_class_clause, - ACTIONS(5449), 2, - anon_sym_final, - anon_sym_override, - STATE(2526), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(4334), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6159), 2, + ACTIONS(7798), 2, + sym_true, + sym_false, + STATE(7638), 2, sym_decltype, sym_dependent_type_identifier, - [153523] = 20, + STATE(4036), 8, + sym__class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym__requirement_clause_constraint, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + sym_qualified_type_identifier, + [184929] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, + ACTIONS(1329), 1, anon_sym_template, - ACTIONS(1555), 1, + ACTIONS(1949), 1, + anon_sym_LBRACK, + ACTIONS(1973), 1, anon_sym_decltype, - ACTIONS(4214), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(4216), 1, - anon_sym___declspec, - ACTIONS(4830), 1, - anon_sym_LBRACE, - ACTIONS(5447), 1, - anon_sym_COLON, - ACTIONS(5570), 1, + ACTIONS(3663), 1, anon_sym_COLON_COLON, - ACTIONS(6859), 1, + ACTIONS(7728), 1, sym_identifier, - STATE(2795), 1, + ACTIONS(7782), 1, + anon_sym_LPAREN2, + ACTIONS(7788), 1, + anon_sym_requires, + STATE(3578), 1, sym_template_type, - STATE(2989), 1, - sym__class_declaration, - STATE(2990), 1, - sym_field_declaration_list, - STATE(4336), 1, - sym_ms_declspec_modifier, - STATE(4989), 1, + STATE(5196), 1, + sym_lambda_capture_specifier, + STATE(5779), 1, sym__scope_resolution, - STATE(5218), 1, - sym_virtual_specifier, - STATE(5768), 1, - sym_base_class_clause, - ACTIONS(5449), 2, - anon_sym_final, - anon_sym_override, - STATE(2526), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(4334), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6159), 2, + ACTIONS(7786), 2, + sym_true, + sym_false, + STATE(7638), 2, sym_decltype, sym_dependent_type_identifier, - [153588] = 20, + STATE(2184), 8, + sym__class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym__requirement_clause_constraint, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + sym_qualified_type_identifier, + [184981] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, + ACTIONS(1329), 1, anon_sym_template, - ACTIONS(1555), 1, + ACTIONS(1949), 1, + anon_sym_LBRACK, + ACTIONS(1973), 1, anon_sym_decltype, - ACTIONS(4214), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(4216), 1, - anon_sym___declspec, - ACTIONS(5447), 1, - anon_sym_COLON, - ACTIONS(5598), 1, + ACTIONS(3663), 1, anon_sym_COLON_COLON, - ACTIONS(5721), 1, - anon_sym_LBRACE, - ACTIONS(6855), 1, + ACTIONS(7728), 1, sym_identifier, - STATE(3133), 1, - sym_template_type, + ACTIONS(7782), 1, + anon_sym_LPAREN2, + ACTIONS(7788), 1, + anon_sym_requires, STATE(3578), 1, - sym_field_declaration_list, - STATE(3588), 1, - sym__class_declaration, - STATE(4354), 1, - sym_ms_declspec_modifier, - STATE(5035), 1, + sym_template_type, + STATE(5196), 1, + sym_lambda_capture_specifier, + STATE(5779), 1, sym__scope_resolution, - STATE(5282), 1, - sym_virtual_specifier, - STATE(5841), 1, - sym_base_class_clause, - ACTIONS(5449), 2, - anon_sym_final, - anon_sym_override, - STATE(3345), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(4368), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6159), 2, + ACTIONS(7877), 2, + sym_true, + sym_false, + STATE(7638), 2, sym_decltype, sym_dependent_type_identifier, - [153653] = 20, + STATE(5455), 8, + sym__class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym__requirement_clause_constraint, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + sym_qualified_type_identifier, + [185033] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(2928), 1, - anon_sym_COLON_COLON, - ACTIONS(4214), 1, + ACTIONS(4831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4216), 1, - anon_sym___declspec, - ACTIONS(5445), 1, + ACTIONS(6363), 1, + anon_sym_noexcept, + ACTIONS(6365), 1, + anon_sym_throw, + ACTIONS(6526), 1, + anon_sym_DASH_GT, + ACTIONS(6530), 1, + anon_sym_requires, + ACTIONS(6544), 1, + anon_sym_LBRACK, + STATE(5365), 1, + sym_requires_clause, + STATE(5476), 1, + sym_trailing_return_type, + ACTIONS(6528), 2, + anon_sym_final, + anon_sym_override, + STATE(5156), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5160), 2, + sym_noexcept, + sym_throw_specifier, + STATE(5277), 2, + sym_virtual_specifier, + aux_sym__function_declarator_seq_repeat2, + ACTIONS(6542), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(5447), 1, - anon_sym_COLON, - ACTIONS(6855), 1, + [185084] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7879), 1, sym_identifier, - STATE(3133), 1, - sym_template_type, - STATE(3260), 1, - sym__class_declaration, - STATE(3266), 1, - sym_field_declaration_list, - STATE(4370), 1, - sym_ms_declspec_modifier, - STATE(5006), 1, - sym__scope_resolution, - STATE(5348), 1, - sym_virtual_specifier, - STATE(5948), 1, - sym_base_class_clause, - ACTIONS(5449), 2, + ACTIONS(7881), 1, + anon_sym_RPAREN, + ACTIONS(7883), 1, + anon_sym_LPAREN2, + ACTIONS(7885), 1, + anon_sym_defined, + ACTIONS(7891), 1, + sym_number_literal, + ACTIONS(7887), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(7889), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7893), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(4953), 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, + [185127] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7895), 1, + anon_sym_COMMA, + ACTIONS(7897), 1, + anon_sym_RPAREN, + ACTIONS(7903), 1, + anon_sym_SLASH, + ACTIONS(7905), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7907), 1, + anon_sym_AMP_AMP, + ACTIONS(7909), 1, + anon_sym_PIPE, + ACTIONS(7911), 1, + anon_sym_CARET, + ACTIONS(7913), 1, + anon_sym_AMP, + STATE(6255), 1, + aux_sym_preproc_argument_list_repeat1, + ACTIONS(7899), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7901), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7915), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7917), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(7919), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(7921), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [185182] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6363), 1, + anon_sym_noexcept, + ACTIONS(6365), 1, + anon_sym_throw, + ACTIONS(6532), 1, + anon_sym_DASH_GT, + ACTIONS(6534), 1, + anon_sym_requires, + ACTIONS(7726), 1, + anon_sym_LBRACK, + STATE(5358), 1, + sym_requires_clause, + STATE(5505), 1, + sym_trailing_return_type, + ACTIONS(4880), 2, anon_sym_final, anon_sym_override, - STATE(3440), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(4350), 2, + STATE(5195), 2, + sym_noexcept, + sym_throw_specifier, + STATE(5198), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6159), 2, - sym_decltype, - sym_dependent_type_identifier, - [153718] = 20, + STATE(5288), 2, + sym_virtual_specifier, + aux_sym__function_declarator_seq_repeat2, + ACTIONS(7724), 5, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_try, + [185233] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(4214), 1, + ACTIONS(4831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4216), 1, - anon_sym___declspec, - ACTIONS(5447), 1, - anon_sym_COLON, - ACTIONS(5598), 1, - anon_sym_COLON_COLON, - ACTIONS(5721), 1, - anon_sym_LBRACE, - ACTIONS(6855), 1, - sym_identifier, - STATE(3133), 1, - sym_template_type, - STATE(3578), 1, - sym_field_declaration_list, - STATE(3586), 1, - sym__class_declaration, - STATE(4354), 1, - sym_ms_declspec_modifier, - STATE(5035), 1, - sym__scope_resolution, - STATE(5282), 1, - sym_virtual_specifier, - STATE(5841), 1, - sym_base_class_clause, - ACTIONS(5449), 2, + ACTIONS(6363), 1, + anon_sym_noexcept, + ACTIONS(6365), 1, + anon_sym_throw, + ACTIONS(6532), 1, + anon_sym_DASH_GT, + ACTIONS(6534), 1, + anon_sym_requires, + ACTIONS(6544), 1, + anon_sym_LBRACK, + STATE(5360), 1, + sym_requires_clause, + STATE(5503), 1, + sym_trailing_return_type, + ACTIONS(4880), 2, anon_sym_final, anon_sym_override, - STATE(3345), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(4368), 2, + STATE(5202), 2, + sym_noexcept, + sym_throw_specifier, + STATE(5210), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6159), 2, - sym_decltype, - sym_dependent_type_identifier, - [153783] = 20, + STATE(5295), 2, + sym_virtual_specifier, + aux_sym__function_declarator_seq_repeat2, + ACTIONS(6542), 5, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_try, + [185284] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(4214), 1, + ACTIONS(4831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4216), 1, - anon_sym___declspec, - ACTIONS(5445), 1, - anon_sym_LBRACE, - ACTIONS(5447), 1, - anon_sym_COLON, - ACTIONS(6855), 1, - sym_identifier, - ACTIONS(6861), 1, - anon_sym_COLON_COLON, - STATE(3133), 1, - sym_template_type, - STATE(3242), 1, - sym__class_declaration, - STATE(3266), 1, - sym_field_declaration_list, - STATE(4293), 1, - sym_ms_declspec_modifier, - STATE(4979), 1, - sym__scope_resolution, - STATE(5348), 1, - sym_virtual_specifier, - STATE(5948), 1, - sym_base_class_clause, - ACTIONS(5449), 2, + ACTIONS(6363), 1, + anon_sym_noexcept, + ACTIONS(6365), 1, + anon_sym_throw, + ACTIONS(6409), 1, + anon_sym_LBRACK, + ACTIONS(6526), 1, + anon_sym_DASH_GT, + ACTIONS(6530), 1, + anon_sym_requires, + STATE(5436), 1, + sym_requires_clause, + STATE(5484), 1, + sym_trailing_return_type, + ACTIONS(6528), 2, anon_sym_final, anon_sym_override, - STATE(4306), 2, + STATE(5155), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(4797), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6159), 2, - sym_decltype, - sym_dependent_type_identifier, - [153848] = 20, + STATE(5186), 2, + sym_noexcept, + sym_throw_specifier, + STATE(5229), 2, + sym_virtual_specifier, + aux_sym__function_declarator_seq_repeat2, + ACTIONS(6407), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + [185335] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(4214), 1, + ACTIONS(7895), 1, + anon_sym_COMMA, + ACTIONS(7903), 1, + anon_sym_SLASH, + ACTIONS(7905), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7907), 1, + anon_sym_AMP_AMP, + ACTIONS(7909), 1, + anon_sym_PIPE, + ACTIONS(7911), 1, + anon_sym_CARET, + ACTIONS(7913), 1, + anon_sym_AMP, + ACTIONS(7923), 1, + anon_sym_RPAREN, + STATE(6474), 1, + aux_sym_preproc_argument_list_repeat1, + ACTIONS(7899), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7901), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7915), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7917), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(7919), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(7921), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [185390] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4216), 1, - anon_sym___declspec, - ACTIONS(5445), 1, - anon_sym_LBRACE, - ACTIONS(5447), 1, - anon_sym_COLON, - ACTIONS(6855), 1, - sym_identifier, - ACTIONS(6861), 1, - anon_sym_COLON_COLON, - STATE(3133), 1, - sym_template_type, - STATE(3250), 1, - sym__class_declaration, - STATE(3266), 1, - sym_field_declaration_list, - STATE(4293), 1, - sym_ms_declspec_modifier, - STATE(4979), 1, - sym__scope_resolution, - STATE(5348), 1, - sym_virtual_specifier, - STATE(5948), 1, - sym_base_class_clause, - ACTIONS(5449), 2, + ACTIONS(6363), 1, + anon_sym_noexcept, + ACTIONS(6365), 1, + anon_sym_throw, + ACTIONS(6526), 1, + anon_sym_DASH_GT, + ACTIONS(6530), 1, + anon_sym_requires, + ACTIONS(7726), 1, + anon_sym_LBRACK, + STATE(5417), 1, + sym_requires_clause, + STATE(5468), 1, + sym_trailing_return_type, + ACTIONS(6528), 2, anon_sym_final, anon_sym_override, - STATE(4306), 2, + STATE(5211), 2, + sym_noexcept, + sym_throw_specifier, + STATE(5212), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(4797), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6159), 2, - sym_decltype, - sym_dependent_type_identifier, - [153913] = 20, + STATE(5254), 2, + sym_virtual_specifier, + aux_sym__function_declarator_seq_repeat2, + ACTIONS(7724), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + [185441] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(4214), 1, + ACTIONS(4831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4216), 1, - anon_sym___declspec, - ACTIONS(5445), 1, - anon_sym_LBRACE, - ACTIONS(5447), 1, - anon_sym_COLON, - ACTIONS(6855), 1, - sym_identifier, - ACTIONS(6861), 1, - anon_sym_COLON_COLON, - STATE(3133), 1, - sym_template_type, - STATE(3260), 1, - sym__class_declaration, - STATE(3266), 1, - sym_field_declaration_list, - STATE(4293), 1, - sym_ms_declspec_modifier, - STATE(4979), 1, - sym__scope_resolution, - STATE(5348), 1, - sym_virtual_specifier, - STATE(5948), 1, - sym_base_class_clause, - ACTIONS(5449), 2, + ACTIONS(6363), 1, + anon_sym_noexcept, + ACTIONS(6365), 1, + anon_sym_throw, + ACTIONS(6536), 1, + anon_sym_DASH_GT, + ACTIONS(6538), 1, + anon_sym_requires, + ACTIONS(6544), 1, + anon_sym_LBRACK, + STATE(5365), 1, + sym_requires_clause, + STATE(5589), 1, + sym_trailing_return_type, + ACTIONS(6528), 2, anon_sym_final, anon_sym_override, - STATE(4306), 2, + STATE(5172), 2, + sym_noexcept, + sym_throw_specifier, + STATE(5181), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(4797), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6159), 2, - sym_decltype, - sym_dependent_type_identifier, - [153978] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4328), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(4326), 21, + STATE(5277), 2, + sym_virtual_specifier, + aux_sym__function_declarator_seq_repeat2, + ACTIONS(6542), 5, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym_COLON_COLON, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_EQ, + anon_sym_try, + [185492] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6219), 1, + anon_sym_LBRACE, + ACTIONS(7925), 1, + anon_sym_COLON, + STATE(3674), 1, + sym__enum_base_clause, + STATE(3696), 1, + sym_enumerator_list, + ACTIONS(5123), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + ACTIONS(5125), 15, + anon_sym___based, + anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [154009] = 20, + [185529] = 5, + ACTIONS(7772), 1, + anon_sym_LF, + ACTIONS(7927), 1, + anon_sym_LPAREN2, + ACTIONS(7929), 1, + sym_comment, + STATE(5111), 1, + sym_preproc_argument_list, + ACTIONS(7776), 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, + [185562] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(2928), 1, - anon_sym_COLON_COLON, - ACTIONS(4214), 1, + ACTIONS(4831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4216), 1, - anon_sym___declspec, - ACTIONS(5445), 1, - anon_sym_LBRACE, - ACTIONS(5447), 1, - anon_sym_COLON, - ACTIONS(6855), 1, - sym_identifier, - STATE(3133), 1, - sym_template_type, - STATE(3242), 1, - sym__class_declaration, - STATE(3266), 1, - sym_field_declaration_list, - STATE(4370), 1, - sym_ms_declspec_modifier, - STATE(5006), 1, - sym__scope_resolution, - STATE(5348), 1, - sym_virtual_specifier, - STATE(5948), 1, - sym_base_class_clause, - ACTIONS(5449), 2, + ACTIONS(6363), 1, + anon_sym_noexcept, + ACTIONS(6365), 1, + anon_sym_throw, + ACTIONS(6409), 1, + anon_sym_LBRACK, + ACTIONS(6536), 1, + anon_sym_DASH_GT, + ACTIONS(6538), 1, + anon_sym_requires, + STATE(5436), 1, + sym_requires_clause, + STATE(5599), 1, + sym_trailing_return_type, + ACTIONS(6528), 2, anon_sym_final, anon_sym_override, - STATE(3182), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(4350), 2, + STATE(5158), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6159), 2, - sym_decltype, - sym_dependent_type_identifier, - [154074] = 20, + STATE(5161), 2, + sym_noexcept, + sym_throw_specifier, + STATE(5229), 2, + sym_virtual_specifier, + aux_sym__function_declarator_seq_repeat2, + ACTIONS(6407), 5, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [185613] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(4214), 1, + ACTIONS(4831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4216), 1, - anon_sym___declspec, - ACTIONS(5445), 1, - anon_sym_LBRACE, - ACTIONS(5447), 1, - anon_sym_COLON, - ACTIONS(5598), 1, - anon_sym_COLON_COLON, - ACTIONS(6855), 1, - sym_identifier, - STATE(3133), 1, - sym_template_type, - STATE(3260), 1, - sym__class_declaration, - STATE(3266), 1, - sym_field_declaration_list, - STATE(4303), 1, - sym_ms_declspec_modifier, - STATE(5035), 1, - sym__scope_resolution, - STATE(5348), 1, - sym_virtual_specifier, - STATE(5948), 1, - sym_base_class_clause, - ACTIONS(5449), 2, + ACTIONS(6363), 1, + anon_sym_noexcept, + ACTIONS(6365), 1, + anon_sym_throw, + ACTIONS(6536), 1, + anon_sym_DASH_GT, + ACTIONS(6538), 1, + anon_sym_requires, + ACTIONS(7726), 1, + anon_sym_LBRACK, + STATE(5417), 1, + sym_requires_clause, + STATE(5582), 1, + sym_trailing_return_type, + ACTIONS(6528), 2, anon_sym_final, anon_sym_override, - STATE(3419), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(4296), 2, + STATE(5175), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6159), 2, - sym_decltype, - sym_dependent_type_identifier, - [154139] = 20, + STATE(5176), 2, + sym_noexcept, + sym_throw_specifier, + STATE(5254), 2, + sym_virtual_specifier, + aux_sym__function_declarator_seq_repeat2, + ACTIONS(7724), 5, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [185664] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(3916), 1, - anon_sym_COLON_COLON, - ACTIONS(4214), 1, + ACTIONS(4831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4216), 1, - anon_sym___declspec, - ACTIONS(5445), 1, - anon_sym_LBRACE, - ACTIONS(5447), 1, - anon_sym_COLON, - ACTIONS(6857), 1, - sym_identifier, - STATE(3133), 1, - sym_template_type, - STATE(3242), 1, - sym__class_declaration, - STATE(3266), 1, - sym_field_declaration_list, - STATE(4406), 1, - sym_ms_declspec_modifier, - STATE(5034), 1, - sym__scope_resolution, - STATE(5348), 1, - sym_virtual_specifier, - STATE(5948), 1, - sym_base_class_clause, - ACTIONS(5449), 2, + ACTIONS(6363), 1, + anon_sym_noexcept, + ACTIONS(6365), 1, + anon_sym_throw, + ACTIONS(6409), 1, + anon_sym_LBRACK, + ACTIONS(6532), 1, + anon_sym_DASH_GT, + ACTIONS(6534), 1, + anon_sym_requires, + STATE(5422), 1, + sym_requires_clause, + STATE(5499), 1, + sym_trailing_return_type, + ACTIONS(4880), 2, anon_sym_final, anon_sym_override, - STATE(3182), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(4405), 2, + STATE(5168), 2, + sym_noexcept, + sym_throw_specifier, + STATE(5177), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6159), 2, - sym_decltype, - sym_dependent_type_identifier, - [154204] = 20, + STATE(5301), 2, + sym_virtual_specifier, + aux_sym__function_declarator_seq_repeat2, + ACTIONS(6407), 5, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_try, + [185715] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(4214), 1, + ACTIONS(6512), 1, + anon_sym_LPAREN2, + ACTIONS(6520), 1, + anon_sym_LBRACK, + ACTIONS(6754), 1, + anon_sym_STAR, + ACTIONS(6756), 1, + anon_sym_AMP_AMP, + ACTIONS(6758), 1, + anon_sym_AMP, + STATE(3887), 1, + sym_parameter_list, + STATE(5464), 1, + sym__function_declarator_seq, + STATE(5597), 1, + sym__abstract_declarator, + STATE(5367), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6502), 8, + anon_sym_RPAREN, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(4216), 1, - anon_sym___declspec, - ACTIONS(5445), 1, anon_sym_LBRACE, - ACTIONS(5447), 1, - anon_sym_COLON, - ACTIONS(5598), 1, - anon_sym_COLON_COLON, - ACTIONS(6855), 1, - sym_identifier, - STATE(3133), 1, - sym_template_type, - STATE(3250), 1, - sym__class_declaration, - STATE(3266), 1, - sym_field_declaration_list, - STATE(4303), 1, - sym_ms_declspec_modifier, - STATE(5035), 1, - sym__scope_resolution, - STATE(5348), 1, - sym_virtual_specifier, - STATE(5948), 1, - sym_base_class_clause, - ACTIONS(5449), 2, anon_sym_final, anon_sym_override, - STATE(3419), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(4296), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6159), 2, - sym_decltype, - sym_dependent_type_identifier, - [154269] = 7, + anon_sym_try, + anon_sym_requires, + [185760] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(5850), 1, + ACTIONS(7879), 1, + sym_identifier, + ACTIONS(7883), 1, + anon_sym_LPAREN2, + ACTIONS(7885), 1, + anon_sym_defined, + ACTIONS(7931), 1, + anon_sym_RPAREN, + ACTIONS(7933), 1, + sym_number_literal, + ACTIONS(7887), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(7889), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7893), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(4957), 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, + [185803] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6219), 1, anon_sym_LBRACE, - ACTIONS(6863), 1, + ACTIONS(7925), 1, anon_sym_COLON, - STATE(3448), 1, + STATE(3671), 1, sym__enum_base_clause, - STATE(3649), 1, + STATE(3739), 1, sym_enumerator_list, - ACTIONS(4278), 3, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_const, - ACTIONS(4276), 16, + ACTIONS(5111), 2, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_LBRACK_LBRACK, + ACTIONS(5113), 15, + anon_sym___based, + anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [154308] = 20, + [185840] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, + ACTIONS(1329), 1, anon_sym_template, - ACTIONS(1555), 1, + ACTIONS(1973), 1, anon_sym_decltype, - ACTIONS(4214), 1, + ACTIONS(4831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4216), 1, - anon_sym___declspec, - ACTIONS(5445), 1, - anon_sym_LBRACE, - ACTIONS(5447), 1, + ACTIONS(6197), 1, anon_sym_COLON, - ACTIONS(5598), 1, + ACTIONS(6266), 1, anon_sym_COLON_COLON, - ACTIONS(6855), 1, + ACTIONS(7626), 1, + anon_sym_LBRACE, + ACTIONS(7730), 1, sym_identifier, - STATE(3133), 1, + STATE(4638), 1, sym_template_type, - STATE(3242), 1, - sym__class_declaration, - STATE(3266), 1, + STATE(4741), 1, sym_field_declaration_list, - STATE(4303), 1, - sym_ms_declspec_modifier, - STATE(5035), 1, + STATE(5766), 1, sym__scope_resolution, - STATE(5348), 1, + STATE(6021), 1, sym_virtual_specifier, - STATE(5948), 1, + STATE(6706), 1, sym_base_class_clause, - ACTIONS(5449), 2, + ACTIONS(6199), 2, anon_sym_final, anon_sym_override, - STATE(3419), 2, + STATE(4703), 2, sym__class_name, sym_qualified_type_identifier, - STATE(4296), 2, + STATE(4720), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6159), 2, + STATE(7638), 2, sym_decltype, sym_dependent_type_identifier, - [154373] = 20, + [185896] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5397), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(5395), 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, + [185924] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7937), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(7935), 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, + [185952] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7939), 1, + sym_identifier, + ACTIONS(7941), 1, + anon_sym_LPAREN2, + ACTIONS(7943), 1, + anon_sym_defined, + ACTIONS(7949), 1, + sym_number_literal, + ACTIONS(7945), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(7947), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7951), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(5137), 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, + [185992] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, + ACTIONS(1329), 1, anon_sym_template, - ACTIONS(1555), 1, + ACTIONS(1973), 1, anon_sym_decltype, - ACTIONS(4214), 1, + ACTIONS(4831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4216), 1, - anon_sym___declspec, - ACTIONS(4641), 1, - anon_sym_COLON_COLON, - ACTIONS(5447), 1, - anon_sym_COLON, - ACTIONS(5721), 1, + ACTIONS(6195), 1, anon_sym_LBRACE, - ACTIONS(6857), 1, + ACTIONS(6197), 1, + anon_sym_COLON, + ACTIONS(7728), 1, sym_identifier, - STATE(3133), 1, - sym_template_type, + ACTIONS(7752), 1, + anon_sym_COLON_COLON, STATE(3578), 1, + sym_template_type, + STATE(3685), 1, sym_field_declaration_list, - STATE(3588), 1, - sym__class_declaration, - STATE(4401), 1, - sym_ms_declspec_modifier, - STATE(5040), 1, + STATE(5791), 1, sym__scope_resolution, - STATE(5282), 1, + STATE(6149), 1, sym_virtual_specifier, - STATE(5841), 1, + STATE(6754), 1, sym_base_class_clause, - ACTIONS(5449), 2, + ACTIONS(6199), 2, anon_sym_final, anon_sym_override, - STATE(3345), 2, + STATE(4785), 2, sym__class_name, sym_qualified_type_identifier, - STATE(4403), 2, + STATE(5081), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6159), 2, + STATE(7638), 2, sym_decltype, sym_dependent_type_identifier, - [154438] = 20, + [186048] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7955), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(7953), 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, + [186076] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, + ACTIONS(1329), 1, anon_sym_template, - ACTIONS(1555), 1, + ACTIONS(1973), 1, anon_sym_decltype, - ACTIONS(4214), 1, + ACTIONS(4831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4216), 1, - anon_sym___declspec, - ACTIONS(4641), 1, - anon_sym_COLON_COLON, - ACTIONS(5447), 1, + ACTIONS(6197), 1, anon_sym_COLON, - ACTIONS(5721), 1, + ACTIONS(6312), 1, + anon_sym_COLON_COLON, + ACTIONS(6458), 1, anon_sym_LBRACE, - ACTIONS(6857), 1, + ACTIONS(7728), 1, sym_identifier, - STATE(3133), 1, - sym_template_type, STATE(3578), 1, + sym_template_type, + STATE(3955), 1, sym_field_declaration_list, - STATE(3586), 1, - sym__class_declaration, - STATE(4401), 1, - sym_ms_declspec_modifier, - STATE(5040), 1, + STATE(5765), 1, sym__scope_resolution, - STATE(5282), 1, + STATE(6017), 1, sym_virtual_specifier, - STATE(5841), 1, + STATE(6913), 1, sym_base_class_clause, - ACTIONS(5449), 2, + ACTIONS(6199), 2, anon_sym_final, anon_sym_override, - STATE(3345), 2, + STATE(3842), 2, sym__class_name, sym_qualified_type_identifier, - STATE(4403), 2, + STATE(5049), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6159), 2, + STATE(7638), 2, sym_decltype, sym_dependent_type_identifier, - [154503] = 20, + [186132] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(4214), 1, + ACTIONS(4831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4216), 1, - anon_sym___declspec, - ACTIONS(4641), 1, - anon_sym_COLON_COLON, - ACTIONS(5447), 1, - anon_sym_COLON, - ACTIONS(5721), 1, - anon_sym_LBRACE, - ACTIONS(6857), 1, - sym_identifier, - STATE(3133), 1, - sym_template_type, - STATE(3578), 1, - sym_field_declaration_list, - STATE(3579), 1, - sym__class_declaration, - STATE(4401), 1, - sym_ms_declspec_modifier, - STATE(5040), 1, - sym__scope_resolution, - STATE(5282), 1, - sym_virtual_specifier, - STATE(5841), 1, - sym_base_class_clause, - ACTIONS(5449), 2, + ACTIONS(6363), 1, + anon_sym_noexcept, + ACTIONS(6365), 1, + anon_sym_throw, + ACTIONS(6544), 1, + anon_sym_LBRACK, + ACTIONS(6589), 1, + anon_sym_DASH_GT, + ACTIONS(6591), 1, + anon_sym_requires, + STATE(5365), 1, + sym_requires_clause, + STATE(5619), 1, + sym_trailing_return_type, + ACTIONS(6528), 2, anon_sym_final, anon_sym_override, - STATE(3345), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(4403), 2, + STATE(5238), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6159), 2, - sym_decltype, - sym_dependent_type_identifier, - [154568] = 20, + STATE(5239), 2, + sym_noexcept, + sym_throw_specifier, + STATE(5277), 2, + sym_virtual_specifier, + aux_sym__function_declarator_seq_repeat2, + ACTIONS(6542), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_GT2, + [186182] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(4214), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(4216), 1, - anon_sym___declspec, - ACTIONS(5447), 1, - anon_sym_COLON, - ACTIONS(5598), 1, - anon_sym_COLON_COLON, - ACTIONS(5721), 1, - anon_sym_LBRACE, - ACTIONS(6855), 1, + ACTIONS(7879), 1, sym_identifier, - STATE(3133), 1, - sym_template_type, - STATE(3578), 1, - sym_field_declaration_list, - STATE(3579), 1, - sym__class_declaration, - STATE(4354), 1, - sym_ms_declspec_modifier, - STATE(5035), 1, - sym__scope_resolution, - STATE(5282), 1, - sym_virtual_specifier, - STATE(5841), 1, - sym_base_class_clause, - ACTIONS(5449), 2, + ACTIONS(7883), 1, + anon_sym_LPAREN2, + ACTIONS(7885), 1, + anon_sym_defined, + ACTIONS(7957), 1, + sym_number_literal, + ACTIONS(7887), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(7889), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7893), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(4984), 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, + [186222] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6361), 1, + anon_sym_DASH_GT, + ACTIONS(6367), 1, + anon_sym_requires, + ACTIONS(6409), 1, + anon_sym_LBRACK, + STATE(5247), 1, + sym_trailing_return_type, + STATE(5422), 1, + sym_requires_clause, + ACTIONS(4880), 2, anon_sym_final, anon_sym_override, - STATE(3345), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(4368), 2, + STATE(4720), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6159), 2, - sym_decltype, - sym_dependent_type_identifier, - [154633] = 7, + STATE(5301), 2, + sym_virtual_specifier, + aux_sym__function_declarator_seq_repeat2, + ACTIONS(6407), 8, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_try, + [186266] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5850), 1, - anon_sym_LBRACE, - ACTIONS(6863), 1, - anon_sym_COLON, - STATE(3479), 1, - sym__enum_base_clause, - STATE(3627), 1, - sym_enumerator_list, - ACTIONS(4270), 3, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_const, - ACTIONS(4268), 16, + ACTIONS(7879), 1, + sym_identifier, + ACTIONS(7883), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_LBRACK_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [154672] = 20, + ACTIONS(7885), 1, + anon_sym_defined, + ACTIONS(7959), 1, + sym_number_literal, + ACTIONS(7887), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(7889), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7893), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(4987), 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, + [186306] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(2928), 1, - anon_sym_COLON_COLON, - ACTIONS(4214), 1, + ACTIONS(4831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4216), 1, - anon_sym___declspec, - ACTIONS(5445), 1, - anon_sym_LBRACE, - ACTIONS(5447), 1, - anon_sym_COLON, - ACTIONS(6855), 1, - sym_identifier, - STATE(3133), 1, - sym_template_type, - STATE(3260), 1, - sym__class_declaration, - STATE(3266), 1, - sym_field_declaration_list, - STATE(4370), 1, - sym_ms_declspec_modifier, - STATE(5006), 1, - sym__scope_resolution, - STATE(5348), 1, - sym_virtual_specifier, - STATE(5948), 1, - sym_base_class_clause, - ACTIONS(5449), 2, + ACTIONS(6363), 1, + anon_sym_noexcept, + ACTIONS(6365), 1, + anon_sym_throw, + ACTIONS(6589), 1, + anon_sym_DASH_GT, + ACTIONS(6591), 1, + anon_sym_requires, + ACTIONS(7726), 1, + anon_sym_LBRACK, + STATE(5417), 1, + sym_requires_clause, + STATE(5622), 1, + sym_trailing_return_type, + ACTIONS(6528), 2, anon_sym_final, anon_sym_override, - STATE(3394), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(4350), 2, + STATE(5240), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6159), 2, - sym_decltype, - sym_dependent_type_identifier, - [154737] = 20, + STATE(5246), 2, + sym_noexcept, + sym_throw_specifier, + STATE(5254), 2, + sym_virtual_specifier, + aux_sym__function_declarator_seq_repeat2, + ACTIONS(7724), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_GT2, + [186356] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7879), 1, + sym_identifier, + ACTIONS(7883), 1, + anon_sym_LPAREN2, + ACTIONS(7885), 1, + anon_sym_defined, + ACTIONS(7961), 1, + sym_number_literal, + ACTIONS(7887), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(7889), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7893), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(4988), 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, + [186396] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7879), 1, + sym_identifier, + ACTIONS(7883), 1, + anon_sym_LPAREN2, + ACTIONS(7885), 1, + anon_sym_defined, + ACTIONS(7963), 1, + sym_number_literal, + ACTIONS(7887), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(7889), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7893), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(5013), 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, + [186436] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7879), 1, + sym_identifier, + ACTIONS(7883), 1, + anon_sym_LPAREN2, + ACTIONS(7885), 1, + anon_sym_defined, + ACTIONS(7965), 1, + sym_number_literal, + ACTIONS(7887), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(7889), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7893), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(5023), 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, + [186476] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, + ACTIONS(1329), 1, anon_sym_template, - ACTIONS(1555), 1, + ACTIONS(1973), 1, anon_sym_decltype, - ACTIONS(2928), 1, - anon_sym_COLON_COLON, - ACTIONS(4214), 1, + ACTIONS(4831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4216), 1, - anon_sym___declspec, - ACTIONS(5445), 1, + ACTIONS(5045), 1, anon_sym_LBRACE, - ACTIONS(5447), 1, + ACTIONS(6197), 1, anon_sym_COLON, - ACTIONS(6855), 1, + ACTIONS(7514), 1, + anon_sym_COLON_COLON, + ACTIONS(7664), 1, sym_identifier, - STATE(3133), 1, + STATE(2718), 1, sym_template_type, - STATE(3242), 1, - sym__class_declaration, - STATE(3266), 1, + STATE(2770), 1, sym_field_declaration_list, - STATE(4370), 1, - sym_ms_declspec_modifier, - STATE(5006), 1, + STATE(5735), 1, sym__scope_resolution, - STATE(5348), 1, + STATE(6052), 1, sym_virtual_specifier, - STATE(5948), 1, + STATE(6742), 1, sym_base_class_clause, - ACTIONS(5449), 2, + ACTIONS(6199), 2, anon_sym_final, anon_sym_override, - STATE(3404), 2, + STATE(2451), 2, sym__class_name, sym_qualified_type_identifier, - STATE(4350), 2, + STATE(4720), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6159), 2, + STATE(7638), 2, sym_decltype, sym_dependent_type_identifier, - [154802] = 20, + [186532] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7903), 1, + anon_sym_SLASH, + ACTIONS(7901), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7969), 4, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(7967), 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, + [186564] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, + ACTIONS(1329), 1, anon_sym_template, - ACTIONS(1555), 1, + ACTIONS(1973), 1, anon_sym_decltype, - ACTIONS(2928), 1, - anon_sym_COLON_COLON, - ACTIONS(4214), 1, + ACTIONS(4831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4216), 1, - anon_sym___declspec, - ACTIONS(5445), 1, + ACTIONS(5102), 1, + anon_sym_COLON_COLON, + ACTIONS(6195), 1, anon_sym_LBRACE, - ACTIONS(5447), 1, + ACTIONS(6197), 1, anon_sym_COLON, - ACTIONS(6855), 1, + ACTIONS(7740), 1, sym_identifier, - STATE(3133), 1, + STATE(3578), 1, sym_template_type, - STATE(3250), 1, - sym__class_declaration, - STATE(3266), 1, + STATE(3772), 1, sym_field_declaration_list, - STATE(4370), 1, - sym_ms_declspec_modifier, - STATE(5006), 1, + STATE(5718), 1, sym__scope_resolution, - STATE(5348), 1, + STATE(6152), 1, sym_virtual_specifier, - STATE(5948), 1, + STATE(6933), 1, sym_base_class_clause, - ACTIONS(5449), 2, + ACTIONS(6199), 2, anon_sym_final, anon_sym_override, - STATE(3404), 2, + STATE(3877), 2, sym__class_name, sym_qualified_type_identifier, - STATE(4350), 2, + STATE(4720), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6159), 2, + STATE(7638), 2, sym_decltype, sym_dependent_type_identifier, - [154867] = 20, + [186620] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, + ACTIONS(1329), 1, anon_sym_template, - ACTIONS(1555), 1, + ACTIONS(1973), 1, anon_sym_decltype, - ACTIONS(2928), 1, - anon_sym_COLON_COLON, - ACTIONS(4214), 1, + ACTIONS(4831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4216), 1, - anon_sym___declspec, - ACTIONS(5445), 1, + ACTIONS(5045), 1, anon_sym_LBRACE, - ACTIONS(5447), 1, + ACTIONS(6197), 1, anon_sym_COLON, - ACTIONS(6855), 1, + ACTIONS(6225), 1, + anon_sym_COLON_COLON, + ACTIONS(7738), 1, sym_identifier, - STATE(3133), 1, + STATE(2718), 1, sym_template_type, - STATE(3260), 1, - sym__class_declaration, - STATE(3266), 1, + STATE(2762), 1, sym_field_declaration_list, - STATE(4370), 1, - sym_ms_declspec_modifier, - STATE(5006), 1, + STATE(5741), 1, sym__scope_resolution, - STATE(5348), 1, + STATE(6116), 1, sym_virtual_specifier, - STATE(5948), 1, + STATE(6735), 1, sym_base_class_clause, - ACTIONS(5449), 2, + ACTIONS(6199), 2, anon_sym_final, anon_sym_override, - STATE(3404), 2, + STATE(2490), 2, sym__class_name, sym_qualified_type_identifier, - STATE(4350), 2, + STATE(4720), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6159), 2, + STATE(7638), 2, sym_decltype, sym_dependent_type_identifier, - [154932] = 20, + [186676] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(4214), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(4216), 1, - anon_sym___declspec, - ACTIONS(5447), 1, - anon_sym_COLON, - ACTIONS(5576), 1, - anon_sym_COLON_COLON, - ACTIONS(6757), 1, - anon_sym_LBRACE, - ACTIONS(6865), 1, - sym_identifier, - STATE(4063), 1, - sym_template_type, - STATE(4251), 1, - sym__class_declaration, - STATE(4255), 1, - sym_field_declaration_list, - STATE(4372), 1, - sym_ms_declspec_modifier, - STATE(5024), 1, - sym__scope_resolution, - STATE(5254), 1, - sym_virtual_specifier, - STATE(5704), 1, - sym_base_class_clause, - ACTIONS(5449), 2, + ACTIONS(7969), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(7967), 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, + [186704] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7903), 1, + anon_sym_SLASH, + ACTIONS(7907), 1, + anon_sym_AMP_AMP, + ACTIONS(7909), 1, + anon_sym_PIPE, + ACTIONS(7911), 1, + anon_sym_CARET, + ACTIONS(7913), 1, + anon_sym_AMP, + ACTIONS(7899), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7901), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7915), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7917), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(7919), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(7921), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7967), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + [186752] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4572), 1, + anon_sym_LPAREN2, + ACTIONS(4574), 1, + anon_sym_STAR, + ACTIONS(4576), 1, + anon_sym_AMP_AMP, + ACTIONS(4578), 1, + anon_sym_AMP, + ACTIONS(6919), 1, + anon_sym_LBRACK, + STATE(3900), 1, + sym_parameter_list, + STATE(5457), 1, + sym__function_declarator_seq, + STATE(5650), 1, + sym__abstract_declarator, + STATE(5452), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6502), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_final, anon_sym_override, - STATE(4083), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(4358), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6159), 2, - sym_decltype, - sym_dependent_type_identifier, - [154997] = 20, + anon_sym_requires, + [186796] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, + ACTIONS(1329), 1, anon_sym_template, - ACTIONS(1555), 1, + ACTIONS(1973), 1, anon_sym_decltype, - ACTIONS(4214), 1, + ACTIONS(4831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4216), 1, - anon_sym___declspec, - ACTIONS(5447), 1, + ACTIONS(4992), 1, + anon_sym_LBRACE, + ACTIONS(6197), 1, anon_sym_COLON, - ACTIONS(5576), 1, + ACTIONS(7534), 1, anon_sym_COLON_COLON, - ACTIONS(6757), 1, - anon_sym_LBRACE, - ACTIONS(6865), 1, + ACTIONS(7704), 1, sym_identifier, - STATE(4063), 1, + STATE(2511), 1, sym_template_type, - STATE(4194), 1, - sym__class_declaration, - STATE(4255), 1, + STATE(2903), 1, sym_field_declaration_list, - STATE(4372), 1, - sym_ms_declspec_modifier, - STATE(5024), 1, + STATE(5713), 1, sym__scope_resolution, - STATE(5254), 1, + STATE(6158), 1, sym_virtual_specifier, - STATE(5704), 1, + STATE(6822), 1, sym_base_class_clause, - ACTIONS(5449), 2, + ACTIONS(6199), 2, anon_sym_final, anon_sym_override, - STATE(4083), 2, + STATE(2353), 2, sym__class_name, sym_qualified_type_identifier, - STATE(4358), 2, + STATE(4720), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6159), 2, + STATE(7638), 2, sym_decltype, sym_dependent_type_identifier, - [155062] = 20, + [186852] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6361), 1, + anon_sym_DASH_GT, + ACTIONS(6367), 1, + anon_sym_requires, + ACTIONS(6409), 1, + anon_sym_LBRACK, + STATE(5247), 1, + sym_trailing_return_type, + STATE(5422), 1, + sym_requires_clause, + ACTIONS(4880), 2, + anon_sym_final, + anon_sym_override, + STATE(5074), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5301), 2, + sym_virtual_specifier, + aux_sym__function_declarator_seq_repeat2, + ACTIONS(6407), 8, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_try, + [186896] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, + ACTIONS(1329), 1, anon_sym_template, - ACTIONS(1555), 1, + ACTIONS(1973), 1, anon_sym_decltype, - ACTIONS(4214), 1, + ACTIONS(4831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4216), 1, - anon_sym___declspec, - ACTIONS(5447), 1, + ACTIONS(5045), 1, + anon_sym_LBRACE, + ACTIONS(6197), 1, anon_sym_COLON, - ACTIONS(5576), 1, + ACTIONS(6225), 1, anon_sym_COLON_COLON, - ACTIONS(6757), 1, - anon_sym_LBRACE, - ACTIONS(6865), 1, + ACTIONS(7738), 1, sym_identifier, - STATE(4063), 1, + STATE(2718), 1, sym_template_type, - STATE(4253), 1, - sym__class_declaration, - STATE(4255), 1, + STATE(2762), 1, sym_field_declaration_list, - STATE(4372), 1, - sym_ms_declspec_modifier, - STATE(5024), 1, + STATE(5741), 1, sym__scope_resolution, - STATE(5254), 1, + STATE(6116), 1, sym_virtual_specifier, - STATE(5704), 1, + STATE(6735), 1, sym_base_class_clause, - ACTIONS(5449), 2, + ACTIONS(6199), 2, anon_sym_final, anon_sym_override, - STATE(4083), 2, + STATE(2490), 2, sym__class_name, sym_qualified_type_identifier, - STATE(4358), 2, + STATE(5075), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6159), 2, + STATE(7638), 2, sym_decltype, sym_dependent_type_identifier, - [155127] = 20, + [186952] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7939), 1, + sym_identifier, + ACTIONS(7941), 1, + anon_sym_LPAREN2, + ACTIONS(7943), 1, + anon_sym_defined, + ACTIONS(7971), 1, + sym_number_literal, + ACTIONS(7945), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(7947), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7951), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(5126), 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, + [186992] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, + ACTIONS(1329), 1, anon_sym_template, - ACTIONS(1555), 1, + ACTIONS(1973), 1, anon_sym_decltype, - ACTIONS(2928), 1, - anon_sym_COLON_COLON, - ACTIONS(4214), 1, + ACTIONS(4831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4216), 1, - anon_sym___declspec, - ACTIONS(5445), 1, + ACTIONS(4992), 1, anon_sym_LBRACE, - ACTIONS(5447), 1, + ACTIONS(6197), 1, anon_sym_COLON, - ACTIONS(6855), 1, + ACTIONS(7534), 1, + anon_sym_COLON_COLON, + ACTIONS(7704), 1, sym_identifier, - STATE(3133), 1, + STATE(2511), 1, sym_template_type, - STATE(3250), 1, - sym__class_declaration, - STATE(3266), 1, + STATE(2923), 1, sym_field_declaration_list, - STATE(4370), 1, - sym_ms_declspec_modifier, - STATE(5006), 1, + STATE(5713), 1, sym__scope_resolution, - STATE(5348), 1, + STATE(6119), 1, sym_virtual_specifier, - STATE(5948), 1, + STATE(6846), 1, sym_base_class_clause, - ACTIONS(5449), 2, + ACTIONS(6199), 2, anon_sym_final, anon_sym_override, - STATE(3182), 2, + STATE(2361), 2, sym__class_name, sym_qualified_type_identifier, - STATE(4350), 2, + STATE(4720), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6159), 2, + STATE(7638), 2, sym_decltype, sym_dependent_type_identifier, - [155192] = 20, + [187048] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, + ACTIONS(1329), 1, anon_sym_template, - ACTIONS(1555), 1, + ACTIONS(1973), 1, anon_sym_decltype, - ACTIONS(4214), 1, + ACTIONS(4831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4216), 1, - anon_sym___declspec, - ACTIONS(4359), 1, + ACTIONS(5102), 1, + anon_sym_COLON_COLON, + ACTIONS(6195), 1, anon_sym_LBRACE, - ACTIONS(5447), 1, + ACTIONS(6197), 1, anon_sym_COLON, - ACTIONS(5502), 1, - anon_sym_COLON_COLON, - ACTIONS(6867), 1, + ACTIONS(7740), 1, sym_identifier, - STATE(2255), 1, + STATE(3578), 1, sym_template_type, - STATE(2595), 1, - sym__class_declaration, - STATE(2599), 1, + STATE(3685), 1, sym_field_declaration_list, - STATE(4345), 1, - sym_ms_declspec_modifier, - STATE(4997), 1, + STATE(5718), 1, sym__scope_resolution, - STATE(5202), 1, + STATE(6149), 1, sym_virtual_specifier, - STATE(6005), 1, + STATE(6754), 1, sym_base_class_clause, - ACTIONS(5449), 2, + ACTIONS(6199), 2, anon_sym_final, anon_sym_override, - STATE(2105), 2, + STATE(3865), 2, sym__class_name, sym_qualified_type_identifier, - STATE(4343), 2, + STATE(4720), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6159), 2, + STATE(7638), 2, sym_decltype, sym_dependent_type_identifier, - [155257] = 20, + [187104] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7879), 1, + sym_identifier, + ACTIONS(7883), 1, + anon_sym_LPAREN2, + ACTIONS(7885), 1, + anon_sym_defined, + ACTIONS(7973), 1, + sym_number_literal, + ACTIONS(7887), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(7889), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7893), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(5069), 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, + [187144] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, + ACTIONS(1329), 1, anon_sym_template, - ACTIONS(1555), 1, + ACTIONS(1973), 1, anon_sym_decltype, - ACTIONS(2928), 1, - anon_sym_COLON_COLON, - ACTIONS(4214), 1, + ACTIONS(4831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4216), 1, - anon_sym___declspec, - ACTIONS(5445), 1, + ACTIONS(4992), 1, anon_sym_LBRACE, - ACTIONS(5447), 1, + ACTIONS(6197), 1, anon_sym_COLON, - ACTIONS(6855), 1, + ACTIONS(7534), 1, + anon_sym_COLON_COLON, + ACTIONS(7704), 1, sym_identifier, - STATE(3133), 1, + STATE(2511), 1, sym_template_type, - STATE(3260), 1, - sym__class_declaration, - STATE(3266), 1, + STATE(2923), 1, sym_field_declaration_list, - STATE(4370), 1, - sym_ms_declspec_modifier, - STATE(5006), 1, + STATE(5713), 1, sym__scope_resolution, - STATE(5348), 1, + STATE(6119), 1, sym_virtual_specifier, - STATE(5948), 1, + STATE(6846), 1, sym_base_class_clause, - ACTIONS(5449), 2, + ACTIONS(6199), 2, anon_sym_final, anon_sym_override, - STATE(3182), 2, + STATE(2361), 2, sym__class_name, sym_qualified_type_identifier, - STATE(4350), 2, + STATE(4990), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6159), 2, + STATE(7638), 2, sym_decltype, sym_dependent_type_identifier, - [155322] = 11, + [187200] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(5864), 1, - anon_sym_LPAREN2, - ACTIONS(5872), 1, - anon_sym_LBRACK, - ACTIONS(6175), 1, - anon_sym_STAR, - ACTIONS(6177), 1, - anon_sym_AMP_AMP, - ACTIONS(6179), 1, - anon_sym_AMP, - STATE(3362), 1, - sym_parameter_list, - STATE(4673), 1, - sym__abstract_declarator, - STATE(4690), 1, - sym__function_declarator_seq, - STATE(4686), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(5550), 10, + ACTIONS(6466), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7736), 1, + anon_sym_COLON, + ACTIONS(7975), 1, anon_sym_COMMA, + ACTIONS(7977), 1, + anon_sym_LPAREN2, + ACTIONS(7979), 1, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, + ACTIONS(7981), 1, anon_sym_LBRACE, + ACTIONS(7983), 1, + anon_sym_LBRACK, + ACTIONS(7985), 1, anon_sym_EQ, - anon_sym_COLON, - anon_sym_final, - anon_sym_override, + ACTIONS(7987), 1, anon_sym_try, - anon_sym_requires, - [155369] = 20, + STATE(2492), 1, + sym_try_statement, + STATE(2494), 1, + sym_compound_statement, + STATE(2495), 1, + sym_default_method_clause, + STATE(2496), 1, + sym_delete_method_clause, + STATE(3839), 1, + sym_parameter_list, + STATE(5684), 1, + sym__function_declarator_seq, + STATE(5845), 1, + aux_sym_field_declaration_repeat1, + STATE(7457), 1, + sym_initializer_list, + STATE(7459), 1, + sym_bitfield_clause, + STATE(5649), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [187262] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, + ACTIONS(1329), 1, anon_sym_template, - ACTIONS(1555), 1, + ACTIONS(1973), 1, anon_sym_decltype, - ACTIONS(4214), 1, + ACTIONS(4831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4216), 1, - anon_sym___declspec, - ACTIONS(4359), 1, + ACTIONS(5102), 1, + anon_sym_COLON_COLON, + ACTIONS(6195), 1, anon_sym_LBRACE, - ACTIONS(5447), 1, + ACTIONS(6197), 1, anon_sym_COLON, - ACTIONS(5502), 1, - anon_sym_COLON_COLON, - ACTIONS(6867), 1, + ACTIONS(7740), 1, sym_identifier, - STATE(2255), 1, + STATE(3578), 1, sym_template_type, - STATE(2596), 1, - sym__class_declaration, - STATE(2599), 1, + STATE(3685), 1, sym_field_declaration_list, - STATE(4345), 1, - sym_ms_declspec_modifier, - STATE(4997), 1, + STATE(5718), 1, sym__scope_resolution, - STATE(5202), 1, + STATE(6149), 1, sym_virtual_specifier, - STATE(6005), 1, + STATE(6754), 1, sym_base_class_clause, - ACTIONS(5449), 2, + ACTIONS(6199), 2, anon_sym_final, anon_sym_override, - STATE(2105), 2, + STATE(3865), 2, sym__class_name, sym_qualified_type_identifier, - STATE(4343), 2, + STATE(4985), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6159), 2, + STATE(7638), 2, sym_decltype, sym_dependent_type_identifier, - [155434] = 20, + [187318] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, + ACTIONS(1329), 1, anon_sym_template, - ACTIONS(1555), 1, + ACTIONS(1973), 1, anon_sym_decltype, - ACTIONS(4214), 1, + ACTIONS(4831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4216), 1, - anon_sym___declspec, - ACTIONS(4255), 1, + ACTIONS(5149), 1, anon_sym_LBRACE, - ACTIONS(5447), 1, + ACTIONS(6197), 1, anon_sym_COLON, - ACTIONS(6582), 1, + ACTIONS(7581), 1, anon_sym_COLON_COLON, - ACTIONS(6803), 1, + ACTIONS(7684), 1, sym_identifier, - STATE(2032), 1, + STATE(2846), 1, sym_template_type, - STATE(2678), 1, - sym__class_declaration, - STATE(2682), 1, + STATE(3245), 1, sym_field_declaration_list, - STATE(4404), 1, - sym_ms_declspec_modifier, - STATE(5025), 1, + STATE(5726), 1, sym__scope_resolution, - STATE(5305), 1, + STATE(6022), 1, sym_virtual_specifier, - STATE(5735), 1, + STATE(6704), 1, sym_base_class_clause, - ACTIONS(5449), 2, + ACTIONS(6199), 2, anon_sym_final, anon_sym_override, - STATE(1972), 2, + STATE(2595), 2, sym__class_name, sym_qualified_type_identifier, - STATE(4392), 2, + STATE(4720), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6159), 2, + STATE(7638), 2, sym_decltype, sym_dependent_type_identifier, - [155499] = 20, + [187374] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7939), 1, + sym_identifier, + ACTIONS(7941), 1, + anon_sym_LPAREN2, + ACTIONS(7943), 1, + anon_sym_defined, + ACTIONS(7989), 1, + sym_number_literal, + ACTIONS(7945), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(7947), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7951), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(5140), 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, + [187414] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, + ACTIONS(1329), 1, anon_sym_template, - ACTIONS(1555), 1, + ACTIONS(1973), 1, anon_sym_decltype, - ACTIONS(4214), 1, + ACTIONS(4831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4216), 1, - anon_sym___declspec, - ACTIONS(4359), 1, + ACTIONS(5086), 1, anon_sym_LBRACE, - ACTIONS(5447), 1, + ACTIONS(6197), 1, anon_sym_COLON, - ACTIONS(5502), 1, + ACTIONS(7456), 1, anon_sym_COLON_COLON, - ACTIONS(6867), 1, + ACTIONS(7674), 1, sym_identifier, - STATE(2255), 1, + STATE(2739), 1, sym_template_type, - STATE(2598), 1, - sym__class_declaration, - STATE(2599), 1, + STATE(3152), 1, sym_field_declaration_list, - STATE(4345), 1, - sym_ms_declspec_modifier, - STATE(4997), 1, + STATE(5797), 1, sym__scope_resolution, - STATE(5202), 1, + STATE(6126), 1, sym_virtual_specifier, - STATE(6005), 1, + STATE(6789), 1, sym_base_class_clause, - ACTIONS(5449), 2, + ACTIONS(6199), 2, anon_sym_final, anon_sym_override, - STATE(2105), 2, + STATE(2499), 2, sym__class_name, sym_qualified_type_identifier, - STATE(4343), 2, + STATE(5004), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6159), 2, + STATE(7638), 2, sym_decltype, sym_dependent_type_identifier, - [155564] = 20, + [187470] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, + ACTIONS(1329), 1, anon_sym_template, - ACTIONS(1555), 1, + ACTIONS(1973), 1, anon_sym_decltype, - ACTIONS(4214), 1, + ACTIONS(4831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4216), 1, - anon_sym___declspec, - ACTIONS(4641), 1, - anon_sym_COLON_COLON, - ACTIONS(5445), 1, + ACTIONS(5086), 1, anon_sym_LBRACE, - ACTIONS(5447), 1, + ACTIONS(6197), 1, anon_sym_COLON, - ACTIONS(6857), 1, + ACTIONS(7456), 1, + anon_sym_COLON_COLON, + ACTIONS(7674), 1, sym_identifier, - STATE(3133), 1, + STATE(2739), 1, sym_template_type, - STATE(3260), 1, - sym__class_declaration, - STATE(3266), 1, + STATE(3152), 1, sym_field_declaration_list, - STATE(4294), 1, - sym_ms_declspec_modifier, - STATE(5040), 1, + STATE(5797), 1, sym__scope_resolution, - STATE(5348), 1, + STATE(6126), 1, sym_virtual_specifier, - STATE(5948), 1, + STATE(6789), 1, sym_base_class_clause, - ACTIONS(5449), 2, + ACTIONS(6199), 2, anon_sym_final, anon_sym_override, - STATE(3419), 2, + STATE(2499), 2, sym__class_name, sym_qualified_type_identifier, - STATE(4305), 2, + STATE(4720), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6159), 2, + STATE(7638), 2, sym_decltype, sym_dependent_type_identifier, - [155629] = 20, + [187526] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, + ACTIONS(1329), 1, anon_sym_template, - ACTIONS(1555), 1, + ACTIONS(1973), 1, anon_sym_decltype, - ACTIONS(4214), 1, + ACTIONS(4831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4216), 1, - anon_sym___declspec, - ACTIONS(4359), 1, + ACTIONS(5086), 1, anon_sym_LBRACE, - ACTIONS(5447), 1, + ACTIONS(6197), 1, anon_sym_COLON, - ACTIONS(6612), 1, + ACTIONS(7456), 1, anon_sym_COLON_COLON, - ACTIONS(6777), 1, + ACTIONS(7674), 1, sym_identifier, - STATE(2255), 1, + STATE(2739), 1, sym_template_type, - STATE(2595), 1, - sym__class_declaration, - STATE(2599), 1, + STATE(3194), 1, sym_field_declaration_list, - STATE(4378), 1, - sym_ms_declspec_modifier, - STATE(4990), 1, + STATE(5797), 1, sym__scope_resolution, - STATE(5202), 1, + STATE(6098), 1, sym_virtual_specifier, - STATE(6005), 1, + STATE(6700), 1, sym_base_class_clause, - ACTIONS(5449), 2, + ACTIONS(6199), 2, anon_sym_final, anon_sym_override, - STATE(2105), 2, + STATE(2515), 2, sym__class_name, sym_qualified_type_identifier, - STATE(4386), 2, + STATE(4720), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6159), 2, + STATE(7638), 2, sym_decltype, sym_dependent_type_identifier, - [155694] = 20, + [187582] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6466), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7736), 1, + anon_sym_COLON, + ACTIONS(7975), 1, + anon_sym_COMMA, + ACTIONS(7977), 1, + anon_sym_LPAREN2, + ACTIONS(7983), 1, + anon_sym_LBRACK, + ACTIONS(7991), 1, + anon_sym_SEMI, + ACTIONS(7993), 1, + anon_sym_LBRACE, + ACTIONS(7995), 1, + anon_sym_EQ, + ACTIONS(7997), 1, + anon_sym_try, + STATE(2323), 1, + sym_compound_statement, + STATE(2326), 1, + sym_default_method_clause, + STATE(2336), 1, + sym_delete_method_clause, + STATE(2345), 1, + sym_try_statement, + STATE(3839), 1, + sym_parameter_list, + STATE(5684), 1, + sym__function_declarator_seq, + STATE(5807), 1, + aux_sym_field_declaration_repeat1, + STATE(7565), 1, + sym_bitfield_clause, + STATE(7567), 1, + sym_initializer_list, + STATE(5649), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [187644] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, + ACTIONS(1329), 1, anon_sym_template, - ACTIONS(1555), 1, + ACTIONS(1973), 1, anon_sym_decltype, - ACTIONS(4214), 1, + ACTIONS(4831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4216), 1, - anon_sym___declspec, - ACTIONS(4359), 1, + ACTIONS(5149), 1, anon_sym_LBRACE, - ACTIONS(5447), 1, + ACTIONS(6197), 1, anon_sym_COLON, - ACTIONS(6612), 1, + ACTIONS(7581), 1, anon_sym_COLON_COLON, - ACTIONS(6777), 1, + ACTIONS(7684), 1, sym_identifier, - STATE(2255), 1, + STATE(2846), 1, sym_template_type, - STATE(2596), 1, - sym__class_declaration, - STATE(2599), 1, + STATE(3242), 1, sym_field_declaration_list, - STATE(4378), 1, - sym_ms_declspec_modifier, - STATE(4990), 1, + STATE(5726), 1, sym__scope_resolution, - STATE(5202), 1, - sym_virtual_specifier, STATE(6005), 1, + sym_virtual_specifier, + STATE(6676), 1, sym_base_class_clause, - ACTIONS(5449), 2, + ACTIONS(6199), 2, anon_sym_final, anon_sym_override, - STATE(2105), 2, + STATE(2668), 2, sym__class_name, sym_qualified_type_identifier, - STATE(4386), 2, + STATE(4720), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6159), 2, + STATE(7638), 2, sym_decltype, sym_dependent_type_identifier, - [155759] = 6, + [187700] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6518), 1, - sym_auto, - ACTIONS(6520), 1, - anon_sym_decltype, - STATE(4243), 1, - sym_decltype_auto, - ACTIONS(4336), 2, + ACTIONS(6639), 1, + anon_sym_LPAREN2, + STATE(3354), 1, + sym_argument_list, + ACTIONS(5155), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(4334), 18, - anon_sym_LPAREN2, + ACTIONS(5153), 16, + anon_sym_RPAREN, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_EQ, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [155796] = 20, + sym_auto, + anon_sym_decltype, + [187732] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7939), 1, + sym_identifier, + ACTIONS(7941), 1, + anon_sym_LPAREN2, + ACTIONS(7943), 1, + anon_sym_defined, + ACTIONS(7999), 1, + sym_number_literal, + ACTIONS(7945), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(7947), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7951), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(5121), 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, + [187772] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, + ACTIONS(1329), 1, anon_sym_template, - ACTIONS(1555), 1, + ACTIONS(1973), 1, anon_sym_decltype, - ACTIONS(4214), 1, + ACTIONS(4831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4216), 1, - anon_sym___declspec, - ACTIONS(4359), 1, + ACTIONS(5149), 1, anon_sym_LBRACE, - ACTIONS(5447), 1, + ACTIONS(6197), 1, anon_sym_COLON, - ACTIONS(6612), 1, + ACTIONS(7581), 1, anon_sym_COLON_COLON, - ACTIONS(6777), 1, + ACTIONS(7684), 1, sym_identifier, - STATE(2255), 1, + STATE(2846), 1, sym_template_type, - STATE(2598), 1, - sym__class_declaration, - STATE(2599), 1, + STATE(3242), 1, sym_field_declaration_list, - STATE(4378), 1, - sym_ms_declspec_modifier, - STATE(4990), 1, + STATE(5726), 1, sym__scope_resolution, - STATE(5202), 1, - sym_virtual_specifier, STATE(6005), 1, + sym_virtual_specifier, + STATE(6676), 1, sym_base_class_clause, - ACTIONS(5449), 2, + ACTIONS(6199), 2, anon_sym_final, anon_sym_override, - STATE(2105), 2, + STATE(2668), 2, sym__class_name, sym_qualified_type_identifier, - STATE(4386), 2, + STATE(5000), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6159), 2, + STATE(7638), 2, sym_decltype, sym_dependent_type_identifier, - [155861] = 20, + [187828] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7939), 1, + sym_identifier, + ACTIONS(7941), 1, + anon_sym_LPAREN2, + ACTIONS(7943), 1, + anon_sym_defined, + ACTIONS(8001), 1, + sym_number_literal, + ACTIONS(7945), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(7947), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7951), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(5122), 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, + [187868] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7939), 1, + sym_identifier, + ACTIONS(7941), 1, + anon_sym_LPAREN2, + ACTIONS(7943), 1, + anon_sym_defined, + ACTIONS(8003), 1, + sym_number_literal, + ACTIONS(7945), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(7947), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7951), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(5123), 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, + [187908] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, + ACTIONS(1329), 1, anon_sym_template, - ACTIONS(1555), 1, + ACTIONS(1973), 1, anon_sym_decltype, - ACTIONS(4214), 1, + ACTIONS(4580), 1, + anon_sym_COLON_COLON, + ACTIONS(4831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4216), 1, - anon_sym___declspec, - ACTIONS(4255), 1, + ACTIONS(6195), 1, anon_sym_LBRACE, - ACTIONS(5447), 1, + ACTIONS(6197), 1, anon_sym_COLON, - ACTIONS(6582), 1, - anon_sym_COLON_COLON, - ACTIONS(6803), 1, + ACTIONS(7740), 1, sym_identifier, - STATE(2032), 1, + STATE(3578), 1, sym_template_type, - STATE(2680), 1, - sym__class_declaration, - STATE(2682), 1, + STATE(3685), 1, sym_field_declaration_list, - STATE(4404), 1, - sym_ms_declspec_modifier, - STATE(5025), 1, + STATE(5733), 1, sym__scope_resolution, - STATE(5305), 1, + STATE(6149), 1, sym_virtual_specifier, - STATE(5735), 1, + STATE(6754), 1, sym_base_class_clause, - ACTIONS(5449), 2, + ACTIONS(6199), 2, anon_sym_final, anon_sym_override, - STATE(1972), 2, + STATE(3644), 2, sym__class_name, sym_qualified_type_identifier, - STATE(4392), 2, + STATE(4720), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6159), 2, + STATE(7638), 2, sym_decltype, sym_dependent_type_identifier, - [155926] = 20, + [187964] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7903), 1, + anon_sym_SLASH, + ACTIONS(7909), 1, + anon_sym_PIPE, + ACTIONS(7911), 1, + anon_sym_CARET, + ACTIONS(7913), 1, + anon_sym_AMP, + ACTIONS(7899), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7901), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7915), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7917), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(7919), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(7921), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7967), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + [188010] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, + ACTIONS(1329), 1, anon_sym_template, - ACTIONS(1555), 1, + ACTIONS(1973), 1, anon_sym_decltype, - ACTIONS(2928), 1, + ACTIONS(4580), 1, anon_sym_COLON_COLON, - ACTIONS(4214), 1, + ACTIONS(4831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4216), 1, - anon_sym___declspec, - ACTIONS(5445), 1, + ACTIONS(6195), 1, anon_sym_LBRACE, - ACTIONS(5447), 1, + ACTIONS(6197), 1, anon_sym_COLON, - ACTIONS(6855), 1, + ACTIONS(7740), 1, sym_identifier, - STATE(3133), 1, + STATE(3578), 1, sym_template_type, - STATE(3260), 1, - sym__class_declaration, - STATE(3266), 1, + STATE(3685), 1, sym_field_declaration_list, - STATE(4370), 1, - sym_ms_declspec_modifier, - STATE(5006), 1, + STATE(5733), 1, sym__scope_resolution, - STATE(5348), 1, + STATE(6149), 1, sym_virtual_specifier, - STATE(5948), 1, + STATE(6754), 1, sym_base_class_clause, - ACTIONS(5449), 2, + ACTIONS(6199), 2, anon_sym_final, anon_sym_override, - STATE(3417), 2, + STATE(3644), 2, sym__class_name, sym_qualified_type_identifier, - STATE(4350), 2, + STATE(5076), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6159), 2, + STATE(7638), 2, sym_decltype, sym_dependent_type_identifier, - [155991] = 20, + [188066] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4572), 1, + anon_sym_LPAREN2, + ACTIONS(6919), 1, + anon_sym_LBRACK, + ACTIONS(6997), 1, + anon_sym_STAR, + ACTIONS(6999), 1, + anon_sym_AMP_AMP, + ACTIONS(7001), 1, + anon_sym_AMP, + STATE(3888), 1, + sym_parameter_list, + STATE(5457), 1, + sym__function_declarator_seq, + STATE(5602), 1, + sym__abstract_declarator, + STATE(5452), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6502), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [188110] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, + ACTIONS(1329), 1, anon_sym_template, - ACTIONS(1555), 1, + ACTIONS(1973), 1, anon_sym_decltype, - ACTIONS(2928), 1, - anon_sym_COLON_COLON, - ACTIONS(4214), 1, + ACTIONS(4831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4216), 1, - anon_sym___declspec, - ACTIONS(5445), 1, + ACTIONS(5270), 1, anon_sym_LBRACE, - ACTIONS(5447), 1, + ACTIONS(6197), 1, anon_sym_COLON, - ACTIONS(6855), 1, + ACTIONS(6288), 1, + anon_sym_COLON_COLON, + ACTIONS(7746), 1, sym_identifier, - STATE(3133), 1, + STATE(2945), 1, sym_template_type, - STATE(3250), 1, - sym__class_declaration, - STATE(3266), 1, + STATE(3134), 1, sym_field_declaration_list, - STATE(4370), 1, - sym_ms_declspec_modifier, - STATE(5006), 1, + STATE(5712), 1, sym__scope_resolution, - STATE(5348), 1, + STATE(6014), 1, sym_virtual_specifier, - STATE(5948), 1, + STATE(6897), 1, sym_base_class_clause, - ACTIONS(5449), 2, + ACTIONS(6199), 2, anon_sym_final, anon_sym_override, - STATE(3417), 2, + STATE(2753), 2, sym__class_name, sym_qualified_type_identifier, - STATE(4350), 2, + STATE(4720), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6159), 2, + STATE(7638), 2, sym_decltype, sym_dependent_type_identifier, - [156056] = 20, + [188166] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5080), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(5082), 18, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [188194] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7879), 1, + sym_identifier, + ACTIONS(7883), 1, + anon_sym_LPAREN2, + ACTIONS(7885), 1, + anon_sym_defined, + ACTIONS(8005), 1, + sym_number_literal, + ACTIONS(7887), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(7889), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7893), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(5036), 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, + [188234] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, + ACTIONS(1329), 1, anon_sym_template, - ACTIONS(1555), 1, + ACTIONS(1973), 1, anon_sym_decltype, - ACTIONS(2928), 1, - anon_sym_COLON_COLON, - ACTIONS(4214), 1, + ACTIONS(4831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4216), 1, - anon_sym___declspec, - ACTIONS(5445), 1, + ACTIONS(6195), 1, anon_sym_LBRACE, - ACTIONS(5447), 1, + ACTIONS(6197), 1, anon_sym_COLON, - ACTIONS(6855), 1, + ACTIONS(7728), 1, sym_identifier, - STATE(3133), 1, + ACTIONS(7752), 1, + anon_sym_COLON_COLON, + STATE(3578), 1, sym_template_type, - STATE(3242), 1, - sym__class_declaration, - STATE(3266), 1, + STATE(3685), 1, sym_field_declaration_list, - STATE(4370), 1, - sym_ms_declspec_modifier, - STATE(5006), 1, + STATE(5791), 1, sym__scope_resolution, - STATE(5348), 1, + STATE(6149), 1, sym_virtual_specifier, - STATE(5948), 1, + STATE(6754), 1, sym_base_class_clause, - ACTIONS(5449), 2, + ACTIONS(6199), 2, anon_sym_final, anon_sym_override, - STATE(3417), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(4350), 2, + STATE(4720), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6159), 2, + STATE(4785), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7638), 2, sym_decltype, sym_dependent_type_identifier, - [156121] = 20, + [188290] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, + ACTIONS(1329), 1, anon_sym_template, - ACTIONS(1555), 1, + ACTIONS(1973), 1, anon_sym_decltype, - ACTIONS(4214), 1, + ACTIONS(4831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4216), 1, - anon_sym___declspec, - ACTIONS(4290), 1, + ACTIONS(5045), 1, anon_sym_LBRACE, - ACTIONS(5447), 1, + ACTIONS(6197), 1, anon_sym_COLON, - ACTIONS(6546), 1, + ACTIONS(7514), 1, anon_sym_COLON_COLON, - ACTIONS(6817), 1, + ACTIONS(7664), 1, sym_identifier, - STATE(2192), 1, + STATE(2718), 1, sym_template_type, - STATE(2727), 1, - sym__class_declaration, - STATE(2728), 1, + STATE(2762), 1, sym_field_declaration_list, - STATE(4383), 1, - sym_ms_declspec_modifier, - STATE(5036), 1, + STATE(5735), 1, sym__scope_resolution, - STATE(5253), 1, + STATE(6116), 1, sym_virtual_specifier, - STATE(5940), 1, + STATE(6735), 1, sym_base_class_clause, - ACTIONS(5449), 2, + ACTIONS(6199), 2, anon_sym_final, anon_sym_override, - STATE(1985), 2, + STATE(2490), 2, sym__class_name, sym_qualified_type_identifier, - STATE(4385), 2, + STATE(4983), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6159), 2, + STATE(7638), 2, sym_decltype, sym_dependent_type_identifier, - [156186] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1489), 1, - anon_sym_LBRACE, - ACTIONS(1521), 1, - anon_sym_operator, - ACTIONS(6291), 1, - sym_identifier, - ACTIONS(6293), 1, - anon_sym_LPAREN2, - ACTIONS(6295), 1, - anon_sym_STAR, - ACTIONS(6297), 1, - anon_sym_AMP_AMP, - ACTIONS(6299), 1, - anon_sym_AMP, - ACTIONS(6869), 1, - anon_sym_SEMI, - ACTIONS(6871), 1, - anon_sym_EQ, - ACTIONS(6873), 1, - anon_sym_COLON, - STATE(4329), 1, - sym__field_declarator, - STATE(6059), 1, - sym_ms_based_modifier, - STATE(6552), 1, - sym_initializer_list, - STATE(6553), 1, - sym_bitfield_clause, - STATE(4964), 8, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - sym_reference_field_declarator, - sym_template_method, - sym_operator_name, - [156245] = 20, + [188346] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, + ACTIONS(1329), 1, anon_sym_template, - ACTIONS(1555), 1, + ACTIONS(1973), 1, anon_sym_decltype, - ACTIONS(4214), 1, + ACTIONS(4831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4216), 1, - anon_sym___declspec, - ACTIONS(4290), 1, + ACTIONS(5045), 1, anon_sym_LBRACE, - ACTIONS(5447), 1, + ACTIONS(6197), 1, anon_sym_COLON, - ACTIONS(6546), 1, + ACTIONS(7514), 1, anon_sym_COLON_COLON, - ACTIONS(6817), 1, + ACTIONS(7664), 1, sym_identifier, - STATE(2192), 1, + STATE(2718), 1, sym_template_type, - STATE(2726), 1, - sym__class_declaration, - STATE(2728), 1, + STATE(2762), 1, sym_field_declaration_list, - STATE(4383), 1, - sym_ms_declspec_modifier, - STATE(5036), 1, + STATE(5735), 1, sym__scope_resolution, - STATE(5253), 1, + STATE(6116), 1, sym_virtual_specifier, - STATE(5940), 1, + STATE(6735), 1, sym_base_class_clause, - ACTIONS(5449), 2, + ACTIONS(6199), 2, anon_sym_final, anon_sym_override, - STATE(1985), 2, + STATE(2490), 2, sym__class_name, sym_qualified_type_identifier, - STATE(4385), 2, + STATE(4720), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6159), 2, + STATE(7638), 2, sym_decltype, sym_dependent_type_identifier, - [156310] = 20, + [188402] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, + ACTIONS(1329), 1, anon_sym_template, - ACTIONS(1555), 1, + ACTIONS(1973), 1, anon_sym_decltype, - ACTIONS(2928), 1, + ACTIONS(3663), 1, anon_sym_COLON_COLON, - ACTIONS(4214), 1, + ACTIONS(4831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4216), 1, - anon_sym___declspec, - ACTIONS(5445), 1, + ACTIONS(6195), 1, anon_sym_LBRACE, - ACTIONS(5447), 1, + ACTIONS(6197), 1, anon_sym_COLON, - ACTIONS(6855), 1, + ACTIONS(7728), 1, sym_identifier, - STATE(3133), 1, + STATE(3578), 1, sym_template_type, - STATE(3250), 1, - sym__class_declaration, - STATE(3266), 1, + STATE(3685), 1, sym_field_declaration_list, - STATE(4370), 1, - sym_ms_declspec_modifier, - STATE(5006), 1, + STATE(5779), 1, sym__scope_resolution, - STATE(5348), 1, + STATE(6149), 1, sym_virtual_specifier, - STATE(5948), 1, + STATE(6754), 1, sym_base_class_clause, - ACTIONS(5449), 2, + ACTIONS(6199), 2, anon_sym_final, anon_sym_override, - STATE(3394), 2, + STATE(3644), 2, sym__class_name, sym_qualified_type_identifier, - STATE(4350), 2, + STATE(4720), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6159), 2, + STATE(7638), 2, sym_decltype, sym_dependent_type_identifier, - [156375] = 20, + [188458] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(4131), 1, - anon_sym_LBRACE, - ACTIONS(4214), 1, + ACTIONS(7903), 1, + anon_sym_SLASH, + ACTIONS(7911), 1, + anon_sym_CARET, + ACTIONS(7913), 1, + anon_sym_AMP, + ACTIONS(7969), 1, + anon_sym_PIPE, + ACTIONS(7899), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7901), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7915), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7917), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(7919), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(7921), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7967), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + [188504] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4216), 1, - anon_sym___declspec, - ACTIONS(5447), 1, - anon_sym_COLON, - ACTIONS(6524), 1, - anon_sym_COLON_COLON, - ACTIONS(6827), 1, - sym_identifier, - STATE(1933), 1, - sym_template_type, - STATE(2046), 1, - sym_field_declaration_list, - STATE(2052), 1, - sym__class_declaration, - STATE(4376), 1, - sym_ms_declspec_modifier, - STATE(5022), 1, - sym__scope_resolution, - STATE(5309), 1, - sym_virtual_specifier, - STATE(5885), 1, - sym_base_class_clause, - ACTIONS(5449), 2, + ACTIONS(6363), 1, + anon_sym_noexcept, + ACTIONS(6365), 1, + anon_sym_throw, + ACTIONS(6409), 1, + anon_sym_LBRACK, + ACTIONS(6589), 1, + anon_sym_DASH_GT, + ACTIONS(6591), 1, + anon_sym_requires, + STATE(5436), 1, + sym_requires_clause, + STATE(5618), 1, + sym_trailing_return_type, + ACTIONS(6528), 2, anon_sym_final, anon_sym_override, - STATE(1909), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(4377), 2, + STATE(5229), 2, + sym_virtual_specifier, + aux_sym__function_declarator_seq_repeat2, + STATE(5233), 2, + sym_noexcept, + sym_throw_specifier, + STATE(5236), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6159), 2, - sym_decltype, - sym_dependent_type_identifier, - [156440] = 20, + ACTIONS(6407), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_GT2, + [188554] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, + ACTIONS(1329), 1, anon_sym_template, - ACTIONS(1555), 1, + ACTIONS(1973), 1, anon_sym_decltype, - ACTIONS(4131), 1, - anon_sym_LBRACE, - ACTIONS(4214), 1, + ACTIONS(4831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4216), 1, - anon_sym___declspec, - ACTIONS(5447), 1, + ACTIONS(6197), 1, anon_sym_COLON, - ACTIONS(6524), 1, + ACTIONS(6312), 1, anon_sym_COLON_COLON, - ACTIONS(6827), 1, + ACTIONS(6458), 1, + anon_sym_LBRACE, + ACTIONS(7728), 1, sym_identifier, - STATE(1933), 1, + STATE(3578), 1, sym_template_type, - STATE(2046), 1, + STATE(3955), 1, sym_field_declaration_list, - STATE(2048), 1, - sym__class_declaration, - STATE(4376), 1, - sym_ms_declspec_modifier, - STATE(5022), 1, + STATE(5765), 1, sym__scope_resolution, - STATE(5309), 1, + STATE(6017), 1, sym_virtual_specifier, - STATE(5885), 1, + STATE(6913), 1, sym_base_class_clause, - ACTIONS(5449), 2, + ACTIONS(6199), 2, anon_sym_final, anon_sym_override, - STATE(1909), 2, + STATE(3842), 2, sym__class_name, sym_qualified_type_identifier, - STATE(4377), 2, + STATE(4720), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6159), 2, + STATE(7638), 2, sym_decltype, sym_dependent_type_identifier, - [156505] = 20, + [188610] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, + ACTIONS(1329), 1, anon_sym_template, - ACTIONS(1555), 1, + ACTIONS(1973), 1, anon_sym_decltype, - ACTIONS(4131), 1, - anon_sym_LBRACE, - ACTIONS(4214), 1, + ACTIONS(4831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4216), 1, - anon_sym___declspec, - ACTIONS(5447), 1, - anon_sym_COLON, - ACTIONS(6524), 1, + ACTIONS(5102), 1, anon_sym_COLON_COLON, - ACTIONS(6827), 1, + ACTIONS(6197), 1, + anon_sym_COLON, + ACTIONS(6458), 1, + anon_sym_LBRACE, + ACTIONS(7740), 1, sym_identifier, - STATE(1933), 1, + STATE(3578), 1, sym_template_type, - STATE(2046), 1, + STATE(3955), 1, sym_field_declaration_list, - STATE(2047), 1, - sym__class_declaration, - STATE(4376), 1, - sym_ms_declspec_modifier, - STATE(5022), 1, + STATE(5718), 1, sym__scope_resolution, - STATE(5309), 1, + STATE(6017), 1, sym_virtual_specifier, - STATE(5885), 1, + STATE(6913), 1, sym_base_class_clause, - ACTIONS(5449), 2, + ACTIONS(6199), 2, anon_sym_final, anon_sym_override, - STATE(1909), 2, + STATE(3842), 2, sym__class_name, sym_qualified_type_identifier, - STATE(4377), 2, + STATE(4720), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6159), 2, + STATE(7638), 2, sym_decltype, sym_dependent_type_identifier, - [156570] = 20, + [188666] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, + ACTIONS(1329), 1, anon_sym_template, - ACTIONS(1555), 1, + ACTIONS(1973), 1, anon_sym_decltype, - ACTIONS(2928), 1, + ACTIONS(3663), 1, anon_sym_COLON_COLON, - ACTIONS(4214), 1, + ACTIONS(4831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4216), 1, - anon_sym___declspec, - ACTIONS(5445), 1, + ACTIONS(6195), 1, anon_sym_LBRACE, - ACTIONS(5447), 1, + ACTIONS(6197), 1, anon_sym_COLON, - ACTIONS(6855), 1, + ACTIONS(7728), 1, sym_identifier, - STATE(3133), 1, + STATE(3578), 1, sym_template_type, - STATE(3242), 1, - sym__class_declaration, - STATE(3266), 1, + STATE(3772), 1, sym_field_declaration_list, - STATE(4370), 1, - sym_ms_declspec_modifier, - STATE(5006), 1, + STATE(5779), 1, sym__scope_resolution, - STATE(5348), 1, + STATE(6152), 1, sym_virtual_specifier, - STATE(5948), 1, + STATE(6933), 1, sym_base_class_clause, - ACTIONS(5449), 2, + ACTIONS(6199), 2, anon_sym_final, anon_sym_override, - STATE(3394), 2, + STATE(3650), 2, sym__class_name, sym_qualified_type_identifier, - STATE(4350), 2, + STATE(4720), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6159), 2, + STATE(7638), 2, sym_decltype, sym_dependent_type_identifier, - [156635] = 20, + [188722] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, + ACTIONS(1329), 1, anon_sym_template, - ACTIONS(1555), 1, + ACTIONS(1973), 1, anon_sym_decltype, - ACTIONS(4214), 1, + ACTIONS(4831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4216), 1, - anon_sym___declspec, - ACTIONS(4290), 1, - anon_sym_LBRACE, - ACTIONS(5447), 1, - anon_sym_COLON, - ACTIONS(6546), 1, + ACTIONS(5102), 1, anon_sym_COLON_COLON, - ACTIONS(6817), 1, + ACTIONS(6197), 1, + anon_sym_COLON, + ACTIONS(6458), 1, + anon_sym_LBRACE, + ACTIONS(7740), 1, sym_identifier, - STATE(2192), 1, + STATE(3578), 1, sym_template_type, - STATE(2724), 1, - sym__class_declaration, - STATE(2728), 1, + STATE(3955), 1, sym_field_declaration_list, - STATE(4383), 1, - sym_ms_declspec_modifier, - STATE(5036), 1, + STATE(5718), 1, sym__scope_resolution, - STATE(5253), 1, + STATE(6017), 1, sym_virtual_specifier, - STATE(5940), 1, + STATE(6913), 1, sym_base_class_clause, - ACTIONS(5449), 2, + ACTIONS(6199), 2, anon_sym_final, anon_sym_override, - STATE(1985), 2, + STATE(3842), 2, sym__class_name, sym_qualified_type_identifier, - STATE(4385), 2, + STATE(5083), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6159), 2, + STATE(7638), 2, sym_decltype, sym_dependent_type_identifier, - [156700] = 20, + [188778] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7879), 1, + sym_identifier, + ACTIONS(7883), 1, + anon_sym_LPAREN2, + ACTIONS(7885), 1, + anon_sym_defined, + ACTIONS(8007), 1, + sym_number_literal, + ACTIONS(7887), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(7889), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7893), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(5038), 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, + [188818] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8011), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(8009), 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, + [188846] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, + ACTIONS(1329), 1, anon_sym_template, - ACTIONS(1555), 1, + ACTIONS(1973), 1, anon_sym_decltype, - ACTIONS(4214), 1, + ACTIONS(4831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4216), 1, - anon_sym___declspec, - ACTIONS(4255), 1, + ACTIONS(5270), 1, anon_sym_LBRACE, - ACTIONS(5447), 1, + ACTIONS(6197), 1, anon_sym_COLON, - ACTIONS(6582), 1, + ACTIONS(6288), 1, anon_sym_COLON_COLON, - ACTIONS(6803), 1, + ACTIONS(7746), 1, sym_identifier, - STATE(2032), 1, + STATE(2945), 1, sym_template_type, - STATE(2681), 1, - sym__class_declaration, - STATE(2682), 1, + STATE(3074), 1, sym_field_declaration_list, - STATE(4404), 1, - sym_ms_declspec_modifier, - STATE(5025), 1, + STATE(5712), 1, sym__scope_resolution, - STATE(5305), 1, + STATE(5972), 1, sym_virtual_specifier, - STATE(5735), 1, + STATE(6935), 1, sym_base_class_clause, - ACTIONS(5449), 2, + ACTIONS(6199), 2, anon_sym_final, anon_sym_override, - STATE(1972), 2, + STATE(2793), 2, sym__class_name, sym_qualified_type_identifier, - STATE(4392), 2, + STATE(4720), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6159), 2, + STATE(7638), 2, sym_decltype, sym_dependent_type_identifier, - [156765] = 20, + [188902] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8015), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(8013), 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, + [188930] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, + ACTIONS(1329), 1, anon_sym_template, - ACTIONS(1555), 1, + ACTIONS(1973), 1, anon_sym_decltype, - ACTIONS(2928), 1, - anon_sym_COLON_COLON, - ACTIONS(4214), 1, + ACTIONS(4831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4216), 1, - anon_sym___declspec, - ACTIONS(5445), 1, + ACTIONS(5270), 1, anon_sym_LBRACE, - ACTIONS(5447), 1, + ACTIONS(6197), 1, anon_sym_COLON, - ACTIONS(6855), 1, + ACTIONS(6288), 1, + anon_sym_COLON_COLON, + ACTIONS(7746), 1, sym_identifier, - STATE(3133), 1, + STATE(2945), 1, sym_template_type, - STATE(3242), 1, - sym__class_declaration, - STATE(3266), 1, + STATE(3074), 1, sym_field_declaration_list, - STATE(4370), 1, - sym_ms_declspec_modifier, - STATE(5006), 1, + STATE(5712), 1, sym__scope_resolution, - STATE(5348), 1, + STATE(5972), 1, sym_virtual_specifier, - STATE(5948), 1, + STATE(6935), 1, sym_base_class_clause, - ACTIONS(5449), 2, + ACTIONS(6199), 2, anon_sym_final, anon_sym_override, - STATE(3435), 2, + STATE(2793), 2, sym__class_name, sym_qualified_type_identifier, - STATE(4350), 2, + STATE(5016), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6159), 2, + STATE(7638), 2, sym_decltype, sym_dependent_type_identifier, - [156830] = 20, + [188986] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(2928), 1, - anon_sym_COLON_COLON, - ACTIONS(4214), 1, + ACTIONS(7879), 1, + sym_identifier, + ACTIONS(7883), 1, + anon_sym_LPAREN2, + ACTIONS(7885), 1, + anon_sym_defined, + ACTIONS(8017), 1, + sym_number_literal, + ACTIONS(7887), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(7889), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7893), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(5047), 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, + [189026] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4216), 1, - anon_sym___declspec, - ACTIONS(5445), 1, + ACTIONS(6361), 1, + anon_sym_DASH_GT, + ACTIONS(6367), 1, + anon_sym_requires, + ACTIONS(8021), 1, + anon_sym_LBRACK, + STATE(5292), 1, + sym_trailing_return_type, + STATE(5388), 1, + sym_requires_clause, + ACTIONS(4880), 2, + anon_sym_final, + anon_sym_override, + STATE(4720), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5223), 2, + sym_virtual_specifier, + aux_sym__function_declarator_seq_repeat2, + ACTIONS(8019), 8, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(5447), 1, - anon_sym_COLON, - ACTIONS(6855), 1, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_try, + [189070] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7903), 1, + anon_sym_SLASH, + ACTIONS(7913), 1, + anon_sym_AMP, + ACTIONS(7969), 1, + anon_sym_PIPE, + ACTIONS(7899), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7901), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7915), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7917), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(7919), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(7921), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7967), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + [189114] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7879), 1, sym_identifier, - STATE(3133), 1, - sym_template_type, - STATE(3250), 1, - sym__class_declaration, - STATE(3266), 1, - sym_field_declaration_list, - STATE(4370), 1, - sym_ms_declspec_modifier, - STATE(5006), 1, - sym__scope_resolution, - STATE(5348), 1, - sym_virtual_specifier, - STATE(5948), 1, - sym_base_class_clause, - ACTIONS(5449), 2, + ACTIONS(7883), 1, + anon_sym_LPAREN2, + ACTIONS(7885), 1, + anon_sym_defined, + ACTIONS(8023), 1, + sym_number_literal, + ACTIONS(7887), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(7889), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7893), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(5053), 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, + [189154] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7903), 1, + anon_sym_SLASH, + ACTIONS(7899), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7901), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7915), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7917), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(7919), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(7921), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7969), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(7967), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + [189196] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7879), 1, + sym_identifier, + ACTIONS(7883), 1, + anon_sym_LPAREN2, + ACTIONS(7885), 1, + anon_sym_defined, + ACTIONS(8025), 1, + sym_number_literal, + ACTIONS(7887), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(7889), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7893), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(5054), 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, + [189236] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7939), 1, + sym_identifier, + ACTIONS(7941), 1, + anon_sym_LPAREN2, + ACTIONS(7943), 1, + anon_sym_defined, + ACTIONS(8027), 1, + sym_number_literal, + ACTIONS(7945), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(7947), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7951), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(5129), 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, + [189276] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7879), 1, + sym_identifier, + ACTIONS(7883), 1, + anon_sym_LPAREN2, + ACTIONS(7885), 1, + anon_sym_defined, + ACTIONS(8029), 1, + sym_number_literal, + ACTIONS(7887), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(7889), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7893), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(5130), 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, + [189316] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6361), 1, + anon_sym_DASH_GT, + ACTIONS(6367), 1, + anon_sym_requires, + ACTIONS(8033), 1, + anon_sym_LBRACK, + STATE(5291), 1, + sym_trailing_return_type, + STATE(5419), 1, + sym_requires_clause, + ACTIONS(4880), 2, anon_sym_final, anon_sym_override, - STATE(3435), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(4350), 2, + STATE(5035), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6159), 2, - sym_decltype, - sym_dependent_type_identifier, - [156895] = 14, + STATE(5258), 2, + sym_virtual_specifier, + aux_sym__function_declarator_seq_repeat2, + ACTIONS(8031), 8, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_try, + [189360] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7879), 1, + sym_identifier, + ACTIONS(7883), 1, + anon_sym_LPAREN2, + ACTIONS(7885), 1, + anon_sym_defined, + ACTIONS(8035), 1, + sym_number_literal, + ACTIONS(7887), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(7889), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7893), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(5113), 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, + [189400] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5665), 1, - anon_sym_noexcept, - ACTIONS(5667), 1, - anon_sym_throw, - ACTIONS(5675), 1, - anon_sym_LBRACK, - ACTIONS(5709), 1, + ACTIONS(7939), 1, + sym_identifier, + ACTIONS(7941), 1, + anon_sym_LPAREN2, + ACTIONS(7943), 1, + anon_sym_defined, + ACTIONS(8037), 1, + sym_number_literal, + ACTIONS(7945), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(7947), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7951), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(5119), 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, + [189440] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5733), 1, + ACTIONS(6361), 1, anon_sym_DASH_GT, - ACTIONS(5735), 1, + ACTIONS(6367), 1, anon_sym_requires, - STATE(4591), 1, + ACTIONS(8033), 1, + anon_sym_LBRACK, + STATE(5291), 1, sym_trailing_return_type, - STATE(4716), 1, + STATE(5419), 1, sym_requires_clause, - ACTIONS(4135), 2, + ACTIONS(4880), 2, anon_sym_final, anon_sym_override, - STATE(4415), 2, - sym_noexcept, - sym_throw_specifier, - STATE(4435), 2, + STATE(4720), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(4578), 2, + STATE(5258), 2, sym_virtual_specifier, aux_sym__function_declarator_seq_repeat2, - ACTIONS(5673), 7, + ACTIONS(8031), 8, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_COLON, + anon_sym_GT2, anon_sym_try, - [156948] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(4214), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(4216), 1, - anon_sym___declspec, - ACTIONS(4641), 1, - anon_sym_COLON_COLON, - ACTIONS(5445), 1, - anon_sym_LBRACE, - ACTIONS(5447), 1, - anon_sym_COLON, - ACTIONS(6857), 1, - sym_identifier, - STATE(3133), 1, - sym_template_type, - STATE(3250), 1, - sym__class_declaration, - STATE(3266), 1, - sym_field_declaration_list, - STATE(4294), 1, - sym_ms_declspec_modifier, - STATE(5040), 1, - sym__scope_resolution, - STATE(5348), 1, - sym_virtual_specifier, - STATE(5948), 1, - sym_base_class_clause, - ACTIONS(5449), 2, - anon_sym_final, - anon_sym_override, - STATE(3419), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(4305), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6159), 2, - sym_decltype, - sym_dependent_type_identifier, - [157013] = 20, + [189484] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, + ACTIONS(1329), 1, anon_sym_template, - ACTIONS(1555), 1, + ACTIONS(1973), 1, anon_sym_decltype, - ACTIONS(4214), 1, + ACTIONS(4831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4216), 1, - anon_sym___declspec, - ACTIONS(4830), 1, - anon_sym_LBRACE, - ACTIONS(5447), 1, + ACTIONS(6197), 1, anon_sym_COLON, - ACTIONS(6568), 1, + ACTIONS(6266), 1, anon_sym_COLON_COLON, - ACTIONS(6841), 1, + ACTIONS(7626), 1, + anon_sym_LBRACE, + ACTIONS(7730), 1, sym_identifier, - STATE(2795), 1, + STATE(4638), 1, sym_template_type, - STATE(2976), 1, - sym__class_declaration, - STATE(2990), 1, + STATE(4766), 1, sym_field_declaration_list, - STATE(4393), 1, - sym_ms_declspec_modifier, - STATE(5020), 1, + STATE(5766), 1, sym__scope_resolution, - STATE(5218), 1, + STATE(6043), 1, sym_virtual_specifier, - STATE(5768), 1, + STATE(6741), 1, sym_base_class_clause, - ACTIONS(5449), 2, + ACTIONS(6199), 2, anon_sym_final, anon_sym_override, - STATE(2526), 2, + STATE(4693), 2, sym__class_name, sym_qualified_type_identifier, - STATE(4375), 2, + STATE(4720), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6159), 2, + STATE(7638), 2, sym_decltype, sym_dependent_type_identifier, - [157078] = 17, + [189540] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1489), 1, - anon_sym_LBRACE, - ACTIONS(1521), 1, - anon_sym_operator, - ACTIONS(6291), 1, - sym_identifier, - ACTIONS(6293), 1, - anon_sym_LPAREN2, - ACTIONS(6295), 1, + ACTIONS(7903), 1, + anon_sym_SLASH, + ACTIONS(7899), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7901), 2, anon_sym_STAR, - ACTIONS(6297), 1, - anon_sym_AMP_AMP, - ACTIONS(6299), 1, + anon_sym_PERCENT, + ACTIONS(7917), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(7919), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(7921), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7969), 2, + anon_sym_PIPE, anon_sym_AMP, - ACTIONS(6873), 1, + ACTIONS(7967), 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, + [189580] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6466), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7736), 1, anon_sym_COLON, - ACTIONS(6875), 1, + ACTIONS(7975), 1, + anon_sym_COMMA, + ACTIONS(7977), 1, + anon_sym_LPAREN2, + ACTIONS(7983), 1, + anon_sym_LBRACK, + ACTIONS(8039), 1, anon_sym_SEMI, - ACTIONS(6877), 1, + ACTIONS(8041), 1, + anon_sym_LBRACE, + ACTIONS(8043), 1, anon_sym_EQ, - STATE(4340), 1, - sym__field_declarator, - STATE(6053), 1, + ACTIONS(8045), 1, + anon_sym_try, + STATE(2548), 1, + sym_try_statement, + STATE(2549), 1, + sym_delete_method_clause, + STATE(2550), 1, + sym_default_method_clause, + STATE(2551), 1, + sym_compound_statement, + STATE(3839), 1, + sym_parameter_list, + STATE(5684), 1, + sym__function_declarator_seq, + STATE(5837), 1, + aux_sym_field_declaration_repeat1, + STATE(7203), 1, sym_initializer_list, - STATE(6055), 1, + STATE(7205), 1, sym_bitfield_clause, - STATE(6059), 1, - sym_ms_based_modifier, - STATE(4964), 8, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - sym_reference_field_declarator, - sym_template_method, - sym_operator_name, - [157137] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(4214), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(4216), 1, - anon_sym___declspec, - ACTIONS(4641), 1, - anon_sym_COLON_COLON, - ACTIONS(5445), 1, - anon_sym_LBRACE, - ACTIONS(5447), 1, - anon_sym_COLON, - ACTIONS(6857), 1, - sym_identifier, - STATE(3133), 1, - sym_template_type, - STATE(3242), 1, - sym__class_declaration, - STATE(3266), 1, - sym_field_declaration_list, - STATE(4294), 1, - sym_ms_declspec_modifier, - STATE(5040), 1, - sym__scope_resolution, - STATE(5348), 1, - sym_virtual_specifier, - STATE(5948), 1, - sym_base_class_clause, - ACTIONS(5449), 2, - anon_sym_final, - anon_sym_override, - STATE(3419), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(4305), 2, + STATE(5649), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6159), 2, - sym_decltype, - sym_dependent_type_identifier, - [157202] = 20, + [189642] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, + ACTIONS(1329), 1, anon_sym_template, - ACTIONS(1555), 1, + ACTIONS(1973), 1, anon_sym_decltype, - ACTIONS(4214), 1, + ACTIONS(4831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4216), 1, - anon_sym___declspec, - ACTIONS(4830), 1, - anon_sym_LBRACE, - ACTIONS(5447), 1, + ACTIONS(6197), 1, anon_sym_COLON, - ACTIONS(6568), 1, + ACTIONS(6312), 1, anon_sym_COLON_COLON, - ACTIONS(6841), 1, + ACTIONS(6458), 1, + anon_sym_LBRACE, + ACTIONS(7728), 1, sym_identifier, - STATE(2795), 1, + STATE(3578), 1, sym_template_type, - STATE(2977), 1, - sym__class_declaration, - STATE(2990), 1, + STATE(3977), 1, sym_field_declaration_list, - STATE(4393), 1, - sym_ms_declspec_modifier, - STATE(5020), 1, + STATE(5765), 1, sym__scope_resolution, - STATE(5218), 1, + STATE(6102), 1, sym_virtual_specifier, - STATE(5768), 1, + STATE(6924), 1, sym_base_class_clause, - ACTIONS(5449), 2, + ACTIONS(6199), 2, anon_sym_final, anon_sym_override, - STATE(2526), 2, + STATE(3830), 2, sym__class_name, sym_qualified_type_identifier, - STATE(4375), 2, + STATE(4720), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6159), 2, + STATE(7638), 2, sym_decltype, sym_dependent_type_identifier, - [157267] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6813), 1, - anon_sym_LBRACE, - STATE(4232), 1, - sym_enumerator_list, - ACTIONS(4349), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(4347), 19, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [157302] = 14, + [189698] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5665), 1, - anon_sym_noexcept, - ACTIONS(5667), 1, - anon_sym_throw, - ACTIONS(5709), 1, + ACTIONS(4831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5733), 1, + ACTIONS(6361), 1, anon_sym_DASH_GT, - ACTIONS(5735), 1, + ACTIONS(6367), 1, anon_sym_requires, - ACTIONS(6853), 1, + ACTIONS(7726), 1, anon_sym_LBRACK, - STATE(4634), 1, + STATE(5276), 1, sym_trailing_return_type, - STATE(4659), 1, + STATE(5358), 1, sym_requires_clause, - ACTIONS(4135), 2, + ACTIONS(4880), 2, anon_sym_final, anon_sym_override, - STATE(4419), 2, + STATE(5045), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(4454), 2, - sym_noexcept, - sym_throw_specifier, - STATE(4533), 2, + STATE(5288), 2, sym_virtual_specifier, aux_sym__function_declarator_seq_repeat2, - ACTIONS(6851), 7, + ACTIONS(7724), 8, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_COLON, + anon_sym_GT2, anon_sym_try, - [157355] = 20, + [189742] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, + ACTIONS(1329), 1, anon_sym_template, - ACTIONS(1555), 1, + ACTIONS(1973), 1, anon_sym_decltype, - ACTIONS(4162), 1, - anon_sym_LBRACE, - ACTIONS(4214), 1, + ACTIONS(4831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4216), 1, - anon_sym___declspec, - ACTIONS(5447), 1, + ACTIONS(6197), 1, anon_sym_COLON, - ACTIONS(6626), 1, + ACTIONS(6266), 1, anon_sym_COLON_COLON, - ACTIONS(6793), 1, - sym_identifier, - STATE(1979), 1, - sym_template_type, - STATE(2334), 1, - sym_field_declaration_list, - STATE(2335), 1, - sym__class_declaration, - STATE(4326), 1, - sym_ms_declspec_modifier, - STATE(5001), 1, - sym__scope_resolution, - STATE(5354), 1, - sym_virtual_specifier, - STATE(5752), 1, - sym_base_class_clause, - ACTIONS(5449), 2, - anon_sym_final, - anon_sym_override, - STATE(1925), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(4327), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6159), 2, - sym_decltype, - sym_dependent_type_identifier, - [157420] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(4162), 1, + ACTIONS(7626), 1, anon_sym_LBRACE, - ACTIONS(4214), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(4216), 1, - anon_sym___declspec, - ACTIONS(5447), 1, - anon_sym_COLON, - ACTIONS(6626), 1, - anon_sym_COLON_COLON, - ACTIONS(6793), 1, + ACTIONS(7730), 1, sym_identifier, - STATE(1979), 1, + STATE(4638), 1, sym_template_type, - STATE(2334), 1, + STATE(4766), 1, sym_field_declaration_list, - STATE(2342), 1, - sym__class_declaration, - STATE(4326), 1, - sym_ms_declspec_modifier, - STATE(5001), 1, + STATE(5766), 1, sym__scope_resolution, - STATE(5354), 1, + STATE(6043), 1, sym_virtual_specifier, - STATE(5752), 1, + STATE(6741), 1, sym_base_class_clause, - ACTIONS(5449), 2, + ACTIONS(6199), 2, anon_sym_final, anon_sym_override, - STATE(1925), 2, + STATE(4693), 2, sym__class_name, sym_qualified_type_identifier, - STATE(4327), 2, + STATE(4968), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6159), 2, + STATE(7638), 2, sym_decltype, sym_dependent_type_identifier, - [157485] = 20, + [189798] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(4214), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(4216), 1, - anon_sym___declspec, - ACTIONS(4830), 1, - anon_sym_LBRACE, - ACTIONS(5447), 1, - anon_sym_COLON, - ACTIONS(6568), 1, - anon_sym_COLON_COLON, - ACTIONS(6841), 1, + ACTIONS(7939), 1, sym_identifier, - STATE(2795), 1, - sym_template_type, - STATE(2989), 1, - sym__class_declaration, - STATE(2990), 1, - sym_field_declaration_list, - STATE(4393), 1, - sym_ms_declspec_modifier, - STATE(5020), 1, - sym__scope_resolution, - STATE(5218), 1, - sym_virtual_specifier, - STATE(5768), 1, - sym_base_class_clause, - ACTIONS(5449), 2, - anon_sym_final, - anon_sym_override, - STATE(2526), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(4375), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6159), 2, - sym_decltype, - sym_dependent_type_identifier, - [157550] = 5, + ACTIONS(7941), 1, + anon_sym_LPAREN2, + ACTIONS(7943), 1, + anon_sym_defined, + ACTIONS(8047), 1, + sym_number_literal, + ACTIONS(7945), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(7947), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7951), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(5131), 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, + [189838] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6813), 1, - anon_sym_LBRACE, - STATE(4223), 1, - sym_enumerator_list, - ACTIONS(4332), 2, + ACTIONS(7903), 1, + anon_sym_SLASH, + ACTIONS(7899), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7901), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7921), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7969), 4, + anon_sym_PIPE, anon_sym_AMP, - anon_sym_const, - ACTIONS(4330), 19, - anon_sym_LPAREN2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(7967), 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, + [189874] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7903), 1, + anon_sym_SLASH, + ACTIONS(7899), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7901), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7969), 4, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(7967), 11, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [157585] = 14, + 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, + [189908] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5665), 1, - anon_sym_noexcept, - ACTIONS(5667), 1, - anon_sym_throw, - ACTIONS(5709), 1, + ACTIONS(4831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5733), 1, + ACTIONS(6361), 1, anon_sym_DASH_GT, - ACTIONS(5735), 1, + ACTIONS(6367), 1, anon_sym_requires, - ACTIONS(5952), 1, + ACTIONS(7726), 1, anon_sym_LBRACK, - STATE(4645), 1, + STATE(5276), 1, sym_trailing_return_type, - STATE(4723), 1, + STATE(5358), 1, sym_requires_clause, - ACTIONS(4135), 2, + ACTIONS(4880), 2, anon_sym_final, anon_sym_override, - STATE(4412), 2, + STATE(4720), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(4413), 2, - sym_noexcept, - sym_throw_specifier, - STATE(4538), 2, + STATE(5288), 2, sym_virtual_specifier, aux_sym__function_declarator_seq_repeat2, - ACTIONS(5950), 7, + ACTIONS(7724), 8, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_COLON, + anon_sym_GT2, anon_sym_try, - [157638] = 17, + [189952] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1489), 1, - anon_sym_LBRACE, - ACTIONS(1521), 1, - anon_sym_operator, - ACTIONS(6291), 1, + ACTIONS(7939), 1, sym_identifier, - ACTIONS(6293), 1, + ACTIONS(7941), 1, anon_sym_LPAREN2, - ACTIONS(6295), 1, + ACTIONS(7943), 1, + anon_sym_defined, + ACTIONS(8049), 1, + sym_number_literal, + ACTIONS(7945), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(7947), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7951), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(5132), 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, + [189992] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8053), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(8051), 15, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - ACTIONS(6297), 1, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(6299), 1, - anon_sym_AMP, - ACTIONS(6873), 1, - anon_sym_COLON, - ACTIONS(6879), 1, - anon_sym_SEMI, - ACTIONS(6881), 1, - anon_sym_EQ, - STATE(4332), 1, - sym__field_declarator, - STATE(6059), 1, - sym_ms_based_modifier, - STATE(6430), 1, - sym_initializer_list, - STATE(6431), 1, - sym_bitfield_clause, - STATE(4964), 8, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - sym_reference_field_declarator, - sym_template_method, - sym_operator_name, - [157697] = 20, + 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, + [190020] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(4162), 1, - anon_sym_LBRACE, - ACTIONS(4214), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(4216), 1, - anon_sym___declspec, - ACTIONS(5447), 1, - anon_sym_COLON, - ACTIONS(6626), 1, - anon_sym_COLON_COLON, - ACTIONS(6793), 1, + ACTIONS(7939), 1, sym_identifier, - STATE(1979), 1, - sym_template_type, - STATE(2334), 1, - sym_field_declaration_list, - STATE(2343), 1, - sym__class_declaration, - STATE(4326), 1, - sym_ms_declspec_modifier, - STATE(5001), 1, - sym__scope_resolution, - STATE(5354), 1, - sym_virtual_specifier, - STATE(5752), 1, - sym_base_class_clause, - ACTIONS(5449), 2, - anon_sym_final, - anon_sym_override, - STATE(1925), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(4327), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6159), 2, - sym_decltype, - sym_dependent_type_identifier, - [157762] = 20, + ACTIONS(7941), 1, + anon_sym_LPAREN2, + ACTIONS(7943), 1, + anon_sym_defined, + ACTIONS(8055), 1, + sym_number_literal, + ACTIONS(7945), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(7947), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7951), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(5135), 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, + [190060] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, + ACTIONS(1329), 1, anon_sym_template, - ACTIONS(1555), 1, + ACTIONS(1973), 1, anon_sym_decltype, - ACTIONS(2928), 1, - anon_sym_COLON_COLON, - ACTIONS(4214), 1, + ACTIONS(4831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4216), 1, - anon_sym___declspec, - ACTIONS(5445), 1, + ACTIONS(6195), 1, anon_sym_LBRACE, - ACTIONS(5447), 1, + ACTIONS(6197), 1, anon_sym_COLON, - ACTIONS(6855), 1, + ACTIONS(6312), 1, + anon_sym_COLON_COLON, + ACTIONS(7728), 1, sym_identifier, - STATE(3133), 1, + STATE(3578), 1, sym_template_type, - STATE(3260), 1, - sym__class_declaration, - STATE(3266), 1, + STATE(3685), 1, sym_field_declaration_list, - STATE(4370), 1, - sym_ms_declspec_modifier, - STATE(5006), 1, + STATE(5765), 1, sym__scope_resolution, - STATE(5348), 1, + STATE(6149), 1, sym_virtual_specifier, - STATE(5948), 1, + STATE(6754), 1, sym_base_class_clause, - ACTIONS(5449), 2, + ACTIONS(6199), 2, anon_sym_final, anon_sym_override, - STATE(3415), 2, + STATE(3865), 2, sym__class_name, sym_qualified_type_identifier, - STATE(4350), 2, + STATE(5072), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6159), 2, + STATE(7638), 2, sym_decltype, sym_dependent_type_identifier, - [157827] = 20, + [190116] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7939), 1, + sym_identifier, + ACTIONS(7941), 1, + anon_sym_LPAREN2, + ACTIONS(7943), 1, + anon_sym_defined, + ACTIONS(8057), 1, + sym_number_literal, + ACTIONS(7945), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(7947), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7951), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(5138), 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, + [190156] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7939), 1, + sym_identifier, + ACTIONS(7941), 1, + anon_sym_LPAREN2, + ACTIONS(7943), 1, + anon_sym_defined, + ACTIONS(8059), 1, + sym_number_literal, + ACTIONS(7945), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(7947), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7951), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(5102), 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, + [190196] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, + ACTIONS(1329), 1, anon_sym_template, - ACTIONS(1555), 1, + ACTIONS(1973), 1, anon_sym_decltype, - ACTIONS(2928), 1, - anon_sym_COLON_COLON, - ACTIONS(4214), 1, + ACTIONS(4831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4216), 1, - anon_sym___declspec, - ACTIONS(5445), 1, + ACTIONS(6195), 1, anon_sym_LBRACE, - ACTIONS(5447), 1, + ACTIONS(6197), 1, anon_sym_COLON, - ACTIONS(6855), 1, + ACTIONS(6312), 1, + anon_sym_COLON_COLON, + ACTIONS(7728), 1, sym_identifier, - STATE(3133), 1, + STATE(3578), 1, sym_template_type, - STATE(3242), 1, - sym__class_declaration, - STATE(3266), 1, + STATE(3685), 1, sym_field_declaration_list, - STATE(4370), 1, - sym_ms_declspec_modifier, - STATE(5006), 1, + STATE(5765), 1, sym__scope_resolution, - STATE(5348), 1, + STATE(6149), 1, sym_virtual_specifier, - STATE(5948), 1, + STATE(6754), 1, sym_base_class_clause, - ACTIONS(5449), 2, + ACTIONS(6199), 2, anon_sym_final, anon_sym_override, - STATE(3415), 2, + STATE(3865), 2, sym__class_name, sym_qualified_type_identifier, - STATE(4350), 2, + STATE(4720), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6159), 2, + STATE(7638), 2, sym_decltype, sym_dependent_type_identifier, - [157892] = 3, + [190252] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4437), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(4435), 20, + ACTIONS(7939), 1, + sym_identifier, + ACTIONS(7941), 1, + anon_sym_LPAREN2, + ACTIONS(7943), 1, + anon_sym_defined, + ACTIONS(8061), 1, + sym_number_literal, + ACTIONS(7945), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(7947), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7951), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(5136), 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, + [190292] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7939), 1, + sym_identifier, + ACTIONS(7941), 1, + anon_sym_LPAREN2, + ACTIONS(7943), 1, + anon_sym_defined, + ACTIONS(8063), 1, + sym_number_literal, + ACTIONS(7945), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(7947), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7951), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(5095), 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, + [190332] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7939), 1, + sym_identifier, + ACTIONS(7941), 1, + anon_sym_LPAREN2, + ACTIONS(7943), 1, + anon_sym_defined, + ACTIONS(8065), 1, + sym_number_literal, + ACTIONS(7945), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(7947), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7951), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(5118), 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, + [190372] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7939), 1, + sym_identifier, + ACTIONS(7941), 1, + anon_sym_LPAREN2, + ACTIONS(7943), 1, + anon_sym_defined, + ACTIONS(8067), 1, + sym_number_literal, + ACTIONS(7945), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(7947), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7951), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(5096), 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, + [190412] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4476), 1, + anon_sym_COLON_COLON, + ACTIONS(6151), 1, + anon_sym_LT, + ACTIONS(8071), 1, anon_sym_LPAREN2, + ACTIONS(8073), 1, anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, + STATE(3608), 1, + sym_template_argument_list, + ACTIONS(4455), 2, + sym_auto, + anon_sym_decltype, + ACTIONS(8069), 13, + anon_sym___based, + anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [157922] = 14, + sym_identifier, + [190450] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1539), 1, - anon_sym_LBRACK, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(6883), 1, + ACTIONS(7939), 1, sym_identifier, - ACTIONS(6885), 1, + ACTIONS(7941), 1, anon_sym_LPAREN2, - ACTIONS(6887), 1, - anon_sym_COLON_COLON, - ACTIONS(6891), 1, - anon_sym_requires, - STATE(2482), 1, - sym_template_type, - STATE(4491), 1, - sym_lambda_capture_specifier, - STATE(5029), 1, - sym__scope_resolution, - ACTIONS(6889), 2, - sym_true, - sym_false, - STATE(6159), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(2455), 8, - sym__class_name, - sym_constraint_conjunction, - sym_constraint_disjunction, - sym__requirement_clause_constraint, - sym_requires_expression, - sym_lambda_expression, - sym_fold_expression, - sym_qualified_type_identifier, - [157974] = 14, + ACTIONS(7943), 1, + anon_sym_defined, + ACTIONS(8075), 1, + sym_number_literal, + ACTIONS(7945), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(7947), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7951), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(5101), 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, + [190490] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1539), 1, - anon_sym_LBRACK, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(4641), 1, - anon_sym_COLON_COLON, - ACTIONS(6857), 1, - sym_identifier, - ACTIONS(6893), 1, + ACTIONS(7903), 1, + anon_sym_SLASH, + ACTIONS(7905), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7907), 1, + anon_sym_AMP_AMP, + ACTIONS(7909), 1, + anon_sym_PIPE, + ACTIONS(7911), 1, + anon_sym_CARET, + ACTIONS(7913), 1, + anon_sym_AMP, + ACTIONS(7899), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7901), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7915), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7917), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(7919), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(7921), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8077), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [190540] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(5088), 1, + aux_sym__typedef_sized_type_specifier, + ACTIONS(8081), 2, anon_sym_LPAREN2, - ACTIONS(6897), 1, - anon_sym_requires, - STATE(3133), 1, - sym_template_type, - STATE(4477), 1, - sym_lambda_capture_specifier, - STATE(5040), 1, - sym__scope_resolution, - ACTIONS(6895), 2, - sym_true, - sym_false, - STATE(6159), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(4532), 8, - sym__class_name, - sym_constraint_conjunction, - sym_constraint_disjunction, - sym__requirement_clause_constraint, - sym_requires_expression, - sym_lambda_expression, - sym_fold_expression, - sym_qualified_type_identifier, - [158026] = 14, + anon_sym_STAR, + ACTIONS(8083), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(8079), 13, + anon_sym___based, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + [190572] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1539), 1, - anon_sym_LBRACK, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(4641), 1, - anon_sym_COLON_COLON, - ACTIONS(6857), 1, + ACTIONS(7939), 1, sym_identifier, - ACTIONS(6893), 1, + ACTIONS(7941), 1, anon_sym_LPAREN2, - ACTIONS(6897), 1, - anon_sym_requires, - STATE(3133), 1, - sym_template_type, - STATE(4477), 1, - sym_lambda_capture_specifier, - STATE(5040), 1, - sym__scope_resolution, - ACTIONS(6899), 2, - sym_true, - sym_false, - STATE(6159), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(4543), 8, - sym__class_name, - sym_constraint_conjunction, - sym_constraint_disjunction, - sym__requirement_clause_constraint, - sym_requires_expression, - sym_lambda_expression, - sym_fold_expression, - sym_qualified_type_identifier, - [158078] = 14, + ACTIONS(7943), 1, + anon_sym_defined, + ACTIONS(8085), 1, + sym_number_literal, + ACTIONS(7945), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(7947), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7951), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(5106), 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, + [190612] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, + ACTIONS(1329), 1, anon_sym_template, - ACTIONS(1539), 1, - anon_sym_LBRACK, - ACTIONS(1555), 1, + ACTIONS(1973), 1, anon_sym_decltype, - ACTIONS(3916), 1, + ACTIONS(4831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6195), 1, + anon_sym_LBRACE, + ACTIONS(6197), 1, + anon_sym_COLON, + ACTIONS(6312), 1, anon_sym_COLON_COLON, - ACTIONS(6857), 1, + ACTIONS(7728), 1, sym_identifier, - ACTIONS(6885), 1, - anon_sym_LPAREN2, - ACTIONS(6891), 1, - anon_sym_requires, - STATE(3133), 1, + STATE(3578), 1, sym_template_type, - STATE(4485), 1, - sym_lambda_capture_specifier, - STATE(5034), 1, + STATE(3772), 1, + sym_field_declaration_list, + STATE(5765), 1, sym__scope_resolution, - ACTIONS(6901), 2, - sym_true, - sym_false, - STATE(6159), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(1859), 8, + STATE(6152), 1, + sym_virtual_specifier, + STATE(6933), 1, + sym_base_class_clause, + ACTIONS(6199), 2, + anon_sym_final, + anon_sym_override, + STATE(3877), 2, sym__class_name, - sym_constraint_conjunction, - sym_constraint_disjunction, - sym__requirement_clause_constraint, - sym_requires_expression, - sym_lambda_expression, - sym_fold_expression, sym_qualified_type_identifier, - [158130] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1539), 1, - anon_sym_LBRACK, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(6785), 1, - anon_sym_requires, - ACTIONS(6903), 1, - sym_identifier, - ACTIONS(6905), 1, - anon_sym_LPAREN2, - ACTIONS(6907), 1, - anon_sym_COLON_COLON, - STATE(2255), 1, - sym_template_type, - STATE(4500), 1, - sym_lambda_capture_specifier, - STATE(5003), 1, - sym__scope_resolution, - ACTIONS(6909), 2, - sym_true, - sym_false, - STATE(6159), 2, + STATE(4720), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7638), 2, sym_decltype, sym_dependent_type_identifier, - STATE(4753), 8, - sym__class_name, - sym_constraint_conjunction, - sym_constraint_disjunction, - sym__requirement_clause_constraint, - sym_requires_expression, - sym_lambda_expression, - sym_fold_expression, - sym_qualified_type_identifier, - [158182] = 14, + [190668] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1539), 1, - anon_sym_LBRACK, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(6785), 1, - anon_sym_requires, - ACTIONS(6903), 1, + ACTIONS(7939), 1, sym_identifier, - ACTIONS(6905), 1, + ACTIONS(7941), 1, anon_sym_LPAREN2, - ACTIONS(6907), 1, - anon_sym_COLON_COLON, - STATE(2255), 1, - sym_template_type, - STATE(4500), 1, - sym_lambda_capture_specifier, - STATE(5003), 1, - sym__scope_resolution, - ACTIONS(6911), 2, - sym_true, - sym_false, - STATE(6159), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(3185), 8, - sym__class_name, - sym_constraint_conjunction, - sym_constraint_disjunction, - sym__requirement_clause_constraint, - sym_requires_expression, - sym_lambda_expression, - sym_fold_expression, - sym_qualified_type_identifier, - [158234] = 3, + ACTIONS(7943), 1, + anon_sym_defined, + ACTIONS(8087), 1, + sym_number_literal, + ACTIONS(7945), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(7947), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7951), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(5112), 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, + [190708] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(4606), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(4604), 20, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(4831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6361), 1, + anon_sym_DASH_GT, + ACTIONS(6367), 1, + anon_sym_requires, + ACTIONS(6544), 1, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, + STATE(5237), 1, + sym_trailing_return_type, + STATE(5360), 1, + sym_requires_clause, + ACTIONS(4880), 2, anon_sym_final, anon_sym_override, - anon_sym_try, - anon_sym_requires, - [158264] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4587), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(4585), 20, + STATE(4720), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5295), 2, + sym_virtual_specifier, + aux_sym__function_declarator_seq_repeat2, + ACTIONS(6542), 8, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, + anon_sym_GT2, anon_sym_try, - anon_sym_requires, - [158294] = 14, + [190752] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, + ACTIONS(1329), 1, anon_sym_template, - ACTIONS(1539), 1, - anon_sym_LBRACK, - ACTIONS(1555), 1, + ACTIONS(1973), 1, anon_sym_decltype, - ACTIONS(6568), 1, + ACTIONS(4831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5045), 1, + anon_sym_LBRACE, + ACTIONS(6197), 1, + anon_sym_COLON, + ACTIONS(6225), 1, anon_sym_COLON_COLON, - ACTIONS(6841), 1, + ACTIONS(7738), 1, sym_identifier, - ACTIONS(6849), 1, - anon_sym_requires, - ACTIONS(6913), 1, - anon_sym_LPAREN2, - STATE(2795), 1, + STATE(2718), 1, sym_template_type, - STATE(4501), 1, - sym_lambda_capture_specifier, - STATE(5020), 1, + STATE(2770), 1, + sym_field_declaration_list, + STATE(5741), 1, sym__scope_resolution, - ACTIONS(6915), 2, - sym_true, - sym_false, - STATE(6159), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(3403), 8, + STATE(6052), 1, + sym_virtual_specifier, + STATE(6742), 1, + sym_base_class_clause, + ACTIONS(6199), 2, + anon_sym_final, + anon_sym_override, + STATE(2451), 2, sym__class_name, - sym_constraint_conjunction, - sym_constraint_disjunction, - sym__requirement_clause_constraint, - sym_requires_expression, - sym_lambda_expression, - sym_fold_expression, sym_qualified_type_identifier, - [158346] = 14, + STATE(4720), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7638), 2, + sym_decltype, + sym_dependent_type_identifier, + [190808] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, + ACTIONS(1329), 1, anon_sym_template, - ACTIONS(1539), 1, - anon_sym_LBRACK, - ACTIONS(1555), 1, + ACTIONS(1973), 1, anon_sym_decltype, - ACTIONS(6524), 1, + ACTIONS(4580), 1, anon_sym_COLON_COLON, - ACTIONS(6827), 1, + ACTIONS(4831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6195), 1, + anon_sym_LBRACE, + ACTIONS(6197), 1, + anon_sym_COLON, + ACTIONS(7740), 1, sym_identifier, - ACTIONS(6835), 1, - anon_sym_requires, - ACTIONS(6917), 1, - anon_sym_LPAREN2, - STATE(1933), 1, + STATE(3578), 1, sym_template_type, - STATE(4479), 1, - sym_lambda_capture_specifier, - STATE(5022), 1, + STATE(3772), 1, + sym_field_declaration_list, + STATE(5733), 1, sym__scope_resolution, - ACTIONS(6919), 2, - sym_true, - sym_false, - STATE(6159), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(2565), 8, + STATE(6152), 1, + sym_virtual_specifier, + STATE(6933), 1, + sym_base_class_clause, + ACTIONS(6199), 2, + anon_sym_final, + anon_sym_override, + STATE(3650), 2, sym__class_name, - sym_constraint_conjunction, - sym_constraint_disjunction, - sym__requirement_clause_constraint, - sym_requires_expression, - sym_lambda_expression, - sym_fold_expression, sym_qualified_type_identifier, - [158398] = 3, + STATE(4720), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7638), 2, + sym_decltype, + sym_dependent_type_identifier, + [190864] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(4614), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(4612), 20, + ACTIONS(4831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6361), 1, + anon_sym_DASH_GT, + ACTIONS(6367), 1, + anon_sym_requires, + ACTIONS(6544), 1, + anon_sym_LBRACK, + STATE(5237), 1, + sym_trailing_return_type, + STATE(5360), 1, + sym_requires_clause, + ACTIONS(4880), 2, + anon_sym_final, + anon_sym_override, + STATE(5055), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5295), 2, + sym_virtual_specifier, + aux_sym__function_declarator_seq_repeat2, + ACTIONS(6542), 8, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, + anon_sym_GT2, anon_sym_try, - anon_sym_requires, - [158428] = 14, + [190908] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, + ACTIONS(1329), 1, anon_sym_template, - ACTIONS(1539), 1, - anon_sym_LBRACK, - ACTIONS(1555), 1, + ACTIONS(1973), 1, anon_sym_decltype, - ACTIONS(5576), 1, + ACTIONS(4831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5270), 1, + anon_sym_LBRACE, + ACTIONS(6197), 1, + anon_sym_COLON, + ACTIONS(7567), 1, anon_sym_COLON_COLON, - ACTIONS(6865), 1, + ACTIONS(7714), 1, sym_identifier, - ACTIONS(6921), 1, - anon_sym_LPAREN2, - ACTIONS(6925), 1, - anon_sym_requires, - STATE(4063), 1, + STATE(2945), 1, sym_template_type, - STATE(4509), 1, - sym_lambda_capture_specifier, - STATE(5024), 1, + STATE(3134), 1, + sym_field_declaration_list, + STATE(5737), 1, sym__scope_resolution, - ACTIONS(6923), 2, - sym_true, - sym_false, - STATE(6159), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(4817), 8, + STATE(6014), 1, + sym_virtual_specifier, + STATE(6897), 1, + sym_base_class_clause, + ACTIONS(6199), 2, + anon_sym_final, + anon_sym_override, + STATE(2753), 2, sym__class_name, - sym_constraint_conjunction, - sym_constraint_disjunction, - sym__requirement_clause_constraint, - sym_requires_expression, - sym_lambda_expression, - sym_fold_expression, sym_qualified_type_identifier, - [158480] = 14, + STATE(4720), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7638), 2, + sym_decltype, + sym_dependent_type_identifier, + [190964] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7939), 1, + sym_identifier, + ACTIONS(7941), 1, + anon_sym_LPAREN2, + ACTIONS(7943), 1, + anon_sym_defined, + ACTIONS(8089), 1, + sym_number_literal, + ACTIONS(7945), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(7947), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7951), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(5109), 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, + [191004] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, + ACTIONS(1329), 1, anon_sym_template, - ACTIONS(1539), 1, - anon_sym_LBRACK, - ACTIONS(1555), 1, + ACTIONS(1973), 1, anon_sym_decltype, - ACTIONS(6568), 1, + ACTIONS(4831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5270), 1, + anon_sym_LBRACE, + ACTIONS(6197), 1, + anon_sym_COLON, + ACTIONS(7567), 1, anon_sym_COLON_COLON, - ACTIONS(6841), 1, + ACTIONS(7714), 1, sym_identifier, - ACTIONS(6849), 1, - anon_sym_requires, - ACTIONS(6913), 1, - anon_sym_LPAREN2, - STATE(2795), 1, + STATE(2945), 1, sym_template_type, - STATE(4501), 1, - sym_lambda_capture_specifier, - STATE(5020), 1, + STATE(3074), 1, + sym_field_declaration_list, + STATE(5737), 1, sym__scope_resolution, - ACTIONS(6927), 2, - sym_true, - sym_false, - STATE(6159), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(3714), 8, + STATE(5972), 1, + sym_virtual_specifier, + STATE(6935), 1, + sym_base_class_clause, + ACTIONS(6199), 2, + anon_sym_final, + anon_sym_override, + STATE(2793), 2, sym__class_name, - sym_constraint_conjunction, - sym_constraint_disjunction, - sym__requirement_clause_constraint, - sym_requires_expression, - sym_lambda_expression, - sym_fold_expression, sym_qualified_type_identifier, - [158532] = 14, + STATE(4720), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7638), 2, + sym_decltype, + sym_dependent_type_identifier, + [191060] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, + ACTIONS(1329), 1, anon_sym_template, - ACTIONS(1539), 1, - anon_sym_LBRACK, - ACTIONS(1555), 1, + ACTIONS(1973), 1, anon_sym_decltype, - ACTIONS(6582), 1, - anon_sym_COLON_COLON, - ACTIONS(6803), 1, + ACTIONS(4831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6195), 1, + anon_sym_LBRACE, + ACTIONS(6197), 1, + anon_sym_COLON, + ACTIONS(7728), 1, sym_identifier, - ACTIONS(6811), 1, - anon_sym_requires, - ACTIONS(6929), 1, - anon_sym_LPAREN2, - STATE(2032), 1, + ACTIONS(7752), 1, + anon_sym_COLON_COLON, + STATE(3578), 1, sym_template_type, - STATE(4464), 1, - sym_lambda_capture_specifier, - STATE(5025), 1, + STATE(3772), 1, + sym_field_declaration_list, + STATE(5791), 1, sym__scope_resolution, - ACTIONS(6931), 2, - sym_true, - sym_false, - STATE(6159), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(2931), 8, + STATE(6152), 1, + sym_virtual_specifier, + STATE(6933), 1, + sym_base_class_clause, + ACTIONS(6199), 2, + anon_sym_final, + anon_sym_override, + STATE(4720), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(4792), 2, sym__class_name, - sym_constraint_conjunction, - sym_constraint_disjunction, - sym__requirement_clause_constraint, - sym_requires_expression, - sym_lambda_expression, - sym_fold_expression, sym_qualified_type_identifier, - [158584] = 3, + STATE(7638), 2, + sym_decltype, + sym_dependent_type_identifier, + [191116] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(4571), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(4569), 20, + ACTIONS(6466), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7736), 1, + anon_sym_COLON, + ACTIONS(7975), 1, + anon_sym_COMMA, + ACTIONS(7977), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, + ACTIONS(7983), 1, + anon_sym_LBRACK, + ACTIONS(8091), 1, anon_sym_SEMI, + ACTIONS(8093), 1, anon_sym_LBRACE, - anon_sym_LBRACK, + ACTIONS(8095), 1, anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, + ACTIONS(8097), 1, anon_sym_try, - anon_sym_requires, - [158614] = 14, + STATE(2572), 1, + sym_try_statement, + STATE(2573), 1, + sym_delete_method_clause, + STATE(2579), 1, + sym_default_method_clause, + STATE(2582), 1, + sym_compound_statement, + STATE(3839), 1, + sym_parameter_list, + STATE(5684), 1, + sym__function_declarator_seq, + STATE(5831), 1, + aux_sym_field_declaration_repeat1, + STATE(7313), 1, + sym_bitfield_clause, + STATE(7320), 1, + sym_initializer_list, + STATE(5649), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [191178] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, + ACTIONS(1329), 1, anon_sym_template, - ACTIONS(1539), 1, - anon_sym_LBRACK, - ACTIONS(1555), 1, + ACTIONS(1973), 1, anon_sym_decltype, - ACTIONS(6582), 1, + ACTIONS(4831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5102), 1, anon_sym_COLON_COLON, - ACTIONS(6803), 1, + ACTIONS(6197), 1, + anon_sym_COLON, + ACTIONS(6458), 1, + anon_sym_LBRACE, + ACTIONS(7740), 1, sym_identifier, - ACTIONS(6811), 1, - anon_sym_requires, - ACTIONS(6929), 1, - anon_sym_LPAREN2, - STATE(2032), 1, + STATE(3578), 1, sym_template_type, - STATE(4464), 1, - sym_lambda_capture_specifier, - STATE(5025), 1, + STATE(3977), 1, + sym_field_declaration_list, + STATE(5718), 1, sym__scope_resolution, - ACTIONS(6933), 2, - sym_true, - sym_false, - STATE(6159), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(2873), 8, + STATE(6102), 1, + sym_virtual_specifier, + STATE(6924), 1, + sym_base_class_clause, + ACTIONS(6199), 2, + anon_sym_final, + anon_sym_override, + STATE(3830), 2, sym__class_name, - sym_constraint_conjunction, - sym_constraint_disjunction, - sym__requirement_clause_constraint, - sym_requires_expression, - sym_lambda_expression, - sym_fold_expression, sym_qualified_type_identifier, - [158666] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1539), 1, - anon_sym_LBRACK, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(6626), 1, - anon_sym_COLON_COLON, - ACTIONS(6793), 1, - sym_identifier, - ACTIONS(6801), 1, - anon_sym_requires, - ACTIONS(6935), 1, - anon_sym_LPAREN2, - STATE(1979), 1, - sym_template_type, - STATE(4484), 1, - sym_lambda_capture_specifier, - STATE(5001), 1, - sym__scope_resolution, - ACTIONS(6937), 2, - sym_true, - sym_false, - STATE(6159), 2, + STATE(4720), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7638), 2, sym_decltype, sym_dependent_type_identifier, - STATE(2761), 8, - sym__class_name, - sym_constraint_conjunction, - sym_constraint_disjunction, - sym__requirement_clause_constraint, - sym_requires_expression, - sym_lambda_expression, - sym_fold_expression, - sym_qualified_type_identifier, - [158718] = 14, + [191234] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, + ACTIONS(1329), 1, anon_sym_template, - ACTIONS(1539), 1, - anon_sym_LBRACK, - ACTIONS(1555), 1, + ACTIONS(1973), 1, anon_sym_decltype, - ACTIONS(6626), 1, + ACTIONS(4831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5270), 1, + anon_sym_LBRACE, + ACTIONS(6197), 1, + anon_sym_COLON, + ACTIONS(7567), 1, anon_sym_COLON_COLON, - ACTIONS(6793), 1, + ACTIONS(7714), 1, sym_identifier, - ACTIONS(6801), 1, - anon_sym_requires, - ACTIONS(6935), 1, - anon_sym_LPAREN2, - STATE(1979), 1, + STATE(2945), 1, sym_template_type, - STATE(4484), 1, - sym_lambda_capture_specifier, - STATE(5001), 1, + STATE(3074), 1, + sym_field_declaration_list, + STATE(5737), 1, sym__scope_resolution, - ACTIONS(6939), 2, - sym_true, - sym_false, - STATE(6159), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(2760), 8, + STATE(5972), 1, + sym_virtual_specifier, + STATE(6935), 1, + sym_base_class_clause, + ACTIONS(6199), 2, + anon_sym_final, + anon_sym_override, + STATE(2793), 2, sym__class_name, - sym_constraint_conjunction, - sym_constraint_disjunction, - sym__requirement_clause_constraint, - sym_requires_expression, - sym_lambda_expression, - sym_fold_expression, sym_qualified_type_identifier, - [158770] = 5, + STATE(5078), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7638), 2, + sym_decltype, + sym_dependent_type_identifier, + [191290] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6943), 1, - anon_sym_LPAREN2, - STATE(4314), 1, - sym_preproc_argument_list, - ACTIONS(6945), 5, + ACTIONS(8101), 5, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(6941), 15, + ACTIONS(8099), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_DASH, @@ -360076,9611 +462175,8498 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [158804] = 14, + [191318] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1539), 1, - anon_sym_LBRACK, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(3916), 1, - anon_sym_COLON_COLON, - ACTIONS(6857), 1, + ACTIONS(7879), 1, sym_identifier, - ACTIONS(6885), 1, + ACTIONS(7883), 1, anon_sym_LPAREN2, - ACTIONS(6891), 1, - anon_sym_requires, - STATE(3133), 1, - sym_template_type, - STATE(4485), 1, - sym_lambda_capture_specifier, - STATE(5034), 1, - sym__scope_resolution, - ACTIONS(6947), 2, - sym_true, - sym_false, - STATE(6159), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(4506), 8, - sym__class_name, - sym_constraint_conjunction, - sym_constraint_disjunction, - sym__requirement_clause_constraint, - sym_requires_expression, - sym_lambda_expression, - sym_fold_expression, - sym_qualified_type_identifier, - [158856] = 14, + ACTIONS(7885), 1, + anon_sym_defined, + ACTIONS(8103), 1, + sym_number_literal, + ACTIONS(7887), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(7889), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7893), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(4973), 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, + [191358] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, + ACTIONS(1329), 1, anon_sym_template, - ACTIONS(1539), 1, - anon_sym_LBRACK, - ACTIONS(1555), 1, + ACTIONS(1973), 1, anon_sym_decltype, - ACTIONS(5598), 1, + ACTIONS(4831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4876), 1, + anon_sym_LBRACE, + ACTIONS(6197), 1, + anon_sym_COLON, + ACTIONS(7478), 1, anon_sym_COLON_COLON, - ACTIONS(6855), 1, + ACTIONS(7694), 1, sym_identifier, - ACTIONS(6893), 1, - anon_sym_LPAREN2, - ACTIONS(6897), 1, - anon_sym_requires, - STATE(3133), 1, + STATE(2414), 1, sym_template_type, - STATE(4477), 1, - sym_lambda_capture_specifier, - STATE(5035), 1, + STATE(2779), 1, + sym_field_declaration_list, + STATE(5770), 1, sym__scope_resolution, - ACTIONS(6949), 2, - sym_true, - sym_false, - STATE(6159), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(4900), 8, + STATE(6133), 1, + sym_virtual_specifier, + STATE(6785), 1, + sym_base_class_clause, + ACTIONS(6199), 2, + anon_sym_final, + anon_sym_override, + STATE(2284), 2, sym__class_name, - sym_constraint_conjunction, - sym_constraint_disjunction, - sym__requirement_clause_constraint, - sym_requires_expression, - sym_lambda_expression, - sym_fold_expression, sym_qualified_type_identifier, - [158908] = 3, + STATE(5093), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7638), 2, + sym_decltype, + sym_dependent_type_identifier, + [191414] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4575), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(4573), 20, + STATE(5088), 1, + aux_sym__typedef_sized_type_specifier, + ACTIONS(8107), 2, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, + ACTIONS(8109), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(8105), 13, + anon_sym___based, + anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [158938] = 3, + sym_identifier, + [191446] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4499), 2, + ACTIONS(8114), 5, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - anon_sym_const, - ACTIONS(4497), 20, - anon_sym_LPAREN2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(8112), 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_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [158968] = 3, + 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, + [191474] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 2, + ACTIONS(8118), 5, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - anon_sym_const, - ACTIONS(4493), 20, - anon_sym_LPAREN2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(8116), 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_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [158998] = 14, + 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, + [191502] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, + ACTIONS(1329), 1, anon_sym_template, - ACTIONS(1539), 1, - anon_sym_LBRACK, - ACTIONS(1555), 1, + ACTIONS(1973), 1, anon_sym_decltype, - ACTIONS(3916), 1, + ACTIONS(4831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4876), 1, + anon_sym_LBRACE, + ACTIONS(6197), 1, + anon_sym_COLON, + ACTIONS(7478), 1, anon_sym_COLON_COLON, - ACTIONS(6857), 1, + ACTIONS(7694), 1, sym_identifier, - ACTIONS(6885), 1, - anon_sym_LPAREN2, - ACTIONS(6891), 1, - anon_sym_requires, - STATE(3133), 1, + STATE(2414), 1, sym_template_type, - STATE(4485), 1, - sym_lambda_capture_specifier, - STATE(5034), 1, + STATE(2779), 1, + sym_field_declaration_list, + STATE(5770), 1, sym__scope_resolution, - ACTIONS(6951), 2, - sym_true, - sym_false, - STATE(6159), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(4520), 8, + STATE(6133), 1, + sym_virtual_specifier, + STATE(6785), 1, + sym_base_class_clause, + ACTIONS(6199), 2, + anon_sym_final, + anon_sym_override, + STATE(2284), 2, sym__class_name, - sym_constraint_conjunction, - sym_constraint_disjunction, - sym__requirement_clause_constraint, - sym_requires_expression, - sym_lambda_expression, - sym_fold_expression, sym_qualified_type_identifier, - [159050] = 14, + STATE(4720), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7638), 2, + sym_decltype, + sym_dependent_type_identifier, + [191558] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, + ACTIONS(1329), 1, anon_sym_template, - ACTIONS(1539), 1, - anon_sym_LBRACK, - ACTIONS(1555), 1, + ACTIONS(1973), 1, anon_sym_decltype, - ACTIONS(6524), 1, + ACTIONS(3663), 1, anon_sym_COLON_COLON, - ACTIONS(6827), 1, + ACTIONS(4831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6195), 1, + anon_sym_LBRACE, + ACTIONS(6197), 1, + anon_sym_COLON, + ACTIONS(7728), 1, sym_identifier, - ACTIONS(6835), 1, - anon_sym_requires, - ACTIONS(6917), 1, - anon_sym_LPAREN2, - STATE(1933), 1, + STATE(3578), 1, sym_template_type, - STATE(4479), 1, - sym_lambda_capture_specifier, - STATE(5022), 1, + STATE(3685), 1, + sym_field_declaration_list, + STATE(5779), 1, sym__scope_resolution, - ACTIONS(6953), 2, - sym_true, - sym_false, - STATE(6159), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(2561), 8, + STATE(6149), 1, + sym_virtual_specifier, + STATE(6754), 1, + sym_base_class_clause, + ACTIONS(6199), 2, + anon_sym_final, + anon_sym_override, + STATE(3644), 2, sym__class_name, - sym_constraint_conjunction, - sym_constraint_disjunction, - sym__requirement_clause_constraint, - sym_requires_expression, - sym_lambda_expression, - sym_fold_expression, sym_qualified_type_identifier, - [159102] = 14, + STATE(5027), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7638), 2, + sym_decltype, + sym_dependent_type_identifier, + [191614] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, + ACTIONS(1329), 1, anon_sym_template, - ACTIONS(1539), 1, - anon_sym_LBRACK, - ACTIONS(1555), 1, + ACTIONS(1973), 1, anon_sym_decltype, - ACTIONS(5570), 1, + ACTIONS(4831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4876), 1, + anon_sym_LBRACE, + ACTIONS(6197), 1, + anon_sym_COLON, + ACTIONS(7478), 1, anon_sym_COLON_COLON, - ACTIONS(6849), 1, - anon_sym_requires, - ACTIONS(6859), 1, + ACTIONS(7694), 1, sym_identifier, - ACTIONS(6913), 1, - anon_sym_LPAREN2, - STATE(2795), 1, + STATE(2414), 1, sym_template_type, - STATE(4501), 1, - sym_lambda_capture_specifier, - STATE(4989), 1, + STATE(2795), 1, + sym_field_declaration_list, + STATE(5770), 1, sym__scope_resolution, - ACTIONS(6915), 2, - sym_true, - sym_false, - STATE(6159), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(3403), 8, + STATE(6081), 1, + sym_virtual_specifier, + STATE(6809), 1, + sym_base_class_clause, + ACTIONS(6199), 2, + anon_sym_final, + anon_sym_override, + STATE(2271), 2, sym__class_name, - sym_constraint_conjunction, - sym_constraint_disjunction, - sym__requirement_clause_constraint, - sym_requires_expression, - sym_lambda_expression, - sym_fold_expression, sym_qualified_type_identifier, - [159154] = 3, + STATE(4720), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7638), 2, + sym_decltype, + sym_dependent_type_identifier, + [191670] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4622), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(4620), 20, + ACTIONS(7939), 1, + sym_identifier, + ACTIONS(7941), 1, anon_sym_LPAREN2, + ACTIONS(7943), 1, + anon_sym_defined, + ACTIONS(8120), 1, + sym_number_literal, + ACTIONS(7945), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(7947), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7951), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(5139), 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, + [191710] = 7, + ACTIONS(7929), 1, + sym_comment, + ACTIONS(7967), 1, + anon_sym_LF, + ACTIONS(8122), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8128), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8124), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(8126), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7969), 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, + [191745] = 5, + ACTIONS(7929), 1, + sym_comment, + ACTIONS(7967), 1, + anon_sym_LF, + ACTIONS(8122), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8124), 3, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7969), 13, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, + 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, + [191776] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6466), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6472), 1, + anon_sym_DASH_GT, + ACTIONS(6474), 1, + anon_sym_requires, + ACTIONS(8033), 1, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, + STATE(5310), 1, + sym_trailing_return_type, + STATE(5419), 1, + sym_requires_clause, + ACTIONS(4880), 2, anon_sym_final, anon_sym_override, - anon_sym_try, - anon_sym_requires, - [159184] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4618), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(4616), 20, + STATE(5258), 2, + sym_virtual_specifier, + aux_sym__function_declarator_seq_repeat2, + STATE(5349), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(8031), 7, + anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, + anon_sym_COLON, anon_sym_try, - anon_sym_requires, - [159214] = 14, + [191819] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, + ACTIONS(117), 1, + anon_sym_virtual, + ACTIONS(1329), 1, anon_sym_template, - ACTIONS(1539), 1, - anon_sym_LBRACK, - ACTIONS(1555), 1, + ACTIONS(1973), 1, anon_sym_decltype, - ACTIONS(5570), 1, + ACTIONS(3663), 1, anon_sym_COLON_COLON, - ACTIONS(6849), 1, - anon_sym_requires, - ACTIONS(6859), 1, + ACTIONS(4831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7728), 1, sym_identifier, - ACTIONS(6913), 1, - anon_sym_LPAREN2, - STATE(2795), 1, + STATE(3578), 1, sym_template_type, - STATE(4501), 1, - sym_lambda_capture_specifier, - STATE(4989), 1, + STATE(5572), 1, + sym_access_specifier, + STATE(5779), 1, sym__scope_resolution, - ACTIONS(6955), 2, - sym_true, - sym_false, - STATE(6159), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(4828), 8, + STATE(6157), 1, + sym_virtual, + STATE(4720), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6582), 2, sym__class_name, - sym_constraint_conjunction, - sym_constraint_disjunction, - sym__requirement_clause_constraint, - sym_requires_expression, - sym_lambda_expression, - sym_fold_expression, sym_qualified_type_identifier, - [159266] = 3, + STATE(7638), 2, + sym_decltype, + sym_dependent_type_identifier, + ACTIONS(8130), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + [191870] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(4567), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(4565), 20, + ACTIONS(6466), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6472), 1, + anon_sym_DASH_GT, + ACTIONS(6474), 1, + anon_sym_requires, + ACTIONS(8033), 1, + anon_sym_LBRACK, + STATE(5310), 1, + sym_trailing_return_type, + STATE(5419), 1, + sym_requires_clause, + ACTIONS(4880), 2, + anon_sym_final, + anon_sym_override, + STATE(5108), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5258), 2, + sym_virtual_specifier, + aux_sym__function_declarator_seq_repeat2, + ACTIONS(8031), 7, + anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, + anon_sym_COLON, anon_sym_try, - anon_sym_requires, - [159296] = 3, + [191913] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(4579), 2, + ACTIONS(117), 1, + anon_sym_virtual, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(3663), 1, + anon_sym_COLON_COLON, + ACTIONS(4831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7728), 1, + sym_identifier, + STATE(3578), 1, + sym_template_type, + STATE(5571), 1, + sym_access_specifier, + STATE(5779), 1, + sym__scope_resolution, + STATE(6141), 1, + sym_virtual, + STATE(5133), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6144), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7638), 2, + sym_decltype, + sym_dependent_type_identifier, + ACTIONS(8130), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + [191964] = 12, + ACTIONS(7929), 1, + sym_comment, + ACTIONS(8132), 1, + anon_sym_LF, + ACTIONS(8134), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8136), 1, + anon_sym_AMP_AMP, + ACTIONS(8138), 1, + anon_sym_PIPE, + ACTIONS(8140), 1, + anon_sym_CARET, + ACTIONS(8142), 1, + anon_sym_AMP, + ACTIONS(8122), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8128), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8144), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8124), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(8126), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [192009] = 8, + ACTIONS(7929), 1, + sym_comment, + ACTIONS(7967), 1, + anon_sym_LF, + ACTIONS(8122), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8128), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8144), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8124), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(8126), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7969), 5, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + [192046] = 3, + ACTIONS(7929), 1, + sym_comment, + ACTIONS(8116), 1, + anon_sym_LF, + ACTIONS(8118), 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_const, - ACTIONS(4577), 20, + 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, + [192073] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8148), 2, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, + ACTIONS(8146), 17, + anon_sym___based, + anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [159326] = 14, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_identifier, + [192100] = 3, + ACTIONS(7929), 1, + sym_comment, + ACTIONS(8112), 1, + anon_sym_LF, + ACTIONS(8114), 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, + [192127] = 12, + ACTIONS(7929), 1, + sym_comment, + ACTIONS(8134), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8136), 1, + anon_sym_AMP_AMP, + ACTIONS(8138), 1, + anon_sym_PIPE, + ACTIONS(8140), 1, + anon_sym_CARET, + ACTIONS(8142), 1, + anon_sym_AMP, + ACTIONS(8150), 1, + anon_sym_LF, + ACTIONS(8122), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8128), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8144), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8124), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(8126), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [192172] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, + ACTIONS(117), 1, + anon_sym_virtual, + ACTIONS(1329), 1, anon_sym_template, - ACTIONS(1539), 1, - anon_sym_LBRACK, - ACTIONS(1555), 1, + ACTIONS(1973), 1, anon_sym_decltype, - ACTIONS(5502), 1, + ACTIONS(3663), 1, anon_sym_COLON_COLON, - ACTIONS(6785), 1, - anon_sym_requires, - ACTIONS(6867), 1, + ACTIONS(4831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7728), 1, sym_identifier, - ACTIONS(6905), 1, - anon_sym_LPAREN2, - STATE(2255), 1, + STATE(3578), 1, sym_template_type, - STATE(4500), 1, - sym_lambda_capture_specifier, - STATE(4997), 1, + STATE(5558), 1, + sym_access_specifier, + STATE(5779), 1, sym__scope_resolution, - ACTIONS(6957), 2, - sym_true, - sym_false, - STATE(6159), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(5041), 8, + STATE(6058), 1, + sym_virtual, + STATE(5098), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6316), 2, sym__class_name, - sym_constraint_conjunction, - sym_constraint_disjunction, - sym__requirement_clause_constraint, - sym_requires_expression, - sym_lambda_expression, - sym_fold_expression, sym_qualified_type_identifier, - [159378] = 3, + STATE(7638), 2, + sym_decltype, + sym_dependent_type_identifier, + ACTIONS(8130), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + [192223] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6466), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6472), 1, + anon_sym_DASH_GT, + ACTIONS(6474), 1, + anon_sym_requires, + ACTIONS(8021), 1, + anon_sym_LBRACK, + STATE(5317), 1, + sym_trailing_return_type, + STATE(5388), 1, + sym_requires_clause, + ACTIONS(4880), 2, + anon_sym_final, + anon_sym_override, + STATE(5223), 2, + sym_virtual_specifier, + aux_sym__function_declarator_seq_repeat2, + STATE(5349), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(8019), 7, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [192266] = 12, + ACTIONS(7929), 1, + sym_comment, + ACTIONS(8134), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8136), 1, + anon_sym_AMP_AMP, + ACTIONS(8138), 1, + anon_sym_PIPE, + ACTIONS(8140), 1, + anon_sym_CARET, + ACTIONS(8142), 1, + anon_sym_AMP, + ACTIONS(8152), 1, + anon_sym_LF, + ACTIONS(8122), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8128), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8144), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8124), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(8126), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [192311] = 3, + ACTIONS(7929), 1, + sym_comment, + ACTIONS(8051), 1, + anon_sym_LF, + ACTIONS(8053), 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, + [192338] = 3, + ACTIONS(7929), 1, + sym_comment, + ACTIONS(8099), 1, + anon_sym_LF, + ACTIONS(8101), 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, + [192365] = 12, + ACTIONS(7929), 1, + sym_comment, + ACTIONS(8134), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8136), 1, + anon_sym_AMP_AMP, + ACTIONS(8138), 1, + anon_sym_PIPE, + ACTIONS(8140), 1, + anon_sym_CARET, + ACTIONS(8142), 1, + anon_sym_AMP, + ACTIONS(8154), 1, + anon_sym_LF, + ACTIONS(8122), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8128), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8144), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8124), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(8126), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [192410] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(4594), 2, + ACTIONS(7903), 1, + anon_sym_SLASH, + ACTIONS(7905), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7907), 1, + anon_sym_AMP_AMP, + ACTIONS(7909), 1, + anon_sym_PIPE, + ACTIONS(7911), 1, + anon_sym_CARET, + ACTIONS(7913), 1, anon_sym_AMP, - anon_sym_const, - ACTIONS(4592), 20, - anon_sym_LPAREN2, + ACTIONS(8156), 1, + anon_sym_RPAREN, + ACTIONS(7899), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7901), 2, anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [159408] = 14, + anon_sym_PERCENT, + ACTIONS(7915), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7917), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(7919), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(7921), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [192459] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1539), 1, + ACTIONS(6409), 1, anon_sym_LBRACK, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(5598), 1, - anon_sym_COLON_COLON, - ACTIONS(6855), 1, - sym_identifier, - ACTIONS(6893), 1, - anon_sym_LPAREN2, - ACTIONS(6897), 1, + ACTIONS(6466), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6472), 1, + anon_sym_DASH_GT, + ACTIONS(6474), 1, anon_sym_requires, - STATE(3133), 1, - sym_template_type, - STATE(4477), 1, - sym_lambda_capture_specifier, - STATE(5035), 1, - sym__scope_resolution, - ACTIONS(6899), 2, - sym_true, - sym_false, - STATE(6159), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(4543), 8, - sym__class_name, - sym_constraint_conjunction, - sym_constraint_disjunction, - sym__requirement_clause_constraint, - sym_requires_expression, - sym_lambda_expression, - sym_fold_expression, - sym_qualified_type_identifier, - [159460] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4555), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(4553), 20, + STATE(5314), 1, + sym_trailing_return_type, + STATE(5422), 1, + sym_requires_clause, + ACTIONS(4880), 2, + anon_sym_final, + anon_sym_override, + STATE(5301), 2, + sym_virtual_specifier, + aux_sym__function_declarator_seq_repeat2, + STATE(5349), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(6407), 7, + anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, + anon_sym_COLON, anon_sym_try, - anon_sym_requires, - [159490] = 3, + [192502] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(4563), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(4561), 20, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(6466), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6472), 1, + anon_sym_DASH_GT, + ACTIONS(6474), 1, + anon_sym_requires, + ACTIONS(6544), 1, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, + STATE(5306), 1, + sym_trailing_return_type, + STATE(5360), 1, + sym_requires_clause, + ACTIONS(4880), 2, anon_sym_final, anon_sym_override, - anon_sym_try, - anon_sym_requires, - [159520] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4559), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(4557), 20, + STATE(5295), 2, + sym_virtual_specifier, + aux_sym__function_declarator_seq_repeat2, + STATE(5349), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(6542), 7, + anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, + anon_sym_COLON, anon_sym_try, - anon_sym_requires, - [159550] = 3, - ACTIONS(3), 1, + [192545] = 3, + ACTIONS(7929), 1, sym_comment, - ACTIONS(4551), 2, + ACTIONS(8009), 1, + anon_sym_LF, + ACTIONS(8011), 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_const, - ACTIONS(4549), 20, - anon_sym_LPAREN2, + 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, + [192572] = 3, + ACTIONS(7929), 1, + sym_comment, + ACTIONS(7935), 1, + anon_sym_LF, + ACTIONS(7937), 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_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [159580] = 14, - ACTIONS(3), 1, + 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, + [192599] = 6, + ACTIONS(7929), 1, sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1539), 1, - anon_sym_LBRACK, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(5570), 1, - anon_sym_COLON_COLON, - ACTIONS(6849), 1, - anon_sym_requires, - ACTIONS(6859), 1, - sym_identifier, - ACTIONS(6913), 1, - anon_sym_LPAREN2, - STATE(2795), 1, - sym_template_type, - STATE(4501), 1, - sym_lambda_capture_specifier, - STATE(4989), 1, - sym__scope_resolution, - ACTIONS(6959), 2, - sym_true, - sym_false, - STATE(6159), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(4844), 8, - sym__class_name, - sym_constraint_conjunction, - sym_constraint_disjunction, - sym__requirement_clause_constraint, - sym_requires_expression, - sym_lambda_expression, - sym_fold_expression, - sym_qualified_type_identifier, - [159632] = 14, - ACTIONS(3), 1, + ACTIONS(7967), 1, + anon_sym_LF, + ACTIONS(8122), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8128), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8124), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7969), 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, + [192632] = 3, + ACTIONS(7929), 1, sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1539), 1, - anon_sym_LBRACK, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(6883), 1, - sym_identifier, - ACTIONS(6885), 1, - anon_sym_LPAREN2, - ACTIONS(6887), 1, - anon_sym_COLON_COLON, - ACTIONS(6891), 1, - anon_sym_requires, - STATE(2482), 1, - sym_template_type, - STATE(4491), 1, - sym_lambda_capture_specifier, - STATE(5029), 1, - sym__scope_resolution, - ACTIONS(6901), 2, - sym_true, - sym_false, - STATE(6159), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(1859), 8, - sym__class_name, - sym_constraint_conjunction, - sym_constraint_disjunction, - sym__requirement_clause_constraint, - sym_requires_expression, - sym_lambda_expression, - sym_fold_expression, - sym_qualified_type_identifier, - [159684] = 14, - ACTIONS(3), 1, + ACTIONS(7953), 1, + anon_sym_LF, + ACTIONS(7955), 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, + [192659] = 3, + ACTIONS(7929), 1, sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1539), 1, - anon_sym_LBRACK, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(6612), 1, - anon_sym_COLON_COLON, - ACTIONS(6777), 1, - sym_identifier, - ACTIONS(6785), 1, - anon_sym_requires, - ACTIONS(6905), 1, - anon_sym_LPAREN2, - STATE(2255), 1, - sym_template_type, - STATE(4500), 1, - sym_lambda_capture_specifier, - STATE(4990), 1, - sym__scope_resolution, - ACTIONS(6961), 2, - sym_true, - sym_false, - STATE(6159), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(3354), 8, - sym__class_name, - sym_constraint_conjunction, - sym_constraint_disjunction, - sym__requirement_clause_constraint, - sym_requires_expression, - sym_lambda_expression, - sym_fold_expression, - sym_qualified_type_identifier, - [159736] = 3, - ACTIONS(3), 1, + ACTIONS(8013), 1, + anon_sym_LF, + ACTIONS(8015), 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, + [192686] = 12, + ACTIONS(7929), 1, sym_comment, - ACTIONS(4535), 2, + ACTIONS(8134), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8136), 1, + anon_sym_AMP_AMP, + ACTIONS(8138), 1, + anon_sym_PIPE, + ACTIONS(8140), 1, + anon_sym_CARET, + ACTIONS(8142), 1, anon_sym_AMP, - anon_sym_const, - ACTIONS(4533), 20, - anon_sym_LPAREN2, + ACTIONS(8158), 1, + anon_sym_LF, + ACTIONS(8122), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8128), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8144), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8124), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(8126), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [192731] = 4, + ACTIONS(7929), 1, + sym_comment, + ACTIONS(7967), 1, + anon_sym_LF, + ACTIONS(8124), 3, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7969), 15, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [159766] = 14, + 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, + [192760] = 12, + ACTIONS(7929), 1, + sym_comment, + ACTIONS(8134), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8136), 1, + anon_sym_AMP_AMP, + ACTIONS(8138), 1, + anon_sym_PIPE, + ACTIONS(8140), 1, + anon_sym_CARET, + ACTIONS(8142), 1, + anon_sym_AMP, + ACTIONS(8160), 1, + anon_sym_LF, + ACTIONS(8122), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8128), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8144), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8124), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(8126), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [192805] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1539), 1, + ACTIONS(6409), 1, anon_sym_LBRACK, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(6612), 1, - anon_sym_COLON_COLON, - ACTIONS(6777), 1, - sym_identifier, - ACTIONS(6785), 1, + ACTIONS(6466), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6472), 1, + anon_sym_DASH_GT, + ACTIONS(6474), 1, anon_sym_requires, - ACTIONS(6905), 1, - anon_sym_LPAREN2, - STATE(2255), 1, - sym_template_type, - STATE(4500), 1, - sym_lambda_capture_specifier, - STATE(4990), 1, - sym__scope_resolution, - ACTIONS(6911), 2, - sym_true, - sym_false, - STATE(6159), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(3185), 8, - sym__class_name, - sym_constraint_conjunction, - sym_constraint_disjunction, - sym__requirement_clause_constraint, - sym_requires_expression, - sym_lambda_expression, - sym_fold_expression, - sym_qualified_type_identifier, - [159818] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4531), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(4529), 20, + STATE(5314), 1, + sym_trailing_return_type, + STATE(5422), 1, + sym_requires_clause, + ACTIONS(4880), 2, + anon_sym_final, + anon_sym_override, + STATE(5115), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5301), 2, + sym_virtual_specifier, + aux_sym__function_declarator_seq_repeat2, + ACTIONS(6407), 7, + anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, + anon_sym_COLON, anon_sym_try, - anon_sym_requires, - [159848] = 3, + [192848] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(4395), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(4393), 20, + ACTIONS(4572), 1, anon_sym_LPAREN2, + ACTIONS(6919), 1, + anon_sym_LBRACK, + ACTIONS(7275), 1, anon_sym_STAR, + ACTIONS(7277), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, + ACTIONS(7279), 1, + anon_sym_AMP, + STATE(3964), 1, + sym_parameter_list, + STATE(5457), 1, + sym__function_declarator_seq, + STATE(5674), 1, + sym__abstract_declarator, + STATE(5452), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6502), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_final, anon_sym_override, - anon_sym_try, + anon_sym_GT2, anon_sym_requires, - [159878] = 3, - ACTIONS(3), 1, + [192891] = 12, + ACTIONS(7929), 1, sym_comment, - ACTIONS(4547), 2, + ACTIONS(8134), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8136), 1, + anon_sym_AMP_AMP, + ACTIONS(8138), 1, + anon_sym_PIPE, + ACTIONS(8140), 1, + anon_sym_CARET, + ACTIONS(8142), 1, anon_sym_AMP, - anon_sym_const, - ACTIONS(4545), 20, - anon_sym_LPAREN2, + ACTIONS(8162), 1, + anon_sym_LF, + ACTIONS(8122), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8128), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8144), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8124), 3, anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(8126), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [192936] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6466), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6472), 1, + anon_sym_DASH_GT, + ACTIONS(6474), 1, + anon_sym_requires, + ACTIONS(6544), 1, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, + STATE(5306), 1, + sym_trailing_return_type, + STATE(5360), 1, + sym_requires_clause, + ACTIONS(4880), 2, anon_sym_final, anon_sym_override, - anon_sym_try, - anon_sym_requires, - [159908] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4583), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(4581), 20, + STATE(5134), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5295), 2, + sym_virtual_specifier, + aux_sym__function_declarator_seq_repeat2, + ACTIONS(6542), 7, + anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, + anon_sym_COLON, anon_sym_try, - anon_sym_requires, - [159938] = 3, - ACTIONS(3), 1, + [192979] = 3, + ACTIONS(5395), 1, + anon_sym_LF, + ACTIONS(7929), 1, sym_comment, - ACTIONS(4459), 2, + ACTIONS(5397), 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_const, - ACTIONS(4457), 20, - anon_sym_LPAREN2, + 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, + [193006] = 3, + ACTIONS(7929), 1, + sym_comment, + ACTIONS(7967), 1, + anon_sym_LF, + ACTIONS(7969), 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_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [159968] = 3, + 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, + [193033] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(4415), 2, + ACTIONS(7903), 1, + anon_sym_SLASH, + ACTIONS(7905), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7907), 1, + anon_sym_AMP_AMP, + ACTIONS(7909), 1, + anon_sym_PIPE, + ACTIONS(7911), 1, + anon_sym_CARET, + ACTIONS(7913), 1, anon_sym_AMP, - anon_sym_const, - ACTIONS(4413), 20, - anon_sym_LPAREN2, + ACTIONS(8164), 1, + anon_sym_RPAREN, + ACTIONS(7899), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7901), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7915), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7917), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(7919), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(7921), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [193082] = 12, + ACTIONS(7929), 1, + sym_comment, + ACTIONS(7967), 1, + anon_sym_LF, + ACTIONS(7969), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8136), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [159998] = 14, - ACTIONS(3), 1, + ACTIONS(8138), 1, + anon_sym_PIPE, + ACTIONS(8140), 1, + anon_sym_CARET, + ACTIONS(8142), 1, + anon_sym_AMP, + ACTIONS(8122), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8128), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8144), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8124), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(8126), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [193127] = 11, + ACTIONS(7929), 1, sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1539), 1, - anon_sym_LBRACK, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(6546), 1, - anon_sym_COLON_COLON, - ACTIONS(6817), 1, - sym_identifier, - ACTIONS(6825), 1, - anon_sym_requires, - ACTIONS(6963), 1, - anon_sym_LPAREN2, - STATE(2192), 1, - sym_template_type, - STATE(4465), 1, - sym_lambda_capture_specifier, - STATE(5036), 1, - sym__scope_resolution, - ACTIONS(6965), 2, - sym_true, - sym_false, - STATE(6159), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(3041), 8, - sym__class_name, - sym_constraint_conjunction, - sym_constraint_disjunction, - sym__requirement_clause_constraint, - sym_requires_expression, - sym_lambda_expression, - sym_fold_expression, - sym_qualified_type_identifier, - [160050] = 14, + ACTIONS(7967), 1, + anon_sym_LF, + ACTIONS(8138), 1, + anon_sym_PIPE, + ACTIONS(8140), 1, + anon_sym_CARET, + ACTIONS(8142), 1, + anon_sym_AMP, + ACTIONS(7969), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(8122), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8128), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8144), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8124), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(8126), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [193170] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, + ACTIONS(117), 1, + anon_sym_virtual, + ACTIONS(1329), 1, anon_sym_template, - ACTIONS(1539), 1, - anon_sym_LBRACK, - ACTIONS(1555), 1, + ACTIONS(1973), 1, anon_sym_decltype, - ACTIONS(6546), 1, + ACTIONS(3663), 1, anon_sym_COLON_COLON, - ACTIONS(6817), 1, + ACTIONS(4831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7728), 1, sym_identifier, - ACTIONS(6825), 1, - anon_sym_requires, - ACTIONS(6963), 1, - anon_sym_LPAREN2, - STATE(2192), 1, + STATE(3578), 1, sym_template_type, - STATE(4465), 1, - sym_lambda_capture_specifier, - STATE(5036), 1, + STATE(5580), 1, + sym_access_specifier, + STATE(5779), 1, sym__scope_resolution, - ACTIONS(6967), 2, - sym_true, - sym_false, - STATE(6159), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(3042), 8, + STATE(6135), 1, + sym_virtual, + STATE(4720), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6134), 2, sym__class_name, - sym_constraint_conjunction, - sym_constraint_disjunction, - sym__requirement_clause_constraint, - sym_requires_expression, - sym_lambda_expression, - sym_fold_expression, sym_qualified_type_identifier, - [160102] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1539), 1, - anon_sym_LBRACK, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(2928), 1, - anon_sym_COLON_COLON, - ACTIONS(6855), 1, - sym_identifier, - ACTIONS(6885), 1, - anon_sym_LPAREN2, - ACTIONS(6891), 1, - anon_sym_requires, - STATE(3133), 1, - sym_template_type, - STATE(4485), 1, - sym_lambda_capture_specifier, - STATE(5006), 1, - sym__scope_resolution, - ACTIONS(6969), 2, - sym_true, - sym_false, - STATE(6159), 2, + STATE(7638), 2, sym_decltype, sym_dependent_type_identifier, - STATE(4726), 8, - sym__class_name, - sym_constraint_conjunction, - sym_constraint_disjunction, - sym__requirement_clause_constraint, - sym_requires_expression, - sym_lambda_expression, - sym_fold_expression, - sym_qualified_type_identifier, - [160154] = 3, + ACTIONS(8130), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + [193221] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(4463), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(4461), 20, + ACTIONS(6466), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6472), 1, + anon_sym_DASH_GT, + ACTIONS(6474), 1, + anon_sym_requires, + ACTIONS(7726), 1, + anon_sym_LBRACK, + STATE(5344), 1, + sym_trailing_return_type, + STATE(5358), 1, + sym_requires_clause, + ACTIONS(4880), 2, + anon_sym_final, + anon_sym_override, + STATE(5288), 2, + sym_virtual_specifier, + aux_sym__function_declarator_seq_repeat2, + STATE(5349), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(7724), 7, + anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, + anon_sym_COLON, anon_sym_try, + [193264] = 10, + ACTIONS(7929), 1, + sym_comment, + ACTIONS(7967), 1, + anon_sym_LF, + ACTIONS(8140), 1, + anon_sym_CARET, + ACTIONS(8142), 1, + anon_sym_AMP, + ACTIONS(8122), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8128), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8144), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7969), 3, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + ACTIONS(8124), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(8126), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [193305] = 12, + ACTIONS(7929), 1, + sym_comment, + ACTIONS(8134), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8136), 1, + anon_sym_AMP_AMP, + ACTIONS(8138), 1, + anon_sym_PIPE, + ACTIONS(8140), 1, + anon_sym_CARET, + ACTIONS(8142), 1, + anon_sym_AMP, + ACTIONS(8166), 1, + anon_sym_LF, + ACTIONS(8122), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8128), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8144), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8124), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(8126), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [193350] = 12, + ACTIONS(7929), 1, + sym_comment, + ACTIONS(8134), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8136), 1, + anon_sym_AMP_AMP, + ACTIONS(8138), 1, + anon_sym_PIPE, + ACTIONS(8140), 1, + anon_sym_CARET, + ACTIONS(8142), 1, + anon_sym_AMP, + ACTIONS(8168), 1, + anon_sym_LF, + ACTIONS(8122), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8128), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8144), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8124), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(8126), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [193395] = 9, + ACTIONS(7929), 1, + sym_comment, + ACTIONS(7967), 1, + anon_sym_LF, + ACTIONS(8142), 1, + anon_sym_AMP, + ACTIONS(8122), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8128), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8144), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8124), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7969), 4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(8126), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [193434] = 12, + ACTIONS(7929), 1, + sym_comment, + ACTIONS(8134), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8136), 1, + anon_sym_AMP_AMP, + ACTIONS(8138), 1, + anon_sym_PIPE, + ACTIONS(8140), 1, + anon_sym_CARET, + ACTIONS(8142), 1, + anon_sym_AMP, + ACTIONS(8170), 1, + anon_sym_LF, + ACTIONS(8122), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8128), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8144), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8124), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(8126), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [193479] = 12, + ACTIONS(7929), 1, + sym_comment, + ACTIONS(8134), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8136), 1, + anon_sym_AMP_AMP, + ACTIONS(8138), 1, + anon_sym_PIPE, + ACTIONS(8140), 1, + anon_sym_CARET, + ACTIONS(8142), 1, + anon_sym_AMP, + ACTIONS(8172), 1, + anon_sym_LF, + ACTIONS(8122), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8128), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8144), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8124), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(8126), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [193524] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6466), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6472), 1, + anon_sym_DASH_GT, + ACTIONS(6474), 1, anon_sym_requires, - [160184] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4598), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(4596), 20, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(7726), 1, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, + STATE(5344), 1, + sym_trailing_return_type, + STATE(5358), 1, + sym_requires_clause, + ACTIONS(4880), 2, anon_sym_final, anon_sym_override, - anon_sym_try, - anon_sym_requires, - [160214] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4371), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(4369), 20, + STATE(5097), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5288), 2, + sym_virtual_specifier, + aux_sym__function_declarator_seq_repeat2, + ACTIONS(7724), 7, + anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, + anon_sym_COLON, anon_sym_try, - anon_sym_requires, - [160244] = 3, + [193567] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4449), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(4447), 20, + ACTIONS(8176), 1, + anon_sym_LBRACK, + ACTIONS(8174), 17, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, + anon_sym_COLON, + anon_sym_DASH_GT, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_try, + anon_sym_noexcept, + anon_sym_throw, anon_sym_requires, - [160274] = 14, + [193593] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1539), 1, - anon_sym_LBRACK, - ACTIONS(1555), 1, + ACTIONS(1973), 1, anon_sym_decltype, - ACTIONS(5502), 1, - anon_sym_COLON_COLON, - ACTIONS(6785), 1, - anon_sym_requires, - ACTIONS(6867), 1, + ACTIONS(8178), 1, sym_identifier, - ACTIONS(6905), 1, - anon_sym_LPAREN2, - STATE(2255), 1, + ACTIONS(8180), 1, + anon_sym_TILDE, + ACTIONS(8182), 1, + anon_sym_COLON_COLON, + ACTIONS(8184), 1, + anon_sym_template, + ACTIONS(8186), 1, + anon_sym_operator, + STATE(2850), 1, + sym_template_function, + STATE(2851), 1, + sym_destructor_name, + STATE(2852), 1, + sym_dependent_identifier, + STATE(2854), 1, + sym_qualified_identifier, + STATE(2859), 1, + sym_operator_name, + STATE(3595), 1, sym_template_type, - STATE(4500), 1, - sym_lambda_capture_specifier, - STATE(4997), 1, - sym__scope_resolution, - ACTIONS(6911), 2, - sym_true, - sym_false, - STATE(6159), 2, - sym_decltype, + STATE(3601), 1, sym_dependent_type_identifier, - STATE(3185), 8, - sym__class_name, - sym_constraint_conjunction, - sym_constraint_disjunction, - sym__requirement_clause_constraint, - sym_requires_expression, - sym_lambda_expression, - sym_fold_expression, + STATE(3602), 1, sym_qualified_type_identifier, - [160326] = 3, + STATE(5143), 1, + sym__scope_resolution, + STATE(6042), 1, + sym_operator_cast, + STATE(6044), 1, + sym_qualified_operator_cast_identifier, + STATE(7638), 1, + sym_decltype, + [193651] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(4433), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(4431), 20, + ACTIONS(6363), 1, + anon_sym_noexcept, + ACTIONS(6365), 1, + anon_sym_throw, + ACTIONS(6466), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6833), 1, + anon_sym_DASH_GT, + ACTIONS(6835), 1, + anon_sym_requires, + ACTIONS(7726), 1, + anon_sym_LBRACK, + STATE(5358), 1, + sym_requires_clause, + STATE(5700), 1, + sym_trailing_return_type, + ACTIONS(4880), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7724), 2, + anon_sym_LPAREN2, + anon_sym_COLON, + STATE(5288), 2, + sym_virtual_specifier, + aux_sym__function_declarator_seq_repeat2, + STATE(5393), 2, + sym_noexcept, + sym_throw_specifier, + STATE(5416), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [193699] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5043), 1, + anon_sym_COLON_COLON, + ACTIONS(5155), 2, + sym_auto, + anon_sym_decltype, + ACTIONS(8190), 2, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, + ACTIONS(8188), 13, + anon_sym___based, + anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [160356] = 14, + sym_identifier, + [193729] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1539), 1, - anon_sym_LBRACK, - ACTIONS(1555), 1, + ACTIONS(125), 1, + anon_sym_operator, + ACTIONS(1973), 1, anon_sym_decltype, - ACTIONS(6883), 1, - sym_identifier, - ACTIONS(6885), 1, - anon_sym_LPAREN2, - ACTIONS(6887), 1, + ACTIONS(2562), 1, + anon_sym_TILDE, + ACTIONS(3693), 1, anon_sym_COLON_COLON, - ACTIONS(6891), 1, - anon_sym_requires, - STATE(2482), 1, + ACTIONS(8192), 1, + sym_identifier, + ACTIONS(8194), 1, + anon_sym_template, + STATE(2850), 1, + sym_template_function, + STATE(2851), 1, + sym_destructor_name, + STATE(2852), 1, + sym_dependent_identifier, + STATE(2854), 1, + sym_qualified_identifier, + STATE(2859), 1, + sym_operator_name, + STATE(3595), 1, sym_template_type, - STATE(4491), 1, - sym_lambda_capture_specifier, - STATE(5029), 1, - sym__scope_resolution, - ACTIONS(6971), 2, - sym_true, - sym_false, - STATE(6159), 2, - sym_decltype, + STATE(3601), 1, sym_dependent_type_identifier, - STATE(2533), 8, - sym__class_name, - sym_constraint_conjunction, - sym_constraint_disjunction, - sym__requirement_clause_constraint, - sym_requires_expression, - sym_lambda_expression, - sym_fold_expression, + STATE(3602), 1, sym_qualified_type_identifier, - [160408] = 3, + STATE(5146), 1, + sym__scope_resolution, + STATE(6042), 1, + sym_operator_cast, + STATE(6044), 1, + sym_qualified_operator_cast_identifier, + STATE(7638), 1, + sym_decltype, + [193787] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(4429), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(4427), 20, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(6363), 1, + anon_sym_noexcept, + ACTIONS(6365), 1, + anon_sym_throw, + ACTIONS(6466), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6544), 1, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, + ACTIONS(6833), 1, + anon_sym_DASH_GT, + ACTIONS(6835), 1, + anon_sym_requires, + STATE(5360), 1, + sym_requires_clause, + STATE(5699), 1, + sym_trailing_return_type, + ACTIONS(4880), 2, anon_sym_final, anon_sym_override, - anon_sym_try, - anon_sym_requires, - [160438] = 3, + ACTIONS(6542), 2, + anon_sym_LPAREN2, + anon_sym_COLON, + STATE(5295), 2, + sym_virtual_specifier, + aux_sym__function_declarator_seq_repeat2, + STATE(5366), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5371), 2, + sym_noexcept, + sym_throw_specifier, + [193835] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(4539), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(4537), 20, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(6363), 1, + anon_sym_noexcept, + ACTIONS(6365), 1, + anon_sym_throw, + ACTIONS(6466), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6530), 1, + anon_sym_requires, + ACTIONS(6807), 1, + anon_sym_DASH_GT, + ACTIONS(7726), 1, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, + STATE(5417), 1, + sym_requires_clause, + STATE(5468), 1, + sym_trailing_return_type, + ACTIONS(6528), 2, anon_sym_final, anon_sym_override, - anon_sym_try, - anon_sym_requires, - [160468] = 14, + ACTIONS(7724), 2, + anon_sym_LPAREN2, + anon_sym_COLON, + STATE(5254), 2, + sym_virtual_specifier, + aux_sym__function_declarator_seq_repeat2, + STATE(5446), 2, + sym_noexcept, + sym_throw_specifier, + STATE(5453), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [193883] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1539), 1, + ACTIONS(6363), 1, + anon_sym_noexcept, + ACTIONS(6365), 1, + anon_sym_throw, + ACTIONS(6409), 1, anon_sym_LBRACK, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(5576), 1, - anon_sym_COLON_COLON, - ACTIONS(6865), 1, - sym_identifier, - ACTIONS(6921), 1, - anon_sym_LPAREN2, - ACTIONS(6925), 1, + ACTIONS(6466), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6833), 1, + anon_sym_DASH_GT, + ACTIONS(6835), 1, anon_sym_requires, - STATE(4063), 1, - sym_template_type, - STATE(4509), 1, - sym_lambda_capture_specifier, - STATE(5024), 1, - sym__scope_resolution, - ACTIONS(6973), 2, - sym_true, - sym_false, - STATE(6159), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(4740), 8, - sym__class_name, - sym_constraint_conjunction, - sym_constraint_disjunction, - sym__requirement_clause_constraint, - sym_requires_expression, - sym_lambda_expression, - sym_fold_expression, - sym_qualified_type_identifier, - [160520] = 14, + STATE(5422), 1, + sym_requires_clause, + STATE(5678), 1, + sym_trailing_return_type, + ACTIONS(4880), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(6407), 2, + anon_sym_LPAREN2, + anon_sym_COLON, + STATE(5301), 2, + sym_virtual_specifier, + aux_sym__function_declarator_seq_repeat2, + STATE(5359), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5386), 2, + sym_noexcept, + sym_throw_specifier, + [193931] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1539), 1, + ACTIONS(6363), 1, + anon_sym_noexcept, + ACTIONS(6365), 1, + anon_sym_throw, + ACTIONS(6409), 1, anon_sym_LBRACK, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(5576), 1, - anon_sym_COLON_COLON, - ACTIONS(6865), 1, - sym_identifier, - ACTIONS(6921), 1, - anon_sym_LPAREN2, - ACTIONS(6925), 1, + ACTIONS(6466), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6530), 1, anon_sym_requires, - STATE(4063), 1, - sym_template_type, - STATE(4509), 1, - sym_lambda_capture_specifier, - STATE(5024), 1, - sym__scope_resolution, - ACTIONS(6975), 2, - sym_true, - sym_false, - STATE(6159), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(4747), 8, - sym__class_name, - sym_constraint_conjunction, - sym_constraint_disjunction, - sym__requirement_clause_constraint, - sym_requires_expression, - sym_lambda_expression, - sym_fold_expression, - sym_qualified_type_identifier, - [160572] = 14, + ACTIONS(6807), 1, + anon_sym_DASH_GT, + STATE(5436), 1, + sym_requires_clause, + STATE(5484), 1, + sym_trailing_return_type, + ACTIONS(6407), 2, + anon_sym_LPAREN2, + anon_sym_COLON, + ACTIONS(6528), 2, + anon_sym_final, + anon_sym_override, + STATE(5229), 2, + sym_virtual_specifier, + aux_sym__function_declarator_seq_repeat2, + STATE(5459), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5462), 2, + sym_noexcept, + sym_throw_specifier, + [193979] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1539), 1, - anon_sym_LBRACK, - ACTIONS(1555), 1, + ACTIONS(125), 1, + anon_sym_operator, + ACTIONS(1973), 1, anon_sym_decltype, - ACTIONS(5502), 1, + ACTIONS(2562), 1, + anon_sym_TILDE, + ACTIONS(2570), 1, anon_sym_COLON_COLON, - ACTIONS(6785), 1, - anon_sym_requires, - ACTIONS(6867), 1, + ACTIONS(8196), 1, sym_identifier, - ACTIONS(6905), 1, - anon_sym_LPAREN2, - STATE(2255), 1, + ACTIONS(8198), 1, + anon_sym_template, + STATE(2850), 1, + sym_template_function, + STATE(2851), 1, + sym_destructor_name, + STATE(2852), 1, + sym_dependent_identifier, + STATE(2854), 1, + sym_qualified_identifier, + STATE(2859), 1, + sym_operator_name, + STATE(3595), 1, sym_template_type, - STATE(4500), 1, - sym_lambda_capture_specifier, - STATE(4997), 1, - sym__scope_resolution, - ACTIONS(6977), 2, - sym_true, - sym_false, - STATE(6159), 2, - sym_decltype, + STATE(3601), 1, sym_dependent_type_identifier, - STATE(4988), 8, - sym__class_name, - sym_constraint_conjunction, - sym_constraint_disjunction, - sym__requirement_clause_constraint, - sym_requires_expression, - sym_lambda_expression, - sym_fold_expression, + STATE(3747), 1, sym_qualified_type_identifier, - [160624] = 3, + STATE(5151), 1, + sym__scope_resolution, + STATE(6042), 1, + sym_operator_cast, + STATE(6044), 1, + sym_qualified_operator_cast_identifier, + STATE(7638), 1, + sym_decltype, + [194037] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(4543), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(4541), 20, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(6363), 1, + anon_sym_noexcept, + ACTIONS(6365), 1, + anon_sym_throw, + ACTIONS(6466), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6530), 1, + anon_sym_requires, + ACTIONS(6544), 1, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, + ACTIONS(6807), 1, + anon_sym_DASH_GT, + STATE(5365), 1, + sym_requires_clause, + STATE(5476), 1, + sym_trailing_return_type, + ACTIONS(6528), 2, anon_sym_final, anon_sym_override, - anon_sym_try, - anon_sym_requires, - [160654] = 3, + ACTIONS(6542), 2, + anon_sym_LPAREN2, + anon_sym_COLON, + STATE(5277), 2, + sym_virtual_specifier, + aux_sym__function_declarator_seq_repeat2, + STATE(5364), 2, + sym_noexcept, + sym_throw_specifier, + STATE(5437), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [194085] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(4425), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(4423), 20, + ACTIONS(6512), 1, anon_sym_LPAREN2, + ACTIONS(6520), 1, + anon_sym_LBRACK, + ACTIONS(7389), 1, anon_sym_STAR, + ACTIONS(7391), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, + ACTIONS(7393), 1, + anon_sym_AMP, + STATE(4121), 1, + sym_parameter_list, + STATE(5464), 1, + sym__function_declarator_seq, + STATE(5710), 1, + sym__abstract_declarator, + ACTIONS(6502), 5, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, anon_sym_final, anon_sym_override, - anon_sym_try, anon_sym_requires, - [160684] = 3, + STATE(5367), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [194127] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(4324), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(4322), 20, + ACTIONS(4572), 1, anon_sym_LPAREN2, + ACTIONS(4574), 1, anon_sym_STAR, + ACTIONS(4576), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(4578), 1, + anon_sym_AMP, + ACTIONS(6919), 1, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, + ACTIONS(8200), 1, + anon_sym_LBRACE, + ACTIONS(8202), 1, anon_sym_requires, - [160714] = 3, + STATE(3900), 1, + sym_parameter_list, + STATE(4031), 1, + sym_compound_statement, + STATE(5331), 1, + sym_requires_clause, + STATE(5457), 1, + sym__function_declarator_seq, + STATE(5958), 1, + sym__abstract_declarator, + STATE(6078), 1, + sym_abstract_function_declarator, + STATE(5452), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [194176] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(4445), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(4443), 20, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(4831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6526), 1, + anon_sym_DASH_GT, + ACTIONS(6530), 1, + anon_sym_requires, + ACTIONS(6544), 1, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, + STATE(5365), 1, + sym_requires_clause, + STATE(5476), 1, + sym_trailing_return_type, + ACTIONS(6528), 2, anon_sym_final, anon_sym_override, - anon_sym_try, - anon_sym_requires, - [160744] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4324), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(4322), 20, + STATE(4720), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5277), 2, + sym_virtual_specifier, + aux_sym__function_declarator_seq_repeat2, + ACTIONS(6542), 5, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym_LBRACE, + [194217] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6526), 1, + anon_sym_DASH_GT, + ACTIONS(6530), 1, + anon_sym_requires, + ACTIONS(7726), 1, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, + STATE(5417), 1, + sym_requires_clause, + STATE(5468), 1, + sym_trailing_return_type, + ACTIONS(6528), 2, anon_sym_final, anon_sym_override, - anon_sym_try, - anon_sym_requires, - [160774] = 3, + STATE(4720), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5254), 2, + sym_virtual_specifier, + aux_sym__function_declarator_seq_repeat2, + ACTIONS(7724), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + [194258] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(4363), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(4361), 20, + ACTIONS(41), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8204), 1, + anon_sym_COMMA, + ACTIONS(8206), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, + ACTIONS(8208), 1, anon_sym_SEMI, + ACTIONS(8210), 1, anon_sym_LBRACE, + ACTIONS(8212), 1, anon_sym_LBRACK, + ACTIONS(8214), 1, anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, + ACTIONS(8216), 1, anon_sym_try, - anon_sym_requires, - [160804] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1539), 1, - anon_sym_LBRACK, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(5598), 1, - anon_sym_COLON_COLON, - ACTIONS(6855), 1, - sym_identifier, - ACTIONS(6893), 1, - anon_sym_LPAREN2, - ACTIONS(6897), 1, - anon_sym_requires, - STATE(3133), 1, - sym_template_type, - STATE(4477), 1, - sym_lambda_capture_specifier, - STATE(5035), 1, - sym__scope_resolution, - ACTIONS(6979), 2, - sym_true, - sym_false, - STATE(6159), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(4911), 8, - sym__class_name, - sym_constraint_conjunction, - sym_constraint_disjunction, - sym__requirement_clause_constraint, - sym_requires_expression, - sym_lambda_expression, - sym_fold_expression, - sym_qualified_type_identifier, - [160856] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1539), 1, - anon_sym_LBRACK, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(2928), 1, - anon_sym_COLON_COLON, - ACTIONS(6855), 1, - sym_identifier, - ACTIONS(6885), 1, - anon_sym_LPAREN2, - ACTIONS(6891), 1, - anon_sym_requires, - STATE(3133), 1, - sym_template_type, - STATE(4485), 1, - sym_lambda_capture_specifier, - STATE(5006), 1, - sym__scope_resolution, - ACTIONS(6981), 2, - sym_true, - sym_false, - STATE(6159), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(4729), 8, - sym__class_name, - sym_constraint_conjunction, - sym_constraint_disjunction, - sym__requirement_clause_constraint, - sym_requires_expression, - sym_lambda_expression, - sym_fold_expression, - sym_qualified_type_identifier, - [160908] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1539), 1, - anon_sym_LBRACK, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(2928), 1, - anon_sym_COLON_COLON, - ACTIONS(6855), 1, - sym_identifier, - ACTIONS(6885), 1, - anon_sym_LPAREN2, - ACTIONS(6891), 1, - anon_sym_requires, - STATE(3133), 1, - sym_template_type, - STATE(4485), 1, - sym_lambda_capture_specifier, - STATE(5006), 1, - sym__scope_resolution, - ACTIONS(6901), 2, - sym_true, - sym_false, - STATE(6159), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(1859), 8, - sym__class_name, - sym_constraint_conjunction, - sym_constraint_disjunction, - sym__requirement_clause_constraint, - sym_requires_expression, - sym_lambda_expression, - sym_fold_expression, - sym_qualified_type_identifier, - [160960] = 14, + STATE(513), 1, + sym_compound_statement, + STATE(571), 1, + sym_try_statement, + STATE(3793), 1, + sym_parameter_list, + STATE(5647), 1, + sym__function_declarator_seq, + STATE(6453), 1, + aux_sym_declaration_repeat1, + STATE(5560), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6802), 2, + sym_argument_list, + sym_initializer_list, + [194309] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1539), 1, - anon_sym_LBRACK, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(4641), 1, - anon_sym_COLON_COLON, - ACTIONS(6857), 1, - sym_identifier, - ACTIONS(6893), 1, - anon_sym_LPAREN2, - ACTIONS(6897), 1, + ACTIONS(4831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6536), 1, + anon_sym_DASH_GT, + ACTIONS(6538), 1, anon_sym_requires, - STATE(3133), 1, - sym_template_type, - STATE(4477), 1, - sym_lambda_capture_specifier, - STATE(5040), 1, - sym__scope_resolution, - ACTIONS(6983), 2, - sym_true, - sym_false, - STATE(6159), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(4556), 8, - sym__class_name, - sym_constraint_conjunction, - sym_constraint_disjunction, - sym__requirement_clause_constraint, - sym_requires_expression, - sym_lambda_expression, - sym_fold_expression, - sym_qualified_type_identifier, - [161012] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1539), 1, + ACTIONS(6544), 1, anon_sym_LBRACK, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(6785), 1, - anon_sym_requires, - ACTIONS(6903), 1, - sym_identifier, - ACTIONS(6905), 1, + STATE(5365), 1, + sym_requires_clause, + STATE(5589), 1, + sym_trailing_return_type, + ACTIONS(6528), 2, + anon_sym_final, + anon_sym_override, + STATE(4720), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5277), 2, + sym_virtual_specifier, + aux_sym__function_declarator_seq_repeat2, + ACTIONS(6542), 5, anon_sym_LPAREN2, - ACTIONS(6907), 1, - anon_sym_COLON_COLON, - STATE(2255), 1, - sym_template_type, - STATE(4500), 1, - sym_lambda_capture_specifier, - STATE(5003), 1, - sym__scope_resolution, - ACTIONS(6985), 2, - sym_true, - sym_false, - STATE(6159), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(4787), 8, - sym__class_name, - sym_constraint_conjunction, - sym_constraint_disjunction, - sym__requirement_clause_constraint, - sym_requires_expression, - sym_lambda_expression, - sym_fold_expression, - sym_qualified_type_identifier, - [161064] = 10, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [194350] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, + ACTIONS(45), 1, anon_sym___based, - ACTIONS(6707), 1, - sym_identifier, - ACTIONS(6709), 1, + ACTIONS(1931), 1, + anon_sym_operator, + ACTIONS(6644), 1, anon_sym_LPAREN2, - ACTIONS(6711), 1, + ACTIONS(6652), 1, + sym_identifier, + ACTIONS(6654), 1, anon_sym_STAR, - STATE(5037), 1, - sym__type_declarator, - STATE(6360), 1, + ACTIONS(6656), 1, + anon_sym_AMP_AMP, + ACTIONS(6658), 1, + anon_sym_AMP, + STATE(5832), 1, + sym__field_declarator, + STATE(7524), 1, sym_ms_based_modifier, - STATE(4104), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(5132), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(2724), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [161107] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6987), 1, - sym_identifier, - ACTIONS(6989), 1, - anon_sym_RPAREN, - ACTIONS(6991), 1, - anon_sym_LPAREN2, - ACTIONS(6993), 1, - anon_sym_defined, - ACTIONS(6999), 1, - sym_number_literal, - ACTIONS(6995), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(6997), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7001), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(4284), 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, - [161150] = 14, + STATE(5685), 8, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + sym_reference_field_declarator, + sym_template_method, + sym_operator_name, + [194391] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(4214), 1, + ACTIONS(4831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5665), 1, - anon_sym_noexcept, - ACTIONS(5667), 1, - anon_sym_throw, - ACTIONS(5952), 1, - anon_sym_LBRACK, - ACTIONS(5974), 1, + ACTIONS(6526), 1, anon_sym_DASH_GT, - ACTIONS(5976), 1, + ACTIONS(6530), 1, anon_sym_requires, - STATE(4813), 1, + ACTIONS(7726), 1, + anon_sym_LBRACK, + STATE(5417), 1, sym_requires_clause, - STATE(4852), 1, + STATE(5468), 1, sym_trailing_return_type, - ACTIONS(5898), 2, + ACTIONS(6528), 2, anon_sym_final, anon_sym_override, - STATE(4512), 2, - sym_noexcept, - sym_throw_specifier, - STATE(4517), 2, + STATE(5212), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(4641), 2, + STATE(5254), 2, sym_virtual_specifier, aux_sym__function_declarator_seq_repeat2, - ACTIONS(5950), 5, + ACTIONS(7724), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, - [161201] = 14, + [194432] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(4214), 1, + ACTIONS(4831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5665), 1, - anon_sym_noexcept, - ACTIONS(5667), 1, - anon_sym_throw, - ACTIONS(5896), 1, + ACTIONS(6536), 1, anon_sym_DASH_GT, - ACTIONS(5900), 1, + ACTIONS(6538), 1, anon_sym_requires, - ACTIONS(6853), 1, + ACTIONS(6544), 1, anon_sym_LBRACK, - STATE(4807), 1, + STATE(5365), 1, sym_requires_clause, - STATE(4837), 1, + STATE(5589), 1, sym_trailing_return_type, - ACTIONS(5898), 2, + ACTIONS(6528), 2, anon_sym_final, anon_sym_override, - STATE(4498), 2, - sym_noexcept, - sym_throw_specifier, - STATE(4504), 2, + STATE(5181), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(4604), 2, + STATE(5277), 2, sym_virtual_specifier, aux_sym__function_declarator_seq_repeat2, - ACTIONS(6851), 5, + ACTIONS(6542), 5, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [161252] = 10, + [194473] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(6987), 1, - sym_identifier, - ACTIONS(6991), 1, + ACTIONS(4572), 1, anon_sym_LPAREN2, - ACTIONS(6993), 1, - anon_sym_defined, - ACTIONS(7003), 1, - anon_sym_RPAREN, - ACTIONS(7005), 1, - sym_number_literal, - ACTIONS(6995), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(6997), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7001), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(4285), 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, - [161295] = 11, + ACTIONS(4574), 1, + anon_sym_STAR, + ACTIONS(4576), 1, + anon_sym_AMP_AMP, + ACTIONS(4578), 1, + anon_sym_AMP, + ACTIONS(6919), 1, + anon_sym_LBRACK, + ACTIONS(8218), 1, + anon_sym_LT, + ACTIONS(8220), 1, + anon_sym_LBRACE, + STATE(3527), 1, + sym_compound_statement, + STATE(3900), 1, + sym_parameter_list, + STATE(5174), 1, + sym_template_parameter_list, + STATE(5457), 1, + sym__function_declarator_seq, + STATE(5958), 1, + sym__abstract_declarator, + STATE(6071), 1, + sym_abstract_function_declarator, + STATE(5452), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [194522] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(5864), 1, + ACTIONS(4572), 1, anon_sym_LPAREN2, - ACTIONS(5872), 1, - anon_sym_LBRACK, - ACTIONS(6482), 1, + ACTIONS(4574), 1, anon_sym_STAR, - ACTIONS(6484), 1, + ACTIONS(4576), 1, anon_sym_AMP_AMP, - ACTIONS(6486), 1, + ACTIONS(4578), 1, anon_sym_AMP, - STATE(3490), 1, + ACTIONS(6919), 1, + anon_sym_LBRACK, + ACTIONS(8202), 1, + anon_sym_requires, + ACTIONS(8222), 1, + anon_sym_LBRACE, + STATE(3900), 1, sym_parameter_list, - STATE(4690), 1, + STATE(5231), 1, + sym_compound_statement, + STATE(5343), 1, + sym_requires_clause, + STATE(5457), 1, sym__function_declarator_seq, - STATE(4854), 1, + STATE(5958), 1, sym__abstract_declarator, - STATE(4686), 5, + STATE(6111), 1, + sym_abstract_function_declarator, + STATE(5452), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, - sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(5550), 8, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [161340] = 14, + [194571] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(4214), 1, + ACTIONS(4831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5665), 1, - anon_sym_noexcept, - ACTIONS(5667), 1, - anon_sym_throw, - ACTIONS(5675), 1, + ACTIONS(6409), 1, anon_sym_LBRACK, - ACTIONS(5974), 1, + ACTIONS(6536), 1, anon_sym_DASH_GT, - ACTIONS(5976), 1, + ACTIONS(6538), 1, anon_sym_requires, - STATE(4789), 1, + STATE(5436), 1, sym_requires_clause, - STATE(4825), 1, + STATE(5599), 1, sym_trailing_return_type, - ACTIONS(5898), 2, + ACTIONS(6528), 2, anon_sym_final, anon_sym_override, - STATE(4470), 2, + STATE(4720), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(4490), 2, - sym_noexcept, - sym_throw_specifier, - STATE(4622), 2, + STATE(5229), 2, sym_virtual_specifier, aux_sym__function_declarator_seq_repeat2, - ACTIONS(5673), 5, + ACTIONS(6407), 5, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [194612] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(41), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8204), 1, anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(8206), 1, anon_sym_LPAREN2, + ACTIONS(8212), 1, + anon_sym_LBRACK, + ACTIONS(8214), 1, + anon_sym_EQ, + ACTIONS(8224), 1, anon_sym_SEMI, + ACTIONS(8226), 1, anon_sym_LBRACE, - [161391] = 14, + ACTIONS(8228), 1, + anon_sym_try, + STATE(1295), 1, + sym_compound_statement, + STATE(1297), 1, + sym_try_statement, + STATE(3793), 1, + sym_parameter_list, + STATE(5647), 1, + sym__function_declarator_seq, + STATE(6445), 1, + aux_sym_declaration_repeat1, + STATE(5560), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6802), 2, + sym_argument_list, + sym_initializer_list, + [194663] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(4214), 1, + ACTIONS(41), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5665), 1, - anon_sym_noexcept, - ACTIONS(5667), 1, - anon_sym_throw, - ACTIONS(5896), 1, + ACTIONS(7981), 1, + anon_sym_LBRACE, + ACTIONS(7987), 1, + anon_sym_try, + ACTIONS(8204), 1, + anon_sym_COMMA, + ACTIONS(8206), 1, + anon_sym_LPAREN2, + ACTIONS(8212), 1, + anon_sym_LBRACK, + ACTIONS(8214), 1, + anon_sym_EQ, + ACTIONS(8230), 1, + anon_sym_SEMI, + STATE(2430), 1, + sym_compound_statement, + STATE(2432), 1, + sym_try_statement, + STATE(3793), 1, + sym_parameter_list, + STATE(5647), 1, + sym__function_declarator_seq, + STATE(6363), 1, + aux_sym_declaration_repeat1, + STATE(5560), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6802), 2, + sym_argument_list, + sym_initializer_list, + [194714] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6409), 1, + anon_sym_LBRACK, + ACTIONS(6536), 1, anon_sym_DASH_GT, - ACTIONS(5900), 1, + ACTIONS(6538), 1, anon_sym_requires, - ACTIONS(5952), 1, - anon_sym_LBRACK, - STATE(4813), 1, + STATE(5436), 1, sym_requires_clause, - STATE(4871), 1, + STATE(5599), 1, sym_trailing_return_type, - ACTIONS(5898), 2, + ACTIONS(6528), 2, anon_sym_final, anon_sym_override, - STATE(4507), 2, + STATE(5158), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(4508), 2, - sym_noexcept, - sym_throw_specifier, - STATE(4641), 2, + STATE(5229), 2, sym_virtual_specifier, aux_sym__function_declarator_seq_repeat2, - ACTIONS(5950), 5, + ACTIONS(6407), 5, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [161442] = 14, + [194755] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(4214), 1, + ACTIONS(4831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5665), 1, - anon_sym_noexcept, - ACTIONS(5667), 1, - anon_sym_throw, - ACTIONS(5988), 1, + ACTIONS(6532), 1, anon_sym_DASH_GT, - ACTIONS(5990), 1, + ACTIONS(6534), 1, anon_sym_requires, - ACTIONS(6853), 1, + ACTIONS(6544), 1, anon_sym_LBRACK, - STATE(4659), 1, + STATE(5360), 1, sym_requires_clause, - STATE(4772), 1, + STATE(5503), 1, sym_trailing_return_type, - ACTIONS(4135), 2, + ACTIONS(4880), 2, anon_sym_final, - anon_sym_override, - STATE(4495), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(4496), 2, - sym_noexcept, - sym_throw_specifier, - STATE(4533), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat2, - ACTIONS(6851), 5, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_try, - [161493] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(6707), 1, - sym_identifier, - ACTIONS(6709), 1, - anon_sym_LPAREN2, - ACTIONS(6711), 1, - anon_sym_STAR, - STATE(5019), 1, - sym__type_declarator, - STATE(6360), 1, - sym_ms_based_modifier, - STATE(4104), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(5132), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(2724), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [161536] = 10, + anon_sym_override, + STATE(5210), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5295), 2, + sym_virtual_specifier, + aux_sym__function_declarator_seq_repeat2, + ACTIONS(6542), 5, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_try, + [194796] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(6707), 1, - sym_identifier, - ACTIONS(6709), 1, + ACTIONS(5155), 2, + sym_auto, + anon_sym_decltype, + ACTIONS(8190), 2, anon_sym_LPAREN2, - ACTIONS(6711), 1, anon_sym_STAR, - STATE(4981), 1, - sym__type_declarator, - STATE(6360), 1, - sym_ms_based_modifier, - STATE(4104), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(5132), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(2724), 8, + ACTIONS(8188), 13, + anon_sym___based, anon_sym_const, + anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, + anon_sym___restrict__, anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, anon_sym_mutable, - anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - [161579] = 5, - ACTIONS(6941), 1, - anon_sym_LF, - ACTIONS(7007), 1, - anon_sym_LPAREN2, - ACTIONS(7009), 1, - sym_comment, - STATE(4436), 1, - sym_preproc_argument_list, - ACTIONS(6945), 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, - [161612] = 14, + sym_identifier, + [194823] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(4214), 1, + ACTIONS(4831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5665), 1, - anon_sym_noexcept, - ACTIONS(5667), 1, - anon_sym_throw, - ACTIONS(5974), 1, + ACTIONS(6409), 1, + anon_sym_LBRACK, + ACTIONS(6532), 1, anon_sym_DASH_GT, - ACTIONS(5976), 1, + ACTIONS(6534), 1, anon_sym_requires, - ACTIONS(6853), 1, - anon_sym_LBRACK, - STATE(4807), 1, + STATE(5422), 1, sym_requires_clause, - STATE(4820), 1, + STATE(5499), 1, sym_trailing_return_type, - ACTIONS(5898), 2, + ACTIONS(4880), 2, anon_sym_final, anon_sym_override, - STATE(4471), 2, + STATE(4720), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(4481), 2, - sym_noexcept, - sym_throw_specifier, - STATE(4604), 2, + STATE(5301), 2, sym_virtual_specifier, aux_sym__function_declarator_seq_repeat2, - ACTIONS(6851), 5, - anon_sym_COMMA, + ACTIONS(6407), 5, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, - [161663] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7011), 1, - anon_sym_COMMA, - ACTIONS(7013), 1, - anon_sym_RPAREN, - ACTIONS(7019), 1, - anon_sym_SLASH, - ACTIONS(7021), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7023), 1, - anon_sym_AMP_AMP, - ACTIONS(7025), 1, - anon_sym_PIPE, - ACTIONS(7027), 1, - anon_sym_CARET, - ACTIONS(7029), 1, - anon_sym_AMP, - STATE(5546), 1, - aux_sym_preproc_argument_list_repeat1, - ACTIONS(7015), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7017), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7031), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7033), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(7035), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(7037), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [161718] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7011), 1, - anon_sym_COMMA, - ACTIONS(7019), 1, - anon_sym_SLASH, - ACTIONS(7021), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7023), 1, - anon_sym_AMP_AMP, - ACTIONS(7025), 1, - anon_sym_PIPE, - ACTIONS(7027), 1, - anon_sym_CARET, - ACTIONS(7029), 1, - anon_sym_AMP, - ACTIONS(7039), 1, - anon_sym_RPAREN, - STATE(5456), 1, - aux_sym_preproc_argument_list_repeat1, - ACTIONS(7015), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7017), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7031), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7033), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(7035), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(7037), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [161773] = 14, + anon_sym_try, + [194864] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(4214), 1, + ACTIONS(4831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5665), 1, - anon_sym_noexcept, - ACTIONS(5667), 1, - anon_sym_throw, - ACTIONS(5675), 1, + ACTIONS(6409), 1, anon_sym_LBRACK, - ACTIONS(5988), 1, + ACTIONS(6532), 1, anon_sym_DASH_GT, - ACTIONS(5990), 1, + ACTIONS(6534), 1, anon_sym_requires, - STATE(4716), 1, + STATE(5422), 1, sym_requires_clause, - STATE(4779), 1, + STATE(5499), 1, sym_trailing_return_type, - ACTIONS(4135), 2, + ACTIONS(4880), 2, anon_sym_final, anon_sym_override, - STATE(4480), 2, + STATE(5177), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(4521), 2, - sym_noexcept, - sym_throw_specifier, - STATE(4578), 2, + STATE(5301), 2, sym_virtual_specifier, aux_sym__function_declarator_seq_repeat2, - ACTIONS(5673), 5, + ACTIONS(6407), 5, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_try, - [161824] = 14, + [194905] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(4214), 1, + ACTIONS(4831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5665), 1, - anon_sym_noexcept, - ACTIONS(5667), 1, - anon_sym_throw, - ACTIONS(5675), 1, - anon_sym_LBRACK, - ACTIONS(5896), 1, + ACTIONS(6536), 1, anon_sym_DASH_GT, - ACTIONS(5900), 1, + ACTIONS(6538), 1, anon_sym_requires, - STATE(4789), 1, + ACTIONS(7726), 1, + anon_sym_LBRACK, + STATE(5417), 1, sym_requires_clause, - STATE(4856), 1, + STATE(5582), 1, sym_trailing_return_type, - ACTIONS(5898), 2, + ACTIONS(6528), 2, anon_sym_final, anon_sym_override, - STATE(4473), 2, - sym_noexcept, - sym_throw_specifier, - STATE(4482), 2, + STATE(5175), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(4622), 2, + STATE(5254), 2, sym_virtual_specifier, aux_sym__function_declarator_seq_repeat2, - ACTIONS(5673), 5, + ACTIONS(7724), 5, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [161875] = 5, + [194946] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(4225), 1, - anon_sym_LBRACE, - ACTIONS(4229), 1, - anon_sym_COLON_COLON, - ACTIONS(4324), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(4322), 17, - anon_sym_DOT_DOT_DOT, + ACTIONS(41), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8204), 1, anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(8206), 1, anon_sym_LPAREN2, + ACTIONS(8212), 1, + anon_sym_LBRACK, + ACTIONS(8214), 1, + anon_sym_EQ, + ACTIONS(8232), 1, + anon_sym_SEMI, + ACTIONS(8234), 1, + anon_sym_LBRACE, + ACTIONS(8236), 1, + anon_sym_try, + STATE(1341), 1, + sym_try_statement, + STATE(1346), 1, + sym_compound_statement, + STATE(3793), 1, + sym_parameter_list, + STATE(5647), 1, + sym__function_declarator_seq, + STATE(6290), 1, + aux_sym_declaration_repeat1, + STATE(5560), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6802), 2, + sym_argument_list, + sym_initializer_list, + [194997] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4572), 1, + anon_sym_LPAREN2, + ACTIONS(4574), 1, anon_sym_STAR, + ACTIONS(4576), 1, anon_sym_AMP_AMP, + ACTIONS(4578), 1, + anon_sym_AMP, + ACTIONS(6919), 1, anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [161908] = 14, + ACTIONS(8202), 1, + anon_sym_requires, + ACTIONS(8220), 1, + anon_sym_LBRACE, + STATE(3445), 1, + sym_compound_statement, + STATE(3900), 1, + sym_parameter_list, + STATE(5346), 1, + sym_requires_clause, + STATE(5457), 1, + sym__function_declarator_seq, + STATE(5958), 1, + sym__abstract_declarator, + STATE(5998), 1, + sym_abstract_function_declarator, + STATE(5452), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [195046] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(4214), 1, + ACTIONS(4831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5665), 1, - anon_sym_noexcept, - ACTIONS(5667), 1, - anon_sym_throw, - ACTIONS(5952), 1, - anon_sym_LBRACK, - ACTIONS(5988), 1, + ACTIONS(6536), 1, anon_sym_DASH_GT, - ACTIONS(5990), 1, + ACTIONS(6538), 1, anon_sym_requires, - STATE(4723), 1, + ACTIONS(8033), 1, + anon_sym_LBRACK, + STATE(5430), 1, sym_requires_clause, - STATE(4810), 1, + STATE(5575), 1, sym_trailing_return_type, - ACTIONS(4135), 2, + ACTIONS(6528), 2, anon_sym_final, anon_sym_override, - STATE(4492), 2, + STATE(4720), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(4493), 2, - sym_noexcept, - sym_throw_specifier, - STATE(4538), 2, + STATE(5257), 2, sym_virtual_specifier, aux_sym__function_declarator_seq_repeat2, - ACTIONS(5950), 5, - anon_sym_RPAREN, + ACTIONS(8031), 5, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, + anon_sym_EQ, anon_sym_try, - [161959] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6987), 1, - sym_identifier, - ACTIONS(6991), 1, - anon_sym_LPAREN2, - ACTIONS(6993), 1, - anon_sym_defined, - ACTIONS(7041), 1, - sym_number_literal, - ACTIONS(6995), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(6997), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7001), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(4341), 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, - [161999] = 11, + [195087] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(4214), 1, + ACTIONS(4831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5663), 1, + ACTIONS(6536), 1, anon_sym_DASH_GT, - ACTIONS(5669), 1, + ACTIONS(6538), 1, anon_sym_requires, - ACTIONS(5675), 1, + ACTIONS(8033), 1, anon_sym_LBRACK, - STATE(4550), 1, - sym_trailing_return_type, - STATE(4716), 1, + STATE(5430), 1, sym_requires_clause, - ACTIONS(4135), 2, + STATE(5575), 1, + sym_trailing_return_type, + ACTIONS(6528), 2, anon_sym_final, anon_sym_override, - STATE(4085), 2, + STATE(5180), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(4578), 2, + STATE(5257), 2, sym_virtual_specifier, aux_sym__function_declarator_seq_repeat2, - ACTIONS(5673), 8, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(8031), 5, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_GT2, anon_sym_try, - [162043] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7045), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(7043), 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, - [162071] = 17, + [195128] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(4214), 1, + ACTIONS(4831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5445), 1, - anon_sym_LBRACE, - ACTIONS(5447), 1, - anon_sym_COLON, - ACTIONS(6855), 1, - sym_identifier, - ACTIONS(6861), 1, - anon_sym_COLON_COLON, - STATE(3133), 1, - sym_template_type, - STATE(3264), 1, - sym_field_declaration_list, - STATE(4979), 1, - sym__scope_resolution, - STATE(5334), 1, - sym_virtual_specifier, - STATE(5860), 1, - sym_base_class_clause, - ACTIONS(5449), 2, + ACTIONS(6532), 1, + anon_sym_DASH_GT, + ACTIONS(6534), 1, + anon_sym_requires, + ACTIONS(6544), 1, + anon_sym_LBRACK, + STATE(5360), 1, + sym_requires_clause, + STATE(5503), 1, + sym_trailing_return_type, + ACTIONS(4880), 2, anon_sym_final, anon_sym_override, - STATE(4398), 2, + STATE(4720), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(4815), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6159), 2, - sym_decltype, - sym_dependent_type_identifier, - [162127] = 17, + STATE(5295), 2, + sym_virtual_specifier, + aux_sym__function_declarator_seq_repeat2, + ACTIONS(6542), 5, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_try, + [195169] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(4214), 1, + ACTIONS(41), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4641), 1, - anon_sym_COLON_COLON, - ACTIONS(5445), 1, + ACTIONS(8093), 1, anon_sym_LBRACE, - ACTIONS(5447), 1, - anon_sym_COLON, - ACTIONS(6857), 1, - sym_identifier, - STATE(3133), 1, - sym_template_type, - STATE(3264), 1, - sym_field_declaration_list, - STATE(5040), 1, - sym__scope_resolution, - STATE(5334), 1, - sym_virtual_specifier, - STATE(5860), 1, - sym_base_class_clause, - ACTIONS(5449), 2, - anon_sym_final, - anon_sym_override, - STATE(3396), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(4322), 2, + ACTIONS(8097), 1, + anon_sym_try, + ACTIONS(8204), 1, + anon_sym_COMMA, + ACTIONS(8206), 1, + anon_sym_LPAREN2, + ACTIONS(8212), 1, + anon_sym_LBRACK, + ACTIONS(8214), 1, + anon_sym_EQ, + ACTIONS(8238), 1, + anon_sym_SEMI, + STATE(2663), 1, + sym_compound_statement, + STATE(2664), 1, + sym_try_statement, + STATE(3793), 1, + sym_parameter_list, + STATE(5647), 1, + sym__function_declarator_seq, + STATE(6233), 1, + aux_sym_declaration_repeat1, + STATE(5560), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6159), 2, - sym_decltype, - sym_dependent_type_identifier, - [162183] = 9, + STATE(6802), 2, + sym_argument_list, + sym_initializer_list, + [195220] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(6987), 1, - sym_identifier, - ACTIONS(6991), 1, + ACTIONS(4572), 1, anon_sym_LPAREN2, - ACTIONS(6993), 1, - anon_sym_defined, - ACTIONS(7047), 1, - sym_number_literal, - ACTIONS(6995), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(6997), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7001), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(4373), 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, - [162223] = 17, + ACTIONS(4574), 1, + anon_sym_STAR, + ACTIONS(4576), 1, + anon_sym_AMP_AMP, + ACTIONS(4578), 1, + anon_sym_AMP, + ACTIONS(6919), 1, + anon_sym_LBRACK, + ACTIONS(8218), 1, + anon_sym_LT, + ACTIONS(8240), 1, + anon_sym_LBRACE, + STATE(2197), 1, + sym_compound_statement, + STATE(3900), 1, + sym_parameter_list, + STATE(5193), 1, + sym_template_parameter_list, + STATE(5457), 1, + sym__function_declarator_seq, + STATE(5958), 1, + sym__abstract_declarator, + STATE(6104), 1, + sym_abstract_function_declarator, + STATE(5452), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [195269] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(4214), 1, + ACTIONS(4831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5445), 1, - anon_sym_LBRACE, - ACTIONS(5447), 1, - anon_sym_COLON, - ACTIONS(5598), 1, - anon_sym_COLON_COLON, - ACTIONS(6855), 1, - sym_identifier, - STATE(3133), 1, - sym_template_type, - STATE(3264), 1, - sym_field_declaration_list, - STATE(5035), 1, - sym__scope_resolution, - STATE(5334), 1, - sym_virtual_specifier, - STATE(5860), 1, - sym_base_class_clause, - ACTIONS(5449), 2, + ACTIONS(6536), 1, + anon_sym_DASH_GT, + ACTIONS(6538), 1, + anon_sym_requires, + ACTIONS(8021), 1, + anon_sym_LBRACK, + STATE(5420), 1, + sym_requires_clause, + STATE(5544), 1, + sym_trailing_return_type, + ACTIONS(6528), 2, anon_sym_final, anon_sym_override, - STATE(3396), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(4085), 2, + STATE(4720), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6159), 2, - sym_decltype, - sym_dependent_type_identifier, - [162279] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6987), 1, - sym_identifier, - ACTIONS(6991), 1, - anon_sym_LPAREN2, - ACTIONS(6993), 1, - anon_sym_defined, - ACTIONS(7049), 1, - sym_number_literal, - ACTIONS(6995), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(6997), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7001), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(4380), 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, - [162319] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7051), 1, - sym_identifier, - ACTIONS(7053), 1, - anon_sym_LPAREN2, - ACTIONS(7055), 1, - anon_sym_defined, - ACTIONS(7061), 1, - sym_number_literal, - ACTIONS(7057), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(7059), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7063), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(4421), 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, - [162359] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6987), 1, - sym_identifier, - ACTIONS(6991), 1, - anon_sym_LPAREN2, - ACTIONS(6993), 1, - anon_sym_defined, - ACTIONS(7065), 1, - sym_number_literal, - ACTIONS(6995), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(6997), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7001), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(4381), 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, - [162399] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6987), 1, - sym_identifier, - ACTIONS(6991), 1, - anon_sym_LPAREN2, - ACTIONS(6993), 1, - anon_sym_defined, - ACTIONS(7067), 1, - sym_number_literal, - ACTIONS(6995), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(6997), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7001), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(4382), 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, - [162439] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6987), 1, - sym_identifier, - ACTIONS(6991), 1, - anon_sym_LPAREN2, - ACTIONS(6993), 1, - anon_sym_defined, - ACTIONS(7069), 1, - sym_number_literal, - ACTIONS(6995), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(6997), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7001), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(4337), 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, - [162479] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6987), 1, - sym_identifier, - ACTIONS(6991), 1, + STATE(5261), 2, + sym_virtual_specifier, + aux_sym__function_declarator_seq_repeat2, + ACTIONS(8019), 5, anon_sym_LPAREN2, - ACTIONS(6993), 1, - anon_sym_defined, - ACTIONS(7071), 1, - sym_number_literal, - ACTIONS(6995), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(6997), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7001), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(4316), 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, - [162519] = 17, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [195310] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(4214), 1, + ACTIONS(4831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5445), 1, - anon_sym_LBRACE, - ACTIONS(5447), 1, - anon_sym_COLON, - ACTIONS(5598), 1, - anon_sym_COLON_COLON, - ACTIONS(6855), 1, - sym_identifier, - STATE(3133), 1, - sym_template_type, - STATE(3264), 1, - sym_field_declaration_list, - STATE(5035), 1, - sym__scope_resolution, - STATE(5334), 1, - sym_virtual_specifier, - STATE(5860), 1, - sym_base_class_clause, - ACTIONS(5449), 2, + ACTIONS(6536), 1, + anon_sym_DASH_GT, + ACTIONS(6538), 1, + anon_sym_requires, + ACTIONS(7726), 1, + anon_sym_LBRACK, + STATE(5417), 1, + sym_requires_clause, + STATE(5582), 1, + sym_trailing_return_type, + ACTIONS(6528), 2, anon_sym_final, anon_sym_override, - STATE(3396), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(4308), 2, + STATE(4720), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6159), 2, - sym_decltype, - sym_dependent_type_identifier, - [162575] = 9, + STATE(5254), 2, + sym_virtual_specifier, + aux_sym__function_declarator_seq_repeat2, + ACTIONS(7724), 5, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [195351] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(6987), 1, - sym_identifier, - ACTIONS(6991), 1, + ACTIONS(4572), 1, anon_sym_LPAREN2, - ACTIONS(6993), 1, - anon_sym_defined, - ACTIONS(7073), 1, - sym_number_literal, - ACTIONS(6995), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(6997), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7001), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(4320), 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, - [162615] = 17, + ACTIONS(4574), 1, + anon_sym_STAR, + ACTIONS(4576), 1, + anon_sym_AMP_AMP, + ACTIONS(4578), 1, + anon_sym_AMP, + ACTIONS(6919), 1, + anon_sym_LBRACK, + ACTIONS(8202), 1, + anon_sym_requires, + ACTIONS(8242), 1, + anon_sym_LBRACE, + STATE(3900), 1, + sym_parameter_list, + STATE(5353), 1, + sym_requires_clause, + STATE(5457), 1, + sym__function_declarator_seq, + STATE(5523), 1, + sym_compound_statement, + STATE(5958), 1, + sym__abstract_declarator, + STATE(5993), 1, + sym_abstract_function_declarator, + STATE(5452), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [195400] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(4214), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(4641), 1, - anon_sym_COLON_COLON, - ACTIONS(5445), 1, + ACTIONS(4572), 1, + anon_sym_LPAREN2, + ACTIONS(4574), 1, + anon_sym_STAR, + ACTIONS(4576), 1, + anon_sym_AMP_AMP, + ACTIONS(4578), 1, + anon_sym_AMP, + ACTIONS(6919), 1, + anon_sym_LBRACK, + ACTIONS(8218), 1, + anon_sym_LT, + ACTIONS(8244), 1, anon_sym_LBRACE, - ACTIONS(5447), 1, - anon_sym_COLON, - ACTIONS(6857), 1, - sym_identifier, - STATE(3133), 1, - sym_template_type, - STATE(3264), 1, - sym_field_declaration_list, - STATE(5040), 1, - sym__scope_resolution, - STATE(5334), 1, - sym_virtual_specifier, - STATE(5860), 1, - sym_base_class_clause, - ACTIONS(5449), 2, - anon_sym_final, - anon_sym_override, - STATE(3396), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(4085), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6159), 2, - sym_decltype, - sym_dependent_type_identifier, - [162671] = 17, + STATE(3805), 1, + sym_compound_statement, + STATE(3900), 1, + sym_parameter_list, + STATE(5214), 1, + sym_template_parameter_list, + STATE(5457), 1, + sym__function_declarator_seq, + STATE(5958), 1, + sym__abstract_declarator, + STATE(6030), 1, + sym_abstract_function_declarator, + STATE(5452), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [195449] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1555), 1, + ACTIONS(5155), 2, + sym_auto, anon_sym_decltype, - ACTIONS(4214), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5445), 1, - anon_sym_LBRACE, - ACTIONS(5447), 1, - anon_sym_COLON, - ACTIONS(6855), 1, + ACTIONS(8190), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + ACTIONS(8188), 13, + anon_sym___based, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, sym_identifier, - ACTIONS(6861), 1, - anon_sym_COLON_COLON, - STATE(3133), 1, - sym_template_type, - STATE(3264), 1, - sym_field_declaration_list, - STATE(4979), 1, - sym__scope_resolution, - STATE(5334), 1, - sym_virtual_specifier, - STATE(5860), 1, - sym_base_class_clause, - ACTIONS(5449), 2, - anon_sym_final, - anon_sym_override, - STATE(4085), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(4815), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6159), 2, - sym_decltype, - sym_dependent_type_identifier, - [162727] = 11, + [195476] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(45), 1, + anon_sym___based, + ACTIONS(1931), 1, + anon_sym_operator, + ACTIONS(6642), 1, + sym_identifier, + ACTIONS(6644), 1, + anon_sym_LPAREN2, + ACTIONS(6646), 1, + anon_sym_STAR, + ACTIONS(6648), 1, + anon_sym_AMP_AMP, + ACTIONS(6650), 1, + anon_sym_AMP, + STATE(5562), 1, + sym__field_declarator, + STATE(7022), 1, + sym_ms_based_modifier, + STATE(5685), 8, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + sym_reference_field_declarator, + sym_template_method, + sym_operator_name, + [195517] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(4214), 1, + ACTIONS(4831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5663), 1, + ACTIONS(6526), 1, anon_sym_DASH_GT, - ACTIONS(5669), 1, + ACTIONS(6530), 1, anon_sym_requires, - ACTIONS(7077), 1, + ACTIONS(6544), 1, anon_sym_LBRACK, - STATE(4549), 1, - sym_trailing_return_type, - STATE(4728), 1, + STATE(5365), 1, sym_requires_clause, - ACTIONS(4135), 2, + STATE(5476), 1, + sym_trailing_return_type, + ACTIONS(6528), 2, anon_sym_final, anon_sym_override, - STATE(4085), 2, + STATE(5156), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(4541), 2, + STATE(5277), 2, sym_virtual_specifier, aux_sym__function_declarator_seq_repeat2, - ACTIONS(7075), 8, + ACTIONS(6542), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - anon_sym_try, - [162771] = 17, + [195558] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(4214), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5445), 1, + ACTIONS(4572), 1, + anon_sym_LPAREN2, + ACTIONS(4574), 1, + anon_sym_STAR, + ACTIONS(4576), 1, + anon_sym_AMP_AMP, + ACTIONS(4578), 1, + anon_sym_AMP, + ACTIONS(6919), 1, + anon_sym_LBRACK, + ACTIONS(8218), 1, + anon_sym_LT, + ACTIONS(8246), 1, anon_sym_LBRACE, - ACTIONS(5447), 1, - anon_sym_COLON, - ACTIONS(5598), 1, - anon_sym_COLON_COLON, - ACTIONS(6855), 1, - sym_identifier, - STATE(3133), 1, - sym_template_type, - STATE(3267), 1, - sym_field_declaration_list, - STATE(5035), 1, - sym__scope_resolution, - STATE(5198), 1, - sym_virtual_specifier, - STATE(5820), 1, - sym_base_class_clause, - ACTIONS(5449), 2, - anon_sym_final, - anon_sym_override, - STATE(3431), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(4085), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6159), 2, - sym_decltype, - sym_dependent_type_identifier, - [162827] = 3, + STATE(3346), 1, + sym_compound_statement, + STATE(3900), 1, + sym_parameter_list, + STATE(5215), 1, + sym_template_parameter_list, + STATE(5457), 1, + sym__function_declarator_seq, + STATE(5958), 1, + sym__abstract_declarator, + STATE(6166), 1, + sym_abstract_function_declarator, + STATE(5452), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [195607] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(7081), 5, - anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(4572), 1, + anon_sym_LPAREN2, + ACTIONS(4574), 1, + anon_sym_STAR, + ACTIONS(4576), 1, + anon_sym_AMP_AMP, + ACTIONS(4578), 1, anon_sym_AMP, - anon_sym_GT, + ACTIONS(6919), 1, + anon_sym_LBRACK, + ACTIONS(8218), 1, anon_sym_LT, - ACTIONS(7079), 15, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(8248), 1, + anon_sym_LBRACE, + STATE(3061), 1, + sym_compound_statement, + STATE(3900), 1, + sym_parameter_list, + STATE(5217), 1, + sym_template_parameter_list, + STATE(5457), 1, + sym__function_declarator_seq, + STATE(5958), 1, + sym__abstract_declarator, + STATE(5997), 1, + sym_abstract_function_declarator, + STATE(5452), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [195656] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4572), 1, + anon_sym_LPAREN2, + ACTIONS(4574), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(4576), 1, 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, - [162855] = 9, + ACTIONS(4578), 1, + anon_sym_AMP, + ACTIONS(6919), 1, + anon_sym_LBRACK, + ACTIONS(8202), 1, + anon_sym_requires, + ACTIONS(8250), 1, + anon_sym_LBRACE, + STATE(3597), 1, + sym_compound_statement, + STATE(3900), 1, + sym_parameter_list, + STATE(5308), 1, + sym_requires_clause, + STATE(5457), 1, + sym__function_declarator_seq, + STATE(5958), 1, + sym__abstract_declarator, + STATE(6088), 1, + sym_abstract_function_declarator, + STATE(5452), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [195705] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(6987), 1, - sym_identifier, - ACTIONS(6991), 1, + ACTIONS(41), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7993), 1, + anon_sym_LBRACE, + ACTIONS(7997), 1, + anon_sym_try, + ACTIONS(8204), 1, + anon_sym_COMMA, + ACTIONS(8206), 1, anon_sym_LPAREN2, - ACTIONS(6993), 1, - anon_sym_defined, - ACTIONS(7083), 1, - sym_number_literal, - ACTIONS(6995), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(6997), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7001), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(4384), 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, - [162895] = 3, + ACTIONS(8212), 1, + anon_sym_LBRACK, + ACTIONS(8214), 1, + anon_sym_EQ, + ACTIONS(8252), 1, + anon_sym_SEMI, + STATE(2302), 1, + sym_try_statement, + STATE(2305), 1, + sym_compound_statement, + STATE(3793), 1, + sym_parameter_list, + STATE(5647), 1, + sym__function_declarator_seq, + STATE(6251), 1, + aux_sym_declaration_repeat1, + STATE(5560), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6802), 2, + sym_argument_list, + sym_initializer_list, + [195756] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(7087), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(7085), 15, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(4572), 1, + anon_sym_LPAREN2, + ACTIONS(4574), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(4576), 1, 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, - [162923] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7091), 5, - anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(4578), 1, anon_sym_AMP, - anon_sym_GT, + ACTIONS(6919), 1, + anon_sym_LBRACK, + ACTIONS(8218), 1, anon_sym_LT, - ACTIONS(7089), 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, - [162951] = 11, + ACTIONS(8222), 1, + anon_sym_LBRACE, + STATE(3900), 1, + sym_parameter_list, + STATE(5163), 1, + sym_template_parameter_list, + STATE(5248), 1, + sym_compound_statement, + STATE(5457), 1, + sym__function_declarator_seq, + STATE(5958), 1, + sym__abstract_declarator, + STATE(6137), 1, + sym_abstract_function_declarator, + STATE(5452), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [195805] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(4214), 1, + ACTIONS(4831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5663), 1, + ACTIONS(6532), 1, anon_sym_DASH_GT, - ACTIONS(5669), 1, + ACTIONS(6534), 1, anon_sym_requires, - ACTIONS(7095), 1, + ACTIONS(8021), 1, anon_sym_LBRACK, - STATE(4548), 1, - sym_trailing_return_type, - STATE(4674), 1, + STATE(5388), 1, sym_requires_clause, - ACTIONS(4135), 2, + STATE(5509), 1, + sym_trailing_return_type, + ACTIONS(4880), 2, anon_sym_final, anon_sym_override, - STATE(4307), 2, + STATE(4720), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(4545), 2, + STATE(5223), 2, sym_virtual_specifier, aux_sym__function_declarator_seq_repeat2, - ACTIONS(7093), 8, - anon_sym_COMMA, + ACTIONS(8019), 5, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, anon_sym_try, - [162995] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7099), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(7097), 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, - [163023] = 11, + [195846] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(3908), 1, + ACTIONS(4572), 1, anon_sym_LPAREN2, - ACTIONS(3910), 1, + ACTIONS(4574), 1, anon_sym_STAR, - ACTIONS(3912), 1, + ACTIONS(4576), 1, anon_sym_AMP_AMP, - ACTIONS(3914), 1, + ACTIONS(4578), 1, anon_sym_AMP, - ACTIONS(6514), 1, + ACTIONS(6919), 1, anon_sym_LBRACK, - STATE(3482), 1, + ACTIONS(8202), 1, + anon_sym_requires, + ACTIONS(8240), 1, + anon_sym_LBRACE, + STATE(2195), 1, + sym_compound_statement, + STATE(3900), 1, sym_parameter_list, - STATE(4765), 1, + STATE(5305), 1, + sym_requires_clause, + STATE(5457), 1, sym__function_declarator_seq, - STATE(4922), 1, + STATE(5958), 1, sym__abstract_declarator, - STATE(4764), 5, + STATE(6142), 1, + sym_abstract_function_declarator, + STATE(5452), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, - sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(5550), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [163067] = 6, + [195895] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(7019), 1, - anon_sym_SLASH, - ACTIONS(7015), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7017), 2, + ACTIONS(4572), 1, + anon_sym_LPAREN2, + ACTIONS(4574), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7103), 4, - anon_sym_PIPE, + ACTIONS(4576), 1, + anon_sym_AMP_AMP, + ACTIONS(4578), 1, anon_sym_AMP, - anon_sym_GT, + ACTIONS(6919), 1, + anon_sym_LBRACK, + ACTIONS(8218), 1, anon_sym_LT, - ACTIONS(7101), 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, - [163101] = 11, + ACTIONS(8242), 1, + anon_sym_LBRACE, + STATE(3900), 1, + sym_parameter_list, + STATE(5182), 1, + sym_template_parameter_list, + STATE(5457), 1, + sym__function_declarator_seq, + STATE(5516), 1, + sym_compound_statement, + STATE(5958), 1, + sym__abstract_declarator, + STATE(6002), 1, + sym_abstract_function_declarator, + STATE(5452), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [195944] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(4214), 1, + ACTIONS(4831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5663), 1, + ACTIONS(6532), 1, anon_sym_DASH_GT, - ACTIONS(5669), 1, + ACTIONS(6534), 1, anon_sym_requires, - ACTIONS(7095), 1, + ACTIONS(8033), 1, anon_sym_LBRACK, - STATE(4548), 1, - sym_trailing_return_type, - STATE(4674), 1, + STATE(5419), 1, sym_requires_clause, - ACTIONS(4135), 2, + STATE(5506), 1, + sym_trailing_return_type, + ACTIONS(4880), 2, anon_sym_final, anon_sym_override, - STATE(4085), 2, + STATE(5192), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(4545), 2, + STATE(5258), 2, sym_virtual_specifier, aux_sym__function_declarator_seq_repeat2, - ACTIONS(7093), 8, - anon_sym_COMMA, + ACTIONS(8031), 5, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, anon_sym_try, - [163145] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7107), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(7105), 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, - [163173] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7019), 1, - anon_sym_SLASH, - ACTIONS(7015), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7017), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7037), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7103), 4, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(7101), 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, - [163209] = 9, + [195985] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(7019), 1, - anon_sym_SLASH, - ACTIONS(7015), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7017), 2, + ACTIONS(49), 1, + anon_sym_LBRACE, + ACTIONS(4572), 1, + anon_sym_LPAREN2, + ACTIONS(4574), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7033), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(7035), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(7037), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7103), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(7101), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, + ACTIONS(4576), 1, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [163249] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4704), 5, - anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(4578), 1, anon_sym_AMP, - anon_sym_GT, + ACTIONS(6919), 1, + anon_sym_LBRACK, + ACTIONS(8218), 1, anon_sym_LT, - ACTIONS(4702), 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, - [163277] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(4214), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(4641), 1, - anon_sym_COLON_COLON, - ACTIONS(5445), 1, - anon_sym_LBRACE, - ACTIONS(5447), 1, - anon_sym_COLON, - ACTIONS(6857), 1, - sym_identifier, - STATE(3133), 1, - sym_template_type, - STATE(3267), 1, - sym_field_declaration_list, - STATE(5040), 1, - sym__scope_resolution, - STATE(5198), 1, - sym_virtual_specifier, - STATE(5820), 1, - sym_base_class_clause, - ACTIONS(5449), 2, - anon_sym_final, - anon_sym_override, - STATE(3431), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(4085), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6159), 2, - sym_decltype, - sym_dependent_type_identifier, - [163333] = 11, + STATE(2197), 1, + sym_compound_statement, + STATE(3900), 1, + sym_parameter_list, + STATE(5218), 1, + sym_template_parameter_list, + STATE(5457), 1, + sym__function_declarator_seq, + STATE(5958), 1, + sym__abstract_declarator, + STATE(6049), 1, + sym_abstract_function_declarator, + STATE(5452), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [196034] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(4214), 1, + ACTIONS(4831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5663), 1, + ACTIONS(6526), 1, anon_sym_DASH_GT, - ACTIONS(5669), 1, + ACTIONS(6530), 1, anon_sym_requires, - ACTIONS(6853), 1, + ACTIONS(8021), 1, anon_sym_LBRACK, - STATE(4529), 1, - sym_trailing_return_type, - STATE(4659), 1, + STATE(5420), 1, sym_requires_clause, - ACTIONS(4135), 2, + STATE(5474), 1, + sym_trailing_return_type, + ACTIONS(6528), 2, anon_sym_final, anon_sym_override, - STATE(4317), 2, + STATE(4720), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(4533), 2, + STATE(5261), 2, sym_virtual_specifier, aux_sym__function_declarator_seq_repeat2, - ACTIONS(6851), 8, + ACTIONS(8019), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - anon_sym_try, - [163377] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(4214), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(4359), 1, - anon_sym_LBRACE, - ACTIONS(5447), 1, - anon_sym_COLON, - ACTIONS(5502), 1, - anon_sym_COLON_COLON, - ACTIONS(6867), 1, - sym_identifier, - STATE(2255), 1, - sym_template_type, - STATE(2448), 1, - sym_field_declaration_list, - STATE(4997), 1, - sym__scope_resolution, - STATE(5173), 1, - sym_virtual_specifier, - STATE(5962), 1, - sym_base_class_clause, - ACTIONS(5449), 2, - anon_sym_final, - anon_sym_override, - STATE(2102), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(4085), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6159), 2, - sym_decltype, - sym_dependent_type_identifier, - [163433] = 11, + [196075] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(4214), 1, + ACTIONS(4831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5663), 1, + ACTIONS(6532), 1, anon_sym_DASH_GT, - ACTIONS(5669), 1, + ACTIONS(6534), 1, anon_sym_requires, - ACTIONS(6853), 1, + ACTIONS(8033), 1, anon_sym_LBRACK, - STATE(4529), 1, - sym_trailing_return_type, - STATE(4659), 1, + STATE(5419), 1, sym_requires_clause, - ACTIONS(4135), 2, + STATE(5506), 1, + sym_trailing_return_type, + ACTIONS(4880), 2, anon_sym_final, anon_sym_override, - STATE(4085), 2, + STATE(4720), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(4533), 2, + STATE(5258), 2, sym_virtual_specifier, aux_sym__function_declarator_seq_repeat2, - ACTIONS(6851), 8, - anon_sym_COMMA, + ACTIONS(8031), 5, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, anon_sym_try, - [163477] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(4162), 1, - anon_sym_LBRACE, - ACTIONS(4214), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5447), 1, - anon_sym_COLON, - ACTIONS(6626), 1, - anon_sym_COLON_COLON, - ACTIONS(6793), 1, - sym_identifier, - STATE(1979), 1, - sym_template_type, - STATE(2383), 1, - sym_field_declaration_list, - STATE(5001), 1, - sym__scope_resolution, - STATE(5165), 1, - sym_virtual_specifier, - STATE(5759), 1, - sym_base_class_clause, - ACTIONS(5449), 2, - anon_sym_final, - anon_sym_override, - STATE(1916), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(4328), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6159), 2, - sym_decltype, - sym_dependent_type_identifier, - [163533] = 17, + [196116] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(4162), 1, - anon_sym_LBRACE, - ACTIONS(4214), 1, + ACTIONS(4831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5447), 1, - anon_sym_COLON, - ACTIONS(6626), 1, - anon_sym_COLON_COLON, - ACTIONS(6793), 1, - sym_identifier, - STATE(1979), 1, - sym_template_type, - STATE(2383), 1, - sym_field_declaration_list, - STATE(5001), 1, - sym__scope_resolution, - STATE(5165), 1, - sym_virtual_specifier, - STATE(5759), 1, - sym_base_class_clause, - ACTIONS(5449), 2, + ACTIONS(6409), 1, + anon_sym_LBRACK, + ACTIONS(6526), 1, + anon_sym_DASH_GT, + ACTIONS(6530), 1, + anon_sym_requires, + STATE(5436), 1, + sym_requires_clause, + STATE(5484), 1, + sym_trailing_return_type, + ACTIONS(6528), 2, anon_sym_final, anon_sym_override, - STATE(1916), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(4085), 2, + STATE(5155), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6159), 2, - sym_decltype, - sym_dependent_type_identifier, - [163589] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(4162), 1, - anon_sym_LBRACE, - ACTIONS(4214), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5447), 1, - anon_sym_COLON, - ACTIONS(6626), 1, - anon_sym_COLON_COLON, - ACTIONS(6793), 1, - sym_identifier, - STATE(1979), 1, - sym_template_type, - STATE(2427), 1, - sym_field_declaration_list, - STATE(5001), 1, - sym__scope_resolution, - STATE(5328), 1, + STATE(5229), 2, sym_virtual_specifier, - STATE(5747), 1, - sym_base_class_clause, - ACTIONS(5449), 2, - anon_sym_final, - anon_sym_override, - STATE(1911), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(4085), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6159), 2, - sym_decltype, - sym_dependent_type_identifier, - [163645] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5709), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6873), 1, - anon_sym_COLON, - ACTIONS(7109), 1, + aux_sym__function_declarator_seq_repeat2, + ACTIONS(6407), 5, anon_sym_COMMA, - ACTIONS(7111), 1, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(7113), 1, anon_sym_SEMI, - ACTIONS(7115), 1, anon_sym_LBRACE, - ACTIONS(7117), 1, - anon_sym_LBRACK, - ACTIONS(7119), 1, - anon_sym_EQ, - ACTIONS(7121), 1, - anon_sym_try, - STATE(2095), 1, - sym_compound_statement, - STATE(2097), 1, - sym_default_method_clause, - STATE(2098), 1, - sym_delete_method_clause, - STATE(2104), 1, - sym_try_statement, - STATE(3362), 1, - sym_parameter_list, - STATE(4960), 1, - sym__function_declarator_seq, - STATE(5063), 1, - aux_sym_field_declaration_repeat1, - STATE(6532), 1, - sym_initializer_list, - STATE(6534), 1, - sym_bitfield_clause, - STATE(4894), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [163707] = 9, + [196157] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7051), 1, - sym_identifier, - ACTIONS(7053), 1, + ACTIONS(45), 1, + anon_sym___based, + ACTIONS(1931), 1, + anon_sym_operator, + ACTIONS(6644), 1, anon_sym_LPAREN2, - ACTIONS(7055), 1, - anon_sym_defined, - ACTIONS(7123), 1, - sym_number_literal, - ACTIONS(7057), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(7059), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7063), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(4424), 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, - [163747] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(4214), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(4830), 1, - anon_sym_LBRACE, - ACTIONS(5447), 1, - anon_sym_COLON, - ACTIONS(5570), 1, - anon_sym_COLON_COLON, - ACTIONS(6859), 1, + ACTIONS(6652), 1, sym_identifier, - STATE(2795), 1, - sym_template_type, - STATE(2881), 1, - sym_field_declaration_list, - STATE(4989), 1, - sym__scope_resolution, - STATE(5299), 1, - sym_virtual_specifier, - STATE(5779), 1, - sym_base_class_clause, - ACTIONS(5449), 2, - anon_sym_final, - anon_sym_override, - STATE(2456), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(4085), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6159), 2, - sym_decltype, - sym_dependent_type_identifier, - [163803] = 20, + ACTIONS(6654), 1, + anon_sym_STAR, + ACTIONS(6656), 1, + anon_sym_AMP_AMP, + ACTIONS(6658), 1, + anon_sym_AMP, + STATE(5814), 1, + sym__field_declarator, + STATE(7524), 1, + sym_ms_based_modifier, + STATE(5685), 8, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + sym_reference_field_declarator, + sym_template_method, + sym_operator_name, + [196198] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(5709), 1, + ACTIONS(41), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6873), 1, - anon_sym_COLON, - ACTIONS(7109), 1, + ACTIONS(8204), 1, anon_sym_COMMA, - ACTIONS(7111), 1, + ACTIONS(8206), 1, anon_sym_LPAREN2, - ACTIONS(7117), 1, + ACTIONS(8212), 1, anon_sym_LBRACK, - ACTIONS(7125), 1, + ACTIONS(8214), 1, + anon_sym_EQ, + ACTIONS(8254), 1, anon_sym_SEMI, - ACTIONS(7127), 1, + ACTIONS(8256), 1, anon_sym_LBRACE, - ACTIONS(7129), 1, - anon_sym_EQ, - ACTIONS(7131), 1, + ACTIONS(8258), 1, anon_sym_try, - STATE(2349), 1, - sym_compound_statement, - STATE(2350), 1, - sym_default_method_clause, - STATE(2351), 1, - sym_delete_method_clause, - STATE(2352), 1, + STATE(1194), 1, sym_try_statement, - STATE(3362), 1, + STATE(1196), 1, + sym_compound_statement, + STATE(3793), 1, sym_parameter_list, - STATE(4960), 1, + STATE(5647), 1, sym__function_declarator_seq, - STATE(5079), 1, - aux_sym_field_declaration_repeat1, - STATE(6403), 1, - sym_initializer_list, - STATE(6404), 1, - sym_bitfield_clause, - STATE(4894), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [163865] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6987), 1, - sym_identifier, - ACTIONS(6991), 1, - anon_sym_LPAREN2, - ACTIONS(6993), 1, - anon_sym_defined, - ACTIONS(7133), 1, - sym_number_literal, - ACTIONS(6995), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(6997), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7001), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(4311), 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, - [163905] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(4214), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(4830), 1, - anon_sym_LBRACE, - ACTIONS(5447), 1, - anon_sym_COLON, - ACTIONS(5570), 1, - anon_sym_COLON_COLON, - ACTIONS(6859), 1, - sym_identifier, - STATE(2795), 1, - sym_template_type, - STATE(2914), 1, - sym_field_declaration_list, - STATE(4989), 1, - sym__scope_resolution, - STATE(5256), 1, - sym_virtual_specifier, - STATE(5787), 1, - sym_base_class_clause, - ACTIONS(5449), 2, - anon_sym_final, - anon_sym_override, - STATE(2496), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(4085), 2, + STATE(6273), 1, + aux_sym_declaration_repeat1, + STATE(5560), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6159), 2, - sym_decltype, - sym_dependent_type_identifier, - [163961] = 11, + STATE(6802), 2, + sym_argument_list, + sym_initializer_list, + [196249] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(4214), 1, + ACTIONS(4831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5663), 1, + ACTIONS(6532), 1, anon_sym_DASH_GT, - ACTIONS(5669), 1, + ACTIONS(6534), 1, anon_sym_requires, - ACTIONS(5952), 1, + ACTIONS(7726), 1, anon_sym_LBRACK, - STATE(4571), 1, - sym_trailing_return_type, - STATE(4723), 1, + STATE(5358), 1, sym_requires_clause, - ACTIONS(4135), 2, + STATE(5505), 1, + sym_trailing_return_type, + ACTIONS(4880), 2, anon_sym_final, anon_sym_override, - STATE(4085), 2, + STATE(5198), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(4538), 2, + STATE(5288), 2, sym_virtual_specifier, aux_sym__function_declarator_seq_repeat2, - ACTIONS(5950), 8, - anon_sym_COMMA, + ACTIONS(7724), 5, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, anon_sym_try, - [164005] = 17, + [196290] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(4214), 1, + ACTIONS(5299), 1, + anon_sym_LBRACK, + ACTIONS(8260), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8262), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5301), 12, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(4830), 1, anon_sym_LBRACE, - ACTIONS(5447), 1, - anon_sym_COLON, - ACTIONS(5570), 1, - anon_sym_COLON_COLON, - ACTIONS(6859), 1, - sym_identifier, - STATE(2795), 1, - sym_template_type, - STATE(2914), 1, - sym_field_declaration_list, - STATE(4989), 1, - sym__scope_resolution, - STATE(5256), 1, - sym_virtual_specifier, - STATE(5787), 1, - sym_base_class_clause, - ACTIONS(5449), 2, + anon_sym_EQ, anon_sym_final, anon_sym_override, - STATE(2496), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(4331), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6159), 2, - sym_decltype, - sym_dependent_type_identifier, - [164061] = 10, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [196319] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(7019), 1, - anon_sym_SLASH, - ACTIONS(7015), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7017), 2, + ACTIONS(4572), 1, + anon_sym_LPAREN2, + ACTIONS(4574), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7031), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7033), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(7035), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(7037), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7103), 2, - anon_sym_PIPE, + ACTIONS(4576), 1, + anon_sym_AMP_AMP, + ACTIONS(4578), 1, anon_sym_AMP, - ACTIONS(7101), 5, + ACTIONS(6919), 1, + anon_sym_LBRACK, + ACTIONS(8218), 1, + anon_sym_LT, + ACTIONS(8250), 1, + anon_sym_LBRACE, + STATE(3600), 1, + sym_compound_statement, + STATE(3900), 1, + sym_parameter_list, + STATE(5189), 1, + sym_template_parameter_list, + STATE(5457), 1, + sym__function_declarator_seq, + STATE(5958), 1, + sym__abstract_declarator, + STATE(6180), 1, + sym_abstract_function_declarator, + STATE(5452), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [196368] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4476), 1, + anon_sym_COLON_COLON, + ACTIONS(4498), 1, + anon_sym_COLON, + ACTIONS(7530), 1, + anon_sym_LT, + STATE(2704), 1, + sym_template_argument_list, + ACTIONS(4503), 13, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - [164103] = 9, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_or, + anon_sym_and, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [196399] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7051), 1, + ACTIONS(45), 1, + anon_sym___based, + ACTIONS(1931), 1, + anon_sym_operator, + ACTIONS(6642), 1, sym_identifier, - ACTIONS(7053), 1, + ACTIONS(6644), 1, anon_sym_LPAREN2, - ACTIONS(7055), 1, - anon_sym_defined, - ACTIONS(7135), 1, - sym_number_literal, - ACTIONS(7057), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(7059), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7063), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(4447), 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, - [164143] = 17, + ACTIONS(6646), 1, + anon_sym_STAR, + ACTIONS(6648), 1, + anon_sym_AMP_AMP, + ACTIONS(6650), 1, + anon_sym_AMP, + STATE(5467), 1, + sym__field_declarator, + STATE(7022), 1, + sym_ms_based_modifier, + STATE(5685), 8, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + sym_reference_field_declarator, + sym_template_method, + sym_operator_name, + [196440] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1555), 1, + ACTIONS(125), 1, + anon_sym_operator, + ACTIONS(1973), 1, anon_sym_decltype, - ACTIONS(3916), 1, + ACTIONS(2562), 1, + anon_sym_TILDE, + ACTIONS(4829), 1, anon_sym_COLON_COLON, - ACTIONS(4214), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5445), 1, - anon_sym_LBRACE, - ACTIONS(5447), 1, - anon_sym_COLON, - ACTIONS(6857), 1, + ACTIONS(8264), 1, sym_identifier, - STATE(3133), 1, - sym_template_type, - STATE(3267), 1, - sym_field_declaration_list, - STATE(5034), 1, + ACTIONS(8266), 1, + anon_sym_template, + STATE(2850), 1, + sym_template_function, + STATE(2851), 1, + sym_destructor_name, + STATE(2852), 1, + sym_dependent_identifier, + STATE(2854), 1, + sym_qualified_identifier, + STATE(2859), 1, + sym_operator_name, + STATE(5207), 1, sym__scope_resolution, - STATE(5198), 1, - sym_virtual_specifier, - STATE(5820), 1, - sym_base_class_clause, - ACTIONS(5449), 2, - anon_sym_final, - anon_sym_override, - STATE(3166), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(4085), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6159), 2, + STATE(6042), 1, + sym_operator_cast, + STATE(6044), 1, + sym_qualified_operator_cast_identifier, + STATE(7638), 3, sym_decltype, + sym_template_type, sym_dependent_type_identifier, - [164199] = 20, + [196491] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4572), 1, + anon_sym_LPAREN2, + ACTIONS(4574), 1, + anon_sym_STAR, + ACTIONS(4576), 1, + anon_sym_AMP_AMP, + ACTIONS(4578), 1, + anon_sym_AMP, + ACTIONS(6919), 1, + anon_sym_LBRACK, + ACTIONS(8200), 1, + anon_sym_LBRACE, + ACTIONS(8218), 1, + anon_sym_LT, + STATE(3900), 1, + sym_parameter_list, + STATE(4037), 1, + sym_compound_statement, + STATE(5154), 1, + sym_template_parameter_list, + STATE(5457), 1, + sym__function_declarator_seq, + STATE(5958), 1, + sym__abstract_declarator, + STATE(5965), 1, + sym_abstract_function_declarator, + STATE(5452), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [196540] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(5709), 1, + ACTIONS(41), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6873), 1, - anon_sym_COLON, - ACTIONS(7109), 1, + ACTIONS(8204), 1, anon_sym_COMMA, - ACTIONS(7111), 1, + ACTIONS(8206), 1, anon_sym_LPAREN2, - ACTIONS(7117), 1, + ACTIONS(8212), 1, anon_sym_LBRACK, - ACTIONS(7137), 1, + ACTIONS(8214), 1, + anon_sym_EQ, + ACTIONS(8268), 1, anon_sym_SEMI, - ACTIONS(7139), 1, + ACTIONS(8270), 1, anon_sym_LBRACE, - ACTIONS(7141), 1, - anon_sym_EQ, - ACTIONS(7143), 1, + ACTIONS(8272), 1, anon_sym_try, - STATE(2233), 1, + STATE(781), 1, sym_try_statement, - STATE(2236), 1, - sym_delete_method_clause, - STATE(2237), 1, - sym_default_method_clause, - STATE(2239), 1, + STATE(782), 1, sym_compound_statement, - STATE(3362), 1, + STATE(3793), 1, sym_parameter_list, - STATE(4960), 1, + STATE(5647), 1, sym__function_declarator_seq, - STATE(5095), 1, - aux_sym_field_declaration_repeat1, - STATE(6274), 1, - sym_initializer_list, - STATE(6333), 1, - sym_bitfield_clause, - STATE(4894), 2, + STATE(6518), 1, + aux_sym_declaration_repeat1, + STATE(5560), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [164261] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7019), 1, - anon_sym_SLASH, - ACTIONS(7029), 1, - anon_sym_AMP, - ACTIONS(7103), 1, - anon_sym_PIPE, - ACTIONS(7015), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7017), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7031), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7033), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(7035), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(7037), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7101), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - [164305] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7051), 1, - sym_identifier, - ACTIONS(7053), 1, - anon_sym_LPAREN2, - ACTIONS(7055), 1, - anon_sym_defined, - ACTIONS(7145), 1, - sym_number_literal, - ACTIONS(7057), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(7059), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7063), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(4423), 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, - [164345] = 17, + STATE(6802), 2, + sym_argument_list, + sym_initializer_list, + [196591] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(4214), 1, + ACTIONS(4831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4359), 1, - anon_sym_LBRACE, - ACTIONS(5447), 1, - anon_sym_COLON, - ACTIONS(5502), 1, - anon_sym_COLON_COLON, - ACTIONS(6867), 1, - sym_identifier, - STATE(2255), 1, - sym_template_type, - STATE(2527), 1, - sym_field_declaration_list, - STATE(4997), 1, - sym__scope_resolution, - STATE(5335), 1, - sym_virtual_specifier, - STATE(5971), 1, - sym_base_class_clause, - ACTIONS(5449), 2, + ACTIONS(6532), 1, + anon_sym_DASH_GT, + ACTIONS(6534), 1, + anon_sym_requires, + ACTIONS(7726), 1, + anon_sym_LBRACK, + STATE(5358), 1, + sym_requires_clause, + STATE(5505), 1, + sym_trailing_return_type, + ACTIONS(4880), 2, anon_sym_final, anon_sym_override, - STATE(2014), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(4085), 2, + STATE(4720), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6159), 2, - sym_decltype, - sym_dependent_type_identifier, - [164401] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7051), 1, - sym_identifier, - ACTIONS(7053), 1, + STATE(5288), 2, + sym_virtual_specifier, + aux_sym__function_declarator_seq_repeat2, + ACTIONS(7724), 5, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(7055), 1, - anon_sym_defined, - ACTIONS(7147), 1, - sym_number_literal, - ACTIONS(7057), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(7059), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7063), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(4414), 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, - [164441] = 17, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_try, + [196632] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(4214), 1, + ACTIONS(4831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4359), 1, - anon_sym_LBRACE, - ACTIONS(5447), 1, - anon_sym_COLON, - ACTIONS(5502), 1, - anon_sym_COLON_COLON, - ACTIONS(6867), 1, - sym_identifier, - STATE(2255), 1, - sym_template_type, - STATE(2527), 1, - sym_field_declaration_list, - STATE(4997), 1, - sym__scope_resolution, - STATE(5335), 1, - sym_virtual_specifier, - STATE(5971), 1, - sym_base_class_clause, - ACTIONS(5449), 2, + ACTIONS(6526), 1, + anon_sym_DASH_GT, + ACTIONS(6530), 1, + anon_sym_requires, + ACTIONS(8033), 1, + anon_sym_LBRACK, + STATE(5430), 1, + sym_requires_clause, + STATE(5472), 1, + sym_trailing_return_type, + ACTIONS(6528), 2, anon_sym_final, anon_sym_override, - STATE(2014), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(4324), 2, + STATE(5197), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6159), 2, - sym_decltype, - sym_dependent_type_identifier, - [164497] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6987), 1, - sym_identifier, - ACTIONS(6991), 1, + STATE(5257), 2, + sym_virtual_specifier, + aux_sym__function_declarator_seq_repeat2, + ACTIONS(8031), 5, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(6993), 1, - anon_sym_defined, - ACTIONS(7149), 1, - sym_number_literal, - ACTIONS(6995), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(6997), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7001), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(4439), 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, - [164537] = 11, + anon_sym_SEMI, + anon_sym_LBRACE, + [196673] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(4214), 1, + ACTIONS(4831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5663), 1, + ACTIONS(6526), 1, anon_sym_DASH_GT, - ACTIONS(5669), 1, + ACTIONS(6530), 1, anon_sym_requires, - ACTIONS(5952), 1, + ACTIONS(8033), 1, anon_sym_LBRACK, - STATE(4571), 1, - sym_trailing_return_type, - STATE(4723), 1, + STATE(5430), 1, sym_requires_clause, - ACTIONS(4135), 2, + STATE(5472), 1, + sym_trailing_return_type, + ACTIONS(6528), 2, anon_sym_final, anon_sym_override, - STATE(4325), 2, + STATE(4720), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(4538), 2, + STATE(5257), 2, sym_virtual_specifier, aux_sym__function_declarator_seq_repeat2, - ACTIONS(5950), 8, + ACTIONS(8031), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + [196714] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4476), 1, + anon_sym_COLON_COLON, + ACTIONS(5026), 1, + anon_sym_COLON, + ACTIONS(7530), 1, + anon_sym_LT, + STATE(2704), 1, + sym_template_argument_list, + ACTIONS(4481), 13, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_or, + anon_sym_and, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [196745] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4572), 1, + anon_sym_LPAREN2, + ACTIONS(4574), 1, + anon_sym_STAR, + ACTIONS(4576), 1, + anon_sym_AMP_AMP, + ACTIONS(4578), 1, + anon_sym_AMP, + ACTIONS(6919), 1, + anon_sym_LBRACK, + ACTIONS(8202), 1, + anon_sym_requires, + ACTIONS(8244), 1, + anon_sym_LBRACE, + STATE(3797), 1, + sym_compound_statement, + STATE(3900), 1, + sym_parameter_list, + STATE(5332), 1, + sym_requires_clause, + STATE(5457), 1, + sym__function_declarator_seq, + STATE(5958), 1, + sym__abstract_declarator, + STATE(6028), 1, + sym_abstract_function_declarator, + STATE(5452), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [196794] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4572), 1, + anon_sym_LPAREN2, + ACTIONS(4574), 1, + anon_sym_STAR, + ACTIONS(4576), 1, + anon_sym_AMP_AMP, + ACTIONS(4578), 1, + anon_sym_AMP, + ACTIONS(6919), 1, + anon_sym_LBRACK, + ACTIONS(8202), 1, + anon_sym_requires, + ACTIONS(8246), 1, + anon_sym_LBRACE, + STATE(3271), 1, + sym_compound_statement, + STATE(3900), 1, + sym_parameter_list, + STATE(5337), 1, + sym_requires_clause, + STATE(5457), 1, + sym__function_declarator_seq, + STATE(5958), 1, + sym__abstract_declarator, + STATE(6096), 1, + sym_abstract_function_declarator, + STATE(5452), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [196843] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5204), 1, + anon_sym_LBRACK, + ACTIONS(8262), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5206), 14, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, + anon_sym_or, + anon_sym_final, + anon_sym_override, anon_sym_GT2, anon_sym_try, - [164581] = 9, + anon_sym_requires, + [196870] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(7051), 1, - sym_identifier, - ACTIONS(7053), 1, + ACTIONS(4572), 1, anon_sym_LPAREN2, - ACTIONS(7055), 1, - anon_sym_defined, - ACTIONS(7151), 1, - sym_number_literal, - ACTIONS(7057), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(7059), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7063), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(4428), 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, - [164621] = 9, + ACTIONS(4574), 1, + anon_sym_STAR, + ACTIONS(4576), 1, + anon_sym_AMP_AMP, + ACTIONS(4578), 1, + anon_sym_AMP, + ACTIONS(6919), 1, + anon_sym_LBRACK, + ACTIONS(8202), 1, + anon_sym_requires, + ACTIONS(8248), 1, + anon_sym_LBRACE, + STATE(2981), 1, + sym_compound_statement, + STATE(3900), 1, + sym_parameter_list, + STATE(5347), 1, + sym_requires_clause, + STATE(5457), 1, + sym__function_declarator_seq, + STATE(5958), 1, + sym__abstract_declarator, + STATE(6001), 1, + sym_abstract_function_declarator, + STATE(5452), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [196919] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(6987), 1, - sym_identifier, - ACTIONS(6991), 1, + ACTIONS(49), 1, + anon_sym_LBRACE, + ACTIONS(4572), 1, anon_sym_LPAREN2, - ACTIONS(6993), 1, - anon_sym_defined, - ACTIONS(7153), 1, - sym_number_literal, - ACTIONS(6995), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(6997), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7001), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(4434), 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, - [164661] = 17, + ACTIONS(4574), 1, + anon_sym_STAR, + ACTIONS(4576), 1, + anon_sym_AMP_AMP, + ACTIONS(4578), 1, + anon_sym_AMP, + ACTIONS(6919), 1, + anon_sym_LBRACK, + ACTIONS(8202), 1, + anon_sym_requires, + STATE(2195), 1, + sym_compound_statement, + STATE(3900), 1, + sym_parameter_list, + STATE(5309), 1, + sym_requires_clause, + STATE(5457), 1, + sym__function_declarator_seq, + STATE(5958), 1, + sym__abstract_declarator, + STATE(6026), 1, + sym_abstract_function_declarator, + STATE(5452), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [196968] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(2928), 1, - anon_sym_COLON_COLON, - ACTIONS(4214), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5445), 1, - anon_sym_LBRACE, - ACTIONS(5447), 1, + ACTIONS(4572), 1, + anon_sym_LPAREN2, + ACTIONS(6919), 1, + anon_sym_LBRACK, + ACTIONS(7434), 1, + anon_sym_STAR, + ACTIONS(7436), 1, + anon_sym_AMP_AMP, + ACTIONS(7438), 1, + anon_sym_AMP, + STATE(4108), 1, + sym_parameter_list, + STATE(5457), 1, + sym__function_declarator_seq, + STATE(5852), 1, + sym__abstract_declarator, + ACTIONS(6502), 4, anon_sym_COLON, - ACTIONS(6855), 1, - sym_identifier, - STATE(3133), 1, - sym_template_type, - STATE(3264), 1, - sym_field_declaration_list, - STATE(5006), 1, - sym__scope_resolution, - STATE(5334), 1, - sym_virtual_specifier, - STATE(5860), 1, - sym_base_class_clause, - ACTIONS(5449), 2, anon_sym_final, anon_sym_override, - STATE(3168), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(4085), 2, + anon_sym_requires, + STATE(5452), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [197009] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6409), 1, + anon_sym_LBRACK, + ACTIONS(6526), 1, + anon_sym_DASH_GT, + ACTIONS(6530), 1, + anon_sym_requires, + STATE(5436), 1, + sym_requires_clause, + STATE(5484), 1, + sym_trailing_return_type, + ACTIONS(6528), 2, + anon_sym_final, + anon_sym_override, + STATE(4720), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6159), 2, - sym_decltype, - sym_dependent_type_identifier, - [164717] = 11, + STATE(5229), 2, + sym_virtual_specifier, + aux_sym__function_declarator_seq_repeat2, + ACTIONS(6407), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + [197050] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(4214), 1, + ACTIONS(41), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5663), 1, - anon_sym_DASH_GT, - ACTIONS(5669), 1, - anon_sym_requires, - ACTIONS(5675), 1, + ACTIONS(8041), 1, + anon_sym_LBRACE, + ACTIONS(8045), 1, + anon_sym_try, + ACTIONS(8204), 1, + anon_sym_COMMA, + ACTIONS(8206), 1, + anon_sym_LPAREN2, + ACTIONS(8212), 1, anon_sym_LBRACK, - STATE(4550), 1, - sym_trailing_return_type, - STATE(4716), 1, - sym_requires_clause, - ACTIONS(4135), 2, - anon_sym_final, - anon_sym_override, - STATE(4335), 2, + ACTIONS(8214), 1, + anon_sym_EQ, + ACTIONS(8274), 1, + anon_sym_SEMI, + STATE(2675), 1, + sym_try_statement, + STATE(2692), 1, + sym_compound_statement, + STATE(3793), 1, + sym_parameter_list, + STATE(5647), 1, + sym__function_declarator_seq, + STATE(6433), 1, + aux_sym_declaration_repeat1, + STATE(5560), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(4578), 2, + STATE(6802), 2, + sym_argument_list, + sym_initializer_list, + [197101] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6528), 2, + anon_sym_final, + anon_sym_override, + STATE(5290), 2, sym_virtual_specifier, aux_sym__function_declarator_seq_repeat2, - ACTIONS(5673), 8, + ACTIONS(6407), 12, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, + anon_sym_COLON, anon_sym_GT2, anon_sym_try, - [164761] = 9, + anon_sym_requires, + [197127] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7051), 1, - sym_identifier, - ACTIONS(7053), 1, + ACTIONS(8278), 1, + anon_sym_LBRACK, + ACTIONS(4880), 2, + anon_sym_final, + anon_sym_override, + STATE(5300), 2, + sym_virtual_specifier, + aux_sym__function_declarator_seq_repeat2, + ACTIONS(8276), 11, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(7055), 1, - anon_sym_defined, - ACTIONS(7155), 1, - sym_number_literal, - ACTIONS(7057), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(7059), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7063), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(4410), 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, - [164801] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(4214), 1, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(5447), 1, - anon_sym_COLON, - ACTIONS(5576), 1, - anon_sym_COLON_COLON, - ACTIONS(6757), 1, anon_sym_LBRACE, - ACTIONS(6865), 1, - sym_identifier, - STATE(4063), 1, - sym_template_type, - STATE(4241), 1, - sym_field_declaration_list, - STATE(5024), 1, - sym__scope_resolution, - STATE(5227), 1, - sym_virtual_specifier, - STATE(5694), 1, - sym_base_class_clause, - ACTIONS(5449), 2, - anon_sym_final, - anon_sym_override, - STATE(4082), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(4085), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6159), 2, - sym_decltype, - sym_dependent_type_identifier, - [164857] = 17, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [197155] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(4214), 1, + ACTIONS(4831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5447), 1, - anon_sym_COLON, - ACTIONS(5598), 1, - anon_sym_COLON_COLON, - ACTIONS(5721), 1, - anon_sym_LBRACE, - ACTIONS(6855), 1, - sym_identifier, - STATE(3133), 1, - sym_template_type, - STATE(3629), 1, - sym_field_declaration_list, - STATE(5035), 1, - sym__scope_resolution, - STATE(5232), 1, - sym_virtual_specifier, - STATE(5833), 1, - sym_base_class_clause, - ACTIONS(5449), 2, + ACTIONS(6409), 1, + anon_sym_LBRACK, + ACTIONS(6589), 1, + anon_sym_DASH_GT, + ACTIONS(6591), 1, + anon_sym_requires, + STATE(5436), 1, + sym_requires_clause, + STATE(5618), 1, + sym_trailing_return_type, + ACTIONS(6528), 2, anon_sym_final, anon_sym_override, - STATE(3357), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(4395), 2, + STATE(5229), 2, + sym_virtual_specifier, + aux_sym__function_declarator_seq_repeat2, + STATE(5236), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6159), 2, - sym_decltype, - sym_dependent_type_identifier, - [164913] = 17, + ACTIONS(6407), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_GT2, + [197195] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(2928), 1, - anon_sym_COLON_COLON, - ACTIONS(4214), 1, + ACTIONS(4831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5445), 1, - anon_sym_LBRACE, - ACTIONS(5447), 1, - anon_sym_COLON, - ACTIONS(6855), 1, - sym_identifier, - STATE(3133), 1, - sym_template_type, - STATE(3267), 1, - sym_field_declaration_list, - STATE(5006), 1, - sym__scope_resolution, - STATE(5198), 1, - sym_virtual_specifier, - STATE(5820), 1, - sym_base_class_clause, - ACTIONS(5449), 2, + ACTIONS(6409), 1, + anon_sym_LBRACK, + ACTIONS(6589), 1, + anon_sym_DASH_GT, + ACTIONS(6591), 1, + anon_sym_requires, + STATE(5436), 1, + sym_requires_clause, + STATE(5618), 1, + sym_trailing_return_type, + ACTIONS(6528), 2, anon_sym_final, anon_sym_override, - STATE(3166), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(4085), 2, + STATE(4720), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6159), 2, - sym_decltype, - sym_dependent_type_identifier, - [164969] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4225), 1, - anon_sym_LBRACE, - ACTIONS(4324), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(4322), 17, + STATE(5229), 2, + sym_virtual_specifier, + aux_sym__function_declarator_seq_repeat2, + ACTIONS(6407), 4, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, anon_sym_GT2, - [164999] = 3, + [197235] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7159), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(7157), 15, + ACTIONS(4714), 1, + anon_sym_LBRACK, + ACTIONS(4716), 15, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_PERCENT, + anon_sym_LPAREN2, anon_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, - [165027] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(4214), 1, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(5447), 1, - anon_sym_COLON, - ACTIONS(5576), 1, - anon_sym_COLON_COLON, - ACTIONS(6757), 1, anon_sym_LBRACE, - ACTIONS(6865), 1, - sym_identifier, - STATE(4063), 1, - sym_template_type, - STATE(4202), 1, - sym_field_declaration_list, - STATE(5024), 1, - sym__scope_resolution, - STATE(5245), 1, - sym_virtual_specifier, - STATE(5700), 1, - sym_base_class_clause, - ACTIONS(5449), 2, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, anon_sym_final, anon_sym_override, - STATE(4085), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(4086), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6159), 2, - sym_decltype, - sym_dependent_type_identifier, - [165083] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7051), 1, - sym_identifier, - ACTIONS(7053), 1, - anon_sym_LPAREN2, - ACTIONS(7055), 1, - anon_sym_defined, - ACTIONS(7161), 1, - sym_number_literal, - ACTIONS(7057), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(7059), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7063), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(4444), 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, - [165123] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7051), 1, - sym_identifier, - ACTIONS(7053), 1, - anon_sym_LPAREN2, - ACTIONS(7055), 1, - anon_sym_defined, - ACTIONS(7163), 1, - sym_number_literal, - ACTIONS(7057), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(7059), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7063), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(4453), 7, - sym__preproc_expression, - sym_preproc_parenthesized_expression, - sym_preproc_defined, - sym_preproc_unary_expression, - sym_preproc_call_expression, - sym_preproc_binary_expression, - sym_char_literal, - [165163] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7051), 1, - sym_identifier, - ACTIONS(7053), 1, - anon_sym_LPAREN2, - ACTIONS(7055), 1, - anon_sym_defined, - ACTIONS(7165), 1, - sym_number_literal, - ACTIONS(7057), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(7059), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7063), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(4445), 7, - sym__preproc_expression, - sym_preproc_parenthesized_expression, - sym_preproc_defined, - sym_preproc_unary_expression, - sym_preproc_call_expression, - sym_preproc_binary_expression, - sym_char_literal, - [165203] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7051), 1, - sym_identifier, - ACTIONS(7053), 1, - anon_sym_LPAREN2, - ACTIONS(7055), 1, - anon_sym_defined, - ACTIONS(7167), 1, - sym_number_literal, - ACTIONS(7057), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(7059), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7063), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(4429), 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, - [165243] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7051), 1, - sym_identifier, - ACTIONS(7053), 1, - anon_sym_LPAREN2, - ACTIONS(7055), 1, - anon_sym_defined, - ACTIONS(7169), 1, - sym_number_literal, - ACTIONS(7057), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(7059), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7063), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(4437), 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, - [165283] = 9, + anon_sym_try, + anon_sym_requires, + [197259] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7051), 1, - sym_identifier, - ACTIONS(7053), 1, + ACTIONS(4686), 1, + anon_sym_LBRACK, + ACTIONS(4688), 15, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(7055), 1, - anon_sym_defined, - ACTIONS(7171), 1, - sym_number_literal, - ACTIONS(7057), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(7059), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7063), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(4431), 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, - [165323] = 9, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [197283] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7051), 1, - sym_identifier, - ACTIONS(7053), 1, - anon_sym_LPAREN2, - ACTIONS(7055), 1, - anon_sym_defined, - ACTIONS(7173), 1, - sym_number_literal, - ACTIONS(7057), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(7059), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7063), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(4451), 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, - [165363] = 9, + ACTIONS(8280), 1, + anon_sym_RPAREN, + ACTIONS(8282), 1, + anon_sym_COLON, + STATE(6533), 1, + sym_gnu_asm_output_operand_list, + STATE(2961), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(107), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(145), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [197315] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7051), 1, - sym_identifier, - ACTIONS(7053), 1, + ACTIONS(6528), 2, + anon_sym_final, + anon_sym_override, + STATE(5290), 2, + sym_virtual_specifier, + aux_sym__function_declarator_seq_repeat2, + ACTIONS(6542), 12, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(7055), 1, - anon_sym_defined, - ACTIONS(7175), 1, - sym_number_literal, - ACTIONS(7057), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(7059), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7063), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(4452), 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, - [165403] = 9, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [197341] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7051), 1, - sym_identifier, - ACTIONS(7053), 1, + ACTIONS(4690), 1, + anon_sym_LBRACK, + ACTIONS(4692), 15, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(7055), 1, - anon_sym_defined, - ACTIONS(7177), 1, - sym_number_literal, - ACTIONS(7057), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(7059), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7063), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(4450), 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, - [165443] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(4214), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(5447), 1, - anon_sym_COLON, - ACTIONS(5598), 1, - anon_sym_COLON_COLON, - ACTIONS(5721), 1, anon_sym_LBRACE, - ACTIONS(6855), 1, - sym_identifier, - STATE(3133), 1, - sym_template_type, - STATE(3629), 1, - sym_field_declaration_list, - STATE(5035), 1, - sym__scope_resolution, - STATE(5232), 1, - sym_virtual_specifier, - STATE(5833), 1, - sym_base_class_clause, - ACTIONS(5449), 2, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, anon_sym_final, anon_sym_override, - STATE(3357), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(4085), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6159), 2, - sym_decltype, - sym_dependent_type_identifier, - [165499] = 9, + anon_sym_try, + anon_sym_requires, + [197365] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7051), 1, - sym_identifier, - ACTIONS(7053), 1, + ACTIONS(4726), 1, + anon_sym_LBRACK, + ACTIONS(4728), 15, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(7055), 1, - anon_sym_defined, - ACTIONS(7179), 1, - sym_number_literal, - ACTIONS(7057), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(7059), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7063), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(4448), 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, - [165539] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(2928), 1, - anon_sym_COLON_COLON, - ACTIONS(4214), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(5445), 1, anon_sym_LBRACE, - ACTIONS(5447), 1, + anon_sym_EQ, anon_sym_COLON, - ACTIONS(6855), 1, - sym_identifier, - STATE(3133), 1, - sym_template_type, - STATE(3264), 1, - sym_field_declaration_list, - STATE(5006), 1, - sym__scope_resolution, - STATE(5334), 1, - sym_virtual_specifier, - STATE(5860), 1, - sym_base_class_clause, - ACTIONS(5449), 2, + anon_sym_or, + anon_sym_and, anon_sym_final, anon_sym_override, - STATE(3168), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(4355), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6159), 2, - sym_decltype, - sym_dependent_type_identifier, - [165595] = 9, + anon_sym_try, + anon_sym_requires, + [197389] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(7051), 1, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(8284), 1, sym_identifier, - ACTIONS(7053), 1, - anon_sym_LPAREN2, - ACTIONS(7055), 1, - anon_sym_defined, - ACTIONS(7181), 1, - sym_number_literal, - ACTIONS(7057), 2, - anon_sym_BANG, + ACTIONS(8286), 1, anon_sym_TILDE, - ACTIONS(7059), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7063), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(4446), 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, - [165635] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(4214), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5447), 1, - anon_sym_COLON, - ACTIONS(5576), 1, + ACTIONS(8288), 1, anon_sym_COLON_COLON, - ACTIONS(6757), 1, - anon_sym_LBRACE, - ACTIONS(6865), 1, - sym_identifier, - STATE(4063), 1, + ACTIONS(8290), 1, + anon_sym_template, + ACTIONS(8292), 1, + anon_sym_operator, + STATE(3204), 1, + sym_destructor_name, + STATE(3205), 1, + sym_dependent_identifier, + STATE(3209), 1, + sym_qualified_identifier, + STATE(3211), 1, + sym_operator_name, + STATE(3217), 1, + sym_template_function, + STATE(3595), 1, sym_template_type, - STATE(4202), 1, - sym_field_declaration_list, - STATE(5024), 1, + STATE(3601), 1, + sym_dependent_type_identifier, + STATE(3602), 1, + sym_qualified_type_identifier, + STATE(5232), 1, sym__scope_resolution, - STATE(5245), 1, - sym_virtual_specifier, - STATE(5700), 1, - sym_base_class_clause, - ACTIONS(5449), 2, + STATE(7638), 1, + sym_decltype, + [197441] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6544), 1, + anon_sym_LBRACK, + ACTIONS(6589), 1, + anon_sym_DASH_GT, + ACTIONS(6591), 1, + anon_sym_requires, + STATE(5365), 1, + sym_requires_clause, + STATE(5619), 1, + sym_trailing_return_type, + ACTIONS(6528), 2, anon_sym_final, anon_sym_override, - STATE(4086), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(4353), 2, + STATE(5238), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6159), 2, - sym_decltype, - sym_dependent_type_identifier, - [165691] = 12, + STATE(5277), 2, + sym_virtual_specifier, + aux_sym__function_declarator_seq_repeat2, + ACTIONS(6542), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_GT2, + [197481] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7019), 1, - anon_sym_SLASH, - ACTIONS(7027), 1, - anon_sym_CARET, - ACTIONS(7029), 1, - anon_sym_AMP, - ACTIONS(7103), 1, - anon_sym_PIPE, - ACTIONS(7015), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7017), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7031), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7033), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(7035), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(7037), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7101), 4, + ACTIONS(4694), 1, + anon_sym_LBRACK, + ACTIONS(4696), 15, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - [165737] = 9, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [197505] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7051), 1, - sym_identifier, - ACTIONS(7053), 1, + ACTIONS(4722), 1, + anon_sym_LBRACK, + ACTIONS(4724), 15, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(7055), 1, - anon_sym_defined, - ACTIONS(7183), 1, - sym_number_literal, - ACTIONS(7057), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(7059), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7063), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(4430), 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, - [165777] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(4214), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(4830), 1, anon_sym_LBRACE, - ACTIONS(5447), 1, + anon_sym_EQ, anon_sym_COLON, - ACTIONS(6568), 1, - anon_sym_COLON_COLON, - ACTIONS(6841), 1, - sym_identifier, - STATE(2795), 1, - sym_template_type, - STATE(2914), 1, - sym_field_declaration_list, - STATE(5020), 1, - sym__scope_resolution, - STATE(5256), 1, - sym_virtual_specifier, - STATE(5787), 1, - sym_base_class_clause, - ACTIONS(5449), 2, + anon_sym_or, + anon_sym_and, anon_sym_final, anon_sym_override, - STATE(2496), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(4085), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6159), 2, - sym_decltype, - sym_dependent_type_identifier, - [165833] = 17, + anon_sym_try, + anon_sym_requires, + [197529] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(4131), 1, - anon_sym_LBRACE, - ACTIONS(4214), 1, + ACTIONS(4831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5447), 1, - anon_sym_COLON, - ACTIONS(6524), 1, - anon_sym_COLON_COLON, - ACTIONS(6827), 1, - sym_identifier, - STATE(1933), 1, - sym_template_type, - STATE(2129), 1, - sym_field_declaration_list, - STATE(5022), 1, - sym__scope_resolution, + ACTIONS(6544), 1, + anon_sym_LBRACK, + ACTIONS(6589), 1, + anon_sym_DASH_GT, + ACTIONS(6591), 1, + anon_sym_requires, STATE(5365), 1, - sym_virtual_specifier, - STATE(5871), 1, - sym_base_class_clause, - ACTIONS(5449), 2, + sym_requires_clause, + STATE(5619), 1, + sym_trailing_return_type, + ACTIONS(6528), 2, anon_sym_final, anon_sym_override, - STATE(1902), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(4379), 2, + STATE(4720), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6159), 2, - sym_decltype, - sym_dependent_type_identifier, - [165889] = 17, + STATE(5277), 2, + sym_virtual_specifier, + aux_sym__function_declarator_seq_repeat2, + ACTIONS(6542), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_GT2, + [197569] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(4131), 1, + ACTIONS(6367), 1, + anon_sym_requires, + ACTIONS(7726), 1, + anon_sym_LBRACK, + STATE(5358), 1, + sym_requires_clause, + ACTIONS(4880), 2, + anon_sym_final, + anon_sym_override, + STATE(5288), 2, + sym_virtual_specifier, + aux_sym__function_declarator_seq_repeat2, + ACTIONS(7724), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - ACTIONS(4214), 1, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_try, + [197601] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5447), 1, - anon_sym_COLON, - ACTIONS(6524), 1, - anon_sym_COLON_COLON, - ACTIONS(6827), 1, - sym_identifier, - STATE(1933), 1, - sym_template_type, - STATE(2129), 1, - sym_field_declaration_list, - STATE(5022), 1, - sym__scope_resolution, - STATE(5365), 1, - sym_virtual_specifier, - STATE(5871), 1, - sym_base_class_clause, - ACTIONS(5449), 2, + ACTIONS(6589), 1, + anon_sym_DASH_GT, + ACTIONS(6591), 1, + anon_sym_requires, + ACTIONS(7726), 1, + anon_sym_LBRACK, + STATE(5417), 1, + sym_requires_clause, + STATE(5622), 1, + sym_trailing_return_type, + ACTIONS(6528), 2, anon_sym_final, anon_sym_override, - STATE(1902), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(4085), 2, + STATE(4720), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6159), 2, - sym_decltype, - sym_dependent_type_identifier, - [165945] = 17, + STATE(5254), 2, + sym_virtual_specifier, + aux_sym__function_declarator_seq_repeat2, + ACTIONS(7724), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_GT2, + [197641] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(4214), 1, + ACTIONS(4831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4359), 1, - anon_sym_LBRACE, - ACTIONS(5447), 1, - anon_sym_COLON, - ACTIONS(6612), 1, - anon_sym_COLON_COLON, - ACTIONS(6777), 1, - sym_identifier, - STATE(2255), 1, - sym_template_type, - STATE(2527), 1, - sym_field_declaration_list, - STATE(4990), 1, - sym__scope_resolution, - STATE(5335), 1, - sym_virtual_specifier, - STATE(5971), 1, - sym_base_class_clause, - ACTIONS(5449), 2, + ACTIONS(6589), 1, + anon_sym_DASH_GT, + ACTIONS(6591), 1, + anon_sym_requires, + ACTIONS(7726), 1, + anon_sym_LBRACK, + STATE(5417), 1, + sym_requires_clause, + STATE(5622), 1, + sym_trailing_return_type, + ACTIONS(6528), 2, anon_sym_final, anon_sym_override, - STATE(2014), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(4407), 2, + STATE(5240), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6159), 2, - sym_decltype, - sym_dependent_type_identifier, - [166001] = 17, + STATE(5254), 2, + sym_virtual_specifier, + aux_sym__function_declarator_seq_repeat2, + ACTIONS(7724), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_GT2, + [197681] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(4131), 1, - anon_sym_LBRACE, - ACTIONS(4214), 1, + ACTIONS(4831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5447), 1, - anon_sym_COLON, - ACTIONS(6524), 1, - anon_sym_COLON_COLON, - ACTIONS(6827), 1, - sym_identifier, - STATE(1933), 1, - sym_template_type, - STATE(2112), 1, - sym_field_declaration_list, - STATE(5022), 1, - sym__scope_resolution, - STATE(5288), 1, - sym_virtual_specifier, - STATE(5865), 1, - sym_base_class_clause, - ACTIONS(5449), 2, + ACTIONS(6589), 1, + anon_sym_DASH_GT, + ACTIONS(6591), 1, + anon_sym_requires, + ACTIONS(8033), 1, + anon_sym_LBRACK, + STATE(5430), 1, + sym_requires_clause, + STATE(5623), 1, + sym_trailing_return_type, + ACTIONS(6528), 2, anon_sym_final, anon_sym_override, - STATE(1904), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(4085), 2, + STATE(4720), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6159), 2, - sym_decltype, - sym_dependent_type_identifier, - [166057] = 12, + STATE(5257), 2, + sym_virtual_specifier, + aux_sym__function_declarator_seq_repeat2, + ACTIONS(8031), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_GT2, + [197721] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7019), 1, - anon_sym_SLASH, - ACTIONS(7025), 1, - anon_sym_PIPE, - ACTIONS(7027), 1, - anon_sym_CARET, - ACTIONS(7029), 1, - anon_sym_AMP, - ACTIONS(7015), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7017), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7031), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7033), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(7035), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(7037), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7101), 4, + ACTIONS(4722), 1, + anon_sym_LBRACK, + ACTIONS(4724), 15, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - [166103] = 13, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [197745] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7019), 1, - anon_sym_SLASH, - ACTIONS(7023), 1, - anon_sym_AMP_AMP, - ACTIONS(7025), 1, - anon_sym_PIPE, - ACTIONS(7027), 1, - anon_sym_CARET, - ACTIONS(7029), 1, - anon_sym_AMP, - ACTIONS(7015), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7017), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7031), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7033), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(7035), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(7037), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7101), 3, - anon_sym_COMMA, + ACTIONS(8282), 1, + anon_sym_COLON, + ACTIONS(8294), 1, anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - [166151] = 3, + STATE(6312), 1, + sym_gnu_asm_output_operand_list, + STATE(2961), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(107), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(145), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [197777] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7103), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(7101), 15, - anon_sym_COMMA, + ACTIONS(8282), 1, + anon_sym_COLON, + ACTIONS(8296), 1, 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, - [166179] = 17, + STATE(6302), 1, + sym_gnu_asm_output_operand_list, + STATE(2961), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(107), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(145), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [197809] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(4214), 1, + ACTIONS(4722), 1, + anon_sym_LBRACK, + ACTIONS(4724), 15, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(4290), 1, anon_sym_LBRACE, - ACTIONS(5447), 1, + anon_sym_EQ, anon_sym_COLON, - ACTIONS(6546), 1, - anon_sym_COLON_COLON, - ACTIONS(6817), 1, - sym_identifier, - STATE(2192), 1, - sym_template_type, - STATE(2818), 1, - sym_field_declaration_list, - STATE(5036), 1, - sym__scope_resolution, - STATE(5190), 1, - sym_virtual_specifier, - STATE(5900), 1, - sym_base_class_clause, - ACTIONS(5449), 2, - anon_sym_final, - anon_sym_override, - STATE(1984), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(4400), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6159), 2, - sym_decltype, - sym_dependent_type_identifier, - [166235] = 5, + anon_sym_or, + anon_sym_and, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [197833] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7019), 1, - anon_sym_SLASH, - ACTIONS(7017), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7103), 4, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(7101), 13, + ACTIONS(4710), 1, + anon_sym_LBRACK, + ACTIONS(4712), 15, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_PLUS, + anon_sym_LPAREN2, anon_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, - [166267] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(4214), 1, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(4290), 1, anon_sym_LBRACE, - ACTIONS(5447), 1, + anon_sym_EQ, anon_sym_COLON, - ACTIONS(6546), 1, - anon_sym_COLON_COLON, - ACTIONS(6817), 1, - sym_identifier, - STATE(2192), 1, - sym_template_type, - STATE(2818), 1, - sym_field_declaration_list, - STATE(5036), 1, - sym__scope_resolution, - STATE(5190), 1, - sym_virtual_specifier, - STATE(5900), 1, - sym_base_class_clause, - ACTIONS(5449), 2, + anon_sym_or, + anon_sym_and, anon_sym_final, anon_sym_override, - STATE(1984), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(4085), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6159), 2, - sym_decltype, - sym_dependent_type_identifier, - [166323] = 17, + anon_sym_try, + anon_sym_requires, + [197857] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(4214), 1, + ACTIONS(4831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4359), 1, - anon_sym_LBRACE, - ACTIONS(5447), 1, - anon_sym_COLON, - ACTIONS(6612), 1, - anon_sym_COLON_COLON, - ACTIONS(6777), 1, - sym_identifier, - STATE(2255), 1, - sym_template_type, - STATE(2527), 1, - sym_field_declaration_list, - STATE(4990), 1, - sym__scope_resolution, - STATE(5335), 1, - sym_virtual_specifier, - STATE(5971), 1, - sym_base_class_clause, - ACTIONS(5449), 2, + ACTIONS(6589), 1, + anon_sym_DASH_GT, + ACTIONS(6591), 1, + anon_sym_requires, + ACTIONS(8033), 1, + anon_sym_LBRACK, + STATE(5430), 1, + sym_requires_clause, + STATE(5623), 1, + sym_trailing_return_type, + ACTIONS(6528), 2, anon_sym_final, anon_sym_override, - STATE(2014), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(4085), 2, + STATE(5253), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6159), 2, - sym_decltype, - sym_dependent_type_identifier, - [166379] = 3, + STATE(5257), 2, + sym_virtual_specifier, + aux_sym__function_declarator_seq_repeat2, + ACTIONS(8031), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_GT2, + [197897] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7187), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(7185), 15, + ACTIONS(6367), 1, + anon_sym_requires, + ACTIONS(6544), 1, + anon_sym_LBRACK, + STATE(5360), 1, + sym_requires_clause, + ACTIONS(4880), 2, + anon_sym_final, + anon_sym_override, + STATE(5295), 2, + sym_virtual_specifier, + aux_sym__function_declarator_seq_repeat2, + ACTIONS(6542), 9, 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, - [166407] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7051), 1, - sym_identifier, - ACTIONS(7053), 1, anon_sym_LPAREN2, - ACTIONS(7055), 1, - anon_sym_defined, - ACTIONS(7189), 1, - sym_number_literal, - ACTIONS(7057), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(7059), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7063), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(4417), 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, - [166447] = 11, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_try, + [197929] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3908), 1, + ACTIONS(4734), 1, + anon_sym_LBRACK, + ACTIONS(4736), 15, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(6508), 1, - anon_sym_STAR, - ACTIONS(6510), 1, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(6512), 1, - anon_sym_AMP, - ACTIONS(6514), 1, - anon_sym_LBRACK, - STATE(3461), 1, - sym_parameter_list, - STATE(4765), 1, - sym__function_declarator_seq, - STATE(4917), 1, - sym__abstract_declarator, - STATE(4764), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(5550), 7, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, anon_sym_final, anon_sym_override, anon_sym_try, anon_sym_requires, - [166491] = 17, + [197953] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(4214), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(4255), 1, - anon_sym_LBRACE, - ACTIONS(5447), 1, + ACTIONS(8282), 1, anon_sym_COLON, - ACTIONS(6582), 1, - anon_sym_COLON_COLON, - ACTIONS(6803), 1, - sym_identifier, - STATE(2032), 1, - sym_template_type, - STATE(2610), 1, - sym_field_declaration_list, - STATE(5025), 1, - sym__scope_resolution, - STATE(5277), 1, - sym_virtual_specifier, - STATE(5718), 1, - sym_base_class_clause, - ACTIONS(5449), 2, - anon_sym_final, - anon_sym_override, - STATE(1981), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(4085), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6159), 2, - sym_decltype, - sym_dependent_type_identifier, - [166547] = 9, + ACTIONS(8298), 1, + anon_sym_RPAREN, + STATE(6394), 1, + sym_gnu_asm_output_operand_list, + STATE(2961), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(107), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(145), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [197985] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6987), 1, - sym_identifier, - ACTIONS(6991), 1, + ACTIONS(4702), 1, + anon_sym_LBRACK, + ACTIONS(4704), 15, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(6993), 1, - anon_sym_defined, - ACTIONS(7191), 1, - sym_number_literal, - ACTIONS(6995), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(6997), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7001), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(4394), 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, - [166587] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(4214), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(4255), 1, anon_sym_LBRACE, - ACTIONS(5447), 1, + anon_sym_EQ, anon_sym_COLON, - ACTIONS(6582), 1, - anon_sym_COLON_COLON, - ACTIONS(6803), 1, - sym_identifier, - STATE(2032), 1, - sym_template_type, - STATE(2656), 1, - sym_field_declaration_list, - STATE(5025), 1, - sym__scope_resolution, - STATE(5290), 1, - sym_virtual_specifier, - STATE(5724), 1, - sym_base_class_clause, - ACTIONS(5449), 2, + anon_sym_or, + anon_sym_and, anon_sym_final, anon_sym_override, - STATE(1965), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(4085), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6159), 2, - sym_decltype, - sym_dependent_type_identifier, - [166643] = 17, + anon_sym_try, + anon_sym_requires, + [198009] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(4214), 1, + ACTIONS(4730), 1, + anon_sym_LBRACK, + ACTIONS(4732), 15, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(4830), 1, anon_sym_LBRACE, - ACTIONS(5447), 1, + anon_sym_EQ, anon_sym_COLON, - ACTIONS(6568), 1, - anon_sym_COLON_COLON, - ACTIONS(6841), 1, - sym_identifier, - STATE(2795), 1, - sym_template_type, - STATE(2914), 1, - sym_field_declaration_list, - STATE(5020), 1, - sym__scope_resolution, - STATE(5256), 1, - sym_virtual_specifier, - STATE(5787), 1, - sym_base_class_clause, - ACTIONS(5449), 2, + anon_sym_or, + anon_sym_and, anon_sym_final, anon_sym_override, - STATE(2496), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(4399), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6159), 2, - sym_decltype, - sym_dependent_type_identifier, - [166699] = 14, + anon_sym_try, + anon_sym_requires, + [198033] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7019), 1, - anon_sym_SLASH, - ACTIONS(7021), 1, + ACTIONS(4698), 1, + anon_sym_LBRACK, + ACTIONS(4700), 15, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, - ACTIONS(7023), 1, anon_sym_AMP_AMP, - ACTIONS(7025), 1, - anon_sym_PIPE, - ACTIONS(7027), 1, - anon_sym_CARET, - ACTIONS(7029), 1, - anon_sym_AMP, - ACTIONS(7015), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7017), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7031), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7033), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(7035), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(7037), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7193), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [166749] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(4214), 1, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(5447), 1, - anon_sym_COLON, - ACTIONS(5598), 1, - anon_sym_COLON_COLON, - ACTIONS(5721), 1, anon_sym_LBRACE, - ACTIONS(6855), 1, - sym_identifier, - STATE(3133), 1, - sym_template_type, - STATE(3656), 1, - sym_field_declaration_list, - STATE(5035), 1, - sym__scope_resolution, - STATE(5199), 1, - sym_virtual_specifier, - STATE(5824), 1, - sym_base_class_clause, - ACTIONS(5449), 2, - anon_sym_final, - anon_sym_override, - STATE(3361), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(4085), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6159), 2, - sym_decltype, - sym_dependent_type_identifier, - [166805] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(4214), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(4641), 1, - anon_sym_COLON_COLON, - ACTIONS(5447), 1, + anon_sym_EQ, anon_sym_COLON, - ACTIONS(5721), 1, - anon_sym_LBRACE, - ACTIONS(6857), 1, - sym_identifier, - STATE(3133), 1, - sym_template_type, - STATE(3656), 1, - sym_field_declaration_list, - STATE(5040), 1, - sym__scope_resolution, - STATE(5199), 1, - sym_virtual_specifier, - STATE(5824), 1, - sym_base_class_clause, - ACTIONS(5449), 2, + anon_sym_or, + anon_sym_and, anon_sym_final, anon_sym_override, - STATE(3361), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(4085), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6159), 2, - sym_decltype, - sym_dependent_type_identifier, - [166861] = 14, + anon_sym_try, + anon_sym_requires, + [198057] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(4214), 1, + ACTIONS(4831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5665), 1, - anon_sym_noexcept, - ACTIONS(5667), 1, - anon_sym_throw, - ACTIONS(6106), 1, + ACTIONS(6589), 1, anon_sym_DASH_GT, - ACTIONS(6108), 1, + ACTIONS(6591), 1, anon_sym_requires, - ACTIONS(6853), 1, + ACTIONS(8021), 1, anon_sym_LBRACK, - STATE(4807), 1, + STATE(5420), 1, sym_requires_clause, - STATE(4916), 1, + STATE(5628), 1, sym_trailing_return_type, - ACTIONS(5898), 2, + ACTIONS(6528), 2, anon_sym_final, anon_sym_override, - STATE(4576), 2, - sym_noexcept, - sym_throw_specifier, - STATE(4581), 2, + STATE(4720), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(4604), 2, + STATE(5261), 2, sym_virtual_specifier, aux_sym__function_declarator_seq_repeat2, - ACTIONS(6851), 4, + ACTIONS(8019), 4, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_GT2, - [166911] = 17, + [198097] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(4214), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5445), 1, + ACTIONS(6528), 2, + anon_sym_final, + anon_sym_override, + STATE(5290), 2, + sym_virtual_specifier, + aux_sym__function_declarator_seq_repeat2, + ACTIONS(8031), 12, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(5447), 1, + anon_sym_LBRACK, + anon_sym_EQ, anon_sym_COLON, - ACTIONS(6855), 1, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [198123] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8282), 1, + anon_sym_COLON, + ACTIONS(8300), 1, + anon_sym_RPAREN, + STATE(6561), 1, + sym_gnu_asm_output_operand_list, + STATE(2961), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(107), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(145), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [198155] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(8302), 1, sym_identifier, - ACTIONS(6861), 1, + ACTIONS(8304), 1, + anon_sym_TILDE, + ACTIONS(8306), 1, anon_sym_COLON_COLON, - STATE(3133), 1, + ACTIONS(8308), 1, + anon_sym_template, + ACTIONS(8310), 1, + anon_sym_operator, + STATE(2865), 1, + sym_dependent_type_identifier, + STATE(2937), 1, sym_template_type, - STATE(3267), 1, - sym_field_declaration_list, - STATE(4979), 1, - sym__scope_resolution, - STATE(5198), 1, - sym_virtual_specifier, - STATE(5820), 1, - sym_base_class_clause, - ACTIONS(5449), 2, - anon_sym_final, - anon_sym_override, - STATE(4085), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(4812), 2, - sym__class_name, + STATE(2976), 1, sym_qualified_type_identifier, - STATE(6159), 2, + STATE(3530), 1, + sym_template_function, + STATE(3531), 1, + sym_destructor_name, + STATE(3532), 1, + sym_dependent_identifier, + STATE(3534), 1, + sym_qualified_identifier, + STATE(3540), 1, + sym_operator_name, + STATE(5256), 1, + sym__scope_resolution, + STATE(7638), 1, sym_decltype, - sym_dependent_type_identifier, - [166967] = 17, + [198207] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(4214), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(4830), 1, + ACTIONS(6528), 2, + anon_sym_final, + anon_sym_override, + STATE(5290), 2, + sym_virtual_specifier, + aux_sym__function_declarator_seq_repeat2, + ACTIONS(8019), 12, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(5447), 1, + anon_sym_LBRACK, + anon_sym_EQ, anon_sym_COLON, - ACTIONS(6568), 1, - anon_sym_COLON_COLON, - ACTIONS(6841), 1, - sym_identifier, - STATE(2795), 1, - sym_template_type, - STATE(2881), 1, - sym_field_declaration_list, - STATE(5020), 1, - sym__scope_resolution, - STATE(5299), 1, - sym_virtual_specifier, - STATE(5779), 1, - sym_base_class_clause, - ACTIONS(5449), 2, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [198233] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8021), 1, + anon_sym_LBRACK, + ACTIONS(4880), 2, anon_sym_final, anon_sym_override, - STATE(2456), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(4085), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6159), 2, - sym_decltype, - sym_dependent_type_identifier, - [167023] = 17, + STATE(5300), 2, + sym_virtual_specifier, + aux_sym__function_declarator_seq_repeat2, + ACTIONS(8019), 11, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [198261] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(4214), 1, + ACTIONS(4706), 1, + anon_sym_LBRACK, + ACTIONS(4708), 15, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(4290), 1, anon_sym_LBRACE, - ACTIONS(5447), 1, + anon_sym_EQ, anon_sym_COLON, - ACTIONS(6546), 1, - anon_sym_COLON_COLON, - ACTIONS(6817), 1, - sym_identifier, - STATE(2192), 1, - sym_template_type, - STATE(2783), 1, - sym_field_declaration_list, - STATE(5036), 1, - sym__scope_resolution, - STATE(5244), 1, - sym_virtual_specifier, - STATE(5915), 1, - sym_base_class_clause, - ACTIONS(5449), 2, + anon_sym_or, + anon_sym_and, anon_sym_final, anon_sym_override, - STATE(1997), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(4085), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6159), 2, - sym_decltype, - sym_dependent_type_identifier, - [167079] = 17, + anon_sym_try, + anon_sym_requires, + [198285] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(4214), 1, + ACTIONS(4718), 1, + anon_sym_LBRACK, + ACTIONS(4720), 15, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(4641), 1, - anon_sym_COLON_COLON, - ACTIONS(5447), 1, - anon_sym_COLON, - ACTIONS(5721), 1, anon_sym_LBRACE, - ACTIONS(6857), 1, - sym_identifier, - STATE(3133), 1, - sym_template_type, - STATE(3629), 1, - sym_field_declaration_list, - STATE(5040), 1, - sym__scope_resolution, - STATE(5232), 1, - sym_virtual_specifier, - STATE(5833), 1, - sym_base_class_clause, - ACTIONS(5449), 2, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, anon_sym_final, anon_sym_override, - STATE(3357), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(4396), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6159), 2, - sym_decltype, - sym_dependent_type_identifier, - [167135] = 14, + anon_sym_try, + anon_sym_requires, + [198309] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4214), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5665), 1, - anon_sym_noexcept, - ACTIONS(5667), 1, - anon_sym_throw, - ACTIONS(5952), 1, + ACTIONS(6528), 2, + anon_sym_final, + anon_sym_override, + STATE(5290), 2, + sym_virtual_specifier, + aux_sym__function_declarator_seq_repeat2, + ACTIONS(8276), 12, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(6106), 1, - anon_sym_DASH_GT, - ACTIONS(6108), 1, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_GT2, + anon_sym_try, anon_sym_requires, - STATE(4813), 1, - sym_requires_clause, - STATE(4927), 1, - sym_trailing_return_type, - ACTIONS(5898), 2, + [198335] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6528), 2, anon_sym_final, anon_sym_override, - STATE(4582), 2, - sym_noexcept, - sym_throw_specifier, - STATE(4586), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(4641), 2, + STATE(5290), 2, sym_virtual_specifier, aux_sym__function_declarator_seq_repeat2, - ACTIONS(5950), 4, + ACTIONS(8312), 12, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_COLON, anon_sym_GT2, - [167185] = 17, + anon_sym_try, + anon_sym_requires, + [198361] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1555), 1, + ACTIONS(1973), 1, anon_sym_decltype, - ACTIONS(4214), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(4641), 1, - anon_sym_COLON_COLON, - ACTIONS(5447), 1, - anon_sym_COLON, - ACTIONS(5721), 1, - anon_sym_LBRACE, - ACTIONS(6857), 1, + ACTIONS(8314), 1, sym_identifier, - STATE(3133), 1, + ACTIONS(8316), 1, + anon_sym_TILDE, + ACTIONS(8318), 1, + anon_sym_COLON_COLON, + ACTIONS(8320), 1, + anon_sym_template, + ACTIONS(8322), 1, + anon_sym_operator, + STATE(3058), 1, + sym_operator_name, + STATE(3067), 1, + sym_template_function, + STATE(3068), 1, + sym_destructor_name, + STATE(3069), 1, + sym_dependent_identifier, + STATE(3070), 1, + sym_qualified_identifier, + STATE(3595), 1, sym_template_type, - STATE(3629), 1, - sym_field_declaration_list, - STATE(5040), 1, - sym__scope_resolution, - STATE(5232), 1, - sym_virtual_specifier, - STATE(5833), 1, - sym_base_class_clause, - ACTIONS(5449), 2, - anon_sym_final, - anon_sym_override, - STATE(3357), 2, - sym__class_name, + STATE(3601), 1, + sym_dependent_type_identifier, + STATE(3602), 1, sym_qualified_type_identifier, - STATE(4085), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6159), 2, + STATE(5263), 1, + sym__scope_resolution, + STATE(7638), 1, sym_decltype, - sym_dependent_type_identifier, - [167241] = 17, + [198413] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(4214), 1, + ACTIONS(8326), 1, + anon_sym_LBRACK, + ACTIONS(8324), 15, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(4255), 1, anon_sym_LBRACE, - ACTIONS(5447), 1, + anon_sym_EQ, anon_sym_COLON, - ACTIONS(6582), 1, - anon_sym_COLON_COLON, - ACTIONS(6803), 1, - sym_identifier, - STATE(2032), 1, - sym_template_type, - STATE(2656), 1, - sym_field_declaration_list, - STATE(5025), 1, - sym__scope_resolution, - STATE(5290), 1, - sym_virtual_specifier, - STATE(5724), 1, - sym_base_class_clause, - ACTIONS(5449), 2, + anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - STATE(1965), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(4390), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6159), 2, - sym_decltype, - sym_dependent_type_identifier, - [167297] = 17, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [198437] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1555), 1, + ACTIONS(1973), 1, anon_sym_decltype, - ACTIONS(3916), 1, + ACTIONS(8316), 1, + anon_sym_TILDE, + ACTIONS(8322), 1, + anon_sym_operator, + ACTIONS(8328), 1, + sym_identifier, + ACTIONS(8330), 1, anon_sym_COLON_COLON, - ACTIONS(4214), 1, + ACTIONS(8332), 1, + anon_sym_template, + STATE(3058), 1, + sym_operator_name, + STATE(3067), 1, + sym_template_function, + STATE(3068), 1, + sym_destructor_name, + STATE(3069), 1, + sym_dependent_identifier, + STATE(3070), 1, + sym_qualified_identifier, + STATE(3595), 1, + sym_template_type, + STATE(3601), 1, + sym_dependent_type_identifier, + STATE(3602), 1, + sym_qualified_type_identifier, + STATE(5265), 1, + sym__scope_resolution, + STATE(7638), 1, + sym_decltype, + [198489] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5204), 1, + anon_sym_LBRACK, + ACTIONS(8334), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5206), 13, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(5445), 1, anon_sym_LBRACE, - ACTIONS(5447), 1, + anon_sym_EQ, anon_sym_COLON, - ACTIONS(6857), 1, - sym_identifier, - STATE(3133), 1, - sym_template_type, - STATE(3264), 1, - sym_field_declaration_list, - STATE(5034), 1, - sym__scope_resolution, - STATE(5334), 1, - sym_virtual_specifier, - STATE(5860), 1, - sym_base_class_clause, - ACTIONS(5449), 2, + anon_sym_or, anon_sym_final, anon_sym_override, - STATE(3168), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(4085), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6159), 2, - sym_decltype, - sym_dependent_type_identifier, - [167353] = 17, + anon_sym_try, + anon_sym_requires, + [198515] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(3916), 1, - anon_sym_COLON_COLON, - ACTIONS(4214), 1, + ACTIONS(5299), 1, + anon_sym_LBRACK, + ACTIONS(8334), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8336), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5301), 11, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(5445), 1, anon_sym_LBRACE, - ACTIONS(5447), 1, + anon_sym_EQ, anon_sym_COLON, - ACTIONS(6857), 1, - sym_identifier, - STATE(3133), 1, - sym_template_type, - STATE(3264), 1, - sym_field_declaration_list, - STATE(5034), 1, - sym__scope_resolution, - STATE(5334), 1, - sym_virtual_specifier, - STATE(5860), 1, - sym_base_class_clause, - ACTIONS(5449), 2, anon_sym_final, anon_sym_override, - STATE(3168), 2, - sym__class_name, + anon_sym_try, + anon_sym_requires, + [198543] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(8180), 1, + anon_sym_TILDE, + ACTIONS(8338), 1, + sym_identifier, + ACTIONS(8340), 1, + anon_sym_COLON_COLON, + ACTIONS(8342), 1, + anon_sym_template, + ACTIONS(8344), 1, + anon_sym_operator, + STATE(2850), 1, + sym_template_function, + STATE(2851), 1, + sym_destructor_name, + STATE(2852), 1, + sym_dependent_identifier, + STATE(2854), 1, + sym_qualified_identifier, + STATE(2859), 1, + sym_operator_name, + STATE(3595), 1, + sym_template_type, + STATE(3601), 1, + sym_dependent_type_identifier, + STATE(3602), 1, sym_qualified_type_identifier, - STATE(4339), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6159), 2, + STATE(5268), 1, + sym__scope_resolution, + STATE(7638), 1, sym_decltype, - sym_dependent_type_identifier, - [167409] = 17, + [198595] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(4214), 1, + ACTIONS(8346), 1, + anon_sym_LBRACK, + ACTIONS(4880), 2, + anon_sym_final, + anon_sym_override, + STATE(5300), 2, + sym_virtual_specifier, + aux_sym__function_declarator_seq_repeat2, + ACTIONS(8312), 11, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(4359), 1, anon_sym_LBRACE, - ACTIONS(5447), 1, + anon_sym_EQ, anon_sym_COLON, - ACTIONS(6612), 1, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [198623] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1931), 1, + anon_sym_operator, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(2562), 1, + anon_sym_TILDE, + ACTIONS(4453), 1, anon_sym_COLON_COLON, - ACTIONS(6777), 1, + ACTIONS(8348), 1, sym_identifier, - STATE(2255), 1, + ACTIONS(8350), 1, + anon_sym_template, + STATE(2850), 1, + sym_template_function, + STATE(2851), 1, + sym_destructor_name, + STATE(2852), 1, + sym_dependent_identifier, + STATE(2854), 1, + sym_qualified_identifier, + STATE(2859), 1, + sym_operator_name, + STATE(3595), 1, sym_template_type, - STATE(2448), 1, - sym_field_declaration_list, - STATE(4990), 1, - sym__scope_resolution, - STATE(5173), 1, - sym_virtual_specifier, - STATE(5962), 1, - sym_base_class_clause, - ACTIONS(5449), 2, - anon_sym_final, - anon_sym_override, - STATE(2102), 2, - sym__class_name, + STATE(3601), 1, + sym_dependent_type_identifier, + STATE(3602), 1, sym_qualified_type_identifier, - STATE(4085), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6159), 2, + STATE(5270), 1, + sym__scope_resolution, + STATE(7638), 1, sym_decltype, - sym_dependent_type_identifier, - [167465] = 9, + [198675] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6987), 1, - sym_identifier, - ACTIONS(6991), 1, + ACTIONS(8354), 1, anon_sym_LPAREN2, - ACTIONS(6993), 1, - anon_sym_defined, - ACTIONS(7195), 1, - sym_number_literal, - ACTIONS(6995), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(6997), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7001), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(4319), 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, - [167505] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4214), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5665), 1, - anon_sym_noexcept, - ACTIONS(5667), 1, - anon_sym_throw, - ACTIONS(5675), 1, + ACTIONS(8356), 1, anon_sym_LBRACK, - ACTIONS(6106), 1, + ACTIONS(8352), 14, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, anon_sym_DASH_GT, - ACTIONS(6108), 1, - anon_sym_requires, - STATE(4789), 1, - sym_requires_clause, - STATE(4942), 1, - sym_trailing_return_type, - ACTIONS(5898), 2, anon_sym_final, anon_sym_override, - STATE(4563), 2, - sym_noexcept, - sym_throw_specifier, - STATE(4568), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(4622), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat2, - ACTIONS(5673), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_GT2, - [167555] = 12, - ACTIONS(7009), 1, + anon_sym_try, + anon_sym_requires, + [198701] = 17, + ACTIONS(3), 1, sym_comment, - ACTIONS(7197), 1, - anon_sym_LF, - ACTIONS(7203), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7205), 1, - anon_sym_AMP_AMP, - ACTIONS(7207), 1, - anon_sym_PIPE, - ACTIONS(7209), 1, - anon_sym_CARET, - ACTIONS(7211), 1, - anon_sym_AMP, - ACTIONS(7199), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7213), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7217), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7201), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7215), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [167600] = 3, - ACTIONS(7009), 1, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(8358), 1, + sym_identifier, + ACTIONS(8360), 1, + anon_sym_TILDE, + ACTIONS(8362), 1, + anon_sym_COLON_COLON, + ACTIONS(8364), 1, + anon_sym_template, + ACTIONS(8366), 1, + anon_sym_operator, + STATE(2500), 1, + sym_qualified_type_identifier, + STATE(2536), 1, + sym_template_type, + STATE(2622), 1, + sym_dependent_type_identifier, + STATE(3183), 1, + sym_template_function, + STATE(3184), 1, + sym_destructor_name, + STATE(3185), 1, + sym_dependent_identifier, + STATE(3188), 1, + sym_qualified_identifier, + STATE(3201), 1, + sym_operator_name, + STATE(5272), 1, + sym__scope_resolution, + STATE(7638), 1, + sym_decltype, + [198753] = 17, + ACTIONS(3), 1, sym_comment, - ACTIONS(7157), 1, - anon_sym_LF, - ACTIONS(7159), 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, - [167627] = 11, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(8286), 1, + anon_sym_TILDE, + ACTIONS(8292), 1, + anon_sym_operator, + ACTIONS(8368), 1, + sym_identifier, + ACTIONS(8370), 1, + anon_sym_COLON_COLON, + ACTIONS(8372), 1, + anon_sym_template, + STATE(3204), 1, + sym_destructor_name, + STATE(3205), 1, + sym_dependent_identifier, + STATE(3209), 1, + sym_qualified_identifier, + STATE(3211), 1, + sym_operator_name, + STATE(3217), 1, + sym_template_function, + STATE(3595), 1, + sym_template_type, + STATE(3601), 1, + sym_dependent_type_identifier, + STATE(3602), 1, + sym_qualified_type_identifier, + STATE(5273), 1, + sym__scope_resolution, + STATE(7638), 1, + sym_decltype, + [198805] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5709), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5733), 1, - anon_sym_DASH_GT, - ACTIONS(5735), 1, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(8286), 1, + anon_sym_TILDE, + ACTIONS(8292), 1, + anon_sym_operator, + ACTIONS(8374), 1, + sym_identifier, + ACTIONS(8376), 1, + anon_sym_COLON_COLON, + ACTIONS(8378), 1, + anon_sym_template, + STATE(2500), 1, + sym_qualified_type_identifier, + STATE(2536), 1, + sym_template_type, + STATE(2622), 1, + sym_dependent_type_identifier, + STATE(3204), 1, + sym_destructor_name, + STATE(3205), 1, + sym_dependent_identifier, + STATE(3209), 1, + sym_qualified_identifier, + STATE(3211), 1, + sym_operator_name, + STATE(3217), 1, + sym_template_function, + STATE(5274), 1, + sym__scope_resolution, + STATE(7638), 1, + sym_decltype, + [198857] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8282), 1, + anon_sym_COLON, + ACTIONS(8380), 1, + anon_sym_RPAREN, + STATE(6581), 1, + sym_gnu_asm_output_operand_list, + STATE(2961), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(107), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(145), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [198889] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6367), 1, anon_sym_requires, - ACTIONS(6853), 1, + ACTIONS(8033), 1, anon_sym_LBRACK, - STATE(4634), 1, - sym_trailing_return_type, - STATE(4659), 1, + STATE(5419), 1, sym_requires_clause, - ACTIONS(4135), 2, + ACTIONS(4880), 2, anon_sym_final, anon_sym_override, - STATE(4533), 2, + STATE(5258), 2, sym_virtual_specifier, aux_sym__function_declarator_seq_repeat2, - STATE(4625), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(6851), 7, + ACTIONS(8031), 9, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_COLON, + anon_sym_GT2, anon_sym_try, - [167670] = 11, + [198921] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5709), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5733), 1, - anon_sym_DASH_GT, - ACTIONS(5735), 1, - anon_sym_requires, - ACTIONS(6853), 1, - anon_sym_LBRACK, - STATE(4634), 1, - sym_trailing_return_type, - STATE(4659), 1, - sym_requires_clause, - ACTIONS(4135), 2, + ACTIONS(6528), 2, anon_sym_final, anon_sym_override, - STATE(4419), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(4533), 2, + STATE(5290), 2, sym_virtual_specifier, aux_sym__function_declarator_seq_repeat2, - ACTIONS(6851), 7, + ACTIONS(7724), 12, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, anon_sym_COLON, + anon_sym_GT2, anon_sym_try, - [167713] = 12, - ACTIONS(7009), 1, - sym_comment, - ACTIONS(7203), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7205), 1, - anon_sym_AMP_AMP, - ACTIONS(7207), 1, - anon_sym_PIPE, - ACTIONS(7209), 1, - anon_sym_CARET, - ACTIONS(7211), 1, - anon_sym_AMP, - ACTIONS(7219), 1, - anon_sym_LF, - ACTIONS(7199), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7213), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7217), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7201), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7215), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [167758] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5709), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5733), 1, - anon_sym_DASH_GT, - ACTIONS(5735), 1, anon_sym_requires, - ACTIONS(5952), 1, + [198947] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6409), 1, anon_sym_LBRACK, - STATE(4645), 1, - sym_trailing_return_type, - STATE(4723), 1, - sym_requires_clause, - ACTIONS(4135), 2, + ACTIONS(4880), 2, anon_sym_final, anon_sym_override, - STATE(4412), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(4538), 2, + STATE(5300), 2, sym_virtual_specifier, aux_sym__function_declarator_seq_repeat2, - ACTIONS(5950), 7, + ACTIONS(6407), 11, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, + anon_sym_GT2, anon_sym_try, - [167801] = 11, + anon_sym_requires, + [198975] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3908), 1, - anon_sym_LPAREN2, - ACTIONS(6514), 1, + ACTIONS(8384), 1, anon_sym_LBRACK, - ACTIONS(6602), 1, - anon_sym_STAR, - ACTIONS(6604), 1, - anon_sym_AMP_AMP, - ACTIONS(6606), 1, - anon_sym_AMP, - STATE(3556), 1, - sym_parameter_list, - STATE(4765), 1, - sym__function_declarator_seq, - STATE(4955), 1, - sym__abstract_declarator, - STATE(4764), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(5550), 6, + ACTIONS(8382), 15, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_DASH_GT, anon_sym_final, anon_sym_override, anon_sym_GT2, + anon_sym_try, anon_sym_requires, - [167844] = 12, - ACTIONS(7009), 1, - sym_comment, - ACTIONS(7203), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7205), 1, - anon_sym_AMP_AMP, - ACTIONS(7207), 1, - anon_sym_PIPE, - ACTIONS(7209), 1, - anon_sym_CARET, - ACTIONS(7211), 1, - anon_sym_AMP, - ACTIONS(7221), 1, - anon_sym_LF, - ACTIONS(7199), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7213), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7217), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7201), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7215), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [167889] = 11, + [198999] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5675), 1, + ACTIONS(8388), 1, anon_sym_LBRACK, - ACTIONS(5709), 1, + ACTIONS(8386), 15, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(5733), 1, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, anon_sym_DASH_GT, - ACTIONS(5735), 1, - anon_sym_requires, - STATE(4591), 1, - sym_trailing_return_type, - STATE(4716), 1, - sym_requires_clause, - ACTIONS(4135), 2, anon_sym_final, anon_sym_override, - STATE(4578), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat2, - STATE(4625), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(5673), 7, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [199023] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8282), 1, + anon_sym_COLON, + ACTIONS(8390), 1, + anon_sym_RPAREN, + STATE(6386), 1, + sym_gnu_asm_output_operand_list, + STATE(2961), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(107), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(145), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [199055] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8394), 1, + anon_sym_LBRACK, + ACTIONS(8392), 15, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, anon_sym_try, - [167932] = 11, + anon_sym_requires, + [199079] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5709), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5733), 1, - anon_sym_DASH_GT, - ACTIONS(5735), 1, + ACTIONS(6367), 1, anon_sym_requires, - ACTIONS(7095), 1, + ACTIONS(6409), 1, anon_sym_LBRACK, - STATE(4612), 1, - sym_trailing_return_type, - STATE(4674), 1, + STATE(5422), 1, sym_requires_clause, - ACTIONS(4135), 2, + ACTIONS(4880), 2, anon_sym_final, anon_sym_override, - STATE(4545), 2, + STATE(5301), 2, sym_virtual_specifier, aux_sym__function_declarator_seq_repeat2, - STATE(4625), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(7093), 7, + ACTIONS(6407), 9, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_COLON, + anon_sym_GT2, anon_sym_try, - [167975] = 11, + [199111] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5675), 1, + ACTIONS(2542), 1, anon_sym_LBRACK, - ACTIONS(5709), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5733), 1, - anon_sym_DASH_GT, - ACTIONS(5735), 1, - anon_sym_requires, - STATE(4591), 1, - sym_trailing_return_type, - STATE(4716), 1, - sym_requires_clause, - ACTIONS(4135), 2, - anon_sym_final, - anon_sym_override, - STATE(4435), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(4578), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat2, - ACTIONS(5673), 7, + ACTIONS(2540), 15, anon_sym_COMMA, anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_final, + anon_sym_override, anon_sym_try, - [168018] = 12, - ACTIONS(7009), 1, - sym_comment, - ACTIONS(7203), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7205), 1, - anon_sym_AMP_AMP, - ACTIONS(7207), 1, - anon_sym_PIPE, - ACTIONS(7209), 1, - anon_sym_CARET, - ACTIONS(7211), 1, - anon_sym_AMP, - ACTIONS(7223), 1, - anon_sym_LF, - ACTIONS(7199), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7213), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7217), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7201), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7215), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [168063] = 3, - ACTIONS(7009), 1, - sym_comment, - ACTIONS(7185), 1, - anon_sym_LF, - ACTIONS(7187), 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, - [168090] = 12, - ACTIONS(7009), 1, - sym_comment, - ACTIONS(7203), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7205), 1, - anon_sym_AMP_AMP, - ACTIONS(7207), 1, - anon_sym_PIPE, - ACTIONS(7209), 1, - anon_sym_CARET, - ACTIONS(7211), 1, - anon_sym_AMP, - ACTIONS(7225), 1, - anon_sym_LF, - ACTIONS(7199), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7213), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7217), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7201), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7215), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [168135] = 12, - ACTIONS(7009), 1, - sym_comment, - ACTIONS(7203), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7205), 1, - anon_sym_AMP_AMP, - ACTIONS(7207), 1, - anon_sym_PIPE, - ACTIONS(7209), 1, - anon_sym_CARET, - ACTIONS(7211), 1, - anon_sym_AMP, - ACTIONS(7227), 1, - anon_sym_LF, - ACTIONS(7199), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7213), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7217), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7201), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7215), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [168180] = 3, - ACTIONS(7009), 1, - sym_comment, - ACTIONS(7043), 1, - anon_sym_LF, - ACTIONS(7045), 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, - [168207] = 15, + anon_sym_requires, + [199135] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(111), 1, - anon_sym_virtual, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(2928), 1, - anon_sym_COLON_COLON, - ACTIONS(4214), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6855), 1, - sym_identifier, - STATE(3133), 1, - sym_template_type, - STATE(4875), 1, - sym_access_specifier, - STATE(5006), 1, - sym__scope_resolution, - STATE(5311), 1, - sym_virtual, - STATE(4432), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(5451), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6159), 2, - sym_decltype, - sym_dependent_type_identifier, - ACTIONS(7229), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - [168258] = 15, + ACTIONS(8282), 1, + anon_sym_COLON, + ACTIONS(8396), 1, + anon_sym_RPAREN, + STATE(6392), 1, + sym_gnu_asm_output_operand_list, + STATE(2961), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(107), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(145), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [199167] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(111), 1, - anon_sym_virtual, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1555), 1, + ACTIONS(1973), 1, anon_sym_decltype, - ACTIONS(2928), 1, - anon_sym_COLON_COLON, - ACTIONS(4214), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6855), 1, + ACTIONS(8360), 1, + anon_sym_TILDE, + ACTIONS(8366), 1, + anon_sym_operator, + ACTIONS(8398), 1, sym_identifier, - STATE(3133), 1, + ACTIONS(8400), 1, + anon_sym_COLON_COLON, + ACTIONS(8402), 1, + anon_sym_template, + STATE(3183), 1, + sym_template_function, + STATE(3184), 1, + sym_destructor_name, + STATE(3185), 1, + sym_dependent_identifier, + STATE(3188), 1, + sym_qualified_identifier, + STATE(3201), 1, + sym_operator_name, + STATE(3595), 1, sym_template_type, - STATE(4849), 1, - sym_access_specifier, - STATE(5006), 1, - sym__scope_resolution, - STATE(5176), 1, - sym_virtual, - STATE(4085), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(5171), 2, - sym__class_name, + STATE(3601), 1, + sym_dependent_type_identifier, + STATE(3602), 1, sym_qualified_type_identifier, - STATE(6159), 2, + STATE(5286), 1, + sym__scope_resolution, + STATE(7638), 1, sym_decltype, - sym_dependent_type_identifier, - ACTIONS(7229), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - [168309] = 12, - ACTIONS(7009), 1, - sym_comment, - ACTIONS(7203), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7205), 1, - anon_sym_AMP_AMP, - ACTIONS(7207), 1, - anon_sym_PIPE, - ACTIONS(7209), 1, - anon_sym_CARET, - ACTIONS(7211), 1, - anon_sym_AMP, - ACTIONS(7231), 1, - anon_sym_LF, - ACTIONS(7199), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7213), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7217), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7201), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7215), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [168354] = 11, - ACTIONS(7009), 1, - sym_comment, - ACTIONS(7101), 1, - anon_sym_LF, - ACTIONS(7207), 1, - anon_sym_PIPE, - ACTIONS(7209), 1, - anon_sym_CARET, - ACTIONS(7211), 1, - anon_sym_AMP, - ACTIONS(7103), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(7199), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7213), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7217), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7201), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7215), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [168397] = 12, - ACTIONS(7009), 1, + [199219] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(7203), 1, + ACTIONS(2536), 1, + anon_sym_LBRACK, + ACTIONS(2534), 15, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, - ACTIONS(7205), 1, anon_sym_AMP_AMP, - ACTIONS(7207), 1, - anon_sym_PIPE, - ACTIONS(7209), 1, - anon_sym_CARET, - ACTIONS(7211), 1, - anon_sym_AMP, - ACTIONS(7233), 1, - anon_sym_LF, - ACTIONS(7199), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7213), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7217), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7201), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7215), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [168442] = 9, - ACTIONS(7009), 1, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [199243] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(7101), 1, - anon_sym_LF, - ACTIONS(7211), 1, - anon_sym_AMP, - ACTIONS(7199), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7213), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7217), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7201), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7103), 4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(7215), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [168481] = 15, + ACTIONS(8033), 1, + anon_sym_LBRACK, + ACTIONS(4880), 2, + anon_sym_final, + anon_sym_override, + STATE(5300), 2, + sym_virtual_specifier, + aux_sym__function_declarator_seq_repeat2, + ACTIONS(8031), 11, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [199271] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(111), 1, - anon_sym_virtual, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1555), 1, + ACTIONS(1973), 1, anon_sym_decltype, - ACTIONS(2928), 1, - anon_sym_COLON_COLON, - ACTIONS(4214), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6855), 1, + ACTIONS(8304), 1, + anon_sym_TILDE, + ACTIONS(8310), 1, + anon_sym_operator, + ACTIONS(8404), 1, sym_identifier, - STATE(3133), 1, + ACTIONS(8406), 1, + anon_sym_COLON_COLON, + ACTIONS(8408), 1, + anon_sym_template, + STATE(3530), 1, + sym_template_function, + STATE(3531), 1, + sym_destructor_name, + STATE(3532), 1, + sym_dependent_identifier, + STATE(3534), 1, + sym_qualified_identifier, + STATE(3540), 1, + sym_operator_name, + STATE(3595), 1, sym_template_type, - STATE(4833), 1, - sym_access_specifier, - STATE(5006), 1, - sym__scope_resolution, - STATE(5181), 1, - sym_virtual, - STATE(4085), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(5642), 2, - sym__class_name, + STATE(3601), 1, + sym_dependent_type_identifier, + STATE(3602), 1, sym_qualified_type_identifier, - STATE(6159), 2, + STATE(5289), 1, + sym__scope_resolution, + STATE(7638), 1, sym_decltype, - sym_dependent_type_identifier, - ACTIONS(7229), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - [168532] = 3, - ACTIONS(7009), 1, - sym_comment, - ACTIONS(7105), 1, - anon_sym_LF, - ACTIONS(7107), 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, - [168559] = 14, + [199323] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7019), 1, - anon_sym_SLASH, - ACTIONS(7021), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7023), 1, - anon_sym_AMP_AMP, - ACTIONS(7025), 1, - anon_sym_PIPE, - ACTIONS(7027), 1, - anon_sym_CARET, - ACTIONS(7029), 1, - anon_sym_AMP, - ACTIONS(7235), 1, + ACTIONS(8412), 2, + anon_sym_final, + anon_sym_override, + STATE(5290), 2, + sym_virtual_specifier, + aux_sym__function_declarator_seq_repeat2, + ACTIONS(8410), 12, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(7015), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7017), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7031), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7033), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(7035), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(7037), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [168608] = 11, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [199349] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5709), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5733), 1, - anon_sym_DASH_GT, - ACTIONS(5735), 1, + ACTIONS(6367), 1, anon_sym_requires, - ACTIONS(5952), 1, + ACTIONS(8021), 1, anon_sym_LBRACK, - STATE(4645), 1, - sym_trailing_return_type, - STATE(4723), 1, + STATE(5388), 1, sym_requires_clause, - ACTIONS(4135), 2, + ACTIONS(4880), 2, anon_sym_final, anon_sym_override, - STATE(4538), 2, + STATE(5223), 2, sym_virtual_specifier, aux_sym__function_declarator_seq_repeat2, - STATE(4625), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(5950), 7, + ACTIONS(8019), 9, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_COLON, + anon_sym_GT2, anon_sym_try, - [168651] = 3, - ACTIONS(7009), 1, - sym_comment, - ACTIONS(7097), 1, - anon_sym_LF, - ACTIONS(7099), 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, - [168678] = 10, - ACTIONS(7009), 1, + [199381] = 7, + ACTIONS(3), 1, sym_comment, - ACTIONS(7101), 1, - anon_sym_LF, - ACTIONS(7209), 1, - anon_sym_CARET, - ACTIONS(7211), 1, - anon_sym_AMP, - ACTIONS(7199), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7213), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7217), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7103), 3, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - ACTIONS(7201), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7215), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [168719] = 15, + ACTIONS(6367), 1, + anon_sym_requires, + ACTIONS(8278), 1, + anon_sym_LBRACK, + STATE(5387), 1, + sym_requires_clause, + ACTIONS(4880), 2, + anon_sym_final, + anon_sym_override, + STATE(5269), 2, + sym_virtual_specifier, + aux_sym__function_declarator_seq_repeat2, + ACTIONS(8276), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_try, + [199413] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(111), 1, - anon_sym_virtual, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1555), 1, + ACTIONS(1931), 1, + anon_sym_operator, + ACTIONS(1973), 1, anon_sym_decltype, - ACTIONS(2928), 1, + ACTIONS(2562), 1, + anon_sym_TILDE, + ACTIONS(4022), 1, anon_sym_COLON_COLON, - ACTIONS(4214), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6855), 1, + ACTIONS(8415), 1, sym_identifier, - STATE(3133), 1, + ACTIONS(8417), 1, + anon_sym_template, + STATE(2850), 1, + sym_template_function, + STATE(2851), 1, + sym_destructor_name, + STATE(2852), 1, + sym_dependent_identifier, + STATE(2854), 1, + sym_qualified_identifier, + STATE(2859), 1, + sym_operator_name, + STATE(3595), 1, sym_template_type, - STATE(4850), 1, - sym_access_specifier, - STATE(5006), 1, - sym__scope_resolution, - STATE(5359), 1, - sym_virtual, - STATE(4427), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(5358), 2, - sym__class_name, + STATE(3601), 1, + sym_dependent_type_identifier, + STATE(3602), 1, sym_qualified_type_identifier, - STATE(6159), 2, + STATE(5293), 1, + sym__scope_resolution, + STATE(7638), 1, sym_decltype, - sym_dependent_type_identifier, - ACTIONS(7229), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - [168770] = 14, + [199465] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7019), 1, - anon_sym_SLASH, - ACTIONS(7021), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7023), 1, - anon_sym_AMP_AMP, - ACTIONS(7025), 1, - anon_sym_PIPE, - ACTIONS(7027), 1, - anon_sym_CARET, - ACTIONS(7029), 1, - anon_sym_AMP, - ACTIONS(7237), 1, + ACTIONS(8282), 1, + anon_sym_COLON, + ACTIONS(8419), 1, anon_sym_RPAREN, - ACTIONS(7015), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7017), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7031), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7033), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(7035), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(7037), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [168819] = 3, - ACTIONS(4702), 1, - anon_sym_LF, - ACTIONS(7009), 1, - sym_comment, - ACTIONS(4704), 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, - [168846] = 11, + STATE(6373), 1, + sym_gnu_asm_output_operand_list, + STATE(2961), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(107), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(145), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [199497] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5709), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5733), 1, - anon_sym_DASH_GT, - ACTIONS(5735), 1, - anon_sym_requires, - ACTIONS(7077), 1, + ACTIONS(7726), 1, anon_sym_LBRACK, - STATE(4626), 1, - sym_trailing_return_type, - STATE(4728), 1, - sym_requires_clause, - ACTIONS(4135), 2, + ACTIONS(4880), 2, anon_sym_final, anon_sym_override, - STATE(4541), 2, + STATE(5300), 2, sym_virtual_specifier, aux_sym__function_declarator_seq_repeat2, - STATE(4625), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(7075), 7, + ACTIONS(7724), 11, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, + anon_sym_GT2, anon_sym_try, - [168889] = 3, - ACTIONS(7009), 1, - sym_comment, - ACTIONS(7079), 1, - anon_sym_LF, - ACTIONS(7081), 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, - [168916] = 3, - ACTIONS(7009), 1, - sym_comment, - ACTIONS(7089), 1, - anon_sym_LF, - ACTIONS(7091), 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, - [168943] = 4, - ACTIONS(7009), 1, - sym_comment, - ACTIONS(7101), 1, - anon_sym_LF, - ACTIONS(7201), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7103), 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, - [168972] = 12, - ACTIONS(7009), 1, - sym_comment, - ACTIONS(7101), 1, - anon_sym_LF, - ACTIONS(7103), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7205), 1, - anon_sym_AMP_AMP, - ACTIONS(7207), 1, - anon_sym_PIPE, - ACTIONS(7209), 1, - anon_sym_CARET, - ACTIONS(7211), 1, - anon_sym_AMP, - ACTIONS(7199), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7213), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7217), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7201), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7215), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [169017] = 12, - ACTIONS(7009), 1, - sym_comment, - ACTIONS(7203), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7205), 1, - anon_sym_AMP_AMP, - ACTIONS(7207), 1, - anon_sym_PIPE, - ACTIONS(7209), 1, - anon_sym_CARET, - ACTIONS(7211), 1, - anon_sym_AMP, - ACTIONS(7239), 1, - anon_sym_LF, - ACTIONS(7199), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7213), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7217), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7201), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7215), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [169062] = 3, - ACTIONS(7009), 1, - sym_comment, - ACTIONS(7085), 1, - anon_sym_LF, - ACTIONS(7087), 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, - [169089] = 5, - ACTIONS(7009), 1, + anon_sym_requires, + [199525] = 7, + ACTIONS(3), 1, sym_comment, - ACTIONS(7101), 1, - anon_sym_LF, - ACTIONS(7199), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7201), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7103), 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, - [169120] = 5, + ACTIONS(8282), 1, + anon_sym_COLON, + ACTIONS(8421), 1, + anon_sym_RPAREN, + STATE(6342), 1, + sym_gnu_asm_output_operand_list, + STATE(2961), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(107), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(145), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [199557] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7241), 1, - anon_sym_LPAREN2, - STATE(2988), 1, - sym_argument_list, - ACTIONS(4324), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(4322), 15, + ACTIONS(8425), 1, + anon_sym_LBRACK, + ACTIONS(8423), 15, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - [169151] = 6, - ACTIONS(7009), 1, - sym_comment, - ACTIONS(7101), 1, - anon_sym_LF, - ACTIONS(7199), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7217), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7201), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7103), 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, - [169184] = 8, - ACTIONS(7009), 1, - sym_comment, - ACTIONS(7101), 1, - anon_sym_LF, - ACTIONS(7199), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7213), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7217), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7201), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7215), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(7103), 5, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - [169221] = 7, - ACTIONS(7009), 1, - sym_comment, - ACTIONS(7101), 1, - anon_sym_LF, - ACTIONS(7199), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7217), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7201), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7215), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(7103), 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, - [169256] = 3, - ACTIONS(7009), 1, + anon_sym_try, + anon_sym_requires, + [199581] = 7, + ACTIONS(3), 1, sym_comment, - ACTIONS(7101), 1, - anon_sym_LF, - ACTIONS(7103), 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, - [169283] = 11, + ACTIONS(8282), 1, + anon_sym_COLON, + ACTIONS(8427), 1, + anon_sym_RPAREN, + STATE(6563), 1, + sym_gnu_asm_output_operand_list, + STATE(2961), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(107), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(145), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [199613] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5709), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5733), 1, - anon_sym_DASH_GT, - ACTIONS(5735), 1, - anon_sym_requires, - ACTIONS(7095), 1, + ACTIONS(8282), 1, + anon_sym_COLON, + ACTIONS(8429), 1, + anon_sym_RPAREN, + STATE(6375), 1, + sym_gnu_asm_output_operand_list, + STATE(2961), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(107), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(145), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [199645] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8431), 1, anon_sym_LBRACK, - STATE(4612), 1, - sym_trailing_return_type, - STATE(4674), 1, - sym_requires_clause, - ACTIONS(4135), 2, + ACTIONS(8433), 2, anon_sym_final, anon_sym_override, - STATE(4441), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(4545), 2, + STATE(5300), 2, sym_virtual_specifier, aux_sym__function_declarator_seq_repeat2, - ACTIONS(7093), 7, + ACTIONS(8410), 11, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, + anon_sym_GT2, anon_sym_try, - [169326] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(119), 1, - anon_sym_operator, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(1683), 1, - anon_sym_TILDE, - ACTIONS(1691), 1, - anon_sym_COLON_COLON, - ACTIONS(7244), 1, - sym_identifier, - ACTIONS(7246), 1, - anon_sym_template, - STATE(2186), 1, - sym_template_function, - STATE(2187), 1, - sym_destructor_name, - STATE(2188), 1, - sym_dependent_identifier, - STATE(2193), 1, - sym_qualified_identifier, - STATE(2200), 1, - sym_operator_name, - STATE(3134), 1, - sym_template_type, - STATE(3144), 1, - sym_dependent_type_identifier, - STATE(3209), 1, - sym_qualified_type_identifier, - STATE(4455), 1, - sym__scope_resolution, - STATE(5214), 1, - sym_operator_cast, - STATE(5219), 1, - sym_qualified_operator_cast_identifier, - STATE(6159), 1, - sym_decltype, - [169384] = 14, + anon_sym_requires, + [199673] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5665), 1, - anon_sym_noexcept, - ACTIONS(5667), 1, - anon_sym_throw, - ACTIONS(5709), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5952), 1, + ACTIONS(6544), 1, anon_sym_LBRACK, - ACTIONS(6478), 1, - anon_sym_DASH_GT, - ACTIONS(6480), 1, - anon_sym_requires, - STATE(4723), 1, - sym_requires_clause, - STATE(4968), 1, - sym_trailing_return_type, - ACTIONS(4135), 2, + ACTIONS(4880), 2, anon_sym_final, anon_sym_override, - ACTIONS(5950), 2, - anon_sym_LPAREN2, - anon_sym_COLON, - STATE(4538), 2, + STATE(5300), 2, sym_virtual_specifier, aux_sym__function_declarator_seq_repeat2, - STATE(4670), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(4672), 2, - sym_noexcept, - sym_throw_specifier, - [169432] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5864), 1, + ACTIONS(6542), 11, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(5872), 1, - anon_sym_LBRACK, - ACTIONS(6652), 1, - anon_sym_STAR, - ACTIONS(6654), 1, - anon_sym_AMP_AMP, - ACTIONS(6656), 1, - anon_sym_AMP, - STATE(3862), 1, - sym_parameter_list, - STATE(4690), 1, - sym__function_declarator_seq, - STATE(5026), 1, - sym__abstract_declarator, - ACTIONS(5550), 5, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_COLON, - anon_sym_final, - anon_sym_override, + anon_sym_GT2, + anon_sym_try, anon_sym_requires, - STATE(4686), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - [169474] = 19, + [199701] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(119), 1, - anon_sym_operator, - ACTIONS(1555), 1, + ACTIONS(1973), 1, anon_sym_decltype, - ACTIONS(1683), 1, + ACTIONS(8316), 1, anon_sym_TILDE, - ACTIONS(3095), 1, - anon_sym_COLON_COLON, - ACTIONS(7248), 1, + ACTIONS(8322), 1, + anon_sym_operator, + ACTIONS(8436), 1, sym_identifier, - ACTIONS(7250), 1, + ACTIONS(8438), 1, + anon_sym_COLON_COLON, + ACTIONS(8440), 1, anon_sym_template, - STATE(2186), 1, + STATE(3058), 1, + sym_operator_name, + STATE(3067), 1, sym_template_function, - STATE(2187), 1, + STATE(3068), 1, sym_destructor_name, - STATE(2188), 1, + STATE(3069), 1, sym_dependent_identifier, - STATE(2193), 1, + STATE(3070), 1, sym_qualified_identifier, - STATE(2200), 1, - sym_operator_name, - STATE(3134), 1, + STATE(3595), 1, sym_template_type, - STATE(3142), 1, - sym_qualified_type_identifier, - STATE(3144), 1, + STATE(3601), 1, sym_dependent_type_identifier, - STATE(4458), 1, + STATE(3602), 1, + sym_qualified_type_identifier, + STATE(5302), 1, sym__scope_resolution, - STATE(5214), 1, - sym_operator_cast, - STATE(5219), 1, - sym_qualified_operator_cast_identifier, - STATE(6159), 1, + STATE(7638), 1, sym_decltype, - [169532] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7254), 1, - anon_sym_LBRACK, - ACTIONS(7252), 17, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_noexcept, - anon_sym_throw, - anon_sym_requires, - [169558] = 19, + [199753] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1555), 1, + ACTIONS(1931), 1, + anon_sym_operator, + ACTIONS(1973), 1, anon_sym_decltype, - ACTIONS(7256), 1, - sym_identifier, - ACTIONS(7258), 1, + ACTIONS(2562), 1, anon_sym_TILDE, - ACTIONS(7260), 1, + ACTIONS(8442), 1, + sym_identifier, + ACTIONS(8444), 1, anon_sym_COLON_COLON, - ACTIONS(7262), 1, + ACTIONS(8446), 1, anon_sym_template, - ACTIONS(7264), 1, - anon_sym_operator, - STATE(2186), 1, + STATE(2850), 1, sym_template_function, - STATE(2187), 1, + STATE(2851), 1, sym_destructor_name, - STATE(2188), 1, + STATE(2852), 1, sym_dependent_identifier, - STATE(2193), 1, + STATE(2854), 1, sym_qualified_identifier, - STATE(2200), 1, + STATE(2859), 1, sym_operator_name, - STATE(3134), 1, + STATE(5303), 1, + sym__scope_resolution, + STATE(7638), 3, + sym_decltype, sym_template_type, - STATE(3142), 1, - sym_qualified_type_identifier, - STATE(3144), 1, sym_dependent_type_identifier, - STATE(4460), 1, + [199798] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(3663), 1, + anon_sym_COLON_COLON, + ACTIONS(8448), 1, + sym_identifier, + STATE(3657), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5779), 1, sym__scope_resolution, - STATE(5214), 1, - sym_operator_cast, - STATE(5219), 1, - sym_qualified_operator_cast_identifier, - STATE(6159), 1, + STATE(3709), 2, + sym_sized_type_specifier, + sym_qualified_type_identifier, + STATE(7638), 3, sym_decltype, - [169616] = 14, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(59), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + [199835] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(5665), 1, - anon_sym_noexcept, - ACTIONS(5667), 1, - anon_sym_throw, - ACTIONS(5675), 1, - anon_sym_LBRACK, - ACTIONS(5709), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6478), 1, - anon_sym_DASH_GT, - ACTIONS(6480), 1, - anon_sym_requires, - STATE(4716), 1, - sym_requires_clause, - STATE(4945), 1, - sym_trailing_return_type, - ACTIONS(4135), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(5673), 2, + ACTIONS(4572), 1, anon_sym_LPAREN2, - anon_sym_COLON, - STATE(4578), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat2, - STATE(4660), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(4662), 2, - sym_noexcept, - sym_throw_specifier, - [169664] = 14, + ACTIONS(4574), 1, + anon_sym_STAR, + ACTIONS(4576), 1, + anon_sym_AMP_AMP, + ACTIONS(4578), 1, + anon_sym_AMP, + ACTIONS(6919), 1, + anon_sym_LBRACK, + ACTIONS(8240), 1, + anon_sym_LBRACE, + STATE(2182), 1, + sym_compound_statement, + STATE(3900), 1, + sym_parameter_list, + STATE(5457), 1, + sym__function_declarator_seq, + STATE(5958), 1, + sym__abstract_declarator, + STATE(6168), 1, + sym_abstract_function_declarator, + STATE(5452), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [199878] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5665), 1, - anon_sym_noexcept, - ACTIONS(5667), 1, - anon_sym_throw, - ACTIONS(5709), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6478), 1, - anon_sym_DASH_GT, - ACTIONS(6480), 1, + ACTIONS(6474), 1, anon_sym_requires, - ACTIONS(6853), 1, + ACTIONS(7726), 1, anon_sym_LBRACK, - STATE(4659), 1, + STATE(5358), 1, sym_requires_clause, - STATE(4969), 1, - sym_trailing_return_type, - ACTIONS(4135), 2, + ACTIONS(4880), 2, anon_sym_final, anon_sym_override, - ACTIONS(6851), 2, - anon_sym_LPAREN2, - anon_sym_COLON, - STATE(4533), 2, + STATE(5288), 2, sym_virtual_specifier, aux_sym__function_declarator_seq_repeat2, - STATE(4713), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(4734), 2, - sym_noexcept, - sym_throw_specifier, - [169712] = 11, + ACTIONS(7724), 8, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [199909] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1521), 1, - anon_sym_operator, - ACTIONS(6291), 1, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(7478), 1, + anon_sym_COLON_COLON, + ACTIONS(8450), 1, sym_identifier, - ACTIONS(6293), 1, - anon_sym_LPAREN2, - ACTIONS(6295), 1, - anon_sym_STAR, - ACTIONS(6297), 1, - anon_sym_AMP_AMP, - ACTIONS(6299), 1, - anon_sym_AMP, - STATE(4865), 1, - sym__field_declarator, - STATE(6059), 1, - sym_ms_based_modifier, - STATE(4964), 8, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - sym_reference_field_declarator, - sym_template_method, - sym_operator_name, - [169753] = 15, + STATE(2231), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5770), 1, + sym__scope_resolution, + STATE(2804), 2, + sym_sized_type_specifier, + sym_qualified_type_identifier, + STATE(7638), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(7480), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + [199946] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(3908), 1, + ACTIONS(4572), 1, anon_sym_LPAREN2, - ACTIONS(3910), 1, + ACTIONS(4574), 1, anon_sym_STAR, - ACTIONS(3912), 1, + ACTIONS(4576), 1, anon_sym_AMP_AMP, - ACTIONS(3914), 1, + ACTIONS(4578), 1, anon_sym_AMP, - ACTIONS(6514), 1, + ACTIONS(6919), 1, anon_sym_LBRACK, - ACTIONS(7266), 1, - anon_sym_LT, - ACTIONS(7268), 1, + ACTIONS(8250), 1, anon_sym_LBRACE, - STATE(2904), 1, + STATE(3605), 1, sym_compound_statement, - STATE(3482), 1, + STATE(3900), 1, sym_parameter_list, - STATE(4487), 1, - sym_template_parameter_list, - STATE(4765), 1, + STATE(5457), 1, sym__function_declarator_seq, - STATE(5197), 1, + STATE(5958), 1, sym__abstract_declarator, - STATE(5239), 1, + STATE(5967), 1, sym_abstract_function_declarator, - STATE(4764), 4, + STATE(5452), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - [169802] = 15, + [199989] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(3908), 1, + ACTIONS(49), 1, + anon_sym_LBRACE, + ACTIONS(4572), 1, anon_sym_LPAREN2, - ACTIONS(3910), 1, + ACTIONS(4574), 1, anon_sym_STAR, - ACTIONS(3912), 1, + ACTIONS(4576), 1, anon_sym_AMP_AMP, - ACTIONS(3914), 1, + ACTIONS(4578), 1, anon_sym_AMP, - ACTIONS(6514), 1, + ACTIONS(6919), 1, anon_sym_LBRACK, - ACTIONS(7266), 1, - anon_sym_LT, - ACTIONS(7270), 1, - anon_sym_LBRACE, - STATE(3039), 1, + STATE(2182), 1, sym_compound_statement, - STATE(3482), 1, + STATE(3900), 1, sym_parameter_list, - STATE(4476), 1, - sym_template_parameter_list, - STATE(4765), 1, + STATE(5457), 1, sym__function_declarator_seq, - STATE(5197), 1, + STATE(5958), 1, sym__abstract_declarator, - STATE(5304), 1, + STATE(6018), 1, sym_abstract_function_declarator, - STATE(4764), 4, + STATE(5452), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - [169851] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6313), 1, - anon_sym_LPAREN2, - STATE(2824), 1, - sym_argument_list, - ACTIONS(4324), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(4322), 13, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - [169880] = 11, + [200032] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4214), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5675), 1, - anon_sym_LBRACK, - ACTIONS(5974), 1, - anon_sym_DASH_GT, - ACTIONS(5976), 1, + ACTIONS(6474), 1, anon_sym_requires, - STATE(4789), 1, + ACTIONS(8021), 1, + anon_sym_LBRACK, + STATE(5388), 1, sym_requires_clause, - STATE(4825), 1, - sym_trailing_return_type, - ACTIONS(5898), 2, + ACTIONS(4880), 2, anon_sym_final, anon_sym_override, - STATE(4470), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(4622), 2, + STATE(5223), 2, sym_virtual_specifier, aux_sym__function_declarator_seq_repeat2, - ACTIONS(5673), 5, + ACTIONS(8019), 8, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - [169921] = 11, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [200063] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(4214), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5675), 1, - anon_sym_LBRACK, - ACTIONS(5896), 1, - anon_sym_DASH_GT, - ACTIONS(5900), 1, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(5102), 1, + anon_sym_COLON_COLON, + ACTIONS(8448), 1, + sym_identifier, + STATE(4464), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5718), 1, + sym__scope_resolution, + STATE(3959), 2, + sym_sized_type_specifier, + sym_qualified_type_identifier, + STATE(7638), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(6314), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + [200100] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(6266), 1, + anon_sym_COLON_COLON, + ACTIONS(8452), 1, + sym_identifier, + STATE(4546), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5766), 1, + sym__scope_resolution, + STATE(4739), 2, + sym_sized_type_specifier, + sym_qualified_type_identifier, + STATE(7638), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(6268), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + [200137] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(7456), 1, + anon_sym_COLON_COLON, + ACTIONS(8454), 1, + sym_identifier, + STATE(2415), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5797), 1, + sym__scope_resolution, + STATE(3200), 2, + sym_sized_type_specifier, + sym_qualified_type_identifier, + STATE(7638), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(7458), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + [200174] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6474), 1, anon_sym_requires, - STATE(4789), 1, + ACTIONS(6544), 1, + anon_sym_LBRACK, + STATE(5360), 1, sym_requires_clause, - STATE(4856), 1, - sym_trailing_return_type, - ACTIONS(5898), 2, + ACTIONS(4880), 2, anon_sym_final, anon_sym_override, - STATE(4085), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(4622), 2, + STATE(5295), 2, sym_virtual_specifier, aux_sym__function_declarator_seq_repeat2, - ACTIONS(5673), 5, + ACTIONS(6542), 8, + anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, + anon_sym_COLON, anon_sym_try, - [169962] = 11, + [200205] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(4214), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5675), 1, - anon_sym_LBRACK, - ACTIONS(5896), 1, - anon_sym_DASH_GT, - ACTIONS(5900), 1, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(7514), 1, + anon_sym_COLON_COLON, + ACTIONS(8456), 1, + sym_identifier, + STATE(2230), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5735), 1, + sym__scope_resolution, + STATE(2755), 2, + sym_sized_type_specifier, + sym_qualified_type_identifier, + STATE(7638), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(1913), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + [200242] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1931), 1, + anon_sym_operator, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(2562), 1, + anon_sym_TILDE, + ACTIONS(5012), 1, + anon_sym_COLON_COLON, + ACTIONS(8458), 1, + sym_identifier, + ACTIONS(8460), 1, + anon_sym_template, + STATE(5316), 1, + sym__scope_resolution, + STATE(5601), 1, + sym_operator_name, + STATE(5632), 1, + sym_destructor_name, + STATE(5633), 1, + sym_dependent_identifier, + STATE(5634), 1, + sym_qualified_identifier, + STATE(5636), 1, + sym_template_function, + STATE(7638), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + [200287] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6474), 1, anon_sym_requires, - STATE(4789), 1, + ACTIONS(8278), 1, + anon_sym_LBRACK, + STATE(5387), 1, sym_requires_clause, - STATE(4856), 1, - sym_trailing_return_type, - ACTIONS(5898), 2, + ACTIONS(4880), 2, anon_sym_final, anon_sym_override, - STATE(4482), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(4622), 2, + STATE(5269), 2, sym_virtual_specifier, aux_sym__function_declarator_seq_repeat2, - ACTIONS(5673), 5, + ACTIONS(8276), 8, + anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, + anon_sym_COLON, anon_sym_try, - [170003] = 11, + [200318] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(6312), 1, + anon_sym_COLON_COLON, + ACTIONS(8448), 1, + sym_identifier, + STATE(4464), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5765), 1, + sym__scope_resolution, + STATE(3959), 2, + sym_sized_type_specifier, + sym_qualified_type_identifier, + STATE(7638), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(6314), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + [200355] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(4214), 1, + ACTIONS(1899), 1, + anon_sym_LBRACE, + ACTIONS(6466), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5952), 1, + ACTIONS(8204), 1, + anon_sym_COMMA, + ACTIONS(8206), 1, + anon_sym_LPAREN2, + ACTIONS(8212), 1, anon_sym_LBRACK, - ACTIONS(5974), 1, - anon_sym_DASH_GT, - ACTIONS(5976), 1, - anon_sym_requires, - STATE(4813), 1, - sym_requires_clause, - STATE(4852), 1, - sym_trailing_return_type, - ACTIONS(5898), 2, - anon_sym_final, - anon_sym_override, - STATE(4085), 2, + ACTIONS(8214), 1, + anon_sym_EQ, + ACTIONS(8462), 1, + anon_sym_SEMI, + ACTIONS(8464), 1, + anon_sym_COLON, + STATE(3839), 1, + sym_parameter_list, + STATE(5647), 1, + sym__function_declarator_seq, + STATE(6270), 1, + aux_sym_declaration_repeat1, + STATE(5695), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(4641), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat2, - ACTIONS(5950), 5, + STATE(6802), 2, + sym_argument_list, + sym_initializer_list, + [200400] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7977), 1, + anon_sym_LPAREN2, + ACTIONS(8468), 1, + anon_sym_LBRACK, + STATE(3793), 1, + sym_parameter_list, + STATE(5450), 1, + sym__function_declarator_seq, + ACTIONS(8466), 11, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - [170044] = 11, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [200429] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4214), 1, + ACTIONS(7977), 1, + anon_sym_LPAREN2, + ACTIONS(8468), 1, + anon_sym_LBRACK, + STATE(3793), 1, + sym_parameter_list, + STATE(5450), 1, + sym__function_declarator_seq, + ACTIONS(8470), 11, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(5974), 1, - anon_sym_DASH_GT, - ACTIONS(5976), 1, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, anon_sym_requires, - ACTIONS(7095), 1, + [200458] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7977), 1, + anon_sym_LPAREN2, + ACTIONS(8468), 1, anon_sym_LBRACK, - STATE(4796), 1, - sym_requires_clause, - STATE(4864), 1, - sym_trailing_return_type, - ACTIONS(5898), 2, + STATE(3793), 1, + sym_parameter_list, + STATE(5450), 1, + sym__function_declarator_seq, + ACTIONS(8472), 11, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_final, anon_sym_override, - STATE(4085), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(4608), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat2, - ACTIONS(7093), 5, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [200487] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7977), 1, + anon_sym_LPAREN2, + ACTIONS(8468), 1, + anon_sym_LBRACK, + STATE(3793), 1, + sym_parameter_list, + STATE(5450), 1, + sym__function_declarator_seq, + ACTIONS(8474), 11, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - [170085] = 16, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [200516] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + ACTIONS(1899), 1, + anon_sym_LBRACE, + ACTIONS(6466), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7272), 1, + ACTIONS(8204), 1, anon_sym_COMMA, - ACTIONS(7274), 1, + ACTIONS(8206), 1, anon_sym_LPAREN2, - ACTIONS(7276), 1, - anon_sym_SEMI, - ACTIONS(7278), 1, - anon_sym_LBRACE, - ACTIONS(7280), 1, + ACTIONS(8212), 1, anon_sym_LBRACK, - ACTIONS(7282), 1, + ACTIONS(8214), 1, anon_sym_EQ, - ACTIONS(7284), 1, - anon_sym_try, - STATE(992), 1, - sym_try_statement, - STATE(993), 1, - sym_compound_statement, - STATE(3300), 1, + ACTIONS(8462), 1, + anon_sym_SEMI, + ACTIONS(8476), 1, + anon_sym_COLON, + STATE(3839), 1, sym_parameter_list, - STATE(4901), 1, + STATE(5647), 1, sym__function_declarator_seq, - STATE(5497), 1, + STATE(6270), 1, aux_sym_declaration_repeat1, - STATE(4874), 2, + STATE(5695), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5834), 2, + STATE(6802), 2, sym_argument_list, sym_initializer_list, - [170136] = 11, + [200561] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4214), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5896), 1, - anon_sym_DASH_GT, - ACTIONS(5900), 1, - anon_sym_requires, - ACTIONS(5952), 1, + ACTIONS(8480), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + ACTIONS(8478), 13, + anon_sym___based, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + [200584] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7977), 1, + anon_sym_LPAREN2, + ACTIONS(8468), 1, anon_sym_LBRACK, - STATE(4813), 1, - sym_requires_clause, - STATE(4871), 1, - sym_trailing_return_type, - ACTIONS(5898), 2, + STATE(3793), 1, + sym_parameter_list, + STATE(5450), 1, + sym__function_declarator_seq, + ACTIONS(8482), 11, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_final, anon_sym_override, - STATE(4507), 2, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [200613] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1899), 1, + anon_sym_LBRACE, + ACTIONS(6466), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8204), 1, + anon_sym_COMMA, + ACTIONS(8206), 1, + anon_sym_LPAREN2, + ACTIONS(8212), 1, + anon_sym_LBRACK, + ACTIONS(8214), 1, + anon_sym_EQ, + ACTIONS(8462), 1, + anon_sym_SEMI, + ACTIONS(8484), 1, + anon_sym_COLON, + STATE(3839), 1, + sym_parameter_list, + STATE(5647), 1, + sym__function_declarator_seq, + STATE(6270), 1, + aux_sym_declaration_repeat1, + STATE(5695), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(4641), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat2, - ACTIONS(5950), 5, + STATE(6802), 2, + sym_argument_list, + sym_initializer_list, + [200658] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1899), 1, + anon_sym_LBRACE, + ACTIONS(6466), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8204), 1, + anon_sym_COMMA, + ACTIONS(8206), 1, anon_sym_LPAREN2, + ACTIONS(8212), 1, + anon_sym_LBRACK, + ACTIONS(8214), 1, + anon_sym_EQ, + ACTIONS(8462), 1, anon_sym_SEMI, + ACTIONS(8486), 1, + anon_sym_COLON, + STATE(3839), 1, + sym_parameter_list, + STATE(5647), 1, + sym__function_declarator_seq, + STATE(6270), 1, + aux_sym_declaration_repeat1, + STATE(5695), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6802), 2, + sym_argument_list, + sym_initializer_list, + [200703] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1899), 1, anon_sym_LBRACE, + ACTIONS(6466), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8204), 1, + anon_sym_COMMA, + ACTIONS(8206), 1, + anon_sym_LPAREN2, + ACTIONS(8212), 1, + anon_sym_LBRACK, + ACTIONS(8214), 1, anon_sym_EQ, - anon_sym_try, - [170177] = 11, + ACTIONS(8462), 1, + anon_sym_SEMI, + ACTIONS(8488), 1, + anon_sym_COLON, + STATE(3839), 1, + sym_parameter_list, + STATE(5647), 1, + sym__function_declarator_seq, + STATE(6270), 1, + aux_sym_declaration_repeat1, + STATE(5695), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6802), 2, + sym_argument_list, + sym_initializer_list, + [200748] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1521), 1, + ACTIONS(1931), 1, anon_sym_operator, - ACTIONS(6293), 1, - anon_sym_LPAREN2, - ACTIONS(6418), 1, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(2562), 1, + anon_sym_TILDE, + ACTIONS(6012), 1, + anon_sym_COLON_COLON, + ACTIONS(8490), 1, sym_identifier, - ACTIONS(6420), 1, - anon_sym_STAR, - ACTIONS(6422), 1, - anon_sym_AMP_AMP, - ACTIONS(6424), 1, - anon_sym_AMP, - STATE(5061), 1, - sym__field_declarator, - STATE(6046), 1, - sym_ms_based_modifier, - STATE(4964), 8, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - sym_reference_field_declarator, - sym_template_method, + ACTIONS(8492), 1, + anon_sym_template, + STATE(2850), 1, + sym_template_function, + STATE(2851), 1, + sym_destructor_name, + STATE(2852), 1, + sym_dependent_identifier, + STATE(2854), 1, + sym_qualified_identifier, + STATE(2859), 1, sym_operator_name, - [170218] = 15, + STATE(5330), 1, + sym__scope_resolution, + STATE(7638), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + [200793] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(3908), 1, + ACTIONS(4572), 1, anon_sym_LPAREN2, - ACTIONS(3910), 1, + ACTIONS(4574), 1, anon_sym_STAR, - ACTIONS(3912), 1, + ACTIONS(4576), 1, anon_sym_AMP_AMP, - ACTIONS(3914), 1, + ACTIONS(4578), 1, anon_sym_AMP, - ACTIONS(6514), 1, + ACTIONS(6919), 1, anon_sym_LBRACK, - ACTIONS(7286), 1, + ACTIONS(8200), 1, anon_sym_LBRACE, - ACTIONS(7288), 1, - anon_sym_requires, - STATE(3482), 1, + STATE(3900), 1, sym_parameter_list, - STATE(4527), 1, + STATE(4053), 1, sym_compound_statement, - STATE(4616), 1, - sym_requires_clause, - STATE(4765), 1, + STATE(5457), 1, sym__function_declarator_seq, - STATE(5197), 1, + STATE(5958), 1, sym__abstract_declarator, - STATE(5283), 1, + STATE(6163), 1, sym_abstract_function_declarator, - STATE(4764), 4, + STATE(5452), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - [170267] = 15, + [200836] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(3908), 1, + ACTIONS(4572), 1, anon_sym_LPAREN2, - ACTIONS(3910), 1, + ACTIONS(4574), 1, anon_sym_STAR, - ACTIONS(3912), 1, + ACTIONS(4576), 1, anon_sym_AMP_AMP, - ACTIONS(3914), 1, + ACTIONS(4578), 1, anon_sym_AMP, - ACTIONS(6514), 1, + ACTIONS(6919), 1, anon_sym_LBRACK, - ACTIONS(7270), 1, + ACTIONS(8244), 1, anon_sym_LBRACE, - ACTIONS(7288), 1, - anon_sym_requires, - STATE(3065), 1, + STATE(3804), 1, sym_compound_statement, - STATE(3482), 1, + STATE(3900), 1, sym_parameter_list, - STATE(4597), 1, - sym_requires_clause, - STATE(4765), 1, + STATE(5457), 1, sym__function_declarator_seq, - STATE(5197), 1, + STATE(5958), 1, sym__abstract_declarator, - STATE(5231), 1, + STATE(6103), 1, sym_abstract_function_declarator, - STATE(4764), 4, + STATE(5452), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - [170316] = 15, + [200879] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3908), 1, + ACTIONS(7977), 1, anon_sym_LPAREN2, - ACTIONS(3910), 1, - anon_sym_STAR, - ACTIONS(3912), 1, - anon_sym_AMP_AMP, - ACTIONS(3914), 1, - anon_sym_AMP, - ACTIONS(6514), 1, + ACTIONS(8468), 1, anon_sym_LBRACK, - ACTIONS(7266), 1, - anon_sym_LT, - ACTIONS(7286), 1, - anon_sym_LBRACE, - STATE(3482), 1, + STATE(3793), 1, sym_parameter_list, - STATE(4475), 1, - sym_template_parameter_list, - STATE(4557), 1, - sym_compound_statement, - STATE(4765), 1, + STATE(5450), 1, sym__function_declarator_seq, - STATE(5197), 1, - sym__abstract_declarator, - STATE(5293), 1, - sym_abstract_function_declarator, - STATE(4764), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - [170365] = 11, + ACTIONS(8494), 11, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [200908] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1521), 1, - anon_sym_operator, - ACTIONS(6291), 1, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(7581), 1, + anon_sym_COLON_COLON, + ACTIONS(8496), 1, sym_identifier, - ACTIONS(6293), 1, + STATE(2504), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5726), 1, + sym__scope_resolution, + STATE(3230), 2, + sym_sized_type_specifier, + sym_qualified_type_identifier, + STATE(7638), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(7583), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + [200945] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7977), 1, anon_sym_LPAREN2, - ACTIONS(6295), 1, - anon_sym_STAR, - ACTIONS(6297), 1, - anon_sym_AMP_AMP, - ACTIONS(6299), 1, - anon_sym_AMP, - STATE(4801), 1, - sym__field_declarator, - STATE(6059), 1, - sym_ms_based_modifier, - STATE(4964), 8, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - sym_reference_field_declarator, - sym_template_method, - sym_operator_name, - [170406] = 15, + ACTIONS(8468), 1, + anon_sym_LBRACK, + STATE(3793), 1, + sym_parameter_list, + STATE(5450), 1, + sym__function_declarator_seq, + ACTIONS(8498), 11, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [200974] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(4580), 1, + anon_sym_COLON_COLON, + ACTIONS(8448), 1, + sym_identifier, + STATE(3657), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5733), 1, + sym__scope_resolution, + STATE(3709), 2, + sym_sized_type_specifier, + sym_qualified_type_identifier, + STATE(7638), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(59), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + [201011] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(3908), 1, + ACTIONS(4572), 1, anon_sym_LPAREN2, - ACTIONS(3910), 1, + ACTIONS(4574), 1, anon_sym_STAR, - ACTIONS(3912), 1, + ACTIONS(4576), 1, anon_sym_AMP_AMP, - ACTIONS(3914), 1, + ACTIONS(4578), 1, anon_sym_AMP, - ACTIONS(6514), 1, + ACTIONS(6919), 1, anon_sym_LBRACK, - ACTIONS(7266), 1, - anon_sym_LT, - ACTIONS(7290), 1, + ACTIONS(8246), 1, anon_sym_LBRACE, - STATE(2546), 1, + STATE(3316), 1, sym_compound_statement, - STATE(3482), 1, + STATE(3900), 1, sym_parameter_list, - STATE(4515), 1, - sym_template_parameter_list, - STATE(4765), 1, + STATE(5457), 1, sym__function_declarator_seq, - STATE(5178), 1, - sym_abstract_function_declarator, - STATE(5197), 1, + STATE(5958), 1, sym__abstract_declarator, - STATE(4764), 4, + STATE(6060), 1, + sym_abstract_function_declarator, + STATE(5452), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - [170455] = 11, + [201054] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(4214), 1, + ACTIONS(1899), 1, + anon_sym_LBRACE, + ACTIONS(6466), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5952), 1, + ACTIONS(8204), 1, + anon_sym_COMMA, + ACTIONS(8206), 1, + anon_sym_LPAREN2, + ACTIONS(8212), 1, anon_sym_LBRACK, - ACTIONS(5988), 1, - anon_sym_DASH_GT, - ACTIONS(5990), 1, - anon_sym_requires, - STATE(4723), 1, - sym_requires_clause, - STATE(4810), 1, - sym_trailing_return_type, - ACTIONS(4135), 2, - anon_sym_final, - anon_sym_override, - STATE(4085), 2, + ACTIONS(8214), 1, + anon_sym_EQ, + ACTIONS(8462), 1, + anon_sym_SEMI, + ACTIONS(8500), 1, + anon_sym_COLON, + STATE(3839), 1, + sym_parameter_list, + STATE(5647), 1, + sym__function_declarator_seq, + STATE(6270), 1, + aux_sym_declaration_repeat1, + STATE(5695), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(4538), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat2, - ACTIONS(5950), 5, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_try, - [170496] = 11, + STATE(6802), 2, + sym_argument_list, + sym_initializer_list, + [201099] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(4214), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5974), 1, - anon_sym_DASH_GT, - ACTIONS(5976), 1, - anon_sym_requires, - ACTIONS(7095), 1, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(7534), 1, + anon_sym_COLON_COLON, + ACTIONS(8502), 1, + sym_identifier, + STATE(2267), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5713), 1, + sym__scope_resolution, + STATE(2911), 2, + sym_sized_type_specifier, + sym_qualified_type_identifier, + STATE(7638), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(7536), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + [201136] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(6288), 1, + anon_sym_COLON_COLON, + ACTIONS(8452), 1, + sym_identifier, + STATE(2483), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5712), 1, + sym__scope_resolution, + STATE(3107), 2, + sym_sized_type_specifier, + sym_qualified_type_identifier, + STATE(7638), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(2628), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + [201173] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6409), 1, anon_sym_LBRACK, - STATE(4796), 1, + ACTIONS(6474), 1, + anon_sym_requires, + STATE(5422), 1, sym_requires_clause, - STATE(4864), 1, - sym_trailing_return_type, - ACTIONS(5898), 2, + ACTIONS(4880), 2, anon_sym_final, anon_sym_override, - STATE(4494), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(4608), 2, + STATE(5301), 2, sym_virtual_specifier, aux_sym__function_declarator_seq_repeat2, - ACTIONS(7093), 5, + ACTIONS(6407), 8, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - [170537] = 11, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [201204] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(4214), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5896), 1, - anon_sym_DASH_GT, - ACTIONS(5900), 1, - anon_sym_requires, - ACTIONS(5952), 1, - anon_sym_LBRACK, - STATE(4813), 1, - sym_requires_clause, - STATE(4871), 1, - sym_trailing_return_type, - ACTIONS(5898), 2, - anon_sym_final, - anon_sym_override, - STATE(4085), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(4641), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat2, - ACTIONS(5950), 5, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(4580), 1, + anon_sym_COLON_COLON, + ACTIONS(8448), 1, + sym_identifier, + STATE(3751), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5733), 1, + sym__scope_resolution, + STATE(3709), 2, + sym_sized_type_specifier, + sym_qualified_type_identifier, + STATE(7638), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(3665), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + [201241] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4572), 1, anon_sym_LPAREN2, - anon_sym_SEMI, + ACTIONS(4574), 1, + anon_sym_STAR, + ACTIONS(4576), 1, + anon_sym_AMP_AMP, + ACTIONS(4578), 1, + anon_sym_AMP, + ACTIONS(6919), 1, + anon_sym_LBRACK, + ACTIONS(8222), 1, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [170578] = 11, + STATE(3900), 1, + sym_parameter_list, + STATE(5250), 1, + sym_compound_statement, + STATE(5457), 1, + sym__function_declarator_seq, + STATE(5958), 1, + sym__abstract_declarator, + STATE(6095), 1, + sym_abstract_function_declarator, + STATE(5452), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [201284] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4214), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5896), 1, - anon_sym_DASH_GT, - ACTIONS(5900), 1, + ACTIONS(6474), 1, anon_sym_requires, - ACTIONS(7077), 1, + ACTIONS(8033), 1, anon_sym_LBRACK, - STATE(4751), 1, + STATE(5419), 1, sym_requires_clause, - STATE(4846), 1, - sym_trailing_return_type, - ACTIONS(5898), 2, + ACTIONS(4880), 2, anon_sym_final, anon_sym_override, - STATE(4085), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(4609), 2, + STATE(5258), 2, sym_virtual_specifier, aux_sym__function_declarator_seq_repeat2, - ACTIONS(7075), 5, + ACTIONS(8031), 8, + anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, + anon_sym_COLON, anon_sym_try, - [170619] = 15, + [201315] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(7567), 1, + anon_sym_COLON_COLON, + ACTIONS(8504), 1, + sym_identifier, + STATE(2483), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5737), 1, + sym__scope_resolution, + STATE(3107), 2, + sym_sized_type_specifier, + sym_qualified_type_identifier, + STATE(7638), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(2628), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + [201352] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(3908), 1, + ACTIONS(4572), 1, anon_sym_LPAREN2, - ACTIONS(3910), 1, + ACTIONS(4574), 1, anon_sym_STAR, - ACTIONS(3912), 1, + ACTIONS(4576), 1, anon_sym_AMP_AMP, - ACTIONS(3914), 1, + ACTIONS(4578), 1, anon_sym_AMP, - ACTIONS(6514), 1, + ACTIONS(6919), 1, anon_sym_LBRACK, - ACTIONS(7266), 1, - anon_sym_LT, - ACTIONS(7292), 1, + ACTIONS(8220), 1, anon_sym_LBRACE, - STATE(2745), 1, + STATE(3436), 1, sym_compound_statement, - STATE(3482), 1, + STATE(3900), 1, sym_parameter_list, - STATE(4518), 1, - sym_template_parameter_list, - STATE(4765), 1, + STATE(5457), 1, sym__function_declarator_seq, - STATE(5197), 1, + STATE(5958), 1, sym__abstract_declarator, - STATE(5323), 1, + STATE(6033), 1, + sym_abstract_function_declarator, + STATE(5452), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [201395] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4572), 1, + anon_sym_LPAREN2, + ACTIONS(4574), 1, + anon_sym_STAR, + ACTIONS(4576), 1, + anon_sym_AMP_AMP, + ACTIONS(4578), 1, + anon_sym_AMP, + ACTIONS(6919), 1, + anon_sym_LBRACK, + ACTIONS(8248), 1, + anon_sym_LBRACE, + STATE(3015), 1, + sym_compound_statement, + STATE(3900), 1, + sym_parameter_list, + STATE(5457), 1, + sym__function_declarator_seq, + STATE(5958), 1, + sym__abstract_declarator, + STATE(6076), 1, sym_abstract_function_declarator, - STATE(4764), 4, + STATE(5452), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - [170668] = 15, + [201438] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1899), 1, + anon_sym_LBRACE, + ACTIONS(6466), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8204), 1, + anon_sym_COMMA, + ACTIONS(8206), 1, + anon_sym_LPAREN2, + ACTIONS(8212), 1, + anon_sym_LBRACK, + ACTIONS(8214), 1, + anon_sym_EQ, + ACTIONS(8462), 1, + anon_sym_SEMI, + ACTIONS(8506), 1, + anon_sym_COLON, + STATE(3839), 1, + sym_parameter_list, + STATE(5647), 1, + sym__function_declarator_seq, + STATE(6270), 1, + aux_sym_declaration_repeat1, + STATE(5695), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6802), 2, + sym_argument_list, + sym_initializer_list, + [201483] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7657), 1, + anon_sym_LBRACK, + ACTIONS(8508), 1, + anon_sym_LBRACK_LBRACK, + STATE(5349), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(7659), 11, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [201510] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(3908), 1, - anon_sym_LPAREN2, - ACTIONS(3910), 1, - anon_sym_STAR, - ACTIONS(3912), 1, - anon_sym_AMP_AMP, - ACTIONS(3914), 1, - anon_sym_AMP, - ACTIONS(6514), 1, - anon_sym_LBRACK, - ACTIONS(7266), 1, - anon_sym_LT, - STATE(1873), 1, - sym_compound_statement, - STATE(3482), 1, - sym_parameter_list, - STATE(4497), 1, - sym_template_parameter_list, - STATE(4765), 1, - sym__function_declarator_seq, - STATE(5197), 1, - sym__abstract_declarator, - STATE(5250), 1, - sym_abstract_function_declarator, - STATE(4764), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - [170717] = 16, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(5102), 1, + anon_sym_COLON_COLON, + ACTIONS(8448), 1, + sym_identifier, + STATE(3981), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5718), 1, + sym__scope_resolution, + STATE(3959), 2, + sym_sized_type_specifier, + sym_qualified_type_identifier, + STATE(7638), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(2574), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + [201547] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(119), 1, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(3663), 1, + anon_sym_COLON_COLON, + ACTIONS(8448), 1, + sym_identifier, + STATE(3751), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5779), 1, + sym__scope_resolution, + STATE(3709), 2, + sym_sized_type_specifier, + sym_qualified_type_identifier, + STATE(7638), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(3665), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + [201584] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1931), 1, anon_sym_operator, - ACTIONS(1555), 1, + ACTIONS(1973), 1, anon_sym_decltype, - ACTIONS(1683), 1, + ACTIONS(2562), 1, anon_sym_TILDE, - ACTIONS(4212), 1, + ACTIONS(5072), 1, anon_sym_COLON_COLON, - ACTIONS(7294), 1, + ACTIONS(8264), 1, sym_identifier, - ACTIONS(7296), 1, + ACTIONS(8266), 1, anon_sym_template, - STATE(2186), 1, + STATE(2850), 1, sym_template_function, - STATE(2187), 1, + STATE(2851), 1, sym_destructor_name, - STATE(2188), 1, + STATE(2852), 1, sym_dependent_identifier, - STATE(2193), 1, + STATE(2854), 1, sym_qualified_identifier, - STATE(2200), 1, + STATE(2859), 1, sym_operator_name, - STATE(4486), 1, + STATE(5352), 1, sym__scope_resolution, - STATE(5214), 1, - sym_operator_cast, - STATE(5219), 1, - sym_qualified_operator_cast_identifier, - STATE(6159), 3, + STATE(7638), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - [170768] = 15, + [201629] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(3908), 1, + ACTIONS(4572), 1, anon_sym_LPAREN2, - ACTIONS(3910), 1, + ACTIONS(4574), 1, anon_sym_STAR, - ACTIONS(3912), 1, + ACTIONS(4576), 1, anon_sym_AMP_AMP, - ACTIONS(3914), 1, + ACTIONS(4578), 1, anon_sym_AMP, - ACTIONS(6514), 1, + ACTIONS(6919), 1, anon_sym_LBRACK, - ACTIONS(7268), 1, + ACTIONS(8242), 1, anon_sym_LBRACE, - ACTIONS(7288), 1, - anon_sym_requires, - STATE(2930), 1, - sym_compound_statement, - STATE(3482), 1, + STATE(3900), 1, sym_parameter_list, - STATE(4618), 1, - sym_requires_clause, - STATE(4765), 1, + STATE(5457), 1, sym__function_declarator_seq, - STATE(5197), 1, + STATE(5529), 1, + sym_compound_statement, + STATE(5958), 1, sym__abstract_declarator, - STATE(5284), 1, + STATE(5984), 1, sym_abstract_function_declarator, - STATE(4764), 4, + STATE(5452), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - [170817] = 16, + [201672] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(6225), 1, + anon_sym_COLON_COLON, + ACTIONS(8452), 1, + sym_identifier, + STATE(2230), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5741), 1, + sym__scope_resolution, + STATE(2755), 2, + sym_sized_type_specifier, + sym_qualified_type_identifier, + STATE(7638), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(1913), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + [201709] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(41), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7115), 1, + ACTIONS(1899), 1, anon_sym_LBRACE, - ACTIONS(7121), 1, - anon_sym_try, - ACTIONS(7272), 1, + ACTIONS(8204), 1, anon_sym_COMMA, - ACTIONS(7274), 1, + ACTIONS(8206), 1, anon_sym_LPAREN2, - ACTIONS(7280), 1, + ACTIONS(8212), 1, anon_sym_LBRACK, - ACTIONS(7282), 1, + ACTIONS(8214), 1, anon_sym_EQ, - ACTIONS(7298), 1, + ACTIONS(8462), 1, anon_sym_SEMI, - STATE(2149), 1, - sym_compound_statement, - STATE(2150), 1, - sym_try_statement, - STATE(3300), 1, + STATE(3793), 1, sym_parameter_list, - STATE(4901), 1, + STATE(5647), 1, sym__function_declarator_seq, - STATE(5406), 1, + STATE(6270), 1, aux_sym_declaration_repeat1, - STATE(4874), 2, + STATE(5560), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5834), 2, + STATE(6802), 2, sym_argument_list, sym_initializer_list, - [170868] = 11, + [201751] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(4214), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5675), 1, + ACTIONS(6409), 1, anon_sym_LBRACK, - ACTIONS(5988), 1, + ACTIONS(6466), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6833), 1, anon_sym_DASH_GT, - ACTIONS(5990), 1, + ACTIONS(6835), 1, anon_sym_requires, - STATE(4716), 1, + STATE(5422), 1, sym_requires_clause, - STATE(4779), 1, + STATE(5678), 1, sym_trailing_return_type, - ACTIONS(4135), 2, + ACTIONS(4880), 2, anon_sym_final, anon_sym_override, - STATE(4480), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(4578), 2, + ACTIONS(6407), 2, + anon_sym_LPAREN2, + anon_sym_COLON, + STATE(5301), 2, sym_virtual_specifier, aux_sym__function_declarator_seq_repeat2, - ACTIONS(5673), 5, + STATE(5349), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [201789] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(41), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1899), 1, + anon_sym_LBRACE, + ACTIONS(8204), 1, + anon_sym_COMMA, + ACTIONS(8206), 1, + anon_sym_LPAREN2, + ACTIONS(8212), 1, + anon_sym_LBRACK, + ACTIONS(8214), 1, + anon_sym_EQ, + ACTIONS(8224), 1, + anon_sym_SEMI, + STATE(3793), 1, + sym_parameter_list, + STATE(5647), 1, + sym__function_declarator_seq, + STATE(6445), 1, + aux_sym_declaration_repeat1, + STATE(5560), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6802), 2, + sym_argument_list, + sym_initializer_list, + [201831] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8033), 1, + anon_sym_LBRACK, + ACTIONS(8031), 13, + anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, anon_sym_try, - [170909] = 11, + anon_sym_requires, + [201853] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(4214), 1, + ACTIONS(6466), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5952), 1, + ACTIONS(6544), 1, anon_sym_LBRACK, - ACTIONS(5974), 1, + ACTIONS(6833), 1, anon_sym_DASH_GT, - ACTIONS(5976), 1, + ACTIONS(6835), 1, anon_sym_requires, - STATE(4813), 1, + STATE(5360), 1, sym_requires_clause, - STATE(4852), 1, + STATE(5699), 1, sym_trailing_return_type, - ACTIONS(5898), 2, + ACTIONS(4880), 2, anon_sym_final, anon_sym_override, - STATE(4517), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(4641), 2, + ACTIONS(6542), 2, + anon_sym_LPAREN2, + anon_sym_COLON, + STATE(5295), 2, sym_virtual_specifier, aux_sym__function_declarator_seq_repeat2, - ACTIONS(5950), 5, + STATE(5349), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [201891] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7726), 1, + anon_sym_LBRACK, + ACTIONS(7724), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - [170950] = 15, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [201913] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(6219), 1, + anon_sym_LBRACE, + ACTIONS(6312), 1, + anon_sym_COLON_COLON, + ACTIONS(7728), 1, + sym_identifier, + STATE(3578), 1, + sym_template_type, + STATE(3716), 1, + sym_enumerator_list, + STATE(5765), 1, + sym__scope_resolution, + ACTIONS(8511), 2, + anon_sym_class, + anon_sym_struct, + STATE(4075), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7638), 2, + sym_decltype, + sym_dependent_type_identifier, + [201953] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3908), 1, + ACTIONS(8513), 14, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(3910), 1, - anon_sym_STAR, - ACTIONS(3912), 1, - anon_sym_AMP_AMP, - ACTIONS(3914), 1, - anon_sym_AMP, - ACTIONS(6514), 1, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(7266), 1, - anon_sym_LT, - ACTIONS(7300), 1, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [201973] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(6312), 1, + anon_sym_COLON_COLON, + ACTIONS(6546), 1, anon_sym_LBRACE, - STATE(1873), 1, - sym_compound_statement, - STATE(3482), 1, - sym_parameter_list, - STATE(4505), 1, - sym_template_parameter_list, - STATE(4765), 1, - sym__function_declarator_seq, - STATE(5197), 1, - sym__abstract_declarator, - STATE(5336), 1, - sym_abstract_function_declarator, - STATE(4764), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - [170999] = 11, + ACTIONS(7728), 1, + sym_identifier, + STATE(3578), 1, + sym_template_type, + STATE(3938), 1, + sym_enumerator_list, + STATE(5765), 1, + sym__scope_resolution, + ACTIONS(8515), 2, + anon_sym_class, + anon_sym_struct, + STATE(4718), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7638), 2, + sym_decltype, + sym_dependent_type_identifier, + [202013] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(4214), 1, + ACTIONS(6466), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5988), 1, - anon_sym_DASH_GT, - ACTIONS(5990), 1, + ACTIONS(6530), 1, anon_sym_requires, - ACTIONS(6853), 1, + ACTIONS(6807), 1, + anon_sym_DASH_GT, + ACTIONS(7726), 1, anon_sym_LBRACK, - STATE(4659), 1, + STATE(5417), 1, sym_requires_clause, - STATE(4772), 1, + STATE(5468), 1, sym_trailing_return_type, - ACTIONS(4135), 2, + ACTIONS(6528), 2, anon_sym_final, anon_sym_override, - STATE(4085), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(4533), 2, + ACTIONS(7724), 2, + anon_sym_LPAREN2, + anon_sym_COLON, + STATE(5254), 2, sym_virtual_specifier, aux_sym__function_declarator_seq_repeat2, - ACTIONS(6851), 5, + STATE(5453), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [202051] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7724), 14, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, anon_sym_try, - [171040] = 11, + anon_sym_requires, + [202071] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(4214), 1, + ACTIONS(6466), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5988), 1, + ACTIONS(6833), 1, anon_sym_DASH_GT, - ACTIONS(5990), 1, + ACTIONS(6835), 1, anon_sym_requires, - ACTIONS(6853), 1, + ACTIONS(7726), 1, anon_sym_LBRACK, - STATE(4659), 1, + STATE(5358), 1, sym_requires_clause, - STATE(4772), 1, + STATE(5700), 1, sym_trailing_return_type, - ACTIONS(4135), 2, + ACTIONS(4880), 2, anon_sym_final, anon_sym_override, - STATE(4495), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(4533), 2, + ACTIONS(7724), 2, + anon_sym_LPAREN2, + anon_sym_COLON, + STATE(5288), 2, sym_virtual_specifier, aux_sym__function_declarator_seq_repeat2, - ACTIONS(6851), 5, + STATE(5349), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [202109] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8519), 1, + anon_sym_LBRACK, + ACTIONS(8517), 13, + anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, anon_sym_try, - [171081] = 11, + anon_sym_requires, + [202131] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(5115), 1, + anon_sym_LBRACE, + ACTIONS(7478), 1, + anon_sym_COLON_COLON, + ACTIONS(7694), 1, + sym_identifier, + STATE(2414), 1, + sym_template_type, + STATE(2751), 1, + sym_enumerator_list, + STATE(5770), 1, + sym__scope_resolution, + ACTIONS(8521), 2, + anon_sym_class, + anon_sym_struct, + STATE(2513), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7638), 2, + sym_decltype, + sym_dependent_type_identifier, + [202171] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8523), 1, + anon_sym_RPAREN, + STATE(2961), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(107), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(145), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [202197] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8525), 1, + anon_sym_RPAREN, + STATE(2961), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(107), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(145), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [202223] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(4214), 1, + ACTIONS(6466), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5974), 1, + ACTIONS(6833), 1, anon_sym_DASH_GT, - ACTIONS(5976), 1, + ACTIONS(6835), 1, anon_sym_requires, - ACTIONS(7077), 1, + ACTIONS(7726), 1, anon_sym_LBRACK, - STATE(4751), 1, + STATE(5358), 1, sym_requires_clause, - STATE(4862), 1, + STATE(5700), 1, sym_trailing_return_type, - ACTIONS(5898), 2, + ACTIONS(4880), 2, anon_sym_final, anon_sym_override, - STATE(4085), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(4609), 2, + ACTIONS(7724), 2, + anon_sym_LPAREN2, + anon_sym_COLON, + STATE(5288), 2, sym_virtual_specifier, aux_sym__function_declarator_seq_repeat2, - ACTIONS(7075), 5, + STATE(5416), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [202261] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8527), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5206), 12, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, anon_sym_SEMI, anon_sym_LBRACE, - [171122] = 11, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_or, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [202283] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4214), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5988), 1, - anon_sym_DASH_GT, - ACTIONS(5990), 1, - anon_sym_requires, - ACTIONS(7095), 1, + ACTIONS(8529), 14, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_LBRACK, - STATE(4674), 1, - sym_requires_clause, - STATE(4755), 1, - sym_trailing_return_type, - ACTIONS(4135), 2, + anon_sym_EQ, + anon_sym_COLON, anon_sym_final, anon_sym_override, - STATE(4085), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(4545), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat2, - ACTIONS(7093), 5, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [202303] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(5621), 1, + anon_sym_LBRACE, + ACTIONS(7567), 1, + anon_sym_COLON_COLON, + ACTIONS(7714), 1, + sym_identifier, + STATE(2945), 1, + sym_template_type, + STATE(3148), 1, + sym_enumerator_list, + STATE(5737), 1, + sym__scope_resolution, + ACTIONS(8531), 2, + anon_sym_class, + anon_sym_struct, + STATE(3867), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7638), 2, + sym_decltype, + sym_dependent_type_identifier, + [202343] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8533), 14, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, anon_sym_try, - [171163] = 11, + anon_sym_requires, + [202363] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4214), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5988), 1, - anon_sym_DASH_GT, - ACTIONS(5990), 1, - anon_sym_requires, - ACTIONS(7095), 1, + ACTIONS(8535), 1, + anon_sym_RPAREN, + STATE(2961), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(107), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(145), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [202389] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8539), 1, anon_sym_LBRACK, - STATE(4674), 1, - sym_requires_clause, - STATE(4755), 1, - sym_trailing_return_type, - ACTIONS(4135), 2, + ACTIONS(8537), 13, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, anon_sym_final, anon_sym_override, - STATE(4499), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(4545), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat2, - ACTIONS(7093), 5, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [202411] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6409), 1, + anon_sym_LBRACK, + ACTIONS(6407), 13, + anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, anon_sym_try, - [171204] = 15, + anon_sym_requires, + [202433] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(3908), 1, + ACTIONS(7977), 1, anon_sym_LPAREN2, - ACTIONS(3910), 1, - anon_sym_STAR, - ACTIONS(3912), 1, - anon_sym_AMP_AMP, - ACTIONS(3914), 1, - anon_sym_AMP, - ACTIONS(6514), 1, + ACTIONS(8468), 1, anon_sym_LBRACK, - ACTIONS(7288), 1, - anon_sym_requires, - STATE(1879), 1, - sym_compound_statement, - STATE(3482), 1, + STATE(3839), 1, sym_parameter_list, - STATE(4636), 1, - sym_requires_clause, - STATE(4765), 1, + STATE(5450), 1, sym__function_declarator_seq, - STATE(5197), 1, - sym__abstract_declarator, - STATE(5238), 1, - sym_abstract_function_declarator, - STATE(4764), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - [171253] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4214), 1, + ACTIONS(8498), 10, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(5896), 1, - anon_sym_DASH_GT, - ACTIONS(5900), 1, - anon_sym_requires, - ACTIONS(7095), 1, - anon_sym_LBRACK, - STATE(4796), 1, - sym_requires_clause, - STATE(4826), 1, - sym_trailing_return_type, - ACTIONS(5898), 2, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, anon_sym_final, anon_sym_override, - STATE(4483), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(4608), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat2, - ACTIONS(7093), 5, + anon_sym_try, + anon_sym_requires, + [202461] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8541), 1, + anon_sym_LBRACK, + ACTIONS(8513), 13, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, anon_sym_try, - [171294] = 11, + anon_sym_requires, + [202483] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4214), 1, + ACTIONS(41), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5988), 1, - anon_sym_DASH_GT, - ACTIONS(5990), 1, - anon_sym_requires, - ACTIONS(7077), 1, + ACTIONS(7977), 1, + anon_sym_LPAREN2, + ACTIONS(8212), 1, anon_sym_LBRACK, - STATE(4728), 1, - sym_requires_clause, - STATE(4791), 1, - sym_trailing_return_type, - ACTIONS(4135), 2, - anon_sym_final, - anon_sym_override, - STATE(4085), 2, + STATE(3793), 1, + sym_parameter_list, + STATE(5647), 1, + sym__function_declarator_seq, + STATE(5560), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(4541), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat2, - ACTIONS(7075), 5, + ACTIONS(8543), 7, + anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, anon_sym_try, - [171335] = 15, + [202515] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3908), 1, - anon_sym_LPAREN2, - ACTIONS(3910), 1, - anon_sym_STAR, - ACTIONS(3912), 1, - anon_sym_AMP_AMP, - ACTIONS(3914), 1, - anon_sym_AMP, - ACTIONS(6514), 1, - anon_sym_LBRACK, - ACTIONS(7266), 1, - anon_sym_LT, - ACTIONS(7302), 1, + ACTIONS(8545), 1, + anon_sym_RPAREN, + STATE(2961), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(107), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(145), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [202541] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(5135), 1, anon_sym_LBRACE, - STATE(3176), 1, - sym_compound_statement, - STATE(3482), 1, - sym_parameter_list, - STATE(4503), 1, - sym_template_parameter_list, - STATE(4765), 1, - sym__function_declarator_seq, - STATE(5196), 1, - sym_abstract_function_declarator, - STATE(5197), 1, - sym__abstract_declarator, - STATE(4764), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - [171384] = 15, + ACTIONS(6225), 1, + anon_sym_COLON_COLON, + ACTIONS(7738), 1, + sym_identifier, + STATE(2718), 1, + sym_template_type, + STATE(2756), 1, + sym_enumerator_list, + STATE(5741), 1, + sym__scope_resolution, + ACTIONS(8547), 2, + anon_sym_class, + anon_sym_struct, + STATE(4711), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7638), 2, + sym_decltype, + sym_dependent_type_identifier, + [202581] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3908), 1, + ACTIONS(8549), 14, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(3910), 1, - anon_sym_STAR, - ACTIONS(3912), 1, - anon_sym_AMP_AMP, - ACTIONS(3914), 1, - anon_sym_AMP, - ACTIONS(6514), 1, - anon_sym_LBRACK, - ACTIONS(7266), 1, - anon_sym_LT, - ACTIONS(7304), 1, + anon_sym_SEMI, anon_sym_LBRACE, - STATE(3405), 1, - sym_compound_statement, - STATE(3482), 1, - sym_parameter_list, - STATE(4513), 1, - sym_template_parameter_list, - STATE(4765), 1, - sym__function_declarator_seq, - STATE(5197), 1, - sym__abstract_declarator, - STATE(5251), 1, - sym_abstract_function_declarator, - STATE(4764), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - [171433] = 16, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [202601] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + ACTIONS(41), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7139), 1, + ACTIONS(1899), 1, anon_sym_LBRACE, - ACTIONS(7143), 1, - anon_sym_try, - ACTIONS(7272), 1, + ACTIONS(8204), 1, anon_sym_COMMA, - ACTIONS(7274), 1, + ACTIONS(8206), 1, anon_sym_LPAREN2, - ACTIONS(7280), 1, + ACTIONS(8208), 1, + anon_sym_SEMI, + ACTIONS(8212), 1, anon_sym_LBRACK, - ACTIONS(7282), 1, + ACTIONS(8214), 1, anon_sym_EQ, - ACTIONS(7306), 1, - anon_sym_SEMI, - STATE(2268), 1, - sym_try_statement, - STATE(2269), 1, - sym_compound_statement, - STATE(3300), 1, + STATE(3793), 1, sym_parameter_list, - STATE(4901), 1, + STATE(5647), 1, sym__function_declarator_seq, - STATE(5518), 1, + STATE(6453), 1, aux_sym_declaration_repeat1, - STATE(4874), 2, + STATE(5560), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5834), 2, + STATE(6802), 2, sym_argument_list, sym_initializer_list, - [171484] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3908), 1, - anon_sym_LPAREN2, - ACTIONS(3910), 1, - anon_sym_STAR, - ACTIONS(3912), 1, - anon_sym_AMP_AMP, - ACTIONS(3914), 1, - anon_sym_AMP, - ACTIONS(6514), 1, - anon_sym_LBRACK, - ACTIONS(7288), 1, - anon_sym_requires, - ACTIONS(7302), 1, - anon_sym_LBRACE, - STATE(3186), 1, - sym_compound_statement, - STATE(3482), 1, - sym_parameter_list, - STATE(4619), 1, - sym_requires_clause, - STATE(4765), 1, - sym__function_declarator_seq, - STATE(5191), 1, - sym_abstract_function_declarator, - STATE(5197), 1, - sym__abstract_declarator, - STATE(4764), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - [171533] = 11, + [202643] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(4214), 1, + ACTIONS(6466), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5896), 1, + ACTIONS(6544), 1, + anon_sym_LBRACK, + ACTIONS(6833), 1, anon_sym_DASH_GT, - ACTIONS(5900), 1, + ACTIONS(6835), 1, anon_sym_requires, - ACTIONS(7095), 1, - anon_sym_LBRACK, - STATE(4796), 1, + STATE(5360), 1, sym_requires_clause, - STATE(4826), 1, + STATE(5699), 1, sym_trailing_return_type, - ACTIONS(5898), 2, + ACTIONS(4880), 2, anon_sym_final, anon_sym_override, - STATE(4085), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(4608), 2, + ACTIONS(6542), 2, + anon_sym_LPAREN2, + anon_sym_COLON, + STATE(5295), 2, sym_virtual_specifier, aux_sym__function_declarator_seq_repeat2, - ACTIONS(7093), 5, + STATE(5366), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [202681] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8346), 1, + anon_sym_LBRACK, + ACTIONS(8312), 13, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, anon_sym_try, - [171574] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3908), 1, - anon_sym_LPAREN2, - ACTIONS(3910), 1, - anon_sym_STAR, - ACTIONS(3912), 1, - anon_sym_AMP_AMP, - ACTIONS(3914), 1, - anon_sym_AMP, - ACTIONS(6514), 1, - anon_sym_LBRACK, - ACTIONS(7288), 1, anon_sym_requires, - ACTIONS(7300), 1, - anon_sym_LBRACE, - STATE(1879), 1, - sym_compound_statement, - STATE(3482), 1, - sym_parameter_list, - STATE(4629), 1, - sym_requires_clause, - STATE(4765), 1, - sym__function_declarator_seq, - STATE(5197), 1, - sym__abstract_declarator, - STATE(5339), 1, - sym_abstract_function_declarator, - STATE(4764), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - [171623] = 5, + [202703] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4917), 1, + ACTIONS(8278), 1, anon_sym_LBRACK, - ACTIONS(7308), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7310), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(4919), 12, + ACTIONS(8276), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -369688,612 +470674,440 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, + anon_sym_COLON, anon_sym_final, anon_sym_override, anon_sym_GT2, anon_sym_try, anon_sym_requires, - [171652] = 11, + [202725] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(4214), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5896), 1, - anon_sym_DASH_GT, - ACTIONS(5900), 1, - anon_sym_requires, - ACTIONS(6853), 1, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(5621), 1, + anon_sym_LBRACE, + ACTIONS(6288), 1, + anon_sym_COLON_COLON, + ACTIONS(7746), 1, + sym_identifier, + STATE(2945), 1, + sym_template_type, + STATE(3148), 1, + sym_enumerator_list, + STATE(5712), 1, + sym__scope_resolution, + ACTIONS(8551), 2, + anon_sym_class, + anon_sym_struct, + STATE(4709), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7638), 2, + sym_decltype, + sym_dependent_type_identifier, + [202765] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8555), 1, anon_sym_LBRACK, - STATE(4807), 1, - sym_requires_clause, - STATE(4837), 1, - sym_trailing_return_type, - ACTIONS(5898), 2, - anon_sym_final, - anon_sym_override, - STATE(4085), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(4604), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat2, - ACTIONS(6851), 5, + ACTIONS(8553), 13, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, anon_sym_try, - [171693] = 11, + anon_sym_requires, + [202787] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4214), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5896), 1, - anon_sym_DASH_GT, - ACTIONS(5900), 1, - anon_sym_requires, - ACTIONS(6853), 1, - anon_sym_LBRACK, - STATE(4807), 1, - sym_requires_clause, - STATE(4837), 1, - sym_trailing_return_type, - ACTIONS(5898), 2, - anon_sym_final, - anon_sym_override, - STATE(4504), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(4604), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat2, - ACTIONS(6851), 5, + ACTIONS(8557), 14, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, anon_sym_try, - [171734] = 15, + anon_sym_requires, + [202807] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3908), 1, + ACTIONS(8559), 14, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(3910), 1, - anon_sym_STAR, - ACTIONS(3912), 1, - anon_sym_AMP_AMP, - ACTIONS(3914), 1, - anon_sym_AMP, - ACTIONS(6514), 1, - anon_sym_LBRACK, - ACTIONS(7266), 1, - anon_sym_LT, - ACTIONS(7312), 1, + anon_sym_SEMI, anon_sym_LBRACE, - STATE(3482), 1, - sym_parameter_list, - STATE(4511), 1, - sym_template_parameter_list, - STATE(4765), 1, - sym__function_declarator_seq, - STATE(4805), 1, - sym_compound_statement, - STATE(5197), 1, - sym__abstract_declarator, - STATE(5212), 1, - sym_abstract_function_declarator, - STATE(4764), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - [171783] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1521), 1, - anon_sym_operator, - ACTIONS(6293), 1, - anon_sym_LPAREN2, - ACTIONS(6418), 1, - sym_identifier, - ACTIONS(6420), 1, - anon_sym_STAR, - ACTIONS(6422), 1, - anon_sym_AMP_AMP, - ACTIONS(6424), 1, - anon_sym_AMP, - STATE(5052), 1, - sym__field_declarator, - STATE(6046), 1, - sym_ms_based_modifier, - STATE(4964), 8, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - sym_reference_field_declarator, - sym_template_method, - sym_operator_name, - [171824] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3908), 1, - anon_sym_LPAREN2, - ACTIONS(3910), 1, - anon_sym_STAR, - ACTIONS(3912), 1, - anon_sym_AMP_AMP, - ACTIONS(3914), 1, - anon_sym_AMP, - ACTIONS(6514), 1, anon_sym_LBRACK, - ACTIONS(7288), 1, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, anon_sym_requires, - ACTIONS(7312), 1, - anon_sym_LBRACE, - STATE(3482), 1, - sym_parameter_list, - STATE(4602), 1, - sym_requires_clause, - STATE(4765), 1, - sym__function_declarator_seq, - STATE(4774), 1, - sym_compound_statement, - STATE(5197), 1, - sym__abstract_declarator, - STATE(5208), 1, - sym_abstract_function_declarator, - STATE(4764), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - [171873] = 11, + [202827] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(4214), 1, + ACTIONS(6466), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5974), 1, + ACTIONS(6833), 1, anon_sym_DASH_GT, - ACTIONS(5976), 1, + ACTIONS(6835), 1, anon_sym_requires, - ACTIONS(6853), 1, + ACTIONS(8033), 1, anon_sym_LBRACK, - STATE(4807), 1, + STATE(5419), 1, sym_requires_clause, - STATE(4820), 1, + STATE(5694), 1, sym_trailing_return_type, - ACTIONS(5898), 2, + ACTIONS(4880), 2, anon_sym_final, anon_sym_override, - STATE(4471), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(4604), 2, + ACTIONS(8031), 2, + anon_sym_LPAREN2, + anon_sym_COLON, + STATE(5258), 2, sym_virtual_specifier, aux_sym__function_declarator_seq_repeat2, - ACTIONS(6851), 5, + STATE(5418), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [202865] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8537), 14, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, - [171914] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3908), 1, - anon_sym_LPAREN2, - ACTIONS(3910), 1, - anon_sym_STAR, - ACTIONS(3912), 1, - anon_sym_AMP_AMP, - ACTIONS(3914), 1, - anon_sym_AMP, - ACTIONS(6514), 1, - anon_sym_LBRACK, - ACTIONS(7288), 1, - anon_sym_requires, - ACTIONS(7304), 1, - anon_sym_LBRACE, - STATE(3418), 1, - sym_compound_statement, - STATE(3482), 1, - sym_parameter_list, - STATE(4589), 1, - sym_requires_clause, - STATE(4765), 1, - sym__function_declarator_seq, - STATE(5197), 1, - sym__abstract_declarator, - STATE(5211), 1, - sym_abstract_function_declarator, - STATE(4764), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - [171963] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7272), 1, - anon_sym_COMMA, - ACTIONS(7274), 1, - anon_sym_LPAREN2, - ACTIONS(7280), 1, anon_sym_LBRACK, - ACTIONS(7282), 1, anon_sym_EQ, - ACTIONS(7314), 1, - anon_sym_SEMI, - ACTIONS(7316), 1, - anon_sym_LBRACE, - ACTIONS(7318), 1, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, anon_sym_try, - STATE(981), 1, - sym_compound_statement, - STATE(998), 1, - sym_try_statement, - STATE(3300), 1, - sym_parameter_list, - STATE(4901), 1, - sym__function_declarator_seq, - STATE(5599), 1, - aux_sym_declaration_repeat1, - STATE(4874), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(5834), 2, - sym_argument_list, - sym_initializer_list, - [172014] = 15, + anon_sym_requires, + [202885] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3908), 1, - anon_sym_LPAREN2, - ACTIONS(3910), 1, - anon_sym_STAR, - ACTIONS(3912), 1, - anon_sym_AMP_AMP, - ACTIONS(3914), 1, - anon_sym_AMP, - ACTIONS(6514), 1, - anon_sym_LBRACK, - ACTIONS(7288), 1, - anon_sym_requires, - ACTIONS(7290), 1, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(4580), 1, + anon_sym_COLON_COLON, + ACTIONS(6219), 1, anon_sym_LBRACE, - STATE(2529), 1, - sym_compound_statement, - STATE(3482), 1, - sym_parameter_list, - STATE(4623), 1, - sym_requires_clause, - STATE(4765), 1, - sym__function_declarator_seq, - STATE(5197), 1, - sym__abstract_declarator, - STATE(5217), 1, - sym_abstract_function_declarator, - STATE(4764), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - [172063] = 11, + ACTIONS(7740), 1, + sym_identifier, + STATE(3578), 1, + sym_template_type, + STATE(3716), 1, + sym_enumerator_list, + STATE(5733), 1, + sym__scope_resolution, + ACTIONS(8561), 2, + anon_sym_class, + anon_sym_struct, + STATE(3829), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7638), 2, + sym_decltype, + sym_dependent_type_identifier, + [202925] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4214), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5675), 1, - anon_sym_LBRACK, - ACTIONS(5974), 1, - anon_sym_DASH_GT, - ACTIONS(5976), 1, - anon_sym_requires, - STATE(4789), 1, - sym_requires_clause, - STATE(4825), 1, - sym_trailing_return_type, - ACTIONS(5898), 2, - anon_sym_final, - anon_sym_override, - STATE(4085), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(4622), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat2, - ACTIONS(5673), 5, + ACTIONS(8563), 14, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, - [172104] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4214), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5974), 1, - anon_sym_DASH_GT, - ACTIONS(5976), 1, - anon_sym_requires, - ACTIONS(6853), 1, anon_sym_LBRACK, - STATE(4807), 1, - sym_requires_clause, - STATE(4820), 1, - sym_trailing_return_type, - ACTIONS(5898), 2, + anon_sym_EQ, + anon_sym_COLON, anon_sym_final, anon_sym_override, - STATE(4085), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(4604), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat2, - ACTIONS(6851), 5, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [202945] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8565), 14, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, - [172145] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3908), 1, - anon_sym_LPAREN2, - ACTIONS(3910), 1, - anon_sym_STAR, - ACTIONS(3912), 1, - anon_sym_AMP_AMP, - ACTIONS(3914), 1, - anon_sym_AMP, - ACTIONS(6514), 1, anon_sym_LBRACK, - ACTIONS(7288), 1, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, anon_sym_requires, - ACTIONS(7292), 1, - anon_sym_LBRACE, - STATE(2702), 1, - sym_compound_statement, - STATE(3482), 1, - sym_parameter_list, - STATE(4632), 1, - sym_requires_clause, - STATE(4765), 1, - sym__function_declarator_seq, - STATE(5197), 1, - sym__abstract_declarator, - STATE(5356), 1, - sym_abstract_function_declarator, - STATE(4764), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - [172194] = 16, + [202965] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + ACTIONS(41), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7127), 1, + ACTIONS(1899), 1, anon_sym_LBRACE, - ACTIONS(7131), 1, - anon_sym_try, - ACTIONS(7272), 1, + ACTIONS(8204), 1, anon_sym_COMMA, - ACTIONS(7274), 1, + ACTIONS(8206), 1, anon_sym_LPAREN2, - ACTIONS(7280), 1, + ACTIONS(8212), 1, anon_sym_LBRACK, - ACTIONS(7282), 1, - anon_sym_EQ, - ACTIONS(7320), 1, + ACTIONS(8462), 1, anon_sym_SEMI, - STATE(2341), 1, - sym_try_statement, - STATE(2345), 1, - sym_compound_statement, - STATE(3300), 1, + ACTIONS(8567), 1, + anon_sym_EQ, + STATE(3793), 1, sym_parameter_list, - STATE(4901), 1, + STATE(5647), 1, sym__function_declarator_seq, - STATE(5494), 1, + STATE(6270), 1, aux_sym_declaration_repeat1, - STATE(4874), 2, + STATE(6362), 1, + sym_initializer_list, + STATE(6802), 1, + sym_argument_list, + STATE(5560), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5834), 2, - sym_argument_list, - sym_initializer_list, - [172245] = 4, + [203009] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4822), 1, + ACTIONS(7977), 1, + anon_sym_LPAREN2, + ACTIONS(8468), 1, anon_sym_LBRACK, - ACTIONS(7310), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(4824), 14, + STATE(3839), 1, + sym_parameter_list, + STATE(5450), 1, + sym__function_declarator_seq, + ACTIONS(8466), 10, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_or, + anon_sym_COLON, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_try, anon_sym_requires, - [172272] = 11, + [203037] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4214), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5952), 1, + ACTIONS(8571), 1, anon_sym_LBRACK, - ACTIONS(5988), 1, - anon_sym_DASH_GT, - ACTIONS(5990), 1, - anon_sym_requires, - STATE(4723), 1, - sym_requires_clause, - STATE(4810), 1, - sym_trailing_return_type, - ACTIONS(4135), 2, - anon_sym_final, - anon_sym_override, - STATE(4492), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(4538), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat2, - ACTIONS(5950), 5, + ACTIONS(8569), 13, + anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, anon_sym_try, - [172313] = 16, + anon_sym_requires, + [203059] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7272), 1, + ACTIONS(8573), 1, + anon_sym_LBRACK, + ACTIONS(8559), 13, anon_sym_COMMA, - ACTIONS(7274), 1, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(7280), 1, - anon_sym_LBRACK, - ACTIONS(7282), 1, - anon_sym_EQ, - ACTIONS(7322), 1, anon_sym_SEMI, - ACTIONS(7324), 1, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - ACTIONS(7326), 1, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, anon_sym_try, - STATE(978), 1, - sym_compound_statement, - STATE(991), 1, - sym_try_statement, - STATE(3300), 1, - sym_parameter_list, - STATE(4901), 1, - sym__function_declarator_seq, - STATE(5558), 1, - aux_sym_declaration_repeat1, - STATE(4874), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(5834), 2, - sym_argument_list, - sym_initializer_list, - [172364] = 16, + anon_sym_requires, + [203081] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + ACTIONS(8575), 1, + anon_sym_RPAREN, + STATE(2961), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(107), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(145), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [203107] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(41), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7272), 1, + ACTIONS(1899), 1, + anon_sym_LBRACE, + ACTIONS(8204), 1, anon_sym_COMMA, - ACTIONS(7274), 1, + ACTIONS(8206), 1, anon_sym_LPAREN2, - ACTIONS(7280), 1, + ACTIONS(8212), 1, anon_sym_LBRACK, - ACTIONS(7282), 1, + ACTIONS(8214), 1, anon_sym_EQ, - ACTIONS(7328), 1, + ACTIONS(8232), 1, anon_sym_SEMI, - ACTIONS(7330), 1, - anon_sym_LBRACE, - ACTIONS(7332), 1, - anon_sym_try, - STATE(491), 1, - sym_try_statement, - STATE(519), 1, - sym_compound_statement, - STATE(3300), 1, + STATE(3793), 1, sym_parameter_list, - STATE(4901), 1, + STATE(5647), 1, sym__function_declarator_seq, - STATE(5601), 1, + STATE(6290), 1, aux_sym_declaration_repeat1, - STATE(4874), 2, + STATE(5560), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5834), 2, + STATE(6802), 2, sym_argument_list, sym_initializer_list, - [172415] = 11, + [203149] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(4214), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5675), 1, + ACTIONS(6409), 1, anon_sym_LBRACK, - ACTIONS(5988), 1, + ACTIONS(6466), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6833), 1, anon_sym_DASH_GT, - ACTIONS(5990), 1, + ACTIONS(6835), 1, anon_sym_requires, - STATE(4716), 1, + STATE(5422), 1, sym_requires_clause, - STATE(4779), 1, + STATE(5678), 1, sym_trailing_return_type, - ACTIONS(4135), 2, + ACTIONS(4880), 2, anon_sym_final, anon_sym_override, - STATE(4085), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(4578), 2, + ACTIONS(6407), 2, + anon_sym_LPAREN2, + anon_sym_COLON, + STATE(5301), 2, sym_virtual_specifier, aux_sym__function_declarator_seq_repeat2, - ACTIONS(5673), 5, + STATE(5359), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [203187] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8577), 1, anon_sym_RPAREN, + STATE(2961), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(107), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(145), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [203213] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(41), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7977), 1, anon_sym_LPAREN2, + ACTIONS(8212), 1, + anon_sym_LBRACK, + STATE(3793), 1, + sym_parameter_list, + STATE(5647), 1, + sym__function_declarator_seq, + STATE(5560), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(8579), 7, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, anon_sym_try, - [172456] = 3, + [203245] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4068), 1, - anon_sym_LBRACK, - ACTIONS(4070), 15, + ACTIONS(8312), 14, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, anon_sym_COLON, - anon_sym_or, - anon_sym_and, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_try, anon_sym_requires, - [172480] = 3, + [203265] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7336), 1, + ACTIONS(8581), 1, anon_sym_LBRACK, - ACTIONS(7334), 15, - anon_sym_DOT_DOT_DOT, + ACTIONS(8533), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -370302,313 +471116,299 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, - anon_sym_DASH_GT, anon_sym_final, anon_sym_override, anon_sym_GT2, anon_sym_try, anon_sym_requires, - [172504] = 3, + [203287] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4087), 1, + ACTIONS(8583), 1, anon_sym_LBRACK, - ACTIONS(4089), 15, + ACTIONS(8549), 13, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, - anon_sym_or, - anon_sym_and, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_try, anon_sym_requires, - [172528] = 5, + [203309] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7340), 1, - anon_sym_LBRACK, - ACTIONS(4135), 2, - anon_sym_final, - anon_sym_override, - STATE(4583), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat2, - ACTIONS(7338), 11, + ACTIONS(6407), 14, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, anon_sym_COLON, + anon_sym_final, + anon_sym_override, anon_sym_GT2, anon_sym_try, anon_sym_requires, - [172556] = 7, + [203329] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(5669), 1, - anon_sym_requires, - ACTIONS(7095), 1, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(5127), 1, + anon_sym_LBRACE, + ACTIONS(7534), 1, + anon_sym_COLON_COLON, + ACTIONS(7704), 1, + sym_identifier, + STATE(2511), 1, + sym_template_type, + STATE(2873), 1, + sym_enumerator_list, + STATE(5713), 1, + sym__scope_resolution, + ACTIONS(8585), 2, + anon_sym_class, + anon_sym_struct, + STATE(2534), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7638), 2, + sym_decltype, + sym_dependent_type_identifier, + [203369] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7977), 1, + anon_sym_LPAREN2, + ACTIONS(8468), 1, anon_sym_LBRACK, - STATE(4674), 1, - sym_requires_clause, - ACTIONS(4135), 2, - anon_sym_final, - anon_sym_override, - STATE(4545), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat2, - ACTIONS(7093), 9, + STATE(3839), 1, + sym_parameter_list, + STATE(5450), 1, + sym__function_declarator_seq, + ACTIONS(8470), 10, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_GT2, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, anon_sym_try, - [172588] = 3, + anon_sym_requires, + [203397] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4095), 1, - anon_sym_LBRACK, - ACTIONS(4097), 15, + ACTIONS(8569), 14, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, anon_sym_COLON, - anon_sym_or, - anon_sym_and, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_try, anon_sym_requires, - [172612] = 3, + [203417] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4105), 1, + ACTIONS(7977), 1, + anon_sym_LPAREN2, + ACTIONS(8468), 1, anon_sym_LBRACK, - ACTIONS(4107), 15, + STATE(3839), 1, + sym_parameter_list, + STATE(5450), 1, + sym__function_declarator_seq, + ACTIONS(8494), 10, anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, - anon_sym_or, - anon_sym_and, anon_sym_final, anon_sym_override, anon_sym_try, anon_sym_requires, - [172636] = 5, + [203445] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4917), 1, + ACTIONS(4476), 1, + anon_sym_COLON_COLON, + ACTIONS(6045), 1, + anon_sym_LT, + STATE(5559), 1, + sym_template_argument_list, + ACTIONS(4505), 2, anon_sym_LBRACK, - ACTIONS(7342), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7344), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(4919), 11, + anon_sym_COLON, + ACTIONS(4510), 9, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_COLON, - anon_sym_final, - anon_sym_override, + anon_sym_GT2, anon_sym_try, - anon_sym_requires, - [172664] = 5, + [203473] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7095), 1, + ACTIONS(6466), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6833), 1, + anon_sym_DASH_GT, + ACTIONS(6835), 1, + anon_sym_requires, + ACTIONS(8033), 1, anon_sym_LBRACK, - ACTIONS(4135), 2, + STATE(5419), 1, + sym_requires_clause, + STATE(5694), 1, + sym_trailing_return_type, + ACTIONS(4880), 2, anon_sym_final, anon_sym_override, - STATE(4583), 2, + ACTIONS(8031), 2, + anon_sym_LPAREN2, + anon_sym_COLON, + STATE(5258), 2, sym_virtual_specifier, aux_sym__function_declarator_seq_repeat2, - ACTIONS(7093), 11, + STATE(5349), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [203511] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8031), 14, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, anon_sym_COLON, + anon_sym_final, + anon_sym_override, anon_sym_GT2, anon_sym_try, anon_sym_requires, - [172692] = 17, + [203531] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(7346), 1, - sym_identifier, - ACTIONS(7348), 1, - anon_sym_TILDE, - ACTIONS(7350), 1, - anon_sym_COLON_COLON, - ACTIONS(7352), 1, - anon_sym_template, - ACTIONS(7354), 1, - anon_sym_operator, - STATE(2518), 1, - sym_operator_name, - STATE(2520), 1, - sym_qualified_identifier, - STATE(2521), 1, - sym_dependent_identifier, - STATE(2539), 1, - sym_destructor_name, - STATE(2543), 1, - sym_template_function, - STATE(3134), 1, - sym_template_type, - STATE(3142), 1, - sym_qualified_type_identifier, - STATE(3144), 1, - sym_dependent_type_identifier, - STATE(4534), 1, - sym__scope_resolution, - STATE(6159), 1, - sym_decltype, - [172744] = 3, + ACTIONS(6466), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6833), 1, + anon_sym_DASH_GT, + ACTIONS(6835), 1, + anon_sym_requires, + ACTIONS(8021), 1, + anon_sym_LBRACK, + STATE(5388), 1, + sym_requires_clause, + STATE(5671), 1, + sym_trailing_return_type, + ACTIONS(4880), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(8019), 2, + anon_sym_LPAREN2, + anon_sym_COLON, + STATE(5223), 2, + sym_virtual_specifier, + aux_sym__function_declarator_seq_repeat2, + STATE(5349), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [203569] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4036), 1, + ACTIONS(8021), 1, anon_sym_LBRACK, - ACTIONS(4038), 15, + ACTIONS(8019), 13, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, - anon_sym_or, - anon_sym_and, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_try, anon_sym_requires, - [172768] = 5, + [203591] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3814), 1, - anon_sym_COLON_COLON, - ACTIONS(6713), 1, - anon_sym_LT, - STATE(2000), 1, - sym_template_argument_list, - ACTIONS(3819), 13, + ACTIONS(8276), 14, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_or, - anon_sym_and, + anon_sym_EQ, + anon_sym_COLON, anon_sym_final, anon_sym_override, + anon_sym_GT2, + anon_sym_try, anon_sym_requires, - [172796] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(7356), 1, - sym_identifier, - ACTIONS(7358), 1, - anon_sym_TILDE, - ACTIONS(7360), 1, - anon_sym_COLON_COLON, - ACTIONS(7362), 1, - anon_sym_template, - ACTIONS(7364), 1, - anon_sym_operator, - STATE(2194), 1, - sym_qualified_type_identifier, - STATE(2288), 1, - sym_template_type, - STATE(2298), 1, - sym_dependent_type_identifier, - STATE(2704), 1, - sym_operator_name, - STATE(2708), 1, - sym_qualified_identifier, - STATE(2711), 1, - sym_dependent_identifier, - STATE(2712), 1, - sym_destructor_name, - STATE(2716), 1, - sym_template_function, - STATE(4537), 1, - sym__scope_resolution, - STATE(6159), 1, - sym_decltype, - [172848] = 5, + [203611] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6853), 1, + ACTIONS(41), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7977), 1, + anon_sym_LPAREN2, + ACTIONS(8212), 1, anon_sym_LBRACK, - ACTIONS(4135), 2, - anon_sym_final, - anon_sym_override, - STATE(4583), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat2, - ACTIONS(6851), 11, + STATE(3793), 1, + sym_parameter_list, + STATE(5647), 1, + sym__function_declarator_seq, + STATE(5560), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(8587), 7, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_COLON, anon_sym_GT2, anon_sym_try, - anon_sym_requires, - [172876] = 3, + [203643] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7368), 1, + ACTIONS(6544), 1, anon_sym_LBRACK, - ACTIONS(7366), 15, - anon_sym_DOT_DOT_DOT, + ACTIONS(6542), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -370617,59 +471417,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, - anon_sym_DASH_GT, anon_sym_final, anon_sym_override, anon_sym_GT2, anon_sym_try, anon_sym_requires, - [172900] = 17, + [203665] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(7258), 1, - anon_sym_TILDE, - ACTIONS(7370), 1, - sym_identifier, - ACTIONS(7372), 1, + ACTIONS(4476), 1, anon_sym_COLON_COLON, - ACTIONS(7374), 1, - anon_sym_template, - ACTIONS(7376), 1, - anon_sym_operator, - STATE(2186), 1, - sym_template_function, - STATE(2187), 1, - sym_destructor_name, - STATE(2188), 1, - sym_dependent_identifier, - STATE(2193), 1, - sym_qualified_identifier, - STATE(2200), 1, - sym_operator_name, - STATE(3134), 1, - sym_template_type, - STATE(3142), 1, - sym_qualified_type_identifier, - STATE(3144), 1, - sym_dependent_type_identifier, - STATE(4540), 1, - sym__scope_resolution, - STATE(6159), 1, - sym_decltype, - [172952] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7380), 1, + ACTIONS(6045), 1, + anon_sym_LT, + STATE(5559), 1, + sym_template_argument_list, + ACTIONS(6779), 2, anon_sym_LBRACK, - ACTIONS(4135), 2, - anon_sym_final, - anon_sym_override, - STATE(4583), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat2, - ACTIONS(7378), 11, + anon_sym_COLON, + ACTIONS(4650), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -370677,17 +471442,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_COLON, anon_sym_GT2, anon_sym_try, - anon_sym_requires, - [172980] = 3, + [203693] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(5102), 1, + anon_sym_COLON_COLON, + ACTIONS(6546), 1, + anon_sym_LBRACE, + ACTIONS(7740), 1, + sym_identifier, + STATE(3578), 1, + sym_template_type, + STATE(3938), 1, + sym_enumerator_list, + STATE(5718), 1, + sym__scope_resolution, + ACTIONS(8589), 2, + anon_sym_class, + anon_sym_struct, + STATE(4333), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7638), 2, + sym_decltype, + sym_dependent_type_identifier, + [203733] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(5135), 1, + anon_sym_LBRACE, + ACTIONS(7514), 1, + anon_sym_COLON_COLON, + ACTIONS(7664), 1, + sym_identifier, + STATE(2718), 1, + sym_template_type, + STATE(2756), 1, + sym_enumerator_list, + STATE(5735), 1, + sym__scope_resolution, + ACTIONS(8591), 2, + anon_sym_class, + anon_sym_struct, + STATE(3762), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7638), 2, + sym_decltype, + sym_dependent_type_identifier, + [203773] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7384), 1, + ACTIONS(8593), 1, anon_sym_LBRACK, - ACTIONS(7382), 15, - anon_sym_DOT_DOT_DOT, + ACTIONS(8529), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -370696,103 +471514,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, - anon_sym_DASH_GT, anon_sym_final, anon_sym_override, anon_sym_GT2, anon_sym_try, anon_sym_requires, - [173004] = 3, + [203795] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4032), 1, - anon_sym_LBRACK, - ACTIONS(4034), 15, + ACTIONS(8527), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8595), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5301), 10, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_EQ, + anon_sym_LBRACK, anon_sym_COLON, - anon_sym_or, - anon_sym_and, anon_sym_final, anon_sym_override, - anon_sym_try, anon_sym_requires, - [173028] = 17, + [203819] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1555), 1, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1973), 1, anon_sym_decltype, - ACTIONS(7386), 1, - sym_identifier, - ACTIONS(7388), 1, - anon_sym_TILDE, - ACTIONS(7390), 1, + ACTIONS(5378), 1, + anon_sym_LBRACE, + ACTIONS(7456), 1, anon_sym_COLON_COLON, - ACTIONS(7392), 1, - anon_sym_template, - ACTIONS(7394), 1, - anon_sym_operator, - STATE(2744), 1, + ACTIONS(7674), 1, + sym_identifier, + STATE(2739), 1, sym_template_type, - STATE(2749), 1, - sym_dependent_type_identifier, - STATE(2859), 1, + STATE(3096), 1, + sym_enumerator_list, + STATE(5797), 1, + sym__scope_resolution, + ACTIONS(8597), 2, + anon_sym_class, + anon_sym_struct, + STATE(2849), 2, + sym__class_name, sym_qualified_type_identifier, - STATE(2896), 1, - sym_operator_name, - STATE(2897), 1, - sym_qualified_identifier, - STATE(2899), 1, - sym_dependent_identifier, - STATE(2900), 1, - sym_destructor_name, - STATE(2901), 1, - sym_template_function, - STATE(4544), 1, + STATE(7638), 2, + sym_decltype, + sym_dependent_type_identifier, + [203859] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(3663), 1, + anon_sym_COLON_COLON, + ACTIONS(6219), 1, + anon_sym_LBRACE, + ACTIONS(7728), 1, + sym_identifier, + STATE(3578), 1, + sym_template_type, + STATE(3716), 1, + sym_enumerator_list, + STATE(5779), 1, sym__scope_resolution, - STATE(6159), 1, + ACTIONS(8599), 2, + anon_sym_class, + anon_sym_struct, + STATE(4003), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7638), 2, sym_decltype, - [173080] = 5, + sym_dependent_type_identifier, + [203899] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7077), 1, - anon_sym_LBRACK, - ACTIONS(4135), 2, - anon_sym_final, - anon_sym_override, - STATE(4583), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat2, - ACTIONS(7075), 11, + ACTIONS(8019), 14, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, anon_sym_COLON, + anon_sym_final, + anon_sym_override, anon_sym_GT2, anon_sym_try, anon_sym_requires, - [173108] = 5, + [203919] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5675), 1, + ACTIONS(8601), 1, anon_sym_LBRACK, - ACTIONS(4135), 2, - anon_sym_final, - anon_sym_override, - STATE(4583), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat2, - ACTIONS(5673), 11, + ACTIONS(8557), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -370801,96 +471627,162 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, + anon_sym_final, + anon_sym_override, anon_sym_GT2, anon_sym_try, anon_sym_requires, - [173136] = 3, + [203941] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, - anon_sym_LBRACK, - ACTIONS(1735), 15, + ACTIONS(8603), 14, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, anon_sym_COLON, - anon_sym_or, - anon_sym_and, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_try, anon_sym_requires, - [173160] = 7, + [203961] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(5669), 1, - anon_sym_requires, - ACTIONS(7077), 1, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(6219), 1, + anon_sym_LBRACE, + ACTIONS(7728), 1, + sym_identifier, + ACTIONS(7752), 1, + anon_sym_COLON_COLON, + STATE(3578), 1, + sym_template_type, + STATE(3716), 1, + sym_enumerator_list, + STATE(5791), 1, + sym__scope_resolution, + ACTIONS(8605), 2, + anon_sym_class, + anon_sym_struct, + STATE(4967), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7638), 2, + sym_decltype, + sym_dependent_type_identifier, + [204001] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6409), 1, anon_sym_LBRACK, - STATE(4728), 1, + ACTIONS(6466), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6530), 1, + anon_sym_requires, + ACTIONS(6807), 1, + anon_sym_DASH_GT, + STATE(5436), 1, sym_requires_clause, - ACTIONS(4135), 2, + STATE(5484), 1, + sym_trailing_return_type, + ACTIONS(6407), 2, + anon_sym_LPAREN2, + anon_sym_COLON, + ACTIONS(6528), 2, anon_sym_final, anon_sym_override, - STATE(4541), 2, + STATE(5229), 2, sym_virtual_specifier, aux_sym__function_declarator_seq_repeat2, - ACTIONS(7075), 9, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - anon_sym_try, - [173192] = 7, + STATE(5459), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [204039] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5669), 1, - anon_sym_requires, - ACTIONS(7380), 1, + ACTIONS(6409), 1, anon_sym_LBRACK, - STATE(4653), 1, + ACTIONS(6466), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6530), 1, + anon_sym_requires, + ACTIONS(6807), 1, + anon_sym_DASH_GT, + STATE(5436), 1, sym_requires_clause, - ACTIONS(4135), 2, + STATE(5484), 1, + sym_trailing_return_type, + ACTIONS(6407), 2, + anon_sym_LPAREN2, + anon_sym_COLON, + ACTIONS(6528), 2, anon_sym_final, anon_sym_override, - STATE(4528), 2, + STATE(5229), 2, sym_virtual_specifier, aux_sym__function_declarator_seq_repeat2, - ACTIONS(7378), 9, + STATE(5349), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [204077] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6542), 14, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, anon_sym_GT2, anon_sym_try, - [173224] = 7, + anon_sym_requires, + [204097] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5669), 1, + ACTIONS(6466), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6530), 1, anon_sym_requires, - ACTIONS(5952), 1, + ACTIONS(6807), 1, + anon_sym_DASH_GT, + ACTIONS(7726), 1, anon_sym_LBRACK, - STATE(4723), 1, + STATE(5417), 1, sym_requires_clause, - ACTIONS(4135), 2, + STATE(5468), 1, + sym_trailing_return_type, + ACTIONS(6528), 2, anon_sym_final, anon_sym_override, - STATE(4538), 2, + ACTIONS(7724), 2, + anon_sym_LPAREN2, + anon_sym_COLON, + STATE(5254), 2, sym_virtual_specifier, aux_sym__function_declarator_seq_repeat2, - ACTIONS(5950), 9, + STATE(5349), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [204135] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8607), 1, + anon_sym_LBRACK, + ACTIONS(8603), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -370898,729 +471790,606 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, anon_sym_GT2, anon_sym_try, - [173256] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(7358), 1, - anon_sym_TILDE, - ACTIONS(7364), 1, - anon_sym_operator, - ACTIONS(7396), 1, - sym_identifier, - ACTIONS(7398), 1, - anon_sym_COLON_COLON, - ACTIONS(7400), 1, - anon_sym_template, - STATE(2704), 1, - sym_operator_name, - STATE(2708), 1, - sym_qualified_identifier, - STATE(2711), 1, - sym_dependent_identifier, - STATE(2712), 1, - sym_destructor_name, - STATE(2716), 1, - sym_template_function, - STATE(3134), 1, - sym_template_type, - STATE(3142), 1, - sym_qualified_type_identifier, - STATE(3144), 1, - sym_dependent_type_identifier, - STATE(4551), 1, - sym__scope_resolution, - STATE(6159), 1, - sym_decltype, - [173308] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(7402), 1, - sym_identifier, - ACTIONS(7404), 1, - anon_sym_TILDE, - ACTIONS(7406), 1, - anon_sym_COLON_COLON, - ACTIONS(7408), 1, - anon_sym_template, - ACTIONS(7410), 1, - anon_sym_operator, - STATE(2605), 1, - sym_template_function, - STATE(2617), 1, - sym_operator_name, - STATE(2619), 1, - sym_dependent_identifier, - STATE(2622), 1, - sym_destructor_name, - STATE(2623), 1, - sym_qualified_identifier, - STATE(3134), 1, - sym_template_type, - STATE(3142), 1, - sym_qualified_type_identifier, - STATE(3144), 1, - sym_dependent_type_identifier, - STATE(4552), 1, - sym__scope_resolution, - STATE(6159), 1, - sym_decltype, - [173360] = 3, + anon_sym_requires, + [204157] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4091), 1, + ACTIONS(5299), 1, anon_sym_LBRACK, - ACTIONS(4093), 15, - anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(8609), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8611), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5301), 9, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_or, - anon_sym_and, anon_sym_final, anon_sym_override, anon_sym_try, anon_sym_requires, - [173384] = 11, + [204183] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4214), 1, + ACTIONS(41), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5675), 1, + ACTIONS(7977), 1, + anon_sym_LPAREN2, + ACTIONS(8212), 1, anon_sym_LBRACK, - ACTIONS(6106), 1, - anon_sym_DASH_GT, - ACTIONS(6108), 1, - anon_sym_requires, - STATE(4789), 1, - sym_requires_clause, - STATE(4942), 1, - sym_trailing_return_type, - ACTIONS(5898), 2, - anon_sym_final, - anon_sym_override, - STATE(4568), 2, + STATE(3793), 1, + sym_parameter_list, + STATE(5647), 1, + sym__function_declarator_seq, + STATE(5560), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(4622), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat2, - ACTIONS(5673), 4, - anon_sym_DOT_DOT_DOT, + ACTIONS(8613), 7, anon_sym_COMMA, - anon_sym_LPAREN2, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_GT2, - [173424] = 11, + anon_sym_try, + [204215] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(4214), 1, + ACTIONS(41), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5675), 1, + ACTIONS(1899), 1, + anon_sym_LBRACE, + ACTIONS(8204), 1, + anon_sym_COMMA, + ACTIONS(8206), 1, + anon_sym_LPAREN2, + ACTIONS(8212), 1, anon_sym_LBRACK, - ACTIONS(6106), 1, - anon_sym_DASH_GT, - ACTIONS(6108), 1, - anon_sym_requires, - STATE(4789), 1, - sym_requires_clause, - STATE(4942), 1, - sym_trailing_return_type, - ACTIONS(5898), 2, - anon_sym_final, - anon_sym_override, - STATE(4085), 2, + ACTIONS(8214), 1, + anon_sym_EQ, + ACTIONS(8254), 1, + anon_sym_SEMI, + STATE(3793), 1, + sym_parameter_list, + STATE(5647), 1, + sym__function_declarator_seq, + STATE(6273), 1, + aux_sym_declaration_repeat1, + STATE(5560), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(4622), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat2, - ACTIONS(5673), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_GT2, - [173464] = 4, + STATE(6802), 2, + sym_argument_list, + sym_initializer_list, + [204257] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(4822), 1, - anon_sym_LBRACK, - ACTIONS(7344), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(4824), 13, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(5102), 1, + anon_sym_COLON_COLON, + ACTIONS(6219), 1, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_or, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [173490] = 3, + ACTIONS(7740), 1, + sym_identifier, + STATE(3578), 1, + sym_template_type, + STATE(3716), 1, + sym_enumerator_list, + STATE(5718), 1, + sym__scope_resolution, + ACTIONS(8615), 2, + anon_sym_class, + anon_sym_struct, + STATE(4576), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7638), 2, + sym_decltype, + sym_dependent_type_identifier, + [204297] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(4072), 1, - anon_sym_LBRACK, - ACTIONS(4074), 15, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(5406), 1, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_or, - anon_sym_and, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [173514] = 3, + ACTIONS(7581), 1, + anon_sym_COLON_COLON, + ACTIONS(7684), 1, + sym_identifier, + STATE(2846), 1, + sym_template_type, + STATE(3344), 1, + sym_enumerator_list, + STATE(5726), 1, + sym__scope_resolution, + ACTIONS(8617), 2, + anon_sym_class, + anon_sym_struct, + STATE(2900), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7638), 2, + sym_decltype, + sym_dependent_type_identifier, + [204337] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4076), 1, + ACTIONS(7977), 1, + anon_sym_LPAREN2, + ACTIONS(8468), 1, anon_sym_LBRACK, - ACTIONS(4078), 15, + STATE(3839), 1, + sym_parameter_list, + STATE(5450), 1, + sym__function_declarator_seq, + ACTIONS(8472), 10, anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, - anon_sym_or, - anon_sym_and, anon_sym_final, anon_sym_override, anon_sym_try, anon_sym_requires, - [173538] = 3, + [204365] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4046), 1, + ACTIONS(41), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7977), 1, + anon_sym_LPAREN2, + ACTIONS(8212), 1, anon_sym_LBRACK, - ACTIONS(4048), 15, + STATE(3793), 1, + sym_parameter_list, + STATE(5647), 1, + sym__function_declarator_seq, + STATE(5560), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(8619), 7, anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + anon_sym_RPAREN, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_COLON, - anon_sym_or, - anon_sym_and, - anon_sym_final, - anon_sym_override, + anon_sym_GT2, anon_sym_try, - anon_sym_requires, - [173562] = 7, + [204397] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5669), 1, + ACTIONS(6466), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6530), 1, anon_sym_requires, - ACTIONS(5675), 1, + ACTIONS(6807), 1, + anon_sym_DASH_GT, + ACTIONS(8033), 1, anon_sym_LBRACK, - STATE(4716), 1, + STATE(5430), 1, sym_requires_clause, - ACTIONS(4135), 2, + STATE(5472), 1, + sym_trailing_return_type, + ACTIONS(6528), 2, anon_sym_final, anon_sym_override, - STATE(4578), 2, + ACTIONS(8031), 2, + anon_sym_LPAREN2, + anon_sym_COLON, + STATE(5257), 2, sym_virtual_specifier, aux_sym__function_declarator_seq_repeat2, - ACTIONS(5673), 9, - anon_sym_COMMA, - anon_sym_RPAREN, + STATE(5465), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [204435] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7977), 1, anon_sym_LPAREN2, + ACTIONS(8468), 1, + anon_sym_LBRACK, + STATE(3839), 1, + sym_parameter_list, + STATE(5450), 1, + sym__function_declarator_seq, + ACTIONS(8482), 10, + anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_GT2, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, anon_sym_try, - [173594] = 3, + anon_sym_requires, + [204463] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4042), 1, + ACTIONS(8621), 1, anon_sym_LBRACK, - ACTIONS(4044), 15, + ACTIONS(8563), 13, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, - anon_sym_or, - anon_sym_and, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_try, anon_sym_requires, - [173618] = 17, + [204485] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1521), 1, - anon_sym_operator, - ACTIONS(1555), 1, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1973), 1, anon_sym_decltype, - ACTIONS(1683), 1, - anon_sym_TILDE, - ACTIONS(3234), 1, + ACTIONS(6266), 1, anon_sym_COLON_COLON, - ACTIONS(7412), 1, + ACTIONS(7637), 1, + anon_sym_LBRACE, + ACTIONS(7730), 1, sym_identifier, - ACTIONS(7414), 1, - anon_sym_template, - STATE(2186), 1, - sym_template_function, - STATE(2187), 1, - sym_destructor_name, - STATE(2188), 1, - sym_dependent_identifier, - STATE(2193), 1, - sym_qualified_identifier, - STATE(2200), 1, - sym_operator_name, - STATE(3134), 1, + STATE(4638), 1, sym_template_type, - STATE(3142), 1, - sym_qualified_type_identifier, - STATE(3144), 1, - sym_dependent_type_identifier, - STATE(4562), 1, + STATE(4736), 1, + sym_enumerator_list, + STATE(5766), 1, sym__scope_resolution, - STATE(6159), 1, + ACTIONS(8623), 2, + anon_sym_class, + anon_sym_struct, + STATE(4705), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7638), 2, sym_decltype, - [173670] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4214), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5952), 1, - anon_sym_LBRACK, - ACTIONS(6106), 1, - anon_sym_DASH_GT, - ACTIONS(6108), 1, - anon_sym_requires, - STATE(4813), 1, - sym_requires_clause, - STATE(4927), 1, - sym_trailing_return_type, - ACTIONS(5898), 2, - anon_sym_final, - anon_sym_override, - STATE(4586), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(4641), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat2, - ACTIONS(5950), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_GT2, - [173710] = 3, + sym_dependent_type_identifier, + [204525] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4046), 1, + ACTIONS(8625), 1, anon_sym_LBRACK, - ACTIONS(4048), 15, + ACTIONS(8565), 13, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, - anon_sym_or, - anon_sym_and, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_try, anon_sym_requires, - [173734] = 17, + [204547] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1521), 1, - anon_sym_operator, - ACTIONS(1555), 1, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1973), 1, anon_sym_decltype, - ACTIONS(1683), 1, - anon_sym_TILDE, - ACTIONS(3769), 1, + ACTIONS(5102), 1, anon_sym_COLON_COLON, - ACTIONS(7416), 1, + ACTIONS(6546), 1, + anon_sym_LBRACE, + ACTIONS(7740), 1, sym_identifier, - ACTIONS(7418), 1, - anon_sym_template, - STATE(2186), 1, - sym_template_function, - STATE(2187), 1, - sym_destructor_name, - STATE(2188), 1, - sym_dependent_identifier, - STATE(2193), 1, - sym_qualified_identifier, - STATE(2200), 1, - sym_operator_name, - STATE(3134), 1, + STATE(3578), 1, sym_template_type, - STATE(3142), 1, - sym_qualified_type_identifier, - STATE(3144), 1, - sym_dependent_type_identifier, - STATE(4565), 1, + STATE(3938), 1, + sym_enumerator_list, + STATE(5718), 1, sym__scope_resolution, - STATE(6159), 1, + ACTIONS(8627), 2, + anon_sym_class, + anon_sym_struct, + STATE(4603), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7638), 2, sym_decltype, - [173786] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4064), 1, - anon_sym_LBRACK, - ACTIONS(4066), 15, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_or, - anon_sym_and, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [173810] = 4, + sym_dependent_type_identifier, + [204587] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7422), 1, - anon_sym_LPAREN2, - ACTIONS(7424), 1, - anon_sym_LBRACK, - ACTIONS(7420), 14, + ACTIONS(8517), 14, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, anon_sym_COLON, - anon_sym_DASH_GT, anon_sym_final, anon_sym_override, anon_sym_GT2, anon_sym_try, anon_sym_requires, - [173836] = 11, + [204607] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(4214), 1, + ACTIONS(6466), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5952), 1, - anon_sym_LBRACK, - ACTIONS(6106), 1, - anon_sym_DASH_GT, - ACTIONS(6108), 1, + ACTIONS(6530), 1, anon_sym_requires, - STATE(4813), 1, + ACTIONS(6807), 1, + anon_sym_DASH_GT, + ACTIONS(8033), 1, + anon_sym_LBRACK, + STATE(5430), 1, sym_requires_clause, - STATE(4927), 1, + STATE(5472), 1, sym_trailing_return_type, - ACTIONS(5898), 2, + ACTIONS(6528), 2, anon_sym_final, anon_sym_override, - STATE(4085), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(4641), 2, + ACTIONS(8031), 2, + anon_sym_LPAREN2, + anon_sym_COLON, + STATE(5257), 2, sym_virtual_specifier, aux_sym__function_declarator_seq_repeat2, - ACTIONS(5950), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_GT2, - [173876] = 3, + STATE(5349), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [204645] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8629), 1, + anon_sym_RPAREN, + STATE(2961), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(107), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(145), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [204671] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4046), 1, + ACTIONS(5204), 1, anon_sym_LBRACK, - ACTIONS(4048), 15, - anon_sym_COMMA, + ACTIONS(8611), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5206), 11, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, anon_sym_or, - anon_sym_and, anon_sym_final, anon_sym_override, anon_sym_try, anon_sym_requires, - [173900] = 17, + [204695] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(7388), 1, - anon_sym_TILDE, - ACTIONS(7394), 1, - anon_sym_operator, - ACTIONS(7426), 1, - sym_identifier, - ACTIONS(7428), 1, - anon_sym_COLON_COLON, - ACTIONS(7430), 1, - anon_sym_template, - STATE(2896), 1, - sym_operator_name, - STATE(2897), 1, - sym_qualified_identifier, - STATE(2899), 1, - sym_dependent_identifier, - STATE(2900), 1, - sym_destructor_name, - STATE(2901), 1, - sym_template_function, - STATE(3134), 1, - sym_template_type, - STATE(3142), 1, - sym_qualified_type_identifier, - STATE(3144), 1, - sym_dependent_type_identifier, - STATE(4570), 1, - sym__scope_resolution, - STATE(6159), 1, - sym_decltype, - [173952] = 7, + ACTIONS(8631), 1, + anon_sym_RPAREN, + STATE(2961), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(107), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(145), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [204721] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5669), 1, - anon_sym_requires, - ACTIONS(6853), 1, - anon_sym_LBRACK, - STATE(4659), 1, - sym_requires_clause, - ACTIONS(4135), 2, - anon_sym_final, - anon_sym_override, - STATE(4533), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat2, - ACTIONS(6851), 9, + ACTIONS(8633), 14, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, anon_sym_GT2, anon_sym_try, - [173984] = 3, + anon_sym_requires, + [204741] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7434), 1, - anon_sym_LBRACK, - ACTIONS(7432), 15, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(8635), 1, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, + STATE(2961), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(107), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(145), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [204767] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6466), 1, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, + ACTIONS(6530), 1, + anon_sym_requires, + ACTIONS(6544), 1, + anon_sym_LBRACK, + ACTIONS(6807), 1, anon_sym_DASH_GT, + STATE(5365), 1, + sym_requires_clause, + STATE(5476), 1, + sym_trailing_return_type, + ACTIONS(6528), 2, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [174008] = 3, + ACTIONS(6542), 2, + anon_sym_LPAREN2, + anon_sym_COLON, + STATE(5277), 2, + sym_virtual_specifier, + aux_sym__function_declarator_seq_repeat2, + STATE(5349), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [204805] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1729), 1, + ACTIONS(7977), 1, + anon_sym_LPAREN2, + ACTIONS(8468), 1, anon_sym_LBRACK, - ACTIONS(1727), 15, + STATE(3839), 1, + sym_parameter_list, + STATE(5450), 1, + sym__function_declarator_seq, + ACTIONS(8474), 10, anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, - anon_sym_or, - anon_sym_and, anon_sym_final, anon_sym_override, anon_sym_try, anon_sym_requires, - [174032] = 3, + [204833] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7438), 1, - anon_sym_LBRACK, - ACTIONS(7436), 15, + ACTIONS(8553), 14, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, anon_sym_COLON, - anon_sym_DASH_GT, anon_sym_final, anon_sym_override, anon_sym_GT2, anon_sym_try, anon_sym_requires, - [174056] = 11, + [204853] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(4214), 1, + ACTIONS(6466), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6106), 1, - anon_sym_DASH_GT, - ACTIONS(6108), 1, + ACTIONS(6530), 1, anon_sym_requires, - ACTIONS(7077), 1, + ACTIONS(6544), 1, anon_sym_LBRACK, - STATE(4751), 1, + ACTIONS(6807), 1, + anon_sym_DASH_GT, + STATE(5365), 1, sym_requires_clause, - STATE(4896), 1, + STATE(5476), 1, sym_trailing_return_type, - ACTIONS(5898), 2, + ACTIONS(6528), 2, anon_sym_final, anon_sym_override, - STATE(4085), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(4609), 2, + ACTIONS(6542), 2, + anon_sym_LPAREN2, + anon_sym_COLON, + STATE(5277), 2, sym_virtual_specifier, aux_sym__function_declarator_seq_repeat2, - ACTIONS(7075), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_GT2, - [174096] = 11, + STATE(5437), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [204891] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(4214), 1, + ACTIONS(41), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6106), 1, - anon_sym_DASH_GT, - ACTIONS(6108), 1, - anon_sym_requires, - ACTIONS(7095), 1, + ACTIONS(1899), 1, + anon_sym_LBRACE, + ACTIONS(8204), 1, + anon_sym_COMMA, + ACTIONS(8206), 1, + anon_sym_LPAREN2, + ACTIONS(8212), 1, anon_sym_LBRACK, - STATE(4796), 1, - sym_requires_clause, - STATE(4912), 1, - sym_trailing_return_type, - ACTIONS(5898), 2, - anon_sym_final, - anon_sym_override, - STATE(4575), 2, + ACTIONS(8214), 1, + anon_sym_EQ, + ACTIONS(8268), 1, + anon_sym_SEMI, + STATE(3793), 1, + sym_parameter_list, + STATE(5647), 1, + sym__function_declarator_seq, + STATE(6518), 1, + aux_sym_declaration_repeat1, + STATE(5560), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(4608), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat2, - ACTIONS(7093), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_GT2, - [174136] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(7348), 1, - anon_sym_TILDE, - ACTIONS(7354), 1, - anon_sym_operator, - ACTIONS(7440), 1, - sym_identifier, - ACTIONS(7442), 1, - anon_sym_COLON_COLON, - ACTIONS(7444), 1, - anon_sym_template, - STATE(2518), 1, - sym_operator_name, - STATE(2520), 1, - sym_qualified_identifier, - STATE(2521), 1, - sym_dependent_identifier, - STATE(2539), 1, - sym_destructor_name, - STATE(2543), 1, - sym_template_function, - STATE(3134), 1, - sym_template_type, - STATE(3142), 1, - sym_qualified_type_identifier, - STATE(3144), 1, - sym_dependent_type_identifier, - STATE(4577), 1, - sym__scope_resolution, - STATE(6159), 1, - sym_decltype, - [174188] = 5, + STATE(6802), 2, + sym_argument_list, + sym_initializer_list, + [204933] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5952), 1, + ACTIONS(8637), 1, anon_sym_LBRACK, - ACTIONS(4135), 2, - anon_sym_final, - anon_sym_override, - STATE(4583), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat2, - ACTIONS(5950), 11, + ACTIONS(8633), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -371629,2012 +472398,2044 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, + anon_sym_final, + anon_sym_override, anon_sym_GT2, anon_sym_try, anon_sym_requires, - [174216] = 5, + [204955] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(3814), 1, - anon_sym_COLON_COLON, - ACTIONS(6713), 1, - anon_sym_LT, - STATE(2000), 1, - sym_template_argument_list, - ACTIONS(3836), 13, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(6466), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6530), 1, + anon_sym_requires, + ACTIONS(6807), 1, + anon_sym_DASH_GT, + ACTIONS(8021), 1, + anon_sym_LBRACK, + STATE(5420), 1, + sym_requires_clause, + STATE(5474), 1, + sym_trailing_return_type, + ACTIONS(6528), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(8019), 2, + anon_sym_LPAREN2, + anon_sym_COLON, + STATE(5261), 2, + sym_virtual_specifier, + aux_sym__function_declarator_seq_repeat2, + STATE(5349), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [204993] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4692), 13, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_final, anon_sym_override, + anon_sym_try, anon_sym_requires, - [174244] = 17, + [205012] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(7348), 1, - anon_sym_TILDE, - ACTIONS(7354), 1, - anon_sym_operator, - ACTIONS(7446), 1, - sym_identifier, - ACTIONS(7448), 1, - anon_sym_COLON_COLON, - ACTIONS(7450), 1, - anon_sym_template, - STATE(2518), 1, - sym_operator_name, - STATE(2520), 1, - sym_qualified_identifier, - STATE(2521), 1, - sym_dependent_identifier, - STATE(2539), 1, - sym_destructor_name, - STATE(2543), 1, - sym_template_function, - STATE(3134), 1, - sym_template_type, - STATE(3142), 1, - sym_qualified_type_identifier, - STATE(3144), 1, - sym_dependent_type_identifier, - STATE(4580), 1, - sym__scope_resolution, - STATE(6159), 1, - sym_decltype, - [174296] = 11, + ACTIONS(6466), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7977), 1, + anon_sym_LPAREN2, + ACTIONS(7983), 1, + anon_sym_LBRACK, + STATE(3839), 1, + sym_parameter_list, + STATE(5684), 1, + sym__function_declarator_seq, + STATE(5649), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(8639), 6, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [205043] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4214), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6106), 1, - anon_sym_DASH_GT, - ACTIONS(6108), 1, + ACTIONS(6530), 1, anon_sym_requires, - ACTIONS(7095), 1, - anon_sym_LBRACK, - STATE(4796), 1, + STATE(5430), 1, sym_requires_clause, - STATE(4912), 1, - sym_trailing_return_type, - ACTIONS(5898), 2, + ACTIONS(6528), 2, anon_sym_final, anon_sym_override, - STATE(4085), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(4608), 2, + STATE(5257), 2, sym_virtual_specifier, aux_sym__function_declarator_seq_repeat2, - ACTIONS(7093), 4, - anon_sym_DOT_DOT_DOT, + ACTIONS(8031), 7, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_GT2, - [174336] = 11, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_COLON, + [205070] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(251), 1, + anon_sym_LBRACE, + ACTIONS(6779), 1, + anon_sym_LBRACK, + ACTIONS(8641), 1, + anon_sym_SEMI, + ACTIONS(8643), 1, + anon_sym_EQ, + ACTIONS(8645), 1, + anon_sym_COLON, + ACTIONS(8647), 1, + anon_sym_try, + STATE(515), 1, + sym_compound_statement, + STATE(6660), 1, + sym_field_initializer_list, + ACTIONS(4650), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + STATE(517), 3, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + [205107] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4214), 1, + ACTIONS(6466), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6106), 1, - anon_sym_DASH_GT, - ACTIONS(6108), 1, - anon_sym_requires, - ACTIONS(6853), 1, + ACTIONS(7977), 1, + anon_sym_LPAREN2, + ACTIONS(7983), 1, anon_sym_LBRACK, - STATE(4807), 1, + STATE(3839), 1, + sym_parameter_list, + STATE(5684), 1, + sym__function_declarator_seq, + STATE(5649), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(8649), 6, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [205138] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(917), 1, + anon_sym_LBRACE, + ACTIONS(6779), 1, + anon_sym_LBRACK, + ACTIONS(8645), 1, + anon_sym_COLON, + ACTIONS(8651), 1, + anon_sym_SEMI, + ACTIONS(8653), 1, + anon_sym_EQ, + ACTIONS(8655), 1, + anon_sym_try, + STATE(1224), 1, + sym_compound_statement, + STATE(6904), 1, + sym_field_initializer_list, + ACTIONS(4650), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + STATE(1227), 3, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + [205175] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6530), 1, + anon_sym_requires, + STATE(5420), 1, sym_requires_clause, - STATE(4916), 1, - sym_trailing_return_type, - ACTIONS(5898), 2, + ACTIONS(6528), 2, anon_sym_final, anon_sym_override, - STATE(4581), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(4604), 2, + STATE(5261), 2, sym_virtual_specifier, aux_sym__function_declarator_seq_repeat2, - ACTIONS(6851), 4, - anon_sym_DOT_DOT_DOT, + ACTIONS(8019), 7, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_GT2, - [174376] = 5, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_COLON, + [205202] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7454), 1, - anon_sym_LBRACK, - ACTIONS(7456), 2, + STATE(5299), 1, + sym_string_literal, + STATE(5487), 1, + sym_raw_string_literal, + STATE(6263), 1, + sym_concatenated_string, + ACTIONS(107), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(145), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [205229] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6530), 1, + anon_sym_requires, + STATE(5407), 1, + sym_requires_clause, + ACTIONS(6528), 2, anon_sym_final, anon_sym_override, - STATE(4583), 2, + STATE(5262), 2, sym_virtual_specifier, aux_sym__function_declarator_seq_repeat2, - ACTIONS(7452), 11, + ACTIONS(8276), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_EQ, + anon_sym_LBRACK, anon_sym_COLON, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [174404] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(7358), 1, - anon_sym_TILDE, - ACTIONS(7364), 1, - anon_sym_operator, - ACTIONS(7459), 1, - sym_identifier, - ACTIONS(7461), 1, - anon_sym_COLON_COLON, - ACTIONS(7463), 1, - anon_sym_template, - STATE(2704), 1, - sym_operator_name, - STATE(2708), 1, - sym_qualified_identifier, - STATE(2711), 1, - sym_dependent_identifier, - STATE(2712), 1, - sym_destructor_name, - STATE(2716), 1, - sym_template_function, - STATE(3134), 1, - sym_template_type, - STATE(3142), 1, - sym_qualified_type_identifier, - STATE(3144), 1, - sym_dependent_type_identifier, - STATE(4584), 1, - sym__scope_resolution, - STATE(6159), 1, - sym_decltype, - [174456] = 17, + [205256] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(7404), 1, - anon_sym_TILDE, - ACTIONS(7410), 1, - anon_sym_operator, - ACTIONS(7465), 1, - sym_identifier, - ACTIONS(7467), 1, - anon_sym_COLON_COLON, - ACTIONS(7469), 1, - anon_sym_template, - STATE(2194), 1, - sym_qualified_type_identifier, - STATE(2288), 1, - sym_template_type, - STATE(2298), 1, - sym_dependent_type_identifier, - STATE(2605), 1, - sym_template_function, - STATE(2617), 1, - sym_operator_name, - STATE(2619), 1, - sym_dependent_identifier, - STATE(2622), 1, - sym_destructor_name, - STATE(2623), 1, - sym_qualified_identifier, - STATE(4585), 1, - sym__scope_resolution, - STATE(6159), 1, - sym_decltype, - [174508] = 11, + STATE(5281), 1, + sym_string_literal, + STATE(5487), 1, + sym_raw_string_literal, + STATE(6313), 1, + sym_concatenated_string, + ACTIONS(107), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(145), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [205283] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4214), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6106), 1, - anon_sym_DASH_GT, - ACTIONS(6108), 1, + ACTIONS(6530), 1, anon_sym_requires, - ACTIONS(6853), 1, - anon_sym_LBRACK, - STATE(4807), 1, + STATE(5417), 1, sym_requires_clause, - STATE(4916), 1, - sym_trailing_return_type, - ACTIONS(5898), 2, + ACTIONS(6528), 2, anon_sym_final, anon_sym_override, - STATE(4085), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(4604), 2, + STATE(5254), 2, sym_virtual_specifier, aux_sym__function_declarator_seq_repeat2, - ACTIONS(6851), 4, - anon_sym_DOT_DOT_DOT, + ACTIONS(7724), 7, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_GT2, - [174548] = 3, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_COLON, + [205310] = 6, + ACTIONS(3), 1, + sym_comment, + STATE(5242), 1, + sym_string_literal, + STATE(5487), 1, + sym_raw_string_literal, + STATE(6241), 1, + sym_concatenated_string, + ACTIONS(107), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(145), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [205337] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(4060), 1, + ACTIONS(6779), 1, anon_sym_LBRACK, - ACTIONS(4062), 15, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(8645), 1, + anon_sym_COLON, + ACTIONS(8657), 1, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, + ACTIONS(8659), 1, anon_sym_LBRACE, + ACTIONS(8661), 1, anon_sym_EQ, + ACTIONS(8663), 1, + anon_sym_try, + STATE(2624), 1, + sym_compound_statement, + STATE(6804), 1, + sym_field_initializer_list, + ACTIONS(4650), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + STATE(2532), 3, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + [205374] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6779), 1, + anon_sym_LBRACK, + ACTIONS(8645), 1, anon_sym_COLON, - anon_sym_or, - anon_sym_and, - anon_sym_final, - anon_sym_override, + ACTIONS(8665), 1, + anon_sym_SEMI, + ACTIONS(8667), 1, + anon_sym_LBRACE, + ACTIONS(8669), 1, + anon_sym_EQ, + ACTIONS(8671), 1, anon_sym_try, - anon_sym_requires, - [174572] = 6, + STATE(2266), 1, + sym_compound_statement, + STATE(6771), 1, + sym_field_initializer_list, + ACTIONS(4650), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + STATE(2268), 3, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + [205411] = 6, + ACTIONS(3), 1, + sym_comment, + STATE(5255), 1, + sym_string_literal, + STATE(5487), 1, + sym_raw_string_literal, + STATE(6198), 1, + sym_concatenated_string, + ACTIONS(107), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(145), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [205438] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7111), 1, + ACTIONS(6466), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7977), 1, anon_sym_LPAREN2, - ACTIONS(7473), 1, + ACTIONS(7983), 1, anon_sym_LBRACK, - STATE(3300), 1, + STATE(3839), 1, sym_parameter_list, - STATE(4684), 1, + STATE(5684), 1, sym__function_declarator_seq, - ACTIONS(7471), 11, + STATE(5649), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(8673), 6, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, + anon_sym_COLON, anon_sym_try, - anon_sym_requires, - [174601] = 13, + [205469] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3908), 1, + ACTIONS(4572), 1, anon_sym_LPAREN2, - ACTIONS(3910), 1, + ACTIONS(6919), 1, + anon_sym_LBRACK, + ACTIONS(6997), 1, anon_sym_STAR, - ACTIONS(3912), 1, + ACTIONS(6999), 1, anon_sym_AMP_AMP, - ACTIONS(3914), 1, + ACTIONS(7001), 1, anon_sym_AMP, - ACTIONS(6514), 1, - anon_sym_LBRACK, - ACTIONS(7304), 1, - anon_sym_LBRACE, - STATE(3409), 1, - sym_compound_statement, - STATE(3482), 1, + STATE(3888), 1, sym_parameter_list, - STATE(4765), 1, + STATE(5457), 1, sym__function_declarator_seq, - STATE(5183), 1, - sym_abstract_function_declarator, - STATE(5197), 1, + STATE(5849), 1, sym__abstract_declarator, - STATE(4764), 4, + STATE(5452), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, + sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - [174644] = 14, + [205504] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1521), 1, - anon_sym_operator, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(1683), 1, - anon_sym_TILDE, - ACTIONS(7475), 1, - sym_identifier, - ACTIONS(7477), 1, - anon_sym_COLON_COLON, - ACTIONS(7479), 1, - anon_sym_template, - STATE(2186), 1, - sym_template_function, - STATE(2187), 1, - sym_destructor_name, - STATE(2188), 1, - sym_dependent_identifier, - STATE(2193), 1, - sym_qualified_identifier, - STATE(2200), 1, - sym_operator_name, - STATE(4590), 1, - sym__scope_resolution, - STATE(6159), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - [174689] = 7, + STATE(5228), 1, + sym_string_literal, + STATE(5487), 1, + sym_raw_string_literal, + STATE(6377), 1, + sym_concatenated_string, + ACTIONS(107), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(145), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [205531] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5735), 1, + ACTIONS(6530), 1, anon_sym_requires, - ACTIONS(5952), 1, - anon_sym_LBRACK, - STATE(4723), 1, + STATE(5365), 1, sym_requires_clause, - ACTIONS(4135), 2, + ACTIONS(6528), 2, anon_sym_final, anon_sym_override, - STATE(4538), 2, + STATE(5277), 2, sym_virtual_specifier, aux_sym__function_declarator_seq_repeat2, - ACTIONS(5950), 8, + ACTIONS(6542), 7, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_EQ, + anon_sym_LBRACK, anon_sym_COLON, - anon_sym_try, - [174720] = 14, + [205558] = 6, + ACTIONS(3), 1, + sym_comment, + STATE(5285), 1, + sym_string_literal, + STATE(5487), 1, + sym_raw_string_literal, + STATE(6559), 1, + sym_concatenated_string, + ACTIONS(107), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(145), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [205585] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1489), 1, + ACTIONS(917), 1, anon_sym_LBRACE, - ACTIONS(5709), 1, + ACTIONS(6779), 1, + anon_sym_LBRACK, + ACTIONS(8645), 1, + anon_sym_COLON, + ACTIONS(8653), 1, + anon_sym_EQ, + ACTIONS(8655), 1, + anon_sym_try, + ACTIONS(8675), 1, + anon_sym_SEMI, + STATE(1283), 1, + sym_compound_statement, + STATE(6942), 1, + sym_field_initializer_list, + ACTIONS(4650), 2, + anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - ACTIONS(7272), 1, - anon_sym_COMMA, - ACTIONS(7274), 1, + STATE(1284), 3, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + [205622] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(2961), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(107), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(145), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [205645] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(738), 1, + anon_sym_LBRACE, + ACTIONS(6779), 1, + anon_sym_LBRACK, + ACTIONS(8645), 1, + anon_sym_COLON, + ACTIONS(8677), 1, + anon_sym_SEMI, + ACTIONS(8679), 1, + anon_sym_EQ, + ACTIONS(8681), 1, + anon_sym_try, + STATE(1285), 1, + sym_compound_statement, + STATE(6747), 1, + sym_field_initializer_list, + ACTIONS(4650), 2, anon_sym_LPAREN2, - ACTIONS(7280), 1, + anon_sym_LBRACK_LBRACK, + STATE(1286), 3, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + [205682] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6779), 1, anon_sym_LBRACK, - ACTIONS(7282), 1, + ACTIONS(8645), 1, + anon_sym_COLON, + ACTIONS(8667), 1, + anon_sym_LBRACE, + ACTIONS(8669), 1, anon_sym_EQ, - ACTIONS(7481), 1, + ACTIONS(8671), 1, + anon_sym_try, + ACTIONS(8683), 1, anon_sym_SEMI, - ACTIONS(7483), 1, - anon_sym_COLON, - STATE(3362), 1, - sym_parameter_list, - STATE(4901), 1, - sym__function_declarator_seq, - STATE(5408), 1, - aux_sym_declaration_repeat1, - STATE(4962), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(5834), 2, - sym_argument_list, - sym_initializer_list, - [174765] = 10, + STATE(2295), 1, + sym_compound_statement, + STATE(6852), 1, + sym_field_initializer_list, + ACTIONS(4650), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + STATE(2310), 3, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + [205719] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(6582), 1, - anon_sym_COLON_COLON, - ACTIONS(7485), 1, - sym_identifier, - STATE(1946), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(5025), 1, - sym__scope_resolution, - STATE(2659), 2, - sym_sized_type_specifier, - sym_qualified_type_identifier, - STATE(6159), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(6584), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - [174802] = 4, + STATE(5298), 1, + sym_string_literal, + STATE(5487), 1, + sym_raw_string_literal, + STATE(6507), 1, + sym_concatenated_string, + ACTIONS(107), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(145), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [205746] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(7253), 1, + sym_concatenated_string, + STATE(5405), 2, + sym_string_literal, + sym_raw_string_literal, + ACTIONS(107), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(145), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [205771] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5898), 2, + ACTIONS(6409), 1, + anon_sym_LBRACK, + ACTIONS(6534), 1, + anon_sym_requires, + STATE(5422), 1, + sym_requires_clause, + ACTIONS(4880), 2, anon_sym_final, anon_sym_override, - STATE(4601), 2, + STATE(5301), 2, sym_virtual_specifier, aux_sym__function_declarator_seq_repeat2, - ACTIONS(7338), 11, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(6407), 6, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_try, + [205800] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(7225), 1, + sym_concatenated_string, + STATE(5370), 2, + sym_string_literal, + sym_raw_string_literal, + ACTIONS(107), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(145), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [205825] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(7193), 1, + sym_concatenated_string, + STATE(5402), 2, + sym_string_literal, + sym_raw_string_literal, + ACTIONS(107), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(145), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [205850] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(351), 1, anon_sym_LBRACE, + ACTIONS(6779), 1, anon_sym_LBRACK, + ACTIONS(8645), 1, + anon_sym_COLON, + ACTIONS(8685), 1, + anon_sym_SEMI, + ACTIONS(8687), 1, anon_sym_EQ, - anon_sym_GT2, + ACTIONS(8689), 1, anon_sym_try, - anon_sym_requires, - [174827] = 10, + STATE(807), 1, + sym_compound_statement, + STATE(6903), 1, + sym_field_initializer_list, + ACTIONS(4650), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + STATE(808), 3, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + [205887] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(3916), 1, - anon_sym_COLON_COLON, - ACTIONS(7487), 1, - sym_identifier, - STATE(3171), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(5034), 1, - sym__scope_resolution, - STATE(3271), 2, - sym_sized_type_specifier, - sym_qualified_type_identifier, - STATE(6159), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(61), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - [174864] = 14, + STATE(7159), 1, + sym_concatenated_string, + STATE(5376), 2, + sym_string_literal, + sym_raw_string_literal, + ACTIONS(107), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(145), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [205912] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(7547), 1, + sym_concatenated_string, + STATE(5382), 2, + sym_string_literal, + sym_raw_string_literal, + ACTIONS(107), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(145), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [205937] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1489), 1, + ACTIONS(738), 1, anon_sym_LBRACE, - ACTIONS(5709), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7272), 1, - anon_sym_COMMA, - ACTIONS(7274), 1, - anon_sym_LPAREN2, - ACTIONS(7280), 1, + ACTIONS(6779), 1, anon_sym_LBRACK, - ACTIONS(7282), 1, + ACTIONS(8645), 1, + anon_sym_COLON, + ACTIONS(8679), 1, anon_sym_EQ, - ACTIONS(7481), 1, + ACTIONS(8681), 1, + anon_sym_try, + ACTIONS(8691), 1, anon_sym_SEMI, - ACTIONS(7489), 1, - anon_sym_COLON, - STATE(3362), 1, - sym_parameter_list, - STATE(4901), 1, - sym__function_declarator_seq, - STATE(5408), 1, - aux_sym_declaration_repeat1, - STATE(4962), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(5834), 2, - sym_argument_list, - sym_initializer_list, - [174909] = 13, + STATE(1199), 1, + sym_compound_statement, + STATE(6724), 1, + sym_field_initializer_list, + ACTIONS(4650), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + STATE(1200), 3, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + [205974] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3908), 1, + ACTIONS(6534), 1, + anon_sym_requires, + ACTIONS(6544), 1, + anon_sym_LBRACK, + STATE(5360), 1, + sym_requires_clause, + ACTIONS(4880), 2, + anon_sym_final, + anon_sym_override, + STATE(5295), 2, + sym_virtual_specifier, + aux_sym__function_declarator_seq_repeat2, + ACTIONS(6542), 6, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(3910), 1, - anon_sym_STAR, - ACTIONS(3912), 1, - anon_sym_AMP_AMP, - ACTIONS(3914), 1, - anon_sym_AMP, - ACTIONS(6514), 1, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_try, + [206003] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6779), 1, anon_sym_LBRACK, - ACTIONS(7270), 1, + ACTIONS(8645), 1, + anon_sym_COLON, + ACTIONS(8693), 1, + anon_sym_SEMI, + ACTIONS(8695), 1, anon_sym_LBRACE, - STATE(3050), 1, + ACTIONS(8697), 1, + anon_sym_EQ, + ACTIONS(8699), 1, + anon_sym_try, + STATE(2687), 1, sym_compound_statement, - STATE(3482), 1, - sym_parameter_list, - STATE(4765), 1, - sym__function_declarator_seq, - STATE(5197), 1, - sym__abstract_declarator, - STATE(5248), 1, - sym_abstract_function_declarator, - STATE(4764), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - [174952] = 14, + STATE(6719), 1, + sym_field_initializer_list, + ACTIONS(4650), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + STATE(2684), 3, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + [206040] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1521), 1, - anon_sym_operator, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(1683), 1, - anon_sym_TILDE, - ACTIONS(4312), 1, - anon_sym_COLON_COLON, - ACTIONS(7491), 1, - sym_identifier, - ACTIONS(7493), 1, - anon_sym_template, - STATE(4598), 1, - sym__scope_resolution, - STATE(4902), 1, - sym_destructor_name, - STATE(4908), 1, - sym_dependent_identifier, - STATE(4913), 1, - sym_qualified_identifier, - STATE(4914), 1, - sym_operator_name, - STATE(4921), 1, - sym_template_function, - STATE(6159), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - [174997] = 7, + STATE(5275), 1, + sym_string_literal, + STATE(5487), 1, + sym_raw_string_literal, + STATE(6566), 1, + sym_concatenated_string, + ACTIONS(107), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(145), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [206067] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5675), 1, - anon_sym_LBRACK, - ACTIONS(5735), 1, + STATE(7101), 1, + sym_concatenated_string, + STATE(5456), 2, + sym_string_literal, + sym_raw_string_literal, + ACTIONS(107), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(145), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [206092] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6534), 1, anon_sym_requires, - STATE(4716), 1, + ACTIONS(7726), 1, + anon_sym_LBRACK, + STATE(5358), 1, sym_requires_clause, - ACTIONS(4135), 2, + ACTIONS(4880), 2, anon_sym_final, anon_sym_override, - STATE(4578), 2, + STATE(5288), 2, sym_virtual_specifier, aux_sym__function_declarator_seq_repeat2, - ACTIONS(5673), 8, - anon_sym_COMMA, + ACTIONS(7724), 6, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_try, + [206121] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6466), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7977), 1, + anon_sym_LPAREN2, + ACTIONS(7983), 1, + anon_sym_LBRACK, + STATE(3839), 1, + sym_parameter_list, + STATE(5684), 1, + sym__function_declarator_seq, + STATE(5649), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(8701), 6, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, anon_sym_try, - [175028] = 10, + [206152] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(5598), 1, - anon_sym_COLON_COLON, - ACTIONS(7487), 1, - sym_identifier, - STATE(3905), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(5035), 1, - sym__scope_resolution, - STATE(3651), 2, - sym_sized_type_specifier, - sym_qualified_type_identifier, - STATE(6159), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(5534), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - [175065] = 4, + ACTIONS(6534), 1, + anon_sym_requires, + ACTIONS(8033), 1, + anon_sym_LBRACK, + STATE(5419), 1, + sym_requires_clause, + ACTIONS(4880), 2, + anon_sym_final, + anon_sym_override, + STATE(5258), 2, + sym_virtual_specifier, + aux_sym__function_declarator_seq_repeat2, + ACTIONS(8031), 6, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_try, + [206181] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7495), 2, + ACTIONS(6534), 1, + anon_sym_requires, + ACTIONS(8021), 1, + anon_sym_LBRACK, + STATE(5388), 1, + sym_requires_clause, + ACTIONS(4880), 2, anon_sym_final, anon_sym_override, - STATE(4601), 2, + STATE(5223), 2, sym_virtual_specifier, aux_sym__function_declarator_seq_repeat2, - ACTIONS(7452), 11, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(8019), 6, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_GT2, anon_sym_try, - anon_sym_requires, - [175090] = 13, + [206210] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(3908), 1, - anon_sym_LPAREN2, - ACTIONS(3910), 1, - anon_sym_STAR, - ACTIONS(3912), 1, - anon_sym_AMP_AMP, - ACTIONS(3914), 1, - anon_sym_AMP, - ACTIONS(6514), 1, + ACTIONS(6779), 1, anon_sym_LBRACK, - ACTIONS(7312), 1, + ACTIONS(8645), 1, + anon_sym_COLON, + ACTIONS(8695), 1, anon_sym_LBRACE, - STATE(3482), 1, - sym_parameter_list, - STATE(4760), 1, + ACTIONS(8697), 1, + anon_sym_EQ, + ACTIONS(8699), 1, + anon_sym_try, + ACTIONS(8703), 1, + anon_sym_SEMI, + STATE(2709), 1, sym_compound_statement, - STATE(4765), 1, - sym__function_declarator_seq, - STATE(5197), 1, - sym__abstract_declarator, - STATE(5206), 1, - sym_abstract_function_declarator, - STATE(4764), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - [175133] = 14, + STATE(6745), 1, + sym_field_initializer_list, + ACTIONS(4650), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + STATE(2710), 3, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + [206247] = 6, + ACTIONS(3), 1, + sym_comment, + STATE(5249), 1, + sym_string_literal, + STATE(5487), 1, + sym_raw_string_literal, + STATE(6454), 1, + sym_concatenated_string, + ACTIONS(107), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(145), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [206274] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1489), 1, + ACTIONS(6534), 1, + anon_sym_requires, + ACTIONS(8278), 1, + anon_sym_LBRACK, + STATE(5387), 1, + sym_requires_clause, + ACTIONS(4880), 2, + anon_sym_final, + anon_sym_override, + STATE(5269), 2, + sym_virtual_specifier, + aux_sym__function_declarator_seq_repeat2, + ACTIONS(8276), 6, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - ACTIONS(5709), 1, + anon_sym_try, + [206303] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(7454), 1, + sym_concatenated_string, + STATE(5454), 2, + sym_string_literal, + sym_raw_string_literal, + ACTIONS(107), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(145), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [206328] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(41), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7272), 1, - anon_sym_COMMA, - ACTIONS(7274), 1, + ACTIONS(1899), 1, + anon_sym_LBRACE, + ACTIONS(8206), 1, anon_sym_LPAREN2, - ACTIONS(7280), 1, + ACTIONS(8212), 1, anon_sym_LBRACK, - ACTIONS(7282), 1, + ACTIONS(8214), 1, anon_sym_EQ, - ACTIONS(7481), 1, - anon_sym_SEMI, - ACTIONS(7498), 1, - anon_sym_COLON, - STATE(3362), 1, + STATE(3793), 1, sym_parameter_list, - STATE(4901), 1, + STATE(5647), 1, sym__function_declarator_seq, - STATE(5408), 1, - aux_sym_declaration_repeat1, - STATE(4962), 2, + ACTIONS(8705), 2, + anon_sym_COMMA, + anon_sym_SEMI, + STATE(5560), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5834), 2, + STATE(6802), 2, sym_argument_list, sym_initializer_list, - [175178] = 4, + [206365] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5898), 2, - anon_sym_final, - anon_sym_override, - STATE(4601), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat2, - ACTIONS(7093), 11, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + STATE(7016), 1, + sym_concatenated_string, + STATE(5369), 2, + sym_string_literal, + sym_raw_string_literal, + ACTIONS(107), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(145), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [206390] = 6, + ACTIONS(3), 1, + sym_comment, + STATE(5294), 1, + sym_string_literal, + STATE(5487), 1, + sym_raw_string_literal, + STATE(6463), 1, + sym_concatenated_string, + ACTIONS(107), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(145), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [206417] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4700), 13, anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_EQ, - anon_sym_GT2, + anon_sym_or, + anon_sym_and, + anon_sym_final, + anon_sym_override, anon_sym_try, anon_sym_requires, - [175203] = 14, + [206436] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1521), 1, - anon_sym_operator, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(1683), 1, - anon_sym_TILDE, - ACTIONS(4377), 1, - anon_sym_COLON_COLON, - ACTIONS(7294), 1, - sym_identifier, - ACTIONS(7296), 1, - anon_sym_template, - STATE(2186), 1, - sym_template_function, - STATE(2187), 1, - sym_destructor_name, - STATE(2188), 1, - sym_dependent_identifier, - STATE(2193), 1, - sym_qualified_identifier, - STATE(2200), 1, - sym_operator_name, - STATE(4605), 1, - sym__scope_resolution, - STATE(6159), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - [175248] = 6, + ACTIONS(8707), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8709), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5301), 9, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [206459] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7111), 1, + ACTIONS(4736), 13, anon_sym_LPAREN2, - ACTIONS(7473), 1, - anon_sym_LBRACK, - STATE(3300), 1, - sym_parameter_list, - STATE(4684), 1, - sym__function_declarator_seq, - ACTIONS(7500), 11, - anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, + anon_sym_or, + anon_sym_and, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_try, anon_sym_requires, - [175277] = 6, + [206478] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7111), 1, + ACTIONS(4724), 13, anon_sym_LPAREN2, - ACTIONS(7473), 1, - anon_sym_LBRACK, - STATE(3300), 1, - sym_parameter_list, - STATE(4684), 1, - sym__function_declarator_seq, - ACTIONS(7502), 11, - anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, + anon_sym_or, + anon_sym_and, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_try, anon_sym_requires, - [175306] = 4, + [206497] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5898), 2, - anon_sym_final, - anon_sym_override, - STATE(4601), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat2, - ACTIONS(7075), 11, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(4724), 13, anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_EQ, - anon_sym_GT2, + anon_sym_or, + anon_sym_and, + anon_sym_final, + anon_sym_override, anon_sym_try, anon_sym_requires, - [175331] = 4, + [206516] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5898), 2, - anon_sym_final, - anon_sym_override, - STATE(4601), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat2, - ACTIONS(7378), 11, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + STATE(5296), 1, + sym_string_literal, + STATE(5487), 1, + sym_raw_string_literal, + STATE(6387), 1, + sym_concatenated_string, + ACTIONS(107), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(145), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [206543] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4724), 13, anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_EQ, - anon_sym_GT2, + anon_sym_or, + anon_sym_and, + anon_sym_final, + anon_sym_override, anon_sym_try, anon_sym_requires, - [175356] = 6, + [206562] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7111), 1, - anon_sym_LPAREN2, - ACTIONS(7473), 1, + ACTIONS(49), 1, + anon_sym_LBRACE, + ACTIONS(6779), 1, anon_sym_LBRACK, - STATE(3300), 1, - sym_parameter_list, - STATE(4684), 1, - sym__function_declarator_seq, - ACTIONS(7504), 11, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(8645), 1, + anon_sym_COLON, + ACTIONS(8711), 1, anon_sym_SEMI, + ACTIONS(8713), 1, + anon_sym_EQ, + ACTIONS(8715), 1, + anon_sym_try, + STATE(1323), 1, + sym_compound_statement, + STATE(6841), 1, + sym_field_initializer_list, + ACTIONS(4650), 2, + anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, + STATE(1322), 3, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + [206599] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4696), 13, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, + anon_sym_or, + anon_sym_and, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_try, anon_sym_requires, - [175385] = 6, + [206618] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7111), 1, + ACTIONS(4728), 13, anon_sym_LPAREN2, - ACTIONS(7473), 1, - anon_sym_LBRACK, - STATE(3300), 1, - sym_parameter_list, - STATE(4684), 1, - sym__function_declarator_seq, - ACTIONS(7506), 11, - anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, + anon_sym_or, + anon_sym_and, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_try, anon_sym_requires, - [175414] = 7, + [206637] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5735), 1, - anon_sym_requires, - ACTIONS(7077), 1, + ACTIONS(4688), 13, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_LBRACK, - STATE(4728), 1, - sym_requires_clause, - ACTIONS(4135), 2, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, anon_sym_final, anon_sym_override, - STATE(4541), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat2, - ACTIONS(7075), 8, - anon_sym_COMMA, + anon_sym_try, + anon_sym_requires, + [206656] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4720), 13, anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, - anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_final, + anon_sym_override, anon_sym_try, - [175445] = 6, + anon_sym_requires, + [206675] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7111), 1, + ACTIONS(4708), 13, anon_sym_LPAREN2, - ACTIONS(7473), 1, - anon_sym_LBRACK, - STATE(3300), 1, - sym_parameter_list, - STATE(4684), 1, - sym__function_declarator_seq, - ACTIONS(7508), 11, - anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, + anon_sym_or, + anon_sym_and, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_try, anon_sym_requires, - [175474] = 14, + [206694] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1489), 1, + ACTIONS(251), 1, anon_sym_LBRACE, - ACTIONS(5709), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7272), 1, - anon_sym_COMMA, - ACTIONS(7274), 1, - anon_sym_LPAREN2, - ACTIONS(7280), 1, + ACTIONS(6779), 1, anon_sym_LBRACK, - ACTIONS(7282), 1, + ACTIONS(8643), 1, anon_sym_EQ, - ACTIONS(7481), 1, - anon_sym_SEMI, - ACTIONS(7510), 1, + ACTIONS(8645), 1, anon_sym_COLON, - STATE(3362), 1, - sym_parameter_list, - STATE(4901), 1, - sym__function_declarator_seq, - STATE(5408), 1, - aux_sym_declaration_repeat1, - STATE(4962), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(5834), 2, - sym_argument_list, - sym_initializer_list, - [175519] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(6524), 1, - anon_sym_COLON_COLON, - ACTIONS(7512), 1, - sym_identifier, - STATE(1866), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(5022), 1, - sym__scope_resolution, - STATE(2142), 2, - sym_sized_type_specifier, - sym_qualified_type_identifier, - STATE(6159), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(6526), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - [175556] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3908), 1, - anon_sym_LPAREN2, - ACTIONS(3910), 1, - anon_sym_STAR, - ACTIONS(3912), 1, - anon_sym_AMP_AMP, - ACTIONS(3914), 1, - anon_sym_AMP, - ACTIONS(6514), 1, - anon_sym_LBRACK, - ACTIONS(7286), 1, - anon_sym_LBRACE, - STATE(3482), 1, - sym_parameter_list, - STATE(4553), 1, + ACTIONS(8647), 1, + anon_sym_try, + ACTIONS(8717), 1, + anon_sym_SEMI, + STATE(578), 1, sym_compound_statement, - STATE(4765), 1, - sym__function_declarator_seq, - STATE(5197), 1, - sym__abstract_declarator, - STATE(5275), 1, - sym_abstract_function_declarator, - STATE(4764), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - [175599] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(6568), 1, - anon_sym_COLON_COLON, - ACTIONS(7514), 1, - sym_identifier, - STATE(2022), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(5020), 1, - sym__scope_resolution, - STATE(2877), 2, - sym_sized_type_specifier, - sym_qualified_type_identifier, - STATE(6159), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(2420), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - [175636] = 13, + STATE(6696), 1, + sym_field_initializer_list, + ACTIONS(4650), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + STATE(581), 3, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + [206731] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3908), 1, + ACTIONS(4712), 13, anon_sym_LPAREN2, - ACTIONS(3910), 1, - anon_sym_STAR, - ACTIONS(3912), 1, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(3914), 1, - anon_sym_AMP, - ACTIONS(6514), 1, - anon_sym_LBRACK, - ACTIONS(7268), 1, + anon_sym_SEMI, anon_sym_LBRACE, - STATE(3018), 1, - sym_compound_statement, - STATE(3482), 1, - sym_parameter_list, - STATE(4765), 1, - sym__function_declarator_seq, - STATE(5197), 1, - sym__abstract_declarator, - STATE(5314), 1, - sym_abstract_function_declarator, - STATE(4764), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - [175679] = 13, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [206750] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3908), 1, + ACTIONS(4704), 13, anon_sym_LPAREN2, - ACTIONS(3910), 1, - anon_sym_STAR, - ACTIONS(3912), 1, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(3914), 1, - anon_sym_AMP, - ACTIONS(6514), 1, - anon_sym_LBRACK, - ACTIONS(7302), 1, + anon_sym_SEMI, anon_sym_LBRACE, - STATE(3180), 1, - sym_compound_statement, - STATE(3482), 1, - sym_parameter_list, - STATE(4765), 1, - sym__function_declarator_seq, - STATE(5197), 1, - sym__abstract_declarator, - STATE(5327), 1, - sym_abstract_function_declarator, - STATE(4764), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - [175722] = 6, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [206769] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7111), 1, + ACTIONS(4732), 13, anon_sym_LPAREN2, - ACTIONS(7473), 1, - anon_sym_LBRACK, - STATE(3300), 1, - sym_parameter_list, - STATE(4684), 1, - sym__function_declarator_seq, - ACTIONS(7516), 11, - anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, + anon_sym_or, + anon_sym_and, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_try, anon_sym_requires, - [175751] = 10, + [206788] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(2928), 1, - anon_sym_COLON_COLON, - ACTIONS(7487), 1, - sym_identifier, - STATE(3171), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(5006), 1, - sym__scope_resolution, - STATE(3271), 2, - sym_sized_type_specifier, - sym_qualified_type_identifier, - STATE(6159), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(61), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - [175788] = 4, + ACTIONS(6779), 1, + anon_sym_LBRACK, + ACTIONS(8645), 1, + anon_sym_COLON, + ACTIONS(8659), 1, + anon_sym_LBRACE, + ACTIONS(8661), 1, + anon_sym_EQ, + ACTIONS(8663), 1, + anon_sym_try, + ACTIONS(8719), 1, + anon_sym_SEMI, + STATE(2717), 1, + sym_compound_statement, + STATE(6773), 1, + sym_field_initializer_list, + ACTIONS(4650), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + STATE(2716), 3, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + [206825] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5898), 2, - anon_sym_final, - anon_sym_override, - STATE(4601), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat2, - ACTIONS(5950), 11, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(8709), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5206), 11, anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_EQ, - anon_sym_GT2, + anon_sym_or, + anon_sym_final, + anon_sym_override, anon_sym_try, anon_sym_requires, - [175813] = 13, + [206846] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3908), 1, + ACTIONS(4716), 13, anon_sym_LPAREN2, - ACTIONS(3910), 1, - anon_sym_STAR, - ACTIONS(3912), 1, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(3914), 1, - anon_sym_AMP, - ACTIONS(6514), 1, - anon_sym_LBRACK, - ACTIONS(7290), 1, + anon_sym_SEMI, anon_sym_LBRACE, - STATE(2551), 1, - sym_compound_statement, - STATE(3482), 1, - sym_parameter_list, - STATE(4765), 1, - sym__function_declarator_seq, - STATE(5197), 1, - sym__abstract_declarator, - STATE(5262), 1, - sym_abstract_function_declarator, - STATE(4764), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - [175856] = 10, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [206865] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(5576), 1, - anon_sym_COLON_COLON, - ACTIONS(7518), 1, - sym_identifier, - STATE(4040), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(5024), 1, - sym__scope_resolution, - STATE(4222), 2, - sym_sized_type_specifier, - sym_qualified_type_identifier, - STATE(6159), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(5578), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - [175893] = 5, + STATE(7046), 1, + sym_concatenated_string, + STATE(5458), 2, + sym_string_literal, + sym_raw_string_literal, + ACTIONS(107), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(145), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [206890] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6765), 1, - anon_sym_LBRACK, - ACTIONS(7520), 1, - anon_sym_LBRACK_LBRACK, - STATE(4625), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(6767), 11, - anon_sym_COMMA, + ACTIONS(2540), 13, anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, - anon_sym_COLON, - anon_sym_DASH_GT, + anon_sym_or, + anon_sym_and, anon_sym_final, anon_sym_override, anon_sym_try, anon_sym_requires, - [175920] = 7, + [206909] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5735), 1, - anon_sym_requires, - ACTIONS(7380), 1, + ACTIONS(2534), 13, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_LBRACK, - STATE(4653), 1, - sym_requires_clause, - ACTIONS(4135), 2, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, anon_sym_final, anon_sym_override, - STATE(4528), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat2, - ACTIONS(7378), 8, - anon_sym_COMMA, + anon_sym_try, + anon_sym_requires, + [206928] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6466), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7977), 1, anon_sym_LPAREN2, + ACTIONS(7983), 1, + anon_sym_LBRACK, + STATE(3839), 1, + sym_parameter_list, + STATE(5684), 1, + sym__function_declarator_seq, + STATE(5649), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(8721), 6, + anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, anon_sym_try, - [175951] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(6612), 1, - anon_sym_COLON_COLON, - ACTIONS(7523), 1, - sym_identifier, - STATE(1922), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(4990), 1, - sym__scope_resolution, - STATE(2454), 2, - sym_sized_type_specifier, - sym_qualified_type_identifier, - STATE(6159), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(1503), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - [175988] = 10, + [206959] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(6546), 1, - anon_sym_COLON_COLON, - ACTIONS(7525), 1, - sym_identifier, - STATE(1976), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(5036), 1, - sym__scope_resolution, - STATE(2812), 2, - sym_sized_type_specifier, - sym_qualified_type_identifier, - STATE(6159), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(6548), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - [176025] = 13, + STATE(5243), 1, + sym_string_literal, + STATE(5487), 1, + sym_raw_string_literal, + STATE(6372), 1, + sym_concatenated_string, + ACTIONS(107), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(145), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [206986] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(3908), 1, - anon_sym_LPAREN2, - ACTIONS(3910), 1, - anon_sym_STAR, - ACTIONS(3912), 1, - anon_sym_AMP_AMP, - ACTIONS(3914), 1, - anon_sym_AMP, - ACTIONS(6514), 1, - anon_sym_LBRACK, - ACTIONS(7300), 1, + ACTIONS(49), 1, anon_sym_LBRACE, - STATE(1882), 1, + ACTIONS(6779), 1, + anon_sym_LBRACK, + ACTIONS(8645), 1, + anon_sym_COLON, + ACTIONS(8713), 1, + anon_sym_EQ, + ACTIONS(8715), 1, + anon_sym_try, + ACTIONS(8723), 1, + anon_sym_SEMI, + STATE(1359), 1, sym_compound_statement, - STATE(3482), 1, - sym_parameter_list, - STATE(4765), 1, - sym__function_declarator_seq, - STATE(5197), 1, - sym__abstract_declarator, - STATE(5325), 1, - sym_abstract_function_declarator, - STATE(4764), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - [176068] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(4641), 1, - anon_sym_COLON_COLON, - ACTIONS(7487), 1, - sym_identifier, - STATE(3905), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(5040), 1, - sym__scope_resolution, - STATE(3651), 2, - sym_sized_type_specifier, - sym_qualified_type_identifier, - STATE(6159), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(5534), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - [176105] = 4, + STATE(6699), 1, + sym_field_initializer_list, + ACTIONS(4650), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + STATE(1357), 3, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + [207023] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5898), 2, + ACTIONS(6530), 1, + anon_sym_requires, + STATE(5436), 1, + sym_requires_clause, + ACTIONS(6528), 2, anon_sym_final, anon_sym_override, - STATE(4601), 2, + STATE(5229), 2, sym_virtual_specifier, aux_sym__function_declarator_seq_repeat2, - ACTIONS(5673), 11, - anon_sym_DOT_DOT_DOT, + ACTIONS(6407), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_COLON, + [207050] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6779), 1, + anon_sym_LBRACK, + ACTIONS(8645), 1, + anon_sym_COLON, + ACTIONS(8725), 1, + anon_sym_SEMI, + ACTIONS(8727), 1, + anon_sym_LBRACE, + ACTIONS(8729), 1, anon_sym_EQ, - anon_sym_GT2, + ACTIONS(8731), 1, anon_sym_try, - anon_sym_requires, - [176130] = 13, + STATE(2380), 1, + sym_compound_statement, + STATE(6796), 1, + sym_field_initializer_list, + ACTIONS(4650), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + STATE(2378), 3, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + [207087] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(3908), 1, - anon_sym_LPAREN2, - ACTIONS(3910), 1, - anon_sym_STAR, - ACTIONS(3912), 1, - anon_sym_AMP_AMP, - ACTIONS(3914), 1, - anon_sym_AMP, - ACTIONS(6514), 1, - anon_sym_LBRACK, - ACTIONS(7292), 1, + ACTIONS(351), 1, anon_sym_LBRACE, - STATE(2778), 1, + ACTIONS(6779), 1, + anon_sym_LBRACK, + ACTIONS(8645), 1, + anon_sym_COLON, + ACTIONS(8687), 1, + anon_sym_EQ, + ACTIONS(8689), 1, + anon_sym_try, + ACTIONS(8733), 1, + anon_sym_SEMI, + STATE(754), 1, sym_compound_statement, - STATE(3482), 1, - sym_parameter_list, - STATE(4765), 1, - sym__function_declarator_seq, - STATE(5197), 1, - sym__abstract_declarator, - STATE(5363), 1, - sym_abstract_function_declarator, - STATE(4764), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - [176173] = 10, + STATE(6922), 1, + sym_field_initializer_list, + ACTIONS(4650), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + STATE(821), 3, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + [207124] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(5570), 1, - anon_sym_COLON_COLON, - ACTIONS(7518), 1, - sym_identifier, - STATE(2022), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(4989), 1, - sym__scope_resolution, - STATE(2877), 2, - sym_sized_type_specifier, - sym_qualified_type_identifier, - STATE(6159), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(2420), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - [176210] = 7, + ACTIONS(6779), 1, + anon_sym_LBRACK, + ACTIONS(8645), 1, + anon_sym_COLON, + ACTIONS(8727), 1, + anon_sym_LBRACE, + ACTIONS(8729), 1, + anon_sym_EQ, + ACTIONS(8731), 1, + anon_sym_try, + ACTIONS(8735), 1, + anon_sym_SEMI, + STATE(2437), 1, + sym_compound_statement, + STATE(6776), 1, + sym_field_initializer_list, + ACTIONS(4650), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + STATE(2438), 3, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + [207161] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5735), 1, + ACTIONS(6538), 1, anon_sym_requires, - ACTIONS(7095), 1, - anon_sym_LBRACK, - STATE(4674), 1, + STATE(5407), 1, sym_requires_clause, - ACTIONS(4135), 2, + ACTIONS(6528), 2, anon_sym_final, anon_sym_override, - STATE(4545), 2, + STATE(5262), 2, sym_virtual_specifier, aux_sym__function_declarator_seq_repeat2, - ACTIONS(7093), 8, - anon_sym_COMMA, + ACTIONS(8276), 6, anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, - anon_sym_COLON, anon_sym_try, - [176241] = 10, + [207187] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, + ACTIONS(1329), 1, anon_sym_template, - ACTIONS(1555), 1, + ACTIONS(1973), 1, anon_sym_decltype, - ACTIONS(4641), 1, + ACTIONS(6266), 1, anon_sym_COLON_COLON, - ACTIONS(7487), 1, + ACTIONS(7637), 1, + anon_sym_LBRACE, + ACTIONS(7730), 1, sym_identifier, - STATE(3584), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(5040), 1, + STATE(4638), 1, + sym_template_type, + STATE(4764), 1, + sym_enumerator_list, + STATE(5766), 1, sym__scope_resolution, - STATE(3651), 2, - sym_sized_type_specifier, + STATE(4707), 2, + sym__class_name, sym_qualified_type_identifier, - STATE(6159), 3, + STATE(7638), 2, sym_decltype, - sym_template_type, sym_dependent_type_identifier, - ACTIONS(1695), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - [176278] = 13, + [207223] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(3908), 1, + ACTIONS(7977), 1, anon_sym_LPAREN2, - ACTIONS(3910), 1, - anon_sym_STAR, - ACTIONS(3912), 1, - anon_sym_AMP_AMP, - ACTIONS(3914), 1, - anon_sym_AMP, - ACTIONS(6514), 1, + ACTIONS(8468), 1, anon_sym_LBRACK, - STATE(1882), 1, - sym_compound_statement, - STATE(3482), 1, + STATE(3887), 1, sym_parameter_list, - STATE(4765), 1, + STATE(5450), 1, sym__function_declarator_seq, - STATE(5197), 1, - sym__abstract_declarator, - STATE(5225), 1, - sym_abstract_function_declarator, - STATE(4764), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - [176321] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1489), 1, - anon_sym_LBRACE, - ACTIONS(5709), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7272), 1, - anon_sym_COMMA, - ACTIONS(7274), 1, - anon_sym_LPAREN2, - ACTIONS(7280), 1, - anon_sym_LBRACK, - ACTIONS(7282), 1, - anon_sym_EQ, - ACTIONS(7481), 1, + ACTIONS(8470), 8, + anon_sym_RPAREN, anon_sym_SEMI, - ACTIONS(7527), 1, - anon_sym_COLON, - STATE(3362), 1, - sym_parameter_list, - STATE(4901), 1, - sym__function_declarator_seq, - STATE(5408), 1, - aux_sym_declaration_repeat1, - STATE(4962), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(5834), 2, - sym_argument_list, - sym_initializer_list, - [176366] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(2928), 1, - anon_sym_COLON_COLON, - ACTIONS(7487), 1, - sym_identifier, - STATE(3272), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(5006), 1, - sym__scope_resolution, - STATE(3271), 2, - sym_sized_type_specifier, - sym_qualified_type_identifier, - STATE(6159), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(2930), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - [176403] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1521), 1, - anon_sym_operator, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(1683), 1, - anon_sym_TILDE, - ACTIONS(5363), 1, - anon_sym_COLON_COLON, - ACTIONS(7529), 1, - sym_identifier, - ACTIONS(7531), 1, - anon_sym_template, - STATE(2186), 1, - sym_template_function, - STATE(2187), 1, - sym_destructor_name, - STATE(2188), 1, - sym_dependent_identifier, - STATE(2193), 1, - sym_qualified_identifier, - STATE(2200), 1, - sym_operator_name, - STATE(4639), 1, - sym__scope_resolution, - STATE(6159), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - [176448] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1489), 1, - anon_sym_LBRACE, - ACTIONS(5709), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7272), 1, - anon_sym_COMMA, - ACTIONS(7274), 1, - anon_sym_LPAREN2, - ACTIONS(7280), 1, - anon_sym_LBRACK, - ACTIONS(7282), 1, - anon_sym_EQ, - ACTIONS(7481), 1, - anon_sym_SEMI, - ACTIONS(7533), 1, - anon_sym_COLON, - STATE(3362), 1, - sym_parameter_list, - STATE(4901), 1, - sym__function_declarator_seq, - STATE(5408), 1, - aux_sym_declaration_repeat1, - STATE(4962), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(5834), 2, - sym_argument_list, - sym_initializer_list, - [176493] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5898), 2, + anon_sym_LBRACE, anon_sym_final, anon_sym_override, - STATE(4601), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat2, - ACTIONS(6851), 11, + anon_sym_try, + anon_sym_requires, + [207249] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8737), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8739), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5301), 8, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_EQ, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - anon_sym_try, anon_sym_requires, - [176518] = 10, + [207271] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, + ACTIONS(1329), 1, anon_sym_template, - ACTIONS(1555), 1, + ACTIONS(1973), 1, anon_sym_decltype, - ACTIONS(6626), 1, + ACTIONS(5102), 1, anon_sym_COLON_COLON, - ACTIONS(7535), 1, + ACTIONS(6546), 1, + anon_sym_LBRACE, + ACTIONS(7740), 1, sym_identifier, - STATE(1903), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(5001), 1, - sym__scope_resolution, - STATE(2416), 2, - sym_sized_type_specifier, - sym_qualified_type_identifier, - STATE(6159), 3, - sym_decltype, + STATE(3578), 1, sym_template_type, - sym_dependent_type_identifier, - ACTIONS(6628), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - [176555] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(3916), 1, - anon_sym_COLON_COLON, - ACTIONS(7487), 1, - sym_identifier, - STATE(3272), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(5034), 1, + STATE(3951), 1, + sym_enumerator_list, + STATE(5718), 1, sym__scope_resolution, - STATE(3271), 2, - sym_sized_type_specifier, + STATE(4363), 2, + sym__class_name, sym_qualified_type_identifier, - STATE(6159), 3, + STATE(7638), 2, sym_decltype, - sym_template_type, sym_dependent_type_identifier, - ACTIONS(2930), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - [176592] = 10, + [207307] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(5502), 1, - anon_sym_COLON_COLON, - ACTIONS(7518), 1, - sym_identifier, - STATE(1922), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(4997), 1, - sym__scope_resolution, - STATE(2454), 2, - sym_sized_type_specifier, - sym_qualified_type_identifier, - STATE(6159), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(1503), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - [176629] = 7, + ACTIONS(351), 1, + anon_sym_LBRACE, + ACTIONS(6779), 1, + anon_sym_LBRACK, + ACTIONS(8645), 1, + anon_sym_COLON, + ACTIONS(8687), 1, + anon_sym_EQ, + ACTIONS(8689), 1, + anon_sym_try, + STATE(807), 1, + sym_compound_statement, + STATE(6903), 1, + sym_field_initializer_list, + ACTIONS(4650), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + STATE(808), 3, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + [207341] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5735), 1, - anon_sym_requires, - ACTIONS(6853), 1, + ACTIONS(6466), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7977), 1, + anon_sym_LPAREN2, + ACTIONS(8212), 1, anon_sym_LBRACK, - STATE(4659), 1, - sym_requires_clause, - ACTIONS(4135), 2, - anon_sym_final, - anon_sym_override, - STATE(4533), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat2, - ACTIONS(6851), 8, + STATE(3839), 1, + sym_parameter_list, + STATE(5647), 1, + sym__function_declarator_seq, + STATE(5695), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(8619), 5, anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, - anon_sym_try, - [176660] = 3, + [207371] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7539), 1, + ACTIONS(7977), 1, + anon_sym_LPAREN2, + ACTIONS(8468), 1, anon_sym_LBRACK, - ACTIONS(7537), 13, - anon_sym_COMMA, + STATE(3887), 1, + sym_parameter_list, + STATE(5450), 1, + sym__function_declarator_seq, + ACTIONS(8466), 8, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_try, anon_sym_requires, - [176682] = 11, + [207397] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(5423), 1, - sym_auto, - ACTIONS(5425), 1, - anon_sym_decltype, - ACTIONS(6707), 1, - sym_identifier, - ACTIONS(6709), 1, + ACTIONS(7977), 1, anon_sym_LPAREN2, - ACTIONS(6711), 1, - anon_sym_STAR, - STATE(3229), 1, - sym_decltype_auto, - STATE(4984), 1, - sym__type_declarator, - STATE(6360), 1, - sym_ms_based_modifier, - STATE(5132), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - [176720] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7543), 1, + ACTIONS(8468), 1, anon_sym_LBRACK, - ACTIONS(7541), 13, - anon_sym_COMMA, + STATE(3887), 1, + sym_parameter_list, + STATE(5450), 1, + sym__function_declarator_seq, + ACTIONS(8474), 8, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_try, anon_sym_requires, - [176742] = 3, + [207423] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7547), 1, + ACTIONS(7977), 1, + anon_sym_LPAREN2, + ACTIONS(8468), 1, anon_sym_LBRACK, - ACTIONS(7545), 13, - anon_sym_COMMA, + STATE(3887), 1, + sym_parameter_list, + STATE(5450), 1, + sym__function_declarator_seq, + ACTIONS(8472), 8, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_try, anon_sym_requires, - [176764] = 8, + [207449] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7111), 1, + ACTIONS(7977), 1, anon_sym_LPAREN2, - ACTIONS(7280), 1, + ACTIONS(8468), 1, anon_sym_LBRACK, - STATE(3300), 1, + STATE(3887), 1, sym_parameter_list, - STATE(4901), 1, + STATE(5450), 1, sym__function_declarator_seq, - STATE(4874), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(7549), 7, - anon_sym_COMMA, + ACTIONS(8494), 8, anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, + anon_sym_final, + anon_sym_override, anon_sym_try, - [176796] = 12, + anon_sym_requires, + [207475] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, + ACTIONS(1329), 1, anon_sym_template, - ACTIONS(1555), 1, + ACTIONS(1973), 1, anon_sym_decltype, - ACTIONS(4731), 1, + ACTIONS(5135), 1, anon_sym_LBRACE, - ACTIONS(5502), 1, + ACTIONS(7514), 1, anon_sym_COLON_COLON, - ACTIONS(6867), 1, + ACTIONS(7664), 1, sym_identifier, - STATE(2255), 1, + STATE(2718), 1, sym_template_type, - STATE(2602), 1, + STATE(2749), 1, sym_enumerator_list, - STATE(4997), 1, + STATE(5735), 1, sym__scope_resolution, - ACTIONS(7551), 2, - anon_sym_class, - anon_sym_struct, - STATE(4095), 2, + STATE(3754), 2, sym__class_name, sym_qualified_type_identifier, - STATE(6159), 2, + STATE(7638), 2, sym_decltype, sym_dependent_type_identifier, - [176836] = 6, + [207511] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7111), 1, + ACTIONS(7977), 1, anon_sym_LPAREN2, - ACTIONS(7473), 1, + ACTIONS(8468), 1, anon_sym_LBRACK, - STATE(3362), 1, + STATE(3887), 1, sym_parameter_list, - STATE(4684), 1, + STATE(5450), 1, sym__function_declarator_seq, - ACTIONS(7502), 10, - anon_sym_COMMA, + ACTIONS(8498), 8, + anon_sym_RPAREN, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, anon_sym_final, anon_sym_override, anon_sym_try, anon_sym_requires, - [176864] = 3, + [207537] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(7340), 1, - anon_sym_LBRACK, - ACTIONS(7338), 13, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, + ACTIONS(738), 1, anon_sym_LBRACE, - anon_sym_EQ, + ACTIONS(6779), 1, + anon_sym_LBRACK, + ACTIONS(8645), 1, anon_sym_COLON, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, + ACTIONS(8679), 1, + anon_sym_EQ, + ACTIONS(8681), 1, anon_sym_try, - anon_sym_requires, - [176886] = 8, + STATE(1199), 1, + sym_compound_statement, + STATE(6724), 1, + sym_field_initializer_list, + ACTIONS(4650), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + STATE(1200), 3, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + [207571] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7111), 1, - anon_sym_LPAREN2, - ACTIONS(7280), 1, - anon_sym_LBRACK, - STATE(3300), 1, - sym_parameter_list, - STATE(4901), 1, - sym__function_declarator_seq, - STATE(4874), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(7553), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - anon_sym_try, - [176918] = 3, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(3663), 1, + anon_sym_COLON_COLON, + ACTIONS(4837), 1, + anon_sym_virtual, + ACTIONS(7728), 1, + sym_identifier, + STATE(3578), 1, + sym_template_type, + STATE(5681), 1, + sym_virtual, + STATE(5779), 1, + sym__scope_resolution, + STATE(6582), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7638), 2, + sym_decltype, + sym_dependent_type_identifier, + [207607] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7557), 1, + ACTIONS(4555), 1, + anon_sym_COLON_COLON, + ACTIONS(4557), 2, anon_sym_LBRACK, - ACTIONS(7555), 13, + anon_sym_COLON, + ACTIONS(4562), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -373642,475 +474443,456 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_COLON, - anon_sym_final, - anon_sym_override, anon_sym_GT2, anon_sym_try, - anon_sym_requires, - [176940] = 13, + [207629] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + ACTIONS(41), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1489), 1, - anon_sym_LBRACE, - ACTIONS(7272), 1, - anon_sym_COMMA, - ACTIONS(7274), 1, - anon_sym_LPAREN2, - ACTIONS(7280), 1, + ACTIONS(8743), 1, anon_sym_LBRACK, - ACTIONS(7282), 1, - anon_sym_EQ, - ACTIONS(7328), 1, - anon_sym_SEMI, - STATE(3300), 1, - sym_parameter_list, - STATE(4901), 1, - sym__function_declarator_seq, - STATE(5601), 1, - aux_sym_declaration_repeat1, - STATE(4874), 2, + STATE(5578), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5834), 2, - sym_argument_list, - sym_initializer_list, - [176982] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(5423), 1, - sym_auto, - ACTIONS(5425), 1, - anon_sym_decltype, - ACTIONS(6707), 1, - sym_identifier, - ACTIONS(6709), 1, - anon_sym_LPAREN2, - ACTIONS(6711), 1, - anon_sym_STAR, - STATE(3229), 1, - sym_decltype_auto, - STATE(5018), 1, - sym__type_declarator, - STATE(6360), 1, - sym_ms_based_modifier, - STATE(5132), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - [177020] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(5423), 1, - sym_auto, - ACTIONS(5425), 1, - anon_sym_decltype, - ACTIONS(6707), 1, - sym_identifier, - ACTIONS(6709), 1, - anon_sym_LPAREN2, - ACTIONS(6711), 1, - anon_sym_STAR, - STATE(3229), 1, - sym_decltype_auto, - STATE(5021), 1, - sym__type_declarator, - STATE(6360), 1, - sym_ms_based_modifier, - STATE(5132), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - [177058] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7095), 1, - anon_sym_LBRACK, - ACTIONS(7093), 13, + ACTIONS(8741), 8, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_COLON, - anon_sym_final, - anon_sym_override, anon_sym_GT2, anon_sym_try, - anon_sym_requires, - [177080] = 11, + [207653] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(5709), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5952), 1, + ACTIONS(917), 1, + anon_sym_LBRACE, + ACTIONS(6779), 1, anon_sym_LBRACK, - ACTIONS(6478), 1, - anon_sym_DASH_GT, - ACTIONS(6480), 1, - anon_sym_requires, - STATE(4723), 1, - sym_requires_clause, - STATE(4968), 1, - sym_trailing_return_type, - ACTIONS(4135), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(5950), 2, - anon_sym_LPAREN2, + ACTIONS(8645), 1, anon_sym_COLON, - STATE(4538), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat2, - STATE(4625), 2, + ACTIONS(8653), 1, + anon_sym_EQ, + ACTIONS(8655), 1, + anon_sym_try, + STATE(1283), 1, + sym_compound_statement, + STATE(6942), 1, + sym_field_initializer_list, + ACTIONS(4650), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + STATE(1284), 3, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + [207687] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6466), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7977), 1, + anon_sym_LPAREN2, + ACTIONS(7983), 1, + anon_sym_LBRACK, + STATE(3839), 1, + sym_parameter_list, + STATE(5684), 1, + sym__function_declarator_seq, + STATE(5649), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [177118] = 12, + ACTIONS(8745), 5, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + [207717] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, + ACTIONS(1329), 1, anon_sym_template, - ACTIONS(1555), 1, + ACTIONS(1973), 1, anon_sym_decltype, - ACTIONS(5598), 1, - anon_sym_COLON_COLON, - ACTIONS(5850), 1, + ACTIONS(5621), 1, anon_sym_LBRACE, - ACTIONS(6855), 1, + ACTIONS(6288), 1, + anon_sym_COLON_COLON, + ACTIONS(7746), 1, sym_identifier, - STATE(3133), 1, + STATE(2945), 1, sym_template_type, - STATE(3575), 1, + STATE(3101), 1, sym_enumerator_list, - STATE(5035), 1, + STATE(5712), 1, sym__scope_resolution, - ACTIONS(7559), 2, - anon_sym_class, - anon_sym_struct, - STATE(4141), 2, + STATE(4708), 2, sym__class_name, sym_qualified_type_identifier, - STATE(6159), 2, + STATE(7638), 2, sym_decltype, sym_dependent_type_identifier, - [177158] = 11, + [207753] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5709), 1, + ACTIONS(6466), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5952), 1, - anon_sym_LBRACK, - ACTIONS(6478), 1, - anon_sym_DASH_GT, - ACTIONS(6480), 1, - anon_sym_requires, - STATE(4723), 1, - sym_requires_clause, - STATE(4968), 1, - sym_trailing_return_type, - ACTIONS(4135), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(5950), 2, + ACTIONS(7977), 1, anon_sym_LPAREN2, - anon_sym_COLON, - STATE(4538), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat2, - STATE(4670), 2, + ACTIONS(8212), 1, + anon_sym_LBRACK, + STATE(3839), 1, + sym_parameter_list, + STATE(5647), 1, + sym__function_declarator_seq, + STATE(5695), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [177196] = 12, + ACTIONS(8587), 5, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + [207783] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, + ACTIONS(1329), 1, anon_sym_template, - ACTIONS(1555), 1, + ACTIONS(1973), 1, anon_sym_decltype, - ACTIONS(2928), 1, + ACTIONS(4580), 1, anon_sym_COLON_COLON, - ACTIONS(5493), 1, + ACTIONS(6219), 1, anon_sym_LBRACE, - ACTIONS(6855), 1, + ACTIONS(7740), 1, sym_identifier, - STATE(3133), 1, + STATE(3578), 1, sym_template_type, - STATE(3269), 1, + STATE(3749), 1, sym_enumerator_list, - STATE(5006), 1, + STATE(5733), 1, sym__scope_resolution, - ACTIONS(7561), 2, - anon_sym_class, - anon_sym_struct, - STATE(3840), 2, + STATE(3835), 2, sym__class_name, sym_qualified_type_identifier, - STATE(6159), 2, + STATE(7638), 2, sym_decltype, sym_dependent_type_identifier, - [177236] = 12, + [207819] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(251), 1, + anon_sym_LBRACE, + ACTIONS(6779), 1, + anon_sym_LBRACK, + ACTIONS(8643), 1, + anon_sym_EQ, + ACTIONS(8645), 1, + anon_sym_COLON, + ACTIONS(8647), 1, + anon_sym_try, + STATE(515), 1, + sym_compound_statement, + STATE(6660), 1, + sym_field_initializer_list, + ACTIONS(4650), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + STATE(517), 3, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + [207853] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, + ACTIONS(1329), 1, anon_sym_template, - ACTIONS(1555), 1, + ACTIONS(1973), 1, anon_sym_decltype, - ACTIONS(4294), 1, + ACTIONS(5127), 1, anon_sym_LBRACE, - ACTIONS(6626), 1, + ACTIONS(7534), 1, anon_sym_COLON_COLON, - ACTIONS(6793), 1, + ACTIONS(7704), 1, sym_identifier, - STATE(1979), 1, + STATE(2511), 1, sym_template_type, - STATE(2333), 1, + STATE(2908), 1, sym_enumerator_list, - STATE(5001), 1, + STATE(5713), 1, sym__scope_resolution, - ACTIONS(7563), 2, - anon_sym_class, - anon_sym_struct, - STATE(1987), 2, + STATE(2538), 2, sym__class_name, sym_qualified_type_identifier, - STATE(6159), 2, + STATE(7638), 2, sym_decltype, sym_dependent_type_identifier, - [177276] = 8, + [207889] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + ACTIONS(6466), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7111), 1, + ACTIONS(7977), 1, anon_sym_LPAREN2, - ACTIONS(7280), 1, + ACTIONS(8212), 1, anon_sym_LBRACK, - STATE(3300), 1, + STATE(3839), 1, sym_parameter_list, - STATE(4901), 1, + STATE(5647), 1, sym__function_declarator_seq, - STATE(4874), 2, + STATE(5695), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(7565), 7, + ACTIONS(8613), 5, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_GT2, - anon_sym_try, - [177308] = 6, + anon_sym_COLON, + [207919] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7111), 1, - anon_sym_LPAREN2, - ACTIONS(7473), 1, - anon_sym_LBRACK, - STATE(3362), 1, - sym_parameter_list, - STATE(4684), 1, - sym__function_declarator_seq, - ACTIONS(7500), 10, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(5115), 1, anon_sym_LBRACE, - anon_sym_EQ, + ACTIONS(7478), 1, + anon_sym_COLON_COLON, + ACTIONS(7694), 1, + sym_identifier, + STATE(2414), 1, + sym_template_type, + STATE(2773), 1, + sym_enumerator_list, + STATE(5770), 1, + sym__scope_resolution, + STATE(2527), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7638), 2, + sym_decltype, + sym_dependent_type_identifier, + [207955] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(917), 1, + anon_sym_LBRACE, + ACTIONS(6779), 1, + anon_sym_LBRACK, + ACTIONS(8645), 1, anon_sym_COLON, - anon_sym_final, - anon_sym_override, + ACTIONS(8653), 1, + anon_sym_EQ, + ACTIONS(8655), 1, anon_sym_try, - anon_sym_requires, - [177336] = 5, + STATE(1224), 1, + sym_compound_statement, + STATE(6904), 1, + sym_field_initializer_list, + ACTIONS(4650), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + STATE(1227), 3, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + [207989] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7567), 1, - anon_sym_RPAREN, - STATE(2476), 3, - sym_string_literal, - sym_raw_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(139), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [177362] = 11, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(3663), 1, + anon_sym_COLON_COLON, + ACTIONS(4837), 1, + anon_sym_virtual, + ACTIONS(7728), 1, + sym_identifier, + STATE(3578), 1, + sym_template_type, + STATE(5682), 1, + sym_virtual, + STATE(5779), 1, + sym__scope_resolution, + STATE(6134), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7638), 2, + sym_decltype, + sym_dependent_type_identifier, + [208025] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(5423), 1, - sym_auto, - ACTIONS(5425), 1, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1973), 1, anon_sym_decltype, - ACTIONS(6707), 1, + ACTIONS(3663), 1, + anon_sym_COLON_COLON, + ACTIONS(4837), 1, + anon_sym_virtual, + ACTIONS(7728), 1, sym_identifier, - ACTIONS(6709), 1, - anon_sym_LPAREN2, - ACTIONS(6711), 1, - anon_sym_STAR, - STATE(3229), 1, - sym_decltype_auto, - STATE(4986), 1, - sym__type_declarator, - STATE(6360), 1, - sym_ms_based_modifier, - STATE(5132), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - [177400] = 3, + STATE(3578), 1, + sym_template_type, + STATE(5701), 1, + sym_virtual, + STATE(5779), 1, + sym__scope_resolution, + STATE(6491), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7638), 2, + sym_decltype, + sym_dependent_type_identifier, + [208061] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7571), 1, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(5621), 1, + anon_sym_LBRACE, + ACTIONS(7567), 1, + anon_sym_COLON_COLON, + ACTIONS(7714), 1, + sym_identifier, + STATE(2945), 1, + sym_template_type, + STATE(3101), 1, + sym_enumerator_list, + STATE(5737), 1, + sym__scope_resolution, + STATE(3873), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7638), 2, + sym_decltype, + sym_dependent_type_identifier, + [208097] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(49), 1, + anon_sym_LBRACE, + ACTIONS(6779), 1, anon_sym_LBRACK, - ACTIONS(7569), 13, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(8645), 1, + anon_sym_COLON, + ACTIONS(8713), 1, + anon_sym_EQ, + ACTIONS(8715), 1, + anon_sym_try, + STATE(1359), 1, + sym_compound_statement, + STATE(6699), 1, + sym_field_initializer_list, + ACTIONS(4650), 2, anon_sym_LPAREN2, - anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, + STATE(1357), 3, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + [208131] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6538), 1, + anon_sym_requires, + STATE(5420), 1, + sym_requires_clause, + ACTIONS(6528), 2, anon_sym_final, anon_sym_override, - anon_sym_GT2, + STATE(5261), 2, + sym_virtual_specifier, + aux_sym__function_declarator_seq_repeat2, + ACTIONS(8019), 6, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, anon_sym_try, - anon_sym_requires, - [177422] = 11, + [208157] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5709), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6478), 1, - anon_sym_DASH_GT, - ACTIONS(6480), 1, + ACTIONS(6538), 1, anon_sym_requires, - ACTIONS(6853), 1, - anon_sym_LBRACK, - STATE(4659), 1, + STATE(5436), 1, sym_requires_clause, - STATE(4969), 1, - sym_trailing_return_type, - ACTIONS(4135), 2, + ACTIONS(6528), 2, anon_sym_final, anon_sym_override, - ACTIONS(6851), 2, - anon_sym_LPAREN2, - anon_sym_COLON, - STATE(4533), 2, + STATE(5229), 2, sym_virtual_specifier, aux_sym__function_declarator_seq_repeat2, - STATE(4625), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [177460] = 12, + ACTIONS(6407), 6, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_try, + [208183] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, + ACTIONS(1329), 1, anon_sym_template, - ACTIONS(1555), 1, + ACTIONS(1973), 1, anon_sym_decltype, - ACTIONS(5252), 1, - anon_sym_LBRACE, - ACTIONS(5570), 1, + ACTIONS(5102), 1, anon_sym_COLON_COLON, - ACTIONS(6859), 1, + ACTIONS(6546), 1, + anon_sym_LBRACE, + ACTIONS(7740), 1, sym_identifier, - STATE(2795), 1, + STATE(3578), 1, sym_template_type, - STATE(2998), 1, + STATE(3951), 1, sym_enumerator_list, - STATE(4989), 1, + STATE(5718), 1, sym__scope_resolution, - ACTIONS(7573), 2, - anon_sym_class, - anon_sym_struct, - STATE(4089), 2, + STATE(4595), 2, sym__class_name, sym_qualified_type_identifier, - STATE(6159), 2, + STATE(7638), 2, sym_decltype, sym_dependent_type_identifier, - [177500] = 11, + [208219] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5709), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6478), 1, - anon_sym_DASH_GT, - ACTIONS(6480), 1, - anon_sym_requires, - ACTIONS(6853), 1, + ACTIONS(7657), 1, anon_sym_LBRACK, - STATE(4659), 1, - sym_requires_clause, - STATE(4969), 1, - sym_trailing_return_type, - ACTIONS(4135), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(6851), 2, - anon_sym_LPAREN2, - anon_sym_COLON, - STATE(4533), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat2, - STATE(4713), 2, + ACTIONS(8747), 1, + anon_sym_LBRACK_LBRACK, + STATE(5578), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [177538] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7111), 1, - anon_sym_LPAREN2, - ACTIONS(7473), 1, - anon_sym_LBRACK, - STATE(3362), 1, - sym_parameter_list, - STATE(4684), 1, - sym__function_declarator_seq, - ACTIONS(7508), 10, + ACTIONS(7659), 8, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_COLON, - anon_sym_final, - anon_sym_override, + anon_sym_GT2, anon_sym_try, - anon_sym_requires, - [177566] = 3, + [208243] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7077), 1, + ACTIONS(5432), 1, anon_sym_LBRACK, - ACTIONS(7075), 13, + ACTIONS(8750), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(5430), 10, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -374119,381 +474901,498 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, - anon_sym_final, - anon_sym_override, anon_sym_GT2, anon_sym_try, - anon_sym_requires, - [177588] = 11, + [208265] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(5423), 1, - sym_auto, - ACTIONS(5425), 1, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1973), 1, anon_sym_decltype, - ACTIONS(6707), 1, + ACTIONS(3663), 1, + anon_sym_COLON_COLON, + ACTIONS(4837), 1, + anon_sym_virtual, + ACTIONS(7728), 1, sym_identifier, - ACTIONS(6709), 1, + STATE(3578), 1, + sym_template_type, + STATE(5673), 1, + sym_virtual, + STATE(5779), 1, + sym__scope_resolution, + STATE(6046), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7638), 2, + sym_decltype, + sym_dependent_type_identifier, + [208301] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8739), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5206), 10, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(6711), 1, - anon_sym_STAR, - STATE(3229), 1, - sym_decltype_auto, - STATE(4983), 1, - sym__type_declarator, - STATE(6360), 1, - sym_ms_based_modifier, - STATE(5132), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - [177626] = 11, + anon_sym_PIPE_PIPE, + anon_sym_LBRACK, + anon_sym_or, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [208321] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(5423), 1, - sym_auto, - ACTIONS(5425), 1, - anon_sym_decltype, - ACTIONS(6707), 1, - sym_identifier, - ACTIONS(6709), 1, + ACTIONS(6538), 1, + anon_sym_requires, + STATE(5430), 1, + sym_requires_clause, + ACTIONS(6528), 2, + anon_sym_final, + anon_sym_override, + STATE(5257), 2, + sym_virtual_specifier, + aux_sym__function_declarator_seq_repeat2, + ACTIONS(8031), 6, anon_sym_LPAREN2, - ACTIONS(6711), 1, - anon_sym_STAR, - STATE(3229), 1, - sym_decltype_auto, - STATE(5008), 1, - sym__type_declarator, - STATE(6360), 1, - sym_ms_based_modifier, - STATE(5132), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - [177664] = 5, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_try, + [208347] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7575), 1, - anon_sym_RPAREN, - STATE(2476), 3, - sym_string_literal, - sym_raw_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(139), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [177690] = 8, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(5102), 1, + anon_sym_COLON_COLON, + ACTIONS(6219), 1, + anon_sym_LBRACE, + ACTIONS(7740), 1, + sym_identifier, + STATE(3578), 1, + sym_template_type, + STATE(3749), 1, + sym_enumerator_list, + STATE(5718), 1, + sym__scope_resolution, + STATE(4573), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7638), 2, + sym_decltype, + sym_dependent_type_identifier, + [208383] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + ACTIONS(6466), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7111), 1, + ACTIONS(7977), 1, anon_sym_LPAREN2, - ACTIONS(7280), 1, + ACTIONS(8212), 1, anon_sym_LBRACK, - STATE(3300), 1, + STATE(3839), 1, sym_parameter_list, - STATE(4901), 1, + STATE(5647), 1, sym__function_declarator_seq, - STATE(4874), 2, + STATE(5695), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(7577), 7, + ACTIONS(8579), 5, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_GT2, - anon_sym_try, - [177722] = 13, + anon_sym_COLON, + [208413] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1489), 1, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(5406), 1, anon_sym_LBRACE, - ACTIONS(7272), 1, - anon_sym_COMMA, - ACTIONS(7274), 1, - anon_sym_LPAREN2, - ACTIONS(7280), 1, - anon_sym_LBRACK, - ACTIONS(7282), 1, - anon_sym_EQ, - ACTIONS(7314), 1, - anon_sym_SEMI, - STATE(3300), 1, - sym_parameter_list, - STATE(4901), 1, - sym__function_declarator_seq, - STATE(5599), 1, - aux_sym_declaration_repeat1, - STATE(4874), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(5834), 2, - sym_argument_list, - sym_initializer_list, - [177764] = 12, + ACTIONS(7581), 1, + anon_sym_COLON_COLON, + ACTIONS(7684), 1, + sym_identifier, + STATE(2846), 1, + sym_template_type, + STATE(3253), 1, + sym_enumerator_list, + STATE(5726), 1, + sym__scope_resolution, + STATE(2886), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7638), 2, + sym_decltype, + sym_dependent_type_identifier, + [208449] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, + ACTIONS(1329), 1, anon_sym_template, - ACTIONS(1555), 1, + ACTIONS(1973), 1, anon_sym_decltype, - ACTIONS(4272), 1, + ACTIONS(6219), 1, anon_sym_LBRACE, - ACTIONS(6524), 1, - anon_sym_COLON_COLON, - ACTIONS(6827), 1, + ACTIONS(7728), 1, sym_identifier, - STATE(1933), 1, + ACTIONS(7752), 1, + anon_sym_COLON_COLON, + STATE(3578), 1, sym_template_type, - STATE(2045), 1, + STATE(3749), 1, sym_enumerator_list, - STATE(5022), 1, + STATE(5791), 1, sym__scope_resolution, - ACTIONS(7579), 2, - anon_sym_class, - anon_sym_struct, - STATE(1974), 2, + STATE(4960), 2, sym__class_name, sym_qualified_type_identifier, - STATE(6159), 2, + STATE(7638), 2, sym_decltype, sym_dependent_type_identifier, - [177804] = 12, + [208485] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, + ACTIONS(1329), 1, anon_sym_template, - ACTIONS(1555), 1, + ACTIONS(1973), 1, anon_sym_decltype, - ACTIONS(4731), 1, + ACTIONS(5378), 1, anon_sym_LBRACE, - ACTIONS(6612), 1, + ACTIONS(7456), 1, anon_sym_COLON_COLON, - ACTIONS(6777), 1, + ACTIONS(7674), 1, sym_identifier, - STATE(2255), 1, + STATE(2739), 1, sym_template_type, - STATE(2602), 1, + STATE(3140), 1, sym_enumerator_list, - STATE(4990), 1, + STATE(5797), 1, sym__scope_resolution, - ACTIONS(7581), 2, - anon_sym_class, - anon_sym_struct, - STATE(3155), 2, + STATE(2860), 2, sym__class_name, sym_qualified_type_identifier, - STATE(6159), 2, + STATE(7638), 2, sym_decltype, sym_dependent_type_identifier, - [177844] = 6, + [208521] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(7111), 1, - anon_sym_LPAREN2, - ACTIONS(7473), 1, - anon_sym_LBRACK, - STATE(3362), 1, - sym_parameter_list, - STATE(4684), 1, - sym__function_declarator_seq, - ACTIONS(7506), 10, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, + ACTIONS(738), 1, anon_sym_LBRACE, - anon_sym_EQ, + ACTIONS(6779), 1, + anon_sym_LBRACK, + ACTIONS(8645), 1, anon_sym_COLON, - anon_sym_final, - anon_sym_override, + ACTIONS(8679), 1, + anon_sym_EQ, + ACTIONS(8681), 1, anon_sym_try, - anon_sym_requires, - [177872] = 3, + STATE(1285), 1, + sym_compound_statement, + STATE(6747), 1, + sym_field_initializer_list, + ACTIONS(4650), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + STATE(1286), 3, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + [208555] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7585), 1, - anon_sym_LBRACK, - ACTIONS(7583), 13, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(6538), 1, + anon_sym_requires, + STATE(5417), 1, + sym_requires_clause, + ACTIONS(6528), 2, + anon_sym_final, + anon_sym_override, + STATE(5254), 2, + sym_virtual_specifier, + aux_sym__function_declarator_seq_repeat2, + ACTIONS(7724), 6, anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, - anon_sym_COLON, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, anon_sym_try, - anon_sym_requires, - [177894] = 3, + [208581] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(7589), 1, + ACTIONS(251), 1, + anon_sym_LBRACE, + ACTIONS(6779), 1, anon_sym_LBRACK, - ACTIONS(7587), 13, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(8643), 1, + anon_sym_EQ, + ACTIONS(8645), 1, + anon_sym_COLON, + ACTIONS(8647), 1, + anon_sym_try, + STATE(578), 1, + sym_compound_statement, + STATE(6696), 1, + sym_field_initializer_list, + ACTIONS(4650), 2, anon_sym_LPAREN2, - anon_sym_SEMI, anon_sym_LBRACK_LBRACK, + STATE(581), 3, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + [208615] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(3663), 1, + anon_sym_COLON_COLON, + ACTIONS(6219), 1, anon_sym_LBRACE, - anon_sym_EQ, + ACTIONS(7728), 1, + sym_identifier, + STATE(3578), 1, + sym_template_type, + STATE(3749), 1, + sym_enumerator_list, + STATE(5779), 1, + sym__scope_resolution, + STATE(4038), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7638), 2, + sym_decltype, + sym_dependent_type_identifier, + [208651] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(351), 1, + anon_sym_LBRACE, + ACTIONS(6779), 1, + anon_sym_LBRACK, + ACTIONS(8645), 1, anon_sym_COLON, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, + ACTIONS(8687), 1, + anon_sym_EQ, + ACTIONS(8689), 1, anon_sym_try, - anon_sym_requires, - [177916] = 8, + STATE(754), 1, + sym_compound_statement, + STATE(6922), 1, + sym_field_initializer_list, + ACTIONS(4650), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + STATE(821), 3, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + [208685] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(6312), 1, + anon_sym_COLON_COLON, + ACTIONS(6546), 1, + anon_sym_LBRACE, + ACTIONS(7728), 1, + sym_identifier, + STATE(3578), 1, + sym_template_type, + STATE(3951), 1, + sym_enumerator_list, + STATE(5765), 1, + sym__scope_resolution, + STATE(4722), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7638), 2, + sym_decltype, + sym_dependent_type_identifier, + [208721] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6466), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7111), 1, + ACTIONS(7977), 1, anon_sym_LPAREN2, - ACTIONS(7280), 1, + ACTIONS(8212), 1, anon_sym_LBRACK, - STATE(3300), 1, + STATE(3839), 1, sym_parameter_list, - STATE(4901), 1, + STATE(5647), 1, sym__function_declarator_seq, - STATE(4874), 2, + STATE(5695), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(7591), 7, + ACTIONS(8543), 5, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_GT2, + anon_sym_COLON, + [208751] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(6219), 1, + anon_sym_LBRACE, + ACTIONS(6312), 1, + anon_sym_COLON_COLON, + ACTIONS(7728), 1, + sym_identifier, + STATE(3578), 1, + sym_template_type, + STATE(3749), 1, + sym_enumerator_list, + STATE(5765), 1, + sym__scope_resolution, + STATE(4080), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7638), 2, + sym_decltype, + sym_dependent_type_identifier, + [208787] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(49), 1, + anon_sym_LBRACE, + ACTIONS(6779), 1, + anon_sym_LBRACK, + ACTIONS(8645), 1, + anon_sym_COLON, + ACTIONS(8713), 1, + anon_sym_EQ, + ACTIONS(8715), 1, anon_sym_try, - [177948] = 3, + STATE(1323), 1, + sym_compound_statement, + STATE(6841), 1, + sym_field_initializer_list, + ACTIONS(4650), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + STATE(1322), 3, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + [208821] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7595), 1, + ACTIONS(7977), 1, + anon_sym_LPAREN2, + ACTIONS(8468), 1, anon_sym_LBRACK, - ACTIONS(7593), 13, - anon_sym_COMMA, + STATE(3887), 1, + sym_parameter_list, + STATE(5450), 1, + sym__function_declarator_seq, + ACTIONS(8482), 8, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_try, anon_sym_requires, - [177970] = 12, + [208847] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, + ACTIONS(1329), 1, anon_sym_template, - ACTIONS(1555), 1, + ACTIONS(1973), 1, anon_sym_decltype, - ACTIONS(4641), 1, - anon_sym_COLON_COLON, - ACTIONS(5850), 1, + ACTIONS(5135), 1, anon_sym_LBRACE, - ACTIONS(6857), 1, + ACTIONS(6225), 1, + anon_sym_COLON_COLON, + ACTIONS(7738), 1, sym_identifier, - STATE(3133), 1, + STATE(2718), 1, sym_template_type, - STATE(3575), 1, + STATE(2749), 1, sym_enumerator_list, - STATE(5040), 1, + STATE(5741), 1, sym__scope_resolution, - ACTIONS(7597), 2, - anon_sym_class, - anon_sym_struct, - STATE(3915), 2, + STATE(4710), 2, sym__class_name, sym_qualified_type_identifier, - STATE(6159), 2, + STATE(7638), 2, sym_decltype, sym_dependent_type_identifier, - [178010] = 5, + [208883] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7599), 1, - anon_sym_RPAREN, - STATE(2476), 3, - sym_string_literal, - sym_raw_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(139), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [178036] = 12, + ACTIONS(6538), 1, + anon_sym_requires, + STATE(5365), 1, + sym_requires_clause, + ACTIONS(6528), 2, + anon_sym_final, + anon_sym_override, + STATE(5277), 2, + sym_virtual_specifier, + aux_sym__function_declarator_seq_repeat2, + ACTIONS(6542), 6, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_try, + [208909] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, + ACTIONS(1329), 1, anon_sym_template, - ACTIONS(1555), 1, + ACTIONS(1973), 1, anon_sym_decltype, - ACTIONS(5252), 1, - anon_sym_LBRACE, - ACTIONS(6568), 1, + ACTIONS(8444), 1, anon_sym_COLON_COLON, - ACTIONS(6841), 1, + ACTIONS(8752), 1, sym_identifier, - STATE(2795), 1, - sym_template_type, - STATE(2998), 1, - sym_enumerator_list, - STATE(5020), 1, + STATE(5303), 1, sym__scope_resolution, - ACTIONS(7601), 2, - anon_sym_class, - anon_sym_struct, - STATE(3231), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6159), 2, + STATE(7083), 1, + sym_qualified_identifier, + ACTIONS(8754), 2, + anon_sym_enum, + anon_sym_namespace, + STATE(7638), 3, sym_decltype, + sym_template_type, sym_dependent_type_identifier, - [178076] = 3, + [208940] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7605), 1, + ACTIONS(4505), 1, anon_sym_LBRACK, - ACTIONS(7603), 13, + ACTIONS(4510), 10, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -374502,17 +475401,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, + anon_sym_GT2, + anon_sym_try, + [208959] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7977), 1, + anon_sym_LPAREN2, + ACTIONS(8756), 1, + anon_sym_LBRACK, + STATE(3888), 1, + sym_parameter_list, + STATE(5397), 1, + sym__function_declarator_seq, + ACTIONS(8482), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_try, anon_sym_requires, - [178098] = 3, + [208984] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7609), 1, + ACTIONS(8760), 1, anon_sym_LBRACK, - ACTIONS(7607), 13, + ACTIONS(8758), 10, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -374521,17 +475436,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, - anon_sym_final, - anon_sym_override, anon_sym_GT2, anon_sym_try, - anon_sym_requires, - [178120] = 3, + [209003] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7613), 1, + ACTIONS(8764), 1, anon_sym_LBRACK, - ACTIONS(7611), 13, + ACTIONS(8762), 10, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -374540,469 +475452,209 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, - anon_sym_final, - anon_sym_override, anon_sym_GT2, anon_sym_try, - anon_sym_requires, - [178142] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(5423), 1, - sym_auto, - ACTIONS(5425), 1, - anon_sym_decltype, - ACTIONS(6707), 1, - sym_identifier, - ACTIONS(6709), 1, - anon_sym_LPAREN2, - ACTIONS(6711), 1, - anon_sym_STAR, - STATE(3229), 1, - sym_decltype_auto, - STATE(4992), 1, - sym__type_declarator, - STATE(6360), 1, - sym_ms_based_modifier, - STATE(5132), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - [178180] = 11, + [209022] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(5423), 1, - sym_auto, - ACTIONS(5425), 1, - anon_sym_decltype, - ACTIONS(6707), 1, - sym_identifier, - ACTIONS(6709), 1, + ACTIONS(6591), 1, + anon_sym_requires, + STATE(5436), 1, + sym_requires_clause, + ACTIONS(6528), 2, + anon_sym_final, + anon_sym_override, + STATE(5229), 2, + sym_virtual_specifier, + aux_sym__function_declarator_seq_repeat2, + ACTIONS(6407), 5, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(6711), 1, - anon_sym_STAR, - STATE(3229), 1, - sym_decltype_auto, - STATE(5017), 1, - sym__type_declarator, - STATE(6360), 1, - sym_ms_based_modifier, - STATE(5132), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - [178218] = 11, + anon_sym_LBRACK, + anon_sym_GT2, + [209047] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(5423), 1, - sym_auto, - ACTIONS(5425), 1, - anon_sym_decltype, - ACTIONS(6707), 1, - sym_identifier, - ACTIONS(6709), 1, + ACTIONS(8768), 1, + anon_sym_LT, + ACTIONS(8770), 1, + anon_sym_LBRACK, + STATE(5688), 1, + sym_template_argument_list, + ACTIONS(8766), 8, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(6711), 1, - anon_sym_STAR, - STATE(3229), 1, - sym_decltype_auto, - STATE(5027), 1, - sym__type_declarator, - STATE(6360), 1, - sym_ms_based_modifier, - STATE(5132), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - [178256] = 6, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [209070] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7111), 1, + ACTIONS(7977), 1, anon_sym_LPAREN2, - ACTIONS(7473), 1, + ACTIONS(8756), 1, anon_sym_LBRACK, - STATE(3362), 1, + STATE(3888), 1, sym_parameter_list, - STATE(4684), 1, + STATE(5397), 1, sym__function_declarator_seq, - ACTIONS(7504), 10, - anon_sym_COMMA, + ACTIONS(8472), 7, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_COLON, anon_sym_final, anon_sym_override, anon_sym_try, anon_sym_requires, - [178284] = 12, + [209095] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(4641), 1, - anon_sym_COLON_COLON, - ACTIONS(5850), 1, + ACTIONS(7977), 1, + anon_sym_LPAREN2, + ACTIONS(8756), 1, + anon_sym_LBRACK, + STATE(3900), 1, + sym_parameter_list, + STATE(5397), 1, + sym__function_declarator_seq, + ACTIONS(8470), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(6857), 1, - sym_identifier, - STATE(3133), 1, - sym_template_type, - STATE(3575), 1, - sym_enumerator_list, - STATE(5040), 1, - sym__scope_resolution, - ACTIONS(7615), 2, - anon_sym_class, - anon_sym_struct, - STATE(4069), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6159), 2, - sym_decltype, - sym_dependent_type_identifier, - [178324] = 12, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [209120] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, + ACTIONS(1329), 1, anon_sym_template, - ACTIONS(1555), 1, + ACTIONS(1973), 1, anon_sym_decltype, - ACTIONS(3916), 1, + ACTIONS(8444), 1, anon_sym_COLON_COLON, - ACTIONS(5493), 1, - anon_sym_LBRACE, - ACTIONS(6857), 1, + ACTIONS(8772), 1, sym_identifier, - STATE(3133), 1, - sym_template_type, - STATE(3269), 1, - sym_enumerator_list, - STATE(5034), 1, + STATE(5303), 1, sym__scope_resolution, - ACTIONS(7617), 2, - anon_sym_class, - anon_sym_struct, - STATE(3376), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6159), 2, + STATE(7305), 1, + sym_qualified_identifier, + ACTIONS(8774), 2, + anon_sym_enum, + anon_sym_namespace, + STATE(7638), 3, sym_decltype, + sym_template_type, sym_dependent_type_identifier, - [178364] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(5423), 1, - sym_auto, - ACTIONS(5425), 1, - anon_sym_decltype, - ACTIONS(6707), 1, - sym_identifier, - ACTIONS(6709), 1, - anon_sym_LPAREN2, - ACTIONS(6711), 1, - anon_sym_STAR, - STATE(3229), 1, - sym_decltype_auto, - STATE(5016), 1, - sym__type_declarator, - STATE(6360), 1, - sym_ms_based_modifier, - STATE(5132), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - [178402] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(5423), 1, - sym_auto, - ACTIONS(5425), 1, - anon_sym_decltype, - ACTIONS(6707), 1, - sym_identifier, - ACTIONS(6709), 1, - anon_sym_LPAREN2, - ACTIONS(6711), 1, - anon_sym_STAR, - STATE(3229), 1, - sym_decltype_auto, - STATE(5028), 1, - sym__type_declarator, - STATE(6360), 1, - sym_ms_based_modifier, - STATE(5132), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - [178440] = 11, + [209151] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(5423), 1, - sym_auto, - ACTIONS(5425), 1, - anon_sym_decltype, - ACTIONS(6707), 1, - sym_identifier, - ACTIONS(6709), 1, + ACTIONS(7977), 1, anon_sym_LPAREN2, - ACTIONS(6711), 1, - anon_sym_STAR, - STATE(3229), 1, - sym_decltype_auto, - STATE(5032), 1, - sym__type_declarator, - STATE(6360), 1, - sym_ms_based_modifier, - STATE(5132), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - [178478] = 13, + ACTIONS(8756), 1, + anon_sym_LBRACK, + STATE(3888), 1, + sym_parameter_list, + STATE(5397), 1, + sym__function_declarator_seq, + ACTIONS(8494), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [209176] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + ACTIONS(41), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1489), 1, - anon_sym_LBRACE, - ACTIONS(7272), 1, - anon_sym_COMMA, - ACTIONS(7274), 1, + ACTIONS(7977), 1, anon_sym_LPAREN2, - ACTIONS(7276), 1, - anon_sym_SEMI, - ACTIONS(7280), 1, + ACTIONS(8212), 1, anon_sym_LBRACK, - ACTIONS(7282), 1, - anon_sym_EQ, - STATE(3300), 1, + STATE(3887), 1, sym_parameter_list, - STATE(4901), 1, + STATE(5647), 1, sym__function_declarator_seq, - STATE(5497), 1, - aux_sym_declaration_repeat1, - STATE(4874), 2, + STATE(5560), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5834), 2, - sym_argument_list, - sym_initializer_list, - [178520] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7619), 1, + ACTIONS(8613), 4, anon_sym_RPAREN, - STATE(2476), 3, - sym_string_literal, - sym_raw_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(139), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [178546] = 11, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_try, + [209205] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(5423), 1, - sym_auto, - ACTIONS(5425), 1, - anon_sym_decltype, - ACTIONS(6707), 1, - sym_identifier, - ACTIONS(6709), 1, + ACTIONS(8778), 1, + anon_sym_LBRACK, + ACTIONS(8776), 10, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(6711), 1, - anon_sym_STAR, - STATE(3229), 1, - sym_decltype_auto, - STATE(5012), 1, - sym__type_declarator, - STATE(6360), 1, - sym_ms_based_modifier, - STATE(5132), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - [178584] = 11, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_GT2, + anon_sym_try, + [209224] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5709), 1, + ACTIONS(41), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6478), 1, - anon_sym_DASH_GT, - ACTIONS(6480), 1, - anon_sym_requires, - ACTIONS(7077), 1, - anon_sym_LBRACK, - STATE(4728), 1, - sym_requires_clause, - STATE(4959), 1, - sym_trailing_return_type, - ACTIONS(4135), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7075), 2, + ACTIONS(7977), 1, anon_sym_LPAREN2, - anon_sym_COLON, - STATE(4541), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat2, - STATE(4625), 2, + ACTIONS(8212), 1, + anon_sym_LBRACK, + STATE(3887), 1, + sym_parameter_list, + STATE(5647), 1, + sym__function_declarator_seq, + STATE(5560), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [178622] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(4635), 1, + ACTIONS(8587), 4, + anon_sym_RPAREN, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(6582), 1, - anon_sym_COLON_COLON, - ACTIONS(6803), 1, - sym_identifier, - STATE(2032), 1, - sym_template_type, - STATE(2684), 1, - sym_enumerator_list, - STATE(5025), 1, - sym__scope_resolution, - ACTIONS(7621), 2, - anon_sym_class, - anon_sym_struct, - STATE(2184), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6159), 2, - sym_decltype, - sym_dependent_type_identifier, - [178662] = 11, + anon_sym_try, + [209253] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(5423), 1, - sym_auto, - ACTIONS(5425), 1, - anon_sym_decltype, - ACTIONS(6707), 1, - sym_identifier, - ACTIONS(6709), 1, + ACTIONS(41), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7977), 1, anon_sym_LPAREN2, - ACTIONS(6711), 1, - anon_sym_STAR, - STATE(3229), 1, - sym_decltype_auto, - STATE(5030), 1, - sym__type_declarator, - STATE(6360), 1, - sym_ms_based_modifier, - STATE(5132), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - [178700] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7625), 1, + ACTIONS(8212), 1, anon_sym_LBRACK, - ACTIONS(7623), 13, - anon_sym_COMMA, + STATE(3887), 1, + sym_parameter_list, + STATE(5647), 1, + sym__function_declarator_seq, + STATE(5560), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(8619), 4, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, anon_sym_try, - anon_sym_requires, - [178722] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(5423), 1, - sym_auto, - ACTIONS(5425), 1, - anon_sym_decltype, - ACTIONS(6707), 1, - sym_identifier, - ACTIONS(6709), 1, - anon_sym_LPAREN2, - ACTIONS(6711), 1, - anon_sym_STAR, - STATE(3229), 1, - sym_decltype_auto, - STATE(4994), 1, - sym__type_declarator, - STATE(6360), 1, - sym_ms_based_modifier, - STATE(5132), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - [178760] = 6, + [209282] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3814), 1, - anon_sym_COLON_COLON, - ACTIONS(5383), 1, - anon_sym_LT, - STATE(4860), 1, - sym_template_argument_list, - ACTIONS(3838), 2, + ACTIONS(5359), 1, anon_sym_LBRACK, - anon_sym_COLON, - ACTIONS(3843), 9, + ACTIONS(5357), 10, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -375010,195 +475662,122 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, + anon_sym_COLON, anon_sym_GT2, anon_sym_try, - [178788] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7627), 1, - anon_sym_RPAREN, - STATE(2476), 3, - sym_string_literal, - sym_raw_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(139), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [178814] = 13, + [209301] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + ACTIONS(41), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1489), 1, + ACTIONS(917), 1, anon_sym_LBRACE, - ACTIONS(7272), 1, - anon_sym_COMMA, - ACTIONS(7274), 1, + ACTIONS(7977), 1, anon_sym_LPAREN2, - ACTIONS(7280), 1, + ACTIONS(8212), 1, anon_sym_LBRACK, - ACTIONS(7282), 1, - anon_sym_EQ, - ACTIONS(7322), 1, - anon_sym_SEMI, - STATE(3300), 1, + ACTIONS(8228), 1, + anon_sym_try, + STATE(1293), 1, + sym_try_statement, + STATE(1298), 1, + sym_compound_statement, + STATE(3887), 1, sym_parameter_list, - STATE(4901), 1, + STATE(5647), 1, sym__function_declarator_seq, - STATE(5558), 1, - aux_sym_declaration_repeat1, - STATE(4874), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(5834), 2, - sym_argument_list, - sym_initializer_list, - [178856] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5709), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6478), 1, - anon_sym_DASH_GT, - ACTIONS(6480), 1, - anon_sym_requires, - ACTIONS(7095), 1, - anon_sym_LBRACK, - STATE(4674), 1, - sym_requires_clause, - STATE(4970), 1, - sym_trailing_return_type, - ACTIONS(4135), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7093), 2, - anon_sym_LPAREN2, - anon_sym_COLON, - STATE(4545), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat2, - STATE(4625), 2, + STATE(5560), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [178894] = 11, + [209336] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, + ACTIONS(45), 1, anon_sym___based, - ACTIONS(5423), 1, - sym_auto, - ACTIONS(5425), 1, - anon_sym_decltype, - ACTIONS(6707), 1, + ACTIONS(7506), 1, sym_identifier, - ACTIONS(6709), 1, + ACTIONS(7508), 1, anon_sym_LPAREN2, - ACTIONS(6711), 1, + ACTIONS(7510), 1, anon_sym_STAR, - STATE(3229), 1, - sym_decltype_auto, - STATE(4995), 1, + STATE(5869), 1, sym__type_declarator, - STATE(6360), 1, + STATE(7376), 1, sym_ms_based_modifier, - STATE(5132), 5, + STATE(5904), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [178932] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(5493), 1, - anon_sym_LBRACE, - ACTIONS(5598), 1, - anon_sym_COLON_COLON, - ACTIONS(6855), 1, - sym_identifier, - STATE(3133), 1, - sym_template_type, - STATE(3269), 1, - sym_enumerator_list, - STATE(5035), 1, - sym__scope_resolution, - ACTIONS(7629), 2, - anon_sym_class, - anon_sym_struct, - STATE(3877), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6159), 2, - sym_decltype, - sym_dependent_type_identifier, - [178972] = 3, + [209365] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5952), 1, - anon_sym_LBRACK, - ACTIONS(5950), 13, + ACTIONS(6591), 1, + anon_sym_requires, + STATE(5365), 1, + sym_requires_clause, + ACTIONS(6528), 2, + anon_sym_final, + anon_sym_override, + STATE(5277), 2, + sym_virtual_specifier, + aux_sym__function_declarator_seq_repeat2, + ACTIONS(6542), 5, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_GT2, + [209390] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6591), 1, + anon_sym_requires, + STATE(5417), 1, + sym_requires_clause, + ACTIONS(6528), 2, anon_sym_final, anon_sym_override, + STATE(5254), 2, + sym_virtual_specifier, + aux_sym__function_declarator_seq_repeat2, + ACTIONS(7724), 5, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_LBRACK, anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [178994] = 14, + [209415] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + ACTIONS(41), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1489), 1, + ACTIONS(738), 1, anon_sym_LBRACE, - ACTIONS(7272), 1, - anon_sym_COMMA, - ACTIONS(7274), 1, + ACTIONS(7977), 1, anon_sym_LPAREN2, - ACTIONS(7280), 1, + ACTIONS(8212), 1, anon_sym_LBRACK, - ACTIONS(7481), 1, - anon_sym_SEMI, - ACTIONS(7631), 1, - anon_sym_EQ, - STATE(3300), 1, + ACTIONS(8258), 1, + anon_sym_try, + STATE(1205), 1, + sym_try_statement, + STATE(1228), 1, + sym_compound_statement, + STATE(3887), 1, sym_parameter_list, - STATE(4901), 1, + STATE(5647), 1, sym__function_declarator_seq, - STATE(5408), 1, - aux_sym_declaration_repeat1, - STATE(5490), 1, - sym_initializer_list, - STATE(5834), 1, - sym_argument_list, - STATE(4874), 2, + STATE(5560), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [179038] = 3, + [209450] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5675), 1, + ACTIONS(5432), 1, anon_sym_LBRACK, - ACTIONS(5673), 13, + ACTIONS(5430), 10, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -375207,109 +475786,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, - anon_sym_final, - anon_sym_override, anon_sym_GT2, anon_sym_try, - anon_sym_requires, - [179060] = 5, + [209469] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7633), 1, - anon_sym_RPAREN, - STATE(2476), 3, - sym_string_literal, - sym_raw_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(139), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [179086] = 5, + ACTIONS(6591), 1, + anon_sym_requires, + STATE(5430), 1, + sym_requires_clause, + ACTIONS(6528), 2, + anon_sym_final, + anon_sym_override, + STATE(5257), 2, + sym_virtual_specifier, + aux_sym__function_declarator_seq_repeat2, + ACTIONS(8031), 5, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_LBRACK, + anon_sym_GT2, + [209494] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7635), 1, - anon_sym_RPAREN, - STATE(2476), 3, - sym_string_literal, - sym_raw_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(139), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [179112] = 12, + ACTIONS(6591), 1, + anon_sym_requires, + STATE(5420), 1, + sym_requires_clause, + ACTIONS(6528), 2, + anon_sym_final, + anon_sym_override, + STATE(5261), 2, + sym_virtual_specifier, + aux_sym__function_declarator_seq_repeat2, + ACTIONS(8019), 5, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_LBRACK, + anon_sym_GT2, + [209519] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, + ACTIONS(1329), 1, anon_sym_template, - ACTIONS(1555), 1, + ACTIONS(1973), 1, anon_sym_decltype, - ACTIONS(5576), 1, + ACTIONS(8444), 1, anon_sym_COLON_COLON, - ACTIONS(6813), 1, - anon_sym_LBRACE, - ACTIONS(6865), 1, + ACTIONS(8780), 1, sym_identifier, - STATE(4063), 1, - sym_template_type, - STATE(4261), 1, - sym_enumerator_list, - STATE(5024), 1, + STATE(5303), 1, sym__scope_resolution, - ACTIONS(7637), 2, - anon_sym_class, - anon_sym_struct, - STATE(4100), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6159), 2, + STATE(7344), 1, + sym_qualified_identifier, + ACTIONS(8782), 2, + anon_sym_enum, + anon_sym_namespace, + STATE(7638), 3, sym_decltype, + sym_template_type, sym_dependent_type_identifier, - [179152] = 6, + [209550] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7111), 1, + ACTIONS(7977), 1, anon_sym_LPAREN2, - ACTIONS(7473), 1, + ACTIONS(8756), 1, anon_sym_LBRACK, - STATE(3362), 1, + STATE(3888), 1, sym_parameter_list, - STATE(4684), 1, + STATE(5397), 1, sym__function_declarator_seq, - ACTIONS(7516), 10, - anon_sym_COMMA, + ACTIONS(8466), 7, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_COLON, anon_sym_final, anon_sym_override, anon_sym_try, anon_sym_requires, - [179180] = 3, + [209575] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6853), 1, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(8444), 1, + anon_sym_COLON_COLON, + ACTIONS(8784), 1, + sym_identifier, + STATE(5303), 1, + sym__scope_resolution, + STATE(7588), 1, + sym_qualified_identifier, + ACTIONS(8786), 2, + anon_sym_enum, + anon_sym_namespace, + STATE(7638), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + [209606] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5503), 1, anon_sym_LBRACK, - ACTIONS(6851), 13, + ACTIONS(5501), 10, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -375318,24 +475903,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, - anon_sym_final, - anon_sym_override, anon_sym_GT2, anon_sym_try, + [209625] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6591), 1, anon_sym_requires, - [179202] = 6, + STATE(5407), 1, + sym_requires_clause, + ACTIONS(6528), 2, + anon_sym_final, + anon_sym_override, + STATE(5262), 2, + sym_virtual_specifier, + aux_sym__function_declarator_seq_repeat2, + ACTIONS(8276), 5, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_LBRACK, + anon_sym_GT2, + [209650] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3814), 1, - anon_sym_COLON_COLON, - ACTIONS(5383), 1, - anon_sym_LT, - STATE(4860), 1, - sym_template_argument_list, - ACTIONS(6476), 2, + ACTIONS(8790), 1, anon_sym_LBRACK, - anon_sym_COLON, - ACTIONS(3988), 9, + ACTIONS(8788), 10, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -375343,92 +475937,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, + anon_sym_COLON, anon_sym_GT2, anon_sym_try, - [179230] = 12, + [209669] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, + ACTIONS(1329), 1, anon_sym_template, - ACTIONS(1555), 1, + ACTIONS(1973), 1, anon_sym_decltype, - ACTIONS(5493), 1, - anon_sym_LBRACE, - ACTIONS(6855), 1, - sym_identifier, - ACTIONS(6861), 1, + ACTIONS(8444), 1, anon_sym_COLON_COLON, - STATE(3133), 1, + ACTIONS(8792), 1, + sym_identifier, + STATE(5303), 1, + sym__scope_resolution, + STATE(7255), 1, + sym_qualified_identifier, + ACTIONS(8794), 2, + anon_sym_enum, + anon_sym_namespace, + STATE(7638), 3, + sym_decltype, sym_template_type, - STATE(3269), 1, - sym_enumerator_list, - STATE(4979), 1, + sym_dependent_type_identifier, + [209700] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(8444), 1, + anon_sym_COLON_COLON, + ACTIONS(8796), 1, + sym_identifier, + STATE(5303), 1, sym__scope_resolution, - ACTIONS(7639), 2, - anon_sym_class, - anon_sym_struct, - STATE(4973), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6159), 2, + STATE(7067), 1, + sym_qualified_identifier, + ACTIONS(8798), 2, + anon_sym_enum, + anon_sym_namespace, + STATE(7638), 3, sym_decltype, + sym_template_type, sym_dependent_type_identifier, - [179270] = 5, + [209731] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4917), 1, + ACTIONS(4505), 1, anon_sym_LBRACK, - ACTIONS(7641), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7643), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(4919), 9, + ACTIONS(4510), 10, + anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_final, - anon_sym_override, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_GT2, anon_sym_try, - anon_sym_requires, - [179296] = 13, + [209750] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1489), 1, - anon_sym_LBRACE, - ACTIONS(7272), 1, + ACTIONS(4505), 1, + anon_sym_LBRACK, + ACTIONS(4510), 10, anon_sym_COMMA, - ACTIONS(7274), 1, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(7280), 1, - anon_sym_LBRACK, - ACTIONS(7282), 1, - anon_sym_EQ, - ACTIONS(7481), 1, anon_sym_SEMI, - STATE(3300), 1, - sym_parameter_list, - STATE(4901), 1, - sym__function_declarator_seq, - STATE(5408), 1, - aux_sym_declaration_repeat1, - STATE(4874), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(5834), 2, - sym_argument_list, - sym_initializer_list, - [179338] = 3, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_GT2, + anon_sym_try, + [209769] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7380), 1, + ACTIONS(4505), 1, anon_sym_LBRACK, - ACTIONS(7378), 13, + ACTIONS(4510), 10, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -375437,37 +476030,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, - anon_sym_final, - anon_sym_override, anon_sym_GT2, anon_sym_try, + [209788] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7977), 1, + anon_sym_LPAREN2, + ACTIONS(8756), 1, + anon_sym_LBRACK, + STATE(3900), 1, + sym_parameter_list, + STATE(5397), 1, + sym__function_declarator_seq, + ACTIONS(8498), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_final, + anon_sym_override, anon_sym_requires, - [179360] = 4, + [209813] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4822), 1, + ACTIONS(4505), 1, anon_sym_LBRACK, - ACTIONS(7643), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(4824), 11, + ACTIONS(4510), 10, + anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_or, - anon_sym_final, - anon_sym_override, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_GT2, anon_sym_try, - anon_sym_requires, - [179384] = 3, + [209832] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7647), 1, + ACTIONS(5391), 1, anon_sym_LBRACK, - ACTIONS(7645), 13, + ACTIONS(5389), 10, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -375476,23139 +476081,23315 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, - anon_sym_final, - anon_sym_override, anon_sym_GT2, anon_sym_try, - anon_sym_requires, - [179406] = 12, + [209851] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(41), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7977), 1, + anon_sym_LPAREN2, + ACTIONS(7997), 1, + anon_sym_try, + ACTIONS(8212), 1, + anon_sym_LBRACK, + ACTIONS(8667), 1, + anon_sym_LBRACE, + STATE(2335), 1, + sym_try_statement, + STATE(2346), 1, + sym_compound_statement, + STATE(3887), 1, + sym_parameter_list, + STATE(5647), 1, + sym__function_declarator_seq, + STATE(5560), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [209886] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, + ACTIONS(1329), 1, anon_sym_template, - ACTIONS(1555), 1, + ACTIONS(1973), 1, anon_sym_decltype, - ACTIONS(4710), 1, - anon_sym_LBRACE, - ACTIONS(6546), 1, + ACTIONS(8444), 1, anon_sym_COLON_COLON, - ACTIONS(6817), 1, + ACTIONS(8800), 1, sym_identifier, - STATE(2192), 1, - sym_template_type, - STATE(2729), 1, - sym_enumerator_list, - STATE(5036), 1, + STATE(5303), 1, sym__scope_resolution, - ACTIONS(7649), 2, - anon_sym_class, - anon_sym_struct, - STATE(2322), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6159), 2, + STATE(7300), 1, + sym_qualified_identifier, + ACTIONS(8802), 2, + anon_sym_enum, + anon_sym_namespace, + STATE(7638), 3, sym_decltype, + sym_template_type, sym_dependent_type_identifier, - [179446] = 11, + [209917] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5675), 1, + ACTIONS(6779), 1, anon_sym_LBRACK, - ACTIONS(5709), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6478), 1, - anon_sym_DASH_GT, - ACTIONS(6480), 1, - anon_sym_requires, - STATE(4716), 1, - sym_requires_clause, - STATE(4945), 1, - sym_trailing_return_type, - ACTIONS(4135), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(5673), 2, + ACTIONS(4650), 10, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_COLON, - STATE(4578), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat2, - STATE(4625), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [179484] = 12, + anon_sym_GT2, + anon_sym_try, + [209936] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, + ACTIONS(1329), 1, anon_sym_template, - ACTIONS(1555), 1, + ACTIONS(1973), 1, anon_sym_decltype, - ACTIONS(4641), 1, + ACTIONS(8444), 1, anon_sym_COLON_COLON, - ACTIONS(5493), 1, - anon_sym_LBRACE, - ACTIONS(6857), 1, + ACTIONS(8804), 1, sym_identifier, - STATE(3133), 1, - sym_template_type, - STATE(3269), 1, - sym_enumerator_list, - STATE(5040), 1, + STATE(5303), 1, sym__scope_resolution, - ACTIONS(7651), 2, - anon_sym_class, - anon_sym_struct, - STATE(4035), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6159), 2, + STATE(7534), 1, + sym_qualified_identifier, + ACTIONS(8806), 2, + anon_sym_enum, + anon_sym_namespace, + STATE(7638), 3, sym_decltype, + sym_template_type, sym_dependent_type_identifier, - [179524] = 11, + [209967] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5709), 1, + ACTIONS(41), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6478), 1, - anon_sym_DASH_GT, - ACTIONS(6480), 1, - anon_sym_requires, - ACTIONS(7095), 1, - anon_sym_LBRACK, - STATE(4674), 1, - sym_requires_clause, - STATE(4970), 1, - sym_trailing_return_type, - ACTIONS(4135), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7093), 2, + ACTIONS(251), 1, + anon_sym_LBRACE, + ACTIONS(7977), 1, anon_sym_LPAREN2, - anon_sym_COLON, - STATE(4545), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat2, - STATE(4705), 2, + ACTIONS(8212), 1, + anon_sym_LBRACK, + ACTIONS(8216), 1, + anon_sym_try, + STATE(565), 1, + sym_try_statement, + STATE(566), 1, + sym_compound_statement, + STATE(3887), 1, + sym_parameter_list, + STATE(5647), 1, + sym__function_declarator_seq, + STATE(5560), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [179562] = 3, + [210002] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7655), 1, + ACTIONS(7977), 1, + anon_sym_LPAREN2, + ACTIONS(8756), 1, anon_sym_LBRACK, - ACTIONS(7653), 13, + STATE(3900), 1, + sym_parameter_list, + STATE(5397), 1, + sym__function_declarator_seq, + ACTIONS(8474), 7, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_try, anon_sym_requires, - [179584] = 6, + [210027] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7111), 1, - anon_sym_LPAREN2, - ACTIONS(7473), 1, + ACTIONS(8810), 1, anon_sym_LBRACK, - STATE(3362), 1, - sym_parameter_list, - STATE(4684), 1, - sym__function_declarator_seq, - ACTIONS(7471), 10, + ACTIONS(8808), 10, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, - anon_sym_final, - anon_sym_override, + anon_sym_GT2, anon_sym_try, - anon_sym_requires, - [179612] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(5423), 1, - sym_auto, - ACTIONS(5425), 1, - anon_sym_decltype, - ACTIONS(6707), 1, - sym_identifier, - ACTIONS(6709), 1, - anon_sym_LPAREN2, - ACTIONS(6711), 1, - anon_sym_STAR, - STATE(3229), 1, - sym_decltype_auto, - STATE(5005), 1, - sym__type_declarator, - STATE(6360), 1, - sym_ms_based_modifier, - STATE(5132), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - [179650] = 11, + [210046] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5675), 1, + ACTIONS(5204), 1, anon_sym_LBRACK, - ACTIONS(5709), 1, + ACTIONS(8812), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5206), 8, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, anon_sym_LBRACK_LBRACK, - ACTIONS(6478), 1, - anon_sym_DASH_GT, - ACTIONS(6480), 1, - anon_sym_requires, - STATE(4716), 1, - sym_requires_clause, - STATE(4945), 1, - sym_trailing_return_type, - ACTIONS(4135), 2, + anon_sym_COLON, + anon_sym_or, anon_sym_final, anon_sym_override, - ACTIONS(5673), 2, - anon_sym_LPAREN2, - anon_sym_COLON, - STATE(4578), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat2, - STATE(4660), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [179688] = 11, + anon_sym_requires, + [210067] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(5423), 1, - sym_auto, - ACTIONS(5425), 1, - anon_sym_decltype, - ACTIONS(6707), 1, - sym_identifier, - ACTIONS(6709), 1, + ACTIONS(41), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7977), 1, anon_sym_LPAREN2, - ACTIONS(6711), 1, - anon_sym_STAR, - STATE(3229), 1, - sym_decltype_auto, - STATE(5038), 1, - sym__type_declarator, - STATE(6360), 1, - sym_ms_based_modifier, - STATE(5132), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - [179726] = 2, + ACTIONS(8212), 1, + anon_sym_LBRACK, + STATE(3887), 1, + sym_parameter_list, + STATE(5647), 1, + sym__function_declarator_seq, + STATE(5560), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(8543), 4, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_try, + [210096] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4034), 13, + ACTIONS(8816), 1, + anon_sym_LBRACK, + ACTIONS(8814), 10, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_EQ, - anon_sym_or, + anon_sym_COLON, + anon_sym_GT2, + anon_sym_try, + [210115] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5299), 1, + anon_sym_LBRACK, + ACTIONS(8812), 2, + anon_sym_AMP_AMP, anon_sym_and, + ACTIONS(8818), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5301), 6, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, anon_sym_final, anon_sym_override, - anon_sym_try, anon_sym_requires, - [179745] = 8, + [210138] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5709), 1, + ACTIONS(6466), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7111), 1, - anon_sym_LPAREN2, - ACTIONS(7117), 1, + ACTIONS(8822), 1, anon_sym_LBRACK, - STATE(3362), 1, - sym_parameter_list, - STATE(4960), 1, - sym__function_declarator_seq, - STATE(4894), 2, + STATE(5349), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(7657), 6, + ACTIONS(8820), 7, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, anon_sym_try, - [179776] = 11, + [210161] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1489), 1, - anon_sym_LBRACE, - ACTIONS(7274), 1, + ACTIONS(7977), 1, anon_sym_LPAREN2, - ACTIONS(7280), 1, + ACTIONS(8756), 1, anon_sym_LBRACK, - ACTIONS(7282), 1, - anon_sym_EQ, - STATE(3300), 1, + STATE(3900), 1, sym_parameter_list, - STATE(4901), 1, + STATE(5397), 1, sym__function_declarator_seq, - ACTIONS(7659), 2, + ACTIONS(8482), 7, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, - STATE(4874), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(5834), 2, - sym_argument_list, - sym_initializer_list, - [179813] = 7, + anon_sym_LBRACE, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [210186] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5675), 1, + ACTIONS(8826), 1, anon_sym_LBRACK, - ACTIONS(5990), 1, - anon_sym_requires, - STATE(4716), 1, - sym_requires_clause, - ACTIONS(4135), 2, - anon_sym_final, - anon_sym_override, - STATE(4578), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat2, - ACTIONS(5673), 6, + ACTIONS(8824), 10, + anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_try, - [179842] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(6476), 1, - anon_sym_LBRACK, - ACTIONS(7661), 1, - anon_sym_SEMI, - ACTIONS(7663), 1, anon_sym_EQ, - ACTIONS(7665), 1, anon_sym_COLON, - ACTIONS(7667), 1, + anon_sym_GT2, anon_sym_try, - STATE(1054), 1, - sym_compound_statement, - STATE(5804), 1, - sym_field_initializer_list, - ACTIONS(3988), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - STATE(1055), 3, - sym_constructor_try_statement, - sym_default_method_clause, - sym_delete_method_clause, - [179879] = 2, + [210205] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7583), 13, - anon_sym_DOT_DOT_DOT, + ACTIONS(8830), 1, + anon_sym_LBRACK, + ACTIONS(8828), 10, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_EQ, - anon_sym_final, - anon_sym_override, + anon_sym_COLON, anon_sym_GT2, anon_sym_try, - anon_sym_requires, - [179898] = 2, + [210224] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7587), 13, - anon_sym_DOT_DOT_DOT, + ACTIONS(7977), 1, + anon_sym_LPAREN2, + ACTIONS(8756), 1, + anon_sym_LBRACK, + STATE(3900), 1, + sym_parameter_list, + STATE(5397), 1, + sym__function_declarator_seq, + ACTIONS(8466), 7, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_try, anon_sym_requires, - [179917] = 3, + [210249] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7669), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(4824), 11, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(8832), 1, + sym_identifier, + ACTIONS(8834), 1, + anon_sym_COLON_COLON, + STATE(5665), 1, + sym__scope_resolution, + STATE(6655), 1, + sym_field_initializer, + STATE(6067), 2, + sym_template_method, + sym_qualified_field_identifier, + STATE(7638), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + [210280] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7977), 1, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + ACTIONS(8756), 1, + anon_sym_LBRACK, + STATE(3900), 1, + sym_parameter_list, + STATE(5397), 1, + sym__function_declarator_seq, + ACTIONS(8494), 7, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_or, anon_sym_final, anon_sym_override, - anon_sym_try, anon_sym_requires, - [179938] = 11, + [210305] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(8832), 1, + sym_identifier, + ACTIONS(8834), 1, + anon_sym_COLON_COLON, + STATE(5665), 1, + sym__scope_resolution, + STATE(6319), 1, + sym_field_initializer, + STATE(6067), 2, + sym_template_method, + sym_qualified_field_identifier, + STATE(7638), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + [210336] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(6476), 1, + ACTIONS(41), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7977), 1, + anon_sym_LPAREN2, + ACTIONS(7987), 1, + anon_sym_try, + ACTIONS(8212), 1, anon_sym_LBRACK, - ACTIONS(7665), 1, - anon_sym_COLON, - ACTIONS(7671), 1, - anon_sym_SEMI, - ACTIONS(7673), 1, + ACTIONS(8727), 1, anon_sym_LBRACE, - ACTIONS(7675), 1, - anon_sym_EQ, - ACTIONS(7677), 1, - anon_sym_try, - STATE(2229), 1, + STATE(2477), 1, sym_compound_statement, - STATE(5868), 1, - sym_field_initializer_list, - ACTIONS(3988), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - STATE(2228), 3, - sym_constructor_try_statement, - sym_default_method_clause, - sym_delete_method_clause, - [179975] = 5, + STATE(2478), 1, + sym_try_statement, + STATE(3887), 1, + sym_parameter_list, + STATE(5647), 1, + sym__function_declarator_seq, + STATE(5560), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [210371] = 8, ACTIONS(3), 1, sym_comment, - STATE(6173), 1, - sym_concatenated_string, - STATE(4688), 2, - sym_string_literal, - sym_raw_string_literal, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(139), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [180000] = 11, + ACTIONS(45), 1, + anon_sym___based, + ACTIONS(7506), 1, + sym_identifier, + ACTIONS(7508), 1, + anon_sym_LPAREN2, + ACTIONS(7510), 1, + anon_sym_STAR, + STATE(5840), 1, + sym__type_declarator, + STATE(7376), 1, + sym_ms_based_modifier, + STATE(5904), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + [210400] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(6476), 1, + ACTIONS(41), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7977), 1, + anon_sym_LPAREN2, + ACTIONS(8097), 1, + anon_sym_try, + ACTIONS(8212), 1, anon_sym_LBRACK, - ACTIONS(7665), 1, - anon_sym_COLON, - ACTIONS(7679), 1, - anon_sym_SEMI, - ACTIONS(7681), 1, + ACTIONS(8659), 1, anon_sym_LBRACE, - ACTIONS(7683), 1, - anon_sym_EQ, - ACTIONS(7685), 1, - anon_sym_try, - STATE(2160), 1, + STATE(2531), 1, + sym_try_statement, + STATE(2691), 1, sym_compound_statement, - STATE(5781), 1, - sym_field_initializer_list, - ACTIONS(3988), 2, - anon_sym_LPAREN2, + STATE(3887), 1, + sym_parameter_list, + STATE(5647), 1, + sym__function_declarator_seq, + STATE(5560), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [210435] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(41), 1, anon_sym_LBRACK_LBRACK, - STATE(2162), 3, - sym_constructor_try_statement, - sym_default_method_clause, - sym_delete_method_clause, - [180037] = 2, + ACTIONS(351), 1, + anon_sym_LBRACE, + ACTIONS(7977), 1, + anon_sym_LPAREN2, + ACTIONS(8212), 1, + anon_sym_LBRACK, + ACTIONS(8272), 1, + anon_sym_try, + STATE(770), 1, + sym_try_statement, + STATE(771), 1, + sym_compound_statement, + STATE(3887), 1, + sym_parameter_list, + STATE(5647), 1, + sym__function_declarator_seq, + STATE(5560), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [210470] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7378), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(7977), 1, anon_sym_LPAREN2, + ACTIONS(8756), 1, + anon_sym_LBRACK, + STATE(3888), 1, + sym_parameter_list, + STATE(5397), 1, + sym__function_declarator_seq, + ACTIONS(8498), 7, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_EQ, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_try, anon_sym_requires, - [180056] = 11, + [210495] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(6476), 1, - anon_sym_LBRACK, - ACTIONS(7665), 1, - anon_sym_COLON, - ACTIONS(7681), 1, + ACTIONS(41), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(49), 1, anon_sym_LBRACE, - ACTIONS(7683), 1, - anon_sym_EQ, - ACTIONS(7685), 1, + ACTIONS(7977), 1, + anon_sym_LPAREN2, + ACTIONS(8212), 1, + anon_sym_LBRACK, + ACTIONS(8236), 1, anon_sym_try, - ACTIONS(7687), 1, - anon_sym_SEMI, - STATE(2024), 1, + STATE(1339), 1, sym_compound_statement, - STATE(5792), 1, - sym_field_initializer_list, - ACTIONS(3988), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - STATE(2025), 3, - sym_constructor_try_statement, - sym_default_method_clause, - sym_delete_method_clause, - [180093] = 3, + STATE(1340), 1, + sym_try_statement, + STATE(3887), 1, + sym_parameter_list, + STATE(5647), 1, + sym__function_declarator_seq, + STATE(5560), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [210530] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7689), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(4824), 11, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(7977), 1, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(8756), 1, anon_sym_LBRACK, - anon_sym_or, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [180114] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4062), 13, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + STATE(3888), 1, + sym_parameter_list, + STATE(5397), 1, + sym__function_declarator_seq, + ACTIONS(8470), 7, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_EQ, - anon_sym_or, - anon_sym_and, anon_sym_final, anon_sym_override, anon_sym_try, anon_sym_requires, - [180133] = 7, + [210555] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5990), 1, - anon_sym_requires, - ACTIONS(7077), 1, - anon_sym_LBRACK, - STATE(4728), 1, - sym_requires_clause, - ACTIONS(4135), 2, - anon_sym_final, - anon_sym_override, - STATE(4541), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat2, - ACTIONS(7075), 6, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, + ACTIONS(41), 1, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, + ACTIONS(7977), 1, + anon_sym_LPAREN2, + ACTIONS(8045), 1, anon_sym_try, - [180162] = 5, + ACTIONS(8212), 1, + anon_sym_LBRACK, + ACTIONS(8695), 1, + anon_sym_LBRACE, + STATE(2650), 1, + sym_try_statement, + STATE(2653), 1, + sym_compound_statement, + STATE(3887), 1, + sym_parameter_list, + STATE(5647), 1, + sym__function_declarator_seq, + STATE(5560), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [210590] = 10, ACTIONS(3), 1, sym_comment, - STATE(6238), 1, - sym_concatenated_string, - STATE(4719), 2, - sym_string_literal, - sym_raw_string_literal, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(139), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [180187] = 11, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(8834), 1, + anon_sym_COLON_COLON, + ACTIONS(8836), 1, + sym_identifier, + ACTIONS(8838), 1, + anon_sym_template, + STATE(5665), 1, + sym__scope_resolution, + STATE(6870), 1, + sym_qualified_field_identifier, + STATE(6871), 1, + sym_dependent_field_identifier, + STATE(6874), 1, + sym_template_method, + STATE(7638), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + [210623] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(666), 1, - anon_sym_LBRACE, - ACTIONS(6476), 1, + ACTIONS(7977), 1, + anon_sym_LPAREN2, + ACTIONS(8756), 1, anon_sym_LBRACK, - ACTIONS(7665), 1, - anon_sym_COLON, - ACTIONS(7691), 1, + STATE(3888), 1, + sym_parameter_list, + STATE(5397), 1, + sym__function_declarator_seq, + ACTIONS(8474), 7, anon_sym_SEMI, - ACTIONS(7693), 1, + anon_sym_LBRACE, anon_sym_EQ, - ACTIONS(7695), 1, + anon_sym_final, + anon_sym_override, anon_sym_try, - STATE(1086), 1, - sym_compound_statement, - STATE(5837), 1, - sym_field_initializer_list, - ACTIONS(3988), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - STATE(1085), 3, - sym_constructor_try_statement, - sym_default_method_clause, - sym_delete_method_clause, - [180224] = 11, + anon_sym_requires, + [210648] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(640), 1, - anon_sym_LBRACE, - ACTIONS(6476), 1, - anon_sym_LBRACK, - ACTIONS(7665), 1, - anon_sym_COLON, - ACTIONS(7697), 1, - anon_sym_SEMI, - ACTIONS(7699), 1, - anon_sym_EQ, - ACTIONS(7701), 1, - anon_sym_try, - STATE(1039), 1, - sym_compound_statement, - STATE(5986), 1, - sym_field_initializer_list, - ACTIONS(3988), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - STATE(1038), 3, - sym_constructor_try_statement, - sym_default_method_clause, - sym_delete_method_clause, - [180261] = 8, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(8444), 1, + anon_sym_COLON_COLON, + ACTIONS(8840), 1, + sym_identifier, + STATE(5303), 1, + sym__scope_resolution, + STATE(6988), 1, + sym_qualified_identifier, + ACTIONS(8842), 2, + anon_sym_enum, + anon_sym_namespace, + STATE(7638), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + [210679] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5709), 1, + ACTIONS(41), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7111), 1, + ACTIONS(7977), 1, anon_sym_LPAREN2, - ACTIONS(7117), 1, + ACTIONS(8212), 1, anon_sym_LBRACK, - STATE(3362), 1, + STATE(3887), 1, sym_parameter_list, - STATE(4960), 1, + STATE(5647), 1, sym__function_declarator_seq, - STATE(4894), 2, + STATE(5560), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(7703), 6, - anon_sym_COMMA, + ACTIONS(8579), 4, + anon_sym_RPAREN, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, anon_sym_try, - [180292] = 2, + [210708] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4093), 13, + ACTIONS(7977), 1, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(8756), 1, + anon_sym_LBRACK, + STATE(3900), 1, + sym_parameter_list, + STATE(5397), 1, + sym__function_declarator_seq, + ACTIONS(8472), 7, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, anon_sym_final, anon_sym_override, - anon_sym_try, anon_sym_requires, - [180311] = 5, + [210733] = 6, ACTIONS(3), 1, sym_comment, - STATE(6117), 1, - sym_concatenated_string, - STATE(4711), 2, - sym_string_literal, - sym_raw_string_literal, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(139), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [180336] = 11, + ACTIONS(7977), 1, + anon_sym_LPAREN2, + ACTIONS(8756), 1, + anon_sym_LBRACK, + STATE(3964), 1, + sym_parameter_list, + STATE(5397), 1, + sym__function_declarator_seq, + ACTIONS(8470), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [210757] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(666), 1, - anon_sym_LBRACE, - ACTIONS(6476), 1, + ACTIONS(6835), 1, + anon_sym_requires, + ACTIONS(8278), 1, anon_sym_LBRACK, - ACTIONS(7665), 1, - anon_sym_COLON, - ACTIONS(7693), 1, - anon_sym_EQ, - ACTIONS(7695), 1, - anon_sym_try, - ACTIONS(7705), 1, - anon_sym_SEMI, - STATE(1077), 1, - sym_compound_statement, - STATE(5826), 1, - sym_field_initializer_list, - ACTIONS(3988), 2, + STATE(5387), 1, + sym_requires_clause, + ACTIONS(4880), 2, + anon_sym_final, + anon_sym_override, + STATE(5269), 2, + sym_virtual_specifier, + aux_sym__function_declarator_seq_repeat2, + ACTIONS(8276), 3, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - STATE(1076), 3, - sym_constructor_try_statement, - sym_default_method_clause, - sym_delete_method_clause, - [180373] = 2, + anon_sym_COLON, + [210783] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7338), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(8844), 1, + sym_identifier, + ACTIONS(8846), 1, + anon_sym_COLON_COLON, + STATE(3226), 1, + sym_template_type, + STATE(5781), 1, + sym__scope_resolution, + STATE(3332), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7638), 2, + sym_decltype, + sym_dependent_type_identifier, + [210813] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(3663), 1, + anon_sym_COLON_COLON, + ACTIONS(7728), 1, + sym_identifier, + STATE(3578), 1, + sym_template_type, + STATE(5779), 1, + sym__scope_resolution, + STATE(6125), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7638), 2, + sym_decltype, + sym_dependent_type_identifier, + [210843] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7977), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(8756), 1, anon_sym_LBRACK, - anon_sym_EQ, + STATE(3964), 1, + sym_parameter_list, + STATE(5397), 1, + sym__function_declarator_seq, + ACTIONS(8482), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_final, anon_sym_override, anon_sym_GT2, - anon_sym_try, anon_sym_requires, - [180392] = 2, + [210867] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7593), 13, - anon_sym_DOT_DOT_DOT, + ACTIONS(8850), 1, + anon_sym_LBRACK, + ACTIONS(8848), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, + anon_sym_COLON, anon_sym_try, - anon_sym_requires, - [180411] = 2, + [210885] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7603), 13, - anon_sym_DOT_DOT_DOT, + ACTIONS(8854), 1, + anon_sym_LBRACK, + ACTIONS(8852), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [210903] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7977), 1, + anon_sym_LPAREN2, + ACTIONS(8756), 1, + anon_sym_LBRACK, + STATE(3964), 1, + sym_parameter_list, + STATE(5397), 1, + sym__function_declarator_seq, + ACTIONS(8494), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_final, anon_sym_override, anon_sym_GT2, - anon_sym_try, anon_sym_requires, - [180430] = 2, + [210927] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4107), 13, + ACTIONS(6544), 1, + anon_sym_LBRACK, + ACTIONS(6835), 1, + anon_sym_requires, + STATE(5360), 1, + sym_requires_clause, + ACTIONS(4880), 2, + anon_sym_final, + anon_sym_override, + STATE(5295), 2, + sym_virtual_specifier, + aux_sym__function_declarator_seq_repeat2, + ACTIONS(6542), 3, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + [210953] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(41), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1899), 1, anon_sym_LBRACE, + ACTIONS(7977), 1, + anon_sym_LPAREN2, + ACTIONS(8212), 1, anon_sym_LBRACK, + ACTIONS(8856), 1, anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [180449] = 2, + STATE(3793), 1, + sym_parameter_list, + STATE(5647), 1, + sym__function_declarator_seq, + STATE(7714), 1, + sym_initializer_list, + STATE(5560), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [210985] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7607), 13, - anon_sym_DOT_DOT_DOT, + ACTIONS(8860), 1, + anon_sym_LBRACK, + ACTIONS(8858), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, + anon_sym_COLON, anon_sym_try, - anon_sym_requires, - [180468] = 2, + [211003] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4044), 13, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(3663), 1, + anon_sym_COLON_COLON, + ACTIONS(7728), 1, + sym_identifier, + STATE(3578), 1, + sym_template_type, + STATE(5779), 1, + sym__scope_resolution, + STATE(6491), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7638), 2, + sym_decltype, + sym_dependent_type_identifier, + [211033] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(3663), 1, + anon_sym_COLON_COLON, + ACTIONS(7728), 1, + sym_identifier, + STATE(3578), 1, + sym_template_type, + STATE(5779), 1, + sym__scope_resolution, + STATE(6046), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7638), 2, + sym_decltype, + sym_dependent_type_identifier, + [211063] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8864), 1, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [180487] = 2, + STATE(6023), 1, + sym_gnu_asm_output_operand, + STATE(7495), 1, + sym_string_literal, + ACTIONS(8862), 2, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(107), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [211087] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1735), 13, + ACTIONS(8868), 1, + anon_sym_LBRACK, + ACTIONS(8866), 9, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_final, - anon_sym_override, + anon_sym_COLON, anon_sym_try, - anon_sym_requires, - [180506] = 2, + [211105] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1727), 13, + ACTIONS(8872), 1, + anon_sym_LBRACK, + ACTIONS(8870), 9, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_final, - anon_sym_override, + anon_sym_COLON, anon_sym_try, - anon_sym_requires, - [180525] = 10, + [211123] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3908), 1, + ACTIONS(7977), 1, anon_sym_LPAREN2, - ACTIONS(6508), 1, - anon_sym_STAR, - ACTIONS(6510), 1, - anon_sym_AMP_AMP, - ACTIONS(6512), 1, - anon_sym_AMP, - ACTIONS(6514), 1, + ACTIONS(8756), 1, anon_sym_LBRACK, - STATE(3461), 1, + STATE(3964), 1, sym_parameter_list, - STATE(4765), 1, + STATE(5397), 1, sym__function_declarator_seq, - STATE(5088), 1, - sym__abstract_declarator, - STATE(4764), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - [180560] = 7, + ACTIONS(8474), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [211147] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5990), 1, - anon_sym_requires, - ACTIONS(7095), 1, + ACTIONS(6409), 1, anon_sym_LBRACK, - STATE(4674), 1, + ACTIONS(6835), 1, + anon_sym_requires, + STATE(5422), 1, sym_requires_clause, - ACTIONS(4135), 2, + ACTIONS(4880), 2, anon_sym_final, anon_sym_override, - STATE(4545), 2, + STATE(5301), 2, sym_virtual_specifier, aux_sym__function_declarator_seq_repeat2, - ACTIONS(7093), 6, + ACTIONS(6407), 3, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + [211173] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5573), 1, + anon_sym_LBRACK, + ACTIONS(5571), 9, + anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, anon_sym_try, - [180589] = 5, + [211191] = 6, ACTIONS(3), 1, sym_comment, - STATE(6209), 1, - sym_concatenated_string, - STATE(4720), 2, + ACTIONS(8876), 1, + anon_sym_LBRACK, + STATE(6112), 1, + sym_gnu_asm_input_operand, + STATE(7624), 1, sym_string_literal, - sym_raw_string_literal, - ACTIONS(103), 5, + ACTIONS(8874), 2, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(107), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(139), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [180614] = 2, + [211215] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4089), 13, + ACTIONS(7977), 1, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(8756), 1, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [180633] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7545), 13, + STATE(3964), 1, + sym_parameter_list, + STATE(5397), 1, + sym__function_declarator_seq, + ACTIONS(8472), 6, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, anon_sym_final, anon_sym_override, anon_sym_GT2, - anon_sym_try, anon_sym_requires, - [180652] = 2, + [211239] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7611), 13, - anon_sym_DOT_DOT_DOT, + ACTIONS(8880), 1, + anon_sym_LBRACK, + ACTIONS(8878), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, + anon_sym_COLON, anon_sym_try, - anon_sym_requires, - [180671] = 2, + [211257] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7645), 13, - anon_sym_DOT_DOT_DOT, + ACTIONS(8884), 1, + anon_sym_LBRACK, + ACTIONS(8882), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, + anon_sym_COLON, anon_sym_try, - anon_sym_requires, - [180690] = 2, + [211275] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4078), 13, + ACTIONS(41), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7977), 1, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(8212), 1, anon_sym_LBRACK, + ACTIONS(8888), 1, anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [180709] = 7, + STATE(3793), 1, + sym_parameter_list, + STATE(5647), 1, + sym__function_declarator_seq, + ACTIONS(8886), 2, + anon_sym_COMMA, + anon_sym_GT2, + STATE(5560), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [211305] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5952), 1, - anon_sym_LBRACK, - ACTIONS(5990), 1, + ACTIONS(6835), 1, anon_sym_requires, - STATE(4723), 1, + ACTIONS(8021), 1, + anon_sym_LBRACK, + STATE(5388), 1, sym_requires_clause, - ACTIONS(4135), 2, + ACTIONS(4880), 2, anon_sym_final, anon_sym_override, - STATE(4538), 2, + STATE(5223), 2, sym_virtual_specifier, aux_sym__function_declarator_seq_repeat2, - ACTIONS(5950), 6, - anon_sym_RPAREN, + ACTIONS(8019), 3, anon_sym_LPAREN2, - anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_try, - [180738] = 8, + anon_sym_COLON, + [211331] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5709), 1, + ACTIONS(6466), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7111), 1, - anon_sym_LPAREN2, - ACTIONS(7117), 1, + ACTIONS(8743), 1, anon_sym_LBRACK, - STATE(3362), 1, - sym_parameter_list, - STATE(4960), 1, - sym__function_declarator_seq, - STATE(4894), 2, + STATE(5349), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(7707), 6, + ACTIONS(8741), 6, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, - anon_sym_try, - [180769] = 2, + [211353] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4070), 13, + ACTIONS(7977), 1, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(8756), 1, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, + STATE(3964), 1, + sym_parameter_list, + STATE(5397), 1, + sym__function_declarator_seq, + ACTIONS(8498), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_final, anon_sym_override, - anon_sym_try, + anon_sym_GT2, anon_sym_requires, - [180788] = 11, + [211377] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(6476), 1, - anon_sym_LBRACK, - ACTIONS(7663), 1, - anon_sym_EQ, - ACTIONS(7665), 1, - anon_sym_COLON, - ACTIONS(7667), 1, - anon_sym_try, - ACTIONS(7709), 1, - anon_sym_SEMI, - STATE(1042), 1, - sym_compound_statement, - STATE(5926), 1, - sym_field_initializer_list, - ACTIONS(3988), 2, - anon_sym_LPAREN2, + ACTIONS(41), 1, anon_sym_LBRACK_LBRACK, - STATE(1044), 3, - sym_constructor_try_statement, - sym_default_method_clause, - sym_delete_method_clause, - [180825] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(6045), 1, - sym_concatenated_string, - STATE(4703), 2, - sym_string_literal, - sym_raw_string_literal, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(139), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [180850] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(640), 1, - anon_sym_LBRACE, - ACTIONS(6476), 1, + ACTIONS(7977), 1, + anon_sym_LPAREN2, + ACTIONS(8212), 1, anon_sym_LBRACK, - ACTIONS(7665), 1, - anon_sym_COLON, - ACTIONS(7699), 1, + ACTIONS(8890), 1, anon_sym_EQ, - ACTIONS(7701), 1, - anon_sym_try, - ACTIONS(7711), 1, - anon_sym_SEMI, - STATE(989), 1, - sym_compound_statement, - STATE(5966), 1, - sym_field_initializer_list, - ACTIONS(3988), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - STATE(987), 3, - sym_constructor_try_statement, - sym_default_method_clause, - sym_delete_method_clause, - [180887] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7537), 13, - anon_sym_DOT_DOT_DOT, + STATE(3793), 1, + sym_parameter_list, + STATE(5647), 1, + sym__function_declarator_seq, + ACTIONS(8886), 2, anon_sym_COMMA, anon_sym_RPAREN, + STATE(5560), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [211407] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7977), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(8756), 1, anon_sym_LBRACK, - anon_sym_EQ, + STATE(3964), 1, + sym_parameter_list, + STATE(5397), 1, + sym__function_declarator_seq, + ACTIONS(8466), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_final, anon_sym_override, anon_sym_GT2, - anon_sym_try, anon_sym_requires, - [180906] = 2, + [211431] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4066), 13, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(6835), 1, + anon_sym_requires, + ACTIONS(7726), 1, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, + STATE(5358), 1, + sym_requires_clause, + ACTIONS(4880), 2, anon_sym_final, anon_sym_override, - anon_sym_try, - anon_sym_requires, - [180925] = 4, + STATE(5288), 2, + sym_virtual_specifier, + aux_sym__function_declarator_seq_repeat2, + ACTIONS(7724), 3, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + [211457] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7689), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7713), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(4919), 9, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(6835), 1, + anon_sym_requires, + ACTIONS(8033), 1, anon_sym_LBRACK, + STATE(5419), 1, + sym_requires_clause, + ACTIONS(4880), 2, anon_sym_final, anon_sym_override, - anon_sym_requires, - [180948] = 5, + STATE(5258), 2, + sym_virtual_specifier, + aux_sym__function_declarator_seq_repeat2, + ACTIONS(8031), 3, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + [211483] = 9, ACTIONS(3), 1, sym_comment, - STATE(6032), 1, - sym_concatenated_string, - STATE(4667), 2, - sym_string_literal, - sym_raw_string_literal, - ACTIONS(103), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(139), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [180973] = 2, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(3663), 1, + anon_sym_COLON_COLON, + ACTIONS(7728), 1, + sym_identifier, + STATE(3578), 1, + sym_template_type, + STATE(5779), 1, + sym__scope_resolution, + STATE(6353), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7638), 2, + sym_decltype, + sym_dependent_type_identifier, + [211513] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5950), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(8444), 1, + anon_sym_COLON_COLON, + ACTIONS(8892), 1, + sym_identifier, + STATE(5303), 1, + sym__scope_resolution, + STATE(7363), 1, + sym_qualified_identifier, + STATE(7638), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + [211540] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(41), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7977), 1, anon_sym_LPAREN2, + ACTIONS(8894), 1, + anon_sym_COMMA, + ACTIONS(8896), 1, anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(8898), 1, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [180992] = 2, + STATE(5912), 1, + sym_parameter_list, + STATE(6479), 1, + aux_sym_type_definition_repeat2, + STATE(5836), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [211569] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4038), 13, + ACTIONS(41), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7977), 1, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(8894), 1, + anon_sym_COMMA, + ACTIONS(8898), 1, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [181011] = 7, + ACTIONS(8900), 1, + anon_sym_SEMI, + STATE(5912), 1, + sym_parameter_list, + STATE(6335), 1, + aux_sym_type_definition_repeat2, + STATE(5836), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [211598] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5990), 1, - anon_sym_requires, - ACTIONS(7380), 1, + ACTIONS(41), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7977), 1, + anon_sym_LPAREN2, + ACTIONS(8898), 1, anon_sym_LBRACK, - STATE(4653), 1, - sym_requires_clause, - ACTIONS(4135), 2, - anon_sym_final, - anon_sym_override, - STATE(4528), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat2, - ACTIONS(7378), 6, + STATE(5912), 1, + sym_parameter_list, + STATE(5836), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(8902), 3, + anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_try, - [181040] = 11, + [211623] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(8444), 1, + anon_sym_COLON_COLON, + ACTIONS(8904), 1, + sym_identifier, + STATE(5303), 1, + sym__scope_resolution, + STATE(7264), 1, + sym_qualified_identifier, + STATE(7638), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + [211650] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6476), 1, + ACTIONS(41), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7977), 1, + anon_sym_LPAREN2, + ACTIONS(8894), 1, + anon_sym_COMMA, + ACTIONS(8898), 1, anon_sym_LBRACK, - ACTIONS(7665), 1, - anon_sym_COLON, - ACTIONS(7715), 1, + ACTIONS(8906), 1, anon_sym_SEMI, - ACTIONS(7717), 1, - anon_sym_LBRACE, - ACTIONS(7719), 1, - anon_sym_EQ, - ACTIONS(7721), 1, - anon_sym_try, - STATE(2385), 1, - sym_compound_statement, - STATE(5763), 1, - sym_field_initializer_list, - ACTIONS(3988), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - STATE(2384), 3, - sym_constructor_try_statement, - sym_default_method_clause, - sym_delete_method_clause, - [181077] = 11, + STATE(5912), 1, + sym_parameter_list, + STATE(6301), 1, + aux_sym_type_definition_repeat2, + STATE(5836), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [211679] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(255), 1, + ACTIONS(5299), 1, + anon_sym_AMP, + ACTIONS(8908), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8910), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5301), 4, + anon_sym_LPAREN2, + anon_sym_STAR, anon_sym_LBRACE, - ACTIONS(6476), 1, anon_sym_LBRACK, - ACTIONS(7665), 1, - anon_sym_COLON, - ACTIONS(7723), 1, - anon_sym_SEMI, - ACTIONS(7725), 1, - anon_sym_EQ, - ACTIONS(7727), 1, - anon_sym_try, - STATE(496), 1, - sym_compound_statement, - STATE(5918), 1, - sym_field_initializer_list, - ACTIONS(3988), 2, + [211700] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7977), 1, anon_sym_LPAREN2, + ACTIONS(8468), 1, + anon_sym_LBRACK, + STATE(4121), 1, + sym_parameter_list, + STATE(5450), 1, + sym__function_declarator_seq, + ACTIONS(8498), 5, anon_sym_LBRACK_LBRACK, - STATE(552), 3, - sym_constructor_try_statement, - sym_default_method_clause, - sym_delete_method_clause, - [181114] = 2, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [211723] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5673), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(7977), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(8468), 1, anon_sym_LBRACK, - anon_sym_EQ, + STATE(4121), 1, + sym_parameter_list, + STATE(5450), 1, + sym__function_declarator_seq, + ACTIONS(8482), 5, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_try, anon_sym_requires, - [181133] = 8, + [211746] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5709), 1, + ACTIONS(41), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7111), 1, + ACTIONS(7977), 1, anon_sym_LPAREN2, - ACTIONS(7117), 1, + ACTIONS(8894), 1, + anon_sym_COMMA, + ACTIONS(8898), 1, anon_sym_LBRACK, - STATE(3362), 1, + ACTIONS(8912), 1, + anon_sym_SEMI, + STATE(5912), 1, sym_parameter_list, - STATE(4960), 1, - sym__function_declarator_seq, - STATE(4894), 2, + STATE(6264), 1, + aux_sym_type_definition_repeat2, + STATE(5836), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(7729), 6, + [211775] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(6288), 1, + anon_sym_COLON_COLON, + ACTIONS(8914), 1, + sym_identifier, + ACTIONS(8916), 1, + anon_sym_template, + STATE(2865), 1, + sym_dependent_type_identifier, + STATE(2937), 1, + sym_template_type, + STATE(2976), 1, + sym_qualified_type_identifier, + STATE(5712), 1, + sym__scope_resolution, + STATE(7638), 1, + sym_decltype, + [211806] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(7534), 1, + anon_sym_COLON_COLON, + ACTIONS(8918), 1, + sym_identifier, + ACTIONS(8920), 1, + anon_sym_template, + STATE(2522), 1, + sym_template_type, + STATE(2523), 1, + sym_dependent_type_identifier, + STATE(2666), 1, + sym_qualified_type_identifier, + STATE(5713), 1, + sym__scope_resolution, + STATE(7638), 1, + sym_decltype, + [211837] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(41), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7977), 1, + anon_sym_LPAREN2, + ACTIONS(8894), 1, anon_sym_COMMA, + ACTIONS(8898), 1, + anon_sym_LBRACK, + ACTIONS(8922), 1, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_try, - [181164] = 2, + STATE(5912), 1, + sym_parameter_list, + STATE(6396), 1, + aux_sym_type_definition_repeat2, + STATE(5836), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [211866] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7075), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(8444), 1, + anon_sym_COLON_COLON, + ACTIONS(8924), 1, + sym_identifier, + STATE(5303), 1, + sym__scope_resolution, + STATE(7374), 1, + sym_qualified_identifier, + STATE(7638), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + [211893] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(41), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7977), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(8894), 1, + anon_sym_COMMA, + ACTIONS(8898), 1, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [181183] = 9, + ACTIONS(8926), 1, + anon_sym_SEMI, + STATE(5912), 1, + sym_parameter_list, + STATE(6337), 1, + aux_sym_type_definition_repeat2, + STATE(5836), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [211922] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4133), 1, - anon_sym_COLON, - ACTIONS(5445), 1, - anon_sym_LBRACE, - STATE(3221), 1, - sym_field_declaration_list, - STATE(5346), 1, - sym_virtual_specifier, - STATE(5854), 1, - sym_base_class_clause, - ACTIONS(4158), 2, + ACTIONS(41), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7977), 1, anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(5449), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(4160), 4, - anon_sym___based, - sym_identifier, - sym_auto, + ACTIONS(8894), 1, + anon_sym_COMMA, + ACTIONS(8898), 1, + anon_sym_LBRACK, + ACTIONS(8928), 1, + anon_sym_SEMI, + STATE(5912), 1, + sym_parameter_list, + STATE(6438), 1, + aux_sym_type_definition_repeat2, + STATE(5836), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [211951] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1973), 1, anon_sym_decltype, - [181216] = 5, + ACTIONS(5102), 1, + anon_sym_COLON_COLON, + ACTIONS(8930), 1, + sym_identifier, + ACTIONS(8932), 1, + anon_sym_template, + STATE(3595), 1, + sym_template_type, + STATE(3601), 1, + sym_dependent_type_identifier, + STATE(3747), 1, + sym_qualified_type_identifier, + STATE(5718), 1, + sym__scope_resolution, + STATE(7638), 1, + sym_decltype, + [211982] = 5, ACTIONS(3), 1, sym_comment, - STATE(6437), 1, - sym_concatenated_string, - STATE(4677), 2, + ACTIONS(8934), 1, + sym_identifier, + ACTIONS(8938), 1, + sym_system_lib_string, + STATE(7664), 2, + sym_preproc_call_expression, sym_string_literal, - sym_raw_string_literal, - ACTIONS(103), 5, + ACTIONS(8936), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(139), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [181241] = 11, + [212003] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6476), 1, + ACTIONS(41), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7977), 1, + anon_sym_LPAREN2, + ACTIONS(8894), 1, + anon_sym_COMMA, + ACTIONS(8898), 1, anon_sym_LBRACK, - ACTIONS(7665), 1, - anon_sym_COLON, - ACTIONS(7673), 1, - anon_sym_LBRACE, - ACTIONS(7675), 1, - anon_sym_EQ, - ACTIONS(7677), 1, - anon_sym_try, - ACTIONS(7731), 1, + ACTIONS(8940), 1, anon_sym_SEMI, - STATE(2290), 1, - sym_compound_statement, - STATE(5850), 1, - sym_field_initializer_list, - ACTIONS(3988), 2, + STATE(5912), 1, + sym_parameter_list, + STATE(6349), 1, + aux_sym_type_definition_repeat2, + STATE(5836), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [212032] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(41), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7977), 1, anon_sym_LPAREN2, + ACTIONS(8894), 1, + anon_sym_COMMA, + ACTIONS(8898), 1, + anon_sym_LBRACK, + ACTIONS(8942), 1, + anon_sym_SEMI, + STATE(5912), 1, + sym_parameter_list, + STATE(6286), 1, + aux_sym_type_definition_repeat2, + STATE(5836), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [212061] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(41), 1, anon_sym_LBRACK_LBRACK, - STATE(2289), 3, - sym_constructor_try_statement, - sym_default_method_clause, - sym_delete_method_clause, - [181278] = 2, + ACTIONS(7977), 1, + anon_sym_LPAREN2, + ACTIONS(8894), 1, + anon_sym_COMMA, + ACTIONS(8898), 1, + anon_sym_LBRACK, + ACTIONS(8944), 1, + anon_sym_SEMI, + STATE(5912), 1, + sym_parameter_list, + STATE(6447), 1, + aux_sym_type_definition_repeat2, + STATE(5836), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [212090] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(8444), 1, + anon_sym_COLON_COLON, + ACTIONS(8946), 1, + sym_identifier, + STATE(5303), 1, + sym__scope_resolution, + STATE(7276), 1, + sym_qualified_identifier, + STATE(7638), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + [212117] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4048), 13, + ACTIONS(41), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7977), 1, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(8894), 1, + anon_sym_COMMA, + ACTIONS(8898), 1, + anon_sym_LBRACK, + ACTIONS(8948), 1, anon_sym_SEMI, - anon_sym_LBRACE, + STATE(5912), 1, + sym_parameter_list, + STATE(6448), 1, + aux_sym_type_definition_repeat2, + STATE(5836), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [212146] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(41), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7977), 1, + anon_sym_LPAREN2, + ACTIONS(8894), 1, + anon_sym_COMMA, + ACTIONS(8898), 1, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [181297] = 8, + ACTIONS(8950), 1, + anon_sym_SEMI, + STATE(5912), 1, + sym_parameter_list, + STATE(6350), 1, + aux_sym_type_definition_repeat2, + STATE(5836), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [212175] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(7581), 1, + anon_sym_COLON_COLON, + ACTIONS(8952), 1, + sym_identifier, + ACTIONS(8954), 1, + anon_sym_template, + STATE(2839), 1, + sym_dependent_type_identifier, + STATE(2841), 1, + sym_template_type, + STATE(2939), 1, + sym_qualified_type_identifier, + STATE(5726), 1, + sym__scope_resolution, + STATE(7638), 1, + sym_decltype, + [212206] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5709), 1, + ACTIONS(41), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7111), 1, + ACTIONS(7977), 1, anon_sym_LPAREN2, - ACTIONS(7117), 1, + ACTIONS(8894), 1, + anon_sym_COMMA, + ACTIONS(8898), 1, anon_sym_LBRACK, - STATE(3362), 1, + ACTIONS(8956), 1, + anon_sym_SEMI, + STATE(5912), 1, sym_parameter_list, - STATE(4960), 1, - sym__function_declarator_seq, - STATE(4894), 2, + STATE(6451), 1, + aux_sym_type_definition_repeat2, + STATE(5836), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(7733), 6, + [212235] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(41), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7977), 1, + anon_sym_LPAREN2, + ACTIONS(8894), 1, anon_sym_COMMA, + ACTIONS(8898), 1, + anon_sym_LBRACK, + ACTIONS(8958), 1, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_try, - [181328] = 2, + STATE(5912), 1, + sym_parameter_list, + STATE(6200), 1, + aux_sym_type_definition_repeat2, + STATE(5836), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [212264] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4048), 13, + ACTIONS(41), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7977), 1, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(8894), 1, + anon_sym_COMMA, + ACTIONS(8898), 1, + anon_sym_LBRACK, + ACTIONS(8960), 1, anon_sym_SEMI, - anon_sym_LBRACE, + STATE(5912), 1, + sym_parameter_list, + STATE(6309), 1, + aux_sym_type_definition_repeat2, + STATE(5836), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [212293] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(8444), 1, + anon_sym_COLON_COLON, + ACTIONS(8962), 1, + sym_identifier, + STATE(5303), 1, + sym__scope_resolution, + STATE(7043), 1, + sym_qualified_identifier, + STATE(7638), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + [212320] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(8444), 1, + anon_sym_COLON_COLON, + ACTIONS(8964), 1, + sym_identifier, + STATE(5303), 1, + sym__scope_resolution, + STATE(7039), 1, + sym_qualified_identifier, + STATE(7638), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + [212347] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(41), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7977), 1, + anon_sym_LPAREN2, + ACTIONS(8894), 1, + anon_sym_COMMA, + ACTIONS(8898), 1, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [181347] = 2, + ACTIONS(8966), 1, + anon_sym_SEMI, + STATE(5912), 1, + sym_parameter_list, + STATE(6425), 1, + aux_sym_type_definition_repeat2, + STATE(5836), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [212376] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(4580), 1, + anon_sym_COLON_COLON, + ACTIONS(8930), 1, + sym_identifier, + ACTIONS(8932), 1, + anon_sym_template, + STATE(3595), 1, + sym_template_type, + STATE(3601), 1, + sym_dependent_type_identifier, + STATE(3602), 1, + sym_qualified_type_identifier, + STATE(5733), 1, + sym__scope_resolution, + STATE(7638), 1, + sym_decltype, + [212407] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4048), 13, + ACTIONS(41), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7977), 1, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(8894), 1, + anon_sym_COMMA, + ACTIONS(8898), 1, + anon_sym_LBRACK, + ACTIONS(8968), 1, anon_sym_SEMI, - anon_sym_LBRACE, + STATE(5912), 1, + sym_parameter_list, + STATE(6287), 1, + aux_sym_type_definition_repeat2, + STATE(5836), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [212436] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(7514), 1, + anon_sym_COLON_COLON, + ACTIONS(8970), 1, + sym_identifier, + ACTIONS(8972), 1, + anon_sym_template, + STATE(2500), 1, + sym_qualified_type_identifier, + STATE(2536), 1, + sym_template_type, + STATE(2622), 1, + sym_dependent_type_identifier, + STATE(5735), 1, + sym__scope_resolution, + STATE(7638), 1, + sym_decltype, + [212467] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(41), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7977), 1, + anon_sym_LPAREN2, + ACTIONS(8894), 1, + anon_sym_COMMA, + ACTIONS(8898), 1, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [181366] = 2, + ACTIONS(8974), 1, + anon_sym_SEMI, + STATE(5912), 1, + sym_parameter_list, + STATE(6300), 1, + aux_sym_type_definition_repeat2, + STATE(5836), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [212496] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(7541), 13, - anon_sym_DOT_DOT_DOT, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(7567), 1, + anon_sym_COLON_COLON, + ACTIONS(8916), 1, + anon_sym_template, + ACTIONS(8976), 1, + sym_identifier, + STATE(2865), 1, + sym_dependent_type_identifier, + STATE(2937), 1, + sym_template_type, + STATE(2976), 1, + sym_qualified_type_identifier, + STATE(5737), 1, + sym__scope_resolution, + STATE(7638), 1, + sym_decltype, + [212527] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(41), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7977), 1, + anon_sym_LPAREN2, + ACTIONS(8894), 1, anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(8898), 1, + anon_sym_LBRACK, + ACTIONS(8978), 1, + anon_sym_SEMI, + STATE(5912), 1, + sym_parameter_list, + STATE(6470), 1, + aux_sym_type_definition_repeat2, + STATE(5836), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [212556] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(41), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7977), 1, anon_sym_LPAREN2, + ACTIONS(8894), 1, + anon_sym_COMMA, + ACTIONS(8898), 1, + anon_sym_LBRACK, + ACTIONS(8980), 1, anon_sym_SEMI, - anon_sym_LBRACE, + STATE(5912), 1, + sym_parameter_list, + STATE(6201), 1, + aux_sym_type_definition_repeat2, + STATE(5836), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [212585] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7977), 1, + anon_sym_LPAREN2, + ACTIONS(8468), 1, anon_sym_LBRACK, - anon_sym_EQ, + STATE(4121), 1, + sym_parameter_list, + STATE(5450), 1, + sym__function_declarator_seq, + ACTIONS(8494), 5, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_try, anon_sym_requires, - [181385] = 2, + [212608] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(6225), 1, + anon_sym_COLON_COLON, + ACTIONS(8972), 1, + anon_sym_template, + ACTIONS(8982), 1, + sym_identifier, + STATE(2500), 1, + sym_qualified_type_identifier, + STATE(2536), 1, + sym_template_type, + STATE(2622), 1, + sym_dependent_type_identifier, + STATE(5741), 1, + sym__scope_resolution, + STATE(7638), 1, + sym_decltype, + [212639] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4074), 13, + ACTIONS(41), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7977), 1, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(8894), 1, + anon_sym_COMMA, + ACTIONS(8898), 1, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [181404] = 2, + ACTIONS(8984), 1, + anon_sym_SEMI, + STATE(5912), 1, + sym_parameter_list, + STATE(6579), 1, + aux_sym_type_definition_repeat2, + STATE(5836), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [212668] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7569), 13, - anon_sym_DOT_DOT_DOT, + ACTIONS(41), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7977), 1, + anon_sym_LPAREN2, + ACTIONS(8894), 1, anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(8898), 1, + anon_sym_LBRACK, + ACTIONS(8986), 1, + anon_sym_SEMI, + STATE(5912), 1, + sym_parameter_list, + STATE(6203), 1, + aux_sym_type_definition_repeat2, + STATE(5836), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [212697] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8988), 1, + sym_identifier, + ACTIONS(8990), 1, + sym_system_lib_string, + STATE(7199), 2, + sym_preproc_call_expression, + sym_string_literal, + ACTIONS(8936), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [212718] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(41), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7977), 1, anon_sym_LPAREN2, + ACTIONS(8894), 1, + anon_sym_COMMA, + ACTIONS(8898), 1, + anon_sym_LBRACK, + ACTIONS(8992), 1, anon_sym_SEMI, - anon_sym_LBRACE, + STATE(5912), 1, + sym_parameter_list, + STATE(6537), 1, + aux_sym_type_definition_repeat2, + STATE(5836), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [212747] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(8444), 1, + anon_sym_COLON_COLON, + ACTIONS(8994), 1, + sym_identifier, + STATE(5303), 1, + sym__scope_resolution, + STATE(7261), 1, + sym_qualified_identifier, + STATE(7638), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + [212774] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1329), 1, + anon_sym_template, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(8444), 1, + anon_sym_COLON_COLON, + ACTIONS(8996), 1, + sym_identifier, + STATE(5303), 1, + sym__scope_resolution, + STATE(7538), 1, + sym_qualified_identifier, + STATE(7638), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + [212801] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(41), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7977), 1, + anon_sym_LPAREN2, + ACTIONS(8894), 1, + anon_sym_COMMA, + ACTIONS(8898), 1, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [181423] = 2, + ACTIONS(8998), 1, + anon_sym_SEMI, + STATE(5912), 1, + sym_parameter_list, + STATE(6468), 1, + aux_sym_type_definition_repeat2, + STATE(5836), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [212830] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7093), 13, - anon_sym_DOT_DOT_DOT, + ACTIONS(41), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7977), 1, + anon_sym_LPAREN2, + ACTIONS(8894), 1, anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(8898), 1, + anon_sym_LBRACK, + ACTIONS(9000), 1, + anon_sym_SEMI, + STATE(5912), 1, + sym_parameter_list, + STATE(6475), 1, + aux_sym_type_definition_repeat2, + STATE(5836), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [212859] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(41), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7977), 1, anon_sym_LPAREN2, + ACTIONS(8894), 1, + anon_sym_COMMA, + ACTIONS(8898), 1, + anon_sym_LBRACK, + ACTIONS(9002), 1, anon_sym_SEMI, - anon_sym_LBRACE, + STATE(5912), 1, + sym_parameter_list, + STATE(6476), 1, + aux_sym_type_definition_repeat2, + STATE(5836), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [212888] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(41), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7977), 1, + anon_sym_LPAREN2, + ACTIONS(8894), 1, + anon_sym_COMMA, + ACTIONS(8898), 1, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [181442] = 2, + ACTIONS(9004), 1, + anon_sym_SEMI, + STATE(5912), 1, + sym_parameter_list, + STATE(6399), 1, + aux_sym_type_definition_repeat2, + STATE(5836), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [212917] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7653), 13, - anon_sym_DOT_DOT_DOT, + ACTIONS(41), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7977), 1, + anon_sym_LPAREN2, + ACTIONS(8898), 1, + anon_sym_LBRACK, + STATE(5912), 1, + sym_parameter_list, + STATE(5836), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9006), 3, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [181461] = 2, + [212942] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(7784), 1, + anon_sym_COLON_COLON, + ACTIONS(9008), 1, + sym_identifier, + ACTIONS(9010), 1, + anon_sym_template, + STATE(2723), 1, + sym_qualified_type_identifier, + STATE(2780), 1, + sym_template_type, + STATE(2785), 1, + sym_dependent_type_identifier, + STATE(5753), 1, + sym__scope_resolution, + STATE(7638), 1, + sym_decltype, + [212973] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7555), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(7977), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(8468), 1, anon_sym_LBRACK, - anon_sym_EQ, + STATE(4121), 1, + sym_parameter_list, + STATE(5450), 1, + sym__function_declarator_seq, + ACTIONS(8474), 5, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_try, anon_sym_requires, - [181480] = 7, + [212996] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5990), 1, - anon_sym_requires, - ACTIONS(6853), 1, + ACTIONS(4476), 1, + anon_sym_COLON_COLON, + ACTIONS(6151), 1, + anon_sym_LT, + STATE(2845), 1, + sym_template_argument_list, + ACTIONS(4505), 2, anon_sym_LBRACK, - STATE(4659), 1, - sym_requires_clause, - ACTIONS(4135), 2, - anon_sym_final, - anon_sym_override, - STATE(4533), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat2, - ACTIONS(6851), 6, + anon_sym_COLON, + ACTIONS(4510), 4, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_try, - [181509] = 2, + [213019] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4097), 13, + ACTIONS(4535), 1, + anon_sym_LBRACK, + ACTIONS(4537), 8, + anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_final, - anon_sym_override, + anon_sym_COLON, anon_sym_try, - anon_sym_requires, - [181528] = 9, + [213036] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4133), 1, - anon_sym_COLON, - ACTIONS(5445), 1, - anon_sym_LBRACE, - STATE(3216), 1, - sym_field_declaration_list, - STATE(5292), 1, - sym_virtual_specifier, - STATE(5890), 1, - sym_base_class_clause, - ACTIONS(4143), 2, + ACTIONS(41), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7977), 1, anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(5449), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(4145), 4, - anon_sym___based, - sym_identifier, - sym_auto, - anon_sym_decltype, - [181561] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6851), 13, - anon_sym_DOT_DOT_DOT, + ACTIONS(8894), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(8898), 1, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [181580] = 2, + ACTIONS(9012), 1, + anon_sym_SEMI, + STATE(5912), 1, + sym_parameter_list, + STATE(6212), 1, + aux_sym_type_definition_repeat2, + STATE(5836), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [213065] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7623), 13, - anon_sym_DOT_DOT_DOT, + ACTIONS(41), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7977), 1, + anon_sym_LPAREN2, + ACTIONS(8898), 1, + anon_sym_LBRACK, + STATE(5912), 1, + sym_parameter_list, + STATE(5836), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9014), 3, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [181599] = 9, + [213090] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4133), 1, - anon_sym_COLON, - ACTIONS(5445), 1, - anon_sym_LBRACE, - STATE(3270), 1, - sym_field_declaration_list, - STATE(5189), 1, - sym_virtual_specifier, - STATE(5819), 1, - sym_base_class_clause, - ACTIONS(4127), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(5449), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(4129), 4, - anon_sym___based, + ACTIONS(9016), 1, sym_identifier, - sym_auto, - anon_sym_decltype, - [181632] = 11, + ACTIONS(9018), 1, + sym_system_lib_string, + STATE(7351), 2, + sym_preproc_call_expression, + sym_string_literal, + ACTIONS(8936), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [213111] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6476), 1, + ACTIONS(41), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7977), 1, + anon_sym_LPAREN2, + ACTIONS(8894), 1, + anon_sym_COMMA, + ACTIONS(8898), 1, anon_sym_LBRACK, - ACTIONS(7665), 1, - anon_sym_COLON, - ACTIONS(7717), 1, - anon_sym_LBRACE, - ACTIONS(7719), 1, - anon_sym_EQ, - ACTIONS(7721), 1, - anon_sym_try, - ACTIONS(7735), 1, + ACTIONS(9020), 1, anon_sym_SEMI, - STATE(2332), 1, - sym_compound_statement, - STATE(5750), 1, - sym_field_initializer_list, - ACTIONS(3988), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - STATE(2330), 3, - sym_constructor_try_statement, - sym_default_method_clause, - sym_delete_method_clause, - [181669] = 4, + STATE(5912), 1, + sym_parameter_list, + STATE(6398), 1, + aux_sym_type_definition_repeat2, + STATE(5836), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [213140] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7669), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7737), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(4919), 9, + ACTIONS(9022), 1, + sym_identifier, + ACTIONS(9024), 1, + sym_system_lib_string, + STATE(7633), 2, + sym_preproc_call_expression, + sym_string_literal, + ACTIONS(8936), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [213161] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7977), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(8468), 1, anon_sym_LBRACK, - anon_sym_EQ, + STATE(4121), 1, + sym_parameter_list, + STATE(5450), 1, + sym__function_declarator_seq, + ACTIONS(8472), 5, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, anon_sym_final, anon_sym_override, - anon_sym_try, anon_sym_requires, - [181692] = 11, + [213184] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(255), 1, - anon_sym_LBRACE, - ACTIONS(6476), 1, + ACTIONS(41), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7977), 1, + anon_sym_LPAREN2, + ACTIONS(8894), 1, + anon_sym_COMMA, + ACTIONS(8898), 1, anon_sym_LBRACK, - ACTIONS(7665), 1, - anon_sym_COLON, - ACTIONS(7725), 1, - anon_sym_EQ, - ACTIONS(7727), 1, - anon_sym_try, - ACTIONS(7739), 1, + ACTIONS(9026), 1, anon_sym_SEMI, - STATE(515), 1, - sym_compound_statement, - STATE(5930), 1, - sym_field_initializer_list, - ACTIONS(3988), 2, - anon_sym_LPAREN2, + STATE(5912), 1, + sym_parameter_list, + STATE(6488), 1, + aux_sym_type_definition_repeat2, + STATE(5836), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [213213] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(41), 1, anon_sym_LBRACK_LBRACK, - STATE(520), 3, - sym_constructor_try_statement, - sym_default_method_clause, - sym_delete_method_clause, - [181729] = 11, + ACTIONS(7977), 1, + anon_sym_LPAREN2, + ACTIONS(8894), 1, + anon_sym_COMMA, + ACTIONS(8898), 1, + anon_sym_LBRACK, + ACTIONS(9028), 1, + anon_sym_SEMI, + STATE(5912), 1, + sym_parameter_list, + STATE(6540), 1, + aux_sym_type_definition_repeat2, + STATE(5836), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [213242] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, + ACTIONS(1329), 1, anon_sym_template, - ACTIONS(1555), 1, + ACTIONS(1973), 1, anon_sym_decltype, - ACTIONS(4641), 1, + ACTIONS(6312), 1, anon_sym_COLON_COLON, - ACTIONS(5850), 1, - anon_sym_LBRACE, - ACTIONS(6857), 1, + ACTIONS(9030), 1, sym_identifier, - STATE(3133), 1, + STATE(3595), 1, sym_template_type, - STATE(3626), 1, - sym_enumerator_list, - STATE(5040), 1, - sym__scope_resolution, - STATE(4068), 2, - sym__class_name, + STATE(3601), 1, + sym_dependent_type_identifier, + STATE(3747), 1, sym_qualified_type_identifier, - STATE(6159), 2, + STATE(5765), 1, + sym__scope_resolution, + STATE(7638), 1, sym_decltype, + [213273] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(6266), 1, + anon_sym_COLON_COLON, + ACTIONS(9032), 1, + sym_identifier, + ACTIONS(9034), 1, + anon_sym_template, + STATE(4644), 1, + sym_template_type, + STATE(4647), 1, sym_dependent_type_identifier, - [181765] = 6, + STATE(4686), 1, + sym_qualified_type_identifier, + STATE(5766), 1, + sym__scope_resolution, + STATE(7638), 1, + sym_decltype, + [213304] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5976), 1, - anon_sym_requires, - STATE(4796), 1, - sym_requires_clause, - ACTIONS(5898), 2, - anon_sym_final, - anon_sym_override, - STATE(4608), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat2, - ACTIONS(7093), 6, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(5204), 1, + anon_sym_AMP, + ACTIONS(8910), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5206), 6, anon_sym_LPAREN2, - anon_sym_SEMI, + anon_sym_STAR, + anon_sym_PIPE_PIPE, anon_sym_LBRACE, anon_sym_LBRACK, - [181791] = 10, + anon_sym_or, + [213323] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(640), 1, - anon_sym_LBRACE, - ACTIONS(6476), 1, + ACTIONS(41), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7977), 1, + anon_sym_LPAREN2, + ACTIONS(8894), 1, + anon_sym_COMMA, + ACTIONS(8898), 1, anon_sym_LBRACK, - ACTIONS(7665), 1, - anon_sym_COLON, - ACTIONS(7699), 1, - anon_sym_EQ, - ACTIONS(7701), 1, - anon_sym_try, - STATE(989), 1, - sym_compound_statement, - STATE(5966), 1, - sym_field_initializer_list, - ACTIONS(3988), 2, + ACTIONS(9036), 1, + anon_sym_SEMI, + STATE(5912), 1, + sym_parameter_list, + STATE(6296), 1, + aux_sym_type_definition_repeat2, + STATE(5836), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [213352] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4517), 1, + anon_sym_LBRACK, + ACTIONS(4519), 8, + anon_sym_COMMA, anon_sym_LPAREN2, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - STATE(987), 3, - sym_constructor_try_statement, - sym_default_method_clause, - sym_delete_method_clause, - [181825] = 11, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [213369] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1555), 1, + ACTIONS(1973), 1, anon_sym_decltype, - ACTIONS(4294), 1, - anon_sym_LBRACE, - ACTIONS(6626), 1, + ACTIONS(7478), 1, anon_sym_COLON_COLON, - ACTIONS(6793), 1, + ACTIONS(9038), 1, sym_identifier, - STATE(1979), 1, + ACTIONS(9040), 1, + anon_sym_template, + STATE(2394), 1, + sym_dependent_type_identifier, + STATE(2426), 1, sym_template_type, - STATE(2377), 1, - sym_enumerator_list, - STATE(5001), 1, - sym__scope_resolution, - STATE(1998), 2, - sym__class_name, + STATE(2525), 1, sym_qualified_type_identifier, - STATE(6159), 2, + STATE(5770), 1, + sym__scope_resolution, + STATE(7638), 1, sym_decltype, - sym_dependent_type_identifier, - [181861] = 10, + [213400] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(666), 1, - anon_sym_LBRACE, - ACTIONS(6476), 1, + ACTIONS(4566), 1, anon_sym_LBRACK, - ACTIONS(7665), 1, - anon_sym_COLON, - ACTIONS(7693), 1, - anon_sym_EQ, - ACTIONS(7695), 1, - anon_sym_try, - STATE(1086), 1, - sym_compound_statement, - STATE(5837), 1, - sym_field_initializer_list, - ACTIONS(3988), 2, + ACTIONS(4568), 8, + anon_sym_COMMA, anon_sym_LPAREN2, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - STATE(1085), 3, - sym_constructor_try_statement, - sym_default_method_clause, - sym_delete_method_clause, - [181895] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(255), 1, anon_sym_LBRACE, - ACTIONS(6476), 1, - anon_sym_LBRACK, - ACTIONS(7665), 1, - anon_sym_COLON, - ACTIONS(7725), 1, anon_sym_EQ, - ACTIONS(7727), 1, + anon_sym_COLON, anon_sym_try, - STATE(515), 1, - sym_compound_statement, - STATE(5930), 1, - sym_field_initializer_list, - ACTIONS(3988), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - STATE(520), 3, - sym_constructor_try_statement, - sym_default_method_clause, - sym_delete_method_clause, - [181929] = 6, + [213417] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5976), 1, - anon_sym_requires, - STATE(4813), 1, - sym_requires_clause, - ACTIONS(5898), 2, - anon_sym_final, - anon_sym_override, - STATE(4641), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat2, - ACTIONS(5950), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(4476), 1, + anon_sym_COLON_COLON, + ACTIONS(6151), 1, + anon_sym_LT, + STATE(2845), 1, + sym_template_argument_list, + ACTIONS(6779), 2, anon_sym_LBRACK, - [181955] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5900), 1, - anon_sym_requires, - STATE(4751), 1, - sym_requires_clause, - ACTIONS(5898), 2, - anon_sym_final, - anon_sym_override, - STATE(4609), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat2, - ACTIONS(7075), 6, + anon_sym_COLON, + ACTIONS(4650), 4, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_try, - [181981] = 8, + anon_sym_LBRACK_LBRACK, + [213440] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5709), 1, + ACTIONS(41), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7111), 1, + ACTIONS(7977), 1, anon_sym_LPAREN2, - ACTIONS(7280), 1, + ACTIONS(8894), 1, + anon_sym_COMMA, + ACTIONS(8898), 1, anon_sym_LBRACK, - STATE(3362), 1, + ACTIONS(9042), 1, + anon_sym_SEMI, + STATE(5912), 1, sym_parameter_list, - STATE(4901), 1, - sym__function_declarator_seq, - STATE(4962), 2, + STATE(6359), 1, + aux_sym_type_definition_repeat2, + STATE(5836), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(7591), 5, + [213469] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4546), 1, + anon_sym_LBRACK, + ACTIONS(4548), 8, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, - [182011] = 4, + anon_sym_try, + [213486] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7741), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7743), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(4919), 8, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(41), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7977), 1, anon_sym_LPAREN2, + ACTIONS(8894), 1, + anon_sym_COMMA, + ACTIONS(8898), 1, anon_sym_LBRACK, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [182033] = 11, + ACTIONS(9044), 1, + anon_sym_SEMI, + STATE(5912), 1, + sym_parameter_list, + STATE(6416), 1, + aux_sym_type_definition_repeat2, + STATE(5836), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [213515] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, + ACTIONS(1329), 1, anon_sym_template, - ACTIONS(1555), 1, + ACTIONS(1973), 1, anon_sym_decltype, - ACTIONS(4731), 1, - anon_sym_LBRACE, - ACTIONS(5502), 1, + ACTIONS(8444), 1, anon_sym_COLON_COLON, - ACTIONS(6867), 1, + ACTIONS(9046), 1, sym_identifier, - STATE(2255), 1, - sym_template_type, - STATE(2536), 1, - sym_enumerator_list, - STATE(4997), 1, + STATE(5303), 1, sym__scope_resolution, - STATE(4093), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6159), 2, + STATE(7197), 1, + sym_qualified_identifier, + STATE(7638), 3, sym_decltype, - sym_dependent_type_identifier, - [182069] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(5252), 1, - anon_sym_LBRACE, - ACTIONS(6568), 1, - anon_sym_COLON_COLON, - ACTIONS(6841), 1, - sym_identifier, - STATE(2795), 1, sym_template_type, - STATE(2936), 1, - sym_enumerator_list, - STATE(5020), 1, - sym__scope_resolution, - STATE(3208), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6159), 2, - sym_decltype, sym_dependent_type_identifier, - [182105] = 11, + [213542] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(5598), 1, - anon_sym_COLON_COLON, - ACTIONS(5850), 1, - anon_sym_LBRACE, - ACTIONS(6855), 1, - sym_identifier, - STATE(3133), 1, - sym_template_type, - STATE(3626), 1, - sym_enumerator_list, - STATE(5035), 1, - sym__scope_resolution, - STATE(4135), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6159), 2, - sym_decltype, - sym_dependent_type_identifier, - [182141] = 11, + ACTIONS(41), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7977), 1, + anon_sym_LPAREN2, + ACTIONS(8894), 1, + anon_sym_COMMA, + ACTIONS(8898), 1, + anon_sym_LBRACK, + ACTIONS(9048), 1, + anon_sym_SEMI, + STATE(5912), 1, + sym_parameter_list, + STATE(6408), 1, + aux_sym_type_definition_repeat2, + STATE(5836), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [213571] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(4731), 1, - anon_sym_LBRACE, - ACTIONS(6612), 1, - anon_sym_COLON_COLON, - ACTIONS(6777), 1, - sym_identifier, - STATE(2255), 1, - sym_template_type, - STATE(2536), 1, - sym_enumerator_list, - STATE(4990), 1, - sym__scope_resolution, - STATE(3151), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6159), 2, - sym_decltype, - sym_dependent_type_identifier, - [182177] = 11, + ACTIONS(41), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7977), 1, + anon_sym_LPAREN2, + ACTIONS(8894), 1, + anon_sym_COMMA, + ACTIONS(8898), 1, + anon_sym_LBRACK, + ACTIONS(9050), 1, + anon_sym_SEMI, + STATE(5912), 1, + sym_parameter_list, + STATE(6486), 1, + aux_sym_type_definition_repeat2, + STATE(5836), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [213600] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, + ACTIONS(1329), 1, anon_sym_template, - ACTIONS(1555), 1, + ACTIONS(1973), 1, anon_sym_decltype, - ACTIONS(2928), 1, + ACTIONS(3663), 1, anon_sym_COLON_COLON, - ACTIONS(4220), 1, - anon_sym_virtual, - ACTIONS(6855), 1, + ACTIONS(9030), 1, sym_identifier, - STATE(3133), 1, + STATE(3595), 1, sym_template_type, - STATE(4963), 1, - sym_virtual, - STATE(5006), 1, - sym__scope_resolution, - STATE(5670), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6159), 2, - sym_decltype, + STATE(3601), 1, sym_dependent_type_identifier, - [182213] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(4272), 1, - anon_sym_LBRACE, - ACTIONS(6524), 1, - anon_sym_COLON_COLON, - ACTIONS(6827), 1, - sym_identifier, - STATE(1933), 1, - sym_template_type, - STATE(2119), 1, - sym_enumerator_list, - STATE(5022), 1, - sym__scope_resolution, - STATE(1975), 2, - sym__class_name, + STATE(3602), 1, sym_qualified_type_identifier, - STATE(6159), 2, + STATE(5779), 1, + sym__scope_resolution, + STATE(7638), 1, sym_decltype, - sym_dependent_type_identifier, - [182249] = 10, + [213631] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(6476), 1, - anon_sym_LBRACK, - ACTIONS(7663), 1, - anon_sym_EQ, - ACTIONS(7665), 1, - anon_sym_COLON, - ACTIONS(7667), 1, - anon_sym_try, - STATE(1042), 1, - sym_compound_statement, - STATE(5926), 1, - sym_field_initializer_list, - ACTIONS(3988), 2, - anon_sym_LPAREN2, + ACTIONS(41), 1, anon_sym_LBRACK_LBRACK, - STATE(1044), 3, - sym_constructor_try_statement, - sym_default_method_clause, - sym_delete_method_clause, - [182283] = 11, + ACTIONS(7977), 1, + anon_sym_LPAREN2, + ACTIONS(8894), 1, + anon_sym_COMMA, + ACTIONS(8898), 1, + anon_sym_LBRACK, + ACTIONS(9052), 1, + anon_sym_SEMI, + STATE(5912), 1, + sym_parameter_list, + STATE(6376), 1, + aux_sym_type_definition_repeat2, + STATE(5836), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [213660] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1555), 1, + ACTIONS(1973), 1, anon_sym_decltype, - ACTIONS(5576), 1, + ACTIONS(8846), 1, anon_sym_COLON_COLON, - ACTIONS(6813), 1, - anon_sym_LBRACE, - ACTIONS(6865), 1, + ACTIONS(9054), 1, sym_identifier, - STATE(4063), 1, + ACTIONS(9056), 1, + anon_sym_template, + STATE(3247), 1, + sym_dependent_type_identifier, + STATE(3248), 1, sym_template_type, - STATE(4225), 1, - sym_enumerator_list, - STATE(5024), 1, - sym__scope_resolution, - STATE(4099), 2, - sym__class_name, + STATE(3257), 1, sym_qualified_type_identifier, - STATE(6159), 2, + STATE(5781), 1, + sym__scope_resolution, + STATE(7638), 1, sym_decltype, - sym_dependent_type_identifier, - [182319] = 6, + [213691] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5900), 1, - anon_sym_requires, - STATE(4796), 1, - sym_requires_clause, - ACTIONS(5898), 2, - anon_sym_final, - anon_sym_override, - STATE(4608), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat2, - ACTIONS(7093), 6, + ACTIONS(41), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7977), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(8894), 1, + anon_sym_COMMA, + ACTIONS(8898), 1, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_try, - [182345] = 6, + ACTIONS(9058), 1, + anon_sym_SEMI, + STATE(5912), 1, + sym_parameter_list, + STATE(6333), 1, + aux_sym_type_definition_repeat2, + STATE(5836), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [213720] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5900), 1, - anon_sym_requires, - STATE(4789), 1, - sym_requires_clause, - ACTIONS(5898), 2, - anon_sym_final, - anon_sym_override, - STATE(4622), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat2, - ACTIONS(5673), 6, + ACTIONS(4531), 1, + anon_sym_LBRACK, + ACTIONS(4533), 8, + anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_EQ, + anon_sym_COLON, anon_sym_try, - [182371] = 11, + [213737] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(2928), 1, - anon_sym_COLON_COLON, - ACTIONS(5493), 1, - anon_sym_LBRACE, - ACTIONS(6855), 1, - sym_identifier, - STATE(3133), 1, - sym_template_type, - STATE(3227), 1, - sym_enumerator_list, - STATE(5006), 1, - sym__scope_resolution, - STATE(3738), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6159), 2, - sym_decltype, - sym_dependent_type_identifier, - [182407] = 4, + ACTIONS(41), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7977), 1, + anon_sym_LPAREN2, + ACTIONS(8894), 1, + anon_sym_COMMA, + ACTIONS(8898), 1, + anon_sym_LBRACK, + ACTIONS(9060), 1, + anon_sym_SEMI, + STATE(5912), 1, + sym_parameter_list, + STATE(6193), 1, + aux_sym_type_definition_repeat2, + STATE(5836), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [213766] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4723), 1, + ACTIONS(4527), 1, anon_sym_LBRACK, - ACTIONS(7745), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(4721), 10, + ACTIONS(4529), 8, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, - anon_sym_GT2, anon_sym_try, - [182429] = 6, + [213783] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7111), 1, + ACTIONS(41), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7977), 1, anon_sym_LPAREN2, - ACTIONS(7473), 1, + ACTIONS(8898), 1, anon_sym_LBRACK, - STATE(3490), 1, + STATE(5912), 1, sym_parameter_list, - STATE(4684), 1, - sym__function_declarator_seq, - ACTIONS(7500), 8, + STATE(5836), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9062), 3, + anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, + [213808] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9064), 1, + sym_identifier, + ACTIONS(9066), 1, + sym_system_lib_string, + STATE(7139), 2, + sym_preproc_call_expression, + sym_string_literal, + ACTIONS(8936), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [213829] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4523), 1, + anon_sym_LBRACK, + ACTIONS(4525), 8, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_final, - anon_sym_override, + anon_sym_EQ, + anon_sym_COLON, anon_sym_try, - anon_sym_requires, - [182455] = 6, + [213846] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1973), 1, + anon_sym_decltype, + ACTIONS(7762), 1, + anon_sym_COLON_COLON, + ACTIONS(9068), 1, + sym_identifier, + ACTIONS(9070), 1, + anon_sym_template, + STATE(2500), 1, + sym_qualified_type_identifier, + STATE(2536), 1, + sym_template_type, + STATE(2622), 1, + sym_dependent_type_identifier, + STATE(5789), 1, + sym__scope_resolution, + STATE(7638), 1, + sym_decltype, + [213877] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7111), 1, + ACTIONS(41), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7977), 1, anon_sym_LPAREN2, - ACTIONS(7473), 1, + ACTIONS(8894), 1, + anon_sym_COMMA, + ACTIONS(8898), 1, anon_sym_LBRACK, - STATE(3490), 1, - sym_parameter_list, - STATE(4684), 1, - sym__function_declarator_seq, - ACTIONS(7502), 8, - anon_sym_RPAREN, + ACTIONS(9072), 1, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [182481] = 11, + STATE(5912), 1, + sym_parameter_list, + STATE(6564), 1, + aux_sym_type_definition_repeat2, + STATE(5836), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [213906] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, + ACTIONS(1329), 1, anon_sym_template, - ACTIONS(1555), 1, + ACTIONS(1973), 1, anon_sym_decltype, - ACTIONS(4641), 1, + ACTIONS(7752), 1, anon_sym_COLON_COLON, - ACTIONS(5850), 1, - anon_sym_LBRACE, - ACTIONS(6857), 1, + ACTIONS(9030), 1, sym_identifier, - STATE(3133), 1, + STATE(2500), 1, + sym_qualified_type_identifier, + STATE(3595), 1, sym_template_type, - STATE(3626), 1, - sym_enumerator_list, - STATE(5040), 1, + STATE(3601), 1, + sym_dependent_type_identifier, + STATE(5791), 1, sym__scope_resolution, - STATE(3921), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6159), 2, + STATE(7638), 1, sym_decltype, - sym_dependent_type_identifier, - [182517] = 3, + [213937] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7743), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(4824), 10, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(41), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7977), 1, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + ACTIONS(8894), 1, + anon_sym_COMMA, + ACTIONS(8898), 1, anon_sym_LBRACK, - anon_sym_or, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [182537] = 6, + ACTIONS(9074), 1, + anon_sym_SEMI, + STATE(5912), 1, + sym_parameter_list, + STATE(6469), 1, + aux_sym_type_definition_repeat2, + STATE(5836), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [213966] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5976), 1, - anon_sym_requires, - STATE(4789), 1, - sym_requires_clause, - ACTIONS(5898), 2, - anon_sym_final, - anon_sym_override, - STATE(4622), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat2, - ACTIONS(5673), 6, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(41), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7977), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(8894), 1, + anon_sym_COMMA, + ACTIONS(8898), 1, anon_sym_LBRACK, - [182563] = 6, + ACTIONS(9076), 1, + anon_sym_SEMI, + STATE(5912), 1, + sym_parameter_list, + STATE(6591), 1, + aux_sym_type_definition_repeat2, + STATE(5836), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [213995] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5900), 1, - anon_sym_requires, - STATE(4763), 1, - sym_requires_clause, - ACTIONS(5898), 2, - anon_sym_final, - anon_sym_override, - STATE(4594), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat2, - ACTIONS(7378), 6, + ACTIONS(9080), 1, + anon_sym_AMP, + ACTIONS(9082), 2, + anon_sym_EQ, + anon_sym_DOT, + ACTIONS(9078), 6, anon_sym_LPAREN2, - anon_sym_SEMI, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LT, anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_try, - [182589] = 10, + [214014] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(666), 1, - anon_sym_LBRACE, - ACTIONS(6476), 1, - anon_sym_LBRACK, - ACTIONS(7665), 1, - anon_sym_COLON, - ACTIONS(7693), 1, - anon_sym_EQ, - ACTIONS(7695), 1, - anon_sym_try, - STATE(1077), 1, - sym_compound_statement, - STATE(5826), 1, - sym_field_initializer_list, - ACTIONS(3988), 2, + ACTIONS(7977), 1, anon_sym_LPAREN2, + ACTIONS(8468), 1, + anon_sym_LBRACK, + STATE(4121), 1, + sym_parameter_list, + STATE(5450), 1, + sym__function_declarator_seq, + ACTIONS(8470), 5, anon_sym_LBRACK_LBRACK, - STATE(1076), 3, - sym_constructor_try_statement, - sym_default_method_clause, - sym_delete_method_clause, - [182623] = 8, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [214037] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5709), 1, + ACTIONS(41), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7111), 1, + ACTIONS(7977), 1, anon_sym_LPAREN2, - ACTIONS(7280), 1, + ACTIONS(8894), 1, + anon_sym_COMMA, + ACTIONS(8898), 1, anon_sym_LBRACK, - STATE(3362), 1, + ACTIONS(9084), 1, + anon_sym_SEMI, + STATE(5912), 1, sym_parameter_list, - STATE(4901), 1, - sym__function_declarator_seq, - STATE(4962), 2, + STATE(6194), 1, + aux_sym_type_definition_repeat2, + STATE(5836), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(7553), 5, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - [182653] = 11, + [214066] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1555), 1, + ACTIONS(1973), 1, anon_sym_decltype, - ACTIONS(2928), 1, + ACTIONS(7456), 1, anon_sym_COLON_COLON, - ACTIONS(4220), 1, - anon_sym_virtual, - ACTIONS(6855), 1, + ACTIONS(9086), 1, sym_identifier, - STATE(3133), 1, - sym_template_type, - STATE(4950), 1, - sym_virtual, - STATE(5006), 1, - sym__scope_resolution, - STATE(5295), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6159), 2, - sym_decltype, - sym_dependent_type_identifier, - [182689] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(996), 1, + ACTIONS(9088), 1, anon_sym_template, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(2928), 1, - anon_sym_COLON_COLON, - ACTIONS(4220), 1, - anon_sym_virtual, - ACTIONS(6855), 1, - sym_identifier, - STATE(3133), 1, + STATE(2814), 1, + sym_dependent_type_identifier, + STATE(2817), 1, sym_template_type, - STATE(4956), 1, - sym_virtual, - STATE(5006), 1, - sym__scope_resolution, - STATE(5171), 2, - sym__class_name, + STATE(2842), 1, sym_qualified_type_identifier, - STATE(6159), 2, + STATE(5797), 1, + sym__scope_resolution, + STATE(7638), 1, sym_decltype, - sym_dependent_type_identifier, - [182725] = 6, + [214097] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7111), 1, + ACTIONS(7977), 1, anon_sym_LPAREN2, - ACTIONS(7473), 1, + ACTIONS(8468), 1, anon_sym_LBRACK, - STATE(3490), 1, + STATE(4121), 1, sym_parameter_list, - STATE(4684), 1, + STATE(5450), 1, sym__function_declarator_seq, - ACTIONS(7504), 8, - anon_sym_RPAREN, - anon_sym_SEMI, + ACTIONS(8466), 5, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, + anon_sym_COLON, anon_sym_final, anon_sym_override, - anon_sym_try, anon_sym_requires, - [182751] = 6, + [214120] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5976), 1, - anon_sym_requires, - STATE(4807), 1, - sym_requires_clause, - ACTIONS(5898), 2, - anon_sym_final, - anon_sym_override, - STATE(4604), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat2, - ACTIONS(6851), 6, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(41), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7977), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(8894), 1, + anon_sym_COMMA, + ACTIONS(8898), 1, anon_sym_LBRACK, - [182777] = 6, + ACTIONS(9090), 1, + anon_sym_SEMI, + STATE(5912), 1, + sym_parameter_list, + STATE(6361), 1, + aux_sym_type_definition_repeat2, + STATE(5836), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [214149] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7111), 1, + ACTIONS(41), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7977), 1, anon_sym_LPAREN2, - ACTIONS(7473), 1, + ACTIONS(8212), 1, anon_sym_LBRACK, - STATE(3490), 1, + ACTIONS(9092), 1, + anon_sym_SEMI, + STATE(3887), 1, sym_parameter_list, - STATE(4684), 1, + STATE(5647), 1, sym__function_declarator_seq, - ACTIONS(7506), 8, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [182803] = 6, + STATE(5560), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [214175] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7111), 1, + ACTIONS(6466), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7977), 1, anon_sym_LPAREN2, - ACTIONS(7473), 1, + ACTIONS(8212), 1, anon_sym_LBRACK, - STATE(3490), 1, + ACTIONS(8579), 1, + anon_sym_COLON, + STATE(4121), 1, sym_parameter_list, - STATE(4684), 1, + STATE(5647), 1, sym__function_declarator_seq, - ACTIONS(7508), 8, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [182829] = 10, + STATE(5695), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [214201] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(6476), 1, - anon_sym_LBRACK, - ACTIONS(7663), 1, - anon_sym_EQ, - ACTIONS(7665), 1, - anon_sym_COLON, - ACTIONS(7667), 1, - anon_sym_try, - STATE(1054), 1, - sym_compound_statement, - STATE(5804), 1, - sym_field_initializer_list, - ACTIONS(3988), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - STATE(1055), 3, - sym_constructor_try_statement, - sym_default_method_clause, - sym_delete_method_clause, - [182863] = 6, + ACTIONS(9098), 1, + anon_sym_delete, + ACTIONS(9100), 1, + anon_sym_new, + ACTIONS(9096), 2, + anon_sym_TILDE, + anon_sym_COLON_COLON, + ACTIONS(9094), 4, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [214221] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5900), 1, - anon_sym_requires, - STATE(4813), 1, - sym_requires_clause, - ACTIONS(5898), 2, - anon_sym_final, - anon_sym_override, - STATE(4641), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat2, - ACTIONS(5950), 6, + ACTIONS(7977), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(8756), 1, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_try, - [182889] = 6, + STATE(4108), 1, + sym_parameter_list, + STATE(5397), 1, + sym__function_declarator_seq, + ACTIONS(8466), 4, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [214243] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7111), 1, + ACTIONS(7977), 1, anon_sym_LPAREN2, - ACTIONS(7473), 1, + ACTIONS(8756), 1, anon_sym_LBRACK, - STATE(3490), 1, + STATE(4108), 1, sym_parameter_list, - STATE(4684), 1, + STATE(5397), 1, sym__function_declarator_seq, - ACTIONS(7471), 8, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, + ACTIONS(8470), 4, + anon_sym_COLON, anon_sym_final, anon_sym_override, - anon_sym_try, anon_sym_requires, - [182915] = 8, + [214265] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5709), 1, + ACTIONS(6466), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7111), 1, + ACTIONS(7977), 1, anon_sym_LPAREN2, - ACTIONS(7280), 1, + ACTIONS(8212), 1, anon_sym_LBRACK, - STATE(3362), 1, + ACTIONS(8619), 1, + anon_sym_COLON, + STATE(4121), 1, sym_parameter_list, - STATE(4901), 1, + STATE(5647), 1, sym__function_declarator_seq, - STATE(4962), 2, + STATE(5695), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(7549), 5, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - [182945] = 11, + [214291] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(5493), 1, - anon_sym_LBRACE, - ACTIONS(6855), 1, - sym_identifier, - ACTIONS(6861), 1, + ACTIONS(9102), 1, + anon_sym_delete, + ACTIONS(9104), 1, + anon_sym_new, + ACTIONS(9096), 2, + anon_sym_TILDE, anon_sym_COLON_COLON, - STATE(3133), 1, - sym_template_type, - STATE(3227), 1, - sym_enumerator_list, - STATE(4979), 1, - sym__scope_resolution, - STATE(4976), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6159), 2, - sym_decltype, - sym_dependent_type_identifier, - [182981] = 4, + ACTIONS(9094), 4, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [214311] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3875), 1, - anon_sym_COLON_COLON, - ACTIONS(3877), 2, - anon_sym_LBRACK, + ACTIONS(1899), 1, + anon_sym_LBRACE, + ACTIONS(7736), 1, anon_sym_COLON, - ACTIONS(3882), 9, + ACTIONS(7975), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(9106), 1, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, + ACTIONS(9108), 1, anon_sym_EQ, - anon_sym_GT2, - anon_sym_try, - [183003] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(5493), 1, - anon_sym_LBRACE, - ACTIONS(5598), 1, - anon_sym_COLON_COLON, - ACTIONS(6855), 1, - sym_identifier, - STATE(3133), 1, - sym_template_type, - STATE(3227), 1, - sym_enumerator_list, - STATE(5035), 1, - sym__scope_resolution, - STATE(3872), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6159), 2, - sym_decltype, - sym_dependent_type_identifier, - [183039] = 6, + STATE(5923), 1, + aux_sym_field_declaration_repeat1, + STATE(7603), 1, + sym_bitfield_clause, + STATE(7605), 1, + sym_initializer_list, + [214339] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5976), 1, - anon_sym_requires, - STATE(4763), 1, - sym_requires_clause, - ACTIONS(5898), 2, + ACTIONS(7977), 1, + anon_sym_LPAREN2, + ACTIONS(8756), 1, + anon_sym_LBRACK, + STATE(4108), 1, + sym_parameter_list, + STATE(5397), 1, + sym__function_declarator_seq, + ACTIONS(8472), 4, + anon_sym_COLON, anon_sym_final, anon_sym_override, - STATE(4594), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat2, - ACTIONS(7378), 6, - anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_requires, + [214361] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(41), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7977), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(8212), 1, anon_sym_LBRACK, - [183065] = 11, + ACTIONS(9110), 1, + anon_sym_SEMI, + STATE(3887), 1, + sym_parameter_list, + STATE(5647), 1, + sym__function_declarator_seq, + STATE(5560), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [214387] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(4641), 1, - anon_sym_COLON_COLON, - ACTIONS(5493), 1, - anon_sym_LBRACE, - ACTIONS(6857), 1, - sym_identifier, - STATE(3133), 1, - sym_template_type, - STATE(3227), 1, - sym_enumerator_list, - STATE(5040), 1, - sym__scope_resolution, - STATE(4039), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6159), 2, - sym_decltype, - sym_dependent_type_identifier, - [183101] = 6, + ACTIONS(6466), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7977), 1, + anon_sym_LPAREN2, + ACTIONS(8212), 1, + anon_sym_LBRACK, + ACTIONS(9112), 1, + anon_sym_COLON, + STATE(4121), 1, + sym_parameter_list, + STATE(5647), 1, + sym__function_declarator_seq, + STATE(5695), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [214413] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5976), 1, - anon_sym_requires, - STATE(4751), 1, - sym_requires_clause, - ACTIONS(5898), 2, + ACTIONS(7977), 1, + anon_sym_LPAREN2, + ACTIONS(8756), 1, + anon_sym_LBRACK, + STATE(4108), 1, + sym_parameter_list, + STATE(5397), 1, + sym__function_declarator_seq, + ACTIONS(8498), 4, + anon_sym_COLON, anon_sym_final, anon_sym_override, - STATE(4609), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat2, - ACTIONS(7075), 6, - anon_sym_COMMA, + anon_sym_requires, + [214435] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(41), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7977), 1, + anon_sym_LPAREN2, + ACTIONS(7983), 1, + anon_sym_LBRACK, + ACTIONS(8649), 1, anon_sym_RPAREN, + STATE(3887), 1, + sym_parameter_list, + STATE(5684), 1, + sym__function_declarator_seq, + STATE(5933), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [214461] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6466), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7977), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(8212), 1, anon_sym_LBRACK, - [183127] = 8, + ACTIONS(9114), 1, + anon_sym_COLON, + STATE(4121), 1, + sym_parameter_list, + STATE(5647), 1, + sym__function_declarator_seq, + STATE(5695), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [214487] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5709), 1, + ACTIONS(41), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7111), 1, + ACTIONS(7977), 1, anon_sym_LPAREN2, - ACTIONS(7117), 1, + ACTIONS(7983), 1, anon_sym_LBRACK, - STATE(3362), 1, + ACTIONS(8639), 1, + anon_sym_RPAREN, + STATE(3887), 1, sym_parameter_list, - STATE(4960), 1, + STATE(5684), 1, sym__function_declarator_seq, - STATE(4894), 2, + STATE(5933), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(7747), 5, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - [183157] = 11, + [214513] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(4635), 1, - anon_sym_LBRACE, - ACTIONS(6582), 1, + ACTIONS(4476), 1, anon_sym_COLON_COLON, - ACTIONS(6803), 1, - sym_identifier, - STATE(2032), 1, - sym_template_type, - STATE(2694), 1, - sym_enumerator_list, - STATE(5025), 1, - sym__scope_resolution, - STATE(2165), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6159), 2, - sym_decltype, - sym_dependent_type_identifier, - [183193] = 8, + ACTIONS(4505), 1, + anon_sym_LBRACK, + ACTIONS(6151), 1, + anon_sym_LT, + STATE(5559), 1, + sym_template_argument_list, + ACTIONS(4510), 4, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_try, + [214535] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5709), 1, + ACTIONS(41), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7111), 1, + ACTIONS(7977), 1, anon_sym_LPAREN2, - ACTIONS(7280), 1, + ACTIONS(8212), 1, anon_sym_LBRACK, - STATE(3362), 1, + ACTIONS(9116), 1, + anon_sym_SEMI, + STATE(3887), 1, sym_parameter_list, - STATE(4901), 1, + STATE(5647), 1, sym__function_declarator_seq, - STATE(4962), 2, + STATE(5560), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(7565), 5, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - [183223] = 6, + [214561] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7111), 1, + ACTIONS(41), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7977), 1, anon_sym_LPAREN2, - ACTIONS(7473), 1, + ACTIONS(7983), 1, anon_sym_LBRACK, - STATE(3490), 1, + ACTIONS(8721), 1, + anon_sym_RPAREN, + STATE(3887), 1, sym_parameter_list, - STATE(4684), 1, + STATE(5684), 1, sym__function_declarator_seq, - ACTIONS(7516), 8, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [183249] = 10, + STATE(5933), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [214587] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(255), 1, - anon_sym_LBRACE, - ACTIONS(6476), 1, - anon_sym_LBRACK, - ACTIONS(7665), 1, - anon_sym_COLON, - ACTIONS(7725), 1, - anon_sym_EQ, - ACTIONS(7727), 1, - anon_sym_try, - STATE(496), 1, - sym_compound_statement, - STATE(5918), 1, - sym_field_initializer_list, - ACTIONS(3988), 2, + ACTIONS(41), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7977), 1, anon_sym_LPAREN2, + ACTIONS(8212), 1, + anon_sym_LBRACK, + ACTIONS(9118), 1, + anon_sym_SEMI, + STATE(3887), 1, + sym_parameter_list, + STATE(5647), 1, + sym__function_declarator_seq, + STATE(5560), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [214613] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(41), 1, anon_sym_LBRACK_LBRACK, - STATE(552), 3, - sym_constructor_try_statement, - sym_default_method_clause, - sym_delete_method_clause, - [183283] = 10, + ACTIONS(7977), 1, + anon_sym_LPAREN2, + ACTIONS(8212), 1, + anon_sym_LBRACK, + ACTIONS(9120), 1, + anon_sym_SEMI, + STATE(3887), 1, + sym_parameter_list, + STATE(5647), 1, + sym__function_declarator_seq, + STATE(5560), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [214639] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(640), 1, - anon_sym_LBRACE, - ACTIONS(6476), 1, + ACTIONS(6466), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7977), 1, + anon_sym_LPAREN2, + ACTIONS(8212), 1, anon_sym_LBRACK, - ACTIONS(7665), 1, + ACTIONS(9122), 1, anon_sym_COLON, - ACTIONS(7699), 1, - anon_sym_EQ, - ACTIONS(7701), 1, - anon_sym_try, - STATE(1039), 1, - sym_compound_statement, - STATE(5986), 1, - sym_field_initializer_list, - ACTIONS(3988), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - STATE(1038), 3, - sym_constructor_try_statement, - sym_default_method_clause, - sym_delete_method_clause, - [183317] = 6, + STATE(4121), 1, + sym_parameter_list, + STATE(5647), 1, + sym__function_declarator_seq, + STATE(5695), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [214665] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5900), 1, - anon_sym_requires, - STATE(4807), 1, - sym_requires_clause, - ACTIONS(5898), 2, - anon_sym_final, - anon_sym_override, - STATE(4604), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat2, - ACTIONS(6851), 6, - anon_sym_LPAREN2, + ACTIONS(41), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4476), 1, + anon_sym_COLON_COLON, + ACTIONS(6151), 1, + anon_sym_LT, + ACTIONS(9124), 1, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, + ACTIONS(9126), 1, anon_sym_EQ, - anon_sym_try, - [183343] = 11, + STATE(3608), 1, + sym_template_argument_list, + STATE(5981), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [214691] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(4710), 1, - anon_sym_LBRACE, - ACTIONS(6546), 1, + STATE(5994), 1, + sym_string_literal, + ACTIONS(9128), 2, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(107), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [214709] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9130), 1, + anon_sym_delete, + ACTIONS(9132), 1, + anon_sym_new, + ACTIONS(9096), 2, + anon_sym_TILDE, anon_sym_COLON_COLON, - ACTIONS(6817), 1, + ACTIONS(9094), 4, sym_identifier, - STATE(2192), 1, - sym_template_type, - STATE(2796), 1, - sym_enumerator_list, - STATE(5036), 1, - sym__scope_resolution, - STATE(2252), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6159), 2, - sym_decltype, - sym_dependent_type_identifier, - [183379] = 11, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [214729] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(5252), 1, - anon_sym_LBRACE, - ACTIONS(5570), 1, + ACTIONS(9134), 1, + anon_sym_delete, + ACTIONS(9136), 1, + anon_sym_new, + ACTIONS(9096), 2, + anon_sym_TILDE, anon_sym_COLON_COLON, - ACTIONS(6859), 1, + ACTIONS(9094), 4, sym_identifier, - STATE(2795), 1, - sym_template_type, - STATE(2936), 1, - sym_enumerator_list, - STATE(4989), 1, - sym__scope_resolution, - STATE(4092), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6159), 2, - sym_decltype, - sym_dependent_type_identifier, - [183415] = 5, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [214749] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + ACTIONS(41), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7751), 1, + ACTIONS(7977), 1, + anon_sym_LPAREN2, + ACTIONS(8212), 1, anon_sym_LBRACK, - STATE(4877), 2, + ACTIONS(9138), 1, + anon_sym_RPAREN, + STATE(3887), 1, + sym_parameter_list, + STATE(5647), 1, + sym__function_declarator_seq, + STATE(5560), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(7749), 8, - anon_sym_COMMA, - anon_sym_RPAREN, + [214775] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(41), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7977), 1, anon_sym_LPAREN2, + ACTIONS(8212), 1, + anon_sym_LBRACK, + ACTIONS(9140), 1, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - anon_sym_try, - [183439] = 11, + STATE(3887), 1, + sym_parameter_list, + STATE(5647), 1, + sym__function_declarator_seq, + STATE(5560), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [214801] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(2928), 1, - anon_sym_COLON_COLON, - ACTIONS(4220), 1, - anon_sym_virtual, - ACTIONS(6855), 1, - sym_identifier, - STATE(3133), 1, - sym_template_type, - STATE(4961), 1, - sym_virtual, - STATE(5006), 1, - sym__scope_resolution, - STATE(5642), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6159), 2, - sym_decltype, - sym_dependent_type_identifier, - [183475] = 11, + ACTIONS(8864), 1, + anon_sym_LBRACK, + STATE(6461), 1, + sym_gnu_asm_output_operand, + STATE(7495), 1, + sym_string_literal, + ACTIONS(107), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [214821] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(3916), 1, + ACTIONS(41), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4476), 1, anon_sym_COLON_COLON, - ACTIONS(5493), 1, - anon_sym_LBRACE, - ACTIONS(6857), 1, - sym_identifier, - STATE(3133), 1, - sym_template_type, - STATE(3227), 1, - sym_enumerator_list, - STATE(5034), 1, - sym__scope_resolution, - STATE(3368), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6159), 2, - sym_decltype, - sym_dependent_type_identifier, - [183511] = 5, + ACTIONS(6151), 1, + anon_sym_LT, + ACTIONS(9142), 1, + anon_sym_SEMI, + ACTIONS(9144), 1, + anon_sym_EQ, + STATE(3608), 1, + sym_template_argument_list, + STATE(6087), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [214847] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6765), 1, - anon_sym_LBRACK, - ACTIONS(7753), 1, + ACTIONS(41), 1, anon_sym_LBRACK_LBRACK, - STATE(4877), 2, + ACTIONS(4476), 1, + anon_sym_COLON_COLON, + ACTIONS(6151), 1, + anon_sym_LT, + ACTIONS(9146), 1, + anon_sym_SEMI, + ACTIONS(9148), 1, + anon_sym_EQ, + STATE(3608), 1, + sym_template_argument_list, + STATE(5966), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(6767), 8, - anon_sym_COMMA, - anon_sym_RPAREN, + [214873] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4476), 1, + anon_sym_COLON_COLON, + ACTIONS(6151), 1, + anon_sym_LT, + ACTIONS(6779), 1, + anon_sym_LBRACK, + STATE(5559), 1, + sym_template_argument_list, + ACTIONS(4650), 4, anon_sym_LPAREN2, - anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, anon_sym_try, - [183535] = 8, + [214895] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1899), 1, + anon_sym_LBRACE, + ACTIONS(7736), 1, + anon_sym_COLON, + ACTIONS(7975), 1, + anon_sym_COMMA, + ACTIONS(9150), 1, + anon_sym_SEMI, + ACTIONS(9152), 1, + anon_sym_EQ, + STATE(5923), 1, + aux_sym_field_declaration_repeat1, + STATE(7704), 1, + sym_bitfield_clause, + STATE(7709), 1, + sym_initializer_list, + [214923] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5709), 1, + ACTIONS(41), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7111), 1, + ACTIONS(7977), 1, anon_sym_LPAREN2, - ACTIONS(7280), 1, + ACTIONS(7983), 1, anon_sym_LBRACK, - STATE(3362), 1, + ACTIONS(9154), 1, + anon_sym_RPAREN, + STATE(3887), 1, sym_parameter_list, - STATE(4901), 1, + STATE(5684), 1, sym__function_declarator_seq, - STATE(4962), 2, + STATE(5933), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(7577), 5, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - [183565] = 6, + [214949] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7111), 1, + ACTIONS(6466), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7977), 1, anon_sym_LPAREN2, - ACTIONS(7756), 1, + ACTIONS(8212), 1, anon_sym_LBRACK, - STATE(3461), 1, + ACTIONS(9156), 1, + anon_sym_COLON, + STATE(4121), 1, sym_parameter_list, - STATE(4746), 1, + STATE(5647), 1, sym__function_declarator_seq, - ACTIONS(7506), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [183590] = 8, + STATE(5695), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [214975] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + ACTIONS(41), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7111), 1, + ACTIONS(7977), 1, anon_sym_LPAREN2, - ACTIONS(7280), 1, + ACTIONS(8212), 1, anon_sym_LBRACK, - STATE(3490), 1, + ACTIONS(9158), 1, + anon_sym_SEMI, + STATE(3887), 1, sym_parameter_list, - STATE(4901), 1, + STATE(5647), 1, sym__function_declarator_seq, - STATE(4874), 2, + STATE(5560), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(7549), 4, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_try, - [183619] = 6, + [215001] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7111), 1, + ACTIONS(41), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7977), 1, anon_sym_LPAREN2, - ACTIONS(7756), 1, + ACTIONS(7983), 1, anon_sym_LBRACK, - STATE(3482), 1, + ACTIONS(8673), 1, + anon_sym_RPAREN, + STATE(3887), 1, sym_parameter_list, - STATE(4746), 1, + STATE(5684), 1, sym__function_declarator_seq, - ACTIONS(7504), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [183644] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(7477), 1, - anon_sym_COLON_COLON, - ACTIONS(7758), 1, - sym_identifier, - STATE(4590), 1, - sym__scope_resolution, - STATE(6340), 1, - sym_qualified_identifier, - ACTIONS(7760), 2, - anon_sym_enum, - anon_sym_namespace, - STATE(6159), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - [183675] = 3, + STATE(5933), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [215027] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7764), 1, + ACTIONS(41), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9162), 1, anon_sym_LBRACK, - ACTIONS(7762), 10, + STATE(5578), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9160), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, + [215047] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1899), 1, anon_sym_LBRACE, - anon_sym_EQ, + ACTIONS(7736), 1, anon_sym_COLON, - anon_sym_GT2, - anon_sym_try, - [183694] = 11, + ACTIONS(7975), 1, + anon_sym_COMMA, + ACTIONS(9164), 1, + anon_sym_SEMI, + ACTIONS(9166), 1, + anon_sym_EQ, + STATE(5923), 1, + aux_sym_field_declaration_repeat1, + STATE(7179), 1, + sym_initializer_list, + STATE(7180), 1, + sym_bitfield_clause, + [215075] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + ACTIONS(41), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7111), 1, + ACTIONS(7977), 1, anon_sym_LPAREN2, - ACTIONS(7143), 1, - anon_sym_try, - ACTIONS(7280), 1, + ACTIONS(8212), 1, anon_sym_LBRACK, - ACTIONS(7673), 1, - anon_sym_LBRACE, - STATE(2221), 1, - sym_try_statement, - STATE(2222), 1, - sym_compound_statement, - STATE(3490), 1, + ACTIONS(9168), 1, + anon_sym_SEMI, + STATE(3887), 1, sym_parameter_list, - STATE(4901), 1, + STATE(5647), 1, sym__function_declarator_seq, - STATE(4874), 2, + STATE(5560), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [183729] = 8, + [215101] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + ACTIONS(6466), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7111), 1, + ACTIONS(7977), 1, anon_sym_LPAREN2, - ACTIONS(7280), 1, + ACTIONS(8212), 1, anon_sym_LBRACK, - STATE(3490), 1, + ACTIONS(9170), 1, + anon_sym_COLON, + STATE(4121), 1, sym_parameter_list, - STATE(4901), 1, + STATE(5647), 1, sym__function_declarator_seq, - STATE(4874), 2, + STATE(5695), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(7577), 4, - anon_sym_RPAREN, + [215127] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(41), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7977), 1, + anon_sym_LPAREN2, + ACTIONS(8898), 1, + anon_sym_LBRACK, + STATE(5912), 1, + sym_parameter_list, + ACTIONS(9172), 2, + anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_try, - [183758] = 11, + STATE(5836), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [215151] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + ACTIONS(6466), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7111), 1, + ACTIONS(7977), 1, anon_sym_LPAREN2, - ACTIONS(7131), 1, - anon_sym_try, - ACTIONS(7280), 1, + ACTIONS(8212), 1, anon_sym_LBRACK, - ACTIONS(7717), 1, - anon_sym_LBRACE, - STATE(2273), 1, - sym_try_statement, - STATE(2274), 1, - sym_compound_statement, - STATE(3490), 1, + ACTIONS(9174), 1, + anon_sym_COLON, + STATE(4121), 1, sym_parameter_list, - STATE(4901), 1, + STATE(5647), 1, sym__function_declarator_seq, - STATE(4874), 2, + STATE(5695), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [183793] = 9, + [215177] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(7477), 1, + ACTIONS(8876), 1, + anon_sym_LBRACK, + STATE(6322), 1, + sym_gnu_asm_input_operand, + STATE(7624), 1, + sym_string_literal, + ACTIONS(107), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [215197] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(41), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4476), 1, anon_sym_COLON_COLON, - ACTIONS(7766), 1, - sym_identifier, - STATE(4590), 1, - sym__scope_resolution, - STATE(6255), 1, - sym_qualified_identifier, - ACTIONS(7768), 2, - anon_sym_enum, - anon_sym_namespace, - STATE(6159), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - [183824] = 9, + ACTIONS(6151), 1, + anon_sym_LT, + ACTIONS(9176), 1, + anon_sym_SEMI, + ACTIONS(9178), 1, + anon_sym_EQ, + STATE(3608), 1, + sym_template_argument_list, + STATE(6100), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [215223] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(7477), 1, + ACTIONS(41), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4476), 1, anon_sym_COLON_COLON, - ACTIONS(7770), 1, - sym_identifier, - STATE(4590), 1, - sym__scope_resolution, - STATE(6202), 1, - sym_qualified_identifier, - ACTIONS(7772), 2, - anon_sym_enum, - anon_sym_namespace, - STATE(6159), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - [183855] = 3, + ACTIONS(6151), 1, + anon_sym_LT, + ACTIONS(9180), 1, + anon_sym_SEMI, + ACTIONS(9182), 1, + anon_sym_EQ, + STATE(3608), 1, + sym_template_argument_list, + STATE(6179), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [215249] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4909), 1, - anon_sym_LBRACK, - ACTIONS(4907), 10, + ACTIONS(1899), 1, + anon_sym_LBRACE, + ACTIONS(7736), 1, + anon_sym_COLON, + ACTIONS(7975), 1, anon_sym_COMMA, + ACTIONS(9184), 1, + anon_sym_SEMI, + ACTIONS(9186), 1, + anon_sym_EQ, + STATE(5923), 1, + aux_sym_field_declaration_repeat1, + STATE(7429), 1, + sym_initializer_list, + STATE(7431), 1, + sym_bitfield_clause, + [215277] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(41), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4476), 1, + anon_sym_COLON_COLON, + ACTIONS(6151), 1, + anon_sym_LT, + ACTIONS(9188), 1, + anon_sym_SEMI, + ACTIONS(9190), 1, + anon_sym_EQ, + STATE(3608), 1, + sym_template_argument_list, + STATE(5992), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [215303] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(41), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7977), 1, + anon_sym_LPAREN2, + ACTIONS(7983), 1, + anon_sym_LBRACK, + ACTIONS(8701), 1, anon_sym_RPAREN, + STATE(3887), 1, + sym_parameter_list, + STATE(5684), 1, + sym__function_declarator_seq, + STATE(5933), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [215329] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9192), 1, + anon_sym_delete, + ACTIONS(9194), 1, + anon_sym_new, + ACTIONS(9096), 2, + anon_sym_TILDE, + anon_sym_COLON_COLON, + ACTIONS(9094), 4, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [215349] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7977), 1, anon_sym_LPAREN2, + ACTIONS(8756), 1, + anon_sym_LBRACK, + STATE(3888), 1, + sym_parameter_list, + STATE(5397), 1, + sym__function_declarator_seq, + ACTIONS(9196), 4, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_COLON, - anon_sym_GT2, anon_sym_try, - [183874] = 11, + [215371] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + ACTIONS(6466), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(666), 1, - anon_sym_LBRACE, - ACTIONS(7111), 1, + ACTIONS(7977), 1, anon_sym_LPAREN2, - ACTIONS(7280), 1, + ACTIONS(8212), 1, anon_sym_LBRACK, - ACTIONS(7318), 1, - anon_sym_try, - STATE(1020), 1, - sym_compound_statement, - STATE(1022), 1, - sym_try_statement, - STATE(3490), 1, + ACTIONS(9198), 1, + anon_sym_COLON, + STATE(4121), 1, sym_parameter_list, - STATE(4901), 1, + STATE(5647), 1, sym__function_declarator_seq, - STATE(4874), 2, + STATE(5695), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [183909] = 8, + [215397] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(6707), 1, - sym_identifier, - ACTIONS(6709), 1, + ACTIONS(7977), 1, anon_sym_LPAREN2, - ACTIONS(6711), 1, - anon_sym_STAR, - STATE(5108), 1, - sym__type_declarator, - STATE(6360), 1, - sym_ms_based_modifier, - STATE(5132), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - [183938] = 8, + ACTIONS(8756), 1, + anon_sym_LBRACK, + STATE(4108), 1, + sym_parameter_list, + STATE(5397), 1, + sym__function_declarator_seq, + ACTIONS(8494), 4, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [215419] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + ACTIONS(7977), 1, + anon_sym_LPAREN2, + ACTIONS(8756), 1, + anon_sym_LBRACK, + STATE(4108), 1, + sym_parameter_list, + STATE(5397), 1, + sym__function_declarator_seq, + ACTIONS(8482), 4, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [215441] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(41), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7111), 1, + ACTIONS(7977), 1, anon_sym_LPAREN2, - ACTIONS(7280), 1, + ACTIONS(8212), 1, anon_sym_LBRACK, - STATE(3490), 1, + ACTIONS(9200), 1, + anon_sym_SEMI, + STATE(3887), 1, sym_parameter_list, - STATE(4901), 1, + STATE(5647), 1, sym__function_declarator_seq, - STATE(4874), 2, + STATE(5560), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(7591), 4, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_try, - [183967] = 11, + [215467] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + ACTIONS(6466), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(255), 1, - anon_sym_LBRACE, - ACTIONS(7111), 1, + ACTIONS(7977), 1, anon_sym_LPAREN2, - ACTIONS(7280), 1, + ACTIONS(8212), 1, anon_sym_LBRACK, - ACTIONS(7332), 1, - anon_sym_try, - STATE(528), 1, - sym_try_statement, - STATE(529), 1, - sym_compound_statement, - STATE(3490), 1, + ACTIONS(8613), 1, + anon_sym_COLON, + STATE(4121), 1, sym_parameter_list, - STATE(4901), 1, + STATE(5647), 1, sym__function_declarator_seq, - STATE(4874), 2, + STATE(5695), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [184002] = 5, + [215493] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9100), 1, + anon_sym_new, + ACTIONS(9202), 1, + anon_sym_delete, + ACTIONS(9096), 2, + anon_sym_TILDE, + anon_sym_COLON_COLON, + ACTIONS(9094), 4, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [215513] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9204), 1, + anon_sym_delete, + ACTIONS(9206), 1, + anon_sym_new, + ACTIONS(9096), 2, + anon_sym_TILDE, + anon_sym_COLON_COLON, + ACTIONS(9094), 4, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [215533] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5709), 1, + ACTIONS(6466), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7776), 1, + ACTIONS(7977), 1, + anon_sym_LPAREN2, + ACTIONS(8212), 1, anon_sym_LBRACK, - STATE(4625), 2, + ACTIONS(8587), 1, + anon_sym_COLON, + STATE(4121), 1, + sym_parameter_list, + STATE(5647), 1, + sym__function_declarator_seq, + STATE(5695), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(7774), 7, - anon_sym_COMMA, - anon_sym_LPAREN2, + [215559] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9208), 1, + anon_sym_delete, + ACTIONS(9210), 1, + anon_sym_new, + ACTIONS(9096), 2, + anon_sym_TILDE, + anon_sym_COLON_COLON, + ACTIONS(9094), 4, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [215579] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(41), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4476), 1, + anon_sym_COLON_COLON, + ACTIONS(6151), 1, + anon_sym_LT, + ACTIONS(9212), 1, anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(9214), 1, anon_sym_EQ, - anon_sym_COLON, - anon_sym_try, - [184025] = 3, + STATE(3608), 1, + sym_template_argument_list, + STATE(5960), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [215605] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4723), 1, - anon_sym_LBRACK, - ACTIONS(4721), 10, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, + ACTIONS(41), 1, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, + ACTIONS(4476), 1, + anon_sym_COLON_COLON, + ACTIONS(6151), 1, + anon_sym_LT, + ACTIONS(9216), 1, + anon_sym_SEMI, + ACTIONS(9218), 1, anon_sym_EQ, - anon_sym_COLON, - anon_sym_GT2, - anon_sym_try, - [184044] = 6, + STATE(3608), 1, + sym_template_argument_list, + STATE(6068), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [215631] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6108), 1, - anon_sym_requires, - STATE(4763), 1, - sym_requires_clause, - ACTIONS(5898), 2, - anon_sym_final, - anon_sym_override, - STATE(4594), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat2, - ACTIONS(7378), 5, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_LBRACK, - anon_sym_GT2, - [184069] = 3, + ACTIONS(9132), 1, + anon_sym_new, + ACTIONS(9220), 1, + anon_sym_delete, + ACTIONS(9096), 2, + anon_sym_TILDE, + anon_sym_COLON_COLON, + ACTIONS(9094), 4, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [215651] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4645), 1, - anon_sym_LBRACK, - ACTIONS(4643), 10, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, + ACTIONS(41), 1, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, + ACTIONS(4476), 1, + anon_sym_COLON_COLON, + ACTIONS(6151), 1, + anon_sym_LT, + ACTIONS(9222), 1, + anon_sym_SEMI, + ACTIONS(9224), 1, anon_sym_EQ, - anon_sym_COLON, - anon_sym_GT2, - anon_sym_try, - [184088] = 6, + STATE(3608), 1, + sym_template_argument_list, + STATE(5978), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [215677] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7111), 1, + ACTIONS(41), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7977), 1, anon_sym_LPAREN2, - ACTIONS(7756), 1, + ACTIONS(8212), 1, anon_sym_LBRACK, - STATE(3482), 1, + ACTIONS(9226), 1, + anon_sym_SEMI, + STATE(3887), 1, sym_parameter_list, - STATE(4746), 1, + STATE(5647), 1, sym__function_declarator_seq, - ACTIONS(7502), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [184113] = 6, + STATE(5560), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [215703] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7111), 1, + ACTIONS(6466), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7977), 1, anon_sym_LPAREN2, - ACTIONS(7756), 1, + ACTIONS(8212), 1, anon_sym_LBRACK, - STATE(3461), 1, + ACTIONS(8543), 1, + anon_sym_COLON, + STATE(4121), 1, sym_parameter_list, - STATE(4746), 1, + STATE(5647), 1, sym__function_declarator_seq, - ACTIONS(7516), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [184138] = 4, + STATE(5695), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [215729] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4822), 1, - anon_sym_LBRACK, - ACTIONS(7778), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(4824), 8, + ACTIONS(7977), 1, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_LBRACK_LBRACK, + ACTIONS(8756), 1, + anon_sym_LBRACK, + STATE(4108), 1, + sym_parameter_list, + STATE(5397), 1, + sym__function_declarator_seq, + ACTIONS(8474), 4, anon_sym_COLON, - anon_sym_or, anon_sym_final, anon_sym_override, anon_sym_requires, - [184159] = 3, + [215751] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7782), 1, - anon_sym_LBRACK, - ACTIONS(7780), 10, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, + ACTIONS(4584), 1, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_GT2, - anon_sym_try, - [184178] = 3, + ACTIONS(9228), 1, + sym_identifier, + ACTIONS(9230), 1, + anon_sym_COLON_COLON, + ACTIONS(9232), 1, + anon_sym_inline, + STATE(797), 1, + sym_declaration_list, + STATE(6763), 1, + sym_nested_namespace_specifier, + STATE(7544), 1, + sym__namespace_specifier, + [215776] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3838), 1, - anon_sym_LBRACK, - ACTIONS(3843), 10, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, + ACTIONS(4586), 1, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_GT2, - anon_sym_try, - [184197] = 3, + ACTIONS(9230), 1, + anon_sym_COLON_COLON, + ACTIONS(9232), 1, + anon_sym_inline, + ACTIONS(9234), 1, + sym_identifier, + STATE(1288), 1, + sym_declaration_list, + STATE(6738), 1, + sym_nested_namespace_specifier, + STATE(7544), 1, + sym__namespace_specifier, + [215801] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4592), 1, + anon_sym_LBRACE, + ACTIONS(9230), 1, + anon_sym_COLON_COLON, + ACTIONS(9232), 1, + anon_sym_inline, + ACTIONS(9236), 1, + sym_identifier, + STATE(1277), 1, + sym_declaration_list, + STATE(6911), 1, + sym_nested_namespace_specifier, + STATE(7544), 1, + sym__namespace_specifier, + [215826] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7786), 1, + ACTIONS(41), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7977), 1, + anon_sym_LPAREN2, + ACTIONS(8898), 1, anon_sym_LBRACK, - ACTIONS(7784), 10, - anon_sym_COMMA, + ACTIONS(9238), 1, anon_sym_RPAREN, + STATE(5912), 1, + sym_parameter_list, + STATE(5836), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [215849] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4592), 1, + anon_sym_LBRACE, + ACTIONS(9230), 1, + anon_sym_COLON_COLON, + ACTIONS(9232), 1, + anon_sym_inline, + ACTIONS(9240), 1, + sym_identifier, + STATE(1245), 1, + sym_declaration_list, + STATE(6900), 1, + sym_nested_namespace_specifier, + STATE(7544), 1, + sym__namespace_specifier, + [215874] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5402), 1, + anon_sym_AMP, + ACTIONS(5404), 6, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, + anon_sym_STAR, + anon_sym_AMP_AMP, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_GT2, - anon_sym_try, - [184216] = 8, + anon_sym_LBRACK, + anon_sym_requires, + [215889] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(6707), 1, + ACTIONS(4588), 1, + anon_sym_LBRACE, + ACTIONS(9230), 1, + anon_sym_COLON_COLON, + ACTIONS(9232), 1, + anon_sym_inline, + ACTIONS(9242), 1, sym_identifier, - ACTIONS(6709), 1, + STATE(1333), 1, + sym_declaration_list, + STATE(6682), 1, + sym_nested_namespace_specifier, + STATE(7544), 1, + sym__namespace_specifier, + [215914] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9246), 1, + anon_sym_AMP, + ACTIONS(9244), 6, anon_sym_LPAREN2, - ACTIONS(6711), 1, anon_sym_STAR, - STATE(5081), 1, - sym__type_declarator, - STATE(6360), 1, - sym_ms_based_modifier, - STATE(5132), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - [184245] = 6, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_LBRACE, + anon_sym_LBRACK, + [215929] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6108), 1, - anon_sym_requires, - STATE(4789), 1, - sym_requires_clause, - ACTIONS(5898), 2, - anon_sym_final, - anon_sym_override, - STATE(4622), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat2, - ACTIONS(5673), 5, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(4590), 1, + anon_sym_LBRACE, + ACTIONS(9230), 1, + anon_sym_COLON_COLON, + ACTIONS(9232), 1, + anon_sym_inline, + ACTIONS(9248), 1, + sym_identifier, + STATE(523), 1, + sym_declaration_list, + STATE(6644), 1, + sym_nested_namespace_specifier, + STATE(7544), 1, + sym__namespace_specifier, + [215954] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5447), 1, + anon_sym_AMP, + ACTIONS(5449), 6, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_GT2, - [184270] = 9, + anon_sym_requires, + [215969] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(7788), 1, + ACTIONS(4586), 1, + anon_sym_LBRACE, + ACTIONS(9230), 1, + anon_sym_COLON_COLON, + ACTIONS(9232), 1, + anon_sym_inline, + ACTIONS(9250), 1, sym_identifier, - ACTIONS(7790), 1, + STATE(1263), 1, + sym_declaration_list, + STATE(6767), 1, + sym_nested_namespace_specifier, + STATE(7544), 1, + sym__namespace_specifier, + [215994] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1899), 1, + anon_sym_LBRACE, + ACTIONS(4476), 1, anon_sym_COLON_COLON, - STATE(4934), 1, - sym__scope_resolution, - STATE(5651), 1, - sym_field_initializer, - STATE(5185), 2, - sym_template_method, - sym_qualified_field_identifier, - STATE(6159), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - [184301] = 9, + ACTIONS(6151), 1, + anon_sym_LT, + ACTIONS(6308), 1, + anon_sym_LPAREN2, + STATE(6351), 1, + sym_template_argument_list, + STATE(6371), 2, + sym_argument_list, + sym_initializer_list, + [216017] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(7788), 1, - sym_identifier, - ACTIONS(7790), 1, + ACTIONS(4588), 1, + anon_sym_LBRACE, + ACTIONS(9230), 1, anon_sym_COLON_COLON, - STATE(4934), 1, - sym__scope_resolution, - STATE(5999), 1, - sym_field_initializer, - STATE(5185), 2, - sym_template_method, - sym_qualified_field_identifier, - STATE(6159), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - [184332] = 3, + ACTIONS(9232), 1, + anon_sym_inline, + ACTIONS(9252), 1, + sym_identifier, + STATE(1376), 1, + sym_declaration_list, + STATE(6737), 1, + sym_nested_namespace_specifier, + STATE(7544), 1, + sym__namespace_specifier, + [216042] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3838), 1, - anon_sym_LBRACK, - ACTIONS(3843), 10, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(4048), 1, + anon_sym_AMP, + ACTIONS(4046), 6, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LT, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_GT2, - anon_sym_try, - [184351] = 6, + anon_sym_LBRACK, + [216057] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7111), 1, + ACTIONS(9080), 1, + anon_sym_AMP, + ACTIONS(9078), 6, anon_sym_LPAREN2, - ACTIONS(7756), 1, - anon_sym_LBRACK, - STATE(3482), 1, - sym_parameter_list, - STATE(4746), 1, - sym__function_declarator_seq, - ACTIONS(7500), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LT, anon_sym_LBRACE, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [184376] = 11, + anon_sym_LBRACK, + [216072] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + ACTIONS(41), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(7111), 1, + ACTIONS(7977), 1, anon_sym_LPAREN2, - ACTIONS(7280), 1, + ACTIONS(8212), 1, anon_sym_LBRACK, - ACTIONS(7326), 1, - anon_sym_try, - STATE(948), 1, - sym_compound_statement, - STATE(949), 1, - sym_try_statement, - STATE(3490), 1, + STATE(3839), 1, sym_parameter_list, - STATE(4901), 1, + STATE(5647), 1, sym__function_declarator_seq, - STATE(4874), 2, + STATE(5560), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [184411] = 5, + [216095] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4917), 1, - anon_sym_LBRACK, - ACTIONS(7778), 2, + ACTIONS(4590), 1, + anon_sym_LBRACE, + ACTIONS(9230), 1, + anon_sym_COLON_COLON, + ACTIONS(9232), 1, + anon_sym_inline, + ACTIONS(9254), 1, + sym_identifier, + STATE(551), 1, + sym_declaration_list, + STATE(6670), 1, + sym_nested_namespace_specifier, + STATE(7544), 1, + sym__namespace_specifier, + [216120] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4584), 1, + anon_sym_LBRACE, + ACTIONS(9230), 1, + anon_sym_COLON_COLON, + ACTIONS(9232), 1, + anon_sym_inline, + ACTIONS(9256), 1, + sym_identifier, + STATE(799), 1, + sym_declaration_list, + STATE(6783), 1, + sym_nested_namespace_specifier, + STATE(7544), 1, + sym__namespace_specifier, + [216145] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9260), 1, + anon_sym_AMP, + ACTIONS(9258), 6, + anon_sym_LPAREN2, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7792), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(4919), 6, + anon_sym_LT, + anon_sym_LBRACE, + anon_sym_LBRACK, + [216160] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5410), 1, + anon_sym_AMP, + ACTIONS(5412), 6, anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - anon_sym_final, - anon_sym_override, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_requires, - [184434] = 6, + [216175] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6108), 1, - anon_sym_requires, - STATE(4751), 1, - sym_requires_clause, - ACTIONS(5898), 2, - anon_sym_final, - anon_sym_override, - STATE(4609), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat2, - ACTIONS(7075), 5, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(9264), 1, + anon_sym_AMP, + ACTIONS(9262), 6, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_GT2, - [184459] = 3, + [216190] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3838), 1, - anon_sym_LBRACK, - ACTIONS(3843), 10, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(8045), 1, + anon_sym_try, + ACTIONS(8695), 1, + anon_sym_LBRACE, + ACTIONS(9266), 1, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, + ACTIONS(9268), 1, + anon_sym_EQ, + STATE(2714), 2, + sym_compound_statement, + sym_try_statement, + [216210] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8097), 1, + anon_sym_try, + ACTIONS(8659), 1, anon_sym_LBRACE, + ACTIONS(9270), 1, + anon_sym_SEMI, + ACTIONS(9272), 1, anon_sym_EQ, - anon_sym_COLON, - anon_sym_GT2, + STATE(2620), 2, + sym_compound_statement, + sym_try_statement, + [216230] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8316), 1, + anon_sym_TILDE, + ACTIONS(9274), 1, + sym_identifier, + ACTIONS(9276), 1, + anon_sym_template, + STATE(2968), 3, + sym_template_method, + sym_destructor_name, + sym_dependent_field_identifier, + [216248] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(49), 1, + anon_sym_LBRACE, + ACTIONS(8236), 1, + anon_sym_try, + ACTIONS(9278), 1, + anon_sym_SEMI, + ACTIONS(9280), 1, + anon_sym_EQ, + STATE(1350), 2, + sym_compound_statement, + sym_try_statement, + [216268] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9282), 1, + anon_sym_LBRACK, + ACTIONS(9284), 1, + anon_sym_EQ, + ACTIONS(9286), 1, + anon_sym_DOT, + STATE(5893), 3, + sym_subscript_designator, + sym_field_designator, + aux_sym_initializer_pair_repeat1, + [216286] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(351), 1, + anon_sym_LBRACE, + ACTIONS(8272), 1, anon_sym_try, - [184478] = 3, + ACTIONS(9288), 1, + anon_sym_SEMI, + ACTIONS(9290), 1, + anon_sym_EQ, + STATE(817), 2, + sym_compound_statement, + sym_try_statement, + [216306] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3838), 1, + ACTIONS(9292), 1, anon_sym_LBRACK, - ACTIONS(3843), 10, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, + ACTIONS(9295), 1, anon_sym_EQ, - anon_sym_COLON, - anon_sym_GT2, - anon_sym_try, - [184497] = 6, + ACTIONS(9297), 1, + anon_sym_DOT, + STATE(5893), 3, + sym_subscript_designator, + sym_field_designator, + aux_sym_initializer_pair_repeat1, + [216324] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7111), 1, + ACTIONS(9300), 1, anon_sym_LPAREN2, - ACTIONS(7756), 1, - anon_sym_LBRACK, - STATE(3482), 1, - sym_parameter_list, - STATE(4746), 1, - sym__function_declarator_seq, - ACTIONS(7516), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [184522] = 6, + STATE(5914), 2, + sym_gnu_asm_qualifier, + aux_sym_gnu_asm_expression_repeat1, + ACTIONS(9302), 3, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + [216340] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6108), 1, - anon_sym_requires, - STATE(4796), 1, - sym_requires_clause, - ACTIONS(5898), 2, - anon_sym_final, - anon_sym_override, - STATE(4608), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat2, - ACTIONS(7093), 5, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(9304), 1, anon_sym_LPAREN2, - anon_sym_LBRACK, - anon_sym_GT2, - [184547] = 6, + STATE(5919), 2, + sym_gnu_asm_qualifier, + aux_sym_gnu_asm_expression_repeat1, + ACTIONS(9302), 3, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + [216356] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7111), 1, - anon_sym_LPAREN2, - ACTIONS(7756), 1, - anon_sym_LBRACK, - STATE(3461), 1, - sym_parameter_list, - STATE(4746), 1, - sym__function_declarator_seq, - ACTIONS(7508), 7, + ACTIONS(7987), 1, + anon_sym_try, + ACTIONS(8727), 1, + anon_sym_LBRACE, + ACTIONS(9306), 1, anon_sym_SEMI, + ACTIONS(9308), 1, + anon_sym_EQ, + STATE(2373), 2, + sym_compound_statement, + sym_try_statement, + [216376] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8097), 1, + anon_sym_try, + ACTIONS(8659), 1, anon_sym_LBRACE, + ACTIONS(9310), 1, + anon_sym_SEMI, + ACTIONS(9312), 1, anon_sym_EQ, - anon_sym_final, - anon_sym_override, + STATE(2706), 2, + sym_compound_statement, + sym_try_statement, + [216396] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8286), 1, + anon_sym_TILDE, + ACTIONS(9314), 1, + sym_identifier, + ACTIONS(9316), 1, + anon_sym_template, + STATE(3315), 3, + sym_template_method, + sym_destructor_name, + sym_dependent_field_identifier, + [216414] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(917), 1, + anon_sym_LBRACE, + ACTIONS(8228), 1, anon_sym_try, - anon_sym_requires, - [184572] = 3, + ACTIONS(9318), 1, + anon_sym_SEMI, + ACTIONS(9320), 1, + anon_sym_EQ, + STATE(1300), 2, + sym_compound_statement, + sym_try_statement, + [216434] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6476), 1, + ACTIONS(9324), 1, anon_sym_LBRACK, - ACTIONS(3988), 10, + ACTIONS(9322), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_GT2, - anon_sym_try, - [184591] = 6, + [216448] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7111), 1, - anon_sym_LPAREN2, - ACTIONS(7756), 1, - anon_sym_LBRACK, - STATE(3461), 1, - sym_parameter_list, - STATE(4746), 1, - sym__function_declarator_seq, - ACTIONS(7502), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [184616] = 9, + STATE(7345), 1, + sym_string_literal, + ACTIONS(107), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [216462] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(7477), 1, - anon_sym_COLON_COLON, - ACTIONS(7794), 1, - sym_identifier, - STATE(4590), 1, - sym__scope_resolution, - STATE(6485), 1, - sym_qualified_identifier, - ACTIONS(7796), 2, - anon_sym_enum, - anon_sym_namespace, - STATE(6159), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - [184647] = 3, + ACTIONS(7997), 1, + anon_sym_try, + ACTIONS(8667), 1, + anon_sym_LBRACE, + ACTIONS(9326), 1, + anon_sym_SEMI, + ACTIONS(9328), 1, + anon_sym_EQ, + STATE(2283), 2, + sym_compound_statement, + sym_try_statement, + [216482] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3838), 1, + ACTIONS(9332), 1, anon_sym_LBRACK, - ACTIONS(3843), 10, + ACTIONS(9330), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_GT2, - anon_sym_try, - [184666] = 6, + [216496] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7111), 1, - anon_sym_LPAREN2, - ACTIONS(7756), 1, + ACTIONS(9336), 1, anon_sym_LBRACK, - STATE(3482), 1, - sym_parameter_list, - STATE(4746), 1, - sym__function_declarator_seq, - ACTIONS(7508), 7, + ACTIONS(9334), 5, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [184691] = 5, + anon_sym_LBRACK_LBRACK, + [216510] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7800), 1, - anon_sym_LT, - ACTIONS(7802), 1, + ACTIONS(9340), 1, anon_sym_LBRACK, - STATE(4951), 1, - sym_template_argument_list, - ACTIONS(7798), 8, + ACTIONS(9338), 5, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, + [216524] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(917), 1, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, + ACTIONS(8228), 1, anon_sym_try, - [184714] = 9, + ACTIONS(9342), 1, + anon_sym_SEMI, + ACTIONS(9344), 1, + anon_sym_EQ, + STATE(1256), 2, + sym_compound_statement, + sym_try_statement, + [216544] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(7477), 1, - anon_sym_COLON_COLON, - ACTIONS(7804), 1, - sym_identifier, - STATE(4590), 1, - sym__scope_resolution, - STATE(6471), 1, - sym_qualified_identifier, - ACTIONS(7806), 2, - anon_sym_enum, - anon_sym_namespace, - STATE(6159), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - [184745] = 6, + ACTIONS(9346), 1, + anon_sym_LPAREN2, + STATE(5909), 2, + sym_gnu_asm_qualifier, + aux_sym_gnu_asm_expression_repeat1, + ACTIONS(9302), 3, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + [216560] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7111), 1, + ACTIONS(9348), 1, anon_sym_LPAREN2, - ACTIONS(7756), 1, - anon_sym_LBRACK, - STATE(3461), 1, - sym_parameter_list, - STATE(4746), 1, - sym__function_declarator_seq, - ACTIONS(7471), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [184770] = 6, + STATE(5938), 2, + sym_gnu_asm_qualifier, + aux_sym_gnu_asm_expression_repeat1, + ACTIONS(9302), 3, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + [216576] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7111), 1, + ACTIONS(9350), 1, anon_sym_LPAREN2, - ACTIONS(7756), 1, + STATE(5919), 2, + sym_gnu_asm_qualifier, + aux_sym_gnu_asm_expression_repeat1, + ACTIONS(9302), 3, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + [216592] = 3, + ACTIONS(3), 1, + sym_comment, + STATE(6240), 1, + sym_string_literal, + ACTIONS(107), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [216606] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7977), 1, + anon_sym_LPAREN2, + ACTIONS(8756), 1, anon_sym_LBRACK, - STATE(3482), 1, + STATE(3900), 1, sym_parameter_list, - STATE(4746), 1, + STATE(5397), 1, sym__function_declarator_seq, - ACTIONS(7506), 7, + ACTIONS(8886), 2, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [184795] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6108), 1, - anon_sym_requires, - STATE(4807), 1, - sym_requires_clause, - ACTIONS(5898), 2, - anon_sym_final, - anon_sym_override, - STATE(4604), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat2, - ACTIONS(6851), 5, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_LBRACK, - anon_sym_GT2, - [184820] = 3, + [216626] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7810), 1, + ACTIONS(9354), 1, anon_sym_LBRACK, - ACTIONS(7808), 10, + ACTIONS(9352), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_GT2, - anon_sym_try, - [184839] = 6, + [216640] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7111), 1, + ACTIONS(9356), 1, anon_sym_LPAREN2, - ACTIONS(7756), 1, - anon_sym_LBRACK, - STATE(3482), 1, - sym_parameter_list, - STATE(4746), 1, - sym__function_declarator_seq, - ACTIONS(7471), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [184864] = 9, + STATE(5895), 2, + sym_gnu_asm_qualifier, + aux_sym_gnu_asm_expression_repeat1, + ACTIONS(9302), 3, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + [216656] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(7477), 1, - anon_sym_COLON_COLON, - ACTIONS(7812), 1, - sym_identifier, - STATE(4590), 1, - sym__scope_resolution, - STATE(6597), 1, - sym_qualified_identifier, - ACTIONS(7814), 2, - anon_sym_enum, - anon_sym_namespace, - STATE(6159), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - [184895] = 3, + ACTIONS(9358), 1, + anon_sym_LPAREN2, + STATE(5919), 2, + sym_gnu_asm_qualifier, + aux_sym_gnu_asm_expression_repeat1, + ACTIONS(9302), 3, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + [216672] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4658), 1, + ACTIONS(6151), 1, + anon_sym_LT, + ACTIONS(8770), 1, anon_sym_LBRACK, - ACTIONS(4656), 10, - anon_sym_COMMA, + STATE(5688), 1, + sym_template_argument_list, + ACTIONS(8766), 3, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_SEMI, anon_sym_LBRACK_LBRACK, + [216690] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7987), 1, + anon_sym_try, + ACTIONS(8727), 1, anon_sym_LBRACE, + ACTIONS(9360), 1, + anon_sym_SEMI, + ACTIONS(9362), 1, anon_sym_EQ, - anon_sym_COLON, - anon_sym_GT2, - anon_sym_try, - [184914] = 6, + STATE(2406), 2, + sym_compound_statement, + sym_try_statement, + [216710] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7111), 1, - anon_sym_LPAREN2, - ACTIONS(7756), 1, - anon_sym_LBRACK, - STATE(3461), 1, - sym_parameter_list, - STATE(4746), 1, - sym__function_declarator_seq, - ACTIONS(7504), 7, - anon_sym_SEMI, + ACTIONS(7997), 1, + anon_sym_try, + ACTIONS(8667), 1, anon_sym_LBRACE, + ACTIONS(9364), 1, + anon_sym_SEMI, + ACTIONS(9366), 1, anon_sym_EQ, - anon_sym_final, - anon_sym_override, + STATE(2331), 2, + sym_compound_statement, + sym_try_statement, + [216730] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(251), 1, + anon_sym_LBRACE, + ACTIONS(8216), 1, anon_sym_try, - anon_sym_requires, - [184939] = 6, + ACTIONS(9368), 1, + anon_sym_SEMI, + ACTIONS(9370), 1, + anon_sym_EQ, + STATE(527), 2, + sym_compound_statement, + sym_try_statement, + [216750] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7111), 1, + ACTIONS(9372), 1, anon_sym_LPAREN2, - ACTIONS(7756), 1, - anon_sym_LBRACK, - STATE(3461), 1, - sym_parameter_list, - STATE(4746), 1, - sym__function_declarator_seq, - ACTIONS(7500), 7, - anon_sym_SEMI, + STATE(5919), 2, + sym_gnu_asm_qualifier, + aux_sym_gnu_asm_expression_repeat1, + ACTIONS(9374), 3, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + [216766] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(738), 1, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, + ACTIONS(8258), 1, anon_sym_try, - anon_sym_requires, - [184964] = 10, + ACTIONS(9377), 1, + anon_sym_SEMI, + ACTIONS(9379), 1, + anon_sym_EQ, + STATE(1202), 2, + sym_compound_statement, + sym_try_statement, + [216786] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(7790), 1, - anon_sym_COLON_COLON, - ACTIONS(7816), 1, - sym_identifier, - ACTIONS(7818), 1, - anon_sym_template, - STATE(4934), 1, - sym__scope_resolution, - STATE(5677), 1, - sym_dependent_field_identifier, - STATE(5692), 1, - sym_qualified_field_identifier, - STATE(5816), 1, - sym_template_method, - STATE(6159), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - [184997] = 3, + STATE(7273), 1, + sym_string_literal, + ACTIONS(107), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [216800] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7822), 1, + ACTIONS(9383), 1, anon_sym_LBRACK, - ACTIONS(7820), 10, + ACTIONS(9381), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_GT2, - anon_sym_try, - [185016] = 3, + [216814] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7826), 1, - anon_sym_LBRACK, - ACTIONS(7824), 10, + ACTIONS(9385), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + STATE(5923), 1, + aux_sym_field_declaration_repeat1, + ACTIONS(9388), 4, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, - anon_sym_GT2, - anon_sym_try, - [185035] = 8, + [216830] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7111), 1, + ACTIONS(7977), 1, anon_sym_LPAREN2, - ACTIONS(7280), 1, + ACTIONS(8756), 1, anon_sym_LBRACK, - STATE(3490), 1, + STATE(3964), 1, sym_parameter_list, - STATE(4901), 1, + STATE(5397), 1, sym__function_declarator_seq, - STATE(4874), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(7565), 4, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_try, - [185064] = 9, + ACTIONS(8886), 2, + anon_sym_COMMA, + anon_sym_GT2, + [216850] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, + ACTIONS(8304), 1, + anon_sym_TILDE, + ACTIONS(9390), 1, + sym_identifier, + ACTIONS(9392), 1, anon_sym_template, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(7477), 1, + STATE(3548), 3, + sym_template_method, + sym_destructor_name, + sym_dependent_field_identifier, + [216868] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9394), 1, + anon_sym_LPAREN2, + STATE(5919), 2, + sym_gnu_asm_qualifier, + aux_sym_gnu_asm_expression_repeat1, + ACTIONS(9302), 3, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + [216884] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9398), 2, + anon_sym_TILDE, anon_sym_COLON_COLON, - ACTIONS(7828), 1, + ACTIONS(9396), 4, sym_identifier, - STATE(4590), 1, - sym__scope_resolution, - STATE(6158), 1, - sym_qualified_identifier, - ACTIONS(7830), 2, - anon_sym_enum, - anon_sym_namespace, - STATE(6159), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - [185095] = 8, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [216898] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7111), 1, - anon_sym_LPAREN2, - ACTIONS(7280), 1, - anon_sym_LBRACK, - STATE(3490), 1, - sym_parameter_list, - STATE(4901), 1, - sym__function_declarator_seq, - STATE(4874), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(7553), 4, - anon_sym_RPAREN, - anon_sym_SEMI, + ACTIONS(251), 1, anon_sym_LBRACE, + ACTIONS(8216), 1, anon_sym_try, - [185124] = 11, + ACTIONS(9400), 1, + anon_sym_SEMI, + ACTIONS(9402), 1, + anon_sym_EQ, + STATE(595), 2, + sym_compound_statement, + sym_try_statement, + [216918] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7111), 1, + ACTIONS(9404), 1, anon_sym_LPAREN2, - ACTIONS(7121), 1, - anon_sym_try, - ACTIONS(7280), 1, - anon_sym_LBRACK, - ACTIONS(7681), 1, + STATE(5926), 2, + sym_gnu_asm_qualifier, + aux_sym_gnu_asm_expression_repeat1, + ACTIONS(9302), 3, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + [216934] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(49), 1, anon_sym_LBRACE, - STATE(2152), 1, - sym_try_statement, - STATE(2156), 1, + ACTIONS(8236), 1, + anon_sym_try, + ACTIONS(9406), 1, + anon_sym_SEMI, + ACTIONS(9408), 1, + anon_sym_EQ, + STATE(1318), 2, sym_compound_statement, - STATE(3490), 1, - sym_parameter_list, - STATE(4901), 1, - sym__function_declarator_seq, - STATE(4874), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [185159] = 11, + sym_try_statement, + [216954] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(640), 1, + ACTIONS(351), 1, anon_sym_LBRACE, - ACTIONS(7111), 1, - anon_sym_LPAREN2, - ACTIONS(7280), 1, - anon_sym_LBRACK, - ACTIONS(7284), 1, + ACTIONS(8272), 1, anon_sym_try, - STATE(956), 1, - sym_try_statement, - STATE(957), 1, + ACTIONS(9410), 1, + anon_sym_SEMI, + ACTIONS(9412), 1, + anon_sym_EQ, + STATE(802), 2, sym_compound_statement, - STATE(3490), 1, - sym_parameter_list, - STATE(4901), 1, - sym__function_declarator_seq, - STATE(4874), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [185194] = 6, + sym_try_statement, + [216974] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6108), 1, - anon_sym_requires, - STATE(4813), 1, - sym_requires_clause, - ACTIONS(5898), 2, - anon_sym_final, - anon_sym_override, - STATE(4641), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat2, - ACTIONS(5950), 5, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_LBRACK, - anon_sym_GT2, - [185219] = 3, + ACTIONS(8045), 1, + anon_sym_try, + ACTIONS(8695), 1, + anon_sym_LBRACE, + ACTIONS(9414), 1, + anon_sym_SEMI, + ACTIONS(9416), 1, + anon_sym_EQ, + STATE(2682), 2, + sym_compound_statement, + sym_try_statement, + [216994] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7834), 1, + ACTIONS(41), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8822), 1, anon_sym_LBRACK, - ACTIONS(7832), 10, - anon_sym_COMMA, + ACTIONS(8820), 2, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_GT2, - anon_sym_try, - [185238] = 3, + STATE(5578), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [217012] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7838), 1, + ACTIONS(9420), 1, anon_sym_LBRACK, - ACTIONS(7836), 10, + ACTIONS(9418), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_GT2, - anon_sym_try, - [185257] = 7, + [217026] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5952), 1, - anon_sym_LBRACK, - ACTIONS(6480), 1, - anon_sym_requires, - STATE(4723), 1, - sym_requires_clause, - ACTIONS(4135), 2, - anon_sym_final, - anon_sym_override, - STATE(4538), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat2, - ACTIONS(5950), 3, + ACTIONS(9422), 1, anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - [185283] = 7, + STATE(5936), 2, + sym_gnu_asm_qualifier, + aux_sym_gnu_asm_expression_repeat1, + ACTIONS(9302), 3, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + [217042] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5675), 1, - anon_sym_LBRACK, - ACTIONS(6480), 1, - anon_sym_requires, - STATE(4716), 1, - sym_requires_clause, - ACTIONS(4135), 2, - anon_sym_final, - anon_sym_override, - STATE(4578), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat2, - ACTIONS(5673), 3, + ACTIONS(9424), 1, anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - [185309] = 3, + STATE(5919), 2, + sym_gnu_asm_qualifier, + aux_sym_gnu_asm_expression_repeat1, + ACTIONS(9302), 3, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + [217058] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7842), 1, - anon_sym_LBRACK, - ACTIONS(7840), 9, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, + ACTIONS(738), 1, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, + ACTIONS(8258), 1, anon_sym_try, - [185327] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7111), 1, - anon_sym_LPAREN2, - ACTIONS(7280), 1, - anon_sym_LBRACK, - ACTIONS(7846), 1, + ACTIONS(9426), 1, + anon_sym_SEMI, + ACTIONS(9428), 1, anon_sym_EQ, - STATE(3300), 1, - sym_parameter_list, - STATE(4901), 1, - sym__function_declarator_seq, - ACTIONS(7844), 2, - anon_sym_COMMA, - anon_sym_GT2, - STATE(4874), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [185357] = 10, + STATE(1294), 2, + sym_compound_statement, + sym_try_statement, + [217078] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1489), 1, - anon_sym_LBRACE, - ACTIONS(7111), 1, + ACTIONS(9430), 1, anon_sym_LPAREN2, - ACTIONS(7280), 1, - anon_sym_LBRACK, - ACTIONS(7848), 1, - anon_sym_EQ, - STATE(3300), 1, - sym_parameter_list, - STATE(4901), 1, - sym__function_declarator_seq, - STATE(6543), 1, - sym_initializer_list, - STATE(4874), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [185389] = 9, + STATE(5919), 2, + sym_gnu_asm_qualifier, + aux_sym_gnu_asm_expression_repeat1, + ACTIONS(9302), 3, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + [217094] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(2928), 1, + ACTIONS(9434), 2, + anon_sym_TILDE, anon_sym_COLON_COLON, - ACTIONS(6855), 1, + ACTIONS(9432), 4, sym_identifier, - STATE(3133), 1, - sym_template_type, - STATE(5006), 1, - sym__scope_resolution, - STATE(5226), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6159), 2, - sym_decltype, - sym_dependent_type_identifier, - [185419] = 3, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [217108] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8316), 1, + anon_sym_TILDE, + ACTIONS(9436), 1, + sym_identifier, + ACTIONS(9438), 1, + anon_sym_template, + STATE(2968), 3, + sym_template_method, + sym_destructor_name, + sym_dependent_field_identifier, + [217126] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4873), 1, + ACTIONS(9442), 1, anon_sym_LBRACK, - ACTIONS(4871), 9, + ACTIONS(9440), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_try, - [185437] = 9, + [217140] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(7850), 1, - sym_identifier, - ACTIONS(7852), 1, + ACTIONS(9230), 1, anon_sym_COLON_COLON, - STATE(3090), 1, - sym_template_type, - STATE(4980), 1, - sym__scope_resolution, - STATE(3105), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6159), 2, - sym_decltype, - sym_dependent_type_identifier, - [185467] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7111), 1, - anon_sym_LPAREN2, - ACTIONS(7280), 1, - anon_sym_LBRACK, - ACTIONS(7854), 1, - anon_sym_EQ, - STATE(3300), 1, - sym_parameter_list, - STATE(4901), 1, - sym__function_declarator_seq, - ACTIONS(7844), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(4874), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [185497] = 3, + ACTIONS(9232), 1, + anon_sym_inline, + ACTIONS(9444), 1, + sym_identifier, + STATE(7482), 1, + sym_nested_namespace_specifier, + STATE(7544), 1, + sym__namespace_specifier, + [217159] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7858), 1, - anon_sym_LBRACK, - ACTIONS(7856), 9, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_try, - [185515] = 6, + ACTIONS(9446), 2, + anon_sym_class, + anon_sym_typename, + STATE(6690), 3, + sym_type_parameter_declaration, + sym_variadic_type_parameter_declaration, + sym_optional_type_parameter_declaration, + [217172] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7111), 1, - anon_sym_LPAREN2, - ACTIONS(7756), 1, - anon_sym_LBRACK, - STATE(3556), 1, - sym_parameter_list, - STATE(4746), 1, - sym__function_declarator_seq, - ACTIONS(7508), 6, - anon_sym_DOT_DOT_DOT, + ACTIONS(6522), 1, + sym_auto, + ACTIONS(6524), 1, + anon_sym_decltype, + STATE(3692), 1, + sym_decltype_auto, + ACTIONS(9448), 2, anon_sym_COMMA, - anon_sym_final, - anon_sym_override, anon_sym_GT2, - anon_sym_requires, - [185539] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(2928), 1, - anon_sym_COLON_COLON, - ACTIONS(6855), 1, - sym_identifier, - STATE(3133), 1, - sym_template_type, - STATE(5006), 1, - sym__scope_resolution, - STATE(5295), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6159), 2, - sym_decltype, - sym_dependent_type_identifier, - [185569] = 6, + [217189] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7111), 1, - anon_sym_LPAREN2, - ACTIONS(7756), 1, - anon_sym_LBRACK, - STATE(3556), 1, - sym_parameter_list, - STATE(4746), 1, - sym__function_declarator_seq, - ACTIONS(7500), 6, + ACTIONS(7397), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(7401), 1, + anon_sym_EQ, + ACTIONS(9450), 1, + sym_identifier, + ACTIONS(7399), 2, anon_sym_COMMA, - anon_sym_final, - anon_sym_override, anon_sym_GT2, - anon_sym_requires, - [185593] = 6, + [217206] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7111), 1, + ACTIONS(7977), 1, anon_sym_LPAREN2, - ACTIONS(7756), 1, + ACTIONS(8756), 1, anon_sym_LBRACK, - STATE(3556), 1, + ACTIONS(9452), 1, + anon_sym_RPAREN, + STATE(3900), 1, sym_parameter_list, - STATE(4746), 1, + STATE(5397), 1, sym__function_declarator_seq, - ACTIONS(7502), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [185617] = 7, + [217225] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6480), 1, - anon_sym_requires, - ACTIONS(7380), 1, - anon_sym_LBRACK, - STATE(4653), 1, - sym_requires_clause, - ACTIONS(4135), 2, - anon_sym_final, - anon_sym_override, - STATE(4528), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat2, - ACTIONS(7378), 3, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - [185643] = 3, + ACTIONS(9230), 1, + anon_sym_COLON_COLON, + ACTIONS(9232), 1, + anon_sym_inline, + ACTIONS(9454), 1, + sym_identifier, + STATE(6210), 1, + sym__namespace_specifier, + STATE(6790), 1, + sym_nested_namespace_specifier, + [217244] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7862), 1, - anon_sym_LBRACK, - ACTIONS(7860), 9, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(4476), 1, + anon_sym_COLON_COLON, + ACTIONS(6151), 1, + anon_sym_LT, + STATE(6351), 1, + sym_template_argument_list, + ACTIONS(9456), 2, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_try, - [185661] = 9, + [217261] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(2928), 1, + ACTIONS(9460), 1, anon_sym_COLON_COLON, - ACTIONS(6855), 1, + ACTIONS(9458), 4, sym_identifier, - STATE(3133), 1, - sym_template_type, - STATE(5006), 1, - sym__scope_resolution, - STATE(5670), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6159), 2, - sym_decltype, - sym_dependent_type_identifier, - [185691] = 5, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + [217274] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5709), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7751), 1, - anon_sym_LBRACK, - STATE(4625), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(7749), 6, - anon_sym_COMMA, + ACTIONS(6308), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - [185713] = 9, + ACTIONS(9464), 1, + anon_sym_COLON_COLON, + STATE(6728), 1, + sym_argument_list, + ACTIONS(9462), 2, + anon_sym_COMMA, + anon_sym_RBRACK_RBRACK, + [217291] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(2928), 1, + ACTIONS(9230), 1, anon_sym_COLON_COLON, - ACTIONS(6855), 1, + ACTIONS(9232), 1, + anon_sym_inline, + ACTIONS(9466), 1, sym_identifier, - STATE(3133), 1, - sym_template_type, - STATE(5006), 1, - sym__scope_resolution, - STATE(5523), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(6159), 2, - sym_decltype, - sym_dependent_type_identifier, - [185743] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7866), 1, - anon_sym_LBRACK, - ACTIONS(7864), 9, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_try, - [185761] = 6, + STATE(7008), 1, + sym_nested_namespace_specifier, + STATE(7544), 1, + sym__namespace_specifier, + [217310] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7111), 1, + ACTIONS(7977), 1, anon_sym_LPAREN2, - ACTIONS(7756), 1, + ACTIONS(8756), 1, anon_sym_LBRACK, - STATE(3556), 1, + ACTIONS(9468), 1, + anon_sym_RPAREN, + STATE(3900), 1, sym_parameter_list, - STATE(4746), 1, + STATE(5397), 1, sym__function_declarator_seq, - ACTIONS(7471), 6, - anon_sym_DOT_DOT_DOT, + [217329] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6522), 1, + sym_auto, + ACTIONS(6524), 1, + anon_sym_decltype, + STATE(3692), 1, + sym_decltype_auto, + ACTIONS(9470), 2, anon_sym_COMMA, - anon_sym_final, - anon_sym_override, anon_sym_GT2, - anon_sym_requires, - [185785] = 3, + [217346] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7870), 1, - anon_sym_LBRACK, - ACTIONS(7868), 9, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_try, - [185803] = 6, + ACTIONS(9230), 1, + anon_sym_COLON_COLON, + ACTIONS(9232), 1, + anon_sym_inline, + ACTIONS(9472), 1, + sym_identifier, + STATE(7529), 1, + sym_nested_namespace_specifier, + STATE(7544), 1, + sym__namespace_specifier, + [217365] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9230), 1, + anon_sym_COLON_COLON, + ACTIONS(9232), 1, + anon_sym_inline, + ACTIONS(9454), 1, + sym_identifier, + STATE(6458), 1, + sym__namespace_specifier, + STATE(6925), 1, + sym_nested_namespace_specifier, + [217384] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9230), 1, + anon_sym_COLON_COLON, + ACTIONS(9232), 1, + anon_sym_inline, + ACTIONS(9474), 1, + sym_identifier, + STATE(7009), 1, + sym_nested_namespace_specifier, + STATE(7544), 1, + sym__namespace_specifier, + [217403] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9230), 1, + anon_sym_COLON_COLON, + ACTIONS(9232), 1, + anon_sym_inline, + ACTIONS(9476), 1, + sym_identifier, + STATE(7222), 1, + sym_nested_namespace_specifier, + STATE(7544), 1, + sym__namespace_specifier, + [217422] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7111), 1, + ACTIONS(7977), 1, anon_sym_LPAREN2, - ACTIONS(7756), 1, + ACTIONS(8756), 1, anon_sym_LBRACK, - STATE(3556), 1, + STATE(3900), 1, sym_parameter_list, - STATE(4746), 1, + STATE(5397), 1, sym__function_declarator_seq, - ACTIONS(7506), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [185827] = 7, + [217438] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6480), 1, - anon_sym_requires, - ACTIONS(6853), 1, - anon_sym_LBRACK, - STATE(4659), 1, - sym_requires_clause, - ACTIONS(4135), 2, - anon_sym_final, - anon_sym_override, - STATE(4533), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat2, - ACTIONS(6851), 3, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, + ACTIONS(4878), 1, anon_sym_COLON, - [185853] = 7, + ACTIONS(5270), 1, + anon_sym_LBRACE, + STATE(3074), 1, + sym_field_declaration_list, + STATE(6935), 1, + sym_base_class_clause, + [217454] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6480), 1, - anon_sym_requires, - ACTIONS(7095), 1, - anon_sym_LBRACK, - STATE(4674), 1, - sym_requires_clause, - ACTIONS(4135), 2, - anon_sym_final, - anon_sym_override, - STATE(4545), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat2, - ACTIONS(7093), 3, - anon_sym_LPAREN2, + ACTIONS(41), 1, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - [185879] = 7, + ACTIONS(9478), 1, + anon_sym_EQ, + STATE(5578), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [217468] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6480), 1, - anon_sym_requires, - ACTIONS(7077), 1, - anon_sym_LBRACK, - STATE(4728), 1, - sym_requires_clause, - ACTIONS(4135), 2, - anon_sym_final, - anon_sym_override, - STATE(4541), 2, - sym_virtual_specifier, - aux_sym__function_declarator_seq_repeat2, - ACTIONS(7075), 3, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, + ACTIONS(4878), 1, anon_sym_COLON, - [185905] = 3, + ACTIONS(5149), 1, + anon_sym_LBRACE, + STATE(3256), 1, + sym_field_declaration_list, + STATE(6707), 1, + sym_base_class_clause, + [217484] = 5, + ACTIONS(7929), 1, + sym_comment, + ACTIONS(9480), 1, + anon_sym_DQUOTE, + ACTIONS(9482), 1, + aux_sym_string_literal_token1, + ACTIONS(9484), 1, + sym_escape_sequence, + STATE(5980), 1, + aux_sym_string_literal_repeat1, + [217500] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7874), 1, - anon_sym_LBRACK, - ACTIONS(7872), 9, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, + ACTIONS(4588), 1, anon_sym_LBRACE, + ACTIONS(9486), 1, + anon_sym_COLON_COLON, + ACTIONS(9488), 1, anon_sym_EQ, - anon_sym_COLON, - anon_sym_try, - [185923] = 6, + STATE(1365), 1, + sym_declaration_list, + [217516] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7111), 1, - anon_sym_LPAREN2, - ACTIONS(7756), 1, - anon_sym_LBRACK, - STATE(3556), 1, - sym_parameter_list, - STATE(4746), 1, - sym__function_declarator_seq, - ACTIONS(7504), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [185947] = 7, + ACTIONS(41), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9214), 1, + anon_sym_EQ, + STATE(5960), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [217530] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5493), 1, + ACTIONS(8200), 1, anon_sym_LBRACE, - ACTIONS(7876), 1, - anon_sym_COLON, - STATE(3196), 1, - sym__enum_base_clause, - STATE(3235), 1, - sym_enumerator_list, - ACTIONS(4268), 2, + STATE(4032), 1, + sym_compound_statement, + ACTIONS(8517), 2, anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(4270), 4, - anon_sym___based, - sym_identifier, - sym_auto, - anon_sym_decltype, - [185973] = 6, + anon_sym_LBRACK, + [217544] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(41), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9490), 1, + anon_sym_EQ, + STATE(5578), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [217558] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7111), 1, + ACTIONS(8250), 1, + anon_sym_LBRACE, + STATE(3562), 1, + sym_compound_statement, + ACTIONS(8517), 2, anon_sym_LPAREN2, - ACTIONS(7756), 1, anon_sym_LBRACK, - STATE(3556), 1, - sym_parameter_list, - STATE(4746), 1, - sym__function_declarator_seq, - ACTIONS(7516), 6, - anon_sym_DOT_DOT_DOT, + [217572] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6672), 1, anon_sym_COMMA, - anon_sym_final, - anon_sym_override, + ACTIONS(9492), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9494), 1, anon_sym_GT2, - anon_sym_requires, - [185997] = 3, + STATE(6472), 1, + aux_sym_template_argument_list_repeat1, + [217588] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7880), 1, - anon_sym_LBRACK, - ACTIONS(7878), 9, + ACTIONS(6672), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_try, - [186015] = 7, + ACTIONS(9492), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9496), 1, + anon_sym_GT2, + STATE(6369), 1, + aux_sym_template_argument_list_repeat1, + [217604] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5493), 1, + ACTIONS(7718), 1, anon_sym_LBRACE, - ACTIONS(7876), 1, - anon_sym_COLON, - STATE(3202), 1, - sym__enum_base_clause, - STATE(3257), 1, - sym_enumerator_list, - ACTIONS(4276), 2, + ACTIONS(9498), 1, anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(4278), 4, - anon_sym___based, - sym_identifier, - sym_auto, - anon_sym_decltype, - [186041] = 3, + STATE(4023), 1, + sym_requirement_seq, + STATE(6901), 1, + sym_requires_parameter_list, + [217620] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3862), 1, - anon_sym_LBRACK, - ACTIONS(3864), 8, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, + ACTIONS(49), 1, anon_sym_LBRACE, - anon_sym_EQ, + ACTIONS(8645), 1, anon_sym_COLON, - anon_sym_try, - [186058] = 8, + STATE(6525), 1, + sym_compound_statement, + STATE(6890), 1, + sym_field_initializer_list, + [217636] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(7477), 1, - anon_sym_COLON_COLON, - ACTIONS(7882), 1, - sym_identifier, - STATE(4590), 1, - sym__scope_resolution, - STATE(6330), 1, - sym_qualified_identifier, - STATE(6159), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - [186085] = 10, + ACTIONS(4878), 1, + anon_sym_COLON, + ACTIONS(5270), 1, + anon_sym_LBRACE, + STATE(3134), 1, + sym_field_declaration_list, + STATE(6897), 1, + sym_base_class_clause, + [217652] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(6861), 1, - anon_sym_COLON_COLON, - ACTIONS(7884), 1, - sym_identifier, - STATE(2194), 1, - sym_qualified_type_identifier, - STATE(3134), 1, - sym_template_type, - STATE(3144), 1, - sym_dependent_type_identifier, - STATE(4979), 1, - sym__scope_resolution, - STATE(6159), 1, - sym_decltype, - [186116] = 10, + ACTIONS(4592), 1, + anon_sym_LBRACE, + ACTIONS(9486), 1, + anon_sym_COLON_COLON, + ACTIONS(9500), 1, + anon_sym_EQ, + STATE(1290), 1, + sym_declaration_list, + [217668] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(7852), 1, - anon_sym_COLON_COLON, - ACTIONS(7886), 1, - sym_identifier, - ACTIONS(7888), 1, - anon_sym_template, - STATE(3093), 1, - sym_template_type, - STATE(3096), 1, - sym_dependent_type_identifier, - STATE(3118), 1, - sym_qualified_type_identifier, - STATE(4980), 1, - sym__scope_resolution, - STATE(6159), 1, - sym_decltype, - [186147] = 7, + ACTIONS(4878), 1, + anon_sym_COLON, + ACTIONS(5270), 1, + anon_sym_LBRACE, + STATE(3173), 1, + sym_field_declaration_list, + STATE(6896), 1, + sym_base_class_clause, + [217684] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + ACTIONS(9502), 1, + anon_sym_COMMA, + STATE(5975), 1, + aux_sym_gnu_asm_output_operand_list_repeat1, + ACTIONS(9505), 2, + anon_sym_RPAREN, + anon_sym_COLON, + [217698] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(41), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7111), 1, - anon_sym_LPAREN2, - ACTIONS(7892), 1, - anon_sym_LBRACK, - STATE(5148), 1, - sym_parameter_list, - STATE(5060), 2, + ACTIONS(9148), 1, + anon_sym_EQ, + STATE(5966), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(7890), 3, - anon_sym_COMMA, - anon_sym_RPAREN, + [217712] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4476), 1, + anon_sym_COLON_COLON, + ACTIONS(6151), 1, + anon_sym_LT, + ACTIONS(9507), 1, anon_sym_SEMI, - [186172] = 6, + STATE(3608), 1, + sym_template_argument_list, + [217728] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7111), 1, - anon_sym_LPAREN2, - ACTIONS(7473), 1, - anon_sym_LBRACK, - STATE(3862), 1, - sym_parameter_list, - STATE(4684), 1, - sym__function_declarator_seq, - ACTIONS(7500), 5, + ACTIONS(41), 1, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [186195] = 9, + ACTIONS(9509), 1, + anon_sym_EQ, + STATE(5578), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [217742] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + ACTIONS(41), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7111), 1, - anon_sym_LPAREN2, - ACTIONS(7892), 1, - anon_sym_LBRACK, - ACTIONS(7894), 1, - anon_sym_COMMA, - ACTIONS(7896), 1, - anon_sym_SEMI, - STATE(5148), 1, - sym_parameter_list, - STATE(5439), 1, - aux_sym_type_definition_repeat2, - STATE(5060), 2, + ACTIONS(9224), 1, + anon_sym_EQ, + STATE(5978), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [186224] = 9, + [217756] = 5, + ACTIONS(7929), 1, + sym_comment, + ACTIONS(9511), 1, + anon_sym_DQUOTE, + ACTIONS(9513), 1, + aux_sym_string_literal_token1, + ACTIONS(9515), 1, + sym_escape_sequence, + STATE(6154), 1, + aux_sym_string_literal_repeat1, + [217772] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + ACTIONS(41), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7111), 1, - anon_sym_LPAREN2, - ACTIONS(7892), 1, - anon_sym_LBRACK, - ACTIONS(7894), 1, - anon_sym_COMMA, - ACTIONS(7898), 1, - anon_sym_SEMI, - STATE(5148), 1, - sym_parameter_list, - STATE(5590), 1, - aux_sym_type_definition_repeat2, - STATE(5060), 2, + ACTIONS(9517), 1, + anon_sym_EQ, + STATE(5578), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [186253] = 8, + [217786] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(7477), 1, - anon_sym_COLON_COLON, - ACTIONS(7900), 1, + ACTIONS(4451), 1, + anon_sym_LT, + ACTIONS(9519), 1, sym_identifier, - STATE(4590), 1, - sym__scope_resolution, - STATE(6449), 1, - sym_qualified_identifier, - STATE(6159), 3, - sym_decltype, + STATE(1383), 1, + sym_template_parameter_list, + STATE(3560), 1, sym_template_type, - sym_dependent_type_identifier, - [186280] = 9, + [217802] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7111), 1, - anon_sym_LPAREN2, - ACTIONS(7892), 1, - anon_sym_LBRACK, - ACTIONS(7894), 1, + ACTIONS(6672), 1, anon_sym_COMMA, - ACTIONS(7902), 1, - anon_sym_SEMI, - STATE(5148), 1, - sym_parameter_list, - STATE(5607), 1, - aux_sym_type_definition_repeat2, - STATE(5060), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [186309] = 5, + ACTIONS(9492), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9521), 1, + anon_sym_GT2, + STATE(6384), 1, + aux_sym_template_argument_list_repeat1, + [217818] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7904), 1, - sym_identifier, - ACTIONS(7908), 1, - sym_system_lib_string, - STATE(6604), 2, - sym_preproc_call_expression, - sym_string_literal, - ACTIONS(7906), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [186330] = 5, + ACTIONS(8242), 1, + anon_sym_LBRACE, + STATE(5530), 1, + sym_compound_statement, + ACTIONS(8517), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK, + [217832] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4917), 1, - anon_sym_AMP, - ACTIONS(7910), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7912), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(4919), 4, - anon_sym_LPAREN2, - anon_sym_STAR, + ACTIONS(4878), 1, + anon_sym_COLON, + ACTIONS(6458), 1, anon_sym_LBRACE, - anon_sym_LBRACK, - [186351] = 10, + STATE(3955), 1, + sym_field_declaration_list, + STATE(6913), 1, + sym_base_class_clause, + [217848] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(5570), 1, - anon_sym_COLON_COLON, - ACTIONS(7914), 1, + ACTIONS(9523), 1, sym_identifier, - ACTIONS(7916), 1, - anon_sym_template, - STATE(2744), 1, - sym_template_type, - STATE(2749), 1, - sym_dependent_type_identifier, - STATE(2859), 1, - sym_qualified_type_identifier, - STATE(4989), 1, - sym__scope_resolution, - STATE(6159), 1, - sym_decltype, - [186382] = 10, + ACTIONS(9525), 1, + anon_sym_COMMA, + ACTIONS(9527), 1, + anon_sym_RBRACE, + STATE(6503), 1, + sym_enumerator, + [217864] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(6612), 1, + ACTIONS(4476), 1, anon_sym_COLON_COLON, - ACTIONS(7918), 1, - sym_identifier, - ACTIONS(7920), 1, - anon_sym_template, - STATE(2194), 1, - sym_qualified_type_identifier, - STATE(2288), 1, - sym_template_type, - STATE(2298), 1, - sym_dependent_type_identifier, - STATE(4990), 1, - sym__scope_resolution, - STATE(6159), 1, - sym_decltype, - [186413] = 6, + ACTIONS(6151), 1, + anon_sym_LT, + ACTIONS(9529), 1, + anon_sym_SEMI, + STATE(3608), 1, + sym_template_argument_list, + [217880] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7111), 1, + ACTIONS(7668), 1, + anon_sym_LBRACE, + ACTIONS(9498), 1, anon_sym_LPAREN2, - ACTIONS(7473), 1, - anon_sym_LBRACK, - STATE(3862), 1, - sym_parameter_list, - STATE(4684), 1, - sym__function_declarator_seq, - ACTIONS(7502), 5, - anon_sym_LBRACK_LBRACK, + STATE(3790), 1, + sym_requirement_seq, + STATE(6686), 1, + sym_requires_parameter_list, + [217896] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(49), 1, + anon_sym_LBRACE, + ACTIONS(8645), 1, anon_sym_COLON, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [186436] = 9, + STATE(6430), 1, + sym_compound_statement, + STATE(6868), 1, + sym_field_initializer_list, + [217912] = 5, + ACTIONS(7929), 1, + sym_comment, + ACTIONS(9531), 1, + anon_sym_LF, + ACTIONS(9533), 1, + anon_sym_LPAREN, + ACTIONS(9535), 1, + sym_preproc_arg, + STATE(6908), 1, + sym_preproc_params, + [217928] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + ACTIONS(41), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7111), 1, - anon_sym_LPAREN2, - ACTIONS(7892), 1, - anon_sym_LBRACK, - ACTIONS(7894), 1, - anon_sym_COMMA, - ACTIONS(7922), 1, - anon_sym_SEMI, - STATE(5148), 1, - sym_parameter_list, - STATE(5381), 1, - aux_sym_type_definition_repeat2, - STATE(5060), 2, + ACTIONS(9126), 1, + anon_sym_EQ, + STATE(5981), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [186465] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(7477), 1, - anon_sym_COLON_COLON, - ACTIONS(7924), 1, - sym_identifier, - STATE(4590), 1, - sym__scope_resolution, - STATE(6149), 1, - sym_qualified_identifier, - STATE(6159), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - [186492] = 9, + [217942] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + ACTIONS(41), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7111), 1, - anon_sym_LPAREN2, - ACTIONS(7892), 1, - anon_sym_LBRACK, - ACTIONS(7894), 1, - anon_sym_COMMA, - ACTIONS(7926), 1, - anon_sym_SEMI, - STATE(5148), 1, - sym_parameter_list, - STATE(5515), 1, - aux_sym_type_definition_repeat2, - STATE(5060), 2, + ACTIONS(9537), 1, + anon_sym_EQ, + STATE(5578), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [186521] = 9, + [217956] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7111), 1, + ACTIONS(8242), 1, + anon_sym_LBRACE, + STATE(5528), 1, + sym_compound_statement, + ACTIONS(8517), 2, anon_sym_LPAREN2, - ACTIONS(7892), 1, anon_sym_LBRACK, - ACTIONS(7894), 1, + [217970] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9539), 1, anon_sym_COMMA, - ACTIONS(7928), 1, - anon_sym_SEMI, - STATE(5148), 1, - sym_parameter_list, - STATE(5500), 1, - aux_sym_type_definition_repeat2, - STATE(5060), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [186550] = 8, + STATE(6084), 1, + aux_sym_gnu_asm_clobber_list_repeat1, + ACTIONS(9541), 2, + anon_sym_RPAREN, + anon_sym_COLON, + [217984] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(7477), 1, - anon_sym_COLON_COLON, - ACTIONS(7930), 1, - sym_identifier, - STATE(4590), 1, - sym__scope_resolution, - STATE(6266), 1, - sym_qualified_identifier, - STATE(6159), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - [186577] = 10, + ACTIONS(6672), 1, + anon_sym_COMMA, + ACTIONS(9492), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9543), 1, + anon_sym_GT2, + STATE(6442), 1, + aux_sym_template_argument_list_repeat1, + [218000] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(5502), 1, - anon_sym_COLON_COLON, - ACTIONS(7920), 1, - anon_sym_template, - ACTIONS(7932), 1, + ACTIONS(4451), 1, + anon_sym_LT, + ACTIONS(9519), 1, sym_identifier, - STATE(2194), 1, - sym_qualified_type_identifier, - STATE(2288), 1, + STATE(1381), 1, + sym_template_parameter_list, + STATE(3560), 1, sym_template_type, - STATE(2298), 1, - sym_dependent_type_identifier, - STATE(4997), 1, - sym__scope_resolution, - STATE(6159), 1, - sym_decltype, - [186608] = 6, + [218016] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3814), 1, - anon_sym_COLON_COLON, - ACTIONS(5413), 1, - anon_sym_LT, - STATE(2198), 1, - sym_template_argument_list, - ACTIONS(3838), 2, - anon_sym_LBRACK, - anon_sym_COLON, - ACTIONS(3843), 4, - anon_sym_RPAREN, + ACTIONS(8248), 1, + anon_sym_LBRACE, + STATE(2980), 1, + sym_compound_statement, + ACTIONS(8517), 2, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - [186631] = 5, + anon_sym_LBRACK, + [218030] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7934), 1, - sym_identifier, - ACTIONS(7936), 1, - sym_system_lib_string, - STATE(6189), 2, - sym_preproc_call_expression, - sym_string_literal, - ACTIONS(7906), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [186652] = 3, + ACTIONS(8220), 1, + anon_sym_LBRACE, + STATE(3434), 1, + sym_compound_statement, + ACTIONS(8517), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK, + [218044] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3858), 1, - anon_sym_LBRACK, - ACTIONS(3860), 8, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, + ACTIONS(4876), 1, anon_sym_LBRACE, - anon_sym_EQ, + ACTIONS(4878), 1, anon_sym_COLON, - anon_sym_try, - [186669] = 10, + STATE(2729), 1, + sym_field_declaration_list, + STATE(6831), 1, + sym_base_class_clause, + [218060] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(6626), 1, - anon_sym_COLON_COLON, - ACTIONS(7938), 1, - sym_identifier, - ACTIONS(7940), 1, - anon_sym_template, - STATE(1977), 1, - sym_dependent_type_identifier, - STATE(1980), 1, - sym_template_type, - STATE(1990), 1, - sym_qualified_type_identifier, - STATE(5001), 1, - sym__scope_resolution, - STATE(6159), 1, - sym_decltype, - [186700] = 5, + ACTIONS(9545), 1, + anon_sym_SEMI, + ACTIONS(9547), 1, + anon_sym_DASH_GT, + ACTIONS(9549), 1, + anon_sym_noexcept, + STATE(7667), 1, + sym_trailing_return_type, + [218076] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7942), 1, - sym_identifier, - ACTIONS(7944), 1, - sym_system_lib_string, - STATE(6357), 2, - sym_preproc_call_expression, - sym_string_literal, - ACTIONS(7906), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [186721] = 10, + ACTIONS(8248), 1, + anon_sym_LBRACE, + STATE(2946), 1, + sym_compound_statement, + ACTIONS(8517), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK, + [218090] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(6907), 1, - anon_sym_COLON_COLON, - ACTIONS(7946), 1, - sym_identifier, - ACTIONS(7948), 1, - anon_sym_template, - STATE(2194), 1, - sym_qualified_type_identifier, - STATE(2288), 1, - sym_template_type, - STATE(2298), 1, - sym_dependent_type_identifier, - STATE(5003), 1, - sym__scope_resolution, - STATE(6159), 1, - sym_decltype, - [186752] = 3, + ACTIONS(8242), 1, + anon_sym_LBRACE, + STATE(5466), 1, + sym_compound_statement, + ACTIONS(8517), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK, + [218104] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3896), 1, - anon_sym_LBRACK, - ACTIONS(3898), 8, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, + ACTIONS(41), 1, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, + ACTIONS(9190), 1, anon_sym_EQ, - anon_sym_COLON, - anon_sym_try, - [186769] = 9, + STATE(5992), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [218118] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + ACTIONS(41), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7111), 1, - anon_sym_LPAREN2, - ACTIONS(7892), 1, - anon_sym_LBRACK, - ACTIONS(7894), 1, - anon_sym_COMMA, - ACTIONS(7950), 1, - anon_sym_SEMI, - STATE(5148), 1, - sym_parameter_list, - STATE(5413), 1, - aux_sym_type_definition_repeat2, - STATE(5060), 2, + ACTIONS(9551), 1, + anon_sym_EQ, + STATE(5578), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [186798] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(2928), 1, - anon_sym_COLON_COLON, - ACTIONS(7884), 1, - sym_identifier, - STATE(3134), 1, - sym_template_type, - STATE(3142), 1, - sym_qualified_type_identifier, - STATE(3144), 1, - sym_dependent_type_identifier, - STATE(5006), 1, - sym__scope_resolution, - STATE(6159), 1, - sym_decltype, - [186829] = 8, + [218132] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(7477), 1, - anon_sym_COLON_COLON, - ACTIONS(7952), 1, - sym_identifier, - STATE(4590), 1, - sym__scope_resolution, - STATE(6245), 1, - sym_qualified_identifier, - STATE(6159), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - [186856] = 9, + ACTIONS(4878), 1, + anon_sym_COLON, + ACTIONS(5149), 1, + anon_sym_LBRACE, + STATE(3245), 1, + sym_field_declaration_list, + STATE(6704), 1, + sym_base_class_clause, + [218148] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + ACTIONS(41), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7111), 1, - anon_sym_LPAREN2, - ACTIONS(7892), 1, - anon_sym_LBRACK, - ACTIONS(7894), 1, - anon_sym_COMMA, - ACTIONS(7954), 1, - anon_sym_SEMI, - STATE(5148), 1, - sym_parameter_list, - STATE(5608), 1, - aux_sym_type_definition_repeat2, - STATE(5060), 2, + ACTIONS(9178), 1, + anon_sym_EQ, + STATE(6100), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [186885] = 6, + [218162] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7111), 1, + ACTIONS(6308), 1, anon_sym_LPAREN2, - ACTIONS(7473), 1, - anon_sym_LBRACK, - STATE(3862), 1, - sym_parameter_list, - STATE(4684), 1, - sym__function_declarator_seq, - ACTIONS(7471), 5, - anon_sym_LBRACK_LBRACK, + STATE(6800), 1, + sym_argument_list, + ACTIONS(9553), 2, + anon_sym_COMMA, + anon_sym_RBRACK_RBRACK, + [218176] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4878), 1, anon_sym_COLON, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [186908] = 6, + ACTIONS(7626), 1, + anon_sym_LBRACE, + STATE(4744), 1, + sym_field_declaration_list, + STATE(6687), 1, + sym_base_class_clause, + [218192] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7111), 1, - anon_sym_LPAREN2, - ACTIONS(7473), 1, - anon_sym_LBRACK, - STATE(3862), 1, - sym_parameter_list, - STATE(4684), 1, - sym__function_declarator_seq, - ACTIONS(7504), 5, - anon_sym_LBRACK_LBRACK, + ACTIONS(6672), 1, + anon_sym_COMMA, + ACTIONS(9492), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9555), 1, + anon_sym_GT2, + STATE(6496), 1, + aux_sym_template_argument_list_repeat1, + [218208] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(49), 1, + anon_sym_LBRACE, + ACTIONS(8645), 1, anon_sym_COLON, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [186931] = 6, + STATE(6321), 1, + sym_compound_statement, + STATE(6825), 1, + sym_field_initializer_list, + [218224] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7111), 1, - anon_sym_LPAREN2, - ACTIONS(7473), 1, - anon_sym_LBRACK, - STATE(3862), 1, - sym_parameter_list, - STATE(4684), 1, - sym__function_declarator_seq, - ACTIONS(7506), 5, - anon_sym_LBRACK_LBRACK, + ACTIONS(4878), 1, anon_sym_COLON, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [186954] = 9, + ACTIONS(5270), 1, + anon_sym_LBRACE, + STATE(3090), 1, + sym_field_declaration_list, + STATE(6889), 1, + sym_base_class_clause, + [218240] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7111), 1, - anon_sym_LPAREN2, - ACTIONS(7892), 1, - anon_sym_LBRACK, - ACTIONS(7894), 1, - anon_sym_COMMA, - ACTIONS(7956), 1, - anon_sym_SEMI, - STATE(5148), 1, - sym_parameter_list, - STATE(5539), 1, - aux_sym_type_definition_repeat2, - STATE(5060), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [186983] = 6, + ACTIONS(49), 1, + anon_sym_LBRACE, + ACTIONS(8645), 1, + anon_sym_COLON, + STATE(6222), 1, + sym_compound_statement, + STATE(6851), 1, + sym_field_initializer_list, + [218256] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7111), 1, + ACTIONS(9498), 1, anon_sym_LPAREN2, - ACTIONS(7473), 1, - anon_sym_LBRACK, - STATE(3862), 1, - sym_parameter_list, - STATE(4684), 1, - sym__function_declarator_seq, - ACTIONS(7516), 5, - anon_sym_LBRACK_LBRACK, + ACTIONS(9557), 1, + anon_sym_LBRACE, + STATE(2180), 1, + sym_requirement_seq, + STATE(6853), 1, + sym_requires_parameter_list, + [218272] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4878), 1, anon_sym_COLON, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [187006] = 8, + ACTIONS(5270), 1, + anon_sym_LBRACE, + STATE(3089), 1, + sym_field_declaration_list, + STATE(6886), 1, + sym_base_class_clause, + [218288] = 5, + ACTIONS(7929), 1, + sym_comment, + ACTIONS(9559), 1, + anon_sym_DQUOTE, + ACTIONS(9561), 1, + aux_sym_string_literal_token1, + ACTIONS(9563), 1, + sym_escape_sequence, + STATE(6156), 1, + aux_sym_string_literal_repeat1, + [218304] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(7477), 1, - anon_sym_COLON_COLON, - ACTIONS(7958), 1, + ACTIONS(4451), 1, + anon_sym_LT, + ACTIONS(9519), 1, sym_identifier, - STATE(4590), 1, - sym__scope_resolution, - STATE(6531), 1, - sym_qualified_identifier, - STATE(6159), 3, - sym_decltype, + STATE(1386), 1, + sym_template_parameter_list, + STATE(3560), 1, sym_template_type, - sym_dependent_type_identifier, - [187033] = 5, + [218320] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7960), 1, - sym_identifier, - ACTIONS(7962), 1, - sym_system_lib_string, - STATE(6496), 2, - sym_preproc_call_expression, - sym_string_literal, - ACTIONS(7906), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [187054] = 9, + ACTIONS(4878), 1, + anon_sym_COLON, + ACTIONS(6458), 1, + anon_sym_LBRACE, + STATE(3977), 1, + sym_field_declaration_list, + STATE(6924), 1, + sym_base_class_clause, + [218336] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7111), 1, + ACTIONS(49), 1, + anon_sym_LBRACE, + STATE(2196), 1, + sym_compound_statement, + ACTIONS(8517), 2, anon_sym_LPAREN2, - ACTIONS(7892), 1, anon_sym_LBRACK, - ACTIONS(7894), 1, - anon_sym_COMMA, - ACTIONS(7964), 1, - anon_sym_SEMI, - STATE(5148), 1, - sym_parameter_list, - STATE(5452), 1, - aux_sym_type_definition_repeat2, - STATE(5060), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [187083] = 9, + [218350] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7111), 1, - anon_sym_LPAREN2, - ACTIONS(7892), 1, - anon_sym_LBRACK, - ACTIONS(7894), 1, - anon_sym_COMMA, - ACTIONS(7966), 1, - anon_sym_SEMI, - STATE(5148), 1, - sym_parameter_list, - STATE(5485), 1, - aux_sym_type_definition_repeat2, - STATE(5060), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [187112] = 9, + ACTIONS(4878), 1, + anon_sym_COLON, + ACTIONS(5149), 1, + anon_sym_LBRACE, + STATE(3278), 1, + sym_field_declaration_list, + STATE(6717), 1, + sym_base_class_clause, + [218366] = 5, + ACTIONS(7929), 1, + sym_comment, + ACTIONS(9513), 1, + aux_sym_string_literal_token1, + ACTIONS(9515), 1, + sym_escape_sequence, + ACTIONS(9565), 1, + anon_sym_DQUOTE, + STATE(6154), 1, + aux_sym_string_literal_repeat1, + [218382] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7111), 1, - anon_sym_LPAREN2, - ACTIONS(7892), 1, - anon_sym_LBRACK, - ACTIONS(7894), 1, - anon_sym_COMMA, - ACTIONS(7968), 1, - anon_sym_SEMI, - STATE(5148), 1, - sym_parameter_list, - STATE(5657), 1, - aux_sym_type_definition_repeat2, - STATE(5060), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [187141] = 7, + ACTIONS(4878), 1, + anon_sym_COLON, + ACTIONS(7626), 1, + anon_sym_LBRACE, + STATE(4728), 1, + sym_field_declaration_list, + STATE(6691), 1, + sym_base_class_clause, + [218398] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7111), 1, - anon_sym_LPAREN2, - ACTIONS(7892), 1, - anon_sym_LBRACK, - STATE(5148), 1, - sym_parameter_list, - STATE(5060), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(7970), 3, + ACTIONS(4878), 1, + anon_sym_COLON, + ACTIONS(5149), 1, + anon_sym_LBRACE, + STATE(3279), 1, + sym_field_declaration_list, + STATE(6722), 1, + sym_base_class_clause, + [218414] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9567), 1, anon_sym_COMMA, + STATE(6120), 1, + aux_sym_gnu_asm_output_operand_list_repeat1, + ACTIONS(9569), 2, anon_sym_RPAREN, - anon_sym_SEMI, - [187166] = 10, + anon_sym_COLON, + [218428] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(6568), 1, - anon_sym_COLON_COLON, - ACTIONS(7916), 1, - anon_sym_template, - ACTIONS(7972), 1, - sym_identifier, - STATE(2744), 1, - sym_template_type, - STATE(2749), 1, - sym_dependent_type_identifier, - STATE(2859), 1, - sym_qualified_type_identifier, - STATE(5020), 1, - sym__scope_resolution, - STATE(6159), 1, - sym_decltype, - [187197] = 9, + ACTIONS(4878), 1, + anon_sym_COLON, + ACTIONS(7626), 1, + anon_sym_LBRACE, + STATE(4752), 1, + sym_field_declaration_list, + STATE(6642), 1, + sym_base_class_clause, + [218444] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7111), 1, + ACTIONS(7688), 1, + anon_sym_LBRACE, + ACTIONS(9498), 1, anon_sym_LPAREN2, - ACTIONS(7892), 1, - anon_sym_LBRACK, - ACTIONS(7894), 1, - anon_sym_COMMA, - ACTIONS(7974), 1, - anon_sym_SEMI, - STATE(5148), 1, - sym_parameter_list, - STATE(5403), 1, - aux_sym_type_definition_repeat2, - STATE(5060), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [187226] = 10, + STATE(3612), 1, + sym_requirement_seq, + STATE(6766), 1, + sym_requires_parameter_list, + [218460] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(6524), 1, - anon_sym_COLON_COLON, - ACTIONS(7976), 1, - sym_identifier, - ACTIONS(7978), 1, - anon_sym_template, - STATE(1954), 1, - sym_template_type, - STATE(1957), 1, - sym_dependent_type_identifier, - STATE(1982), 1, - sym_qualified_type_identifier, - STATE(5022), 1, - sym__scope_resolution, - STATE(6159), 1, - sym_decltype, - [187257] = 4, + ACTIONS(49), 1, + anon_sym_LBRACE, + STATE(2186), 1, + sym_compound_statement, + ACTIONS(8517), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK, + [218474] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7982), 1, - anon_sym_AMP, - ACTIONS(7984), 2, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(7980), 6, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_LT, + ACTIONS(4878), 1, + anon_sym_COLON, + ACTIONS(6458), 1, anon_sym_LBRACE, - anon_sym_LBRACK, - [187276] = 10, + STATE(3979), 1, + sym_field_declaration_list, + STATE(6926), 1, + sym_base_class_clause, + [218490] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(5576), 1, - anon_sym_COLON_COLON, - ACTIONS(7986), 1, - sym_identifier, - ACTIONS(7988), 1, - anon_sym_template, - STATE(4064), 1, - sym_template_type, - STATE(4065), 1, - sym_dependent_type_identifier, - STATE(4081), 1, - sym_qualified_type_identifier, - STATE(5024), 1, - sym__scope_resolution, - STATE(6159), 1, - sym_decltype, - [187307] = 10, + ACTIONS(8244), 1, + anon_sym_LBRACE, + STATE(3806), 1, + sym_compound_statement, + ACTIONS(8517), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK, + [218504] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(6582), 1, - anon_sym_COLON_COLON, - ACTIONS(7990), 1, - sym_identifier, - ACTIONS(7992), 1, - anon_sym_template, - STATE(2153), 1, - sym_template_type, - STATE(2154), 1, - sym_dependent_type_identifier, - STATE(2164), 1, - sym_qualified_type_identifier, - STATE(5025), 1, - sym__scope_resolution, - STATE(6159), 1, - sym_decltype, - [187338] = 6, + ACTIONS(4876), 1, + anon_sym_LBRACE, + ACTIONS(4878), 1, + anon_sym_COLON, + STATE(2830), 1, + sym_field_declaration_list, + STATE(6856), 1, + sym_base_class_clause, + [218520] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7111), 1, + ACTIONS(8244), 1, + anon_sym_LBRACE, + STATE(3796), 1, + sym_compound_statement, + ACTIONS(8517), 2, anon_sym_LPAREN2, - ACTIONS(7473), 1, anon_sym_LBRACK, - STATE(3862), 1, - sym_parameter_list, - STATE(4684), 1, - sym__function_declarator_seq, - ACTIONS(7508), 5, - anon_sym_LBRACK_LBRACK, + [218534] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(49), 1, + anon_sym_LBRACE, + ACTIONS(8645), 1, anon_sym_COLON, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [187361] = 9, + STATE(6256), 1, + sym_compound_statement, + STATE(6824), 1, + sym_field_initializer_list, + [218550] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + ACTIONS(41), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7111), 1, - anon_sym_LPAREN2, - ACTIONS(7892), 1, - anon_sym_LBRACK, - ACTIONS(7894), 1, - anon_sym_COMMA, - ACTIONS(7994), 1, - anon_sym_SEMI, - STATE(5148), 1, - sym_parameter_list, - STATE(5529), 1, - aux_sym_type_definition_repeat2, - STATE(5060), 2, + ACTIONS(9218), 1, + anon_sym_EQ, + STATE(6068), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [187390] = 9, + [218564] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7111), 1, + ACTIONS(8220), 1, + anon_sym_LBRACE, + STATE(3457), 1, + sym_compound_statement, + ACTIONS(8517), 2, anon_sym_LPAREN2, - ACTIONS(7892), 1, anon_sym_LBRACK, - ACTIONS(7894), 1, - anon_sym_COMMA, - ACTIONS(7996), 1, - anon_sym_SEMI, - STATE(5148), 1, - sym_parameter_list, - STATE(5584), 1, - aux_sym_type_definition_repeat2, - STATE(5060), 2, + [218578] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(41), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9571), 1, + anon_sym_EQ, + STATE(5578), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [187419] = 10, + [218592] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(6887), 1, - anon_sym_COLON_COLON, - ACTIONS(7998), 1, - sym_identifier, - ACTIONS(8000), 1, - anon_sym_template, - STATE(2506), 1, - sym_qualified_type_identifier, - STATE(2531), 1, - sym_template_type, - STATE(2558), 1, - sym_dependent_type_identifier, - STATE(5029), 1, - sym__scope_resolution, - STATE(6159), 1, - sym_decltype, - [187450] = 9, + ACTIONS(4878), 1, + anon_sym_COLON, + ACTIONS(6195), 1, + anon_sym_LBRACE, + STATE(3728), 1, + sym_field_declaration_list, + STATE(6607), 1, + sym_base_class_clause, + [218608] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7111), 1, - anon_sym_LPAREN2, - ACTIONS(7892), 1, - anon_sym_LBRACK, - ACTIONS(7894), 1, - anon_sym_COMMA, - ACTIONS(8002), 1, + ACTIONS(4476), 1, + anon_sym_COLON_COLON, + ACTIONS(6151), 1, + anon_sym_LT, + ACTIONS(9573), 1, anon_sym_SEMI, - STATE(5148), 1, - sym_parameter_list, - STATE(5577), 1, - aux_sym_type_definition_repeat2, - STATE(5060), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [187479] = 8, + STATE(3608), 1, + sym_template_argument_list, + [218624] = 5, + ACTIONS(7929), 1, + sym_comment, + ACTIONS(9533), 1, + anon_sym_LPAREN, + ACTIONS(9575), 1, + anon_sym_LF, + ACTIONS(9577), 1, + sym_preproc_arg, + STATE(6751), 1, + sym_preproc_params, + [218640] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(7477), 1, - anon_sym_COLON_COLON, - ACTIONS(8004), 1, + ACTIONS(4451), 1, + anon_sym_LT, + ACTIONS(9519), 1, sym_identifier, - STATE(4590), 1, - sym__scope_resolution, - STATE(6187), 1, - sym_qualified_identifier, - STATE(6159), 3, - sym_decltype, + STATE(1385), 1, + sym_template_parameter_list, + STATE(3560), 1, sym_template_type, - sym_dependent_type_identifier, - [187506] = 9, + [218656] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7111), 1, - anon_sym_LPAREN2, - ACTIONS(7892), 1, - anon_sym_LBRACK, - ACTIONS(7894), 1, + ACTIONS(6672), 1, anon_sym_COMMA, - ACTIONS(8006), 1, - anon_sym_SEMI, - STATE(5148), 1, - sym_parameter_list, - STATE(5570), 1, - aux_sym_type_definition_repeat2, - STATE(5060), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [187535] = 3, + ACTIONS(9492), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9579), 1, + anon_sym_GT2, + STATE(6389), 1, + aux_sym_template_argument_list_repeat1, + [218672] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3884), 1, - anon_sym_LBRACK, - ACTIONS(3886), 8, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, + ACTIONS(4878), 1, anon_sym_COLON, - anon_sym_try, - [187552] = 10, + ACTIONS(7626), 1, + anon_sym_LBRACE, + STATE(4730), 1, + sym_field_declaration_list, + STATE(6703), 1, + sym_base_class_clause, + [218688] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(3916), 1, - anon_sym_COLON_COLON, - ACTIONS(8008), 1, - sym_identifier, - ACTIONS(8010), 1, - anon_sym_template, - STATE(3134), 1, - sym_template_type, - STATE(3142), 1, - sym_qualified_type_identifier, - STATE(3144), 1, - sym_dependent_type_identifier, - STATE(5034), 1, - sym__scope_resolution, - STATE(6159), 1, - sym_decltype, - [187583] = 10, + ACTIONS(4878), 1, + anon_sym_COLON, + ACTIONS(5270), 1, + anon_sym_LBRACE, + STATE(3114), 1, + sym_field_declaration_list, + STATE(6882), 1, + sym_base_class_clause, + [218704] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(996), 1, - anon_sym_template, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(5598), 1, - anon_sym_COLON_COLON, - ACTIONS(7884), 1, - sym_identifier, - STATE(3134), 1, - sym_template_type, - STATE(3144), 1, - sym_dependent_type_identifier, - STATE(3209), 1, - sym_qualified_type_identifier, - STATE(5035), 1, - sym__scope_resolution, - STATE(6159), 1, - sym_decltype, - [187614] = 10, + ACTIONS(9581), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [218714] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(6546), 1, - anon_sym_COLON_COLON, - ACTIONS(8012), 1, - sym_identifier, - ACTIONS(8014), 1, - anon_sym_template, - STATE(2171), 1, - sym_dependent_type_identifier, - STATE(2172), 1, - sym_template_type, - STATE(2241), 1, - sym_qualified_type_identifier, - STATE(5036), 1, - sym__scope_resolution, - STATE(6159), 1, - sym_decltype, - [187645] = 7, + ACTIONS(4878), 1, + anon_sym_COLON, + ACTIONS(7626), 1, + anon_sym_LBRACE, + STATE(4741), 1, + sym_field_declaration_list, + STATE(6706), 1, + sym_base_class_clause, + [218730] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7111), 1, - anon_sym_LPAREN2, - ACTIONS(7892), 1, - anon_sym_LBRACK, - STATE(5148), 1, - sym_parameter_list, - STATE(5060), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(8016), 3, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(9581), 4, anon_sym_SEMI, - [187670] = 9, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [218740] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7111), 1, + ACTIONS(9583), 4, anon_sym_LPAREN2, - ACTIONS(7892), 1, - anon_sym_LBRACK, - ACTIONS(7894), 1, - anon_sym_COMMA, - ACTIONS(8018), 1, - anon_sym_SEMI, - STATE(5148), 1, - sym_parameter_list, - STATE(5434), 1, - aux_sym_type_definition_repeat2, - STATE(5060), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [187699] = 3, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + [218750] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3892), 1, - anon_sym_LBRACK, - ACTIONS(3894), 8, + ACTIONS(9585), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9587), 1, anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, + ACTIONS(9589), 1, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_try, - [187716] = 10, + STATE(6577), 1, + aux_sym_base_class_clause_repeat1, + [218766] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1555), 1, - anon_sym_decltype, - ACTIONS(4641), 1, - anon_sym_COLON_COLON, - ACTIONS(8008), 1, - sym_identifier, - ACTIONS(8010), 1, - anon_sym_template, - STATE(3134), 1, - sym_template_type, - STATE(3144), 1, - sym_dependent_type_identifier, - STATE(3209), 1, - sym_qualified_type_identifier, - STATE(5040), 1, - sym__scope_resolution, - STATE(6159), 1, - sym_decltype, - [187747] = 4, + ACTIONS(6672), 1, + anon_sym_COMMA, + ACTIONS(9492), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9591), 1, + anon_sym_GT2, + STATE(6570), 1, + aux_sym_template_argument_list_repeat1, + [218782] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4822), 1, - anon_sym_AMP, - ACTIONS(7912), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(4824), 6, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PIPE_PIPE, + ACTIONS(6672), 1, + anon_sym_COMMA, + ACTIONS(9492), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9593), 1, + anon_sym_GT2, + STATE(6513), 1, + aux_sym_template_argument_list_repeat1, + [218798] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(49), 1, anon_sym_LBRACE, + STATE(2178), 1, + sym_compound_statement, + ACTIONS(8517), 2, + anon_sym_LPAREN2, anon_sym_LBRACK, - anon_sym_or, - [187766] = 3, + [218812] = 5, + ACTIONS(7929), 1, + sym_comment, + ACTIONS(9513), 1, + aux_sym_string_literal_token1, + ACTIONS(9515), 1, + sym_escape_sequence, + ACTIONS(9595), 1, + anon_sym_DQUOTE, + STATE(6154), 1, + aux_sym_string_literal_repeat1, + [218828] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3866), 1, - anon_sym_LBRACK, - ACTIONS(3868), 8, - anon_sym_COMMA, + ACTIONS(9498), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, + ACTIONS(9597), 1, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_try, - [187783] = 6, + STATE(5514), 1, + sym_requirement_seq, + STATE(6746), 1, + sym_requires_parameter_list, + [218844] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3814), 1, - anon_sym_COLON_COLON, - ACTIONS(5413), 1, - anon_sym_LT, - STATE(2198), 1, - sym_template_argument_list, - ACTIONS(6476), 2, - anon_sym_LBRACK, + ACTIONS(4878), 1, anon_sym_COLON, - ACTIONS(3988), 4, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - [187806] = 7, + ACTIONS(5045), 1, + anon_sym_LBRACE, + STATE(2826), 1, + sym_field_declaration_list, + STATE(6649), 1, + sym_base_class_clause, + [218860] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7111), 1, - anon_sym_LPAREN2, - ACTIONS(7892), 1, - anon_sym_LBRACK, - STATE(5148), 1, - sym_parameter_list, - STATE(5060), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(8020), 3, + ACTIONS(9599), 1, + sym_identifier, + ACTIONS(9601), 3, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_SEMI, - [187831] = 3, + anon_sym_GT2, + [218872] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3902), 1, - anon_sym_LBRACK, - ACTIONS(3904), 8, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, + ACTIONS(4878), 1, + anon_sym_COLON, + ACTIONS(6195), 1, anon_sym_LBRACE, - anon_sym_EQ, + STATE(3770), 1, + sym_field_declaration_list, + STATE(6734), 1, + sym_base_class_clause, + [218888] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4878), 1, anon_sym_COLON, - anon_sym_try, - [187848] = 8, + ACTIONS(5045), 1, + anon_sym_LBRACE, + STATE(2789), 1, + sym_field_declaration_list, + STATE(6631), 1, + sym_base_class_clause, + [218904] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7111), 1, - anon_sym_LPAREN2, - ACTIONS(7280), 1, - anon_sym_LBRACK, - ACTIONS(8022), 1, - anon_sym_SEMI, - STATE(3490), 1, - sym_parameter_list, - STATE(4901), 1, - sym__function_declarator_seq, - STATE(4874), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [187874] = 8, + ACTIONS(4878), 1, + anon_sym_COLON, + ACTIONS(5045), 1, + anon_sym_LBRACE, + STATE(2825), 1, + sym_field_declaration_list, + STATE(6661), 1, + sym_base_class_clause, + [218920] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7111), 1, - anon_sym_LPAREN2, - ACTIONS(7117), 1, - anon_sym_LBRACK, - ACTIONS(7703), 1, - anon_sym_RPAREN, - STATE(3490), 1, - sym_parameter_list, - STATE(4960), 1, - sym__function_declarator_seq, - STATE(5138), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [187900] = 8, + ACTIONS(4878), 1, + anon_sym_COLON, + ACTIONS(6195), 1, + anon_sym_LBRACE, + STATE(3685), 1, + sym_field_declaration_list, + STATE(6754), 1, + sym_base_class_clause, + [218936] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7111), 1, - anon_sym_LPAREN2, - ACTIONS(7117), 1, - anon_sym_LBRACK, - ACTIONS(7729), 1, - anon_sym_RPAREN, - STATE(3490), 1, - sym_parameter_list, - STATE(4960), 1, - sym__function_declarator_seq, - STATE(5138), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [187926] = 8, + STATE(5681), 1, + sym_access_specifier, + ACTIONS(9603), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + [218948] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3814), 1, - anon_sym_COLON_COLON, - ACTIONS(5413), 1, + ACTIONS(4451), 1, anon_sym_LT, - ACTIONS(8024), 1, - anon_sym_SEMI, - ACTIONS(8026), 1, - anon_sym_EQ, - STATE(3135), 1, - sym_template_argument_list, - STATE(5242), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [187952] = 8, + ACTIONS(9519), 1, + sym_identifier, + STATE(1384), 1, + sym_template_parameter_list, + STATE(3560), 1, + sym_template_type, + [218964] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7111), 1, + ACTIONS(8246), 1, + anon_sym_LBRACE, + STATE(3356), 1, + sym_compound_statement, + ACTIONS(8517), 2, anon_sym_LPAREN2, - ACTIONS(7117), 1, anon_sym_LBRACK, - ACTIONS(7707), 1, - anon_sym_RPAREN, - STATE(3490), 1, - sym_parameter_list, - STATE(4960), 1, - sym__function_declarator_seq, - STATE(5138), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [187978] = 8, + [218978] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3814), 1, - anon_sym_COLON_COLON, - ACTIONS(5413), 1, - anon_sym_LT, - ACTIONS(8028), 1, - anon_sym_SEMI, - ACTIONS(8030), 1, - anon_sym_EQ, - STATE(3135), 1, - sym_template_argument_list, - STATE(5279), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [188004] = 8, + ACTIONS(4878), 1, + anon_sym_COLON, + ACTIONS(7626), 1, + anon_sym_LBRACE, + STATE(4766), 1, + sym_field_declaration_list, + STATE(6741), 1, + sym_base_class_clause, + [218994] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7111), 1, - anon_sym_LPAREN2, - ACTIONS(7117), 1, - anon_sym_LBRACK, - ACTIONS(7733), 1, - anon_sym_RPAREN, - STATE(3490), 1, - sym_parameter_list, - STATE(4960), 1, - sym__function_declarator_seq, - STATE(5138), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [188030] = 8, + ACTIONS(4451), 1, + anon_sym_LT, + ACTIONS(9519), 1, + sym_identifier, + STATE(1380), 1, + sym_template_parameter_list, + STATE(3560), 1, + sym_template_type, + [219010] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + ACTIONS(41), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3814), 1, - anon_sym_COLON_COLON, - ACTIONS(5413), 1, - anon_sym_LT, - ACTIONS(8032), 1, - anon_sym_SEMI, - ACTIONS(8034), 1, + ACTIONS(9144), 1, anon_sym_EQ, - STATE(3135), 1, - sym_template_argument_list, - STATE(5267), 2, + STATE(6087), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [188056] = 8, + [219024] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5709), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7111), 1, + ACTIONS(9523), 1, + sym_identifier, + ACTIONS(9605), 1, + anon_sym_COMMA, + ACTIONS(9607), 1, + anon_sym_RBRACE, + STATE(6345), 1, + sym_enumerator, + [219040] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7698), 1, + anon_sym_LBRACE, + ACTIONS(9498), 1, anon_sym_LPAREN2, - ACTIONS(7280), 1, - anon_sym_LBRACK, - ACTIONS(7577), 1, + STATE(3035), 1, + sym_requirement_seq, + STATE(6653), 1, + sym_requires_parameter_list, + [219056] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9609), 1, + anon_sym_COMMA, + STATE(6115), 1, + aux_sym_gnu_asm_input_operand_list_repeat1, + ACTIONS(9611), 2, + anon_sym_RPAREN, anon_sym_COLON, - STATE(3862), 1, - sym_parameter_list, - STATE(4901), 1, - sym__function_declarator_seq, - STATE(4962), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [188082] = 8, + [219070] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7111), 1, + ACTIONS(1899), 1, + anon_sym_LBRACE, + ACTIONS(6308), 1, anon_sym_LPAREN2, - ACTIONS(7280), 1, - anon_sym_LBRACK, - ACTIONS(8036), 1, - anon_sym_SEMI, - STATE(3490), 1, - sym_parameter_list, - STATE(4901), 1, - sym__function_declarator_seq, - STATE(4874), 2, + STATE(6237), 2, + sym_argument_list, + sym_initializer_list, + [219084] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(41), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9613), 1, + anon_sym_EQ, + STATE(5578), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [188108] = 5, + [219098] = 5, + ACTIONS(7929), 1, + sym_comment, + ACTIONS(9615), 1, + anon_sym_DQUOTE, + ACTIONS(9617), 1, + aux_sym_string_literal_token1, + ACTIONS(9619), 1, + sym_escape_sequence, + STATE(6092), 1, + aux_sym_string_literal_repeat1, + [219114] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8042), 1, - anon_sym_delete, - ACTIONS(8044), 1, - anon_sym_new, - ACTIONS(8040), 2, - anon_sym_TILDE, - anon_sym_COLON_COLON, - ACTIONS(8038), 4, + ACTIONS(9523), 1, sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [188128] = 8, + ACTIONS(9621), 1, + anon_sym_COMMA, + ACTIONS(9623), 1, + anon_sym_RBRACE, + STATE(6229), 1, + sym_enumerator, + [219130] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5709), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7111), 1, + ACTIONS(8220), 1, + anon_sym_LBRACE, + STATE(3447), 1, + sym_compound_statement, + ACTIONS(8517), 2, anon_sym_LPAREN2, - ACTIONS(7280), 1, anon_sym_LBRACK, - ACTIONS(7591), 1, + [219144] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4878), 1, anon_sym_COLON, - STATE(3862), 1, - sym_parameter_list, - STATE(4901), 1, - sym__function_declarator_seq, - STATE(4962), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [188154] = 8, + ACTIONS(5149), 1, + anon_sym_LBRACE, + STATE(3288), 1, + sym_field_declaration_list, + STATE(6723), 1, + sym_base_class_clause, + [219160] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5709), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7111), 1, - anon_sym_LPAREN2, - ACTIONS(7280), 1, - anon_sym_LBRACK, - ACTIONS(8046), 1, + ACTIONS(6672), 1, + anon_sym_COMMA, + ACTIONS(9492), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9625), 1, + anon_sym_GT2, + STATE(6529), 1, + aux_sym_template_argument_list_repeat1, + [219176] = 5, + ACTIONS(7929), 1, + sym_comment, + ACTIONS(9533), 1, + anon_sym_LPAREN, + ACTIONS(9627), 1, + anon_sym_LF, + ACTIONS(9629), 1, + sym_preproc_arg, + STATE(6850), 1, + sym_preproc_params, + [219192] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(49), 1, + anon_sym_LBRACE, + ACTIONS(8645), 1, anon_sym_COLON, - STATE(3862), 1, - sym_parameter_list, - STATE(4901), 1, - sym__function_declarator_seq, - STATE(4962), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [188180] = 8, + STATE(6444), 1, + sym_compound_statement, + STATE(6888), 1, + sym_field_initializer_list, + [219208] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5709), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7111), 1, + ACTIONS(8248), 1, + anon_sym_LBRACE, + STATE(3053), 1, + sym_compound_statement, + ACTIONS(8517), 2, anon_sym_LPAREN2, - ACTIONS(7280), 1, anon_sym_LBRACK, - ACTIONS(8048), 1, - anon_sym_COLON, - STATE(3862), 1, - sym_parameter_list, - STATE(4901), 1, - sym__function_declarator_seq, - STATE(4962), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [188206] = 5, + [219222] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8052), 1, - anon_sym_LBRACK, - STATE(4877), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(8050), 4, + ACTIONS(9523), 1, + sym_identifier, + ACTIONS(9631), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - [188226] = 8, + ACTIONS(9633), 1, + anon_sym_RBRACE, + STATE(6464), 1, + sym_enumerator, + [219238] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7111), 1, + ACTIONS(8200), 1, + anon_sym_LBRACE, + STATE(4043), 1, + sym_compound_statement, + ACTIONS(8517), 2, anon_sym_LPAREN2, - ACTIONS(7117), 1, anon_sym_LBRACK, - ACTIONS(8054), 1, - anon_sym_RPAREN, - STATE(3490), 1, - sym_parameter_list, - STATE(4960), 1, - sym__function_declarator_seq, - STATE(5138), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [188252] = 6, + [219252] = 5, + ACTIONS(7929), 1, + sym_comment, + ACTIONS(9533), 1, + anon_sym_LPAREN, + ACTIONS(9635), 1, + anon_sym_LF, + ACTIONS(9637), 1, + sym_preproc_arg, + STATE(6595), 1, + sym_preproc_params, + [219268] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3814), 1, + ACTIONS(4590), 1, + anon_sym_LBRACE, + ACTIONS(9486), 1, anon_sym_COLON_COLON, - ACTIONS(3838), 1, - anon_sym_LBRACK, - ACTIONS(5413), 1, - anon_sym_LT, - STATE(4860), 1, - sym_template_argument_list, - ACTIONS(3843), 4, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, + ACTIONS(9639), 1, + anon_sym_EQ, + STATE(564), 1, + sym_declaration_list, + [219284] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4876), 1, anon_sym_LBRACE, - anon_sym_try, - [188274] = 9, + ACTIONS(4878), 1, + anon_sym_COLON, + STATE(2728), 1, + sym_field_declaration_list, + STATE(6834), 1, + sym_base_class_clause, + [219300] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1489), 1, + ACTIONS(49), 1, anon_sym_LBRACE, - ACTIONS(6873), 1, + ACTIONS(8645), 1, anon_sym_COLON, - ACTIONS(7109), 1, + STATE(6368), 1, + sym_compound_statement, + STATE(6805), 1, + sym_field_initializer_list, + [219316] = 5, + ACTIONS(7929), 1, + sym_comment, + ACTIONS(9513), 1, + aux_sym_string_literal_token1, + ACTIONS(9515), 1, + sym_escape_sequence, + ACTIONS(9641), 1, + anon_sym_DQUOTE, + STATE(6154), 1, + aux_sym_string_literal_repeat1, + [219332] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9539), 1, anon_sym_COMMA, - ACTIONS(8056), 1, - anon_sym_SEMI, - ACTIONS(8058), 1, - anon_sym_EQ, - STATE(5125), 1, - aux_sym_field_declaration_repeat1, - STATE(6522), 1, - sym_initializer_list, - STATE(6523), 1, - sym_bitfield_clause, - [188302] = 8, + STATE(6127), 1, + aux_sym_gnu_asm_clobber_list_repeat1, + ACTIONS(9643), 2, + anon_sym_RPAREN, + anon_sym_COLON, + [219346] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + ACTIONS(41), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3814), 1, - anon_sym_COLON_COLON, - ACTIONS(5413), 1, - anon_sym_LT, - ACTIONS(8060), 1, - anon_sym_SEMI, - ACTIONS(8062), 1, + ACTIONS(9182), 1, anon_sym_EQ, - STATE(3135), 1, - sym_template_argument_list, - STATE(5249), 2, + STATE(6179), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [188328] = 8, + [219360] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9523), 1, + sym_identifier, + ACTIONS(9645), 1, + anon_sym_COMMA, + ACTIONS(9647), 1, + anon_sym_RBRACE, + STATE(6253), 1, + sym_enumerator, + [219376] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5709), 1, + ACTIONS(41), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7111), 1, - anon_sym_LPAREN2, - ACTIONS(7280), 1, - anon_sym_LBRACK, - ACTIONS(7549), 1, - anon_sym_COLON, - STATE(3862), 1, - sym_parameter_list, - STATE(4901), 1, - sym__function_declarator_seq, - STATE(4962), 2, + ACTIONS(9649), 1, + anon_sym_EQ, + STATE(5578), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [188354] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8064), 1, - anon_sym_delete, - ACTIONS(8066), 1, - anon_sym_new, - ACTIONS(8040), 2, - anon_sym_TILDE, - anon_sym_COLON_COLON, - ACTIONS(8038), 4, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [188374] = 8, + [219390] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5709), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7111), 1, + ACTIONS(8250), 1, + anon_sym_LBRACE, + STATE(3607), 1, + sym_compound_statement, + ACTIONS(8517), 2, anon_sym_LPAREN2, - ACTIONS(7280), 1, anon_sym_LBRACK, - ACTIONS(8068), 1, - anon_sym_COLON, - STATE(3862), 1, - sym_parameter_list, - STATE(4901), 1, - sym__function_declarator_seq, - STATE(4962), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [188400] = 5, + [219404] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8070), 1, - anon_sym_delete, - ACTIONS(8072), 1, - anon_sym_new, - ACTIONS(8040), 2, - anon_sym_TILDE, - anon_sym_COLON_COLON, - ACTIONS(8038), 4, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [188420] = 5, + ACTIONS(4878), 1, + anon_sym_COLON, + ACTIONS(4992), 1, + anon_sym_LBRACE, + STATE(2923), 1, + sym_field_declaration_list, + STATE(6846), 1, + sym_base_class_clause, + [219420] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8074), 1, - anon_sym_delete, - ACTIONS(8076), 1, - anon_sym_new, - ACTIONS(8040), 2, - anon_sym_TILDE, - anon_sym_COLON_COLON, - ACTIONS(8038), 4, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [188440] = 5, + ACTIONS(4878), 1, + anon_sym_COLON, + ACTIONS(5086), 1, + anon_sym_LBRACE, + STATE(3163), 1, + sym_field_declaration_list, + STATE(6758), 1, + sym_base_class_clause, + [219436] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8066), 1, - anon_sym_new, - ACTIONS(8078), 1, - anon_sym_delete, - ACTIONS(8040), 2, - anon_sym_TILDE, - anon_sym_COLON_COLON, - ACTIONS(8038), 4, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [188460] = 8, + ACTIONS(6672), 1, + anon_sym_COMMA, + ACTIONS(9492), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9651), 1, + anon_sym_GT2, + STATE(6542), 1, + aux_sym_template_argument_list_repeat1, + [219452] = 5, + ACTIONS(7929), 1, + sym_comment, + ACTIONS(9513), 1, + aux_sym_string_literal_token1, + ACTIONS(9515), 1, + sym_escape_sequence, + ACTIONS(9653), 1, + anon_sym_DQUOTE, + STATE(6154), 1, + aux_sym_string_literal_repeat1, + [219468] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5709), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7111), 1, - anon_sym_LPAREN2, - ACTIONS(7280), 1, - anon_sym_LBRACK, - ACTIONS(7565), 1, + ACTIONS(4878), 1, anon_sym_COLON, - STATE(3862), 1, - sym_parameter_list, - STATE(4901), 1, - sym__function_declarator_seq, - STATE(4962), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [188486] = 8, + ACTIONS(5149), 1, + anon_sym_LBRACE, + STATE(3242), 1, + sym_field_declaration_list, + STATE(6676), 1, + sym_base_class_clause, + [219484] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5709), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7111), 1, - anon_sym_LPAREN2, - ACTIONS(7280), 1, - anon_sym_LBRACK, - ACTIONS(8080), 1, - anon_sym_COLON, - STATE(3862), 1, - sym_parameter_list, - STATE(4901), 1, - sym__function_declarator_seq, - STATE(4962), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [188512] = 8, + ACTIONS(6672), 1, + anon_sym_COMMA, + ACTIONS(9492), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9655), 1, + anon_sym_GT2, + STATE(6553), 1, + aux_sym_template_argument_list_repeat1, + [219500] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7111), 1, + ACTIONS(8222), 1, + anon_sym_LBRACE, + STATE(5251), 1, + sym_compound_statement, + ACTIONS(8517), 2, anon_sym_LPAREN2, - ACTIONS(7280), 1, anon_sym_LBRACK, - ACTIONS(8082), 1, - anon_sym_SEMI, - STATE(3490), 1, - sym_parameter_list, - STATE(4901), 1, - sym__function_declarator_seq, - STATE(4874), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [188538] = 8, + [219514] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7111), 1, + ACTIONS(8246), 1, + anon_sym_LBRACE, + STATE(3314), 1, + sym_compound_statement, + ACTIONS(8517), 2, anon_sym_LPAREN2, - ACTIONS(7280), 1, anon_sym_LBRACK, - ACTIONS(8084), 1, - anon_sym_SEMI, - STATE(3490), 1, - sym_parameter_list, - STATE(4901), 1, - sym__function_declarator_seq, - STATE(4874), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [188564] = 8, + [219528] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7111), 1, - anon_sym_LPAREN2, - ACTIONS(7117), 1, - anon_sym_LBRACK, - ACTIONS(7657), 1, - anon_sym_RPAREN, - STATE(3490), 1, - sym_parameter_list, - STATE(4960), 1, - sym__function_declarator_seq, - STATE(5138), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [188590] = 8, + ACTIONS(4878), 1, + anon_sym_COLON, + ACTIONS(6458), 1, + anon_sym_LBRACE, + STATE(3924), 1, + sym_field_declaration_list, + STATE(6929), 1, + sym_base_class_clause, + [219544] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5709), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7111), 1, - anon_sym_LPAREN2, - ACTIONS(7280), 1, - anon_sym_LBRACK, - ACTIONS(7553), 1, + ACTIONS(4878), 1, anon_sym_COLON, - STATE(3862), 1, - sym_parameter_list, - STATE(4901), 1, - sym__function_declarator_seq, - STATE(4962), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [188616] = 8, + ACTIONS(5086), 1, + anon_sym_LBRACE, + STATE(3171), 1, + sym_field_declaration_list, + STATE(6762), 1, + sym_base_class_clause, + [219560] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7111), 1, + ACTIONS(9498), 1, anon_sym_LPAREN2, - ACTIONS(7280), 1, - anon_sym_LBRACK, - ACTIONS(8086), 1, - anon_sym_SEMI, - STATE(3490), 1, - sym_parameter_list, - STATE(4901), 1, - sym__function_declarator_seq, - STATE(4874), 2, + ACTIONS(9657), 1, + anon_sym_LBRACE, + STATE(5252), 1, + sym_requirement_seq, + STATE(6797), 1, + sym_requires_parameter_list, + [219576] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(41), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9659), 1, + anon_sym_EQ, + STATE(5578), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [188642] = 8, + [219590] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3814), 1, + ACTIONS(4476), 1, anon_sym_COLON_COLON, - ACTIONS(5413), 1, + ACTIONS(6151), 1, anon_sym_LT, - ACTIONS(8088), 1, + ACTIONS(9661), 1, anon_sym_SEMI, - ACTIONS(8090), 1, - anon_sym_EQ, - STATE(3135), 1, + STATE(3608), 1, sym_template_argument_list, - STATE(5345), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [188668] = 9, + [219606] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1489), 1, - anon_sym_LBRACE, - ACTIONS(6873), 1, + ACTIONS(4878), 1, anon_sym_COLON, - ACTIONS(7109), 1, - anon_sym_COMMA, - ACTIONS(8092), 1, - anon_sym_SEMI, - ACTIONS(8094), 1, - anon_sym_EQ, - STATE(5125), 1, - aux_sym_field_declaration_repeat1, - STATE(6007), 1, - sym_bitfield_clause, - STATE(6394), 1, - sym_initializer_list, - [188696] = 8, + ACTIONS(6458), 1, + anon_sym_LBRACE, + STATE(3925), 1, + sym_field_declaration_list, + STATE(6937), 1, + sym_base_class_clause, + [219622] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3814), 1, - anon_sym_COLON_COLON, - ACTIONS(5413), 1, - anon_sym_LT, - ACTIONS(8096), 1, - anon_sym_SEMI, - ACTIONS(8098), 1, - anon_sym_EQ, - STATE(3135), 1, - sym_template_argument_list, - STATE(5263), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [188722] = 7, + ACTIONS(8244), 1, + anon_sym_LBRACE, + STATE(3828), 1, + sym_compound_statement, + ACTIONS(8517), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK, + [219636] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7111), 1, + ACTIONS(8240), 1, + anon_sym_LBRACE, + STATE(2178), 1, + sym_compound_statement, + ACTIONS(8517), 2, anon_sym_LPAREN2, - ACTIONS(7892), 1, anon_sym_LBRACK, - STATE(5148), 1, - sym_parameter_list, - ACTIONS(8100), 2, - anon_sym_COMMA, - anon_sym_SEMI, - STATE(5060), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [188746] = 8, + [219650] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3814), 1, + ACTIONS(4878), 1, + anon_sym_COLON, + ACTIONS(5086), 1, + anon_sym_LBRACE, + STATE(3174), 1, + sym_field_declaration_list, + STATE(6765), 1, + sym_base_class_clause, + [219666] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4476), 1, anon_sym_COLON_COLON, - ACTIONS(5413), 1, + ACTIONS(6151), 1, anon_sym_LT, - ACTIONS(8102), 1, + ACTIONS(9663), 1, anon_sym_SEMI, - ACTIONS(8104), 1, - anon_sym_EQ, - STATE(3135), 1, + STATE(3608), 1, sym_template_argument_list, - STATE(5216), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [188772] = 8, + [219682] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7111), 1, - anon_sym_LPAREN2, - ACTIONS(7280), 1, - anon_sym_LBRACK, - ACTIONS(8106), 1, - anon_sym_SEMI, - STATE(3490), 1, - sym_parameter_list, - STATE(4901), 1, - sym__function_declarator_seq, - STATE(4874), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [188798] = 5, + ACTIONS(9523), 1, + sym_identifier, + ACTIONS(9665), 1, + anon_sym_COMMA, + ACTIONS(9667), 1, + anon_sym_RBRACE, + STATE(6489), 1, + sym_enumerator, + [219698] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8108), 1, - anon_sym_delete, - ACTIONS(8110), 1, - anon_sym_new, - ACTIONS(8040), 2, - anon_sym_TILDE, - anon_sym_COLON_COLON, - ACTIONS(8038), 4, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [188818] = 5, + ACTIONS(6672), 1, + anon_sym_COMMA, + ACTIONS(9492), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9669), 1, + anon_sym_GT2, + STATE(6409), 1, + aux_sym_template_argument_list_repeat1, + [219714] = 5, + ACTIONS(7929), 1, + sym_comment, + ACTIONS(9533), 1, + anon_sym_LPAREN, + ACTIONS(9671), 1, + anon_sym_LF, + ACTIONS(9673), 1, + sym_preproc_arg, + STATE(6940), 1, + sym_preproc_params, + [219730] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8044), 1, - anon_sym_new, - ACTIONS(8112), 1, - anon_sym_delete, - ACTIONS(8040), 2, - anon_sym_TILDE, + ACTIONS(4476), 1, anon_sym_COLON_COLON, - ACTIONS(8038), 4, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [188838] = 8, + ACTIONS(6151), 1, + anon_sym_LT, + ACTIONS(9675), 1, + anon_sym_SEMI, + STATE(3608), 1, + sym_template_argument_list, + [219746] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5709), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7111), 1, + ACTIONS(8222), 1, + anon_sym_LBRACE, + STATE(5245), 1, + sym_compound_statement, + ACTIONS(8517), 2, anon_sym_LPAREN2, - ACTIONS(7280), 1, anon_sym_LBRACK, - ACTIONS(8114), 1, + [219760] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9609), 1, + anon_sym_COMMA, + STATE(6066), 1, + aux_sym_gnu_asm_input_operand_list_repeat1, + ACTIONS(9677), 2, + anon_sym_RPAREN, anon_sym_COLON, - STATE(3862), 1, - sym_parameter_list, - STATE(4901), 1, - sym__function_declarator_seq, - STATE(4962), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [188864] = 6, + [219774] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3814), 1, - anon_sym_COLON_COLON, - ACTIONS(5413), 1, - anon_sym_LT, - ACTIONS(6476), 1, - anon_sym_LBRACK, - STATE(4860), 1, - sym_template_argument_list, - ACTIONS(3988), 4, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, + ACTIONS(4878), 1, + anon_sym_COLON, + ACTIONS(5045), 1, anon_sym_LBRACE, - anon_sym_try, - [188886] = 6, + STATE(2720), 1, + sym_field_declaration_list, + STATE(6715), 1, + sym_base_class_clause, + [219790] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7111), 1, - anon_sym_LPAREN2, - ACTIONS(7756), 1, - anon_sym_LBRACK, - STATE(3461), 1, - sym_parameter_list, - STATE(4746), 1, - sym__function_declarator_seq, - ACTIONS(8116), 4, - anon_sym_SEMI, + ACTIONS(49), 1, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [188908] = 8, + ACTIONS(8645), 1, + anon_sym_COLON, + STATE(6285), 1, + sym_compound_statement, + STATE(6665), 1, + sym_field_initializer_list, + [219806] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7111), 1, - anon_sym_LPAREN2, - ACTIONS(7280), 1, - anon_sym_LBRACK, - ACTIONS(8118), 1, + ACTIONS(9679), 1, + anon_sym_COMMA, + STATE(6115), 1, + aux_sym_gnu_asm_input_operand_list_repeat1, + ACTIONS(9682), 2, anon_sym_RPAREN, - STATE(3490), 1, - sym_parameter_list, - STATE(4901), 1, - sym__function_declarator_seq, - STATE(4874), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [188934] = 5, + anon_sym_COLON, + [219820] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8120), 1, - anon_sym_delete, - ACTIONS(8122), 1, - anon_sym_new, - ACTIONS(8040), 2, - anon_sym_TILDE, - anon_sym_COLON_COLON, - ACTIONS(8038), 4, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [188954] = 5, + ACTIONS(4878), 1, + anon_sym_COLON, + ACTIONS(5045), 1, + anon_sym_LBRACE, + STATE(2770), 1, + sym_field_declaration_list, + STATE(6742), 1, + sym_base_class_clause, + [219836] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8124), 1, - anon_sym_delete, - ACTIONS(8126), 1, - anon_sym_new, - ACTIONS(8040), 2, - anon_sym_TILDE, + ACTIONS(4476), 1, anon_sym_COLON_COLON, - ACTIONS(8038), 4, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [188974] = 8, + ACTIONS(6151), 1, + anon_sym_LT, + ACTIONS(9684), 1, + anon_sym_SEMI, + STATE(3608), 1, + sym_template_argument_list, + [219852] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7111), 1, - anon_sym_LPAREN2, - ACTIONS(7280), 1, - anon_sym_LBRACK, - ACTIONS(8128), 1, - anon_sym_SEMI, - STATE(3490), 1, - sym_parameter_list, - STATE(4901), 1, - sym__function_declarator_seq, - STATE(4874), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [189000] = 8, + ACTIONS(6672), 1, + anon_sym_COMMA, + ACTIONS(9492), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9686), 1, + anon_sym_GT2, + STATE(6317), 1, + aux_sym_template_argument_list_repeat1, + [219868] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5709), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7111), 1, - anon_sym_LPAREN2, - ACTIONS(7280), 1, - anon_sym_LBRACK, - ACTIONS(8130), 1, + ACTIONS(4878), 1, anon_sym_COLON, - STATE(3862), 1, - sym_parameter_list, - STATE(4901), 1, - sym__function_declarator_seq, - STATE(4962), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [189026] = 8, + ACTIONS(4992), 1, + anon_sym_LBRACE, + STATE(2903), 1, + sym_field_declaration_list, + STATE(6822), 1, + sym_base_class_clause, + [219884] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7111), 1, - anon_sym_LPAREN2, - ACTIONS(7280), 1, - anon_sym_LBRACK, - ACTIONS(8132), 1, - anon_sym_SEMI, - STATE(3490), 1, - sym_parameter_list, - STATE(4901), 1, - sym__function_declarator_seq, - STATE(4874), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [189052] = 9, + ACTIONS(9567), 1, + anon_sym_COMMA, + STATE(5975), 1, + aux_sym_gnu_asm_output_operand_list_repeat1, + ACTIONS(9688), 2, + anon_sym_RPAREN, + anon_sym_COLON, + [219898] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1489), 1, + ACTIONS(4878), 1, + anon_sym_COLON, + ACTIONS(4992), 1, anon_sym_LBRACE, - ACTIONS(6873), 1, + STATE(2862), 1, + sym_field_declaration_list, + STATE(6821), 1, + sym_base_class_clause, + [219914] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6672), 1, + anon_sym_COMMA, + ACTIONS(9492), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9690), 1, + anon_sym_GT2, + STATE(6277), 1, + aux_sym_template_argument_list_repeat1, + [219930] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4878), 1, anon_sym_COLON, - ACTIONS(7109), 1, + ACTIONS(5086), 1, + anon_sym_LBRACE, + STATE(3192), 1, + sym_field_declaration_list, + STATE(6770), 1, + sym_base_class_clause, + [219946] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6672), 1, anon_sym_COMMA, - ACTIONS(8134), 1, - anon_sym_SEMI, - ACTIONS(8136), 1, - anon_sym_EQ, - STATE(5125), 1, - aux_sym_field_declaration_repeat1, - STATE(6556), 1, - sym_initializer_list, - STATE(6557), 1, - sym_bitfield_clause, - [189080] = 8, + ACTIONS(9492), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9692), 1, + anon_sym_GT2, + STATE(6188), 1, + aux_sym_template_argument_list_repeat1, + [219962] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3940), 1, + ACTIONS(9587), 1, + anon_sym_COMMA, + ACTIONS(9694), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9696), 1, anon_sym_LBRACE, - ACTIONS(8138), 1, - sym_identifier, - ACTIONS(8140), 1, - anon_sym_COLON_COLON, - ACTIONS(8142), 1, - anon_sym_inline, - STATE(942), 1, - sym_declaration_list, - STATE(5973), 1, - sym_nested_namespace_specifier, - STATE(6579), 1, - sym__namespace_specifier, - [189105] = 8, + STATE(6484), 1, + aux_sym_base_class_clause_repeat1, + [219978] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3932), 1, + ACTIONS(4878), 1, + anon_sym_COLON, + ACTIONS(5086), 1, anon_sym_LBRACE, - ACTIONS(8140), 1, - anon_sym_COLON_COLON, - ACTIONS(8142), 1, - anon_sym_inline, - ACTIONS(8144), 1, + STATE(3194), 1, + sym_field_declaration_list, + STATE(6700), 1, + sym_base_class_clause, + [219994] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9698), 1, + anon_sym_COMMA, + STATE(6127), 1, + aux_sym_gnu_asm_clobber_list_repeat1, + ACTIONS(9701), 2, + anon_sym_RPAREN, + anon_sym_COLON, + [220008] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9523), 1, sym_identifier, - STATE(1021), 1, - sym_declaration_list, - STATE(5974), 1, - sym_nested_namespace_specifier, - STATE(6579), 1, - sym__namespace_specifier, - [189130] = 3, + ACTIONS(9703), 1, + anon_sym_COMMA, + ACTIONS(9705), 1, + anon_sym_RBRACE, + STATE(6230), 1, + sym_enumerator, + [220024] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8148), 1, - anon_sym_AMP, - ACTIONS(8146), 6, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, + ACTIONS(4476), 1, + anon_sym_COLON_COLON, + ACTIONS(6151), 1, anon_sym_LT, - anon_sym_LBRACE, - anon_sym_LBRACK, - [189145] = 3, + ACTIONS(9707), 1, + anon_sym_SEMI, + STATE(3608), 1, + sym_template_argument_list, + [220040] = 5, + ACTIONS(7929), 1, + sym_comment, + ACTIONS(9709), 1, + anon_sym_DQUOTE, + ACTIONS(9711), 1, + aux_sym_string_literal_token1, + ACTIONS(9713), 1, + sym_escape_sequence, + STATE(6178), 1, + aux_sym_string_literal_repeat1, + [220056] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8152), 1, - anon_sym_AMP, - ACTIONS(8150), 6, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, + ACTIONS(4451), 1, anon_sym_LT, + ACTIONS(9519), 1, + sym_identifier, + STATE(1379), 1, + sym_template_parameter_list, + STATE(3560), 1, + sym_template_type, + [220072] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4876), 1, anon_sym_LBRACE, - anon_sym_LBRACK, - [189160] = 3, + ACTIONS(4878), 1, + anon_sym_COLON, + STATE(2790), 1, + sym_field_declaration_list, + STATE(6813), 1, + sym_base_class_clause, + [220088] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5183), 1, - anon_sym_AMP, - ACTIONS(5185), 6, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, + ACTIONS(4876), 1, anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_requires, - [189175] = 8, + ACTIONS(4878), 1, + anon_sym_COLON, + STATE(2795), 1, + sym_field_declaration_list, + STATE(6809), 1, + sym_base_class_clause, + [220104] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3930), 1, + ACTIONS(9587), 1, + anon_sym_COMMA, + ACTIONS(9715), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9717), 1, anon_sym_LBRACE, - ACTIONS(8140), 1, - anon_sym_COLON_COLON, - ACTIONS(8142), 1, - anon_sym_inline, - ACTIONS(8154), 1, - sym_identifier, - STATE(933), 1, - sym_declaration_list, - STATE(5877), 1, - sym_nested_namespace_specifier, - STATE(6579), 1, - sym__namespace_specifier, - [189200] = 8, + STATE(6315), 1, + aux_sym_base_class_clause_repeat1, + [220120] = 3, + ACTIONS(3), 1, + sym_comment, + STATE(5673), 1, + sym_access_specifier, + ACTIONS(9603), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + [220132] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3942), 1, + ACTIONS(4878), 1, + anon_sym_COLON, + ACTIONS(5045), 1, anon_sym_LBRACE, - ACTIONS(8140), 1, - anon_sym_COLON_COLON, - ACTIONS(8142), 1, - anon_sym_inline, - ACTIONS(8156), 1, - sym_identifier, - STATE(514), 1, - sym_declaration_list, - STATE(5932), 1, - sym_nested_namespace_specifier, - STATE(6579), 1, - sym__namespace_specifier, - [189225] = 3, + STATE(2762), 1, + sym_field_declaration_list, + STATE(6735), 1, + sym_base_class_clause, + [220148] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3418), 1, - anon_sym_AMP, - ACTIONS(3416), 6, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_LT, + ACTIONS(8222), 1, anon_sym_LBRACE, + STATE(5230), 1, + sym_compound_statement, + ACTIONS(8517), 2, + anon_sym_LPAREN2, anon_sym_LBRACK, - [189240] = 3, + [220162] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7982), 1, - anon_sym_AMP, - ACTIONS(7980), 6, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, + ACTIONS(4451), 1, anon_sym_LT, - anon_sym_LBRACE, - anon_sym_LBRACK, - [189255] = 3, + ACTIONS(9519), 1, + sym_identifier, + STATE(1382), 1, + sym_template_parameter_list, + STATE(3560), 1, + sym_template_type, + [220178] = 5, + ACTIONS(7929), 1, + sym_comment, + ACTIONS(9533), 1, + anon_sym_LPAREN, + ACTIONS(9719), 1, + anon_sym_LF, + ACTIONS(9721), 1, + sym_preproc_arg, + STATE(6774), 1, + sym_preproc_params, + [220194] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5187), 1, - anon_sym_AMP, - ACTIONS(5189), 6, + ACTIONS(7678), 1, + anon_sym_LBRACE, + ACTIONS(9498), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, + STATE(3551), 1, + sym_requirement_seq, + STATE(6943), 1, + sym_requires_parameter_list, + [220210] = 3, + ACTIONS(3), 1, + sym_comment, + STATE(5682), 1, + sym_access_specifier, + ACTIONS(9603), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + [220222] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8240), 1, anon_sym_LBRACE, + STATE(2186), 1, + sym_compound_statement, + ACTIONS(8517), 2, + anon_sym_LPAREN2, anon_sym_LBRACK, - anon_sym_requires, - [189270] = 8, + [220236] = 5, + ACTIONS(7929), 1, + sym_comment, + ACTIONS(9723), 1, + anon_sym_DQUOTE, + ACTIONS(9725), 1, + aux_sym_string_literal_token1, + ACTIONS(9727), 1, + sym_escape_sequence, + STATE(6050), 1, + aux_sym_string_literal_repeat1, + [220252] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3930), 1, + ACTIONS(9587), 1, + anon_sym_COMMA, + ACTIONS(9729), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9731), 1, anon_sym_LBRACE, - ACTIONS(8140), 1, + STATE(6575), 1, + aux_sym_base_class_clause_repeat1, + [220268] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4476), 1, anon_sym_COLON_COLON, - ACTIONS(8142), 1, - anon_sym_inline, - ACTIONS(8158), 1, + ACTIONS(4510), 1, + anon_sym_SEMI, + ACTIONS(6151), 1, + anon_sym_LT, + STATE(2206), 1, + sym_template_argument_list, + [220284] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4451), 1, + anon_sym_LT, + ACTIONS(9519), 1, sym_identifier, - STATE(967), 1, - sym_declaration_list, - STATE(5873), 1, - sym_nested_namespace_specifier, - STATE(6579), 1, - sym__namespace_specifier, - [189295] = 3, + STATE(3560), 1, + sym_template_type, + STATE(5943), 1, + sym_template_parameter_list, + [220300] = 5, + ACTIONS(7929), 1, + sym_comment, + ACTIONS(9513), 1, + aux_sym_string_literal_token1, + ACTIONS(9515), 1, + sym_escape_sequence, + ACTIONS(9733), 1, + anon_sym_DQUOTE, + STATE(6154), 1, + aux_sym_string_literal_repeat1, + [220316] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8162), 1, - anon_sym_AMP, - ACTIONS(8160), 6, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, + ACTIONS(4476), 1, + anon_sym_COLON_COLON, + ACTIONS(6151), 1, anon_sym_LT, + ACTIONS(9735), 1, + anon_sym_SEMI, + STATE(3608), 1, + sym_template_argument_list, + [220332] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4878), 1, + anon_sym_COLON, + ACTIONS(6195), 1, anon_sym_LBRACE, - anon_sym_LBRACK, - [189310] = 7, + STATE(3772), 1, + sym_field_declaration_list, + STATE(6933), 1, + sym_base_class_clause, + [220348] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7111), 1, - anon_sym_LPAREN2, - ACTIONS(7892), 1, - anon_sym_LBRACK, - ACTIONS(8164), 1, - anon_sym_RPAREN, - STATE(5148), 1, - sym_parameter_list, - STATE(5060), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [189333] = 7, + ACTIONS(4878), 1, + anon_sym_COLON, + ACTIONS(6458), 1, + anon_sym_LBRACE, + STATE(3997), 1, + sym_field_declaration_list, + STATE(6944), 1, + sym_base_class_clause, + [220364] = 5, + ACTIONS(7929), 1, + sym_comment, + ACTIONS(9533), 1, + anon_sym_LPAREN, + ACTIONS(9737), 1, + anon_sym_LF, + ACTIONS(9739), 1, + sym_preproc_arg, + STATE(6720), 1, + sym_preproc_params, + [220380] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1489), 1, + ACTIONS(4878), 1, + anon_sym_COLON, + ACTIONS(6195), 1, anon_sym_LBRACE, - ACTIONS(3814), 1, - anon_sym_COLON_COLON, - ACTIONS(5413), 1, - anon_sym_LT, - ACTIONS(5415), 1, - anon_sym_LPAREN2, - STATE(5512), 1, - sym_template_argument_list, - STATE(5506), 2, - sym_argument_list, - sym_initializer_list, - [189356] = 8, + STATE(3771), 1, + sym_field_declaration_list, + STATE(6730), 1, + sym_base_class_clause, + [220396] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6672), 1, + anon_sym_COMMA, + ACTIONS(9492), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9741), 1, + anon_sym_GT2, + STATE(6320), 1, + aux_sym_template_argument_list_repeat1, + [220412] = 5, + ACTIONS(7929), 1, + sym_comment, + ACTIONS(9743), 1, + anon_sym_DQUOTE, + ACTIONS(9745), 1, + aux_sym_string_literal_token1, + ACTIONS(9748), 1, + sym_escape_sequence, + STATE(6154), 1, + aux_sym_string_literal_repeat1, + [220428] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3932), 1, + ACTIONS(4878), 1, + anon_sym_COLON, + ACTIONS(4992), 1, anon_sym_LBRACE, - ACTIONS(8140), 1, - anon_sym_COLON_COLON, - ACTIONS(8142), 1, - anon_sym_inline, - ACTIONS(8166), 1, - sym_identifier, - STATE(1041), 1, - sym_declaration_list, - STATE(5992), 1, - sym_nested_namespace_specifier, - STATE(6579), 1, - sym__namespace_specifier, - [189381] = 8, + STATE(2929), 1, + sym_field_declaration_list, + STATE(6816), 1, + sym_base_class_clause, + [220444] = 5, + ACTIONS(7929), 1, + sym_comment, + ACTIONS(9513), 1, + aux_sym_string_literal_token1, + ACTIONS(9515), 1, + sym_escape_sequence, + ACTIONS(9751), 1, + anon_sym_DQUOTE, + STATE(6154), 1, + aux_sym_string_literal_repeat1, + [220460] = 3, + ACTIONS(3), 1, + sym_comment, + STATE(5701), 1, + sym_access_specifier, + ACTIONS(9603), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + [220472] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3940), 1, + ACTIONS(4878), 1, + anon_sym_COLON, + ACTIONS(4992), 1, anon_sym_LBRACE, - ACTIONS(8140), 1, - anon_sym_COLON_COLON, - ACTIONS(8142), 1, - anon_sym_inline, - ACTIONS(8168), 1, + STATE(2918), 1, + sym_field_declaration_list, + STATE(6814), 1, + sym_base_class_clause, + [220488] = 5, + ACTIONS(7929), 1, + sym_comment, + ACTIONS(9533), 1, + anon_sym_LPAREN, + ACTIONS(9753), 1, + anon_sym_LF, + ACTIONS(9755), 1, + sym_preproc_arg, + STATE(6668), 1, + sym_preproc_params, + [220504] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4451), 1, + anon_sym_LT, + ACTIONS(9519), 1, sym_identifier, - STATE(1036), 1, - sym_declaration_list, - STATE(5874), 1, - sym_nested_namespace_specifier, - STATE(6579), 1, - sym__namespace_specifier, - [189406] = 3, + STATE(1387), 1, + sym_template_parameter_list, + STATE(3560), 1, + sym_template_type, + [220520] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5179), 1, - anon_sym_AMP, - ACTIONS(5181), 6, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, + ACTIONS(4584), 1, anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_requires, - [189421] = 7, + ACTIONS(9486), 1, + anon_sym_COLON_COLON, + ACTIONS(9757), 1, + anon_sym_EQ, + STATE(788), 1, + sym_declaration_list, + [220536] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + ACTIONS(41), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7111), 1, - anon_sym_LPAREN2, - ACTIONS(7280), 1, - anon_sym_LBRACK, - STATE(3362), 1, - sym_parameter_list, - STATE(4901), 1, - sym__function_declarator_seq, - STATE(4874), 2, + ACTIONS(9759), 1, + anon_sym_EQ, + STATE(6004), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [189444] = 8, + [220550] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3942), 1, + ACTIONS(8200), 1, anon_sym_LBRACE, - ACTIONS(8140), 1, - anon_sym_COLON_COLON, - ACTIONS(8142), 1, - anon_sym_inline, - ACTIONS(8170), 1, + STATE(4016), 1, + sym_compound_statement, + ACTIONS(8517), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK, + [220564] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(49), 1, + anon_sym_LBRACE, + ACTIONS(8645), 1, + anon_sym_COLON, + STATE(6281), 1, + sym_compound_statement, + STATE(6941), 1, + sym_field_initializer_list, + [220580] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9523), 1, sym_identifier, - STATE(501), 1, - sym_declaration_list, - STATE(5925), 1, - sym_nested_namespace_specifier, - STATE(6579), 1, - sym__namespace_specifier, - [189469] = 5, + ACTIONS(9761), 1, + anon_sym_COMMA, + ACTIONS(9763), 1, + anon_sym_RBRACE, + STATE(6232), 1, + sym_enumerator, + [220596] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8172), 1, + ACTIONS(8246), 1, + anon_sym_LBRACE, + STATE(3250), 1, + sym_compound_statement, + ACTIONS(8517), 2, + anon_sym_LPAREN2, anon_sym_LBRACK, - ACTIONS(8174), 1, - anon_sym_EQ, - ACTIONS(8176), 1, - anon_sym_DOT, - STATE(5131), 3, - sym_subscript_designator, - sym_field_designator, - aux_sym_initializer_pair_repeat1, - [189487] = 5, + [220610] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7358), 1, - anon_sym_TILDE, - ACTIONS(8178), 1, - sym_identifier, - ACTIONS(8180), 1, - anon_sym_template, - STATE(2810), 3, - sym_template_method, - sym_destructor_name, - sym_dependent_field_identifier, - [189505] = 6, + ACTIONS(4876), 1, + anon_sym_LBRACE, + ACTIONS(4878), 1, + anon_sym_COLON, + STATE(2779), 1, + sym_field_declaration_list, + STATE(6785), 1, + sym_base_class_clause, + [220626] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7111), 1, + ACTIONS(8240), 1, + anon_sym_LBRACE, + STATE(2196), 1, + sym_compound_statement, + ACTIONS(8517), 2, anon_sym_LPAREN2, - ACTIONS(7756), 1, anon_sym_LBRACK, - STATE(3556), 1, - sym_parameter_list, - STATE(4746), 1, - sym__function_declarator_seq, - ACTIONS(7844), 2, - anon_sym_COMMA, - anon_sym_GT2, - [189525] = 5, + [220640] = 5, + ACTIONS(7929), 1, + sym_comment, + ACTIONS(9765), 1, + anon_sym_DQUOTE, + ACTIONS(9767), 1, + aux_sym_string_literal_token1, + ACTIONS(9769), 1, + sym_escape_sequence, + STATE(6147), 1, + aux_sym_string_literal_repeat1, + [220656] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7388), 1, - anon_sym_TILDE, - ACTIONS(8182), 1, + ACTIONS(9523), 1, sym_identifier, - ACTIONS(8184), 1, - anon_sym_template, - STATE(2965), 3, - sym_template_method, - sym_destructor_name, - sym_dependent_field_identifier, - [189543] = 6, + ACTIONS(9771), 1, + anon_sym_COMMA, + ACTIONS(9773), 1, + anon_sym_RBRACE, + STATE(6226), 1, + sym_enumerator, + [220672] = 5, + ACTIONS(7929), 1, + sym_comment, + ACTIONS(9775), 1, + anon_sym_DQUOTE, + ACTIONS(9777), 1, + aux_sym_string_literal_token1, + ACTIONS(9779), 1, + sym_escape_sequence, + STATE(6083), 1, + aux_sym_string_literal_repeat1, + [220688] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(666), 1, + ACTIONS(4586), 1, anon_sym_LBRACE, - ACTIONS(7318), 1, - anon_sym_try, - ACTIONS(8186), 1, - anon_sym_SEMI, - ACTIONS(8188), 1, + ACTIONS(9486), 1, + anon_sym_COLON_COLON, + ACTIONS(9781), 1, anon_sym_EQ, - STATE(1074), 2, - sym_compound_statement, - sym_try_statement, - [189563] = 6, + STATE(1239), 1, + sym_declaration_list, + [220704] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7131), 1, - anon_sym_try, - ACTIONS(7717), 1, + ACTIONS(4878), 1, + anon_sym_COLON, + ACTIONS(5086), 1, anon_sym_LBRACE, - ACTIONS(8190), 1, - anon_sym_SEMI, - ACTIONS(8192), 1, - anon_sym_EQ, - STATE(2372), 2, - sym_compound_statement, - sym_try_statement, - [189583] = 3, + STATE(3152), 1, + sym_field_declaration_list, + STATE(6789), 1, + sym_base_class_clause, + [220720] = 5, + ACTIONS(7929), 1, + sym_comment, + ACTIONS(9533), 1, + anon_sym_LPAREN, + ACTIONS(9783), 1, + anon_sym_LF, + ACTIONS(9785), 1, + sym_preproc_arg, + STATE(6793), 1, + sym_preproc_params, + [220736] = 5, + ACTIONS(7929), 1, + sym_comment, + ACTIONS(9787), 1, + anon_sym_DQUOTE, + ACTIONS(9789), 1, + aux_sym_string_literal_token1, + ACTIONS(9791), 1, + sym_escape_sequence, + STATE(6020), 1, + aux_sym_string_literal_repeat1, + [220752] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8196), 2, - anon_sym_TILDE, - anon_sym_COLON_COLON, - ACTIONS(8194), 4, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [189597] = 3, + ACTIONS(4878), 1, + anon_sym_COLON, + ACTIONS(4992), 1, + anon_sym_LBRACE, + STATE(2880), 1, + sym_field_declaration_list, + STATE(6812), 1, + sym_base_class_clause, + [220768] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7708), 1, + anon_sym_LBRACE, + ACTIONS(9498), 1, + anon_sym_LPAREN2, + STATE(3325), 1, + sym_requirement_seq, + STATE(6768), 1, + sym_requires_parameter_list, + [220784] = 5, + ACTIONS(7929), 1, + sym_comment, + ACTIONS(9513), 1, + aux_sym_string_literal_token1, + ACTIONS(9515), 1, + sym_escape_sequence, + ACTIONS(9793), 1, + anon_sym_DQUOTE, + STATE(6154), 1, + aux_sym_string_literal_repeat1, + [220800] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8200), 1, - anon_sym_LBRACK, - ACTIONS(8198), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, + ACTIONS(41), 1, anon_sym_LBRACK_LBRACK, - [189611] = 3, + ACTIONS(9795), 1, + anon_sym_EQ, + STATE(5578), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [220814] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8204), 1, - anon_sym_LBRACK, - ACTIONS(8202), 5, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(8250), 1, + anon_sym_LBRACE, + STATE(3564), 1, + sym_compound_statement, + ACTIONS(8517), 2, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - [189625] = 3, + anon_sym_LBRACK, + [220828] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8208), 1, - anon_sym_LBRACK, - ACTIONS(8206), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, + ACTIONS(41), 1, anon_sym_LBRACK_LBRACK, - [189639] = 4, + ACTIONS(9797), 1, + anon_sym_EQ, + STATE(6034), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [220842] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8210), 1, - anon_sym_COMMA, - STATE(5125), 1, - aux_sym_field_declaration_repeat1, - ACTIONS(8213), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, + ACTIONS(4878), 1, anon_sym_COLON, - [189655] = 6, + ACTIONS(6195), 1, + anon_sym_LBRACE, + STATE(3780), 1, + sym_field_declaration_list, + STATE(6938), 1, + sym_base_class_clause, + [220858] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7121), 1, - anon_sym_try, - ACTIONS(7681), 1, - anon_sym_LBRACE, - ACTIONS(8215), 1, - anon_sym_SEMI, - ACTIONS(8217), 1, - anon_sym_EQ, - STATE(2055), 2, - sym_compound_statement, - sym_try_statement, - [189675] = 3, + ACTIONS(7087), 1, + anon_sym_RPAREN, + ACTIONS(9799), 1, + anon_sym_COMMA, + STATE(6183), 1, + aux_sym_argument_list_repeat1, + [220871] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8221), 1, - anon_sym_LBRACK, - ACTIONS(8219), 5, + ACTIONS(6672), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - [189689] = 6, + ACTIONS(9802), 1, + anon_sym_GT2, + STATE(6393), 1, + aux_sym_template_argument_list_repeat1, + [220884] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(640), 1, - anon_sym_LBRACE, - ACTIONS(7284), 1, - anon_sym_try, - ACTIONS(8223), 1, - anon_sym_SEMI, - ACTIONS(8225), 1, - anon_sym_EQ, - STATE(985), 2, - sym_compound_statement, - sym_try_statement, - [189709] = 6, + ACTIONS(9523), 1, + sym_identifier, + ACTIONS(9804), 1, + anon_sym_RBRACE, + STATE(6782), 1, + sym_enumerator, + [220897] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7111), 1, - anon_sym_LPAREN2, - ACTIONS(7756), 1, - anon_sym_LBRACK, - STATE(3482), 1, - sym_parameter_list, - STATE(4746), 1, - sym__function_declarator_seq, - ACTIONS(7844), 2, + ACTIONS(9804), 1, + anon_sym_RBRACE, + ACTIONS(9806), 1, anon_sym_COMMA, - anon_sym_RPAREN, - [189729] = 6, + STATE(6261), 1, + aux_sym_enumerator_list_repeat1, + [220910] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(7326), 1, - anon_sym_try, - ACTIONS(8227), 1, - anon_sym_SEMI, - ACTIONS(8229), 1, - anon_sym_EQ, - STATE(1066), 2, - sym_compound_statement, - sym_try_statement, - [189749] = 5, + ACTIONS(6672), 1, + anon_sym_COMMA, + ACTIONS(9808), 1, + anon_sym_GT2, + STATE(6393), 1, + aux_sym_template_argument_list_repeat1, + [220923] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8231), 1, - anon_sym_LBRACK, - ACTIONS(8234), 1, - anon_sym_EQ, - ACTIONS(8236), 1, - anon_sym_DOT, - STATE(5131), 3, - sym_subscript_designator, - sym_field_designator, - aux_sym_initializer_pair_repeat1, - [189767] = 3, + ACTIONS(6672), 1, + anon_sym_COMMA, + ACTIONS(9810), 1, + anon_sym_GT2, + STATE(6393), 1, + aux_sym_template_argument_list_repeat1, + [220936] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8241), 1, - anon_sym_LBRACK, - ACTIONS(8239), 5, + ACTIONS(6672), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - [189781] = 5, + ACTIONS(9812), 1, + anon_sym_GT2, + STATE(6393), 1, + aux_sym_template_argument_list_repeat1, + [220949] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7348), 1, - anon_sym_TILDE, - ACTIONS(8243), 1, + ACTIONS(9814), 1, sym_identifier, - ACTIONS(8245), 1, - anon_sym_template, - STATE(2463), 3, - sym_template_method, - sym_destructor_name, - sym_dependent_field_identifier, - [189799] = 6, + STATE(3560), 1, + sym_template_type, + STATE(5637), 1, + sym_template_function, + [220962] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(640), 1, - anon_sym_LBRACE, - ACTIONS(7284), 1, - anon_sym_try, - ACTIONS(8247), 1, - anon_sym_SEMI, - ACTIONS(8249), 1, - anon_sym_EQ, - STATE(1034), 2, - sym_compound_statement, - sym_try_statement, - [189819] = 3, + ACTIONS(9816), 1, + anon_sym_catch, + STATE(2220), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [220973] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8253), 2, - anon_sym_TILDE, - anon_sym_COLON_COLON, - ACTIONS(8251), 4, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [189833] = 3, + ACTIONS(9818), 1, + anon_sym_catch, + STATE(568), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [220984] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8257), 1, - anon_sym_LBRACK, - ACTIONS(8255), 5, + ACTIONS(8894), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(9820), 1, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - [189847] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5413), 1, - anon_sym_LT, - ACTIONS(7802), 1, - anon_sym_LBRACK, - STATE(4951), 1, - sym_template_argument_list, - ACTIONS(7798), 3, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - [189865] = 5, + STATE(6199), 1, + aux_sym_type_definition_repeat2, + [220997] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7776), 1, - anon_sym_LBRACK, - ACTIONS(7774), 2, - anon_sym_RPAREN, - anon_sym_LPAREN2, - STATE(4877), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [189883] = 6, + ACTIONS(8894), 1, + anon_sym_COMMA, + ACTIONS(9822), 1, + anon_sym_SEMI, + STATE(6199), 1, + aux_sym_type_definition_repeat2, + [221010] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7131), 1, - anon_sym_try, - ACTIONS(7717), 1, - anon_sym_LBRACE, - ACTIONS(8259), 1, - anon_sym_SEMI, - ACTIONS(8261), 1, - anon_sym_EQ, - STATE(2318), 2, - sym_compound_statement, - sym_try_statement, - [189903] = 6, + ACTIONS(9523), 1, + sym_identifier, + ACTIONS(9824), 1, + anon_sym_RBRACE, + STATE(6782), 1, + sym_enumerator, + [221023] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7143), 1, - anon_sym_try, - ACTIONS(7673), 1, - anon_sym_LBRACE, - ACTIONS(8263), 1, + ACTIONS(8204), 1, + anon_sym_COMMA, + ACTIONS(9826), 1, anon_sym_SEMI, - ACTIONS(8265), 1, - anon_sym_EQ, - STATE(2281), 2, - sym_compound_statement, - sym_try_statement, - [189923] = 5, + STATE(6272), 1, + aux_sym_declaration_repeat1, + [221036] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7348), 1, - anon_sym_TILDE, - ACTIONS(8267), 1, + ACTIONS(9828), 1, sym_identifier, - ACTIONS(8269), 1, - anon_sym_template, - STATE(2463), 3, - sym_template_method, - sym_destructor_name, - sym_dependent_field_identifier, - [189941] = 6, + STATE(2983), 1, + sym_template_function, + STATE(3560), 1, + sym_template_type, + [221049] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7143), 1, - anon_sym_try, - ACTIONS(7673), 1, - anon_sym_LBRACE, - ACTIONS(8271), 1, - anon_sym_SEMI, - ACTIONS(8273), 1, - anon_sym_EQ, - STATE(2226), 2, - sym_compound_statement, - sym_try_statement, - [189961] = 6, + ACTIONS(8282), 1, + anon_sym_COLON, + ACTIONS(8300), 1, + anon_sym_RPAREN, + STATE(6561), 1, + sym_gnu_asm_output_operand_list, + [221062] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(255), 1, - anon_sym_LBRACE, - ACTIONS(7332), 1, - anon_sym_try, - ACTIONS(8275), 1, + ACTIONS(9830), 1, + anon_sym_COMMA, + ACTIONS(9833), 1, anon_sym_SEMI, - ACTIONS(8277), 1, - anon_sym_EQ, - STATE(550), 2, - sym_compound_statement, - sym_try_statement, - [189981] = 6, + STATE(6199), 1, + aux_sym_type_definition_repeat2, + [221075] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(666), 1, - anon_sym_LBRACE, - ACTIONS(7318), 1, - anon_sym_try, - ACTIONS(8279), 1, + ACTIONS(8894), 1, + anon_sym_COMMA, + ACTIONS(9835), 1, anon_sym_SEMI, - ACTIONS(8281), 1, - anon_sym_EQ, - STATE(1083), 2, - sym_compound_statement, - sym_try_statement, - [190001] = 6, + STATE(6199), 1, + aux_sym_type_definition_repeat2, + [221088] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(7326), 1, - anon_sym_try, - ACTIONS(8283), 1, + ACTIONS(8894), 1, + anon_sym_COMMA, + ACTIONS(9837), 1, anon_sym_SEMI, - ACTIONS(8285), 1, - anon_sym_EQ, - STATE(1068), 2, - sym_compound_statement, - sym_try_statement, - [190021] = 6, + STATE(6199), 1, + aux_sym_type_definition_repeat2, + [221101] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(255), 1, - anon_sym_LBRACE, - ACTIONS(7332), 1, - anon_sym_try, - ACTIONS(8287), 1, - anon_sym_SEMI, - ACTIONS(8289), 1, - anon_sym_EQ, - STATE(537), 2, - sym_compound_statement, - sym_try_statement, - [190041] = 6, + ACTIONS(6664), 1, + anon_sym_RBRACE, + ACTIONS(6859), 1, + anon_sym_COMMA, + STATE(6580), 1, + aux_sym_initializer_list_repeat1, + [221114] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7121), 1, - anon_sym_try, - ACTIONS(7681), 1, - anon_sym_LBRACE, - ACTIONS(8291), 1, + ACTIONS(8894), 1, + anon_sym_COMMA, + ACTIONS(9839), 1, anon_sym_SEMI, - ACTIONS(8293), 1, - anon_sym_EQ, - STATE(2092), 2, - sym_compound_statement, - sym_try_statement, - [190061] = 3, + STATE(6199), 1, + aux_sym_type_definition_repeat2, + [221127] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8297), 1, - anon_sym_LBRACK, - ACTIONS(8295), 5, + ACTIONS(8204), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(9841), 1, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - [190075] = 3, + STATE(6275), 1, + aux_sym_declaration_repeat1, + [221140] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8301), 1, - anon_sym_LBRACK, - ACTIONS(8299), 5, + ACTIONS(9843), 3, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - [190089] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8305), 1, - anon_sym_COLON_COLON, - ACTIONS(8303), 4, - sym_identifier, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_template, - [190102] = 6, + anon_sym_COLON, + [221149] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8140), 1, - anon_sym_COLON_COLON, - ACTIONS(8142), 1, - anon_sym_inline, - ACTIONS(8307), 1, - sym_identifier, - STATE(5484), 1, - sym__namespace_specifier, - STATE(5842), 1, - sym_nested_namespace_specifier, - [190121] = 5, + ACTIONS(9845), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + [221158] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6490), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6494), 1, - anon_sym_EQ, - ACTIONS(8309), 1, - sym_identifier, - ACTIONS(6492), 2, + ACTIONS(9847), 1, anon_sym_COMMA, - anon_sym_GT2, - [190138] = 5, + ACTIONS(9850), 1, + anon_sym_RPAREN, + STATE(6207), 1, + aux_sym_gnu_asm_goto_list_repeat1, + [221171] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5874), 1, - sym_auto, - ACTIONS(5876), 1, - anon_sym_decltype, - STATE(3229), 1, - sym_decltype_auto, - ACTIONS(8311), 2, - anon_sym_COMMA, - anon_sym_GT2, - [190155] = 6, + ACTIONS(9852), 1, + anon_sym_catch, + STATE(385), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [221182] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8140), 1, - anon_sym_COLON_COLON, - ACTIONS(8142), 1, - anon_sym_inline, - ACTIONS(8313), 1, + ACTIONS(9854), 1, sym_identifier, - STATE(6027), 1, - sym_nested_namespace_specifier, - STATE(6579), 1, - sym__namespace_specifier, - [190174] = 6, + STATE(2648), 1, + sym_template_type, + STATE(3186), 1, + sym_template_function, + [221195] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8140), 1, + ACTIONS(9858), 1, anon_sym_COLON_COLON, - ACTIONS(8142), 1, - anon_sym_inline, - ACTIONS(8315), 1, - sym_identifier, - STATE(6548), 1, - sym_nested_namespace_specifier, - STATE(6579), 1, - sym__namespace_specifier, - [190193] = 5, + ACTIONS(9856), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + [221206] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5874), 1, - sym_auto, - ACTIONS(5876), 1, - anon_sym_decltype, - STATE(3229), 1, - sym_decltype_auto, - ACTIONS(8317), 2, + ACTIONS(6672), 1, anon_sym_COMMA, + ACTIONS(9860), 1, anon_sym_GT2, - [190210] = 6, + STATE(6523), 1, + aux_sym_template_argument_list_repeat1, + [221219] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8140), 1, - anon_sym_COLON_COLON, - ACTIONS(8142), 1, - anon_sym_inline, - ACTIONS(8307), 1, - sym_identifier, - STATE(5478), 1, - sym__namespace_specifier, - STATE(5904), 1, - sym_nested_namespace_specifier, - [190229] = 5, + ACTIONS(8894), 1, + anon_sym_COMMA, + ACTIONS(9862), 1, + anon_sym_SEMI, + STATE(6199), 1, + aux_sym_type_definition_repeat2, + [221232] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3814), 1, - anon_sym_COLON_COLON, - ACTIONS(5413), 1, - anon_sym_LT, - STATE(5512), 1, - sym_template_argument_list, - ACTIONS(8319), 2, - anon_sym_LPAREN2, - anon_sym_LBRACE, - [190246] = 6, + ACTIONS(9864), 1, + anon_sym_COMMA, + ACTIONS(9866), 1, + anon_sym_RBRACK_RBRACK, + STATE(6504), 1, + aux_sym_attribute_declaration_repeat1, + [221245] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8140), 1, - anon_sym_COLON_COLON, - ACTIONS(8142), 1, - anon_sym_inline, - ACTIONS(8321), 1, - sym_identifier, - STATE(6315), 1, - sym_nested_namespace_specifier, - STATE(6579), 1, - sym__namespace_specifier, - [190265] = 6, + ACTIONS(9816), 1, + anon_sym_catch, + STATE(2219), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [221256] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8140), 1, - anon_sym_COLON_COLON, - ACTIONS(8142), 1, - anon_sym_inline, - ACTIONS(8323), 1, + ACTIONS(9868), 1, sym_identifier, - STATE(6425), 1, - sym_nested_namespace_specifier, - STATE(6579), 1, - sym__namespace_specifier, - [190284] = 5, + STATE(3274), 1, + sym_template_function, + STATE(3560), 1, + sym_template_type, + [221269] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5415), 1, - anon_sym_LPAREN2, - ACTIONS(8327), 1, - anon_sym_COLON_COLON, - STATE(5887), 1, - sym_argument_list, - ACTIONS(8325), 2, + ACTIONS(9870), 1, anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [190301] = 6, + ACTIONS(9872), 1, + anon_sym_GT2, + STATE(6462), 1, + aux_sym_template_parameter_list_repeat1, + [221282] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7111), 1, - anon_sym_LPAREN2, - ACTIONS(7756), 1, - anon_sym_LBRACK, - ACTIONS(8329), 1, + ACTIONS(9874), 1, + anon_sym_COMMA, + ACTIONS(9876), 1, anon_sym_RPAREN, - STATE(3482), 1, - sym_parameter_list, - STATE(4746), 1, - sym__function_declarator_seq, - [190320] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8331), 2, - anon_sym_class, - anon_sym_typename, - STATE(5879), 3, - sym_type_parameter_declaration, - sym_variadic_type_parameter_declaration, - sym_optional_type_parameter_declaration, - [190333] = 6, + STATE(6207), 1, + aux_sym_gnu_asm_goto_list_repeat1, + [221295] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7111), 1, - anon_sym_LPAREN2, - ACTIONS(7756), 1, - anon_sym_LBRACK, - ACTIONS(8333), 1, + ACTIONS(6760), 1, + anon_sym_COMMA, + ACTIONS(6791), 1, anon_sym_RPAREN, - STATE(3482), 1, - sym_parameter_list, - STATE(4746), 1, - sym__function_declarator_seq, - [190352] = 5, + STATE(6297), 1, + aux_sym_argument_list_repeat1, + [221308] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4133), 1, - anon_sym_COLON, - ACTIONS(4162), 1, + ACTIONS(4584), 1, anon_sym_LBRACE, - STATE(2427), 1, - sym_field_declaration_list, - STATE(5747), 1, - sym_base_class_clause, - [190368] = 5, - ACTIONS(3), 1, + ACTIONS(9486), 1, + anon_sym_COLON_COLON, + STATE(776), 1, + sym_declaration_list, + [221321] = 4, + ACTIONS(7927), 1, + anon_sym_LPAREN2, + ACTIONS(7929), 1, sym_comment, - ACTIONS(4133), 1, - anon_sym_COLON, - ACTIONS(4162), 1, - anon_sym_LBRACE, - STATE(2428), 1, - sym_field_declaration_list, - STATE(5746), 1, - sym_base_class_clause, - [190384] = 4, + ACTIONS(9878), 1, + anon_sym_LF, + STATE(5111), 1, + sym_preproc_argument_list, + [221334] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8335), 1, - anon_sym_EQ, - STATE(4877), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [190398] = 5, - ACTIONS(7009), 1, - sym_comment, - ACTIONS(8337), 1, - anon_sym_DQUOTE, - ACTIONS(8339), 1, - aux_sym_string_literal_token1, - ACTIONS(8341), 1, - sym_escape_sequence, - STATE(5332), 1, - aux_sym_string_literal_repeat1, - [190414] = 5, + ACTIONS(8204), 1, + anon_sym_COMMA, + ACTIONS(9880), 1, + anon_sym_SEMI, + STATE(6252), 1, + aux_sym_declaration_repeat1, + [221347] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(7665), 1, - anon_sym_COLON, - STATE(5409), 1, - sym_compound_statement, - STATE(5818), 1, - sym_field_initializer_list, - [190430] = 5, + ACTIONS(9816), 1, + anon_sym_catch, + STATE(2215), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [221358] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3942), 1, - anon_sym_LBRACE, - ACTIONS(8343), 1, - anon_sym_COLON_COLON, - ACTIONS(8345), 1, - anon_sym_EQ, - STATE(542), 1, - sym_declaration_list, - [190446] = 5, + ACTIONS(9882), 1, + anon_sym_catch, + STATE(801), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [221369] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8347), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8349), 1, + ACTIONS(6760), 1, anon_sym_COMMA, - ACTIONS(8351), 1, - anon_sym_LBRACE, - STATE(5450), 1, - aux_sym_base_class_clause_repeat1, - [190462] = 5, + ACTIONS(6795), 1, + anon_sym_RPAREN, + STATE(6304), 1, + aux_sym_argument_list_repeat1, + [221382] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6781), 1, - anon_sym_LBRACE, - ACTIONS(8353), 1, - anon_sym_LPAREN2, - STATE(3183), 1, - sym_requirement_seq, - STATE(5937), 1, - sym_requires_parameter_list, - [190478] = 5, + ACTIONS(9884), 1, + sym_identifier, + STATE(2927), 1, + sym_template_type, + STATE(3444), 1, + sym_template_function, + [221395] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4133), 1, - anon_sym_COLON, - ACTIONS(4359), 1, - anon_sym_LBRACE, - STATE(2473), 1, - sym_field_declaration_list, - STATE(5953), 1, - sym_base_class_clause, - [190494] = 5, + ACTIONS(9886), 1, + anon_sym_COMMA, + ACTIONS(9888), 1, + anon_sym_RBRACE, + STATE(6307), 1, + aux_sym_enumerator_list_repeat1, + [221408] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6831), 1, - anon_sym_LBRACE, - ACTIONS(8353), 1, - anon_sym_LPAREN2, - STATE(2560), 1, - sym_requirement_seq, - STATE(5931), 1, - sym_requires_parameter_list, - [190510] = 5, + ACTIONS(8204), 1, + anon_sym_COMMA, + ACTIONS(9890), 1, + anon_sym_SEMI, + STATE(6339), 1, + aux_sym_declaration_repeat1, + [221421] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4133), 1, - anon_sym_COLON, - ACTIONS(5721), 1, + ACTIONS(4586), 1, anon_sym_LBRACE, - STATE(3665), 1, - sym_field_declaration_list, - STATE(5809), 1, - sym_base_class_clause, - [190526] = 3, - ACTIONS(3), 1, - sym_comment, - STATE(4950), 1, - sym_access_specifier, - ACTIONS(8355), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - [190538] = 5, + ACTIONS(9486), 1, + anon_sym_COLON_COLON, + STATE(1211), 1, + sym_declaration_list, + [221434] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5799), 1, + ACTIONS(9892), 1, anon_sym_COMMA, - ACTIONS(8357), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8359), 1, - anon_sym_GT2, - STATE(5661), 1, - aux_sym_template_argument_list_repeat1, - [190554] = 4, + ACTIONS(9894), 1, + anon_sym_RBRACE, + STATE(6536), 1, + aux_sym_enumerator_list_repeat1, + [221447] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7290), 1, - anon_sym_LBRACE, - STATE(2522), 1, - sym_compound_statement, - ACTIONS(7593), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK, - [190568] = 5, + ACTIONS(9896), 1, + anon_sym_COMMA, + ACTIONS(9898), 1, + anon_sym_RBRACE, + STATE(6310), 1, + aux_sym_enumerator_list_repeat1, + [221460] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4133), 1, + ACTIONS(9900), 1, + anon_sym_RPAREN, + ACTIONS(9902), 1, anon_sym_COLON, - ACTIONS(4359), 1, - anon_sym_LBRACE, - STATE(2471), 1, - sym_field_declaration_list, - STATE(5955), 1, - sym_base_class_clause, - [190584] = 4, + STATE(6980), 1, + sym_gnu_asm_goto_list, + [221473] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8104), 1, - anon_sym_EQ, - STATE(5216), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [190598] = 3, + ACTIONS(9904), 1, + anon_sym_COMMA, + ACTIONS(9906), 1, + anon_sym_RBRACE, + STATE(6268), 1, + aux_sym_enumerator_list_repeat1, + [221486] = 4, ACTIONS(3), 1, sym_comment, - STATE(4963), 1, - sym_access_specifier, - ACTIONS(8355), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - [190610] = 5, + ACTIONS(8204), 1, + anon_sym_COMMA, + ACTIONS(9908), 1, + anon_sym_SEMI, + STATE(6339), 1, + aux_sym_declaration_repeat1, + [221499] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + ACTIONS(9486), 3, + anon_sym_SEMI, + anon_sym_COLON_COLON, anon_sym_LBRACE, - ACTIONS(7665), 1, - anon_sym_COLON, - STATE(5664), 1, - sym_compound_statement, - STATE(5812), 1, - sym_field_initializer_list, - [190626] = 4, + [221508] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7304), 1, - anon_sym_LBRACE, - STATE(3421), 1, - sym_compound_statement, - ACTIONS(7593), 2, + ACTIONS(9910), 1, anon_sym_LPAREN2, - anon_sym_LBRACK, - [190640] = 4, + ACTIONS(9912), 1, + anon_sym_constexpr, + STATE(241), 1, + sym_condition_clause, + [221521] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8361), 1, - anon_sym_EQ, - STATE(4877), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [190654] = 4, + ACTIONS(6712), 1, + anon_sym_COMMA, + ACTIONS(6714), 1, + anon_sym_RBRACE, + STATE(6311), 1, + aux_sym_initializer_list_repeat1, + [221534] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1489), 1, + ACTIONS(9914), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9916), 2, + anon_sym_COMMA, anon_sym_LBRACE, - ACTIONS(5415), 1, - anon_sym_LPAREN2, - STATE(5582), 2, - sym_argument_list, - sym_initializer_list, - [190668] = 5, + [221545] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5799), 1, + ACTIONS(6672), 1, anon_sym_COMMA, - ACTIONS(8357), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8363), 1, + ACTIONS(9918), 1, anon_sym_GT2, - STATE(5645), 1, + STATE(6189), 1, aux_sym_template_argument_list_repeat1, - [190684] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(7665), 1, - anon_sym_COLON, - STATE(5404), 1, - sym_compound_statement, - STATE(5703), 1, - sym_field_initializer_list, - [190700] = 5, + [221558] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8365), 1, - sym_identifier, - ACTIONS(8367), 1, + ACTIONS(9922), 1, + anon_sym_EQ, + ACTIONS(9920), 2, anon_sym_COMMA, - ACTIONS(8369), 1, anon_sym_RBRACE, - STATE(5638), 1, - sym_enumerator, - [190716] = 5, + [221569] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4133), 1, + ACTIONS(9924), 3, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(5445), 1, - anon_sym_LBRACE, - STATE(3212), 1, - sym_field_declaration_list, - STATE(5888), 1, - sym_base_class_clause, - [190732] = 5, + [221578] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4133), 1, + ACTIONS(8282), 1, anon_sym_COLON, - ACTIONS(4290), 1, - anon_sym_LBRACE, - STATE(2783), 1, - sym_field_declaration_list, - STATE(5915), 1, - sym_base_class_clause, - [190748] = 4, + ACTIONS(8294), 1, + anon_sym_RPAREN, + STATE(6312), 1, + sym_gnu_asm_output_operand_list, + [221591] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6672), 1, + anon_sym_COMMA, + ACTIONS(9926), 1, + anon_sym_GT2, + STATE(6278), 1, + aux_sym_template_argument_list_repeat1, + [221604] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7302), 1, + ACTIONS(4588), 1, anon_sym_LBRACE, - STATE(3181), 1, - sym_compound_statement, - ACTIONS(7593), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK, - [190762] = 5, - ACTIONS(7009), 1, + ACTIONS(9486), 1, + anon_sym_COLON_COLON, + STATE(1335), 1, + sym_declaration_list, + [221617] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(8371), 1, - anon_sym_DQUOTE, - ACTIONS(8373), 1, - aux_sym_string_literal_token1, - ACTIONS(8375), 1, - sym_escape_sequence, - STATE(5223), 1, - aux_sym_string_literal_repeat1, - [190778] = 5, + ACTIONS(9928), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + [221626] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8365), 1, - sym_identifier, - ACTIONS(8377), 1, + ACTIONS(6718), 1, anon_sym_COMMA, - ACTIONS(8379), 1, - anon_sym_RBRACE, - STATE(5380), 1, - sym_enumerator, - [190794] = 5, + ACTIONS(9930), 1, + anon_sym_RBRACK, + STATE(6521), 1, + aux_sym_lambda_capture_specifier_repeat1, + [221639] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4133), 1, - anon_sym_COLON, - ACTIONS(4290), 1, - anon_sym_LBRACE, - STATE(2773), 1, - sym_field_declaration_list, - STATE(5914), 1, - sym_base_class_clause, - [190810] = 5, + ACTIONS(9932), 1, + anon_sym_COMMA, + ACTIONS(9934), 1, + anon_sym_RPAREN, + STATE(6557), 1, + aux_sym_preproc_params_repeat1, + [221652] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5799), 1, + ACTIONS(6718), 1, anon_sym_COMMA, - ACTIONS(8357), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8381), 1, - anon_sym_GT2, - STATE(5631), 1, - aux_sym_template_argument_list_repeat1, - [190826] = 4, + ACTIONS(9936), 1, + anon_sym_RBRACK, + STATE(6521), 1, + aux_sym_lambda_capture_specifier_repeat1, + [221665] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7302), 1, - anon_sym_LBRACE, - STATE(3175), 1, - sym_compound_statement, - ACTIONS(7593), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK, - [190840] = 5, + ACTIONS(6672), 1, + anon_sym_COMMA, + ACTIONS(9938), 1, + anon_sym_GT2, + STATE(6318), 1, + aux_sym_template_argument_list_repeat1, + [221678] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7111), 1, - anon_sym_LPAREN2, - ACTIONS(7756), 1, - anon_sym_LBRACK, - STATE(3482), 1, - sym_parameter_list, - STATE(4746), 1, - sym__function_declarator_seq, - [190856] = 5, + ACTIONS(9940), 1, + anon_sym_COMMA, + ACTIONS(9943), 1, + anon_sym_RPAREN, + STATE(6249), 1, + aux_sym_generic_expression_repeat1, + [221691] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4133), 1, - anon_sym_COLON, - ACTIONS(5445), 1, + ACTIONS(9945), 3, + anon_sym_SEMI, + anon_sym_COLON_COLON, anon_sym_LBRACE, - STATE(3215), 1, - sym_field_declaration_list, - STATE(5892), 1, - sym_base_class_clause, - [190872] = 5, + [221700] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4133), 1, - anon_sym_COLON, - ACTIONS(5721), 1, - anon_sym_LBRACE, - STATE(3677), 1, - sym_field_declaration_list, - STATE(5813), 1, - sym_base_class_clause, - [190888] = 5, + ACTIONS(8204), 1, + anon_sym_COMMA, + ACTIONS(9947), 1, + anon_sym_SEMI, + STATE(6339), 1, + aux_sym_declaration_repeat1, + [221713] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5799), 1, + ACTIONS(8204), 1, anon_sym_COMMA, - ACTIONS(8357), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8383), 1, - anon_sym_GT2, - STATE(5541), 1, - aux_sym_template_argument_list_repeat1, - [190904] = 5, - ACTIONS(7009), 1, + ACTIONS(9949), 1, + anon_sym_SEMI, + STATE(6339), 1, + aux_sym_declaration_repeat1, + [221726] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(8385), 1, - anon_sym_LF, - ACTIONS(8387), 1, - anon_sym_LPAREN, - ACTIONS(8389), 1, - sym_preproc_arg, - STATE(5791), 1, - sym_preproc_params, - [190920] = 5, + ACTIONS(9951), 1, + anon_sym_COMMA, + ACTIONS(9953), 1, + anon_sym_RBRACE, + STATE(6186), 1, + aux_sym_enumerator_list_repeat1, + [221739] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4133), 1, - anon_sym_COLON, - ACTIONS(4359), 1, - anon_sym_LBRACE, - STATE(2527), 1, - sym_field_declaration_list, - STATE(5971), 1, - sym_base_class_clause, - [190936] = 4, + ACTIONS(5548), 1, + anon_sym_COMMA, + ACTIONS(9955), 1, + anon_sym_RBRACK, + STATE(6511), 1, + aux_sym_structured_binding_declarator_repeat1, + [221752] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8026), 1, - anon_sym_EQ, - STATE(5242), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [190950] = 5, + ACTIONS(7895), 1, + anon_sym_COMMA, + ACTIONS(9957), 1, + anon_sym_RPAREN, + STATE(6547), 1, + aux_sym_preproc_argument_list_repeat1, + [221765] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3814), 1, - anon_sym_COLON_COLON, - ACTIONS(5413), 1, - anon_sym_LT, - ACTIONS(8391), 1, - anon_sym_SEMI, - STATE(3135), 1, - sym_template_argument_list, - [190966] = 5, + ACTIONS(9959), 1, + anon_sym_catch, + STATE(2257), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [221776] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4133), 1, - anon_sym_COLON, - ACTIONS(5721), 1, - anon_sym_LBRACE, - STATE(3678), 1, - sym_field_declaration_list, - STATE(5815), 1, - sym_base_class_clause, - [190982] = 4, + ACTIONS(6760), 1, + anon_sym_COMMA, + ACTIONS(6762), 1, + anon_sym_RPAREN, + STATE(6505), 1, + aux_sym_argument_list_repeat1, + [221789] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7312), 1, - anon_sym_LBRACE, - STATE(4754), 1, - sym_compound_statement, - ACTIONS(7593), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK, - [190996] = 4, + ACTIONS(9523), 1, + sym_identifier, + ACTIONS(9961), 1, + anon_sym_RBRACE, + STATE(6782), 1, + sym_enumerator, + [221802] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8062), 1, - anon_sym_EQ, - STATE(5249), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [191010] = 4, + ACTIONS(6760), 1, + anon_sym_COMMA, + ACTIONS(6819), 1, + anon_sym_RPAREN, + STATE(6388), 1, + aux_sym_argument_list_repeat1, + [221815] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7312), 1, - anon_sym_LBRACE, - STATE(4790), 1, - sym_compound_statement, - ACTIONS(7593), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK, - [191024] = 5, + ACTIONS(9864), 1, + anon_sym_COMMA, + ACTIONS(9963), 1, + anon_sym_RBRACK_RBRACK, + STATE(6504), 1, + aux_sym_attribute_declaration_repeat1, + [221828] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5799), 1, + ACTIONS(9965), 1, anon_sym_COMMA, - ACTIONS(8357), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8393), 1, - anon_sym_GT2, - STATE(5614), 1, - aux_sym_template_argument_list_repeat1, - [191040] = 5, + ACTIONS(9968), 1, + anon_sym_RBRACE, + STATE(6261), 1, + aux_sym_enumerator_list_repeat1, + [221841] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(7665), 1, - anon_sym_COLON, - STATE(5595), 1, - sym_compound_statement, - STATE(5886), 1, - sym_field_initializer_list, - [191056] = 4, + ACTIONS(6787), 1, + anon_sym_COMMA, + ACTIONS(6789), 1, + anon_sym_RBRACE, + STATE(6357), 1, + aux_sym_initializer_list_repeat1, + [221854] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7304), 1, - anon_sym_LBRACE, - STATE(3428), 1, - sym_compound_statement, - ACTIONS(7593), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK, - [191070] = 4, + ACTIONS(8282), 1, + anon_sym_COLON, + ACTIONS(8429), 1, + anon_sym_RPAREN, + STATE(6375), 1, + sym_gnu_asm_output_operand_list, + [221867] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7312), 1, - anon_sym_LBRACE, - STATE(4778), 1, - sym_compound_statement, - ACTIONS(7593), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK, - [191084] = 5, + ACTIONS(8894), 1, + anon_sym_COMMA, + ACTIONS(9970), 1, + anon_sym_SEMI, + STATE(6199), 1, + aux_sym_type_definition_repeat2, + [221880] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3767), 1, - anon_sym_LT, - ACTIONS(8395), 1, - sym_identifier, - STATE(1120), 1, - sym_template_parameter_list, - STATE(3136), 1, - sym_template_type, - [191100] = 2, + ACTIONS(9864), 1, + anon_sym_COMMA, + ACTIONS(9972), 1, + anon_sym_RBRACK_RBRACK, + STATE(6298), 1, + aux_sym_attribute_declaration_repeat1, + [221893] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8397), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [191110] = 5, + ACTIONS(6672), 1, + anon_sym_COMMA, + ACTIONS(9974), 1, + anon_sym_GT2, + STATE(6417), 1, + aux_sym_template_argument_list_repeat1, + [221906] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8365), 1, + ACTIONS(9523), 1, sym_identifier, - ACTIONS(8399), 1, - anon_sym_COMMA, - ACTIONS(8401), 1, + ACTIONS(9976), 1, anon_sym_RBRACE, - STATE(5548), 1, + STATE(6782), 1, sym_enumerator, - [191126] = 4, + [221919] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8403), 1, - anon_sym_EQ, - STATE(4877), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [191140] = 4, + ACTIONS(9976), 1, + anon_sym_RBRACE, + ACTIONS(9978), 1, + anon_sym_COMMA, + STATE(6261), 1, + aux_sym_enumerator_list_repeat1, + [221932] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7290), 1, - anon_sym_LBRACE, - STATE(2552), 1, - sym_compound_statement, - ACTIONS(7593), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK, - [191154] = 5, + ACTIONS(9870), 1, + anon_sym_COMMA, + ACTIONS(9980), 1, + anon_sym_GT2, + STATE(6429), 1, + aux_sym_template_parameter_list_repeat1, + [221945] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4133), 1, - anon_sym_COLON, - ACTIONS(4830), 1, - anon_sym_LBRACE, - STATE(2914), 1, - sym_field_declaration_list, - STATE(5787), 1, - sym_base_class_clause, - [191170] = 2, + ACTIONS(8204), 1, + anon_sym_COMMA, + ACTIONS(9982), 1, + anon_sym_SEMI, + STATE(6339), 1, + aux_sym_declaration_repeat1, + [221958] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8397), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [191180] = 5, + ACTIONS(9984), 1, + sym_identifier, + STATE(2648), 1, + sym_template_type, + STATE(3274), 1, + sym_template_function, + [221971] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3814), 1, - anon_sym_COLON_COLON, - ACTIONS(5413), 1, - anon_sym_LT, - ACTIONS(8405), 1, + ACTIONS(8204), 1, + anon_sym_COMMA, + ACTIONS(9986), 1, anon_sym_SEMI, - STATE(3135), 1, - sym_template_argument_list, - [191196] = 5, - ACTIONS(7009), 1, - sym_comment, - ACTIONS(8407), 1, - anon_sym_DQUOTE, - ACTIONS(8409), 1, - aux_sym_string_literal_token1, - ACTIONS(8411), 1, - sym_escape_sequence, - STATE(5307), 1, - aux_sym_string_literal_repeat1, - [191212] = 5, + STATE(6339), 1, + aux_sym_declaration_repeat1, + [221984] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4133), 1, - anon_sym_COLON, - ACTIONS(6757), 1, - anon_sym_LBRACE, - STATE(4249), 1, - sym_field_declaration_list, - STATE(5687), 1, - sym_base_class_clause, - [191228] = 5, - ACTIONS(7009), 1, - sym_comment, - ACTIONS(8339), 1, - aux_sym_string_literal_token1, - ACTIONS(8341), 1, - sym_escape_sequence, - ACTIONS(8413), 1, - anon_sym_DQUOTE, - STATE(5332), 1, - aux_sym_string_literal_repeat1, - [191244] = 5, + ACTIONS(8204), 1, + anon_sym_COMMA, + ACTIONS(9988), 1, + anon_sym_SEMI, + STATE(6339), 1, + aux_sym_declaration_repeat1, + [221997] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5799), 1, + ACTIONS(8204), 1, anon_sym_COMMA, - ACTIONS(8357), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8415), 1, - anon_sym_GT2, - STATE(5635), 1, - aux_sym_template_argument_list_repeat1, - [191260] = 4, + ACTIONS(9990), 1, + anon_sym_SEMI, + STATE(6227), 1, + aux_sym_declaration_repeat1, + [222010] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - STATE(1869), 1, - sym_compound_statement, - ACTIONS(7593), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK, - [191274] = 5, + ACTIONS(8204), 1, + anon_sym_COMMA, + ACTIONS(9992), 1, + anon_sym_SEMI, + STATE(6339), 1, + aux_sym_declaration_repeat1, + [222023] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8349), 1, + ACTIONS(6672), 1, anon_sym_COMMA, - ACTIONS(8417), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8419), 1, - anon_sym_LBRACE, - STATE(5648), 1, - aux_sym_base_class_clause_repeat1, - [191290] = 5, + ACTIONS(9994), 1, + anon_sym_GT2, + STATE(6393), 1, + aux_sym_template_argument_list_repeat1, + [222036] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4133), 1, - anon_sym_COLON, - ACTIONS(6757), 1, - anon_sym_LBRACE, - STATE(4209), 1, - sym_field_declaration_list, - STATE(5689), 1, - sym_base_class_clause, - [191306] = 5, + ACTIONS(6672), 1, + anon_sym_COMMA, + ACTIONS(9996), 1, + anon_sym_GT2, + STATE(6393), 1, + aux_sym_template_argument_list_repeat1, + [222049] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5799), 1, + ACTIONS(6672), 1, anon_sym_COMMA, - ACTIONS(8357), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8421), 1, + ACTIONS(9998), 1, anon_sym_GT2, - STATE(5565), 1, + STATE(6393), 1, aux_sym_template_argument_list_repeat1, - [191322] = 5, + [222062] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4133), 1, - anon_sym_COLON, - ACTIONS(6757), 1, - anon_sym_LBRACE, - STATE(4201), 1, - sym_field_declaration_list, - STATE(5691), 1, - sym_base_class_clause, - [191338] = 5, + ACTIONS(6666), 1, + anon_sym_COMMA, + ACTIONS(10000), 1, + anon_sym_RPAREN, + STATE(6249), 1, + aux_sym_generic_expression_repeat1, + [222075] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4133), 1, + ACTIONS(9902), 1, anon_sym_COLON, - ACTIONS(5721), 1, - anon_sym_LBRACE, - STATE(3660), 1, - sym_field_declaration_list, - STATE(5823), 1, - sym_base_class_clause, - [191354] = 4, + ACTIONS(10002), 1, + anon_sym_RPAREN, + STATE(7377), 1, + sym_gnu_asm_goto_list, + [222088] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7270), 1, - anon_sym_LBRACE, - STATE(3047), 1, - sym_compound_statement, - ACTIONS(7593), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK, - [191368] = 5, + ACTIONS(10004), 1, + anon_sym_catch, + STATE(2357), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [222099] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4133), 1, - anon_sym_COLON, - ACTIONS(5721), 1, - anon_sym_LBRACE, - STATE(3656), 1, - sym_field_declaration_list, - STATE(5824), 1, - sym_base_class_clause, - [191384] = 5, - ACTIONS(7009), 1, - sym_comment, - ACTIONS(8387), 1, - anon_sym_LPAREN, - ACTIONS(8423), 1, - anon_sym_LF, - ACTIONS(8425), 1, - sym_preproc_arg, - STATE(5907), 1, - sym_preproc_params, - [191400] = 5, + ACTIONS(5548), 1, + anon_sym_COMMA, + ACTIONS(10006), 1, + anon_sym_RBRACK, + STATE(6254), 1, + aux_sym_structured_binding_declarator_repeat1, + [222112] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8353), 1, - anon_sym_LPAREN2, - ACTIONS(8427), 1, - anon_sym_LBRACE, - STATE(1884), 1, - sym_requirement_seq, - STATE(5764), 1, - sym_requires_parameter_list, - [191416] = 5, + ACTIONS(9959), 1, + anon_sym_catch, + STATE(2233), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [222123] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3767), 1, - anon_sym_LT, - ACTIONS(8395), 1, - sym_identifier, - STATE(1118), 1, - sym_template_parameter_list, - STATE(3136), 1, - sym_template_type, - [191432] = 5, + ACTIONS(10008), 1, + anon_sym_COMMA, + ACTIONS(10010), 1, + anon_sym_RPAREN, + STATE(6435), 1, + aux_sym_requires_parameter_list_repeat1, + [222136] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8429), 1, - anon_sym_SEMI, - ACTIONS(8431), 1, - anon_sym_DASH_GT, - ACTIONS(8433), 1, - anon_sym_noexcept, - STATE(6519), 1, - sym_trailing_return_type, - [191448] = 4, + ACTIONS(9818), 1, + anon_sym_catch, + STATE(619), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [222147] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8090), 1, - anon_sym_EQ, - STATE(5345), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [191462] = 4, + ACTIONS(8894), 1, + anon_sym_COMMA, + ACTIONS(10012), 1, + anon_sym_SEMI, + STATE(6199), 1, + aux_sym_type_definition_repeat2, + [222160] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - STATE(1860), 1, - sym_compound_statement, - ACTIONS(7593), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK, - [191476] = 4, + ACTIONS(8894), 1, + anon_sym_COMMA, + ACTIONS(10014), 1, + anon_sym_SEMI, + STATE(6199), 1, + aux_sym_type_definition_repeat2, + [222173] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7268), 1, - anon_sym_LBRACE, - STATE(2927), 1, - sym_compound_statement, - ACTIONS(7593), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK, - [191490] = 5, + ACTIONS(10016), 1, + anon_sym_catch, + STATE(1442), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [222184] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4133), 1, - anon_sym_COLON, - ACTIONS(4290), 1, - anon_sym_LBRACE, - STATE(2765), 1, - sym_field_declaration_list, - STATE(5905), 1, - sym_base_class_clause, - [191506] = 5, + ACTIONS(9523), 1, + sym_identifier, + ACTIONS(10018), 1, + anon_sym_RBRACE, + STATE(6782), 1, + sym_enumerator, + [222197] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5799), 1, + ACTIONS(8204), 1, anon_sym_COMMA, - ACTIONS(8357), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8435), 1, - anon_sym_GT2, - STATE(5580), 1, - aux_sym_template_argument_list_repeat1, - [191522] = 4, + ACTIONS(10020), 1, + anon_sym_SEMI, + STATE(6339), 1, + aux_sym_declaration_repeat1, + [222210] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8437), 1, - anon_sym_EQ, - STATE(4877), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [191536] = 5, + ACTIONS(8204), 1, + anon_sym_COMMA, + ACTIONS(10022), 1, + anon_sym_SEMI, + STATE(6339), 1, + aux_sym_declaration_repeat1, + [222223] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4133), 1, - anon_sym_COLON, - ACTIONS(6757), 1, - anon_sym_LBRACE, - STATE(4256), 1, - sym_field_declaration_list, - STATE(5693), 1, - sym_base_class_clause, - [191552] = 5, + ACTIONS(10024), 1, + anon_sym_COMMA, + ACTIONS(10026), 1, + anon_sym_RPAREN, + STATE(6427), 1, + aux_sym_parameter_list_repeat1, + [222236] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4133), 1, + ACTIONS(10028), 1, + anon_sym_RPAREN, + ACTIONS(10030), 1, anon_sym_COLON, - ACTIONS(4290), 1, - anon_sym_LBRACE, - STATE(2766), 1, - sym_field_declaration_list, - STATE(5902), 1, - sym_base_class_clause, - [191568] = 5, + STATE(6280), 1, + sym_gnu_asm_clobber_list, + [222249] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4133), 1, + ACTIONS(9902), 1, anon_sym_COLON, - ACTIONS(6757), 1, - anon_sym_LBRACE, - STATE(4241), 1, - sym_field_declaration_list, - STATE(5694), 1, - sym_base_class_clause, - [191584] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8098), 1, - anon_sym_EQ, - STATE(5263), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [191598] = 5, - ACTIONS(7009), 1, - sym_comment, - ACTIONS(8339), 1, - aux_sym_string_literal_token1, - ACTIONS(8341), 1, - sym_escape_sequence, - ACTIONS(8439), 1, - anon_sym_DQUOTE, - STATE(5332), 1, - aux_sym_string_literal_repeat1, - [191614] = 4, + ACTIONS(10032), 1, + anon_sym_RPAREN, + STATE(7378), 1, + sym_gnu_asm_goto_list, + [222262] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7270), 1, - anon_sym_LBRACE, - STATE(3064), 1, - sym_compound_statement, - ACTIONS(7593), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK, - [191628] = 4, + ACTIONS(9864), 1, + anon_sym_COMMA, + ACTIONS(10034), 1, + anon_sym_RBRACK_RBRACK, + STATE(6213), 1, + aux_sym_attribute_declaration_repeat1, + [222275] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8441), 1, - anon_sym_EQ, - STATE(4877), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [191642] = 4, + ACTIONS(8894), 1, + anon_sym_COMMA, + ACTIONS(10036), 1, + anon_sym_SEMI, + STATE(6199), 1, + aux_sym_type_definition_repeat2, + [222288] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - STATE(1874), 1, - sym_compound_statement, - ACTIONS(7593), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK, - [191656] = 4, + ACTIONS(6760), 1, + anon_sym_COMMA, + ACTIONS(10038), 1, + anon_sym_RPAREN, + STATE(6183), 1, + aux_sym_argument_list_repeat1, + [222301] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7304), 1, - anon_sym_LBRACE, - STATE(3401), 1, - sym_compound_statement, - ACTIONS(7593), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK, - [191670] = 5, + ACTIONS(9864), 1, + anon_sym_COMMA, + ACTIONS(10040), 1, + anon_sym_RBRACK_RBRACK, + STATE(6504), 1, + aux_sym_attribute_declaration_repeat1, + [222314] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8353), 1, - anon_sym_LPAREN2, - ACTIONS(8443), 1, - anon_sym_LBRACE, - STATE(4811), 1, - sym_requirement_seq, - STATE(5702), 1, - sym_requires_parameter_list, - [191686] = 5, + ACTIONS(9523), 1, + sym_identifier, + ACTIONS(10042), 1, + anon_sym_RBRACE, + STATE(6782), 1, + sym_enumerator, + [222327] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4133), 1, - anon_sym_COLON, - ACTIONS(4290), 1, - anon_sym_LBRACE, - STATE(2818), 1, - sym_field_declaration_list, - STATE(5900), 1, - sym_base_class_clause, - [191702] = 5, + ACTIONS(8894), 1, + anon_sym_COMMA, + ACTIONS(10044), 1, + anon_sym_SEMI, + STATE(6199), 1, + aux_sym_type_definition_repeat2, + [222340] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4133), 1, - anon_sym_COLON, - ACTIONS(6757), 1, - anon_sym_LBRACE, - STATE(4202), 1, - sym_field_declaration_list, - STATE(5700), 1, - sym_base_class_clause, - [191718] = 5, - ACTIONS(7009), 1, - sym_comment, - ACTIONS(8387), 1, - anon_sym_LPAREN, - ACTIONS(8445), 1, - anon_sym_LF, - ACTIONS(8447), 1, - sym_preproc_arg, - STATE(5929), 1, - sym_preproc_params, - [191734] = 5, + ACTIONS(8894), 1, + anon_sym_COMMA, + ACTIONS(10046), 1, + anon_sym_SEMI, + STATE(6199), 1, + aux_sym_type_definition_repeat2, + [222353] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4133), 1, + ACTIONS(10048), 1, + anon_sym_RPAREN, + ACTIONS(10050), 1, anon_sym_COLON, - ACTIONS(4830), 1, - anon_sym_LBRACE, - STATE(2881), 1, - sym_field_declaration_list, - STATE(5779), 1, - sym_base_class_clause, - [191750] = 5, + STATE(6293), 1, + sym_gnu_asm_input_operand_list, + [222366] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6845), 1, - anon_sym_LBRACE, - ACTIONS(8353), 1, - anon_sym_LPAREN2, - STATE(3434), 1, - sym_requirement_seq, - STATE(5838), 1, - sym_requires_parameter_list, - [191766] = 5, + ACTIONS(10030), 1, + anon_sym_COLON, + ACTIONS(10052), 1, + anon_sym_RPAREN, + STATE(6294), 1, + sym_gnu_asm_clobber_list, + [222379] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4133), 1, - anon_sym_COLON, - ACTIONS(4830), 1, - anon_sym_LBRACE, - STATE(2887), 1, - sym_field_declaration_list, - STATE(5778), 1, - sym_base_class_clause, - [191782] = 5, + ACTIONS(6760), 1, + anon_sym_COMMA, + ACTIONS(10054), 1, + anon_sym_RPAREN, + STATE(6183), 1, + aux_sym_argument_list_repeat1, + [222392] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8365), 1, + ACTIONS(9523), 1, sym_identifier, - ACTIONS(8449), 1, - anon_sym_COMMA, - ACTIONS(8451), 1, + ACTIONS(10056), 1, anon_sym_RBRACE, - STATE(5554), 1, + STATE(6782), 1, sym_enumerator, - [191798] = 5, + [222405] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5799), 1, + ACTIONS(9874), 1, anon_sym_COMMA, - ACTIONS(8357), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8453), 1, - anon_sym_GT2, - STATE(5519), 1, - aux_sym_template_argument_list_repeat1, - [191814] = 5, + ACTIONS(10058), 1, + anon_sym_RPAREN, + STATE(6217), 1, + aux_sym_gnu_asm_goto_list_repeat1, + [222418] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3767), 1, - anon_sym_LT, - ACTIONS(8395), 1, + ACTIONS(10042), 1, + anon_sym_RBRACE, + ACTIONS(10060), 1, + anon_sym_COMMA, + STATE(6261), 1, + aux_sym_enumerator_list_repeat1, + [222431] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10062), 1, sym_identifier, - STATE(1123), 1, - sym_template_parameter_list, - STATE(3136), 1, + STATE(2856), 1, + sym_template_function, + STATE(3560), 1, sym_template_type, - [191830] = 4, + [222444] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7290), 1, - anon_sym_LBRACE, - STATE(2498), 1, - sym_compound_statement, - ACTIONS(7593), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK, - [191844] = 4, + ACTIONS(8894), 1, + anon_sym_COMMA, + ACTIONS(10064), 1, + anon_sym_SEMI, + STATE(6199), 1, + aux_sym_type_definition_repeat2, + [222457] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8455), 1, - anon_sym_EQ, - STATE(4877), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [191858] = 5, + ACTIONS(10056), 1, + anon_sym_RBRACE, + ACTIONS(10066), 1, + anon_sym_COMMA, + STATE(6261), 1, + aux_sym_enumerator_list_repeat1, + [222470] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3932), 1, - anon_sym_LBRACE, - ACTIONS(8343), 1, - anon_sym_COLON_COLON, - ACTIONS(8457), 1, - anon_sym_EQ, - STATE(1000), 1, - sym_declaration_list, - [191874] = 5, + ACTIONS(3994), 1, + anon_sym_RBRACE, + ACTIONS(10068), 1, + anon_sym_COMMA, + STATE(6381), 1, + aux_sym_initializer_list_repeat1, + [222483] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5799), 1, - anon_sym_COMMA, - ACTIONS(8357), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8459), 1, - anon_sym_GT2, - STATE(5465), 1, - aux_sym_template_argument_list_repeat1, - [191890] = 4, + ACTIONS(10050), 1, + anon_sym_COLON, + ACTIONS(10070), 1, + anon_sym_RPAREN, + STATE(6378), 1, + sym_gnu_asm_input_operand_list, + [222496] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8030), 1, - anon_sym_EQ, - STATE(5279), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [191904] = 4, + ACTIONS(8282), 1, + anon_sym_COLON, + ACTIONS(8390), 1, + anon_sym_RPAREN, + STATE(6386), 1, + sym_gnu_asm_output_operand_list, + [222509] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8461), 1, - anon_sym_EQ, - STATE(4877), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [191918] = 5, + ACTIONS(6672), 1, + anon_sym_COMMA, + ACTIONS(10072), 1, + anon_sym_GT2, + STATE(6393), 1, + aux_sym_template_argument_list_repeat1, + [222522] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4133), 1, - anon_sym_COLON, - ACTIONS(4290), 1, + ACTIONS(9587), 1, + anon_sym_COMMA, + ACTIONS(9589), 1, anon_sym_LBRACE, - STATE(2800), 1, - sym_field_declaration_list, - STATE(5899), 1, - sym_base_class_clause, - [191934] = 5, + STATE(6340), 1, + aux_sym_base_class_clause_repeat1, + [222535] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + ACTIONS(10074), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(10076), 2, + anon_sym_COMMA, anon_sym_LBRACE, - ACTIONS(7665), 1, - anon_sym_COLON, - STATE(5505), 1, - sym_compound_statement, - STATE(5794), 1, - sym_field_initializer_list, - [191950] = 5, + [222546] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3814), 1, - anon_sym_COLON_COLON, - ACTIONS(5413), 1, - anon_sym_LT, - ACTIONS(8463), 1, - anon_sym_SEMI, - STATE(3135), 1, - sym_template_argument_list, - [191966] = 5, - ACTIONS(7009), 1, - sym_comment, - ACTIONS(8465), 1, - anon_sym_DQUOTE, - ACTIONS(8467), 1, - aux_sym_string_literal_token1, - ACTIONS(8469), 1, - sym_escape_sequence, - STATE(5168), 1, - aux_sym_string_literal_repeat1, - [191982] = 5, + ACTIONS(6672), 1, + anon_sym_COMMA, + ACTIONS(10078), 1, + anon_sym_GT2, + STATE(6393), 1, + aux_sym_template_argument_list_repeat1, + [222559] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5799), 1, + ACTIONS(6672), 1, anon_sym_COMMA, - ACTIONS(8357), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8471), 1, + ACTIONS(10080), 1, anon_sym_GT2, - STATE(5606), 1, + STATE(6393), 1, aux_sym_template_argument_list_repeat1, - [191998] = 5, - ACTIONS(7009), 1, - sym_comment, - ACTIONS(8339), 1, - aux_sym_string_literal_token1, - ACTIONS(8341), 1, - sym_escape_sequence, - ACTIONS(8473), 1, - anon_sym_DQUOTE, - STATE(5332), 1, - aux_sym_string_literal_repeat1, - [192014] = 5, + [222572] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4133), 1, - anon_sym_COLON, - ACTIONS(4255), 1, + ACTIONS(10082), 1, + anon_sym_COMMA, + ACTIONS(10084), 1, anon_sym_LBRACE, - STATE(2645), 1, - sym_field_declaration_list, - STATE(5707), 1, - sym_base_class_clause, - [192030] = 4, + STATE(6347), 1, + aux_sym_field_initializer_list_repeat1, + [222585] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7286), 1, - anon_sym_LBRACE, - STATE(4587), 1, - sym_compound_statement, - ACTIONS(7593), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK, - [192044] = 5, + ACTIONS(6672), 1, + anon_sym_COMMA, + ACTIONS(10086), 1, + anon_sym_GT2, + STATE(6393), 1, + aux_sym_template_argument_list_repeat1, + [222598] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6821), 1, - anon_sym_LBRACE, - ACTIONS(8353), 1, - anon_sym_LPAREN2, - STATE(3044), 1, - sym_requirement_seq, - STATE(5988), 1, - sym_requires_parameter_list, - [192060] = 5, + ACTIONS(9882), 1, + anon_sym_catch, + STATE(811), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [222609] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4133), 1, + ACTIONS(10088), 3, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(4255), 1, - anon_sym_LBRACE, - STATE(2626), 1, - sym_field_declaration_list, - STATE(5708), 1, - sym_base_class_clause, - [192076] = 5, + [222618] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3814), 1, - anon_sym_COLON_COLON, - ACTIONS(5413), 1, - anon_sym_LT, - ACTIONS(8475), 1, - anon_sym_SEMI, - STATE(3135), 1, - sym_template_argument_list, - [192092] = 4, + ACTIONS(10090), 1, + sym_identifier, + STATE(2856), 1, + sym_template_function, + STATE(3560), 1, + sym_template_type, + [222631] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8477), 1, - anon_sym_EQ, - STATE(4877), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [192106] = 5, + ACTIONS(10004), 1, + anon_sym_catch, + STATE(2348), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [222642] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6666), 1, + anon_sym_COMMA, + ACTIONS(10092), 1, + anon_sym_RPAREN, + STATE(6249), 1, + aux_sym_generic_expression_repeat1, + [222655] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4133), 1, + ACTIONS(10094), 3, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(4255), 1, - anon_sym_LBRACE, - STATE(2624), 1, - sym_field_declaration_list, - STATE(5710), 1, - sym_base_class_clause, - [192122] = 4, + [222664] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8034), 1, - anon_sym_EQ, - STATE(5267), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [192136] = 5, + ACTIONS(9959), 1, + anon_sym_catch, + STATE(2252), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [222675] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10098), 1, + anon_sym_RPAREN, + ACTIONS(10096), 2, + anon_sym_DOT_DOT_DOT, + sym_identifier, + [222686] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4133), 1, + ACTIONS(9902), 1, anon_sym_COLON, - ACTIONS(5721), 1, - anon_sym_LBRACE, - STATE(3629), 1, - sym_field_declaration_list, - STATE(5833), 1, - sym_base_class_clause, - [192152] = 4, + ACTIONS(10100), 1, + anon_sym_RPAREN, + STATE(7143), 1, + sym_gnu_asm_goto_list, + [222699] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7286), 1, - anon_sym_LBRACE, - STATE(4535), 1, - sym_compound_statement, - ACTIONS(7593), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK, - [192166] = 4, + ACTIONS(10102), 1, + sym_identifier, + STATE(2915), 1, + sym_template_method, + STATE(3560), 1, + sym_template_type, + [222712] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7268), 1, - anon_sym_LBRACE, - STATE(3017), 1, - sym_compound_statement, - ACTIONS(7593), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK, - [192180] = 5, + ACTIONS(10030), 1, + anon_sym_COLON, + ACTIONS(10104), 1, + anon_sym_RPAREN, + STATE(6329), 1, + sym_gnu_asm_clobber_list, + [222725] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8365), 1, + ACTIONS(9523), 1, sym_identifier, - ACTIONS(8479), 1, - anon_sym_COMMA, - ACTIONS(8481), 1, + ACTIONS(10106), 1, anon_sym_RBRACE, - STATE(5568), 1, + STATE(6782), 1, sym_enumerator, - [192196] = 5, + [222738] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5799), 1, + ACTIONS(8894), 1, anon_sym_COMMA, - ACTIONS(8357), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8483), 1, - anon_sym_GT2, - STATE(5510), 1, - aux_sym_template_argument_list_repeat1, - [192212] = 5, - ACTIONS(7009), 1, - sym_comment, - ACTIONS(8485), 1, - anon_sym_DQUOTE, - ACTIONS(8487), 1, - aux_sym_string_literal_token1, - ACTIONS(8489), 1, - sym_escape_sequence, - STATE(5316), 1, - aux_sym_string_literal_repeat1, - [192228] = 5, + ACTIONS(10108), 1, + anon_sym_SEMI, + STATE(6199), 1, + aux_sym_type_definition_repeat2, + [222751] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4131), 1, - anon_sym_LBRACE, - ACTIONS(4133), 1, - anon_sym_COLON, - STATE(2121), 1, - sym_field_declaration_list, - STATE(5856), 1, - sym_base_class_clause, - [192244] = 5, + ACTIONS(8204), 1, + anon_sym_COMMA, + ACTIONS(10110), 1, + anon_sym_SEMI, + STATE(6364), 1, + aux_sym_declaration_repeat1, + [222764] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4133), 1, - anon_sym_COLON, - ACTIONS(4255), 1, - anon_sym_LBRACE, - STATE(2611), 1, - sym_field_declaration_list, - STATE(5717), 1, - sym_base_class_clause, - [192260] = 5, + ACTIONS(8894), 1, + anon_sym_COMMA, + ACTIONS(10112), 1, + anon_sym_SEMI, + STATE(6199), 1, + aux_sym_type_definition_repeat2, + [222777] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4133), 1, + ACTIONS(9902), 1, anon_sym_COLON, - ACTIONS(4255), 1, - anon_sym_LBRACE, - STATE(2610), 1, - sym_field_declaration_list, - STATE(5718), 1, - sym_base_class_clause, - [192276] = 5, - ACTIONS(7009), 1, + ACTIONS(10114), 1, + anon_sym_RPAREN, + STATE(7141), 1, + sym_gnu_asm_goto_list, + [222790] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(8387), 1, - anon_sym_LPAREN, - ACTIONS(8491), 1, - anon_sym_LF, - ACTIONS(8493), 1, - sym_preproc_arg, - STATE(5876), 1, - sym_preproc_params, - [192292] = 5, + ACTIONS(8894), 1, + anon_sym_COMMA, + ACTIONS(10116), 1, + anon_sym_SEMI, + STATE(6199), 1, + aux_sym_type_definition_repeat2, + [222803] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4133), 1, - anon_sym_COLON, - ACTIONS(5445), 1, - anon_sym_LBRACE, - STATE(3240), 1, - sym_field_declaration_list, - STATE(5958), 1, - sym_base_class_clause, - [192308] = 4, + ACTIONS(10118), 1, + sym_identifier, + STATE(3444), 1, + sym_template_function, + STATE(3560), 1, + sym_template_type, + [222816] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7286), 1, - anon_sym_LBRACE, - STATE(4558), 1, - sym_compound_statement, - ACTIONS(7593), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK, - [192322] = 5, + ACTIONS(10120), 1, + anon_sym_COMMA, + ACTIONS(10123), 1, + anon_sym_SEMI, + STATE(6339), 1, + aux_sym_declaration_repeat1, + [222829] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4133), 1, - anon_sym_COLON, - ACTIONS(4359), 1, + ACTIONS(10076), 1, anon_sym_LBRACE, - STATE(2512), 1, - sym_field_declaration_list, - STATE(5950), 1, - sym_base_class_clause, - [192338] = 5, + ACTIONS(10125), 1, + anon_sym_COMMA, + STATE(6340), 1, + aux_sym_base_class_clause_repeat1, + [222842] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8349), 1, + ACTIONS(6851), 1, anon_sym_COMMA, - ACTIONS(8495), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8497), 1, - anon_sym_LBRACE, - STATE(5665), 1, - aux_sym_base_class_clause_repeat1, - [192354] = 5, + ACTIONS(6853), 1, + anon_sym_RBRACE, + STATE(6374), 1, + aux_sym_initializer_list_repeat1, + [222855] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4133), 1, + ACTIONS(10050), 1, anon_sym_COLON, - ACTIONS(4830), 1, - anon_sym_LBRACE, - STATE(2999), 1, - sym_field_declaration_list, - STATE(5774), 1, - sym_base_class_clause, - [192370] = 5, + ACTIONS(10128), 1, + anon_sym_RPAREN, + STATE(6331), 1, + sym_gnu_asm_input_operand_list, + [222868] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6807), 1, - anon_sym_LBRACE, - ACTIONS(8353), 1, - anon_sym_LPAREN2, - STATE(2915), 1, - sym_requirement_seq, - STATE(5793), 1, - sym_requires_parameter_list, - [192386] = 5, + ACTIONS(10030), 1, + anon_sym_COLON, + ACTIONS(10130), 1, + anon_sym_RPAREN, + STATE(6336), 1, + sym_gnu_asm_clobber_list, + [222881] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3940), 1, - anon_sym_LBRACE, - ACTIONS(8343), 1, - anon_sym_COLON_COLON, - ACTIONS(8499), 1, - anon_sym_EQ, - STATE(931), 1, - sym_declaration_list, - [192402] = 5, + ACTIONS(10132), 1, + anon_sym_catch, + STATE(367), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [222892] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4133), 1, - anon_sym_COLON, - ACTIONS(4830), 1, + ACTIONS(10134), 1, + anon_sym_COMMA, + ACTIONS(10136), 1, + anon_sym_RBRACE, + STATE(6380), 1, + aux_sym_enumerator_list_repeat1, + [222905] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6666), 1, + anon_sym_COMMA, + ACTIONS(10138), 1, + anon_sym_RPAREN, + STATE(6249), 1, + aux_sym_generic_expression_repeat1, + [222918] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10082), 1, + anon_sym_COMMA, + ACTIONS(10140), 1, anon_sym_LBRACE, - STATE(2883), 1, - sym_field_declaration_list, - STATE(5772), 1, - sym_base_class_clause, - [192418] = 5, + STATE(6490), 1, + aux_sym_field_initializer_list_repeat1, + [222931] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8365), 1, - sym_identifier, - ACTIONS(8501), 1, + ACTIONS(9587), 1, anon_sym_COMMA, - ACTIONS(8503), 1, - anon_sym_RBRACE, - STATE(5397), 1, - sym_enumerator, - [192434] = 5, + ACTIONS(10142), 1, + anon_sym_LBRACE, + STATE(6340), 1, + aux_sym_base_class_clause_repeat1, + [222944] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3814), 1, - anon_sym_COLON_COLON, - ACTIONS(5413), 1, - anon_sym_LT, - ACTIONS(8505), 1, + ACTIONS(8894), 1, + anon_sym_COMMA, + ACTIONS(10144), 1, anon_sym_SEMI, - STATE(3135), 1, - sym_template_argument_list, - [192450] = 5, - ACTIONS(7009), 1, + STATE(6199), 1, + aux_sym_type_definition_repeat2, + [222957] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(8339), 1, - aux_sym_string_literal_token1, - ACTIONS(8341), 1, - sym_escape_sequence, - ACTIONS(8507), 1, - anon_sym_DQUOTE, - STATE(5332), 1, - aux_sym_string_literal_repeat1, - [192466] = 5, - ACTIONS(7009), 1, + ACTIONS(8894), 1, + anon_sym_COMMA, + ACTIONS(10146), 1, + anon_sym_SEMI, + STATE(6199), 1, + aux_sym_type_definition_repeat2, + [222970] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(8387), 1, - anon_sym_LPAREN, - ACTIONS(8509), 1, - anon_sym_LF, - ACTIONS(8511), 1, - sym_preproc_arg, - STATE(5836), 1, - sym_preproc_params, - [192482] = 4, + ACTIONS(4555), 1, + anon_sym_COLON_COLON, + ACTIONS(5571), 2, + anon_sym_LPAREN2, + anon_sym_LBRACE, + [222981] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7270), 1, + ACTIONS(9587), 1, + anon_sym_COMMA, + ACTIONS(9589), 1, anon_sym_LBRACE, - STATE(3067), 1, - sym_compound_statement, - ACTIONS(7593), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK, - [192496] = 5, + STATE(6577), 1, + aux_sym_base_class_clause_repeat1, + [222994] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4133), 1, - anon_sym_COLON, - ACTIONS(4255), 1, + ACTIONS(10148), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(10150), 2, + anon_sym_COMMA, anon_sym_LBRACE, - STATE(2656), 1, - sym_field_declaration_list, - STATE(5724), 1, - sym_base_class_clause, - [192512] = 5, + [223005] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8365), 1, + ACTIONS(9523), 1, sym_identifier, - ACTIONS(8513), 1, - anon_sym_COMMA, - ACTIONS(8515), 1, + ACTIONS(10152), 1, anon_sym_RBRACE, - STATE(5480), 1, + STATE(6782), 1, sym_enumerator, - [192528] = 5, - ACTIONS(7009), 1, + [223018] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(8339), 1, - aux_sym_string_literal_token1, - ACTIONS(8341), 1, - sym_escape_sequence, - ACTIONS(8517), 1, - anon_sym_DQUOTE, - STATE(5332), 1, - aux_sym_string_literal_repeat1, - [192544] = 5, + ACTIONS(6672), 1, + anon_sym_COMMA, + ACTIONS(10154), 1, + anon_sym_GT2, + STATE(6390), 1, + aux_sym_template_argument_list_repeat1, + [223031] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8365), 1, + ACTIONS(10156), 1, sym_identifier, - ACTIONS(8519), 1, + STATE(2856), 1, + sym_template_function, + STATE(3560), 1, + sym_template_type, + [223044] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3986), 1, + anon_sym_RBRACE, + ACTIONS(10158), 1, anon_sym_COMMA, - ACTIONS(8521), 1, + STATE(6381), 1, + aux_sym_initializer_list_repeat1, + [223057] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9523), 1, + sym_identifier, + ACTIONS(10160), 1, anon_sym_RBRACE, - STATE(5420), 1, + STATE(6782), 1, sym_enumerator, - [192560] = 5, + [223070] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4131), 1, - anon_sym_LBRACE, - ACTIONS(4133), 1, - anon_sym_COLON, - STATE(2129), 1, - sym_field_declaration_list, - STATE(5871), 1, - sym_base_class_clause, - [192576] = 4, + ACTIONS(8894), 1, + anon_sym_COMMA, + ACTIONS(10162), 1, + anon_sym_SEMI, + STATE(6199), 1, + aux_sym_type_definition_repeat2, + [223083] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8523), 1, - anon_sym_EQ, - STATE(5184), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [192590] = 3, + ACTIONS(10164), 1, + sym_identifier, + STATE(2856), 1, + sym_template_function, + STATE(3560), 1, + sym_template_type, + [223096] = 4, ACTIONS(3), 1, sym_comment, - STATE(4961), 1, - sym_access_specifier, - ACTIONS(8355), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - [192602] = 5, - ACTIONS(7009), 1, + ACTIONS(8894), 1, + anon_sym_COMMA, + ACTIONS(10166), 1, + anon_sym_SEMI, + STATE(6199), 1, + aux_sym_type_definition_repeat2, + [223109] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(8525), 1, - anon_sym_DQUOTE, - ACTIONS(8527), 1, - aux_sym_string_literal_token1, - ACTIONS(8529), 1, - sym_escape_sequence, - STATE(5247), 1, - aux_sym_string_literal_repeat1, - [192618] = 5, - ACTIONS(7009), 1, + ACTIONS(10170), 1, + anon_sym_RPAREN, + ACTIONS(10168), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [223120] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(8531), 1, - anon_sym_DQUOTE, - ACTIONS(8533), 1, - aux_sym_string_literal_token1, - ACTIONS(8535), 1, - sym_escape_sequence, - STATE(5302), 1, - aux_sym_string_literal_repeat1, - [192634] = 4, + ACTIONS(8204), 1, + anon_sym_COMMA, + ACTIONS(10172), 1, + anon_sym_SEMI, + STATE(6339), 1, + aux_sym_declaration_repeat1, + [223133] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7268), 1, - anon_sym_LBRACE, - STATE(2985), 1, - sym_compound_statement, - ACTIONS(7593), 2, + ACTIONS(8204), 1, + anon_sym_COMMA, + ACTIONS(10174), 1, + anon_sym_SEMI, + STATE(6339), 1, + aux_sym_declaration_repeat1, + [223146] = 4, + ACTIONS(7927), 1, anon_sym_LPAREN2, - anon_sym_LBRACK, - [192648] = 5, - ACTIONS(7009), 1, + ACTIONS(7929), 1, sym_comment, - ACTIONS(8537), 1, - anon_sym_DQUOTE, - ACTIONS(8539), 1, - aux_sym_string_literal_token1, - ACTIONS(8541), 1, - sym_escape_sequence, - STATE(5273), 1, - aux_sym_string_literal_repeat1, - [192664] = 5, - ACTIONS(7009), 1, + ACTIONS(10176), 1, + anon_sym_LF, + STATE(5111), 1, + sym_preproc_argument_list, + [223159] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(8339), 1, - aux_sym_string_literal_token1, - ACTIONS(8341), 1, - sym_escape_sequence, - ACTIONS(8543), 1, - anon_sym_DQUOTE, - STATE(5332), 1, - aux_sym_string_literal_repeat1, - [192680] = 5, + ACTIONS(10178), 1, + anon_sym_catch, + STATE(663), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [223170] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3767), 1, - anon_sym_LT, - ACTIONS(8395), 1, - sym_identifier, - STATE(1124), 1, - sym_template_parameter_list, - STATE(3136), 1, - sym_template_type, - [192696] = 5, + ACTIONS(6672), 1, + anon_sym_COMMA, + ACTIONS(10180), 1, + anon_sym_GT2, + STATE(6393), 1, + aux_sym_template_argument_list_repeat1, + [223183] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3930), 1, - anon_sym_LBRACE, - ACTIONS(8343), 1, - anon_sym_COLON_COLON, - ACTIONS(8545), 1, - anon_sym_EQ, - STATE(972), 1, - sym_declaration_list, - [192712] = 5, + ACTIONS(10182), 1, + anon_sym_catch, + STATE(2370), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [223194] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5799), 1, + ACTIONS(6672), 1, anon_sym_COMMA, - ACTIONS(8357), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8547), 1, + ACTIONS(10184), 1, anon_sym_GT2, - STATE(5633), 1, + STATE(6393), 1, aux_sym_template_argument_list_repeat1, - [192728] = 5, + [223207] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4133), 1, - anon_sym_COLON, - ACTIONS(4830), 1, - anon_sym_LBRACE, - STATE(3004), 1, - sym_field_declaration_list, - STATE(5771), 1, - sym_base_class_clause, - [192744] = 5, + ACTIONS(6672), 1, + anon_sym_COMMA, + ACTIONS(10186), 1, + anon_sym_GT2, + STATE(6393), 1, + aux_sym_template_argument_list_repeat1, + [223220] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6797), 1, + ACTIONS(10188), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(10190), 2, + anon_sym_COMMA, anon_sym_LBRACE, - ACTIONS(8353), 1, - anon_sym_LPAREN2, - STATE(2754), 1, - sym_requirement_seq, - STATE(5878), 1, - sym_requires_parameter_list, - [192760] = 5, + [223231] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4133), 1, + ACTIONS(8282), 1, anon_sym_COLON, - ACTIONS(4162), 1, - anon_sym_LBRACE, - STATE(2411), 1, - sym_field_declaration_list, - STATE(5739), 1, - sym_base_class_clause, - [192776] = 4, + ACTIONS(8296), 1, + anon_sym_RPAREN, + STATE(6302), 1, + sym_gnu_asm_output_operand_list, + [223244] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7292), 1, - anon_sym_LBRACE, - STATE(2701), 1, - sym_compound_statement, - ACTIONS(7593), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK, - [192790] = 5, + ACTIONS(10050), 1, + anon_sym_COLON, + ACTIONS(10192), 1, + anon_sym_RPAREN, + STATE(6303), 1, + sym_gnu_asm_input_operand_list, + [223257] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3767), 1, - anon_sym_LT, - ACTIONS(8395), 1, - sym_identifier, - STATE(3136), 1, - sym_template_type, - STATE(5163), 1, - sym_template_parameter_list, - [192806] = 4, + ACTIONS(4004), 1, + anon_sym_RBRACE, + ACTIONS(10194), 1, + anon_sym_COMMA, + STATE(6381), 1, + aux_sym_initializer_list_repeat1, + [223270] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7300), 1, - anon_sym_LBRACE, - STATE(1869), 1, - sym_compound_statement, - ACTIONS(7593), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK, - [192820] = 5, - ACTIONS(7009), 1, - sym_comment, - ACTIONS(8387), 1, - anon_sym_LPAREN, - ACTIONS(8549), 1, - anon_sym_LF, - ACTIONS(8551), 1, - sym_preproc_arg, - STATE(5985), 1, - sym_preproc_params, - [192836] = 4, + ACTIONS(10050), 1, + anon_sym_COLON, + ACTIONS(10196), 1, + anon_sym_RPAREN, + STATE(6524), 1, + sym_gnu_asm_input_operand_list, + [223283] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7302), 1, - anon_sym_LBRACE, - STATE(3169), 1, - sym_compound_statement, - ACTIONS(7593), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK, - [192850] = 5, + ACTIONS(8894), 1, + anon_sym_COMMA, + ACTIONS(10198), 1, + anon_sym_SEMI, + STATE(6199), 1, + aux_sym_type_definition_repeat2, + [223296] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4133), 1, + ACTIONS(8280), 1, + anon_sym_RPAREN, + ACTIONS(8282), 1, anon_sym_COLON, - ACTIONS(4162), 1, - anon_sym_LBRACE, - STATE(2434), 1, - sym_field_declaration_list, - STATE(5741), 1, - sym_base_class_clause, - [192866] = 5, + STATE(6533), 1, + sym_gnu_asm_output_operand_list, + [223309] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4133), 1, + ACTIONS(10030), 1, anon_sym_COLON, - ACTIONS(4162), 1, - anon_sym_LBRACE, - STATE(2437), 1, - sym_field_declaration_list, - STATE(5743), 1, - sym_base_class_clause, - [192882] = 5, + ACTIONS(10200), 1, + anon_sym_RPAREN, + STATE(6403), 1, + sym_gnu_asm_clobber_list, + [223322] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4133), 1, - anon_sym_COLON, - ACTIONS(4359), 1, - anon_sym_LBRACE, - STATE(2447), 1, - sym_field_declaration_list, - STATE(5961), 1, - sym_base_class_clause, - [192898] = 5, + ACTIONS(9523), 1, + sym_identifier, + ACTIONS(10202), 1, + anon_sym_RBRACE, + STATE(6782), 1, + sym_enumerator, + [223335] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5799), 1, + ACTIONS(10202), 1, + anon_sym_RBRACE, + ACTIONS(10204), 1, anon_sym_COMMA, - ACTIONS(8357), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8553), 1, - anon_sym_GT2, - STATE(5377), 1, - aux_sym_template_argument_list_repeat1, - [192914] = 5, - ACTIONS(7009), 1, - sym_comment, - ACTIONS(8555), 1, - anon_sym_DQUOTE, - ACTIONS(8557), 1, - aux_sym_string_literal_token1, - ACTIONS(8560), 1, - sym_escape_sequence, - STATE(5332), 1, - aux_sym_string_literal_repeat1, - [192930] = 5, + STATE(6261), 1, + aux_sym_enumerator_list_repeat1, + [223348] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(7665), 1, - anon_sym_COLON, - STATE(5604), 1, - sym_compound_statement, - STATE(5766), 1, - sym_field_initializer_list, - [192946] = 5, + ACTIONS(6773), 1, + anon_sym_RBRACE, + ACTIONS(10206), 1, + anon_sym_COMMA, + STATE(6381), 1, + aux_sym_initializer_list_repeat1, + [223361] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4133), 1, - anon_sym_COLON, - ACTIONS(5445), 1, - anon_sym_LBRACE, - STATE(3267), 1, - sym_field_declaration_list, - STATE(5820), 1, - sym_base_class_clause, - [192962] = 5, + ACTIONS(6672), 1, + anon_sym_COMMA, + ACTIONS(10209), 1, + anon_sym_GT2, + STATE(6393), 1, + aux_sym_template_argument_list_repeat1, + [223374] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4133), 1, - anon_sym_COLON, - ACTIONS(4359), 1, - anon_sym_LBRACE, - STATE(2448), 1, - sym_field_declaration_list, - STATE(5962), 1, - sym_base_class_clause, - [192978] = 4, + ACTIONS(6672), 1, + anon_sym_COMMA, + ACTIONS(10211), 1, + anon_sym_GT2, + STATE(6393), 1, + aux_sym_template_argument_list_repeat1, + [223387] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7300), 1, - anon_sym_LBRACE, - STATE(1874), 1, - sym_compound_statement, - ACTIONS(7593), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK, - [192992] = 5, - ACTIONS(7009), 1, + ACTIONS(6672), 1, + anon_sym_COMMA, + ACTIONS(10213), 1, + anon_sym_GT2, + STATE(6393), 1, + aux_sym_template_argument_list_repeat1, + [223400] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(8563), 1, - anon_sym_DQUOTE, - ACTIONS(8565), 1, - aux_sym_string_literal_token1, - ACTIONS(8567), 1, - sym_escape_sequence, - STATE(5357), 1, - aux_sym_string_literal_repeat1, - [193008] = 5, + ACTIONS(6672), 1, + anon_sym_COMMA, + ACTIONS(10215), 1, + anon_sym_GT2, + STATE(6393), 1, + aux_sym_template_argument_list_repeat1, + [223413] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3767), 1, - anon_sym_LT, - ACTIONS(8395), 1, - sym_identifier, - STATE(1121), 1, - sym_template_parameter_list, - STATE(3136), 1, - sym_template_type, - [193024] = 4, + ACTIONS(10050), 1, + anon_sym_COLON, + ACTIONS(10217), 1, + anon_sym_RPAREN, + STATE(6404), 1, + sym_gnu_asm_input_operand_list, + [223426] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7300), 1, - anon_sym_LBRACE, - STATE(1860), 1, - sym_compound_statement, - ACTIONS(7593), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK, - [193038] = 3, + ACTIONS(8282), 1, + anon_sym_COLON, + ACTIONS(8421), 1, + anon_sym_RPAREN, + STATE(6342), 1, + sym_gnu_asm_output_operand_list, + [223439] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8569), 1, - sym_identifier, - ACTIONS(8571), 3, + ACTIONS(6760), 1, anon_sym_COMMA, + ACTIONS(10219), 1, anon_sym_RPAREN, - anon_sym_GT2, - [193050] = 5, - ACTIONS(7009), 1, + STATE(6183), 1, + aux_sym_argument_list_repeat1, + [223452] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(8387), 1, - anon_sym_LPAREN, - ACTIONS(8573), 1, - anon_sym_LF, - ACTIONS(8575), 1, - sym_preproc_arg, - STATE(5761), 1, - sym_preproc_params, - [193066] = 5, + ACTIONS(6672), 1, + anon_sym_COMMA, + ACTIONS(10221), 1, + anon_sym_GT2, + STATE(6393), 1, + aux_sym_template_argument_list_repeat1, + [223465] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5799), 1, + ACTIONS(6672), 1, anon_sym_COMMA, - ACTIONS(8357), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8577), 1, + ACTIONS(10223), 1, anon_sym_GT2, - STATE(5425), 1, + STATE(6393), 1, aux_sym_template_argument_list_repeat1, - [193082] = 5, + [223478] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4131), 1, - anon_sym_LBRACE, - ACTIONS(4133), 1, + ACTIONS(10030), 1, anon_sym_COLON, - STATE(2107), 1, - sym_field_declaration_list, - STATE(5864), 1, - sym_base_class_clause, - [193098] = 5, + ACTIONS(10225), 1, + anon_sym_RPAREN, + STATE(6558), 1, + sym_gnu_asm_clobber_list, + [223491] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3767), 1, - anon_sym_LT, - ACTIONS(8395), 1, - sym_identifier, - STATE(1122), 1, - sym_template_parameter_list, - STATE(3136), 1, - sym_template_type, - [193114] = 4, + ACTIONS(10050), 1, + anon_sym_COLON, + ACTIONS(10227), 1, + anon_sym_RPAREN, + STATE(6556), 1, + sym_gnu_asm_input_operand_list, + [223504] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8579), 1, - anon_sym_EQ, - STATE(4877), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [193128] = 5, + ACTIONS(10229), 1, + anon_sym_COMMA, + ACTIONS(10232), 1, + anon_sym_GT2, + STATE(6393), 1, + aux_sym_template_argument_list_repeat1, + [223517] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4133), 1, + ACTIONS(10050), 1, anon_sym_COLON, - ACTIONS(5445), 1, - anon_sym_LBRACE, - STATE(3262), 1, - sym_field_declaration_list, - STATE(5822), 1, - sym_base_class_clause, - [193144] = 5, + ACTIONS(10234), 1, + anon_sym_RPAREN, + STATE(6343), 1, + sym_gnu_asm_input_operand_list, + [223530] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3814), 1, - anon_sym_COLON_COLON, - ACTIONS(5413), 1, - anon_sym_LT, - ACTIONS(8581), 1, + ACTIONS(10182), 1, + anon_sym_catch, + STATE(2369), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [223541] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8894), 1, + anon_sym_COMMA, + ACTIONS(10236), 1, anon_sym_SEMI, - STATE(3135), 1, - sym_template_argument_list, - [193160] = 5, + STATE(6199), 1, + aux_sym_type_definition_repeat2, + [223554] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4133), 1, - anon_sym_COLON, - ACTIONS(5445), 1, - anon_sym_LBRACE, - STATE(3264), 1, - sym_field_declaration_list, - STATE(5860), 1, - sym_base_class_clause, - [193176] = 5, + ACTIONS(3996), 1, + anon_sym_RBRACE, + ACTIONS(10238), 1, + anon_sym_COMMA, + STATE(6381), 1, + aux_sym_initializer_list_repeat1, + [223567] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3814), 1, - anon_sym_COLON_COLON, - ACTIONS(3843), 1, + ACTIONS(8894), 1, + anon_sym_COMMA, + ACTIONS(10240), 1, anon_sym_SEMI, - ACTIONS(5413), 1, - anon_sym_LT, - STATE(1889), 1, - sym_template_argument_list, - [193192] = 5, + STATE(6199), 1, + aux_sym_type_definition_repeat2, + [223580] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3767), 1, - anon_sym_LT, - ACTIONS(8395), 1, - sym_identifier, - STATE(1119), 1, - sym_template_parameter_list, - STATE(3136), 1, - sym_template_type, - [193208] = 5, + ACTIONS(8894), 1, + anon_sym_COMMA, + ACTIONS(10242), 1, + anon_sym_SEMI, + STATE(6199), 1, + aux_sym_type_definition_repeat2, + [223593] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8365), 1, - sym_identifier, - ACTIONS(8583), 1, + ACTIONS(9932), 1, anon_sym_COMMA, - ACTIONS(8585), 1, - anon_sym_RBRACE, - STATE(5396), 1, - sym_enumerator, - [193224] = 5, + ACTIONS(10244), 1, + anon_sym_RPAREN, + STATE(6246), 1, + aux_sym_preproc_params_repeat1, + [223606] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4131), 1, - anon_sym_LBRACE, - ACTIONS(4133), 1, - anon_sym_COLON, - STATE(2133), 1, - sym_field_declaration_list, - STATE(5853), 1, - sym_base_class_clause, - [193240] = 5, + ACTIONS(9523), 1, + sym_identifier, + ACTIONS(10246), 1, + anon_sym_RBRACE, + STATE(6782), 1, + sym_enumerator, + [223619] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3814), 1, - anon_sym_COLON_COLON, - ACTIONS(5413), 1, - anon_sym_LT, - ACTIONS(8587), 1, - anon_sym_SEMI, - STATE(3135), 1, - sym_template_argument_list, - [193256] = 5, + ACTIONS(10248), 1, + sym_identifier, + STATE(2856), 1, + sym_template_function, + STATE(3560), 1, + sym_template_type, + [223632] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4133), 1, + ACTIONS(9902), 1, anon_sym_COLON, - ACTIONS(4162), 1, - anon_sym_LBRACE, - STATE(2383), 1, - sym_field_declaration_list, - STATE(5759), 1, - sym_base_class_clause, - [193272] = 5, + ACTIONS(10250), 1, + anon_sym_RPAREN, + STATE(7166), 1, + sym_gnu_asm_goto_list, + [223645] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(7665), 1, + ACTIONS(10030), 1, anon_sym_COLON, - STATE(5521), 1, - sym_compound_statement, - STATE(5817), 1, - sym_field_initializer_list, - [193288] = 4, + ACTIONS(10252), 1, + anon_sym_RPAREN, + STATE(6421), 1, + sym_gnu_asm_clobber_list, + [223658] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7292), 1, - anon_sym_LBRACE, - STATE(2777), 1, - sym_compound_statement, - ACTIONS(7593), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK, - [193302] = 5, - ACTIONS(7009), 1, + ACTIONS(10254), 1, + anon_sym_COMMA, + ACTIONS(10256), 1, + anon_sym_RBRACE, + STATE(6261), 1, + aux_sym_enumerator_list_repeat1, + [223671] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(8339), 1, - aux_sym_string_literal_token1, - ACTIONS(8341), 1, - sym_escape_sequence, - ACTIONS(8589), 1, - anon_sym_DQUOTE, - STATE(5332), 1, - aux_sym_string_literal_repeat1, - [193318] = 5, + ACTIONS(9523), 1, + sym_identifier, + ACTIONS(10256), 1, + anon_sym_RBRACE, + STATE(6782), 1, + sym_enumerator, + [223684] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8349), 1, + ACTIONS(10258), 3, anon_sym_COMMA, - ACTIONS(8591), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8593), 1, - anon_sym_LBRACE, - STATE(5481), 1, - aux_sym_base_class_clause_repeat1, - [193334] = 3, + anon_sym_RPAREN, + anon_sym_GT2, + [223693] = 4, ACTIONS(3), 1, sym_comment, - STATE(4956), 1, - sym_access_specifier, - ACTIONS(8355), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - [193346] = 5, + ACTIONS(8894), 1, + anon_sym_COMMA, + ACTIONS(10260), 1, + anon_sym_SEMI, + STATE(6199), 1, + aux_sym_type_definition_repeat2, + [223706] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5799), 1, + ACTIONS(6672), 1, anon_sym_COMMA, - ACTIONS(8357), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8595), 1, + ACTIONS(10262), 1, anon_sym_GT2, - STATE(5390), 1, + STATE(6393), 1, aux_sym_template_argument_list_repeat1, - [193362] = 4, + [223719] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8597), 1, - anon_sym_EQ, - STATE(5167), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [193376] = 5, + ACTIONS(10264), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_GT2, + [223728] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4131), 1, - anon_sym_LBRACE, - ACTIONS(4133), 1, - anon_sym_COLON, - STATE(2136), 1, - sym_field_declaration_list, - STATE(5859), 1, - sym_base_class_clause, - [193392] = 4, + ACTIONS(10266), 1, + anon_sym_COMMA, + ACTIONS(10269), 1, + anon_sym_RPAREN, + STATE(6411), 1, + aux_sym_throw_specifier_repeat1, + [223741] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7292), 1, - anon_sym_LBRACE, - STATE(2823), 1, - sym_compound_statement, - ACTIONS(7593), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK, - [193406] = 5, + ACTIONS(10271), 1, + anon_sym_COMMA, + ACTIONS(10273), 1, + anon_sym_RBRACE, + STATE(6261), 1, + aux_sym_enumerator_list_repeat1, + [223754] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8353), 1, - anon_sym_LPAREN2, - ACTIONS(8599), 1, - anon_sym_LBRACE, - STATE(4530), 1, - sym_requirement_seq, - STATE(5685), 1, - sym_requires_parameter_list, - [193422] = 5, + ACTIONS(9523), 1, + sym_identifier, + ACTIONS(10273), 1, + anon_sym_RBRACE, + STATE(6782), 1, + sym_enumerator, + [223767] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4131), 1, - anon_sym_LBRACE, - ACTIONS(4133), 1, - anon_sym_COLON, - STATE(2112), 1, - sym_field_declaration_list, - STATE(5865), 1, - sym_base_class_clause, - [193438] = 4, + ACTIONS(10275), 1, + anon_sym_COMMA, + ACTIONS(10278), 1, + anon_sym_GT2, + STATE(6414), 1, + aux_sym_template_parameter_list_repeat1, + [223780] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5415), 1, - anon_sym_LPAREN2, - STATE(5847), 1, - sym_argument_list, - ACTIONS(8601), 2, + ACTIONS(6760), 1, anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [193452] = 4, + ACTIONS(10280), 1, + anon_sym_RPAREN, + STATE(6183), 1, + aux_sym_argument_list_repeat1, + [223793] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8365), 1, - sym_identifier, - ACTIONS(8603), 1, - anon_sym_RBRACE, - STATE(5831), 1, - sym_enumerator, - [193465] = 4, + ACTIONS(8894), 1, + anon_sym_COMMA, + ACTIONS(10282), 1, + anon_sym_SEMI, + STATE(6199), 1, + aux_sym_type_definition_repeat2, + [223806] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5799), 1, + ACTIONS(6672), 1, anon_sym_COMMA, - ACTIONS(8605), 1, + ACTIONS(10284), 1, anon_sym_GT2, - STATE(5498), 1, + STATE(6393), 1, aux_sym_template_argument_list_repeat1, - [193478] = 4, + [223819] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5791), 1, - anon_sym_RBRACE, - ACTIONS(5962), 1, + ACTIONS(6760), 1, anon_sym_COMMA, - STATE(5458), 1, - aux_sym_initializer_list_repeat1, - [193491] = 4, + ACTIONS(10286), 1, + anon_sym_RPAREN, + STATE(6183), 1, + aux_sym_argument_list_repeat1, + [223832] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5908), 1, + ACTIONS(9910), 1, + anon_sym_LPAREN2, + ACTIONS(10288), 1, + anon_sym_constexpr, + STATE(215), 1, + sym_condition_clause, + [223845] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9902), 1, + anon_sym_COLON, + ACTIONS(10290), 1, + anon_sym_RPAREN, + STATE(7327), 1, + sym_gnu_asm_goto_list, + [223858] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9902), 1, + anon_sym_COLON, + ACTIONS(10292), 1, + anon_sym_RPAREN, + STATE(6958), 1, + sym_gnu_asm_goto_list, + [223871] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10294), 1, anon_sym_COMMA, - ACTIONS(8607), 1, - anon_sym_RBRACK, - STATE(5463), 1, - aux_sym_lambda_capture_specifier_repeat1, - [193504] = 4, + ACTIONS(10297), 1, + anon_sym_RPAREN, + STATE(6422), 1, + aux_sym_requires_parameter_list_repeat1, + [223884] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8431), 1, - anon_sym_DASH_GT, - ACTIONS(8609), 1, - anon_sym_SEMI, - STATE(6419), 1, - sym_trailing_return_type, - [193517] = 4, + ACTIONS(10182), 1, + anon_sym_catch, + STATE(2349), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [223895] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8365), 1, - sym_identifier, - ACTIONS(8611), 1, - anon_sym_RBRACE, - STATE(5831), 1, - sym_enumerator, - [193530] = 4, + ACTIONS(8204), 1, + anon_sym_COMMA, + ACTIONS(10299), 1, + anon_sym_SEMI, + STATE(6434), 1, + aux_sym_declaration_repeat1, + [223908] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8613), 1, + ACTIONS(8894), 1, anon_sym_COMMA, - ACTIONS(8616), 1, - anon_sym_RBRACE, - STATE(5373), 1, - aux_sym_enumerator_list_repeat1, - [193543] = 4, + ACTIONS(10301), 1, + anon_sym_SEMI, + STATE(6199), 1, + aux_sym_type_definition_repeat2, + [223921] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8618), 1, + ACTIONS(6666), 1, anon_sym_COMMA, - ACTIONS(8621), 1, - anon_sym_RBRACK, - STATE(5374), 1, - aux_sym_structured_binding_declarator_repeat1, - [193556] = 4, + ACTIONS(10303), 1, + anon_sym_RPAREN, + STATE(6249), 1, + aux_sym_generic_expression_repeat1, + [223934] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5799), 1, + ACTIONS(10024), 1, anon_sym_COMMA, - ACTIONS(8623), 1, - anon_sym_GT2, - STATE(5498), 1, - aux_sym_template_argument_list_repeat1, - [193569] = 4, + ACTIONS(10305), 1, + anon_sym_RPAREN, + STATE(6437), 1, + aux_sym_parameter_list_repeat1, + [223947] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8625), 1, + ACTIONS(6760), 1, anon_sym_COMMA, - ACTIONS(8627), 1, + ACTIONS(6797), 1, anon_sym_RPAREN, - STATE(5537), 1, - aux_sym_throw_specifier_repeat1, - [193582] = 4, + STATE(6418), 1, + aux_sym_argument_list_repeat1, + [223960] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5799), 1, + ACTIONS(9870), 1, anon_sym_COMMA, - ACTIONS(8629), 1, + ACTIONS(10307), 1, anon_sym_GT2, - STATE(5498), 1, - aux_sym_template_argument_list_repeat1, - [193595] = 4, + STATE(6414), 1, + aux_sym_template_parameter_list_repeat1, + [223973] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10178), 1, + anon_sym_catch, + STATE(716), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [223984] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5799), 1, + ACTIONS(6672), 1, anon_sym_COMMA, - ACTIONS(8631), 1, + ACTIONS(10309), 1, anon_sym_GT2, - STATE(5498), 1, + STATE(6443), 1, aux_sym_template_argument_list_repeat1, - [193608] = 4, + [223997] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8365), 1, + ACTIONS(10311), 1, sym_identifier, - ACTIONS(8633), 1, - anon_sym_RBRACE, - STATE(5831), 1, - sym_enumerator, - [193621] = 4, + STATE(2856), 1, + sym_template_function, + STATE(3560), 1, + sym_template_type, + [224010] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8635), 1, + ACTIONS(8204), 1, anon_sym_COMMA, - ACTIONS(8637), 1, - anon_sym_RBRACE, - STATE(5623), 1, - aux_sym_enumerator_list_repeat1, - [193634] = 4, + ACTIONS(10313), 1, + anon_sym_SEMI, + STATE(6339), 1, + aux_sym_declaration_repeat1, + [224023] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7894), 1, + ACTIONS(8204), 1, anon_sym_COMMA, - ACTIONS(8639), 1, + ACTIONS(10315), 1, anon_sym_SEMI, - STATE(5417), 1, - aux_sym_type_definition_repeat2, - [193647] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8641), 1, - anon_sym_catch, - STATE(1943), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - [193658] = 4, + STATE(6339), 1, + aux_sym_declaration_repeat1, + [224036] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8643), 1, + ACTIONS(10008), 1, anon_sym_COMMA, - ACTIONS(8646), 1, + ACTIONS(10317), 1, anon_sym_RPAREN, - STATE(5383), 1, - aux_sym_preproc_params_repeat1, - [193671] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8648), 1, - anon_sym_catch, - STATE(1989), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - [193682] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3932), 1, - anon_sym_LBRACE, - ACTIONS(8343), 1, - anon_sym_COLON_COLON, - STATE(977), 1, - sym_declaration_list, - [193695] = 4, + STATE(6422), 1, + aux_sym_requires_parameter_list_repeat1, + [224049] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7272), 1, + ACTIONS(8204), 1, anon_sym_COMMA, - ACTIONS(8650), 1, + ACTIONS(10319), 1, anon_sym_SEMI, - STATE(5407), 1, + STATE(6291), 1, aux_sym_declaration_repeat1, - [193708] = 4, + [224062] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5844), 1, + ACTIONS(10321), 1, anon_sym_COMMA, - ACTIONS(5948), 1, + ACTIONS(10324), 1, anon_sym_RPAREN, - STATE(5618), 1, - aux_sym_argument_list_repeat1, - [193721] = 4, + STATE(6437), 1, + aux_sym_parameter_list_repeat1, + [224075] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8652), 1, - sym_identifier, - STATE(2326), 1, - sym_template_type, - STATE(2825), 1, - sym_template_function, - [193734] = 4, + ACTIONS(8894), 1, + anon_sym_COMMA, + ACTIONS(10326), 1, + anon_sym_SEMI, + STATE(6199), 1, + aux_sym_type_definition_repeat2, + [224088] = 4, + ACTIONS(7927), 1, + anon_sym_LPAREN2, + ACTIONS(7929), 1, + sym_comment, + ACTIONS(10328), 1, + anon_sym_LF, + STATE(5111), 1, + sym_preproc_argument_list, + [224101] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5799), 1, + ACTIONS(8204), 1, anon_sym_COMMA, - ACTIONS(8654), 1, - anon_sym_GT2, - STATE(5498), 1, - aux_sym_template_argument_list_repeat1, - [193747] = 4, + ACTIONS(10330), 1, + anon_sym_SEMI, + STATE(6339), 1, + aux_sym_declaration_repeat1, + [224114] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5799), 1, + ACTIONS(6672), 1, anon_sym_COMMA, - ACTIONS(8656), 1, + ACTIONS(10332), 1, anon_sym_GT2, - STATE(5498), 1, + STATE(6393), 1, aux_sym_template_argument_list_repeat1, - [193760] = 4, + [224127] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8658), 1, + ACTIONS(6672), 1, anon_sym_COMMA, - ACTIONS(8661), 1, - anon_sym_RBRACK_RBRACK, - STATE(5391), 1, - aux_sym_attribute_declaration_repeat1, - [193773] = 4, + ACTIONS(10334), 1, + anon_sym_GT2, + STATE(6393), 1, + aux_sym_template_argument_list_repeat1, + [224140] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5799), 1, + ACTIONS(6672), 1, anon_sym_COMMA, - ACTIONS(8663), 1, + ACTIONS(10336), 1, anon_sym_GT2, - STATE(5498), 1, + STATE(6393), 1, aux_sym_template_argument_list_repeat1, - [193786] = 4, + [224153] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3380), 1, - anon_sym_RBRACE, - ACTIONS(8665), 1, - anon_sym_COMMA, - STATE(5491), 1, - aux_sym_initializer_list_repeat1, - [193799] = 4, + ACTIONS(10132), 1, + anon_sym_catch, + STATE(371), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [224164] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5844), 1, + ACTIONS(8204), 1, anon_sym_COMMA, - ACTIONS(5998), 1, - anon_sym_RPAREN, - STATE(5414), 1, - aux_sym_argument_list_repeat1, - [193812] = 4, + ACTIONS(10338), 1, + anon_sym_SEMI, + STATE(6339), 1, + aux_sym_declaration_repeat1, + [224177] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8667), 1, + ACTIONS(9864), 1, anon_sym_COMMA, - ACTIONS(8669), 1, + ACTIONS(10340), 1, anon_sym_RBRACK_RBRACK, - STATE(5391), 1, + STATE(6481), 1, aux_sym_attribute_declaration_repeat1, - [193825] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8671), 1, - anon_sym_COMMA, - ACTIONS(8673), 1, - anon_sym_RBRACE, - STATE(5416), 1, - aux_sym_enumerator_list_repeat1, - [193838] = 4, + [224190] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8675), 1, - anon_sym_COMMA, - ACTIONS(8677), 1, - anon_sym_RBRACE, - STATE(5443), 1, - aux_sym_enumerator_list_repeat1, - [193851] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8679), 1, + ACTIONS(8894), 1, anon_sym_COMMA, - ACTIONS(8681), 1, - anon_sym_RBRACE, - STATE(5373), 1, - aux_sym_enumerator_list_repeat1, - [193864] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8365), 1, - sym_identifier, - ACTIONS(8681), 1, - anon_sym_RBRACE, - STATE(5831), 1, - sym_enumerator, - [193877] = 4, + ACTIONS(10342), 1, + anon_sym_SEMI, + STATE(6199), 1, + aux_sym_type_definition_repeat2, + [224203] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5844), 1, + ACTIONS(8894), 1, anon_sym_COMMA, - ACTIONS(8683), 1, - anon_sym_RPAREN, - STATE(5419), 1, - aux_sym_argument_list_repeat1, - [193890] = 4, + ACTIONS(10344), 1, + anon_sym_SEMI, + STATE(6199), 1, + aux_sym_type_definition_repeat2, + [224216] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5799), 1, + ACTIONS(6672), 1, anon_sym_COMMA, - ACTIONS(8685), 1, + ACTIONS(10346), 1, anon_sym_GT2, - STATE(5426), 1, + STATE(6383), 1, aux_sym_template_argument_list_repeat1, - [193903] = 4, + [224229] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7193), 1, - anon_sym_RPAREN, - ACTIONS(8687), 1, + ACTIONS(8204), 1, anon_sym_COMMA, - STATE(5402), 1, - aux_sym_preproc_argument_list_repeat1, - [193916] = 4, + ACTIONS(10348), 1, + anon_sym_SEMI, + STATE(6339), 1, + aux_sym_declaration_repeat1, + [224242] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7894), 1, + ACTIONS(8894), 1, anon_sym_COMMA, - ACTIONS(8690), 1, + ACTIONS(10350), 1, anon_sym_SEMI, - STATE(5417), 1, + STATE(6199), 1, aux_sym_type_definition_repeat2, - [193929] = 3, + [224255] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8648), 1, - anon_sym_catch, - STATE(2009), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - [193940] = 4, + ACTIONS(10352), 1, + anon_sym_COMMA, + ACTIONS(10354), 1, + anon_sym_RPAREN, + STATE(6531), 1, + aux_sym_throw_specifier_repeat1, + [224268] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7272), 1, + ACTIONS(8204), 1, anon_sym_COMMA, - ACTIONS(8692), 1, + ACTIONS(10356), 1, anon_sym_SEMI, - STATE(5545), 1, + STATE(6339), 1, aux_sym_declaration_repeat1, - [193953] = 4, + [224281] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7272), 1, - anon_sym_COMMA, - ACTIONS(8694), 1, - anon_sym_SEMI, - STATE(5545), 1, - aux_sym_declaration_repeat1, - [193966] = 4, + ACTIONS(8282), 1, + anon_sym_COLON, + ACTIONS(8298), 1, + anon_sym_RPAREN, + STATE(6394), 1, + sym_gnu_asm_output_operand_list, + [224294] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7272), 1, + ACTIONS(6799), 1, anon_sym_COMMA, - ACTIONS(8696), 1, - anon_sym_SEMI, - STATE(5545), 1, - aux_sym_declaration_repeat1, - [193979] = 4, + ACTIONS(6801), 1, + anon_sym_RBRACE, + STATE(6397), 1, + aux_sym_initializer_list_repeat1, + [224307] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7272), 1, - anon_sym_COMMA, - ACTIONS(8698), 1, - anon_sym_SEMI, - STATE(5545), 1, - aux_sym_declaration_repeat1, - [193992] = 3, + ACTIONS(10358), 1, + sym_identifier, + STATE(2856), 1, + sym_template_function, + STATE(3560), 1, + sym_template_type, + [224320] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8700), 1, + ACTIONS(9818), 1, anon_sym_catch, - STATE(1986), 2, + STATE(646), 2, sym_catch_clause, aux_sym_constructor_try_statement_repeat1, - [194003] = 4, + [224331] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8702), 1, - sym_identifier, - STATE(2176), 1, - sym_template_function, - STATE(3136), 1, - sym_template_type, - [194016] = 4, + ACTIONS(9858), 1, + anon_sym_COLON_COLON, + ACTIONS(10360), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + [224342] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10178), 1, + anon_sym_catch, + STATE(556), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [224353] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5799), 1, + ACTIONS(6672), 1, anon_sym_COMMA, - ACTIONS(8704), 1, + ACTIONS(10362), 1, anon_sym_GT2, - STATE(5389), 1, + STATE(6367), 1, aux_sym_template_argument_list_repeat1, - [194029] = 4, + [224366] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5878), 1, + ACTIONS(10364), 3, anon_sym_COMMA, - ACTIONS(5880), 1, - anon_sym_RBRACE, - STATE(5393), 1, - aux_sym_initializer_list_repeat1, - [194042] = 4, + anon_sym_RPAREN, + anon_sym_COLON, + [224375] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7894), 1, + ACTIONS(9870), 1, anon_sym_COMMA, - ACTIONS(8706), 1, - anon_sym_SEMI, - STATE(5417), 1, - aux_sym_type_definition_repeat2, - [194055] = 4, + ACTIONS(10366), 1, + anon_sym_GT2, + STATE(6414), 1, + aux_sym_template_parameter_list_repeat1, + [224388] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5844), 1, - anon_sym_COMMA, - ACTIONS(8708), 1, + ACTIONS(8282), 1, + anon_sym_COLON, + ACTIONS(8419), 1, anon_sym_RPAREN, - STATE(5419), 1, - aux_sym_argument_list_repeat1, - [194068] = 4, + STATE(6373), 1, + sym_gnu_asm_output_operand_list, + [224401] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8365), 1, - sym_identifier, - ACTIONS(8710), 1, + ACTIONS(10368), 1, + anon_sym_COMMA, + ACTIONS(10370), 1, anon_sym_RBRACE, - STATE(5831), 1, - sym_enumerator, - [194081] = 4, + STATE(6405), 1, + aux_sym_enumerator_list_repeat1, + [224414] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8710), 1, - anon_sym_RBRACE, - ACTIONS(8712), 1, + ACTIONS(10372), 3, anon_sym_COMMA, - STATE(5373), 1, - aux_sym_enumerator_list_repeat1, - [194094] = 4, + anon_sym_RPAREN, + anon_sym_GT2, + [224423] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8714), 1, + ACTIONS(6672), 1, anon_sym_COMMA, - ACTIONS(8717), 1, - anon_sym_SEMI, - STATE(5417), 1, - aux_sym_type_definition_repeat2, - [194107] = 4, + ACTIONS(10374), 1, + anon_sym_GT2, + STATE(6473), 1, + aux_sym_template_argument_list_repeat1, + [224436] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8719), 1, - anon_sym_COMMA, - ACTIONS(8722), 1, - anon_sym_LBRACE, - STATE(5418), 1, - aux_sym_base_class_clause_repeat1, - [194120] = 4, + ACTIONS(9882), 1, + anon_sym_catch, + STATE(590), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [224447] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6195), 1, - anon_sym_RPAREN, - ACTIONS(8724), 1, + ACTIONS(8894), 1, anon_sym_COMMA, - STATE(5419), 1, - aux_sym_argument_list_repeat1, - [194133] = 4, + ACTIONS(10376), 1, + anon_sym_SEMI, + STATE(6199), 1, + aux_sym_type_definition_repeat2, + [224460] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8727), 1, + ACTIONS(8894), 1, anon_sym_COMMA, - ACTIONS(8729), 1, - anon_sym_RBRACE, - STATE(5398), 1, - aux_sym_enumerator_list_repeat1, - [194146] = 4, + ACTIONS(10378), 1, + anon_sym_SEMI, + STATE(6199), 1, + aux_sym_type_definition_repeat2, + [224473] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3930), 1, - anon_sym_LBRACE, - ACTIONS(8343), 1, - anon_sym_COLON_COLON, - STATE(1011), 1, - sym_declaration_list, - [194159] = 4, + ACTIONS(8894), 1, + anon_sym_COMMA, + ACTIONS(10380), 1, + anon_sym_SEMI, + STATE(6199), 1, + aux_sym_type_definition_repeat2, + [224486] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5799), 1, + ACTIONS(6672), 1, anon_sym_COMMA, - ACTIONS(8731), 1, + ACTIONS(10382), 1, anon_sym_GT2, - STATE(5378), 1, + STATE(6393), 1, aux_sym_template_argument_list_repeat1, - [194172] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8733), 1, - anon_sym_LPAREN2, - ACTIONS(8735), 1, - anon_sym_constexpr, - STATE(150), 1, - sym_condition_clause, - [194185] = 4, + [224499] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5799), 1, + ACTIONS(6672), 1, anon_sym_COMMA, - ACTIONS(8737), 1, + ACTIONS(10384), 1, anon_sym_GT2, - STATE(5498), 1, + STATE(6393), 1, aux_sym_template_argument_list_repeat1, - [194198] = 4, + [224512] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5799), 1, + ACTIONS(6672), 1, anon_sym_COMMA, - ACTIONS(8739), 1, + ACTIONS(10386), 1, anon_sym_GT2, - STATE(5498), 1, + STATE(6393), 1, aux_sym_template_argument_list_repeat1, - [194211] = 4, + [224525] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5799), 1, + ACTIONS(7895), 1, anon_sym_COMMA, - ACTIONS(8741), 1, - anon_sym_GT2, - STATE(5498), 1, - aux_sym_template_argument_list_repeat1, - [194224] = 4, + ACTIONS(10388), 1, + anon_sym_RPAREN, + STATE(6547), 1, + aux_sym_preproc_argument_list_repeat1, + [224538] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5844), 1, + ACTIONS(8894), 1, anon_sym_COMMA, - ACTIONS(5852), 1, - anon_sym_RPAREN, - STATE(5400), 1, - aux_sym_argument_list_repeat1, - [194237] = 3, + ACTIONS(10390), 1, + anon_sym_SEMI, + STATE(6199), 1, + aux_sym_type_definition_repeat2, + [224551] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8745), 1, - anon_sym_EQ, - ACTIONS(8743), 2, + ACTIONS(8894), 1, anon_sym_COMMA, - anon_sym_RBRACE, - [194248] = 4, + ACTIONS(10392), 1, + anon_sym_SEMI, + STATE(6199), 1, + aux_sym_type_definition_repeat2, + [224564] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8667), 1, + ACTIONS(8204), 1, anon_sym_COMMA, - ACTIONS(8747), 1, - anon_sym_RBRACK_RBRACK, - STATE(5391), 1, - aux_sym_attribute_declaration_repeat1, - [194261] = 4, + ACTIONS(10394), 1, + anon_sym_SEMI, + STATE(6519), 1, + aux_sym_declaration_repeat1, + [224577] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8749), 1, + ACTIONS(10396), 1, sym_identifier, - STATE(3136), 1, - sym_template_type, - STATE(4931), 1, + STATE(3274), 1, sym_template_function, - [194274] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8700), 1, - anon_sym_catch, - STATE(1999), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - [194285] = 4, + STATE(3560), 1, + sym_template_type, + [224590] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5904), 1, + ACTIONS(8894), 1, anon_sym_COMMA, - ACTIONS(5906), 1, - anon_sym_RBRACE, - STATE(5666), 1, - aux_sym_initializer_list_repeat1, - [194298] = 3, + ACTIONS(10398), 1, + anon_sym_SEMI, + STATE(6199), 1, + aux_sym_type_definition_repeat2, + [224603] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8751), 1, - sym_identifier, - ACTIONS(8753), 2, + ACTIONS(10372), 3, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_GT2, - [194309] = 4, + [224612] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7894), 1, + ACTIONS(9864), 1, anon_sym_COMMA, - ACTIONS(8755), 1, - anon_sym_SEMI, - STATE(5417), 1, - aux_sym_type_definition_repeat2, - [194322] = 4, + ACTIONS(10400), 1, + anon_sym_RBRACK_RBRACK, + STATE(6504), 1, + aux_sym_attribute_declaration_repeat1, + [224625] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8365), 1, + ACTIONS(10402), 1, sym_identifier, - ACTIONS(8757), 1, - anon_sym_RBRACE, - STATE(5831), 1, - sym_enumerator, - [194335] = 4, + STATE(3186), 1, + sym_template_function, + STATE(3560), 1, + sym_template_type, + [224638] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5908), 1, + ACTIONS(9587), 1, anon_sym_COMMA, - ACTIONS(8759), 1, - anon_sym_RBRACK, - STATE(5463), 1, - aux_sym_lambda_capture_specifier_repeat1, - [194348] = 4, + ACTIONS(10404), 1, + anon_sym_LBRACE, + STATE(6348), 1, + aux_sym_base_class_clause_repeat1, + [224651] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7272), 1, + ACTIONS(9587), 1, anon_sym_COMMA, - ACTIONS(8761), 1, - anon_sym_SEMI, - STATE(5405), 1, - aux_sym_declaration_repeat1, - [194361] = 4, + ACTIONS(10404), 1, + anon_sym_LBRACE, + STATE(6340), 1, + aux_sym_base_class_clause_repeat1, + [224664] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8763), 1, + ACTIONS(6760), 1, anon_sym_COMMA, - ACTIONS(8765), 1, - anon_sym_GT2, - STATE(5457), 1, - aux_sym_template_parameter_list_repeat1, - [194374] = 4, + ACTIONS(6813), 1, + anon_sym_RPAREN, + STATE(6538), 1, + aux_sym_argument_list_repeat1, + [224677] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7894), 1, + ACTIONS(8894), 1, anon_sym_COMMA, - ACTIONS(8767), 1, + ACTIONS(10406), 1, anon_sym_SEMI, - STATE(5417), 1, + STATE(6199), 1, aux_sym_type_definition_repeat2, - [194387] = 4, + [224690] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8769), 1, + ACTIONS(4592), 1, + anon_sym_LBRACE, + ACTIONS(9486), 1, + anon_sym_COLON_COLON, + STATE(1234), 1, + sym_declaration_list, + [224703] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8894), 1, anon_sym_COMMA, - ACTIONS(8771), 1, - anon_sym_RPAREN, - STATE(5636), 1, - aux_sym_requires_parameter_list_repeat1, - [194400] = 4, + ACTIONS(10408), 1, + anon_sym_SEMI, + STATE(6199), 1, + aux_sym_type_definition_repeat2, + [224716] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8365), 1, - sym_identifier, - ACTIONS(8773), 1, + ACTIONS(10410), 1, + anon_sym_COMMA, + ACTIONS(10412), 1, anon_sym_RBRACE, - STATE(5831), 1, - sym_enumerator, - [194413] = 2, + STATE(6412), 1, + aux_sym_enumerator_list_repeat1, + [224729] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8775), 3, + ACTIONS(10414), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_GT2, - [194422] = 4, + ACTIONS(10417), 1, + anon_sym_LBRACE, + STATE(6490), 1, + aux_sym_field_initializer_list_repeat1, + [224742] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8773), 1, - anon_sym_RBRACE, - ACTIONS(8777), 1, + ACTIONS(10419), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(10421), 2, anon_sym_COMMA, - STATE(5373), 1, - aux_sym_enumerator_list_repeat1, - [194435] = 2, + anon_sym_LBRACE, + [224753] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8775), 3, + ACTIONS(8204), 1, anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(10423), 1, + anon_sym_SEMI, + STATE(6440), 1, + aux_sym_declaration_repeat1, + [224766] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6672), 1, + anon_sym_COMMA, + ACTIONS(10425), 1, anon_sym_GT2, - [194444] = 4, + STATE(6497), 1, + aux_sym_template_argument_list_repeat1, + [224779] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9910), 1, + anon_sym_LPAREN2, + ACTIONS(10427), 1, + anon_sym_constexpr, + STATE(197), 1, + sym_condition_clause, + [224792] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5799), 1, + ACTIONS(6672), 1, anon_sym_COMMA, - ACTIONS(8779), 1, + ACTIONS(10429), 1, anon_sym_GT2, - STATE(5627), 1, + STATE(6393), 1, aux_sym_template_argument_list_repeat1, - [194457] = 4, + [224805] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4915), 1, + ACTIONS(6672), 1, anon_sym_COMMA, - ACTIONS(8781), 1, - anon_sym_RBRACK, - STATE(5374), 1, - aux_sym_structured_binding_declarator_repeat1, - [194470] = 3, + ACTIONS(10431), 1, + anon_sym_GT2, + STATE(6393), 1, + aux_sym_template_argument_list_repeat1, + [224818] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8783), 1, - anon_sym_catch, - STATE(339), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - [194481] = 4, + ACTIONS(6672), 1, + anon_sym_COMMA, + ACTIONS(10433), 1, + anon_sym_GT2, + STATE(6393), 1, + aux_sym_template_argument_list_repeat1, + [224831] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5844), 1, + ACTIONS(4590), 1, + anon_sym_LBRACE, + ACTIONS(9486), 1, + anon_sym_COLON_COLON, + STATE(601), 1, + sym_declaration_list, + [224844] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6760), 1, anon_sym_COMMA, - ACTIONS(5854), 1, + ACTIONS(6829), 1, anon_sym_RPAREN, - STATE(5620), 1, + STATE(6415), 1, aux_sym_argument_list_repeat1, - [194494] = 4, + [224857] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8365), 1, + ACTIONS(9523), 1, sym_identifier, - ACTIONS(8785), 1, + ACTIONS(10435), 1, anon_sym_RBRACE, - STATE(5831), 1, + STATE(6782), 1, sym_enumerator, - [194507] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8349), 1, - anon_sym_COMMA, - ACTIONS(8497), 1, - anon_sym_LBRACE, - STATE(5418), 1, - aux_sym_base_class_clause_repeat1, - [194520] = 3, + [224870] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8787), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8722), 2, - anon_sym_COMMA, - anon_sym_LBRACE, - [194531] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7894), 1, + ACTIONS(9864), 1, anon_sym_COMMA, - ACTIONS(8789), 1, - anon_sym_SEMI, - STATE(5417), 1, - aux_sym_type_definition_repeat2, - [194544] = 3, + ACTIONS(10437), 1, + anon_sym_RBRACK_RBRACK, + STATE(6504), 1, + aux_sym_attribute_declaration_repeat1, + [224883] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8641), 1, - anon_sym_catch, - STATE(1950), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - [194555] = 4, + ACTIONS(10439), 1, + sym_identifier, + STATE(2983), 1, + sym_template_function, + STATE(3560), 1, + sym_template_type, + [224896] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8763), 1, + ACTIONS(10441), 1, anon_sym_COMMA, - ACTIONS(8791), 1, - anon_sym_GT2, - STATE(5596), 1, - aux_sym_template_parameter_list_repeat1, - [194568] = 4, + ACTIONS(10443), 1, + anon_sym_RBRACE, + STATE(6549), 1, + aux_sym_enumerator_list_repeat1, + [224909] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8667), 1, + ACTIONS(10445), 1, anon_sym_COMMA, - ACTIONS(8793), 1, + ACTIONS(10448), 1, anon_sym_RBRACK_RBRACK, - STATE(5391), 1, + STATE(6504), 1, aux_sym_attribute_declaration_repeat1, - [194581] = 4, + [224922] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7011), 1, + ACTIONS(6760), 1, anon_sym_COMMA, - ACTIONS(8795), 1, + ACTIONS(10450), 1, anon_sym_RPAREN, - STATE(5402), 1, - aux_sym_preproc_argument_list_repeat1, - [194594] = 4, + STATE(6183), 1, + aux_sym_argument_list_repeat1, + [224935] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8763), 1, + ACTIONS(6783), 1, anon_sym_COMMA, - ACTIONS(8797), 1, - anon_sym_GT2, - STATE(5549), 1, - aux_sym_template_parameter_list_repeat1, - [194607] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3364), 1, + ACTIONS(6785), 1, anon_sym_RBRACE, - ACTIONS(8799), 1, - anon_sym_COMMA, - STATE(5491), 1, + STATE(6560), 1, aux_sym_initializer_list_repeat1, - [194620] = 4, + [224948] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8733), 1, - anon_sym_LPAREN2, - ACTIONS(8801), 1, - anon_sym_constexpr, - STATE(194), 1, - sym_condition_clause, - [194633] = 4, + ACTIONS(8282), 1, + anon_sym_COLON, + ACTIONS(8427), 1, + anon_sym_RPAREN, + STATE(6563), 1, + sym_gnu_asm_output_operand_list, + [224961] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8803), 1, - sym_identifier, - STATE(2326), 1, - sym_template_type, - STATE(2690), 1, - sym_template_function, - [194646] = 3, + ACTIONS(10004), 1, + anon_sym_catch, + STATE(2368), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [224972] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5701), 1, - anon_sym_EQ, - ACTIONS(5699), 2, + ACTIONS(6672), 1, anon_sym_COMMA, + ACTIONS(10452), 1, anon_sym_GT2, - [194657] = 4, + STATE(6574), 1, + aux_sym_template_argument_list_repeat1, + [224985] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8667), 1, + ACTIONS(6672), 1, anon_sym_COMMA, - ACTIONS(8805), 1, - anon_sym_RBRACK_RBRACK, - STATE(5429), 1, - aux_sym_attribute_declaration_repeat1, - [194670] = 4, + ACTIONS(10454), 1, + anon_sym_GT2, + STATE(6514), 1, + aux_sym_template_argument_list_repeat1, + [224998] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6193), 1, - anon_sym_RBRACK, - ACTIONS(8807), 1, + ACTIONS(10456), 1, anon_sym_COMMA, - STATE(5463), 1, - aux_sym_lambda_capture_specifier_repeat1, - [194683] = 4, + ACTIONS(10459), 1, + anon_sym_RBRACK, + STATE(6511), 1, + aux_sym_structured_binding_declarator_repeat1, + [225011] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5799), 1, + ACTIONS(6672), 1, anon_sym_COMMA, - ACTIONS(8810), 1, + ACTIONS(10461), 1, anon_sym_GT2, - STATE(5498), 1, + STATE(6393), 1, aux_sym_template_argument_list_repeat1, - [194696] = 4, + [225024] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5799), 1, + ACTIONS(6672), 1, anon_sym_COMMA, - ACTIONS(8812), 1, + ACTIONS(10463), 1, anon_sym_GT2, - STATE(5498), 1, + STATE(6393), 1, aux_sym_template_argument_list_repeat1, - [194709] = 4, + [225037] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3940), 1, - anon_sym_LBRACE, - ACTIONS(8343), 1, - anon_sym_COLON_COLON, - STATE(1028), 1, - sym_declaration_list, - [194722] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5799), 1, + ACTIONS(6672), 1, anon_sym_COMMA, - ACTIONS(8814), 1, + ACTIONS(10465), 1, anon_sym_GT2, - STATE(5498), 1, + STATE(6393), 1, aux_sym_template_argument_list_repeat1, - [194735] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3394), 1, - anon_sym_RBRACE, - ACTIONS(8816), 1, - anon_sym_COMMA, - STATE(5491), 1, - aux_sym_initializer_list_repeat1, - [194748] = 3, + [225050] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8700), 1, - anon_sym_catch, - STATE(2007), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - [194759] = 2, + ACTIONS(10467), 1, + sym_identifier, + STATE(2983), 1, + sym_template_function, + STATE(3560), 1, + sym_template_type, + [225063] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7984), 3, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_DOT, - [194768] = 2, + ACTIONS(9910), 1, + anon_sym_LPAREN2, + ACTIONS(10469), 1, + anon_sym_constexpr, + STATE(195), 1, + sym_condition_clause, + [225076] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8818), 3, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_DOT, - [194777] = 2, + ACTIONS(10471), 1, + sym_identifier, + ACTIONS(10473), 2, + anon_sym_COMMA, + anon_sym_GT2, + [225087] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8343), 3, + ACTIONS(8204), 1, + anon_sym_COMMA, + ACTIONS(10475), 1, anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - [194786] = 4, + STATE(6339), 1, + aux_sym_declaration_repeat1, + [225100] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7272), 1, + ACTIONS(8204), 1, anon_sym_COMMA, - ACTIONS(8820), 1, + ACTIONS(10477), 1, anon_sym_SEMI, - STATE(5495), 1, + STATE(6339), 1, aux_sym_declaration_repeat1, - [194799] = 4, + [225113] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7272), 1, + ACTIONS(8204), 1, anon_sym_COMMA, - ACTIONS(8822), 1, + ACTIONS(10479), 1, anon_sym_SEMI, - STATE(5603), 1, + STATE(6450), 1, aux_sym_declaration_repeat1, - [194812] = 4, + [225126] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8349), 1, + ACTIONS(6969), 1, + anon_sym_RBRACK, + ACTIONS(10481), 1, anon_sym_COMMA, - ACTIONS(8497), 1, - anon_sym_LBRACE, - STATE(5665), 1, - aux_sym_base_class_clause_repeat1, - [194825] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8824), 1, - sym_identifier, - STATE(2750), 1, - sym_template_type, - STATE(2932), 1, - sym_template_function, - [194838] = 4, + STATE(6521), 1, + aux_sym_lambda_capture_specifier_repeat1, + [225139] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8733), 1, + ACTIONS(9910), 1, anon_sym_LPAREN2, - ACTIONS(8826), 1, + ACTIONS(10484), 1, anon_sym_constexpr, - STATE(232), 1, + STATE(183), 1, sym_condition_clause, - [194851] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8830), 1, - anon_sym_COLON_COLON, - ACTIONS(8828), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - [194862] = 4, + [225152] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8603), 1, - anon_sym_RBRACE, - ACTIONS(8832), 1, + ACTIONS(6672), 1, anon_sym_COMMA, - STATE(5373), 1, - aux_sym_enumerator_list_repeat1, - [194875] = 4, + ACTIONS(10486), 1, + anon_sym_GT2, + STATE(6393), 1, + aux_sym_template_argument_list_repeat1, + [225165] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8834), 1, - anon_sym_COMMA, - ACTIONS(8836), 1, - anon_sym_RBRACE, - STATE(5503), 1, - aux_sym_enumerator_list_repeat1, - [194888] = 4, + ACTIONS(10030), 1, + anon_sym_COLON, + ACTIONS(10488), 1, + anon_sym_RPAREN, + STATE(6568), 1, + sym_gnu_asm_clobber_list, + [225178] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8349), 1, - anon_sym_COMMA, - ACTIONS(8351), 1, - anon_sym_LBRACE, - STATE(5418), 1, - aux_sym_base_class_clause_repeat1, - [194901] = 4, + ACTIONS(9852), 1, + anon_sym_catch, + STATE(398), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [225189] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5844), 1, + ACTIONS(6672), 1, anon_sym_COMMA, - ACTIONS(8838), 1, - anon_sym_RPAREN, - STATE(5419), 1, - aux_sym_argument_list_repeat1, - [194914] = 4, - ACTIONS(7007), 1, - anon_sym_LPAREN2, - ACTIONS(7009), 1, - sym_comment, - ACTIONS(8840), 1, - anon_sym_LF, - STATE(4436), 1, - sym_preproc_argument_list, - [194927] = 3, + ACTIONS(10490), 1, + anon_sym_GT2, + STATE(6530), 1, + aux_sym_template_argument_list_repeat1, + [225202] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8830), 1, - anon_sym_COLON_COLON, - ACTIONS(8842), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - [194938] = 4, + ACTIONS(9523), 1, + sym_identifier, + ACTIONS(10492), 1, + anon_sym_RBRACE, + STATE(6782), 1, + sym_enumerator, + [225215] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7894), 1, + ACTIONS(6672), 1, anon_sym_COMMA, - ACTIONS(8844), 1, - anon_sym_SEMI, - STATE(5417), 1, - aux_sym_type_definition_repeat2, - [194951] = 4, + ACTIONS(10494), 1, + anon_sym_GT2, + STATE(6393), 1, + aux_sym_template_argument_list_repeat1, + [225228] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4915), 1, + ACTIONS(6672), 1, anon_sym_COMMA, - ACTIONS(8846), 1, - anon_sym_RBRACK, - STATE(5446), 1, - aux_sym_structured_binding_declarator_repeat1, - [194964] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8848), 3, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - [194973] = 4, + ACTIONS(10496), 1, + anon_sym_GT2, + STATE(6393), 1, + aux_sym_template_argument_list_repeat1, + [225241] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5799), 1, + ACTIONS(6672), 1, anon_sym_COMMA, - ACTIONS(8850), 1, + ACTIONS(10498), 1, anon_sym_GT2, - STATE(5511), 1, + STATE(6393), 1, aux_sym_template_argument_list_repeat1, - [194986] = 4, + [225254] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8733), 1, - anon_sym_LPAREN2, - ACTIONS(8852), 1, - anon_sym_constexpr, - STATE(177), 1, - sym_condition_clause, - [194999] = 3, + ACTIONS(10352), 1, + anon_sym_COMMA, + ACTIONS(10500), 1, + anon_sym_RPAREN, + STATE(6411), 1, + aux_sym_throw_specifier_repeat1, + [225267] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8856), 1, + ACTIONS(10502), 3, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_DOT, + [225276] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10050), 1, + anon_sym_COLON, + ACTIONS(10504), 1, anon_sym_RPAREN, - ACTIONS(8854), 2, - anon_sym_COMMA, - anon_sym_SEMI, - [195010] = 4, + STATE(6573), 1, + sym_gnu_asm_input_operand_list, + [225289] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5842), 1, - anon_sym_RBRACE, - ACTIONS(8858), 1, + ACTIONS(9864), 1, anon_sym_COMMA, - STATE(5491), 1, - aux_sym_initializer_list_repeat1, - [195023] = 4, + ACTIONS(10506), 1, + anon_sym_RBRACK_RBRACK, + STATE(6260), 1, + aux_sym_attribute_declaration_repeat1, + [225302] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7272), 1, - anon_sym_COMMA, - ACTIONS(8861), 1, - anon_sym_SEMI, - STATE(5504), 1, - aux_sym_declaration_repeat1, - [195036] = 4, + ACTIONS(10132), 1, + anon_sym_catch, + STATE(363), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [225313] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8733), 1, - anon_sym_LPAREN2, - ACTIONS(8863), 1, - anon_sym_constexpr, - STATE(257), 1, - sym_condition_clause, - [195049] = 4, + ACTIONS(10492), 1, + anon_sym_RBRACE, + ACTIONS(10508), 1, + anon_sym_COMMA, + STATE(6261), 1, + aux_sym_enumerator_list_repeat1, + [225326] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7272), 1, + ACTIONS(8894), 1, anon_sym_COMMA, - ACTIONS(8865), 1, + ACTIONS(10510), 1, anon_sym_SEMI, - STATE(5545), 1, - aux_sym_declaration_repeat1, - [195062] = 4, + STATE(6199), 1, + aux_sym_type_definition_repeat2, + [225339] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7272), 1, + ACTIONS(6760), 1, anon_sym_COMMA, - ACTIONS(8867), 1, - anon_sym_SEMI, - STATE(5545), 1, - aux_sym_declaration_repeat1, - [195075] = 3, + ACTIONS(10512), 1, + anon_sym_RPAREN, + STATE(6183), 1, + aux_sym_argument_list_repeat1, + [225352] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8357), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8869), 2, + ACTIONS(6672), 1, anon_sym_COMMA, + ACTIONS(10514), 1, anon_sym_GT2, - [195086] = 4, + STATE(6543), 1, + aux_sym_template_argument_list_repeat1, + [225365] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7272), 1, + ACTIONS(8894), 1, anon_sym_COMMA, - ACTIONS(8871), 1, + ACTIONS(10516), 1, anon_sym_SEMI, - STATE(5545), 1, - aux_sym_declaration_repeat1, - [195099] = 4, + STATE(6199), 1, + aux_sym_type_definition_repeat2, + [225378] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8873), 1, + ACTIONS(6672), 1, anon_sym_COMMA, - ACTIONS(8876), 1, + ACTIONS(10518), 1, anon_sym_GT2, - STATE(5498), 1, + STATE(6393), 1, aux_sym_template_argument_list_repeat1, - [195112] = 2, + [225391] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8878), 3, + ACTIONS(6672), 1, anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(10520), 1, anon_sym_GT2, - [195121] = 4, + STATE(6393), 1, + aux_sym_template_argument_list_repeat1, + [225404] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7894), 1, + ACTIONS(6672), 1, anon_sym_COMMA, - ACTIONS(8880), 1, + ACTIONS(10522), 1, + anon_sym_GT2, + STATE(6393), 1, + aux_sym_template_argument_list_repeat1, + [225417] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9547), 1, + anon_sym_DASH_GT, + ACTIONS(10524), 1, anon_sym_SEMI, - STATE(5417), 1, - aux_sym_type_definition_repeat2, - [195134] = 2, + STATE(7541), 1, + sym_trailing_return_type, + [225430] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8882), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_GT2, - [195143] = 4, + ACTIONS(6522), 1, + sym_auto, + ACTIONS(6524), 1, + anon_sym_decltype, + STATE(3692), 1, + sym_decltype_auto, + [225443] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8365), 1, + ACTIONS(9523), 1, sym_identifier, - ACTIONS(8884), 1, + ACTIONS(10526), 1, anon_sym_RBRACE, - STATE(5831), 1, + STATE(6782), 1, sym_enumerator, - [195156] = 4, + [225456] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8884), 1, - anon_sym_RBRACE, - ACTIONS(8886), 1, + ACTIONS(8077), 1, + anon_sym_RPAREN, + ACTIONS(10528), 1, anon_sym_COMMA, - STATE(5373), 1, - aux_sym_enumerator_list_repeat1, - [195169] = 4, + STATE(6547), 1, + aux_sym_preproc_argument_list_repeat1, + [225469] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7272), 1, + ACTIONS(6446), 1, + anon_sym_EQ, + ACTIONS(6444), 2, anon_sym_COMMA, - ACTIONS(8888), 1, - anon_sym_SEMI, - STATE(5545), 1, - aux_sym_declaration_repeat1, - [195182] = 3, + anon_sym_GT2, + [225480] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8641), 1, - anon_sym_catch, - STATE(1949), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - [195193] = 3, + ACTIONS(10526), 1, + anon_sym_RBRACE, + ACTIONS(10531), 1, + anon_sym_COMMA, + STATE(6261), 1, + aux_sym_enumerator_list_repeat1, + [225493] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8890), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8892), 2, + ACTIONS(6672), 1, anon_sym_COMMA, - anon_sym_LBRACE, - [195204] = 4, + ACTIONS(10533), 1, + anon_sym_GT2, + STATE(6554), 1, + aux_sym_template_argument_list_repeat1, + [225506] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8894), 1, + ACTIONS(10535), 1, sym_identifier, - STATE(2176), 1, + STATE(2856), 1, sym_template_function, - STATE(3136), 1, + STATE(3560), 1, sym_template_type, - [195217] = 4, + [225519] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8349), 1, + ACTIONS(6672), 1, anon_sym_COMMA, - ACTIONS(8896), 1, - anon_sym_LBRACE, - STATE(5418), 1, - aux_sym_base_class_clause_repeat1, - [195230] = 4, + ACTIONS(10537), 1, + anon_sym_GT2, + STATE(6393), 1, + aux_sym_template_argument_list_repeat1, + [225532] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5799), 1, + ACTIONS(6672), 1, anon_sym_COMMA, - ACTIONS(8898), 1, + ACTIONS(10539), 1, anon_sym_GT2, - STATE(5498), 1, + STATE(6393), 1, aux_sym_template_argument_list_repeat1, - [195243] = 4, + [225545] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5799), 1, + ACTIONS(6672), 1, anon_sym_COMMA, - ACTIONS(8900), 1, + ACTIONS(10541), 1, anon_sym_GT2, - STATE(5498), 1, + STATE(6393), 1, aux_sym_template_argument_list_repeat1, - [195256] = 4, + [225558] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5799), 1, + ACTIONS(6672), 1, anon_sym_COMMA, - ACTIONS(8902), 1, + ACTIONS(10543), 1, anon_sym_GT2, - STATE(5498), 1, + STATE(6393), 1, aux_sym_template_argument_list_repeat1, - [195269] = 3, + [225571] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3875), 1, - anon_sym_COLON_COLON, - ACTIONS(4871), 2, - anon_sym_LPAREN2, - anon_sym_LBRACE, - [195280] = 4, + ACTIONS(10030), 1, + anon_sym_COLON, + ACTIONS(10545), 1, + anon_sym_RPAREN, + STATE(6420), 1, + sym_gnu_asm_clobber_list, + [225584] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8667), 1, + ACTIONS(10547), 1, anon_sym_COMMA, - ACTIONS(8904), 1, - anon_sym_RBRACK_RBRACK, - STATE(5560), 1, - aux_sym_attribute_declaration_repeat1, - [195293] = 4, + ACTIONS(10550), 1, + anon_sym_RPAREN, + STATE(6557), 1, + aux_sym_preproc_params_repeat1, + [225597] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7272), 1, - anon_sym_COMMA, - ACTIONS(8906), 1, - anon_sym_SEMI, - STATE(5545), 1, - aux_sym_declaration_repeat1, - [195306] = 4, + ACTIONS(9902), 1, + anon_sym_COLON, + ACTIONS(10552), 1, + anon_sym_RPAREN, + STATE(7551), 1, + sym_gnu_asm_goto_list, + [225610] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7894), 1, - anon_sym_COMMA, - ACTIONS(8908), 1, - anon_sym_SEMI, - STATE(5417), 1, - aux_sym_type_definition_repeat2, - [195319] = 4, + ACTIONS(8282), 1, + anon_sym_COLON, + ACTIONS(8396), 1, + anon_sym_RPAREN, + STATE(6392), 1, + sym_gnu_asm_output_operand_list, + [225623] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8365), 1, - sym_identifier, - ACTIONS(8910), 1, + ACTIONS(4000), 1, anon_sym_RBRACE, - STATE(5831), 1, - sym_enumerator, - [195332] = 4, + ACTIONS(10554), 1, + anon_sym_COMMA, + STATE(6381), 1, + aux_sym_initializer_list_repeat1, + [225636] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10050), 1, + anon_sym_COLON, + ACTIONS(10556), 1, + anon_sym_RPAREN, + STATE(6391), 1, + sym_gnu_asm_input_operand_list, + [225649] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5799), 1, + ACTIONS(9587), 1, anon_sym_COMMA, - ACTIONS(8912), 1, - anon_sym_GT2, - STATE(5498), 1, - aux_sym_template_argument_list_repeat1, - [195345] = 4, + ACTIONS(9717), 1, + anon_sym_LBRACE, + STATE(6315), 1, + aux_sym_base_class_clause_repeat1, + [225662] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10050), 1, + anon_sym_COLON, + ACTIONS(10558), 1, + anon_sym_RPAREN, + STATE(6583), 1, + sym_gnu_asm_input_operand_list, + [225675] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7272), 1, + ACTIONS(8894), 1, anon_sym_COMMA, - ACTIONS(8914), 1, + ACTIONS(10560), 1, anon_sym_SEMI, - STATE(5545), 1, - aux_sym_declaration_repeat1, - [195358] = 4, + STATE(6199), 1, + aux_sym_type_definition_repeat2, + [225688] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5799), 1, + ACTIONS(9864), 1, anon_sym_COMMA, - ACTIONS(8916), 1, - anon_sym_GT2, - STATE(5498), 1, - aux_sym_template_argument_list_repeat1, - [195371] = 4, + ACTIONS(10562), 1, + anon_sym_RBRACK_RBRACK, + STATE(6501), 1, + aux_sym_attribute_declaration_repeat1, + [225701] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8918), 1, - sym_identifier, - STATE(2825), 1, - sym_template_function, - STATE(3136), 1, - sym_template_type, - [195384] = 3, + ACTIONS(8282), 1, + anon_sym_COLON, + ACTIONS(8380), 1, + anon_sym_RPAREN, + STATE(6581), 1, + sym_gnu_asm_output_operand_list, + [225714] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8920), 1, - anon_sym_catch, - STATE(447), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - [195395] = 4, + ACTIONS(9492), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(10564), 2, + anon_sym_COMMA, + anon_sym_GT2, + [225725] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9902), 1, + anon_sym_COLON, + ACTIONS(10566), 1, + anon_sym_RPAREN, + STATE(7594), 1, + sym_gnu_asm_goto_list, + [225738] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5799), 1, + ACTIONS(6672), 1, anon_sym_COMMA, - ACTIONS(8922), 1, + ACTIONS(10568), 1, anon_sym_GT2, - STATE(5517), 1, + STATE(6393), 1, aux_sym_template_argument_list_repeat1, - [195408] = 3, + [225751] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8924), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8926), 2, + ACTIONS(6672), 1, anon_sym_COMMA, - anon_sym_LBRACE, - [195419] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8365), 1, - sym_identifier, - ACTIONS(8928), 1, - anon_sym_RBRACE, - STATE(5831), 1, - sym_enumerator, - [195432] = 4, + ACTIONS(10570), 1, + anon_sym_GT2, + STATE(6393), 1, + aux_sym_template_argument_list_repeat1, + [225764] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8930), 1, - sym_identifier, - STATE(2176), 1, - sym_template_function, - STATE(3136), 1, - sym_template_type, - [195445] = 3, + ACTIONS(9910), 1, + anon_sym_LPAREN2, + ACTIONS(10572), 1, + anon_sym_constexpr, + STATE(265), 1, + sym_condition_clause, + [225777] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8648), 1, - anon_sym_catch, - STATE(1994), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - [195456] = 4, + ACTIONS(9082), 3, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_DOT, + [225786] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8365), 1, - sym_identifier, - ACTIONS(8932), 1, - anon_sym_RBRACE, - STATE(5831), 1, - sym_enumerator, - [195469] = 4, + ACTIONS(10030), 1, + anon_sym_COLON, + ACTIONS(10574), 1, + anon_sym_RPAREN, + STATE(6587), 1, + sym_gnu_asm_clobber_list, + [225799] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5799), 1, + ACTIONS(6672), 1, anon_sym_COMMA, - ACTIONS(8934), 1, + ACTIONS(10576), 1, anon_sym_GT2, - STATE(5464), 1, + STATE(6393), 1, aux_sym_template_argument_list_repeat1, - [195482] = 4, + [225812] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7894), 1, + ACTIONS(9587), 1, anon_sym_COMMA, - ACTIONS(8936), 1, - anon_sym_SEMI, - STATE(5417), 1, - aux_sym_type_definition_repeat2, - [195495] = 4, + ACTIONS(9717), 1, + anon_sym_LBRACE, + STATE(6340), 1, + aux_sym_base_class_clause_repeat1, + [225825] = 4, + ACTIONS(7927), 1, + anon_sym_LPAREN2, + ACTIONS(7929), 1, + sym_comment, + ACTIONS(10578), 1, + anon_sym_LF, + STATE(5111), 1, + sym_preproc_argument_list, + [225838] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8938), 1, - sym_identifier, - STATE(2176), 1, - sym_template_function, - STATE(3136), 1, - sym_template_type, - [195508] = 4, + ACTIONS(9587), 1, + anon_sym_COMMA, + ACTIONS(9696), 1, + anon_sym_LBRACE, + STATE(6340), 1, + aux_sym_base_class_clause_repeat1, + [225851] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8940), 1, - sym_identifier, - STATE(2176), 1, - sym_template_function, - STATE(3136), 1, - sym_template_type, - [195521] = 4, + ACTIONS(9587), 1, + anon_sym_COMMA, + ACTIONS(9696), 1, + anon_sym_LBRACE, + STATE(6484), 1, + aux_sym_base_class_clause_repeat1, + [225864] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5982), 1, + ACTIONS(8894), 1, anon_sym_COMMA, - ACTIONS(5984), 1, + ACTIONS(10580), 1, + anon_sym_SEMI, + STATE(6199), 1, + aux_sym_type_definition_repeat2, + [225877] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3963), 1, anon_sym_RBRACE, - STATE(5468), 1, + ACTIONS(10582), 1, + anon_sym_COMMA, + STATE(6381), 1, aux_sym_initializer_list_repeat1, - [195534] = 3, + [225890] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8920), 1, - anon_sym_catch, - STATE(336), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - [195545] = 4, - ACTIONS(7007), 1, - anon_sym_LPAREN2, - ACTIONS(7009), 1, + ACTIONS(10050), 1, + anon_sym_COLON, + ACTIONS(10584), 1, + anon_sym_RPAREN, + STATE(6588), 1, + sym_gnu_asm_input_operand_list, + [225903] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(8942), 1, - anon_sym_LF, - STATE(4436), 1, - sym_preproc_argument_list, - [195558] = 4, - ACTIONS(7007), 1, + ACTIONS(10586), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(10588), 2, + anon_sym_COMMA, + anon_sym_LBRACE, + [225914] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10030), 1, + anon_sym_COLON, + ACTIONS(10590), 1, + anon_sym_RPAREN, + STATE(6590), 1, + sym_gnu_asm_clobber_list, + [225927] = 4, + ACTIONS(7927), 1, anon_sym_LPAREN2, - ACTIONS(7009), 1, + ACTIONS(7929), 1, sym_comment, - ACTIONS(8944), 1, + ACTIONS(10592), 1, anon_sym_LF, - STATE(4436), 1, + STATE(5111), 1, sym_preproc_argument_list, - [195571] = 3, + [225940] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8946), 1, + ACTIONS(9852), 1, anon_sym_catch, - STATE(334), 2, + STATE(405), 2, sym_catch_clause, aux_sym_constructor_try_statement_repeat1, - [195582] = 4, + [225951] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8948), 1, + ACTIONS(9523), 1, + sym_identifier, + ACTIONS(10594), 1, + anon_sym_RBRACE, + STATE(6782), 1, + sym_enumerator, + [225964] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9902), 1, + anon_sym_COLON, + ACTIONS(10596), 1, + anon_sym_RPAREN, + STATE(7689), 1, + sym_gnu_asm_goto_list, + [225977] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10030), 1, + anon_sym_COLON, + ACTIONS(10598), 1, + anon_sym_RPAREN, + STATE(6231), 1, + sym_gnu_asm_clobber_list, + [225990] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6666), 1, anon_sym_COMMA, - ACTIONS(8951), 1, + ACTIONS(10600), 1, anon_sym_RPAREN, - STATE(5537), 1, - aux_sym_throw_specifier_repeat1, - [195595] = 3, + STATE(6249), 1, + aux_sym_generic_expression_repeat1, + [226003] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8955), 1, + ACTIONS(9902), 1, + anon_sym_COLON, + ACTIONS(10602), 1, anon_sym_RPAREN, - ACTIONS(8953), 2, - anon_sym_DOT_DOT_DOT, - sym_identifier, - [195606] = 4, + STATE(6983), 1, + sym_gnu_asm_goto_list, + [226016] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7894), 1, + ACTIONS(8894), 1, anon_sym_COMMA, - ACTIONS(8957), 1, + ACTIONS(10604), 1, anon_sym_SEMI, - STATE(5417), 1, + STATE(6199), 1, aux_sym_type_definition_repeat2, - [195619] = 4, + [226029] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10606), 1, + sym_identifier, + STATE(2856), 1, + sym_template_function, + STATE(3560), 1, + sym_template_type, + [226042] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8769), 1, + ACTIONS(6666), 1, anon_sym_COMMA, - ACTIONS(8959), 1, + ACTIONS(10608), 1, anon_sym_RPAREN, - STATE(5440), 1, - aux_sym_requires_parameter_list_repeat1, - [195632] = 4, + STATE(6249), 1, + aux_sym_generic_expression_repeat1, + [226055] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5799), 1, - anon_sym_COMMA, - ACTIONS(8961), 1, - anon_sym_GT2, - STATE(5498), 1, - aux_sym_template_argument_list_repeat1, - [195645] = 4, - ACTIONS(7007), 1, + ACTIONS(9910), 1, anon_sym_LPAREN2, - ACTIONS(7009), 1, + ACTIONS(10610), 1, + anon_sym_constexpr, + STATE(207), 1, + sym_condition_clause, + [226068] = 3, + ACTIONS(7929), 1, sym_comment, - ACTIONS(8963), 1, + ACTIONS(10612), 1, anon_sym_LF, - STATE(4436), 1, - sym_preproc_argument_list, - [195658] = 4, + ACTIONS(10614), 1, + sym_preproc_arg, + [226078] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5799), 1, + ACTIONS(10616), 2, anon_sym_COMMA, - ACTIONS(8965), 1, anon_sym_GT2, - STATE(5498), 1, - aux_sym_template_argument_list_repeat1, - [195671] = 4, + [226086] = 3, + ACTIONS(7929), 1, + sym_comment, + ACTIONS(10618), 1, + anon_sym_LF, + ACTIONS(10620), 1, + sym_preproc_arg, + [226096] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8349), 1, - anon_sym_COMMA, - ACTIONS(8419), 1, + ACTIONS(49), 1, anon_sym_LBRACE, - STATE(5648), 1, - aux_sym_base_class_clause_repeat1, - [195684] = 4, + STATE(6192), 1, + sym_compound_statement, + [226106] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8967), 1, - anon_sym_COMMA, - ACTIONS(8970), 1, - anon_sym_SEMI, - STATE(5545), 1, - aux_sym_declaration_repeat1, - [195697] = 4, + ACTIONS(10622), 1, + sym_identifier, + STATE(6265), 1, + sym_attribute, + [226116] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7011), 1, - anon_sym_COMMA, - ACTIONS(8972), 1, - anon_sym_RPAREN, - STATE(5402), 1, - aux_sym_preproc_argument_list_repeat1, - [195710] = 4, + ACTIONS(6308), 1, + anon_sym_LPAREN2, + STATE(6959), 1, + sym_argument_list, + [226126] = 3, + ACTIONS(7929), 1, + sym_comment, + ACTIONS(10624), 1, + anon_sym_LF, + ACTIONS(10626), 1, + sym_preproc_arg, + [226136] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5799), 1, + ACTIONS(10588), 2, anon_sym_COMMA, - ACTIONS(8974), 1, - anon_sym_GT2, - STATE(5498), 1, - aux_sym_template_argument_list_repeat1, - [195723] = 4, + anon_sym_LBRACE, + [226144] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8976), 1, - anon_sym_COMMA, - ACTIONS(8978), 1, - anon_sym_RBRACE, - STATE(5479), 1, - aux_sym_enumerator_list_repeat1, - [195736] = 4, + ACTIONS(10622), 1, + sym_identifier, + STATE(6534), 1, + sym_attribute, + [226154] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8980), 1, - anon_sym_COMMA, - ACTIONS(8983), 1, - anon_sym_GT2, - STATE(5549), 1, - aux_sym_template_parameter_list_repeat1, - [195749] = 4, + ACTIONS(6308), 1, + anon_sym_LPAREN2, + STATE(7591), 1, + sym_argument_list, + [226164] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8985), 1, - sym_identifier, - STATE(2932), 1, - sym_template_function, - STATE(3136), 1, - sym_template_type, - [195762] = 4, + ACTIONS(9910), 1, + anon_sym_LPAREN2, + STATE(200), 1, + sym_condition_clause, + [226174] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3396), 1, - anon_sym_RBRACE, - ACTIONS(8987), 1, - anon_sym_COMMA, - STATE(5491), 1, - aux_sym_initializer_list_repeat1, - [195775] = 4, + ACTIONS(9910), 1, + anon_sym_LPAREN2, + STATE(6667), 1, + sym_condition_clause, + [226184] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5844), 1, - anon_sym_COMMA, - ACTIONS(5978), 1, - anon_sym_RPAREN, - STATE(5482), 1, - aux_sym_argument_list_repeat1, - [195788] = 4, + ACTIONS(6195), 1, + anon_sym_LBRACE, + STATE(3748), 1, + sym_field_declaration_list, + [226194] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8989), 1, - anon_sym_COMMA, - ACTIONS(8991), 1, - anon_sym_RPAREN, - STATE(5383), 1, - aux_sym_preproc_params_repeat1, - [195801] = 4, + ACTIONS(9910), 1, + anon_sym_LPAREN2, + STATE(216), 1, + sym_condition_clause, + [226204] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8993), 1, - anon_sym_COMMA, - ACTIONS(8995), 1, - anon_sym_RBRACE, - STATE(5573), 1, - aux_sym_enumerator_list_repeat1, - [195814] = 4, + ACTIONS(9910), 1, + anon_sym_LPAREN2, + STATE(209), 1, + sym_condition_clause, + [226214] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8989), 1, - anon_sym_COMMA, - ACTIONS(8997), 1, - anon_sym_RPAREN, - STATE(5553), 1, - aux_sym_preproc_params_repeat1, - [195827] = 4, + ACTIONS(9910), 1, + anon_sym_LPAREN2, + STATE(6780), 1, + sym_condition_clause, + [226224] = 2, + ACTIONS(7929), 1, + sym_comment, + ACTIONS(10628), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [226232] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8999), 1, - sym_identifier, - STATE(2825), 1, - sym_template_function, - STATE(3136), 1, - sym_template_type, - [195840] = 3, + ACTIONS(49), 1, + anon_sym_LBRACE, + STATE(6467), 1, + sym_compound_statement, + [226242] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8920), 1, - anon_sym_catch, - STATE(436), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - [195851] = 4, + ACTIONS(10630), 1, + anon_sym_LPAREN2, + ACTIONS(10632), 1, + sym_raw_string_delimiter, + [226252] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7272), 1, - anon_sym_COMMA, - ACTIONS(9001), 1, - anon_sym_SEMI, - STATE(5545), 1, - aux_sym_declaration_repeat1, - [195864] = 4, + ACTIONS(9910), 1, + anon_sym_LPAREN2, + STATE(255), 1, + sym_condition_clause, + [226262] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5799), 1, - anon_sym_COMMA, - ACTIONS(9003), 1, - anon_sym_GT2, - STATE(5498), 1, - aux_sym_template_argument_list_repeat1, - [195877] = 4, + ACTIONS(10634), 1, + sym_identifier, + STATE(3560), 1, + sym_template_type, + [226272] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8667), 1, - anon_sym_COMMA, - ACTIONS(9005), 1, - anon_sym_RBRACK_RBRACK, - STATE(5391), 1, - aux_sym_attribute_declaration_repeat1, - [195890] = 4, + ACTIONS(1947), 1, + anon_sym_LBRACE, + STATE(3049), 1, + sym_initializer_list, + [226282] = 2, + ACTIONS(7929), 1, + sym_comment, + ACTIONS(10636), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [226290] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7272), 1, - anon_sym_COMMA, - ACTIONS(9007), 1, - anon_sym_SEMI, - STATE(5545), 1, - aux_sym_declaration_repeat1, - [195903] = 4, + ACTIONS(9523), 1, + sym_identifier, + STATE(6782), 1, + sym_enumerator, + [226300] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5799), 1, - anon_sym_COMMA, - ACTIONS(9009), 1, - anon_sym_GT2, - STATE(5581), 1, - aux_sym_template_argument_list_repeat1, - [195916] = 3, + ACTIONS(10638), 1, + anon_sym_default, + ACTIONS(10640), 1, + anon_sym_delete, + [226310] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9011), 1, - anon_sym_catch, - STATE(368), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - [195927] = 4, + ACTIONS(10642), 1, + anon_sym_LPAREN2, + ACTIONS(10644), 1, + sym_raw_string_delimiter, + [226320] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9013), 1, + ACTIONS(10646), 1, + anon_sym_LPAREN2, + ACTIONS(10648), 1, + sym_raw_string_delimiter, + [226330] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10650), 1, sym_identifier, - STATE(2690), 1, - sym_template_function, - STATE(3136), 1, + STATE(2838), 1, sym_template_type, - [195940] = 4, + [226340] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5799), 1, - anon_sym_COMMA, - ACTIONS(9015), 1, - anon_sym_GT2, - STATE(5498), 1, - aux_sym_template_argument_list_repeat1, - [195953] = 4, + ACTIONS(1899), 1, + anon_sym_LBRACE, + STATE(3950), 1, + sym_initializer_list, + [226350] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8733), 1, + ACTIONS(10652), 1, anon_sym_LPAREN2, - ACTIONS(9017), 1, - anon_sym_constexpr, - STATE(191), 1, - sym_condition_clause, - [195966] = 4, + ACTIONS(10654), 1, + sym_raw_string_delimiter, + [226360] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5844), 1, - anon_sym_COMMA, - ACTIONS(5890), 1, - anon_sym_RPAREN, - STATE(5610), 1, - aux_sym_argument_list_repeat1, - [195979] = 4, + ACTIONS(5212), 1, + anon_sym_LPAREN2, + STATE(3468), 1, + sym_argument_list, + [226370] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9019), 1, - anon_sym_COMMA, - ACTIONS(9021), 1, - anon_sym_RBRACE, - STATE(5616), 1, - aux_sym_enumerator_list_repeat1, - [195992] = 4, + ACTIONS(10656), 1, + anon_sym_LPAREN2, + ACTIONS(10658), 1, + sym_raw_string_delimiter, + [226380] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5799), 1, - anon_sym_COMMA, - ACTIONS(9023), 1, - anon_sym_GT2, - STATE(5498), 1, - aux_sym_template_argument_list_repeat1, - [196005] = 4, + ACTIONS(10660), 1, + sym_identifier, + ACTIONS(10662), 1, + anon_sym_LPAREN2, + [226390] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7894), 1, - anon_sym_COMMA, - ACTIONS(9025), 1, - anon_sym_SEMI, - STATE(5417), 1, - aux_sym_type_definition_repeat2, - [196018] = 4, + ACTIONS(6045), 1, + anon_sym_LT, + STATE(4033), 1, + sym_template_argument_list, + [226400] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7272), 1, - anon_sym_COMMA, - ACTIONS(9027), 1, - anon_sym_SEMI, - STATE(5514), 1, - aux_sym_declaration_repeat1, - [196031] = 4, + ACTIONS(10664), 1, + anon_sym_LT, + STATE(2117), 1, + sym_template_argument_list, + [226410] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8365), 1, + ACTIONS(9519), 1, sym_identifier, - ACTIONS(9029), 1, - anon_sym_RBRACE, - STATE(5831), 1, - sym_enumerator, - [196044] = 4, + STATE(3560), 1, + sym_template_type, + [226420] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5045), 1, + anon_sym_LBRACE, + STATE(2775), 1, + sym_field_declaration_list, + [226430] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5149), 1, + anon_sym_LBRACE, + STATE(3242), 1, + sym_field_declaration_list, + [226440] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9029), 1, - anon_sym_RBRACE, - ACTIONS(9031), 1, - anon_sym_COMMA, - STATE(5373), 1, - aux_sym_enumerator_list_repeat1, - [196057] = 4, + ACTIONS(10666), 1, + anon_sym_LT, + STATE(3307), 1, + sym_template_argument_list, + [226450] = 2, + ACTIONS(7929), 1, + sym_comment, + ACTIONS(10668), 2, + anon_sym_LF, + sym_preproc_arg, + [226458] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9033), 1, + ACTIONS(10550), 2, anon_sym_COMMA, - ACTIONS(9035), 1, anon_sym_RPAREN, - STATE(5597), 1, - aux_sym_parameter_list_repeat1, - [196070] = 4, + [226466] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5799), 1, - anon_sym_COMMA, - ACTIONS(9037), 1, - anon_sym_GT2, + ACTIONS(6151), 1, + anon_sym_LT, STATE(5559), 1, - aux_sym_template_argument_list_repeat1, - [196083] = 4, + sym_template_argument_list, + [226476] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8625), 1, - anon_sym_COMMA, - ACTIONS(9039), 1, - anon_sym_RPAREN, - STATE(5376), 1, - aux_sym_throw_specifier_repeat1, - [196096] = 4, + ACTIONS(10670), 1, + anon_sym_LT, + STATE(2098), 1, + sym_template_argument_list, + [226486] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7894), 1, - anon_sym_COMMA, - ACTIONS(9041), 1, - anon_sym_SEMI, - STATE(5417), 1, - aux_sym_type_definition_repeat2, - [196109] = 4, + ACTIONS(9910), 1, + anon_sym_LPAREN2, + STATE(279), 1, + sym_condition_clause, + [226496] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9043), 1, - anon_sym_COMMA, - ACTIONS(9045), 1, + ACTIONS(251), 1, anon_sym_LBRACE, - STATE(5591), 1, - aux_sym_field_initializer_list_repeat1, - [196122] = 4, + STATE(411), 1, + sym_compound_statement, + [226506] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5799), 1, - anon_sym_COMMA, - ACTIONS(9047), 1, - anon_sym_GT2, - STATE(5498), 1, - aux_sym_template_argument_list_repeat1, - [196135] = 4, + ACTIONS(4978), 1, + anon_sym_LPAREN2, + STATE(3034), 1, + sym_argument_list, + [226516] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5799), 1, - anon_sym_COMMA, - ACTIONS(9049), 1, - anon_sym_GT2, - STATE(5498), 1, - aux_sym_template_argument_list_repeat1, - [196148] = 4, + ACTIONS(6151), 1, + anon_sym_LT, + STATE(4522), 1, + sym_template_argument_list, + [226526] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5799), 1, - anon_sym_COMMA, - ACTIONS(9051), 1, - anon_sym_GT2, - STATE(5498), 1, - aux_sym_template_argument_list_repeat1, - [196161] = 3, + ACTIONS(7626), 1, + anon_sym_LBRACE, + STATE(4743), 1, + sym_field_declaration_list, + [226536] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9053), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(9055), 2, - anon_sym_COMMA, - anon_sym_LBRACE, - [196172] = 3, + ACTIONS(10666), 1, + anon_sym_LT, + STATE(2218), 1, + sym_template_argument_list, + [226546] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9057), 1, - anon_sym_catch, - STATE(1137), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - [196183] = 4, + ACTIONS(4590), 1, + anon_sym_LBRACE, + STATE(567), 1, + sym_declaration_list, + [226556] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7894), 1, + ACTIONS(4167), 2, anon_sym_COMMA, - ACTIONS(9059), 1, - anon_sym_SEMI, - STATE(5417), 1, - aux_sym_type_definition_repeat2, - [196196] = 4, + anon_sym_RBRACK, + [226564] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8365), 1, - sym_identifier, - ACTIONS(9061), 1, - anon_sym_RBRACE, - STATE(5831), 1, - sym_enumerator, - [196209] = 4, + ACTIONS(10664), 1, + anon_sym_LT, + STATE(2114), 1, + sym_template_argument_list, + [226574] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9063), 1, - anon_sym_COMMA, - ACTIONS(9065), 1, - anon_sym_RBRACE, - STATE(5373), 1, - aux_sym_enumerator_list_repeat1, - [196222] = 4, + ACTIONS(6151), 1, + anon_sym_LT, + STATE(6351), 1, + sym_template_argument_list, + [226584] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5856), 1, + ACTIONS(6744), 1, + anon_sym_RBRACK, + ACTIONS(10672), 1, anon_sym_COMMA, - ACTIONS(5858), 1, - anon_sym_RBRACE, - STATE(5628), 1, - aux_sym_initializer_list_repeat1, - [196235] = 4, + [226594] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8365), 1, - sym_identifier, - ACTIONS(9065), 1, - anon_sym_RBRACE, - STATE(5831), 1, - sym_enumerator, - [196248] = 4, + ACTIONS(5045), 1, + anon_sym_LBRACE, + STATE(2787), 1, + sym_field_declaration_list, + [226604] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5844), 1, - anon_sym_COMMA, - ACTIONS(9067), 1, - anon_sym_RPAREN, - STATE(5419), 1, - aux_sym_argument_list_repeat1, - [196261] = 4, + ACTIONS(10674), 1, + anon_sym_LPAREN2, + STATE(7475), 1, + sym_parenthesized_expression, + [226614] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7894), 1, + ACTIONS(10676), 2, anon_sym_COMMA, - ACTIONS(9069), 1, - anon_sym_SEMI, - STATE(5417), 1, - aux_sym_type_definition_repeat2, - [196274] = 4, + anon_sym_LBRACE, + [226622] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9071), 1, - anon_sym_COMMA, - ACTIONS(9074), 1, - anon_sym_LBRACE, - STATE(5591), 1, - aux_sym_field_initializer_list_repeat1, - [196287] = 4, + ACTIONS(6045), 1, + anon_sym_LT, + STATE(4399), 1, + sym_template_argument_list, + [226632] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5799), 1, - anon_sym_COMMA, - ACTIONS(9076), 1, - anon_sym_GT2, - STATE(5637), 1, - aux_sym_template_argument_list_repeat1, - [196300] = 4, + ACTIONS(7698), 1, + anon_sym_LBRACE, + STATE(2990), 1, + sym_requirement_seq, + [226642] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9078), 1, - sym_identifier, - STATE(2176), 1, - sym_template_function, - STATE(3136), 1, - sym_template_type, - [196313] = 4, + ACTIONS(7601), 1, + anon_sym_LT, + STATE(4650), 1, + sym_template_argument_list, + [226652] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9080), 1, - sym_identifier, - STATE(2530), 1, - sym_template_function, - STATE(3136), 1, - sym_template_type, - [196326] = 3, + ACTIONS(10417), 2, + anon_sym_COMMA, + anon_sym_LBRACE, + [226660] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8946), 1, - anon_sym_catch, - STATE(335), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - [196337] = 4, + ACTIONS(7977), 1, + anon_sym_LPAREN2, + STATE(6689), 1, + sym_parameter_list, + [226670] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8763), 1, + ACTIONS(10678), 2, anon_sym_COMMA, - ACTIONS(9082), 1, - anon_sym_GT2, - STATE(5549), 1, - aux_sym_template_parameter_list_repeat1, - [196350] = 4, + anon_sym_LBRACE, + [226678] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9033), 1, + ACTIONS(10421), 2, anon_sym_COMMA, - ACTIONS(9084), 1, - anon_sym_RPAREN, - STATE(5669), 1, - aux_sym_parameter_list_repeat1, - [196363] = 4, + anon_sym_LBRACE, + [226686] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5799), 1, - anon_sym_COMMA, - ACTIONS(9086), 1, - anon_sym_GT2, - STATE(5498), 1, - aux_sym_template_argument_list_repeat1, - [196376] = 4, + ACTIONS(5045), 1, + anon_sym_LBRACE, + STATE(2789), 1, + sym_field_declaration_list, + [226696] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7272), 1, - anon_sym_COMMA, - ACTIONS(9088), 1, - anon_sym_SEMI, - STATE(5545), 1, - aux_sym_declaration_repeat1, - [196389] = 4, + ACTIONS(251), 1, + anon_sym_LBRACE, + STATE(574), 1, + sym_compound_statement, + [226706] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7272), 1, - anon_sym_COMMA, - ACTIONS(9090), 1, - anon_sym_SEMI, - STATE(5545), 1, - aux_sym_declaration_repeat1, - [196402] = 4, + ACTIONS(5045), 1, + anon_sym_LBRACE, + STATE(2791), 1, + sym_field_declaration_list, + [226716] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7272), 1, - anon_sym_COMMA, - ACTIONS(9092), 1, - anon_sym_SEMI, - STATE(5545), 1, - aux_sym_declaration_repeat1, - [196415] = 4, + ACTIONS(6195), 1, + anon_sym_LBRACE, + STATE(3685), 1, + sym_field_declaration_list, + [226726] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9094), 1, - sym_identifier, + ACTIONS(10680), 1, + anon_sym_LT, STATE(2176), 1, - sym_template_function, - STATE(3136), 1, - sym_template_type, - [196428] = 4, + sym_template_argument_list, + [226736] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7272), 1, - anon_sym_COMMA, - ACTIONS(9096), 1, - anon_sym_SEMI, - STATE(5545), 1, - aux_sym_declaration_repeat1, - [196441] = 3, + ACTIONS(10666), 1, + anon_sym_LT, + STATE(2724), 1, + sym_template_argument_list, + [226746] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8783), 1, - anon_sym_catch, - STATE(363), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - [196452] = 3, + ACTIONS(49), 1, + anon_sym_LBRACE, + STATE(6457), 1, + sym_compound_statement, + [226756] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9011), 1, - anon_sym_catch, - STATE(343), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - [196463] = 4, + ACTIONS(9910), 1, + anon_sym_LPAREN2, + STATE(290), 1, + sym_condition_clause, + [226766] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5799), 1, - anon_sym_COMMA, - ACTIONS(9098), 1, - anon_sym_GT2, - STATE(5498), 1, - aux_sym_template_argument_list_repeat1, - [196476] = 4, + ACTIONS(49), 1, + anon_sym_LBRACE, + STATE(1154), 1, + sym_compound_statement, + [226776] = 3, + ACTIONS(7929), 1, + sym_comment, + ACTIONS(10682), 1, + anon_sym_LF, + ACTIONS(10684), 1, + sym_preproc_arg, + [226786] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7894), 1, - anon_sym_COMMA, - ACTIONS(9100), 1, - anon_sym_SEMI, - STATE(5417), 1, - aux_sym_type_definition_repeat2, - [196489] = 4, + ACTIONS(10686), 1, + anon_sym_LT, + STATE(2704), 1, + sym_template_argument_list, + [226796] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7894), 1, - anon_sym_COMMA, - ACTIONS(9102), 1, - anon_sym_SEMI, - STATE(5417), 1, - aux_sym_type_definition_repeat2, - [196502] = 4, + ACTIONS(4590), 1, + anon_sym_LBRACE, + STATE(600), 1, + sym_declaration_list, + [226806] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5799), 1, - anon_sym_COMMA, - ACTIONS(9104), 1, - anon_sym_GT2, - STATE(5615), 1, - aux_sym_template_argument_list_repeat1, - [196515] = 4, + ACTIONS(8695), 1, + anon_sym_LBRACE, + STATE(2529), 1, + sym_compound_statement, + [226816] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5844), 1, + ACTIONS(10324), 2, anon_sym_COMMA, - ACTIONS(9106), 1, anon_sym_RPAREN, - STATE(5419), 1, - aux_sym_argument_list_repeat1, - [196528] = 4, + [226824] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8365), 1, - sym_identifier, - ACTIONS(9108), 1, - anon_sym_RBRACE, - STATE(5831), 1, - sym_enumerator, - [196541] = 4, + ACTIONS(10670), 1, + anon_sym_LT, + STATE(2863), 1, + sym_template_argument_list, + [226834] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5799), 1, - anon_sym_COMMA, - ACTIONS(9110), 1, - anon_sym_GT2, - STATE(5498), 1, - aux_sym_template_argument_list_repeat1, - [196554] = 4, + ACTIONS(10688), 1, + sym_identifier, + ACTIONS(10690), 1, + anon_sym_RPAREN, + [226844] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5799), 1, - anon_sym_COMMA, - ACTIONS(9112), 1, - anon_sym_GT2, - STATE(5498), 1, - aux_sym_template_argument_list_repeat1, - [196567] = 4, + ACTIONS(7530), 1, + anon_sym_LT, + STATE(2704), 1, + sym_template_argument_list, + [226854] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5799), 1, - anon_sym_COMMA, - ACTIONS(9114), 1, - anon_sym_GT2, - STATE(5498), 1, - aux_sym_template_argument_list_repeat1, - [196580] = 4, + ACTIONS(5149), 1, + anon_sym_LBRACE, + STATE(3245), 1, + sym_field_declaration_list, + [226864] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5799), 1, + ACTIONS(10297), 2, anon_sym_COMMA, - ACTIONS(9116), 1, - anon_sym_GT2, - STATE(5498), 1, - aux_sym_template_argument_list_repeat1, - [196593] = 4, + anon_sym_RPAREN, + [226872] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9108), 1, - anon_sym_RBRACE, - ACTIONS(9118), 1, - anon_sym_COMMA, - STATE(5373), 1, - aux_sym_enumerator_list_repeat1, - [196606] = 4, + ACTIONS(10692), 1, + anon_sym_LPAREN2, + ACTIONS(10694), 1, + sym_raw_string_delimiter, + [226882] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5799), 1, - anon_sym_COMMA, - ACTIONS(9120), 1, - anon_sym_GT2, - STATE(5598), 1, - aux_sym_template_argument_list_repeat1, - [196619] = 4, + ACTIONS(6308), 1, + anon_sym_LPAREN2, + STATE(7369), 1, + sym_argument_list, + [226892] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5844), 1, - anon_sym_COMMA, - ACTIONS(9122), 1, - anon_sym_RPAREN, - STATE(5419), 1, - aux_sym_argument_list_repeat1, - [196632] = 4, + ACTIONS(5149), 1, + anon_sym_LBRACE, + STATE(3256), 1, + sym_field_declaration_list, + [226902] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8365), 1, + ACTIONS(10696), 1, sym_identifier, - ACTIONS(9124), 1, - anon_sym_RBRACE, - STATE(5831), 1, - sym_enumerator, - [196645] = 4, + STATE(4648), 1, + sym_template_type, + [226912] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5844), 1, - anon_sym_COMMA, - ACTIONS(9126), 1, - anon_sym_RPAREN, - STATE(5419), 1, - aux_sym_argument_list_repeat1, - [196658] = 4, + ACTIONS(4588), 1, + anon_sym_LBRACE, + STATE(1362), 1, + sym_declaration_list, + [226922] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10680), 1, + anon_sym_LT, + STATE(3319), 1, + sym_template_argument_list, + [226932] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5799), 1, + ACTIONS(10278), 2, anon_sym_COMMA, - ACTIONS(9128), 1, anon_sym_GT2, - STATE(5543), 1, - aux_sym_template_argument_list_repeat1, - [196671] = 4, + [226940] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9130), 1, - sym_identifier, - STATE(2530), 1, - sym_template_function, - STATE(3136), 1, - sym_template_type, - [196684] = 4, + ACTIONS(10269), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [226948] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9124), 1, - anon_sym_RBRACE, - ACTIONS(9132), 1, - anon_sym_COMMA, - STATE(5373), 1, - aux_sym_enumerator_list_repeat1, - [196697] = 4, + ACTIONS(7668), 1, + anon_sym_LBRACE, + STATE(3789), 1, + sym_requirement_seq, + [226958] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5892), 1, - anon_sym_COMMA, - ACTIONS(5894), 1, - anon_sym_RBRACE, - STATE(5551), 1, - aux_sym_initializer_list_repeat1, - [196710] = 4, + ACTIONS(7626), 1, + anon_sym_LBRACE, + STATE(4746), 1, + sym_field_declaration_list, + [226968] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8667), 1, - anon_sym_COMMA, - ACTIONS(9134), 1, - anon_sym_RBRACK_RBRACK, - STATE(5650), 1, - aux_sym_attribute_declaration_repeat1, - [196723] = 4, + ACTIONS(9486), 1, + anon_sym_COLON_COLON, + ACTIONS(10698), 1, + anon_sym_SEMI, + [226978] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9136), 1, - sym_identifier, - STATE(2176), 1, - sym_template_function, - STATE(3136), 1, - sym_template_type, - [196736] = 4, + ACTIONS(738), 1, + anon_sym_LBRACE, + STATE(813), 1, + sym_compound_statement, + [226988] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5799), 1, + ACTIONS(10700), 2, anon_sym_COMMA, - ACTIONS(9138), 1, anon_sym_GT2, - STATE(5498), 1, - aux_sym_template_argument_list_repeat1, - [196749] = 4, + [226996] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3388), 1, - anon_sym_RBRACE, - ACTIONS(9140), 1, - anon_sym_COMMA, - STATE(5491), 1, - aux_sym_initializer_list_repeat1, - [196762] = 4, + ACTIONS(7626), 1, + anon_sym_LBRACE, + STATE(4745), 1, + sym_field_declaration_list, + [227006] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5799), 1, - anon_sym_COMMA, - ACTIONS(9142), 1, - anon_sym_GT2, - STATE(5632), 1, - aux_sym_template_argument_list_repeat1, - [196775] = 4, + ACTIONS(10702), 1, + sym_identifier, + STATE(3537), 1, + sym_template_method, + [227016] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5799), 1, - anon_sym_COMMA, - ACTIONS(9144), 1, - anon_sym_GT2, - STATE(5498), 1, - aux_sym_template_argument_list_repeat1, - [196788] = 4, + ACTIONS(7626), 1, + anon_sym_LBRACE, + STATE(4744), 1, + sym_field_declaration_list, + [227026] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5799), 1, + ACTIONS(10704), 2, anon_sym_COMMA, - ACTIONS(9146), 1, anon_sym_GT2, - STATE(5498), 1, - aux_sym_template_argument_list_repeat1, - [196801] = 4, + [227034] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5799), 1, - anon_sym_COMMA, - ACTIONS(9148), 1, - anon_sym_GT2, - STATE(5498), 1, - aux_sym_template_argument_list_repeat1, - [196814] = 4, + ACTIONS(10706), 1, + anon_sym_LT, + STATE(2861), 1, + sym_template_argument_list, + [227044] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5799), 1, - anon_sym_COMMA, - ACTIONS(9150), 1, - anon_sym_GT2, - STATE(5498), 1, - aux_sym_template_argument_list_repeat1, - [196827] = 4, + ACTIONS(251), 1, + anon_sym_LBRACE, + STATE(535), 1, + sym_compound_statement, + [227054] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5799), 1, + ACTIONS(10708), 2, anon_sym_COMMA, - ACTIONS(9152), 1, anon_sym_GT2, - STATE(5498), 1, - aux_sym_template_argument_list_repeat1, - [196840] = 4, + [227062] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5799), 1, - anon_sym_COMMA, - ACTIONS(9154), 1, - anon_sym_GT2, - STATE(5498), 1, - aux_sym_template_argument_list_repeat1, - [196853] = 4, + ACTIONS(10710), 1, + anon_sym_default, + ACTIONS(10712), 1, + anon_sym_delete, + [227072] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9156), 1, - anon_sym_COMMA, - ACTIONS(9159), 1, - anon_sym_RPAREN, - STATE(5636), 1, - aux_sym_requires_parameter_list_repeat1, - [196866] = 4, + ACTIONS(49), 1, + anon_sym_LBRACE, + STATE(1327), 1, + sym_compound_statement, + [227082] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5799), 1, - anon_sym_COMMA, - ACTIONS(9161), 1, - anon_sym_GT2, - STATE(5498), 1, - aux_sym_template_argument_list_repeat1, - [196879] = 4, + ACTIONS(5086), 1, + anon_sym_LBRACE, + STATE(3171), 1, + sym_field_declaration_list, + [227092] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9163), 1, - anon_sym_COMMA, - ACTIONS(9165), 1, - anon_sym_RBRACE, - STATE(5586), 1, - aux_sym_enumerator_list_repeat1, - [196892] = 4, + ACTIONS(5149), 1, + anon_sym_LBRACE, + STATE(3278), 1, + sym_field_declaration_list, + [227102] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5799), 1, - anon_sym_COMMA, - ACTIONS(9167), 1, - anon_sym_GT2, - STATE(5498), 1, - aux_sym_template_argument_list_repeat1, - [196905] = 4, + ACTIONS(8727), 1, + anon_sym_LBRACE, + STATE(2363), 1, + sym_compound_statement, + [227112] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8349), 1, - anon_sym_COMMA, - ACTIONS(9169), 1, + ACTIONS(7626), 1, anon_sym_LBRACE, - STATE(5508), 1, - aux_sym_base_class_clause_repeat1, - [196918] = 4, + STATE(4733), 1, + sym_field_declaration_list, + [227122] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3942), 1, + ACTIONS(5149), 1, anon_sym_LBRACE, - ACTIONS(8343), 1, - anon_sym_COLON_COLON, - STATE(544), 1, - sym_declaration_list, - [196931] = 3, + STATE(3279), 1, + sym_field_declaration_list, + [227132] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9171), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(9173), 2, - anon_sym_COMMA, + ACTIONS(10714), 1, + anon_sym_LT, + STATE(2988), 1, + sym_template_argument_list, + [227142] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7626), 1, anon_sym_LBRACE, - [196942] = 4, + STATE(4728), 1, + sym_field_declaration_list, + [227152] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5799), 1, - anon_sym_COMMA, - ACTIONS(9175), 1, - anon_sym_GT2, - STATE(5646), 1, - aux_sym_template_argument_list_repeat1, - [196955] = 4, + ACTIONS(5149), 1, + anon_sym_LBRACE, + STATE(3287), 1, + sym_field_declaration_list, + [227162] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5799), 1, - anon_sym_COMMA, - ACTIONS(9177), 1, - anon_sym_GT2, - STATE(5498), 1, - aux_sym_template_argument_list_repeat1, - [196968] = 4, + ACTIONS(251), 1, + anon_sym_LBRACE, + STATE(387), 1, + sym_compound_statement, + [227172] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5799), 1, - anon_sym_COMMA, - ACTIONS(9179), 1, - anon_sym_GT2, - STATE(5498), 1, - aux_sym_template_argument_list_repeat1, - [196981] = 4, + ACTIONS(9486), 1, + anon_sym_COLON_COLON, + ACTIONS(10716), 1, + anon_sym_SEMI, + [227182] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5799), 1, - anon_sym_COMMA, - ACTIONS(9181), 1, - anon_sym_GT2, - STATE(5498), 1, - aux_sym_template_argument_list_repeat1, - [196994] = 4, + ACTIONS(3081), 1, + anon_sym_while, + ACTIONS(10718), 1, + anon_sym_else, + [227192] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5844), 1, + ACTIONS(7063), 2, anon_sym_COMMA, - ACTIONS(5846), 1, - anon_sym_RPAREN, - STATE(5589), 1, - aux_sym_argument_list_repeat1, - [197007] = 4, + anon_sym_RBRACE, + [227200] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8349), 1, - anon_sym_COMMA, - ACTIONS(9169), 1, + ACTIONS(10666), 1, + anon_sym_LT, + STATE(3515), 1, + sym_template_argument_list, + [227210] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7626), 1, anon_sym_LBRACE, - STATE(5418), 1, - aux_sym_base_class_clause_repeat1, - [197020] = 4, + STATE(4752), 1, + sym_field_declaration_list, + [227220] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8667), 1, + ACTIONS(6773), 2, anon_sym_COMMA, - ACTIONS(9183), 1, - anon_sym_RBRACK_RBRACK, - STATE(5395), 1, - aux_sym_attribute_declaration_repeat1, - [197033] = 4, + anon_sym_RBRACE, + [227228] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8667), 1, - anon_sym_COMMA, - ACTIONS(9185), 1, - anon_sym_RBRACK_RBRACK, - STATE(5391), 1, - aux_sym_attribute_declaration_repeat1, - [197046] = 4, + ACTIONS(5045), 1, + anon_sym_LBRACE, + STATE(2823), 1, + sym_field_declaration_list, + [227238] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9043), 1, - anon_sym_COMMA, - ACTIONS(9187), 1, + ACTIONS(5045), 1, anon_sym_LBRACE, - STATE(5578), 1, - aux_sym_field_initializer_list_repeat1, - [197059] = 3, + STATE(2825), 1, + sym_field_declaration_list, + [227248] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8783), 1, - anon_sym_catch, - STATE(478), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - [197070] = 4, + ACTIONS(5149), 1, + anon_sym_LBRACE, + STATE(3294), 1, + sym_field_declaration_list, + [227258] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8667), 1, - anon_sym_COMMA, - ACTIONS(9189), 1, - anon_sym_RBRACK_RBRACK, - STATE(5455), 1, - aux_sym_attribute_declaration_repeat1, - [197083] = 4, + ACTIONS(5149), 1, + anon_sym_LBRACE, + STATE(3288), 1, + sym_field_declaration_list, + [227268] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8349), 1, - anon_sym_COMMA, - ACTIONS(8351), 1, + ACTIONS(8695), 1, anon_sym_LBRACE, - STATE(5450), 1, - aux_sym_base_class_clause_repeat1, - [197096] = 4, + STATE(2642), 1, + sym_compound_statement, + [227278] = 3, + ACTIONS(7929), 1, + sym_comment, + ACTIONS(10720), 1, + anon_sym_LF, + ACTIONS(10722), 1, + sym_preproc_arg, + [227288] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9191), 1, - sym_identifier, - STATE(2530), 1, - sym_template_function, - STATE(3136), 1, - sym_template_type, - [197109] = 4, + ACTIONS(10680), 1, + anon_sym_LT, + STATE(3062), 1, + sym_template_argument_list, + [227298] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9193), 1, - sym_identifier, - STATE(2404), 1, - sym_template_method, - STATE(3136), 1, - sym_template_type, - [197122] = 4, + ACTIONS(5149), 1, + anon_sym_LBRACE, + STATE(3298), 1, + sym_field_declaration_list, + [227308] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7894), 1, - anon_sym_COMMA, - ACTIONS(9195), 1, - anon_sym_SEMI, - STATE(5417), 1, - aux_sym_type_definition_repeat2, - [197135] = 4, + ACTIONS(5149), 1, + anon_sym_LBRACE, + STATE(3309), 1, + sym_field_declaration_list, + [227318] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8365), 1, - sym_identifier, - ACTIONS(9197), 1, - anon_sym_RBRACE, - STATE(5831), 1, - sym_enumerator, - [197148] = 4, + ACTIONS(738), 1, + anon_sym_LBRACE, + STATE(1247), 1, + sym_compound_statement, + [227328] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5799), 1, - anon_sym_COMMA, - ACTIONS(9199), 1, - anon_sym_GT2, - STATE(5662), 1, - aux_sym_template_argument_list_repeat1, - [197161] = 4, + ACTIONS(10670), 1, + anon_sym_LT, + STATE(2167), 1, + sym_template_argument_list, + [227338] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5799), 1, - anon_sym_COMMA, - ACTIONS(9201), 1, - anon_sym_GT2, - STATE(5498), 1, - aux_sym_template_argument_list_repeat1, - [197174] = 4, + ACTIONS(10724), 1, + sym_identifier, + STATE(3310), 1, + sym_template_method, + [227348] = 3, + ACTIONS(7929), 1, + sym_comment, + ACTIONS(10726), 1, + anon_sym_LF, + ACTIONS(10728), 1, + sym_preproc_arg, + [227358] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5799), 1, + ACTIONS(10730), 2, anon_sym_COMMA, - ACTIONS(9203), 1, - anon_sym_GT2, - STATE(5498), 1, - aux_sym_template_argument_list_repeat1, - [197187] = 4, + anon_sym_RBRACK_RBRACK, + [227366] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5799), 1, - anon_sym_COMMA, - ACTIONS(9205), 1, - anon_sym_GT2, - STATE(5498), 1, - aux_sym_template_argument_list_repeat1, - [197200] = 4, + ACTIONS(10622), 1, + sym_identifier, + STATE(6912), 1, + sym_attribute, + [227376] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7272), 1, - anon_sym_COMMA, - ACTIONS(9207), 1, - anon_sym_SEMI, - STATE(5600), 1, - aux_sym_declaration_repeat1, - [197213] = 3, + ACTIONS(6195), 1, + anon_sym_LBRACE, + STATE(3732), 1, + sym_field_declaration_list, + [227386] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9011), 1, - anon_sym_catch, - STATE(455), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - [197224] = 4, + ACTIONS(2972), 1, + anon_sym_while, + ACTIONS(10732), 1, + anon_sym_else, + [227396] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8349), 1, - anon_sym_COMMA, - ACTIONS(8419), 1, + ACTIONS(6195), 1, anon_sym_LBRACE, - STATE(5418), 1, - aux_sym_base_class_clause_repeat1, - [197237] = 4, + STATE(3728), 1, + sym_field_declaration_list, + [227406] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3386), 1, - anon_sym_RBRACE, - ACTIONS(9209), 1, - anon_sym_COMMA, - STATE(5491), 1, - aux_sym_initializer_list_repeat1, - [197250] = 4, + ACTIONS(5045), 1, + anon_sym_LBRACE, + STATE(2720), 1, + sym_field_declaration_list, + [227416] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7272), 1, - anon_sym_COMMA, - ACTIONS(9211), 1, - anon_sym_SEMI, - STATE(5561), 1, - aux_sym_declaration_repeat1, - [197263] = 3, + ACTIONS(6195), 1, + anon_sym_LBRACE, + STATE(3722), 1, + sym_field_declaration_list, + [227426] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8946), 1, - anon_sym_catch, - STATE(318), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - [197274] = 4, + ACTIONS(5045), 1, + anon_sym_LBRACE, + STATE(2770), 1, + sym_field_declaration_list, + [227436] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9213), 1, + ACTIONS(10150), 2, anon_sym_COMMA, - ACTIONS(9216), 1, - anon_sym_RPAREN, - STATE(5669), 1, - aux_sym_parameter_list_repeat1, - [197287] = 3, + anon_sym_LBRACE, + [227444] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9218), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(9220), 2, - anon_sym_COMMA, + ACTIONS(4588), 1, anon_sym_LBRACE, - [197298] = 4, + STATE(1317), 1, + sym_declaration_list, + [227454] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9222), 1, - sym_identifier, - STATE(2176), 1, - sym_template_function, - STATE(3136), 1, - sym_template_type, - [197311] = 3, + ACTIONS(4586), 1, + anon_sym_LBRACE, + STATE(1212), 1, + sym_declaration_list, + [227464] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8733), 1, - anon_sym_LPAREN2, - STATE(171), 1, - sym_condition_clause, - [197321] = 3, + ACTIONS(1997), 1, + anon_sym_LBRACE, + STATE(3340), 1, + sym_initializer_list, + [227474] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9224), 1, - anon_sym_LT, - STATE(1865), 1, - sym_template_argument_list, - [197331] = 3, + ACTIONS(7626), 1, + anon_sym_LBRACE, + STATE(4730), 1, + sym_field_declaration_list, + [227484] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9226), 1, - anon_sym_LT, - STATE(1794), 1, - sym_template_argument_list, - [197341] = 3, + ACTIONS(7626), 1, + anon_sym_LBRACE, + STATE(4741), 1, + sym_field_declaration_list, + [227494] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9228), 1, - anon_sym_LT, - STATE(2146), 1, - sym_template_argument_list, - [197351] = 3, + ACTIONS(5045), 1, + anon_sym_LBRACE, + STATE(2826), 1, + sym_field_declaration_list, + [227504] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5383), 1, + ACTIONS(5599), 1, anon_sym_LT, - STATE(3922), 1, + STATE(3251), 1, sym_template_argument_list, - [197361] = 2, + [227514] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 2, - anon_sym_LPAREN2, - anon_sym_LBRACE, - [197369] = 3, + ACTIONS(10734), 1, + sym_identifier, + STATE(2400), 1, + sym_template_type, + [227524] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + ACTIONS(8695), 1, anon_sym_LBRACE, - STATE(5605), 1, + STATE(2688), 1, sym_compound_statement, - [197379] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6699), 1, - anon_sym_LT, - STATE(4060), 1, - sym_template_argument_list, - [197389] = 3, + [227534] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9232), 1, - anon_sym_default, - ACTIONS(9234), 1, - anon_sym_delete, - [197399] = 3, + ACTIONS(9597), 1, + anon_sym_LBRACE, + STATE(5522), 1, + sym_requirement_seq, + [227544] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6713), 1, - anon_sym_LT, - STATE(2000), 1, - sym_template_argument_list, - [197409] = 3, + ACTIONS(738), 1, + anon_sym_LBRACE, + STATE(1252), 1, + sym_compound_statement, + [227554] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9228), 1, + ACTIONS(6151), 1, anon_sym_LT, - STATE(1901), 1, + STATE(3608), 1, sym_template_argument_list, - [197419] = 3, + [227564] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9236), 1, - anon_sym_LPAREN2, - ACTIONS(9238), 1, - sym_raw_string_delimiter, - [197429] = 3, + ACTIONS(7626), 1, + anon_sym_LBRACE, + STATE(4766), 1, + sym_field_declaration_list, + [227574] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9240), 1, + ACTIONS(7530), 1, anon_sym_LT, - STATE(2266), 1, + STATE(2659), 1, sym_template_argument_list, - [197439] = 3, + [227584] = 3, + ACTIONS(7929), 1, + sym_comment, + ACTIONS(10736), 1, + anon_sym_LF, + ACTIONS(10738), 1, + sym_preproc_arg, + [227594] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8599), 1, + ACTIONS(4876), 1, anon_sym_LBRACE, - STATE(4525), 1, - sym_requirement_seq, - [197449] = 3, + STATE(2779), 1, + sym_field_declaration_list, + [227604] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9242), 1, + ACTIONS(10740), 1, sym_identifier, - STATE(4066), 1, + STATE(2809), 1, sym_template_type, - [197459] = 3, + [227614] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6757), 1, + ACTIONS(6195), 1, anon_sym_LBRACE, - STATE(4263), 1, + STATE(3772), 1, sym_field_declaration_list, - [197469] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9244), 1, - anon_sym_LPAREN2, - STATE(6318), 1, - sym_parenthesized_expression, - [197479] = 3, + [227624] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6757), 1, + ACTIONS(351), 1, anon_sym_LBRACE, - STATE(4250), 1, - sym_field_declaration_list, - [197489] = 3, - ACTIONS(3), 1, + STATE(693), 1, + sym_compound_statement, + [227634] = 3, + ACTIONS(7929), 1, sym_comment, - ACTIONS(6757), 1, - anon_sym_LBRACE, - STATE(4249), 1, - sym_field_declaration_list, - [197499] = 3, + ACTIONS(10742), 1, + anon_sym_LF, + ACTIONS(10744), 1, + sym_preproc_arg, + [227644] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6757), 1, - anon_sym_LBRACE, - STATE(4244), 1, - sym_field_declaration_list, - [197509] = 2, + ACTIONS(10746), 1, + sym_identifier, + STATE(2915), 1, + sym_template_method, + [227654] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 2, - anon_sym_LPAREN2, + ACTIONS(5086), 1, anon_sym_LBRACE, - [197517] = 3, + STATE(3160), 1, + sym_field_declaration_list, + [227664] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6757), 1, + ACTIONS(6195), 1, anon_sym_LBRACE, - STATE(4228), 1, + STATE(3780), 1, sym_field_declaration_list, - [197527] = 3, + [227674] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6757), 1, - anon_sym_LBRACE, - STATE(4209), 1, - sym_field_declaration_list, - [197537] = 3, + ACTIONS(6825), 1, + anon_sym_RPAREN, + ACTIONS(6827), 1, + anon_sym_SEMI, + [227684] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5413), 1, - anon_sym_LT, - STATE(3932), 1, - sym_template_argument_list, - [197547] = 3, + ACTIONS(10674), 1, + anon_sym_LPAREN2, + STATE(6990), 1, + sym_parenthesized_expression, + [227694] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6757), 1, + ACTIONS(5086), 1, anon_sym_LBRACE, - STATE(4201), 1, + STATE(3162), 1, sym_field_declaration_list, - [197557] = 3, + [227704] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9224), 1, - anon_sym_LT, - STATE(2486), 1, - sym_template_argument_list, - [197567] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7111), 1, - anon_sym_LPAREN2, - STATE(5862), 1, - sym_parameter_list, - [197577] = 3, + ACTIONS(4584), 1, + anon_sym_LBRACE, + STATE(787), 1, + sym_declaration_list, + [227714] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6757), 1, + ACTIONS(5086), 1, anon_sym_LBRACE, - STATE(4256), 1, + STATE(3163), 1, sym_field_declaration_list, - [197587] = 3, + [227724] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6757), 1, + ACTIONS(5086), 1, anon_sym_LBRACE, - STATE(4241), 1, + STATE(3164), 1, sym_field_declaration_list, - [197597] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5327), 1, - anon_sym_LT, - STATE(3100), 1, - sym_template_argument_list, - [197607] = 3, + [227734] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8443), 1, + ACTIONS(7688), 1, anon_sym_LBRACE, - STATE(4781), 1, + STATE(3569), 1, sym_requirement_seq, - [197617] = 3, + [227744] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + ACTIONS(4586), 1, anon_sym_LBRACE, - STATE(5384), 1, - sym_compound_statement, - [197627] = 3, + STATE(1226), 1, + sym_declaration_list, + [227754] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6757), 1, + ACTIONS(7708), 1, anon_sym_LBRACE, - STATE(4202), 1, - sym_field_declaration_list, - [197637] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9246), 1, - sym_identifier, - STATE(2159), 1, - sym_template_type, - [197647] = 3, + STATE(3208), 1, + sym_requirement_seq, + [227764] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9240), 1, - anon_sym_LT, - STATE(1772), 1, - sym_template_argument_list, - [197657] = 3, + ACTIONS(8667), 1, + anon_sym_LBRACE, + STATE(2232), 1, + sym_compound_statement, + [227774] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4255), 1, + ACTIONS(5086), 1, anon_sym_LBRACE, - STATE(2648), 1, + STATE(3168), 1, sym_field_declaration_list, - [197667] = 3, + [227784] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4255), 1, + ACTIONS(8667), 1, anon_sym_LBRACE, - STATE(2646), 1, - sym_field_declaration_list, - [197677] = 3, + STATE(2288), 1, + sym_compound_statement, + [227794] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4255), 1, + ACTIONS(5086), 1, anon_sym_LBRACE, - STATE(2645), 1, + STATE(3174), 1, sym_field_declaration_list, - [197687] = 3, + [227804] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4255), 1, + ACTIONS(8659), 1, anon_sym_LBRACE, - STATE(2643), 1, - sym_field_declaration_list, - [197697] = 2, - ACTIONS(7009), 1, + STATE(2637), 1, + sym_compound_statement, + [227814] = 3, + ACTIONS(7929), 1, sym_comment, - ACTIONS(9248), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [197705] = 3, + ACTIONS(10748), 1, + anon_sym_LF, + ACTIONS(10750), 1, + sym_preproc_arg, + [227824] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5413), 1, + ACTIONS(10706), 1, anon_sym_LT, - STATE(4860), 1, + STATE(2425), 1, sym_template_argument_list, - [197715] = 3, + [227834] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9228), 1, - anon_sym_LT, - STATE(2770), 1, - sym_template_argument_list, - [197725] = 3, + ACTIONS(8727), 1, + anon_sym_LBRACE, + STATE(2488), 1, + sym_compound_statement, + [227844] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9226), 1, + ACTIONS(6045), 1, anon_sym_LT, - STATE(1796), 1, + STATE(5559), 1, sym_template_argument_list, - [197735] = 3, + [227854] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5383), 1, - anon_sym_LT, - STATE(3810), 1, - sym_template_argument_list, - [197745] = 3, + ACTIONS(10752), 2, + anon_sym_COMMA, + anon_sym_LBRACE, + [227862] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10754), 1, + sym_identifier, + STATE(2648), 1, + sym_template_type, + [227872] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7717), 1, + ACTIONS(738), 1, anon_sym_LBRACE, - STATE(2197), 1, + STATE(953), 1, sym_compound_statement, - [197755] = 3, + [227882] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9910), 1, + anon_sym_LPAREN2, + STATE(210), 1, + sym_condition_clause, + [227892] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9968), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [227900] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4255), 1, + ACTIONS(4584), 1, anon_sym_LBRACE, - STATE(2630), 1, - sym_field_declaration_list, - [197765] = 3, + STATE(775), 1, + sym_declaration_list, + [227910] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4255), 1, + ACTIONS(5045), 1, anon_sym_LBRACE, - STATE(2626), 1, + STATE(2762), 1, sym_field_declaration_list, - [197775] = 3, + [227920] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + ACTIONS(4876), 1, anon_sym_LBRACE, - STATE(5447), 1, - sym_compound_statement, - [197785] = 3, + STATE(2795), 1, + sym_field_declaration_list, + [227930] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4255), 1, + ACTIONS(4876), 1, anon_sym_LBRACE, - STATE(2624), 1, + STATE(2790), 1, sym_field_declaration_list, - [197795] = 3, + [227940] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5383), 1, - anon_sym_LT, - STATE(4860), 1, - sym_template_argument_list, - [197805] = 3, + ACTIONS(7977), 1, + anon_sym_LPAREN2, + STATE(6932), 1, + sym_parameter_list, + [227950] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9250), 1, - sym_identifier, - STATE(5649), 1, - sym_attribute, - [197815] = 3, + ACTIONS(5086), 1, + anon_sym_LBRACE, + STATE(3192), 1, + sym_field_declaration_list, + [227960] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4255), 1, + ACTIONS(5086), 1, anon_sym_LBRACE, - STATE(2611), 1, + STATE(3194), 1, sym_field_declaration_list, - [197825] = 3, + [227970] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4255), 1, + ACTIONS(9856), 2, + anon_sym_SEMI, anon_sym_LBRACE, - STATE(2610), 1, - sym_field_declaration_list, - [197835] = 3, + [227978] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8733), 1, + ACTIONS(7977), 1, anon_sym_LPAREN2, - STATE(6003), 1, - sym_condition_clause, - [197845] = 3, + STATE(6671), 1, + sym_parameter_list, + [227988] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4639), 1, + ACTIONS(5084), 1, anon_sym_LT, - STATE(2576), 1, + STATE(2800), 1, sym_template_argument_list, - [197855] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8733), 1, - anon_sym_LPAREN2, - STATE(231), 1, - sym_condition_clause, - [197865] = 2, - ACTIONS(7009), 1, + [227998] = 3, + ACTIONS(7929), 1, sym_comment, - ACTIONS(9252), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [197873] = 2, - ACTIONS(7009), 1, + ACTIONS(10756), 1, + anon_sym_LF, + ACTIONS(10758), 1, + sym_preproc_arg, + [228008] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(9254), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [197881] = 3, + ACTIONS(7087), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [228016] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5413), 1, - anon_sym_LT, - STATE(1889), 1, - sym_template_argument_list, - [197891] = 3, + ACTIONS(49), 1, + anon_sym_LBRACE, + STATE(6423), 1, + sym_compound_statement, + [228026] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + ACTIONS(8727), 1, anon_sym_LBRACE, - STATE(5533), 1, + STATE(2446), 1, sym_compound_statement, - [197901] = 3, + [228036] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9250), 1, - sym_identifier, - STATE(5513), 1, - sym_attribute, - [197911] = 3, + ACTIONS(9657), 1, + anon_sym_LBRACE, + STATE(5234), 1, + sym_requirement_seq, + [228046] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8733), 1, + ACTIONS(5088), 1, anon_sym_LPAREN2, - STATE(5839), 1, - sym_condition_clause, - [197921] = 3, + STATE(3354), 1, + sym_argument_list, + [228056] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9256), 1, + ACTIONS(10664), 1, anon_sym_LT, - STATE(2472), 1, + STATE(2845), 1, sym_template_argument_list, - [197931] = 3, + [228066] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10760), 2, + anon_sym_COMMA, + anon_sym_RBRACK_RBRACK, + [228074] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4255), 1, + ACTIONS(5086), 1, anon_sym_LBRACE, - STATE(2656), 1, + STATE(3152), 1, sym_field_declaration_list, - [197941] = 2, - ACTIONS(7009), 1, + [228084] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(9258), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [197949] = 3, + ACTIONS(10168), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [228092] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10762), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [228100] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + ACTIONS(8659), 1, anon_sym_LBRACE, - STATE(5526), 1, + STATE(2567), 1, sym_compound_statement, - [197959] = 3, + [228110] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9260), 1, - sym_identifier, - STATE(3119), 1, - sym_template_type, - [197969] = 3, + ACTIONS(49), 1, + anon_sym_LBRACE, + STATE(6395), 1, + sym_compound_statement, + [228120] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4162), 1, - anon_sym_LBRACE, - STATE(2408), 1, - sym_field_declaration_list, - [197979] = 3, + ACTIONS(7977), 1, + anon_sym_LPAREN2, + STATE(6702), 1, + sym_parameter_list, + [228130] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9262), 1, + ACTIONS(10764), 1, sym_identifier, - STATE(3136), 1, + STATE(3241), 1, sym_template_type, - [197989] = 3, + [228140] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4162), 1, + ACTIONS(4876), 1, anon_sym_LBRACE, - STATE(2409), 1, + STATE(2729), 1, sym_field_declaration_list, - [197999] = 3, + [228150] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4162), 1, + ACTIONS(4876), 1, anon_sym_LBRACE, - STATE(2411), 1, + STATE(2728), 1, sym_field_declaration_list, - [198009] = 3, - ACTIONS(3), 1, + [228160] = 3, + ACTIONS(7929), 1, sym_comment, - ACTIONS(4162), 1, - anon_sym_LBRACE, - STATE(2412), 1, - sym_field_declaration_list, - [198019] = 3, + ACTIONS(10766), 1, + anon_sym_LF, + ACTIONS(10768), 1, + sym_preproc_arg, + [228170] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9264), 1, + ACTIONS(10770), 1, anon_sym_default, - ACTIONS(9266), 1, + ACTIONS(10772), 1, anon_sym_delete, - [198029] = 3, + [228180] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7681), 1, + ACTIONS(4992), 1, anon_sym_LBRACE, - STATE(1991), 1, - sym_compound_statement, - [198039] = 3, + STATE(2944), 1, + sym_field_declaration_list, + [228190] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4162), 1, + ACTIONS(4876), 1, anon_sym_LBRACE, - STATE(2430), 1, + STATE(2725), 1, sym_field_declaration_list, - [198049] = 3, + [228200] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4162), 1, + ACTIONS(4992), 1, anon_sym_LBRACE, - STATE(2434), 1, + STATE(2921), 1, sym_field_declaration_list, - [198059] = 3, + [228210] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5415), 1, - anon_sym_LPAREN2, - STATE(6580), 1, - sym_argument_list, - [198069] = 3, + ACTIONS(4992), 1, + anon_sym_LBRACE, + STATE(2880), 1, + sym_field_declaration_list, + [228220] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4162), 1, + ACTIONS(4992), 1, anon_sym_LBRACE, - STATE(2437), 1, + STATE(2917), 1, sym_field_declaration_list, - [198079] = 3, + [228230] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7717), 1, + ACTIONS(351), 1, anon_sym_LBRACE, - STATE(2263), 1, + STATE(522), 1, sym_compound_statement, - [198089] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8733), 1, - anon_sym_LPAREN2, - STATE(5881), 1, - sym_condition_clause, - [198099] = 3, + [228240] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4162), 1, + ACTIONS(49), 1, anon_sym_LBRACE, - STATE(2383), 1, - sym_field_declaration_list, - [198109] = 3, + STATE(6327), 1, + sym_compound_statement, + [228250] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1489), 1, - anon_sym_LBRACE, - STATE(3380), 1, - sym_initializer_list, - [198119] = 3, + ACTIONS(9486), 1, + anon_sym_COLON_COLON, + ACTIONS(10774), 1, + anon_sym_SEMI, + [228260] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9244), 1, - anon_sym_LPAREN2, - STATE(6237), 1, - sym_parenthesized_expression, - [198129] = 3, + ACTIONS(1732), 1, + anon_sym_LBRACE, + STATE(1460), 1, + sym_compound_statement, + [228270] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7111), 1, - anon_sym_LPAREN2, - STATE(5821), 1, - sym_parameter_list, - [198139] = 3, + ACTIONS(4992), 1, + anon_sym_LBRACE, + STATE(2879), 1, + sym_field_declaration_list, + [228280] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8733), 1, - anon_sym_LPAREN2, - STATE(215), 1, - sym_condition_clause, - [198149] = 3, + ACTIONS(4992), 1, + anon_sym_LBRACE, + STATE(2918), 1, + sym_field_declaration_list, + [228290] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4162), 1, + ACTIONS(4992), 1, anon_sym_LBRACE, - STATE(2428), 1, + STATE(2929), 1, sym_field_declaration_list, - [198159] = 2, + [228300] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8661), 2, - anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [198167] = 3, + ACTIONS(49), 1, + anon_sym_LBRACE, + STATE(6283), 1, + sym_compound_statement, + [228310] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4162), 1, + ACTIONS(49), 1, anon_sym_LBRACE, - STATE(2427), 1, - sym_field_declaration_list, - [198177] = 3, + STATE(6223), 1, + sym_compound_statement, + [228320] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6701), 1, - anon_sym_LT, - STATE(2751), 1, - sym_template_argument_list, - [198187] = 3, - ACTIONS(7009), 1, - sym_comment, - ACTIONS(9268), 1, - anon_sym_LF, - ACTIONS(9270), 1, - sym_preproc_arg, - [198197] = 2, + ACTIONS(7977), 1, + anon_sym_LPAREN2, + STATE(6769), 1, + sym_parameter_list, + [228330] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8621), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [198205] = 3, + ACTIONS(6151), 1, + anon_sym_LT, + STATE(2206), 1, + sym_template_argument_list, + [228340] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7717), 1, - anon_sym_LBRACE, - STATE(2337), 1, - sym_compound_statement, - [198215] = 3, + ACTIONS(10776), 1, + sym_identifier, + STATE(2648), 1, + sym_template_type, + [228350] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8427), 1, - anon_sym_LBRACE, - STATE(1872), 1, - sym_requirement_seq, - [198225] = 3, + ACTIONS(10778), 1, + sym_identifier, + ACTIONS(10780), 1, + anon_sym_LPAREN2, + [228360] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9272), 1, + ACTIONS(10782), 1, anon_sym_default, - ACTIONS(9274), 1, + ACTIONS(10784), 1, anon_sym_delete, - [198235] = 3, + [228370] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + ACTIONS(4876), 1, anon_sym_LBRACE, - STATE(5652), 1, - sym_compound_statement, - [198245] = 3, + STATE(2831), 1, + sym_field_declaration_list, + [228380] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9250), 1, + ACTIONS(4876), 1, + anon_sym_LBRACE, + STATE(2830), 1, + sym_field_declaration_list, + [228390] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10622), 1, sym_identifier, - STATE(5462), 1, + STATE(6565), 1, sym_attribute, - [198255] = 3, + [228400] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4830), 1, + ACTIONS(4876), 1, anon_sym_LBRACE, - STATE(2914), 1, + STATE(2829), 1, sym_field_declaration_list, - [198265] = 3, + [228410] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9276), 1, - sym_identifier, - STATE(2525), 1, - sym_template_type, - [198275] = 3, - ACTIONS(7009), 1, + ACTIONS(49), 1, + anon_sym_LBRACE, + STATE(6214), 1, + sym_compound_statement, + [228420] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(9278), 1, + ACTIONS(9910), 1, + anon_sym_LPAREN2, + STATE(6639), 1, + sym_condition_clause, + [228430] = 2, + ACTIONS(7929), 1, + sym_comment, + ACTIONS(10786), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [228438] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9910), 1, + anon_sym_LPAREN2, + STATE(151), 1, + sym_condition_clause, + [228448] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10664), 1, + anon_sym_LT, + STATE(2116), 1, + sym_template_argument_list, + [228458] = 2, + ACTIONS(7929), 1, + sym_comment, + ACTIONS(10788), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [228466] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(49), 1, + anon_sym_LBRACE, + STATE(1349), 1, + sym_compound_statement, + [228476] = 2, + ACTIONS(7929), 1, + sym_comment, + ACTIONS(10790), 2, anon_sym_LF, - ACTIONS(9280), 1, sym_preproc_arg, - [198285] = 3, + [228484] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4830), 1, + ACTIONS(49), 1, anon_sym_LBRACE, - STATE(2997), 1, - sym_field_declaration_list, - [198295] = 3, + STATE(6535), 1, + sym_compound_statement, + [228494] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4830), 1, + ACTIONS(4992), 1, anon_sym_LBRACE, - STATE(3002), 1, + STATE(2862), 1, sym_field_declaration_list, - [198305] = 3, + [228504] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10792), 2, + anon_sym_DOT_DOT_DOT, + sym_identifier, + [228512] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4830), 1, + ACTIONS(4992), 1, anon_sym_LBRACE, - STATE(3004), 1, + STATE(2903), 1, sym_field_declaration_list, - [198315] = 3, + [228522] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4830), 1, + ACTIONS(2097), 1, anon_sym_LBRACE, - STATE(3005), 1, - sym_field_declaration_list, - [198325] = 2, - ACTIONS(7009), 1, + STATE(3603), 1, + sym_initializer_list, + [228532] = 2, + ACTIONS(7929), 1, sym_comment, - ACTIONS(9282), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [198333] = 3, + ACTIONS(10794), 2, + anon_sym_LF, + sym_preproc_arg, + [228540] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7504), 1, + anon_sym_LT, + STATE(2914), 1, + sym_template_argument_list, + [228550] = 3, + ACTIONS(7929), 1, + sym_comment, + ACTIONS(10796), 1, + anon_sym_LF, + ACTIONS(10798), 1, + sym_preproc_arg, + [228560] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + ACTIONS(49), 1, anon_sym_LBRACE, - STATE(5583), 1, + STATE(6191), 1, sym_compound_statement, - [198343] = 3, + [228570] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1332), 1, + ACTIONS(8667), 1, anon_sym_LBRACE, - STATE(1177), 1, + STATE(2282), 1, sym_compound_statement, - [198353] = 3, + [228580] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4830), 1, + ACTIONS(9557), 1, anon_sym_LBRACE, - STATE(3022), 1, - sym_field_declaration_list, - [198363] = 3, + STATE(2179), 1, + sym_requirement_seq, + [228590] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4830), 1, - anon_sym_LBRACE, - STATE(2883), 1, - sym_field_declaration_list, - [198373] = 3, + ACTIONS(7977), 1, + anon_sym_LPAREN2, + STATE(6820), 1, + sym_parameter_list, + [228600] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6308), 1, + anon_sym_LPAREN2, + STATE(7466), 1, + sym_argument_list, + [228610] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4830), 1, + ACTIONS(4876), 1, anon_sym_LBRACE, - STATE(2999), 1, + STATE(2797), 1, sym_field_declaration_list, - [198383] = 3, + [228620] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7681), 1, - anon_sym_LBRACE, - STATE(2109), 1, - sym_compound_statement, - [198393] = 3, + ACTIONS(9910), 1, + anon_sym_LPAREN2, + STATE(217), 1, + sym_condition_clause, + [228630] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5413), 1, - anon_sym_LT, - STATE(3810), 1, - sym_template_argument_list, - [198403] = 2, + ACTIONS(9910), 1, + anon_sym_LPAREN2, + STATE(149), 1, + sym_condition_clause, + [228640] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9284), 2, - anon_sym_DOT_DOT_DOT, - sym_identifier, - [198411] = 3, + ACTIONS(4992), 1, + anon_sym_LBRACE, + STATE(2923), 1, + sym_field_declaration_list, + [228650] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9286), 1, + ACTIONS(10800), 1, anon_sym_default, - ACTIONS(9288), 1, + ACTIONS(10802), 1, anon_sym_delete, - [198421] = 2, - ACTIONS(7009), 1, + [228660] = 3, + ACTIONS(7929), 1, sym_comment, - ACTIONS(9290), 2, + ACTIONS(10804), 1, anon_sym_LF, + ACTIONS(10806), 1, sym_preproc_arg, - [198429] = 3, + [228670] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4830), 1, + ACTIONS(49), 1, anon_sym_LBRACE, - STATE(2887), 1, - sym_field_declaration_list, - [198439] = 3, + STATE(6288), 1, + sym_compound_statement, + [228680] = 2, + ACTIONS(7929), 1, + sym_comment, + ACTIONS(10808), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [228688] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4830), 1, - anon_sym_LBRACE, - STATE(2881), 1, - sym_field_declaration_list, - [198449] = 3, + ACTIONS(10810), 1, + anon_sym_default, + ACTIONS(10812), 1, + anon_sym_delete, + [228698] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7111), 1, - anon_sym_LPAREN2, - STATE(5777), 1, - sym_parameter_list, - [198459] = 2, - ACTIONS(7009), 1, + ACTIONS(10814), 1, + sym_identifier, + STATE(2799), 1, + sym_template_type, + [228708] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(9292), 2, - anon_sym_LF, - sym_preproc_arg, - [198467] = 3, + ACTIONS(6771), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [228716] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9224), 1, + ACTIONS(10706), 1, anon_sym_LT, - STATE(1964), 1, + STATE(2988), 1, sym_template_argument_list, - [198477] = 3, - ACTIONS(7009), 1, - sym_comment, - ACTIONS(9294), 1, - anon_sym_LF, - ACTIONS(9296), 1, - sym_preproc_arg, - [198487] = 3, + [228726] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7681), 1, + ACTIONS(49), 1, anon_sym_LBRACE, - STATE(2158), 1, + STATE(6366), 1, sym_compound_statement, - [198497] = 3, + [228736] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6807), 1, - anon_sym_LBRACE, - STATE(2898), 1, - sym_requirement_seq, - [198507] = 3, + ACTIONS(7977), 1, + anon_sym_LPAREN2, + STATE(6893), 1, + sym_parameter_list, + [228746] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + ACTIONS(10816), 2, + anon_sym_LPAREN2, anon_sym_LBRACE, - STATE(5453), 1, - sym_compound_statement, - [198517] = 3, + [228754] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9298), 1, - sym_identifier, - ACTIONS(9300), 1, + ACTIONS(10816), 2, anon_sym_LPAREN2, - [198527] = 3, + anon_sym_LBRACE, + [228762] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2648), 1, - anon_sym_while, - ACTIONS(9302), 1, - anon_sym_else, - [198537] = 3, + ACTIONS(3601), 1, + anon_sym_LBRACE, + STATE(4401), 1, + sym_initializer_list, + [228772] = 3, + ACTIONS(7929), 1, + sym_comment, + ACTIONS(10818), 1, + anon_sym_LF, + ACTIONS(10820), 1, + sym_preproc_arg, + [228782] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10816), 2, + anon_sym_LPAREN2, + anon_sym_LBRACE, + [228790] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9244), 1, + ACTIONS(10674), 1, anon_sym_LPAREN2, - STATE(6550), 1, + STATE(7489), 1, sym_parenthesized_expression, - [198547] = 3, + [228800] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7111), 1, + ACTIONS(10674), 1, anon_sym_LPAREN2, - STATE(5716), 1, - sym_parameter_list, - [198557] = 3, + STATE(7076), 1, + sym_parenthesized_expression, + [228810] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9304), 1, + ACTIONS(10822), 1, sym_identifier, - STATE(2750), 1, + STATE(2524), 1, sym_template_type, - [198567] = 2, - ACTIONS(7009), 1, + [228820] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(9306), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [198575] = 3, + ACTIONS(10824), 1, + anon_sym_default, + ACTIONS(10826), 1, + anon_sym_delete, + [228830] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1617), 1, + ACTIONS(49), 1, anon_sym_LBRACE, - STATE(2906), 1, - sym_initializer_list, - [198585] = 3, + STATE(6508), 1, + sym_compound_statement, + [228840] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7111), 1, + ACTIONS(7977), 1, anon_sym_LPAREN2, - STATE(5960), 1, + STATE(6708), 1, sym_parameter_list, - [198595] = 3, - ACTIONS(3), 1, + [228850] = 2, + ACTIONS(7929), 1, sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - STATE(5382), 1, - sym_compound_statement, - [198605] = 3, + ACTIONS(10828), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [228858] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + ACTIONS(5270), 1, anon_sym_LBRACE, - STATE(1002), 1, - sym_compound_statement, - [198615] = 3, + STATE(3118), 1, + sym_field_declaration_list, + [228868] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9226), 1, - anon_sym_LT, - STATE(1793), 1, - sym_template_argument_list, - [198625] = 3, - ACTIONS(7009), 1, + ACTIONS(9910), 1, + anon_sym_LPAREN2, + STATE(6953), 1, + sym_condition_clause, + [228878] = 3, + ACTIONS(7929), 1, sym_comment, - ACTIONS(9308), 1, + ACTIONS(10830), 1, anon_sym_LF, - ACTIONS(9310), 1, + ACTIONS(10832), 1, sym_preproc_arg, - [198635] = 3, + [228888] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9312), 1, - anon_sym_default, - ACTIONS(9314), 1, - anon_sym_delete, - [198645] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9316), 1, + ACTIONS(10834), 1, sym_identifier, - STATE(2404), 1, + STATE(2915), 1, sym_template_method, - [198655] = 3, + [228898] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5721), 1, + ACTIONS(5270), 1, anon_sym_LBRACE, - STATE(3658), 1, + STATE(3115), 1, sym_field_declaration_list, - [198665] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7111), 1, - anon_sym_LPAREN2, - STATE(5745), 1, - sym_parameter_list, - [198675] = 2, + [228908] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5840), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - [198683] = 3, + ACTIONS(5270), 1, + anon_sym_LBRACE, + STATE(3114), 1, + sym_field_declaration_list, + [228918] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + ACTIONS(49), 1, anon_sym_LBRACE, - STATE(5563), 1, + STATE(6344), 1, sym_compound_statement, - [198693] = 3, + [228928] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5721), 1, + ACTIONS(5270), 1, anon_sym_LBRACE, - STATE(3664), 1, + STATE(3113), 1, sym_field_declaration_list, - [198703] = 3, + [228938] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5721), 1, + ACTIONS(49), 1, anon_sym_LBRACE, - STATE(3665), 1, - sym_field_declaration_list, - [198713] = 3, + STATE(6585), 1, + sym_compound_statement, + [228948] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5721), 1, + ACTIONS(6458), 1, anon_sym_LBRACE, - STATE(3666), 1, + STATE(3955), 1, sym_field_declaration_list, - [198723] = 2, + [228958] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 2, + ACTIONS(7977), 1, anon_sym_LPAREN2, - anon_sym_LBRACE, - [198731] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - STATE(5557), 1, - sym_compound_statement, - [198741] = 3, + STATE(6927), 1, + sym_parameter_list, + [228968] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + ACTIONS(8659), 1, anon_sym_LBRACE, - STATE(5431), 1, + STATE(2507), 1, sym_compound_statement, - [198751] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5445), 1, - anon_sym_LBRACE, - STATE(3212), 1, - sym_field_declaration_list, - [198761] = 3, + [228978] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5445), 1, + ACTIONS(5270), 1, anon_sym_LBRACE, - STATE(3215), 1, + STATE(3074), 1, sym_field_declaration_list, - [198771] = 3, + [228988] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7673), 1, + ACTIONS(917), 1, anon_sym_LBRACE, - STATE(2196), 1, + STATE(950), 1, sym_compound_statement, - [198781] = 3, + [228998] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5445), 1, + ACTIONS(5270), 1, anon_sym_LBRACE, - STATE(3246), 1, + STATE(3087), 1, sym_field_declaration_list, - [198791] = 3, + [229008] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5721), 1, + ACTIONS(5270), 1, anon_sym_LBRACE, - STATE(3675), 1, + STATE(3089), 1, sym_field_declaration_list, - [198801] = 3, + [229018] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5721), 1, - anon_sym_LBRACE, - STATE(3677), 1, - sym_field_declaration_list, - [198811] = 3, + ACTIONS(10674), 1, + anon_sym_LPAREN2, + STATE(7017), 1, + sym_parenthesized_expression, + [229028] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5721), 1, + ACTIONS(5270), 1, anon_sym_LBRACE, - STATE(3678), 1, + STATE(3090), 1, sym_field_declaration_list, - [198821] = 3, + [229038] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(666), 1, + ACTIONS(4592), 1, anon_sym_LBRACE, - STATE(1060), 1, - sym_compound_statement, - [198831] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5413), 1, - anon_sym_LT, - STATE(2198), 1, - sym_template_argument_list, - [198841] = 2, - ACTIONS(7009), 1, - sym_comment, - ACTIONS(9318), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [198849] = 3, + STATE(1291), 1, + sym_declaration_list, + [229048] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + ACTIONS(7718), 1, anon_sym_LBRACE, - STATE(5469), 1, - sym_compound_statement, - [198859] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8395), 1, - sym_identifier, - STATE(3136), 1, - sym_template_type, - [198869] = 2, + STATE(4044), 1, + sym_requirement_seq, + [229058] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8616), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [198877] = 3, + ACTIONS(10836), 1, + anon_sym_default, + ACTIONS(10838), 1, + anon_sym_delete, + [229068] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5721), 1, + ACTIONS(351), 1, anon_sym_LBRACE, - STATE(3660), 1, - sym_field_declaration_list, - [198887] = 3, + STATE(822), 1, + sym_compound_statement, + [229078] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5721), 1, + ACTIONS(917), 1, anon_sym_LBRACE, - STATE(3656), 1, - sym_field_declaration_list, - [198897] = 2, + STATE(1248), 1, + sym_compound_statement, + [229088] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8854), 2, + ACTIONS(6809), 2, anon_sym_COMMA, anon_sym_SEMI, - [198905] = 3, + [229096] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5383), 1, + ACTIONS(6151), 1, anon_sym_LT, - STATE(3135), 1, + STATE(4033), 1, sym_template_argument_list, - [198915] = 3, - ACTIONS(7009), 1, + [229106] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(9320), 1, + ACTIONS(8705), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [229114] = 3, + ACTIONS(7929), 1, + sym_comment, + ACTIONS(10840), 1, anon_sym_LF, - ACTIONS(9322), 1, + ACTIONS(10842), 1, sym_preproc_arg, - [198925] = 3, + [229124] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(666), 1, - anon_sym_LBRACE, - STATE(1078), 1, - sym_compound_statement, - [198935] = 3, + ACTIONS(6045), 1, + anon_sym_LT, + STATE(3608), 1, + sym_template_argument_list, + [229134] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6845), 1, - anon_sym_LBRACE, - STATE(3416), 1, - sym_requirement_seq, - [198945] = 3, + ACTIONS(9910), 1, + anon_sym_LPAREN2, + STATE(166), 1, + sym_condition_clause, + [229144] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1332), 1, + ACTIONS(4592), 1, anon_sym_LBRACE, - STATE(1233), 1, - sym_compound_statement, - [198955] = 3, + STATE(1198), 1, + sym_declaration_list, + [229154] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2484), 1, - anon_sym_while, - ACTIONS(9324), 1, - anon_sym_else, - [198965] = 3, + ACTIONS(10448), 2, + anon_sym_COMMA, + anon_sym_RBRACK_RBRACK, + [229162] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5721), 1, + ACTIONS(6458), 1, anon_sym_LBRACE, - STATE(3629), 1, + STATE(3977), 1, sym_field_declaration_list, - [198975] = 2, + [229172] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8842), 2, - anon_sym_SEMI, + ACTIONS(6458), 1, anon_sym_LBRACE, - [198983] = 3, + STATE(3979), 1, + sym_field_declaration_list, + [229182] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9326), 1, - sym_identifier, - STATE(1967), 1, - sym_template_type, - [198993] = 3, + ACTIONS(10459), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [229190] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3025), 1, + ACTIONS(49), 1, anon_sym_LBRACE, - STATE(3798), 1, - sym_initializer_list, - [199003] = 3, + STATE(6459), 1, + sym_compound_statement, + [229200] = 2, + ACTIONS(7929), 1, + sym_comment, + ACTIONS(10844), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [229208] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7111), 1, + ACTIONS(9910), 1, anon_sym_LPAREN2, - STATE(5882), 1, - sym_parameter_list, - [199013] = 3, + STATE(220), 1, + sym_condition_clause, + [229218] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8733), 1, + ACTIONS(9910), 1, anon_sym_LPAREN2, - STATE(154), 1, + STATE(6895), 1, sym_condition_clause, - [199023] = 2, + [229228] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9328), 2, - anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [199031] = 2, + ACTIONS(10622), 1, + sym_identifier, + STATE(6446), 1, + sym_attribute, + [229238] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6195), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [199039] = 3, - ACTIONS(7009), 1, - sym_comment, - ACTIONS(9330), 1, - anon_sym_LF, - ACTIONS(9332), 1, - sym_preproc_arg, - [199049] = 3, + ACTIONS(6151), 1, + anon_sym_LT, + STATE(2845), 1, + sym_template_argument_list, + [229248] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7673), 1, + ACTIONS(351), 1, anon_sym_LBRACE, - STATE(2231), 1, + STATE(768), 1, sym_compound_statement, - [199059] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9334), 2, - anon_sym_COMMA, - anon_sym_GT2, - [199067] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5966), 1, - anon_sym_RPAREN, - ACTIONS(5968), 1, - anon_sym_SEMI, - [199077] = 3, + [229258] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4131), 1, + ACTIONS(6458), 1, anon_sym_LBRACE, - STATE(2050), 1, + STATE(3924), 1, sym_field_declaration_list, - [199087] = 3, + [229268] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5445), 1, + ACTIONS(6458), 1, anon_sym_LBRACE, - STATE(3262), 1, + STATE(3925), 1, sym_field_declaration_list, - [199097] = 3, + [229278] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9336), 1, - sym_identifier, - STATE(2404), 1, - sym_template_method, - [199107] = 3, + ACTIONS(10360), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + [229286] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4131), 1, + ACTIONS(6458), 1, anon_sym_LBRACE, - STATE(2019), 1, + STATE(3929), 1, sym_field_declaration_list, - [199117] = 3, + [229296] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4131), 1, + ACTIONS(917), 1, anon_sym_LBRACE, - STATE(2133), 1, - sym_field_declaration_list, - [199127] = 3, + STATE(785), 1, + sym_compound_statement, + [229306] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9338), 1, - anon_sym_LT, - STATE(2472), 1, - sym_template_argument_list, - [199137] = 3, + ACTIONS(9486), 1, + anon_sym_COLON_COLON, + ACTIONS(10846), 1, + anon_sym_SEMI, + [229316] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4131), 1, + ACTIONS(6458), 1, anon_sym_LBRACE, - STATE(2041), 1, + STATE(3947), 1, sym_field_declaration_list, - [199147] = 3, + [229326] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5445), 1, + ACTIONS(6195), 1, anon_sym_LBRACE, - STATE(3267), 1, + STATE(3770), 1, sym_field_declaration_list, - [199157] = 3, + [229336] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8343), 1, + ACTIONS(9486), 1, anon_sym_COLON_COLON, - ACTIONS(9340), 1, + ACTIONS(10848), 1, anon_sym_SEMI, - [199167] = 3, + [229346] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(666), 1, + ACTIONS(49), 1, anon_sym_LBRACE, - STATE(492), 1, + STATE(804), 1, sym_compound_statement, - [199177] = 3, + [229356] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9244), 1, - anon_sym_LPAREN2, - STATE(6050), 1, - sym_parenthesized_expression, - [199187] = 3, + ACTIONS(6195), 1, + anon_sym_LBRACE, + STATE(3771), 1, + sym_field_declaration_list, + [229366] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4131), 1, + ACTIONS(5270), 1, anon_sym_LBRACE, - STATE(2131), 1, + STATE(3173), 1, sym_field_declaration_list, - [199197] = 3, + [229376] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4131), 1, + ACTIONS(5270), 1, anon_sym_LBRACE, - STATE(2121), 1, + STATE(3134), 1, sym_field_declaration_list, - [199207] = 3, + [229386] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4131), 1, + ACTIONS(6458), 1, anon_sym_LBRACE, - STATE(2136), 1, + STATE(3997), 1, sym_field_declaration_list, - [199217] = 3, + [229396] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, - anon_sym_LPAREN2, - STATE(2584), 1, - sym_argument_list, - [199227] = 3, + ACTIONS(6458), 1, + anon_sym_LBRACE, + STATE(3995), 1, + sym_field_declaration_list, + [229406] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7673), 1, + ACTIONS(6195), 1, anon_sym_LBRACE, - STATE(2328), 1, - sym_compound_statement, - [199237] = 3, + STATE(3774), 1, + sym_field_declaration_list, + [229416] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9226), 1, + ACTIONS(10680), 1, anon_sym_LT, - STATE(2198), 1, + STATE(2501), 1, sym_template_argument_list, - [199247] = 3, - ACTIONS(3), 1, + [229426] = 3, + ACTIONS(7929), 1, sym_comment, - ACTIONS(4131), 1, - anon_sym_LBRACE, - STATE(2107), 1, - sym_field_declaration_list, - [199257] = 3, + ACTIONS(10850), 1, + anon_sym_LF, + ACTIONS(10852), 1, + sym_preproc_arg, + [229436] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4131), 1, + ACTIONS(49), 1, anon_sym_LBRACE, - STATE(2112), 1, - sym_field_declaration_list, - [199267] = 2, + STATE(6324), 1, + sym_compound_statement, + [229446] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6138), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [199275] = 3, + ACTIONS(917), 1, + anon_sym_LBRACE, + STATE(1215), 1, + sym_compound_statement, + [229456] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3930), 1, + ACTIONS(7678), 1, anon_sym_LBRACE, - STATE(1014), 1, - sym_declaration_list, - [199285] = 3, + STATE(3469), 1, + sym_requirement_seq, + [229466] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3940), 1, + ACTIONS(6458), 1, anon_sym_LBRACE, - STATE(1019), 1, - sym_declaration_list, - [199295] = 3, + STATE(3974), 1, + sym_field_declaration_list, + [229476] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9256), 1, - anon_sym_LT, - STATE(1951), 1, - sym_template_argument_list, - [199305] = 3, - ACTIONS(7009), 1, - sym_comment, - ACTIONS(9342), 1, - anon_sym_LF, - ACTIONS(9344), 1, - sym_preproc_arg, - [199315] = 3, + ACTIONS(7977), 1, + anon_sym_LPAREN2, + STATE(6817), 1, + sym_parameter_list, + [229486] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3930), 1, - anon_sym_LBRACE, - STATE(973), 1, - sym_declaration_list, - [199325] = 3, + ACTIONS(10674), 1, + anon_sym_LPAREN2, + STATE(7232), 1, + sym_parenthesized_expression, + [229496] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6797), 1, + ACTIONS(49), 1, anon_sym_LBRACE, - STATE(2699), 1, - sym_requirement_seq, - [199335] = 2, + STATE(6208), 1, + sym_compound_statement, + [229506] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9346), 2, - anon_sym_COMMA, - anon_sym_GT2, - [199343] = 3, + ACTIONS(10854), 1, + anon_sym_default, + ACTIONS(10856), 1, + anon_sym_delete, + [229516] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9250), 1, + ACTIONS(10622), 1, sym_identifier, - STATE(5758), 1, + STATE(6295), 1, sym_attribute, - [199353] = 3, + [229526] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(666), 1, - anon_sym_LBRACE, - STATE(584), 1, - sym_compound_statement, - [199363] = 3, + ACTIONS(9910), 1, + anon_sym_LPAREN2, + STATE(267), 1, + sym_condition_clause, + [229536] = 3, + ACTIONS(7929), 1, + sym_comment, + ACTIONS(10858), 1, + anon_sym_LF, + ACTIONS(10860), 1, + sym_preproc_arg, + [229546] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9910), 1, + anon_sym_LPAREN2, + STATE(6755), 1, + sym_condition_clause, + [229556] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + ACTIONS(1732), 1, anon_sym_LBRACE, - STATE(526), 1, + STATE(1568), 1, sym_compound_statement, - [199373] = 3, + [229566] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8733), 1, + ACTIONS(9910), 1, anon_sym_LPAREN2, - STATE(264), 1, + STATE(187), 1, sym_condition_clause, - [199383] = 3, + [229576] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8343), 1, - anon_sym_COLON_COLON, - ACTIONS(9348), 1, - anon_sym_SEMI, - [199393] = 3, - ACTIONS(3), 1, + ACTIONS(10862), 1, + sym_identifier, + STATE(2927), 1, + sym_template_type, + [229586] = 2, + ACTIONS(7929), 1, sym_comment, - ACTIONS(4131), 1, - anon_sym_LBRACE, - STATE(2129), 1, - sym_field_declaration_list, - [199403] = 3, + ACTIONS(10864), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [229594] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + ACTIONS(2043), 1, anon_sym_LBRACE, - STATE(5536), 1, - sym_compound_statement, - [199413] = 2, + STATE(3524), 1, + sym_initializer_list, + [229604] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9350), 2, - anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [199421] = 3, + ACTIONS(10866), 1, + anon_sym_RPAREN, + [229611] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5445), 1, - anon_sym_LBRACE, - STATE(3241), 1, - sym_field_declaration_list, - [199431] = 3, + ACTIONS(10868), 1, + anon_sym_RPAREN, + [229618] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9352), 1, - sym_identifier, - STATE(1960), 1, - sym_template_type, - [199441] = 3, + ACTIONS(10870), 1, + anon_sym_SQUOTE, + [229625] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5445), 1, - anon_sym_LBRACE, - STATE(3240), 1, - sym_field_declaration_list, - [199451] = 3, + ACTIONS(10872), 1, + anon_sym_SEMI, + [229632] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1579), 1, - anon_sym_LBRACE, - STATE(2746), 1, - sym_initializer_list, - [199461] = 3, + ACTIONS(6945), 1, + anon_sym_SEMI, + [229639] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5445), 1, - anon_sym_LBRACE, - STATE(3237), 1, - sym_field_declaration_list, - [199471] = 2, + ACTIONS(10874), 1, + sym_identifier, + [229646] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9354), 2, - anon_sym_COMMA, - anon_sym_LBRACE, - [199479] = 3, + ACTIONS(6865), 1, + anon_sym_SEMI, + [229653] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8733), 1, - anon_sym_LPAREN2, - STATE(189), 1, - sym_condition_clause, - [199489] = 3, - ACTIONS(7009), 1, + ACTIONS(10876), 1, + sym_identifier, + [229660] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(9356), 1, - anon_sym_LF, - ACTIONS(9358), 1, - sym_preproc_arg, - [199499] = 2, + ACTIONS(10878), 1, + anon_sym_RPAREN, + [229667] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5842), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [199507] = 2, + ACTIONS(10880), 1, + anon_sym_STAR, + [229674] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9360), 2, - anon_sym_COMMA, - anon_sym_GT2, - [199515] = 2, + ACTIONS(10882), 1, + anon_sym_RPAREN, + [229681] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9362), 2, - anon_sym_COMMA, - anon_sym_GT2, - [199523] = 3, + ACTIONS(10884), 1, + anon_sym_RPAREN, + [229688] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4290), 1, - anon_sym_LBRACE, - STATE(2807), 1, - sym_field_declaration_list, - [199533] = 3, + ACTIONS(10886), 1, + anon_sym_RPAREN, + [229695] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4290), 1, - anon_sym_LBRACE, - STATE(2783), 1, - sym_field_declaration_list, - [199543] = 2, + ACTIONS(10888), 1, + sym_identifier, + [229702] = 2, + ACTIONS(7929), 1, + sym_comment, + ACTIONS(10890), 1, + anon_sym_LF, + [229709] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8926), 2, - anon_sym_COMMA, - anon_sym_LBRACE, - [199551] = 3, + ACTIONS(10892), 1, + anon_sym_RPAREN, + [229716] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4290), 1, - anon_sym_LBRACE, - STATE(2801), 1, - sym_field_declaration_list, - [199561] = 3, + ACTIONS(10894), 1, + anon_sym_RPAREN, + [229723] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4290), 1, - anon_sym_LBRACE, - STATE(2800), 1, - sym_field_declaration_list, - [199571] = 2, + ACTIONS(10896), 1, + anon_sym_SEMI, + [229730] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8828), 2, + ACTIONS(10898), 1, anon_sym_SEMI, - anon_sym_LBRACE, - [199579] = 3, + [229737] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4290), 1, - anon_sym_LBRACE, - STATE(2799), 1, - sym_field_declaration_list, - [199589] = 3, + ACTIONS(10900), 1, + anon_sym_COLON, + [229744] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5415), 1, + ACTIONS(10902), 1, anon_sym_LPAREN2, - STATE(6470), 1, - sym_argument_list, - [199599] = 3, - ACTIONS(7009), 1, - sym_comment, - ACTIONS(9364), 1, - anon_sym_LF, - ACTIONS(9366), 1, - sym_preproc_arg, - [199609] = 3, + [229751] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9228), 1, - anon_sym_LT, - STATE(2938), 1, - sym_template_argument_list, - [199619] = 2, + ACTIONS(10904), 1, + anon_sym_DASH_GT_STAR, + [229758] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8951), 2, - anon_sym_COMMA, + ACTIONS(10906), 1, anon_sym_RPAREN, - [199627] = 3, + [229765] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9250), 1, - sym_identifier, - STATE(5653), 1, - sym_attribute, - [199637] = 3, + ACTIONS(6877), 1, + anon_sym_SEMI, + [229772] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8343), 1, - anon_sym_COLON_COLON, - ACTIONS(9368), 1, - anon_sym_SEMI, - [199647] = 3, + ACTIONS(10908), 1, + sym_identifier, + [229779] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(255), 1, - anon_sym_LBRACE, - STATE(344), 1, - sym_compound_statement, - [199657] = 3, + ACTIONS(10910), 1, + anon_sym_RPAREN, + [229786] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5413), 1, - anon_sym_LT, - STATE(3135), 1, - sym_template_argument_list, - [199667] = 3, + ACTIONS(6879), 1, + anon_sym_SEMI, + [229793] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4290), 1, - anon_sym_LBRACE, - STATE(2768), 1, - sym_field_declaration_list, - [199677] = 3, + ACTIONS(10912), 1, + anon_sym_SEMI, + [229800] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4290), 1, - anon_sym_LBRACE, - STATE(2766), 1, - sym_field_declaration_list, - [199687] = 3, + ACTIONS(10914), 1, + sym_identifier, + [229807] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4290), 1, - anon_sym_LBRACE, - STATE(2765), 1, - sym_field_declaration_list, - [199697] = 2, + ACTIONS(10916), 1, + anon_sym_DQUOTE, + [229814] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8983), 2, - anon_sym_COMMA, - anon_sym_GT2, - [199705] = 3, + ACTIONS(9124), 1, + anon_sym_SEMI, + [229821] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(255), 1, - anon_sym_LBRACE, - STATE(523), 1, - sym_compound_statement, - [199715] = 3, + ACTIONS(10918), 1, + anon_sym_SEMI, + [229828] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9256), 1, - anon_sym_LT, - STATE(2201), 1, - sym_template_argument_list, - [199725] = 3, + ACTIONS(10920), 1, + anon_sym_SEMI, + [229835] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9370), 1, + ACTIONS(10922), 1, sym_identifier, - STATE(2978), 1, - sym_template_method, - [199735] = 2, + [229842] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9159), 2, - anon_sym_COMMA, + ACTIONS(6891), 1, anon_sym_RPAREN, - [199743] = 3, + [229849] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5415), 1, - anon_sym_LPAREN2, - STATE(6389), 1, - sym_argument_list, - [199753] = 3, + ACTIONS(10924), 1, + anon_sym_RPAREN, + [229856] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4290), 1, - anon_sym_LBRACE, - STATE(2773), 1, - sym_field_declaration_list, - [199763] = 3, - ACTIONS(7009), 1, + ACTIONS(10926), 1, + anon_sym_SEMI, + [229863] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(9372), 1, - anon_sym_LF, - ACTIONS(9374), 1, - sym_preproc_arg, - [199773] = 3, + ACTIONS(10928), 1, + sym_identifier, + [229870] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3942), 1, - anon_sym_LBRACE, - STATE(538), 1, - sym_declaration_list, - [199783] = 3, + ACTIONS(10930), 1, + anon_sym_RPAREN, + [229877] = 2, + ACTIONS(7929), 1, + sym_comment, + ACTIONS(10932), 1, + anon_sym_LF, + [229884] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - STATE(1050), 1, - sym_compound_statement, - [199793] = 3, + ACTIONS(10934), 1, + anon_sym_RPAREN, + [229891] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9376), 1, - anon_sym_default, - ACTIONS(9378), 1, - anon_sym_delete, - [199803] = 3, + ACTIONS(10370), 1, + anon_sym_RBRACE, + [229898] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9380), 1, - anon_sym_LT, - STATE(2000), 1, - sym_template_argument_list, - [199813] = 3, - ACTIONS(7009), 1, + ACTIONS(6887), 1, + anon_sym_RPAREN, + [229905] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(9382), 1, - anon_sym_LF, - ACTIONS(9384), 1, - sym_preproc_arg, - [199823] = 3, + ACTIONS(6801), 1, + anon_sym_RBRACE, + [229912] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(255), 1, - anon_sym_LBRACE, - STATE(494), 1, - sym_compound_statement, - [199833] = 3, + ACTIONS(6889), 1, + anon_sym_RPAREN, + [229919] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6831), 1, - anon_sym_LBRACE, - STATE(2474), 1, - sym_requirement_seq, - [199843] = 3, + ACTIONS(10936), 1, + aux_sym_preproc_if_token2, + [229926] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3942), 1, - anon_sym_LBRACE, - STATE(541), 1, - sym_declaration_list, - [199853] = 3, + ACTIONS(10938), 1, + anon_sym_DQUOTE, + [229933] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9386), 1, + ACTIONS(10940), 1, sym_identifier, - STATE(2326), 1, - sym_template_type, - [199863] = 3, + [229940] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7111), 1, - anon_sym_LPAREN2, - STATE(5912), 1, - sym_parameter_list, - [199873] = 2, + ACTIONS(10942), 1, + anon_sym_SEMI, + [229947] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9220), 2, - anon_sym_COMMA, - anon_sym_LBRACE, - [199881] = 2, + ACTIONS(10944), 1, + anon_sym_SEMI, + [229954] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3520), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [199889] = 3, + ACTIONS(10946), 1, + anon_sym_SEMI, + [229961] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6781), 1, - anon_sym_LBRACE, - STATE(3174), 1, - sym_requirement_seq, - [199899] = 3, + ACTIONS(10948), 1, + anon_sym_SEMI, + [229968] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(255), 1, - anon_sym_LBRACE, - STATE(453), 1, - sym_compound_statement, - [199909] = 3, + ACTIONS(6909), 1, + anon_sym_RPAREN, + [229975] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8733), 1, - anon_sym_LPAREN2, - STATE(216), 1, - sym_condition_clause, - [199919] = 3, + ACTIONS(10950), 1, + anon_sym_RPAREN, + [229982] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4290), 1, - anon_sym_LBRACE, - STATE(2818), 1, - sym_field_declaration_list, - [199929] = 3, + ACTIONS(10952), 1, + anon_sym_RPAREN, + [229989] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5934), 1, - anon_sym_RBRACK, - ACTIONS(9388), 1, - anon_sym_COMMA, - [199939] = 3, + ACTIONS(6913), 1, + anon_sym_RPAREN, + [229996] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4385), 1, - anon_sym_LPAREN2, - STATE(2988), 1, - sym_argument_list, - [199949] = 3, + ACTIONS(10954), 1, + anon_sym_SEMI, + [230003] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9390), 1, - sym_identifier, - STATE(2202), 1, - sym_template_type, - [199959] = 3, + ACTIONS(10956), 1, + anon_sym_SEMI, + [230010] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1537), 1, - anon_sym_LBRACE, - STATE(2549), 1, - sym_initializer_list, - [199969] = 3, + ACTIONS(8523), 1, + anon_sym_RPAREN, + [230017] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8733), 1, - anon_sym_LPAREN2, - STATE(260), 1, - sym_condition_clause, - [199979] = 3, + ACTIONS(10958), 1, + anon_sym_SEMI, + [230024] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9392), 1, - anon_sym_LPAREN2, - ACTIONS(9394), 1, + ACTIONS(10960), 1, sym_raw_string_delimiter, - [199989] = 3, + [230031] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - STATE(590), 1, - sym_compound_statement, - [199999] = 3, + ACTIONS(10962), 1, + anon_sym_RPAREN, + [230038] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5445), 1, - anon_sym_LBRACE, - STATE(3264), 1, - sym_field_declaration_list, - [200009] = 3, + ACTIONS(6893), 1, + anon_sym_RPAREN, + [230045] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8733), 1, - anon_sym_LPAREN2, - STATE(195), 1, - sym_condition_clause, - [200019] = 3, + ACTIONS(6917), 1, + anon_sym_RPAREN, + [230052] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4359), 1, - anon_sym_LBRACE, - STATE(2532), 1, - sym_field_declaration_list, - [200029] = 3, + ACTIONS(10964), 1, + anon_sym_STAR, + [230059] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8733), 1, - anon_sym_LPAREN2, - STATE(241), 1, - sym_condition_clause, - [200039] = 3, + ACTIONS(6925), 1, + anon_sym_RPAREN, + [230066] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8365), 1, - sym_identifier, - STATE(5831), 1, - sym_enumerator, - [200049] = 3, + ACTIONS(6895), 1, + anon_sym_RPAREN, + [230073] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4359), 1, - anon_sym_LBRACE, - STATE(2514), 1, - sym_field_declaration_list, - [200059] = 3, + ACTIONS(10966), 1, + anon_sym_RPAREN, + [230080] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4359), 1, - anon_sym_LBRACE, - STATE(2512), 1, - sym_field_declaration_list, - [200069] = 3, + ACTIONS(10968), 1, + anon_sym_SEMI, + [230087] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4359), 1, - anon_sym_LBRACE, - STATE(2511), 1, - sym_field_declaration_list, - [200079] = 2, + ACTIONS(6929), 1, + anon_sym_RPAREN, + [230094] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9216), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [200087] = 3, + ACTIONS(10970), 1, + aux_sym_preproc_if_token2, + [230101] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9224), 1, - anon_sym_LT, - STATE(2731), 1, - sym_template_argument_list, - [200097] = 3, + ACTIONS(10972), 1, + anon_sym_SEMI, + [230108] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5445), 1, - anon_sym_LBRACE, - STATE(3254), 1, - sym_field_declaration_list, - [200107] = 3, + ACTIONS(10974), 1, + aux_sym_preproc_if_token2, + [230115] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8343), 1, - anon_sym_COLON_COLON, - ACTIONS(9396), 1, + ACTIONS(6951), 1, + anon_sym_RPAREN, + [230122] = 2, + ACTIONS(7929), 1, + sym_comment, + ACTIONS(10976), 1, + anon_sym_LF, + [230129] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10978), 1, + anon_sym_RPAREN, + [230136] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10980), 1, anon_sym_SEMI, - [200117] = 3, + [230143] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(640), 1, - anon_sym_LBRACE, - STATE(498), 1, - sym_compound_statement, - [200127] = 3, + ACTIONS(10982), 1, + sym_identifier, + [230150] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4359), 1, - anon_sym_LBRACE, - STATE(2480), 1, - sym_field_declaration_list, - [200137] = 3, + ACTIONS(10984), 1, + sym_identifier, + [230157] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4359), 1, - anon_sym_LBRACE, - STATE(2473), 1, - sym_field_declaration_list, - [200147] = 3, + ACTIONS(10986), 1, + anon_sym_RPAREN, + [230164] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4359), 1, - anon_sym_LBRACE, - STATE(2471), 1, - sym_field_declaration_list, - [200157] = 2, + ACTIONS(10988), 1, + sym_auto, + [230171] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9173), 2, - anon_sym_COMMA, - anon_sym_LBRACE, - [200165] = 3, + ACTIONS(9529), 1, + anon_sym_SEMI, + [230178] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8733), 1, - anon_sym_LPAREN2, - STATE(5947), 1, - sym_condition_clause, - [200175] = 3, + ACTIONS(10990), 1, + anon_sym_SEMI, + [230185] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(640), 1, - anon_sym_LBRACE, - STATE(951), 1, - sym_compound_statement, - [200185] = 3, + ACTIONS(10992), 1, + anon_sym_SEMI, + [230192] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9240), 1, - anon_sym_LT, - STATE(1846), 1, - sym_template_argument_list, - [200195] = 3, + ACTIONS(10994), 1, + sym_raw_string_delimiter, + [230199] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9735), 1, + anon_sym_SEMI, + [230206] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10996), 1, + anon_sym_SEMI, + [230213] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9398), 1, + ACTIONS(10998), 1, sym_identifier, - STATE(2733), 1, - sym_template_method, - [200205] = 3, + [230220] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4257), 1, - anon_sym_LPAREN2, - STATE(2824), 1, - sym_argument_list, - [200215] = 3, + ACTIONS(8635), 1, + anon_sym_RPAREN, + [230227] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4359), 1, - anon_sym_LBRACE, - STATE(2447), 1, - sym_field_declaration_list, - [200225] = 3, + ACTIONS(11000), 1, + anon_sym_RPAREN, + [230234] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4359), 1, - anon_sym_LBRACE, - STATE(2448), 1, - sym_field_declaration_list, - [200235] = 3, + ACTIONS(6897), 1, + anon_sym_SEMI, + [230241] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9244), 1, - anon_sym_LPAREN2, - STATE(6429), 1, - sym_parenthesized_expression, - [200245] = 3, + ACTIONS(11002), 1, + anon_sym_RPAREN, + [230248] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3940), 1, - anon_sym_LBRACE, - STATE(934), 1, - sym_declaration_list, - [200255] = 3, + ACTIONS(11004), 1, + anon_sym_SEMI, + [230255] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3932), 1, - anon_sym_LBRACE, - STATE(976), 1, - sym_declaration_list, - [200265] = 2, - ACTIONS(7009), 1, + ACTIONS(6785), 1, + anon_sym_RBRACE, + [230262] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(9400), 2, - anon_sym_LF, - sym_preproc_arg, - [200273] = 2, + ACTIONS(11006), 1, + anon_sym_STAR, + [230269] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8646), 2, - anon_sym_COMMA, + ACTIONS(11008), 1, anon_sym_RPAREN, - [200281] = 3, + [230276] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9250), 1, - sym_identifier, - STATE(5625), 1, - sym_attribute, - [200291] = 3, - ACTIONS(7009), 1, + ACTIONS(11010), 1, + anon_sym_DQUOTE, + [230283] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(9402), 1, - anon_sym_LF, - ACTIONS(9404), 1, - sym_preproc_arg, - [200301] = 3, + ACTIONS(11012), 1, + anon_sym_LBRACE, + [230290] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8733), 1, - anon_sym_LPAREN2, - STATE(5938), 1, - sym_condition_clause, - [200311] = 3, + ACTIONS(10443), 1, + anon_sym_RBRACE, + [230297] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8733), 1, - anon_sym_LPAREN2, - STATE(169), 1, - sym_condition_clause, - [200321] = 3, + ACTIONS(6907), 1, + anon_sym_RPAREN, + [230304] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6713), 1, - anon_sym_LT, - STATE(2234), 1, - sym_template_argument_list, - [200331] = 2, - ACTIONS(7009), 1, + ACTIONS(11014), 1, + anon_sym_SEMI, + [230311] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(9406), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [200339] = 3, + ACTIONS(4122), 1, + anon_sym_DOT_DOT_DOT, + [230318] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9408), 1, - anon_sym_LPAREN2, - ACTIONS(9410), 1, - sym_raw_string_delimiter, - [200349] = 3, + ACTIONS(11016), 1, + aux_sym_preproc_if_token2, + [230325] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - STATE(5668), 1, - sym_compound_statement, - [200359] = 3, - ACTIONS(7009), 1, + ACTIONS(6911), 1, + anon_sym_RPAREN, + [230332] = 2, + ACTIONS(7929), 1, sym_comment, - ACTIONS(9412), 1, + ACTIONS(11018), 1, anon_sym_LF, - ACTIONS(9414), 1, - sym_preproc_arg, - [200369] = 3, + [230339] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(640), 1, - anon_sym_LBRACE, - STATE(990), 1, - sym_compound_statement, - [200379] = 2, + ACTIONS(11020), 1, + sym_auto, + [230346] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7659), 2, - anon_sym_COMMA, - anon_sym_SEMI, - [200387] = 3, + ACTIONS(11022), 1, + sym_identifier, + [230353] = 2, + ACTIONS(7929), 1, + sym_comment, + ACTIONS(11024), 1, + anon_sym_LF, + [230360] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6821), 1, - anon_sym_LBRACE, - STATE(3026), 1, - sym_requirement_seq, - [200397] = 2, + ACTIONS(11026), 1, + anon_sym_LPAREN2, + [230367] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5884), 2, - anon_sym_COMMA, + ACTIONS(9188), 1, anon_sym_SEMI, - [200405] = 3, + [230374] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1645), 1, - anon_sym_LBRACE, - STATE(3030), 1, - sym_initializer_list, - [200415] = 3, + ACTIONS(6871), 1, + anon_sym_SEMI, + [230381] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9416), 1, - anon_sym_LPAREN2, - ACTIONS(9418), 1, - sym_raw_string_delimiter, - [200425] = 3, + ACTIONS(5822), 1, + sym_identifier, + [230388] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3932), 1, - anon_sym_LBRACE, - STATE(999), 1, - sym_declaration_list, - [200435] = 3, + ACTIONS(11028), 1, + anon_sym_SQUOTE, + [230395] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9420), 1, - anon_sym_LPAREN2, - ACTIONS(9422), 1, - sym_raw_string_delimiter, - [200445] = 3, + ACTIONS(11030), 1, + anon_sym_SEMI, + [230402] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9424), 1, - sym_identifier, - ACTIONS(9426), 1, - anon_sym_LPAREN2, - [200455] = 3, + ACTIONS(7053), 1, + anon_sym_SEMI, + [230409] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5413), 1, - anon_sym_LT, - STATE(5512), 1, - sym_template_argument_list, - [200465] = 3, + ACTIONS(11032), 1, + anon_sym_SEMI, + [230416] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5415), 1, - anon_sym_LPAREN2, - STATE(6466), 1, - sym_argument_list, - [200475] = 2, + ACTIONS(11034), 1, + sym_identifier, + [230423] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9428), 2, - anon_sym_COMMA, - anon_sym_LBRACE, - [200483] = 3, + ACTIONS(6931), 1, + anon_sym_SEMI, + [230430] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9430), 1, - anon_sym_LPAREN2, - ACTIONS(9432), 1, - sym_raw_string_delimiter, - [200493] = 2, + ACTIONS(11036), 1, + anon_sym_SEMI, + [230437] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9074), 2, - anon_sym_COMMA, - anon_sym_LBRACE, - [200501] = 3, + ACTIONS(11038), 1, + anon_sym_SEMI, + [230444] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9434), 1, - sym_identifier, - STATE(2326), 1, - sym_template_type, - [200511] = 2, + ACTIONS(11040), 1, + anon_sym_RPAREN, + [230451] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9436), 2, - anon_sym_COMMA, - anon_sym_LBRACE, - [200519] = 3, + ACTIONS(6923), 1, + anon_sym_SEMI, + [230458] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9438), 1, - anon_sym_default, - ACTIONS(9440), 1, - anon_sym_delete, - [200529] = 3, + ACTIONS(11042), 1, + sym_identifier, + [230465] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(640), 1, - anon_sym_LBRACE, - STATE(791), 1, - sym_compound_statement, - [200539] = 3, + ACTIONS(11044), 1, + anon_sym_RPAREN, + [230472] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8733), 1, - anon_sym_LPAREN2, - STATE(158), 1, - sym_condition_clause, - [200549] = 3, + ACTIONS(11046), 1, + anon_sym_RPAREN, + [230479] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4359), 1, - anon_sym_LBRACE, - STATE(2527), 1, - sym_field_declaration_list, - [200559] = 3, - ACTIONS(7009), 1, + ACTIONS(9222), 1, + anon_sym_SEMI, + [230486] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(9442), 1, - anon_sym_LF, - ACTIONS(9444), 1, - sym_preproc_arg, - [200569] = 2, + ACTIONS(10904), 1, + anon_sym_DASH_EQ, + [230493] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9446), 1, - anon_sym_SEMI, - [200576] = 2, + ACTIONS(10904), 1, + anon_sym_DOT_STAR, + [230500] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9448), 1, - sym_identifier, - [200583] = 2, + ACTIONS(10904), 1, + anon_sym_not_eq, + [230507] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9450), 1, - anon_sym_LPAREN2, - [200590] = 2, + ACTIONS(10904), 1, + anon_sym_bitand, + [230514] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9452), 1, - anon_sym_STAR, - [200597] = 2, + ACTIONS(10904), 1, + anon_sym_xor, + [230521] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9454), 1, - sym_identifier, - [200604] = 2, + ACTIONS(10904), 1, + anon_sym_bitor, + [230528] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6128), 1, - anon_sym_RPAREN, - [200611] = 2, + ACTIONS(10904), 1, + anon_sym_and, + [230535] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9456), 1, + ACTIONS(11048), 1, sym_identifier, - [200618] = 2, + [230542] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9458), 1, - sym_identifier, - [200625] = 2, + ACTIONS(10904), 1, + anon_sym_or, + [230549] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9460), 1, - anon_sym_LPAREN2, - [200632] = 2, + ACTIONS(10904), 1, + anon_sym_PIPE_EQ, + [230556] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9462), 1, - sym_identifier, - [200639] = 2, + ACTIONS(10904), 1, + anon_sym_CARET_EQ, + [230563] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9464), 1, - sym_identifier, - [200646] = 2, + ACTIONS(7043), 1, + anon_sym_RPAREN, + [230570] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9466), 1, - anon_sym_LBRACE, - [200653] = 2, + ACTIONS(10904), 1, + anon_sym_AMP_EQ, + [230577] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9468), 1, - anon_sym_DQUOTE, - [200660] = 2, + ACTIONS(10904), 1, + anon_sym_GT_GT_EQ, + [230584] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9470), 1, + ACTIONS(7045), 1, anon_sym_RPAREN, - [200667] = 2, + [230591] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9472), 1, - anon_sym_SEMI, - [200674] = 2, + ACTIONS(10904), 1, + anon_sym_LT_LT_EQ, + [230598] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9474), 1, - anon_sym_SEMI, - [200681] = 2, + ACTIONS(11050), 1, + anon_sym_DQUOTE, + [230605] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9476), 1, + ACTIONS(8631), 1, anon_sym_RPAREN, - [200688] = 2, + [230612] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9478), 1, + ACTIONS(11052), 1, anon_sym_RPAREN, - [200695] = 2, + [230619] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6112), 1, - anon_sym_RPAREN, - [200702] = 2, + ACTIONS(11054), 1, + sym_raw_string_delimiter, + [230626] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10904), 1, + anon_sym_PLUS_EQ, + [230633] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6114), 1, + ACTIONS(7047), 1, anon_sym_RPAREN, - [200709] = 2, + [230640] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9480), 1, - anon_sym_SEMI, - [200716] = 2, + ACTIONS(10904), 1, + anon_sym_PERCENT_EQ, + [230647] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9482), 1, + ACTIONS(7051), 1, anon_sym_RPAREN, - [200723] = 2, + [230654] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6118), 1, - anon_sym_RPAREN, - [200730] = 2, + ACTIONS(10904), 1, + anon_sym_SLASH_EQ, + [230661] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6120), 1, + ACTIONS(11056), 1, anon_sym_RPAREN, - [200737] = 2, + [230668] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9484), 1, - sym_raw_string_delimiter, - [200744] = 2, + ACTIONS(10904), 1, + anon_sym_STAR_EQ, + [230675] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7567), 1, + ACTIONS(7055), 1, anon_sym_RPAREN, - [200751] = 2, + [230682] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6122), 1, - anon_sym_SEMI, - [200758] = 2, + ACTIONS(10904), 1, + anon_sym_EQ, + [230689] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6025), 1, - anon_sym_SEMI, - [200765] = 2, + ACTIONS(10904), 1, + anon_sym_GT_GT, + [230696] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6124), 1, + ACTIONS(10904), 1, + anon_sym_LT_LT, + [230703] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7057), 1, anon_sym_RPAREN, - [200772] = 2, + [230710] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6191), 1, - anon_sym_SEMI, - [200779] = 2, + ACTIONS(10904), 1, + anon_sym_LT, + [230717] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9486), 1, - anon_sym_COLON, - [200786] = 2, + ACTIONS(11058), 1, + anon_sym_RPAREN, + [230724] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9488), 1, + ACTIONS(11060), 1, sym_identifier, - [200793] = 2, + [230731] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9490), 1, + ACTIONS(11062), 1, anon_sym_RPAREN, - [200800] = 2, + [230738] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9492), 1, - anon_sym_SEMI, - [200807] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9494), 1, - anon_sym_SEMI, - [200814] = 2, + ACTIONS(10904), 1, + anon_sym_LT_EQ, + [230745] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6142), 1, - anon_sym_SEMI, - [200821] = 2, + ACTIONS(11064), 1, + sym_identifier, + [230752] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6151), 1, + ACTIONS(11066), 1, anon_sym_SEMI, - [200828] = 2, + [230759] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6021), 1, + ACTIONS(11068), 1, anon_sym_SEMI, - [200835] = 2, + [230766] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7619), 1, + ACTIONS(11070), 1, anon_sym_RPAREN, - [200842] = 2, + [230773] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9496), 1, - anon_sym_STAR, - [200849] = 2, + ACTIONS(10904), 1, + anon_sym_GT_EQ, + [230780] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9498), 1, - sym_raw_string_delimiter, - [200856] = 2, + ACTIONS(10904), 1, + anon_sym_GT, + [230787] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6155), 1, - anon_sym_SEMI, - [200863] = 2, + ACTIONS(10904), 1, + anon_sym_BANG_EQ, + [230794] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6157), 1, - anon_sym_SEMI, - [200870] = 2, + ACTIONS(11072), 1, + anon_sym_RPAREN, + [230801] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9500), 1, - anon_sym_SEMI, - [200877] = 2, + ACTIONS(10904), 1, + anon_sym_EQ_EQ, + [230808] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6163), 1, + ACTIONS(11074), 1, anon_sym_RPAREN, - [200884] = 2, + [230815] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9502), 1, - anon_sym_RPAREN, - [200891] = 2, + ACTIONS(10904), 1, + anon_sym_AMP, + [230822] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9504), 1, - anon_sym_SEMI, - [200898] = 2, + ACTIONS(11076), 1, + anon_sym_DQUOTE, + [230829] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9506), 1, + ACTIONS(11078), 1, sym_identifier, - [200905] = 2, + [230836] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9508), 1, - anon_sym_SEMI, - [200912] = 2, + ACTIONS(11080), 1, + anon_sym_LPAREN2, + [230843] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9510), 1, - sym_identifier, - [200919] = 2, - ACTIONS(3), 1, + ACTIONS(10904), 1, + anon_sym_CARET, + [230850] = 2, + ACTIONS(7929), 1, sym_comment, - ACTIONS(9512), 1, - sym_identifier, - [200926] = 2, + ACTIONS(11082), 1, + anon_sym_LF, + [230857] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9514), 1, - sym_identifier, - [200933] = 2, + ACTIONS(10904), 1, + anon_sym_PIPE, + [230864] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9516), 1, - anon_sym_STAR, - [200940] = 2, + ACTIONS(10904), 1, + anon_sym_AMP_AMP, + [230871] = 2, + ACTIONS(7929), 1, + sym_comment, + ACTIONS(10328), 1, + anon_sym_LF, + [230878] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9518), 1, - sym_identifier, - [200947] = 2, + ACTIONS(10904), 1, + anon_sym_PIPE_PIPE, + [230885] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9520), 1, - anon_sym_SEMI, - [200954] = 2, + ACTIONS(11084), 1, + anon_sym_RPAREN, + [230892] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9522), 1, - anon_sym_LPAREN2, - [200961] = 2, + ACTIONS(11086), 1, + sym_identifier, + [230899] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9524), 1, - anon_sym_or, - [200968] = 2, + ACTIONS(11088), 1, + anon_sym_RPAREN, + [230906] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9526), 1, + ACTIONS(11090), 1, sym_identifier, - [200975] = 2, + [230913] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9528), 1, - sym_identifier, - [200982] = 2, + ACTIONS(10904), 1, + anon_sym_PERCENT, + [230920] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9530), 1, - anon_sym_STAR, - [200989] = 2, + ACTIONS(11092), 1, + anon_sym_SLASH, + [230927] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9524), 1, - anon_sym_PERCENT_EQ, - [200996] = 2, + ACTIONS(10904), 1, + anon_sym_STAR, + [230934] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9532), 1, + ACTIONS(11094), 1, anon_sym_RPAREN, - [201003] = 2, + [230941] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9524), 1, - anon_sym_DASH_GT_STAR, - [201010] = 2, + ACTIONS(10904), 1, + anon_sym_PLUS, + [230948] = 2, + ACTIONS(4764), 1, + anon_sym_LF, + ACTIONS(7929), 1, + sym_comment, + [230955] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9534), 1, - sym_identifier, - [201017] = 2, + ACTIONS(10904), 1, + anon_sym_DASH, + [230962] = 2, + ACTIONS(7929), 1, + sym_comment, + ACTIONS(11096), 1, + anon_sym_LF, + [230969] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9536), 1, - sym_identifier, - [201024] = 2, + ACTIONS(10904), 1, + anon_sym_COMMA, + [230976] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9538), 1, - anon_sym_STAR, - [201031] = 2, + ACTIONS(11098), 1, + anon_sym_SEMI, + [230983] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11100), 1, + aux_sym_preproc_if_token2, + [230990] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9540), 1, + ACTIONS(11102), 1, sym_identifier, - [201038] = 2, + [230997] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9524), 1, - anon_sym_DOT_STAR, - [201045] = 2, + ACTIONS(11104), 1, + anon_sym_SEMI, + [231004] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9524), 1, - anon_sym_not_eq, - [201052] = 2, + ACTIONS(11106), 1, + anon_sym_COLON, + [231011] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9524), 1, - anon_sym_bitand, - [201059] = 2, + ACTIONS(8535), 1, + anon_sym_RPAREN, + [231018] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9542), 1, - anon_sym_LPAREN2, - [201066] = 2, + ACTIONS(11108), 1, + aux_sym_preproc_if_token2, + [231025] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9524), 1, - anon_sym_xor, - [201073] = 2, + ACTIONS(11110), 1, + sym_raw_string_delimiter, + [231032] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9524), 1, - anon_sym_bitor, - [201080] = 2, + ACTIONS(7015), 1, + anon_sym_RPAREN, + [231039] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9524), 1, - anon_sym_and, - [201087] = 2, + ACTIONS(11112), 1, + sym_identifier, + [231046] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3542), 1, - anon_sym_DOT_DOT_DOT, - [201094] = 2, + ACTIONS(11114), 1, + anon_sym_LPAREN2, + [231053] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9524), 1, - anon_sym_PIPE_EQ, - [201101] = 2, + ACTIONS(11116), 1, + anon_sym_RPAREN, + [231060] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9524), 1, - anon_sym_CARET_EQ, - [201108] = 2, + ACTIONS(11118), 1, + anon_sym_RPAREN, + [231067] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9544), 1, - anon_sym_LPAREN2, - [201115] = 2, + ACTIONS(11120), 1, + anon_sym_RPAREN, + [231074] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9546), 1, - anon_sym_LPAREN2, - [201122] = 2, + ACTIONS(11122), 1, + anon_sym_SEMI, + [231081] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9548), 1, - sym_identifier, - [201129] = 2, + ACTIONS(11124), 1, + aux_sym_preproc_if_token2, + [231088] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9524), 1, - anon_sym_AMP_EQ, - [201136] = 2, + ACTIONS(11126), 1, + anon_sym_DQUOTE, + [231095] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9524), 1, - anon_sym_GT_GT_EQ, - [201143] = 2, + ACTIONS(11128), 1, + anon_sym_SEMI, + [231102] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9524), 1, - anon_sym_LT_LT_EQ, - [201150] = 2, + ACTIONS(11130), 1, + anon_sym_RPAREN, + [231109] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9524), 1, - anon_sym_PLUS_EQ, - [201157] = 2, + ACTIONS(11132), 1, + anon_sym_COLON, + [231116] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9550), 1, - anon_sym_RPAREN, - [201164] = 2, + ACTIONS(11134), 1, + anon_sym_LPAREN2, + [231123] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9552), 1, + ACTIONS(6827), 1, anon_sym_SEMI, - [201171] = 2, + [231130] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9554), 1, + ACTIONS(11136), 1, anon_sym_SEMI, - [201178] = 2, + [231137] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9556), 1, - sym_identifier, - [201185] = 2, + ACTIONS(11138), 1, + anon_sym_SEMI, + [231144] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9558), 1, - sym_auto, - [201192] = 2, + ACTIONS(11140), 1, + anon_sym_SQUOTE, + [231151] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9560), 1, - ts_builtin_sym_end, - [201199] = 2, + ACTIONS(11142), 1, + anon_sym_SEMI, + [231158] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9524), 1, - anon_sym_SLASH_EQ, - [201206] = 2, + ACTIONS(11144), 1, + anon_sym_SEMI, + [231165] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9562), 1, - anon_sym_RPAREN, - [201213] = 2, + ACTIONS(11146), 1, + sym_identifier, + [231172] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9524), 1, - anon_sym_STAR_EQ, - [201220] = 2, + ACTIONS(11148), 1, + aux_sym_preproc_if_token2, + [231179] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9564), 1, + ACTIONS(11150), 1, anon_sym_RPAREN, - [201227] = 2, + [231186] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9524), 1, - anon_sym_EQ, - [201234] = 2, + ACTIONS(11152), 1, + anon_sym_SEMI, + [231193] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8995), 1, - anon_sym_RBRACE, - [201241] = 2, + ACTIONS(11154), 1, + sym_identifier, + [231200] = 2, + ACTIONS(7929), 1, + sym_comment, + ACTIONS(11156), 1, + anon_sym_LF, + [231207] = 2, + ACTIONS(7929), 1, + sym_comment, + ACTIONS(11158), 1, + anon_sym_LF, + [231214] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9524), 1, - anon_sym_GT_GT, - [201248] = 2, + ACTIONS(11160), 1, + aux_sym_preproc_if_token2, + [231221] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9566), 1, - anon_sym_STAR, - [201255] = 2, + ACTIONS(9953), 1, + anon_sym_RBRACE, + [231228] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9524), 1, - anon_sym_LT_LT, - [201262] = 2, + ACTIONS(11162), 1, + aux_sym_preproc_if_token2, + [231235] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11164), 1, + anon_sym_STAR, + [231242] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9568), 1, + ACTIONS(11166), 1, anon_sym_RPAREN, - [201269] = 2, + [231249] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9570), 1, + ACTIONS(8575), 1, anon_sym_RPAREN, - [201276] = 2, + [231256] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6080), 1, + ACTIONS(11168), 1, anon_sym_SEMI, - [201283] = 2, + [231263] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9572), 1, - anon_sym_RPAREN, - [201290] = 2, + ACTIONS(11170), 1, + sym_identifier, + [231270] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6088), 1, - anon_sym_SEMI, - [201297] = 2, + ACTIONS(11172), 1, + sym_identifier, + [231277] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9574), 1, + ACTIONS(9707), 1, anon_sym_SEMI, - [201304] = 2, + [231284] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9576), 1, - anon_sym_SEMI, - [201311] = 2, + ACTIONS(11174), 1, + anon_sym_RPAREN, + [231291] = 2, + ACTIONS(7929), 1, + sym_comment, + ACTIONS(10176), 1, + anon_sym_LF, + [231298] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9578), 1, - sym_auto, - [201318] = 2, + ACTIONS(11176), 1, + anon_sym_SEMI, + [231305] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9524), 1, - anon_sym_LT, - [201325] = 2, + ACTIONS(11178), 1, + aux_sym_preproc_if_token2, + [231312] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9524), 1, - anon_sym_LT_EQ, - [201332] = 2, + ACTIONS(11180), 1, + aux_sym_preproc_if_token2, + [231319] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6041), 1, + ACTIONS(11182), 1, anon_sym_SEMI, - [201339] = 2, + [231326] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7627), 1, - anon_sym_RPAREN, - [201346] = 2, + ACTIONS(4312), 1, + anon_sym_SEMI, + [231333] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9524), 1, - anon_sym_GT_EQ, - [201353] = 2, + ACTIONS(11184), 1, + anon_sym_SEMI, + [231340] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9580), 1, - sym_raw_string_delimiter, - [201360] = 2, + ACTIONS(11186), 1, + anon_sym_LPAREN2, + [231347] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9524), 1, - anon_sym_BANG_EQ, - [201367] = 2, + ACTIONS(11188), 1, + anon_sym_SEMI, + [231354] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9582), 1, - sym_identifier, - [201374] = 2, + ACTIONS(11190), 1, + sym_auto, + [231361] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9524), 1, - anon_sym_DASH_EQ, - [201381] = 2, + ACTIONS(11192), 1, + aux_sym_preproc_if_token2, + [231368] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8836), 1, - anon_sym_RBRACE, - [201388] = 2, - ACTIONS(7009), 1, + ACTIONS(11194), 1, + sym_auto, + [231375] = 2, + ACTIONS(7929), 1, sym_comment, - ACTIONS(9584), 1, + ACTIONS(11196), 1, anon_sym_LF, - [201395] = 2, + [231382] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6185), 1, - anon_sym_SEMI, - [201402] = 2, + ACTIONS(11198), 1, + anon_sym_RPAREN, + [231389] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9586), 1, + ACTIONS(11200), 1, sym_identifier, - [201409] = 2, + [231396] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9588), 1, - anon_sym_SQUOTE, - [201416] = 2, + ACTIONS(7207), 1, + anon_sym_RBRACK, + [231403] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9524), 1, - anon_sym_EQ_EQ, - [201423] = 2, + ACTIONS(11202), 1, + sym_auto, + [231410] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9590), 1, + ACTIONS(11204), 1, anon_sym_RPAREN, - [201430] = 2, + [231417] = 2, + ACTIONS(7929), 1, + sym_comment, + ACTIONS(11206), 1, + anon_sym_LF, + [231424] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9592), 1, + ACTIONS(5968), 1, anon_sym_RPAREN, - [201437] = 2, + [231431] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9594), 1, - anon_sym_RPAREN, - [201444] = 2, + ACTIONS(11208), 1, + anon_sym_DQUOTE, + [231438] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9596), 1, - anon_sym_STAR, - [201451] = 2, + ACTIONS(11210), 1, + anon_sym_SEMI, + [231445] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9524), 1, - anon_sym_AMP, - [201458] = 2, + ACTIONS(11212), 1, + anon_sym_SEMI, + [231452] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9598), 1, + ACTIONS(11214), 1, anon_sym_SEMI, - [201465] = 2, + [231459] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9600), 1, + ACTIONS(11216), 1, anon_sym_SEMI, - [201472] = 2, + [231466] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9524), 1, - anon_sym_CARET, - [201479] = 2, + ACTIONS(11218), 1, + anon_sym_SEMI, + [231473] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9524), 1, - anon_sym_PIPE, - [201486] = 2, + ACTIONS(8525), 1, + anon_sym_RPAREN, + [231480] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9524), 1, - anon_sym_AMP_AMP, - [201493] = 2, + ACTIONS(11220), 1, + anon_sym_SEMI, + [231487] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11222), 1, + sym_identifier, + [231494] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9602), 1, + ACTIONS(11224), 1, anon_sym_SEMI, - [201500] = 2, + [231501] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9604), 1, + ACTIONS(11226), 1, anon_sym_SEMI, - [201507] = 2, + [231508] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9606), 1, - anon_sym_LPAREN2, - [201514] = 2, + ACTIONS(11228), 1, + anon_sym_RPAREN, + [231515] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11230), 1, + anon_sym_RPAREN, + [231522] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9608), 1, + ACTIONS(11232), 1, anon_sym_SEMI, - [201521] = 2, - ACTIONS(7009), 1, + [231529] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(9610), 1, + ACTIONS(11234), 1, + anon_sym_RPAREN, + [231536] = 2, + ACTIONS(4775), 1, anon_sym_LF, - [201528] = 2, - ACTIONS(3), 1, + ACTIONS(7929), 1, sym_comment, - ACTIONS(9524), 1, - anon_sym_PIPE_PIPE, - [201535] = 2, + [231543] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9612), 1, - sym_auto, - [201542] = 2, + ACTIONS(11236), 1, + anon_sym_SEMI, + [231550] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3592), 1, + ACTIONS(11238), 1, anon_sym_SEMI, - [201549] = 2, + [231557] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9614), 1, - anon_sym_SEMI, - [201556] = 2, + ACTIONS(11240), 1, + anon_sym_LPAREN2, + [231564] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9524), 1, - anon_sym_PERCENT, - [201563] = 2, + ACTIONS(11242), 1, + anon_sym_COLON, + [231571] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8587), 1, + ACTIONS(11244), 1, anon_sym_SEMI, - [201570] = 2, + [231578] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9616), 1, - anon_sym_SLASH, - [201577] = 2, + ACTIONS(11246), 1, + anon_sym_LPAREN2, + [231585] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9618), 1, - sym_identifier, - [201584] = 2, + ACTIONS(11248), 1, + anon_sym_SEMI, + [231592] = 2, + ACTIONS(7929), 1, + sym_comment, + ACTIONS(11250), 1, + anon_sym_LF, + [231599] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9524), 1, - anon_sym_STAR, - [201591] = 2, + ACTIONS(11252), 1, + anon_sym_SEMI, + [231606] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9620), 1, + ACTIONS(11254), 1, anon_sym_RPAREN, - [201598] = 2, + [231613] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9524), 1, - anon_sym_PLUS, - [201605] = 2, + ACTIONS(11256), 1, + aux_sym_preproc_if_token2, + [231620] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8673), 1, - anon_sym_RBRACE, - [201612] = 2, + ACTIONS(11258), 1, + anon_sym_RPAREN, + [231627] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9622), 1, - anon_sym_RPAREN, - [201619] = 2, - ACTIONS(7009), 1, + ACTIONS(11260), 1, + aux_sym_preproc_if_token2, + [231634] = 2, + ACTIONS(7929), 1, sym_comment, - ACTIONS(9624), 1, + ACTIONS(11262), 1, anon_sym_LF, - [201626] = 2, + [231641] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8028), 1, - anon_sym_SEMI, - [201633] = 2, + ACTIONS(11264), 1, + anon_sym_RPAREN, + [231648] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4229), 1, - anon_sym_COLON_COLON, - [201640] = 2, + ACTIONS(11266), 1, + anon_sym_RPAREN, + [231655] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9626), 1, - anon_sym_SQUOTE, - [201647] = 2, + ACTIONS(11268), 1, + anon_sym_RPAREN, + [231662] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9524), 1, - anon_sym_GT, - [201654] = 2, + ACTIONS(11270), 1, + anon_sym_SQUOTE, + [231669] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9524), 1, - anon_sym_DASH, - [201661] = 2, + ACTIONS(8577), 1, + anon_sym_RPAREN, + [231676] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9524), 1, - anon_sym_COMMA, - [201668] = 2, + ACTIONS(11272), 1, + anon_sym_RPAREN, + [231683] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6140), 1, + ACTIONS(9146), 1, anon_sym_SEMI, - [201675] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9628), 1, - anon_sym_RPAREN, - [201682] = 2, + [231690] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6153), 1, - anon_sym_SEMI, - [201689] = 2, + ACTIONS(11274), 1, + anon_sym_LBRACE, + [231697] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9630), 1, + ACTIONS(11276), 1, anon_sym_RPAREN, - [201696] = 2, + [231704] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9632), 1, - anon_sym_RPAREN, - [201703] = 2, - ACTIONS(7009), 1, + ACTIONS(11278), 1, + sym_raw_string_content, + [231711] = 2, + ACTIONS(7929), 1, sym_comment, - ACTIONS(9634), 1, + ACTIONS(11280), 1, anon_sym_LF, - [201710] = 2, + [231718] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9636), 1, - anon_sym_DQUOTE, - [201717] = 2, + ACTIONS(4217), 1, + anon_sym_SEMI, + [231725] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9638), 1, + ACTIONS(9661), 1, anon_sym_SEMI, - [201724] = 2, + [231732] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6159), 1, + ACTIONS(11282), 1, anon_sym_SEMI, - [201731] = 2, + [231739] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7599), 1, - anon_sym_RPAREN, - [201738] = 2, + ACTIONS(11284), 1, + sym_identifier, + [231746] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9640), 1, + ACTIONS(9675), 1, anon_sym_SEMI, - [201745] = 2, + [231753] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9642), 1, - sym_raw_string_delimiter, - [201752] = 2, + ACTIONS(7013), 1, + anon_sym_SEMI, + [231760] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9644), 1, - aux_sym_preproc_if_token2, - [201759] = 2, + ACTIONS(9906), 1, + anon_sym_RBRACE, + [231767] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9646), 1, - sym_identifier, - [201766] = 2, + ACTIONS(11286), 1, + anon_sym_RPAREN, + [231774] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9648), 1, - anon_sym_DQUOTE, - [201773] = 2, + ACTIONS(11288), 1, + anon_sym_RPAREN, + [231781] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9650), 1, - anon_sym_SEMI, - [201780] = 2, + ACTIONS(6714), 1, + anon_sym_RBRACE, + [231788] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9652), 1, - anon_sym_SEMI, - [201787] = 2, + ACTIONS(11290), 1, + sym_identifier, + [231795] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9654), 1, + ACTIONS(11292), 1, anon_sym_RPAREN, - [201794] = 2, + [231802] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9656), 1, - anon_sym_SEMI, - [201801] = 2, - ACTIONS(7009), 1, - sym_comment, - ACTIONS(9658), 1, - anon_sym_LF, - [201808] = 2, + ACTIONS(11294), 1, + anon_sym_LPAREN2, + [231809] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9660), 1, - sym_auto, - [201815] = 2, + ACTIONS(11296), 1, + anon_sym_LPAREN2, + [231816] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3645), 1, - anon_sym_SEMI, - [201822] = 2, + ACTIONS(11298), 1, + anon_sym_LPAREN2, + [231823] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9662), 1, - anon_sym_SEMI, - [201829] = 2, + ACTIONS(11300), 1, + anon_sym_COLON, + [231830] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8463), 1, + ACTIONS(9684), 1, anon_sym_SEMI, - [201836] = 2, + [231837] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9664), 1, - anon_sym_LPAREN2, - [201843] = 2, - ACTIONS(7009), 1, - sym_comment, - ACTIONS(8963), 1, - anon_sym_LF, - [201850] = 2, - ACTIONS(4020), 1, - anon_sym_LF, - ACTIONS(7009), 1, - sym_comment, - [201857] = 2, + ACTIONS(9888), 1, + anon_sym_RBRACE, + [231844] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9666), 1, - anon_sym_RPAREN, - [201864] = 2, + ACTIONS(11302), 1, + sym_identifier, + [231851] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9668), 1, - aux_sym_preproc_if_token2, - [201871] = 2, + ACTIONS(11304), 1, + anon_sym_SEMI, + [231858] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9670), 1, + ACTIONS(11306), 1, anon_sym_RPAREN, - [201878] = 2, + [231865] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9672), 1, - anon_sym_RPAREN, - [201885] = 2, + ACTIONS(4245), 1, + anon_sym_SEMI, + [231872] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9674), 1, - sym_identifier, - [201892] = 2, + ACTIONS(11308), 1, + anon_sym_LPAREN2, + [231879] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5984), 1, - anon_sym_RBRACE, - [201899] = 2, + ACTIONS(7011), 1, + anon_sym_SEMI, + [231886] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8978), 1, - anon_sym_RBRACE, - [201906] = 2, - ACTIONS(7009), 1, + ACTIONS(11310), 1, + anon_sym_SEMI, + [231893] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(9676), 1, - anon_sym_LF, - [201913] = 2, + ACTIONS(11312), 1, + anon_sym_SQUOTE, + [231900] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9678), 1, - aux_sym_preproc_if_token2, - [201920] = 2, + ACTIONS(11314), 1, + sym_auto, + [231907] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9680), 1, + ACTIONS(11316), 1, anon_sym_RPAREN, - [201927] = 2, - ACTIONS(7009), 1, + [231914] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(9682), 1, + ACTIONS(11318), 1, + aux_sym_preproc_if_token2, + [231921] = 2, + ACTIONS(7929), 1, + sym_comment, + ACTIONS(11320), 1, anon_sym_LF, - [201934] = 2, - ACTIONS(3), 1, + [231928] = 2, + ACTIONS(7929), 1, sym_comment, - ACTIONS(8096), 1, - anon_sym_SEMI, - [201941] = 2, + ACTIONS(11322), 1, + anon_sym_LF, + [231935] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5250), 1, + ACTIONS(5826), 1, sym_identifier, - [201948] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9684), 1, - anon_sym_SQUOTE, - [201955] = 2, + [231942] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9686), 1, - anon_sym_RPAREN, - [201962] = 2, + ACTIONS(11324), 1, + anon_sym_SEMI, + [231949] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9688), 1, - sym_identifier, - [201969] = 2, + ACTIONS(11326), 1, + aux_sym_preproc_if_token2, + [231956] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9690), 1, - anon_sym_RPAREN, - [201976] = 2, + ACTIONS(11328), 1, + anon_sym_while, + [231963] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9692), 1, - anon_sym_RPAREN, - [201983] = 2, + ACTIONS(11330), 1, + anon_sym_COMMA, + [231970] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7635), 1, - anon_sym_RPAREN, - [201990] = 2, + ACTIONS(11332), 1, + anon_sym_LPAREN2, + [231977] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9694), 1, + ACTIONS(11334), 1, anon_sym_RPAREN, - [201997] = 2, + [231984] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9696), 1, - sym_raw_string_delimiter, - [202004] = 2, + ACTIONS(11336), 1, + anon_sym_SEMI, + [231991] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9698), 1, + ACTIONS(11338), 1, sym_identifier, - [202011] = 2, + [231998] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9700), 1, - anon_sym_RPAREN, - [202018] = 2, - ACTIONS(7009), 1, - sym_comment, - ACTIONS(9702), 1, - anon_sym_LF, - [202025] = 2, + ACTIONS(9180), 1, + anon_sym_SEMI, + [232005] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5968), 1, + ACTIONS(11340), 1, anon_sym_SEMI, - [202032] = 2, + [232012] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9704), 1, - anon_sym_RPAREN, - [202039] = 2, + ACTIONS(11342), 1, + anon_sym_EQ, + [232019] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6061), 1, - anon_sym_RPAREN, - [202046] = 2, + ACTIONS(11344), 1, + sym_raw_string_content, + [232026] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9706), 1, - anon_sym_DQUOTE, - [202053] = 2, + ACTIONS(11346), 1, + sym_identifier, + [232033] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9708), 1, + ACTIONS(9216), 1, anon_sym_SEMI, - [202060] = 2, + [232040] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6090), 1, - anon_sym_RPAREN, - [202067] = 2, + ACTIONS(11348), 1, + aux_sym_preproc_if_token2, + [232047] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9710), 1, - anon_sym_RPAREN, - [202074] = 2, + ACTIONS(6664), 1, + anon_sym_RBRACE, + [232054] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6074), 1, - anon_sym_RPAREN, - [202081] = 2, + ACTIONS(7033), 1, + anon_sym_SEMI, + [232061] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9712), 1, - anon_sym_LPAREN2, - [202088] = 2, + ACTIONS(5434), 1, + sym_identifier, + [232068] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6072), 1, - anon_sym_RPAREN, - [202095] = 2, + ACTIONS(11350), 1, + sym_identifier, + [232075] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6380), 1, - anon_sym_RBRACK, - [202102] = 2, + ACTIONS(11352), 1, + anon_sym_SEMI, + [232082] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6825), 1, + anon_sym_RPAREN, + [232089] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9714), 1, + ACTIONS(11354), 1, anon_sym_SEMI, - [202109] = 2, + [232096] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9716), 1, - sym_raw_string_content, - [202116] = 2, + ACTIONS(7027), 1, + anon_sym_SEMI, + [232103] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6065), 1, + ACTIONS(11356), 1, anon_sym_RPAREN, - [202123] = 2, + [232110] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9718), 1, - sym_auto, - [202130] = 2, + ACTIONS(11358), 1, + anon_sym_COMMA, + [232117] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6063), 1, + ACTIONS(11360), 1, anon_sym_RPAREN, - [202137] = 2, + [232124] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9720), 1, - anon_sym_DQUOTE, - [202144] = 2, + ACTIONS(11362), 1, + anon_sym_SQUOTE, + [232131] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11364), 1, + sym_identifier, + [232138] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9722), 1, + ACTIONS(11366), 1, anon_sym_SEMI, - [202151] = 2, + [232145] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9724), 1, + ACTIONS(11368), 1, anon_sym_SEMI, - [202158] = 2, + [232152] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9726), 1, - anon_sym_RPAREN, - [202165] = 2, + ACTIONS(11370), 1, + anon_sym_SEMI, + [232159] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9728), 1, + ACTIONS(7009), 1, anon_sym_SEMI, - [202172] = 2, + [232166] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9730), 1, + ACTIONS(11372), 1, anon_sym_SEMI, - [202179] = 2, + [232173] = 2, + ACTIONS(7929), 1, + sym_comment, + ACTIONS(11374), 1, + anon_sym_LF, + [232180] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9732), 1, + ACTIONS(7025), 1, anon_sym_SEMI, - [202186] = 2, + [232187] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7633), 1, + ACTIONS(11376), 1, anon_sym_RPAREN, - [202193] = 2, + [232194] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9734), 1, + ACTIONS(7023), 1, anon_sym_SEMI, - [202200] = 2, - ACTIONS(7009), 1, + [232201] = 2, + ACTIONS(7929), 1, sym_comment, - ACTIONS(9736), 1, + ACTIONS(11378), 1, anon_sym_LF, - [202207] = 2, + [232208] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9738), 1, - sym_auto, - [202214] = 2, + ACTIONS(11380), 1, + anon_sym_RPAREN, + [232215] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9740), 1, + ACTIONS(7007), 1, anon_sym_SEMI, - [202221] = 2, + [232222] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9742), 1, - anon_sym_SEMI, - [202228] = 2, + ACTIONS(11382), 1, + anon_sym_RPAREN, + [232229] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9744), 1, - anon_sym_LPAREN2, - [202235] = 2, + ACTIONS(11384), 1, + aux_sym_preproc_if_token2, + [232236] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8405), 1, - anon_sym_SEMI, - [202242] = 2, + ACTIONS(11386), 1, + anon_sym_RPAREN, + [232243] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9746), 1, - anon_sym_LPAREN2, - [202249] = 2, + ACTIONS(11388), 1, + sym_identifier, + [232250] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5858), 1, - anon_sym_RBRACE, - [202256] = 2, + ACTIONS(11390), 1, + anon_sym_RPAREN, + [232257] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9748), 1, + ACTIONS(7021), 1, + anon_sym_SEMI, + [232264] = 2, + ACTIONS(7929), 1, + sym_comment, + ACTIONS(11392), 1, + anon_sym_LF, + [232271] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11394), 1, + anon_sym_COLON, + [232278] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11396), 1, anon_sym_RPAREN, - [202263] = 2, + [232285] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9750), 1, + ACTIONS(11398), 1, anon_sym_RPAREN, - [202270] = 2, + [232292] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9021), 1, - anon_sym_RBRACE, - [202277] = 2, - ACTIONS(7009), 1, + ACTIONS(7079), 1, + anon_sym_RPAREN, + [232299] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(9752), 1, - anon_sym_LF, - [202284] = 2, + ACTIONS(6061), 1, + sym_identifier, + [232306] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5193), 1, - anon_sym_RPAREN, - [202291] = 2, + ACTIONS(9212), 1, + anon_sym_SEMI, + [232313] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9754), 1, + ACTIONS(11400), 1, anon_sym_LPAREN2, - [202298] = 2, + [232320] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9756), 1, - anon_sym_LBRACE, - [202305] = 2, + ACTIONS(11402), 1, + anon_sym_COLON, + [232327] = 2, + ACTIONS(7929), 1, + sym_comment, + ACTIONS(11404), 1, + anon_sym_LF, + [232334] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8024), 1, - anon_sym_SEMI, - [202312] = 2, + ACTIONS(9460), 1, + anon_sym_COLON, + [232341] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9758), 1, + ACTIONS(11406), 1, anon_sym_RPAREN, - [202319] = 2, + [232348] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5015), 1, + ACTIONS(11408), 1, sym_identifier, - [202326] = 2, + [232355] = 2, + ACTIONS(7929), 1, + sym_comment, + ACTIONS(9878), 1, + anon_sym_LF, + [232362] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9760), 1, - anon_sym_RPAREN, - [202333] = 2, + ACTIONS(10136), 1, + anon_sym_RBRACE, + [232369] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9762), 1, + ACTIONS(11410), 1, anon_sym_RPAREN, - [202340] = 2, + [232376] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9764), 1, - anon_sym_SQUOTE, - [202347] = 2, + ACTIONS(9898), 1, + anon_sym_RBRACE, + [232383] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9766), 1, - anon_sym_LPAREN2, - [202354] = 2, + ACTIONS(9894), 1, + anon_sym_RBRACE, + [232390] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9768), 1, + ACTIONS(11412), 1, anon_sym_RPAREN, - [202361] = 2, + [232397] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9770), 1, - anon_sym_LPAREN2, - [202368] = 2, + ACTIONS(11414), 1, + anon_sym_COLON, + [232404] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9772), 1, + ACTIONS(11416), 1, anon_sym_SEMI, - [202375] = 2, + [232411] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6045), 1, + ACTIONS(11418), 1, anon_sym_SEMI, - [202382] = 2, + [232418] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8475), 1, - anon_sym_SEMI, - [202389] = 2, + ACTIONS(11420), 1, + anon_sym_COLON, + [232425] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9774), 1, + ACTIONS(7085), 1, anon_sym_RPAREN, - [202396] = 2, + [232432] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9776), 1, + ACTIONS(11422), 1, sym_identifier, - [202403] = 2, + [232439] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9573), 1, + anon_sym_SEMI, + [232446] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9778), 1, + ACTIONS(11424), 1, anon_sym_RPAREN, - [202410] = 2, + [232453] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9780), 1, - anon_sym_LPAREN2, - [202417] = 2, + ACTIONS(11426), 1, + aux_sym_preproc_if_token2, + [232460] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9782), 1, + ACTIONS(7083), 1, anon_sym_RPAREN, - [202424] = 2, + [232467] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9784), 1, + ACTIONS(11428), 1, anon_sym_RPAREN, - [202431] = 2, + [232474] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11430), 1, + sym_identifier, + [232481] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9786), 1, + ACTIONS(11432), 1, anon_sym_RPAREN, - [202438] = 2, + [232488] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9788), 1, + ACTIONS(6789), 1, + anon_sym_RBRACE, + [232495] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11434), 1, anon_sym_SEMI, - [202445] = 2, - ACTIONS(7009), 1, + [232502] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(9790), 1, - anon_sym_LF, - [202452] = 2, + ACTIONS(11436), 1, + anon_sym_RPAREN, + [232509] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6043), 1, + ACTIONS(11438), 1, + anon_sym_RPAREN, + [232516] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9663), 1, anon_sym_SEMI, - [202459] = 2, + [232523] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9792), 1, + ACTIONS(11440), 1, anon_sym_RPAREN, - [202466] = 2, + [232530] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9794), 1, - anon_sym_SEMI, - [202473] = 2, + ACTIONS(11442), 1, + anon_sym_STAR, + [232537] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9796), 1, - anon_sym_SEMI, - [202480] = 2, + ACTIONS(11444), 1, + anon_sym_RPAREN, + [232544] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9798), 1, - anon_sym_COLON, - [202487] = 2, + ACTIONS(11446), 1, + anon_sym_RPAREN, + [232551] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9800), 1, + ACTIONS(11448), 1, anon_sym_RPAREN, - [202494] = 2, + [232558] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9802), 1, - anon_sym_while, - [202501] = 2, + ACTIONS(11450), 1, + anon_sym_SEMI, + [232565] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9804), 1, + ACTIONS(6965), 1, anon_sym_RPAREN, - [202508] = 2, + [232572] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9806), 1, - anon_sym_LPAREN2, - [202515] = 2, + ACTIONS(11452), 1, + anon_sym_SEMI, + [232579] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9808), 1, - sym_identifier, - [202522] = 2, - ACTIONS(4000), 1, - anon_sym_LF, - ACTIONS(7009), 1, + ACTIONS(11454), 1, + anon_sym_DOT_DOT_DOT, + [232586] = 2, + ACTIONS(3), 1, sym_comment, - [202529] = 2, + ACTIONS(11456), 1, + anon_sym_DOT_DOT_DOT, + [232593] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9810), 1, - sym_identifier, - [202536] = 2, + ACTIONS(11459), 1, + anon_sym_DOT_DOT_DOT, + [232600] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9812), 1, - anon_sym_RPAREN, - [202543] = 2, + ACTIONS(11462), 1, + anon_sym_DOT_DOT_DOT, + [232607] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9814), 1, - anon_sym_EQ, - [202550] = 2, + ACTIONS(11465), 1, + anon_sym_DOT_DOT_DOT, + [232614] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9816), 1, - sym_raw_string_content, - [202557] = 2, + ACTIONS(11468), 1, + anon_sym_DOT_DOT_DOT, + [232621] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6027), 1, - anon_sym_RPAREN, - [202564] = 2, + ACTIONS(11471), 1, + anon_sym_DOT_DOT_DOT, + [232628] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5791), 1, - anon_sym_RBRACE, - [202571] = 2, + ACTIONS(11474), 1, + anon_sym_DOT_DOT_DOT, + [232635] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9818), 1, - anon_sym_DQUOTE, - [202578] = 2, + ACTIONS(11477), 1, + anon_sym_DOT_DOT_DOT, + [232642] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9820), 1, - anon_sym_SEMI, - [202585] = 2, + ACTIONS(11480), 1, + anon_sym_DOT_DOT_DOT, + [232649] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6019), 1, - anon_sym_SEMI, - [202592] = 2, + ACTIONS(11483), 1, + anon_sym_DOT_DOT_DOT, + [232656] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9822), 1, - sym_identifier, - [202599] = 2, + ACTIONS(11486), 1, + anon_sym_DOT_DOT_DOT, + [232663] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6023), 1, - anon_sym_RPAREN, - [202606] = 2, + ACTIONS(11489), 1, + sym_auto, + [232670] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5966), 1, - anon_sym_RPAREN, - [202613] = 2, - ACTIONS(7009), 1, + ACTIONS(11491), 1, + anon_sym_DOT_DOT_DOT, + [232677] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(9824), 1, - anon_sym_LF, - [202620] = 2, + ACTIONS(11494), 1, + anon_sym_LPAREN2, + [232684] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6219), 1, - anon_sym_SEMI, - [202627] = 2, + ACTIONS(11496), 1, + anon_sym_LPAREN2, + [232691] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9826), 1, - anon_sym_RPAREN, - [202634] = 2, + ACTIONS(7203), 1, + anon_sym_RBRACK, + [232698] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6017), 1, - anon_sym_RPAREN, - [202641] = 2, + ACTIONS(11498), 1, + anon_sym_LPAREN2, + [232705] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9828), 1, - sym_identifier, - [202648] = 2, + ACTIONS(11500), 1, + anon_sym_DOT_DOT_DOT, + [232712] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9830), 1, - aux_sym_preproc_if_token2, - [202655] = 2, + ACTIONS(11503), 1, + anon_sym_RPAREN, + [232719] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6011), 1, + ACTIONS(7081), 1, anon_sym_RPAREN, - [202662] = 2, + [232726] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9832), 1, + ACTIONS(11505), 1, anon_sym_SEMI, - [202669] = 2, + [232733] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6051), 1, - anon_sym_RPAREN, - [202676] = 2, + ACTIONS(11507), 1, + anon_sym_while, + [232740] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6002), 1, - anon_sym_RPAREN, - [202683] = 2, + ACTIONS(11509), 1, + aux_sym_preproc_if_token2, + [232747] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9834), 1, - aux_sym_preproc_if_token2, - [202690] = 2, + ACTIONS(11511), 1, + anon_sym_LPAREN2, + [232754] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6221), 1, - anon_sym_SEMI, - [202697] = 2, + ACTIONS(11513), 1, + aux_sym_preproc_if_token2, + [232761] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9836), 1, + ACTIONS(11515), 1, anon_sym_DQUOTE, - [202704] = 2, + [232768] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6223), 1, - anon_sym_SEMI, - [202711] = 2, + ACTIONS(11517), 1, + sym_identifier, + [232775] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9838), 1, + ACTIONS(11519), 1, anon_sym_SEMI, - [202718] = 2, + [232782] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9840), 1, - anon_sym_SEMI, - [202725] = 2, + ACTIONS(11521), 1, + anon_sym_EQ, + [232789] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9842), 1, - anon_sym_SEMI, - [202732] = 2, + ACTIONS(11523), 1, + sym_raw_string_content, + [232796] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9844), 1, + ACTIONS(6961), 1, anon_sym_RPAREN, - [202739] = 2, + [232803] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9846), 1, - anon_sym_RPAREN, - [202746] = 2, + ACTIONS(4267), 1, + anon_sym_SEMI, + [232810] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9848), 1, - anon_sym_SEMI, - [202753] = 2, + ACTIONS(11525), 1, + anon_sym_RPAREN, + [232817] = 2, + ACTIONS(7929), 1, + sym_comment, + ACTIONS(11527), 1, + anon_sym_LF, + [232824] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9850), 1, + ACTIONS(6991), 1, anon_sym_SEMI, - [202760] = 2, + [232831] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9852), 1, - aux_sym_preproc_if_token2, - [202767] = 2, + ACTIONS(11529), 1, + anon_sym_RPAREN, + [232838] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6225), 1, - anon_sym_SEMI, - [202774] = 2, + ACTIONS(11531), 1, + anon_sym_COMMA, + [232845] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9854), 1, - aux_sym_preproc_if_token2, - [202781] = 2, - ACTIONS(7009), 1, + ACTIONS(6955), 1, + anon_sym_RPAREN, + [232852] = 2, + ACTIONS(7929), 1, sym_comment, - ACTIONS(9856), 1, + ACTIONS(11533), 1, anon_sym_LF, - [202788] = 2, + [232859] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9858), 1, - anon_sym_COLON, - [202795] = 2, + ACTIONS(6953), 1, + anon_sym_RPAREN, + [232866] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9860), 1, - sym_auto, - [202802] = 2, + ACTIONS(6989), 1, + anon_sym_SEMI, + [232873] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3743), 1, - anon_sym_SEMI, - [202809] = 2, + ACTIONS(11535), 1, + aux_sym_preproc_if_token2, + [232880] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9862), 1, + ACTIONS(6987), 1, anon_sym_SEMI, - [202816] = 2, + [232887] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8305), 1, - anon_sym_COLON, - [202823] = 2, + ACTIONS(11537), 1, + aux_sym_preproc_if_token2, + [232894] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9864), 1, - anon_sym_SEMI, - [202830] = 2, + ACTIONS(11539), 1, + sym_auto, + [232901] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8581), 1, + ACTIONS(11541), 1, anon_sym_SEMI, - [202837] = 2, + [232908] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9866), 1, - sym_identifier, - [202844] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9868), 1, + ACTIONS(11543), 1, anon_sym_RPAREN, - [202851] = 2, + [232915] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9870), 1, + ACTIONS(11545), 1, anon_sym_SEMI, - [202858] = 2, + [232922] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9872), 1, - anon_sym_RPAREN, - [202865] = 2, + ACTIONS(11547), 1, + anon_sym_SEMI, + [232929] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5880), 1, - anon_sym_RBRACE, - [202872] = 2, + ACTIONS(6985), 1, + anon_sym_SEMI, + [232936] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8729), 1, - anon_sym_RBRACE, - [202879] = 2, + ACTIONS(11549), 1, + aux_sym_preproc_if_token2, + [232943] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8677), 1, - anon_sym_RBRACE, - [202886] = 2, + ACTIONS(11551), 1, + anon_sym_COLON, + [232950] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9874), 1, + ACTIONS(11553), 1, aux_sym_preproc_if_token2, - [202893] = 2, + [232957] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9876), 1, - anon_sym_DOT_DOT_DOT, - [202900] = 2, + ACTIONS(11555), 1, + anon_sym_SEMI, + [232964] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8102), 1, - anon_sym_SEMI, - [202907] = 2, + ACTIONS(11557), 1, + anon_sym_RPAREN, + [232971] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9879), 1, - sym_identifier, - [202914] = 2, + ACTIONS(6949), 1, + anon_sym_RPAREN, + [232978] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4725), 1, - sym_identifier, - [202921] = 2, + ACTIONS(11559), 1, + anon_sym_LPAREN2, + [232985] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9881), 1, - anon_sym_RPAREN, - [202928] = 2, + ACTIONS(11561), 1, + anon_sym_SEMI, + [232992] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9883), 1, - anon_sym_SQUOTE, - [202935] = 2, + ACTIONS(6947), 1, + anon_sym_RPAREN, + [232999] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9885), 1, - anon_sym_LPAREN2, - [202942] = 2, + ACTIONS(11563), 1, + anon_sym_while, + [233006] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9887), 1, - anon_sym_SEMI, - [202949] = 2, + ACTIONS(11565), 1, + anon_sym_LPAREN2, + [233013] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6053), 1, + ACTIONS(11567), 1, anon_sym_SEMI, - [202956] = 2, + [233020] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9889), 1, + ACTIONS(11569), 1, sym_identifier, - [202963] = 2, + [233027] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9891), 1, - sym_identifier, - [202970] = 2, + ACTIONS(11571), 1, + anon_sym_EQ, + [233034] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9893), 1, - sym_identifier, - [202977] = 2, + ACTIONS(11573), 1, + sym_raw_string_content, + [233041] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9895), 1, - sym_identifier, - [202984] = 2, + ACTIONS(11575), 1, + anon_sym_SEMI, + [233048] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9897), 1, + ACTIONS(7071), 1, anon_sym_RPAREN, - [202991] = 2, + [233055] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9899), 1, - anon_sym_RPAREN, - [202998] = 2, + ACTIONS(7069), 1, + anon_sym_SEMI, + [233062] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9901), 1, - anon_sym_RPAREN, - [203005] = 2, + ACTIONS(11577), 1, + anon_sym_COMMA, + [233069] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9903), 1, - anon_sym_RPAREN, - [203012] = 2, - ACTIONS(7009), 1, + ACTIONS(11579), 1, + sym_raw_string_delimiter, + [233076] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(9905), 1, - anon_sym_LF, - [203019] = 2, - ACTIONS(7009), 1, + ACTIONS(8629), 1, + anon_sym_RPAREN, + [233083] = 2, + ACTIONS(7929), 1, sym_comment, - ACTIONS(8840), 1, + ACTIONS(11581), 1, anon_sym_LF, - [203026] = 2, + [233090] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6055), 1, + ACTIONS(6983), 1, anon_sym_SEMI, - [203033] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9907), 1, - aux_sym_preproc_if_token2, - [203040] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9909), 1, - anon_sym_STAR, - [203047] = 2, + [233097] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9911), 1, + ACTIONS(11583), 1, anon_sym_SEMI, - [203054] = 2, + [233104] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9913), 1, + ACTIONS(6981), 1, anon_sym_SEMI, - [203061] = 2, + [233111] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9915), 1, - anon_sym_COLON, - [203068] = 2, + ACTIONS(11585), 1, + anon_sym_SEMI, + [233118] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9917), 1, - anon_sym_DOT_DOT_DOT, - [203075] = 2, + ACTIONS(11587), 1, + anon_sym_SEMI, + [233125] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6169), 1, + ACTIONS(11589), 1, anon_sym_RPAREN, - [203082] = 2, + [233132] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6217), 1, - anon_sym_RPAREN, - [203089] = 2, + ACTIONS(7067), 1, + anon_sym_SEMI, + [233139] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6161), 1, - anon_sym_SEMI, - [203096] = 2, + ACTIONS(11591), 1, + aux_sym_preproc_if_token2, + [233146] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9919), 1, - anon_sym_DOT_DOT_DOT, - [203103] = 2, + ACTIONS(6979), 1, + anon_sym_SEMI, + [233153] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9922), 1, - anon_sym_DOT_DOT_DOT, - [203110] = 2, + ACTIONS(11593), 1, + anon_sym_COLON, + [233160] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9925), 1, - anon_sym_DOT_DOT_DOT, - [203117] = 2, + ACTIONS(11595), 1, + anon_sym_RPAREN, + [233167] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9928), 1, - anon_sym_DOT_DOT_DOT, - [203124] = 2, + ACTIONS(11597), 1, + aux_sym_preproc_if_token2, + [233174] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9931), 1, - anon_sym_DOT_DOT_DOT, - [203131] = 2, + ACTIONS(11599), 1, + sym_identifier, + [233181] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9934), 1, - anon_sym_DOT_DOT_DOT, - [203138] = 2, + ACTIONS(11601), 1, + aux_sym_preproc_if_token2, + [233188] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9937), 1, - anon_sym_DOT_DOT_DOT, - [203145] = 2, + ACTIONS(11603), 1, + anon_sym_LPAREN2, + [233195] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9940), 1, + ACTIONS(11605), 1, anon_sym_SEMI, - [203152] = 2, + [233202] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9942), 1, - anon_sym_DOT_DOT_DOT, - [203159] = 2, + ACTIONS(7065), 1, + anon_sym_RPAREN, + [233209] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9945), 1, - anon_sym_DOT_DOT_DOT, - [203166] = 2, + ACTIONS(11607), 1, + anon_sym_while, + [233216] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9948), 1, - anon_sym_DOT_DOT_DOT, - [203173] = 2, + ACTIONS(11609), 1, + anon_sym_LPAREN2, + [233223] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9951), 1, - anon_sym_RPAREN, - [203180] = 2, + ACTIONS(11611), 1, + anon_sym_SEMI, + [233230] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9953), 1, - anon_sym_DOT_DOT_DOT, - [203187] = 2, + ACTIONS(11613), 1, + anon_sym_DQUOTE, + [233237] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6082), 1, - anon_sym_RPAREN, - [203194] = 2, + ACTIONS(11615), 1, + anon_sym_EQ, + [233244] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9956), 1, - anon_sym_DOT_DOT_DOT, - [203201] = 2, + ACTIONS(11617), 1, + sym_raw_string_content, + [233251] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9959), 1, + ACTIONS(11619), 1, anon_sym_SEMI, - [203208] = 2, + [233258] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9961), 1, - aux_sym_preproc_if_token2, - [203215] = 2, + ACTIONS(11621), 1, + anon_sym_SEMI, + [233265] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9963), 1, - anon_sym_DQUOTE, - [203222] = 2, + ACTIONS(11623), 1, + anon_sym_COMMA, + [233272] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9965), 1, + ACTIONS(11625), 1, anon_sym_SEMI, - [203229] = 2, + [233279] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6092), 1, + ACTIONS(11627), 1, anon_sym_RPAREN, - [203236] = 2, + [233286] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9967), 1, + ACTIONS(7049), 1, anon_sym_RPAREN, - [203243] = 2, + [233293] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9969), 1, - anon_sym_RPAREN, - [203250] = 2, + ACTIONS(6971), 1, + anon_sym_SEMI, + [233300] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9971), 1, + ACTIONS(11629), 1, anon_sym_RPAREN, - [203257] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9973), 1, - aux_sym_preproc_if_token2, - [203264] = 2, + [233307] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6094), 1, - anon_sym_RPAREN, - [203271] = 2, + ACTIONS(6967), 1, + anon_sym_SEMI, + [233314] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6096), 1, + ACTIONS(11631), 1, anon_sym_RPAREN, - [203278] = 2, + [233321] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9975), 1, + ACTIONS(11633), 1, anon_sym_SEMI, - [203285] = 2, + [233328] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9977), 1, + ACTIONS(11635), 1, anon_sym_RPAREN, - [203292] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9165), 1, - anon_sym_RBRACE, - [203299] = 2, + [233335] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9979), 1, - aux_sym_preproc_if_token2, - [203306] = 2, + ACTIONS(11637), 1, + anon_sym_COLON, + [233342] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9981), 1, - aux_sym_preproc_if_token2, - [203313] = 2, + ACTIONS(11639), 1, + sym_identifier, + [233349] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9983), 1, + ACTIONS(6963), 1, anon_sym_SEMI, - [203320] = 2, + [233356] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6102), 1, - anon_sym_RPAREN, - [203327] = 2, + ACTIONS(11641), 1, + anon_sym_COLON, + [233363] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9985), 1, - aux_sym_preproc_if_token2, - [203334] = 2, + ACTIONS(11643), 1, + anon_sym_LPAREN2, + [233370] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6104), 1, - anon_sym_RPAREN, - [203341] = 2, + ACTIONS(11645), 1, + anon_sym_LPAREN2, + [233377] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9987), 1, + ACTIONS(11647), 1, anon_sym_SEMI, - [203348] = 2, + [233384] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9989), 1, - anon_sym_SEMI, - [203355] = 2, + ACTIONS(11649), 1, + anon_sym_LPAREN2, + [233391] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9991), 1, + ACTIONS(11651), 1, anon_sym_SEMI, - [203362] = 2, + [233398] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9993), 1, - sym_identifier, - [203369] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9995), 1, - aux_sym_preproc_if_token2, - [203376] = 2, + ACTIONS(11653), 1, + anon_sym_SEMI, + [233405] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9997), 1, - aux_sym_preproc_if_token2, - [203383] = 2, + ACTIONS(11655), 1, + anon_sym_while, + [233412] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9999), 1, + ACTIONS(11657), 1, anon_sym_LPAREN2, - [203390] = 2, + [233419] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10001), 1, - anon_sym_LPAREN2, - [203397] = 2, + ACTIONS(11659), 1, + anon_sym_SEMI, + [233426] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10003), 1, - anon_sym_LPAREN2, - [203404] = 2, - ACTIONS(7009), 1, - sym_comment, - ACTIONS(10005), 1, - anon_sym_LF, - [203411] = 2, + ACTIONS(11661), 1, + aux_sym_preproc_if_token2, + [233433] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10007), 1, - anon_sym_RPAREN, - [203418] = 2, + ACTIONS(11663), 1, + anon_sym_EQ, + [233440] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10009), 1, - anon_sym_LPAREN2, - [203425] = 2, + ACTIONS(11665), 1, + sym_raw_string_content, + [233447] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10011), 1, - anon_sym_DQUOTE, - [203432] = 2, + ACTIONS(11667), 1, + anon_sym_COMMA, + [233454] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10013), 1, - anon_sym_while, - [203439] = 2, + ACTIONS(11669), 1, + anon_sym_RPAREN, + [233461] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10015), 1, - anon_sym_SEMI, - [203446] = 2, - ACTIONS(3), 1, + ACTIONS(11671), 1, + aux_sym_preproc_if_token2, + [233468] = 2, + ACTIONS(7929), 1, sym_comment, - ACTIONS(10017), 1, - anon_sym_LPAREN2, - [203453] = 2, + ACTIONS(11673), 1, + anon_sym_LF, + [233475] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10019), 1, - anon_sym_SEMI, - [203460] = 2, + ACTIONS(11675), 1, + anon_sym_RPAREN, + [233482] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10021), 1, - anon_sym_RPAREN, - [203467] = 2, + ACTIONS(11677), 1, + anon_sym_COLON, + [233489] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6086), 1, + ACTIONS(7077), 1, anon_sym_RPAREN, - [203474] = 2, + [233496] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10023), 1, - anon_sym_EQ, - [203481] = 2, + ACTIONS(11679), 1, + anon_sym_LPAREN2, + [233503] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10025), 1, - sym_raw_string_content, - [203488] = 2, + ACTIONS(11681), 1, + sym_identifier, + [233510] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10027), 1, + ACTIONS(11683), 1, anon_sym_SEMI, - [203495] = 2, + [233517] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10029), 1, + ACTIONS(7039), 1, anon_sym_SEMI, - [203502] = 2, + [233524] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6084), 1, - anon_sym_SEMI, - [203509] = 2, + ACTIONS(11685), 1, + anon_sym_EQ, + [233531] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10031), 1, - anon_sym_RPAREN, - [203516] = 2, + ACTIONS(7099), 1, + anon_sym_SEMI, + [233538] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10033), 1, - anon_sym_RPAREN, - [203523] = 2, + ACTIONS(7223), 1, + anon_sym_RBRACK, + [233545] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10035), 1, + ACTIONS(11687), 1, anon_sym_SEMI, - [203530] = 2, + [233552] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10037), 1, - anon_sym_SEMI, - [203537] = 2, + ACTIONS(11689), 1, + sym_auto, + [233559] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10039), 1, - anon_sym_SEMI, - [203544] = 2, + ACTIONS(11691), 1, + anon_sym_LPAREN2, + [233566] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10041), 1, - anon_sym_RPAREN, - [203551] = 2, + ACTIONS(11693), 1, + anon_sym_STAR, + [233573] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10043), 1, + ACTIONS(11695), 1, anon_sym_SEMI, - [203558] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10045), 1, - aux_sym_preproc_if_token2, - [203565] = 2, + [233580] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10047), 1, - aux_sym_preproc_if_token2, - [203572] = 2, + ACTIONS(11697), 1, + sym_raw_string_content, + [233587] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10049), 1, - anon_sym_LPAREN2, - [203579] = 2, + ACTIONS(11699), 1, + anon_sym_EQ, + [233594] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7575), 1, - anon_sym_RPAREN, - [203586] = 2, - ACTIONS(7009), 1, - sym_comment, - ACTIONS(10051), 1, - anon_sym_LF, - [203593] = 2, + ACTIONS(11701), 1, + anon_sym_SEMI, + [233601] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10053), 1, - anon_sym_while, - [203600] = 2, + ACTIONS(11703), 1, + anon_sym_SEMI, + [233608] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6374), 1, - anon_sym_RBRACK, - [203607] = 2, + ACTIONS(11705), 1, + anon_sym_SEMI, + [233615] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10055), 1, + ACTIONS(11707), 1, anon_sym_LPAREN2, - [203614] = 2, + [233622] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10057), 1, - sym_raw_string_delimiter, - [203621] = 2, + ACTIONS(11709), 1, + anon_sym_LPAREN2, + [233629] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10059), 1, + ACTIONS(11711), 1, anon_sym_EQ, - [203628] = 2, + [233636] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10061), 1, - sym_raw_string_content, - [203635] = 2, + ACTIONS(9176), 1, + anon_sym_SEMI, + [233643] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10063), 1, - sym_auto, - [203642] = 2, + ACTIONS(11713), 1, + anon_sym_SEMI, + [233650] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6067), 1, - anon_sym_SEMI, - [203649] = 2, + ACTIONS(11715), 1, + anon_sym_EQ, + [233657] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10065), 1, - anon_sym_SEMI, - [203656] = 2, + ACTIONS(11717), 1, + anon_sym_DQUOTE, + [233664] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10067), 1, + ACTIONS(9507), 1, anon_sym_SEMI, - [203663] = 2, + [233671] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8391), 1, + ACTIONS(11719), 1, anon_sym_SEMI, - [203670] = 2, + [233678] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10069), 1, + ACTIONS(11721), 1, anon_sym_RPAREN, - [203677] = 2, + [233685] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10071), 1, - anon_sym_RPAREN, - [203684] = 2, + ACTIONS(11723), 1, + anon_sym_SEMI, + [233692] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10073), 1, + ACTIONS(11725), 1, anon_sym_RPAREN, - [203691] = 2, + [233699] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10075), 1, - anon_sym_LBRACE, - [203698] = 2, + ACTIONS(6853), 1, + anon_sym_RBRACE, + [233706] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10077), 1, - anon_sym_LPAREN2, - [203705] = 2, + ACTIONS(9858), 1, + anon_sym_COLON_COLON, + [233713] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5894), 1, - anon_sym_RBRACE, - [203712] = 2, + ACTIONS(11727), 1, + aux_sym_preproc_if_token2, + [233720] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10079), 1, - anon_sym_COLON, - [203719] = 2, + ACTIONS(11729), 1, + anon_sym_SEMI, + [233727] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10081), 1, - anon_sym_while, - [203726] = 2, + ACTIONS(8545), 1, + anon_sym_RPAREN, + [233734] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10083), 1, + ACTIONS(11731), 1, anon_sym_LPAREN2, - [203733] = 2, + [233741] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10085), 1, + ACTIONS(11733), 1, anon_sym_LPAREN2, - [203740] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10087), 1, - anon_sym_SEMI, - [203747] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10089), 1, - anon_sym_EQ, - [203754] = 2, + [233748] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10091), 1, - sym_raw_string_content, - [203761] = 2, + ACTIONS(11735), 1, + sym_identifier, + [233755] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10093), 1, + ACTIONS(11737), 1, anon_sym_RPAREN, - [203768] = 2, + [233762] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6059), 1, - anon_sym_SEMI, - [203775] = 2, + ACTIONS(11739), 1, + sym_raw_string_delimiter, + [233769] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10095), 1, - anon_sym_LPAREN2, - [203782] = 2, + ACTIONS(11741), 1, + anon_sym_COLON, + [233776] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10097), 1, - anon_sym_RPAREN, - [203789] = 2, + ACTIONS(10412), 1, + anon_sym_RBRACE, + [233783] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10099), 1, - aux_sym_preproc_if_token2, - [203796] = 2, - ACTIONS(7009), 1, + ACTIONS(8750), 1, + sym_identifier, + [233790] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(10101), 1, - anon_sym_LF, - [203803] = 2, + ACTIONS(11743), 1, + anon_sym_LBRACE, + [233797] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10103), 1, + ACTIONS(11745), 1, anon_sym_RPAREN, - [203810] = 2, + [233804] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10105), 1, - anon_sym_STAR, - [203817] = 2, + ACTIONS(11747), 1, + aux_sym_preproc_if_token2, + [233811] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8060), 1, + ACTIONS(11749), 1, anon_sym_SEMI, - [203824] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10107), 1, - anon_sym_LPAREN2, - [203831] = 2, + [233818] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4925), 1, + ACTIONS(11751), 1, sym_identifier, - [203838] = 2, + [233825] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10109), 1, + ACTIONS(11753), 1, anon_sym_SEMI, - [203845] = 2, + [233832] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10111), 1, - anon_sym_LPAREN2, - [203852] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10113), 1, + ACTIONS(11755), 1, anon_sym_SQUOTE, - [203859] = 2, + [233839] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10115), 1, - anon_sym_EQ, - [203866] = 2, + ACTIONS(6939), 1, + anon_sym_SEMI, + [233846] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10117), 1, + ACTIONS(11757), 1, sym_raw_string_content, - [203873] = 2, + [233853] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10119), 1, + ACTIONS(11759), 1, anon_sym_SEMI, - [203880] = 2, + [233860] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6004), 1, + ACTIONS(11761), 1, anon_sym_SEMI, - [203887] = 2, + [233867] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10121), 1, - anon_sym_LPAREN2, - [203894] = 2, + ACTIONS(11763), 1, + anon_sym_SEMI, + [233874] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10123), 1, - anon_sym_RPAREN, - [203901] = 2, + ACTIONS(11765), 1, + aux_sym_preproc_if_token2, + [233881] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10125), 1, - sym_identifier, - [203908] = 2, + ACTIONS(11767), 1, + anon_sym_SEMI, + [233888] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10127), 1, + ACTIONS(11769), 1, anon_sym_LPAREN2, - [203915] = 2, + [233895] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8032), 1, + ACTIONS(11771), 1, anon_sym_SEMI, - [203922] = 2, + [233902] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10129), 1, - anon_sym_EQ, - [203929] = 2, + ACTIONS(6937), 1, + anon_sym_SEMI, + [233909] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10131), 1, - anon_sym_RPAREN, - [203936] = 2, + ACTIONS(11773), 1, + anon_sym_while, + [233916] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10133), 1, - anon_sym_EQ, - [203943] = 2, + ACTIONS(6995), 1, + anon_sym_RPAREN, + [233923] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10135), 1, - anon_sym_RPAREN, - [203950] = 2, + ACTIONS(11775), 1, + anon_sym_RBRACK, + [233930] = 2, + ACTIONS(7929), 1, + sym_comment, + ACTIONS(11777), 1, + anon_sym_LF, + [233937] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10137), 1, + ACTIONS(11779), 1, anon_sym_RPAREN, - [203957] = 2, + [233944] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10139), 1, + ACTIONS(11781), 1, anon_sym_RPAREN, - [203964] = 2, + [233951] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10141), 1, - aux_sym_preproc_if_token2, - [203971] = 2, + ACTIONS(11783), 1, + anon_sym_SEMI, + [233958] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10143), 1, - anon_sym_LPAREN2, - [203978] = 2, + ACTIONS(11785), 1, + anon_sym_SEMI, + [233965] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5161), 1, + ACTIONS(11787), 1, anon_sym_RPAREN, - [203985] = 2, - ACTIONS(7009), 1, + [233972] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(10145), 1, - anon_sym_LF, - [203992] = 2, - ACTIONS(7009), 1, + ACTIONS(11789), 1, + sym_identifier, + [233979] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(8942), 1, - anon_sym_LF, - [203999] = 2, + ACTIONS(6935), 1, + anon_sym_RPAREN, + [233986] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6000), 1, - anon_sym_SEMI, - [204006] = 2, + ACTIONS(6933), 1, + anon_sym_RPAREN, + [233993] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10147), 1, - anon_sym_LPAREN2, - [204013] = 2, + ACTIONS(11791), 1, + anon_sym_SEMI, + [234000] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10149), 1, + ACTIONS(11793), 1, aux_sym_preproc_if_token2, - [204020] = 2, + [234007] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10151), 1, - sym_raw_string_content, - [204027] = 2, + ACTIONS(11795), 1, + anon_sym_RPAREN, + [234014] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10153), 1, + ACTIONS(9142), 1, anon_sym_SEMI, - [204034] = 2, + [234021] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10155), 1, - anon_sym_LPAREN2, - [204041] = 2, + ACTIONS(11797), 1, + anon_sym_RPAREN, + [234028] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10157), 1, - anon_sym_LPAREN2, - [204048] = 2, + ACTIONS(6662), 1, + anon_sym_SEMI, + [234035] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10159), 1, - sym_identifier, - [204055] = 2, + ACTIONS(11799), 1, + anon_sym_STAR, + [234042] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10161), 1, + ACTIONS(11801), 1, sym_identifier, - [204062] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10163), 1, - anon_sym_COLON, - [204069] = 2, + [234049] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6098), 1, - anon_sym_RPAREN, - [204076] = 2, + ACTIONS(11803), 1, + sym_identifier, + [234056] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10165), 1, + ACTIONS(11805), 1, anon_sym_RPAREN, - [204083] = 2, + [234063] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6130), 1, + ACTIONS(11807), 1, anon_sym_RPAREN, - [204090] = 2, + [234070] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10167), 1, - anon_sym_SEMI, - [204097] = 2, + ACTIONS(5485), 1, + sym_identifier, + [234077] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10169), 1, - aux_sym_preproc_if_token2, - [204104] = 2, + ACTIONS(11809), 1, + anon_sym_SQUOTE, + [234084] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10171), 1, - anon_sym_DQUOTE, - [204111] = 2, + ACTIONS(11811), 1, + anon_sym_SEMI, + [234091] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10173), 1, + ACTIONS(6927), 1, anon_sym_SEMI, - [204118] = 2, + [234098] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6126), 1, - anon_sym_RPAREN, - [204125] = 2, + ACTIONS(11813), 1, + aux_sym_preproc_if_token2, + [234105] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10175), 1, - anon_sym_RPAREN, - [204132] = 2, + ACTIONS(11815), 1, + aux_sym_preproc_if_token2, + [234112] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6116), 1, - anon_sym_RPAREN, - [204139] = 2, + ACTIONS(11817), 1, + anon_sym_SEMI, + [234119] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10177), 1, - sym_identifier, - [204146] = 2, + ACTIONS(11819), 1, + anon_sym_SEMI, + [234126] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6110), 1, - anon_sym_RPAREN, - [204153] = 2, + ACTIONS(11821), 1, + anon_sym_DQUOTE, + [234133] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8609), 1, + ACTIONS(11823), 1, anon_sym_SEMI, - [204160] = 2, + [234140] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6037), 1, - anon_sym_SEMI, - [204167] = 2, + ACTIONS(11825), 1, + sym_identifier, + [234147] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10179), 1, - sym_raw_string_content, - [204174] = 2, + ACTIONS(11827), 1, + sym_identifier, + [234154] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10181), 1, + ACTIONS(11829), 1, anon_sym_SEMI, - [204181] = 2, + [234161] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10183), 1, - anon_sym_SEMI, - [204188] = 2, + ACTIONS(11831), 1, + anon_sym_LPAREN2, + [234168] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10185), 1, - anon_sym_SEMI, - [204195] = 2, + ACTIONS(11833), 1, + sym_identifier, + [234175] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10187), 1, + ACTIONS(11835), 1, aux_sym_preproc_if_token2, - [204202] = 2, + [234182] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10189), 1, - aux_sym_preproc_if_token2, - [204209] = 2, + ACTIONS(11837), 1, + anon_sym_RPAREN, + [234189] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10191), 1, - anon_sym_DQUOTE, - [204216] = 2, + ACTIONS(6915), 1, + anon_sym_RPAREN, + [234196] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10193), 1, - anon_sym_SEMI, - [204223] = 2, + ACTIONS(11839), 1, + anon_sym_RPAREN, + [234203] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10195), 1, - anon_sym_SEMI, - [204230] = 2, + ACTIONS(11841), 1, + anon_sym_RPAREN, + [234210] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6100), 1, + ACTIONS(11843), 1, anon_sym_RPAREN, - [204237] = 2, + [234217] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8505), 1, - anon_sym_SEMI, - [204244] = 2, + ACTIONS(5940), 1, + anon_sym_RPAREN, + [234224] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10197), 1, + ACTIONS(6905), 1, anon_sym_SEMI, - [204251] = 2, + [234231] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6033), 1, - anon_sym_RPAREN, - [204258] = 2, + ACTIONS(11845), 1, + aux_sym_preproc_if_token2, + [234238] = 2, + ACTIONS(7929), 1, + sym_comment, + ACTIONS(11847), 1, + anon_sym_LF, + [234245] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10199), 1, - anon_sym_SEMI, - [204265] = 2, + ACTIONS(6903), 1, + anon_sym_RPAREN, + [234252] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10201), 1, + ACTIONS(11849), 1, anon_sym_RPAREN, - [204272] = 2, + [234259] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6031), 1, + ACTIONS(6901), 1, anon_sym_RPAREN, - [204279] = 2, + [234266] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10203), 1, - anon_sym_SEMI, - [204286] = 2, + ACTIONS(11851), 1, + anon_sym_LPAREN2, + [234273] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10205), 1, - anon_sym_while, - [204293] = 2, + ACTIONS(11853), 1, + anon_sym_LPAREN2, + [234280] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6029), 1, - anon_sym_RPAREN, - [204300] = 2, + ACTIONS(11855), 1, + anon_sym_LPAREN2, + [234287] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10207), 1, - aux_sym_preproc_if_token2, - [204307] = 2, + ACTIONS(11857), 1, + sym_identifier, + [234294] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10209), 1, - aux_sym_preproc_if_token2, - [204314] = 2, + ACTIONS(11859), 1, + sym_identifier, + [234301] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6039), 1, + ACTIONS(11861), 1, + sym_identifier, + [234308] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11863), 1, + sym_identifier, + [234315] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11865), 1, anon_sym_SEMI, - [204321] = 2, + [234322] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8856), 1, - anon_sym_RPAREN, - [204328] = 2, + ACTIONS(11867), 1, + sym_identifier, + [234329] = 2, + ACTIONS(7929), 1, + sym_comment, + ACTIONS(10578), 1, + anon_sym_LF, + [234336] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10211), 1, + ACTIONS(11869), 1, anon_sym_DQUOTE, - [204335] = 2, + [234343] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10213), 1, + ACTIONS(6899), 1, anon_sym_SEMI, - [204342] = 2, + [234350] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10215), 1, - anon_sym_SEMI, - [204349] = 2, + ACTIONS(11871), 1, + sym_raw_string_content, + [234357] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10217), 1, + ACTIONS(11873), 1, anon_sym_RPAREN, - [204356] = 2, + [234364] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10219), 1, - anon_sym_SEMI, - [204363] = 2, + ACTIONS(5043), 1, + anon_sym_COLON_COLON, + [234371] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10221), 1, + ACTIONS(11875), 1, anon_sym_RPAREN, - [204370] = 2, + [234378] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10223), 1, - anon_sym_SEMI, - [204377] = 2, + ACTIONS(11877), 1, + anon_sym_RPAREN, + [234385] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10225), 1, - anon_sym_SEMI, - [204384] = 2, + ACTIONS(11879), 1, + anon_sym_RPAREN, + [234392] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10227), 1, - anon_sym_SEMI, - [204391] = 2, + ACTIONS(11881), 1, + anon_sym_LPAREN2, + [234399] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10229), 1, - anon_sym_SEMI, - [204398] = 2, + ACTIONS(11883), 1, + sym_identifier, + [234406] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10231), 1, - anon_sym_SEMI, - [204405] = 2, + ACTIONS(11885), 1, + sym_identifier, + [234413] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10233), 1, + ACTIONS(11887), 1, aux_sym_preproc_if_token2, - [204412] = 2, + [234420] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10235), 1, - anon_sym_SEMI, - [204419] = 2, + ACTIONS(5938), 1, + anon_sym_RPAREN, + [234427] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10237), 1, - anon_sym_SEMI, - [204426] = 2, + ACTIONS(11889), 1, + sym_identifier, + [234434] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10239), 1, - anon_sym_SEMI, - [204433] = 2, + ACTIONS(11891), 1, + aux_sym_preproc_if_token2, + [234441] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10241), 1, + ACTIONS(6875), 1, anon_sym_SEMI, - [204440] = 2, + [234448] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10243), 1, - anon_sym_LPAREN2, - [204447] = 2, + ACTIONS(11893), 1, + sym_raw_string_content, + [234455] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10245), 1, - aux_sym_preproc_if_token2, - [204454] = 2, + ACTIONS(11895), 1, + sym_identifier, + [234462] = 2, + ACTIONS(7929), 1, + sym_comment, + ACTIONS(11897), 1, + anon_sym_LF, + [234469] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10247), 1, - anon_sym_RPAREN, - [204461] = 2, - ACTIONS(7009), 1, + ACTIONS(11899), 1, + anon_sym_SEMI, + [234476] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(10249), 1, - anon_sym_LF, - [204468] = 2, + ACTIONS(11901), 1, + anon_sym_STAR, + [234483] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6368), 1, - anon_sym_RBRACK, - [204475] = 2, + ACTIONS(11903), 1, + anon_sym_LPAREN2, + [234490] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11905), 1, + sym_identifier, + [234497] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10251), 1, + ACTIONS(11907), 1, aux_sym_preproc_if_token2, - [204482] = 2, + [234504] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10253), 1, - sym_auto, - [204489] = 2, + ACTIONS(11909), 1, + ts_builtin_sym_end, + [234511] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10255), 1, - aux_sym_preproc_if_token2, - [204496] = 2, + ACTIONS(11911), 1, + anon_sym_LPAREN2, + [234518] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10257), 1, - anon_sym_SEMI, - [204503] = 2, + ACTIONS(11913), 1, + sym_identifier, + [234525] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10259), 1, - anon_sym_SEMI, - [204510] = 2, + ACTIONS(11915), 1, + sym_identifier, + [234532] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10261), 1, - anon_sym_SQUOTE, - [204517] = 2, + ACTIONS(6873), 1, + anon_sym_SEMI, + [234539] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10263), 1, - anon_sym_RPAREN, - [204524] = 2, + ACTIONS(11917), 1, + sym_raw_string_content, + [234546] = 2, + ACTIONS(7929), 1, + sym_comment, + ACTIONS(10592), 1, + anon_sym_LF, + [234553] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10265), 1, - anon_sym_RPAREN, - [204531] = 2, + ACTIONS(11919), 1, + anon_sym_LPAREN2, + [234560] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10267), 1, + ACTIONS(6881), 1, anon_sym_RPAREN, - [204538] = 2, + [234567] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5906), 1, - anon_sym_RBRACE, - [204545] = 2, + ACTIONS(10524), 1, + anon_sym_SEMI, + [234574] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10269), 1, - aux_sym_preproc_if_token2, - [204552] = 2, + ACTIONS(11921), 1, + anon_sym_LPAREN2, + [234581] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10271), 1, - anon_sym_COLON, - [204559] = 2, + ACTIONS(11923), 1, + sym_identifier, + [234588] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8637), 1, - anon_sym_RBRACE, - [204566] = 2, + ACTIONS(11925), 1, + sym_identifier, + [234595] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10273), 1, + ACTIONS(11927), 1, anon_sym_RPAREN, - [204573] = 2, + [234602] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8830), 1, - anon_sym_COLON_COLON, - [204580] = 2, + ACTIONS(11929), 1, + sym_identifier, + [234609] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10275), 1, - anon_sym_RPAREN, - [204587] = 2, + ACTIONS(11931), 1, + sym_raw_string_content, + [234616] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10277), 1, - anon_sym_LPAREN2, - [204594] = 2, + ACTIONS(11933), 1, + anon_sym_RBRACK, + [234623] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10279), 1, + ACTIONS(11935), 1, anon_sym_LPAREN2, - [204601] = 2, + [234630] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10281), 1, + ACTIONS(11937), 1, sym_identifier, - [204608] = 2, + [234637] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10283), 1, - anon_sym_COLON, - [204615] = 2, + ACTIONS(11939), 1, + sym_identifier, + [234644] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10285), 1, - sym_identifier, - [204622] = 2, + ACTIONS(11941), 1, + anon_sym_LPAREN2, + [234651] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10287), 1, - anon_sym_SEMI, - [204629] = 2, + ACTIONS(11943), 1, + sym_identifier, + [234658] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10289), 1, + ACTIONS(11945), 1, sym_identifier, - [204636] = 2, + [234665] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10291), 1, - aux_sym_preproc_if_token2, - [204643] = 2, + ACTIONS(11947), 1, + anon_sym_LPAREN2, + [234672] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10293), 1, - sym_raw_string_content, - [204650] = 2, + ACTIONS(11949), 1, + sym_identifier, + [234679] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10295), 1, - anon_sym_SEMI, - [204657] = 2, - ACTIONS(7009), 1, + ACTIONS(11951), 1, + sym_identifier, + [234686] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(10297), 1, - anon_sym_LF, - [204664] = 2, + ACTIONS(11953), 1, + sym_identifier, + [234693] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10299), 1, + ACTIONS(11955), 1, anon_sym_LPAREN2, - [204671] = 2, + [234700] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10301), 1, + ACTIONS(11957), 1, anon_sym_LPAREN2, - [204678] = 2, + [234707] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10303), 1, - sym_identifier, - [204685] = 2, + ACTIONS(11959), 1, + anon_sym_LPAREN2, + [234714] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5789), 1, - anon_sym_SEMI, - [204692] = 2, + ACTIONS(11961), 1, + anon_sym_LPAREN2, + [234721] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10305), 1, - sym_identifier, - [204699] = 2, + ACTIONS(11963), 1, + anon_sym_RPAREN, + [234728] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8088), 1, + ACTIONS(11965), 1, anon_sym_SEMI, - [204706] = 2, + [234735] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10307), 1, - sym_raw_string_content, - [204713] = 2, + ACTIONS(11967), 1, + anon_sym_SEMI, + [234742] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10309), 1, - sym_identifier, - [204720] = 2, + ACTIONS(11969), 1, + anon_sym_LPAREN2, + [234749] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10311), 1, - sym_identifier, - [204727] = 2, + ACTIONS(11971), 1, + anon_sym_LPAREN2, + [234756] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10313), 1, + ACTIONS(11973), 1, anon_sym_LPAREN2, - [204734] = 2, + [234763] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10315), 1, + ACTIONS(11975), 1, anon_sym_LPAREN2, - [204741] = 2, + [234770] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10317), 1, - sym_identifier, - [204748] = 2, - ACTIONS(7009), 1, - sym_comment, - ACTIONS(8944), 1, - anon_sym_LF, - [204755] = 2, + ACTIONS(11977), 1, + anon_sym_LPAREN2, + [234777] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10319), 1, + ACTIONS(11979), 1, sym_identifier, - [204762] = 2, + [234784] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5055), 1, - sym_identifier, - [204769] = 2, + ACTIONS(11981), 1, + anon_sym_SEMI, + [234791] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10321), 1, - sym_raw_string_content, - [204776] = 2, + ACTIONS(11983), 1, + anon_sym_LPAREN2, + [234798] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10323), 1, - anon_sym_SQUOTE, - [204783] = 2, + ACTIONS(11985), 1, + anon_sym_LPAREN2, + [234805] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10325), 1, + ACTIONS(11987), 1, anon_sym_LPAREN2, - [204790] = 2, + [234812] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10327), 1, - sym_identifier, - [204797] = 2, + ACTIONS(11989), 1, + anon_sym_SEMI, + [234819] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11991), 1, + anon_sym_LPAREN2, + [234826] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10329), 1, + ACTIONS(11993), 1, anon_sym_SEMI, - [204804] = 2, + [234833] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10331), 1, - sym_identifier, - [204811] = 2, + ACTIONS(11995), 1, + anon_sym_LPAREN2, + [234840] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10333), 1, - sym_raw_string_content, - [204818] = 2, + ACTIONS(11997), 1, + anon_sym_LPAREN2, + [234847] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10335), 1, + ACTIONS(11999), 1, anon_sym_LPAREN2, - [204825] = 2, + [234854] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10337), 1, - sym_identifier, - [204832] = 2, + ACTIONS(12001), 1, + anon_sym_COLON, + [234861] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10339), 1, - sym_identifier, - [204839] = 2, + ACTIONS(12003), 1, + anon_sym_SEMI, + [234868] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10341), 1, - sym_identifier, - [204846] = 2, + ACTIONS(12005), 1, + anon_sym_SEMI, + [234875] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10343), 1, + ACTIONS(12007), 1, anon_sym_LPAREN2, - [204853] = 2, + [234882] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10345), 1, + ACTIONS(12009), 1, anon_sym_LPAREN2, - [204860] = 2, + [234889] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6006), 1, - anon_sym_SEMI, - [204867] = 2, - ACTIONS(7009), 1, - sym_comment, - ACTIONS(10347), 1, - anon_sym_LF, - [204874] = 2, + ACTIONS(12011), 1, + anon_sym_STAR, + [234896] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7745), 1, - sym_identifier, - [204881] = 2, + ACTIONS(10170), 1, + anon_sym_RPAREN, + [234903] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10349), 1, + ACTIONS(12013), 1, anon_sym_LPAREN2, - [204888] = 2, + [234910] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5075), 1, + ACTIONS(7019), 1, anon_sym_RPAREN, - [204895] = 2, + [234917] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12015), 1, + anon_sym_COLON, + [234924] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10351), 1, + ACTIONS(12017), 1, anon_sym_LPAREN2, - [204902] = 2, + [234931] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10353), 1, + ACTIONS(12019), 1, + sym_identifier, + [234938] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12021), 1, + sym_identifier, + [234945] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7017), 1, anon_sym_RPAREN, - [204909] = 2, + [234952] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12023), 1, + sym_identifier, + [234959] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10355), 1, + ACTIONS(12025), 1, anon_sym_LPAREN2, - [204916] = 2, + [234966] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10357), 1, - anon_sym_RPAREN, - [204923] = 2, + ACTIONS(12027), 1, + anon_sym_LPAREN2, + [234973] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10359), 1, + ACTIONS(12029), 1, anon_sym_LPAREN2, - [204930] = 2, + [234980] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10361), 1, - sym_identifier, + ACTIONS(12031), 1, + anon_sym_LPAREN2, + [234987] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12033), 1, + anon_sym_LPAREN2, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(1859)] = 0, - [SMALL_STATE(1860)] = 71, - [SMALL_STATE(1861)] = 142, - [SMALL_STATE(1862)] = 221, - [SMALL_STATE(1863)] = 292, - [SMALL_STATE(1864)] = 363, - [SMALL_STATE(1865)] = 488, - [SMALL_STATE(1866)] = 567, - [SMALL_STATE(1867)] = 646, - [SMALL_STATE(1868)] = 717, - [SMALL_STATE(1869)] = 788, - [SMALL_STATE(1870)] = 859, - [SMALL_STATE(1871)] = 930, - [SMALL_STATE(1872)] = 1001, - [SMALL_STATE(1873)] = 1072, - [SMALL_STATE(1874)] = 1143, - [SMALL_STATE(1875)] = 1214, - [SMALL_STATE(1876)] = 1285, - [SMALL_STATE(1877)] = 1356, - [SMALL_STATE(1878)] = 1427, - [SMALL_STATE(1879)] = 1502, - [SMALL_STATE(1880)] = 1573, - [SMALL_STATE(1881)] = 1644, - [SMALL_STATE(1882)] = 1721, - [SMALL_STATE(1883)] = 1792, - [SMALL_STATE(1884)] = 1863, - [SMALL_STATE(1885)] = 1934, - [SMALL_STATE(1886)] = 2011, - [SMALL_STATE(1887)] = 2082, - [SMALL_STATE(1888)] = 2153, - [SMALL_STATE(1889)] = 2229, - [SMALL_STATE(1890)] = 2307, - [SMALL_STATE(1891)] = 2385, - [SMALL_STATE(1892)] = 2455, - [SMALL_STATE(1893)] = 2531, - [SMALL_STATE(1894)] = 2609, - [SMALL_STATE(1895)] = 2679, - [SMALL_STATE(1896)] = 2749, - [SMALL_STATE(1897)] = 2839, - [SMALL_STATE(1898)] = 2909, - [SMALL_STATE(1899)] = 2993, - [SMALL_STATE(1900)] = 3071, - [SMALL_STATE(1901)] = 3149, - [SMALL_STATE(1902)] = 3226, - [SMALL_STATE(1903)] = 3307, - [SMALL_STATE(1904)] = 3384, - [SMALL_STATE(1905)] = 3465, - [SMALL_STATE(1906)] = 3538, - [SMALL_STATE(1907)] = 3607, - [SMALL_STATE(1908)] = 3734, - [SMALL_STATE(1909)] = 3803, - [SMALL_STATE(1910)] = 3884, - [SMALL_STATE(1911)] = 3952, - [SMALL_STATE(1912)] = 4032, - [SMALL_STATE(1913)] = 4116, - [SMALL_STATE(1914)] = 4240, - [SMALL_STATE(1915)] = 4324, - [SMALL_STATE(1916)] = 4396, - [SMALL_STATE(1917)] = 4476, - [SMALL_STATE(1918)] = 4560, - [SMALL_STATE(1919)] = 4628, - [SMALL_STATE(1920)] = 4696, - [SMALL_STATE(1921)] = 4770, - [SMALL_STATE(1922)] = 4846, - [SMALL_STATE(1923)] = 4922, - [SMALL_STATE(1924)] = 4990, - [SMALL_STATE(1925)] = 5064, - [SMALL_STATE(1926)] = 5144, - [SMALL_STATE(1927)] = 5228, - [SMALL_STATE(1928)] = 5352, - [SMALL_STATE(1929)] = 5473, - [SMALL_STATE(1930)] = 5590, - [SMALL_STATE(1931)] = 5663, - [SMALL_STATE(1932)] = 5730, - [SMALL_STATE(1933)] = 5847, - [SMALL_STATE(1934)] = 5916, - [SMALL_STATE(1935)] = 5983, - [SMALL_STATE(1936)] = 6100, - [SMALL_STATE(1937)] = 6217, - [SMALL_STATE(1938)] = 6284, - [SMALL_STATE(1939)] = 6351, - [SMALL_STATE(1940)] = 6418, - [SMALL_STATE(1941)] = 6485, - [SMALL_STATE(1942)] = 6552, - [SMALL_STATE(1943)] = 6623, - [SMALL_STATE(1944)] = 6694, - [SMALL_STATE(1945)] = 6761, - [SMALL_STATE(1946)] = 6878, - [SMALL_STATE(1947)] = 6953, - [SMALL_STATE(1948)] = 7070, - [SMALL_STATE(1949)] = 7141, - [SMALL_STATE(1950)] = 7212, - [SMALL_STATE(1951)] = 7283, - [SMALL_STATE(1952)] = 7350, - [SMALL_STATE(1953)] = 7417, - [SMALL_STATE(1954)] = 7534, - [SMALL_STATE(1955)] = 7603, - [SMALL_STATE(1956)] = 7676, - [SMALL_STATE(1957)] = 7743, - [SMALL_STATE(1958)] = 7812, - [SMALL_STATE(1959)] = 7929, - [SMALL_STATE(1960)] = 8046, - [SMALL_STATE(1961)] = 8113, - [SMALL_STATE(1962)] = 8230, - [SMALL_STATE(1963)] = 8347, - [SMALL_STATE(1964)] = 8414, - [SMALL_STATE(1965)] = 8480, - [SMALL_STATE(1966)] = 8558, - [SMALL_STATE(1967)] = 8630, - [SMALL_STATE(1968)] = 8696, - [SMALL_STATE(1969)] = 8778, - [SMALL_STATE(1970)] = 8860, - [SMALL_STATE(1971)] = 8928, - [SMALL_STATE(1972)] = 9010, - [SMALL_STATE(1973)] = 9088, - [SMALL_STATE(1974)] = 9158, - [SMALL_STATE(1975)] = 9232, - [SMALL_STATE(1976)] = 9306, - [SMALL_STATE(1977)] = 9380, - [SMALL_STATE(1978)] = 9448, - [SMALL_STATE(1979)] = 9518, - [SMALL_STATE(1980)] = 9586, - [SMALL_STATE(1981)] = 9654, - [SMALL_STATE(1982)] = 9732, - [SMALL_STATE(1983)] = 9798, - [SMALL_STATE(1984)] = 9880, - [SMALL_STATE(1985)] = 9957, - [SMALL_STATE(1986)] = 10034, - [SMALL_STATE(1987)] = 10103, - [SMALL_STATE(1988)] = 10176, - [SMALL_STATE(1989)] = 10247, - [SMALL_STATE(1990)] = 10316, - [SMALL_STATE(1991)] = 10381, - [SMALL_STATE(1992)] = 10446, - [SMALL_STATE(1993)] = 10563, - [SMALL_STATE(1994)] = 10680, - [SMALL_STATE(1995)] = 10749, - [SMALL_STATE(1996)] = 10816, - [SMALL_STATE(1997)] = 10881, - [SMALL_STATE(1998)] = 10958, - [SMALL_STATE(1999)] = 11031, - [SMALL_STATE(2000)] = 11100, - [SMALL_STATE(2001)] = 11165, - [SMALL_STATE(2002)] = 11234, - [SMALL_STATE(2003)] = 11305, - [SMALL_STATE(2004)] = 11370, - [SMALL_STATE(2005)] = 11435, - [SMALL_STATE(2006)] = 11506, - [SMALL_STATE(2007)] = 11575, - [SMALL_STATE(2008)] = 11644, - [SMALL_STATE(2009)] = 11713, - [SMALL_STATE(2010)] = 11782, - [SMALL_STATE(2011)] = 11851, - [SMALL_STATE(2012)] = 11915, - [SMALL_STATE(2013)] = 12031, - [SMALL_STATE(2014)] = 12095, - [SMALL_STATE(2015)] = 12171, - [SMALL_STATE(2016)] = 12235, - [SMALL_STATE(2017)] = 12299, - [SMALL_STATE(2018)] = 12363, - [SMALL_STATE(2019)] = 12479, - [SMALL_STATE(2020)] = 12543, - [SMALL_STATE(2021)] = 12613, - [SMALL_STATE(2022)] = 12729, - [SMALL_STATE(2023)] = 12801, - [SMALL_STATE(2024)] = 12881, - [SMALL_STATE(2025)] = 12945, - [SMALL_STATE(2026)] = 13009, - [SMALL_STATE(2027)] = 13073, - [SMALL_STATE(2028)] = 13137, - [SMALL_STATE(2029)] = 13201, - [SMALL_STATE(2030)] = 13317, - [SMALL_STATE(2031)] = 13381, - [SMALL_STATE(2032)] = 13445, - [SMALL_STATE(2033)] = 13511, - [SMALL_STATE(2034)] = 13575, - [SMALL_STATE(2035)] = 13639, - [SMALL_STATE(2036)] = 13703, - [SMALL_STATE(2037)] = 13773, - [SMALL_STATE(2038)] = 13837, - [SMALL_STATE(2039)] = 13901, - [SMALL_STATE(2040)] = 13965, - [SMALL_STATE(2041)] = 14081, - [SMALL_STATE(2042)] = 14145, - [SMALL_STATE(2043)] = 14209, - [SMALL_STATE(2044)] = 14273, - [SMALL_STATE(2045)] = 14343, - [SMALL_STATE(2046)] = 14407, - [SMALL_STATE(2047)] = 14471, - [SMALL_STATE(2048)] = 14535, - [SMALL_STATE(2049)] = 14599, - [SMALL_STATE(2050)] = 14663, - [SMALL_STATE(2051)] = 14727, - [SMALL_STATE(2052)] = 14791, - [SMALL_STATE(2053)] = 14855, - [SMALL_STATE(2054)] = 14919, - [SMALL_STATE(2055)] = 15035, - [SMALL_STATE(2056)] = 15099, - [SMALL_STATE(2057)] = 15163, - [SMALL_STATE(2058)] = 15227, - [SMALL_STATE(2059)] = 15343, - [SMALL_STATE(2060)] = 15407, - [SMALL_STATE(2061)] = 15471, - [SMALL_STATE(2062)] = 15535, - [SMALL_STATE(2063)] = 15607, - [SMALL_STATE(2064)] = 15675, - [SMALL_STATE(2065)] = 15743, - [SMALL_STATE(2066)] = 15859, - [SMALL_STATE(2067)] = 15923, - [SMALL_STATE(2068)] = 15987, - [SMALL_STATE(2069)] = 16051, - [SMALL_STATE(2070)] = 16115, - [SMALL_STATE(2071)] = 16179, - [SMALL_STATE(2072)] = 16243, - [SMALL_STATE(2073)] = 16307, - [SMALL_STATE(2074)] = 16371, - [SMALL_STATE(2075)] = 16451, - [SMALL_STATE(2076)] = 16515, - [SMALL_STATE(2077)] = 16631, - [SMALL_STATE(2078)] = 16695, - [SMALL_STATE(2079)] = 16759, - [SMALL_STATE(2080)] = 16823, - [SMALL_STATE(2081)] = 16887, - [SMALL_STATE(2082)] = 16951, - [SMALL_STATE(2083)] = 17015, - [SMALL_STATE(2084)] = 17079, - [SMALL_STATE(2085)] = 17143, - [SMALL_STATE(2086)] = 17207, - [SMALL_STATE(2087)] = 17287, - [SMALL_STATE(2088)] = 17353, - [SMALL_STATE(2089)] = 17417, - [SMALL_STATE(2090)] = 17481, - [SMALL_STATE(2091)] = 17551, - [SMALL_STATE(2092)] = 17615, - [SMALL_STATE(2093)] = 17679, - [SMALL_STATE(2094)] = 17743, - [SMALL_STATE(2095)] = 17807, - [SMALL_STATE(2096)] = 17871, - [SMALL_STATE(2097)] = 17941, - [SMALL_STATE(2098)] = 18005, - [SMALL_STATE(2099)] = 18069, - [SMALL_STATE(2100)] = 18133, - [SMALL_STATE(2101)] = 18197, - [SMALL_STATE(2102)] = 18261, - [SMALL_STATE(2103)] = 18337, - [SMALL_STATE(2104)] = 18401, - [SMALL_STATE(2105)] = 18465, - [SMALL_STATE(2106)] = 18541, - [SMALL_STATE(2107)] = 18605, - [SMALL_STATE(2108)] = 18669, - [SMALL_STATE(2109)] = 18733, - [SMALL_STATE(2110)] = 18797, - [SMALL_STATE(2111)] = 18861, - [SMALL_STATE(2112)] = 18925, - [SMALL_STATE(2113)] = 18989, - [SMALL_STATE(2114)] = 19053, - [SMALL_STATE(2115)] = 19169, - [SMALL_STATE(2116)] = 19233, - [SMALL_STATE(2117)] = 19297, - [SMALL_STATE(2118)] = 19361, - [SMALL_STATE(2119)] = 19425, - [SMALL_STATE(2120)] = 19489, - [SMALL_STATE(2121)] = 19559, - [SMALL_STATE(2122)] = 19623, - [SMALL_STATE(2123)] = 19687, - [SMALL_STATE(2124)] = 19751, - [SMALL_STATE(2125)] = 19815, - [SMALL_STATE(2126)] = 19931, - [SMALL_STATE(2127)] = 19995, - [SMALL_STATE(2128)] = 20059, - [SMALL_STATE(2129)] = 20123, - [SMALL_STATE(2130)] = 20187, - [SMALL_STATE(2131)] = 20259, - [SMALL_STATE(2132)] = 20323, - [SMALL_STATE(2133)] = 20387, - [SMALL_STATE(2134)] = 20451, - [SMALL_STATE(2135)] = 20531, - [SMALL_STATE(2136)] = 20595, - [SMALL_STATE(2137)] = 20659, - [SMALL_STATE(2138)] = 20723, - [SMALL_STATE(2139)] = 20787, - [SMALL_STATE(2140)] = 20903, - [SMALL_STATE(2141)] = 20967, - [SMALL_STATE(2142)] = 21031, - [SMALL_STATE(2143)] = 21095, - [SMALL_STATE(2144)] = 21159, - [SMALL_STATE(2145)] = 21275, - [SMALL_STATE(2146)] = 21339, - [SMALL_STATE(2147)] = 21403, - [SMALL_STATE(2148)] = 21467, - [SMALL_STATE(2149)] = 21531, - [SMALL_STATE(2150)] = 21595, - [SMALL_STATE(2151)] = 21659, - [SMALL_STATE(2152)] = 21729, - [SMALL_STATE(2153)] = 21793, - [SMALL_STATE(2154)] = 21859, - [SMALL_STATE(2155)] = 21925, - [SMALL_STATE(2156)] = 21991, - [SMALL_STATE(2157)] = 22055, - [SMALL_STATE(2158)] = 22119, - [SMALL_STATE(2159)] = 22183, - [SMALL_STATE(2160)] = 22247, - [SMALL_STATE(2161)] = 22311, - [SMALL_STATE(2162)] = 22427, - [SMALL_STATE(2163)] = 22491, - [SMALL_STATE(2164)] = 22554, - [SMALL_STATE(2165)] = 22617, - [SMALL_STATE(2166)] = 22688, - [SMALL_STATE(2167)] = 22759, - [SMALL_STATE(2168)] = 22828, - [SMALL_STATE(2169)] = 22897, - [SMALL_STATE(2170)] = 22960, - [SMALL_STATE(2171)] = 23023, - [SMALL_STATE(2172)] = 23088, - [SMALL_STATE(2173)] = 23153, - [SMALL_STATE(2174)] = 23266, - [SMALL_STATE(2175)] = 23343, - [SMALL_STATE(2176)] = 23420, - [SMALL_STATE(2177)] = 23483, - [SMALL_STATE(2178)] = 23546, - [SMALL_STATE(2179)] = 23613, - [SMALL_STATE(2180)] = 23726, - [SMALL_STATE(2181)] = 23793, - [SMALL_STATE(2182)] = 23872, - [SMALL_STATE(2183)] = 23935, - [SMALL_STATE(2184)] = 24048, - [SMALL_STATE(2185)] = 24119, - [SMALL_STATE(2186)] = 24182, - [SMALL_STATE(2187)] = 24245, - [SMALL_STATE(2188)] = 24308, - [SMALL_STATE(2189)] = 24371, - [SMALL_STATE(2190)] = 24450, - [SMALL_STATE(2191)] = 24529, - [SMALL_STATE(2192)] = 24642, - [SMALL_STATE(2193)] = 24707, - [SMALL_STATE(2194)] = 24770, - [SMALL_STATE(2195)] = 24833, - [SMALL_STATE(2196)] = 24900, - [SMALL_STATE(2197)] = 24963, - [SMALL_STATE(2198)] = 25026, - [SMALL_STATE(2199)] = 25091, - [SMALL_STATE(2200)] = 25166, - [SMALL_STATE(2201)] = 25229, - [SMALL_STATE(2202)] = 25294, - [SMALL_STATE(2203)] = 25357, - [SMALL_STATE(2204)] = 25436, - [SMALL_STATE(2205)] = 25501, - [SMALL_STATE(2206)] = 25564, - [SMALL_STATE(2207)] = 25633, - [SMALL_STATE(2208)] = 25697, - [SMALL_STATE(2209)] = 25759, - [SMALL_STATE(2210)] = 25821, - [SMALL_STATE(2211)] = 25883, - [SMALL_STATE(2212)] = 25945, - [SMALL_STATE(2213)] = 26007, - [SMALL_STATE(2214)] = 26073, - [SMALL_STATE(2215)] = 26135, - [SMALL_STATE(2216)] = 26197, - [SMALL_STATE(2217)] = 26265, - [SMALL_STATE(2218)] = 26327, - [SMALL_STATE(2219)] = 26389, - [SMALL_STATE(2220)] = 26451, - [SMALL_STATE(2221)] = 26513, - [SMALL_STATE(2222)] = 26575, - [SMALL_STATE(2223)] = 26637, - [SMALL_STATE(2224)] = 26703, - [SMALL_STATE(2225)] = 26765, - [SMALL_STATE(2226)] = 26827, - [SMALL_STATE(2227)] = 26889, - [SMALL_STATE(2228)] = 26951, - [SMALL_STATE(2229)] = 27013, - [SMALL_STATE(2230)] = 27075, - [SMALL_STATE(2231)] = 27137, - [SMALL_STATE(2232)] = 27199, - [SMALL_STATE(2233)] = 27261, - [SMALL_STATE(2234)] = 27323, - [SMALL_STATE(2235)] = 27385, - [SMALL_STATE(2236)] = 27453, - [SMALL_STATE(2237)] = 27515, - [SMALL_STATE(2238)] = 27577, - [SMALL_STATE(2239)] = 27639, - [SMALL_STATE(2240)] = 27701, - [SMALL_STATE(2241)] = 27763, - [SMALL_STATE(2242)] = 27825, - [SMALL_STATE(2243)] = 27891, - [SMALL_STATE(2244)] = 27953, - [SMALL_STATE(2245)] = 28019, - [SMALL_STATE(2246)] = 28081, - [SMALL_STATE(2247)] = 28143, - [SMALL_STATE(2248)] = 28207, - [SMALL_STATE(2249)] = 28269, - [SMALL_STATE(2250)] = 28331, - [SMALL_STATE(2251)] = 28393, - [SMALL_STATE(2252)] = 28455, - [SMALL_STATE(2253)] = 28525, - [SMALL_STATE(2254)] = 28587, - [SMALL_STATE(2255)] = 28659, - [SMALL_STATE(2256)] = 28723, - [SMALL_STATE(2257)] = 28785, - [SMALL_STATE(2258)] = 28847, - [SMALL_STATE(2259)] = 28921, - [SMALL_STATE(2260)] = 28983, - [SMALL_STATE(2261)] = 29045, - [SMALL_STATE(2262)] = 29107, - [SMALL_STATE(2263)] = 29169, - [SMALL_STATE(2264)] = 29231, - [SMALL_STATE(2265)] = 29293, - [SMALL_STATE(2266)] = 29361, - [SMALL_STATE(2267)] = 29425, - [SMALL_STATE(2268)] = 29487, - [SMALL_STATE(2269)] = 29549, - [SMALL_STATE(2270)] = 29611, - [SMALL_STATE(2271)] = 29675, - [SMALL_STATE(2272)] = 29737, - [SMALL_STATE(2273)] = 29799, - [SMALL_STATE(2274)] = 29861, - [SMALL_STATE(2275)] = 29923, - [SMALL_STATE(2276)] = 29985, - [SMALL_STATE(2277)] = 30047, - [SMALL_STATE(2278)] = 30109, - [SMALL_STATE(2279)] = 30171, - [SMALL_STATE(2280)] = 30241, - [SMALL_STATE(2281)] = 30303, - [SMALL_STATE(2282)] = 30365, - [SMALL_STATE(2283)] = 30427, - [SMALL_STATE(2284)] = 30501, - [SMALL_STATE(2285)] = 30563, - [SMALL_STATE(2286)] = 30625, - [SMALL_STATE(2287)] = 30687, - [SMALL_STATE(2288)] = 30749, - [SMALL_STATE(2289)] = 30813, - [SMALL_STATE(2290)] = 30875, - [SMALL_STATE(2291)] = 30937, - [SMALL_STATE(2292)] = 30999, - [SMALL_STATE(2293)] = 31061, - [SMALL_STATE(2294)] = 31129, - [SMALL_STATE(2295)] = 31191, - [SMALL_STATE(2296)] = 31253, - [SMALL_STATE(2297)] = 31315, - [SMALL_STATE(2298)] = 31377, - [SMALL_STATE(2299)] = 31441, - [SMALL_STATE(2300)] = 31503, - [SMALL_STATE(2301)] = 31565, - [SMALL_STATE(2302)] = 31627, - [SMALL_STATE(2303)] = 31689, - [SMALL_STATE(2304)] = 31751, - [SMALL_STATE(2305)] = 31813, - [SMALL_STATE(2306)] = 31875, - [SMALL_STATE(2307)] = 31953, - [SMALL_STATE(2308)] = 32015, - [SMALL_STATE(2309)] = 32077, - [SMALL_STATE(2310)] = 32139, - [SMALL_STATE(2311)] = 32201, - [SMALL_STATE(2312)] = 32263, - [SMALL_STATE(2313)] = 32325, - [SMALL_STATE(2314)] = 32387, - [SMALL_STATE(2315)] = 32449, - [SMALL_STATE(2316)] = 32511, - [SMALL_STATE(2317)] = 32573, - [SMALL_STATE(2318)] = 32635, - [SMALL_STATE(2319)] = 32697, - [SMALL_STATE(2320)] = 32759, - [SMALL_STATE(2321)] = 32821, - [SMALL_STATE(2322)] = 32883, - [SMALL_STATE(2323)] = 32953, - [SMALL_STATE(2324)] = 33015, - [SMALL_STATE(2325)] = 33077, - [SMALL_STATE(2326)] = 33139, - [SMALL_STATE(2327)] = 33201, - [SMALL_STATE(2328)] = 33263, - [SMALL_STATE(2329)] = 33325, - [SMALL_STATE(2330)] = 33387, - [SMALL_STATE(2331)] = 33449, - [SMALL_STATE(2332)] = 33511, - [SMALL_STATE(2333)] = 33573, - [SMALL_STATE(2334)] = 33635, - [SMALL_STATE(2335)] = 33697, - [SMALL_STATE(2336)] = 33759, - [SMALL_STATE(2337)] = 33821, - [SMALL_STATE(2338)] = 33883, - [SMALL_STATE(2339)] = 33945, - [SMALL_STATE(2340)] = 34015, - [SMALL_STATE(2341)] = 34077, - [SMALL_STATE(2342)] = 34139, - [SMALL_STATE(2343)] = 34201, - [SMALL_STATE(2344)] = 34263, - [SMALL_STATE(2345)] = 34325, - [SMALL_STATE(2346)] = 34387, - [SMALL_STATE(2347)] = 34449, - [SMALL_STATE(2348)] = 34511, - [SMALL_STATE(2349)] = 34573, - [SMALL_STATE(2350)] = 34635, - [SMALL_STATE(2351)] = 34697, - [SMALL_STATE(2352)] = 34759, - [SMALL_STATE(2353)] = 34821, - [SMALL_STATE(2354)] = 34883, - [SMALL_STATE(2355)] = 34945, - [SMALL_STATE(2356)] = 35007, - [SMALL_STATE(2357)] = 35073, - [SMALL_STATE(2358)] = 35135, - [SMALL_STATE(2359)] = 35197, - [SMALL_STATE(2360)] = 35267, - [SMALL_STATE(2361)] = 35335, - [SMALL_STATE(2362)] = 35397, - [SMALL_STATE(2363)] = 35459, - [SMALL_STATE(2364)] = 35521, - [SMALL_STATE(2365)] = 35583, - [SMALL_STATE(2366)] = 35649, - [SMALL_STATE(2367)] = 35711, - [SMALL_STATE(2368)] = 35773, - [SMALL_STATE(2369)] = 35835, - [SMALL_STATE(2370)] = 35897, - [SMALL_STATE(2371)] = 35959, - [SMALL_STATE(2372)] = 36021, - [SMALL_STATE(2373)] = 36083, - [SMALL_STATE(2374)] = 36145, - [SMALL_STATE(2375)] = 36207, - [SMALL_STATE(2376)] = 36283, - [SMALL_STATE(2377)] = 36345, - [SMALL_STATE(2378)] = 36407, - [SMALL_STATE(2379)] = 36469, - [SMALL_STATE(2380)] = 36531, - [SMALL_STATE(2381)] = 36593, - [SMALL_STATE(2382)] = 36659, - [SMALL_STATE(2383)] = 36721, - [SMALL_STATE(2384)] = 36783, - [SMALL_STATE(2385)] = 36845, - [SMALL_STATE(2386)] = 36907, - [SMALL_STATE(2387)] = 36969, - [SMALL_STATE(2388)] = 37031, - [SMALL_STATE(2389)] = 37093, - [SMALL_STATE(2390)] = 37155, - [SMALL_STATE(2391)] = 37223, - [SMALL_STATE(2392)] = 37285, - [SMALL_STATE(2393)] = 37347, - [SMALL_STATE(2394)] = 37409, - [SMALL_STATE(2395)] = 37471, - [SMALL_STATE(2396)] = 37533, - [SMALL_STATE(2397)] = 37595, - [SMALL_STATE(2398)] = 37657, - [SMALL_STATE(2399)] = 37719, - [SMALL_STATE(2400)] = 37781, - [SMALL_STATE(2401)] = 37843, - [SMALL_STATE(2402)] = 37905, - [SMALL_STATE(2403)] = 37967, - [SMALL_STATE(2404)] = 38029, - [SMALL_STATE(2405)] = 38091, - [SMALL_STATE(2406)] = 38157, - [SMALL_STATE(2407)] = 38219, - [SMALL_STATE(2408)] = 38285, - [SMALL_STATE(2409)] = 38347, - [SMALL_STATE(2410)] = 38409, - [SMALL_STATE(2411)] = 38471, - [SMALL_STATE(2412)] = 38533, - [SMALL_STATE(2413)] = 38595, - [SMALL_STATE(2414)] = 38657, - [SMALL_STATE(2415)] = 38719, - [SMALL_STATE(2416)] = 38781, - [SMALL_STATE(2417)] = 38843, - [SMALL_STATE(2418)] = 38905, - [SMALL_STATE(2419)] = 38967, - [SMALL_STATE(2420)] = 39029, - [SMALL_STATE(2421)] = 39091, - [SMALL_STATE(2422)] = 39153, - [SMALL_STATE(2423)] = 39215, - [SMALL_STATE(2424)] = 39277, - [SMALL_STATE(2425)] = 39339, - [SMALL_STATE(2426)] = 39401, - [SMALL_STATE(2427)] = 39463, - [SMALL_STATE(2428)] = 39525, - [SMALL_STATE(2429)] = 39587, - [SMALL_STATE(2430)] = 39649, - [SMALL_STATE(2431)] = 39711, - [SMALL_STATE(2432)] = 39773, - [SMALL_STATE(2433)] = 39835, - [SMALL_STATE(2434)] = 39897, - [SMALL_STATE(2435)] = 39959, - [SMALL_STATE(2436)] = 40021, - [SMALL_STATE(2437)] = 40087, - [SMALL_STATE(2438)] = 40149, - [SMALL_STATE(2439)] = 40211, - [SMALL_STATE(2440)] = 40273, - [SMALL_STATE(2441)] = 40335, - [SMALL_STATE(2442)] = 40397, - [SMALL_STATE(2443)] = 40459, - [SMALL_STATE(2444)] = 40521, - [SMALL_STATE(2445)] = 40582, - [SMALL_STATE(2446)] = 40643, - [SMALL_STATE(2447)] = 40750, - [SMALL_STATE(2448)] = 40811, - [SMALL_STATE(2449)] = 40872, - [SMALL_STATE(2450)] = 40933, - [SMALL_STATE(2451)] = 40994, - [SMALL_STATE(2452)] = 41055, - [SMALL_STATE(2453)] = 41160, - [SMALL_STATE(2454)] = 41221, - [SMALL_STATE(2455)] = 41282, - [SMALL_STATE(2456)] = 41347, - [SMALL_STATE(2457)] = 41420, - [SMALL_STATE(2458)] = 41481, - [SMALL_STATE(2459)] = 41542, - [SMALL_STATE(2460)] = 41621, - [SMALL_STATE(2461)] = 41682, - [SMALL_STATE(2462)] = 41743, - [SMALL_STATE(2463)] = 41808, - [SMALL_STATE(2464)] = 41869, - [SMALL_STATE(2465)] = 41936, - [SMALL_STATE(2466)] = 42041, - [SMALL_STATE(2467)] = 42102, - [SMALL_STATE(2468)] = 42163, - [SMALL_STATE(2469)] = 42224, - [SMALL_STATE(2470)] = 42285, - [SMALL_STATE(2471)] = 42346, - [SMALL_STATE(2472)] = 42407, - [SMALL_STATE(2473)] = 42468, - [SMALL_STATE(2474)] = 42529, - [SMALL_STATE(2475)] = 42590, - [SMALL_STATE(2476)] = 42651, - [SMALL_STATE(2477)] = 42718, - [SMALL_STATE(2478)] = 42779, - [SMALL_STATE(2479)] = 42840, - [SMALL_STATE(2480)] = 42915, - [SMALL_STATE(2481)] = 42976, - [SMALL_STATE(2482)] = 43037, - [SMALL_STATE(2483)] = 43100, - [SMALL_STATE(2484)] = 43175, - [SMALL_STATE(2485)] = 43236, - [SMALL_STATE(2486)] = 43311, - [SMALL_STATE(2487)] = 43374, - [SMALL_STATE(2488)] = 43449, - [SMALL_STATE(2489)] = 43522, - [SMALL_STATE(2490)] = 43623, - [SMALL_STATE(2491)] = 43720, - [SMALL_STATE(2492)] = 43781, - [SMALL_STATE(2493)] = 43848, - [SMALL_STATE(2494)] = 43941, - [SMALL_STATE(2495)] = 44016, - [SMALL_STATE(2496)] = 44089, - [SMALL_STATE(2497)] = 44162, - [SMALL_STATE(2498)] = 44227, - [SMALL_STATE(2499)] = 44288, - [SMALL_STATE(2500)] = 44397, - [SMALL_STATE(2501)] = 44458, - [SMALL_STATE(2502)] = 44519, - [SMALL_STATE(2503)] = 44580, - [SMALL_STATE(2504)] = 44671, - [SMALL_STATE(2505)] = 44732, - [SMALL_STATE(2506)] = 44819, - [SMALL_STATE(2507)] = 44880, - [SMALL_STATE(2508)] = 44941, - [SMALL_STATE(2509)] = 45026, - [SMALL_STATE(2510)] = 45107, - [SMALL_STATE(2511)] = 45182, - [SMALL_STATE(2512)] = 45243, - [SMALL_STATE(2513)] = 45304, - [SMALL_STATE(2514)] = 45381, - [SMALL_STATE(2515)] = 45442, - [SMALL_STATE(2516)] = 45503, - [SMALL_STATE(2517)] = 45564, - [SMALL_STATE(2518)] = 45643, - [SMALL_STATE(2519)] = 45704, - [SMALL_STATE(2520)] = 45769, - [SMALL_STATE(2521)] = 45830, - [SMALL_STATE(2522)] = 45891, - [SMALL_STATE(2523)] = 45952, - [SMALL_STATE(2524)] = 46031, - [SMALL_STATE(2525)] = 46092, - [SMALL_STATE(2526)] = 46153, - [SMALL_STATE(2527)] = 46226, - [SMALL_STATE(2528)] = 46287, - [SMALL_STATE(2529)] = 46348, - [SMALL_STATE(2530)] = 46409, - [SMALL_STATE(2531)] = 46470, - [SMALL_STATE(2532)] = 46533, - [SMALL_STATE(2533)] = 46594, - [SMALL_STATE(2534)] = 46663, - [SMALL_STATE(2535)] = 46724, - [SMALL_STATE(2536)] = 46787, - [SMALL_STATE(2537)] = 46848, - [SMALL_STATE(2538)] = 46909, - [SMALL_STATE(2539)] = 46970, - [SMALL_STATE(2540)] = 47031, - [SMALL_STATE(2541)] = 47092, - [SMALL_STATE(2542)] = 47153, - [SMALL_STATE(2543)] = 47218, - [SMALL_STATE(2544)] = 47279, - [SMALL_STATE(2545)] = 47340, - [SMALL_STATE(2546)] = 47401, - [SMALL_STATE(2547)] = 47462, - [SMALL_STATE(2548)] = 47523, - [SMALL_STATE(2549)] = 47584, - [SMALL_STATE(2550)] = 47645, - [SMALL_STATE(2551)] = 47706, - [SMALL_STATE(2552)] = 47767, - [SMALL_STATE(2553)] = 47828, - [SMALL_STATE(2554)] = 47889, - [SMALL_STATE(2555)] = 47950, - [SMALL_STATE(2556)] = 48019, - [SMALL_STATE(2557)] = 48082, - [SMALL_STATE(2558)] = 48143, - [SMALL_STATE(2559)] = 48206, - [SMALL_STATE(2560)] = 48275, - [SMALL_STATE(2561)] = 48336, - [SMALL_STATE(2562)] = 48397, - [SMALL_STATE(2563)] = 48458, - [SMALL_STATE(2564)] = 48519, - [SMALL_STATE(2565)] = 48584, - [SMALL_STATE(2566)] = 48649, - [SMALL_STATE(2567)] = 48710, - [SMALL_STATE(2568)] = 48781, - [SMALL_STATE(2569)] = 48856, - [SMALL_STATE(2570)] = 48917, - [SMALL_STATE(2571)] = 48978, - [SMALL_STATE(2572)] = 49039, - [SMALL_STATE(2573)] = 49144, - [SMALL_STATE(2574)] = 49205, - [SMALL_STATE(2575)] = 49266, - [SMALL_STATE(2576)] = 49327, - [SMALL_STATE(2577)] = 49388, - [SMALL_STATE(2578)] = 49449, - [SMALL_STATE(2579)] = 49510, - [SMALL_STATE(2580)] = 49581, - [SMALL_STATE(2581)] = 49648, - [SMALL_STATE(2582)] = 49709, - [SMALL_STATE(2583)] = 49770, - [SMALL_STATE(2584)] = 49843, - [SMALL_STATE(2585)] = 49904, - [SMALL_STATE(2586)] = 49985, - [SMALL_STATE(2587)] = 50046, - [SMALL_STATE(2588)] = 50107, - [SMALL_STATE(2589)] = 50168, - [SMALL_STATE(2590)] = 50229, - [SMALL_STATE(2591)] = 50290, - [SMALL_STATE(2592)] = 50351, - [SMALL_STATE(2593)] = 50412, - [SMALL_STATE(2594)] = 50473, - [SMALL_STATE(2595)] = 50578, - [SMALL_STATE(2596)] = 50639, - [SMALL_STATE(2597)] = 50700, - [SMALL_STATE(2598)] = 50761, - [SMALL_STATE(2599)] = 50822, - [SMALL_STATE(2600)] = 50883, - [SMALL_STATE(2601)] = 50944, - [SMALL_STATE(2602)] = 51017, - [SMALL_STATE(2603)] = 51078, - [SMALL_STATE(2604)] = 51138, - [SMALL_STATE(2605)] = 51202, - [SMALL_STATE(2606)] = 51262, - [SMALL_STATE(2607)] = 51322, - [SMALL_STATE(2608)] = 51382, - [SMALL_STATE(2609)] = 51448, - [SMALL_STATE(2610)] = 51508, - [SMALL_STATE(2611)] = 51568, - [SMALL_STATE(2612)] = 51628, - [SMALL_STATE(2613)] = 51688, - [SMALL_STATE(2614)] = 51748, - [SMALL_STATE(2615)] = 51810, - [SMALL_STATE(2616)] = 51870, - [SMALL_STATE(2617)] = 51932, - [SMALL_STATE(2618)] = 51992, - [SMALL_STATE(2619)] = 52060, - [SMALL_STATE(2620)] = 52120, - [SMALL_STATE(2621)] = 52188, - [SMALL_STATE(2622)] = 52290, - [SMALL_STATE(2623)] = 52350, - [SMALL_STATE(2624)] = 52410, - [SMALL_STATE(2625)] = 52470, - [SMALL_STATE(2626)] = 52572, - [SMALL_STATE(2627)] = 52632, - [SMALL_STATE(2628)] = 52692, - [SMALL_STATE(2629)] = 52794, - [SMALL_STATE(2630)] = 52854, - [SMALL_STATE(2631)] = 52914, - [SMALL_STATE(2632)] = 52984, - [SMALL_STATE(2633)] = 53050, - [SMALL_STATE(2634)] = 53128, - [SMALL_STATE(2635)] = 53198, - [SMALL_STATE(2636)] = 53258, - [SMALL_STATE(2637)] = 53318, - [SMALL_STATE(2638)] = 53380, - [SMALL_STATE(2639)] = 53448, - [SMALL_STATE(2640)] = 53516, - [SMALL_STATE(2641)] = 53576, - [SMALL_STATE(2642)] = 53636, - [SMALL_STATE(2643)] = 53704, - [SMALL_STATE(2644)] = 53764, - [SMALL_STATE(2645)] = 53836, - [SMALL_STATE(2646)] = 53896, - [SMALL_STATE(2647)] = 53956, - [SMALL_STATE(2648)] = 54022, - [SMALL_STATE(2649)] = 54082, - [SMALL_STATE(2650)] = 54148, - [SMALL_STATE(2651)] = 54208, - [SMALL_STATE(2652)] = 54270, - [SMALL_STATE(2653)] = 54330, - [SMALL_STATE(2654)] = 54434, - [SMALL_STATE(2655)] = 54536, - [SMALL_STATE(2656)] = 54596, - [SMALL_STATE(2657)] = 54656, - [SMALL_STATE(2658)] = 54716, - [SMALL_STATE(2659)] = 54776, - [SMALL_STATE(2660)] = 54836, - [SMALL_STATE(2661)] = 54896, - [SMALL_STATE(2662)] = 54968, - [SMALL_STATE(2663)] = 55028, - [SMALL_STATE(2664)] = 55088, - [SMALL_STATE(2665)] = 55148, - [SMALL_STATE(2666)] = 55208, - [SMALL_STATE(2667)] = 55314, - [SMALL_STATE(2668)] = 55386, - [SMALL_STATE(2669)] = 55456, - [SMALL_STATE(2670)] = 55554, - [SMALL_STATE(2671)] = 55648, - [SMALL_STATE(2672)] = 55738, - [SMALL_STATE(2673)] = 55826, - [SMALL_STATE(2674)] = 55910, - [SMALL_STATE(2675)] = 55992, - [SMALL_STATE(2676)] = 56070, - [SMALL_STATE(2677)] = 56144, - [SMALL_STATE(2678)] = 56220, - [SMALL_STATE(2679)] = 56280, - [SMALL_STATE(2680)] = 56340, - [SMALL_STATE(2681)] = 56400, - [SMALL_STATE(2682)] = 56460, - [SMALL_STATE(2683)] = 56520, - [SMALL_STATE(2684)] = 56584, - [SMALL_STATE(2685)] = 56644, - [SMALL_STATE(2686)] = 56710, - [SMALL_STATE(2687)] = 56780, - [SMALL_STATE(2688)] = 56840, - [SMALL_STATE(2689)] = 56900, - [SMALL_STATE(2690)] = 56964, - [SMALL_STATE(2691)] = 57024, - [SMALL_STATE(2692)] = 57084, - [SMALL_STATE(2693)] = 57150, - [SMALL_STATE(2694)] = 57216, - [SMALL_STATE(2695)] = 57276, - [SMALL_STATE(2696)] = 57335, - [SMALL_STATE(2697)] = 57394, - [SMALL_STATE(2698)] = 57453, - [SMALL_STATE(2699)] = 57512, - [SMALL_STATE(2700)] = 57571, - [SMALL_STATE(2701)] = 57642, - [SMALL_STATE(2702)] = 57701, - [SMALL_STATE(2703)] = 57760, - [SMALL_STATE(2704)] = 57819, - [SMALL_STATE(2705)] = 57878, - [SMALL_STATE(2706)] = 58031, - [SMALL_STATE(2707)] = 58090, - [SMALL_STATE(2708)] = 58149, - [SMALL_STATE(2709)] = 58208, - [SMALL_STATE(2710)] = 58361, - [SMALL_STATE(2711)] = 58514, - [SMALL_STATE(2712)] = 58573, - [SMALL_STATE(2713)] = 58632, - [SMALL_STATE(2714)] = 58693, - [SMALL_STATE(2715)] = 58752, - [SMALL_STATE(2716)] = 58817, - [SMALL_STATE(2717)] = 58876, - [SMALL_STATE(2718)] = 58935, - [SMALL_STATE(2719)] = 58994, - [SMALL_STATE(2720)] = 59053, - [SMALL_STATE(2721)] = 59112, - [SMALL_STATE(2722)] = 59171, - [SMALL_STATE(2723)] = 59230, - [SMALL_STATE(2724)] = 59289, - [SMALL_STATE(2725)] = 59348, - [SMALL_STATE(2726)] = 59407, - [SMALL_STATE(2727)] = 59466, - [SMALL_STATE(2728)] = 59525, - [SMALL_STATE(2729)] = 59584, - [SMALL_STATE(2730)] = 59643, - [SMALL_STATE(2731)] = 59702, - [SMALL_STATE(2732)] = 59761, - [SMALL_STATE(2733)] = 59830, - [SMALL_STATE(2734)] = 59889, - [SMALL_STATE(2735)] = 59948, - [SMALL_STATE(2736)] = 60013, - [SMALL_STATE(2737)] = 60078, - [SMALL_STATE(2738)] = 60137, - [SMALL_STATE(2739)] = 60196, - [SMALL_STATE(2740)] = 60255, - [SMALL_STATE(2741)] = 60314, - [SMALL_STATE(2742)] = 60373, - [SMALL_STATE(2743)] = 60432, - [SMALL_STATE(2744)] = 60585, - [SMALL_STATE(2745)] = 60646, - [SMALL_STATE(2746)] = 60705, - [SMALL_STATE(2747)] = 60764, - [SMALL_STATE(2748)] = 60823, - [SMALL_STATE(2749)] = 60882, - [SMALL_STATE(2750)] = 60943, - [SMALL_STATE(2751)] = 61002, - [SMALL_STATE(2752)] = 61061, - [SMALL_STATE(2753)] = 61128, - [SMALL_STATE(2754)] = 61187, - [SMALL_STATE(2755)] = 61246, - [SMALL_STATE(2756)] = 61305, - [SMALL_STATE(2757)] = 61364, - [SMALL_STATE(2758)] = 61427, - [SMALL_STATE(2759)] = 61486, - [SMALL_STATE(2760)] = 61545, - [SMALL_STATE(2761)] = 61608, - [SMALL_STATE(2762)] = 61667, - [SMALL_STATE(2763)] = 61726, - [SMALL_STATE(2764)] = 61785, - [SMALL_STATE(2765)] = 61844, - [SMALL_STATE(2766)] = 61903, - [SMALL_STATE(2767)] = 61962, - [SMALL_STATE(2768)] = 62021, - [SMALL_STATE(2769)] = 62080, - [SMALL_STATE(2770)] = 62139, - [SMALL_STATE(2771)] = 62200, - [SMALL_STATE(2772)] = 62259, - [SMALL_STATE(2773)] = 62412, - [SMALL_STATE(2774)] = 62471, - [SMALL_STATE(2775)] = 62530, - [SMALL_STATE(2776)] = 62683, - [SMALL_STATE(2777)] = 62748, - [SMALL_STATE(2778)] = 62807, - [SMALL_STATE(2779)] = 62866, - [SMALL_STATE(2780)] = 63019, - [SMALL_STATE(2781)] = 63078, - [SMALL_STATE(2782)] = 63137, - [SMALL_STATE(2783)] = 63196, - [SMALL_STATE(2784)] = 63255, - [SMALL_STATE(2785)] = 63314, - [SMALL_STATE(2786)] = 63379, - [SMALL_STATE(2787)] = 63438, - [SMALL_STATE(2788)] = 63497, - [SMALL_STATE(2789)] = 63556, - [SMALL_STATE(2790)] = 63615, - [SMALL_STATE(2791)] = 63674, - [SMALL_STATE(2792)] = 63733, - [SMALL_STATE(2793)] = 63792, - [SMALL_STATE(2794)] = 63851, - [SMALL_STATE(2795)] = 63910, - [SMALL_STATE(2796)] = 63971, - [SMALL_STATE(2797)] = 64030, - [SMALL_STATE(2798)] = 64089, - [SMALL_STATE(2799)] = 64148, - [SMALL_STATE(2800)] = 64207, - [SMALL_STATE(2801)] = 64266, - [SMALL_STATE(2802)] = 64325, - [SMALL_STATE(2803)] = 64384, - [SMALL_STATE(2804)] = 64443, - [SMALL_STATE(2805)] = 64502, - [SMALL_STATE(2806)] = 64561, - [SMALL_STATE(2807)] = 64624, - [SMALL_STATE(2808)] = 64683, - [SMALL_STATE(2809)] = 64742, - [SMALL_STATE(2810)] = 64801, - [SMALL_STATE(2811)] = 64860, - [SMALL_STATE(2812)] = 64919, - [SMALL_STATE(2813)] = 64978, - [SMALL_STATE(2814)] = 65037, - [SMALL_STATE(2815)] = 65096, - [SMALL_STATE(2816)] = 65155, - [SMALL_STATE(2817)] = 65214, - [SMALL_STATE(2818)] = 65273, - [SMALL_STATE(2819)] = 65332, - [SMALL_STATE(2820)] = 65391, - [SMALL_STATE(2821)] = 65544, - [SMALL_STATE(2822)] = 65603, - [SMALL_STATE(2823)] = 65662, - [SMALL_STATE(2824)] = 65721, - [SMALL_STATE(2825)] = 65780, - [SMALL_STATE(2826)] = 65839, - [SMALL_STATE(2827)] = 65992, - [SMALL_STATE(2828)] = 66051, - [SMALL_STATE(2829)] = 66116, - [SMALL_STATE(2830)] = 66269, - [SMALL_STATE(2831)] = 66422, - [SMALL_STATE(2832)] = 66575, - [SMALL_STATE(2833)] = 66657, - [SMALL_STATE(2834)] = 66715, - [SMALL_STATE(2835)] = 66815, - [SMALL_STATE(2836)] = 66873, - [SMALL_STATE(2837)] = 66973, - [SMALL_STATE(2838)] = 67043, - [SMALL_STATE(2839)] = 67147, - [SMALL_STATE(2840)] = 67207, - [SMALL_STATE(2841)] = 67271, - [SMALL_STATE(2842)] = 67333, - [SMALL_STATE(2843)] = 67435, - [SMALL_STATE(2844)] = 67493, - [SMALL_STATE(2845)] = 67553, - [SMALL_STATE(2846)] = 67613, - [SMALL_STATE(2847)] = 67683, - [SMALL_STATE(2848)] = 67753, - [SMALL_STATE(2849)] = 67811, - [SMALL_STATE(2850)] = 67879, - [SMALL_STATE(2851)] = 67937, - [SMALL_STATE(2852)] = 67997, - [SMALL_STATE(2853)] = 68055, - [SMALL_STATE(2854)] = 68117, - [SMALL_STATE(2855)] = 68217, - [SMALL_STATE(2856)] = 68291, - [SMALL_STATE(2857)] = 68367, - [SMALL_STATE(2858)] = 68467, - [SMALL_STATE(2859)] = 68547, - [SMALL_STATE(2860)] = 68605, - [SMALL_STATE(2861)] = 68667, - [SMALL_STATE(2862)] = 68729, - [SMALL_STATE(2863)] = 68801, - [SMALL_STATE(2864)] = 68871, - [SMALL_STATE(2865)] = 68929, - [SMALL_STATE(2866)] = 69007, - [SMALL_STATE(2867)] = 69075, - [SMALL_STATE(2868)] = 69153, - [SMALL_STATE(2869)] = 69249, - [SMALL_STATE(2870)] = 69341, - [SMALL_STATE(2871)] = 69429, - [SMALL_STATE(2872)] = 69515, - [SMALL_STATE(2873)] = 69572, - [SMALL_STATE(2874)] = 69629, - [SMALL_STATE(2875)] = 69732, - [SMALL_STATE(2876)] = 69789, - [SMALL_STATE(2877)] = 69846, - [SMALL_STATE(2878)] = 69903, - [SMALL_STATE(2879)] = 69960, - [SMALL_STATE(2880)] = 70017, - [SMALL_STATE(2881)] = 70074, - [SMALL_STATE(2882)] = 70131, - [SMALL_STATE(2883)] = 70232, - [SMALL_STATE(2884)] = 70289, - [SMALL_STATE(2885)] = 70366, - [SMALL_STATE(2886)] = 70435, - [SMALL_STATE(2887)] = 70492, - [SMALL_STATE(2888)] = 70549, - [SMALL_STATE(2889)] = 70616, - [SMALL_STATE(2890)] = 70673, - [SMALL_STATE(2891)] = 70730, - [SMALL_STATE(2892)] = 70787, - [SMALL_STATE(2893)] = 70844, - [SMALL_STATE(2894)] = 70941, - [SMALL_STATE(2895)] = 70998, - [SMALL_STATE(2896)] = 71069, - [SMALL_STATE(2897)] = 71126, - [SMALL_STATE(2898)] = 71183, - [SMALL_STATE(2899)] = 71240, - [SMALL_STATE(2900)] = 71297, - [SMALL_STATE(2901)] = 71354, - [SMALL_STATE(2902)] = 71411, - [SMALL_STATE(2903)] = 71468, - [SMALL_STATE(2904)] = 71525, - [SMALL_STATE(2905)] = 71582, - [SMALL_STATE(2906)] = 71651, - [SMALL_STATE(2907)] = 71708, - [SMALL_STATE(2908)] = 71765, - [SMALL_STATE(2909)] = 71822, - [SMALL_STATE(2910)] = 71895, - [SMALL_STATE(2911)] = 71952, - [SMALL_STATE(2912)] = 72023, - [SMALL_STATE(2913)] = 72098, - [SMALL_STATE(2914)] = 72177, - [SMALL_STATE(2915)] = 72234, - [SMALL_STATE(2916)] = 72291, - [SMALL_STATE(2917)] = 72360, - [SMALL_STATE(2918)] = 72441, - [SMALL_STATE(2919)] = 72526, - [SMALL_STATE(2920)] = 72615, - [SMALL_STATE(2921)] = 72672, - [SMALL_STATE(2922)] = 72765, - [SMALL_STATE(2923)] = 72860, - [SMALL_STATE(2924)] = 72917, - [SMALL_STATE(2925)] = 72984, - [SMALL_STATE(2926)] = 73053, - [SMALL_STATE(2927)] = 73150, - [SMALL_STATE(2928)] = 73207, - [SMALL_STATE(2929)] = 73264, - [SMALL_STATE(2930)] = 73321, - [SMALL_STATE(2931)] = 73378, - [SMALL_STATE(2932)] = 73439, - [SMALL_STATE(2933)] = 73496, - [SMALL_STATE(2934)] = 73553, - [SMALL_STATE(2935)] = 73646, - [SMALL_STATE(2936)] = 73711, - [SMALL_STATE(2937)] = 73768, - [SMALL_STATE(2938)] = 73825, - [SMALL_STATE(2939)] = 73882, - [SMALL_STATE(2940)] = 73939, - [SMALL_STATE(2941)] = 73996, - [SMALL_STATE(2942)] = 74097, - [SMALL_STATE(2943)] = 74198, - [SMALL_STATE(2944)] = 74259, - [SMALL_STATE(2945)] = 74360, - [SMALL_STATE(2946)] = 74417, - [SMALL_STATE(2947)] = 74480, - [SMALL_STATE(2948)] = 74579, - [SMALL_STATE(2949)] = 74636, - [SMALL_STATE(2950)] = 74693, - [SMALL_STATE(2951)] = 74750, - [SMALL_STATE(2952)] = 74807, - [SMALL_STATE(2953)] = 74864, - [SMALL_STATE(2954)] = 74953, - [SMALL_STATE(2955)] = 75014, - [SMALL_STATE(2956)] = 75079, - [SMALL_STATE(2957)] = 75176, - [SMALL_STATE(2958)] = 75273, - [SMALL_STATE(2959)] = 75330, - [SMALL_STATE(2960)] = 75387, - [SMALL_STATE(2961)] = 75444, - [SMALL_STATE(2962)] = 75531, - [SMALL_STATE(2963)] = 75588, - [SMALL_STATE(2964)] = 75651, - [SMALL_STATE(2965)] = 75734, - [SMALL_STATE(2966)] = 75791, - [SMALL_STATE(2967)] = 75872, - [SMALL_STATE(2968)] = 75929, - [SMALL_STATE(2969)] = 75986, - [SMALL_STATE(2970)] = 76043, - [SMALL_STATE(2971)] = 76148, - [SMALL_STATE(2972)] = 76213, - [SMALL_STATE(2973)] = 76280, - [SMALL_STATE(2974)] = 76381, - [SMALL_STATE(2975)] = 76482, - [SMALL_STATE(2976)] = 76549, - [SMALL_STATE(2977)] = 76606, - [SMALL_STATE(2978)] = 76663, - [SMALL_STATE(2979)] = 76720, - [SMALL_STATE(2980)] = 76777, - [SMALL_STATE(2981)] = 76834, - [SMALL_STATE(2982)] = 76891, - [SMALL_STATE(2983)] = 76948, - [SMALL_STATE(2984)] = 77005, - [SMALL_STATE(2985)] = 77066, - [SMALL_STATE(2986)] = 77123, - [SMALL_STATE(2987)] = 77192, - [SMALL_STATE(2988)] = 77255, - [SMALL_STATE(2989)] = 77312, - [SMALL_STATE(2990)] = 77369, - [SMALL_STATE(2991)] = 77426, - [SMALL_STATE(2992)] = 77501, - [SMALL_STATE(2993)] = 77558, - [SMALL_STATE(2994)] = 77615, - [SMALL_STATE(2995)] = 77672, - [SMALL_STATE(2996)] = 77729, - [SMALL_STATE(2997)] = 77786, - [SMALL_STATE(2998)] = 77843, - [SMALL_STATE(2999)] = 77900, - [SMALL_STATE(3000)] = 77957, - [SMALL_STATE(3001)] = 78014, - [SMALL_STATE(3002)] = 78071, - [SMALL_STATE(3003)] = 78128, - [SMALL_STATE(3004)] = 78185, - [SMALL_STATE(3005)] = 78242, - [SMALL_STATE(3006)] = 78299, - [SMALL_STATE(3007)] = 78362, - [SMALL_STATE(3008)] = 78419, - [SMALL_STATE(3009)] = 78476, - [SMALL_STATE(3010)] = 78577, - [SMALL_STATE(3011)] = 78634, - [SMALL_STATE(3012)] = 78709, - [SMALL_STATE(3013)] = 78782, - [SMALL_STATE(3014)] = 78841, - [SMALL_STATE(3015)] = 78904, - [SMALL_STATE(3016)] = 79001, - [SMALL_STATE(3017)] = 79066, - [SMALL_STATE(3018)] = 79123, - [SMALL_STATE(3019)] = 79180, - [SMALL_STATE(3020)] = 79247, - [SMALL_STATE(3021)] = 79324, - [SMALL_STATE(3022)] = 79381, - [SMALL_STATE(3023)] = 79438, - [SMALL_STATE(3024)] = 79495, - [SMALL_STATE(3025)] = 79552, - [SMALL_STATE(3026)] = 79609, - [SMALL_STATE(3027)] = 79665, - [SMALL_STATE(3028)] = 79721, - [SMALL_STATE(3029)] = 79777, - [SMALL_STATE(3030)] = 79837, - [SMALL_STATE(3031)] = 79893, - [SMALL_STATE(3032)] = 79949, - [SMALL_STATE(3033)] = 80005, - [SMALL_STATE(3034)] = 80061, - [SMALL_STATE(3035)] = 80117, - [SMALL_STATE(3036)] = 80173, - [SMALL_STATE(3037)] = 80233, - [SMALL_STATE(3038)] = 80289, - [SMALL_STATE(3039)] = 80345, - [SMALL_STATE(3040)] = 80401, - [SMALL_STATE(3041)] = 80457, - [SMALL_STATE(3042)] = 80515, - [SMALL_STATE(3043)] = 80571, - [SMALL_STATE(3044)] = 80627, - [SMALL_STATE(3045)] = 80683, - [SMALL_STATE(3046)] = 80739, - [SMALL_STATE(3047)] = 80795, - [SMALL_STATE(3048)] = 80851, - [SMALL_STATE(3049)] = 80907, - [SMALL_STATE(3050)] = 80963, - [SMALL_STATE(3051)] = 81019, - [SMALL_STATE(3052)] = 81075, - [SMALL_STATE(3053)] = 81131, - [SMALL_STATE(3054)] = 81187, - [SMALL_STATE(3055)] = 81243, - [SMALL_STATE(3056)] = 81299, - [SMALL_STATE(3057)] = 81355, - [SMALL_STATE(3058)] = 81411, - [SMALL_STATE(3059)] = 81467, - [SMALL_STATE(3060)] = 81567, - [SMALL_STATE(3061)] = 81623, - [SMALL_STATE(3062)] = 81679, - [SMALL_STATE(3063)] = 81735, - [SMALL_STATE(3064)] = 81791, - [SMALL_STATE(3065)] = 81847, - [SMALL_STATE(3066)] = 81903, - [SMALL_STATE(3067)] = 81959, - [SMALL_STATE(3068)] = 82015, - [SMALL_STATE(3069)] = 82071, - [SMALL_STATE(3070)] = 82127, - [SMALL_STATE(3071)] = 82183, - [SMALL_STATE(3072)] = 82239, - [SMALL_STATE(3073)] = 82295, - [SMALL_STATE(3074)] = 82351, - [SMALL_STATE(3075)] = 82407, - [SMALL_STATE(3076)] = 82463, - [SMALL_STATE(3077)] = 82526, - [SMALL_STATE(3078)] = 82623, - [SMALL_STATE(3079)] = 82720, - [SMALL_STATE(3080)] = 82817, - [SMALL_STATE(3081)] = 82876, - [SMALL_STATE(3082)] = 82935, - [SMALL_STATE(3083)] = 83032, - [SMALL_STATE(3084)] = 83129, - [SMALL_STATE(3085)] = 83226, - [SMALL_STATE(3086)] = 83323, - [SMALL_STATE(3087)] = 83384, - [SMALL_STATE(3088)] = 83439, - [SMALL_STATE(3089)] = 83498, - [SMALL_STATE(3090)] = 83595, - [SMALL_STATE(3091)] = 83652, - [SMALL_STATE(3092)] = 83749, - [SMALL_STATE(3093)] = 83804, - [SMALL_STATE(3094)] = 83861, - [SMALL_STATE(3095)] = 83920, - [SMALL_STATE(3096)] = 83975, - [SMALL_STATE(3097)] = 84032, - [SMALL_STATE(3098)] = 84093, - [SMALL_STATE(3099)] = 84190, - [SMALL_STATE(3100)] = 84287, - [SMALL_STATE(3101)] = 84342, - [SMALL_STATE(3102)] = 84439, - [SMALL_STATE(3103)] = 84536, - [SMALL_STATE(3104)] = 84595, - [SMALL_STATE(3105)] = 84692, - [SMALL_STATE(3106)] = 84747, - [SMALL_STATE(3107)] = 84802, - [SMALL_STATE(3108)] = 84899, - [SMALL_STATE(3109)] = 84954, - [SMALL_STATE(3110)] = 85051, - [SMALL_STATE(3111)] = 85106, - [SMALL_STATE(3112)] = 85161, - [SMALL_STATE(3113)] = 85216, - [SMALL_STATE(3114)] = 85271, - [SMALL_STATE(3115)] = 85326, - [SMALL_STATE(3116)] = 85423, - [SMALL_STATE(3117)] = 85478, - [SMALL_STATE(3118)] = 85575, - [SMALL_STATE(3119)] = 85630, - [SMALL_STATE(3120)] = 85685, - [SMALL_STATE(3121)] = 85740, - [SMALL_STATE(3122)] = 85837, - [SMALL_STATE(3123)] = 85934, - [SMALL_STATE(3124)] = 85989, - [SMALL_STATE(3125)] = 86043, - [SMALL_STATE(3126)] = 86097, - [SMALL_STATE(3127)] = 86157, - [SMALL_STATE(3128)] = 86217, - [SMALL_STATE(3129)] = 86271, - [SMALL_STATE(3130)] = 86325, - [SMALL_STATE(3131)] = 86379, - [SMALL_STATE(3132)] = 86433, - [SMALL_STATE(3133)] = 86486, - [SMALL_STATE(3134)] = 86541, - [SMALL_STATE(3135)] = 86596, - [SMALL_STATE(3136)] = 86649, - [SMALL_STATE(3137)] = 86702, - [SMALL_STATE(3138)] = 86755, - [SMALL_STATE(3139)] = 86814, - [SMALL_STATE(3140)] = 86867, - [SMALL_STATE(3141)] = 86920, - [SMALL_STATE(3142)] = 86973, - [SMALL_STATE(3143)] = 87026, - [SMALL_STATE(3144)] = 87079, - [SMALL_STATE(3145)] = 87134, - [SMALL_STATE(3146)] = 87193, - [SMALL_STATE(3147)] = 87246, - [SMALL_STATE(3148)] = 87314, - [SMALL_STATE(3149)] = 87386, - [SMALL_STATE(3150)] = 87444, - [SMALL_STATE(3151)] = 87512, - [SMALL_STATE(3152)] = 87572, - [SMALL_STATE(3153)] = 87628, - [SMALL_STATE(3154)] = 87696, - [SMALL_STATE(3155)] = 87754, - [SMALL_STATE(3156)] = 87814, - [SMALL_STATE(3157)] = 87886, - [SMALL_STATE(3158)] = 87944, - [SMALL_STATE(3159)] = 87996, - [SMALL_STATE(3160)] = 88064, - [SMALL_STATE(3161)] = 88131, - [SMALL_STATE(3162)] = 88182, - [SMALL_STATE(3163)] = 88233, - [SMALL_STATE(3164)] = 88284, - [SMALL_STATE(3165)] = 88341, - [SMALL_STATE(3166)] = 88392, - [SMALL_STATE(3167)] = 88455, - [SMALL_STATE(3168)] = 88522, - [SMALL_STATE(3169)] = 88585, - [SMALL_STATE(3170)] = 88636, - [SMALL_STATE(3171)] = 88687, - [SMALL_STATE(3172)] = 88746, - [SMALL_STATE(3173)] = 88803, - [SMALL_STATE(3174)] = 88854, - [SMALL_STATE(3175)] = 88905, - [SMALL_STATE(3176)] = 88956, - [SMALL_STATE(3177)] = 89007, - [SMALL_STATE(3178)] = 89058, - [SMALL_STATE(3179)] = 89125, - [SMALL_STATE(3180)] = 89176, - [SMALL_STATE(3181)] = 89227, - [SMALL_STATE(3182)] = 89278, - [SMALL_STATE(3183)] = 89341, - [SMALL_STATE(3184)] = 89392, - [SMALL_STATE(3185)] = 89443, - [SMALL_STATE(3186)] = 89494, - [SMALL_STATE(3187)] = 89545, - [SMALL_STATE(3188)] = 89644, - [SMALL_STATE(3189)] = 89743, - [SMALL_STATE(3190)] = 89810, - [SMALL_STATE(3191)] = 89876, - [SMALL_STATE(3192)] = 89928, - [SMALL_STATE(3193)] = 89994, - [SMALL_STATE(3194)] = 90058, - [SMALL_STATE(3195)] = 90122, - [SMALL_STATE(3196)] = 90174, - [SMALL_STATE(3197)] = 90228, - [SMALL_STATE(3198)] = 90278, - [SMALL_STATE(3199)] = 90330, - [SMALL_STATE(3200)] = 90386, - [SMALL_STATE(3201)] = 90440, - [SMALL_STATE(3202)] = 90534, - [SMALL_STATE(3203)] = 90588, - [SMALL_STATE(3204)] = 90640, - [SMALL_STATE(3205)] = 90706, - [SMALL_STATE(3206)] = 90772, - [SMALL_STATE(3207)] = 90824, - [SMALL_STATE(3208)] = 90888, - [SMALL_STATE(3209)] = 90945, - [SMALL_STATE(3210)] = 90994, - [SMALL_STATE(3211)] = 91043, - [SMALL_STATE(3212)] = 91134, - [SMALL_STATE(3213)] = 91183, - [SMALL_STATE(3214)] = 91274, - [SMALL_STATE(3215)] = 91365, - [SMALL_STATE(3216)] = 91414, - [SMALL_STATE(3217)] = 91463, - [SMALL_STATE(3218)] = 91554, - [SMALL_STATE(3219)] = 91645, - [SMALL_STATE(3220)] = 91694, - [SMALL_STATE(3221)] = 91747, - [SMALL_STATE(3222)] = 91796, - [SMALL_STATE(3223)] = 91887, - [SMALL_STATE(3224)] = 91936, - [SMALL_STATE(3225)] = 92029, - [SMALL_STATE(3226)] = 92084, - [SMALL_STATE(3227)] = 92133, - [SMALL_STATE(3228)] = 92182, - [SMALL_STATE(3229)] = 92273, - [SMALL_STATE(3230)] = 92322, - [SMALL_STATE(3231)] = 92415, - [SMALL_STATE(3232)] = 92472, - [SMALL_STATE(3233)] = 92521, - [SMALL_STATE(3234)] = 92612, - [SMALL_STATE(3235)] = 92703, - [SMALL_STATE(3236)] = 92752, - [SMALL_STATE(3237)] = 92843, - [SMALL_STATE(3238)] = 92892, - [SMALL_STATE(3239)] = 92983, - [SMALL_STATE(3240)] = 93032, - [SMALL_STATE(3241)] = 93081, - [SMALL_STATE(3242)] = 93130, - [SMALL_STATE(3243)] = 93179, - [SMALL_STATE(3244)] = 93270, - [SMALL_STATE(3245)] = 93361, - [SMALL_STATE(3246)] = 93410, - [SMALL_STATE(3247)] = 93459, - [SMALL_STATE(3248)] = 93508, - [SMALL_STATE(3249)] = 93599, - [SMALL_STATE(3250)] = 93648, - [SMALL_STATE(3251)] = 93697, - [SMALL_STATE(3252)] = 93788, - [SMALL_STATE(3253)] = 93837, - [SMALL_STATE(3254)] = 93928, - [SMALL_STATE(3255)] = 93977, - [SMALL_STATE(3256)] = 94028, - [SMALL_STATE(3257)] = 94119, - [SMALL_STATE(3258)] = 94168, - [SMALL_STATE(3259)] = 94217, - [SMALL_STATE(3260)] = 94266, - [SMALL_STATE(3261)] = 94315, - [SMALL_STATE(3262)] = 94364, - [SMALL_STATE(3263)] = 94413, - [SMALL_STATE(3264)] = 94504, - [SMALL_STATE(3265)] = 94553, - [SMALL_STATE(3266)] = 94602, - [SMALL_STATE(3267)] = 94651, - [SMALL_STATE(3268)] = 94700, - [SMALL_STATE(3269)] = 94791, - [SMALL_STATE(3270)] = 94840, - [SMALL_STATE(3271)] = 94889, - [SMALL_STATE(3272)] = 94938, - [SMALL_STATE(3273)] = 94995, - [SMALL_STATE(3274)] = 95044, - [SMALL_STATE(3275)] = 95135, - [SMALL_STATE(3276)] = 95184, - [SMALL_STATE(3277)] = 95275, - [SMALL_STATE(3278)] = 95366, - [SMALL_STATE(3279)] = 95457, - [SMALL_STATE(3280)] = 95506, - [SMALL_STATE(3281)] = 95555, - [SMALL_STATE(3282)] = 95646, - [SMALL_STATE(3283)] = 95737, - [SMALL_STATE(3284)] = 95828, - [SMALL_STATE(3285)] = 95919, - [SMALL_STATE(3286)] = 96007, - [SMALL_STATE(3287)] = 96095, - [SMALL_STATE(3288)] = 96143, - [SMALL_STATE(3289)] = 96195, - [SMALL_STATE(3290)] = 96283, - [SMALL_STATE(3291)] = 96331, - [SMALL_STATE(3292)] = 96419, - [SMALL_STATE(3293)] = 96489, - [SMALL_STATE(3294)] = 96537, - [SMALL_STATE(3295)] = 96601, - [SMALL_STATE(3296)] = 96655, - [SMALL_STATE(3297)] = 96703, - [SMALL_STATE(3298)] = 96773, - [SMALL_STATE(3299)] = 96843, - [SMALL_STATE(3300)] = 96931, - [SMALL_STATE(3301)] = 97017, - [SMALL_STATE(3302)] = 97105, - [SMALL_STATE(3303)] = 97159, - [SMALL_STATE(3304)] = 97207, - [SMALL_STATE(3305)] = 97261, - [SMALL_STATE(3306)] = 97349, - [SMALL_STATE(3307)] = 97437, - [SMALL_STATE(3308)] = 97525, - [SMALL_STATE(3309)] = 97613, - [SMALL_STATE(3310)] = 97701, - [SMALL_STATE(3311)] = 97789, - [SMALL_STATE(3312)] = 97877, - [SMALL_STATE(3313)] = 97965, - [SMALL_STATE(3314)] = 98053, - [SMALL_STATE(3315)] = 98141, - [SMALL_STATE(3316)] = 98229, - [SMALL_STATE(3317)] = 98283, - [SMALL_STATE(3318)] = 98353, - [SMALL_STATE(3319)] = 98441, - [SMALL_STATE(3320)] = 98529, - [SMALL_STATE(3321)] = 98615, - [SMALL_STATE(3322)] = 98703, - [SMALL_STATE(3323)] = 98773, - [SMALL_STATE(3324)] = 98821, - [SMALL_STATE(3325)] = 98909, - [SMALL_STATE(3326)] = 98979, - [SMALL_STATE(3327)] = 99067, - [SMALL_STATE(3328)] = 99129, - [SMALL_STATE(3329)] = 99179, - [SMALL_STATE(3330)] = 99237, - [SMALL_STATE(3331)] = 99291, - [SMALL_STATE(3332)] = 99379, - [SMALL_STATE(3333)] = 99433, - [SMALL_STATE(3334)] = 99521, - [SMALL_STATE(3335)] = 99591, - [SMALL_STATE(3336)] = 99679, - [SMALL_STATE(3337)] = 99766, - [SMALL_STATE(3338)] = 99833, - [SMALL_STATE(3339)] = 99890, - [SMALL_STATE(3340)] = 99937, - [SMALL_STATE(3341)] = 99984, - [SMALL_STATE(3342)] = 100037, - [SMALL_STATE(3343)] = 100118, - [SMALL_STATE(3344)] = 100199, - [SMALL_STATE(3345)] = 100252, - [SMALL_STATE(3346)] = 100311, - [SMALL_STATE(3347)] = 100392, - [SMALL_STATE(3348)] = 100439, - [SMALL_STATE(3349)] = 100498, - [SMALL_STATE(3350)] = 100579, - [SMALL_STATE(3351)] = 100626, - [SMALL_STATE(3352)] = 100673, - [SMALL_STATE(3353)] = 100720, - [SMALL_STATE(3354)] = 100779, - [SMALL_STATE(3355)] = 100828, - [SMALL_STATE(3356)] = 100875, - [SMALL_STATE(3357)] = 100922, - [SMALL_STATE(3358)] = 100981, - [SMALL_STATE(3359)] = 101028, - [SMALL_STATE(3360)] = 101081, - [SMALL_STATE(3361)] = 101132, - [SMALL_STATE(3362)] = 101191, - [SMALL_STATE(3363)] = 101276, - [SMALL_STATE(3364)] = 101357, - [SMALL_STATE(3365)] = 101438, - [SMALL_STATE(3366)] = 101485, - [SMALL_STATE(3367)] = 101532, - [SMALL_STATE(3368)] = 101613, - [SMALL_STATE(3369)] = 101668, - [SMALL_STATE(3370)] = 101749, - [SMALL_STATE(3371)] = 101830, - [SMALL_STATE(3372)] = 101879, - [SMALL_STATE(3373)] = 101932, - [SMALL_STATE(3374)] = 102013, - [SMALL_STATE(3375)] = 102094, - [SMALL_STATE(3376)] = 102141, - [SMALL_STATE(3377)] = 102196, - [SMALL_STATE(3378)] = 102253, - [SMALL_STATE(3379)] = 102334, - [SMALL_STATE(3380)] = 102381, - [SMALL_STATE(3381)] = 102428, - [SMALL_STATE(3382)] = 102509, - [SMALL_STATE(3383)] = 102596, - [SMALL_STATE(3384)] = 102655, - [SMALL_STATE(3385)] = 102702, - [SMALL_STATE(3386)] = 102749, - [SMALL_STATE(3387)] = 102796, - [SMALL_STATE(3388)] = 102877, - [SMALL_STATE(3389)] = 102958, - [SMALL_STATE(3390)] = 103005, - [SMALL_STATE(3391)] = 103072, - [SMALL_STATE(3392)] = 103157, - [SMALL_STATE(3393)] = 103243, - [SMALL_STATE(3394)] = 103331, - [SMALL_STATE(3395)] = 103391, - [SMALL_STATE(3396)] = 103437, - [SMALL_STATE(3397)] = 103495, - [SMALL_STATE(3398)] = 103563, - [SMALL_STATE(3399)] = 103609, - [SMALL_STATE(3400)] = 103655, - [SMALL_STATE(3401)] = 103741, - [SMALL_STATE(3402)] = 103787, - [SMALL_STATE(3403)] = 103839, - [SMALL_STATE(3404)] = 103885, - [SMALL_STATE(3405)] = 103945, - [SMALL_STATE(3406)] = 103991, - [SMALL_STATE(3407)] = 104073, - [SMALL_STATE(3408)] = 104159, - [SMALL_STATE(3409)] = 104221, - [SMALL_STATE(3410)] = 104267, - [SMALL_STATE(3411)] = 104327, - [SMALL_STATE(3412)] = 104417, - [SMALL_STATE(3413)] = 104495, - [SMALL_STATE(3414)] = 104547, - [SMALL_STATE(3415)] = 104631, - [SMALL_STATE(3416)] = 104691, - [SMALL_STATE(3417)] = 104737, - [SMALL_STATE(3418)] = 104797, - [SMALL_STATE(3419)] = 104843, - [SMALL_STATE(3420)] = 104901, - [SMALL_STATE(3421)] = 104981, - [SMALL_STATE(3422)] = 105027, - [SMALL_STATE(3423)] = 105079, - [SMALL_STATE(3424)] = 105153, - [SMALL_STATE(3425)] = 105225, - [SMALL_STATE(3426)] = 105293, - [SMALL_STATE(3427)] = 105357, - [SMALL_STATE(3428)] = 105403, - [SMALL_STATE(3429)] = 105449, - [SMALL_STATE(3430)] = 105535, - [SMALL_STATE(3431)] = 105601, - [SMALL_STATE(3432)] = 105659, - [SMALL_STATE(3433)] = 105755, - [SMALL_STATE(3434)] = 105801, - [SMALL_STATE(3435)] = 105847, - [SMALL_STATE(3436)] = 105907, - [SMALL_STATE(3437)] = 105993, - [SMALL_STATE(3438)] = 106039, - [SMALL_STATE(3439)] = 106085, - [SMALL_STATE(3440)] = 106131, - [SMALL_STATE(3441)] = 106191, - [SMALL_STATE(3442)] = 106243, - [SMALL_STATE(3443)] = 106336, - [SMALL_STATE(3444)] = 106429, - [SMALL_STATE(3445)] = 106474, - [SMALL_STATE(3446)] = 106567, - [SMALL_STATE(3447)] = 106660, - [SMALL_STATE(3448)] = 106709, - [SMALL_STATE(3449)] = 106758, - [SMALL_STATE(3450)] = 106851, - [SMALL_STATE(3451)] = 106944, - [SMALL_STATE(3452)] = 107037, - [SMALL_STATE(3453)] = 107084, - [SMALL_STATE(3454)] = 107177, - [SMALL_STATE(3455)] = 107250, - [SMALL_STATE(3456)] = 107343, - [SMALL_STATE(3457)] = 107436, - [SMALL_STATE(3458)] = 107527, - [SMALL_STATE(3459)] = 107600, - [SMALL_STATE(3460)] = 107693, - [SMALL_STATE(3461)] = 107786, - [SMALL_STATE(3462)] = 107869, - [SMALL_STATE(3463)] = 107962, - [SMALL_STATE(3464)] = 108055, - [SMALL_STATE(3465)] = 108148, - [SMALL_STATE(3466)] = 108241, - [SMALL_STATE(3467)] = 108292, - [SMALL_STATE(3468)] = 108385, - [SMALL_STATE(3469)] = 108478, - [SMALL_STATE(3470)] = 108557, - [SMALL_STATE(3471)] = 108650, - [SMALL_STATE(3472)] = 108743, - [SMALL_STATE(3473)] = 108836, - [SMALL_STATE(3474)] = 108915, - [SMALL_STATE(3475)] = 109008, - [SMALL_STATE(3476)] = 109101, - [SMALL_STATE(3477)] = 109192, - [SMALL_STATE(3478)] = 109285, - [SMALL_STATE(3479)] = 109378, - [SMALL_STATE(3480)] = 109427, - [SMALL_STATE(3481)] = 109520, - [SMALL_STATE(3482)] = 109603, - [SMALL_STATE(3483)] = 109686, - [SMALL_STATE(3484)] = 109769, - [SMALL_STATE(3485)] = 109862, - [SMALL_STATE(3486)] = 109955, - [SMALL_STATE(3487)] = 110048, - [SMALL_STATE(3488)] = 110141, - [SMALL_STATE(3489)] = 110186, - [SMALL_STATE(3490)] = 110269, - [SMALL_STATE(3491)] = 110352, - [SMALL_STATE(3492)] = 110445, - [SMALL_STATE(3493)] = 110538, - [SMALL_STATE(3494)] = 110631, - [SMALL_STATE(3495)] = 110682, - [SMALL_STATE(3496)] = 110775, - [SMALL_STATE(3497)] = 110859, - [SMALL_STATE(3498)] = 110949, - [SMALL_STATE(3499)] = 111039, - [SMALL_STATE(3500)] = 111129, - [SMALL_STATE(3501)] = 111219, - [SMALL_STATE(3502)] = 111273, - [SMALL_STATE(3503)] = 111363, - [SMALL_STATE(3504)] = 111453, - [SMALL_STATE(3505)] = 111543, - [SMALL_STATE(3506)] = 111633, - [SMALL_STATE(3507)] = 111723, - [SMALL_STATE(3508)] = 111813, - [SMALL_STATE(3509)] = 111857, - [SMALL_STATE(3510)] = 111947, - [SMALL_STATE(3511)] = 112037, - [SMALL_STATE(3512)] = 112127, - [SMALL_STATE(3513)] = 112205, - [SMALL_STATE(3514)] = 112295, - [SMALL_STATE(3515)] = 112385, - [SMALL_STATE(3516)] = 112475, - [SMALL_STATE(3517)] = 112563, - [SMALL_STATE(3518)] = 112653, - [SMALL_STATE(3519)] = 112741, - [SMALL_STATE(3520)] = 112785, - [SMALL_STATE(3521)] = 112875, - [SMALL_STATE(3522)] = 112965, - [SMALL_STATE(3523)] = 113055, - [SMALL_STATE(3524)] = 113145, - [SMALL_STATE(3525)] = 113235, - [SMALL_STATE(3526)] = 113325, - [SMALL_STATE(3527)] = 113415, - [SMALL_STATE(3528)] = 113505, - [SMALL_STATE(3529)] = 113593, - [SMALL_STATE(3530)] = 113683, - [SMALL_STATE(3531)] = 113773, - [SMALL_STATE(3532)] = 113851, - [SMALL_STATE(3533)] = 113941, - [SMALL_STATE(3534)] = 114031, - [SMALL_STATE(3535)] = 114121, - [SMALL_STATE(3536)] = 114169, - [SMALL_STATE(3537)] = 114259, - [SMALL_STATE(3538)] = 114349, - [SMALL_STATE(3539)] = 114439, - [SMALL_STATE(3540)] = 114529, - [SMALL_STATE(3541)] = 114619, - [SMALL_STATE(3542)] = 114709, - [SMALL_STATE(3543)] = 114799, - [SMALL_STATE(3544)] = 114889, - [SMALL_STATE(3545)] = 114979, - [SMALL_STATE(3546)] = 115069, - [SMALL_STATE(3547)] = 115159, - [SMALL_STATE(3548)] = 115249, - [SMALL_STATE(3549)] = 115339, - [SMALL_STATE(3550)] = 115429, - [SMALL_STATE(3551)] = 115519, - [SMALL_STATE(3552)] = 115609, - [SMALL_STATE(3553)] = 115699, - [SMALL_STATE(3554)] = 115743, - [SMALL_STATE(3555)] = 115787, - [SMALL_STATE(3556)] = 115875, - [SMALL_STATE(3557)] = 115957, - [SMALL_STATE(3558)] = 116003, - [SMALL_STATE(3559)] = 116047, - [SMALL_STATE(3560)] = 116135, - [SMALL_STATE(3561)] = 116225, - [SMALL_STATE(3562)] = 116315, - [SMALL_STATE(3563)] = 116405, - [SMALL_STATE(3564)] = 116495, - [SMALL_STATE(3565)] = 116585, - [SMALL_STATE(3566)] = 116675, - [SMALL_STATE(3567)] = 116763, - [SMALL_STATE(3568)] = 116853, - [SMALL_STATE(3569)] = 116943, - [SMALL_STATE(3570)] = 117033, - [SMALL_STATE(3571)] = 117123, - [SMALL_STATE(3572)] = 117207, - [SMALL_STATE(3573)] = 117261, - [SMALL_STATE(3574)] = 117315, - [SMALL_STATE(3575)] = 117405, - [SMALL_STATE(3576)] = 117449, - [SMALL_STATE(3577)] = 117539, - [SMALL_STATE(3578)] = 117627, - [SMALL_STATE(3579)] = 117671, - [SMALL_STATE(3580)] = 117715, - [SMALL_STATE(3581)] = 117803, - [SMALL_STATE(3582)] = 117887, - [SMALL_STATE(3583)] = 117977, - [SMALL_STATE(3584)] = 118067, - [SMALL_STATE(3585)] = 118119, - [SMALL_STATE(3586)] = 118209, - [SMALL_STATE(3587)] = 118253, - [SMALL_STATE(3588)] = 118343, - [SMALL_STATE(3589)] = 118387, - [SMALL_STATE(3590)] = 118475, - [SMALL_STATE(3591)] = 118531, - [SMALL_STATE(3592)] = 118599, - [SMALL_STATE(3593)] = 118689, - [SMALL_STATE(3594)] = 118735, - [SMALL_STATE(3595)] = 118825, - [SMALL_STATE(3596)] = 118915, - [SMALL_STATE(3597)] = 118999, - [SMALL_STATE(3598)] = 119089, - [SMALL_STATE(3599)] = 119143, - [SMALL_STATE(3600)] = 119207, - [SMALL_STATE(3601)] = 119297, - [SMALL_STATE(3602)] = 119341, - [SMALL_STATE(3603)] = 119431, - [SMALL_STATE(3604)] = 119475, - [SMALL_STATE(3605)] = 119537, - [SMALL_STATE(3606)] = 119603, - [SMALL_STATE(3607)] = 119647, - [SMALL_STATE(3608)] = 119717, - [SMALL_STATE(3609)] = 119765, - [SMALL_STATE(3610)] = 119847, - [SMALL_STATE(3611)] = 119937, - [SMALL_STATE(3612)] = 120027, - [SMALL_STATE(3613)] = 120099, - [SMALL_STATE(3614)] = 120175, - [SMALL_STATE(3615)] = 120253, - [SMALL_STATE(3616)] = 120343, - [SMALL_STATE(3617)] = 120423, - [SMALL_STATE(3618)] = 120495, - [SMALL_STATE(3619)] = 120577, - [SMALL_STATE(3620)] = 120637, - [SMALL_STATE(3621)] = 120681, - [SMALL_STATE(3622)] = 120725, - [SMALL_STATE(3623)] = 120815, - [SMALL_STATE(3624)] = 120905, - [SMALL_STATE(3625)] = 120991, - [SMALL_STATE(3626)] = 121035, - [SMALL_STATE(3627)] = 121079, - [SMALL_STATE(3628)] = 121123, - [SMALL_STATE(3629)] = 121167, - [SMALL_STATE(3630)] = 121211, - [SMALL_STATE(3631)] = 121255, - [SMALL_STATE(3632)] = 121345, - [SMALL_STATE(3633)] = 121399, - [SMALL_STATE(3634)] = 121485, - [SMALL_STATE(3635)] = 121541, - [SMALL_STATE(3636)] = 121623, - [SMALL_STATE(3637)] = 121703, - [SMALL_STATE(3638)] = 121781, - [SMALL_STATE(3639)] = 121857, - [SMALL_STATE(3640)] = 121929, - [SMALL_STATE(3641)] = 121999, - [SMALL_STATE(3642)] = 122067, - [SMALL_STATE(3643)] = 122129, - [SMALL_STATE(3644)] = 122213, - [SMALL_STATE(3645)] = 122279, - [SMALL_STATE(3646)] = 122367, - [SMALL_STATE(3647)] = 122455, - [SMALL_STATE(3648)] = 122511, - [SMALL_STATE(3649)] = 122555, - [SMALL_STATE(3650)] = 122599, - [SMALL_STATE(3651)] = 122657, - [SMALL_STATE(3652)] = 122701, - [SMALL_STATE(3653)] = 122745, - [SMALL_STATE(3654)] = 122803, - [SMALL_STATE(3655)] = 122847, - [SMALL_STATE(3656)] = 122891, - [SMALL_STATE(3657)] = 122935, - [SMALL_STATE(3658)] = 123023, - [SMALL_STATE(3659)] = 123067, - [SMALL_STATE(3660)] = 123125, - [SMALL_STATE(3661)] = 123169, - [SMALL_STATE(3662)] = 123213, - [SMALL_STATE(3663)] = 123279, - [SMALL_STATE(3664)] = 123369, - [SMALL_STATE(3665)] = 123413, - [SMALL_STATE(3666)] = 123457, - [SMALL_STATE(3667)] = 123501, - [SMALL_STATE(3668)] = 123545, - [SMALL_STATE(3669)] = 123629, - [SMALL_STATE(3670)] = 123713, - [SMALL_STATE(3671)] = 123757, - [SMALL_STATE(3672)] = 123817, - [SMALL_STATE(3673)] = 123907, - [SMALL_STATE(3674)] = 123995, - [SMALL_STATE(3675)] = 124067, - [SMALL_STATE(3676)] = 124111, - [SMALL_STATE(3677)] = 124155, - [SMALL_STATE(3678)] = 124199, - [SMALL_STATE(3679)] = 124243, - [SMALL_STATE(3680)] = 124333, - [SMALL_STATE(3681)] = 124377, - [SMALL_STATE(3682)] = 124421, - [SMALL_STATE(3683)] = 124511, - [SMALL_STATE(3684)] = 124595, - [SMALL_STATE(3685)] = 124685, - [SMALL_STATE(3686)] = 124772, - [SMALL_STATE(3687)] = 124859, - [SMALL_STATE(3688)] = 124946, - [SMALL_STATE(3689)] = 125033, - [SMALL_STATE(3690)] = 125120, - [SMALL_STATE(3691)] = 125175, - [SMALL_STATE(3692)] = 125262, - [SMALL_STATE(3693)] = 125349, - [SMALL_STATE(3694)] = 125392, - [SMALL_STATE(3695)] = 125479, - [SMALL_STATE(3696)] = 125566, - [SMALL_STATE(3697)] = 125653, - [SMALL_STATE(3698)] = 125740, - [SMALL_STATE(3699)] = 125827, - [SMALL_STATE(3700)] = 125914, - [SMALL_STATE(3701)] = 125957, - [SMALL_STATE(3702)] = 126044, - [SMALL_STATE(3703)] = 126131, - [SMALL_STATE(3704)] = 126174, - [SMALL_STATE(3705)] = 126217, - [SMALL_STATE(3706)] = 126260, - [SMALL_STATE(3707)] = 126303, - [SMALL_STATE(3708)] = 126346, - [SMALL_STATE(3709)] = 126433, - [SMALL_STATE(3710)] = 126520, - [SMALL_STATE(3711)] = 126607, - [SMALL_STATE(3712)] = 126694, - [SMALL_STATE(3713)] = 126737, - [SMALL_STATE(3714)] = 126808, - [SMALL_STATE(3715)] = 126853, - [SMALL_STATE(3716)] = 126908, - [SMALL_STATE(3717)] = 126951, - [SMALL_STATE(3718)] = 126994, - [SMALL_STATE(3719)] = 127081, - [SMALL_STATE(3720)] = 127152, - [SMALL_STATE(3721)] = 127239, - [SMALL_STATE(3722)] = 127326, - [SMALL_STATE(3723)] = 127413, - [SMALL_STATE(3724)] = 127456, - [SMALL_STATE(3725)] = 127543, - [SMALL_STATE(3726)] = 127630, - [SMALL_STATE(3727)] = 127701, - [SMALL_STATE(3728)] = 127748, - [SMALL_STATE(3729)] = 127835, - [SMALL_STATE(3730)] = 127922, - [SMALL_STATE(3731)] = 128009, - [SMALL_STATE(3732)] = 128052, - [SMALL_STATE(3733)] = 128139, - [SMALL_STATE(3734)] = 128226, - [SMALL_STATE(3735)] = 128313, - [SMALL_STATE(3736)] = 128400, - [SMALL_STATE(3737)] = 128487, - [SMALL_STATE(3738)] = 128540, - [SMALL_STATE(3739)] = 128591, - [SMALL_STATE(3740)] = 128678, - [SMALL_STATE(3741)] = 128765, - [SMALL_STATE(3742)] = 128820, - [SMALL_STATE(3743)] = 128863, - [SMALL_STATE(3744)] = 128950, - [SMALL_STATE(3745)] = 129037, - [SMALL_STATE(3746)] = 129124, - [SMALL_STATE(3747)] = 129167, - [SMALL_STATE(3748)] = 129210, - [SMALL_STATE(3749)] = 129297, - [SMALL_STATE(3750)] = 129384, - [SMALL_STATE(3751)] = 129471, - [SMALL_STATE(3752)] = 129524, - [SMALL_STATE(3753)] = 129567, - [SMALL_STATE(3754)] = 129654, - [SMALL_STATE(3755)] = 129741, - [SMALL_STATE(3756)] = 129828, - [SMALL_STATE(3757)] = 129915, - [SMALL_STATE(3758)] = 130002, - [SMALL_STATE(3759)] = 130089, - [SMALL_STATE(3760)] = 130176, - [SMALL_STATE(3761)] = 130263, - [SMALL_STATE(3762)] = 130350, - [SMALL_STATE(3763)] = 130437, - [SMALL_STATE(3764)] = 130524, - [SMALL_STATE(3765)] = 130611, - [SMALL_STATE(3766)] = 130698, - [SMALL_STATE(3767)] = 130745, - [SMALL_STATE(3768)] = 130832, - [SMALL_STATE(3769)] = 130875, - [SMALL_STATE(3770)] = 130962, - [SMALL_STATE(3771)] = 131049, - [SMALL_STATE(3772)] = 131136, - [SMALL_STATE(3773)] = 131223, - [SMALL_STATE(3774)] = 131266, - [SMALL_STATE(3775)] = 131353, - [SMALL_STATE(3776)] = 131440, - [SMALL_STATE(3777)] = 131483, - [SMALL_STATE(3778)] = 131570, - [SMALL_STATE(3779)] = 131657, - [SMALL_STATE(3780)] = 131744, - [SMALL_STATE(3781)] = 131831, - [SMALL_STATE(3782)] = 131918, - [SMALL_STATE(3783)] = 132005, - [SMALL_STATE(3784)] = 132076, - [SMALL_STATE(3785)] = 132119, - [SMALL_STATE(3786)] = 132202, - [SMALL_STATE(3787)] = 132245, - [SMALL_STATE(3788)] = 132332, - [SMALL_STATE(3789)] = 132419, - [SMALL_STATE(3790)] = 132484, - [SMALL_STATE(3791)] = 132571, - [SMALL_STATE(3792)] = 132658, - [SMALL_STATE(3793)] = 132745, - [SMALL_STATE(3794)] = 132832, - [SMALL_STATE(3795)] = 132919, - [SMALL_STATE(3796)] = 133006, - [SMALL_STATE(3797)] = 133093, - [SMALL_STATE(3798)] = 133180, - [SMALL_STATE(3799)] = 133223, - [SMALL_STATE(3800)] = 133266, - [SMALL_STATE(3801)] = 133353, - [SMALL_STATE(3802)] = 133396, - [SMALL_STATE(3803)] = 133479, - [SMALL_STATE(3804)] = 133566, - [SMALL_STATE(3805)] = 133649, - [SMALL_STATE(3806)] = 133712, - [SMALL_STATE(3807)] = 133799, - [SMALL_STATE(3808)] = 133860, - [SMALL_STATE(3809)] = 133947, - [SMALL_STATE(3810)] = 134034, - [SMALL_STATE(3811)] = 134083, - [SMALL_STATE(3812)] = 134170, - [SMALL_STATE(3813)] = 134241, - [SMALL_STATE(3814)] = 134328, - [SMALL_STATE(3815)] = 134399, - [SMALL_STATE(3816)] = 134464, - [SMALL_STATE(3817)] = 134507, - [SMALL_STATE(3818)] = 134576, - [SMALL_STATE(3819)] = 134663, - [SMALL_STATE(3820)] = 134706, - [SMALL_STATE(3821)] = 134777, - [SMALL_STATE(3822)] = 134864, - [SMALL_STATE(3823)] = 134935, - [SMALL_STATE(3824)] = 135022, - [SMALL_STATE(3825)] = 135109, - [SMALL_STATE(3826)] = 135196, - [SMALL_STATE(3827)] = 135283, - [SMALL_STATE(3828)] = 135370, - [SMALL_STATE(3829)] = 135457, - [SMALL_STATE(3830)] = 135544, - [SMALL_STATE(3831)] = 135619, - [SMALL_STATE(3832)] = 135706, - [SMALL_STATE(3833)] = 135749, - [SMALL_STATE(3834)] = 135826, - [SMALL_STATE(3835)] = 135913, - [SMALL_STATE(3836)] = 135996, - [SMALL_STATE(3837)] = 136081, - [SMALL_STATE(3838)] = 136168, - [SMALL_STATE(3839)] = 136255, - [SMALL_STATE(3840)] = 136342, - [SMALL_STATE(3841)] = 136393, - [SMALL_STATE(3842)] = 136480, - [SMALL_STATE(3843)] = 136559, - [SMALL_STATE(3844)] = 136646, - [SMALL_STATE(3845)] = 136733, - [SMALL_STATE(3846)] = 136820, - [SMALL_STATE(3847)] = 136907, - [SMALL_STATE(3848)] = 136994, - [SMALL_STATE(3849)] = 137053, - [SMALL_STATE(3850)] = 137140, - [SMALL_STATE(3851)] = 137227, - [SMALL_STATE(3852)] = 137314, - [SMALL_STATE(3853)] = 137401, - [SMALL_STATE(3854)] = 137482, - [SMALL_STATE(3855)] = 137569, - [SMALL_STATE(3856)] = 137612, - [SMALL_STATE(3857)] = 137699, - [SMALL_STATE(3858)] = 137786, - [SMALL_STATE(3859)] = 137857, - [SMALL_STATE(3860)] = 137933, - [SMALL_STATE(3861)] = 138009, - [SMALL_STATE(3862)] = 138061, - [SMALL_STATE(3863)] = 138141, - [SMALL_STATE(3864)] = 138217, - [SMALL_STATE(3865)] = 138297, - [SMALL_STATE(3866)] = 138361, - [SMALL_STATE(3867)] = 138431, - [SMALL_STATE(3868)] = 138507, - [SMALL_STATE(3869)] = 138591, - [SMALL_STATE(3870)] = 138661, - [SMALL_STATE(3871)] = 138737, - [SMALL_STATE(3872)] = 138801, - [SMALL_STATE(3873)] = 138851, - [SMALL_STATE(3874)] = 138903, - [SMALL_STATE(3875)] = 138967, - [SMALL_STATE(3876)] = 139031, - [SMALL_STATE(3877)] = 139107, - [SMALL_STATE(3878)] = 139157, - [SMALL_STATE(3879)] = 139220, - [SMALL_STATE(3880)] = 139283, - [SMALL_STATE(3881)] = 139336, - [SMALL_STATE(3882)] = 139399, - [SMALL_STATE(3883)] = 139474, - [SMALL_STATE(3884)] = 139523, - [SMALL_STATE(3885)] = 139592, - [SMALL_STATE(3886)] = 139655, - [SMALL_STATE(3887)] = 139718, - [SMALL_STATE(3888)] = 139769, - [SMALL_STATE(3889)] = 139838, - [SMALL_STATE(3890)] = 139907, - [SMALL_STATE(3891)] = 139982, - [SMALL_STATE(3892)] = 140033, - [SMALL_STATE(3893)] = 140086, - [SMALL_STATE(3894)] = 140149, - [SMALL_STATE(3895)] = 140218, - [SMALL_STATE(3896)] = 140298, - [SMALL_STATE(3897)] = 140338, - [SMALL_STATE(3898)] = 140418, - [SMALL_STATE(3899)] = 140498, - [SMALL_STATE(3900)] = 140578, - [SMALL_STATE(3901)] = 140618, - [SMALL_STATE(3902)] = 140698, - [SMALL_STATE(3903)] = 140738, - [SMALL_STATE(3904)] = 140806, - [SMALL_STATE(3905)] = 140846, - [SMALL_STATE(3906)] = 140894, - [SMALL_STATE(3907)] = 140974, - [SMALL_STATE(3908)] = 141014, - [SMALL_STATE(3909)] = 141094, - [SMALL_STATE(3910)] = 141174, - [SMALL_STATE(3911)] = 141254, - [SMALL_STATE(3912)] = 141334, - [SMALL_STATE(3913)] = 141374, - [SMALL_STATE(3914)] = 141454, - [SMALL_STATE(3915)] = 141494, - [SMALL_STATE(3916)] = 141542, - [SMALL_STATE(3917)] = 141622, - [SMALL_STATE(3918)] = 141702, - [SMALL_STATE(3919)] = 141770, - [SMALL_STATE(3920)] = 141810, - [SMALL_STATE(3921)] = 141890, - [SMALL_STATE(3922)] = 141938, - [SMALL_STATE(3923)] = 141982, - [SMALL_STATE(3924)] = 142055, - [SMALL_STATE(3925)] = 142096, - [SMALL_STATE(3926)] = 142135, - [SMALL_STATE(3927)] = 142202, - [SMALL_STATE(3928)] = 142263, - [SMALL_STATE(3929)] = 142324, - [SMALL_STATE(3930)] = 142391, - [SMALL_STATE(3931)] = 142452, - [SMALL_STATE(3932)] = 142513, - [SMALL_STATE(3933)] = 142556, - [SMALL_STATE(3934)] = 142629, - [SMALL_STATE(3935)] = 142672, - [SMALL_STATE(3936)] = 142742, - [SMALL_STATE(3937)] = 142816, - [SMALL_STATE(3938)] = 142876, - [SMALL_STATE(3939)] = 142950, - [SMALL_STATE(3940)] = 143024, - [SMALL_STATE(3941)] = 143098, - [SMALL_STATE(3942)] = 143168, - [SMALL_STATE(3943)] = 143242, - [SMALL_STATE(3944)] = 143312, - [SMALL_STATE(3945)] = 143386, - [SMALL_STATE(3946)] = 143446, - [SMALL_STATE(3947)] = 143516, - [SMALL_STATE(3948)] = 143590, - [SMALL_STATE(3949)] = 143660, - [SMALL_STATE(3950)] = 143730, - [SMALL_STATE(3951)] = 143804, - [SMALL_STATE(3952)] = 143878, - [SMALL_STATE(3953)] = 143948, - [SMALL_STATE(3954)] = 143988, - [SMALL_STATE(3955)] = 144062, - [SMALL_STATE(3956)] = 144136, - [SMALL_STATE(3957)] = 144206, - [SMALL_STATE(3958)] = 144276, - [SMALL_STATE(3959)] = 144330, - [SMALL_STATE(3960)] = 144404, - [SMALL_STATE(3961)] = 144478, - [SMALL_STATE(3962)] = 144548, - [SMALL_STATE(3963)] = 144618, - [SMALL_STATE(3964)] = 144692, - [SMALL_STATE(3965)] = 144762, - [SMALL_STATE(3966)] = 144836, - [SMALL_STATE(3967)] = 144910, - [SMALL_STATE(3968)] = 144984, - [SMALL_STATE(3969)] = 145058, - [SMALL_STATE(3970)] = 145132, - [SMALL_STATE(3971)] = 145192, - [SMALL_STATE(3972)] = 145266, - [SMALL_STATE(3973)] = 145336, - [SMALL_STATE(3974)] = 145396, - [SMALL_STATE(3975)] = 145470, - [SMALL_STATE(3976)] = 145544, - [SMALL_STATE(3977)] = 145604, - [SMALL_STATE(3978)] = 145674, - [SMALL_STATE(3979)] = 145716, - [SMALL_STATE(3980)] = 145786, - [SMALL_STATE(3981)] = 145860, - [SMALL_STATE(3982)] = 145934, - [SMALL_STATE(3983)] = 145994, - [SMALL_STATE(3984)] = 146054, - [SMALL_STATE(3985)] = 146128, - [SMALL_STATE(3986)] = 146202, - [SMALL_STATE(3987)] = 146272, - [SMALL_STATE(3988)] = 146332, - [SMALL_STATE(3989)] = 146372, - [SMALL_STATE(3990)] = 146446, - [SMALL_STATE(3991)] = 146516, - [SMALL_STATE(3992)] = 146590, - [SMALL_STATE(3993)] = 146664, - [SMALL_STATE(3994)] = 146734, - [SMALL_STATE(3995)] = 146788, - [SMALL_STATE(3996)] = 146826, - [SMALL_STATE(3997)] = 146870, - [SMALL_STATE(3998)] = 146944, - [SMALL_STATE(3999)] = 147018, - [SMALL_STATE(4000)] = 147088, - [SMALL_STATE(4001)] = 147162, - [SMALL_STATE(4002)] = 147236, - [SMALL_STATE(4003)] = 147290, - [SMALL_STATE(4004)] = 147360, - [SMALL_STATE(4005)] = 147427, - [SMALL_STATE(4006)] = 147494, - [SMALL_STATE(4007)] = 147553, - [SMALL_STATE(4008)] = 147620, - [SMALL_STATE(4009)] = 147687, - [SMALL_STATE(4010)] = 147730, - [SMALL_STATE(4011)] = 147797, - [SMALL_STATE(4012)] = 147840, - [SMALL_STATE(4013)] = 147899, - [SMALL_STATE(4014)] = 147942, - [SMALL_STATE(4015)] = 147985, - [SMALL_STATE(4016)] = 148044, - [SMALL_STATE(4017)] = 148111, - [SMALL_STATE(4018)] = 148178, - [SMALL_STATE(4019)] = 148245, - [SMALL_STATE(4020)] = 148312, - [SMALL_STATE(4021)] = 148379, - [SMALL_STATE(4022)] = 148416, - [SMALL_STATE(4023)] = 148483, - [SMALL_STATE(4024)] = 148550, - [SMALL_STATE(4025)] = 148609, - [SMALL_STATE(4026)] = 148676, - [SMALL_STATE(4027)] = 148743, - [SMALL_STATE(4028)] = 148786, - [SMALL_STATE(4029)] = 148845, - [SMALL_STATE(4030)] = 148888, - [SMALL_STATE(4031)] = 148955, - [SMALL_STATE(4032)] = 149022, - [SMALL_STATE(4033)] = 149059, - [SMALL_STATE(4034)] = 149100, - [SMALL_STATE(4035)] = 149167, - [SMALL_STATE(4036)] = 149212, - [SMALL_STATE(4037)] = 149271, - [SMALL_STATE(4038)] = 149330, - [SMALL_STATE(4039)] = 149397, - [SMALL_STATE(4040)] = 149442, - [SMALL_STATE(4041)] = 149487, - [SMALL_STATE(4042)] = 149546, - [SMALL_STATE(4043)] = 149583, - [SMALL_STATE(4044)] = 149650, - [SMALL_STATE(4045)] = 149717, - [SMALL_STATE(4046)] = 149784, - [SMALL_STATE(4047)] = 149851, - [SMALL_STATE(4048)] = 149918, - [SMALL_STATE(4049)] = 149961, - [SMALL_STATE(4050)] = 150028, - [SMALL_STATE(4051)] = 150064, - [SMALL_STATE(4052)] = 150122, - [SMALL_STATE(4053)] = 150158, - [SMALL_STATE(4054)] = 150198, - [SMALL_STATE(4055)] = 150256, - [SMALL_STATE(4056)] = 150314, - [SMALL_STATE(4057)] = 150358, - [SMALL_STATE(4058)] = 150394, - [SMALL_STATE(4059)] = 150452, - [SMALL_STATE(4060)] = 150494, - [SMALL_STATE(4061)] = 150529, - [SMALL_STATE(4062)] = 150564, - [SMALL_STATE(4063)] = 150619, - [SMALL_STATE(4064)] = 150656, - [SMALL_STATE(4065)] = 150693, - [SMALL_STATE(4066)] = 150730, - [SMALL_STATE(4067)] = 150765, - [SMALL_STATE(4068)] = 150820, - [SMALL_STATE(4069)] = 150863, - [SMALL_STATE(4070)] = 150906, - [SMALL_STATE(4071)] = 150981, - [SMALL_STATE(4072)] = 151016, - [SMALL_STATE(4073)] = 151051, - [SMALL_STATE(4074)] = 151086, - [SMALL_STATE(4075)] = 151141, - [SMALL_STATE(4076)] = 151196, - [SMALL_STATE(4077)] = 151231, - [SMALL_STATE(4078)] = 151266, - [SMALL_STATE(4079)] = 151321, - [SMALL_STATE(4080)] = 151376, - [SMALL_STATE(4081)] = 151411, - [SMALL_STATE(4082)] = 151445, - [SMALL_STATE(4083)] = 151491, - [SMALL_STATE(4084)] = 151537, - [SMALL_STATE(4085)] = 151577, - [SMALL_STATE(4086)] = 151615, - [SMALL_STATE(4087)] = 151661, - [SMALL_STATE(4088)] = 151697, - [SMALL_STATE(4089)] = 151736, - [SMALL_STATE(4090)] = 151777, - [SMALL_STATE(4091)] = 151838, - [SMALL_STATE(4092)] = 151871, - [SMALL_STATE(4093)] = 151912, - [SMALL_STATE(4094)] = 151953, - [SMALL_STATE(4095)] = 152014, - [SMALL_STATE(4096)] = 152055, - [SMALL_STATE(4097)] = 152116, - [SMALL_STATE(4098)] = 152155, - [SMALL_STATE(4099)] = 152192, - [SMALL_STATE(4100)] = 152233, - [SMALL_STATE(4101)] = 152274, - [SMALL_STATE(4102)] = 152335, - [SMALL_STATE(4103)] = 152396, - [SMALL_STATE(4104)] = 152429, - [SMALL_STATE(4105)] = 152466, - [SMALL_STATE(4106)] = 152527, - [SMALL_STATE(4107)] = 152565, - [SMALL_STATE(4108)] = 152619, - [SMALL_STATE(4109)] = 152673, - [SMALL_STATE(4110)] = 152721, - [SMALL_STATE(4111)] = 152775, - [SMALL_STATE(4112)] = 152840, - [SMALL_STATE(4113)] = 152905, - [SMALL_STATE(4114)] = 152970, - [SMALL_STATE(4115)] = 153035, - [SMALL_STATE(4116)] = 153100, - [SMALL_STATE(4117)] = 153133, - [SMALL_STATE(4118)] = 153198, - [SMALL_STATE(4119)] = 153263, - [SMALL_STATE(4120)] = 153328, - [SMALL_STATE(4121)] = 153393, - [SMALL_STATE(4122)] = 153458, - [SMALL_STATE(4123)] = 153523, - [SMALL_STATE(4124)] = 153588, - [SMALL_STATE(4125)] = 153653, - [SMALL_STATE(4126)] = 153718, - [SMALL_STATE(4127)] = 153783, - [SMALL_STATE(4128)] = 153848, - [SMALL_STATE(4129)] = 153913, - [SMALL_STATE(4130)] = 153978, - [SMALL_STATE(4131)] = 154009, - [SMALL_STATE(4132)] = 154074, - [SMALL_STATE(4133)] = 154139, - [SMALL_STATE(4134)] = 154204, - [SMALL_STATE(4135)] = 154269, - [SMALL_STATE(4136)] = 154308, - [SMALL_STATE(4137)] = 154373, - [SMALL_STATE(4138)] = 154438, - [SMALL_STATE(4139)] = 154503, - [SMALL_STATE(4140)] = 154568, - [SMALL_STATE(4141)] = 154633, - [SMALL_STATE(4142)] = 154672, - [SMALL_STATE(4143)] = 154737, - [SMALL_STATE(4144)] = 154802, - [SMALL_STATE(4145)] = 154867, - [SMALL_STATE(4146)] = 154932, - [SMALL_STATE(4147)] = 154997, - [SMALL_STATE(4148)] = 155062, - [SMALL_STATE(4149)] = 155127, - [SMALL_STATE(4150)] = 155192, - [SMALL_STATE(4151)] = 155257, - [SMALL_STATE(4152)] = 155322, - [SMALL_STATE(4153)] = 155369, - [SMALL_STATE(4154)] = 155434, - [SMALL_STATE(4155)] = 155499, - [SMALL_STATE(4156)] = 155564, - [SMALL_STATE(4157)] = 155629, - [SMALL_STATE(4158)] = 155694, - [SMALL_STATE(4159)] = 155759, - [SMALL_STATE(4160)] = 155796, - [SMALL_STATE(4161)] = 155861, - [SMALL_STATE(4162)] = 155926, - [SMALL_STATE(4163)] = 155991, - [SMALL_STATE(4164)] = 156056, - [SMALL_STATE(4165)] = 156121, - [SMALL_STATE(4166)] = 156186, - [SMALL_STATE(4167)] = 156245, - [SMALL_STATE(4168)] = 156310, - [SMALL_STATE(4169)] = 156375, - [SMALL_STATE(4170)] = 156440, - [SMALL_STATE(4171)] = 156505, - [SMALL_STATE(4172)] = 156570, - [SMALL_STATE(4173)] = 156635, - [SMALL_STATE(4174)] = 156700, - [SMALL_STATE(4175)] = 156765, - [SMALL_STATE(4176)] = 156830, - [SMALL_STATE(4177)] = 156895, - [SMALL_STATE(4178)] = 156948, - [SMALL_STATE(4179)] = 157013, - [SMALL_STATE(4180)] = 157078, - [SMALL_STATE(4181)] = 157137, - [SMALL_STATE(4182)] = 157202, - [SMALL_STATE(4183)] = 157267, - [SMALL_STATE(4184)] = 157302, - [SMALL_STATE(4185)] = 157355, - [SMALL_STATE(4186)] = 157420, - [SMALL_STATE(4187)] = 157485, - [SMALL_STATE(4188)] = 157550, - [SMALL_STATE(4189)] = 157585, - [SMALL_STATE(4190)] = 157638, - [SMALL_STATE(4191)] = 157697, - [SMALL_STATE(4192)] = 157762, - [SMALL_STATE(4193)] = 157827, - [SMALL_STATE(4194)] = 157892, - [SMALL_STATE(4195)] = 157922, - [SMALL_STATE(4196)] = 157974, - [SMALL_STATE(4197)] = 158026, - [SMALL_STATE(4198)] = 158078, - [SMALL_STATE(4199)] = 158130, - [SMALL_STATE(4200)] = 158182, - [SMALL_STATE(4201)] = 158234, - [SMALL_STATE(4202)] = 158264, - [SMALL_STATE(4203)] = 158294, - [SMALL_STATE(4204)] = 158346, - [SMALL_STATE(4205)] = 158398, - [SMALL_STATE(4206)] = 158428, - [SMALL_STATE(4207)] = 158480, - [SMALL_STATE(4208)] = 158532, - [SMALL_STATE(4209)] = 158584, - [SMALL_STATE(4210)] = 158614, - [SMALL_STATE(4211)] = 158666, - [SMALL_STATE(4212)] = 158718, - [SMALL_STATE(4213)] = 158770, - [SMALL_STATE(4214)] = 158804, - [SMALL_STATE(4215)] = 158856, - [SMALL_STATE(4216)] = 158908, - [SMALL_STATE(4217)] = 158938, - [SMALL_STATE(4218)] = 158968, - [SMALL_STATE(4219)] = 158998, - [SMALL_STATE(4220)] = 159050, - [SMALL_STATE(4221)] = 159102, - [SMALL_STATE(4222)] = 159154, - [SMALL_STATE(4223)] = 159184, - [SMALL_STATE(4224)] = 159214, - [SMALL_STATE(4225)] = 159266, - [SMALL_STATE(4226)] = 159296, - [SMALL_STATE(4227)] = 159326, - [SMALL_STATE(4228)] = 159378, - [SMALL_STATE(4229)] = 159408, - [SMALL_STATE(4230)] = 159460, - [SMALL_STATE(4231)] = 159490, - [SMALL_STATE(4232)] = 159520, - [SMALL_STATE(4233)] = 159550, - [SMALL_STATE(4234)] = 159580, - [SMALL_STATE(4235)] = 159632, - [SMALL_STATE(4236)] = 159684, - [SMALL_STATE(4237)] = 159736, - [SMALL_STATE(4238)] = 159766, - [SMALL_STATE(4239)] = 159818, - [SMALL_STATE(4240)] = 159848, - [SMALL_STATE(4241)] = 159878, - [SMALL_STATE(4242)] = 159908, - [SMALL_STATE(4243)] = 159938, - [SMALL_STATE(4244)] = 159968, - [SMALL_STATE(4245)] = 159998, - [SMALL_STATE(4246)] = 160050, - [SMALL_STATE(4247)] = 160102, - [SMALL_STATE(4248)] = 160154, - [SMALL_STATE(4249)] = 160184, - [SMALL_STATE(4250)] = 160214, - [SMALL_STATE(4251)] = 160244, - [SMALL_STATE(4252)] = 160274, - [SMALL_STATE(4253)] = 160326, - [SMALL_STATE(4254)] = 160356, - [SMALL_STATE(4255)] = 160408, - [SMALL_STATE(4256)] = 160438, - [SMALL_STATE(4257)] = 160468, - [SMALL_STATE(4258)] = 160520, - [SMALL_STATE(4259)] = 160572, - [SMALL_STATE(4260)] = 160624, - [SMALL_STATE(4261)] = 160654, - [SMALL_STATE(4262)] = 160684, - [SMALL_STATE(4263)] = 160714, - [SMALL_STATE(4264)] = 160744, - [SMALL_STATE(4265)] = 160774, - [SMALL_STATE(4266)] = 160804, - [SMALL_STATE(4267)] = 160856, - [SMALL_STATE(4268)] = 160908, - [SMALL_STATE(4269)] = 160960, - [SMALL_STATE(4270)] = 161012, - [SMALL_STATE(4271)] = 161064, - [SMALL_STATE(4272)] = 161107, - [SMALL_STATE(4273)] = 161150, - [SMALL_STATE(4274)] = 161201, - [SMALL_STATE(4275)] = 161252, - [SMALL_STATE(4276)] = 161295, - [SMALL_STATE(4277)] = 161340, - [SMALL_STATE(4278)] = 161391, - [SMALL_STATE(4279)] = 161442, - [SMALL_STATE(4280)] = 161493, - [SMALL_STATE(4281)] = 161536, - [SMALL_STATE(4282)] = 161579, - [SMALL_STATE(4283)] = 161612, - [SMALL_STATE(4284)] = 161663, - [SMALL_STATE(4285)] = 161718, - [SMALL_STATE(4286)] = 161773, - [SMALL_STATE(4287)] = 161824, - [SMALL_STATE(4288)] = 161875, - [SMALL_STATE(4289)] = 161908, - [SMALL_STATE(4290)] = 161959, - [SMALL_STATE(4291)] = 161999, - [SMALL_STATE(4292)] = 162043, - [SMALL_STATE(4293)] = 162071, - [SMALL_STATE(4294)] = 162127, - [SMALL_STATE(4295)] = 162183, - [SMALL_STATE(4296)] = 162223, - [SMALL_STATE(4297)] = 162279, - [SMALL_STATE(4298)] = 162319, - [SMALL_STATE(4299)] = 162359, - [SMALL_STATE(4300)] = 162399, - [SMALL_STATE(4301)] = 162439, - [SMALL_STATE(4302)] = 162479, - [SMALL_STATE(4303)] = 162519, - [SMALL_STATE(4304)] = 162575, - [SMALL_STATE(4305)] = 162615, - [SMALL_STATE(4306)] = 162671, - [SMALL_STATE(4307)] = 162727, - [SMALL_STATE(4308)] = 162771, - [SMALL_STATE(4309)] = 162827, - [SMALL_STATE(4310)] = 162855, - [SMALL_STATE(4311)] = 162895, - [SMALL_STATE(4312)] = 162923, - [SMALL_STATE(4313)] = 162951, - [SMALL_STATE(4314)] = 162995, - [SMALL_STATE(4315)] = 163023, - [SMALL_STATE(4316)] = 163067, - [SMALL_STATE(4317)] = 163101, - [SMALL_STATE(4318)] = 163145, - [SMALL_STATE(4319)] = 163173, - [SMALL_STATE(4320)] = 163209, - [SMALL_STATE(4321)] = 163249, - [SMALL_STATE(4322)] = 163277, - [SMALL_STATE(4323)] = 163333, - [SMALL_STATE(4324)] = 163377, - [SMALL_STATE(4325)] = 163433, - [SMALL_STATE(4326)] = 163477, - [SMALL_STATE(4327)] = 163533, - [SMALL_STATE(4328)] = 163589, - [SMALL_STATE(4329)] = 163645, - [SMALL_STATE(4330)] = 163707, - [SMALL_STATE(4331)] = 163747, - [SMALL_STATE(4332)] = 163803, - [SMALL_STATE(4333)] = 163865, - [SMALL_STATE(4334)] = 163905, - [SMALL_STATE(4335)] = 163961, - [SMALL_STATE(4336)] = 164005, - [SMALL_STATE(4337)] = 164061, - [SMALL_STATE(4338)] = 164103, - [SMALL_STATE(4339)] = 164143, - [SMALL_STATE(4340)] = 164199, - [SMALL_STATE(4341)] = 164261, - [SMALL_STATE(4342)] = 164305, - [SMALL_STATE(4343)] = 164345, - [SMALL_STATE(4344)] = 164401, - [SMALL_STATE(4345)] = 164441, - [SMALL_STATE(4346)] = 164497, - [SMALL_STATE(4347)] = 164537, - [SMALL_STATE(4348)] = 164581, - [SMALL_STATE(4349)] = 164621, - [SMALL_STATE(4350)] = 164661, - [SMALL_STATE(4351)] = 164717, - [SMALL_STATE(4352)] = 164761, - [SMALL_STATE(4353)] = 164801, - [SMALL_STATE(4354)] = 164857, - [SMALL_STATE(4355)] = 164913, - [SMALL_STATE(4356)] = 164969, - [SMALL_STATE(4357)] = 164999, - [SMALL_STATE(4358)] = 165027, - [SMALL_STATE(4359)] = 165083, - [SMALL_STATE(4360)] = 165123, - [SMALL_STATE(4361)] = 165163, - [SMALL_STATE(4362)] = 165203, - [SMALL_STATE(4363)] = 165243, - [SMALL_STATE(4364)] = 165283, - [SMALL_STATE(4365)] = 165323, - [SMALL_STATE(4366)] = 165363, - [SMALL_STATE(4367)] = 165403, - [SMALL_STATE(4368)] = 165443, - [SMALL_STATE(4369)] = 165499, - [SMALL_STATE(4370)] = 165539, - [SMALL_STATE(4371)] = 165595, - [SMALL_STATE(4372)] = 165635, - [SMALL_STATE(4373)] = 165691, - [SMALL_STATE(4374)] = 165737, - [SMALL_STATE(4375)] = 165777, - [SMALL_STATE(4376)] = 165833, - [SMALL_STATE(4377)] = 165889, - [SMALL_STATE(4378)] = 165945, - [SMALL_STATE(4379)] = 166001, - [SMALL_STATE(4380)] = 166057, - [SMALL_STATE(4381)] = 166103, - [SMALL_STATE(4382)] = 166151, - [SMALL_STATE(4383)] = 166179, - [SMALL_STATE(4384)] = 166235, - [SMALL_STATE(4385)] = 166267, - [SMALL_STATE(4386)] = 166323, - [SMALL_STATE(4387)] = 166379, - [SMALL_STATE(4388)] = 166407, - [SMALL_STATE(4389)] = 166447, - [SMALL_STATE(4390)] = 166491, - [SMALL_STATE(4391)] = 166547, - [SMALL_STATE(4392)] = 166587, - [SMALL_STATE(4393)] = 166643, - [SMALL_STATE(4394)] = 166699, - [SMALL_STATE(4395)] = 166749, - [SMALL_STATE(4396)] = 166805, - [SMALL_STATE(4397)] = 166861, - [SMALL_STATE(4398)] = 166911, - [SMALL_STATE(4399)] = 166967, - [SMALL_STATE(4400)] = 167023, - [SMALL_STATE(4401)] = 167079, - [SMALL_STATE(4402)] = 167135, - [SMALL_STATE(4403)] = 167185, - [SMALL_STATE(4404)] = 167241, - [SMALL_STATE(4405)] = 167297, - [SMALL_STATE(4406)] = 167353, - [SMALL_STATE(4407)] = 167409, - [SMALL_STATE(4408)] = 167465, - [SMALL_STATE(4409)] = 167505, - [SMALL_STATE(4410)] = 167555, - [SMALL_STATE(4411)] = 167600, - [SMALL_STATE(4412)] = 167627, - [SMALL_STATE(4413)] = 167670, - [SMALL_STATE(4414)] = 167713, - [SMALL_STATE(4415)] = 167758, - [SMALL_STATE(4416)] = 167801, - [SMALL_STATE(4417)] = 167844, - [SMALL_STATE(4418)] = 167889, - [SMALL_STATE(4419)] = 167932, - [SMALL_STATE(4420)] = 167975, - [SMALL_STATE(4421)] = 168018, - [SMALL_STATE(4422)] = 168063, - [SMALL_STATE(4423)] = 168090, - [SMALL_STATE(4424)] = 168135, - [SMALL_STATE(4425)] = 168180, - [SMALL_STATE(4426)] = 168207, - [SMALL_STATE(4427)] = 168258, - [SMALL_STATE(4428)] = 168309, - [SMALL_STATE(4429)] = 168354, - [SMALL_STATE(4430)] = 168397, - [SMALL_STATE(4431)] = 168442, - [SMALL_STATE(4432)] = 168481, - [SMALL_STATE(4433)] = 168532, - [SMALL_STATE(4434)] = 168559, - [SMALL_STATE(4435)] = 168608, - [SMALL_STATE(4436)] = 168651, - [SMALL_STATE(4437)] = 168678, - [SMALL_STATE(4438)] = 168719, - [SMALL_STATE(4439)] = 168770, - [SMALL_STATE(4440)] = 168819, - [SMALL_STATE(4441)] = 168846, - [SMALL_STATE(4442)] = 168889, - [SMALL_STATE(4443)] = 168916, - [SMALL_STATE(4444)] = 168943, - [SMALL_STATE(4445)] = 168972, - [SMALL_STATE(4446)] = 169017, - [SMALL_STATE(4447)] = 169062, - [SMALL_STATE(4448)] = 169089, - [SMALL_STATE(4449)] = 169120, - [SMALL_STATE(4450)] = 169151, - [SMALL_STATE(4451)] = 169184, - [SMALL_STATE(4452)] = 169221, - [SMALL_STATE(4453)] = 169256, - [SMALL_STATE(4454)] = 169283, - [SMALL_STATE(4455)] = 169326, - [SMALL_STATE(4456)] = 169384, - [SMALL_STATE(4457)] = 169432, - [SMALL_STATE(4458)] = 169474, - [SMALL_STATE(4459)] = 169532, - [SMALL_STATE(4460)] = 169558, - [SMALL_STATE(4461)] = 169616, - [SMALL_STATE(4462)] = 169664, - [SMALL_STATE(4463)] = 169712, - [SMALL_STATE(4464)] = 169753, - [SMALL_STATE(4465)] = 169802, - [SMALL_STATE(4466)] = 169851, - [SMALL_STATE(4467)] = 169880, - [SMALL_STATE(4468)] = 169921, - [SMALL_STATE(4469)] = 169962, - [SMALL_STATE(4470)] = 170003, - [SMALL_STATE(4471)] = 170044, - [SMALL_STATE(4472)] = 170085, - [SMALL_STATE(4473)] = 170136, - [SMALL_STATE(4474)] = 170177, - [SMALL_STATE(4475)] = 170218, - [SMALL_STATE(4476)] = 170267, - [SMALL_STATE(4477)] = 170316, - [SMALL_STATE(4478)] = 170365, - [SMALL_STATE(4479)] = 170406, - [SMALL_STATE(4480)] = 170455, - [SMALL_STATE(4481)] = 170496, - [SMALL_STATE(4482)] = 170537, - [SMALL_STATE(4483)] = 170578, - [SMALL_STATE(4484)] = 170619, - [SMALL_STATE(4485)] = 170668, - [SMALL_STATE(4486)] = 170717, - [SMALL_STATE(4487)] = 170768, - [SMALL_STATE(4488)] = 170817, - [SMALL_STATE(4489)] = 170868, - [SMALL_STATE(4490)] = 170909, - [SMALL_STATE(4491)] = 170950, - [SMALL_STATE(4492)] = 170999, - [SMALL_STATE(4493)] = 171040, - [SMALL_STATE(4494)] = 171081, - [SMALL_STATE(4495)] = 171122, - [SMALL_STATE(4496)] = 171163, - [SMALL_STATE(4497)] = 171204, - [SMALL_STATE(4498)] = 171253, - [SMALL_STATE(4499)] = 171294, - [SMALL_STATE(4500)] = 171335, - [SMALL_STATE(4501)] = 171384, - [SMALL_STATE(4502)] = 171433, - [SMALL_STATE(4503)] = 171484, - [SMALL_STATE(4504)] = 171533, - [SMALL_STATE(4505)] = 171574, - [SMALL_STATE(4506)] = 171623, - [SMALL_STATE(4507)] = 171652, - [SMALL_STATE(4508)] = 171693, - [SMALL_STATE(4509)] = 171734, - [SMALL_STATE(4510)] = 171783, - [SMALL_STATE(4511)] = 171824, - [SMALL_STATE(4512)] = 171873, - [SMALL_STATE(4513)] = 171914, - [SMALL_STATE(4514)] = 171963, - [SMALL_STATE(4515)] = 172014, - [SMALL_STATE(4516)] = 172063, - [SMALL_STATE(4517)] = 172104, - [SMALL_STATE(4518)] = 172145, - [SMALL_STATE(4519)] = 172194, - [SMALL_STATE(4520)] = 172245, - [SMALL_STATE(4521)] = 172272, - [SMALL_STATE(4522)] = 172313, - [SMALL_STATE(4523)] = 172364, - [SMALL_STATE(4524)] = 172415, - [SMALL_STATE(4525)] = 172456, - [SMALL_STATE(4526)] = 172480, - [SMALL_STATE(4527)] = 172504, - [SMALL_STATE(4528)] = 172528, - [SMALL_STATE(4529)] = 172556, - [SMALL_STATE(4530)] = 172588, - [SMALL_STATE(4531)] = 172612, - [SMALL_STATE(4532)] = 172636, - [SMALL_STATE(4533)] = 172664, - [SMALL_STATE(4534)] = 172692, - [SMALL_STATE(4535)] = 172744, - [SMALL_STATE(4536)] = 172768, - [SMALL_STATE(4537)] = 172796, - [SMALL_STATE(4538)] = 172848, - [SMALL_STATE(4539)] = 172876, - [SMALL_STATE(4540)] = 172900, - [SMALL_STATE(4541)] = 172952, - [SMALL_STATE(4542)] = 172980, - [SMALL_STATE(4543)] = 173004, - [SMALL_STATE(4544)] = 173028, - [SMALL_STATE(4545)] = 173080, - [SMALL_STATE(4546)] = 173108, - [SMALL_STATE(4547)] = 173136, - [SMALL_STATE(4548)] = 173160, - [SMALL_STATE(4549)] = 173192, - [SMALL_STATE(4550)] = 173224, - [SMALL_STATE(4551)] = 173256, - [SMALL_STATE(4552)] = 173308, - [SMALL_STATE(4553)] = 173360, - [SMALL_STATE(4554)] = 173384, - [SMALL_STATE(4555)] = 173424, - [SMALL_STATE(4556)] = 173464, - [SMALL_STATE(4557)] = 173490, - [SMALL_STATE(4558)] = 173514, - [SMALL_STATE(4559)] = 173538, - [SMALL_STATE(4560)] = 173562, - [SMALL_STATE(4561)] = 173594, - [SMALL_STATE(4562)] = 173618, - [SMALL_STATE(4563)] = 173670, - [SMALL_STATE(4564)] = 173710, - [SMALL_STATE(4565)] = 173734, - [SMALL_STATE(4566)] = 173786, - [SMALL_STATE(4567)] = 173810, - [SMALL_STATE(4568)] = 173836, - [SMALL_STATE(4569)] = 173876, - [SMALL_STATE(4570)] = 173900, - [SMALL_STATE(4571)] = 173952, - [SMALL_STATE(4572)] = 173984, - [SMALL_STATE(4573)] = 174008, - [SMALL_STATE(4574)] = 174032, - [SMALL_STATE(4575)] = 174056, - [SMALL_STATE(4576)] = 174096, - [SMALL_STATE(4577)] = 174136, - [SMALL_STATE(4578)] = 174188, - [SMALL_STATE(4579)] = 174216, - [SMALL_STATE(4580)] = 174244, - [SMALL_STATE(4581)] = 174296, - [SMALL_STATE(4582)] = 174336, - [SMALL_STATE(4583)] = 174376, - [SMALL_STATE(4584)] = 174404, - [SMALL_STATE(4585)] = 174456, - [SMALL_STATE(4586)] = 174508, - [SMALL_STATE(4587)] = 174548, - [SMALL_STATE(4588)] = 174572, - [SMALL_STATE(4589)] = 174601, - [SMALL_STATE(4590)] = 174644, - [SMALL_STATE(4591)] = 174689, - [SMALL_STATE(4592)] = 174720, - [SMALL_STATE(4593)] = 174765, - [SMALL_STATE(4594)] = 174802, - [SMALL_STATE(4595)] = 174827, - [SMALL_STATE(4596)] = 174864, - [SMALL_STATE(4597)] = 174909, - [SMALL_STATE(4598)] = 174952, - [SMALL_STATE(4599)] = 174997, - [SMALL_STATE(4600)] = 175028, - [SMALL_STATE(4601)] = 175065, - [SMALL_STATE(4602)] = 175090, - [SMALL_STATE(4603)] = 175133, - [SMALL_STATE(4604)] = 175178, - [SMALL_STATE(4605)] = 175203, - [SMALL_STATE(4606)] = 175248, - [SMALL_STATE(4607)] = 175277, - [SMALL_STATE(4608)] = 175306, - [SMALL_STATE(4609)] = 175331, - [SMALL_STATE(4610)] = 175356, - [SMALL_STATE(4611)] = 175385, - [SMALL_STATE(4612)] = 175414, - [SMALL_STATE(4613)] = 175445, - [SMALL_STATE(4614)] = 175474, - [SMALL_STATE(4615)] = 175519, - [SMALL_STATE(4616)] = 175556, - [SMALL_STATE(4617)] = 175599, - [SMALL_STATE(4618)] = 175636, - [SMALL_STATE(4619)] = 175679, - [SMALL_STATE(4620)] = 175722, - [SMALL_STATE(4621)] = 175751, - [SMALL_STATE(4622)] = 175788, - [SMALL_STATE(4623)] = 175813, - [SMALL_STATE(4624)] = 175856, - [SMALL_STATE(4625)] = 175893, - [SMALL_STATE(4626)] = 175920, - [SMALL_STATE(4627)] = 175951, - [SMALL_STATE(4628)] = 175988, - [SMALL_STATE(4629)] = 176025, - [SMALL_STATE(4630)] = 176068, - [SMALL_STATE(4631)] = 176105, - [SMALL_STATE(4632)] = 176130, - [SMALL_STATE(4633)] = 176173, - [SMALL_STATE(4634)] = 176210, - [SMALL_STATE(4635)] = 176241, - [SMALL_STATE(4636)] = 176278, - [SMALL_STATE(4637)] = 176321, - [SMALL_STATE(4638)] = 176366, - [SMALL_STATE(4639)] = 176403, - [SMALL_STATE(4640)] = 176448, - [SMALL_STATE(4641)] = 176493, - [SMALL_STATE(4642)] = 176518, - [SMALL_STATE(4643)] = 176555, - [SMALL_STATE(4644)] = 176592, - [SMALL_STATE(4645)] = 176629, - [SMALL_STATE(4646)] = 176660, - [SMALL_STATE(4647)] = 176682, - [SMALL_STATE(4648)] = 176720, - [SMALL_STATE(4649)] = 176742, - [SMALL_STATE(4650)] = 176764, - [SMALL_STATE(4651)] = 176796, - [SMALL_STATE(4652)] = 176836, - [SMALL_STATE(4653)] = 176864, - [SMALL_STATE(4654)] = 176886, - [SMALL_STATE(4655)] = 176918, - [SMALL_STATE(4656)] = 176940, - [SMALL_STATE(4657)] = 176982, - [SMALL_STATE(4658)] = 177020, - [SMALL_STATE(4659)] = 177058, - [SMALL_STATE(4660)] = 177080, - [SMALL_STATE(4661)] = 177118, - [SMALL_STATE(4662)] = 177158, - [SMALL_STATE(4663)] = 177196, - [SMALL_STATE(4664)] = 177236, - [SMALL_STATE(4665)] = 177276, - [SMALL_STATE(4666)] = 177308, - [SMALL_STATE(4667)] = 177336, - [SMALL_STATE(4668)] = 177362, - [SMALL_STATE(4669)] = 177400, - [SMALL_STATE(4670)] = 177422, - [SMALL_STATE(4671)] = 177460, - [SMALL_STATE(4672)] = 177500, - [SMALL_STATE(4673)] = 177538, - [SMALL_STATE(4674)] = 177566, - [SMALL_STATE(4675)] = 177588, - [SMALL_STATE(4676)] = 177626, - [SMALL_STATE(4677)] = 177664, - [SMALL_STATE(4678)] = 177690, - [SMALL_STATE(4679)] = 177722, - [SMALL_STATE(4680)] = 177764, - [SMALL_STATE(4681)] = 177804, - [SMALL_STATE(4682)] = 177844, - [SMALL_STATE(4683)] = 177872, - [SMALL_STATE(4684)] = 177894, - [SMALL_STATE(4685)] = 177916, - [SMALL_STATE(4686)] = 177948, - [SMALL_STATE(4687)] = 177970, - [SMALL_STATE(4688)] = 178010, - [SMALL_STATE(4689)] = 178036, - [SMALL_STATE(4690)] = 178076, - [SMALL_STATE(4691)] = 178098, - [SMALL_STATE(4692)] = 178120, - [SMALL_STATE(4693)] = 178142, - [SMALL_STATE(4694)] = 178180, - [SMALL_STATE(4695)] = 178218, - [SMALL_STATE(4696)] = 178256, - [SMALL_STATE(4697)] = 178284, - [SMALL_STATE(4698)] = 178324, - [SMALL_STATE(4699)] = 178364, - [SMALL_STATE(4700)] = 178402, - [SMALL_STATE(4701)] = 178440, - [SMALL_STATE(4702)] = 178478, - [SMALL_STATE(4703)] = 178520, - [SMALL_STATE(4704)] = 178546, - [SMALL_STATE(4705)] = 178584, - [SMALL_STATE(4706)] = 178622, - [SMALL_STATE(4707)] = 178662, - [SMALL_STATE(4708)] = 178700, - [SMALL_STATE(4709)] = 178722, - [SMALL_STATE(4710)] = 178760, - [SMALL_STATE(4711)] = 178788, - [SMALL_STATE(4712)] = 178814, - [SMALL_STATE(4713)] = 178856, - [SMALL_STATE(4714)] = 178894, - [SMALL_STATE(4715)] = 178932, - [SMALL_STATE(4716)] = 178972, - [SMALL_STATE(4717)] = 178994, - [SMALL_STATE(4718)] = 179038, - [SMALL_STATE(4719)] = 179060, - [SMALL_STATE(4720)] = 179086, - [SMALL_STATE(4721)] = 179112, - [SMALL_STATE(4722)] = 179152, - [SMALL_STATE(4723)] = 179180, - [SMALL_STATE(4724)] = 179202, - [SMALL_STATE(4725)] = 179230, - [SMALL_STATE(4726)] = 179270, - [SMALL_STATE(4727)] = 179296, - [SMALL_STATE(4728)] = 179338, - [SMALL_STATE(4729)] = 179360, - [SMALL_STATE(4730)] = 179384, - [SMALL_STATE(4731)] = 179406, - [SMALL_STATE(4732)] = 179446, - [SMALL_STATE(4733)] = 179484, - [SMALL_STATE(4734)] = 179524, - [SMALL_STATE(4735)] = 179562, - [SMALL_STATE(4736)] = 179584, - [SMALL_STATE(4737)] = 179612, - [SMALL_STATE(4738)] = 179650, - [SMALL_STATE(4739)] = 179688, - [SMALL_STATE(4740)] = 179726, - [SMALL_STATE(4741)] = 179745, - [SMALL_STATE(4742)] = 179776, - [SMALL_STATE(4743)] = 179813, - [SMALL_STATE(4744)] = 179842, - [SMALL_STATE(4745)] = 179879, - [SMALL_STATE(4746)] = 179898, - [SMALL_STATE(4747)] = 179917, - [SMALL_STATE(4748)] = 179938, - [SMALL_STATE(4749)] = 179975, - [SMALL_STATE(4750)] = 180000, - [SMALL_STATE(4751)] = 180037, - [SMALL_STATE(4752)] = 180056, - [SMALL_STATE(4753)] = 180093, - [SMALL_STATE(4754)] = 180114, - [SMALL_STATE(4755)] = 180133, - [SMALL_STATE(4756)] = 180162, - [SMALL_STATE(4757)] = 180187, - [SMALL_STATE(4758)] = 180224, - [SMALL_STATE(4759)] = 180261, - [SMALL_STATE(4760)] = 180292, - [SMALL_STATE(4761)] = 180311, - [SMALL_STATE(4762)] = 180336, - [SMALL_STATE(4763)] = 180373, - [SMALL_STATE(4764)] = 180392, - [SMALL_STATE(4765)] = 180411, - [SMALL_STATE(4766)] = 180430, - [SMALL_STATE(4767)] = 180449, - [SMALL_STATE(4768)] = 180468, - [SMALL_STATE(4769)] = 180487, - [SMALL_STATE(4770)] = 180506, - [SMALL_STATE(4771)] = 180525, - [SMALL_STATE(4772)] = 180560, - [SMALL_STATE(4773)] = 180589, - [SMALL_STATE(4774)] = 180614, - [SMALL_STATE(4775)] = 180633, - [SMALL_STATE(4776)] = 180652, - [SMALL_STATE(4777)] = 180671, - [SMALL_STATE(4778)] = 180690, - [SMALL_STATE(4779)] = 180709, - [SMALL_STATE(4780)] = 180738, - [SMALL_STATE(4781)] = 180769, - [SMALL_STATE(4782)] = 180788, - [SMALL_STATE(4783)] = 180825, - [SMALL_STATE(4784)] = 180850, - [SMALL_STATE(4785)] = 180887, - [SMALL_STATE(4786)] = 180906, - [SMALL_STATE(4787)] = 180925, - [SMALL_STATE(4788)] = 180948, - [SMALL_STATE(4789)] = 180973, - [SMALL_STATE(4790)] = 180992, - [SMALL_STATE(4791)] = 181011, - [SMALL_STATE(4792)] = 181040, - [SMALL_STATE(4793)] = 181077, - [SMALL_STATE(4794)] = 181114, - [SMALL_STATE(4795)] = 181133, - [SMALL_STATE(4796)] = 181164, - [SMALL_STATE(4797)] = 181183, - [SMALL_STATE(4798)] = 181216, - [SMALL_STATE(4799)] = 181241, - [SMALL_STATE(4800)] = 181278, - [SMALL_STATE(4801)] = 181297, - [SMALL_STATE(4802)] = 181328, - [SMALL_STATE(4803)] = 181347, - [SMALL_STATE(4804)] = 181366, - [SMALL_STATE(4805)] = 181385, - [SMALL_STATE(4806)] = 181404, - [SMALL_STATE(4807)] = 181423, - [SMALL_STATE(4808)] = 181442, - [SMALL_STATE(4809)] = 181461, - [SMALL_STATE(4810)] = 181480, - [SMALL_STATE(4811)] = 181509, - [SMALL_STATE(4812)] = 181528, - [SMALL_STATE(4813)] = 181561, - [SMALL_STATE(4814)] = 181580, - [SMALL_STATE(4815)] = 181599, - [SMALL_STATE(4816)] = 181632, - [SMALL_STATE(4817)] = 181669, - [SMALL_STATE(4818)] = 181692, - [SMALL_STATE(4819)] = 181729, - [SMALL_STATE(4820)] = 181765, - [SMALL_STATE(4821)] = 181791, - [SMALL_STATE(4822)] = 181825, - [SMALL_STATE(4823)] = 181861, - [SMALL_STATE(4824)] = 181895, - [SMALL_STATE(4825)] = 181929, - [SMALL_STATE(4826)] = 181955, - [SMALL_STATE(4827)] = 181981, - [SMALL_STATE(4828)] = 182011, - [SMALL_STATE(4829)] = 182033, - [SMALL_STATE(4830)] = 182069, - [SMALL_STATE(4831)] = 182105, - [SMALL_STATE(4832)] = 182141, - [SMALL_STATE(4833)] = 182177, - [SMALL_STATE(4834)] = 182213, - [SMALL_STATE(4835)] = 182249, - [SMALL_STATE(4836)] = 182283, - [SMALL_STATE(4837)] = 182319, - [SMALL_STATE(4838)] = 182345, - [SMALL_STATE(4839)] = 182371, - [SMALL_STATE(4840)] = 182407, - [SMALL_STATE(4841)] = 182429, - [SMALL_STATE(4842)] = 182455, - [SMALL_STATE(4843)] = 182481, - [SMALL_STATE(4844)] = 182517, - [SMALL_STATE(4845)] = 182537, - [SMALL_STATE(4846)] = 182563, - [SMALL_STATE(4847)] = 182589, - [SMALL_STATE(4848)] = 182623, - [SMALL_STATE(4849)] = 182653, - [SMALL_STATE(4850)] = 182689, - [SMALL_STATE(4851)] = 182725, - [SMALL_STATE(4852)] = 182751, - [SMALL_STATE(4853)] = 182777, - [SMALL_STATE(4854)] = 182803, - [SMALL_STATE(4855)] = 182829, - [SMALL_STATE(4856)] = 182863, - [SMALL_STATE(4857)] = 182889, - [SMALL_STATE(4858)] = 182915, - [SMALL_STATE(4859)] = 182945, - [SMALL_STATE(4860)] = 182981, - [SMALL_STATE(4861)] = 183003, - [SMALL_STATE(4862)] = 183039, - [SMALL_STATE(4863)] = 183065, - [SMALL_STATE(4864)] = 183101, - [SMALL_STATE(4865)] = 183127, - [SMALL_STATE(4866)] = 183157, - [SMALL_STATE(4867)] = 183193, - [SMALL_STATE(4868)] = 183223, - [SMALL_STATE(4869)] = 183249, - [SMALL_STATE(4870)] = 183283, - [SMALL_STATE(4871)] = 183317, - [SMALL_STATE(4872)] = 183343, - [SMALL_STATE(4873)] = 183379, - [SMALL_STATE(4874)] = 183415, - [SMALL_STATE(4875)] = 183439, - [SMALL_STATE(4876)] = 183475, - [SMALL_STATE(4877)] = 183511, - [SMALL_STATE(4878)] = 183535, - [SMALL_STATE(4879)] = 183565, - [SMALL_STATE(4880)] = 183590, - [SMALL_STATE(4881)] = 183619, - [SMALL_STATE(4882)] = 183644, - [SMALL_STATE(4883)] = 183675, - [SMALL_STATE(4884)] = 183694, - [SMALL_STATE(4885)] = 183729, - [SMALL_STATE(4886)] = 183758, - [SMALL_STATE(4887)] = 183793, - [SMALL_STATE(4888)] = 183824, - [SMALL_STATE(4889)] = 183855, - [SMALL_STATE(4890)] = 183874, - [SMALL_STATE(4891)] = 183909, - [SMALL_STATE(4892)] = 183938, - [SMALL_STATE(4893)] = 183967, - [SMALL_STATE(4894)] = 184002, - [SMALL_STATE(4895)] = 184025, - [SMALL_STATE(4896)] = 184044, - [SMALL_STATE(4897)] = 184069, - [SMALL_STATE(4898)] = 184088, - [SMALL_STATE(4899)] = 184113, - [SMALL_STATE(4900)] = 184138, - [SMALL_STATE(4901)] = 184159, - [SMALL_STATE(4902)] = 184178, - [SMALL_STATE(4903)] = 184197, - [SMALL_STATE(4904)] = 184216, - [SMALL_STATE(4905)] = 184245, - [SMALL_STATE(4906)] = 184270, - [SMALL_STATE(4907)] = 184301, - [SMALL_STATE(4908)] = 184332, - [SMALL_STATE(4909)] = 184351, - [SMALL_STATE(4910)] = 184376, - [SMALL_STATE(4911)] = 184411, - [SMALL_STATE(4912)] = 184434, - [SMALL_STATE(4913)] = 184459, - [SMALL_STATE(4914)] = 184478, - [SMALL_STATE(4915)] = 184497, - [SMALL_STATE(4916)] = 184522, - [SMALL_STATE(4917)] = 184547, - [SMALL_STATE(4918)] = 184572, - [SMALL_STATE(4919)] = 184591, - [SMALL_STATE(4920)] = 184616, - [SMALL_STATE(4921)] = 184647, - [SMALL_STATE(4922)] = 184666, - [SMALL_STATE(4923)] = 184691, - [SMALL_STATE(4924)] = 184714, - [SMALL_STATE(4925)] = 184745, - [SMALL_STATE(4926)] = 184770, - [SMALL_STATE(4927)] = 184795, - [SMALL_STATE(4928)] = 184820, - [SMALL_STATE(4929)] = 184839, - [SMALL_STATE(4930)] = 184864, - [SMALL_STATE(4931)] = 184895, - [SMALL_STATE(4932)] = 184914, - [SMALL_STATE(4933)] = 184939, - [SMALL_STATE(4934)] = 184964, - [SMALL_STATE(4935)] = 184997, - [SMALL_STATE(4936)] = 185016, - [SMALL_STATE(4937)] = 185035, - [SMALL_STATE(4938)] = 185064, - [SMALL_STATE(4939)] = 185095, - [SMALL_STATE(4940)] = 185124, - [SMALL_STATE(4941)] = 185159, - [SMALL_STATE(4942)] = 185194, - [SMALL_STATE(4943)] = 185219, - [SMALL_STATE(4944)] = 185238, - [SMALL_STATE(4945)] = 185257, - [SMALL_STATE(4946)] = 185283, - [SMALL_STATE(4947)] = 185309, - [SMALL_STATE(4948)] = 185327, - [SMALL_STATE(4949)] = 185357, - [SMALL_STATE(4950)] = 185389, - [SMALL_STATE(4951)] = 185419, - [SMALL_STATE(4952)] = 185437, - [SMALL_STATE(4953)] = 185467, - [SMALL_STATE(4954)] = 185497, - [SMALL_STATE(4955)] = 185515, - [SMALL_STATE(4956)] = 185539, - [SMALL_STATE(4957)] = 185569, - [SMALL_STATE(4958)] = 185593, - [SMALL_STATE(4959)] = 185617, - [SMALL_STATE(4960)] = 185643, - [SMALL_STATE(4961)] = 185661, - [SMALL_STATE(4962)] = 185691, - [SMALL_STATE(4963)] = 185713, - [SMALL_STATE(4964)] = 185743, - [SMALL_STATE(4965)] = 185761, - [SMALL_STATE(4966)] = 185785, + [SMALL_STATE(2221)] = 0, + [SMALL_STATE(2222)] = 127, + [SMALL_STATE(2223)] = 202, + [SMALL_STATE(2224)] = 275, + [SMALL_STATE(2225)] = 352, + [SMALL_STATE(2226)] = 431, + [SMALL_STATE(2227)] = 558, + [SMALL_STATE(2228)] = 635, + [SMALL_STATE(2229)] = 714, + [SMALL_STATE(2230)] = 789, + [SMALL_STATE(2231)] = 868, + [SMALL_STATE(2232)] = 947, + [SMALL_STATE(2233)] = 1017, + [SMALL_STATE(2234)] = 1091, + [SMALL_STATE(2235)] = 1211, + [SMALL_STATE(2236)] = 1331, + [SMALL_STATE(2237)] = 1451, + [SMALL_STATE(2238)] = 1571, + [SMALL_STATE(2239)] = 1691, + [SMALL_STATE(2240)] = 1761, + [SMALL_STATE(2241)] = 1881, + [SMALL_STATE(2242)] = 2001, + [SMALL_STATE(2243)] = 2071, + [SMALL_STATE(2244)] = 2191, + [SMALL_STATE(2245)] = 2315, + [SMALL_STATE(2246)] = 2385, + [SMALL_STATE(2247)] = 2505, + [SMALL_STATE(2248)] = 2625, + [SMALL_STATE(2249)] = 2703, + [SMALL_STATE(2250)] = 2823, + [SMALL_STATE(2251)] = 2943, + [SMALL_STATE(2252)] = 3013, + [SMALL_STATE(2253)] = 3087, + [SMALL_STATE(2254)] = 3163, + [SMALL_STATE(2255)] = 3233, + [SMALL_STATE(2256)] = 3303, + [SMALL_STATE(2257)] = 3423, + [SMALL_STATE(2258)] = 3497, + [SMALL_STATE(2259)] = 3573, + [SMALL_STATE(2260)] = 3693, + [SMALL_STATE(2261)] = 3767, + [SMALL_STATE(2262)] = 3836, + [SMALL_STATE(2263)] = 3905, + [SMALL_STATE(2264)] = 3974, + [SMALL_STATE(2265)] = 4043, + [SMALL_STATE(2266)] = 4112, + [SMALL_STATE(2267)] = 4181, + [SMALL_STATE(2268)] = 4258, + [SMALL_STATE(2269)] = 4327, + [SMALL_STATE(2270)] = 4396, + [SMALL_STATE(2271)] = 4465, + [SMALL_STATE(2272)] = 4546, + [SMALL_STATE(2273)] = 4615, + [SMALL_STATE(2274)] = 4684, + [SMALL_STATE(2275)] = 4753, + [SMALL_STATE(2276)] = 4822, + [SMALL_STATE(2277)] = 4891, + [SMALL_STATE(2278)] = 4960, + [SMALL_STATE(2279)] = 5029, + [SMALL_STATE(2280)] = 5098, + [SMALL_STATE(2281)] = 5167, + [SMALL_STATE(2282)] = 5236, + [SMALL_STATE(2283)] = 5305, + [SMALL_STATE(2284)] = 5374, + [SMALL_STATE(2285)] = 5455, + [SMALL_STATE(2286)] = 5524, + [SMALL_STATE(2287)] = 5593, + [SMALL_STATE(2288)] = 5662, + [SMALL_STATE(2289)] = 5731, + [SMALL_STATE(2290)] = 5800, + [SMALL_STATE(2291)] = 5869, + [SMALL_STATE(2292)] = 5938, + [SMALL_STATE(2293)] = 6007, + [SMALL_STATE(2294)] = 6076, + [SMALL_STATE(2295)] = 6145, + [SMALL_STATE(2296)] = 6214, + [SMALL_STATE(2297)] = 6283, + [SMALL_STATE(2298)] = 6352, + [SMALL_STATE(2299)] = 6421, + [SMALL_STATE(2300)] = 6490, + [SMALL_STATE(2301)] = 6559, + [SMALL_STATE(2302)] = 6632, + [SMALL_STATE(2303)] = 6701, + [SMALL_STATE(2304)] = 6770, + [SMALL_STATE(2305)] = 6839, + [SMALL_STATE(2306)] = 6908, + [SMALL_STATE(2307)] = 6989, + [SMALL_STATE(2308)] = 7058, + [SMALL_STATE(2309)] = 7127, + [SMALL_STATE(2310)] = 7196, + [SMALL_STATE(2311)] = 7265, + [SMALL_STATE(2312)] = 7336, + [SMALL_STATE(2313)] = 7405, + [SMALL_STATE(2314)] = 7474, + [SMALL_STATE(2315)] = 7543, + [SMALL_STATE(2316)] = 7612, + [SMALL_STATE(2317)] = 7681, + [SMALL_STATE(2318)] = 7750, + [SMALL_STATE(2319)] = 7819, + [SMALL_STATE(2320)] = 7888, + [SMALL_STATE(2321)] = 7957, + [SMALL_STATE(2322)] = 8026, + [SMALL_STATE(2323)] = 8095, + [SMALL_STATE(2324)] = 8164, + [SMALL_STATE(2325)] = 8233, + [SMALL_STATE(2326)] = 8302, + [SMALL_STATE(2327)] = 8371, + [SMALL_STATE(2328)] = 8440, + [SMALL_STATE(2329)] = 8509, + [SMALL_STATE(2330)] = 8578, + [SMALL_STATE(2331)] = 8647, + [SMALL_STATE(2332)] = 8716, + [SMALL_STATE(2333)] = 8785, + [SMALL_STATE(2334)] = 8854, + [SMALL_STATE(2335)] = 8923, + [SMALL_STATE(2336)] = 8992, + [SMALL_STATE(2337)] = 9061, + [SMALL_STATE(2338)] = 9130, + [SMALL_STATE(2339)] = 9199, + [SMALL_STATE(2340)] = 9268, + [SMALL_STATE(2341)] = 9337, + [SMALL_STATE(2342)] = 9410, + [SMALL_STATE(2343)] = 9479, + [SMALL_STATE(2344)] = 9548, + [SMALL_STATE(2345)] = 9617, + [SMALL_STATE(2346)] = 9686, + [SMALL_STATE(2347)] = 9755, + [SMALL_STATE(2348)] = 9839, + [SMALL_STATE(2349)] = 9911, + [SMALL_STATE(2350)] = 9983, + [SMALL_STATE(2351)] = 10063, + [SMALL_STATE(2352)] = 10147, + [SMALL_STATE(2353)] = 10215, + [SMALL_STATE(2354)] = 10295, + [SMALL_STATE(2355)] = 10379, + [SMALL_STATE(2356)] = 10499, + [SMALL_STATE(2357)] = 10567, + [SMALL_STATE(2358)] = 10639, + [SMALL_STATE(2359)] = 10707, + [SMALL_STATE(2360)] = 10781, + [SMALL_STATE(2361)] = 10853, + [SMALL_STATE(2362)] = 10933, + [SMALL_STATE(2363)] = 11017, + [SMALL_STATE(2364)] = 11085, + [SMALL_STATE(2365)] = 11159, + [SMALL_STATE(2366)] = 11227, + [SMALL_STATE(2367)] = 11295, + [SMALL_STATE(2368)] = 11363, + [SMALL_STATE(2369)] = 11435, + [SMALL_STATE(2370)] = 11507, + [SMALL_STATE(2371)] = 11579, + [SMALL_STATE(2372)] = 11699, + [SMALL_STATE(2373)] = 11771, + [SMALL_STATE(2374)] = 11838, + [SMALL_STATE(2375)] = 11905, + [SMALL_STATE(2376)] = 11972, + [SMALL_STATE(2377)] = 12039, + [SMALL_STATE(2378)] = 12106, + [SMALL_STATE(2379)] = 12173, + [SMALL_STATE(2380)] = 12240, + [SMALL_STATE(2381)] = 12307, + [SMALL_STATE(2382)] = 12426, + [SMALL_STATE(2383)] = 12495, + [SMALL_STATE(2384)] = 12614, + [SMALL_STATE(2385)] = 12681, + [SMALL_STATE(2386)] = 12748, + [SMALL_STATE(2387)] = 12815, + [SMALL_STATE(2388)] = 12934, + [SMALL_STATE(2389)] = 13001, + [SMALL_STATE(2390)] = 13068, + [SMALL_STATE(2391)] = 13135, + [SMALL_STATE(2392)] = 13202, + [SMALL_STATE(2393)] = 13269, + [SMALL_STATE(2394)] = 13336, + [SMALL_STATE(2395)] = 13405, + [SMALL_STATE(2396)] = 13472, + [SMALL_STATE(2397)] = 13551, + [SMALL_STATE(2398)] = 13624, + [SMALL_STATE(2399)] = 13691, + [SMALL_STATE(2400)] = 13758, + [SMALL_STATE(2401)] = 13825, + [SMALL_STATE(2402)] = 13944, + [SMALL_STATE(2403)] = 14063, + [SMALL_STATE(2404)] = 14136, + [SMALL_STATE(2405)] = 14207, + [SMALL_STATE(2406)] = 14274, + [SMALL_STATE(2407)] = 14341, + [SMALL_STATE(2408)] = 14408, + [SMALL_STATE(2409)] = 14475, + [SMALL_STATE(2410)] = 14542, + [SMALL_STATE(2411)] = 14609, + [SMALL_STATE(2412)] = 14676, + [SMALL_STATE(2413)] = 14747, + [SMALL_STATE(2414)] = 14814, + [SMALL_STATE(2415)] = 14883, + [SMALL_STATE(2416)] = 14958, + [SMALL_STATE(2417)] = 15025, + [SMALL_STATE(2418)] = 15092, + [SMALL_STATE(2419)] = 15159, + [SMALL_STATE(2420)] = 15226, + [SMALL_STATE(2421)] = 15293, + [SMALL_STATE(2422)] = 15360, + [SMALL_STATE(2423)] = 15427, + [SMALL_STATE(2424)] = 15494, + [SMALL_STATE(2425)] = 15561, + [SMALL_STATE(2426)] = 15628, + [SMALL_STATE(2427)] = 15697, + [SMALL_STATE(2428)] = 15764, + [SMALL_STATE(2429)] = 15831, + [SMALL_STATE(2430)] = 15898, + [SMALL_STATE(2431)] = 15965, + [SMALL_STATE(2432)] = 16084, + [SMALL_STATE(2433)] = 16151, + [SMALL_STATE(2434)] = 16218, + [SMALL_STATE(2435)] = 16337, + [SMALL_STATE(2436)] = 16404, + [SMALL_STATE(2437)] = 16523, + [SMALL_STATE(2438)] = 16590, + [SMALL_STATE(2439)] = 16657, + [SMALL_STATE(2440)] = 16776, + [SMALL_STATE(2441)] = 16843, + [SMALL_STATE(2442)] = 16910, + [SMALL_STATE(2443)] = 16977, + [SMALL_STATE(2444)] = 17044, + [SMALL_STATE(2445)] = 17111, + [SMALL_STATE(2446)] = 17178, + [SMALL_STATE(2447)] = 17245, + [SMALL_STATE(2448)] = 17312, + [SMALL_STATE(2449)] = 17379, + [SMALL_STATE(2450)] = 17446, + [SMALL_STATE(2451)] = 17513, + [SMALL_STATE(2452)] = 17592, + [SMALL_STATE(2453)] = 17659, + [SMALL_STATE(2454)] = 17778, + [SMALL_STATE(2455)] = 17897, + [SMALL_STATE(2456)] = 17964, + [SMALL_STATE(2457)] = 18031, + [SMALL_STATE(2458)] = 18098, + [SMALL_STATE(2459)] = 18165, + [SMALL_STATE(2460)] = 18284, + [SMALL_STATE(2461)] = 18351, + [SMALL_STATE(2462)] = 18418, + [SMALL_STATE(2463)] = 18537, + [SMALL_STATE(2464)] = 18606, + [SMALL_STATE(2465)] = 18673, + [SMALL_STATE(2466)] = 18740, + [SMALL_STATE(2467)] = 18807, + [SMALL_STATE(2468)] = 18926, + [SMALL_STATE(2469)] = 18993, + [SMALL_STATE(2470)] = 19060, + [SMALL_STATE(2471)] = 19127, + [SMALL_STATE(2472)] = 19246, + [SMALL_STATE(2473)] = 19313, + [SMALL_STATE(2474)] = 19380, + [SMALL_STATE(2475)] = 19447, + [SMALL_STATE(2476)] = 19566, + [SMALL_STATE(2477)] = 19633, + [SMALL_STATE(2478)] = 19700, + [SMALL_STATE(2479)] = 19767, + [SMALL_STATE(2480)] = 19834, + [SMALL_STATE(2481)] = 19901, + [SMALL_STATE(2482)] = 20020, + [SMALL_STATE(2483)] = 20087, + [SMALL_STATE(2484)] = 20162, + [SMALL_STATE(2485)] = 20229, + [SMALL_STATE(2486)] = 20296, + [SMALL_STATE(2487)] = 20363, + [SMALL_STATE(2488)] = 20430, + [SMALL_STATE(2489)] = 20497, + [SMALL_STATE(2490)] = 20564, + [SMALL_STATE(2491)] = 20643, + [SMALL_STATE(2492)] = 20710, + [SMALL_STATE(2493)] = 20777, + [SMALL_STATE(2494)] = 20844, + [SMALL_STATE(2495)] = 20911, + [SMALL_STATE(2496)] = 20978, + [SMALL_STATE(2497)] = 21045, + [SMALL_STATE(2498)] = 21161, + [SMALL_STATE(2499)] = 21233, + [SMALL_STATE(2500)] = 21311, + [SMALL_STATE(2501)] = 21377, + [SMALL_STATE(2502)] = 21443, + [SMALL_STATE(2503)] = 21525, + [SMALL_STATE(2504)] = 21591, + [SMALL_STATE(2505)] = 21665, + [SMALL_STATE(2506)] = 21731, + [SMALL_STATE(2507)] = 21797, + [SMALL_STATE(2508)] = 21863, + [SMALL_STATE(2509)] = 21945, + [SMALL_STATE(2510)] = 22061, + [SMALL_STATE(2511)] = 22131, + [SMALL_STATE(2512)] = 22199, + [SMALL_STATE(2513)] = 22269, + [SMALL_STATE(2514)] = 22343, + [SMALL_STATE(2515)] = 22459, + [SMALL_STATE(2516)] = 22537, + [SMALL_STATE(2517)] = 22603, + [SMALL_STATE(2518)] = 22675, + [SMALL_STATE(2519)] = 22757, + [SMALL_STATE(2520)] = 22823, + [SMALL_STATE(2521)] = 22889, + [SMALL_STATE(2522)] = 22967, + [SMALL_STATE(2523)] = 23035, + [SMALL_STATE(2524)] = 23103, + [SMALL_STATE(2525)] = 23169, + [SMALL_STATE(2526)] = 23235, + [SMALL_STATE(2527)] = 23317, + [SMALL_STATE(2528)] = 23391, + [SMALL_STATE(2529)] = 23463, + [SMALL_STATE(2530)] = 23529, + [SMALL_STATE(2531)] = 23645, + [SMALL_STATE(2532)] = 23710, + [SMALL_STATE(2533)] = 23775, + [SMALL_STATE(2534)] = 23840, + [SMALL_STATE(2535)] = 23913, + [SMALL_STATE(2536)] = 23978, + [SMALL_STATE(2537)] = 24045, + [SMALL_STATE(2538)] = 24110, + [SMALL_STATE(2539)] = 24183, + [SMALL_STATE(2540)] = 24248, + [SMALL_STATE(2541)] = 24313, + [SMALL_STATE(2542)] = 24378, + [SMALL_STATE(2543)] = 24443, + [SMALL_STATE(2544)] = 24508, + [SMALL_STATE(2545)] = 24573, + [SMALL_STATE(2546)] = 24638, + [SMALL_STATE(2547)] = 24703, + [SMALL_STATE(2548)] = 24768, + [SMALL_STATE(2549)] = 24833, + [SMALL_STATE(2550)] = 24898, + [SMALL_STATE(2551)] = 24963, + [SMALL_STATE(2552)] = 25028, + [SMALL_STATE(2553)] = 25093, + [SMALL_STATE(2554)] = 25158, + [SMALL_STATE(2555)] = 25223, + [SMALL_STATE(2556)] = 25288, + [SMALL_STATE(2557)] = 25353, + [SMALL_STATE(2558)] = 25418, + [SMALL_STATE(2559)] = 25483, + [SMALL_STATE(2560)] = 25548, + [SMALL_STATE(2561)] = 25613, + [SMALL_STATE(2562)] = 25678, + [SMALL_STATE(2563)] = 25743, + [SMALL_STATE(2564)] = 25808, + [SMALL_STATE(2565)] = 25873, + [SMALL_STATE(2566)] = 25938, + [SMALL_STATE(2567)] = 26003, + [SMALL_STATE(2568)] = 26068, + [SMALL_STATE(2569)] = 26133, + [SMALL_STATE(2570)] = 26198, + [SMALL_STATE(2571)] = 26263, + [SMALL_STATE(2572)] = 26332, + [SMALL_STATE(2573)] = 26397, + [SMALL_STATE(2574)] = 26462, + [SMALL_STATE(2575)] = 26527, + [SMALL_STATE(2576)] = 26592, + [SMALL_STATE(2577)] = 26657, + [SMALL_STATE(2578)] = 26722, + [SMALL_STATE(2579)] = 26787, + [SMALL_STATE(2580)] = 26852, + [SMALL_STATE(2581)] = 26917, + [SMALL_STATE(2582)] = 26982, + [SMALL_STATE(2583)] = 27047, + [SMALL_STATE(2584)] = 27112, + [SMALL_STATE(2585)] = 27177, + [SMALL_STATE(2586)] = 27242, + [SMALL_STATE(2587)] = 27307, + [SMALL_STATE(2588)] = 27378, + [SMALL_STATE(2589)] = 27443, + [SMALL_STATE(2590)] = 27508, + [SMALL_STATE(2591)] = 27573, + [SMALL_STATE(2592)] = 27638, + [SMALL_STATE(2593)] = 27703, + [SMALL_STATE(2594)] = 27768, + [SMALL_STATE(2595)] = 27833, + [SMALL_STATE(2596)] = 27910, + [SMALL_STATE(2597)] = 27975, + [SMALL_STATE(2598)] = 28040, + [SMALL_STATE(2599)] = 28105, + [SMALL_STATE(2600)] = 28170, + [SMALL_STATE(2601)] = 28235, + [SMALL_STATE(2602)] = 28300, + [SMALL_STATE(2603)] = 28365, + [SMALL_STATE(2604)] = 28430, + [SMALL_STATE(2605)] = 28499, + [SMALL_STATE(2606)] = 28564, + [SMALL_STATE(2607)] = 28629, + [SMALL_STATE(2608)] = 28694, + [SMALL_STATE(2609)] = 28759, + [SMALL_STATE(2610)] = 28824, + [SMALL_STATE(2611)] = 28889, + [SMALL_STATE(2612)] = 28954, + [SMALL_STATE(2613)] = 29019, + [SMALL_STATE(2614)] = 29084, + [SMALL_STATE(2615)] = 29149, + [SMALL_STATE(2616)] = 29220, + [SMALL_STATE(2617)] = 29285, + [SMALL_STATE(2618)] = 29350, + [SMALL_STATE(2619)] = 29415, + [SMALL_STATE(2620)] = 29480, + [SMALL_STATE(2621)] = 29545, + [SMALL_STATE(2622)] = 29610, + [SMALL_STATE(2623)] = 29677, + [SMALL_STATE(2624)] = 29742, + [SMALL_STATE(2625)] = 29807, + [SMALL_STATE(2626)] = 29872, + [SMALL_STATE(2627)] = 29937, + [SMALL_STATE(2628)] = 30002, + [SMALL_STATE(2629)] = 30067, + [SMALL_STATE(2630)] = 30132, + [SMALL_STATE(2631)] = 30197, + [SMALL_STATE(2632)] = 30262, + [SMALL_STATE(2633)] = 30327, + [SMALL_STATE(2634)] = 30392, + [SMALL_STATE(2635)] = 30457, + [SMALL_STATE(2636)] = 30522, + [SMALL_STATE(2637)] = 30587, + [SMALL_STATE(2638)] = 30652, + [SMALL_STATE(2639)] = 30717, + [SMALL_STATE(2640)] = 30782, + [SMALL_STATE(2641)] = 30847, + [SMALL_STATE(2642)] = 30912, + [SMALL_STATE(2643)] = 30977, + [SMALL_STATE(2644)] = 31042, + [SMALL_STATE(2645)] = 31107, + [SMALL_STATE(2646)] = 31172, + [SMALL_STATE(2647)] = 31237, + [SMALL_STATE(2648)] = 31302, + [SMALL_STATE(2649)] = 31367, + [SMALL_STATE(2650)] = 31432, + [SMALL_STATE(2651)] = 31497, + [SMALL_STATE(2652)] = 31562, + [SMALL_STATE(2653)] = 31627, + [SMALL_STATE(2654)] = 31692, + [SMALL_STATE(2655)] = 31757, + [SMALL_STATE(2656)] = 31822, + [SMALL_STATE(2657)] = 31887, + [SMALL_STATE(2658)] = 31952, + [SMALL_STATE(2659)] = 32017, + [SMALL_STATE(2660)] = 32082, + [SMALL_STATE(2661)] = 32147, + [SMALL_STATE(2662)] = 32212, + [SMALL_STATE(2663)] = 32279, + [SMALL_STATE(2664)] = 32344, + [SMALL_STATE(2665)] = 32409, + [SMALL_STATE(2666)] = 32474, + [SMALL_STATE(2667)] = 32539, + [SMALL_STATE(2668)] = 32604, + [SMALL_STATE(2669)] = 32681, + [SMALL_STATE(2670)] = 32750, + [SMALL_STATE(2671)] = 32815, + [SMALL_STATE(2672)] = 32880, + [SMALL_STATE(2673)] = 32945, + [SMALL_STATE(2674)] = 33010, + [SMALL_STATE(2675)] = 33079, + [SMALL_STATE(2676)] = 33144, + [SMALL_STATE(2677)] = 33209, + [SMALL_STATE(2678)] = 33274, + [SMALL_STATE(2679)] = 33339, + [SMALL_STATE(2680)] = 33404, + [SMALL_STATE(2681)] = 33469, + [SMALL_STATE(2682)] = 33536, + [SMALL_STATE(2683)] = 33601, + [SMALL_STATE(2684)] = 33666, + [SMALL_STATE(2685)] = 33731, + [SMALL_STATE(2686)] = 33796, + [SMALL_STATE(2687)] = 33861, + [SMALL_STATE(2688)] = 33926, + [SMALL_STATE(2689)] = 33991, + [SMALL_STATE(2690)] = 34056, + [SMALL_STATE(2691)] = 34121, + [SMALL_STATE(2692)] = 34186, + [SMALL_STATE(2693)] = 34251, + [SMALL_STATE(2694)] = 34316, + [SMALL_STATE(2695)] = 34381, + [SMALL_STATE(2696)] = 34446, + [SMALL_STATE(2697)] = 34511, + [SMALL_STATE(2698)] = 34576, + [SMALL_STATE(2699)] = 34653, + [SMALL_STATE(2700)] = 34718, + [SMALL_STATE(2701)] = 34783, + [SMALL_STATE(2702)] = 34848, + [SMALL_STATE(2703)] = 34913, + [SMALL_STATE(2704)] = 34978, + [SMALL_STATE(2705)] = 35043, + [SMALL_STATE(2706)] = 35108, + [SMALL_STATE(2707)] = 35173, + [SMALL_STATE(2708)] = 35244, + [SMALL_STATE(2709)] = 35309, + [SMALL_STATE(2710)] = 35374, + [SMALL_STATE(2711)] = 35439, + [SMALL_STATE(2712)] = 35510, + [SMALL_STATE(2713)] = 35575, + [SMALL_STATE(2714)] = 35640, + [SMALL_STATE(2715)] = 35705, + [SMALL_STATE(2716)] = 35770, + [SMALL_STATE(2717)] = 35835, + [SMALL_STATE(2718)] = 35900, + [SMALL_STATE(2719)] = 35967, + [SMALL_STATE(2720)] = 36032, + [SMALL_STATE(2721)] = 36096, + [SMALL_STATE(2722)] = 36160, + [SMALL_STATE(2723)] = 36230, + [SMALL_STATE(2724)] = 36294, + [SMALL_STATE(2725)] = 36358, + [SMALL_STATE(2726)] = 36422, + [SMALL_STATE(2727)] = 36486, + [SMALL_STATE(2728)] = 36550, + [SMALL_STATE(2729)] = 36614, + [SMALL_STATE(2730)] = 36678, + [SMALL_STATE(2731)] = 36742, + [SMALL_STATE(2732)] = 36806, + [SMALL_STATE(2733)] = 36870, + [SMALL_STATE(2734)] = 36934, + [SMALL_STATE(2735)] = 37002, + [SMALL_STATE(2736)] = 37082, + [SMALL_STATE(2737)] = 37152, + [SMALL_STATE(2738)] = 37216, + [SMALL_STATE(2739)] = 37280, + [SMALL_STATE(2740)] = 37346, + [SMALL_STATE(2741)] = 37410, + [SMALL_STATE(2742)] = 37474, + [SMALL_STATE(2743)] = 37538, + [SMALL_STATE(2744)] = 37602, + [SMALL_STATE(2745)] = 37666, + [SMALL_STATE(2746)] = 37730, + [SMALL_STATE(2747)] = 37794, + [SMALL_STATE(2748)] = 37858, + [SMALL_STATE(2749)] = 37922, + [SMALL_STATE(2750)] = 37986, + [SMALL_STATE(2751)] = 38050, + [SMALL_STATE(2752)] = 38114, + [SMALL_STATE(2753)] = 38184, + [SMALL_STATE(2754)] = 38260, + [SMALL_STATE(2755)] = 38324, + [SMALL_STATE(2756)] = 38388, + [SMALL_STATE(2757)] = 38452, + [SMALL_STATE(2758)] = 38516, + [SMALL_STATE(2759)] = 38588, + [SMALL_STATE(2760)] = 38652, + [SMALL_STATE(2761)] = 38716, + [SMALL_STATE(2762)] = 38780, + [SMALL_STATE(2763)] = 38844, + [SMALL_STATE(2764)] = 38908, + [SMALL_STATE(2765)] = 38972, + [SMALL_STATE(2766)] = 39036, + [SMALL_STATE(2767)] = 39108, + [SMALL_STATE(2768)] = 39172, + [SMALL_STATE(2769)] = 39236, + [SMALL_STATE(2770)] = 39300, + [SMALL_STATE(2771)] = 39364, + [SMALL_STATE(2772)] = 39428, + [SMALL_STATE(2773)] = 39492, + [SMALL_STATE(2774)] = 39556, + [SMALL_STATE(2775)] = 39620, + [SMALL_STATE(2776)] = 39684, + [SMALL_STATE(2777)] = 39748, + [SMALL_STATE(2778)] = 39812, + [SMALL_STATE(2779)] = 39876, + [SMALL_STATE(2780)] = 39940, + [SMALL_STATE(2781)] = 40006, + [SMALL_STATE(2782)] = 40070, + [SMALL_STATE(2783)] = 40134, + [SMALL_STATE(2784)] = 40198, + [SMALL_STATE(2785)] = 40278, + [SMALL_STATE(2786)] = 40344, + [SMALL_STATE(2787)] = 40414, + [SMALL_STATE(2788)] = 40478, + [SMALL_STATE(2789)] = 40558, + [SMALL_STATE(2790)] = 40622, + [SMALL_STATE(2791)] = 40686, + [SMALL_STATE(2792)] = 40750, + [SMALL_STATE(2793)] = 40814, + [SMALL_STATE(2794)] = 40890, + [SMALL_STATE(2795)] = 40954, + [SMALL_STATE(2796)] = 41018, + [SMALL_STATE(2797)] = 41082, + [SMALL_STATE(2798)] = 41146, + [SMALL_STATE(2799)] = 41210, + [SMALL_STATE(2800)] = 41274, + [SMALL_STATE(2801)] = 41338, + [SMALL_STATE(2802)] = 41402, + [SMALL_STATE(2803)] = 41466, + [SMALL_STATE(2804)] = 41530, + [SMALL_STATE(2805)] = 41594, + [SMALL_STATE(2806)] = 41664, + [SMALL_STATE(2807)] = 41728, + [SMALL_STATE(2808)] = 41792, + [SMALL_STATE(2809)] = 41856, + [SMALL_STATE(2810)] = 41920, + [SMALL_STATE(2811)] = 41986, + [SMALL_STATE(2812)] = 42066, + [SMALL_STATE(2813)] = 42130, + [SMALL_STATE(2814)] = 42194, + [SMALL_STATE(2815)] = 42260, + [SMALL_STATE(2816)] = 42330, + [SMALL_STATE(2817)] = 42394, + [SMALL_STATE(2818)] = 42460, + [SMALL_STATE(2819)] = 42536, + [SMALL_STATE(2820)] = 42600, + [SMALL_STATE(2821)] = 42672, + [SMALL_STATE(2822)] = 42742, + [SMALL_STATE(2823)] = 42806, + [SMALL_STATE(2824)] = 42870, + [SMALL_STATE(2825)] = 42934, + [SMALL_STATE(2826)] = 42998, + [SMALL_STATE(2827)] = 43062, + [SMALL_STATE(2828)] = 43126, + [SMALL_STATE(2829)] = 43194, + [SMALL_STATE(2830)] = 43258, + [SMALL_STATE(2831)] = 43322, + [SMALL_STATE(2832)] = 43386, + [SMALL_STATE(2833)] = 43450, + [SMALL_STATE(2834)] = 43519, + [SMALL_STATE(2835)] = 43590, + [SMALL_STATE(2836)] = 43657, + [SMALL_STATE(2837)] = 43724, + [SMALL_STATE(2838)] = 43801, + [SMALL_STATE(2839)] = 43864, + [SMALL_STATE(2840)] = 43929, + [SMALL_STATE(2841)] = 44008, + [SMALL_STATE(2842)] = 44073, + [SMALL_STATE(2843)] = 44136, + [SMALL_STATE(2844)] = 44213, + [SMALL_STATE(2845)] = 44292, + [SMALL_STATE(2846)] = 44357, + [SMALL_STATE(2847)] = 44422, + [SMALL_STATE(2848)] = 44501, + [SMALL_STATE(2849)] = 44564, + [SMALL_STATE(2850)] = 44635, + [SMALL_STATE(2851)] = 44698, + [SMALL_STATE(2852)] = 44761, + [SMALL_STATE(2853)] = 44824, + [SMALL_STATE(2854)] = 44899, + [SMALL_STATE(2855)] = 44962, + [SMALL_STATE(2856)] = 45029, + [SMALL_STATE(2857)] = 45092, + [SMALL_STATE(2858)] = 45157, + [SMALL_STATE(2859)] = 45236, + [SMALL_STATE(2860)] = 45299, + [SMALL_STATE(2861)] = 45370, + [SMALL_STATE(2862)] = 45435, + [SMALL_STATE(2863)] = 45497, + [SMALL_STATE(2864)] = 45561, + [SMALL_STATE(2865)] = 45623, + [SMALL_STATE(2866)] = 45687, + [SMALL_STATE(2867)] = 45755, + [SMALL_STATE(2868)] = 45817, + [SMALL_STATE(2869)] = 45879, + [SMALL_STATE(2870)] = 45941, + [SMALL_STATE(2871)] = 46003, + [SMALL_STATE(2872)] = 46065, + [SMALL_STATE(2873)] = 46127, + [SMALL_STATE(2874)] = 46189, + [SMALL_STATE(2875)] = 46251, + [SMALL_STATE(2876)] = 46313, + [SMALL_STATE(2877)] = 46379, + [SMALL_STATE(2878)] = 46441, + [SMALL_STATE(2879)] = 46503, + [SMALL_STATE(2880)] = 46565, + [SMALL_STATE(2881)] = 46627, + [SMALL_STATE(2882)] = 46689, + [SMALL_STATE(2883)] = 46763, + [SMALL_STATE(2884)] = 46825, + [SMALL_STATE(2885)] = 46887, + [SMALL_STATE(2886)] = 46949, + [SMALL_STATE(2887)] = 47019, + [SMALL_STATE(2888)] = 47087, + [SMALL_STATE(2889)] = 47149, + [SMALL_STATE(2890)] = 47215, + [SMALL_STATE(2891)] = 47281, + [SMALL_STATE(2892)] = 47345, + [SMALL_STATE(2893)] = 47413, + [SMALL_STATE(2894)] = 47479, + [SMALL_STATE(2895)] = 47557, + [SMALL_STATE(2896)] = 47633, + [SMALL_STATE(2897)] = 47695, + [SMALL_STATE(2898)] = 47769, + [SMALL_STATE(2899)] = 47839, + [SMALL_STATE(2900)] = 47907, + [SMALL_STATE(2901)] = 47977, + [SMALL_STATE(2902)] = 48041, + [SMALL_STATE(2903)] = 48111, + [SMALL_STATE(2904)] = 48173, + [SMALL_STATE(2905)] = 48235, + [SMALL_STATE(2906)] = 48297, + [SMALL_STATE(2907)] = 48367, + [SMALL_STATE(2908)] = 48429, + [SMALL_STATE(2909)] = 48491, + [SMALL_STATE(2910)] = 48553, + [SMALL_STATE(2911)] = 48615, + [SMALL_STATE(2912)] = 48677, + [SMALL_STATE(2913)] = 48739, + [SMALL_STATE(2914)] = 48801, + [SMALL_STATE(2915)] = 48863, + [SMALL_STATE(2916)] = 48925, + [SMALL_STATE(2917)] = 48987, + [SMALL_STATE(2918)] = 49049, + [SMALL_STATE(2919)] = 49111, + [SMALL_STATE(2920)] = 49177, + [SMALL_STATE(2921)] = 49239, + [SMALL_STATE(2922)] = 49301, + [SMALL_STATE(2923)] = 49367, + [SMALL_STATE(2924)] = 49429, + [SMALL_STATE(2925)] = 49491, + [SMALL_STATE(2926)] = 49553, + [SMALL_STATE(2927)] = 49615, + [SMALL_STATE(2928)] = 49677, + [SMALL_STATE(2929)] = 49739, + [SMALL_STATE(2930)] = 49801, + [SMALL_STATE(2931)] = 49863, + [SMALL_STATE(2932)] = 49929, + [SMALL_STATE(2933)] = 49991, + [SMALL_STATE(2934)] = 50059, + [SMALL_STATE(2935)] = 50121, + [SMALL_STATE(2936)] = 50183, + [SMALL_STATE(2937)] = 50245, + [SMALL_STATE(2938)] = 50309, + [SMALL_STATE(2939)] = 50381, + [SMALL_STATE(2940)] = 50443, + [SMALL_STATE(2941)] = 50505, + [SMALL_STATE(2942)] = 50567, + [SMALL_STATE(2943)] = 50629, + [SMALL_STATE(2944)] = 50691, + [SMALL_STATE(2945)] = 50753, + [SMALL_STATE(2946)] = 50817, + [SMALL_STATE(2947)] = 50878, + [SMALL_STATE(2948)] = 50945, + [SMALL_STATE(2949)] = 51010, + [SMALL_STATE(2950)] = 51073, + [SMALL_STATE(2951)] = 51148, + [SMALL_STATE(2952)] = 51221, + [SMALL_STATE(2953)] = 51282, + [SMALL_STATE(2954)] = 51343, + [SMALL_STATE(2955)] = 51404, + [SMALL_STATE(2956)] = 51505, + [SMALL_STATE(2957)] = 51566, + [SMALL_STATE(2958)] = 51629, + [SMALL_STATE(2959)] = 51690, + [SMALL_STATE(2960)] = 51765, + [SMALL_STATE(2961)] = 51826, + [SMALL_STATE(2962)] = 51893, + [SMALL_STATE(2963)] = 51990, + [SMALL_STATE(2964)] = 52083, + [SMALL_STATE(2965)] = 52174, + [SMALL_STATE(2966)] = 52239, + [SMALL_STATE(2967)] = 52326, + [SMALL_STATE(2968)] = 52391, + [SMALL_STATE(2969)] = 52452, + [SMALL_STATE(2970)] = 52519, + [SMALL_STATE(2971)] = 52604, + [SMALL_STATE(2972)] = 52685, + [SMALL_STATE(2973)] = 52746, + [SMALL_STATE(2974)] = 52807, + [SMALL_STATE(2975)] = 52884, + [SMALL_STATE(2976)] = 52963, + [SMALL_STATE(2977)] = 53024, + [SMALL_STATE(2978)] = 53089, + [SMALL_STATE(2979)] = 53164, + [SMALL_STATE(2980)] = 53243, + [SMALL_STATE(2981)] = 53304, + [SMALL_STATE(2982)] = 53365, + [SMALL_STATE(2983)] = 53426, + [SMALL_STATE(2984)] = 53487, + [SMALL_STATE(2985)] = 53560, + [SMALL_STATE(2986)] = 53621, + [SMALL_STATE(2987)] = 53690, + [SMALL_STATE(2988)] = 53751, + [SMALL_STATE(2989)] = 53812, + [SMALL_STATE(2990)] = 53873, + [SMALL_STATE(2991)] = 53934, + [SMALL_STATE(2992)] = 53999, + [SMALL_STATE(2993)] = 54060, + [SMALL_STATE(2994)] = 54121, + [SMALL_STATE(2995)] = 54228, + [SMALL_STATE(2996)] = 54289, + [SMALL_STATE(2997)] = 54350, + [SMALL_STATE(2998)] = 54411, + [SMALL_STATE(2999)] = 54486, + [SMALL_STATE(3000)] = 54553, + [SMALL_STATE(3001)] = 54658, + [SMALL_STATE(3002)] = 54719, + [SMALL_STATE(3003)] = 54780, + [SMALL_STATE(3004)] = 54847, + [SMALL_STATE(3005)] = 54914, + [SMALL_STATE(3006)] = 54975, + [SMALL_STATE(3007)] = 55036, + [SMALL_STATE(3008)] = 55097, + [SMALL_STATE(3009)] = 55162, + [SMALL_STATE(3010)] = 55223, + [SMALL_STATE(3011)] = 55288, + [SMALL_STATE(3012)] = 55349, + [SMALL_STATE(3013)] = 55410, + [SMALL_STATE(3014)] = 55519, + [SMALL_STATE(3015)] = 55580, + [SMALL_STATE(3016)] = 55641, + [SMALL_STATE(3017)] = 55746, + [SMALL_STATE(3018)] = 55821, + [SMALL_STATE(3019)] = 55892, + [SMALL_STATE(3020)] = 55953, + [SMALL_STATE(3021)] = 56014, + [SMALL_STATE(3022)] = 56075, + [SMALL_STATE(3023)] = 56150, + [SMALL_STATE(3024)] = 56225, + [SMALL_STATE(3025)] = 56298, + [SMALL_STATE(3026)] = 56379, + [SMALL_STATE(3027)] = 56440, + [SMALL_STATE(3028)] = 56503, + [SMALL_STATE(3029)] = 56564, + [SMALL_STATE(3030)] = 56625, + [SMALL_STATE(3031)] = 56686, + [SMALL_STATE(3032)] = 56791, + [SMALL_STATE(3033)] = 56862, + [SMALL_STATE(3034)] = 56937, + [SMALL_STATE(3035)] = 56998, + [SMALL_STATE(3036)] = 57059, + [SMALL_STATE(3037)] = 57120, + [SMALL_STATE(3038)] = 57181, + [SMALL_STATE(3039)] = 57250, + [SMALL_STATE(3040)] = 57323, + [SMALL_STATE(3041)] = 57390, + [SMALL_STATE(3042)] = 57451, + [SMALL_STATE(3043)] = 57512, + [SMALL_STATE(3044)] = 57573, + [SMALL_STATE(3045)] = 57634, + [SMALL_STATE(3046)] = 57695, + [SMALL_STATE(3047)] = 57760, + [SMALL_STATE(3048)] = 57839, + [SMALL_STATE(3049)] = 57900, + [SMALL_STATE(3050)] = 57961, + [SMALL_STATE(3051)] = 58070, + [SMALL_STATE(3052)] = 58131, + [SMALL_STATE(3053)] = 58192, + [SMALL_STATE(3054)] = 58253, + [SMALL_STATE(3055)] = 58314, + [SMALL_STATE(3056)] = 58375, + [SMALL_STATE(3057)] = 58436, + [SMALL_STATE(3058)] = 58497, + [SMALL_STATE(3059)] = 58558, + [SMALL_STATE(3060)] = 58619, + [SMALL_STATE(3061)] = 58724, + [SMALL_STATE(3062)] = 58785, + [SMALL_STATE(3063)] = 58848, + [SMALL_STATE(3064)] = 58909, + [SMALL_STATE(3065)] = 58970, + [SMALL_STATE(3066)] = 59031, + [SMALL_STATE(3067)] = 59092, + [SMALL_STATE(3068)] = 59153, + [SMALL_STATE(3069)] = 59214, + [SMALL_STATE(3070)] = 59275, + [SMALL_STATE(3071)] = 59336, + [SMALL_STATE(3072)] = 59440, + [SMALL_STATE(3073)] = 59500, + [SMALL_STATE(3074)] = 59604, + [SMALL_STATE(3075)] = 59664, + [SMALL_STATE(3076)] = 59724, + [SMALL_STATE(3077)] = 59786, + [SMALL_STATE(3078)] = 59846, + [SMALL_STATE(3079)] = 59912, + [SMALL_STATE(3080)] = 59978, + [SMALL_STATE(3081)] = 60046, + [SMALL_STATE(3082)] = 60124, + [SMALL_STATE(3083)] = 60226, + [SMALL_STATE(3084)] = 60294, + [SMALL_STATE(3085)] = 60354, + [SMALL_STATE(3086)] = 60416, + [SMALL_STATE(3087)] = 60482, + [SMALL_STATE(3088)] = 60542, + [SMALL_STATE(3089)] = 60602, + [SMALL_STATE(3090)] = 60662, + [SMALL_STATE(3091)] = 60722, + [SMALL_STATE(3092)] = 60824, + [SMALL_STATE(3093)] = 60884, + [SMALL_STATE(3094)] = 60944, + [SMALL_STATE(3095)] = 61004, + [SMALL_STATE(3096)] = 61064, + [SMALL_STATE(3097)] = 61124, + [SMALL_STATE(3098)] = 61184, + [SMALL_STATE(3099)] = 61288, + [SMALL_STATE(3100)] = 61348, + [SMALL_STATE(3101)] = 61408, + [SMALL_STATE(3102)] = 61468, + [SMALL_STATE(3103)] = 61530, + [SMALL_STATE(3104)] = 61596, + [SMALL_STATE(3105)] = 61656, + [SMALL_STATE(3106)] = 61722, + [SMALL_STATE(3107)] = 61792, + [SMALL_STATE(3108)] = 61852, + [SMALL_STATE(3109)] = 61920, + [SMALL_STATE(3110)] = 61980, + [SMALL_STATE(3111)] = 62052, + [SMALL_STATE(3112)] = 62112, + [SMALL_STATE(3113)] = 62172, + [SMALL_STATE(3114)] = 62232, + [SMALL_STATE(3115)] = 62292, + [SMALL_STATE(3116)] = 62352, + [SMALL_STATE(3117)] = 62412, + [SMALL_STATE(3118)] = 62472, + [SMALL_STATE(3119)] = 62532, + [SMALL_STATE(3120)] = 62592, + [SMALL_STATE(3121)] = 62652, + [SMALL_STATE(3122)] = 62712, + [SMALL_STATE(3123)] = 62784, + [SMALL_STATE(3124)] = 62844, + [SMALL_STATE(3125)] = 62904, + [SMALL_STATE(3126)] = 62976, + [SMALL_STATE(3127)] = 63036, + [SMALL_STATE(3128)] = 63096, + [SMALL_STATE(3129)] = 63156, + [SMALL_STATE(3130)] = 63216, + [SMALL_STATE(3131)] = 63286, + [SMALL_STATE(3132)] = 63350, + [SMALL_STATE(3133)] = 63410, + [SMALL_STATE(3134)] = 63476, + [SMALL_STATE(3135)] = 63536, + [SMALL_STATE(3136)] = 63596, + [SMALL_STATE(3137)] = 63690, + [SMALL_STATE(3138)] = 63750, + [SMALL_STATE(3139)] = 63840, + [SMALL_STATE(3140)] = 63900, + [SMALL_STATE(3141)] = 63960, + [SMALL_STATE(3142)] = 64020, + [SMALL_STATE(3143)] = 64084, + [SMALL_STATE(3144)] = 64144, + [SMALL_STATE(3145)] = 64204, + [SMALL_STATE(3146)] = 64264, + [SMALL_STATE(3147)] = 64324, + [SMALL_STATE(3148)] = 64412, + [SMALL_STATE(3149)] = 64472, + [SMALL_STATE(3150)] = 64556, + [SMALL_STATE(3151)] = 64638, + [SMALL_STATE(3152)] = 64698, + [SMALL_STATE(3153)] = 64758, + [SMALL_STATE(3154)] = 64820, + [SMALL_STATE(3155)] = 64898, + [SMALL_STATE(3156)] = 64958, + [SMALL_STATE(3157)] = 65018, + [SMALL_STATE(3158)] = 65092, + [SMALL_STATE(3159)] = 65168, + [SMALL_STATE(3160)] = 65228, + [SMALL_STATE(3161)] = 65288, + [SMALL_STATE(3162)] = 65348, + [SMALL_STATE(3163)] = 65408, + [SMALL_STATE(3164)] = 65468, + [SMALL_STATE(3165)] = 65528, + [SMALL_STATE(3166)] = 65596, + [SMALL_STATE(3167)] = 65656, + [SMALL_STATE(3168)] = 65726, + [SMALL_STATE(3169)] = 65786, + [SMALL_STATE(3170)] = 65856, + [SMALL_STATE(3171)] = 65916, + [SMALL_STATE(3172)] = 65976, + [SMALL_STATE(3173)] = 66078, + [SMALL_STATE(3174)] = 66138, + [SMALL_STATE(3175)] = 66198, + [SMALL_STATE(3176)] = 66258, + [SMALL_STATE(3177)] = 66318, + [SMALL_STATE(3178)] = 66416, + [SMALL_STATE(3179)] = 66482, + [SMALL_STATE(3180)] = 66542, + [SMALL_STATE(3181)] = 66648, + [SMALL_STATE(3182)] = 66708, + [SMALL_STATE(3183)] = 66768, + [SMALL_STATE(3184)] = 66828, + [SMALL_STATE(3185)] = 66888, + [SMALL_STATE(3186)] = 66948, + [SMALL_STATE(3187)] = 67008, + [SMALL_STATE(3188)] = 67110, + [SMALL_STATE(3189)] = 67170, + [SMALL_STATE(3190)] = 67234, + [SMALL_STATE(3191)] = 67340, + [SMALL_STATE(3192)] = 67400, + [SMALL_STATE(3193)] = 67460, + [SMALL_STATE(3194)] = 67528, + [SMALL_STATE(3195)] = 67588, + [SMALL_STATE(3196)] = 67648, + [SMALL_STATE(3197)] = 67708, + [SMALL_STATE(3198)] = 67768, + [SMALL_STATE(3199)] = 67828, + [SMALL_STATE(3200)] = 67888, + [SMALL_STATE(3201)] = 67948, + [SMALL_STATE(3202)] = 68008, + [SMALL_STATE(3203)] = 68067, + [SMALL_STATE(3204)] = 68126, + [SMALL_STATE(3205)] = 68185, + [SMALL_STATE(3206)] = 68244, + [SMALL_STATE(3207)] = 68303, + [SMALL_STATE(3208)] = 68362, + [SMALL_STATE(3209)] = 68421, + [SMALL_STATE(3210)] = 68480, + [SMALL_STATE(3211)] = 68633, + [SMALL_STATE(3212)] = 68692, + [SMALL_STATE(3213)] = 68751, + [SMALL_STATE(3214)] = 68814, + [SMALL_STATE(3215)] = 68873, + [SMALL_STATE(3216)] = 68932, + [SMALL_STATE(3217)] = 68991, + [SMALL_STATE(3218)] = 69050, + [SMALL_STATE(3219)] = 69109, + [SMALL_STATE(3220)] = 69262, + [SMALL_STATE(3221)] = 69323, + [SMALL_STATE(3222)] = 69382, + [SMALL_STATE(3223)] = 69441, + [SMALL_STATE(3224)] = 69500, + [SMALL_STATE(3225)] = 69559, + [SMALL_STATE(3226)] = 69618, + [SMALL_STATE(3227)] = 69679, + [SMALL_STATE(3228)] = 69738, + [SMALL_STATE(3229)] = 69797, + [SMALL_STATE(3230)] = 69950, + [SMALL_STATE(3231)] = 70009, + [SMALL_STATE(3232)] = 70162, + [SMALL_STATE(3233)] = 70221, + [SMALL_STATE(3234)] = 70280, + [SMALL_STATE(3235)] = 70339, + [SMALL_STATE(3236)] = 70398, + [SMALL_STATE(3237)] = 70551, + [SMALL_STATE(3238)] = 70610, + [SMALL_STATE(3239)] = 70669, + [SMALL_STATE(3240)] = 70728, + [SMALL_STATE(3241)] = 70787, + [SMALL_STATE(3242)] = 70846, + [SMALL_STATE(3243)] = 70905, + [SMALL_STATE(3244)] = 70964, + [SMALL_STATE(3245)] = 71023, + [SMALL_STATE(3246)] = 71082, + [SMALL_STATE(3247)] = 71141, + [SMALL_STATE(3248)] = 71202, + [SMALL_STATE(3249)] = 71263, + [SMALL_STATE(3250)] = 71332, + [SMALL_STATE(3251)] = 71391, + [SMALL_STATE(3252)] = 71450, + [SMALL_STATE(3253)] = 71509, + [SMALL_STATE(3254)] = 71568, + [SMALL_STATE(3255)] = 71627, + [SMALL_STATE(3256)] = 71686, + [SMALL_STATE(3257)] = 71745, + [SMALL_STATE(3258)] = 71804, + [SMALL_STATE(3259)] = 71863, + [SMALL_STATE(3260)] = 71922, + [SMALL_STATE(3261)] = 71987, + [SMALL_STATE(3262)] = 72046, + [SMALL_STATE(3263)] = 72105, + [SMALL_STATE(3264)] = 72164, + [SMALL_STATE(3265)] = 72317, + [SMALL_STATE(3266)] = 72376, + [SMALL_STATE(3267)] = 72435, + [SMALL_STATE(3268)] = 72588, + [SMALL_STATE(3269)] = 72647, + [SMALL_STATE(3270)] = 72706, + [SMALL_STATE(3271)] = 72765, + [SMALL_STATE(3272)] = 72824, + [SMALL_STATE(3273)] = 72883, + [SMALL_STATE(3274)] = 72942, + [SMALL_STATE(3275)] = 73001, + [SMALL_STATE(3276)] = 73060, + [SMALL_STATE(3277)] = 73119, + [SMALL_STATE(3278)] = 73178, + [SMALL_STATE(3279)] = 73237, + [SMALL_STATE(3280)] = 73296, + [SMALL_STATE(3281)] = 73355, + [SMALL_STATE(3282)] = 73414, + [SMALL_STATE(3283)] = 73473, + [SMALL_STATE(3284)] = 73532, + [SMALL_STATE(3285)] = 73597, + [SMALL_STATE(3286)] = 73656, + [SMALL_STATE(3287)] = 73715, + [SMALL_STATE(3288)] = 73774, + [SMALL_STATE(3289)] = 73833, + [SMALL_STATE(3290)] = 73892, + [SMALL_STATE(3291)] = 73951, + [SMALL_STATE(3292)] = 74010, + [SMALL_STATE(3293)] = 74069, + [SMALL_STATE(3294)] = 74128, + [SMALL_STATE(3295)] = 74187, + [SMALL_STATE(3296)] = 74246, + [SMALL_STATE(3297)] = 74305, + [SMALL_STATE(3298)] = 74364, + [SMALL_STATE(3299)] = 74423, + [SMALL_STATE(3300)] = 74482, + [SMALL_STATE(3301)] = 74541, + [SMALL_STATE(3302)] = 74600, + [SMALL_STATE(3303)] = 74659, + [SMALL_STATE(3304)] = 74718, + [SMALL_STATE(3305)] = 74777, + [SMALL_STATE(3306)] = 74836, + [SMALL_STATE(3307)] = 74989, + [SMALL_STATE(3308)] = 75050, + [SMALL_STATE(3309)] = 75115, + [SMALL_STATE(3310)] = 75174, + [SMALL_STATE(3311)] = 75233, + [SMALL_STATE(3312)] = 75304, + [SMALL_STATE(3313)] = 75363, + [SMALL_STATE(3314)] = 75426, + [SMALL_STATE(3315)] = 75485, + [SMALL_STATE(3316)] = 75544, + [SMALL_STATE(3317)] = 75603, + [SMALL_STATE(3318)] = 75756, + [SMALL_STATE(3319)] = 75815, + [SMALL_STATE(3320)] = 75874, + [SMALL_STATE(3321)] = 75933, + [SMALL_STATE(3322)] = 75992, + [SMALL_STATE(3323)] = 76051, + [SMALL_STATE(3324)] = 76110, + [SMALL_STATE(3325)] = 76175, + [SMALL_STATE(3326)] = 76234, + [SMALL_STATE(3327)] = 76293, + [SMALL_STATE(3328)] = 76352, + [SMALL_STATE(3329)] = 76419, + [SMALL_STATE(3330)] = 76478, + [SMALL_STATE(3331)] = 76543, + [SMALL_STATE(3332)] = 76602, + [SMALL_STATE(3333)] = 76661, + [SMALL_STATE(3334)] = 76720, + [SMALL_STATE(3335)] = 76779, + [SMALL_STATE(3336)] = 76838, + [SMALL_STATE(3337)] = 76991, + [SMALL_STATE(3338)] = 77144, + [SMALL_STATE(3339)] = 77203, + [SMALL_STATE(3340)] = 77262, + [SMALL_STATE(3341)] = 77321, + [SMALL_STATE(3342)] = 77380, + [SMALL_STATE(3343)] = 77443, + [SMALL_STATE(3344)] = 77502, + [SMALL_STATE(3345)] = 77561, + [SMALL_STATE(3346)] = 77620, + [SMALL_STATE(3347)] = 77679, + [SMALL_STATE(3348)] = 77738, + [SMALL_STATE(3349)] = 77797, + [SMALL_STATE(3350)] = 77856, + [SMALL_STATE(3351)] = 77915, + [SMALL_STATE(3352)] = 78018, + [SMALL_STATE(3353)] = 78077, + [SMALL_STATE(3354)] = 78136, + [SMALL_STATE(3355)] = 78195, + [SMALL_STATE(3356)] = 78260, + [SMALL_STATE(3357)] = 78319, + [SMALL_STATE(3358)] = 78472, + [SMALL_STATE(3359)] = 78546, + [SMALL_STATE(3360)] = 78614, + [SMALL_STATE(3361)] = 78672, + [SMALL_STATE(3362)] = 78772, + [SMALL_STATE(3363)] = 78872, + [SMALL_STATE(3364)] = 78934, + [SMALL_STATE(3365)] = 79034, + [SMALL_STATE(3366)] = 79134, + [SMALL_STATE(3367)] = 79234, + [SMALL_STATE(3368)] = 79296, + [SMALL_STATE(3369)] = 79368, + [SMALL_STATE(3370)] = 79438, + [SMALL_STATE(3371)] = 79534, + [SMALL_STATE(3372)] = 79626, + [SMALL_STATE(3373)] = 79690, + [SMALL_STATE(3374)] = 79778, + [SMALL_STATE(3375)] = 79864, + [SMALL_STATE(3376)] = 79946, + [SMALL_STATE(3377)] = 80016, + [SMALL_STATE(3378)] = 80096, + [SMALL_STATE(3379)] = 80174, + [SMALL_STATE(3380)] = 80274, + [SMALL_STATE(3381)] = 80378, + [SMALL_STATE(3382)] = 80438, + [SMALL_STATE(3383)] = 80538, + [SMALL_STATE(3384)] = 80596, + [SMALL_STATE(3385)] = 80696, + [SMALL_STATE(3386)] = 80756, + [SMALL_STATE(3387)] = 80818, + [SMALL_STATE(3388)] = 80876, + [SMALL_STATE(3389)] = 80976, + [SMALL_STATE(3390)] = 81034, + [SMALL_STATE(3391)] = 81104, + [SMALL_STATE(3392)] = 81170, + [SMALL_STATE(3393)] = 81246, + [SMALL_STATE(3394)] = 81308, + [SMALL_STATE(3395)] = 81408, + [SMALL_STATE(3396)] = 81508, + [SMALL_STATE(3397)] = 81608, + [SMALL_STATE(3398)] = 81666, + [SMALL_STATE(3399)] = 81768, + [SMALL_STATE(3400)] = 81830, + [SMALL_STATE(3401)] = 81908, + [SMALL_STATE(3402)] = 82008, + [SMALL_STATE(3403)] = 82078, + [SMALL_STATE(3404)] = 82178, + [SMALL_STATE(3405)] = 82238, + [SMALL_STATE(3406)] = 82300, + [SMALL_STATE(3407)] = 82362, + [SMALL_STATE(3408)] = 82420, + [SMALL_STATE(3409)] = 82520, + [SMALL_STATE(3410)] = 82620, + [SMALL_STATE(3411)] = 82720, + [SMALL_STATE(3412)] = 82820, + [SMALL_STATE(3413)] = 82924, + [SMALL_STATE(3414)] = 83024, + [SMALL_STATE(3415)] = 83124, + [SMALL_STATE(3416)] = 83224, + [SMALL_STATE(3417)] = 83324, + [SMALL_STATE(3418)] = 83386, + [SMALL_STATE(3419)] = 83450, + [SMALL_STATE(3420)] = 83518, + [SMALL_STATE(3421)] = 83618, + [SMALL_STATE(3422)] = 83718, + [SMALL_STATE(3423)] = 83775, + [SMALL_STATE(3424)] = 83842, + [SMALL_STATE(3425)] = 83899, + [SMALL_STATE(3426)] = 83956, + [SMALL_STATE(3427)] = 84013, + [SMALL_STATE(3428)] = 84070, + [SMALL_STATE(3429)] = 84127, + [SMALL_STATE(3430)] = 84186, + [SMALL_STATE(3431)] = 84243, + [SMALL_STATE(3432)] = 84344, + [SMALL_STATE(3433)] = 84407, + [SMALL_STATE(3434)] = 84476, + [SMALL_STATE(3435)] = 84533, + [SMALL_STATE(3436)] = 84590, + [SMALL_STATE(3437)] = 84647, + [SMALL_STATE(3438)] = 84752, + [SMALL_STATE(3439)] = 84809, + [SMALL_STATE(3440)] = 84910, + [SMALL_STATE(3441)] = 84975, + [SMALL_STATE(3442)] = 85032, + [SMALL_STATE(3443)] = 85089, + [SMALL_STATE(3444)] = 85194, + [SMALL_STATE(3445)] = 85251, + [SMALL_STATE(3446)] = 85308, + [SMALL_STATE(3447)] = 85405, + [SMALL_STATE(3448)] = 85462, + [SMALL_STATE(3449)] = 85519, + [SMALL_STATE(3450)] = 85576, + [SMALL_STATE(3451)] = 85633, + [SMALL_STATE(3452)] = 85690, + [SMALL_STATE(3453)] = 85747, + [SMALL_STATE(3454)] = 85816, + [SMALL_STATE(3455)] = 85891, + [SMALL_STATE(3456)] = 85992, + [SMALL_STATE(3457)] = 86049, + [SMALL_STATE(3458)] = 86106, + [SMALL_STATE(3459)] = 86201, + [SMALL_STATE(3460)] = 86274, + [SMALL_STATE(3461)] = 86331, + [SMALL_STATE(3462)] = 86408, + [SMALL_STATE(3463)] = 86465, + [SMALL_STATE(3464)] = 86546, + [SMALL_STATE(3465)] = 86629, + [SMALL_STATE(3466)] = 86716, + [SMALL_STATE(3467)] = 86805, + [SMALL_STATE(3468)] = 86898, + [SMALL_STATE(3469)] = 86955, + [SMALL_STATE(3470)] = 87012, + [SMALL_STATE(3471)] = 87069, + [SMALL_STATE(3472)] = 87166, + [SMALL_STATE(3473)] = 87233, + [SMALL_STATE(3474)] = 87290, + [SMALL_STATE(3475)] = 87347, + [SMALL_STATE(3476)] = 87422, + [SMALL_STATE(3477)] = 87479, + [SMALL_STATE(3478)] = 87536, + [SMALL_STATE(3479)] = 87593, + [SMALL_STATE(3480)] = 87650, + [SMALL_STATE(3481)] = 87747, + [SMALL_STATE(3482)] = 87844, + [SMALL_STATE(3483)] = 87913, + [SMALL_STATE(3484)] = 87978, + [SMALL_STATE(3485)] = 88035, + [SMALL_STATE(3486)] = 88102, + [SMALL_STATE(3487)] = 88159, + [SMALL_STATE(3488)] = 88230, + [SMALL_STATE(3489)] = 88287, + [SMALL_STATE(3490)] = 88344, + [SMALL_STATE(3491)] = 88447, + [SMALL_STATE(3492)] = 88504, + [SMALL_STATE(3493)] = 88605, + [SMALL_STATE(3494)] = 88662, + [SMALL_STATE(3495)] = 88763, + [SMALL_STATE(3496)] = 88840, + [SMALL_STATE(3497)] = 88897, + [SMALL_STATE(3498)] = 88966, + [SMALL_STATE(3499)] = 89033, + [SMALL_STATE(3500)] = 89090, + [SMALL_STATE(3501)] = 89147, + [SMALL_STATE(3502)] = 89204, + [SMALL_STATE(3503)] = 89277, + [SMALL_STATE(3504)] = 89378, + [SMALL_STATE(3505)] = 89435, + [SMALL_STATE(3506)] = 89506, + [SMALL_STATE(3507)] = 89563, + [SMALL_STATE(3508)] = 89620, + [SMALL_STATE(3509)] = 89695, + [SMALL_STATE(3510)] = 89756, + [SMALL_STATE(3511)] = 89835, + [SMALL_STATE(3512)] = 89916, + [SMALL_STATE(3513)] = 90001, + [SMALL_STATE(3514)] = 90058, + [SMALL_STATE(3515)] = 90147, + [SMALL_STATE(3516)] = 90204, + [SMALL_STATE(3517)] = 90261, + [SMALL_STATE(3518)] = 90354, + [SMALL_STATE(3519)] = 90415, + [SMALL_STATE(3520)] = 90472, + [SMALL_STATE(3521)] = 90529, + [SMALL_STATE(3522)] = 90596, + [SMALL_STATE(3523)] = 90665, + [SMALL_STATE(3524)] = 90722, + [SMALL_STATE(3525)] = 90779, + [SMALL_STATE(3526)] = 90876, + [SMALL_STATE(3527)] = 90933, + [SMALL_STATE(3528)] = 90990, + [SMALL_STATE(3529)] = 91047, + [SMALL_STATE(3530)] = 91104, + [SMALL_STATE(3531)] = 91161, + [SMALL_STATE(3532)] = 91218, + [SMALL_STATE(3533)] = 91275, + [SMALL_STATE(3534)] = 91332, + [SMALL_STATE(3535)] = 91389, + [SMALL_STATE(3536)] = 91446, + [SMALL_STATE(3537)] = 91509, + [SMALL_STATE(3538)] = 91566, + [SMALL_STATE(3539)] = 91623, + [SMALL_STATE(3540)] = 91680, + [SMALL_STATE(3541)] = 91737, + [SMALL_STATE(3542)] = 91798, + [SMALL_STATE(3543)] = 91863, + [SMALL_STATE(3544)] = 91920, + [SMALL_STATE(3545)] = 91977, + [SMALL_STATE(3546)] = 92042, + [SMALL_STATE(3547)] = 92099, + [SMALL_STATE(3548)] = 92198, + [SMALL_STATE(3549)] = 92255, + [SMALL_STATE(3550)] = 92316, + [SMALL_STATE(3551)] = 92379, + [SMALL_STATE(3552)] = 92436, + [SMALL_STATE(3553)] = 92492, + [SMALL_STATE(3554)] = 92548, + [SMALL_STATE(3555)] = 92604, + [SMALL_STATE(3556)] = 92660, + [SMALL_STATE(3557)] = 92716, + [SMALL_STATE(3558)] = 92772, + [SMALL_STATE(3559)] = 92828, + [SMALL_STATE(3560)] = 92884, + [SMALL_STATE(3561)] = 92940, + [SMALL_STATE(3562)] = 92996, + [SMALL_STATE(3563)] = 93052, + [SMALL_STATE(3564)] = 93108, + [SMALL_STATE(3565)] = 93164, + [SMALL_STATE(3566)] = 93220, + [SMALL_STATE(3567)] = 93276, + [SMALL_STATE(3568)] = 93332, + [SMALL_STATE(3569)] = 93388, + [SMALL_STATE(3570)] = 93444, + [SMALL_STATE(3571)] = 93506, + [SMALL_STATE(3572)] = 93562, + [SMALL_STATE(3573)] = 93618, + [SMALL_STATE(3574)] = 93674, + [SMALL_STATE(3575)] = 93730, + [SMALL_STATE(3576)] = 93786, + [SMALL_STATE(3577)] = 93842, + [SMALL_STATE(3578)] = 93898, + [SMALL_STATE(3579)] = 93956, + [SMALL_STATE(3580)] = 94016, + [SMALL_STATE(3581)] = 94072, + [SMALL_STATE(3582)] = 94128, + [SMALL_STATE(3583)] = 94184, + [SMALL_STATE(3584)] = 94240, + [SMALL_STATE(3585)] = 94296, + [SMALL_STATE(3586)] = 94352, + [SMALL_STATE(3587)] = 94408, + [SMALL_STATE(3588)] = 94464, + [SMALL_STATE(3589)] = 94520, + [SMALL_STATE(3590)] = 94576, + [SMALL_STATE(3591)] = 94632, + [SMALL_STATE(3592)] = 94688, + [SMALL_STATE(3593)] = 94744, + [SMALL_STATE(3594)] = 94800, + [SMALL_STATE(3595)] = 94856, + [SMALL_STATE(3596)] = 94914, + [SMALL_STATE(3597)] = 94970, + [SMALL_STATE(3598)] = 95026, + [SMALL_STATE(3599)] = 95082, + [SMALL_STATE(3600)] = 95138, + [SMALL_STATE(3601)] = 95194, + [SMALL_STATE(3602)] = 95252, + [SMALL_STATE(3603)] = 95308, + [SMALL_STATE(3604)] = 95364, + [SMALL_STATE(3605)] = 95420, + [SMALL_STATE(3606)] = 95476, + [SMALL_STATE(3607)] = 95532, + [SMALL_STATE(3608)] = 95588, + [SMALL_STATE(3609)] = 95644, + [SMALL_STATE(3610)] = 95700, + [SMALL_STATE(3611)] = 95760, + [SMALL_STATE(3612)] = 95816, + [SMALL_STATE(3613)] = 95872, + [SMALL_STATE(3614)] = 95928, + [SMALL_STATE(3615)] = 95984, + [SMALL_STATE(3616)] = 96040, + [SMALL_STATE(3617)] = 96096, + [SMALL_STATE(3618)] = 96152, + [SMALL_STATE(3619)] = 96214, + [SMALL_STATE(3620)] = 96270, + [SMALL_STATE(3621)] = 96326, + [SMALL_STATE(3622)] = 96382, + [SMALL_STATE(3623)] = 96438, + [SMALL_STATE(3624)] = 96496, + [SMALL_STATE(3625)] = 96552, + [SMALL_STATE(3626)] = 96608, + [SMALL_STATE(3627)] = 96664, + [SMALL_STATE(3628)] = 96720, + [SMALL_STATE(3629)] = 96776, + [SMALL_STATE(3630)] = 96832, + [SMALL_STATE(3631)] = 96893, + [SMALL_STATE(3632)] = 96948, + [SMALL_STATE(3633)] = 97009, + [SMALL_STATE(3634)] = 97084, + [SMALL_STATE(3635)] = 97139, + [SMALL_STATE(3636)] = 97214, + [SMALL_STATE(3637)] = 97312, + [SMALL_STATE(3638)] = 97410, + [SMALL_STATE(3639)] = 97470, + [SMALL_STATE(3640)] = 97568, + [SMALL_STATE(3641)] = 97666, + [SMALL_STATE(3642)] = 97720, + [SMALL_STATE(3643)] = 97818, + [SMALL_STATE(3644)] = 97916, + [SMALL_STATE(3645)] = 97982, + [SMALL_STATE(3646)] = 98080, + [SMALL_STATE(3647)] = 98134, + [SMALL_STATE(3648)] = 98232, + [SMALL_STATE(3649)] = 98330, + [SMALL_STATE(3650)] = 98428, + [SMALL_STATE(3651)] = 98494, + [SMALL_STATE(3652)] = 98560, + [SMALL_STATE(3653)] = 98658, + [SMALL_STATE(3654)] = 98756, + [SMALL_STATE(3655)] = 98810, + [SMALL_STATE(3656)] = 98908, + [SMALL_STATE(3657)] = 98968, + [SMALL_STATE(3658)] = 99030, + [SMALL_STATE(3659)] = 99084, + [SMALL_STATE(3660)] = 99182, + [SMALL_STATE(3661)] = 99280, + [SMALL_STATE(3662)] = 99378, + [SMALL_STATE(3663)] = 99476, + [SMALL_STATE(3664)] = 99574, + [SMALL_STATE(3665)] = 99672, + [SMALL_STATE(3666)] = 99770, + [SMALL_STATE(3667)] = 99868, + [SMALL_STATE(3668)] = 99966, + [SMALL_STATE(3669)] = 100021, + [SMALL_STATE(3670)] = 100088, + [SMALL_STATE(3671)] = 100143, + [SMALL_STATE(3672)] = 100200, + [SMALL_STATE(3673)] = 100297, + [SMALL_STATE(3674)] = 100350, + [SMALL_STATE(3675)] = 100407, + [SMALL_STATE(3676)] = 100462, + [SMALL_STATE(3677)] = 100517, + [SMALL_STATE(3678)] = 100576, + [SMALL_STATE(3679)] = 100631, + [SMALL_STATE(3680)] = 100698, + [SMALL_STATE(3681)] = 100753, + [SMALL_STATE(3682)] = 100820, + [SMALL_STATE(3683)] = 100877, + [SMALL_STATE(3684)] = 100929, + [SMALL_STATE(3685)] = 100981, + [SMALL_STATE(3686)] = 101033, + [SMALL_STATE(3687)] = 101085, + [SMALL_STATE(3688)] = 101179, + [SMALL_STATE(3689)] = 101273, + [SMALL_STATE(3690)] = 101367, + [SMALL_STATE(3691)] = 101419, + [SMALL_STATE(3692)] = 101471, + [SMALL_STATE(3693)] = 101523, + [SMALL_STATE(3694)] = 101617, + [SMALL_STATE(3695)] = 101669, + [SMALL_STATE(3696)] = 101763, + [SMALL_STATE(3697)] = 101815, + [SMALL_STATE(3698)] = 101867, + [SMALL_STATE(3699)] = 101961, + [SMALL_STATE(3700)] = 102013, + [SMALL_STATE(3701)] = 102107, + [SMALL_STATE(3702)] = 102201, + [SMALL_STATE(3703)] = 102295, + [SMALL_STATE(3704)] = 102389, + [SMALL_STATE(3705)] = 102441, + [SMALL_STATE(3706)] = 102535, + [SMALL_STATE(3707)] = 102593, + [SMALL_STATE(3708)] = 102687, + [SMALL_STATE(3709)] = 102755, + [SMALL_STATE(3710)] = 102807, + [SMALL_STATE(3711)] = 102859, + [SMALL_STATE(3712)] = 102953, + [SMALL_STATE(3713)] = 103005, + [SMALL_STATE(3714)] = 103099, + [SMALL_STATE(3715)] = 103193, + [SMALL_STATE(3716)] = 103287, + [SMALL_STATE(3717)] = 103339, + [SMALL_STATE(3718)] = 103391, + [SMALL_STATE(3719)] = 103485, + [SMALL_STATE(3720)] = 103579, + [SMALL_STATE(3721)] = 103673, + [SMALL_STATE(3722)] = 103767, + [SMALL_STATE(3723)] = 103819, + [SMALL_STATE(3724)] = 103871, + [SMALL_STATE(3725)] = 103965, + [SMALL_STATE(3726)] = 104059, + [SMALL_STATE(3727)] = 104153, + [SMALL_STATE(3728)] = 104247, + [SMALL_STATE(3729)] = 104299, + [SMALL_STATE(3730)] = 104351, + [SMALL_STATE(3731)] = 104445, + [SMALL_STATE(3732)] = 104497, + [SMALL_STATE(3733)] = 104549, + [SMALL_STATE(3734)] = 104643, + [SMALL_STATE(3735)] = 104737, + [SMALL_STATE(3736)] = 104831, + [SMALL_STATE(3737)] = 104925, + [SMALL_STATE(3738)] = 105019, + [SMALL_STATE(3739)] = 105087, + [SMALL_STATE(3740)] = 105139, + [SMALL_STATE(3741)] = 105233, + [SMALL_STATE(3742)] = 105327, + [SMALL_STATE(3743)] = 105379, + [SMALL_STATE(3744)] = 105473, + [SMALL_STATE(3745)] = 105525, + [SMALL_STATE(3746)] = 105577, + [SMALL_STATE(3747)] = 105629, + [SMALL_STATE(3748)] = 105681, + [SMALL_STATE(3749)] = 105733, + [SMALL_STATE(3750)] = 105785, + [SMALL_STATE(3751)] = 105837, + [SMALL_STATE(3752)] = 105897, + [SMALL_STATE(3753)] = 105991, + [SMALL_STATE(3754)] = 106085, + [SMALL_STATE(3755)] = 106145, + [SMALL_STATE(3756)] = 106203, + [SMALL_STATE(3757)] = 106259, + [SMALL_STATE(3758)] = 106311, + [SMALL_STATE(3759)] = 106405, + [SMALL_STATE(3760)] = 106499, + [SMALL_STATE(3761)] = 106593, + [SMALL_STATE(3762)] = 106687, + [SMALL_STATE(3763)] = 106747, + [SMALL_STATE(3764)] = 106815, + [SMALL_STATE(3765)] = 106909, + [SMALL_STATE(3766)] = 107003, + [SMALL_STATE(3767)] = 107097, + [SMALL_STATE(3768)] = 107191, + [SMALL_STATE(3769)] = 107243, + [SMALL_STATE(3770)] = 107337, + [SMALL_STATE(3771)] = 107389, + [SMALL_STATE(3772)] = 107441, + [SMALL_STATE(3773)] = 107493, + [SMALL_STATE(3774)] = 107545, + [SMALL_STATE(3775)] = 107597, + [SMALL_STATE(3776)] = 107649, + [SMALL_STATE(3777)] = 107717, + [SMALL_STATE(3778)] = 107769, + [SMALL_STATE(3779)] = 107863, + [SMALL_STATE(3780)] = 107957, + [SMALL_STATE(3781)] = 108009, + [SMALL_STATE(3782)] = 108100, + [SMALL_STATE(3783)] = 108151, + [SMALL_STATE(3784)] = 108208, + [SMALL_STATE(3785)] = 108275, + [SMALL_STATE(3786)] = 108366, + [SMALL_STATE(3787)] = 108417, + [SMALL_STATE(3788)] = 108468, + [SMALL_STATE(3789)] = 108519, + [SMALL_STATE(3790)] = 108570, + [SMALL_STATE(3791)] = 108621, + [SMALL_STATE(3792)] = 108712, + [SMALL_STATE(3793)] = 108763, + [SMALL_STATE(3794)] = 108852, + [SMALL_STATE(3795)] = 108943, + [SMALL_STATE(3796)] = 109042, + [SMALL_STATE(3797)] = 109093, + [SMALL_STATE(3798)] = 109144, + [SMALL_STATE(3799)] = 109211, + [SMALL_STATE(3800)] = 109276, + [SMALL_STATE(3801)] = 109349, + [SMALL_STATE(3802)] = 109422, + [SMALL_STATE(3803)] = 109473, + [SMALL_STATE(3804)] = 109564, + [SMALL_STATE(3805)] = 109615, + [SMALL_STATE(3806)] = 109666, + [SMALL_STATE(3807)] = 109717, + [SMALL_STATE(3808)] = 109774, + [SMALL_STATE(3809)] = 109847, + [SMALL_STATE(3810)] = 109920, + [SMALL_STATE(3811)] = 110011, + [SMALL_STATE(3812)] = 110102, + [SMALL_STATE(3813)] = 110169, + [SMALL_STATE(3814)] = 110258, + [SMALL_STATE(3815)] = 110325, + [SMALL_STATE(3816)] = 110424, + [SMALL_STATE(3817)] = 110497, + [SMALL_STATE(3818)] = 110558, + [SMALL_STATE(3819)] = 110609, + [SMALL_STATE(3820)] = 110660, + [SMALL_STATE(3821)] = 110733, + [SMALL_STATE(3822)] = 110790, + [SMALL_STATE(3823)] = 110841, + [SMALL_STATE(3824)] = 110908, + [SMALL_STATE(3825)] = 110981, + [SMALL_STATE(3826)] = 111072, + [SMALL_STATE(3827)] = 111145, + [SMALL_STATE(3828)] = 111218, + [SMALL_STATE(3829)] = 111269, + [SMALL_STATE(3830)] = 111327, + [SMALL_STATE(3831)] = 111389, + [SMALL_STATE(3832)] = 111439, + [SMALL_STATE(3833)] = 111523, + [SMALL_STATE(3834)] = 111607, + [SMALL_STATE(3835)] = 111673, + [SMALL_STATE(3836)] = 111731, + [SMALL_STATE(3837)] = 111815, + [SMALL_STATE(3838)] = 111865, + [SMALL_STATE(3839)] = 111949, + [SMALL_STATE(3840)] = 112037, + [SMALL_STATE(3841)] = 112121, + [SMALL_STATE(3842)] = 112205, + [SMALL_STATE(3843)] = 112267, + [SMALL_STATE(3844)] = 112351, + [SMALL_STATE(3845)] = 112435, + [SMALL_STATE(3846)] = 112505, + [SMALL_STATE(3847)] = 112589, + [SMALL_STATE(3848)] = 112673, + [SMALL_STATE(3849)] = 112761, + [SMALL_STATE(3850)] = 112827, + [SMALL_STATE(3851)] = 112889, + [SMALL_STATE(3852)] = 112955, + [SMALL_STATE(3853)] = 113039, + [SMALL_STATE(3854)] = 113123, + [SMALL_STATE(3855)] = 113207, + [SMALL_STATE(3856)] = 113291, + [SMALL_STATE(3857)] = 113361, + [SMALL_STATE(3858)] = 113445, + [SMALL_STATE(3859)] = 113511, + [SMALL_STATE(3860)] = 113561, + [SMALL_STATE(3861)] = 113624, + [SMALL_STATE(3862)] = 113687, + [SMALL_STATE(3863)] = 113748, + [SMALL_STATE(3864)] = 113811, + [SMALL_STATE(3865)] = 113862, + [SMALL_STATE(3866)] = 113923, + [SMALL_STATE(3867)] = 113986, + [SMALL_STATE(3868)] = 114043, + [SMALL_STATE(3869)] = 114106, + [SMALL_STATE(3870)] = 114169, + [SMALL_STATE(3871)] = 114262, + [SMALL_STATE(3872)] = 114355, + [SMALL_STATE(3873)] = 114418, + [SMALL_STATE(3874)] = 114475, + [SMALL_STATE(3875)] = 114538, + [SMALL_STATE(3876)] = 114591, + [SMALL_STATE(3877)] = 114654, + [SMALL_STATE(3878)] = 114715, + [SMALL_STATE(3879)] = 114769, + [SMALL_STATE(3880)] = 114817, + [SMALL_STATE(3881)] = 114893, + [SMALL_STATE(3882)] = 114947, + [SMALL_STATE(3883)] = 115029, + [SMALL_STATE(3884)] = 115115, + [SMALL_STATE(3885)] = 115165, + [SMALL_STATE(3886)] = 115213, + [SMALL_STATE(3887)] = 115267, + [SMALL_STATE(3888)] = 115353, + [SMALL_STATE(3889)] = 115439, + [SMALL_STATE(3890)] = 115487, + [SMALL_STATE(3891)] = 115563, + [SMALL_STATE(3892)] = 115649, + [SMALL_STATE(3893)] = 115697, + [SMALL_STATE(3894)] = 115745, + [SMALL_STATE(3895)] = 115831, + [SMALL_STATE(3896)] = 115883, + [SMALL_STATE(3897)] = 115965, + [SMALL_STATE(3898)] = 116013, + [SMALL_STATE(3899)] = 116065, + [SMALL_STATE(3900)] = 116119, + [SMALL_STATE(3901)] = 116205, + [SMALL_STATE(3902)] = 116259, + [SMALL_STATE(3903)] = 116307, + [SMALL_STATE(3904)] = 116359, + [SMALL_STATE(3905)] = 116407, + [SMALL_STATE(3906)] = 116461, + [SMALL_STATE(3907)] = 116508, + [SMALL_STATE(3908)] = 116569, + [SMALL_STATE(3909)] = 116656, + [SMALL_STATE(3910)] = 116703, + [SMALL_STATE(3911)] = 116756, + [SMALL_STATE(3912)] = 116805, + [SMALL_STATE(3913)] = 116866, + [SMALL_STATE(3914)] = 116917, + [SMALL_STATE(3915)] = 116964, + [SMALL_STATE(3916)] = 117013, + [SMALL_STATE(3917)] = 117060, + [SMALL_STATE(3918)] = 117107, + [SMALL_STATE(3919)] = 117154, + [SMALL_STATE(3920)] = 117201, + [SMALL_STATE(3921)] = 117248, + [SMALL_STATE(3922)] = 117299, + [SMALL_STATE(3923)] = 117346, + [SMALL_STATE(3924)] = 117393, + [SMALL_STATE(3925)] = 117440, + [SMALL_STATE(3926)] = 117487, + [SMALL_STATE(3927)] = 117534, + [SMALL_STATE(3928)] = 117581, + [SMALL_STATE(3929)] = 117628, + [SMALL_STATE(3930)] = 117675, + [SMALL_STATE(3931)] = 117732, + [SMALL_STATE(3932)] = 117779, + [SMALL_STATE(3933)] = 117828, + [SMALL_STATE(3934)] = 117885, + [SMALL_STATE(3935)] = 117938, + [SMALL_STATE(3936)] = 118019, + [SMALL_STATE(3937)] = 118094, + [SMALL_STATE(3938)] = 118141, + [SMALL_STATE(3939)] = 118188, + [SMALL_STATE(3940)] = 118235, + [SMALL_STATE(3941)] = 118282, + [SMALL_STATE(3942)] = 118363, + [SMALL_STATE(3943)] = 118410, + [SMALL_STATE(3944)] = 118457, + [SMALL_STATE(3945)] = 118516, + [SMALL_STATE(3946)] = 118563, + [SMALL_STATE(3947)] = 118614, + [SMALL_STATE(3948)] = 118661, + [SMALL_STATE(3949)] = 118736, + [SMALL_STATE(3950)] = 118797, + [SMALL_STATE(3951)] = 118844, + [SMALL_STATE(3952)] = 118891, + [SMALL_STATE(3953)] = 118938, + [SMALL_STATE(3954)] = 118985, + [SMALL_STATE(3955)] = 119032, + [SMALL_STATE(3956)] = 119079, + [SMALL_STATE(3957)] = 119126, + [SMALL_STATE(3958)] = 119173, + [SMALL_STATE(3959)] = 119220, + [SMALL_STATE(3960)] = 119267, + [SMALL_STATE(3961)] = 119314, + [SMALL_STATE(3962)] = 119367, + [SMALL_STATE(3963)] = 119414, + [SMALL_STATE(3964)] = 119461, + [SMALL_STATE(3965)] = 119546, + [SMALL_STATE(3966)] = 119603, + [SMALL_STATE(3967)] = 119650, + [SMALL_STATE(3968)] = 119697, + [SMALL_STATE(3969)] = 119744, + [SMALL_STATE(3970)] = 119791, + [SMALL_STATE(3971)] = 119838, + [SMALL_STATE(3972)] = 119885, + [SMALL_STATE(3973)] = 119932, + [SMALL_STATE(3974)] = 119991, + [SMALL_STATE(3975)] = 120038, + [SMALL_STATE(3976)] = 120091, + [SMALL_STATE(3977)] = 120138, + [SMALL_STATE(3978)] = 120185, + [SMALL_STATE(3979)] = 120232, + [SMALL_STATE(3980)] = 120279, + [SMALL_STATE(3981)] = 120366, + [SMALL_STATE(3982)] = 120421, + [SMALL_STATE(3983)] = 120468, + [SMALL_STATE(3984)] = 120515, + [SMALL_STATE(3985)] = 120562, + [SMALL_STATE(3986)] = 120609, + [SMALL_STATE(3987)] = 120694, + [SMALL_STATE(3988)] = 120741, + [SMALL_STATE(3989)] = 120788, + [SMALL_STATE(3990)] = 120835, + [SMALL_STATE(3991)] = 120892, + [SMALL_STATE(3992)] = 120939, + [SMALL_STATE(3993)] = 120996, + [SMALL_STATE(3994)] = 121043, + [SMALL_STATE(3995)] = 121090, + [SMALL_STATE(3996)] = 121137, + [SMALL_STATE(3997)] = 121184, + [SMALL_STATE(3998)] = 121231, + [SMALL_STATE(3999)] = 121278, + [SMALL_STATE(4000)] = 121337, + [SMALL_STATE(4001)] = 121384, + [SMALL_STATE(4002)] = 121431, + [SMALL_STATE(4003)] = 121477, + [SMALL_STATE(4004)] = 121531, + [SMALL_STATE(4005)] = 121621, + [SMALL_STATE(4006)] = 121671, + [SMALL_STATE(4007)] = 121749, + [SMALL_STATE(4008)] = 121835, + [SMALL_STATE(4009)] = 121881, + [SMALL_STATE(4010)] = 121969, + [SMALL_STATE(4011)] = 122043, + [SMALL_STATE(4012)] = 122089, + [SMALL_STATE(4013)] = 122141, + [SMALL_STATE(4014)] = 122187, + [SMALL_STATE(4015)] = 122273, + [SMALL_STATE(4016)] = 122341, + [SMALL_STATE(4017)] = 122387, + [SMALL_STATE(4018)] = 122473, + [SMALL_STATE(4019)] = 122519, + [SMALL_STATE(4020)] = 122593, + [SMALL_STATE(4021)] = 122683, + [SMALL_STATE(4022)] = 122729, + [SMALL_STATE(4023)] = 122795, + [SMALL_STATE(4024)] = 122841, + [SMALL_STATE(4025)] = 122905, + [SMALL_STATE(4026)] = 122951, + [SMALL_STATE(4027)] = 123019, + [SMALL_STATE(4028)] = 123091, + [SMALL_STATE(4029)] = 123165, + [SMALL_STATE(4030)] = 123217, + [SMALL_STATE(4031)] = 123263, + [SMALL_STATE(4032)] = 123309, + [SMALL_STATE(4033)] = 123355, + [SMALL_STATE(4034)] = 123407, + [SMALL_STATE(4035)] = 123481, + [SMALL_STATE(4036)] = 123567, + [SMALL_STATE(4037)] = 123613, + [SMALL_STATE(4038)] = 123659, + [SMALL_STATE(4039)] = 123713, + [SMALL_STATE(4040)] = 123793, + [SMALL_STATE(4041)] = 123875, + [SMALL_STATE(4042)] = 123949, + [SMALL_STATE(4043)] = 124033, + [SMALL_STATE(4044)] = 124079, + [SMALL_STATE(4045)] = 124125, + [SMALL_STATE(4046)] = 124199, + [SMALL_STATE(4047)] = 124261, + [SMALL_STATE(4048)] = 124307, + [SMALL_STATE(4049)] = 124359, + [SMALL_STATE(4050)] = 124405, + [SMALL_STATE(4051)] = 124451, + [SMALL_STATE(4052)] = 124497, + [SMALL_STATE(4053)] = 124583, + [SMALL_STATE(4054)] = 124629, + [SMALL_STATE(4055)] = 124675, + [SMALL_STATE(4056)] = 124721, + [SMALL_STATE(4057)] = 124795, + [SMALL_STATE(4058)] = 124847, + [SMALL_STATE(4059)] = 124943, + [SMALL_STATE(4060)] = 125017, + [SMALL_STATE(4061)] = 125091, + [SMALL_STATE(4062)] = 125184, + [SMALL_STATE(4063)] = 125263, + [SMALL_STATE(4064)] = 125356, + [SMALL_STATE(4065)] = 125449, + [SMALL_STATE(4066)] = 125542, + [SMALL_STATE(4067)] = 125593, + [SMALL_STATE(4068)] = 125686, + [SMALL_STATE(4069)] = 125779, + [SMALL_STATE(4070)] = 125852, + [SMALL_STATE(4071)] = 125945, + [SMALL_STATE(4072)] = 126038, + [SMALL_STATE(4073)] = 126131, + [SMALL_STATE(4074)] = 126210, + [SMALL_STATE(4075)] = 126303, + [SMALL_STATE(4076)] = 126356, + [SMALL_STATE(4077)] = 126449, + [SMALL_STATE(4078)] = 126504, + [SMALL_STATE(4079)] = 126597, + [SMALL_STATE(4080)] = 126690, + [SMALL_STATE(4081)] = 126743, + [SMALL_STATE(4082)] = 126836, + [SMALL_STATE(4083)] = 126929, + [SMALL_STATE(4084)] = 127022, + [SMALL_STATE(4085)] = 127115, + [SMALL_STATE(4086)] = 127182, + [SMALL_STATE(4087)] = 127275, + [SMALL_STATE(4088)] = 127368, + [SMALL_STATE(4089)] = 127423, + [SMALL_STATE(4090)] = 127490, + [SMALL_STATE(4091)] = 127583, + [SMALL_STATE(4092)] = 127666, + [SMALL_STATE(4093)] = 127733, + [SMALL_STATE(4094)] = 127824, + [SMALL_STATE(4095)] = 127903, + [SMALL_STATE(4096)] = 127996, + [SMALL_STATE(4097)] = 128089, + [SMALL_STATE(4098)] = 128182, + [SMALL_STATE(4099)] = 128275, + [SMALL_STATE(4100)] = 128342, + [SMALL_STATE(4101)] = 128435, + [SMALL_STATE(4102)] = 128484, + [SMALL_STATE(4103)] = 128577, + [SMALL_STATE(4104)] = 128670, + [SMALL_STATE(4105)] = 128753, + [SMALL_STATE(4106)] = 128826, + [SMALL_STATE(4107)] = 128919, + [SMALL_STATE(4108)] = 129012, + [SMALL_STATE(4109)] = 129095, + [SMALL_STATE(4110)] = 129188, + [SMALL_STATE(4111)] = 129281, + [SMALL_STATE(4112)] = 129360, + [SMALL_STATE(4113)] = 129453, + [SMALL_STATE(4114)] = 129546, + [SMALL_STATE(4115)] = 129639, + [SMALL_STATE(4116)] = 129730, + [SMALL_STATE(4117)] = 129823, + [SMALL_STATE(4118)] = 129902, + [SMALL_STATE(4119)] = 129995, + [SMALL_STATE(4120)] = 130074, + [SMALL_STATE(4121)] = 130121, + [SMALL_STATE(4122)] = 130204, + [SMALL_STATE(4123)] = 130297, + [SMALL_STATE(4124)] = 130390, + [SMALL_STATE(4125)] = 130483, + [SMALL_STATE(4126)] = 130576, + [SMALL_STATE(4127)] = 130666, + [SMALL_STATE(4128)] = 130756, + [SMALL_STATE(4129)] = 130834, + [SMALL_STATE(4130)] = 130924, + [SMALL_STATE(4131)] = 131002, + [SMALL_STATE(4132)] = 131048, + [SMALL_STATE(4133)] = 131102, + [SMALL_STATE(4134)] = 131158, + [SMALL_STATE(4135)] = 131226, + [SMALL_STATE(4136)] = 131310, + [SMALL_STATE(4137)] = 131400, + [SMALL_STATE(4138)] = 131454, + [SMALL_STATE(4139)] = 131544, + [SMALL_STATE(4140)] = 131634, + [SMALL_STATE(4141)] = 131690, + [SMALL_STATE(4142)] = 131780, + [SMALL_STATE(4143)] = 131870, + [SMALL_STATE(4144)] = 131960, + [SMALL_STATE(4145)] = 132050, + [SMALL_STATE(4146)] = 132140, + [SMALL_STATE(4147)] = 132230, + [SMALL_STATE(4148)] = 132314, + [SMALL_STATE(4149)] = 132400, + [SMALL_STATE(4150)] = 132490, + [SMALL_STATE(4151)] = 132580, + [SMALL_STATE(4152)] = 132670, + [SMALL_STATE(4153)] = 132760, + [SMALL_STATE(4154)] = 132820, + [SMALL_STATE(4155)] = 132876, + [SMALL_STATE(4156)] = 132966, + [SMALL_STATE(4157)] = 133048, + [SMALL_STATE(4158)] = 133138, + [SMALL_STATE(4159)] = 133218, + [SMALL_STATE(4160)] = 133296, + [SMALL_STATE(4161)] = 133386, + [SMALL_STATE(4162)] = 133476, + [SMALL_STATE(4163)] = 133566, + [SMALL_STATE(4164)] = 133656, + [SMALL_STATE(4165)] = 133746, + [SMALL_STATE(4166)] = 133836, + [SMALL_STATE(4167)] = 133926, + [SMALL_STATE(4168)] = 134002, + [SMALL_STATE(4169)] = 134074, + [SMALL_STATE(4170)] = 134164, + [SMALL_STATE(4171)] = 134254, + [SMALL_STATE(4172)] = 134326, + [SMALL_STATE(4173)] = 134414, + [SMALL_STATE(4174)] = 134484, + [SMALL_STATE(4175)] = 134552, + [SMALL_STATE(4176)] = 134614, + [SMALL_STATE(4177)] = 134680, + [SMALL_STATE(4178)] = 134770, + [SMALL_STATE(4179)] = 134860, + [SMALL_STATE(4180)] = 134912, + [SMALL_STATE(4181)] = 134968, + [SMALL_STATE(4182)] = 135058, + [SMALL_STATE(4183)] = 135148, + [SMALL_STATE(4184)] = 135238, + [SMALL_STATE(4185)] = 135322, + [SMALL_STATE(4186)] = 135412, + [SMALL_STATE(4187)] = 135466, + [SMALL_STATE(4188)] = 135554, + [SMALL_STATE(4189)] = 135642, + [SMALL_STATE(4190)] = 135732, + [SMALL_STATE(4191)] = 135822, + [SMALL_STATE(4192)] = 135866, + [SMALL_STATE(4193)] = 135954, + [SMALL_STATE(4194)] = 136010, + [SMALL_STATE(4195)] = 136098, + [SMALL_STATE(4196)] = 136188, + [SMALL_STATE(4197)] = 136278, + [SMALL_STATE(4198)] = 136368, + [SMALL_STATE(4199)] = 136452, + [SMALL_STATE(4200)] = 136518, + [SMALL_STATE(4201)] = 136608, + [SMALL_STATE(4202)] = 136698, + [SMALL_STATE(4203)] = 136764, + [SMALL_STATE(4204)] = 136854, + [SMALL_STATE(4205)] = 136944, + [SMALL_STATE(4206)] = 137034, + [SMALL_STATE(4207)] = 137124, + [SMALL_STATE(4208)] = 137214, + [SMALL_STATE(4209)] = 137280, + [SMALL_STATE(4210)] = 137370, + [SMALL_STATE(4211)] = 137458, + [SMALL_STATE(4212)] = 137548, + [SMALL_STATE(4213)] = 137638, + [SMALL_STATE(4214)] = 137682, + [SMALL_STATE(4215)] = 137748, + [SMALL_STATE(4216)] = 137814, + [SMALL_STATE(4217)] = 137904, + [SMALL_STATE(4218)] = 137948, + [SMALL_STATE(4219)] = 138038, + [SMALL_STATE(4220)] = 138128, + [SMALL_STATE(4221)] = 138218, + [SMALL_STATE(4222)] = 138308, + [SMALL_STATE(4223)] = 138398, + [SMALL_STATE(4224)] = 138488, + [SMALL_STATE(4225)] = 138576, + [SMALL_STATE(4226)] = 138666, + [SMALL_STATE(4227)] = 138738, + [SMALL_STATE(4228)] = 138828, + [SMALL_STATE(4229)] = 138918, + [SMALL_STATE(4230)] = 138990, + [SMALL_STATE(4231)] = 139056, + [SMALL_STATE(4232)] = 139100, + [SMALL_STATE(4233)] = 139172, + [SMALL_STATE(4234)] = 139262, + [SMALL_STATE(4235)] = 139352, + [SMALL_STATE(4236)] = 139440, + [SMALL_STATE(4237)] = 139530, + [SMALL_STATE(4238)] = 139620, + [SMALL_STATE(4239)] = 139710, + [SMALL_STATE(4240)] = 139798, + [SMALL_STATE(4241)] = 139888, + [SMALL_STATE(4242)] = 139978, + [SMALL_STATE(4243)] = 140068, + [SMALL_STATE(4244)] = 140152, + [SMALL_STATE(4245)] = 140242, + [SMALL_STATE(4246)] = 140328, + [SMALL_STATE(4247)] = 140418, + [SMALL_STATE(4248)] = 140508, + [SMALL_STATE(4249)] = 140598, + [SMALL_STATE(4250)] = 140658, + [SMALL_STATE(4251)] = 140742, + [SMALL_STATE(4252)] = 140808, + [SMALL_STATE(4253)] = 140890, + [SMALL_STATE(4254)] = 140970, + [SMALL_STATE(4255)] = 141048, + [SMALL_STATE(4256)] = 141124, + [SMALL_STATE(4257)] = 141196, + [SMALL_STATE(4258)] = 141266, + [SMALL_STATE(4259)] = 141332, + [SMALL_STATE(4260)] = 141394, + [SMALL_STATE(4261)] = 141458, + [SMALL_STATE(4262)] = 141546, + [SMALL_STATE(4263)] = 141636, + [SMALL_STATE(4264)] = 141724, + [SMALL_STATE(4265)] = 141808, + [SMALL_STATE(4266)] = 141896, + [SMALL_STATE(4267)] = 141986, + [SMALL_STATE(4268)] = 142076, + [SMALL_STATE(4269)] = 142160, + [SMALL_STATE(4270)] = 142250, + [SMALL_STATE(4271)] = 142340, + [SMALL_STATE(4272)] = 142430, + [SMALL_STATE(4273)] = 142520, + [SMALL_STATE(4274)] = 142610, + [SMALL_STATE(4275)] = 142700, + [SMALL_STATE(4276)] = 142790, + [SMALL_STATE(4277)] = 142878, + [SMALL_STATE(4278)] = 142968, + [SMALL_STATE(4279)] = 143056, + [SMALL_STATE(4280)] = 143146, + [SMALL_STATE(4281)] = 143236, + [SMALL_STATE(4282)] = 143326, + [SMALL_STATE(4283)] = 143416, + [SMALL_STATE(4284)] = 143506, + [SMALL_STATE(4285)] = 143596, + [SMALL_STATE(4286)] = 143686, + [SMALL_STATE(4287)] = 143776, + [SMALL_STATE(4288)] = 143830, + [SMALL_STATE(4289)] = 143920, + [SMALL_STATE(4290)] = 144010, + [SMALL_STATE(4291)] = 144054, + [SMALL_STATE(4292)] = 144142, + [SMALL_STATE(4293)] = 144230, + [SMALL_STATE(4294)] = 144320, + [SMALL_STATE(4295)] = 144410, + [SMALL_STATE(4296)] = 144500, + [SMALL_STATE(4297)] = 144553, + [SMALL_STATE(4298)] = 144640, + [SMALL_STATE(4299)] = 144695, + [SMALL_STATE(4300)] = 144748, + [SMALL_STATE(4301)] = 144835, + [SMALL_STATE(4302)] = 144922, + [SMALL_STATE(4303)] = 145009, + [SMALL_STATE(4304)] = 145096, + [SMALL_STATE(4305)] = 145183, + [SMALL_STATE(4306)] = 145270, + [SMALL_STATE(4307)] = 145357, + [SMALL_STATE(4308)] = 145444, + [SMALL_STATE(4309)] = 145531, + [SMALL_STATE(4310)] = 145618, + [SMALL_STATE(4311)] = 145705, + [SMALL_STATE(4312)] = 145748, + [SMALL_STATE(4313)] = 145835, + [SMALL_STATE(4314)] = 145878, + [SMALL_STATE(4315)] = 145921, + [SMALL_STATE(4316)] = 146008, + [SMALL_STATE(4317)] = 146095, + [SMALL_STATE(4318)] = 146182, + [SMALL_STATE(4319)] = 146269, + [SMALL_STATE(4320)] = 146356, + [SMALL_STATE(4321)] = 146443, + [SMALL_STATE(4322)] = 146530, + [SMALL_STATE(4323)] = 146617, + [SMALL_STATE(4324)] = 146704, + [SMALL_STATE(4325)] = 146791, + [SMALL_STATE(4326)] = 146878, + [SMALL_STATE(4327)] = 146921, + [SMALL_STATE(4328)] = 147008, + [SMALL_STATE(4329)] = 147095, + [SMALL_STATE(4330)] = 147138, + [SMALL_STATE(4331)] = 147225, + [SMALL_STATE(4332)] = 147312, + [SMALL_STATE(4333)] = 147399, + [SMALL_STATE(4334)] = 147450, + [SMALL_STATE(4335)] = 147537, + [SMALL_STATE(4336)] = 147624, + [SMALL_STATE(4337)] = 147711, + [SMALL_STATE(4338)] = 147798, + [SMALL_STATE(4339)] = 147841, + [SMALL_STATE(4340)] = 147928, + [SMALL_STATE(4341)] = 148015, + [SMALL_STATE(4342)] = 148102, + [SMALL_STATE(4343)] = 148189, + [SMALL_STATE(4344)] = 148276, + [SMALL_STATE(4345)] = 148363, + [SMALL_STATE(4346)] = 148406, + [SMALL_STATE(4347)] = 148493, + [SMALL_STATE(4348)] = 148580, + [SMALL_STATE(4349)] = 148667, + [SMALL_STATE(4350)] = 148710, + [SMALL_STATE(4351)] = 148753, + [SMALL_STATE(4352)] = 148840, + [SMALL_STATE(4353)] = 148927, + [SMALL_STATE(4354)] = 149014, + [SMALL_STATE(4355)] = 149101, + [SMALL_STATE(4356)] = 149188, + [SMALL_STATE(4357)] = 149231, + [SMALL_STATE(4358)] = 149318, + [SMALL_STATE(4359)] = 149361, + [SMALL_STATE(4360)] = 149448, + [SMALL_STATE(4361)] = 149491, + [SMALL_STATE(4362)] = 149578, + [SMALL_STATE(4363)] = 149665, + [SMALL_STATE(4364)] = 149716, + [SMALL_STATE(4365)] = 149759, + [SMALL_STATE(4366)] = 149802, + [SMALL_STATE(4367)] = 149889, + [SMALL_STATE(4368)] = 149976, + [SMALL_STATE(4369)] = 150063, + [SMALL_STATE(4370)] = 150106, + [SMALL_STATE(4371)] = 150193, + [SMALL_STATE(4372)] = 150280, + [SMALL_STATE(4373)] = 150367, + [SMALL_STATE(4374)] = 150454, + [SMALL_STATE(4375)] = 150541, + [SMALL_STATE(4376)] = 150584, + [SMALL_STATE(4377)] = 150627, + [SMALL_STATE(4378)] = 150714, + [SMALL_STATE(4379)] = 150757, + [SMALL_STATE(4380)] = 150844, + [SMALL_STATE(4381)] = 150931, + [SMALL_STATE(4382)] = 150974, + [SMALL_STATE(4383)] = 151017, + [SMALL_STATE(4384)] = 151104, + [SMALL_STATE(4385)] = 151147, + [SMALL_STATE(4386)] = 151234, + [SMALL_STATE(4387)] = 151317, + [SMALL_STATE(4388)] = 151382, + [SMALL_STATE(4389)] = 151469, + [SMALL_STATE(4390)] = 151556, + [SMALL_STATE(4391)] = 151599, + [SMALL_STATE(4392)] = 151686, + [SMALL_STATE(4393)] = 151729, + [SMALL_STATE(4394)] = 151776, + [SMALL_STATE(4395)] = 151863, + [SMALL_STATE(4396)] = 151950, + [SMALL_STATE(4397)] = 151993, + [SMALL_STATE(4398)] = 152080, + [SMALL_STATE(4399)] = 152123, + [SMALL_STATE(4400)] = 152170, + [SMALL_STATE(4401)] = 152213, + [SMALL_STATE(4402)] = 152256, + [SMALL_STATE(4403)] = 152343, + [SMALL_STATE(4404)] = 152430, + [SMALL_STATE(4405)] = 152517, + [SMALL_STATE(4406)] = 152600, + [SMALL_STATE(4407)] = 152671, + [SMALL_STATE(4408)] = 152758, + [SMALL_STATE(4409)] = 152841, + [SMALL_STATE(4410)] = 152928, + [SMALL_STATE(4411)] = 153015, + [SMALL_STATE(4412)] = 153078, + [SMALL_STATE(4413)] = 153139, + [SMALL_STATE(4414)] = 153204, + [SMALL_STATE(4415)] = 153291, + [SMALL_STATE(4416)] = 153360, + [SMALL_STATE(4417)] = 153447, + [SMALL_STATE(4418)] = 153518, + [SMALL_STATE(4419)] = 153605, + [SMALL_STATE(4420)] = 153692, + [SMALL_STATE(4421)] = 153767, + [SMALL_STATE(4422)] = 153854, + [SMALL_STATE(4423)] = 153941, + [SMALL_STATE(4424)] = 154028, + [SMALL_STATE(4425)] = 154105, + [SMALL_STATE(4426)] = 154192, + [SMALL_STATE(4427)] = 154271, + [SMALL_STATE(4428)] = 154358, + [SMALL_STATE(4429)] = 154401, + [SMALL_STATE(4430)] = 154444, + [SMALL_STATE(4431)] = 154525, + [SMALL_STATE(4432)] = 154612, + [SMALL_STATE(4433)] = 154699, + [SMALL_STATE(4434)] = 154786, + [SMALL_STATE(4435)] = 154873, + [SMALL_STATE(4436)] = 154916, + [SMALL_STATE(4437)] = 154975, + [SMALL_STATE(4438)] = 155060, + [SMALL_STATE(4439)] = 155147, + [SMALL_STATE(4440)] = 155234, + [SMALL_STATE(4441)] = 155321, + [SMALL_STATE(4442)] = 155408, + [SMALL_STATE(4443)] = 155495, + [SMALL_STATE(4444)] = 155582, + [SMALL_STATE(4445)] = 155669, + [SMALL_STATE(4446)] = 155756, + [SMALL_STATE(4447)] = 155843, + [SMALL_STATE(4448)] = 155930, + [SMALL_STATE(4449)] = 156013, + [SMALL_STATE(4450)] = 156100, + [SMALL_STATE(4451)] = 156143, + [SMALL_STATE(4452)] = 156230, + [SMALL_STATE(4453)] = 156317, + [SMALL_STATE(4454)] = 156360, + [SMALL_STATE(4455)] = 156447, + [SMALL_STATE(4456)] = 156534, + [SMALL_STATE(4457)] = 156621, + [SMALL_STATE(4458)] = 156664, + [SMALL_STATE(4459)] = 156751, + [SMALL_STATE(4460)] = 156794, + [SMALL_STATE(4461)] = 156837, + [SMALL_STATE(4462)] = 156924, + [SMALL_STATE(4463)] = 157011, + [SMALL_STATE(4464)] = 157056, + [SMALL_STATE(4465)] = 157107, + [SMALL_STATE(4466)] = 157194, + [SMALL_STATE(4467)] = 157237, + [SMALL_STATE(4468)] = 157324, + [SMALL_STATE(4469)] = 157367, + [SMALL_STATE(4470)] = 157454, + [SMALL_STATE(4471)] = 157497, + [SMALL_STATE(4472)] = 157584, + [SMALL_STATE(4473)] = 157671, + [SMALL_STATE(4474)] = 157714, + [SMALL_STATE(4475)] = 157801, + [SMALL_STATE(4476)] = 157856, + [SMALL_STATE(4477)] = 157943, + [SMALL_STATE(4478)] = 158030, + [SMALL_STATE(4479)] = 158073, + [SMALL_STATE(4480)] = 158116, + [SMALL_STATE(4481)] = 158171, + [SMALL_STATE(4482)] = 158214, + [SMALL_STATE(4483)] = 158301, + [SMALL_STATE(4484)] = 158388, + [SMALL_STATE(4485)] = 158475, + [SMALL_STATE(4486)] = 158518, + [SMALL_STATE(4487)] = 158605, + [SMALL_STATE(4488)] = 158692, + [SMALL_STATE(4489)] = 158735, + [SMALL_STATE(4490)] = 158822, + [SMALL_STATE(4491)] = 158865, + [SMALL_STATE(4492)] = 158908, + [SMALL_STATE(4493)] = 158995, + [SMALL_STATE(4494)] = 159038, + [SMALL_STATE(4495)] = 159125, + [SMALL_STATE(4496)] = 159212, + [SMALL_STATE(4497)] = 159299, + [SMALL_STATE(4498)] = 159386, + [SMALL_STATE(4499)] = 159473, + [SMALL_STATE(4500)] = 159560, + [SMALL_STATE(4501)] = 159647, + [SMALL_STATE(4502)] = 159734, + [SMALL_STATE(4503)] = 159821, + [SMALL_STATE(4504)] = 159892, + [SMALL_STATE(4505)] = 159935, + [SMALL_STATE(4506)] = 160022, + [SMALL_STATE(4507)] = 160109, + [SMALL_STATE(4508)] = 160196, + [SMALL_STATE(4509)] = 160240, + [SMALL_STATE(4510)] = 160316, + [SMALL_STATE(4511)] = 160392, + [SMALL_STATE(4512)] = 160468, + [SMALL_STATE(4513)] = 160552, + [SMALL_STATE(4514)] = 160628, + [SMALL_STATE(4515)] = 160672, + [SMALL_STATE(4516)] = 160736, + [SMALL_STATE(4517)] = 160806, + [SMALL_STATE(4518)] = 160852, + [SMALL_STATE(4519)] = 160916, + [SMALL_STATE(4520)] = 160980, + [SMALL_STATE(4521)] = 161022, + [SMALL_STATE(4522)] = 161086, + [SMALL_STATE(4523)] = 161132, + [SMALL_STATE(4524)] = 161202, + [SMALL_STATE(4525)] = 161286, + [SMALL_STATE(4526)] = 161331, + [SMALL_STATE(4527)] = 161388, + [SMALL_STATE(4528)] = 161435, + [SMALL_STATE(4529)] = 161498, + [SMALL_STATE(4530)] = 161555, + [SMALL_STATE(4531)] = 161624, + [SMALL_STATE(4532)] = 161667, + [SMALL_STATE(4533)] = 161730, + [SMALL_STATE(4534)] = 161793, + [SMALL_STATE(4535)] = 161856, + [SMALL_STATE(4536)] = 161919, + [SMALL_STATE(4537)] = 161976, + [SMALL_STATE(4538)] = 162017, + [SMALL_STATE(4539)] = 162080, + [SMALL_STATE(4540)] = 162127, + [SMALL_STATE(4541)] = 162196, + [SMALL_STATE(4542)] = 162259, + [SMALL_STATE(4543)] = 162322, + [SMALL_STATE(4544)] = 162365, + [SMALL_STATE(4545)] = 162445, + [SMALL_STATE(4546)] = 162525, + [SMALL_STATE(4547)] = 162573, + [SMALL_STATE(4548)] = 162619, + [SMALL_STATE(4549)] = 162681, + [SMALL_STATE(4550)] = 162761, + [SMALL_STATE(4551)] = 162841, + [SMALL_STATE(4552)] = 162881, + [SMALL_STATE(4553)] = 162961, + [SMALL_STATE(4554)] = 163023, + [SMALL_STATE(4555)] = 163085, + [SMALL_STATE(4556)] = 163131, + [SMALL_STATE(4557)] = 163211, + [SMALL_STATE(4558)] = 163291, + [SMALL_STATE(4559)] = 163331, + [SMALL_STATE(4560)] = 163393, + [SMALL_STATE(4561)] = 163433, + [SMALL_STATE(4562)] = 163477, + [SMALL_STATE(4563)] = 163557, + [SMALL_STATE(4564)] = 163619, + [SMALL_STATE(4565)] = 163681, + [SMALL_STATE(4566)] = 163761, + [SMALL_STATE(4567)] = 163841, + [SMALL_STATE(4568)] = 163887, + [SMALL_STATE(4569)] = 163967, + [SMALL_STATE(4570)] = 164029, + [SMALL_STATE(4571)] = 164109, + [SMALL_STATE(4572)] = 164189, + [SMALL_STATE(4573)] = 164235, + [SMALL_STATE(4574)] = 164283, + [SMALL_STATE(4575)] = 164329, + [SMALL_STATE(4576)] = 164409, + [SMALL_STATE(4577)] = 164457, + [SMALL_STATE(4578)] = 164503, + [SMALL_STATE(4579)] = 164565, + [SMALL_STATE(4580)] = 164604, + [SMALL_STATE(4581)] = 164651, + [SMALL_STATE(4582)] = 164694, + [SMALL_STATE(4583)] = 164733, + [SMALL_STATE(4584)] = 164794, + [SMALL_STATE(4585)] = 164855, + [SMALL_STATE(4586)] = 164900, + [SMALL_STATE(4587)] = 164961, + [SMALL_STATE(4588)] = 165022, + [SMALL_STATE(4589)] = 165061, + [SMALL_STATE(4590)] = 165131, + [SMALL_STATE(4591)] = 165201, + [SMALL_STATE(4592)] = 165271, + [SMALL_STATE(4593)] = 165345, + [SMALL_STATE(4594)] = 165403, + [SMALL_STATE(4595)] = 165441, + [SMALL_STATE(4596)] = 165487, + [SMALL_STATE(4597)] = 165525, + [SMALL_STATE(4598)] = 165583, + [SMALL_STATE(4599)] = 165621, + [SMALL_STATE(4600)] = 165659, + [SMALL_STATE(4601)] = 165697, + [SMALL_STATE(4602)] = 165735, + [SMALL_STATE(4603)] = 165773, + [SMALL_STATE(4604)] = 165819, + [SMALL_STATE(4605)] = 165893, + [SMALL_STATE(4606)] = 165967, + [SMALL_STATE(4607)] = 166041, + [SMALL_STATE(4608)] = 166111, + [SMALL_STATE(4609)] = 166181, + [SMALL_STATE(4610)] = 166255, + [SMALL_STATE(4611)] = 166329, + [SMALL_STATE(4612)] = 166403, + [SMALL_STATE(4613)] = 166477, + [SMALL_STATE(4614)] = 166547, + [SMALL_STATE(4615)] = 166621, + [SMALL_STATE(4616)] = 166695, + [SMALL_STATE(4617)] = 166765, + [SMALL_STATE(4618)] = 166839, + [SMALL_STATE(4619)] = 166909, + [SMALL_STATE(4620)] = 166983, + [SMALL_STATE(4621)] = 167057, + [SMALL_STATE(4622)] = 167131, + [SMALL_STATE(4623)] = 167201, + [SMALL_STATE(4624)] = 167275, + [SMALL_STATE(4625)] = 167349, + [SMALL_STATE(4626)] = 167423, + [SMALL_STATE(4627)] = 167497, + [SMALL_STATE(4628)] = 167571, + [SMALL_STATE(4629)] = 167641, + [SMALL_STATE(4630)] = 167711, + [SMALL_STATE(4631)] = 167785, + [SMALL_STATE(4632)] = 167843, + [SMALL_STATE(4633)] = 167903, + [SMALL_STATE(4634)] = 167977, + [SMALL_STATE(4635)] = 168051, + [SMALL_STATE(4636)] = 168121, + [SMALL_STATE(4637)] = 168195, + [SMALL_STATE(4638)] = 168265, + [SMALL_STATE(4639)] = 168305, + [SMALL_STATE(4640)] = 168379, + [SMALL_STATE(4641)] = 168449, + [SMALL_STATE(4642)] = 168507, + [SMALL_STATE(4643)] = 168581, + [SMALL_STATE(4644)] = 168655, + [SMALL_STATE(4645)] = 168695, + [SMALL_STATE(4646)] = 168769, + [SMALL_STATE(4647)] = 168829, + [SMALL_STATE(4648)] = 168869, + [SMALL_STATE(4649)] = 168907, + [SMALL_STATE(4650)] = 168977, + [SMALL_STATE(4651)] = 169015, + [SMALL_STATE(4652)] = 169089, + [SMALL_STATE(4653)] = 169163, + [SMALL_STATE(4654)] = 169233, + [SMALL_STATE(4655)] = 169307, + [SMALL_STATE(4656)] = 169367, + [SMALL_STATE(4657)] = 169437, + [SMALL_STATE(4658)] = 169507, + [SMALL_STATE(4659)] = 169577, + [SMALL_STATE(4660)] = 169635, + [SMALL_STATE(4661)] = 169695, + [SMALL_STATE(4662)] = 169765, + [SMALL_STATE(4663)] = 169839, + [SMALL_STATE(4664)] = 169909, + [SMALL_STATE(4665)] = 169979, + [SMALL_STATE(4666)] = 170053, + [SMALL_STATE(4667)] = 170111, + [SMALL_STATE(4668)] = 170181, + [SMALL_STATE(4669)] = 170251, + [SMALL_STATE(4670)] = 170325, + [SMALL_STATE(4671)] = 170392, + [SMALL_STATE(4672)] = 170459, + [SMALL_STATE(4673)] = 170526, + [SMALL_STATE(4674)] = 170593, + [SMALL_STATE(4675)] = 170642, + [SMALL_STATE(4676)] = 170709, + [SMALL_STATE(4677)] = 170776, + [SMALL_STATE(4678)] = 170843, + [SMALL_STATE(4679)] = 170910, + [SMALL_STATE(4680)] = 170977, + [SMALL_STATE(4681)] = 171044, + [SMALL_STATE(4682)] = 171111, + [SMALL_STATE(4683)] = 171178, + [SMALL_STATE(4684)] = 171245, + [SMALL_STATE(4685)] = 171312, + [SMALL_STATE(4686)] = 171379, + [SMALL_STATE(4687)] = 171416, + [SMALL_STATE(4688)] = 171459, + [SMALL_STATE(4689)] = 171526, + [SMALL_STATE(4690)] = 171569, + [SMALL_STATE(4691)] = 171636, + [SMALL_STATE(4692)] = 171703, + [SMALL_STATE(4693)] = 171770, + [SMALL_STATE(4694)] = 171819, + [SMALL_STATE(4695)] = 171886, + [SMALL_STATE(4696)] = 171953, + [SMALL_STATE(4697)] = 172020, + [SMALL_STATE(4698)] = 172087, + [SMALL_STATE(4699)] = 172154, + [SMALL_STATE(4700)] = 172221, + [SMALL_STATE(4701)] = 172260, + [SMALL_STATE(4702)] = 172327, + [SMALL_STATE(4703)] = 172394, + [SMALL_STATE(4704)] = 172443, + [SMALL_STATE(4705)] = 172510, + [SMALL_STATE(4706)] = 172554, + [SMALL_STATE(4707)] = 172594, + [SMALL_STATE(4708)] = 172638, + [SMALL_STATE(4709)] = 172682, + [SMALL_STATE(4710)] = 172726, + [SMALL_STATE(4711)] = 172770, + [SMALL_STATE(4712)] = 172814, + [SMALL_STATE(4713)] = 172850, + [SMALL_STATE(4714)] = 172892, + [SMALL_STATE(4715)] = 172928, + [SMALL_STATE(4716)] = 172968, + [SMALL_STATE(4717)] = 173009, + [SMALL_STATE(4718)] = 173084, + [SMALL_STATE(4719)] = 173126, + [SMALL_STATE(4720)] = 173162, + [SMALL_STATE(4721)] = 173200, + [SMALL_STATE(4722)] = 173238, + [SMALL_STATE(4723)] = 173280, + [SMALL_STATE(4724)] = 173314, + [SMALL_STATE(4725)] = 173354, + [SMALL_STATE(4726)] = 173392, + [SMALL_STATE(4727)] = 173425, + [SMALL_STATE(4728)] = 173486, + [SMALL_STATE(4729)] = 173519, + [SMALL_STATE(4730)] = 173552, + [SMALL_STATE(4731)] = 173585, + [SMALL_STATE(4732)] = 173646, + [SMALL_STATE(4733)] = 173679, + [SMALL_STATE(4734)] = 173712, + [SMALL_STATE(4735)] = 173745, + [SMALL_STATE(4736)] = 173806, + [SMALL_STATE(4737)] = 173839, + [SMALL_STATE(4738)] = 173872, + [SMALL_STATE(4739)] = 173905, + [SMALL_STATE(4740)] = 173938, + [SMALL_STATE(4741)] = 173971, + [SMALL_STATE(4742)] = 174004, + [SMALL_STATE(4743)] = 174037, + [SMALL_STATE(4744)] = 174070, + [SMALL_STATE(4745)] = 174103, + [SMALL_STATE(4746)] = 174136, + [SMALL_STATE(4747)] = 174169, + [SMALL_STATE(4748)] = 174202, + [SMALL_STATE(4749)] = 174235, + [SMALL_STATE(4750)] = 174268, + [SMALL_STATE(4751)] = 174301, + [SMALL_STATE(4752)] = 174334, + [SMALL_STATE(4753)] = 174367, + [SMALL_STATE(4754)] = 174400, + [SMALL_STATE(4755)] = 174433, + [SMALL_STATE(4756)] = 174466, + [SMALL_STATE(4757)] = 174527, + [SMALL_STATE(4758)] = 174560, + [SMALL_STATE(4759)] = 174593, + [SMALL_STATE(4760)] = 174654, + [SMALL_STATE(4761)] = 174687, + [SMALL_STATE(4762)] = 174720, + [SMALL_STATE(4763)] = 174753, + [SMALL_STATE(4764)] = 174786, + [SMALL_STATE(4765)] = 174819, + [SMALL_STATE(4766)] = 174852, + [SMALL_STATE(4767)] = 174885, + [SMALL_STATE(4768)] = 174946, + [SMALL_STATE(4769)] = 174979, + [SMALL_STATE(4770)] = 175025, + [SMALL_STATE(4771)] = 175071, + [SMALL_STATE(4772)] = 175107, + [SMALL_STATE(4773)] = 175153, + [SMALL_STATE(4774)] = 175197, + [SMALL_STATE(4775)] = 175243, + [SMALL_STATE(4776)] = 175289, + [SMALL_STATE(4777)] = 175335, + [SMALL_STATE(4778)] = 175381, + [SMALL_STATE(4779)] = 175427, + [SMALL_STATE(4780)] = 175473, + [SMALL_STATE(4781)] = 175519, + [SMALL_STATE(4782)] = 175565, + [SMALL_STATE(4783)] = 175611, + [SMALL_STATE(4784)] = 175657, + [SMALL_STATE(4785)] = 175703, + [SMALL_STATE(4786)] = 175747, + [SMALL_STATE(4787)] = 175793, + [SMALL_STATE(4788)] = 175839, + [SMALL_STATE(4789)] = 175885, + [SMALL_STATE(4790)] = 175931, + [SMALL_STATE(4791)] = 175977, + [SMALL_STATE(4792)] = 176023, + [SMALL_STATE(4793)] = 176067, + [SMALL_STATE(4794)] = 176113, + [SMALL_STATE(4795)] = 176159, + [SMALL_STATE(4796)] = 176205, + [SMALL_STATE(4797)] = 176251, + [SMALL_STATE(4798)] = 176299, + [SMALL_STATE(4799)] = 176345, + [SMALL_STATE(4800)] = 176391, + [SMALL_STATE(4801)] = 176437, + [SMALL_STATE(4802)] = 176483, + [SMALL_STATE(4803)] = 176529, + [SMALL_STATE(4804)] = 176575, + [SMALL_STATE(4805)] = 176621, + [SMALL_STATE(4806)] = 176667, + [SMALL_STATE(4807)] = 176713, + [SMALL_STATE(4808)] = 176767, + [SMALL_STATE(4809)] = 176821, + [SMALL_STATE(4810)] = 176875, + [SMALL_STATE(4811)] = 176921, + [SMALL_STATE(4812)] = 176967, + [SMALL_STATE(4813)] = 177013, + [SMALL_STATE(4814)] = 177059, + [SMALL_STATE(4815)] = 177105, + [SMALL_STATE(4816)] = 177151, + [SMALL_STATE(4817)] = 177197, + [SMALL_STATE(4818)] = 177243, + [SMALL_STATE(4819)] = 177289, + [SMALL_STATE(4820)] = 177335, + [SMALL_STATE(4821)] = 177381, + [SMALL_STATE(4822)] = 177427, + [SMALL_STATE(4823)] = 177473, + [SMALL_STATE(4824)] = 177519, + [SMALL_STATE(4825)] = 177584, + [SMALL_STATE(4826)] = 177649, + [SMALL_STATE(4827)] = 177714, + [SMALL_STATE(4828)] = 177779, + [SMALL_STATE(4829)] = 177844, + [SMALL_STATE(4830)] = 177909, + [SMALL_STATE(4831)] = 177974, + [SMALL_STATE(4832)] = 178033, + [SMALL_STATE(4833)] = 178098, + [SMALL_STATE(4834)] = 178163, + [SMALL_STATE(4835)] = 178216, + [SMALL_STATE(4836)] = 178281, + [SMALL_STATE(4837)] = 178334, + [SMALL_STATE(4838)] = 178399, + [SMALL_STATE(4839)] = 178464, + [SMALL_STATE(4840)] = 178529, + [SMALL_STATE(4841)] = 178594, + [SMALL_STATE(4842)] = 178659, + [SMALL_STATE(4843)] = 178724, + [SMALL_STATE(4844)] = 178789, + [SMALL_STATE(4845)] = 178854, + [SMALL_STATE(4846)] = 178919, + [SMALL_STATE(4847)] = 178984, + [SMALL_STATE(4848)] = 179049, + [SMALL_STATE(4849)] = 179114, + [SMALL_STATE(4850)] = 179179, + [SMALL_STATE(4851)] = 179244, + [SMALL_STATE(4852)] = 179309, + [SMALL_STATE(4853)] = 179374, + [SMALL_STATE(4854)] = 179433, + [SMALL_STATE(4855)] = 179498, + [SMALL_STATE(4856)] = 179563, + [SMALL_STATE(4857)] = 179628, + [SMALL_STATE(4858)] = 179693, + [SMALL_STATE(4859)] = 179758, + [SMALL_STATE(4860)] = 179823, + [SMALL_STATE(4861)] = 179888, + [SMALL_STATE(4862)] = 179953, + [SMALL_STATE(4863)] = 180018, + [SMALL_STATE(4864)] = 180083, + [SMALL_STATE(4865)] = 180148, + [SMALL_STATE(4866)] = 180213, + [SMALL_STATE(4867)] = 180278, + [SMALL_STATE(4868)] = 180343, + [SMALL_STATE(4869)] = 180408, + [SMALL_STATE(4870)] = 180473, + [SMALL_STATE(4871)] = 180538, + [SMALL_STATE(4872)] = 180603, + [SMALL_STATE(4873)] = 180668, + [SMALL_STATE(4874)] = 180733, + [SMALL_STATE(4875)] = 180798, + [SMALL_STATE(4876)] = 180863, + [SMALL_STATE(4877)] = 180928, + [SMALL_STATE(4878)] = 180993, + [SMALL_STATE(4879)] = 181058, + [SMALL_STATE(4880)] = 181117, + [SMALL_STATE(4881)] = 181182, + [SMALL_STATE(4882)] = 181247, + [SMALL_STATE(4883)] = 181312, + [SMALL_STATE(4884)] = 181371, + [SMALL_STATE(4885)] = 181436, + [SMALL_STATE(4886)] = 181501, + [SMALL_STATE(4887)] = 181566, + [SMALL_STATE(4888)] = 181631, + [SMALL_STATE(4889)] = 181696, + [SMALL_STATE(4890)] = 181761, + [SMALL_STATE(4891)] = 181794, + [SMALL_STATE(4892)] = 181859, + [SMALL_STATE(4893)] = 181924, + [SMALL_STATE(4894)] = 181989, + [SMALL_STATE(4895)] = 182054, + [SMALL_STATE(4896)] = 182119, + [SMALL_STATE(4897)] = 182172, + [SMALL_STATE(4898)] = 182237, + [SMALL_STATE(4899)] = 182302, + [SMALL_STATE(4900)] = 182367, + [SMALL_STATE(4901)] = 182414, + [SMALL_STATE(4902)] = 182479, + [SMALL_STATE(4903)] = 182544, + [SMALL_STATE(4904)] = 182609, + [SMALL_STATE(4905)] = 182674, + [SMALL_STATE(4906)] = 182739, + [SMALL_STATE(4907)] = 182804, + [SMALL_STATE(4908)] = 182869, + [SMALL_STATE(4909)] = 182921, + [SMALL_STATE(4910)] = 182973, + [SMALL_STATE(4911)] = 183007, + [SMALL_STATE(4912)] = 183059, + [SMALL_STATE(4913)] = 183111, + [SMALL_STATE(4914)] = 183163, + [SMALL_STATE(4915)] = 183215, + [SMALL_STATE(4916)] = 183267, + [SMALL_STATE(4917)] = 183319, + [SMALL_STATE(4918)] = 183371, + [SMALL_STATE(4919)] = 183423, + [SMALL_STATE(4920)] = 183475, + [SMALL_STATE(4921)] = 183527, + [SMALL_STATE(4922)] = 183579, + [SMALL_STATE(4923)] = 183631, + [SMALL_STATE(4924)] = 183683, + [SMALL_STATE(4925)] = 183735, + [SMALL_STATE(4926)] = 183787, + [SMALL_STATE(4927)] = 183839, + [SMALL_STATE(4928)] = 183891, + [SMALL_STATE(4929)] = 183943, + [SMALL_STATE(4930)] = 183995, + [SMALL_STATE(4931)] = 184047, + [SMALL_STATE(4932)] = 184099, + [SMALL_STATE(4933)] = 184151, + [SMALL_STATE(4934)] = 184203, + [SMALL_STATE(4935)] = 184235, + [SMALL_STATE(4936)] = 184269, + [SMALL_STATE(4937)] = 184321, + [SMALL_STATE(4938)] = 184357, + [SMALL_STATE(4939)] = 184409, + [SMALL_STATE(4940)] = 184461, + [SMALL_STATE(4941)] = 184513, + [SMALL_STATE(4942)] = 184565, + [SMALL_STATE(4943)] = 184617, + [SMALL_STATE(4944)] = 184669, + [SMALL_STATE(4945)] = 184721, + [SMALL_STATE(4946)] = 184773, + [SMALL_STATE(4947)] = 184825, + [SMALL_STATE(4948)] = 184877, + [SMALL_STATE(4949)] = 184929, + [SMALL_STATE(4950)] = 184981, + [SMALL_STATE(4951)] = 185033, + [SMALL_STATE(4952)] = 185084, + [SMALL_STATE(4953)] = 185127, + [SMALL_STATE(4954)] = 185182, + [SMALL_STATE(4955)] = 185233, + [SMALL_STATE(4956)] = 185284, + [SMALL_STATE(4957)] = 185335, + [SMALL_STATE(4958)] = 185390, + [SMALL_STATE(4959)] = 185441, + [SMALL_STATE(4960)] = 185492, + [SMALL_STATE(4961)] = 185529, + [SMALL_STATE(4962)] = 185562, + [SMALL_STATE(4963)] = 185613, + [SMALL_STATE(4964)] = 185664, + [SMALL_STATE(4965)] = 185715, + [SMALL_STATE(4966)] = 185760, [SMALL_STATE(4967)] = 185803, - [SMALL_STATE(4968)] = 185827, - [SMALL_STATE(4969)] = 185853, - [SMALL_STATE(4970)] = 185879, - [SMALL_STATE(4971)] = 185905, - [SMALL_STATE(4972)] = 185923, - [SMALL_STATE(4973)] = 185947, - [SMALL_STATE(4974)] = 185973, - [SMALL_STATE(4975)] = 185997, - [SMALL_STATE(4976)] = 186015, - [SMALL_STATE(4977)] = 186041, - [SMALL_STATE(4978)] = 186058, - [SMALL_STATE(4979)] = 186085, - [SMALL_STATE(4980)] = 186116, - [SMALL_STATE(4981)] = 186147, - [SMALL_STATE(4982)] = 186172, - [SMALL_STATE(4983)] = 186195, - [SMALL_STATE(4984)] = 186224, - [SMALL_STATE(4985)] = 186253, - [SMALL_STATE(4986)] = 186280, - [SMALL_STATE(4987)] = 186309, - [SMALL_STATE(4988)] = 186330, - [SMALL_STATE(4989)] = 186351, - [SMALL_STATE(4990)] = 186382, - [SMALL_STATE(4991)] = 186413, - [SMALL_STATE(4992)] = 186436, - [SMALL_STATE(4993)] = 186465, - [SMALL_STATE(4994)] = 186492, - [SMALL_STATE(4995)] = 186521, - [SMALL_STATE(4996)] = 186550, - [SMALL_STATE(4997)] = 186577, - [SMALL_STATE(4998)] = 186608, - [SMALL_STATE(4999)] = 186631, - [SMALL_STATE(5000)] = 186652, - [SMALL_STATE(5001)] = 186669, - [SMALL_STATE(5002)] = 186700, - [SMALL_STATE(5003)] = 186721, - [SMALL_STATE(5004)] = 186752, - [SMALL_STATE(5005)] = 186769, - [SMALL_STATE(5006)] = 186798, - [SMALL_STATE(5007)] = 186829, - [SMALL_STATE(5008)] = 186856, - [SMALL_STATE(5009)] = 186885, - [SMALL_STATE(5010)] = 186908, - [SMALL_STATE(5011)] = 186931, - [SMALL_STATE(5012)] = 186954, - [SMALL_STATE(5013)] = 186983, - [SMALL_STATE(5014)] = 187006, - [SMALL_STATE(5015)] = 187033, - [SMALL_STATE(5016)] = 187054, - [SMALL_STATE(5017)] = 187083, - [SMALL_STATE(5018)] = 187112, - [SMALL_STATE(5019)] = 187141, - [SMALL_STATE(5020)] = 187166, - [SMALL_STATE(5021)] = 187197, - [SMALL_STATE(5022)] = 187226, - [SMALL_STATE(5023)] = 187257, - [SMALL_STATE(5024)] = 187276, - [SMALL_STATE(5025)] = 187307, - [SMALL_STATE(5026)] = 187338, - [SMALL_STATE(5027)] = 187361, - [SMALL_STATE(5028)] = 187390, - [SMALL_STATE(5029)] = 187419, - [SMALL_STATE(5030)] = 187450, - [SMALL_STATE(5031)] = 187479, - [SMALL_STATE(5032)] = 187506, - [SMALL_STATE(5033)] = 187535, - [SMALL_STATE(5034)] = 187552, - [SMALL_STATE(5035)] = 187583, - [SMALL_STATE(5036)] = 187614, - [SMALL_STATE(5037)] = 187645, - [SMALL_STATE(5038)] = 187670, - [SMALL_STATE(5039)] = 187699, - [SMALL_STATE(5040)] = 187716, - [SMALL_STATE(5041)] = 187747, - [SMALL_STATE(5042)] = 187766, - [SMALL_STATE(5043)] = 187783, - [SMALL_STATE(5044)] = 187806, - [SMALL_STATE(5045)] = 187831, - [SMALL_STATE(5046)] = 187848, - [SMALL_STATE(5047)] = 187874, - [SMALL_STATE(5048)] = 187900, - [SMALL_STATE(5049)] = 187926, - [SMALL_STATE(5050)] = 187952, - [SMALL_STATE(5051)] = 187978, - [SMALL_STATE(5052)] = 188004, - [SMALL_STATE(5053)] = 188030, - [SMALL_STATE(5054)] = 188056, - [SMALL_STATE(5055)] = 188082, - [SMALL_STATE(5056)] = 188108, - [SMALL_STATE(5057)] = 188128, - [SMALL_STATE(5058)] = 188154, - [SMALL_STATE(5059)] = 188180, - [SMALL_STATE(5060)] = 188206, - [SMALL_STATE(5061)] = 188226, - [SMALL_STATE(5062)] = 188252, - [SMALL_STATE(5063)] = 188274, - [SMALL_STATE(5064)] = 188302, - [SMALL_STATE(5065)] = 188328, - [SMALL_STATE(5066)] = 188354, - [SMALL_STATE(5067)] = 188374, - [SMALL_STATE(5068)] = 188400, - [SMALL_STATE(5069)] = 188420, - [SMALL_STATE(5070)] = 188440, - [SMALL_STATE(5071)] = 188460, - [SMALL_STATE(5072)] = 188486, - [SMALL_STATE(5073)] = 188512, - [SMALL_STATE(5074)] = 188538, - [SMALL_STATE(5075)] = 188564, - [SMALL_STATE(5076)] = 188590, - [SMALL_STATE(5077)] = 188616, - [SMALL_STATE(5078)] = 188642, - [SMALL_STATE(5079)] = 188668, - [SMALL_STATE(5080)] = 188696, - [SMALL_STATE(5081)] = 188722, - [SMALL_STATE(5082)] = 188746, - [SMALL_STATE(5083)] = 188772, - [SMALL_STATE(5084)] = 188798, - [SMALL_STATE(5085)] = 188818, - [SMALL_STATE(5086)] = 188838, - [SMALL_STATE(5087)] = 188864, - [SMALL_STATE(5088)] = 188886, - [SMALL_STATE(5089)] = 188908, - [SMALL_STATE(5090)] = 188934, - [SMALL_STATE(5091)] = 188954, - [SMALL_STATE(5092)] = 188974, - [SMALL_STATE(5093)] = 189000, - [SMALL_STATE(5094)] = 189026, - [SMALL_STATE(5095)] = 189052, - [SMALL_STATE(5096)] = 189080, - [SMALL_STATE(5097)] = 189105, - [SMALL_STATE(5098)] = 189130, - [SMALL_STATE(5099)] = 189145, - [SMALL_STATE(5100)] = 189160, - [SMALL_STATE(5101)] = 189175, - [SMALL_STATE(5102)] = 189200, - [SMALL_STATE(5103)] = 189225, - [SMALL_STATE(5104)] = 189240, - [SMALL_STATE(5105)] = 189255, - [SMALL_STATE(5106)] = 189270, - [SMALL_STATE(5107)] = 189295, - [SMALL_STATE(5108)] = 189310, - [SMALL_STATE(5109)] = 189333, - [SMALL_STATE(5110)] = 189356, - [SMALL_STATE(5111)] = 189381, - [SMALL_STATE(5112)] = 189406, - [SMALL_STATE(5113)] = 189421, - [SMALL_STATE(5114)] = 189444, - [SMALL_STATE(5115)] = 189469, - [SMALL_STATE(5116)] = 189487, - [SMALL_STATE(5117)] = 189505, - [SMALL_STATE(5118)] = 189525, - [SMALL_STATE(5119)] = 189543, - [SMALL_STATE(5120)] = 189563, - [SMALL_STATE(5121)] = 189583, - [SMALL_STATE(5122)] = 189597, - [SMALL_STATE(5123)] = 189611, - [SMALL_STATE(5124)] = 189625, - [SMALL_STATE(5125)] = 189639, - [SMALL_STATE(5126)] = 189655, - [SMALL_STATE(5127)] = 189675, - [SMALL_STATE(5128)] = 189689, - [SMALL_STATE(5129)] = 189709, - [SMALL_STATE(5130)] = 189729, - [SMALL_STATE(5131)] = 189749, - [SMALL_STATE(5132)] = 189767, - [SMALL_STATE(5133)] = 189781, - [SMALL_STATE(5134)] = 189799, - [SMALL_STATE(5135)] = 189819, - [SMALL_STATE(5136)] = 189833, - [SMALL_STATE(5137)] = 189847, - [SMALL_STATE(5138)] = 189865, - [SMALL_STATE(5139)] = 189883, - [SMALL_STATE(5140)] = 189903, - [SMALL_STATE(5141)] = 189923, - [SMALL_STATE(5142)] = 189941, - [SMALL_STATE(5143)] = 189961, - [SMALL_STATE(5144)] = 189981, - [SMALL_STATE(5145)] = 190001, - [SMALL_STATE(5146)] = 190021, - [SMALL_STATE(5147)] = 190041, - [SMALL_STATE(5148)] = 190061, - [SMALL_STATE(5149)] = 190075, - [SMALL_STATE(5150)] = 190089, - [SMALL_STATE(5151)] = 190102, - [SMALL_STATE(5152)] = 190121, - [SMALL_STATE(5153)] = 190138, - [SMALL_STATE(5154)] = 190155, - [SMALL_STATE(5155)] = 190174, - [SMALL_STATE(5156)] = 190193, - [SMALL_STATE(5157)] = 190210, - [SMALL_STATE(5158)] = 190229, - [SMALL_STATE(5159)] = 190246, - [SMALL_STATE(5160)] = 190265, - [SMALL_STATE(5161)] = 190284, - [SMALL_STATE(5162)] = 190301, - [SMALL_STATE(5163)] = 190320, - [SMALL_STATE(5164)] = 190333, - [SMALL_STATE(5165)] = 190352, - [SMALL_STATE(5166)] = 190368, - [SMALL_STATE(5167)] = 190384, - [SMALL_STATE(5168)] = 190398, - [SMALL_STATE(5169)] = 190414, - [SMALL_STATE(5170)] = 190430, - [SMALL_STATE(5171)] = 190446, - [SMALL_STATE(5172)] = 190462, - [SMALL_STATE(5173)] = 190478, - [SMALL_STATE(5174)] = 190494, - [SMALL_STATE(5175)] = 190510, - [SMALL_STATE(5176)] = 190526, - [SMALL_STATE(5177)] = 190538, - [SMALL_STATE(5178)] = 190554, - [SMALL_STATE(5179)] = 190568, - [SMALL_STATE(5180)] = 190584, - [SMALL_STATE(5181)] = 190598, - [SMALL_STATE(5182)] = 190610, - [SMALL_STATE(5183)] = 190626, - [SMALL_STATE(5184)] = 190640, - [SMALL_STATE(5185)] = 190654, - [SMALL_STATE(5186)] = 190668, - [SMALL_STATE(5187)] = 190684, - [SMALL_STATE(5188)] = 190700, - [SMALL_STATE(5189)] = 190716, - [SMALL_STATE(5190)] = 190732, - [SMALL_STATE(5191)] = 190748, - [SMALL_STATE(5192)] = 190762, - [SMALL_STATE(5193)] = 190778, - [SMALL_STATE(5194)] = 190794, - [SMALL_STATE(5195)] = 190810, - [SMALL_STATE(5196)] = 190826, - [SMALL_STATE(5197)] = 190840, - [SMALL_STATE(5198)] = 190856, - [SMALL_STATE(5199)] = 190872, - [SMALL_STATE(5200)] = 190888, - [SMALL_STATE(5201)] = 190904, - [SMALL_STATE(5202)] = 190920, - [SMALL_STATE(5203)] = 190936, - [SMALL_STATE(5204)] = 190950, - [SMALL_STATE(5205)] = 190966, - [SMALL_STATE(5206)] = 190982, - [SMALL_STATE(5207)] = 190996, - [SMALL_STATE(5208)] = 191010, - [SMALL_STATE(5209)] = 191024, - [SMALL_STATE(5210)] = 191040, - [SMALL_STATE(5211)] = 191056, - [SMALL_STATE(5212)] = 191070, - [SMALL_STATE(5213)] = 191084, - [SMALL_STATE(5214)] = 191100, - [SMALL_STATE(5215)] = 191110, - [SMALL_STATE(5216)] = 191126, - [SMALL_STATE(5217)] = 191140, - [SMALL_STATE(5218)] = 191154, - [SMALL_STATE(5219)] = 191170, - [SMALL_STATE(5220)] = 191180, - [SMALL_STATE(5221)] = 191196, - [SMALL_STATE(5222)] = 191212, - [SMALL_STATE(5223)] = 191228, - [SMALL_STATE(5224)] = 191244, - [SMALL_STATE(5225)] = 191260, - [SMALL_STATE(5226)] = 191274, - [SMALL_STATE(5227)] = 191290, - [SMALL_STATE(5228)] = 191306, - [SMALL_STATE(5229)] = 191322, - [SMALL_STATE(5230)] = 191338, - [SMALL_STATE(5231)] = 191354, - [SMALL_STATE(5232)] = 191368, - [SMALL_STATE(5233)] = 191384, - [SMALL_STATE(5234)] = 191400, - [SMALL_STATE(5235)] = 191416, - [SMALL_STATE(5236)] = 191432, - [SMALL_STATE(5237)] = 191448, - [SMALL_STATE(5238)] = 191462, - [SMALL_STATE(5239)] = 191476, - [SMALL_STATE(5240)] = 191490, - [SMALL_STATE(5241)] = 191506, - [SMALL_STATE(5242)] = 191522, - [SMALL_STATE(5243)] = 191536, - [SMALL_STATE(5244)] = 191552, - [SMALL_STATE(5245)] = 191568, - [SMALL_STATE(5246)] = 191584, - [SMALL_STATE(5247)] = 191598, - [SMALL_STATE(5248)] = 191614, - [SMALL_STATE(5249)] = 191628, - [SMALL_STATE(5250)] = 191642, - [SMALL_STATE(5251)] = 191656, - [SMALL_STATE(5252)] = 191670, - [SMALL_STATE(5253)] = 191686, - [SMALL_STATE(5254)] = 191702, - [SMALL_STATE(5255)] = 191718, - [SMALL_STATE(5256)] = 191734, - [SMALL_STATE(5257)] = 191750, - [SMALL_STATE(5258)] = 191766, - [SMALL_STATE(5259)] = 191782, - [SMALL_STATE(5260)] = 191798, - [SMALL_STATE(5261)] = 191814, - [SMALL_STATE(5262)] = 191830, - [SMALL_STATE(5263)] = 191844, - [SMALL_STATE(5264)] = 191858, - [SMALL_STATE(5265)] = 191874, - [SMALL_STATE(5266)] = 191890, - [SMALL_STATE(5267)] = 191904, - [SMALL_STATE(5268)] = 191918, - [SMALL_STATE(5269)] = 191934, - [SMALL_STATE(5270)] = 191950, - [SMALL_STATE(5271)] = 191966, - [SMALL_STATE(5272)] = 191982, - [SMALL_STATE(5273)] = 191998, - [SMALL_STATE(5274)] = 192014, - [SMALL_STATE(5275)] = 192030, - [SMALL_STATE(5276)] = 192044, - [SMALL_STATE(5277)] = 192060, - [SMALL_STATE(5278)] = 192076, - [SMALL_STATE(5279)] = 192092, - [SMALL_STATE(5280)] = 192106, - [SMALL_STATE(5281)] = 192122, - [SMALL_STATE(5282)] = 192136, - [SMALL_STATE(5283)] = 192152, - [SMALL_STATE(5284)] = 192166, - [SMALL_STATE(5285)] = 192180, - [SMALL_STATE(5286)] = 192196, - [SMALL_STATE(5287)] = 192212, - [SMALL_STATE(5288)] = 192228, - [SMALL_STATE(5289)] = 192244, - [SMALL_STATE(5290)] = 192260, - [SMALL_STATE(5291)] = 192276, - [SMALL_STATE(5292)] = 192292, - [SMALL_STATE(5293)] = 192308, - [SMALL_STATE(5294)] = 192322, - [SMALL_STATE(5295)] = 192338, - [SMALL_STATE(5296)] = 192354, - [SMALL_STATE(5297)] = 192370, - [SMALL_STATE(5298)] = 192386, - [SMALL_STATE(5299)] = 192402, - [SMALL_STATE(5300)] = 192418, - [SMALL_STATE(5301)] = 192434, - [SMALL_STATE(5302)] = 192450, - [SMALL_STATE(5303)] = 192466, - [SMALL_STATE(5304)] = 192482, - [SMALL_STATE(5305)] = 192496, - [SMALL_STATE(5306)] = 192512, - [SMALL_STATE(5307)] = 192528, - [SMALL_STATE(5308)] = 192544, - [SMALL_STATE(5309)] = 192560, - [SMALL_STATE(5310)] = 192576, - [SMALL_STATE(5311)] = 192590, - [SMALL_STATE(5312)] = 192602, - [SMALL_STATE(5313)] = 192618, - [SMALL_STATE(5314)] = 192634, - [SMALL_STATE(5315)] = 192648, - [SMALL_STATE(5316)] = 192664, - [SMALL_STATE(5317)] = 192680, - [SMALL_STATE(5318)] = 192696, - [SMALL_STATE(5319)] = 192712, - [SMALL_STATE(5320)] = 192728, - [SMALL_STATE(5321)] = 192744, - [SMALL_STATE(5322)] = 192760, - [SMALL_STATE(5323)] = 192776, - [SMALL_STATE(5324)] = 192790, - [SMALL_STATE(5325)] = 192806, - [SMALL_STATE(5326)] = 192820, - [SMALL_STATE(5327)] = 192836, - [SMALL_STATE(5328)] = 192850, - [SMALL_STATE(5329)] = 192866, - [SMALL_STATE(5330)] = 192882, - [SMALL_STATE(5331)] = 192898, - [SMALL_STATE(5332)] = 192914, - [SMALL_STATE(5333)] = 192930, - [SMALL_STATE(5334)] = 192946, - [SMALL_STATE(5335)] = 192962, - [SMALL_STATE(5336)] = 192978, - [SMALL_STATE(5337)] = 192992, - [SMALL_STATE(5338)] = 193008, - [SMALL_STATE(5339)] = 193024, - [SMALL_STATE(5340)] = 193038, - [SMALL_STATE(5341)] = 193050, - [SMALL_STATE(5342)] = 193066, - [SMALL_STATE(5343)] = 193082, - [SMALL_STATE(5344)] = 193098, - [SMALL_STATE(5345)] = 193114, - [SMALL_STATE(5346)] = 193128, - [SMALL_STATE(5347)] = 193144, - [SMALL_STATE(5348)] = 193160, - [SMALL_STATE(5349)] = 193176, - [SMALL_STATE(5350)] = 193192, - [SMALL_STATE(5351)] = 193208, - [SMALL_STATE(5352)] = 193224, - [SMALL_STATE(5353)] = 193240, - [SMALL_STATE(5354)] = 193256, - [SMALL_STATE(5355)] = 193272, - [SMALL_STATE(5356)] = 193288, - [SMALL_STATE(5357)] = 193302, - [SMALL_STATE(5358)] = 193318, - [SMALL_STATE(5359)] = 193334, - [SMALL_STATE(5360)] = 193346, - [SMALL_STATE(5361)] = 193362, - [SMALL_STATE(5362)] = 193376, - [SMALL_STATE(5363)] = 193392, - [SMALL_STATE(5364)] = 193406, - [SMALL_STATE(5365)] = 193422, - [SMALL_STATE(5366)] = 193438, - [SMALL_STATE(5367)] = 193452, - [SMALL_STATE(5368)] = 193465, - [SMALL_STATE(5369)] = 193478, - [SMALL_STATE(5370)] = 193491, - [SMALL_STATE(5371)] = 193504, - [SMALL_STATE(5372)] = 193517, - [SMALL_STATE(5373)] = 193530, - [SMALL_STATE(5374)] = 193543, - [SMALL_STATE(5375)] = 193556, - [SMALL_STATE(5376)] = 193569, - [SMALL_STATE(5377)] = 193582, - [SMALL_STATE(5378)] = 193595, - [SMALL_STATE(5379)] = 193608, - [SMALL_STATE(5380)] = 193621, - [SMALL_STATE(5381)] = 193634, - [SMALL_STATE(5382)] = 193647, - [SMALL_STATE(5383)] = 193658, - [SMALL_STATE(5384)] = 193671, - [SMALL_STATE(5385)] = 193682, - [SMALL_STATE(5386)] = 193695, - [SMALL_STATE(5387)] = 193708, - [SMALL_STATE(5388)] = 193721, - [SMALL_STATE(5389)] = 193734, - [SMALL_STATE(5390)] = 193747, - [SMALL_STATE(5391)] = 193760, - [SMALL_STATE(5392)] = 193773, - [SMALL_STATE(5393)] = 193786, - [SMALL_STATE(5394)] = 193799, - [SMALL_STATE(5395)] = 193812, - [SMALL_STATE(5396)] = 193825, - [SMALL_STATE(5397)] = 193838, - [SMALL_STATE(5398)] = 193851, - [SMALL_STATE(5399)] = 193864, - [SMALL_STATE(5400)] = 193877, - [SMALL_STATE(5401)] = 193890, - [SMALL_STATE(5402)] = 193903, - [SMALL_STATE(5403)] = 193916, - [SMALL_STATE(5404)] = 193929, - [SMALL_STATE(5405)] = 193940, - [SMALL_STATE(5406)] = 193953, - [SMALL_STATE(5407)] = 193966, - [SMALL_STATE(5408)] = 193979, - [SMALL_STATE(5409)] = 193992, - [SMALL_STATE(5410)] = 194003, - [SMALL_STATE(5411)] = 194016, - [SMALL_STATE(5412)] = 194029, - [SMALL_STATE(5413)] = 194042, - [SMALL_STATE(5414)] = 194055, - [SMALL_STATE(5415)] = 194068, - [SMALL_STATE(5416)] = 194081, - [SMALL_STATE(5417)] = 194094, - [SMALL_STATE(5418)] = 194107, - [SMALL_STATE(5419)] = 194120, - [SMALL_STATE(5420)] = 194133, - [SMALL_STATE(5421)] = 194146, - [SMALL_STATE(5422)] = 194159, - [SMALL_STATE(5423)] = 194172, - [SMALL_STATE(5424)] = 194185, - [SMALL_STATE(5425)] = 194198, - [SMALL_STATE(5426)] = 194211, - [SMALL_STATE(5427)] = 194224, - [SMALL_STATE(5428)] = 194237, - [SMALL_STATE(5429)] = 194248, - [SMALL_STATE(5430)] = 194261, - [SMALL_STATE(5431)] = 194274, - [SMALL_STATE(5432)] = 194285, - [SMALL_STATE(5433)] = 194298, - [SMALL_STATE(5434)] = 194309, - [SMALL_STATE(5435)] = 194322, - [SMALL_STATE(5436)] = 194335, - [SMALL_STATE(5437)] = 194348, - [SMALL_STATE(5438)] = 194361, - [SMALL_STATE(5439)] = 194374, - [SMALL_STATE(5440)] = 194387, - [SMALL_STATE(5441)] = 194400, - [SMALL_STATE(5442)] = 194413, - [SMALL_STATE(5443)] = 194422, - [SMALL_STATE(5444)] = 194435, - [SMALL_STATE(5445)] = 194444, - [SMALL_STATE(5446)] = 194457, - [SMALL_STATE(5447)] = 194470, - [SMALL_STATE(5448)] = 194481, - [SMALL_STATE(5449)] = 194494, - [SMALL_STATE(5450)] = 194507, - [SMALL_STATE(5451)] = 194520, - [SMALL_STATE(5452)] = 194531, - [SMALL_STATE(5453)] = 194544, - [SMALL_STATE(5454)] = 194555, - [SMALL_STATE(5455)] = 194568, - [SMALL_STATE(5456)] = 194581, - [SMALL_STATE(5457)] = 194594, - [SMALL_STATE(5458)] = 194607, - [SMALL_STATE(5459)] = 194620, - [SMALL_STATE(5460)] = 194633, - [SMALL_STATE(5461)] = 194646, - [SMALL_STATE(5462)] = 194657, - [SMALL_STATE(5463)] = 194670, - [SMALL_STATE(5464)] = 194683, - [SMALL_STATE(5465)] = 194696, - [SMALL_STATE(5466)] = 194709, - [SMALL_STATE(5467)] = 194722, - [SMALL_STATE(5468)] = 194735, - [SMALL_STATE(5469)] = 194748, - [SMALL_STATE(5470)] = 194759, - [SMALL_STATE(5471)] = 194768, - [SMALL_STATE(5472)] = 194777, - [SMALL_STATE(5473)] = 194786, - [SMALL_STATE(5474)] = 194799, - [SMALL_STATE(5475)] = 194812, - [SMALL_STATE(5476)] = 194825, - [SMALL_STATE(5477)] = 194838, - [SMALL_STATE(5478)] = 194851, - [SMALL_STATE(5479)] = 194862, - [SMALL_STATE(5480)] = 194875, - [SMALL_STATE(5481)] = 194888, - [SMALL_STATE(5482)] = 194901, - [SMALL_STATE(5483)] = 194914, - [SMALL_STATE(5484)] = 194927, - [SMALL_STATE(5485)] = 194938, - [SMALL_STATE(5486)] = 194951, - [SMALL_STATE(5487)] = 194964, - [SMALL_STATE(5488)] = 194973, - [SMALL_STATE(5489)] = 194986, - [SMALL_STATE(5490)] = 194999, - [SMALL_STATE(5491)] = 195010, - [SMALL_STATE(5492)] = 195023, - [SMALL_STATE(5493)] = 195036, - [SMALL_STATE(5494)] = 195049, - [SMALL_STATE(5495)] = 195062, - [SMALL_STATE(5496)] = 195075, - [SMALL_STATE(5497)] = 195086, - [SMALL_STATE(5498)] = 195099, - [SMALL_STATE(5499)] = 195112, - [SMALL_STATE(5500)] = 195121, - [SMALL_STATE(5501)] = 195134, - [SMALL_STATE(5502)] = 195143, - [SMALL_STATE(5503)] = 195156, - [SMALL_STATE(5504)] = 195169, - [SMALL_STATE(5505)] = 195182, - [SMALL_STATE(5506)] = 195193, - [SMALL_STATE(5507)] = 195204, - [SMALL_STATE(5508)] = 195217, - [SMALL_STATE(5509)] = 195230, - [SMALL_STATE(5510)] = 195243, - [SMALL_STATE(5511)] = 195256, - [SMALL_STATE(5512)] = 195269, - [SMALL_STATE(5513)] = 195280, - [SMALL_STATE(5514)] = 195293, - [SMALL_STATE(5515)] = 195306, - [SMALL_STATE(5516)] = 195319, - [SMALL_STATE(5517)] = 195332, - [SMALL_STATE(5518)] = 195345, - [SMALL_STATE(5519)] = 195358, - [SMALL_STATE(5520)] = 195371, - [SMALL_STATE(5521)] = 195384, - [SMALL_STATE(5522)] = 195395, - [SMALL_STATE(5523)] = 195408, - [SMALL_STATE(5524)] = 195419, - [SMALL_STATE(5525)] = 195432, - [SMALL_STATE(5526)] = 195445, - [SMALL_STATE(5527)] = 195456, - [SMALL_STATE(5528)] = 195469, - [SMALL_STATE(5529)] = 195482, - [SMALL_STATE(5530)] = 195495, - [SMALL_STATE(5531)] = 195508, - [SMALL_STATE(5532)] = 195521, - [SMALL_STATE(5533)] = 195534, - [SMALL_STATE(5534)] = 195545, - [SMALL_STATE(5535)] = 195558, - [SMALL_STATE(5536)] = 195571, - [SMALL_STATE(5537)] = 195582, - [SMALL_STATE(5538)] = 195595, - [SMALL_STATE(5539)] = 195606, - [SMALL_STATE(5540)] = 195619, - [SMALL_STATE(5541)] = 195632, - [SMALL_STATE(5542)] = 195645, - [SMALL_STATE(5543)] = 195658, - [SMALL_STATE(5544)] = 195671, - [SMALL_STATE(5545)] = 195684, - [SMALL_STATE(5546)] = 195697, - [SMALL_STATE(5547)] = 195710, - [SMALL_STATE(5548)] = 195723, - [SMALL_STATE(5549)] = 195736, - [SMALL_STATE(5550)] = 195749, - [SMALL_STATE(5551)] = 195762, - [SMALL_STATE(5552)] = 195775, - [SMALL_STATE(5553)] = 195788, - [SMALL_STATE(5554)] = 195801, - [SMALL_STATE(5555)] = 195814, - [SMALL_STATE(5556)] = 195827, - [SMALL_STATE(5557)] = 195840, - [SMALL_STATE(5558)] = 195851, - [SMALL_STATE(5559)] = 195864, - [SMALL_STATE(5560)] = 195877, - [SMALL_STATE(5561)] = 195890, - [SMALL_STATE(5562)] = 195903, - [SMALL_STATE(5563)] = 195916, - [SMALL_STATE(5564)] = 195927, - [SMALL_STATE(5565)] = 195940, - [SMALL_STATE(5566)] = 195953, - [SMALL_STATE(5567)] = 195966, - [SMALL_STATE(5568)] = 195979, - [SMALL_STATE(5569)] = 195992, - [SMALL_STATE(5570)] = 196005, - [SMALL_STATE(5571)] = 196018, - [SMALL_STATE(5572)] = 196031, - [SMALL_STATE(5573)] = 196044, - [SMALL_STATE(5574)] = 196057, - [SMALL_STATE(5575)] = 196070, - [SMALL_STATE(5576)] = 196083, - [SMALL_STATE(5577)] = 196096, - [SMALL_STATE(5578)] = 196109, - [SMALL_STATE(5579)] = 196122, - [SMALL_STATE(5580)] = 196135, - [SMALL_STATE(5581)] = 196148, - [SMALL_STATE(5582)] = 196161, - [SMALL_STATE(5583)] = 196172, - [SMALL_STATE(5584)] = 196183, - [SMALL_STATE(5585)] = 196196, - [SMALL_STATE(5586)] = 196209, - [SMALL_STATE(5587)] = 196222, - [SMALL_STATE(5588)] = 196235, - [SMALL_STATE(5589)] = 196248, - [SMALL_STATE(5590)] = 196261, - [SMALL_STATE(5591)] = 196274, - [SMALL_STATE(5592)] = 196287, - [SMALL_STATE(5593)] = 196300, - [SMALL_STATE(5594)] = 196313, - [SMALL_STATE(5595)] = 196326, - [SMALL_STATE(5596)] = 196337, - [SMALL_STATE(5597)] = 196350, - [SMALL_STATE(5598)] = 196363, - [SMALL_STATE(5599)] = 196376, - [SMALL_STATE(5600)] = 196389, - [SMALL_STATE(5601)] = 196402, - [SMALL_STATE(5602)] = 196415, - [SMALL_STATE(5603)] = 196428, - [SMALL_STATE(5604)] = 196441, - [SMALL_STATE(5605)] = 196452, - [SMALL_STATE(5606)] = 196463, - [SMALL_STATE(5607)] = 196476, - [SMALL_STATE(5608)] = 196489, - [SMALL_STATE(5609)] = 196502, - [SMALL_STATE(5610)] = 196515, - [SMALL_STATE(5611)] = 196528, - [SMALL_STATE(5612)] = 196541, - [SMALL_STATE(5613)] = 196554, - [SMALL_STATE(5614)] = 196567, - [SMALL_STATE(5615)] = 196580, - [SMALL_STATE(5616)] = 196593, - [SMALL_STATE(5617)] = 196606, - [SMALL_STATE(5618)] = 196619, - [SMALL_STATE(5619)] = 196632, - [SMALL_STATE(5620)] = 196645, - [SMALL_STATE(5621)] = 196658, - [SMALL_STATE(5622)] = 196671, - [SMALL_STATE(5623)] = 196684, - [SMALL_STATE(5624)] = 196697, - [SMALL_STATE(5625)] = 196710, - [SMALL_STATE(5626)] = 196723, - [SMALL_STATE(5627)] = 196736, - [SMALL_STATE(5628)] = 196749, - [SMALL_STATE(5629)] = 196762, - [SMALL_STATE(5630)] = 196775, - [SMALL_STATE(5631)] = 196788, - [SMALL_STATE(5632)] = 196801, - [SMALL_STATE(5633)] = 196814, - [SMALL_STATE(5634)] = 196827, - [SMALL_STATE(5635)] = 196840, - [SMALL_STATE(5636)] = 196853, - [SMALL_STATE(5637)] = 196866, - [SMALL_STATE(5638)] = 196879, - [SMALL_STATE(5639)] = 196892, - [SMALL_STATE(5640)] = 196905, - [SMALL_STATE(5641)] = 196918, - [SMALL_STATE(5642)] = 196931, - [SMALL_STATE(5643)] = 196942, - [SMALL_STATE(5644)] = 196955, - [SMALL_STATE(5645)] = 196968, - [SMALL_STATE(5646)] = 196981, - [SMALL_STATE(5647)] = 196994, - [SMALL_STATE(5648)] = 197007, - [SMALL_STATE(5649)] = 197020, - [SMALL_STATE(5650)] = 197033, - [SMALL_STATE(5651)] = 197046, - [SMALL_STATE(5652)] = 197059, - [SMALL_STATE(5653)] = 197070, - [SMALL_STATE(5654)] = 197083, - [SMALL_STATE(5655)] = 197096, - [SMALL_STATE(5656)] = 197109, - [SMALL_STATE(5657)] = 197122, - [SMALL_STATE(5658)] = 197135, - [SMALL_STATE(5659)] = 197148, - [SMALL_STATE(5660)] = 197161, - [SMALL_STATE(5661)] = 197174, - [SMALL_STATE(5662)] = 197187, - [SMALL_STATE(5663)] = 197200, - [SMALL_STATE(5664)] = 197213, - [SMALL_STATE(5665)] = 197224, - [SMALL_STATE(5666)] = 197237, - [SMALL_STATE(5667)] = 197250, - [SMALL_STATE(5668)] = 197263, - [SMALL_STATE(5669)] = 197274, - [SMALL_STATE(5670)] = 197287, - [SMALL_STATE(5671)] = 197298, - [SMALL_STATE(5672)] = 197311, - [SMALL_STATE(5673)] = 197321, - [SMALL_STATE(5674)] = 197331, - [SMALL_STATE(5675)] = 197341, - [SMALL_STATE(5676)] = 197351, - [SMALL_STATE(5677)] = 197361, - [SMALL_STATE(5678)] = 197369, - [SMALL_STATE(5679)] = 197379, - [SMALL_STATE(5680)] = 197389, - [SMALL_STATE(5681)] = 197399, - [SMALL_STATE(5682)] = 197409, - [SMALL_STATE(5683)] = 197419, - [SMALL_STATE(5684)] = 197429, - [SMALL_STATE(5685)] = 197439, - [SMALL_STATE(5686)] = 197449, - [SMALL_STATE(5687)] = 197459, - [SMALL_STATE(5688)] = 197469, - [SMALL_STATE(5689)] = 197479, - [SMALL_STATE(5690)] = 197489, - [SMALL_STATE(5691)] = 197499, - [SMALL_STATE(5692)] = 197509, - [SMALL_STATE(5693)] = 197517, - [SMALL_STATE(5694)] = 197527, - [SMALL_STATE(5695)] = 197537, - [SMALL_STATE(5696)] = 197547, - [SMALL_STATE(5697)] = 197557, - [SMALL_STATE(5698)] = 197567, - [SMALL_STATE(5699)] = 197577, - [SMALL_STATE(5700)] = 197587, - [SMALL_STATE(5701)] = 197597, - [SMALL_STATE(5702)] = 197607, - [SMALL_STATE(5703)] = 197617, - [SMALL_STATE(5704)] = 197627, - [SMALL_STATE(5705)] = 197637, - [SMALL_STATE(5706)] = 197647, - [SMALL_STATE(5707)] = 197657, - [SMALL_STATE(5708)] = 197667, - [SMALL_STATE(5709)] = 197677, - [SMALL_STATE(5710)] = 197687, - [SMALL_STATE(5711)] = 197697, - [SMALL_STATE(5712)] = 197705, - [SMALL_STATE(5713)] = 197715, - [SMALL_STATE(5714)] = 197725, - [SMALL_STATE(5715)] = 197735, - [SMALL_STATE(5716)] = 197745, - [SMALL_STATE(5717)] = 197755, - [SMALL_STATE(5718)] = 197765, - [SMALL_STATE(5719)] = 197775, - [SMALL_STATE(5720)] = 197785, - [SMALL_STATE(5721)] = 197795, - [SMALL_STATE(5722)] = 197805, - [SMALL_STATE(5723)] = 197815, - [SMALL_STATE(5724)] = 197825, - [SMALL_STATE(5725)] = 197835, - [SMALL_STATE(5726)] = 197845, - [SMALL_STATE(5727)] = 197855, - [SMALL_STATE(5728)] = 197865, - [SMALL_STATE(5729)] = 197873, - [SMALL_STATE(5730)] = 197881, - [SMALL_STATE(5731)] = 197891, - [SMALL_STATE(5732)] = 197901, - [SMALL_STATE(5733)] = 197911, - [SMALL_STATE(5734)] = 197921, - [SMALL_STATE(5735)] = 197931, - [SMALL_STATE(5736)] = 197941, - [SMALL_STATE(5737)] = 197949, - [SMALL_STATE(5738)] = 197959, - [SMALL_STATE(5739)] = 197969, - [SMALL_STATE(5740)] = 197979, - [SMALL_STATE(5741)] = 197989, - [SMALL_STATE(5742)] = 197999, - [SMALL_STATE(5743)] = 198009, - [SMALL_STATE(5744)] = 198019, - [SMALL_STATE(5745)] = 198029, - [SMALL_STATE(5746)] = 198039, - [SMALL_STATE(5747)] = 198049, - [SMALL_STATE(5748)] = 198059, - [SMALL_STATE(5749)] = 198069, - [SMALL_STATE(5750)] = 198079, - [SMALL_STATE(5751)] = 198089, - [SMALL_STATE(5752)] = 198099, - [SMALL_STATE(5753)] = 198109, - [SMALL_STATE(5754)] = 198119, - [SMALL_STATE(5755)] = 198129, - [SMALL_STATE(5756)] = 198139, - [SMALL_STATE(5757)] = 198149, - [SMALL_STATE(5758)] = 198159, - [SMALL_STATE(5759)] = 198167, - [SMALL_STATE(5760)] = 198177, - [SMALL_STATE(5761)] = 198187, - [SMALL_STATE(5762)] = 198197, - [SMALL_STATE(5763)] = 198205, - [SMALL_STATE(5764)] = 198215, - [SMALL_STATE(5765)] = 198225, - [SMALL_STATE(5766)] = 198235, - [SMALL_STATE(5767)] = 198245, - [SMALL_STATE(5768)] = 198255, - [SMALL_STATE(5769)] = 198265, - [SMALL_STATE(5770)] = 198275, - [SMALL_STATE(5771)] = 198285, - [SMALL_STATE(5772)] = 198295, - [SMALL_STATE(5773)] = 198305, - [SMALL_STATE(5774)] = 198315, - [SMALL_STATE(5775)] = 198325, - [SMALL_STATE(5776)] = 198333, - [SMALL_STATE(5777)] = 198343, - [SMALL_STATE(5778)] = 198353, - [SMALL_STATE(5779)] = 198363, - [SMALL_STATE(5780)] = 198373, - [SMALL_STATE(5781)] = 198383, - [SMALL_STATE(5782)] = 198393, - [SMALL_STATE(5783)] = 198403, - [SMALL_STATE(5784)] = 198411, - [SMALL_STATE(5785)] = 198421, - [SMALL_STATE(5786)] = 198429, - [SMALL_STATE(5787)] = 198439, - [SMALL_STATE(5788)] = 198449, - [SMALL_STATE(5789)] = 198459, - [SMALL_STATE(5790)] = 198467, - [SMALL_STATE(5791)] = 198477, - [SMALL_STATE(5792)] = 198487, - [SMALL_STATE(5793)] = 198497, - [SMALL_STATE(5794)] = 198507, - [SMALL_STATE(5795)] = 198517, - [SMALL_STATE(5796)] = 198527, - [SMALL_STATE(5797)] = 198537, - [SMALL_STATE(5798)] = 198547, - [SMALL_STATE(5799)] = 198557, - [SMALL_STATE(5800)] = 198567, - [SMALL_STATE(5801)] = 198575, - [SMALL_STATE(5802)] = 198585, - [SMALL_STATE(5803)] = 198595, - [SMALL_STATE(5804)] = 198605, - [SMALL_STATE(5805)] = 198615, - [SMALL_STATE(5806)] = 198625, - [SMALL_STATE(5807)] = 198635, - [SMALL_STATE(5808)] = 198645, - [SMALL_STATE(5809)] = 198655, - [SMALL_STATE(5810)] = 198665, - [SMALL_STATE(5811)] = 198675, - [SMALL_STATE(5812)] = 198683, - [SMALL_STATE(5813)] = 198693, - [SMALL_STATE(5814)] = 198703, - [SMALL_STATE(5815)] = 198713, - [SMALL_STATE(5816)] = 198723, - [SMALL_STATE(5817)] = 198731, - [SMALL_STATE(5818)] = 198741, - [SMALL_STATE(5819)] = 198751, - [SMALL_STATE(5820)] = 198761, - [SMALL_STATE(5821)] = 198771, - [SMALL_STATE(5822)] = 198781, - [SMALL_STATE(5823)] = 198791, - [SMALL_STATE(5824)] = 198801, - [SMALL_STATE(5825)] = 198811, - [SMALL_STATE(5826)] = 198821, - [SMALL_STATE(5827)] = 198831, - [SMALL_STATE(5828)] = 198841, - [SMALL_STATE(5829)] = 198849, - [SMALL_STATE(5830)] = 198859, - [SMALL_STATE(5831)] = 198869, - [SMALL_STATE(5832)] = 198877, - [SMALL_STATE(5833)] = 198887, - [SMALL_STATE(5834)] = 198897, - [SMALL_STATE(5835)] = 198905, - [SMALL_STATE(5836)] = 198915, - [SMALL_STATE(5837)] = 198925, - [SMALL_STATE(5838)] = 198935, - [SMALL_STATE(5839)] = 198945, - [SMALL_STATE(5840)] = 198955, - [SMALL_STATE(5841)] = 198965, - [SMALL_STATE(5842)] = 198975, - [SMALL_STATE(5843)] = 198983, - [SMALL_STATE(5844)] = 198993, - [SMALL_STATE(5845)] = 199003, - [SMALL_STATE(5846)] = 199013, - [SMALL_STATE(5847)] = 199023, - [SMALL_STATE(5848)] = 199031, - [SMALL_STATE(5849)] = 199039, - [SMALL_STATE(5850)] = 199049, - [SMALL_STATE(5851)] = 199059, - [SMALL_STATE(5852)] = 199067, - [SMALL_STATE(5853)] = 199077, - [SMALL_STATE(5854)] = 199087, - [SMALL_STATE(5855)] = 199097, - [SMALL_STATE(5856)] = 199107, - [SMALL_STATE(5857)] = 199117, - [SMALL_STATE(5858)] = 199127, - [SMALL_STATE(5859)] = 199137, - [SMALL_STATE(5860)] = 199147, - [SMALL_STATE(5861)] = 199157, - [SMALL_STATE(5862)] = 199167, - [SMALL_STATE(5863)] = 199177, - [SMALL_STATE(5864)] = 199187, - [SMALL_STATE(5865)] = 199197, - [SMALL_STATE(5866)] = 199207, - [SMALL_STATE(5867)] = 199217, - [SMALL_STATE(5868)] = 199227, - [SMALL_STATE(5869)] = 199237, - [SMALL_STATE(5870)] = 199247, - [SMALL_STATE(5871)] = 199257, - [SMALL_STATE(5872)] = 199267, - [SMALL_STATE(5873)] = 199275, - [SMALL_STATE(5874)] = 199285, - [SMALL_STATE(5875)] = 199295, - [SMALL_STATE(5876)] = 199305, - [SMALL_STATE(5877)] = 199315, - [SMALL_STATE(5878)] = 199325, - [SMALL_STATE(5879)] = 199335, - [SMALL_STATE(5880)] = 199343, - [SMALL_STATE(5881)] = 199353, - [SMALL_STATE(5882)] = 199363, - [SMALL_STATE(5883)] = 199373, - [SMALL_STATE(5884)] = 199383, - [SMALL_STATE(5885)] = 199393, - [SMALL_STATE(5886)] = 199403, - [SMALL_STATE(5887)] = 199413, - [SMALL_STATE(5888)] = 199421, - [SMALL_STATE(5889)] = 199431, - [SMALL_STATE(5890)] = 199441, - [SMALL_STATE(5891)] = 199451, - [SMALL_STATE(5892)] = 199461, - [SMALL_STATE(5893)] = 199471, - [SMALL_STATE(5894)] = 199479, - [SMALL_STATE(5895)] = 199489, - [SMALL_STATE(5896)] = 199499, - [SMALL_STATE(5897)] = 199507, - [SMALL_STATE(5898)] = 199515, - [SMALL_STATE(5899)] = 199523, - [SMALL_STATE(5900)] = 199533, - [SMALL_STATE(5901)] = 199543, - [SMALL_STATE(5902)] = 199551, - [SMALL_STATE(5903)] = 199561, - [SMALL_STATE(5904)] = 199571, - [SMALL_STATE(5905)] = 199579, - [SMALL_STATE(5906)] = 199589, - [SMALL_STATE(5907)] = 199599, - [SMALL_STATE(5908)] = 199609, - [SMALL_STATE(5909)] = 199619, - [SMALL_STATE(5910)] = 199627, - [SMALL_STATE(5911)] = 199637, - [SMALL_STATE(5912)] = 199647, - [SMALL_STATE(5913)] = 199657, - [SMALL_STATE(5914)] = 199667, - [SMALL_STATE(5915)] = 199677, - [SMALL_STATE(5916)] = 199687, - [SMALL_STATE(5917)] = 199697, - [SMALL_STATE(5918)] = 199705, - [SMALL_STATE(5919)] = 199715, - [SMALL_STATE(5920)] = 199725, - [SMALL_STATE(5921)] = 199735, - [SMALL_STATE(5922)] = 199743, - [SMALL_STATE(5923)] = 199753, - [SMALL_STATE(5924)] = 199763, - [SMALL_STATE(5925)] = 199773, - [SMALL_STATE(5926)] = 199783, - [SMALL_STATE(5927)] = 199793, - [SMALL_STATE(5928)] = 199803, - [SMALL_STATE(5929)] = 199813, - [SMALL_STATE(5930)] = 199823, - [SMALL_STATE(5931)] = 199833, - [SMALL_STATE(5932)] = 199843, - [SMALL_STATE(5933)] = 199853, - [SMALL_STATE(5934)] = 199863, - [SMALL_STATE(5935)] = 199873, - [SMALL_STATE(5936)] = 199881, - [SMALL_STATE(5937)] = 199889, - [SMALL_STATE(5938)] = 199899, - [SMALL_STATE(5939)] = 199909, - [SMALL_STATE(5940)] = 199919, - [SMALL_STATE(5941)] = 199929, - [SMALL_STATE(5942)] = 199939, - [SMALL_STATE(5943)] = 199949, - [SMALL_STATE(5944)] = 199959, - [SMALL_STATE(5945)] = 199969, - [SMALL_STATE(5946)] = 199979, - [SMALL_STATE(5947)] = 199989, - [SMALL_STATE(5948)] = 199999, - [SMALL_STATE(5949)] = 200009, - [SMALL_STATE(5950)] = 200019, - [SMALL_STATE(5951)] = 200029, - [SMALL_STATE(5952)] = 200039, - [SMALL_STATE(5953)] = 200049, - [SMALL_STATE(5954)] = 200059, - [SMALL_STATE(5955)] = 200069, - [SMALL_STATE(5956)] = 200079, - [SMALL_STATE(5957)] = 200087, - [SMALL_STATE(5958)] = 200097, - [SMALL_STATE(5959)] = 200107, - [SMALL_STATE(5960)] = 200117, - [SMALL_STATE(5961)] = 200127, - [SMALL_STATE(5962)] = 200137, - [SMALL_STATE(5963)] = 200147, - [SMALL_STATE(5964)] = 200157, - [SMALL_STATE(5965)] = 200165, - [SMALL_STATE(5966)] = 200175, - [SMALL_STATE(5967)] = 200185, - [SMALL_STATE(5968)] = 200195, - [SMALL_STATE(5969)] = 200205, - [SMALL_STATE(5970)] = 200215, - [SMALL_STATE(5971)] = 200225, - [SMALL_STATE(5972)] = 200235, - [SMALL_STATE(5973)] = 200245, - [SMALL_STATE(5974)] = 200255, - [SMALL_STATE(5975)] = 200265, - [SMALL_STATE(5976)] = 200273, - [SMALL_STATE(5977)] = 200281, - [SMALL_STATE(5978)] = 200291, - [SMALL_STATE(5979)] = 200301, - [SMALL_STATE(5980)] = 200311, - [SMALL_STATE(5981)] = 200321, - [SMALL_STATE(5982)] = 200331, - [SMALL_STATE(5983)] = 200339, - [SMALL_STATE(5984)] = 200349, - [SMALL_STATE(5985)] = 200359, - [SMALL_STATE(5986)] = 200369, - [SMALL_STATE(5987)] = 200379, - [SMALL_STATE(5988)] = 200387, - [SMALL_STATE(5989)] = 200397, - [SMALL_STATE(5990)] = 200405, - [SMALL_STATE(5991)] = 200415, - [SMALL_STATE(5992)] = 200425, - [SMALL_STATE(5993)] = 200435, - [SMALL_STATE(5994)] = 200445, - [SMALL_STATE(5995)] = 200455, - [SMALL_STATE(5996)] = 200465, - [SMALL_STATE(5997)] = 200475, - [SMALL_STATE(5998)] = 200483, - [SMALL_STATE(5999)] = 200493, - [SMALL_STATE(6000)] = 200501, - [SMALL_STATE(6001)] = 200511, - [SMALL_STATE(6002)] = 200519, - [SMALL_STATE(6003)] = 200529, - [SMALL_STATE(6004)] = 200539, - [SMALL_STATE(6005)] = 200549, - [SMALL_STATE(6006)] = 200559, - [SMALL_STATE(6007)] = 200569, - [SMALL_STATE(6008)] = 200576, - [SMALL_STATE(6009)] = 200583, - [SMALL_STATE(6010)] = 200590, - [SMALL_STATE(6011)] = 200597, - [SMALL_STATE(6012)] = 200604, - [SMALL_STATE(6013)] = 200611, - [SMALL_STATE(6014)] = 200618, - [SMALL_STATE(6015)] = 200625, - [SMALL_STATE(6016)] = 200632, - [SMALL_STATE(6017)] = 200639, - [SMALL_STATE(6018)] = 200646, - [SMALL_STATE(6019)] = 200653, - [SMALL_STATE(6020)] = 200660, - [SMALL_STATE(6021)] = 200667, - [SMALL_STATE(6022)] = 200674, - [SMALL_STATE(6023)] = 200681, - [SMALL_STATE(6024)] = 200688, - [SMALL_STATE(6025)] = 200695, - [SMALL_STATE(6026)] = 200702, - [SMALL_STATE(6027)] = 200709, - [SMALL_STATE(6028)] = 200716, - [SMALL_STATE(6029)] = 200723, - [SMALL_STATE(6030)] = 200730, - [SMALL_STATE(6031)] = 200737, - [SMALL_STATE(6032)] = 200744, - [SMALL_STATE(6033)] = 200751, - [SMALL_STATE(6034)] = 200758, - [SMALL_STATE(6035)] = 200765, - [SMALL_STATE(6036)] = 200772, - [SMALL_STATE(6037)] = 200779, - [SMALL_STATE(6038)] = 200786, - [SMALL_STATE(6039)] = 200793, - [SMALL_STATE(6040)] = 200800, - [SMALL_STATE(6041)] = 200807, - [SMALL_STATE(6042)] = 200814, - [SMALL_STATE(6043)] = 200821, - [SMALL_STATE(6044)] = 200828, - [SMALL_STATE(6045)] = 200835, - [SMALL_STATE(6046)] = 200842, - [SMALL_STATE(6047)] = 200849, - [SMALL_STATE(6048)] = 200856, - [SMALL_STATE(6049)] = 200863, - [SMALL_STATE(6050)] = 200870, - [SMALL_STATE(6051)] = 200877, - [SMALL_STATE(6052)] = 200884, - [SMALL_STATE(6053)] = 200891, - [SMALL_STATE(6054)] = 200898, - [SMALL_STATE(6055)] = 200905, - [SMALL_STATE(6056)] = 200912, - [SMALL_STATE(6057)] = 200919, - [SMALL_STATE(6058)] = 200926, - [SMALL_STATE(6059)] = 200933, - [SMALL_STATE(6060)] = 200940, - [SMALL_STATE(6061)] = 200947, - [SMALL_STATE(6062)] = 200954, - [SMALL_STATE(6063)] = 200961, - [SMALL_STATE(6064)] = 200968, - [SMALL_STATE(6065)] = 200975, - [SMALL_STATE(6066)] = 200982, - [SMALL_STATE(6067)] = 200989, - [SMALL_STATE(6068)] = 200996, - [SMALL_STATE(6069)] = 201003, - [SMALL_STATE(6070)] = 201010, - [SMALL_STATE(6071)] = 201017, - [SMALL_STATE(6072)] = 201024, - [SMALL_STATE(6073)] = 201031, - [SMALL_STATE(6074)] = 201038, - [SMALL_STATE(6075)] = 201045, - [SMALL_STATE(6076)] = 201052, - [SMALL_STATE(6077)] = 201059, - [SMALL_STATE(6078)] = 201066, - [SMALL_STATE(6079)] = 201073, - [SMALL_STATE(6080)] = 201080, - [SMALL_STATE(6081)] = 201087, - [SMALL_STATE(6082)] = 201094, - [SMALL_STATE(6083)] = 201101, - [SMALL_STATE(6084)] = 201108, - [SMALL_STATE(6085)] = 201115, - [SMALL_STATE(6086)] = 201122, - [SMALL_STATE(6087)] = 201129, - [SMALL_STATE(6088)] = 201136, - [SMALL_STATE(6089)] = 201143, - [SMALL_STATE(6090)] = 201150, - [SMALL_STATE(6091)] = 201157, - [SMALL_STATE(6092)] = 201164, - [SMALL_STATE(6093)] = 201171, - [SMALL_STATE(6094)] = 201178, - [SMALL_STATE(6095)] = 201185, - [SMALL_STATE(6096)] = 201192, - [SMALL_STATE(6097)] = 201199, - [SMALL_STATE(6098)] = 201206, - [SMALL_STATE(6099)] = 201213, - [SMALL_STATE(6100)] = 201220, - [SMALL_STATE(6101)] = 201227, - [SMALL_STATE(6102)] = 201234, - [SMALL_STATE(6103)] = 201241, - [SMALL_STATE(6104)] = 201248, - [SMALL_STATE(6105)] = 201255, - [SMALL_STATE(6106)] = 201262, - [SMALL_STATE(6107)] = 201269, - [SMALL_STATE(6108)] = 201276, - [SMALL_STATE(6109)] = 201283, - [SMALL_STATE(6110)] = 201290, - [SMALL_STATE(6111)] = 201297, - [SMALL_STATE(6112)] = 201304, - [SMALL_STATE(6113)] = 201311, - [SMALL_STATE(6114)] = 201318, - [SMALL_STATE(6115)] = 201325, - [SMALL_STATE(6116)] = 201332, - [SMALL_STATE(6117)] = 201339, - [SMALL_STATE(6118)] = 201346, - [SMALL_STATE(6119)] = 201353, - [SMALL_STATE(6120)] = 201360, - [SMALL_STATE(6121)] = 201367, - [SMALL_STATE(6122)] = 201374, - [SMALL_STATE(6123)] = 201381, - [SMALL_STATE(6124)] = 201388, - [SMALL_STATE(6125)] = 201395, - [SMALL_STATE(6126)] = 201402, - [SMALL_STATE(6127)] = 201409, - [SMALL_STATE(6128)] = 201416, - [SMALL_STATE(6129)] = 201423, - [SMALL_STATE(6130)] = 201430, - [SMALL_STATE(6131)] = 201437, - [SMALL_STATE(6132)] = 201444, - [SMALL_STATE(6133)] = 201451, - [SMALL_STATE(6134)] = 201458, - [SMALL_STATE(6135)] = 201465, - [SMALL_STATE(6136)] = 201472, - [SMALL_STATE(6137)] = 201479, - [SMALL_STATE(6138)] = 201486, - [SMALL_STATE(6139)] = 201493, - [SMALL_STATE(6140)] = 201500, - [SMALL_STATE(6141)] = 201507, - [SMALL_STATE(6142)] = 201514, - [SMALL_STATE(6143)] = 201521, - [SMALL_STATE(6144)] = 201528, - [SMALL_STATE(6145)] = 201535, - [SMALL_STATE(6146)] = 201542, - [SMALL_STATE(6147)] = 201549, - [SMALL_STATE(6148)] = 201556, - [SMALL_STATE(6149)] = 201563, - [SMALL_STATE(6150)] = 201570, - [SMALL_STATE(6151)] = 201577, - [SMALL_STATE(6152)] = 201584, - [SMALL_STATE(6153)] = 201591, - [SMALL_STATE(6154)] = 201598, - [SMALL_STATE(6155)] = 201605, - [SMALL_STATE(6156)] = 201612, - [SMALL_STATE(6157)] = 201619, - [SMALL_STATE(6158)] = 201626, - [SMALL_STATE(6159)] = 201633, - [SMALL_STATE(6160)] = 201640, - [SMALL_STATE(6161)] = 201647, - [SMALL_STATE(6162)] = 201654, - [SMALL_STATE(6163)] = 201661, - [SMALL_STATE(6164)] = 201668, - [SMALL_STATE(6165)] = 201675, - [SMALL_STATE(6166)] = 201682, - [SMALL_STATE(6167)] = 201689, - [SMALL_STATE(6168)] = 201696, - [SMALL_STATE(6169)] = 201703, - [SMALL_STATE(6170)] = 201710, - [SMALL_STATE(6171)] = 201717, - [SMALL_STATE(6172)] = 201724, - [SMALL_STATE(6173)] = 201731, - [SMALL_STATE(6174)] = 201738, - [SMALL_STATE(6175)] = 201745, - [SMALL_STATE(6176)] = 201752, - [SMALL_STATE(6177)] = 201759, - [SMALL_STATE(6178)] = 201766, - [SMALL_STATE(6179)] = 201773, - [SMALL_STATE(6180)] = 201780, - [SMALL_STATE(6181)] = 201787, - [SMALL_STATE(6182)] = 201794, - [SMALL_STATE(6183)] = 201801, - [SMALL_STATE(6184)] = 201808, - [SMALL_STATE(6185)] = 201815, - [SMALL_STATE(6186)] = 201822, - [SMALL_STATE(6187)] = 201829, - [SMALL_STATE(6188)] = 201836, - [SMALL_STATE(6189)] = 201843, - [SMALL_STATE(6190)] = 201850, - [SMALL_STATE(6191)] = 201857, - [SMALL_STATE(6192)] = 201864, - [SMALL_STATE(6193)] = 201871, - [SMALL_STATE(6194)] = 201878, - [SMALL_STATE(6195)] = 201885, - [SMALL_STATE(6196)] = 201892, - [SMALL_STATE(6197)] = 201899, - [SMALL_STATE(6198)] = 201906, - [SMALL_STATE(6199)] = 201913, - [SMALL_STATE(6200)] = 201920, - [SMALL_STATE(6201)] = 201927, - [SMALL_STATE(6202)] = 201934, - [SMALL_STATE(6203)] = 201941, - [SMALL_STATE(6204)] = 201948, - [SMALL_STATE(6205)] = 201955, - [SMALL_STATE(6206)] = 201962, - [SMALL_STATE(6207)] = 201969, - [SMALL_STATE(6208)] = 201976, - [SMALL_STATE(6209)] = 201983, - [SMALL_STATE(6210)] = 201990, - [SMALL_STATE(6211)] = 201997, - [SMALL_STATE(6212)] = 202004, - [SMALL_STATE(6213)] = 202011, - [SMALL_STATE(6214)] = 202018, - [SMALL_STATE(6215)] = 202025, - [SMALL_STATE(6216)] = 202032, - [SMALL_STATE(6217)] = 202039, - [SMALL_STATE(6218)] = 202046, - [SMALL_STATE(6219)] = 202053, - [SMALL_STATE(6220)] = 202060, - [SMALL_STATE(6221)] = 202067, - [SMALL_STATE(6222)] = 202074, - [SMALL_STATE(6223)] = 202081, - [SMALL_STATE(6224)] = 202088, - [SMALL_STATE(6225)] = 202095, - [SMALL_STATE(6226)] = 202102, - [SMALL_STATE(6227)] = 202109, - [SMALL_STATE(6228)] = 202116, - [SMALL_STATE(6229)] = 202123, - [SMALL_STATE(6230)] = 202130, - [SMALL_STATE(6231)] = 202137, - [SMALL_STATE(6232)] = 202144, - [SMALL_STATE(6233)] = 202151, - [SMALL_STATE(6234)] = 202158, - [SMALL_STATE(6235)] = 202165, - [SMALL_STATE(6236)] = 202172, - [SMALL_STATE(6237)] = 202179, - [SMALL_STATE(6238)] = 202186, - [SMALL_STATE(6239)] = 202193, - [SMALL_STATE(6240)] = 202200, - [SMALL_STATE(6241)] = 202207, - [SMALL_STATE(6242)] = 202214, - [SMALL_STATE(6243)] = 202221, - [SMALL_STATE(6244)] = 202228, - [SMALL_STATE(6245)] = 202235, - [SMALL_STATE(6246)] = 202242, - [SMALL_STATE(6247)] = 202249, - [SMALL_STATE(6248)] = 202256, - [SMALL_STATE(6249)] = 202263, - [SMALL_STATE(6250)] = 202270, - [SMALL_STATE(6251)] = 202277, - [SMALL_STATE(6252)] = 202284, - [SMALL_STATE(6253)] = 202291, - [SMALL_STATE(6254)] = 202298, - [SMALL_STATE(6255)] = 202305, - [SMALL_STATE(6256)] = 202312, - [SMALL_STATE(6257)] = 202319, - [SMALL_STATE(6258)] = 202326, - [SMALL_STATE(6259)] = 202333, - [SMALL_STATE(6260)] = 202340, - [SMALL_STATE(6261)] = 202347, - [SMALL_STATE(6262)] = 202354, - [SMALL_STATE(6263)] = 202361, - [SMALL_STATE(6264)] = 202368, - [SMALL_STATE(6265)] = 202375, - [SMALL_STATE(6266)] = 202382, - [SMALL_STATE(6267)] = 202389, - [SMALL_STATE(6268)] = 202396, - [SMALL_STATE(6269)] = 202403, - [SMALL_STATE(6270)] = 202410, - [SMALL_STATE(6271)] = 202417, - [SMALL_STATE(6272)] = 202424, - [SMALL_STATE(6273)] = 202431, - [SMALL_STATE(6274)] = 202438, - [SMALL_STATE(6275)] = 202445, - [SMALL_STATE(6276)] = 202452, - [SMALL_STATE(6277)] = 202459, - [SMALL_STATE(6278)] = 202466, - [SMALL_STATE(6279)] = 202473, - [SMALL_STATE(6280)] = 202480, - [SMALL_STATE(6281)] = 202487, - [SMALL_STATE(6282)] = 202494, - [SMALL_STATE(6283)] = 202501, - [SMALL_STATE(6284)] = 202508, - [SMALL_STATE(6285)] = 202515, - [SMALL_STATE(6286)] = 202522, - [SMALL_STATE(6287)] = 202529, - [SMALL_STATE(6288)] = 202536, - [SMALL_STATE(6289)] = 202543, - [SMALL_STATE(6290)] = 202550, - [SMALL_STATE(6291)] = 202557, - [SMALL_STATE(6292)] = 202564, - [SMALL_STATE(6293)] = 202571, - [SMALL_STATE(6294)] = 202578, - [SMALL_STATE(6295)] = 202585, - [SMALL_STATE(6296)] = 202592, - [SMALL_STATE(6297)] = 202599, - [SMALL_STATE(6298)] = 202606, - [SMALL_STATE(6299)] = 202613, - [SMALL_STATE(6300)] = 202620, - [SMALL_STATE(6301)] = 202627, - [SMALL_STATE(6302)] = 202634, - [SMALL_STATE(6303)] = 202641, - [SMALL_STATE(6304)] = 202648, - [SMALL_STATE(6305)] = 202655, - [SMALL_STATE(6306)] = 202662, - [SMALL_STATE(6307)] = 202669, - [SMALL_STATE(6308)] = 202676, - [SMALL_STATE(6309)] = 202683, - [SMALL_STATE(6310)] = 202690, - [SMALL_STATE(6311)] = 202697, - [SMALL_STATE(6312)] = 202704, - [SMALL_STATE(6313)] = 202711, - [SMALL_STATE(6314)] = 202718, - [SMALL_STATE(6315)] = 202725, - [SMALL_STATE(6316)] = 202732, - [SMALL_STATE(6317)] = 202739, - [SMALL_STATE(6318)] = 202746, - [SMALL_STATE(6319)] = 202753, - [SMALL_STATE(6320)] = 202760, - [SMALL_STATE(6321)] = 202767, - [SMALL_STATE(6322)] = 202774, - [SMALL_STATE(6323)] = 202781, - [SMALL_STATE(6324)] = 202788, - [SMALL_STATE(6325)] = 202795, - [SMALL_STATE(6326)] = 202802, - [SMALL_STATE(6327)] = 202809, - [SMALL_STATE(6328)] = 202816, - [SMALL_STATE(6329)] = 202823, - [SMALL_STATE(6330)] = 202830, - [SMALL_STATE(6331)] = 202837, - [SMALL_STATE(6332)] = 202844, - [SMALL_STATE(6333)] = 202851, - [SMALL_STATE(6334)] = 202858, - [SMALL_STATE(6335)] = 202865, - [SMALL_STATE(6336)] = 202872, - [SMALL_STATE(6337)] = 202879, - [SMALL_STATE(6338)] = 202886, - [SMALL_STATE(6339)] = 202893, - [SMALL_STATE(6340)] = 202900, - [SMALL_STATE(6341)] = 202907, - [SMALL_STATE(6342)] = 202914, - [SMALL_STATE(6343)] = 202921, - [SMALL_STATE(6344)] = 202928, - [SMALL_STATE(6345)] = 202935, - [SMALL_STATE(6346)] = 202942, - [SMALL_STATE(6347)] = 202949, - [SMALL_STATE(6348)] = 202956, - [SMALL_STATE(6349)] = 202963, - [SMALL_STATE(6350)] = 202970, - [SMALL_STATE(6351)] = 202977, - [SMALL_STATE(6352)] = 202984, - [SMALL_STATE(6353)] = 202991, - [SMALL_STATE(6354)] = 202998, - [SMALL_STATE(6355)] = 203005, - [SMALL_STATE(6356)] = 203012, - [SMALL_STATE(6357)] = 203019, - [SMALL_STATE(6358)] = 203026, - [SMALL_STATE(6359)] = 203033, - [SMALL_STATE(6360)] = 203040, - [SMALL_STATE(6361)] = 203047, - [SMALL_STATE(6362)] = 203054, - [SMALL_STATE(6363)] = 203061, - [SMALL_STATE(6364)] = 203068, - [SMALL_STATE(6365)] = 203075, - [SMALL_STATE(6366)] = 203082, - [SMALL_STATE(6367)] = 203089, - [SMALL_STATE(6368)] = 203096, - [SMALL_STATE(6369)] = 203103, - [SMALL_STATE(6370)] = 203110, - [SMALL_STATE(6371)] = 203117, - [SMALL_STATE(6372)] = 203124, - [SMALL_STATE(6373)] = 203131, - [SMALL_STATE(6374)] = 203138, - [SMALL_STATE(6375)] = 203145, - [SMALL_STATE(6376)] = 203152, - [SMALL_STATE(6377)] = 203159, - [SMALL_STATE(6378)] = 203166, - [SMALL_STATE(6379)] = 203173, - [SMALL_STATE(6380)] = 203180, - [SMALL_STATE(6381)] = 203187, - [SMALL_STATE(6382)] = 203194, - [SMALL_STATE(6383)] = 203201, - [SMALL_STATE(6384)] = 203208, - [SMALL_STATE(6385)] = 203215, - [SMALL_STATE(6386)] = 203222, - [SMALL_STATE(6387)] = 203229, - [SMALL_STATE(6388)] = 203236, - [SMALL_STATE(6389)] = 203243, - [SMALL_STATE(6390)] = 203250, - [SMALL_STATE(6391)] = 203257, - [SMALL_STATE(6392)] = 203264, - [SMALL_STATE(6393)] = 203271, - [SMALL_STATE(6394)] = 203278, - [SMALL_STATE(6395)] = 203285, - [SMALL_STATE(6396)] = 203292, - [SMALL_STATE(6397)] = 203299, - [SMALL_STATE(6398)] = 203306, - [SMALL_STATE(6399)] = 203313, - [SMALL_STATE(6400)] = 203320, - [SMALL_STATE(6401)] = 203327, - [SMALL_STATE(6402)] = 203334, - [SMALL_STATE(6403)] = 203341, - [SMALL_STATE(6404)] = 203348, - [SMALL_STATE(6405)] = 203355, - [SMALL_STATE(6406)] = 203362, - [SMALL_STATE(6407)] = 203369, - [SMALL_STATE(6408)] = 203376, - [SMALL_STATE(6409)] = 203383, - [SMALL_STATE(6410)] = 203390, - [SMALL_STATE(6411)] = 203397, - [SMALL_STATE(6412)] = 203404, - [SMALL_STATE(6413)] = 203411, - [SMALL_STATE(6414)] = 203418, - [SMALL_STATE(6415)] = 203425, - [SMALL_STATE(6416)] = 203432, - [SMALL_STATE(6417)] = 203439, - [SMALL_STATE(6418)] = 203446, - [SMALL_STATE(6419)] = 203453, - [SMALL_STATE(6420)] = 203460, - [SMALL_STATE(6421)] = 203467, - [SMALL_STATE(6422)] = 203474, - [SMALL_STATE(6423)] = 203481, - [SMALL_STATE(6424)] = 203488, - [SMALL_STATE(6425)] = 203495, - [SMALL_STATE(6426)] = 203502, - [SMALL_STATE(6427)] = 203509, - [SMALL_STATE(6428)] = 203516, - [SMALL_STATE(6429)] = 203523, - [SMALL_STATE(6430)] = 203530, - [SMALL_STATE(6431)] = 203537, - [SMALL_STATE(6432)] = 203544, - [SMALL_STATE(6433)] = 203551, - [SMALL_STATE(6434)] = 203558, - [SMALL_STATE(6435)] = 203565, - [SMALL_STATE(6436)] = 203572, - [SMALL_STATE(6437)] = 203579, - [SMALL_STATE(6438)] = 203586, - [SMALL_STATE(6439)] = 203593, - [SMALL_STATE(6440)] = 203600, - [SMALL_STATE(6441)] = 203607, - [SMALL_STATE(6442)] = 203614, - [SMALL_STATE(6443)] = 203621, - [SMALL_STATE(6444)] = 203628, - [SMALL_STATE(6445)] = 203635, - [SMALL_STATE(6446)] = 203642, - [SMALL_STATE(6447)] = 203649, - [SMALL_STATE(6448)] = 203656, - [SMALL_STATE(6449)] = 203663, - [SMALL_STATE(6450)] = 203670, - [SMALL_STATE(6451)] = 203677, - [SMALL_STATE(6452)] = 203684, - [SMALL_STATE(6453)] = 203691, - [SMALL_STATE(6454)] = 203698, - [SMALL_STATE(6455)] = 203705, - [SMALL_STATE(6456)] = 203712, - [SMALL_STATE(6457)] = 203719, - [SMALL_STATE(6458)] = 203726, - [SMALL_STATE(6459)] = 203733, - [SMALL_STATE(6460)] = 203740, - [SMALL_STATE(6461)] = 203747, - [SMALL_STATE(6462)] = 203754, - [SMALL_STATE(6463)] = 203761, - [SMALL_STATE(6464)] = 203768, - [SMALL_STATE(6465)] = 203775, - [SMALL_STATE(6466)] = 203782, - [SMALL_STATE(6467)] = 203789, - [SMALL_STATE(6468)] = 203796, - [SMALL_STATE(6469)] = 203803, - [SMALL_STATE(6470)] = 203810, - [SMALL_STATE(6471)] = 203817, - [SMALL_STATE(6472)] = 203824, - [SMALL_STATE(6473)] = 203831, - [SMALL_STATE(6474)] = 203838, - [SMALL_STATE(6475)] = 203845, - [SMALL_STATE(6476)] = 203852, - [SMALL_STATE(6477)] = 203859, - [SMALL_STATE(6478)] = 203866, - [SMALL_STATE(6479)] = 203873, - [SMALL_STATE(6480)] = 203880, - [SMALL_STATE(6481)] = 203887, - [SMALL_STATE(6482)] = 203894, - [SMALL_STATE(6483)] = 203901, - [SMALL_STATE(6484)] = 203908, - [SMALL_STATE(6485)] = 203915, - [SMALL_STATE(6486)] = 203922, - [SMALL_STATE(6487)] = 203929, - [SMALL_STATE(6488)] = 203936, - [SMALL_STATE(6489)] = 203943, - [SMALL_STATE(6490)] = 203950, - [SMALL_STATE(6491)] = 203957, - [SMALL_STATE(6492)] = 203964, - [SMALL_STATE(6493)] = 203971, - [SMALL_STATE(6494)] = 203978, - [SMALL_STATE(6495)] = 203985, - [SMALL_STATE(6496)] = 203992, - [SMALL_STATE(6497)] = 203999, - [SMALL_STATE(6498)] = 204006, - [SMALL_STATE(6499)] = 204013, - [SMALL_STATE(6500)] = 204020, - [SMALL_STATE(6501)] = 204027, - [SMALL_STATE(6502)] = 204034, - [SMALL_STATE(6503)] = 204041, - [SMALL_STATE(6504)] = 204048, - [SMALL_STATE(6505)] = 204055, - [SMALL_STATE(6506)] = 204062, - [SMALL_STATE(6507)] = 204069, - [SMALL_STATE(6508)] = 204076, - [SMALL_STATE(6509)] = 204083, - [SMALL_STATE(6510)] = 204090, - [SMALL_STATE(6511)] = 204097, - [SMALL_STATE(6512)] = 204104, - [SMALL_STATE(6513)] = 204111, - [SMALL_STATE(6514)] = 204118, - [SMALL_STATE(6515)] = 204125, - [SMALL_STATE(6516)] = 204132, - [SMALL_STATE(6517)] = 204139, - [SMALL_STATE(6518)] = 204146, - [SMALL_STATE(6519)] = 204153, - [SMALL_STATE(6520)] = 204160, - [SMALL_STATE(6521)] = 204167, - [SMALL_STATE(6522)] = 204174, - [SMALL_STATE(6523)] = 204181, - [SMALL_STATE(6524)] = 204188, - [SMALL_STATE(6525)] = 204195, - [SMALL_STATE(6526)] = 204202, - [SMALL_STATE(6527)] = 204209, - [SMALL_STATE(6528)] = 204216, - [SMALL_STATE(6529)] = 204223, - [SMALL_STATE(6530)] = 204230, - [SMALL_STATE(6531)] = 204237, - [SMALL_STATE(6532)] = 204244, - [SMALL_STATE(6533)] = 204251, - [SMALL_STATE(6534)] = 204258, - [SMALL_STATE(6535)] = 204265, - [SMALL_STATE(6536)] = 204272, - [SMALL_STATE(6537)] = 204279, - [SMALL_STATE(6538)] = 204286, - [SMALL_STATE(6539)] = 204293, - [SMALL_STATE(6540)] = 204300, - [SMALL_STATE(6541)] = 204307, - [SMALL_STATE(6542)] = 204314, - [SMALL_STATE(6543)] = 204321, - [SMALL_STATE(6544)] = 204328, - [SMALL_STATE(6545)] = 204335, - [SMALL_STATE(6546)] = 204342, - [SMALL_STATE(6547)] = 204349, - [SMALL_STATE(6548)] = 204356, - [SMALL_STATE(6549)] = 204363, - [SMALL_STATE(6550)] = 204370, - [SMALL_STATE(6551)] = 204377, - [SMALL_STATE(6552)] = 204384, - [SMALL_STATE(6553)] = 204391, - [SMALL_STATE(6554)] = 204398, - [SMALL_STATE(6555)] = 204405, - [SMALL_STATE(6556)] = 204412, - [SMALL_STATE(6557)] = 204419, - [SMALL_STATE(6558)] = 204426, - [SMALL_STATE(6559)] = 204433, - [SMALL_STATE(6560)] = 204440, - [SMALL_STATE(6561)] = 204447, - [SMALL_STATE(6562)] = 204454, - [SMALL_STATE(6563)] = 204461, - [SMALL_STATE(6564)] = 204468, - [SMALL_STATE(6565)] = 204475, - [SMALL_STATE(6566)] = 204482, - [SMALL_STATE(6567)] = 204489, - [SMALL_STATE(6568)] = 204496, - [SMALL_STATE(6569)] = 204503, - [SMALL_STATE(6570)] = 204510, - [SMALL_STATE(6571)] = 204517, - [SMALL_STATE(6572)] = 204524, - [SMALL_STATE(6573)] = 204531, - [SMALL_STATE(6574)] = 204538, - [SMALL_STATE(6575)] = 204545, - [SMALL_STATE(6576)] = 204552, - [SMALL_STATE(6577)] = 204559, - [SMALL_STATE(6578)] = 204566, - [SMALL_STATE(6579)] = 204573, - [SMALL_STATE(6580)] = 204580, - [SMALL_STATE(6581)] = 204587, - [SMALL_STATE(6582)] = 204594, - [SMALL_STATE(6583)] = 204601, - [SMALL_STATE(6584)] = 204608, - [SMALL_STATE(6585)] = 204615, - [SMALL_STATE(6586)] = 204622, - [SMALL_STATE(6587)] = 204629, - [SMALL_STATE(6588)] = 204636, - [SMALL_STATE(6589)] = 204643, - [SMALL_STATE(6590)] = 204650, - [SMALL_STATE(6591)] = 204657, - [SMALL_STATE(6592)] = 204664, - [SMALL_STATE(6593)] = 204671, - [SMALL_STATE(6594)] = 204678, - [SMALL_STATE(6595)] = 204685, - [SMALL_STATE(6596)] = 204692, - [SMALL_STATE(6597)] = 204699, - [SMALL_STATE(6598)] = 204706, - [SMALL_STATE(6599)] = 204713, - [SMALL_STATE(6600)] = 204720, - [SMALL_STATE(6601)] = 204727, - [SMALL_STATE(6602)] = 204734, - [SMALL_STATE(6603)] = 204741, - [SMALL_STATE(6604)] = 204748, - [SMALL_STATE(6605)] = 204755, - [SMALL_STATE(6606)] = 204762, - [SMALL_STATE(6607)] = 204769, - [SMALL_STATE(6608)] = 204776, - [SMALL_STATE(6609)] = 204783, - [SMALL_STATE(6610)] = 204790, - [SMALL_STATE(6611)] = 204797, - [SMALL_STATE(6612)] = 204804, - [SMALL_STATE(6613)] = 204811, - [SMALL_STATE(6614)] = 204818, - [SMALL_STATE(6615)] = 204825, - [SMALL_STATE(6616)] = 204832, - [SMALL_STATE(6617)] = 204839, - [SMALL_STATE(6618)] = 204846, - [SMALL_STATE(6619)] = 204853, - [SMALL_STATE(6620)] = 204860, - [SMALL_STATE(6621)] = 204867, - [SMALL_STATE(6622)] = 204874, - [SMALL_STATE(6623)] = 204881, - [SMALL_STATE(6624)] = 204888, - [SMALL_STATE(6625)] = 204895, - [SMALL_STATE(6626)] = 204902, - [SMALL_STATE(6627)] = 204909, - [SMALL_STATE(6628)] = 204916, - [SMALL_STATE(6629)] = 204923, - [SMALL_STATE(6630)] = 204930, + [SMALL_STATE(4968)] = 185840, + [SMALL_STATE(4969)] = 185896, + [SMALL_STATE(4970)] = 185924, + [SMALL_STATE(4971)] = 185952, + [SMALL_STATE(4972)] = 185992, + [SMALL_STATE(4973)] = 186048, + [SMALL_STATE(4974)] = 186076, + [SMALL_STATE(4975)] = 186132, + [SMALL_STATE(4976)] = 186182, + [SMALL_STATE(4977)] = 186222, + [SMALL_STATE(4978)] = 186266, + [SMALL_STATE(4979)] = 186306, + [SMALL_STATE(4980)] = 186356, + [SMALL_STATE(4981)] = 186396, + [SMALL_STATE(4982)] = 186436, + [SMALL_STATE(4983)] = 186476, + [SMALL_STATE(4984)] = 186532, + [SMALL_STATE(4985)] = 186564, + [SMALL_STATE(4986)] = 186620, + [SMALL_STATE(4987)] = 186676, + [SMALL_STATE(4988)] = 186704, + [SMALL_STATE(4989)] = 186752, + [SMALL_STATE(4990)] = 186796, + [SMALL_STATE(4991)] = 186852, + [SMALL_STATE(4992)] = 186896, + [SMALL_STATE(4993)] = 186952, + [SMALL_STATE(4994)] = 186992, + [SMALL_STATE(4995)] = 187048, + [SMALL_STATE(4996)] = 187104, + [SMALL_STATE(4997)] = 187144, + [SMALL_STATE(4998)] = 187200, + [SMALL_STATE(4999)] = 187262, + [SMALL_STATE(5000)] = 187318, + [SMALL_STATE(5001)] = 187374, + [SMALL_STATE(5002)] = 187414, + [SMALL_STATE(5003)] = 187470, + [SMALL_STATE(5004)] = 187526, + [SMALL_STATE(5005)] = 187582, + [SMALL_STATE(5006)] = 187644, + [SMALL_STATE(5007)] = 187700, + [SMALL_STATE(5008)] = 187732, + [SMALL_STATE(5009)] = 187772, + [SMALL_STATE(5010)] = 187828, + [SMALL_STATE(5011)] = 187868, + [SMALL_STATE(5012)] = 187908, + [SMALL_STATE(5013)] = 187964, + [SMALL_STATE(5014)] = 188010, + [SMALL_STATE(5015)] = 188066, + [SMALL_STATE(5016)] = 188110, + [SMALL_STATE(5017)] = 188166, + [SMALL_STATE(5018)] = 188194, + [SMALL_STATE(5019)] = 188234, + [SMALL_STATE(5020)] = 188290, + [SMALL_STATE(5021)] = 188346, + [SMALL_STATE(5022)] = 188402, + [SMALL_STATE(5023)] = 188458, + [SMALL_STATE(5024)] = 188504, + [SMALL_STATE(5025)] = 188554, + [SMALL_STATE(5026)] = 188610, + [SMALL_STATE(5027)] = 188666, + [SMALL_STATE(5028)] = 188722, + [SMALL_STATE(5029)] = 188778, + [SMALL_STATE(5030)] = 188818, + [SMALL_STATE(5031)] = 188846, + [SMALL_STATE(5032)] = 188902, + [SMALL_STATE(5033)] = 188930, + [SMALL_STATE(5034)] = 188986, + [SMALL_STATE(5035)] = 189026, + [SMALL_STATE(5036)] = 189070, + [SMALL_STATE(5037)] = 189114, + [SMALL_STATE(5038)] = 189154, + [SMALL_STATE(5039)] = 189196, + [SMALL_STATE(5040)] = 189236, + [SMALL_STATE(5041)] = 189276, + [SMALL_STATE(5042)] = 189316, + [SMALL_STATE(5043)] = 189360, + [SMALL_STATE(5044)] = 189400, + [SMALL_STATE(5045)] = 189440, + [SMALL_STATE(5046)] = 189484, + [SMALL_STATE(5047)] = 189540, + [SMALL_STATE(5048)] = 189580, + [SMALL_STATE(5049)] = 189642, + [SMALL_STATE(5050)] = 189698, + [SMALL_STATE(5051)] = 189742, + [SMALL_STATE(5052)] = 189798, + [SMALL_STATE(5053)] = 189838, + [SMALL_STATE(5054)] = 189874, + [SMALL_STATE(5055)] = 189908, + [SMALL_STATE(5056)] = 189952, + [SMALL_STATE(5057)] = 189992, + [SMALL_STATE(5058)] = 190020, + [SMALL_STATE(5059)] = 190060, + [SMALL_STATE(5060)] = 190116, + [SMALL_STATE(5061)] = 190156, + [SMALL_STATE(5062)] = 190196, + [SMALL_STATE(5063)] = 190252, + [SMALL_STATE(5064)] = 190292, + [SMALL_STATE(5065)] = 190332, + [SMALL_STATE(5066)] = 190372, + [SMALL_STATE(5067)] = 190412, + [SMALL_STATE(5068)] = 190450, + [SMALL_STATE(5069)] = 190490, + [SMALL_STATE(5070)] = 190540, + [SMALL_STATE(5071)] = 190572, + [SMALL_STATE(5072)] = 190612, + [SMALL_STATE(5073)] = 190668, + [SMALL_STATE(5074)] = 190708, + [SMALL_STATE(5075)] = 190752, + [SMALL_STATE(5076)] = 190808, + [SMALL_STATE(5077)] = 190864, + [SMALL_STATE(5078)] = 190908, + [SMALL_STATE(5079)] = 190964, + [SMALL_STATE(5080)] = 191004, + [SMALL_STATE(5081)] = 191060, + [SMALL_STATE(5082)] = 191116, + [SMALL_STATE(5083)] = 191178, + [SMALL_STATE(5084)] = 191234, + [SMALL_STATE(5085)] = 191290, + [SMALL_STATE(5086)] = 191318, + [SMALL_STATE(5087)] = 191358, + [SMALL_STATE(5088)] = 191414, + [SMALL_STATE(5089)] = 191446, + [SMALL_STATE(5090)] = 191474, + [SMALL_STATE(5091)] = 191502, + [SMALL_STATE(5092)] = 191558, + [SMALL_STATE(5093)] = 191614, + [SMALL_STATE(5094)] = 191670, + [SMALL_STATE(5095)] = 191710, + [SMALL_STATE(5096)] = 191745, + [SMALL_STATE(5097)] = 191776, + [SMALL_STATE(5098)] = 191819, + [SMALL_STATE(5099)] = 191870, + [SMALL_STATE(5100)] = 191913, + [SMALL_STATE(5101)] = 191964, + [SMALL_STATE(5102)] = 192009, + [SMALL_STATE(5103)] = 192046, + [SMALL_STATE(5104)] = 192073, + [SMALL_STATE(5105)] = 192100, + [SMALL_STATE(5106)] = 192127, + [SMALL_STATE(5107)] = 192172, + [SMALL_STATE(5108)] = 192223, + [SMALL_STATE(5109)] = 192266, + [SMALL_STATE(5110)] = 192311, + [SMALL_STATE(5111)] = 192338, + [SMALL_STATE(5112)] = 192365, + [SMALL_STATE(5113)] = 192410, + [SMALL_STATE(5114)] = 192459, + [SMALL_STATE(5115)] = 192502, + [SMALL_STATE(5116)] = 192545, + [SMALL_STATE(5117)] = 192572, + [SMALL_STATE(5118)] = 192599, + [SMALL_STATE(5119)] = 192632, + [SMALL_STATE(5120)] = 192659, + [SMALL_STATE(5121)] = 192686, + [SMALL_STATE(5122)] = 192731, + [SMALL_STATE(5123)] = 192760, + [SMALL_STATE(5124)] = 192805, + [SMALL_STATE(5125)] = 192848, + [SMALL_STATE(5126)] = 192891, + [SMALL_STATE(5127)] = 192936, + [SMALL_STATE(5128)] = 192979, + [SMALL_STATE(5129)] = 193006, + [SMALL_STATE(5130)] = 193033, + [SMALL_STATE(5131)] = 193082, + [SMALL_STATE(5132)] = 193127, + [SMALL_STATE(5133)] = 193170, + [SMALL_STATE(5134)] = 193221, + [SMALL_STATE(5135)] = 193264, + [SMALL_STATE(5136)] = 193305, + [SMALL_STATE(5137)] = 193350, + [SMALL_STATE(5138)] = 193395, + [SMALL_STATE(5139)] = 193434, + [SMALL_STATE(5140)] = 193479, + [SMALL_STATE(5141)] = 193524, + [SMALL_STATE(5142)] = 193567, + [SMALL_STATE(5143)] = 193593, + [SMALL_STATE(5144)] = 193651, + [SMALL_STATE(5145)] = 193699, + [SMALL_STATE(5146)] = 193729, + [SMALL_STATE(5147)] = 193787, + [SMALL_STATE(5148)] = 193835, + [SMALL_STATE(5149)] = 193883, + [SMALL_STATE(5150)] = 193931, + [SMALL_STATE(5151)] = 193979, + [SMALL_STATE(5152)] = 194037, + [SMALL_STATE(5153)] = 194085, + [SMALL_STATE(5154)] = 194127, + [SMALL_STATE(5155)] = 194176, + [SMALL_STATE(5156)] = 194217, + [SMALL_STATE(5157)] = 194258, + [SMALL_STATE(5158)] = 194309, + [SMALL_STATE(5159)] = 194350, + [SMALL_STATE(5160)] = 194391, + [SMALL_STATE(5161)] = 194432, + [SMALL_STATE(5162)] = 194473, + [SMALL_STATE(5163)] = 194522, + [SMALL_STATE(5164)] = 194571, + [SMALL_STATE(5165)] = 194612, + [SMALL_STATE(5166)] = 194663, + [SMALL_STATE(5167)] = 194714, + [SMALL_STATE(5168)] = 194755, + [SMALL_STATE(5169)] = 194796, + [SMALL_STATE(5170)] = 194823, + [SMALL_STATE(5171)] = 194864, + [SMALL_STATE(5172)] = 194905, + [SMALL_STATE(5173)] = 194946, + [SMALL_STATE(5174)] = 194997, + [SMALL_STATE(5175)] = 195046, + [SMALL_STATE(5176)] = 195087, + [SMALL_STATE(5177)] = 195128, + [SMALL_STATE(5178)] = 195169, + [SMALL_STATE(5179)] = 195220, + [SMALL_STATE(5180)] = 195269, + [SMALL_STATE(5181)] = 195310, + [SMALL_STATE(5182)] = 195351, + [SMALL_STATE(5183)] = 195400, + [SMALL_STATE(5184)] = 195449, + [SMALL_STATE(5185)] = 195476, + [SMALL_STATE(5186)] = 195517, + [SMALL_STATE(5187)] = 195558, + [SMALL_STATE(5188)] = 195607, + [SMALL_STATE(5189)] = 195656, + [SMALL_STATE(5190)] = 195705, + [SMALL_STATE(5191)] = 195756, + [SMALL_STATE(5192)] = 195805, + [SMALL_STATE(5193)] = 195846, + [SMALL_STATE(5194)] = 195895, + [SMALL_STATE(5195)] = 195944, + [SMALL_STATE(5196)] = 195985, + [SMALL_STATE(5197)] = 196034, + [SMALL_STATE(5198)] = 196075, + [SMALL_STATE(5199)] = 196116, + [SMALL_STATE(5200)] = 196157, + [SMALL_STATE(5201)] = 196198, + [SMALL_STATE(5202)] = 196249, + [SMALL_STATE(5203)] = 196290, + [SMALL_STATE(5204)] = 196319, + [SMALL_STATE(5205)] = 196368, + [SMALL_STATE(5206)] = 196399, + [SMALL_STATE(5207)] = 196440, + [SMALL_STATE(5208)] = 196491, + [SMALL_STATE(5209)] = 196540, + [SMALL_STATE(5210)] = 196591, + [SMALL_STATE(5211)] = 196632, + [SMALL_STATE(5212)] = 196673, + [SMALL_STATE(5213)] = 196714, + [SMALL_STATE(5214)] = 196745, + [SMALL_STATE(5215)] = 196794, + [SMALL_STATE(5216)] = 196843, + [SMALL_STATE(5217)] = 196870, + [SMALL_STATE(5218)] = 196919, + [SMALL_STATE(5219)] = 196968, + [SMALL_STATE(5220)] = 197009, + [SMALL_STATE(5221)] = 197050, + [SMALL_STATE(5222)] = 197101, + [SMALL_STATE(5223)] = 197127, + [SMALL_STATE(5224)] = 197155, + [SMALL_STATE(5225)] = 197195, + [SMALL_STATE(5226)] = 197235, + [SMALL_STATE(5227)] = 197259, + [SMALL_STATE(5228)] = 197283, + [SMALL_STATE(5229)] = 197315, + [SMALL_STATE(5230)] = 197341, + [SMALL_STATE(5231)] = 197365, + [SMALL_STATE(5232)] = 197389, + [SMALL_STATE(5233)] = 197441, + [SMALL_STATE(5234)] = 197481, + [SMALL_STATE(5235)] = 197505, + [SMALL_STATE(5236)] = 197529, + [SMALL_STATE(5237)] = 197569, + [SMALL_STATE(5238)] = 197601, + [SMALL_STATE(5239)] = 197641, + [SMALL_STATE(5240)] = 197681, + [SMALL_STATE(5241)] = 197721, + [SMALL_STATE(5242)] = 197745, + [SMALL_STATE(5243)] = 197777, + [SMALL_STATE(5244)] = 197809, + [SMALL_STATE(5245)] = 197833, + [SMALL_STATE(5246)] = 197857, + [SMALL_STATE(5247)] = 197897, + [SMALL_STATE(5248)] = 197929, + [SMALL_STATE(5249)] = 197953, + [SMALL_STATE(5250)] = 197985, + [SMALL_STATE(5251)] = 198009, + [SMALL_STATE(5252)] = 198033, + [SMALL_STATE(5253)] = 198057, + [SMALL_STATE(5254)] = 198097, + [SMALL_STATE(5255)] = 198123, + [SMALL_STATE(5256)] = 198155, + [SMALL_STATE(5257)] = 198207, + [SMALL_STATE(5258)] = 198233, + [SMALL_STATE(5259)] = 198261, + [SMALL_STATE(5260)] = 198285, + [SMALL_STATE(5261)] = 198309, + [SMALL_STATE(5262)] = 198335, + [SMALL_STATE(5263)] = 198361, + [SMALL_STATE(5264)] = 198413, + [SMALL_STATE(5265)] = 198437, + [SMALL_STATE(5266)] = 198489, + [SMALL_STATE(5267)] = 198515, + [SMALL_STATE(5268)] = 198543, + [SMALL_STATE(5269)] = 198595, + [SMALL_STATE(5270)] = 198623, + [SMALL_STATE(5271)] = 198675, + [SMALL_STATE(5272)] = 198701, + [SMALL_STATE(5273)] = 198753, + [SMALL_STATE(5274)] = 198805, + [SMALL_STATE(5275)] = 198857, + [SMALL_STATE(5276)] = 198889, + [SMALL_STATE(5277)] = 198921, + [SMALL_STATE(5278)] = 198947, + [SMALL_STATE(5279)] = 198975, + [SMALL_STATE(5280)] = 198999, + [SMALL_STATE(5281)] = 199023, + [SMALL_STATE(5282)] = 199055, + [SMALL_STATE(5283)] = 199079, + [SMALL_STATE(5284)] = 199111, + [SMALL_STATE(5285)] = 199135, + [SMALL_STATE(5286)] = 199167, + [SMALL_STATE(5287)] = 199219, + [SMALL_STATE(5288)] = 199243, + [SMALL_STATE(5289)] = 199271, + [SMALL_STATE(5290)] = 199323, + [SMALL_STATE(5291)] = 199349, + [SMALL_STATE(5292)] = 199381, + [SMALL_STATE(5293)] = 199413, + [SMALL_STATE(5294)] = 199465, + [SMALL_STATE(5295)] = 199497, + [SMALL_STATE(5296)] = 199525, + [SMALL_STATE(5297)] = 199557, + [SMALL_STATE(5298)] = 199581, + [SMALL_STATE(5299)] = 199613, + [SMALL_STATE(5300)] = 199645, + [SMALL_STATE(5301)] = 199673, + [SMALL_STATE(5302)] = 199701, + [SMALL_STATE(5303)] = 199753, + [SMALL_STATE(5304)] = 199798, + [SMALL_STATE(5305)] = 199835, + [SMALL_STATE(5306)] = 199878, + [SMALL_STATE(5307)] = 199909, + [SMALL_STATE(5308)] = 199946, + [SMALL_STATE(5309)] = 199989, + [SMALL_STATE(5310)] = 200032, + [SMALL_STATE(5311)] = 200063, + [SMALL_STATE(5312)] = 200100, + [SMALL_STATE(5313)] = 200137, + [SMALL_STATE(5314)] = 200174, + [SMALL_STATE(5315)] = 200205, + [SMALL_STATE(5316)] = 200242, + [SMALL_STATE(5317)] = 200287, + [SMALL_STATE(5318)] = 200318, + [SMALL_STATE(5319)] = 200355, + [SMALL_STATE(5320)] = 200400, + [SMALL_STATE(5321)] = 200429, + [SMALL_STATE(5322)] = 200458, + [SMALL_STATE(5323)] = 200487, + [SMALL_STATE(5324)] = 200516, + [SMALL_STATE(5325)] = 200561, + [SMALL_STATE(5326)] = 200584, + [SMALL_STATE(5327)] = 200613, + [SMALL_STATE(5328)] = 200658, + [SMALL_STATE(5329)] = 200703, + [SMALL_STATE(5330)] = 200748, + [SMALL_STATE(5331)] = 200793, + [SMALL_STATE(5332)] = 200836, + [SMALL_STATE(5333)] = 200879, + [SMALL_STATE(5334)] = 200908, + [SMALL_STATE(5335)] = 200945, + [SMALL_STATE(5336)] = 200974, + [SMALL_STATE(5337)] = 201011, + [SMALL_STATE(5338)] = 201054, + [SMALL_STATE(5339)] = 201099, + [SMALL_STATE(5340)] = 201136, + [SMALL_STATE(5341)] = 201173, + [SMALL_STATE(5342)] = 201204, + [SMALL_STATE(5343)] = 201241, + [SMALL_STATE(5344)] = 201284, + [SMALL_STATE(5345)] = 201315, + [SMALL_STATE(5346)] = 201352, + [SMALL_STATE(5347)] = 201395, + [SMALL_STATE(5348)] = 201438, + [SMALL_STATE(5349)] = 201483, + [SMALL_STATE(5350)] = 201510, + [SMALL_STATE(5351)] = 201547, + [SMALL_STATE(5352)] = 201584, + [SMALL_STATE(5353)] = 201629, + [SMALL_STATE(5354)] = 201672, + [SMALL_STATE(5355)] = 201709, + [SMALL_STATE(5356)] = 201751, + [SMALL_STATE(5357)] = 201789, + [SMALL_STATE(5358)] = 201831, + [SMALL_STATE(5359)] = 201853, + [SMALL_STATE(5360)] = 201891, + [SMALL_STATE(5361)] = 201913, + [SMALL_STATE(5362)] = 201953, + [SMALL_STATE(5363)] = 201973, + [SMALL_STATE(5364)] = 202013, + [SMALL_STATE(5365)] = 202051, + [SMALL_STATE(5366)] = 202071, + [SMALL_STATE(5367)] = 202109, + [SMALL_STATE(5368)] = 202131, + [SMALL_STATE(5369)] = 202171, + [SMALL_STATE(5370)] = 202197, + [SMALL_STATE(5371)] = 202223, + [SMALL_STATE(5372)] = 202261, + [SMALL_STATE(5373)] = 202283, + [SMALL_STATE(5374)] = 202303, + [SMALL_STATE(5375)] = 202343, + [SMALL_STATE(5376)] = 202363, + [SMALL_STATE(5377)] = 202389, + [SMALL_STATE(5378)] = 202411, + [SMALL_STATE(5379)] = 202433, + [SMALL_STATE(5380)] = 202461, + [SMALL_STATE(5381)] = 202483, + [SMALL_STATE(5382)] = 202515, + [SMALL_STATE(5383)] = 202541, + [SMALL_STATE(5384)] = 202581, + [SMALL_STATE(5385)] = 202601, + [SMALL_STATE(5386)] = 202643, + [SMALL_STATE(5387)] = 202681, + [SMALL_STATE(5388)] = 202703, + [SMALL_STATE(5389)] = 202725, + [SMALL_STATE(5390)] = 202765, + [SMALL_STATE(5391)] = 202787, + [SMALL_STATE(5392)] = 202807, + [SMALL_STATE(5393)] = 202827, + [SMALL_STATE(5394)] = 202865, + [SMALL_STATE(5395)] = 202885, + [SMALL_STATE(5396)] = 202925, + [SMALL_STATE(5397)] = 202945, + [SMALL_STATE(5398)] = 202965, + [SMALL_STATE(5399)] = 203009, + [SMALL_STATE(5400)] = 203037, + [SMALL_STATE(5401)] = 203059, + [SMALL_STATE(5402)] = 203081, + [SMALL_STATE(5403)] = 203107, + [SMALL_STATE(5404)] = 203149, + [SMALL_STATE(5405)] = 203187, + [SMALL_STATE(5406)] = 203213, + [SMALL_STATE(5407)] = 203245, + [SMALL_STATE(5408)] = 203265, + [SMALL_STATE(5409)] = 203287, + [SMALL_STATE(5410)] = 203309, + [SMALL_STATE(5411)] = 203329, + [SMALL_STATE(5412)] = 203369, + [SMALL_STATE(5413)] = 203397, + [SMALL_STATE(5414)] = 203417, + [SMALL_STATE(5415)] = 203445, + [SMALL_STATE(5416)] = 203473, + [SMALL_STATE(5417)] = 203511, + [SMALL_STATE(5418)] = 203531, + [SMALL_STATE(5419)] = 203569, + [SMALL_STATE(5420)] = 203591, + [SMALL_STATE(5421)] = 203611, + [SMALL_STATE(5422)] = 203643, + [SMALL_STATE(5423)] = 203665, + [SMALL_STATE(5424)] = 203693, + [SMALL_STATE(5425)] = 203733, + [SMALL_STATE(5426)] = 203773, + [SMALL_STATE(5427)] = 203795, + [SMALL_STATE(5428)] = 203819, + [SMALL_STATE(5429)] = 203859, + [SMALL_STATE(5430)] = 203899, + [SMALL_STATE(5431)] = 203919, + [SMALL_STATE(5432)] = 203941, + [SMALL_STATE(5433)] = 203961, + [SMALL_STATE(5434)] = 204001, + [SMALL_STATE(5435)] = 204039, + [SMALL_STATE(5436)] = 204077, + [SMALL_STATE(5437)] = 204097, + [SMALL_STATE(5438)] = 204135, + [SMALL_STATE(5439)] = 204157, + [SMALL_STATE(5440)] = 204183, + [SMALL_STATE(5441)] = 204215, + [SMALL_STATE(5442)] = 204257, + [SMALL_STATE(5443)] = 204297, + [SMALL_STATE(5444)] = 204337, + [SMALL_STATE(5445)] = 204365, + [SMALL_STATE(5446)] = 204397, + [SMALL_STATE(5447)] = 204435, + [SMALL_STATE(5448)] = 204463, + [SMALL_STATE(5449)] = 204485, + [SMALL_STATE(5450)] = 204525, + [SMALL_STATE(5451)] = 204547, + [SMALL_STATE(5452)] = 204587, + [SMALL_STATE(5453)] = 204607, + [SMALL_STATE(5454)] = 204645, + [SMALL_STATE(5455)] = 204671, + [SMALL_STATE(5456)] = 204695, + [SMALL_STATE(5457)] = 204721, + [SMALL_STATE(5458)] = 204741, + [SMALL_STATE(5459)] = 204767, + [SMALL_STATE(5460)] = 204805, + [SMALL_STATE(5461)] = 204833, + [SMALL_STATE(5462)] = 204853, + [SMALL_STATE(5463)] = 204891, + [SMALL_STATE(5464)] = 204933, + [SMALL_STATE(5465)] = 204955, + [SMALL_STATE(5466)] = 204993, + [SMALL_STATE(5467)] = 205012, + [SMALL_STATE(5468)] = 205043, + [SMALL_STATE(5469)] = 205070, + [SMALL_STATE(5470)] = 205107, + [SMALL_STATE(5471)] = 205138, + [SMALL_STATE(5472)] = 205175, + [SMALL_STATE(5473)] = 205202, + [SMALL_STATE(5474)] = 205229, + [SMALL_STATE(5475)] = 205256, + [SMALL_STATE(5476)] = 205283, + [SMALL_STATE(5477)] = 205310, + [SMALL_STATE(5478)] = 205337, + [SMALL_STATE(5479)] = 205374, + [SMALL_STATE(5480)] = 205411, + [SMALL_STATE(5481)] = 205438, + [SMALL_STATE(5482)] = 205469, + [SMALL_STATE(5483)] = 205504, + [SMALL_STATE(5484)] = 205531, + [SMALL_STATE(5485)] = 205558, + [SMALL_STATE(5486)] = 205585, + [SMALL_STATE(5487)] = 205622, + [SMALL_STATE(5488)] = 205645, + [SMALL_STATE(5489)] = 205682, + [SMALL_STATE(5490)] = 205719, + [SMALL_STATE(5491)] = 205746, + [SMALL_STATE(5492)] = 205771, + [SMALL_STATE(5493)] = 205800, + [SMALL_STATE(5494)] = 205825, + [SMALL_STATE(5495)] = 205850, + [SMALL_STATE(5496)] = 205887, + [SMALL_STATE(5497)] = 205912, + [SMALL_STATE(5498)] = 205937, + [SMALL_STATE(5499)] = 205974, + [SMALL_STATE(5500)] = 206003, + [SMALL_STATE(5501)] = 206040, + [SMALL_STATE(5502)] = 206067, + [SMALL_STATE(5503)] = 206092, + [SMALL_STATE(5504)] = 206121, + [SMALL_STATE(5505)] = 206152, + [SMALL_STATE(5506)] = 206181, + [SMALL_STATE(5507)] = 206210, + [SMALL_STATE(5508)] = 206247, + [SMALL_STATE(5509)] = 206274, + [SMALL_STATE(5510)] = 206303, + [SMALL_STATE(5511)] = 206328, + [SMALL_STATE(5512)] = 206365, + [SMALL_STATE(5513)] = 206390, + [SMALL_STATE(5514)] = 206417, + [SMALL_STATE(5515)] = 206436, + [SMALL_STATE(5516)] = 206459, + [SMALL_STATE(5517)] = 206478, + [SMALL_STATE(5518)] = 206497, + [SMALL_STATE(5519)] = 206516, + [SMALL_STATE(5520)] = 206543, + [SMALL_STATE(5521)] = 206562, + [SMALL_STATE(5522)] = 206599, + [SMALL_STATE(5523)] = 206618, + [SMALL_STATE(5524)] = 206637, + [SMALL_STATE(5525)] = 206656, + [SMALL_STATE(5526)] = 206675, + [SMALL_STATE(5527)] = 206694, + [SMALL_STATE(5528)] = 206731, + [SMALL_STATE(5529)] = 206750, + [SMALL_STATE(5530)] = 206769, + [SMALL_STATE(5531)] = 206788, + [SMALL_STATE(5532)] = 206825, + [SMALL_STATE(5533)] = 206846, + [SMALL_STATE(5534)] = 206865, + [SMALL_STATE(5535)] = 206890, + [SMALL_STATE(5536)] = 206909, + [SMALL_STATE(5537)] = 206928, + [SMALL_STATE(5538)] = 206959, + [SMALL_STATE(5539)] = 206986, + [SMALL_STATE(5540)] = 207023, + [SMALL_STATE(5541)] = 207050, + [SMALL_STATE(5542)] = 207087, + [SMALL_STATE(5543)] = 207124, + [SMALL_STATE(5544)] = 207161, + [SMALL_STATE(5545)] = 207187, + [SMALL_STATE(5546)] = 207223, + [SMALL_STATE(5547)] = 207249, + [SMALL_STATE(5548)] = 207271, + [SMALL_STATE(5549)] = 207307, + [SMALL_STATE(5550)] = 207341, + [SMALL_STATE(5551)] = 207371, + [SMALL_STATE(5552)] = 207397, + [SMALL_STATE(5553)] = 207423, + [SMALL_STATE(5554)] = 207449, + [SMALL_STATE(5555)] = 207475, + [SMALL_STATE(5556)] = 207511, + [SMALL_STATE(5557)] = 207537, + [SMALL_STATE(5558)] = 207571, + [SMALL_STATE(5559)] = 207607, + [SMALL_STATE(5560)] = 207629, + [SMALL_STATE(5561)] = 207653, + [SMALL_STATE(5562)] = 207687, + [SMALL_STATE(5563)] = 207717, + [SMALL_STATE(5564)] = 207753, + [SMALL_STATE(5565)] = 207783, + [SMALL_STATE(5566)] = 207819, + [SMALL_STATE(5567)] = 207853, + [SMALL_STATE(5568)] = 207889, + [SMALL_STATE(5569)] = 207919, + [SMALL_STATE(5570)] = 207955, + [SMALL_STATE(5571)] = 207989, + [SMALL_STATE(5572)] = 208025, + [SMALL_STATE(5573)] = 208061, + [SMALL_STATE(5574)] = 208097, + [SMALL_STATE(5575)] = 208131, + [SMALL_STATE(5576)] = 208157, + [SMALL_STATE(5577)] = 208183, + [SMALL_STATE(5578)] = 208219, + [SMALL_STATE(5579)] = 208243, + [SMALL_STATE(5580)] = 208265, + [SMALL_STATE(5581)] = 208301, + [SMALL_STATE(5582)] = 208321, + [SMALL_STATE(5583)] = 208347, + [SMALL_STATE(5584)] = 208383, + [SMALL_STATE(5585)] = 208413, + [SMALL_STATE(5586)] = 208449, + [SMALL_STATE(5587)] = 208485, + [SMALL_STATE(5588)] = 208521, + [SMALL_STATE(5589)] = 208555, + [SMALL_STATE(5590)] = 208581, + [SMALL_STATE(5591)] = 208615, + [SMALL_STATE(5592)] = 208651, + [SMALL_STATE(5593)] = 208685, + [SMALL_STATE(5594)] = 208721, + [SMALL_STATE(5595)] = 208751, + [SMALL_STATE(5596)] = 208787, + [SMALL_STATE(5597)] = 208821, + [SMALL_STATE(5598)] = 208847, + [SMALL_STATE(5599)] = 208883, + [SMALL_STATE(5600)] = 208909, + [SMALL_STATE(5601)] = 208940, + [SMALL_STATE(5602)] = 208959, + [SMALL_STATE(5603)] = 208984, + [SMALL_STATE(5604)] = 209003, + [SMALL_STATE(5605)] = 209022, + [SMALL_STATE(5606)] = 209047, + [SMALL_STATE(5607)] = 209070, + [SMALL_STATE(5608)] = 209095, + [SMALL_STATE(5609)] = 209120, + [SMALL_STATE(5610)] = 209151, + [SMALL_STATE(5611)] = 209176, + [SMALL_STATE(5612)] = 209205, + [SMALL_STATE(5613)] = 209224, + [SMALL_STATE(5614)] = 209253, + [SMALL_STATE(5615)] = 209282, + [SMALL_STATE(5616)] = 209301, + [SMALL_STATE(5617)] = 209336, + [SMALL_STATE(5618)] = 209365, + [SMALL_STATE(5619)] = 209390, + [SMALL_STATE(5620)] = 209415, + [SMALL_STATE(5621)] = 209450, + [SMALL_STATE(5622)] = 209469, + [SMALL_STATE(5623)] = 209494, + [SMALL_STATE(5624)] = 209519, + [SMALL_STATE(5625)] = 209550, + [SMALL_STATE(5626)] = 209575, + [SMALL_STATE(5627)] = 209606, + [SMALL_STATE(5628)] = 209625, + [SMALL_STATE(5629)] = 209650, + [SMALL_STATE(5630)] = 209669, + [SMALL_STATE(5631)] = 209700, + [SMALL_STATE(5632)] = 209731, + [SMALL_STATE(5633)] = 209750, + [SMALL_STATE(5634)] = 209769, + [SMALL_STATE(5635)] = 209788, + [SMALL_STATE(5636)] = 209813, + [SMALL_STATE(5637)] = 209832, + [SMALL_STATE(5638)] = 209851, + [SMALL_STATE(5639)] = 209886, + [SMALL_STATE(5640)] = 209917, + [SMALL_STATE(5641)] = 209936, + [SMALL_STATE(5642)] = 209967, + [SMALL_STATE(5643)] = 210002, + [SMALL_STATE(5644)] = 210027, + [SMALL_STATE(5645)] = 210046, + [SMALL_STATE(5646)] = 210067, + [SMALL_STATE(5647)] = 210096, + [SMALL_STATE(5648)] = 210115, + [SMALL_STATE(5649)] = 210138, + [SMALL_STATE(5650)] = 210161, + [SMALL_STATE(5651)] = 210186, + [SMALL_STATE(5652)] = 210205, + [SMALL_STATE(5653)] = 210224, + [SMALL_STATE(5654)] = 210249, + [SMALL_STATE(5655)] = 210280, + [SMALL_STATE(5656)] = 210305, + [SMALL_STATE(5657)] = 210336, + [SMALL_STATE(5658)] = 210371, + [SMALL_STATE(5659)] = 210400, + [SMALL_STATE(5660)] = 210435, + [SMALL_STATE(5661)] = 210470, + [SMALL_STATE(5662)] = 210495, + [SMALL_STATE(5663)] = 210530, + [SMALL_STATE(5664)] = 210555, + [SMALL_STATE(5665)] = 210590, + [SMALL_STATE(5666)] = 210623, + [SMALL_STATE(5667)] = 210648, + [SMALL_STATE(5668)] = 210679, + [SMALL_STATE(5669)] = 210708, + [SMALL_STATE(5670)] = 210733, + [SMALL_STATE(5671)] = 210757, + [SMALL_STATE(5672)] = 210783, + [SMALL_STATE(5673)] = 210813, + [SMALL_STATE(5674)] = 210843, + [SMALL_STATE(5675)] = 210867, + [SMALL_STATE(5676)] = 210885, + [SMALL_STATE(5677)] = 210903, + [SMALL_STATE(5678)] = 210927, + [SMALL_STATE(5679)] = 210953, + [SMALL_STATE(5680)] = 210985, + [SMALL_STATE(5681)] = 211003, + [SMALL_STATE(5682)] = 211033, + [SMALL_STATE(5683)] = 211063, + [SMALL_STATE(5684)] = 211087, + [SMALL_STATE(5685)] = 211105, + [SMALL_STATE(5686)] = 211123, + [SMALL_STATE(5687)] = 211147, + [SMALL_STATE(5688)] = 211173, + [SMALL_STATE(5689)] = 211191, + [SMALL_STATE(5690)] = 211215, + [SMALL_STATE(5691)] = 211239, + [SMALL_STATE(5692)] = 211257, + [SMALL_STATE(5693)] = 211275, + [SMALL_STATE(5694)] = 211305, + [SMALL_STATE(5695)] = 211331, + [SMALL_STATE(5696)] = 211353, + [SMALL_STATE(5697)] = 211377, + [SMALL_STATE(5698)] = 211407, + [SMALL_STATE(5699)] = 211431, + [SMALL_STATE(5700)] = 211457, + [SMALL_STATE(5701)] = 211483, + [SMALL_STATE(5702)] = 211513, + [SMALL_STATE(5703)] = 211540, + [SMALL_STATE(5704)] = 211569, + [SMALL_STATE(5705)] = 211598, + [SMALL_STATE(5706)] = 211623, + [SMALL_STATE(5707)] = 211650, + [SMALL_STATE(5708)] = 211679, + [SMALL_STATE(5709)] = 211700, + [SMALL_STATE(5710)] = 211723, + [SMALL_STATE(5711)] = 211746, + [SMALL_STATE(5712)] = 211775, + [SMALL_STATE(5713)] = 211806, + [SMALL_STATE(5714)] = 211837, + [SMALL_STATE(5715)] = 211866, + [SMALL_STATE(5716)] = 211893, + [SMALL_STATE(5717)] = 211922, + [SMALL_STATE(5718)] = 211951, + [SMALL_STATE(5719)] = 211982, + [SMALL_STATE(5720)] = 212003, + [SMALL_STATE(5721)] = 212032, + [SMALL_STATE(5722)] = 212061, + [SMALL_STATE(5723)] = 212090, + [SMALL_STATE(5724)] = 212117, + [SMALL_STATE(5725)] = 212146, + [SMALL_STATE(5726)] = 212175, + [SMALL_STATE(5727)] = 212206, + [SMALL_STATE(5728)] = 212235, + [SMALL_STATE(5729)] = 212264, + [SMALL_STATE(5730)] = 212293, + [SMALL_STATE(5731)] = 212320, + [SMALL_STATE(5732)] = 212347, + [SMALL_STATE(5733)] = 212376, + [SMALL_STATE(5734)] = 212407, + [SMALL_STATE(5735)] = 212436, + [SMALL_STATE(5736)] = 212467, + [SMALL_STATE(5737)] = 212496, + [SMALL_STATE(5738)] = 212527, + [SMALL_STATE(5739)] = 212556, + [SMALL_STATE(5740)] = 212585, + [SMALL_STATE(5741)] = 212608, + [SMALL_STATE(5742)] = 212639, + [SMALL_STATE(5743)] = 212668, + [SMALL_STATE(5744)] = 212697, + [SMALL_STATE(5745)] = 212718, + [SMALL_STATE(5746)] = 212747, + [SMALL_STATE(5747)] = 212774, + [SMALL_STATE(5748)] = 212801, + [SMALL_STATE(5749)] = 212830, + [SMALL_STATE(5750)] = 212859, + [SMALL_STATE(5751)] = 212888, + [SMALL_STATE(5752)] = 212917, + [SMALL_STATE(5753)] = 212942, + [SMALL_STATE(5754)] = 212973, + [SMALL_STATE(5755)] = 212996, + [SMALL_STATE(5756)] = 213019, + [SMALL_STATE(5757)] = 213036, + [SMALL_STATE(5758)] = 213065, + [SMALL_STATE(5759)] = 213090, + [SMALL_STATE(5760)] = 213111, + [SMALL_STATE(5761)] = 213140, + [SMALL_STATE(5762)] = 213161, + [SMALL_STATE(5763)] = 213184, + [SMALL_STATE(5764)] = 213213, + [SMALL_STATE(5765)] = 213242, + [SMALL_STATE(5766)] = 213273, + [SMALL_STATE(5767)] = 213304, + [SMALL_STATE(5768)] = 213323, + [SMALL_STATE(5769)] = 213352, + [SMALL_STATE(5770)] = 213369, + [SMALL_STATE(5771)] = 213400, + [SMALL_STATE(5772)] = 213417, + [SMALL_STATE(5773)] = 213440, + [SMALL_STATE(5774)] = 213469, + [SMALL_STATE(5775)] = 213486, + [SMALL_STATE(5776)] = 213515, + [SMALL_STATE(5777)] = 213542, + [SMALL_STATE(5778)] = 213571, + [SMALL_STATE(5779)] = 213600, + [SMALL_STATE(5780)] = 213631, + [SMALL_STATE(5781)] = 213660, + [SMALL_STATE(5782)] = 213691, + [SMALL_STATE(5783)] = 213720, + [SMALL_STATE(5784)] = 213737, + [SMALL_STATE(5785)] = 213766, + [SMALL_STATE(5786)] = 213783, + [SMALL_STATE(5787)] = 213808, + [SMALL_STATE(5788)] = 213829, + [SMALL_STATE(5789)] = 213846, + [SMALL_STATE(5790)] = 213877, + [SMALL_STATE(5791)] = 213906, + [SMALL_STATE(5792)] = 213937, + [SMALL_STATE(5793)] = 213966, + [SMALL_STATE(5794)] = 213995, + [SMALL_STATE(5795)] = 214014, + [SMALL_STATE(5796)] = 214037, + [SMALL_STATE(5797)] = 214066, + [SMALL_STATE(5798)] = 214097, + [SMALL_STATE(5799)] = 214120, + [SMALL_STATE(5800)] = 214149, + [SMALL_STATE(5801)] = 214175, + [SMALL_STATE(5802)] = 214201, + [SMALL_STATE(5803)] = 214221, + [SMALL_STATE(5804)] = 214243, + [SMALL_STATE(5805)] = 214265, + [SMALL_STATE(5806)] = 214291, + [SMALL_STATE(5807)] = 214311, + [SMALL_STATE(5808)] = 214339, + [SMALL_STATE(5809)] = 214361, + [SMALL_STATE(5810)] = 214387, + [SMALL_STATE(5811)] = 214413, + [SMALL_STATE(5812)] = 214435, + [SMALL_STATE(5813)] = 214461, + [SMALL_STATE(5814)] = 214487, + [SMALL_STATE(5815)] = 214513, + [SMALL_STATE(5816)] = 214535, + [SMALL_STATE(5817)] = 214561, + [SMALL_STATE(5818)] = 214587, + [SMALL_STATE(5819)] = 214613, + [SMALL_STATE(5820)] = 214639, + [SMALL_STATE(5821)] = 214665, + [SMALL_STATE(5822)] = 214691, + [SMALL_STATE(5823)] = 214709, + [SMALL_STATE(5824)] = 214729, + [SMALL_STATE(5825)] = 214749, + [SMALL_STATE(5826)] = 214775, + [SMALL_STATE(5827)] = 214801, + [SMALL_STATE(5828)] = 214821, + [SMALL_STATE(5829)] = 214847, + [SMALL_STATE(5830)] = 214873, + [SMALL_STATE(5831)] = 214895, + [SMALL_STATE(5832)] = 214923, + [SMALL_STATE(5833)] = 214949, + [SMALL_STATE(5834)] = 214975, + [SMALL_STATE(5835)] = 215001, + [SMALL_STATE(5836)] = 215027, + [SMALL_STATE(5837)] = 215047, + [SMALL_STATE(5838)] = 215075, + [SMALL_STATE(5839)] = 215101, + [SMALL_STATE(5840)] = 215127, + [SMALL_STATE(5841)] = 215151, + [SMALL_STATE(5842)] = 215177, + [SMALL_STATE(5843)] = 215197, + [SMALL_STATE(5844)] = 215223, + [SMALL_STATE(5845)] = 215249, + [SMALL_STATE(5846)] = 215277, + [SMALL_STATE(5847)] = 215303, + [SMALL_STATE(5848)] = 215329, + [SMALL_STATE(5849)] = 215349, + [SMALL_STATE(5850)] = 215371, + [SMALL_STATE(5851)] = 215397, + [SMALL_STATE(5852)] = 215419, + [SMALL_STATE(5853)] = 215441, + [SMALL_STATE(5854)] = 215467, + [SMALL_STATE(5855)] = 215493, + [SMALL_STATE(5856)] = 215513, + [SMALL_STATE(5857)] = 215533, + [SMALL_STATE(5858)] = 215559, + [SMALL_STATE(5859)] = 215579, + [SMALL_STATE(5860)] = 215605, + [SMALL_STATE(5861)] = 215631, + [SMALL_STATE(5862)] = 215651, + [SMALL_STATE(5863)] = 215677, + [SMALL_STATE(5864)] = 215703, + [SMALL_STATE(5865)] = 215729, + [SMALL_STATE(5866)] = 215751, + [SMALL_STATE(5867)] = 215776, + [SMALL_STATE(5868)] = 215801, + [SMALL_STATE(5869)] = 215826, + [SMALL_STATE(5870)] = 215849, + [SMALL_STATE(5871)] = 215874, + [SMALL_STATE(5872)] = 215889, + [SMALL_STATE(5873)] = 215914, + [SMALL_STATE(5874)] = 215929, + [SMALL_STATE(5875)] = 215954, + [SMALL_STATE(5876)] = 215969, + [SMALL_STATE(5877)] = 215994, + [SMALL_STATE(5878)] = 216017, + [SMALL_STATE(5879)] = 216042, + [SMALL_STATE(5880)] = 216057, + [SMALL_STATE(5881)] = 216072, + [SMALL_STATE(5882)] = 216095, + [SMALL_STATE(5883)] = 216120, + [SMALL_STATE(5884)] = 216145, + [SMALL_STATE(5885)] = 216160, + [SMALL_STATE(5886)] = 216175, + [SMALL_STATE(5887)] = 216190, + [SMALL_STATE(5888)] = 216210, + [SMALL_STATE(5889)] = 216230, + [SMALL_STATE(5890)] = 216248, + [SMALL_STATE(5891)] = 216268, + [SMALL_STATE(5892)] = 216286, + [SMALL_STATE(5893)] = 216306, + [SMALL_STATE(5894)] = 216324, + [SMALL_STATE(5895)] = 216340, + [SMALL_STATE(5896)] = 216356, + [SMALL_STATE(5897)] = 216376, + [SMALL_STATE(5898)] = 216396, + [SMALL_STATE(5899)] = 216414, + [SMALL_STATE(5900)] = 216434, + [SMALL_STATE(5901)] = 216448, + [SMALL_STATE(5902)] = 216462, + [SMALL_STATE(5903)] = 216482, + [SMALL_STATE(5904)] = 216496, + [SMALL_STATE(5905)] = 216510, + [SMALL_STATE(5906)] = 216524, + [SMALL_STATE(5907)] = 216544, + [SMALL_STATE(5908)] = 216560, + [SMALL_STATE(5909)] = 216576, + [SMALL_STATE(5910)] = 216592, + [SMALL_STATE(5911)] = 216606, + [SMALL_STATE(5912)] = 216626, + [SMALL_STATE(5913)] = 216640, + [SMALL_STATE(5914)] = 216656, + [SMALL_STATE(5915)] = 216672, + [SMALL_STATE(5916)] = 216690, + [SMALL_STATE(5917)] = 216710, + [SMALL_STATE(5918)] = 216730, + [SMALL_STATE(5919)] = 216750, + [SMALL_STATE(5920)] = 216766, + [SMALL_STATE(5921)] = 216786, + [SMALL_STATE(5922)] = 216800, + [SMALL_STATE(5923)] = 216814, + [SMALL_STATE(5924)] = 216830, + [SMALL_STATE(5925)] = 216850, + [SMALL_STATE(5926)] = 216868, + [SMALL_STATE(5927)] = 216884, + [SMALL_STATE(5928)] = 216898, + [SMALL_STATE(5929)] = 216918, + [SMALL_STATE(5930)] = 216934, + [SMALL_STATE(5931)] = 216954, + [SMALL_STATE(5932)] = 216974, + [SMALL_STATE(5933)] = 216994, + [SMALL_STATE(5934)] = 217012, + [SMALL_STATE(5935)] = 217026, + [SMALL_STATE(5936)] = 217042, + [SMALL_STATE(5937)] = 217058, + [SMALL_STATE(5938)] = 217078, + [SMALL_STATE(5939)] = 217094, + [SMALL_STATE(5940)] = 217108, + [SMALL_STATE(5941)] = 217126, + [SMALL_STATE(5942)] = 217140, + [SMALL_STATE(5943)] = 217159, + [SMALL_STATE(5944)] = 217172, + [SMALL_STATE(5945)] = 217189, + [SMALL_STATE(5946)] = 217206, + [SMALL_STATE(5947)] = 217225, + [SMALL_STATE(5948)] = 217244, + [SMALL_STATE(5949)] = 217261, + [SMALL_STATE(5950)] = 217274, + [SMALL_STATE(5951)] = 217291, + [SMALL_STATE(5952)] = 217310, + [SMALL_STATE(5953)] = 217329, + [SMALL_STATE(5954)] = 217346, + [SMALL_STATE(5955)] = 217365, + [SMALL_STATE(5956)] = 217384, + [SMALL_STATE(5957)] = 217403, + [SMALL_STATE(5958)] = 217422, + [SMALL_STATE(5959)] = 217438, + [SMALL_STATE(5960)] = 217454, + [SMALL_STATE(5961)] = 217468, + [SMALL_STATE(5962)] = 217484, + [SMALL_STATE(5963)] = 217500, + [SMALL_STATE(5964)] = 217516, + [SMALL_STATE(5965)] = 217530, + [SMALL_STATE(5966)] = 217544, + [SMALL_STATE(5967)] = 217558, + [SMALL_STATE(5968)] = 217572, + [SMALL_STATE(5969)] = 217588, + [SMALL_STATE(5970)] = 217604, + [SMALL_STATE(5971)] = 217620, + [SMALL_STATE(5972)] = 217636, + [SMALL_STATE(5973)] = 217652, + [SMALL_STATE(5974)] = 217668, + [SMALL_STATE(5975)] = 217684, + [SMALL_STATE(5976)] = 217698, + [SMALL_STATE(5977)] = 217712, + [SMALL_STATE(5978)] = 217728, + [SMALL_STATE(5979)] = 217742, + [SMALL_STATE(5980)] = 217756, + [SMALL_STATE(5981)] = 217772, + [SMALL_STATE(5982)] = 217786, + [SMALL_STATE(5983)] = 217802, + [SMALL_STATE(5984)] = 217818, + [SMALL_STATE(5985)] = 217832, + [SMALL_STATE(5986)] = 217848, + [SMALL_STATE(5987)] = 217864, + [SMALL_STATE(5988)] = 217880, + [SMALL_STATE(5989)] = 217896, + [SMALL_STATE(5990)] = 217912, + [SMALL_STATE(5991)] = 217928, + [SMALL_STATE(5992)] = 217942, + [SMALL_STATE(5993)] = 217956, + [SMALL_STATE(5994)] = 217970, + [SMALL_STATE(5995)] = 217984, + [SMALL_STATE(5996)] = 218000, + [SMALL_STATE(5997)] = 218016, + [SMALL_STATE(5998)] = 218030, + [SMALL_STATE(5999)] = 218044, + [SMALL_STATE(6000)] = 218060, + [SMALL_STATE(6001)] = 218076, + [SMALL_STATE(6002)] = 218090, + [SMALL_STATE(6003)] = 218104, + [SMALL_STATE(6004)] = 218118, + [SMALL_STATE(6005)] = 218132, + [SMALL_STATE(6006)] = 218148, + [SMALL_STATE(6007)] = 218162, + [SMALL_STATE(6008)] = 218176, + [SMALL_STATE(6009)] = 218192, + [SMALL_STATE(6010)] = 218208, + [SMALL_STATE(6011)] = 218224, + [SMALL_STATE(6012)] = 218240, + [SMALL_STATE(6013)] = 218256, + [SMALL_STATE(6014)] = 218272, + [SMALL_STATE(6015)] = 218288, + [SMALL_STATE(6016)] = 218304, + [SMALL_STATE(6017)] = 218320, + [SMALL_STATE(6018)] = 218336, + [SMALL_STATE(6019)] = 218350, + [SMALL_STATE(6020)] = 218366, + [SMALL_STATE(6021)] = 218382, + [SMALL_STATE(6022)] = 218398, + [SMALL_STATE(6023)] = 218414, + [SMALL_STATE(6024)] = 218428, + [SMALL_STATE(6025)] = 218444, + [SMALL_STATE(6026)] = 218460, + [SMALL_STATE(6027)] = 218474, + [SMALL_STATE(6028)] = 218490, + [SMALL_STATE(6029)] = 218504, + [SMALL_STATE(6030)] = 218520, + [SMALL_STATE(6031)] = 218534, + [SMALL_STATE(6032)] = 218550, + [SMALL_STATE(6033)] = 218564, + [SMALL_STATE(6034)] = 218578, + [SMALL_STATE(6035)] = 218592, + [SMALL_STATE(6036)] = 218608, + [SMALL_STATE(6037)] = 218624, + [SMALL_STATE(6038)] = 218640, + [SMALL_STATE(6039)] = 218656, + [SMALL_STATE(6040)] = 218672, + [SMALL_STATE(6041)] = 218688, + [SMALL_STATE(6042)] = 218704, + [SMALL_STATE(6043)] = 218714, + [SMALL_STATE(6044)] = 218730, + [SMALL_STATE(6045)] = 218740, + [SMALL_STATE(6046)] = 218750, + [SMALL_STATE(6047)] = 218766, + [SMALL_STATE(6048)] = 218782, + [SMALL_STATE(6049)] = 218798, + [SMALL_STATE(6050)] = 218812, + [SMALL_STATE(6051)] = 218828, + [SMALL_STATE(6052)] = 218844, + [SMALL_STATE(6053)] = 218860, + [SMALL_STATE(6054)] = 218872, + [SMALL_STATE(6055)] = 218888, + [SMALL_STATE(6056)] = 218904, + [SMALL_STATE(6057)] = 218920, + [SMALL_STATE(6058)] = 218936, + [SMALL_STATE(6059)] = 218948, + [SMALL_STATE(6060)] = 218964, + [SMALL_STATE(6061)] = 218978, + [SMALL_STATE(6062)] = 218994, + [SMALL_STATE(6063)] = 219010, + [SMALL_STATE(6064)] = 219024, + [SMALL_STATE(6065)] = 219040, + [SMALL_STATE(6066)] = 219056, + [SMALL_STATE(6067)] = 219070, + [SMALL_STATE(6068)] = 219084, + [SMALL_STATE(6069)] = 219098, + [SMALL_STATE(6070)] = 219114, + [SMALL_STATE(6071)] = 219130, + [SMALL_STATE(6072)] = 219144, + [SMALL_STATE(6073)] = 219160, + [SMALL_STATE(6074)] = 219176, + [SMALL_STATE(6075)] = 219192, + [SMALL_STATE(6076)] = 219208, + [SMALL_STATE(6077)] = 219222, + [SMALL_STATE(6078)] = 219238, + [SMALL_STATE(6079)] = 219252, + [SMALL_STATE(6080)] = 219268, + [SMALL_STATE(6081)] = 219284, + [SMALL_STATE(6082)] = 219300, + [SMALL_STATE(6083)] = 219316, + [SMALL_STATE(6084)] = 219332, + [SMALL_STATE(6085)] = 219346, + [SMALL_STATE(6086)] = 219360, + [SMALL_STATE(6087)] = 219376, + [SMALL_STATE(6088)] = 219390, + [SMALL_STATE(6089)] = 219404, + [SMALL_STATE(6090)] = 219420, + [SMALL_STATE(6091)] = 219436, + [SMALL_STATE(6092)] = 219452, + [SMALL_STATE(6093)] = 219468, + [SMALL_STATE(6094)] = 219484, + [SMALL_STATE(6095)] = 219500, + [SMALL_STATE(6096)] = 219514, + [SMALL_STATE(6097)] = 219528, + [SMALL_STATE(6098)] = 219544, + [SMALL_STATE(6099)] = 219560, + [SMALL_STATE(6100)] = 219576, + [SMALL_STATE(6101)] = 219590, + [SMALL_STATE(6102)] = 219606, + [SMALL_STATE(6103)] = 219622, + [SMALL_STATE(6104)] = 219636, + [SMALL_STATE(6105)] = 219650, + [SMALL_STATE(6106)] = 219666, + [SMALL_STATE(6107)] = 219682, + [SMALL_STATE(6108)] = 219698, + [SMALL_STATE(6109)] = 219714, + [SMALL_STATE(6110)] = 219730, + [SMALL_STATE(6111)] = 219746, + [SMALL_STATE(6112)] = 219760, + [SMALL_STATE(6113)] = 219774, + [SMALL_STATE(6114)] = 219790, + [SMALL_STATE(6115)] = 219806, + [SMALL_STATE(6116)] = 219820, + [SMALL_STATE(6117)] = 219836, + [SMALL_STATE(6118)] = 219852, + [SMALL_STATE(6119)] = 219868, + [SMALL_STATE(6120)] = 219884, + [SMALL_STATE(6121)] = 219898, + [SMALL_STATE(6122)] = 219914, + [SMALL_STATE(6123)] = 219930, + [SMALL_STATE(6124)] = 219946, + [SMALL_STATE(6125)] = 219962, + [SMALL_STATE(6126)] = 219978, + [SMALL_STATE(6127)] = 219994, + [SMALL_STATE(6128)] = 220008, + [SMALL_STATE(6129)] = 220024, + [SMALL_STATE(6130)] = 220040, + [SMALL_STATE(6131)] = 220056, + [SMALL_STATE(6132)] = 220072, + [SMALL_STATE(6133)] = 220088, + [SMALL_STATE(6134)] = 220104, + [SMALL_STATE(6135)] = 220120, + [SMALL_STATE(6136)] = 220132, + [SMALL_STATE(6137)] = 220148, + [SMALL_STATE(6138)] = 220162, + [SMALL_STATE(6139)] = 220178, + [SMALL_STATE(6140)] = 220194, + [SMALL_STATE(6141)] = 220210, + [SMALL_STATE(6142)] = 220222, + [SMALL_STATE(6143)] = 220236, + [SMALL_STATE(6144)] = 220252, + [SMALL_STATE(6145)] = 220268, + [SMALL_STATE(6146)] = 220284, + [SMALL_STATE(6147)] = 220300, + [SMALL_STATE(6148)] = 220316, + [SMALL_STATE(6149)] = 220332, + [SMALL_STATE(6150)] = 220348, + [SMALL_STATE(6151)] = 220364, + [SMALL_STATE(6152)] = 220380, + [SMALL_STATE(6153)] = 220396, + [SMALL_STATE(6154)] = 220412, + [SMALL_STATE(6155)] = 220428, + [SMALL_STATE(6156)] = 220444, + [SMALL_STATE(6157)] = 220460, + [SMALL_STATE(6158)] = 220472, + [SMALL_STATE(6159)] = 220488, + [SMALL_STATE(6160)] = 220504, + [SMALL_STATE(6161)] = 220520, + [SMALL_STATE(6162)] = 220536, + [SMALL_STATE(6163)] = 220550, + [SMALL_STATE(6164)] = 220564, + [SMALL_STATE(6165)] = 220580, + [SMALL_STATE(6166)] = 220596, + [SMALL_STATE(6167)] = 220610, + [SMALL_STATE(6168)] = 220626, + [SMALL_STATE(6169)] = 220640, + [SMALL_STATE(6170)] = 220656, + [SMALL_STATE(6171)] = 220672, + [SMALL_STATE(6172)] = 220688, + [SMALL_STATE(6173)] = 220704, + [SMALL_STATE(6174)] = 220720, + [SMALL_STATE(6175)] = 220736, + [SMALL_STATE(6176)] = 220752, + [SMALL_STATE(6177)] = 220768, + [SMALL_STATE(6178)] = 220784, + [SMALL_STATE(6179)] = 220800, + [SMALL_STATE(6180)] = 220814, + [SMALL_STATE(6181)] = 220828, + [SMALL_STATE(6182)] = 220842, + [SMALL_STATE(6183)] = 220858, + [SMALL_STATE(6184)] = 220871, + [SMALL_STATE(6185)] = 220884, + [SMALL_STATE(6186)] = 220897, + [SMALL_STATE(6187)] = 220910, + [SMALL_STATE(6188)] = 220923, + [SMALL_STATE(6189)] = 220936, + [SMALL_STATE(6190)] = 220949, + [SMALL_STATE(6191)] = 220962, + [SMALL_STATE(6192)] = 220973, + [SMALL_STATE(6193)] = 220984, + [SMALL_STATE(6194)] = 220997, + [SMALL_STATE(6195)] = 221010, + [SMALL_STATE(6196)] = 221023, + [SMALL_STATE(6197)] = 221036, + [SMALL_STATE(6198)] = 221049, + [SMALL_STATE(6199)] = 221062, + [SMALL_STATE(6200)] = 221075, + [SMALL_STATE(6201)] = 221088, + [SMALL_STATE(6202)] = 221101, + [SMALL_STATE(6203)] = 221114, + [SMALL_STATE(6204)] = 221127, + [SMALL_STATE(6205)] = 221140, + [SMALL_STATE(6206)] = 221149, + [SMALL_STATE(6207)] = 221158, + [SMALL_STATE(6208)] = 221171, + [SMALL_STATE(6209)] = 221182, + [SMALL_STATE(6210)] = 221195, + [SMALL_STATE(6211)] = 221206, + [SMALL_STATE(6212)] = 221219, + [SMALL_STATE(6213)] = 221232, + [SMALL_STATE(6214)] = 221245, + [SMALL_STATE(6215)] = 221256, + [SMALL_STATE(6216)] = 221269, + [SMALL_STATE(6217)] = 221282, + [SMALL_STATE(6218)] = 221295, + [SMALL_STATE(6219)] = 221308, + [SMALL_STATE(6220)] = 221321, + [SMALL_STATE(6221)] = 221334, + [SMALL_STATE(6222)] = 221347, + [SMALL_STATE(6223)] = 221358, + [SMALL_STATE(6224)] = 221369, + [SMALL_STATE(6225)] = 221382, + [SMALL_STATE(6226)] = 221395, + [SMALL_STATE(6227)] = 221408, + [SMALL_STATE(6228)] = 221421, + [SMALL_STATE(6229)] = 221434, + [SMALL_STATE(6230)] = 221447, + [SMALL_STATE(6231)] = 221460, + [SMALL_STATE(6232)] = 221473, + [SMALL_STATE(6233)] = 221486, + [SMALL_STATE(6234)] = 221499, + [SMALL_STATE(6235)] = 221508, + [SMALL_STATE(6236)] = 221521, + [SMALL_STATE(6237)] = 221534, + [SMALL_STATE(6238)] = 221545, + [SMALL_STATE(6239)] = 221558, + [SMALL_STATE(6240)] = 221569, + [SMALL_STATE(6241)] = 221578, + [SMALL_STATE(6242)] = 221591, + [SMALL_STATE(6243)] = 221604, + [SMALL_STATE(6244)] = 221617, + [SMALL_STATE(6245)] = 221626, + [SMALL_STATE(6246)] = 221639, + [SMALL_STATE(6247)] = 221652, + [SMALL_STATE(6248)] = 221665, + [SMALL_STATE(6249)] = 221678, + [SMALL_STATE(6250)] = 221691, + [SMALL_STATE(6251)] = 221700, + [SMALL_STATE(6252)] = 221713, + [SMALL_STATE(6253)] = 221726, + [SMALL_STATE(6254)] = 221739, + [SMALL_STATE(6255)] = 221752, + [SMALL_STATE(6256)] = 221765, + [SMALL_STATE(6257)] = 221776, + [SMALL_STATE(6258)] = 221789, + [SMALL_STATE(6259)] = 221802, + [SMALL_STATE(6260)] = 221815, + [SMALL_STATE(6261)] = 221828, + [SMALL_STATE(6262)] = 221841, + [SMALL_STATE(6263)] = 221854, + [SMALL_STATE(6264)] = 221867, + [SMALL_STATE(6265)] = 221880, + [SMALL_STATE(6266)] = 221893, + [SMALL_STATE(6267)] = 221906, + [SMALL_STATE(6268)] = 221919, + [SMALL_STATE(6269)] = 221932, + [SMALL_STATE(6270)] = 221945, + [SMALL_STATE(6271)] = 221958, + [SMALL_STATE(6272)] = 221971, + [SMALL_STATE(6273)] = 221984, + [SMALL_STATE(6274)] = 221997, + [SMALL_STATE(6275)] = 222010, + [SMALL_STATE(6276)] = 222023, + [SMALL_STATE(6277)] = 222036, + [SMALL_STATE(6278)] = 222049, + [SMALL_STATE(6279)] = 222062, + [SMALL_STATE(6280)] = 222075, + [SMALL_STATE(6281)] = 222088, + [SMALL_STATE(6282)] = 222099, + [SMALL_STATE(6283)] = 222112, + [SMALL_STATE(6284)] = 222123, + [SMALL_STATE(6285)] = 222136, + [SMALL_STATE(6286)] = 222147, + [SMALL_STATE(6287)] = 222160, + [SMALL_STATE(6288)] = 222173, + [SMALL_STATE(6289)] = 222184, + [SMALL_STATE(6290)] = 222197, + [SMALL_STATE(6291)] = 222210, + [SMALL_STATE(6292)] = 222223, + [SMALL_STATE(6293)] = 222236, + [SMALL_STATE(6294)] = 222249, + [SMALL_STATE(6295)] = 222262, + [SMALL_STATE(6296)] = 222275, + [SMALL_STATE(6297)] = 222288, + [SMALL_STATE(6298)] = 222301, + [SMALL_STATE(6299)] = 222314, + [SMALL_STATE(6300)] = 222327, + [SMALL_STATE(6301)] = 222340, + [SMALL_STATE(6302)] = 222353, + [SMALL_STATE(6303)] = 222366, + [SMALL_STATE(6304)] = 222379, + [SMALL_STATE(6305)] = 222392, + [SMALL_STATE(6306)] = 222405, + [SMALL_STATE(6307)] = 222418, + [SMALL_STATE(6308)] = 222431, + [SMALL_STATE(6309)] = 222444, + [SMALL_STATE(6310)] = 222457, + [SMALL_STATE(6311)] = 222470, + [SMALL_STATE(6312)] = 222483, + [SMALL_STATE(6313)] = 222496, + [SMALL_STATE(6314)] = 222509, + [SMALL_STATE(6315)] = 222522, + [SMALL_STATE(6316)] = 222535, + [SMALL_STATE(6317)] = 222546, + [SMALL_STATE(6318)] = 222559, + [SMALL_STATE(6319)] = 222572, + [SMALL_STATE(6320)] = 222585, + [SMALL_STATE(6321)] = 222598, + [SMALL_STATE(6322)] = 222609, + [SMALL_STATE(6323)] = 222618, + [SMALL_STATE(6324)] = 222631, + [SMALL_STATE(6325)] = 222642, + [SMALL_STATE(6326)] = 222655, + [SMALL_STATE(6327)] = 222664, + [SMALL_STATE(6328)] = 222675, + [SMALL_STATE(6329)] = 222686, + [SMALL_STATE(6330)] = 222699, + [SMALL_STATE(6331)] = 222712, + [SMALL_STATE(6332)] = 222725, + [SMALL_STATE(6333)] = 222738, + [SMALL_STATE(6334)] = 222751, + [SMALL_STATE(6335)] = 222764, + [SMALL_STATE(6336)] = 222777, + [SMALL_STATE(6337)] = 222790, + [SMALL_STATE(6338)] = 222803, + [SMALL_STATE(6339)] = 222816, + [SMALL_STATE(6340)] = 222829, + [SMALL_STATE(6341)] = 222842, + [SMALL_STATE(6342)] = 222855, + [SMALL_STATE(6343)] = 222868, + [SMALL_STATE(6344)] = 222881, + [SMALL_STATE(6345)] = 222892, + [SMALL_STATE(6346)] = 222905, + [SMALL_STATE(6347)] = 222918, + [SMALL_STATE(6348)] = 222931, + [SMALL_STATE(6349)] = 222944, + [SMALL_STATE(6350)] = 222957, + [SMALL_STATE(6351)] = 222970, + [SMALL_STATE(6352)] = 222981, + [SMALL_STATE(6353)] = 222994, + [SMALL_STATE(6354)] = 223005, + [SMALL_STATE(6355)] = 223018, + [SMALL_STATE(6356)] = 223031, + [SMALL_STATE(6357)] = 223044, + [SMALL_STATE(6358)] = 223057, + [SMALL_STATE(6359)] = 223070, + [SMALL_STATE(6360)] = 223083, + [SMALL_STATE(6361)] = 223096, + [SMALL_STATE(6362)] = 223109, + [SMALL_STATE(6363)] = 223120, + [SMALL_STATE(6364)] = 223133, + [SMALL_STATE(6365)] = 223146, + [SMALL_STATE(6366)] = 223159, + [SMALL_STATE(6367)] = 223170, + [SMALL_STATE(6368)] = 223183, + [SMALL_STATE(6369)] = 223194, + [SMALL_STATE(6370)] = 223207, + [SMALL_STATE(6371)] = 223220, + [SMALL_STATE(6372)] = 223231, + [SMALL_STATE(6373)] = 223244, + [SMALL_STATE(6374)] = 223257, + [SMALL_STATE(6375)] = 223270, + [SMALL_STATE(6376)] = 223283, + [SMALL_STATE(6377)] = 223296, + [SMALL_STATE(6378)] = 223309, + [SMALL_STATE(6379)] = 223322, + [SMALL_STATE(6380)] = 223335, + [SMALL_STATE(6381)] = 223348, + [SMALL_STATE(6382)] = 223361, + [SMALL_STATE(6383)] = 223374, + [SMALL_STATE(6384)] = 223387, + [SMALL_STATE(6385)] = 223400, + [SMALL_STATE(6386)] = 223413, + [SMALL_STATE(6387)] = 223426, + [SMALL_STATE(6388)] = 223439, + [SMALL_STATE(6389)] = 223452, + [SMALL_STATE(6390)] = 223465, + [SMALL_STATE(6391)] = 223478, + [SMALL_STATE(6392)] = 223491, + [SMALL_STATE(6393)] = 223504, + [SMALL_STATE(6394)] = 223517, + [SMALL_STATE(6395)] = 223530, + [SMALL_STATE(6396)] = 223541, + [SMALL_STATE(6397)] = 223554, + [SMALL_STATE(6398)] = 223567, + [SMALL_STATE(6399)] = 223580, + [SMALL_STATE(6400)] = 223593, + [SMALL_STATE(6401)] = 223606, + [SMALL_STATE(6402)] = 223619, + [SMALL_STATE(6403)] = 223632, + [SMALL_STATE(6404)] = 223645, + [SMALL_STATE(6405)] = 223658, + [SMALL_STATE(6406)] = 223671, + [SMALL_STATE(6407)] = 223684, + [SMALL_STATE(6408)] = 223693, + [SMALL_STATE(6409)] = 223706, + [SMALL_STATE(6410)] = 223719, + [SMALL_STATE(6411)] = 223728, + [SMALL_STATE(6412)] = 223741, + [SMALL_STATE(6413)] = 223754, + [SMALL_STATE(6414)] = 223767, + [SMALL_STATE(6415)] = 223780, + [SMALL_STATE(6416)] = 223793, + [SMALL_STATE(6417)] = 223806, + [SMALL_STATE(6418)] = 223819, + [SMALL_STATE(6419)] = 223832, + [SMALL_STATE(6420)] = 223845, + [SMALL_STATE(6421)] = 223858, + [SMALL_STATE(6422)] = 223871, + [SMALL_STATE(6423)] = 223884, + [SMALL_STATE(6424)] = 223895, + [SMALL_STATE(6425)] = 223908, + [SMALL_STATE(6426)] = 223921, + [SMALL_STATE(6427)] = 223934, + [SMALL_STATE(6428)] = 223947, + [SMALL_STATE(6429)] = 223960, + [SMALL_STATE(6430)] = 223973, + [SMALL_STATE(6431)] = 223984, + [SMALL_STATE(6432)] = 223997, + [SMALL_STATE(6433)] = 224010, + [SMALL_STATE(6434)] = 224023, + [SMALL_STATE(6435)] = 224036, + [SMALL_STATE(6436)] = 224049, + [SMALL_STATE(6437)] = 224062, + [SMALL_STATE(6438)] = 224075, + [SMALL_STATE(6439)] = 224088, + [SMALL_STATE(6440)] = 224101, + [SMALL_STATE(6441)] = 224114, + [SMALL_STATE(6442)] = 224127, + [SMALL_STATE(6443)] = 224140, + [SMALL_STATE(6444)] = 224153, + [SMALL_STATE(6445)] = 224164, + [SMALL_STATE(6446)] = 224177, + [SMALL_STATE(6447)] = 224190, + [SMALL_STATE(6448)] = 224203, + [SMALL_STATE(6449)] = 224216, + [SMALL_STATE(6450)] = 224229, + [SMALL_STATE(6451)] = 224242, + [SMALL_STATE(6452)] = 224255, + [SMALL_STATE(6453)] = 224268, + [SMALL_STATE(6454)] = 224281, + [SMALL_STATE(6455)] = 224294, + [SMALL_STATE(6456)] = 224307, + [SMALL_STATE(6457)] = 224320, + [SMALL_STATE(6458)] = 224331, + [SMALL_STATE(6459)] = 224342, + [SMALL_STATE(6460)] = 224353, + [SMALL_STATE(6461)] = 224366, + [SMALL_STATE(6462)] = 224375, + [SMALL_STATE(6463)] = 224388, + [SMALL_STATE(6464)] = 224401, + [SMALL_STATE(6465)] = 224414, + [SMALL_STATE(6466)] = 224423, + [SMALL_STATE(6467)] = 224436, + [SMALL_STATE(6468)] = 224447, + [SMALL_STATE(6469)] = 224460, + [SMALL_STATE(6470)] = 224473, + [SMALL_STATE(6471)] = 224486, + [SMALL_STATE(6472)] = 224499, + [SMALL_STATE(6473)] = 224512, + [SMALL_STATE(6474)] = 224525, + [SMALL_STATE(6475)] = 224538, + [SMALL_STATE(6476)] = 224551, + [SMALL_STATE(6477)] = 224564, + [SMALL_STATE(6478)] = 224577, + [SMALL_STATE(6479)] = 224590, + [SMALL_STATE(6480)] = 224603, + [SMALL_STATE(6481)] = 224612, + [SMALL_STATE(6482)] = 224625, + [SMALL_STATE(6483)] = 224638, + [SMALL_STATE(6484)] = 224651, + [SMALL_STATE(6485)] = 224664, + [SMALL_STATE(6486)] = 224677, + [SMALL_STATE(6487)] = 224690, + [SMALL_STATE(6488)] = 224703, + [SMALL_STATE(6489)] = 224716, + [SMALL_STATE(6490)] = 224729, + [SMALL_STATE(6491)] = 224742, + [SMALL_STATE(6492)] = 224753, + [SMALL_STATE(6493)] = 224766, + [SMALL_STATE(6494)] = 224779, + [SMALL_STATE(6495)] = 224792, + [SMALL_STATE(6496)] = 224805, + [SMALL_STATE(6497)] = 224818, + [SMALL_STATE(6498)] = 224831, + [SMALL_STATE(6499)] = 224844, + [SMALL_STATE(6500)] = 224857, + [SMALL_STATE(6501)] = 224870, + [SMALL_STATE(6502)] = 224883, + [SMALL_STATE(6503)] = 224896, + [SMALL_STATE(6504)] = 224909, + [SMALL_STATE(6505)] = 224922, + [SMALL_STATE(6506)] = 224935, + [SMALL_STATE(6507)] = 224948, + [SMALL_STATE(6508)] = 224961, + [SMALL_STATE(6509)] = 224972, + [SMALL_STATE(6510)] = 224985, + [SMALL_STATE(6511)] = 224998, + [SMALL_STATE(6512)] = 225011, + [SMALL_STATE(6513)] = 225024, + [SMALL_STATE(6514)] = 225037, + [SMALL_STATE(6515)] = 225050, + [SMALL_STATE(6516)] = 225063, + [SMALL_STATE(6517)] = 225076, + [SMALL_STATE(6518)] = 225087, + [SMALL_STATE(6519)] = 225100, + [SMALL_STATE(6520)] = 225113, + [SMALL_STATE(6521)] = 225126, + [SMALL_STATE(6522)] = 225139, + [SMALL_STATE(6523)] = 225152, + [SMALL_STATE(6524)] = 225165, + [SMALL_STATE(6525)] = 225178, + [SMALL_STATE(6526)] = 225189, + [SMALL_STATE(6527)] = 225202, + [SMALL_STATE(6528)] = 225215, + [SMALL_STATE(6529)] = 225228, + [SMALL_STATE(6530)] = 225241, + [SMALL_STATE(6531)] = 225254, + [SMALL_STATE(6532)] = 225267, + [SMALL_STATE(6533)] = 225276, + [SMALL_STATE(6534)] = 225289, + [SMALL_STATE(6535)] = 225302, + [SMALL_STATE(6536)] = 225313, + [SMALL_STATE(6537)] = 225326, + [SMALL_STATE(6538)] = 225339, + [SMALL_STATE(6539)] = 225352, + [SMALL_STATE(6540)] = 225365, + [SMALL_STATE(6541)] = 225378, + [SMALL_STATE(6542)] = 225391, + [SMALL_STATE(6543)] = 225404, + [SMALL_STATE(6544)] = 225417, + [SMALL_STATE(6545)] = 225430, + [SMALL_STATE(6546)] = 225443, + [SMALL_STATE(6547)] = 225456, + [SMALL_STATE(6548)] = 225469, + [SMALL_STATE(6549)] = 225480, + [SMALL_STATE(6550)] = 225493, + [SMALL_STATE(6551)] = 225506, + [SMALL_STATE(6552)] = 225519, + [SMALL_STATE(6553)] = 225532, + [SMALL_STATE(6554)] = 225545, + [SMALL_STATE(6555)] = 225558, + [SMALL_STATE(6556)] = 225571, + [SMALL_STATE(6557)] = 225584, + [SMALL_STATE(6558)] = 225597, + [SMALL_STATE(6559)] = 225610, + [SMALL_STATE(6560)] = 225623, + [SMALL_STATE(6561)] = 225636, + [SMALL_STATE(6562)] = 225649, + [SMALL_STATE(6563)] = 225662, + [SMALL_STATE(6564)] = 225675, + [SMALL_STATE(6565)] = 225688, + [SMALL_STATE(6566)] = 225701, + [SMALL_STATE(6567)] = 225714, + [SMALL_STATE(6568)] = 225725, + [SMALL_STATE(6569)] = 225738, + [SMALL_STATE(6570)] = 225751, + [SMALL_STATE(6571)] = 225764, + [SMALL_STATE(6572)] = 225777, + [SMALL_STATE(6573)] = 225786, + [SMALL_STATE(6574)] = 225799, + [SMALL_STATE(6575)] = 225812, + [SMALL_STATE(6576)] = 225825, + [SMALL_STATE(6577)] = 225838, + [SMALL_STATE(6578)] = 225851, + [SMALL_STATE(6579)] = 225864, + [SMALL_STATE(6580)] = 225877, + [SMALL_STATE(6581)] = 225890, + [SMALL_STATE(6582)] = 225903, + [SMALL_STATE(6583)] = 225914, + [SMALL_STATE(6584)] = 225927, + [SMALL_STATE(6585)] = 225940, + [SMALL_STATE(6586)] = 225951, + [SMALL_STATE(6587)] = 225964, + [SMALL_STATE(6588)] = 225977, + [SMALL_STATE(6589)] = 225990, + [SMALL_STATE(6590)] = 226003, + [SMALL_STATE(6591)] = 226016, + [SMALL_STATE(6592)] = 226029, + [SMALL_STATE(6593)] = 226042, + [SMALL_STATE(6594)] = 226055, + [SMALL_STATE(6595)] = 226068, + [SMALL_STATE(6596)] = 226078, + [SMALL_STATE(6597)] = 226086, + [SMALL_STATE(6598)] = 226096, + [SMALL_STATE(6599)] = 226106, + [SMALL_STATE(6600)] = 226116, + [SMALL_STATE(6601)] = 226126, + [SMALL_STATE(6602)] = 226136, + [SMALL_STATE(6603)] = 226144, + [SMALL_STATE(6604)] = 226154, + [SMALL_STATE(6605)] = 226164, + [SMALL_STATE(6606)] = 226174, + [SMALL_STATE(6607)] = 226184, + [SMALL_STATE(6608)] = 226194, + [SMALL_STATE(6609)] = 226204, + [SMALL_STATE(6610)] = 226214, + [SMALL_STATE(6611)] = 226224, + [SMALL_STATE(6612)] = 226232, + [SMALL_STATE(6613)] = 226242, + [SMALL_STATE(6614)] = 226252, + [SMALL_STATE(6615)] = 226262, + [SMALL_STATE(6616)] = 226272, + [SMALL_STATE(6617)] = 226282, + [SMALL_STATE(6618)] = 226290, + [SMALL_STATE(6619)] = 226300, + [SMALL_STATE(6620)] = 226310, + [SMALL_STATE(6621)] = 226320, + [SMALL_STATE(6622)] = 226330, + [SMALL_STATE(6623)] = 226340, + [SMALL_STATE(6624)] = 226350, + [SMALL_STATE(6625)] = 226360, + [SMALL_STATE(6626)] = 226370, + [SMALL_STATE(6627)] = 226380, + [SMALL_STATE(6628)] = 226390, + [SMALL_STATE(6629)] = 226400, + [SMALL_STATE(6630)] = 226410, + [SMALL_STATE(6631)] = 226420, + [SMALL_STATE(6632)] = 226430, + [SMALL_STATE(6633)] = 226440, + [SMALL_STATE(6634)] = 226450, + [SMALL_STATE(6635)] = 226458, + [SMALL_STATE(6636)] = 226466, + [SMALL_STATE(6637)] = 226476, + [SMALL_STATE(6638)] = 226486, + [SMALL_STATE(6639)] = 226496, + [SMALL_STATE(6640)] = 226506, + [SMALL_STATE(6641)] = 226516, + [SMALL_STATE(6642)] = 226526, + [SMALL_STATE(6643)] = 226536, + [SMALL_STATE(6644)] = 226546, + [SMALL_STATE(6645)] = 226556, + [SMALL_STATE(6646)] = 226564, + [SMALL_STATE(6647)] = 226574, + [SMALL_STATE(6648)] = 226584, + [SMALL_STATE(6649)] = 226594, + [SMALL_STATE(6650)] = 226604, + [SMALL_STATE(6651)] = 226614, + [SMALL_STATE(6652)] = 226622, + [SMALL_STATE(6653)] = 226632, + [SMALL_STATE(6654)] = 226642, + [SMALL_STATE(6655)] = 226652, + [SMALL_STATE(6656)] = 226660, + [SMALL_STATE(6657)] = 226670, + [SMALL_STATE(6658)] = 226678, + [SMALL_STATE(6659)] = 226686, + [SMALL_STATE(6660)] = 226696, + [SMALL_STATE(6661)] = 226706, + [SMALL_STATE(6662)] = 226716, + [SMALL_STATE(6663)] = 226726, + [SMALL_STATE(6664)] = 226736, + [SMALL_STATE(6665)] = 226746, + [SMALL_STATE(6666)] = 226756, + [SMALL_STATE(6667)] = 226766, + [SMALL_STATE(6668)] = 226776, + [SMALL_STATE(6669)] = 226786, + [SMALL_STATE(6670)] = 226796, + [SMALL_STATE(6671)] = 226806, + [SMALL_STATE(6672)] = 226816, + [SMALL_STATE(6673)] = 226824, + [SMALL_STATE(6674)] = 226834, + [SMALL_STATE(6675)] = 226844, + [SMALL_STATE(6676)] = 226854, + [SMALL_STATE(6677)] = 226864, + [SMALL_STATE(6678)] = 226872, + [SMALL_STATE(6679)] = 226882, + [SMALL_STATE(6680)] = 226892, + [SMALL_STATE(6681)] = 226902, + [SMALL_STATE(6682)] = 226912, + [SMALL_STATE(6683)] = 226922, + [SMALL_STATE(6684)] = 226932, + [SMALL_STATE(6685)] = 226940, + [SMALL_STATE(6686)] = 226948, + [SMALL_STATE(6687)] = 226958, + [SMALL_STATE(6688)] = 226968, + [SMALL_STATE(6689)] = 226978, + [SMALL_STATE(6690)] = 226988, + [SMALL_STATE(6691)] = 226996, + [SMALL_STATE(6692)] = 227006, + [SMALL_STATE(6693)] = 227016, + [SMALL_STATE(6694)] = 227026, + [SMALL_STATE(6695)] = 227034, + [SMALL_STATE(6696)] = 227044, + [SMALL_STATE(6697)] = 227054, + [SMALL_STATE(6698)] = 227062, + [SMALL_STATE(6699)] = 227072, + [SMALL_STATE(6700)] = 227082, + [SMALL_STATE(6701)] = 227092, + [SMALL_STATE(6702)] = 227102, + [SMALL_STATE(6703)] = 227112, + [SMALL_STATE(6704)] = 227122, + [SMALL_STATE(6705)] = 227132, + [SMALL_STATE(6706)] = 227142, + [SMALL_STATE(6707)] = 227152, + [SMALL_STATE(6708)] = 227162, + [SMALL_STATE(6709)] = 227172, + [SMALL_STATE(6710)] = 227182, + [SMALL_STATE(6711)] = 227192, + [SMALL_STATE(6712)] = 227200, + [SMALL_STATE(6713)] = 227210, + [SMALL_STATE(6714)] = 227220, + [SMALL_STATE(6715)] = 227228, + [SMALL_STATE(6716)] = 227238, + [SMALL_STATE(6717)] = 227248, + [SMALL_STATE(6718)] = 227258, + [SMALL_STATE(6719)] = 227268, + [SMALL_STATE(6720)] = 227278, + [SMALL_STATE(6721)] = 227288, + [SMALL_STATE(6722)] = 227298, + [SMALL_STATE(6723)] = 227308, + [SMALL_STATE(6724)] = 227318, + [SMALL_STATE(6725)] = 227328, + [SMALL_STATE(6726)] = 227338, + [SMALL_STATE(6727)] = 227348, + [SMALL_STATE(6728)] = 227358, + [SMALL_STATE(6729)] = 227366, + [SMALL_STATE(6730)] = 227376, + [SMALL_STATE(6731)] = 227386, + [SMALL_STATE(6732)] = 227396, + [SMALL_STATE(6733)] = 227406, + [SMALL_STATE(6734)] = 227416, + [SMALL_STATE(6735)] = 227426, + [SMALL_STATE(6736)] = 227436, + [SMALL_STATE(6737)] = 227444, + [SMALL_STATE(6738)] = 227454, + [SMALL_STATE(6739)] = 227464, + [SMALL_STATE(6740)] = 227474, + [SMALL_STATE(6741)] = 227484, + [SMALL_STATE(6742)] = 227494, + [SMALL_STATE(6743)] = 227504, + [SMALL_STATE(6744)] = 227514, + [SMALL_STATE(6745)] = 227524, + [SMALL_STATE(6746)] = 227534, + [SMALL_STATE(6747)] = 227544, + [SMALL_STATE(6748)] = 227554, + [SMALL_STATE(6749)] = 227564, + [SMALL_STATE(6750)] = 227574, + [SMALL_STATE(6751)] = 227584, + [SMALL_STATE(6752)] = 227594, + [SMALL_STATE(6753)] = 227604, + [SMALL_STATE(6754)] = 227614, + [SMALL_STATE(6755)] = 227624, + [SMALL_STATE(6756)] = 227634, + [SMALL_STATE(6757)] = 227644, + [SMALL_STATE(6758)] = 227654, + [SMALL_STATE(6759)] = 227664, + [SMALL_STATE(6760)] = 227674, + [SMALL_STATE(6761)] = 227684, + [SMALL_STATE(6762)] = 227694, + [SMALL_STATE(6763)] = 227704, + [SMALL_STATE(6764)] = 227714, + [SMALL_STATE(6765)] = 227724, + [SMALL_STATE(6766)] = 227734, + [SMALL_STATE(6767)] = 227744, + [SMALL_STATE(6768)] = 227754, + [SMALL_STATE(6769)] = 227764, + [SMALL_STATE(6770)] = 227774, + [SMALL_STATE(6771)] = 227784, + [SMALL_STATE(6772)] = 227794, + [SMALL_STATE(6773)] = 227804, + [SMALL_STATE(6774)] = 227814, + [SMALL_STATE(6775)] = 227824, + [SMALL_STATE(6776)] = 227834, + [SMALL_STATE(6777)] = 227844, + [SMALL_STATE(6778)] = 227854, + [SMALL_STATE(6779)] = 227862, + [SMALL_STATE(6780)] = 227872, + [SMALL_STATE(6781)] = 227882, + [SMALL_STATE(6782)] = 227892, + [SMALL_STATE(6783)] = 227900, + [SMALL_STATE(6784)] = 227910, + [SMALL_STATE(6785)] = 227920, + [SMALL_STATE(6786)] = 227930, + [SMALL_STATE(6787)] = 227940, + [SMALL_STATE(6788)] = 227950, + [SMALL_STATE(6789)] = 227960, + [SMALL_STATE(6790)] = 227970, + [SMALL_STATE(6791)] = 227978, + [SMALL_STATE(6792)] = 227988, + [SMALL_STATE(6793)] = 227998, + [SMALL_STATE(6794)] = 228008, + [SMALL_STATE(6795)] = 228016, + [SMALL_STATE(6796)] = 228026, + [SMALL_STATE(6797)] = 228036, + [SMALL_STATE(6798)] = 228046, + [SMALL_STATE(6799)] = 228056, + [SMALL_STATE(6800)] = 228066, + [SMALL_STATE(6801)] = 228074, + [SMALL_STATE(6802)] = 228084, + [SMALL_STATE(6803)] = 228092, + [SMALL_STATE(6804)] = 228100, + [SMALL_STATE(6805)] = 228110, + [SMALL_STATE(6806)] = 228120, + [SMALL_STATE(6807)] = 228130, + [SMALL_STATE(6808)] = 228140, + [SMALL_STATE(6809)] = 228150, + [SMALL_STATE(6810)] = 228160, + [SMALL_STATE(6811)] = 228170, + [SMALL_STATE(6812)] = 228180, + [SMALL_STATE(6813)] = 228190, + [SMALL_STATE(6814)] = 228200, + [SMALL_STATE(6815)] = 228210, + [SMALL_STATE(6816)] = 228220, + [SMALL_STATE(6817)] = 228230, + [SMALL_STATE(6818)] = 228240, + [SMALL_STATE(6819)] = 228250, + [SMALL_STATE(6820)] = 228260, + [SMALL_STATE(6821)] = 228270, + [SMALL_STATE(6822)] = 228280, + [SMALL_STATE(6823)] = 228290, + [SMALL_STATE(6824)] = 228300, + [SMALL_STATE(6825)] = 228310, + [SMALL_STATE(6826)] = 228320, + [SMALL_STATE(6827)] = 228330, + [SMALL_STATE(6828)] = 228340, + [SMALL_STATE(6829)] = 228350, + [SMALL_STATE(6830)] = 228360, + [SMALL_STATE(6831)] = 228370, + [SMALL_STATE(6832)] = 228380, + [SMALL_STATE(6833)] = 228390, + [SMALL_STATE(6834)] = 228400, + [SMALL_STATE(6835)] = 228410, + [SMALL_STATE(6836)] = 228420, + [SMALL_STATE(6837)] = 228430, + [SMALL_STATE(6838)] = 228438, + [SMALL_STATE(6839)] = 228448, + [SMALL_STATE(6840)] = 228458, + [SMALL_STATE(6841)] = 228466, + [SMALL_STATE(6842)] = 228476, + [SMALL_STATE(6843)] = 228484, + [SMALL_STATE(6844)] = 228494, + [SMALL_STATE(6845)] = 228504, + [SMALL_STATE(6846)] = 228512, + [SMALL_STATE(6847)] = 228522, + [SMALL_STATE(6848)] = 228532, + [SMALL_STATE(6849)] = 228540, + [SMALL_STATE(6850)] = 228550, + [SMALL_STATE(6851)] = 228560, + [SMALL_STATE(6852)] = 228570, + [SMALL_STATE(6853)] = 228580, + [SMALL_STATE(6854)] = 228590, + [SMALL_STATE(6855)] = 228600, + [SMALL_STATE(6856)] = 228610, + [SMALL_STATE(6857)] = 228620, + [SMALL_STATE(6858)] = 228630, + [SMALL_STATE(6859)] = 228640, + [SMALL_STATE(6860)] = 228650, + [SMALL_STATE(6861)] = 228660, + [SMALL_STATE(6862)] = 228670, + [SMALL_STATE(6863)] = 228680, + [SMALL_STATE(6864)] = 228688, + [SMALL_STATE(6865)] = 228698, + [SMALL_STATE(6866)] = 228708, + [SMALL_STATE(6867)] = 228716, + [SMALL_STATE(6868)] = 228726, + [SMALL_STATE(6869)] = 228736, + [SMALL_STATE(6870)] = 228746, + [SMALL_STATE(6871)] = 228754, + [SMALL_STATE(6872)] = 228762, + [SMALL_STATE(6873)] = 228772, + [SMALL_STATE(6874)] = 228782, + [SMALL_STATE(6875)] = 228790, + [SMALL_STATE(6876)] = 228800, + [SMALL_STATE(6877)] = 228810, + [SMALL_STATE(6878)] = 228820, + [SMALL_STATE(6879)] = 228830, + [SMALL_STATE(6880)] = 228840, + [SMALL_STATE(6881)] = 228850, + [SMALL_STATE(6882)] = 228858, + [SMALL_STATE(6883)] = 228868, + [SMALL_STATE(6884)] = 228878, + [SMALL_STATE(6885)] = 228888, + [SMALL_STATE(6886)] = 228898, + [SMALL_STATE(6887)] = 228908, + [SMALL_STATE(6888)] = 228918, + [SMALL_STATE(6889)] = 228928, + [SMALL_STATE(6890)] = 228938, + [SMALL_STATE(6891)] = 228948, + [SMALL_STATE(6892)] = 228958, + [SMALL_STATE(6893)] = 228968, + [SMALL_STATE(6894)] = 228978, + [SMALL_STATE(6895)] = 228988, + [SMALL_STATE(6896)] = 228998, + [SMALL_STATE(6897)] = 229008, + [SMALL_STATE(6898)] = 229018, + [SMALL_STATE(6899)] = 229028, + [SMALL_STATE(6900)] = 229038, + [SMALL_STATE(6901)] = 229048, + [SMALL_STATE(6902)] = 229058, + [SMALL_STATE(6903)] = 229068, + [SMALL_STATE(6904)] = 229078, + [SMALL_STATE(6905)] = 229088, + [SMALL_STATE(6906)] = 229096, + [SMALL_STATE(6907)] = 229106, + [SMALL_STATE(6908)] = 229114, + [SMALL_STATE(6909)] = 229124, + [SMALL_STATE(6910)] = 229134, + [SMALL_STATE(6911)] = 229144, + [SMALL_STATE(6912)] = 229154, + [SMALL_STATE(6913)] = 229162, + [SMALL_STATE(6914)] = 229172, + [SMALL_STATE(6915)] = 229182, + [SMALL_STATE(6916)] = 229190, + [SMALL_STATE(6917)] = 229200, + [SMALL_STATE(6918)] = 229208, + [SMALL_STATE(6919)] = 229218, + [SMALL_STATE(6920)] = 229228, + [SMALL_STATE(6921)] = 229238, + [SMALL_STATE(6922)] = 229248, + [SMALL_STATE(6923)] = 229258, + [SMALL_STATE(6924)] = 229268, + [SMALL_STATE(6925)] = 229278, + [SMALL_STATE(6926)] = 229286, + [SMALL_STATE(6927)] = 229296, + [SMALL_STATE(6928)] = 229306, + [SMALL_STATE(6929)] = 229316, + [SMALL_STATE(6930)] = 229326, + [SMALL_STATE(6931)] = 229336, + [SMALL_STATE(6932)] = 229346, + [SMALL_STATE(6933)] = 229356, + [SMALL_STATE(6934)] = 229366, + [SMALL_STATE(6935)] = 229376, + [SMALL_STATE(6936)] = 229386, + [SMALL_STATE(6937)] = 229396, + [SMALL_STATE(6938)] = 229406, + [SMALL_STATE(6939)] = 229416, + [SMALL_STATE(6940)] = 229426, + [SMALL_STATE(6941)] = 229436, + [SMALL_STATE(6942)] = 229446, + [SMALL_STATE(6943)] = 229456, + [SMALL_STATE(6944)] = 229466, + [SMALL_STATE(6945)] = 229476, + [SMALL_STATE(6946)] = 229486, + [SMALL_STATE(6947)] = 229496, + [SMALL_STATE(6948)] = 229506, + [SMALL_STATE(6949)] = 229516, + [SMALL_STATE(6950)] = 229526, + [SMALL_STATE(6951)] = 229536, + [SMALL_STATE(6952)] = 229546, + [SMALL_STATE(6953)] = 229556, + [SMALL_STATE(6954)] = 229566, + [SMALL_STATE(6955)] = 229576, + [SMALL_STATE(6956)] = 229586, + [SMALL_STATE(6957)] = 229594, + [SMALL_STATE(6958)] = 229604, + [SMALL_STATE(6959)] = 229611, + [SMALL_STATE(6960)] = 229618, + [SMALL_STATE(6961)] = 229625, + [SMALL_STATE(6962)] = 229632, + [SMALL_STATE(6963)] = 229639, + [SMALL_STATE(6964)] = 229646, + [SMALL_STATE(6965)] = 229653, + [SMALL_STATE(6966)] = 229660, + [SMALL_STATE(6967)] = 229667, + [SMALL_STATE(6968)] = 229674, + [SMALL_STATE(6969)] = 229681, + [SMALL_STATE(6970)] = 229688, + [SMALL_STATE(6971)] = 229695, + [SMALL_STATE(6972)] = 229702, + [SMALL_STATE(6973)] = 229709, + [SMALL_STATE(6974)] = 229716, + [SMALL_STATE(6975)] = 229723, + [SMALL_STATE(6976)] = 229730, + [SMALL_STATE(6977)] = 229737, + [SMALL_STATE(6978)] = 229744, + [SMALL_STATE(6979)] = 229751, + [SMALL_STATE(6980)] = 229758, + [SMALL_STATE(6981)] = 229765, + [SMALL_STATE(6982)] = 229772, + [SMALL_STATE(6983)] = 229779, + [SMALL_STATE(6984)] = 229786, + [SMALL_STATE(6985)] = 229793, + [SMALL_STATE(6986)] = 229800, + [SMALL_STATE(6987)] = 229807, + [SMALL_STATE(6988)] = 229814, + [SMALL_STATE(6989)] = 229821, + [SMALL_STATE(6990)] = 229828, + [SMALL_STATE(6991)] = 229835, + [SMALL_STATE(6992)] = 229842, + [SMALL_STATE(6993)] = 229849, + [SMALL_STATE(6994)] = 229856, + [SMALL_STATE(6995)] = 229863, + [SMALL_STATE(6996)] = 229870, + [SMALL_STATE(6997)] = 229877, + [SMALL_STATE(6998)] = 229884, + [SMALL_STATE(6999)] = 229891, + [SMALL_STATE(7000)] = 229898, + [SMALL_STATE(7001)] = 229905, + [SMALL_STATE(7002)] = 229912, + [SMALL_STATE(7003)] = 229919, + [SMALL_STATE(7004)] = 229926, + [SMALL_STATE(7005)] = 229933, + [SMALL_STATE(7006)] = 229940, + [SMALL_STATE(7007)] = 229947, + [SMALL_STATE(7008)] = 229954, + [SMALL_STATE(7009)] = 229961, + [SMALL_STATE(7010)] = 229968, + [SMALL_STATE(7011)] = 229975, + [SMALL_STATE(7012)] = 229982, + [SMALL_STATE(7013)] = 229989, + [SMALL_STATE(7014)] = 229996, + [SMALL_STATE(7015)] = 230003, + [SMALL_STATE(7016)] = 230010, + [SMALL_STATE(7017)] = 230017, + [SMALL_STATE(7018)] = 230024, + [SMALL_STATE(7019)] = 230031, + [SMALL_STATE(7020)] = 230038, + [SMALL_STATE(7021)] = 230045, + [SMALL_STATE(7022)] = 230052, + [SMALL_STATE(7023)] = 230059, + [SMALL_STATE(7024)] = 230066, + [SMALL_STATE(7025)] = 230073, + [SMALL_STATE(7026)] = 230080, + [SMALL_STATE(7027)] = 230087, + [SMALL_STATE(7028)] = 230094, + [SMALL_STATE(7029)] = 230101, + [SMALL_STATE(7030)] = 230108, + [SMALL_STATE(7031)] = 230115, + [SMALL_STATE(7032)] = 230122, + [SMALL_STATE(7033)] = 230129, + [SMALL_STATE(7034)] = 230136, + [SMALL_STATE(7035)] = 230143, + [SMALL_STATE(7036)] = 230150, + [SMALL_STATE(7037)] = 230157, + [SMALL_STATE(7038)] = 230164, + [SMALL_STATE(7039)] = 230171, + [SMALL_STATE(7040)] = 230178, + [SMALL_STATE(7041)] = 230185, + [SMALL_STATE(7042)] = 230192, + [SMALL_STATE(7043)] = 230199, + [SMALL_STATE(7044)] = 230206, + [SMALL_STATE(7045)] = 230213, + [SMALL_STATE(7046)] = 230220, + [SMALL_STATE(7047)] = 230227, + [SMALL_STATE(7048)] = 230234, + [SMALL_STATE(7049)] = 230241, + [SMALL_STATE(7050)] = 230248, + [SMALL_STATE(7051)] = 230255, + [SMALL_STATE(7052)] = 230262, + [SMALL_STATE(7053)] = 230269, + [SMALL_STATE(7054)] = 230276, + [SMALL_STATE(7055)] = 230283, + [SMALL_STATE(7056)] = 230290, + [SMALL_STATE(7057)] = 230297, + [SMALL_STATE(7058)] = 230304, + [SMALL_STATE(7059)] = 230311, + [SMALL_STATE(7060)] = 230318, + [SMALL_STATE(7061)] = 230325, + [SMALL_STATE(7062)] = 230332, + [SMALL_STATE(7063)] = 230339, + [SMALL_STATE(7064)] = 230346, + [SMALL_STATE(7065)] = 230353, + [SMALL_STATE(7066)] = 230360, + [SMALL_STATE(7067)] = 230367, + [SMALL_STATE(7068)] = 230374, + [SMALL_STATE(7069)] = 230381, + [SMALL_STATE(7070)] = 230388, + [SMALL_STATE(7071)] = 230395, + [SMALL_STATE(7072)] = 230402, + [SMALL_STATE(7073)] = 230409, + [SMALL_STATE(7074)] = 230416, + [SMALL_STATE(7075)] = 230423, + [SMALL_STATE(7076)] = 230430, + [SMALL_STATE(7077)] = 230437, + [SMALL_STATE(7078)] = 230444, + [SMALL_STATE(7079)] = 230451, + [SMALL_STATE(7080)] = 230458, + [SMALL_STATE(7081)] = 230465, + [SMALL_STATE(7082)] = 230472, + [SMALL_STATE(7083)] = 230479, + [SMALL_STATE(7084)] = 230486, + [SMALL_STATE(7085)] = 230493, + [SMALL_STATE(7086)] = 230500, + [SMALL_STATE(7087)] = 230507, + [SMALL_STATE(7088)] = 230514, + [SMALL_STATE(7089)] = 230521, + [SMALL_STATE(7090)] = 230528, + [SMALL_STATE(7091)] = 230535, + [SMALL_STATE(7092)] = 230542, + [SMALL_STATE(7093)] = 230549, + [SMALL_STATE(7094)] = 230556, + [SMALL_STATE(7095)] = 230563, + [SMALL_STATE(7096)] = 230570, + [SMALL_STATE(7097)] = 230577, + [SMALL_STATE(7098)] = 230584, + [SMALL_STATE(7099)] = 230591, + [SMALL_STATE(7100)] = 230598, + [SMALL_STATE(7101)] = 230605, + [SMALL_STATE(7102)] = 230612, + [SMALL_STATE(7103)] = 230619, + [SMALL_STATE(7104)] = 230626, + [SMALL_STATE(7105)] = 230633, + [SMALL_STATE(7106)] = 230640, + [SMALL_STATE(7107)] = 230647, + [SMALL_STATE(7108)] = 230654, + [SMALL_STATE(7109)] = 230661, + [SMALL_STATE(7110)] = 230668, + [SMALL_STATE(7111)] = 230675, + [SMALL_STATE(7112)] = 230682, + [SMALL_STATE(7113)] = 230689, + [SMALL_STATE(7114)] = 230696, + [SMALL_STATE(7115)] = 230703, + [SMALL_STATE(7116)] = 230710, + [SMALL_STATE(7117)] = 230717, + [SMALL_STATE(7118)] = 230724, + [SMALL_STATE(7119)] = 230731, + [SMALL_STATE(7120)] = 230738, + [SMALL_STATE(7121)] = 230745, + [SMALL_STATE(7122)] = 230752, + [SMALL_STATE(7123)] = 230759, + [SMALL_STATE(7124)] = 230766, + [SMALL_STATE(7125)] = 230773, + [SMALL_STATE(7126)] = 230780, + [SMALL_STATE(7127)] = 230787, + [SMALL_STATE(7128)] = 230794, + [SMALL_STATE(7129)] = 230801, + [SMALL_STATE(7130)] = 230808, + [SMALL_STATE(7131)] = 230815, + [SMALL_STATE(7132)] = 230822, + [SMALL_STATE(7133)] = 230829, + [SMALL_STATE(7134)] = 230836, + [SMALL_STATE(7135)] = 230843, + [SMALL_STATE(7136)] = 230850, + [SMALL_STATE(7137)] = 230857, + [SMALL_STATE(7138)] = 230864, + [SMALL_STATE(7139)] = 230871, + [SMALL_STATE(7140)] = 230878, + [SMALL_STATE(7141)] = 230885, + [SMALL_STATE(7142)] = 230892, + [SMALL_STATE(7143)] = 230899, + [SMALL_STATE(7144)] = 230906, + [SMALL_STATE(7145)] = 230913, + [SMALL_STATE(7146)] = 230920, + [SMALL_STATE(7147)] = 230927, + [SMALL_STATE(7148)] = 230934, + [SMALL_STATE(7149)] = 230941, + [SMALL_STATE(7150)] = 230948, + [SMALL_STATE(7151)] = 230955, + [SMALL_STATE(7152)] = 230962, + [SMALL_STATE(7153)] = 230969, + [SMALL_STATE(7154)] = 230976, + [SMALL_STATE(7155)] = 230983, + [SMALL_STATE(7156)] = 230990, + [SMALL_STATE(7157)] = 230997, + [SMALL_STATE(7158)] = 231004, + [SMALL_STATE(7159)] = 231011, + [SMALL_STATE(7160)] = 231018, + [SMALL_STATE(7161)] = 231025, + [SMALL_STATE(7162)] = 231032, + [SMALL_STATE(7163)] = 231039, + [SMALL_STATE(7164)] = 231046, + [SMALL_STATE(7165)] = 231053, + [SMALL_STATE(7166)] = 231060, + [SMALL_STATE(7167)] = 231067, + [SMALL_STATE(7168)] = 231074, + [SMALL_STATE(7169)] = 231081, + [SMALL_STATE(7170)] = 231088, + [SMALL_STATE(7171)] = 231095, + [SMALL_STATE(7172)] = 231102, + [SMALL_STATE(7173)] = 231109, + [SMALL_STATE(7174)] = 231116, + [SMALL_STATE(7175)] = 231123, + [SMALL_STATE(7176)] = 231130, + [SMALL_STATE(7177)] = 231137, + [SMALL_STATE(7178)] = 231144, + [SMALL_STATE(7179)] = 231151, + [SMALL_STATE(7180)] = 231158, + [SMALL_STATE(7181)] = 231165, + [SMALL_STATE(7182)] = 231172, + [SMALL_STATE(7183)] = 231179, + [SMALL_STATE(7184)] = 231186, + [SMALL_STATE(7185)] = 231193, + [SMALL_STATE(7186)] = 231200, + [SMALL_STATE(7187)] = 231207, + [SMALL_STATE(7188)] = 231214, + [SMALL_STATE(7189)] = 231221, + [SMALL_STATE(7190)] = 231228, + [SMALL_STATE(7191)] = 231235, + [SMALL_STATE(7192)] = 231242, + [SMALL_STATE(7193)] = 231249, + [SMALL_STATE(7194)] = 231256, + [SMALL_STATE(7195)] = 231263, + [SMALL_STATE(7196)] = 231270, + [SMALL_STATE(7197)] = 231277, + [SMALL_STATE(7198)] = 231284, + [SMALL_STATE(7199)] = 231291, + [SMALL_STATE(7200)] = 231298, + [SMALL_STATE(7201)] = 231305, + [SMALL_STATE(7202)] = 231312, + [SMALL_STATE(7203)] = 231319, + [SMALL_STATE(7204)] = 231326, + [SMALL_STATE(7205)] = 231333, + [SMALL_STATE(7206)] = 231340, + [SMALL_STATE(7207)] = 231347, + [SMALL_STATE(7208)] = 231354, + [SMALL_STATE(7209)] = 231361, + [SMALL_STATE(7210)] = 231368, + [SMALL_STATE(7211)] = 231375, + [SMALL_STATE(7212)] = 231382, + [SMALL_STATE(7213)] = 231389, + [SMALL_STATE(7214)] = 231396, + [SMALL_STATE(7215)] = 231403, + [SMALL_STATE(7216)] = 231410, + [SMALL_STATE(7217)] = 231417, + [SMALL_STATE(7218)] = 231424, + [SMALL_STATE(7219)] = 231431, + [SMALL_STATE(7220)] = 231438, + [SMALL_STATE(7221)] = 231445, + [SMALL_STATE(7222)] = 231452, + [SMALL_STATE(7223)] = 231459, + [SMALL_STATE(7224)] = 231466, + [SMALL_STATE(7225)] = 231473, + [SMALL_STATE(7226)] = 231480, + [SMALL_STATE(7227)] = 231487, + [SMALL_STATE(7228)] = 231494, + [SMALL_STATE(7229)] = 231501, + [SMALL_STATE(7230)] = 231508, + [SMALL_STATE(7231)] = 231515, + [SMALL_STATE(7232)] = 231522, + [SMALL_STATE(7233)] = 231529, + [SMALL_STATE(7234)] = 231536, + [SMALL_STATE(7235)] = 231543, + [SMALL_STATE(7236)] = 231550, + [SMALL_STATE(7237)] = 231557, + [SMALL_STATE(7238)] = 231564, + [SMALL_STATE(7239)] = 231571, + [SMALL_STATE(7240)] = 231578, + [SMALL_STATE(7241)] = 231585, + [SMALL_STATE(7242)] = 231592, + [SMALL_STATE(7243)] = 231599, + [SMALL_STATE(7244)] = 231606, + [SMALL_STATE(7245)] = 231613, + [SMALL_STATE(7246)] = 231620, + [SMALL_STATE(7247)] = 231627, + [SMALL_STATE(7248)] = 231634, + [SMALL_STATE(7249)] = 231641, + [SMALL_STATE(7250)] = 231648, + [SMALL_STATE(7251)] = 231655, + [SMALL_STATE(7252)] = 231662, + [SMALL_STATE(7253)] = 231669, + [SMALL_STATE(7254)] = 231676, + [SMALL_STATE(7255)] = 231683, + [SMALL_STATE(7256)] = 231690, + [SMALL_STATE(7257)] = 231697, + [SMALL_STATE(7258)] = 231704, + [SMALL_STATE(7259)] = 231711, + [SMALL_STATE(7260)] = 231718, + [SMALL_STATE(7261)] = 231725, + [SMALL_STATE(7262)] = 231732, + [SMALL_STATE(7263)] = 231739, + [SMALL_STATE(7264)] = 231746, + [SMALL_STATE(7265)] = 231753, + [SMALL_STATE(7266)] = 231760, + [SMALL_STATE(7267)] = 231767, + [SMALL_STATE(7268)] = 231774, + [SMALL_STATE(7269)] = 231781, + [SMALL_STATE(7270)] = 231788, + [SMALL_STATE(7271)] = 231795, + [SMALL_STATE(7272)] = 231802, + [SMALL_STATE(7273)] = 231809, + [SMALL_STATE(7274)] = 231816, + [SMALL_STATE(7275)] = 231823, + [SMALL_STATE(7276)] = 231830, + [SMALL_STATE(7277)] = 231837, + [SMALL_STATE(7278)] = 231844, + [SMALL_STATE(7279)] = 231851, + [SMALL_STATE(7280)] = 231858, + [SMALL_STATE(7281)] = 231865, + [SMALL_STATE(7282)] = 231872, + [SMALL_STATE(7283)] = 231879, + [SMALL_STATE(7284)] = 231886, + [SMALL_STATE(7285)] = 231893, + [SMALL_STATE(7286)] = 231900, + [SMALL_STATE(7287)] = 231907, + [SMALL_STATE(7288)] = 231914, + [SMALL_STATE(7289)] = 231921, + [SMALL_STATE(7290)] = 231928, + [SMALL_STATE(7291)] = 231935, + [SMALL_STATE(7292)] = 231942, + [SMALL_STATE(7293)] = 231949, + [SMALL_STATE(7294)] = 231956, + [SMALL_STATE(7295)] = 231963, + [SMALL_STATE(7296)] = 231970, + [SMALL_STATE(7297)] = 231977, + [SMALL_STATE(7298)] = 231984, + [SMALL_STATE(7299)] = 231991, + [SMALL_STATE(7300)] = 231998, + [SMALL_STATE(7301)] = 232005, + [SMALL_STATE(7302)] = 232012, + [SMALL_STATE(7303)] = 232019, + [SMALL_STATE(7304)] = 232026, + [SMALL_STATE(7305)] = 232033, + [SMALL_STATE(7306)] = 232040, + [SMALL_STATE(7307)] = 232047, + [SMALL_STATE(7308)] = 232054, + [SMALL_STATE(7309)] = 232061, + [SMALL_STATE(7310)] = 232068, + [SMALL_STATE(7311)] = 232075, + [SMALL_STATE(7312)] = 232082, + [SMALL_STATE(7313)] = 232089, + [SMALL_STATE(7314)] = 232096, + [SMALL_STATE(7315)] = 232103, + [SMALL_STATE(7316)] = 232110, + [SMALL_STATE(7317)] = 232117, + [SMALL_STATE(7318)] = 232124, + [SMALL_STATE(7319)] = 232131, + [SMALL_STATE(7320)] = 232138, + [SMALL_STATE(7321)] = 232145, + [SMALL_STATE(7322)] = 232152, + [SMALL_STATE(7323)] = 232159, + [SMALL_STATE(7324)] = 232166, + [SMALL_STATE(7325)] = 232173, + [SMALL_STATE(7326)] = 232180, + [SMALL_STATE(7327)] = 232187, + [SMALL_STATE(7328)] = 232194, + [SMALL_STATE(7329)] = 232201, + [SMALL_STATE(7330)] = 232208, + [SMALL_STATE(7331)] = 232215, + [SMALL_STATE(7332)] = 232222, + [SMALL_STATE(7333)] = 232229, + [SMALL_STATE(7334)] = 232236, + [SMALL_STATE(7335)] = 232243, + [SMALL_STATE(7336)] = 232250, + [SMALL_STATE(7337)] = 232257, + [SMALL_STATE(7338)] = 232264, + [SMALL_STATE(7339)] = 232271, + [SMALL_STATE(7340)] = 232278, + [SMALL_STATE(7341)] = 232285, + [SMALL_STATE(7342)] = 232292, + [SMALL_STATE(7343)] = 232299, + [SMALL_STATE(7344)] = 232306, + [SMALL_STATE(7345)] = 232313, + [SMALL_STATE(7346)] = 232320, + [SMALL_STATE(7347)] = 232327, + [SMALL_STATE(7348)] = 232334, + [SMALL_STATE(7349)] = 232341, + [SMALL_STATE(7350)] = 232348, + [SMALL_STATE(7351)] = 232355, + [SMALL_STATE(7352)] = 232362, + [SMALL_STATE(7353)] = 232369, + [SMALL_STATE(7354)] = 232376, + [SMALL_STATE(7355)] = 232383, + [SMALL_STATE(7356)] = 232390, + [SMALL_STATE(7357)] = 232397, + [SMALL_STATE(7358)] = 232404, + [SMALL_STATE(7359)] = 232411, + [SMALL_STATE(7360)] = 232418, + [SMALL_STATE(7361)] = 232425, + [SMALL_STATE(7362)] = 232432, + [SMALL_STATE(7363)] = 232439, + [SMALL_STATE(7364)] = 232446, + [SMALL_STATE(7365)] = 232453, + [SMALL_STATE(7366)] = 232460, + [SMALL_STATE(7367)] = 232467, + [SMALL_STATE(7368)] = 232474, + [SMALL_STATE(7369)] = 232481, + [SMALL_STATE(7370)] = 232488, + [SMALL_STATE(7371)] = 232495, + [SMALL_STATE(7372)] = 232502, + [SMALL_STATE(7373)] = 232509, + [SMALL_STATE(7374)] = 232516, + [SMALL_STATE(7375)] = 232523, + [SMALL_STATE(7376)] = 232530, + [SMALL_STATE(7377)] = 232537, + [SMALL_STATE(7378)] = 232544, + [SMALL_STATE(7379)] = 232551, + [SMALL_STATE(7380)] = 232558, + [SMALL_STATE(7381)] = 232565, + [SMALL_STATE(7382)] = 232572, + [SMALL_STATE(7383)] = 232579, + [SMALL_STATE(7384)] = 232586, + [SMALL_STATE(7385)] = 232593, + [SMALL_STATE(7386)] = 232600, + [SMALL_STATE(7387)] = 232607, + [SMALL_STATE(7388)] = 232614, + [SMALL_STATE(7389)] = 232621, + [SMALL_STATE(7390)] = 232628, + [SMALL_STATE(7391)] = 232635, + [SMALL_STATE(7392)] = 232642, + [SMALL_STATE(7393)] = 232649, + [SMALL_STATE(7394)] = 232656, + [SMALL_STATE(7395)] = 232663, + [SMALL_STATE(7396)] = 232670, + [SMALL_STATE(7397)] = 232677, + [SMALL_STATE(7398)] = 232684, + [SMALL_STATE(7399)] = 232691, + [SMALL_STATE(7400)] = 232698, + [SMALL_STATE(7401)] = 232705, + [SMALL_STATE(7402)] = 232712, + [SMALL_STATE(7403)] = 232719, + [SMALL_STATE(7404)] = 232726, + [SMALL_STATE(7405)] = 232733, + [SMALL_STATE(7406)] = 232740, + [SMALL_STATE(7407)] = 232747, + [SMALL_STATE(7408)] = 232754, + [SMALL_STATE(7409)] = 232761, + [SMALL_STATE(7410)] = 232768, + [SMALL_STATE(7411)] = 232775, + [SMALL_STATE(7412)] = 232782, + [SMALL_STATE(7413)] = 232789, + [SMALL_STATE(7414)] = 232796, + [SMALL_STATE(7415)] = 232803, + [SMALL_STATE(7416)] = 232810, + [SMALL_STATE(7417)] = 232817, + [SMALL_STATE(7418)] = 232824, + [SMALL_STATE(7419)] = 232831, + [SMALL_STATE(7420)] = 232838, + [SMALL_STATE(7421)] = 232845, + [SMALL_STATE(7422)] = 232852, + [SMALL_STATE(7423)] = 232859, + [SMALL_STATE(7424)] = 232866, + [SMALL_STATE(7425)] = 232873, + [SMALL_STATE(7426)] = 232880, + [SMALL_STATE(7427)] = 232887, + [SMALL_STATE(7428)] = 232894, + [SMALL_STATE(7429)] = 232901, + [SMALL_STATE(7430)] = 232908, + [SMALL_STATE(7431)] = 232915, + [SMALL_STATE(7432)] = 232922, + [SMALL_STATE(7433)] = 232929, + [SMALL_STATE(7434)] = 232936, + [SMALL_STATE(7435)] = 232943, + [SMALL_STATE(7436)] = 232950, + [SMALL_STATE(7437)] = 232957, + [SMALL_STATE(7438)] = 232964, + [SMALL_STATE(7439)] = 232971, + [SMALL_STATE(7440)] = 232978, + [SMALL_STATE(7441)] = 232985, + [SMALL_STATE(7442)] = 232992, + [SMALL_STATE(7443)] = 232999, + [SMALL_STATE(7444)] = 233006, + [SMALL_STATE(7445)] = 233013, + [SMALL_STATE(7446)] = 233020, + [SMALL_STATE(7447)] = 233027, + [SMALL_STATE(7448)] = 233034, + [SMALL_STATE(7449)] = 233041, + [SMALL_STATE(7450)] = 233048, + [SMALL_STATE(7451)] = 233055, + [SMALL_STATE(7452)] = 233062, + [SMALL_STATE(7453)] = 233069, + [SMALL_STATE(7454)] = 233076, + [SMALL_STATE(7455)] = 233083, + [SMALL_STATE(7456)] = 233090, + [SMALL_STATE(7457)] = 233097, + [SMALL_STATE(7458)] = 233104, + [SMALL_STATE(7459)] = 233111, + [SMALL_STATE(7460)] = 233118, + [SMALL_STATE(7461)] = 233125, + [SMALL_STATE(7462)] = 233132, + [SMALL_STATE(7463)] = 233139, + [SMALL_STATE(7464)] = 233146, + [SMALL_STATE(7465)] = 233153, + [SMALL_STATE(7466)] = 233160, + [SMALL_STATE(7467)] = 233167, + [SMALL_STATE(7468)] = 233174, + [SMALL_STATE(7469)] = 233181, + [SMALL_STATE(7470)] = 233188, + [SMALL_STATE(7471)] = 233195, + [SMALL_STATE(7472)] = 233202, + [SMALL_STATE(7473)] = 233209, + [SMALL_STATE(7474)] = 233216, + [SMALL_STATE(7475)] = 233223, + [SMALL_STATE(7476)] = 233230, + [SMALL_STATE(7477)] = 233237, + [SMALL_STATE(7478)] = 233244, + [SMALL_STATE(7479)] = 233251, + [SMALL_STATE(7480)] = 233258, + [SMALL_STATE(7481)] = 233265, + [SMALL_STATE(7482)] = 233272, + [SMALL_STATE(7483)] = 233279, + [SMALL_STATE(7484)] = 233286, + [SMALL_STATE(7485)] = 233293, + [SMALL_STATE(7486)] = 233300, + [SMALL_STATE(7487)] = 233307, + [SMALL_STATE(7488)] = 233314, + [SMALL_STATE(7489)] = 233321, + [SMALL_STATE(7490)] = 233328, + [SMALL_STATE(7491)] = 233335, + [SMALL_STATE(7492)] = 233342, + [SMALL_STATE(7493)] = 233349, + [SMALL_STATE(7494)] = 233356, + [SMALL_STATE(7495)] = 233363, + [SMALL_STATE(7496)] = 233370, + [SMALL_STATE(7497)] = 233377, + [SMALL_STATE(7498)] = 233384, + [SMALL_STATE(7499)] = 233391, + [SMALL_STATE(7500)] = 233398, + [SMALL_STATE(7501)] = 233405, + [SMALL_STATE(7502)] = 233412, + [SMALL_STATE(7503)] = 233419, + [SMALL_STATE(7504)] = 233426, + [SMALL_STATE(7505)] = 233433, + [SMALL_STATE(7506)] = 233440, + [SMALL_STATE(7507)] = 233447, + [SMALL_STATE(7508)] = 233454, + [SMALL_STATE(7509)] = 233461, + [SMALL_STATE(7510)] = 233468, + [SMALL_STATE(7511)] = 233475, + [SMALL_STATE(7512)] = 233482, + [SMALL_STATE(7513)] = 233489, + [SMALL_STATE(7514)] = 233496, + [SMALL_STATE(7515)] = 233503, + [SMALL_STATE(7516)] = 233510, + [SMALL_STATE(7517)] = 233517, + [SMALL_STATE(7518)] = 233524, + [SMALL_STATE(7519)] = 233531, + [SMALL_STATE(7520)] = 233538, + [SMALL_STATE(7521)] = 233545, + [SMALL_STATE(7522)] = 233552, + [SMALL_STATE(7523)] = 233559, + [SMALL_STATE(7524)] = 233566, + [SMALL_STATE(7525)] = 233573, + [SMALL_STATE(7526)] = 233580, + [SMALL_STATE(7527)] = 233587, + [SMALL_STATE(7528)] = 233594, + [SMALL_STATE(7529)] = 233601, + [SMALL_STATE(7530)] = 233608, + [SMALL_STATE(7531)] = 233615, + [SMALL_STATE(7532)] = 233622, + [SMALL_STATE(7533)] = 233629, + [SMALL_STATE(7534)] = 233636, + [SMALL_STATE(7535)] = 233643, + [SMALL_STATE(7536)] = 233650, + [SMALL_STATE(7537)] = 233657, + [SMALL_STATE(7538)] = 233664, + [SMALL_STATE(7539)] = 233671, + [SMALL_STATE(7540)] = 233678, + [SMALL_STATE(7541)] = 233685, + [SMALL_STATE(7542)] = 233692, + [SMALL_STATE(7543)] = 233699, + [SMALL_STATE(7544)] = 233706, + [SMALL_STATE(7545)] = 233713, + [SMALL_STATE(7546)] = 233720, + [SMALL_STATE(7547)] = 233727, + [SMALL_STATE(7548)] = 233734, + [SMALL_STATE(7549)] = 233741, + [SMALL_STATE(7550)] = 233748, + [SMALL_STATE(7551)] = 233755, + [SMALL_STATE(7552)] = 233762, + [SMALL_STATE(7553)] = 233769, + [SMALL_STATE(7554)] = 233776, + [SMALL_STATE(7555)] = 233783, + [SMALL_STATE(7556)] = 233790, + [SMALL_STATE(7557)] = 233797, + [SMALL_STATE(7558)] = 233804, + [SMALL_STATE(7559)] = 233811, + [SMALL_STATE(7560)] = 233818, + [SMALL_STATE(7561)] = 233825, + [SMALL_STATE(7562)] = 233832, + [SMALL_STATE(7563)] = 233839, + [SMALL_STATE(7564)] = 233846, + [SMALL_STATE(7565)] = 233853, + [SMALL_STATE(7566)] = 233860, + [SMALL_STATE(7567)] = 233867, + [SMALL_STATE(7568)] = 233874, + [SMALL_STATE(7569)] = 233881, + [SMALL_STATE(7570)] = 233888, + [SMALL_STATE(7571)] = 233895, + [SMALL_STATE(7572)] = 233902, + [SMALL_STATE(7573)] = 233909, + [SMALL_STATE(7574)] = 233916, + [SMALL_STATE(7575)] = 233923, + [SMALL_STATE(7576)] = 233930, + [SMALL_STATE(7577)] = 233937, + [SMALL_STATE(7578)] = 233944, + [SMALL_STATE(7579)] = 233951, + [SMALL_STATE(7580)] = 233958, + [SMALL_STATE(7581)] = 233965, + [SMALL_STATE(7582)] = 233972, + [SMALL_STATE(7583)] = 233979, + [SMALL_STATE(7584)] = 233986, + [SMALL_STATE(7585)] = 233993, + [SMALL_STATE(7586)] = 234000, + [SMALL_STATE(7587)] = 234007, + [SMALL_STATE(7588)] = 234014, + [SMALL_STATE(7589)] = 234021, + [SMALL_STATE(7590)] = 234028, + [SMALL_STATE(7591)] = 234035, + [SMALL_STATE(7592)] = 234042, + [SMALL_STATE(7593)] = 234049, + [SMALL_STATE(7594)] = 234056, + [SMALL_STATE(7595)] = 234063, + [SMALL_STATE(7596)] = 234070, + [SMALL_STATE(7597)] = 234077, + [SMALL_STATE(7598)] = 234084, + [SMALL_STATE(7599)] = 234091, + [SMALL_STATE(7600)] = 234098, + [SMALL_STATE(7601)] = 234105, + [SMALL_STATE(7602)] = 234112, + [SMALL_STATE(7603)] = 234119, + [SMALL_STATE(7604)] = 234126, + [SMALL_STATE(7605)] = 234133, + [SMALL_STATE(7606)] = 234140, + [SMALL_STATE(7607)] = 234147, + [SMALL_STATE(7608)] = 234154, + [SMALL_STATE(7609)] = 234161, + [SMALL_STATE(7610)] = 234168, + [SMALL_STATE(7611)] = 234175, + [SMALL_STATE(7612)] = 234182, + [SMALL_STATE(7613)] = 234189, + [SMALL_STATE(7614)] = 234196, + [SMALL_STATE(7615)] = 234203, + [SMALL_STATE(7616)] = 234210, + [SMALL_STATE(7617)] = 234217, + [SMALL_STATE(7618)] = 234224, + [SMALL_STATE(7619)] = 234231, + [SMALL_STATE(7620)] = 234238, + [SMALL_STATE(7621)] = 234245, + [SMALL_STATE(7622)] = 234252, + [SMALL_STATE(7623)] = 234259, + [SMALL_STATE(7624)] = 234266, + [SMALL_STATE(7625)] = 234273, + [SMALL_STATE(7626)] = 234280, + [SMALL_STATE(7627)] = 234287, + [SMALL_STATE(7628)] = 234294, + [SMALL_STATE(7629)] = 234301, + [SMALL_STATE(7630)] = 234308, + [SMALL_STATE(7631)] = 234315, + [SMALL_STATE(7632)] = 234322, + [SMALL_STATE(7633)] = 234329, + [SMALL_STATE(7634)] = 234336, + [SMALL_STATE(7635)] = 234343, + [SMALL_STATE(7636)] = 234350, + [SMALL_STATE(7637)] = 234357, + [SMALL_STATE(7638)] = 234364, + [SMALL_STATE(7639)] = 234371, + [SMALL_STATE(7640)] = 234378, + [SMALL_STATE(7641)] = 234385, + [SMALL_STATE(7642)] = 234392, + [SMALL_STATE(7643)] = 234399, + [SMALL_STATE(7644)] = 234406, + [SMALL_STATE(7645)] = 234413, + [SMALL_STATE(7646)] = 234420, + [SMALL_STATE(7647)] = 234427, + [SMALL_STATE(7648)] = 234434, + [SMALL_STATE(7649)] = 234441, + [SMALL_STATE(7650)] = 234448, + [SMALL_STATE(7651)] = 234455, + [SMALL_STATE(7652)] = 234462, + [SMALL_STATE(7653)] = 234469, + [SMALL_STATE(7654)] = 234476, + [SMALL_STATE(7655)] = 234483, + [SMALL_STATE(7656)] = 234490, + [SMALL_STATE(7657)] = 234497, + [SMALL_STATE(7658)] = 234504, + [SMALL_STATE(7659)] = 234511, + [SMALL_STATE(7660)] = 234518, + [SMALL_STATE(7661)] = 234525, + [SMALL_STATE(7662)] = 234532, + [SMALL_STATE(7663)] = 234539, + [SMALL_STATE(7664)] = 234546, + [SMALL_STATE(7665)] = 234553, + [SMALL_STATE(7666)] = 234560, + [SMALL_STATE(7667)] = 234567, + [SMALL_STATE(7668)] = 234574, + [SMALL_STATE(7669)] = 234581, + [SMALL_STATE(7670)] = 234588, + [SMALL_STATE(7671)] = 234595, + [SMALL_STATE(7672)] = 234602, + [SMALL_STATE(7673)] = 234609, + [SMALL_STATE(7674)] = 234616, + [SMALL_STATE(7675)] = 234623, + [SMALL_STATE(7676)] = 234630, + [SMALL_STATE(7677)] = 234637, + [SMALL_STATE(7678)] = 234644, + [SMALL_STATE(7679)] = 234651, + [SMALL_STATE(7680)] = 234658, + [SMALL_STATE(7681)] = 234665, + [SMALL_STATE(7682)] = 234672, + [SMALL_STATE(7683)] = 234679, + [SMALL_STATE(7684)] = 234686, + [SMALL_STATE(7685)] = 234693, + [SMALL_STATE(7686)] = 234700, + [SMALL_STATE(7687)] = 234707, + [SMALL_STATE(7688)] = 234714, + [SMALL_STATE(7689)] = 234721, + [SMALL_STATE(7690)] = 234728, + [SMALL_STATE(7691)] = 234735, + [SMALL_STATE(7692)] = 234742, + [SMALL_STATE(7693)] = 234749, + [SMALL_STATE(7694)] = 234756, + [SMALL_STATE(7695)] = 234763, + [SMALL_STATE(7696)] = 234770, + [SMALL_STATE(7697)] = 234777, + [SMALL_STATE(7698)] = 234784, + [SMALL_STATE(7699)] = 234791, + [SMALL_STATE(7700)] = 234798, + [SMALL_STATE(7701)] = 234805, + [SMALL_STATE(7702)] = 234812, + [SMALL_STATE(7703)] = 234819, + [SMALL_STATE(7704)] = 234826, + [SMALL_STATE(7705)] = 234833, + [SMALL_STATE(7706)] = 234840, + [SMALL_STATE(7707)] = 234847, + [SMALL_STATE(7708)] = 234854, + [SMALL_STATE(7709)] = 234861, + [SMALL_STATE(7710)] = 234868, + [SMALL_STATE(7711)] = 234875, + [SMALL_STATE(7712)] = 234882, + [SMALL_STATE(7713)] = 234889, + [SMALL_STATE(7714)] = 234896, + [SMALL_STATE(7715)] = 234903, + [SMALL_STATE(7716)] = 234910, + [SMALL_STATE(7717)] = 234917, + [SMALL_STATE(7718)] = 234924, + [SMALL_STATE(7719)] = 234931, + [SMALL_STATE(7720)] = 234938, + [SMALL_STATE(7721)] = 234945, + [SMALL_STATE(7722)] = 234952, + [SMALL_STATE(7723)] = 234959, + [SMALL_STATE(7724)] = 234966, + [SMALL_STATE(7725)] = 234973, + [SMALL_STATE(7726)] = 234980, + [SMALL_STATE(7727)] = 234987, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -398616,4845 +499397,5608 @@ static const TSParseActionEntry ts_parse_actions[] = { [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), [5] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_translation_unit, 0), - [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1787), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4999), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6600), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4374), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6585), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5978), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), - [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1557), - [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4026), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1135), - [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3301), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3094), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6458), - [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5091), - [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5910), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6414), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5906), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3912), - [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1378), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3247), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3206), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2163), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3171), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3535), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4663), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4151), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4149), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4131), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5566), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5965), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1717), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6037), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5949), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(259), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6015), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1325), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6041), - [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6040), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6073), - [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1506), - [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3328), - [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5711), - [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5221), - [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3365), - [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3279), - [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6077), - [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3158), - [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3988), - [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3991), - [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1726), - [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(668), - [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5678), - [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1699), - [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1474), - [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5096), - [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4920), - [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6085), - [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6086), - [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1499), - [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1604), - [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5683), - [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1596), - [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3916), - [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4090), - [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1763), - [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4987), - [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6071), - [153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6292), - [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4298), - [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6070), - [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6006), - [161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3289), - [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3080), - [167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), - [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1361), - [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3191), - [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5459), - [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5725), - [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1677), - [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6584), - [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5980), - [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), - [187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6502), - [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1330), - [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6586), - [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6590), - [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6038), - [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6287), - [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1686), - [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5731), - [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1500), - [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5110), - [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4930), - [209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6503), - [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6504), - [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1501), - [215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1690), - [217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), - [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), - [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1785), - [233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5015), - [235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6016), - [237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4352), - [239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1031), - [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6014), - [243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(32), - [245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4371), - [247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5924), - [249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3335), - [253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3103), - [255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3203), - [259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5493), - [261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5979), - [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1755), - [265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6363), - [267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5945), - [269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), - [271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6581), - [273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1318), - [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6460), - [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6501), - [279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6013), - [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1674), - [283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5984), - [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1459), - [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5102), - [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4924), - [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6582), - [293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6583), - [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1458), - [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1668), - [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545), - [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(915), - [303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 4, .production_id = 73), - [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(547), - [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1092), - [309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(540), - [311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 3, .production_id = 73), - [313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517), - [315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1007), - [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(945), - [319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1003), - [321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(925), - [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(979), - [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(982), - [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1025), - [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1094), - [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1013), - [333] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1785), - [336] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5015), - [339] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6016), - [342] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4352), - [345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), - [347] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6014), - [350] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5924), - [353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(119), - [356] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1557), - [359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1639), - [362] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1557), - [365] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(539), - [368] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4026), - [371] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1135), - [374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(412), - [377] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3335), - [380] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3103), - [383] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6458), - [386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5091), - [389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5910), - [392] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6414), - [395] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5906), - [398] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3912), - [401] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(31), - [404] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1378), - [407] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3247), - [410] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3203), - [413] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2163), - [416] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3171), - [419] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3535), - [422] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4663), - [425] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4151), - [428] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4149), - [431] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4131), - [434] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5493), - [437] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5979), - [440] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1755), - [443] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6363), - [446] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5945), - [449] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(168), - [452] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6581), - [455] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1318), - [458] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6460), - [461] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6501), - [464] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6013), - [467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1613), - [470] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1506), - [473] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3328), - [476] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5711), - [479] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5221), - [482] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3365), - [485] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3279), - [488] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6077), - [491] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3158), - [494] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3988), - [497] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3991), - [500] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1674), - [503] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(668), - [506] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5984), - [509] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1699), - [512] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1459), - [515] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5102), - [518] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4924), - [521] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6582), - [524] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6583), - [527] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1458), - [530] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1668), - [533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5683), - [536] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1596), - [539] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3916), - [542] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4090), - [545] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1763), - [548] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4987), - [551] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6071), - [554] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4298), - [557] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6070), - [560] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6006), - [563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(778), - [566] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3289), - [569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3080), - [572] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(57), - [575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), - [577] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3191), - [580] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5459), - [583] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5725), - [586] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1677), - [589] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6584), - [592] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5980), - [595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(205), - [598] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6502), - [601] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1330), - [604] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6586), - [607] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6590), - [610] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6038), - [613] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1686), - [616] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5731), - [619] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1500), - [622] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5110), - [625] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4930), - [628] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6503), - [631] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6504), - [634] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1501), - [637] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1690), - [640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4547), - [644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1774), - [648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5002), - [650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6121), - [652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4330), - [654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 1), - [656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6057), - [658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5849), - [660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3312), - [664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3081), - [666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3195), - [670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5489), - [672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5751), - [674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1709), - [676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6280), - [678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5894), - [680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), - [682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6592), - [684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1328), - [686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6362), - [688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6361), - [690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6065), - [692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1761), - [694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5719), - [696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1455), - [698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5101), - [700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4887), - [702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6602), - [704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6594), - [706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1456), - [708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1762), - [710] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1787), - [713] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4999), - [716] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6600), - [719] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4374), - [722] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6585), - [725] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5978), - [728] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(559), - [731] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3301), - [734] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3094), - [737] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(48), - [740] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3206), - [743] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5566), - [746] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5965), - [749] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1717), - [752] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6037), - [755] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5949), - [758] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(259), - [761] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6015), - [764] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1325), - [767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6041), - [770] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6040), - [773] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6073), - [776] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1726), - [779] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5678), - [782] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1474), - [785] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5096), - [788] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4920), - [791] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6085), - [794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6086), - [797] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1499), - [800] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1604), - [803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 2), - [805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), - [811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3046), - [813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3040), - [817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), - [821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), - [823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2780), - [825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), - [827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3165), - [829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4770), - [835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4769), - [837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2502), - [839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), - [841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), - [843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4573), - [847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2722), - [849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2577), - [855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2573), - [857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2889), - [861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2891), - [863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3399), - [865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3427), - [867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), - [871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), - [873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3184), - [879] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1774), - [882] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5002), - [885] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6121), - [888] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4330), - [891] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6057), - [894] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5849), - [897] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(784), - [900] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3312), - [903] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3081), - [906] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(54), - [909] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3195), - [912] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5489), - [915] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5751), - [918] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1709), - [921] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6280), - [924] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5894), - [927] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(145), - [930] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6592), - [933] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1328), - [936] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6362), - [939] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6361), - [942] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6065), - [945] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1761), - [948] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5719), - [951] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1455), - [954] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5101), - [957] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4887), - [960] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6602), - [963] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6594), - [966] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1456), - [969] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1762), - [972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_translation_unit, 1), - [974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), - [978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), - [980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1767), - [982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 4, .production_id = 12), - [984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), - [988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 4, .production_id = 12), - [990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1653), - [992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5977), - [994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1350), - [996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5830), - [998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3), - [1000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3), - [1002] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1767), - [1005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), - [1007] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(331), - [1010] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1557), - [1013] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1557), - [1016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1653), - [1019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), - [1021] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1653), - [1024] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(412), - [1027] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3335), - [1030] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3247), - [1033] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6458), - [1036] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5091), - [1039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5977), - [1042] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6414), - [1045] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(31), - [1048] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1350), - [1051] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2163), - [1054] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3171), - [1057] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3535), - [1060] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(4663), - [1063] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(4151), - [1066] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(4149), - [1069] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(4131), - [1072] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5493), - [1075] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5979), - [1078] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5945), - [1081] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(168), - [1084] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6581), - [1087] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1318), - [1090] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6460), - [1093] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6501), - [1096] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6013), - [1099] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1613), - [1102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1506), - [1105] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3328), - [1108] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5711), - [1111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5221), - [1114] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3365), - [1117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3279), - [1120] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6077), - [1123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3158), - [1126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3991), - [1129] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5830), - [1132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5984), - [1135] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1699), - [1138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1459), - [1141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1458), - [1144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1668), - [1147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5683), - [1150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1596), - [1153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3916), - [1156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(4090), - [1159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3, .production_id = 12), - [1161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3, .production_id = 12), - [1163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 2), - [1165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 2), - [1167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1790), - [1170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(784), - [1173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3312), - [1176] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(54), - [1179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5489), - [1182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5751), - [1185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5894), - [1188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(145), - [1191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6592), - [1194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1328), - [1197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6362), - [1200] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6361), - [1203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6065), - [1206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5719), - [1209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1455), - [1212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1456), - [1215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1762), - [1218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1790), - [1220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1791), - [1222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1780), - [1224] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1791), - [1227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(778), - [1230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3289), - [1233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(57), - [1236] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5459), - [1239] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5725), - [1242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5980), - [1245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(205), - [1248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6502), - [1251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1330), - [1254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6586), - [1257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6590), - [1260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6038), - [1263] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5731), - [1266] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1500), - [1269] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1501), - [1272] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1690), - [1275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1780), - [1278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(559), - [1281] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3301), - [1284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(48), - [1287] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5566), - [1290] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5965), - [1293] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5949), - [1296] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(259), - [1299] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6015), - [1302] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1325), - [1305] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6041), - [1308] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6040), - [1311] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6073), - [1314] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5678), - [1317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1474), - [1320] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1499), - [1323] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1604), - [1326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1775), - [1328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), - [1330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3321), - [1332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [1334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5423), - [1336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5733), - [1338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5846), - [1340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), - [1342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6601), - [1344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1317), - [1346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6279), - [1348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6278), - [1350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6126), - [1352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5776), - [1354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1495), - [1356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1493), - [1358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1708), - [1360] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1775), - [1363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1200), - [1366] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3321), - [1369] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(68), - [1372] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5423), - [1375] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5733), - [1378] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5846), - [1381] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(188), - [1384] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6601), - [1387] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1317), - [1390] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6279), - [1393] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6278), - [1396] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6126), - [1399] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5776), - [1402] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1495), - [1405] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1493), - [1408] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1708), - [1411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1766), - [1413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5767), - [1415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6303), - [1417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), - [1419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3314), - [1421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6517), - [1423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [1425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), - [1427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), - [1429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), - [1431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [1433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1765), - [1435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3371), - [1437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6254), - [1439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [1441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), - [1443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1718), - [1445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), - [1447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5068), - [1449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3727), - [1451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4698), - [1453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4114), - [1455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4113), - [1457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4133), - [1459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), - [1461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1497), - [1463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3013), - [1465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5982), - [1467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5271), - [1469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3035), - [1471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3965), - [1473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1698), - [1475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5946), - [1477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1603), - [1479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3920), - [1481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4101), - [1483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1792), - [1485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5574), - [1487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4087), - [1489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), - [1491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1839), - [1493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [1495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), - [1497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [1499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1134), - [1501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), - [1503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1922), - [1505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4466), - [1507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4651), - [1509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4155), - [1511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4153), - [1513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4150), - [1515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2540), - [1517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6270), - [1519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3950), - [1521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2407), - [1523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2062), - [1525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 4, .production_id = 40), - [1527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [1529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1758), - [1531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), - [1533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 4, .production_id = 40), - [1535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5056), - [1537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), - [1539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), - [1541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5867), - [1543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), - [1545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1467), - [1547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), - [1549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5728), - [1551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5287), - [1553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2574), - [1555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6345), - [1557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1577), - [1559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5983), - [1561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1576), - [1563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3913), - [1565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4102), - [1567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2339), - [1569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [1571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1747), - [1573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), - [1575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1625), - [1577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5084), - [1579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), - [1581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5969), - [1583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), - [1585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1454), - [1587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2651), - [1589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5775), - [1591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5192), - [1593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2786), - [1595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1624), - [1597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5991), - [1599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1622), - [1601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3911), - [1603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4094), - [1605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2638), - [1607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [1609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1541), - [1611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), - [1613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1538), - [1615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5069), - [1617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), - [1619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5942), - [1621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), - [1623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1491), - [1625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2845), - [1627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5828), - [1629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5313), - [1631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2940), - [1633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1658), - [1635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5998), - [1637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1659), - [1639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3901), - [1641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4096), - [1643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2254), - [1645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), - [1647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [1649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1530), - [1651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), - [1653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1563), - [1655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5085), - [1657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), - [1659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1457), - [1661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1721), - [1663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1725), - [1665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3861), - [1667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6177), - [1669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4344), - [1671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2336), - [1673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6058), - [1675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), - [1677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4342), - [1679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5806), - [1681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4023), - [1683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6348), - [1685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3098), - [1687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4026), - [1689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3285), - [1691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4455), - [1693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6349), - [1695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3584), - [1697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3601), - [1699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4687), - [1701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4139), - [1703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4138), - [1705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4137), - [1707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3558), - [1709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6454), - [1711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3960), - [1713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5213), - [1715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1831), - [1717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6328), - [1719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4888), - [1721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6609), - [1723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2261), - [1725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2286), - [1727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 3), - [1729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 3), - [1731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2082), - [1733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2327), - [1735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 2), - [1737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 2), - [1739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, .production_id = 73), - [1741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2080), - [1743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2042), - [1745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2346), - [1747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2073), - [1749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 3, .production_id = 73), - [1751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2418), - [1753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2393), - [1755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2391), - [1757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2485), - [1759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2568), - [1761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2479), - [1763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2483), - [1765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5477), - [1767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1712), - [1769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6506), - [1771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5727), - [1773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6618), - [1775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2510), - [1777] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2485), - [1780] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(331), - [1783] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1557), - [1786] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1557), - [1789] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1653), - [1792] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(559), - [1795] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(5091), - [1798] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(5977), - [1801] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(48), - [1804] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1350), - [1807] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(5867), - [1810] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(5566), - [1813] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(5965), - [1816] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1717), - [1819] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6037), - [1822] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(5949), - [1825] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(259), - [1828] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6015), - [1831] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1325), - [1834] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6041), - [1837] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6040), - [1840] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6073), - [1843] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1613), - [1846] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1506), - [1849] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(3328), - [1852] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(5711), - [1855] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(5221), - [1858] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(3365), - [1861] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6345), - [1864] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(5830), - [1867] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(5678), - [1870] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1699), - [1873] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1474), - [1876] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1499), - [1879] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1604), - [1882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(5683), - [1885] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1596), - [1888] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(3916), - [1891] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(4090), - [1894] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2568), - [1897] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(778), - [1900] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(57), - [1903] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(5459), - [1906] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(5725), - [1909] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1677), - [1912] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6584), - [1915] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(5980), - [1918] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(205), - [1921] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6502), - [1924] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1330), - [1927] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6586), - [1930] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6590), - [1933] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6038), - [1936] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(5731), - [1939] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1500), - [1942] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1501), - [1945] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1690), - [1948] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2510), - [1951] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1200), - [1954] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(68), - [1957] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(5423), - [1960] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(5733), - [1963] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1712), - [1966] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6506), - [1969] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(5846), - [1972] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(188), - [1975] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6601), - [1978] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1317), - [1981] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6279), - [1984] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6278), - [1987] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6126), - [1990] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(5776), - [1993] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1495), - [1996] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1493), - [1999] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1708), - [2002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2494), - [2004] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2483), - [2007] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(5477), - [2010] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(5727), - [2013] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6618), - [2016] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2494), - [2019] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(412), - [2022] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(31), - [2025] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(5493), - [2028] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(5979), - [2031] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1755), - [2034] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6363), - [2037] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(5945), - [2040] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(168), - [2043] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6581), - [2046] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1318), - [2049] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6460), - [2052] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6501), - [2055] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6013), - [2058] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(5984), - [2061] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1459), - [2064] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1458), - [2067] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1668), - [2070] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2479), - [2073] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(784), - [2076] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(54), - [2079] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(5489), - [2082] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(5751), - [2085] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1709), - [2088] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6280), - [2091] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(5894), - [2094] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(145), - [2097] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6592), - [2100] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1328), - [2103] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6362), - [2106] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6361), - [2109] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6065), - [2112] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(5719), - [2115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1455), - [2118] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1456), - [2121] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1762), - [2124] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(3861), - [2127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(6177), - [2130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(4344), - [2133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), - [2135] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(6058), - [2138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(5806), - [2141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(4023), - [2144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(6348), - [2147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(3098), - [2150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(4026), - [2153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(4026), - [2156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(3285), - [2159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(3247), - [2162] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(6458), - [2165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(4455), - [2168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(5767), - [2171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(6414), - [2174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(5906), - [2177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(6349), - [2180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2163), - [2183] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(3584), - [2186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(3601), - [2189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(4687), - [2192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(4139), - [2195] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(4138), - [2198] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(4137), - [2201] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(3558), - [2204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(6454), - [2207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(3158), - [2210] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(3988), - [2213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(3960), - [2216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(5213), - [2219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(668), - [2222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1831), - [2225] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(6328), - [2228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(4888), - [2231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(6609), - [2234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6056), - [2236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4388), - [2238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6331), - [2240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5895), - [2242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3331), - [2244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3280), - [2246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5338), - [2248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1828), - [2250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4882), - [2252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6593), - [2254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6212), - [2256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4348), - [2258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 2), - [2260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6011), - [2262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5770), - [2264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3308), - [2266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5261), - [2268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1827), - [2270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4938), - [2272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6614), - [2274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3261), - [2276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2450), - [2278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2607), - [2280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2879), - [2282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2657), - [2284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2425), - [2286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 1), - [2288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(6056), - [2291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(4388), - [2294] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(6331), - [2297] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(5895), - [2300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(3331), - [2303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), - [2305] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(5338), - [2308] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1828), - [2311] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(4882), - [2314] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(6593), - [2317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4242), - [2319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4230), - [2321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), - [2323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2920), - [2325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3654), - [2327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2809), - [2329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3628), - [2331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), - [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), - [2335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2528), - [2337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2815), - [2339] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(6212), - [2342] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(4348), - [2345] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(6011), - [2348] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(5770), - [2351] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(3308), - [2354] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(5261), - [2357] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1827), - [2360] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(4938), - [2363] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(6614), - [2366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1853), - [2368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, .production_id = 8), - [2370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, .production_id = 8), - [2372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5934), - [2374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2), - [2376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2), - [2378] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2), SHIFT_REPEAT(5934), - [2381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_try_statement, 4, .production_id = 41), - [2383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_try_statement, 4, .production_id = 41), - [2385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_try_statement, 3, .production_id = 8), - [2387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_try_statement, 3, .production_id = 8), - [2389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5802), - [2391] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2), SHIFT_REPEAT(5802), - [2394] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2), SHIFT_REPEAT(5698), - [2397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5698), - [2399] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2), SHIFT_REPEAT(5845), - [2402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5845), - [2404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 3, .production_id = 135), - [2406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 3, .production_id = 135), - [2408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1896), - [2410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [2412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), - [2414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1579), - [2416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), - [2418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5090), - [2420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2022), - [2422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4449), - [2424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4671), - [2426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4123), - [2428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4122), - [2430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4121), - [2432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), - [2434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1496), - [2436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3557), - [2438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5800), - [2440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5337), - [2442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3855), - [2444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3008), - [2446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6472), - [2448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3936), - [2450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), - [2452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1715), - [2454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5993), - [2456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1711), - [2458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3898), - [2460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4105), - [2462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_range_loop, 9, .production_id = 178), - [2464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_range_loop, 9, .production_id = 178), - [2466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, .production_id = 47), - [2468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, .production_id = 47), - [2470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3), - [2472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3), - [2474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 4, .production_id = 57), - [2476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 4, .production_id = 57), - [2478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 3), - [2480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 3), - [2482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 92), - [2484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 92), - [2486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), - [2488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_goto_statement, 3, .production_id = 48), - [2490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_goto_statement, 3, .production_id = 48), - [2492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2), - [2494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), - [2496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2), - [2498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), - [2500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 4, .production_id = 99), - [2502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 4, .production_id = 99), - [2504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_co_return_statement, 3), - [2506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_co_return_statement, 3), - [2508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4080), - [2510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, .production_id = 116), - [2512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, .production_id = 116), - [2514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, .production_id = 81), - [2516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, .production_id = 81), - [2518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 128), - [2520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 128), - [2522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_co_return_statement, 2), - [2524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_co_return_statement, 2), - [2526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, .production_id = 129), - [2528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, .production_id = 129), - [2530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3116), - [2532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 2), - [2534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 2), - [2536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2), - [2538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2), - [2540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2), - [2542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2), - [2544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2582), - [2546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), - [2548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 6, .production_id = 149), - [2550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 6, .production_id = 149), - [2552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, .production_id = 156), - [2554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, .production_id = 156), - [2556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 157), - [2558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 157), - [2560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3075), - [2562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 158), - [2564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 158), - [2566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5033), - [2568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1), - [2570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1), - [2572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_statement, 2), - [2574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_statement, 2), - [2576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 164), - [2578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 164), - [2580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 165), - [2582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 165), - [2584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 166), - [2586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 166), - [2588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 167), - [2590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 167), - [2592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), - [2594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), - [2596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 168), - [2598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 168), - [2600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), - [2602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 177), - [2604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 177), - [2606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 172), - [2608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 172), - [2610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 173), - [2612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 173), - [2614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_range_loop, 8, .production_id = 174), - [2616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_range_loop, 8, .production_id = 174), - [2618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), - [2620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2769), - [2622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, .production_id = 50), - [2624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, .production_id = 50), - [2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), - [2628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), - [2630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 3, .production_id = 61), - [2632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 3, .production_id = 61), - [2634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, .production_id = 47), - [2636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, .production_id = 47), - [2638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 176), - [2640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 176), - [2642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 175), - [2644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 175), - [2646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 46), - [2648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, .production_id = 46), - [2650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), - [2652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 2), - [2654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3137), - [2656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_co_yield_statement, 3), - [2658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_co_yield_statement, 3), - [2660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), - [2662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 5, .production_id = 111), - [2664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 5, .production_id = 111), - [2666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 3, .production_id = 9), - [2668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 3, .production_id = 9), - [2670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_friend_declaration, 2), - [2672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_friend_declaration, 2), - [2674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_friend_declaration, 3), - [2676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_friend_declaration, 3), - [2678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_declaration, 3, .production_id = 5), - [2680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_declaration, 3, .production_id = 5), - [2682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 3, .production_id = 62), - [2684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 3, .production_id = 62), - [2686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_friend_declaration, 4), - [2688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_friend_declaration, 4), - [2690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_definition, 3, .production_id = 64), - [2692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_definition, 3, .production_id = 64), - [2694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_definition, 3, .production_id = 70), - [2696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_definition, 3, .production_id = 70), - [2698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_instantiation, 3, .production_id = 5), - [2700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_instantiation, 3, .production_id = 5), - [2702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_assert_declaration, 7, .production_id = 169), - [2704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_assert_declaration, 7, .production_id = 169), - [2706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 3, .production_id = 41), - [2708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 3, .production_id = 41), - [2710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alias_declaration, 6, .production_id = 161), - [2712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alias_declaration, 6, .production_id = 161), - [2714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2175), - [2716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [2718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), - [2720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4091), - [2722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4103), - [2724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3925), - [2726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 2, .production_id = 3), - [2728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 2, .production_id = 3), - [2730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 6, .production_id = 148), - [2732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 6, .production_id = 148), - [2734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_cast_declaration, 5, .production_id = 147), - [2736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_cast_declaration, 5, .production_id = 147), - [2738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concept_definition, 5, .production_id = 9), - [2740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concept_definition, 5, .production_id = 9), - [2742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_assert_declaration, 5, .production_id = 139), - [2744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_assert_declaration, 5, .production_id = 139), - [2746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alias_declaration, 5, .production_id = 138), - [2748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alias_declaration, 5, .production_id = 138), - [2750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_alias_definition, 5, .production_id = 137), - [2752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_alias_definition, 5, .production_id = 137), - [2754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_alias_definition, 5, .production_id = 136), - [2756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_alias_definition, 5, .production_id = 136), - [2758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 2, .production_id = 8), - [2760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 2, .production_id = 8), - [2762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_definition, 2, .production_id = 22), - [2764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_definition, 2, .production_id = 22), - [2766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 5, .production_id = 113), - [2768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 5, .production_id = 113), - [2770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, .production_id = 73), - [2772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, .production_id = 73), - [2774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, .production_id = 112), - [2776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, .production_id = 112), - [2778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_definition, 2, .production_id = 23), - [2780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_definition, 2, .production_id = 23), - [2782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_declaration, 2, .production_id = 23), - [2784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_declaration, 2, .production_id = 23), - [2786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 3, .production_id = 35), - [2788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 3, .production_id = 35), - [2790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_definition, 4, .production_id = 110), - [2792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_definition, 4, .production_id = 110), - [2794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_cast_declaration, 4, .production_id = 106), - [2796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_cast_declaration, 4, .production_id = 106), - [2798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete_method_clause, 3), - [2800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_method_clause, 3), - [2802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_method_clause, 3), - [2804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_method_clause, 3), - [2806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, .production_id = 101), - [2808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, .production_id = 101), - [2810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__empty_declaration, 2), - [2812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__empty_declaration, 2), - [2814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_declaration, 4), - [2816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_declaration, 4), - [2818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3), - [2820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3), - [2822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_declaration, 4, .production_id = 52), - [2824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_declaration, 4, .production_id = 52), - [2826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_instantiation, 4, .production_id = 53), - [2828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_instantiation, 4, .production_id = 53), - [2830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_declaration, 3), - [2832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_declaration, 3), - [2834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_cast_declaration, 2, .production_id = 23), - [2836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_cast_declaration, 2, .production_id = 23), - [2838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_cast_definition, 2, .production_id = 22), - [2840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_cast_definition, 2, .production_id = 22), - [2842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 4, .production_id = 85), - [2844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 4, .production_id = 85), - [2846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2375), - [2848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [2850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), - [2852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 3, .production_id = 9), - [2854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 3, .production_id = 9), - [2856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 3, .production_id = 43), - [2858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 3, .production_id = 43), - [2860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 3, .production_id = 55), - [2862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 3, .production_id = 55), - [2864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2), - [2866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2), - [2868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 4, .production_id = 84), - [2870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 4, .production_id = 84), - [2872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 9), - [2874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 9), - [2876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 74), - [2878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 74), - [2880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 4, .production_id = 73), - [2882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 4, .production_id = 73), - [2884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 4, .production_id = 72), - [2886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 4, .production_id = 72), - [2888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 4, .production_id = 71), - [2890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 4, .production_id = 71), - [2892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_cast_definition, 3, .production_id = 70), - [2894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_cast_definition, 3, .production_id = 70), - [2896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_cast_declaration, 3, .production_id = 5), - [2898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_cast_declaration, 3, .production_id = 5), - [2900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_definition, 3, .production_id = 5), - [2902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_definition, 3, .production_id = 5), - [2904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_linkage_specification, 3, .production_id = 39), - [2906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_linkage_specification, 3, .production_id = 39), - [2908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_include, 3, .production_id = 34), - [2910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_include, 3, .production_id = 34), - [2912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_declaration, 3, .production_id = 52), - [2914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_declaration, 3, .production_id = 52), - [2916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), - [2918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(246), - [2920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), - [2922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3295), - [2924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4895), - [2926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4895), - [2928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5006), - [2930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3272), - [2932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3232), - [2934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4715), - [2936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4132), - [2938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4134), - [2940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4136), - [2942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3992), - [2944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4840), - [2946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6622), - [2948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), - [2950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(234), - [2952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), - [2954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2258), - [2956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2734), - [2958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2734), - [2960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2637), - [2962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6606), - [2964] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_init_statement, 1), SHIFT(2258), - [2967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), - [2969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_init_statement, 1), - [2971] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_init_statement, 1), SHIFT(5091), - [2974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_statement, 1), - [2976] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_init_statement, 1), SHIFT(5867), - [2979] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_init_statement, 1), SHIFT(6345), - [2982] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_init_statement, 1), SHIFT(5830), - [2985] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 2), SHIFT(2258), - [2988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), - [2990] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression_statement, 2), SHIFT(5091), - [2993] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 2), SHIFT(5867), - [2996] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 2), SHIFT(6345), - [2999] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 2), SHIFT(5830), - [3002] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 1), SHIFT(2258), - [3005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), - [3007] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression_statement, 1), SHIFT(5091), - [3010] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 1), SHIFT(5867), - [3013] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 1), SHIFT(6345), - [3016] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 1), SHIFT(5830), - [3019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), - [3021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), - [3023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2644), - [3025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), - [3027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), - [3029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), - [3031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), - [3033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), - [3035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), - [3037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), - [3039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), - [3041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), - [3043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), - [3045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), - [3047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2661), - [3049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [3051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1589), - [3053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), - [3055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5070), - [3057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), - [3059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1517), - [3061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1584), - [3063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1583), - [3065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3906), - [3067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), - [3069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), - [3071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), - [3073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2700), - [3075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [3077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1742), - [3079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), - [3081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), - [3083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5066), - [3085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), - [3087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1460), - [3089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1701), - [3091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1696), - [3093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3891), - [3095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4458), - [3097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5235), - [3099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1826), - [3101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6587), - [3103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4254), - [3105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5350), - [3107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1835), - [3109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6296), - [3111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6616), - [3113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6610), - [3115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6605), - [3117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6603), - [3119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5344), - [3121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1825), - [3123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6612), - [3125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6617), - [3127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6615), - [3129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5317), - [3131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1832), - [3133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6596), - [3135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_declaration, 3), - [3137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_declaration, 3), - [3139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_declaration, 4), - [3141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_declaration, 4), - [3143] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declaration_modifiers, 1), REDUCE(aux_sym_attributed_declarator_repeat1, 1), - [3146] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declaration_modifiers, 1), REDUCE(aux_sym_attributed_declarator_repeat1, 1), - [3149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 1), - [3151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 1), - [3153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_modifiers, 1), - [3155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_modifiers, 1), - [3157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5788), - [3159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), - [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5136), - [3163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2652), - [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), - [3167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4745), - [3169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), - [3171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4692), - [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), - [3175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4683), - [3177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), - [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5123), - [3181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), - [3183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4971), - [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), - [3187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4966), - [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), - [3191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4776), - [3193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), - [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4785), - [3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), - [3199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4809), - [3201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), - [3203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4655), - [3205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), - [3207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4646), - [3209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2), SHIFT_REPEAT(5788), - [3212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), - [3214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4903), - [3216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2523), - [3218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), - [3220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4943), - [3222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3501), - [3224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4042), - [3226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), - [3228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), - [3230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3407), - [3232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3407), - [3234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4562), - [3236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1152), - [3238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3120), - [3240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), - [3242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3433), - [3244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4952), - [3246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2451), - [3248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2995), - [3250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3398), - [3252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), - [3254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), - [3256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4566), - [3258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4786), - [3260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3037), - [3262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3179), - [3264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(2258), - [3267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(331), - [3270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(1557), - [3273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(1557), - [3276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(1653), - [3279] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(3120), - [3282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(5091), - [3285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(1685), - [3288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), - [3290] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(1350), - [3293] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(5867), - [3296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(1613), - [3299] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(1506), - [3302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(3328), - [3305] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(5711), - [3308] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(5221), - [3311] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(3365), - [3314] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(6345), - [3317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(4952), - [3320] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(5830), - [3323] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(1699), - [3326] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(5683), - [3329] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(1596), - [3332] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(3916), - [3335] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(4090), - [3338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2759), - [3340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3173), - [3342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4531), - [3344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2723), - [3346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3060), - [3348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), - [3350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2928), - [3352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4766), - [3354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6335), - [3356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2698), - [3358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), - [3360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6247), - [3362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3773), - [3364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3287), - [3366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3303), - [3368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6196), - [3370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2960), - [3372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6574), - [3374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3053), - [3376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6455), - [3378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2553), - [3380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2804), - [3382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2821), - [3384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3073), - [3386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3055), - [3388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3712), - [3390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3832), - [3392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), - [3394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2962), - [3396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), - [3398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2949), - [3400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), - [3402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), - [3404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3293), - [3406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), - [3408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [3410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [3412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [3414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [3416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_capture_specifier, 2), - [3418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_capture_specifier, 2), - [3420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3819), - [3422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), - [3424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), - [3426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5936), - [3428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), - [3430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2981), - [3432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), - [3434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3043), - [3436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), - [3438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), - [3440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), - [3442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), - [3444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), - [3446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), - [3448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3553), - [3450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), - [3452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5103), - [3454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [3456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2394), - [3458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2538), - [3460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6186), - [3462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1483), - [3464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), - [3466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2459), - [3468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), - [3470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6147), - [3472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1463), - [3474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), - [3476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), - [3478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2764), - [3480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), - [3482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), - [3484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6327), - [3486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1524), - [3488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), - [3490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [3492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [3494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [3496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [3498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [3500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [3502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [3504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [3506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [3508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [3510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [3512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [3514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [3516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [3518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [3520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_default_capture, 1), - [3522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [3524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [3526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [3528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [3530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [3532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [3534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [3536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [3538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [3540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [3542] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(6163), - [3545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [3547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [3549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [3551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [3553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [3555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [3557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [3559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [3561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [3563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [3565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [3567] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(6144), - [3570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6441), - [3572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [3574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [3576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [3578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6418), - [3580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [3582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [3584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [3586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6560), - [3588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [3590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4883), - [3592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2305), - [3594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), - [3596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5149), - [3598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6205), - [3600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6332), - [3602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [3604] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(6162), - [3607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(6075), - [3610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(6154), - [3613] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(6076), - [3616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4806), - [3618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4814), - [3620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [3622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6572), - [3624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(6078), - [3627] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(6152), - [3630] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(6079), - [3633] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(6080), - [3636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(6150), - [3639] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(6148), - [3642] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(6136), - [3645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), - [3647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(6138), - [3650] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(6137), - [3653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4574), - [3655] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(6133), - [3658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6191), - [3660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4708), - [3662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4669), - [3664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6475), - [3666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [3668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), - [3670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(6128), - [3673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), - [3675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6459), - [3677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [3679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6284), - [3681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [3683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6153), - [3685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [3687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [3689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [3691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4936), - [3693] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(6120), - [3696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4735), - [3698] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(6103), - [3701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [3703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(6105), - [3706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(6114), - [3709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6450), - [3711] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(6161), - [3714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4808), - [3716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5127), - [3718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6091), - [3720] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(6115), - [3723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4730), - [3725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6098), - [3727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [3729] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(6118), - [3732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4975), - [3734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4777), - [3736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(6063), - [3739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4954), - [3741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6281), - [3743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), - [3745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), - [3747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), - [3749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), - [3751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), - [3753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), - [3755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), - [3757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), - [3759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2306), - [3761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), - [3763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2174), - [3765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3880), - [3767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), - [3769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4565), - [3771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), - [3773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), - [3775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), - [3777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), - [3779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), - [3781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), - [3783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), - [3785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), - [3787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2199), - [3789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), - [3791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2283), - [3793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_specifier, 1, .production_id = 1), - [3795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), - [3797] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression, 1), - [3801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), - [3803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), - [3805] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression, 1), - [3808] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression, 1), - [3811] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(423), - [3814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5135), - [3816] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), - [3819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_name, 1, .production_id = 1), - [3821] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression, 1), - [3825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1611), - [3827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), - [3829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), - [3831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, .production_id = 32), - [3833] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_qualified_identifier, 2, .production_id = 31), REDUCE(sym_qualified_type_identifier, 2, .production_id = 32), - [3836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_type_identifier, 2, .production_id = 32), - [3838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, .production_id = 31), - [3840] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, .production_id = 31), REDUCE(sym_qualified_type_identifier, 2, .production_id = 32), - [3843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_identifier, 2, .production_id = 31), - [3845] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, .production_id = 31), SHIFT(448), - [3848] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(421), - [3851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1578), - [3853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), - [3855] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, .production_id = 31), SHIFT(420), - [3858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_argument_list, 3, .dynamic_precedence = 1), - [3860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 3, .dynamic_precedence = 1), - [3862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_argument_list, 3, .dynamic_precedence = 3), - [3864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 3, .dynamic_precedence = 3), - [3866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_argument_list, 4, .dynamic_precedence = 2), - [3868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 4, .dynamic_precedence = 2), - [3870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_type, 2, .production_id = 14), - [3872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_template_type, 2, .production_id = 14), REDUCE(sym_template_function, 2, .production_id = 15), - [3875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_type, 2, .production_id = 14), - [3877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_function, 2, .production_id = 15), - [3879] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_template_type, 2, .production_id = 14), REDUCE(sym_template_function, 2, .production_id = 15), - [3882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_function, 2, .production_id = 15), - [3884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_argument_list, 2), - [3886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 2), - [3888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), - [3890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), - [3892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_argument_list, 4, .dynamic_precedence = 1), - [3894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 4, .dynamic_precedence = 1), - [3896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_argument_list, 3, .dynamic_precedence = 2), - [3898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 3, .dynamic_precedence = 2), - [3900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(217), - [3902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_argument_list, 4, .dynamic_precedence = 3), - [3904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 4, .dynamic_precedence = 3), - [3906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3157), - [3908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), - [3910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3970), - [3912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4315), - [3914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4315), - [3916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5034), - [3918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1139), - [3920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), - [3922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), - [3924] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(5287), - [3927] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(5983), - [3930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [3932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [3934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2586), - [3936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 2), - [3938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 2), - [3940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [3942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [3944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3883), - [3946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4111), - [3948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4176), - [3950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4175), - [3952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4142), - [3954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4168), - [3956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4172), - [3958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4145), - [3960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4144), - [3962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4143), - [3964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4192), - [3966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4112), - [3968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4193), - [3970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4162), - [3972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4163), - [3974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4164), - [3976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4117), - [3978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4118), - [3980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4119), - [3982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4125), - [3984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4120), - [3986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4115), - [3988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declarator, 1), - [3990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), - [3992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2771), - [3994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(5192), - [3997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(5991), - [4000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2), - [4002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2), - [4004] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, .production_id = 31), SHIFT(438), - [4007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4070), - [4009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3868), - [4011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5324), - [4013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5112), - [4015] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(484), - [4018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2789), - [4020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3), - [4022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3), - [4024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_string_literal, 5), - [4026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_string_literal, 5), - [4028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_string_literal, 7, .production_id = 170), - [4030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_string_literal, 7, .production_id = 170), - [4032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constraint_conjunction, 3, .production_id = 49), - [4034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint_conjunction, 3, .production_id = 49), - [4036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 4, .production_id = 108), - [4038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 4, .production_id = 108), - [4040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2923), - [4042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__requirement_clause_constraint, 3), - [4044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__requirement_clause_constraint, 3), - [4046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fold_expression, 3, .production_id = 37), - [4048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fold_expression, 3, .production_id = 37), - [4050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2101), - [4052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 1), - [4054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), - [4056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1878), - [4058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2100), - [4060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 5, .production_id = 146), - [4062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 5, .production_id = 146), - [4064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requirement_seq, 2), - [4066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requirement_seq, 2), - [4068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requires_expression, 3, .production_id = 60), - [4070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_expression, 3, .production_id = 60), - [4072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 2, .production_id = 29), - [4074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 2, .production_id = 29), - [4076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 3, .production_id = 68), - [4078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 3, .production_id = 68), - [4080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), - [4082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), - [4084] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(1878), - [4087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 3, .production_id = 69), - [4089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 3, .production_id = 69), - [4091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 4, .production_id = 109), - [4093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 4, .production_id = 109), - [4095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requires_expression, 2, .production_id = 18), - [4097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_expression, 2, .production_id = 18), - [4099] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(5313), - [4102] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(5998), - [4105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requirement_seq, 3), - [4107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requirement_seq, 3), - [4109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(5271), - [4112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(5946), - [4115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(439), - [4118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1663), - [4120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), - [4122] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, .production_id = 31), SHIFT(402), - [4125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3063), - [4127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration, 2, .production_id = 9), - [4129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration, 2, .production_id = 9), - [4131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [4133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4438), - [4135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4649), - [4137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2363), - [4139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1905), - [4141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2362), - [4143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration, 3, .production_id = 42), - [4145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration, 3, .production_id = 42), - [4147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(1905), - [4150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_condition_clause, 4, .production_id = 127), - [4152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_clause, 4, .production_id = 127), - [4154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_condition_clause, 3, .production_id = 12), - [4156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_clause, 3, .production_id = 12), - [4158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration, 1, .production_id = 6), - [4160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration, 1, .production_id = 6), - [4162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [4164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, .production_id = 82), - [4166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), - [4168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, .production_id = 82), - [4170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), - [4172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2067), - [4174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6084), - [4176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, .production_id = 40), - [4178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, .production_id = 40), - [4180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(1915), - [4183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 2, .production_id = 17), - [4185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 2, .production_id = 17), - [4187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, .production_id = 32), SHIFT(345), - [4190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2562), - [4192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1915), - [4194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2563), - [4196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_name, 1, .production_id = 1), - [4198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), - [4200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, .production_id = 58), - [4202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, .production_id = 58), - [4204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5956), - [4206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5043), - [4208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3704), - [4210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6261), - [4212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4486), - [4214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5722), - [4216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6263), - [4218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3776), - [4220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3693), - [4222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, .production_id = 32), SHIFT(438), - [4225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_name, 1), - [4227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_name, 1), - [4229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5121), - [4231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(1942), - [4234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5810), - [4236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2662), - [4238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1942), - [4240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2603), - [4242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2), SHIFT_REPEAT(5810), - [4245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_type_identifier, 2, .production_id = 31), - [4247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, .production_id = 31), - [4249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(438), - [4251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dependent_type_identifier, 2), - [4253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dependent_type_identifier, 2), - [4255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [4257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), - [4259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), - [4261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), - [4263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6223), - [4265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(1973), - [4268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, .production_id = 9), - [4270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, .production_id = 9), - [4272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5308), - [4274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4615), - [4276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, .production_id = 42), - [4278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, .production_id = 42), - [4280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2697), - [4282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1973), - [4284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2703), - [4286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enum_base_clause, 2, .production_id = 87), - [4288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__enum_base_clause, 2, .production_id = 87), - [4290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [4292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5798), - [4294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5351), - [4296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4642), - [4298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), - [4300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5755), - [4302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4724), - [4304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 1, .dynamic_precedence = 1), - [4306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), - [4308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3336), - [4310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3336), - [4312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4598), - [4314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), - [4316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), - [4318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3382), - [4320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3382), - [4322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_specifier, 1), - [4324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_specifier, 1), - [4326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decltype, 4), - [4328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decltype, 4), - [4330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, .production_id = 44), - [4332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, .production_id = 44), - [4334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dependent_type, 2, .dynamic_precedence = -1), - [4336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dependent_type, 2, .dynamic_precedence = -1), - [4338] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, .production_id = 32), SHIFT(402), - [4341] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2), SHIFT_REPEAT(5755), - [4344] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2), SHIFT_REPEAT(5798), - [4347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, .production_id = 86), - [4349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, .production_id = 86), - [4351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .production_id = 113), - [4353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .production_id = 113), - [4355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 6, .production_id = 171), - [4357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 6, .production_id = 171), - [4359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [4361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_placeholder_type_specifier, 1), - [4363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_placeholder_type_specifier, 1), - [4365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, .production_id = 148), - [4367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, .production_id = 148), - [4369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration, 5, .production_id = 154), - [4371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration, 5, .production_id = 154), - [4373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, .production_id = 57), - [4375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, .production_id = 57), - [4377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4605), - [4379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2950), - [4381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2063), - [4383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2952), - [4385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), - [4387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), - [4389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2664), - [4391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6244), - [4393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 5), - [4395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 5), - [4397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 5, .production_id = 162), - [4399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 5, .production_id = 162), - [4401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 5, .production_id = 99), - [4403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 5, .production_id = 99), - [4405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 5, .production_id = 160), - [4407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 5, .production_id = 160), - [4409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, .production_id = 97), - [4411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, .production_id = 97), - [4413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration, 5, .production_id = 152), - [4415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration, 5, .production_id = 152), - [4417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 73), - [4419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 73), - [4421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484), - [4423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, .production_id = 8), - [4425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, .production_id = 8), - [4427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration, 1, .production_id = 10), - [4429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration, 1, .production_id = 10), - [4431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_specifier, 2, .production_id = 11), - [4433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_specifier, 2, .production_id = 11), - [4435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 2, .production_id = 11), - [4437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 2, .production_id = 11), - [4439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 112), - [4441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 112), - [4443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration, 6, .production_id = 163), - [4445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration, 6, .production_id = 163), - [4447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 2, .production_id = 11), - [4449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 2, .production_id = 11), - [4451] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(345), - [4454] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(2063), - [4457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_placeholder_type_specifier, 2, .production_id = 24), - [4459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_placeholder_type_specifier, 2, .production_id = 24), - [4461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decltype_auto, 4), - [4463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decltype_auto, 4), - [4465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, .production_id = 99), - [4467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 99), - [4469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, .production_id = 9), - [4471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, .production_id = 9), - [4473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, .production_id = 61), - [4475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 61), - [4477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, .production_id = 134), - [4479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 134), - [4481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 9), - [4483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 9), - [4485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 74), - [4487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 74), - [4489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .production_id = 73), - [4491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .production_id = 73), - [4493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, .production_id = 85), - [4495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, .production_id = 85), - [4497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 3), - [4499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 3), - [4501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 2, .production_id = 51), - [4503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 2, .production_id = 51), - [4505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, .production_id = 81), - [4507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, .production_id = 81), - [4509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, .production_id = 61), - [4511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 61), - [4513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_method_definition, 3, .production_id = 62), - [4515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_method_definition, 3, .production_id = 62), - [4517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 5, .production_id = 119), - [4519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 5, .production_id = 119), - [4521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_method_definition, 3, .production_id = 61), - [4523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_method_definition, 3, .production_id = 61), - [4525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declaration_list_item, 2), - [4527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declaration_list_item, 2), - [4529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 17), - [4531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 17), - [4533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 33), - [4535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 33), - [4537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration, 3, .production_id = 91), - [4539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration, 3, .production_id = 91), - [4541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 4), - [4543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 4), - [4545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration, 3, .production_id = 41), - [4547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration, 3, .production_id = 41), - [4549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration, 3, .production_id = 43), - [4551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration, 3, .production_id = 43), - [4553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3), - [4555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3), - [4557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, .production_id = 121), - [4559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, .production_id = 121), - [4561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 2), - [4563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 2), - [4565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, .production_id = 41), - [4567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, .production_id = 41), - [4569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration, 4, .production_id = 124), - [4571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration, 4, .production_id = 124), - [4573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, .production_id = 43), - [4575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, .production_id = 43), - [4577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration, 4, .production_id = 85), - [4579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration, 4, .production_id = 85), - [4581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2), - [4583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2), - [4585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration, 2, .production_id = 8), - [4587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration, 2, .production_id = 8), - [4589] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, .production_id = 31), SHIFT(345), - [4592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration, 4, .production_id = 125), - [4594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration, 4, .production_id = 125), - [4596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration, 5, .production_id = 153), - [4598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration, 5, .production_id = 153), - [4600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, .production_id = 51), - [4602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 51), - [4604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration, 4, .production_id = 123), - [4606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration, 4, .production_id = 123), - [4608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, .production_id = 122), - [4610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 122), - [4612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration, 2, .production_id = 45), - [4614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration, 2, .production_id = 45), - [4616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, .production_id = 89), - [4618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, .production_id = 89), - [4620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enum_base_clause, 2, .production_id = 88), - [4622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__enum_base_clause, 2, .production_id = 88), - [4624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, .production_id = 151), - [4626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 151), - [4628] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, .production_id = 32), SHIFT(484), - [4631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_qualifier, 1), - [4633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_qualifier, 1), - [4635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5306), - [4637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4593), - [4639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [4641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5040), - [4643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_destructor_name, 2), - [4645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_destructor_name, 2), - [4647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declarator, 1), REDUCE(sym__expression, 1), - [4650] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(448), - [4653] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declarator, 1), REDUCE(sym__expression, 1), - [4656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dependent_identifier, 2), - [4658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dependent_identifier, 2), - [4660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_declarator, 3, .production_id = 140), - [4662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_declarator, 3, .production_id = 140), - [4664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), - [4666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), - [4668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2707), - [4670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6009), - [4672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_specifier, 4), - [4674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_specifier, 4), - [4676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(438), - [4679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2), - [4681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2), - [4683] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(2652), - [4686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2650), - [4688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2650), - [4690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), - [4692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6473), - [4694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2587), - [4696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2587), - [4698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270), - [4700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6342), - [4702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_char_literal, 3), - [4704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_char_literal, 3), - [4706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3), - [4708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3), - [4710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5188), - [4712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4628), - [4714] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(444), - [4717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2581), - [4719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6062), - [4721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_name, 2), - [4723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_name, 2), - [4725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2515), - [4727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4), - [4729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4), - [4731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5193), - [4733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2720), - [4735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2720), - [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2614), - [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6257), - [4741] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(420), - [4744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2959), - [4746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2959), - [4748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2844), - [4750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6203), - [4752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2), - [4754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2), - [4756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dependent_field_identifier, 2), - [4758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dependent_field_identifier, 2), - [4760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2637), - [4762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4840), - [4764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_declarator, 4, .production_id = 140), - [4766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_declarator, 4, .production_id = 140), - [4768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 4), - [4770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 4), - [4772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), - [4774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 49), - [4776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1545), - [4778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1546), - [4780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), - [4782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), - [4784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1549), - [4786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1550), - [4788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1551), - [4790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), - [4792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1553), - [4794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), - [4796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1554), - [4798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), - [4800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, .production_id = 49), - [4802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), - [4804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1547), - [4806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1548), - [4808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), - [4810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), - [4812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2554), - [4814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5133), - [4816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5133), - [4818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_expression, 5), - [4820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete_expression, 5), - [4822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constraint_disjunction, 3, .production_id = 49), - [4824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint_disjunction, 3, .production_id = 49), - [4826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4235), - [4828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4235), - [4830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [4832] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), SHIFT(6341), - [4835] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), SHIFT(4944), - [4838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1706), - [4840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), - [4842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 66), - [4844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 66), - [4846] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 66), SHIFT(345), - [4849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 67), - [4851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 67), - [4853] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(5221), - [4856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(5683), - [4859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_expression, 3), - [4861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete_expression, 3), - [4863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 5), - [4865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 5), - [4867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, .production_id = 105), - [4869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, .production_id = 105), - [4871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_method, 2, .production_id = 103), - [4873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_method, 2, .production_id = 103), - [4875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 7), - [4877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 7), - [4879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(226), - [4881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 49), - [4883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 49), - [4885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 6, .production_id = 150), - [4887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 6, .production_id = 150), - [4889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_expression, 2, .production_id = 4), - [4891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_expression, 2, .production_id = 4), - [4893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5, .production_id = 144), - [4895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 5, .production_id = 144), - [4897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), - [4899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), - [4901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), - [4903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 5, .production_id = 141), - [4905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 5, .production_id = 141), - [4907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_name, 3), - [4909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_name, 3), - [4911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 5, .production_id = 131), - [4913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 5, .production_id = 131), - [4915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6341), - [4917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requires_clause, 2, .production_id = 19), - [4919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_clause, 2, .production_id = 19), - [4921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4195), - [4923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4195), - [4925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2679), - [4927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 5, .production_id = 118), - [4929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 5, .production_id = 118), - [4931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 5, .production_id = 117), - [4933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 5, .production_id = 117), - [4935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_literal_expression, 2, .production_id = 28), - [4937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_literal_expression, 2, .production_id = 28), - [4939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 2), - [4941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 26), - [4943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 26), - [4945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3386), - [4947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pack_expansion, 2, .production_id = 25), - [4949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pack_expansion, 2, .production_id = 25), - [4951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4204), - [4953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4220), - [4955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4204), - [4957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4220), - [4959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_co_await_expression, 2, .production_id = 4), - [4961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_co_await_expression, 2, .production_id = 4), - [4963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, .production_id = 56), - [4965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, .production_id = 56), - [4967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, .production_id = 96), - [4969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, .production_id = 96), - [4971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, .production_id = 95), - [4973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, .production_id = 95), - [4975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_expression, 4), - [4977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete_expression, 4), - [4979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 3), - [4981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 3), - [4983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, .production_id = 4), - [4985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 4), - [4987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 4), - [4989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 4), - [4991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 2, .production_id = 12), - [4993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 2, .production_id = 12), - [4995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_user_defined_literal, 2), - [4997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_user_defined_literal, 2), - [4999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, .production_id = 80), - [5001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, .production_id = 80), - [5003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_expression, 2), - [5005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete_expression, 2), - [5007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_literal_expression, 4, .production_id = 77), - [5009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_literal_expression, 4, .production_id = 77), - [5011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 4, .production_id = 77), - [5013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 4, .production_id = 77), - [5015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2706), - [5017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), - [5019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5116), - [5021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1728), - [5023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1595), - [5025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), - [5027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), - [5029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1555), - [5031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1558), - [5033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1560), - [5035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), - [5037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1590), - [5039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), - [5041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1602), - [5043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), - [5045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1542), - [5047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1543), - [5049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), - [5051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), - [5053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2747), - [5055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2798), - [5057] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(402), - [5060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2748), - [5062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), - [5064] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 66), SHIFT(438), - [5067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1568), - [5069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), - [5071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3066), - [5073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), - [5075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2739), - [5077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1468), - [5079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1470), - [5081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1477), - [5083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1480), - [5085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1481), - [5087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), - [5089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), - [5091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1485), - [5093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1482), - [5095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1487), - [5097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), - [5099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), - [5101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1510), - [5103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), - [5105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1514), - [5107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1508), - [5109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1507), - [5111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1505), - [5113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6382), - [5115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), - [5117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6380), - [5119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6378), - [5121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6377), - [5123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6376), - [5125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6339), - [5127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6374), - [5129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6373), - [5131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6372), - [5133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6371), - [5135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6370), - [5137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), - [5139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), - [5141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), - [5143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), - [5145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), - [5147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), - [5149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), - [5151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3028), - [5153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6369), - [5155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6368), - [5157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6081), - [5159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4561), - [5161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2996), - [5163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2758), - [5165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4212), - [5167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4211), - [5169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4212), - [5171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4211), - [5173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2948), - [5175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), - [5177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3439), - [5179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_parameter_list, 2), - [5181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_parameter_list, 2), - [5183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_parameter_list, 4), - [5185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_parameter_list, 4), - [5187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_parameter_list, 3), - [5189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_parameter_list, 3), - [5191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3177), - [5193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2500), - [5195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3034), - [5197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4768), - [5199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2548), - [5201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1632), - [5203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1607), - [5205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), - [5207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1532), - [5209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1537), - [5211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), - [5213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), - [5215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2908), - [5217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5118), - [5219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5118), - [5221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), - [5223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), - [5225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1675), - [5227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1527), - [5229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1529), - [5231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1594), - [5233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1585), - [5235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), - [5237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), - [5239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2910), - [5241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), - [5243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2969), - [5245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6188), - [5247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 66), SHIFT(402), - [5250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2994), - [5252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5215), - [5254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1612), - [5256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1616), - [5258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), - [5260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), - [5262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1628), - [5264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1671), - [5266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1702), - [5268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), - [5270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1716), - [5272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), - [5274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1719), - [5276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), - [5278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1620), - [5280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1626), - [5282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), - [5284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), - [5286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5141), - [5288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5141), - [5290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1631), - [5292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1633), - [5294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), - [5296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), - [5298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1649), - [5300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1650), - [5302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1652), - [5304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), - [5306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1657), - [5308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), - [5310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1660), - [5312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), - [5314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), - [5316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), - [5318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4210), - [5320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4210), - [5322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, .dynamic_precedence = 1), - [5324] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 66), SHIFT(408), - [5327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [5329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3816), - [5331] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(5337), - [5334] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(5993), - [5337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), - [5339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4208), - [5341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4208), - [5343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4245), - [5345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4246), - [5347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3079), - [5349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4025), - [5351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4025), - [5353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6349), - [5355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5087), - [5357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3115), - [5359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4038), - [5361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4038), - [5363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4639), - [5365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_storage_class_specifier, 1), - [5367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_storage_class_specifier, 1), - [5369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5315), - [5371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3082), - [5373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4018), - [5375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4018), - [5377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3104), - [5379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4020), - [5381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4020), - [5383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [5385] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(3088), - [5388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_requirement, 5), - [5390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_requirement, 5), - [5392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_requirement, 6), - [5394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_requirement, 6), - [5396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_requirement, 2), - [5398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_requirement, 2), - [5400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__requirement, 1, .production_id = 59), - [5402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__requirement, 1, .production_id = 59), - [5404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_requirement, 4), - [5406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_requirement, 4), - [5408] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, .production_id = 32), SHIFT(444), - [5411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), - [5413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [5415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), - [5417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), - [5419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 17), - [5421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 17), - [5423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3229), - [5425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6465), - [5427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4627), - [5429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 1, .production_id = 2), - [5431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 1, .production_id = 2), - [5433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_virtual, 1), - [5435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_virtual, 1), - [5437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), - [5439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__binary_fold_operator, 3, .production_id = 114), - [5441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_fold_operator, 3, .production_id = 114), - [5443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), - [5445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [5447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4438), - [5449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4649), - [5451] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), SHIFT(3252), - [5454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3088), - [5456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3249), - [5458] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, .production_id = 32), SHIFT(439), - [5461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5340), - [5463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 1, .production_id = 51), - [5465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3230), - [5467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3230), - [5469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), - [5471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3224), - [5473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3224), - [5475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), - [5477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), - [5479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), - [5481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5097), - [5483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 3, .production_id = 17), - [5485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 3, .production_id = 17), - [5487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 2), - [5489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 2), - [5491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5106), - [5493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5300), - [5495] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(3200), - [5498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4097), - [5500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4572), - [5502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4997), - [5504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2541), - [5506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5114), - [5508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5111), - [5510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), - [5512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), - [5514] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(3704), - [5517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(6261), - [5520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(5722), - [5523] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(6263), - [5526] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(3776), - [5529] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(3693), - [5532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4617), - [5534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3905), - [5536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4697), - [5538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3971), - [5540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4733), - [5542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4156), - [5544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4178), - [5546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4181), - [5548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3939), - [5550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_reference_declarator, 1), - [5552] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__constructor_specifiers, 1), REDUCE(aux_sym__declaration_specifiers_repeat1, 1), - [5555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constructor_specifiers, 1), - [5557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constructor_specifiers, 1), - [5559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__constructor_specifiers, 1), REDUCE(aux_sym__declaration_specifiers_repeat1, 1), - [5562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 1), - [5564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_declspec_modifier, 4), - [5566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_declspec_modifier, 4), - [5568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4106), - [5570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4989), - [5572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3003), - [5574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4088), - [5576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5024), - [5578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4040), - [5580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4264), - [5582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4721), - [5584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4148), - [5586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4147), - [5588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4146), - [5590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4265), - [5592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6498), - [5594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3997), - [5596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3252), - [5598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5035), - [5600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4661), - [5602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4140), - [5604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4126), - [5606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4124), - [5608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3963), - [5610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4725), - [5612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4129), - [5614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4128), - [5616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4127), - [5618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3984), - [5620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2374), - [5622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2), - [5624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2), - [5626] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2), SHIFT_REPEAT(3704), - [5629] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2), SHIFT_REPEAT(6261), - [5632] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2), SHIFT_REPEAT(5722), - [5635] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2), SHIFT_REPEAT(6263), - [5638] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2), SHIFT_REPEAT(3776), - [5641] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2), SHIFT_REPEAT(3693), - [5644] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2), SHIFT_REPEAT(3988), - [5647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [5649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2314), - [5651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, .production_id = 20), - [5653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4459), - [5655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4459), - [5657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6458), - [5659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_declarator_seq, 1, .production_id = 20), - [5661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), - [5663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3218), - [5665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4567), - [5667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6246), - [5669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4214), - [5671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [5673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, .production_id = 20), - [5675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_declarator_seq, 2, .production_id = 20), - [5677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [5679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), - [5681] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(3247), - [5684] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(6458), - [5687] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(5767), - [5690] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(6414), - [5693] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(2163), - [5696] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(3158), - [5699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_declaration, 2, .production_id = 94), - [5701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3967), - [5703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), - [5705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4052), - [5707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6409), - [5709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5732), - [5711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6410), - [5713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3488), - [5715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3606), - [5717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6141), - [5719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4057), - [5721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [5723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3375), - [5725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4238), - [5727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4236), - [5729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6409), - [5731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3488), - [5733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3213), - [5735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4196), - [5737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4595), - [5739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), - [5741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1735), - [5743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1744), - [5745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), - [5747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1759), - [5749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), - [5751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), - [5753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1737), - [5755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), - [5757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1707), - [5759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), - [5761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1697), - [5763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), - [5765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), - [5767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), - [5769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), - [5771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), - [5773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3351), - [5775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [5777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2248), - [5779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [5781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), - [5783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), - [5785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), - [5787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), - [5789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [5791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3323), - [5793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [5795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [5797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3801), - [5799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [5801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1570), - [5803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), - [5805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1605), - [5807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), - [5809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), - [5811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1661), - [5813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), - [5815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1679), - [5817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), - [5819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1753), - [5821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), - [5823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1751), - [5825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), - [5827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), - [5829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), - [5831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), - [5833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3799), - [5835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3108), - [5837] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2), SHIFT(1461), - [5840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comma_expression, 3, .production_id = 65), - [5842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2), - [5844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), - [5846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2696), - [5848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2588), - [5850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5285), - [5852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3038), - [5854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), - [5856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), - [5858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3731), - [5860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), - [5862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 1, .production_id = 2), - [5864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), - [5866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3874), - [5868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4109), - [5870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4109), - [5872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1141), - [5874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3229), - [5876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6465), - [5878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), - [5880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2742), - [5882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), - [5884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declarator, 3, .production_id = 98), - [5886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_declaration, 4, .production_id = 155), - [5888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, .production_id = 17), - [5890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3519), - [5892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), - [5894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2575), - [5896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3268), - [5898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4775), - [5900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4206), - [5902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), - [5904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), - [5906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3031), - [5908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), - [5910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1592), - [5912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), - [5914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1586), - [5916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), - [5918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), - [5920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1544), - [5922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), - [5924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1562), - [5926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), - [5928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1591), - [5930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), - [5932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), - [5934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5104), - [5936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), - [5938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), - [5940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), - [5942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), - [5944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), - [5946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3140), - [5948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2460), - [5950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, .production_id = 20), - [5952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_declarator_seq, 3, .production_id = 20), - [5954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3074), - [5956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2774), - [5958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), - [5960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5000), - [5962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), - [5964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), - [5966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), - [5968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), - [5970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), - [5972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4061), - [5974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3238), - [5976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4270), - [5978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2886), - [5980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5023), - [5982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), - [5984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2982), - [5986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), - [5988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3228), - [5990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4247), - [5992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), - [5994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5107), - [5996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), - [5998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3784), - [6000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [6002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [6004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [6006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [6008] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), - [6011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [6013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4783), - [6015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6417), - [6017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [6019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), - [6021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), - [6023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [6025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), - [6027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [6029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [6031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [6033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [6035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter_declaration, 4, .production_id = 160), - [6037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), - [6039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [6041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), - [6043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [6045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), - [6047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4798), - [6049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6021), - [6051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [6053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [6055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3087), - [6057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter_declaration, 3, .production_id = 134), - [6059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [6061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [6063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [6065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [6067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), - [6069] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1), SHIFT(1355), - [6072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [6074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [6076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4761), - [6078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6313), - [6080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), - [6082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [6084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), - [6086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [6088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), - [6090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [6092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [6094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [6096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [6098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [6100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [6102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [6104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [6106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3263), - [6108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4224), - [6110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [6112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [6114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [6116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [6118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [6120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [6122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), - [6124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [6126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [6128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [6130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [6132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4749), - [6134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6232), - [6136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_argument_list_repeat1, 2, .dynamic_precedence = 1), - [6138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_pair, 3, .production_id = 130), - [6140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), - [6142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), - [6144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), SHIFT(3621), - [6147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3200), - [6149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3620), - [6151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), - [6153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), - [6155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), - [6157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), - [6159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), - [6161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), - [6163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), - [6165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4773), - [6167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6179), - [6169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [6171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4756), - [6173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6139), - [6175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3878), - [6177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4152), - [6179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4152), - [6181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3606), - [6183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6141), - [6185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [6187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4788), - [6189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6545), - [6191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), - [6193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_lambda_capture_specifier_repeat1, 2), - [6195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), - [6197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(4052), - [6200] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(6409), - [6203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(5732), - [6206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(6410), - [6209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(3488), - [6212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(4057), - [6215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 3, .production_id = 120), - [6217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [6219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), - [6221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), - [6223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), - [6225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), - [6227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4130), - [6229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [6231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [6233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1572), - [6235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), - [6237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1694), - [6239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), - [6241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), - [6243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1565), - [6245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), - [6247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1573), - [6249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), - [6251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1526), - [6253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), - [6255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), - [6257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), - [6259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), - [6261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), - [6263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), - [6265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), - [6267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), - [6269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_fold, 3, .production_id = 76), - [6271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [6273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2387), - [6275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), - [6277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [6279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [6281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [6283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [6285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [6287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), - [6289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2310), - [6291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4923), - [6293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4474), - [6295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3783), - [6297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4478), - [6299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4478), - [6301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4203), - [6303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), - [6305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2297), - [6307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [6309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), - [6311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bitfield_clause, 2), - [6313] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1), SHIFT(1372), - [6316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [6318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), - [6320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3995), - [6322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2606), - [6324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), - [6326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4526), - [6328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [6330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3197), - [6332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4621), - [6334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2443), - [6336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [6338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), - [6340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), - [6342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [6344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), - [6346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [6348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [6350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2410), - [6352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5236), - [6354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [6356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2835), - [6358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [6360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), - [6362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), - [6364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), - [6366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3447), - [6368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2730), - [6370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), - [6372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4207), - [6374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2979), - [6376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [6378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), - [6380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), - [6382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [6384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), - [6386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [6388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [6390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2441), - [6392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [6394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [6396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), - [6398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [6400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2251), - [6402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), - [6404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [6406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2860), - [6408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [6410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), - [6412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [6414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2420), - [6416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [6418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5137), - [6420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3822), - [6422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4510), - [6424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4510), - [6426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), - [6428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), - [6430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unary_left_fold, 3, .production_id = 49), - [6432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [6434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), - [6436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5470), - [6438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [6440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), - [6442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2806), - [6444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3220), - [6446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2395), - [6448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), - [6450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), - [6452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [6454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), - [6456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [6458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [6460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), - [6462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), - [6464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [6466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [6468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), - [6470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [6472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [6474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), - [6476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declarator, 1), - [6478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3274), - [6480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4266), - [6482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3928), - [6484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4276), - [6486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4276), - [6488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3573), - [6490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5433), - [6492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_declaration, 1), - [6494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3951), - [6496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, .production_id = 2), - [6498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4638), - [6500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, .production_id = 17), - [6502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3247), - [6504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6414), - [6506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3158), - [6508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3982), - [6510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4389), - [6512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4389), - [6514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), - [6516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3925), - [6518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4243), - [6520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6253), - [6522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1966), - [6524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5022), - [6526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1866), - [6528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2017), - [6530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4680), - [6532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4171), - [6534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4170), - [6536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4169), - [6538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2015), - [6540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6436), - [6542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3985), - [6544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2580), - [6546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5036), - [6548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1976), - [6550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2737), - [6552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4731), - [6554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4165), - [6556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4167), - [6558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4173), - [6560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2738), - [6562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6411), - [6564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3944), - [6566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3332), - [6568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5020), - [6570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4689), - [6572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4187), - [6574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4182), - [6576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4179), - [6578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3938), - [6580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2390), - [6582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5025), - [6584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1946), - [6586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2687), - [6588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4706), - [6590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4174), - [6592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4161), - [6594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4154), - [6596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2691), - [6598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6493), - [6600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3940), - [6602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4012), - [6604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4416), - [6606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4416), - [6608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3621), - [6610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3149), - [6612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4990), - [6614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4681), - [6616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4160), - [6618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4158), - [6620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4157), - [6622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3954), - [6624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2120), - [6626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5001), - [6628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1903), - [6630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2320), - [6632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4664), - [6634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4185), - [6636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4186), - [6638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4191), - [6640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2319), - [6642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6484), - [6644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3998), - [6646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_call_modifier, 1), - [6648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_call_modifier, 1), - [6650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4635), - [6652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4051), - [6654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4457), - [6656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4457), - [6658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__function_declarator_seq_repeat1, 2), - [6660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__function_declarator_seq_repeat1, 2), - [6662] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_declarator_seq_repeat1, 2), SHIFT_REPEAT(6458), - [6665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_explicit_function_specifier, 1), - [6667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), - [6669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_explicit_function_specifier, 1), - [6671] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(3247), - [6674] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(6458), - [6677] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(5910), - [6680] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(6414), - [6683] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(2163), - [6686] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(3158), - [6689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_explicit_function_specifier, 4), - [6691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_explicit_function_specifier, 4), - [6693] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(2163), - [6696] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(2163), - [6699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [6701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [6703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 3), - [6705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 3), - [6707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5124), - [6709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4891), - [6711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4037), - [6713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [6715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 4), - [6717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 4), - [6719] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(4033), - [6722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4643), - [6724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4237), - [6726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4033), - [6728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4239), - [6730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 2), - [6732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 2), - [6734] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_declarator_seq_repeat1, 2), SHIFT_REPEAT(6409), - [6737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), - [6739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), - [6741] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), SHIFT_REPEAT(4091), - [6744] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), SHIFT_REPEAT(4103), - [6747] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(3488), - [6750] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(3488), - [6753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4630), - [6755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3329), - [6757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [6759] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(3925), - [6762] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(3925), - [6765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), - [6767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), - [6769] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT_REPEAT(5722), - [6772] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameter_list, 2), REDUCE(sym_argument_list, 2), - [6775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4633), - [6777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3127), - [6779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [6781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), - [6783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3360), - [6785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5172), - [6787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_pointer_modifier, 1), - [6789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_pointer_modifier, 1), - [6791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4644), - [6793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1955), - [6795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [6797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), - [6799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2752), - [6801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5321), - [6803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1988), - [6805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [6807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), - [6809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2971), - [6811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5297), - [6813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5259), - [6815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4624), - [6817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2044), - [6819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [6821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), - [6823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3029), - [6825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5276), - [6827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1924), - [6829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [6831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), - [6833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2559), - [6835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5174), - [6837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1), - [6839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1), - [6841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3164), - [6843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [6845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), - [6847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3766), - [6849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5257), - [6851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, .production_id = 20), - [6853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_declarator_seq, 4, .production_id = 20), - [6855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3138), - [6857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3086), - [6859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4029), - [6861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4979), - [6863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4600), - [6865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4011), - [6867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4048), - [6869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), - [6871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), - [6873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), - [6875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2304), - [6877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), - [6879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2278), - [6881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), - [6883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2167), - [6885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), - [6887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5029), - [6889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2455), - [6891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5234), - [6893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), - [6895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4532), - [6897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5364), - [6899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4543), - [6901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1859), - [6903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4536), - [6905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), - [6907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5003), - [6909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4753), - [6911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3185), - [6913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), - [6915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3403), - [6917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), - [6919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2565), - [6921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), - [6923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4817), - [6925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5252), - [6927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3714), - [6929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [6931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2931), - [6933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2873), - [6935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), - [6937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2761), - [6939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2760), - [6941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__preproc_expression, 1), - [6943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4272), - [6945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__preproc_expression, 1), - [6947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4506), - [6949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4900), - [6951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4520), - [6953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2561), - [6955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4828), - [6957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5041), - [6959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4844), - [6961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3354), - [6963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), - [6965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3041), - [6967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3042), - [6969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4726), - [6971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2533), - [6973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4740), - [6975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4747), - [6977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4988), - [6979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4911), - [6981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4729), - [6983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4556), - [6985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4787), - [6987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4213), - [6989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4387), - [6991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4349), - [6993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5994), - [6995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4333), - [6997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4333), - [6999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4284), - [7001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5736), - [7003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4422), - [7005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4285), - [7007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4275), - [7009] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), - [7011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4391), - [7013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4309), - [7015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4310), - [7017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4300), - [7019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4300), - [7021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4299), - [7023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4297), - [7025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4295), - [7027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4290), - [7029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4301), - [7031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4304), - [7033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4408), - [7035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4408), - [7037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4302), - [7039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4442), - [7041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4341), - [7043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 4), - [7045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 4), - [7047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4373), - [7049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4380), - [7051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4282), - [7053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4346), - [7055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5795), - [7057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4338), - [7059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4338), - [7061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4421), - [7063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5729), - [7065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4381), - [7067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4382), - [7069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4337), - [7071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4316), - [7073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4320), - [7075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, .production_id = 20), - [7077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_declarator_seq, 6, .production_id = 20), - [7079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 3), - [7081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 3), - [7083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4384), - [7085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_unary_expression, 2, .production_id = 4), - [7087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_unary_expression, 2, .production_id = 4), - [7089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 2), - [7091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 2), - [7093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, .production_id = 20), - [7095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_declarator_seq, 5, .production_id = 20), - [7097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call_expression, 2, .production_id = 7), - [7099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call_expression, 2, .production_id = 7), - [7101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_binary_expression, 3, .production_id = 49), - [7103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_binary_expression, 3, .production_id = 49), - [7105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 4), - [7107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 4), - [7109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4463), - [7111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), - [7113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), - [7115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [7117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1144), - [7119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), - [7121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5803), - [7123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4424), - [7125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), - [7127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [7129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [7131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5829), - [7133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4311), - [7135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4447), - [7137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2240), - [7139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [7141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), - [7143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5737), - [7145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4423), - [7147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4414), - [7149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4439), - [7151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4428), - [7153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4434), - [7155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4410), - [7157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_parenthesized_expression, 3), - [7159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_parenthesized_expression, 3), - [7161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4444), - [7163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4453), - [7165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4445), - [7167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4429), - [7169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4437), - [7171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4431), - [7173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4451), - [7175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4452), - [7177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4450), - [7179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4448), - [7181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4446), - [7183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4430), - [7185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 2), - [7187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 2), - [7189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4417), - [7191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4394), - [7193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2), - [7195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4319), - [7197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [7199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4359), - [7201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4360), - [7203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4361), - [7205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4362), - [7207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4363), - [7209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4364), - [7211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4365), - [7213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4366), - [7215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4367), - [7217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4369), - [7219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [7221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [7223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [7225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [7227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [7229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5150), - [7231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [7233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [7235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4357), - [7237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4411), - [7239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [7241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1), SHIFT(1339), - [7244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3873), - [7246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5530), - [7248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3887), - [7250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5671), - [7252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ref_qualifier, 1), - [7254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ref_qualifier, 1), - [7256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1768), - [7258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6630), - [7260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4460), - [7262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5602), - [7264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(897), - [7266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), - [7268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [7270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [7272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3961), - [7274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [7276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [7278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [7280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1151), - [7282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), - [7284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5731), - [7286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [7288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4259), - [7290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [7292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [7294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4998), - [7296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5507), - [7298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), - [7300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [7302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [7304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [7306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2401), - [7308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4219), - [7310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4198), - [7312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [7314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [7316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [7318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5719), - [7320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), - [7322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [7324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [7326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5678), - [7328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [7330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [7332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5984), - [7334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_noexcept, 4), - [7336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_noexcept, 4), - [7338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declarator_seq, 8, .production_id = 20), - [7340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_declarator_seq, 8, .production_id = 20), - [7342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4269), - [7344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4197), - [7346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2130), - [7348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6351), - [7350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4534), - [7352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5655), - [7354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2244), - [7356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1849), - [7358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6268), - [7360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4537), - [7362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5388), - [7364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2365), - [7366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_specifier, 4), - [7368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_specifier, 4), - [7370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2279), - [7372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4540), - [7374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5525), - [7376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2405), - [7378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declarator_seq, 7, .production_id = 20), - [7380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_declarator_seq, 7, .production_id = 20), - [7382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_specifier, 5), - [7384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_specifier, 5), - [7386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1898), - [7388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6206), - [7390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4544), - [7392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5476), - [7394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2381), - [7396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1764), - [7398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4551), - [7400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5520), - [7402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2166), - [7404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6483), - [7406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4552), - [7408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5564), - [7410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2242), - [7412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3632), - [7414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5531), - [7416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3892), - [7418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5626), - [7420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_noexcept, 1), - [7422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), - [7424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_noexcept, 1), - [7426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2620), - [7428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4570), - [7430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5550), - [7432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_specifier, 3), - [7434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_specifier, 3), - [7436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_noexcept, 3), - [7438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_noexcept, 3), - [7440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1795), - [7442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4577), - [7444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5622), - [7446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1788), - [7448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4580), - [7450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5594), - [7452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__function_declarator_seq_repeat2, 2), - [7454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__function_declarator_seq_repeat2, 2), - [7456] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_declarator_seq_repeat2, 2), SHIFT_REPEAT(4649), - [7459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2359), - [7461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4584), - [7463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5556), - [7465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1838), - [7467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4585), - [7469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5460), - [7471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, .dynamic_precedence = 1, .production_id = 5), - [7473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1140), - [7475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5349), - [7477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4590), - [7479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5410), - [7481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), - [7483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), - [7485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2213), - [7487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3154), - [7489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), - [7491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4710), - [7493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5430), - [7495] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_declarator_seq_repeat2, 2), SHIFT_REPEAT(4775), - [7498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), - [7500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 4, .production_id = 115), - [7502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 3, .dynamic_precedence = 1, .production_id = 38), - [7504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, .production_id = 57), - [7506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, .production_id = 75), - [7508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_reference_declarator, 2), - [7510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), - [7512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1978), - [7514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3288), - [7516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, .production_id = 36), - [7518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4009), - [7520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT_REPEAT(5732), - [7523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3152), - [7525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2542), - [7527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), - [7529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5062), - [7531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5593), - [7533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), - [7535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2064), - [7537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3), - [7539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 3), - [7541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_parenthesized_declarator, 3), - [7543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_parenthesized_declarator, 3), - [7545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_virtual_specifier, 1), - [7547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_virtual_specifier, 1), - [7549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_declarator, 2, .dynamic_precedence = 1), - [7551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4829), - [7553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 2, .dynamic_precedence = 1, .production_id = 5), - [7555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 23), - [7557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 23), - [7559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4831), - [7561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4839), - [7563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4822), - [7565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 3, .dynamic_precedence = 1, .production_id = 38), - [7567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6513), - [7569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 145), - [7571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 145), - [7573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4873), - [7575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6528), - [7577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 4, .dynamic_precedence = 1, .production_id = 78), - [7579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4834), - [7581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4832), - [7583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 2), - [7585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 2), - [7587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 2, .production_id = 21), - [7589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_function_declarator, 2, .production_id = 21), - [7591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 5, .dynamic_precedence = 1, .production_id = 142), - [7593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__abstract_declarator, 1), - [7595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__abstract_declarator, 1), - [7597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4843), - [7599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6219), - [7601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4830), - [7603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 1, .production_id = 30), - [7605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_function_declarator, 1, .production_id = 30), - [7607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trailing_return_type, 2), - [7609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trailing_return_type, 2), - [7611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, .production_id = 23), - [7613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 3, .production_id = 23), - [7615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4819), - [7617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4876), - [7619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6386), - [7621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4866), - [7623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 102), - [7625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 102), - [7627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6294), - [7629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4861), - [7631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), - [7633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6134), - [7635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6171), - [7637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4836), - [7639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4859), - [7641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4267), - [7643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4268), - [7645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 5, .production_id = 143), - [7647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 5, .production_id = 143), - [7649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4872), - [7651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4863), - [7653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, .production_id = 107), - [7655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 3, .production_id = 107), - [7657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 5, .dynamic_precedence = 1, .production_id = 142), - [7659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, .production_id = 5), - [7661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [7663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5927), - [7665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4906), - [7667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5182), - [7669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4257), - [7671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), - [7673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [7675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5680), - [7677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5187), - [7679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), - [7681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [7683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5784), - [7685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5269), - [7687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), - [7689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4200), - [7691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [7693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5744), - [7695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5333), - [7697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), - [7699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5765), - [7701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5355), - [7703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 3, .dynamic_precedence = 1, .production_id = 38), - [7705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [7707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 4, .dynamic_precedence = 1, .production_id = 78), - [7709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [7711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), - [7713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4199), - [7715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2299), - [7717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [7719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5807), - [7721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5169), - [7723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [7725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6002), - [7727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5210), - [7729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 2, .dynamic_precedence = 1, .production_id = 5), - [7731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2313), - [7733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_field_declarator, 2, .dynamic_precedence = 1), - [7735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2256), - [7737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4258), - [7739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [7741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4234), - [7743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4221), - [7745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4889), - [7747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 2, .production_id = 5), - [7749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_declarator, 2), - [7751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_declarator, 2), - [7753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT_REPEAT(5910), - [7756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), - [7758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5082), - [7760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4978), - [7762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 4, .production_id = 102), - [7764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 4, .production_id = 102), - [7766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5049), - [7768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5007), - [7770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5080), - [7772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5031), - [7774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_field_declarator, 2), - [7776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_field_declarator, 2), - [7778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4229), - [7780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 2, .dynamic_precedence = 1, .production_id = 21), - [7782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 2, .dynamic_precedence = 1, .production_id = 21), - [7784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 3, .production_id = 23), - [7786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 3, .production_id = 23), - [7788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5109), - [7790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4934), - [7792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4215), - [7794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5053), - [7796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4996), - [7798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declarator, 1, .production_id = 90), - [7800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [7802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declarator, 1, .production_id = 90), - [7804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5064), - [7806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4985), - [7808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_declarator, 3, .dynamic_precedence = -10), - [7810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_declarator, 3, .dynamic_precedence = -10), - [7812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5078), - [7814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5014), - [7816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5158), - [7818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5656), - [7820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_structured_binding_declarator, 4, .dynamic_precedence = -1), - [7822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_structured_binding_declarator, 4, .dynamic_precedence = -1), - [7824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 5, .production_id = 143), - [7826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 5, .production_id = 143), - [7828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5051), - [7830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4993), - [7832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 4, .production_id = 23), - [7834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 4, .production_id = 23), - [7836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_structured_binding_declarator, 3, .dynamic_precedence = -1), - [7838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_structured_binding_declarator, 3, .dynamic_precedence = -1), - [7840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_field_declarator, 3, .dynamic_precedence = -10), - [7842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_field_declarator, 3, .dynamic_precedence = -10), - [7844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 2, .production_id = 61), - [7846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), - [7848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), - [7850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2987), - [7852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4980), - [7854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), - [7856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, .production_id = 102), - [7858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 4, .production_id = 102), - [7860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_field_declarator, 2, .dynamic_precedence = 1, .production_id = 21), - [7862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_field_declarator, 2, .dynamic_precedence = 1, .production_id = 21), - [7864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declarator, 1), - [7866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declarator, 1), - [7868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 3, .production_id = 23), - [7870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 3, .production_id = 23), - [7872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, .production_id = 23), - [7874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 4, .production_id = 23), - [7876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4621), - [7878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 5, .production_id = 143), - [7880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 5, .production_id = 143), - [7882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5347), - [7884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3145), - [7886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2946), - [7888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5738), - [7890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 5, .dynamic_precedence = 1, .production_id = 142), - [7892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1142), - [7894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4904), - [7896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [7898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [7900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5204), - [7902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [7904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5535), - [7906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5312), - [7908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6604), - [7910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4227), - [7912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4252), - [7914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4013), - [7916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5799), - [7918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3126), - [7920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6000), - [7922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), - [7924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5353), - [7926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), - [7928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), - [7930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5278), - [7932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4027), - [7934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5542), - [7936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6189), - [7938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1930), - [7940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5843), - [7942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5483), - [7944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6357), - [7946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4579), - [7948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5933), - [7950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [7952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5220), - [7954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), - [7956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [7958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5301), - [7960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5534), - [7962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6496), - [7964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3919), - [7966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3914), - [7968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), - [7970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 4, .dynamic_precedence = 1, .production_id = 78), - [7972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3172), - [7974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), - [7976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1920), - [7978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5889), - [7980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_capture_specifier, 3), - [7982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_capture_specifier, 3), - [7984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_designator, 3), - [7986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4014), - [7988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5686), - [7990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2005), - [7992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5705), - [7994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [7996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), - [7998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2168), - [8000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5769), - [8002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [8004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5270), - [8006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), - [8008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3097), - [8010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5740), - [8012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2151), - [8014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5943), - [8016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 3, .dynamic_precedence = 1, .production_id = 38), - [8018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [8020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 2, .dynamic_precedence = 1, .production_id = 5), - [8022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [8024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), - [8026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3256), - [8028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2347), - [8030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3283), - [8032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [8034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3222), - [8036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [8038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__scope_resolution, 1), - [8040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__scope_resolution, 1), - [8042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1564), - [8044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3895), - [8046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), - [8048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), - [8050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_type_declarator, 2), - [8052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_type_declarator, 2), - [8054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4947), - [8056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), - [8058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), - [8060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [8062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3243), - [8064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1691), - [8066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3908), - [8068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), - [8070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1635), - [8072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3897), - [8074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1688), - [8076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3899), - [8078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1756), - [8080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), - [8082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [8084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [8086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [8088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), - [8090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3276), - [8092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), - [8094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), - [8096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), - [8098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3281), - [8100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat2, 2, .production_id = 5), - [8102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2238), - [8104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3211), - [8106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), - [8108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1600), - [8110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3910), - [8112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1740), - [8114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), - [8116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_cast, 3, .production_id = 53), - [8118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4928), - [8120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1693), - [8122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3909), - [8124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1571), - [8126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3917), - [8128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [8130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), - [8132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [8134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), - [8136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), - [8138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5298), - [8140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5151), - [8142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6599), - [8144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5385), - [8146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_capture_specifier, 4), - [8148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_capture_specifier, 4), - [8150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_capture_specifier, 6), - [8152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_capture_specifier, 6), - [8154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5318), - [8156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5170), - [8158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5421), - [8160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_capture_specifier, 5), - [8162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_capture_specifier, 5), - [8164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5122), - [8166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5264), - [8168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5466), - [8170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5641), - [8172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), - [8174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), - [8176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6287), - [8178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2683), - [8180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5968), - [8182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2841), - [8184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5920), - [8186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), - [8188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), - [8190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2373), - [8192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), - [8194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__scope_resolution, 2, .production_id = 27), - [8196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__scope_resolution, 2, .production_id = 27), - [8198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type_declarator, 3, .dynamic_precedence = -10), - [8200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type_declarator, 3, .dynamic_precedence = -10), - [8202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 3, .production_id = 23), - [8204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 3, .production_id = 23), - [8206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, .production_id = 1), - [8208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, .production_id = 1), - [8210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 2, .production_id = 100), SHIFT_REPEAT(4463), - [8213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 2, .production_id = 100), - [8215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), - [8217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), - [8219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, .production_id = 102), - [8221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, .production_id = 102), - [8223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [8225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), - [8227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), - [8229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), - [8231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2), SHIFT_REPEAT(1664), - [8234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2), - [8236] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2), SHIFT_REPEAT(6287), - [8239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1), - [8241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1), - [8243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2462), - [8245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5808), - [8247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), - [8249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), - [8251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__scope_resolution, 2, .production_id = 13), - [8253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__scope_resolution, 2, .production_id = 13), - [8255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, .production_id = 23), - [8257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, .production_id = 23), - [8259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), - [8261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), - [8263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), - [8265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), - [8267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2943), - [8269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5855), - [8271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), - [8273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), - [8275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [8277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), - [8279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), - [8281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), - [8283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), - [8285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), - [8287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [8289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), - [8291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), - [8293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), - [8295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type_declarator, 2, .production_id = 79), - [8297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type_declarator, 2, .production_id = 79), - [8299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 5, .production_id = 143), - [8301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 5, .production_id = 143), - [8303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_access_specifier, 1), - [8305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_specifier, 1), - [8307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5472), - [8309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5461), - [8311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter_declaration, 4, .production_id = 159), - [8313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5884), - [8315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5959), - [8317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter_declaration, 3, .production_id = 133), - [8319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_field_identifier, 2, .production_id = 104), - [8321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5861), - [8323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5911), - [8325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, .production_id = 6), - [8327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6350), - [8329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4648), - [8331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5152), - [8333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4804), - [8335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3253), - [8337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1937), - [8339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5332), - [8341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5332), - [8343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__namespace_specifier, 1, .production_id = 16), - [8345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5160), - [8347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5475), - [8349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4426), - [8351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_class_clause, 3), - [8353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), - [8355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5150), - [8357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5851), - [8359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), - [8361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3244), - [8363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3072), - [8365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5428), - [8367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6396), - [8369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), - [8371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1895), - [8373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5223), - [8375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5223), - [8377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6577), - [8379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2537), - [8381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4977), - [8383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2295), - [8385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2066), - [8387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5538), - [8389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6201), - [8391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [8393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), - [8395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5913), - [8397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_operator_cast_identifier, 2, .production_id = 31), - [8399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6197), - [8401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2937), - [8403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3214), - [8405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), - [8407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2833), - [8409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5307), - [8411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5307), - [8413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1894), - [8415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3146), - [8417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5640), - [8419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_class_clause, 5), - [8421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3110), - [8423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1089), - [8425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6412), - [8427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), - [8429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3123), - [8431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3278), - [8433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5371), - [8435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2781), - [8437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3277), - [8439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6190), - [8441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3251), - [8443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), - [8445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(486), - [8447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6468), - [8449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6102), - [8451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4231), - [8453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4072), - [8455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3284), - [8457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5155), - [8459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), - [8461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3217), - [8463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), - [8465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1956), - [8467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5168), - [8469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5168), - [8471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2589), - [8473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3355), - [8475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [8477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3282), - [8479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6250), - [8481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3625), - [8483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), - [8485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1844), - [8487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5316), - [8489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5316), - [8491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2260), - [8493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6299), - [8495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5544), - [8497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_class_clause, 4), - [8499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5154), - [8501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6337), - [8503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3226), - [8505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [8507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1918), - [8509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1082), - [8511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6251), - [8513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6123), - [8515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2660), - [8517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2843), - [8519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6336), - [8521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), - [8523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3234), - [8525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6286), - [8527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5247), - [8529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5247), - [8531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1919), - [8533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5302), - [8535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5302), - [8537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3350), - [8539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5273), - [8541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5273), - [8543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1855), - [8545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5159), - [8547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), - [8549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1026), - [8551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6591), - [8553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), - [8555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2), - [8557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(5332), - [8560] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(5332), - [8563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3129), - [8565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5357), - [8567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5357), - [8569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5499), - [8571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_declarator, 1), - [8573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2371), - [8575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6157), - [8577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), - [8579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3236), - [8581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), - [8583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6155), - [8585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2376), - [8587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2277), - [8589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3125), - [8591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5654), - [8593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_class_clause, 2), - [8595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), - [8597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3248), - [8599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), - [8601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, .production_id = 83), - [8603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2968), - [8605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4077), - [8607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5099), - [8609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092), - [8611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3258), - [8613] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2), SHIFT_REPEAT(5952), - [8616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2), - [8618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_structured_binding_declarator_repeat1, 2), SHIFT_REPEAT(6341), - [8621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_structured_binding_declarator_repeat1, 2), - [8623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), - [8625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3233), - [8627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4542), - [8629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), - [8631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), - [8633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), - [8635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5619), - [8637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2458), - [8639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2389), - [8641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5810), - [8643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2), SHIFT_REPEAT(5783), - [8646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2), - [8648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5755), - [8650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), - [8652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5673), - [8654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), - [8656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), - [8658] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat1, 2), SHIFT_REPEAT(5880), - [8661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat1, 2), - [8663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), - [8665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), - [8667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5880), - [8669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3131), - [8671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5415), - [8673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), - [8675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5441), - [8677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3275), - [8679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5379), - [8681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), - [8683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3056), - [8685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), - [8687] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2), SHIFT_REPEAT(4391), - [8690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), - [8692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), - [8694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), - [8696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), - [8698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), - [8700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5798), - [8702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5730), - [8704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), - [8706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [8708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3723), - [8710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), - [8712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5435), - [8714] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat2, 2, .production_id = 100), SHIFT_REPEAT(4904), - [8717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat2, 2, .production_id = 100), - [8719] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_base_class_clause_repeat1, 2), SHIFT_REPEAT(4426), - [8722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_base_class_clause_repeat1, 2), - [8724] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(1430), - [8727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5399), - [8729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), - [8731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), - [8733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [8735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5672), - [8737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), - [8739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), - [8741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), - [8743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 1, .production_id = 6), - [8745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), - [8747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3265), - [8749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5721), - [8751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5898), - [8753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_type_parameter_declaration, 2), - [8755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [8757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), - [8759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5098), - [8761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), - [8763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), - [8765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2808), - [8767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [8769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), - [8771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6453), - [8773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3219), - [8775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter_declaration, 2, .production_id = 61), - [8777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5372), - [8779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), - [8781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4935), - [8783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5698), - [8785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3007), - [8787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5964), - [8789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3900), - [8791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5105), - [8793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), - [8795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4425), - [8797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2802), - [8799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), - [8801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6004), - [8803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5967), - [8805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3245), - [8807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_lambda_capture_specifier_repeat1, 2), SHIFT_REPEAT(1689), - [8810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), - [8812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), - [8814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), - [8816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), - [8818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_designator, 2, .production_id = 93), - [8820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), - [8822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [8824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5682), - [8826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5756), - [8828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_namespace_specifier, 3), - [8830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5157), - [8832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5449), - [8834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5502), - [8836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2636), - [8838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3001), - [8840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [8842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_namespace_specifier, 2), - [8844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3904), - [8846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4944), - [8848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__namespace_specifier, 2, .production_id = 54), - [8850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), - [8852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5883), - [8854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declarator, 2, .production_id = 63), - [8856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_declaration, 3, .production_id = 126), - [8858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2), SHIFT_REPEAT(1316), - [8861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [8863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5939), - [8865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), - [8867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), - [8869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_argument_list_repeat1, 2, .dynamic_precedence = 3), - [8871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [8873] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_argument_list_repeat1, 2), SHIFT_REPEAT(500), - [8876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_argument_list_repeat1, 2), - [8878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_declarator, 2), - [8880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), - [8882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_reference_declarator, 2), - [8884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2612), - [8886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5516), - [8888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [8890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6001), - [8892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 2, .production_id = 90), - [8894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5827), - [8896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_class_clause, 7), - [8898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), - [8900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), - [8902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), - [8904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3786), - [8906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2439), - [8908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), - [8910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2640), - [8912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4071), - [8914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), - [8916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4073), - [8918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5706), - [8920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5802), - [8922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4076), - [8924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5893), - [8926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_base_class_clause_repeat1, 5), - [8928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2504), - [8930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5869), - [8932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2797), - [8934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), - [8936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [8938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5676), - [8940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5715), - [8942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [8944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [8946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5934), - [8948] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_throw_specifier_repeat1, 2), SHIFT_REPEAT(3233), - [8951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_throw_specifier_repeat1, 2), - [8953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5555), - [8955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5789), - [8957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [8959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6018), - [8961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), - [8963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [8965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), - [8967] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, .production_id = 100), SHIFT_REPEAT(3961), - [8970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, .production_id = 100), - [8972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4292), - [8974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), - [8976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5367), - [8978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2875), - [8980] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_parameter_list_repeat1, 2), SHIFT_REPEAT(1864), - [8983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_parameter_list_repeat1, 2), - [8985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5713), - [8987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), - [8989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5783), - [8991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5975), - [8993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5572), - [8995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4217), - [8997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5785), - [8999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5697), - [9001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [9003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3114), - [9005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3746), - [9007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [9009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2782), - [9011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5845), - [9013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5684), - [9015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3113), - [9017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5951), - [9019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5611), - [9021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3648), - [9023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3112), - [9025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2435), - [9027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), - [9029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4260), - [9031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5585), - [9033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), - [9035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4021), - [9037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3111), - [9039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4539), - [9041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [9043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4907), - [9045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 3), - [9047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2791), - [9049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2792), - [9051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2793), - [9053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5997), - [9055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 2), - [9057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5788), - [9059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2317), - [9061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4240), - [9063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5527), - [9065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2762), - [9067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2803), - [9069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [9071] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2), SHIFT_REPEAT(4907), - [9074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2), - [9076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3132), - [9078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5712), - [9080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5674), - [9082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5100), - [9084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4032), - [9086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2597), - [9088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [9090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [9092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [9094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5805), - [9096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [9098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2593), - [9100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [9102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), - [9104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), - [9106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3508), - [9108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3681), - [9110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2591), - [9112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), - [9114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), - [9116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), - [9118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5658), - [9120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2590), - [9122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), - [9124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), - [9126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2276), - [9128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), - [9130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5714), - [9132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5524), - [9134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), - [9136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5782), - [9138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), - [9140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), - [9142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5004), - [9144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5039), - [9146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5045), - [9148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5042), - [9150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), - [9152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3143), - [9154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3141), - [9156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requires_parameter_list_repeat1, 2), SHIFT_REPEAT(1928), - [9159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_requires_parameter_list_repeat1, 2), - [9161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3139), - [9163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5588), - [9165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2816), - [9167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), - [9169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_class_clause, 6), - [9171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5935), - [9173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_base_class_clause_repeat1, 3), - [9175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3071), - [9177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3070), - [9179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3069), - [9181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3068), - [9183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3130), - [9185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), - [9187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 2), - [9189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), - [9191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5919), - [9193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5995), - [9195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), - [9197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3670), - [9199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), - [9201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), - [9203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), - [9205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), - [9207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [9209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), - [9211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [9213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), SHIFT_REPEAT(1927), - [9216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), - [9218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5901), - [9220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_base_class_clause_repeat1, 4), - [9222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5695), - [9224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [9226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [9228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [9230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_field_identifier, 2, .production_id = 31), - [9232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6327), - [9234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6326), - [9236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6500), - [9238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6481), - [9240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [9242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5679), - [9244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), - [9246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5675), - [9248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6570), - [9250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5161), - [9252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6344), - [9254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6608), - [9256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [9258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6260), - [9260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5701), - [9262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5835), - [9264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6243), - [9266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6242), - [9268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2311), - [9270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6143), - [9272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6569), - [9274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6568), - [9276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5726), - [9278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2400), - [9280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6124), - [9282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6204), - [9284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5976), - [9286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6186), - [9288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6185), - [9290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 3), - [9292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 2), - [9294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2057), - [9296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6183), - [9298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4443), - [9300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6406), - [9302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [9304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5760), - [9306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6160), - [9308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2110), - [9310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6214), - [9312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6147), - [9314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6146), - [9316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5734), - [9318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6127), - [9320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1072), - [9322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6240), - [9324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [9326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5790), - [9328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 4, .production_id = 83), - [9330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1088), - [9332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6275), - [9334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_pack_expansion, 2, .production_id = 25), - [9336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5858), - [9338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [9340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [9342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2224), - [9344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6323), - [9346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_template_parameter_declaration, 3, .production_id = 52), - [9348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [9350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, .production_id = 6), - [9352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5875), - [9354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_base_class_clause_repeat1, 6), - [9356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2340), - [9358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6356), - [9360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_argument_list_repeat1, 2, .dynamic_precedence = 2), - [9362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_type_parameter_declaration, 3, .production_id = 132), - [9364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1070), - [9366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6198), - [9368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [9370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5908), - [9372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506), - [9374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6495), - [9376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6236), - [9378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6235), - [9380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [9382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(548), - [9384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6438), - [9386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5681), - [9388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), - [9390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5928), - [9392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6290), - [9394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6619), - [9396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), - [9398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5957), - [9400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 4), - [9402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1033), - [9404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6169), - [9406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6476), - [9408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6423), - [9410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6623), - [9412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(983), - [9414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6563), - [9416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6444), - [9418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6625), - [9420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6462), - [9422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6627), - [9424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4312), - [9426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6060), - [9428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3), - [9430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6478), - [9432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6629), - [9434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5981), - [9436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, .production_id = 90), - [9438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6448), - [9440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6447), - [9442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1053), - [9444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6621), - [9446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2422), - [9448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6463), - [9450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6445), - [9452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3121), - [9454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [9456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6479), - [9458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [9460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [9462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5255), - [9464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6428), - [9466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_parameter_list, 3), - [9468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2852), - [9470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6442), - [9472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [9474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [9476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6415), - [9478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [9480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [9482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [9484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6512), - [9486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [9488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6611), - [9490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3356), - [9492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [9494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [9496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3814), - [9498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6385), - [9500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [9502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6544), - [9504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2230), - [9506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6549), - [9508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2232), - [9510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5291), - [9512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [9514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [9516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3726), - [9518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6562), - [9520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), - [9522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6566), - [9524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3161), - [9526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6578), - [9528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6346), - [9530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3089), - [9532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unary_right_fold, 3, .production_id = 49), - [9534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [9536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5326), - [9538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3084), - [9540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6551), - [9542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), - [9544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6325), - [9546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), - [9548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6486), - [9550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2613), - [9552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2316), - [9554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), - [9556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6317), - [9558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6098), - [9560] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [9562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4248), - [9564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6311), - [9566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3107), - [9568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4800), - [9570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4802), - [9572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4803), - [9574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), - [9576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), - [9578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6091), - [9580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6293), - [9582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5303), - [9584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), - [9586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6264), - [9588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2850), - [9590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4569), - [9592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4564), - [9594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4559), - [9596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3077), - [9598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), - [9600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [9602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2253), - [9604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [9606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6241), - [9608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), - [9610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2262), - [9612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6153), - [9614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), - [9616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3161), - [9618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6234), - [9620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2433), - [9622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6231), - [9624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), - [9626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3603), - [9628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), - [9630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), - [9632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), - [9634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), - [9636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), - [9638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), - [9640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3896), - [9642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6218), - [9644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [9646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5201), - [9648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), - [9650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), - [9652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3907), - [9654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2958), - [9656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [9658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), - [9660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6191), - [9662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), - [9664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6184), - [9666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2872), - [9668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), - [9670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [9672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4433), - [9674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6181), - [9676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [9678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [9680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6178), - [9682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), - [9684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2665), - [9686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3667), - [9688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2980), - [9690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2890), - [9692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2892), - [9694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2894), - [9696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6170), - [9698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5341), - [9700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), - [9702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), - [9704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [9706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3128), - [9708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), - [9710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [9712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6145), - [9714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), - [9716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6020), - [9718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6281), - [9720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3124), - [9722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [9724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), - [9726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3706), - [9728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [9730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [9732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), - [9734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), - [9736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), - [9738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6205), - [9740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), - [9742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), - [9744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6113), - [9746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3201), - [9748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), - [9750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [9752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), - [9754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6095), - [9756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_parameter_list, 2), - [9758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6019), - [9760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), - [9762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3163), - [9764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4321), - [9766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5748), - [9768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3170), - [9770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6064), - [9772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), - [9774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3162), - [9776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2753), - [9778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3437), - [9780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), - [9782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3395), - [9784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3438), - [9786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), - [9788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), - [9790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [9792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), - [9794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), - [9796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), - [9798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [9800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3223), - [9802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5797), - [9804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [9806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6054), - [9808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6039), - [9810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5471), - [9812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [9814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), - [9816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6052), - [9818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), - [9820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2406), - [9822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5281), - [9824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2225), - [9826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), - [9828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5310), - [9830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), - [9832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), - [9834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [9836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), - [9838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2380), - [9840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2378), - [9842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), - [9844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6031), - [9846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2805), - [9848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [9850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [9852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [9854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [9856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), - [9858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), - [9860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6332), - [9862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), - [9864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), - [9866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [9868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), - [9870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2275), - [9872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [9874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [9876] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(6122), - [9879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5762), - [9881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3239), - [9883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2245), - [9885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), - [9887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [9889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4897), - [9891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5486), - [9893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5366), - [9895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), - [9897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2695), - [9899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2740), - [9901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2741), - [9903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), - [9905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2259), - [9907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 5, .production_id = 148), - [9909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4041), - [9911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [9913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [9915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [9917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6068), - [9919] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(6069), - [9922] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(6074), - [9925] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(6082), - [9928] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(6083), - [9931] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(6087), - [9934] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(6088), - [9937] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(6089), - [9940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2421), - [9942] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(6090), - [9945] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(6067), - [9948] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(6097), - [9951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [9953] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(6099), - [9956] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(6101), - [9959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), - [9961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2440), - [9963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), - [9965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [9967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [9969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), - [9971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [9973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [9975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), - [9977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3048), - [9979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2419), - [9981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2417), - [9983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [9985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, .production_id = 112), - [9987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), - [9989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), - [9991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2396), - [9993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6194), - [9995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), - [9997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [9999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5996), - [10001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6008), - [10003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), - [10005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), - [10007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), - [10009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6505), - [10011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), - [10013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5972), - [10015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [10017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6017), - [10019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3095), - [10021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [10023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), - [10025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6023), - [10027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [10029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [10031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), - [10033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2516), - [10035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [10037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), - [10039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), - [10041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6047), - [10043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), - [10045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [10047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [10049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), - [10051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [10053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5688), - [10055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6094), - [10057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6527), - [10059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), - [10061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6100), - [10063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6450), - [10065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [10067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [10069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2718), - [10071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6119), - [10073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [10075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_parameter_list, 4), - [10077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), - [10079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2280), - [10081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5754), - [10083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5922), - [10085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6151), - [10087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [10089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), - [10091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6156), - [10093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4050), - [10095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6229), - [10097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3444), - [10099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [10101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [10103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6175), - [10105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_based_modifier, 2), - [10107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), - [10109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2431), - [10111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6195), - [10113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3024), - [10115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), - [10117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6200), - [10119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [10121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6227), - [10123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6211), - [10125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2663), - [10127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), - [10129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), - [10131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2478), - [10133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), - [10135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2481), - [10137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), - [10139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), - [10141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), - [10143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), - [10145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [10147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), - [10149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 5, .production_id = 148), - [10151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6256), - [10153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [10155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [10157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), - [10159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6289), - [10161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6343), - [10163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [10165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [10167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), - [10169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), - [10171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), - [10173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [10175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [10177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5361), - [10179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6316), - [10181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), - [10183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), - [10185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), - [10187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), - [10189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), - [10191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2864), - [10193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [10195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [10197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), - [10199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), - [10201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [10203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), - [10205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5863), - [10207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), - [10209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [10211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), - [10213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [10215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [10217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), - [10219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [10221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), - [10223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [10225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [10227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), - [10229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), - [10231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [10233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [10235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2307), - [10237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2301), - [10239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), - [10241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [10243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6285), - [10245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [10247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4318), - [10249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [10251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), - [10253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6572), - [10255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), - [10257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [10259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [10261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3290), - [10263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3049), - [10265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2507), - [10267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [10269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 4, .production_id = 112), - [10271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), - [10273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3340), - [10275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3742), - [10277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [10279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), - [10281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6422), - [10283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [10285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [10287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [10289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5237), - [10291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [10293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6432), - [10295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [10297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [10299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [10301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), - [10303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6443), - [10305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5207), - [10307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6451), - [10309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5487), - [10311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5233), - [10313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [10315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), - [10317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6461), - [10319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5180), - [10321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6469), - [10323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4440), - [10325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), - [10327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6477), - [10329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [10331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5203), - [10333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6482), - [10335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), - [10337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6488), - [10339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5246), - [10341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5266), - [10343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [10345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6521), - [10347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), - [10349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6589), - [10351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6598), - [10353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), - [10355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6607), - [10357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3045), - [10359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6613), - [10361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2719), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2115), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5761), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7722), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4993), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7720), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6601), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), + [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1844), + [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4683), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1399), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3637), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3399), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7718), + [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5856), + [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6603), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7715), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6604), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4338), + [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1650), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3745), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3676), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2503), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3657), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3913), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5429), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4904), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4903), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4902), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6594), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6606), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1874), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7708), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6609), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7703), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1600), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7702), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7698), + [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7697), + [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1812), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7696), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7695), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5908), + [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3884), + [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6611), + [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6175), + [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4514), + [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3931), + [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3717), + [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7688), + [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3631), + [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4531), + [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4620), + [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2080), + [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1377), + [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6612), + [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1936), + [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1806), + [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5872), + [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5641), + [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7665), + [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7661), + [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1802), + [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1965), + [145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6620), + [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1966), + [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4550), + [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4727), + [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2082), + [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5744), + [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7628), + [159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7307), + [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4971), + [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7630), + [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6861), + [167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3661), + [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3363), + [173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1614), + [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3675), + [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6419), + [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6610), + [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1907), + [187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7173), + [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6858), + [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(256), + [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7548), + [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1593), + [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7176), + [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7177), + [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7670), + [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7304), + [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3976), + [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2078), + [209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6598), + [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1776), + [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5876), + [215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5639), + [217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7549), + [219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7550), + [221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1752), + [223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1959), + [225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2109), + [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5719), + [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7213), + [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5079), + [233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(777), + [235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7185), + [237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(86), + [239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5073), + [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7410), + [243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6597), + [245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3653), + [249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3417), + [251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3668), + [255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6571), + [257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6836), + [259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2013), + [261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7360), + [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6614), + [265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(286), + [267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7685), + [269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1589), + [271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7710), + [273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7691), + [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7196), + [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2081), + [279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6843), + [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1786), + [283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5874), + [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5626), + [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7626), + [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7627), + [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1796), + [293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1944), + [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1306), + [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(794), + [299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), + [301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2311), + [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(543), + [305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), + [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1208), + [309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(599), + [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1213), + [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), + [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2463), + [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1273), + [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1320), + [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1331), + [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2111), + [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5759), + [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7035), + [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5011), + [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1206), + [341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6991), + [343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6884), + [345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3649), + [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3386), + [351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3678), + [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6235), + [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6952), + [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1990), + [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7158), + [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6838), + [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213), + [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7692), + [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1592), + [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7359), + [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7358), + [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6963), + [377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2077), + [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6947), + [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1815), + [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5866), + [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5631), + [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7655), + [389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7643), + [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1814), + [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1997), + [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(779), + [397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 3, .production_id = 73), + [399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef, 3, .production_id = 10), + [401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1353), + [403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 4, .production_id = 73), + [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), + [407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1241), + [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(763), + [411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef, 2, .production_id = 10), + [413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1324), + [415] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2109), + [418] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(5719), + [421] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(7213), + [424] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(5079), + [427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), + [429] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(7185), + [432] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(6597), + [435] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(137), + [438] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1844), + [441] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1847), + [444] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1844), + [447] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(376), + [450] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(4683), + [453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1399), + [456] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(404), + [459] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(3653), + [462] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(3417), + [465] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(7718), + [468] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(5856), + [471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(6603), + [474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(7715), + [477] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(6604), + [480] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(4338), + [483] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(77), + [486] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1650), + [489] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(3745), + [492] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(3668), + [495] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2503), + [498] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(3657), + [501] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(3913), + [504] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(5429), + [507] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(4904), + [510] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(4903), + [513] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(4902), + [516] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(6571), + [519] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(6836), + [522] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2013), + [525] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(7360), + [528] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(6614), + [531] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(286), + [534] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(7685), + [537] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1589), + [540] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(7710), + [543] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(7691), + [546] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(7196), + [549] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1882), + [552] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1812), + [555] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(7696), + [558] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(7695), + [561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(5908), + [564] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(3884), + [567] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(6611), + [570] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(6175), + [573] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(3976), + [576] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(3931), + [579] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(3717), + [582] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(7688), + [585] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(3631), + [588] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(4531), + [591] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(4620), + [594] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2081), + [597] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1377), + [600] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(6843), + [603] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1936), + [606] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1786), + [609] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(5874), + [612] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(5626), + [615] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(7626), + [618] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(7627), + [621] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1796), + [624] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1944), + [627] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(6620), + [630] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1966), + [633] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(4550), + [636] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(4727), + [639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(521), + [641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1214), + [643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1265), + [645] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2111), + [648] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(5759), + [651] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(7035), + [654] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(5011), + [657] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(6991), + [660] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(6884), + [663] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(729), + [666] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(3649), + [669] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(3386), + [672] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(66), + [675] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(3678), + [678] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(6235), + [681] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(6952), + [684] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1990), + [687] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(7158), + [690] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(6838), + [693] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(213), + [696] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(7692), + [699] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1592), + [702] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(7359), + [705] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(7358), + [708] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(6963), + [711] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2077), + [714] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(6947), + [717] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1815), + [720] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(5866), + [723] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(5631), + [726] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(7655), + [729] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(7643), + [732] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1814), + [735] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1997), + [738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3544), + [744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3254), + [746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), + [748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5536), + [750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3223), + [752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5535), + [754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3788), + [758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2251), + [760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2245), + [762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), + [764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5287), + [768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5284), + [770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2506), + [772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), + [774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3604), + [776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2782), + [778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2783), + [782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), + [784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3543), + [786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), + [792] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2082), + [795] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(5744), + [798] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(7628), + [801] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(4971), + [804] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(7630), + [807] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(6861), + [810] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(924), + [813] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(3661), + [816] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(3363), + [819] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(45), + [822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), + [824] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(3675), + [827] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(6419), + [830] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(6610), + [833] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1907), + [836] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(7173), + [839] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(6858), + [842] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(256), + [845] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(7548), + [848] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1593), + [851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(7176), + [854] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(7177), + [857] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(7670), + [860] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2078), + [863] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(6598), + [866] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1776), + [869] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(5876), + [872] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(5639), + [875] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(7549), + [878] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(7550), + [881] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1752), + [884] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1959), + [887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), + [889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2960), + [893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), + [895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2092), + [899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5787), + [901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7118), + [903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5063), + [905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 2), + [907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7036), + [909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6951), + [911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), + [913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3639), + [915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3405), + [917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3670), + [921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6522), + [923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6919), + [925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2020), + [927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6977), + [929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6954), + [931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), + [933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7699), + [935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1598), + [937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7157), + [939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7154), + [941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7045), + [943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2079), + [945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6916), + [947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1745), + [949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5870), + [951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5667), + [953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7668), + [955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7656), + [957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1746), + [959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1864), + [961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3621), + [963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4054), + [967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2954), + [969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), + [973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4055), + [977] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2092), + [980] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(5787), + [983] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(7118), + [986] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(5063), + [989] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(7036), + [992] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(6951), + [995] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1187), + [998] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(3639), + [1001] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(3405), + [1004] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(50), + [1007] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(3670), + [1010] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(6522), + [1013] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(6919), + [1016] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2020), + [1019] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(6977), + [1022] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(6954), + [1025] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(188), + [1028] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(7699), + [1031] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1598), + [1034] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(7157), + [1037] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(7154), + [1040] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(7045), + [1043] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2079), + [1046] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(6916), + [1049] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1745), + [1052] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(5870), + [1055] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(5667), + [1058] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(7668), + [1061] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(7656), + [1064] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1746), + [1067] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1864), + [1070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), + [1072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [1074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2516), + [1076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), + [1078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3787), + [1080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), + [1082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 1), + [1084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [1086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [1088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), + [1090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_translation_unit, 1), + [1092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), + [1094] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2115), + [1097] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5761), + [1100] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7722), + [1103] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4993), + [1106] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7720), + [1109] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6601), + [1112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(137), + [1115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1844), + [1118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1847), + [1121] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1844), + [1124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(376), + [1127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4683), + [1130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1399), + [1133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3637), + [1136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3399), + [1139] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7718), + [1142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5856), + [1145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6603), + [1148] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7715), + [1151] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6604), + [1154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4338), + [1157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(38), + [1160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1650), + [1163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3745), + [1166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3676), + [1169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2503), + [1172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3657), + [1175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3913), + [1178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5429), + [1181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4904), + [1184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4903), + [1187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4902), + [1190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6594), + [1193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6606), + [1196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1874), + [1199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7708), + [1202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6609), + [1205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(297), + [1208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7703), + [1211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1600), + [1214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7702), + [1217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7698), + [1220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7697), + [1223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1882), + [1226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1812), + [1229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7696), + [1232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7695), + [1235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5908), + [1238] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3884), + [1241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6611), + [1244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6175), + [1247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4514), + [1250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3931), + [1253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3717), + [1256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7688), + [1259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3631), + [1262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4531), + [1265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4620), + [1268] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2080), + [1271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1377), + [1274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6612), + [1277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1936), + [1280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1806), + [1283] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5872), + [1286] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5641), + [1289] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7665), + [1292] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7661), + [1295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1802), + [1298] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1965), + [1301] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6620), + [1304] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1966), + [1307] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4550), + [1310] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4727), + [1313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2099), + [1315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3), + [1317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [1319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), + [1321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3), + [1323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2057), + [1325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6833), + [1327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1602), + [1329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6630), + [1331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 4, .production_id = 13), + [1333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 4, .production_id = 13), + [1335] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2099), + [1338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), + [1340] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(325), + [1343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1844), + [1346] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1844), + [1349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2057), + [1352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), + [1354] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2057), + [1357] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(404), + [1360] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3653), + [1363] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3745), + [1366] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(7718), + [1369] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5856), + [1372] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6833), + [1375] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(7715), + [1378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(77), + [1381] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1602), + [1384] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2503), + [1387] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3657), + [1390] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3913), + [1393] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5429), + [1396] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(4904), + [1399] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(4903), + [1402] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(4902), + [1405] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6571), + [1408] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6836), + [1411] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6614), + [1414] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(286), + [1417] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(7685), + [1420] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1589), + [1423] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(7710), + [1426] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(7691), + [1429] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(7196), + [1432] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1882), + [1435] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1812), + [1438] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(7696), + [1441] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(7695), + [1444] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5908), + [1447] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3884), + [1450] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6611), + [1453] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6175), + [1456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3976), + [1459] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3931), + [1462] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3717), + [1465] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(7688), + [1468] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3631), + [1471] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(4620), + [1474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6630), + [1477] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6843), + [1480] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1936), + [1483] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1786), + [1486] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1796), + [1489] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1944), + [1492] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6620), + [1495] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1966), + [1498] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(4550), + [1501] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(4727), + [1504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3, .production_id = 13), + [1506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3, .production_id = 13), + [1508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 2), + [1510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 2), + [1512] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2085), + [1515] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(729), + [1518] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3649), + [1521] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(66), + [1524] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6235), + [1527] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6952), + [1530] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6838), + [1533] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(213), + [1536] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(7692), + [1539] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1592), + [1542] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(7359), + [1545] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(7358), + [1548] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6963), + [1551] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6947), + [1554] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1815), + [1557] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1814), + [1560] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1997), + [1563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2085), + [1565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2087), + [1567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2090), + [1569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2087), + [1572] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1187), + [1575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3639), + [1578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(50), + [1581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6522), + [1584] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6919), + [1587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6954), + [1590] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(188), + [1593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(7699), + [1596] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1598), + [1599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(7157), + [1602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(7154), + [1605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(7045), + [1608] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6916), + [1611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1745), + [1614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1746), + [1617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1864), + [1620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2095), + [1622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [1624] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2095), + [1627] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1102), + [1630] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3637), + [1633] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(38), + [1636] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6594), + [1639] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6606), + [1642] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6609), + [1645] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(297), + [1648] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(7703), + [1651] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1600), + [1654] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(7702), + [1657] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(7698), + [1660] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(7697), + [1663] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6612), + [1666] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1806), + [1669] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1802), + [1672] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1965), + [1675] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2090), + [1678] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(924), + [1681] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3661), + [1684] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(45), + [1687] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6419), + [1690] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6610), + [1693] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6858), + [1696] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(256), + [1699] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(7548), + [1702] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1593), + [1705] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(7176), + [1708] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(7177), + [1711] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(7670), + [1714] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6598), + [1717] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1776), + [1720] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1752), + [1723] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1959), + [1726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2096), + [1728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), + [1730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3648), + [1732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [1734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6516), + [1736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6883), + [1738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6918), + [1740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(214), + [1742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7705), + [1744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1591), + [1746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6976), + [1748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6975), + [1750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7121), + [1752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6862), + [1754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1778), + [1756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1779), + [1758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2040), + [1760] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2096), + [1763] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1566), + [1766] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3648), + [1769] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(89), + [1772] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6516), + [1775] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6883), + [1778] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6918), + [1781] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(214), + [1784] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(7705), + [1787] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1591), + [1790] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6976), + [1793] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6975), + [1796] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(7121), + [1799] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6862), + [1802] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1778), + [1805] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1779), + [1808] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2040), + [1811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2104), + [1813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6949), + [1815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7319), + [1817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [1819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3659), + [1821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7560), + [1823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [1825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [1827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [1829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [1831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [1833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [1835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2083), + [1837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3932), + [1839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7256), + [1841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [1843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), + [1845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1871), + [1847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), + [1849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5806), + [1851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4005), + [1853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5395), + [1855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4845), + [1857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4844), + [1859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4839), + [1861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), + [1863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1757), + [1865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7686), + [1867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7723), + [1869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5894), + [1871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3429), + [1873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6840), + [1875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6171), + [1877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3565), + [1879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3563), + [1881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4592), + [1883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1984), + [1885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6678), + [1887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1996), + [1889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4566), + [1891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4735), + [1893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2112), + [1895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6292), + [1897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4700), + [1899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [1901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2159), + [1903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [1905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), + [1907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [1909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1398), + [1911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), + [1913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2230), + [1915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5007), + [1917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5383), + [1919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4833), + [1921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4870), + [1923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4832), + [1925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2819), + [1927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7282), + [1929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4630), + [1931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2876), + [1933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2758), + [1935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 4, .production_id = 41), + [1937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [1939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1880), + [1941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), + [1943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 4, .production_id = 41), + [1945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5855), + [1947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), + [1949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), + [1951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6640), + [1953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), + [1955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1800), + [1957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7693), + [1959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7724), + [1961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5907), + [1963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2901), + [1965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6956), + [1967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6130), + [1969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3021), + [1971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3011), + [1973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7609), + [1975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1908), + [1977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6626), + [1979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1914), + [1981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4545), + [1983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4756), + [1985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2898), + [1987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [1989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1930), + [1991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), + [1993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1845), + [1995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5848), + [1997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), + [1999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6798), + [2001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), + [2003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1816), + [2005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7700), + [2007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7725), + [2009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5913), + [2011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3076), + [2013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6881), + [2015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6143), + [2017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3318), + [2019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3203), + [2021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1938), + [2023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6624), + [2025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1937), + [2027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4556), + [2029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4759), + [2031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3193), + [2033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [2035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2056), + [2037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), + [2039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1999), + [2041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5858), + [2043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), + [2045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6625), + [2047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), + [2049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1754), + [2051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7711), + [2053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7727), + [2055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5929), + [2057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3385), + [2059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6837), + [2061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6169), + [2063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3513), + [2065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3507), + [2067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1829), + [2069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6613), + [2071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1828), + [2073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4544), + [2075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4731), + [2077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [2079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1837), + [2081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), + [2083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2043), + [2085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5802), + [2087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), + [2089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1765), + [2091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1900), + [2093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1895), + [2095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2938), + [2097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [2099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2959), + [2101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3017), + [2103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3033), + [2105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3023), + [2107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2998), + [2109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2978), + [2111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1941), + [2113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7717), + [2115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3022), + [2117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6494), + [2119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6605), + [2121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7625), + [2123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(3023), + [2126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(325), + [2129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1844), + [2132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1844), + [2135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2057), + [2138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(404), + [2141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(5856), + [2144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6833), + [2147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(77), + [2150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1602), + [2153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6640), + [2156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6571), + [2159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6836), + [2162] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2013), + [2165] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7360), + [2168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6614), + [2171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(286), + [2174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7685), + [2177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1589), + [2180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7710), + [2183] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7691), + [2186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7196), + [2189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1882), + [2192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1812), + [2195] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7696), + [2198] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7695), + [2201] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(5908), + [2204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(3884), + [2207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6611), + [2210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6175), + [2213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(3976), + [2216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(3931), + [2219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7609), + [2222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6630), + [2225] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6843), + [2228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1936), + [2231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1786), + [2234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1796), + [2237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1944), + [2240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6620), + [2243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1966), + [2246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(4550), + [2249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(4727), + [2252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2998), + [2255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(729), + [2258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(66), + [2261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6235), + [2264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6952), + [2267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1990), + [2270] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7158), + [2273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6838), + [2276] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(213), + [2279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7692), + [2282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1592), + [2285] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7359), + [2288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7358), + [2291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6963), + [2294] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6947), + [2297] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1815), + [2300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1814), + [2303] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1997), + [2306] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(3017), + [2309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1102), + [2312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(38), + [2315] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6594), + [2318] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6606), + [2321] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1874), + [2324] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7708), + [2327] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6609), + [2330] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(297), + [2333] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7703), + [2336] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1600), + [2339] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7702), + [2342] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7698), + [2345] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7697), + [2348] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6612), + [2351] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1806), + [2354] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1802), + [2357] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1965), + [2360] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2959), + [2363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1187), + [2366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(50), + [2369] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6522), + [2372] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6919), + [2375] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2020), + [2378] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6977), + [2381] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6954), + [2384] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(188), + [2387] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7699), + [2390] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1598), + [2393] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7157), + [2396] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7154), + [2399] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7045), + [2402] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6916), + [2405] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1745), + [2408] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1746), + [2411] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1864), + [2414] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2978), + [2417] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1566), + [2420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(89), + [2423] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6516), + [2426] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6883), + [2429] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1941), + [2432] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7717), + [2435] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6918), + [2438] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(214), + [2441] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7705), + [2444] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1591), + [2447] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6976), + [2450] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6975), + [2453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7121), + [2456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6862), + [2459] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1778), + [2462] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1779), + [2465] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2040), + [2468] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(3022), + [2471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(924), + [2474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6494), + [2477] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6605), + [2480] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7625), + [2483] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(3033), + [2486] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(45), + [2489] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6419), + [2492] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6610), + [2495] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1907), + [2498] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7173), + [2501] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6858), + [2504] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(256), + [2507] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7548), + [2510] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1593), + [2513] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7176), + [2516] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7177), + [2519] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7670), + [2522] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6598), + [2525] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1776), + [2528] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1752), + [2531] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1959), + [2534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 3), + [2536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 3), + [2538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2169), + [2540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 2), + [2542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 2), + [2544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4077), + [2546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7163), + [2548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5008), + [2550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2320), + [2552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7593), + [2554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), + [2556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5094), + [2558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6873), + [2560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4695), + [2562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7607), + [2564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3394), + [2566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4683), + [2568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3660), + [2570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5151), + [2572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7606), + [2574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3981), + [2576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3918), + [2578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5424), + [2580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4878), + [2582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4877), + [2584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4875), + [2586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3916), + [2588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7470), + [2590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4665), + [2592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6160), + [2594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2145), + [2596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7348), + [2598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5600), + [2600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7675), + [2602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2461), + [2604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2589), + [2606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2299), + [2608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2374), + [2610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2696), + [2612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2558), + [2614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2609), + [2616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2208), + [2618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [2620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), + [2622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1917), + [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), + [2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5824), + [2628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2483), + [2630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4935), + [2632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5389), + [2634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4874), + [2636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4873), + [2638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4872), + [2640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), + [2642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1744), + [2644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7706), + [2646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7726), + [2648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5935), + [2650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4131), + [2652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6863), + [2654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6069), + [2656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4369), + [2658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4345), + [2660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3159), + [2662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7498), + [2664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4645), + [2666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5756), + [2668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1898), + [2670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6621), + [2672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1906), + [2674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4565), + [2676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4767), + [2678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), + [2680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2905), + [2682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2771), + [2684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2), + [2686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2), + [2688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2), SHIFT_REPEAT(6880), + [2691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2419), + [2693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4602), + [2695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), + [2697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), + [2699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), + [2701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), + [2703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3599), + [2705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), + [2707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3268), + [2709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, .production_id = 9), + [2711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, .production_id = 9), + [2713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6880), + [2715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), + [2717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), + [2719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3598), + [2721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_try_statement, 4, .production_id = 42), + [2723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_try_statement, 4, .production_id = 42), + [2725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7195), + [2727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5071), + [2729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2303), + [2731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7144), + [2733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6810), + [2735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3643), + [2737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6016), + [2739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2154), + [2741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5630), + [2743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7678), + [2745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2542), + [2747] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(4077), + [2750] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(7163), + [2753] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(5008), + [2756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), + [2758] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(7593), + [2761] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(6873), + [2764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(4695), + [2767] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(7607), + [2770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(3394), + [2773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(4683), + [2776] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(4683), + [2779] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(3660), + [2782] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(3745), + [2785] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(7718), + [2788] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(5151), + [2791] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(6949), + [2794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(7715), + [2797] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(6604), + [2800] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(7606), + [2803] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2503), + [2806] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(3981), + [2809] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(3918), + [2812] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(5424), + [2815] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(4878), + [2818] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(4877), + [2821] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(4875), + [2824] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(3916), + [2827] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(7470), + [2830] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(3631), + [2833] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(4531), + [2836] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(4665), + [2839] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(6160), + [2842] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1377), + [2845] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2145), + [2848] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(7348), + [2851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(5600), + [2854] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(7675), + [2857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_try_statement, 3, .production_id = 9), + [2859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_try_statement, 3, .production_id = 9), + [2861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2843), + [2863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [2865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), + [2867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4712), + [2869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4714), + [2871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4520), + [2873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2474), + [2875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, .production_id = 73), + [2877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2895), + [2879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [2881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), + [2883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2487), + [2885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 3, .production_id = 73), + [2887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2667), + [2889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2644), + [2891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2606), + [2893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2264), + [2895] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2), SHIFT_REPEAT(6945), + [2898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6945), + [2900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 3, .production_id = 142), + [2902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 3, .production_id = 142), + [2904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 191), + [2906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 191), + [2908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, .production_id = 118), + [2910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, .production_id = 118), + [2912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 2), + [2914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 2), + [2916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_co_return_statement, 2), + [2918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_co_return_statement, 2), + [2920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 182), + [2922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 182), + [2924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2), + [2926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2), + [2928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 181), + [2930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 181), + [2932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 180), + [2934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 180), + [2936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 179), + [2938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 179), + [2940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 178), + [2942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 178), + [2944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 7, .production_id = 175), + [2946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 7, .production_id = 175), + [2948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2), + [2950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2), + [2952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2), + [2954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), + [2956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_statement, 2), + [2958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_statement, 2), + [2960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 2), + [2962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1), + [2964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1), + [2966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2), + [2968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), + [2970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 47), + [2972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, .production_id = 47), + [2974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(253), + [2976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 167), + [2978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 167), + [2980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 166), + [2982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 166), + [2984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, .production_id = 165), + [2986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, .production_id = 165), + [2988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, .production_id = 48), + [2990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, .production_id = 48), + [2992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, .production_id = 48), + [2994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, .production_id = 48), + [2996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3), + [2998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3), + [3000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_goto_statement, 3, .production_id = 49), + [3002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_goto_statement, 3, .production_id = 49), + [3004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, .production_id = 51), + [3006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, .production_id = 51), + [3008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 3), + [3010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 3), + [3012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_co_return_statement, 3), + [3014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_co_return_statement, 3), + [3016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_co_yield_statement, 3), + [3018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_co_yield_statement, 3), + [3020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 190), + [3022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 190), + [3024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 3, .production_id = 62), + [3026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 3, .production_id = 62), + [3028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_range_loop, 8, .production_id = 192), + [3030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_range_loop, 8, .production_id = 192), + [3032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 4, .production_id = 58), + [3034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 4, .production_id = 58), + [3036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 6, .production_id = 158), + [3038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 6, .production_id = 158), + [3040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 6, .production_id = 157), + [3042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 6, .production_id = 157), + [3044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 6, .production_id = 156), + [3046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 6, .production_id = 156), + [3048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_range_loop, 9, .production_id = 201), + [3050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_range_loop, 9, .production_id = 201), + [3052] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(7195), + [3055] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(5071), + [3058] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(7144), + [3061] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(6810), + [3064] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(3643), + [3067] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(6016), + [3070] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2154), + [3073] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(5630), + [3076] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(7678), + [3079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 93), + [3081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 93), + [3083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), + [3085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 4, .production_id = 101), + [3087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 4, .production_id = 101), + [3089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, .production_id = 133), + [3091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, .production_id = 133), + [3093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 132), + [3095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 132), + [3097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 193), + [3099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 193), + [3101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 194), + [3103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 194), + [3105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 200), + [3107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 200), + [3109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, .production_id = 120), + [3111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, .production_id = 120), + [3113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, .production_id = 82), + [3115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, .production_id = 82), + [3117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 3, .production_id = 63), + [3119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 3, .production_id = 63), + [3121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 4, .production_id = 73), + [3123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 4, .production_id = 73), + [3125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_definition, 2, .production_id = 23), + [3127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_definition, 2, .production_id = 23), + [3129] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 2), SHIFT(2882), + [3132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), + [3134] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression_statement, 2), SHIFT(5856), + [3137] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 2), SHIFT(6640), + [3140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 2), SHIFT(7609), + [3143] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 2), SHIFT(6630), + [3146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_definition, 2, .production_id = 24), + [3148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_definition, 2, .production_id = 24), + [3150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__empty_declaration, 2), + [3152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__empty_declaration, 2), + [3154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), + [3156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 5, .production_id = 116), + [3158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 5, .production_id = 116), + [3160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, .production_id = 73), + [3162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, .production_id = 73), + [3164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 2, .production_id = 9), + [3166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 2, .production_id = 9), + [3168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, .production_id = 115), + [3170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, .production_id = 115), + [3172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 5, .production_id = 114), + [3174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 5, .production_id = 114), + [3176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_cast_declaration, 2, .production_id = 24), + [3178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_cast_declaration, 2, .production_id = 24), + [3180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_cast_definition, 2, .production_id = 23), + [3182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_cast_definition, 2, .production_id = 23), + [3184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_init_statement, 1), SHIFT(2882), + [3187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), + [3189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_init_statement, 1), + [3191] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_init_statement, 1), SHIFT(5856), + [3194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_statement, 1), + [3196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_init_statement, 1), SHIFT(6640), + [3199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_init_statement, 1), SHIFT(7609), + [3202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_init_statement, 1), SHIFT(6630), + [3205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_declaration, 3, .production_id = 5), + [3207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_declaration, 3, .production_id = 5), + [3209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 1), SHIFT(2882), + [3212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), + [3214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression_statement, 1), SHIFT(5856), + [3217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 1), SHIFT(6640), + [3220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 1), SHIFT(7609), + [3223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 1), SHIFT(6630), + [3226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_assert_declaration, 7, .production_id = 187), + [3228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_assert_declaration, 7, .production_id = 187), + [3230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_friend_declaration, 3), + [3232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_friend_declaration, 3), + [3234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alias_declaration, 6, .production_id = 174), + [3236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alias_declaration, 6, .production_id = 174), + [3238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_include, 3, .production_id = 35), + [3240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_include, 3, .production_id = 35), + [3242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_definition, 4, .production_id = 113), + [3244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_definition, 4, .production_id = 113), + [3246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 3, .production_id = 10), + [3248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 3, .production_id = 10), + [3250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), + [3252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), + [3254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), + [3256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), + [3258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 3, .production_id = 10), + [3260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 3, .production_id = 10), + [3262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 3, .production_id = 36), + [3264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 3, .production_id = 36), + [3266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 2, .production_id = 3), + [3268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 2, .production_id = 3), + [3270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_cast_declaration, 4, .production_id = 109), + [3272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_cast_declaration, 4, .production_id = 109), + [3274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_declaration, 2, .production_id = 24), + [3276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_declaration, 2, .production_id = 24), + [3278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_friend_declaration, 2), + [3280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_friend_declaration, 2), + [3282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_linkage_specification, 3, .production_id = 40), + [3284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_linkage_specification, 3, .production_id = 40), + [3286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_friend_declaration, 4), + [3288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_friend_declaration, 4), + [3290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 3, .production_id = 42), + [3292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 3, .production_id = 42), + [3294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), + [3296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), + [3298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), + [3300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), + [3302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6892), + [3304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete_method_clause, 3), + [3306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_method_clause, 3), + [3308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_method_clause, 3), + [3310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_method_clause, 3), + [3312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_instantiation, 3, .production_id = 5), + [3314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_instantiation, 3, .production_id = 5), + [3316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_declaration, 3, .production_id = 53), + [3318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_declaration, 3, .production_id = 53), + [3320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), + [3322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2), + [3324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2), + [3326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), + [3328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 3, .production_id = 56), + [3330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 3, .production_id = 56), + [3332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, .production_id = 103), + [3334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, .production_id = 103), + [3336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 3, .production_id = 44), + [3338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 3, .production_id = 44), + [3340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6656), + [3342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_declaration, 3), + [3344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_declaration, 3), + [3346] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2), SHIFT_REPEAT(6892), + [3349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), + [3351] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2), SHIFT_REPEAT(6787), + [3354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_definition, 3, .production_id = 65), + [3356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_definition, 3, .production_id = 65), + [3358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_alias_definition, 5, .production_id = 143), + [3360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_alias_definition, 5, .production_id = 143), + [3362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), + [3364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_alias_definition, 5, .production_id = 144), + [3366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_alias_definition, 5, .production_id = 144), + [3368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_definition, 3, .production_id = 70), + [3370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_definition, 3, .production_id = 70), + [3372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_declaration, 4), + [3374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_declaration, 4), + [3376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3), + [3378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3), + [3380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_definition, 3, .production_id = 5), + [3382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_definition, 3, .production_id = 5), + [3384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alias_declaration, 5, .production_id = 145), + [3386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alias_declaration, 5, .production_id = 145), + [3388] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2), SHIFT_REPEAT(6656), + [3391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_declaration, 4, .production_id = 53), + [3393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_declaration, 4, .production_id = 53), + [3395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_cast_declaration, 3, .production_id = 5), + [3397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_cast_declaration, 3, .production_id = 5), + [3399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_assert_declaration, 5, .production_id = 146), + [3401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_assert_declaration, 5, .production_id = 146), + [3403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_instantiation, 4, .production_id = 54), + [3405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_instantiation, 4, .production_id = 54), + [3407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), + [3409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concept_definition, 5, .production_id = 10), + [3411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concept_definition, 5, .production_id = 10), + [3413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6787), + [3415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 4, .production_id = 72), + [3417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 4, .production_id = 72), + [3419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 6, .production_id = 155), + [3421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 6, .production_id = 155), + [3423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), + [3425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 4, .production_id = 71), + [3427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 4, .production_id = 71), + [3429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_cast_definition, 3, .production_id = 70), + [3431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_cast_definition, 3, .production_id = 70), + [3433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), + [3435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), + [3437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), + [3439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 10), + [3441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 10), + [3443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 4, .production_id = 86), + [3445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 4, .production_id = 86), + [3447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 4, .production_id = 85), + [3449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 4, .production_id = 85), + [3451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 74), + [3453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 74), + [3455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_cast_declaration, 5, .production_id = 154), + [3457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_cast_declaration, 5, .production_id = 154), + [3459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7227), + [3461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5001), + [3463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 1), + [3465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6982), + [3467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6756), + [3469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3645), + [3471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6062), + [3473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2144), + [3475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5624), + [3477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7681), + [3479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6995), + [3481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5068), + [3483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7350), + [3485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6727), + [3487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3666), + [3489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2909), + [3491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6138), + [3493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2152), + [3495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5609), + [3497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7642), + [3499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 2), + [3501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2767), + [3503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3265), + [3505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3072), + [3507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3710), + [3509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3956), + [3511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), + [3513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3970), + [3515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2798), + [3517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2761), + [3519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3151), + [3521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(239), + [3523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3243), + [3525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2882), + [3527] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(6995), + [3530] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(5068), + [3533] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(7350), + [3536] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(6727), + [3539] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(3666), + [3542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), + [3544] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(6138), + [3547] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2152), + [3550] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(5609), + [3553] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(7642), + [3556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4750), + [3558] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(7227), + [3561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(5001), + [3564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(6982), + [3567] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(6756), + [3570] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(3645), + [3573] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(6062), + [3576] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2144), + [3579] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(5624), + [3582] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(7681), + [3585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(259), + [3587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4768), + [3589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3198), + [3591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3119), + [3593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2925), + [3595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3757), + [3597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), + [3599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3125), + [3601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), + [3603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(289), + [3605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), + [3607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), + [3609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), + [3611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(234), + [3613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3110), + [3615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [3617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1894), + [3619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), + [3621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5861), + [3623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), + [3625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1753), + [3627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1883), + [3629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1879), + [3631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4549), + [3633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3311), + [3635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [3637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2037), + [3639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), + [3641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), + [3643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5823), + [3645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), + [3647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1788), + [3649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2035), + [3651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2019), + [3653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__top_level_expression_statement, 2), + [3655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__top_level_expression_statement, 2), + [3657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3821), + [3659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5621), + [3661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5621), + [3663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5779), + [3665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3751), + [3667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3723), + [3669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5361), + [3671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4887), + [3673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4885), + [3675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4884), + [3677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4609), + [3679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5579), + [3681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7555), + [3683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3225), + [3685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3225), + [3687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3153), + [3689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7291), + [3691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4186), + [3693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5146), + [3695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6131), + [3697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2149), + [3699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7310), + [3701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4947), + [3703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7684), + [3705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7682), + [3707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5996), + [3709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2151), + [3711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7677), + [3713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7660), + [3715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7669), + [3717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5982), + [3719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2150), + [3721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7672), + [3723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6059), + [3725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2157), + [3727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7647), + [3729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6038), + [3731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2155), + [3733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7632), + [3735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7683), + [3737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7679), + [3739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7680), + [3741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7676), + [3743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), + [3745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5680), + [3747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2484), + [3749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), + [3751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5692), + [3753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), + [3755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5400), + [3757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), + [3759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5900), + [3761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), + [3763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5651), + [3765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), + [3767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5401), + [3769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), + [3771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5408), + [3773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), + [3775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5375), + [3777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), + [3779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5413), + [3781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), + [3783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5392), + [3785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2979), + [3787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), + [3789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5396), + [3791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), + [3793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5941), + [3795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), + [3797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5448), + [3799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_declaration, 3), + [3801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_declaration, 3), + [3803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_declaration, 4), + [3805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_declaration, 4), + [3807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), + [3809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5604), + [3811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3246), + [3813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), + [3815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), + [3817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5672), + [3819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4008), + [3821] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(2882), + [3824] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(325), + [3827] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(1844), + [3830] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(1844), + [3833] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(2057), + [3836] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(3246), + [3839] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(5856), + [3842] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(1926), + [3845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), + [3847] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(1602), + [3850] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(6640), + [3853] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(1882), + [3856] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(1812), + [3859] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(7696), + [3862] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(7695), + [3865] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(5908), + [3868] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(3884), + [3871] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(6611), + [3874] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(6175), + [3877] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(3976), + [3880] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(3931), + [3883] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(7609), + [3886] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(5672), + [3889] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(6630), + [3892] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(1936), + [3895] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(6620), + [3898] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(1966), + [3901] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(4550), + [3904] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(4727), + [3907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3624), + [3909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2992), + [3911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3552), + [3913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3430), + [3915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3214), + [3917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5525), + [3919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5533), + [3921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3792), + [3923] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declaration_modifiers, 1), REDUCE(aux_sym_attributed_declarator_repeat1, 1), + [3926] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declaration_modifiers, 1), REDUCE(aux_sym_attributed_declarator_repeat1, 1), + [3929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 1), + [3931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 1), + [3933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_modifiers, 1), + [3935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_modifiers, 1), + [3937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3009), + [3939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3470), + [3941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5260), + [3943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4047), + [3945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3341), + [3947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5226), + [3949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3786), + [3951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), + [3953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7001), + [3955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3486), + [3957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), + [3959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7543), + [3961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2995), + [3963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3897), + [3965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3902), + [3967] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2), SHIFT_REPEAT(6854), + [3970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7370), + [3972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3577), + [3974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6854), + [3976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7051), + [3978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4468), + [3980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7269), + [3982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3299), + [3984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3233), + [3986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3593), + [3988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3617), + [3990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3066), + [3992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3889), + [3994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3239), + [3996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3448), + [3998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3473), + [4000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4429), + [4002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4376), + [4004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3036), + [4006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(249), + [4008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), + [4010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3992), + [4012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4551), + [4014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), + [4016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), + [4018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4014), + [4020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4014), + [4022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5293), + [4024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1409), + [4026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [4028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), + [4030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [4032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), + [4034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [4036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [4038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2924), + [4040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), + [4042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5879), + [4044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6645), + [4046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_capture_specifier, 2), + [4048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_capture_specifier, 2), + [4050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3493), + [4052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3258), + [4054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), + [4056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), + [4058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3047), + [4060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4213), + [4062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), + [4064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7279), + [4066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1751), + [4068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), + [4070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), + [4072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7371), + [4074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1760), + [4076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), + [4078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), + [4080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), + [4082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), + [4084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4390), + [4086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7262), + [4088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1739), + [4090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), + [4092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), + [4094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), + [4096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), + [4098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3576), + [4100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), + [4102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2958), + [4104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7200), + [4106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1780), + [4108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), + [4110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), + [4112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), + [4114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), + [4116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [4118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [4120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [4122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(7153), + [4125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [4127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [4129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [4131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [4133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [4135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [4137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [4139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [4141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [4143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [4145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [4147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [4149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [4151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [4153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [4155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [4157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [4159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [4161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [4163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [4165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [4167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_default_capture, 1), + [4169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [4171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [4173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [4175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [4177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [4179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [4181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [4183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [4185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [4187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [4189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [4191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [4193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [4195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [4197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [4199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [4201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [4203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [4205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(7092), + [4208] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(7125), + [4211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6974), + [4213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1948), + [4215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7037), + [4217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2569), + [4219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), + [4221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7280), + [4223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7373), + [4225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5691), + [4227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7192), + [4229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7474), + [4231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [4233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), + [4235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [4237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7271), + [4239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5384), + [4241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7356), + [4243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5612), + [4245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2435), + [4247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [4249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7570), + [4251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [4253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7502), + [4255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [4257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1954), + [4259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2025), + [4261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7296), + [4263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [4265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5380), + [4267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2646), + [4269] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(7146), + [4272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7267), + [4274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1865), + [4276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7407), + [4278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [4280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1978), + [4282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5676), + [4284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1833), + [4286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(7086), + [4289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(7087), + [4292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5934), + [4294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(7088), + [4297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(7089), + [4300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5409), + [4302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5377), + [4304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [4306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5431), + [4308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), + [4310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), + [4312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2277), + [4314] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(7113), + [4317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5644), + [4319] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(7114), + [4322] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(7116), + [4325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5391), + [4327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [4329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5279), + [4331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [4333] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(7120), + [4336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7540), + [4338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2058), + [4340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5394), + [4342] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(7090), + [4345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5362), + [4347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5903), + [4349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [4351] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(7126), + [4354] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(7127), + [4357] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(7129), + [4360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [4362] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(7131), + [4365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [4367] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(7135), + [4370] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(7137), + [4373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1877), + [4375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [4377] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(7138), + [4380] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(7140), + [4383] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(7145), + [4386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(7147), + [4389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(7149), + [4392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [4394] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(7151), + [4397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [4399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [4401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7444), + [4403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [4405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1985), + [4407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), + [4409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), + [4411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), + [4413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), + [4415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2894), + [4417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), + [4419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2837), + [4421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), + [4423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2897), + [4425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), + [4427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), + [4429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), + [4431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), + [4433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), + [4435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), + [4437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2853), + [4439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), + [4441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), + [4443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), + [4445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), + [4447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), + [4449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4193), + [4451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), + [4453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5270), + [4455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_specifier, 1, .production_id = 1), + [4457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_not_binary, 1), + [4459] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression_not_binary, 1), + [4463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), + [4465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_not_binary, 1), + [4467] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression_not_binary, 1), + [4470] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression_not_binary, 1), + [4473] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression_not_binary, 1), SHIFT(356), + [4476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5927), + [4478] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), + [4481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_name, 1, .production_id = 1), + [4483] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression_not_binary, 1), + [4487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1991), + [4489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), + [4491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), + [4493] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression_not_binary, 1), SHIFT(350), + [4496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1931), + [4498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, .production_id = 33), + [4500] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_qualified_identifier, 2, .production_id = 32), REDUCE(sym_qualified_type_identifier, 2, .production_id = 33), + [4503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_type_identifier, 2, .production_id = 33), + [4505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, .production_id = 32), + [4507] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, .production_id = 32), REDUCE(sym_qualified_type_identifier, 2, .production_id = 33), + [4510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_identifier, 2, .production_id = 32), + [4512] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, .production_id = 32), SHIFT(358), + [4515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), + [4517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_argument_list, 3, .dynamic_precedence = 1), + [4519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 3, .dynamic_precedence = 1), + [4521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), + [4523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_argument_list, 4, .dynamic_precedence = 2), + [4525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 4, .dynamic_precedence = 2), + [4527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_argument_list, 4, .dynamic_precedence = 3), + [4529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 4, .dynamic_precedence = 3), + [4531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_argument_list, 4, .dynamic_precedence = 1), + [4533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 4, .dynamic_precedence = 1), + [4535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_argument_list, 2), + [4537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 2), + [4539] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, .production_id = 32), SHIFT(365), + [4542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(233), + [4544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(314), + [4546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_argument_list, 3, .dynamic_precedence = 2), + [4548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 3, .dynamic_precedence = 2), + [4550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_type, 2, .production_id = 15), + [4552] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_template_type, 2, .production_id = 15), REDUCE(sym_template_function, 2, .production_id = 16), + [4555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_type, 2, .production_id = 15), + [4557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_function, 2, .production_id = 16), + [4559] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_template_type, 2, .production_id = 15), REDUCE(sym_template_function, 2, .production_id = 16), + [4562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_function, 2, .production_id = 16), + [4564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(248), + [4566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_argument_list, 3, .dynamic_precedence = 3), + [4568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 3, .dynamic_precedence = 3), + [4570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3630), + [4572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), + [4574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4541), + [4576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4989), + [4578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4989), + [4580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5733), + [4582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1410), + [4584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [4586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [4588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [4590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [4592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [4594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4179), + [4596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4893), + [4598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4892), + [4600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4889), + [4602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4824), + [4604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4837), + [4606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4862), + [4608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4849), + [4610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4861), + [4612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4860), + [4614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4882), + [4616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4886), + [4618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4891), + [4620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4859), + [4622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4863), + [4624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4871), + [4626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4847), + [4628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4905), + [4630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4880), + [4632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4899), + [4634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4898), + [4636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4897), + [4638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4838), + [4640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4830), + [4642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4840), + [4644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4843), + [4646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4841), + [4648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4857), + [4650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declarator, 1), + [4652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), + [4654] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, .production_id = 32), SHIFT(364), + [4657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4717), + [4659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4524), + [4661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6146), + [4663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5875), + [4665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2904), + [4667] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression_not_binary, 1), SHIFT(361), + [4670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 2), + [4672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 2), + [4674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3026), + [4676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), + [4678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), + [4680] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(6130), + [4683] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(6626), + [4686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__requirement_clause_constraint, 3), + [4688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__requirement_clause_constraint, 3), + [4690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 3, .production_id = 68), + [4692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 3, .production_id = 68), + [4694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requires_expression, 3, .production_id = 61), + [4696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_expression, 3, .production_id = 61), + [4698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requires_expression, 2, .production_id = 19), + [4700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_expression, 2, .production_id = 19), + [4702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 4, .production_id = 112), + [4704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 4, .production_id = 112), + [4706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constraint_conjunction, 3, .production_id = 50), + [4708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint_conjunction, 3, .production_id = 50), + [4710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 4, .production_id = 111), + [4712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 4, .production_id = 111), + [4714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requirement_seq, 2), + [4716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requirement_seq, 2), + [4718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requirement_seq, 3), + [4720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requirement_seq, 3), + [4722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fold_expression, 3, .production_id = 38), + [4724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fold_expression, 3, .production_id = 38), + [4726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 3, .production_id = 69), + [4728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 3, .production_id = 69), + [4730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 5, .production_id = 153), + [4732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 5, .production_id = 153), + [4734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 2, .production_id = 30), + [4736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 2, .production_id = 30), + [4738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_condition_clause, 3, .production_id = 13), + [4740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_clause, 3, .production_id = 13), + [4742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3322), + [4744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_condition_clause, 4, .production_id = 131), + [4746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_clause, 4, .production_id = 131), + [4748] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(6143), + [4751] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(6624), + [4754] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression_not_binary, 1), SHIFT(351), + [4757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1911), + [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), + [4761] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, .production_id = 32), SHIFT(359), + [4764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3), + [4766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3), + [4768] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2), SHIFT_REPEAT(6826), + [4771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_string_literal, 7, .production_id = 188), + [4773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_string_literal, 7, .production_id = 188), + [4775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2), + [4777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2), + [4779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6826), + [4781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_string_literal, 5), + [4783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_string_literal, 5), + [4785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), + [4787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), + [4789] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(2222), + [4792] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(6169), + [4795] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(6613), + [4798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3538), + [4800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6672), + [4802] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(2229), + [4805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2794), + [4807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 1), + [4809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), + [4811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2222), + [4813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2801), + [4815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2747), + [4817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2229), + [4819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2746), + [4821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6806), + [4823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5772), + [4825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4050), + [4827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7272), + [4829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5207), + [4831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6599), + [4833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7274), + [4835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4011), + [4837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4051), + [4839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3622), + [4841] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(6171), + [4844] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(6678), + [4847] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2), SHIFT_REPEAT(6806), + [4850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .production_id = 116), + [4852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .production_id = 116), + [4854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 73), + [4856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 73), + [4858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 115), + [4860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 115), + [4862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2868), + [4864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2341), + [4866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2872), + [4868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 5, .production_id = 173), + [4870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 5, .production_id = 173), + [4872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration, 3, .production_id = 43), + [4874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration, 3, .production_id = 43), + [4876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [4878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5100), + [4880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5390), + [4882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 5, .production_id = 101), + [4884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 5, .production_id = 101), + [4886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 5, .production_id = 176), + [4888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 5, .production_id = 176), + [4890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration, 2, .production_id = 10), + [4892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration, 2, .production_id = 10), + [4894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, .production_id = 101), + [4896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 101), + [4898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, .production_id = 160), + [4900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 160), + [4902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, .production_id = 62), + [4904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 62), + [4906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, .production_id = 141), + [4908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 141), + [4910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declaration_list_item, 2), + [4912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declaration_list_item, 2), + [4914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 10), + [4916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 10), + [4918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 74), + [4920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 74), + [4922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2), + [4924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2), + [4926] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(2484), + [4929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .production_id = 73), + [4931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .production_id = 73), + [4933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 2, .production_id = 52), + [4935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 2, .production_id = 52), + [4937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration, 1, .production_id = 7), + [4939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration, 1, .production_id = 7), + [4941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, .production_id = 155), + [4943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, .production_id = 155), + [4945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 6, .production_id = 189), + [4947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 6, .production_id = 189), + [4949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, .production_id = 10), + [4951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, .production_id = 10), + [4953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, .production_id = 62), + [4955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 62), + [4957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_method_definition, 3, .production_id = 63), + [4959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_method_definition, 3, .production_id = 63), + [4961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_method_definition, 3, .production_id = 62), + [4963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_method_definition, 3, .production_id = 62), + [4965] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(2341), + [4968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, .production_id = 126), + [4970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 126), + [4972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, .production_id = 52), + [4974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 52), + [4976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, .production_id = 41), + [4978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), + [4980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, .production_id = 41), + [4982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), + [4984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2727), + [4986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6978), + [4988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6869), + [4990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6791), + [4992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [4994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, .production_id = 83), + [4996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, .production_id = 83), + [4998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, .production_id = 59), + [5000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, .production_id = 59), + [5002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5423), + [5004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 1, .dynamic_precedence = 1), + [5006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), + [5008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3908), + [5010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3908), + [5012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5316), + [5014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), + [5016] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, .production_id = 33), SHIFT(354), + [5019] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2), SHIFT_REPEAT(6791), + [5022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 2, .production_id = 18), + [5024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 2, .production_id = 18), + [5026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_name, 1, .production_id = 1), + [5028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(354), + [5030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), + [5032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3980), + [5034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3980), + [5036] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2), SHIFT_REPEAT(6869), + [5039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_type_identifier, 2, .production_id = 32), + [5041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, .production_id = 32), + [5043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5939), + [5045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [5047] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, .production_id = 33), SHIFT(364), + [5050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dependent_type_identifier, 2), + [5052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dependent_type_identifier, 2), + [5054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(364), + [5056] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(2404), + [5059] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(2412), + [5062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_name, 1), + [5064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_name, 1), + [5066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3129), + [5068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2412), + [5070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3128), + [5072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5352), + [5074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3120), + [5076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2404), + [5078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3124), + [5080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_qualifier, 1), + [5082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_qualifier, 1), + [5084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [5086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [5088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), + [5090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), + [5092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2910), + [5094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7174), + [5096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3282), + [5098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2512), + [5100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3283), + [5102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5718), + [5104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enum_base_clause, 2, .production_id = 88), + [5106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__enum_base_clause, 2, .production_id = 88), + [5108] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(2512), + [5111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, .production_id = 10), + [5113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, .production_id = 10), + [5115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6170), + [5117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5307), + [5119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_specifier, 4), + [5121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_specifier, 4), + [5123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, .production_id = 43), + [5125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, .production_id = 43), + [5127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6086), + [5129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5339), + [5131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, .production_id = 87), + [5133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, .production_id = 87), + [5135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6128), + [5137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decltype, 4), + [5139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decltype, 4), + [5141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dependent_type, 2, .dynamic_precedence = -1), + [5143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dependent_type, 2, .dynamic_precedence = -1), + [5145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2731), + [5147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7659), + [5149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [5151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(359), + [5153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_specifier, 1), + [5155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_specifier, 1), + [5157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, .production_id = 45), + [5159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, .production_id = 45), + [5161] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, .production_id = 33), SHIFT(359), + [5164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration, 3, .production_id = 92), + [5166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration, 3, .production_id = 92), + [5168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, .production_id = 90), + [5170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, .production_id = 90), + [5172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 5, .production_id = 123), + [5174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 5, .production_id = 123), + [5176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration, 4, .production_id = 129), + [5178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration, 4, .production_id = 129), + [5180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration, 4, .production_id = 86), + [5182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration, 4, .production_id = 86), + [5184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_placeholder_type_specifier, 2, .production_id = 25), + [5186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_placeholder_type_specifier, 2, .production_id = 25), + [5188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration, 4, .production_id = 128), + [5190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration, 4, .production_id = 128), + [5192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration, 4, .production_id = 127), + [5194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration, 4, .production_id = 127), + [5196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, .production_id = 125), + [5198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, .production_id = 125), + [5200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 4), + [5202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 4), + [5204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constraint_disjunction, 3, .production_id = 50), + [5206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint_disjunction, 3, .production_id = 50), + [5208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4912), + [5210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4912), + [5212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), + [5214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), + [5216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3126), + [5218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7206), + [5220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, .production_id = 99), + [5222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, .production_id = 99), + [5224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 3), + [5226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 3), + [5228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, .production_id = 86), + [5230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, .production_id = 86), + [5232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 2, .production_id = 12), + [5234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 2, .production_id = 12), + [5236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 2, .production_id = 12), + [5238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 2, .production_id = 12), + [5240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_specifier, 2, .production_id = 12), + [5242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_specifier, 2, .production_id = 12), + [5244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration, 1, .production_id = 11), + [5246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration, 1, .production_id = 11), + [5248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 18), + [5250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 18), + [5252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 34), + [5254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 34), + [5256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 2), + [5258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 2), + [5260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, .production_id = 42), + [5262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, .production_id = 42), + [5264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, .production_id = 9), + [5266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, .production_id = 9), + [5268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), + [5270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [5272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enum_base_clause, 2, .production_id = 89), + [5274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__enum_base_clause, 2, .production_id = 89), + [5276] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression_not_binary, 1), SHIFT(354), + [5279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, .production_id = 44), + [5281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, .production_id = 44), + [5283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_placeholder_type_specifier, 1), + [5285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_placeholder_type_specifier, 1), + [5287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2), + [5289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2), + [5291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration, 2, .production_id = 9), + [5293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration, 2, .production_id = 9), + [5295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration, 2, .production_id = 46), + [5297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration, 2, .production_id = 46), + [5299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requires_clause, 2, .production_id = 20), + [5301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_clause, 2, .production_id = 20), + [5303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4914), + [5305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4914), + [5307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3), + [5309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3), + [5311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration, 3, .production_id = 44), + [5313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration, 3, .production_id = 44), + [5315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration, 3, .production_id = 42), + [5317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration, 3, .production_id = 42), + [5319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration, 6, .production_id = 177), + [5321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration, 6, .production_id = 177), + [5323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decltype_auto, 4), + [5325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decltype_auto, 4), + [5327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, .production_id = 82), + [5329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, .production_id = 82), + [5331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration, 5, .production_id = 163), + [5333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration, 5, .production_id = 163), + [5335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration, 5, .production_id = 162), + [5337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration, 5, .production_id = 162), + [5339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration, 5, .production_id = 161), + [5341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration, 5, .production_id = 161), + [5343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 5), + [5345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 5), + [5347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, .production_id = 58), + [5349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, .production_id = 58), + [5351] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, .production_id = 32), SHIFT(354), + [5354] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, .production_id = 33), SHIFT(361), + [5357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_destructor_name, 2), + [5359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_destructor_name, 2), + [5361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), + [5363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), + [5365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3320), + [5367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7164), + [5369] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declarator, 1), REDUCE(sym__expression_not_binary, 1), + [5372] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression_not_binary, 1), SHIFT(358), + [5375] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declarator, 1), REDUCE(sym__expression_not_binary, 1), + [5378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6165), + [5380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5313), + [5382] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression_not_binary, 1), SHIFT(364), + [5385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_declarator, 3, .production_id = 147), + [5387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_declarator, 3, .production_id = 147), + [5389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dependent_identifier, 2), + [5391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dependent_identifier, 2), + [5393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5579), + [5395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_char_literal, 3), + [5397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_char_literal, 3), + [5399] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression_not_binary, 1), SHIFT(357), + [5402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_parameter_list, 3), + [5404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_parameter_list, 3), + [5406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6107), + [5408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5334), + [5410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_parameter_list, 4), + [5412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_parameter_list, 4), + [5414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2972), + [5416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2972), + [5418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2891), + [5420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7309), + [5422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3335), + [5424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3335), + [5426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3085), + [5428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7069), + [5430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_name, 2), + [5432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_name, 2), + [5434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2952), + [5436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3496), + [5438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3496), + [5440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3381), + [5442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7343), + [5444] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression_not_binary, 1), SHIFT(365), + [5447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_parameter_list, 2), + [5449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_parameter_list, 2), + [5451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dependent_field_identifier, 2), + [5453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dependent_field_identifier, 2), + [5455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_declarator, 4, .production_id = 147), + [5457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_declarator, 4, .production_id = 147), + [5459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3153), + [5461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2), + [5463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2), + [5465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3), + [5467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3), + [5469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3197), + [5471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3197), + [5473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2949), + [5475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7596), + [5477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4), + [5479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4), + [5481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3132), + [5483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7134), + [5485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3179), + [5487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 50), + [5489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 50), + [5491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1830), + [5493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), + [5495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3048), + [5497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5940), + [5499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5940), + [5501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_name, 3), + [5503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_name, 3), + [5505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1827), + [5507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), + [5509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1852), + [5511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1855), + [5513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1856), + [5515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), + [5517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1998), + [5519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), + [5521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1820), + [5523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), + [5525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1851), + [5527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), + [5529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), + [5531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 66), + [5533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 66), + [5535] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 66), SHIFT(354), + [5538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 67), + [5540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 67), + [5542] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(6175), + [5545] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(6620), + [5548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7362), + [5550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression_not_binary, 1), SHIFT(5652), + [5553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1992), + [5555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), + [5557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 4, .production_id = 78), + [5559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 4, .production_id = 78), + [5561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_literal_expression, 4, .production_id = 78), + [5563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_literal_expression, 4, .production_id = 78), + [5565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3987), + [5567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, .production_id = 81), + [5569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, .production_id = 81), + [5571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_method, 2, .production_id = 105), + [5573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_method, 2, .production_id = 105), + [5575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, .production_id = 107), + [5577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, .production_id = 107), + [5579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, .production_id = 57), + [5581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, .production_id = 57), + [5583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3041), + [5585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 50), + [5587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), + [5589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, .production_id = 50), + [5591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1832), + [5593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 2), + [5595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 8), + [5597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 8), + [5599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [5601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_expression, 3), + [5603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete_expression, 3), + [5605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 3), + [5607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 3), + [5609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 4, .production_id = 95), + [5611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 4, .production_id = 95), + [5613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, .production_id = 97), + [5615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, .production_id = 97), + [5617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, .production_id = 98), + [5619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, .production_id = 98), + [5621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6077), + [5623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4944), + [5625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4944), + [5627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null, 1), + [5629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null, 1), + [5631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 4, .production_id = 108), + [5633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 4, .production_id = 108), + [5635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), + [5637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), + [5639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), + [5641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_expression, 5), + [5643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete_expression, 5), + [5645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, .production_id = 4), + [5647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 4), + [5649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 5, .production_id = 121), + [5651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 5, .production_id = 121), + [5653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 5, .production_id = 122), + [5655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 5, .production_id = 122), + [5657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), + [5659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), + [5661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), + [5663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 4), + [5665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 4), + [5667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 2, .production_id = 13), + [5669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 2, .production_id = 13), + [5671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_user_defined_literal, 2), + [5673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_user_defined_literal, 2), + [5675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_expression, 2), + [5677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete_expression, 2), + [5679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_co_await_expression, 2, .production_id = 4), + [5681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_co_await_expression, 2, .production_id = 4), + [5683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 4), + [5685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 4), + [5687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 5, .production_id = 135), + [5689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 5, .production_id = 135), + [5691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4945), + [5693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4945), + [5695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_expression, 2, .production_id = 4), + [5697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_expression, 2, .production_id = 4), + [5699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pack_expansion, 2, .production_id = 26), + [5701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pack_expansion, 2, .production_id = 26), + [5703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 5, .production_id = 137), + [5705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 5, .production_id = 137), + [5707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 7, .production_id = 185), + [5709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 7, .production_id = 185), + [5711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 5, .production_id = 138), + [5713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 5, .production_id = 138), + [5715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 5, .production_id = 148), + [5717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 5, .production_id = 148), + [5719] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression_not_binary, 1), SHIFT(7362), + [5722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 27), + [5724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 27), + [5726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_literal_expression, 2, .production_id = 29), + [5728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_literal_expression, 2, .production_id = 29), + [5730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5, .production_id = 151), + [5732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 5, .production_id = 151), + [5734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 9, .production_id = 204), + [5736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 9, .production_id = 204), + [5738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_expression, 9), + [5740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_expression, 9), + [5742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 8, .production_id = 199), + [5744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 8, .production_id = 199), + [5746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 8, .production_id = 198), + [5748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 8, .production_id = 198), + [5750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_expression, 8), + [5752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_expression, 8), + [5754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 6, .production_id = 159), + [5756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 6, .production_id = 159), + [5758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 7, .production_id = 186), + [5760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 7, .production_id = 186), + [5762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_expression, 4), + [5764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete_expression, 4), + [5766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 6, .production_id = 171), + [5768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 6, .production_id = 171), + [5770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 6, .production_id = 170), + [5772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 6, .production_id = 170), + [5774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_offsetof_expression, 6, .production_id = 168), + [5776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_offsetof_expression, 6, .production_id = 168), + [5778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 5), + [5780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 5), + [5782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, .dynamic_precedence = 1), + [5784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), + [5786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5898), + [5788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1963), + [5790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1960), + [5792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1889), + [5794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), + [5796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3334), + [5798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), + [5800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), + [5802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1915), + [5804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1912), + [5806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1904), + [5808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), + [5810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1891), + [5812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), + [5814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1924), + [5816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1922), + [5818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), + [5820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), + [5822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3234), + [5824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3333), + [5826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), + [5828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), + [5830] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 66), SHIFT(364), + [5833] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression_not_binary, 1), SHIFT(359), + [5836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3606), + [5838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7059), + [5840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3491), + [5842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1813), + [5844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1811), + [5846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1810), + [5848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1761), + [5850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1809), + [5852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), + [5854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), + [5856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1804), + [5858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1803), + [5860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1801), + [5862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), + [5864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), + [5866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1797), + [5868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), + [5870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1789), + [5872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1784), + [5874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1783), + [5876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1781), + [5878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7401), + [5880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), + [5882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7396), + [5884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7394), + [5886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7393), + [5888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7392), + [5890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7391), + [5892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7390), + [5894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7389), + [5896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7388), + [5898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7387), + [5900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7386), + [5902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), + [5904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), + [5906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), + [5908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), + [5910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), + [5912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), + [5914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), + [5916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3568), + [5918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7385), + [5920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7384), + [5922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_requirement, 6), + [5924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_requirement, 6), + [5926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5524), + [5928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__requirement, 1, .production_id = 60), + [5930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__requirement, 1, .production_id = 60), + [5932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3007), + [5934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3782), + [5936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), + [5938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3529), + [5940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3014), + [5942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3614), + [5944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_requirement, 5), + [5946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_requirement, 5), + [5948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4013), + [5950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1850), + [5952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), + [5954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5227), + [5956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4939), + [5958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4941), + [5960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4939), + [5962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4941), + [5964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_requirement, 2), + [5966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_requirement, 2), + [5968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3212), + [5970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), + [5972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_requirement, 4), + [5974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_requirement, 4), + [5976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3323), + [5978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1935), + [5980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1945), + [5982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), + [5984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3516), + [5986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5925), + [5988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5925), + [5990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3388), + [5992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4696), + [5994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4696), + [5996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7606), + [5998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_storage_class_specifier, 1), + [6000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_storage_class_specifier, 1), + [6002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5962), + [6004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5830), + [6006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3409), + [6008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4682), + [6010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4682), + [6012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5330), + [6014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3366), + [6016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4670), + [6018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4670), + [6020] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(3367), + [6023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), + [6025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1973), + [6027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2021), + [6029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2050), + [6031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), + [6033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2009), + [6035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2000), + [6037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), + [6039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1950), + [6041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), + [6043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), + [6045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [6047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3401), + [6049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4672), + [6051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4672), + [6053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3504), + [6055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), + [6057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), + [6059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1947), + [6061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3452), + [6063] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 66), SHIFT(359), + [6066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5889), + [6068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5889), + [6070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2067), + [6072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2066), + [6074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), + [6076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), + [6078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2063), + [6080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2062), + [6082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2061), + [6084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), + [6086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2059), + [6088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), + [6090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2055), + [6092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), + [6094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), + [6096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), + [6098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1987), + [6100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1980), + [6102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), + [6104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), + [6106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1942), + [6108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1940), + [6110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1932), + [6112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), + [6114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1916), + [6116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), + [6118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2044), + [6120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), + [6122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), + [6124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1975), + [6126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1971), + [6128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), + [6130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), + [6132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 66), SHIFT(366), + [6135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(6069), + [6138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(6621), + [6141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4384), + [6143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4936), + [6145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4943), + [6147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4936), + [6149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4943), + [6151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [6153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4940), + [6155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4942), + [6157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_virtual, 1), + [6159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_virtual, 1), + [6161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 1, .production_id = 2), + [6163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 1, .production_id = 2), + [6165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3692), + [6167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7496), + [6169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__binary_fold_operator, 3, .production_id = 117), + [6171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_fold_operator, 3, .production_id = 117), + [6173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 18), + [6175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 18), + [6177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5067), + [6179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4934), + [6181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5169), + [6183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5433), + [6185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4895), + [6187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4894), + [6189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4881), + [6191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4652), + [6193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(357), + [6195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [6197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5100), + [6199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5390), + [6201] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, .production_id = 33), SHIFT(357), + [6204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), SHIFT(3729), + [6207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3367), + [6209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3731), + [6211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5882), + [6213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 2), + [6215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 2), + [6217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5868), + [6219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6070), + [6221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4687), + [6223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5280), + [6225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5741), + [6227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2802), + [6229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5867), + [6231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5878), + [6233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5883), + [6235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), + [6237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), + [6239] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(4050), + [6242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(7272), + [6245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(6599), + [6248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(7274), + [6251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(4011), + [6254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(4051), + [6257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 3, .production_id = 18), + [6259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 3, .production_id = 18), + [6261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(3682), + [6264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4713), + [6266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5766), + [6268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4546), + [6270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4747), + [6272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5449), + [6274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4855), + [6276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4826), + [6278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4827), + [6280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4738), + [6282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7532), + [6284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4606), + [6286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4716), + [6288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5712), + [6290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3156), + [6292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_declspec_modifier, 4), + [6294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_declspec_modifier, 4), + [6296] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__constructor_specifiers, 1), REDUCE(aux_sym__declaration_specifiers_repeat1, 1), + [6299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constructor_specifiers, 1), + [6301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constructor_specifiers, 1), + [6303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__constructor_specifiers, 1), REDUCE(aux_sym__declaration_specifiers_repeat1, 1), + [6306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 1), + [6308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), + [6310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), + [6312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5765), + [6314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4464), + [6316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5363), + [6318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4828), + [6320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4856), + [6322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4829), + [6324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4636), + [6326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3729), + [6328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5315), + [6330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5451), + [6332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4610), + [6334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5442), + [6336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4858), + [6338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4868), + [6340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4866), + [6342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4619), + [6344] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, .production_id = 33), SHIFT(351), + [6347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), + [6349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, .production_id = 21), + [6351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5142), + [6353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5142), + [6355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7718), + [6357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_declarator_seq, 1, .production_id = 21), + [6359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2503), + [6361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3767), + [6363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5271), + [6365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7240), + [6367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4925), + [6369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6053), + [6371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 1, .production_id = 52), + [6373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3870), + [6375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3870), + [6377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), + [6379] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(3745), + [6382] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(7718), + [6385] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(6949), + [6388] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(7715), + [6391] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(2503), + [6394] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(3631), + [6397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [6399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2328), + [6401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(351), + [6403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), + [6405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [6407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, .production_id = 21), + [6409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_declarator_seq, 2, .production_id = 21), + [6411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2), + [6413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2), + [6415] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2), SHIFT_REPEAT(4050), + [6418] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2), SHIFT_REPEAT(7272), + [6421] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2), SHIFT_REPEAT(6599), + [6424] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2), SHIFT_REPEAT(7274), + [6427] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2), SHIFT_REPEAT(4011), + [6430] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2), SHIFT_REPEAT(4051), + [6433] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2), SHIFT_REPEAT(4531), + [6436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3871), + [6438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3871), + [6440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), + [6442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2712), + [6444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_declaration, 2, .production_id = 96), + [6446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4604), + [6448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [6450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2377), + [6452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), + [6454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2689), + [6456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5336), + [6458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [6460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), + [6462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), + [6464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7397), + [6466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6920), + [6468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3904), + [6470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3904), + [6472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3759), + [6474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4938), + [6476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4579), + [6478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7397), + [6480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7398), + [6482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3984), + [6484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7066), + [6486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4582), + [6488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [6490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), + [6492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), + [6494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2658), + [6496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5345), + [6498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2617), + [6500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), + [6502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_reference_declarator, 1), + [6504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), + [6506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), + [6508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [6510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, .production_id = 18), + [6512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), + [6514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4085), + [6516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4797), + [6518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4797), + [6520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1412), + [6522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3692), + [6524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7496), + [6526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3687), + [6528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5461), + [6530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4908), + [6532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3766), + [6534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4915), + [6536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3701), + [6538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4931), + [6540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 1, .production_id = 2), + [6542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, .production_id = 21), + [6544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_declarator_seq, 3, .production_id = 21), + [6546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5986), + [6548] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(4579), + [6551] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(7397), + [6554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(6920), + [6557] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(7398), + [6560] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(3904), + [6563] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(4582), + [6566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4930), + [6568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1), SHIFT(1644), + [6571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), + [6573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1890), + [6575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4215), + [6577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4900), + [6579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4900), + [6581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3984), + [6583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7066), + [6585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3968), + [6587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4911), + [6589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3702), + [6591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4933), + [6593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), SHIFT(3994), + [6596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3682), + [6598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3996), + [6600] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), + [6603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5304), + [6605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3978), + [6607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2041), + [6609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), + [6611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2038), + [6613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), + [6615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), + [6617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2032), + [6619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), + [6621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2029), + [6623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), + [6625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2023), + [6627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), + [6629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), + [6631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), + [6633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), + [6635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), + [6637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), + [6639] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1), SHIFT(1605), + [6642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5606), + [6644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5159), + [6646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4059), + [6648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5206), + [6650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5206), + [6652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5915), + [6654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4019), + [6656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5200), + [6658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5200), + [6660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), + [6662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [6664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3893), + [6666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3707), + [6668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3304), + [6670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4398), + [6672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [6674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2005), + [6676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), + [6678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2002), + [6680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), + [6682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), + [6684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1972), + [6686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), + [6688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1957), + [6690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), + [6692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1951), + [6694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), + [6696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1949), + [6698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), + [6700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), + [6702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), + [6704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), + [6706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4400), + [6708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), + [6710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), + [6712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), + [6714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3238), + [6716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3592), + [6718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), + [6720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1897), + [6722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), + [6724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1943), + [6726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), + [6728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), + [6730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2045), + [6732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), + [6734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2024), + [6736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), + [6738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2016), + [6740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), + [6742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), + [6744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5880), + [6746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), + [6748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), + [6750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), + [6752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), + [6754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4521), + [6756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4965), + [6758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4965), + [6760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), + [6762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2926), + [6764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2768), + [6766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), + [6768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2), SHIFT(1763), + [6771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comma_expression, 3, .production_id = 76), + [6773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2), + [6775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5351), + [6777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3272), + [6779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declarator, 1), + [6781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3567), + [6783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), + [6785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4504), + [6787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), + [6789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3625), + [6791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3561), + [6793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4601), + [6795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2973), + [6797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3519), + [6799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), + [6801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3427), + [6803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, .production_id = 2), + [6805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), + [6807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3713), + [6809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declarator, 3, .production_id = 100), + [6811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_declaration, 4, .production_id = 164), + [6813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4217), + [6815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), + [6817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5886), + [6819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4349), + [6821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, .production_id = 18), + [6823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), + [6825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), + [6827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), + [6829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3224), + [6831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3056), + [6833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3721), + [6835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4909), + [6837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4311), + [6839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2896), + [6841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5769), + [6843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3499), + [6845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2578), + [6847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3969), + [6849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5794), + [6851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), + [6853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3001), + [6855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), + [6857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), + [6859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), + [6861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3574), + [6863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), + [6865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), + [6867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5494), + [6869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7229), + [6871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), + [6873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [6875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [6877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), + [6879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), + [6881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [6883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5512), + [6885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7220), + [6887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [6889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [6891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), + [6893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [6895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [6897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), + [6899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [6901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [6903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [6905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [6907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [6909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [6911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [6913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [6915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [6917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [6919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), + [6921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4520), + [6923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [6925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [6927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [6929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [6931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), + [6933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [6935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [6937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), + [6939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [6941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter_declaration, 4, .production_id = 173), + [6943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter_declaration, 3, .production_id = 141), + [6945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), + [6947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [6949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [6951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [6953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [6955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [6957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5534), + [6959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7479), + [6961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [6963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), + [6965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [6967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), + [6969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_lambda_capture_specifier_repeat1, 2), + [6971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), + [6973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3745), + [6975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7715), + [6977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3631), + [6979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), + [6981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), + [6983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), + [6985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), + [6987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), + [6989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), + [6991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [6993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 4), + [6995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [6997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4542), + [6999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5015), + [7001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5015), + [7003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4729), + [7005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7237), + [7007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3207), + [7009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [7011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [7013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [7015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [7017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [7019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [7021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), + [7023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), + [7025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), + [7027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [7029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5502), + [7031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7006), + [7033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [7035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5510), + [7037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7535), + [7039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), + [7041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_argument_list_repeat1, 2, .dynamic_precedence = 1), + [7043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [7045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [7047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [7049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [7051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [7053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [7055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [7057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [7059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5497), + [7061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7050), + [7063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_pair, 3, .production_id = 134), + [7065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [7067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), + [7069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), + [7071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [7073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5496), + [7075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6985), + [7077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [7079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [7081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [7083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [7085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [7087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), + [7089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 3, .production_id = 124), + [7091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5491), + [7093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7516), + [7095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5493), + [7097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7301), + [7099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), + [7101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [7103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [7105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [7107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2855), + [7109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [7111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1853), + [7113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), + [7115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1835), + [7117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), + [7119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), + [7121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1861), + [7123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), + [7125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1876), + [7127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), + [7129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1886), + [7131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), + [7133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), + [7135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [7137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), + [7139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), + [7141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), + [7143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), + [7145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [7147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [7149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), + [7151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), + [7153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [7155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), + [7157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2956), + [7159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), + [7161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), + [7163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [7165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [7167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2848), + [7169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2450), + [7171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), + [7173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), + [7175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [7177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [7179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), + [7181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2560), + [7183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), + [7185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5350), + [7187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3313), + [7189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), + [7191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), + [7193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3693), + [7195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_call_modifier, 1), + [7197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_call_modifier, 1), + [7199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), + [7201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), + [7203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3327), + [7205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), + [7207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2989), + [7209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [7211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [7213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), + [7215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3700), + [7217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2700), + [7219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bitfield_clause, 2), + [7221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [7223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3539), + [7225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3718), + [7227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), + [7229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3406), + [7231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3769), + [7233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2997), + [7235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), + [7237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2584), + [7239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3116), + [7241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3737), + [7243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4101), + [7245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), + [7247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), + [7249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), + [7251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [7253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unary_left_fold, 3, .production_id = 50), + [7255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6205), + [7257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [7259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [7261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4946), + [7263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4948), + [7265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4723), + [7267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), + [7269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2411), + [7271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6572), + [7273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [7275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4563), + [7277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5125), + [7279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5125), + [7281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [7283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [7285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [7287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [7289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [7291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [7293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [7295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), + [7297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2313), + [7299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), + [7301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6244), + [7303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2645), + [7305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [7307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [7309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3875), + [7311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2293), + [7313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [7315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), + [7317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), + [7319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [7321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4537), + [7323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [7325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3673), + [7327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6000), + [7329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2623), + [7331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), + [7333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [7335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_fold, 3, .production_id = 77), + [7337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5282), + [7339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3705), + [7341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [7343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2316), + [7345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2660), + [7347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3994), + [7349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2678), + [7351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [7353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [7355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), + [7357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), + [7359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2651), + [7361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [7363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2641), + [7365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2580), + [7367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2626), + [7369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [7371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), + [7373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [7375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), + [7377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), + [7379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2965), + [7381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), + [7383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [7385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2568), + [7387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), + [7389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4583), + [7391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5153), + [7393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5153), + [7395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3965), + [7397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6517), + [7399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_declaration, 1), + [7401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4627), + [7403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__function_declarator_seq_repeat1, 2), + [7405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__function_declarator_seq_repeat1, 2), + [7407] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_declarator_seq_repeat1, 2), SHIFT_REPEAT(7718), + [7410] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(2503), + [7413] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(2503), + [7416] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(3745), + [7419] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(7718), + [7422] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(6603), + [7425] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(7715), + [7428] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(2503), + [7431] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(3631), + [7434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4646), + [7436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5219), + [7438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5219), + [7440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5017), + [7442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5017), + [7444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_explicit_function_specifier, 1), + [7446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), + [7448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_explicit_function_specifier, 1), + [7450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_explicit_function_specifier, 4), + [7452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_explicit_function_specifier, 4), + [7454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2933), + [7456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5797), + [7458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2415), + [7460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3084), + [7462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5428), + [7464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4854), + [7466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4852), + [7468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4851), + [7470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3077), + [7472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7523), + [7474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4639), + [7476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2517), + [7478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5770), + [7480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2231), + [7482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2757), + [7484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5368), + [7486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4865), + [7488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4907), + [7490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4906), + [7492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2760), + [7494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7440), + [7496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4621), + [7498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4757), + [7500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4561), + [7502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4734), + [7504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [7506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5905), + [7508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5617), + [7510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4559), + [7512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3755), + [7514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5735), + [7516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5425), + [7518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4835), + [7520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4888), + [7522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4901), + [7524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4612), + [7526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 2), + [7528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 2), + [7530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [7532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2815), + [7534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5713), + [7536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2267), + [7538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2942), + [7540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5411), + [7542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4842), + [7544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4869), + [7546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4867), + [7548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2941), + [7550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7514), + [7552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4605), + [7554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 3), + [7556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 3), + [7558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 4), + [7560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 4), + [7562] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(4561), + [7565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3886), + [7567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5737), + [7569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5374), + [7571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4825), + [7573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4850), + [7575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4864), + [7577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4611), + [7579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3040), + [7581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5726), + [7583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2504), + [7585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3290), + [7587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5443), + [7589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4876), + [7591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4848), + [7593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4846), + [7595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3202), + [7597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7400), + [7599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4626), + [7601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [7603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5342), + [7605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), + [7607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), + [7609] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), SHIFT_REPEAT(4712), + [7612] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), SHIFT_REPEAT(4714), + [7615] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_declarator_seq_repeat1, 2), SHIFT_REPEAT(7397), + [7618] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(3904), + [7621] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(3904), + [7624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5311), + [7626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [7628] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(4520), + [7631] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(4520), + [7634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameter_list, 2), REDUCE(sym_argument_list, 2), + [7637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6064), + [7639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5312), + [7641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5340), + [7643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5354), + [7645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_pointer_modifier, 1), + [7647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_pointer_modifier, 1), + [7649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1), + [7651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1), + [7653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3817), + [7655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5318), + [7657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), + [7659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), + [7661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT_REPEAT(6599), + [7664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3638), + [7666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [7668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [7670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3946), + [7672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5988), + [7674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2615), + [7676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [7678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), + [7680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3545), + [7682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6140), + [7684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2752), + [7686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [7688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), + [7690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3610), + [7692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6025), + [7694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2364), + [7696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [7698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), + [7700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3038), + [7702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6065), + [7704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2403), + [7706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [7708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), + [7710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3328), + [7712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6177), + [7714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3807), + [7716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [7718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), + [7720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4393), + [7722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5970), + [7724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, .production_id = 21), + [7726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_declarator_seq, 4, .production_id = 21), + [7728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3570), + [7730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4574), + [7732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2699), + [7734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), + [7736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), + [7738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4555), + [7740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3372), + [7742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2602), + [7744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), + [7746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4577), + [7748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2304), + [7750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), + [7752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5791), + [7754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2421), + [7756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), + [7758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5213), + [7760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), + [7762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5789), + [7764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5427), + [7766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), + [7768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5648), + [7770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6099), + [7772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__preproc_expression, 1), + [7774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4966), + [7776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__preproc_expression, 1), + [7778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3911), + [7780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2528), + [7782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), + [7784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5753), + [7786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2184), + [7788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6013), + [7790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5266), + [7792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2734), + [7794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5439), + [7796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), + [7798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4036), + [7800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5581), + [7802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5645), + [7804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5259), + [7806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5216), + [7808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), + [7810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5526), + [7812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6051), + [7814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5532), + [7816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5372), + [7818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5203), + [7820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3802), + [7822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5767), + [7824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5515), + [7826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5708), + [7828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5547), + [7830] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__typedef_sized_type_specifier, 1), REDUCE(aux_sym_sized_type_specifier_repeat1, 1), + [7833] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__typedef_sized_type_specifier, 1), REDUCE(aux_sym_sized_type_specifier_repeat1, 1), + [7836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 1), + [7838] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1), SHIFT(1604), + [7841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), + [7843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3549), + [7845] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(5017), + [7848] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(5017), + [7851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5267), + [7853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), + [7855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3342), + [7857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), + [7859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3623), + [7861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3338), + [7863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3620), + [7865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3523), + [7867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), + [7869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3012), + [7871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3010), + [7873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4463), + [7875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2766), + [7877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5455), + [7879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4910), + [7881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5117), + [7883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5041), + [7885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6829), + [7887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5086), + [7889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5086), + [7891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4953), + [7893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6917), + [7895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4996), + [7897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5105), + [7899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4976), + [7901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4978), + [7903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4978), + [7905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4980), + [7907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4981), + [7909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4982), + [7911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5018), + [7913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5029), + [7915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5034), + [7917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5037), + [7919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5037), + [7921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5039), + [7923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5089), + [7925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5304), + [7927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4952), + [7929] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), + [7931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4970), + [7933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4957), + [7935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 2), + [7937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 2), + [7939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4961), + [7941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5043), + [7943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6627), + [7945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5044), + [7947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5044), + [7949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5137), + [7951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6617), + [7953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_unary_expression, 2, .production_id = 4), + [7955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_unary_expression, 2, .production_id = 4), + [7957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4984), + [7959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4987), + [7961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4988), + [7963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5013), + [7965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5023), + [7967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_binary_expression, 3, .production_id = 50), + [7969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_binary_expression, 3, .production_id = 50), + [7971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5126), + [7973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5069), + [7975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5185), + [7977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2216), + [7979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), + [7981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [7983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1397), + [7985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), + [7987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6818), + [7989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5140), + [7991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), + [7993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [7995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), + [7997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6835), + [7999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5121), + [8001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5122), + [8003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5123), + [8005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5036), + [8007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5038), + [8009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 2), + [8011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 2), + [8013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_parenthesized_expression, 3), + [8015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_parenthesized_expression, 3), + [8017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5047), + [8019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, .production_id = 21), + [8021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_declarator_seq, 6, .production_id = 21), + [8023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5053), + [8025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5054), + [8027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5129), + [8029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5130), + [8031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, .production_id = 21), + [8033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_declarator_seq, 5, .production_id = 21), + [8035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5113), + [8037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5119), + [8039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2554), + [8041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [8043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), + [8045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6795), + [8047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5131), + [8049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5132), + [8051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 4), + [8053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 4), + [8055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5135), + [8057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5138), + [8059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5102), + [8061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5136), + [8063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5095), + [8065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5118), + [8067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5096), + [8069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__typedef_type_specifier, 1, .production_id = 1), + [8071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3714), + [8073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__typedef_type_specifier, 1, .production_id = 1), + [8075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5101), + [8077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2), + [8079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__typedef_type_specifier, 1, .production_id = 6), + [8081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__typedef_type_specifier, 1, .production_id = 6), + [8083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5104), + [8085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5106), + [8087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5112), + [8089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5109), + [8091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2583), + [8093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [8095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), + [8097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6879), + [8099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call_expression, 2, .production_id = 8), + [8101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call_expression, 2, .production_id = 8), + [8103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4973), + [8105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__typedef_sized_type_specifier, 2), + [8107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__typedef_sized_type_specifier, 2), + [8109] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__typedef_sized_type_specifier, 2), SHIFT_REPEAT(5104), + [8112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 3), + [8114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 3), + [8116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 4), + [8118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 4), + [8120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5139), + [8122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5010), + [8124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5040), + [8126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5065), + [8128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5066), + [8130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5949), + [8132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [8134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5052), + [8136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5056), + [8138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5058), + [8140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5060), + [8142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5061), + [8144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5064), + [8146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__typedef_sized_type_specifier, 1), + [8148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__typedef_sized_type_specifier, 1), + [8150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [8152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [8154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [8156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5120), + [8158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [8160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [8162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [8164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5032), + [8166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [8168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [8170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [8172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [8174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ref_qualifier, 1), + [8176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ref_qualifier, 1), + [8178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2100), + [8180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7263), + [8182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5143), + [8184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6360), + [8186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1378), + [8188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__typedef_type_specifier, 1), + [8190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__typedef_type_specifier, 1), + [8192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4287), + [8194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6402), + [8196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4088), + [8198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6432), + [8200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [8202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4932), + [8204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4637), + [8206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [8208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [8210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [8212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1403), + [8214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), + [8216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6843), + [8218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), + [8220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [8222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [8224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), + [8226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [8228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6916), + [8230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2409), + [8232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [8234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [8236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6612), + [8238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2564), + [8240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [8242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [8244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [8246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [8248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [8250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [8252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), + [8254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), + [8256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [8258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6598), + [8260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4920), + [8262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4921), + [8264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5755), + [8266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6323), + [8268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [8270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [8272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6947), + [8274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2614), + [8276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declarator_seq, 7, .production_id = 21), + [8278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_declarator_seq, 7, .production_id = 21), + [8280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3572), + [8282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5683), + [8284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2902), + [8286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7080), + [8288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5232), + [8290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6478), + [8292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2890), + [8294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3292), + [8296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3044), + [8298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3426), + [8300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3989), + [8302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2210), + [8304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6965), + [8306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5256), + [8308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6225), + [8310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2893), + [8312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declarator_seq, 8, .production_id = 21), + [8314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2094), + [8316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7335), + [8318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5263), + [8320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6197), + [8322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2889), + [8324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_specifier, 5), + [8326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_specifier, 5), + [8328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2820), + [8330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5265), + [8332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6515), + [8334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4927), + [8336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4913), + [8338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2906), + [8340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5268), + [8342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6551), + [8344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2919), + [8346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_declarator_seq, 8, .production_id = 21), + [8348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4140), + [8350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6592), + [8352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_noexcept, 1), + [8354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), + [8356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_noexcept, 1), + [8358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2160), + [8360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7629), + [8362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5272), + [8364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6209), + [8366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2931), + [8368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2084), + [8370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5273), + [8372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6215), + [8374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2161), + [8376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5274), + [8378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6271), + [8380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4392), + [8382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_noexcept, 3), + [8384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_noexcept, 3), + [8386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_specifier, 3), + [8388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_specifier, 3), + [8390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3280), + [8392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_noexcept, 4), + [8394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_noexcept, 4), + [8396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3906), + [8398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2834), + [8400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5286), + [8402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6482), + [8404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3108), + [8406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5289), + [8408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6338), + [8410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__function_declarator_seq_repeat2, 2), + [8412] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_declarator_seq_repeat2, 2), SHIFT_REPEAT(5461), + [8415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3990), + [8417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6308), + [8419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3002), + [8421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3451), + [8423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_specifier, 4), + [8425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_specifier, 4), + [8427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4488), + [8429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3626), + [8431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__function_declarator_seq_repeat2, 2), + [8433] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_declarator_seq_repeat2, 2), SHIFT_REPEAT(5390), + [8436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2113), + [8438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5302), + [8440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6502), + [8442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6145), + [8444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5303), + [8446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6456), + [8448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3632), + [8450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2510), + [8452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4539), + [8454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2922), + [8456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3756), + [8458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5415), + [8460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6190), + [8462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), + [8464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), + [8466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 4, .production_id = 118), + [8468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1401), + [8470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 3, .dynamic_precedence = 1, .production_id = 39), + [8472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, .production_id = 58), + [8474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, .production_id = 75), + [8476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), + [8478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_type_specifier, 4, .dynamic_precedence = -1, .production_id = 119), + [8480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_type_specifier, 4, .dynamic_precedence = -1, .production_id = 119), + [8482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_reference_declarator, 2), + [8484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), + [8486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), + [8488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), + [8490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5815), + [8492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6356), + [8494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, .dynamic_precedence = 1, .production_id = 5), + [8496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2977), + [8498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, .production_id = 37), + [8500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), + [8502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2828), + [8504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3895), + [8506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), + [8508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT_REPEAT(6920), + [8511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5595), + [8513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 104), + [8515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5593), + [8517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__abstract_declarator, 1), + [8519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__abstract_declarator, 1), + [8521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5569), + [8523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7171), + [8525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7324), + [8527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4926), + [8529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_parenthesized_declarator, 3), + [8531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5573), + [8533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 24), + [8535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7123), + [8537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 152), + [8539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 152), + [8541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 104), + [8543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 5, .dynamic_precedence = 1, .production_id = 149), + [8545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7608), + [8547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5598), + [8549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, .production_id = 110), + [8551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5563), + [8553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_virtual_specifier, 1), + [8555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_virtual_specifier, 1), + [8557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 5, .production_id = 150), + [8559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3), + [8561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5565), + [8563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 2), + [8565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 2, .production_id = 22), + [8567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), + [8569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, .production_id = 24), + [8571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 3, .production_id = 24), + [8573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 3), + [8575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7236), + [8577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7539), + [8579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 4, .dynamic_precedence = 1, .production_id = 79), + [8581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 24), + [8583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 3, .production_id = 110), + [8585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5567), + [8587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 3, .dynamic_precedence = 1, .production_id = 39), + [8589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5548), + [8591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5555), + [8593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_parenthesized_declarator, 3), + [8595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4924), + [8597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5587), + [8599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5591), + [8601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 5, .production_id = 150), + [8603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trailing_return_type, 2), + [8605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5586), + [8607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trailing_return_type, 2), + [8609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4950), + [8611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4949), + [8613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_declarator, 2, .dynamic_precedence = 1), + [8615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5583), + [8617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5585), + [8619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 2, .dynamic_precedence = 1, .production_id = 5), + [8621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 2), + [8623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5545), + [8625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_function_declarator, 2, .production_id = 22), + [8627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5577), + [8629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7631), + [8631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6989), + [8633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 1, .production_id = 31), + [8635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7411), + [8637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_function_declarator, 1, .production_id = 31), + [8639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_field_declarator, 2, .dynamic_precedence = 1), + [8641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [8643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6864), + [8645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5656), + [8647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6075), + [8649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 3, .dynamic_precedence = 1, .production_id = 39), + [8651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), + [8653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6878), + [8655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5989), + [8657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), + [8659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [8661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6948), + [8663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6164), + [8665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), + [8667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [8669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6860), + [8671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6012), + [8673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 4, .dynamic_precedence = 1, .production_id = 79), + [8675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), + [8677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), + [8679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6619), + [8681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6114), + [8683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), + [8685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [8687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6902), + [8689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5971), + [8691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), + [8693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2631), + [8695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [8697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6811), + [8699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6082), + [8701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 5, .dynamic_precedence = 1, .production_id = 149), + [8703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2671), + [8705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, .production_id = 5), + [8707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4923), + [8709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4922), + [8711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), + [8713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6698), + [8715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6010), + [8717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [8719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), + [8721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 2, .dynamic_precedence = 1, .production_id = 5), + [8723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), + [8725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2452), + [8727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [8729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6830), + [8731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6031), + [8733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [8735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), + [8737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4917), + [8739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4916), + [8741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_declarator, 2), + [8743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_declarator, 2), + [8745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 2, .production_id = 5), + [8747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT_REPEAT(6603), + [8750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5627), + [8752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5862), + [8754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5776), + [8756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), + [8758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_declarator, 3, .dynamic_precedence = -10), + [8760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_declarator, 3, .dynamic_precedence = -10), + [8762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 4, .production_id = 24), + [8764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 4, .production_id = 24), + [8766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declarator, 1, .production_id = 91), + [8768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [8770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declarator, 1, .production_id = 91), + [8772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5860), + [8774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5706), + [8776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 4, .production_id = 104), + [8778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 4, .production_id = 104), + [8780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5859), + [8782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5702), + [8784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5828), + [8786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5747), + [8788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_structured_binding_declarator, 4, .dynamic_precedence = -1), + [8790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_structured_binding_declarator, 4, .dynamic_precedence = -1), + [8792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5829), + [8794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5723), + [8796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5846), + [8798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5730), + [8800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5844), + [8802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5715), + [8804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5843), + [8806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5746), + [8808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 5, .production_id = 150), + [8810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 5, .production_id = 150), + [8812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4919), + [8814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 2, .dynamic_precedence = 1, .production_id = 22), + [8816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 2, .dynamic_precedence = 1, .production_id = 22), + [8818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4918), + [8820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_field_declarator, 2), + [8822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_field_declarator, 2), + [8824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 3, .production_id = 24), + [8826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 3, .production_id = 24), + [8828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_structured_binding_declarator, 3, .dynamic_precedence = -1), + [8830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_structured_binding_declarator, 3, .dynamic_precedence = -1), + [8832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5877), + [8834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5665), + [8836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5948), + [8838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6330), + [8840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5821), + [8842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5731), + [8844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2999), + [8846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5781), + [8848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_field_declarator, 3, .dynamic_precedence = -10), + [8850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_field_declarator, 3, .dynamic_precedence = -10), + [8852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 5, .production_id = 150), + [8854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 5, .production_id = 150), + [8856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), + [8858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 3, .production_id = 24), + [8860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 3, .production_id = 24), + [8862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 1), + [8864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7492), + [8866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_field_declarator, 2, .dynamic_precedence = 1, .production_id = 22), + [8868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_field_declarator, 2, .dynamic_precedence = 1, .production_id = 22), + [8870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declarator, 1), + [8872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declarator, 1), + [8874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 1), + [8876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7644), + [8878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, .production_id = 104), + [8880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 4, .production_id = 104), + [8882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, .production_id = 24), + [8884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 4, .production_id = 24), + [8886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 2, .production_id = 62), + [8888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), + [8890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), + [8892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6036), + [8894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5658), + [8896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2590), + [8898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1411), + [8900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [8902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 2, .dynamic_precedence = 1, .production_id = 5), + [8904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6110), + [8906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [8908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4928), + [8910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4929), + [8912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [8914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4547), + [8916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6955), + [8918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2397), + [8920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6877), + [8922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2605), + [8924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6106), + [8926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4479), + [8928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2379), + [8930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3418), + [8932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6615), + [8934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6584), + [8936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6015), + [8938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7664), + [8940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2561), + [8942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [8944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), + [8946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6117), + [8948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), + [8950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2559), + [8952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2821), + [8954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6622), + [8956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), + [8958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [8960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2607), + [8962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6148), + [8964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5987), + [8966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4378), + [8968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [8970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3656), + [8972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6828), + [8974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), + [8976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3783), + [8978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [8980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), + [8982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4567), + [8984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), + [8986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [8988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6365), + [8990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7199), + [8992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), + [8994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6101), + [8996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5977), + [8998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2599), + [9000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2596), + [9002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2594), + [9004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2280), + [9006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 4, .dynamic_precedence = 1, .production_id = 79), + [9008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2498), + [9010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6865), + [9012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [9014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 3, .dynamic_precedence = 1, .production_id = 39), + [9016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6220), + [9018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7351), + [9020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2278), + [9022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6576), + [9024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7633), + [9026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [9028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [9030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3618), + [9032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4572), + [9034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6681), + [9036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [9038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2359), + [9040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6744), + [9042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4457), + [9044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [9046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6129), + [9048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2262), + [9050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), + [9052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), + [9054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3004), + [9056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6807), + [9058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [9060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [9062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 5, .dynamic_precedence = 1, .production_id = 149), + [9064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6439), + [9066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7139), + [9068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5205), + [9070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6779), + [9072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [9074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), + [9076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), + [9078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_capture_specifier, 3), + [9080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_capture_specifier, 3), + [9082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_designator, 3), + [9084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [9086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2707), + [9088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6753), + [9090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4453), + [9092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [9094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__scope_resolution, 1), + [9096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__scope_resolution, 1), + [9098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1892), + [9100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4568), + [9102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1834), + [9104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4575), + [9106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2289), + [9108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), + [9110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [9112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), + [9114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), + [9116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), + [9118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [9120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), + [9122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), + [9124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), + [9126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3752), + [9128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 1), + [9130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1848), + [9132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4570), + [9134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1909), + [9136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4562), + [9138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5603), + [9140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [9142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [9144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3688), + [9146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), + [9148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3741), + [9150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2619), + [9152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), + [9154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5675), + [9156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), + [9158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), + [9160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_type_declarator, 2), + [9162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_type_declarator, 2), + [9164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2632), + [9166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), + [9168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [9170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), + [9172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat2, 2, .production_id = 5), + [9174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), + [9176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), + [9178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3760), + [9180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), + [9182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3689), + [9184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2427), + [9186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), + [9188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [9190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3736), + [9192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1901), + [9194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4557), + [9196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_cast, 3, .production_id = 54), + [9198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), + [9200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), + [9202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1946), + [9204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1839), + [9206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4571), + [9208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1823), + [9210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4552), + [9212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2703), + [9214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3715), + [9216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2656), + [9218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3734), + [9220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2004), + [9222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), + [9224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3761), + [9226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), + [9228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6161), + [9230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5947), + [9232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7468), + [9234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6228), + [9236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6487), + [9238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5922), + [9240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5973), + [9242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5963), + [9244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_capture_specifier, 4), + [9246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_capture_specifier, 4), + [9248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6080), + [9250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6172), + [9252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6243), + [9254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6498), + [9256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6219), + [9258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_capture_specifier, 6), + [9260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_capture_specifier, 6), + [9262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_capture_specifier, 5), + [9264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_capture_specifier, 5), + [9266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2713), + [9268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), + [9270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2621), + [9272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), + [9274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3518), + [9276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6757), + [9278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), + [9280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), + [9282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), + [9284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), + [9286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7304), + [9288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [9290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), + [9292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2), SHIFT_REPEAT(1976), + [9295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2), + [9297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2), SHIFT_REPEAT(7304), + [9300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5473), + [9302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6045), + [9304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5475), + [9306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2440), + [9308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), + [9310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2708), + [9312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), + [9314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3189), + [9316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6726), + [9318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), + [9320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), + [9322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, .production_id = 24), + [9324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, .production_id = 24), + [9326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), + [9328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), + [9330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, .production_id = 104), + [9332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, .production_id = 104), + [9334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1), + [9336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1), + [9338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, .production_id = 1), + [9340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, .production_id = 1), + [9342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), + [9344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), + [9346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5513), + [9348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5480), + [9350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5538), + [9352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type_declarator, 2, .production_id = 80), + [9354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type_declarator, 2, .production_id = 80), + [9356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5477), + [9358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5483), + [9360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), + [9362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), + [9364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), + [9366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), + [9368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [9370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), + [9372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_expression_repeat1, 2), + [9374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_expression_repeat1, 2), SHIFT_REPEAT(6045), + [9377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), + [9379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), + [9381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type_declarator, 3, .dynamic_precedence = -10), + [9383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type_declarator, 3, .dynamic_precedence = -10), + [9385] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 2, .production_id = 102), SHIFT_REPEAT(5185), + [9388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 2, .production_id = 102), + [9390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3393), + [9392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6692), + [9394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5519), + [9396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__scope_resolution, 2, .production_id = 14), + [9398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__scope_resolution, 2, .production_id = 14), + [9400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [9402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), + [9404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5508), + [9406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), + [9408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), + [9410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [9412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), + [9414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2683), + [9416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), + [9418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 5, .production_id = 150), + [9420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 5, .production_id = 150), + [9422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5490), + [9424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5501), + [9426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), + [9428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), + [9430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5485), + [9432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__scope_resolution, 2, .production_id = 28), + [9434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__scope_resolution, 2, .production_id = 28), + [9436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2967), + [9438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6885), + [9440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 3, .production_id = 24), + [9442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 3, .production_id = 24), + [9444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6709), + [9446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5945), + [9448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter_declaration, 3, .production_id = 140), + [9450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6548), + [9452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5373), + [9454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6234), + [9456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_field_identifier, 2, .production_id = 106), + [9458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_access_specifier, 1), + [9460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_specifier, 1), + [9462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, .production_id = 7), + [9464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7368), + [9466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6928), + [9468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5426), + [9470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter_declaration, 4, .production_id = 172), + [9472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6688), + [9474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6931), + [9476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6819), + [9478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3711), + [9480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3859), + [9482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5980), + [9484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5980), + [9486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__namespace_specifier, 1, .production_id = 17), + [9488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5956), + [9490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3758), + [9492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6596), + [9494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5771), + [9496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2577), + [9498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), + [9500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5951), + [9502] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, .production_id = 183), SHIFT_REPEAT(5827), + [9505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, .production_id = 183), + [9507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [9509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3764), + [9511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3837), + [9513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6154), + [9515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6154), + [9517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3753), + [9519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6748), + [9521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), + [9523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6239), + [9525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7056), + [9527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3963), + [9529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), + [9531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(814), + [9533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6328), + [9535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7062), + [9537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3740), + [9539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5910), + [9541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 2, .production_id = 184), + [9543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), + [9545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3345), + [9547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3725), + [9549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6544), + [9551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3735), + [9553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, .production_id = 84), + [9555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3591), + [9557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), + [9559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7234), + [9561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6156), + [9563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6156), + [9565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3387), + [9567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5827), + [9569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 2, .production_id = 136), + [9571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3730), + [9573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2657), + [9575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1309), + [9577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7325), + [9579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2885), + [9581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_operator_cast_identifier, 2, .production_id = 32), + [9583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_qualifier, 1), + [9585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6578), + [9587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5107), + [9589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_class_clause, 4), + [9591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3555), + [9593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), + [9595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2239), + [9597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), + [9599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6407), + [9601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_declarator, 1), + [9603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5949), + [9605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7352), + [9607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4762), + [9609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5842), + [9611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 3, .production_id = 169), + [9613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3765), + [9615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3658), + [9617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6092), + [9619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6092), + [9621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7355), + [9623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3775), + [9625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2764), + [9627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2338), + [9629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7187), + [9631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6999), + [9633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3111), + [9635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2719), + [9637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7347), + [9639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5942), + [9641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2376), + [9643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 3, .production_id = 196), + [9645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7189), + [9647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2907), + [9649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3726), + [9651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3273), + [9653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3646), + [9655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4600), + [9657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [9659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3778), + [9661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), + [9663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), + [9665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7554), + [9667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3237), + [9669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), + [9671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1314), + [9673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6997), + [9675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2574), + [9677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 2, .production_id = 136), + [9679] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, .production_id = 183), SHIFT_REPEAT(5842), + [9682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, .production_id = 183), + [9684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2472), + [9686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), + [9688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 3, .production_id = 169), + [9690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2456), + [9692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), + [9694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6483), + [9696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_class_clause, 5), + [9698] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, .production_id = 202), SHIFT_REPEAT(5910), + [9701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, .production_id = 202), + [9703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7354), + [9705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2748), + [9707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), + [9709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2214), + [9711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6178), + [9713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6178), + [9715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6352), + [9717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_class_clause, 3), + [9719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2695), + [9721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7290), + [9723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2254), + [9725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6050), + [9727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6050), + [9729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6562), + [9731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_class_clause, 2), + [9733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2358), + [9735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [9737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1344), + [9739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7455), + [9741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), + [9743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2), + [9745] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(6154), + [9748] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(6154), + [9751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7150), + [9753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(537), + [9755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7576), + [9757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5957), + [9759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3733), + [9761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7266), + [9763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3139), + [9765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2356), + [9767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6147), + [9769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6147), + [9771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7277), + [9773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2772), + [9775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2470), + [9777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6083), + [9779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6083), + [9781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5954), + [9783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2416), + [9785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7259), + [9787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3407), + [9789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6020), + [9791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6020), + [9793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2211), + [9795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3720), + [9797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3724), + [9799] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(1725), + [9802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2869), + [9804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2881), + [9806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6195), + [9808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2101), + [9810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), + [9812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), + [9814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6777), + [9816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6826), + [9818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6656), + [9820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [9822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [9824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2912), + [9826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), + [9828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6646), + [9830] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat2, 2, .production_id = 102), SHIFT_REPEAT(5658), + [9833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat2, 2, .production_id = 102), + [9835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [9837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [9839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [9841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [9843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand, 7, .production_id = 206), + [9845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand, 7, .production_id = 206), + [9847] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, .production_id = 205), SHIFT_REPEAT(7270), + [9850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, .production_id = 205), + [9852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6945), + [9854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6725), + [9856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_namespace_specifier, 2), + [9858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5955), + [9860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), + [9862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [9864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6729), + [9866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3690), + [9868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6637), + [9870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), + [9872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2883), + [9874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7270), + [9876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 3, .production_id = 203), + [9878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [9880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2281), + [9882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6787), + [9884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6643), + [9886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6299), + [9888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2808), + [9890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2601), + [9892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6527), + [9894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3686), + [9896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6305), + [9898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2738), + [9900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4314), + [9902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6674), + [9904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6267), + [9906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3161), + [9908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2597), + [9910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [9912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6857), + [9914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6651), + [9916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 2), + [9918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), + [9920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 1, .production_id = 7), + [9922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), + [9924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, .production_id = 184), + [9926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2458), + [9928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand, 4, .production_id = 195), + [9930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5884), + [9932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6845), + [9934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6634), + [9936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5873), + [9938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), + [9940] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 2), SHIFT_REPEAT(3707), + [9943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 2), + [9945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__namespace_specifier, 2, .production_id = 55), + [9947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), + [9949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), + [9951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6185), + [9953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2871), + [9955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5629), + [9957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5110), + [9959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6806), + [9961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3697), + [9963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), + [9965] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2), SHIFT_REPEAT(6618), + [9968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2), + [9970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [9972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3520), + [9974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), + [9976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3176), + [9978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6289), + [9980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5871), + [9982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), + [9984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6663), + [9986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), + [9988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [9990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2581), + [9992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), + [9994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2457), + [9996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), + [9998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2418), + [10000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3052), + [10002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3054), + [10004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6869), + [10006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5652), + [10008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), + [10010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7055), + [10012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [10014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [10016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6854), + [10018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3166), + [10020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [10022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [10024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), + [10026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4558), + [10028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3059), + [10030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5822), + [10032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3043), + [10034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3684), + [10036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [10038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3619), + [10040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3479), + [10042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2733), + [10044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [10046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [10048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3063), + [10050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5689), + [10052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3064), + [10054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2982), + [10056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2822), + [10058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 2, .production_id = 197), + [10060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6354), + [10062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6628), + [10064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2562), + [10066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6500), + [10068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), + [10070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3259), + [10072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), + [10074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6602), + [10076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_base_class_clause_repeat1, 2), + [10078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), + [10080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), + [10082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5654), + [10084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 2), + [10086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), + [10088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, .production_id = 136), + [10090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6921), + [10092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3528), + [10094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand, 4, .production_id = 195), + [10096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6400), + [10098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6848), + [10100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3501), + [10102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6647), + [10104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3489), + [10106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3293), + [10108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [10110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2424), + [10112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [10114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3488), + [10116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4493), + [10118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6633), + [10120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, .production_id = 102), SHIFT_REPEAT(4637), + [10123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, .production_id = 102), + [10125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_base_class_clause_repeat1, 2), SHIFT_REPEAT(5107), + [10128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3478), + [10130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3477), + [10132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6880), + [10134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6379), + [10136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4740), + [10138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3917), + [10140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 3), + [10142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_class_clause, 7), + [10144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2634), + [10146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2603), + [10148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6778), + [10150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_base_class_clause_repeat1, 5), + [10152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2816), + [10154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2875), + [10156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6636), + [10158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), + [10160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3100), + [10162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4478), + [10164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6839), + [10166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4473), + [10168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declarator, 2, .production_id = 64), + [10170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_declaration, 3, .production_id = 130), + [10172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), + [10174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), + [10176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), + [10178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6892), + [10180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), + [10182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6791), + [10184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2545), + [10186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2544), + [10188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6657), + [10190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 2, .production_id = 91), + [10192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3042), + [10194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), + [10196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3575), + [10198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), + [10200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3218), + [10202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4765), + [10204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6401), + [10206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2), SHIFT_REPEAT(1457), + [10209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), + [10211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), + [10213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), + [10215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), + [10217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3296), + [10219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4329), + [10221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2913), + [10223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2940), + [10225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3953), + [10227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3909), + [10229] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_argument_list_repeat1, 2), SHIFT_REPEAT(373), + [10232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_argument_list_repeat1, 2), + [10234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3450), + [10236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2638), + [10238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), + [10240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), + [10242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), + [10244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6842), + [10246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4742), + [10248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6641), + [10250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3303), + [10252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3305), + [10254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6358), + [10256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3093), + [10258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_declarator, 2), + [10260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2319), + [10262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), + [10264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_reference_declarator, 2), + [10266] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_throw_specifier_repeat1, 2), SHIFT_REPEAT(3779), + [10269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_throw_specifier_repeat1, 2), + [10271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6332), + [10273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3276), + [10275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_parameter_list_repeat1, 2), SHIFT_REPEAT(2192), + [10278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_parameter_list_repeat1, 2), + [10280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3270), + [10282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [10284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), + [10286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3484), + [10288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6781), + [10290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3957), + [10292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3301), + [10294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requires_parameter_list_repeat1, 2), SHIFT_REPEAT(2244), + [10297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_requires_parameter_list_repeat1, 2), + [10299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2613), + [10301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4450), + [10303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3263), + [10305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4560), + [10307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5885), + [10309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), + [10311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6652), + [10313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2611), + [10315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2610), + [10317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7556), + [10319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [10321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), SHIFT_REPEAT(2226), + [10324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), + [10326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), + [10328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), + [10330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [10332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), + [10334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), + [10336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), + [10338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), + [10340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4030), + [10342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2389), + [10344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), + [10346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), + [10348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [10350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), + [10352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3779), + [10354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5297), + [10356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [10358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6827), + [10360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_namespace_specifier, 3), + [10362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2576), + [10364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, .production_id = 136), + [10366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2888), + [10368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6406), + [10370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3094), + [10372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter_declaration, 2, .production_id = 62), + [10374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5774), + [10376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2598), + [10378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), + [10380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [10382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5783), + [10384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5785), + [10386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5788), + [10388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5057), + [10390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2592), + [10392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2591), + [10394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [10396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6721), + [10398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2586), + [10400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4025), + [10402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6673), + [10404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_class_clause, 6), + [10406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [10408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [10410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6413), + [10412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3227), + [10414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2), SHIFT_REPEAT(5654), + [10417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2), + [10419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6736), + [10421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_base_class_clause_repeat1, 4), + [10423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), + [10425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3590), + [10427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6638), + [10429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3589), + [10431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3588), + [10433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3587), + [10435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2792), + [10437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), + [10439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6629), + [10441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6546), + [10443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3954), + [10445] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat1, 2), SHIFT_REPEAT(6729), + [10448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat1, 2), + [10450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2935), + [10452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3554), + [10454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), + [10456] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_structured_binding_declarator_repeat1, 2), SHIFT_REPEAT(7362), + [10459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_structured_binding_declarator_repeat1, 2), + [10461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), + [10463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), + [10465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), + [10467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6695), + [10469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6910), + [10471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6694), + [10473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_type_parameter_declaration, 2), + [10475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [10477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [10479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [10481] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_lambda_capture_specifier_repeat1, 2), SHIFT_REPEAT(1840), + [10484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6950), + [10486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), + [10488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3558), + [10490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2754), + [10492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3744), + [10494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2750), + [10496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2741), + [10498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2737), + [10500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5264), + [10502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_designator, 2, .production_id = 94), + [10504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3559), + [10506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), + [10508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6258), + [10510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), + [10512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4231), + [10514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3286), + [10516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [10518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3291), + [10520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3295), + [10522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3297), + [10524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3269), + [10526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3919), + [10528] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2), SHIFT_REPEAT(4996), + [10531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6586), + [10533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4599), + [10535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6799), + [10537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4598), + [10539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4596), + [10541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4594), + [10543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), + [10545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4000), + [10547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2), SHIFT_REPEAT(6845), + [10550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2), + [10552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3998), + [10554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), + [10556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3937), + [10558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4396), + [10560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [10562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), + [10564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_argument_list_repeat1, 2, .dynamic_precedence = 3), + [10566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3628), + [10568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3611), + [10570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3615), + [10572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6608), + [10574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3566), + [10576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3553), + [10578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), + [10580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), + [10582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), + [10584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4360), + [10586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6658), + [10588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_base_class_clause_repeat1, 3), + [10590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4364), + [10592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [10594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3991), + [10596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3582), + [10598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4356), + [10600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3583), + [10602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4358), + [10604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), + [10606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6906), + [10608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4326), + [10610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6666), + [10612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2676), + [10614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7417), + [10616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_pack_expansion, 2, .production_id = 26), + [10618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545), + [10620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7652), + [10622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5950), + [10624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1336), + [10626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7620), + [10628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7562), + [10630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7506), + [10632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7712), + [10634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6909), + [10636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7285), + [10638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7380), + [10640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7382), + [10642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7526), + [10644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7531), + [10646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7478), + [10648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7707), + [10650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6669), + [10652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7448), + [10654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7701), + [10656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7413), + [10658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7694), + [10660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5116), + [10662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7446), + [10664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [10666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [10668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 4), + [10670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [10672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), + [10674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), + [10676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3), + [10678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, .production_id = 91), + [10680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [10682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(591), + [10684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7510), + [10686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [10688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6306), + [10690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 1), + [10692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7303), + [10694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7687), + [10696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6654), + [10698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), + [10700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_template_parameter_declaration, 3, .production_id = 53), + [10702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6712), + [10704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_type_parameter_declaration, 3, .production_id = 139), + [10706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [10708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_argument_list_repeat1, 2, .dynamic_precedence = 2), + [10710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7224), + [10712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7223), + [10714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [10716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [10718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [10720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1338), + [10722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7186), + [10724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6683), + [10726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2685), + [10728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7338), + [10730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, .production_id = 7), + [10732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [10734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6775), + [10736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1204), + [10738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7422), + [10740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6664), + [10742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2702), + [10744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7329), + [10746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6705), + [10748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2612), + [10750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7248), + [10752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_base_class_clause_repeat1, 6), + [10754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6675), + [10756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2444), + [10758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7289), + [10760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 4, .production_id = 84), + [10762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, .production_id = 197), + [10764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6743), + [10766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2395), + [10768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7242), + [10770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7371), + [10772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7415), + [10774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [10776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6750), + [10778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5030), + [10780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7610), + [10782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7279), + [10784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7281), + [10786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7252), + [10788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7597), + [10790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 3), + [10792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6635), + [10794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 2), + [10796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2317), + [10798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7217), + [10800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7200), + [10802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7204), + [10804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1231), + [10806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7211), + [10808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7178), + [10810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7528), + [10812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7525), + [10814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6792), + [10816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_field_identifier, 2, .production_id = 32), + [10818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2279), + [10820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7152), + [10822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6939), + [10824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7044), + [10826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7058), + [10828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6960), + [10830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(805), + [10832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7136), + [10834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6867), + [10836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7041), + [10838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7040), + [10840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(783), + [10842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7032), + [10844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7070), + [10846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), + [10848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), + [10850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1311), + [10852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7065), + [10854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7262), + [10856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7260), + [10858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1195), + [10860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6972), + [10862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6849), + [10864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7318), + [10866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3262), + [10868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4049), + [10870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3181), + [10872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), + [10874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7322), + [10876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3460), + [10878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3535), + [10880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3408), + [10882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3533), + [10884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3526), + [10886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), + [10888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7483), + [10890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [10892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3926), + [10894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3993), + [10896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), + [10898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), + [10900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [10902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7210), + [10904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3634), + [10906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4365), + [10908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [10910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4313), + [10912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), + [10914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7230), + [10916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3654), + [10918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [10920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), + [10922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [10924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7219), + [10926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), + [10928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6139), + [10930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4375), + [10932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), + [10934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [10936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), + [10938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3641), + [10940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7198), + [10942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [10944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), + [10946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), + [10948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), + [10950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [10952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4428), + [10954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), + [10956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2563), + [10958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [10960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7170), + [10962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [10964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4045), + [10966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [10968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), + [10970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), + [10972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2585), + [10974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), + [10976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [10978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [10980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), + [10982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5990), + [10984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [10986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3182), + [10988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6974), + [10990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [10992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [10994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7409), + [10996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), + [10998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7071), + [11000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4002), + [11002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [11004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), + [11006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3379), + [11008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7552), + [11010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3389), + [11012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_parameter_list, 3), + [11014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), + [11016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), + [11018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [11020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7037), + [11022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7438), + [11024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), + [11026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7038), + [11028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4969), + [11030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [11032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [11034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7012), + [11036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), + [11038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4466), + [11040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5325), + [11042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3275), + [11044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7004), + [11046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unary_right_fold, 3, .production_id = 50), + [11048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6996), + [11050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), + [11052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7476), + [11054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6987), + [11056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [11058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [11060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6109), + [11062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3476), + [11064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6961), + [11066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4490), + [11068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), + [11070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4021), + [11072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4018), + [11074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), + [11076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), + [11078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7488), + [11080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7063), + [11082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [11084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3500), + [11086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7216), + [11088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3422), + [11090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [11092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3634), + [11094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7100), + [11096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), + [11098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [11100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), + [11102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7119), + [11104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), + [11106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [11108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [11110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7132), + [11112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6074), + [11114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7522), + [11116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), + [11118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3302), + [11120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), + [11122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2679), + [11124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2677), + [11126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2242), + [11128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2670), + [11130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), + [11132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [11134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7208), + [11136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [11138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [11140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4290), + [11142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2655), + [11144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2654), + [11146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7557), + [11148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), + [11150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5103), + [11152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2652), + [11154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [11156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), + [11158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), + [11160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2649), + [11162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2639), + [11164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3364), + [11166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2928), + [11168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2635), + [11170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6174), + [11172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7598), + [11174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3222), + [11176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), + [11178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), + [11180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef, 3, .production_id = 74), + [11182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2630), + [11184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2628), + [11186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7286), + [11188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2627), + [11190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7192), + [11192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2608), + [11194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7267), + [11196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), + [11198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5520), + [11200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6159), + [11202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7280), + [11204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3449), + [11206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), + [11208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2255), + [11210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), + [11212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2537), + [11214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [11216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), + [11218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), + [11220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), + [11222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6079), + [11224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [11226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2307), + [11228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3255), + [11230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3586), + [11232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [11234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3585), + [11236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [11238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), + [11240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7428), + [11242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), + [11244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), + [11246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3672), + [11248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2543), + [11250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2417), + [11252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [11254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3584), + [11256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [11258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5241), + [11260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [11262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), + [11264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5235), + [11266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5244), + [11268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6206), + [11270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3383), + [11272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3348), + [11274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_parameter_list, 2), + [11276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7054), + [11278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7053), + [11280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2443), + [11282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2570), + [11284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3215), + [11286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2777), + [11288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [11290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6803), + [11292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3191), + [11294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6600), + [11296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), + [11298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7719), + [11300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2600), + [11302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7251), + [11304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), + [11306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3699), + [11308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), + [11310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [11312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5128), + [11314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7271), + [11316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), + [11318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [11320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2489), + [11322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2618), + [11324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2473), + [11326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2686), + [11328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6650), + [11330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6971), + [11332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7582), + [11334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [11336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), + [11338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6973), + [11340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2413), + [11342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), + [11344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7578), + [11346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6532), + [11348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 5, .production_id = 155), + [11350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6006), + [11352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2705), + [11354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2697), + [11356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), + [11358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7515), + [11360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), + [11362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2877), + [11364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6181), + [11366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2629), + [11368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), + [11370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [11372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), + [11374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), + [11376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3940), + [11378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2715), + [11380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5517), + [11382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7453), + [11384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), + [11386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5518), + [11388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2953), + [11390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3329), + [11392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2693), + [11394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), + [11396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3347), + [11398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), + [11400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7278), + [11402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2690), + [11404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2680), + [11406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3831), + [11408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [11410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [11412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4753), + [11414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), + [11416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [11418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [11420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [11422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6915), + [11424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3704), + [11426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, .production_id = 115), + [11428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [11430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6007), + [11432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2519), + [11434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2647), + [11436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [11438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2832), + [11440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [11442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4548), + [11444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3051), + [11446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3055), + [11448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [11450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), + [11452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), + [11454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7082), + [11456] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(6979), + [11459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(7085), + [11462] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(7093), + [11465] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(7094), + [11468] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(7096), + [11471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(7097), + [11474] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(7099), + [11477] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(7084), + [11480] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(7104), + [11483] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(7106), + [11486] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(7108), + [11489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7373), + [11491] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(7110), + [11494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6855), + [11496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7181), + [11498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), + [11500] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(7112), + [11503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), + [11505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), + [11507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6875), + [11509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2422), + [11511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7133), + [11513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), + [11515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), + [11517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [11519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [11521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), + [11523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7102), + [11525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [11527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2640), + [11529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), + [11531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7064), + [11533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), + [11535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), + [11537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), + [11539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7356), + [11541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2447), + [11543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7042), + [11545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2448), + [11547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), + [11549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), + [11551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2068), + [11553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), + [11555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [11557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3065), + [11559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), + [11561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), + [11563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6946), + [11565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6986), + [11567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), + [11569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7183), + [11571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), + [11573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6993), + [11575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), + [11577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7005), + [11579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7634), + [11581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), + [11583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2428), + [11585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2433), + [11587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2441), + [11589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7018), + [11591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), + [11593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), + [11595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3885), + [11597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [11599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6250), + [11601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 5, .production_id = 155), + [11603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), + [11605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), + [11607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6898), + [11609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7074), + [11611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [11613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), + [11615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), + [11617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7081), + [11619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [11621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [11623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7091), + [11625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [11627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3923), + [11629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3580), + [11631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3037), + [11633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [11635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7103), + [11637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), + [11639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7674), + [11641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), + [11643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7651), + [11645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7215), + [11647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), + [11649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), + [11651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2297), + [11653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), + [11655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6876), + [11657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7142), + [11659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), + [11661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [11663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), + [11665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7148), + [11667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7156), + [11669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5090), + [11671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [11673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [11675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7161), + [11677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), + [11679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), + [11681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7587), + [11683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2625), + [11685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), + [11687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2318), + [11689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7540), + [11691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), + [11693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4056), + [11695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [11697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7257), + [11699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), + [11701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [11703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), + [11705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), + [11707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7258), + [11709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), + [11711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), + [11713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), + [11715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), + [11717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2410), + [11719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2616), + [11721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3261), + [11723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3216), + [11725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [11727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), + [11729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), + [11731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [11733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), + [11735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7302), + [11737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3967), + [11739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7604), + [11741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), + [11743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_parameter_list, 4), + [11745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4588), + [11747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), + [11749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), + [11751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6162), + [11753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), + [11755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3892), + [11757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7332), + [11759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), + [11761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), + [11763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2290), + [11765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [11767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), + [11769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7299), + [11771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), + [11773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6761), + [11775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5921), + [11777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [11779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6326), + [11781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7537), + [11783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2593), + [11785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2588), + [11787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [11789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7486), + [11791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2643), + [11793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2636), + [11795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3557), + [11797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), + [11799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_based_modifier, 2), + [11801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7364), + [11803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [11805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3581), + [11807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [11809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3546), + [11811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [11813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), + [11815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), + [11817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270), + [11819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2274), + [11821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3397), + [11823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2275), + [11825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6282), + [11827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5615), + [11829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [11831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), + [11833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7508), + [11835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 4, .production_id = 115), + [11837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3818), + [11839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3819), + [11841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3822), + [11843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), + [11845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef, 4, .production_id = 116), + [11847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), + [11849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [11851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), + [11853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [11855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), + [11857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7412), + [11859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6037), + [11861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3196), + [11863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [11865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), + [11867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6085), + [11869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2460), + [11871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7430), + [11873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3028), + [11875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3029), + [11877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3030), + [11879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), + [11881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), + [11883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7447), + [11885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7575), + [11887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), + [11889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6063), + [11891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), + [11893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7461), + [11895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7577), + [11897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [11899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2314), + [11901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3384), + [11903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), + [11905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7477), + [11907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), + [11909] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [11911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7395), + [11913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6032), + [11915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7533), + [11917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7490), + [11919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), + [11921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), + [11923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7505), + [11925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7284), + [11927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [11929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6003), + [11931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7511), + [11933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5901), + [11935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), + [11937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7518), + [11939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5991), + [11941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), + [11943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7527), + [11945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5979), + [11947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), + [11949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7536), + [11951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5976), + [11953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5964), + [11955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [11957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3698), + [11959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7564), + [11961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), + [11963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3609), + [11965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2553), + [11967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [11969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [11971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3743), + [11973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7636), + [11975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), + [11977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3727), + [11979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7571), + [11981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [11983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [11985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3719), + [11987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7650), + [11989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [11991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [11993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2556), + [11995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [11997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3703), + [11999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7663), + [12001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [12003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), + [12005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [12007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3695), + [12009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7673), + [12011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3413), + [12013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7592), + [12015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [12017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6679), + [12019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7349), + [12021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [12023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6151), + [12025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), + [12027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), + [12029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), + [12031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), + [12033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), }; #ifdef __cplusplus diff --git a/test/corpus/declarations.txt b/test/corpus/declarations.txt index 064c053..4298d4a 100644 --- a/test/corpus/declarations.txt +++ b/test/corpus/declarations.txt @@ -1,6 +1,6 @@ -========================================= +================================================================================ Namespace definitions -========================================= +================================================================================ namespace std { @@ -13,7 +13,7 @@ namespace A::B::inline C { } namespace A::B::inline C::D { } inline namespace A { } ---- +-------------------------------------------------------------------------------- (translation_unit (namespace_definition @@ -48,9 +48,9 @@ inline namespace A { } name: (namespace_identifier) body: (declaration_list))) -========================================= +================================================================================ Namespace alias definitions -========================================= +================================================================================ namespace A = B; namespace C = ::D; @@ -58,7 +58,7 @@ namespace fs = std::filesystem; namespace bfs = ::boost::filesystem; namespace literals = std::chono::literals; ---- +-------------------------------------------------------------------------------- (translation_unit (namespace_alias_definition @@ -87,9 +87,9 @@ namespace literals = std::chono::literals; (namespace_identifier) (namespace_identifier))))) -========================================= +================================================================================ Using declarations -========================================= +================================================================================ using a; using ::b; @@ -105,73 +105,102 @@ using a = typename b::c; using foobar [[deprecated]] = int; using foobar [[deprecated]] [[maybe_unused]] = int; ---- +-------------------------------------------------------------------------------- (translation_unit - (using_declaration (identifier)) - (using_declaration (qualified_identifier (identifier))) - (using_declaration (qualified_identifier (namespace_identifier) (identifier))) + (using_declaration + (identifier)) + (using_declaration + (qualified_identifier + (identifier))) + (using_declaration + (qualified_identifier + (namespace_identifier) + (identifier))) (using_declaration (qualified_identifier (qualified_identifier (namespace_identifier) (qualified_identifier - (namespace_identifier) - (identifier))))) + (namespace_identifier) + (identifier))))) (alias_declaration (type_identifier) - (type_descriptor (qualified_identifier (namespace_identifier) (type_identifier)))) - (using_declaration (identifier)) - (using_declaration (identifier)) + (type_descriptor + (qualified_identifier + (namespace_identifier) + (type_identifier)))) + (using_declaration + (identifier)) + (using_declaration + (identifier)) (template_declaration (template_parameter_list - (type_parameter_declaration (type_identifier))) + (type_parameter_declaration + (type_identifier))) (alias_declaration (type_identifier) (type_descriptor (dependent_type (qualified_identifier - (template_type (type_identifier) (template_argument_list (type_descriptor (type_identifier)))) + (template_type + (type_identifier) + (template_argument_list + (type_descriptor + (type_identifier)))) (type_identifier)))))) (alias_declaration (type_identifier) - (attribute_declaration (attribute (identifier))) - (type_descriptor (primitive_type))) + (attribute_declaration + (attribute + (identifier))) + (type_descriptor + (primitive_type))) (alias_declaration (type_identifier) - (attribute_declaration (attribute (identifier))) - (attribute_declaration (attribute (identifier))) - (type_descriptor (primitive_type)))) - -========================================= + (attribute_declaration + (attribute + (identifier))) + (attribute_declaration + (attribute + (identifier))) + (type_descriptor + (primitive_type)))) + +================================================================================ Reference declarations -========================================= +================================================================================ int main() { T &x = y(); } ---- +-------------------------------------------------------------------------------- (translation_unit (function_definition (primitive_type) - (function_declarator (identifier) (parameter_list)) + (function_declarator + (identifier) + (parameter_list)) (compound_statement (declaration (type_identifier) (init_declarator - (reference_declarator (identifier)) + (reference_declarator + (identifier)) (call_expression (template_function (identifier) (template_argument_list - (type_descriptor (type_identifier) (abstract_reference_declarator)))) + (type_descriptor + (type_identifier) + (abstract_reference_declarator)))) (argument_list))))))) -========================================= +================================================================================ R-value reference declarations -========================================= +================================================================================ int main(T &&); @@ -179,28 +208,38 @@ int main(T &&t) { const U &&u = v; } ---- +-------------------------------------------------------------------------------- (translation_unit (declaration (primitive_type) (function_declarator (identifier) - (parameter_list (parameter_declaration (type_identifier) (abstract_reference_declarator))))) + (parameter_list + (parameter_declaration + (type_identifier) + (abstract_reference_declarator))))) (function_definition (primitive_type) (function_declarator (identifier) - (parameter_list (parameter_declaration (type_identifier) (reference_declarator (identifier))))) + (parameter_list + (parameter_declaration + (type_identifier) + (reference_declarator + (identifier))))) (compound_statement (declaration (type_qualifier) (type_identifier) - (init_declarator (reference_declarator (identifier)) (identifier)))))) + (init_declarator + (reference_declarator + (identifier)) + (identifier)))))) -========================================= +================================================================================ Inline method definitions -========================================= +================================================================================ struct S { int f; @@ -212,31 +251,54 @@ struct S { int getF2() const try { throw 1; } catch (...) { return f; } }; ---- +-------------------------------------------------------------------------------- (translation_unit - (struct_specifier (type_identifier) (field_declaration_list - (field_declaration (primitive_type) (field_identifier)) - (function_definition - (function_declarator (identifier) (parameter_list)) - (field_initializer_list (field_initializer (field_identifier) (argument_list (number_literal)))) - (compound_statement)) - (access_specifier) - (function_definition - (primitive_type) - (function_declarator (field_identifier) (parameter_list) (type_qualifier)) - (compound_statement (return_statement (identifier)))) - (function_definition - (primitive_type) - (function_declarator (field_identifier) (parameter_list) (type_qualifier)) - (try_statement - (compound_statement (throw_statement (number_literal))) - (catch_clause (parameter_list) - (compound_statement (return_statement (identifier))))))))) - -========================================= + (struct_specifier + (type_identifier) + (field_declaration_list + (field_declaration + (primitive_type) + (field_identifier)) + (function_definition + (function_declarator + (identifier) + (parameter_list)) + (field_initializer_list + (field_initializer + (field_identifier) + (argument_list + (number_literal)))) + (compound_statement)) + (access_specifier) + (function_definition + (primitive_type) + (function_declarator + (field_identifier) + (parameter_list) + (type_qualifier)) + (compound_statement + (return_statement + (identifier)))) + (function_definition + (primitive_type) + (function_declarator + (field_identifier) + (parameter_list) + (type_qualifier)) + (try_statement + (compound_statement + (throw_statement + (number_literal))) + (catch_clause + (parameter_list) + (compound_statement + (return_statement + (identifier))))))))) + +================================================================================ Inline method definitions with overrides -========================================= +================================================================================ struct B : A { int foo() override { return 2; } @@ -249,45 +311,100 @@ struct B : A { auto baj() const -> int override; }; ---- +-------------------------------------------------------------------------------- (translation_unit - (struct_specifier (type_identifier) (base_class_clause (type_identifier)) (field_declaration_list - (function_definition - (primitive_type) - (function_declarator (field_identifier) (parameter_list) (virtual_specifier)) - (compound_statement (return_statement (number_literal)))) - (function_definition - (primitive_type) - (function_declarator (field_identifier) (parameter_list) (virtual_specifier)) - (compound_statement (return_statement (number_literal)))) - (function_definition - (primitive_type) - (function_declarator (field_identifier) (parameter_list) (type_qualifier) (virtual_specifier)) - (compound_statement (return_statement (number_literal)))) - (function_definition - (primitive_type) - (function_declarator (field_identifier) (parameter_list) (type_qualifier) (virtual_specifier)) - (compound_statement (return_statement (number_literal)))) - (function_definition - (primitive_type) - (function_declarator (field_identifier) (parameter_list) (type_qualifier) (virtual_specifier) (virtual_specifier)) - (compound_statement (return_statement (number_literal)))) - (field_declaration - (primitive_type) - (function_declarator (field_identifier) (parameter_list) (type_qualifier) (virtual_specifier) (virtual_specifier))) - (function_definition - (placeholder_type_specifier (auto)) - (function_declarator (field_identifier) (parameter_list) (type_qualifier) (trailing_return_type (type_descriptor (primitive_type))) (virtual_specifier)) - (compound_statement (return_statement (number_literal)))) - (field_declaration - (placeholder_type_specifier (auto)) - (function_declarator (field_identifier) (parameter_list) (type_qualifier) (trailing_return_type (type_descriptor (primitive_type))) (virtual_specifier)))))) - + (struct_specifier + (type_identifier) + (base_class_clause + (type_identifier)) + (field_declaration_list + (function_definition + (primitive_type) + (function_declarator + (field_identifier) + (parameter_list) + (virtual_specifier)) + (compound_statement + (return_statement + (number_literal)))) + (function_definition + (primitive_type) + (function_declarator + (field_identifier) + (parameter_list) + (virtual_specifier)) + (compound_statement + (return_statement + (number_literal)))) + (function_definition + (primitive_type) + (function_declarator + (field_identifier) + (parameter_list) + (type_qualifier) + (virtual_specifier)) + (compound_statement + (return_statement + (number_literal)))) + (function_definition + (primitive_type) + (function_declarator + (field_identifier) + (parameter_list) + (type_qualifier) + (virtual_specifier)) + (compound_statement + (return_statement + (number_literal)))) + (function_definition + (primitive_type) + (function_declarator + (field_identifier) + (parameter_list) + (type_qualifier) + (virtual_specifier) + (virtual_specifier)) + (compound_statement + (return_statement + (number_literal)))) + (field_declaration + (primitive_type) + (function_declarator + (field_identifier) + (parameter_list) + (type_qualifier) + (virtual_specifier) + (virtual_specifier))) + (function_definition + (placeholder_type_specifier + (auto)) + (function_declarator + (field_identifier) + (parameter_list) + (type_qualifier) + (trailing_return_type + (type_descriptor + (primitive_type))) + (virtual_specifier)) + (compound_statement + (return_statement + (number_literal)))) + (field_declaration + (placeholder_type_specifier + (auto)) + (function_declarator + (field_identifier) + (parameter_list) + (type_qualifier) + (trailing_return_type + (type_descriptor + (primitive_type))) + (virtual_specifier)))))) -===================================== +================================================================================ Virtual method declarations -=============================== +================================================================================ class A { virtual ~Point(); @@ -298,7 +415,7 @@ class A { virtual inline void foo() final; }; ---- +-------------------------------------------------------------------------------- (translation_unit (class_specifier @@ -306,10 +423,15 @@ class A { (field_declaration_list (declaration (virtual) - (function_declarator (destructor_name (identifier)) (parameter_list))) + (function_declarator + (destructor_name + (identifier)) + (parameter_list))) (field_declaration (primitive_type) - (function_declarator (field_identifier) (parameter_list))) + (function_declarator + (field_identifier) + (parameter_list))) (function_definition (virtual) (primitive_type) @@ -327,16 +449,22 @@ class A { (storage_class_specifier) (virtual) (primitive_type) - (function_declarator (field_identifier) (parameter_list) (virtual_specifier))) + (function_declarator + (field_identifier) + (parameter_list) + (virtual_specifier))) (field_declaration (virtual) (storage_class_specifier) (primitive_type) - (function_declarator (field_identifier) (parameter_list) (virtual_specifier)))))) + (function_declarator + (field_identifier) + (parameter_list) + (virtual_specifier)))))) -========================================= +================================================================================ Constructor and destructor declarations -========================================= +================================================================================ class C { void *data_; @@ -353,37 +481,82 @@ class C { ~C(); }; ---- +-------------------------------------------------------------------------------- (translation_unit - (class_specifier (type_identifier) (field_declaration_list - (field_declaration (primitive_type) (pointer_declarator (field_identifier))) - (access_specifier) - (declaration (function_declarator (identifier) (parameter_list))) - (declaration (function_declarator (identifier) (parameter_list - (parameter_declaration (primitive_type)) - (parameter_declaration (primitive_type))))) - (declaration (storage_class_specifier) (function_declarator (identifier) (parameter_list))) - (declaration (explicit_function_specifier) (storage_class_specifier) (function_declarator (identifier) (parameter_list))) - (declaration (attribute_declaration (attribute (identifier))) - (function_declarator (identifier) (parameter_list))) - (template_declaration (template_parameter_list (type_parameter_declaration (type_identifier))) - (declaration (function_declarator (identifier) (parameter_list (parameter_declaration (type_identifier) (identifier)))))) - (function_definition (function_declarator (identifier) (parameter_list)) - (field_initializer_list - (field_initializer - (qualified_identifier - (namespace_identifier) - (template_method - (field_identifier) - (template_argument_list (type_descriptor (type_identifier))))) - (argument_list))) - (compound_statement)) - (declaration (function_declarator (destructor_name (identifier)) (parameter_list)))))) - -========================================= + (class_specifier + (type_identifier) + (field_declaration_list + (field_declaration + (primitive_type) + (pointer_declarator + (field_identifier))) + (access_specifier) + (declaration + (function_declarator + (identifier) + (parameter_list))) + (declaration + (function_declarator + (identifier) + (parameter_list + (parameter_declaration + (primitive_type)) + (parameter_declaration + (primitive_type))))) + (declaration + (storage_class_specifier) + (function_declarator + (identifier) + (parameter_list))) + (declaration + (explicit_function_specifier) + (storage_class_specifier) + (function_declarator + (identifier) + (parameter_list))) + (declaration + (attribute_declaration + (attribute + (identifier))) + (function_declarator + (identifier) + (parameter_list))) + (template_declaration + (template_parameter_list + (type_parameter_declaration + (type_identifier))) + (declaration + (function_declarator + (identifier) + (parameter_list + (parameter_declaration + (type_identifier) + (identifier)))))) + (function_definition + (function_declarator + (identifier) + (parameter_list)) + (field_initializer_list + (field_initializer + (qualified_identifier + (namespace_identifier) + (template_method + (field_identifier) + (template_argument_list + (type_descriptor + (type_identifier))))) + (argument_list))) + (compound_statement)) + (declaration + (function_declarator + (destructor_name + (identifier)) + (parameter_list)))))) + +================================================================================ Classes with inheritance -========================================= +================================================================================ class A : public B {}; class C : C::D, public E {}; @@ -391,24 +564,30 @@ class F : [[deprecated]] public G {}; class H : public virtual I {}; class J : virtual protected I {}; ---- +-------------------------------------------------------------------------------- (translation_unit (class_specifier (type_identifier) - (base_class_clause (access_specifier) (type_identifier)) + (base_class_clause + (access_specifier) + (type_identifier)) (field_declaration_list)) (class_specifier (type_identifier) (base_class_clause - (qualified_identifier (namespace_identifier) (type_identifier)) + (qualified_identifier + (namespace_identifier) + (type_identifier)) (access_specifier) (type_identifier)) (field_declaration_list)) (class_specifier (type_identifier) (base_class_clause - (attribute_declaration (attribute (identifier))) + (attribute_declaration + (attribute + (identifier))) (access_specifier) (type_identifier)) (field_declaration_list)) @@ -427,9 +606,9 @@ class J : virtual protected I {}; (type_identifier)) (field_declaration_list))) -========================================= +================================================================================ Classes with final virt specifier -========================================= +================================================================================ class A final : public B { }; @@ -438,7 +617,7 @@ class C final {}; struct D final {}; ---- +-------------------------------------------------------------------------------- (translation_unit (class_specifier @@ -457,9 +636,9 @@ struct D final {}; (virtual_specifier) (field_declaration_list))) -========================================= +================================================================================ Nested classes -======================================== +================================================================================ class A { private: @@ -469,26 +648,30 @@ class A { B e, f; }; ---- +-------------------------------------------------------------------------------- (translation_unit - (class_specifier (type_identifier) (field_declaration_list - (access_specifier) - (field_declaration - (class_specifier - (type_identifier) - (base_class_clause - (access_specifier) + (class_specifier + (type_identifier) + (field_declaration_list + (access_specifier) + (field_declaration + (class_specifier (type_identifier) - (access_specifier) - (type_identifier)) - (field_declaration_list))) - (field_declaration - (type_identifier) (field_identifier) (field_identifier))))) + (base_class_clause + (access_specifier) + (type_identifier) + (access_specifier) + (type_identifier)) + (field_declaration_list))) + (field_declaration + (type_identifier) + (field_identifier) + (field_identifier))))) -========================================= +================================================================================ Friend declarations -========================================= +================================================================================ struct C { friend class D; @@ -499,24 +682,39 @@ struct C { friend int g(); }; ---- +-------------------------------------------------------------------------------- (translation_unit - (struct_specifier (type_identifier) (field_declaration_list - (friend_declaration (type_identifier)) - (friend_declaration (type_identifier)) - (friend_declaration (declaration (primitive_type) (function_declarator - (identifier) - (parameter_list (parameter_declaration (type_identifier) (abstract_reference_declarator)))))) - (template_declaration - (template_parameter_list (type_parameter_declaration (type_identifier))) - (friend_declaration (declaration (primitive_type) (function_declarator - (identifier) - (parameter_list)))))))) + (struct_specifier + (type_identifier) + (field_declaration_list + (friend_declaration + (type_identifier)) + (friend_declaration + (type_identifier)) + (friend_declaration + (declaration + (primitive_type) + (function_declarator + (identifier) + (parameter_list + (parameter_declaration + (type_identifier) + (abstract_reference_declarator)))))) + (template_declaration + (template_parameter_list + (type_parameter_declaration + (type_identifier))) + (friend_declaration + (declaration + (primitive_type) + (function_declarator + (identifier) + (parameter_list)))))))) -============================================= +================================================================================ Default member initializers -============================================= +================================================================================ struct A { bool a = 1; @@ -524,30 +722,40 @@ struct A { F g {h}; }; ---- +-------------------------------------------------------------------------------- (translation_unit - (struct_specifier (type_identifier) (field_declaration_list - (field_declaration - (primitive_type) - (field_identifier) - (number_literal)) - (field_declaration - (template_type (type_identifier) (template_argument_list (type_descriptor (primitive_type)))) - (field_identifier) - (initializer_list (identifier) (identifier) (identifier))) - (field_declaration - (type_identifier) - (field_identifier) - (initializer_list (identifier)))))) + (struct_specifier + (type_identifier) + (field_declaration_list + (field_declaration + (primitive_type) + (field_identifier) + (number_literal)) + (field_declaration + (template_type + (type_identifier) + (template_argument_list + (type_descriptor + (primitive_type)))) + (field_identifier) + (initializer_list + (identifier) + (identifier) + (identifier))) + (field_declaration + (type_identifier) + (field_identifier) + (initializer_list + (identifier)))))) -========================================= +================================================================================ Function parameters with default values -========================================= +================================================================================ int foo(bool x = 5) {} ---- +-------------------------------------------------------------------------------- (translation_unit (function_definition @@ -555,12 +763,15 @@ int foo(bool x = 5) {} (function_declarator (identifier) (parameter_list - (optional_parameter_declaration (primitive_type) (identifier) (number_literal)))) + (optional_parameter_declaration + (primitive_type) + (identifier) + (number_literal)))) (compound_statement))) -========================================= +================================================================================ Attributes -========================================= +================================================================================ int f([[a::b(c), d]] int x) {} @@ -577,7 +788,7 @@ union [[gnu::visibility("default")]] A {}; class [[gnu::visibility("default")]] [[deprecated]] A {}; class A final : [[deprecated]] public B {}; ---- +-------------------------------------------------------------------------------- (translation_unit (function_definition @@ -587,51 +798,103 @@ class A final : [[deprecated]] public B {}; (parameter_list (parameter_declaration (attribute_declaration - (attribute (identifier) (identifier) (argument_list (identifier))) - (attribute (identifier))) + (attribute + (identifier) + (identifier) + (argument_list + (identifier))) + (attribute + (identifier))) (primitive_type) (identifier)))) (compound_statement)) (declaration - (attribute_declaration (attribute (identifier) (identifier))) - (attribute_declaration (attribute (identifier) (identifier))) - (attribute_declaration (attribute (identifier) (identifier))) - (attribute_declaration (attribute (identifier))) + (attribute_declaration + (attribute + (identifier) + (identifier))) + (attribute_declaration + (attribute + (identifier) + (identifier))) + (attribute_declaration + (attribute + (identifier) + (identifier))) + (attribute_declaration + (attribute + (identifier))) (storage_class_specifier) (primitive_type) - (function_declarator (identifier) (parameter_list))) + (function_declarator + (identifier) + (parameter_list))) (function_definition - (attribute_declaration (attribute (identifier))) - (primitive_type) (function_declarator (identifier) (parameter_list)) (compound_statement)) + (attribute_declaration + (attribute + (identifier))) + (primitive_type) + (function_declarator + (identifier) + (parameter_list)) + (compound_statement)) (class_specifier - (attribute_declaration (attribute (identifier) (identifier) (argument_list (string_literal)))) + (attribute_declaration + (attribute + (identifier) + (identifier) + (argument_list + (string_literal + (string_content))))) (type_identifier) (field_declaration_list)) (struct_specifier - (attribute_declaration (attribute (identifier) (identifier) (argument_list (string_literal)))) + (attribute_declaration + (attribute + (identifier) + (identifier) + (argument_list + (string_literal + (string_content))))) (type_identifier) (field_declaration_list)) (union_specifier - (attribute_declaration (attribute (identifier) (identifier) (argument_list (string_literal)))) + (attribute_declaration + (attribute + (identifier) + (identifier) + (argument_list + (string_literal + (string_content))))) (type_identifier) (field_declaration_list)) (class_specifier - (attribute_declaration (attribute (identifier) (identifier) (argument_list (string_literal)))) - (attribute_declaration (attribute (identifier))) + (attribute_declaration + (attribute + (identifier) + (identifier) + (argument_list + (string_literal + (string_content))))) + (attribute_declaration + (attribute + (identifier))) (type_identifier) (field_declaration_list)) (class_specifier (type_identifier) (virtual_specifier) (base_class_clause - (attribute_declaration (attribute (identifier))) + (attribute_declaration + (attribute + (identifier))) (access_specifier) (type_identifier)) - (field_declaration_list))) + (field_declaration_list))) -========================================= +================================================================================ Operator overload declarations -========================================= +================================================================================ ostream &operator<<(ostream &, const A &a); Foo operator "" _foo(const char* s); @@ -644,7 +907,7 @@ void * A::operator new(size_t s); void * A::operator delete [](void * p); ---- +-------------------------------------------------------------------------------- (translation_unit (declaration @@ -653,50 +916,91 @@ void * A::operator delete [](void * p); (function_declarator (operator_name) (parameter_list - (parameter_declaration (type_identifier) (abstract_reference_declarator)) - (parameter_declaration (type_qualifier) (type_identifier) (reference_declarator (identifier))))))) + (parameter_declaration + (type_identifier) + (abstract_reference_declarator)) + (parameter_declaration + (type_qualifier) + (type_identifier) + (reference_declarator + (identifier))))))) (declaration (type_identifier) (function_declarator - (operator_name (identifier)) + (operator_name + (identifier)) (parameter_list - (parameter_declaration (type_qualifier) (primitive_type) (pointer_declarator (identifier)))))) + (parameter_declaration + (type_qualifier) + (primitive_type) + (pointer_declarator + (identifier)))))) (declaration - (qualified_identifier (namespace_identifier) (type_identifier)) + (qualified_identifier + (namespace_identifier) + (type_identifier)) (function_declarator - (operator_name (identifier)) + (operator_name + (identifier)) (parameter_list - (parameter_declaration (type_qualifier) (primitive_type) (pointer_declarator (identifier)))))) + (parameter_declaration + (type_qualifier) + (primitive_type) + (pointer_declarator + (identifier)))))) (declaration (primitive_type) (function_declarator - (qualified_identifier (namespace_identifier) (operator_name)) + (qualified_identifier + (namespace_identifier) + (operator_name)) (parameter_list - (parameter_declaration (type_qualifier) (type_identifier) (reference_declarator (identifier)))) + (parameter_declaration + (type_qualifier) + (type_identifier) + (reference_declarator + (identifier)))) (type_qualifier))) (declaration (primitive_type) (function_declarator - (qualified_identifier (namespace_identifier) (operator_name)) + (qualified_identifier + (namespace_identifier) + (operator_name)) (parameter_list - (parameter_declaration (type_qualifier) (type_identifier) (reference_declarator (identifier)))) + (parameter_declaration + (type_qualifier) + (type_identifier) + (reference_declarator + (identifier)))) (type_qualifier))) - (declaration - (primitive_type) - (pointer_declarator - (function_declarator - (qualified_identifier (namespace_identifier) (operator_name)) - (parameter_list (parameter_declaration (primitive_type) (identifier)))))) - (declaration - (primitive_type) - (pointer_declarator - (function_declarator - (qualified_identifier (namespace_identifier) (operator_name)) - (parameter_list (parameter_declaration (primitive_type) (pointer_declarator (identifier)))))))) - -========================================= + (declaration + (primitive_type) + (pointer_declarator + (function_declarator + (qualified_identifier + (namespace_identifier) + (operator_name)) + (parameter_list + (parameter_declaration + (primitive_type) + (identifier)))))) + (declaration + (primitive_type) + (pointer_declarator + (function_declarator + (qualified_identifier + (namespace_identifier) + (operator_name)) + (parameter_list + (parameter_declaration + (primitive_type) + (pointer_declarator + (identifier)))))))) + +================================================================================ Template declarations -========================================= +================================================================================ template void foo(T &t); @@ -714,62 +1018,88 @@ template template void A::foo(U&) {} ---- +-------------------------------------------------------------------------------- (translation_unit (template_declaration (template_parameter_list - (type_parameter_declaration (type_identifier))) + (type_parameter_declaration + (type_identifier))) (declaration (primitive_type) (function_declarator (identifier) (parameter_list - (parameter_declaration (type_identifier) (reference_declarator (identifier))))))) + (parameter_declaration + (type_identifier) + (reference_declarator + (identifier))))))) (template_declaration (template_parameter_list - (type_parameter_declaration (type_identifier)) - (parameter_declaration (primitive_type) (identifier))) + (type_parameter_declaration + (type_identifier)) + (parameter_declaration + (primitive_type) + (identifier))) (function_definition (primitive_type) (function_declarator (identifier) - (parameter_list (parameter_declaration (type_identifier) (reference_declarator (identifier))))) - (compound_statement (return_statement (identifier))))) + (parameter_list + (parameter_declaration + (type_identifier) + (reference_declarator + (identifier))))) + (compound_statement + (return_statement + (identifier))))) (template_declaration (template_parameter_list - (type_parameter_declaration (type_identifier))) - (class_specifier (type_identifier) (field_declaration_list))) + (type_parameter_declaration + (type_identifier))) + (class_specifier + (type_identifier) + (field_declaration_list))) (template_declaration (template_parameter_list - (type_parameter_declaration (type_identifier))) + (type_parameter_declaration + (type_identifier))) (function_definition (function_declarator (qualified_identifier (template_type (type_identifier) - (template_argument_list (type_descriptor (type_identifier)))) + (template_argument_list + (type_descriptor + (type_identifier)))) (identifier)) (parameter_list - (parameter_declaration (primitive_type) (identifier)))) + (parameter_declaration + (primitive_type) + (identifier)))) (field_initializer_list (field_initializer (field_identifier) - (argument_list (identifier)))) + (argument_list + (identifier)))) (compound_statement))) (template_declaration (template_parameter_list - (type_parameter_declaration (type_identifier))) + (type_parameter_declaration + (type_identifier))) (template_declaration (template_parameter_list - (type_parameter_declaration (type_identifier))) + (type_parameter_declaration + (type_identifier))) (function_definition (primitive_type) (function_declarator (qualified_identifier (template_type (type_identifier) - (template_argument_list (type_descriptor (type_identifier)))) + (template_argument_list + (type_descriptor + (type_identifier)))) (identifier)) (parameter_list (parameter_declaration @@ -777,9 +1107,9 @@ void A::foo(U&) {} (abstract_reference_declarator)))) (compound_statement))))) -========================================= +================================================================================ Template template declarations -========================================= +================================================================================ template